diff --git a/grammar.js b/grammar.js index ffbaf0f1..ad4bfcd6 100644 --- a/grammar.js +++ b/grammar.js @@ -97,7 +97,6 @@ module.exports = grammar(C, { [$._binary_fold_operator, $._fold_operator], [$._function_declarator_seq], [$.type_specifier, $.sized_type_specifier], - [$.initializer_pair, $.comma_expression], [$.expression_statement, $._for_statement_body], [$.init_statement, $._for_statement_body], [$.field_expression, $.template_method, $.template_type], @@ -540,6 +539,26 @@ module.exports = grammar(C, { // A b {}; compound_statement: (_, original) => prec(-1, original), + initializer_pair: $ => choice( + seq( + field('designator', repeat1(choice( + $.subscript_designator, + $.field_designator, + $.subscript_range_designator, + ))), + choice( + seq( + '=', + field('value', $.expression) + ), + seq( + optional('='), + field('value', $.initializer_list) + ) + ) + ), + ), + field_initializer_list: $ => seq( ':', commaSep1($.field_initializer), diff --git a/src/grammar.json b/src/grammar.json index a091cbff..9a01dcfb 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -9920,59 +9920,51 @@ } }, { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "initializer_list" - } - ] - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "designator", - "content": { - "type": "SYMBOL", - "name": "_field_identifier" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "expression" - }, - { - "type": "SYMBOL", - "name": "initializer_list" - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "initializer_list" + } + } + ] + } + ] } ] } @@ -18317,10 +18309,6 @@ "type_specifier", "sized_type_specifier" ], - [ - "initializer_pair", - "comma_expression" - ], [ "expression_statement", "_for_statement_body" diff --git a/src/node-types.json b/src/node-types.json index 3b108232..b5591dd1 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4118,10 +4118,6 @@ "type": "field_designator", "named": true }, - { - "type": "field_identifier", - "named": true - }, { "type": "subscript_designator", "named": true diff --git a/src/parser.c b/src/parser.c index a19b69eb..7540bdf4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -15,8 +15,8 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 11734 -#define LARGE_STATE_COUNT 3826 +#define STATE_COUNT 11728 +#define LARGE_STATE_COUNT 3822 #define SYMBOL_COUNT 570 #define ALIAS_COUNT 5 #define TOKEN_COUNT 225 @@ -4279,134 +4279,134 @@ static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [99] = {.index = 146, .length = 1}, [100] = {.index = 144, .length = 2}, [102] = {.index = 147, .length = 2}, - [103] = {.index = 149, .length = 1}, - [104] = {.index = 149, .length = 1}, - [105] = {.index = 150, .length = 3}, - [107] = {.index = 153, .length = 2}, + [103] = {.index = 149, .length = 2}, + [104] = {.index = 151, .length = 1}, + [105] = {.index = 151, .length = 1}, + [106] = {.index = 152, .length = 3}, [108] = {.index = 155, .length = 2}, [109] = {.index = 157, .length = 2}, - [110] = {.index = 159, .length = 3}, - [111] = {.index = 162, .length = 1}, - [112] = {.index = 163, .length = 1}, - [113] = {.index = 164, .length = 2}, - [115] = {.index = 166, .length = 3}, - [116] = {.index = 169, .length = 3}, - [117] = {.index = 172, .length = 3}, - [118] = {.index = 175, .length = 3}, - [119] = {.index = 178, .length = 3}, - [120] = {.index = 181, .length = 2}, - [121] = {.index = 183, .length = 3}, - [122] = {.index = 186, .length = 2}, - [123] = {.index = 188, .length = 3}, - [124] = {.index = 191, .length = 2}, - [125] = {.index = 20, .length = 2}, - [126] = {.index = 38, .length = 2}, - [127] = {.index = 193, .length = 2}, + [110] = {.index = 159, .length = 2}, + [111] = {.index = 161, .length = 3}, + [112] = {.index = 164, .length = 1}, + [113] = {.index = 165, .length = 1}, + [114] = {.index = 166, .length = 2}, + [116] = {.index = 168, .length = 3}, + [117] = {.index = 171, .length = 3}, + [118] = {.index = 174, .length = 3}, + [119] = {.index = 177, .length = 3}, + [120] = {.index = 180, .length = 3}, + [121] = {.index = 183, .length = 2}, + [122] = {.index = 185, .length = 3}, + [123] = {.index = 188, .length = 2}, + [124] = {.index = 190, .length = 3}, + [125] = {.index = 193, .length = 2}, + [126] = {.index = 20, .length = 2}, + [127] = {.index = 38, .length = 2}, [128] = {.index = 195, .length = 2}, - [129] = {.index = 197, .length = 4}, - [130] = {.index = 201, .length = 4}, - [131] = {.index = 205, .length = 2}, - [132] = {.index = 207, .length = 3}, - [133] = {.index = 210, .length = 2}, + [129] = {.index = 197, .length = 2}, + [130] = {.index = 199, .length = 4}, + [131] = {.index = 203, .length = 4}, + [132] = {.index = 207, .length = 2}, + [133] = {.index = 209, .length = 3}, [134] = {.index = 212, .length = 2}, - [135] = {.index = 214, .length = 1}, - [136] = {.index = 215, .length = 1}, - [137] = {.index = 216, .length = 2}, + [135] = {.index = 214, .length = 2}, + [136] = {.index = 216, .length = 1}, + [137] = {.index = 217, .length = 1}, [138] = {.index = 218, .length = 2}, [139] = {.index = 220, .length = 2}, [140] = {.index = 222, .length = 2}, - [141] = {.index = 224, .length = 3}, - [142] = {.index = 227, .length = 3}, - [143] = {.index = 230, .length = 3}, - [144] = {.index = 233, .length = 2}, + [141] = {.index = 224, .length = 2}, + [142] = {.index = 226, .length = 3}, + [143] = {.index = 229, .length = 3}, + [144] = {.index = 232, .length = 3}, [145] = {.index = 235, .length = 2}, [146] = {.index = 237, .length = 2}, - [147] = {.index = 237, .length = 2}, + [147] = {.index = 239, .length = 2}, [148] = {.index = 239, .length = 2}, - [149] = {.index = 239, .length = 2}, - [150] = {.index = 241, .length = 2}, - [151] = {.index = 243, .length = 3}, - [152] = {.index = 246, .length = 2}, - [153] = {.index = 248, .length = 2}, - [154] = {.index = 250, .length = 3}, - [155] = {.index = 253, .length = 2}, - [156] = {.index = 255, .length = 3}, - [157] = {.index = 258, .length = 2}, - [158] = {.index = 260, .length = 1}, - [159] = {.index = 261, .length = 2}, - [160] = {.index = 263, .length = 2}, - [161] = {.index = 265, .length = 4}, - [162] = {.index = 269, .length = 5}, - [163] = {.index = 274, .length = 1}, - [164] = {.index = 275, .length = 1}, - [165] = {.index = 276, .length = 2}, - [166] = {.index = 278, .length = 1}, - [167] = {.index = 279, .length = 2}, - [169] = {.index = 281, .length = 1}, - [170] = {.index = 282, .length = 2}, - [171] = {.index = 284, .length = 2}, + [149] = {.index = 241, .length = 2}, + [150] = {.index = 243, .length = 2}, + [151] = {.index = 245, .length = 3}, + [152] = {.index = 248, .length = 2}, + [153] = {.index = 250, .length = 2}, + [154] = {.index = 252, .length = 3}, + [155] = {.index = 255, .length = 2}, + [156] = {.index = 257, .length = 3}, + [157] = {.index = 260, .length = 2}, + [158] = {.index = 262, .length = 1}, + [159] = {.index = 263, .length = 2}, + [160] = {.index = 265, .length = 2}, + [161] = {.index = 267, .length = 4}, + [162] = {.index = 271, .length = 5}, + [163] = {.index = 276, .length = 1}, + [164] = {.index = 277, .length = 1}, + [165] = {.index = 278, .length = 2}, + [166] = {.index = 280, .length = 1}, + [167] = {.index = 281, .length = 2}, + [169] = {.index = 283, .length = 1}, + [170] = {.index = 284, .length = 2}, + [171] = {.index = 286, .length = 2}, [172] = {.index = 11, .length = 1}, [173] = {.index = 11, .length = 1}, - [174] = {.index = 286, .length = 1}, - [175] = {.index = 287, .length = 1}, - [176] = {.index = 288, .length = 4}, - [177] = {.index = 292, .length = 4}, - [178] = {.index = 296, .length = 4}, - [179] = {.index = 300, .length = 2}, - [180] = {.index = 302, .length = 1}, - [181] = {.index = 303, .length = 3}, - [182] = {.index = 306, .length = 2}, - [183] = {.index = 308, .length = 3}, - [184] = {.index = 311, .length = 5}, - [185] = {.index = 316, .length = 2}, - [186] = {.index = 318, .length = 2}, - [187] = {.index = 320, .length = 1}, - [188] = {.index = 321, .length = 2}, - [189] = {.index = 323, .length = 4}, - [190] = {.index = 327, .length = 2}, - [191] = {.index = 329, .length = 2}, - [192] = {.index = 331, .length = 3}, - [193] = {.index = 334, .length = 4}, - [194] = {.index = 338, .length = 4}, - [195] = {.index = 342, .length = 3}, - [196] = {.index = 345, .length = 2}, - [197] = {.index = 347, .length = 3}, - [198] = {.index = 350, .length = 3}, - [199] = {.index = 353, .length = 2}, - [200] = {.index = 355, .length = 2}, - [201] = {.index = 357, .length = 2}, - [202] = {.index = 359, .length = 2}, - [203] = {.index = 361, .length = 3}, - [204] = {.index = 364, .length = 2}, - [205] = {.index = 366, .length = 2}, - [206] = {.index = 368, .length = 3}, - [207] = {.index = 371, .length = 5}, - [208] = {.index = 376, .length = 5}, - [209] = {.index = 381, .length = 3}, - [210] = {.index = 384, .length = 3}, - [211] = {.index = 387, .length = 2}, - [212] = {.index = 389, .length = 2}, - [213] = {.index = 391, .length = 4}, - [214] = {.index = 395, .length = 5}, - [215] = {.index = 400, .length = 3}, - [216] = {.index = 403, .length = 4}, - [217] = {.index = 407, .length = 2}, - [218] = {.index = 409, .length = 1}, - [219] = {.index = 410, .length = 4}, - [220] = {.index = 414, .length = 3}, - [221] = {.index = 417, .length = 2}, - [222] = {.index = 419, .length = 1}, - [223] = {.index = 420, .length = 5}, - [224] = {.index = 425, .length = 2}, - [225] = {.index = 427, .length = 2}, + [174] = {.index = 288, .length = 1}, + [175] = {.index = 289, .length = 1}, + [176] = {.index = 290, .length = 4}, + [177] = {.index = 294, .length = 4}, + [178] = {.index = 298, .length = 4}, + [179] = {.index = 302, .length = 2}, + [180] = {.index = 304, .length = 1}, + [181] = {.index = 305, .length = 3}, + [182] = {.index = 308, .length = 2}, + [183] = {.index = 310, .length = 3}, + [184] = {.index = 313, .length = 5}, + [185] = {.index = 318, .length = 2}, + [186] = {.index = 320, .length = 2}, + [187] = {.index = 322, .length = 1}, + [188] = {.index = 323, .length = 2}, + [189] = {.index = 325, .length = 4}, + [190] = {.index = 329, .length = 2}, + [191] = {.index = 331, .length = 2}, + [192] = {.index = 333, .length = 3}, + [193] = {.index = 336, .length = 4}, + [194] = {.index = 340, .length = 4}, + [195] = {.index = 344, .length = 3}, + [196] = {.index = 347, .length = 2}, + [197] = {.index = 349, .length = 3}, + [198] = {.index = 352, .length = 3}, + [199] = {.index = 355, .length = 2}, + [200] = {.index = 357, .length = 2}, + [201] = {.index = 359, .length = 2}, + [202] = {.index = 361, .length = 2}, + [203] = {.index = 363, .length = 3}, + [204] = {.index = 366, .length = 2}, + [205] = {.index = 368, .length = 2}, + [206] = {.index = 370, .length = 3}, + [207] = {.index = 373, .length = 5}, + [208] = {.index = 378, .length = 5}, + [209] = {.index = 383, .length = 3}, + [210] = {.index = 386, .length = 3}, + [211] = {.index = 389, .length = 2}, + [212] = {.index = 391, .length = 2}, + [213] = {.index = 393, .length = 4}, + [214] = {.index = 397, .length = 5}, + [215] = {.index = 402, .length = 3}, + [216] = {.index = 405, .length = 4}, + [217] = {.index = 409, .length = 2}, + [218] = {.index = 411, .length = 1}, + [219] = {.index = 412, .length = 4}, + [220] = {.index = 416, .length = 3}, + [221] = {.index = 419, .length = 2}, + [222] = {.index = 421, .length = 1}, + [223] = {.index = 422, .length = 5}, + [224] = {.index = 427, .length = 2}, + [225] = {.index = 429, .length = 2}, [226] = {.index = 65, .length = 1}, - [227] = {.index = 429, .length = 5}, - [228] = {.index = 434, .length = 4}, - [229] = {.index = 438, .length = 2}, - [230] = {.index = 440, .length = 2}, - [231] = {.index = 442, .length = 5}, - [232] = {.index = 447, .length = 2}, - [233] = {.index = 449, .length = 3}, + [227] = {.index = 431, .length = 5}, + [228] = {.index = 436, .length = 4}, + [229] = {.index = 440, .length = 2}, + [230] = {.index = 442, .length = 2}, + [231] = {.index = 444, .length = 5}, + [232] = {.index = 449, .length = 2}, + [233] = {.index = 451, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4642,428 +4642,431 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [146] = {field_body, 3}, [147] = + {field_designator, 0}, + {field_value, 1}, + [149] = {field_base, 3, .inherited = true}, {field_name, 2}, - [149] = + [151] = {field_base, 1}, - [150] = + [152] = {field_base, 2, .inherited = true}, {field_body, 3}, {field_name, 1}, - [153] = + [155] = {field_body, 2, .inherited = true}, {field_name, 2, .inherited = true}, - [155] = + [157] = {field_body, 2}, {field_name, 0}, - [157] = + [159] = {field_condition, 2}, {field_consequence, 3}, - [159] = + [161] = {field_alternative, 3}, {field_condition, 1}, {field_consequence, 2}, - [162] = + [164] = {field_initializer, 0}, - [163] = + [165] = {field_assembly_code, 2}, - [164] = + [166] = {field_name, 1}, {field_partition, 2}, - [166] = + [168] = {field_arguments, 3}, {field_declarator, 2}, {field_type, 1}, - [169] = + [171] = {field_arguments, 3}, {field_placement, 1}, {field_type, 2}, - [172] = + [174] = {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [175] = + [177] = {field_declarator, 1}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [178] = + [180] = {field_body, 3}, {field_declarator, 2}, {field_type, 0, .inherited = true}, - [181] = + [183] = {field_declarator, 0}, {field_value, 2}, - [183] = + [185] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [186] = + [188] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, - [188] = + [190] = {field_body, 3}, {field_declarator, 2}, {field_type, 1, .inherited = true}, - [191] = + [193] = {field_declarator, 0}, {field_size, 2}, - [193] = + [195] = {field_alternative, 3}, {field_condition, 0}, - [195] = + [197] = {field_declarator, 0}, {field_default_value, 2}, - [197] = + [199] = {field_body, 3}, {field_captures, 0}, {field_constraint, 2}, {field_template_parameters, 1}, - [201] = + [203] = {field_body, 3}, {field_captures, 0}, {field_declarator, 2}, {field_template_parameters, 1}, - [205] = + [207] = {field_body, 3}, {field_declarator, 1}, - [207] = + [209] = {field_name, 1}, {field_parameters, 2}, {field_value, 3}, - [210] = + [212] = {field_alternative, 3}, {field_condition, 1}, - [212] = + [214] = {field_alternative, 3}, {field_name, 1}, - [214] = + [216] = {field_size, 1}, - [215] = + [217] = {field_operator, 0}, - [216] = + [218] = {field_declarator, 3}, {field_type, 1}, - [218] = + [220] = {field_declarator, 3, .inherited = true}, {field_type, 2, .inherited = true}, - [220] = + [222] = {field_declarator, 3}, {field_type, 2, .inherited = true}, - [222] = + [224] = {field_name, 1}, {field_type, 3}, - [224] = + [226] = {field_arguments, 4}, {field_declarator, 3}, {field_type, 2}, - [227] = + [229] = {field_arguments, 4}, {field_placement, 2}, {field_type, 3}, - [230] = + [232] = {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [233] = + [235] = {field_name, 3}, {field_namespace, 1}, - [235] = + [237] = {field_left, 1}, {field_right, 3}, - [237] = + [239] = {field_body, 4}, {field_name, 3}, - [239] = + [241] = {field_designator, 0}, {field_value, 2}, - [241] = + [243] = {field_name, 0}, {field_value, 2}, - [243] = + [245] = {field_base, 3, .inherited = true}, {field_body, 4}, {field_name, 2}, - [246] = + [248] = {field_body, 3}, {field_name, 0}, - [248] = + [250] = {field_body, 3, .inherited = true}, {field_name, 3, .inherited = true}, - [250] = + [252] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 2}, - [253] = + [255] = {field_initializer, 1}, {field_value, 2}, - [255] = + [257] = {field_alternative, 4}, {field_condition, 2}, {field_consequence, 3}, - [258] = + [260] = {field_body, 1}, {field_condition, 3}, - [260] = + [262] = {field_update, 2}, - [261] = + [263] = {field_initializer, 0}, {field_update, 2}, - [263] = + [265] = {field_condition, 1}, {field_initializer, 0}, - [265] = + [267] = {field_body, 4}, {field_condition, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_update, 2, .inherited = true}, - [269] = + [271] = {field_body, 4}, {field_declarator, 2, .inherited = true}, {field_initializer, 2, .inherited = true}, {field_right, 2, .inherited = true}, {field_type, 2, .inherited = true}, - [274] = + [276] = {field_value, 3}, - [275] = + [277] = {field_operand, 1}, - [276] = + [278] = {field_assembly_code, 2}, {field_output_operands, 3}, - [278] = + [280] = {field_assembly_code, 3}, - [279] = + [281] = {field_name, 2}, {field_partition, 3}, - [281] = + [283] = {field_default_type, 2}, - [282] = + [284] = {field_default_value, 2}, {field_type, 0, .inherited = true}, - [284] = + [286] = {field_body, 2}, {field_parameters, 1}, - [286] = + [288] = {field_condition, 2}, - [287] = + [289] = {field_length, 1}, - [288] = + [290] = {field_arguments, 4}, {field_declarator, 3}, {field_placement, 1}, {field_type, 2}, - [292] = + [294] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_type, 0, .inherited = true}, - [296] = + [298] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [300] = + [302] = {field_declarator, 1}, {field_declarator, 2}, - [302] = + [304] = {field_declarator, 4}, - [303] = + [305] = {field_body, 4}, {field_declarator, 3}, {field_type, 1, .inherited = true}, - [306] = + [308] = {field_declarator, 0}, {field_size, 3}, - [308] = + [310] = {field_alternative, 4}, {field_condition, 0}, {field_consequence, 2}, - [311] = + [313] = {field_body, 4}, {field_captures, 0}, {field_constraint, 2}, {field_declarator, 3}, {field_template_parameters, 1}, - [316] = + [318] = {field_declarator, 1}, {field_default_value, 3}, - [318] = + [320] = {field_alternative, 4}, {field_condition, 1}, - [320] = + [322] = {field_size, 2}, - [321] = + [323] = {field_name, 1}, {field_type, 4}, - [323] = + [325] = {field_arguments, 5}, {field_declarator, 4}, {field_placement, 2}, {field_type, 3}, - [327] = + [329] = {field_body, 2}, {field_filter, 1}, - [329] = + [331] = {field_left, 2}, {field_right, 4}, - [331] = + [333] = {field_declarator, 1}, {field_default_value, 2}, {field_type, 0, .inherited = true}, - [334] = + [336] = {field_declarator, 1}, {field_declarator, 2, .inherited = true}, {field_default_value, 2, .inherited = true}, {field_type, 0, .inherited = true}, - [338] = + [340] = {field_declarator, 0, .inherited = true}, {field_declarator, 1, .inherited = true}, {field_default_value, 0, .inherited = true}, {field_default_value, 1, .inherited = true}, - [342] = + [344] = {field_declarator, 1}, {field_type, 0, .inherited = true}, {field_value, 3}, - [345] = + [347] = {field_condition, 1}, {field_update, 3}, - [347] = + [349] = {field_condition, 1}, {field_initializer, 0}, {field_update, 3}, - [350] = + [352] = {field_declarator, 1}, {field_right, 3}, {field_type, 0, .inherited = true}, - [353] = + [355] = {field_initializer, 0}, {field_update, 3}, - [355] = + [357] = {field_condition, 2}, {field_initializer, 0}, - [357] = + [359] = {field_member, 4}, {field_type, 2}, - [359] = + [361] = {field_operand, 1}, {field_operand, 2, .inherited = true}, - [361] = + [363] = {field_assembly_code, 2}, {field_input_operands, 4}, {field_output_operands, 3}, - [364] = + [366] = {field_assembly_code, 3}, {field_output_operands, 4}, - [366] = + [368] = {field_default_type, 3}, {field_name, 1}, - [368] = + [370] = {field_declarator, 1}, {field_default_value, 3}, {field_type, 0, .inherited = true}, - [371] = + [373] = {field_body, 5}, {field_declarator, 3, .inherited = true}, {field_initializer, 3, .inherited = true}, {field_right, 3, .inherited = true}, {field_type, 3, .inherited = true}, - [376] = + [378] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, {field_declarator, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [381] = + [383] = {field_declarator, 1}, {field_declarator, 2}, {field_declarator, 3}, - [384] = + [386] = {field_name, 5}, {field_namespace, 1}, {field_prefix, 3}, - [387] = + [389] = {field_end, 3}, {field_start, 1}, - [389] = + [391] = {field_declarator, 1}, {field_default_value, 2}, - [391] = + [393] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [395] = + [397] = {field_declarator, 1}, {field_declarator, 3, .inherited = true}, {field_default_value, 2}, {field_default_value, 3, .inherited = true}, {field_type, 0, .inherited = true}, - [400] = + [402] = {field_condition, 2}, {field_initializer, 0}, {field_update, 4}, - [403] = + [405] = {field_declarator, 2}, {field_initializer, 0}, {field_right, 4}, {field_type, 1, .inherited = true}, - [407] = + [409] = {field_operand, 0, .inherited = true}, {field_operand, 1, .inherited = true}, - [409] = + [411] = {field_register, 1}, - [410] = + [412] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_input_operands, 4}, {field_output_operands, 3}, - [414] = + [416] = {field_assembly_code, 3}, {field_input_operands, 5}, {field_output_operands, 4}, - [417] = + [419] = {field_condition, 2}, {field_message, 4}, - [419] = + [421] = {field_delimiter, 1}, - [420] = + [422] = {field_declarator, 1}, {field_declarator, 4, .inherited = true}, {field_default_value, 3}, {field_default_value, 4, .inherited = true}, {field_type, 0, .inherited = true}, - [425] = + [427] = {field_constraint, 0}, {field_value, 2}, - [427] = + [429] = {field_register, 1}, {field_register, 2, .inherited = true}, - [429] = + [431] = {field_assembly_code, 2}, {field_clobbers, 5}, {field_goto_labels, 6}, {field_input_operands, 4}, {field_output_operands, 3}, - [434] = + [436] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_input_operands, 5}, {field_output_operands, 4}, - [438] = + [440] = {field_register, 0, .inherited = true}, {field_register, 1, .inherited = true}, - [440] = + [442] = {field_label, 1}, {field_label, 2, .inherited = true}, - [442] = + [444] = {field_assembly_code, 3}, {field_clobbers, 6}, {field_goto_labels, 7}, {field_input_operands, 5}, {field_output_operands, 4}, - [447] = + [449] = {field_label, 0, .inherited = true}, {field_label, 1, .inherited = true}, - [449] = + [451] = {field_constraint, 3}, {field_symbol, 1}, {field_value, 5}, @@ -5128,30 +5131,27 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [101] = { [1] = alias_sym_field_identifier, }, - [104] = { + [105] = { [1] = alias_sym_type_identifier, }, - [106] = { + [107] = { [0] = alias_sym_field_identifier, }, - [114] = { + [115] = { [1] = alias_sym_type_identifier, }, - [125] = { + [126] = { [0] = alias_sym_field_identifier, }, - [126] = { + [127] = { [1] = alias_sym_field_identifier, }, - [140] = { + [141] = { [1] = alias_sym_type_identifier, }, - [146] = { + [147] = { [3] = alias_sym_namespace_identifier, }, - [148] = { - [0] = alias_sym_field_identifier, - }, [168] = { [2] = alias_sym_type_identifier, }, @@ -5206,102 +5206,102 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [19] = 18, [20] = 13, [21] = 21, - [22] = 18, - [23] = 13, - [24] = 21, - [25] = 25, - [26] = 18, - [27] = 13, + [22] = 22, + [23] = 18, + [24] = 13, + [25] = 21, + [26] = 22, + [27] = 18, [28] = 21, - [29] = 25, - [30] = 21, - [31] = 25, - [32] = 25, + [29] = 22, + [30] = 13, + [31] = 21, + [32] = 22, [33] = 33, [34] = 34, [35] = 35, - [36] = 34, - [37] = 33, + [36] = 36, + [37] = 37, [38] = 38, - [39] = 34, - [40] = 40, - [41] = 41, - [42] = 41, - [43] = 41, - [44] = 35, - [45] = 33, - [46] = 35, - [47] = 47, - [48] = 48, + [39] = 36, + [40] = 36, + [41] = 38, + [42] = 38, + [43] = 37, + [44] = 37, + [45] = 45, + [46] = 46, + [47] = 35, + [48] = 35, [49] = 49, [50] = 50, [51] = 51, - [52] = 49, + [52] = 52, [53] = 53, [54] = 54, - [55] = 51, - [56] = 56, + [55] = 52, + [56] = 51, [57] = 57, - [58] = 56, + [58] = 57, [59] = 59, - [60] = 57, + [60] = 60, [61] = 61, - [62] = 62, - [63] = 53, - [64] = 54, - [65] = 51, - [66] = 56, + [62] = 53, + [63] = 54, + [64] = 52, + [65] = 52, + [66] = 51, [67] = 57, - [68] = 51, - [69] = 69, - [70] = 61, - [71] = 62, - [72] = 49, - [73] = 53, - [74] = 51, - [75] = 56, - [76] = 57, - [77] = 61, - [78] = 54, - [79] = 51, - [80] = 62, - [81] = 62, - [82] = 53, - [83] = 51, - [84] = 53, - [85] = 51, - [86] = 53, - [87] = 51, - [88] = 53, - [89] = 51, - [90] = 53, - [91] = 51, - [92] = 53, - [93] = 51, - [94] = 53, - [95] = 51, + [68] = 68, + [69] = 49, + [70] = 60, + [71] = 61, + [72] = 60, + [73] = 61, + [74] = 53, + [75] = 54, + [76] = 51, + [77] = 57, + [78] = 60, + [79] = 61, + [80] = 53, + [81] = 53, + [82] = 52, + [83] = 53, + [84] = 52, + [85] = 53, + [86] = 52, + [87] = 53, + [88] = 52, + [89] = 53, + [90] = 52, + [91] = 53, + [92] = 52, + [93] = 53, + [94] = 52, + [95] = 49, [96] = 53, - [97] = 51, + [97] = 52, [98] = 53, - [99] = 53, + [99] = 52, [100] = 53, - [101] = 51, + [101] = 52, [102] = 53, - [103] = 51, + [103] = 52, [104] = 53, - [105] = 51, + [105] = 52, [106] = 53, - [107] = 51, + [107] = 52, [108] = 53, - [109] = 51, + [109] = 52, [110] = 53, - [111] = 61, + [111] = 52, [112] = 112, - [113] = 50, - [114] = 114, + [113] = 113, + [114] = 112, [115] = 112, [116] = 116, - [117] = 112, + [117] = 50, [118] = 112, [119] = 119, [120] = 50, @@ -5311,167 +5311,167 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [124] = 124, [125] = 125, [126] = 125, - [127] = 121, - [128] = 123, - [129] = 122, - [130] = 124, - [131] = 124, - [132] = 122, - [133] = 125, - [134] = 121, - [135] = 123, - [136] = 123, - [137] = 122, - [138] = 124, + [127] = 123, + [128] = 124, + [129] = 125, + [130] = 121, + [131] = 122, + [132] = 123, + [133] = 121, + [134] = 122, + [135] = 124, + [136] = 122, + [137] = 123, + [138] = 125, [139] = 121, - [140] = 125, - [141] = 141, - [142] = 121, - [143] = 125, - [144] = 144, - [145] = 144, - [146] = 144, - [147] = 144, - [148] = 144, - [149] = 144, - [150] = 123, - [151] = 122, - [152] = 124, - [153] = 153, - [154] = 153, - [155] = 153, - [156] = 153, - [157] = 153, - [158] = 153, + [140] = 124, + [141] = 123, + [142] = 142, + [143] = 142, + [144] = 124, + [145] = 122, + [146] = 125, + [147] = 121, + [148] = 142, + [149] = 142, + [150] = 142, + [151] = 142, + [152] = 152, + [153] = 152, + [154] = 152, + [155] = 152, + [156] = 152, + [157] = 152, + [158] = 158, [159] = 159, - [160] = 160, - [161] = 159, - [162] = 162, + [160] = 158, + [161] = 161, + [162] = 159, [163] = 159, - [164] = 159, - [165] = 160, - [166] = 160, - [167] = 159, - [168] = 159, + [164] = 158, + [165] = 158, + [166] = 158, + [167] = 158, + [168] = 168, [169] = 169, - [170] = 170, - [171] = 170, - [172] = 170, - [173] = 170, - [174] = 170, - [175] = 170, - [176] = 170, - [177] = 170, + [170] = 169, + [171] = 169, + [172] = 169, + [173] = 169, + [174] = 169, + [175] = 169, + [176] = 169, + [177] = 177, [178] = 178, [179] = 179, [180] = 180, - [181] = 181, - [182] = 181, - [183] = 179, - [184] = 181, + [181] = 179, + [182] = 180, + [183] = 180, + [184] = 178, [185] = 180, - [186] = 180, - [187] = 180, - [188] = 181, + [186] = 179, + [187] = 179, + [188] = 188, [189] = 189, - [190] = 190, + [190] = 178, [191] = 191, [192] = 192, - [193] = 193, - [194] = 191, + [193] = 192, + [194] = 194, [195] = 195, - [196] = 189, - [197] = 191, - [198] = 192, - [199] = 180, - [200] = 195, - [201] = 201, - [202] = 189, - [203] = 195, - [204] = 204, - [205] = 190, - [206] = 191, - [207] = 195, - [208] = 192, - [209] = 179, - [210] = 192, - [211] = 201, - [212] = 189, - [213] = 204, - [214] = 193, - [215] = 193, - [216] = 204, + [196] = 192, + [197] = 197, + [198] = 197, + [199] = 195, + [200] = 200, + [201] = 191, + [202] = 197, + [203] = 194, + [204] = 200, + [205] = 205, + [206] = 197, + [207] = 189, + [208] = 191, + [209] = 205, + [210] = 189, + [211] = 200, + [212] = 205, + [213] = 189, + [214] = 192, + [215] = 191, + [216] = 194, [217] = 195, - [218] = 189, - [219] = 193, - [220] = 190, - [221] = 193, - [222] = 193, - [223] = 223, - [224] = 201, - [225] = 204, - [226] = 201, - [227] = 204, - [228] = 190, - [229] = 191, - [230] = 204, - [231] = 190, + [218] = 188, + [219] = 180, + [220] = 197, + [221] = 200, + [222] = 205, + [223] = 189, + [224] = 191, + [225] = 197, + [226] = 192, + [227] = 195, + [228] = 200, + [229] = 205, + [230] = 189, + [231] = 194, [232] = 191, - [233] = 192, - [234] = 192, + [233] = 194, + [234] = 180, [235] = 195, - [236] = 201, - [237] = 189, - [238] = 180, - [239] = 201, - [240] = 223, - [241] = 223, - [242] = 223, - [243] = 223, - [244] = 190, + [236] = 194, + [237] = 195, + [238] = 192, + [239] = 200, + [240] = 188, + [241] = 188, + [242] = 188, + [243] = 205, + [244] = 244, [245] = 245, - [246] = 246, - [247] = 246, - [248] = 245, - [249] = 246, - [250] = 246, - [251] = 245, - [252] = 245, - [253] = 246, - [254] = 245, - [255] = 179, - [256] = 246, - [257] = 246, - [258] = 246, - [259] = 246, + [246] = 244, + [247] = 245, + [248] = 244, + [249] = 245, + [250] = 245, + [251] = 244, + [252] = 244, + [253] = 245, + [254] = 244, + [255] = 244, + [256] = 245, + [257] = 245, + [258] = 244, + [259] = 244, [260] = 245, - [261] = 245, - [262] = 246, + [261] = 244, + [262] = 245, [263] = 245, - [264] = 246, - [265] = 245, - [266] = 246, - [267] = 245, - [268] = 245, - [269] = 245, - [270] = 245, - [271] = 246, - [272] = 245, - [273] = 246, - [274] = 246, + [264] = 245, + [265] = 178, + [266] = 245, + [267] = 244, + [268] = 244, + [269] = 244, + [270] = 244, + [271] = 245, + [272] = 244, + [273] = 245, + [274] = 244, [275] = 245, - [276] = 246, - [277] = 245, - [278] = 179, - [279] = 179, - [280] = 179, - [281] = 179, - [282] = 179, - [283] = 283, - [284] = 283, - [285] = 285, - [286] = 283, - [287] = 283, + [276] = 245, + [277] = 178, + [278] = 178, + [279] = 178, + [280] = 178, + [281] = 178, + [282] = 282, + [283] = 282, + [284] = 282, + [285] = 282, + [286] = 286, + [287] = 287, [288] = 288, [289] = 289, [290] = 290, @@ -5479,35 +5479,35 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [292] = 292, [293] = 293, [294] = 294, - [295] = 293, - [296] = 293, - [297] = 293, - [298] = 293, - [299] = 293, - [300] = 293, - [301] = 293, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 288, + [299] = 286, + [300] = 300, + [301] = 301, [302] = 293, [303] = 293, [304] = 293, [305] = 293, [306] = 293, [307] = 293, - [308] = 308, - [309] = 309, - [310] = 310, + [308] = 293, + [309] = 293, + [310] = 293, [311] = 293, - [312] = 312, + [312] = 293, [313] = 293, - [314] = 314, - [315] = 288, + [314] = 293, + [315] = 293, [316] = 293, - [317] = 317, + [317] = 293, [318] = 293, [319] = 293, [320] = 293, [321] = 293, - [322] = 285, - [323] = 294, + [322] = 301, + [323] = 323, [324] = 324, [325] = 325, [326] = 326, @@ -5517,38 +5517,38 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [330] = 330, [331] = 331, [332] = 332, - [333] = 283, + [333] = 333, [334] = 334, - [335] = 324, + [335] = 335, [336] = 336, [337] = 337, - [338] = 327, + [338] = 338, [339] = 339, [340] = 340, [341] = 341, [342] = 342, - [343] = 324, - [344] = 344, + [343] = 343, + [344] = 282, [345] = 345, - [346] = 336, - [347] = 337, - [348] = 327, - [349] = 349, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 323, [350] = 350, [351] = 351, [352] = 352, [353] = 353, [354] = 354, - [355] = 355, - [356] = 336, - [357] = 357, + [355] = 345, + [356] = 346, + [357] = 282, [358] = 358, [359] = 359, - [360] = 283, - [361] = 361, - [362] = 362, + [360] = 351, + [361] = 345, + [362] = 346, [363] = 363, - [364] = 337, + [364] = 323, [365] = 365, [366] = 366, [367] = 367, @@ -5566,27 +5566,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [379] = 379, [380] = 380, [381] = 381, - [382] = 283, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 283, - [387] = 283, - [388] = 283, + [382] = 382, + [383] = 282, + [384] = 351, + [385] = 282, + [386] = 282, + [387] = 282, + [388] = 388, [389] = 389, [390] = 390, [391] = 391, - [392] = 391, - [393] = 391, - [394] = 391, + [392] = 392, + [393] = 393, + [394] = 394, [395] = 395, - [396] = 289, - [397] = 289, - [398] = 290, - [399] = 391, - [400] = 391, - [401] = 391, - [402] = 391, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 402, [403] = 403, [404] = 404, [405] = 405, @@ -5594,44 +5594,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [407] = 407, [408] = 408, [409] = 409, - [410] = 290, + [410] = 410, [411] = 411, [412] = 412, [413] = 413, [414] = 414, - [415] = 391, + [415] = 415, [416] = 416, [417] = 417, - [418] = 418, + [418] = 416, [419] = 419, [420] = 420, [421] = 421, - [422] = 422, + [422] = 289, [423] = 423, [424] = 424, [425] = 425, - [426] = 426, + [426] = 287, [427] = 427, [428] = 428, [429] = 429, [430] = 430, - [431] = 431, + [431] = 416, [432] = 432, - [433] = 391, + [433] = 433, [434] = 434, [435] = 435, [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, + [437] = 416, + [438] = 432, + [439] = 416, [440] = 440, [441] = 441, [442] = 442, - [443] = 443, + [443] = 416, [444] = 444, [445] = 445, [446] = 446, - [447] = 447, + [447] = 289, [448] = 448, [449] = 449, [450] = 450, @@ -5639,19 +5639,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [452] = 452, [453] = 453, [454] = 454, - [455] = 455, - [456] = 456, - [457] = 457, - [458] = 458, - [459] = 459, + [455] = 287, + [456] = 416, + [457] = 416, + [458] = 416, + [459] = 416, [460] = 460, [461] = 461, [462] = 462, [463] = 463, [464] = 464, [465] = 465, - [466] = 466, - [467] = 467, + [466] = 416, + [467] = 416, [468] = 468, [469] = 469, [470] = 470, @@ -5659,1057 +5659,1057 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [472] = 472, [473] = 473, [474] = 474, - [475] = 391, - [476] = 395, + [475] = 475, + [476] = 476, [477] = 477, - [478] = 391, + [478] = 478, [479] = 479, [480] = 480, [481] = 481, - [482] = 395, + [482] = 482, [483] = 483, [484] = 484, - [485] = 395, - [486] = 395, - [487] = 395, - [488] = 395, - [489] = 395, - [490] = 395, - [491] = 395, - [492] = 395, - [493] = 395, - [494] = 395, - [495] = 395, - [496] = 395, - [497] = 395, - [498] = 395, - [499] = 395, - [500] = 395, - [501] = 395, - [502] = 395, - [503] = 395, - [504] = 395, - [505] = 395, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, + [485] = 485, + [486] = 416, + [487] = 421, + [488] = 416, + [489] = 421, + [490] = 421, + [491] = 421, + [492] = 421, + [493] = 421, + [494] = 421, + [495] = 421, + [496] = 421, + [497] = 421, + [498] = 421, + [499] = 421, + [500] = 421, + [501] = 421, + [502] = 421, + [503] = 421, + [504] = 421, + [505] = 421, + [506] = 421, + [507] = 421, + [508] = 421, + [509] = 421, + [510] = 421, [511] = 511, - [512] = 391, - [513] = 436, - [514] = 514, + [512] = 512, + [513] = 513, + [514] = 416, [515] = 515, - [516] = 391, - [517] = 391, - [518] = 391, - [519] = 519, - [520] = 289, - [521] = 290, - [522] = 292, - [523] = 291, - [524] = 317, - [525] = 288, - [526] = 526, - [527] = 527, - [528] = 528, + [516] = 516, + [517] = 517, + [518] = 416, + [519] = 287, + [520] = 291, + [521] = 289, + [522] = 290, + [523] = 523, + [524] = 291, + [525] = 294, + [526] = 296, + [527] = 288, + [528] = 286, [529] = 529, - [530] = 312, - [531] = 292, + [530] = 297, + [531] = 531, [532] = 532, [533] = 533, - [534] = 285, + [534] = 534, [535] = 535, - [536] = 536, + [536] = 294, [537] = 537, [538] = 538, - [539] = 291, + [539] = 539, [540] = 540, [541] = 541, [542] = 542, - [543] = 317, + [543] = 543, [544] = 544, - [545] = 310, - [546] = 546, + [545] = 545, + [546] = 290, [547] = 547, - [548] = 312, - [549] = 310, - [550] = 550, - [551] = 551, + [548] = 548, + [549] = 549, + [550] = 296, + [551] = 297, [552] = 552, [553] = 553, [554] = 554, - [555] = 555, - [556] = 362, - [557] = 385, - [558] = 363, - [559] = 352, - [560] = 292, - [561] = 310, - [562] = 340, - [563] = 366, - [564] = 383, - [565] = 377, - [566] = 384, - [567] = 389, - [568] = 326, - [569] = 352, - [570] = 353, + [555] = 375, + [556] = 326, + [557] = 327, + [558] = 348, + [559] = 328, + [560] = 329, + [561] = 366, + [562] = 372, + [563] = 331, + [564] = 332, + [565] = 333, + [566] = 291, + [567] = 367, + [568] = 334, + [569] = 339, + [570] = 347, [571] = 358, - [572] = 288, - [573] = 362, - [574] = 345, - [575] = 359, - [576] = 366, - [577] = 370, - [578] = 339, - [579] = 367, - [580] = 368, - [581] = 369, - [582] = 373, - [583] = 351, - [584] = 365, - [585] = 372, - [586] = 351, - [587] = 354, - [588] = 359, - [589] = 342, - [590] = 353, - [591] = 328, - [592] = 378, - [593] = 379, - [594] = 354, - [595] = 380, - [596] = 374, - [597] = 365, - [598] = 375, - [599] = 355, - [600] = 373, - [601] = 355, - [602] = 370, - [603] = 367, - [604] = 350, - [605] = 371, - [606] = 374, - [607] = 328, - [608] = 285, - [609] = 349, - [610] = 371, - [611] = 312, - [612] = 375, - [613] = 341, - [614] = 357, - [615] = 389, - [616] = 376, - [617] = 361, - [618] = 344, - [619] = 377, - [620] = 349, - [621] = 381, - [622] = 368, - [623] = 383, - [624] = 384, - [625] = 372, - [626] = 291, - [627] = 376, - [628] = 385, - [629] = 369, - [630] = 357, - [631] = 361, - [632] = 363, - [633] = 381, - [634] = 325, - [635] = 317, - [636] = 378, - [637] = 339, - [638] = 379, - [639] = 380, - [640] = 358, - [641] = 340, - [642] = 341, - [643] = 326, - [644] = 342, - [645] = 179, - [646] = 345, - [647] = 344, - [648] = 350, - [649] = 442, - [650] = 405, - [651] = 349, - [652] = 408, - [653] = 409, - [654] = 416, - [655] = 419, - [656] = 424, - [657] = 403, - [658] = 426, - [659] = 427, - [660] = 428, - [661] = 429, - [662] = 430, - [663] = 434, - [664] = 435, - [665] = 390, - [666] = 351, - [667] = 437, - [668] = 438, - [669] = 519, - [670] = 447, - [671] = 448, - [672] = 449, - [673] = 450, - [674] = 352, - [675] = 353, - [676] = 354, - [677] = 355, - [678] = 451, - [679] = 452, - [680] = 453, - [681] = 454, - [682] = 455, - [683] = 457, - [684] = 458, - [685] = 459, - [686] = 460, - [687] = 461, - [688] = 468, - [689] = 470, - [690] = 471, - [691] = 472, - [692] = 473, - [693] = 474, - [694] = 357, - [695] = 477, - [696] = 479, - [697] = 481, - [698] = 483, - [699] = 484, - [700] = 509, - [701] = 510, - [702] = 511, - [703] = 514, + [572] = 336, + [573] = 337, + [574] = 368, + [575] = 381, + [576] = 290, + [577] = 347, + [578] = 388, + [579] = 374, + [580] = 375, + [581] = 330, + [582] = 338, + [583] = 365, + [584] = 341, + [585] = 288, + [586] = 388, + [587] = 358, + [588] = 369, + [589] = 370, + [590] = 329, + [591] = 339, + [592] = 371, + [593] = 378, + [594] = 372, + [595] = 379, + [596] = 380, + [597] = 343, + [598] = 342, + [599] = 286, + [600] = 381, + [601] = 348, + [602] = 363, + [603] = 336, + [604] = 294, + [605] = 373, + [606] = 365, + [607] = 324, + [608] = 366, + [609] = 367, + [610] = 331, + [611] = 332, + [612] = 333, + [613] = 374, + [614] = 343, + [615] = 296, + [616] = 330, + [617] = 335, + [618] = 337, + [619] = 340, + [620] = 341, + [621] = 368, + [622] = 369, + [623] = 370, + [624] = 338, + [625] = 380, + [626] = 342, + [627] = 378, + [628] = 373, + [629] = 376, + [630] = 379, + [631] = 382, + [632] = 376, + [633] = 382, + [634] = 359, + [635] = 324, + [636] = 359, + [637] = 334, + [638] = 178, + [639] = 335, + [640] = 371, + [641] = 325, + [642] = 297, + [643] = 325, + [644] = 326, + [645] = 327, + [646] = 328, + [647] = 363, + [648] = 328, + [649] = 404, + [650] = 347, + [651] = 413, + [652] = 388, + [653] = 375, + [654] = 341, + [655] = 405, + [656] = 410, + [657] = 330, + [658] = 442, + [659] = 338, + [660] = 454, + [661] = 339, + [662] = 420, + [663] = 395, + [664] = 324, + [665] = 411, + [666] = 412, + [667] = 453, + [668] = 511, + [669] = 423, + [670] = 409, + [671] = 433, + [672] = 434, + [673] = 348, + [674] = 343, + [675] = 435, + [676] = 363, + [677] = 436, + [678] = 365, + [679] = 366, + [680] = 367, + [681] = 440, + [682] = 441, + [683] = 368, + [684] = 369, + [685] = 370, + [686] = 371, + [687] = 372, + [688] = 445, + [689] = 516, + [690] = 336, + [691] = 398, + [692] = 465, + [693] = 373, + [694] = 391, + [695] = 340, + [696] = 389, + [697] = 392, + [698] = 337, + [699] = 400, + [700] = 340, + [701] = 376, + [702] = 342, + [703] = 393, [704] = 358, - [705] = 403, - [706] = 359, - [707] = 389, - [708] = 406, - [709] = 411, - [710] = 414, - [711] = 417, - [712] = 418, - [713] = 420, - [714] = 421, - [715] = 423, - [716] = 361, - [717] = 431, - [718] = 439, - [719] = 440, - [720] = 441, - [721] = 443, - [722] = 444, - [723] = 445, - [724] = 446, - [725] = 456, - [726] = 362, - [727] = 462, - [728] = 463, - [729] = 464, - [730] = 465, - [731] = 466, - [732] = 467, - [733] = 325, - [734] = 480, - [735] = 506, - [736] = 507, - [737] = 515, - [738] = 404, - [739] = 407, - [740] = 412, - [741] = 413, - [742] = 425, - [743] = 432, - [744] = 325, - [745] = 365, - [746] = 469, - [747] = 508, - [748] = 363, - [749] = 366, - [750] = 367, - [751] = 368, - [752] = 369, - [753] = 421, - [754] = 370, - [755] = 371, - [756] = 373, - [757] = 374, - [758] = 375, - [759] = 376, - [760] = 377, - [761] = 378, - [762] = 379, - [763] = 380, - [764] = 381, - [765] = 384, - [766] = 385, - [767] = 179, - [768] = 326, - [769] = 350, - [770] = 328, - [771] = 372, - [772] = 339, - [773] = 325, - [774] = 383, - [775] = 340, - [776] = 341, - [777] = 342, - [778] = 344, - [779] = 345, - [780] = 422, - [781] = 484, - [782] = 414, - [783] = 390, - [784] = 452, - [785] = 453, - [786] = 454, - [787] = 455, - [788] = 456, - [789] = 457, - [790] = 418, - [791] = 458, - [792] = 459, - [793] = 427, - [794] = 444, - [795] = 445, - [796] = 460, - [797] = 461, - [798] = 462, - [799] = 463, - [800] = 464, - [801] = 465, - [802] = 466, - [803] = 467, - [804] = 428, - [805] = 429, - [806] = 519, - [807] = 468, - [808] = 469, - [809] = 473, - [810] = 474, - [811] = 446, - [812] = 430, - [813] = 437, - [814] = 431, - [815] = 421, - [816] = 477, - [817] = 479, - [818] = 480, - [819] = 481, - [820] = 422, - [821] = 423, - [822] = 419, - [823] = 483, - [824] = 451, - [825] = 443, - [826] = 507, - [827] = 424, - [828] = 508, - [829] = 448, - [830] = 449, - [831] = 515, - [832] = 426, - [833] = 179, - [834] = 411, - [835] = 438, - [836] = 450, - [837] = 416, - [838] = 470, - [839] = 471, - [840] = 472, - [841] = 439, - [842] = 440, - [843] = 405, - [844] = 420, - [845] = 404, - [846] = 407, - [847] = 509, - [848] = 510, - [849] = 511, - [850] = 441, - [851] = 514, - [852] = 412, - [853] = 413, - [854] = 403, - [855] = 406, - [856] = 442, - [857] = 417, - [858] = 434, - [859] = 425, - [860] = 408, - [861] = 435, - [862] = 432, - [863] = 409, - [864] = 447, - [865] = 506, - [866] = 529, - [867] = 448, - [868] = 449, - [869] = 419, - [870] = 870, - [871] = 450, - [872] = 872, - [873] = 420, - [874] = 441, - [875] = 519, - [876] = 470, - [877] = 471, - [878] = 472, - [879] = 554, - [880] = 442, - [881] = 412, - [882] = 413, - [883] = 443, - [884] = 555, - [885] = 553, - [886] = 870, - [887] = 447, - [888] = 509, - [889] = 510, - [890] = 511, - [891] = 425, - [892] = 446, - [893] = 514, - [894] = 432, - [895] = 872, - [896] = 550, - [897] = 542, - [898] = 451, - [899] = 444, - [900] = 526, - [901] = 527, - [902] = 528, - [903] = 452, - [904] = 453, - [905] = 454, - [906] = 544, - [907] = 546, - [908] = 870, - [909] = 455, - [910] = 456, - [911] = 457, - [912] = 458, - [913] = 459, - [914] = 872, - [915] = 422, - [916] = 547, - [917] = 423, - [918] = 460, - [919] = 461, - [920] = 445, - [921] = 462, - [922] = 463, - [923] = 464, - [924] = 870, - [925] = 465, - [926] = 466, - [927] = 467, - [928] = 532, - [929] = 872, - [930] = 533, - [931] = 551, - [932] = 870, - [933] = 404, - [934] = 535, - [935] = 872, - [936] = 870, - [937] = 468, - [938] = 469, - [939] = 424, - [940] = 872, - [941] = 872, - [942] = 870, - [943] = 544, - [944] = 407, - [945] = 473, - [946] = 474, - [947] = 870, - [948] = 872, - [949] = 949, - [950] = 552, - [951] = 553, - [952] = 870, - [953] = 554, - [954] = 872, - [955] = 870, - [956] = 872, - [957] = 542, - [958] = 408, - [959] = 546, - [960] = 555, - [961] = 536, - [962] = 537, - [963] = 538, - [964] = 406, - [965] = 477, - [966] = 526, - [967] = 527, - [968] = 528, - [969] = 529, - [970] = 479, - [971] = 480, - [972] = 481, - [973] = 409, - [974] = 870, - [975] = 483, - [976] = 484, - [977] = 426, - [978] = 506, - [979] = 507, - [980] = 540, - [981] = 551, - [982] = 508, - [983] = 427, - [984] = 428, - [985] = 532, - [986] = 533, - [987] = 535, - [988] = 429, - [989] = 989, - [990] = 541, - [991] = 430, - [992] = 431, - [993] = 552, - [994] = 411, - [995] = 515, - [996] = 414, - [997] = 434, - [998] = 416, - [999] = 536, - [1000] = 537, - [1001] = 538, - [1002] = 435, - [1003] = 390, - [1004] = 417, - [1005] = 418, - [1006] = 405, - [1007] = 437, - [1008] = 438, - [1009] = 540, - [1010] = 550, - [1011] = 439, - [1012] = 541, - [1013] = 440, - [1014] = 547, - [1015] = 872, - [1016] = 179, - [1017] = 179, - [1018] = 179, - [1019] = 179, - [1020] = 1020, - [1021] = 436, - [1022] = 436, - [1023] = 436, - [1024] = 436, - [1025] = 436, - [1026] = 436, - [1027] = 436, - [1028] = 436, - [1029] = 436, - [1030] = 436, - [1031] = 436, - [1032] = 436, - [1033] = 436, - [1034] = 436, - [1035] = 436, - [1036] = 436, - [1037] = 1037, - [1038] = 1037, + [705] = 454, + [706] = 374, + [707] = 394, + [708] = 334, + [709] = 477, + [710] = 478, + [711] = 479, + [712] = 480, + [713] = 401, + [714] = 402, + [715] = 403, + [716] = 335, + [717] = 378, + [718] = 481, + [719] = 379, + [720] = 397, + [721] = 380, + [722] = 381, + [723] = 419, + [724] = 444, + [725] = 472, + [726] = 446, + [727] = 449, + [728] = 450, + [729] = 482, + [730] = 451, + [731] = 408, + [732] = 399, + [733] = 473, + [734] = 474, + [735] = 382, + [736] = 359, + [737] = 484, + [738] = 396, + [739] = 406, + [740] = 407, + [741] = 452, + [742] = 460, + [743] = 461, + [744] = 462, + [745] = 463, + [746] = 464, + [747] = 178, + [748] = 468, + [749] = 470, + [750] = 471, + [751] = 475, + [752] = 476, + [753] = 485, + [754] = 512, + [755] = 513, + [756] = 515, + [757] = 517, + [758] = 414, + [759] = 390, + [760] = 325, + [761] = 326, + [762] = 327, + [763] = 469, + [764] = 329, + [765] = 420, + [766] = 417, + [767] = 340, + [768] = 448, + [769] = 424, + [770] = 425, + [771] = 427, + [772] = 483, + [773] = 331, + [774] = 428, + [775] = 332, + [776] = 429, + [777] = 430, + [778] = 333, + [779] = 415, + [780] = 397, + [781] = 468, + [782] = 391, + [783] = 392, + [784] = 470, + [785] = 393, + [786] = 471, + [787] = 394, + [788] = 395, + [789] = 484, + [790] = 396, + [791] = 401, + [792] = 475, + [793] = 476, + [794] = 402, + [795] = 403, + [796] = 408, + [797] = 477, + [798] = 417, + [799] = 478, + [800] = 512, + [801] = 479, + [802] = 415, + [803] = 480, + [804] = 419, + [805] = 481, + [806] = 482, + [807] = 413, + [808] = 414, + [809] = 423, + [810] = 433, + [811] = 434, + [812] = 435, + [813] = 485, + [814] = 511, + [815] = 436, + [816] = 440, + [817] = 410, + [818] = 441, + [819] = 420, + [820] = 442, + [821] = 472, + [822] = 448, + [823] = 444, + [824] = 483, + [825] = 445, + [826] = 407, + [827] = 178, + [828] = 449, + [829] = 450, + [830] = 451, + [831] = 428, + [832] = 412, + [833] = 513, + [834] = 409, + [835] = 424, + [836] = 515, + [837] = 517, + [838] = 390, + [839] = 453, + [840] = 446, + [841] = 406, + [842] = 454, + [843] = 452, + [844] = 430, + [845] = 405, + [846] = 460, + [847] = 429, + [848] = 389, + [849] = 425, + [850] = 469, + [851] = 427, + [852] = 461, + [853] = 398, + [854] = 399, + [855] = 473, + [856] = 400, + [857] = 462, + [858] = 463, + [859] = 474, + [860] = 464, + [861] = 465, + [862] = 516, + [863] = 404, + [864] = 411, + [865] = 434, + [866] = 553, + [867] = 389, + [868] = 430, + [869] = 397, + [870] = 531, + [871] = 398, + [872] = 532, + [873] = 399, + [874] = 400, + [875] = 533, + [876] = 404, + [877] = 405, + [878] = 406, + [879] = 407, + [880] = 533, + [881] = 529, + [882] = 534, + [883] = 532, + [884] = 409, + [885] = 453, + [886] = 886, + [887] = 408, + [888] = 535, + [889] = 452, + [890] = 890, + [891] = 534, + [892] = 554, + [893] = 469, + [894] = 894, + [895] = 537, + [896] = 417, + [897] = 516, + [898] = 473, + [899] = 537, + [900] = 391, + [901] = 392, + [902] = 393, + [903] = 474, + [904] = 394, + [905] = 472, + [906] = 395, + [907] = 894, + [908] = 483, + [909] = 401, + [910] = 538, + [911] = 539, + [912] = 540, + [913] = 402, + [914] = 403, + [915] = 484, + [916] = 886, + [917] = 396, + [918] = 531, + [919] = 415, + [920] = 419, + [921] = 541, + [922] = 423, + [923] = 413, + [924] = 433, + [925] = 542, + [926] = 543, + [927] = 544, + [928] = 545, + [929] = 414, + [930] = 435, + [931] = 436, + [932] = 894, + [933] = 547, + [934] = 548, + [935] = 549, + [936] = 886, + [937] = 440, + [938] = 441, + [939] = 538, + [940] = 535, + [941] = 539, + [942] = 540, + [943] = 523, + [944] = 552, + [945] = 553, + [946] = 444, + [947] = 445, + [948] = 894, + [949] = 529, + [950] = 886, + [951] = 449, + [952] = 450, + [953] = 448, + [954] = 554, + [955] = 541, + [956] = 894, + [957] = 886, + [958] = 894, + [959] = 886, + [960] = 460, + [961] = 894, + [962] = 542, + [963] = 446, + [964] = 543, + [965] = 886, + [966] = 544, + [967] = 545, + [968] = 894, + [969] = 461, + [970] = 424, + [971] = 425, + [972] = 462, + [973] = 886, + [974] = 463, + [975] = 894, + [976] = 464, + [977] = 886, + [978] = 465, + [979] = 468, + [980] = 894, + [981] = 886, + [982] = 470, + [983] = 894, + [984] = 471, + [985] = 886, + [986] = 475, + [987] = 476, + [988] = 477, + [989] = 478, + [990] = 479, + [991] = 480, + [992] = 481, + [993] = 482, + [994] = 547, + [995] = 548, + [996] = 549, + [997] = 485, + [998] = 511, + [999] = 512, + [1000] = 513, + [1001] = 515, + [1002] = 427, + [1003] = 428, + [1004] = 517, + [1005] = 390, + [1006] = 1006, + [1007] = 442, + [1008] = 523, + [1009] = 410, + [1010] = 411, + [1011] = 412, + [1012] = 552, + [1013] = 429, + [1014] = 451, + [1015] = 178, + [1016] = 178, + [1017] = 178, + [1018] = 178, + [1019] = 1019, + [1020] = 432, + [1021] = 432, + [1022] = 432, + [1023] = 432, + [1024] = 432, + [1025] = 432, + [1026] = 432, + [1027] = 432, + [1028] = 432, + [1029] = 432, + [1030] = 432, + [1031] = 432, + [1032] = 432, + [1033] = 432, + [1034] = 432, + [1035] = 432, + [1036] = 1036, + [1037] = 1036, + [1038] = 1038, [1039] = 1039, [1040] = 1040, [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 1039, - [1045] = 1040, - [1046] = 1041, - [1047] = 1043, - [1048] = 1048, - [1049] = 1043, - [1050] = 1039, - [1051] = 1040, - [1052] = 1041, - [1053] = 1053, - [1054] = 1039, - [1055] = 1040, - [1056] = 1048, - [1057] = 1039, - [1058] = 1040, - [1059] = 1048, - [1060] = 1041, - [1061] = 1061, - [1062] = 1043, - [1063] = 1043, - [1064] = 1043, - [1065] = 1039, - [1066] = 1040, - [1067] = 1041, + [1042] = 1038, + [1043] = 1040, + [1044] = 1044, + [1045] = 1038, + [1046] = 1046, + [1047] = 1040, + [1048] = 1041, + [1049] = 1044, + [1050] = 1044, + [1051] = 1038, + [1052] = 1046, + [1053] = 1040, + [1054] = 1038, + [1055] = 1046, + [1056] = 1044, + [1057] = 1044, + [1058] = 1046, + [1059] = 1038, + [1060] = 1046, + [1061] = 1040, + [1062] = 1046, + [1063] = 1046, + [1064] = 1064, + [1065] = 1044, + [1066] = 1038, + [1067] = 1046, [1068] = 1040, [1069] = 1039, - [1070] = 1040, - [1071] = 1048, - [1072] = 1041, - [1073] = 1061, - [1074] = 1048, - [1075] = 1075, - [1076] = 1076, + [1070] = 1070, + [1071] = 1044, + [1072] = 1039, + [1073] = 1038, + [1074] = 1046, + [1075] = 1040, + [1076] = 1040, [1077] = 1041, - [1078] = 1061, - [1079] = 1041, - [1080] = 1043, - [1081] = 1039, - [1082] = 1040, - [1083] = 1041, - [1084] = 1041, - [1085] = 1061, - [1086] = 1061, - [1087] = 1043, - [1088] = 1043, - [1089] = 1039, - [1090] = 1090, - [1091] = 1039, - [1092] = 1040, - [1093] = 1043, - [1094] = 1094, - [1095] = 1094, - [1096] = 1094, - [1097] = 1094, - [1098] = 1094, - [1099] = 1094, - [1100] = 1094, - [1101] = 436, - [1102] = 436, - [1103] = 1103, - [1104] = 436, - [1105] = 1103, - [1106] = 1103, - [1107] = 1103, - [1108] = 1103, - [1109] = 1103, - [1110] = 1103, + [1078] = 1078, + [1079] = 1044, + [1080] = 1044, + [1081] = 1040, + [1082] = 1041, + [1083] = 1038, + [1084] = 1046, + [1085] = 1039, + [1086] = 1040, + [1087] = 1041, + [1088] = 1088, + [1089] = 1089, + [1090] = 1044, + [1091] = 1038, + [1092] = 1039, + [1093] = 1093, + [1094] = 1093, + [1095] = 1093, + [1096] = 1093, + [1097] = 1093, + [1098] = 1093, + [1099] = 1093, + [1100] = 432, + [1101] = 432, + [1102] = 1102, + [1103] = 1102, + [1104] = 1102, + [1105] = 432, + [1106] = 1102, + [1107] = 1102, + [1108] = 1102, + [1109] = 1102, + [1110] = 1110, [1111] = 1111, - [1112] = 1112, - [1113] = 1111, + [1112] = 1110, + [1113] = 1113, [1114] = 1114, [1115] = 1115, [1116] = 289, [1117] = 1117, - [1118] = 290, + [1118] = 287, [1119] = 1119, - [1120] = 1120, + [1120] = 1119, [1121] = 1121, [1122] = 1121, [1123] = 1123, [1124] = 1124, - [1125] = 1119, - [1126] = 1119, - [1127] = 1127, - [1128] = 1124, - [1129] = 1129, - [1130] = 1129, - [1131] = 1123, - [1132] = 1121, + [1125] = 1123, + [1126] = 1123, + [1127] = 1119, + [1128] = 1121, + [1129] = 1121, + [1130] = 1121, + [1131] = 1119, + [1132] = 1123, [1133] = 1121, - [1134] = 1123, - [1135] = 1124, - [1136] = 1129, + [1134] = 1119, + [1135] = 1119, + [1136] = 1121, [1137] = 1121, - [1138] = 1121, - [1139] = 1123, - [1140] = 1124, - [1141] = 1119, + [1138] = 1119, + [1139] = 1124, + [1140] = 1119, + [1141] = 1115, [1142] = 1121, - [1143] = 1129, + [1143] = 1115, [1144] = 1121, - [1145] = 1123, + [1145] = 1119, [1146] = 1123, [1147] = 1124, - [1148] = 1124, - [1149] = 1123, - [1150] = 1123, + [1148] = 1123, + [1149] = 1149, + [1150] = 1121, [1151] = 1119, - [1152] = 1121, - [1153] = 1124, + [1152] = 1123, + [1153] = 1115, [1154] = 1123, - [1155] = 1121, - [1156] = 1123, + [1155] = 1119, + [1156] = 1121, [1157] = 1124, - [1158] = 1158, - [1159] = 1123, - [1160] = 1121, - [1161] = 1119, + [1158] = 1119, + [1159] = 1121, + [1160] = 1119, + [1161] = 1121, [1162] = 1121, [1163] = 1121, - [1164] = 1123, - [1165] = 1123, - [1166] = 1123, - [1167] = 1121, - [1168] = 1121, - [1169] = 1123, - [1170] = 1123, - [1171] = 1121, - [1172] = 1172, - [1173] = 1172, - [1174] = 1112, + [1164] = 1164, + [1165] = 1119, + [1166] = 1124, + [1167] = 1119, + [1168] = 1124, + [1169] = 1119, + [1170] = 1170, + [1171] = 1171, + [1172] = 1171, + [1173] = 288, + [1174] = 286, [1175] = 1175, - [1176] = 1176, - [1177] = 1176, - [1178] = 1178, - [1179] = 1175, - [1180] = 1114, - [1181] = 1176, - [1182] = 1175, - [1183] = 1175, - [1184] = 1172, - [1185] = 1176, - [1186] = 1172, - [1187] = 1176, - [1188] = 1178, - [1189] = 1178, - [1190] = 1175, - [1191] = 1172, - [1192] = 1175, - [1193] = 1175, - [1194] = 1176, - [1195] = 1172, - [1196] = 1176, - [1197] = 1178, - [1198] = 317, - [1199] = 1175, - [1200] = 310, - [1201] = 1176, - [1202] = 1172, - [1203] = 1178, - [1204] = 1204, - [1205] = 312, - [1206] = 1176, - [1207] = 1204, - [1208] = 1208, + [1176] = 1175, + [1177] = 1170, + [1178] = 1113, + [1179] = 1171, + [1180] = 294, + [1181] = 1175, + [1182] = 297, + [1183] = 1183, + [1184] = 1170, + [1185] = 1175, + [1186] = 1170, + [1187] = 1171, + [1188] = 1188, + [1189] = 1171, + [1190] = 1170, + [1191] = 1183, + [1192] = 1183, + [1193] = 1183, + [1194] = 1170, + [1195] = 1195, + [1196] = 1183, + [1197] = 1183, + [1198] = 1111, + [1199] = 1170, + [1200] = 1171, + [1201] = 1171, + [1202] = 1183, + [1203] = 1183, + [1204] = 1170, + [1205] = 296, + [1206] = 1183, + [1207] = 1170, + [1208] = 1170, [1209] = 1175, - [1210] = 1175, - [1211] = 1176, - [1212] = 1204, - [1213] = 1172, - [1214] = 1178, - [1215] = 285, - [1216] = 288, - [1217] = 1178, - [1218] = 1175, - [1219] = 1176, - [1220] = 1178, - [1221] = 375, - [1222] = 384, - [1223] = 354, - [1224] = 357, - [1225] = 355, - [1226] = 358, - [1227] = 344, - [1228] = 326, - [1229] = 350, - [1230] = 372, - [1231] = 328, - [1232] = 339, - [1233] = 385, - [1234] = 380, - [1235] = 353, + [1210] = 1183, + [1211] = 1171, + [1212] = 1183, + [1213] = 1170, + [1214] = 1175, + [1215] = 1188, + [1216] = 1175, + [1217] = 1175, + [1218] = 1188, + [1219] = 359, + [1220] = 329, + [1221] = 1221, + [1222] = 368, + [1223] = 369, + [1224] = 1224, + [1225] = 341, + [1226] = 334, + [1227] = 343, + [1228] = 336, + [1229] = 370, + [1230] = 373, + [1231] = 366, + [1232] = 367, + [1233] = 363, + [1234] = 342, + [1235] = 1114, [1236] = 1236, - [1237] = 381, - [1238] = 365, - [1239] = 340, - [1240] = 341, - [1241] = 345, - [1242] = 370, - [1243] = 371, - [1244] = 352, - [1245] = 363, - [1246] = 349, - [1247] = 361, - [1248] = 1248, - [1249] = 359, - [1250] = 366, - [1251] = 342, - [1252] = 351, - [1253] = 367, - [1254] = 389, - [1255] = 368, - [1256] = 377, - [1257] = 383, - [1258] = 373, - [1259] = 369, - [1260] = 374, - [1261] = 362, - [1262] = 1262, - [1263] = 379, - [1264] = 376, - [1265] = 1115, - [1266] = 378, + [1237] = 371, + [1238] = 372, + [1239] = 374, + [1240] = 378, + [1241] = 379, + [1242] = 382, + [1243] = 376, + [1244] = 380, + [1245] = 381, + [1246] = 365, + [1247] = 325, + [1248] = 326, + [1249] = 327, + [1250] = 324, + [1251] = 331, + [1252] = 332, + [1253] = 333, + [1254] = 335, + [1255] = 337, + [1256] = 358, + [1257] = 347, + [1258] = 388, + [1259] = 375, + [1260] = 330, + [1261] = 338, + [1262] = 339, + [1263] = 328, + [1264] = 348, + [1265] = 1265, + [1266] = 1266, [1267] = 1267, - [1268] = 1268, - [1269] = 1268, + [1268] = 1267, + [1269] = 1267, [1270] = 1270, - [1271] = 1271, + [1271] = 1266, [1272] = 1272, - [1273] = 1268, - [1274] = 1270, + [1273] = 1267, + [1274] = 1267, [1275] = 1275, - [1276] = 1268, - [1277] = 1270, - [1278] = 1278, - [1279] = 1268, + [1276] = 1270, + [1277] = 1266, + [1278] = 1164, + [1279] = 1279, [1280] = 1270, - [1281] = 1275, - [1282] = 1268, + [1281] = 1270, + [1282] = 1266, [1283] = 1272, - [1284] = 1275, - [1285] = 1270, - [1286] = 1272, - [1287] = 1270, - [1288] = 1270, - [1289] = 1270, - [1290] = 1270, - [1291] = 1272, - [1292] = 1270, - [1293] = 1268, + [1284] = 1266, + [1285] = 1266, + [1286] = 1266, + [1287] = 1266, + [1288] = 1266, + [1289] = 1266, + [1290] = 1267, + [1291] = 1266, + [1292] = 1267, + [1293] = 1267, [1294] = 1272, - [1295] = 1268, - [1296] = 1127, - [1297] = 1268, - [1298] = 1270, + [1295] = 1267, + [1296] = 1270, + [1297] = 1297, + [1298] = 1298, [1299] = 1299, [1300] = 1300, [1301] = 1301, [1302] = 1302, - [1303] = 1301, + [1303] = 1303, [1304] = 1304, - [1305] = 1301, + [1305] = 1305, [1306] = 1306, [1307] = 1307, - [1308] = 1127, - [1309] = 1309, - [1310] = 1310, + [1308] = 1164, + [1309] = 1306, + [1310] = 1306, [1311] = 1311, [1312] = 1312, - [1313] = 1301, + [1313] = 1306, [1314] = 1314, [1315] = 1315, [1316] = 1316, [1317] = 1317, [1318] = 1318, - [1319] = 1316, - [1320] = 1316, - [1321] = 1316, - [1322] = 1316, - [1323] = 1316, - [1324] = 1318, - [1325] = 1318, - [1326] = 1317, + [1319] = 1315, + [1320] = 1320, + [1321] = 1321, + [1322] = 1315, + [1323] = 1315, + [1324] = 1316, + [1325] = 1315, + [1326] = 1316, [1327] = 1316, - [1328] = 1316, + [1328] = 1328, [1329] = 1329, - [1330] = 1330, - [1331] = 1316, - [1332] = 1332, - [1333] = 1318, - [1334] = 1317, - [1335] = 1335, - [1336] = 1316, - [1337] = 1337, - [1338] = 1338, - [1339] = 1339, - [1340] = 1340, - [1341] = 1341, - [1342] = 1318, - [1343] = 1317, - [1344] = 1316, - [1345] = 1318, + [1330] = 1315, + [1331] = 1317, + [1332] = 1316, + [1333] = 1333, + [1334] = 1315, + [1335] = 1315, + [1336] = 1336, + [1337] = 1317, + [1338] = 1315, + [1339] = 1315, + [1340] = 1315, + [1341] = 1317, + [1342] = 1317, + [1343] = 1315, + [1344] = 1344, + [1345] = 1317, [1346] = 1317, - [1347] = 1316, + [1347] = 1347, [1348] = 1348, [1349] = 1317, - [1350] = 1316, - [1351] = 1317, - [1352] = 1317, + [1350] = 1317, + [1351] = 1351, + [1352] = 1315, [1353] = 1353, [1354] = 1354, - [1355] = 1317, + [1355] = 1355, [1356] = 1317, [1357] = 1357, - [1358] = 1358, - [1359] = 1317, - [1360] = 1316, - [1361] = 1361, - [1362] = 1362, - [1363] = 1363, - [1364] = 1317, + [1358] = 1317, + [1359] = 1316, + [1360] = 1317, + [1361] = 1316, + [1362] = 1317, + [1363] = 1316, + [1364] = 1315, [1365] = 1317, [1366] = 1317, - [1367] = 1318, - [1368] = 1318, - [1369] = 1316, - [1370] = 1317, - [1371] = 1317, - [1372] = 1316, - [1373] = 1373, + [1367] = 1317, + [1368] = 1315, + [1369] = 1315, + [1370] = 1370, + [1371] = 1371, + [1372] = 1372, + [1373] = 1371, [1374] = 1374, [1375] = 1375, [1376] = 1376, [1377] = 1377, - [1378] = 1378, + [1378] = 1377, [1379] = 1379, - [1380] = 1380, + [1380] = 1371, [1381] = 1381, [1382] = 1382, [1383] = 1383, - [1384] = 1384, + [1384] = 1371, [1385] = 1385, [1386] = 1386, [1387] = 1387, [1388] = 1388, [1389] = 1389, [1390] = 1390, - [1391] = 1391, + [1391] = 1372, [1392] = 1392, - [1393] = 1393, + [1393] = 1379, [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 1374, - [1398] = 1378, - [1399] = 1399, - [1400] = 1373, - [1401] = 1379, - [1402] = 1391, - [1403] = 1403, - [1404] = 1383, - [1405] = 1385, - [1406] = 1375, - [1407] = 1376, - [1408] = 1386, - [1409] = 1380, - [1410] = 1403, - [1411] = 1387, - [1412] = 1412, + [1395] = 1370, + [1396] = 1371, + [1397] = 1394, + [1398] = 1389, + [1399] = 1374, + [1400] = 1400, + [1401] = 1381, + [1402] = 1386, + [1403] = 1394, + [1404] = 1371, + [1405] = 1405, + [1406] = 1377, + [1407] = 1407, + [1408] = 1371, + [1409] = 1409, + [1410] = 1405, + [1411] = 1377, + [1412] = 1372, [1413] = 1413, - [1414] = 1414, - [1415] = 1379, - [1416] = 1381, - [1417] = 1382, + [1414] = 1376, + [1415] = 1394, + [1416] = 1370, + [1417] = 1389, [1418] = 1389, - [1419] = 1390, - [1420] = 1379, - [1421] = 1391, - [1422] = 1403, - [1423] = 1393, - [1424] = 1375, - [1425] = 1376, - [1426] = 1380, - [1427] = 1412, - [1428] = 1413, - [1429] = 1379, - [1430] = 1381, - [1431] = 1382, - [1432] = 1394, - [1433] = 1391, - [1434] = 1403, - [1435] = 1375, - [1436] = 1376, - [1437] = 1380, - [1438] = 1438, - [1439] = 1412, - [1440] = 1413, - [1441] = 1379, - [1442] = 1395, - [1443] = 1443, + [1419] = 1382, + [1420] = 1371, + [1421] = 1421, + [1422] = 1370, + [1423] = 1370, + [1424] = 1394, + [1425] = 1394, + [1426] = 1370, + [1427] = 1370, + [1428] = 1389, + [1429] = 1429, + [1430] = 1421, + [1431] = 1371, + [1432] = 1432, + [1433] = 1433, + [1434] = 1390, + [1435] = 1376, + [1436] = 1436, + [1437] = 1374, + [1438] = 1386, + [1439] = 1439, + [1440] = 1394, + [1441] = 1441, + [1442] = 1442, + [1443] = 1376, [1444] = 1444, - [1445] = 1399, - [1446] = 1391, - [1447] = 1403, - [1448] = 1375, + [1445] = 1400, + [1446] = 1376, + [1447] = 1447, + [1448] = 1370, [1449] = 1376, - [1450] = 1412, - [1451] = 1379, - [1452] = 1452, + [1450] = 1385, + [1451] = 1394, + [1452] = 1376, [1453] = 1453, - [1454] = 1454, - [1455] = 1455, - [1456] = 1392, - [1457] = 1396, - [1458] = 1412, - [1459] = 1391, - [1460] = 1403, - [1461] = 1375, - [1462] = 1376, - [1463] = 1413, - [1464] = 1412, - [1465] = 1379, - [1466] = 1381, - [1467] = 1444, - [1468] = 1391, - [1469] = 1403, - [1470] = 1452, - [1471] = 1375, - [1472] = 1376, - [1473] = 1453, - [1474] = 1412, - [1475] = 1382, - [1476] = 1379, - [1477] = 1454, - [1478] = 1391, - [1479] = 1403, - [1480] = 1480, - [1481] = 1375, - [1482] = 1376, - [1483] = 1412, - [1484] = 1379, - [1485] = 1455, - [1486] = 1414, - [1487] = 1391, - [1488] = 1403, - [1489] = 1375, - [1490] = 1376, - [1491] = 1412, - [1492] = 1379, - [1493] = 1381, - [1494] = 1379, - [1495] = 1379, - [1496] = 1496, - [1497] = 1379, - [1498] = 1438, - [1499] = 1403, - [1500] = 1500, - [1501] = 1382, - [1502] = 1502, + [1454] = 1413, + [1455] = 1376, + [1456] = 1456, + [1457] = 1405, + [1458] = 1376, + [1459] = 1436, + [1460] = 1409, + [1461] = 1376, + [1462] = 1405, + [1463] = 1405, + [1464] = 1376, + [1465] = 1377, + [1466] = 1377, + [1467] = 1407, + [1468] = 1377, + [1469] = 1439, + [1470] = 1385, + [1471] = 1372, + [1472] = 1432, + [1473] = 1389, + [1474] = 1433, + [1475] = 1475, + [1476] = 1389, + [1477] = 1405, + [1478] = 1383, + [1479] = 1371, + [1480] = 1371, + [1481] = 1441, + [1482] = 1475, + [1483] = 1442, + [1484] = 1447, + [1485] = 1485, + [1486] = 1371, + [1487] = 1387, + [1488] = 1371, + [1489] = 1374, + [1490] = 1394, + [1491] = 1385, + [1492] = 1371, + [1493] = 1405, + [1494] = 1377, + [1495] = 1495, + [1496] = 1392, + [1497] = 1444, + [1498] = 1389, + [1499] = 1386, + [1500] = 1370, + [1501] = 1386, + [1502] = 1485, [1503] = 1503, - [1504] = 1375, - [1505] = 1376, - [1506] = 1438, - [1507] = 1380, - [1508] = 1438, - [1509] = 1438, - [1510] = 1438, - [1511] = 1438, - [1512] = 1438, - [1513] = 1438, - [1514] = 1438, - [1515] = 1438, - [1516] = 1412, - [1517] = 1379, - [1518] = 1413, - [1519] = 1503, - [1520] = 1496, - [1521] = 1414, - [1522] = 1377, - [1523] = 1379, - [1524] = 1384, - [1525] = 1443, + [1504] = 1503, + [1505] = 1371, + [1506] = 1372, + [1507] = 1370, + [1508] = 1405, + [1509] = 1374, + [1510] = 1385, + [1511] = 1511, + [1512] = 1511, + [1513] = 1405, + [1514] = 1375, + [1515] = 1389, + [1516] = 1405, + [1517] = 1371, + [1518] = 1377, + [1519] = 1377, + [1520] = 1456, + [1521] = 1389, + [1522] = 1413, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, [1526] = 1526, [1527] = 1527, [1528] = 1528, @@ -6723,7 +6723,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1536] = 1536, [1537] = 1537, [1538] = 1538, - [1539] = 1528, + [1539] = 1539, [1540] = 1540, [1541] = 1541, [1542] = 1542, @@ -6731,651 +6731,651 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1544] = 1544, [1545] = 1545, [1546] = 1546, - [1547] = 1538, + [1547] = 1547, [1548] = 1548, [1549] = 1549, - [1550] = 1528, - [1551] = 1540, - [1552] = 1544, - [1553] = 1529, - [1554] = 1530, - [1555] = 1531, - [1556] = 1534, - [1557] = 1535, - [1558] = 1537, - [1559] = 1545, - [1560] = 1546, - [1561] = 1548, - [1562] = 1549, - [1563] = 1526, - [1564] = 1564, - [1565] = 1565, - [1566] = 1532, - [1567] = 1533, - [1568] = 1544, - [1569] = 1532, - [1570] = 1533, - [1571] = 1536, - [1572] = 1528, - [1573] = 1538, - [1574] = 1544, + [1550] = 1550, + [1551] = 1551, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, + [1555] = 1528, + [1556] = 1556, + [1557] = 1557, + [1558] = 1558, + [1559] = 1559, + [1560] = 1533, + [1561] = 1536, + [1562] = 1537, + [1563] = 1563, + [1564] = 1538, + [1565] = 1536, + [1566] = 1537, + [1567] = 1539, + [1568] = 1539, + [1569] = 1569, + [1570] = 1570, + [1571] = 1551, + [1572] = 1572, + [1573] = 1573, + [1574] = 1528, [1575] = 1575, - [1576] = 1542, - [1577] = 1544, - [1578] = 1578, - [1579] = 1532, - [1580] = 1536, - [1581] = 1581, - [1582] = 1533, - [1583] = 1529, - [1584] = 1532, - [1585] = 1533, - [1586] = 1586, - [1587] = 1540, + [1576] = 1533, + [1577] = 1541, + [1578] = 1542, + [1579] = 1543, + [1580] = 1544, + [1581] = 1545, + [1582] = 1546, + [1583] = 1547, + [1584] = 1548, + [1585] = 1549, + [1586] = 1550, + [1587] = 1551, [1588] = 1536, - [1589] = 1536, - [1590] = 1538, - [1591] = 1528, - [1592] = 1575, - [1593] = 1538, - [1594] = 1594, - [1595] = 1529, - [1596] = 1530, - [1597] = 1531, - [1598] = 1534, - [1599] = 1535, - [1600] = 1537, - [1601] = 1545, - [1602] = 1546, - [1603] = 1548, - [1604] = 1549, - [1605] = 1538, - [1606] = 1530, + [1589] = 1537, + [1590] = 1539, + [1591] = 1551, + [1592] = 1528, + [1593] = 1533, + [1594] = 1536, + [1595] = 1537, + [1596] = 1539, + [1597] = 1551, + [1598] = 1528, + [1599] = 1533, + [1600] = 1539, + [1601] = 1551, + [1602] = 1528, + [1603] = 1533, + [1604] = 1539, + [1605] = 1551, + [1606] = 1528, [1607] = 1528, - [1608] = 1531, - [1609] = 1534, + [1608] = 1533, + [1609] = 1541, [1610] = 1610, - [1611] = 1544, - [1612] = 1535, - [1613] = 1613, - [1614] = 1614, - [1615] = 1537, + [1611] = 1554, + [1612] = 1570, + [1613] = 1536, + [1614] = 1537, + [1615] = 1563, [1616] = 1538, - [1617] = 1545, - [1618] = 1546, - [1619] = 1548, + [1617] = 1539, + [1618] = 1542, + [1619] = 1543, [1620] = 1544, - [1621] = 1536, - [1622] = 1549, - [1623] = 1528, - [1624] = 1538, - [1625] = 1528, - [1626] = 1538, - [1627] = 1540, - [1628] = 1529, - [1629] = 1530, - [1630] = 1531, - [1631] = 1534, - [1632] = 1535, - [1633] = 1537, + [1621] = 1541, + [1622] = 1542, + [1623] = 1543, + [1624] = 1544, + [1625] = 1545, + [1626] = 1546, + [1627] = 1547, + [1628] = 1548, + [1629] = 1549, + [1630] = 1550, + [1631] = 1551, + [1632] = 1528, + [1633] = 1633, [1634] = 1545, [1635] = 1546, - [1636] = 1548, - [1637] = 1549, - [1638] = 1532, - [1639] = 1533, - [1640] = 1575, - [1641] = 1578, - [1642] = 1527, - [1643] = 1532, - [1644] = 1533, - [1645] = 1586, - [1646] = 1540, - [1647] = 1533, - [1648] = 1536, - [1649] = 1578, - [1650] = 1544, - [1651] = 1651, - [1652] = 1532, - [1653] = 1536, - [1654] = 1540, - [1655] = 1529, - [1656] = 1530, - [1657] = 1531, - [1658] = 1534, - [1659] = 1535, - [1660] = 1537, - [1661] = 1545, - [1662] = 1546, - [1663] = 1548, - [1664] = 1549, - [1665] = 1575, - [1666] = 1578, - [1667] = 1528, - [1668] = 1536, - [1669] = 1529, - [1670] = 1586, - [1671] = 1530, - [1672] = 1531, - [1673] = 1534, - [1674] = 1535, - [1675] = 1537, + [1636] = 1547, + [1637] = 1548, + [1638] = 1549, + [1639] = 1550, + [1640] = 1640, + [1641] = 1551, + [1642] = 1533, + [1643] = 1643, + [1644] = 1538, + [1645] = 1541, + [1646] = 1542, + [1647] = 1543, + [1648] = 1544, + [1649] = 1545, + [1650] = 1546, + [1651] = 1547, + [1652] = 1548, + [1653] = 1549, + [1654] = 1550, + [1655] = 1536, + [1656] = 1537, + [1657] = 1536, + [1658] = 1537, + [1659] = 1539, + [1660] = 1551, + [1661] = 1528, + [1662] = 1533, + [1663] = 1610, + [1664] = 1554, + [1665] = 1570, + [1666] = 1536, + [1667] = 1537, + [1668] = 1528, + [1669] = 1563, + [1670] = 1538, + [1671] = 1539, + [1672] = 1541, + [1673] = 1542, + [1674] = 1543, + [1675] = 1544, [1676] = 1545, [1677] = 1546, - [1678] = 1548, - [1679] = 1549, - [1680] = 1538, - [1681] = 1528, - [1682] = 1544, + [1678] = 1547, + [1679] = 1548, + [1680] = 1549, + [1681] = 1550, + [1682] = 1551, [1683] = 1683, - [1684] = 1684, - [1685] = 1540, - [1686] = 1529, - [1687] = 1530, - [1688] = 1531, - [1689] = 1534, - [1690] = 1535, - [1691] = 1537, - [1692] = 1545, - [1693] = 1546, - [1694] = 1548, - [1695] = 1549, - [1696] = 1575, - [1697] = 1578, - [1698] = 1540, - [1699] = 1529, - [1700] = 1530, - [1701] = 1531, - [1702] = 1534, - [1703] = 1535, - [1704] = 1537, - [1705] = 1545, - [1706] = 1546, - [1707] = 1548, - [1708] = 1549, - [1709] = 1575, - [1710] = 1578, - [1711] = 1711, - [1712] = 1712, - [1713] = 1711, - [1714] = 1714, - [1715] = 1540, - [1716] = 1529, - [1717] = 1530, - [1718] = 1531, - [1719] = 1534, - [1720] = 1535, - [1721] = 1537, - [1722] = 1545, - [1723] = 1546, - [1724] = 1548, - [1725] = 1549, - [1726] = 1575, - [1727] = 1578, - [1728] = 1544, - [1729] = 1729, - [1730] = 1538, - [1731] = 1731, - [1732] = 1543, - [1733] = 1575, - [1734] = 1578, - [1735] = 1575, - [1736] = 1542, - [1737] = 1532, - [1738] = 1575, - [1739] = 1578, - [1740] = 1740, - [1741] = 1533, - [1742] = 1742, - [1743] = 1578, - [1744] = 1744, - [1745] = 1532, - [1746] = 1537, - [1747] = 1575, - [1748] = 1578, - [1749] = 1533, - [1750] = 1750, - [1751] = 1575, - [1752] = 1578, - [1753] = 1575, - [1754] = 1578, - [1755] = 1545, - [1756] = 1756, - [1757] = 1544, - [1758] = 1758, - [1759] = 1586, - [1760] = 1586, - [1761] = 1575, - [1762] = 1613, - [1763] = 1578, - [1764] = 1540, - [1765] = 1532, - [1766] = 1742, - [1767] = 1533, - [1768] = 1740, - [1769] = 1586, - [1770] = 1540, - [1771] = 1536, - [1772] = 1529, - [1773] = 1530, - [1774] = 1531, - [1775] = 1534, - [1776] = 1535, - [1777] = 1537, - [1778] = 1545, - [1779] = 1546, - [1780] = 1548, - [1781] = 1549, - [1782] = 1536, - [1783] = 1528, - [1784] = 1784, - [1785] = 1526, - [1786] = 1564, - [1787] = 1538, - [1788] = 1610, - [1789] = 1529, - [1790] = 1530, - [1791] = 1544, - [1792] = 1792, - [1793] = 1756, - [1794] = 1540, - [1795] = 1529, - [1796] = 1530, - [1797] = 1531, - [1798] = 1534, - [1799] = 1535, - [1800] = 1537, - [1801] = 1545, - [1802] = 1546, - [1803] = 1548, - [1804] = 1549, - [1805] = 1532, - [1806] = 1533, - [1807] = 1683, - [1808] = 1536, - [1809] = 1528, - [1810] = 1546, - [1811] = 1684, + [1684] = 1528, + [1685] = 1685, + [1686] = 1533, + [1687] = 1687, + [1688] = 1538, + [1689] = 1541, + [1690] = 1542, + [1691] = 1543, + [1692] = 1544, + [1693] = 1545, + [1694] = 1546, + [1695] = 1547, + [1696] = 1548, + [1697] = 1549, + [1698] = 1550, + [1699] = 1536, + [1700] = 1537, + [1701] = 1610, + [1702] = 1640, + [1703] = 1570, + [1704] = 1563, + [1705] = 1705, + [1706] = 1538, + [1707] = 1541, + [1708] = 1542, + [1709] = 1543, + [1710] = 1544, + [1711] = 1545, + [1712] = 1546, + [1713] = 1547, + [1714] = 1548, + [1715] = 1549, + [1716] = 1550, + [1717] = 1610, + [1718] = 1570, + [1719] = 1563, + [1720] = 1563, + [1721] = 1533, + [1722] = 1538, + [1723] = 1538, + [1724] = 1541, + [1725] = 1542, + [1726] = 1543, + [1727] = 1544, + [1728] = 1545, + [1729] = 1531, + [1730] = 1547, + [1731] = 1548, + [1732] = 1549, + [1733] = 1550, + [1734] = 1610, + [1735] = 1570, + [1736] = 1538, + [1737] = 1541, + [1738] = 1542, + [1739] = 1543, + [1740] = 1544, + [1741] = 1545, + [1742] = 1546, + [1743] = 1547, + [1744] = 1548, + [1745] = 1549, + [1746] = 1550, + [1747] = 1610, + [1748] = 1570, + [1749] = 1749, + [1750] = 1534, + [1751] = 1535, + [1752] = 1538, + [1753] = 1541, + [1754] = 1542, + [1755] = 1543, + [1756] = 1544, + [1757] = 1545, + [1758] = 1546, + [1759] = 1547, + [1760] = 1548, + [1761] = 1549, + [1762] = 1550, + [1763] = 1610, + [1764] = 1570, + [1765] = 1705, + [1766] = 1539, + [1767] = 1767, + [1768] = 1610, + [1769] = 1570, + [1770] = 1610, + [1771] = 1570, + [1772] = 1610, + [1773] = 1610, + [1774] = 1570, + [1775] = 1610, + [1776] = 1570, + [1777] = 1610, + [1778] = 1570, + [1779] = 1536, + [1780] = 1537, + [1781] = 1536, + [1782] = 1538, + [1783] = 1610, + [1784] = 1529, + [1785] = 1570, + [1786] = 1536, + [1787] = 1787, + [1788] = 1537, + [1789] = 1524, + [1790] = 1563, + [1791] = 1538, + [1792] = 1539, + [1793] = 1541, + [1794] = 1542, + [1795] = 1543, + [1796] = 1544, + [1797] = 1545, + [1798] = 1546, + [1799] = 1547, + [1800] = 1548, + [1801] = 1549, + [1802] = 1550, + [1803] = 1551, + [1804] = 1643, + [1805] = 1572, + [1806] = 1573, + [1807] = 1528, + [1808] = 1633, + [1809] = 1533, + [1810] = 1539, + [1811] = 1523, [1812] = 1538, - [1813] = 1531, - [1814] = 1540, - [1815] = 1544, - [1816] = 1536, - [1817] = 1817, - [1818] = 1548, - [1819] = 1544, - [1820] = 1820, - [1821] = 1613, - [1822] = 1742, - [1823] = 1740, - [1824] = 1824, - [1825] = 1825, - [1826] = 1538, - [1827] = 1549, - [1828] = 1784, - [1829] = 1526, - [1830] = 1564, - [1831] = 1610, - [1832] = 1534, - [1833] = 1756, - [1834] = 1613, - [1835] = 1742, - [1836] = 1740, - [1837] = 1540, - [1838] = 1784, - [1839] = 1526, - [1840] = 1564, - [1841] = 1610, - [1842] = 1756, - [1843] = 1613, - [1844] = 1742, - [1845] = 1740, - [1846] = 1532, - [1847] = 1784, - [1848] = 1526, - [1849] = 1564, - [1850] = 1610, - [1851] = 1756, - [1852] = 1740, - [1853] = 1533, - [1854] = 1784, - [1855] = 1564, - [1856] = 1610, - [1857] = 1535, - [1858] = 1756, - [1859] = 1740, - [1860] = 1528, - [1861] = 1784, - [1862] = 1526, - [1863] = 1564, - [1864] = 1610, - [1865] = 1756, - [1866] = 1740, - [1867] = 1564, - [1868] = 1532, - [1869] = 1756, - [1870] = 1740, - [1871] = 1533, - [1872] = 1784, - [1873] = 1740, - [1874] = 1740, - [1875] = 1529, - [1876] = 1740, - [1877] = 1740, - [1878] = 1740, - [1879] = 1740, - [1880] = 1536, - [1881] = 1651, - [1882] = 1530, - [1883] = 1575, - [1884] = 1578, - [1885] = 1531, - [1886] = 1651, - [1887] = 1651, - [1888] = 1651, - [1889] = 1651, - [1890] = 1651, - [1891] = 1534, - [1892] = 1586, - [1893] = 1540, - [1894] = 1536, - [1895] = 1535, - [1896] = 1529, - [1897] = 1530, - [1898] = 1531, - [1899] = 1534, - [1900] = 1535, - [1901] = 1537, - [1902] = 1545, - [1903] = 1546, - [1904] = 1548, - [1905] = 1549, - [1906] = 1528, - [1907] = 1537, - [1908] = 1538, - [1909] = 1544, - [1910] = 1540, - [1911] = 1529, - [1912] = 1530, - [1913] = 1531, - [1914] = 1534, - [1915] = 1535, - [1916] = 1537, - [1917] = 1545, - [1918] = 1546, - [1919] = 1548, - [1920] = 1549, - [1921] = 1532, - [1922] = 1533, - [1923] = 1536, - [1924] = 1528, - [1925] = 1545, - [1926] = 1528, - [1927] = 1538, - [1928] = 1544, - [1929] = 1546, - [1930] = 1575, - [1931] = 1578, - [1932] = 1548, - [1933] = 1532, - [1934] = 1533, - [1935] = 1586, - [1936] = 1549, - [1937] = 1527, - [1938] = 1527, - [1939] = 1527, - [1940] = 1527, - [1941] = 1527, - [1942] = 1527, - [1943] = 1943, - [1944] = 1944, - [1945] = 1944, - [1946] = 1946, - [1947] = 1946, - [1948] = 1944, - [1949] = 1944, - [1950] = 1944, - [1951] = 1944, - [1952] = 1944, - [1953] = 1946, - [1954] = 1944, - [1955] = 1944, - [1956] = 1944, - [1957] = 1946, - [1958] = 1958, - [1959] = 1958, + [1813] = 1541, + [1814] = 1542, + [1815] = 1543, + [1816] = 1544, + [1817] = 1545, + [1818] = 1546, + [1819] = 1547, + [1820] = 1548, + [1821] = 1549, + [1822] = 1550, + [1823] = 1536, + [1824] = 1537, + [1825] = 1787, + [1826] = 1539, + [1827] = 1551, + [1828] = 1537, + [1829] = 1528, + [1830] = 1533, + [1831] = 1529, + [1832] = 1787, + [1833] = 1524, + [1834] = 1643, + [1835] = 1572, + [1836] = 1573, + [1837] = 1633, + [1838] = 1523, + [1839] = 1529, + [1840] = 1787, + [1841] = 1524, + [1842] = 1643, + [1843] = 1572, + [1844] = 1573, + [1845] = 1633, + [1846] = 1523, + [1847] = 1529, + [1848] = 1787, + [1849] = 1524, + [1850] = 1643, + [1851] = 1572, + [1852] = 1573, + [1853] = 1633, + [1854] = 1523, + [1855] = 1524, + [1856] = 1643, + [1857] = 1572, + [1858] = 1573, + [1859] = 1633, + [1860] = 1523, + [1861] = 1524, + [1862] = 1643, + [1863] = 1572, + [1864] = 1573, + [1865] = 1633, + [1866] = 1523, + [1867] = 1524, + [1868] = 1573, + [1869] = 1523, + [1870] = 1524, + [1871] = 1524, + [1872] = 1524, + [1873] = 1524, + [1874] = 1524, + [1875] = 1524, + [1876] = 1524, + [1877] = 1541, + [1878] = 1542, + [1879] = 1543, + [1880] = 1544, + [1881] = 1545, + [1882] = 1546, + [1883] = 1569, + [1884] = 1547, + [1885] = 1548, + [1886] = 1549, + [1887] = 1550, + [1888] = 1551, + [1889] = 1610, + [1890] = 1570, + [1891] = 1533, + [1892] = 1569, + [1893] = 1569, + [1894] = 1569, + [1895] = 1569, + [1896] = 1569, + [1897] = 1563, + [1898] = 1538, + [1899] = 1539, + [1900] = 1541, + [1901] = 1542, + [1902] = 1543, + [1903] = 1544, + [1904] = 1545, + [1905] = 1546, + [1906] = 1547, + [1907] = 1548, + [1908] = 1549, + [1909] = 1550, + [1910] = 1551, + [1911] = 1528, + [1912] = 1533, + [1913] = 1538, + [1914] = 1541, + [1915] = 1542, + [1916] = 1543, + [1917] = 1544, + [1918] = 1545, + [1919] = 1546, + [1920] = 1547, + [1921] = 1548, + [1922] = 1549, + [1923] = 1550, + [1924] = 1536, + [1925] = 1537, + [1926] = 1539, + [1927] = 1551, + [1928] = 1528, + [1929] = 1533, + [1930] = 1610, + [1931] = 1570, + [1932] = 1536, + [1933] = 1537, + [1934] = 1531, + [1935] = 1531, + [1936] = 1531, + [1937] = 1531, + [1938] = 1531, + [1939] = 1531, + [1940] = 1546, + [1941] = 1941, + [1942] = 1942, + [1943] = 1941, + [1944] = 1941, + [1945] = 1941, + [1946] = 1941, + [1947] = 1942, + [1948] = 1941, + [1949] = 1941, + [1950] = 1942, + [1951] = 1941, + [1952] = 1941, + [1953] = 1941, + [1954] = 1942, + [1955] = 1955, + [1956] = 1956, + [1957] = 1955, + [1958] = 1956, + [1959] = 1959, [1960] = 1960, - [1961] = 1960, - [1962] = 1960, - [1963] = 1963, + [1961] = 1956, + [1962] = 1962, + [1963] = 1956, [1964] = 1964, [1965] = 1965, [1966] = 1966, [1967] = 1967, - [1968] = 1968, + [1968] = 1942, [1969] = 1969, - [1970] = 1970, - [1971] = 1960, - [1972] = 1946, - [1973] = 1963, - [1974] = 1946, - [1975] = 1946, - [1976] = 1946, - [1977] = 1946, - [1978] = 1946, - [1979] = 1946, - [1980] = 1946, - [1981] = 1981, - [1982] = 508, - [1983] = 469, - [1984] = 1984, - [1985] = 1981, - [1986] = 1981, - [1987] = 1987, - [1988] = 1981, - [1989] = 1946, - [1990] = 1127, - [1991] = 1946, - [1992] = 1127, - [1993] = 1127, - [1994] = 1994, - [1995] = 1994, - [1996] = 1996, - [1997] = 1996, - [1998] = 1127, - [1999] = 1958, - [2000] = 1127, + [1970] = 1942, + [1971] = 1969, + [1972] = 1942, + [1973] = 1942, + [1974] = 1942, + [1975] = 1942, + [1976] = 1942, + [1977] = 1942, + [1978] = 1978, + [1979] = 1979, + [1980] = 1979, + [1981] = 1979, + [1982] = 409, + [1983] = 511, + [1984] = 1979, + [1985] = 1985, + [1986] = 1164, + [1987] = 1164, + [1988] = 1164, + [1989] = 1942, + [1990] = 1942, + [1991] = 1991, + [1992] = 1992, + [1993] = 1992, + [1994] = 1991, + [1995] = 1955, + [1996] = 1164, + [1997] = 1967, + [1998] = 1998, + [1999] = 1164, + [2000] = 1969, [2001] = 2001, - [2002] = 1958, - [2003] = 1963, - [2004] = 2004, - [2005] = 1970, - [2006] = 2006, - [2007] = 1965, - [2008] = 1968, - [2009] = 1969, - [2010] = 1968, - [2011] = 1969, - [2012] = 1966, - [2013] = 1964, - [2014] = 1967, - [2015] = 1970, - [2016] = 2016, - [2017] = 2006, - [2018] = 1127, - [2019] = 1964, - [2020] = 1966, - [2021] = 1965, - [2022] = 1967, - [2023] = 1996, - [2024] = 1996, - [2025] = 1994, - [2026] = 2026, - [2027] = 1996, - [2028] = 2028, - [2029] = 1994, - [2030] = 1994, - [2031] = 1963, - [2032] = 1127, - [2033] = 1127, - [2034] = 1127, - [2035] = 1127, - [2036] = 1127, - [2037] = 2037, - [2038] = 1996, - [2039] = 1127, - [2040] = 1127, - [2041] = 1994, - [2042] = 1127, - [2043] = 1127, - [2044] = 1127, + [2002] = 1964, + [2003] = 1965, + [2004] = 1959, + [2005] = 1964, + [2006] = 1965, + [2007] = 1960, + [2008] = 1962, + [2009] = 1966, + [2010] = 2010, + [2011] = 1967, + [2012] = 1164, + [2013] = 1960, + [2014] = 2014, + [2015] = 1966, + [2016] = 1962, + [2017] = 1955, + [2018] = 2001, + [2019] = 1959, + [2020] = 1991, + [2021] = 2021, + [2022] = 1164, + [2023] = 1969, + [2024] = 1992, + [2025] = 1991, + [2026] = 1992, + [2027] = 1991, + [2028] = 1992, + [2029] = 1164, + [2030] = 1164, + [2031] = 2031, + [2032] = 1164, + [2033] = 1992, + [2034] = 1164, + [2035] = 1164, + [2036] = 1164, + [2037] = 1991, + [2038] = 1164, + [2039] = 1164, + [2040] = 2040, + [2041] = 1164, + [2042] = 1992, + [2043] = 1991, + [2044] = 2044, [2045] = 2045, - [2046] = 1969, - [2047] = 2047, + [2046] = 2046, + [2047] = 1964, [2048] = 2048, - [2049] = 2049, - [2050] = 1963, - [2051] = 2045, - [2052] = 1127, - [2053] = 2053, + [2049] = 1962, + [2050] = 1992, + [2051] = 1967, + [2052] = 1991, + [2053] = 1164, [2054] = 2054, - [2055] = 1964, - [2056] = 1994, - [2057] = 1967, + [2055] = 2055, + [2056] = 2044, + [2057] = 1960, [2058] = 2058, - [2059] = 2047, - [2060] = 1996, - [2061] = 1970, - [2062] = 1994, - [2063] = 2063, - [2064] = 1996, - [2065] = 1965, - [2066] = 1968, - [2067] = 1966, - [2068] = 1994, - [2069] = 1946, + [2059] = 1959, + [2060] = 2046, + [2061] = 2061, + [2062] = 1969, + [2063] = 1965, + [2064] = 1966, + [2065] = 2065, + [2066] = 1942, + [2067] = 2067, + [2068] = 2068, + [2069] = 2069, [2070] = 2070, - [2071] = 2071, - [2072] = 1946, + [2071] = 1942, + [2072] = 2072, [2073] = 2073, [2074] = 2074, - [2075] = 2075, - [2076] = 2076, - [2077] = 2077, - [2078] = 2078, - [2079] = 1946, - [2080] = 1946, - [2081] = 1996, - [2082] = 2082, - [2083] = 2083, - [2084] = 1996, - [2085] = 1994, - [2086] = 2086, - [2087] = 2087, - [2088] = 1970, - [2089] = 1968, + [2075] = 1992, + [2076] = 1991, + [2077] = 1942, + [2078] = 1942, + [2079] = 2079, + [2080] = 1959, + [2081] = 1965, + [2082] = 1960, + [2083] = 1991, + [2084] = 1966, + [2085] = 1967, + [2086] = 1962, + [2087] = 1964, + [2088] = 2088, + [2089] = 1992, [2090] = 2090, - [2091] = 1969, - [2092] = 1994, - [2093] = 2076, - [2094] = 2094, - [2095] = 2071, - [2096] = 1965, - [2097] = 1964, - [2098] = 1966, - [2099] = 1996, - [2100] = 1967, + [2091] = 1992, + [2092] = 2069, + [2093] = 2070, + [2094] = 1991, + [2095] = 2095, + [2096] = 2096, + [2097] = 2097, + [2098] = 1978, + [2099] = 1991, + [2100] = 2100, [2101] = 2101, [2102] = 2102, - [2103] = 2103, - [2104] = 2049, + [2103] = 1991, + [2104] = 2067, [2105] = 2105, - [2106] = 1984, - [2107] = 2102, - [2108] = 2108, - [2109] = 2109, - [2110] = 1996, - [2111] = 2109, + [2106] = 2106, + [2107] = 2105, + [2108] = 1992, + [2109] = 2105, + [2110] = 2110, + [2111] = 2111, [2112] = 2112, - [2113] = 2105, - [2114] = 2114, - [2115] = 1994, - [2116] = 2109, - [2117] = 1996, + [2113] = 2100, + [2114] = 2101, + [2115] = 2102, + [2116] = 2105, + [2117] = 2117, [2118] = 2118, - [2119] = 2119, - [2120] = 2078, + [2119] = 1992, + [2120] = 2110, [2121] = 2121, - [2122] = 2121, - [2123] = 2109, - [2124] = 2103, - [2125] = 2101, + [2122] = 2045, + [2123] = 2111, + [2124] = 2124, + [2125] = 2112, [2126] = 2126, - [2127] = 1994, - [2128] = 2126, - [2129] = 2129, - [2130] = 1963, - [2131] = 1963, - [2132] = 1958, + [2127] = 2127, + [2128] = 1978, + [2129] = 2045, + [2130] = 2069, + [2131] = 2126, + [2132] = 2126, [2133] = 2133, - [2134] = 2134, - [2135] = 2135, - [2136] = 2136, - [2137] = 2137, - [2138] = 2074, - [2139] = 2139, - [2140] = 2140, + [2134] = 1955, + [2135] = 2068, + [2136] = 2126, + [2137] = 2133, + [2138] = 2133, + [2139] = 2133, + [2140] = 2126, [2141] = 2133, - [2142] = 2049, - [2143] = 2135, + [2142] = 2126, + [2143] = 2133, [2144] = 2144, - [2145] = 1984, + [2145] = 1978, [2146] = 2146, - [2147] = 2147, - [2148] = 2108, - [2149] = 2133, - [2150] = 2135, + [2147] = 2133, + [2148] = 2148, + [2149] = 2149, + [2150] = 1969, [2151] = 2151, - [2152] = 2133, - [2153] = 2076, - [2154] = 2135, - [2155] = 2071, - [2156] = 2133, - [2157] = 2135, - [2158] = 2158, - [2159] = 2133, - [2160] = 2135, + [2152] = 2152, + [2153] = 2153, + [2154] = 2048, + [2155] = 2106, + [2156] = 2156, + [2157] = 2157, + [2158] = 2070, + [2159] = 2159, + [2160] = 2160, [2161] = 2161, [2162] = 2162, - [2163] = 2074, - [2164] = 1984, + [2163] = 2163, + [2164] = 1955, [2165] = 2165, - [2166] = 2135, - [2167] = 1958, - [2168] = 2133, - [2169] = 2169, + [2166] = 2166, + [2167] = 2068, + [2168] = 2168, + [2169] = 2126, [2170] = 2170, [2171] = 2171, [2172] = 2172, - [2173] = 2049, - [2174] = 2053, + [2173] = 2173, + [2174] = 2174, [2175] = 2175, - [2176] = 2176, - [2177] = 2177, + [2176] = 1991, + [2177] = 2070, [2178] = 2178, - [2179] = 2071, - [2180] = 2076, - [2181] = 2181, - [2182] = 1996, + [2179] = 2179, + [2180] = 2180, + [2181] = 1969, + [2182] = 2182, [2183] = 2183, [2184] = 2184, [2185] = 2185, [2186] = 2186, - [2187] = 2162, - [2188] = 2071, - [2189] = 2189, + [2187] = 2187, + [2188] = 2055, + [2189] = 1969, [2190] = 2190, - [2191] = 2191, + [2191] = 2069, [2192] = 2192, [2193] = 2193, [2194] = 2194, @@ -7383,8014 +7383,8014 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2196] = 2196, [2197] = 2197, [2198] = 2198, - [2199] = 2199, + [2199] = 2070, [2200] = 2200, [2201] = 2201, [2202] = 2202, - [2203] = 2063, + [2203] = 2203, [2204] = 2204, [2205] = 2205, - [2206] = 1963, + [2206] = 2127, [2207] = 2207, [2208] = 2208, [2209] = 2209, - [2210] = 2076, - [2211] = 2211, - [2212] = 2037, + [2210] = 2210, + [2211] = 2040, + [2212] = 2069, [2213] = 2213, [2214] = 2214, [2215] = 2215, - [2216] = 2216, + [2216] = 2045, [2217] = 2217, [2218] = 2218, [2219] = 2219, - [2220] = 2220, - [2221] = 2221, + [2220] = 1992, + [2221] = 1969, [2222] = 2222, [2223] = 2223, - [2224] = 1994, + [2224] = 2224, [2225] = 2225, [2226] = 2226, [2227] = 2227, [2228] = 2228, [2229] = 2229, [2230] = 2230, - [2231] = 1963, + [2231] = 2231, [2232] = 2232, [2233] = 2233, [2234] = 2234, [2235] = 2235, [2236] = 2236, - [2237] = 2237, - [2238] = 2238, - [2239] = 2239, - [2240] = 2105, - [2241] = 2121, - [2242] = 2103, + [2237] = 2178, + [2238] = 2222, + [2239] = 2225, + [2240] = 2240, + [2241] = 2230, + [2242] = 2100, [2243] = 2101, - [2244] = 2126, - [2245] = 2102, - [2246] = 2105, - [2247] = 2247, - [2248] = 2247, - [2249] = 1946, - [2250] = 2102, - [2251] = 2049, - [2252] = 2252, - [2253] = 2220, - [2254] = 2239, - [2255] = 1984, - [2256] = 2103, - [2257] = 2247, - [2258] = 2071, - [2259] = 2121, - [2260] = 2103, - [2261] = 2101, - [2262] = 2126, - [2263] = 2076, - [2264] = 2247, - [2265] = 2213, - [2266] = 2101, - [2267] = 1946, - [2268] = 2268, - [2269] = 2214, - [2270] = 2006, - [2271] = 2215, - [2272] = 2216, - [2273] = 2217, - [2274] = 1946, - [2275] = 1946, - [2276] = 2208, - [2277] = 1946, - [2278] = 2218, - [2279] = 2209, - [2280] = 2121, - [2281] = 1946, - [2282] = 2175, - [2283] = 2076, - [2284] = 2219, - [2285] = 2071, - [2286] = 2126, - [2287] = 2105, - [2288] = 2102, - [2289] = 2078, + [2244] = 1942, + [2245] = 2233, + [2246] = 2175, + [2247] = 2110, + [2248] = 2111, + [2249] = 2112, + [2250] = 2100, + [2251] = 2101, + [2252] = 2102, + [2253] = 2197, + [2254] = 2198, + [2255] = 2110, + [2256] = 2111, + [2257] = 2112, + [2258] = 2100, + [2259] = 2101, + [2260] = 2102, + [2261] = 1978, + [2262] = 2102, + [2263] = 2190, + [2264] = 2070, + [2265] = 2069, + [2266] = 2110, + [2267] = 2070, + [2268] = 2204, + [2269] = 2069, + [2270] = 2205, + [2271] = 2271, + [2272] = 2001, + [2273] = 1942, + [2274] = 1942, + [2275] = 1942, + [2276] = 1942, + [2277] = 1942, + [2278] = 2271, + [2279] = 2271, + [2280] = 2045, + [2281] = 2271, + [2282] = 2111, + [2283] = 2112, + [2284] = 2284, + [2285] = 2187, + [2286] = 2001, + [2287] = 2287, + [2288] = 2287, + [2289] = 2287, [2290] = 2290, - [2291] = 2291, - [2292] = 2121, - [2293] = 2291, - [2294] = 2290, - [2295] = 2103, - [2296] = 2101, - [2297] = 2126, - [2298] = 2105, - [2299] = 2102, - [2300] = 2162, - [2301] = 2016, - [2302] = 2290, - [2303] = 2290, - [2304] = 2290, - [2305] = 2006, - [2306] = 2290, - [2307] = 2006, - [2308] = 2001, - [2309] = 2309, - [2310] = 2291, - [2311] = 2309, - [2312] = 2291, - [2313] = 2313, - [2314] = 2290, - [2315] = 2268, - [2316] = 1984, - [2317] = 2317, - [2318] = 2318, - [2319] = 2290, - [2320] = 2006, - [2321] = 2309, - [2322] = 2309, - [2323] = 2323, - [2324] = 2290, - [2325] = 2001, - [2326] = 2016, - [2327] = 2103, - [2328] = 2101, - [2329] = 2126, - [2330] = 2105, - [2331] = 2102, - [2332] = 2121, - [2333] = 2001, - [2334] = 2103, + [2291] = 2287, + [2292] = 2287, + [2293] = 2001, + [2294] = 2127, + [2295] = 2295, + [2296] = 2296, + [2297] = 2297, + [2298] = 2001, + [2299] = 2287, + [2300] = 2295, + [2301] = 2287, + [2302] = 1978, + [2303] = 2296, + [2304] = 2295, + [2305] = 2287, + [2306] = 2296, + [2307] = 2284, + [2308] = 2010, + [2309] = 2110, + [2310] = 2310, + [2311] = 2311, + [2312] = 2287, + [2313] = 2111, + [2314] = 2112, + [2315] = 2100, + [2316] = 2101, + [2317] = 2102, + [2318] = 2067, + [2319] = 2296, + [2320] = 1998, + [2321] = 2295, + [2322] = 2322, + [2323] = 2110, + [2324] = 2127, + [2325] = 1967, + [2326] = 2100, + [2327] = 2070, + [2328] = 2040, + [2329] = 2067, + [2330] = 2111, + [2331] = 2069, + [2332] = 1960, + [2333] = 2310, + [2334] = 2311, [2335] = 2101, - [2336] = 1970, - [2337] = 2016, - [2338] = 2126, - [2339] = 2105, - [2340] = 2102, - [2341] = 2006, - [2342] = 1964, - [2343] = 1966, - [2344] = 1967, - [2345] = 2317, - [2346] = 2318, - [2347] = 2108, - [2348] = 1965, - [2349] = 1968, - [2350] = 1969, - [2351] = 2078, - [2352] = 2006, - [2353] = 2026, - [2354] = 2162, - [2355] = 2037, - [2356] = 2076, - [2357] = 2078, - [2358] = 2071, - [2359] = 2071, - [2360] = 2076, - [2361] = 2162, - [2362] = 2121, - [2363] = 2363, - [2364] = 2045, - [2365] = 2047, - [2366] = 1994, - [2367] = 2006, - [2368] = 1996, - [2369] = 2037, - [2370] = 1994, - [2371] = 2323, - [2372] = 2108, - [2373] = 1996, - [2374] = 2037, - [2375] = 2026, - [2376] = 2121, - [2377] = 2076, - [2378] = 2071, - [2379] = 2103, - [2380] = 2101, - [2381] = 2126, - [2382] = 2105, - [2383] = 2162, - [2384] = 2102, - [2385] = 2076, - [2386] = 2071, - [2387] = 2162, - [2388] = 2026, - [2389] = 2075, - [2390] = 2045, - [2391] = 2121, - [2392] = 2047, - [2393] = 2045, - [2394] = 2247, - [2395] = 2126, - [2396] = 2077, - [2397] = 2045, - [2398] = 2001, - [2399] = 2247, - [2400] = 2215, - [2401] = 2105, - [2402] = 2402, - [2403] = 2103, - [2404] = 2101, - [2405] = 2058, - [2406] = 2006, - [2407] = 2407, - [2408] = 2408, - [2409] = 2220, - [2410] = 2208, - [2411] = 2078, - [2412] = 2016, - [2413] = 2216, - [2414] = 2214, - [2415] = 2213, - [2416] = 2063, - [2417] = 2102, - [2418] = 2217, - [2419] = 2209, - [2420] = 2054, - [2421] = 2006, - [2422] = 2219, - [2423] = 2047, - [2424] = 2103, - [2425] = 2218, - [2426] = 2121, + [2336] = 1965, + [2337] = 1959, + [2338] = 2001, + [2339] = 2031, + [2340] = 2069, + [2341] = 2102, + [2342] = 2106, + [2343] = 2010, + [2344] = 2010, + [2345] = 2070, + [2346] = 2127, + [2347] = 1962, + [2348] = 2001, + [2349] = 1964, + [2350] = 2112, + [2351] = 1966, + [2352] = 1998, + [2353] = 2110, + [2354] = 1998, + [2355] = 2111, + [2356] = 2112, + [2357] = 2100, + [2358] = 2101, + [2359] = 2102, + [2360] = 2067, + [2361] = 1991, + [2362] = 2040, + [2363] = 2001, + [2364] = 2069, + [2365] = 2046, + [2366] = 2031, + [2367] = 2070, + [2368] = 2297, + [2369] = 2101, + [2370] = 2069, + [2371] = 2044, + [2372] = 2110, + [2373] = 2111, + [2374] = 2031, + [2375] = 2112, + [2376] = 2127, + [2377] = 2040, + [2378] = 2106, + [2379] = 1991, + [2380] = 1992, + [2381] = 2102, + [2382] = 2127, + [2383] = 2100, + [2384] = 2070, + [2385] = 1992, + [2386] = 2044, + [2387] = 2001, + [2388] = 2046, + [2389] = 2102, + [2390] = 2044, + [2391] = 1998, + [2392] = 2001, + [2393] = 2061, + [2394] = 2046, + [2395] = 2111, + [2396] = 2271, + [2397] = 2074, + [2398] = 2054, + [2399] = 2021, + [2400] = 2079, + [2401] = 2110, + [2402] = 2111, + [2403] = 2112, + [2404] = 2100, + [2405] = 2101, + [2406] = 2055, + [2407] = 2100, + [2408] = 2101, + [2409] = 2271, + [2410] = 2410, + [2411] = 2112, + [2412] = 2010, + [2413] = 2046, + [2414] = 2110, + [2415] = 2197, + [2416] = 2198, + [2417] = 2417, + [2418] = 2044, + [2419] = 2204, + [2420] = 2205, + [2421] = 2067, + [2422] = 2058, + [2423] = 2222, + [2424] = 2225, + [2425] = 2230, + [2426] = 2233, [2427] = 2175, - [2428] = 2239, - [2429] = 2028, - [2430] = 2105, - [2431] = 2102, - [2432] = 2126, - [2433] = 2101, - [2434] = 2047, - [2435] = 2048, - [2436] = 2214, - [2437] = 2437, - [2438] = 2028, - [2439] = 2077, - [2440] = 2058, - [2441] = 1964, - [2442] = 1966, - [2443] = 1967, - [2444] = 2437, - [2445] = 2048, - [2446] = 2446, + [2428] = 2178, + [2429] = 2187, + [2430] = 2190, + [2431] = 2431, + [2432] = 2102, + [2433] = 2296, + [2434] = 2090, + [2435] = 2046, + [2436] = 2295, + [2437] = 2044, + [2438] = 2296, + [2439] = 2074, + [2440] = 2127, + [2441] = 2045, + [2442] = 1969, + [2443] = 2271, + [2444] = 2271, + [2445] = 2271, + [2446] = 2271, [2447] = 2447, - [2448] = 2126, - [2449] = 2076, - [2450] = 2105, - [2451] = 1968, - [2452] = 2047, - [2453] = 2054, - [2454] = 2437, - [2455] = 2094, - [2456] = 2446, - [2457] = 2083, - [2458] = 2309, - [2459] = 2001, - [2460] = 2075, - [2461] = 2071, - [2462] = 2446, - [2463] = 2102, - [2464] = 2048, - [2465] = 2309, - [2466] = 2086, - [2467] = 2045, - [2468] = 2291, - [2469] = 2446, - [2470] = 2026, - [2471] = 2063, - [2472] = 2121, - [2473] = 2473, - [2474] = 2208, - [2475] = 2075, - [2476] = 2209, - [2477] = 1969, - [2478] = 2175, - [2479] = 2446, - [2480] = 2291, - [2481] = 2239, - [2482] = 2103, - [2483] = 2162, - [2484] = 2247, - [2485] = 2077, - [2486] = 2247, - [2487] = 2028, - [2488] = 2006, - [2489] = 2016, - [2490] = 2247, - [2491] = 1965, - [2492] = 2047, - [2493] = 1970, - [2494] = 2090, - [2495] = 1963, - [2496] = 2058, - [2497] = 2437, - [2498] = 2446, - [2499] = 2037, - [2500] = 2006, - [2501] = 2121, - [2502] = 2045, - [2503] = 2213, - [2504] = 2247, - [2505] = 2505, - [2506] = 2215, - [2507] = 2216, - [2508] = 2217, - [2509] = 2126, - [2510] = 2247, - [2511] = 2105, - [2512] = 2218, - [2513] = 2247, - [2514] = 2063, - [2515] = 2446, - [2516] = 2108, - [2517] = 2219, - [2518] = 2220, - [2519] = 2102, - [2520] = 2317, - [2521] = 2318, - [2522] = 2049, - [2523] = 2103, - [2524] = 2054, - [2525] = 2162, - [2526] = 2101, - [2527] = 2101, - [2528] = 1994, - [2529] = 2529, - [2530] = 1968, - [2531] = 1969, - [2532] = 2309, - [2533] = 2112, - [2534] = 2291, - [2535] = 2309, - [2536] = 290, - [2537] = 2537, - [2538] = 2538, - [2539] = 1994, - [2540] = 1996, - [2541] = 2541, - [2542] = 2291, - [2543] = 2114, - [2544] = 2309, - [2545] = 292, - [2546] = 2291, - [2547] = 2049, - [2548] = 2026, - [2549] = 2309, - [2550] = 2094, - [2551] = 2083, - [2552] = 2291, - [2553] = 2086, - [2554] = 2291, - [2555] = 1964, - [2556] = 2556, - [2557] = 1966, - [2558] = 2529, - [2559] = 1970, - [2560] = 1996, - [2561] = 2537, - [2562] = 1967, - [2563] = 2541, - [2564] = 291, - [2565] = 2565, - [2566] = 2529, - [2567] = 2537, - [2568] = 289, - [2569] = 2317, - [2570] = 2318, - [2571] = 2317, - [2572] = 2318, - [2573] = 2529, - [2574] = 2537, - [2575] = 2541, - [2576] = 2047, - [2577] = 2090, - [2578] = 2045, - [2579] = 2094, - [2580] = 2083, - [2581] = 2309, - [2582] = 2086, - [2583] = 1965, - [2584] = 1996, - [2585] = 1970, - [2586] = 1994, - [2587] = 1965, - [2588] = 1968, - [2589] = 1969, - [2590] = 2268, - [2591] = 1964, - [2592] = 1966, - [2593] = 1967, - [2594] = 2090, - [2595] = 2028, - [2596] = 2162, - [2597] = 2309, - [2598] = 2291, - [2599] = 2162, - [2600] = 2541, - [2601] = 2170, - [2602] = 2058, - [2603] = 2121, - [2604] = 2102, - [2605] = 2049, - [2606] = 2075, - [2607] = 2037, - [2608] = 2118, - [2609] = 2268, - [2610] = 2126, - [2611] = 2247, - [2612] = 2048, - [2613] = 2053, - [2614] = 2208, - [2615] = 2147, - [2616] = 2209, - [2617] = 2063, - [2618] = 2082, - [2619] = 2070, - [2620] = 2175, - [2621] = 2239, - [2622] = 2073, - [2623] = 2054, - [2624] = 2213, - [2625] = 2114, - [2626] = 2119, - [2627] = 2627, - [2628] = 2074, - [2629] = 2103, - [2630] = 2101, - [2631] = 2214, - [2632] = 2215, - [2633] = 2114, - [2634] = 2216, - [2635] = 2247, - [2636] = 2047, - [2637] = 2112, - [2638] = 2049, - [2639] = 2217, - [2640] = 2218, - [2641] = 2045, - [2642] = 2219, - [2643] = 2220, - [2644] = 2105, - [2645] = 2028, + [2448] = 2055, + [2449] = 1959, + [2450] = 2001, + [2451] = 2054, + [2452] = 2095, + [2453] = 2096, + [2454] = 2097, + [2455] = 2031, + [2456] = 2070, + [2457] = 1964, + [2458] = 1965, + [2459] = 1960, + [2460] = 2127, + [2461] = 2058, + [2462] = 2079, + [2463] = 2010, + [2464] = 1962, + [2465] = 1966, + [2466] = 1967, + [2467] = 2061, + [2468] = 2295, + [2469] = 2040, + [2470] = 1998, + [2471] = 2046, + [2472] = 2472, + [2473] = 2001, + [2474] = 2111, + [2475] = 2112, + [2476] = 2476, + [2477] = 2021, + [2478] = 2079, + [2479] = 2054, + [2480] = 2100, + [2481] = 2044, + [2482] = 2476, + [2483] = 2447, + [2484] = 2101, + [2485] = 2058, + [2486] = 2271, + [2487] = 2102, + [2488] = 2061, + [2489] = 2110, + [2490] = 2197, + [2491] = 2310, + [2492] = 2311, + [2493] = 2074, + [2494] = 2198, + [2495] = 2204, + [2496] = 2205, + [2497] = 2111, + [2498] = 2112, + [2499] = 2021, + [2500] = 2476, + [2501] = 2447, + [2502] = 2502, + [2503] = 2476, + [2504] = 2447, + [2505] = 2055, + [2506] = 2447, + [2507] = 2110, + [2508] = 2447, + [2509] = 2447, + [2510] = 2222, + [2511] = 2225, + [2512] = 2230, + [2513] = 2233, + [2514] = 2175, + [2515] = 2271, + [2516] = 2100, + [2517] = 2101, + [2518] = 2178, + [2519] = 2106, + [2520] = 2069, + [2521] = 2187, + [2522] = 2190, + [2523] = 2102, + [2524] = 2524, + [2525] = 2046, + [2526] = 2090, + [2527] = 2295, + [2528] = 2528, + [2529] = 2296, + [2530] = 2117, + [2531] = 2127, + [2532] = 2295, + [2533] = 287, + [2534] = 290, + [2535] = 291, + [2536] = 2536, + [2537] = 2295, + [2538] = 2095, + [2539] = 2296, + [2540] = 2295, + [2541] = 1959, + [2542] = 2296, + [2543] = 2536, + [2544] = 2544, + [2545] = 2296, + [2546] = 2044, + [2547] = 2097, + [2548] = 2528, + [2549] = 2536, + [2550] = 1991, + [2551] = 2544, + [2552] = 2310, + [2553] = 2311, + [2554] = 2310, + [2555] = 2311, + [2556] = 2544, + [2557] = 1991, + [2558] = 1964, + [2559] = 2528, + [2560] = 2536, + [2561] = 1965, + [2562] = 2544, + [2563] = 1992, + [2564] = 2296, + [2565] = 2528, + [2566] = 1960, + [2567] = 289, + [2568] = 1962, + [2569] = 1992, + [2570] = 2127, + [2571] = 1966, + [2572] = 1991, + [2573] = 2031, + [2574] = 1959, + [2575] = 2295, + [2576] = 2090, + [2577] = 2577, + [2578] = 1967, + [2579] = 1992, + [2580] = 1962, + [2581] = 2045, + [2582] = 2096, + [2583] = 2095, + [2584] = 2295, + [2585] = 2585, + [2586] = 2096, + [2587] = 2097, + [2588] = 2284, + [2589] = 1964, + [2590] = 1965, + [2591] = 2591, + [2592] = 1960, + [2593] = 1966, + [2594] = 2121, + [2595] = 2296, + [2596] = 2021, + [2597] = 1967, + [2598] = 2205, + [2599] = 2124, + [2600] = 2101, + [2601] = 2601, + [2602] = 2054, + [2603] = 2197, + [2604] = 2198, + [2605] = 2204, + [2606] = 2046, + [2607] = 2118, + [2608] = 2222, + [2609] = 2225, + [2610] = 2230, + [2611] = 2233, + [2612] = 2175, + [2613] = 2178, + [2614] = 2117, + [2615] = 2040, + [2616] = 2187, + [2617] = 2190, + [2618] = 2618, + [2619] = 2121, + [2620] = 2121, + [2621] = 2074, + [2622] = 2058, + [2623] = 2044, + [2624] = 2153, + [2625] = 2065, + [2626] = 2072, + [2627] = 2117, + [2628] = 2073, + [2629] = 2021, + [2630] = 2090, + [2631] = 2045, + [2632] = 2284, + [2633] = 2271, + [2634] = 2079, + [2635] = 2102, + [2636] = 2271, + [2637] = 2046, + [2638] = 2044, + [2639] = 2045, + [2640] = 2149, + [2641] = 2100, + [2642] = 2055, + [2643] = 2048, + [2644] = 2061, + [2645] = 2645, [2646] = 2646, - [2647] = 2647, - [2648] = 2090, - [2649] = 2077, - [2650] = 2650, - [2651] = 2323, - [2652] = 2047, - [2653] = 2045, - [2654] = 2112, - [2655] = 1966, - [2656] = 2074, - [2657] = 1996, - [2658] = 2323, - [2659] = 2170, - [2660] = 2045, - [2661] = 2147, - [2662] = 2161, - [2663] = 2058, + [2647] = 2111, + [2648] = 2110, + [2649] = 2112, + [2650] = 2068, + [2651] = 2297, + [2652] = 2149, + [2653] = 2118, + [2654] = 2044, + [2655] = 2068, + [2656] = 2161, + [2657] = 2058, + [2658] = 2162, + [2659] = 2163, + [2660] = 2165, + [2661] = 340, + [2662] = 1992, + [2663] = 2157, [2664] = 2048, - [2665] = 2119, - [2666] = 2136, - [2667] = 2118, - [2668] = 2129, - [2669] = 1994, - [2670] = 2162, - [2671] = 2158, - [2672] = 2165, - [2673] = 2309, - [2674] = 2139, - [2675] = 2094, - [2676] = 2083, - [2677] = 2291, - [2678] = 2147, - [2679] = 325, - [2680] = 2118, - [2681] = 2053, - [2682] = 2086, - [2683] = 2082, - [2684] = 2684, - [2685] = 325, - [2686] = 2070, - [2687] = 2063, - [2688] = 1994, - [2689] = 1996, - [2690] = 2317, - [2691] = 2171, - [2692] = 2172, - [2693] = 2323, - [2694] = 2684, - [2695] = 2309, - [2696] = 2170, - [2697] = 2140, - [2698] = 2087, - [2699] = 2144, - [2700] = 2054, - [2701] = 2073, - [2702] = 2291, - [2703] = 2074, - [2704] = 2134, - [2705] = 2684, - [2706] = 2706, - [2707] = 2684, - [2708] = 2684, - [2709] = 2070, - [2710] = 2684, - [2711] = 2684, - [2712] = 2073, - [2713] = 288, - [2714] = 285, - [2715] = 1970, - [2716] = 310, - [2717] = 1965, - [2718] = 1968, - [2719] = 1969, - [2720] = 1964, - [2721] = 2053, - [2722] = 1967, - [2723] = 2045, - [2724] = 2047, - [2725] = 2082, - [2726] = 2047, - [2727] = 2047, - [2728] = 2119, - [2729] = 2137, - [2730] = 2045, - [2731] = 2318, - [2732] = 2129, - [2733] = 2158, - [2734] = 2734, - [2735] = 369, - [2736] = 2086, - [2737] = 2268, - [2738] = 417, - [2739] = 418, - [2740] = 446, - [2741] = 370, - [2742] = 2049, + [2665] = 2073, + [2666] = 2044, + [2667] = 2046, + [2668] = 2168, + [2669] = 2068, + [2670] = 2146, + [2671] = 2297, + [2672] = 2149, + [2673] = 2061, + [2674] = 2055, + [2675] = 2153, + [2676] = 2048, + [2677] = 2046, + [2678] = 2095, + [2679] = 2096, + [2680] = 2044, + [2681] = 1992, + [2682] = 2127, + [2683] = 2072, + [2684] = 1991, + [2685] = 2088, + [2686] = 2097, + [2687] = 1991, + [2688] = 2153, + [2689] = 2065, + [2690] = 2072, + [2691] = 2295, + [2692] = 2065, + [2693] = 2159, + [2694] = 2296, + [2695] = 2160, + [2696] = 2295, + [2697] = 2310, + [2698] = 2311, + [2699] = 288, + [2700] = 286, + [2701] = 1959, + [2702] = 2151, + [2703] = 2152, + [2704] = 1964, + [2705] = 1965, + [2706] = 2124, + [2707] = 1960, + [2708] = 2708, + [2709] = 2124, + [2710] = 2710, + [2711] = 1962, + [2712] = 1966, + [2713] = 1967, + [2714] = 340, + [2715] = 2118, + [2716] = 2708, + [2717] = 297, + [2718] = 2296, + [2719] = 2708, + [2720] = 2708, + [2721] = 2708, + [2722] = 2708, + [2723] = 2708, + [2724] = 2046, + [2725] = 2297, + [2726] = 2156, + [2727] = 2054, + [2728] = 2073, + [2729] = 465, + [2730] = 1964, + [2731] = 2227, + [2732] = 1966, + [2733] = 2088, + [2734] = 331, + [2735] = 332, + [2736] = 333, + [2737] = 334, + [2738] = 409, + [2739] = 2069, + [2740] = 337, + [2741] = 2741, + [2742] = 2208, [2743] = 2743, - [2744] = 371, - [2745] = 469, - [2746] = 463, - [2747] = 2747, - [2748] = 2136, - [2749] = 464, - [2750] = 506, - [2751] = 507, - [2752] = 2139, - [2753] = 2140, - [2754] = 2144, - [2755] = 2083, - [2756] = 2646, + [2744] = 2067, + [2745] = 408, + [2746] = 2645, + [2747] = 2200, + [2748] = 2748, + [2749] = 2070, + [2750] = 1965, + [2751] = 2117, + [2752] = 484, + [2753] = 445, + [2754] = 1960, + [2755] = 2284, + [2756] = 2756, [2757] = 2757, - [2758] = 515, - [2759] = 2161, - [2760] = 2165, + [2758] = 2758, + [2759] = 2759, + [2760] = 2760, [2761] = 2761, [2762] = 2762, - [2763] = 378, - [2764] = 379, - [2765] = 420, - [2766] = 380, - [2767] = 381, - [2768] = 508, - [2769] = 385, - [2770] = 2647, - [2771] = 465, - [2772] = 444, - [2773] = 421, - [2774] = 2136, - [2775] = 2646, - [2776] = 1996, + [2763] = 371, + [2764] = 2764, + [2765] = 2765, + [2766] = 2766, + [2767] = 2767, + [2768] = 2768, + [2769] = 2769, + [2770] = 2770, + [2771] = 2771, + [2772] = 2772, + [2773] = 2773, + [2774] = 2774, + [2775] = 2775, + [2776] = 2776, [2777] = 2777, [2778] = 2778, - [2779] = 2647, + [2779] = 2779, [2780] = 2780, - [2781] = 2087, - [2782] = 2112, - [2783] = 2783, - [2784] = 2082, - [2785] = 456, - [2786] = 2070, - [2787] = 1965, - [2788] = 2078, - [2789] = 404, - [2790] = 458, - [2791] = 407, - [2792] = 459, - [2793] = 466, - [2794] = 460, - [2795] = 461, - [2796] = 2171, - [2797] = 1968, - [2798] = 467, - [2799] = 2799, - [2800] = 2172, - [2801] = 1958, - [2802] = 423, - [2803] = 2803, - [2804] = 1970, - [2805] = 1969, - [2806] = 412, - [2807] = 2646, - [2808] = 406, - [2809] = 413, - [2810] = 445, - [2811] = 2114, - [2812] = 2094, - [2813] = 1964, - [2814] = 1966, - [2815] = 389, - [2816] = 361, - [2817] = 1967, - [2818] = 2071, - [2819] = 480, - [2820] = 2158, - [2821] = 440, - [2822] = 403, - [2823] = 2197, - [2824] = 2139, - [2825] = 2161, - [2826] = 2165, - [2827] = 2226, - [2828] = 2229, - [2829] = 2829, - [2830] = 2647, - [2831] = 2734, - [2832] = 2832, - [2833] = 2181, - [2834] = 2140, - [2835] = 441, - [2836] = 2836, - [2837] = 431, - [2838] = 442, - [2839] = 439, - [2840] = 443, - [2841] = 362, + [2781] = 2781, + [2782] = 2782, + [2783] = 372, + [2784] = 417, + [2785] = 473, + [2786] = 2152, + [2787] = 2096, + [2788] = 2748, + [2789] = 2162, + [2790] = 2790, + [2791] = 1955, + [2792] = 2121, + [2793] = 2163, + [2794] = 2213, + [2795] = 2193, + [2796] = 433, + [2797] = 434, + [2798] = 454, + [2799] = 2165, + [2800] = 2045, + [2801] = 2645, + [2802] = 435, + [2803] = 2646, + [2804] = 479, + [2805] = 2805, + [2806] = 470, + [2807] = 436, + [2808] = 414, + [2809] = 471, + [2810] = 440, + [2811] = 1992, + [2812] = 1962, + [2813] = 395, + [2814] = 481, + [2815] = 2217, + [2816] = 415, + [2817] = 407, + [2818] = 2088, + [2819] = 2748, + [2820] = 396, + [2821] = 2151, + [2822] = 423, + [2823] = 482, + [2824] = 373, + [2825] = 2151, + [2826] = 419, + [2827] = 477, + [2828] = 478, + [2829] = 475, + [2830] = 399, + [2831] = 480, + [2832] = 483, + [2833] = 2156, + [2834] = 406, + [2835] = 2168, + [2836] = 1967, + [2837] = 441, + [2838] = 2156, + [2839] = 2146, + [2840] = 2157, + [2841] = 2748, [2842] = 2842, - [2843] = 2087, - [2844] = 2844, - [2845] = 481, - [2846] = 1963, - [2847] = 2171, - [2848] = 2172, - [2849] = 2849, - [2850] = 2850, - [2851] = 2851, - [2852] = 2076, - [2853] = 1994, + [2843] = 2157, + [2844] = 378, + [2845] = 2159, + [2846] = 1991, + [2847] = 2159, + [2848] = 2160, + [2849] = 379, + [2850] = 380, + [2851] = 381, + [2852] = 400, + [2853] = 1969, [2854] = 2854, - [2855] = 437, - [2856] = 2734, - [2857] = 2857, - [2858] = 2144, - [2859] = 2859, - [2860] = 2860, - [2861] = 2861, - [2862] = 2862, - [2863] = 2863, - [2864] = 2864, - [2865] = 2865, - [2866] = 2866, - [2867] = 483, - [2868] = 2868, - [2869] = 411, - [2870] = 462, - [2871] = 414, - [2872] = 484, - [2873] = 416, - [2874] = 438, - [2875] = 425, - [2876] = 2876, + [2855] = 2160, + [2856] = 420, + [2857] = 404, + [2858] = 2645, + [2859] = 476, + [2860] = 2646, + [2861] = 430, + [2862] = 405, + [2863] = 474, + [2864] = 424, + [2865] = 425, + [2866] = 2161, + [2867] = 382, + [2868] = 2065, + [2869] = 2162, + [2870] = 2163, + [2871] = 359, + [2872] = 2072, + [2873] = 2873, + [2874] = 2874, + [2875] = 2875, + [2876] = 511, [2877] = 2877, - [2878] = 2878, - [2879] = 432, - [2880] = 2880, - [2881] = 366, - [2882] = 2134, - [2883] = 2734, - [2884] = 2884, - [2885] = 2134, - [2886] = 2137, - [2887] = 2193, - [2888] = 367, - [2889] = 2889, - [2890] = 2890, - [2891] = 2137, - [2892] = 368, + [2878] = 1959, + [2879] = 2161, + [2880] = 2095, + [2881] = 2165, + [2882] = 2882, + [2883] = 2883, + [2884] = 2097, + [2885] = 2885, + [2886] = 427, + [2887] = 428, + [2888] = 2168, + [2889] = 2146, + [2890] = 429, + [2891] = 2891, + [2892] = 448, [2893] = 2893, - [2894] = 2894, - [2895] = 2129, - [2896] = 2896, - [2897] = 2897, - [2898] = 2225, - [2899] = 2151, - [2900] = 2529, - [2901] = 1958, - [2902] = 2902, - [2903] = 2903, - [2904] = 292, - [2905] = 2225, - [2906] = 289, - [2907] = 2229, - [2908] = 2537, - [2909] = 2541, - [2910] = 292, - [2911] = 2197, - [2912] = 290, - [2913] = 2226, - [2914] = 2181, - [2915] = 2193, - [2916] = 2118, - [2917] = 2193, - [2918] = 2541, - [2919] = 1958, - [2920] = 2114, - [2921] = 2170, - [2922] = 291, - [2923] = 2071, + [2894] = 2646, + [2895] = 2152, + [2896] = 2528, + [2897] = 2536, + [2898] = 2544, + [2899] = 2149, + [2900] = 2166, + [2901] = 2073, + [2902] = 2124, + [2903] = 2213, + [2904] = 2536, + [2905] = 2208, + [2906] = 2048, + [2907] = 2208, + [2908] = 290, + [2909] = 287, + [2910] = 2193, + [2911] = 2213, + [2912] = 2121, + [2913] = 2217, + [2914] = 2070, + [2915] = 1955, + [2916] = 1955, + [2917] = 287, + [2918] = 2918, + [2919] = 2090, + [2920] = 2069, + [2921] = 289, + [2922] = 290, + [2923] = 2118, [2924] = 291, - [2925] = 1958, - [2926] = 290, - [2927] = 2181, - [2928] = 2053, - [2929] = 2119, - [2930] = 2074, - [2931] = 2082, - [2932] = 2070, - [2933] = 2073, - [2934] = 2147, - [2935] = 2146, - [2936] = 2529, - [2937] = 2225, - [2938] = 2090, - [2939] = 2197, - [2940] = 289, - [2941] = 2076, - [2942] = 2169, - [2943] = 2537, - [2944] = 2323, - [2945] = 2229, - [2946] = 2226, - [2947] = 2194, - [2948] = 2529, - [2949] = 2189, - [2950] = 2201, - [2951] = 2151, - [2952] = 2234, - [2953] = 2541, - [2954] = 2078, - [2955] = 2955, - [2956] = 2956, + [2925] = 2200, + [2926] = 289, + [2927] = 2193, + [2928] = 2544, + [2929] = 2200, + [2930] = 2528, + [2931] = 1955, + [2932] = 2297, + [2933] = 2227, + [2934] = 2148, + [2935] = 291, + [2936] = 2217, + [2937] = 2153, + [2938] = 2068, + [2939] = 2065, + [2940] = 2072, + [2941] = 2227, + [2942] = 2144, + [2943] = 2943, + [2944] = 2944, + [2945] = 1955, + [2946] = 1955, + [2947] = 2528, + [2948] = 2536, + [2949] = 2544, + [2950] = 2528, + [2951] = 2536, + [2952] = 2544, + [2953] = 2528, + [2954] = 2536, + [2955] = 2544, + [2956] = 1969, [2957] = 2957, - [2958] = 2958, - [2959] = 2192, - [2960] = 2960, - [2961] = 2537, - [2962] = 2196, - [2963] = 2204, - [2964] = 2205, - [2965] = 2136, - [2966] = 2103, - [2967] = 2101, - [2968] = 2126, - [2969] = 2211, - [2970] = 2102, - [2971] = 2105, - [2972] = 2151, - [2973] = 2973, - [2974] = 2102, - [2975] = 2529, - [2976] = 2976, - [2977] = 2977, - [2978] = 1958, - [2979] = 2529, - [2980] = 2126, - [2981] = 2537, - [2982] = 2190, - [2983] = 2983, - [2984] = 2169, - [2985] = 1963, - [2986] = 2146, - [2987] = 2537, - [2988] = 2447, - [2989] = 1958, - [2990] = 2108, - [2991] = 2151, - [2992] = 2053, - [2993] = 2121, + [2958] = 1991, + [2959] = 2528, + [2960] = 2536, + [2961] = 2544, + [2962] = 2179, + [2963] = 2180, + [2964] = 2182, + [2965] = 2183, + [2966] = 2184, + [2967] = 2185, + [2968] = 2186, + [2969] = 2969, + [2970] = 2970, + [2971] = 2111, + [2972] = 2112, + [2973] = 2100, + [2974] = 2101, + [2975] = 2102, + [2976] = 2195, + [2977] = 2196, + [2978] = 2148, + [2979] = 2144, + [2980] = 2980, + [2981] = 2981, + [2982] = 2982, + [2983] = 2161, + [2984] = 2201, + [2985] = 2202, + [2986] = 2203, + [2987] = 2236, + [2988] = 2067, + [2989] = 2207, + [2990] = 2162, + [2991] = 2209, + [2992] = 2992, + [2993] = 2210, [2994] = 2994, - [2995] = 2541, - [2996] = 1958, - [2997] = 2221, - [2998] = 1963, - [2999] = 1963, - [3000] = 3000, - [3001] = 2235, + [2995] = 2163, + [2996] = 2165, + [2997] = 2166, + [2998] = 2151, + [2999] = 2214, + [3000] = 2215, + [3001] = 3001, [3002] = 3002, - [3003] = 2139, - [3004] = 3004, - [3005] = 2236, - [3006] = 3006, - [3007] = 2134, - [3008] = 2137, - [3009] = 3009, - [3010] = 1994, - [3011] = 2105, - [3012] = 1996, - [3013] = 2529, - [3014] = 2537, - [3015] = 288, - [3016] = 2238, - [3017] = 2541, - [3018] = 3018, - [3019] = 2541, - [3020] = 2129, - [3021] = 2169, - [3022] = 285, - [3023] = 2233, - [3024] = 3024, - [3025] = 2140, - [3026] = 2161, - [3027] = 3027, - [3028] = 2170, - [3029] = 3029, - [3030] = 2165, - [3031] = 2087, - [3032] = 1994, - [3033] = 2195, - [3034] = 3034, - [3035] = 2144, - [3036] = 2158, - [3037] = 2063, - [3038] = 3038, - [3039] = 2171, - [3040] = 2172, - [3041] = 2223, - [3042] = 2176, - [3043] = 2529, - [3044] = 2537, - [3045] = 2227, - [3046] = 2198, - [3047] = 2200, - [3048] = 2228, - [3049] = 2230, - [3050] = 2237, - [3051] = 2178, - [3052] = 2184, - [3053] = 2169, + [3003] = 2218, + [3004] = 2219, + [3005] = 2170, + [3006] = 2223, + [3007] = 2110, + [3008] = 2224, + [3009] = 2166, + [3010] = 1992, + [3011] = 2048, + [3012] = 3012, + [3013] = 2172, + [3014] = 2152, + [3015] = 1969, + [3016] = 2111, + [3017] = 2112, + [3018] = 2100, + [3019] = 2101, + [3020] = 3020, + [3021] = 2228, + [3022] = 2229, + [3023] = 2231, + [3024] = 2232, + [3025] = 2106, + [3026] = 2234, + [3027] = 2235, + [3028] = 2156, + [3029] = 2148, + [3030] = 2149, + [3031] = 2157, + [3032] = 1969, + [3033] = 3033, + [3034] = 2192, + [3035] = 2194, + [3036] = 2166, + [3037] = 3037, + [3038] = 2110, + [3039] = 2159, + [3040] = 2160, + [3041] = 3041, + [3042] = 3042, + [3043] = 2153, + [3044] = 288, + [3045] = 2173, + [3046] = 2226, + [3047] = 2171, + [3048] = 2088, + [3049] = 286, + [3050] = 2168, + [3051] = 3051, + [3052] = 3052, + [3053] = 1955, [3054] = 2146, - [3055] = 1958, - [3056] = 1996, - [3057] = 2232, - [3058] = 2183, - [3059] = 2207, - [3060] = 2147, - [3061] = 2541, - [3062] = 2121, - [3063] = 2186, - [3064] = 2191, - [3065] = 3065, - [3066] = 2202, - [3067] = 2222, - [3068] = 3068, - [3069] = 2185, - [3070] = 2529, - [3071] = 3071, - [3072] = 2537, - [3073] = 2541, - [3074] = 2994, - [3075] = 3071, - [3076] = 3029, - [3077] = 2973, - [3078] = 2977, - [3079] = 3079, - [3080] = 2177, - [3081] = 2199, - [3082] = 1958, - [3083] = 2103, - [3084] = 2101, - [3085] = 3085, - [3086] = 2176, - [3087] = 2237, - [3088] = 2235, - [3089] = 2233, - [3090] = 2234, - [3091] = 2232, - [3092] = 2225, - [3093] = 2178, - [3094] = 3094, - [3095] = 2238, - [3096] = 2198, - [3097] = 2233, - [3098] = 2236, - [3099] = 2221, - [3100] = 2222, - [3101] = 3101, - [3102] = 2192, - [3103] = 2201, - [3104] = 2196, - [3105] = 2196, - [3106] = 2183, - [3107] = 2186, - [3108] = 2229, - [3109] = 2176, - [3110] = 2198, - [3111] = 3111, - [3112] = 2183, - [3113] = 2194, - [3114] = 2193, - [3115] = 2229, - [3116] = 2184, - [3117] = 2185, - [3118] = 310, - [3119] = 2235, - [3120] = 2181, - [3121] = 2191, - [3122] = 2186, - [3123] = 2222, + [3055] = 1991, + [3056] = 2528, + [3057] = 2536, + [3058] = 2544, + [3059] = 2944, + [3060] = 2524, + [3061] = 3033, + [3062] = 3062, + [3063] = 3063, + [3064] = 3064, + [3065] = 1955, + [3066] = 2174, + [3067] = 3062, + [3068] = 1992, + [3069] = 2055, + [3070] = 2528, + [3071] = 3063, + [3072] = 2536, + [3073] = 3064, + [3074] = 3074, + [3075] = 3075, + [3076] = 2544, + [3077] = 3077, + [3078] = 3078, + [3079] = 1955, + [3080] = 2148, + [3081] = 2144, + [3082] = 2102, + [3083] = 2228, + [3084] = 2127, + [3085] = 1969, + [3086] = 2214, + [3087] = 1969, + [3088] = 2215, + [3089] = 2218, + [3090] = 2219, + [3091] = 2170, + [3092] = 2223, + [3093] = 1969, + [3094] = 2183, + [3095] = 2224, + [3096] = 2172, + [3097] = 2173, + [3098] = 3098, + [3099] = 2228, + [3100] = 2229, + [3101] = 340, + [3102] = 2231, + [3103] = 2232, + [3104] = 2234, + [3105] = 2235, + [3106] = 2227, + [3107] = 2184, + [3108] = 2171, + [3109] = 2229, + [3110] = 2231, + [3111] = 2226, + [3112] = 2209, + [3113] = 2192, + [3114] = 2194, + [3115] = 2210, + [3116] = 2045, + [3117] = 2172, + [3118] = 2208, + [3119] = 2193, + [3120] = 1969, + [3121] = 1969, + [3122] = 2180, + [3123] = 2068, [3124] = 3124, - [3125] = 3125, - [3126] = 2076, - [3127] = 2195, - [3128] = 2049, - [3129] = 3129, - [3130] = 2200, - [3131] = 1963, - [3132] = 2199, - [3133] = 2190, - [3134] = 2236, - [3135] = 2197, - [3136] = 2201, - [3137] = 1963, - [3138] = 2006, - [3139] = 2235, - [3140] = 3140, - [3141] = 2202, - [3142] = 2191, - [3143] = 2225, - [3144] = 2228, - [3145] = 2223, - [3146] = 2207, - [3147] = 2200, - [3148] = 325, - [3149] = 3149, - [3150] = 288, - [3151] = 1963, + [3125] = 2193, + [3126] = 2214, + [3127] = 2215, + [3128] = 2195, + [3129] = 2179, + [3130] = 2232, + [3131] = 2234, + [3132] = 2235, + [3133] = 2180, + [3134] = 2055, + [3135] = 340, + [3136] = 2182, + [3137] = 2183, + [3138] = 2184, + [3139] = 2173, + [3140] = 2218, + [3141] = 2219, + [3142] = 2185, + [3143] = 2213, + [3144] = 2045, + [3145] = 3145, + [3146] = 2170, + [3147] = 2223, + [3148] = 3148, + [3149] = 2186, + [3150] = 2195, + [3151] = 2196, [3152] = 3152, - [3153] = 2211, - [3154] = 1984, - [3155] = 2230, - [3156] = 2162, - [3157] = 1963, - [3158] = 2204, - [3159] = 325, - [3160] = 2063, - [3161] = 325, - [3162] = 2205, - [3163] = 2177, - [3164] = 2191, - [3165] = 2190, - [3166] = 2221, - [3167] = 2222, - [3168] = 325, - [3169] = 3169, - [3170] = 3170, - [3171] = 2074, - [3172] = 3172, - [3173] = 2108, - [3174] = 1984, - [3175] = 2204, - [3176] = 2207, - [3177] = 2049, - [3178] = 2189, - [3179] = 2202, - [3180] = 3180, - [3181] = 2177, - [3182] = 285, - [3183] = 2237, - [3184] = 2223, - [3185] = 2190, - [3186] = 2197, - [3187] = 2198, - [3188] = 2194, - [3189] = 2195, - [3190] = 2227, - [3191] = 2200, - [3192] = 2226, - [3193] = 1963, - [3194] = 2199, - [3195] = 2176, - [3196] = 2184, - [3197] = 2221, - [3198] = 3198, - [3199] = 2237, - [3200] = 288, - [3201] = 2178, - [3202] = 2185, - [3203] = 2234, - [3204] = 2646, - [3205] = 2238, - [3206] = 285, - [3207] = 2201, - [3208] = 2192, - [3209] = 1958, - [3210] = 2063, - [3211] = 2226, - [3212] = 2236, - [3213] = 2189, - [3214] = 2227, - [3215] = 2238, - [3216] = 3216, - [3217] = 2196, - [3218] = 2178, - [3219] = 2211, - [3220] = 2227, - [3221] = 2193, - [3222] = 2228, - [3223] = 2192, - [3224] = 2204, - [3225] = 2205, - [3226] = 2230, - [3227] = 2228, - [3228] = 2205, - [3229] = 2189, - [3230] = 2232, - [3231] = 2230, - [3232] = 2181, - [3233] = 2232, - [3234] = 310, - [3235] = 2194, - [3236] = 2071, - [3237] = 2202, - [3238] = 2233, - [3239] = 2647, - [3240] = 2183, - [3241] = 2184, - [3242] = 2185, - [3243] = 2186, - [3244] = 2234, - [3245] = 2195, - [3246] = 2199, - [3247] = 2177, - [3248] = 407, - [3249] = 446, - [3250] = 444, - [3251] = 404, - [3252] = 407, - [3253] = 456, - [3254] = 458, - [3255] = 459, - [3256] = 460, - [3257] = 461, - [3258] = 462, - [3259] = 463, - [3260] = 464, - [3261] = 465, - [3262] = 466, - [3263] = 467, - [3264] = 412, - [3265] = 413, - [3266] = 480, - [3267] = 481, - [3268] = 483, - [3269] = 484, - [3270] = 506, - [3271] = 507, - [3272] = 425, - [3273] = 432, - [3274] = 515, - [3275] = 2112, - [3276] = 2857, - [3277] = 2859, - [3278] = 2861, - [3279] = 2862, - [3280] = 2864, - [3281] = 2865, - [3282] = 2866, - [3283] = 2868, - [3284] = 2208, - [3285] = 2209, - [3286] = 2832, - [3287] = 2849, - [3288] = 2850, - [3289] = 2175, - [3290] = 2239, - [3291] = 2854, - [3292] = 2876, - [3293] = 2878, - [3294] = 2884, - [3295] = 2037, - [3296] = 389, - [3297] = 361, - [3298] = 2894, - [3299] = 2213, - [3300] = 2214, - [3301] = 2215, - [3302] = 2216, - [3303] = 2217, - [3304] = 2842, - [3305] = 2863, - [3306] = 362, - [3307] = 2777, - [3308] = 2743, - [3309] = 2747, - [3310] = 2218, - [3311] = 2761, - [3312] = 366, - [3313] = 367, - [3314] = 368, - [3315] = 369, - [3316] = 2778, - [3317] = 2844, - [3318] = 2860, - [3319] = 2219, - [3320] = 2220, - [3321] = 370, - [3322] = 371, - [3323] = 469, - [3324] = 378, - [3325] = 379, - [3326] = 380, - [3327] = 381, - [3328] = 508, - [3329] = 385, - [3330] = 2877, - [3331] = 3331, - [3332] = 2880, - [3333] = 2893, - [3334] = 2896, - [3335] = 2897, - [3336] = 2780, - [3337] = 2783, - [3338] = 2829, - [3339] = 2836, - [3340] = 3340, - [3341] = 403, - [3342] = 406, - [3343] = 411, - [3344] = 414, - [3345] = 417, - [3346] = 418, - [3347] = 2077, - [3348] = 420, - [3349] = 421, - [3350] = 423, - [3351] = 2529, - [3352] = 2537, - [3353] = 2541, - [3354] = 2857, - [3355] = 412, - [3356] = 2859, - [3357] = 431, - [3358] = 2861, - [3359] = 2862, - [3360] = 2864, - [3361] = 2865, - [3362] = 2866, - [3363] = 2868, - [3364] = 413, - [3365] = 439, - [3366] = 440, - [3367] = 441, - [3368] = 442, - [3369] = 443, - [3370] = 444, - [3371] = 445, - [3372] = 362, - [3373] = 2063, - [3374] = 446, - [3375] = 2076, - [3376] = 1963, - [3377] = 2071, - [3378] = 2162, - [3379] = 3379, - [3380] = 456, - [3381] = 2049, - [3382] = 2529, - [3383] = 2537, - [3384] = 2541, - [3385] = 462, - [3386] = 463, - [3387] = 464, - [3388] = 465, - [3389] = 2049, - [3390] = 466, - [3391] = 467, - [3392] = 2049, - [3393] = 370, - [3394] = 371, - [3395] = 469, - [3396] = 480, - [3397] = 2447, - [3398] = 506, - [3399] = 507, - [3400] = 381, - [3401] = 508, - [3402] = 515, - [3403] = 2832, - [3404] = 2849, - [3405] = 2850, - [3406] = 425, - [3407] = 2854, - [3408] = 2876, - [3409] = 2878, - [3410] = 2884, - [3411] = 445, - [3412] = 416, - [3413] = 2894, - [3414] = 2842, - [3415] = 2863, - [3416] = 432, - [3417] = 2777, - [3418] = 2743, - [3419] = 2747, - [3420] = 2761, - [3421] = 2778, - [3422] = 2844, - [3423] = 2860, - [3424] = 2877, - [3425] = 2880, - [3426] = 2893, - [3427] = 2896, - [3428] = 2897, - [3429] = 2780, - [3430] = 2783, - [3431] = 437, - [3432] = 438, - [3433] = 3433, - [3434] = 2829, - [3435] = 2836, - [3436] = 3331, - [3437] = 458, - [3438] = 459, - [3439] = 460, - [3440] = 461, - [3441] = 3441, - [3442] = 481, - [3443] = 483, - [3444] = 484, - [3445] = 404, - [3446] = 2889, - [3447] = 2169, - [3448] = 2146, - [3449] = 1963, - [3450] = 2890, - [3451] = 389, - [3452] = 361, - [3453] = 2151, - [3454] = 366, - [3455] = 367, - [3456] = 368, - [3457] = 369, - [3458] = 378, - [3459] = 379, - [3460] = 380, - [3461] = 385, - [3462] = 403, - [3463] = 406, - [3464] = 411, - [3465] = 414, - [3466] = 416, - [3467] = 417, - [3468] = 418, - [3469] = 420, - [3470] = 421, - [3471] = 2889, - [3472] = 423, - [3473] = 2890, - [3474] = 3474, - [3475] = 431, - [3476] = 437, - [3477] = 438, - [3478] = 439, - [3479] = 440, - [3480] = 441, - [3481] = 442, - [3482] = 443, - [3483] = 2121, - [3484] = 2223, - [3485] = 2211, - [3486] = 2211, - [3487] = 2447, - [3488] = 2076, - [3489] = 2071, - [3490] = 2076, - [3491] = 2094, - [3492] = 2071, - [3493] = 2247, - [3494] = 2074, - [3495] = 2083, - [3496] = 2247, - [3497] = 2047, - [3498] = 2086, - [3499] = 2268, - [3500] = 2063, - [3501] = 2247, - [3502] = 1970, - [3503] = 1965, - [3504] = 1968, - [3505] = 2045, - [3506] = 1969, - [3507] = 3507, - [3508] = 1964, - [3509] = 1966, - [3510] = 1967, - [3511] = 2103, - [3512] = 2101, - [3513] = 2126, - [3514] = 2105, - [3515] = 2102, - [3516] = 3507, - [3517] = 3517, - [3518] = 2213, - [3519] = 2214, - [3520] = 2103, - [3521] = 2101, - [3522] = 2126, - [3523] = 2105, - [3524] = 2102, - [3525] = 3525, - [3526] = 2215, - [3527] = 2221, - [3528] = 2222, - [3529] = 2207, - [3530] = 2227, - [3531] = 2228, - [3532] = 2230, - [3533] = 2232, - [3534] = 2233, - [3535] = 2234, - [3536] = 2101, - [3537] = 2208, - [3538] = 2218, - [3539] = 2223, - [3540] = 2075, - [3541] = 2121, - [3542] = 1112, - [3543] = 2192, - [3544] = 2196, - [3545] = 2176, - [3546] = 2184, - [3547] = 2185, - [3548] = 3548, - [3549] = 2189, - [3550] = 2190, - [3551] = 2216, - [3552] = 2209, - [3553] = 1114, - [3554] = 2198, - [3555] = 2200, - [3556] = 2237, - [3557] = 2178, - [3558] = 2183, - [3559] = 2186, - [3560] = 2191, - [3561] = 2202, - [3562] = 2177, - [3563] = 1963, - [3564] = 2217, - [3565] = 2556, - [3566] = 3566, - [3567] = 3567, - [3568] = 2077, - [3569] = 2247, - [3570] = 2194, - [3571] = 2195, - [3572] = 2199, - [3573] = 2201, - [3574] = 2204, - [3575] = 2205, - [3576] = 2538, - [3577] = 2235, - [3578] = 2236, - [3579] = 2126, - [3580] = 2105, - [3581] = 3581, - [3582] = 2219, - [3583] = 2220, - [3584] = 2102, - [3585] = 2121, - [3586] = 2447, - [3587] = 2175, - [3588] = 2239, - [3589] = 2565, - [3590] = 2103, - [3591] = 3507, - [3592] = 3525, - [3593] = 2238, - [3594] = 2083, - [3595] = 3009, - [3596] = 1958, - [3597] = 288, - [3598] = 2291, - [3599] = 3599, - [3600] = 2757, + [3153] = 2200, + [3154] = 1955, + [3155] = 2224, + [3156] = 3156, + [3157] = 2192, + [3158] = 3158, + [3159] = 2200, + [3160] = 2194, + [3161] = 2196, + [3162] = 2201, + [3163] = 2201, + [3164] = 3164, + [3165] = 2202, + [3166] = 2203, + [3167] = 2645, + [3168] = 2228, + [3169] = 2070, + [3170] = 2208, + [3171] = 3171, + [3172] = 2231, + [3173] = 2209, + [3174] = 2210, + [3175] = 2232, + [3176] = 2646, + [3177] = 2213, + [3178] = 2234, + [3179] = 2235, + [3180] = 2227, + [3181] = 2214, + [3182] = 2215, + [3183] = 2192, + [3184] = 2217, + [3185] = 2194, + [3186] = 2069, + [3187] = 2195, + [3188] = 2196, + [3189] = 288, + [3190] = 288, + [3191] = 2174, + [3192] = 286, + [3193] = 2236, + [3194] = 2207, + [3195] = 2055, + [3196] = 2201, + [3197] = 2202, + [3198] = 2203, + [3199] = 2236, + [3200] = 2207, + [3201] = 2202, + [3202] = 2179, + [3203] = 2180, + [3204] = 2203, + [3205] = 2182, + [3206] = 2183, + [3207] = 2217, + [3208] = 286, + [3209] = 3209, + [3210] = 2218, + [3211] = 2184, + [3212] = 1978, + [3213] = 2219, + [3214] = 2236, + [3215] = 2185, + [3216] = 2207, + [3217] = 1978, + [3218] = 2170, + [3219] = 340, + [3220] = 2106, + [3221] = 2171, + [3222] = 2223, + [3223] = 2186, + [3224] = 3224, + [3225] = 2224, + [3226] = 2186, + [3227] = 2185, + [3228] = 2179, + [3229] = 2209, + [3230] = 2172, + [3231] = 2001, + [3232] = 2210, + [3233] = 3233, + [3234] = 2174, + [3235] = 3235, + [3236] = 2173, + [3237] = 340, + [3238] = 3238, + [3239] = 2226, + [3240] = 297, + [3241] = 297, + [3242] = 3242, + [3243] = 2182, + [3244] = 2229, + [3245] = 400, + [3246] = 2773, + [3247] = 396, + [3248] = 427, + [3249] = 2045, + [3250] = 2774, + [3251] = 395, + [3252] = 2778, + [3253] = 484, + [3254] = 396, + [3255] = 2222, + [3256] = 2225, + [3257] = 2230, + [3258] = 2233, + [3259] = 2175, + [3260] = 415, + [3261] = 419, + [3262] = 2757, + [3263] = 424, + [3264] = 2779, + [3265] = 2741, + [3266] = 425, + [3267] = 2743, + [3268] = 423, + [3269] = 2759, + [3270] = 373, + [3271] = 2762, + [3272] = 414, + [3273] = 420, + [3274] = 2198, + [3275] = 433, + [3276] = 2875, + [3277] = 2178, + [3278] = 2774, + [3279] = 434, + [3280] = 435, + [3281] = 378, + [3282] = 2772, + [3283] = 436, + [3284] = 2775, + [3285] = 440, + [3286] = 2776, + [3287] = 2777, + [3288] = 2780, + [3289] = 2781, + [3290] = 379, + [3291] = 2756, + [3292] = 2782, + [3293] = 441, + [3294] = 2778, + [3295] = 2779, + [3296] = 380, + [3297] = 2045, + [3298] = 2780, + [3299] = 2524, + [3300] = 465, + [3301] = 2781, + [3302] = 2782, + [3303] = 2874, + [3304] = 2741, + [3305] = 2875, + [3306] = 2743, + [3307] = 381, + [3308] = 448, + [3309] = 2166, + [3310] = 445, + [3311] = 2882, + [3312] = 2877, + [3313] = 2775, + [3314] = 477, + [3315] = 478, + [3316] = 479, + [3317] = 2187, + [3318] = 2882, + [3319] = 2190, + [3320] = 480, + [3321] = 414, + [3322] = 382, + [3323] = 359, + [3324] = 511, + [3325] = 331, + [3326] = 408, + [3327] = 332, + [3328] = 333, + [3329] = 420, + [3330] = 378, + [3331] = 334, + [3332] = 481, + [3333] = 482, + [3334] = 382, + [3335] = 359, + [3336] = 511, + [3337] = 3337, + [3338] = 2773, + [3339] = 2883, + [3340] = 409, + [3341] = 337, + [3342] = 379, + [3343] = 2776, + [3344] = 380, + [3345] = 3345, + [3346] = 2079, + [3347] = 424, + [3348] = 473, + [3349] = 408, + [3350] = 425, + [3351] = 474, + [3352] = 381, + [3353] = 2758, + [3354] = 399, + [3355] = 429, + [3356] = 406, + [3357] = 407, + [3358] = 334, + [3359] = 409, + [3360] = 3360, + [3361] = 483, + [3362] = 2877, + [3363] = 2756, + [3364] = 448, + [3365] = 2758, + [3366] = 465, + [3367] = 470, + [3368] = 471, + [3369] = 475, + [3370] = 476, + [3371] = 417, + [3372] = 2885, + [3373] = 2772, + [3374] = 477, + [3375] = 478, + [3376] = 479, + [3377] = 2040, + [3378] = 2760, + [3379] = 480, + [3380] = 2893, + [3381] = 2536, + [3382] = 2777, + [3383] = 481, + [3384] = 482, + [3385] = 2544, + [3386] = 2759, + [3387] = 2760, + [3388] = 2045, + [3389] = 2757, + [3390] = 3345, + [3391] = 427, + [3392] = 428, + [3393] = 473, + [3394] = 428, + [3395] = 474, + [3396] = 2148, + [3397] = 371, + [3398] = 399, + [3399] = 400, + [3400] = 404, + [3401] = 405, + [3402] = 2761, + [3403] = 395, + [3404] = 406, + [3405] = 407, + [3406] = 483, + [3407] = 2764, + [3408] = 429, + [3409] = 2765, + [3410] = 430, + [3411] = 417, + [3412] = 2761, + [3413] = 2762, + [3414] = 2117, + [3415] = 454, + [3416] = 2764, + [3417] = 2765, + [3418] = 372, + [3419] = 331, + [3420] = 2766, + [3421] = 430, + [3422] = 2766, + [3423] = 2767, + [3424] = 2768, + [3425] = 2769, + [3426] = 332, + [3427] = 333, + [3428] = 415, + [3429] = 419, + [3430] = 2144, + [3431] = 3431, + [3432] = 1969, + [3433] = 423, + [3434] = 2883, + [3435] = 433, + [3436] = 2767, + [3437] = 337, + [3438] = 2771, + [3439] = 2768, + [3440] = 434, + [3441] = 2769, + [3442] = 2885, + [3443] = 435, + [3444] = 2874, + [3445] = 2204, + [3446] = 371, + [3447] = 2528, + [3448] = 372, + [3449] = 470, + [3450] = 471, + [3451] = 475, + [3452] = 2536, + [3453] = 476, + [3454] = 2070, + [3455] = 1969, + [3456] = 3456, + [3457] = 2205, + [3458] = 2197, + [3459] = 436, + [3460] = 440, + [3461] = 2069, + [3462] = 2127, + [3463] = 441, + [3464] = 2893, + [3465] = 2770, + [3466] = 2873, + [3467] = 2544, + [3468] = 373, + [3469] = 454, + [3470] = 2770, + [3471] = 2055, + [3472] = 445, + [3473] = 404, + [3474] = 405, + [3475] = 3475, + [3476] = 2771, + [3477] = 484, + [3478] = 2873, + [3479] = 2528, + [3480] = 1111, + [3481] = 2190, + [3482] = 2111, + [3483] = 2236, + [3484] = 2171, + [3485] = 2102, + [3486] = 3486, + [3487] = 3486, + [3488] = 2207, + [3489] = 3489, + [3490] = 2095, + [3491] = 2271, + [3492] = 2046, + [3493] = 2171, + [3494] = 2223, + [3495] = 2111, + [3496] = 2112, + [3497] = 3489, + [3498] = 2180, + [3499] = 3499, + [3500] = 2182, + [3501] = 2100, + [3502] = 3486, + [3503] = 2228, + [3504] = 2229, + [3505] = 2174, + [3506] = 2231, + [3507] = 2101, + [3508] = 2102, + [3509] = 2096, + [3510] = 2218, + [3511] = 2070, + [3512] = 2224, + [3513] = 2222, + [3514] = 2197, + [3515] = 2069, + [3516] = 2591, + [3517] = 2068, + [3518] = 2232, + [3519] = 2225, + [3520] = 2079, + [3521] = 2234, + [3522] = 2235, + [3523] = 2271, + [3524] = 2230, + [3525] = 2111, + [3526] = 2074, + [3527] = 2183, + [3528] = 3528, + [3529] = 2233, + [3530] = 2112, + [3531] = 2184, + [3532] = 2100, + [3533] = 2209, + [3534] = 2214, + [3535] = 2097, + [3536] = 2187, + [3537] = 2112, + [3538] = 2110, + [3539] = 2215, + [3540] = 2175, + [3541] = 2271, + [3542] = 1969, + [3543] = 2101, + [3544] = 2100, + [3545] = 2185, + [3546] = 2102, + [3547] = 2101, + [3548] = 2271, + [3549] = 2210, + [3550] = 2226, + [3551] = 2195, + [3552] = 2198, + [3553] = 2044, + [3554] = 1959, + [3555] = 3555, + [3556] = 1964, + [3557] = 1965, + [3558] = 1960, + [3559] = 1962, + [3560] = 1966, + [3561] = 1967, + [3562] = 2219, + [3563] = 3563, + [3564] = 2284, + [3565] = 2192, + [3566] = 2194, + [3567] = 2196, + [3568] = 1113, + [3569] = 2524, + [3570] = 2110, + [3571] = 2524, + [3572] = 2178, + [3573] = 2110, + [3574] = 2179, + [3575] = 2173, + [3576] = 2172, + [3577] = 2174, + [3578] = 2204, + [3579] = 2070, + [3580] = 2201, + [3581] = 2186, + [3582] = 2202, + [3583] = 2205, + [3584] = 2577, + [3585] = 2203, + [3586] = 2069, + [3587] = 2170, + [3588] = 2055, + [3589] = 2585, + [3590] = 3042, + [3591] = 3591, + [3592] = 2121, + [3593] = 2001, + [3594] = 2096, + [3595] = 3595, + [3596] = 2048, + [3597] = 2310, + [3598] = 2311, + [3599] = 1959, + [3600] = 3600, [3601] = 3601, - [3602] = 2049, - [3603] = 3603, - [3604] = 3604, - [3605] = 2162, - [3606] = 2049, - [3607] = 1970, + [3602] = 3074, + [3603] = 2284, + [3604] = 2295, + [3605] = 3037, + [3606] = 2074, + [3607] = 2079, [3608] = 3608, - [3609] = 2075, - [3610] = 2094, - [3611] = 3611, - [3612] = 2114, - [3613] = 2053, - [3614] = 2086, - [3615] = 3085, - [3616] = 3024, - [3617] = 3034, - [3618] = 2556, - [3619] = 3599, - [3620] = 285, - [3621] = 1969, - [3622] = 3622, - [3623] = 2077, - [3624] = 1964, - [3625] = 3625, + [3609] = 2296, + [3610] = 3610, + [3611] = 2992, + [3612] = 1964, + [3613] = 3613, + [3614] = 1965, + [3615] = 2295, + [3616] = 3616, + [3617] = 1960, + [3618] = 1962, + [3619] = 2296, + [3620] = 1966, + [3621] = 2982, + [3622] = 2577, + [3623] = 1967, + [3624] = 2121, + [3625] = 1113, [3626] = 3626, - [3627] = 3038, - [3628] = 3628, - [3629] = 2538, - [3630] = 3027, - [3631] = 2309, - [3632] = 2565, - [3633] = 1966, - [3634] = 2291, - [3635] = 1967, - [3636] = 2957, + [3627] = 3627, + [3628] = 2981, + [3629] = 2090, + [3630] = 2585, + [3631] = 3631, + [3632] = 2127, + [3633] = 3633, + [3634] = 3634, + [3635] = 2842, + [3636] = 3075, [3637] = 3637, - [3638] = 3638, - [3639] = 3599, - [3640] = 3640, + [3638] = 2957, + [3639] = 3600, + [3640] = 2149, [3641] = 3641, - [3642] = 3599, - [3643] = 2447, - [3644] = 2114, - [3645] = 3645, - [3646] = 2309, - [3647] = 3647, - [3648] = 3006, - [3649] = 2291, - [3650] = 3622, - [3651] = 3651, - [3652] = 2955, - [3653] = 2976, - [3654] = 1965, - [3655] = 3655, - [3656] = 2309, - [3657] = 3657, - [3658] = 2291, - [3659] = 2006, - [3660] = 1968, - [3661] = 3599, - [3662] = 2960, - [3663] = 2090, - [3664] = 3664, - [3665] = 2317, - [3666] = 2318, - [3667] = 2762, - [3668] = 1112, + [3642] = 3642, + [3643] = 3643, + [3644] = 2097, + [3645] = 3002, + [3646] = 2994, + [3647] = 2591, + [3648] = 3648, + [3649] = 288, + [3650] = 3650, + [3651] = 3610, + [3652] = 286, + [3653] = 2790, + [3654] = 3654, + [3655] = 2969, + [3656] = 3631, + [3657] = 2524, + [3658] = 3658, + [3659] = 1111, + [3660] = 1955, + [3661] = 2073, + [3662] = 2854, + [3663] = 3631, + [3664] = 2295, + [3665] = 2296, + [3666] = 2045, + [3667] = 3667, + [3668] = 3668, [3669] = 3669, - [3670] = 2983, - [3671] = 3671, - [3672] = 3004, - [3673] = 3673, + [3670] = 3670, + [3671] = 2001, + [3672] = 2296, + [3673] = 3631, [3674] = 3674, - [3675] = 3675, - [3676] = 2147, - [3677] = 2851, - [3678] = 3678, + [3675] = 2045, + [3676] = 2524, + [3677] = 3631, + [3678] = 3041, [3679] = 3679, - [3680] = 3002, - [3681] = 3681, - [3682] = 2268, - [3683] = 1114, - [3684] = 2073, + [3680] = 2805, + [3681] = 2153, + [3682] = 3001, + [3683] = 3683, + [3684] = 3684, [3685] = 3685, [3686] = 3686, [3687] = 3687, - [3688] = 3688, - [3689] = 3657, + [3688] = 3051, + [3689] = 3631, [3690] = 3690, - [3691] = 2006, - [3692] = 2309, + [3691] = 2095, + [3692] = 2980, [3693] = 3693, - [3694] = 3694, - [3695] = 3599, + [3694] = 2295, + [3695] = 3591, [3696] = 3696, - [3697] = 2799, + [3697] = 3697, [3698] = 3698, - [3699] = 2170, - [3700] = 3674, - [3701] = 2447, - [3702] = 3068, - [3703] = 3703, - [3704] = 2121, - [3705] = 3705, - [3706] = 2538, - [3707] = 2556, - [3708] = 2001, - [3709] = 3709, - [3710] = 3710, - [3711] = 2170, - [3712] = 2323, - [3713] = 2447, - [3714] = 2103, - [3715] = 2101, - [3716] = 2126, - [3717] = 2105, - [3718] = 2102, - [3719] = 2049, - [3720] = 2103, - [3721] = 2101, - [3722] = 2126, - [3723] = 2105, - [3724] = 2102, - [3725] = 2121, - [3726] = 2447, - [3727] = 2538, - [3728] = 2147, - [3729] = 2078, - [3730] = 2565, - [3731] = 2001, - [3732] = 3732, - [3733] = 2053, + [3699] = 3699, + [3700] = 2097, + [3701] = 2102, + [3702] = 2067, + [3703] = 2010, + [3704] = 2524, + [3705] = 1998, + [3706] = 2102, + [3707] = 3707, + [3708] = 1969, + [3709] = 2297, + [3710] = 2088, + [3711] = 2524, + [3712] = 2585, + [3713] = 2067, + [3714] = 2010, + [3715] = 2001, + [3716] = 2310, + [3717] = 2110, + [3718] = 2591, + [3719] = 3719, + [3720] = 3720, + [3721] = 2045, + [3722] = 2112, + [3723] = 1998, + [3724] = 3724, + [3725] = 2101, + [3726] = 2127, + [3727] = 3345, + [3728] = 2073, + [3729] = 2311, + [3730] = 2591, + [3731] = 2095, + [3732] = 2524, + [3733] = 2100, [3734] = 3734, - [3735] = 2090, - [3736] = 2016, - [3737] = 2016, - [3738] = 3738, - [3739] = 2086, - [3740] = 1963, - [3741] = 3331, - [3742] = 2078, - [3743] = 2083, - [3744] = 2049, - [3745] = 2447, - [3746] = 2006, - [3747] = 2087, - [3748] = 2094, - [3749] = 2447, - [3750] = 2112, - [3751] = 2556, - [3752] = 2114, - [3753] = 2162, - [3754] = 2006, - [3755] = 2317, - [3756] = 2318, - [3757] = 3757, - [3758] = 2447, - [3759] = 2073, - [3760] = 2565, - [3761] = 2447, - [3762] = 2076, - [3763] = 3763, - [3764] = 2162, - [3765] = 2071, - [3766] = 2037, - [3767] = 2119, - [3768] = 3768, - [3769] = 3769, - [3770] = 2076, - [3771] = 2074, - [3772] = 3772, - [3773] = 2071, - [3774] = 2103, - [3775] = 2101, - [3776] = 2126, - [3777] = 2105, - [3778] = 2102, + [3735] = 2149, + [3736] = 2121, + [3737] = 2577, + [3738] = 2524, + [3739] = 2153, + [3740] = 2048, + [3741] = 2110, + [3742] = 2096, + [3743] = 2111, + [3744] = 2100, + [3745] = 2111, + [3746] = 2117, + [3747] = 3747, + [3748] = 2524, + [3749] = 2112, + [3750] = 2585, + [3751] = 2101, + [3752] = 3752, + [3753] = 2045, + [3754] = 2524, + [3755] = 2090, + [3756] = 2577, + [3757] = 2001, + [3758] = 3758, + [3759] = 3759, + [3760] = 3760, + [3761] = 2106, + [3762] = 3762, + [3763] = 2031, + [3764] = 2127, + [3765] = 2040, + [3766] = 2149, + [3767] = 3648, + [3768] = 2070, + [3769] = 2069, + [3770] = 2045, + [3771] = 3699, + [3772] = 2070, + [3773] = 2069, + [3774] = 2127, + [3775] = 2854, + [3776] = 2790, + [3777] = 2805, + [3778] = 2842, [3779] = 3779, - [3780] = 3780, + [3780] = 2124, [3781] = 3781, - [3782] = 3782, - [3783] = 3331, - [3784] = 2026, - [3785] = 3785, - [3786] = 2026, - [3787] = 3685, - [3788] = 3685, - [3789] = 3686, - [3790] = 2147, - [3791] = 3791, + [3782] = 3345, + [3783] = 3699, + [3784] = 3648, + [3785] = 2070, + [3786] = 3786, + [3787] = 2088, + [3788] = 3788, + [3789] = 2297, + [3790] = 3790, + [3791] = 2040, [3792] = 3792, - [3793] = 2119, - [3794] = 3794, - [3795] = 3795, - [3796] = 2118, - [3797] = 2108, - [3798] = 3798, - [3799] = 2071, - [3800] = 2049, - [3801] = 2121, - [3802] = 2162, - [3803] = 2112, + [3793] = 2118, + [3794] = 2111, + [3795] = 2112, + [3796] = 2100, + [3797] = 2101, + [3798] = 2102, + [3799] = 3781, + [3800] = 3699, + [3801] = 3648, + [3802] = 2069, + [3803] = 2153, [3804] = 3804, - [3805] = 3805, - [3806] = 2851, - [3807] = 2762, - [3808] = 2170, + [3805] = 2117, + [3806] = 2110, + [3807] = 3807, + [3808] = 3808, [3809] = 3809, - [3810] = 3686, - [3811] = 2757, - [3812] = 2799, - [3813] = 3779, + [3810] = 2124, + [3811] = 2068, + [3812] = 2118, + [3813] = 3813, [3814] = 3814, [3815] = 3815, - [3816] = 3779, + [3816] = 2031, [3817] = 3817, - [3818] = 2118, - [3819] = 2087, + [3818] = 3818, + [3819] = 3819, [3820] = 3820, - [3821] = 2323, - [3822] = 3685, - [3823] = 2037, - [3824] = 2076, - [3825] = 3686, + [3821] = 3781, + [3822] = 3822, + [3823] = 3823, + [3824] = 3824, + [3825] = 2591, [3826] = 3826, [3827] = 3827, [3828] = 3828, - [3829] = 2161, - [3830] = 2161, - [3831] = 3763, - [3832] = 2136, + [3829] = 3829, + [3830] = 2046, + [3831] = 2044, + [3832] = 3832, [3833] = 3833, - [3834] = 3674, - [3835] = 2139, - [3836] = 2165, + [3834] = 2585, + [3835] = 3835, + [3836] = 3836, [3837] = 3837, - [3838] = 2762, - [3839] = 2139, - [3840] = 3840, + [3838] = 2156, + [3839] = 2157, + [3840] = 2854, [3841] = 3841, - [3842] = 2137, - [3843] = 3331, - [3844] = 3844, + [3842] = 3842, + [3843] = 2159, + [3844] = 2160, [3845] = 3845, - [3846] = 2229, + [3846] = 3846, [3847] = 3847, [3848] = 3848, [3849] = 3849, [3850] = 3850, [3851] = 3851, [3852] = 3852, - [3853] = 3853, - [3854] = 3854, - [3855] = 2140, + [3853] = 3591, + [3854] = 2144, + [3855] = 3855, [3856] = 3856, [3857] = 3857, - [3858] = 2565, - [3859] = 3859, - [3860] = 2006, - [3861] = 2181, - [3862] = 2171, - [3863] = 2172, + [3858] = 3858, + [3859] = 3345, + [3860] = 2790, + [3861] = 2805, + [3862] = 3345, + [3863] = 3863, [3864] = 3864, - [3865] = 2144, + [3865] = 2842, [3866] = 3866, - [3867] = 2851, - [3868] = 2762, + [3867] = 3867, + [3868] = 2161, [3869] = 3869, - [3870] = 2146, - [3871] = 2757, - [3872] = 2799, - [3873] = 2134, - [3874] = 3874, - [3875] = 3875, - [3876] = 3876, - [3877] = 2047, + [3870] = 2162, + [3871] = 3871, + [3872] = 3872, + [3873] = 3873, + [3874] = 2577, + [3875] = 2163, + [3876] = 2165, + [3877] = 3877, [3878] = 3878, - [3879] = 2556, + [3879] = 3879, [3880] = 3880, - [3881] = 3881, + [3881] = 3591, [3882] = 3882, - [3883] = 3880, - [3884] = 2134, - [3885] = 2197, - [3886] = 2045, - [3887] = 3887, - [3888] = 3888, - [3889] = 3889, - [3890] = 3890, - [3891] = 3891, - [3892] = 3892, - [3893] = 3331, + [3883] = 3883, + [3884] = 3591, + [3885] = 3885, + [3886] = 3886, + [3887] = 2168, + [3888] = 2001, + [3889] = 2151, + [3890] = 2152, + [3891] = 2146, + [3892] = 2854, + [3893] = 2151, [3894] = 3894, [3895] = 3895, [3896] = 3896, - [3897] = 2538, - [3898] = 3898, + [3897] = 3897, + [3898] = 2790, [3899] = 3899, - [3900] = 3900, - [3901] = 2171, - [3902] = 2225, - [3903] = 3903, - [3904] = 3891, - [3905] = 2172, - [3906] = 3906, - [3907] = 3907, - [3908] = 3908, - [3909] = 3674, - [3910] = 3910, + [3900] = 2805, + [3901] = 2193, + [3902] = 2156, + [3903] = 2157, + [3904] = 3904, + [3905] = 2200, + [3906] = 2159, + [3907] = 2160, + [3908] = 2842, + [3909] = 2208, + [3910] = 2161, [3911] = 3911, - [3912] = 3912, - [3913] = 3913, - [3914] = 3895, - [3915] = 3915, - [3916] = 2129, - [3917] = 2158, - [3918] = 3880, - [3919] = 3891, - [3920] = 3895, - [3921] = 3896, - [3922] = 3880, - [3923] = 3891, - [3924] = 3895, - [3925] = 3896, + [3912] = 2213, + [3913] = 2162, + [3914] = 2217, + [3915] = 2163, + [3916] = 2165, + [3917] = 3917, + [3918] = 3826, + [3919] = 3835, + [3920] = 3847, + [3921] = 3855, + [3922] = 3826, + [3923] = 3835, + [3924] = 3847, + [3925] = 3855, [3926] = 3926, - [3927] = 2136, - [3928] = 3928, - [3929] = 3896, - [3930] = 3930, + [3927] = 3927, + [3928] = 2046, + [3929] = 3826, + [3930] = 2044, [3931] = 3931, - [3932] = 3674, - [3933] = 3933, - [3934] = 2129, - [3935] = 2158, - [3936] = 2140, + [3932] = 2227, + [3933] = 3835, + [3934] = 2168, + [3935] = 3790, + [3936] = 2146, [3937] = 3937, [3938] = 3938, [3939] = 3939, - [3940] = 2757, + [3940] = 3940, [3941] = 3941, - [3942] = 2144, + [3942] = 3942, [3943] = 3943, [3944] = 3944, - [3945] = 2047, - [3946] = 2137, - [3947] = 2045, - [3948] = 2193, - [3949] = 2851, - [3950] = 3950, - [3951] = 3951, - [3952] = 2799, - [3953] = 2226, - [3954] = 2165, - [3955] = 2045, - [3956] = 2126, - [3957] = 3848, - [3958] = 2757, - [3959] = 2102, - [3960] = 2049, - [3961] = 3961, - [3962] = 2105, - [3963] = 2077, - [3964] = 2799, - [3965] = 2028, - [3966] = 2075, - [3967] = 2169, - [3968] = 3763, - [3969] = 2126, - [3970] = 2028, - [3971] = 2077, - [3972] = 3851, - [3973] = 2121, - [3974] = 2207, - [3975] = 3853, - [3976] = 2247, - [3977] = 2054, - [3978] = 2054, - [3979] = 3979, - [3980] = 2247, - [3981] = 2103, - [3982] = 2799, - [3983] = 2112, - [3984] = 2108, - [3985] = 2101, + [3945] = 3945, + [3946] = 3946, + [3947] = 3847, + [3948] = 3948, + [3949] = 3855, + [3950] = 2152, + [3951] = 2111, + [3952] = 2198, + [3953] = 3953, + [3954] = 2100, + [3955] = 2842, + [3956] = 2204, + [3957] = 2842, + [3958] = 2205, + [3959] = 2854, + [3960] = 2148, + [3961] = 2110, + [3962] = 3962, + [3963] = 2111, + [3964] = 2112, + [3965] = 2790, + [3966] = 2058, + [3967] = 2055, + [3968] = 2061, + [3969] = 3941, + [3970] = 3942, + [3971] = 2079, + [3972] = 3943, + [3973] = 3944, + [3974] = 3945, + [3975] = 2271, + [3976] = 3946, + [3977] = 2074, + [3978] = 2044, + [3979] = 2045, + [3980] = 3980, + [3981] = 2054, + [3982] = 2271, + [3983] = 2054, + [3984] = 2891, + [3985] = 3985, [3986] = 2102, - [3987] = 2077, - [3988] = 2058, - [3989] = 2063, - [3990] = 2757, - [3991] = 2047, - [3992] = 2803, - [3993] = 2851, - [3994] = 2045, - [3995] = 2048, - [3996] = 3850, - [3997] = 2317, - [3998] = 2318, - [3999] = 2220, - [4000] = 2151, - [4001] = 2762, - [4002] = 3674, - [4003] = 2851, - [4004] = 2762, - [4005] = 2247, - [4006] = 4006, - [4007] = 2851, - [4008] = 2268, - [4009] = 2058, - [4010] = 2208, - [4011] = 2762, - [4012] = 2218, - [4013] = 2063, - [4014] = 2048, - [4015] = 2209, - [4016] = 3856, - [4017] = 4017, - [4018] = 3852, - [4019] = 2175, - [4020] = 2757, - [4021] = 2239, - [4022] = 2103, - [4023] = 2101, - [4024] = 4024, - [4025] = 2799, - [4026] = 2047, - [4027] = 3931, - [4028] = 2105, - [4029] = 2075, - [4030] = 2219, - [4031] = 4031, - [4032] = 2075, - [4033] = 2121, - [4034] = 2247, - [4035] = 2213, - [4036] = 2214, - [4037] = 2215, - [4038] = 2216, - [4039] = 2217, - [4040] = 2247, - [4041] = 2247, - [4042] = 2309, - [4043] = 2073, - [4044] = 2309, - [4045] = 1963, - [4046] = 2529, - [4047] = 2537, - [4048] = 2202, - [4049] = 2541, - [4050] = 2538, - [4051] = 2317, - [4052] = 2318, - [4053] = 2317, - [4054] = 2090, - [4055] = 2194, - [4056] = 2195, - [4057] = 2227, - [4058] = 2323, - [4059] = 2196, - [4060] = 2228, - [4061] = 2902, - [4062] = 2757, - [4063] = 2803, - [4064] = 2222, - [4065] = 2037, - [4066] = 2198, - [4067] = 2309, - [4068] = 2199, - [4069] = 2309, - [4070] = 1970, - [4071] = 2851, - [4072] = 2074, - [4073] = 2177, - [4074] = 2309, - [4075] = 2317, - [4076] = 2318, - [4077] = 2178, - [4078] = 2201, - [4079] = 2762, - [4080] = 2086, - [4081] = 2799, - [4082] = 2189, - [4083] = 2291, - [4084] = 2204, - [4085] = 2291, - [4086] = 2529, - [4087] = 2291, - [4088] = 2049, - [4089] = 2192, - [4090] = 3674, - [4091] = 2541, - [4092] = 1965, - [4093] = 2205, - [4094] = 2291, - [4095] = 2200, - [4096] = 2162, - [4097] = 2162, - [4098] = 2185, - [4099] = 2537, - [4100] = 1968, - [4101] = 1969, - [4102] = 2529, - [4103] = 2537, - [4104] = 2757, - [4105] = 2565, - [4106] = 2230, - [4107] = 2232, - [4108] = 2233, - [4109] = 2006, - [4110] = 3674, - [4111] = 2176, - [4112] = 2541, - [4113] = 1964, - [4114] = 1966, - [4115] = 2235, - [4116] = 2234, - [4117] = 1967, - [4118] = 2162, - [4119] = 2221, - [4120] = 3763, - [4121] = 2238, - [4122] = 2236, - [4123] = 2094, - [4124] = 2903, - [4125] = 2183, - [4126] = 3685, - [4127] = 2083, - [4128] = 2184, - [4129] = 3686, - [4130] = 2090, - [4131] = 2190, - [4132] = 2186, - [4133] = 3331, - [4134] = 2803, - [4135] = 2529, - [4136] = 2318, - [4137] = 2799, - [4138] = 2291, - [4139] = 2537, - [4140] = 2556, - [4141] = 2191, - [4142] = 2851, - [4143] = 2541, - [4144] = 2309, - [4145] = 2762, - [4146] = 2291, - [4147] = 2237, - [4148] = 2146, - [4149] = 4149, - [4150] = 2170, - [4151] = 4151, - [4152] = 4152, - [4153] = 4153, - [4154] = 2112, - [4155] = 2207, - [4156] = 328, - [4157] = 4157, - [4158] = 3000, - [4159] = 4159, - [4160] = 4160, - [4161] = 2903, - [4162] = 4162, - [4163] = 4163, - [4164] = 2851, - [4165] = 4165, + [3987] = 3848, + [3988] = 3988, + [3989] = 2854, + [3990] = 2805, + [3991] = 2271, + [3992] = 2854, + [3993] = 2790, + [3994] = 2310, + [3995] = 2271, + [3996] = 2117, + [3997] = 3997, + [3998] = 2226, + [3999] = 2074, + [4000] = 2222, + [4001] = 2225, + [4002] = 2230, + [4003] = 2233, + [4004] = 2175, + [4005] = 2166, + [4006] = 2021, + [4007] = 2842, + [4008] = 2058, + [4009] = 2021, + [4010] = 2106, + [4011] = 2805, + [4012] = 2079, + [4013] = 2100, + [4014] = 2790, + [4015] = 2101, + [4016] = 3591, + [4017] = 2271, + [4018] = 2178, + [4019] = 2055, + [4020] = 2046, + [4021] = 2046, + [4022] = 2061, + [4023] = 2805, + [4024] = 2284, + [4025] = 3790, + [4026] = 2044, + [4027] = 2187, + [4028] = 2190, + [4029] = 2102, + [4030] = 2197, + [4031] = 2110, + [4032] = 2101, + [4033] = 2271, + [4034] = 2079, + [4035] = 2074, + [4036] = 2112, + [4037] = 2311, + [4038] = 2192, + [4039] = 2144, + [4040] = 2544, + [4041] = 2127, + [4042] = 2045, + [4043] = 3790, + [4044] = 2001, + [4045] = 2943, + [4046] = 3591, + [4047] = 3591, + [4048] = 2528, + [4049] = 2536, + [4050] = 2577, + [4051] = 2544, + [4052] = 3345, + [4053] = 2297, + [4054] = 3699, + [4055] = 2891, + [4056] = 3648, + [4057] = 2918, + [4058] = 1959, + [4059] = 1964, + [4060] = 1965, + [4061] = 1960, + [4062] = 1962, + [4063] = 1966, + [4064] = 1967, + [4065] = 2311, + [4066] = 2528, + [4067] = 2854, + [4068] = 2536, + [4069] = 2790, + [4070] = 2127, + [4071] = 2854, + [4072] = 2544, + [4073] = 2790, + [4074] = 2891, + [4075] = 2805, + [4076] = 2585, + [4077] = 2842, + [4078] = 2095, + [4079] = 2096, + [4080] = 2172, + [4081] = 2173, + [4082] = 2127, + [4083] = 2179, + [4084] = 2180, + [4085] = 2183, + [4086] = 2184, + [4087] = 2185, + [4088] = 2097, + [4089] = 2186, + [4090] = 2295, + [4091] = 2195, + [4092] = 2196, + [4093] = 2296, + [4094] = 2295, + [4095] = 2201, + [4096] = 2202, + [4097] = 2203, + [4098] = 2296, + [4099] = 2236, + [4100] = 2207, + [4101] = 2295, + [4102] = 2528, + [4103] = 2536, + [4104] = 2544, + [4105] = 2310, + [4106] = 2311, + [4107] = 2296, + [4108] = 2209, + [4109] = 2210, + [4110] = 2536, + [4111] = 2295, + [4112] = 2296, + [4113] = 2214, + [4114] = 2215, + [4115] = 2805, + [4116] = 2218, + [4117] = 2219, + [4118] = 2295, + [4119] = 2170, + [4120] = 2591, + [4121] = 2223, + [4122] = 2296, + [4123] = 2090, + [4124] = 2310, + [4125] = 2311, + [4126] = 2224, + [4127] = 2842, + [4128] = 1969, + [4129] = 2040, + [4130] = 2228, + [4131] = 2229, + [4132] = 2231, + [4133] = 2232, + [4134] = 2528, + [4135] = 2234, + [4136] = 2235, + [4137] = 2310, + [4138] = 2068, + [4139] = 2295, + [4140] = 2194, + [4141] = 2090, + [4142] = 2296, + [4143] = 2073, + [4144] = 2182, + [4145] = 4145, + [4146] = 4146, + [4147] = 4147, + [4148] = 342, + [4149] = 2970, + [4150] = 2226, + [4151] = 3591, + [4152] = 2090, + [4153] = 2190, + [4154] = 2040, + [4155] = 3790, + [4156] = 2046, + [4157] = 2095, + [4158] = 2096, + [4159] = 2121, + [4160] = 2048, + [4161] = 2943, + [4162] = 2097, + [4163] = 2044, + [4164] = 4145, + [4165] = 2918, [4166] = 4166, - [4167] = 3018, - [4168] = 2762, - [4169] = 4169, - [4170] = 4153, - [4171] = 3065, - [4172] = 4172, + [4167] = 4167, + [4168] = 4168, + [4169] = 2067, + [4170] = 4168, + [4171] = 4171, + [4172] = 2178, [4173] = 4173, - [4174] = 2757, - [4175] = 2799, - [4176] = 4151, + [4174] = 4174, + [4175] = 4175, + [4176] = 4176, [4177] = 4177, - [4178] = 2902, - [4179] = 2903, - [4180] = 3674, - [4181] = 4172, - [4182] = 4153, - [4183] = 2047, - [4184] = 4172, - [4185] = 4151, - [4186] = 2218, - [4187] = 2045, - [4188] = 4151, - [4189] = 1970, - [4190] = 4153, - [4191] = 1965, - [4192] = 1968, - [4193] = 1969, - [4194] = 4172, - [4195] = 4151, - [4196] = 1964, - [4197] = 1966, - [4198] = 1967, - [4199] = 4153, - [4200] = 2078, - [4201] = 4172, - [4202] = 4151, - [4203] = 2147, - [4204] = 2087, - [4205] = 3763, - [4206] = 2219, - [4207] = 4172, - [4208] = 4151, - [4209] = 4209, - [4210] = 4172, - [4211] = 4211, - [4212] = 4151, - [4213] = 2220, - [4214] = 2090, - [4215] = 2094, - [4216] = 2175, - [4217] = 2083, - [4218] = 2114, - [4219] = 2053, - [4220] = 2239, - [4221] = 4209, - [4222] = 2086, - [4223] = 4152, - [4224] = 4153, - [4225] = 2208, - [4226] = 326, - [4227] = 3763, - [4228] = 2037, - [4229] = 4229, - [4230] = 3880, - [4231] = 3891, - [4232] = 3895, - [4233] = 3896, - [4234] = 3880, - [4235] = 3891, - [4236] = 3895, - [4237] = 3896, - [4238] = 4157, - [4239] = 4159, - [4240] = 4160, - [4241] = 4149, - [4242] = 4162, - [4243] = 4163, - [4244] = 4165, - [4245] = 4166, - [4246] = 4209, - [4247] = 2213, - [4248] = 2214, - [4249] = 4152, - [4250] = 4153, - [4251] = 2902, - [4252] = 4209, - [4253] = 2215, - [4254] = 2956, - [4255] = 4152, - [4256] = 4152, - [4257] = 3079, - [4258] = 4152, - [4259] = 4152, - [4260] = 2958, - [4261] = 4152, - [4262] = 2112, - [4263] = 2049, - [4264] = 3763, - [4265] = 2216, - [4266] = 2217, - [4267] = 2114, - [4268] = 4153, - [4269] = 3763, - [4270] = 2209, - [4271] = 4172, - [4272] = 2049, - [4273] = 2074, - [4274] = 2851, - [4275] = 3674, - [4276] = 2956, - [4277] = 2757, - [4278] = 4278, - [4279] = 2049, - [4280] = 3674, - [4281] = 2956, - [4282] = 2958, - [4283] = 3000, - [4284] = 3018, - [4285] = 2958, - [4286] = 2078, - [4287] = 3079, - [4288] = 2074, - [4289] = 2803, - [4290] = 3065, - [4291] = 2118, - [4292] = 3891, - [4293] = 2799, - [4294] = 2074, - [4295] = 3880, - [4296] = 2147, - [4297] = 2323, - [4298] = 3891, - [4299] = 3895, - [4300] = 3895, - [4301] = 3896, - [4302] = 2762, - [4303] = 2323, - [4304] = 3000, - [4305] = 2170, - [4306] = 2323, - [4307] = 3018, - [4308] = 2268, - [4309] = 2082, - [4310] = 2070, - [4311] = 3880, - [4312] = 3896, - [4313] = 2053, - [4314] = 3079, - [4315] = 2045, - [4316] = 2119, - [4317] = 3065, - [4318] = 2090, - [4319] = 2119, - [4320] = 2118, - [4321] = 2082, - [4322] = 2070, - [4323] = 2063, - [4324] = 2134, - [4325] = 2803, - [4326] = 3896, - [4327] = 2318, - [4328] = 2136, - [4329] = 2994, - [4330] = 1946, - [4331] = 3896, - [4332] = 2762, - [4333] = 2047, - [4334] = 1946, - [4335] = 2139, - [4336] = 4336, - [4337] = 2063, - [4338] = 2799, - [4339] = 3071, - [4340] = 2161, - [4341] = 3763, - [4342] = 2140, - [4343] = 2144, - [4344] = 2077, - [4345] = 3029, - [4346] = 3880, - [4347] = 3029, - [4348] = 3674, - [4349] = 2973, - [4350] = 2172, - [4351] = 2165, - [4352] = 2977, - [4353] = 3891, - [4354] = 3895, - [4355] = 3891, - [4356] = 3896, - [4357] = 3880, - [4358] = 2171, - [4359] = 2134, - [4360] = 2045, - [4361] = 3895, - [4362] = 2757, - [4363] = 3880, - [4364] = 3895, - [4365] = 2973, - [4366] = 3891, - [4367] = 3895, - [4368] = 2317, - [4369] = 3896, - [4370] = 2137, - [4371] = 2902, - [4372] = 2977, - [4373] = 2169, - [4374] = 4374, - [4375] = 3880, - [4376] = 2129, - [4377] = 2158, - [4378] = 2151, - [4379] = 2171, - [4380] = 2172, - [4381] = 2903, - [4382] = 2137, - [4383] = 3071, - [4384] = 2129, - [4385] = 2158, - [4386] = 2136, - [4387] = 2076, - [4388] = 2139, - [4389] = 2140, - [4390] = 2144, - [4391] = 2161, - [4392] = 2165, - [4393] = 2851, - [4394] = 3891, - [4395] = 2071, - [4396] = 3674, - [4397] = 2994, - [4398] = 2236, - [4399] = 4399, - [4400] = 4400, + [4178] = 4168, + [4179] = 4179, + [4180] = 3790, + [4181] = 4175, + [4182] = 4168, + [4183] = 2943, + [4184] = 3826, + [4185] = 3835, + [4186] = 3847, + [4187] = 3855, + [4188] = 2204, + [4189] = 2205, + [4190] = 3826, + [4191] = 3835, + [4192] = 3847, + [4193] = 3855, + [4194] = 4194, + [4195] = 4175, + [4196] = 4176, + [4197] = 3077, + [4198] = 3078, + [4199] = 4173, + [4200] = 4200, + [4201] = 4147, + [4202] = 4171, + [4203] = 4174, + [4204] = 4177, + [4205] = 4179, + [4206] = 4194, + [4207] = 2117, + [4208] = 2805, + [4209] = 4176, + [4210] = 2918, + [4211] = 1959, + [4212] = 1964, + [4213] = 4145, + [4214] = 4167, + [4215] = 4168, + [4216] = 1965, + [4217] = 4176, + [4218] = 4168, + [4219] = 2045, + [4220] = 1960, + [4221] = 4175, + [4222] = 2045, + [4223] = 3052, + [4224] = 1962, + [4225] = 1966, + [4226] = 4176, + [4227] = 2222, + [4228] = 4168, + [4229] = 4145, + [4230] = 4230, + [4231] = 2225, + [4232] = 4167, + [4233] = 2230, + [4234] = 4234, + [4235] = 341, + [4236] = 2233, + [4237] = 4167, + [4238] = 2175, + [4239] = 4175, + [4240] = 4167, + [4241] = 1967, + [4242] = 4167, + [4243] = 4167, + [4244] = 4175, + [4245] = 2117, + [4246] = 2121, + [4247] = 2854, + [4248] = 4175, + [4249] = 2198, + [4250] = 4176, + [4251] = 2790, + [4252] = 4167, + [4253] = 4168, + [4254] = 4176, + [4255] = 2197, + [4256] = 4256, + [4257] = 2842, + [4258] = 4200, + [4259] = 2187, + [4260] = 3790, + [4261] = 2149, + [4262] = 3020, + [4263] = 2153, + [4264] = 4175, + [4265] = 2088, + [4266] = 3790, + [4267] = 3012, + [4268] = 4176, + [4269] = 3077, + [4270] = 3591, + [4271] = 3826, + [4272] = 3052, + [4273] = 3847, + [4274] = 2055, + [4275] = 2048, + [4276] = 3835, + [4277] = 4277, + [4278] = 2297, + [4279] = 3591, + [4280] = 2045, + [4281] = 3826, + [4282] = 2842, + [4283] = 3847, + [4284] = 2297, + [4285] = 2044, + [4286] = 2090, + [4287] = 3077, + [4288] = 3078, + [4289] = 3855, + [4290] = 2149, + [4291] = 2068, + [4292] = 3855, + [4293] = 2068, + [4294] = 2065, + [4295] = 2153, + [4296] = 3020, + [4297] = 3052, + [4298] = 2072, + [4299] = 2067, + [4300] = 2297, + [4301] = 3012, + [4302] = 2854, + [4303] = 3078, + [4304] = 2970, + [4305] = 2068, + [4306] = 3020, + [4307] = 3012, + [4308] = 2891, + [4309] = 2790, + [4310] = 2805, + [4311] = 2065, + [4312] = 2072, + [4313] = 2118, + [4314] = 2284, + [4315] = 2970, + [4316] = 2124, + [4317] = 2118, + [4318] = 3835, + [4319] = 2124, + [4320] = 3835, + [4321] = 3847, + [4322] = 3855, + [4323] = 3063, + [4324] = 3835, + [4325] = 3847, + [4326] = 3855, + [4327] = 3790, + [4328] = 2944, + [4329] = 3064, + [4330] = 2166, + [4331] = 3033, + [4332] = 4332, + [4333] = 2842, + [4334] = 2146, + [4335] = 2046, + [4336] = 2790, + [4337] = 3064, + [4338] = 2163, + [4339] = 2157, + [4340] = 2805, + [4341] = 3847, + [4342] = 2891, + [4343] = 2159, + [4344] = 4344, + [4345] = 1942, + [4346] = 3826, + [4347] = 2165, + [4348] = 2310, + [4349] = 2944, + [4350] = 3826, + [4351] = 2943, + [4352] = 3062, + [4353] = 2918, + [4354] = 3033, + [4355] = 2161, + [4356] = 2069, + [4357] = 3591, + [4358] = 3826, + [4359] = 2162, + [4360] = 3835, + [4361] = 2148, + [4362] = 2156, + [4363] = 2055, + [4364] = 3855, + [4365] = 3063, + [4366] = 2168, + [4367] = 1942, + [4368] = 3847, + [4369] = 2311, + [4370] = 3591, + [4371] = 2044, + [4372] = 2160, + [4373] = 2151, + [4374] = 2152, + [4375] = 3855, + [4376] = 2156, + [4377] = 2157, + [4378] = 2079, + [4379] = 2159, + [4380] = 2160, + [4381] = 2161, + [4382] = 3826, + [4383] = 2162, + [4384] = 2163, + [4385] = 2165, + [4386] = 2168, + [4387] = 2146, + [4388] = 3062, + [4389] = 2151, + [4390] = 3835, + [4391] = 2152, + [4392] = 2854, + [4393] = 2070, + [4394] = 4394, + [4395] = 4395, + [4396] = 4396, + [4397] = 4397, + [4398] = 4398, + [4399] = 2207, + [4400] = 3077, [4401] = 4401, - [4402] = 4402, - [4403] = 4403, - [4404] = 4404, - [4405] = 2195, - [4406] = 4406, - [4407] = 4407, - [4408] = 1964, - [4409] = 1966, - [4410] = 1967, - [4411] = 4411, + [4402] = 4177, + [4403] = 1964, + [4404] = 3078, + [4405] = 2193, + [4406] = 1965, + [4407] = 1960, + [4408] = 4408, + [4409] = 4409, + [4410] = 4410, + [4411] = 2227, [4412] = 4412, [4413] = 4413, [4414] = 4414, - [4415] = 4415, - [4416] = 2199, - [4417] = 2197, - [4418] = 4418, - [4419] = 4419, - [4420] = 2201, - [4421] = 4421, - [4422] = 2994, - [4423] = 2204, - [4424] = 2205, - [4425] = 4166, - [4426] = 2221, - [4427] = 2198, - [4428] = 4399, - [4429] = 2200, - [4430] = 2222, - [4431] = 4157, - [4432] = 3071, - [4433] = 2235, - [4434] = 4415, - [4435] = 4415, - [4436] = 4418, - [4437] = 4159, - [4438] = 4160, - [4439] = 4399, - [4440] = 3029, - [4441] = 3079, - [4442] = 4399, - [4443] = 2973, - [4444] = 2317, - [4445] = 2226, - [4446] = 2227, - [4447] = 2977, - [4448] = 2228, - [4449] = 4415, - [4450] = 4418, - [4451] = 2230, - [4452] = 2237, - [4453] = 3170, - [4454] = 4454, - [4455] = 2178, - [4456] = 2232, - [4457] = 2233, - [4458] = 2234, - [4459] = 2181, - [4460] = 1970, - [4461] = 2183, - [4462] = 2186, - [4463] = 2191, - [4464] = 2238, - [4465] = 3065, - [4466] = 2202, - [4467] = 2994, - [4468] = 3071, - [4469] = 2177, - [4470] = 3029, - [4471] = 2973, - [4472] = 2977, - [4473] = 4415, - [4474] = 4418, - [4475] = 2994, - [4476] = 3071, - [4477] = 3029, - [4478] = 4165, - [4479] = 3000, - [4480] = 2112, - [4481] = 2977, - [4482] = 4162, - [4483] = 2902, - [4484] = 4163, - [4485] = 2903, - [4486] = 3018, - [4487] = 2317, - [4488] = 3129, - [4489] = 4166, - [4490] = 3125, - [4491] = 4491, - [4492] = 4492, - [4493] = 4493, - [4494] = 2063, - [4495] = 4415, - [4496] = 2956, - [4497] = 2958, - [4498] = 4498, - [4499] = 4499, - [4500] = 4500, - [4501] = 4418, - [4502] = 4399, - [4503] = 4418, - [4504] = 2049, - [4505] = 2318, - [4506] = 2225, - [4507] = 1965, - [4508] = 1968, - [4509] = 2119, - [4510] = 1969, - [4511] = 2318, - [4512] = 3169, - [4513] = 2192, - [4514] = 2118, - [4515] = 2994, - [4516] = 4149, - [4517] = 2196, - [4518] = 4157, - [4519] = 4159, - [4520] = 4160, - [4521] = 4149, - [4522] = 4162, - [4523] = 4163, - [4524] = 4165, - [4525] = 4166, - [4526] = 2229, - [4527] = 4399, - [4528] = 4415, - [4529] = 2176, - [4530] = 2184, - [4531] = 2185, - [4532] = 3071, - [4533] = 4418, - [4534] = 3029, - [4535] = 2973, - [4536] = 2977, - [4537] = 4157, - [4538] = 4165, - [4539] = 2193, - [4540] = 2194, - [4541] = 4159, - [4542] = 4160, - [4543] = 2189, - [4544] = 2190, - [4545] = 4399, - [4546] = 4149, - [4547] = 4162, - [4548] = 4163, - [4549] = 2973, - [4550] = 2537, - [4551] = 4551, - [4552] = 4165, - [4553] = 4166, - [4554] = 3125, - [4555] = 2077, - [4556] = 3169, - [4557] = 4557, - [4558] = 2541, - [4559] = 3170, - [4560] = 4157, - [4561] = 4557, - [4562] = 1946, - [4563] = 3129, - [4564] = 1946, - [4565] = 2114, - [4566] = 3169, - [4567] = 2529, - [4568] = 3880, - [4569] = 2529, - [4570] = 2541, - [4571] = 4159, - [4572] = 3895, - [4573] = 4557, - [4574] = 2529, - [4575] = 2537, - [4576] = 3891, - [4577] = 2541, - [4578] = 2073, - [4579] = 3891, - [4580] = 4580, - [4581] = 3065, - [4582] = 2146, - [4583] = 2529, - [4584] = 2537, - [4585] = 2541, - [4586] = 1946, - [4587] = 3129, - [4588] = 2537, - [4589] = 3441, - [4590] = 3880, - [4591] = 3895, - [4592] = 2956, - [4593] = 2958, - [4594] = 2318, - [4595] = 3896, - [4596] = 4551, - [4597] = 2529, - [4598] = 2537, - [4599] = 4160, - [4600] = 2541, - [4601] = 2087, - [4602] = 4149, - [4603] = 3079, - [4604] = 2207, - [4605] = 4557, - [4606] = 3000, - [4607] = 3674, - [4608] = 2537, - [4609] = 2211, - [4610] = 3433, - [4611] = 2108, - [4612] = 2317, - [4613] = 1946, - [4614] = 3170, - [4615] = 4162, - [4616] = 4557, - [4617] = 3125, - [4618] = 4580, - [4619] = 3896, - [4620] = 4557, - [4621] = 4557, - [4622] = 2146, - [4623] = 4163, - [4624] = 2541, - [4625] = 3018, - [4626] = 2223, - [4627] = 2146, - [4628] = 2529, - [4629] = 2078, - [4630] = 4630, - [4631] = 4404, - [4632] = 4406, - [4633] = 4407, - [4634] = 4411, - [4635] = 2994, - [4636] = 4636, - [4637] = 4412, - [4638] = 4499, - [4639] = 3029, - [4640] = 3694, - [4641] = 1115, - [4642] = 3071, - [4643] = 4500, - [4644] = 2223, - [4645] = 4645, - [4646] = 3696, - [4647] = 3566, - [4648] = 3129, - [4649] = 3169, - [4650] = 4630, - [4651] = 3581, - [4652] = 4421, - [4653] = 3433, - [4654] = 2172, - [4655] = 4636, - [4656] = 2318, - [4657] = 1112, - [4658] = 4491, - [4659] = 4163, - [4660] = 3029, - [4661] = 4645, - [4662] = 1963, - [4663] = 3517, - [4664] = 4664, - [4665] = 2973, - [4666] = 2223, - [4667] = 4645, - [4668] = 2137, - [4669] = 2977, - [4670] = 3698, - [4671] = 2134, - [4672] = 1946, - [4673] = 2223, - [4674] = 2161, - [4675] = 4645, - [4676] = 2139, - [4677] = 2994, - [4678] = 4630, - [4679] = 3441, - [4680] = 4165, - [4681] = 4645, - [4682] = 4166, - [4683] = 2136, - [4684] = 1114, - [4685] = 4636, - [4686] = 4157, - [4687] = 4492, - [4688] = 4688, - [4689] = 2063, - [4690] = 2211, - [4691] = 1963, - [4692] = 4645, - [4693] = 4162, - [4694] = 4645, - [4695] = 4630, - [4696] = 4630, - [4697] = 1958, - [4698] = 2211, - [4699] = 4163, - [4700] = 4700, - [4701] = 2171, - [4702] = 2977, - [4703] = 4160, - [4704] = 3681, - [4705] = 3433, - [4706] = 1946, - [4707] = 4630, - [4708] = 2317, - [4709] = 4498, - [4710] = 4162, - [4711] = 2162, - [4712] = 1958, - [4713] = 3125, - [4714] = 2207, - [4715] = 2973, - [4716] = 4165, - [4717] = 4419, - [4718] = 2140, - [4719] = 4402, - [4720] = 4630, - [4721] = 1112, - [4722] = 2047, - [4723] = 4664, - [4724] = 4159, - [4725] = 1963, - [4726] = 4403, - [4727] = 4401, - [4728] = 4688, - [4729] = 4664, - [4730] = 2129, - [4731] = 2158, - [4732] = 4149, - [4733] = 3844, - [4734] = 4157, - [4735] = 2037, - [4736] = 2144, - [4737] = 3441, - [4738] = 4166, - [4739] = 4414, - [4740] = 3071, - [4741] = 2226, - [4742] = 4400, - [4743] = 4160, - [4744] = 4149, - [4745] = 4630, - [4746] = 1114, - [4747] = 4636, - [4748] = 4413, - [4749] = 3548, - [4750] = 4493, - [4751] = 4688, - [4752] = 2207, - [4753] = 4630, - [4754] = 4336, - [4755] = 3170, - [4756] = 4756, - [4757] = 4664, - [4758] = 2211, - [4759] = 3604, - [4760] = 2165, - [4761] = 4159, - [4762] = 3645, - [4763] = 2225, - [4764] = 4764, - [4765] = 3517, - [4766] = 2094, - [4767] = 3331, - [4768] = 3651, - [4769] = 3170, - [4770] = 3698, - [4771] = 3664, - [4772] = 2112, - [4773] = 2083, - [4774] = 4764, - [4775] = 3687, - [4776] = 2233, - [4777] = 4498, - [4778] = 3433, - [4779] = 1946, - [4780] = 2177, - [4781] = 4781, - [4782] = 4782, - [4783] = 4414, - [4784] = 4764, - [4785] = 3698, - [4786] = 285, - [4787] = 4499, - [4788] = 4500, - [4789] = 1114, - [4790] = 4764, - [4791] = 3688, - [4792] = 4157, - [4793] = 2232, - [4794] = 4402, - [4795] = 2237, - [4796] = 1946, - [4797] = 4159, - [4798] = 4160, - [4799] = 2178, - [4800] = 3517, - [4801] = 4149, - [4802] = 2049, - [4803] = 4782, - [4804] = 4162, - [4805] = 4163, - [4806] = 2086, - [4807] = 4165, - [4808] = 4166, - [4809] = 4403, - [4810] = 3669, - [4811] = 1963, - [4812] = 2238, - [4813] = 3675, - [4814] = 4782, - [4815] = 2201, - [4816] = 3085, - [4817] = 4404, - [4818] = 4764, - [4819] = 4406, - [4820] = 2181, - [4821] = 4821, - [4822] = 3671, - [4823] = 3548, - [4824] = 2151, - [4825] = 3625, + [4415] = 2228, + [4416] = 2310, + [4417] = 2229, + [4418] = 2231, + [4419] = 4401, + [4420] = 2232, + [4421] = 2118, + [4422] = 2234, + [4423] = 2944, + [4424] = 2235, + [4425] = 4408, + [4426] = 3033, + [4427] = 2943, + [4428] = 4410, + [4429] = 2311, + [4430] = 3062, + [4431] = 3063, + [4432] = 4173, + [4433] = 4408, + [4434] = 4200, + [4435] = 4147, + [4436] = 4171, + [4437] = 4174, + [4438] = 4177, + [4439] = 4179, + [4440] = 4194, + [4441] = 2918, + [4442] = 4401, + [4443] = 3064, + [4444] = 2944, + [4445] = 4408, + [4446] = 3033, + [4447] = 4410, + [4448] = 3062, + [4449] = 3063, + [4450] = 2192, + [4451] = 3064, + [4452] = 2194, + [4453] = 4401, + [4454] = 4408, + [4455] = 4410, + [4456] = 4401, + [4457] = 4173, + [4458] = 2944, + [4459] = 4408, + [4460] = 4410, + [4461] = 2045, + [4462] = 3148, + [4463] = 3152, + [4464] = 3033, + [4465] = 3020, + [4466] = 3012, + [4467] = 4410, + [4468] = 3062, + [4469] = 3063, + [4470] = 1959, + [4471] = 2311, + [4472] = 4401, + [4473] = 4171, + [4474] = 3064, + [4475] = 2195, + [4476] = 2196, + [4477] = 2208, + [4478] = 3098, + [4479] = 2055, + [4480] = 3164, + [4481] = 4179, + [4482] = 2209, + [4483] = 4483, + [4484] = 4484, + [4485] = 4485, + [4486] = 2210, + [4487] = 2944, + [4488] = 4408, + [4489] = 4410, + [4490] = 2200, + [4491] = 3033, + [4492] = 4200, + [4493] = 2201, + [4494] = 3062, + [4495] = 3063, + [4496] = 2213, + [4497] = 3064, + [4498] = 4147, + [4499] = 2124, + [4500] = 2214, + [4501] = 2215, + [4502] = 2202, + [4503] = 2217, + [4504] = 1962, + [4505] = 2117, + [4506] = 1966, + [4507] = 4401, + [4508] = 4173, + [4509] = 4200, + [4510] = 4147, + [4511] = 4171, + [4512] = 4174, + [4513] = 4177, + [4514] = 4179, + [4515] = 4194, + [4516] = 1967, + [4517] = 2218, + [4518] = 3052, + [4519] = 2219, + [4520] = 2203, + [4521] = 2170, + [4522] = 2172, + [4523] = 2173, + [4524] = 4194, + [4525] = 2970, + [4526] = 2223, + [4527] = 2186, + [4528] = 4528, + [4529] = 4529, + [4530] = 4530, + [4531] = 4531, + [4532] = 4532, + [4533] = 4533, + [4534] = 4534, + [4535] = 2224, + [4536] = 4536, + [4537] = 2310, + [4538] = 2179, + [4539] = 2180, + [4540] = 2236, + [4541] = 2182, + [4542] = 2183, + [4543] = 2184, + [4544] = 2185, + [4545] = 4174, + [4546] = 4546, + [4547] = 2528, + [4548] = 2536, + [4549] = 4549, + [4550] = 2067, + [4551] = 4549, + [4552] = 4549, + [4553] = 2544, + [4554] = 2528, + [4555] = 3164, + [4556] = 3098, + [4557] = 2528, + [4558] = 1942, + [4559] = 4173, + [4560] = 2311, + [4561] = 3835, + [4562] = 4200, + [4563] = 4147, + [4564] = 4171, + [4565] = 3020, + [4566] = 3012, + [4567] = 3591, + [4568] = 2536, + [4569] = 2544, + [4570] = 2226, + [4571] = 4174, + [4572] = 4177, + [4573] = 2144, + [4574] = 3456, + [4575] = 4179, + [4576] = 4194, + [4577] = 2073, + [4578] = 2106, + [4579] = 2536, + [4580] = 4549, + [4581] = 3847, + [4582] = 2528, + [4583] = 2528, + [4584] = 2536, + [4585] = 2544, + [4586] = 3152, + [4587] = 3077, + [4588] = 3078, + [4589] = 2174, + [4590] = 4590, + [4591] = 3148, + [4592] = 2544, + [4593] = 4590, + [4594] = 4549, + [4595] = 3855, + [4596] = 3098, + [4597] = 2088, + [4598] = 3847, + [4599] = 3164, + [4600] = 3855, + [4601] = 2144, + [4602] = 4546, + [4603] = 4549, + [4604] = 3052, + [4605] = 2121, + [4606] = 2970, + [4607] = 3152, + [4608] = 1942, + [4609] = 2079, + [4610] = 3826, + [4611] = 2171, + [4612] = 2536, + [4613] = 2310, + [4614] = 1942, + [4615] = 4549, + [4616] = 1942, + [4617] = 2144, + [4618] = 3431, + [4619] = 2528, + [4620] = 2536, + [4621] = 2544, + [4622] = 3826, + [4623] = 3148, + [4624] = 2544, + [4625] = 3835, + [4626] = 1111, + [4627] = 4627, + [4628] = 3062, + [4629] = 3063, + [4630] = 3064, + [4631] = 3563, + [4632] = 3456, + [4633] = 3642, + [4634] = 4485, + [4635] = 2159, + [4636] = 4627, + [4637] = 4637, + [4638] = 2168, + [4639] = 2152, + [4640] = 2226, + [4641] = 2160, + [4642] = 2171, + [4643] = 4643, + [4644] = 3148, + [4645] = 3674, + [4646] = 4177, + [4647] = 4627, + [4648] = 4529, + [4649] = 2310, + [4650] = 4650, + [4651] = 4627, + [4652] = 3643, + [4653] = 4653, + [4654] = 4398, + [4655] = 2174, + [4656] = 4179, + [4657] = 2156, + [4658] = 1955, + [4659] = 2046, + [4660] = 1969, + [4661] = 4643, + [4662] = 4662, + [4663] = 4171, + [4664] = 4534, + [4665] = 4662, + [4666] = 2161, + [4667] = 2311, + [4668] = 4643, + [4669] = 3431, + [4670] = 1955, + [4671] = 2213, + [4672] = 3499, + [4673] = 4412, + [4674] = 4194, + [4675] = 4653, + [4676] = 1942, + [4677] = 4332, + [4678] = 4394, + [4679] = 2944, + [4680] = 2146, + [4681] = 4681, + [4682] = 3152, + [4683] = 1114, + [4684] = 4627, + [4685] = 2162, + [4686] = 4627, + [4687] = 4536, + [4688] = 1113, + [4689] = 4627, + [4690] = 1942, + [4691] = 2157, + [4692] = 4662, + [4693] = 2055, + [4694] = 4653, + [4695] = 2163, + [4696] = 3528, + [4697] = 2165, + [4698] = 4643, + [4699] = 4662, + [4700] = 3693, + [4701] = 4653, + [4702] = 3431, + [4703] = 1111, + [4704] = 4627, + [4705] = 3033, + [4706] = 4653, + [4707] = 3897, + [4708] = 2171, + [4709] = 4528, + [4710] = 4653, + [4711] = 4653, + [4712] = 4413, + [4713] = 4395, + [4714] = 4483, + [4715] = 3555, + [4716] = 2040, + [4717] = 1113, + [4718] = 4530, + [4719] = 4414, + [4720] = 4531, + [4721] = 3098, + [4722] = 2151, + [4723] = 4532, + [4724] = 3062, + [4725] = 2944, + [4726] = 4484, + [4727] = 2127, + [4728] = 4396, + [4729] = 3456, + [4730] = 3063, + [4731] = 3064, + [4732] = 4627, + [4733] = 3685, + [4734] = 4650, + [4735] = 2174, + [4736] = 2226, + [4737] = 4173, + [4738] = 4533, + [4739] = 4174, + [4740] = 4177, + [4741] = 4200, + [4742] = 4147, + [4743] = 4179, + [4744] = 4171, + [4745] = 4194, + [4746] = 1969, + [4747] = 4173, + [4748] = 3164, + [4749] = 4174, + [4750] = 3033, + [4751] = 2171, + [4752] = 4650, + [4753] = 2174, + [4754] = 4200, + [4755] = 1969, + [4756] = 4397, + [4757] = 4147, + [4758] = 3643, + [4759] = 3634, + [4760] = 3164, + [4761] = 3499, + [4762] = 2166, + [4763] = 2214, + [4764] = 3152, + [4765] = 4765, + [4766] = 3001, + [4767] = 2236, + [4768] = 4768, + [4769] = 3002, + [4770] = 1969, + [4771] = 4177, + [4772] = 4772, + [4773] = 3528, + [4774] = 4179, + [4775] = 4194, + [4776] = 4776, + [4777] = 1111, + [4778] = 3051, + [4779] = 3600, + [4780] = 3563, + [4781] = 4776, + [4782] = 2045, + [4783] = 2182, + [4784] = 1969, + [4785] = 3685, + [4786] = 2179, + [4787] = 1942, + [4788] = 3555, + [4789] = 4789, + [4790] = 4790, + [4791] = 1113, + [4792] = 1959, + [4793] = 4776, + [4794] = 2231, + [4795] = 2215, + [4796] = 2195, + [4797] = 3345, + [4798] = 2228, + [4799] = 4534, + [4800] = 3637, + [4801] = 1942, + [4802] = 2207, + [4803] = 3679, + [4804] = 4768, + [4805] = 1964, + [4806] = 2193, + [4807] = 3148, + [4808] = 2196, + [4809] = 4533, + [4810] = 1962, + [4811] = 1966, + [4812] = 4776, + [4813] = 2234, + [4814] = 4529, + [4815] = 2217, + [4816] = 4394, + [4817] = 3431, + [4818] = 3601, + [4819] = 2186, + [4820] = 3074, + [4821] = 4772, + [4822] = 3037, + [4823] = 1967, + [4824] = 3610, + [4825] = 3626, [4826] = 4826, - [4827] = 3169, - [4828] = 4407, - [4829] = 4821, - [4830] = 2169, - [4831] = 4831, - [4832] = 2983, - [4833] = 3004, - [4834] = 4834, - [4835] = 4831, - [4836] = 2183, - [4837] = 1112, - [4838] = 2193, - [4839] = 4411, - [4840] = 3628, - [4841] = 4782, - [4842] = 2186, - [4843] = 3548, - [4844] = 3331, - [4845] = 4400, - [4846] = 4782, - [4847] = 288, - [4848] = 4782, - [4849] = 3566, - [4850] = 3694, - [4851] = 3678, - [4852] = 2191, - [4853] = 4826, - [4854] = 1112, - [4855] = 4821, - [4856] = 3673, - [4857] = 4857, + [4827] = 3627, + [4828] = 4768, + [4829] = 2203, + [4830] = 3075, + [4831] = 2218, + [4832] = 4776, + [4833] = 2219, + [4834] = 4772, + [4835] = 4396, + [4836] = 2170, + [4837] = 3650, + [4838] = 2079, + [4839] = 2172, + [4840] = 2992, + [4841] = 4841, + [4842] = 2994, + [4843] = 3642, + [4844] = 2223, + [4845] = 4277, + [4846] = 4776, + [4847] = 4412, + [4848] = 3690, + [4849] = 4413, + [4850] = 4414, + [4851] = 3658, + [4852] = 2173, + [4853] = 1965, + [4854] = 4397, + [4855] = 2180, + [4856] = 4483, + [4857] = 4484, [4858] = 4826, - [4859] = 3681, - [4860] = 4831, - [4861] = 1946, - [4862] = 2202, - [4863] = 2192, - [4864] = 4782, - [4865] = 4826, - [4866] = 4821, - [4867] = 2049, - [4868] = 2196, - [4869] = 3604, - [4870] = 2236, - [4871] = 4831, - [4872] = 3694, - [4873] = 2197, - [4874] = 3601, - [4875] = 4421, + [4859] = 4485, + [4860] = 4768, + [4861] = 2208, + [4862] = 3693, + [4863] = 4772, + [4864] = 2224, + [4865] = 2235, + [4866] = 4173, + [4867] = 4826, + [4868] = 4776, + [4869] = 2957, + [4870] = 4768, + [4871] = 3563, + [4872] = 3685, + [4873] = 4772, + [4874] = 4776, + [4875] = 3633, [4876] = 4826, - [4877] = 3009, - [4878] = 4782, - [4879] = 4821, - [4880] = 2227, - [4881] = 3566, - [4882] = 4831, - [4883] = 1946, - [4884] = 2228, - [4885] = 2077, - [4886] = 4826, - [4887] = 2198, - [4888] = 4821, - [4889] = 3441, - [4890] = 3655, - [4891] = 4782, - [4892] = 3027, - [4893] = 4831, - [4894] = 3637, - [4895] = 3125, - [4896] = 4782, - [4897] = 4782, - [4898] = 4826, - [4899] = 4782, - [4900] = 4821, - [4901] = 4831, - [4902] = 2229, - [4903] = 4821, - [4904] = 4831, - [4905] = 4764, - [4906] = 2049, - [4907] = 4782, - [4908] = 2204, - [4909] = 3638, - [4910] = 3710, - [4911] = 3640, - [4912] = 2200, - [4913] = 4782, - [4914] = 3641, - [4915] = 4782, - [4916] = 3068, - [4917] = 4782, - [4918] = 4918, - [4919] = 4756, - [4920] = 1958, - [4921] = 4782, - [4922] = 4918, - [4923] = 4834, - [4924] = 4782, - [4925] = 4782, - [4926] = 2323, - [4927] = 2957, - [4928] = 4782, - [4929] = 2960, - [4930] = 4782, - [4931] = 3581, - [4932] = 2205, - [4933] = 3696, - [4934] = 3626, - [4935] = 2222, - [4936] = 3622, - [4937] = 3002, - [4938] = 3698, - [4939] = 4782, - [4940] = 4278, - [4941] = 4918, - [4942] = 4834, - [4943] = 3604, - [4944] = 4918, - [4945] = 4834, - [4946] = 3038, - [4947] = 4918, - [4948] = 2221, - [4949] = 4834, - [4950] = 4918, - [4951] = 2230, - [4952] = 4834, - [4953] = 3703, - [4954] = 4918, - [4955] = 3681, - [4956] = 4834, - [4957] = 4918, - [4958] = 4834, - [4959] = 4918, - [4960] = 4834, - [4961] = 3024, - [4962] = 4764, - [4963] = 3696, + [4877] = 4768, + [4878] = 286, + [4879] = 4772, + [4880] = 3642, + [4881] = 4826, + [4882] = 4768, + [4883] = 2045, + [4884] = 4772, + [4885] = 3752, + [4886] = 1960, + [4887] = 3674, + [4888] = 4826, + [4889] = 4768, + [4890] = 4772, + [4891] = 4200, + [4892] = 4776, + [4893] = 4768, + [4894] = 4772, + [4895] = 4147, + [4896] = 3693, + [4897] = 3608, + [4898] = 3696, + [4899] = 4536, + [4900] = 3098, + [4901] = 4789, + [4902] = 4528, + [4903] = 3528, + [4904] = 3697, + [4905] = 3456, + [4906] = 2045, + [4907] = 4776, + [4908] = 3698, + [4909] = 1942, + [4910] = 4681, + [4911] = 4776, + [4912] = 4789, + [4913] = 3685, + [4914] = 4841, + [4915] = 3684, + [4916] = 4765, + [4917] = 4171, + [4918] = 2185, + [4919] = 4919, + [4920] = 4776, + [4921] = 4789, + [4922] = 1955, + [4923] = 2045, + [4924] = 2194, + [4925] = 4776, + [4926] = 4395, + [4927] = 2148, + [4928] = 4776, + [4929] = 4776, + [4930] = 4841, + [4931] = 4765, + [4932] = 2201, + [4933] = 3667, + [4934] = 4841, + [4935] = 4765, + [4936] = 4398, + [4937] = 3642, + [4938] = 4841, + [4939] = 4765, + [4940] = 4841, + [4941] = 4941, + [4942] = 4765, + [4943] = 3041, + [4944] = 4841, + [4945] = 4765, + [4946] = 4841, + [4947] = 4765, + [4948] = 4841, + [4949] = 4765, + [4950] = 4776, + [4951] = 3616, + [4952] = 2202, + [4953] = 4790, + [4954] = 2095, + [4955] = 3042, + [4956] = 4776, + [4957] = 4776, + [4958] = 4776, + [4959] = 3674, + [4960] = 2232, + [4961] = 2297, + [4962] = 4776, + [4963] = 2096, [4964] = 4964, - [4965] = 2955, - [4966] = 4966, - [4967] = 1970, - [4968] = 2176, - [4969] = 2184, - [4970] = 1965, - [4971] = 4826, - [4972] = 1968, - [4973] = 4413, - [4974] = 3647, - [4975] = 3694, - [4976] = 4976, - [4977] = 1964, - [4978] = 2185, - [4979] = 3679, - [4980] = 3006, - [4981] = 1966, - [4982] = 3657, - [4983] = 1967, - [4984] = 2189, - [4985] = 2976, - [4986] = 1969, - [4987] = 2190, - [4988] = 2049, - [4989] = 2049, - [4990] = 4964, - [4991] = 2234, - [4992] = 4821, - [4993] = 2235, - [4994] = 4831, - [4995] = 3604, - [4996] = 4491, - [4997] = 3681, - [4998] = 3608, - [4999] = 3611, - [5000] = 2194, - [5001] = 4492, - [5002] = 4493, - [5003] = 2195, - [5004] = 3129, - [5005] = 4964, - [5006] = 3034, - [5007] = 4976, + [4965] = 2969, + [4966] = 3674, + [4967] = 1113, + [4968] = 4776, + [4969] = 4530, + [4970] = 2229, + [4971] = 3654, + [4972] = 3595, + [4973] = 4776, + [4974] = 4826, + [4975] = 3345, + [4976] = 2209, + [4977] = 3693, + [4978] = 2210, + [4979] = 3499, + [4980] = 2980, + [4981] = 1111, + [4982] = 2981, + [4983] = 4531, + [4984] = 3643, + [4985] = 1942, + [4986] = 3668, + [4987] = 3641, + [4988] = 2982, + [4989] = 2045, + [4990] = 2227, + [4991] = 4174, + [4992] = 3643, + [4993] = 2200, + [4994] = 4532, + [4995] = 3669, + [4996] = 4790, + [4997] = 3670, + [4998] = 4964, + [4999] = 2097, + [5000] = 3613, + [5001] = 4790, + [5002] = 4964, + [5003] = 4789, + [5004] = 4964, + [5005] = 4790, + [5006] = 4964, + [5007] = 4790, [5008] = 4964, - [5009] = 4976, + [5009] = 4790, [5010] = 4964, - [5011] = 4976, + [5011] = 4790, [5012] = 4964, - [5013] = 4976, - [5014] = 4964, - [5015] = 4976, - [5016] = 4964, - [5017] = 4976, - [5018] = 4419, - [5019] = 4782, - [5020] = 3603, - [5021] = 1963, - [5022] = 3696, - [5023] = 4976, - [5024] = 3581, - [5025] = 4401, - [5026] = 1114, - [5027] = 2199, - [5028] = 4412, - [5029] = 3068, - [5030] = 3085, - [5031] = 3647, - [5032] = 5032, - [5033] = 2565, - [5034] = 3024, - [5035] = 3034, - [5036] = 2213, - [5037] = 2214, - [5038] = 2215, - [5039] = 2216, - [5040] = 2799, - [5041] = 2217, - [5042] = 3657, - [5043] = 3710, - [5044] = 2049, - [5045] = 1958, - [5046] = 3651, - [5047] = 3655, - [5048] = 4024, - [5049] = 3664, - [5050] = 4162, - [5051] = 4163, - [5052] = 288, - [5053] = 3669, - [5054] = 3671, - [5055] = 3710, - [5056] = 3673, - [5057] = 285, - [5058] = 2957, - [5059] = 1996, - [5060] = 1994, - [5061] = 3009, - [5062] = 5032, - [5063] = 3625, - [5064] = 2049, - [5065] = 3626, - [5066] = 3675, - [5067] = 3710, - [5068] = 2268, - [5069] = 1112, - [5070] = 3679, - [5071] = 3687, - [5072] = 5072, - [5073] = 3441, - [5074] = 3688, - [5075] = 288, - [5076] = 4400, - [5077] = 2556, - [5078] = 3601, - [5079] = 3603, - [5080] = 4149, - [5081] = 2208, - [5082] = 2218, - [5083] = 2960, - [5084] = 3608, - [5085] = 3611, - [5086] = 3844, - [5087] = 5032, - [5088] = 1114, - [5089] = 4413, - [5090] = 3625, - [5091] = 3626, - [5092] = 2983, - [5093] = 3782, - [5094] = 4498, - [5095] = 3815, - [5096] = 4402, - [5097] = 4403, - [5098] = 4404, - [5099] = 4406, - [5100] = 4407, - [5101] = 4411, - [5102] = 4412, - [5103] = 2209, - [5104] = 4499, - [5105] = 1958, - [5106] = 3004, - [5107] = 4500, - [5108] = 2538, - [5109] = 3757, - [5110] = 3628, - [5111] = 3637, - [5112] = 3779, - [5113] = 3638, - [5114] = 3640, - [5115] = 3641, - [5116] = 3779, - [5117] = 3772, - [5118] = 5032, - [5119] = 4491, - [5120] = 3779, - [5121] = 3655, - [5122] = 3664, - [5123] = 3669, - [5124] = 3671, - [5125] = 3673, - [5126] = 3675, - [5127] = 3679, - [5128] = 3687, - [5129] = 3688, - [5130] = 4580, - [5131] = 3705, - [5132] = 3027, - [5133] = 5032, - [5134] = 2049, - [5135] = 1963, - [5136] = 4414, - [5137] = 3006, - [5138] = 3657, - [5139] = 3009, - [5140] = 3809, - [5141] = 3006, - [5142] = 3085, - [5143] = 3024, - [5144] = 5032, - [5145] = 3034, - [5146] = 3009, - [5147] = 2955, - [5148] = 2219, - [5149] = 2220, - [5150] = 2175, - [5151] = 4165, - [5152] = 4157, - [5153] = 2239, - [5154] = 4551, - [5155] = 2955, - [5156] = 2976, - [5157] = 2049, - [5158] = 3024, - [5159] = 3034, - [5160] = 5032, - [5161] = 2983, - [5162] = 3004, - [5163] = 3703, - [5164] = 3027, - [5165] = 3068, - [5166] = 3622, - [5167] = 5032, - [5168] = 5032, - [5169] = 3038, - [5170] = 2957, - [5171] = 3791, - [5172] = 3792, - [5173] = 3703, - [5174] = 2960, - [5175] = 2955, - [5176] = 2976, - [5177] = 5032, - [5178] = 285, - [5179] = 5032, - [5180] = 3002, - [5181] = 3002, - [5182] = 5032, - [5183] = 2983, - [5184] = 3004, - [5185] = 5032, - [5186] = 4419, - [5187] = 5032, - [5188] = 5032, - [5189] = 5032, - [5190] = 5032, - [5191] = 5032, - [5192] = 5032, - [5193] = 3601, - [5194] = 288, - [5195] = 5032, - [5196] = 5032, - [5197] = 3678, - [5198] = 5032, - [5199] = 5032, - [5200] = 5032, - [5201] = 5032, - [5202] = 5032, - [5203] = 5032, - [5204] = 5032, - [5205] = 5032, - [5206] = 5032, - [5207] = 5032, - [5208] = 5032, - [5209] = 5032, - [5210] = 3820, - [5211] = 5032, - [5212] = 4492, - [5213] = 2112, - [5214] = 4166, - [5215] = 3794, - [5216] = 285, - [5217] = 4493, - [5218] = 3645, - [5219] = 3068, - [5220] = 3779, - [5221] = 3603, - [5222] = 1946, - [5223] = 2976, - [5224] = 2957, - [5225] = 2960, - [5226] = 3647, - [5227] = 1946, - [5228] = 3608, - [5229] = 3611, - [5230] = 2049, - [5231] = 5032, - [5232] = 5232, - [5233] = 3678, - [5234] = 3002, - [5235] = 3779, - [5236] = 3732, - [5237] = 4401, - [5238] = 2757, - [5239] = 5032, - [5240] = 3622, - [5241] = 3809, - [5242] = 4421, - [5243] = 4159, - [5244] = 4160, - [5245] = 3038, - [5246] = 4157, - [5247] = 4159, - [5248] = 4160, - [5249] = 3645, - [5250] = 4149, - [5251] = 3027, - [5252] = 3038, - [5253] = 4162, - [5254] = 4163, - [5255] = 4165, - [5256] = 4166, - [5257] = 3651, - [5258] = 3628, - [5259] = 3006, - [5260] = 3637, - [5261] = 3433, - [5262] = 3638, - [5263] = 3640, - [5264] = 3641, - [5265] = 3085, - [5266] = 4500, - [5267] = 3641, - [5268] = 3772, - [5269] = 5269, - [5270] = 3772, - [5271] = 5271, - [5272] = 2762, - [5273] = 3669, - [5274] = 5274, - [5275] = 5275, - [5276] = 3705, - [5277] = 3757, - [5278] = 3651, - [5279] = 2075, - [5280] = 3781, - [5281] = 3671, - [5282] = 3673, - [5283] = 4162, - [5284] = 3779, - [5285] = 4163, - [5286] = 5286, - [5287] = 4580, - [5288] = 5288, - [5289] = 4157, - [5290] = 3911, - [5291] = 3548, - [5292] = 5269, - [5293] = 3809, - [5294] = 5271, - [5295] = 5269, - [5296] = 4421, - [5297] = 5275, - [5298] = 3566, - [5299] = 4492, - [5300] = 3687, - [5301] = 3794, - [5302] = 3820, - [5303] = 4400, - [5304] = 5275, - [5305] = 4165, - [5306] = 5271, - [5307] = 3817, - [5308] = 3938, - [5309] = 3779, - [5310] = 1946, - [5311] = 3931, - [5312] = 1963, - [5313] = 1946, - [5314] = 3709, - [5315] = 4414, - [5316] = 5269, - [5317] = 5271, - [5318] = 4166, - [5319] = 5275, - [5320] = 3674, - [5321] = 2049, - [5322] = 4493, - [5323] = 3782, - [5324] = 2851, - [5325] = 4491, - [5326] = 3149, - [5327] = 1946, - [5328] = 3732, - [5329] = 5269, - [5330] = 3705, - [5331] = 3791, - [5332] = 3792, - [5333] = 5271, - [5334] = 2053, - [5335] = 3566, - [5336] = 5271, - [5337] = 5275, - [5338] = 3888, - [5339] = 4492, - [5340] = 1946, - [5341] = 3794, - [5342] = 4493, - [5343] = 4413, - [5344] = 5275, - [5345] = 5269, - [5346] = 5271, - [5347] = 3625, - [5348] = 3626, - [5349] = 4401, - [5350] = 5275, - [5351] = 1963, - [5352] = 3688, - [5353] = 2049, - [5354] = 3779, - [5355] = 3941, - [5356] = 4157, - [5357] = 5271, - [5358] = 2757, - [5359] = 3548, - [5360] = 3911, - [5361] = 5271, - [5362] = 3101, - [5363] = 3094, - [5364] = 3844, - [5365] = 2073, - [5366] = 5271, - [5367] = 4421, - [5368] = 5368, - [5369] = 1112, - [5370] = 3941, - [5371] = 5288, - [5372] = 4166, - [5373] = 4498, - [5374] = 4551, - [5375] = 3815, - [5376] = 4402, - [5377] = 5377, - [5378] = 4403, - [5379] = 4404, - [5380] = 4406, - [5381] = 4407, - [5382] = 4411, - [5383] = 4412, - [5384] = 5269, - [5385] = 3581, - [5386] = 4499, - [5387] = 4336, - [5388] = 5368, - [5389] = 5271, - [5390] = 5377, - [5391] = 1970, - [5392] = 4500, - [5393] = 4491, - [5394] = 4492, - [5395] = 4493, - [5396] = 3675, - [5397] = 4400, - [5398] = 4401, - [5399] = 3779, - [5400] = 4498, - [5401] = 4402, - [5402] = 4403, - [5403] = 4404, - [5404] = 4406, - [5405] = 4407, - [5406] = 4411, - [5407] = 4412, - [5408] = 4499, - [5409] = 3140, - [5410] = 4500, - [5411] = 4413, - [5412] = 4414, - [5413] = 4419, - [5414] = 3124, - [5415] = 3601, - [5416] = 5275, - [5417] = 3679, - [5418] = 4162, - [5419] = 4163, - [5420] = 4159, - [5421] = 3820, - [5422] = 4160, - [5423] = 2147, - [5424] = 3732, - [5425] = 5377, - [5426] = 3804, - [5427] = 5286, - [5428] = 3757, - [5429] = 3674, - [5430] = 3603, - [5431] = 3581, - [5432] = 4159, - [5433] = 4160, - [5434] = 5377, - [5435] = 1114, - [5436] = 3152, - [5437] = 5377, - [5438] = 3888, - [5439] = 5377, - [5440] = 3517, - [5441] = 4419, - [5442] = 3782, - [5443] = 3608, - [5444] = 3611, - [5445] = 5377, - [5446] = 3172, - [5447] = 4491, - [5448] = 3180, - [5449] = 2799, - [5450] = 5377, - [5451] = 1996, - [5452] = 3779, - [5453] = 3848, - [5454] = 1965, - [5455] = 2063, - [5456] = 3850, - [5457] = 3851, - [5458] = 1968, - [5459] = 1969, - [5460] = 3628, - [5461] = 3852, - [5462] = 4413, - [5463] = 3853, - [5464] = 5464, - [5465] = 3856, - [5466] = 3517, - [5467] = 3664, - [5468] = 2317, - [5469] = 2318, - [5470] = 3814, - [5471] = 2049, - [5472] = 2170, - [5473] = 3782, - [5474] = 4491, - [5475] = 3791, - [5476] = 3792, - [5477] = 4492, - [5478] = 3794, - [5479] = 4493, - [5480] = 4400, - [5481] = 4401, - [5482] = 4498, - [5483] = 3815, - [5484] = 4402, - [5485] = 4403, - [5486] = 4404, - [5487] = 4406, - [5488] = 4407, - [5489] = 4411, - [5490] = 4412, - [5491] = 4499, - [5492] = 4419, - [5493] = 3820, - [5494] = 4413, - [5495] = 4414, - [5496] = 4419, - [5497] = 4421, - [5498] = 5269, - [5499] = 3198, - [5500] = 1994, - [5501] = 3637, - [5502] = 4400, - [5503] = 4149, - [5504] = 3772, - [5505] = 3216, - [5506] = 3111, - [5507] = 4414, - [5508] = 3791, - [5509] = 4401, - [5510] = 3792, - [5511] = 5288, - [5512] = 4165, - [5513] = 5513, - [5514] = 4149, - [5515] = 1958, - [5516] = 4498, - [5517] = 3815, - [5518] = 4402, - [5519] = 4403, - [5520] = 4404, - [5521] = 4406, - [5522] = 4407, - [5523] = 1964, - [5524] = 4411, - [5525] = 4412, - [5526] = 4499, - [5527] = 4500, - [5528] = 1966, - [5529] = 1967, - [5530] = 3638, - [5531] = 3640, - [5532] = 3655, - [5533] = 4421, - [5534] = 3172, - [5535] = 3805, - [5536] = 3671, - [5537] = 3894, - [5538] = 3899, - [5539] = 3779, - [5540] = 3781, - [5541] = 3673, - [5542] = 3709, - [5543] = 3732, - [5544] = 3930, - [5545] = 288, - [5546] = 3798, - [5547] = 3709, - [5548] = 2957, - [5549] = 2960, - [5550] = 3675, - [5551] = 3657, - [5552] = 4551, - [5553] = 3679, - [5554] = 285, - [5555] = 2983, - [5556] = 3804, - [5557] = 3004, - [5558] = 3931, - [5559] = 3101, - [5560] = 3094, - [5561] = 3828, - [5562] = 2538, - [5563] = 3941, - [5564] = 3844, - [5565] = 1112, - [5566] = 3854, - [5567] = 3866, - [5568] = 2317, - [5569] = 3892, - [5570] = 3875, - [5571] = 3878, - [5572] = 3881, - [5573] = 3826, - [5574] = 2087, - [5575] = 3152, - [5576] = 3779, - [5577] = 3898, - [5578] = 3847, - [5579] = 3887, - [5580] = 2565, - [5581] = 3687, - [5582] = 3779, - [5583] = 3101, - [5584] = 3950, - [5585] = 3140, - [5586] = 3611, - [5587] = 3906, - [5588] = 3943, - [5589] = 3903, - [5590] = 3841, - [5591] = 3094, - [5592] = 3149, - [5593] = 3152, - [5594] = 3180, - [5595] = 3907, - [5596] = 3937, - [5597] = 3678, - [5598] = 3647, - [5599] = 3911, - [5600] = 3198, - [5601] = 3216, - [5602] = 2556, - [5603] = 3111, - [5604] = 1114, - [5605] = 3027, - [5606] = 3622, - [5607] = 3938, - [5608] = 3038, - [5609] = 3833, - [5610] = 3912, - [5611] = 3645, - [5612] = 1970, - [5613] = 2053, - [5614] = 3837, - [5615] = 3908, - [5616] = 1963, - [5617] = 3840, - [5618] = 3849, - [5619] = 3913, - [5620] = 3888, - [5621] = 3068, - [5622] = 3124, - [5623] = 3688, - [5624] = 2318, - [5625] = 1965, - [5626] = 1968, - [5627] = 1969, - [5628] = 3939, - [5629] = 3951, - [5630] = 2146, - [5631] = 2207, - [5632] = 1964, - [5633] = 1966, - [5634] = 3140, - [5635] = 3864, - [5636] = 3876, - [5637] = 3844, - [5638] = 3779, - [5639] = 3779, - [5640] = 3890, - [5641] = 3608, - [5642] = 3882, - [5643] = 3637, - [5644] = 3180, - [5645] = 3703, - [5646] = 3944, - [5647] = 3817, - [5648] = 3938, - [5649] = 3817, - [5650] = 3678, - [5651] = 3859, - [5652] = 2955, - [5653] = 2049, - [5654] = 3638, - [5655] = 2976, - [5656] = 3814, - [5657] = 3640, - [5658] = 3641, - [5659] = 2565, - [5660] = 3933, - [5661] = 3809, - [5662] = 3845, - [5663] = 3874, - [5664] = 3900, - [5665] = 4580, - [5666] = 3331, - [5667] = 3915, - [5668] = 3926, - [5669] = 3781, - [5670] = 4580, - [5671] = 3006, - [5672] = 3703, - [5673] = 3002, - [5674] = 3814, - [5675] = 3928, - [5676] = 3172, - [5677] = 3651, - [5678] = 4551, - [5679] = 3809, - [5680] = 3827, - [5681] = 3655, - [5682] = 3779, - [5683] = 3910, - [5684] = 3198, - [5685] = 3216, - [5686] = 3009, - [5687] = 3111, - [5688] = 2538, - [5689] = 3647, - [5690] = 3779, - [5691] = 3848, - [5692] = 3804, - [5693] = 3625, - [5694] = 3626, - [5695] = 3850, - [5696] = 3628, - [5697] = 1946, - [5698] = 3124, - [5699] = 3769, - [5700] = 3938, - [5701] = 3851, - [5702] = 3852, - [5703] = 3664, - [5704] = 3853, - [5705] = 3856, - [5706] = 3149, - [5707] = 2556, - [5708] = 3857, - [5709] = 3768, - [5710] = 3795, - [5711] = 3601, - [5712] = 3869, - [5713] = 3780, - [5714] = 3785, - [5715] = 3085, - [5716] = 3024, - [5717] = 3603, - [5718] = 3645, - [5719] = 3779, - [5720] = 3034, - [5721] = 3669, - [5722] = 3889, - [5723] = 1967, - [5724] = 3926, - [5725] = 3826, - [5726] = 3768, - [5727] = 3837, - [5728] = 3780, - [5729] = 3912, - [5730] = 3785, - [5731] = 3913, - [5732] = 3805, - [5733] = 3828, - [5734] = 3854, - [5735] = 5735, - [5736] = 3866, - [5737] = 4402, - [5738] = 3887, - [5739] = 3881, - [5740] = 3943, - [5741] = 3874, - [5742] = 2977, - [5743] = 4163, - [5744] = 3889, - [5745] = 4149, - [5746] = 3898, - [5747] = 3847, - [5748] = 4403, - [5749] = 3943, - [5750] = 2799, - [5751] = 3833, - [5752] = 3930, - [5753] = 3910, - [5754] = 3903, - [5755] = 3845, - [5756] = 3763, - [5757] = 4404, - [5758] = 3898, - [5759] = 4400, - [5760] = 3913, - [5761] = 3798, - [5762] = 3864, - [5763] = 3844, - [5764] = 3815, - [5765] = 4406, - [5766] = 3826, - [5767] = 3937, - [5768] = 3844, - [5769] = 3782, - [5770] = 3878, - [5771] = 2119, - [5772] = 3894, - [5773] = 4491, - [5774] = 3931, - [5775] = 3847, - [5776] = 3926, - [5777] = 3859, - [5778] = 3833, - [5779] = 3939, - [5780] = 3887, - [5781] = 3732, - [5782] = 3841, - [5783] = 4165, - [5784] = 3928, - [5785] = 3795, - [5786] = 3837, - [5787] = 5787, - [5788] = 3780, - [5789] = 3892, - [5790] = 3912, - [5791] = 5791, - [5792] = 3791, - [5793] = 3792, - [5794] = 3768, - [5795] = 3827, - [5796] = 3857, - [5797] = 3869, - [5798] = 4159, - [5799] = 3937, - [5800] = 3944, - [5801] = 3906, - [5802] = 4160, - [5803] = 3888, - [5804] = 3820, - [5805] = 3845, - [5806] = 4407, - [5807] = 3892, - [5808] = 3828, - [5809] = 3878, - [5810] = 4401, - [5811] = 3795, - [5812] = 3794, - [5813] = 3939, - [5814] = 5814, - [5815] = 4411, - [5816] = 3933, - [5817] = 3881, - [5818] = 4492, - [5819] = 3854, - [5820] = 3906, - [5821] = 3794, - [5822] = 2762, - [5823] = 3844, - [5824] = 4412, - [5825] = 1963, - [5826] = 3844, - [5827] = 3943, - [5828] = 4499, - [5829] = 4421, - [5830] = 3859, - [5831] = 3944, - [5832] = 4493, - [5833] = 3950, - [5834] = 3911, - [5835] = 3769, - [5836] = 3848, - [5837] = 3782, - [5838] = 3951, - [5839] = 4162, - [5840] = 3805, - [5841] = 3850, - [5842] = 3785, - [5843] = 3899, - [5844] = 3888, - [5845] = 3851, - [5846] = 3951, - [5847] = 3944, - [5848] = 3840, - [5849] = 3852, - [5850] = 3814, - [5851] = 3791, - [5852] = 2851, - [5853] = 3849, - [5854] = 3848, - [5855] = 3941, - [5856] = 3850, - [5857] = 3029, - [5858] = 3851, - [5859] = 3852, - [5860] = 3853, - [5861] = 3853, - [5862] = 3894, - [5863] = 3856, - [5864] = 3915, - [5865] = 4413, - [5866] = 4419, - [5867] = 3930, - [5868] = 3875, - [5869] = 3827, - [5870] = 3882, - [5871] = 3856, - [5872] = 4500, - [5873] = 5873, - [5874] = 5735, - [5875] = 3874, - [5876] = 3899, - [5877] = 3928, - [5878] = 2118, - [5879] = 2757, - [5880] = 3950, - [5881] = 3071, - [5882] = 3941, - [5883] = 3857, - [5884] = 3779, - [5885] = 5735, - [5886] = 4498, - [5887] = 3876, - [5888] = 3890, - [5889] = 3882, - [5890] = 3907, - [5891] = 5891, - [5892] = 4157, - [5893] = 2994, - [5894] = 3875, - [5895] = 3840, - [5896] = 3849, - [5897] = 3769, - [5898] = 3071, - [5899] = 3844, - [5900] = 3911, - [5901] = 3889, - [5902] = 3907, - [5903] = 3804, - [5904] = 3869, - [5905] = 3844, - [5906] = 3798, - [5907] = 3029, - [5908] = 2973, - [5909] = 3908, - [5910] = 3908, - [5911] = 2977, - [5912] = 2994, - [5913] = 3876, - [5914] = 3815, - [5915] = 3890, - [5916] = 1963, - [5917] = 3900, - [5918] = 3910, - [5919] = 3820, - [5920] = 3900, - [5921] = 3781, - [5922] = 4166, - [5923] = 3903, - [5924] = 3869, - [5925] = 3882, - [5926] = 3931, - [5927] = 3866, - [5928] = 3864, - [5929] = 3841, - [5930] = 4414, - [5931] = 3915, - [5932] = 2973, - [5933] = 3933, - [5934] = 3792, - [5935] = 3804, - [5936] = 2129, - [5937] = 3933, - [5938] = 2158, - [5939] = 3331, - [5940] = 1994, - [5941] = 4580, - [5942] = 3781, - [5943] = 2211, - [5944] = 3866, - [5945] = 2165, - [5946] = 3939, - [5947] = 3881, - [5948] = 5948, - [5949] = 3880, - [5950] = 3891, - [5951] = 3895, - [5952] = 3896, - [5953] = 3906, - [5954] = 2172, - [5955] = 3875, - [5956] = 3907, - [5957] = 3908, - [5958] = 3910, - [5959] = 3854, - [5960] = 3891, - [5961] = 3827, - [5962] = 4336, - [5963] = 3895, - [5964] = 3887, - [5965] = 3833, - [5966] = 3913, - [5967] = 3763, - [5968] = 5948, - [5969] = 3899, - [5970] = 2223, - [5971] = 3845, - [5972] = 3674, - [5973] = 2169, - [5974] = 1958, - [5975] = 2161, - [5976] = 3828, - [5977] = 3898, - [5978] = 3847, - [5979] = 2171, - [5980] = 3859, - [5981] = 3912, - [5982] = 3857, - [5983] = 3896, - [5984] = 3814, - [5985] = 3864, - [5986] = 3937, - [5987] = 2762, - [5988] = 3950, - [5989] = 2136, - [5990] = 3837, - [5991] = 3878, - [5992] = 3889, - [5993] = 2139, - [5994] = 3896, - [5995] = 2028, - [5996] = 3331, - [5997] = 3876, - [5998] = 3951, - [5999] = 2140, - [6000] = 2144, - [6001] = 3880, - [6002] = 3674, - [6003] = 5948, - [6004] = 4551, - [6005] = 2134, - [6006] = 3891, - [6007] = 3903, - [6008] = 2151, - [6009] = 3841, - [6010] = 2137, - [6011] = 3674, - [6012] = 3895, - [6013] = 3896, - [6014] = 3890, - [6015] = 3880, - [6016] = 2757, - [6017] = 1996, - [6018] = 2799, - [6019] = 6019, - [6020] = 3880, - [6021] = 3891, - [6022] = 3895, - [6023] = 3840, - [6024] = 3849, - [6025] = 2851, - [6026] = 2233, - [6027] = 3889, - [6028] = 2205, - [6029] = 2799, - [6030] = 2762, - [6031] = 2221, - [6032] = 2184, - [6033] = 2232, - [6034] = 3837, - [6035] = 3845, - [6036] = 2176, - [6037] = 3950, + [5013] = 4789, + [5014] = 2183, + [5015] = 2184, + [5016] = 3686, + [5017] = 3555, + [5018] = 5018, + [5019] = 2192, + [5020] = 2117, + [5021] = 4789, + [5022] = 4776, + [5023] = 4826, + [5024] = 288, + [5025] = 3697, + [5026] = 1955, + [5027] = 3690, + [5028] = 3696, + [5029] = 3697, + [5030] = 3698, + [5031] = 3684, + [5032] = 2045, + [5033] = 3779, + [5034] = 4530, + [5035] = 4531, + [5036] = 4532, + [5037] = 4533, + [5038] = 4534, + [5039] = 4394, + [5040] = 3654, + [5041] = 4536, + [5042] = 4484, + [5043] = 3641, + [5044] = 5044, + [5045] = 4485, + [5046] = 288, + [5047] = 3724, + [5048] = 3781, + [5049] = 3595, + [5050] = 3679, + [5051] = 286, + [5052] = 3792, + [5053] = 4590, + [5054] = 4200, + [5055] = 3752, + [5056] = 2045, + [5057] = 3804, + [5058] = 5044, + [5059] = 4147, + [5060] = 2957, + [5061] = 2178, + [5062] = 3600, + [5063] = 2969, + [5064] = 3431, + [5065] = 2980, + [5066] = 2981, + [5067] = 2982, + [5068] = 3650, + [5069] = 2992, + [5070] = 2994, + [5071] = 1991, + [5072] = 1992, + [5073] = 4412, + [5074] = 5044, + [5075] = 4546, + [5076] = 3819, + [5077] = 2992, + [5078] = 2994, + [5079] = 2204, + [5080] = 3001, + [5081] = 3002, + [5082] = 3001, + [5083] = 3002, + [5084] = 2805, + [5085] = 286, + [5086] = 3953, + [5087] = 2982, + [5088] = 3001, + [5089] = 3074, + [5090] = 3037, + [5091] = 3610, + [5092] = 4395, + [5093] = 3075, + [5094] = 4413, + [5095] = 3041, + [5096] = 3042, + [5097] = 3762, + [5098] = 3051, + [5099] = 1955, + [5100] = 2992, + [5101] = 288, + [5102] = 5044, + [5103] = 3608, + [5104] = 4396, + [5105] = 3637, + [5106] = 3752, + [5107] = 3051, + [5108] = 5108, + [5109] = 3456, + [5110] = 4414, + [5111] = 286, + [5112] = 5044, + [5113] = 4397, + [5114] = 2045, + [5115] = 5044, + [5116] = 3601, + [5117] = 3037, + [5118] = 4171, + [5119] = 3734, + [5120] = 2187, + [5121] = 2190, + [5122] = 2045, + [5123] = 5044, + [5124] = 5124, + [5125] = 4398, + [5126] = 2197, + [5127] = 3002, + [5128] = 3074, + [5129] = 5044, + [5130] = 3781, + [5131] = 4179, + [5132] = 3637, + [5133] = 3037, + [5134] = 3633, + [5135] = 3075, + [5136] = 5044, + [5137] = 2577, + [5138] = 3634, + [5139] = 3600, + [5140] = 2994, + [5141] = 5044, + [5142] = 5044, + [5143] = 2205, + [5144] = 5044, + [5145] = 5044, + [5146] = 3041, + [5147] = 5044, + [5148] = 2957, + [5149] = 5044, + [5150] = 5044, + [5151] = 3042, + [5152] = 5044, + [5153] = 1969, + [5154] = 5044, + [5155] = 4528, + [5156] = 1111, + [5157] = 5044, + [5158] = 5044, + [5159] = 3610, + [5160] = 5044, + [5161] = 5044, + [5162] = 5044, + [5163] = 5044, + [5164] = 5044, + [5165] = 5044, + [5166] = 5044, + [5167] = 5044, + [5168] = 5044, + [5169] = 5044, + [5170] = 5044, + [5171] = 5044, + [5172] = 5044, + [5173] = 3633, + [5174] = 3634, + [5175] = 5044, + [5176] = 3686, + [5177] = 2117, + [5178] = 2284, + [5179] = 3650, + [5180] = 3613, + [5181] = 3813, + [5182] = 1942, + [5183] = 288, + [5184] = 3616, + [5185] = 3814, + [5186] = 3626, + [5187] = 3627, + [5188] = 2222, + [5189] = 3781, + [5190] = 3608, + [5191] = 1942, + [5192] = 2225, + [5193] = 2230, + [5194] = 4529, + [5195] = 2591, + [5196] = 3762, + [5197] = 5044, + [5198] = 3613, + [5199] = 3051, + [5200] = 2957, + [5201] = 3616, + [5202] = 2233, + [5203] = 2175, + [5204] = 5044, + [5205] = 3601, + [5206] = 3074, + [5207] = 3075, + [5208] = 3658, + [5209] = 3781, + [5210] = 3667, + [5211] = 2969, + [5212] = 3668, + [5213] = 3669, + [5214] = 3670, + [5215] = 3686, + [5216] = 2969, + [5217] = 4174, + [5218] = 3626, + [5219] = 3627, + [5220] = 2198, + [5221] = 1113, + [5222] = 4194, + [5223] = 3690, + [5224] = 3720, + [5225] = 3696, + [5226] = 4177, + [5227] = 3698, + [5228] = 3684, + [5229] = 4173, + [5230] = 3654, + [5231] = 3897, + [5232] = 3641, + [5233] = 3595, + [5234] = 4200, + [5235] = 3679, + [5236] = 4147, + [5237] = 4171, + [5238] = 4174, + [5239] = 2980, + [5240] = 2981, + [5241] = 4177, + [5242] = 4179, + [5243] = 4194, + [5244] = 3752, + [5245] = 2980, + [5246] = 3041, + [5247] = 3042, + [5248] = 2981, + [5249] = 2585, + [5250] = 2982, + [5251] = 3658, + [5252] = 4173, + [5253] = 3667, + [5254] = 3668, + [5255] = 3669, + [5256] = 3809, + [5257] = 3670, + [5258] = 4483, + [5259] = 2045, + [5260] = 2842, + [5261] = 3814, + [5262] = 3944, + [5263] = 1969, + [5264] = 1942, + [5265] = 4529, + [5266] = 3233, + [5267] = 5267, + [5268] = 5268, + [5269] = 3720, + [5270] = 5270, + [5271] = 3209, + [5272] = 4396, + [5273] = 2045, + [5274] = 3781, + [5275] = 4397, + [5276] = 3781, + [5277] = 3242, + [5278] = 3724, + [5279] = 3804, + [5280] = 3667, + [5281] = 4332, + [5282] = 5267, + [5283] = 5268, + [5284] = 3836, + [5285] = 3945, + [5286] = 3668, + [5287] = 5270, + [5288] = 3669, + [5289] = 1113, + [5290] = 3499, + [5291] = 4398, + [5292] = 3720, + [5293] = 3591, + [5294] = 3946, + [5295] = 3670, + [5296] = 3690, + [5297] = 5270, + [5298] = 3786, + [5299] = 5267, + [5300] = 5268, + [5301] = 5301, + [5302] = 5302, + [5303] = 5270, + [5304] = 3809, + [5305] = 4412, + [5306] = 1965, + [5307] = 1969, + [5308] = 2045, + [5309] = 3809, + [5310] = 5267, + [5311] = 5268, + [5312] = 3235, + [5313] = 3171, + [5314] = 3238, + [5315] = 5270, + [5316] = 4412, + [5317] = 3613, + [5318] = 3897, + [5319] = 5268, + [5320] = 4171, + [5321] = 3788, + [5322] = 1960, + [5323] = 3158, + [5324] = 4194, + [5325] = 3813, + [5326] = 3679, + [5327] = 3724, + [5328] = 4483, + [5329] = 5268, + [5330] = 4413, + [5331] = 3819, + [5332] = 3779, + [5333] = 4530, + [5334] = 4414, + [5335] = 1942, + [5336] = 4531, + [5337] = 5268, + [5338] = 3836, + [5339] = 4532, + [5340] = 3616, + [5341] = 2073, + [5342] = 4533, + [5343] = 4534, + [5344] = 3124, + [5345] = 3851, + [5346] = 3145, + [5347] = 4394, + [5348] = 3224, + [5349] = 3156, + [5350] = 3942, + [5351] = 4536, + [5352] = 3943, + [5353] = 2045, + [5354] = 2149, + [5355] = 4484, + [5356] = 5270, + [5357] = 4485, + [5358] = 4173, + [5359] = 3813, + [5360] = 5360, + [5361] = 2055, + [5362] = 3760, + [5363] = 3781, + [5364] = 2790, + [5365] = 3894, + [5366] = 2854, + [5367] = 3696, + [5368] = 4528, + [5369] = 5301, + [5370] = 3658, + [5371] = 3814, + [5372] = 3804, + [5373] = 3697, + [5374] = 3698, + [5375] = 4529, + [5376] = 5267, + [5377] = 4173, + [5378] = 3684, + [5379] = 3851, + [5380] = 3848, + [5381] = 4483, + [5382] = 3779, + [5383] = 4530, + [5384] = 4531, + [5385] = 4532, + [5386] = 4533, + [5387] = 4534, + [5388] = 4412, + [5389] = 4394, + [5390] = 4413, + [5391] = 5391, + [5392] = 4414, + [5393] = 4536, + [5394] = 4484, + [5395] = 4528, + [5396] = 4529, + [5397] = 4483, + [5398] = 4530, + [5399] = 4531, + [5400] = 4532, + [5401] = 4533, + [5402] = 4534, + [5403] = 4394, + [5404] = 4536, + [5405] = 4484, + [5406] = 4485, + [5407] = 4485, + [5408] = 4395, + [5409] = 5409, + [5410] = 3528, + [5411] = 4397, + [5412] = 4398, + [5413] = 5391, + [5414] = 5268, + [5415] = 4174, + [5416] = 4177, + [5417] = 5267, + [5418] = 4200, + [5419] = 3792, + [5420] = 4147, + [5421] = 4528, + [5422] = 2805, + [5423] = 3734, + [5424] = 5424, + [5425] = 3792, + [5426] = 3846, + [5427] = 5270, + [5428] = 3637, + [5429] = 5360, + [5430] = 5301, + [5431] = 4413, + [5432] = 2074, + [5433] = 3819, + [5434] = 5267, + [5435] = 3808, + [5436] = 3555, + [5437] = 3941, + [5438] = 4414, + [5439] = 4395, + [5440] = 5301, + [5441] = 5268, + [5442] = 4590, + [5443] = 3591, + [5444] = 2153, + [5445] = 1942, + [5446] = 5301, + [5447] = 5268, + [5448] = 1964, + [5449] = 4396, + [5450] = 4174, + [5451] = 5301, + [5452] = 3555, + [5453] = 3626, + [5454] = 4179, + [5455] = 1959, + [5456] = 5301, + [5457] = 4171, + [5458] = 4397, + [5459] = 5301, + [5460] = 4177, + [5461] = 5267, + [5462] = 3762, + [5463] = 3846, + [5464] = 3595, + [5465] = 3627, + [5466] = 5270, + [5467] = 1955, + [5468] = 2310, + [5469] = 3734, + [5470] = 2311, + [5471] = 4398, + [5472] = 3809, + [5473] = 4412, + [5474] = 3813, + [5475] = 3814, + [5476] = 4413, + [5477] = 3819, + [5478] = 4414, + [5479] = 4528, + [5480] = 4529, + [5481] = 4483, + [5482] = 3779, + [5483] = 4530, + [5484] = 4531, + [5485] = 4532, + [5486] = 4533, + [5487] = 4534, + [5488] = 4394, + [5489] = 4536, + [5490] = 4484, + [5491] = 4485, + [5492] = 3792, + [5493] = 4395, + [5494] = 4396, + [5495] = 4397, + [5496] = 4398, + [5497] = 1962, + [5498] = 1991, + [5499] = 4194, + [5500] = 3781, + [5501] = 1966, + [5502] = 1967, + [5503] = 1111, + [5504] = 3781, + [5505] = 2842, + [5506] = 3804, + [5507] = 3563, + [5508] = 5424, + [5509] = 5360, + [5510] = 3499, + [5511] = 4200, + [5512] = 3654, + [5513] = 3641, + [5514] = 3528, + [5515] = 2048, + [5516] = 4147, + [5517] = 1992, + [5518] = 3563, + [5519] = 5268, + [5520] = 4395, + [5521] = 3781, + [5522] = 4179, + [5523] = 1942, + [5524] = 3633, + [5525] = 3747, + [5526] = 5526, + [5527] = 3634, + [5528] = 4546, + [5529] = 4396, + [5530] = 3171, + [5531] = 3696, + [5532] = 3616, + [5533] = 3697, + [5534] = 3698, + [5535] = 3781, + [5536] = 3684, + [5537] = 3224, + [5538] = 3852, + [5539] = 3242, + [5540] = 3943, + [5541] = 286, + [5542] = 3781, + [5543] = 3781, + [5544] = 3781, + [5545] = 3734, + [5546] = 3156, + [5547] = 3849, + [5548] = 3654, + [5549] = 3824, + [5550] = 3878, + [5551] = 3895, + [5552] = 3209, + [5553] = 3808, + [5554] = 1964, + [5555] = 4546, + [5556] = 3242, + [5557] = 2591, + [5558] = 3937, + [5559] = 3641, + [5560] = 3931, + [5561] = 3894, + [5562] = 3827, + [5563] = 3686, + [5564] = 3828, + [5565] = 3829, + [5566] = 3074, + [5567] = 3235, + [5568] = 3595, + [5569] = 3944, + [5570] = 3911, + [5571] = 3610, + [5572] = 2144, + [5573] = 3075, + [5574] = 3650, + [5575] = 1965, + [5576] = 3667, + [5577] = 1960, + [5578] = 3679, + [5579] = 3601, + [5580] = 3668, + [5581] = 3686, + [5582] = 3883, + [5583] = 3041, + [5584] = 3836, + [5585] = 1962, + [5586] = 2992, + [5587] = 2994, + [5588] = 1966, + [5589] = 2226, + [5590] = 1967, + [5591] = 3042, + [5592] = 3917, + [5593] = 3938, + [5594] = 3926, + [5595] = 3833, + [5596] = 3837, + [5597] = 2048, + [5598] = 3669, + [5599] = 3626, + [5600] = 3627, + [5601] = 3897, + [5602] = 3823, + [5603] = 3896, + [5604] = 3880, + [5605] = 4590, + [5606] = 3633, + [5607] = 3899, + [5608] = 3781, + [5609] = 3670, + [5610] = 4546, + [5611] = 3820, + [5612] = 3608, + [5613] = 3808, + [5614] = 3832, + [5615] = 3948, + [5616] = 3760, + [5617] = 3171, + [5618] = 3600, + [5619] = 3658, + [5620] = 3897, + [5621] = 3879, + [5622] = 3788, + [5623] = 3158, + [5624] = 1113, + [5625] = 1942, + [5626] = 3851, + [5627] = 3758, + [5628] = 2577, + [5629] = 2577, + [5630] = 3815, + [5631] = 3841, + [5632] = 3238, + [5633] = 3601, + [5634] = 3845, + [5635] = 2310, + [5636] = 3608, + [5637] = 3885, + [5638] = 288, + [5639] = 3886, + [5640] = 3927, + [5641] = 1959, + [5642] = 1969, + [5643] = 3613, + [5644] = 2585, + [5645] = 3233, + [5646] = 3345, + [5647] = 3846, + [5648] = 3894, + [5649] = 3856, + [5650] = 3873, + [5651] = 3857, + [5652] = 2045, + [5653] = 4590, + [5654] = 3858, + [5655] = 3882, + [5656] = 3001, + [5657] = 3002, + [5658] = 3634, + [5659] = 2980, + [5660] = 2981, + [5661] = 3037, + [5662] = 3759, + [5663] = 2982, + [5664] = 3817, + [5665] = 3904, + [5666] = 3863, + [5667] = 3864, + [5668] = 2591, + [5669] = 3850, + [5670] = 3818, + [5671] = 3869, + [5672] = 3871, + [5673] = 3124, + [5674] = 2311, + [5675] = 3872, + [5676] = 3747, + [5677] = 3867, + [5678] = 3945, + [5679] = 3124, + [5680] = 3235, + [5681] = 3822, + [5682] = 3939, + [5683] = 3877, + [5684] = 3238, + [5685] = 3788, + [5686] = 3637, + [5687] = 3145, + [5688] = 3224, + [5689] = 3209, + [5690] = 3781, + [5691] = 2088, + [5692] = 2957, + [5693] = 3156, + [5694] = 3848, + [5695] = 3145, + [5696] = 3866, + [5697] = 3781, + [5698] = 3807, + [5699] = 3762, + [5700] = 2585, + [5701] = 3842, + [5702] = 3762, + [5703] = 3233, + [5704] = 3786, + [5705] = 3747, + [5706] = 3690, + [5707] = 3942, + [5708] = 1111, + [5709] = 2969, + [5710] = 3760, + [5711] = 3158, + [5712] = 3781, + [5713] = 3946, + [5714] = 3786, + [5715] = 3941, + [5716] = 3940, + [5717] = 3894, + [5718] = 3051, + [5719] = 3650, + [5720] = 3063, + [5721] = 5721, + [5722] = 3940, + [5723] = 4483, + [5724] = 3792, + [5725] = 4171, + [5726] = 3895, + [5727] = 3820, + [5728] = 3851, + [5729] = 3869, + [5730] = 3822, + [5731] = 3938, + [5732] = 3779, + [5733] = 3871, + [5734] = 3897, + [5735] = 3842, + [5736] = 4530, + [5737] = 3899, + [5738] = 3814, + [5739] = 3886, + [5740] = 3896, + [5741] = 4531, + [5742] = 4532, + [5743] = 3880, + [5744] = 3911, + [5745] = 3857, + [5746] = 4397, + [5747] = 3837, + [5748] = 3879, + [5749] = 3872, + [5750] = 3939, + [5751] = 4529, + [5752] = 3814, + [5753] = 4533, + [5754] = 2944, + [5755] = 4534, + [5756] = 4394, + [5757] = 3827, + [5758] = 3873, + [5759] = 3882, + [5760] = 3911, + [5761] = 3942, + [5762] = 3943, + [5763] = 3867, + [5764] = 3836, + [5765] = 3836, + [5766] = 3824, + [5767] = 3885, + [5768] = 3904, + [5769] = 3062, + [5770] = 3033, + [5771] = 3790, + [5772] = 4412, + [5773] = 3941, + [5774] = 3779, + [5775] = 3062, + [5776] = 3063, + [5777] = 3832, + [5778] = 3807, + [5779] = 3827, + [5780] = 3064, + [5781] = 3828, + [5782] = 3829, + [5783] = 3942, + [5784] = 3878, + [5785] = 3897, + [5786] = 4536, + [5787] = 4484, + [5788] = 4177, + [5789] = 4485, + [5790] = 3824, + [5791] = 3877, + [5792] = 3948, + [5793] = 3033, + [5794] = 3833, + [5795] = 3943, + [5796] = 5796, + [5797] = 3759, + [5798] = 3842, + [5799] = 3944, + [5800] = 5800, + [5801] = 3873, + [5802] = 3858, + [5803] = 3833, + [5804] = 5796, + [5805] = 3866, + [5806] = 3883, + [5807] = 2805, + [5808] = 3927, + [5809] = 3823, + [5810] = 3904, + [5811] = 3863, + [5812] = 3818, + [5813] = 3931, + [5814] = 3882, + [5815] = 3828, + [5816] = 3829, + [5817] = 3864, + [5818] = 3944, + [5819] = 5819, + [5820] = 3937, + [5821] = 3883, + [5822] = 3897, + [5823] = 3938, + [5824] = 3813, + [5825] = 2842, + [5826] = 3904, + [5827] = 4194, + [5828] = 3897, + [5829] = 4174, + [5830] = 3813, + [5831] = 3948, + [5832] = 3815, + [5833] = 3945, + [5834] = 3917, + [5835] = 3849, + [5836] = 3824, + [5837] = 3939, + [5838] = 3848, + [5839] = 4413, + [5840] = 3946, + [5841] = 3759, + [5842] = 3792, + [5843] = 2124, + [5844] = 3758, + [5845] = 3841, + [5846] = 3871, + [5847] = 3845, + [5848] = 3064, + [5849] = 3946, + [5850] = 2854, + [5851] = 3899, + [5852] = 3818, + [5853] = 3856, + [5854] = 3872, + [5855] = 2944, + [5856] = 3931, + [5857] = 3817, + [5858] = 3878, + [5859] = 2118, + [5860] = 3819, + [5861] = 3848, + [5862] = 3883, + [5863] = 3857, + [5864] = 3817, + [5865] = 3917, + [5866] = 1969, + [5867] = 3823, + [5868] = 3945, + [5869] = 3869, + [5870] = 4414, + [5871] = 3822, + [5872] = 3863, + [5873] = 3937, + [5874] = 3809, + [5875] = 3808, + [5876] = 3897, + [5877] = 2790, + [5878] = 3846, + [5879] = 4395, + [5880] = 3734, + [5881] = 3832, + [5882] = 3897, + [5883] = 3786, + [5884] = 3852, + [5885] = 3841, + [5886] = 3926, + [5887] = 3851, + [5888] = 4179, + [5889] = 3846, + [5890] = 3781, + [5891] = 3845, + [5892] = 1969, + [5893] = 3809, + [5894] = 4200, + [5895] = 3845, + [5896] = 4528, + [5897] = 5796, + [5898] = 3856, + [5899] = 3880, + [5900] = 3940, + [5901] = 5901, + [5902] = 4173, + [5903] = 3819, + [5904] = 3895, + [5905] = 3788, + [5906] = 3852, + [5907] = 3867, + [5908] = 3877, + [5909] = 3886, + [5910] = 3807, + [5911] = 3864, + [5912] = 5912, + [5913] = 4147, + [5914] = 3820, + [5915] = 3927, + [5916] = 3837, + [5917] = 3866, + [5918] = 3858, + [5919] = 4396, + [5920] = 3896, + [5921] = 3815, + [5922] = 3885, + [5923] = 4398, + [5924] = 3879, + [5925] = 3850, + [5926] = 3758, + [5927] = 3849, + [5928] = 3926, + [5929] = 3941, + [5930] = 3850, + [5931] = 3882, + [5932] = 3872, + [5933] = 3841, + [5934] = 1992, + [5935] = 3788, + [5936] = 3826, + [5937] = 3837, + [5938] = 3855, + [5939] = 4332, + [5940] = 3939, + [5941] = 2151, + [5942] = 2152, + [5943] = 3867, + [5944] = 3886, + [5945] = 3822, + [5946] = 3927, + [5947] = 3938, + [5948] = 3937, + [5949] = 2854, + [5950] = 3826, + [5951] = 3835, + [5952] = 3847, + [5953] = 3855, + [5954] = 2790, + [5955] = 3833, + [5956] = 2159, + [5957] = 3878, + [5958] = 2163, + [5959] = 3866, + [5960] = 3877, + [5961] = 3856, + [5962] = 5962, + [5963] = 3827, + [5964] = 2171, + [5965] = 2165, + [5966] = 3896, + [5967] = 3863, + [5968] = 2021, + [5969] = 3826, + [5970] = 3591, + [5971] = 3847, + [5972] = 2161, + [5973] = 3880, + [5974] = 2160, + [5975] = 4590, + [5976] = 3786, + [5977] = 3835, + [5978] = 3591, + [5979] = 3873, + [5980] = 3911, + [5981] = 3847, + [5982] = 3808, + [5983] = 3855, + [5984] = 3895, + [5985] = 3917, + [5986] = 3345, + [5987] = 3835, + [5988] = 2805, + [5989] = 2157, + [5990] = 2148, + [5991] = 3926, + [5992] = 5992, + [5993] = 2174, + [5994] = 2162, + [5995] = 3826, + [5996] = 2842, + [5997] = 3864, + [5998] = 1955, + [5999] = 3835, + [6000] = 3885, + [6001] = 3828, + [6002] = 3899, + [6003] = 4546, + [6004] = 3869, + [6005] = 3829, + [6006] = 5962, + [6007] = 3871, + [6008] = 2156, + [6009] = 3847, + [6010] = 3790, + [6011] = 3855, + [6012] = 2166, + [6013] = 3879, + [6014] = 3345, + [6015] = 2168, + [6016] = 3857, + [6017] = 3591, + [6018] = 5962, + [6019] = 3858, + [6020] = 2146, + [6021] = 1991, + [6022] = 3939, + [6023] = 2184, + [6024] = 2311, + [6025] = 2202, + [6026] = 3896, + [6027] = 2208, + [6028] = 2842, + [6029] = 2192, + [6030] = 2185, + [6031] = 2194, + [6032] = 2209, + [6033] = 2223, + [6034] = 6034, + [6035] = 2805, + [6036] = 2210, + [6037] = 3063, [6038] = 6038, - [6039] = 3943, - [6040] = 3875, - [6041] = 3903, - [6042] = 3849, - [6043] = 3857, - [6044] = 3869, - [6045] = 3906, - [6046] = 3907, - [6047] = 3908, - [6048] = 3951, - [6049] = 3882, - [6050] = 2222, - [6051] = 2197, - [6052] = 3890, - [6053] = 2317, - [6054] = 2851, - [6055] = 2198, - [6056] = 2200, - [6057] = 3887, - [6058] = 3827, - [6059] = 2201, - [6060] = 2226, - [6061] = 2238, - [6062] = 2237, - [6063] = 2178, - [6064] = 2227, - [6065] = 2228, - [6066] = 3763, - [6067] = 2757, - [6068] = 1996, - [6069] = 1994, - [6070] = 2236, - [6071] = 3912, - [6072] = 2799, - [6073] = 2234, - [6074] = 2181, - [6075] = 2225, - [6076] = 3913, - [6077] = 2183, - [6078] = 2186, - [6079] = 6079, - [6080] = 2191, - [6081] = 3910, - [6082] = 2202, - [6083] = 3841, - [6084] = 2230, - [6085] = 2189, - [6086] = 1963, - [6087] = 2851, - [6088] = 3937, - [6089] = 2192, - [6090] = 3944, - [6091] = 2196, - [6092] = 2177, - [6093] = 3899, - [6094] = 3939, - [6095] = 3828, - [6096] = 3898, - [6097] = 3854, - [6098] = 3847, - [6099] = 2194, - [6100] = 2757, - [6101] = 3864, - [6102] = 2199, - [6103] = 3840, - [6104] = 3859, - [6105] = 3866, - [6106] = 3876, - [6107] = 3878, - [6108] = 3881, - [6109] = 2185, - [6110] = 2762, - [6111] = 2994, - [6112] = 3933, - [6113] = 3833, - [6114] = 2994, - [6115] = 2235, - [6116] = 3071, - [6117] = 2204, - [6118] = 3029, - [6119] = 2973, - [6120] = 2318, - [6121] = 3071, - [6122] = 2190, - [6123] = 3029, - [6124] = 2977, - [6125] = 2229, - [6126] = 2973, - [6127] = 2195, - [6128] = 2977, - [6129] = 2193, - [6130] = 2762, - [6131] = 2757, - [6132] = 1994, - [6133] = 2318, - [6134] = 2762, - [6135] = 3674, - [6136] = 2317, - [6137] = 2803, - [6138] = 2799, - [6139] = 2799, - [6140] = 1996, - [6141] = 3674, - [6142] = 2851, - [6143] = 2757, - [6144] = 1984, - [6145] = 2851, - [6146] = 2803, - [6147] = 3763, - [6148] = 4162, - [6149] = 4163, - [6150] = 4165, - [6151] = 4166, - [6152] = 4149, - [6153] = 1994, - [6154] = 2902, - [6155] = 1958, - [6156] = 4159, - [6157] = 2903, - [6158] = 4157, - [6159] = 1996, - [6160] = 3880, - [6161] = 4160, - [6162] = 3891, - [6163] = 3895, - [6164] = 3896, - [6165] = 2902, - [6166] = 4159, - [6167] = 3896, - [6168] = 3674, - [6169] = 3763, - [6170] = 4162, - [6171] = 4160, - [6172] = 1996, - [6173] = 1994, - [6174] = 6038, - [6175] = 4163, - [6176] = 1994, - [6177] = 4149, - [6178] = 2082, - [6179] = 4165, - [6180] = 1996, - [6181] = 4157, - [6182] = 4166, + [6039] = 3822, + [6040] = 2201, + [6041] = 3885, + [6042] = 3845, + [6043] = 3877, + [6044] = 3878, + [6045] = 2234, + [6046] = 2203, + [6047] = 3911, + [6048] = 3926, + [6049] = 2805, + [6050] = 1991, + [6051] = 2842, + [6052] = 1992, + [6053] = 2944, + [6054] = 2235, + [6055] = 2213, + [6056] = 2172, + [6057] = 3033, + [6058] = 2179, + [6059] = 2173, + [6060] = 2180, + [6061] = 3880, + [6062] = 3895, + [6063] = 2182, + [6064] = 2183, + [6065] = 3883, + [6066] = 2236, + [6067] = 2214, + [6068] = 2215, + [6069] = 1969, + [6070] = 2200, + [6071] = 3866, + [6072] = 3841, + [6073] = 3062, + [6074] = 3856, + [6075] = 2854, + [6076] = 3063, + [6077] = 2944, + [6078] = 3064, + [6079] = 3790, + [6080] = 2186, + [6081] = 3827, + [6082] = 3828, + [6083] = 3829, + [6084] = 3033, + [6085] = 3857, + [6086] = 2231, + [6087] = 3899, + [6088] = 2854, + [6089] = 3869, + [6090] = 3871, + [6091] = 2790, + [6092] = 3837, + [6093] = 3867, + [6094] = 3872, + [6095] = 2218, + [6096] = 3064, + [6097] = 3863, + [6098] = 3864, + [6099] = 3833, + [6100] = 3824, + [6101] = 2790, + [6102] = 2232, + [6103] = 2193, + [6104] = 3062, + [6105] = 2310, + [6106] = 2217, + [6107] = 3873, + [6108] = 2196, + [6109] = 2224, + [6110] = 3937, + [6111] = 2219, + [6112] = 2227, + [6113] = 3886, + [6114] = 2195, + [6115] = 2228, + [6116] = 3904, + [6117] = 3927, + [6118] = 3882, + [6119] = 2229, + [6120] = 3879, + [6121] = 3917, + [6122] = 3858, + [6123] = 3938, + [6124] = 2207, + [6125] = 2170, + [6126] = 3591, + [6127] = 2790, + [6128] = 2842, + [6129] = 2854, + [6130] = 2891, + [6131] = 2790, + [6132] = 2891, + [6133] = 2310, + [6134] = 2854, + [6135] = 1992, + [6136] = 2842, + [6137] = 2311, + [6138] = 2805, + [6139] = 3591, + [6140] = 1991, + [6141] = 1978, + [6142] = 2805, + [6143] = 1992, + [6144] = 1991, + [6145] = 4179, + [6146] = 2943, + [6147] = 1991, + [6148] = 3600, + [6149] = 4200, + [6150] = 3790, + [6151] = 4194, + [6152] = 4147, + [6153] = 3835, + [6154] = 4171, + [6155] = 4173, + [6156] = 3826, + [6157] = 3790, + [6158] = 3855, + [6159] = 4174, + [6160] = 4177, + [6161] = 6038, + [6162] = 4179, + [6163] = 3591, + [6164] = 4194, + [6165] = 3835, + [6166] = 3610, + [6167] = 1992, + [6168] = 1992, + [6169] = 1955, + [6170] = 2918, + [6171] = 3826, + [6172] = 2918, + [6173] = 2943, + [6174] = 3847, + [6175] = 3847, + [6176] = 4200, + [6177] = 4147, + [6178] = 1991, + [6179] = 4173, + [6180] = 3855, + [6181] = 4174, + [6182] = 3790, [6183] = 6038, - [6184] = 3763, - [6185] = 6038, - [6186] = 3763, - [6187] = 2070, - [6188] = 3657, - [6189] = 3880, - [6190] = 3622, - [6191] = 3891, - [6192] = 3895, - [6193] = 2903, + [6184] = 4171, + [6185] = 2072, + [6186] = 2065, + [6187] = 3790, + [6188] = 4177, + [6189] = 6038, + [6190] = 6190, + [6191] = 3052, + [6192] = 3012, + [6193] = 3052, [6194] = 6194, - [6195] = 1996, - [6196] = 1994, - [6197] = 371, - [6198] = 6198, + [6195] = 6195, + [6196] = 6190, + [6197] = 3077, + [6198] = 378, [6199] = 6199, - [6200] = 3000, - [6201] = 3065, - [6202] = 6198, - [6203] = 368, - [6204] = 3018, - [6205] = 2121, - [6206] = 6199, - [6207] = 6199, - [6208] = 379, - [6209] = 370, - [6210] = 2028, - [6211] = 6198, - [6212] = 469, + [6200] = 3078, + [6201] = 372, + [6202] = 6195, + [6203] = 6194, + [6204] = 341, + [6205] = 2111, + [6206] = 334, + [6207] = 2112, + [6208] = 409, + [6209] = 2100, + [6210] = 6195, + [6211] = 6194, + [6212] = 2101, [6213] = 6199, - [6214] = 6214, - [6215] = 2102, - [6216] = 380, - [6217] = 3079, - [6218] = 367, - [6219] = 6199, - [6220] = 2956, - [6221] = 2958, - [6222] = 6194, - [6223] = 6214, - [6224] = 6214, - [6225] = 6194, - [6226] = 328, - [6227] = 389, - [6228] = 369, - [6229] = 361, - [6230] = 6194, - [6231] = 6198, - [6232] = 6194, - [6233] = 385, - [6234] = 2103, - [6235] = 2101, - [6236] = 2956, - [6237] = 2958, - [6238] = 6214, - [6239] = 6199, - [6240] = 326, - [6241] = 6214, + [6214] = 2102, + [6215] = 6190, + [6216] = 6199, + [6217] = 6190, + [6218] = 3020, + [6219] = 2970, + [6220] = 342, + [6221] = 3012, + [6222] = 331, + [6223] = 332, + [6224] = 333, + [6225] = 2021, + [6226] = 382, + [6227] = 6195, + [6228] = 359, + [6229] = 373, + [6230] = 1985, + [6231] = 379, + [6232] = 6199, + [6233] = 2970, + [6234] = 6190, + [6235] = 6194, + [6236] = 6194, + [6237] = 6195, + [6238] = 6190, + [6239] = 380, + [6240] = 2110, + [6241] = 1991, [6242] = 6194, - [6243] = 6198, - [6244] = 381, - [6245] = 362, - [6246] = 3000, - [6247] = 6199, - [6248] = 3065, - [6249] = 3079, - [6250] = 3018, - [6251] = 508, - [6252] = 2126, - [6253] = 6194, - [6254] = 378, - [6255] = 6214, - [6256] = 2075, - [6257] = 6214, - [6258] = 6198, - [6259] = 6198, - [6260] = 2105, - [6261] = 366, - [6262] = 1987, - [6263] = 2105, - [6264] = 2102, - [6265] = 1996, - [6266] = 1994, - [6267] = 3896, - [6268] = 3895, - [6269] = 3895, - [6270] = 3896, - [6271] = 3896, - [6272] = 3891, - [6273] = 3895, - [6274] = 3891, - [6275] = 3674, - [6276] = 3880, - [6277] = 3896, - [6278] = 3891, - [6279] = 3880, - [6280] = 3674, - [6281] = 3880, - [6282] = 3622, - [6283] = 2103, - [6284] = 6284, - [6285] = 2101, - [6286] = 3895, - [6287] = 2126, - [6288] = 3657, - [6289] = 2121, - [6290] = 3891, - [6291] = 3880, - [6292] = 3071, - [6293] = 6293, - [6294] = 2973, - [6295] = 3029, - [6296] = 6293, - [6297] = 4159, - [6298] = 4499, - [6299] = 3071, - [6300] = 4160, - [6301] = 6301, - [6302] = 4162, - [6303] = 2318, - [6304] = 6304, - [6305] = 2977, - [6306] = 3071, - [6307] = 4402, - [6308] = 4159, - [6309] = 4498, - [6310] = 6310, - [6311] = 4165, - [6312] = 6038, - [6313] = 4413, - [6314] = 2977, - [6315] = 2994, - [6316] = 3071, - [6317] = 1958, - [6318] = 2973, - [6319] = 2973, - [6320] = 4162, - [6321] = 2994, - [6322] = 4163, - [6323] = 2977, - [6324] = 3029, - [6325] = 2078, - [6326] = 4160, - [6327] = 4491, - [6328] = 4400, - [6329] = 4149, - [6330] = 4401, - [6331] = 4162, - [6332] = 3029, - [6333] = 4403, - [6334] = 4163, - [6335] = 1994, - [6336] = 4149, - [6337] = 4419, - [6338] = 4421, - [6339] = 4166, - [6340] = 2317, - [6341] = 2994, - [6342] = 4411, - [6343] = 4500, - [6344] = 4163, - [6345] = 6345, - [6346] = 4165, - [6347] = 4412, - [6348] = 4404, - [6349] = 4159, - [6350] = 2994, - [6351] = 1996, - [6352] = 6352, - [6353] = 2977, - [6354] = 4492, - [6355] = 6352, - [6356] = 6356, - [6357] = 2973, - [6358] = 4165, - [6359] = 4493, - [6360] = 2001, - [6361] = 4160, - [6362] = 4149, - [6363] = 3029, - [6364] = 4406, - [6365] = 4407, - [6366] = 4157, - [6367] = 6304, - [6368] = 4157, - [6369] = 4166, - [6370] = 4414, - [6371] = 2317, - [6372] = 2016, - [6373] = 4157, - [6374] = 2318, - [6375] = 4166, - [6376] = 6310, - [6377] = 2026, + [6243] = 3077, + [6244] = 1992, + [6245] = 6195, + [6246] = 337, + [6247] = 6195, + [6248] = 381, + [6249] = 3078, + [6250] = 6199, + [6251] = 6199, + [6252] = 6199, + [6253] = 6190, + [6254] = 6194, + [6255] = 3020, + [6256] = 2074, + [6257] = 371, + [6258] = 511, + [6259] = 3835, + [6260] = 3826, + [6261] = 6261, + [6262] = 3835, + [6263] = 3826, + [6264] = 3591, + [6265] = 3855, + [6266] = 3847, + [6267] = 3826, + [6268] = 3591, + [6269] = 1991, + [6270] = 2111, + [6271] = 2112, + [6272] = 2100, + [6273] = 3835, + [6274] = 3610, + [6275] = 2101, + [6276] = 2102, + [6277] = 2110, + [6278] = 3855, + [6279] = 3855, + [6280] = 3835, + [6281] = 3847, + [6282] = 3600, + [6283] = 1992, + [6284] = 3855, + [6285] = 3826, + [6286] = 3847, + [6287] = 3847, + [6288] = 3064, + [6289] = 4171, + [6290] = 6290, + [6291] = 4528, + [6292] = 3064, + [6293] = 2311, + [6294] = 6294, + [6295] = 3062, + [6296] = 4397, + [6297] = 4394, + [6298] = 3063, + [6299] = 3033, + [6300] = 4194, + [6301] = 4174, + [6302] = 4179, + [6303] = 4173, + [6304] = 3064, + [6305] = 1998, + [6306] = 3033, + [6307] = 3062, + [6308] = 4536, + [6309] = 2944, + [6310] = 4179, + [6311] = 1991, + [6312] = 4173, + [6313] = 2944, + [6314] = 3064, + [6315] = 6038, + [6316] = 4177, + [6317] = 1955, + [6318] = 4484, + [6319] = 4174, + [6320] = 6320, + [6321] = 4529, + [6322] = 4177, + [6323] = 4171, + [6324] = 4485, + [6325] = 6325, + [6326] = 4200, + [6327] = 2310, + [6328] = 4174, + [6329] = 3033, + [6330] = 2067, + [6331] = 4179, + [6332] = 2944, + [6333] = 4173, + [6334] = 6294, + [6335] = 4194, + [6336] = 4147, + [6337] = 4171, + [6338] = 3062, + [6339] = 3063, + [6340] = 2944, + [6341] = 1992, + [6342] = 4532, + [6343] = 6343, + [6344] = 6290, + [6345] = 6325, + [6346] = 4396, + [6347] = 4200, + [6348] = 6348, + [6349] = 4533, + [6350] = 4194, + [6351] = 4531, + [6352] = 4177, + [6353] = 4200, + [6354] = 3063, + [6355] = 3063, + [6356] = 3062, + [6357] = 4147, + [6358] = 4412, + [6359] = 6343, + [6360] = 6360, + [6361] = 2010, + [6362] = 4534, + [6363] = 2310, + [6364] = 4147, + [6365] = 4414, + [6366] = 3033, + [6367] = 2311, + [6368] = 4413, + [6369] = 4398, + [6370] = 4483, + [6371] = 4530, + [6372] = 4395, + [6373] = 4546, + [6374] = 2065, + [6375] = 1992, + [6376] = 4546, + [6377] = 3148, [6378] = 6378, - [6379] = 2317, + [6379] = 2061, [6380] = 6380, - [6381] = 2318, - [6382] = 6378, + [6381] = 6381, + [6382] = 6380, [6383] = 6383, - [6384] = 2058, - [6385] = 6385, - [6386] = 4580, - [6387] = 2082, - [6388] = 2070, - [6389] = 4017, - [6390] = 3979, - [6391] = 6380, - [6392] = 4006, - [6393] = 3125, - [6394] = 6378, - [6395] = 3129, - [6396] = 6380, - [6397] = 3169, - [6398] = 6380, - [6399] = 4031, - [6400] = 3170, - [6401] = 2071, - [6402] = 4580, - [6403] = 3125, - [6404] = 4551, - [6405] = 2054, - [6406] = 6385, - [6407] = 6407, - [6408] = 3129, - [6409] = 1996, - [6410] = 1994, - [6411] = 6385, - [6412] = 3169, - [6413] = 6385, - [6414] = 6385, - [6415] = 6385, - [6416] = 6385, - [6417] = 4024, - [6418] = 6418, - [6419] = 4551, - [6420] = 2006, - [6421] = 6380, - [6422] = 6422, - [6423] = 6407, - [6424] = 3170, - [6425] = 2048, - [6426] = 2076, - [6427] = 2028, - [6428] = 4492, - [6429] = 4421, - [6430] = 3009, - [6431] = 4498, - [6432] = 4402, - [6433] = 4403, - [6434] = 4404, - [6435] = 4401, - [6436] = 4407, - [6437] = 4411, - [6438] = 4162, - [6439] = 4412, - [6440] = 4499, - [6441] = 4163, - [6442] = 3085, - [6443] = 4165, - [6444] = 3024, - [6445] = 3034, - [6446] = 4166, - [6447] = 4500, - [6448] = 2955, - [6449] = 2976, - [6450] = 1996, - [6451] = 2103, - [6452] = 2101, - [6453] = 2983, - [6454] = 3004, - [6455] = 1994, - [6456] = 3441, - [6457] = 3433, - [6458] = 2126, - [6459] = 2105, - [6460] = 3027, - [6461] = 3068, - [6462] = 3038, - [6463] = 3441, - [6464] = 2102, - [6465] = 2957, - [6466] = 2960, - [6467] = 2077, - [6468] = 3002, - [6469] = 2121, - [6470] = 4157, - [6471] = 4159, - [6472] = 4160, - [6473] = 4149, - [6474] = 2078, - [6475] = 4413, - [6476] = 288, - [6477] = 285, - [6478] = 6478, - [6479] = 4400, - [6480] = 4414, - [6481] = 6481, - [6482] = 4419, - [6483] = 4493, - [6484] = 6481, - [6485] = 6481, - [6486] = 6481, - [6487] = 4491, - [6488] = 6481, - [6489] = 6481, - [6490] = 4162, - [6491] = 1963, - [6492] = 3006, - [6493] = 4163, - [6494] = 4165, - [6495] = 4166, - [6496] = 4157, - [6497] = 4159, - [6498] = 4160, - [6499] = 4149, - [6500] = 6481, - [6501] = 3433, - [6502] = 4406, - [6503] = 4400, - [6504] = 4499, - [6505] = 3566, - [6506] = 2103, - [6507] = 2101, - [6508] = 2105, - [6509] = 3517, - [6510] = 4500, - [6511] = 3581, - [6512] = 4402, - [6513] = 3548, - [6514] = 3566, - [6515] = 3566, - [6516] = 4491, - [6517] = 4492, - [6518] = 4493, - [6519] = 6519, - [6520] = 4413, - [6521] = 4414, - [6522] = 1112, - [6523] = 1114, - [6524] = 4419, - [6525] = 4421, - [6526] = 2108, - [6527] = 3548, - [6528] = 2102, - [6529] = 6529, - [6530] = 4403, - [6531] = 6531, - [6532] = 6532, - [6533] = 4404, - [6534] = 3581, - [6535] = 3581, - [6536] = 1112, - [6537] = 4498, - [6538] = 4406, - [6539] = 1114, - [6540] = 3517, - [6541] = 4407, - [6542] = 3517, - [6543] = 4411, - [6544] = 3548, - [6545] = 4401, - [6546] = 4162, - [6547] = 4163, - [6548] = 4165, - [6549] = 2121, - [6550] = 4166, - [6551] = 4157, - [6552] = 4159, - [6553] = 4160, - [6554] = 4149, - [6555] = 4412, - [6556] = 2126, - [6557] = 3611, - [6558] = 6558, - [6559] = 6559, - [6560] = 2162, - [6561] = 6561, - [6562] = 1966, - [6563] = 6563, + [6384] = 6384, + [6385] = 6378, + [6386] = 6386, + [6387] = 6380, + [6388] = 6383, + [6389] = 6378, + [6390] = 6381, + [6391] = 3148, + [6392] = 2311, + [6393] = 3152, + [6394] = 6381, + [6395] = 3152, + [6396] = 6396, + [6397] = 3164, + [6398] = 2031, + [6399] = 2310, + [6400] = 2054, + [6401] = 4590, + [6402] = 6380, + [6403] = 3098, + [6404] = 3164, + [6405] = 3980, + [6406] = 2001, + [6407] = 6380, + [6408] = 6380, + [6409] = 3988, + [6410] = 4590, + [6411] = 1991, + [6412] = 3997, + [6413] = 3953, + [6414] = 6380, + [6415] = 2021, + [6416] = 2070, + [6417] = 3985, + [6418] = 6381, + [6419] = 6381, + [6420] = 2069, + [6421] = 2058, + [6422] = 2072, + [6423] = 3098, + [6424] = 4533, + [6425] = 4414, + [6426] = 3456, + [6427] = 6427, + [6428] = 6428, + [6429] = 4412, + [6430] = 4483, + [6431] = 4530, + [6432] = 2957, + [6433] = 4531, + [6434] = 4532, + [6435] = 4534, + [6436] = 4394, + [6437] = 4536, + [6438] = 4484, + [6439] = 4485, + [6440] = 2969, + [6441] = 2980, + [6442] = 4174, + [6443] = 2981, + [6444] = 2982, + [6445] = 4177, + [6446] = 4179, + [6447] = 4194, + [6448] = 4173, + [6449] = 4200, + [6450] = 4147, + [6451] = 4171, + [6452] = 4174, + [6453] = 4177, + [6454] = 4179, + [6455] = 4194, + [6456] = 2992, + [6457] = 2994, + [6458] = 3001, + [6459] = 2111, + [6460] = 2112, + [6461] = 1991, + [6462] = 3431, + [6463] = 1992, + [6464] = 2100, + [6465] = 2101, + [6466] = 3074, + [6467] = 3037, + [6468] = 3075, + [6469] = 3041, + [6470] = 3042, + [6471] = 3456, + [6472] = 2102, + [6473] = 3051, + [6474] = 2079, + [6475] = 2110, + [6476] = 2067, + [6477] = 4173, + [6478] = 4200, + [6479] = 4147, + [6480] = 4171, + [6481] = 4395, + [6482] = 4528, + [6483] = 288, + [6484] = 4396, + [6485] = 286, + [6486] = 4397, + [6487] = 6427, + [6488] = 4413, + [6489] = 6427, + [6490] = 6427, + [6491] = 6427, + [6492] = 6427, + [6493] = 6427, + [6494] = 1969, + [6495] = 4398, + [6496] = 4529, + [6497] = 3431, + [6498] = 3002, + [6499] = 4147, + [6500] = 4532, + [6501] = 4533, + [6502] = 4534, + [6503] = 4174, + [6504] = 4177, + [6505] = 4179, + [6506] = 4194, + [6507] = 4394, + [6508] = 4536, + [6509] = 4484, + [6510] = 4485, + [6511] = 3555, + [6512] = 4395, + [6513] = 3499, + [6514] = 4396, + [6515] = 2106, + [6516] = 4397, + [6517] = 2110, + [6518] = 4398, + [6519] = 3555, + [6520] = 4173, + [6521] = 4200, + [6522] = 6522, + [6523] = 4531, + [6524] = 3563, + [6525] = 3528, + [6526] = 3499, + [6527] = 2111, + [6528] = 2112, + [6529] = 2101, + [6530] = 3563, + [6531] = 4412, + [6532] = 4413, + [6533] = 4414, + [6534] = 3563, + [6535] = 1111, + [6536] = 1113, + [6537] = 2100, + [6538] = 2102, + [6539] = 6539, + [6540] = 4528, + [6541] = 1111, + [6542] = 1113, + [6543] = 3499, + [6544] = 3555, + [6545] = 3528, + [6546] = 4529, + [6547] = 6547, + [6548] = 3528, + [6549] = 6549, + [6550] = 4483, + [6551] = 4530, + [6552] = 4171, + [6553] = 3667, + [6554] = 3601, + [6555] = 3610, + [6556] = 2271, + [6557] = 3641, + [6558] = 3595, + [6559] = 3600, + [6560] = 3679, + [6561] = 2045, + [6562] = 6562, + [6563] = 3686, [6564] = 6564, - [6565] = 6564, - [6566] = 6566, - [6567] = 2247, - [6568] = 3678, - [6569] = 3678, - [6570] = 1967, - [6571] = 3655, + [6565] = 3650, + [6566] = 2067, + [6567] = 6567, + [6568] = 3658, + [6569] = 6569, + [6570] = 3608, + [6571] = 3668, [6572] = 6572, - [6573] = 3703, - [6574] = 2082, - [6575] = 3645, - [6576] = 3664, - [6577] = 3645, - [6578] = 6572, - [6579] = 2049, - [6580] = 3622, - [6581] = 2049, - [6582] = 3647, - [6583] = 2121, - [6584] = 3669, - [6585] = 6572, - [6586] = 2103, - [6587] = 2101, - [6588] = 3671, - [6589] = 6558, - [6590] = 6559, - [6591] = 3673, - [6592] = 6561, - [6593] = 6564, - [6594] = 2126, - [6595] = 2105, - [6596] = 3678, + [6573] = 6573, + [6574] = 6574, + [6575] = 6562, + [6576] = 3669, + [6577] = 6572, + [6578] = 6573, + [6579] = 3650, + [6580] = 3601, + [6581] = 3670, + [6582] = 6574, + [6583] = 3610, + [6584] = 6564, + [6585] = 3650, + [6586] = 3686, + [6587] = 2045, + [6588] = 2110, + [6589] = 2111, + [6590] = 2112, + [6591] = 6572, + [6592] = 6573, + [6593] = 6574, + [6594] = 6562, + [6595] = 2100, + [6596] = 2101, [6597] = 2102, - [6598] = 3647, - [6599] = 6572, - [6600] = 4580, - [6601] = 2070, - [6602] = 3651, - [6603] = 6603, - [6604] = 6558, - [6605] = 6559, - [6606] = 6561, - [6607] = 3625, - [6608] = 3626, - [6609] = 6572, - [6610] = 3645, - [6611] = 4551, - [6612] = 2112, - [6613] = 3601, - [6614] = 3622, - [6615] = 3603, - [6616] = 3608, - [6617] = 3611, - [6618] = 6558, - [6619] = 6559, - [6620] = 6561, - [6621] = 6572, - [6622] = 3628, - [6623] = 3637, - [6624] = 3638, - [6625] = 3640, - [6626] = 3641, - [6627] = 6558, - [6628] = 6559, - [6629] = 6561, - [6630] = 3655, - [6631] = 3664, - [6632] = 3669, - [6633] = 3671, - [6634] = 6572, - [6635] = 3673, - [6636] = 6636, - [6637] = 3675, - [6638] = 3679, - [6639] = 3687, - [6640] = 3688, - [6641] = 3675, - [6642] = 2076, - [6643] = 3679, - [6644] = 6558, - [6645] = 1964, - [6646] = 6561, - [6647] = 3657, - [6648] = 6572, - [6649] = 3006, - [6650] = 3657, - [6651] = 3009, - [6652] = 2071, - [6653] = 6558, - [6654] = 6561, - [6655] = 3085, - [6656] = 3024, - [6657] = 3034, - [6658] = 3687, - [6659] = 6561, - [6660] = 6561, - [6661] = 3688, - [6662] = 2955, - [6663] = 2976, - [6664] = 2247, - [6665] = 2983, - [6666] = 6561, - [6667] = 3004, - [6668] = 6561, - [6669] = 6561, - [6670] = 6561, - [6671] = 6561, - [6672] = 6561, - [6673] = 6561, - [6674] = 6561, - [6675] = 3027, - [6676] = 3068, - [6677] = 3038, - [6678] = 6561, - [6679] = 6561, - [6680] = 6561, - [6681] = 2957, - [6682] = 2960, - [6683] = 6558, - [6684] = 3647, - [6685] = 3002, - [6686] = 6686, - [6687] = 6687, - [6688] = 6559, - [6689] = 6564, - [6690] = 2094, - [6691] = 2083, - [6692] = 2086, - [6693] = 2090, - [6694] = 6558, - [6695] = 3603, - [6696] = 6559, - [6697] = 3628, - [6698] = 3608, - [6699] = 2037, - [6700] = 2074, - [6701] = 3651, - [6702] = 6561, - [6703] = 6703, - [6704] = 3703, - [6705] = 2078, - [6706] = 3637, - [6707] = 2047, - [6708] = 3625, - [6709] = 3626, - [6710] = 2045, - [6711] = 288, - [6712] = 285, - [6713] = 3703, - [6714] = 2049, - [6715] = 3601, - [6716] = 3638, - [6717] = 3640, - [6718] = 3641, - [6719] = 1970, - [6720] = 1965, - [6721] = 1968, - [6722] = 1969, - [6723] = 6559, - [6724] = 4406, - [6725] = 2105, - [6726] = 2105, - [6727] = 2102, - [6728] = 4412, - [6729] = 4499, - [6730] = 4159, - [6731] = 6731, - [6732] = 4493, - [6733] = 6733, - [6734] = 4500, - [6735] = 6735, - [6736] = 4421, - [6737] = 4157, - [6738] = 3791, - [6739] = 3792, - [6740] = 6740, - [6741] = 2121, - [6742] = 6742, - [6743] = 4159, - [6744] = 6735, - [6745] = 4160, - [6746] = 2121, - [6747] = 6747, - [6748] = 4160, - [6749] = 4149, - [6750] = 4162, - [6751] = 4163, - [6752] = 3820, - [6753] = 4403, - [6754] = 1963, - [6755] = 3815, - [6756] = 6756, - [6757] = 6735, - [6758] = 4413, - [6759] = 6759, - [6760] = 6760, - [6761] = 6735, - [6762] = 2126, - [6763] = 2108, - [6764] = 2102, - [6765] = 6765, - [6766] = 6766, - [6767] = 6735, - [6768] = 1963, - [6769] = 6769, - [6770] = 4419, - [6771] = 3782, - [6772] = 4165, - [6773] = 6735, - [6774] = 4402, - [6775] = 4491, - [6776] = 6776, - [6777] = 6777, - [6778] = 4163, - [6779] = 6776, - [6780] = 6777, - [6781] = 4400, - [6782] = 3791, - [6783] = 4401, - [6784] = 6784, - [6785] = 4498, - [6786] = 4402, - [6787] = 4403, - [6788] = 4404, - [6789] = 4406, - [6790] = 4407, - [6791] = 4411, - [6792] = 4412, - [6793] = 4499, - [6794] = 6735, - [6795] = 4500, - [6796] = 4413, - [6797] = 4414, - [6798] = 4419, - [6799] = 4421, - [6800] = 3732, - [6801] = 3792, - [6802] = 4492, - [6803] = 3794, - [6804] = 6747, + [6598] = 4590, + [6599] = 6564, + [6600] = 3637, + [6601] = 3633, + [6602] = 3634, + [6603] = 3690, + [6604] = 4546, + [6605] = 6572, + [6606] = 6573, + [6607] = 6574, + [6608] = 3613, + [6609] = 6609, + [6610] = 3616, + [6611] = 6564, + [6612] = 3626, + [6613] = 3627, + [6614] = 2117, + [6615] = 6562, + [6616] = 3658, + [6617] = 6572, + [6618] = 6573, + [6619] = 6574, + [6620] = 3667, + [6621] = 3668, + [6622] = 3669, + [6623] = 3670, + [6624] = 6564, + [6625] = 3690, + [6626] = 3696, + [6627] = 3697, + [6628] = 3698, + [6629] = 3684, + [6630] = 3654, + [6631] = 3641, + [6632] = 3595, + [6633] = 3608, + [6634] = 3679, + [6635] = 6572, + [6636] = 6573, + [6637] = 6574, + [6638] = 2070, + [6639] = 3696, + [6640] = 6564, + [6641] = 3654, + [6642] = 3600, + [6643] = 2969, + [6644] = 6572, + [6645] = 2069, + [6646] = 6572, + [6647] = 6573, + [6648] = 6574, + [6649] = 2980, + [6650] = 2981, + [6651] = 2982, + [6652] = 3601, + [6653] = 6564, + [6654] = 2992, + [6655] = 2994, + [6656] = 3697, + [6657] = 6572, + [6658] = 2271, + [6659] = 6574, + [6660] = 3001, + [6661] = 3002, + [6662] = 6574, + [6663] = 6574, + [6664] = 3074, + [6665] = 3037, + [6666] = 3075, + [6667] = 6574, + [6668] = 3041, + [6669] = 3042, + [6670] = 6574, + [6671] = 6574, + [6672] = 6574, + [6673] = 6574, + [6674] = 6574, + [6675] = 3051, + [6676] = 6573, + [6677] = 6574, + [6678] = 6574, + [6679] = 6574, + [6680] = 6574, + [6681] = 3698, + [6682] = 3686, + [6683] = 6683, + [6684] = 3684, + [6685] = 2095, + [6686] = 2096, + [6687] = 2097, + [6688] = 2090, + [6689] = 3637, + [6690] = 2040, + [6691] = 2068, + [6692] = 6564, + [6693] = 6574, + [6694] = 3633, + [6695] = 3634, + [6696] = 3608, + [6697] = 2127, + [6698] = 2046, + [6699] = 2044, + [6700] = 2065, + [6701] = 3613, + [6702] = 288, + [6703] = 286, + [6704] = 3616, + [6705] = 6705, + [6706] = 2072, + [6707] = 2045, + [6708] = 3626, + [6709] = 3627, + [6710] = 1959, + [6711] = 1964, + [6712] = 1965, + [6713] = 1960, + [6714] = 1962, + [6715] = 1966, + [6716] = 1967, + [6717] = 6717, + [6718] = 2957, + [6719] = 4532, + [6720] = 4413, + [6721] = 6721, + [6722] = 6722, + [6723] = 4173, + [6724] = 4529, + [6725] = 2110, + [6726] = 6726, + [6727] = 6727, + [6728] = 6721, + [6729] = 6729, + [6730] = 6730, + [6731] = 6729, + [6732] = 2106, + [6733] = 2111, + [6734] = 2112, + [6735] = 6721, + [6736] = 6736, + [6737] = 2100, + [6738] = 2079, + [6739] = 2101, + [6740] = 2102, + [6741] = 4174, + [6742] = 4177, + [6743] = 6729, + [6744] = 4179, + [6745] = 3809, + [6746] = 4398, + [6747] = 4483, + [6748] = 6736, + [6749] = 1969, + [6750] = 2110, + [6751] = 6721, + [6752] = 3779, + [6753] = 4530, + [6754] = 4531, + [6755] = 4412, + [6756] = 6736, + [6757] = 2100, + [6758] = 4533, + [6759] = 4179, + [6760] = 2102, + [6761] = 4534, + [6762] = 4394, + [6763] = 4536, + [6764] = 4484, + [6765] = 4485, + [6766] = 4194, + [6767] = 6767, + [6768] = 6721, + [6769] = 6721, + [6770] = 2111, + [6771] = 2112, + [6772] = 6729, + [6773] = 3813, + [6774] = 6774, + [6775] = 6736, + [6776] = 2100, + [6777] = 2101, + [6778] = 2102, + [6779] = 4194, + [6780] = 3792, + [6781] = 3819, + [6782] = 6736, + [6783] = 6783, + [6784] = 2111, + [6785] = 2112, + [6786] = 3814, + [6787] = 6736, + [6788] = 2101, + [6789] = 4171, + [6790] = 4173, + [6791] = 6736, + [6792] = 4414, + [6793] = 6736, + [6794] = 4200, + [6795] = 6736, + [6796] = 6796, + [6797] = 6730, + [6798] = 4147, + [6799] = 4395, + [6800] = 4171, + [6801] = 1969, + [6802] = 4413, + [6803] = 6803, + [6804] = 3819, [6805] = 6805, - [6806] = 6735, - [6807] = 6747, - [6808] = 4493, - [6809] = 6809, - [6810] = 5286, - [6811] = 6769, - [6812] = 4149, - [6813] = 6813, - [6814] = 4413, - [6815] = 4157, - [6816] = 6784, - [6817] = 6735, - [6818] = 6818, - [6819] = 6819, - [6820] = 6820, - [6821] = 6784, - [6822] = 2103, - [6823] = 6301, - [6824] = 6784, - [6825] = 2101, - [6826] = 3820, - [6827] = 2114, - [6828] = 6828, - [6829] = 3732, - [6830] = 4404, - [6831] = 6831, - [6832] = 6735, - [6833] = 6784, - [6834] = 2126, - [6835] = 2121, - [6836] = 4498, + [6806] = 4396, + [6807] = 6807, + [6808] = 6808, + [6809] = 3809, + [6810] = 5424, + [6811] = 6811, + [6812] = 6812, + [6813] = 4528, + [6814] = 4529, + [6815] = 6815, + [6816] = 4483, + [6817] = 4530, + [6818] = 4531, + [6819] = 4532, + [6820] = 4533, + [6821] = 4534, + [6822] = 4394, + [6823] = 4536, + [6824] = 4484, + [6825] = 6736, + [6826] = 4485, + [6827] = 4395, + [6828] = 4396, + [6829] = 4397, + [6830] = 4398, + [6831] = 6736, + [6832] = 6348, + [6833] = 6736, + [6834] = 4412, + [6835] = 4200, + [6836] = 6836, [6837] = 6837, - [6838] = 6784, - [6839] = 4492, - [6840] = 2077, - [6841] = 6784, - [6842] = 2105, - [6843] = 2102, - [6844] = 4400, - [6845] = 4491, - [6846] = 4492, - [6847] = 4493, - [6848] = 4400, - [6849] = 4401, - [6850] = 4498, - [6851] = 3815, - [6852] = 4402, - [6853] = 4403, - [6854] = 4404, - [6855] = 4406, - [6856] = 4407, - [6857] = 4411, - [6858] = 4412, - [6859] = 4499, - [6860] = 6735, - [6861] = 4500, - [6862] = 6566, - [6863] = 3820, - [6864] = 3794, - [6865] = 4413, - [6866] = 4414, - [6867] = 4419, - [6868] = 4421, - [6869] = 6869, - [6870] = 6870, - [6871] = 6747, - [6872] = 4166, - [6873] = 6873, - [6874] = 4414, - [6875] = 4421, - [6876] = 6876, - [6877] = 4406, - [6878] = 4166, - [6879] = 4401, - [6880] = 6747, - [6881] = 6769, - [6882] = 3782, - [6883] = 2103, - [6884] = 4491, - [6885] = 3791, - [6886] = 3792, - [6887] = 4492, - [6888] = 3794, - [6889] = 6756, - [6890] = 4493, - [6891] = 6747, - [6892] = 6892, - [6893] = 4400, - [6894] = 2101, - [6895] = 6769, - [6896] = 6896, - [6897] = 4401, - [6898] = 6747, - [6899] = 4407, - [6900] = 6735, - [6901] = 3782, - [6902] = 4165, - [6903] = 6769, - [6904] = 6904, - [6905] = 4411, - [6906] = 2103, - [6907] = 2101, - [6908] = 4498, - [6909] = 4414, - [6910] = 3815, - [6911] = 4402, - [6912] = 4403, - [6913] = 4404, - [6914] = 4162, - [6915] = 4407, - [6916] = 4411, - [6917] = 6735, - [6918] = 4491, - [6919] = 6735, - [6920] = 4419, - [6921] = 6735, - [6922] = 4412, - [6923] = 4499, - [6924] = 4500, - [6925] = 2126, - [6926] = 6735, + [6838] = 6838, + [6839] = 6839, + [6840] = 6815, + [6841] = 6736, + [6842] = 6842, + [6843] = 2121, + [6844] = 4396, + [6845] = 6845, + [6846] = 4147, + [6847] = 6815, + [6848] = 6815, + [6849] = 6849, + [6850] = 6815, + [6851] = 6783, + [6852] = 4397, + [6853] = 6815, + [6854] = 6815, + [6855] = 3734, + [6856] = 4414, + [6857] = 4412, + [6858] = 6858, + [6859] = 4413, + [6860] = 4414, + [6861] = 4528, + [6862] = 4528, + [6863] = 4529, + [6864] = 4483, + [6865] = 3779, + [6866] = 4530, + [6867] = 4531, + [6868] = 4532, + [6869] = 4533, + [6870] = 4534, + [6871] = 4394, + [6872] = 4536, + [6873] = 4484, + [6874] = 6736, + [6875] = 4485, + [6876] = 6567, + [6877] = 3792, + [6878] = 6721, + [6879] = 4395, + [6880] = 4396, + [6881] = 4397, + [6882] = 4398, + [6883] = 6883, + [6884] = 4529, + [6885] = 6729, + [6886] = 4483, + [6887] = 3779, + [6888] = 4530, + [6889] = 4531, + [6890] = 4532, + [6891] = 4533, + [6892] = 4534, + [6893] = 4394, + [6894] = 3809, + [6895] = 4412, + [6896] = 4536, + [6897] = 3813, + [6898] = 3814, + [6899] = 4484, + [6900] = 4413, + [6901] = 3819, + [6902] = 4485, + [6903] = 3734, + [6904] = 4414, + [6905] = 2110, + [6906] = 4174, + [6907] = 6907, + [6908] = 4177, + [6909] = 3792, + [6910] = 6910, + [6911] = 3813, + [6912] = 4398, + [6913] = 6913, + [6914] = 6736, + [6915] = 6796, + [6916] = 6736, + [6917] = 3814, + [6918] = 4395, + [6919] = 4528, + [6920] = 4397, + [6921] = 6921, + [6922] = 6922, + [6923] = 6923, + [6924] = 6924, + [6925] = 6921, + [6926] = 6926, [6927] = 6927, [6928] = 6928, - [6929] = 6929, - [6930] = 6930, + [6929] = 6928, + [6930] = 6928, [6931] = 6931, [6932] = 6932, - [6933] = 6930, + [6933] = 6933, [6934] = 6934, [6935] = 6935, [6936] = 6936, [6937] = 6937, [6938] = 6938, - [6939] = 6939, - [6940] = 3814, - [6941] = 6941, - [6942] = 6942, - [6943] = 6943, - [6944] = 6944, - [6945] = 2103, - [6946] = 2101, - [6947] = 6947, - [6948] = 6948, - [6949] = 6942, - [6950] = 6950, - [6951] = 2105, - [6952] = 6934, - [6953] = 6935, - [6954] = 6938, - [6955] = 6941, - [6956] = 6943, - [6957] = 6928, - [6958] = 6930, - [6959] = 6939, + [6939] = 6922, + [6940] = 6926, + [6941] = 6924, + [6942] = 6935, + [6943] = 6926, + [6944] = 6931, + [6945] = 6932, + [6946] = 3786, + [6947] = 6934, + [6948] = 6923, + [6949] = 6938, + [6950] = 6922, + [6951] = 6937, + [6952] = 6924, + [6953] = 6931, + [6954] = 6932, + [6955] = 6936, + [6956] = 6938, + [6957] = 6931, + [6958] = 6922, + [6959] = 6959, [6960] = 6960, - [6961] = 6961, - [6962] = 6937, - [6963] = 6928, - [6964] = 6960, - [6965] = 6939, - [6966] = 6937, - [6967] = 6944, - [6968] = 6929, - [6969] = 6937, - [6970] = 6947, - [6971] = 6948, - [6972] = 6939, - [6973] = 6942, - [6974] = 6974, - [6975] = 6950, - [6976] = 6960, - [6977] = 6977, + [6961] = 6938, + [6962] = 6932, + [6963] = 6938, + [6964] = 6922, + [6965] = 3786, + [6966] = 6938, + [6967] = 6922, + [6968] = 6927, + [6969] = 6922, + [6970] = 6938, + [6971] = 6922, + [6972] = 2111, + [6973] = 6960, + [6974] = 6922, + [6975] = 2112, + [6976] = 6922, + [6977] = 6934, [6978] = 6978, - [6979] = 6934, - [6980] = 6935, - [6981] = 6938, - [6982] = 6941, - [6983] = 6932, - [6984] = 6943, - [6985] = 6928, - [6986] = 6986, - [6987] = 6930, - [6988] = 6930, - [6989] = 6931, - [6990] = 6944, - [6991] = 6978, - [6992] = 6937, - [6993] = 6939, - [6994] = 6944, - [6995] = 6934, - [6996] = 6932, - [6997] = 6986, - [6998] = 6947, - [6999] = 6935, - [7000] = 2247, - [7001] = 6947, - [7002] = 6948, - [7003] = 6948, - [7004] = 6950, - [7005] = 6977, - [7006] = 6944, - [7007] = 6935, - [7008] = 6938, - [7009] = 6943, - [7010] = 6928, - [7011] = 6930, - [7012] = 3804, + [6979] = 6937, + [6980] = 2106, + [6981] = 6922, + [6982] = 6982, + [6983] = 6922, + [6984] = 6984, + [6985] = 6922, + [6986] = 6922, + [6987] = 6922, + [6988] = 6924, + [6989] = 6922, + [6990] = 6922, + [6991] = 6922, + [6992] = 6934, + [6993] = 6935, + [6994] = 2074, + [6995] = 6933, + [6996] = 6938, + [6997] = 6931, + [6998] = 6936, + [6999] = 3808, + [7000] = 6932, + [7001] = 6924, + [7002] = 6978, + [7003] = 6921, + [7004] = 6960, + [7005] = 7005, + [7006] = 6926, + [7007] = 2101, + [7008] = 3788, + [7009] = 6923, + [7010] = 6927, + [7011] = 3788, + [7012] = 6928, [7013] = 6937, [7014] = 7014, - [7015] = 6939, - [7016] = 6944, - [7017] = 7017, + [7015] = 6931, + [7016] = 6922, + [7017] = 6932, [7018] = 7018, - [7019] = 4580, - [7020] = 6947, - [7021] = 6948, - [7022] = 3781, - [7023] = 6950, - [7024] = 6961, - [7025] = 6942, - [7026] = 6938, - [7027] = 6943, - [7028] = 2077, - [7029] = 6928, - [7030] = 6930, - [7031] = 6937, - [7032] = 2247, - [7033] = 6939, - [7034] = 7034, - [7035] = 6944, - [7036] = 6950, - [7037] = 6950, - [7038] = 6947, - [7039] = 6948, - [7040] = 7040, - [7041] = 6950, - [7042] = 6934, - [7043] = 6943, - [7044] = 6928, - [7045] = 6935, - [7046] = 6930, - [7047] = 6938, - [7048] = 6944, - [7049] = 6941, - [7050] = 6947, - [7051] = 6943, - [7052] = 6948, - [7053] = 6928, - [7054] = 6961, - [7055] = 6944, - [7056] = 7056, - [7057] = 6947, - [7058] = 6929, - [7059] = 6944, - [7060] = 6947, - [7061] = 6944, - [7062] = 6947, - [7063] = 6944, - [7064] = 6947, - [7065] = 6930, - [7066] = 6947, - [7067] = 6931, - [7068] = 6947, - [7069] = 6947, - [7070] = 6947, - [7071] = 6947, - [7072] = 7072, - [7073] = 6947, - [7074] = 6947, - [7075] = 6943, - [7076] = 6947, - [7077] = 7077, - [7078] = 7077, - [7079] = 6938, - [7080] = 6937, - [7081] = 6947, - [7082] = 6939, - [7083] = 2108, - [7084] = 6977, + [7019] = 6926, + [7020] = 7020, + [7021] = 6934, + [7022] = 6924, + [7023] = 6933, + [7024] = 7024, + [7025] = 2079, + [7026] = 7014, + [7027] = 6933, + [7028] = 6935, + [7029] = 7014, + [7030] = 6923, + [7031] = 2100, + [7032] = 2102, + [7033] = 6938, + [7034] = 6921, + [7035] = 6935, + [7036] = 7036, + [7037] = 6959, + [7038] = 6982, + [7039] = 2149, + [7040] = 2153, + [7041] = 2284, + [7042] = 6959, + [7043] = 7043, + [7044] = 2197, + [7045] = 7045, + [7046] = 2198, + [7047] = 6936, + [7048] = 7048, + [7049] = 7020, + [7050] = 6926, + [7051] = 6933, + [7052] = 7020, + [7053] = 6933, + [7054] = 2204, + [7055] = 2205, + [7056] = 7014, + [7057] = 7057, + [7058] = 6936, + [7059] = 4590, + [7060] = 6934, + [7061] = 4546, + [7062] = 2222, + [7063] = 2225, + [7064] = 2230, + [7065] = 2233, + [7066] = 2175, + [7067] = 6978, + [7068] = 2178, + [7069] = 6926, + [7070] = 7070, + [7071] = 2187, + [7072] = 2190, + [7073] = 6927, + [7074] = 6984, + [7075] = 6928, + [7076] = 2271, + [7077] = 6982, + [7078] = 6923, + [7079] = 2048, + [7080] = 6984, + [7081] = 7048, + [7082] = 2110, + [7083] = 6927, + [7084] = 2271, [7085] = 7085, - [7086] = 2006, - [7087] = 6941, - [7088] = 2121, - [7089] = 2075, - [7090] = 7090, - [7091] = 6944, - [7092] = 3781, - [7093] = 6931, - [7094] = 7094, - [7095] = 6961, - [7096] = 6977, - [7097] = 6937, - [7098] = 7077, - [7099] = 7099, - [7100] = 6948, - [7101] = 6943, - [7102] = 6928, - [7103] = 6977, - [7104] = 6939, - [7105] = 6929, - [7106] = 6960, - [7107] = 6947, - [7108] = 2126, - [7109] = 2102, - [7110] = 6978, - [7111] = 6932, - [7112] = 6986, - [7113] = 6948, - [7114] = 6944, - [7115] = 6986, - [7116] = 6961, - [7117] = 6977, - [7118] = 7077, - [7119] = 7077, - [7120] = 6947, - [7121] = 2170, - [7122] = 2147, - [7123] = 2268, - [7124] = 2208, - [7125] = 6977, - [7126] = 2209, - [7127] = 6948, - [7128] = 2175, - [7129] = 2239, - [7130] = 2247, - [7131] = 6942, - [7132] = 6950, - [7133] = 4551, - [7134] = 7077, - [7135] = 2213, - [7136] = 2214, - [7137] = 2215, - [7138] = 2216, - [7139] = 2217, - [7140] = 6934, - [7141] = 2218, - [7142] = 6935, - [7143] = 2219, - [7144] = 6938, - [7145] = 2220, - [7146] = 6941, - [7147] = 4580, - [7148] = 2053, - [7149] = 6937, - [7150] = 2247, - [7151] = 6943, - [7152] = 6928, - [7153] = 6929, - [7154] = 6930, - [7155] = 6931, - [7156] = 7156, - [7157] = 7157, - [7158] = 6978, - [7159] = 6942, - [7160] = 6937, - [7161] = 7077, - [7162] = 6939, - [7163] = 6960, - [7164] = 6978, + [7086] = 6922, + [7087] = 7087, + [7088] = 7088, + [7089] = 6928, + [7090] = 6937, + [7091] = 6935, + [7092] = 6959, + [7093] = 6924, + [7094] = 6936, + [7095] = 6937, + [7096] = 6921, + [7097] = 6931, + [7098] = 7098, + [7099] = 6982, + [7100] = 6926, + [7101] = 6984, + [7102] = 7102, + [7103] = 6932, + [7104] = 6923, + [7105] = 6927, + [7106] = 6928, + [7107] = 6937, + [7108] = 6960, + [7109] = 6931, + [7110] = 6932, + [7111] = 6936, + [7112] = 6923, + [7113] = 6934, + [7114] = 6938, + [7115] = 2271, + [7116] = 6935, + [7117] = 3808, + [7118] = 6934, + [7119] = 6936, + [7120] = 6938, + [7121] = 7048, + [7122] = 7014, + [7123] = 4546, + [7124] = 6978, + [7125] = 6924, + [7126] = 7126, + [7127] = 7048, + [7128] = 7020, + [7129] = 6934, + [7130] = 6959, + [7131] = 6982, + [7132] = 7132, + [7133] = 6938, + [7134] = 6984, + [7135] = 7135, + [7136] = 6927, + [7137] = 6933, + [7138] = 7138, + [7139] = 6935, + [7140] = 6938, + [7141] = 6922, + [7142] = 6922, + [7143] = 6921, + [7144] = 6924, + [7145] = 7020, + [7146] = 7146, + [7147] = 6924, + [7148] = 6931, + [7149] = 2001, + [7150] = 6926, + [7151] = 6928, + [7152] = 6936, + [7153] = 6936, + [7154] = 6978, + [7155] = 7020, + [7156] = 6935, + [7157] = 6935, + [7158] = 6927, + [7159] = 6928, + [7160] = 6931, + [7161] = 6932, + [7162] = 6922, + [7163] = 7014, + [7164] = 6934, [7165] = 6932, - [7166] = 6986, - [7167] = 6944, - [7168] = 6961, - [7169] = 6927, - [7170] = 7170, - [7171] = 4551, - [7172] = 6961, - [7173] = 6950, - [7174] = 6947, - [7175] = 3814, - [7176] = 7176, - [7177] = 6948, - [7178] = 7178, - [7179] = 3804, - [7180] = 6942, - [7181] = 7181, - [7182] = 6939, - [7183] = 6950, - [7184] = 6927, - [7185] = 6934, - [7186] = 6927, - [7187] = 6927, - [7188] = 6927, - [7189] = 6927, - [7190] = 6935, - [7191] = 6927, - [7192] = 6938, - [7193] = 6941, - [7194] = 6947, - [7195] = 3907, - [7196] = 7196, - [7197] = 7197, - [7198] = 7198, - [7199] = 3849, - [7200] = 7198, - [7201] = 7196, - [7202] = 7197, - [7203] = 7198, - [7204] = 7197, + [7166] = 7166, + [7167] = 7167, + [7168] = 6935, + [7169] = 6924, + [7170] = 7020, + [7171] = 6936, + [7172] = 7014, + [7173] = 6938, + [7174] = 7048, + [7175] = 6921, + [7176] = 2271, + [7177] = 4590, + [7178] = 6960, + [7179] = 6926, + [7180] = 7087, + [7181] = 6922, + [7182] = 7087, + [7183] = 7087, + [7184] = 7087, + [7185] = 7087, + [7186] = 7087, + [7187] = 7087, + [7188] = 6938, + [7189] = 7189, + [7190] = 3880, + [7191] = 3917, + [7192] = 3899, + [7193] = 3917, + [7194] = 3926, + [7195] = 3886, + [7196] = 3927, + [7197] = 3911, + [7198] = 2045, + [7199] = 3886, + [7200] = 3927, + [7201] = 3879, + [7202] = 3937, + [7203] = 7203, + [7204] = 7204, [7205] = 7205, - [7206] = 3910, - [7207] = 3944, - [7208] = 3828, - [7209] = 3937, - [7210] = 2291, - [7211] = 2112, - [7212] = 3857, - [7213] = 7196, - [7214] = 7197, - [7215] = 7198, - [7216] = 3841, - [7217] = 3939, - [7218] = 7205, - [7219] = 3950, - [7220] = 3951, - [7221] = 7196, - [7222] = 7197, - [7223] = 2121, - [7224] = 7198, - [7225] = 2073, - [7226] = 2105, - [7227] = 3951, - [7228] = 3854, - [7229] = 3869, - [7230] = 3840, - [7231] = 3849, - [7232] = 7196, - [7233] = 7196, - [7234] = 7196, - [7235] = 7197, - [7236] = 7197, - [7237] = 7237, - [7238] = 7238, - [7239] = 7239, - [7240] = 7198, - [7241] = 7241, - [7242] = 7198, + [7206] = 2110, + [7207] = 3926, + [7208] = 2117, + [7209] = 3938, + [7210] = 7210, + [7211] = 3939, + [7212] = 7203, + [7213] = 7204, + [7214] = 7205, + [7215] = 3873, + [7216] = 3882, + [7217] = 2295, + [7218] = 7203, + [7219] = 7204, + [7220] = 7205, + [7221] = 3904, + [7222] = 7222, + [7223] = 2271, + [7224] = 7203, + [7225] = 7204, + [7226] = 7205, + [7227] = 3828, + [7228] = 3829, + [7229] = 3873, + [7230] = 3882, + [7231] = 2111, + [7232] = 3827, + [7233] = 3828, + [7234] = 3829, + [7235] = 3885, + [7236] = 7203, + [7237] = 7204, + [7238] = 7205, + [7239] = 2102, + [7240] = 3904, + [7241] = 3937, + [7242] = 3833, [7243] = 7243, - [7244] = 7244, - [7245] = 7245, - [7246] = 7246, - [7247] = 3827, - [7248] = 2102, - [7249] = 3944, - [7250] = 3933, - [7251] = 3878, - [7252] = 3875, - [7253] = 3833, - [7254] = 3882, - [7255] = 7255, - [7256] = 3887, - [7257] = 2126, - [7258] = 7196, - [7259] = 3833, - [7260] = 2049, - [7261] = 7237, - [7262] = 7238, - [7263] = 7239, - [7264] = 7243, - [7265] = 7244, - [7266] = 7245, - [7267] = 3837, - [7268] = 7197, - [7269] = 3889, - [7270] = 3866, - [7271] = 7198, - [7272] = 2101, - [7273] = 3827, - [7274] = 2317, - [7275] = 7205, - [7276] = 7237, - [7277] = 7238, - [7278] = 7239, - [7279] = 3837, - [7280] = 3913, - [7281] = 7244, - [7282] = 7245, - [7283] = 7198, - [7284] = 3876, - [7285] = 7196, - [7286] = 7197, - [7287] = 3890, - [7288] = 7198, - [7289] = 3828, - [7290] = 3898, - [7291] = 2318, - [7292] = 7237, - [7293] = 7238, - [7294] = 7239, - [7295] = 7243, - [7296] = 7244, - [7297] = 7245, - [7298] = 3899, - [7299] = 3878, - [7300] = 3882, - [7301] = 3906, - [7302] = 3847, - [7303] = 3898, - [7304] = 7237, - [7305] = 7238, - [7306] = 7239, - [7307] = 7243, - [7308] = 7244, - [7309] = 7245, - [7310] = 7243, - [7311] = 7246, - [7312] = 7244, - [7313] = 7245, - [7314] = 7255, - [7315] = 7196, - [7316] = 7197, - [7317] = 7237, - [7318] = 7238, - [7319] = 7239, - [7320] = 7243, - [7321] = 7244, - [7322] = 7245, - [7323] = 7198, - [7324] = 3903, - [7325] = 3847, - [7326] = 2049, - [7327] = 3933, - [7328] = 7196, - [7329] = 7197, - [7330] = 7246, - [7331] = 3943, - [7332] = 7198, - [7333] = 2309, - [7334] = 3943, - [7335] = 3907, - [7336] = 3908, - [7337] = 3912, - [7338] = 3913, - [7339] = 7339, - [7340] = 3950, - [7341] = 3854, - [7342] = 3866, - [7343] = 3864, - [7344] = 3876, - [7345] = 3881, - [7346] = 3890, - [7347] = 3859, - [7348] = 2075, - [7349] = 7255, - [7350] = 2247, - [7351] = 3845, - [7352] = 3864, - [7353] = 7196, - [7354] = 7197, - [7355] = 7198, - [7356] = 3881, - [7357] = 2247, - [7358] = 2309, - [7359] = 7196, - [7360] = 3937, - [7361] = 3845, - [7362] = 7197, - [7363] = 7196, - [7364] = 7197, - [7365] = 3857, - [7366] = 7198, - [7367] = 3869, - [7368] = 3906, - [7369] = 3859, - [7370] = 7196, - [7371] = 7197, - [7372] = 3908, - [7373] = 3887, - [7374] = 7196, - [7375] = 7197, - [7376] = 2291, - [7377] = 7198, - [7378] = 7198, - [7379] = 3889, - [7380] = 3899, - [7381] = 7196, - [7382] = 7197, - [7383] = 7198, - [7384] = 7237, - [7385] = 7238, - [7386] = 7239, - [7387] = 3903, - [7388] = 2103, - [7389] = 3939, - [7390] = 3910, - [7391] = 3840, - [7392] = 7196, - [7393] = 7197, - [7394] = 7198, - [7395] = 3875, - [7396] = 3912, - [7397] = 3841, - [7398] = 7243, - [7399] = 7399, - [7400] = 7400, - [7401] = 7400, - [7402] = 7402, - [7403] = 7400, - [7404] = 7400, - [7405] = 7405, - [7406] = 7399, - [7407] = 7400, - [7408] = 7400, - [7409] = 7399, - [7410] = 7410, - [7411] = 7402, - [7412] = 7399, - [7413] = 7400, - [7414] = 7410, - [7415] = 7400, - [7416] = 2077, - [7417] = 7400, - [7418] = 7399, - [7419] = 7419, - [7420] = 7399, - [7421] = 7400, - [7422] = 7400, - [7423] = 7410, - [7424] = 7410, - [7425] = 7405, - [7426] = 7400, - [7427] = 7410, - [7428] = 7428, - [7429] = 7429, - [7430] = 7400, - [7431] = 7400, - [7432] = 7402, - [7433] = 7429, - [7434] = 7434, - [7435] = 7410, - [7436] = 7400, - [7437] = 7400, - [7438] = 7402, - [7439] = 7402, - [7440] = 2087, - [7441] = 7419, - [7442] = 7419, - [7443] = 7402, - [7444] = 7400, - [7445] = 7410, - [7446] = 7446, - [7447] = 7405, - [7448] = 7399, - [7449] = 7399, - [7450] = 7399, - [7451] = 7400, - [7452] = 2247, - [7453] = 2126, - [7454] = 7410, - [7455] = 7399, - [7456] = 7402, - [7457] = 7402, - [7458] = 7410, - [7459] = 7434, - [7460] = 2112, - [7461] = 7410, - [7462] = 7410, - [7463] = 7410, - [7464] = 7402, - [7465] = 7400, - [7466] = 7399, - [7467] = 2102, - [7468] = 7405, - [7469] = 2247, - [7470] = 7400, - [7471] = 2247, - [7472] = 7399, - [7473] = 7400, - [7474] = 7400, - [7475] = 7399, - [7476] = 7405, - [7477] = 7405, - [7478] = 7399, - [7479] = 7400, - [7480] = 7399, - [7481] = 2049, - [7482] = 7399, - [7483] = 7400, - [7484] = 7484, - [7485] = 7410, - [7486] = 7402, - [7487] = 7405, - [7488] = 7405, - [7489] = 7400, - [7490] = 7400, - [7491] = 7410, - [7492] = 7399, - [7493] = 7410, - [7494] = 7410, - [7495] = 7405, - [7496] = 7400, - [7497] = 7428, - [7498] = 7405, - [7499] = 7400, - [7500] = 7400, - [7501] = 7405, - [7502] = 7402, - [7503] = 7410, - [7504] = 7399, - [7505] = 2247, + [7244] = 7203, + [7245] = 7204, + [7246] = 7205, + [7247] = 2296, + [7248] = 7248, + [7249] = 7249, + [7250] = 7203, + [7251] = 7203, + [7252] = 7204, + [7253] = 7205, + [7254] = 3857, + [7255] = 3827, + [7256] = 7203, + [7257] = 7204, + [7258] = 7205, + [7259] = 3858, + [7260] = 7203, + [7261] = 7204, + [7262] = 7205, + [7263] = 7204, + [7264] = 7203, + [7265] = 7204, + [7266] = 7205, + [7267] = 7205, + [7268] = 3863, + [7269] = 3864, + [7270] = 7203, + [7271] = 7204, + [7272] = 7205, + [7273] = 3938, + [7274] = 7274, + [7275] = 3939, + [7276] = 3833, + [7277] = 3871, + [7278] = 3872, + [7279] = 3877, + [7280] = 2073, + [7281] = 7203, + [7282] = 7204, + [7283] = 7205, + [7284] = 3841, + [7285] = 7285, + [7286] = 3845, + [7287] = 3895, + [7288] = 3856, + [7289] = 3857, + [7290] = 3858, + [7291] = 7274, + [7292] = 3863, + [7293] = 3864, + [7294] = 7243, + [7295] = 7248, + [7296] = 7249, + [7297] = 3869, + [7298] = 3871, + [7299] = 7299, + [7300] = 7300, + [7301] = 7204, + [7302] = 3872, + [7303] = 3822, + [7304] = 3877, + [7305] = 3824, + [7306] = 7299, + [7307] = 7300, + [7308] = 7189, + [7309] = 3841, + [7310] = 3845, + [7311] = 3856, + [7312] = 7222, + [7313] = 7203, + [7314] = 7204, + [7315] = 7205, + [7316] = 3869, + [7317] = 3822, + [7318] = 3837, + [7319] = 2310, + [7320] = 7320, + [7321] = 3880, + [7322] = 3896, + [7323] = 7243, + [7324] = 7248, + [7325] = 7249, + [7326] = 7299, + [7327] = 7300, + [7328] = 7189, + [7329] = 3899, + [7330] = 7285, + [7331] = 2311, + [7332] = 2100, + [7333] = 2295, + [7334] = 3879, + [7335] = 2296, + [7336] = 7243, + [7337] = 7248, + [7338] = 7249, + [7339] = 7299, + [7340] = 7300, + [7341] = 7189, + [7342] = 7243, + [7343] = 7248, + [7344] = 7249, + [7345] = 7299, + [7346] = 7300, + [7347] = 7189, + [7348] = 7243, + [7349] = 7248, + [7350] = 7249, + [7351] = 7299, + [7352] = 7300, + [7353] = 2045, + [7354] = 7243, + [7355] = 7248, + [7356] = 7249, + [7357] = 7299, + [7358] = 7300, + [7359] = 7189, + [7360] = 7203, + [7361] = 7203, + [7362] = 7204, + [7363] = 7205, + [7364] = 2112, + [7365] = 7274, + [7366] = 3895, + [7367] = 3866, + [7368] = 3867, + [7369] = 2271, + [7370] = 7222, + [7371] = 2074, + [7372] = 7285, + [7373] = 7203, + [7374] = 7204, + [7375] = 7205, + [7376] = 3896, + [7377] = 7204, + [7378] = 3837, + [7379] = 7205, + [7380] = 3878, + [7381] = 3911, + [7382] = 3866, + [7383] = 7205, + [7384] = 3883, + [7385] = 3867, + [7386] = 3878, + [7387] = 3824, + [7388] = 3885, + [7389] = 2101, + [7390] = 3883, + [7391] = 7203, + [7392] = 7189, + [7393] = 7393, + [7394] = 7394, + [7395] = 7395, + [7396] = 7394, + [7397] = 7394, + [7398] = 2088, + [7399] = 7394, + [7400] = 2045, + [7401] = 7401, + [7402] = 7394, + [7403] = 7395, + [7404] = 2100, + [7405] = 7393, + [7406] = 7394, + [7407] = 7407, + [7408] = 7407, + [7409] = 7394, + [7410] = 7394, + [7411] = 7401, + [7412] = 7393, + [7413] = 7394, + [7414] = 7407, + [7415] = 7395, + [7416] = 7394, + [7417] = 7407, + [7418] = 7395, + [7419] = 7401, + [7420] = 7401, + [7421] = 7421, + [7422] = 7394, + [7423] = 2102, + [7424] = 7401, + [7425] = 7407, + [7426] = 7394, + [7427] = 7401, + [7428] = 7394, + [7429] = 2079, + [7430] = 7394, + [7431] = 7394, + [7432] = 7394, + [7433] = 7433, + [7434] = 7393, + [7435] = 7407, + [7436] = 7394, + [7437] = 7395, + [7438] = 7394, + [7439] = 7401, + [7440] = 7394, + [7441] = 7407, + [7442] = 7395, + [7443] = 7443, + [7444] = 2117, + [7445] = 7394, + [7446] = 7395, + [7447] = 7393, + [7448] = 7448, + [7449] = 7394, + [7450] = 7395, + [7451] = 7407, + [7452] = 7394, + [7453] = 7395, + [7454] = 7407, + [7455] = 7455, + [7456] = 7456, + [7457] = 7407, + [7458] = 7394, + [7459] = 7395, + [7460] = 2271, + [7461] = 7394, + [7462] = 7407, + [7463] = 7394, + [7464] = 7393, + [7465] = 2271, + [7466] = 7394, + [7467] = 7443, + [7468] = 2271, + [7469] = 7448, + [7470] = 7395, + [7471] = 7407, + [7472] = 7393, + [7473] = 7401, + [7474] = 7393, + [7475] = 2271, + [7476] = 7401, + [7477] = 7407, + [7478] = 7395, + [7479] = 7401, + [7480] = 7455, + [7481] = 7395, + [7482] = 7394, + [7483] = 7455, + [7484] = 7393, + [7485] = 7407, + [7486] = 7394, + [7487] = 7407, + [7488] = 7393, + [7489] = 7407, + [7490] = 7401, + [7491] = 7407, + [7492] = 7394, + [7493] = 7395, + [7494] = 7395, + [7495] = 7395, + [7496] = 7393, + [7497] = 7407, + [7498] = 7395, + [7499] = 7433, + [7500] = 2100, + [7501] = 7501, + [7502] = 7502, + [7503] = 2101, + [7504] = 7504, + [7505] = 2124, [7506] = 7506, [7507] = 7507, - [7508] = 2121, - [7509] = 2291, - [7510] = 7510, - [7511] = 2047, + [7508] = 7508, + [7509] = 7508, + [7510] = 2296, + [7511] = 2295, [7512] = 7512, - [7513] = 2045, - [7514] = 2309, - [7515] = 7515, - [7516] = 7506, - [7517] = 2103, - [7518] = 2101, - [7519] = 7519, - [7520] = 2309, - [7521] = 7521, - [7522] = 2309, - [7523] = 2291, - [7524] = 7524, - [7525] = 7506, - [7526] = 7526, - [7527] = 7507, - [7528] = 7519, - [7529] = 7510, - [7530] = 7530, - [7531] = 2291, - [7532] = 2119, - [7533] = 2247, - [7534] = 2118, - [7535] = 4756, - [7536] = 2247, - [7537] = 2126, - [7538] = 2102, + [7513] = 2118, + [7514] = 2271, + [7515] = 7501, + [7516] = 2271, + [7517] = 2102, + [7518] = 7506, + [7519] = 7506, + [7520] = 7501, + [7521] = 7502, + [7522] = 7504, + [7523] = 7507, + [7524] = 2044, + [7525] = 7525, + [7526] = 7508, + [7527] = 2111, + [7528] = 7504, + [7529] = 7506, + [7530] = 7501, + [7531] = 7502, + [7532] = 7504, + [7533] = 7507, + [7534] = 7508, + [7535] = 7506, + [7536] = 7502, + [7537] = 7507, + [7538] = 7508, [7539] = 7506, - [7540] = 4278, - [7541] = 7526, + [7540] = 2295, + [7541] = 7502, [7542] = 7507, - [7543] = 7519, - [7544] = 7510, - [7545] = 7530, - [7546] = 7506, - [7547] = 7526, + [7543] = 7543, + [7544] = 7502, + [7545] = 7506, + [7546] = 2296, + [7547] = 7502, [7548] = 7507, - [7549] = 7519, - [7550] = 7510, - [7551] = 7530, - [7552] = 7506, - [7553] = 7507, - [7554] = 7510, - [7555] = 7530, - [7556] = 7507, - [7557] = 7510, - [7558] = 2105, - [7559] = 7506, - [7560] = 7507, - [7561] = 7510, - [7562] = 7506, - [7563] = 7526, - [7564] = 2309, - [7565] = 2291, - [7566] = 7530, - [7567] = 7530, - [7568] = 2101, - [7569] = 2309, - [7570] = 2129, - [7571] = 2158, - [7572] = 2136, - [7573] = 2247, - [7574] = 2139, - [7575] = 2140, - [7576] = 2144, - [7577] = 2151, - [7578] = 2291, - [7579] = 2103, - [7580] = 2161, - [7581] = 2165, - [7582] = 2317, - [7583] = 2291, - [7584] = 2137, - [7585] = 2102, - [7586] = 2317, - [7587] = 2247, - [7588] = 2247, - [7589] = 2112, - [7590] = 2317, - [7591] = 2318, - [7592] = 2169, - [7593] = 2121, - [7594] = 2171, - [7595] = 2172, - [7596] = 2247, - [7597] = 2078, - [7598] = 2126, - [7599] = 2134, - [7600] = 2105, - [7601] = 2318, - [7602] = 2071, - [7603] = 2108, - [7604] = 2309, - [7605] = 2318, - [7606] = 2076, - [7607] = 2238, - [7608] = 2194, - [7609] = 2195, - [7610] = 2190, - [7611] = 2199, - [7612] = 2201, - [7613] = 2204, - [7614] = 2205, - [7615] = 2309, - [7616] = 2291, - [7617] = 2197, - [7618] = 2198, - [7619] = 2235, - [7620] = 2236, - [7621] = 2063, - [7622] = 2200, - [7623] = 2176, - [7624] = 2184, - [7625] = 2221, - [7626] = 2226, - [7627] = 2237, - [7628] = 2178, - [7629] = 2192, - [7630] = 2181, - [7631] = 2183, - [7632] = 2186, - [7633] = 2191, + [7549] = 7506, + [7550] = 2112, + [7551] = 2295, + [7552] = 2110, + [7553] = 2296, + [7554] = 4681, + [7555] = 7555, + [7556] = 2046, + [7557] = 4277, + [7558] = 7507, + [7559] = 2295, + [7560] = 2296, + [7561] = 7508, + [7562] = 2111, + [7563] = 2166, + [7564] = 2117, + [7565] = 2310, + [7566] = 2168, + [7567] = 2146, + [7568] = 2156, + [7569] = 2100, + [7570] = 2157, + [7571] = 2069, + [7572] = 2101, + [7573] = 2067, + [7574] = 2159, + [7575] = 2160, + [7576] = 2271, + [7577] = 2295, + [7578] = 2165, + [7579] = 2070, + [7580] = 2310, + [7581] = 2310, + [7582] = 2311, + [7583] = 2152, + [7584] = 2151, + [7585] = 2161, + [7586] = 2271, + [7587] = 2271, + [7588] = 2311, + [7589] = 2295, + [7590] = 2296, + [7591] = 2102, + [7592] = 2271, + [7593] = 2110, + [7594] = 2296, + [7595] = 2162, + [7596] = 2112, + [7597] = 2148, + [7598] = 2163, + [7599] = 2106, + [7600] = 2311, + [7601] = 2296, + [7602] = 2184, + [7603] = 2200, + [7604] = 2201, + [7605] = 2202, + [7606] = 2203, + [7607] = 2229, + [7608] = 2224, + [7609] = 2185, + [7610] = 2231, + [7611] = 2232, + [7612] = 2186, + [7613] = 2236, + [7614] = 2207, + [7615] = 2234, + [7616] = 2235, + [7617] = 2192, + [7618] = 2194, + [7619] = 2295, + [7620] = 2296, + [7621] = 2208, + [7622] = 2209, + [7623] = 2193, + [7624] = 2183, + [7625] = 2179, + [7626] = 2271, + [7627] = 2213, + [7628] = 2214, + [7629] = 2295, + [7630] = 2295, + [7631] = 2296, + [7632] = 2182, + [7633] = 2215, [7634] = 2227, - [7635] = 2228, - [7636] = 2185, - [7637] = 2230, - [7638] = 2232, - [7639] = 2233, - [7640] = 2234, - [7641] = 2202, - [7642] = 2309, - [7643] = 2291, - [7644] = 2291, - [7645] = 2177, - [7646] = 2196, - [7647] = 2225, - [7648] = 2229, - [7649] = 2247, - [7650] = 2189, - [7651] = 2193, - [7652] = 2309, - [7653] = 2291, - [7654] = 2309, - [7655] = 2222, - [7656] = 2537, - [7657] = 2529, - [7658] = 2309, - [7659] = 2119, - [7660] = 2118, - [7661] = 2537, - [7662] = 2309, - [7663] = 2291, - [7664] = 2541, - [7665] = 2529, - [7666] = 2291, - [7667] = 2541, - [7668] = 2219, - [7669] = 2071, - [7670] = 7670, - [7671] = 2216, - [7672] = 2309, - [7673] = 2291, - [7674] = 7670, - [7675] = 2291, - [7676] = 2217, - [7677] = 2309, - [7678] = 7670, - [7679] = 7670, - [7680] = 2291, - [7681] = 2309, - [7682] = 2208, - [7683] = 7670, - [7684] = 7670, - [7685] = 7670, - [7686] = 2209, - [7687] = 2213, - [7688] = 2309, - [7689] = 2214, - [7690] = 2175, - [7691] = 2239, - [7692] = 2218, - [7693] = 2073, - [7694] = 2162, - [7695] = 7670, - [7696] = 7670, - [7697] = 2215, - [7698] = 2291, - [7699] = 2220, - [7700] = 2076, - [7701] = 2291, - [7702] = 2537, - [7703] = 2529, - [7704] = 2541, - [7705] = 2541, - [7706] = 2541, - [7707] = 7707, - [7708] = 2171, - [7709] = 2172, - [7710] = 2134, - [7711] = 2137, - [7712] = 2129, - [7713] = 2158, - [7714] = 2136, - [7715] = 7715, - [7716] = 2087, - [7717] = 2140, - [7718] = 2144, - [7719] = 2161, - [7720] = 2165, - [7721] = 2309, - [7722] = 7722, - [7723] = 2537, - [7724] = 2537, - [7725] = 7725, - [7726] = 2529, - [7727] = 2537, - [7728] = 2529, - [7729] = 2529, - [7730] = 2323, - [7731] = 2541, - [7732] = 2139, - [7733] = 2537, - [7734] = 2541, - [7735] = 2541, - [7736] = 2529, - [7737] = 2529, - [7738] = 2537, - [7739] = 3674, - [7740] = 7740, - [7741] = 7741, - [7742] = 7741, - [7743] = 2541, - [7744] = 2268, - [7745] = 7741, - [7746] = 7746, - [7747] = 7741, - [7748] = 7741, - [7749] = 7741, - [7750] = 7741, - [7751] = 7746, - [7752] = 7740, - [7753] = 7740, - [7754] = 2529, - [7755] = 7746, - [7756] = 7741, - [7757] = 7740, - [7758] = 2541, - [7759] = 2537, - [7760] = 7746, - [7761] = 7741, - [7762] = 7746, - [7763] = 7740, - [7764] = 7740, - [7765] = 2529, - [7766] = 7746, - [7767] = 2537, - [7768] = 7746, - [7769] = 7741, - [7770] = 2537, - [7771] = 7741, - [7772] = 7746, - [7773] = 7746, - [7774] = 7740, - [7775] = 7740, - [7776] = 2541, - [7777] = 7777, - [7778] = 7741, - [7779] = 7777, - [7780] = 7741, - [7781] = 7741, - [7782] = 7740, - [7783] = 7746, - [7784] = 7777, - [7785] = 7746, - [7786] = 7741, - [7787] = 7740, - [7788] = 7740, - [7789] = 2162, - [7790] = 7746, - [7791] = 7740, - [7792] = 7746, - [7793] = 2529, - [7794] = 2537, - [7795] = 7746, - [7796] = 7740, - [7797] = 7746, - [7798] = 7746, - [7799] = 2529, - [7800] = 2541, - [7801] = 7741, - [7802] = 7740, - [7803] = 7740, - [7804] = 7740, - [7805] = 7805, - [7806] = 7806, + [7635] = 2195, + [7636] = 2295, + [7637] = 2296, + [7638] = 2217, + [7639] = 2172, + [7640] = 2173, + [7641] = 2218, + [7642] = 2219, + [7643] = 2196, + [7644] = 2170, + [7645] = 2223, + [7646] = 2055, + [7647] = 2180, + [7648] = 2228, + [7649] = 2210, + [7650] = 2124, + [7651] = 2118, + [7652] = 2536, + [7653] = 2544, + [7654] = 2528, + [7655] = 2295, + [7656] = 2528, + [7657] = 2536, + [7658] = 2295, + [7659] = 2296, + [7660] = 2296, + [7661] = 2544, + [7662] = 2178, + [7663] = 2073, + [7664] = 7664, + [7665] = 2190, + [7666] = 2197, + [7667] = 7664, + [7668] = 2204, + [7669] = 2295, + [7670] = 2296, + [7671] = 7664, + [7672] = 2127, + [7673] = 2295, + [7674] = 2222, + [7675] = 2225, + [7676] = 2230, + [7677] = 2233, + [7678] = 2175, + [7679] = 2070, + [7680] = 2205, + [7681] = 2187, + [7682] = 2069, + [7683] = 2296, + [7684] = 2296, + [7685] = 7664, + [7686] = 2198, + [7687] = 7664, + [7688] = 7664, + [7689] = 2295, + [7690] = 7664, + [7691] = 7664, + [7692] = 2296, + [7693] = 7664, + [7694] = 2295, + [7695] = 7695, + [7696] = 2161, + [7697] = 2162, + [7698] = 2163, + [7699] = 2528, + [7700] = 2165, + [7701] = 2168, + [7702] = 2146, + [7703] = 2536, + [7704] = 2544, + [7705] = 2151, + [7706] = 2528, + [7707] = 2159, + [7708] = 2544, + [7709] = 2152, + [7710] = 2295, + [7711] = 7711, + [7712] = 7712, + [7713] = 2536, + [7714] = 2296, + [7715] = 2536, + [7716] = 2544, + [7717] = 2156, + [7718] = 2297, + [7719] = 2528, + [7720] = 2157, + [7721] = 2536, + [7722] = 2088, + [7723] = 7723, + [7724] = 2544, + [7725] = 2528, + [7726] = 2160, + [7727] = 2528, + [7728] = 2544, + [7729] = 2544, + [7730] = 2528, + [7731] = 2536, + [7732] = 2536, + [7733] = 7733, + [7734] = 7734, + [7735] = 7734, + [7736] = 7736, + [7737] = 7734, + [7738] = 7733, + [7739] = 7739, + [7740] = 7733, + [7741] = 7733, + [7742] = 7734, + [7743] = 7736, + [7744] = 7736, + [7745] = 7733, + [7746] = 7734, + [7747] = 7736, + [7748] = 7733, + [7749] = 2528, + [7750] = 2536, + [7751] = 7736, + [7752] = 7734, + [7753] = 7736, + [7754] = 2544, + [7755] = 7734, + [7756] = 7736, + [7757] = 7734, + [7758] = 7733, + [7759] = 7733, + [7760] = 2528, + [7761] = 2536, + [7762] = 7733, + [7763] = 2544, + [7764] = 7734, + [7765] = 7733, + [7766] = 7734, + [7767] = 7736, + [7768] = 7734, + [7769] = 7733, + [7770] = 7736, + [7771] = 7736, + [7772] = 7739, + [7773] = 7734, + [7774] = 7739, + [7775] = 2528, + [7776] = 7734, + [7777] = 7736, + [7778] = 7736, + [7779] = 7734, + [7780] = 2284, + [7781] = 2127, + [7782] = 7733, + [7783] = 2544, + [7784] = 2528, + [7785] = 7734, + [7786] = 7733, + [7787] = 7736, + [7788] = 7733, + [7789] = 7736, + [7790] = 2536, + [7791] = 2544, + [7792] = 7736, + [7793] = 7733, + [7794] = 2536, + [7795] = 7734, + [7796] = 7733, + [7797] = 3591, + [7798] = 7736, + [7799] = 7799, + [7800] = 7800, + [7801] = 7799, + [7802] = 7802, + [7803] = 7803, + [7804] = 7802, + [7805] = 7799, + [7806] = 7799, [7807] = 7807, - [7808] = 7805, - [7809] = 7809, - [7810] = 7810, - [7811] = 7805, - [7812] = 7809, - [7813] = 7805, - [7814] = 7809, - [7815] = 7810, - [7816] = 7805, - [7817] = 7809, - [7818] = 7806, - [7819] = 7807, - [7820] = 7805, - [7821] = 7821, - [7822] = 7809, - [7823] = 7806, - [7824] = 7805, - [7825] = 7809, + [7808] = 2528, + [7809] = 7800, + [7810] = 7803, + [7811] = 2536, + [7812] = 7802, + [7813] = 2544, + [7814] = 7800, + [7815] = 7800, + [7816] = 7802, + [7817] = 7799, + [7818] = 7799, + [7819] = 7802, + [7820] = 7820, + [7821] = 7803, + [7822] = 7800, + [7823] = 7802, + [7824] = 7799, + [7825] = 7803, [7826] = 7807, - [7827] = 7810, - [7828] = 7806, - [7829] = 7810, - [7830] = 7810, - [7831] = 7807, - [7832] = 3674, - [7833] = 2529, - [7834] = 7805, - [7835] = 7809, - [7836] = 7806, - [7837] = 7806, - [7838] = 7807, - [7839] = 7807, - [7840] = 2537, - [7841] = 7809, - [7842] = 2541, - [7843] = 7810, - [7844] = 7805, - [7845] = 7809, - [7846] = 7810, - [7847] = 2529, - [7848] = 2537, - [7849] = 2541, - [7850] = 7810, - [7851] = 7810, - [7852] = 7806, - [7853] = 7807, - [7854] = 7810, - [7855] = 7805, - [7856] = 7809, - [7857] = 7805, - [7858] = 7821, - [7859] = 7806, - [7860] = 7807, - [7861] = 7806, - [7862] = 7807, - [7863] = 7821, - [7864] = 7821, - [7865] = 7806, - [7866] = 7821, - [7867] = 7806, - [7868] = 7807, - [7869] = 7806, - [7870] = 7807, - [7871] = 7807, - [7872] = 7805, - [7873] = 7809, - [7874] = 7805, - [7875] = 7810, - [7876] = 7809, - [7877] = 7810, - [7878] = 7806, - [7879] = 7807, - [7880] = 7805, - [7881] = 7810, - [7882] = 7805, - [7883] = 7809, - [7884] = 7810, - [7885] = 7806, - [7886] = 7807, - [7887] = 7805, - [7888] = 7809, - [7889] = 7810, - [7890] = 7809, - [7891] = 7806, - [7892] = 7807, - [7893] = 7806, - [7894] = 7807, - [7895] = 7806, - [7896] = 7809, - [7897] = 7807, - [7898] = 7805, - [7899] = 7809, - [7900] = 7810, - [7901] = 7901, - [7902] = 7806, - [7903] = 7807, - [7904] = 7805, - [7905] = 7809, - [7906] = 7810, - [7907] = 7810, - [7908] = 7908, - [7909] = 7909, + [7827] = 7802, + [7828] = 7820, + [7829] = 7820, + [7830] = 7800, + [7831] = 7803, + [7832] = 7799, + [7833] = 7807, + [7834] = 7807, + [7835] = 2544, + [7836] = 7820, + [7837] = 7820, + [7838] = 7803, + [7839] = 7800, + [7840] = 7800, + [7841] = 7800, + [7842] = 7803, + [7843] = 7820, + [7844] = 7820, + [7845] = 7802, + [7846] = 7803, + [7847] = 7799, + [7848] = 7820, + [7849] = 7803, + [7850] = 7803, + [7851] = 7802, + [7852] = 7803, + [7853] = 7799, + [7854] = 7802, + [7855] = 7800, + [7856] = 7807, + [7857] = 7802, + [7858] = 7820, + [7859] = 7802, + [7860] = 7799, + [7861] = 7802, + [7862] = 7799, + [7863] = 7820, + [7864] = 7799, + [7865] = 7803, + [7866] = 7820, + [7867] = 7820, + [7868] = 7800, + [7869] = 7803, + [7870] = 7802, + [7871] = 7803, + [7872] = 2536, + [7873] = 7802, + [7874] = 7799, + [7875] = 2528, + [7876] = 7820, + [7877] = 7820, + [7878] = 7878, + [7879] = 7800, + [7880] = 7800, + [7881] = 7802, + [7882] = 7799, + [7883] = 3591, + [7884] = 7802, + [7885] = 7799, + [7886] = 7800, + [7887] = 7803, + [7888] = 7800, + [7889] = 7820, + [7890] = 7820, + [7891] = 7800, + [7892] = 7803, + [7893] = 7802, + [7894] = 7799, + [7895] = 7803, + [7896] = 7820, + [7897] = 7800, + [7898] = 7803, + [7899] = 7799, + [7900] = 7820, + [7901] = 7800, + [7902] = 7902, + [7903] = 7902, + [7904] = 7902, + [7905] = 7905, + [7906] = 2536, + [7907] = 7907, + [7908] = 2528, + [7909] = 7902, [7910] = 7910, [7911] = 7910, - [7912] = 7909, - [7913] = 7908, - [7914] = 7908, - [7915] = 7908, - [7916] = 2529, - [7917] = 2541, - [7918] = 7909, - [7919] = 7909, - [7920] = 7909, - [7921] = 7909, - [7922] = 2541, - [7923] = 2903, - [7924] = 7909, - [7925] = 7909, - [7926] = 7909, + [7912] = 7910, + [7913] = 7910, + [7914] = 7902, + [7915] = 7902, + [7916] = 7907, + [7917] = 7907, + [7918] = 2536, + [7919] = 7902, + [7920] = 2536, + [7921] = 2536, + [7922] = 7902, + [7923] = 2943, + [7924] = 7907, + [7925] = 7907, + [7926] = 2544, [7927] = 7910, - [7928] = 7909, - [7929] = 2529, - [7930] = 7909, - [7931] = 7909, - [7932] = 7908, - [7933] = 2537, - [7934] = 7909, - [7935] = 2211, - [7936] = 2529, - [7937] = 7909, - [7938] = 2537, - [7939] = 2223, - [7940] = 7910, - [7941] = 7908, - [7942] = 7909, - [7943] = 7909, + [7928] = 7910, + [7929] = 2174, + [7930] = 7902, + [7931] = 2918, + [7932] = 2171, + [7933] = 2528, + [7934] = 7902, + [7935] = 2544, + [7936] = 7902, + [7937] = 7907, + [7938] = 7902, + [7939] = 7902, + [7940] = 7902, + [7941] = 7902, + [7942] = 7902, + [7943] = 7902, [7944] = 7910, - [7945] = 7908, - [7946] = 7908, - [7947] = 7909, - [7948] = 7910, - [7949] = 7909, - [7950] = 2902, - [7951] = 7908, - [7952] = 7908, - [7953] = 7908, - [7954] = 7909, - [7955] = 3170, - [7956] = 7909, + [7945] = 7902, + [7946] = 7910, + [7947] = 7907, + [7948] = 7902, + [7949] = 2544, + [7950] = 7902, + [7951] = 7907, + [7952] = 7907, + [7953] = 7910, + [7954] = 7910, + [7955] = 7907, + [7956] = 7910, [7957] = 7910, - [7958] = 7908, + [7958] = 7907, [7959] = 7910, - [7960] = 7910, - [7961] = 7910, - [7962] = 2541, - [7963] = 7909, - [7964] = 2529, - [7965] = 7909, - [7966] = 7909, - [7967] = 7908, - [7968] = 2537, - [7969] = 2537, - [7970] = 7970, - [7971] = 7909, - [7972] = 7909, - [7973] = 7910, - [7974] = 7910, - [7975] = 7909, - [7976] = 7909, + [7960] = 7902, + [7961] = 7902, + [7962] = 7902, + [7963] = 7907, + [7964] = 7902, + [7965] = 7902, + [7966] = 7966, + [7967] = 2528, + [7968] = 7907, + [7969] = 7910, + [7970] = 3152, + [7971] = 2528, + [7972] = 7910, + [7973] = 7907, + [7974] = 7902, + [7975] = 2544, + [7976] = 7907, [7977] = 7910, - [7978] = 7910, - [7979] = 7908, - [7980] = 7908, - [7981] = 7981, - [7982] = 7910, - [7983] = 7910, - [7984] = 7908, - [7985] = 2541, - [7986] = 7986, - [7987] = 3170, - [7988] = 7988, - [7989] = 2529, - [7990] = 7986, - [7991] = 2537, - [7992] = 7992, - [7993] = 7986, - [7994] = 2541, - [7995] = 7988, - [7996] = 7986, - [7997] = 7988, - [7998] = 7986, - [7999] = 3071, - [8000] = 2955, - [8001] = 8001, - [8002] = 8002, - [8003] = 2976, - [8004] = 3674, - [8005] = 3129, - [8006] = 3933, - [8007] = 8007, - [8008] = 8001, - [8009] = 8001, - [8010] = 8010, - [8011] = 8007, - [8012] = 8007, - [8013] = 3071, - [8014] = 8007, - [8015] = 3009, - [8016] = 2983, - [8017] = 3004, - [8018] = 3006, - [8019] = 8019, - [8020] = 3657, - [8021] = 8021, - [8022] = 2803, - [8023] = 3002, - [8024] = 8001, - [8025] = 288, - [8026] = 285, - [8027] = 8007, - [8028] = 8007, - [8029] = 8007, - [8030] = 8001, - [8031] = 3085, - [8032] = 2973, - [8033] = 3068, - [8034] = 3622, - [8035] = 3029, - [8036] = 3024, - [8037] = 3034, - [8038] = 2994, - [8039] = 8001, - [8040] = 3027, - [8041] = 8001, - [8042] = 8001, - [8043] = 3125, - [8044] = 8007, - [8045] = 8001, - [8046] = 2973, - [8047] = 8001, - [8048] = 8007, - [8049] = 3038, - [8050] = 2977, - [8051] = 2977, - [8052] = 8001, - [8053] = 8007, - [8054] = 2994, - [8055] = 8007, - [8056] = 3169, - [8057] = 3029, - [8058] = 2957, - [8059] = 2960, - [8060] = 8001, - [8061] = 3827, - [8062] = 8007, - [8063] = 3880, - [8064] = 8064, - [8065] = 8065, - [8066] = 3891, - [8067] = 3895, - [8068] = 3896, - [8069] = 3891, - [8070] = 3895, - [8071] = 3674, - [8072] = 3875, - [8073] = 3896, + [7978] = 7907, + [7979] = 7902, + [7980] = 7980, + [7981] = 3152, + [7982] = 7982, + [7983] = 7980, + [7984] = 7984, + [7985] = 7984, + [7986] = 7984, + [7987] = 7984, + [7988] = 7984, + [7989] = 7980, + [7990] = 2528, + [7991] = 2536, + [7992] = 2544, + [7993] = 3063, + [7994] = 7994, + [7995] = 3600, + [7996] = 2944, + [7997] = 3164, + [7998] = 7998, + [7999] = 3074, + [8000] = 7994, + [8001] = 3075, + [8002] = 7998, + [8003] = 3098, + [8004] = 3033, + [8005] = 7994, + [8006] = 7998, + [8007] = 7994, + [8008] = 8008, + [8009] = 3591, + [8010] = 7998, + [8011] = 3063, + [8012] = 7994, + [8013] = 2944, + [8014] = 7998, + [8015] = 7994, + [8016] = 7998, + [8017] = 7994, + [8018] = 7998, + [8019] = 3033, + [8020] = 7994, + [8021] = 2957, + [8022] = 3062, + [8023] = 3064, + [8024] = 7998, + [8025] = 3064, + [8026] = 7998, + [8027] = 2969, + [8028] = 3885, + [8029] = 8029, + [8030] = 7994, + [8031] = 2980, + [8032] = 2981, + [8033] = 2982, + [8034] = 8034, + [8035] = 7994, + [8036] = 8036, + [8037] = 2992, + [8038] = 7998, + [8039] = 2994, + [8040] = 3041, + [8041] = 288, + [8042] = 3001, + [8043] = 3002, + [8044] = 286, + [8045] = 7998, + [8046] = 7994, + [8047] = 7994, + [8048] = 3148, + [8049] = 2891, + [8050] = 3062, + [8051] = 3866, + [8052] = 3042, + [8053] = 7998, + [8054] = 3037, + [8055] = 3610, + [8056] = 3051, + [8057] = 8057, + [8058] = 3837, + [8059] = 3826, + [8060] = 3835, + [8061] = 3847, + [8062] = 3855, + [8063] = 3826, + [8064] = 3835, + [8065] = 3847, + [8066] = 3855, + [8067] = 8067, + [8068] = 8068, + [8069] = 3591, + [8070] = 8070, + [8071] = 8071, + [8072] = 8070, + [8073] = 3052, [8074] = 8074, - [8075] = 3880, - [8076] = 8076, - [8077] = 8077, - [8078] = 8078, - [8079] = 8077, - [8080] = 3895, - [8081] = 3896, - [8082] = 8082, - [8083] = 8076, - [8084] = 8076, - [8085] = 8076, - [8086] = 8076, - [8087] = 3880, - [8088] = 8076, - [8089] = 8076, - [8090] = 8077, - [8091] = 8077, - [8092] = 8092, - [8093] = 8092, - [8094] = 8076, - [8095] = 8076, - [8096] = 8082, - [8097] = 2956, - [8098] = 8076, - [8099] = 8092, - [8100] = 8082, - [8101] = 8077, - [8102] = 2958, - [8103] = 8076, - [8104] = 3441, - [8105] = 8076, - [8106] = 8076, - [8107] = 8107, - [8108] = 8082, - [8109] = 8076, - [8110] = 8076, - [8111] = 8076, - [8112] = 3018, - [8113] = 8076, - [8114] = 3433, - [8115] = 8077, - [8116] = 3000, - [8117] = 8077, - [8118] = 8107, - [8119] = 8076, - [8120] = 8076, - [8121] = 8082, - [8122] = 8122, - [8123] = 8076, - [8124] = 3880, - [8125] = 3891, - [8126] = 3895, - [8127] = 3896, - [8128] = 8082, - [8129] = 8077, - [8130] = 8076, - [8131] = 8078, - [8132] = 3891, - [8133] = 3079, - [8134] = 8077, - [8135] = 8076, - [8136] = 8074, - [8137] = 8107, - [8138] = 3065, - [8139] = 8076, - [8140] = 8077, - [8141] = 8076, - [8142] = 8076, - [8143] = 8076, - [8144] = 8076, - [8145] = 8078, - [8146] = 8082, - [8147] = 8077, - [8148] = 8077, - [8149] = 3674, - [8150] = 8076, + [8075] = 8070, + [8076] = 8070, + [8077] = 8070, + [8078] = 8070, + [8079] = 3456, + [8080] = 8070, + [8081] = 3591, + [8082] = 8074, + [8083] = 8070, + [8084] = 8070, + [8085] = 8070, + [8086] = 8071, + [8087] = 8071, + [8088] = 3077, + [8089] = 3826, + [8090] = 3835, + [8091] = 8091, + [8092] = 8074, + [8093] = 3847, + [8094] = 3855, + [8095] = 3078, + [8096] = 8070, + [8097] = 8091, + [8098] = 8071, + [8099] = 3826, + [8100] = 3835, + [8101] = 3847, + [8102] = 3855, + [8103] = 8103, + [8104] = 8070, + [8105] = 8103, + [8106] = 8070, + [8107] = 8074, + [8108] = 8074, + [8109] = 3431, + [8110] = 8070, + [8111] = 8071, + [8112] = 8091, + [8113] = 8113, + [8114] = 8070, + [8115] = 8070, + [8116] = 8074, + [8117] = 8071, + [8118] = 8074, + [8119] = 8071, + [8120] = 8113, + [8121] = 2970, + [8122] = 8070, + [8123] = 8071, + [8124] = 8071, + [8125] = 8113, + [8126] = 8071, + [8127] = 8070, + [8128] = 8070, + [8129] = 8067, + [8130] = 8130, + [8131] = 8071, + [8132] = 8071, + [8133] = 8070, + [8134] = 8070, + [8135] = 8103, + [8136] = 8070, + [8137] = 3020, + [8138] = 3012, + [8139] = 8070, + [8140] = 8070, + [8141] = 8070, + [8142] = 8070, + [8143] = 8070, + [8144] = 8070, + [8145] = 8145, + [8146] = 8146, + [8147] = 8147, + [8148] = 8148, + [8149] = 8149, + [8150] = 8150, [8151] = 8151, [8152] = 8152, [8153] = 8153, - [8154] = 8154, - [8155] = 8155, + [8154] = 4546, + [8155] = 3591, [8156] = 8156, - [8157] = 8157, + [8157] = 2045, [8158] = 8158, [8159] = 8159, - [8160] = 8152, + [8160] = 8160, [8161] = 8161, - [8162] = 8154, + [8162] = 8162, [8163] = 8163, - [8164] = 8164, - [8165] = 8154, - [8166] = 8154, + [8164] = 8158, + [8165] = 8165, + [8166] = 8166, [8167] = 8167, [8168] = 8168, - [8169] = 8157, + [8169] = 8169, [8170] = 8170, - [8171] = 8154, - [8172] = 8172, + [8171] = 8171, + [8172] = 8147, [8173] = 8173, - [8174] = 3674, - [8175] = 8157, + [8174] = 8174, + [8175] = 8161, [8176] = 8176, - [8177] = 8163, - [8178] = 8156, - [8179] = 8179, - [8180] = 8180, - [8181] = 8181, - [8182] = 8182, - [8183] = 8161, - [8184] = 3674, + [8177] = 8177, + [8178] = 8178, + [8179] = 8147, + [8180] = 3591, + [8181] = 8147, + [8182] = 8173, + [8183] = 8183, + [8184] = 8184, [8185] = 8185, - [8186] = 8182, - [8187] = 8187, - [8188] = 8188, - [8189] = 8157, + [8186] = 8186, + [8187] = 8158, + [8188] = 8170, + [8189] = 8189, [8190] = 8190, - [8191] = 8191, + [8191] = 8170, [8192] = 8192, [8193] = 8193, - [8194] = 8154, - [8195] = 8195, - [8196] = 8157, - [8197] = 8154, - [8198] = 8198, - [8199] = 8199, - [8200] = 8167, - [8201] = 8201, - [8202] = 8202, - [8203] = 8192, - [8204] = 8204, - [8205] = 8190, - [8206] = 8206, - [8207] = 4551, - [8208] = 8157, + [8194] = 8170, + [8195] = 8158, + [8196] = 8170, + [8197] = 8197, + [8198] = 8158, + [8199] = 8170, + [8200] = 8200, + [8201] = 8158, + [8202] = 8170, + [8203] = 8163, + [8204] = 8158, + [8205] = 8170, + [8206] = 8158, + [8207] = 8170, + [8208] = 8165, [8209] = 8209, - [8210] = 8210, - [8211] = 8211, - [8212] = 8212, - [8213] = 8157, - [8214] = 8157, - [8215] = 8180, - [8216] = 8191, - [8217] = 8172, - [8218] = 3674, - [8219] = 8219, - [8220] = 8182, + [8210] = 8166, + [8211] = 8185, + [8212] = 8192, + [8213] = 8147, + [8214] = 8184, + [8215] = 8167, + [8216] = 8216, + [8217] = 3591, + [8218] = 8168, + [8219] = 8169, + [8220] = 8171, [8221] = 8221, - [8222] = 2049, - [8223] = 8181, - [8224] = 8151, - [8225] = 8154, - [8226] = 8226, - [8227] = 8187, - [8228] = 8180, - [8229] = 8181, + [8222] = 8222, + [8223] = 8185, + [8224] = 8192, + [8225] = 8184, + [8226] = 8192, + [8227] = 8174, + [8228] = 8176, + [8229] = 8177, [8230] = 8230, [8231] = 8231, [8232] = 8232, - [8233] = 8154, - [8234] = 8209, - [8235] = 8161, - [8236] = 8181, - [8237] = 8168, - [8238] = 8181, - [8239] = 8157, - [8240] = 8182, + [8233] = 8233, + [8234] = 8158, + [8235] = 8235, + [8236] = 8236, + [8237] = 3643, + [8238] = 8238, + [8239] = 8239, + [8240] = 8240, [8241] = 8241, - [8242] = 3608, - [8243] = 3611, + [8242] = 3667, + [8243] = 3637, [8244] = 8244, - [8245] = 8245, - [8246] = 8246, + [8245] = 8235, + [8246] = 3762, [8247] = 8247, [8248] = 8248, - [8249] = 8249, - [8250] = 3679, - [8251] = 3696, - [8252] = 8252, - [8253] = 8198, - [8254] = 8231, - [8255] = 8255, - [8256] = 8248, - [8257] = 8249, - [8258] = 3637, - [8259] = 8248, - [8260] = 3638, - [8261] = 3651, - [8262] = 3640, - [8263] = 8263, - [8264] = 3641, - [8265] = 8248, - [8266] = 3694, - [8267] = 8249, + [8249] = 3591, + [8250] = 8250, + [8251] = 2079, + [8252] = 8250, + [8253] = 8250, + [8254] = 8250, + [8255] = 8250, + [8256] = 8250, + [8257] = 8250, + [8258] = 8240, + [8259] = 8259, + [8260] = 3685, + [8261] = 8261, + [8262] = 2079, + [8263] = 8259, + [8264] = 8250, + [8265] = 8240, + [8266] = 8266, + [8267] = 3654, [8268] = 8268, - [8269] = 8249, - [8270] = 2077, - [8271] = 8271, - [8272] = 8272, - [8273] = 8246, - [8274] = 8274, - [8275] = 8248, - [8276] = 2112, - [8277] = 8155, - [8278] = 3674, - [8279] = 8248, - [8280] = 8248, - [8281] = 8248, - [8282] = 8248, - [8283] = 8248, - [8284] = 8248, - [8285] = 8248, - [8286] = 8286, - [8287] = 8287, + [8269] = 8247, + [8270] = 8270, + [8271] = 8250, + [8272] = 8230, + [8273] = 8273, + [8274] = 3679, + [8275] = 3668, + [8276] = 8250, + [8277] = 8162, + [8278] = 8259, + [8279] = 2117, + [8280] = 8250, + [8281] = 8240, + [8282] = 8250, + [8283] = 3696, + [8284] = 3669, + [8285] = 8250, + [8286] = 8266, + [8287] = 8247, [8288] = 8288, - [8289] = 8249, - [8290] = 8248, - [8291] = 8291, - [8292] = 8245, - [8293] = 8246, - [8294] = 8294, - [8295] = 2112, - [8296] = 8202, - [8297] = 3675, - [8298] = 3601, - [8299] = 8248, - [8300] = 8248, - [8301] = 3688, - [8302] = 8291, - [8303] = 8303, - [8304] = 8248, - [8305] = 8291, - [8306] = 8211, - [8307] = 8248, - [8308] = 8308, - [8309] = 8248, - [8310] = 8310, - [8311] = 8245, - [8312] = 3625, - [8313] = 3628, - [8314] = 3626, - [8315] = 8206, - [8316] = 8201, - [8317] = 8248, - [8318] = 8212, - [8319] = 8185, - [8320] = 8248, - [8321] = 8193, - [8322] = 8195, - [8323] = 8179, - [8324] = 8232, - [8325] = 8248, - [8326] = 8164, - [8327] = 8159, - [8328] = 8248, - [8329] = 8286, - [8330] = 8210, - [8331] = 8331, - [8332] = 8248, - [8333] = 8221, - [8334] = 8294, - [8335] = 8248, - [8336] = 2077, - [8337] = 8245, - [8338] = 8248, - [8339] = 3681, - [8340] = 8249, - [8341] = 3809, - [8342] = 8247, - [8343] = 3698, - [8344] = 8344, - [8345] = 8248, - [8346] = 8248, - [8347] = 8347, - [8348] = 8348, - [8349] = 8230, - [8350] = 3664, - [8351] = 3669, - [8352] = 8248, - [8353] = 3671, - [8354] = 3673, - [8355] = 8286, - [8356] = 8291, - [8357] = 8357, - [8358] = 3655, + [8289] = 8250, + [8290] = 8159, + [8291] = 3670, + [8292] = 3697, + [8293] = 8160, + [8294] = 8250, + [8295] = 8250, + [8296] = 3698, + [8297] = 8247, + [8298] = 3684, + [8299] = 8240, + [8300] = 8189, + [8301] = 8250, + [8302] = 8250, + [8303] = 8250, + [8304] = 8304, + [8305] = 3595, + [8306] = 8250, + [8307] = 8250, + [8308] = 8240, + [8309] = 8250, + [8310] = 8266, + [8311] = 8250, + [8312] = 8312, + [8313] = 8193, + [8314] = 8314, + [8315] = 8197, + [8316] = 8200, + [8317] = 3690, + [8318] = 8209, + [8319] = 3658, + [8320] = 8320, + [8321] = 8321, + [8322] = 2117, + [8323] = 8250, + [8324] = 8146, + [8325] = 8250, + [8326] = 8145, + [8327] = 8247, + [8328] = 8235, + [8329] = 3616, + [8330] = 8148, + [8331] = 8150, + [8332] = 8332, + [8333] = 8240, + [8334] = 3674, + [8335] = 8250, + [8336] = 8250, + [8337] = 8250, + [8338] = 3633, + [8339] = 3642, + [8340] = 3626, + [8341] = 3634, + [8342] = 3613, + [8343] = 3627, + [8344] = 8151, + [8345] = 8288, + [8346] = 8266, + [8347] = 8152, + [8348] = 4546, + [8349] = 3693, + [8350] = 8350, + [8351] = 8250, + [8352] = 8153, + [8353] = 8149, + [8354] = 3641, + [8355] = 8190, + [8356] = 8356, + [8357] = 8320, + [8358] = 8358, [8359] = 8359, - [8360] = 8248, - [8361] = 4551, - [8362] = 3603, - [8363] = 3687, - [8364] = 3604, - [8365] = 8249, - [8366] = 8245, - [8367] = 8367, - [8368] = 3911, - [8369] = 2957, - [8370] = 2960, + [8360] = 8360, + [8361] = 8361, + [8362] = 3041, + [8363] = 3042, + [8364] = 8364, + [8365] = 8364, + [8366] = 3051, + [8367] = 3062, + [8368] = 8368, + [8369] = 8361, + [8370] = 8361, [8371] = 8371, - [8372] = 3896, - [8373] = 3891, - [8374] = 3029, - [8375] = 8371, - [8376] = 4157, - [8377] = 8371, - [8378] = 3009, - [8379] = 4162, - [8380] = 4163, - [8381] = 3433, - [8382] = 4159, - [8383] = 8383, - [8384] = 4160, - [8385] = 4165, - [8386] = 4149, - [8387] = 4166, - [8388] = 8371, - [8389] = 8389, - [8390] = 8383, - [8391] = 8371, - [8392] = 8389, - [8393] = 8393, - [8394] = 8389, - [8395] = 3085, - [8396] = 2994, - [8397] = 3888, - [8398] = 3071, - [8399] = 3024, - [8400] = 8400, - [8401] = 3029, - [8402] = 2973, - [8403] = 2977, - [8404] = 3604, - [8405] = 3880, - [8406] = 3694, - [8407] = 3698, - [8408] = 2977, - [8409] = 8383, - [8410] = 3891, - [8411] = 3880, - [8412] = 8412, - [8413] = 2955, - [8414] = 3002, - [8415] = 288, - [8416] = 8371, - [8417] = 3779, - [8418] = 2983, - [8419] = 8419, - [8420] = 3027, - [8421] = 285, - [8422] = 3006, - [8423] = 3068, - [8424] = 3038, - [8425] = 3622, - [8426] = 3004, - [8427] = 2976, - [8428] = 2973, - [8429] = 3895, - [8430] = 3681, - [8431] = 3657, - [8432] = 8389, - [8433] = 3674, - [8434] = 3895, - [8435] = 3896, - [8436] = 3710, - [8437] = 8389, - [8438] = 8383, - [8439] = 8383, - [8440] = 2994, - [8441] = 3071, - [8442] = 8383, - [8443] = 8383, - [8444] = 3441, - [8445] = 8445, - [8446] = 3696, - [8447] = 3034, - [8448] = 3674, - [8449] = 1963, - [8450] = 3895, + [8372] = 3835, + [8373] = 3033, + [8374] = 8361, + [8375] = 8375, + [8376] = 8364, + [8377] = 3855, + [8378] = 3826, + [8379] = 3591, + [8380] = 2957, + [8381] = 3835, + [8382] = 3600, + [8383] = 2969, + [8384] = 8384, + [8385] = 8371, + [8386] = 3847, + [8387] = 2980, + [8388] = 2981, + [8389] = 3855, + [8390] = 2982, + [8391] = 3063, + [8392] = 3685, + [8393] = 3431, + [8394] = 2992, + [8395] = 2994, + [8396] = 8361, + [8397] = 8364, + [8398] = 3846, + [8399] = 8399, + [8400] = 3610, + [8401] = 3693, + [8402] = 8371, + [8403] = 8403, + [8404] = 8361, + [8405] = 8361, + [8406] = 3001, + [8407] = 3002, + [8408] = 3674, + [8409] = 8371, + [8410] = 3642, + [8411] = 3781, + [8412] = 2944, + [8413] = 3033, + [8414] = 3062, + [8415] = 3063, + [8416] = 3064, + [8417] = 3851, + [8418] = 3847, + [8419] = 288, + [8420] = 286, + [8421] = 3643, + [8422] = 3074, + [8423] = 3037, + [8424] = 2944, + [8425] = 8364, + [8426] = 3075, + [8427] = 3456, + [8428] = 4173, + [8429] = 4174, + [8430] = 4177, + [8431] = 4200, + [8432] = 4147, + [8433] = 3752, + [8434] = 4179, + [8435] = 4171, + [8436] = 4194, + [8437] = 8437, + [8438] = 3064, + [8439] = 8371, + [8440] = 3826, + [8441] = 8364, + [8442] = 4179, + [8443] = 8443, + [8444] = 8444, + [8445] = 8444, + [8446] = 8444, + [8447] = 8444, + [8448] = 8444, + [8449] = 4174, + [8450] = 8444, [8451] = 8451, - [8452] = 8451, - [8453] = 8451, - [8454] = 8451, - [8455] = 3896, - [8456] = 8451, - [8457] = 8457, - [8458] = 8458, - [8459] = 8451, - [8460] = 2538, + [8452] = 2577, + [8453] = 4177, + [8454] = 8444, + [8455] = 8444, + [8456] = 8444, + [8457] = 8444, + [8458] = 4200, + [8459] = 8444, + [8460] = 4147, [8461] = 8451, - [8462] = 8462, - [8463] = 8451, - [8464] = 8451, - [8465] = 8451, - [8466] = 8451, - [8467] = 4163, - [8468] = 8468, - [8469] = 8451, - [8470] = 3880, - [8471] = 3891, - [8472] = 3895, - [8473] = 3710, + [8462] = 4173, + [8463] = 3591, + [8464] = 8464, + [8465] = 8465, + [8466] = 8444, + [8467] = 8444, + [8468] = 8444, + [8469] = 8444, + [8470] = 8444, + [8471] = 8444, + [8472] = 8444, + [8473] = 8444, [8474] = 8474, - [8475] = 8451, - [8476] = 2556, - [8477] = 4149, - [8478] = 8451, - [8479] = 8451, - [8480] = 3896, - [8481] = 8481, - [8482] = 4159, - [8483] = 8451, - [8484] = 8451, - [8485] = 4160, - [8486] = 8451, - [8487] = 4157, - [8488] = 8451, - [8489] = 8451, - [8490] = 8474, - [8491] = 3880, - [8492] = 8451, - [8493] = 8451, - [8494] = 4166, - [8495] = 8495, - [8496] = 4162, - [8497] = 3891, - [8498] = 8451, - [8499] = 4165, - [8500] = 8451, - [8501] = 2565, - [8502] = 3941, - [8503] = 8451, - [8504] = 8451, - [8505] = 8451, - [8506] = 8451, - [8507] = 8451, - [8508] = 8508, - [8509] = 3603, - [8510] = 3891, - [8511] = 3071, - [8512] = 3895, - [8513] = 3029, - [8514] = 8514, - [8515] = 3880, + [8475] = 3752, + [8476] = 1969, + [8477] = 8444, + [8478] = 3826, + [8479] = 3835, + [8480] = 3847, + [8481] = 3855, + [8482] = 3826, + [8483] = 3835, + [8484] = 3847, + [8485] = 3855, + [8486] = 8444, + [8487] = 8487, + [8488] = 3836, + [8489] = 2585, + [8490] = 8444, + [8491] = 4171, + [8492] = 8444, + [8493] = 8444, + [8494] = 8444, + [8495] = 8444, + [8496] = 4194, + [8497] = 8444, + [8498] = 8444, + [8499] = 8499, + [8500] = 2591, + [8501] = 8444, + [8502] = 3063, + [8503] = 3610, + [8504] = 3943, + [8505] = 3613, + [8506] = 3679, + [8507] = 3591, + [8508] = 3944, + [8509] = 8509, + [8510] = 3826, + [8511] = 2944, + [8512] = 3945, + [8513] = 3669, + [8514] = 3946, + [8515] = 3634, [8516] = 8516, - [8517] = 2973, - [8518] = 3896, - [8519] = 2977, - [8520] = 3216, - [8521] = 3111, - [8522] = 3601, - [8523] = 8523, - [8524] = 8524, - [8525] = 8525, - [8526] = 2994, - [8527] = 3094, - [8528] = 8528, - [8529] = 3608, - [8530] = 8530, - [8531] = 3124, - [8532] = 8516, - [8533] = 8525, + [8517] = 8517, + [8518] = 3835, + [8519] = 3033, + [8520] = 8520, + [8521] = 3847, + [8522] = 3062, + [8523] = 3063, + [8524] = 3855, + [8525] = 3064, + [8526] = 8526, + [8527] = 8527, + [8528] = 8520, + [8529] = 3235, + [8530] = 3171, + [8531] = 3158, + [8532] = 3238, + [8533] = 3595, [8534] = 8534, - [8535] = 8516, + [8535] = 3848, [8536] = 8536, [8537] = 3637, - [8538] = 8525, - [8539] = 8539, - [8540] = 3101, - [8541] = 8541, - [8542] = 3674, - [8543] = 8516, - [8544] = 3638, - [8545] = 8525, - [8546] = 3848, - [8547] = 3850, - [8548] = 8548, - [8549] = 3651, - [8550] = 3675, - [8551] = 2973, - [8552] = 3669, - [8553] = 3671, - [8554] = 3851, - [8555] = 8555, + [8538] = 3064, + [8539] = 8520, + [8540] = 8526, + [8541] = 3124, + [8542] = 3145, + [8543] = 3224, + [8544] = 8544, + [8545] = 3600, + [8546] = 3156, + [8547] = 8547, + [8548] = 3616, + [8549] = 8526, + [8550] = 2944, + [8551] = 8520, + [8552] = 3670, + [8553] = 8526, + [8554] = 8554, + [8555] = 8520, [8556] = 8556, - [8557] = 3853, - [8558] = 3856, - [8559] = 3895, - [8560] = 3687, - [8561] = 3655, - [8562] = 8516, - [8563] = 2977, - [8564] = 3679, - [8565] = 3029, - [8566] = 8516, - [8567] = 3640, - [8568] = 8568, - [8569] = 3622, - [8570] = 3140, - [8571] = 3198, - [8572] = 8572, - [8573] = 3149, - [8574] = 3152, - [8575] = 3172, - [8576] = 3180, - [8577] = 3664, - [8578] = 8578, - [8579] = 3641, - [8580] = 8525, - [8581] = 8516, - [8582] = 3673, - [8583] = 3891, - [8584] = 3628, - [8585] = 3071, - [8586] = 8586, - [8587] = 3880, - [8588] = 2994, - [8589] = 8589, - [8590] = 8590, - [8591] = 8525, - [8592] = 3611, - [8593] = 3896, - [8594] = 8594, - [8595] = 3931, - [8596] = 3625, - [8597] = 3657, - [8598] = 3626, + [8557] = 8526, + [8558] = 3627, + [8559] = 3690, + [8560] = 3941, + [8561] = 8520, + [8562] = 3062, + [8563] = 8526, + [8564] = 8564, + [8565] = 8565, + [8566] = 8566, + [8567] = 8526, + [8568] = 3835, + [8569] = 3641, + [8570] = 3942, + [8571] = 8571, + [8572] = 3633, + [8573] = 8573, + [8574] = 3696, + [8575] = 3209, + [8576] = 3658, + [8577] = 3697, + [8578] = 3698, + [8579] = 3033, + [8580] = 3684, + [8581] = 8581, + [8582] = 8582, + [8583] = 8583, + [8584] = 8584, + [8585] = 8585, + [8586] = 3667, + [8587] = 3233, + [8588] = 3654, + [8589] = 8520, + [8590] = 3855, + [8591] = 3668, + [8592] = 3826, + [8593] = 8593, + [8594] = 3242, + [8595] = 3626, + [8596] = 3847, + [8597] = 8597, + [8598] = 3847, [8599] = 8599, - [8600] = 8525, - [8601] = 3688, - [8602] = 3852, - [8603] = 8603, - [8604] = 3891, + [8600] = 8600, + [8601] = 8601, + [8602] = 3826, + [8603] = 3855, + [8604] = 3835, [8605] = 8605, - [8606] = 3895, - [8607] = 3896, - [8608] = 8603, - [8609] = 3896, - [8610] = 8603, - [8611] = 8611, + [8606] = 3835, + [8607] = 8601, + [8608] = 8608, + [8609] = 8601, + [8610] = 8608, + [8611] = 8601, [8612] = 8612, - [8613] = 8613, - [8614] = 8603, + [8613] = 3847, + [8614] = 8608, [8615] = 8615, - [8616] = 8611, - [8617] = 8617, + [8616] = 3855, + [8617] = 3345, [8618] = 8618, - [8619] = 8619, - [8620] = 8603, - [8621] = 8611, - [8622] = 8603, - [8623] = 8611, - [8624] = 8611, - [8625] = 8625, - [8626] = 3880, - [8627] = 3891, - [8628] = 3674, - [8629] = 3895, - [8630] = 3896, - [8631] = 3891, - [8632] = 3896, - [8633] = 8603, - [8634] = 8634, - [8635] = 8615, - [8636] = 3880, - [8637] = 8637, - [8638] = 8638, - [8639] = 8241, - [8640] = 3891, - [8641] = 3895, - [8642] = 3896, - [8643] = 3891, - [8644] = 8603, - [8645] = 8611, - [8646] = 8646, - [8647] = 8268, - [8648] = 8615, - [8649] = 8649, - [8650] = 8615, - [8651] = 8615, - [8652] = 8603, - [8653] = 8615, - [8654] = 8615, - [8655] = 8611, - [8656] = 3331, - [8657] = 8611, + [8619] = 3855, + [8620] = 8615, + [8621] = 3826, + [8622] = 3835, + [8623] = 3847, + [8624] = 3591, + [8625] = 3826, + [8626] = 3855, + [8627] = 8608, + [8628] = 8601, + [8629] = 3847, + [8630] = 8630, + [8631] = 8631, + [8632] = 3826, + [8633] = 8608, + [8634] = 8608, + [8635] = 3826, + [8636] = 3835, + [8637] = 8615, + [8638] = 8615, + [8639] = 8615, + [8640] = 8615, + [8641] = 8615, + [8642] = 3847, + [8643] = 8643, + [8644] = 8601, + [8645] = 8645, + [8646] = 3855, + [8647] = 8647, + [8648] = 8332, + [8649] = 3835, + [8650] = 8608, + [8651] = 3826, + [8652] = 3847, + [8653] = 8653, + [8654] = 3855, + [8655] = 8608, + [8656] = 8656, + [8657] = 8601, [8658] = 8658, - [8659] = 3895, + [8659] = 8601, [8660] = 8660, - [8661] = 3880, - [8662] = 3895, - [8663] = 8611, - [8664] = 8664, - [8665] = 3880, - [8666] = 3880, - [8667] = 3891, - [8668] = 3895, - [8669] = 3896, - [8670] = 3880, + [8661] = 8601, + [8662] = 3835, + [8663] = 8248, + [8664] = 8608, + [8665] = 8665, + [8666] = 2842, + [8667] = 8665, + [8668] = 4173, + [8669] = 8669, + [8670] = 8670, [8671] = 8671, - [8672] = 2757, - [8673] = 8673, - [8674] = 8674, - [8675] = 8675, - [8676] = 8675, - [8677] = 8673, - [8678] = 8678, - [8679] = 3779, - [8680] = 3622, - [8681] = 8671, - [8682] = 8675, - [8683] = 3880, - [8684] = 8671, - [8685] = 8675, - [8686] = 8675, - [8687] = 8675, - [8688] = 2994, - [8689] = 8674, - [8690] = 8690, - [8691] = 8675, - [8692] = 8671, - [8693] = 2799, - [8694] = 8694, - [8695] = 8675, - [8696] = 8673, - [8697] = 3622, - [8698] = 8674, - [8699] = 2851, - [8700] = 8675, - [8701] = 8694, - [8702] = 8675, - [8703] = 8690, - [8704] = 4165, - [8705] = 8675, + [8672] = 3826, + [8673] = 2944, + [8674] = 8670, + [8675] = 3835, + [8676] = 3033, + [8677] = 3847, + [8678] = 3062, + [8679] = 3063, + [8680] = 3855, + [8681] = 3064, + [8682] = 8671, + [8683] = 4194, + [8684] = 3826, + [8685] = 2944, + [8686] = 3835, + [8687] = 3033, + [8688] = 3847, + [8689] = 3062, + [8690] = 3063, + [8691] = 3855, + [8692] = 3064, + [8693] = 8670, + [8694] = 8670, + [8695] = 8665, + [8696] = 8696, + [8697] = 8697, + [8698] = 8670, + [8699] = 8697, + [8700] = 8671, + [8701] = 8671, + [8702] = 2854, + [8703] = 4179, + [8704] = 8671, + [8705] = 8665, [8706] = 8706, - [8707] = 8675, - [8708] = 8673, - [8709] = 4160, - [8710] = 8675, - [8711] = 8675, - [8712] = 3880, - [8713] = 2994, - [8714] = 3891, - [8715] = 3071, - [8716] = 8675, - [8717] = 3891, - [8718] = 3071, - [8719] = 3657, - [8720] = 8673, - [8721] = 8706, - [8722] = 4149, - [8723] = 4159, - [8724] = 3895, - [8725] = 3029, - [8726] = 3895, - [8727] = 8706, - [8728] = 8706, - [8729] = 8673, - [8730] = 3029, + [8707] = 8697, + [8708] = 8665, + [8709] = 8669, + [8710] = 8665, + [8711] = 8697, + [8712] = 4171, + [8713] = 8669, + [8714] = 3600, + [8715] = 4177, + [8716] = 8697, + [8717] = 8706, + [8718] = 8718, + [8719] = 3610, + [8720] = 8669, + [8721] = 8671, + [8722] = 8665, + [8723] = 8706, + [8724] = 8665, + [8725] = 4200, + [8726] = 8665, + [8727] = 8718, + [8728] = 8669, + [8729] = 8665, + [8730] = 8706, [8731] = 8671, - [8732] = 4166, - [8733] = 8674, - [8734] = 8674, - [8735] = 2973, - [8736] = 2973, - [8737] = 3896, - [8738] = 8675, - [8739] = 8694, - [8740] = 8706, - [8741] = 8706, - [8742] = 8694, - [8743] = 3896, - [8744] = 2977, - [8745] = 8675, - [8746] = 8675, - [8747] = 8671, - [8748] = 8706, - [8749] = 2977, - [8750] = 4163, - [8751] = 8671, - [8752] = 8674, - [8753] = 8694, - [8754] = 8675, - [8755] = 8694, - [8756] = 8675, - [8757] = 8675, - [8758] = 4157, - [8759] = 8673, - [8760] = 2762, - [8761] = 8674, - [8762] = 8675, - [8763] = 8675, - [8764] = 4162, - [8765] = 3657, - [8766] = 8766, + [8732] = 8665, + [8733] = 3600, + [8734] = 4147, + [8735] = 8669, + [8736] = 3610, + [8737] = 8665, + [8738] = 8706, + [8739] = 8665, + [8740] = 8669, + [8741] = 8665, + [8742] = 8665, + [8743] = 2790, + [8744] = 8665, + [8745] = 8665, + [8746] = 8665, + [8747] = 8670, + [8748] = 8665, + [8749] = 8697, + [8750] = 8665, + [8751] = 3781, + [8752] = 2805, + [8753] = 8665, + [8754] = 8665, + [8755] = 8706, + [8756] = 8706, + [8757] = 8665, + [8758] = 8670, + [8759] = 4174, + [8760] = 8556, + [8761] = 8761, + [8762] = 2106, + [8763] = 8763, + [8764] = 4173, + [8765] = 8763, + [8766] = 8248, [8767] = 8767, - [8768] = 2108, - [8769] = 8766, - [8770] = 8770, - [8771] = 8771, - [8772] = 8767, - [8773] = 8773, - [8774] = 8771, - [8775] = 8771, - [8776] = 8771, - [8777] = 4162, - [8778] = 8773, - [8779] = 8773, - [8780] = 8773, - [8781] = 8771, - [8782] = 8773, - [8783] = 8771, - [8784] = 8784, - [8785] = 8523, - [8786] = 8766, - [8787] = 4163, - [8788] = 8530, - [8789] = 8548, - [8790] = 8784, - [8791] = 4165, + [8768] = 8517, + [8769] = 8517, + [8770] = 4200, + [8771] = 4147, + [8772] = 4171, + [8773] = 8509, + [8774] = 8761, + [8775] = 8509, + [8776] = 8776, + [8777] = 8777, + [8778] = 8767, + [8779] = 5800, + [8780] = 4174, + [8781] = 4177, + [8782] = 4179, + [8783] = 4194, + [8784] = 8777, + [8785] = 8777, + [8786] = 8777, + [8787] = 8763, + [8788] = 8767, + [8789] = 8763, + [8790] = 8763, + [8791] = 8777, [8792] = 8792, - [8793] = 8773, - [8794] = 8548, - [8795] = 8773, - [8796] = 8766, - [8797] = 8797, - [8798] = 2078, - [8799] = 8766, - [8800] = 4157, - [8801] = 8771, + [8793] = 8793, + [8794] = 8767, + [8795] = 8793, + [8796] = 8763, + [8797] = 8767, + [8798] = 8798, + [8799] = 8767, + [8800] = 8536, + [8801] = 8767, [8802] = 8802, - [8803] = 4166, - [8804] = 8541, - [8805] = 8773, - [8806] = 8241, - [8807] = 8807, - [8808] = 8523, - [8809] = 8771, - [8810] = 8767, - [8811] = 8771, - [8812] = 8766, - [8813] = 8773, - [8814] = 4159, - [8815] = 8766, - [8816] = 8541, - [8817] = 8766, - [8818] = 8773, - [8819] = 8766, - [8820] = 4160, - [8821] = 5791, - [8822] = 8767, - [8823] = 8528, - [8824] = 8773, - [8825] = 8771, - [8826] = 8528, - [8827] = 8784, - [8828] = 4149, - [8829] = 8766, - [8830] = 8784, - [8831] = 8530, - [8832] = 8268, - [8833] = 8766, - [8834] = 8834, - [8835] = 4149, + [8803] = 8767, + [8804] = 8332, + [8805] = 8793, + [8806] = 8777, + [8807] = 8763, + [8808] = 8767, + [8809] = 8777, + [8810] = 8763, + [8811] = 8761, + [8812] = 8777, + [8813] = 8536, + [8814] = 8767, + [8815] = 8534, + [8816] = 8793, + [8817] = 8777, + [8818] = 8763, + [8819] = 8763, + [8820] = 8777, + [8821] = 2067, + [8822] = 8822, + [8823] = 8777, + [8824] = 8763, + [8825] = 8556, + [8826] = 8534, + [8827] = 8761, + [8828] = 8828, + [8829] = 4179, + [8830] = 4194, + [8831] = 2074, + [8832] = 8832, + [8833] = 3835, + [8834] = 4173, + [8835] = 4177, [8836] = 8836, [8837] = 8837, - [8838] = 4166, - [8839] = 8839, - [8840] = 8840, - [8841] = 4159, + [8838] = 3847, + [8839] = 4174, + [8840] = 4171, + [8841] = 4200, [8842] = 8842, - [8843] = 3896, - [8844] = 8844, - [8845] = 3891, - [8846] = 4160, - [8847] = 8847, - [8848] = 2075, - [8849] = 4165, + [8843] = 8843, + [8844] = 3826, + [8845] = 8845, + [8846] = 3818, + [8847] = 4147, + [8848] = 8848, + [8849] = 3781, [8850] = 8850, - [8851] = 3880, - [8852] = 4163, - [8853] = 3895, - [8854] = 3805, + [8851] = 3855, + [8852] = 8852, + [8853] = 8853, + [8854] = 8854, [8855] = 8855, [8856] = 8856, - [8857] = 4157, - [8858] = 4162, - [8859] = 3779, - [8860] = 8860, - [8861] = 8860, - [8862] = 1970, - [8863] = 1965, - [8864] = 1968, - [8865] = 1969, - [8866] = 8866, - [8867] = 2112, - [8868] = 8868, - [8869] = 8860, - [8870] = 8870, - [8871] = 8871, - [8872] = 1964, - [8873] = 8868, - [8874] = 1966, - [8875] = 1967, - [8876] = 8860, - [8877] = 8868, - [8878] = 8860, - [8879] = 8879, - [8880] = 8879, - [8881] = 8860, - [8882] = 8882, - [8883] = 8883, - [8884] = 4162, - [8885] = 4163, - [8886] = 4159, - [8887] = 4160, - [8888] = 8888, - [8889] = 8868, - [8890] = 8890, - [8891] = 4165, + [8857] = 8854, + [8858] = 1964, + [8859] = 1965, + [8860] = 8854, + [8861] = 1960, + [8862] = 8856, + [8863] = 4171, + [8864] = 8854, + [8865] = 8865, + [8866] = 4174, + [8867] = 4177, + [8868] = 8855, + [8869] = 1959, + [8870] = 8855, + [8871] = 4171, + [8872] = 8872, + [8873] = 8856, + [8874] = 4174, + [8875] = 8856, + [8876] = 4173, + [8877] = 8877, + [8878] = 8877, + [8879] = 4177, + [8880] = 4200, + [8881] = 4147, + [8882] = 4173, + [8883] = 4171, + [8884] = 8854, + [8885] = 8885, + [8886] = 8886, + [8887] = 8856, + [8888] = 8855, + [8889] = 8856, + [8890] = 8855, + [8891] = 4179, [8892] = 8892, - [8893] = 8893, - [8894] = 8894, - [8895] = 4166, - [8896] = 8896, - [8897] = 8897, - [8898] = 8882, - [8899] = 4157, - [8900] = 8900, - [8901] = 8901, - [8902] = 8860, - [8903] = 8879, - [8904] = 8860, - [8905] = 4160, - [8906] = 4149, - [8907] = 4157, + [8893] = 8854, + [8894] = 8856, + [8895] = 8895, + [8896] = 4179, + [8897] = 4194, + [8898] = 8856, + [8899] = 4174, + [8900] = 4194, + [8901] = 8856, + [8902] = 1962, + [8903] = 4177, + [8904] = 8856, + [8905] = 8855, + [8906] = 1966, + [8907] = 8907, [8908] = 8908, - [8909] = 4149, - [8910] = 8860, - [8911] = 8860, - [8912] = 8860, - [8913] = 8882, - [8914] = 4162, - [8915] = 4163, + [8909] = 8855, + [8910] = 8856, + [8911] = 1967, + [8912] = 8877, + [8913] = 4179, + [8914] = 8856, + [8915] = 8854, [8916] = 8916, - [8917] = 8879, - [8918] = 8860, - [8919] = 8860, - [8920] = 4165, - [8921] = 8868, - [8922] = 4166, - [8923] = 8923, - [8924] = 8924, - [8925] = 8925, - [8926] = 4159, - [8927] = 4160, - [8928] = 8860, - [8929] = 8868, - [8930] = 8930, - [8931] = 8879, + [8917] = 8917, + [8918] = 8877, + [8919] = 8919, + [8920] = 8920, + [8921] = 4200, + [8922] = 8922, + [8923] = 4147, + [8924] = 4173, + [8925] = 4194, + [8926] = 8926, + [8927] = 8927, + [8928] = 8928, + [8929] = 8856, + [8930] = 8856, + [8931] = 8931, [8932] = 8932, - [8933] = 4149, - [8934] = 8879, - [8935] = 8868, - [8936] = 4157, - [8937] = 8882, - [8938] = 4162, - [8939] = 4163, - [8940] = 8860, - [8941] = 8941, - [8942] = 4165, - [8943] = 8860, - [8944] = 4166, - [8945] = 8879, - [8946] = 4159, - [8947] = 2218, - [8948] = 2213, - [8949] = 3029, - [8950] = 2973, - [8951] = 2977, - [8952] = 2214, - [8953] = 4162, - [8954] = 4165, - [8955] = 4166, - [8956] = 8956, - [8957] = 4157, - [8958] = 4162, - [8959] = 4159, - [8960] = 4160, - [8961] = 4163, - [8962] = 4149, - [8963] = 4165, - [8964] = 4166, - [8965] = 2215, - [8966] = 8966, - [8967] = 2216, - [8968] = 2208, - [8969] = 8969, - [8970] = 2217, - [8971] = 8971, - [8972] = 3071, - [8973] = 2209, - [8974] = 4163, - [8975] = 8975, - [8976] = 2175, - [8977] = 2239, - [8978] = 2219, - [8979] = 2220, - [8980] = 2994, - [8981] = 8981, - [8982] = 8975, - [8983] = 8983, - [8984] = 4149, + [8933] = 4200, + [8934] = 8856, + [8935] = 8856, + [8936] = 2117, + [8937] = 4147, + [8938] = 8938, + [8939] = 8939, + [8940] = 8940, + [8941] = 4194, + [8942] = 2225, + [8943] = 2230, + [8944] = 4177, + [8945] = 4179, + [8946] = 4200, + [8947] = 4194, + [8948] = 2197, + [8949] = 8949, + [8950] = 2233, + [8951] = 4147, + [8952] = 2198, + [8953] = 3062, + [8954] = 2187, + [8955] = 2944, + [8956] = 2222, + [8957] = 8957, + [8958] = 2204, + [8959] = 3063, + [8960] = 2205, + [8961] = 8961, + [8962] = 4174, + [8963] = 4171, + [8964] = 4177, + [8965] = 8965, + [8966] = 3064, + [8967] = 8967, + [8968] = 2175, + [8969] = 3033, + [8970] = 8965, + [8971] = 4173, + [8972] = 4174, + [8973] = 8973, + [8974] = 2178, + [8975] = 4179, + [8976] = 2190, + [8977] = 8977, + [8978] = 8978, + [8979] = 2310, + [8980] = 4200, + [8981] = 4173, + [8982] = 8977, + [8983] = 4171, + [8984] = 8977, [8985] = 8985, - [8986] = 8985, - [8987] = 4166, + [8986] = 4194, + [8987] = 8985, [8988] = 8988, - [8989] = 4162, - [8990] = 8990, - [8991] = 8990, - [8992] = 4160, - [8993] = 8985, - [8994] = 4163, - [8995] = 8988, - [8996] = 2317, - [8997] = 8988, - [8998] = 4157, - [8999] = 8990, - [9000] = 8985, - [9001] = 2318, - [9002] = 8988, - [9003] = 4165, + [8989] = 8978, + [8990] = 8978, + [8991] = 4147, + [8992] = 8985, + [8993] = 8993, + [8994] = 4179, + [8995] = 4177, + [8996] = 8977, + [8997] = 8997, + [8998] = 2311, + [8999] = 8985, + [9000] = 4174, + [9001] = 8978, + [9002] = 4177, + [9003] = 9003, [9004] = 9004, - [9005] = 8990, - [9006] = 4159, - [9007] = 9007, + [9005] = 9004, + [9006] = 9006, + [9007] = 4179, [9008] = 9008, - [9009] = 9009, + [9009] = 9008, [9010] = 9010, - [9011] = 9011, - [9012] = 8618, + [9011] = 9008, + [9012] = 9012, [9013] = 9013, - [9014] = 9013, + [9014] = 4194, [9015] = 9015, - [9016] = 9011, - [9017] = 9011, - [9018] = 9013, - [9019] = 9019, - [9020] = 9020, - [9021] = 2026, - [9022] = 9011, - [9023] = 4165, - [9024] = 9011, - [9025] = 9025, - [9026] = 8638, - [9027] = 9027, - [9028] = 4166, - [9029] = 9029, - [9030] = 9030, - [9031] = 9020, + [9016] = 4174, + [9017] = 9017, + [9018] = 9018, + [9019] = 9006, + [9020] = 9006, + [9021] = 9004, + [9022] = 9022, + [9023] = 9008, + [9024] = 9024, + [9025] = 9008, + [9026] = 4177, + [9027] = 9008, + [9028] = 9006, + [9029] = 8599, + [9030] = 4174, + [9031] = 8612, [9032] = 9032, - [9033] = 8612, + [9033] = 9008, [9034] = 9034, - [9035] = 9035, - [9036] = 9025, - [9037] = 4163, + [9035] = 9013, + [9036] = 9018, + [9037] = 4177, [9038] = 9038, - [9039] = 9011, - [9040] = 9025, - [9041] = 4162, - [9042] = 4166, - [9043] = 9020, - [9044] = 9044, - [9045] = 9045, - [9046] = 9011, - [9047] = 9010, - [9048] = 9020, - [9049] = 9025, - [9050] = 9010, - [9051] = 9025, - [9052] = 4162, - [9053] = 4162, - [9054] = 8625, - [9055] = 9055, - [9056] = 9025, - [9057] = 9011, - [9058] = 9011, - [9059] = 9059, - [9060] = 9011, - [9061] = 4163, - [9062] = 9062, - [9063] = 4166, + [9039] = 9039, + [9040] = 9034, + [9041] = 9008, + [9042] = 9042, + [9043] = 4194, + [9044] = 9018, + [9045] = 4174, + [9046] = 9046, + [9047] = 9047, + [9048] = 9008, + [9049] = 9004, + [9050] = 9034, + [9051] = 4179, + [9052] = 9052, + [9053] = 8605, + [9054] = 4179, + [9055] = 9004, + [9056] = 8630, + [9057] = 9057, + [9058] = 9008, + [9059] = 2031, + [9060] = 9034, + [9061] = 9061, + [9062] = 4194, + [9063] = 9063, [9064] = 9064, - [9065] = 9013, - [9066] = 9066, + [9065] = 9004, + [9066] = 9004, [9067] = 9067, - [9068] = 4163, - [9069] = 9025, - [9070] = 9010, - [9071] = 9071, + [9068] = 9068, + [9069] = 9008, + [9070] = 9070, + [9071] = 8660, [9072] = 9072, - [9073] = 4165, - [9074] = 9055, - [9075] = 9055, + [9073] = 9013, + [9074] = 9018, + [9075] = 9013, [9076] = 9076, - [9077] = 9055, - [9078] = 9011, - [9079] = 8617, - [9080] = 4165, - [9081] = 9081, - [9082] = 9081, - [9083] = 4149, + [9077] = 9077, + [9078] = 9078, + [9079] = 9079, + [9080] = 9078, + [9081] = 9078, + [9082] = 9079, + [9083] = 9078, [9084] = 9084, [9085] = 9085, - [9086] = 9086, - [9087] = 9087, - [9088] = 9088, - [9089] = 9089, - [9090] = 9090, - [9091] = 4159, - [9092] = 9092, - [9093] = 9093, - [9094] = 9094, - [9095] = 4160, - [9096] = 9090, - [9097] = 9093, - [9098] = 4162, + [9086] = 4174, + [9087] = 4177, + [9088] = 4179, + [9089] = 4194, + [9090] = 9084, + [9091] = 9091, + [9092] = 9078, + [9093] = 9084, + [9094] = 9091, + [9095] = 9077, + [9096] = 9078, + [9097] = 9079, + [9098] = 9098, [9099] = 9099, - [9100] = 9093, - [9101] = 4163, - [9102] = 9086, - [9103] = 9103, - [9104] = 9081, - [9105] = 4165, - [9106] = 4166, - [9107] = 9103, - [9108] = 9093, - [9109] = 9103, - [9110] = 9086, - [9111] = 9094, - [9112] = 9090, - [9113] = 9086, - [9114] = 9103, - [9115] = 9090, + [9100] = 9078, + [9101] = 9099, + [9102] = 9085, + [9103] = 9085, + [9104] = 9104, + [9105] = 9105, + [9106] = 9098, + [9107] = 9079, + [9108] = 9098, + [9109] = 9085, + [9110] = 9078, + [9111] = 9091, + [9112] = 9099, + [9113] = 9079, + [9114] = 9114, + [9115] = 9091, [9116] = 9116, - [9117] = 9117, - [9118] = 9118, - [9119] = 2119, - [9120] = 9084, - [9121] = 9081, - [9122] = 9103, - [9123] = 2118, - [9124] = 9090, - [9125] = 9094, - [9126] = 9117, - [9127] = 9093, - [9128] = 9094, - [9129] = 9090, - [9130] = 9081, - [9131] = 9117, - [9132] = 9118, - [9133] = 9090, - [9134] = 9090, - [9135] = 9117, - [9136] = 9118, - [9137] = 9117, - [9138] = 9118, - [9139] = 9117, - [9140] = 9118, - [9141] = 9117, - [9142] = 9118, - [9143] = 9117, - [9144] = 9093, - [9145] = 9118, - [9146] = 9117, - [9147] = 9118, - [9148] = 9116, - [9149] = 9118, - [9150] = 9150, - [9151] = 9151, - [9152] = 9152, - [9153] = 9090, - [9154] = 4157, + [9117] = 9098, + [9118] = 9084, + [9119] = 9119, + [9120] = 9079, + [9121] = 9121, + [9122] = 9122, + [9123] = 9123, + [9124] = 4200, + [9125] = 9125, + [9126] = 9119, + [9127] = 2124, + [9128] = 2284, + [9129] = 9099, + [9130] = 9079, + [9131] = 9099, + [9132] = 2118, + [9133] = 9133, + [9134] = 4147, + [9135] = 9125, + [9136] = 9119, + [9137] = 9125, + [9138] = 9119, + [9139] = 9125, + [9140] = 9119, + [9141] = 9125, + [9142] = 9119, + [9143] = 9125, + [9144] = 9119, + [9145] = 9125, + [9146] = 9119, + [9147] = 9125, + [9148] = 9119, + [9149] = 4173, + [9150] = 9078, + [9151] = 4171, + [9152] = 9125, + [9153] = 9091, + [9154] = 9154, [9155] = 9155, [9156] = 9156, - [9157] = 9157, - [9158] = 9116, - [9159] = 9116, - [9160] = 9093, - [9161] = 2268, - [9162] = 9162, + [9157] = 3781, + [9158] = 9156, + [9159] = 9159, + [9160] = 9160, + [9161] = 9161, + [9162] = 8792, [9163] = 9163, - [9164] = 9164, + [9164] = 9156, [9165] = 9165, - [9166] = 9163, - [9167] = 9167, - [9168] = 9168, - [9169] = 9169, - [9170] = 9163, - [9171] = 9163, - [9172] = 9172, + [9166] = 9156, + [9167] = 9156, + [9168] = 9156, + [9169] = 4179, + [9170] = 8822, + [9171] = 9160, + [9172] = 9156, [9173] = 9173, [9174] = 9174, - [9175] = 9175, - [9176] = 9174, + [9175] = 9156, + [9176] = 9161, [9177] = 9177, - [9178] = 9178, - [9179] = 9163, - [9180] = 9163, + [9178] = 9156, + [9179] = 9161, + [9180] = 9180, [9181] = 9181, - [9182] = 9182, - [9183] = 9183, - [9184] = 4157, - [9185] = 9181, - [9186] = 9165, - [9187] = 9187, + [9182] = 4173, + [9183] = 9156, + [9184] = 9161, + [9185] = 9185, + [9186] = 9156, + [9187] = 9156, [9188] = 9188, - [9189] = 9189, - [9190] = 9163, - [9191] = 9191, - [9192] = 9192, - [9193] = 9188, - [9194] = 9194, - [9195] = 9195, - [9196] = 9163, - [9197] = 9182, - [9198] = 3779, - [9199] = 9199, - [9200] = 4165, - [9201] = 9201, - [9202] = 9202, - [9203] = 9163, - [9204] = 9194, - [9205] = 9199, - [9206] = 9163, + [9189] = 9156, + [9190] = 9161, + [9191] = 9156, + [9192] = 9156, + [9193] = 9156, + [9194] = 9156, + [9195] = 9156, + [9196] = 9156, + [9197] = 9160, + [9198] = 9156, + [9199] = 4174, + [9200] = 9200, + [9201] = 4171, + [9202] = 9163, + [9203] = 9165, + [9204] = 9156, + [9205] = 4194, + [9206] = 9206, [9207] = 9163, - [9208] = 9163, - [9209] = 9194, - [9210] = 9167, - [9211] = 9167, - [9212] = 9212, - [9213] = 9201, - [9214] = 9165, - [9215] = 4162, - [9216] = 9163, - [9217] = 9199, - [9218] = 9167, - [9219] = 9219, - [9220] = 9163, - [9221] = 9182, - [9222] = 9163, - [9223] = 9163, - [9224] = 4166, - [9225] = 9174, - [9226] = 4163, - [9227] = 9163, - [9228] = 9163, - [9229] = 9165, - [9230] = 9163, - [9231] = 9163, - [9232] = 9163, - [9233] = 9188, - [9234] = 9167, - [9235] = 8770, - [9236] = 8807, - [9237] = 9162, - [9238] = 9177, - [9239] = 9201, - [9240] = 3779, - [9241] = 9163, + [9208] = 9165, + [9209] = 9173, + [9210] = 9210, + [9211] = 9211, + [9212] = 9156, + [9213] = 9213, + [9214] = 9161, + [9215] = 9215, + [9216] = 9181, + [9217] = 9156, + [9218] = 9177, + [9219] = 9156, + [9220] = 2073, + [9221] = 9185, + [9222] = 9160, + [9223] = 9188, + [9224] = 9173, + [9225] = 9225, + [9226] = 9225, + [9227] = 9156, + [9228] = 9161, + [9229] = 9229, + [9230] = 9177, + [9231] = 4177, + [9232] = 9225, + [9233] = 9233, + [9234] = 9156, + [9235] = 9156, + [9236] = 9236, + [9237] = 4200, + [9238] = 4147, + [9239] = 9156, + [9240] = 9210, + [9241] = 9160, [9242] = 9181, - [9243] = 9165, - [9244] = 9167, - [9245] = 9163, - [9246] = 9163, - [9247] = 9163, - [9248] = 9177, - [9249] = 9163, - [9250] = 4159, - [9251] = 4160, + [9243] = 9243, + [9244] = 9244, + [9245] = 9245, + [9246] = 9156, + [9247] = 9188, + [9248] = 9248, + [9249] = 9249, + [9250] = 9250, + [9251] = 9251, [9252] = 9252, - [9253] = 9162, - [9254] = 9162, - [9255] = 9162, - [9256] = 9256, - [9257] = 9257, - [9258] = 9162, - [9259] = 9163, - [9260] = 9260, - [9261] = 9163, - [9262] = 2073, - [9263] = 9163, - [9264] = 9163, - [9265] = 9167, - [9266] = 9165, - [9267] = 9163, - [9268] = 9165, - [9269] = 4149, - [9270] = 9163, - [9271] = 9271, + [9253] = 9253, + [9254] = 9156, + [9255] = 9210, + [9256] = 9210, + [9257] = 9160, + [9258] = 9210, + [9259] = 9160, + [9260] = 9210, + [9261] = 9185, + [9262] = 9156, + [9263] = 9156, + [9264] = 9264, + [9265] = 3781, + [9266] = 9266, + [9267] = 9267, + [9268] = 9268, + [9269] = 9269, + [9270] = 9270, + [9271] = 9267, [9272] = 9272, - [9273] = 9273, - [9274] = 9274, + [9273] = 9272, + [9274] = 9268, [9275] = 9275, [9276] = 9276, - [9277] = 9277, - [9278] = 9272, - [9279] = 9273, - [9280] = 9280, - [9281] = 9275, - [9282] = 9282, - [9283] = 9272, - [9284] = 9284, - [9285] = 9285, - [9286] = 9273, - [9287] = 9273, - [9288] = 9273, - [9289] = 9273, - [9290] = 9273, - [9291] = 3705, - [9292] = 9280, - [9293] = 9276, - [9294] = 3779, - [9295] = 9275, - [9296] = 9296, - [9297] = 9280, - [9298] = 9280, - [9299] = 9273, - [9300] = 9274, - [9301] = 9280, - [9302] = 9302, - [9303] = 9273, - [9304] = 9280, - [9305] = 9305, - [9306] = 9280, - [9307] = 9274, - [9308] = 9280, - [9309] = 9273, - [9310] = 9275, - [9311] = 9273, - [9312] = 9284, - [9313] = 9313, - [9314] = 9272, - [9315] = 9276, - [9316] = 9275, - [9317] = 9317, - [9318] = 9318, - [9319] = 2171, - [9320] = 2172, - [9321] = 9305, - [9322] = 9277, - [9323] = 2134, - [9324] = 2137, + [9277] = 9270, + [9278] = 9278, + [9279] = 9279, + [9280] = 9267, + [9281] = 9268, + [9282] = 9270, + [9283] = 9268, + [9284] = 9272, + [9285] = 9270, + [9286] = 9268, + [9287] = 9270, + [9288] = 9268, + [9289] = 9270, + [9290] = 9267, + [9291] = 3152, + [9292] = 9292, + [9293] = 9268, + [9294] = 9294, + [9295] = 9292, + [9296] = 9268, + [9297] = 9297, + [9298] = 2151, + [9299] = 2152, + [9300] = 9266, + [9301] = 9269, + [9302] = 9266, + [9303] = 2156, + [9304] = 9297, + [9305] = 2157, + [9306] = 9266, + [9307] = 9307, + [9308] = 2159, + [9309] = 2160, + [9310] = 9294, + [9311] = 9270, + [9312] = 9312, + [9313] = 9270, + [9314] = 9292, + [9315] = 9297, + [9316] = 9266, + [9317] = 9268, + [9318] = 9268, + [9319] = 9268, + [9320] = 2161, + [9321] = 9292, + [9322] = 2162, + [9323] = 2163, + [9324] = 2165, [9325] = 9325, - [9326] = 2129, - [9327] = 2158, - [9328] = 9276, - [9329] = 9274, - [9330] = 9330, - [9331] = 9305, - [9332] = 9284, - [9333] = 9274, - [9334] = 9313, - [9335] = 2136, - [9336] = 9273, - [9337] = 2139, - [9338] = 2140, - [9339] = 2144, - [9340] = 9277, - [9341] = 2161, - [9342] = 2165, - [9343] = 2087, - [9344] = 9344, - [9345] = 9285, - [9346] = 9276, - [9347] = 9275, - [9348] = 9276, - [9349] = 9273, - [9350] = 9273, - [9351] = 9280, - [9352] = 9274, - [9353] = 9284, - [9354] = 3170, - [9355] = 9273, - [9356] = 9275, - [9357] = 9277, - [9358] = 9274, - [9359] = 9273, - [9360] = 5791, - [9361] = 9274, - [9362] = 9305, - [9363] = 9280, - [9364] = 9273, - [9365] = 9273, - [9366] = 9273, - [9367] = 9285, - [9368] = 9313, - [9369] = 9273, + [9326] = 2168, + [9327] = 2146, + [9328] = 9270, + [9329] = 9329, + [9330] = 9272, + [9331] = 9269, + [9332] = 9272, + [9333] = 9268, + [9334] = 9267, + [9335] = 9335, + [9336] = 9292, + [9337] = 9269, + [9338] = 9267, + [9339] = 9268, + [9340] = 3781, + [9341] = 9297, + [9342] = 9297, + [9343] = 3610, + [9344] = 9269, + [9345] = 9294, + [9346] = 9294, + [9347] = 9267, + [9348] = 9292, + [9349] = 9270, + [9350] = 9269, + [9351] = 9267, + [9352] = 9268, + [9353] = 9268, + [9354] = 3600, + [9355] = 9294, + [9356] = 9268, + [9357] = 9266, + [9358] = 9269, + [9359] = 9359, + [9360] = 9268, + [9361] = 9272, + [9362] = 9294, + [9363] = 9270, + [9364] = 9269, + [9365] = 9292, + [9366] = 9366, + [9367] = 9268, + [9368] = 9276, + [9369] = 9268, [9370] = 9370, - [9371] = 9305, - [9372] = 9273, - [9373] = 9373, - [9374] = 8241, - [9375] = 9305, - [9376] = 9376, - [9377] = 9272, - [9378] = 9284, - [9379] = 9272, - [9380] = 9276, - [9381] = 9273, - [9382] = 9273, - [9383] = 9284, - [9384] = 9277, - [9385] = 9273, - [9386] = 9280, - [9387] = 9387, - [9388] = 9284, - [9389] = 9277, - [9390] = 9305, - [9391] = 3657, - [9392] = 9305, - [9393] = 9284, - [9394] = 9272, - [9395] = 9272, - [9396] = 9280, - [9397] = 9284, - [9398] = 3622, - [9399] = 9305, - [9400] = 9305, - [9401] = 9277, - [9402] = 9272, - [9403] = 9277, - [9404] = 9273, - [9405] = 9276, - [9406] = 9273, - [9407] = 9276, - [9408] = 9275, - [9409] = 9277, - [9410] = 9277, - [9411] = 9273, - [9412] = 9412, - [9413] = 9274, + [9371] = 9371, + [9372] = 2088, + [9373] = 8332, + [9374] = 9276, + [9375] = 9267, + [9376] = 3781, + [9377] = 9266, + [9378] = 9294, + [9379] = 9268, + [9380] = 9380, + [9381] = 9268, + [9382] = 9272, + [9383] = 9268, + [9384] = 9266, + [9385] = 9359, + [9386] = 9270, + [9387] = 9268, + [9388] = 9272, + [9389] = 9389, + [9390] = 9292, + [9391] = 9391, + [9392] = 9268, + [9393] = 9272, + [9394] = 9268, + [9395] = 9294, + [9396] = 3720, + [9397] = 9294, + [9398] = 9266, + [9399] = 9359, + [9400] = 9268, + [9401] = 9268, + [9402] = 9297, + [9403] = 9270, + [9404] = 9268, + [9405] = 9272, + [9406] = 9292, + [9407] = 9269, + [9408] = 5800, + [9409] = 9297, + [9410] = 9266, + [9411] = 9297, + [9412] = 9297, + [9413] = 9413, [9414] = 9414, - [9415] = 9273, - [9416] = 9280, - [9417] = 3779, - [9418] = 9275, + [9415] = 9415, + [9416] = 9416, + [9417] = 9417, + [9418] = 9418, [9419] = 9419, [9420] = 9420, [9421] = 9421, - [9422] = 9422, - [9423] = 9423, + [9422] = 9420, + [9423] = 9420, [9424] = 9424, - [9425] = 9419, + [9425] = 9416, [9426] = 9426, [9427] = 9427, [9428] = 9428, - [9429] = 9429, - [9430] = 9423, + [9429] = 9417, + [9430] = 9415, [9431] = 9431, - [9432] = 9424, - [9433] = 9433, - [9434] = 9434, - [9435] = 9435, - [9436] = 9422, - [9437] = 9423, - [9438] = 9421, + [9432] = 9432, + [9433] = 9415, + [9434] = 9420, + [9435] = 9421, + [9436] = 9424, + [9437] = 9418, + [9438] = 9438, [9439] = 9439, - [9440] = 9420, + [9440] = 9440, [9441] = 9441, [9442] = 9442, - [9443] = 9424, + [9443] = 9443, [9444] = 9444, - [9445] = 9445, - [9446] = 9429, - [9447] = 9439, - [9448] = 9448, - [9449] = 9423, - [9450] = 9450, - [9451] = 9424, - [9452] = 9424, - [9453] = 9423, - [9454] = 3779, + [9445] = 9442, + [9446] = 9415, + [9447] = 9444, + [9448] = 9431, + [9449] = 9420, + [9450] = 9415, + [9451] = 9431, + [9452] = 9432, + [9453] = 9424, + [9454] = 9432, [9455] = 9455, - [9456] = 9420, - [9457] = 9420, - [9458] = 9429, - [9459] = 9420, - [9460] = 9460, - [9461] = 9461, + [9456] = 9415, + [9457] = 9444, + [9458] = 9444, + [9459] = 9418, + [9460] = 9431, + [9461] = 9416, [9462] = 9462, - [9463] = 9423, - [9464] = 9429, - [9465] = 9424, + [9463] = 9455, + [9464] = 9424, + [9465] = 9421, [9466] = 9466, - [9467] = 9439, + [9467] = 9467, [9468] = 9424, [9469] = 9420, - [9470] = 9426, - [9471] = 9420, - [9472] = 9434, - [9473] = 9439, - [9474] = 9474, - [9475] = 9420, + [9470] = 9417, + [9471] = 9414, + [9472] = 9472, + [9473] = 9473, + [9474] = 9420, + [9475] = 9444, [9476] = 9476, - [9477] = 9477, - [9478] = 9419, - [9479] = 9426, - [9480] = 9480, + [9477] = 9417, + [9478] = 9416, + [9479] = 9479, + [9480] = 9420, [9481] = 9481, - [9482] = 9419, - [9483] = 9426, - [9484] = 9423, - [9485] = 9439, - [9486] = 9429, - [9487] = 9477, - [9488] = 9427, - [9489] = 9439, - [9490] = 9421, - [9491] = 9426, - [9492] = 9420, - [9493] = 9429, - [9494] = 9429, - [9495] = 9420, + [9482] = 9462, + [9483] = 9483, + [9484] = 9484, + [9485] = 9415, + [9486] = 9486, + [9487] = 9455, + [9488] = 9415, + [9489] = 9473, + [9490] = 9418, + [9491] = 9462, + [9492] = 9444, + [9493] = 9484, + [9494] = 9494, + [9495] = 8332, [9496] = 9496, - [9497] = 9439, - [9498] = 9439, - [9499] = 9424, - [9500] = 9439, - [9501] = 9433, - [9502] = 9419, - [9503] = 9455, - [9504] = 9426, - [9505] = 9428, - [9506] = 9420, - [9507] = 9477, - [9508] = 9423, - [9509] = 9448, - [9510] = 9419, - [9511] = 9466, - [9512] = 9426, - [9513] = 9420, - [9514] = 9433, - [9515] = 9427, - [9516] = 9428, - [9517] = 9460, - [9518] = 9518, - [9519] = 9422, - [9520] = 9429, - [9521] = 9429, - [9522] = 9522, - [9523] = 9433, - [9524] = 9428, - [9525] = 9421, - [9526] = 9448, - [9527] = 9527, - [9528] = 9466, - [9529] = 9433, - [9530] = 9428, - [9531] = 9434, - [9532] = 9421, - [9533] = 9533, - [9534] = 9419, - [9535] = 9423, - [9536] = 9439, - [9537] = 9433, - [9538] = 9428, - [9539] = 9439, - [9540] = 9439, - [9541] = 9420, - [9542] = 9422, - [9543] = 9433, - [9544] = 9428, - [9545] = 9429, - [9546] = 9476, - [9547] = 9439, - [9548] = 9433, - [9549] = 9431, - [9550] = 9426, - [9551] = 9434, - [9552] = 9424, - [9553] = 9420, - [9554] = 9420, - [9555] = 9466, - [9556] = 9426, - [9557] = 9439, - [9558] = 9439, - [9559] = 9439, - [9560] = 9419, - [9561] = 9431, - [9562] = 9434, - [9563] = 9428, - [9564] = 9564, + [9497] = 9421, + [9498] = 9418, + [9499] = 9420, + [9500] = 9442, + [9501] = 9414, + [9502] = 9415, + [9503] = 9420, + [9504] = 9444, + [9505] = 9440, + [9506] = 9415, + [9507] = 9418, + [9508] = 9416, + [9509] = 9416, + [9510] = 9444, + [9511] = 9424, + [9512] = 9462, + [9513] = 9442, + [9514] = 9415, + [9515] = 9415, + [9516] = 9415, + [9517] = 9420, + [9518] = 9424, + [9519] = 9420, + [9520] = 9444, + [9521] = 9418, + [9522] = 9417, + [9523] = 9416, + [9524] = 9442, + [9525] = 9431, + [9526] = 9420, + [9527] = 9420, + [9528] = 9444, + [9529] = 9415, + [9530] = 9530, + [9531] = 9442, + [9532] = 9444, + [9533] = 9431, + [9534] = 9417, + [9535] = 9431, + [9536] = 9530, + [9537] = 9440, + [9538] = 9414, + [9539] = 9442, + [9540] = 9414, + [9541] = 9415, + [9542] = 9418, + [9543] = 9466, + [9544] = 9432, + [9545] = 9418, + [9546] = 9484, + [9547] = 9431, + [9548] = 9548, + [9549] = 9476, + [9550] = 9440, + [9551] = 9444, + [9552] = 9444, + [9553] = 9466, + [9554] = 9484, + [9555] = 9417, + [9556] = 9424, + [9557] = 9442, + [9558] = 9418, + [9559] = 9466, + [9560] = 9484, + [9561] = 9440, + [9562] = 9476, + [9563] = 9420, + [9564] = 9444, [9565] = 9466, - [9566] = 8241, - [9567] = 9423, - [9568] = 9439, - [9569] = 9460, - [9570] = 9423, - [9571] = 9429, - [9572] = 9423, - [9573] = 9466, - [9574] = 9428, - [9575] = 9575, - [9576] = 9427, - [9577] = 9424, - [9578] = 9466, - [9579] = 9427, - [9580] = 9477, - [9581] = 9424, - [9582] = 9439, - [9583] = 9583, - [9584] = 9433, - [9585] = 9426, - [9586] = 9420, - [9587] = 9426, + [9566] = 9484, + [9567] = 9420, + [9568] = 9455, + [9569] = 9414, + [9570] = 9570, + [9571] = 9571, + [9572] = 9466, + [9573] = 9484, + [9574] = 9432, + [9575] = 9420, + [9576] = 9442, + [9577] = 9466, + [9578] = 9484, + [9579] = 9417, + [9580] = 9414, + [9581] = 9466, + [9582] = 9582, + [9583] = 9444, + [9584] = 9416, + [9585] = 9415, + [9586] = 9424, + [9587] = 9432, [9588] = 9424, - [9589] = 9477, - [9590] = 9590, - [9591] = 9460, - [9592] = 9434, - [9593] = 9427, - [9594] = 9424, - [9595] = 9431, - [9596] = 9427, - [9597] = 9466, - [9598] = 9420, - [9599] = 9427, - [9600] = 9600, - [9601] = 9601, - [9602] = 9422, - [9603] = 9603, - [9604] = 9420, - [9605] = 9605, - [9606] = 9606, - [9607] = 9419, - [9608] = 9455, - [9609] = 9431, - [9610] = 9429, - [9611] = 9426, - [9612] = 9423, - [9613] = 9421, - [9614] = 9420, - [9615] = 9423, - [9616] = 9476, - [9617] = 9424, - [9618] = 9477, - [9619] = 9421, - [9620] = 9439, - [9621] = 9466, - [9622] = 9477, - [9623] = 9429, - [9624] = 9439, - [9625] = 9434, - [9626] = 9439, - [9627] = 9424, - [9628] = 9460, - [9629] = 9439, - [9630] = 9630, - [9631] = 9424, - [9632] = 9476, - [9633] = 9420, - [9634] = 9422, - [9635] = 9422, - [9636] = 9426, - [9637] = 9637, - [9638] = 9439, - [9639] = 9639, - [9640] = 9419, - [9641] = 9431, - [9642] = 9642, - [9643] = 9643, - [9644] = 9426, - [9645] = 9460, - [9646] = 9419, - [9647] = 9424, - [9648] = 9431, - [9649] = 9424, - [9650] = 9420, - [9651] = 9421, - [9652] = 9424, - [9653] = 9424, - [9654] = 9429, - [9655] = 9424, + [9589] = 9589, + [9590] = 9432, + [9591] = 9416, + [9592] = 9442, + [9593] = 9444, + [9594] = 9416, + [9595] = 9442, + [9596] = 9444, + [9597] = 9476, + [9598] = 9462, + [9599] = 9455, + [9600] = 9442, + [9601] = 9444, + [9602] = 9476, + [9603] = 9484, + [9604] = 9431, + [9605] = 9416, + [9606] = 9420, + [9607] = 9420, + [9608] = 9608, + [9609] = 9420, + [9610] = 9610, + [9611] = 9611, + [9612] = 9462, + [9613] = 9476, + [9614] = 9424, + [9615] = 9466, + [9616] = 9616, + [9617] = 9617, + [9618] = 9618, + [9619] = 9415, + [9620] = 9620, + [9621] = 9414, + [9622] = 9440, + [9623] = 9444, + [9624] = 9420, + [9625] = 9455, + [9626] = 9416, + [9627] = 9442, + [9628] = 9628, + [9629] = 9415, + [9630] = 9424, + [9631] = 9415, + [9632] = 9632, + [9633] = 9415, + [9634] = 9417, + [9635] = 9462, + [9636] = 9636, + [9637] = 9442, + [9638] = 9424, + [9639] = 9415, + [9640] = 9476, + [9641] = 9418, + [9642] = 9415, + [9643] = 9455, + [9644] = 9416, + [9645] = 9645, + [9646] = 9530, + [9647] = 9444, + [9648] = 9424, + [9649] = 9415, + [9650] = 3781, + [9651] = 9651, + [9652] = 9444, + [9653] = 9420, + [9654] = 9414, + [9655] = 9416, [9656] = 9420, - [9657] = 9657, - [9658] = 9420, - [9659] = 9421, - [9660] = 9427, + [9657] = 9473, + [9658] = 9658, + [9659] = 9659, + [9660] = 9660, [9661] = 9661, [9662] = 9662, [9663] = 9663, - [9664] = 9664, + [9664] = 9659, [9665] = 9665, [9666] = 9666, - [9667] = 3890, - [9668] = 3854, - [9669] = 312, + [9667] = 9667, + [9668] = 9668, + [9669] = 9669, [9670] = 9670, - [9671] = 3866, + [9671] = 9671, [9672] = 9672, [9673] = 9673, [9674] = 9674, - [9675] = 3881, - [9676] = 9676, - [9677] = 9677, - [9678] = 9678, - [9679] = 9679, + [9675] = 9666, + [9676] = 9667, + [9677] = 9660, + [9678] = 9661, + [9679] = 9662, [9680] = 9680, [9681] = 9681, [9682] = 9682, - [9683] = 9676, - [9684] = 9677, + [9683] = 9683, + [9684] = 9684, [9685] = 9685, [9686] = 9686, - [9687] = 9674, - [9688] = 9688, - [9689] = 9664, - [9690] = 9665, + [9687] = 9659, + [9688] = 9665, + [9689] = 9689, + [9690] = 296, [9691] = 9666, - [9692] = 9692, + [9692] = 9667, [9693] = 9693, [9694] = 9694, - [9695] = 9678, - [9696] = 9679, - [9697] = 9678, - [9698] = 9679, - [9699] = 9676, - [9700] = 9677, - [9701] = 9674, - [9702] = 9664, - [9703] = 9665, - [9704] = 9666, - [9705] = 9673, - [9706] = 9674, + [9695] = 9671, + [9696] = 9672, + [9697] = 9680, + [9698] = 9698, + [9699] = 9673, + [9700] = 9660, + [9701] = 9661, + [9702] = 9662, + [9703] = 9703, + [9704] = 9693, + [9705] = 9705, + [9706] = 9706, [9707] = 9707, - [9708] = 9678, - [9709] = 9709, - [9710] = 9679, + [9708] = 9708, + [9709] = 9666, + [9710] = 9667, [9711] = 9711, - [9712] = 9678, - [9713] = 9679, - [9714] = 9685, - [9715] = 9715, - [9716] = 9716, - [9717] = 9676, - [9718] = 9677, - [9719] = 9719, - [9720] = 9674, - [9721] = 9664, - [9722] = 9665, - [9723] = 9666, - [9724] = 9692, - [9725] = 9725, - [9726] = 9726, - [9727] = 9727, - [9728] = 9728, - [9729] = 9726, - [9730] = 9692, - [9731] = 9726, - [9732] = 9728, + [9712] = 9666, + [9713] = 9671, + [9714] = 9672, + [9715] = 9673, + [9716] = 9660, + [9717] = 9661, + [9718] = 9662, + [9719] = 9667, + [9720] = 9720, + [9721] = 9680, + [9722] = 9722, + [9723] = 9671, + [9724] = 9672, + [9725] = 9673, + [9726] = 9660, + [9727] = 9661, + [9728] = 9662, + [9729] = 9684, + [9730] = 9730, + [9731] = 9703, + [9732] = 9732, [9733] = 9733, - [9734] = 9733, - [9735] = 9674, - [9736] = 9664, - [9737] = 9665, - [9738] = 9666, - [9739] = 9739, - [9740] = 9740, - [9741] = 9741, - [9742] = 9676, - [9743] = 9677, - [9744] = 9681, - [9745] = 9674, - [9746] = 9664, - [9747] = 9665, - [9748] = 9666, - [9749] = 9749, - [9750] = 9686, - [9751] = 9728, - [9752] = 9752, + [9734] = 9734, + [9735] = 9660, + [9736] = 3828, + [9737] = 3829, + [9738] = 9673, + [9739] = 9660, + [9740] = 9661, + [9741] = 9662, + [9742] = 9742, + [9743] = 9661, + [9744] = 9744, + [9745] = 9673, + [9746] = 9746, + [9747] = 9662, + [9748] = 9748, + [9749] = 9673, + [9750] = 9660, + [9751] = 9661, + [9752] = 9662, [9753] = 9753, - [9754] = 3779, - [9755] = 9673, - [9756] = 9674, - [9757] = 9664, - [9758] = 9665, - [9759] = 9666, - [9760] = 9739, - [9761] = 9674, - [9762] = 9762, - [9763] = 9763, - [9764] = 9692, - [9765] = 9726, - [9766] = 9728, - [9767] = 9767, - [9768] = 9733, - [9769] = 9674, - [9770] = 9664, - [9771] = 9665, - [9772] = 9666, - [9773] = 9676, - [9774] = 9739, - [9775] = 9677, - [9776] = 9776, - [9777] = 9777, - [9778] = 9778, - [9779] = 9674, - [9780] = 9664, - [9781] = 9665, - [9782] = 9666, - [9783] = 9783, - [9784] = 9784, - [9785] = 9753, - [9786] = 9786, - [9787] = 9674, - [9788] = 9664, - [9789] = 9665, - [9790] = 9666, - [9791] = 9733, + [9754] = 9684, + [9755] = 9733, + [9756] = 9722, + [9757] = 9683, + [9758] = 9758, + [9759] = 9673, + [9760] = 9660, + [9761] = 9661, + [9762] = 9662, + [9763] = 3863, + [9764] = 9722, + [9765] = 9698, + [9766] = 9732, + [9767] = 9671, + [9768] = 9672, + [9769] = 9673, + [9770] = 9660, + [9771] = 9661, + [9772] = 9662, + [9773] = 9730, + [9774] = 9774, + [9775] = 9711, + [9776] = 9758, + [9777] = 9673, + [9778] = 9660, + [9779] = 9661, + [9780] = 9662, + [9781] = 9781, + [9782] = 9782, + [9783] = 9673, + [9784] = 9660, + [9785] = 9661, + [9786] = 9662, + [9787] = 9720, + [9788] = 9734, + [9789] = 9660, + [9790] = 9661, + [9791] = 9662, [9792] = 9792, - [9793] = 9672, - [9794] = 9674, - [9795] = 9664, - [9796] = 9665, - [9797] = 9666, + [9793] = 9673, + [9794] = 9660, + [9795] = 9661, + [9796] = 9662, + [9797] = 9797, [9798] = 9798, [9799] = 9799, - [9800] = 9664, - [9801] = 9665, - [9802] = 9666, - [9803] = 9674, - [9804] = 9664, - [9805] = 9665, - [9806] = 9666, + [9800] = 9800, + [9801] = 9801, + [9802] = 9802, + [9803] = 9803, + [9804] = 9744, + [9805] = 9805, + [9806] = 9806, [9807] = 9807, - [9808] = 9792, + [9808] = 9808, [9809] = 9809, - [9810] = 9810, - [9811] = 9662, - [9812] = 9688, - [9813] = 9776, - [9814] = 9814, - [9815] = 9815, - [9816] = 9816, - [9817] = 9672, - [9818] = 9818, - [9819] = 9681, - [9820] = 9820, - [9821] = 9821, + [9810] = 9003, + [9811] = 9669, + [9812] = 9670, + [9813] = 9674, + [9814] = 9681, + [9815] = 9744, + [9816] = 9801, + [9817] = 9659, + [9818] = 9665, + [9819] = 9732, + [9820] = 9680, + [9821] = 9703, [9822] = 9822, [9823] = 9823, - [9824] = 9715, - [9825] = 9798, - [9826] = 9799, - [9827] = 9664, - [9828] = 9665, - [9829] = 9777, - [9830] = 9830, - [9831] = 9807, - [9832] = 9666, - [9833] = 9833, - [9834] = 9814, - [9835] = 9835, - [9836] = 9836, - [9837] = 9694, + [9824] = 9703, + [9825] = 9825, + [9826] = 9666, + [9827] = 9827, + [9828] = 9685, + [9829] = 9797, + [9830] = 9667, + [9831] = 9797, + [9832] = 9798, + [9833] = 9746, + [9834] = 9799, + [9835] = 9686, + [9836] = 9689, + [9837] = 9837, [9838] = 9838, - [9839] = 9839, - [9840] = 9840, - [9841] = 9841, - [9842] = 9842, - [9843] = 9809, - [9844] = 9810, - [9845] = 9662, - [9846] = 9688, - [9847] = 9776, - [9848] = 9816, - [9849] = 9814, + [9839] = 9798, + [9840] = 9802, + [9841] = 9742, + [9842] = 9673, + [9843] = 9758, + [9844] = 9803, + [9845] = 3864, + [9846] = 9685, + [9847] = 9686, + [9848] = 9689, + [9849] = 9693, [9850] = 9850, [9851] = 9851, - [9852] = 9852, - [9853] = 9853, - [9854] = 9853, - [9855] = 9685, + [9852] = 9666, + [9853] = 9667, + [9854] = 9799, + [9855] = 9698, [9856] = 9856, - [9857] = 9857, - [9858] = 9858, - [9859] = 3951, - [9860] = 9711, - [9861] = 9861, - [9862] = 9862, - [9863] = 9863, - [9864] = 9821, - [9865] = 9822, - [9866] = 9792, - [9867] = 9823, - [9868] = 9678, - [9869] = 9679, - [9870] = 9815, - [9871] = 9715, - [9872] = 9672, - [9873] = 9711, - [9874] = 9719, - [9875] = 9850, - [9876] = 9777, - [9877] = 9807, - [9878] = 9878, + [9857] = 9693, + [9858] = 9698, + [9859] = 9666, + [9860] = 9667, + [9861] = 9698, + [9862] = 9806, + [9863] = 9805, + [9864] = 9806, + [9865] = 9671, + [9866] = 9672, + [9867] = 9730, + [9868] = 9684, + [9869] = 9733, + [9870] = 9732, + [9871] = 9871, + [9872] = 9722, + [9873] = 9742, + [9874] = 9874, + [9875] = 9693, + [9876] = 9876, + [9877] = 9877, + [9878] = 9673, [9879] = 9879, - [9880] = 9676, - [9881] = 9677, - [9882] = 9681, - [9883] = 9836, - [9884] = 9686, - [9885] = 9694, - [9886] = 9673, - [9887] = 317, - [9888] = 9674, - [9889] = 9692, - [9890] = 9726, - [9891] = 9728, - [9892] = 9733, - [9893] = 9830, - [9894] = 9739, - [9895] = 9798, - [9896] = 9799, - [9897] = 9664, - [9898] = 9665, - [9899] = 9899, - [9900] = 9666, - [9901] = 9838, - [9902] = 9792, - [9903] = 9672, - [9904] = 9739, - [9905] = 9798, - [9906] = 9799, - [9907] = 9664, - [9908] = 9665, - [9909] = 9666, - [9910] = 9809, - [9911] = 9810, - [9912] = 9662, - [9913] = 9688, - [9914] = 9776, - [9915] = 9814, - [9916] = 9916, - [9917] = 9821, - [9918] = 9822, - [9919] = 9823, - [9920] = 9715, - [9921] = 9719, - [9922] = 9777, - [9923] = 9807, - [9924] = 9836, - [9925] = 9694, - [9926] = 9833, - [9927] = 9719, - [9928] = 9753, - [9929] = 9798, - [9930] = 9799, - [9931] = 9682, - [9932] = 9932, - [9933] = 9809, - [9934] = 9810, - [9935] = 9662, - [9936] = 9664, - [9937] = 9688, - [9938] = 9938, - [9939] = 9665, - [9940] = 9776, - [9941] = 9666, - [9942] = 9816, - [9943] = 9943, - [9944] = 9814, + [9880] = 9880, + [9881] = 9881, + [9882] = 9802, + [9883] = 9671, + [9884] = 9672, + [9885] = 9730, + [9886] = 9684, + [9887] = 9733, + [9888] = 9722, + [9889] = 9685, + [9890] = 9683, + [9891] = 9683, + [9892] = 9758, + [9893] = 9686, + [9894] = 9689, + [9895] = 9895, + [9896] = 9711, + [9897] = 9897, + [9898] = 9698, + [9899] = 9732, + [9900] = 9900, + [9901] = 9901, + [9902] = 9781, + [9903] = 9782, + [9904] = 9806, + [9905] = 9720, + [9906] = 9734, + [9907] = 9660, + [9908] = 9661, + [9909] = 9662, + [9910] = 9758, + [9911] = 9797, + [9912] = 9798, + [9913] = 9799, + [9914] = 9693, + [9915] = 9802, + [9916] = 9803, + [9917] = 9800, + [9918] = 9805, + [9919] = 9720, + [9920] = 9734, + [9921] = 9742, + [9922] = 9683, + [9923] = 9800, + [9924] = 9744, + [9925] = 9925, + [9926] = 9669, + [9927] = 9670, + [9928] = 9674, + [9929] = 9681, + [9930] = 9660, + [9931] = 9659, + [9932] = 9665, + [9933] = 9693, + [9934] = 9680, + [9935] = 9935, + [9936] = 9744, + [9937] = 9703, + [9938] = 9801, + [9939] = 9673, + [9940] = 9671, + [9941] = 9671, + [9942] = 3781, + [9943] = 9672, + [9944] = 9944, [9945] = 9945, - [9946] = 9946, - [9947] = 9850, - [9948] = 9674, - [9949] = 9678, - [9950] = 9679, - [9951] = 9830, - [9952] = 9952, - [9953] = 9833, - [9954] = 9954, - [9955] = 9838, - [9956] = 9686, - [9957] = 9957, - [9958] = 9958, - [9959] = 9711, + [9946] = 9730, + [9947] = 9746, + [9948] = 9665, + [9949] = 9949, + [9950] = 9732, + [9951] = 9951, + [9952] = 9672, + [9953] = 9684, + [9954] = 9733, + [9955] = 9722, + [9956] = 9956, + [9957] = 9683, + [9958] = 9782, + [9959] = 9758, [9960] = 9960, - [9961] = 9030, - [9962] = 9853, - [9963] = 9719, - [9964] = 9938, - [9965] = 9965, - [9966] = 9966, - [9967] = 9676, - [9968] = 9677, - [9969] = 9681, - [9970] = 9686, - [9971] = 9673, - [9972] = 9972, - [9973] = 9674, - [9974] = 9678, - [9975] = 9679, - [9976] = 9692, - [9977] = 9726, - [9978] = 9728, - [9979] = 9733, - [9980] = 9739, - [9981] = 9830, - [9982] = 9830, - [9983] = 9833, - [9984] = 3907, - [9985] = 9821, - [9986] = 9822, - [9987] = 9792, - [9988] = 9672, - [9989] = 9853, - [9990] = 3908, - [9991] = 9798, - [9992] = 9856, - [9993] = 9799, - [9994] = 9664, - [9995] = 9665, - [9996] = 9666, - [9997] = 9809, - [9998] = 9857, - [9999] = 9810, - [10000] = 9662, - [10001] = 10001, - [10002] = 9688, - [10003] = 9776, - [10004] = 9856, - [10005] = 9814, - [10006] = 9857, - [10007] = 9858, - [10008] = 9858, - [10009] = 9823, - [10010] = 10010, - [10011] = 9711, + [9961] = 9666, + [9962] = 9962, + [9963] = 3871, + [9964] = 3872, + [9965] = 9742, + [9966] = 9730, + [9967] = 9800, + [9968] = 9671, + [9969] = 9672, + [9970] = 9673, + [9971] = 9693, + [9972] = 9698, + [9973] = 9669, + [9974] = 9803, + [9975] = 9661, + [9976] = 9684, + [9977] = 9977, + [9978] = 9744, + [9979] = 9801, + [9980] = 9658, + [9981] = 9733, + [9982] = 9670, + [9983] = 9722, + [9984] = 9984, + [9985] = 9781, + [9986] = 9986, + [9987] = 9683, + [9988] = 9988, + [9989] = 9746, + [9990] = 9671, + [9991] = 9672, + [9992] = 9730, + [9993] = 9730, + [9994] = 9732, + [9995] = 9758, + [9996] = 9742, + [9997] = 9673, + [9998] = 9662, + [9999] = 9684, + [10000] = 9733, + [10001] = 9722, + [10002] = 9683, + [10003] = 9801, + [10004] = 9781, + [10005] = 10005, + [10006] = 10006, + [10007] = 9746, + [10008] = 9805, + [10009] = 10009, + [10010] = 9781, + [10011] = 9781, [10012] = 10012, - [10013] = 10013, - [10014] = 9715, - [10015] = 9833, - [10016] = 9821, - [10017] = 9822, - [10018] = 9823, - [10019] = 9715, - [10020] = 9830, - [10021] = 10021, - [10022] = 9777, - [10023] = 9807, - [10024] = 9853, - [10025] = 9836, + [10013] = 9782, + [10014] = 9782, + [10015] = 9711, + [10016] = 9801, + [10017] = 9720, + [10018] = 9734, + [10019] = 9660, + [10020] = 9661, + [10021] = 9662, + [10022] = 9797, + [10023] = 9746, + [10024] = 9798, + [10025] = 9799, [10026] = 10026, - [10027] = 9694, - [10028] = 9719, - [10029] = 10029, + [10027] = 9802, + [10028] = 10012, + [10029] = 9805, [10030] = 10030, - [10031] = 10031, - [10032] = 9938, - [10033] = 10033, - [10034] = 10034, - [10035] = 9833, - [10036] = 10036, - [10037] = 9938, - [10038] = 9836, - [10039] = 9853, - [10040] = 9678, - [10041] = 9679, - [10042] = 10042, - [10043] = 9676, - [10044] = 9677, - [10045] = 9681, - [10046] = 9833, - [10047] = 9711, - [10048] = 9777, - [10049] = 10049, - [10050] = 9682, - [10051] = 9719, - [10052] = 9853, - [10053] = 9807, - [10054] = 9686, - [10055] = 9676, - [10056] = 9677, - [10057] = 9681, - [10058] = 9833, - [10059] = 9686, - [10060] = 9833, - [10061] = 9673, - [10062] = 9673, - [10063] = 9674, - [10064] = 9674, - [10065] = 9678, - [10066] = 9692, - [10067] = 9726, - [10068] = 9728, - [10069] = 9833, - [10070] = 9733, - [10071] = 9833, - [10072] = 9679, - [10073] = 9833, - [10074] = 9792, - [10075] = 9833, - [10076] = 9833, - [10077] = 9692, + [10031] = 9782, + [10032] = 10032, + [10033] = 9720, + [10034] = 9734, + [10035] = 9660, + [10036] = 9661, + [10037] = 9662, + [10038] = 9781, + [10039] = 9801, + [10040] = 9782, + [10041] = 9753, + [10042] = 9669, + [10043] = 9746, + [10044] = 9670, + [10045] = 9674, + [10046] = 9681, + [10047] = 10047, + [10048] = 9659, + [10049] = 9665, + [10050] = 3877, + [10051] = 9680, + [10052] = 10052, + [10053] = 9797, + [10054] = 9742, + [10055] = 9798, + [10056] = 9703, + [10057] = 9801, + [10058] = 9799, + [10059] = 9720, + [10060] = 9734, + [10061] = 10061, + [10062] = 9660, + [10063] = 9661, + [10064] = 9662, + [10065] = 9801, + [10066] = 9674, + [10067] = 9666, + [10068] = 9802, + [10069] = 9803, + [10070] = 9667, + [10071] = 9666, + [10072] = 9801, + [10073] = 9698, + [10074] = 9797, + [10075] = 9658, + [10076] = 9801, + [10077] = 9801, [10078] = 10078, - [10079] = 9726, - [10080] = 9728, - [10081] = 10081, - [10082] = 9792, - [10083] = 9733, - [10084] = 9672, - [10085] = 9798, - [10086] = 9799, - [10087] = 9664, - [10088] = 9665, - [10089] = 9666, - [10090] = 9678, - [10091] = 9809, - [10092] = 9810, - [10093] = 9662, - [10094] = 9688, - [10095] = 9814, - [10096] = 9739, - [10097] = 3912, + [10079] = 10079, + [10080] = 9801, + [10081] = 9798, + [10082] = 10082, + [10083] = 9801, + [10084] = 9799, + [10085] = 9666, + [10086] = 9805, + [10087] = 9667, + [10088] = 10088, + [10089] = 9802, + [10090] = 9803, + [10091] = 9673, + [10092] = 9805, + [10093] = 9732, + [10094] = 9880, + [10095] = 10095, + [10096] = 9698, + [10097] = 9667, [10098] = 9753, - [10099] = 9821, - [10100] = 9822, - [10101] = 9823, - [10102] = 9715, - [10103] = 9836, - [10104] = 9777, - [10105] = 9807, - [10106] = 9836, - [10107] = 9694, - [10108] = 9694, - [10109] = 9679, - [10110] = 9676, - [10111] = 9677, - [10112] = 10112, - [10113] = 9792, - [10114] = 10114, - [10115] = 9678, - [10116] = 9679, - [10117] = 9815, - [10118] = 9672, - [10119] = 9711, - [10120] = 9681, - [10121] = 9719, - [10122] = 9856, - [10123] = 9857, - [10124] = 9821, - [10125] = 9798, - [10126] = 9799, - [10127] = 9822, - [10128] = 9664, - [10129] = 9665, - [10130] = 9666, - [10131] = 9858, - [10132] = 9676, - [10133] = 10133, - [10134] = 9677, - [10135] = 9681, - [10136] = 10136, - [10137] = 9673, - [10138] = 9809, - [10139] = 9674, - [10140] = 9810, - [10141] = 9662, - [10142] = 9711, - [10143] = 9692, - [10144] = 9726, - [10145] = 9728, - [10146] = 9733, - [10147] = 9688, - [10148] = 9776, - [10149] = 9816, - [10150] = 10150, - [10151] = 9814, - [10152] = 10152, - [10153] = 3913, - [10154] = 9682, - [10155] = 9792, - [10156] = 10156, - [10157] = 9798, - [10158] = 9799, - [10159] = 9664, - [10160] = 9665, - [10161] = 9666, - [10162] = 9809, - [10163] = 9810, - [10164] = 9662, - [10165] = 9688, - [10166] = 9814, - [10167] = 10167, - [10168] = 9809, + [10099] = 9720, + [10100] = 9734, + [10101] = 9660, + [10102] = 9671, + [10103] = 9672, + [10104] = 9730, + [10105] = 9661, + [10106] = 9669, + [10107] = 9733, + [10108] = 9662, + [10109] = 9742, + [10110] = 9669, + [10111] = 9670, + [10112] = 9781, + [10113] = 9674, + [10114] = 9673, + [10115] = 9681, + [10116] = 9670, + [10117] = 9681, + [10118] = 10118, + [10119] = 9684, + [10120] = 9733, + [10121] = 9722, + [10122] = 9683, + [10123] = 10123, + [10124] = 9669, + [10125] = 9670, + [10126] = 9674, + [10127] = 10127, + [10128] = 10128, + [10129] = 294, + [10130] = 9681, + [10131] = 10131, + [10132] = 10132, + [10133] = 9659, + [10134] = 9665, + [10135] = 9781, + [10136] = 9720, + [10137] = 9734, + [10138] = 9660, + [10139] = 9661, + [10140] = 9662, + [10141] = 9797, + [10142] = 9798, + [10143] = 9799, + [10144] = 9802, + [10145] = 3857, + [10146] = 9659, + [10147] = 9805, + [10148] = 9665, + [10149] = 9680, + [10150] = 9703, + [10151] = 9674, + [10152] = 9669, + [10153] = 9670, + [10154] = 9674, + [10155] = 9681, + [10156] = 10012, + [10157] = 10157, + [10158] = 9659, + [10159] = 9665, + [10160] = 9680, + [10161] = 9680, + [10162] = 3858, + [10163] = 9703, + [10164] = 9797, + [10165] = 9798, + [10166] = 9742, + [10167] = 9681, + [10168] = 10168, [10169] = 10169, - [10170] = 9821, - [10171] = 9822, - [10172] = 9823, - [10173] = 9715, - [10174] = 10174, - [10175] = 9823, - [10176] = 9777, - [10177] = 9807, - [10178] = 9836, - [10179] = 9673, - [10180] = 10180, - [10181] = 9719, - [10182] = 9821, - [10183] = 9822, - [10184] = 10184, + [10170] = 9799, + [10171] = 10171, + [10172] = 9945, + [10173] = 10173, + [10174] = 10012, + [10175] = 9673, + [10176] = 9802, + [10177] = 9803, + [10178] = 9658, + [10179] = 9805, + [10180] = 9666, + [10181] = 9667, + [10182] = 10182, + [10183] = 9782, + [10184] = 9880, [10185] = 10185, - [10186] = 9823, - [10187] = 9715, - [10188] = 9810, - [10189] = 10189, - [10190] = 9777, - [10191] = 9807, - [10192] = 9686, - [10193] = 9678, - [10194] = 9679, - [10195] = 9836, + [10186] = 10186, + [10187] = 10187, + [10188] = 9671, + [10189] = 9672, + [10190] = 3926, + [10191] = 10191, + [10192] = 10192, + [10193] = 10193, + [10194] = 10194, + [10195] = 9945, [10196] = 10196, - [10197] = 9694, - [10198] = 10198, + [10197] = 10197, + [10198] = 9673, [10199] = 10199, - [10200] = 9815, + [10200] = 9667, [10201] = 10201, - [10202] = 9676, - [10203] = 9677, + [10202] = 10202, + [10203] = 10203, [10204] = 10204, - [10205] = 9674, - [10206] = 3876, + [10205] = 10205, + [10206] = 10206, [10207] = 10207, [10208] = 10208, [10209] = 10209, @@ -15406,415 +15406,415 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10219] = 10219, [10220] = 10220, [10221] = 10221, - [10222] = 10222, + [10222] = 10221, [10223] = 10223, - [10224] = 10222, - [10225] = 10225, - [10226] = 10226, - [10227] = 10226, + [10224] = 10224, + [10225] = 10204, + [10226] = 10204, + [10227] = 10215, [10228] = 10228, - [10229] = 10229, + [10229] = 10221, [10230] = 10230, - [10231] = 10231, + [10231] = 10223, [10232] = 10232, [10233] = 10233, - [10234] = 10226, + [10234] = 10208, [10235] = 10235, - [10236] = 10216, + [10236] = 10236, [10237] = 10237, - [10238] = 10215, - [10239] = 10228, - [10240] = 10209, - [10241] = 10241, - [10242] = 10241, - [10243] = 10208, + [10238] = 10208, + [10239] = 10239, + [10240] = 10210, + [10241] = 10209, + [10242] = 10217, + [10243] = 10243, [10244] = 10244, - [10245] = 10245, + [10245] = 10210, [10246] = 10246, [10247] = 10247, - [10248] = 10230, - [10249] = 10245, + [10248] = 10243, + [10249] = 10202, [10250] = 10250, - [10251] = 10251, - [10252] = 10252, - [10253] = 10228, - [10254] = 10211, - [10255] = 10255, - [10256] = 10256, + [10251] = 10204, + [10252] = 10203, + [10253] = 10253, + [10254] = 10221, + [10255] = 10212, + [10256] = 10204, [10257] = 10214, - [10258] = 10258, + [10258] = 10205, [10259] = 10259, - [10260] = 10208, - [10261] = 10225, - [10262] = 10213, - [10263] = 10232, - [10264] = 10250, - [10265] = 10228, - [10266] = 10225, - [10267] = 10256, - [10268] = 10268, - [10269] = 10218, - [10270] = 10220, - [10271] = 10231, - [10272] = 10245, + [10260] = 10235, + [10261] = 10261, + [10262] = 10262, + [10263] = 10239, + [10264] = 10213, + [10265] = 10215, + [10266] = 10228, + [10267] = 10221, + [10268] = 10230, + [10269] = 10262, + [10270] = 10270, + [10271] = 10233, + [10272] = 10205, [10273] = 10273, - [10274] = 10226, - [10275] = 10237, - [10276] = 10216, - [10277] = 10255, - [10278] = 10217, - [10279] = 10252, - [10280] = 10280, - [10281] = 10244, - [10282] = 10233, + [10274] = 10259, + [10275] = 10275, + [10276] = 10237, + [10277] = 10237, + [10278] = 10236, + [10279] = 10210, + [10280] = 10217, + [10281] = 10202, + [10282] = 10282, [10283] = 10283, - [10284] = 10235, - [10285] = 10285, - [10286] = 10280, - [10287] = 10215, - [10288] = 10288, - [10289] = 10289, - [10290] = 10230, - [10291] = 10288, - [10292] = 10241, - [10293] = 10293, - [10294] = 10252, - [10295] = 10250, - [10296] = 10211, - [10297] = 10225, - [10298] = 10280, - [10299] = 10213, - [10300] = 10255, - [10301] = 10256, - [10302] = 10214, + [10284] = 10205, + [10285] = 10259, + [10286] = 10286, + [10287] = 10212, + [10288] = 10209, + [10289] = 10210, + [10290] = 10243, + [10291] = 10291, + [10292] = 10209, + [10293] = 10232, + [10294] = 10239, + [10295] = 10295, + [10296] = 10219, + [10297] = 10235, + [10298] = 10236, + [10299] = 10239, + [10300] = 10273, + [10301] = 10228, + [10302] = 10302, [10303] = 10303, - [10304] = 10218, - [10305] = 10252, - [10306] = 10255, - [10307] = 10216, - [10308] = 10231, - [10309] = 10288, - [10310] = 10235, - [10311] = 10311, - [10312] = 10215, - [10313] = 10280, - [10314] = 10314, - [10315] = 10241, - [10316] = 10237, - [10317] = 10225, - [10318] = 10209, - [10319] = 10212, - [10320] = 10288, - [10321] = 10216, - [10322] = 10245, - [10323] = 10222, - [10324] = 10213, - [10325] = 10325, - [10326] = 10251, - [10327] = 10256, - [10328] = 10218, - [10329] = 10209, - [10330] = 10229, - [10331] = 10244, - [10332] = 10332, - [10333] = 10222, - [10334] = 10334, - [10335] = 10335, - [10336] = 10226, - [10337] = 10250, - [10338] = 10235, - [10339] = 10256, - [10340] = 10214, - [10341] = 10226, - [10342] = 10215, - [10343] = 10252, - [10344] = 10226, - [10345] = 10228, - [10346] = 10225, - [10347] = 10228, - [10348] = 10314, - [10349] = 10213, - [10350] = 10280, - [10351] = 10288, - [10352] = 10218, - [10353] = 10353, - [10354] = 10252, - [10355] = 10219, - [10356] = 10235, - [10357] = 10280, - [10358] = 10288, - [10359] = 10226, - [10360] = 10228, - [10361] = 10237, - [10362] = 10218, - [10363] = 10215, - [10364] = 10228, - [10365] = 10365, - [10366] = 10244, - [10367] = 10244, - [10368] = 10256, - [10369] = 10220, - [10370] = 10213, - [10371] = 10218, - [10372] = 10210, - [10373] = 10256, - [10374] = 10218, - [10375] = 10245, - [10376] = 10212, - [10377] = 10251, - [10378] = 10209, - [10379] = 10218, - [10380] = 10221, - [10381] = 10365, - [10382] = 10218, - [10383] = 10245, - [10384] = 10218, - [10385] = 10209, - [10386] = 10231, - [10387] = 10218, - [10388] = 10218, - [10389] = 10218, - [10390] = 10218, - [10391] = 10391, - [10392] = 10218, - [10393] = 10209, - [10394] = 10218, - [10395] = 10237, - [10396] = 10396, - [10397] = 10208, - [10398] = 10256, - [10399] = 10280, - [10400] = 10226, - [10401] = 10228, - [10402] = 10325, - [10403] = 10210, - [10404] = 10220, - [10405] = 10212, - [10406] = 10217, - [10407] = 10256, - [10408] = 10237, - [10409] = 10409, - [10410] = 10256, - [10411] = 10218, - [10412] = 10211, + [10304] = 10230, + [10305] = 10244, + [10306] = 10205, + [10307] = 10233, + [10308] = 10308, + [10309] = 10221, + [10310] = 10310, + [10311] = 10282, + [10312] = 10312, + [10313] = 10239, + [10314] = 10213, + [10315] = 10262, + [10316] = 10275, + [10317] = 10202, + [10318] = 10282, + [10319] = 10295, + [10320] = 10320, + [10321] = 10237, + [10322] = 10212, + [10323] = 10283, + [10324] = 10205, + [10325] = 10209, + [10326] = 10326, + [10327] = 10327, + [10328] = 10328, + [10329] = 10259, + [10330] = 10330, + [10331] = 10331, + [10332] = 10228, + [10333] = 10327, + [10334] = 10216, + [10335] = 10270, + [10336] = 10230, + [10337] = 10237, + [10338] = 10244, + [10339] = 10205, + [10340] = 10208, + [10341] = 10213, + [10342] = 10208, + [10343] = 10343, + [10344] = 10208, + [10345] = 10204, + [10346] = 10202, + [10347] = 10347, + [10348] = 10210, + [10349] = 10212, + [10350] = 10224, + [10351] = 10351, + [10352] = 10352, + [10353] = 10203, + [10354] = 10228, + [10355] = 10205, + [10356] = 10283, + [10357] = 10246, + [10358] = 10308, + [10359] = 10232, + [10360] = 10360, + [10361] = 10275, + [10362] = 10209, + [10363] = 10212, + [10364] = 10217, + [10365] = 10232, + [10366] = 10239, + [10367] = 10220, + [10368] = 10308, + [10369] = 10243, + [10370] = 10246, + [10371] = 10371, + [10372] = 10212, + [10373] = 10205, + [10374] = 10202, + [10375] = 10243, + [10376] = 10220, + [10377] = 10212, + [10378] = 10378, + [10379] = 10237, + [10380] = 10212, + [10381] = 10224, + [10382] = 10210, + [10383] = 10235, + [10384] = 10205, + [10385] = 10212, + [10386] = 10236, + [10387] = 10219, + [10388] = 10205, + [10389] = 10212, + [10390] = 10223, + [10391] = 10212, + [10392] = 10392, + [10393] = 10212, + [10394] = 10212, + [10395] = 10224, + [10396] = 10212, + [10397] = 10209, + [10398] = 10212, + [10399] = 10212, + [10400] = 10239, + [10401] = 10401, + [10402] = 10402, + [10403] = 10235, + [10404] = 10404, + [10405] = 10232, + [10406] = 10236, + [10407] = 10223, + [10408] = 10213, + [10409] = 10213, + [10410] = 10214, + [10411] = 10244, + [10412] = 10239, [10413] = 10413, - [10414] = 10230, - [10415] = 10245, - [10416] = 10211, - [10417] = 10213, - [10418] = 10418, - [10419] = 10214, - [10420] = 10230, - [10421] = 10207, - [10422] = 10231, - [10423] = 10209, - [10424] = 10237, - [10425] = 10325, - [10426] = 10426, - [10427] = 10245, - [10428] = 10335, - [10429] = 10216, - [10430] = 10209, - [10431] = 10212, - [10432] = 10432, - [10433] = 10221, - [10434] = 10211, - [10435] = 10217, - [10436] = 10280, - [10437] = 10437, - [10438] = 10256, - [10439] = 10210, - [10440] = 10440, - [10441] = 10441, - [10442] = 10288, - [10443] = 10250, - [10444] = 10288, + [10414] = 10210, + [10415] = 10295, + [10416] = 10416, + [10417] = 10201, + [10418] = 10360, + [10419] = 10419, + [10420] = 10295, + [10421] = 10208, + [10422] = 10221, + [10423] = 10210, + [10424] = 10220, + [10425] = 10243, + [10426] = 10232, + [10427] = 10205, + [10428] = 10259, + [10429] = 10212, + [10430] = 10204, + [10431] = 10431, + [10432] = 10239, + [10433] = 10204, + [10434] = 10295, + [10435] = 10259, + [10436] = 10214, + [10437] = 10244, + [10438] = 10282, + [10439] = 10232, + [10440] = 10224, + [10441] = 10219, + [10442] = 10235, + [10443] = 10236, + [10444] = 10203, [10445] = 10216, - [10446] = 10222, - [10447] = 10314, - [10448] = 10229, - [10449] = 10222, - [10450] = 10214, - [10451] = 10226, - [10452] = 10216, - [10453] = 10245, - [10454] = 10228, - [10455] = 10455, - [10456] = 10212, - [10457] = 10244, - [10458] = 10458, - [10459] = 10459, - [10460] = 10250, - [10461] = 10461, - [10462] = 10256, - [10463] = 10216, - [10464] = 10214, - [10465] = 10280, - [10466] = 10288, - [10467] = 10228, - [10468] = 10231, - [10469] = 10219, - [10470] = 10251, - [10471] = 10218, - [10472] = 10311, - [10473] = 10244, - [10474] = 10207, - [10475] = 10475, - [10476] = 10237, - [10477] = 10255, - [10478] = 10219, - [10479] = 10256, - [10480] = 10325, - [10481] = 10220, - [10482] = 10482, - [10483] = 10252, - [10484] = 10280, - [10485] = 10288, - [10486] = 10214, - [10487] = 10208, - [10488] = 10314, - [10489] = 10210, - [10490] = 10219, - [10491] = 10213, - [10492] = 10250, - [10493] = 10221, + [10446] = 10327, + [10447] = 10235, + [10448] = 10259, + [10449] = 10203, + [10450] = 10244, + [10451] = 10270, + [10452] = 10219, + [10453] = 10275, + [10454] = 10419, + [10455] = 10259, + [10456] = 10283, + [10457] = 10220, + [10458] = 10235, + [10459] = 10236, + [10460] = 10236, + [10461] = 10232, + [10462] = 10205, + [10463] = 10217, + [10464] = 10246, + [10465] = 10210, + [10466] = 10308, + [10467] = 10235, + [10468] = 10468, + [10469] = 10469, + [10470] = 10208, + [10471] = 10217, + [10472] = 10202, + [10473] = 10473, + [10474] = 10213, + [10475] = 10204, + [10476] = 10235, + [10477] = 10236, + [10478] = 10209, + [10479] = 10210, + [10480] = 10327, + [10481] = 10275, + [10482] = 10212, + [10483] = 10204, + [10484] = 10214, + [10485] = 10275, + [10486] = 10202, + [10487] = 10237, + [10488] = 10210, + [10489] = 10489, + [10490] = 10243, + [10491] = 10212, + [10492] = 10492, + [10493] = 10214, [10494] = 10216, - [10495] = 10245, - [10496] = 10496, - [10497] = 10459, - [10498] = 10365, - [10499] = 10251, - [10500] = 10314, - [10501] = 10218, - [10502] = 10502, - [10503] = 10219, - [10504] = 10209, - [10505] = 10245, - [10506] = 10506, - [10507] = 10251, - [10508] = 10220, - [10509] = 10221, - [10510] = 10232, - [10511] = 10459, - [10512] = 10512, - [10513] = 10513, - [10514] = 10231, - [10515] = 10244, - [10516] = 10226, - [10517] = 10228, - [10518] = 10216, - [10519] = 10207, - [10520] = 10209, - [10521] = 10521, - [10522] = 10212, - [10523] = 10252, - [10524] = 10230, - [10525] = 10250, - [10526] = 10233, - [10527] = 10521, - [10528] = 10216, - [10529] = 10255, - [10530] = 10256, - [10531] = 10245, - [10532] = 10233, - [10533] = 10335, - [10534] = 10244, - [10535] = 10535, - [10536] = 10214, + [10495] = 10203, + [10496] = 10243, + [10497] = 10419, + [10498] = 10498, + [10499] = 10282, + [10500] = 10205, + [10501] = 10217, + [10502] = 10239, + [10503] = 10262, + [10504] = 10282, + [10505] = 10213, + [10506] = 10233, + [10507] = 10232, + [10508] = 10508, + [10509] = 10236, + [10510] = 10215, + [10511] = 10219, + [10512] = 10228, + [10513] = 10216, + [10514] = 10219, + [10515] = 10515, + [10516] = 10224, + [10517] = 10237, + [10518] = 10230, + [10519] = 10270, + [10520] = 10213, + [10521] = 10219, + [10522] = 10282, + [10523] = 10201, + [10524] = 10262, + [10525] = 10525, + [10526] = 10213, + [10527] = 10220, + [10528] = 10233, + [10529] = 10529, + [10530] = 10215, + [10531] = 10235, + [10532] = 10275, + [10533] = 10243, + [10534] = 10208, + [10535] = 10236, + [10536] = 10228, [10537] = 10537, - [10538] = 10235, - [10539] = 10232, - [10540] = 10235, - [10541] = 10209, - [10542] = 10280, - [10543] = 10288, - [10544] = 10215, - [10545] = 10228, - [10546] = 10365, - [10547] = 10547, - [10548] = 10256, - [10549] = 10225, - [10550] = 10365, + [10538] = 10538, + [10539] = 10218, + [10540] = 10540, + [10541] = 10216, + [10542] = 10235, + [10543] = 10236, + [10544] = 10237, + [10545] = 10210, + [10546] = 10228, + [10547] = 10295, + [10548] = 10548, + [10549] = 10218, + [10550] = 10230, [10551] = 10551, - [10552] = 10241, - [10553] = 10251, - [10554] = 10221, - [10555] = 10244, - [10556] = 10556, - [10557] = 10207, + [10552] = 10223, + [10553] = 10273, + [10554] = 10230, + [10555] = 10239, + [10556] = 10262, + [10557] = 10213, [10558] = 10558, - [10559] = 10255, + [10559] = 10559, [10560] = 10560, - [10561] = 10207, - [10562] = 10562, - [10563] = 10252, - [10564] = 10564, - [10565] = 10207, - [10566] = 10230, - [10567] = 10280, - [10568] = 10288, - [10569] = 10569, - [10570] = 10335, - [10571] = 10365, - [10572] = 10216, - [10573] = 10280, - [10574] = 10288, - [10575] = 10228, - [10576] = 10576, - [10577] = 10521, - [10578] = 10578, + [10561] = 10295, + [10562] = 10213, + [10563] = 10203, + [10564] = 10232, + [10565] = 10243, + [10566] = 10208, + [10567] = 10273, + [10568] = 10237, + [10569] = 10213, + [10570] = 10235, + [10571] = 10236, + [10572] = 10210, + [10573] = 10573, + [10574] = 10201, + [10575] = 10243, + [10576] = 10208, + [10577] = 10205, + [10578] = 10201, [10579] = 10579, - [10580] = 10219, + [10580] = 10308, [10581] = 10581, - [10582] = 10582, - [10583] = 10231, - [10584] = 10521, - [10585] = 10250, + [10582] = 10201, + [10583] = 10239, + [10584] = 10204, + [10585] = 10585, [10586] = 10586, - [10587] = 10231, - [10588] = 10256, - [10589] = 10521, - [10590] = 10216, - [10591] = 10252, - [10592] = 10592, - [10593] = 10521, - [10594] = 10594, - [10595] = 10250, - [10596] = 10521, - [10597] = 10233, - [10598] = 10521, - [10599] = 10229, - [10600] = 10244, - [10601] = 10521, - [10602] = 10521, - [10603] = 10521, - [10604] = 10521, - [10605] = 10521, - [10606] = 10521, - [10607] = 10521, - [10608] = 10521, - [10609] = 10521, - [10610] = 10521, - [10611] = 10521, - [10612] = 10521, - [10613] = 10521, - [10614] = 10250, - [10615] = 10250, - [10616] = 10256, - [10617] = 10617, - [10618] = 10256, - [10619] = 10217, - [10620] = 10620, - [10621] = 10252, - [10622] = 10235, - [10623] = 10280, - [10624] = 10288, - [10625] = 10210, - [10626] = 10241, + [10587] = 10201, + [10588] = 10213, + [10589] = 10243, + [10590] = 10224, + [10591] = 10201, + [10592] = 10233, + [10593] = 10219, + [10594] = 10201, + [10595] = 10201, + [10596] = 10201, + [10597] = 10201, + [10598] = 10201, + [10599] = 10201, + [10600] = 10201, + [10601] = 10201, + [10602] = 10201, + [10603] = 10201, + [10604] = 10201, + [10605] = 10201, + [10606] = 10201, + [10607] = 10270, + [10608] = 10608, + [10609] = 10232, + [10610] = 10237, + [10611] = 10246, + [10612] = 10205, + [10613] = 10235, + [10614] = 10236, + [10615] = 10308, + [10616] = 10205, + [10617] = 10218, + [10618] = 10259, + [10619] = 10204, + [10620] = 10205, + [10621] = 10621, + [10622] = 10622, + [10623] = 10623, + [10624] = 10624, + [10625] = 10625, + [10626] = 10626, [10627] = 10627, [10628] = 10628, - [10629] = 10629, - [10630] = 10630, + [10629] = 10623, + [10630] = 10628, [10631] = 10631, [10632] = 10632, [10633] = 10633, @@ -15828,24 +15828,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10641] = 10641, [10642] = 10642, [10643] = 10643, - [10644] = 10641, + [10644] = 10644, [10645] = 10645, - [10646] = 10642, + [10646] = 10646, [10647] = 10647, [10648] = 10648, - [10649] = 10649, + [10649] = 10645, [10650] = 10650, [10651] = 10651, - [10652] = 10652, - [10653] = 10653, + [10652] = 10624, + [10653] = 10628, [10654] = 10654, [10655] = 10655, - [10656] = 10656, + [10656] = 10640, [10657] = 10657, [10658] = 10658, - [10659] = 10636, + [10659] = 10659, [10660] = 10660, - [10661] = 10661, + [10661] = 10655, [10662] = 10662, [10663] = 10663, [10664] = 10664, @@ -15854,1070 +15854,1064 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10667] = 10667, [10668] = 10668, [10669] = 10669, - [10670] = 10628, - [10671] = 10642, - [10672] = 10672, + [10670] = 10670, + [10671] = 10671, + [10672] = 10628, [10673] = 10673, [10674] = 10674, - [10675] = 10675, - [10676] = 10676, + [10675] = 10671, + [10676] = 8190, [10677] = 10677, - [10678] = 10639, - [10679] = 10662, + [10678] = 10678, + [10679] = 10679, [10680] = 10680, - [10681] = 10635, - [10682] = 10682, + [10681] = 10681, + [10682] = 10641, [10683] = 10683, - [10684] = 10684, - [10685] = 10685, + [10684] = 10640, + [10685] = 10657, [10686] = 10686, - [10687] = 10687, - [10688] = 10688, + [10687] = 10668, + [10688] = 10659, [10689] = 10689, - [10690] = 10690, + [10690] = 10686, [10691] = 10691, - [10692] = 10692, + [10692] = 10671, [10693] = 10693, [10694] = 10694, [10695] = 10695, - [10696] = 10642, - [10697] = 10647, - [10698] = 10698, - [10699] = 10665, + [10696] = 10696, + [10697] = 10654, + [10698] = 10689, + [10699] = 10699, [10700] = 10700, [10701] = 10701, - [10702] = 10702, + [10702] = 10655, [10703] = 10703, - [10704] = 10674, - [10705] = 10705, - [10706] = 10706, + [10704] = 10623, + [10705] = 10658, + [10706] = 10659, [10707] = 10707, [10708] = 10708, [10709] = 10709, - [10710] = 10710, - [10711] = 10674, - [10712] = 10674, - [10713] = 10668, - [10714] = 10714, - [10715] = 10649, + [10710] = 10628, + [10711] = 10711, + [10712] = 10712, + [10713] = 10645, + [10714] = 10686, + [10715] = 10715, [10716] = 10716, - [10717] = 10656, + [10717] = 10650, [10718] = 10718, [10719] = 10719, - [10720] = 10720, - [10721] = 10640, - [10722] = 10722, - [10723] = 10689, - [10724] = 10660, - [10725] = 10725, - [10726] = 10726, - [10727] = 10651, - [10728] = 10688, + [10720] = 10664, + [10721] = 10657, + [10722] = 10646, + [10723] = 10723, + [10724] = 10724, + [10725] = 10658, + [10726] = 10645, + [10727] = 10645, + [10728] = 10694, [10729] = 10729, - [10730] = 10730, + [10730] = 10646, [10731] = 10731, - [10732] = 10732, - [10733] = 10664, - [10734] = 10734, + [10732] = 10641, + [10733] = 10645, + [10734] = 10724, [10735] = 10735, [10736] = 10736, - [10737] = 10635, - [10738] = 10738, - [10739] = 10628, - [10740] = 10667, + [10737] = 10737, + [10738] = 10646, + [10739] = 10739, + [10740] = 10655, [10741] = 10741, - [10742] = 10742, - [10743] = 10743, + [10742] = 10731, + [10743] = 10622, [10744] = 10744, - [10745] = 10745, - [10746] = 10661, + [10745] = 10641, + [10746] = 10640, [10747] = 10747, [10748] = 10748, - [10749] = 10630, + [10749] = 10640, [10750] = 10750, - [10751] = 10751, + [10751] = 10663, [10752] = 10752, - [10753] = 10753, - [10754] = 10754, - [10755] = 10734, - [10756] = 10652, - [10757] = 10658, + [10753] = 10668, + [10754] = 10665, + [10755] = 10666, + [10756] = 10658, + [10757] = 10757, [10758] = 10758, - [10759] = 10706, - [10760] = 10667, - [10761] = 10709, - [10762] = 10762, - [10763] = 10730, - [10764] = 10691, + [10759] = 10643, + [10760] = 10674, + [10761] = 10761, + [10762] = 10628, + [10763] = 10659, + [10764] = 10622, [10765] = 10765, [10766] = 10766, - [10767] = 10700, - [10768] = 10768, - [10769] = 10695, - [10770] = 10628, + [10767] = 10667, + [10768] = 10660, + [10769] = 10769, + [10770] = 10770, [10771] = 10771, - [10772] = 10772, - [10773] = 2757, + [10772] = 10632, + [10773] = 10773, [10774] = 10774, - [10775] = 10775, - [10776] = 10716, - [10777] = 10730, - [10778] = 10649, - [10779] = 10638, - [10780] = 10674, - [10781] = 10643, - [10782] = 10641, - [10783] = 10645, - [10784] = 10784, - [10785] = 10648, - [10786] = 10786, - [10787] = 10752, - [10788] = 10661, + [10775] = 10637, + [10776] = 10638, + [10777] = 10639, + [10778] = 10665, + [10779] = 10642, + [10780] = 10651, + [10781] = 10686, + [10782] = 10624, + [10783] = 10637, + [10784] = 10648, + [10785] = 10785, + [10786] = 10665, + [10787] = 10666, + [10788] = 10666, [10789] = 10789, - [10790] = 10654, - [10791] = 10791, - [10792] = 10792, - [10793] = 10662, - [10794] = 10653, - [10795] = 10795, - [10796] = 10796, - [10797] = 10653, - [10798] = 10665, - [10799] = 10643, - [10800] = 10641, - [10801] = 10645, - [10802] = 10642, - [10803] = 8155, - [10804] = 10675, - [10805] = 10676, + [10790] = 10790, + [10791] = 10667, + [10792] = 10623, + [10793] = 10793, + [10794] = 10667, + [10795] = 10748, + [10796] = 10655, + [10797] = 10689, + [10798] = 10669, + [10799] = 10670, + [10800] = 10637, + [10801] = 10801, + [10802] = 10638, + [10803] = 10640, + [10804] = 10679, + [10805] = 10680, [10806] = 10668, - [10807] = 10636, - [10808] = 10648, - [10809] = 10809, - [10810] = 10685, - [10811] = 10686, - [10812] = 10766, - [10813] = 10765, - [10814] = 10689, - [10815] = 10719, - [10816] = 10816, + [10807] = 10639, + [10808] = 10808, + [10809] = 10640, + [10810] = 10790, + [10811] = 10689, + [10812] = 10654, + [10813] = 10813, + [10814] = 10627, + [10815] = 10815, + [10816] = 10642, [10817] = 10817, - [10818] = 10692, - [10819] = 10654, - [10820] = 10734, - [10821] = 10821, - [10822] = 10627, - [10823] = 10720, - [10824] = 10640, - [10825] = 10725, - [10826] = 10826, + [10818] = 10818, + [10819] = 10719, + [10820] = 10820, + [10821] = 10628, + [10822] = 10643, + [10823] = 10823, + [10824] = 10686, + [10825] = 10729, + [10826] = 10648, [10827] = 10827, - [10828] = 10707, - [10829] = 10786, - [10830] = 10747, - [10831] = 10735, - [10832] = 10832, - [10833] = 10636, - [10834] = 10683, - [10835] = 10700, - [10836] = 10695, - [10837] = 10743, - [10838] = 10752, - [10839] = 10660, - [10840] = 10651, - [10841] = 10718, - [10842] = 10664, - [10843] = 10698, + [10828] = 10655, + [10829] = 10657, + [10830] = 10654, + [10831] = 10737, + [10832] = 10654, + [10833] = 10744, + [10834] = 10834, + [10835] = 10835, + [10836] = 10658, + [10837] = 10659, + [10838] = 10838, + [10839] = 10747, + [10840] = 10689, + [10841] = 10712, + [10842] = 10645, + [10843] = 10843, [10844] = 10844, - [10845] = 10660, - [10846] = 10635, - [10847] = 10847, - [10848] = 10695, - [10849] = 10695, + [10845] = 10844, + [10846] = 10646, + [10847] = 10683, + [10848] = 10638, + [10849] = 10622, [10850] = 10850, - [10851] = 10851, - [10852] = 10784, + [10851] = 10757, + [10852] = 10643, [10853] = 10853, - [10854] = 10636, - [10855] = 10628, - [10856] = 10856, + [10854] = 10854, + [10855] = 10641, + [10856] = 10654, [10857] = 10857, - [10858] = 10858, - [10859] = 10705, - [10860] = 10734, + [10858] = 10639, + [10859] = 10859, + [10860] = 10642, [10861] = 10861, - [10862] = 10664, + [10862] = 10862, [10863] = 10863, - [10864] = 10645, - [10865] = 10692, - [10866] = 10648, - [10867] = 10867, - [10868] = 10868, - [10869] = 10634, - [10870] = 10654, - [10871] = 10772, - [10872] = 9202, - [10873] = 10774, - [10874] = 10851, - [10875] = 10653, - [10876] = 10680, + [10864] = 10648, + [10865] = 10844, + [10866] = 10866, + [10867] = 10655, + [10868] = 10643, + [10869] = 10657, + [10870] = 10683, + [10871] = 10871, + [10872] = 10639, + [10873] = 10873, + [10874] = 10658, + [10875] = 10659, + [10876] = 10660, [10877] = 10877, - [10878] = 10636, - [10879] = 10879, - [10880] = 10784, - [10881] = 10634, - [10882] = 10635, - [10883] = 10676, - [10884] = 10675, - [10885] = 10675, - [10886] = 10676, - [10887] = 10857, - [10888] = 10858, - [10889] = 10685, - [10890] = 10686, - [10891] = 10771, - [10892] = 10725, + [10878] = 10669, + [10879] = 10651, + [10880] = 10674, + [10881] = 10881, + [10882] = 10882, + [10883] = 10679, + [10884] = 10680, + [10885] = 10881, + [10886] = 10719, + [10887] = 10887, + [10888] = 10888, + [10889] = 10889, + [10890] = 10724, + [10891] = 10744, + [10892] = 10892, [10893] = 10893, - [10894] = 10894, - [10895] = 10649, - [10896] = 10896, + [10894] = 10737, + [10895] = 10895, + [10896] = 10716, [10897] = 10897, [10898] = 10898, - [10899] = 10639, - [10900] = 10743, - [10901] = 8231, - [10902] = 10667, - [10903] = 10903, - [10904] = 10653, - [10905] = 10718, - [10906] = 10639, - [10907] = 10639, - [10908] = 10674, - [10909] = 10658, - [10910] = 10656, - [10911] = 10636, - [10912] = 10912, + [10899] = 10899, + [10900] = 10669, + [10901] = 10645, + [10902] = 10670, + [10903] = 10793, + [10904] = 10904, + [10905] = 10817, + [10906] = 10747, + [10907] = 10907, + [10908] = 10908, + [10909] = 10909, + [10910] = 10622, + [10911] = 10911, + [10912] = 10628, [10913] = 10913, - [10914] = 10914, - [10915] = 10661, - [10916] = 10628, - [10917] = 10662, - [10918] = 10661, - [10919] = 10662, - [10920] = 10665, - [10921] = 10668, - [10922] = 10665, - [10923] = 10645, + [10914] = 10654, + [10915] = 10915, + [10916] = 10640, + [10917] = 10639, + [10918] = 10686, + [10919] = 10642, + [10920] = 10920, + [10921] = 10683, + [10922] = 10922, + [10923] = 10648, [10924] = 10668, - [10925] = 10648, - [10926] = 10643, - [10927] = 10685, - [10928] = 10673, - [10929] = 10654, - [10930] = 10664, - [10931] = 10726, - [10932] = 10686, - [10933] = 10666, - [10934] = 10627, - [10935] = 10636, - [10936] = 10936, - [10937] = 10937, - [10938] = 10750, - [10939] = 10832, - [10940] = 10664, - [10941] = 10675, - [10942] = 10691, - [10943] = 10774, - [10944] = 10731, - [10945] = 10714, - [10946] = 10685, - [10947] = 10686, + [10925] = 10925, + [10926] = 10926, + [10927] = 10927, + [10928] = 10679, + [10929] = 10680, + [10930] = 10930, + [10931] = 10820, + [10932] = 10889, + [10933] = 10933, + [10934] = 10724, + [10935] = 10669, + [10936] = 10643, + [10937] = 10657, + [10938] = 10938, + [10939] = 10939, + [10940] = 10679, + [10941] = 10680, + [10942] = 10757, + [10943] = 10719, + [10944] = 10696, + [10945] = 10658, + [10946] = 10946, + [10947] = 10660, [10948] = 10948, - [10949] = 10725, - [10950] = 10732, - [10951] = 10877, - [10952] = 10952, - [10953] = 10816, - [10954] = 10664, - [10955] = 10664, - [10956] = 10853, - [10957] = 10743, - [10958] = 10666, - [10959] = 10897, - [10960] = 10635, + [10949] = 10881, + [10950] = 10950, + [10951] = 10737, + [10952] = 10651, + [10953] = 10659, + [10954] = 10766, + [10955] = 10636, + [10956] = 10645, + [10957] = 10699, + [10958] = 10646, + [10959] = 10959, + [10960] = 10960, [10961] = 10961, - [10962] = 10653, + [10962] = 10670, [10963] = 10963, - [10964] = 10638, - [10965] = 10700, - [10966] = 10636, - [10967] = 10702, - [10968] = 10692, - [10969] = 10969, - [10970] = 10857, - [10971] = 10971, - [10972] = 10648, - [10973] = 10628, - [10974] = 10789, - [10975] = 10641, - [10976] = 10635, - [10977] = 10649, - [10978] = 10645, - [10979] = 10682, - [10980] = 10648, + [10964] = 10964, + [10965] = 10965, + [10966] = 10966, + [10967] = 10622, + [10968] = 10968, + [10969] = 10881, + [10970] = 10970, + [10971] = 10709, + [10972] = 10639, + [10973] = 10887, + [10974] = 10642, + [10975] = 10975, + [10976] = 10976, + [10977] = 10716, + [10978] = 10648, + [10979] = 10979, + [10980] = 10882, [10981] = 10981, - [10982] = 10982, - [10983] = 10653, - [10984] = 10654, + [10982] = 10646, + [10983] = 10679, + [10984] = 10984, [10985] = 10985, - [10986] = 10986, - [10987] = 10635, - [10988] = 10988, - [10989] = 10682, - [10990] = 10688, - [10991] = 10991, - [10992] = 10627, - [10993] = 10653, - [10994] = 10636, - [10995] = 10675, - [10996] = 10664, - [10997] = 10666, - [10998] = 10750, - [10999] = 10999, - [11000] = 10685, - [11001] = 10686, - [11002] = 10636, - [11003] = 10642, - [11004] = 10688, - [11005] = 10999, - [11006] = 10861, + [10986] = 10644, + [10987] = 10987, + [10988] = 10645, + [10989] = 10669, + [10990] = 10654, + [10991] = 10686, + [10992] = 10666, + [10993] = 10993, + [10994] = 10679, + [10995] = 10680, + [10996] = 10750, + [10997] = 10724, + [10998] = 10667, + [10999] = 10670, + [11000] = 11000, + [11001] = 10861, + [11002] = 10737, + [11003] = 10834, + [11004] = 11004, + [11005] = 10680, + [11006] = 10747, [11007] = 11007, - [11008] = 10743, - [11009] = 11009, - [11010] = 10877, - [11011] = 10635, - [11012] = 10682, - [11013] = 11013, - [11014] = 10707, - [11015] = 10660, - [11016] = 10742, - [11017] = 10688, - [11018] = 10628, - [11019] = 10642, - [11020] = 10642, - [11021] = 10645, - [11022] = 10647, - [11023] = 10648, - [11024] = 10647, - [11025] = 10654, + [11008] = 10889, + [11009] = 10660, + [11010] = 10889, + [11011] = 11011, + [11012] = 10622, + [11013] = 10628, + [11014] = 10724, + [11015] = 10639, + [11016] = 11016, + [11017] = 10642, + [11018] = 11018, + [11019] = 10648, + [11020] = 11020, + [11021] = 10686, + [11022] = 11022, + [11023] = 10669, + [11024] = 10893, + [11025] = 10680, [11026] = 11026, - [11027] = 8230, - [11028] = 10642, - [11029] = 10675, - [11030] = 10982, - [11031] = 10686, - [11032] = 10716, - [11033] = 10647, - [11034] = 10730, - [11035] = 10651, - [11036] = 10674, - [11037] = 10893, + [11027] = 11027, + [11028] = 10790, + [11029] = 11004, + [11030] = 11030, + [11031] = 10644, + [11032] = 11027, + [11033] = 10881, + [11034] = 10861, + [11035] = 10628, + [11036] = 10622, + [11037] = 10657, [11038] = 11038, [11039] = 11039, - [11040] = 10674, - [11041] = 10714, - [11042] = 10628, - [11043] = 10661, - [11044] = 10674, - [11045] = 11045, - [11046] = 10648, - [11047] = 10654, - [11048] = 11048, + [11040] = 10642, + [11041] = 10648, + [11042] = 10645, + [11043] = 11043, + [11044] = 10889, + [11045] = 10680, + [11046] = 10881, + [11047] = 10628, + [11048] = 10817, [11049] = 11049, - [11050] = 10673, - [11051] = 10686, - [11052] = 10772, - [11053] = 10893, - [11054] = 10664, - [11055] = 10662, - [11056] = 10751, - [11057] = 10635, - [11058] = 10648, - [11059] = 10654, - [11060] = 10766, - [11061] = 10786, - [11062] = 10686, - [11063] = 10660, - [11064] = 11064, - [11065] = 10832, - [11066] = 10695, - [11067] = 11067, - [11068] = 11068, - [11069] = 10648, - [11070] = 10654, - [11071] = 10686, - [11072] = 10719, - [11073] = 10720, - [11074] = 10640, - [11075] = 11075, - [11076] = 10718, - [11077] = 10654, - [11078] = 10686, - [11079] = 10639, - [11080] = 10719, - [11081] = 10649, - [11082] = 10660, - [11083] = 10732, - [11084] = 10654, - [11085] = 10686, + [11050] = 10671, + [11051] = 11051, + [11052] = 10642, + [11053] = 10648, + [11054] = 10699, + [11055] = 11055, + [11056] = 10680, + [11057] = 11057, + [11058] = 10820, + [11059] = 10655, + [11060] = 10645, + [11061] = 11061, + [11062] = 10657, + [11063] = 10642, + [11064] = 10648, + [11065] = 10680, + [11066] = 10658, + [11067] = 10632, + [11068] = 10659, + [11069] = 11069, + [11070] = 10645, + [11071] = 10648, + [11072] = 10680, + [11073] = 10646, + [11074] = 11074, + [11075] = 10823, + [11076] = 10686, + [11077] = 10643, + [11078] = 10648, + [11079] = 10680, + [11080] = 10686, + [11081] = 10624, + [11082] = 11082, + [11083] = 10709, + [11084] = 10648, + [11085] = 10680, [11086] = 11086, - [11087] = 10651, - [11088] = 10775, - [11089] = 11089, - [11090] = 10654, - [11091] = 10686, - [11092] = 11092, - [11093] = 11093, - [11094] = 11094, - [11095] = 10654, - [11096] = 10686, - [11097] = 10665, - [11098] = 11098, - [11099] = 10654, - [11100] = 10686, - [11101] = 10668, - [11102] = 11102, - [11103] = 10654, - [11104] = 10686, - [11105] = 10667, - [11106] = 11106, - [11107] = 10654, - [11108] = 10686, - [11109] = 11109, - [11110] = 10726, - [11111] = 10654, - [11112] = 10686, - [11113] = 11113, - [11114] = 11114, - [11115] = 10654, - [11116] = 10686, - [11117] = 10816, - [11118] = 10654, - [11119] = 10686, - [11120] = 10730, - [11121] = 10653, - [11122] = 10661, - [11123] = 10636, - [11124] = 10772, - [11125] = 11098, - [11126] = 10730, - [11127] = 10684, - [11128] = 11094, - [11129] = 11129, - [11130] = 10894, - [11131] = 10695, - [11132] = 11132, + [11087] = 11087, + [11088] = 11088, + [11089] = 10648, + [11090] = 10680, + [11091] = 10623, + [11092] = 10624, + [11093] = 10648, + [11094] = 10680, + [11095] = 10881, + [11096] = 11096, + [11097] = 10648, + [11098] = 10680, + [11099] = 10646, + [11100] = 10695, + [11101] = 10648, + [11102] = 10680, + [11103] = 10712, + [11104] = 11104, + [11105] = 10648, + [11106] = 10680, + [11107] = 10757, + [11108] = 11108, + [11109] = 10648, + [11110] = 10680, + [11111] = 11111, + [11112] = 10648, + [11113] = 10680, + [11114] = 10628, + [11115] = 10628, + [11116] = 10640, + [11117] = 10887, + [11118] = 10671, + [11119] = 11119, + [11120] = 10668, + [11121] = 11121, + [11122] = 11122, + [11123] = 11123, + [11124] = 10933, + [11125] = 11125, + [11126] = 11126, + [11127] = 10686, + [11128] = 11128, + [11129] = 10648, + [11130] = 10887, + [11131] = 10881, + [11132] = 10737, [11133] = 11133, - [11134] = 10775, - [11135] = 11135, - [11136] = 10720, - [11137] = 11137, - [11138] = 10640, - [11139] = 11039, - [11140] = 10730, - [11141] = 11141, - [11142] = 10775, - [11143] = 10633, - [11144] = 10653, - [11145] = 10647, - [11146] = 10729, - [11147] = 10991, - [11148] = 11039, - [11149] = 10725, - [11150] = 10745, - [11151] = 11151, - [11152] = 11114, + [11134] = 10645, + [11135] = 10922, + [11136] = 11096, + [11137] = 10871, + [11138] = 10689, + [11139] = 10646, + [11140] = 10708, + [11141] = 11074, + [11142] = 10645, + [11143] = 10683, + [11144] = 10646, + [11145] = 10773, + [11146] = 10961, + [11147] = 10976, + [11148] = 11148, + [11149] = 11096, + [11150] = 10861, + [11151] = 10716, + [11152] = 10815, [11153] = 11153, - [11154] = 10695, - [11155] = 10853, - [11156] = 10893, + [11154] = 10985, + [11155] = 10747, + [11156] = 10889, [11157] = 11157, - [11158] = 10772, - [11159] = 10731, - [11160] = 10719, - [11161] = 10720, - [11162] = 10640, - [11163] = 11163, - [11164] = 10664, - [11165] = 10775, - [11166] = 11166, - [11167] = 10635, + [11158] = 10664, + [11159] = 10662, + [11160] = 11160, + [11161] = 11161, + [11162] = 11162, + [11163] = 10930, + [11164] = 11164, + [11165] = 10696, + [11166] = 10815, + [11167] = 10623, [11168] = 11168, - [11169] = 11169, - [11170] = 10747, - [11171] = 11171, - [11172] = 10752, - [11173] = 10861, - [11174] = 10789, - [11175] = 10635, - [11176] = 10986, - [11177] = 10857, - [11178] = 10660, - [11179] = 10666, - [11180] = 10789, - [11181] = 10692, - [11182] = 10636, - [11183] = 10660, - [11184] = 11184, - [11185] = 10857, - [11186] = 10653, - [11187] = 11187, - [11188] = 10861, - [11189] = 10986, - [11190] = 10653, - [11191] = 10687, - [11192] = 10999, - [11193] = 10636, - [11194] = 10771, + [11169] = 10889, + [11170] = 11170, + [11171] = 10790, + [11172] = 10699, + [11173] = 10716, + [11174] = 10790, + [11175] = 11175, + [11176] = 10758, + [11177] = 10654, + [11178] = 10651, + [11179] = 10628, + [11180] = 11180, + [11181] = 10703, + [11182] = 10686, + [11183] = 11183, + [11184] = 10853, + [11185] = 10677, + [11186] = 11186, + [11187] = 10887, + [11188] = 11188, + [11189] = 11189, + [11190] = 10627, + [11191] = 10665, + [11192] = 10666, + [11193] = 11133, + [11194] = 10686, [11195] = 10667, - [11196] = 10632, - [11197] = 10653, - [11198] = 10635, - [11199] = 10988, - [11200] = 11200, - [11201] = 11201, - [11202] = 10861, - [11203] = 11203, - [11204] = 8211, - [11205] = 11205, - [11206] = 10821, - [11207] = 10653, - [11208] = 10636, - [11209] = 11209, - [11210] = 10706, - [11211] = 10709, - [11212] = 11212, - [11213] = 10863, - [11214] = 11214, - [11215] = 11215, - [11216] = 10689, - [11217] = 10661, - [11218] = 10662, - [11219] = 10665, - [11220] = 10668, - [11221] = 10730, - [11222] = 10821, - [11223] = 10655, - [11224] = 10821, - [11225] = 2799, - [11226] = 11226, - [11227] = 11227, - [11228] = 11228, - [11229] = 10734, - [11230] = 11230, - [11231] = 10636, - [11232] = 11232, - [11233] = 11233, - [11234] = 11234, + [11196] = 10644, + [11197] = 10623, + [11198] = 10669, + [11199] = 10700, + [11200] = 10853, + [11201] = 10663, + [11202] = 10793, + [11203] = 10651, + [11204] = 11108, + [11205] = 10654, + [11206] = 10628, + [11207] = 10640, + [11208] = 10660, + [11209] = 10699, + [11210] = 10671, + [11211] = 11211, + [11212] = 10785, + [11213] = 10744, + [11214] = 10645, + [11215] = 10646, + [11216] = 11216, + [11217] = 10646, + [11218] = 10645, + [11219] = 10689, + [11220] = 2805, + [11221] = 10744, + [11222] = 10709, + [11223] = 11223, + [11224] = 11224, + [11225] = 10686, + [11226] = 10793, + [11227] = 10785, + [11228] = 10624, + [11229] = 11229, + [11230] = 9253, + [11231] = 10817, + [11232] = 10793, + [11233] = 10731, + [11234] = 11189, [11235] = 11235, [11236] = 11236, [11237] = 11237, - [11238] = 10742, - [11239] = 10695, + [11238] = 10699, + [11239] = 10654, [11240] = 11240, - [11241] = 11168, - [11242] = 10747, - [11243] = 10656, - [11244] = 10772, - [11245] = 10667, - [11246] = 10635, - [11247] = 11247, + [11241] = 11241, + [11242] = 10703, + [11243] = 10642, + [11244] = 11244, + [11245] = 11245, + [11246] = 10646, + [11247] = 10689, [11248] = 11248, - [11249] = 11249, - [11250] = 10700, - [11251] = 11251, - [11252] = 11039, - [11253] = 10707, + [11249] = 10686, + [11250] = 8162, + [11251] = 11122, + [11252] = 11252, + [11253] = 10628, [11254] = 11254, - [11255] = 10688, + [11255] = 10623, [11256] = 11256, - [11257] = 10752, - [11258] = 11205, - [11259] = 11259, - [11260] = 10752, - [11261] = 11261, - [11262] = 11262, - [11263] = 10719, - [11264] = 11264, - [11265] = 10863, - [11266] = 10720, - [11267] = 10676, - [11268] = 10745, - [11269] = 10640, - [11270] = 11270, - [11271] = 10664, - [11272] = 10775, - [11273] = 10689, - [11274] = 10664, - [11275] = 10627, - [11276] = 10636, - [11277] = 10642, - [11278] = 10635, - [11279] = 10857, - [11280] = 10698, - [11281] = 10664, - [11282] = 10666, - [11283] = 10861, - [11284] = 11098, - [11285] = 10684, - [11286] = 11094, - [11287] = 11129, - [11288] = 10894, - [11289] = 10707, - [11290] = 11132, - [11291] = 11291, - [11292] = 10961, - [11293] = 11293, - [11294] = 11141, - [11295] = 11295, - [11296] = 10633, - [11297] = 10789, - [11298] = 10961, - [11299] = 10729, - [11300] = 10991, - [11301] = 10789, - [11302] = 11151, - [11303] = 11114, - [11304] = 10893, - [11305] = 10635, - [11306] = 10775, - [11307] = 10688, - [11308] = 11169, - [11309] = 11309, - [11310] = 11132, - [11311] = 10653, - [11312] = 10988, - [11313] = 11205, - [11314] = 10726, - [11315] = 11098, - [11316] = 11094, - [11317] = 10894, - [11318] = 10635, - [11319] = 11132, - [11320] = 10642, - [11321] = 11321, - [11322] = 10675, - [11323] = 11141, - [11324] = 11324, - [11325] = 10633, - [11326] = 10653, - [11327] = 10729, + [11257] = 11257, + [11258] = 11258, + [11259] = 10665, + [11260] = 10666, + [11261] = 10750, + [11262] = 10686, + [11263] = 11119, + [11264] = 10750, + [11265] = 10643, + [11266] = 11266, + [11267] = 10844, + [11268] = 10719, + [11269] = 11027, + [11270] = 10882, + [11271] = 10640, + [11272] = 10667, + [11273] = 10644, + [11274] = 10655, + [11275] = 11189, + [11276] = 10657, + [11277] = 8230, + [11278] = 11119, + [11279] = 11121, + [11280] = 11122, + [11281] = 11123, + [11282] = 10933, + [11283] = 10873, + [11284] = 11126, + [11285] = 10646, + [11286] = 10643, + [11287] = 11241, + [11288] = 10922, + [11289] = 10881, + [11290] = 10871, + [11291] = 10881, + [11292] = 10621, + [11293] = 10708, + [11294] = 11074, + [11295] = 10686, + [11296] = 10773, + [11297] = 10961, + [11298] = 10861, + [11299] = 10887, + [11300] = 10861, + [11301] = 10686, + [11302] = 10930, + [11303] = 10650, + [11304] = 10889, + [11305] = 10645, + [11306] = 11133, + [11307] = 10700, + [11308] = 11096, + [11309] = 11119, + [11310] = 11122, + [11311] = 10933, + [11312] = 11108, + [11313] = 11126, + [11314] = 10693, + [11315] = 10658, + [11316] = 10790, + [11317] = 10922, + [11318] = 11318, + [11319] = 10871, + [11320] = 10686, + [11321] = 10708, + [11322] = 10645, + [11323] = 10773, + [11324] = 10961, + [11325] = 10646, + [11326] = 10930, + [11327] = 10985, [11328] = 11328, - [11329] = 11151, - [11330] = 11114, - [11331] = 10674, - [11332] = 11169, - [11333] = 11333, - [11334] = 10695, - [11335] = 10734, - [11336] = 10988, - [11337] = 11205, - [11338] = 11338, - [11339] = 11098, - [11340] = 11094, - [11341] = 10894, - [11342] = 11342, - [11343] = 11132, - [11344] = 11344, - [11345] = 11345, - [11346] = 11141, - [11347] = 10633, - [11348] = 11348, - [11349] = 10729, + [11329] = 10644, + [11330] = 11133, + [11331] = 10700, + [11332] = 10985, + [11333] = 11119, + [11334] = 11122, + [11335] = 10933, + [11336] = 11336, + [11337] = 11126, + [11338] = 10873, + [11339] = 10646, + [11340] = 10922, + [11341] = 10871, + [11342] = 10757, + [11343] = 10708, + [11344] = 10694, + [11345] = 10773, + [11346] = 10961, + [11347] = 10834, + [11348] = 10930, + [11349] = 10766, [11350] = 11350, - [11351] = 11151, - [11352] = 11114, - [11353] = 11353, - [11354] = 11169, - [11355] = 10772, - [11356] = 10660, - [11357] = 10988, - [11358] = 11205, - [11359] = 10765, - [11360] = 11098, - [11361] = 11094, - [11362] = 10894, - [11363] = 10680, - [11364] = 11132, - [11365] = 11365, - [11366] = 11366, - [11367] = 10633, - [11368] = 10664, - [11369] = 10729, - [11370] = 10664, - [11371] = 11151, - [11372] = 11114, - [11373] = 11141, - [11374] = 11169, - [11375] = 11129, - [11376] = 10735, - [11377] = 10988, - [11378] = 11205, - [11379] = 11379, - [11380] = 11098, - [11381] = 11094, - [11382] = 10894, - [11383] = 10689, - [11384] = 11132, - [11385] = 10705, - [11386] = 10706, - [11387] = 10633, - [11388] = 10672, - [11389] = 10729, - [11390] = 11390, - [11391] = 11151, - [11392] = 11114, - [11393] = 10634, - [11394] = 11169, - [11395] = 11395, - [11396] = 10747, - [11397] = 10988, - [11398] = 11205, - [11399] = 10747, - [11400] = 11098, - [11401] = 11094, - [11402] = 10894, - [11403] = 10661, - [11404] = 11132, - [11405] = 10664, - [11406] = 10633, - [11407] = 11407, - [11408] = 10729, - [11409] = 11114, - [11410] = 10730, - [11411] = 11169, - [11412] = 11039, - [11413] = 10988, - [11414] = 11205, - [11415] = 10700, - [11416] = 11098, - [11417] = 11094, - [11418] = 10635, - [11419] = 11132, - [11420] = 10695, - [11421] = 11421, - [11422] = 10729, - [11423] = 11114, - [11424] = 10661, - [11425] = 10988, - [11426] = 11098, - [11427] = 11094, - [11428] = 11132, - [11429] = 10729, - [11430] = 11114, - [11431] = 10988, - [11432] = 11098, - [11433] = 11094, - [11434] = 11132, - [11435] = 10729, - [11436] = 11114, - [11437] = 10988, - [11438] = 11098, - [11439] = 11094, - [11440] = 11114, - [11441] = 10988, - [11442] = 11098, - [11443] = 11094, - [11444] = 11114, - [11445] = 10988, - [11446] = 11098, - [11447] = 11094, - [11448] = 11114, - [11449] = 10988, - [11450] = 11098, - [11451] = 11094, - [11452] = 11114, - [11453] = 10988, - [11454] = 11098, - [11455] = 11094, - [11456] = 11114, - [11457] = 10988, - [11458] = 11098, - [11459] = 11094, - [11460] = 11114, - [11461] = 10988, - [11462] = 11098, - [11463] = 11094, - [11464] = 11114, - [11465] = 10988, - [11466] = 11098, - [11467] = 11094, - [11468] = 11114, - [11469] = 10988, - [11470] = 11098, - [11471] = 11094, - [11472] = 11114, - [11473] = 10988, - [11474] = 11094, - [11475] = 11114, - [11476] = 10988, - [11477] = 11094, - [11478] = 11094, - [11479] = 11094, - [11480] = 11480, - [11481] = 10725, - [11482] = 11129, - [11483] = 11344, - [11484] = 11321, - [11485] = 11007, - [11486] = 10752, - [11487] = 10719, - [11488] = 10653, - [11489] = 10642, - [11490] = 10635, - [11491] = 10660, + [11351] = 11133, + [11352] = 10700, + [11353] = 10976, + [11354] = 11119, + [11355] = 11122, + [11356] = 10933, + [11357] = 10645, + [11358] = 11126, + [11359] = 10966, + [11360] = 10645, + [11361] = 10871, + [11362] = 10651, + [11363] = 10708, + [11364] = 10636, + [11365] = 10773, + [11366] = 10961, + [11367] = 10724, + [11368] = 10930, + [11369] = 11369, + [11370] = 11370, + [11371] = 11133, + [11372] = 10700, + [11373] = 10655, + [11374] = 11119, + [11375] = 11122, + [11376] = 10933, + [11377] = 10694, + [11378] = 11126, + [11379] = 10823, + [11380] = 10964, + [11381] = 10871, + [11382] = 10659, + [11383] = 10708, + [11384] = 10625, + [11385] = 10773, + [11386] = 10961, + [11387] = 11387, + [11388] = 10930, + [11389] = 10624, + [11390] = 10646, + [11391] = 11133, + [11392] = 10700, + [11393] = 10985, + [11394] = 11119, + [11395] = 11122, + [11396] = 10933, + [11397] = 10985, + [11398] = 11126, + [11399] = 10640, + [11400] = 10871, + [11401] = 10637, + [11402] = 10708, + [11403] = 10961, + [11404] = 10834, + [11405] = 10930, + [11406] = 10654, + [11407] = 11133, + [11408] = 10700, + [11409] = 11223, + [11410] = 11119, + [11411] = 11122, + [11412] = 10709, + [11413] = 11126, + [11414] = 10625, + [11415] = 10703, + [11416] = 10708, + [11417] = 10961, + [11418] = 11123, + [11419] = 11133, + [11420] = 11119, + [11421] = 11122, + [11422] = 11126, + [11423] = 10708, + [11424] = 10961, + [11425] = 11133, + [11426] = 11119, + [11427] = 11122, + [11428] = 11126, + [11429] = 10708, + [11430] = 10961, + [11431] = 11133, + [11432] = 11119, + [11433] = 11122, + [11434] = 10961, + [11435] = 11133, + [11436] = 11119, + [11437] = 11122, + [11438] = 10961, + [11439] = 11133, + [11440] = 11119, + [11441] = 11122, + [11442] = 10961, + [11443] = 11133, + [11444] = 11119, + [11445] = 11122, + [11446] = 10961, + [11447] = 11133, + [11448] = 11119, + [11449] = 11122, + [11450] = 10961, + [11451] = 11133, + [11452] = 11119, + [11453] = 11122, + [11454] = 10961, + [11455] = 11133, + [11456] = 11119, + [11457] = 11122, + [11458] = 10961, + [11459] = 11133, + [11460] = 11119, + [11461] = 11122, + [11462] = 10961, + [11463] = 11133, + [11464] = 11119, + [11465] = 11122, + [11466] = 10961, + [11467] = 11133, + [11468] = 11122, + [11469] = 10961, + [11470] = 11133, + [11471] = 11122, + [11472] = 11122, + [11473] = 11122, + [11474] = 11223, + [11475] = 10834, + [11476] = 11123, + [11477] = 10621, + [11478] = 11478, + [11479] = 10716, + [11480] = 10651, + [11481] = 11481, + [11482] = 10873, + [11483] = 10744, + [11484] = 10637, + [11485] = 10638, + [11486] = 11126, + [11487] = 10660, + [11488] = 11096, + [11489] = 10640, + [11490] = 10668, + [11491] = 10638, [11492] = 11492, - [11493] = 10706, - [11494] = 10660, - [11495] = 11495, - [11496] = 11496, + [11493] = 11074, + [11494] = 11494, + [11495] = 10793, + [11496] = 10640, [11497] = 11497, - [11498] = 10682, - [11499] = 10991, - [11500] = 10766, - [11501] = 11501, - [11502] = 10775, - [11503] = 11503, - [11504] = 11504, - [11505] = 10662, - [11506] = 10747, - [11507] = 11507, - [11508] = 10643, - [11509] = 10664, - [11510] = 10630, - [11511] = 10682, - [11512] = 10747, - [11513] = 11513, - [11514] = 10641, + [11498] = 11498, + [11499] = 10622, + [11500] = 10719, + [11501] = 10835, + [11502] = 10757, + [11503] = 10668, + [11504] = 11162, + [11505] = 11505, + [11506] = 11506, + [11507] = 10655, + [11508] = 10657, + [11509] = 10964, + [11510] = 10654, + [11511] = 10723, + [11512] = 11241, + [11513] = 10790, + [11514] = 10658, [11515] = 11515, - [11516] = 10742, - [11517] = 10689, - [11518] = 10685, - [11519] = 10707, - [11520] = 10718, - [11521] = 10653, - [11522] = 11168, - [11523] = 10642, - [11524] = 10636, - [11525] = 11379, - [11526] = 10645, - [11527] = 10686, - [11528] = 10635, - [11529] = 10642, - [11530] = 10647, - [11531] = 10635, - [11532] = 11169, - [11533] = 10649, - [11534] = 11534, - [11535] = 10682, - [11536] = 10662, - [11537] = 10652, - [11538] = 10735, - [11539] = 11151, - [11540] = 10627, - [11541] = 10702, - [11542] = 10661, - [11543] = 10662, - [11544] = 10636, - [11545] = 10857, - [11546] = 10665, - [11547] = 10861, - [11548] = 10635, - [11549] = 10668, - [11550] = 10700, - [11551] = 11551, - [11552] = 10709, - [11553] = 10752, - [11554] = 10743, - [11555] = 11555, - [11556] = 10851, - [11557] = 11557, - [11558] = 10692, - [11559] = 11559, - [11560] = 10636, - [11561] = 10643, - [11562] = 10707, - [11563] = 10725, - [11564] = 11007, - [11565] = 10682, - [11566] = 10665, - [11567] = 10651, - [11568] = 11568, - [11569] = 10683, - [11570] = 10851, - [11571] = 11571, - [11572] = 10661, - [11573] = 10857, - [11574] = 10635, - [11575] = 10661, - [11576] = 10662, - [11577] = 10665, - [11578] = 10668, - [11579] = 10660, - [11580] = 10726, - [11581] = 10897, - [11582] = 10627, - [11583] = 10651, - [11584] = 10688, - [11585] = 11585, - [11586] = 10636, + [11516] = 11162, + [11517] = 10640, + [11518] = 10820, + [11519] = 11257, + [11520] = 11520, + [11521] = 10907, + [11522] = 10651, + [11523] = 10694, + [11524] = 11096, + [11525] = 11525, + [11526] = 10913, + [11527] = 10793, + [11528] = 11528, + [11529] = 10699, + [11530] = 10758, + [11531] = 11531, + [11532] = 10699, + [11533] = 2842, + [11534] = 10686, + [11535] = 10655, + [11536] = 10657, + [11537] = 10658, + [11538] = 10659, + [11539] = 10624, + [11540] = 10926, + [11541] = 10834, + [11542] = 11542, + [11543] = 11543, + [11544] = 11544, + [11545] = 10689, + [11546] = 10659, + [11547] = 10654, + [11548] = 10887, + [11549] = 10712, + [11550] = 10757, + [11551] = 10686, + [11552] = 10719, + [11553] = 10665, + [11554] = 11096, + [11555] = 10835, + [11556] = 10644, + [11557] = 10873, + [11558] = 11558, + [11559] = 11241, + [11560] = 10646, + [11561] = 11244, + [11562] = 10683, + [11563] = 11563, + [11564] = 11564, + [11565] = 11248, + [11566] = 10655, + [11567] = 11567, + [11568] = 10882, + [11569] = 10985, + [11570] = 11570, + [11571] = 10623, + [11572] = 10729, + [11573] = 10654, + [11574] = 10817, + [11575] = 11575, + [11576] = 8193, + [11577] = 11577, + [11578] = 10966, + [11579] = 10729, + [11580] = 10834, + [11581] = 11581, + [11582] = 11123, + [11583] = 10621, + [11584] = 11478, + [11585] = 10873, + [11586] = 10628, [11587] = 11587, - [11588] = 11129, - [11589] = 11344, - [11590] = 11321, - [11591] = 10692, - [11592] = 10857, - [11593] = 10735, - [11594] = 10991, - [11595] = 10742, - [11596] = 11168, - [11597] = 11379, - [11598] = 10688, - [11599] = 10745, - [11600] = 11600, - [11601] = 10861, - [11602] = 11129, - [11603] = 11344, - [11604] = 11321, - [11605] = 10630, - [11606] = 11606, - [11607] = 11137, - [11608] = 10991, - [11609] = 11168, - [11610] = 11379, - [11611] = 10861, - [11612] = 10743, - [11613] = 10665, - [11614] = 11344, - [11615] = 11321, - [11616] = 11137, - [11617] = 10745, - [11618] = 10661, - [11619] = 11168, - [11620] = 11379, - [11621] = 10688, - [11622] = 10743, - [11623] = 11344, - [11624] = 11321, - [11625] = 10666, - [11626] = 10786, - [11627] = 10668, - [11628] = 11168, - [11629] = 11379, - [11630] = 10632, - [11631] = 11344, - [11632] = 11321, - [11633] = 10720, - [11634] = 10668, - [11635] = 11168, - [11636] = 11379, - [11637] = 11637, - [11638] = 10652, + [11588] = 11074, + [11589] = 10623, + [11590] = 11162, + [11591] = 11257, + [11592] = 11592, + [11593] = 11593, + [11594] = 10628, + [11595] = 11004, + [11596] = 11123, + [11597] = 10621, + [11598] = 11478, + [11599] = 10893, + [11600] = 10689, + [11601] = 10628, + [11602] = 11074, + [11603] = 11162, + [11604] = 11257, + [11605] = 11605, + [11606] = 10737, + [11607] = 11318, + [11608] = 11121, + [11609] = 11478, + [11610] = 11478, + [11611] = 10671, + [11612] = 10646, + [11613] = 11162, + [11614] = 11257, + [11615] = 10655, + [11616] = 11336, + [11617] = 10621, + [11618] = 11478, + [11619] = 11336, + [11620] = 10628, + [11621] = 11336, + [11622] = 11162, + [11623] = 11257, + [11624] = 10873, + [11625] = 10621, + [11626] = 11478, + [11627] = 10646, + [11628] = 11628, + [11629] = 11162, + [11630] = 11257, + [11631] = 10683, + [11632] = 10834, + [11633] = 11505, + [11634] = 11162, + [11635] = 11257, + [11636] = 10686, + [11637] = 10737, + [11638] = 11257, [11639] = 11639, - [11640] = 11168, - [11641] = 11379, - [11642] = 10676, - [11643] = 10660, - [11644] = 11379, - [11645] = 10734, - [11646] = 11379, - [11647] = 10709, - [11648] = 11379, - [11649] = 10661, - [11650] = 11379, - [11651] = 10655, - [11652] = 11379, - [11653] = 10658, - [11654] = 11379, - [11655] = 10653, - [11656] = 11379, - [11657] = 10893, - [11658] = 11379, - [11659] = 10961, - [11660] = 11379, - [11661] = 11661, - [11662] = 11379, - [11663] = 11663, - [11664] = 11379, - [11665] = 10858, - [11666] = 11379, - [11667] = 10747, - [11668] = 11379, - [11669] = 11669, - [11670] = 11670, - [11671] = 10673, - [11672] = 10654, - [11673] = 10896, - [11674] = 10660, - [11675] = 10694, - [11676] = 10789, - [11677] = 10661, - [11678] = 11678, - [11679] = 10664, - [11680] = 11680, - [11681] = 10642, - [11682] = 11682, - [11683] = 10653, - [11684] = 10694, - [11685] = 11685, - [11686] = 10893, - [11687] = 10660, - [11688] = 10896, - [11689] = 11682, - [11690] = 10635, - [11691] = 10896, - [11692] = 11682, - [11693] = 11693, - [11694] = 10896, - [11695] = 11682, - [11696] = 10688, - [11697] = 10896, - [11698] = 11682, - [11699] = 10982, - [11700] = 10896, - [11701] = 11682, - [11702] = 10832, - [11703] = 10896, - [11704] = 11682, - [11705] = 11705, - [11706] = 11682, - [11707] = 11682, - [11708] = 11682, - [11709] = 11682, - [11710] = 11682, - [11711] = 11682, - [11712] = 11682, - [11713] = 11682, - [11714] = 11682, - [11715] = 11682, - [11716] = 11682, - [11717] = 11682, - [11718] = 11682, - [11719] = 10653, - [11720] = 10664, - [11721] = 10642, - [11722] = 11682, - [11723] = 10639, - [11724] = 10647, - [11725] = 10674, - [11726] = 10981, - [11727] = 10981, - [11728] = 10981, - [11729] = 10981, - [11730] = 10981, - [11731] = 10981, - [11732] = 10981, - [11733] = 11733, + [11640] = 11257, + [11641] = 10686, + [11642] = 11257, + [11643] = 10985, + [11644] = 11257, + [11645] = 10662, + [11646] = 11257, + [11647] = 10663, + [11648] = 11257, + [11649] = 10985, + [11650] = 11257, + [11651] = 11651, + [11652] = 11257, + [11653] = 10716, + [11654] = 11257, + [11655] = 10834, + [11656] = 11257, + [11657] = 11657, + [11658] = 11257, + [11659] = 11659, + [11660] = 11257, + [11661] = 11318, + [11662] = 11257, + [11663] = 10655, + [11664] = 10695, + [11665] = 10623, + [11666] = 11505, + [11667] = 11153, + [11668] = 10731, + [11669] = 10907, + [11670] = 10907, + [11671] = 10655, + [11672] = 10913, + [11673] = 10926, + [11674] = 11244, + [11675] = 10881, + [11676] = 10959, + [11677] = 10913, + [11678] = 10926, + [11679] = 10640, + [11680] = 10729, + [11681] = 10654, + [11682] = 11153, + [11683] = 10959, + [11684] = 11684, + [11685] = 11153, + [11686] = 10959, + [11687] = 10731, + [11688] = 11153, + [11689] = 10959, + [11690] = 11690, + [11691] = 11153, + [11692] = 10959, + [11693] = 10820, + [11694] = 11153, + [11695] = 10959, + [11696] = 10744, + [11697] = 11153, + [11698] = 10959, + [11699] = 10627, + [11700] = 10959, + [11701] = 10959, + [11702] = 10959, + [11703] = 10959, + [11704] = 10959, + [11705] = 10959, + [11706] = 10959, + [11707] = 10959, + [11708] = 10959, + [11709] = 10959, + [11710] = 10959, + [11711] = 10959, + [11712] = 10959, + [11713] = 10689, + [11714] = 10670, + [11715] = 10861, + [11716] = 11716, + [11717] = 11717, + [11718] = 10693, + [11719] = 11248, + [11720] = 11157, + [11721] = 11157, + [11722] = 11157, + [11723] = 11157, + [11724] = 11157, + [11725] = 11157, + [11726] = 11157, + [11727] = 10686, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -17087,195 +17081,195 @@ static const TSSymbol ts_supertype_map_entries[] = { static const TSCharacterRange sym_identifier_character_set_1[] = { {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, - {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, - {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, - {0x3f7, 0x481}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, - {0x66e, 0x66f}, {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, - {0x712, 0x72f}, {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, - {0x824, 0x824}, {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, - {0x93d, 0x93d}, {0x950, 0x950}, {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, - {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, - {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, - {0xa5e, 0xa5e}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, - {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, - {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, - {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, - {0xbd0, 0xbd0}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, - {0xc60, 0xc61}, {0xc80, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, - {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, - {0xd54, 0xd56}, {0xd5f, 0xd61}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, - {0xe01, 0xe30}, {0xe32, 0xe32}, {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, - {0xea7, 0xeb0}, {0xeb2, 0xeb2}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, - {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, - {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, - {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, - {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, - {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, - {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, - {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, - {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, - {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, - {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, - {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, - {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, - {0x2090, 0x209c}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, - {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, - {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, - {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, - {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, - {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, - {0xa62a, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, - {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, - {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, - {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, - {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, - {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, - {0xab70, 0xabe2}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, - {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, - {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, - {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xff9d}, {0xffa0, 0xffbe}, - {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, - {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, - {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, - {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, - {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, - {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, - {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, - {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, - {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10d4a, 0x10d65}, - {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, - {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, - {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, {0x111dc, 0x111dc}, - {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, - {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133d, 0x1133d}, - {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, {0x113d1, 0x113d1}, - {0x113d3, 0x113d3}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, - {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, - {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, - {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, - {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, - {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, - {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, - {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, - {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, - {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, - {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, - {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, - {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, - {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, - {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, - {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, - {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, - {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, - {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, - {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, - {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, - {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, -}; - -static const TSCharacterRange sym_identifier_character_set_2[] = { - {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, - {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, - {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, - {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, - {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, - {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, - {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x897, 0x8e1}, - {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, - {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, - {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, - {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, {0xa59, 0xa5c}, - {0xa5e, 0xa5e}, {0xa66, 0xa75}, {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, - {0xab5, 0xab9}, {0xabc, 0xac5}, {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, {0xaf9, 0xaff}, - {0xb01, 0xb03}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3c, 0xb44}, - {0xb47, 0xb48}, {0xb4b, 0xb4d}, {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, {0xb82, 0xb83}, + {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x17e}, {0x180, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, + {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, + {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, + {0x620, 0x64a}, {0x66e, 0x66f}, {0x671, 0x6d3}, {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, + {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, + {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, + {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, + {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, + {0x9fc, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, + {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa72, 0xa74}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, + {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, + {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, - {0xbae, 0xbb9}, {0xbbe, 0xbc2}, {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, - {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, - {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, - {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, - {0xcf1, 0xcf3}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, - {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, - {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, - {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, - {0xec6, 0xec6}, {0xec8, 0xece}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, - {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, - {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, - {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, - {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, {0x1369, 0x1371}, + {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xc05, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, + {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc80, 0xc80}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, + {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, + {0xd4e, 0xd4e}, {0xd54, 0xd56}, {0xd5f, 0xd61}, {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, + {0xdc0, 0xdc6}, {0xe01, 0xe30}, {0xe32, 0xe32}, {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, + {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb2}, {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, + {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, + {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, + {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, + {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, - {0x1700, 0x1715}, {0x171f, 0x1734}, {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, {0x17d7, 0x17d7}, - {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, - {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, - {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, - {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, - {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, - {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, - {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, - {0x2054, 0x2054}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, - {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, - {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, - {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, - {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, - {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, - {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, - {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa827}, - {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, - {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, - {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, - {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, - {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, - {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, - {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, - {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, - {0xff65, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, - {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, - {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, - {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, - {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, - {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, - {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, - {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, - {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, - {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10d40, 0x10d65}, - {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, {0x10f27, 0x10f27}, - {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, - {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, {0x11180, 0x111c4}, - {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, - {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, - {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, - {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, - {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, {0x11450, 0x11459}, - {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, - {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, - {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, - {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, - {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, - {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, - {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, - {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, {0x11fb0, 0x11fb0}, - {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, {0x14400, 0x14646}, - {0x16100, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, - {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, {0x16e40, 0x16e7f}, - {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, + {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, + {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, + {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, + {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, {0x1c5a, 0x1c7d}, {0x1c80, 0x1c8a}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, + {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, + {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, + {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, + {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, + {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212b, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, + {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, + {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, + {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, + {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, + {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, + {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, + {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, + {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, + {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, + {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, + {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, + {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, + {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, + {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xff9d}, + {0xffa0, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, + {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, + {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, + {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, + {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, + {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, + {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, + {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, + {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, + {0x10d4a, 0x10d65}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, + {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, + {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, {0x111da, 0x111da}, + {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, + {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, + {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, {0x11390, 0x113b5}, {0x113b7, 0x113b7}, + {0x113d1, 0x113d1}, {0x113d3, 0x113d3}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, + {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, {0x11740, 0x11746}, + {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, {0x1193f, 0x1193f}, + {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, + {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, + {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, + {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, + {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x13460, 0x143fa}, {0x14400, 0x14646}, {0x16100, 0x1611d}, {0x16800, 0x16a38}, + {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, + {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, - {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1ccf0, 0x1ccf9}, - {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, - {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, - {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, - {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, - {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, - {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, - {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, - {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, - {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, + {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, + {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, + {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, + {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, + {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, + {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e5d0, 0x1e5ed}, {0x1e5f0, 0x1e5f0}, {0x1e7e0, 0x1e7e6}, + {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, - {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, - {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, - {0x31350, 0x323af}, {0xe0100, 0xe01ef}, + {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, + {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, +}; + +static const TSCharacterRange sym_identifier_character_set_2[] = { + {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, + {0xb7, 0xb7}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x17e}, {0x180, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, + {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, + {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, + {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, + {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, + {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, + {0x897, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, + {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, + {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, + {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, + {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa75}, {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, + {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabc, 0xac5}, {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, + {0xaf9, 0xaff}, {0xb01, 0xb03}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, + {0xb3c, 0xb44}, {0xb47, 0xb48}, {0xb4b, 0xb4d}, {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, + {0xb82, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, + {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbbe, 0xbc2}, {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, + {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, + {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, + {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, + {0xce6, 0xcef}, {0xcf1, 0xcf3}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, + {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, + {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, + {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, + {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xece}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, + {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, + {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, + {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, + {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, + {0x1369, 0x1371}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, + {0x16ee, 0x16f8}, {0x1700, 0x1715}, {0x171f, 0x1734}, {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, + {0x17d7, 0x17d7}, {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, + {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, + {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, + {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c8a}, + {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, + {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, + {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, + {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, + {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, + {0x212b, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, + {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, + {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, + {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, + {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, + {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7cd}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7dc}, + {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, + {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, + {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, + {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, + {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, + {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, + {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, + {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, + {0xff41, 0xff5a}, {0xff65, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, + {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, + {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, + {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, + {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x105c0, 0x105f3}, + {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, + {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, + {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, + {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, + {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, + {0x10d40, 0x10d65}, {0x10d69, 0x10d6d}, {0x10d6f, 0x10d85}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10ec2, 0x10ec4}, {0x10efc, 0x10f1c}, + {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, + {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, + {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, + {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, + {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11380, 0x11389}, {0x1138b, 0x1138b}, {0x1138e, 0x1138e}, + {0x11390, 0x113b5}, {0x113b7, 0x113c0}, {0x113c2, 0x113c2}, {0x113c5, 0x113c5}, {0x113c7, 0x113ca}, {0x113cc, 0x113d3}, {0x113e1, 0x113e2}, {0x11400, 0x1144a}, + {0x11450, 0x11459}, {0x1145e, 0x11461}, {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, + {0x11600, 0x11640}, {0x11644, 0x11644}, {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x116d0, 0x116e3}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, + {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, + {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, + {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11bc0, 0x11be0}, {0x11bf0, 0x11bf9}, {0x11c00, 0x11c08}, + {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, + {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, + {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f5a}, + {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x13460, 0x143fa}, + {0x14400, 0x14646}, {0x16100, 0x16139}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, + {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16d40, 0x16d6c}, {0x16d70, 0x16d79}, + {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, + {0x18800, 0x18cd5}, {0x18cff, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, + {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, + {0x1ccf0, 0x1ccf9}, {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, + {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, + {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, + {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, + {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, + {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, + {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, + {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e5d0, 0x1e5fa}, {0x1e7e0, 0x1e7e6}, + {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, + {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, + {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, + {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, + {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, + {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, + {0x30000, 0x3134a}, {0x31350, 0x323af}, {0xe0100, 0xe01ef}, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -17335,7 +17329,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(437); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 1: if (lookahead == '\n') SKIP(225); @@ -17554,10 +17548,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 49: - if (lookahead == '\n') SKIP(249); + if (lookahead == '\n') SKIP(315); END_STATE(); case 50: - if (lookahead == '\n') SKIP(249); + if (lookahead == '\n') SKIP(315); if (lookahead == '\r') SKIP(49); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17572,46 +17566,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 53: - if (lookahead == '\n') SKIP(315); + if (lookahead == '\n') SKIP(249); END_STATE(); case 54: - if (lookahead == '\n') SKIP(315); + if (lookahead == '\n') SKIP(249); if (lookahead == '\r') SKIP(53); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 55: - if (lookahead == '\n') SKIP(255); + if (lookahead == '\n') SKIP(256); END_STATE(); case 56: - if (lookahead == '\n') SKIP(255); + if (lookahead == '\n') SKIP(256); if (lookahead == '\r') SKIP(55); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 57: - if (lookahead == '\n') SKIP(256); + if (lookahead == '\n') SKIP(255); END_STATE(); case 58: - if (lookahead == '\n') SKIP(256); + if (lookahead == '\n') SKIP(255); if (lookahead == '\r') SKIP(57); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 59: - if (lookahead == '\n') SKIP(269); + if (lookahead == '\n') SKIP(301); END_STATE(); case 60: - if (lookahead == '\n') SKIP(269); + if (lookahead == '\n') SKIP(301); if (lookahead == '\r') SKIP(59); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 61: - if (lookahead == '\n') SKIP(301); + if (lookahead == '\n') SKIP(269); END_STATE(); case 62: - if (lookahead == '\n') SKIP(301); + if (lookahead == '\n') SKIP(269); if (lookahead == '\r') SKIP(61); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17626,37 +17620,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 65: - if (lookahead == '\n') SKIP(316); + if (lookahead == '\n') SKIP(317); END_STATE(); case 66: - if (lookahead == '\n') SKIP(316); + if (lookahead == '\n') SKIP(317); if (lookahead == '\r') SKIP(65); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 67: - if (lookahead == '\n') SKIP(309); + if (lookahead == '\n') SKIP(305); END_STATE(); case 68: - if (lookahead == '\n') SKIP(309); + if (lookahead == '\n') SKIP(305); if (lookahead == '\r') SKIP(67); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 69: - if (lookahead == '\n') SKIP(324); + if (lookahead == '\n') SKIP(309); END_STATE(); case 70: - if (lookahead == '\n') SKIP(324); + if (lookahead == '\n') SKIP(309); if (lookahead == '\r') SKIP(69); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 71: - if (lookahead == '\n') SKIP(305); + if (lookahead == '\n') SKIP(321); END_STATE(); case 72: - if (lookahead == '\n') SKIP(305); + if (lookahead == '\n') SKIP(321); if (lookahead == '\r') SKIP(71); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17761,28 +17755,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 95: - if (lookahead == '\n') SKIP(267); + if (lookahead == '\n') SKIP(275); END_STATE(); case 96: - if (lookahead == '\n') SKIP(267); + if (lookahead == '\n') SKIP(275); if (lookahead == '\r') SKIP(95); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 97: - if (lookahead == '\n') SKIP(275); + if (lookahead == '\n') SKIP(267); END_STATE(); case 98: - if (lookahead == '\n') SKIP(275); + if (lookahead == '\n') SKIP(267); if (lookahead == '\r') SKIP(97); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 99: - if (lookahead == '\n') SKIP(297); + if (lookahead == '\n') SKIP(288); END_STATE(); case 100: - if (lookahead == '\n') SKIP(297); + if (lookahead == '\n') SKIP(288); if (lookahead == '\r') SKIP(99); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17797,10 +17791,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 103: - if (lookahead == '\n') SKIP(288); + if (lookahead == '\n') SKIP(297); END_STATE(); case 104: - if (lookahead == '\n') SKIP(288); + if (lookahead == '\n') SKIP(297); if (lookahead == '\r') SKIP(103); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -17860,28 +17854,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 117: - if (lookahead == '\n') SKIP(296); + if (lookahead == '\n') SKIP(304); END_STATE(); case 118: - if (lookahead == '\n') SKIP(296); + if (lookahead == '\n') SKIP(304); if (lookahead == '\r') SKIP(117); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 119: - if (lookahead == '\n') SKIP(304); + if (lookahead == '\n') SKIP(296); END_STATE(); case 120: - if (lookahead == '\n') SKIP(304); + if (lookahead == '\n') SKIP(296); if (lookahead == '\r') SKIP(119); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 121: - if (lookahead == '\n') SKIP(307); + if (lookahead == '\n') SKIP(311); END_STATE(); case 122: - if (lookahead == '\n') SKIP(307); + if (lookahead == '\n') SKIP(311); if (lookahead == '\r') SKIP(121); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -18011,7 +18005,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(147); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(636); - if (lookahead != 0) ADVANCE(637); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(637); END_STATE(); case 147: if (lookahead == '\n') ADVANCE(639); @@ -18020,7 +18016,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(427); if (lookahead == 'x') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(641); - if (lookahead != 0) ADVANCE(638); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(638); END_STATE(); case 148: if (lookahead == '\n') SKIP(344); @@ -18029,7 +18027,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(625); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(627); - if (lookahead != 0) ADVANCE(624); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(624); END_STATE(); case 149: if (lookahead == '\n') ADVANCE(441); @@ -18039,7 +18039,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(464); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(361); - if (lookahead != 0) ADVANCE(471); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 150: if (lookahead == '\n') ADVANCE(441); @@ -18048,7 +18050,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(464); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(361); - if (lookahead != 0) ADVANCE(471); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 151: if (lookahead == '\n') ADVANCE(441); @@ -18073,7 +18077,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(464); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(361); - if (lookahead != 0) ADVANCE(471); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 154: if (lookahead == '\n') SKIP(349); @@ -18128,19 +18134,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 166: - if (lookahead == '\n') SKIP(250); + if (lookahead == '\n') SKIP(281); END_STATE(); case 167: - if (lookahead == '\n') SKIP(250); + if (lookahead == '\n') SKIP(281); if (lookahead == '\r') SKIP(166); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 168: - if (lookahead == '\n') SKIP(281); + if (lookahead == '\n') SKIP(250); END_STATE(); case 169: - if (lookahead == '\n') SKIP(281); + if (lookahead == '\n') SKIP(250); if (lookahead == '\r') SKIP(168); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -18155,64 +18161,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 172: - if (lookahead == '\n') SKIP(325); + if (lookahead == '\n') SKIP(322); END_STATE(); case 173: - if (lookahead == '\n') SKIP(325); + if (lookahead == '\n') SKIP(322); if (lookahead == '\r') SKIP(172); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 174: - if (lookahead == '\n') SKIP(311); + if (lookahead == '\n') SKIP(325); END_STATE(); case 175: - if (lookahead == '\n') SKIP(311); + if (lookahead == '\n') SKIP(325); if (lookahead == '\r') SKIP(174); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 176: - if (lookahead == '\n') SKIP(321); + if (lookahead == '\n') SKIP(307); END_STATE(); case 177: - if (lookahead == '\n') SKIP(321); + if (lookahead == '\n') SKIP(307); if (lookahead == '\r') SKIP(176); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 178: - if (lookahead == '\n') SKIP(246); + if (lookahead == '\n') SKIP(316); END_STATE(); case 179: - if (lookahead == '\n') SKIP(246); + if (lookahead == '\n') SKIP(316); if (lookahead == '\r') SKIP(178); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 180: - if (lookahead == '\n') SKIP(263); + if (lookahead == '\n') SKIP(246); END_STATE(); case 181: - if (lookahead == '\n') SKIP(263); + if (lookahead == '\n') SKIP(246); if (lookahead == '\r') SKIP(180); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 182: - if (lookahead == '\n') SKIP(261); + if (lookahead == '\n') SKIP(263); END_STATE(); case 183: - if (lookahead == '\n') SKIP(261); + if (lookahead == '\n') SKIP(263); if (lookahead == '\r') SKIP(182); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 184: - if (lookahead == '\n') SKIP(276); + if (lookahead == '\n') SKIP(261); END_STATE(); case 185: - if (lookahead == '\n') SKIP(276); + if (lookahead == '\n') SKIP(261); if (lookahead == '\r') SKIP(184); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -18227,127 +18233,127 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(426); END_STATE(); case 188: - if (lookahead == '\n') SKIP(318); + if (lookahead == '\n') SKIP(276); END_STATE(); case 189: - if (lookahead == '\n') SKIP(318); + if (lookahead == '\n') SKIP(276); if (lookahead == '\r') SKIP(188); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 190: - if (lookahead == '\n') SKIP(317); + if (lookahead == '\n') SKIP(319); END_STATE(); case 191: - if (lookahead == '\n') SKIP(317); + if (lookahead == '\n') SKIP(319); if (lookahead == '\r') SKIP(190); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 192: - if (lookahead == '\n') SKIP(294); + if (lookahead == '\n') SKIP(318); END_STATE(); case 193: - if (lookahead == '\n') SKIP(294); + if (lookahead == '\n') SKIP(318); if (lookahead == '\r') SKIP(192); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 194: - if (lookahead == '\n') SKIP(308); + if (lookahead == '\n') SKIP(294); END_STATE(); case 195: - if (lookahead == '\n') SKIP(308); + if (lookahead == '\n') SKIP(294); if (lookahead == '\r') SKIP(194); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 196: - if (lookahead == '\n') SKIP(227); + if (lookahead == '\n') SKIP(312); END_STATE(); case 197: - if (lookahead == '\n') SKIP(227); + if (lookahead == '\n') SKIP(312); if (lookahead == '\r') SKIP(196); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 198: - if (lookahead == '\n') SKIP(279); + if (lookahead == '\n') SKIP(227); END_STATE(); case 199: - if (lookahead == '\n') SKIP(279); + if (lookahead == '\n') SKIP(227); if (lookahead == '\r') SKIP(198); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 200: - if (lookahead == '\n') SKIP(319); + if (lookahead == '\n') SKIP(279); END_STATE(); case 201: - if (lookahead == '\n') SKIP(319); + if (lookahead == '\n') SKIP(279); if (lookahead == '\r') SKIP(200); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 202: - if (lookahead == '\n') SKIP(312); + if (lookahead == '\n') SKIP(320); END_STATE(); case 203: - if (lookahead == '\n') SKIP(312); + if (lookahead == '\n') SKIP(320); if (lookahead == '\r') SKIP(202); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 204: - if (lookahead == '\n') SKIP(284); + if (lookahead == '\n') SKIP(308); END_STATE(); case 205: - if (lookahead == '\n') SKIP(284); + if (lookahead == '\n') SKIP(308); if (lookahead == '\r') SKIP(204); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 206: - if (lookahead == '\n') SKIP(295); + if (lookahead == '\n') SKIP(284); END_STATE(); case 207: - if (lookahead == '\n') SKIP(295); + if (lookahead == '\n') SKIP(284); if (lookahead == '\r') SKIP(206); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 208: - if (lookahead == '\n') SKIP(323); + if (lookahead == '\n') SKIP(295); END_STATE(); case 209: - if (lookahead == '\n') SKIP(323); + if (lookahead == '\n') SKIP(295); if (lookahead == '\r') SKIP(208); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 210: - if (lookahead == '\n') SKIP(268); + if (lookahead == '\n') SKIP(327); END_STATE(); case 211: - if (lookahead == '\n') SKIP(268); + if (lookahead == '\n') SKIP(327); if (lookahead == '\r') SKIP(210); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 212: - if (lookahead == '\n') SKIP(320); + if (lookahead == '\n') SKIP(268); END_STATE(); case 213: - if (lookahead == '\n') SKIP(320); + if (lookahead == '\n') SKIP(268); if (lookahead == '\r') SKIP(212); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); END_STATE(); case 214: - if (lookahead == '\n') SKIP(327); + if (lookahead == '\n') SKIP(324); END_STATE(); case 215: - if (lookahead == '\n') SKIP(327); + if (lookahead == '\n') SKIP(324); if (lookahead == '\r') SKIP(214); if (lookahead == 'U') ADVANCE(434); if (lookahead == 'u') ADVANCE(426); @@ -18391,7 +18397,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 224: if (lookahead == '\r') ADVANCE(747); if (lookahead == '\\') ADVANCE(741); - if (lookahead != 0) ADVANCE(746); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(746); END_STATE(); case 225: ADVANCE_MAP( @@ -18445,7 +18453,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(225); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 226: ADVANCE_MAP( @@ -18477,7 +18485,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'U', 653, '[', 571, '\\', 157, - ']', 383, + ']', 577, '^', 538, 'b', 721, 'c', 700, @@ -18499,7 +18507,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(226); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 227: ADVANCE_MAP( @@ -18530,7 +18538,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'T', 679, 'U', 653, '[', 571, - '\\', 197, + '\\', 199, ']', 577, '^', 539, 'b', 721, @@ -18553,7 +18561,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(227); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 228: ADVANCE_MAP( @@ -18603,7 +18611,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(228); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 229: ADVANCE_MAP( @@ -18652,7 +18660,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(229); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 230: ADVANCE_MAP( @@ -18681,7 +18689,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'U', 653, '[', 571, '\\', 20, - ']', 577, + ']', 383, '^', 538, 'b', 721, 'c', 700, @@ -18702,7 +18710,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(230); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 231: ADVANCE_MAP( @@ -18751,7 +18759,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(231); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 232: ADVANCE_MAP( @@ -18801,7 +18809,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(232); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 233: ADVANCE_MAP( @@ -18838,7 +18846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(233); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 234: ADVANCE_MAP( @@ -18863,7 +18871,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(234); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 235: ADVANCE_MAP( @@ -18883,7 +18891,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ':', 368, ';', 560, '<', 371, - '>', 545, + '>', 374, 'F', 675, 'L', 649, 'R', 652, @@ -18912,7 +18920,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(235); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 236: ADVANCE_MAP( @@ -18965,7 +18973,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(236); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 237: ADVANCE_MAP( @@ -18984,7 +18992,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 605, ':', 368, ';', 560, - '>', 376, + '>', 545, 'F', 675, 'L', 649, 'R', 652, @@ -19011,7 +19019,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(237); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 238: ADVANCE_MAP( @@ -19030,7 +19038,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '0', 605, ':', 368, ';', 560, - '>', 374, + '>', 376, 'F', 675, 'L', 649, 'R', 652, @@ -19057,7 +19065,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 239: ADVANCE_MAP( @@ -19099,7 +19107,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 240: ADVANCE_MAP( @@ -19149,7 +19157,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(240); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 241: ADVANCE_MAP( @@ -19192,7 +19200,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(241); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 242: ADVANCE_MAP( @@ -19214,7 +19222,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(242); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 243: ADVANCE_MAP( @@ -19251,7 +19259,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(243); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 244: ADVANCE_MAP( @@ -19287,7 +19295,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 245: ADVANCE_MAP( @@ -19325,7 +19333,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(244); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 246: ADVANCE_MAP( @@ -19352,7 +19360,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 179, + '\\', 181, ']', 383, '^', 536, 'u', 657, @@ -19361,7 +19369,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(246); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 247: ADVANCE_MAP( @@ -19388,7 +19396,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 763, 'U', 764, '[', 570, - '\\', 179, + '\\', 181, ']', 383, '^', 536, 'u', 765, @@ -19399,7 +19407,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(246); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 248: ADVANCE_MAP( @@ -19433,7 +19441,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(248); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 249: ADVANCE_MAP( @@ -19458,7 +19466,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 574, - '\\', 50, + '\\', 54, '^', 537, 'u', 657, '{', 568, @@ -19466,7 +19474,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(249); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 250: ADVANCE_MAP( @@ -19491,7 +19499,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 167, + '\\', 169, '^', 537, 'u', 657, '{', 568, @@ -19499,7 +19507,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 251: ADVANCE_MAP( @@ -19530,7 +19538,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(251); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 252: ADVANCE_MAP( @@ -19564,7 +19572,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 253: ADVANCE_MAP( @@ -19600,7 +19608,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(253); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 254: ADVANCE_MAP( @@ -19634,7 +19642,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(254); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 255: ADVANCE_MAP( @@ -19658,7 +19666,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 56, + '\\', 58, '^', 537, 'u', 657, '{', 568, @@ -19666,7 +19674,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(255); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 256: ADVANCE_MAP( @@ -19690,7 +19698,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 58, + '\\', 56, ']', 577, '^', 537, 'u', 657, @@ -19699,7 +19707,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(256); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 257: ADVANCE_MAP( @@ -19729,7 +19737,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(257); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 258: ADVANCE_MAP( @@ -19762,7 +19770,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 259: ADVANCE_MAP( @@ -19793,7 +19801,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(259); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 260: ADVANCE_MAP( @@ -19826,7 +19834,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(259); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 261: ADVANCE_MAP( @@ -19849,14 +19857,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 183, + '\\', 185, '^', 536, 'u', 657, '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(261); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 262: ADVANCE_MAP( @@ -19879,7 +19887,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 763, 'U', 764, '[', 570, - '\\', 183, + '\\', 185, '^', 536, 'u', 765, '|', 535, @@ -19889,7 +19897,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 263: ADVANCE_MAP( @@ -19912,7 +19920,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 652, 'U', 654, '[', 570, - '\\', 181, + '\\', 183, ']', 577, '^', 536, 'u', 657, @@ -19920,7 +19928,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(263); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 264: ADVANCE_MAP( @@ -19943,7 +19951,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'R', 763, 'U', 764, '[', 570, - '\\', 181, + '\\', 183, ']', 577, '^', 536, 'u', 765, @@ -19953,7 +19961,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(263); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 265: ADVANCE_MAP( @@ -19986,7 +19994,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(265); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 266: ADVANCE_MAP( @@ -20019,7 +20027,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(266); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 267: ADVANCE_MAP( @@ -20042,7 +20050,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 571, - '\\', 96, + '\\', 98, ']', 577, '^', 537, '|', 534, @@ -20051,7 +20059,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(267); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 268: ADVANCE_MAP( @@ -20074,7 +20082,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 211, + '\\', 213, ']', 383, '^', 537, '{', 568, @@ -20083,7 +20091,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(268); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 269: ADVANCE_MAP( @@ -20105,7 +20113,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 60, + '\\', 62, ']', 577, '^', 537, '{', 568, @@ -20113,7 +20121,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(269); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 270: ADVANCE_MAP( @@ -20145,7 +20153,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(270); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 271: ADVANCE_MAP( @@ -20177,7 +20185,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(271); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 272: ADVANCE_MAP( @@ -20220,7 +20228,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(272); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 273: ADVANCE_MAP( @@ -20253,7 +20261,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(274); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 274: ADVANCE_MAP( @@ -20284,7 +20292,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(274); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 275: ADVANCE_MAP( @@ -20307,7 +20315,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 576, - '\\', 98, + '\\', 96, ']', 383, '^', 537, '|', 534, @@ -20315,7 +20323,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(275); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 276: ADVANCE_MAP( @@ -20338,7 +20346,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 571, - '\\', 185, + '\\', 189, ']', 577, '^', 536, '|', 535, @@ -20347,7 +20355,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(276); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 277: ADVANCE_MAP( @@ -20379,7 +20387,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(277); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 278: ADVANCE_MAP( @@ -20411,7 +20419,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(278); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 279: ADVANCE_MAP( @@ -20434,7 +20442,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 574, - '\\', 199, + '\\', 201, ']', 383, '^', 536, '{', 568, @@ -20443,7 +20451,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(279); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 280: ADVANCE_MAP( @@ -20475,7 +20483,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(280); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 281: ADVANCE_MAP( @@ -20498,7 +20506,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 169, + '\\', 167, ']', 383, '^', 536, 'b', 721, @@ -20518,7 +20526,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(281); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 282: ADVANCE_MAP( @@ -20550,7 +20558,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(282); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 283: ADVANCE_MAP( @@ -20573,7 +20581,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 205, + '\\', 207, ']', 383, '^', 536, '|', 535, @@ -20583,7 +20591,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(284); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 284: ADVANCE_MAP( @@ -20606,7 +20614,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 205, + '\\', 207, ']', 383, '^', 536, '|', 535, @@ -20614,7 +20622,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(284); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 285: ADVANCE_MAP( @@ -20657,7 +20665,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(285); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 286: ADVANCE_MAP( @@ -20696,7 +20704,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(286); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 287: ADVANCE_MAP( @@ -20725,7 +20733,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(287); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 288: ADVANCE_MAP( @@ -20746,14 +20754,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 571, - '\\', 104, + '\\', 100, '^', 537, '|', 534, '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(288); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 289: ADVANCE_MAP( @@ -20782,7 +20790,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(289); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 290: ADVANCE_MAP( @@ -20811,7 +20819,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(290); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 291: ADVANCE_MAP( @@ -20839,7 +20847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(291); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 292: ADVANCE_MAP( @@ -20877,7 +20885,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(292); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 293: ADVANCE_MAP( @@ -20897,7 +20905,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 193, + '\\', 195, '^', 537, '|', 534, ); @@ -20906,7 +20914,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 294: ADVANCE_MAP( @@ -20926,13 +20934,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 193, + '\\', 195, '^', 537, '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(294); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 295: ADVANCE_MAP( @@ -20952,13 +20960,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 576, - '\\', 207, + '\\', 209, '^', 537, '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(295); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 296: ADVANCE_MAP( @@ -20978,13 +20986,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 575, - '\\', 118, + '\\', 120, '^', 537, '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(296); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 297: ADVANCE_MAP( @@ -21006,7 +21014,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 574, - '\\', 100, + '\\', 104, '^', 537, '{', 568, '|', 534, @@ -21014,7 +21022,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 298: ADVANCE_MAP( @@ -21044,7 +21052,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(298); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 299: ADVANCE_MAP( @@ -21071,7 +21079,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(299); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 300: ADVANCE_MAP( @@ -21099,7 +21107,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(300); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 301: ADVANCE_MAP( @@ -21119,14 +21127,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 62, + '\\', 60, '^', 537, '{', 568, '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(301); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 302: ADVANCE_MAP( @@ -21153,7 +21161,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(302); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 303: ADVANCE_MAP( @@ -21181,7 +21189,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(303); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 304: ADVANCE_MAP( @@ -21201,14 +21209,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 575, - '\\', 120, + '\\', 118, '^', 537, '|', 534, '}', 569, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(304); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 305: ADVANCE_MAP( @@ -21227,7 +21235,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 72, + '\\', 68, '^', 537, 'b', 721, 'c', 700, @@ -21245,7 +21253,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(305); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 306: ADVANCE_MAP( @@ -21264,7 +21272,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 122, + '\\', 177, '^', 537, '|', 534, ); @@ -21273,7 +21281,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 307: ADVANCE_MAP( @@ -21292,13 +21300,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 122, + '\\', 177, '^', 537, '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(307); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 308: ADVANCE_MAP( @@ -21317,13 +21325,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 576, - '\\', 195, + '\\', 205, '^', 537, '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(308); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 309: ADVANCE_MAP( @@ -21342,7 +21350,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 68, + '\\', 70, ']', 577, '^', 537, 'b', 721, @@ -21361,7 +21369,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(309); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 310: ADVANCE_MAP( @@ -21380,7 +21388,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 175, + '\\', 122, ']', 577, '^', 537, '|', 534, @@ -21389,7 +21397,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(311); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 311: ADVANCE_MAP( @@ -21408,14 +21416,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 570, - '\\', 175, + '\\', 122, ']', 577, '^', 537, '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(311); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 312: ADVANCE_MAP( @@ -21434,14 +21442,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 547, '?', 582, '[', 576, - '\\', 203, + '\\', 197, ']', 577, '^', 537, '|', 534, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(312); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 313: ADVANCE_MAP( @@ -21463,7 +21471,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(313); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 314: ADVANCE_MAP( @@ -21505,7 +21513,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(314); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 315: ADVANCE_MAP( @@ -21527,7 +21535,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 572, - '\\', 54, + '\\', 50, ']', 577, '^', 536, '{', 568, @@ -21537,7 +21545,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(315); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 316: ADVANCE_MAP( @@ -21545,26 +21553,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '%', 529, '&', 541, '(', 504, + ')', 446, '*', 525, '+', 519, ',', 445, '-', 515, '.', 596, '/', 527, - ':', 368, - ';', 560, + ':', 562, '<', 554, '=', 373, '>', 748, '?', 582, - '[', 574, - '\\', 66, + '[', 570, + '\\', 179, '^', 536, + '{', 568, '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(316); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 317: ADVANCE_MAP( @@ -21579,19 +21588,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '.', 596, '/', 527, ':', 368, + ';', 560, '<', 554, '=', 373, - '>', 748, + '>', 546, '?', 582, - '[', 571, - '\\', 191, + '[', 574, + '\\', 66, + ']', 577, '^', 536, '|', 535, - '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(317); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 318: ADVANCE_MAP( @@ -21608,18 +21618,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ':', 368, '<', 554, '=', 373, - '>', 546, + '>', 748, '?', 582, '[', 571, - '\\', 189, - ']', 383, + '\\', 193, '^', 536, '|', 535, '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(318); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 319: ADVANCE_MAP( @@ -21633,20 +21642,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 515, '.', 596, '/', 527, - ':', 562, + ':', 368, '<', 554, '=', 373, - '>', 748, + '>', 546, '?', 582, - '[', 570, - '\\', 201, + '[', 571, + '\\', 191, + ']', 383, '^', 536, - '{', 568, '|', 535, + '~', 507, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(319); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 320: ADVANCE_MAP( @@ -21666,14 +21676,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 213, + '\\', 203, '^', 536, '{', 568, '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(320); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 321: ADVANCE_MAP( @@ -21691,26 +21701,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 373, '>', 748, '?', 582, - '[', 570, - '\\', 177, + '[', 574, + '\\', 72, '^', 536, - 'b', 721, - 'c', 700, - 'd', 717, - 'f', 713, - 'i', 714, - 'm', 686, - 'n', 734, - 'p', 731, - 's', 701, - 'u', 706, - 'v', 718, - '{', 568, '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(321); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 322: ADVANCE_MAP( @@ -21729,16 +21727,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 209, + '\\', 173, '^', 536, + 'b', 721, + 'c', 700, + 'd', 717, + 'f', 713, + 'i', 714, + 'm', 686, + 'n', 734, + 'p', 731, + 's', 701, + 'u', 706, + 'v', 718, + '{', 568, '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(323); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(322); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 323: ADVANCE_MAP( @@ -21757,13 +21764,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 748, '?', 582, '[', 570, - '\\', 209, + '\\', 215, '^', 536, '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(323); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + lookahead == ' ') SKIP(324); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 324: ADVANCE_MAP( @@ -21779,17 +21789,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '/', 527, '<', 554, '=', 373, - '>', 546, + '>', 748, '?', 582, - '[', 574, - '\\', 70, - ']', 577, + '[', 570, + '\\', 215, '^', 536, '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(324); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 325: ADVANCE_MAP( @@ -21808,7 +21817,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 173, + '\\', 175, ']', 577, '^', 536, 'b', 721, @@ -21827,7 +21836,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(325); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 326: ADVANCE_MAP( @@ -21846,7 +21855,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 215, + '\\', 211, ']', 577, '^', 536, '|', 535, @@ -21855,7 +21864,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(327); if (('A' <= lookahead && lookahead <= '_') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 327: ADVANCE_MAP( @@ -21874,14 +21883,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 546, '?', 582, '[', 570, - '\\', 215, + '\\', 211, ']', 577, '^', 536, '|', 535, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(327); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 328: ADVANCE_MAP( @@ -21910,7 +21919,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(328); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 329: ADVANCE_MAP( @@ -21927,7 +21936,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(329); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 330: ADVANCE_MAP( @@ -21942,7 +21951,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(330); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 331: if (lookahead == '"') ADVANCE(632); @@ -21991,7 +22000,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(333); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 334: ADVANCE_MAP( @@ -22015,7 +22024,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(334); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 335: ADVANCE_MAP( @@ -22040,7 +22049,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(335); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 336: ADVANCE_MAP( @@ -22075,7 +22084,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(336); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 337: ADVANCE_MAP( @@ -22099,7 +22108,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(337); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 338: ADVANCE_MAP( @@ -22124,7 +22133,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(338); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 339: ADVANCE_MAP( @@ -22157,7 +22166,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(339); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 340: ADVANCE_MAP( @@ -22180,7 +22189,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(340); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 341: ADVANCE_MAP( @@ -22212,7 +22221,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(341); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 342: ADVANCE_MAP( @@ -22234,7 +22243,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(342); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 343: ADVANCE_MAP( @@ -22250,7 +22259,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(343); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 344: if (lookahead == '\'') ADVANCE(623); @@ -22292,7 +22301,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(347); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 348: ADVANCE_MAP( @@ -22309,7 +22318,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(348); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 349: if (lookahead == '(') ADVANCE(504); @@ -22334,15 +22343,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 354: if (lookahead == '*') ADVANCE(354); if (lookahead == '/') ADVANCE(739); - if (lookahead != 0) ADVANCE(355); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(355); END_STATE(); case 355: if (lookahead == '*') ADVANCE(354); - if (lookahead != 0) ADVANCE(355); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(355); END_STATE(); case 356: if (lookahead == '*') ADVANCE(354); - if (lookahead != 0) ADVANCE(462); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(462); END_STATE(); case 357: if (lookahead == '.') ADVANCE(359); @@ -22365,7 +22380,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(464); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(361); - if (lookahead != 0) ADVANCE(471); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 362: if (lookahead == '1') ADVANCE(366); @@ -22409,13 +22426,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 374: if (lookahead == '=') ADVANCE(548); - if (lookahead == '>') ADVANCE(558); + if (lookahead == '>') ADVANCE(375); END_STATE(); case 375: if (lookahead == '=') ADVANCE(589); END_STATE(); case 376: - if (lookahead == '>') ADVANCE(375); + if (lookahead == '>') ADVANCE(558); END_STATE(); case 377: if (lookahead == '>') ADVANCE(601); @@ -22424,13 +22441,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(645); if (lookahead == '\\') ADVANCE(379); if (lookahead != 0 && - lookahead != '\n') ADVANCE(378); + lookahead != '\n' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(378); END_STATE(); case 379: if (lookahead == '>') ADVANCE(646); if (lookahead == '\\') ADVANCE(379); if (lookahead != 0 && - lookahead != '\n') ADVANCE(378); + lookahead != '\n' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(378); END_STATE(); case 380: if (lookahead == 'F') ADVANCE(362); @@ -22701,7 +22722,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 436: if (lookahead != 0 && - lookahead != '*') ADVANCE(471); + lookahead != '*' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 437: if (eof) ADVANCE(439); @@ -22756,7 +22779,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(437); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 438: if (eof) ADVANCE(439); @@ -22810,7 +22833,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(438); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(608); - if (set_contains(sym_identifier_character_set_1, 687, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_1, 688, lookahead)) ADVANCE(738); END_STATE(); case 439: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -22931,7 +22954,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(461); if (lookahead == '/') ADVANCE(739); if (lookahead == '\\') ADVANCE(467); - if (lookahead != 0) ADVANCE(462); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(462); END_STATE(); case 462: ACCEPT_TOKEN(sym_preproc_arg); @@ -22939,7 +22964,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(461); if (lookahead == '/') ADVANCE(356); if (lookahead == '\\') ADVANCE(467); - if (lookahead != 0) ADVANCE(462); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(462); END_STATE(); case 463: ACCEPT_TOKEN(sym_preproc_arg); @@ -22947,7 +22974,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(740); if (lookahead == '/') ADVANCE(743); if (lookahead == '\\') ADVANCE(742); - if (lookahead != 0) ADVANCE(744); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(744); END_STATE(); case 464: ACCEPT_TOKEN(sym_preproc_arg); @@ -22955,21 +22984,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') ADVANCE(465); if (lookahead == '/') ADVANCE(436); if (lookahead == '\\') ADVANCE(466); - if (lookahead != 0) ADVANCE(471); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 465: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\n') SKIP(361); if (lookahead == '/') ADVANCE(436); if (lookahead == '\\') ADVANCE(466); - if (lookahead != 0) ADVANCE(471); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 466: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\r') ADVANCE(472); if (lookahead == '/') ADVANCE(436); if (lookahead == '\\') ADVANCE(466); - if (lookahead != 0) ADVANCE(471); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 467: ACCEPT_TOKEN(sym_preproc_arg); @@ -22977,14 +23012,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '*') ADVANCE(461); if (lookahead == '/') ADVANCE(356); if (lookahead == '\\') ADVANCE(467); - if (lookahead != 0) ADVANCE(462); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(462); END_STATE(); case 468: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '\r') ADVANCE(745); if (lookahead == '/') ADVANCE(743); if (lookahead == '\\') ADVANCE(742); - if (lookahead != 0) ADVANCE(744); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(744); END_STATE(); case 469: ACCEPT_TOKEN(sym_preproc_arg); @@ -22992,27 +23031,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(743); if (lookahead == '\\') ADVANCE(466); if (lookahead != 0 && - lookahead != '\n') ADVANCE(471); + lookahead != '\n' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 470: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '*') ADVANCE(461); if (lookahead == '/') ADVANCE(356); if (lookahead == '\\') ADVANCE(467); - if (lookahead != 0) ADVANCE(462); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(462); END_STATE(); case 471: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '/') ADVANCE(436); if (lookahead == '\\') ADVANCE(466); if (lookahead != 0 && - lookahead != '\n') ADVANCE(471); + lookahead != '\n' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 472: ACCEPT_TOKEN(sym_preproc_arg); if (lookahead == '/') ADVANCE(436); if (lookahead == '\\') ADVANCE(466); - if (lookahead != 0) ADVANCE(471); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(471); END_STATE(); case 473: ACCEPT_TOKEN(sym_preproc_directive); @@ -23598,12 +23645,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '8') ADVANCE(683); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'p') ADVANCE(732); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 581: ACCEPT_TOKEN(sym_primitive_type); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 582: ACCEPT_TOKEN(anon_sym_QMARK); @@ -23872,7 +23919,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'u') ADVANCE(427); if (lookahead == 'x') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(641); - if (lookahead != 0) ADVANCE(638); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(638); END_STATE(); case 626: ACCEPT_TOKEN(aux_sym_char_literal_token1); @@ -23905,7 +23954,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(637); + lookahead != '\\' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(637); END_STATE(); case 634: ACCEPT_TOKEN(aux_sym_string_literal_token1); @@ -23914,7 +23965,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(635); + lookahead != '\\' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(635); END_STATE(); case 635: ACCEPT_TOKEN(aux_sym_string_literal_token1); @@ -23922,7 +23975,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(635); + lookahead != '\\' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(635); END_STATE(); case 636: ACCEPT_TOKEN(aux_sym_string_literal_token1); @@ -23933,14 +23988,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && - lookahead != '\\') ADVANCE(637); + lookahead != '\\' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(637); END_STATE(); case 637: ACCEPT_TOKEN(aux_sym_string_literal_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && - lookahead != '\\') ADVANCE(637); + lookahead != '\\' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(637); END_STATE(); case 638: ACCEPT_TOKEN(sym_escape_sequence); @@ -23983,17 +24042,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(645); if (lookahead == '\\') ADVANCE(379); if (lookahead != 0 && - lookahead != '\n') ADVANCE(378); + lookahead != '\n' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(378); END_STATE(); case 647: ACCEPT_TOKEN(sym_true); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 648: ACCEPT_TOKEN(sym_false); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 649: ACCEPT_TOKEN(sym_identifier); @@ -24001,26 +24062,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(619); if (lookahead == 'R') ADVANCE(660); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 650: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(628); if (lookahead == 'R') ADVANCE(660); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 651: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(628); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 652: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(750); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 653: ACCEPT_TOKEN(sym_identifier); @@ -24028,20 +24089,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(621); if (lookahead == 'R') ADVANCE(661); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 654: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(630); if (lookahead == 'R') ADVANCE(661); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 655: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(630); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 656: ACCEPT_TOKEN(sym_identifier); @@ -24051,7 +24112,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'R') ADVANCE(665); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'i') ADVANCE(716); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 657: ACCEPT_TOKEN(sym_identifier); @@ -24059,7 +24120,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '8') ADVANCE(663); if (lookahead == 'R') ADVANCE(665); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 658: ACCEPT_TOKEN(sym_identifier); @@ -24067,26 +24128,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '8') ADVANCE(664); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'i') ADVANCE(716); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 659: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(629); if (lookahead == '8') ADVANCE(664); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 660: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(751); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 661: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(753); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 662: ACCEPT_TOKEN(sym_identifier); @@ -24094,57 +24155,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(622); if (lookahead == 'R') ADVANCE(666); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 663: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(631); if (lookahead == 'R') ADVANCE(666); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 664: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(631); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 665: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(752); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 666: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(754); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 667: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\'') ADVANCE(619); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 668: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\'') ADVANCE(621); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 669: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\'') ADVANCE(620); if (lookahead == '8') ADVANCE(670); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 670: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\'') ADVANCE(622); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 671: ACCEPT_TOKEN(sym_identifier); @@ -24154,410 +24215,410 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '8') ADVANCE(683); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'p') ADVANCE(732); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 672: ACCEPT_TOKEN(sym_identifier); if (lookahead == '2') ADVANCE(683); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 673: ACCEPT_TOKEN(sym_identifier); if (lookahead == '4') ADVANCE(683); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 674: ACCEPT_TOKEN(sym_identifier); if (lookahead == '6') ADVANCE(683); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 675: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'A') ADVANCE(678); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 676: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E') ADVANCE(647); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 677: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'E') ADVANCE(648); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 678: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'L') ADVANCE(680); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 679: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'R') ADVANCE(681); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 680: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'S') ADVANCE(677); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 681: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'U') ADVANCE(676); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 682: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == '_') ADVANCE(689); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 683: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == '_') ADVANCE(729); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 684: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'a') ADVANCE(707); if (lookahead == 'l') ADVANCE(719); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 685: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'a') ADVANCE(707); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 686: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'a') ADVANCE(736); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 687: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'a') ADVANCE(723); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 688: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'a') ADVANCE(729); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 689: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'a') ADVANCE(711); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 690: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'b') ADVANCE(712); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 691: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'd') ADVANCE(581); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 692: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'd') ADVANCE(703); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 693: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'e') ADVANCE(647); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 694: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'e') ADVANCE(581); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 695: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'e') ADVANCE(648); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 696: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'e') ADVANCE(683); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 697: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'f') ADVANCE(683); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 698: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'f') ADVANCE(697); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 699: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'g') ADVANCE(715); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 700: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'h') ADVANCE(687); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 701: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'i') ADVANCE(737); if (lookahead == 's') ADVANCE(702); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 702: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'i') ADVANCE(737); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 703: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'i') ADVANCE(698); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 704: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'i') ADVANCE(699); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 705: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'i') ADVANCE(691); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 706: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'i') ADVANCE(716); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 707: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'l') ADVANCE(727); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 708: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'l') ADVANCE(581); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 709: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'l') ADVANCE(722); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 710: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'l') ADVANCE(709); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 711: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'l') ADVANCE(704); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 712: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'l') ADVANCE(694); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 713: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'l') ADVANCE(719); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 714: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'n') ADVANCE(728); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 715: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'n') ADVANCE(683); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 716: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'n') ADVANCE(730); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 717: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'o') ADVANCE(733); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 718: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'o') ADVANCE(705); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 719: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'o') ADVANCE(688); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 720: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'o') ADVANCE(708); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 721: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'o') ADVANCE(720); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 722: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'p') ADVANCE(732); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 723: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'r') ADVANCE(580); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 724: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'r') ADVANCE(692); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 725: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'r') ADVANCE(683); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 726: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'r') ADVANCE(735); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 727: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 's') ADVANCE(695); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 728: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 't') ADVANCE(580); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 729: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 't') ADVANCE(581); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 730: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 't') ADVANCE(671); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 731: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 't') ADVANCE(724); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 732: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 't') ADVANCE(725); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 733: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'u') ADVANCE(690); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 734: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'u') ADVANCE(710); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 735: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'u') ADVANCE(693); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 736: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'x') ADVANCE(682); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 737: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); if (lookahead == 'z') ADVANCE(696); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 738: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(381); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 739: ACCEPT_TOKEN(sym_comment); @@ -24567,51 +24628,67 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(746); if (lookahead == '/') ADVANCE(743); if (lookahead == '\\') ADVANCE(468); - if (lookahead != 0) ADVANCE(744); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(744); END_STATE(); case 741: ACCEPT_TOKEN(sym_comment); if (lookahead == '\r') ADVANCE(747); if (lookahead == '\\') ADVANCE(741); - if (lookahead != 0) ADVANCE(746); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(746); END_STATE(); case 742: ACCEPT_TOKEN(sym_comment); if (lookahead == '\r') ADVANCE(745); if (lookahead == '/') ADVANCE(743); if (lookahead == '\\') ADVANCE(742); - if (lookahead != 0) ADVANCE(744); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(744); END_STATE(); case 743: ACCEPT_TOKEN(sym_comment); if (lookahead == '*') ADVANCE(746); if (lookahead == '\\') ADVANCE(463); if (lookahead != 0 && - lookahead != '\n') ADVANCE(744); + lookahead != '\n' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(744); END_STATE(); case 744: ACCEPT_TOKEN(sym_comment); if (lookahead == '/') ADVANCE(743); if (lookahead == '\\') ADVANCE(468); if (lookahead != 0 && - lookahead != '\n') ADVANCE(744); + lookahead != '\n' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(744); END_STATE(); case 745: ACCEPT_TOKEN(sym_comment); if (lookahead == '/') ADVANCE(743); if (lookahead == '\\') ADVANCE(468); - if (lookahead != 0) ADVANCE(744); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(744); END_STATE(); case 746: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') ADVANCE(224); if (lookahead != 0 && - lookahead != '\n') ADVANCE(746); + lookahead != '\n' && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(746); END_STATE(); case 747: ACCEPT_TOKEN(sym_comment); if (lookahead == '\\') ADVANCE(224); - if (lookahead != 0) ADVANCE(746); + if (lookahead != 0 && + lookahead != 0x17f && + lookahead != 0x212a) ADVANCE(746); END_STATE(); case 748: ACCEPT_TOKEN(anon_sym_GT2); @@ -24664,7 +24741,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 763: ACCEPT_TOKEN(sym_literal_suffix); @@ -24674,7 +24751,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 764: ACCEPT_TOKEN(sym_literal_suffix); @@ -24685,7 +24762,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 765: ACCEPT_TOKEN(sym_literal_suffix); @@ -24697,7 +24774,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 766: ACCEPT_TOKEN(sym_literal_suffix); @@ -24707,7 +24784,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 767: ACCEPT_TOKEN(sym_literal_suffix); @@ -24717,7 +24794,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 768: ACCEPT_TOKEN(sym_literal_suffix); @@ -24728,7 +24805,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 769: ACCEPT_TOKEN(sym_literal_suffix); @@ -24738,7 +24815,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 770: ACCEPT_TOKEN(sym_literal_suffix); @@ -24748,7 +24825,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); case 771: ACCEPT_TOKEN(sym_literal_suffix); @@ -24757,7 +24834,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(771); - if (set_contains(sym_identifier_character_set_2, 802, lookahead)) ADVANCE(738); + if (set_contains(sym_identifier_character_set_2, 803, lookahead)) ADVANCE(738); END_STATE(); default: return false; @@ -26779,7 +26856,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [49] = {.lex_state = 235}, [50] = {.lex_state = 235}, [51] = {.lex_state = 438}, - [52] = {.lex_state = 238}, + [52] = {.lex_state = 438}, [53] = {.lex_state = 438}, [54] = {.lex_state = 438}, [55] = {.lex_state = 438}, @@ -26795,8 +26872,8 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [65] = {.lex_state = 438}, [66] = {.lex_state = 438}, [67] = {.lex_state = 438}, - [68] = {.lex_state = 438}, - [69] = {.lex_state = 238}, + [68] = {.lex_state = 238}, + [69] = {.lex_state = 438}, [70] = {.lex_state = 438}, [71] = {.lex_state = 438}, [72] = {.lex_state = 438}, @@ -26822,7 +26899,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [92] = {.lex_state = 438}, [93] = {.lex_state = 438}, [94] = {.lex_state = 438}, - [95] = {.lex_state = 438}, + [95] = {.lex_state = 238}, [96] = {.lex_state = 438}, [97] = {.lex_state = 438}, [98] = {.lex_state = 438}, @@ -26840,14 +26917,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [110] = {.lex_state = 438}, [111] = {.lex_state = 438}, [112] = {.lex_state = 438}, - [113] = {.lex_state = 438}, + [113] = {.lex_state = 238}, [114] = {.lex_state = 438}, [115] = {.lex_state = 438}, [116] = {.lex_state = 238}, - [117] = {.lex_state = 438}, + [117] = {.lex_state = 238}, [118] = {.lex_state = 438}, - [119] = {.lex_state = 238}, - [120] = {.lex_state = 238}, + [119] = {.lex_state = 438}, + [120] = {.lex_state = 438}, [121] = {.lex_state = 235}, [122] = {.lex_state = 235}, [123] = {.lex_state = 235}, @@ -26855,14 +26932,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [125] = {.lex_state = 235}, [126] = {.lex_state = 438}, [127] = {.lex_state = 238}, - [128] = {.lex_state = 438}, - [129] = {.lex_state = 438}, - [130] = {.lex_state = 438}, - [131] = {.lex_state = 238}, - [132] = {.lex_state = 238}, - [133] = {.lex_state = 238}, - [134] = {.lex_state = 438}, - [135] = {.lex_state = 238}, + [128] = {.lex_state = 238}, + [129] = {.lex_state = 238}, + [130] = {.lex_state = 238}, + [131] = {.lex_state = 438}, + [132] = {.lex_state = 438}, + [133] = {.lex_state = 438}, + [134] = {.lex_state = 238}, + [135] = {.lex_state = 438}, [136] = {.lex_state = 438}, [137] = {.lex_state = 438}, [138] = {.lex_state = 438}, @@ -26886,14 +26963,14 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [156] = {.lex_state = 237}, [157] = {.lex_state = 237}, [158] = {.lex_state = 237}, - [159] = {.lex_state = 237}, - [160] = {.lex_state = 239}, + [159] = {.lex_state = 239}, + [160] = {.lex_state = 237}, [161] = {.lex_state = 237}, - [162] = {.lex_state = 237}, - [163] = {.lex_state = 237}, + [162] = {.lex_state = 239}, + [163] = {.lex_state = 239}, [164] = {.lex_state = 237}, - [165] = {.lex_state = 239}, - [166] = {.lex_state = 239}, + [165] = {.lex_state = 237}, + [166] = {.lex_state = 237}, [167] = {.lex_state = 237}, [168] = {.lex_state = 237}, [169] = {.lex_state = 237}, @@ -26905,19 +26982,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [175] = {.lex_state = 237}, [176] = {.lex_state = 237}, [177] = {.lex_state = 237}, - [178] = {.lex_state = 237}, - [179] = {.lex_state = 226}, + [178] = {.lex_state = 226}, + [179] = {.lex_state = 237}, [180] = {.lex_state = 237}, [181] = {.lex_state = 237}, [182] = {.lex_state = 237}, - [183] = {.lex_state = 226}, - [184] = {.lex_state = 237}, + [183] = {.lex_state = 237}, + [184] = {.lex_state = 226}, [185] = {.lex_state = 237}, [186] = {.lex_state = 237}, [187] = {.lex_state = 237}, [188] = {.lex_state = 237}, [189] = {.lex_state = 237}, - [190] = {.lex_state = 237}, + [190] = {.lex_state = 226}, [191] = {.lex_state = 237}, [192] = {.lex_state = 237}, [193] = {.lex_state = 237}, @@ -26936,7 +27013,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [206] = {.lex_state = 237}, [207] = {.lex_state = 237}, [208] = {.lex_state = 237}, - [209] = {.lex_state = 226}, + [209] = {.lex_state = 237}, [210] = {.lex_state = 237}, [211] = {.lex_state = 237}, [212] = {.lex_state = 237}, @@ -26971,7 +27048,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [241] = {.lex_state = 237}, [242] = {.lex_state = 237}, [243] = {.lex_state = 237}, - [244] = {.lex_state = 237}, + [244] = {.lex_state = 240}, [245] = {.lex_state = 240}, [246] = {.lex_state = 240}, [247] = {.lex_state = 240}, @@ -26982,7 +27059,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [252] = {.lex_state = 240}, [253] = {.lex_state = 240}, [254] = {.lex_state = 240}, - [255] = {.lex_state = 228}, + [255] = {.lex_state = 240}, [256] = {.lex_state = 240}, [257] = {.lex_state = 240}, [258] = {.lex_state = 240}, @@ -26992,7 +27069,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [262] = {.lex_state = 240}, [263] = {.lex_state = 240}, [264] = {.lex_state = 240}, - [265] = {.lex_state = 240}, + [265] = {.lex_state = 228}, [266] = {.lex_state = 240}, [267] = {.lex_state = 240}, [268] = {.lex_state = 240}, @@ -27004,92 +27081,92 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [274] = {.lex_state = 240}, [275] = {.lex_state = 240}, [276] = {.lex_state = 240}, - [277] = {.lex_state = 240}, - [278] = {.lex_state = 229}, - [279] = {.lex_state = 226}, - [280] = {.lex_state = 226}, - [281] = {.lex_state = 230}, - [282] = {.lex_state = 228}, + [277] = {.lex_state = 226}, + [278] = {.lex_state = 226}, + [279] = {.lex_state = 229}, + [280] = {.lex_state = 230}, + [281] = {.lex_state = 228}, + [282] = {.lex_state = 438}, [283] = {.lex_state = 438}, [284] = {.lex_state = 438}, [285] = {.lex_state = 438}, [286] = {.lex_state = 438}, - [287] = {.lex_state = 438}, + [287] = {.lex_state = 235}, [288] = {.lex_state = 438}, [289] = {.lex_state = 235}, [290] = {.lex_state = 235}, [291] = {.lex_state = 235}, - [292] = {.lex_state = 235}, + [292] = {.lex_state = 237}, [293] = {.lex_state = 240}, - [294] = {.lex_state = 239}, - [295] = {.lex_state = 240}, - [296] = {.lex_state = 240}, - [297] = {.lex_state = 240}, - [298] = {.lex_state = 240}, - [299] = {.lex_state = 240}, - [300] = {.lex_state = 240}, - [301] = {.lex_state = 240}, + [294] = {.lex_state = 235}, + [295] = {.lex_state = 237}, + [296] = {.lex_state = 235}, + [297] = {.lex_state = 235}, + [298] = {.lex_state = 235}, + [299] = {.lex_state = 235}, + [300] = {.lex_state = 237}, + [301] = {.lex_state = 239}, [302] = {.lex_state = 240}, [303] = {.lex_state = 240}, [304] = {.lex_state = 240}, [305] = {.lex_state = 240}, [306] = {.lex_state = 240}, [307] = {.lex_state = 240}, - [308] = {.lex_state = 237}, - [309] = {.lex_state = 237}, - [310] = {.lex_state = 235}, + [308] = {.lex_state = 240}, + [309] = {.lex_state = 240}, + [310] = {.lex_state = 240}, [311] = {.lex_state = 240}, - [312] = {.lex_state = 235}, + [312] = {.lex_state = 240}, [313] = {.lex_state = 240}, - [314] = {.lex_state = 237}, - [315] = {.lex_state = 235}, + [314] = {.lex_state = 240}, + [315] = {.lex_state = 240}, [316] = {.lex_state = 240}, - [317] = {.lex_state = 235}, + [317] = {.lex_state = 240}, [318] = {.lex_state = 240}, [319] = {.lex_state = 240}, [320] = {.lex_state = 240}, [321] = {.lex_state = 240}, - [322] = {.lex_state = 235}, - [323] = {.lex_state = 239}, - [324] = {.lex_state = 285}, + [322] = {.lex_state = 239}, + [323] = {.lex_state = 285}, + [324] = {.lex_state = 235}, [325] = {.lex_state = 235}, [326] = {.lex_state = 235}, - [327] = {.lex_state = 285}, + [327] = {.lex_state = 235}, [328] = {.lex_state = 235}, - [329] = {.lex_state = 285}, - [330] = {.lex_state = 285}, - [331] = {.lex_state = 285}, - [332] = {.lex_state = 285}, - [333] = {.lex_state = 237}, - [334] = {.lex_state = 240}, - [335] = {.lex_state = 285}, - [336] = {.lex_state = 285}, - [337] = {.lex_state = 285}, - [338] = {.lex_state = 285}, + [329] = {.lex_state = 235}, + [330] = {.lex_state = 235}, + [331] = {.lex_state = 235}, + [332] = {.lex_state = 235}, + [333] = {.lex_state = 235}, + [334] = {.lex_state = 235}, + [335] = {.lex_state = 235}, + [336] = {.lex_state = 235}, + [337] = {.lex_state = 235}, + [338] = {.lex_state = 235}, [339] = {.lex_state = 235}, [340] = {.lex_state = 235}, [341] = {.lex_state = 235}, [342] = {.lex_state = 235}, - [343] = {.lex_state = 285}, - [344] = {.lex_state = 235}, - [345] = {.lex_state = 235}, + [343] = {.lex_state = 235}, + [344] = {.lex_state = 237}, + [345] = {.lex_state = 285}, [346] = {.lex_state = 285}, - [347] = {.lex_state = 285}, - [348] = {.lex_state = 285}, - [349] = {.lex_state = 235}, - [350] = {.lex_state = 235}, - [351] = {.lex_state = 235}, - [352] = {.lex_state = 235}, - [353] = {.lex_state = 235}, - [354] = {.lex_state = 235}, - [355] = {.lex_state = 235}, + [347] = {.lex_state = 235}, + [348] = {.lex_state = 235}, + [349] = {.lex_state = 285}, + [350] = {.lex_state = 285}, + [351] = {.lex_state = 285}, + [352] = {.lex_state = 285}, + [353] = {.lex_state = 285}, + [354] = {.lex_state = 285}, + [355] = {.lex_state = 285}, [356] = {.lex_state = 285}, - [357] = {.lex_state = 235}, + [357] = {.lex_state = 237}, [358] = {.lex_state = 235}, [359] = {.lex_state = 235}, - [360] = {.lex_state = 237}, - [361] = {.lex_state = 235}, - [362] = {.lex_state = 235}, + [360] = {.lex_state = 285}, + [361] = {.lex_state = 285}, + [362] = {.lex_state = 285}, [363] = {.lex_state = 235}, [364] = {.lex_state = 285}, [365] = {.lex_state = 235}, @@ -27104,32 +27181,32 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [374] = {.lex_state = 235}, [375] = {.lex_state = 235}, [376] = {.lex_state = 235}, - [377] = {.lex_state = 235}, + [377] = {.lex_state = 240}, [378] = {.lex_state = 235}, [379] = {.lex_state = 235}, [380] = {.lex_state = 235}, [381] = {.lex_state = 235}, - [382] = {.lex_state = 237}, - [383] = {.lex_state = 235}, - [384] = {.lex_state = 235}, - [385] = {.lex_state = 235}, + [382] = {.lex_state = 235}, + [383] = {.lex_state = 237}, + [384] = {.lex_state = 285}, + [385] = {.lex_state = 237}, [386] = {.lex_state = 237}, [387] = {.lex_state = 237}, - [388] = {.lex_state = 237}, + [388] = {.lex_state = 235}, [389] = {.lex_state = 235}, [390] = {.lex_state = 235}, - [391] = {.lex_state = 240}, - [392] = {.lex_state = 240}, - [393] = {.lex_state = 240}, - [394] = {.lex_state = 240}, - [395] = {.lex_state = 240}, - [396] = {.lex_state = 438}, - [397] = {.lex_state = 238}, - [398] = {.lex_state = 438}, - [399] = {.lex_state = 240}, - [400] = {.lex_state = 240}, - [401] = {.lex_state = 240}, - [402] = {.lex_state = 240}, + [391] = {.lex_state = 235}, + [392] = {.lex_state = 235}, + [393] = {.lex_state = 235}, + [394] = {.lex_state = 235}, + [395] = {.lex_state = 235}, + [396] = {.lex_state = 235}, + [397] = {.lex_state = 235}, + [398] = {.lex_state = 235}, + [399] = {.lex_state = 235}, + [400] = {.lex_state = 235}, + [401] = {.lex_state = 235}, + [402] = {.lex_state = 235}, [403] = {.lex_state = 235}, [404] = {.lex_state = 235}, [405] = {.lex_state = 235}, @@ -27137,44 +27214,44 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [407] = {.lex_state = 235}, [408] = {.lex_state = 235}, [409] = {.lex_state = 235}, - [410] = {.lex_state = 238}, + [410] = {.lex_state = 235}, [411] = {.lex_state = 235}, [412] = {.lex_state = 235}, [413] = {.lex_state = 235}, [414] = {.lex_state = 235}, - [415] = {.lex_state = 240}, - [416] = {.lex_state = 235}, + [415] = {.lex_state = 235}, + [416] = {.lex_state = 240}, [417] = {.lex_state = 235}, - [418] = {.lex_state = 235}, + [418] = {.lex_state = 240}, [419] = {.lex_state = 235}, [420] = {.lex_state = 235}, - [421] = {.lex_state = 235}, - [422] = {.lex_state = 235}, + [421] = {.lex_state = 240}, + [422] = {.lex_state = 238}, [423] = {.lex_state = 235}, [424] = {.lex_state = 235}, [425] = {.lex_state = 235}, - [426] = {.lex_state = 235}, + [426] = {.lex_state = 238}, [427] = {.lex_state = 235}, [428] = {.lex_state = 235}, [429] = {.lex_state = 235}, [430] = {.lex_state = 235}, - [431] = {.lex_state = 235}, - [432] = {.lex_state = 235}, - [433] = {.lex_state = 240}, + [431] = {.lex_state = 240}, + [432] = {.lex_state = 237}, + [433] = {.lex_state = 235}, [434] = {.lex_state = 235}, [435] = {.lex_state = 235}, - [436] = {.lex_state = 237}, - [437] = {.lex_state = 235}, - [438] = {.lex_state = 235}, - [439] = {.lex_state = 235}, + [436] = {.lex_state = 235}, + [437] = {.lex_state = 240}, + [438] = {.lex_state = 237}, + [439] = {.lex_state = 240}, [440] = {.lex_state = 235}, [441] = {.lex_state = 235}, [442] = {.lex_state = 235}, - [443] = {.lex_state = 235}, + [443] = {.lex_state = 240}, [444] = {.lex_state = 235}, [445] = {.lex_state = 235}, [446] = {.lex_state = 235}, - [447] = {.lex_state = 235}, + [447] = {.lex_state = 438}, [448] = {.lex_state = 235}, [449] = {.lex_state = 235}, [450] = {.lex_state = 235}, @@ -27182,19 +27259,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [452] = {.lex_state = 235}, [453] = {.lex_state = 235}, [454] = {.lex_state = 235}, - [455] = {.lex_state = 235}, - [456] = {.lex_state = 235}, - [457] = {.lex_state = 235}, - [458] = {.lex_state = 235}, - [459] = {.lex_state = 235}, + [455] = {.lex_state = 438}, + [456] = {.lex_state = 240}, + [457] = {.lex_state = 240}, + [458] = {.lex_state = 240}, + [459] = {.lex_state = 240}, [460] = {.lex_state = 235}, [461] = {.lex_state = 235}, [462] = {.lex_state = 235}, [463] = {.lex_state = 235}, [464] = {.lex_state = 235}, [465] = {.lex_state = 235}, - [466] = {.lex_state = 235}, - [467] = {.lex_state = 235}, + [466] = {.lex_state = 240}, + [467] = {.lex_state = 240}, [468] = {.lex_state = 235}, [469] = {.lex_state = 235}, [470] = {.lex_state = 235}, @@ -27202,17 +27279,17 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [472] = {.lex_state = 235}, [473] = {.lex_state = 235}, [474] = {.lex_state = 235}, - [475] = {.lex_state = 240}, - [476] = {.lex_state = 240}, + [475] = {.lex_state = 235}, + [476] = {.lex_state = 235}, [477] = {.lex_state = 235}, - [478] = {.lex_state = 240}, + [478] = {.lex_state = 235}, [479] = {.lex_state = 235}, [480] = {.lex_state = 235}, [481] = {.lex_state = 235}, - [482] = {.lex_state = 240}, + [482] = {.lex_state = 235}, [483] = {.lex_state = 235}, [484] = {.lex_state = 235}, - [485] = {.lex_state = 240}, + [485] = {.lex_state = 235}, [486] = {.lex_state = 240}, [487] = {.lex_state = 240}, [488] = {.lex_state = 240}, @@ -27233,209 +27310,209 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [503] = {.lex_state = 240}, [504] = {.lex_state = 240}, [505] = {.lex_state = 240}, - [506] = {.lex_state = 235}, - [507] = {.lex_state = 235}, - [508] = {.lex_state = 235}, - [509] = {.lex_state = 235}, - [510] = {.lex_state = 235}, + [506] = {.lex_state = 240}, + [507] = {.lex_state = 240}, + [508] = {.lex_state = 240}, + [509] = {.lex_state = 240}, + [510] = {.lex_state = 240}, [511] = {.lex_state = 235}, - [512] = {.lex_state = 240}, - [513] = {.lex_state = 237}, - [514] = {.lex_state = 235}, + [512] = {.lex_state = 235}, + [513] = {.lex_state = 235}, + [514] = {.lex_state = 240}, [515] = {.lex_state = 235}, - [516] = {.lex_state = 240}, - [517] = {.lex_state = 240}, + [516] = {.lex_state = 235}, + [517] = {.lex_state = 235}, [518] = {.lex_state = 240}, - [519] = {.lex_state = 235}, - [520] = {.lex_state = 438}, + [519] = {.lex_state = 438}, + [520] = {.lex_state = 238}, [521] = {.lex_state = 438}, [522] = {.lex_state = 238}, - [523] = {.lex_state = 238}, + [523] = {.lex_state = 235}, [524] = {.lex_state = 438}, - [525] = {.lex_state = 238}, - [526] = {.lex_state = 235}, - [527] = {.lex_state = 235}, - [528] = {.lex_state = 235}, + [525] = {.lex_state = 438}, + [526] = {.lex_state = 438}, + [527] = {.lex_state = 238}, + [528] = {.lex_state = 238}, [529] = {.lex_state = 235}, - [530] = {.lex_state = 238}, - [531] = {.lex_state = 438}, + [530] = {.lex_state = 438}, + [531] = {.lex_state = 235}, [532] = {.lex_state = 235}, [533] = {.lex_state = 235}, - [534] = {.lex_state = 238}, + [534] = {.lex_state = 235}, [535] = {.lex_state = 235}, - [536] = {.lex_state = 235}, + [536] = {.lex_state = 238}, [537] = {.lex_state = 235}, [538] = {.lex_state = 235}, - [539] = {.lex_state = 438}, + [539] = {.lex_state = 235}, [540] = {.lex_state = 235}, - [541] = {.lex_state = 235}, + [541] = {.lex_state = 285}, [542] = {.lex_state = 235}, - [543] = {.lex_state = 238}, + [543] = {.lex_state = 235}, [544] = {.lex_state = 235}, - [545] = {.lex_state = 438}, - [546] = {.lex_state = 235}, + [545] = {.lex_state = 235}, + [546] = {.lex_state = 438}, [547] = {.lex_state = 235}, - [548] = {.lex_state = 438}, - [549] = {.lex_state = 238}, - [550] = {.lex_state = 235}, - [551] = {.lex_state = 235}, + [548] = {.lex_state = 235}, + [549] = {.lex_state = 235}, + [550] = {.lex_state = 238}, + [551] = {.lex_state = 238}, [552] = {.lex_state = 235}, [553] = {.lex_state = 235}, [554] = {.lex_state = 235}, - [555] = {.lex_state = 285}, + [555] = {.lex_state = 438}, [556] = {.lex_state = 438}, [557] = {.lex_state = 438}, - [558] = {.lex_state = 238}, + [558] = {.lex_state = 438}, [559] = {.lex_state = 438}, [560] = {.lex_state = 438}, [561] = {.lex_state = 438}, - [562] = {.lex_state = 438}, + [562] = {.lex_state = 238}, [563] = {.lex_state = 438}, [564] = {.lex_state = 438}, [565] = {.lex_state = 438}, [566] = {.lex_state = 438}, - [567] = {.lex_state = 238}, + [567] = {.lex_state = 438}, [568] = {.lex_state = 438}, - [569] = {.lex_state = 238}, - [570] = {.lex_state = 238}, - [571] = {.lex_state = 438}, + [569] = {.lex_state = 438}, + [570] = {.lex_state = 438}, + [571] = {.lex_state = 238}, [572] = {.lex_state = 438}, - [573] = {.lex_state = 238}, + [573] = {.lex_state = 438}, [574] = {.lex_state = 438}, [575] = {.lex_state = 438}, - [576] = {.lex_state = 238}, - [577] = {.lex_state = 438}, - [578] = {.lex_state = 438}, + [576] = {.lex_state = 438}, + [577] = {.lex_state = 238}, + [578] = {.lex_state = 238}, [579] = {.lex_state = 238}, [580] = {.lex_state = 238}, [581] = {.lex_state = 238}, - [582] = {.lex_state = 438}, - [583] = {.lex_state = 238}, - [584] = {.lex_state = 238}, - [585] = {.lex_state = 238}, + [582] = {.lex_state = 238}, + [583] = {.lex_state = 438}, + [584] = {.lex_state = 438}, + [585] = {.lex_state = 438}, [586] = {.lex_state = 438}, - [587] = {.lex_state = 238}, - [588] = {.lex_state = 238}, + [587] = {.lex_state = 438}, + [588] = {.lex_state = 438}, [589] = {.lex_state = 438}, - [590] = {.lex_state = 438}, + [590] = {.lex_state = 238}, [591] = {.lex_state = 238}, - [592] = {.lex_state = 238}, + [592] = {.lex_state = 438}, [593] = {.lex_state = 238}, [594] = {.lex_state = 438}, [595] = {.lex_state = 238}, - [596] = {.lex_state = 438}, + [596] = {.lex_state = 238}, [597] = {.lex_state = 438}, [598] = {.lex_state = 438}, - [599] = {.lex_state = 238}, + [599] = {.lex_state = 438}, [600] = {.lex_state = 238}, - [601] = {.lex_state = 438}, - [602] = {.lex_state = 238}, - [603] = {.lex_state = 438}, - [604] = {.lex_state = 238}, + [601] = {.lex_state = 238}, + [602] = {.lex_state = 438}, + [603] = {.lex_state = 238}, + [604] = {.lex_state = 438}, [605] = {.lex_state = 438}, [606] = {.lex_state = 238}, - [607] = {.lex_state = 438}, - [608] = {.lex_state = 438}, - [609] = {.lex_state = 438}, + [607] = {.lex_state = 238}, + [608] = {.lex_state = 238}, + [609] = {.lex_state = 238}, [610] = {.lex_state = 238}, - [611] = {.lex_state = 438}, + [611] = {.lex_state = 238}, [612] = {.lex_state = 238}, [613] = {.lex_state = 438}, - [614] = {.lex_state = 438}, + [614] = {.lex_state = 238}, [615] = {.lex_state = 438}, - [616] = {.lex_state = 238}, - [617] = {.lex_state = 438}, - [618] = {.lex_state = 438}, + [616] = {.lex_state = 438}, + [617] = {.lex_state = 238}, + [618] = {.lex_state = 238}, [619] = {.lex_state = 238}, [620] = {.lex_state = 238}, [621] = {.lex_state = 238}, - [622] = {.lex_state = 438}, + [622] = {.lex_state = 238}, [623] = {.lex_state = 238}, - [624] = {.lex_state = 238}, + [624] = {.lex_state = 438}, [625] = {.lex_state = 438}, - [626] = {.lex_state = 438}, + [626] = {.lex_state = 238}, [627] = {.lex_state = 438}, [628] = {.lex_state = 238}, [629] = {.lex_state = 438}, - [630] = {.lex_state = 238}, + [630] = {.lex_state = 438}, [631] = {.lex_state = 238}, - [632] = {.lex_state = 438}, + [632] = {.lex_state = 238}, [633] = {.lex_state = 438}, - [634] = {.lex_state = 238}, + [634] = {.lex_state = 438}, [635] = {.lex_state = 438}, - [636] = {.lex_state = 438}, + [636] = {.lex_state = 238}, [637] = {.lex_state = 238}, - [638] = {.lex_state = 438}, + [638] = {.lex_state = 227}, [639] = {.lex_state = 438}, [640] = {.lex_state = 238}, [641] = {.lex_state = 238}, - [642] = {.lex_state = 238}, - [643] = {.lex_state = 238}, + [642] = {.lex_state = 438}, + [643] = {.lex_state = 438}, [644] = {.lex_state = 238}, - [645] = {.lex_state = 227}, + [645] = {.lex_state = 238}, [646] = {.lex_state = 238}, [647] = {.lex_state = 238}, [648] = {.lex_state = 438}, [649] = {.lex_state = 238}, - [650] = {.lex_state = 238}, - [651] = {.lex_state = 438}, - [652] = {.lex_state = 238}, - [653] = {.lex_state = 238}, - [654] = {.lex_state = 238}, + [650] = {.lex_state = 438}, + [651] = {.lex_state = 238}, + [652] = {.lex_state = 438}, + [653] = {.lex_state = 438}, + [654] = {.lex_state = 438}, [655] = {.lex_state = 238}, [656] = {.lex_state = 238}, [657] = {.lex_state = 438}, [658] = {.lex_state = 238}, - [659] = {.lex_state = 238}, - [660] = {.lex_state = 238}, - [661] = {.lex_state = 238}, - [662] = {.lex_state = 238}, + [659] = {.lex_state = 438}, + [660] = {.lex_state = 438}, + [661] = {.lex_state = 438}, + [662] = {.lex_state = 438}, [663] = {.lex_state = 238}, - [664] = {.lex_state = 238}, + [664] = {.lex_state = 438}, [665] = {.lex_state = 238}, - [666] = {.lex_state = 438}, + [666] = {.lex_state = 238}, [667] = {.lex_state = 238}, [668] = {.lex_state = 238}, [669] = {.lex_state = 238}, [670] = {.lex_state = 238}, [671] = {.lex_state = 238}, [672] = {.lex_state = 238}, - [673] = {.lex_state = 238}, + [673] = {.lex_state = 438}, [674] = {.lex_state = 438}, - [675] = {.lex_state = 438}, + [675] = {.lex_state = 238}, [676] = {.lex_state = 438}, - [677] = {.lex_state = 438}, - [678] = {.lex_state = 238}, - [679] = {.lex_state = 238}, - [680] = {.lex_state = 238}, + [677] = {.lex_state = 238}, + [678] = {.lex_state = 438}, + [679] = {.lex_state = 438}, + [680] = {.lex_state = 438}, [681] = {.lex_state = 238}, [682] = {.lex_state = 238}, - [683] = {.lex_state = 238}, - [684] = {.lex_state = 238}, - [685] = {.lex_state = 238}, - [686] = {.lex_state = 238}, - [687] = {.lex_state = 238}, + [683] = {.lex_state = 438}, + [684] = {.lex_state = 438}, + [685] = {.lex_state = 438}, + [686] = {.lex_state = 438}, + [687] = {.lex_state = 438}, [688] = {.lex_state = 238}, [689] = {.lex_state = 238}, - [690] = {.lex_state = 238}, + [690] = {.lex_state = 438}, [691] = {.lex_state = 238}, [692] = {.lex_state = 238}, - [693] = {.lex_state = 238}, - [694] = {.lex_state = 438}, - [695] = {.lex_state = 238}, + [693] = {.lex_state = 438}, + [694] = {.lex_state = 238}, + [695] = {.lex_state = 438}, [696] = {.lex_state = 238}, [697] = {.lex_state = 238}, - [698] = {.lex_state = 238}, + [698] = {.lex_state = 438}, [699] = {.lex_state = 238}, - [700] = {.lex_state = 238}, - [701] = {.lex_state = 238}, - [702] = {.lex_state = 238}, + [700] = {.lex_state = 438}, + [701] = {.lex_state = 438}, + [702] = {.lex_state = 438}, [703] = {.lex_state = 238}, [704] = {.lex_state = 438}, [705] = {.lex_state = 238}, [706] = {.lex_state = 438}, - [707] = {.lex_state = 438}, - [708] = {.lex_state = 238}, + [707] = {.lex_state = 238}, + [708] = {.lex_state = 438}, [709] = {.lex_state = 238}, [710] = {.lex_state = 238}, [711] = {.lex_state = 238}, @@ -27444,26 +27521,26 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [714] = {.lex_state = 238}, [715] = {.lex_state = 238}, [716] = {.lex_state = 438}, - [717] = {.lex_state = 238}, + [717] = {.lex_state = 438}, [718] = {.lex_state = 238}, - [719] = {.lex_state = 238}, + [719] = {.lex_state = 438}, [720] = {.lex_state = 238}, - [721] = {.lex_state = 238}, - [722] = {.lex_state = 238}, + [721] = {.lex_state = 438}, + [722] = {.lex_state = 438}, [723] = {.lex_state = 238}, [724] = {.lex_state = 238}, [725] = {.lex_state = 238}, - [726] = {.lex_state = 438}, + [726] = {.lex_state = 238}, [727] = {.lex_state = 238}, [728] = {.lex_state = 238}, [729] = {.lex_state = 238}, [730] = {.lex_state = 238}, [731] = {.lex_state = 238}, [732] = {.lex_state = 238}, - [733] = {.lex_state = 438}, + [733] = {.lex_state = 238}, [734] = {.lex_state = 238}, - [735] = {.lex_state = 238}, - [736] = {.lex_state = 238}, + [735] = {.lex_state = 438}, + [736] = {.lex_state = 438}, [737] = {.lex_state = 238}, [738] = {.lex_state = 238}, [739] = {.lex_state = 238}, @@ -27471,43 +27548,43 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [741] = {.lex_state = 238}, [742] = {.lex_state = 238}, [743] = {.lex_state = 238}, - [744] = {.lex_state = 438}, - [745] = {.lex_state = 438}, + [744] = {.lex_state = 238}, + [745] = {.lex_state = 238}, [746] = {.lex_state = 238}, - [747] = {.lex_state = 238}, - [748] = {.lex_state = 438}, - [749] = {.lex_state = 438}, - [750] = {.lex_state = 438}, - [751] = {.lex_state = 438}, - [752] = {.lex_state = 438}, - [753] = {.lex_state = 438}, - [754] = {.lex_state = 438}, - [755] = {.lex_state = 438}, - [756] = {.lex_state = 438}, - [757] = {.lex_state = 438}, - [758] = {.lex_state = 438}, - [759] = {.lex_state = 438}, + [747] = {.lex_state = 227}, + [748] = {.lex_state = 238}, + [749] = {.lex_state = 238}, + [750] = {.lex_state = 238}, + [751] = {.lex_state = 238}, + [752] = {.lex_state = 238}, + [753] = {.lex_state = 238}, + [754] = {.lex_state = 238}, + [755] = {.lex_state = 238}, + [756] = {.lex_state = 238}, + [757] = {.lex_state = 238}, + [758] = {.lex_state = 238}, + [759] = {.lex_state = 238}, [760] = {.lex_state = 438}, [761] = {.lex_state = 438}, [762] = {.lex_state = 438}, - [763] = {.lex_state = 438}, + [763] = {.lex_state = 238}, [764] = {.lex_state = 438}, - [765] = {.lex_state = 438}, - [766] = {.lex_state = 438}, - [767] = {.lex_state = 227}, - [768] = {.lex_state = 438}, - [769] = {.lex_state = 438}, - [770] = {.lex_state = 438}, - [771] = {.lex_state = 438}, - [772] = {.lex_state = 438}, + [765] = {.lex_state = 238}, + [766] = {.lex_state = 238}, + [767] = {.lex_state = 438}, + [768] = {.lex_state = 238}, + [769] = {.lex_state = 238}, + [770] = {.lex_state = 238}, + [771] = {.lex_state = 238}, + [772] = {.lex_state = 238}, [773] = {.lex_state = 438}, - [774] = {.lex_state = 438}, + [774] = {.lex_state = 238}, [775] = {.lex_state = 438}, - [776] = {.lex_state = 438}, - [777] = {.lex_state = 438}, + [776] = {.lex_state = 238}, + [777] = {.lex_state = 238}, [778] = {.lex_state = 438}, - [779] = {.lex_state = 438}, - [780] = {.lex_state = 238}, + [779] = {.lex_state = 238}, + [780] = {.lex_state = 438}, [781] = {.lex_state = 438}, [782] = {.lex_state = 438}, [783] = {.lex_state = 438}, @@ -27554,13 +27631,13 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [824] = {.lex_state = 438}, [825] = {.lex_state = 438}, [826] = {.lex_state = 438}, - [827] = {.lex_state = 438}, + [827] = {.lex_state = 227}, [828] = {.lex_state = 438}, [829] = {.lex_state = 438}, [830] = {.lex_state = 438}, [831] = {.lex_state = 438}, [832] = {.lex_state = 438}, - [833] = {.lex_state = 227}, + [833] = {.lex_state = 438}, [834] = {.lex_state = 438}, [835] = {.lex_state = 438}, [836] = {.lex_state = 438}, @@ -27597,9 +27674,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [867] = {.lex_state = 438}, [868] = {.lex_state = 438}, [869] = {.lex_state = 438}, - [870] = {.lex_state = 333}, + [870] = {.lex_state = 238}, [871] = {.lex_state = 438}, - [872] = {.lex_state = 333}, + [872] = {.lex_state = 238}, [873] = {.lex_state = 438}, [874] = {.lex_state = 438}, [875] = {.lex_state = 438}, @@ -27607,24 +27684,24 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [877] = {.lex_state = 438}, [878] = {.lex_state = 438}, [879] = {.lex_state = 438}, - [880] = {.lex_state = 438}, + [880] = {.lex_state = 238}, [881] = {.lex_state = 438}, - [882] = {.lex_state = 438}, + [882] = {.lex_state = 238}, [883] = {.lex_state = 438}, - [884] = {.lex_state = 333}, + [884] = {.lex_state = 438}, [885] = {.lex_state = 438}, [886] = {.lex_state = 333}, [887] = {.lex_state = 438}, - [888] = {.lex_state = 438}, + [888] = {.lex_state = 238}, [889] = {.lex_state = 438}, - [890] = {.lex_state = 438}, + [890] = {.lex_state = 286}, [891] = {.lex_state = 438}, [892] = {.lex_state = 438}, [893] = {.lex_state = 438}, - [894] = {.lex_state = 438}, - [895] = {.lex_state = 333}, - [896] = {.lex_state = 238}, - [897] = {.lex_state = 238}, + [894] = {.lex_state = 333}, + [895] = {.lex_state = 238}, + [896] = {.lex_state = 438}, + [897] = {.lex_state = 438}, [898] = {.lex_state = 438}, [899] = {.lex_state = 438}, [900] = {.lex_state = 438}, @@ -27633,90 +27710,90 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [903] = {.lex_state = 438}, [904] = {.lex_state = 438}, [905] = {.lex_state = 438}, - [906] = {.lex_state = 238}, - [907] = {.lex_state = 238}, - [908] = {.lex_state = 333}, + [906] = {.lex_state = 438}, + [907] = {.lex_state = 333}, + [908] = {.lex_state = 438}, [909] = {.lex_state = 438}, - [910] = {.lex_state = 438}, - [911] = {.lex_state = 438}, - [912] = {.lex_state = 438}, + [910] = {.lex_state = 238}, + [911] = {.lex_state = 238}, + [912] = {.lex_state = 238}, [913] = {.lex_state = 438}, - [914] = {.lex_state = 333}, + [914] = {.lex_state = 438}, [915] = {.lex_state = 438}, - [916] = {.lex_state = 238}, + [916] = {.lex_state = 333}, [917] = {.lex_state = 438}, [918] = {.lex_state = 438}, [919] = {.lex_state = 438}, [920] = {.lex_state = 438}, - [921] = {.lex_state = 438}, + [921] = {.lex_state = 286}, [922] = {.lex_state = 438}, [923] = {.lex_state = 438}, - [924] = {.lex_state = 333}, - [925] = {.lex_state = 438}, - [926] = {.lex_state = 438}, - [927] = {.lex_state = 438}, - [928] = {.lex_state = 438}, - [929] = {.lex_state = 333}, + [924] = {.lex_state = 438}, + [925] = {.lex_state = 238}, + [926] = {.lex_state = 238}, + [927] = {.lex_state = 238}, + [928] = {.lex_state = 238}, + [929] = {.lex_state = 438}, [930] = {.lex_state = 438}, - [931] = {.lex_state = 238}, + [931] = {.lex_state = 438}, [932] = {.lex_state = 333}, - [933] = {.lex_state = 438}, - [934] = {.lex_state = 438}, - [935] = {.lex_state = 333}, + [933] = {.lex_state = 238}, + [934] = {.lex_state = 238}, + [935] = {.lex_state = 238}, [936] = {.lex_state = 333}, [937] = {.lex_state = 438}, [938] = {.lex_state = 438}, [939] = {.lex_state = 438}, - [940] = {.lex_state = 333}, - [941] = {.lex_state = 333}, - [942] = {.lex_state = 333}, - [943] = {.lex_state = 438}, - [944] = {.lex_state = 438}, - [945] = {.lex_state = 438}, + [940] = {.lex_state = 438}, + [941] = {.lex_state = 438}, + [942] = {.lex_state = 438}, + [943] = {.lex_state = 238}, + [944] = {.lex_state = 238}, + [945] = {.lex_state = 238}, [946] = {.lex_state = 438}, - [947] = {.lex_state = 333}, + [947] = {.lex_state = 438}, [948] = {.lex_state = 333}, - [949] = {.lex_state = 286}, - [950] = {.lex_state = 238}, - [951] = {.lex_state = 238}, - [952] = {.lex_state = 333}, - [953] = {.lex_state = 238}, - [954] = {.lex_state = 333}, + [949] = {.lex_state = 238}, + [950] = {.lex_state = 333}, + [951] = {.lex_state = 438}, + [952] = {.lex_state = 438}, + [953] = {.lex_state = 438}, + [954] = {.lex_state = 238}, [955] = {.lex_state = 333}, [956] = {.lex_state = 333}, - [957] = {.lex_state = 438}, - [958] = {.lex_state = 438}, - [959] = {.lex_state = 438}, - [960] = {.lex_state = 286}, - [961] = {.lex_state = 438}, + [957] = {.lex_state = 333}, + [958] = {.lex_state = 333}, + [959] = {.lex_state = 333}, + [960] = {.lex_state = 438}, + [961] = {.lex_state = 333}, [962] = {.lex_state = 438}, [963] = {.lex_state = 438}, [964] = {.lex_state = 438}, - [965] = {.lex_state = 438}, - [966] = {.lex_state = 238}, - [967] = {.lex_state = 238}, - [968] = {.lex_state = 238}, - [969] = {.lex_state = 238}, + [965] = {.lex_state = 333}, + [966] = {.lex_state = 438}, + [967] = {.lex_state = 438}, + [968] = {.lex_state = 333}, + [969] = {.lex_state = 438}, [970] = {.lex_state = 438}, [971] = {.lex_state = 438}, [972] = {.lex_state = 438}, - [973] = {.lex_state = 438}, - [974] = {.lex_state = 333}, - [975] = {.lex_state = 438}, + [973] = {.lex_state = 333}, + [974] = {.lex_state = 438}, + [975] = {.lex_state = 333}, [976] = {.lex_state = 438}, - [977] = {.lex_state = 438}, + [977] = {.lex_state = 333}, [978] = {.lex_state = 438}, [979] = {.lex_state = 438}, - [980] = {.lex_state = 438}, - [981] = {.lex_state = 438}, + [980] = {.lex_state = 333}, + [981] = {.lex_state = 333}, [982] = {.lex_state = 438}, - [983] = {.lex_state = 438}, + [983] = {.lex_state = 333}, [984] = {.lex_state = 438}, - [985] = {.lex_state = 238}, - [986] = {.lex_state = 238}, - [987] = {.lex_state = 238}, + [985] = {.lex_state = 333}, + [986] = {.lex_state = 438}, + [987] = {.lex_state = 438}, [988] = {.lex_state = 438}, - [989] = {.lex_state = 286}, + [989] = {.lex_state = 438}, [990] = {.lex_state = 438}, [991] = {.lex_state = 438}, [992] = {.lex_state = 438}, @@ -27726,28 +27803,28 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [996] = {.lex_state = 438}, [997] = {.lex_state = 438}, [998] = {.lex_state = 438}, - [999] = {.lex_state = 238}, - [1000] = {.lex_state = 238}, - [1001] = {.lex_state = 238}, + [999] = {.lex_state = 438}, + [1000] = {.lex_state = 438}, + [1001] = {.lex_state = 438}, [1002] = {.lex_state = 438}, [1003] = {.lex_state = 438}, [1004] = {.lex_state = 438}, [1005] = {.lex_state = 438}, - [1006] = {.lex_state = 438}, + [1006] = {.lex_state = 286}, [1007] = {.lex_state = 438}, [1008] = {.lex_state = 438}, - [1009] = {.lex_state = 238}, + [1009] = {.lex_state = 438}, [1010] = {.lex_state = 438}, [1011] = {.lex_state = 438}, - [1012] = {.lex_state = 238}, + [1012] = {.lex_state = 438}, [1013] = {.lex_state = 438}, [1014] = {.lex_state = 438}, - [1015] = {.lex_state = 333}, - [1016] = {.lex_state = 227}, - [1017] = {.lex_state = 227}, - [1018] = {.lex_state = 231}, - [1019] = {.lex_state = 232}, - [1020] = {.lex_state = 227}, + [1015] = {.lex_state = 227}, + [1016] = {.lex_state = 231}, + [1017] = {.lex_state = 232}, + [1018] = {.lex_state = 227}, + [1019] = {.lex_state = 227}, + [1020] = {.lex_state = 240}, [1021] = {.lex_state = 240}, [1022] = {.lex_state = 240}, [1023] = {.lex_state = 240}, @@ -27763,9 +27840,9 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1033] = {.lex_state = 240}, [1034] = {.lex_state = 240}, [1035] = {.lex_state = 240}, - [1036] = {.lex_state = 240}, + [1036] = {.lex_state = 233}, [1037] = {.lex_state = 233}, - [1038] = {.lex_state = 233}, + [1038] = {.lex_state = 240}, [1039] = {.lex_state = 240}, [1040] = {.lex_state = 240}, [1041] = {.lex_state = 240}, @@ -27820,102 +27897,102 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1090] = {.lex_state = 240}, [1091] = {.lex_state = 240}, [1092] = {.lex_state = 240}, - [1093] = {.lex_state = 240}, + [1093] = {.lex_state = 285}, [1094] = {.lex_state = 285}, [1095] = {.lex_state = 285}, [1096] = {.lex_state = 285}, [1097] = {.lex_state = 285}, [1098] = {.lex_state = 285}, [1099] = {.lex_state = 285}, - [1100] = {.lex_state = 285}, + [1100] = {.lex_state = 239}, [1101] = {.lex_state = 239}, - [1102] = {.lex_state = 239}, + [1102] = {.lex_state = 285}, [1103] = {.lex_state = 285}, - [1104] = {.lex_state = 240}, - [1105] = {.lex_state = 285}, + [1104] = {.lex_state = 285}, + [1105] = {.lex_state = 240}, [1106] = {.lex_state = 285}, [1107] = {.lex_state = 285}, [1108] = {.lex_state = 285}, [1109] = {.lex_state = 285}, - [1110] = {.lex_state = 285}, - [1111] = {.lex_state = 239}, - [1112] = {.lex_state = 438}, - [1113] = {.lex_state = 239}, + [1110] = {.lex_state = 239}, + [1111] = {.lex_state = 438}, + [1112] = {.lex_state = 239}, + [1113] = {.lex_state = 438}, [1114] = {.lex_state = 438}, - [1115] = {.lex_state = 438}, + [1115] = {.lex_state = 253}, [1116] = {.lex_state = 237}, [1117] = {.lex_state = 285}, [1118] = {.lex_state = 237}, - [1119] = {.lex_state = 253}, - [1120] = {.lex_state = 253}, + [1119] = {.lex_state = 241}, + [1120] = {.lex_state = 241}, [1121] = {.lex_state = 241}, [1122] = {.lex_state = 241}, - [1123] = {.lex_state = 241}, - [1124] = {.lex_state = 240}, - [1125] = {.lex_state = 253}, - [1126] = {.lex_state = 253}, - [1127] = {.lex_state = 253}, - [1128] = {.lex_state = 240}, - [1129] = {.lex_state = 253}, - [1130] = {.lex_state = 253}, + [1123] = {.lex_state = 240}, + [1124] = {.lex_state = 253}, + [1125] = {.lex_state = 240}, + [1126] = {.lex_state = 240}, + [1127] = {.lex_state = 241}, + [1128] = {.lex_state = 241}, + [1129] = {.lex_state = 241}, + [1130] = {.lex_state = 241}, [1131] = {.lex_state = 241}, - [1132] = {.lex_state = 241}, + [1132] = {.lex_state = 240}, [1133] = {.lex_state = 241}, [1134] = {.lex_state = 241}, - [1135] = {.lex_state = 240}, - [1136] = {.lex_state = 253}, + [1135] = {.lex_state = 241}, + [1136] = {.lex_state = 241}, [1137] = {.lex_state = 241}, [1138] = {.lex_state = 241}, - [1139] = {.lex_state = 241}, - [1140] = {.lex_state = 240}, + [1139] = {.lex_state = 253}, + [1140] = {.lex_state = 241}, [1141] = {.lex_state = 253}, [1142] = {.lex_state = 241}, [1143] = {.lex_state = 253}, [1144] = {.lex_state = 241}, [1145] = {.lex_state = 241}, - [1146] = {.lex_state = 241}, - [1147] = {.lex_state = 240}, + [1146] = {.lex_state = 240}, + [1147] = {.lex_state = 253}, [1148] = {.lex_state = 240}, - [1149] = {.lex_state = 241}, + [1149] = {.lex_state = 240}, [1150] = {.lex_state = 241}, - [1151] = {.lex_state = 253}, - [1152] = {.lex_state = 241}, - [1153] = {.lex_state = 240}, - [1154] = {.lex_state = 241}, + [1151] = {.lex_state = 241}, + [1152] = {.lex_state = 240}, + [1153] = {.lex_state = 253}, + [1154] = {.lex_state = 240}, [1155] = {.lex_state = 241}, [1156] = {.lex_state = 241}, - [1157] = {.lex_state = 240}, - [1158] = {.lex_state = 240}, + [1157] = {.lex_state = 253}, + [1158] = {.lex_state = 241}, [1159] = {.lex_state = 241}, [1160] = {.lex_state = 241}, - [1161] = {.lex_state = 253}, + [1161] = {.lex_state = 241}, [1162] = {.lex_state = 241}, [1163] = {.lex_state = 241}, - [1164] = {.lex_state = 241}, + [1164] = {.lex_state = 253}, [1165] = {.lex_state = 241}, - [1166] = {.lex_state = 241}, + [1166] = {.lex_state = 253}, [1167] = {.lex_state = 241}, - [1168] = {.lex_state = 241}, + [1168] = {.lex_state = 253}, [1169] = {.lex_state = 241}, - [1170] = {.lex_state = 241}, - [1171] = {.lex_state = 241}, + [1170] = {.lex_state = 240}, + [1171] = {.lex_state = 240}, [1172] = {.lex_state = 240}, - [1173] = {.lex_state = 240}, + [1173] = {.lex_state = 237}, [1174] = {.lex_state = 237}, [1175] = {.lex_state = 240}, [1176] = {.lex_state = 240}, [1177] = {.lex_state = 240}, - [1178] = {.lex_state = 240}, + [1178] = {.lex_state = 237}, [1179] = {.lex_state = 240}, [1180] = {.lex_state = 237}, [1181] = {.lex_state = 240}, - [1182] = {.lex_state = 240}, + [1182] = {.lex_state = 237}, [1183] = {.lex_state = 240}, [1184] = {.lex_state = 240}, [1185] = {.lex_state = 240}, [1186] = {.lex_state = 240}, [1187] = {.lex_state = 240}, - [1188] = {.lex_state = 240}, + [1188] = {.lex_state = 253}, [1189] = {.lex_state = 240}, [1190] = {.lex_state = 240}, [1191] = {.lex_state = 240}, @@ -27927,31 +28004,31 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1197] = {.lex_state = 240}, [1198] = {.lex_state = 237}, [1199] = {.lex_state = 240}, - [1200] = {.lex_state = 237}, + [1200] = {.lex_state = 240}, [1201] = {.lex_state = 240}, [1202] = {.lex_state = 240}, [1203] = {.lex_state = 240}, - [1204] = {.lex_state = 253}, + [1204] = {.lex_state = 240}, [1205] = {.lex_state = 237}, [1206] = {.lex_state = 240}, - [1207] = {.lex_state = 253}, + [1207] = {.lex_state = 240}, [1208] = {.lex_state = 240}, [1209] = {.lex_state = 240}, [1210] = {.lex_state = 240}, [1211] = {.lex_state = 240}, - [1212] = {.lex_state = 253}, + [1212] = {.lex_state = 240}, [1213] = {.lex_state = 240}, [1214] = {.lex_state = 240}, - [1215] = {.lex_state = 237}, - [1216] = {.lex_state = 237}, + [1215] = {.lex_state = 253}, + [1216] = {.lex_state = 240}, [1217] = {.lex_state = 240}, - [1218] = {.lex_state = 240}, - [1219] = {.lex_state = 240}, - [1220] = {.lex_state = 240}, - [1221] = {.lex_state = 237}, + [1218] = {.lex_state = 253}, + [1219] = {.lex_state = 237}, + [1220] = {.lex_state = 237}, + [1221] = {.lex_state = 240}, [1222] = {.lex_state = 237}, [1223] = {.lex_state = 237}, - [1224] = {.lex_state = 237}, + [1224] = {.lex_state = 240}, [1225] = {.lex_state = 237}, [1226] = {.lex_state = 237}, [1227] = {.lex_state = 237}, @@ -27975,7 +28052,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1245] = {.lex_state = 237}, [1246] = {.lex_state = 237}, [1247] = {.lex_state = 237}, - [1248] = {.lex_state = 240}, + [1248] = {.lex_state = 237}, [1249] = {.lex_state = 237}, [1250] = {.lex_state = 237}, [1251] = {.lex_state = 237}, @@ -27989,12 +28066,12 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1259] = {.lex_state = 237}, [1260] = {.lex_state = 237}, [1261] = {.lex_state = 237}, - [1262] = {.lex_state = 240}, + [1262] = {.lex_state = 237}, [1263] = {.lex_state = 237}, [1264] = {.lex_state = 237}, - [1265] = {.lex_state = 237}, - [1266] = {.lex_state = 237}, - [1267] = {.lex_state = 285}, + [1265] = {.lex_state = 285}, + [1266] = {.lex_state = 240}, + [1267] = {.lex_state = 240}, [1268] = {.lex_state = 240}, [1269] = {.lex_state = 240}, [1270] = {.lex_state = 240}, @@ -28005,7 +28082,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1275] = {.lex_state = 240}, [1276] = {.lex_state = 240}, [1277] = {.lex_state = 240}, - [1278] = {.lex_state = 240}, + [1278] = {.lex_state = 248}, [1279] = {.lex_state = 240}, [1280] = {.lex_state = 240}, [1281] = {.lex_state = 240}, @@ -28023,7 +28100,7 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1293] = {.lex_state = 240}, [1294] = {.lex_state = 240}, [1295] = {.lex_state = 240}, - [1296] = {.lex_state = 248}, + [1296] = {.lex_state = 240}, [1297] = {.lex_state = 240}, [1298] = {.lex_state = 240}, [1299] = {.lex_state = 240}, @@ -28668,489 +28745,489 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [1938] = {.lex_state = 240}, [1939] = {.lex_state = 240}, [1940] = {.lex_state = 240}, - [1941] = {.lex_state = 240}, - [1942] = {.lex_state = 240}, - [1943] = {.lex_state = 240}, + [1941] = {.lex_state = 285}, + [1942] = {.lex_state = 266}, + [1943] = {.lex_state = 285}, [1944] = {.lex_state = 285}, [1945] = {.lex_state = 285}, - [1946] = {.lex_state = 266}, + [1946] = {.lex_state = 285}, [1947] = {.lex_state = 266}, [1948] = {.lex_state = 285}, [1949] = {.lex_state = 285}, - [1950] = {.lex_state = 285}, + [1950] = {.lex_state = 266}, [1951] = {.lex_state = 285}, [1952] = {.lex_state = 285}, - [1953] = {.lex_state = 266}, - [1954] = {.lex_state = 285}, - [1955] = {.lex_state = 285}, - [1956] = {.lex_state = 285}, - [1957] = {.lex_state = 266}, - [1958] = {.lex_state = 265}, + [1953] = {.lex_state = 285}, + [1954] = {.lex_state = 266}, + [1955] = {.lex_state = 265}, + [1956] = {.lex_state = 333}, + [1957] = {.lex_state = 265}, + [1958] = {.lex_state = 333}, [1959] = {.lex_state = 265}, - [1960] = {.lex_state = 333}, + [1960] = {.lex_state = 265}, [1961] = {.lex_state = 333}, - [1962] = {.lex_state = 333}, - [1963] = {.lex_state = 265}, + [1962] = {.lex_state = 265}, + [1963] = {.lex_state = 333}, [1964] = {.lex_state = 265}, [1965] = {.lex_state = 265}, [1966] = {.lex_state = 265}, [1967] = {.lex_state = 265}, - [1968] = {.lex_state = 265}, + [1968] = {.lex_state = 289}, [1969] = {.lex_state = 265}, - [1970] = {.lex_state = 265}, - [1971] = {.lex_state = 333}, - [1972] = {.lex_state = 289}, - [1973] = {.lex_state = 265}, - [1974] = {.lex_state = 289}, + [1970] = {.lex_state = 289}, + [1971] = {.lex_state = 265}, + [1972] = {.lex_state = 298}, + [1973] = {.lex_state = 270}, + [1974] = {.lex_state = 266}, [1975] = {.lex_state = 298}, - [1976] = {.lex_state = 266}, - [1977] = {.lex_state = 270}, - [1978] = {.lex_state = 270}, - [1979] = {.lex_state = 266}, - [1980] = {.lex_state = 298}, + [1976] = {.lex_state = 270}, + [1977] = {.lex_state = 266}, + [1978] = {.lex_state = 266}, + [1979] = {.lex_state = 285}, + [1980] = {.lex_state = 285}, [1981] = {.lex_state = 285}, [1982] = {.lex_state = 237}, [1983] = {.lex_state = 237}, - [1984] = {.lex_state = 266}, - [1985] = {.lex_state = 285}, - [1986] = {.lex_state = 285}, - [1987] = {.lex_state = 237}, - [1988] = {.lex_state = 285}, + [1984] = {.lex_state = 285}, + [1985] = {.lex_state = 237}, + [1986] = {.lex_state = 243}, + [1987] = {.lex_state = 243}, + [1988] = {.lex_state = 243}, [1989] = {.lex_state = 289}, - [1990] = {.lex_state = 243}, - [1991] = {.lex_state = 289}, - [1992] = {.lex_state = 243}, - [1993] = {.lex_state = 243}, + [1990] = {.lex_state = 289}, + [1991] = {.lex_state = 271}, + [1992] = {.lex_state = 271}, + [1993] = {.lex_state = 271}, [1994] = {.lex_state = 271}, - [1995] = {.lex_state = 271}, - [1996] = {.lex_state = 271}, - [1997] = {.lex_state = 271}, - [1998] = {.lex_state = 243}, - [1999] = {.lex_state = 287}, - [2000] = {.lex_state = 243}, - [2001] = {.lex_state = 266}, - [2002] = {.lex_state = 265}, - [2003] = {.lex_state = 287}, - [2004] = {.lex_state = 249}, + [1995] = {.lex_state = 287}, + [1996] = {.lex_state = 243}, + [1997] = {.lex_state = 315}, + [1998] = {.lex_state = 266}, + [1999] = {.lex_state = 243}, + [2000] = {.lex_state = 287}, + [2001] = {.lex_state = 272}, + [2002] = {.lex_state = 315}, + [2003] = {.lex_state = 315}, + [2004] = {.lex_state = 287}, [2005] = {.lex_state = 287}, - [2006] = {.lex_state = 272}, + [2006] = {.lex_state = 287}, [2007] = {.lex_state = 287}, [2008] = {.lex_state = 287}, [2009] = {.lex_state = 287}, - [2010] = {.lex_state = 315}, - [2011] = {.lex_state = 315}, - [2012] = {.lex_state = 287}, - [2013] = {.lex_state = 287}, - [2014] = {.lex_state = 287}, + [2010] = {.lex_state = 266}, + [2011] = {.lex_state = 287}, + [2012] = {.lex_state = 243}, + [2013] = {.lex_state = 315}, + [2014] = {.lex_state = 249}, [2015] = {.lex_state = 315}, - [2016] = {.lex_state = 266}, - [2017] = {.lex_state = 266}, - [2018] = {.lex_state = 243}, + [2016] = {.lex_state = 315}, + [2017] = {.lex_state = 265}, + [2018] = {.lex_state = 266}, [2019] = {.lex_state = 315}, - [2020] = {.lex_state = 315}, - [2021] = {.lex_state = 315}, - [2022] = {.lex_state = 315}, - [2023] = {.lex_state = 271}, + [2020] = {.lex_state = 271}, + [2021] = {.lex_state = 271}, + [2022] = {.lex_state = 250}, + [2023] = {.lex_state = 265}, [2024] = {.lex_state = 271}, [2025] = {.lex_state = 271}, - [2026] = {.lex_state = 266}, + [2026] = {.lex_state = 271}, [2027] = {.lex_state = 271}, [2028] = {.lex_state = 271}, - [2029] = {.lex_state = 271}, - [2030] = {.lex_state = 271}, - [2031] = {.lex_state = 265}, - [2032] = {.lex_state = 250}, - [2033] = {.lex_state = 250}, - [2034] = {.lex_state = 250}, + [2029] = {.lex_state = 250}, + [2030] = {.lex_state = 250}, + [2031] = {.lex_state = 266}, + [2032] = {.lex_state = 243}, + [2033] = {.lex_state = 290}, + [2034] = {.lex_state = 256}, [2035] = {.lex_state = 255}, [2036] = {.lex_state = 243}, - [2037] = {.lex_state = 272}, - [2038] = {.lex_state = 290}, - [2039] = {.lex_state = 255}, - [2040] = {.lex_state = 256}, - [2041] = {.lex_state = 290}, - [2042] = {.lex_state = 243}, - [2043] = {.lex_state = 255}, - [2044] = {.lex_state = 256}, - [2045] = {.lex_state = 266}, - [2046] = {.lex_state = 287}, - [2047] = {.lex_state = 272}, - [2048] = {.lex_state = 266}, + [2037] = {.lex_state = 290}, + [2038] = {.lex_state = 255}, + [2039] = {.lex_state = 256}, + [2040] = {.lex_state = 272}, + [2041] = {.lex_state = 255}, + [2042] = {.lex_state = 301}, + [2043] = {.lex_state = 269}, + [2044] = {.lex_state = 266}, + [2045] = {.lex_state = 287}, + [2046] = {.lex_state = 272}, + [2047] = {.lex_state = 287}, + [2048] = {.lex_state = 315}, [2049] = {.lex_state = 287}, - [2050] = {.lex_state = 287}, - [2051] = {.lex_state = 272}, - [2052] = {.lex_state = 243}, - [2053] = {.lex_state = 315}, + [2050] = {.lex_state = 269}, + [2051] = {.lex_state = 287}, + [2052] = {.lex_state = 301}, + [2053] = {.lex_state = 243}, [2054] = {.lex_state = 266}, - [2055] = {.lex_state = 287}, - [2056] = {.lex_state = 269}, + [2055] = {.lex_state = 266}, + [2056] = {.lex_state = 272}, [2057] = {.lex_state = 287}, [2058] = {.lex_state = 266}, - [2059] = {.lex_state = 266}, - [2060] = {.lex_state = 301}, - [2061] = {.lex_state = 287}, - [2062] = {.lex_state = 301}, - [2063] = {.lex_state = 266}, - [2064] = {.lex_state = 269}, - [2065] = {.lex_state = 287}, - [2066] = {.lex_state = 287}, - [2067] = {.lex_state = 287}, - [2068] = {.lex_state = 271}, - [2069] = {.lex_state = 279}, - [2070] = {.lex_state = 271}, - [2071] = {.lex_state = 272}, - [2072] = {.lex_state = 279}, + [2059] = {.lex_state = 287}, + [2060] = {.lex_state = 266}, + [2061] = {.lex_state = 266}, + [2062] = {.lex_state = 287}, + [2063] = {.lex_state = 287}, + [2064] = {.lex_state = 287}, + [2065] = {.lex_state = 271}, + [2066] = {.lex_state = 279}, + [2067] = {.lex_state = 268}, + [2068] = {.lex_state = 287}, + [2069] = {.lex_state = 272}, + [2070] = {.lex_state = 272}, + [2071] = {.lex_state = 279}, + [2072] = {.lex_state = 271}, [2073] = {.lex_state = 268}, - [2074] = {.lex_state = 287}, + [2074] = {.lex_state = 271}, [2075] = {.lex_state = 271}, - [2076] = {.lex_state = 272}, - [2077] = {.lex_state = 268}, - [2078] = {.lex_state = 268}, - [2079] = {.lex_state = 279}, - [2080] = {.lex_state = 279}, - [2081] = {.lex_state = 271}, - [2082] = {.lex_state = 271}, - [2083] = {.lex_state = 268}, - [2084] = {.lex_state = 290}, - [2085] = {.lex_state = 290}, + [2076] = {.lex_state = 271}, + [2077] = {.lex_state = 279}, + [2078] = {.lex_state = 279}, + [2079] = {.lex_state = 268}, + [2080] = {.lex_state = 268}, + [2081] = {.lex_state = 268}, + [2082] = {.lex_state = 268}, + [2083] = {.lex_state = 290}, + [2084] = {.lex_state = 268}, + [2085] = {.lex_state = 268}, [2086] = {.lex_state = 268}, - [2087] = {.lex_state = 271}, - [2088] = {.lex_state = 268}, - [2089] = {.lex_state = 268}, + [2087] = {.lex_state = 268}, + [2088] = {.lex_state = 271}, + [2089] = {.lex_state = 290}, [2090] = {.lex_state = 268}, - [2091] = {.lex_state = 268}, - [2092] = {.lex_state = 290}, + [2091] = {.lex_state = 290}, + [2092] = {.lex_state = 272}, [2093] = {.lex_state = 272}, - [2094] = {.lex_state = 268}, - [2095] = {.lex_state = 272}, + [2094] = {.lex_state = 290}, + [2095] = {.lex_state = 268}, [2096] = {.lex_state = 268}, [2097] = {.lex_state = 268}, - [2098] = {.lex_state = 268}, - [2099] = {.lex_state = 290}, - [2100] = {.lex_state = 268}, + [2098] = {.lex_state = 289}, + [2099] = {.lex_state = 301}, + [2100] = {.lex_state = 271}, [2101] = {.lex_state = 271}, [2102] = {.lex_state = 271}, - [2103] = {.lex_state = 271}, - [2104] = {.lex_state = 268}, - [2105] = {.lex_state = 271}, - [2106] = {.lex_state = 289}, - [2107] = {.lex_state = 271}, - [2108] = {.lex_state = 269}, + [2103] = {.lex_state = 269}, + [2104] = {.lex_state = 269}, + [2105] = {.lex_state = 285}, + [2106] = {.lex_state = 269}, + [2107] = {.lex_state = 285}, + [2108] = {.lex_state = 301}, [2109] = {.lex_state = 285}, - [2110] = {.lex_state = 269}, - [2111] = {.lex_state = 285}, - [2112] = {.lex_state = 268}, + [2110] = {.lex_state = 271}, + [2111] = {.lex_state = 271}, + [2112] = {.lex_state = 271}, [2113] = {.lex_state = 271}, [2114] = {.lex_state = 271}, - [2115] = {.lex_state = 269}, + [2115] = {.lex_state = 271}, [2116] = {.lex_state = 285}, - [2117] = {.lex_state = 301}, + [2117] = {.lex_state = 268}, [2118] = {.lex_state = 271}, - [2119] = {.lex_state = 271}, - [2120] = {.lex_state = 269}, + [2119] = {.lex_state = 269}, + [2120] = {.lex_state = 271}, [2121] = {.lex_state = 271}, - [2122] = {.lex_state = 271}, - [2123] = {.lex_state = 285}, + [2122] = {.lex_state = 268}, + [2123] = {.lex_state = 271}, [2124] = {.lex_state = 271}, [2125] = {.lex_state = 271}, - [2126] = {.lex_state = 271}, - [2127] = {.lex_state = 301}, - [2128] = {.lex_state = 271}, - [2129] = {.lex_state = 271}, - [2130] = {.lex_state = 315}, - [2131] = {.lex_state = 315}, - [2132] = {.lex_state = 268}, + [2126] = {.lex_state = 285}, + [2127] = {.lex_state = 272}, + [2128] = {.lex_state = 270}, + [2129] = {.lex_state = 315}, + [2130] = {.lex_state = 272}, + [2131] = {.lex_state = 285}, + [2132] = {.lex_state = 285}, [2133] = {.lex_state = 285}, - [2134] = {.lex_state = 271}, - [2135] = {.lex_state = 285}, - [2136] = {.lex_state = 271}, - [2137] = {.lex_state = 271}, - [2138] = {.lex_state = 315}, - [2139] = {.lex_state = 271}, - [2140] = {.lex_state = 271}, + [2134] = {.lex_state = 268}, + [2135] = {.lex_state = 268}, + [2136] = {.lex_state = 285}, + [2137] = {.lex_state = 285}, + [2138] = {.lex_state = 285}, + [2139] = {.lex_state = 285}, + [2140] = {.lex_state = 285}, [2141] = {.lex_state = 285}, - [2142] = {.lex_state = 315}, + [2142] = {.lex_state = 285}, [2143] = {.lex_state = 285}, - [2144] = {.lex_state = 271}, + [2144] = {.lex_state = 268}, [2145] = {.lex_state = 298}, - [2146] = {.lex_state = 268}, - [2147] = {.lex_state = 268}, + [2146] = {.lex_state = 271}, + [2147] = {.lex_state = 285}, [2148] = {.lex_state = 268}, - [2149] = {.lex_state = 285}, - [2150] = {.lex_state = 285}, - [2151] = {.lex_state = 268}, - [2152] = {.lex_state = 285}, - [2153] = {.lex_state = 272}, - [2154] = {.lex_state = 285}, - [2155] = {.lex_state = 272}, - [2156] = {.lex_state = 285}, - [2157] = {.lex_state = 285}, - [2158] = {.lex_state = 271}, - [2159] = {.lex_state = 285}, - [2160] = {.lex_state = 285}, + [2149] = {.lex_state = 268}, + [2150] = {.lex_state = 315}, + [2151] = {.lex_state = 271}, + [2152] = {.lex_state = 271}, + [2153] = {.lex_state = 268}, + [2154] = {.lex_state = 268}, + [2155] = {.lex_state = 268}, + [2156] = {.lex_state = 271}, + [2157] = {.lex_state = 271}, + [2158] = {.lex_state = 272}, + [2159] = {.lex_state = 271}, + [2160] = {.lex_state = 271}, [2161] = {.lex_state = 271}, - [2162] = {.lex_state = 272}, - [2163] = {.lex_state = 268}, - [2164] = {.lex_state = 270}, + [2162] = {.lex_state = 271}, + [2163] = {.lex_state = 271}, + [2164] = {.lex_state = 268}, [2165] = {.lex_state = 271}, - [2166] = {.lex_state = 285}, - [2167] = {.lex_state = 268}, - [2168] = {.lex_state = 285}, - [2169] = {.lex_state = 268}, - [2170] = {.lex_state = 268}, - [2171] = {.lex_state = 271}, + [2166] = {.lex_state = 268}, + [2167] = {.lex_state = 315}, + [2168] = {.lex_state = 271}, + [2169] = {.lex_state = 285}, + [2170] = {.lex_state = 271}, + [2171] = {.lex_state = 268}, [2172] = {.lex_state = 271}, - [2173] = {.lex_state = 315}, + [2173] = {.lex_state = 271}, [2174] = {.lex_state = 268}, [2175] = {.lex_state = 269}, - [2176] = {.lex_state = 271}, - [2177] = {.lex_state = 271}, - [2178] = {.lex_state = 271}, - [2179] = {.lex_state = 272}, - [2180] = {.lex_state = 292}, - [2181] = {.lex_state = 271}, - [2182] = {.lex_state = 290}, + [2176] = {.lex_state = 290}, + [2177] = {.lex_state = 292}, + [2178] = {.lex_state = 269}, + [2179] = {.lex_state = 271}, + [2180] = {.lex_state = 271}, + [2181] = {.lex_state = 315}, + [2182] = {.lex_state = 271}, [2183] = {.lex_state = 271}, [2184] = {.lex_state = 271}, [2185] = {.lex_state = 271}, [2186] = {.lex_state = 271}, - [2187] = {.lex_state = 272}, - [2188] = {.lex_state = 292}, - [2189] = {.lex_state = 271}, - [2190] = {.lex_state = 271}, - [2191] = {.lex_state = 271}, + [2187] = {.lex_state = 269}, + [2188] = {.lex_state = 271}, + [2189] = {.lex_state = 268}, + [2190] = {.lex_state = 269}, + [2191] = {.lex_state = 292}, [2192] = {.lex_state = 271}, [2193] = {.lex_state = 271}, [2194] = {.lex_state = 271}, [2195] = {.lex_state = 271}, [2196] = {.lex_state = 271}, - [2197] = {.lex_state = 271}, - [2198] = {.lex_state = 271}, - [2199] = {.lex_state = 271}, + [2197] = {.lex_state = 269}, + [2198] = {.lex_state = 269}, + [2199] = {.lex_state = 272}, [2200] = {.lex_state = 271}, [2201] = {.lex_state = 271}, [2202] = {.lex_state = 271}, [2203] = {.lex_state = 271}, - [2204] = {.lex_state = 271}, - [2205] = {.lex_state = 271}, - [2206] = {.lex_state = 268}, + [2204] = {.lex_state = 269}, + [2205] = {.lex_state = 269}, + [2206] = {.lex_state = 272}, [2207] = {.lex_state = 271}, - [2208] = {.lex_state = 269}, - [2209] = {.lex_state = 269}, - [2210] = {.lex_state = 272}, - [2211] = {.lex_state = 268}, - [2212] = {.lex_state = 269}, - [2213] = {.lex_state = 269}, - [2214] = {.lex_state = 269}, - [2215] = {.lex_state = 269}, - [2216] = {.lex_state = 269}, - [2217] = {.lex_state = 269}, - [2218] = {.lex_state = 269}, - [2219] = {.lex_state = 269}, - [2220] = {.lex_state = 269}, - [2221] = {.lex_state = 271}, - [2222] = {.lex_state = 271}, - [2223] = {.lex_state = 268}, - [2224] = {.lex_state = 290}, - [2225] = {.lex_state = 271}, + [2208] = {.lex_state = 271}, + [2209] = {.lex_state = 271}, + [2210] = {.lex_state = 271}, + [2211] = {.lex_state = 269}, + [2212] = {.lex_state = 272}, + [2213] = {.lex_state = 271}, + [2214] = {.lex_state = 271}, + [2215] = {.lex_state = 271}, + [2216] = {.lex_state = 315}, + [2217] = {.lex_state = 271}, + [2218] = {.lex_state = 271}, + [2219] = {.lex_state = 271}, + [2220] = {.lex_state = 290}, + [2221] = {.lex_state = 268}, + [2222] = {.lex_state = 269}, + [2223] = {.lex_state = 271}, + [2224] = {.lex_state = 271}, + [2225] = {.lex_state = 269}, [2226] = {.lex_state = 271}, [2227] = {.lex_state = 271}, [2228] = {.lex_state = 271}, [2229] = {.lex_state = 271}, - [2230] = {.lex_state = 271}, - [2231] = {.lex_state = 268}, + [2230] = {.lex_state = 269}, + [2231] = {.lex_state = 271}, [2232] = {.lex_state = 271}, - [2233] = {.lex_state = 271}, + [2233] = {.lex_state = 269}, [2234] = {.lex_state = 271}, [2235] = {.lex_state = 271}, [2236] = {.lex_state = 271}, [2237] = {.lex_state = 271}, [2238] = {.lex_state = 271}, - [2239] = {.lex_state = 269}, - [2240] = {.lex_state = 271}, + [2239] = {.lex_state = 271}, + [2240] = {.lex_state = 333}, [2241] = {.lex_state = 271}, [2242] = {.lex_state = 271}, [2243] = {.lex_state = 271}, - [2244] = {.lex_state = 271}, + [2244] = {.lex_state = 317}, [2245] = {.lex_state = 271}, [2246] = {.lex_state = 271}, - [2247] = {.lex_state = 266}, - [2248] = {.lex_state = 266}, - [2249] = {.lex_state = 316}, + [2247] = {.lex_state = 271}, + [2248] = {.lex_state = 271}, + [2249] = {.lex_state = 271}, [2250] = {.lex_state = 271}, - [2251] = {.lex_state = 268}, - [2252] = {.lex_state = 333}, + [2251] = {.lex_state = 271}, + [2252] = {.lex_state = 271}, [2253] = {.lex_state = 271}, [2254] = {.lex_state = 271}, - [2255] = {.lex_state = 289}, + [2255] = {.lex_state = 271}, [2256] = {.lex_state = 271}, - [2257] = {.lex_state = 266}, - [2258] = {.lex_state = 309}, + [2257] = {.lex_state = 271}, + [2258] = {.lex_state = 271}, [2259] = {.lex_state = 271}, [2260] = {.lex_state = 271}, - [2261] = {.lex_state = 271}, + [2261] = {.lex_state = 289}, [2262] = {.lex_state = 271}, - [2263] = {.lex_state = 309}, - [2264] = {.lex_state = 266}, - [2265] = {.lex_state = 271}, + [2263] = {.lex_state = 271}, + [2264] = {.lex_state = 305}, + [2265] = {.lex_state = 305}, [2266] = {.lex_state = 271}, - [2267] = {.lex_state = 324}, + [2267] = {.lex_state = 309}, [2268] = {.lex_state = 271}, - [2269] = {.lex_state = 271}, - [2270] = {.lex_state = 292}, - [2271] = {.lex_state = 271}, - [2272] = {.lex_state = 271}, - [2273] = {.lex_state = 271}, - [2274] = {.lex_state = 279}, - [2275] = {.lex_state = 279}, - [2276] = {.lex_state = 271}, - [2277] = {.lex_state = 316}, - [2278] = {.lex_state = 271}, - [2279] = {.lex_state = 271}, - [2280] = {.lex_state = 271}, - [2281] = {.lex_state = 324}, + [2269] = {.lex_state = 309}, + [2270] = {.lex_state = 271}, + [2271] = {.lex_state = 266}, + [2272] = {.lex_state = 292}, + [2273] = {.lex_state = 279}, + [2274] = {.lex_state = 321}, + [2275] = {.lex_state = 321}, + [2276] = {.lex_state = 317}, + [2277] = {.lex_state = 279}, + [2278] = {.lex_state = 266}, + [2279] = {.lex_state = 266}, + [2280] = {.lex_state = 268}, + [2281] = {.lex_state = 266}, [2282] = {.lex_state = 271}, - [2283] = {.lex_state = 305}, + [2283] = {.lex_state = 271}, [2284] = {.lex_state = 271}, - [2285] = {.lex_state = 305}, - [2286] = {.lex_state = 271}, - [2287] = {.lex_state = 271}, - [2288] = {.lex_state = 271}, - [2289] = {.lex_state = 290}, + [2285] = {.lex_state = 271}, + [2286] = {.lex_state = 305}, + [2287] = {.lex_state = 285}, + [2288] = {.lex_state = 285}, + [2289] = {.lex_state = 285}, [2290] = {.lex_state = 285}, - [2291] = {.lex_state = 266}, - [2292] = {.lex_state = 290}, - [2293] = {.lex_state = 266}, - [2294] = {.lex_state = 285}, - [2295] = {.lex_state = 290}, - [2296] = {.lex_state = 290}, - [2297] = {.lex_state = 290}, - [2298] = {.lex_state = 290}, - [2299] = {.lex_state = 290}, - [2300] = {.lex_state = 272}, - [2301] = {.lex_state = 289}, - [2302] = {.lex_state = 285}, - [2303] = {.lex_state = 285}, - [2304] = {.lex_state = 285}, - [2305] = {.lex_state = 309}, - [2306] = {.lex_state = 285}, - [2307] = {.lex_state = 305}, + [2291] = {.lex_state = 285}, + [2292] = {.lex_state = 285}, + [2293] = {.lex_state = 309}, + [2294] = {.lex_state = 272}, + [2295] = {.lex_state = 266}, + [2296] = {.lex_state = 266}, + [2297] = {.lex_state = 271}, + [2298] = {.lex_state = 289}, + [2299] = {.lex_state = 285}, + [2300] = {.lex_state = 266}, + [2301] = {.lex_state = 285}, + [2302] = {.lex_state = 279}, + [2303] = {.lex_state = 266}, + [2304] = {.lex_state = 266}, + [2305] = {.lex_state = 285}, + [2306] = {.lex_state = 266}, + [2307] = {.lex_state = 269}, [2308] = {.lex_state = 289}, - [2309] = {.lex_state = 266}, - [2310] = {.lex_state = 266}, - [2311] = {.lex_state = 266}, - [2312] = {.lex_state = 266}, - [2313] = {.lex_state = 285}, - [2314] = {.lex_state = 285}, - [2315] = {.lex_state = 269}, - [2316] = {.lex_state = 279}, - [2317] = {.lex_state = 271}, - [2318] = {.lex_state = 271}, - [2319] = {.lex_state = 285}, + [2309] = {.lex_state = 290}, + [2310] = {.lex_state = 271}, + [2311] = {.lex_state = 271}, + [2312] = {.lex_state = 285}, + [2313] = {.lex_state = 290}, + [2314] = {.lex_state = 290}, + [2315] = {.lex_state = 290}, + [2316] = {.lex_state = 290}, + [2317] = {.lex_state = 290}, + [2318] = {.lex_state = 290}, + [2319] = {.lex_state = 266}, [2320] = {.lex_state = 289}, [2321] = {.lex_state = 266}, - [2322] = {.lex_state = 266}, - [2323] = {.lex_state = 271}, - [2324] = {.lex_state = 285}, - [2325] = {.lex_state = 298}, - [2326] = {.lex_state = 298}, - [2327] = {.lex_state = 301}, - [2328] = {.lex_state = 301}, - [2329] = {.lex_state = 301}, - [2330] = {.lex_state = 301}, - [2331] = {.lex_state = 301}, - [2332] = {.lex_state = 269}, - [2333] = {.lex_state = 270}, - [2334] = {.lex_state = 269}, + [2322] = {.lex_state = 285}, + [2323] = {.lex_state = 269}, + [2324] = {.lex_state = 292}, + [2325] = {.lex_state = 289}, + [2326] = {.lex_state = 269}, + [2327] = {.lex_state = 292}, + [2328] = {.lex_state = 292}, + [2329] = {.lex_state = 269}, + [2330] = {.lex_state = 269}, + [2331] = {.lex_state = 292}, + [2332] = {.lex_state = 289}, + [2333] = {.lex_state = 271}, + [2334] = {.lex_state = 271}, [2335] = {.lex_state = 269}, [2336] = {.lex_state = 289}, - [2337] = {.lex_state = 270}, - [2338] = {.lex_state = 269}, - [2339] = {.lex_state = 269}, - [2340] = {.lex_state = 269}, - [2341] = {.lex_state = 270}, - [2342] = {.lex_state = 289}, - [2343] = {.lex_state = 289}, - [2344] = {.lex_state = 289}, - [2345] = {.lex_state = 271}, - [2346] = {.lex_state = 271}, - [2347] = {.lex_state = 290}, - [2348] = {.lex_state = 289}, + [2337] = {.lex_state = 289}, + [2338] = {.lex_state = 270}, + [2339] = {.lex_state = 289}, + [2340] = {.lex_state = 292}, + [2341] = {.lex_state = 269}, + [2342] = {.lex_state = 290}, + [2343] = {.lex_state = 298}, + [2344] = {.lex_state = 270}, + [2345] = {.lex_state = 292}, + [2346] = {.lex_state = 272}, + [2347] = {.lex_state = 289}, + [2348] = {.lex_state = 298}, [2349] = {.lex_state = 289}, - [2350] = {.lex_state = 289}, - [2351] = {.lex_state = 301}, - [2352] = {.lex_state = 298}, - [2353] = {.lex_state = 289}, - [2354] = {.lex_state = 292}, - [2355] = {.lex_state = 292}, - [2356] = {.lex_state = 292}, - [2357] = {.lex_state = 269}, - [2358] = {.lex_state = 292}, - [2359] = {.lex_state = 292}, - [2360] = {.lex_state = 292}, - [2361] = {.lex_state = 272}, - [2362] = {.lex_state = 301}, - [2363] = {.lex_state = 285}, - [2364] = {.lex_state = 292}, + [2350] = {.lex_state = 269}, + [2351] = {.lex_state = 289}, + [2352] = {.lex_state = 270}, + [2353] = {.lex_state = 301}, + [2354] = {.lex_state = 298}, + [2355] = {.lex_state = 301}, + [2356] = {.lex_state = 301}, + [2357] = {.lex_state = 301}, + [2358] = {.lex_state = 301}, + [2359] = {.lex_state = 301}, + [2360] = {.lex_state = 301}, + [2361] = {.lex_state = 280}, + [2362] = {.lex_state = 305}, + [2363] = {.lex_state = 292}, + [2364] = {.lex_state = 305}, [2365] = {.lex_state = 292}, - [2366] = {.lex_state = 280}, - [2367] = {.lex_state = 292}, - [2368] = {.lex_state = 280}, - [2369] = {.lex_state = 305}, - [2370] = {.lex_state = 280}, - [2371] = {.lex_state = 271}, - [2372] = {.lex_state = 301}, - [2373] = {.lex_state = 280}, - [2374] = {.lex_state = 309}, - [2375] = {.lex_state = 298}, - [2376] = {.lex_state = 271}, - [2377] = {.lex_state = 305}, - [2378] = {.lex_state = 305}, - [2379] = {.lex_state = 271}, - [2380] = {.lex_state = 271}, + [2366] = {.lex_state = 270}, + [2367] = {.lex_state = 309}, + [2368] = {.lex_state = 271}, + [2369] = {.lex_state = 271}, + [2370] = {.lex_state = 309}, + [2371] = {.lex_state = 292}, + [2372] = {.lex_state = 271}, + [2373] = {.lex_state = 271}, + [2374] = {.lex_state = 298}, + [2375] = {.lex_state = 271}, + [2376] = {.lex_state = 309}, + [2377] = {.lex_state = 309}, + [2378] = {.lex_state = 301}, + [2379] = {.lex_state = 280}, + [2380] = {.lex_state = 280}, [2381] = {.lex_state = 271}, - [2382] = {.lex_state = 271}, - [2383] = {.lex_state = 305}, - [2384] = {.lex_state = 271}, - [2385] = {.lex_state = 309}, + [2382] = {.lex_state = 305}, + [2383] = {.lex_state = 271}, + [2384] = {.lex_state = 305}, + [2385] = {.lex_state = 280}, [2386] = {.lex_state = 309}, - [2387] = {.lex_state = 309}, - [2388] = {.lex_state = 270}, - [2389] = {.lex_state = 291}, - [2390] = {.lex_state = 309}, - [2391] = {.lex_state = 290}, - [2392] = {.lex_state = 289}, + [2387] = {.lex_state = 289}, + [2388] = {.lex_state = 305}, + [2389] = {.lex_state = 290}, + [2390] = {.lex_state = 305}, + [2391] = {.lex_state = 289}, + [2392] = {.lex_state = 269}, [2393] = {.lex_state = 289}, - [2394] = {.lex_state = 289}, + [2394] = {.lex_state = 309}, [2395] = {.lex_state = 290}, - [2396] = {.lex_state = 290}, - [2397] = {.lex_state = 305}, + [2396] = {.lex_state = 289}, + [2397] = {.lex_state = 291}, [2398] = {.lex_state = 289}, - [2399] = {.lex_state = 289}, + [2399] = {.lex_state = 290}, [2400] = {.lex_state = 290}, [2401] = {.lex_state = 290}, - [2402] = {.lex_state = 285}, + [2402] = {.lex_state = 290}, [2403] = {.lex_state = 290}, [2404] = {.lex_state = 290}, - [2405] = {.lex_state = 289}, - [2406] = {.lex_state = 269}, - [2407] = {.lex_state = 237}, - [2408] = {.lex_state = 237}, - [2409] = {.lex_state = 290}, - [2410] = {.lex_state = 290}, + [2405] = {.lex_state = 290}, + [2406] = {.lex_state = 289}, + [2407] = {.lex_state = 290}, + [2408] = {.lex_state = 290}, + [2409] = {.lex_state = 289}, + [2410] = {.lex_state = 237}, [2411] = {.lex_state = 290}, [2412] = {.lex_state = 289}, - [2413] = {.lex_state = 290}, + [2413] = {.lex_state = 289}, [2414] = {.lex_state = 290}, [2415] = {.lex_state = 290}, - [2416] = {.lex_state = 289}, - [2417] = {.lex_state = 290}, - [2418] = {.lex_state = 290}, + [2416] = {.lex_state = 290}, + [2417] = {.lex_state = 237}, + [2418] = {.lex_state = 289}, [2419] = {.lex_state = 290}, - [2420] = {.lex_state = 289}, - [2421] = {.lex_state = 289}, - [2422] = {.lex_state = 290}, - [2423] = {.lex_state = 305}, + [2420] = {.lex_state = 290}, + [2421] = {.lex_state = 290}, + [2422] = {.lex_state = 289}, + [2423] = {.lex_state = 290}, [2424] = {.lex_state = 290}, [2425] = {.lex_state = 290}, [2426] = {.lex_state = 290}, @@ -29158,338 +29235,338 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2428] = {.lex_state = 290}, [2429] = {.lex_state = 290}, [2430] = {.lex_state = 290}, - [2431] = {.lex_state = 290}, + [2431] = {.lex_state = 285}, [2432] = {.lex_state = 290}, - [2433] = {.lex_state = 290}, - [2434] = {.lex_state = 309}, - [2435] = {.lex_state = 289}, - [2436] = {.lex_state = 301}, - [2437] = {.lex_state = 315}, - [2438] = {.lex_state = 301}, - [2439] = {.lex_state = 301}, - [2440] = {.lex_state = 270}, - [2441] = {.lex_state = 290}, - [2442] = {.lex_state = 290}, - [2443] = {.lex_state = 290}, - [2444] = {.lex_state = 315}, - [2445] = {.lex_state = 298}, - [2446] = {.lex_state = 315}, - [2447] = {.lex_state = 243}, - [2448] = {.lex_state = 301}, - [2449] = {.lex_state = 292}, - [2450] = {.lex_state = 301}, - [2451] = {.lex_state = 290}, - [2452] = {.lex_state = 270}, - [2453] = {.lex_state = 270}, - [2454] = {.lex_state = 315}, - [2455] = {.lex_state = 290}, - [2456] = {.lex_state = 315}, + [2433] = {.lex_state = 289}, + [2434] = {.lex_state = 290}, + [2435] = {.lex_state = 270}, + [2436] = {.lex_state = 289}, + [2437] = {.lex_state = 270}, + [2438] = {.lex_state = 289}, + [2439] = {.lex_state = 302}, + [2440] = {.lex_state = 292}, + [2441] = {.lex_state = 315}, + [2442] = {.lex_state = 315}, + [2443] = {.lex_state = 266}, + [2444] = {.lex_state = 298}, + [2445] = {.lex_state = 270}, + [2446] = {.lex_state = 266}, + [2447] = {.lex_state = 315}, + [2448] = {.lex_state = 298}, + [2449] = {.lex_state = 290}, + [2450] = {.lex_state = 281}, + [2451] = {.lex_state = 298}, + [2452] = {.lex_state = 290}, + [2453] = {.lex_state = 290}, + [2454] = {.lex_state = 290}, + [2455] = {.lex_state = 289}, + [2456] = {.lex_state = 292}, [2457] = {.lex_state = 290}, - [2458] = {.lex_state = 289}, - [2459] = {.lex_state = 279}, - [2460] = {.lex_state = 302}, - [2461] = {.lex_state = 292}, - [2462] = {.lex_state = 315}, - [2463] = {.lex_state = 301}, - [2464] = {.lex_state = 270}, - [2465] = {.lex_state = 289}, + [2458] = {.lex_state = 290}, + [2459] = {.lex_state = 290}, + [2460] = {.lex_state = 292}, + [2461] = {.lex_state = 298}, + [2462] = {.lex_state = 269}, + [2463] = {.lex_state = 279}, + [2464] = {.lex_state = 290}, + [2465] = {.lex_state = 290}, [2466] = {.lex_state = 290}, - [2467] = {.lex_state = 270}, + [2467] = {.lex_state = 298}, [2468] = {.lex_state = 289}, - [2469] = {.lex_state = 315}, - [2470] = {.lex_state = 289}, + [2469] = {.lex_state = 292}, + [2470] = {.lex_state = 279}, [2471] = {.lex_state = 298}, - [2472] = {.lex_state = 269}, - [2473] = {.lex_state = 240}, + [2472] = {.lex_state = 285}, + [2473] = {.lex_state = 279}, [2474] = {.lex_state = 301}, - [2475] = {.lex_state = 303}, - [2476] = {.lex_state = 301}, - [2477] = {.lex_state = 290}, + [2475] = {.lex_state = 301}, + [2476] = {.lex_state = 315}, + [2477] = {.lex_state = 301}, [2478] = {.lex_state = 301}, - [2479] = {.lex_state = 315}, - [2480] = {.lex_state = 289}, - [2481] = {.lex_state = 301}, - [2482] = {.lex_state = 269}, - [2483] = {.lex_state = 292}, - [2484] = {.lex_state = 298}, - [2485] = {.lex_state = 269}, - [2486] = {.lex_state = 266}, - [2487] = {.lex_state = 269}, - [2488] = {.lex_state = 281}, - [2489] = {.lex_state = 279}, - [2490] = {.lex_state = 270}, - [2491] = {.lex_state = 290}, - [2492] = {.lex_state = 298}, - [2493] = {.lex_state = 290}, - [2494] = {.lex_state = 290}, - [2495] = {.lex_state = 315}, - [2496] = {.lex_state = 298}, - [2497] = {.lex_state = 315}, - [2498] = {.lex_state = 315}, - [2499] = {.lex_state = 292}, - [2500] = {.lex_state = 279}, - [2501] = {.lex_state = 301}, - [2502] = {.lex_state = 298}, - [2503] = {.lex_state = 301}, - [2504] = {.lex_state = 270}, - [2505] = {.lex_state = 285}, - [2506] = {.lex_state = 301}, + [2479] = {.lex_state = 270}, + [2480] = {.lex_state = 301}, + [2481] = {.lex_state = 298}, + [2482] = {.lex_state = 315}, + [2483] = {.lex_state = 315}, + [2484] = {.lex_state = 301}, + [2485] = {.lex_state = 270}, + [2486] = {.lex_state = 298}, + [2487] = {.lex_state = 301}, + [2488] = {.lex_state = 270}, + [2489] = {.lex_state = 269}, + [2490] = {.lex_state = 301}, + [2491] = {.lex_state = 291}, + [2492] = {.lex_state = 291}, + [2493] = {.lex_state = 303}, + [2494] = {.lex_state = 301}, + [2495] = {.lex_state = 301}, + [2496] = {.lex_state = 301}, + [2497] = {.lex_state = 269}, + [2498] = {.lex_state = 269}, + [2499] = {.lex_state = 269}, + [2500] = {.lex_state = 315}, + [2501] = {.lex_state = 315}, + [2502] = {.lex_state = 240}, + [2503] = {.lex_state = 315}, + [2504] = {.lex_state = 315}, + [2505] = {.lex_state = 270}, + [2506] = {.lex_state = 315}, [2507] = {.lex_state = 301}, - [2508] = {.lex_state = 301}, - [2509] = {.lex_state = 269}, - [2510] = {.lex_state = 266}, - [2511] = {.lex_state = 269}, + [2508] = {.lex_state = 315}, + [2509] = {.lex_state = 315}, + [2510] = {.lex_state = 301}, + [2511] = {.lex_state = 301}, [2512] = {.lex_state = 301}, - [2513] = {.lex_state = 298}, - [2514] = {.lex_state = 270}, - [2515] = {.lex_state = 315}, - [2516] = {.lex_state = 290}, - [2517] = {.lex_state = 301}, + [2513] = {.lex_state = 301}, + [2514] = {.lex_state = 301}, + [2515] = {.lex_state = 270}, + [2516] = {.lex_state = 269}, + [2517] = {.lex_state = 269}, [2518] = {.lex_state = 301}, - [2519] = {.lex_state = 269}, - [2520] = {.lex_state = 291}, - [2521] = {.lex_state = 291}, - [2522] = {.lex_state = 315}, - [2523] = {.lex_state = 301}, - [2524] = {.lex_state = 298}, + [2519] = {.lex_state = 290}, + [2520] = {.lex_state = 292}, + [2521] = {.lex_state = 301}, + [2522] = {.lex_state = 301}, + [2523] = {.lex_state = 269}, + [2524] = {.lex_state = 243}, [2525] = {.lex_state = 292}, - [2526] = {.lex_state = 301}, - [2527] = {.lex_state = 269}, - [2528] = {.lex_state = 280}, - [2529] = {.lex_state = 266}, - [2530] = {.lex_state = 269}, - [2531] = {.lex_state = 269}, - [2532] = {.lex_state = 266}, - [2533] = {.lex_state = 290}, - [2534] = {.lex_state = 266}, - [2535] = {.lex_state = 298}, - [2536] = {.lex_state = 285}, - [2537] = {.lex_state = 266}, - [2538] = {.lex_state = 245}, - [2539] = {.lex_state = 280}, - [2540] = {.lex_state = 280}, - [2541] = {.lex_state = 266}, + [2526] = {.lex_state = 269}, + [2527] = {.lex_state = 298}, + [2528] = {.lex_state = 266}, + [2529] = {.lex_state = 298}, + [2530] = {.lex_state = 290}, + [2531] = {.lex_state = 305}, + [2532] = {.lex_state = 270}, + [2533] = {.lex_state = 285}, + [2534] = {.lex_state = 285}, + [2535] = {.lex_state = 285}, + [2536] = {.lex_state = 266}, + [2537] = {.lex_state = 298}, + [2538] = {.lex_state = 269}, + [2539] = {.lex_state = 270}, + [2540] = {.lex_state = 266}, + [2541] = {.lex_state = 301}, [2542] = {.lex_state = 298}, - [2543] = {.lex_state = 291}, - [2544] = {.lex_state = 270}, - [2545] = {.lex_state = 285}, - [2546] = {.lex_state = 270}, - [2547] = {.lex_state = 290}, - [2548] = {.lex_state = 279}, + [2543] = {.lex_state = 266}, + [2544] = {.lex_state = 266}, + [2545] = {.lex_state = 266}, + [2546] = {.lex_state = 292}, + [2547] = {.lex_state = 269}, + [2548] = {.lex_state = 266}, [2549] = {.lex_state = 266}, - [2550] = {.lex_state = 301}, - [2551] = {.lex_state = 301}, - [2552] = {.lex_state = 270}, - [2553] = {.lex_state = 301}, - [2554] = {.lex_state = 266}, - [2555] = {.lex_state = 269}, - [2556] = {.lex_state = 245}, - [2557] = {.lex_state = 269}, - [2558] = {.lex_state = 266}, - [2559] = {.lex_state = 269}, - [2560] = {.lex_state = 280}, - [2561] = {.lex_state = 266}, - [2562] = {.lex_state = 269}, - [2563] = {.lex_state = 266}, - [2564] = {.lex_state = 285}, - [2565] = {.lex_state = 245}, - [2566] = {.lex_state = 266}, - [2567] = {.lex_state = 266}, - [2568] = {.lex_state = 285}, - [2569] = {.lex_state = 302}, - [2570] = {.lex_state = 302}, - [2571] = {.lex_state = 303}, - [2572] = {.lex_state = 303}, - [2573] = {.lex_state = 266}, - [2574] = {.lex_state = 266}, - [2575] = {.lex_state = 266}, - [2576] = {.lex_state = 292}, - [2577] = {.lex_state = 269}, - [2578] = {.lex_state = 292}, - [2579] = {.lex_state = 269}, + [2550] = {.lex_state = 280}, + [2551] = {.lex_state = 266}, + [2552] = {.lex_state = 302}, + [2553] = {.lex_state = 302}, + [2554] = {.lex_state = 303}, + [2555] = {.lex_state = 303}, + [2556] = {.lex_state = 266}, + [2557] = {.lex_state = 280}, + [2558] = {.lex_state = 301}, + [2559] = {.lex_state = 266}, + [2560] = {.lex_state = 266}, + [2561] = {.lex_state = 301}, + [2562] = {.lex_state = 266}, + [2563] = {.lex_state = 280}, + [2564] = {.lex_state = 270}, + [2565] = {.lex_state = 266}, + [2566] = {.lex_state = 301}, + [2567] = {.lex_state = 285}, + [2568] = {.lex_state = 301}, + [2569] = {.lex_state = 280}, + [2570] = {.lex_state = 309}, + [2571] = {.lex_state = 301}, + [2572] = {.lex_state = 280}, + [2573] = {.lex_state = 279}, + [2574] = {.lex_state = 269}, + [2575] = {.lex_state = 270}, + [2576] = {.lex_state = 301}, + [2577] = {.lex_state = 245}, + [2578] = {.lex_state = 301}, + [2579] = {.lex_state = 280}, [2580] = {.lex_state = 269}, - [2581] = {.lex_state = 270}, + [2581] = {.lex_state = 290}, [2582] = {.lex_state = 269}, - [2583] = {.lex_state = 269}, - [2584] = {.lex_state = 280}, - [2585] = {.lex_state = 301}, - [2586] = {.lex_state = 280}, + [2583] = {.lex_state = 301}, + [2584] = {.lex_state = 266}, + [2585] = {.lex_state = 245}, + [2586] = {.lex_state = 301}, [2587] = {.lex_state = 301}, - [2588] = {.lex_state = 301}, - [2589] = {.lex_state = 301}, - [2590] = {.lex_state = 290}, - [2591] = {.lex_state = 301}, - [2592] = {.lex_state = 301}, - [2593] = {.lex_state = 301}, - [2594] = {.lex_state = 301}, - [2595] = {.lex_state = 280}, - [2596] = {.lex_state = 305}, - [2597] = {.lex_state = 298}, - [2598] = {.lex_state = 298}, - [2599] = {.lex_state = 309}, - [2600] = {.lex_state = 266}, - [2601] = {.lex_state = 290}, + [2588] = {.lex_state = 290}, + [2589] = {.lex_state = 269}, + [2590] = {.lex_state = 269}, + [2591] = {.lex_state = 245}, + [2592] = {.lex_state = 269}, + [2593] = {.lex_state = 269}, + [2594] = {.lex_state = 291}, + [2595] = {.lex_state = 266}, + [2596] = {.lex_state = 280}, + [2597] = {.lex_state = 269}, + [2598] = {.lex_state = 290}, + [2599] = {.lex_state = 290}, + [2600] = {.lex_state = 290}, + [2601] = {.lex_state = 285}, [2602] = {.lex_state = 289}, [2603] = {.lex_state = 290}, [2604] = {.lex_state = 290}, - [2605] = {.lex_state = 269}, - [2606] = {.lex_state = 291}, - [2607] = {.lex_state = 281}, + [2605] = {.lex_state = 290}, + [2606] = {.lex_state = 289}, + [2607] = {.lex_state = 290}, [2608] = {.lex_state = 290}, - [2609] = {.lex_state = 301}, + [2609] = {.lex_state = 290}, [2610] = {.lex_state = 290}, - [2611] = {.lex_state = 289}, - [2612] = {.lex_state = 289}, + [2611] = {.lex_state = 290}, + [2612] = {.lex_state = 290}, [2613] = {.lex_state = 290}, - [2614] = {.lex_state = 290}, - [2615] = {.lex_state = 290}, + [2614] = {.lex_state = 269}, + [2615] = {.lex_state = 281}, [2616] = {.lex_state = 290}, - [2617] = {.lex_state = 289}, - [2618] = {.lex_state = 290}, - [2619] = {.lex_state = 290}, - [2620] = {.lex_state = 290}, - [2621] = {.lex_state = 290}, - [2622] = {.lex_state = 290}, + [2617] = {.lex_state = 290}, + [2618] = {.lex_state = 315}, + [2619] = {.lex_state = 303}, + [2620] = {.lex_state = 302}, + [2621] = {.lex_state = 291}, + [2622] = {.lex_state = 289}, [2623] = {.lex_state = 289}, [2624] = {.lex_state = 290}, - [2625] = {.lex_state = 302}, + [2625] = {.lex_state = 290}, [2626] = {.lex_state = 290}, - [2627] = {.lex_state = 285}, + [2627] = {.lex_state = 301}, [2628] = {.lex_state = 290}, [2629] = {.lex_state = 290}, [2630] = {.lex_state = 290}, - [2631] = {.lex_state = 290}, - [2632] = {.lex_state = 290}, - [2633] = {.lex_state = 303}, + [2631] = {.lex_state = 301}, + [2632] = {.lex_state = 301}, + [2633] = {.lex_state = 289}, [2634] = {.lex_state = 290}, - [2635] = {.lex_state = 289}, + [2635] = {.lex_state = 290}, [2636] = {.lex_state = 289}, [2637] = {.lex_state = 269}, - [2638] = {.lex_state = 301}, - [2639] = {.lex_state = 290}, + [2638] = {.lex_state = 269}, + [2639] = {.lex_state = 269}, [2640] = {.lex_state = 290}, - [2641] = {.lex_state = 289}, - [2642] = {.lex_state = 290}, + [2641] = {.lex_state = 290}, + [2642] = {.lex_state = 289}, [2643] = {.lex_state = 290}, - [2644] = {.lex_state = 290}, - [2645] = {.lex_state = 290}, + [2644] = {.lex_state = 289}, + [2645] = {.lex_state = 334}, [2646] = {.lex_state = 334}, - [2647] = {.lex_state = 334}, + [2647] = {.lex_state = 290}, [2648] = {.lex_state = 290}, [2649] = {.lex_state = 290}, - [2650] = {.lex_state = 315}, + [2650] = {.lex_state = 290}, [2651] = {.lex_state = 290}, [2652] = {.lex_state = 269}, - [2653] = {.lex_state = 269}, - [2654] = {.lex_state = 301}, - [2655] = {.lex_state = 290}, - [2656] = {.lex_state = 269}, - [2657] = {.lex_state = 277}, - [2658] = {.lex_state = 301}, - [2659] = {.lex_state = 269}, - [2660] = {.lex_state = 281}, - [2661] = {.lex_state = 269}, - [2662] = {.lex_state = 290}, - [2663] = {.lex_state = 279}, - [2664] = {.lex_state = 279}, - [2665] = {.lex_state = 269}, - [2666] = {.lex_state = 290}, - [2667] = {.lex_state = 301}, + [2653] = {.lex_state = 301}, + [2654] = {.lex_state = 281}, + [2655] = {.lex_state = 301}, + [2656] = {.lex_state = 290}, + [2657] = {.lex_state = 279}, + [2658] = {.lex_state = 290}, + [2659] = {.lex_state = 290}, + [2660] = {.lex_state = 290}, + [2661] = {.lex_state = 285}, + [2662] = {.lex_state = 316}, + [2663] = {.lex_state = 290}, + [2664] = {.lex_state = 269}, + [2665] = {.lex_state = 301}, + [2666] = {.lex_state = 240}, + [2667] = {.lex_state = 240}, [2668] = {.lex_state = 290}, - [2669] = {.lex_state = 277}, - [2670] = {.lex_state = 292}, - [2671] = {.lex_state = 290}, - [2672] = {.lex_state = 290}, - [2673] = {.lex_state = 289}, - [2674] = {.lex_state = 290}, - [2675] = {.lex_state = 290}, - [2676] = {.lex_state = 290}, - [2677] = {.lex_state = 289}, - [2678] = {.lex_state = 301}, - [2679] = {.lex_state = 285}, - [2680] = {.lex_state = 269}, - [2681] = {.lex_state = 269}, - [2682] = {.lex_state = 290}, - [2683] = {.lex_state = 269}, - [2684] = {.lex_state = 285}, - [2685] = {.lex_state = 285}, - [2686] = {.lex_state = 269}, - [2687] = {.lex_state = 279}, - [2688] = {.lex_state = 319}, - [2689] = {.lex_state = 319}, - [2690] = {.lex_state = 291}, - [2691] = {.lex_state = 290}, - [2692] = {.lex_state = 290}, - [2693] = {.lex_state = 269}, - [2694] = {.lex_state = 285}, - [2695] = {.lex_state = 289}, - [2696] = {.lex_state = 301}, - [2697] = {.lex_state = 290}, - [2698] = {.lex_state = 290}, - [2699] = {.lex_state = 290}, - [2700] = {.lex_state = 279}, - [2701] = {.lex_state = 301}, - [2702] = {.lex_state = 289}, - [2703] = {.lex_state = 301}, + [2669] = {.lex_state = 269}, + [2670] = {.lex_state = 290}, + [2671] = {.lex_state = 269}, + [2672] = {.lex_state = 301}, + [2673] = {.lex_state = 279}, + [2674] = {.lex_state = 279}, + [2675] = {.lex_state = 269}, + [2676] = {.lex_state = 301}, + [2677] = {.lex_state = 279}, + [2678] = {.lex_state = 290}, + [2679] = {.lex_state = 290}, + [2680] = {.lex_state = 279}, + [2681] = {.lex_state = 277}, + [2682] = {.lex_state = 292}, + [2683] = {.lex_state = 301}, + [2684] = {.lex_state = 316}, + [2685] = {.lex_state = 290}, + [2686] = {.lex_state = 290}, + [2687] = {.lex_state = 277}, + [2688] = {.lex_state = 301}, + [2689] = {.lex_state = 269}, + [2690] = {.lex_state = 269}, + [2691] = {.lex_state = 289}, + [2692] = {.lex_state = 301}, + [2693] = {.lex_state = 290}, + [2694] = {.lex_state = 289}, + [2695] = {.lex_state = 290}, + [2696] = {.lex_state = 289}, + [2697] = {.lex_state = 291}, + [2698] = {.lex_state = 291}, + [2699] = {.lex_state = 285}, + [2700] = {.lex_state = 285}, + [2701] = {.lex_state = 290}, + [2702] = {.lex_state = 290}, + [2703] = {.lex_state = 290}, [2704] = {.lex_state = 290}, - [2705] = {.lex_state = 285}, - [2706] = {.lex_state = 285}, - [2707] = {.lex_state = 285}, + [2705] = {.lex_state = 290}, + [2706] = {.lex_state = 269}, + [2707] = {.lex_state = 290}, [2708] = {.lex_state = 285}, [2709] = {.lex_state = 301}, [2710] = {.lex_state = 285}, - [2711] = {.lex_state = 285}, - [2712] = {.lex_state = 269}, - [2713] = {.lex_state = 285}, + [2711] = {.lex_state = 290}, + [2712] = {.lex_state = 290}, + [2713] = {.lex_state = 290}, [2714] = {.lex_state = 285}, - [2715] = {.lex_state = 290}, + [2715] = {.lex_state = 269}, [2716] = {.lex_state = 285}, - [2717] = {.lex_state = 290}, - [2718] = {.lex_state = 290}, - [2719] = {.lex_state = 290}, - [2720] = {.lex_state = 290}, - [2721] = {.lex_state = 301}, - [2722] = {.lex_state = 290}, - [2723] = {.lex_state = 240}, - [2724] = {.lex_state = 240}, + [2717] = {.lex_state = 285}, + [2718] = {.lex_state = 289}, + [2719] = {.lex_state = 285}, + [2720] = {.lex_state = 285}, + [2721] = {.lex_state = 285}, + [2722] = {.lex_state = 285}, + [2723] = {.lex_state = 285}, + [2724] = {.lex_state = 281}, [2725] = {.lex_state = 301}, - [2726] = {.lex_state = 281}, + [2726] = {.lex_state = 290}, [2727] = {.lex_state = 279}, - [2728] = {.lex_state = 301}, - [2729] = {.lex_state = 290}, - [2730] = {.lex_state = 279}, - [2731] = {.lex_state = 291}, - [2732] = {.lex_state = 269}, - [2733] = {.lex_state = 269}, + [2728] = {.lex_state = 269}, + [2729] = {.lex_state = 285}, + [2730] = {.lex_state = 314}, + [2731] = {.lex_state = 290}, + [2732] = {.lex_state = 314}, + [2733] = {.lex_state = 301}, [2734] = {.lex_state = 285}, [2735] = {.lex_state = 285}, - [2736] = {.lex_state = 314}, - [2737] = {.lex_state = 290}, + [2736] = {.lex_state = 285}, + [2737] = {.lex_state = 285}, [2738] = {.lex_state = 285}, - [2739] = {.lex_state = 285}, + [2739] = {.lex_state = 281}, [2740] = {.lex_state = 285}, [2741] = {.lex_state = 285}, [2742] = {.lex_state = 290}, [2743] = {.lex_state = 285}, - [2744] = {.lex_state = 285}, + [2744] = {.lex_state = 278}, [2745] = {.lex_state = 285}, - [2746] = {.lex_state = 285}, - [2747] = {.lex_state = 285}, - [2748] = {.lex_state = 269}, - [2749] = {.lex_state = 285}, - [2750] = {.lex_state = 285}, - [2751] = {.lex_state = 285}, - [2752] = {.lex_state = 269}, - [2753] = {.lex_state = 269}, - [2754] = {.lex_state = 269}, - [2755] = {.lex_state = 314}, - [2756] = {.lex_state = 334}, - [2757] = {.lex_state = 245}, + [2746] = {.lex_state = 334}, + [2747] = {.lex_state = 290}, + [2748] = {.lex_state = 285}, + [2749] = {.lex_state = 281}, + [2750] = {.lex_state = 314}, + [2751] = {.lex_state = 290}, + [2752] = {.lex_state = 285}, + [2753] = {.lex_state = 285}, + [2754] = {.lex_state = 314}, + [2755] = {.lex_state = 290}, + [2756] = {.lex_state = 285}, + [2757] = {.lex_state = 285}, [2758] = {.lex_state = 285}, - [2759] = {.lex_state = 269}, - [2760] = {.lex_state = 269}, + [2759] = {.lex_state = 285}, + [2760] = {.lex_state = 285}, [2761] = {.lex_state = 285}, - [2762] = {.lex_state = 245}, + [2762] = {.lex_state = 285}, [2763] = {.lex_state = 285}, [2764] = {.lex_state = 285}, [2765] = {.lex_state = 285}, @@ -29497,557 +29574,557 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [2767] = {.lex_state = 285}, [2768] = {.lex_state = 285}, [2769] = {.lex_state = 285}, - [2770] = {.lex_state = 334}, + [2770] = {.lex_state = 285}, [2771] = {.lex_state = 285}, [2772] = {.lex_state = 285}, [2773] = {.lex_state = 285}, - [2774] = {.lex_state = 301}, - [2775] = {.lex_state = 334}, - [2776] = {.lex_state = 280}, + [2774] = {.lex_state = 285}, + [2775] = {.lex_state = 285}, + [2776] = {.lex_state = 285}, [2777] = {.lex_state = 285}, [2778] = {.lex_state = 285}, - [2779] = {.lex_state = 334}, + [2779] = {.lex_state = 285}, [2780] = {.lex_state = 285}, - [2781] = {.lex_state = 301}, - [2782] = {.lex_state = 290}, + [2781] = {.lex_state = 285}, + [2782] = {.lex_state = 285}, [2783] = {.lex_state = 285}, - [2784] = {.lex_state = 280}, + [2784] = {.lex_state = 285}, [2785] = {.lex_state = 285}, - [2786] = {.lex_state = 280}, + [2786] = {.lex_state = 301}, [2787] = {.lex_state = 314}, - [2788] = {.lex_state = 278}, - [2789] = {.lex_state = 285}, - [2790] = {.lex_state = 285}, - [2791] = {.lex_state = 285}, - [2792] = {.lex_state = 285}, - [2793] = {.lex_state = 285}, - [2794] = {.lex_state = 285}, - [2795] = {.lex_state = 285}, - [2796] = {.lex_state = 301}, - [2797] = {.lex_state = 314}, + [2788] = {.lex_state = 285}, + [2789] = {.lex_state = 301}, + [2790] = {.lex_state = 245}, + [2791] = {.lex_state = 289}, + [2792] = {.lex_state = 291}, + [2793] = {.lex_state = 301}, + [2794] = {.lex_state = 290}, + [2795] = {.lex_state = 290}, + [2796] = {.lex_state = 285}, + [2797] = {.lex_state = 285}, [2798] = {.lex_state = 285}, - [2799] = {.lex_state = 245}, - [2800] = {.lex_state = 301}, - [2801] = {.lex_state = 289}, + [2799] = {.lex_state = 301}, + [2800] = {.lex_state = 290}, + [2801] = {.lex_state = 334}, [2802] = {.lex_state = 285}, - [2803] = {.lex_state = 266}, - [2804] = {.lex_state = 314}, - [2805] = {.lex_state = 314}, + [2803] = {.lex_state = 334}, + [2804] = {.lex_state = 285}, + [2805] = {.lex_state = 245}, [2806] = {.lex_state = 285}, - [2807] = {.lex_state = 334}, + [2807] = {.lex_state = 285}, [2808] = {.lex_state = 285}, [2809] = {.lex_state = 285}, [2810] = {.lex_state = 285}, - [2811] = {.lex_state = 291}, + [2811] = {.lex_state = 280}, [2812] = {.lex_state = 314}, - [2813] = {.lex_state = 314}, - [2814] = {.lex_state = 314}, - [2815] = {.lex_state = 285}, + [2813] = {.lex_state = 285}, + [2814] = {.lex_state = 285}, + [2815] = {.lex_state = 290}, [2816] = {.lex_state = 285}, - [2817] = {.lex_state = 314}, - [2818] = {.lex_state = 281}, + [2817] = {.lex_state = 285}, + [2818] = {.lex_state = 269}, [2819] = {.lex_state = 285}, - [2820] = {.lex_state = 301}, - [2821] = {.lex_state = 285}, + [2820] = {.lex_state = 285}, + [2821] = {.lex_state = 269}, [2822] = {.lex_state = 285}, - [2823] = {.lex_state = 290}, - [2824] = {.lex_state = 301}, + [2823] = {.lex_state = 285}, + [2824] = {.lex_state = 285}, [2825] = {.lex_state = 301}, - [2826] = {.lex_state = 301}, - [2827] = {.lex_state = 290}, - [2828] = {.lex_state = 290}, + [2826] = {.lex_state = 285}, + [2827] = {.lex_state = 285}, + [2828] = {.lex_state = 285}, [2829] = {.lex_state = 285}, - [2830] = {.lex_state = 334}, + [2830] = {.lex_state = 285}, [2831] = {.lex_state = 285}, [2832] = {.lex_state = 285}, - [2833] = {.lex_state = 290}, - [2834] = {.lex_state = 301}, - [2835] = {.lex_state = 285}, - [2836] = {.lex_state = 285}, + [2833] = {.lex_state = 301}, + [2834] = {.lex_state = 285}, + [2835] = {.lex_state = 301}, + [2836] = {.lex_state = 314}, [2837] = {.lex_state = 285}, - [2838] = {.lex_state = 285}, - [2839] = {.lex_state = 285}, - [2840] = {.lex_state = 285}, + [2838] = {.lex_state = 269}, + [2839] = {.lex_state = 301}, + [2840] = {.lex_state = 269}, [2841] = {.lex_state = 285}, - [2842] = {.lex_state = 285}, - [2843] = {.lex_state = 269}, + [2842] = {.lex_state = 245}, + [2843] = {.lex_state = 301}, [2844] = {.lex_state = 285}, - [2845] = {.lex_state = 285}, - [2846] = {.lex_state = 289}, - [2847] = {.lex_state = 269}, - [2848] = {.lex_state = 269}, + [2845] = {.lex_state = 269}, + [2846] = {.lex_state = 280}, + [2847] = {.lex_state = 301}, + [2848] = {.lex_state = 301}, [2849] = {.lex_state = 285}, [2850] = {.lex_state = 285}, - [2851] = {.lex_state = 245}, - [2852] = {.lex_state = 281}, - [2853] = {.lex_state = 280}, - [2854] = {.lex_state = 285}, - [2855] = {.lex_state = 285}, + [2851] = {.lex_state = 285}, + [2852] = {.lex_state = 285}, + [2853] = {.lex_state = 289}, + [2854] = {.lex_state = 245}, + [2855] = {.lex_state = 269}, [2856] = {.lex_state = 285}, [2857] = {.lex_state = 285}, - [2858] = {.lex_state = 301}, + [2858] = {.lex_state = 334}, [2859] = {.lex_state = 285}, - [2860] = {.lex_state = 285}, + [2860] = {.lex_state = 334}, [2861] = {.lex_state = 285}, [2862] = {.lex_state = 285}, [2863] = {.lex_state = 285}, [2864] = {.lex_state = 285}, [2865] = {.lex_state = 285}, - [2866] = {.lex_state = 285}, + [2866] = {.lex_state = 269}, [2867] = {.lex_state = 285}, - [2868] = {.lex_state = 285}, - [2869] = {.lex_state = 285}, - [2870] = {.lex_state = 285}, + [2868] = {.lex_state = 280}, + [2869] = {.lex_state = 269}, + [2870] = {.lex_state = 269}, [2871] = {.lex_state = 285}, - [2872] = {.lex_state = 285}, + [2872] = {.lex_state = 280}, [2873] = {.lex_state = 285}, [2874] = {.lex_state = 285}, [2875] = {.lex_state = 285}, [2876] = {.lex_state = 285}, [2877] = {.lex_state = 285}, - [2878] = {.lex_state = 285}, - [2879] = {.lex_state = 285}, - [2880] = {.lex_state = 285}, - [2881] = {.lex_state = 285}, - [2882] = {.lex_state = 301}, + [2878] = {.lex_state = 314}, + [2879] = {.lex_state = 301}, + [2880] = {.lex_state = 314}, + [2881] = {.lex_state = 269}, + [2882] = {.lex_state = 285}, [2883] = {.lex_state = 285}, - [2884] = {.lex_state = 285}, - [2885] = {.lex_state = 269}, - [2886] = {.lex_state = 301}, - [2887] = {.lex_state = 290}, - [2888] = {.lex_state = 285}, - [2889] = {.lex_state = 285}, + [2884] = {.lex_state = 314}, + [2885] = {.lex_state = 285}, + [2886] = {.lex_state = 285}, + [2887] = {.lex_state = 285}, + [2888] = {.lex_state = 269}, + [2889] = {.lex_state = 269}, [2890] = {.lex_state = 285}, - [2891] = {.lex_state = 269}, + [2891] = {.lex_state = 266}, [2892] = {.lex_state = 285}, [2893] = {.lex_state = 285}, - [2894] = {.lex_state = 285}, - [2895] = {.lex_state = 301}, - [2896] = {.lex_state = 285}, - [2897] = {.lex_state = 285}, - [2898] = {.lex_state = 290}, + [2894] = {.lex_state = 334}, + [2895] = {.lex_state = 269}, + [2896] = {.lex_state = 289}, + [2897] = {.lex_state = 289}, + [2898] = {.lex_state = 289}, [2899] = {.lex_state = 290}, - [2900] = {.lex_state = 289}, + [2900] = {.lex_state = 290}, [2901] = {.lex_state = 290}, - [2902] = {.lex_state = 266}, - [2903] = {.lex_state = 266}, - [2904] = {.lex_state = 333}, + [2902] = {.lex_state = 290}, + [2903] = {.lex_state = 301}, + [2904] = {.lex_state = 289}, [2905] = {.lex_state = 269}, - [2906] = {.lex_state = 286}, - [2907] = {.lex_state = 269}, - [2908] = {.lex_state = 289}, - [2909] = {.lex_state = 289}, - [2910] = {.lex_state = 286}, + [2906] = {.lex_state = 290}, + [2907] = {.lex_state = 301}, + [2908] = {.lex_state = 333}, + [2909] = {.lex_state = 286}, + [2910] = {.lex_state = 269}, [2911] = {.lex_state = 269}, - [2912] = {.lex_state = 286}, + [2912] = {.lex_state = 281}, [2913] = {.lex_state = 269}, - [2914] = {.lex_state = 269}, - [2915] = {.lex_state = 269}, + [2914] = {.lex_state = 281}, + [2915] = {.lex_state = 290}, [2916] = {.lex_state = 290}, - [2917] = {.lex_state = 301}, - [2918] = {.lex_state = 289}, - [2919] = {.lex_state = 290}, + [2917] = {.lex_state = 333}, + [2918] = {.lex_state = 266}, + [2919] = {.lex_state = 278}, [2920] = {.lex_state = 281}, - [2921] = {.lex_state = 290}, - [2922] = {.lex_state = 333}, - [2923] = {.lex_state = 281}, + [2921] = {.lex_state = 333}, + [2922] = {.lex_state = 286}, + [2923] = {.lex_state = 290}, [2924] = {.lex_state = 286}, - [2925] = {.lex_state = 290}, - [2926] = {.lex_state = 333}, + [2925] = {.lex_state = 269}, + [2926] = {.lex_state = 286}, [2927] = {.lex_state = 301}, - [2928] = {.lex_state = 290}, - [2929] = {.lex_state = 290}, - [2930] = {.lex_state = 290}, + [2928] = {.lex_state = 289}, + [2929] = {.lex_state = 301}, + [2930] = {.lex_state = 289}, [2931] = {.lex_state = 290}, [2932] = {.lex_state = 290}, - [2933] = {.lex_state = 290}, + [2933] = {.lex_state = 269}, [2934] = {.lex_state = 290}, - [2935] = {.lex_state = 290}, - [2936] = {.lex_state = 289}, - [2937] = {.lex_state = 301}, - [2938] = {.lex_state = 278}, - [2939] = {.lex_state = 301}, - [2940] = {.lex_state = 333}, - [2941] = {.lex_state = 281}, + [2935] = {.lex_state = 333}, + [2936] = {.lex_state = 301}, + [2937] = {.lex_state = 290}, + [2938] = {.lex_state = 290}, + [2939] = {.lex_state = 290}, + [2940] = {.lex_state = 290}, + [2941] = {.lex_state = 301}, [2942] = {.lex_state = 290}, - [2943] = {.lex_state = 289}, - [2944] = {.lex_state = 290}, - [2945] = {.lex_state = 301}, - [2946] = {.lex_state = 301}, - [2947] = {.lex_state = 290}, - [2948] = {.lex_state = 270}, - [2949] = {.lex_state = 290}, - [2950] = {.lex_state = 290}, - [2951] = {.lex_state = 301}, - [2952] = {.lex_state = 290}, + [2943] = {.lex_state = 266}, + [2944] = {.lex_state = 271}, + [2945] = {.lex_state = 269}, + [2946] = {.lex_state = 269}, + [2947] = {.lex_state = 266}, + [2948] = {.lex_state = 266}, + [2949] = {.lex_state = 266}, + [2950] = {.lex_state = 298}, + [2951] = {.lex_state = 298}, + [2952] = {.lex_state = 298}, [2953] = {.lex_state = 270}, - [2954] = {.lex_state = 277}, - [2955] = {.lex_state = 285}, - [2956] = {.lex_state = 266}, + [2954] = {.lex_state = 270}, + [2955] = {.lex_state = 270}, + [2956] = {.lex_state = 290}, [2957] = {.lex_state = 285}, - [2958] = {.lex_state = 266}, - [2959] = {.lex_state = 290}, - [2960] = {.lex_state = 285}, - [2961] = {.lex_state = 270}, + [2958] = {.lex_state = 277}, + [2959] = {.lex_state = 266}, + [2960] = {.lex_state = 266}, + [2961] = {.lex_state = 266}, [2962] = {.lex_state = 290}, [2963] = {.lex_state = 290}, [2964] = {.lex_state = 290}, [2965] = {.lex_state = 290}, - [2966] = {.lex_state = 280}, - [2967] = {.lex_state = 280}, - [2968] = {.lex_state = 280}, - [2969] = {.lex_state = 290}, - [2970] = {.lex_state = 280}, + [2966] = {.lex_state = 290}, + [2967] = {.lex_state = 290}, + [2968] = {.lex_state = 290}, + [2969] = {.lex_state = 285}, + [2970] = {.lex_state = 266}, [2971] = {.lex_state = 280}, - [2972] = {.lex_state = 269}, - [2973] = {.lex_state = 271}, + [2972] = {.lex_state = 280}, + [2973] = {.lex_state = 280}, [2974] = {.lex_state = 280}, - [2975] = {.lex_state = 298}, - [2976] = {.lex_state = 285}, - [2977] = {.lex_state = 271}, + [2975] = {.lex_state = 280}, + [2976] = {.lex_state = 290}, + [2977] = {.lex_state = 290}, [2978] = {.lex_state = 269}, - [2979] = {.lex_state = 270}, - [2980] = {.lex_state = 280}, - [2981] = {.lex_state = 298}, - [2982] = {.lex_state = 290}, - [2983] = {.lex_state = 285}, - [2984] = {.lex_state = 301}, + [2979] = {.lex_state = 269}, + [2980] = {.lex_state = 285}, + [2981] = {.lex_state = 285}, + [2982] = {.lex_state = 285}, + [2983] = {.lex_state = 290}, + [2984] = {.lex_state = 290}, [2985] = {.lex_state = 290}, - [2986] = {.lex_state = 301}, - [2987] = {.lex_state = 270}, - [2988] = {.lex_state = 243}, - [2989] = {.lex_state = 269}, - [2990] = {.lex_state = 277}, - [2991] = {.lex_state = 314}, - [2992] = {.lex_state = 314}, - [2993] = {.lex_state = 280}, - [2994] = {.lex_state = 271}, - [2995] = {.lex_state = 270}, - [2996] = {.lex_state = 301}, - [2997] = {.lex_state = 290}, + [2986] = {.lex_state = 290}, + [2987] = {.lex_state = 290}, + [2988] = {.lex_state = 277}, + [2989] = {.lex_state = 290}, + [2990] = {.lex_state = 290}, + [2991] = {.lex_state = 290}, + [2992] = {.lex_state = 285}, + [2993] = {.lex_state = 290}, + [2994] = {.lex_state = 285}, + [2995] = {.lex_state = 290}, + [2996] = {.lex_state = 290}, + [2997] = {.lex_state = 314}, [2998] = {.lex_state = 290}, [2999] = {.lex_state = 290}, - [3000] = {.lex_state = 266}, - [3001] = {.lex_state = 290}, + [3000] = {.lex_state = 290}, + [3001] = {.lex_state = 285}, [3002] = {.lex_state = 285}, [3003] = {.lex_state = 290}, - [3004] = {.lex_state = 285}, + [3004] = {.lex_state = 290}, [3005] = {.lex_state = 290}, - [3006] = {.lex_state = 285}, - [3007] = {.lex_state = 290}, + [3006] = {.lex_state = 290}, + [3007] = {.lex_state = 280}, [3008] = {.lex_state = 290}, - [3009] = {.lex_state = 285}, - [3010] = {.lex_state = 319}, - [3011] = {.lex_state = 280}, - [3012] = {.lex_state = 277}, - [3013] = {.lex_state = 266}, - [3014] = {.lex_state = 266}, - [3015] = {.lex_state = 285}, - [3016] = {.lex_state = 290}, - [3017] = {.lex_state = 266}, - [3018] = {.lex_state = 266}, - [3019] = {.lex_state = 298}, - [3020] = {.lex_state = 290}, - [3021] = {.lex_state = 314}, - [3022] = {.lex_state = 285}, + [3009] = {.lex_state = 269}, + [3010] = {.lex_state = 277}, + [3011] = {.lex_state = 314}, + [3012] = {.lex_state = 266}, + [3013] = {.lex_state = 290}, + [3014] = {.lex_state = 290}, + [3015] = {.lex_state = 290}, + [3016] = {.lex_state = 280}, + [3017] = {.lex_state = 280}, + [3018] = {.lex_state = 280}, + [3019] = {.lex_state = 280}, + [3020] = {.lex_state = 266}, + [3021] = {.lex_state = 290}, + [3022] = {.lex_state = 290}, [3023] = {.lex_state = 290}, - [3024] = {.lex_state = 285}, - [3025] = {.lex_state = 290}, + [3024] = {.lex_state = 290}, + [3025] = {.lex_state = 277}, [3026] = {.lex_state = 290}, - [3027] = {.lex_state = 285}, - [3028] = {.lex_state = 314}, - [3029] = {.lex_state = 271}, - [3030] = {.lex_state = 290}, + [3027] = {.lex_state = 290}, + [3028] = {.lex_state = 290}, + [3029] = {.lex_state = 314}, + [3030] = {.lex_state = 314}, [3031] = {.lex_state = 290}, - [3032] = {.lex_state = 277}, - [3033] = {.lex_state = 290}, - [3034] = {.lex_state = 285}, + [3032] = {.lex_state = 290}, + [3033] = {.lex_state = 271}, + [3034] = {.lex_state = 290}, [3035] = {.lex_state = 290}, - [3036] = {.lex_state = 290}, - [3037] = {.lex_state = 290}, - [3038] = {.lex_state = 285}, + [3036] = {.lex_state = 301}, + [3037] = {.lex_state = 285}, + [3038] = {.lex_state = 280}, [3039] = {.lex_state = 290}, [3040] = {.lex_state = 290}, - [3041] = {.lex_state = 290}, - [3042] = {.lex_state = 290}, - [3043] = {.lex_state = 266}, - [3044] = {.lex_state = 266}, + [3041] = {.lex_state = 285}, + [3042] = {.lex_state = 285}, + [3043] = {.lex_state = 314}, + [3044] = {.lex_state = 285}, [3045] = {.lex_state = 290}, [3046] = {.lex_state = 290}, [3047] = {.lex_state = 290}, [3048] = {.lex_state = 290}, - [3049] = {.lex_state = 290}, + [3049] = {.lex_state = 285}, [3050] = {.lex_state = 290}, - [3051] = {.lex_state = 290}, - [3052] = {.lex_state = 290}, - [3053] = {.lex_state = 269}, - [3054] = {.lex_state = 269}, - [3055] = {.lex_state = 301}, - [3056] = {.lex_state = 319}, - [3057] = {.lex_state = 290}, - [3058] = {.lex_state = 290}, - [3059] = {.lex_state = 290}, - [3060] = {.lex_state = 314}, - [3061] = {.lex_state = 266}, - [3062] = {.lex_state = 280}, - [3063] = {.lex_state = 290}, - [3064] = {.lex_state = 290}, - [3065] = {.lex_state = 266}, + [3051] = {.lex_state = 285}, + [3052] = {.lex_state = 266}, + [3053] = {.lex_state = 301}, + [3054] = {.lex_state = 290}, + [3055] = {.lex_state = 316}, + [3056] = {.lex_state = 298}, + [3057] = {.lex_state = 298}, + [3058] = {.lex_state = 298}, + [3059] = {.lex_state = 271}, + [3060] = {.lex_state = 243}, + [3061] = {.lex_state = 271}, + [3062] = {.lex_state = 271}, + [3063] = {.lex_state = 271}, + [3064] = {.lex_state = 271}, + [3065] = {.lex_state = 301}, [3066] = {.lex_state = 290}, - [3067] = {.lex_state = 290}, - [3068] = {.lex_state = 285}, + [3067] = {.lex_state = 271}, + [3068] = {.lex_state = 316}, [3069] = {.lex_state = 290}, - [3070] = {.lex_state = 298}, + [3070] = {.lex_state = 270}, [3071] = {.lex_state = 271}, - [3072] = {.lex_state = 298}, - [3073] = {.lex_state = 298}, - [3074] = {.lex_state = 271}, - [3075] = {.lex_state = 271}, - [3076] = {.lex_state = 271}, - [3077] = {.lex_state = 271}, - [3078] = {.lex_state = 271}, - [3079] = {.lex_state = 266}, - [3080] = {.lex_state = 290}, - [3081] = {.lex_state = 290}, - [3082] = {.lex_state = 301}, - [3083] = {.lex_state = 280}, - [3084] = {.lex_state = 280}, - [3085] = {.lex_state = 285}, - [3086] = {.lex_state = 301}, + [3072] = {.lex_state = 270}, + [3073] = {.lex_state = 271}, + [3074] = {.lex_state = 285}, + [3075] = {.lex_state = 285}, + [3076] = {.lex_state = 270}, + [3077] = {.lex_state = 266}, + [3078] = {.lex_state = 266}, + [3079] = {.lex_state = 301}, + [3080] = {.lex_state = 301}, + [3081] = {.lex_state = 301}, + [3082] = {.lex_state = 280}, + [3083] = {.lex_state = 281}, + [3084] = {.lex_state = 281}, + [3085] = {.lex_state = 301}, + [3086] = {.lex_state = 269}, [3087] = {.lex_state = 269}, - [3088] = {.lex_state = 301}, - [3089] = {.lex_state = 301}, - [3090] = {.lex_state = 301}, - [3091] = {.lex_state = 281}, - [3092] = {.lex_state = 290}, + [3088] = {.lex_state = 269}, + [3089] = {.lex_state = 269}, + [3090] = {.lex_state = 269}, + [3091] = {.lex_state = 269}, + [3092] = {.lex_state = 269}, [3093] = {.lex_state = 269}, - [3094] = {.lex_state = 270}, - [3095] = {.lex_state = 301}, - [3096] = {.lex_state = 301}, - [3097] = {.lex_state = 281}, - [3098] = {.lex_state = 301}, - [3099] = {.lex_state = 301}, - [3100] = {.lex_state = 281}, - [3101] = {.lex_state = 270}, + [3094] = {.lex_state = 301}, + [3095] = {.lex_state = 269}, + [3096] = {.lex_state = 269}, + [3097] = {.lex_state = 269}, + [3098] = {.lex_state = 266}, + [3099] = {.lex_state = 269}, + [3100] = {.lex_state = 269}, + [3101] = {.lex_state = 333}, [3102] = {.lex_state = 269}, - [3103] = {.lex_state = 281}, + [3103] = {.lex_state = 269}, [3104] = {.lex_state = 269}, - [3105] = {.lex_state = 281}, - [3106] = {.lex_state = 269}, - [3107] = {.lex_state = 269}, - [3108] = {.lex_state = 281}, + [3105] = {.lex_state = 269}, + [3106] = {.lex_state = 281}, + [3107] = {.lex_state = 301}, + [3108] = {.lex_state = 269}, [3109] = {.lex_state = 281}, - [3110] = {.lex_state = 269}, - [3111] = {.lex_state = 270}, + [3110] = {.lex_state = 281}, + [3111] = {.lex_state = 269}, [3112] = {.lex_state = 301}, - [3113] = {.lex_state = 301}, - [3114] = {.lex_state = 290}, - [3115] = {.lex_state = 290}, - [3116] = {.lex_state = 281}, + [3113] = {.lex_state = 269}, + [3114] = {.lex_state = 269}, + [3115] = {.lex_state = 301}, + [3116] = {.lex_state = 290}, [3117] = {.lex_state = 281}, - [3118] = {.lex_state = 286}, - [3119] = {.lex_state = 269}, - [3120] = {.lex_state = 290}, - [3121] = {.lex_state = 269}, + [3118] = {.lex_state = 290}, + [3119] = {.lex_state = 290}, + [3120] = {.lex_state = 301}, + [3121] = {.lex_state = 301}, [3122] = {.lex_state = 301}, - [3123] = {.lex_state = 301}, + [3123] = {.lex_state = 278}, [3124] = {.lex_state = 270}, - [3125] = {.lex_state = 266}, - [3126] = {.lex_state = 281}, + [3125] = {.lex_state = 281}, + [3126] = {.lex_state = 301}, [3127] = {.lex_state = 301}, - [3128] = {.lex_state = 290}, - [3129] = {.lex_state = 266}, - [3130] = {.lex_state = 269}, - [3131] = {.lex_state = 269}, - [3132] = {.lex_state = 301}, - [3133] = {.lex_state = 301}, - [3134] = {.lex_state = 269}, - [3135] = {.lex_state = 290}, - [3136] = {.lex_state = 301}, + [3128] = {.lex_state = 281}, + [3129] = {.lex_state = 269}, + [3130] = {.lex_state = 281}, + [3131] = {.lex_state = 281}, + [3132] = {.lex_state = 281}, + [3133] = {.lex_state = 269}, + [3134] = {.lex_state = 301}, + [3135] = {.lex_state = 286}, + [3136] = {.lex_state = 269}, [3137] = {.lex_state = 269}, - [3138] = {.lex_state = 333}, + [3138] = {.lex_state = 269}, [3139] = {.lex_state = 281}, - [3140] = {.lex_state = 270}, - [3141] = {.lex_state = 269}, - [3142] = {.lex_state = 301}, - [3143] = {.lex_state = 281}, - [3144] = {.lex_state = 281}, - [3145] = {.lex_state = 301}, + [3140] = {.lex_state = 301}, + [3141] = {.lex_state = 301}, + [3142] = {.lex_state = 269}, + [3143] = {.lex_state = 290}, + [3144] = {.lex_state = 290}, + [3145] = {.lex_state = 270}, [3146] = {.lex_state = 301}, [3147] = {.lex_state = 301}, - [3148] = {.lex_state = 286}, - [3149] = {.lex_state = 270}, - [3150] = {.lex_state = 333}, - [3151] = {.lex_state = 301}, - [3152] = {.lex_state = 270}, - [3153] = {.lex_state = 301}, - [3154] = {.lex_state = 316}, - [3155] = {.lex_state = 281}, - [3156] = {.lex_state = 281}, - [3157] = {.lex_state = 301}, - [3158] = {.lex_state = 301}, - [3159] = {.lex_state = 333}, - [3160] = {.lex_state = 301}, - [3161] = {.lex_state = 286}, - [3162] = {.lex_state = 301}, - [3163] = {.lex_state = 269}, - [3164] = {.lex_state = 281}, - [3165] = {.lex_state = 269}, - [3166] = {.lex_state = 269}, - [3167] = {.lex_state = 269}, - [3168] = {.lex_state = 333}, - [3169] = {.lex_state = 266}, - [3170] = {.lex_state = 266}, - [3171] = {.lex_state = 278}, - [3172] = {.lex_state = 270}, - [3173] = {.lex_state = 278}, - [3174] = {.lex_state = 324}, - [3175] = {.lex_state = 281}, - [3176] = {.lex_state = 269}, - [3177] = {.lex_state = 290}, - [3178] = {.lex_state = 281}, + [3148] = {.lex_state = 266}, + [3149] = {.lex_state = 269}, + [3150] = {.lex_state = 301}, + [3151] = {.lex_state = 281}, + [3152] = {.lex_state = 266}, + [3153] = {.lex_state = 281}, + [3154] = {.lex_state = 269}, + [3155] = {.lex_state = 301}, + [3156] = {.lex_state = 270}, + [3157] = {.lex_state = 281}, + [3158] = {.lex_state = 270}, + [3159] = {.lex_state = 290}, + [3160] = {.lex_state = 281}, + [3161] = {.lex_state = 301}, + [3162] = {.lex_state = 281}, + [3163] = {.lex_state = 301}, + [3164] = {.lex_state = 266}, + [3165] = {.lex_state = 301}, + [3166] = {.lex_state = 301}, + [3167] = {.lex_state = 334}, + [3168] = {.lex_state = 301}, + [3169] = {.lex_state = 281}, + [3170] = {.lex_state = 281}, + [3171] = {.lex_state = 270}, + [3172] = {.lex_state = 301}, + [3173] = {.lex_state = 281}, + [3174] = {.lex_state = 281}, + [3175] = {.lex_state = 301}, + [3176] = {.lex_state = 334}, + [3177] = {.lex_state = 281}, + [3178] = {.lex_state = 301}, [3179] = {.lex_state = 301}, - [3180] = {.lex_state = 270}, - [3181] = {.lex_state = 301}, - [3182] = {.lex_state = 333}, + [3180] = {.lex_state = 290}, + [3181] = {.lex_state = 281}, + [3182] = {.lex_state = 281}, [3183] = {.lex_state = 301}, - [3184] = {.lex_state = 269}, - [3185] = {.lex_state = 281}, + [3184] = {.lex_state = 290}, + [3185] = {.lex_state = 301}, [3186] = {.lex_state = 281}, - [3187] = {.lex_state = 281}, + [3187] = {.lex_state = 269}, [3188] = {.lex_state = 269}, - [3189] = {.lex_state = 269}, - [3190] = {.lex_state = 281}, - [3191] = {.lex_state = 281}, - [3192] = {.lex_state = 281}, + [3189] = {.lex_state = 333}, + [3190] = {.lex_state = 286}, + [3191] = {.lex_state = 301}, + [3192] = {.lex_state = 286}, [3193] = {.lex_state = 301}, - [3194] = {.lex_state = 269}, + [3194] = {.lex_state = 301}, [3195] = {.lex_state = 269}, [3196] = {.lex_state = 269}, - [3197] = {.lex_state = 281}, - [3198] = {.lex_state = 270}, - [3199] = {.lex_state = 281}, - [3200] = {.lex_state = 286}, + [3197] = {.lex_state = 269}, + [3198] = {.lex_state = 269}, + [3199] = {.lex_state = 269}, + [3200] = {.lex_state = 269}, [3201] = {.lex_state = 281}, - [3202] = {.lex_state = 269}, + [3202] = {.lex_state = 281}, [3203] = {.lex_state = 281}, - [3204] = {.lex_state = 334}, - [3205] = {.lex_state = 269}, - [3206] = {.lex_state = 286}, - [3207] = {.lex_state = 269}, - [3208] = {.lex_state = 301}, - [3209] = {.lex_state = 269}, - [3210] = {.lex_state = 269}, - [3211] = {.lex_state = 290}, - [3212] = {.lex_state = 281}, - [3213] = {.lex_state = 301}, - [3214] = {.lex_state = 269}, + [3204] = {.lex_state = 281}, + [3205] = {.lex_state = 281}, + [3206] = {.lex_state = 281}, + [3207] = {.lex_state = 281}, + [3208] = {.lex_state = 333}, + [3209] = {.lex_state = 270}, + [3210] = {.lex_state = 281}, + [3211] = {.lex_state = 281}, + [3212] = {.lex_state = 321}, + [3213] = {.lex_state = 281}, + [3214] = {.lex_state = 281}, [3215] = {.lex_state = 281}, - [3216] = {.lex_state = 270}, - [3217] = {.lex_state = 301}, - [3218] = {.lex_state = 301}, - [3219] = {.lex_state = 269}, - [3220] = {.lex_state = 301}, - [3221] = {.lex_state = 281}, - [3222] = {.lex_state = 301}, - [3223] = {.lex_state = 281}, - [3224] = {.lex_state = 269}, + [3216] = {.lex_state = 281}, + [3217] = {.lex_state = 317}, + [3218] = {.lex_state = 281}, + [3219] = {.lex_state = 333}, + [3220] = {.lex_state = 278}, + [3221] = {.lex_state = 301}, + [3222] = {.lex_state = 281}, + [3223] = {.lex_state = 301}, + [3224] = {.lex_state = 270}, [3225] = {.lex_state = 281}, - [3226] = {.lex_state = 301}, - [3227] = {.lex_state = 269}, - [3228] = {.lex_state = 269}, + [3226] = {.lex_state = 281}, + [3227] = {.lex_state = 301}, + [3228] = {.lex_state = 301}, [3229] = {.lex_state = 269}, [3230] = {.lex_state = 301}, - [3231] = {.lex_state = 269}, - [3232] = {.lex_state = 281}, - [3233] = {.lex_state = 269}, - [3234] = {.lex_state = 333}, - [3235] = {.lex_state = 281}, - [3236] = {.lex_state = 281}, - [3237] = {.lex_state = 281}, - [3238] = {.lex_state = 269}, - [3239] = {.lex_state = 334}, - [3240] = {.lex_state = 281}, - [3241] = {.lex_state = 301}, - [3242] = {.lex_state = 301}, - [3243] = {.lex_state = 281}, - [3244] = {.lex_state = 269}, - [3245] = {.lex_state = 281}, - [3246] = {.lex_state = 281}, - [3247] = {.lex_state = 281}, + [3231] = {.lex_state = 333}, + [3232] = {.lex_state = 269}, + [3233] = {.lex_state = 270}, + [3234] = {.lex_state = 269}, + [3235] = {.lex_state = 270}, + [3236] = {.lex_state = 301}, + [3237] = {.lex_state = 286}, + [3238] = {.lex_state = 270}, + [3239] = {.lex_state = 301}, + [3240] = {.lex_state = 286}, + [3241] = {.lex_state = 333}, + [3242] = {.lex_state = 270}, + [3243] = {.lex_state = 301}, + [3244] = {.lex_state = 301}, + [3245] = {.lex_state = 333}, + [3246] = {.lex_state = 333}, + [3247] = {.lex_state = 286}, [3248] = {.lex_state = 333}, - [3249] = {.lex_state = 286}, + [3249] = {.lex_state = 333}, [3250] = {.lex_state = 286}, [3251] = {.lex_state = 286}, [3252] = {.lex_state = 286}, - [3253] = {.lex_state = 286}, - [3254] = {.lex_state = 286}, - [3255] = {.lex_state = 286}, - [3256] = {.lex_state = 286}, - [3257] = {.lex_state = 286}, - [3258] = {.lex_state = 286}, - [3259] = {.lex_state = 286}, + [3253] = {.lex_state = 333}, + [3254] = {.lex_state = 333}, + [3255] = {.lex_state = 277}, + [3256] = {.lex_state = 277}, + [3257] = {.lex_state = 277}, + [3258] = {.lex_state = 277}, + [3259] = {.lex_state = 277}, [3260] = {.lex_state = 286}, [3261] = {.lex_state = 286}, - [3262] = {.lex_state = 286}, - [3263] = {.lex_state = 286}, + [3262] = {.lex_state = 333}, + [3263] = {.lex_state = 333}, [3264] = {.lex_state = 286}, - [3265] = {.lex_state = 286}, - [3266] = {.lex_state = 286}, - [3267] = {.lex_state = 286}, + [3265] = {.lex_state = 333}, + [3266] = {.lex_state = 333}, + [3267] = {.lex_state = 333}, [3268] = {.lex_state = 286}, [3269] = {.lex_state = 286}, [3270] = {.lex_state = 286}, - [3271] = {.lex_state = 286}, - [3272] = {.lex_state = 286}, - [3273] = {.lex_state = 286}, - [3274] = {.lex_state = 286}, - [3275] = {.lex_state = 333}, + [3271] = {.lex_state = 333}, + [3272] = {.lex_state = 333}, + [3273] = {.lex_state = 333}, + [3274] = {.lex_state = 277}, + [3275] = {.lex_state = 286}, [3276] = {.lex_state = 286}, - [3277] = {.lex_state = 286}, - [3278] = {.lex_state = 286}, + [3277] = {.lex_state = 277}, + [3278] = {.lex_state = 333}, [3279] = {.lex_state = 286}, [3280] = {.lex_state = 286}, [3281] = {.lex_state = 286}, [3282] = {.lex_state = 286}, [3283] = {.lex_state = 286}, - [3284] = {.lex_state = 277}, - [3285] = {.lex_state = 277}, - [3286] = {.lex_state = 286}, - [3287] = {.lex_state = 286}, + [3284] = {.lex_state = 333}, + [3285] = {.lex_state = 286}, + [3286] = {.lex_state = 333}, + [3287] = {.lex_state = 333}, [3288] = {.lex_state = 286}, - [3289] = {.lex_state = 277}, - [3290] = {.lex_state = 277}, + [3289] = {.lex_state = 286}, + [3290] = {.lex_state = 286}, [3291] = {.lex_state = 286}, [3292] = {.lex_state = 286}, [3293] = {.lex_state = 286}, - [3294] = {.lex_state = 286}, - [3295] = {.lex_state = 277}, + [3294] = {.lex_state = 333}, + [3295] = {.lex_state = 333}, [3296] = {.lex_state = 286}, - [3297] = {.lex_state = 286}, - [3298] = {.lex_state = 286}, - [3299] = {.lex_state = 277}, - [3300] = {.lex_state = 277}, - [3301] = {.lex_state = 277}, - [3302] = {.lex_state = 277}, - [3303] = {.lex_state = 277}, + [3297] = {.lex_state = 269}, + [3298] = {.lex_state = 333}, + [3299] = {.lex_state = 243}, + [3300] = {.lex_state = 333}, + [3301] = {.lex_state = 333}, + [3302] = {.lex_state = 333}, + [3303] = {.lex_state = 333}, [3304] = {.lex_state = 286}, - [3305] = {.lex_state = 286}, + [3305] = {.lex_state = 333}, [3306] = {.lex_state = 286}, [3307] = {.lex_state = 286}, - [3308] = {.lex_state = 286}, - [3309] = {.lex_state = 286}, - [3310] = {.lex_state = 277}, + [3308] = {.lex_state = 333}, + [3309] = {.lex_state = 290}, + [3310] = {.lex_state = 286}, [3311] = {.lex_state = 286}, - [3312] = {.lex_state = 286}, + [3312] = {.lex_state = 333}, [3313] = {.lex_state = 286}, - [3314] = {.lex_state = 286}, - [3315] = {.lex_state = 286}, - [3316] = {.lex_state = 286}, - [3317] = {.lex_state = 286}, - [3318] = {.lex_state = 286}, + [3314] = {.lex_state = 333}, + [3315] = {.lex_state = 333}, + [3316] = {.lex_state = 333}, + [3317] = {.lex_state = 277}, + [3318] = {.lex_state = 333}, [3319] = {.lex_state = 277}, - [3320] = {.lex_state = 277}, + [3320] = {.lex_state = 333}, [3321] = {.lex_state = 286}, [3322] = {.lex_state = 286}, [3323] = {.lex_state = 286}, @@ -30057,99 +30134,99 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3327] = {.lex_state = 286}, [3328] = {.lex_state = 286}, [3329] = {.lex_state = 286}, - [3330] = {.lex_state = 286}, - [3331] = {.lex_state = 245}, - [3332] = {.lex_state = 286}, - [3333] = {.lex_state = 286}, - [3334] = {.lex_state = 286}, - [3335] = {.lex_state = 286}, - [3336] = {.lex_state = 286}, - [3337] = {.lex_state = 286}, + [3330] = {.lex_state = 333}, + [3331] = {.lex_state = 286}, + [3332] = {.lex_state = 333}, + [3333] = {.lex_state = 333}, + [3334] = {.lex_state = 333}, + [3335] = {.lex_state = 333}, + [3336] = {.lex_state = 333}, + [3337] = {.lex_state = 285}, [3338] = {.lex_state = 286}, - [3339] = {.lex_state = 286}, - [3340] = {.lex_state = 285}, - [3341] = {.lex_state = 333}, + [3339] = {.lex_state = 333}, + [3340] = {.lex_state = 286}, + [3341] = {.lex_state = 286}, [3342] = {.lex_state = 333}, - [3343] = {.lex_state = 333}, + [3343] = {.lex_state = 286}, [3344] = {.lex_state = 333}, - [3345] = {.lex_state = 333}, + [3345] = {.lex_state = 245}, [3346] = {.lex_state = 333}, - [3347] = {.lex_state = 333}, - [3348] = {.lex_state = 333}, + [3347] = {.lex_state = 286}, + [3348] = {.lex_state = 286}, [3349] = {.lex_state = 333}, - [3350] = {.lex_state = 333}, - [3351] = {.lex_state = 289}, - [3352] = {.lex_state = 289}, - [3353] = {.lex_state = 289}, + [3350] = {.lex_state = 286}, + [3351] = {.lex_state = 286}, + [3352] = {.lex_state = 333}, + [3353] = {.lex_state = 333}, [3354] = {.lex_state = 333}, [3355] = {.lex_state = 333}, [3356] = {.lex_state = 333}, [3357] = {.lex_state = 333}, [3358] = {.lex_state = 333}, [3359] = {.lex_state = 333}, - [3360] = {.lex_state = 333}, - [3361] = {.lex_state = 333}, - [3362] = {.lex_state = 333}, + [3360] = {.lex_state = 285}, + [3361] = {.lex_state = 286}, + [3362] = {.lex_state = 286}, [3363] = {.lex_state = 333}, - [3364] = {.lex_state = 333}, - [3365] = {.lex_state = 333}, - [3366] = {.lex_state = 333}, - [3367] = {.lex_state = 333}, - [3368] = {.lex_state = 333}, - [3369] = {.lex_state = 333}, - [3370] = {.lex_state = 333}, + [3364] = {.lex_state = 286}, + [3365] = {.lex_state = 286}, + [3366] = {.lex_state = 286}, + [3367] = {.lex_state = 286}, + [3368] = {.lex_state = 286}, + [3369] = {.lex_state = 286}, + [3370] = {.lex_state = 286}, [3371] = {.lex_state = 333}, [3372] = {.lex_state = 333}, - [3373] = {.lex_state = 280}, - [3374] = {.lex_state = 333}, - [3375] = {.lex_state = 281}, - [3376] = {.lex_state = 269}, - [3377] = {.lex_state = 281}, - [3378] = {.lex_state = 281}, - [3379] = {.lex_state = 285}, + [3373] = {.lex_state = 333}, + [3374] = {.lex_state = 286}, + [3375] = {.lex_state = 286}, + [3376] = {.lex_state = 286}, + [3377] = {.lex_state = 277}, + [3378] = {.lex_state = 286}, + [3379] = {.lex_state = 286}, [3380] = {.lex_state = 333}, - [3381] = {.lex_state = 301}, - [3382] = {.lex_state = 289}, - [3383] = {.lex_state = 289}, - [3384] = {.lex_state = 289}, - [3385] = {.lex_state = 333}, + [3381] = {.lex_state = 289}, + [3382] = {.lex_state = 286}, + [3383] = {.lex_state = 286}, + [3384] = {.lex_state = 286}, + [3385] = {.lex_state = 289}, [3386] = {.lex_state = 333}, [3387] = {.lex_state = 333}, - [3388] = {.lex_state = 333}, - [3389] = {.lex_state = 333}, - [3390] = {.lex_state = 333}, - [3391] = {.lex_state = 333}, - [3392] = {.lex_state = 269}, + [3388] = {.lex_state = 301}, + [3389] = {.lex_state = 286}, + [3390] = {.lex_state = 245}, + [3391] = {.lex_state = 286}, + [3392] = {.lex_state = 286}, [3393] = {.lex_state = 333}, [3394] = {.lex_state = 333}, [3395] = {.lex_state = 333}, - [3396] = {.lex_state = 333}, - [3397] = {.lex_state = 243}, - [3398] = {.lex_state = 333}, - [3399] = {.lex_state = 333}, - [3400] = {.lex_state = 333}, - [3401] = {.lex_state = 333}, + [3396] = {.lex_state = 290}, + [3397] = {.lex_state = 333}, + [3398] = {.lex_state = 286}, + [3399] = {.lex_state = 286}, + [3400] = {.lex_state = 286}, + [3401] = {.lex_state = 286}, [3402] = {.lex_state = 333}, [3403] = {.lex_state = 333}, - [3404] = {.lex_state = 333}, - [3405] = {.lex_state = 333}, + [3404] = {.lex_state = 286}, + [3405] = {.lex_state = 286}, [3406] = {.lex_state = 333}, [3407] = {.lex_state = 333}, - [3408] = {.lex_state = 333}, + [3408] = {.lex_state = 286}, [3409] = {.lex_state = 333}, - [3410] = {.lex_state = 333}, + [3410] = {.lex_state = 286}, [3411] = {.lex_state = 286}, - [3412] = {.lex_state = 333}, - [3413] = {.lex_state = 333}, + [3412] = {.lex_state = 286}, + [3413] = {.lex_state = 286}, [3414] = {.lex_state = 333}, [3415] = {.lex_state = 333}, - [3416] = {.lex_state = 333}, - [3417] = {.lex_state = 333}, + [3416] = {.lex_state = 286}, + [3417] = {.lex_state = 286}, [3418] = {.lex_state = 333}, [3419] = {.lex_state = 333}, [3420] = {.lex_state = 333}, [3421] = {.lex_state = 333}, - [3422] = {.lex_state = 333}, + [3422] = {.lex_state = 286}, [3423] = {.lex_state = 333}, [3424] = {.lex_state = 333}, [3425] = {.lex_state = 333}, @@ -30157,423 +30234,423 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3427] = {.lex_state = 333}, [3428] = {.lex_state = 333}, [3429] = {.lex_state = 333}, - [3430] = {.lex_state = 333}, - [3431] = {.lex_state = 333}, - [3432] = {.lex_state = 333}, - [3433] = {.lex_state = 271}, - [3434] = {.lex_state = 333}, + [3430] = {.lex_state = 290}, + [3431] = {.lex_state = 271}, + [3432] = {.lex_state = 278}, + [3433] = {.lex_state = 333}, + [3434] = {.lex_state = 286}, [3435] = {.lex_state = 333}, - [3436] = {.lex_state = 245}, + [3436] = {.lex_state = 286}, [3437] = {.lex_state = 333}, - [3438] = {.lex_state = 333}, - [3439] = {.lex_state = 333}, + [3438] = {.lex_state = 286}, + [3439] = {.lex_state = 286}, [3440] = {.lex_state = 333}, - [3441] = {.lex_state = 271}, - [3442] = {.lex_state = 333}, + [3441] = {.lex_state = 286}, + [3442] = {.lex_state = 286}, [3443] = {.lex_state = 333}, - [3444] = {.lex_state = 333}, - [3445] = {.lex_state = 333}, - [3446] = {.lex_state = 333}, - [3447] = {.lex_state = 290}, - [3448] = {.lex_state = 290}, - [3449] = {.lex_state = 278}, + [3444] = {.lex_state = 286}, + [3445] = {.lex_state = 277}, + [3446] = {.lex_state = 286}, + [3447] = {.lex_state = 289}, + [3448] = {.lex_state = 286}, + [3449] = {.lex_state = 333}, [3450] = {.lex_state = 333}, [3451] = {.lex_state = 333}, - [3452] = {.lex_state = 333}, - [3453] = {.lex_state = 290}, - [3454] = {.lex_state = 333}, - [3455] = {.lex_state = 333}, - [3456] = {.lex_state = 333}, - [3457] = {.lex_state = 333}, - [3458] = {.lex_state = 333}, + [3452] = {.lex_state = 289}, + [3453] = {.lex_state = 333}, + [3454] = {.lex_state = 281}, + [3455] = {.lex_state = 269}, + [3456] = {.lex_state = 271}, + [3457] = {.lex_state = 277}, + [3458] = {.lex_state = 277}, [3459] = {.lex_state = 333}, [3460] = {.lex_state = 333}, - [3461] = {.lex_state = 333}, - [3462] = {.lex_state = 286}, - [3463] = {.lex_state = 286}, + [3461] = {.lex_state = 281}, + [3462] = {.lex_state = 281}, + [3463] = {.lex_state = 333}, [3464] = {.lex_state = 286}, [3465] = {.lex_state = 286}, - [3466] = {.lex_state = 286}, - [3467] = {.lex_state = 286}, - [3468] = {.lex_state = 286}, + [3466] = {.lex_state = 333}, + [3467] = {.lex_state = 289}, + [3468] = {.lex_state = 333}, [3469] = {.lex_state = 286}, - [3470] = {.lex_state = 286}, - [3471] = {.lex_state = 286}, - [3472] = {.lex_state = 286}, - [3473] = {.lex_state = 286}, - [3474] = {.lex_state = 285}, - [3475] = {.lex_state = 286}, - [3476] = {.lex_state = 286}, + [3470] = {.lex_state = 333}, + [3471] = {.lex_state = 280}, + [3472] = {.lex_state = 333}, + [3473] = {.lex_state = 333}, + [3474] = {.lex_state = 333}, + [3475] = {.lex_state = 285}, + [3476] = {.lex_state = 333}, [3477] = {.lex_state = 286}, [3478] = {.lex_state = 286}, - [3479] = {.lex_state = 286}, - [3480] = {.lex_state = 286}, - [3481] = {.lex_state = 286}, - [3482] = {.lex_state = 286}, - [3483] = {.lex_state = 280}, - [3484] = {.lex_state = 277}, - [3485] = {.lex_state = 277}, - [3486] = {.lex_state = 290}, - [3487] = {.lex_state = 243}, - [3488] = {.lex_state = 325}, - [3489] = {.lex_state = 325}, - [3490] = {.lex_state = 321}, - [3491] = {.lex_state = 277}, - [3492] = {.lex_state = 321}, - [3493] = {.lex_state = 279}, - [3494] = {.lex_state = 333}, - [3495] = {.lex_state = 277}, - [3496] = {.lex_state = 279}, - [3497] = {.lex_state = 333}, - [3498] = {.lex_state = 277}, - [3499] = {.lex_state = 280}, + [3479] = {.lex_state = 289}, + [3480] = {.lex_state = 266}, + [3481] = {.lex_state = 280}, + [3482] = {.lex_state = 280}, + [3483] = {.lex_state = 290}, + [3484] = {.lex_state = 290}, + [3485] = {.lex_state = 280}, + [3486] = {.lex_state = 249}, + [3487] = {.lex_state = 254}, + [3488] = {.lex_state = 290}, + [3489] = {.lex_state = 254}, + [3490] = {.lex_state = 277}, + [3491] = {.lex_state = 279}, + [3492] = {.lex_state = 333}, + [3493] = {.lex_state = 277}, + [3494] = {.lex_state = 290}, + [3495] = {.lex_state = 280}, + [3496] = {.lex_state = 280}, + [3497] = {.lex_state = 249}, + [3498] = {.lex_state = 290}, + [3499] = {.lex_state = 271}, [3500] = {.lex_state = 290}, - [3501] = {.lex_state = 279}, - [3502] = {.lex_state = 277}, - [3503] = {.lex_state = 277}, - [3504] = {.lex_state = 277}, - [3505] = {.lex_state = 333}, - [3506] = {.lex_state = 277}, - [3507] = {.lex_state = 254}, - [3508] = {.lex_state = 277}, + [3501] = {.lex_state = 280}, + [3502] = {.lex_state = 254}, + [3503] = {.lex_state = 290}, + [3504] = {.lex_state = 290}, + [3505] = {.lex_state = 290}, + [3506] = {.lex_state = 290}, + [3507] = {.lex_state = 280}, + [3508] = {.lex_state = 280}, [3509] = {.lex_state = 277}, - [3510] = {.lex_state = 277}, - [3511] = {.lex_state = 280}, - [3512] = {.lex_state = 280}, + [3510] = {.lex_state = 290}, + [3511] = {.lex_state = 325}, + [3512] = {.lex_state = 290}, [3513] = {.lex_state = 280}, [3514] = {.lex_state = 280}, - [3515] = {.lex_state = 280}, - [3516] = {.lex_state = 249}, - [3517] = {.lex_state = 271}, - [3518] = {.lex_state = 280}, + [3515] = {.lex_state = 325}, + [3516] = {.lex_state = 245}, + [3517] = {.lex_state = 333}, + [3518] = {.lex_state = 290}, [3519] = {.lex_state = 280}, - [3520] = {.lex_state = 280}, - [3521] = {.lex_state = 280}, - [3522] = {.lex_state = 280}, - [3523] = {.lex_state = 280}, + [3520] = {.lex_state = 277}, + [3521] = {.lex_state = 290}, + [3522] = {.lex_state = 290}, + [3523] = {.lex_state = 279}, [3524] = {.lex_state = 280}, - [3525] = {.lex_state = 249}, + [3525] = {.lex_state = 280}, [3526] = {.lex_state = 280}, [3527] = {.lex_state = 290}, - [3528] = {.lex_state = 290}, - [3529] = {.lex_state = 290}, - [3530] = {.lex_state = 290}, + [3528] = {.lex_state = 271}, + [3529] = {.lex_state = 280}, + [3530] = {.lex_state = 280}, [3531] = {.lex_state = 290}, - [3532] = {.lex_state = 290}, + [3532] = {.lex_state = 280}, [3533] = {.lex_state = 290}, [3534] = {.lex_state = 290}, - [3535] = {.lex_state = 290}, + [3535] = {.lex_state = 277}, [3536] = {.lex_state = 280}, [3537] = {.lex_state = 280}, [3538] = {.lex_state = 280}, [3539] = {.lex_state = 290}, [3540] = {.lex_state = 280}, - [3541] = {.lex_state = 280}, - [3542] = {.lex_state = 266}, - [3543] = {.lex_state = 290}, - [3544] = {.lex_state = 290}, + [3541] = {.lex_state = 279}, + [3542] = {.lex_state = 290}, + [3543] = {.lex_state = 280}, + [3544] = {.lex_state = 280}, [3545] = {.lex_state = 290}, - [3546] = {.lex_state = 290}, - [3547] = {.lex_state = 290}, - [3548] = {.lex_state = 271}, + [3546] = {.lex_state = 280}, + [3547] = {.lex_state = 280}, + [3548] = {.lex_state = 279}, [3549] = {.lex_state = 290}, [3550] = {.lex_state = 290}, - [3551] = {.lex_state = 280}, + [3551] = {.lex_state = 290}, [3552] = {.lex_state = 280}, - [3553] = {.lex_state = 266}, - [3554] = {.lex_state = 290}, - [3555] = {.lex_state = 290}, - [3556] = {.lex_state = 290}, - [3557] = {.lex_state = 290}, - [3558] = {.lex_state = 290}, - [3559] = {.lex_state = 290}, - [3560] = {.lex_state = 290}, - [3561] = {.lex_state = 290}, + [3553] = {.lex_state = 333}, + [3554] = {.lex_state = 277}, + [3555] = {.lex_state = 271}, + [3556] = {.lex_state = 277}, + [3557] = {.lex_state = 277}, + [3558] = {.lex_state = 277}, + [3559] = {.lex_state = 277}, + [3560] = {.lex_state = 277}, + [3561] = {.lex_state = 277}, [3562] = {.lex_state = 290}, - [3563] = {.lex_state = 290}, + [3563] = {.lex_state = 271}, [3564] = {.lex_state = 280}, - [3565] = {.lex_state = 245}, - [3566] = {.lex_state = 271}, - [3567] = {.lex_state = 243}, - [3568] = {.lex_state = 277}, - [3569] = {.lex_state = 279}, - [3570] = {.lex_state = 290}, - [3571] = {.lex_state = 290}, - [3572] = {.lex_state = 290}, - [3573] = {.lex_state = 290}, + [3565] = {.lex_state = 290}, + [3566] = {.lex_state = 290}, + [3567] = {.lex_state = 290}, + [3568] = {.lex_state = 266}, + [3569] = {.lex_state = 243}, + [3570] = {.lex_state = 280}, + [3571] = {.lex_state = 243}, + [3572] = {.lex_state = 280}, + [3573] = {.lex_state = 280}, [3574] = {.lex_state = 290}, [3575] = {.lex_state = 290}, - [3576] = {.lex_state = 245}, - [3577] = {.lex_state = 290}, - [3578] = {.lex_state = 290}, - [3579] = {.lex_state = 280}, - [3580] = {.lex_state = 280}, - [3581] = {.lex_state = 271}, - [3582] = {.lex_state = 280}, + [3576] = {.lex_state = 290}, + [3577] = {.lex_state = 277}, + [3578] = {.lex_state = 280}, + [3579] = {.lex_state = 322}, + [3580] = {.lex_state = 290}, + [3581] = {.lex_state = 290}, + [3582] = {.lex_state = 290}, [3583] = {.lex_state = 280}, - [3584] = {.lex_state = 280}, - [3585] = {.lex_state = 280}, - [3586] = {.lex_state = 243}, - [3587] = {.lex_state = 280}, - [3588] = {.lex_state = 280}, + [3584] = {.lex_state = 245}, + [3585] = {.lex_state = 290}, + [3586] = {.lex_state = 322}, + [3587] = {.lex_state = 290}, + [3588] = {.lex_state = 290}, [3589] = {.lex_state = 245}, - [3590] = {.lex_state = 280}, - [3591] = {.lex_state = 254}, - [3592] = {.lex_state = 254}, - [3593] = {.lex_state = 290}, + [3590] = {.lex_state = 271}, + [3591] = {.lex_state = 271}, + [3592] = {.lex_state = 282}, + [3593] = {.lex_state = 325}, [3594] = {.lex_state = 285}, [3595] = {.lex_state = 271}, - [3596] = {.lex_state = 268}, - [3597] = {.lex_state = 271}, - [3598] = {.lex_state = 279}, - [3599] = {.lex_state = 243}, - [3600] = {.lex_state = 245}, + [3596] = {.lex_state = 285}, + [3597] = {.lex_state = 280}, + [3598] = {.lex_state = 280}, + [3599] = {.lex_state = 285}, + [3600] = {.lex_state = 285}, [3601] = {.lex_state = 271}, - [3602] = {.lex_state = 268}, - [3603] = {.lex_state = 271}, - [3604] = {.lex_state = 266}, - [3605] = {.lex_state = 281}, - [3606] = {.lex_state = 290}, - [3607] = {.lex_state = 285}, + [3602] = {.lex_state = 271}, + [3603] = {.lex_state = 277}, + [3604] = {.lex_state = 279}, + [3605] = {.lex_state = 271}, + [3606] = {.lex_state = 280}, + [3607] = {.lex_state = 278}, [3608] = {.lex_state = 271}, - [3609] = {.lex_state = 280}, - [3610] = {.lex_state = 285}, + [3609] = {.lex_state = 279}, + [3610] = {.lex_state = 271}, [3611] = {.lex_state = 271}, [3612] = {.lex_state = 285}, - [3613] = {.lex_state = 285}, + [3613] = {.lex_state = 271}, [3614] = {.lex_state = 285}, - [3615] = {.lex_state = 271}, + [3615] = {.lex_state = 279}, [3616] = {.lex_state = 271}, - [3617] = {.lex_state = 271}, - [3618] = {.lex_state = 252}, - [3619] = {.lex_state = 243}, - [3620] = {.lex_state = 271}, - [3621] = {.lex_state = 285}, - [3622] = {.lex_state = 285}, - [3623] = {.lex_state = 278}, + [3617] = {.lex_state = 285}, + [3618] = {.lex_state = 285}, + [3619] = {.lex_state = 279}, + [3620] = {.lex_state = 285}, + [3621] = {.lex_state = 271}, + [3622] = {.lex_state = 252}, + [3623] = {.lex_state = 285}, [3624] = {.lex_state = 285}, - [3625] = {.lex_state = 271}, + [3625] = {.lex_state = 335}, [3626] = {.lex_state = 271}, [3627] = {.lex_state = 271}, [3628] = {.lex_state = 271}, - [3629] = {.lex_state = 252}, - [3630] = {.lex_state = 271}, - [3631] = {.lex_state = 279}, - [3632] = {.lex_state = 252}, - [3633] = {.lex_state = 285}, - [3634] = {.lex_state = 279}, - [3635] = {.lex_state = 285}, + [3629] = {.lex_state = 285}, + [3630] = {.lex_state = 252}, + [3631] = {.lex_state = 243}, + [3632] = {.lex_state = 281}, + [3633] = {.lex_state = 271}, + [3634] = {.lex_state = 271}, + [3635] = {.lex_state = 245}, [3636] = {.lex_state = 271}, [3637] = {.lex_state = 271}, [3638] = {.lex_state = 271}, - [3639] = {.lex_state = 243}, - [3640] = {.lex_state = 271}, + [3639] = {.lex_state = 271}, + [3640] = {.lex_state = 285}, [3641] = {.lex_state = 271}, - [3642] = {.lex_state = 243}, - [3643] = {.lex_state = 250}, - [3644] = {.lex_state = 282}, + [3642] = {.lex_state = 266}, + [3643] = {.lex_state = 266}, + [3644] = {.lex_state = 285}, [3645] = {.lex_state = 271}, - [3646] = {.lex_state = 279}, - [3647] = {.lex_state = 271}, - [3648] = {.lex_state = 271}, - [3649] = {.lex_state = 279}, + [3646] = {.lex_state = 271}, + [3647] = {.lex_state = 252}, + [3648] = {.lex_state = 334}, + [3649] = {.lex_state = 271}, [3650] = {.lex_state = 271}, - [3651] = {.lex_state = 271}, + [3651] = {.lex_state = 285}, [3652] = {.lex_state = 271}, - [3653] = {.lex_state = 271}, - [3654] = {.lex_state = 285}, + [3653] = {.lex_state = 245}, + [3654] = {.lex_state = 271}, [3655] = {.lex_state = 271}, - [3656] = {.lex_state = 279}, - [3657] = {.lex_state = 271}, - [3658] = {.lex_state = 279}, - [3659] = {.lex_state = 325}, - [3660] = {.lex_state = 285}, - [3661] = {.lex_state = 243}, - [3662] = {.lex_state = 271}, - [3663] = {.lex_state = 285}, - [3664] = {.lex_state = 271}, - [3665] = {.lex_state = 280}, - [3666] = {.lex_state = 280}, - [3667] = {.lex_state = 245}, - [3668] = {.lex_state = 335}, + [3656] = {.lex_state = 243}, + [3657] = {.lex_state = 250}, + [3658] = {.lex_state = 271}, + [3659] = {.lex_state = 335}, + [3660] = {.lex_state = 268}, + [3661] = {.lex_state = 278}, + [3662] = {.lex_state = 245}, + [3663] = {.lex_state = 243}, + [3664] = {.lex_state = 279}, + [3665] = {.lex_state = 279}, + [3666] = {.lex_state = 290}, + [3667] = {.lex_state = 271}, + [3668] = {.lex_state = 271}, [3669] = {.lex_state = 271}, [3670] = {.lex_state = 271}, - [3671] = {.lex_state = 271}, - [3672] = {.lex_state = 271}, - [3673] = {.lex_state = 271}, - [3674] = {.lex_state = 271}, - [3675] = {.lex_state = 271}, - [3676] = {.lex_state = 285}, - [3677] = {.lex_state = 245}, + [3671] = {.lex_state = 322}, + [3672] = {.lex_state = 279}, + [3673] = {.lex_state = 243}, + [3674] = {.lex_state = 266}, + [3675] = {.lex_state = 268}, + [3676] = {.lex_state = 250}, + [3677] = {.lex_state = 243}, [3678] = {.lex_state = 271}, [3679] = {.lex_state = 271}, - [3680] = {.lex_state = 271}, - [3681] = {.lex_state = 266}, - [3682] = {.lex_state = 277}, - [3683] = {.lex_state = 335}, - [3684] = {.lex_state = 278}, - [3685] = {.lex_state = 334}, - [3686] = {.lex_state = 334}, - [3687] = {.lex_state = 271}, + [3680] = {.lex_state = 245}, + [3681] = {.lex_state = 285}, + [3682] = {.lex_state = 271}, + [3683] = {.lex_state = 256}, + [3684] = {.lex_state = 271}, + [3685] = {.lex_state = 266}, + [3686] = {.lex_state = 271}, + [3687] = {.lex_state = 256}, [3688] = {.lex_state = 271}, - [3689] = {.lex_state = 285}, - [3690] = {.lex_state = 256}, - [3691] = {.lex_state = 321}, - [3692] = {.lex_state = 279}, - [3693] = {.lex_state = 256}, - [3694] = {.lex_state = 266}, - [3695] = {.lex_state = 243}, - [3696] = {.lex_state = 266}, - [3697] = {.lex_state = 245}, - [3698] = {.lex_state = 266}, - [3699] = {.lex_state = 285}, - [3700] = {.lex_state = 271}, - [3701] = {.lex_state = 250}, - [3702] = {.lex_state = 271}, - [3703] = {.lex_state = 271}, - [3704] = {.lex_state = 319}, - [3705] = {.lex_state = 268}, - [3706] = {.lex_state = 260}, - [3707] = {.lex_state = 258}, - [3708] = {.lex_state = 324}, - [3709] = {.lex_state = 268}, - [3710] = {.lex_state = 266}, - [3711] = {.lex_state = 277}, - [3712] = {.lex_state = 280}, - [3713] = {.lex_state = 255}, - [3714] = {.lex_state = 319}, - [3715] = {.lex_state = 319}, - [3716] = {.lex_state = 319}, - [3717] = {.lex_state = 319}, - [3718] = {.lex_state = 319}, - [3719] = {.lex_state = 277}, - [3720] = {.lex_state = 277}, + [3689] = {.lex_state = 243}, + [3690] = {.lex_state = 271}, + [3691] = {.lex_state = 285}, + [3692] = {.lex_state = 271}, + [3693] = {.lex_state = 266}, + [3694] = {.lex_state = 279}, + [3695] = {.lex_state = 271}, + [3696] = {.lex_state = 271}, + [3697] = {.lex_state = 271}, + [3698] = {.lex_state = 271}, + [3699] = {.lex_state = 334}, + [3700] = {.lex_state = 335}, + [3701] = {.lex_state = 316}, + [3702] = {.lex_state = 316}, + [3703] = {.lex_state = 321}, + [3704] = {.lex_state = 255}, + [3705] = {.lex_state = 321}, + [3706] = {.lex_state = 277}, + [3707] = {.lex_state = 256}, + [3708] = {.lex_state = 268}, + [3709] = {.lex_state = 280}, + [3710] = {.lex_state = 280}, + [3711] = {.lex_state = 255}, + [3712] = {.lex_state = 260}, + [3713] = {.lex_state = 277}, + [3714] = {.lex_state = 317}, + [3715] = {.lex_state = 321}, + [3716] = {.lex_state = 280}, + [3717] = {.lex_state = 277}, + [3718] = {.lex_state = 258}, + [3719] = {.lex_state = 256}, + [3720] = {.lex_state = 268}, [3721] = {.lex_state = 277}, - [3722] = {.lex_state = 277}, - [3723] = {.lex_state = 277}, - [3724] = {.lex_state = 277}, - [3725] = {.lex_state = 277}, - [3726] = {.lex_state = 255}, - [3727] = {.lex_state = 258}, + [3722] = {.lex_state = 316}, + [3723] = {.lex_state = 317}, + [3724] = {.lex_state = 268}, + [3725] = {.lex_state = 316}, + [3726] = {.lex_state = 281}, + [3727] = {.lex_state = 245}, [3728] = {.lex_state = 277}, - [3729] = {.lex_state = 277}, + [3729] = {.lex_state = 280}, [3730] = {.lex_state = 260}, - [3731] = {.lex_state = 316}, - [3732] = {.lex_state = 271}, - [3733] = {.lex_state = 277}, - [3734] = {.lex_state = 256}, - [3735] = {.lex_state = 336}, - [3736] = {.lex_state = 324}, - [3737] = {.lex_state = 316}, + [3731] = {.lex_state = 335}, + [3732] = {.lex_state = 256}, + [3733] = {.lex_state = 316}, + [3734] = {.lex_state = 271}, + [3735] = {.lex_state = 277}, + [3736] = {.lex_state = 335}, + [3737] = {.lex_state = 258}, [3738] = {.lex_state = 256}, - [3739] = {.lex_state = 335}, - [3740] = {.lex_state = 268}, - [3741] = {.lex_state = 245}, - [3742] = {.lex_state = 319}, - [3743] = {.lex_state = 335}, - [3744] = {.lex_state = 268}, - [3745] = {.lex_state = 256}, - [3746] = {.lex_state = 316}, - [3747] = {.lex_state = 280}, - [3748] = {.lex_state = 335}, - [3749] = {.lex_state = 243}, - [3750] = {.lex_state = 277}, - [3751] = {.lex_state = 260}, - [3752] = {.lex_state = 335}, - [3753] = {.lex_state = 281}, - [3754] = {.lex_state = 324}, - [3755] = {.lex_state = 280}, - [3756] = {.lex_state = 280}, - [3757] = {.lex_state = 268}, - [3758] = {.lex_state = 256}, - [3759] = {.lex_state = 277}, - [3760] = {.lex_state = 258}, - [3761] = {.lex_state = 243}, - [3762] = {.lex_state = 325}, - [3763] = {.lex_state = 267}, - [3764] = {.lex_state = 321}, - [3765] = {.lex_state = 333}, - [3766] = {.lex_state = 325}, - [3767] = {.lex_state = 280}, - [3768] = {.lex_state = 271}, - [3769] = {.lex_state = 271}, - [3770] = {.lex_state = 321}, - [3771] = {.lex_state = 336}, - [3772] = {.lex_state = 271}, - [3773] = {.lex_state = 321}, - [3774] = {.lex_state = 280}, - [3775] = {.lex_state = 280}, - [3776] = {.lex_state = 280}, - [3777] = {.lex_state = 280}, - [3778] = {.lex_state = 280}, + [3739] = {.lex_state = 277}, + [3740] = {.lex_state = 277}, + [3741] = {.lex_state = 316}, + [3742] = {.lex_state = 335}, + [3743] = {.lex_state = 277}, + [3744] = {.lex_state = 277}, + [3745] = {.lex_state = 316}, + [3746] = {.lex_state = 277}, + [3747] = {.lex_state = 268}, + [3748] = {.lex_state = 243}, + [3749] = {.lex_state = 277}, + [3750] = {.lex_state = 258}, + [3751] = {.lex_state = 277}, + [3752] = {.lex_state = 266}, + [3753] = {.lex_state = 268}, + [3754] = {.lex_state = 243}, + [3755] = {.lex_state = 336}, + [3756] = {.lex_state = 260}, + [3757] = {.lex_state = 317}, + [3758] = {.lex_state = 271}, + [3759] = {.lex_state = 271}, + [3760] = {.lex_state = 268}, + [3761] = {.lex_state = 316}, + [3762] = {.lex_state = 275}, + [3763] = {.lex_state = 321}, + [3764] = {.lex_state = 322}, + [3765] = {.lex_state = 325}, + [3766] = {.lex_state = 335}, + [3767] = {.lex_state = 334}, + [3768] = {.lex_state = 322}, + [3769] = {.lex_state = 322}, + [3770] = {.lex_state = 278}, + [3771] = {.lex_state = 334}, + [3772] = {.lex_state = 325}, + [3773] = {.lex_state = 325}, + [3774] = {.lex_state = 325}, + [3775] = {.lex_state = 245}, + [3776] = {.lex_state = 245}, + [3777] = {.lex_state = 245}, + [3778] = {.lex_state = 245}, [3779] = {.lex_state = 271}, - [3780] = {.lex_state = 271}, - [3781] = {.lex_state = 268}, - [3782] = {.lex_state = 271}, - [3783] = {.lex_state = 252}, - [3784] = {.lex_state = 324}, - [3785] = {.lex_state = 271}, - [3786] = {.lex_state = 316}, - [3787] = {.lex_state = 334}, - [3788] = {.lex_state = 334}, - [3789] = {.lex_state = 334}, - [3790] = {.lex_state = 335}, - [3791] = {.lex_state = 271}, + [3780] = {.lex_state = 280}, + [3781] = {.lex_state = 271}, + [3782] = {.lex_state = 252}, + [3783] = {.lex_state = 334}, + [3784] = {.lex_state = 334}, + [3785] = {.lex_state = 333}, + [3786] = {.lex_state = 268}, + [3787] = {.lex_state = 277}, + [3788] = {.lex_state = 271}, + [3789] = {.lex_state = 280}, + [3790] = {.lex_state = 267}, + [3791] = {.lex_state = 322}, [3792] = {.lex_state = 271}, [3793] = {.lex_state = 280}, - [3794] = {.lex_state = 271}, - [3795] = {.lex_state = 271}, + [3794] = {.lex_state = 280}, + [3795] = {.lex_state = 280}, [3796] = {.lex_state = 280}, - [3797] = {.lex_state = 319}, - [3798] = {.lex_state = 271}, - [3799] = {.lex_state = 325}, - [3800] = {.lex_state = 278}, - [3801] = {.lex_state = 280}, - [3802] = {.lex_state = 325}, - [3803] = {.lex_state = 278}, - [3804] = {.lex_state = 268}, - [3805] = {.lex_state = 271}, - [3806] = {.lex_state = 245}, - [3807] = {.lex_state = 245}, - [3808] = {.lex_state = 335}, - [3809] = {.lex_state = 275}, - [3810] = {.lex_state = 334}, - [3811] = {.lex_state = 245}, - [3812] = {.lex_state = 245}, + [3797] = {.lex_state = 280}, + [3798] = {.lex_state = 280}, + [3799] = {.lex_state = 271}, + [3800] = {.lex_state = 334}, + [3801] = {.lex_state = 334}, + [3802] = {.lex_state = 333}, + [3803] = {.lex_state = 335}, + [3804] = {.lex_state = 271}, + [3805] = {.lex_state = 278}, + [3806] = {.lex_state = 280}, + [3807] = {.lex_state = 271}, + [3808] = {.lex_state = 268}, + [3809] = {.lex_state = 271}, + [3810] = {.lex_state = 280}, + [3811] = {.lex_state = 336}, + [3812] = {.lex_state = 280}, [3813] = {.lex_state = 271}, [3814] = {.lex_state = 271}, [3815] = {.lex_state = 271}, - [3816] = {.lex_state = 271}, - [3817] = {.lex_state = 268}, - [3818] = {.lex_state = 280}, - [3819] = {.lex_state = 277}, + [3816] = {.lex_state = 317}, + [3817] = {.lex_state = 271}, + [3818] = {.lex_state = 271}, + [3819] = {.lex_state = 271}, [3820] = {.lex_state = 271}, - [3821] = {.lex_state = 280}, - [3822] = {.lex_state = 334}, - [3823] = {.lex_state = 321}, - [3824] = {.lex_state = 333}, - [3825] = {.lex_state = 334}, + [3821] = {.lex_state = 271}, + [3822] = {.lex_state = 271}, + [3823] = {.lex_state = 271}, + [3824] = {.lex_state = 271}, + [3825] = {.lex_state = 252}, [3826] = {.lex_state = 271}, [3827] = {.lex_state = 271}, [3828] = {.lex_state = 271}, - [3829] = {.lex_state = 280}, - [3830] = {.lex_state = 280}, - [3831] = {.lex_state = 267}, - [3832] = {.lex_state = 280}, + [3829] = {.lex_state = 271}, + [3830] = {.lex_state = 322}, + [3831] = {.lex_state = 322}, + [3832] = {.lex_state = 271}, [3833] = {.lex_state = 271}, - [3834] = {.lex_state = 271}, - [3835] = {.lex_state = 280}, - [3836] = {.lex_state = 280}, + [3834] = {.lex_state = 252}, + [3835] = {.lex_state = 271}, + [3836] = {.lex_state = 271}, [3837] = {.lex_state = 271}, - [3838] = {.lex_state = 252}, + [3838] = {.lex_state = 280}, [3839] = {.lex_state = 280}, - [3840] = {.lex_state = 271}, + [3840] = {.lex_state = 252}, [3841] = {.lex_state = 271}, - [3842] = {.lex_state = 280}, - [3843] = {.lex_state = 258}, - [3844] = {.lex_state = 271}, + [3842] = {.lex_state = 271}, + [3843] = {.lex_state = 280}, + [3844] = {.lex_state = 280}, [3845] = {.lex_state = 271}, - [3846] = {.lex_state = 277}, + [3846] = {.lex_state = 271}, [3847] = {.lex_state = 271}, [3848] = {.lex_state = 271}, [3849] = {.lex_state = 271}, @@ -30581,70 +30658,70 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3851] = {.lex_state = 271}, [3852] = {.lex_state = 271}, [3853] = {.lex_state = 271}, - [3854] = {.lex_state = 271}, - [3855] = {.lex_state = 280}, + [3854] = {.lex_state = 278}, + [3855] = {.lex_state = 271}, [3856] = {.lex_state = 271}, [3857] = {.lex_state = 271}, - [3858] = {.lex_state = 252}, - [3859] = {.lex_state = 271}, - [3860] = {.lex_state = 277}, - [3861] = {.lex_state = 277}, - [3862] = {.lex_state = 280}, - [3863] = {.lex_state = 280}, + [3858] = {.lex_state = 271}, + [3859] = {.lex_state = 260}, + [3860] = {.lex_state = 252}, + [3861] = {.lex_state = 252}, + [3862] = {.lex_state = 258}, + [3863] = {.lex_state = 271}, [3864] = {.lex_state = 271}, - [3865] = {.lex_state = 280}, + [3865] = {.lex_state = 252}, [3866] = {.lex_state = 271}, - [3867] = {.lex_state = 245}, - [3868] = {.lex_state = 245}, + [3867] = {.lex_state = 271}, + [3868] = {.lex_state = 280}, [3869] = {.lex_state = 271}, - [3870] = {.lex_state = 278}, - [3871] = {.lex_state = 245}, - [3872] = {.lex_state = 245}, - [3873] = {.lex_state = 280}, - [3874] = {.lex_state = 271}, - [3875] = {.lex_state = 271}, - [3876] = {.lex_state = 271}, - [3877] = {.lex_state = 325}, + [3870] = {.lex_state = 280}, + [3871] = {.lex_state = 271}, + [3872] = {.lex_state = 271}, + [3873] = {.lex_state = 271}, + [3874] = {.lex_state = 252}, + [3875] = {.lex_state = 280}, + [3876] = {.lex_state = 280}, + [3877] = {.lex_state = 271}, [3878] = {.lex_state = 271}, - [3879] = {.lex_state = 252}, + [3879] = {.lex_state = 271}, [3880] = {.lex_state = 271}, [3881] = {.lex_state = 271}, [3882] = {.lex_state = 271}, [3883] = {.lex_state = 271}, - [3884] = {.lex_state = 280}, - [3885] = {.lex_state = 277}, - [3886] = {.lex_state = 325}, - [3887] = {.lex_state = 271}, - [3888] = {.lex_state = 271}, - [3889] = {.lex_state = 271}, - [3890] = {.lex_state = 271}, - [3891] = {.lex_state = 271}, - [3892] = {.lex_state = 271}, - [3893] = {.lex_state = 260}, + [3884] = {.lex_state = 271}, + [3885] = {.lex_state = 271}, + [3886] = {.lex_state = 271}, + [3887] = {.lex_state = 280}, + [3888] = {.lex_state = 277}, + [3889] = {.lex_state = 280}, + [3890] = {.lex_state = 280}, + [3891] = {.lex_state = 280}, + [3892] = {.lex_state = 245}, + [3893] = {.lex_state = 280}, [3894] = {.lex_state = 271}, [3895] = {.lex_state = 271}, [3896] = {.lex_state = 271}, - [3897] = {.lex_state = 252}, - [3898] = {.lex_state = 271}, + [3897] = {.lex_state = 271}, + [3898] = {.lex_state = 245}, [3899] = {.lex_state = 271}, - [3900] = {.lex_state = 271}, - [3901] = {.lex_state = 280}, - [3902] = {.lex_state = 277}, - [3903] = {.lex_state = 271}, + [3900] = {.lex_state = 245}, + [3901] = {.lex_state = 277}, + [3902] = {.lex_state = 280}, + [3903] = {.lex_state = 280}, [3904] = {.lex_state = 271}, - [3905] = {.lex_state = 280}, - [3906] = {.lex_state = 271}, - [3907] = {.lex_state = 271}, - [3908] = {.lex_state = 271}, - [3909] = {.lex_state = 271}, - [3910] = {.lex_state = 271}, + [3905] = {.lex_state = 277}, + [3906] = {.lex_state = 280}, + [3907] = {.lex_state = 280}, + [3908] = {.lex_state = 245}, + [3909] = {.lex_state = 277}, + [3910] = {.lex_state = 280}, [3911] = {.lex_state = 271}, - [3912] = {.lex_state = 271}, - [3913] = {.lex_state = 271}, - [3914] = {.lex_state = 271}, - [3915] = {.lex_state = 271}, + [3912] = {.lex_state = 277}, + [3913] = {.lex_state = 280}, + [3914] = {.lex_state = 277}, + [3915] = {.lex_state = 280}, [3916] = {.lex_state = 280}, - [3917] = {.lex_state = 280}, + [3917] = {.lex_state = 271}, [3918] = {.lex_state = 271}, [3919] = {.lex_state = 271}, [3920] = {.lex_state = 271}, @@ -30654,1552 +30731,1552 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [3924] = {.lex_state = 271}, [3925] = {.lex_state = 271}, [3926] = {.lex_state = 271}, - [3927] = {.lex_state = 280}, - [3928] = {.lex_state = 271}, + [3927] = {.lex_state = 271}, + [3928] = {.lex_state = 325}, [3929] = {.lex_state = 271}, - [3930] = {.lex_state = 271}, + [3930] = {.lex_state = 325}, [3931] = {.lex_state = 271}, - [3932] = {.lex_state = 271}, + [3932] = {.lex_state = 277}, [3933] = {.lex_state = 271}, [3934] = {.lex_state = 280}, - [3935] = {.lex_state = 280}, + [3935] = {.lex_state = 267}, [3936] = {.lex_state = 280}, [3937] = {.lex_state = 271}, [3938] = {.lex_state = 271}, [3939] = {.lex_state = 271}, - [3940] = {.lex_state = 252}, + [3940] = {.lex_state = 271}, [3941] = {.lex_state = 271}, - [3942] = {.lex_state = 280}, + [3942] = {.lex_state = 271}, [3943] = {.lex_state = 271}, [3944] = {.lex_state = 271}, - [3945] = {.lex_state = 321}, - [3946] = {.lex_state = 280}, - [3947] = {.lex_state = 321}, - [3948] = {.lex_state = 277}, - [3949] = {.lex_state = 252}, - [3950] = {.lex_state = 271}, - [3951] = {.lex_state = 271}, - [3952] = {.lex_state = 252}, - [3953] = {.lex_state = 277}, - [3954] = {.lex_state = 280}, - [3955] = {.lex_state = 324}, - [3956] = {.lex_state = 319}, - [3957] = {.lex_state = 270}, - [3958] = {.lex_state = 258}, - [3959] = {.lex_state = 277}, - [3960] = {.lex_state = 240}, - [3961] = {.lex_state = 240}, - [3962] = {.lex_state = 319}, - [3963] = {.lex_state = 240}, - [3964] = {.lex_state = 258}, - [3965] = {.lex_state = 277}, - [3966] = {.lex_state = 320}, - [3967] = {.lex_state = 277}, - [3968] = {.lex_state = 267}, - [3969] = {.lex_state = 277}, - [3970] = {.lex_state = 319}, - [3971] = {.lex_state = 319}, + [3945] = {.lex_state = 271}, + [3946] = {.lex_state = 271}, + [3947] = {.lex_state = 271}, + [3948] = {.lex_state = 271}, + [3949] = {.lex_state = 271}, + [3950] = {.lex_state = 280}, + [3951] = {.lex_state = 316}, + [3952] = {.lex_state = 316}, + [3953] = {.lex_state = 335}, + [3954] = {.lex_state = 316}, + [3955] = {.lex_state = 252}, + [3956] = {.lex_state = 316}, + [3957] = {.lex_state = 258}, + [3958] = {.lex_state = 316}, + [3959] = {.lex_state = 252}, + [3960] = {.lex_state = 277}, + [3961] = {.lex_state = 316}, + [3962] = {.lex_state = 240}, + [3963] = {.lex_state = 277}, + [3964] = {.lex_state = 277}, + [3965] = {.lex_state = 252}, + [3966] = {.lex_state = 321}, + [3967] = {.lex_state = 317}, + [3968] = {.lex_state = 321}, + [3969] = {.lex_state = 270}, + [3970] = {.lex_state = 270}, + [3971] = {.lex_state = 240}, [3972] = {.lex_state = 270}, - [3973] = {.lex_state = 319}, - [3974] = {.lex_state = 280}, - [3975] = {.lex_state = 270}, - [3976] = {.lex_state = 316}, - [3977] = {.lex_state = 324}, - [3978] = {.lex_state = 316}, - [3979] = {.lex_state = 335}, - [3980] = {.lex_state = 279}, - [3981] = {.lex_state = 319}, - [3982] = {.lex_state = 252}, - [3983] = {.lex_state = 240}, - [3984] = {.lex_state = 335}, - [3985] = {.lex_state = 319}, - [3986] = {.lex_state = 319}, - [3987] = {.lex_state = 277}, - [3988] = {.lex_state = 324}, - [3989] = {.lex_state = 324}, - [3990] = {.lex_state = 252}, - [3991] = {.lex_state = 316}, - [3992] = {.lex_state = 289}, - [3993] = {.lex_state = 252}, - [3994] = {.lex_state = 316}, - [3995] = {.lex_state = 316}, - [3996] = {.lex_state = 270}, - [3997] = {.lex_state = 271}, - [3998] = {.lex_state = 271}, - [3999] = {.lex_state = 319}, - [4000] = {.lex_state = 277}, - [4001] = {.lex_state = 252}, - [4002] = {.lex_state = 290}, - [4003] = {.lex_state = 258}, - [4004] = {.lex_state = 258}, - [4005] = {.lex_state = 324}, - [4006] = {.lex_state = 335}, + [3973] = {.lex_state = 270}, + [3974] = {.lex_state = 270}, + [3975] = {.lex_state = 317}, + [3976] = {.lex_state = 270}, + [3977] = {.lex_state = 335}, + [3978] = {.lex_state = 321}, + [3979] = {.lex_state = 240}, + [3980] = {.lex_state = 335}, + [3981] = {.lex_state = 317}, + [3982] = {.lex_state = 279}, + [3983] = {.lex_state = 321}, + [3984] = {.lex_state = 289}, + [3985] = {.lex_state = 335}, + [3986] = {.lex_state = 316}, + [3987] = {.lex_state = 270}, + [3988] = {.lex_state = 335}, + [3989] = {.lex_state = 260}, + [3990] = {.lex_state = 260}, + [3991] = {.lex_state = 317}, + [3992] = {.lex_state = 258}, + [3993] = {.lex_state = 258}, + [3994] = {.lex_state = 271}, + [3995] = {.lex_state = 321}, + [3996] = {.lex_state = 240}, + [3997] = {.lex_state = 335}, + [3998] = {.lex_state = 280}, + [3999] = {.lex_state = 320}, + [4000] = {.lex_state = 316}, + [4001] = {.lex_state = 316}, + [4002] = {.lex_state = 316}, + [4003] = {.lex_state = 316}, + [4004] = {.lex_state = 316}, + [4005] = {.lex_state = 277}, + [4006] = {.lex_state = 316}, [4007] = {.lex_state = 260}, - [4008] = {.lex_state = 319}, - [4009] = {.lex_state = 316}, - [4010] = {.lex_state = 319}, - [4011] = {.lex_state = 260}, - [4012] = {.lex_state = 319}, - [4013] = {.lex_state = 316}, - [4014] = {.lex_state = 324}, - [4015] = {.lex_state = 319}, - [4016] = {.lex_state = 270}, - [4017] = {.lex_state = 335}, - [4018] = {.lex_state = 270}, - [4019] = {.lex_state = 319}, - [4020] = {.lex_state = 260}, - [4021] = {.lex_state = 319}, - [4022] = {.lex_state = 277}, - [4023] = {.lex_state = 277}, - [4024] = {.lex_state = 335}, - [4025] = {.lex_state = 260}, - [4026] = {.lex_state = 324}, - [4027] = {.lex_state = 270}, - [4028] = {.lex_state = 277}, - [4029] = {.lex_state = 335}, - [4030] = {.lex_state = 319}, - [4031] = {.lex_state = 335}, - [4032] = {.lex_state = 282}, - [4033] = {.lex_state = 277}, - [4034] = {.lex_state = 316}, - [4035] = {.lex_state = 319}, - [4036] = {.lex_state = 319}, - [4037] = {.lex_state = 319}, - [4038] = {.lex_state = 319}, - [4039] = {.lex_state = 319}, + [4008] = {.lex_state = 317}, + [4009] = {.lex_state = 277}, + [4010] = {.lex_state = 335}, + [4011] = {.lex_state = 252}, + [4012] = {.lex_state = 316}, + [4013] = {.lex_state = 277}, + [4014] = {.lex_state = 260}, + [4015] = {.lex_state = 277}, + [4016] = {.lex_state = 290}, + [4017] = {.lex_state = 321}, + [4018] = {.lex_state = 316}, + [4019] = {.lex_state = 321}, + [4020] = {.lex_state = 317}, + [4021] = {.lex_state = 321}, + [4022] = {.lex_state = 317}, + [4023] = {.lex_state = 258}, + [4024] = {.lex_state = 316}, + [4025] = {.lex_state = 267}, + [4026] = {.lex_state = 317}, + [4027] = {.lex_state = 316}, + [4028] = {.lex_state = 316}, + [4029] = {.lex_state = 277}, + [4030] = {.lex_state = 316}, + [4031] = {.lex_state = 277}, + [4032] = {.lex_state = 316}, + [4033] = {.lex_state = 279}, + [4034] = {.lex_state = 277}, + [4035] = {.lex_state = 282}, + [4036] = {.lex_state = 316}, + [4037] = {.lex_state = 271}, + [4038] = {.lex_state = 277}, + [4039] = {.lex_state = 277}, [4040] = {.lex_state = 279}, - [4041] = {.lex_state = 324}, - [4042] = {.lex_state = 279}, - [4043] = {.lex_state = 319}, - [4044] = {.lex_state = 316}, - [4045] = {.lex_state = 297}, - [4046] = {.lex_state = 279}, - [4047] = {.lex_state = 279}, - [4048] = {.lex_state = 277}, + [4041] = {.lex_state = 325}, + [4042] = {.lex_state = 278}, + [4043] = {.lex_state = 288}, + [4044] = {.lex_state = 339}, + [4045] = {.lex_state = 289}, + [4046] = {.lex_state = 301}, + [4047] = {.lex_state = 269}, + [4048] = {.lex_state = 279}, [4049] = {.lex_state = 279}, [4050] = {.lex_state = 247}, - [4051] = {.lex_state = 282}, - [4052] = {.lex_state = 282}, - [4053] = {.lex_state = 271}, - [4054] = {.lex_state = 319}, - [4055] = {.lex_state = 277}, - [4056] = {.lex_state = 277}, - [4057] = {.lex_state = 277}, - [4058] = {.lex_state = 335}, - [4059] = {.lex_state = 277}, - [4060] = {.lex_state = 277}, - [4061] = {.lex_state = 289}, - [4062] = {.lex_state = 260}, - [4063] = {.lex_state = 270}, - [4064] = {.lex_state = 277}, - [4065] = {.lex_state = 333}, - [4066] = {.lex_state = 277}, - [4067] = {.lex_state = 324}, - [4068] = {.lex_state = 277}, - [4069] = {.lex_state = 279}, - [4070] = {.lex_state = 319}, - [4071] = {.lex_state = 258}, - [4072] = {.lex_state = 240}, - [4073] = {.lex_state = 277}, - [4074] = {.lex_state = 324}, - [4075] = {.lex_state = 320}, - [4076] = {.lex_state = 320}, - [4077] = {.lex_state = 277}, - [4078] = {.lex_state = 277}, - [4079] = {.lex_state = 258}, - [4080] = {.lex_state = 319}, - [4081] = {.lex_state = 260}, - [4082] = {.lex_state = 277}, - [4083] = {.lex_state = 324}, + [4051] = {.lex_state = 279}, + [4052] = {.lex_state = 252}, + [4053] = {.lex_state = 335}, + [4054] = {.lex_state = 334}, + [4055] = {.lex_state = 298}, + [4056] = {.lex_state = 334}, + [4057] = {.lex_state = 289}, + [4058] = {.lex_state = 316}, + [4059] = {.lex_state = 316}, + [4060] = {.lex_state = 316}, + [4061] = {.lex_state = 316}, + [4062] = {.lex_state = 316}, + [4063] = {.lex_state = 316}, + [4064] = {.lex_state = 316}, + [4065] = {.lex_state = 271}, + [4066] = {.lex_state = 279}, + [4067] = {.lex_state = 258}, + [4068] = {.lex_state = 279}, + [4069] = {.lex_state = 258}, + [4070] = {.lex_state = 333}, + [4071] = {.lex_state = 260}, + [4072] = {.lex_state = 279}, + [4073] = {.lex_state = 260}, + [4074] = {.lex_state = 270}, + [4075] = {.lex_state = 260}, + [4076] = {.lex_state = 247}, + [4077] = {.lex_state = 260}, + [4078] = {.lex_state = 316}, + [4079] = {.lex_state = 316}, + [4080] = {.lex_state = 277}, + [4081] = {.lex_state = 277}, + [4082] = {.lex_state = 322}, + [4083] = {.lex_state = 277}, [4084] = {.lex_state = 277}, - [4085] = {.lex_state = 316}, - [4086] = {.lex_state = 279}, - [4087] = {.lex_state = 279}, - [4088] = {.lex_state = 278}, + [4085] = {.lex_state = 277}, + [4086] = {.lex_state = 277}, + [4087] = {.lex_state = 277}, + [4088] = {.lex_state = 316}, [4089] = {.lex_state = 277}, - [4090] = {.lex_state = 301}, - [4091] = {.lex_state = 279}, - [4092] = {.lex_state = 319}, - [4093] = {.lex_state = 277}, - [4094] = {.lex_state = 324}, + [4090] = {.lex_state = 321}, + [4091] = {.lex_state = 277}, + [4092] = {.lex_state = 277}, + [4093] = {.lex_state = 321}, + [4094] = {.lex_state = 279}, [4095] = {.lex_state = 277}, - [4096] = {.lex_state = 333}, - [4097] = {.lex_state = 325}, - [4098] = {.lex_state = 277}, - [4099] = {.lex_state = 279}, - [4100] = {.lex_state = 319}, - [4101] = {.lex_state = 319}, + [4096] = {.lex_state = 277}, + [4097] = {.lex_state = 277}, + [4098] = {.lex_state = 279}, + [4099] = {.lex_state = 277}, + [4100] = {.lex_state = 277}, + [4101] = {.lex_state = 321}, [4102] = {.lex_state = 279}, [4103] = {.lex_state = 279}, - [4104] = {.lex_state = 258}, - [4105] = {.lex_state = 247}, - [4106] = {.lex_state = 277}, - [4107] = {.lex_state = 277}, + [4104] = {.lex_state = 279}, + [4105] = {.lex_state = 282}, + [4106] = {.lex_state = 282}, + [4107] = {.lex_state = 321}, [4108] = {.lex_state = 277}, - [4109] = {.lex_state = 339}, - [4110] = {.lex_state = 269}, - [4111] = {.lex_state = 277}, - [4112] = {.lex_state = 279}, - [4113] = {.lex_state = 319}, - [4114] = {.lex_state = 319}, - [4115] = {.lex_state = 277}, + [4109] = {.lex_state = 277}, + [4110] = {.lex_state = 279}, + [4111] = {.lex_state = 317}, + [4112] = {.lex_state = 317}, + [4113] = {.lex_state = 277}, + [4114] = {.lex_state = 277}, + [4115] = {.lex_state = 258}, [4116] = {.lex_state = 277}, - [4117] = {.lex_state = 319}, - [4118] = {.lex_state = 321}, + [4117] = {.lex_state = 277}, + [4118] = {.lex_state = 279}, [4119] = {.lex_state = 277}, - [4120] = {.lex_state = 288}, + [4120] = {.lex_state = 247}, [4121] = {.lex_state = 277}, - [4122] = {.lex_state = 277}, - [4123] = {.lex_state = 319}, - [4124] = {.lex_state = 289}, - [4125] = {.lex_state = 277}, - [4126] = {.lex_state = 334}, - [4127] = {.lex_state = 319}, - [4128] = {.lex_state = 277}, - [4129] = {.lex_state = 334}, + [4122] = {.lex_state = 279}, + [4123] = {.lex_state = 277}, + [4124] = {.lex_state = 320}, + [4125] = {.lex_state = 320}, + [4126] = {.lex_state = 277}, + [4127] = {.lex_state = 258}, + [4128] = {.lex_state = 297}, + [4129] = {.lex_state = 333}, [4130] = {.lex_state = 277}, [4131] = {.lex_state = 277}, [4132] = {.lex_state = 277}, - [4133] = {.lex_state = 252}, - [4134] = {.lex_state = 298}, - [4135] = {.lex_state = 279}, - [4136] = {.lex_state = 271}, - [4137] = {.lex_state = 258}, - [4138] = {.lex_state = 316}, - [4139] = {.lex_state = 279}, - [4140] = {.lex_state = 247}, - [4141] = {.lex_state = 277}, - [4142] = {.lex_state = 260}, - [4143] = {.lex_state = 279}, - [4144] = {.lex_state = 316}, - [4145] = {.lex_state = 260}, - [4146] = {.lex_state = 279}, - [4147] = {.lex_state = 277}, - [4148] = {.lex_state = 277}, - [4149] = {.lex_state = 271}, - [4150] = {.lex_state = 240}, - [4151] = {.lex_state = 334}, - [4152] = {.lex_state = 334}, - [4153] = {.lex_state = 334}, - [4154] = {.lex_state = 277}, - [4155] = {.lex_state = 280}, - [4156] = {.lex_state = 240}, - [4157] = {.lex_state = 271}, - [4158] = {.lex_state = 289}, - [4159] = {.lex_state = 271}, - [4160] = {.lex_state = 271}, - [4161] = {.lex_state = 298}, - [4162] = {.lex_state = 271}, - [4163] = {.lex_state = 271}, - [4164] = {.lex_state = 252}, - [4165] = {.lex_state = 271}, - [4166] = {.lex_state = 271}, - [4167] = {.lex_state = 289}, - [4168] = {.lex_state = 252}, - [4169] = {.lex_state = 240}, + [4133] = {.lex_state = 277}, + [4134] = {.lex_state = 279}, + [4135] = {.lex_state = 277}, + [4136] = {.lex_state = 277}, + [4137] = {.lex_state = 271}, + [4138] = {.lex_state = 240}, + [4139] = {.lex_state = 317}, + [4140] = {.lex_state = 277}, + [4141] = {.lex_state = 316}, + [4142] = {.lex_state = 317}, + [4143] = {.lex_state = 316}, + [4144] = {.lex_state = 277}, + [4145] = {.lex_state = 328}, + [4146] = {.lex_state = 240}, + [4147] = {.lex_state = 271}, + [4148] = {.lex_state = 240}, + [4149] = {.lex_state = 289}, + [4150] = {.lex_state = 280}, + [4151] = {.lex_state = 271}, + [4152] = {.lex_state = 240}, + [4153] = {.lex_state = 335}, + [4154] = {.lex_state = 335}, + [4155] = {.lex_state = 267}, + [4156] = {.lex_state = 277}, + [4157] = {.lex_state = 240}, + [4158] = {.lex_state = 240}, + [4159] = {.lex_state = 240}, + [4160] = {.lex_state = 240}, + [4161] = {.lex_state = 270}, + [4162] = {.lex_state = 240}, + [4163] = {.lex_state = 277}, + [4164] = {.lex_state = 328}, + [4165] = {.lex_state = 270}, + [4166] = {.lex_state = 240}, + [4167] = {.lex_state = 334}, + [4168] = {.lex_state = 334}, + [4169] = {.lex_state = 335}, [4170] = {.lex_state = 334}, - [4171] = {.lex_state = 289}, - [4172] = {.lex_state = 334}, - [4173] = {.lex_state = 240}, - [4174] = {.lex_state = 252}, - [4175] = {.lex_state = 252}, + [4171] = {.lex_state = 271}, + [4172] = {.lex_state = 335}, + [4173] = {.lex_state = 271}, + [4174] = {.lex_state = 271}, + [4175] = {.lex_state = 334}, [4176] = {.lex_state = 334}, - [4177] = {.lex_state = 240}, - [4178] = {.lex_state = 270}, - [4179] = {.lex_state = 270}, - [4180] = {.lex_state = 271}, + [4177] = {.lex_state = 271}, + [4178] = {.lex_state = 334}, + [4179] = {.lex_state = 271}, + [4180] = {.lex_state = 300}, [4181] = {.lex_state = 334}, [4182] = {.lex_state = 334}, - [4183] = {.lex_state = 277}, - [4184] = {.lex_state = 334}, - [4185] = {.lex_state = 334}, - [4186] = {.lex_state = 335}, - [4187] = {.lex_state = 277}, - [4188] = {.lex_state = 334}, - [4189] = {.lex_state = 240}, - [4190] = {.lex_state = 334}, - [4191] = {.lex_state = 240}, - [4192] = {.lex_state = 240}, - [4193] = {.lex_state = 240}, - [4194] = {.lex_state = 334}, + [4183] = {.lex_state = 298}, + [4184] = {.lex_state = 271}, + [4185] = {.lex_state = 271}, + [4186] = {.lex_state = 271}, + [4187] = {.lex_state = 271}, + [4188] = {.lex_state = 335}, + [4189] = {.lex_state = 335}, + [4190] = {.lex_state = 271}, + [4191] = {.lex_state = 271}, + [4192] = {.lex_state = 271}, + [4193] = {.lex_state = 271}, + [4194] = {.lex_state = 271}, [4195] = {.lex_state = 334}, - [4196] = {.lex_state = 240}, - [4197] = {.lex_state = 240}, - [4198] = {.lex_state = 240}, - [4199] = {.lex_state = 334}, - [4200] = {.lex_state = 335}, - [4201] = {.lex_state = 334}, - [4202] = {.lex_state = 334}, - [4203] = {.lex_state = 240}, - [4204] = {.lex_state = 319}, - [4205] = {.lex_state = 267}, - [4206] = {.lex_state = 335}, - [4207] = {.lex_state = 334}, - [4208] = {.lex_state = 334}, - [4209] = {.lex_state = 328}, - [4210] = {.lex_state = 334}, + [4196] = {.lex_state = 334}, + [4197] = {.lex_state = 289}, + [4198] = {.lex_state = 289}, + [4199] = {.lex_state = 271}, + [4200] = {.lex_state = 271}, + [4201] = {.lex_state = 271}, + [4202] = {.lex_state = 271}, + [4203] = {.lex_state = 271}, + [4204] = {.lex_state = 271}, + [4205] = {.lex_state = 271}, + [4206] = {.lex_state = 271}, + [4207] = {.lex_state = 277}, + [4208] = {.lex_state = 252}, + [4209] = {.lex_state = 334}, + [4210] = {.lex_state = 298}, [4211] = {.lex_state = 240}, - [4212] = {.lex_state = 334}, - [4213] = {.lex_state = 335}, - [4214] = {.lex_state = 240}, - [4215] = {.lex_state = 240}, - [4216] = {.lex_state = 335}, - [4217] = {.lex_state = 240}, - [4218] = {.lex_state = 240}, - [4219] = {.lex_state = 240}, - [4220] = {.lex_state = 335}, - [4221] = {.lex_state = 328}, - [4222] = {.lex_state = 240}, - [4223] = {.lex_state = 334}, - [4224] = {.lex_state = 334}, - [4225] = {.lex_state = 335}, - [4226] = {.lex_state = 240}, - [4227] = {.lex_state = 300}, - [4228] = {.lex_state = 335}, - [4229] = {.lex_state = 240}, - [4230] = {.lex_state = 271}, - [4231] = {.lex_state = 271}, - [4232] = {.lex_state = 271}, - [4233] = {.lex_state = 271}, - [4234] = {.lex_state = 271}, - [4235] = {.lex_state = 271}, - [4236] = {.lex_state = 271}, - [4237] = {.lex_state = 271}, - [4238] = {.lex_state = 271}, - [4239] = {.lex_state = 271}, - [4240] = {.lex_state = 271}, - [4241] = {.lex_state = 271}, - [4242] = {.lex_state = 271}, - [4243] = {.lex_state = 271}, - [4244] = {.lex_state = 271}, - [4245] = {.lex_state = 271}, - [4246] = {.lex_state = 328}, - [4247] = {.lex_state = 335}, - [4248] = {.lex_state = 335}, - [4249] = {.lex_state = 334}, + [4212] = {.lex_state = 240}, + [4213] = {.lex_state = 328}, + [4214] = {.lex_state = 334}, + [4215] = {.lex_state = 334}, + [4216] = {.lex_state = 240}, + [4217] = {.lex_state = 334}, + [4218] = {.lex_state = 334}, + [4219] = {.lex_state = 316}, + [4220] = {.lex_state = 240}, + [4221] = {.lex_state = 334}, + [4222] = {.lex_state = 277}, + [4223] = {.lex_state = 289}, + [4224] = {.lex_state = 240}, + [4225] = {.lex_state = 240}, + [4226] = {.lex_state = 334}, + [4227] = {.lex_state = 335}, + [4228] = {.lex_state = 334}, + [4229] = {.lex_state = 328}, + [4230] = {.lex_state = 240}, + [4231] = {.lex_state = 335}, + [4232] = {.lex_state = 334}, + [4233] = {.lex_state = 335}, + [4234] = {.lex_state = 240}, + [4235] = {.lex_state = 240}, + [4236] = {.lex_state = 335}, + [4237] = {.lex_state = 334}, + [4238] = {.lex_state = 335}, + [4239] = {.lex_state = 334}, + [4240] = {.lex_state = 334}, + [4241] = {.lex_state = 240}, + [4242] = {.lex_state = 334}, + [4243] = {.lex_state = 334}, + [4244] = {.lex_state = 334}, + [4245] = {.lex_state = 316}, + [4246] = {.lex_state = 320}, + [4247] = {.lex_state = 252}, + [4248] = {.lex_state = 334}, + [4249] = {.lex_state = 335}, [4250] = {.lex_state = 334}, - [4251] = {.lex_state = 298}, - [4252] = {.lex_state = 328}, - [4253] = {.lex_state = 335}, - [4254] = {.lex_state = 289}, - [4255] = {.lex_state = 334}, - [4256] = {.lex_state = 334}, - [4257] = {.lex_state = 289}, - [4258] = {.lex_state = 334}, - [4259] = {.lex_state = 334}, - [4260] = {.lex_state = 289}, - [4261] = {.lex_state = 334}, - [4262] = {.lex_state = 319}, - [4263] = {.lex_state = 277}, - [4264] = {.lex_state = 299}, - [4265] = {.lex_state = 335}, - [4266] = {.lex_state = 335}, - [4267] = {.lex_state = 320}, + [4251] = {.lex_state = 252}, + [4252] = {.lex_state = 334}, + [4253] = {.lex_state = 334}, + [4254] = {.lex_state = 334}, + [4255] = {.lex_state = 335}, + [4256] = {.lex_state = 240}, + [4257] = {.lex_state = 252}, + [4258] = {.lex_state = 271}, + [4259] = {.lex_state = 335}, + [4260] = {.lex_state = 299}, + [4261] = {.lex_state = 240}, + [4262] = {.lex_state = 289}, + [4263] = {.lex_state = 240}, + [4264] = {.lex_state = 334}, + [4265] = {.lex_state = 316}, + [4266] = {.lex_state = 267}, + [4267] = {.lex_state = 289}, [4268] = {.lex_state = 334}, - [4269] = {.lex_state = 267}, - [4270] = {.lex_state = 335}, - [4271] = {.lex_state = 334}, - [4272] = {.lex_state = 319}, - [4273] = {.lex_state = 335}, - [4274] = {.lex_state = 252}, - [4275] = {.lex_state = 290}, - [4276] = {.lex_state = 298}, - [4277] = {.lex_state = 252}, - [4278] = {.lex_state = 335}, - [4279] = {.lex_state = 277}, - [4280] = {.lex_state = 290}, - [4281] = {.lex_state = 270}, - [4282] = {.lex_state = 270}, - [4283] = {.lex_state = 298}, - [4284] = {.lex_state = 298}, - [4285] = {.lex_state = 298}, - [4286] = {.lex_state = 340}, - [4287] = {.lex_state = 270}, - [4288] = {.lex_state = 319}, - [4289] = {.lex_state = 289}, - [4290] = {.lex_state = 298}, - [4291] = {.lex_state = 319}, + [4269] = {.lex_state = 270}, + [4270] = {.lex_state = 290}, + [4271] = {.lex_state = 290}, + [4272] = {.lex_state = 298}, + [4273] = {.lex_state = 290}, + [4274] = {.lex_state = 335}, + [4275] = {.lex_state = 316}, + [4276] = {.lex_state = 290}, + [4277] = {.lex_state = 335}, + [4278] = {.lex_state = 316}, + [4279] = {.lex_state = 290}, + [4280] = {.lex_state = 277}, + [4281] = {.lex_state = 290}, + [4282] = {.lex_state = 252}, + [4283] = {.lex_state = 290}, + [4284] = {.lex_state = 280}, + [4285] = {.lex_state = 335}, + [4286] = {.lex_state = 335}, + [4287] = {.lex_state = 298}, + [4288] = {.lex_state = 298}, + [4289] = {.lex_state = 290}, + [4290] = {.lex_state = 316}, + [4291] = {.lex_state = 277}, [4292] = {.lex_state = 290}, - [4293] = {.lex_state = 252}, + [4293] = {.lex_state = 335}, [4294] = {.lex_state = 277}, - [4295] = {.lex_state = 290}, - [4296] = {.lex_state = 319}, - [4297] = {.lex_state = 280}, - [4298] = {.lex_state = 290}, - [4299] = {.lex_state = 290}, - [4300] = {.lex_state = 290}, - [4301] = {.lex_state = 290}, + [4295] = {.lex_state = 316}, + [4296] = {.lex_state = 270}, + [4297] = {.lex_state = 270}, + [4298] = {.lex_state = 277}, + [4299] = {.lex_state = 340}, + [4300] = {.lex_state = 277}, + [4301] = {.lex_state = 270}, [4302] = {.lex_state = 252}, - [4303] = {.lex_state = 277}, + [4303] = {.lex_state = 270}, [4304] = {.lex_state = 270}, - [4305] = {.lex_state = 319}, - [4306] = {.lex_state = 319}, - [4307] = {.lex_state = 270}, - [4308] = {.lex_state = 335}, - [4309] = {.lex_state = 277}, - [4310] = {.lex_state = 277}, - [4311] = {.lex_state = 290}, - [4312] = {.lex_state = 290}, - [4313] = {.lex_state = 319}, - [4314] = {.lex_state = 298}, - [4315] = {.lex_state = 335}, - [4316] = {.lex_state = 319}, - [4317] = {.lex_state = 270}, - [4318] = {.lex_state = 335}, - [4319] = {.lex_state = 277}, - [4320] = {.lex_state = 277}, - [4321] = {.lex_state = 319}, - [4322] = {.lex_state = 319}, - [4323] = {.lex_state = 335}, - [4324] = {.lex_state = 277}, - [4325] = {.lex_state = 279}, - [4326] = {.lex_state = 269}, - [4327] = {.lex_state = 291}, - [4328] = {.lex_state = 319}, + [4305] = {.lex_state = 316}, + [4306] = {.lex_state = 298}, + [4307] = {.lex_state = 298}, + [4308] = {.lex_state = 289}, + [4309] = {.lex_state = 252}, + [4310] = {.lex_state = 252}, + [4311] = {.lex_state = 316}, + [4312] = {.lex_state = 316}, + [4313] = {.lex_state = 316}, + [4314] = {.lex_state = 335}, + [4315] = {.lex_state = 298}, + [4316] = {.lex_state = 277}, + [4317] = {.lex_state = 277}, + [4318] = {.lex_state = 290}, + [4319] = {.lex_state = 316}, + [4320] = {.lex_state = 301}, + [4321] = {.lex_state = 269}, + [4322] = {.lex_state = 269}, + [4323] = {.lex_state = 290}, + [4324] = {.lex_state = 301}, + [4325] = {.lex_state = 301}, + [4326] = {.lex_state = 301}, + [4327] = {.lex_state = 288}, + [4328] = {.lex_state = 290}, [4329] = {.lex_state = 290}, - [4330] = {.lex_state = 338}, - [4331] = {.lex_state = 301}, - [4332] = {.lex_state = 247}, - [4333] = {.lex_state = 339}, - [4334] = {.lex_state = 338}, - [4335] = {.lex_state = 319}, - [4336] = {.lex_state = 335}, - [4337] = {.lex_state = 333}, - [4338] = {.lex_state = 247}, - [4339] = {.lex_state = 290}, - [4340] = {.lex_state = 319}, - [4341] = {.lex_state = 288}, - [4342] = {.lex_state = 319}, - [4343] = {.lex_state = 319}, + [4330] = {.lex_state = 316}, + [4331] = {.lex_state = 290}, + [4332] = {.lex_state = 335}, + [4333] = {.lex_state = 247}, + [4334] = {.lex_state = 316}, + [4335] = {.lex_state = 339}, + [4336] = {.lex_state = 247}, + [4337] = {.lex_state = 290}, + [4338] = {.lex_state = 316}, + [4339] = {.lex_state = 316}, + [4340] = {.lex_state = 247}, + [4341] = {.lex_state = 269}, + [4342] = {.lex_state = 279}, + [4343] = {.lex_state = 316}, [4344] = {.lex_state = 335}, - [4345] = {.lex_state = 290}, + [4345] = {.lex_state = 338}, [4346] = {.lex_state = 301}, - [4347] = {.lex_state = 290}, - [4348] = {.lex_state = 269}, + [4347] = {.lex_state = 316}, + [4348] = {.lex_state = 291}, [4349] = {.lex_state = 290}, - [4350] = {.lex_state = 319}, - [4351] = {.lex_state = 319}, + [4350] = {.lex_state = 269}, + [4351] = {.lex_state = 289}, [4352] = {.lex_state = 290}, - [4353] = {.lex_state = 301}, - [4354] = {.lex_state = 301}, - [4355] = {.lex_state = 301}, - [4356] = {.lex_state = 301}, + [4353] = {.lex_state = 289}, + [4354] = {.lex_state = 290}, + [4355] = {.lex_state = 316}, + [4356] = {.lex_state = 339}, [4357] = {.lex_state = 269}, - [4358] = {.lex_state = 319}, - [4359] = {.lex_state = 319}, - [4360] = {.lex_state = 339}, - [4361] = {.lex_state = 301}, - [4362] = {.lex_state = 247}, - [4363] = {.lex_state = 269}, + [4358] = {.lex_state = 301}, + [4359] = {.lex_state = 316}, + [4360] = {.lex_state = 269}, + [4361] = {.lex_state = 316}, + [4362] = {.lex_state = 316}, + [4363] = {.lex_state = 333}, [4364] = {.lex_state = 269}, [4365] = {.lex_state = 290}, - [4366] = {.lex_state = 269}, - [4367] = {.lex_state = 269}, - [4368] = {.lex_state = 291}, - [4369] = {.lex_state = 269}, - [4370] = {.lex_state = 319}, - [4371] = {.lex_state = 289}, - [4372] = {.lex_state = 290}, - [4373] = {.lex_state = 319}, - [4374] = {.lex_state = 335}, + [4366] = {.lex_state = 316}, + [4367] = {.lex_state = 338}, + [4368] = {.lex_state = 301}, + [4369] = {.lex_state = 291}, + [4370] = {.lex_state = 301}, + [4371] = {.lex_state = 339}, + [4372] = {.lex_state = 316}, + [4373] = {.lex_state = 277}, + [4374] = {.lex_state = 277}, [4375] = {.lex_state = 301}, - [4376] = {.lex_state = 319}, - [4377] = {.lex_state = 319}, - [4378] = {.lex_state = 319}, + [4376] = {.lex_state = 277}, + [4377] = {.lex_state = 277}, + [4378] = {.lex_state = 335}, [4379] = {.lex_state = 277}, [4380] = {.lex_state = 277}, - [4381] = {.lex_state = 289}, - [4382] = {.lex_state = 277}, - [4383] = {.lex_state = 290}, + [4381] = {.lex_state = 277}, + [4382] = {.lex_state = 269}, + [4383] = {.lex_state = 277}, [4384] = {.lex_state = 277}, [4385] = {.lex_state = 277}, [4386] = {.lex_state = 277}, - [4387] = {.lex_state = 339}, - [4388] = {.lex_state = 277}, - [4389] = {.lex_state = 277}, - [4390] = {.lex_state = 277}, - [4391] = {.lex_state = 277}, - [4392] = {.lex_state = 277}, - [4393] = {.lex_state = 247}, - [4394] = {.lex_state = 269}, - [4395] = {.lex_state = 339}, - [4396] = {.lex_state = 301}, - [4397] = {.lex_state = 290}, - [4398] = {.lex_state = 319}, - [4399] = {.lex_state = 315}, - [4400] = {.lex_state = 271}, - [4401] = {.lex_state = 271}, + [4387] = {.lex_state = 277}, + [4388] = {.lex_state = 290}, + [4389] = {.lex_state = 316}, + [4390] = {.lex_state = 269}, + [4391] = {.lex_state = 316}, + [4392] = {.lex_state = 247}, + [4393] = {.lex_state = 339}, + [4394] = {.lex_state = 271}, + [4395] = {.lex_state = 271}, + [4396] = {.lex_state = 271}, + [4397] = {.lex_state = 271}, + [4398] = {.lex_state = 271}, + [4399] = {.lex_state = 316}, + [4400] = {.lex_state = 289}, + [4401] = {.lex_state = 315}, [4402] = {.lex_state = 271}, - [4403] = {.lex_state = 271}, - [4404] = {.lex_state = 271}, - [4405] = {.lex_state = 319}, - [4406] = {.lex_state = 271}, - [4407] = {.lex_state = 271}, - [4408] = {.lex_state = 340}, - [4409] = {.lex_state = 340}, - [4410] = {.lex_state = 340}, - [4411] = {.lex_state = 271}, + [4403] = {.lex_state = 340}, + [4404] = {.lex_state = 289}, + [4405] = {.lex_state = 316}, + [4406] = {.lex_state = 340}, + [4407] = {.lex_state = 340}, + [4408] = {.lex_state = 315}, + [4409] = {.lex_state = 240}, + [4410] = {.lex_state = 315}, + [4411] = {.lex_state = 316}, [4412] = {.lex_state = 271}, [4413] = {.lex_state = 271}, [4414] = {.lex_state = 271}, - [4415] = {.lex_state = 315}, - [4416] = {.lex_state = 319}, - [4417] = {.lex_state = 319}, - [4418] = {.lex_state = 315}, - [4419] = {.lex_state = 271}, - [4420] = {.lex_state = 319}, - [4421] = {.lex_state = 271}, - [4422] = {.lex_state = 301}, - [4423] = {.lex_state = 319}, - [4424] = {.lex_state = 319}, - [4425] = {.lex_state = 271}, - [4426] = {.lex_state = 319}, - [4427] = {.lex_state = 319}, + [4415] = {.lex_state = 316}, + [4416] = {.lex_state = 303}, + [4417] = {.lex_state = 316}, + [4418] = {.lex_state = 316}, + [4419] = {.lex_state = 315}, + [4420] = {.lex_state = 316}, + [4421] = {.lex_state = 335}, + [4422] = {.lex_state = 316}, + [4423] = {.lex_state = 301}, + [4424] = {.lex_state = 316}, + [4425] = {.lex_state = 315}, + [4426] = {.lex_state = 301}, + [4427] = {.lex_state = 279}, [4428] = {.lex_state = 315}, - [4429] = {.lex_state = 319}, - [4430] = {.lex_state = 319}, - [4431] = {.lex_state = 271}, - [4432] = {.lex_state = 301}, - [4433] = {.lex_state = 319}, - [4434] = {.lex_state = 315}, - [4435] = {.lex_state = 315}, - [4436] = {.lex_state = 315}, + [4429] = {.lex_state = 303}, + [4430] = {.lex_state = 301}, + [4431] = {.lex_state = 301}, + [4432] = {.lex_state = 271}, + [4433] = {.lex_state = 315}, + [4434] = {.lex_state = 271}, + [4435] = {.lex_state = 271}, + [4436] = {.lex_state = 271}, [4437] = {.lex_state = 271}, [4438] = {.lex_state = 271}, - [4439] = {.lex_state = 315}, - [4440] = {.lex_state = 301}, - [4441] = {.lex_state = 289}, + [4439] = {.lex_state = 271}, + [4440] = {.lex_state = 271}, + [4441] = {.lex_state = 279}, [4442] = {.lex_state = 315}, [4443] = {.lex_state = 301}, - [4444] = {.lex_state = 302}, - [4445] = {.lex_state = 319}, - [4446] = {.lex_state = 319}, - [4447] = {.lex_state = 301}, - [4448] = {.lex_state = 319}, - [4449] = {.lex_state = 315}, - [4450] = {.lex_state = 315}, - [4451] = {.lex_state = 319}, - [4452] = {.lex_state = 319}, - [4453] = {.lex_state = 289}, - [4454] = {.lex_state = 240}, - [4455] = {.lex_state = 319}, - [4456] = {.lex_state = 319}, - [4457] = {.lex_state = 319}, - [4458] = {.lex_state = 319}, - [4459] = {.lex_state = 319}, - [4460] = {.lex_state = 340}, - [4461] = {.lex_state = 319}, - [4462] = {.lex_state = 319}, - [4463] = {.lex_state = 319}, - [4464] = {.lex_state = 319}, + [4444] = {.lex_state = 269}, + [4445] = {.lex_state = 315}, + [4446] = {.lex_state = 269}, + [4447] = {.lex_state = 315}, + [4448] = {.lex_state = 269}, + [4449] = {.lex_state = 269}, + [4450] = {.lex_state = 316}, + [4451] = {.lex_state = 269}, + [4452] = {.lex_state = 316}, + [4453] = {.lex_state = 315}, + [4454] = {.lex_state = 315}, + [4455] = {.lex_state = 315}, + [4456] = {.lex_state = 315}, + [4457] = {.lex_state = 271}, + [4458] = {.lex_state = 301}, + [4459] = {.lex_state = 315}, + [4460] = {.lex_state = 315}, + [4461] = {.lex_state = 335}, + [4462] = {.lex_state = 289}, + [4463] = {.lex_state = 289}, + [4464] = {.lex_state = 301}, [4465] = {.lex_state = 289}, - [4466] = {.lex_state = 319}, - [4467] = {.lex_state = 301}, + [4466] = {.lex_state = 289}, + [4467] = {.lex_state = 315}, [4468] = {.lex_state = 301}, - [4469] = {.lex_state = 319}, - [4470] = {.lex_state = 301}, - [4471] = {.lex_state = 301}, - [4472] = {.lex_state = 301}, - [4473] = {.lex_state = 315}, - [4474] = {.lex_state = 315}, - [4475] = {.lex_state = 269}, - [4476] = {.lex_state = 269}, - [4477] = {.lex_state = 269}, - [4478] = {.lex_state = 271}, - [4479] = {.lex_state = 289}, - [4480] = {.lex_state = 335}, - [4481] = {.lex_state = 269}, - [4482] = {.lex_state = 271}, - [4483] = {.lex_state = 279}, + [4469] = {.lex_state = 301}, + [4470] = {.lex_state = 340}, + [4471] = {.lex_state = 302}, + [4472] = {.lex_state = 315}, + [4473] = {.lex_state = 271}, + [4474] = {.lex_state = 301}, + [4475] = {.lex_state = 316}, + [4476] = {.lex_state = 316}, + [4477] = {.lex_state = 316}, + [4478] = {.lex_state = 289}, + [4479] = {.lex_state = 316}, + [4480] = {.lex_state = 289}, + [4481] = {.lex_state = 271}, + [4482] = {.lex_state = 316}, + [4483] = {.lex_state = 271}, [4484] = {.lex_state = 271}, - [4485] = {.lex_state = 279}, - [4486] = {.lex_state = 289}, - [4487] = {.lex_state = 303}, - [4488] = {.lex_state = 289}, - [4489] = {.lex_state = 271}, - [4490] = {.lex_state = 289}, - [4491] = {.lex_state = 271}, + [4485] = {.lex_state = 271}, + [4486] = {.lex_state = 316}, + [4487] = {.lex_state = 269}, + [4488] = {.lex_state = 315}, + [4489] = {.lex_state = 315}, + [4490] = {.lex_state = 316}, + [4491] = {.lex_state = 269}, [4492] = {.lex_state = 271}, - [4493] = {.lex_state = 271}, - [4494] = {.lex_state = 319}, - [4495] = {.lex_state = 315}, - [4496] = {.lex_state = 289}, - [4497] = {.lex_state = 289}, + [4493] = {.lex_state = 316}, + [4494] = {.lex_state = 269}, + [4495] = {.lex_state = 269}, + [4496] = {.lex_state = 316}, + [4497] = {.lex_state = 269}, [4498] = {.lex_state = 271}, - [4499] = {.lex_state = 271}, - [4500] = {.lex_state = 271}, - [4501] = {.lex_state = 315}, - [4502] = {.lex_state = 315}, - [4503] = {.lex_state = 315}, - [4504] = {.lex_state = 335}, - [4505] = {.lex_state = 303}, - [4506] = {.lex_state = 319}, - [4507] = {.lex_state = 340}, - [4508] = {.lex_state = 340}, - [4509] = {.lex_state = 335}, - [4510] = {.lex_state = 340}, - [4511] = {.lex_state = 302}, - [4512] = {.lex_state = 289}, - [4513] = {.lex_state = 319}, - [4514] = {.lex_state = 335}, - [4515] = {.lex_state = 269}, - [4516] = {.lex_state = 271}, - [4517] = {.lex_state = 319}, - [4518] = {.lex_state = 271}, - [4519] = {.lex_state = 271}, - [4520] = {.lex_state = 271}, - [4521] = {.lex_state = 271}, - [4522] = {.lex_state = 271}, - [4523] = {.lex_state = 271}, + [4499] = {.lex_state = 335}, + [4500] = {.lex_state = 316}, + [4501] = {.lex_state = 316}, + [4502] = {.lex_state = 316}, + [4503] = {.lex_state = 316}, + [4504] = {.lex_state = 340}, + [4505] = {.lex_state = 335}, + [4506] = {.lex_state = 340}, + [4507] = {.lex_state = 315}, + [4508] = {.lex_state = 271}, + [4509] = {.lex_state = 271}, + [4510] = {.lex_state = 271}, + [4511] = {.lex_state = 271}, + [4512] = {.lex_state = 271}, + [4513] = {.lex_state = 271}, + [4514] = {.lex_state = 271}, + [4515] = {.lex_state = 271}, + [4516] = {.lex_state = 340}, + [4517] = {.lex_state = 316}, + [4518] = {.lex_state = 289}, + [4519] = {.lex_state = 316}, + [4520] = {.lex_state = 316}, + [4521] = {.lex_state = 316}, + [4522] = {.lex_state = 316}, + [4523] = {.lex_state = 316}, [4524] = {.lex_state = 271}, - [4525] = {.lex_state = 271}, - [4526] = {.lex_state = 319}, - [4527] = {.lex_state = 315}, - [4528] = {.lex_state = 315}, - [4529] = {.lex_state = 319}, - [4530] = {.lex_state = 319}, - [4531] = {.lex_state = 319}, - [4532] = {.lex_state = 269}, - [4533] = {.lex_state = 315}, - [4534] = {.lex_state = 269}, - [4535] = {.lex_state = 269}, - [4536] = {.lex_state = 269}, - [4537] = {.lex_state = 271}, - [4538] = {.lex_state = 271}, - [4539] = {.lex_state = 319}, - [4540] = {.lex_state = 319}, - [4541] = {.lex_state = 271}, - [4542] = {.lex_state = 271}, - [4543] = {.lex_state = 319}, - [4544] = {.lex_state = 319}, - [4545] = {.lex_state = 315}, - [4546] = {.lex_state = 271}, - [4547] = {.lex_state = 271}, - [4548] = {.lex_state = 271}, - [4549] = {.lex_state = 269}, - [4550] = {.lex_state = 279}, - [4551] = {.lex_state = 273}, - [4552] = {.lex_state = 290}, - [4553] = {.lex_state = 290}, - [4554] = {.lex_state = 270}, - [4555] = {.lex_state = 340}, + [4525] = {.lex_state = 289}, + [4526] = {.lex_state = 316}, + [4527] = {.lex_state = 316}, + [4528] = {.lex_state = 271}, + [4529] = {.lex_state = 271}, + [4530] = {.lex_state = 271}, + [4531] = {.lex_state = 271}, + [4532] = {.lex_state = 271}, + [4533] = {.lex_state = 271}, + [4534] = {.lex_state = 271}, + [4535] = {.lex_state = 316}, + [4536] = {.lex_state = 271}, + [4537] = {.lex_state = 302}, + [4538] = {.lex_state = 316}, + [4539] = {.lex_state = 316}, + [4540] = {.lex_state = 316}, + [4541] = {.lex_state = 316}, + [4542] = {.lex_state = 316}, + [4543] = {.lex_state = 316}, + [4544] = {.lex_state = 316}, + [4545] = {.lex_state = 271}, + [4546] = {.lex_state = 273}, + [4547] = {.lex_state = 321}, + [4548] = {.lex_state = 321}, + [4549] = {.lex_state = 285}, + [4550] = {.lex_state = 335}, + [4551] = {.lex_state = 285}, + [4552] = {.lex_state = 285}, + [4553] = {.lex_state = 321}, + [4554] = {.lex_state = 317}, + [4555] = {.lex_state = 270}, [4556] = {.lex_state = 270}, - [4557] = {.lex_state = 285}, - [4558] = {.lex_state = 324}, - [4559] = {.lex_state = 270}, - [4560] = {.lex_state = 290}, - [4561] = {.lex_state = 285}, - [4562] = {.lex_state = 338}, - [4563] = {.lex_state = 270}, - [4564] = {.lex_state = 338}, - [4565] = {.lex_state = 338}, - [4566] = {.lex_state = 298}, - [4567] = {.lex_state = 279}, - [4568] = {.lex_state = 290}, - [4569] = {.lex_state = 324}, - [4570] = {.lex_state = 279}, + [4557] = {.lex_state = 317}, + [4558] = {.lex_state = 338}, + [4559] = {.lex_state = 290}, + [4560] = {.lex_state = 315}, + [4561] = {.lex_state = 290}, + [4562] = {.lex_state = 290}, + [4563] = {.lex_state = 290}, + [4564] = {.lex_state = 290}, + [4565] = {.lex_state = 279}, + [4566] = {.lex_state = 279}, + [4567] = {.lex_state = 290}, + [4568] = {.lex_state = 317}, + [4569] = {.lex_state = 317}, + [4570] = {.lex_state = 335}, [4571] = {.lex_state = 290}, [4572] = {.lex_state = 290}, - [4573] = {.lex_state = 285}, - [4574] = {.lex_state = 316}, - [4575] = {.lex_state = 316}, + [4573] = {.lex_state = 316}, + [4574] = {.lex_state = 290}, + [4575] = {.lex_state = 290}, [4576] = {.lex_state = 290}, - [4577] = {.lex_state = 316}, - [4578] = {.lex_state = 335}, - [4579] = {.lex_state = 290}, - [4580] = {.lex_state = 273}, - [4581] = {.lex_state = 279}, - [4582] = {.lex_state = 335}, - [4583] = {.lex_state = 324}, - [4584] = {.lex_state = 324}, - [4585] = {.lex_state = 324}, - [4586] = {.lex_state = 338}, - [4587] = {.lex_state = 298}, - [4588] = {.lex_state = 324}, - [4589] = {.lex_state = 290}, - [4590] = {.lex_state = 290}, - [4591] = {.lex_state = 290}, - [4592] = {.lex_state = 279}, - [4593] = {.lex_state = 279}, - [4594] = {.lex_state = 315}, + [4577] = {.lex_state = 335}, + [4578] = {.lex_state = 340}, + [4579] = {.lex_state = 317}, + [4580] = {.lex_state = 285}, + [4581] = {.lex_state = 290}, + [4582] = {.lex_state = 321}, + [4583] = {.lex_state = 279}, + [4584] = {.lex_state = 279}, + [4585] = {.lex_state = 279}, + [4586] = {.lex_state = 270}, + [4587] = {.lex_state = 279}, + [4588] = {.lex_state = 279}, + [4589] = {.lex_state = 335}, + [4590] = {.lex_state = 273}, + [4591] = {.lex_state = 270}, + [4592] = {.lex_state = 317}, + [4593] = {.lex_state = 273}, + [4594] = {.lex_state = 285}, [4595] = {.lex_state = 290}, - [4596] = {.lex_state = 273}, - [4597] = {.lex_state = 279}, - [4598] = {.lex_state = 279}, - [4599] = {.lex_state = 290}, - [4600] = {.lex_state = 279}, - [4601] = {.lex_state = 335}, - [4602] = {.lex_state = 290}, - [4603] = {.lex_state = 279}, - [4604] = {.lex_state = 335}, - [4605] = {.lex_state = 285}, + [4596] = {.lex_state = 298}, + [4597] = {.lex_state = 335}, + [4598] = {.lex_state = 290}, + [4599] = {.lex_state = 298}, + [4600] = {.lex_state = 290}, + [4601] = {.lex_state = 277}, + [4602] = {.lex_state = 273}, + [4603] = {.lex_state = 285}, + [4604] = {.lex_state = 279}, + [4605] = {.lex_state = 338}, [4606] = {.lex_state = 279}, - [4607] = {.lex_state = 290}, - [4608] = {.lex_state = 316}, - [4609] = {.lex_state = 335}, + [4607] = {.lex_state = 298}, + [4608] = {.lex_state = 338}, + [4609] = {.lex_state = 340}, [4610] = {.lex_state = 290}, - [4611] = {.lex_state = 340}, - [4612] = {.lex_state = 315}, - [4613] = {.lex_state = 338}, - [4614] = {.lex_state = 298}, - [4615] = {.lex_state = 290}, - [4616] = {.lex_state = 285}, - [4617] = {.lex_state = 298}, - [4618] = {.lex_state = 273}, - [4619] = {.lex_state = 290}, - [4620] = {.lex_state = 285}, - [4621] = {.lex_state = 285}, - [4622] = {.lex_state = 277}, - [4623] = {.lex_state = 290}, - [4624] = {.lex_state = 316}, - [4625] = {.lex_state = 279}, - [4626] = {.lex_state = 335}, - [4627] = {.lex_state = 319}, - [4628] = {.lex_state = 316}, - [4629] = {.lex_state = 335}, - [4630] = {.lex_state = 285}, - [4631] = {.lex_state = 271}, - [4632] = {.lex_state = 271}, - [4633] = {.lex_state = 271}, + [4611] = {.lex_state = 335}, + [4612] = {.lex_state = 321}, + [4613] = {.lex_state = 315}, + [4614] = {.lex_state = 338}, + [4615] = {.lex_state = 285}, + [4616] = {.lex_state = 338}, + [4617] = {.lex_state = 335}, + [4618] = {.lex_state = 290}, + [4619] = {.lex_state = 279}, + [4620] = {.lex_state = 279}, + [4621] = {.lex_state = 321}, + [4622] = {.lex_state = 290}, + [4623] = {.lex_state = 298}, + [4624] = {.lex_state = 279}, + [4625] = {.lex_state = 290}, + [4626] = {.lex_state = 289}, + [4627] = {.lex_state = 285}, + [4628] = {.lex_state = 290}, + [4629] = {.lex_state = 290}, + [4630] = {.lex_state = 290}, + [4631] = {.lex_state = 290}, + [4632] = {.lex_state = 301}, + [4633] = {.lex_state = 289}, [4634] = {.lex_state = 271}, - [4635] = {.lex_state = 290}, + [4635] = {.lex_state = 335}, [4636] = {.lex_state = 285}, - [4637] = {.lex_state = 271}, - [4638] = {.lex_state = 271}, - [4639] = {.lex_state = 290}, - [4640] = {.lex_state = 289}, - [4641] = {.lex_state = 285}, - [4642] = {.lex_state = 290}, - [4643] = {.lex_state = 271}, - [4644] = {.lex_state = 277}, - [4645] = {.lex_state = 285}, - [4646] = {.lex_state = 289}, - [4647] = {.lex_state = 290}, - [4648] = {.lex_state = 279}, - [4649] = {.lex_state = 279}, + [4637] = {.lex_state = 335}, + [4638] = {.lex_state = 335}, + [4639] = {.lex_state = 335}, + [4640] = {.lex_state = 316}, + [4641] = {.lex_state = 335}, + [4642] = {.lex_state = 277}, + [4643] = {.lex_state = 290}, + [4644] = {.lex_state = 279}, + [4645] = {.lex_state = 289}, + [4646] = {.lex_state = 269}, + [4647] = {.lex_state = 285}, + [4648] = {.lex_state = 271}, + [4649] = {.lex_state = 291}, [4650] = {.lex_state = 285}, - [4651] = {.lex_state = 290}, - [4652] = {.lex_state = 271}, - [4653] = {.lex_state = 269}, - [4654] = {.lex_state = 335}, - [4655] = {.lex_state = 285}, - [4656] = {.lex_state = 291}, - [4657] = {.lex_state = 285}, - [4658] = {.lex_state = 271}, - [4659] = {.lex_state = 269}, - [4660] = {.lex_state = 290}, - [4661] = {.lex_state = 285}, - [4662] = {.lex_state = 319}, - [4663] = {.lex_state = 290}, - [4664] = {.lex_state = 290}, - [4665] = {.lex_state = 290}, - [4666] = {.lex_state = 278}, - [4667] = {.lex_state = 285}, - [4668] = {.lex_state = 335}, - [4669] = {.lex_state = 290}, - [4670] = {.lex_state = 289}, + [4651] = {.lex_state = 285}, + [4652] = {.lex_state = 289}, + [4653] = {.lex_state = 285}, + [4654] = {.lex_state = 271}, + [4655] = {.lex_state = 277}, + [4656] = {.lex_state = 269}, + [4657] = {.lex_state = 335}, + [4658] = {.lex_state = 289}, + [4659] = {.lex_state = 335}, + [4660] = {.lex_state = 277}, + [4661] = {.lex_state = 290}, + [4662] = {.lex_state = 285}, + [4663] = {.lex_state = 301}, + [4664] = {.lex_state = 271}, + [4665] = {.lex_state = 285}, + [4666] = {.lex_state = 335}, + [4667] = {.lex_state = 291}, + [4668] = {.lex_state = 290}, + [4669] = {.lex_state = 301}, + [4670] = {.lex_state = 297}, [4671] = {.lex_state = 335}, - [4672] = {.lex_state = 279}, - [4673] = {.lex_state = 319}, - [4674] = {.lex_state = 335}, + [4672] = {.lex_state = 290}, + [4673] = {.lex_state = 271}, + [4674] = {.lex_state = 269}, [4675] = {.lex_state = 285}, - [4676] = {.lex_state = 335}, - [4677] = {.lex_state = 290}, - [4678] = {.lex_state = 285}, - [4679] = {.lex_state = 301}, - [4680] = {.lex_state = 269}, - [4681] = {.lex_state = 285}, - [4682] = {.lex_state = 269}, - [4683] = {.lex_state = 335}, + [4676] = {.lex_state = 279}, + [4677] = {.lex_state = 335}, + [4678] = {.lex_state = 271}, + [4679] = {.lex_state = 290}, + [4680] = {.lex_state = 335}, + [4681] = {.lex_state = 335}, + [4682] = {.lex_state = 279}, + [4683] = {.lex_state = 285}, [4684] = {.lex_state = 285}, - [4685] = {.lex_state = 285}, - [4686] = {.lex_state = 269}, + [4685] = {.lex_state = 335}, + [4686] = {.lex_state = 285}, [4687] = {.lex_state = 271}, - [4688] = {.lex_state = 285}, - [4689] = {.lex_state = 277}, - [4690] = {.lex_state = 319}, - [4691] = {.lex_state = 277}, + [4688] = {.lex_state = 289}, + [4689] = {.lex_state = 285}, + [4690] = {.lex_state = 279}, + [4691] = {.lex_state = 335}, [4692] = {.lex_state = 285}, - [4693] = {.lex_state = 301}, + [4693] = {.lex_state = 277}, [4694] = {.lex_state = 285}, - [4695] = {.lex_state = 285}, - [4696] = {.lex_state = 285}, - [4697] = {.lex_state = 297}, - [4698] = {.lex_state = 278}, - [4699] = {.lex_state = 301}, - [4700] = {.lex_state = 335}, - [4701] = {.lex_state = 335}, - [4702] = {.lex_state = 290}, - [4703] = {.lex_state = 269}, - [4704] = {.lex_state = 289}, - [4705] = {.lex_state = 301}, - [4706] = {.lex_state = 279}, - [4707] = {.lex_state = 285}, - [4708] = {.lex_state = 291}, + [4695] = {.lex_state = 335}, + [4696] = {.lex_state = 290}, + [4697] = {.lex_state = 335}, + [4698] = {.lex_state = 290}, + [4699] = {.lex_state = 285}, + [4700] = {.lex_state = 289}, + [4701] = {.lex_state = 285}, + [4702] = {.lex_state = 269}, + [4703] = {.lex_state = 285}, + [4704] = {.lex_state = 285}, + [4705] = {.lex_state = 290}, + [4706] = {.lex_state = 285}, + [4707] = {.lex_state = 271}, + [4708] = {.lex_state = 316}, [4709] = {.lex_state = 271}, - [4710] = {.lex_state = 269}, - [4711] = {.lex_state = 339}, - [4712] = {.lex_state = 289}, - [4713] = {.lex_state = 279}, - [4714] = {.lex_state = 319}, + [4710] = {.lex_state = 285}, + [4711] = {.lex_state = 285}, + [4712] = {.lex_state = 271}, + [4713] = {.lex_state = 271}, + [4714] = {.lex_state = 271}, [4715] = {.lex_state = 290}, - [4716] = {.lex_state = 301}, - [4717] = {.lex_state = 271}, - [4718] = {.lex_state = 335}, + [4716] = {.lex_state = 339}, + [4717] = {.lex_state = 285}, + [4718] = {.lex_state = 271}, [4719] = {.lex_state = 271}, - [4720] = {.lex_state = 285}, - [4721] = {.lex_state = 289}, + [4720] = {.lex_state = 271}, + [4721] = {.lex_state = 279}, [4722] = {.lex_state = 335}, - [4723] = {.lex_state = 290}, - [4724] = {.lex_state = 301}, - [4725] = {.lex_state = 319}, + [4723] = {.lex_state = 271}, + [4724] = {.lex_state = 290}, + [4725] = {.lex_state = 290}, [4726] = {.lex_state = 271}, - [4727] = {.lex_state = 271}, - [4728] = {.lex_state = 285}, - [4729] = {.lex_state = 290}, - [4730] = {.lex_state = 335}, - [4731] = {.lex_state = 335}, - [4732] = {.lex_state = 269}, - [4733] = {.lex_state = 271}, - [4734] = {.lex_state = 301}, - [4735] = {.lex_state = 339}, - [4736] = {.lex_state = 335}, + [4727] = {.lex_state = 339}, + [4728] = {.lex_state = 271}, + [4729] = {.lex_state = 269}, + [4730] = {.lex_state = 290}, + [4731] = {.lex_state = 290}, + [4732] = {.lex_state = 285}, + [4733] = {.lex_state = 289}, + [4734] = {.lex_state = 285}, + [4735] = {.lex_state = 316}, + [4736] = {.lex_state = 277}, [4737] = {.lex_state = 269}, - [4738] = {.lex_state = 301}, - [4739] = {.lex_state = 271}, - [4740] = {.lex_state = 290}, - [4741] = {.lex_state = 335}, - [4742] = {.lex_state = 271}, + [4738] = {.lex_state = 271}, + [4739] = {.lex_state = 301}, + [4740] = {.lex_state = 301}, + [4741] = {.lex_state = 269}, + [4742] = {.lex_state = 269}, [4743] = {.lex_state = 301}, - [4744] = {.lex_state = 301}, - [4745] = {.lex_state = 285}, - [4746] = {.lex_state = 289}, - [4747] = {.lex_state = 285}, - [4748] = {.lex_state = 271}, - [4749] = {.lex_state = 290}, - [4750] = {.lex_state = 271}, - [4751] = {.lex_state = 285}, - [4752] = {.lex_state = 277}, - [4753] = {.lex_state = 285}, - [4754] = {.lex_state = 335}, - [4755] = {.lex_state = 279}, - [4756] = {.lex_state = 335}, - [4757] = {.lex_state = 290}, - [4758] = {.lex_state = 277}, - [4759] = {.lex_state = 289}, - [4760] = {.lex_state = 335}, - [4761] = {.lex_state = 269}, - [4762] = {.lex_state = 290}, + [4744] = {.lex_state = 269}, + [4745] = {.lex_state = 301}, + [4746] = {.lex_state = 316}, + [4747] = {.lex_state = 301}, + [4748] = {.lex_state = 279}, + [4749] = {.lex_state = 269}, + [4750] = {.lex_state = 290}, + [4751] = {.lex_state = 278}, + [4752] = {.lex_state = 285}, + [4753] = {.lex_state = 278}, + [4754] = {.lex_state = 301}, + [4755] = {.lex_state = 316}, + [4756] = {.lex_state = 271}, + [4757] = {.lex_state = 301}, + [4758] = {.lex_state = 266}, + [4759] = {.lex_state = 290}, + [4760] = {.lex_state = 289}, + [4761] = {.lex_state = 301}, + [4762] = {.lex_state = 335}, [4763] = {.lex_state = 335}, - [4764] = {.lex_state = 234}, - [4765] = {.lex_state = 269}, - [4766] = {.lex_state = 340}, - [4767] = {.lex_state = 247}, - [4768] = {.lex_state = 290}, - [4769] = {.lex_state = 289}, - [4770] = {.lex_state = 298}, - [4771] = {.lex_state = 290}, - [4772] = {.lex_state = 340}, - [4773] = {.lex_state = 340}, - [4774] = {.lex_state = 234}, - [4775] = {.lex_state = 290}, - [4776] = {.lex_state = 335}, - [4777] = {.lex_state = 271}, - [4778] = {.lex_state = 280}, - [4779] = {.lex_state = 340}, - [4780] = {.lex_state = 335}, + [4764] = {.lex_state = 289}, + [4765] = {.lex_state = 285}, + [4766] = {.lex_state = 290}, + [4767] = {.lex_state = 335}, + [4768] = {.lex_state = 285}, + [4769] = {.lex_state = 290}, + [4770] = {.lex_state = 289}, + [4771] = {.lex_state = 271}, + [4772] = {.lex_state = 285}, + [4773] = {.lex_state = 269}, + [4774] = {.lex_state = 271}, + [4775] = {.lex_state = 271}, + [4776] = {.lex_state = 285}, + [4777] = {.lex_state = 270}, + [4778] = {.lex_state = 290}, + [4779] = {.lex_state = 290}, + [4780] = {.lex_state = 301}, [4781] = {.lex_state = 285}, - [4782] = {.lex_state = 285}, - [4783] = {.lex_state = 271}, - [4784] = {.lex_state = 234}, + [4782] = {.lex_state = 316}, + [4783] = {.lex_state = 335}, + [4784] = {.lex_state = 277}, [4785] = {.lex_state = 266}, - [4786] = {.lex_state = 290}, - [4787] = {.lex_state = 271}, - [4788] = {.lex_state = 271}, - [4789] = {.lex_state = 270}, - [4790] = {.lex_state = 234}, - [4791] = {.lex_state = 290}, - [4792] = {.lex_state = 271}, - [4793] = {.lex_state = 335}, - [4794] = {.lex_state = 271}, + [4786] = {.lex_state = 335}, + [4787] = {.lex_state = 340}, + [4788] = {.lex_state = 269}, + [4789] = {.lex_state = 234}, + [4790] = {.lex_state = 285}, + [4791] = {.lex_state = 298}, + [4792] = {.lex_state = 297}, + [4793] = {.lex_state = 285}, + [4794] = {.lex_state = 335}, [4795] = {.lex_state = 335}, - [4796] = {.lex_state = 340}, - [4797] = {.lex_state = 271}, - [4798] = {.lex_state = 271}, - [4799] = {.lex_state = 335}, - [4800] = {.lex_state = 301}, - [4801] = {.lex_state = 271}, - [4802] = {.lex_state = 340}, - [4803] = {.lex_state = 285}, - [4804] = {.lex_state = 271}, - [4805] = {.lex_state = 271}, - [4806] = {.lex_state = 340}, - [4807] = {.lex_state = 271}, - [4808] = {.lex_state = 271}, + [4796] = {.lex_state = 335}, + [4797] = {.lex_state = 247}, + [4798] = {.lex_state = 335}, + [4799] = {.lex_state = 271}, + [4800] = {.lex_state = 290}, + [4801] = {.lex_state = 340}, + [4802] = {.lex_state = 335}, + [4803] = {.lex_state = 290}, + [4804] = {.lex_state = 285}, + [4805] = {.lex_state = 297}, + [4806] = {.lex_state = 335}, + [4807] = {.lex_state = 289}, + [4808] = {.lex_state = 335}, [4809] = {.lex_state = 271}, - [4810] = {.lex_state = 290}, - [4811] = {.lex_state = 289}, - [4812] = {.lex_state = 335}, - [4813] = {.lex_state = 290}, - [4814] = {.lex_state = 285}, + [4810] = {.lex_state = 297}, + [4811] = {.lex_state = 297}, + [4812] = {.lex_state = 285}, + [4813] = {.lex_state = 335}, + [4814] = {.lex_state = 271}, [4815] = {.lex_state = 335}, - [4816] = {.lex_state = 290}, - [4817] = {.lex_state = 271}, - [4818] = {.lex_state = 234}, - [4819] = {.lex_state = 271}, - [4820] = {.lex_state = 335}, + [4816] = {.lex_state = 271}, + [4817] = {.lex_state = 280}, + [4818] = {.lex_state = 290}, + [4819] = {.lex_state = 335}, + [4820] = {.lex_state = 290}, [4821] = {.lex_state = 285}, [4822] = {.lex_state = 290}, - [4823] = {.lex_state = 269}, - [4824] = {.lex_state = 335}, + [4823] = {.lex_state = 297}, + [4824] = {.lex_state = 290}, [4825] = {.lex_state = 290}, [4826] = {.lex_state = 285}, - [4827] = {.lex_state = 289}, - [4828] = {.lex_state = 271}, - [4829] = {.lex_state = 285}, - [4830] = {.lex_state = 335}, - [4831] = {.lex_state = 285}, - [4832] = {.lex_state = 290}, - [4833] = {.lex_state = 290}, + [4827] = {.lex_state = 290}, + [4828] = {.lex_state = 285}, + [4829] = {.lex_state = 335}, + [4830] = {.lex_state = 290}, + [4831] = {.lex_state = 335}, + [4832] = {.lex_state = 285}, + [4833] = {.lex_state = 335}, [4834] = {.lex_state = 285}, - [4835] = {.lex_state = 285}, + [4835] = {.lex_state = 271}, [4836] = {.lex_state = 335}, - [4837] = {.lex_state = 298}, + [4837] = {.lex_state = 290}, [4838] = {.lex_state = 335}, - [4839] = {.lex_state = 271}, + [4839] = {.lex_state = 335}, [4840] = {.lex_state = 290}, [4841] = {.lex_state = 285}, - [4842] = {.lex_state = 335}, - [4843] = {.lex_state = 301}, - [4844] = {.lex_state = 247}, - [4845] = {.lex_state = 271}, + [4842] = {.lex_state = 290}, + [4843] = {.lex_state = 298}, + [4844] = {.lex_state = 335}, + [4845] = {.lex_state = 285}, [4846] = {.lex_state = 285}, - [4847] = {.lex_state = 290}, - [4848] = {.lex_state = 285}, - [4849] = {.lex_state = 269}, - [4850] = {.lex_state = 266}, + [4847] = {.lex_state = 271}, + [4848] = {.lex_state = 290}, + [4849] = {.lex_state = 271}, + [4850] = {.lex_state = 271}, [4851] = {.lex_state = 290}, [4852] = {.lex_state = 335}, - [4853] = {.lex_state = 285}, - [4854] = {.lex_state = 270}, - [4855] = {.lex_state = 285}, - [4856] = {.lex_state = 290}, - [4857] = {.lex_state = 285}, + [4853] = {.lex_state = 297}, + [4854] = {.lex_state = 271}, + [4855] = {.lex_state = 335}, + [4856] = {.lex_state = 271}, + [4857] = {.lex_state = 271}, [4858] = {.lex_state = 285}, - [4859] = {.lex_state = 298}, + [4859] = {.lex_state = 271}, [4860] = {.lex_state = 285}, - [4861] = {.lex_state = 340}, - [4862] = {.lex_state = 335}, - [4863] = {.lex_state = 335}, - [4864] = {.lex_state = 285}, - [4865] = {.lex_state = 285}, - [4866] = {.lex_state = 285}, - [4867] = {.lex_state = 319}, - [4868] = {.lex_state = 335}, - [4869] = {.lex_state = 298}, - [4870] = {.lex_state = 335}, - [4871] = {.lex_state = 285}, + [4861] = {.lex_state = 335}, + [4862] = {.lex_state = 298}, + [4863] = {.lex_state = 285}, + [4864] = {.lex_state = 335}, + [4865] = {.lex_state = 335}, + [4866] = {.lex_state = 271}, + [4867] = {.lex_state = 285}, + [4868] = {.lex_state = 285}, + [4869] = {.lex_state = 290}, + [4870] = {.lex_state = 285}, + [4871] = {.lex_state = 269}, [4872] = {.lex_state = 298}, - [4873] = {.lex_state = 335}, - [4874] = {.lex_state = 290}, - [4875] = {.lex_state = 271}, + [4873] = {.lex_state = 285}, + [4874] = {.lex_state = 285}, + [4875] = {.lex_state = 290}, [4876] = {.lex_state = 285}, - [4877] = {.lex_state = 290}, - [4878] = {.lex_state = 285}, + [4877] = {.lex_state = 285}, + [4878] = {.lex_state = 290}, [4879] = {.lex_state = 285}, - [4880] = {.lex_state = 335}, - [4881] = {.lex_state = 301}, + [4880] = {.lex_state = 270}, + [4881] = {.lex_state = 285}, [4882] = {.lex_state = 285}, - [4883] = {.lex_state = 340}, - [4884] = {.lex_state = 335}, - [4885] = {.lex_state = 335}, - [4886] = {.lex_state = 285}, - [4887] = {.lex_state = 335}, + [4883] = {.lex_state = 277}, + [4884] = {.lex_state = 285}, + [4885] = {.lex_state = 289}, + [4886] = {.lex_state = 297}, + [4887] = {.lex_state = 298}, [4888] = {.lex_state = 285}, - [4889] = {.lex_state = 280}, - [4890] = {.lex_state = 290}, - [4891] = {.lex_state = 285}, - [4892] = {.lex_state = 290}, + [4889] = {.lex_state = 285}, + [4890] = {.lex_state = 285}, + [4891] = {.lex_state = 271}, + [4892] = {.lex_state = 285}, [4893] = {.lex_state = 285}, - [4894] = {.lex_state = 290}, - [4895] = {.lex_state = 289}, - [4896] = {.lex_state = 285}, - [4897] = {.lex_state = 285}, - [4898] = {.lex_state = 285}, - [4899] = {.lex_state = 285}, - [4900] = {.lex_state = 285}, - [4901] = {.lex_state = 285}, - [4902] = {.lex_state = 335}, - [4903] = {.lex_state = 285}, - [4904] = {.lex_state = 285}, - [4905] = {.lex_state = 234}, - [4906] = {.lex_state = 277}, + [4894] = {.lex_state = 285}, + [4895] = {.lex_state = 271}, + [4896] = {.lex_state = 270}, + [4897] = {.lex_state = 290}, + [4898] = {.lex_state = 290}, + [4899] = {.lex_state = 271}, + [4900] = {.lex_state = 289}, + [4901] = {.lex_state = 234}, + [4902] = {.lex_state = 271}, + [4903] = {.lex_state = 301}, + [4904] = {.lex_state = 290}, + [4905] = {.lex_state = 280}, + [4906] = {.lex_state = 290}, [4907] = {.lex_state = 285}, - [4908] = {.lex_state = 335}, - [4909] = {.lex_state = 290}, - [4910] = {.lex_state = 289}, - [4911] = {.lex_state = 290}, - [4912] = {.lex_state = 335}, - [4913] = {.lex_state = 285}, - [4914] = {.lex_state = 290}, - [4915] = {.lex_state = 285}, - [4916] = {.lex_state = 290}, - [4917] = {.lex_state = 285}, - [4918] = {.lex_state = 285}, + [4908] = {.lex_state = 290}, + [4909] = {.lex_state = 340}, + [4910] = {.lex_state = 285}, + [4911] = {.lex_state = 285}, + [4912] = {.lex_state = 234}, + [4913] = {.lex_state = 270}, + [4914] = {.lex_state = 285}, + [4915] = {.lex_state = 290}, + [4916] = {.lex_state = 285}, + [4917] = {.lex_state = 271}, + [4918] = {.lex_state = 335}, [4919] = {.lex_state = 285}, - [4920] = {.lex_state = 290}, - [4921] = {.lex_state = 285}, - [4922] = {.lex_state = 285}, - [4923] = {.lex_state = 285}, - [4924] = {.lex_state = 285}, + [4920] = {.lex_state = 285}, + [4921] = {.lex_state = 234}, + [4922] = {.lex_state = 290}, + [4923] = {.lex_state = 316}, + [4924] = {.lex_state = 335}, [4925] = {.lex_state = 285}, - [4926] = {.lex_state = 335}, - [4927] = {.lex_state = 290}, + [4926] = {.lex_state = 271}, + [4927] = {.lex_state = 335}, [4928] = {.lex_state = 285}, - [4929] = {.lex_state = 290}, + [4929] = {.lex_state = 285}, [4930] = {.lex_state = 285}, - [4931] = {.lex_state = 301}, + [4931] = {.lex_state = 285}, [4932] = {.lex_state = 335}, - [4933] = {.lex_state = 270}, - [4934] = {.lex_state = 290}, - [4935] = {.lex_state = 335}, - [4936] = {.lex_state = 290}, - [4937] = {.lex_state = 290}, - [4938] = {.lex_state = 270}, + [4933] = {.lex_state = 290}, + [4934] = {.lex_state = 285}, + [4935] = {.lex_state = 285}, + [4936] = {.lex_state = 271}, + [4937] = {.lex_state = 266}, + [4938] = {.lex_state = 285}, [4939] = {.lex_state = 285}, [4940] = {.lex_state = 285}, [4941] = {.lex_state = 285}, [4942] = {.lex_state = 285}, - [4943] = {.lex_state = 266}, + [4943] = {.lex_state = 290}, [4944] = {.lex_state = 285}, [4945] = {.lex_state = 285}, - [4946] = {.lex_state = 290}, + [4946] = {.lex_state = 285}, [4947] = {.lex_state = 285}, - [4948] = {.lex_state = 335}, + [4948] = {.lex_state = 285}, [4949] = {.lex_state = 285}, [4950] = {.lex_state = 285}, - [4951] = {.lex_state = 335}, - [4952] = {.lex_state = 285}, - [4953] = {.lex_state = 290}, - [4954] = {.lex_state = 285}, - [4955] = {.lex_state = 270}, + [4951] = {.lex_state = 290}, + [4952] = {.lex_state = 335}, + [4953] = {.lex_state = 285}, + [4954] = {.lex_state = 340}, + [4955] = {.lex_state = 290}, [4956] = {.lex_state = 285}, [4957] = {.lex_state = 285}, [4958] = {.lex_state = 285}, - [4959] = {.lex_state = 285}, - [4960] = {.lex_state = 285}, - [4961] = {.lex_state = 290}, - [4962] = {.lex_state = 234}, - [4963] = {.lex_state = 266}, + [4959] = {.lex_state = 266}, + [4960] = {.lex_state = 335}, + [4961] = {.lex_state = 335}, + [4962] = {.lex_state = 285}, + [4963] = {.lex_state = 340}, [4964] = {.lex_state = 285}, [4965] = {.lex_state = 290}, - [4966] = {.lex_state = 285}, - [4967] = {.lex_state = 297}, - [4968] = {.lex_state = 335}, - [4969] = {.lex_state = 335}, - [4970] = {.lex_state = 297}, - [4971] = {.lex_state = 285}, - [4972] = {.lex_state = 297}, - [4973] = {.lex_state = 271}, - [4974] = {.lex_state = 290}, - [4975] = {.lex_state = 270}, - [4976] = {.lex_state = 285}, - [4977] = {.lex_state = 297}, + [4966] = {.lex_state = 270}, + [4967] = {.lex_state = 270}, + [4968] = {.lex_state = 285}, + [4969] = {.lex_state = 271}, + [4970] = {.lex_state = 335}, + [4971] = {.lex_state = 290}, + [4972] = {.lex_state = 290}, + [4973] = {.lex_state = 285}, + [4974] = {.lex_state = 285}, + [4975] = {.lex_state = 247}, + [4976] = {.lex_state = 335}, + [4977] = {.lex_state = 266}, [4978] = {.lex_state = 335}, - [4979] = {.lex_state = 290}, + [4979] = {.lex_state = 269}, [4980] = {.lex_state = 290}, - [4981] = {.lex_state = 297}, + [4981] = {.lex_state = 298}, [4982] = {.lex_state = 290}, - [4983] = {.lex_state = 297}, - [4984] = {.lex_state = 335}, - [4985] = {.lex_state = 290}, - [4986] = {.lex_state = 297}, - [4987] = {.lex_state = 335}, - [4988] = {.lex_state = 319}, - [4989] = {.lex_state = 290}, - [4990] = {.lex_state = 285}, - [4991] = {.lex_state = 335}, - [4992] = {.lex_state = 285}, + [4983] = {.lex_state = 271}, + [4984] = {.lex_state = 298}, + [4985] = {.lex_state = 340}, + [4986] = {.lex_state = 290}, + [4987] = {.lex_state = 290}, + [4988] = {.lex_state = 290}, + [4989] = {.lex_state = 340}, + [4990] = {.lex_state = 335}, + [4991] = {.lex_state = 271}, + [4992] = {.lex_state = 270}, [4993] = {.lex_state = 335}, - [4994] = {.lex_state = 285}, - [4995] = {.lex_state = 270}, - [4996] = {.lex_state = 271}, - [4997] = {.lex_state = 266}, - [4998] = {.lex_state = 290}, - [4999] = {.lex_state = 290}, - [5000] = {.lex_state = 335}, - [5001] = {.lex_state = 271}, - [5002] = {.lex_state = 271}, - [5003] = {.lex_state = 335}, - [5004] = {.lex_state = 289}, + [4994] = {.lex_state = 271}, + [4995] = {.lex_state = 290}, + [4996] = {.lex_state = 285}, + [4997] = {.lex_state = 290}, + [4998] = {.lex_state = 285}, + [4999] = {.lex_state = 340}, + [5000] = {.lex_state = 290}, + [5001] = {.lex_state = 285}, + [5002] = {.lex_state = 285}, + [5003] = {.lex_state = 234}, + [5004] = {.lex_state = 285}, [5005] = {.lex_state = 285}, - [5006] = {.lex_state = 290}, + [5006] = {.lex_state = 285}, [5007] = {.lex_state = 285}, [5008] = {.lex_state = 285}, [5009] = {.lex_state = 285}, [5010] = {.lex_state = 285}, [5011] = {.lex_state = 285}, [5012] = {.lex_state = 285}, - [5013] = {.lex_state = 285}, - [5014] = {.lex_state = 285}, - [5015] = {.lex_state = 285}, - [5016] = {.lex_state = 285}, - [5017] = {.lex_state = 285}, - [5018] = {.lex_state = 271}, - [5019] = {.lex_state = 285}, - [5020] = {.lex_state = 290}, - [5021] = {.lex_state = 277}, - [5022] = {.lex_state = 298}, + [5013] = {.lex_state = 234}, + [5014] = {.lex_state = 335}, + [5015] = {.lex_state = 335}, + [5016] = {.lex_state = 290}, + [5017] = {.lex_state = 301}, + [5018] = {.lex_state = 285}, + [5019] = {.lex_state = 335}, + [5020] = {.lex_state = 340}, + [5021] = {.lex_state = 234}, + [5022] = {.lex_state = 285}, [5023] = {.lex_state = 285}, - [5024] = {.lex_state = 269}, - [5025] = {.lex_state = 271}, - [5026] = {.lex_state = 298}, - [5027] = {.lex_state = 335}, - [5028] = {.lex_state = 271}, - [5029] = {.lex_state = 280}, - [5030] = {.lex_state = 280}, + [5024] = {.lex_state = 290}, + [5025] = {.lex_state = 301}, + [5026] = {.lex_state = 301}, + [5027] = {.lex_state = 269}, + [5028] = {.lex_state = 269}, + [5029] = {.lex_state = 269}, + [5030] = {.lex_state = 269}, [5031] = {.lex_state = 269}, - [5032] = {.lex_state = 285}, - [5033] = {.lex_state = 247}, - [5034] = {.lex_state = 280}, - [5035] = {.lex_state = 280}, - [5036] = {.lex_state = 338}, - [5037] = {.lex_state = 338}, - [5038] = {.lex_state = 338}, - [5039] = {.lex_state = 338}, - [5040] = {.lex_state = 285}, - [5041] = {.lex_state = 338}, - [5042] = {.lex_state = 301}, - [5043] = {.lex_state = 270}, - [5044] = {.lex_state = 290}, - [5045] = {.lex_state = 301}, + [5032] = {.lex_state = 335}, + [5033] = {.lex_state = 290}, + [5034] = {.lex_state = 290}, + [5035] = {.lex_state = 290}, + [5036] = {.lex_state = 290}, + [5037] = {.lex_state = 290}, + [5038] = {.lex_state = 290}, + [5039] = {.lex_state = 290}, + [5040] = {.lex_state = 269}, + [5041] = {.lex_state = 290}, + [5042] = {.lex_state = 290}, + [5043] = {.lex_state = 269}, + [5044] = {.lex_state = 285}, + [5045] = {.lex_state = 290}, [5046] = {.lex_state = 269}, - [5047] = {.lex_state = 301}, - [5048] = {.lex_state = 285}, - [5049] = {.lex_state = 301}, - [5050] = {.lex_state = 290}, - [5051] = {.lex_state = 290}, - [5052] = {.lex_state = 269}, - [5053] = {.lex_state = 301}, - [5054] = {.lex_state = 301}, - [5055] = {.lex_state = 266}, + [5047] = {.lex_state = 290}, + [5048] = {.lex_state = 289}, + [5049] = {.lex_state = 269}, + [5050] = {.lex_state = 269}, + [5051] = {.lex_state = 269}, + [5052] = {.lex_state = 290}, + [5053] = {.lex_state = 273}, + [5054] = {.lex_state = 290}, + [5055] = {.lex_state = 270}, [5056] = {.lex_state = 301}, - [5057] = {.lex_state = 269}, - [5058] = {.lex_state = 280}, - [5059] = {.lex_state = 338}, - [5060] = {.lex_state = 338}, - [5061] = {.lex_state = 280}, - [5062] = {.lex_state = 285}, + [5057] = {.lex_state = 290}, + [5058] = {.lex_state = 285}, + [5059] = {.lex_state = 290}, + [5060] = {.lex_state = 269}, + [5061] = {.lex_state = 338}, + [5062] = {.lex_state = 269}, [5063] = {.lex_state = 269}, - [5064] = {.lex_state = 301}, + [5064] = {.lex_state = 290}, [5065] = {.lex_state = 269}, - [5066] = {.lex_state = 301}, - [5067] = {.lex_state = 298}, - [5068] = {.lex_state = 338}, - [5069] = {.lex_state = 279}, + [5066] = {.lex_state = 269}, + [5067] = {.lex_state = 269}, + [5068] = {.lex_state = 301}, + [5069] = {.lex_state = 301}, [5070] = {.lex_state = 301}, - [5071] = {.lex_state = 301}, - [5072] = {.lex_state = 315}, + [5071] = {.lex_state = 338}, + [5072] = {.lex_state = 338}, [5073] = {.lex_state = 290}, - [5074] = {.lex_state = 301}, - [5075] = {.lex_state = 280}, + [5074] = {.lex_state = 285}, + [5075] = {.lex_state = 273}, [5076] = {.lex_state = 290}, - [5077] = {.lex_state = 247}, + [5077] = {.lex_state = 269}, [5078] = {.lex_state = 269}, - [5079] = {.lex_state = 269}, - [5080] = {.lex_state = 290}, - [5081] = {.lex_state = 338}, - [5082] = {.lex_state = 338}, - [5083] = {.lex_state = 280}, - [5084] = {.lex_state = 269}, - [5085] = {.lex_state = 269}, - [5086] = {.lex_state = 271}, - [5087] = {.lex_state = 285}, - [5088] = {.lex_state = 279}, - [5089] = {.lex_state = 290}, - [5090] = {.lex_state = 301}, + [5079] = {.lex_state = 338}, + [5080] = {.lex_state = 269}, + [5081] = {.lex_state = 269}, + [5082] = {.lex_state = 301}, + [5083] = {.lex_state = 301}, + [5084] = {.lex_state = 285}, + [5085] = {.lex_state = 280}, + [5086] = {.lex_state = 285}, + [5087] = {.lex_state = 280}, + [5088] = {.lex_state = 280}, + [5089] = {.lex_state = 269}, + [5090] = {.lex_state = 269}, [5091] = {.lex_state = 301}, - [5092] = {.lex_state = 280}, - [5093] = {.lex_state = 290}, + [5092] = {.lex_state = 290}, + [5093] = {.lex_state = 269}, [5094] = {.lex_state = 290}, - [5095] = {.lex_state = 290}, - [5096] = {.lex_state = 290}, - [5097] = {.lex_state = 290}, - [5098] = {.lex_state = 290}, - [5099] = {.lex_state = 290}, - [5100] = {.lex_state = 290}, - [5101] = {.lex_state = 290}, - [5102] = {.lex_state = 290}, - [5103] = {.lex_state = 338}, + [5095] = {.lex_state = 269}, + [5096] = {.lex_state = 269}, + [5097] = {.lex_state = 304}, + [5098] = {.lex_state = 269}, + [5099] = {.lex_state = 269}, + [5100] = {.lex_state = 280}, + [5101] = {.lex_state = 301}, + [5102] = {.lex_state = 285}, + [5103] = {.lex_state = 301}, [5104] = {.lex_state = 290}, [5105] = {.lex_state = 269}, - [5106] = {.lex_state = 280}, - [5107] = {.lex_state = 290}, - [5108] = {.lex_state = 247}, + [5106] = {.lex_state = 266}, + [5107] = {.lex_state = 280}, + [5108] = {.lex_state = 315}, [5109] = {.lex_state = 290}, - [5110] = {.lex_state = 269}, - [5111] = {.lex_state = 269}, - [5112] = {.lex_state = 271}, - [5113] = {.lex_state = 269}, + [5110] = {.lex_state = 290}, + [5111] = {.lex_state = 301}, + [5112] = {.lex_state = 285}, + [5113] = {.lex_state = 290}, [5114] = {.lex_state = 269}, - [5115] = {.lex_state = 269}, - [5116] = {.lex_state = 266}, - [5117] = {.lex_state = 290}, - [5118] = {.lex_state = 285}, + [5115] = {.lex_state = 285}, + [5116] = {.lex_state = 301}, + [5117] = {.lex_state = 301}, + [5118] = {.lex_state = 290}, [5119] = {.lex_state = 290}, - [5120] = {.lex_state = 289}, - [5121] = {.lex_state = 269}, - [5122] = {.lex_state = 269}, - [5123] = {.lex_state = 269}, - [5124] = {.lex_state = 269}, - [5125] = {.lex_state = 269}, - [5126] = {.lex_state = 269}, - [5127] = {.lex_state = 269}, - [5128] = {.lex_state = 269}, - [5129] = {.lex_state = 269}, - [5130] = {.lex_state = 273}, + [5120] = {.lex_state = 338}, + [5121] = {.lex_state = 338}, + [5122] = {.lex_state = 277}, + [5123] = {.lex_state = 285}, + [5124] = {.lex_state = 285}, + [5125] = {.lex_state = 290}, + [5126] = {.lex_state = 338}, + [5127] = {.lex_state = 280}, + [5128] = {.lex_state = 280}, + [5129] = {.lex_state = 285}, + [5130] = {.lex_state = 266}, [5131] = {.lex_state = 290}, - [5132] = {.lex_state = 280}, - [5133] = {.lex_state = 285}, + [5132] = {.lex_state = 301}, + [5133] = {.lex_state = 280}, [5134] = {.lex_state = 269}, - [5135] = {.lex_state = 290}, - [5136] = {.lex_state = 290}, - [5137] = {.lex_state = 269}, + [5135] = {.lex_state = 280}, + [5136] = {.lex_state = 285}, + [5137] = {.lex_state = 247}, [5138] = {.lex_state = 269}, - [5139] = {.lex_state = 269}, - [5140] = {.lex_state = 296}, - [5141] = {.lex_state = 301}, - [5142] = {.lex_state = 269}, - [5143] = {.lex_state = 269}, + [5139] = {.lex_state = 301}, + [5140] = {.lex_state = 280}, + [5141] = {.lex_state = 285}, + [5142] = {.lex_state = 285}, + [5143] = {.lex_state = 338}, [5144] = {.lex_state = 285}, - [5145] = {.lex_state = 269}, + [5145] = {.lex_state = 285}, [5146] = {.lex_state = 301}, - [5147] = {.lex_state = 280}, - [5148] = {.lex_state = 338}, - [5149] = {.lex_state = 338}, - [5150] = {.lex_state = 338}, - [5151] = {.lex_state = 290}, - [5152] = {.lex_state = 290}, - [5153] = {.lex_state = 338}, - [5154] = {.lex_state = 273}, - [5155] = {.lex_state = 269}, - [5156] = {.lex_state = 269}, - [5157] = {.lex_state = 335}, - [5158] = {.lex_state = 301}, - [5159] = {.lex_state = 301}, + [5147] = {.lex_state = 285}, + [5148] = {.lex_state = 280}, + [5149] = {.lex_state = 285}, + [5150] = {.lex_state = 285}, + [5151] = {.lex_state = 301}, + [5152] = {.lex_state = 285}, + [5153] = {.lex_state = 290}, + [5154] = {.lex_state = 285}, + [5155] = {.lex_state = 290}, + [5156] = {.lex_state = 279}, + [5157] = {.lex_state = 285}, + [5158] = {.lex_state = 285}, + [5159] = {.lex_state = 269}, [5160] = {.lex_state = 285}, - [5161] = {.lex_state = 269}, - [5162] = {.lex_state = 269}, - [5163] = {.lex_state = 269}, - [5164] = {.lex_state = 269}, - [5165] = {.lex_state = 269}, - [5166] = {.lex_state = 301}, + [5161] = {.lex_state = 285}, + [5162] = {.lex_state = 285}, + [5163] = {.lex_state = 285}, + [5164] = {.lex_state = 285}, + [5165] = {.lex_state = 285}, + [5166] = {.lex_state = 285}, [5167] = {.lex_state = 285}, [5168] = {.lex_state = 285}, - [5169] = {.lex_state = 269}, - [5170] = {.lex_state = 269}, - [5171] = {.lex_state = 290}, - [5172] = {.lex_state = 290}, + [5169] = {.lex_state = 285}, + [5170] = {.lex_state = 285}, + [5171] = {.lex_state = 285}, + [5172] = {.lex_state = 285}, [5173] = {.lex_state = 301}, - [5174] = {.lex_state = 269}, - [5175] = {.lex_state = 301}, + [5174] = {.lex_state = 301}, + [5175] = {.lex_state = 285}, [5176] = {.lex_state = 301}, - [5177] = {.lex_state = 285}, - [5178] = {.lex_state = 280}, - [5179] = {.lex_state = 285}, - [5180] = {.lex_state = 269}, - [5181] = {.lex_state = 280}, - [5182] = {.lex_state = 285}, - [5183] = {.lex_state = 301}, + [5177] = {.lex_state = 335}, + [5178] = {.lex_state = 338}, + [5179] = {.lex_state = 269}, + [5180] = {.lex_state = 301}, + [5181] = {.lex_state = 290}, + [5182] = {.lex_state = 321}, + [5183] = {.lex_state = 280}, [5184] = {.lex_state = 301}, - [5185] = {.lex_state = 285}, - [5186] = {.lex_state = 290}, - [5187] = {.lex_state = 285}, - [5188] = {.lex_state = 285}, - [5189] = {.lex_state = 285}, - [5190] = {.lex_state = 285}, - [5191] = {.lex_state = 285}, - [5192] = {.lex_state = 285}, - [5193] = {.lex_state = 301}, - [5194] = {.lex_state = 301}, - [5195] = {.lex_state = 285}, - [5196] = {.lex_state = 285}, - [5197] = {.lex_state = 301}, - [5198] = {.lex_state = 285}, - [5199] = {.lex_state = 285}, - [5200] = {.lex_state = 285}, - [5201] = {.lex_state = 285}, - [5202] = {.lex_state = 285}, - [5203] = {.lex_state = 285}, + [5185] = {.lex_state = 290}, + [5186] = {.lex_state = 301}, + [5187] = {.lex_state = 301}, + [5188] = {.lex_state = 338}, + [5189] = {.lex_state = 266}, + [5190] = {.lex_state = 269}, + [5191] = {.lex_state = 321}, + [5192] = {.lex_state = 338}, + [5193] = {.lex_state = 338}, + [5194] = {.lex_state = 290}, + [5195] = {.lex_state = 247}, + [5196] = {.lex_state = 296}, + [5197] = {.lex_state = 285}, + [5198] = {.lex_state = 269}, + [5199] = {.lex_state = 301}, + [5200] = {.lex_state = 301}, + [5201] = {.lex_state = 269}, + [5202] = {.lex_state = 338}, + [5203] = {.lex_state = 338}, [5204] = {.lex_state = 285}, - [5205] = {.lex_state = 285}, - [5206] = {.lex_state = 285}, - [5207] = {.lex_state = 285}, - [5208] = {.lex_state = 285}, - [5209] = {.lex_state = 285}, - [5210] = {.lex_state = 290}, - [5211] = {.lex_state = 285}, - [5212] = {.lex_state = 290}, - [5213] = {.lex_state = 335}, - [5214] = {.lex_state = 290}, - [5215] = {.lex_state = 290}, + [5205] = {.lex_state = 269}, + [5206] = {.lex_state = 301}, + [5207] = {.lex_state = 301}, + [5208] = {.lex_state = 301}, + [5209] = {.lex_state = 289}, + [5210] = {.lex_state = 301}, + [5211] = {.lex_state = 280}, + [5212] = {.lex_state = 301}, + [5213] = {.lex_state = 301}, + [5214] = {.lex_state = 301}, + [5215] = {.lex_state = 269}, [5216] = {.lex_state = 301}, [5217] = {.lex_state = 290}, - [5218] = {.lex_state = 301}, - [5219] = {.lex_state = 301}, - [5220] = {.lex_state = 266}, - [5221] = {.lex_state = 301}, - [5222] = {.lex_state = 316}, - [5223] = {.lex_state = 280}, - [5224] = {.lex_state = 301}, + [5218] = {.lex_state = 269}, + [5219] = {.lex_state = 269}, + [5220] = {.lex_state = 338}, + [5221] = {.lex_state = 279}, + [5222] = {.lex_state = 290}, + [5223] = {.lex_state = 301}, + [5224] = {.lex_state = 290}, [5225] = {.lex_state = 301}, - [5226] = {.lex_state = 301}, - [5227] = {.lex_state = 316}, + [5226] = {.lex_state = 290}, + [5227] = {.lex_state = 301}, [5228] = {.lex_state = 301}, - [5229] = {.lex_state = 301}, - [5230] = {.lex_state = 277}, - [5231] = {.lex_state = 285}, - [5232] = {.lex_state = 285}, - [5233] = {.lex_state = 269}, - [5234] = {.lex_state = 301}, - [5235] = {.lex_state = 289}, + [5229] = {.lex_state = 290}, + [5230] = {.lex_state = 301}, + [5231] = {.lex_state = 271}, + [5232] = {.lex_state = 301}, + [5233] = {.lex_state = 301}, + [5234] = {.lex_state = 290}, + [5235] = {.lex_state = 301}, [5236] = {.lex_state = 290}, [5237] = {.lex_state = 290}, - [5238] = {.lex_state = 285}, - [5239] = {.lex_state = 285}, - [5240] = {.lex_state = 269}, - [5241] = {.lex_state = 304}, + [5238] = {.lex_state = 290}, + [5239] = {.lex_state = 280}, + [5240] = {.lex_state = 280}, + [5241] = {.lex_state = 290}, [5242] = {.lex_state = 290}, [5243] = {.lex_state = 290}, - [5244] = {.lex_state = 290}, - [5245] = {.lex_state = 280}, - [5246] = {.lex_state = 290}, - [5247] = {.lex_state = 290}, - [5248] = {.lex_state = 290}, - [5249] = {.lex_state = 269}, - [5250] = {.lex_state = 290}, - [5251] = {.lex_state = 301}, - [5252] = {.lex_state = 301}, - [5253] = {.lex_state = 290}, - [5254] = {.lex_state = 290}, - [5255] = {.lex_state = 290}, + [5244] = {.lex_state = 298}, + [5245] = {.lex_state = 301}, + [5246] = {.lex_state = 280}, + [5247] = {.lex_state = 280}, + [5248] = {.lex_state = 301}, + [5249] = {.lex_state = 247}, + [5250] = {.lex_state = 301}, + [5251] = {.lex_state = 269}, + [5252] = {.lex_state = 290}, + [5253] = {.lex_state = 269}, + [5254] = {.lex_state = 269}, + [5255] = {.lex_state = 269}, [5256] = {.lex_state = 290}, - [5257] = {.lex_state = 301}, - [5258] = {.lex_state = 301}, - [5259] = {.lex_state = 280}, - [5260] = {.lex_state = 301}, - [5261] = {.lex_state = 290}, - [5262] = {.lex_state = 301}, + [5257] = {.lex_state = 269}, + [5258] = {.lex_state = 290}, + [5259] = {.lex_state = 290}, + [5260] = {.lex_state = 285}, + [5261] = {.lex_state = 269}, + [5262] = {.lex_state = 289}, [5263] = {.lex_state = 301}, - [5264] = {.lex_state = 301}, + [5264] = {.lex_state = 279}, [5265] = {.lex_state = 301}, - [5266] = {.lex_state = 271}, - [5267] = {.lex_state = 280}, - [5268] = {.lex_state = 301}, - [5269] = {.lex_state = 334}, - [5270] = {.lex_state = 269}, - [5271] = {.lex_state = 290}, - [5272] = {.lex_state = 247}, - [5273] = {.lex_state = 280}, + [5266] = {.lex_state = 289}, + [5267] = {.lex_state = 334}, + [5268] = {.lex_state = 290}, + [5269] = {.lex_state = 269}, + [5270] = {.lex_state = 334}, + [5271] = {.lex_state = 289}, + [5272] = {.lex_state = 301}, + [5273] = {.lex_state = 301}, [5274] = {.lex_state = 271}, - [5275] = {.lex_state = 334}, - [5276] = {.lex_state = 269}, - [5277] = {.lex_state = 269}, - [5278] = {.lex_state = 280}, - [5279] = {.lex_state = 338}, - [5280] = {.lex_state = 290}, - [5281] = {.lex_state = 280}, - [5282] = {.lex_state = 280}, - [5283] = {.lex_state = 269}, - [5284] = {.lex_state = 290}, - [5285] = {.lex_state = 269}, - [5286] = {.lex_state = 266}, - [5287] = {.lex_state = 293}, - [5288] = {.lex_state = 266}, - [5289] = {.lex_state = 269}, - [5290] = {.lex_state = 266}, - [5291] = {.lex_state = 290}, - [5292] = {.lex_state = 334}, - [5293] = {.lex_state = 295}, - [5294] = {.lex_state = 290}, - [5295] = {.lex_state = 334}, - [5296] = {.lex_state = 301}, + [5275] = {.lex_state = 301}, + [5276] = {.lex_state = 290}, + [5277] = {.lex_state = 289}, + [5278] = {.lex_state = 301}, + [5279] = {.lex_state = 269}, + [5280] = {.lex_state = 280}, + [5281] = {.lex_state = 335}, + [5282] = {.lex_state = 334}, + [5283] = {.lex_state = 290}, + [5284] = {.lex_state = 266}, + [5285] = {.lex_state = 289}, + [5286] = {.lex_state = 280}, + [5287] = {.lex_state = 334}, + [5288] = {.lex_state = 280}, + [5289] = {.lex_state = 289}, + [5290] = {.lex_state = 290}, + [5291] = {.lex_state = 301}, + [5292] = {.lex_state = 301}, + [5293] = {.lex_state = 280}, + [5294] = {.lex_state = 289}, + [5295] = {.lex_state = 280}, + [5296] = {.lex_state = 280}, [5297] = {.lex_state = 334}, [5298] = {.lex_state = 290}, - [5299] = {.lex_state = 269}, - [5300] = {.lex_state = 280}, - [5301] = {.lex_state = 269}, - [5302] = {.lex_state = 301}, - [5303] = {.lex_state = 269}, - [5304] = {.lex_state = 334}, - [5305] = {.lex_state = 269}, - [5306] = {.lex_state = 290}, - [5307] = {.lex_state = 290}, - [5308] = {.lex_state = 290}, - [5309] = {.lex_state = 290}, - [5310] = {.lex_state = 316}, - [5311] = {.lex_state = 289}, - [5312] = {.lex_state = 301}, - [5313] = {.lex_state = 279}, - [5314] = {.lex_state = 290}, - [5315] = {.lex_state = 301}, - [5316] = {.lex_state = 334}, - [5317] = {.lex_state = 290}, - [5318] = {.lex_state = 269}, - [5319] = {.lex_state = 334}, - [5320] = {.lex_state = 280}, - [5321] = {.lex_state = 301}, - [5322] = {.lex_state = 269}, - [5323] = {.lex_state = 301}, - [5324] = {.lex_state = 247}, - [5325] = {.lex_state = 301}, - [5326] = {.lex_state = 289}, - [5327] = {.lex_state = 316}, - [5328] = {.lex_state = 269}, - [5329] = {.lex_state = 334}, - [5330] = {.lex_state = 301}, - [5331] = {.lex_state = 301}, + [5299] = {.lex_state = 334}, + [5300] = {.lex_state = 290}, + [5301] = {.lex_state = 334}, + [5302] = {.lex_state = 335}, + [5303] = {.lex_state = 334}, + [5304] = {.lex_state = 301}, + [5305] = {.lex_state = 301}, + [5306] = {.lex_state = 335}, + [5307] = {.lex_state = 269}, + [5308] = {.lex_state = 269}, + [5309] = {.lex_state = 269}, + [5310] = {.lex_state = 334}, + [5311] = {.lex_state = 290}, + [5312] = {.lex_state = 289}, + [5313] = {.lex_state = 289}, + [5314] = {.lex_state = 289}, + [5315] = {.lex_state = 334}, + [5316] = {.lex_state = 269}, + [5317] = {.lex_state = 280}, + [5318] = {.lex_state = 271}, + [5319] = {.lex_state = 290}, + [5320] = {.lex_state = 301}, + [5321] = {.lex_state = 290}, + [5322] = {.lex_state = 335}, + [5323] = {.lex_state = 289}, + [5324] = {.lex_state = 269}, + [5325] = {.lex_state = 269}, + [5326] = {.lex_state = 280}, + [5327] = {.lex_state = 269}, + [5328] = {.lex_state = 301}, + [5329] = {.lex_state = 290}, + [5330] = {.lex_state = 269}, + [5331] = {.lex_state = 269}, [5332] = {.lex_state = 301}, - [5333] = {.lex_state = 290}, - [5334] = {.lex_state = 340}, - [5335] = {.lex_state = 280}, - [5336] = {.lex_state = 290}, - [5337] = {.lex_state = 334}, + [5333] = {.lex_state = 301}, + [5334] = {.lex_state = 269}, + [5335] = {.lex_state = 321}, + [5336] = {.lex_state = 301}, + [5337] = {.lex_state = 290}, [5338] = {.lex_state = 289}, [5339] = {.lex_state = 301}, - [5340] = {.lex_state = 279}, - [5341] = {.lex_state = 301}, + [5340] = {.lex_state = 280}, + [5341] = {.lex_state = 340}, [5342] = {.lex_state = 301}, [5343] = {.lex_state = 301}, - [5344] = {.lex_state = 334}, - [5345] = {.lex_state = 334}, - [5346] = {.lex_state = 290}, - [5347] = {.lex_state = 280}, - [5348] = {.lex_state = 280}, - [5349] = {.lex_state = 269}, - [5350] = {.lex_state = 334}, - [5351] = {.lex_state = 269}, - [5352] = {.lex_state = 280}, - [5353] = {.lex_state = 269}, - [5354] = {.lex_state = 290}, - [5355] = {.lex_state = 289}, - [5356] = {.lex_state = 301}, - [5357] = {.lex_state = 290}, - [5358] = {.lex_state = 247}, - [5359] = {.lex_state = 280}, - [5360] = {.lex_state = 289}, - [5361] = {.lex_state = 290}, - [5362] = {.lex_state = 289}, - [5363] = {.lex_state = 289}, - [5364] = {.lex_state = 271}, - [5365] = {.lex_state = 340}, - [5366] = {.lex_state = 290}, - [5367] = {.lex_state = 269}, - [5368] = {.lex_state = 334}, - [5369] = {.lex_state = 289}, - [5370] = {.lex_state = 266}, - [5371] = {.lex_state = 289}, + [5344] = {.lex_state = 289}, + [5345] = {.lex_state = 289}, + [5346] = {.lex_state = 289}, + [5347] = {.lex_state = 301}, + [5348] = {.lex_state = 289}, + [5349] = {.lex_state = 289}, + [5350] = {.lex_state = 289}, + [5351] = {.lex_state = 301}, + [5352] = {.lex_state = 289}, + [5353] = {.lex_state = 278}, + [5354] = {.lex_state = 340}, + [5355] = {.lex_state = 301}, + [5356] = {.lex_state = 334}, + [5357] = {.lex_state = 301}, + [5358] = {.lex_state = 269}, + [5359] = {.lex_state = 301}, + [5360] = {.lex_state = 266}, + [5361] = {.lex_state = 338}, + [5362] = {.lex_state = 290}, + [5363] = {.lex_state = 290}, + [5364] = {.lex_state = 247}, + [5365] = {.lex_state = 290}, + [5366] = {.lex_state = 247}, + [5367] = {.lex_state = 280}, + [5368] = {.lex_state = 269}, + [5369] = {.lex_state = 334}, + [5370] = {.lex_state = 280}, + [5371] = {.lex_state = 301}, [5372] = {.lex_state = 301}, - [5373] = {.lex_state = 269}, - [5374] = {.lex_state = 293}, + [5373] = {.lex_state = 280}, + [5374] = {.lex_state = 280}, [5375] = {.lex_state = 269}, - [5376] = {.lex_state = 269}, - [5377] = {.lex_state = 334}, - [5378] = {.lex_state = 269}, - [5379] = {.lex_state = 269}, - [5380] = {.lex_state = 269}, + [5376] = {.lex_state = 334}, + [5377] = {.lex_state = 301}, + [5378] = {.lex_state = 280}, + [5379] = {.lex_state = 266}, + [5380] = {.lex_state = 289}, [5381] = {.lex_state = 269}, [5382] = {.lex_state = 269}, [5383] = {.lex_state = 269}, - [5384] = {.lex_state = 334}, - [5385] = {.lex_state = 290}, + [5384] = {.lex_state = 269}, + [5385] = {.lex_state = 269}, [5386] = {.lex_state = 269}, - [5387] = {.lex_state = 335}, - [5388] = {.lex_state = 334}, - [5389] = {.lex_state = 290}, - [5390] = {.lex_state = 334}, - [5391] = {.lex_state = 335}, - [5392] = {.lex_state = 269}, - [5393] = {.lex_state = 271}, - [5394] = {.lex_state = 271}, + [5387] = {.lex_state = 269}, + [5388] = {.lex_state = 271}, + [5389] = {.lex_state = 269}, + [5390] = {.lex_state = 271}, + [5391] = {.lex_state = 334}, + [5392] = {.lex_state = 271}, + [5393] = {.lex_state = 269}, + [5394] = {.lex_state = 269}, [5395] = {.lex_state = 271}, - [5396] = {.lex_state = 280}, + [5396] = {.lex_state = 271}, [5397] = {.lex_state = 271}, [5398] = {.lex_state = 271}, - [5399] = {.lex_state = 290}, + [5399] = {.lex_state = 271}, [5400] = {.lex_state = 271}, [5401] = {.lex_state = 271}, [5402] = {.lex_state = 271}, [5403] = {.lex_state = 271}, [5404] = {.lex_state = 271}, [5405] = {.lex_state = 271}, - [5406] = {.lex_state = 271}, + [5406] = {.lex_state = 269}, [5407] = {.lex_state = 271}, [5408] = {.lex_state = 271}, - [5409] = {.lex_state = 289}, - [5410] = {.lex_state = 271}, + [5409] = {.lex_state = 271}, + [5410] = {.lex_state = 290}, [5411] = {.lex_state = 271}, [5412] = {.lex_state = 271}, - [5413] = {.lex_state = 271}, - [5414] = {.lex_state = 289}, - [5415] = {.lex_state = 280}, - [5416] = {.lex_state = 334}, - [5417] = {.lex_state = 280}, - [5418] = {.lex_state = 301}, - [5419] = {.lex_state = 301}, + [5413] = {.lex_state = 334}, + [5414] = {.lex_state = 290}, + [5415] = {.lex_state = 301}, + [5416] = {.lex_state = 301}, + [5417] = {.lex_state = 334}, + [5418] = {.lex_state = 269}, + [5419] = {.lex_state = 269}, [5420] = {.lex_state = 269}, - [5421] = {.lex_state = 269}, - [5422] = {.lex_state = 269}, - [5423] = {.lex_state = 340}, - [5424] = {.lex_state = 301}, - [5425] = {.lex_state = 334}, - [5426] = {.lex_state = 290}, - [5427] = {.lex_state = 289}, - [5428] = {.lex_state = 301}, - [5429] = {.lex_state = 280}, - [5430] = {.lex_state = 280}, - [5431] = {.lex_state = 280}, - [5432] = {.lex_state = 301}, + [5421] = {.lex_state = 301}, + [5422] = {.lex_state = 247}, + [5423] = {.lex_state = 301}, + [5424] = {.lex_state = 289}, + [5425] = {.lex_state = 301}, + [5426] = {.lex_state = 289}, + [5427] = {.lex_state = 334}, + [5428] = {.lex_state = 280}, + [5429] = {.lex_state = 289}, + [5430] = {.lex_state = 334}, + [5431] = {.lex_state = 301}, + [5432] = {.lex_state = 338}, [5433] = {.lex_state = 301}, [5434] = {.lex_state = 334}, - [5435] = {.lex_state = 289}, - [5436] = {.lex_state = 289}, - [5437] = {.lex_state = 334}, - [5438] = {.lex_state = 266}, - [5439] = {.lex_state = 334}, - [5440] = {.lex_state = 290}, - [5441] = {.lex_state = 301}, - [5442] = {.lex_state = 269}, + [5435] = {.lex_state = 290}, + [5436] = {.lex_state = 290}, + [5437] = {.lex_state = 289}, + [5438] = {.lex_state = 301}, + [5439] = {.lex_state = 269}, + [5440] = {.lex_state = 334}, + [5441] = {.lex_state = 290}, + [5442] = {.lex_state = 293}, [5443] = {.lex_state = 280}, - [5444] = {.lex_state = 280}, - [5445] = {.lex_state = 334}, - [5446] = {.lex_state = 289}, - [5447] = {.lex_state = 269}, - [5448] = {.lex_state = 289}, - [5449] = {.lex_state = 247}, - [5450] = {.lex_state = 334}, - [5451] = {.lex_state = 338}, - [5452] = {.lex_state = 290}, - [5453] = {.lex_state = 289}, - [5454] = {.lex_state = 335}, - [5455] = {.lex_state = 338}, - [5456] = {.lex_state = 289}, - [5457] = {.lex_state = 289}, - [5458] = {.lex_state = 335}, - [5459] = {.lex_state = 335}, - [5460] = {.lex_state = 280}, - [5461] = {.lex_state = 289}, - [5462] = {.lex_state = 269}, - [5463] = {.lex_state = 289}, - [5464] = {.lex_state = 335}, - [5465] = {.lex_state = 289}, - [5466] = {.lex_state = 280}, - [5467] = {.lex_state = 280}, + [5444] = {.lex_state = 340}, + [5445] = {.lex_state = 279}, + [5446] = {.lex_state = 334}, + [5447] = {.lex_state = 290}, + [5448] = {.lex_state = 335}, + [5449] = {.lex_state = 269}, + [5450] = {.lex_state = 269}, + [5451] = {.lex_state = 334}, + [5452] = {.lex_state = 280}, + [5453] = {.lex_state = 280}, + [5454] = {.lex_state = 301}, + [5455] = {.lex_state = 335}, + [5456] = {.lex_state = 334}, + [5457] = {.lex_state = 269}, + [5458] = {.lex_state = 269}, + [5459] = {.lex_state = 334}, + [5460] = {.lex_state = 269}, + [5461] = {.lex_state = 334}, + [5462] = {.lex_state = 295}, + [5463] = {.lex_state = 266}, + [5464] = {.lex_state = 280}, + [5465] = {.lex_state = 280}, + [5466] = {.lex_state = 334}, + [5467] = {.lex_state = 335}, [5468] = {.lex_state = 335}, - [5469] = {.lex_state = 335}, - [5470] = {.lex_state = 290}, - [5471] = {.lex_state = 278}, - [5472] = {.lex_state = 340}, + [5469] = {.lex_state = 269}, + [5470] = {.lex_state = 335}, + [5471] = {.lex_state = 269}, + [5472] = {.lex_state = 271}, [5473] = {.lex_state = 271}, [5474] = {.lex_state = 271}, [5475] = {.lex_state = 271}, @@ -32219,740 +32296,740 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [5489] = {.lex_state = 271}, [5490] = {.lex_state = 271}, [5491] = {.lex_state = 271}, - [5492] = {.lex_state = 269}, + [5492] = {.lex_state = 271}, [5493] = {.lex_state = 271}, [5494] = {.lex_state = 271}, [5495] = {.lex_state = 271}, [5496] = {.lex_state = 271}, - [5497] = {.lex_state = 271}, - [5498] = {.lex_state = 334}, - [5499] = {.lex_state = 289}, - [5500] = {.lex_state = 338}, - [5501] = {.lex_state = 280}, - [5502] = {.lex_state = 301}, - [5503] = {.lex_state = 301}, - [5504] = {.lex_state = 271}, - [5505] = {.lex_state = 289}, - [5506] = {.lex_state = 289}, - [5507] = {.lex_state = 269}, - [5508] = {.lex_state = 269}, - [5509] = {.lex_state = 301}, - [5510] = {.lex_state = 269}, - [5511] = {.lex_state = 266}, - [5512] = {.lex_state = 301}, - [5513] = {.lex_state = 269}, - [5514] = {.lex_state = 269}, - [5515] = {.lex_state = 335}, + [5497] = {.lex_state = 335}, + [5498] = {.lex_state = 338}, + [5499] = {.lex_state = 301}, + [5500] = {.lex_state = 290}, + [5501] = {.lex_state = 335}, + [5502] = {.lex_state = 335}, + [5503] = {.lex_state = 289}, + [5504] = {.lex_state = 290}, + [5505] = {.lex_state = 247}, + [5506] = {.lex_state = 271}, + [5507] = {.lex_state = 290}, + [5508] = {.lex_state = 266}, + [5509] = {.lex_state = 266}, + [5510] = {.lex_state = 280}, + [5511] = {.lex_state = 301}, + [5512] = {.lex_state = 280}, + [5513] = {.lex_state = 280}, + [5514] = {.lex_state = 280}, + [5515] = {.lex_state = 340}, [5516] = {.lex_state = 301}, - [5517] = {.lex_state = 301}, - [5518] = {.lex_state = 301}, - [5519] = {.lex_state = 301}, + [5517] = {.lex_state = 338}, + [5518] = {.lex_state = 280}, + [5519] = {.lex_state = 290}, [5520] = {.lex_state = 301}, - [5521] = {.lex_state = 301}, - [5522] = {.lex_state = 301}, - [5523] = {.lex_state = 335}, - [5524] = {.lex_state = 301}, - [5525] = {.lex_state = 301}, - [5526] = {.lex_state = 301}, - [5527] = {.lex_state = 301}, - [5528] = {.lex_state = 335}, - [5529] = {.lex_state = 335}, - [5530] = {.lex_state = 280}, - [5531] = {.lex_state = 280}, - [5532] = {.lex_state = 280}, - [5533] = {.lex_state = 271}, - [5534] = {.lex_state = 298}, - [5535] = {.lex_state = 290}, + [5521] = {.lex_state = 290}, + [5522] = {.lex_state = 269}, + [5523] = {.lex_state = 321}, + [5524] = {.lex_state = 280}, + [5525] = {.lex_state = 290}, + [5526] = {.lex_state = 269}, + [5527] = {.lex_state = 280}, + [5528] = {.lex_state = 293}, + [5529] = {.lex_state = 271}, + [5530] = {.lex_state = 298}, + [5531] = {.lex_state = 290}, + [5532] = {.lex_state = 290}, + [5533] = {.lex_state = 290}, + [5534] = {.lex_state = 290}, + [5535] = {.lex_state = 271}, [5536] = {.lex_state = 290}, - [5537] = {.lex_state = 290}, + [5537] = {.lex_state = 298}, [5538] = {.lex_state = 290}, - [5539] = {.lex_state = 271}, - [5540] = {.lex_state = 301}, + [5539] = {.lex_state = 298}, + [5540] = {.lex_state = 290}, [5541] = {.lex_state = 290}, [5542] = {.lex_state = 301}, - [5543] = {.lex_state = 280}, - [5544] = {.lex_state = 290}, - [5545] = {.lex_state = 290}, - [5546] = {.lex_state = 290}, - [5547] = {.lex_state = 269}, + [5543] = {.lex_state = 269}, + [5544] = {.lex_state = 269}, + [5545] = {.lex_state = 280}, + [5546] = {.lex_state = 298}, + [5547] = {.lex_state = 290}, [5548] = {.lex_state = 290}, [5549] = {.lex_state = 290}, [5550] = {.lex_state = 290}, [5551] = {.lex_state = 290}, - [5552] = {.lex_state = 306}, - [5553] = {.lex_state = 290}, - [5554] = {.lex_state = 290}, - [5555] = {.lex_state = 290}, - [5556] = {.lex_state = 301}, - [5557] = {.lex_state = 290}, + [5552] = {.lex_state = 266}, + [5553] = {.lex_state = 301}, + [5554] = {.lex_state = 303}, + [5555] = {.lex_state = 306}, + [5556] = {.lex_state = 266}, + [5557] = {.lex_state = 262}, [5558] = {.lex_state = 290}, - [5559] = {.lex_state = 298}, - [5560] = {.lex_state = 298}, - [5561] = {.lex_state = 290}, - [5562] = {.lex_state = 262}, + [5559] = {.lex_state = 290}, + [5560] = {.lex_state = 290}, + [5561] = {.lex_state = 271}, + [5562] = {.lex_state = 290}, [5563] = {.lex_state = 290}, [5564] = {.lex_state = 290}, - [5565] = {.lex_state = 338}, + [5565] = {.lex_state = 290}, [5566] = {.lex_state = 290}, - [5567] = {.lex_state = 290}, - [5568] = {.lex_state = 338}, + [5567] = {.lex_state = 266}, + [5568] = {.lex_state = 290}, [5569] = {.lex_state = 290}, [5570] = {.lex_state = 290}, [5571] = {.lex_state = 290}, - [5572] = {.lex_state = 290}, + [5572] = {.lex_state = 315}, [5573] = {.lex_state = 290}, - [5574] = {.lex_state = 338}, - [5575] = {.lex_state = 266}, - [5576] = {.lex_state = 301}, - [5577] = {.lex_state = 290}, + [5574] = {.lex_state = 290}, + [5575] = {.lex_state = 303}, + [5576] = {.lex_state = 290}, + [5577] = {.lex_state = 303}, [5578] = {.lex_state = 290}, [5579] = {.lex_state = 290}, - [5580] = {.lex_state = 264}, - [5581] = {.lex_state = 290}, - [5582] = {.lex_state = 301}, - [5583] = {.lex_state = 266}, + [5580] = {.lex_state = 290}, + [5581] = {.lex_state = 280}, + [5582] = {.lex_state = 290}, + [5583] = {.lex_state = 290}, [5584] = {.lex_state = 290}, - [5585] = {.lex_state = 266}, + [5585] = {.lex_state = 303}, [5586] = {.lex_state = 290}, [5587] = {.lex_state = 290}, - [5588] = {.lex_state = 290}, - [5589] = {.lex_state = 290}, - [5590] = {.lex_state = 290}, - [5591] = {.lex_state = 266}, - [5592] = {.lex_state = 298}, - [5593] = {.lex_state = 298}, - [5594] = {.lex_state = 298}, + [5588] = {.lex_state = 303}, + [5589] = {.lex_state = 315}, + [5590] = {.lex_state = 303}, + [5591] = {.lex_state = 290}, + [5592] = {.lex_state = 290}, + [5593] = {.lex_state = 290}, + [5594] = {.lex_state = 290}, [5595] = {.lex_state = 290}, [5596] = {.lex_state = 290}, - [5597] = {.lex_state = 290}, + [5597] = {.lex_state = 335}, [5598] = {.lex_state = 290}, [5599] = {.lex_state = 290}, - [5600] = {.lex_state = 298}, - [5601] = {.lex_state = 298}, - [5602] = {.lex_state = 262}, - [5603] = {.lex_state = 298}, - [5604] = {.lex_state = 338}, - [5605] = {.lex_state = 290}, + [5600] = {.lex_state = 290}, + [5601] = {.lex_state = 290}, + [5602] = {.lex_state = 290}, + [5603] = {.lex_state = 290}, + [5604] = {.lex_state = 290}, + [5605] = {.lex_state = 310}, [5606] = {.lex_state = 290}, - [5607] = {.lex_state = 271}, - [5608] = {.lex_state = 290}, + [5607] = {.lex_state = 290}, + [5608] = {.lex_state = 301}, [5609] = {.lex_state = 290}, - [5610] = {.lex_state = 290}, + [5610] = {.lex_state = 310}, [5611] = {.lex_state = 290}, - [5612] = {.lex_state = 303}, - [5613] = {.lex_state = 335}, + [5612] = {.lex_state = 290}, + [5613] = {.lex_state = 269}, [5614] = {.lex_state = 290}, [5615] = {.lex_state = 290}, - [5616] = {.lex_state = 278}, - [5617] = {.lex_state = 290}, + [5616] = {.lex_state = 301}, + [5617] = {.lex_state = 266}, [5618] = {.lex_state = 290}, [5619] = {.lex_state = 290}, [5620] = {.lex_state = 290}, [5621] = {.lex_state = 290}, - [5622] = {.lex_state = 298}, - [5623] = {.lex_state = 290}, + [5622] = {.lex_state = 301}, + [5623] = {.lex_state = 266}, [5624] = {.lex_state = 338}, - [5625] = {.lex_state = 303}, - [5626] = {.lex_state = 303}, - [5627] = {.lex_state = 303}, - [5628] = {.lex_state = 290}, - [5629] = {.lex_state = 290}, - [5630] = {.lex_state = 315}, - [5631] = {.lex_state = 315}, - [5632] = {.lex_state = 303}, - [5633] = {.lex_state = 303}, - [5634] = {.lex_state = 298}, - [5635] = {.lex_state = 290}, - [5636] = {.lex_state = 290}, + [5625] = {.lex_state = 279}, + [5626] = {.lex_state = 290}, + [5627] = {.lex_state = 290}, + [5628] = {.lex_state = 262}, + [5629] = {.lex_state = 264}, + [5630] = {.lex_state = 290}, + [5631] = {.lex_state = 290}, + [5632] = {.lex_state = 266}, + [5633] = {.lex_state = 280}, + [5634] = {.lex_state = 290}, + [5635] = {.lex_state = 338}, + [5636] = {.lex_state = 280}, [5637] = {.lex_state = 290}, - [5638] = {.lex_state = 301}, - [5639] = {.lex_state = 269}, + [5638] = {.lex_state = 290}, + [5639] = {.lex_state = 290}, [5640] = {.lex_state = 290}, - [5641] = {.lex_state = 290}, - [5642] = {.lex_state = 290}, + [5641] = {.lex_state = 303}, + [5642] = {.lex_state = 278}, [5643] = {.lex_state = 290}, - [5644] = {.lex_state = 266}, - [5645] = {.lex_state = 290}, - [5646] = {.lex_state = 290}, - [5647] = {.lex_state = 301}, + [5644] = {.lex_state = 262}, + [5645] = {.lex_state = 266}, + [5646] = {.lex_state = 247}, + [5647] = {.lex_state = 290}, [5648] = {.lex_state = 301}, - [5649] = {.lex_state = 269}, - [5650] = {.lex_state = 280}, + [5649] = {.lex_state = 290}, + [5650] = {.lex_state = 290}, [5651] = {.lex_state = 290}, [5652] = {.lex_state = 290}, - [5653] = {.lex_state = 290}, + [5653] = {.lex_state = 306}, [5654] = {.lex_state = 290}, [5655] = {.lex_state = 290}, - [5656] = {.lex_state = 301}, + [5656] = {.lex_state = 290}, [5657] = {.lex_state = 290}, [5658] = {.lex_state = 290}, - [5659] = {.lex_state = 262}, + [5659] = {.lex_state = 290}, [5660] = {.lex_state = 290}, - [5661] = {.lex_state = 308}, + [5661] = {.lex_state = 290}, [5662] = {.lex_state = 290}, [5663] = {.lex_state = 290}, [5664] = {.lex_state = 290}, - [5665] = {.lex_state = 310}, - [5666] = {.lex_state = 247}, + [5665] = {.lex_state = 290}, + [5666] = {.lex_state = 290}, [5667] = {.lex_state = 290}, - [5668] = {.lex_state = 290}, - [5669] = {.lex_state = 269}, - [5670] = {.lex_state = 306}, + [5668] = {.lex_state = 264}, + [5669] = {.lex_state = 290}, + [5670] = {.lex_state = 290}, [5671] = {.lex_state = 290}, - [5672] = {.lex_state = 280}, - [5673] = {.lex_state = 290}, - [5674] = {.lex_state = 269}, + [5672] = {.lex_state = 290}, + [5673] = {.lex_state = 298}, + [5674] = {.lex_state = 338}, [5675] = {.lex_state = 290}, - [5676] = {.lex_state = 266}, + [5676] = {.lex_state = 301}, [5677] = {.lex_state = 290}, - [5678] = {.lex_state = 310}, - [5679] = {.lex_state = 312}, - [5680] = {.lex_state = 290}, + [5678] = {.lex_state = 290}, + [5679] = {.lex_state = 266}, + [5680] = {.lex_state = 298}, [5681] = {.lex_state = 290}, - [5682] = {.lex_state = 301}, + [5682] = {.lex_state = 290}, [5683] = {.lex_state = 290}, - [5684] = {.lex_state = 266}, - [5685] = {.lex_state = 266}, + [5684] = {.lex_state = 298}, + [5685] = {.lex_state = 269}, [5686] = {.lex_state = 290}, [5687] = {.lex_state = 266}, - [5688] = {.lex_state = 264}, - [5689] = {.lex_state = 280}, - [5690] = {.lex_state = 269}, - [5691] = {.lex_state = 290}, - [5692] = {.lex_state = 269}, - [5693] = {.lex_state = 290}, + [5688] = {.lex_state = 266}, + [5689] = {.lex_state = 298}, + [5690] = {.lex_state = 301}, + [5691] = {.lex_state = 338}, + [5692] = {.lex_state = 290}, + [5693] = {.lex_state = 266}, [5694] = {.lex_state = 290}, - [5695] = {.lex_state = 290}, + [5695] = {.lex_state = 298}, [5696] = {.lex_state = 290}, - [5697] = {.lex_state = 279}, - [5698] = {.lex_state = 266}, - [5699] = {.lex_state = 290}, - [5700] = {.lex_state = 269}, + [5697] = {.lex_state = 269}, + [5698] = {.lex_state = 290}, + [5699] = {.lex_state = 308}, + [5700] = {.lex_state = 264}, [5701] = {.lex_state = 290}, - [5702] = {.lex_state = 290}, - [5703] = {.lex_state = 290}, - [5704] = {.lex_state = 290}, - [5705] = {.lex_state = 290}, - [5706] = {.lex_state = 266}, - [5707] = {.lex_state = 264}, - [5708] = {.lex_state = 290}, + [5702] = {.lex_state = 312}, + [5703] = {.lex_state = 298}, + [5704] = {.lex_state = 301}, + [5705] = {.lex_state = 269}, + [5706] = {.lex_state = 290}, + [5707] = {.lex_state = 290}, + [5708] = {.lex_state = 338}, [5709] = {.lex_state = 290}, - [5710] = {.lex_state = 290}, - [5711] = {.lex_state = 290}, - [5712] = {.lex_state = 290}, + [5710] = {.lex_state = 269}, + [5711] = {.lex_state = 298}, + [5712] = {.lex_state = 301}, [5713] = {.lex_state = 290}, - [5714] = {.lex_state = 290}, + [5714] = {.lex_state = 269}, [5715] = {.lex_state = 290}, [5716] = {.lex_state = 290}, - [5717] = {.lex_state = 290}, - [5718] = {.lex_state = 280}, - [5719] = {.lex_state = 269}, - [5720] = {.lex_state = 290}, - [5721] = {.lex_state = 290}, - [5722] = {.lex_state = 290}, - [5723] = {.lex_state = 303}, - [5724] = {.lex_state = 301}, - [5725] = {.lex_state = 301}, + [5717] = {.lex_state = 269}, + [5718] = {.lex_state = 290}, + [5719] = {.lex_state = 280}, + [5720] = {.lex_state = 280}, + [5721] = {.lex_state = 269}, + [5722] = {.lex_state = 269}, + [5723] = {.lex_state = 290}, + [5724] = {.lex_state = 290}, + [5725] = {.lex_state = 290}, [5726] = {.lex_state = 269}, [5727] = {.lex_state = 269}, [5728] = {.lex_state = 269}, [5729] = {.lex_state = 301}, - [5730] = {.lex_state = 269}, - [5731] = {.lex_state = 269}, - [5732] = {.lex_state = 301}, + [5730] = {.lex_state = 301}, + [5731] = {.lex_state = 301}, + [5732] = {.lex_state = 290}, [5733] = {.lex_state = 269}, - [5734] = {.lex_state = 269}, - [5735] = {.lex_state = 266}, - [5736] = {.lex_state = 269}, - [5737] = {.lex_state = 290}, - [5738] = {.lex_state = 301}, + [5734] = {.lex_state = 301}, + [5735] = {.lex_state = 301}, + [5736] = {.lex_state = 290}, + [5737] = {.lex_state = 269}, + [5738] = {.lex_state = 290}, [5739] = {.lex_state = 301}, - [5740] = {.lex_state = 282}, - [5741] = {.lex_state = 301}, - [5742] = {.lex_state = 280}, - [5743] = {.lex_state = 290}, - [5744] = {.lex_state = 301}, - [5745] = {.lex_state = 290}, - [5746] = {.lex_state = 301}, - [5747] = {.lex_state = 301}, - [5748] = {.lex_state = 290}, - [5749] = {.lex_state = 301}, - [5750] = {.lex_state = 247}, - [5751] = {.lex_state = 269}, - [5752] = {.lex_state = 269}, - [5753] = {.lex_state = 269}, - [5754] = {.lex_state = 301}, - [5755] = {.lex_state = 269}, - [5756] = {.lex_state = 276}, - [5757] = {.lex_state = 290}, + [5740] = {.lex_state = 269}, + [5741] = {.lex_state = 290}, + [5742] = {.lex_state = 290}, + [5743] = {.lex_state = 301}, + [5744] = {.lex_state = 269}, + [5745] = {.lex_state = 269}, + [5746] = {.lex_state = 290}, + [5747] = {.lex_state = 269}, + [5748] = {.lex_state = 269}, + [5749] = {.lex_state = 269}, + [5750] = {.lex_state = 301}, + [5751] = {.lex_state = 290}, + [5752] = {.lex_state = 280}, + [5753] = {.lex_state = 290}, + [5754] = {.lex_state = 280}, + [5755] = {.lex_state = 290}, + [5756] = {.lex_state = 290}, + [5757] = {.lex_state = 301}, [5758] = {.lex_state = 269}, - [5759] = {.lex_state = 290}, + [5759] = {.lex_state = 269}, [5760] = {.lex_state = 301}, [5761] = {.lex_state = 269}, - [5762] = {.lex_state = 301}, - [5763] = {.lex_state = 301}, - [5764] = {.lex_state = 280}, - [5765] = {.lex_state = 290}, - [5766] = {.lex_state = 269}, + [5762] = {.lex_state = 269}, + [5763] = {.lex_state = 269}, + [5764] = {.lex_state = 269}, + [5765] = {.lex_state = 301}, + [5766] = {.lex_state = 301}, [5767] = {.lex_state = 269}, - [5768] = {.lex_state = 271}, - [5769] = {.lex_state = 290}, - [5770] = {.lex_state = 269}, - [5771] = {.lex_state = 338}, - [5772] = {.lex_state = 269}, - [5773] = {.lex_state = 290}, - [5774] = {.lex_state = 301}, - [5775] = {.lex_state = 269}, - [5776] = {.lex_state = 269}, - [5777] = {.lex_state = 301}, - [5778] = {.lex_state = 301}, + [5768] = {.lex_state = 269}, + [5769] = {.lex_state = 280}, + [5770] = {.lex_state = 280}, + [5771] = {.lex_state = 276}, + [5772] = {.lex_state = 290}, + [5773] = {.lex_state = 301}, + [5774] = {.lex_state = 280}, + [5775] = {.lex_state = 280}, + [5776] = {.lex_state = 280}, + [5777] = {.lex_state = 269}, + [5778] = {.lex_state = 269}, [5779] = {.lex_state = 269}, - [5780] = {.lex_state = 269}, - [5781] = {.lex_state = 290}, + [5780] = {.lex_state = 280}, + [5781] = {.lex_state = 269}, [5782] = {.lex_state = 269}, - [5783] = {.lex_state = 290}, - [5784] = {.lex_state = 301}, - [5785] = {.lex_state = 269}, - [5786] = {.lex_state = 301}, - [5787] = {.lex_state = 269}, - [5788] = {.lex_state = 301}, - [5789] = {.lex_state = 269}, + [5783] = {.lex_state = 301}, + [5784] = {.lex_state = 269}, + [5785] = {.lex_state = 301}, + [5786] = {.lex_state = 290}, + [5787] = {.lex_state = 290}, + [5788] = {.lex_state = 290}, + [5789] = {.lex_state = 290}, [5790] = {.lex_state = 269}, - [5791] = {.lex_state = 285}, - [5792] = {.lex_state = 290}, - [5793] = {.lex_state = 290}, - [5794] = {.lex_state = 301}, - [5795] = {.lex_state = 269}, - [5796] = {.lex_state = 301}, - [5797] = {.lex_state = 301}, - [5798] = {.lex_state = 290}, + [5791] = {.lex_state = 269}, + [5792] = {.lex_state = 269}, + [5793] = {.lex_state = 280}, + [5794] = {.lex_state = 269}, + [5795] = {.lex_state = 301}, + [5796] = {.lex_state = 266}, + [5797] = {.lex_state = 269}, + [5798] = {.lex_state = 269}, [5799] = {.lex_state = 301}, - [5800] = {.lex_state = 269}, + [5800] = {.lex_state = 285}, [5801] = {.lex_state = 301}, - [5802] = {.lex_state = 290}, + [5802] = {.lex_state = 269}, [5803] = {.lex_state = 301}, - [5804] = {.lex_state = 290}, - [5805] = {.lex_state = 301}, - [5806] = {.lex_state = 290}, - [5807] = {.lex_state = 301}, + [5804] = {.lex_state = 266}, + [5805] = {.lex_state = 269}, + [5806] = {.lex_state = 269}, + [5807] = {.lex_state = 247}, [5808] = {.lex_state = 301}, - [5809] = {.lex_state = 301}, - [5810] = {.lex_state = 290}, + [5809] = {.lex_state = 269}, + [5810] = {.lex_state = 282}, [5811] = {.lex_state = 301}, - [5812] = {.lex_state = 280}, + [5812] = {.lex_state = 269}, [5813] = {.lex_state = 301}, - [5814] = {.lex_state = 269}, - [5815] = {.lex_state = 290}, - [5816] = {.lex_state = 269}, - [5817] = {.lex_state = 269}, - [5818] = {.lex_state = 290}, - [5819] = {.lex_state = 301}, + [5814] = {.lex_state = 301}, + [5815] = {.lex_state = 301}, + [5816] = {.lex_state = 301}, + [5817] = {.lex_state = 301}, + [5818] = {.lex_state = 269}, + [5819] = {.lex_state = 269}, [5820] = {.lex_state = 269}, - [5821] = {.lex_state = 290}, - [5822] = {.lex_state = 247}, + [5821] = {.lex_state = 282}, + [5822] = {.lex_state = 269}, [5823] = {.lex_state = 269}, - [5824] = {.lex_state = 290}, - [5825] = {.lex_state = 315}, + [5824] = {.lex_state = 280}, + [5825] = {.lex_state = 247}, [5826] = {.lex_state = 301}, - [5827] = {.lex_state = 269}, - [5828] = {.lex_state = 290}, + [5827] = {.lex_state = 290}, + [5828] = {.lex_state = 269}, [5829] = {.lex_state = 290}, - [5830] = {.lex_state = 269}, - [5831] = {.lex_state = 282}, - [5832] = {.lex_state = 290}, - [5833] = {.lex_state = 269}, + [5830] = {.lex_state = 290}, + [5831] = {.lex_state = 301}, + [5832] = {.lex_state = 301}, + [5833] = {.lex_state = 301}, [5834] = {.lex_state = 301}, - [5835] = {.lex_state = 269}, - [5836] = {.lex_state = 301}, - [5837] = {.lex_state = 280}, - [5838] = {.lex_state = 269}, + [5835] = {.lex_state = 301}, + [5836] = {.lex_state = 282}, + [5837] = {.lex_state = 269}, + [5838] = {.lex_state = 301}, [5839] = {.lex_state = 290}, - [5840] = {.lex_state = 269}, + [5840] = {.lex_state = 301}, [5841] = {.lex_state = 301}, - [5842] = {.lex_state = 301}, - [5843] = {.lex_state = 269}, - [5844] = {.lex_state = 269}, - [5845] = {.lex_state = 301}, + [5842] = {.lex_state = 280}, + [5843] = {.lex_state = 338}, + [5844] = {.lex_state = 301}, + [5845] = {.lex_state = 269}, [5846] = {.lex_state = 301}, - [5847] = {.lex_state = 301}, - [5848] = {.lex_state = 269}, - [5849] = {.lex_state = 301}, - [5850] = {.lex_state = 280}, - [5851] = {.lex_state = 280}, - [5852] = {.lex_state = 247}, + [5847] = {.lex_state = 269}, + [5848] = {.lex_state = 280}, + [5849] = {.lex_state = 269}, + [5850] = {.lex_state = 247}, + [5851] = {.lex_state = 301}, + [5852] = {.lex_state = 301}, [5853] = {.lex_state = 269}, - [5854] = {.lex_state = 269}, - [5855] = {.lex_state = 301}, + [5854] = {.lex_state = 301}, + [5855] = {.lex_state = 280}, [5856] = {.lex_state = 269}, - [5857] = {.lex_state = 280}, - [5858] = {.lex_state = 269}, - [5859] = {.lex_state = 269}, - [5860] = {.lex_state = 269}, - [5861] = {.lex_state = 301}, + [5857] = {.lex_state = 301}, + [5858] = {.lex_state = 301}, + [5859] = {.lex_state = 338}, + [5860] = {.lex_state = 290}, + [5861] = {.lex_state = 269}, [5862] = {.lex_state = 301}, - [5863] = {.lex_state = 269}, + [5863] = {.lex_state = 301}, [5864] = {.lex_state = 269}, - [5865] = {.lex_state = 290}, - [5866] = {.lex_state = 290}, + [5865] = {.lex_state = 269}, + [5866] = {.lex_state = 315}, [5867] = {.lex_state = 301}, [5868] = {.lex_state = 269}, - [5869] = {.lex_state = 301}, - [5870] = {.lex_state = 269}, - [5871] = {.lex_state = 301}, - [5872] = {.lex_state = 290}, - [5873] = {.lex_state = 269}, - [5874] = {.lex_state = 266}, - [5875] = {.lex_state = 269}, - [5876] = {.lex_state = 301}, - [5877] = {.lex_state = 269}, - [5878] = {.lex_state = 338}, - [5879] = {.lex_state = 247}, - [5880] = {.lex_state = 301}, - [5881] = {.lex_state = 280}, - [5882] = {.lex_state = 269}, - [5883] = {.lex_state = 269}, - [5884] = {.lex_state = 271}, - [5885] = {.lex_state = 266}, - [5886] = {.lex_state = 290}, + [5869] = {.lex_state = 269}, + [5870] = {.lex_state = 290}, + [5871] = {.lex_state = 269}, + [5872] = {.lex_state = 269}, + [5873] = {.lex_state = 301}, + [5874] = {.lex_state = 280}, + [5875] = {.lex_state = 278}, + [5876] = {.lex_state = 271}, + [5877] = {.lex_state = 247}, + [5878] = {.lex_state = 301}, + [5879] = {.lex_state = 290}, + [5880] = {.lex_state = 290}, + [5881] = {.lex_state = 301}, + [5882] = {.lex_state = 271}, + [5883] = {.lex_state = 278}, + [5884] = {.lex_state = 301}, + [5885] = {.lex_state = 301}, + [5886] = {.lex_state = 301}, [5887] = {.lex_state = 301}, - [5888] = {.lex_state = 301}, - [5889] = {.lex_state = 282}, - [5890] = {.lex_state = 301}, - [5891] = {.lex_state = 334}, + [5888] = {.lex_state = 290}, + [5889] = {.lex_state = 269}, + [5890] = {.lex_state = 271}, + [5891] = {.lex_state = 301}, [5892] = {.lex_state = 290}, - [5893] = {.lex_state = 280}, - [5894] = {.lex_state = 301}, - [5895] = {.lex_state = 301}, - [5896] = {.lex_state = 301}, - [5897] = {.lex_state = 301}, - [5898] = {.lex_state = 280}, - [5899] = {.lex_state = 271}, - [5900] = {.lex_state = 269}, + [5893] = {.lex_state = 290}, + [5894] = {.lex_state = 290}, + [5895] = {.lex_state = 282}, + [5896] = {.lex_state = 290}, + [5897] = {.lex_state = 266}, + [5898] = {.lex_state = 301}, + [5899] = {.lex_state = 269}, + [5900] = {.lex_state = 301}, [5901] = {.lex_state = 269}, - [5902] = {.lex_state = 269}, - [5903] = {.lex_state = 278}, - [5904] = {.lex_state = 269}, - [5905] = {.lex_state = 269}, - [5906] = {.lex_state = 301}, - [5907] = {.lex_state = 280}, - [5908] = {.lex_state = 280}, + [5902] = {.lex_state = 290}, + [5903] = {.lex_state = 280}, + [5904] = {.lex_state = 301}, + [5905] = {.lex_state = 280}, + [5906] = {.lex_state = 269}, + [5907] = {.lex_state = 301}, + [5908] = {.lex_state = 301}, [5909] = {.lex_state = 269}, [5910] = {.lex_state = 301}, - [5911] = {.lex_state = 280}, - [5912] = {.lex_state = 280}, - [5913] = {.lex_state = 269}, - [5914] = {.lex_state = 290}, + [5911] = {.lex_state = 269}, + [5912] = {.lex_state = 334}, + [5913] = {.lex_state = 290}, + [5914] = {.lex_state = 301}, [5915] = {.lex_state = 269}, - [5916] = {.lex_state = 290}, + [5916] = {.lex_state = 301}, [5917] = {.lex_state = 301}, [5918] = {.lex_state = 301}, - [5919] = {.lex_state = 280}, - [5920] = {.lex_state = 269}, - [5921] = {.lex_state = 278}, - [5922] = {.lex_state = 290}, - [5923] = {.lex_state = 269}, - [5924] = {.lex_state = 282}, - [5925] = {.lex_state = 301}, + [5919] = {.lex_state = 290}, + [5920] = {.lex_state = 301}, + [5921] = {.lex_state = 269}, + [5922] = {.lex_state = 301}, + [5923] = {.lex_state = 290}, + [5924] = {.lex_state = 301}, + [5925] = {.lex_state = 269}, [5926] = {.lex_state = 269}, - [5927] = {.lex_state = 301}, + [5927] = {.lex_state = 269}, [5928] = {.lex_state = 269}, - [5929] = {.lex_state = 301}, - [5930] = {.lex_state = 290}, - [5931] = {.lex_state = 301}, + [5929] = {.lex_state = 269}, + [5930] = {.lex_state = 301}, + [5931] = {.lex_state = 280}, [5932] = {.lex_state = 280}, - [5933] = {.lex_state = 301}, - [5934] = {.lex_state = 280}, + [5933] = {.lex_state = 280}, + [5934] = {.lex_state = 338}, [5935] = {.lex_state = 290}, - [5936] = {.lex_state = 338}, + [5936] = {.lex_state = 280}, [5937] = {.lex_state = 280}, - [5938] = {.lex_state = 338}, - [5939] = {.lex_state = 262}, - [5940] = {.lex_state = 338}, - [5941] = {.lex_state = 293}, - [5942] = {.lex_state = 290}, - [5943] = {.lex_state = 335}, + [5938] = {.lex_state = 280}, + [5939] = {.lex_state = 340}, + [5940] = {.lex_state = 280}, + [5941] = {.lex_state = 338}, + [5942] = {.lex_state = 338}, + [5943] = {.lex_state = 280}, [5944] = {.lex_state = 280}, - [5945] = {.lex_state = 338}, + [5945] = {.lex_state = 280}, [5946] = {.lex_state = 280}, [5947] = {.lex_state = 280}, - [5948] = {.lex_state = 271}, - [5949] = {.lex_state = 280}, + [5948] = {.lex_state = 280}, + [5949] = {.lex_state = 247}, [5950] = {.lex_state = 280}, [5951] = {.lex_state = 280}, [5952] = {.lex_state = 280}, [5953] = {.lex_state = 280}, - [5954] = {.lex_state = 338}, + [5954] = {.lex_state = 247}, [5955] = {.lex_state = 280}, - [5956] = {.lex_state = 280}, + [5956] = {.lex_state = 338}, [5957] = {.lex_state = 280}, - [5958] = {.lex_state = 280}, + [5958] = {.lex_state = 338}, [5959] = {.lex_state = 280}, [5960] = {.lex_state = 280}, [5961] = {.lex_state = 280}, - [5962] = {.lex_state = 340}, + [5962] = {.lex_state = 271}, [5963] = {.lex_state = 280}, - [5964] = {.lex_state = 280}, - [5965] = {.lex_state = 280}, + [5964] = {.lex_state = 335}, + [5965] = {.lex_state = 338}, [5966] = {.lex_state = 280}, - [5967] = {.lex_state = 276}, - [5968] = {.lex_state = 271}, + [5967] = {.lex_state = 280}, + [5968] = {.lex_state = 341}, [5969] = {.lex_state = 280}, - [5970] = {.lex_state = 335}, + [5970] = {.lex_state = 280}, [5971] = {.lex_state = 280}, - [5972] = {.lex_state = 280}, - [5973] = {.lex_state = 340}, - [5974] = {.lex_state = 335}, - [5975] = {.lex_state = 338}, - [5976] = {.lex_state = 280}, + [5972] = {.lex_state = 338}, + [5973] = {.lex_state = 280}, + [5974] = {.lex_state = 338}, + [5975] = {.lex_state = 293}, + [5976] = {.lex_state = 290}, [5977] = {.lex_state = 280}, [5978] = {.lex_state = 280}, - [5979] = {.lex_state = 338}, + [5979] = {.lex_state = 280}, [5980] = {.lex_state = 280}, [5981] = {.lex_state = 280}, - [5982] = {.lex_state = 280}, + [5982] = {.lex_state = 290}, [5983] = {.lex_state = 280}, - [5984] = {.lex_state = 290}, + [5984] = {.lex_state = 280}, [5985] = {.lex_state = 280}, - [5986] = {.lex_state = 280}, - [5987] = {.lex_state = 247}, - [5988] = {.lex_state = 280}, + [5986] = {.lex_state = 264}, + [5987] = {.lex_state = 280}, + [5988] = {.lex_state = 247}, [5989] = {.lex_state = 338}, - [5990] = {.lex_state = 280}, + [5990] = {.lex_state = 340}, [5991] = {.lex_state = 280}, - [5992] = {.lex_state = 280}, - [5993] = {.lex_state = 338}, - [5994] = {.lex_state = 280}, - [5995] = {.lex_state = 341}, - [5996] = {.lex_state = 264}, + [5992] = {.lex_state = 315}, + [5993] = {.lex_state = 335}, + [5994] = {.lex_state = 338}, + [5995] = {.lex_state = 280}, + [5996] = {.lex_state = 247}, [5997] = {.lex_state = 280}, - [5998] = {.lex_state = 280}, - [5999] = {.lex_state = 338}, - [6000] = {.lex_state = 338}, + [5998] = {.lex_state = 335}, + [5999] = {.lex_state = 280}, + [6000] = {.lex_state = 280}, [6001] = {.lex_state = 280}, [6002] = {.lex_state = 280}, - [6003] = {.lex_state = 271}, - [6004] = {.lex_state = 293}, - [6005] = {.lex_state = 338}, - [6006] = {.lex_state = 280}, + [6003] = {.lex_state = 293}, + [6004] = {.lex_state = 280}, + [6005] = {.lex_state = 280}, + [6006] = {.lex_state = 271}, [6007] = {.lex_state = 280}, - [6008] = {.lex_state = 340}, + [6008] = {.lex_state = 338}, [6009] = {.lex_state = 280}, - [6010] = {.lex_state = 338}, + [6010] = {.lex_state = 276}, [6011] = {.lex_state = 280}, - [6012] = {.lex_state = 280}, + [6012] = {.lex_state = 340}, [6013] = {.lex_state = 280}, - [6014] = {.lex_state = 280}, - [6015] = {.lex_state = 280}, - [6016] = {.lex_state = 247}, - [6017] = {.lex_state = 338}, - [6018] = {.lex_state = 247}, - [6019] = {.lex_state = 315}, - [6020] = {.lex_state = 280}, - [6021] = {.lex_state = 280}, - [6022] = {.lex_state = 280}, - [6023] = {.lex_state = 280}, + [6014] = {.lex_state = 262}, + [6015] = {.lex_state = 338}, + [6016] = {.lex_state = 280}, + [6017] = {.lex_state = 280}, + [6018] = {.lex_state = 271}, + [6019] = {.lex_state = 280}, + [6020] = {.lex_state = 338}, + [6021] = {.lex_state = 338}, + [6022] = {.lex_state = 290}, + [6023] = {.lex_state = 338}, [6024] = {.lex_state = 280}, - [6025] = {.lex_state = 247}, - [6026] = {.lex_state = 338}, - [6027] = {.lex_state = 290}, - [6028] = {.lex_state = 338}, - [6029] = {.lex_state = 262}, - [6030] = {.lex_state = 264}, + [6025] = {.lex_state = 338}, + [6026] = {.lex_state = 290}, + [6027] = {.lex_state = 338}, + [6028] = {.lex_state = 262}, + [6029] = {.lex_state = 338}, + [6030] = {.lex_state = 338}, [6031] = {.lex_state = 338}, [6032] = {.lex_state = 338}, [6033] = {.lex_state = 338}, - [6034] = {.lex_state = 290}, - [6035] = {.lex_state = 290}, + [6034] = {.lex_state = 334}, + [6035] = {.lex_state = 264}, [6036] = {.lex_state = 338}, - [6037] = {.lex_state = 290}, + [6037] = {.lex_state = 280}, [6038] = {.lex_state = 334}, [6039] = {.lex_state = 290}, - [6040] = {.lex_state = 290}, + [6040] = {.lex_state = 338}, [6041] = {.lex_state = 290}, [6042] = {.lex_state = 290}, [6043] = {.lex_state = 290}, [6044] = {.lex_state = 290}, - [6045] = {.lex_state = 290}, - [6046] = {.lex_state = 290}, + [6045] = {.lex_state = 338}, + [6046] = {.lex_state = 338}, [6047] = {.lex_state = 290}, [6048] = {.lex_state = 290}, - [6049] = {.lex_state = 290}, - [6050] = {.lex_state = 338}, - [6051] = {.lex_state = 338}, - [6052] = {.lex_state = 290}, + [6049] = {.lex_state = 262}, + [6050] = {.lex_state = 337}, + [6051] = {.lex_state = 264}, + [6052] = {.lex_state = 337}, [6053] = {.lex_state = 280}, - [6054] = {.lex_state = 262}, + [6054] = {.lex_state = 338}, [6055] = {.lex_state = 338}, [6056] = {.lex_state = 338}, - [6057] = {.lex_state = 290}, - [6058] = {.lex_state = 290}, + [6057] = {.lex_state = 280}, + [6058] = {.lex_state = 338}, [6059] = {.lex_state = 338}, [6060] = {.lex_state = 338}, - [6061] = {.lex_state = 338}, - [6062] = {.lex_state = 338}, + [6061] = {.lex_state = 290}, + [6062] = {.lex_state = 290}, [6063] = {.lex_state = 338}, [6064] = {.lex_state = 338}, - [6065] = {.lex_state = 338}, - [6066] = {.lex_state = 276}, - [6067] = {.lex_state = 262}, - [6068] = {.lex_state = 337}, - [6069] = {.lex_state = 337}, + [6065] = {.lex_state = 290}, + [6066] = {.lex_state = 338}, + [6067] = {.lex_state = 338}, + [6068] = {.lex_state = 338}, + [6069] = {.lex_state = 335}, [6070] = {.lex_state = 338}, [6071] = {.lex_state = 290}, - [6072] = {.lex_state = 264}, - [6073] = {.lex_state = 338}, - [6074] = {.lex_state = 338}, - [6075] = {.lex_state = 338}, - [6076] = {.lex_state = 290}, - [6077] = {.lex_state = 338}, - [6078] = {.lex_state = 338}, - [6079] = {.lex_state = 334}, + [6072] = {.lex_state = 290}, + [6073] = {.lex_state = 280}, + [6074] = {.lex_state = 290}, + [6075] = {.lex_state = 264}, + [6076] = {.lex_state = 280}, + [6077] = {.lex_state = 280}, + [6078] = {.lex_state = 280}, + [6079] = {.lex_state = 276}, [6080] = {.lex_state = 338}, [6081] = {.lex_state = 290}, - [6082] = {.lex_state = 338}, + [6082] = {.lex_state = 290}, [6083] = {.lex_state = 290}, - [6084] = {.lex_state = 338}, - [6085] = {.lex_state = 338}, - [6086] = {.lex_state = 335}, - [6087] = {.lex_state = 264}, - [6088] = {.lex_state = 290}, - [6089] = {.lex_state = 338}, + [6084] = {.lex_state = 280}, + [6085] = {.lex_state = 290}, + [6086] = {.lex_state = 338}, + [6087] = {.lex_state = 290}, + [6088] = {.lex_state = 262}, + [6089] = {.lex_state = 290}, [6090] = {.lex_state = 290}, - [6091] = {.lex_state = 338}, - [6092] = {.lex_state = 338}, + [6091] = {.lex_state = 262}, + [6092] = {.lex_state = 290}, [6093] = {.lex_state = 290}, [6094] = {.lex_state = 290}, - [6095] = {.lex_state = 290}, - [6096] = {.lex_state = 290}, + [6095] = {.lex_state = 338}, + [6096] = {.lex_state = 280}, [6097] = {.lex_state = 290}, [6098] = {.lex_state = 290}, - [6099] = {.lex_state = 338}, - [6100] = {.lex_state = 264}, - [6101] = {.lex_state = 290}, + [6099] = {.lex_state = 290}, + [6100] = {.lex_state = 290}, + [6101] = {.lex_state = 264}, [6102] = {.lex_state = 338}, - [6103] = {.lex_state = 290}, - [6104] = {.lex_state = 290}, - [6105] = {.lex_state = 290}, - [6106] = {.lex_state = 290}, + [6103] = {.lex_state = 338}, + [6104] = {.lex_state = 280}, + [6105] = {.lex_state = 280}, + [6106] = {.lex_state = 338}, [6107] = {.lex_state = 290}, - [6108] = {.lex_state = 290}, + [6108] = {.lex_state = 338}, [6109] = {.lex_state = 338}, - [6110] = {.lex_state = 262}, - [6111] = {.lex_state = 280}, - [6112] = {.lex_state = 290}, + [6110] = {.lex_state = 290}, + [6111] = {.lex_state = 338}, + [6112] = {.lex_state = 338}, [6113] = {.lex_state = 290}, - [6114] = {.lex_state = 280}, + [6114] = {.lex_state = 338}, [6115] = {.lex_state = 338}, - [6116] = {.lex_state = 280}, - [6117] = {.lex_state = 338}, - [6118] = {.lex_state = 280}, - [6119] = {.lex_state = 280}, - [6120] = {.lex_state = 280}, - [6121] = {.lex_state = 280}, - [6122] = {.lex_state = 338}, - [6123] = {.lex_state = 280}, - [6124] = {.lex_state = 280}, + [6116] = {.lex_state = 290}, + [6117] = {.lex_state = 290}, + [6118] = {.lex_state = 290}, + [6119] = {.lex_state = 338}, + [6120] = {.lex_state = 290}, + [6121] = {.lex_state = 290}, + [6122] = {.lex_state = 290}, + [6123] = {.lex_state = 290}, + [6124] = {.lex_state = 338}, [6125] = {.lex_state = 338}, - [6126] = {.lex_state = 280}, - [6127] = {.lex_state = 338}, - [6128] = {.lex_state = 280}, - [6129] = {.lex_state = 338}, - [6130] = {.lex_state = 262}, + [6126] = {.lex_state = 277}, + [6127] = {.lex_state = 262}, + [6128] = {.lex_state = 264}, + [6129] = {.lex_state = 264}, + [6130] = {.lex_state = 321}, [6131] = {.lex_state = 264}, - [6132] = {.lex_state = 280}, + [6132] = {.lex_state = 317}, [6133] = {.lex_state = 280}, - [6134] = {.lex_state = 264}, - [6135] = {.lex_state = 277}, - [6136] = {.lex_state = 280}, - [6137] = {.lex_state = 324}, + [6134] = {.lex_state = 262}, + [6135] = {.lex_state = 280}, + [6136] = {.lex_state = 262}, + [6137] = {.lex_state = 280}, [6138] = {.lex_state = 264}, - [6139] = {.lex_state = 262}, + [6139] = {.lex_state = 316}, [6140] = {.lex_state = 280}, - [6141] = {.lex_state = 319}, + [6141] = {.lex_state = 338}, [6142] = {.lex_state = 262}, - [6143] = {.lex_state = 262}, - [6144] = {.lex_state = 338}, - [6145] = {.lex_state = 264}, - [6146] = {.lex_state = 316}, - [6147] = {.lex_state = 276}, + [6143] = {.lex_state = 316}, + [6144] = {.lex_state = 337}, + [6145] = {.lex_state = 280}, + [6146] = {.lex_state = 317}, + [6147] = {.lex_state = 280}, [6148] = {.lex_state = 280}, [6149] = {.lex_state = 280}, - [6150] = {.lex_state = 280}, + [6150] = {.lex_state = 276}, [6151] = {.lex_state = 280}, [6152] = {.lex_state = 280}, - [6153] = {.lex_state = 337}, - [6154] = {.lex_state = 316}, - [6155] = {.lex_state = 335}, + [6153] = {.lex_state = 280}, + [6154] = {.lex_state = 280}, + [6155] = {.lex_state = 280}, [6156] = {.lex_state = 280}, - [6157] = {.lex_state = 316}, + [6157] = {.lex_state = 318}, [6158] = {.lex_state = 280}, - [6159] = {.lex_state = 319}, + [6159] = {.lex_state = 280}, [6160] = {.lex_state = 280}, - [6161] = {.lex_state = 280}, + [6161] = {.lex_state = 334}, [6162] = {.lex_state = 280}, [6163] = {.lex_state = 280}, [6164] = {.lex_state = 280}, - [6165] = {.lex_state = 324}, + [6165] = {.lex_state = 280}, [6166] = {.lex_state = 280}, [6167] = {.lex_state = 280}, - [6168] = {.lex_state = 280}, - [6169] = {.lex_state = 276}, - [6170] = {.lex_state = 280}, + [6168] = {.lex_state = 337}, + [6169] = {.lex_state = 335}, + [6170] = {.lex_state = 321}, [6171] = {.lex_state = 280}, - [6172] = {.lex_state = 280}, - [6173] = {.lex_state = 280}, - [6174] = {.lex_state = 334}, + [6172] = {.lex_state = 317}, + [6173] = {.lex_state = 321}, + [6174] = {.lex_state = 280}, [6175] = {.lex_state = 280}, - [6176] = {.lex_state = 319}, + [6176] = {.lex_state = 280}, [6177] = {.lex_state = 280}, - [6178] = {.lex_state = 341}, + [6178] = {.lex_state = 316}, [6179] = {.lex_state = 280}, - [6180] = {.lex_state = 337}, + [6180] = {.lex_state = 280}, [6181] = {.lex_state = 280}, - [6182] = {.lex_state = 280}, + [6182] = {.lex_state = 276}, [6183] = {.lex_state = 334}, - [6184] = {.lex_state = 318}, - [6185] = {.lex_state = 334}, - [6186] = {.lex_state = 317}, - [6187] = {.lex_state = 341}, + [6184] = {.lex_state = 280}, + [6185] = {.lex_state = 341}, + [6186] = {.lex_state = 341}, + [6187] = {.lex_state = 319}, [6188] = {.lex_state = 280}, - [6189] = {.lex_state = 280}, - [6190] = {.lex_state = 280}, - [6191] = {.lex_state = 280}, - [6192] = {.lex_state = 280}, - [6193] = {.lex_state = 324}, + [6189] = {.lex_state = 334}, + [6190] = {.lex_state = 285}, + [6191] = {.lex_state = 321}, + [6192] = {.lex_state = 321}, + [6193] = {.lex_state = 317}, [6194] = {.lex_state = 285}, - [6195] = {.lex_state = 319}, - [6196] = {.lex_state = 319}, - [6197] = {.lex_state = 285}, + [6195] = {.lex_state = 285}, + [6196] = {.lex_state = 285}, + [6197] = {.lex_state = 321}, [6198] = {.lex_state = 285}, [6199] = {.lex_state = 285}, - [6200] = {.lex_state = 316}, - [6201] = {.lex_state = 316}, + [6200] = {.lex_state = 321}, + [6201] = {.lex_state = 285}, [6202] = {.lex_state = 285}, [6203] = {.lex_state = 285}, - [6204] = {.lex_state = 316}, + [6204] = {.lex_state = 285}, [6205] = {.lex_state = 338}, [6206] = {.lex_state = 285}, - [6207] = {.lex_state = 285}, + [6207] = {.lex_state = 338}, [6208] = {.lex_state = 285}, - [6209] = {.lex_state = 285}, - [6210] = {.lex_state = 338}, + [6209] = {.lex_state = 338}, + [6210] = {.lex_state = 285}, [6211] = {.lex_state = 285}, - [6212] = {.lex_state = 285}, + [6212] = {.lex_state = 338}, [6213] = {.lex_state = 285}, - [6214] = {.lex_state = 285}, - [6215] = {.lex_state = 338}, + [6214] = {.lex_state = 338}, + [6215] = {.lex_state = 285}, [6216] = {.lex_state = 285}, - [6217] = {.lex_state = 316}, - [6218] = {.lex_state = 285}, - [6219] = {.lex_state = 285}, - [6220] = {.lex_state = 324}, - [6221] = {.lex_state = 324}, + [6217] = {.lex_state = 285}, + [6218] = {.lex_state = 317}, + [6219] = {.lex_state = 321}, + [6220] = {.lex_state = 285}, + [6221] = {.lex_state = 317}, [6222] = {.lex_state = 285}, [6223] = {.lex_state = 285}, [6224] = {.lex_state = 285}, - [6225] = {.lex_state = 285}, + [6225] = {.lex_state = 338}, [6226] = {.lex_state = 285}, [6227] = {.lex_state = 285}, [6228] = {.lex_state = 285}, @@ -32960,638 +33037,638 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [6230] = {.lex_state = 285}, [6231] = {.lex_state = 285}, [6232] = {.lex_state = 285}, - [6233] = {.lex_state = 285}, - [6234] = {.lex_state = 338}, - [6235] = {.lex_state = 338}, - [6236] = {.lex_state = 316}, - [6237] = {.lex_state = 316}, + [6233] = {.lex_state = 317}, + [6234] = {.lex_state = 285}, + [6235] = {.lex_state = 285}, + [6236] = {.lex_state = 285}, + [6237] = {.lex_state = 285}, [6238] = {.lex_state = 285}, [6239] = {.lex_state = 285}, - [6240] = {.lex_state = 285}, - [6241] = {.lex_state = 285}, + [6240] = {.lex_state = 338}, + [6241] = {.lex_state = 316}, [6242] = {.lex_state = 285}, - [6243] = {.lex_state = 285}, - [6244] = {.lex_state = 285}, + [6243] = {.lex_state = 317}, + [6244] = {.lex_state = 316}, [6245] = {.lex_state = 285}, - [6246] = {.lex_state = 324}, + [6246] = {.lex_state = 285}, [6247] = {.lex_state = 285}, - [6248] = {.lex_state = 324}, - [6249] = {.lex_state = 324}, - [6250] = {.lex_state = 324}, + [6248] = {.lex_state = 285}, + [6249] = {.lex_state = 317}, + [6250] = {.lex_state = 285}, [6251] = {.lex_state = 285}, - [6252] = {.lex_state = 338}, + [6252] = {.lex_state = 285}, [6253] = {.lex_state = 285}, [6254] = {.lex_state = 285}, - [6255] = {.lex_state = 285}, + [6255] = {.lex_state = 321}, [6256] = {.lex_state = 279}, [6257] = {.lex_state = 285}, [6258] = {.lex_state = 285}, - [6259] = {.lex_state = 285}, - [6260] = {.lex_state = 338}, - [6261] = {.lex_state = 285}, - [6262] = {.lex_state = 285}, - [6263] = {.lex_state = 338}, - [6264] = {.lex_state = 338}, - [6265] = {.lex_state = 280}, - [6266] = {.lex_state = 280}, - [6267] = {.lex_state = 277}, - [6268] = {.lex_state = 277}, - [6269] = {.lex_state = 277}, - [6270] = {.lex_state = 319}, - [6271] = {.lex_state = 319}, - [6272] = {.lex_state = 277}, - [6273] = {.lex_state = 319}, - [6274] = {.lex_state = 319}, - [6275] = {.lex_state = 277}, - [6276] = {.lex_state = 319}, - [6277] = {.lex_state = 277}, - [6278] = {.lex_state = 319}, + [6259] = {.lex_state = 277}, + [6260] = {.lex_state = 277}, + [6261] = {.lex_state = 315}, + [6262] = {.lex_state = 316}, + [6263] = {.lex_state = 277}, + [6264] = {.lex_state = 277}, + [6265] = {.lex_state = 277}, + [6266] = {.lex_state = 277}, + [6267] = {.lex_state = 316}, + [6268] = {.lex_state = 316}, + [6269] = {.lex_state = 280}, + [6270] = {.lex_state = 338}, + [6271] = {.lex_state = 338}, + [6272] = {.lex_state = 338}, + [6273] = {.lex_state = 316}, + [6274] = {.lex_state = 280}, + [6275] = {.lex_state = 338}, + [6276] = {.lex_state = 338}, + [6277] = {.lex_state = 338}, + [6278] = {.lex_state = 316}, [6279] = {.lex_state = 277}, - [6280] = {.lex_state = 319}, - [6281] = {.lex_state = 319}, + [6280] = {.lex_state = 277}, + [6281] = {.lex_state = 277}, [6282] = {.lex_state = 280}, - [6283] = {.lex_state = 338}, - [6284] = {.lex_state = 315}, - [6285] = {.lex_state = 338}, - [6286] = {.lex_state = 319}, - [6287] = {.lex_state = 338}, - [6288] = {.lex_state = 280}, - [6289] = {.lex_state = 338}, - [6290] = {.lex_state = 277}, - [6291] = {.lex_state = 277}, - [6292] = {.lex_state = 319}, - [6293] = {.lex_state = 315}, - [6294] = {.lex_state = 319}, - [6295] = {.lex_state = 319}, - [6296] = {.lex_state = 315}, + [6283] = {.lex_state = 280}, + [6284] = {.lex_state = 316}, + [6285] = {.lex_state = 316}, + [6286] = {.lex_state = 316}, + [6287] = {.lex_state = 316}, + [6288] = {.lex_state = 316}, + [6289] = {.lex_state = 280}, + [6290] = {.lex_state = 315}, + [6291] = {.lex_state = 280}, + [6292] = {.lex_state = 316}, + [6293] = {.lex_state = 282}, + [6294] = {.lex_state = 315}, + [6295] = {.lex_state = 316}, + [6296] = {.lex_state = 280}, [6297] = {.lex_state = 280}, - [6298] = {.lex_state = 280}, - [6299] = {.lex_state = 319}, + [6298] = {.lex_state = 277}, + [6299] = {.lex_state = 316}, [6300] = {.lex_state = 280}, [6301] = {.lex_state = 280}, [6302] = {.lex_state = 280}, - [6303] = {.lex_state = 320}, - [6304] = {.lex_state = 315}, - [6305] = {.lex_state = 277}, + [6303] = {.lex_state = 280}, + [6304] = {.lex_state = 277}, + [6305] = {.lex_state = 338}, [6306] = {.lex_state = 277}, - [6307] = {.lex_state = 280}, + [6307] = {.lex_state = 316}, [6308] = {.lex_state = 280}, - [6309] = {.lex_state = 280}, - [6310] = {.lex_state = 315}, - [6311] = {.lex_state = 280}, - [6312] = {.lex_state = 334}, - [6313] = {.lex_state = 280}, + [6309] = {.lex_state = 316}, + [6310] = {.lex_state = 280}, + [6311] = {.lex_state = 337}, + [6312] = {.lex_state = 280}, + [6313] = {.lex_state = 277}, [6314] = {.lex_state = 277}, - [6315] = {.lex_state = 319}, - [6316] = {.lex_state = 277}, + [6315] = {.lex_state = 334}, + [6316] = {.lex_state = 280}, [6317] = {.lex_state = 340}, - [6318] = {.lex_state = 277}, - [6319] = {.lex_state = 277}, - [6320] = {.lex_state = 280}, - [6321] = {.lex_state = 277}, + [6318] = {.lex_state = 280}, + [6319] = {.lex_state = 280}, + [6320] = {.lex_state = 315}, + [6321] = {.lex_state = 280}, [6322] = {.lex_state = 280}, - [6323] = {.lex_state = 319}, - [6324] = {.lex_state = 277}, - [6325] = {.lex_state = 337}, + [6323] = {.lex_state = 280}, + [6324] = {.lex_state = 280}, + [6325] = {.lex_state = 315}, [6326] = {.lex_state = 280}, - [6327] = {.lex_state = 280}, + [6327] = {.lex_state = 282}, [6328] = {.lex_state = 280}, - [6329] = {.lex_state = 280}, - [6330] = {.lex_state = 280}, + [6329] = {.lex_state = 316}, + [6330] = {.lex_state = 337}, [6331] = {.lex_state = 280}, - [6332] = {.lex_state = 319}, + [6332] = {.lex_state = 316}, [6333] = {.lex_state = 280}, - [6334] = {.lex_state = 280}, - [6335] = {.lex_state = 337}, + [6334] = {.lex_state = 315}, + [6335] = {.lex_state = 280}, [6336] = {.lex_state = 280}, [6337] = {.lex_state = 280}, - [6338] = {.lex_state = 280}, - [6339] = {.lex_state = 280}, - [6340] = {.lex_state = 282}, - [6341] = {.lex_state = 319}, + [6338] = {.lex_state = 277}, + [6339] = {.lex_state = 316}, + [6340] = {.lex_state = 277}, + [6341] = {.lex_state = 337}, [6342] = {.lex_state = 280}, - [6343] = {.lex_state = 280}, - [6344] = {.lex_state = 280}, + [6343] = {.lex_state = 315}, + [6344] = {.lex_state = 315}, [6345] = {.lex_state = 315}, [6346] = {.lex_state = 280}, [6347] = {.lex_state = 280}, [6348] = {.lex_state = 280}, [6349] = {.lex_state = 280}, - [6350] = {.lex_state = 277}, - [6351] = {.lex_state = 337}, - [6352] = {.lex_state = 315}, - [6353] = {.lex_state = 319}, - [6354] = {.lex_state = 280}, - [6355] = {.lex_state = 315}, - [6356] = {.lex_state = 315}, - [6357] = {.lex_state = 319}, + [6350] = {.lex_state = 280}, + [6351] = {.lex_state = 280}, + [6352] = {.lex_state = 280}, + [6353] = {.lex_state = 280}, + [6354] = {.lex_state = 316}, + [6355] = {.lex_state = 277}, + [6356] = {.lex_state = 277}, + [6357] = {.lex_state = 280}, [6358] = {.lex_state = 280}, - [6359] = {.lex_state = 280}, - [6360] = {.lex_state = 338}, - [6361] = {.lex_state = 280}, + [6359] = {.lex_state = 315}, + [6360] = {.lex_state = 315}, + [6361] = {.lex_state = 338}, [6362] = {.lex_state = 280}, - [6363] = {.lex_state = 277}, + [6363] = {.lex_state = 320}, [6364] = {.lex_state = 280}, [6365] = {.lex_state = 280}, - [6366] = {.lex_state = 280}, - [6367] = {.lex_state = 315}, + [6366] = {.lex_state = 277}, + [6367] = {.lex_state = 320}, [6368] = {.lex_state = 280}, [6369] = {.lex_state = 280}, [6370] = {.lex_state = 280}, - [6371] = {.lex_state = 320}, - [6372] = {.lex_state = 338}, - [6373] = {.lex_state = 280}, - [6374] = {.lex_state = 282}, - [6375] = {.lex_state = 280}, - [6376] = {.lex_state = 315}, - [6377] = {.lex_state = 338}, + [6371] = {.lex_state = 280}, + [6372] = {.lex_state = 280}, + [6373] = {.lex_state = 283}, + [6374] = {.lex_state = 338}, + [6375] = {.lex_state = 316}, + [6376] = {.lex_state = 283}, + [6377] = {.lex_state = 317}, [6378] = {.lex_state = 280}, - [6379] = {.lex_state = 279}, + [6379] = {.lex_state = 338}, [6380] = {.lex_state = 334}, - [6381] = {.lex_state = 279}, - [6382] = {.lex_state = 280}, + [6381] = {.lex_state = 334}, + [6382] = {.lex_state = 334}, [6383] = {.lex_state = 334}, - [6384] = {.lex_state = 338}, - [6385] = {.lex_state = 334}, - [6386] = {.lex_state = 283}, - [6387] = {.lex_state = 338}, - [6388] = {.lex_state = 338}, - [6389] = {.lex_state = 279}, - [6390] = {.lex_state = 279}, - [6391] = {.lex_state = 334}, + [6384] = {.lex_state = 334}, + [6385] = {.lex_state = 280}, + [6386] = {.lex_state = 334}, + [6387] = {.lex_state = 334}, + [6388] = {.lex_state = 334}, + [6389] = {.lex_state = 280}, + [6390] = {.lex_state = 334}, + [6391] = {.lex_state = 321}, [6392] = {.lex_state = 279}, - [6393] = {.lex_state = 324}, - [6394] = {.lex_state = 280}, - [6395] = {.lex_state = 324}, + [6393] = {.lex_state = 317}, + [6394] = {.lex_state = 334}, + [6395] = {.lex_state = 321}, [6396] = {.lex_state = 334}, - [6397] = {.lex_state = 324}, - [6398] = {.lex_state = 334}, + [6397] = {.lex_state = 321}, + [6398] = {.lex_state = 338}, [6399] = {.lex_state = 279}, - [6400] = {.lex_state = 324}, - [6401] = {.lex_state = 341}, - [6402] = {.lex_state = 283}, - [6403] = {.lex_state = 316}, - [6404] = {.lex_state = 283}, - [6405] = {.lex_state = 338}, - [6406] = {.lex_state = 334}, + [6400] = {.lex_state = 338}, + [6401] = {.lex_state = 283}, + [6402] = {.lex_state = 334}, + [6403] = {.lex_state = 321}, + [6404] = {.lex_state = 317}, + [6405] = {.lex_state = 279}, + [6406] = {.lex_state = 341}, [6407] = {.lex_state = 334}, - [6408] = {.lex_state = 316}, - [6409] = {.lex_state = 319}, - [6410] = {.lex_state = 319}, - [6411] = {.lex_state = 334}, - [6412] = {.lex_state = 316}, - [6413] = {.lex_state = 334}, + [6408] = {.lex_state = 334}, + [6409] = {.lex_state = 279}, + [6410] = {.lex_state = 283}, + [6411] = {.lex_state = 316}, + [6412] = {.lex_state = 279}, + [6413] = {.lex_state = 279}, [6414] = {.lex_state = 334}, [6415] = {.lex_state = 334}, - [6416] = {.lex_state = 334}, + [6416] = {.lex_state = 341}, [6417] = {.lex_state = 279}, [6418] = {.lex_state = 334}, - [6419] = {.lex_state = 283}, + [6419] = {.lex_state = 334}, [6420] = {.lex_state = 341}, - [6421] = {.lex_state = 334}, - [6422] = {.lex_state = 334}, - [6423] = {.lex_state = 334}, - [6424] = {.lex_state = 316}, - [6425] = {.lex_state = 338}, - [6426] = {.lex_state = 341}, + [6421] = {.lex_state = 338}, + [6422] = {.lex_state = 338}, + [6423] = {.lex_state = 317}, + [6424] = {.lex_state = 280}, + [6425] = {.lex_state = 280}, + [6426] = {.lex_state = 316}, [6427] = {.lex_state = 334}, - [6428] = {.lex_state = 280}, + [6428] = {.lex_state = 334}, [6429] = {.lex_state = 280}, - [6430] = {.lex_state = 319}, + [6430] = {.lex_state = 280}, [6431] = {.lex_state = 280}, - [6432] = {.lex_state = 280}, + [6432] = {.lex_state = 316}, [6433] = {.lex_state = 280}, [6434] = {.lex_state = 280}, [6435] = {.lex_state = 280}, [6436] = {.lex_state = 280}, [6437] = {.lex_state = 280}, - [6438] = {.lex_state = 277}, + [6438] = {.lex_state = 280}, [6439] = {.lex_state = 280}, - [6440] = {.lex_state = 280}, - [6441] = {.lex_state = 277}, - [6442] = {.lex_state = 319}, - [6443] = {.lex_state = 277}, - [6444] = {.lex_state = 319}, - [6445] = {.lex_state = 319}, - [6446] = {.lex_state = 277}, - [6447] = {.lex_state = 280}, - [6448] = {.lex_state = 319}, - [6449] = {.lex_state = 319}, - [6450] = {.lex_state = 280}, - [6451] = {.lex_state = 338}, - [6452] = {.lex_state = 338}, - [6453] = {.lex_state = 319}, - [6454] = {.lex_state = 319}, - [6455] = {.lex_state = 280}, - [6456] = {.lex_state = 319}, - [6457] = {.lex_state = 277}, - [6458] = {.lex_state = 338}, + [6440] = {.lex_state = 316}, + [6441] = {.lex_state = 316}, + [6442] = {.lex_state = 316}, + [6443] = {.lex_state = 316}, + [6444] = {.lex_state = 316}, + [6445] = {.lex_state = 316}, + [6446] = {.lex_state = 316}, + [6447] = {.lex_state = 316}, + [6448] = {.lex_state = 277}, + [6449] = {.lex_state = 277}, + [6450] = {.lex_state = 277}, + [6451] = {.lex_state = 277}, + [6452] = {.lex_state = 277}, + [6453] = {.lex_state = 277}, + [6454] = {.lex_state = 277}, + [6455] = {.lex_state = 277}, + [6456] = {.lex_state = 316}, + [6457] = {.lex_state = 316}, + [6458] = {.lex_state = 316}, [6459] = {.lex_state = 338}, - [6460] = {.lex_state = 319}, - [6461] = {.lex_state = 319}, - [6462] = {.lex_state = 319}, - [6463] = {.lex_state = 277}, + [6460] = {.lex_state = 338}, + [6461] = {.lex_state = 280}, + [6462] = {.lex_state = 277}, + [6463] = {.lex_state = 280}, [6464] = {.lex_state = 338}, - [6465] = {.lex_state = 319}, - [6466] = {.lex_state = 319}, - [6467] = {.lex_state = 337}, - [6468] = {.lex_state = 319}, - [6469] = {.lex_state = 338}, - [6470] = {.lex_state = 319}, - [6471] = {.lex_state = 319}, - [6472] = {.lex_state = 319}, - [6473] = {.lex_state = 319}, + [6465] = {.lex_state = 338}, + [6466] = {.lex_state = 316}, + [6467] = {.lex_state = 316}, + [6468] = {.lex_state = 316}, + [6469] = {.lex_state = 316}, + [6470] = {.lex_state = 316}, + [6471] = {.lex_state = 277}, + [6472] = {.lex_state = 338}, + [6473] = {.lex_state = 316}, [6474] = {.lex_state = 337}, - [6475] = {.lex_state = 280}, - [6476] = {.lex_state = 319}, - [6477] = {.lex_state = 319}, - [6478] = {.lex_state = 334}, - [6479] = {.lex_state = 280}, - [6480] = {.lex_state = 280}, - [6481] = {.lex_state = 334}, + [6475] = {.lex_state = 338}, + [6476] = {.lex_state = 337}, + [6477] = {.lex_state = 316}, + [6478] = {.lex_state = 316}, + [6479] = {.lex_state = 316}, + [6480] = {.lex_state = 316}, + [6481] = {.lex_state = 280}, [6482] = {.lex_state = 280}, - [6483] = {.lex_state = 280}, - [6484] = {.lex_state = 334}, - [6485] = {.lex_state = 334}, - [6486] = {.lex_state = 334}, - [6487] = {.lex_state = 280}, - [6488] = {.lex_state = 334}, + [6483] = {.lex_state = 316}, + [6484] = {.lex_state = 280}, + [6485] = {.lex_state = 316}, + [6486] = {.lex_state = 280}, + [6487] = {.lex_state = 334}, + [6488] = {.lex_state = 280}, [6489] = {.lex_state = 334}, - [6490] = {.lex_state = 319}, - [6491] = {.lex_state = 316}, - [6492] = {.lex_state = 319}, - [6493] = {.lex_state = 319}, - [6494] = {.lex_state = 319}, - [6495] = {.lex_state = 319}, - [6496] = {.lex_state = 277}, - [6497] = {.lex_state = 277}, - [6498] = {.lex_state = 277}, - [6499] = {.lex_state = 277}, - [6500] = {.lex_state = 334}, - [6501] = {.lex_state = 319}, + [6490] = {.lex_state = 334}, + [6491] = {.lex_state = 334}, + [6492] = {.lex_state = 334}, + [6493] = {.lex_state = 334}, + [6494] = {.lex_state = 317}, + [6495] = {.lex_state = 280}, + [6496] = {.lex_state = 280}, + [6497] = {.lex_state = 316}, + [6498] = {.lex_state = 316}, + [6499] = {.lex_state = 280}, + [6500] = {.lex_state = 280}, + [6501] = {.lex_state = 280}, [6502] = {.lex_state = 280}, [6503] = {.lex_state = 280}, [6504] = {.lex_state = 280}, - [6505] = {.lex_state = 319}, - [6506] = {.lex_state = 337}, - [6507] = {.lex_state = 337}, - [6508] = {.lex_state = 337}, + [6505] = {.lex_state = 280}, + [6506] = {.lex_state = 280}, + [6507] = {.lex_state = 280}, + [6508] = {.lex_state = 280}, [6509] = {.lex_state = 280}, [6510] = {.lex_state = 280}, [6511] = {.lex_state = 280}, [6512] = {.lex_state = 280}, - [6513] = {.lex_state = 319}, + [6513] = {.lex_state = 316}, [6514] = {.lex_state = 280}, - [6515] = {.lex_state = 277}, + [6515] = {.lex_state = 337}, [6516] = {.lex_state = 280}, - [6517] = {.lex_state = 280}, + [6517] = {.lex_state = 337}, [6518] = {.lex_state = 280}, - [6519] = {.lex_state = 280}, + [6519] = {.lex_state = 277}, [6520] = {.lex_state = 280}, [6521] = {.lex_state = 280}, - [6522] = {.lex_state = 316}, - [6523] = {.lex_state = 316}, - [6524] = {.lex_state = 280}, - [6525] = {.lex_state = 280}, - [6526] = {.lex_state = 337}, - [6527] = {.lex_state = 277}, + [6522] = {.lex_state = 280}, + [6523] = {.lex_state = 280}, + [6524] = {.lex_state = 277}, + [6525] = {.lex_state = 316}, + [6526] = {.lex_state = 277}, + [6527] = {.lex_state = 337}, [6528] = {.lex_state = 337}, - [6529] = {.lex_state = 280}, - [6530] = {.lex_state = 280}, + [6529] = {.lex_state = 337}, + [6530] = {.lex_state = 316}, [6531] = {.lex_state = 280}, - [6532] = {.lex_state = 335}, + [6532] = {.lex_state = 280}, [6533] = {.lex_state = 280}, - [6534] = {.lex_state = 277}, - [6535] = {.lex_state = 319}, - [6536] = {.lex_state = 324}, - [6537] = {.lex_state = 280}, - [6538] = {.lex_state = 280}, - [6539] = {.lex_state = 324}, - [6540] = {.lex_state = 277}, - [6541] = {.lex_state = 280}, - [6542] = {.lex_state = 319}, + [6534] = {.lex_state = 280}, + [6535] = {.lex_state = 321}, + [6536] = {.lex_state = 321}, + [6537] = {.lex_state = 337}, + [6538] = {.lex_state = 337}, + [6539] = {.lex_state = 335}, + [6540] = {.lex_state = 280}, + [6541] = {.lex_state = 317}, + [6542] = {.lex_state = 317}, [6543] = {.lex_state = 280}, - [6544] = {.lex_state = 280}, - [6545] = {.lex_state = 280}, + [6544] = {.lex_state = 316}, + [6545] = {.lex_state = 277}, [6546] = {.lex_state = 280}, [6547] = {.lex_state = 280}, [6548] = {.lex_state = 280}, - [6549] = {.lex_state = 337}, + [6549] = {.lex_state = 280}, [6550] = {.lex_state = 280}, [6551] = {.lex_state = 280}, [6552] = {.lex_state = 280}, - [6553] = {.lex_state = 280}, - [6554] = {.lex_state = 280}, - [6555] = {.lex_state = 280}, - [6556] = {.lex_state = 337}, - [6557] = {.lex_state = 319}, - [6558] = {.lex_state = 280}, - [6559] = {.lex_state = 280}, - [6560] = {.lex_state = 341}, - [6561] = {.lex_state = 319}, - [6562] = {.lex_state = 337}, - [6563] = {.lex_state = 333}, - [6564] = {.lex_state = 277}, - [6565] = {.lex_state = 277}, - [6566] = {.lex_state = 280}, - [6567] = {.lex_state = 338}, - [6568] = {.lex_state = 280}, - [6569] = {.lex_state = 319}, - [6570] = {.lex_state = 337}, - [6571] = {.lex_state = 319}, + [6553] = {.lex_state = 316}, + [6554] = {.lex_state = 277}, + [6555] = {.lex_state = 277}, + [6556] = {.lex_state = 338}, + [6557] = {.lex_state = 316}, + [6558] = {.lex_state = 316}, + [6559] = {.lex_state = 316}, + [6560] = {.lex_state = 316}, + [6561] = {.lex_state = 277}, + [6562] = {.lex_state = 277}, + [6563] = {.lex_state = 277}, + [6564] = {.lex_state = 280}, + [6565] = {.lex_state = 316}, + [6566] = {.lex_state = 337}, + [6567] = {.lex_state = 280}, + [6568] = {.lex_state = 316}, + [6569] = {.lex_state = 280}, + [6570] = {.lex_state = 316}, + [6571] = {.lex_state = 316}, [6572] = {.lex_state = 280}, - [6573] = {.lex_state = 277}, - [6574] = {.lex_state = 334}, - [6575] = {.lex_state = 280}, - [6576] = {.lex_state = 319}, - [6577] = {.lex_state = 319}, + [6573] = {.lex_state = 280}, + [6574] = {.lex_state = 316}, + [6575] = {.lex_state = 277}, + [6576] = {.lex_state = 316}, + [6577] = {.lex_state = 280}, [6578] = {.lex_state = 280}, [6579] = {.lex_state = 277}, - [6580] = {.lex_state = 319}, - [6581] = {.lex_state = 337}, - [6582] = {.lex_state = 280}, - [6583] = {.lex_state = 280}, - [6584] = {.lex_state = 319}, + [6580] = {.lex_state = 316}, + [6581] = {.lex_state = 316}, + [6582] = {.lex_state = 316}, + [6583] = {.lex_state = 316}, + [6584] = {.lex_state = 280}, [6585] = {.lex_state = 280}, - [6586] = {.lex_state = 280}, - [6587] = {.lex_state = 280}, - [6588] = {.lex_state = 319}, + [6586] = {.lex_state = 316}, + [6587] = {.lex_state = 337}, + [6588] = {.lex_state = 280}, [6589] = {.lex_state = 280}, [6590] = {.lex_state = 280}, - [6591] = {.lex_state = 319}, - [6592] = {.lex_state = 319}, - [6593] = {.lex_state = 277}, - [6594] = {.lex_state = 280}, + [6591] = {.lex_state = 280}, + [6592] = {.lex_state = 280}, + [6593] = {.lex_state = 316}, + [6594] = {.lex_state = 277}, [6595] = {.lex_state = 280}, - [6596] = {.lex_state = 277}, + [6596] = {.lex_state = 280}, [6597] = {.lex_state = 280}, - [6598] = {.lex_state = 319}, + [6598] = {.lex_state = 283}, [6599] = {.lex_state = 280}, - [6600] = {.lex_state = 283}, - [6601] = {.lex_state = 334}, + [6600] = {.lex_state = 277}, + [6601] = {.lex_state = 277}, [6602] = {.lex_state = 277}, - [6603] = {.lex_state = 280}, - [6604] = {.lex_state = 280}, + [6603] = {.lex_state = 316}, + [6604] = {.lex_state = 283}, [6605] = {.lex_state = 280}, - [6606] = {.lex_state = 319}, - [6607] = {.lex_state = 277}, + [6606] = {.lex_state = 280}, + [6607] = {.lex_state = 316}, [6608] = {.lex_state = 277}, - [6609] = {.lex_state = 280}, + [6609] = {.lex_state = 313}, [6610] = {.lex_state = 277}, - [6611] = {.lex_state = 283}, - [6612] = {.lex_state = 337}, + [6611] = {.lex_state = 280}, + [6612] = {.lex_state = 277}, [6613] = {.lex_state = 277}, - [6614] = {.lex_state = 277}, + [6614] = {.lex_state = 337}, [6615] = {.lex_state = 277}, [6616] = {.lex_state = 277}, - [6617] = {.lex_state = 277}, + [6617] = {.lex_state = 280}, [6618] = {.lex_state = 280}, - [6619] = {.lex_state = 280}, - [6620] = {.lex_state = 319}, - [6621] = {.lex_state = 280}, + [6619] = {.lex_state = 316}, + [6620] = {.lex_state = 277}, + [6621] = {.lex_state = 277}, [6622] = {.lex_state = 277}, [6623] = {.lex_state = 277}, - [6624] = {.lex_state = 277}, + [6624] = {.lex_state = 280}, [6625] = {.lex_state = 277}, [6626] = {.lex_state = 277}, - [6627] = {.lex_state = 280}, - [6628] = {.lex_state = 280}, - [6629] = {.lex_state = 319}, + [6627] = {.lex_state = 277}, + [6628] = {.lex_state = 277}, + [6629] = {.lex_state = 277}, [6630] = {.lex_state = 277}, [6631] = {.lex_state = 277}, [6632] = {.lex_state = 277}, - [6633] = {.lex_state = 277}, - [6634] = {.lex_state = 280}, - [6635] = {.lex_state = 277}, - [6636] = {.lex_state = 313}, - [6637] = {.lex_state = 277}, - [6638] = {.lex_state = 277}, - [6639] = {.lex_state = 277}, - [6640] = {.lex_state = 277}, - [6641] = {.lex_state = 319}, - [6642] = {.lex_state = 321}, - [6643] = {.lex_state = 319}, + [6633] = {.lex_state = 280}, + [6634] = {.lex_state = 277}, + [6635] = {.lex_state = 280}, + [6636] = {.lex_state = 280}, + [6637] = {.lex_state = 316}, + [6638] = {.lex_state = 322}, + [6639] = {.lex_state = 316}, + [6640] = {.lex_state = 280}, + [6641] = {.lex_state = 316}, + [6642] = {.lex_state = 277}, + [6643] = {.lex_state = 277}, [6644] = {.lex_state = 280}, - [6645] = {.lex_state = 337}, - [6646] = {.lex_state = 319}, - [6647] = {.lex_state = 319}, - [6648] = {.lex_state = 280}, + [6645] = {.lex_state = 322}, + [6646] = {.lex_state = 280}, + [6647] = {.lex_state = 280}, + [6648] = {.lex_state = 316}, [6649] = {.lex_state = 277}, [6650] = {.lex_state = 277}, [6651] = {.lex_state = 277}, - [6652] = {.lex_state = 321}, + [6652] = {.lex_state = 280}, [6653] = {.lex_state = 280}, - [6654] = {.lex_state = 319}, + [6654] = {.lex_state = 277}, [6655] = {.lex_state = 277}, - [6656] = {.lex_state = 277}, - [6657] = {.lex_state = 277}, - [6658] = {.lex_state = 319}, - [6659] = {.lex_state = 319}, - [6660] = {.lex_state = 319}, - [6661] = {.lex_state = 319}, - [6662] = {.lex_state = 277}, - [6663] = {.lex_state = 277}, - [6664] = {.lex_state = 338}, + [6656] = {.lex_state = 316}, + [6657] = {.lex_state = 280}, + [6658] = {.lex_state = 338}, + [6659] = {.lex_state = 316}, + [6660] = {.lex_state = 277}, + [6661] = {.lex_state = 277}, + [6662] = {.lex_state = 316}, + [6663] = {.lex_state = 316}, + [6664] = {.lex_state = 277}, [6665] = {.lex_state = 277}, - [6666] = {.lex_state = 319}, - [6667] = {.lex_state = 277}, - [6668] = {.lex_state = 319}, - [6669] = {.lex_state = 319}, - [6670] = {.lex_state = 319}, - [6671] = {.lex_state = 319}, - [6672] = {.lex_state = 319}, - [6673] = {.lex_state = 319}, - [6674] = {.lex_state = 319}, + [6666] = {.lex_state = 277}, + [6667] = {.lex_state = 316}, + [6668] = {.lex_state = 277}, + [6669] = {.lex_state = 277}, + [6670] = {.lex_state = 316}, + [6671] = {.lex_state = 316}, + [6672] = {.lex_state = 316}, + [6673] = {.lex_state = 316}, + [6674] = {.lex_state = 316}, [6675] = {.lex_state = 277}, - [6676] = {.lex_state = 277}, - [6677] = {.lex_state = 277}, - [6678] = {.lex_state = 319}, - [6679] = {.lex_state = 319}, - [6680] = {.lex_state = 319}, - [6681] = {.lex_state = 277}, - [6682] = {.lex_state = 277}, + [6676] = {.lex_state = 280}, + [6677] = {.lex_state = 316}, + [6678] = {.lex_state = 316}, + [6679] = {.lex_state = 316}, + [6680] = {.lex_state = 316}, + [6681] = {.lex_state = 316}, + [6682] = {.lex_state = 280}, [6683] = {.lex_state = 280}, - [6684] = {.lex_state = 277}, - [6685] = {.lex_state = 277}, - [6686] = {.lex_state = 280}, - [6687] = {.lex_state = 280}, - [6688] = {.lex_state = 280}, - [6689] = {.lex_state = 277}, - [6690] = {.lex_state = 337}, + [6684] = {.lex_state = 316}, + [6685] = {.lex_state = 337}, + [6686] = {.lex_state = 337}, + [6687] = {.lex_state = 337}, + [6688] = {.lex_state = 337}, + [6689] = {.lex_state = 316}, + [6690] = {.lex_state = 341}, [6691] = {.lex_state = 337}, - [6692] = {.lex_state = 337}, - [6693] = {.lex_state = 337}, - [6694] = {.lex_state = 280}, - [6695] = {.lex_state = 319}, - [6696] = {.lex_state = 280}, - [6697] = {.lex_state = 319}, - [6698] = {.lex_state = 319}, + [6692] = {.lex_state = 280}, + [6693] = {.lex_state = 316}, + [6694] = {.lex_state = 316}, + [6695] = {.lex_state = 316}, + [6696] = {.lex_state = 277}, + [6697] = {.lex_state = 341}, + [6698] = {.lex_state = 341}, [6699] = {.lex_state = 341}, - [6700] = {.lex_state = 337}, - [6701] = {.lex_state = 319}, - [6702] = {.lex_state = 319}, - [6703] = {.lex_state = 280}, - [6704] = {.lex_state = 280}, - [6705] = {.lex_state = 337}, - [6706] = {.lex_state = 319}, - [6707] = {.lex_state = 341}, - [6708] = {.lex_state = 319}, - [6709] = {.lex_state = 319}, - [6710] = {.lex_state = 341}, - [6711] = {.lex_state = 277}, - [6712] = {.lex_state = 277}, - [6713] = {.lex_state = 319}, - [6714] = {.lex_state = 319}, - [6715] = {.lex_state = 319}, - [6716] = {.lex_state = 319}, - [6717] = {.lex_state = 319}, - [6718] = {.lex_state = 319}, - [6719] = {.lex_state = 337}, - [6720] = {.lex_state = 337}, - [6721] = {.lex_state = 337}, - [6722] = {.lex_state = 337}, - [6723] = {.lex_state = 280}, - [6724] = {.lex_state = 277}, - [6725] = {.lex_state = 280}, - [6726] = {.lex_state = 337}, - [6727] = {.lex_state = 337}, - [6728] = {.lex_state = 319}, - [6729] = {.lex_state = 319}, - [6730] = {.lex_state = 277}, + [6700] = {.lex_state = 334}, + [6701] = {.lex_state = 316}, + [6702] = {.lex_state = 277}, + [6703] = {.lex_state = 277}, + [6704] = {.lex_state = 316}, + [6705] = {.lex_state = 280}, + [6706] = {.lex_state = 334}, + [6707] = {.lex_state = 316}, + [6708] = {.lex_state = 316}, + [6709] = {.lex_state = 316}, + [6710] = {.lex_state = 337}, + [6711] = {.lex_state = 337}, + [6712] = {.lex_state = 337}, + [6713] = {.lex_state = 337}, + [6714] = {.lex_state = 337}, + [6715] = {.lex_state = 337}, + [6716] = {.lex_state = 337}, + [6717] = {.lex_state = 333}, + [6718] = {.lex_state = 277}, + [6719] = {.lex_state = 316}, + [6720] = {.lex_state = 316}, + [6721] = {.lex_state = 280}, + [6722] = {.lex_state = 280}, + [6723] = {.lex_state = 277}, + [6724] = {.lex_state = 316}, + [6725] = {.lex_state = 316}, + [6726] = {.lex_state = 280}, + [6727] = {.lex_state = 280}, + [6728] = {.lex_state = 280}, + [6729] = {.lex_state = 280}, + [6730] = {.lex_state = 316}, [6731] = {.lex_state = 280}, - [6732] = {.lex_state = 319}, - [6733] = {.lex_state = 280}, - [6734] = {.lex_state = 319}, + [6732] = {.lex_state = 337}, + [6733] = {.lex_state = 337}, + [6734] = {.lex_state = 337}, [6735] = {.lex_state = 280}, - [6736] = {.lex_state = 277}, - [6737] = {.lex_state = 319}, - [6738] = {.lex_state = 319}, - [6739] = {.lex_state = 319}, - [6740] = {.lex_state = 280}, - [6741] = {.lex_state = 337}, - [6742] = {.lex_state = 280}, - [6743] = {.lex_state = 319}, - [6744] = {.lex_state = 280}, + [6736] = {.lex_state = 280}, + [6737] = {.lex_state = 337}, + [6738] = {.lex_state = 337}, + [6739] = {.lex_state = 337}, + [6740] = {.lex_state = 337}, + [6741] = {.lex_state = 277}, + [6742] = {.lex_state = 277}, + [6743] = {.lex_state = 280}, + [6744] = {.lex_state = 316}, [6745] = {.lex_state = 277}, - [6746] = {.lex_state = 280}, - [6747] = {.lex_state = 280}, - [6748] = {.lex_state = 319}, - [6749] = {.lex_state = 277}, - [6750] = {.lex_state = 277}, - [6751] = {.lex_state = 277}, - [6752] = {.lex_state = 277}, - [6753] = {.lex_state = 319}, - [6754] = {.lex_state = 277}, - [6755] = {.lex_state = 319}, + [6746] = {.lex_state = 277}, + [6747] = {.lex_state = 316}, + [6748] = {.lex_state = 280}, + [6749] = {.lex_state = 316}, + [6750] = {.lex_state = 280}, + [6751] = {.lex_state = 280}, + [6752] = {.lex_state = 316}, + [6753] = {.lex_state = 316}, + [6754] = {.lex_state = 316}, + [6755] = {.lex_state = 277}, [6756] = {.lex_state = 280}, - [6757] = {.lex_state = 280}, - [6758] = {.lex_state = 319}, - [6759] = {.lex_state = 280}, - [6760] = {.lex_state = 280}, - [6761] = {.lex_state = 280}, - [6762] = {.lex_state = 319}, - [6763] = {.lex_state = 337}, - [6764] = {.lex_state = 319}, - [6765] = {.lex_state = 280}, - [6766] = {.lex_state = 280}, + [6757] = {.lex_state = 316}, + [6758] = {.lex_state = 316}, + [6759] = {.lex_state = 277}, + [6760] = {.lex_state = 316}, + [6761] = {.lex_state = 316}, + [6762] = {.lex_state = 316}, + [6763] = {.lex_state = 316}, + [6764] = {.lex_state = 316}, + [6765] = {.lex_state = 316}, + [6766] = {.lex_state = 277}, [6767] = {.lex_state = 280}, - [6768] = {.lex_state = 319}, + [6768] = {.lex_state = 280}, [6769] = {.lex_state = 280}, - [6770] = {.lex_state = 319}, - [6771] = {.lex_state = 277}, - [6772] = {.lex_state = 277}, - [6773] = {.lex_state = 280}, - [6774] = {.lex_state = 319}, - [6775] = {.lex_state = 277}, - [6776] = {.lex_state = 319}, - [6777] = {.lex_state = 319}, - [6778] = {.lex_state = 319}, - [6779] = {.lex_state = 280}, - [6780] = {.lex_state = 280}, - [6781] = {.lex_state = 280}, - [6782] = {.lex_state = 277}, + [6770] = {.lex_state = 316}, + [6771] = {.lex_state = 316}, + [6772] = {.lex_state = 280}, + [6773] = {.lex_state = 277}, + [6774] = {.lex_state = 280}, + [6775] = {.lex_state = 280}, + [6776] = {.lex_state = 280}, + [6777] = {.lex_state = 316}, + [6778] = {.lex_state = 280}, + [6779] = {.lex_state = 316}, + [6780] = {.lex_state = 316}, + [6781] = {.lex_state = 316}, + [6782] = {.lex_state = 280}, [6783] = {.lex_state = 280}, [6784] = {.lex_state = 280}, [6785] = {.lex_state = 280}, - [6786] = {.lex_state = 280}, + [6786] = {.lex_state = 277}, [6787] = {.lex_state = 280}, [6788] = {.lex_state = 280}, - [6789] = {.lex_state = 280}, - [6790] = {.lex_state = 280}, + [6789] = {.lex_state = 277}, + [6790] = {.lex_state = 316}, [6791] = {.lex_state = 280}, - [6792] = {.lex_state = 280}, + [6792] = {.lex_state = 316}, [6793] = {.lex_state = 280}, - [6794] = {.lex_state = 280}, + [6794] = {.lex_state = 316}, [6795] = {.lex_state = 280}, [6796] = {.lex_state = 280}, [6797] = {.lex_state = 280}, - [6798] = {.lex_state = 280}, - [6799] = {.lex_state = 280}, - [6800] = {.lex_state = 277}, + [6798] = {.lex_state = 316}, + [6799] = {.lex_state = 316}, + [6800] = {.lex_state = 316}, [6801] = {.lex_state = 277}, [6802] = {.lex_state = 277}, - [6803] = {.lex_state = 277}, - [6804] = {.lex_state = 280}, + [6803] = {.lex_state = 280}, + [6804] = {.lex_state = 277}, [6805] = {.lex_state = 277}, - [6806] = {.lex_state = 280}, + [6806] = {.lex_state = 316}, [6807] = {.lex_state = 280}, [6808] = {.lex_state = 277}, - [6809] = {.lex_state = 280}, + [6809] = {.lex_state = 316}, [6810] = {.lex_state = 279}, [6811] = {.lex_state = 280}, - [6812] = {.lex_state = 319}, - [6813] = {.lex_state = 277}, - [6814] = {.lex_state = 277}, - [6815] = {.lex_state = 277}, + [6812] = {.lex_state = 280}, + [6813] = {.lex_state = 280}, + [6814] = {.lex_state = 280}, + [6815] = {.lex_state = 280}, [6816] = {.lex_state = 280}, [6817] = {.lex_state = 280}, [6818] = {.lex_state = 280}, [6819] = {.lex_state = 280}, [6820] = {.lex_state = 280}, [6821] = {.lex_state = 280}, - [6822] = {.lex_state = 319}, + [6822] = {.lex_state = 280}, [6823] = {.lex_state = 280}, [6824] = {.lex_state = 280}, - [6825] = {.lex_state = 319}, - [6826] = {.lex_state = 319}, - [6827] = {.lex_state = 342}, - [6828] = {.lex_state = 277}, - [6829] = {.lex_state = 319}, - [6830] = {.lex_state = 319}, - [6831] = {.lex_state = 277}, + [6825] = {.lex_state = 280}, + [6826] = {.lex_state = 280}, + [6827] = {.lex_state = 280}, + [6828] = {.lex_state = 280}, + [6829] = {.lex_state = 280}, + [6830] = {.lex_state = 280}, + [6831] = {.lex_state = 280}, [6832] = {.lex_state = 280}, [6833] = {.lex_state = 280}, - [6834] = {.lex_state = 280}, - [6835] = {.lex_state = 319}, - [6836] = {.lex_state = 319}, + [6834] = {.lex_state = 316}, + [6835] = {.lex_state = 277}, + [6836] = {.lex_state = 280}, [6837] = {.lex_state = 280}, [6838] = {.lex_state = 280}, - [6839] = {.lex_state = 319}, - [6840] = {.lex_state = 337}, + [6839] = {.lex_state = 280}, + [6840] = {.lex_state = 280}, [6841] = {.lex_state = 280}, - [6842] = {.lex_state = 319}, - [6843] = {.lex_state = 280}, - [6844] = {.lex_state = 319}, - [6845] = {.lex_state = 280}, - [6846] = {.lex_state = 280}, + [6842] = {.lex_state = 280}, + [6843] = {.lex_state = 342}, + [6844] = {.lex_state = 277}, + [6845] = {.lex_state = 316}, + [6846] = {.lex_state = 277}, [6847] = {.lex_state = 280}, [6848] = {.lex_state = 280}, [6849] = {.lex_state = 280}, [6850] = {.lex_state = 280}, - [6851] = {.lex_state = 280}, - [6852] = {.lex_state = 280}, + [6851] = {.lex_state = 316}, + [6852] = {.lex_state = 316}, [6853] = {.lex_state = 280}, [6854] = {.lex_state = 280}, - [6855] = {.lex_state = 280}, - [6856] = {.lex_state = 280}, + [6855] = {.lex_state = 277}, + [6856] = {.lex_state = 277}, [6857] = {.lex_state = 280}, - [6858] = {.lex_state = 280}, + [6858] = {.lex_state = 277}, [6859] = {.lex_state = 280}, [6860] = {.lex_state = 280}, [6861] = {.lex_state = 280}, - [6862] = {.lex_state = 280}, + [6862] = {.lex_state = 277}, [6863] = {.lex_state = 280}, - [6864] = {.lex_state = 319}, + [6864] = {.lex_state = 280}, [6865] = {.lex_state = 280}, [6866] = {.lex_state = 280}, [6867] = {.lex_state = 280}, @@ -33599,741 +33676,741 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [6869] = {.lex_state = 280}, [6870] = {.lex_state = 280}, [6871] = {.lex_state = 280}, - [6872] = {.lex_state = 277}, + [6872] = {.lex_state = 280}, [6873] = {.lex_state = 280}, - [6874] = {.lex_state = 277}, - [6875] = {.lex_state = 319}, - [6876] = {.lex_state = 319}, - [6877] = {.lex_state = 319}, - [6878] = {.lex_state = 319}, - [6879] = {.lex_state = 319}, + [6874] = {.lex_state = 280}, + [6875] = {.lex_state = 280}, + [6876] = {.lex_state = 280}, + [6877] = {.lex_state = 280}, + [6878] = {.lex_state = 280}, + [6879] = {.lex_state = 280}, [6880] = {.lex_state = 280}, [6881] = {.lex_state = 280}, [6882] = {.lex_state = 280}, - [6883] = {.lex_state = 337}, - [6884] = {.lex_state = 280}, + [6883] = {.lex_state = 280}, + [6884] = {.lex_state = 277}, [6885] = {.lex_state = 280}, - [6886] = {.lex_state = 280}, - [6887] = {.lex_state = 280}, - [6888] = {.lex_state = 280}, - [6889] = {.lex_state = 319}, - [6890] = {.lex_state = 280}, - [6891] = {.lex_state = 280}, - [6892] = {.lex_state = 280}, + [6886] = {.lex_state = 277}, + [6887] = {.lex_state = 277}, + [6888] = {.lex_state = 277}, + [6889] = {.lex_state = 277}, + [6890] = {.lex_state = 277}, + [6891] = {.lex_state = 277}, + [6892] = {.lex_state = 277}, [6893] = {.lex_state = 277}, - [6894] = {.lex_state = 337}, + [6894] = {.lex_state = 280}, [6895] = {.lex_state = 280}, - [6896] = {.lex_state = 280}, - [6897] = {.lex_state = 277}, + [6896] = {.lex_state = 277}, + [6897] = {.lex_state = 280}, [6898] = {.lex_state = 280}, - [6899] = {.lex_state = 319}, + [6899] = {.lex_state = 277}, [6900] = {.lex_state = 280}, - [6901] = {.lex_state = 319}, - [6902] = {.lex_state = 319}, - [6903] = {.lex_state = 280}, - [6904] = {.lex_state = 277}, - [6905] = {.lex_state = 319}, - [6906] = {.lex_state = 280}, - [6907] = {.lex_state = 280}, - [6908] = {.lex_state = 277}, - [6909] = {.lex_state = 319}, + [6901] = {.lex_state = 280}, + [6902] = {.lex_state = 277}, + [6903] = {.lex_state = 316}, + [6904] = {.lex_state = 280}, + [6905] = {.lex_state = 337}, + [6906] = {.lex_state = 316}, + [6907] = {.lex_state = 277}, + [6908] = {.lex_state = 316}, + [6909] = {.lex_state = 277}, [6910] = {.lex_state = 277}, - [6911] = {.lex_state = 277}, - [6912] = {.lex_state = 277}, - [6913] = {.lex_state = 277}, - [6914] = {.lex_state = 319}, - [6915] = {.lex_state = 277}, - [6916] = {.lex_state = 277}, - [6917] = {.lex_state = 280}, - [6918] = {.lex_state = 319}, - [6919] = {.lex_state = 280}, + [6911] = {.lex_state = 316}, + [6912] = {.lex_state = 316}, + [6913] = {.lex_state = 280}, + [6914] = {.lex_state = 280}, + [6915] = {.lex_state = 316}, + [6916] = {.lex_state = 280}, + [6917] = {.lex_state = 316}, + [6918] = {.lex_state = 277}, + [6919] = {.lex_state = 316}, [6920] = {.lex_state = 277}, [6921] = {.lex_state = 280}, - [6922] = {.lex_state = 277}, - [6923] = {.lex_state = 277}, - [6924] = {.lex_state = 277}, - [6925] = {.lex_state = 337}, - [6926] = {.lex_state = 280}, - [6927] = {.lex_state = 280}, - [6928] = {.lex_state = 277}, - [6929] = {.lex_state = 277}, - [6930] = {.lex_state = 277}, + [6922] = {.lex_state = 280}, + [6923] = {.lex_state = 280}, + [6924] = {.lex_state = 280}, + [6925] = {.lex_state = 280}, + [6926] = {.lex_state = 277}, + [6927] = {.lex_state = 277}, + [6928] = {.lex_state = 280}, + [6929] = {.lex_state = 280}, + [6930] = {.lex_state = 280}, [6931] = {.lex_state = 277}, - [6932] = {.lex_state = 280}, - [6933] = {.lex_state = 277}, - [6934] = {.lex_state = 280}, - [6935] = {.lex_state = 277}, - [6936] = {.lex_state = 280}, - [6937] = {.lex_state = 285}, + [6932] = {.lex_state = 277}, + [6933] = {.lex_state = 285}, + [6934] = {.lex_state = 277}, + [6935] = {.lex_state = 285}, + [6936] = {.lex_state = 285}, + [6937] = {.lex_state = 280}, [6938] = {.lex_state = 280}, - [6939] = {.lex_state = 285}, + [6939] = {.lex_state = 280}, [6940] = {.lex_state = 277}, [6941] = {.lex_state = 280}, - [6942] = {.lex_state = 280}, + [6942] = {.lex_state = 285}, [6943] = {.lex_state = 277}, - [6944] = {.lex_state = 280}, - [6945] = {.lex_state = 319}, - [6946] = {.lex_state = 319}, - [6947] = {.lex_state = 280}, + [6944] = {.lex_state = 277}, + [6945] = {.lex_state = 277}, + [6946] = {.lex_state = 277}, + [6947] = {.lex_state = 277}, [6948] = {.lex_state = 280}, [6949] = {.lex_state = 280}, - [6950] = {.lex_state = 277}, - [6951] = {.lex_state = 319}, + [6950] = {.lex_state = 280}, + [6951] = {.lex_state = 280}, [6952] = {.lex_state = 280}, [6953] = {.lex_state = 277}, - [6954] = {.lex_state = 280}, - [6955] = {.lex_state = 280}, - [6956] = {.lex_state = 277}, + [6954] = {.lex_state = 277}, + [6955] = {.lex_state = 285}, + [6956] = {.lex_state = 280}, [6957] = {.lex_state = 277}, - [6958] = {.lex_state = 277}, - [6959] = {.lex_state = 285}, - [6960] = {.lex_state = 280}, - [6961] = {.lex_state = 285}, - [6962] = {.lex_state = 285}, - [6963] = {.lex_state = 277}, + [6958] = {.lex_state = 280}, + [6959] = {.lex_state = 280}, + [6960] = {.lex_state = 277}, + [6961] = {.lex_state = 280}, + [6962] = {.lex_state = 277}, + [6963] = {.lex_state = 280}, [6964] = {.lex_state = 280}, - [6965] = {.lex_state = 285}, - [6966] = {.lex_state = 285}, + [6965] = {.lex_state = 316}, + [6966] = {.lex_state = 280}, [6967] = {.lex_state = 280}, [6968] = {.lex_state = 277}, - [6969] = {.lex_state = 285}, + [6969] = {.lex_state = 280}, [6970] = {.lex_state = 280}, [6971] = {.lex_state = 280}, - [6972] = {.lex_state = 285}, - [6973] = {.lex_state = 280}, + [6972] = {.lex_state = 316}, + [6973] = {.lex_state = 277}, [6974] = {.lex_state = 280}, - [6975] = {.lex_state = 277}, + [6975] = {.lex_state = 316}, [6976] = {.lex_state = 280}, - [6977] = {.lex_state = 285}, - [6978] = {.lex_state = 280}, + [6977] = {.lex_state = 277}, + [6978] = {.lex_state = 277}, [6979] = {.lex_state = 280}, - [6980] = {.lex_state = 277}, + [6980] = {.lex_state = 337}, [6981] = {.lex_state = 280}, [6982] = {.lex_state = 280}, [6983] = {.lex_state = 280}, - [6984] = {.lex_state = 277}, - [6985] = {.lex_state = 277}, + [6984] = {.lex_state = 280}, + [6985] = {.lex_state = 280}, [6986] = {.lex_state = 280}, - [6987] = {.lex_state = 277}, - [6988] = {.lex_state = 277}, - [6989] = {.lex_state = 277}, + [6987] = {.lex_state = 280}, + [6988] = {.lex_state = 280}, + [6989] = {.lex_state = 280}, [6990] = {.lex_state = 280}, [6991] = {.lex_state = 280}, - [6992] = {.lex_state = 285}, + [6992] = {.lex_state = 277}, [6993] = {.lex_state = 285}, - [6994] = {.lex_state = 280}, - [6995] = {.lex_state = 280}, + [6994] = {.lex_state = 342}, + [6995] = {.lex_state = 285}, [6996] = {.lex_state = 280}, - [6997] = {.lex_state = 280}, - [6998] = {.lex_state = 280}, - [6999] = {.lex_state = 277}, - [7000] = {.lex_state = 338}, + [6997] = {.lex_state = 277}, + [6998] = {.lex_state = 285}, + [6999] = {.lex_state = 316}, + [7000] = {.lex_state = 277}, [7001] = {.lex_state = 280}, - [7002] = {.lex_state = 280}, + [7002] = {.lex_state = 277}, [7003] = {.lex_state = 280}, [7004] = {.lex_state = 277}, - [7005] = {.lex_state = 285}, - [7006] = {.lex_state = 280}, - [7007] = {.lex_state = 277}, - [7008] = {.lex_state = 280}, - [7009] = {.lex_state = 277}, + [7005] = {.lex_state = 280}, + [7006] = {.lex_state = 277}, + [7007] = {.lex_state = 316}, + [7008] = {.lex_state = 277}, + [7009] = {.lex_state = 280}, [7010] = {.lex_state = 277}, - [7011] = {.lex_state = 277}, - [7012] = {.lex_state = 277}, - [7013] = {.lex_state = 285}, - [7014] = {.lex_state = 277}, - [7015] = {.lex_state = 285}, + [7011] = {.lex_state = 316}, + [7012] = {.lex_state = 280}, + [7013] = {.lex_state = 280}, + [7014] = {.lex_state = 285}, + [7015] = {.lex_state = 277}, [7016] = {.lex_state = 280}, - [7017] = {.lex_state = 280}, + [7017] = {.lex_state = 277}, [7018] = {.lex_state = 280}, - [7019] = {.lex_state = 322}, - [7020] = {.lex_state = 280}, - [7021] = {.lex_state = 280}, - [7022] = {.lex_state = 319}, - [7023] = {.lex_state = 277}, - [7024] = {.lex_state = 285}, - [7025] = {.lex_state = 280}, - [7026] = {.lex_state = 280}, - [7027] = {.lex_state = 277}, - [7028] = {.lex_state = 333}, - [7029] = {.lex_state = 277}, - [7030] = {.lex_state = 277}, - [7031] = {.lex_state = 285}, - [7032] = {.lex_state = 338}, - [7033] = {.lex_state = 285}, - [7034] = {.lex_state = 338}, - [7035] = {.lex_state = 280}, - [7036] = {.lex_state = 277}, - [7037] = {.lex_state = 277}, + [7019] = {.lex_state = 277}, + [7020] = {.lex_state = 285}, + [7021] = {.lex_state = 277}, + [7022] = {.lex_state = 280}, + [7023] = {.lex_state = 285}, + [7024] = {.lex_state = 280}, + [7025] = {.lex_state = 333}, + [7026] = {.lex_state = 285}, + [7027] = {.lex_state = 285}, + [7028] = {.lex_state = 285}, + [7029] = {.lex_state = 285}, + [7030] = {.lex_state = 280}, + [7031] = {.lex_state = 316}, + [7032] = {.lex_state = 316}, + [7033] = {.lex_state = 280}, + [7034] = {.lex_state = 280}, + [7035] = {.lex_state = 285}, + [7036] = {.lex_state = 280}, + [7037] = {.lex_state = 280}, [7038] = {.lex_state = 280}, - [7039] = {.lex_state = 280}, - [7040] = {.lex_state = 280}, - [7041] = {.lex_state = 277}, + [7039] = {.lex_state = 337}, + [7040] = {.lex_state = 337}, + [7041] = {.lex_state = 337}, [7042] = {.lex_state = 280}, - [7043] = {.lex_state = 277}, - [7044] = {.lex_state = 277}, - [7045] = {.lex_state = 277}, - [7046] = {.lex_state = 277}, - [7047] = {.lex_state = 280}, + [7043] = {.lex_state = 280}, + [7044] = {.lex_state = 337}, + [7045] = {.lex_state = 338}, + [7046] = {.lex_state = 337}, + [7047] = {.lex_state = 285}, [7048] = {.lex_state = 280}, - [7049] = {.lex_state = 280}, - [7050] = {.lex_state = 280}, - [7051] = {.lex_state = 277}, - [7052] = {.lex_state = 280}, - [7053] = {.lex_state = 277}, - [7054] = {.lex_state = 285}, - [7055] = {.lex_state = 280}, - [7056] = {.lex_state = 277}, - [7057] = {.lex_state = 280}, - [7058] = {.lex_state = 277}, - [7059] = {.lex_state = 280}, - [7060] = {.lex_state = 280}, - [7061] = {.lex_state = 280}, - [7062] = {.lex_state = 280}, - [7063] = {.lex_state = 280}, - [7064] = {.lex_state = 280}, - [7065] = {.lex_state = 277}, - [7066] = {.lex_state = 280}, + [7049] = {.lex_state = 285}, + [7050] = {.lex_state = 277}, + [7051] = {.lex_state = 285}, + [7052] = {.lex_state = 285}, + [7053] = {.lex_state = 285}, + [7054] = {.lex_state = 337}, + [7055] = {.lex_state = 337}, + [7056] = {.lex_state = 285}, + [7057] = {.lex_state = 277}, + [7058] = {.lex_state = 285}, + [7059] = {.lex_state = 326}, + [7060] = {.lex_state = 277}, + [7061] = {.lex_state = 326}, + [7062] = {.lex_state = 337}, + [7063] = {.lex_state = 337}, + [7064] = {.lex_state = 337}, + [7065] = {.lex_state = 337}, + [7066] = {.lex_state = 337}, [7067] = {.lex_state = 277}, - [7068] = {.lex_state = 280}, - [7069] = {.lex_state = 280}, + [7068] = {.lex_state = 337}, + [7069] = {.lex_state = 277}, [7070] = {.lex_state = 280}, - [7071] = {.lex_state = 280}, - [7072] = {.lex_state = 280}, - [7073] = {.lex_state = 280}, + [7071] = {.lex_state = 337}, + [7072] = {.lex_state = 337}, + [7073] = {.lex_state = 277}, [7074] = {.lex_state = 280}, - [7075] = {.lex_state = 277}, - [7076] = {.lex_state = 280}, - [7077] = {.lex_state = 285}, - [7078] = {.lex_state = 285}, - [7079] = {.lex_state = 280}, - [7080] = {.lex_state = 285}, + [7075] = {.lex_state = 280}, + [7076] = {.lex_state = 338}, + [7077] = {.lex_state = 280}, + [7078] = {.lex_state = 280}, + [7079] = {.lex_state = 337}, + [7080] = {.lex_state = 280}, [7081] = {.lex_state = 280}, - [7082] = {.lex_state = 285}, - [7083] = {.lex_state = 337}, - [7084] = {.lex_state = 285}, + [7082] = {.lex_state = 316}, + [7083] = {.lex_state = 277}, + [7084] = {.lex_state = 338}, [7085] = {.lex_state = 280}, - [7086] = {.lex_state = 334}, + [7086] = {.lex_state = 280}, [7087] = {.lex_state = 280}, - [7088] = {.lex_state = 319}, - [7089] = {.lex_state = 342}, + [7088] = {.lex_state = 277}, + [7089] = {.lex_state = 280}, [7090] = {.lex_state = 280}, - [7091] = {.lex_state = 280}, - [7092] = {.lex_state = 277}, - [7093] = {.lex_state = 277}, - [7094] = {.lex_state = 280}, - [7095] = {.lex_state = 285}, - [7096] = {.lex_state = 285}, - [7097] = {.lex_state = 285}, - [7098] = {.lex_state = 285}, - [7099] = {.lex_state = 277}, - [7100] = {.lex_state = 280}, - [7101] = {.lex_state = 277}, + [7091] = {.lex_state = 285}, + [7092] = {.lex_state = 280}, + [7093] = {.lex_state = 280}, + [7094] = {.lex_state = 285}, + [7095] = {.lex_state = 280}, + [7096] = {.lex_state = 280}, + [7097] = {.lex_state = 277}, + [7098] = {.lex_state = 277}, + [7099] = {.lex_state = 280}, + [7100] = {.lex_state = 277}, + [7101] = {.lex_state = 280}, [7102] = {.lex_state = 277}, - [7103] = {.lex_state = 285}, - [7104] = {.lex_state = 285}, + [7103] = {.lex_state = 277}, + [7104] = {.lex_state = 280}, [7105] = {.lex_state = 277}, [7106] = {.lex_state = 280}, [7107] = {.lex_state = 280}, - [7108] = {.lex_state = 319}, - [7109] = {.lex_state = 319}, - [7110] = {.lex_state = 280}, - [7111] = {.lex_state = 280}, + [7108] = {.lex_state = 277}, + [7109] = {.lex_state = 277}, + [7110] = {.lex_state = 277}, + [7111] = {.lex_state = 285}, [7112] = {.lex_state = 280}, - [7113] = {.lex_state = 280}, + [7113] = {.lex_state = 277}, [7114] = {.lex_state = 280}, - [7115] = {.lex_state = 280}, + [7115] = {.lex_state = 338}, [7116] = {.lex_state = 285}, - [7117] = {.lex_state = 285}, - [7118] = {.lex_state = 285}, + [7117] = {.lex_state = 277}, + [7118] = {.lex_state = 277}, [7119] = {.lex_state = 285}, [7120] = {.lex_state = 280}, - [7121] = {.lex_state = 337}, - [7122] = {.lex_state = 337}, - [7123] = {.lex_state = 337}, - [7124] = {.lex_state = 337}, - [7125] = {.lex_state = 285}, - [7126] = {.lex_state = 337}, + [7121] = {.lex_state = 280}, + [7122] = {.lex_state = 285}, + [7123] = {.lex_state = 323}, + [7124] = {.lex_state = 277}, + [7125] = {.lex_state = 280}, + [7126] = {.lex_state = 280}, [7127] = {.lex_state = 280}, - [7128] = {.lex_state = 337}, - [7129] = {.lex_state = 337}, - [7130] = {.lex_state = 338}, + [7128] = {.lex_state = 285}, + [7129] = {.lex_state = 277}, + [7130] = {.lex_state = 280}, [7131] = {.lex_state = 280}, - [7132] = {.lex_state = 277}, - [7133] = {.lex_state = 326}, - [7134] = {.lex_state = 285}, - [7135] = {.lex_state = 337}, - [7136] = {.lex_state = 337}, - [7137] = {.lex_state = 337}, - [7138] = {.lex_state = 337}, - [7139] = {.lex_state = 337}, + [7132] = {.lex_state = 280}, + [7133] = {.lex_state = 280}, + [7134] = {.lex_state = 280}, + [7135] = {.lex_state = 280}, + [7136] = {.lex_state = 277}, + [7137] = {.lex_state = 285}, + [7138] = {.lex_state = 280}, + [7139] = {.lex_state = 285}, [7140] = {.lex_state = 280}, - [7141] = {.lex_state = 337}, - [7142] = {.lex_state = 277}, - [7143] = {.lex_state = 337}, + [7141] = {.lex_state = 280}, + [7142] = {.lex_state = 280}, + [7143] = {.lex_state = 280}, [7144] = {.lex_state = 280}, - [7145] = {.lex_state = 337}, - [7146] = {.lex_state = 280}, - [7147] = {.lex_state = 326}, - [7148] = {.lex_state = 337}, - [7149] = {.lex_state = 285}, - [7150] = {.lex_state = 338}, - [7151] = {.lex_state = 277}, - [7152] = {.lex_state = 277}, - [7153] = {.lex_state = 277}, + [7145] = {.lex_state = 285}, + [7146] = {.lex_state = 277}, + [7147] = {.lex_state = 280}, + [7148] = {.lex_state = 277}, + [7149] = {.lex_state = 334}, + [7150] = {.lex_state = 277}, + [7151] = {.lex_state = 280}, + [7152] = {.lex_state = 285}, + [7153] = {.lex_state = 285}, [7154] = {.lex_state = 277}, - [7155] = {.lex_state = 277}, - [7156] = {.lex_state = 277}, - [7157] = {.lex_state = 277}, - [7158] = {.lex_state = 280}, + [7155] = {.lex_state = 285}, + [7156] = {.lex_state = 285}, + [7157] = {.lex_state = 285}, + [7158] = {.lex_state = 277}, [7159] = {.lex_state = 280}, - [7160] = {.lex_state = 285}, - [7161] = {.lex_state = 285}, - [7162] = {.lex_state = 285}, - [7163] = {.lex_state = 280}, - [7164] = {.lex_state = 280}, - [7165] = {.lex_state = 280}, - [7166] = {.lex_state = 280}, + [7160] = {.lex_state = 277}, + [7161] = {.lex_state = 277}, + [7162] = {.lex_state = 280}, + [7163] = {.lex_state = 285}, + [7164] = {.lex_state = 277}, + [7165] = {.lex_state = 277}, + [7166] = {.lex_state = 277}, [7167] = {.lex_state = 280}, [7168] = {.lex_state = 285}, [7169] = {.lex_state = 280}, - [7170] = {.lex_state = 277}, - [7171] = {.lex_state = 322}, + [7170] = {.lex_state = 285}, + [7171] = {.lex_state = 285}, [7172] = {.lex_state = 285}, - [7173] = {.lex_state = 277}, + [7173] = {.lex_state = 280}, [7174] = {.lex_state = 280}, - [7175] = {.lex_state = 319}, - [7176] = {.lex_state = 280}, - [7177] = {.lex_state = 280}, - [7178] = {.lex_state = 280}, - [7179] = {.lex_state = 319}, + [7175] = {.lex_state = 280}, + [7176] = {.lex_state = 338}, + [7177] = {.lex_state = 323}, + [7178] = {.lex_state = 277}, + [7179] = {.lex_state = 277}, [7180] = {.lex_state = 280}, [7181] = {.lex_state = 280}, - [7182] = {.lex_state = 285}, - [7183] = {.lex_state = 277}, + [7182] = {.lex_state = 280}, + [7183] = {.lex_state = 280}, [7184] = {.lex_state = 280}, [7185] = {.lex_state = 280}, [7186] = {.lex_state = 280}, [7187] = {.lex_state = 280}, [7188] = {.lex_state = 280}, - [7189] = {.lex_state = 280}, + [7189] = {.lex_state = 265}, [7190] = {.lex_state = 277}, - [7191] = {.lex_state = 280}, - [7192] = {.lex_state = 280}, - [7193] = {.lex_state = 280}, - [7194] = {.lex_state = 280}, - [7195] = {.lex_state = 319}, - [7196] = {.lex_state = 265}, - [7197] = {.lex_state = 265}, - [7198] = {.lex_state = 265}, - [7199] = {.lex_state = 277}, - [7200] = {.lex_state = 265}, - [7201] = {.lex_state = 265}, - [7202] = {.lex_state = 265}, + [7191] = {.lex_state = 277}, + [7192] = {.lex_state = 277}, + [7193] = {.lex_state = 316}, + [7194] = {.lex_state = 316}, + [7195] = {.lex_state = 277}, + [7196] = {.lex_state = 277}, + [7197] = {.lex_state = 277}, + [7198] = {.lex_state = 337}, + [7199] = {.lex_state = 316}, + [7200] = {.lex_state = 316}, + [7201] = {.lex_state = 277}, + [7202] = {.lex_state = 316}, [7203] = {.lex_state = 265}, [7204] = {.lex_state = 265}, - [7205] = {.lex_state = 283}, - [7206] = {.lex_state = 277}, - [7207] = {.lex_state = 319}, - [7208] = {.lex_state = 319}, - [7209] = {.lex_state = 277}, - [7210] = {.lex_state = 338}, - [7211] = {.lex_state = 337}, - [7212] = {.lex_state = 277}, + [7205] = {.lex_state = 265}, + [7206] = {.lex_state = 280}, + [7207] = {.lex_state = 277}, + [7208] = {.lex_state = 337}, + [7209] = {.lex_state = 316}, + [7210] = {.lex_state = 277}, + [7211] = {.lex_state = 316}, + [7212] = {.lex_state = 265}, [7213] = {.lex_state = 265}, [7214] = {.lex_state = 265}, - [7215] = {.lex_state = 265}, - [7216] = {.lex_state = 277}, - [7217] = {.lex_state = 277}, - [7218] = {.lex_state = 283}, - [7219] = {.lex_state = 319}, - [7220] = {.lex_state = 319}, - [7221] = {.lex_state = 265}, - [7222] = {.lex_state = 265}, - [7223] = {.lex_state = 280}, + [7215] = {.lex_state = 316}, + [7216] = {.lex_state = 316}, + [7217] = {.lex_state = 338}, + [7218] = {.lex_state = 265}, + [7219] = {.lex_state = 265}, + [7220] = {.lex_state = 265}, + [7221] = {.lex_state = 316}, + [7222] = {.lex_state = 279}, + [7223] = {.lex_state = 279}, [7224] = {.lex_state = 265}, - [7225] = {.lex_state = 337}, - [7226] = {.lex_state = 280}, + [7225] = {.lex_state = 265}, + [7226] = {.lex_state = 265}, [7227] = {.lex_state = 277}, - [7228] = {.lex_state = 319}, - [7229] = {.lex_state = 280}, - [7230] = {.lex_state = 319}, - [7231] = {.lex_state = 319}, - [7232] = {.lex_state = 265}, - [7233] = {.lex_state = 265}, - [7234] = {.lex_state = 265}, - [7235] = {.lex_state = 265}, + [7228] = {.lex_state = 277}, + [7229] = {.lex_state = 277}, + [7230] = {.lex_state = 277}, + [7231] = {.lex_state = 280}, + [7232] = {.lex_state = 316}, + [7233] = {.lex_state = 316}, + [7234] = {.lex_state = 316}, + [7235] = {.lex_state = 316}, [7236] = {.lex_state = 265}, [7237] = {.lex_state = 265}, [7238] = {.lex_state = 265}, - [7239] = {.lex_state = 265}, - [7240] = {.lex_state = 265}, - [7241] = {.lex_state = 280}, - [7242] = {.lex_state = 265}, + [7239] = {.lex_state = 280}, + [7240] = {.lex_state = 280}, + [7241] = {.lex_state = 277}, + [7242] = {.lex_state = 316}, [7243] = {.lex_state = 265}, [7244] = {.lex_state = 265}, [7245] = {.lex_state = 265}, - [7246] = {.lex_state = 279}, - [7247] = {.lex_state = 319}, - [7248] = {.lex_state = 280}, - [7249] = {.lex_state = 280}, - [7250] = {.lex_state = 277}, - [7251] = {.lex_state = 319}, - [7252] = {.lex_state = 319}, - [7253] = {.lex_state = 277}, - [7254] = {.lex_state = 280}, + [7246] = {.lex_state = 265}, + [7247] = {.lex_state = 338}, + [7248] = {.lex_state = 265}, + [7249] = {.lex_state = 265}, + [7250] = {.lex_state = 265}, + [7251] = {.lex_state = 265}, + [7252] = {.lex_state = 265}, + [7253] = {.lex_state = 265}, + [7254] = {.lex_state = 277}, [7255] = {.lex_state = 277}, - [7256] = {.lex_state = 319}, - [7257] = {.lex_state = 280}, + [7256] = {.lex_state = 265}, + [7257] = {.lex_state = 265}, [7258] = {.lex_state = 265}, - [7259] = {.lex_state = 319}, - [7260] = {.lex_state = 337}, + [7259] = {.lex_state = 277}, + [7260] = {.lex_state = 265}, [7261] = {.lex_state = 265}, [7262] = {.lex_state = 265}, [7263] = {.lex_state = 265}, [7264] = {.lex_state = 265}, [7265] = {.lex_state = 265}, [7266] = {.lex_state = 265}, - [7267] = {.lex_state = 277}, - [7268] = {.lex_state = 265}, - [7269] = {.lex_state = 319}, - [7270] = {.lex_state = 319}, + [7267] = {.lex_state = 265}, + [7268] = {.lex_state = 277}, + [7269] = {.lex_state = 277}, + [7270] = {.lex_state = 265}, [7271] = {.lex_state = 265}, - [7272] = {.lex_state = 280}, + [7272] = {.lex_state = 265}, [7273] = {.lex_state = 277}, - [7274] = {.lex_state = 342}, - [7275] = {.lex_state = 283}, - [7276] = {.lex_state = 265}, - [7277] = {.lex_state = 265}, - [7278] = {.lex_state = 265}, - [7279] = {.lex_state = 319}, - [7280] = {.lex_state = 319}, + [7274] = {.lex_state = 283}, + [7275] = {.lex_state = 277}, + [7276] = {.lex_state = 277}, + [7277] = {.lex_state = 277}, + [7278] = {.lex_state = 277}, + [7279] = {.lex_state = 277}, + [7280] = {.lex_state = 337}, [7281] = {.lex_state = 265}, [7282] = {.lex_state = 265}, [7283] = {.lex_state = 265}, - [7284] = {.lex_state = 277}, - [7285] = {.lex_state = 265}, - [7286] = {.lex_state = 265}, - [7287] = {.lex_state = 277}, - [7288] = {.lex_state = 265}, - [7289] = {.lex_state = 277}, - [7290] = {.lex_state = 277}, - [7291] = {.lex_state = 342}, - [7292] = {.lex_state = 265}, - [7293] = {.lex_state = 265}, + [7284] = {.lex_state = 316}, + [7285] = {.lex_state = 277}, + [7286] = {.lex_state = 316}, + [7287] = {.lex_state = 316}, + [7288] = {.lex_state = 316}, + [7289] = {.lex_state = 316}, + [7290] = {.lex_state = 316}, + [7291] = {.lex_state = 283}, + [7292] = {.lex_state = 316}, + [7293] = {.lex_state = 316}, [7294] = {.lex_state = 265}, [7295] = {.lex_state = 265}, [7296] = {.lex_state = 265}, - [7297] = {.lex_state = 265}, - [7298] = {.lex_state = 277}, - [7299] = {.lex_state = 277}, - [7300] = {.lex_state = 319}, - [7301] = {.lex_state = 277}, - [7302] = {.lex_state = 277}, - [7303] = {.lex_state = 319}, - [7304] = {.lex_state = 265}, - [7305] = {.lex_state = 265}, + [7297] = {.lex_state = 316}, + [7298] = {.lex_state = 316}, + [7299] = {.lex_state = 265}, + [7300] = {.lex_state = 265}, + [7301] = {.lex_state = 265}, + [7302] = {.lex_state = 316}, + [7303] = {.lex_state = 316}, + [7304] = {.lex_state = 316}, + [7305] = {.lex_state = 316}, [7306] = {.lex_state = 265}, [7307] = {.lex_state = 265}, [7308] = {.lex_state = 265}, - [7309] = {.lex_state = 265}, - [7310] = {.lex_state = 265}, - [7311] = {.lex_state = 279}, - [7312] = {.lex_state = 265}, + [7309] = {.lex_state = 277}, + [7310] = {.lex_state = 280}, + [7311] = {.lex_state = 277}, + [7312] = {.lex_state = 279}, [7313] = {.lex_state = 265}, - [7314] = {.lex_state = 277}, + [7314] = {.lex_state = 265}, [7315] = {.lex_state = 265}, - [7316] = {.lex_state = 265}, - [7317] = {.lex_state = 265}, - [7318] = {.lex_state = 265}, - [7319] = {.lex_state = 265}, - [7320] = {.lex_state = 265}, - [7321] = {.lex_state = 265}, - [7322] = {.lex_state = 265}, + [7316] = {.lex_state = 277}, + [7317] = {.lex_state = 277}, + [7318] = {.lex_state = 277}, + [7319] = {.lex_state = 342}, + [7320] = {.lex_state = 280}, + [7321] = {.lex_state = 316}, + [7322] = {.lex_state = 316}, [7323] = {.lex_state = 265}, - [7324] = {.lex_state = 319}, - [7325] = {.lex_state = 319}, - [7326] = {.lex_state = 337}, - [7327] = {.lex_state = 319}, + [7324] = {.lex_state = 265}, + [7325] = {.lex_state = 265}, + [7326] = {.lex_state = 265}, + [7327] = {.lex_state = 265}, [7328] = {.lex_state = 265}, - [7329] = {.lex_state = 265}, - [7330] = {.lex_state = 279}, - [7331] = {.lex_state = 319}, - [7332] = {.lex_state = 265}, + [7329] = {.lex_state = 316}, + [7330] = {.lex_state = 277}, + [7331] = {.lex_state = 342}, + [7332] = {.lex_state = 280}, [7333] = {.lex_state = 338}, - [7334] = {.lex_state = 280}, - [7335] = {.lex_state = 277}, - [7336] = {.lex_state = 277}, - [7337] = {.lex_state = 277}, - [7338] = {.lex_state = 277}, - [7339] = {.lex_state = 277}, - [7340] = {.lex_state = 277}, - [7341] = {.lex_state = 277}, - [7342] = {.lex_state = 277}, - [7343] = {.lex_state = 319}, - [7344] = {.lex_state = 319}, - [7345] = {.lex_state = 277}, - [7346] = {.lex_state = 319}, - [7347] = {.lex_state = 319}, - [7348] = {.lex_state = 281}, - [7349] = {.lex_state = 277}, - [7350] = {.lex_state = 279}, - [7351] = {.lex_state = 319}, - [7352] = {.lex_state = 277}, - [7353] = {.lex_state = 265}, + [7334] = {.lex_state = 316}, + [7335] = {.lex_state = 338}, + [7336] = {.lex_state = 265}, + [7337] = {.lex_state = 265}, + [7338] = {.lex_state = 265}, + [7339] = {.lex_state = 265}, + [7340] = {.lex_state = 265}, + [7341] = {.lex_state = 265}, + [7342] = {.lex_state = 265}, + [7343] = {.lex_state = 265}, + [7344] = {.lex_state = 265}, + [7345] = {.lex_state = 265}, + [7346] = {.lex_state = 265}, + [7347] = {.lex_state = 265}, + [7348] = {.lex_state = 265}, + [7349] = {.lex_state = 265}, + [7350] = {.lex_state = 265}, + [7351] = {.lex_state = 265}, + [7352] = {.lex_state = 265}, + [7353] = {.lex_state = 337}, [7354] = {.lex_state = 265}, [7355] = {.lex_state = 265}, - [7356] = {.lex_state = 319}, - [7357] = {.lex_state = 279}, - [7358] = {.lex_state = 338}, + [7356] = {.lex_state = 265}, + [7357] = {.lex_state = 265}, + [7358] = {.lex_state = 265}, [7359] = {.lex_state = 265}, - [7360] = {.lex_state = 319}, - [7361] = {.lex_state = 277}, + [7360] = {.lex_state = 265}, + [7361] = {.lex_state = 265}, [7362] = {.lex_state = 265}, [7363] = {.lex_state = 265}, - [7364] = {.lex_state = 265}, - [7365] = {.lex_state = 319}, - [7366] = {.lex_state = 265}, - [7367] = {.lex_state = 319}, - [7368] = {.lex_state = 319}, - [7369] = {.lex_state = 277}, - [7370] = {.lex_state = 265}, - [7371] = {.lex_state = 265}, - [7372] = {.lex_state = 319}, - [7373] = {.lex_state = 277}, + [7364] = {.lex_state = 280}, + [7365] = {.lex_state = 283}, + [7366] = {.lex_state = 277}, + [7367] = {.lex_state = 277}, + [7368] = {.lex_state = 277}, + [7369] = {.lex_state = 279}, + [7370] = {.lex_state = 279}, + [7371] = {.lex_state = 281}, + [7372] = {.lex_state = 277}, + [7373] = {.lex_state = 265}, [7374] = {.lex_state = 265}, [7375] = {.lex_state = 265}, - [7376] = {.lex_state = 338}, + [7376] = {.lex_state = 277}, [7377] = {.lex_state = 265}, - [7378] = {.lex_state = 265}, - [7379] = {.lex_state = 277}, - [7380] = {.lex_state = 319}, - [7381] = {.lex_state = 265}, - [7382] = {.lex_state = 265}, + [7378] = {.lex_state = 316}, + [7379] = {.lex_state = 265}, + [7380] = {.lex_state = 277}, + [7381] = {.lex_state = 316}, + [7382] = {.lex_state = 316}, [7383] = {.lex_state = 265}, - [7384] = {.lex_state = 265}, - [7385] = {.lex_state = 265}, - [7386] = {.lex_state = 265}, - [7387] = {.lex_state = 277}, - [7388] = {.lex_state = 280}, - [7389] = {.lex_state = 319}, - [7390] = {.lex_state = 319}, - [7391] = {.lex_state = 277}, + [7384] = {.lex_state = 280}, + [7385] = {.lex_state = 316}, + [7386] = {.lex_state = 316}, + [7387] = {.lex_state = 280}, + [7388] = {.lex_state = 277}, + [7389] = {.lex_state = 280}, + [7390] = {.lex_state = 316}, + [7391] = {.lex_state = 265}, [7392] = {.lex_state = 265}, - [7393] = {.lex_state = 265}, - [7394] = {.lex_state = 265}, - [7395] = {.lex_state = 277}, - [7396] = {.lex_state = 319}, - [7397] = {.lex_state = 319}, - [7398] = {.lex_state = 265}, - [7399] = {.lex_state = 265}, - [7400] = {.lex_state = 285}, + [7393] = {.lex_state = 285}, + [7394] = {.lex_state = 285}, + [7395] = {.lex_state = 285}, + [7396] = {.lex_state = 285}, + [7397] = {.lex_state = 285}, + [7398] = {.lex_state = 337}, + [7399] = {.lex_state = 285}, + [7400] = {.lex_state = 333}, [7401] = {.lex_state = 285}, [7402] = {.lex_state = 285}, [7403] = {.lex_state = 285}, - [7404] = {.lex_state = 285}, + [7404] = {.lex_state = 337}, [7405] = {.lex_state = 285}, - [7406] = {.lex_state = 265}, - [7407] = {.lex_state = 285}, - [7408] = {.lex_state = 285}, - [7409] = {.lex_state = 265}, + [7406] = {.lex_state = 285}, + [7407] = {.lex_state = 265}, + [7408] = {.lex_state = 265}, + [7409] = {.lex_state = 285}, [7410] = {.lex_state = 285}, [7411] = {.lex_state = 285}, - [7412] = {.lex_state = 265}, + [7412] = {.lex_state = 285}, [7413] = {.lex_state = 285}, - [7414] = {.lex_state = 285}, + [7414] = {.lex_state = 265}, [7415] = {.lex_state = 285}, - [7416] = {.lex_state = 337}, - [7417] = {.lex_state = 285}, - [7418] = {.lex_state = 265}, - [7419] = {.lex_state = 280}, - [7420] = {.lex_state = 265}, + [7416] = {.lex_state = 285}, + [7417] = {.lex_state = 265}, + [7418] = {.lex_state = 285}, + [7419] = {.lex_state = 285}, + [7420] = {.lex_state = 285}, [7421] = {.lex_state = 285}, [7422] = {.lex_state = 285}, - [7423] = {.lex_state = 285}, + [7423] = {.lex_state = 337}, [7424] = {.lex_state = 285}, - [7425] = {.lex_state = 285}, + [7425] = {.lex_state = 265}, [7426] = {.lex_state = 285}, [7427] = {.lex_state = 285}, - [7428] = {.lex_state = 315}, - [7429] = {.lex_state = 315}, + [7428] = {.lex_state = 285}, + [7429] = {.lex_state = 337}, [7430] = {.lex_state = 285}, [7431] = {.lex_state = 285}, [7432] = {.lex_state = 285}, [7433] = {.lex_state = 315}, - [7434] = {.lex_state = 315}, - [7435] = {.lex_state = 285}, + [7434] = {.lex_state = 285}, + [7435] = {.lex_state = 265}, [7436] = {.lex_state = 285}, [7437] = {.lex_state = 285}, [7438] = {.lex_state = 285}, [7439] = {.lex_state = 285}, - [7440] = {.lex_state = 337}, - [7441] = {.lex_state = 280}, - [7442] = {.lex_state = 280}, - [7443] = {.lex_state = 285}, - [7444] = {.lex_state = 285}, + [7440] = {.lex_state = 285}, + [7441] = {.lex_state = 265}, + [7442] = {.lex_state = 285}, + [7443] = {.lex_state = 315}, + [7444] = {.lex_state = 333}, [7445] = {.lex_state = 285}, [7446] = {.lex_state = 285}, [7447] = {.lex_state = 285}, - [7448] = {.lex_state = 265}, - [7449] = {.lex_state = 265}, - [7450] = {.lex_state = 265}, - [7451] = {.lex_state = 285}, - [7452] = {.lex_state = 340}, - [7453] = {.lex_state = 337}, - [7454] = {.lex_state = 285}, - [7455] = {.lex_state = 265}, + [7448] = {.lex_state = 315}, + [7449] = {.lex_state = 285}, + [7450] = {.lex_state = 285}, + [7451] = {.lex_state = 265}, + [7452] = {.lex_state = 285}, + [7453] = {.lex_state = 285}, + [7454] = {.lex_state = 265}, + [7455] = {.lex_state = 280}, [7456] = {.lex_state = 285}, - [7457] = {.lex_state = 285}, + [7457] = {.lex_state = 265}, [7458] = {.lex_state = 285}, - [7459] = {.lex_state = 315}, - [7460] = {.lex_state = 333}, + [7459] = {.lex_state = 285}, + [7460] = {.lex_state = 340}, [7461] = {.lex_state = 285}, - [7462] = {.lex_state = 285}, + [7462] = {.lex_state = 265}, [7463] = {.lex_state = 285}, [7464] = {.lex_state = 285}, - [7465] = {.lex_state = 285}, - [7466] = {.lex_state = 265}, - [7467] = {.lex_state = 337}, - [7468] = {.lex_state = 285}, - [7469] = {.lex_state = 340}, + [7465] = {.lex_state = 340}, + [7466] = {.lex_state = 285}, + [7467] = {.lex_state = 315}, + [7468] = {.lex_state = 340}, + [7469] = {.lex_state = 315}, [7470] = {.lex_state = 285}, - [7471] = {.lex_state = 340}, - [7472] = {.lex_state = 265}, + [7471] = {.lex_state = 265}, + [7472] = {.lex_state = 285}, [7473] = {.lex_state = 285}, [7474] = {.lex_state = 285}, - [7475] = {.lex_state = 265}, + [7475] = {.lex_state = 340}, [7476] = {.lex_state = 285}, - [7477] = {.lex_state = 285}, - [7478] = {.lex_state = 265}, + [7477] = {.lex_state = 265}, + [7478] = {.lex_state = 285}, [7479] = {.lex_state = 285}, - [7480] = {.lex_state = 265}, - [7481] = {.lex_state = 333}, - [7482] = {.lex_state = 265}, - [7483] = {.lex_state = 285}, + [7480] = {.lex_state = 280}, + [7481] = {.lex_state = 285}, + [7482] = {.lex_state = 285}, + [7483] = {.lex_state = 280}, [7484] = {.lex_state = 285}, - [7485] = {.lex_state = 285}, + [7485] = {.lex_state = 265}, [7486] = {.lex_state = 285}, - [7487] = {.lex_state = 285}, + [7487] = {.lex_state = 265}, [7488] = {.lex_state = 285}, - [7489] = {.lex_state = 285}, + [7489] = {.lex_state = 265}, [7490] = {.lex_state = 285}, - [7491] = {.lex_state = 285}, - [7492] = {.lex_state = 265}, + [7491] = {.lex_state = 265}, + [7492] = {.lex_state = 285}, [7493] = {.lex_state = 285}, [7494] = {.lex_state = 285}, [7495] = {.lex_state = 285}, [7496] = {.lex_state = 285}, - [7497] = {.lex_state = 315}, + [7497] = {.lex_state = 265}, [7498] = {.lex_state = 285}, - [7499] = {.lex_state = 285}, - [7500] = {.lex_state = 285}, - [7501] = {.lex_state = 285}, - [7502] = {.lex_state = 285}, - [7503] = {.lex_state = 285}, - [7504] = {.lex_state = 265}, - [7505] = {.lex_state = 340}, + [7499] = {.lex_state = 315}, + [7500] = {.lex_state = 316}, + [7501] = {.lex_state = 334}, + [7502] = {.lex_state = 334}, + [7503] = {.lex_state = 316}, + [7504] = {.lex_state = 334}, + [7505] = {.lex_state = 337}, [7506] = {.lex_state = 334}, [7507] = {.lex_state = 334}, - [7508] = {.lex_state = 319}, - [7509] = {.lex_state = 338}, - [7510] = {.lex_state = 334}, - [7511] = {.lex_state = 334}, + [7508] = {.lex_state = 334}, + [7509] = {.lex_state = 334}, + [7510] = {.lex_state = 338}, + [7511] = {.lex_state = 338}, [7512] = {.lex_state = 334}, - [7513] = {.lex_state = 334}, - [7514] = {.lex_state = 338}, + [7513] = {.lex_state = 337}, + [7514] = {.lex_state = 321}, [7515] = {.lex_state = 334}, - [7516] = {.lex_state = 334}, - [7517] = {.lex_state = 319}, - [7518] = {.lex_state = 319}, + [7516] = {.lex_state = 321}, + [7517] = {.lex_state = 316}, + [7518] = {.lex_state = 334}, [7519] = {.lex_state = 334}, - [7520] = {.lex_state = 338}, + [7520] = {.lex_state = 334}, [7521] = {.lex_state = 334}, - [7522] = {.lex_state = 338}, - [7523] = {.lex_state = 338}, + [7522] = {.lex_state = 334}, + [7523] = {.lex_state = 334}, [7524] = {.lex_state = 334}, [7525] = {.lex_state = 334}, [7526] = {.lex_state = 334}, - [7527] = {.lex_state = 334}, + [7527] = {.lex_state = 316}, [7528] = {.lex_state = 334}, [7529] = {.lex_state = 334}, [7530] = {.lex_state = 334}, - [7531] = {.lex_state = 338}, - [7532] = {.lex_state = 337}, - [7533] = {.lex_state = 316}, - [7534] = {.lex_state = 337}, - [7535] = {.lex_state = 279}, - [7536] = {.lex_state = 316}, - [7537] = {.lex_state = 319}, - [7538] = {.lex_state = 319}, + [7531] = {.lex_state = 334}, + [7532] = {.lex_state = 334}, + [7533] = {.lex_state = 334}, + [7534] = {.lex_state = 334}, + [7535] = {.lex_state = 334}, + [7536] = {.lex_state = 334}, + [7537] = {.lex_state = 334}, + [7538] = {.lex_state = 334}, [7539] = {.lex_state = 334}, - [7540] = {.lex_state = 279}, + [7540] = {.lex_state = 338}, [7541] = {.lex_state = 334}, [7542] = {.lex_state = 334}, [7543] = {.lex_state = 334}, [7544] = {.lex_state = 334}, [7545] = {.lex_state = 334}, - [7546] = {.lex_state = 334}, + [7546] = {.lex_state = 338}, [7547] = {.lex_state = 334}, [7548] = {.lex_state = 334}, [7549] = {.lex_state = 334}, - [7550] = {.lex_state = 334}, - [7551] = {.lex_state = 334}, - [7552] = {.lex_state = 334}, - [7553] = {.lex_state = 334}, - [7554] = {.lex_state = 334}, + [7550] = {.lex_state = 316}, + [7551] = {.lex_state = 338}, + [7552] = {.lex_state = 316}, + [7553] = {.lex_state = 338}, + [7554] = {.lex_state = 279}, [7555] = {.lex_state = 334}, [7556] = {.lex_state = 334}, - [7557] = {.lex_state = 334}, - [7558] = {.lex_state = 319}, - [7559] = {.lex_state = 334}, - [7560] = {.lex_state = 334}, + [7557] = {.lex_state = 279}, + [7558] = {.lex_state = 334}, + [7559] = {.lex_state = 338}, + [7560] = {.lex_state = 338}, [7561] = {.lex_state = 334}, - [7562] = {.lex_state = 334}, - [7563] = {.lex_state = 334}, - [7564] = {.lex_state = 338}, - [7565] = {.lex_state = 338}, - [7566] = {.lex_state = 334}, - [7567] = {.lex_state = 334}, - [7568] = {.lex_state = 280}, - [7569] = {.lex_state = 266}, + [7562] = {.lex_state = 280}, + [7563] = {.lex_state = 337}, + [7564] = {.lex_state = 337}, + [7565] = {.lex_state = 281}, + [7566] = {.lex_state = 337}, + [7567] = {.lex_state = 337}, + [7568] = {.lex_state = 337}, + [7569] = {.lex_state = 280}, [7570] = {.lex_state = 337}, - [7571] = {.lex_state = 337}, - [7572] = {.lex_state = 337}, - [7573] = {.lex_state = 279}, + [7571] = {.lex_state = 285}, + [7572] = {.lex_state = 280}, + [7573] = {.lex_state = 333}, [7574] = {.lex_state = 337}, [7575] = {.lex_state = 337}, - [7576] = {.lex_state = 337}, - [7577] = {.lex_state = 337}, - [7578] = {.lex_state = 266}, - [7579] = {.lex_state = 280}, - [7580] = {.lex_state = 337}, - [7581] = {.lex_state = 337}, + [7576] = {.lex_state = 279}, + [7577] = {.lex_state = 266}, + [7578] = {.lex_state = 337}, + [7579] = {.lex_state = 285}, + [7580] = {.lex_state = 280}, + [7581] = {.lex_state = 320}, [7582] = {.lex_state = 280}, - [7583] = {.lex_state = 266}, + [7583] = {.lex_state = 337}, [7584] = {.lex_state = 337}, - [7585] = {.lex_state = 280}, - [7586] = {.lex_state = 320}, - [7587] = {.lex_state = 279}, - [7588] = {.lex_state = 316}, - [7589] = {.lex_state = 337}, - [7590] = {.lex_state = 281}, + [7585] = {.lex_state = 337}, + [7586] = {.lex_state = 279}, + [7587] = {.lex_state = 321}, + [7588] = {.lex_state = 320}, + [7589] = {.lex_state = 266}, + [7590] = {.lex_state = 266}, [7591] = {.lex_state = 280}, - [7592] = {.lex_state = 337}, + [7592] = {.lex_state = 321}, [7593] = {.lex_state = 280}, - [7594] = {.lex_state = 337}, + [7594] = {.lex_state = 266}, [7595] = {.lex_state = 337}, - [7596] = {.lex_state = 316}, - [7597] = {.lex_state = 333}, - [7598] = {.lex_state = 280}, - [7599] = {.lex_state = 337}, - [7600] = {.lex_state = 280}, - [7601] = {.lex_state = 320}, - [7602] = {.lex_state = 285}, - [7603] = {.lex_state = 333}, - [7604] = {.lex_state = 266}, - [7605] = {.lex_state = 281}, - [7606] = {.lex_state = 285}, + [7596] = {.lex_state = 280}, + [7597] = {.lex_state = 337}, + [7598] = {.lex_state = 337}, + [7599] = {.lex_state = 333}, + [7600] = {.lex_state = 281}, + [7601] = {.lex_state = 340}, + [7602] = {.lex_state = 337}, + [7603] = {.lex_state = 337}, + [7604] = {.lex_state = 337}, + [7605] = {.lex_state = 337}, + [7606] = {.lex_state = 337}, [7607] = {.lex_state = 337}, [7608] = {.lex_state = 337}, [7609] = {.lex_state = 337}, @@ -34342,142 +34419,142 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [7612] = {.lex_state = 337}, [7613] = {.lex_state = 337}, [7614] = {.lex_state = 337}, - [7615] = {.lex_state = 340}, - [7616] = {.lex_state = 340}, + [7615] = {.lex_state = 337}, + [7616] = {.lex_state = 337}, [7617] = {.lex_state = 337}, [7618] = {.lex_state = 337}, - [7619] = {.lex_state = 337}, - [7620] = {.lex_state = 337}, + [7619] = {.lex_state = 340}, + [7620] = {.lex_state = 340}, [7621] = {.lex_state = 337}, [7622] = {.lex_state = 337}, [7623] = {.lex_state = 337}, [7624] = {.lex_state = 337}, [7625] = {.lex_state = 337}, - [7626] = {.lex_state = 337}, + [7626] = {.lex_state = 279}, [7627] = {.lex_state = 337}, [7628] = {.lex_state = 337}, - [7629] = {.lex_state = 337}, - [7630] = {.lex_state = 337}, - [7631] = {.lex_state = 337}, + [7629] = {.lex_state = 340}, + [7630] = {.lex_state = 340}, + [7631] = {.lex_state = 340}, [7632] = {.lex_state = 337}, [7633] = {.lex_state = 337}, [7634] = {.lex_state = 337}, [7635] = {.lex_state = 337}, - [7636] = {.lex_state = 337}, - [7637] = {.lex_state = 337}, + [7636] = {.lex_state = 340}, + [7637] = {.lex_state = 340}, [7638] = {.lex_state = 337}, [7639] = {.lex_state = 337}, [7640] = {.lex_state = 337}, [7641] = {.lex_state = 337}, - [7642] = {.lex_state = 340}, - [7643] = {.lex_state = 340}, - [7644] = {.lex_state = 340}, + [7642] = {.lex_state = 337}, + [7643] = {.lex_state = 337}, + [7644] = {.lex_state = 337}, [7645] = {.lex_state = 337}, [7646] = {.lex_state = 337}, [7647] = {.lex_state = 337}, [7648] = {.lex_state = 337}, - [7649] = {.lex_state = 279}, - [7650] = {.lex_state = 337}, - [7651] = {.lex_state = 337}, - [7652] = {.lex_state = 340}, - [7653] = {.lex_state = 340}, - [7654] = {.lex_state = 340}, - [7655] = {.lex_state = 337}, + [7649] = {.lex_state = 337}, + [7650] = {.lex_state = 285}, + [7651] = {.lex_state = 285}, + [7652] = {.lex_state = 338}, + [7653] = {.lex_state = 338}, + [7654] = {.lex_state = 338}, + [7655] = {.lex_state = 298}, [7656] = {.lex_state = 338}, [7657] = {.lex_state = 338}, [7658] = {.lex_state = 298}, - [7659] = {.lex_state = 285}, - [7660] = {.lex_state = 285}, + [7659] = {.lex_state = 298}, + [7660] = {.lex_state = 298}, [7661] = {.lex_state = 338}, - [7662] = {.lex_state = 298}, - [7663] = {.lex_state = 298}, - [7664] = {.lex_state = 338}, - [7665] = {.lex_state = 338}, - [7666] = {.lex_state = 298}, - [7667] = {.lex_state = 338}, + [7662] = {.lex_state = 285}, + [7663] = {.lex_state = 285}, + [7664] = {.lex_state = 348}, + [7665] = {.lex_state = 285}, + [7666] = {.lex_state = 285}, + [7667] = {.lex_state = 348}, [7668] = {.lex_state = 285}, - [7669] = {.lex_state = 333}, - [7670] = {.lex_state = 348}, - [7671] = {.lex_state = 285}, - [7672] = {.lex_state = 298}, + [7669] = {.lex_state = 266}, + [7670] = {.lex_state = 266}, + [7671] = {.lex_state = 348}, + [7672] = {.lex_state = 285}, [7673] = {.lex_state = 266}, - [7674] = {.lex_state = 348}, - [7675] = {.lex_state = 298}, + [7674] = {.lex_state = 285}, + [7675] = {.lex_state = 285}, [7676] = {.lex_state = 285}, - [7677] = {.lex_state = 266}, - [7678] = {.lex_state = 348}, - [7679] = {.lex_state = 348}, - [7680] = {.lex_state = 266}, - [7681] = {.lex_state = 298}, - [7682] = {.lex_state = 285}, - [7683] = {.lex_state = 348}, - [7684] = {.lex_state = 348}, + [7677] = {.lex_state = 285}, + [7678] = {.lex_state = 285}, + [7679] = {.lex_state = 333}, + [7680] = {.lex_state = 285}, + [7681] = {.lex_state = 285}, + [7682] = {.lex_state = 333}, + [7683] = {.lex_state = 266}, + [7684] = {.lex_state = 298}, [7685] = {.lex_state = 348}, [7686] = {.lex_state = 285}, - [7687] = {.lex_state = 285}, - [7688] = {.lex_state = 266}, - [7689] = {.lex_state = 285}, - [7690] = {.lex_state = 285}, - [7691] = {.lex_state = 285}, - [7692] = {.lex_state = 285}, - [7693] = {.lex_state = 285}, - [7694] = {.lex_state = 285}, - [7695] = {.lex_state = 348}, - [7696] = {.lex_state = 348}, + [7687] = {.lex_state = 348}, + [7688] = {.lex_state = 348}, + [7689] = {.lex_state = 298}, + [7690] = {.lex_state = 348}, + [7691] = {.lex_state = 348}, + [7692] = {.lex_state = 298}, + [7693] = {.lex_state = 348}, + [7694] = {.lex_state = 298}, + [7695] = {.lex_state = 285}, + [7696] = {.lex_state = 285}, [7697] = {.lex_state = 285}, - [7698] = {.lex_state = 298}, - [7699] = {.lex_state = 285}, - [7700] = {.lex_state = 333}, - [7701] = {.lex_state = 266}, - [7702] = {.lex_state = 338}, + [7698] = {.lex_state = 285}, + [7699] = {.lex_state = 338}, + [7700] = {.lex_state = 285}, + [7701] = {.lex_state = 285}, + [7702] = {.lex_state = 285}, [7703] = {.lex_state = 338}, [7704] = {.lex_state = 338}, - [7705] = {.lex_state = 338}, + [7705] = {.lex_state = 285}, [7706] = {.lex_state = 338}, [7707] = {.lex_state = 285}, - [7708] = {.lex_state = 285}, + [7708] = {.lex_state = 338}, [7709] = {.lex_state = 285}, - [7710] = {.lex_state = 285}, + [7710] = {.lex_state = 266}, [7711] = {.lex_state = 285}, [7712] = {.lex_state = 285}, - [7713] = {.lex_state = 285}, - [7714] = {.lex_state = 285}, - [7715] = {.lex_state = 285}, - [7716] = {.lex_state = 285}, + [7713] = {.lex_state = 338}, + [7714] = {.lex_state = 266}, + [7715] = {.lex_state = 338}, + [7716] = {.lex_state = 338}, [7717] = {.lex_state = 285}, - [7718] = {.lex_state = 285}, - [7719] = {.lex_state = 285}, + [7718] = {.lex_state = 280}, + [7719] = {.lex_state = 338}, [7720] = {.lex_state = 285}, - [7721] = {.lex_state = 266}, + [7721] = {.lex_state = 338}, [7722] = {.lex_state = 285}, - [7723] = {.lex_state = 338}, + [7723] = {.lex_state = 285}, [7724] = {.lex_state = 338}, - [7725] = {.lex_state = 285}, - [7726] = {.lex_state = 338}, - [7727] = {.lex_state = 338}, - [7728] = {.lex_state = 338}, - [7729] = {.lex_state = 338}, - [7730] = {.lex_state = 280}, - [7731] = {.lex_state = 338}, - [7732] = {.lex_state = 285}, - [7733] = {.lex_state = 266}, - [7734] = {.lex_state = 266}, - [7735] = {.lex_state = 266}, - [7736] = {.lex_state = 266}, - [7737] = {.lex_state = 266}, - [7738] = {.lex_state = 266}, - [7739] = {.lex_state = 338}, + [7725] = {.lex_state = 338}, + [7726] = {.lex_state = 285}, + [7727] = {.lex_state = 266}, + [7728] = {.lex_state = 266}, + [7729] = {.lex_state = 266}, + [7730] = {.lex_state = 266}, + [7731] = {.lex_state = 266}, + [7732] = {.lex_state = 266}, + [7733] = {.lex_state = 348}, + [7734] = {.lex_state = 348}, + [7735] = {.lex_state = 348}, + [7736] = {.lex_state = 348}, + [7737] = {.lex_state = 348}, + [7738] = {.lex_state = 348}, + [7739] = {.lex_state = 315}, [7740] = {.lex_state = 348}, [7741] = {.lex_state = 348}, [7742] = {.lex_state = 348}, - [7743] = {.lex_state = 340}, - [7744] = {.lex_state = 285}, + [7743] = {.lex_state = 348}, + [7744] = {.lex_state = 348}, [7745] = {.lex_state = 348}, [7746] = {.lex_state = 348}, [7747] = {.lex_state = 348}, [7748] = {.lex_state = 348}, - [7749] = {.lex_state = 348}, - [7750] = {.lex_state = 348}, + [7749] = {.lex_state = 340}, + [7750] = {.lex_state = 340}, [7751] = {.lex_state = 348}, [7752] = {.lex_state = 348}, [7753] = {.lex_state = 348}, @@ -34485,62 +34562,62 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [7755] = {.lex_state = 348}, [7756] = {.lex_state = 348}, [7757] = {.lex_state = 348}, - [7758] = {.lex_state = 340}, - [7759] = {.lex_state = 340}, - [7760] = {.lex_state = 348}, - [7761] = {.lex_state = 348}, + [7758] = {.lex_state = 348}, + [7759] = {.lex_state = 348}, + [7760] = {.lex_state = 340}, + [7761] = {.lex_state = 340}, [7762] = {.lex_state = 348}, - [7763] = {.lex_state = 348}, + [7763] = {.lex_state = 340}, [7764] = {.lex_state = 348}, - [7765] = {.lex_state = 340}, + [7765] = {.lex_state = 348}, [7766] = {.lex_state = 348}, - [7767] = {.lex_state = 340}, + [7767] = {.lex_state = 348}, [7768] = {.lex_state = 348}, [7769] = {.lex_state = 348}, - [7770] = {.lex_state = 340}, + [7770] = {.lex_state = 348}, [7771] = {.lex_state = 348}, - [7772] = {.lex_state = 348}, + [7772] = {.lex_state = 315}, [7773] = {.lex_state = 348}, - [7774] = {.lex_state = 348}, - [7775] = {.lex_state = 348}, - [7776] = {.lex_state = 340}, - [7777] = {.lex_state = 315}, + [7774] = {.lex_state = 315}, + [7775] = {.lex_state = 340}, + [7776] = {.lex_state = 348}, + [7777] = {.lex_state = 348}, [7778] = {.lex_state = 348}, - [7779] = {.lex_state = 315}, - [7780] = {.lex_state = 348}, - [7781] = {.lex_state = 348}, + [7779] = {.lex_state = 348}, + [7780] = {.lex_state = 285}, + [7781] = {.lex_state = 333}, [7782] = {.lex_state = 348}, - [7783] = {.lex_state = 348}, - [7784] = {.lex_state = 315}, + [7783] = {.lex_state = 340}, + [7784] = {.lex_state = 340}, [7785] = {.lex_state = 348}, [7786] = {.lex_state = 348}, [7787] = {.lex_state = 348}, [7788] = {.lex_state = 348}, - [7789] = {.lex_state = 333}, - [7790] = {.lex_state = 348}, - [7791] = {.lex_state = 348}, + [7789] = {.lex_state = 348}, + [7790] = {.lex_state = 340}, + [7791] = {.lex_state = 340}, [7792] = {.lex_state = 348}, - [7793] = {.lex_state = 340}, + [7793] = {.lex_state = 348}, [7794] = {.lex_state = 340}, [7795] = {.lex_state = 348}, [7796] = {.lex_state = 348}, - [7797] = {.lex_state = 348}, + [7797] = {.lex_state = 338}, [7798] = {.lex_state = 348}, - [7799] = {.lex_state = 340}, - [7800] = {.lex_state = 340}, - [7801] = {.lex_state = 348}, - [7802] = {.lex_state = 348}, - [7803] = {.lex_state = 348}, - [7804] = {.lex_state = 348}, + [7799] = {.lex_state = 265}, + [7800] = {.lex_state = 265}, + [7801] = {.lex_state = 265}, + [7802] = {.lex_state = 265}, + [7803] = {.lex_state = 265}, + [7804] = {.lex_state = 265}, [7805] = {.lex_state = 265}, [7806] = {.lex_state = 265}, - [7807] = {.lex_state = 265}, - [7808] = {.lex_state = 265}, + [7807] = {.lex_state = 285}, + [7808] = {.lex_state = 298}, [7809] = {.lex_state = 265}, [7810] = {.lex_state = 265}, - [7811] = {.lex_state = 265}, + [7811] = {.lex_state = 298}, [7812] = {.lex_state = 265}, - [7813] = {.lex_state = 265}, + [7813] = {.lex_state = 298}, [7814] = {.lex_state = 265}, [7815] = {.lex_state = 265}, [7816] = {.lex_state = 265}, @@ -34548,69 +34625,69 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [7818] = {.lex_state = 265}, [7819] = {.lex_state = 265}, [7820] = {.lex_state = 265}, - [7821] = {.lex_state = 285}, + [7821] = {.lex_state = 265}, [7822] = {.lex_state = 265}, [7823] = {.lex_state = 265}, [7824] = {.lex_state = 265}, [7825] = {.lex_state = 265}, - [7826] = {.lex_state = 265}, + [7826] = {.lex_state = 285}, [7827] = {.lex_state = 265}, [7828] = {.lex_state = 265}, [7829] = {.lex_state = 265}, [7830] = {.lex_state = 265}, [7831] = {.lex_state = 265}, - [7832] = {.lex_state = 338}, - [7833] = {.lex_state = 298}, - [7834] = {.lex_state = 265}, - [7835] = {.lex_state = 265}, + [7832] = {.lex_state = 265}, + [7833] = {.lex_state = 285}, + [7834] = {.lex_state = 285}, + [7835] = {.lex_state = 298}, [7836] = {.lex_state = 265}, [7837] = {.lex_state = 265}, [7838] = {.lex_state = 265}, [7839] = {.lex_state = 265}, - [7840] = {.lex_state = 298}, + [7840] = {.lex_state = 265}, [7841] = {.lex_state = 265}, - [7842] = {.lex_state = 298}, + [7842] = {.lex_state = 265}, [7843] = {.lex_state = 265}, [7844] = {.lex_state = 265}, [7845] = {.lex_state = 265}, [7846] = {.lex_state = 265}, - [7847] = {.lex_state = 298}, - [7848] = {.lex_state = 298}, - [7849] = {.lex_state = 298}, + [7847] = {.lex_state = 265}, + [7848] = {.lex_state = 265}, + [7849] = {.lex_state = 265}, [7850] = {.lex_state = 265}, [7851] = {.lex_state = 265}, [7852] = {.lex_state = 265}, [7853] = {.lex_state = 265}, [7854] = {.lex_state = 265}, [7855] = {.lex_state = 265}, - [7856] = {.lex_state = 265}, + [7856] = {.lex_state = 285}, [7857] = {.lex_state = 265}, - [7858] = {.lex_state = 285}, + [7858] = {.lex_state = 265}, [7859] = {.lex_state = 265}, [7860] = {.lex_state = 265}, [7861] = {.lex_state = 265}, [7862] = {.lex_state = 265}, - [7863] = {.lex_state = 285}, - [7864] = {.lex_state = 285}, + [7863] = {.lex_state = 265}, + [7864] = {.lex_state = 265}, [7865] = {.lex_state = 265}, - [7866] = {.lex_state = 285}, + [7866] = {.lex_state = 265}, [7867] = {.lex_state = 265}, [7868] = {.lex_state = 265}, [7869] = {.lex_state = 265}, [7870] = {.lex_state = 265}, [7871] = {.lex_state = 265}, - [7872] = {.lex_state = 265}, + [7872] = {.lex_state = 298}, [7873] = {.lex_state = 265}, [7874] = {.lex_state = 265}, - [7875] = {.lex_state = 265}, + [7875] = {.lex_state = 298}, [7876] = {.lex_state = 265}, [7877] = {.lex_state = 265}, - [7878] = {.lex_state = 265}, + [7878] = {.lex_state = 315}, [7879] = {.lex_state = 265}, [7880] = {.lex_state = 265}, [7881] = {.lex_state = 265}, [7882] = {.lex_state = 265}, - [7883] = {.lex_state = 265}, + [7883] = {.lex_state = 338}, [7884] = {.lex_state = 265}, [7885] = {.lex_state = 265}, [7886] = {.lex_state = 265}, @@ -34628,1240 +34705,1240 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [7898] = {.lex_state = 265}, [7899] = {.lex_state = 265}, [7900] = {.lex_state = 265}, - [7901] = {.lex_state = 315}, - [7902] = {.lex_state = 265}, - [7903] = {.lex_state = 265}, - [7904] = {.lex_state = 265}, - [7905] = {.lex_state = 265}, - [7906] = {.lex_state = 265}, - [7907] = {.lex_state = 265}, - [7908] = {.lex_state = 343}, + [7901] = {.lex_state = 265}, + [7902] = {.lex_state = 315}, + [7903] = {.lex_state = 315}, + [7904] = {.lex_state = 315}, + [7905] = {.lex_state = 343}, + [7906] = {.lex_state = 266}, + [7907] = {.lex_state = 343}, + [7908] = {.lex_state = 298}, [7909] = {.lex_state = 315}, [7910] = {.lex_state = 343}, [7911] = {.lex_state = 343}, - [7912] = {.lex_state = 315}, + [7912] = {.lex_state = 343}, [7913] = {.lex_state = 343}, - [7914] = {.lex_state = 343}, - [7915] = {.lex_state = 343}, - [7916] = {.lex_state = 298}, - [7917] = {.lex_state = 298}, - [7918] = {.lex_state = 315}, + [7914] = {.lex_state = 315}, + [7915] = {.lex_state = 315}, + [7916] = {.lex_state = 343}, + [7917] = {.lex_state = 343}, + [7918] = {.lex_state = 298}, [7919] = {.lex_state = 315}, - [7920] = {.lex_state = 315}, - [7921] = {.lex_state = 315}, - [7922] = {.lex_state = 266}, + [7920] = {.lex_state = 266}, + [7921] = {.lex_state = 298}, + [7922] = {.lex_state = 315}, [7923] = {.lex_state = 338}, - [7924] = {.lex_state = 315}, - [7925] = {.lex_state = 315}, - [7926] = {.lex_state = 315}, + [7924] = {.lex_state = 343}, + [7925] = {.lex_state = 343}, + [7926] = {.lex_state = 298}, [7927] = {.lex_state = 343}, - [7928] = {.lex_state = 315}, - [7929] = {.lex_state = 266}, + [7928] = {.lex_state = 343}, + [7929] = {.lex_state = 316}, [7930] = {.lex_state = 315}, - [7931] = {.lex_state = 315}, - [7932] = {.lex_state = 343}, - [7933] = {.lex_state = 266}, + [7931] = {.lex_state = 338}, + [7932] = {.lex_state = 316}, + [7933] = {.lex_state = 298}, [7934] = {.lex_state = 315}, - [7935] = {.lex_state = 277}, - [7936] = {.lex_state = 298}, - [7937] = {.lex_state = 315}, - [7938] = {.lex_state = 298}, - [7939] = {.lex_state = 277}, - [7940] = {.lex_state = 343}, - [7941] = {.lex_state = 343}, + [7935] = {.lex_state = 266}, + [7936] = {.lex_state = 315}, + [7937] = {.lex_state = 343}, + [7938] = {.lex_state = 315}, + [7939] = {.lex_state = 315}, + [7940] = {.lex_state = 315}, + [7941] = {.lex_state = 315}, [7942] = {.lex_state = 315}, [7943] = {.lex_state = 315}, [7944] = {.lex_state = 343}, - [7945] = {.lex_state = 343}, + [7945] = {.lex_state = 315}, [7946] = {.lex_state = 343}, - [7947] = {.lex_state = 315}, - [7948] = {.lex_state = 343}, - [7949] = {.lex_state = 315}, - [7950] = {.lex_state = 338}, + [7947] = {.lex_state = 343}, + [7948] = {.lex_state = 315}, + [7949] = {.lex_state = 298}, + [7950] = {.lex_state = 315}, [7951] = {.lex_state = 343}, [7952] = {.lex_state = 343}, [7953] = {.lex_state = 343}, - [7954] = {.lex_state = 315}, - [7955] = {.lex_state = 265}, - [7956] = {.lex_state = 315}, + [7954] = {.lex_state = 343}, + [7955] = {.lex_state = 343}, + [7956] = {.lex_state = 343}, [7957] = {.lex_state = 343}, [7958] = {.lex_state = 343}, [7959] = {.lex_state = 343}, - [7960] = {.lex_state = 343}, - [7961] = {.lex_state = 343}, - [7962] = {.lex_state = 266}, - [7963] = {.lex_state = 315}, - [7964] = {.lex_state = 266}, + [7960] = {.lex_state = 315}, + [7961] = {.lex_state = 315}, + [7962] = {.lex_state = 315}, + [7963] = {.lex_state = 343}, + [7964] = {.lex_state = 315}, [7965] = {.lex_state = 315}, - [7966] = {.lex_state = 315}, - [7967] = {.lex_state = 343}, - [7968] = {.lex_state = 298}, - [7969] = {.lex_state = 266}, - [7970] = {.lex_state = 343}, - [7971] = {.lex_state = 315}, - [7972] = {.lex_state = 315}, + [7966] = {.lex_state = 343}, + [7967] = {.lex_state = 266}, + [7968] = {.lex_state = 343}, + [7969] = {.lex_state = 343}, + [7970] = {.lex_state = 265}, + [7971] = {.lex_state = 266}, + [7972] = {.lex_state = 343}, [7973] = {.lex_state = 343}, - [7974] = {.lex_state = 343}, - [7975] = {.lex_state = 315}, - [7976] = {.lex_state = 315}, + [7974] = {.lex_state = 315}, + [7975] = {.lex_state = 266}, + [7976] = {.lex_state = 343}, [7977] = {.lex_state = 343}, [7978] = {.lex_state = 343}, - [7979] = {.lex_state = 343}, - [7980] = {.lex_state = 343}, - [7981] = {.lex_state = 343}, - [7982] = {.lex_state = 343}, - [7983] = {.lex_state = 343}, - [7984] = {.lex_state = 343}, - [7985] = {.lex_state = 298}, + [7979] = {.lex_state = 315}, + [7980] = {.lex_state = 338}, + [7981] = {.lex_state = 338}, + [7982] = {.lex_state = 315}, + [7983] = {.lex_state = 338}, + [7984] = {.lex_state = 315}, + [7985] = {.lex_state = 315}, [7986] = {.lex_state = 315}, - [7987] = {.lex_state = 338}, - [7988] = {.lex_state = 338}, - [7989] = {.lex_state = 266}, - [7990] = {.lex_state = 315}, + [7987] = {.lex_state = 315}, + [7988] = {.lex_state = 315}, + [7989] = {.lex_state = 338}, + [7990] = {.lex_state = 266}, [7991] = {.lex_state = 266}, - [7992] = {.lex_state = 315}, - [7993] = {.lex_state = 315}, + [7992] = {.lex_state = 266}, + [7993] = {.lex_state = 338}, [7994] = {.lex_state = 266}, [7995] = {.lex_state = 338}, - [7996] = {.lex_state = 315}, + [7996] = {.lex_state = 338}, [7997] = {.lex_state = 338}, - [7998] = {.lex_state = 315}, + [7998] = {.lex_state = 335}, [7999] = {.lex_state = 338}, - [8000] = {.lex_state = 338}, - [8001] = {.lex_state = 335}, - [8002] = {.lex_state = 265}, + [8000] = {.lex_state = 266}, + [8001] = {.lex_state = 338}, + [8002] = {.lex_state = 335}, [8003] = {.lex_state = 338}, [8004] = {.lex_state = 338}, - [8005] = {.lex_state = 338}, - [8006] = {.lex_state = 285}, + [8005] = {.lex_state = 266}, + [8006] = {.lex_state = 335}, [8007] = {.lex_state = 266}, - [8008] = {.lex_state = 335}, - [8009] = {.lex_state = 335}, - [8010] = {.lex_state = 265}, - [8011] = {.lex_state = 266}, + [8008] = {.lex_state = 265}, + [8009] = {.lex_state = 338}, + [8010] = {.lex_state = 335}, + [8011] = {.lex_state = 338}, [8012] = {.lex_state = 266}, [8013] = {.lex_state = 338}, - [8014] = {.lex_state = 266}, - [8015] = {.lex_state = 338}, - [8016] = {.lex_state = 338}, - [8017] = {.lex_state = 338}, - [8018] = {.lex_state = 338}, - [8019] = {.lex_state = 265}, - [8020] = {.lex_state = 338}, - [8021] = {.lex_state = 265}, + [8014] = {.lex_state = 335}, + [8015] = {.lex_state = 266}, + [8016] = {.lex_state = 335}, + [8017] = {.lex_state = 266}, + [8018] = {.lex_state = 335}, + [8019] = {.lex_state = 338}, + [8020] = {.lex_state = 266}, + [8021] = {.lex_state = 338}, [8022] = {.lex_state = 338}, [8023] = {.lex_state = 338}, [8024] = {.lex_state = 335}, [8025] = {.lex_state = 338}, - [8026] = {.lex_state = 338}, - [8027] = {.lex_state = 266}, - [8028] = {.lex_state = 266}, - [8029] = {.lex_state = 266}, - [8030] = {.lex_state = 335}, + [8026] = {.lex_state = 335}, + [8027] = {.lex_state = 338}, + [8028] = {.lex_state = 285}, + [8029] = {.lex_state = 265}, + [8030] = {.lex_state = 266}, [8031] = {.lex_state = 338}, [8032] = {.lex_state = 338}, [8033] = {.lex_state = 338}, - [8034] = {.lex_state = 338}, - [8035] = {.lex_state = 338}, - [8036] = {.lex_state = 338}, + [8034] = {.lex_state = 265}, + [8035] = {.lex_state = 266}, + [8036] = {.lex_state = 265}, [8037] = {.lex_state = 338}, - [8038] = {.lex_state = 338}, - [8039] = {.lex_state = 335}, + [8038] = {.lex_state = 335}, + [8039] = {.lex_state = 338}, [8040] = {.lex_state = 338}, - [8041] = {.lex_state = 335}, - [8042] = {.lex_state = 335}, + [8041] = {.lex_state = 338}, + [8042] = {.lex_state = 338}, [8043] = {.lex_state = 338}, - [8044] = {.lex_state = 266}, + [8044] = {.lex_state = 338}, [8045] = {.lex_state = 335}, - [8046] = {.lex_state = 338}, - [8047] = {.lex_state = 335}, - [8048] = {.lex_state = 266}, + [8046] = {.lex_state = 266}, + [8047] = {.lex_state = 266}, + [8048] = {.lex_state = 338}, [8049] = {.lex_state = 338}, [8050] = {.lex_state = 338}, - [8051] = {.lex_state = 338}, - [8052] = {.lex_state = 335}, - [8053] = {.lex_state = 266}, + [8051] = {.lex_state = 285}, + [8052] = {.lex_state = 338}, + [8053] = {.lex_state = 335}, [8054] = {.lex_state = 338}, - [8055] = {.lex_state = 266}, + [8055] = {.lex_state = 338}, [8056] = {.lex_state = 338}, - [8057] = {.lex_state = 338}, - [8058] = {.lex_state = 338}, + [8057] = {.lex_state = 343}, + [8058] = {.lex_state = 285}, [8059] = {.lex_state = 338}, - [8060] = {.lex_state = 335}, - [8061] = {.lex_state = 285}, - [8062] = {.lex_state = 266}, + [8060] = {.lex_state = 338}, + [8061] = {.lex_state = 338}, + [8062] = {.lex_state = 338}, [8063] = {.lex_state = 338}, - [8064] = {.lex_state = 343}, - [8065] = {.lex_state = 343}, + [8064] = {.lex_state = 338}, + [8065] = {.lex_state = 338}, [8066] = {.lex_state = 338}, - [8067] = {.lex_state = 338}, - [8068] = {.lex_state = 338}, - [8069] = {.lex_state = 338}, - [8070] = {.lex_state = 338}, - [8071] = {.lex_state = 337}, + [8067] = {.lex_state = 286}, + [8068] = {.lex_state = 343}, + [8069] = {.lex_state = 337}, + [8070] = {.lex_state = 285}, + [8071] = {.lex_state = 266}, [8072] = {.lex_state = 285}, [8073] = {.lex_state = 338}, - [8074] = {.lex_state = 286}, - [8075] = {.lex_state = 338}, + [8074] = {.lex_state = 340}, + [8075] = {.lex_state = 285}, [8076] = {.lex_state = 285}, - [8077] = {.lex_state = 266}, - [8078] = {.lex_state = 286}, - [8079] = {.lex_state = 266}, - [8080] = {.lex_state = 338}, - [8081] = {.lex_state = 338}, + [8077] = {.lex_state = 285}, + [8078] = {.lex_state = 285}, + [8079] = {.lex_state = 338}, + [8080] = {.lex_state = 285}, + [8081] = {.lex_state = 280}, [8082] = {.lex_state = 340}, [8083] = {.lex_state = 285}, [8084] = {.lex_state = 285}, [8085] = {.lex_state = 285}, - [8086] = {.lex_state = 285}, - [8087] = {.lex_state = 338}, - [8088] = {.lex_state = 285}, - [8089] = {.lex_state = 285}, - [8090] = {.lex_state = 266}, - [8091] = {.lex_state = 266}, - [8092] = {.lex_state = 315}, - [8093] = {.lex_state = 315}, - [8094] = {.lex_state = 285}, - [8095] = {.lex_state = 285}, - [8096] = {.lex_state = 340}, - [8097] = {.lex_state = 338}, - [8098] = {.lex_state = 285}, - [8099] = {.lex_state = 315}, - [8100] = {.lex_state = 340}, - [8101] = {.lex_state = 266}, + [8086] = {.lex_state = 266}, + [8087] = {.lex_state = 266}, + [8088] = {.lex_state = 338}, + [8089] = {.lex_state = 338}, + [8090] = {.lex_state = 338}, + [8091] = {.lex_state = 242}, + [8092] = {.lex_state = 340}, + [8093] = {.lex_state = 338}, + [8094] = {.lex_state = 338}, + [8095] = {.lex_state = 338}, + [8096] = {.lex_state = 285}, + [8097] = {.lex_state = 242}, + [8098] = {.lex_state = 266}, + [8099] = {.lex_state = 338}, + [8100] = {.lex_state = 338}, + [8101] = {.lex_state = 338}, [8102] = {.lex_state = 338}, - [8103] = {.lex_state = 285}, - [8104] = {.lex_state = 338}, - [8105] = {.lex_state = 285}, + [8103] = {.lex_state = 315}, + [8104] = {.lex_state = 285}, + [8105] = {.lex_state = 315}, [8106] = {.lex_state = 285}, - [8107] = {.lex_state = 242}, + [8107] = {.lex_state = 340}, [8108] = {.lex_state = 340}, - [8109] = {.lex_state = 285}, + [8109] = {.lex_state = 338}, [8110] = {.lex_state = 285}, - [8111] = {.lex_state = 285}, - [8112] = {.lex_state = 338}, - [8113] = {.lex_state = 285}, - [8114] = {.lex_state = 338}, - [8115] = {.lex_state = 266}, - [8116] = {.lex_state = 338}, + [8111] = {.lex_state = 266}, + [8112] = {.lex_state = 242}, + [8113] = {.lex_state = 286}, + [8114] = {.lex_state = 285}, + [8115] = {.lex_state = 285}, + [8116] = {.lex_state = 340}, [8117] = {.lex_state = 266}, - [8118] = {.lex_state = 242}, - [8119] = {.lex_state = 285}, - [8120] = {.lex_state = 285}, - [8121] = {.lex_state = 340}, - [8122] = {.lex_state = 265}, - [8123] = {.lex_state = 285}, - [8124] = {.lex_state = 338}, - [8125] = {.lex_state = 338}, - [8126] = {.lex_state = 338}, - [8127] = {.lex_state = 338}, - [8128] = {.lex_state = 340}, - [8129] = {.lex_state = 266}, - [8130] = {.lex_state = 285}, - [8131] = {.lex_state = 286}, - [8132] = {.lex_state = 338}, - [8133] = {.lex_state = 338}, - [8134] = {.lex_state = 266}, - [8135] = {.lex_state = 285}, - [8136] = {.lex_state = 139}, - [8137] = {.lex_state = 242}, + [8118] = {.lex_state = 340}, + [8119] = {.lex_state = 266}, + [8120] = {.lex_state = 286}, + [8121] = {.lex_state = 338}, + [8122] = {.lex_state = 285}, + [8123] = {.lex_state = 266}, + [8124] = {.lex_state = 266}, + [8125] = {.lex_state = 286}, + [8126] = {.lex_state = 266}, + [8127] = {.lex_state = 285}, + [8128] = {.lex_state = 285}, + [8129] = {.lex_state = 139}, + [8130] = {.lex_state = 265}, + [8131] = {.lex_state = 266}, + [8132] = {.lex_state = 266}, + [8133] = {.lex_state = 285}, + [8134] = {.lex_state = 285}, + [8135] = {.lex_state = 315}, + [8136] = {.lex_state = 285}, + [8137] = {.lex_state = 338}, [8138] = {.lex_state = 338}, [8139] = {.lex_state = 285}, - [8140] = {.lex_state = 266}, + [8140] = {.lex_state = 285}, [8141] = {.lex_state = 285}, [8142] = {.lex_state = 285}, [8143] = {.lex_state = 285}, [8144] = {.lex_state = 285}, [8145] = {.lex_state = 286}, - [8146] = {.lex_state = 340}, - [8147] = {.lex_state = 266}, - [8148] = {.lex_state = 266}, - [8149] = {.lex_state = 280}, - [8150] = {.lex_state = 285}, - [8151] = {.lex_state = 242}, - [8152] = {.lex_state = 242}, - [8153] = {.lex_state = 242}, - [8154] = {.lex_state = 285}, - [8155] = {.lex_state = 286}, + [8146] = {.lex_state = 286}, + [8147] = {.lex_state = 265}, + [8148] = {.lex_state = 286}, + [8149] = {.lex_state = 286}, + [8150] = {.lex_state = 286}, + [8151] = {.lex_state = 286}, + [8152] = {.lex_state = 286}, + [8153] = {.lex_state = 286}, + [8154] = {.lex_state = 286}, + [8155] = {.lex_state = 280}, [8156] = {.lex_state = 242}, - [8157] = {.lex_state = 285}, - [8158] = {.lex_state = 242}, + [8157] = {.lex_state = 335}, + [8158] = {.lex_state = 285}, [8159] = {.lex_state = 286}, - [8160] = {.lex_state = 242}, + [8160] = {.lex_state = 286}, [8161] = {.lex_state = 242}, - [8162] = {.lex_state = 285}, + [8162] = {.lex_state = 286}, [8163] = {.lex_state = 242}, - [8164] = {.lex_state = 286}, - [8165] = {.lex_state = 285}, - [8166] = {.lex_state = 285}, + [8164] = {.lex_state = 285}, + [8165] = {.lex_state = 242}, + [8166] = {.lex_state = 242}, [8167] = {.lex_state = 242}, [8168] = {.lex_state = 242}, - [8169] = {.lex_state = 285}, - [8170] = {.lex_state = 242}, - [8171] = {.lex_state = 285}, - [8172] = {.lex_state = 242}, + [8169] = {.lex_state = 242}, + [8170] = {.lex_state = 285}, + [8171] = {.lex_state = 242}, + [8172] = {.lex_state = 265}, [8173] = {.lex_state = 242}, - [8174] = {.lex_state = 319}, - [8175] = {.lex_state = 285}, + [8174] = {.lex_state = 242}, + [8175] = {.lex_state = 242}, [8176] = {.lex_state = 242}, [8177] = {.lex_state = 242}, [8178] = {.lex_state = 242}, - [8179] = {.lex_state = 286}, - [8180] = {.lex_state = 242}, + [8179] = {.lex_state = 265}, + [8180] = {.lex_state = 337}, [8181] = {.lex_state = 265}, [8182] = {.lex_state = 242}, [8183] = {.lex_state = 242}, - [8184] = {.lex_state = 337}, - [8185] = {.lex_state = 286}, + [8184] = {.lex_state = 242}, + [8185] = {.lex_state = 242}, [8186] = {.lex_state = 242}, - [8187] = {.lex_state = 242}, - [8188] = {.lex_state = 286}, - [8189] = {.lex_state = 285}, - [8190] = {.lex_state = 242}, - [8191] = {.lex_state = 242}, + [8187] = {.lex_state = 285}, + [8188] = {.lex_state = 285}, + [8189] = {.lex_state = 286}, + [8190] = {.lex_state = 286}, + [8191] = {.lex_state = 285}, [8192] = {.lex_state = 242}, [8193] = {.lex_state = 286}, [8194] = {.lex_state = 285}, - [8195] = {.lex_state = 286}, + [8195] = {.lex_state = 285}, [8196] = {.lex_state = 285}, - [8197] = {.lex_state = 285}, - [8198] = {.lex_state = 286}, - [8199] = {.lex_state = 242}, - [8200] = {.lex_state = 242}, - [8201] = {.lex_state = 286}, - [8202] = {.lex_state = 286}, + [8197] = {.lex_state = 286}, + [8198] = {.lex_state = 285}, + [8199] = {.lex_state = 285}, + [8200] = {.lex_state = 286}, + [8201] = {.lex_state = 285}, + [8202] = {.lex_state = 285}, [8203] = {.lex_state = 242}, - [8204] = {.lex_state = 242}, - [8205] = {.lex_state = 242}, - [8206] = {.lex_state = 286}, - [8207] = {.lex_state = 286}, - [8208] = {.lex_state = 285}, - [8209] = {.lex_state = 242}, - [8210] = {.lex_state = 286}, - [8211] = {.lex_state = 286}, - [8212] = {.lex_state = 286}, - [8213] = {.lex_state = 285}, - [8214] = {.lex_state = 285}, + [8204] = {.lex_state = 285}, + [8205] = {.lex_state = 285}, + [8206] = {.lex_state = 285}, + [8207] = {.lex_state = 285}, + [8208] = {.lex_state = 242}, + [8209] = {.lex_state = 286}, + [8210] = {.lex_state = 242}, + [8211] = {.lex_state = 242}, + [8212] = {.lex_state = 242}, + [8213] = {.lex_state = 265}, + [8214] = {.lex_state = 242}, [8215] = {.lex_state = 242}, [8216] = {.lex_state = 242}, - [8217] = {.lex_state = 242}, - [8218] = {.lex_state = 280}, + [8217] = {.lex_state = 316}, + [8218] = {.lex_state = 242}, [8219] = {.lex_state = 242}, [8220] = {.lex_state = 242}, - [8221] = {.lex_state = 286}, - [8222] = {.lex_state = 335}, - [8223] = {.lex_state = 265}, + [8221] = {.lex_state = 242}, + [8222] = {.lex_state = 286}, + [8223] = {.lex_state = 242}, [8224] = {.lex_state = 242}, - [8225] = {.lex_state = 285}, + [8225] = {.lex_state = 242}, [8226] = {.lex_state = 242}, [8227] = {.lex_state = 242}, [8228] = {.lex_state = 242}, - [8229] = {.lex_state = 265}, + [8229] = {.lex_state = 242}, [8230] = {.lex_state = 286}, - [8231] = {.lex_state = 286}, - [8232] = {.lex_state = 286}, - [8233] = {.lex_state = 285}, - [8234] = {.lex_state = 242}, - [8235] = {.lex_state = 242}, + [8231] = {.lex_state = 242}, + [8232] = {.lex_state = 242}, + [8233] = {.lex_state = 242}, + [8234] = {.lex_state = 285}, + [8235] = {.lex_state = 139}, [8236] = {.lex_state = 265}, - [8237] = {.lex_state = 242}, - [8238] = {.lex_state = 265}, - [8239] = {.lex_state = 285}, - [8240] = {.lex_state = 242}, - [8241] = {.lex_state = 340}, + [8237] = {.lex_state = 338}, + [8238] = {.lex_state = 266}, + [8239] = {.lex_state = 266}, + [8240] = {.lex_state = 285}, + [8241] = {.lex_state = 266}, [8242] = {.lex_state = 338}, [8243] = {.lex_state = 338}, - [8244] = {.lex_state = 266}, - [8245] = {.lex_state = 285}, - [8246] = {.lex_state = 139}, - [8247] = {.lex_state = 286}, - [8248] = {.lex_state = 265}, - [8249] = {.lex_state = 285}, - [8250] = {.lex_state = 338}, - [8251] = {.lex_state = 338}, - [8252] = {.lex_state = 266}, - [8253] = {.lex_state = 139}, - [8254] = {.lex_state = 139}, + [8244] = {.lex_state = 139}, + [8245] = {.lex_state = 139}, + [8246] = {.lex_state = 347}, + [8247] = {.lex_state = 285}, + [8248] = {.lex_state = 340}, + [8249] = {.lex_state = 316}, + [8250] = {.lex_state = 265}, + [8251] = {.lex_state = 337}, + [8252] = {.lex_state = 265}, + [8253] = {.lex_state = 265}, + [8254] = {.lex_state = 265}, [8255] = {.lex_state = 265}, [8256] = {.lex_state = 265}, - [8257] = {.lex_state = 285}, - [8258] = {.lex_state = 338}, - [8259] = {.lex_state = 265}, + [8257] = {.lex_state = 265}, + [8258] = {.lex_state = 285}, + [8259] = {.lex_state = 139}, [8260] = {.lex_state = 338}, - [8261] = {.lex_state = 338}, - [8262] = {.lex_state = 338}, - [8263] = {.lex_state = 266}, - [8264] = {.lex_state = 338}, - [8265] = {.lex_state = 265}, - [8266] = {.lex_state = 338}, - [8267] = {.lex_state = 285}, - [8268] = {.lex_state = 340}, + [8261] = {.lex_state = 139}, + [8262] = {.lex_state = 335}, + [8263] = {.lex_state = 139}, + [8264] = {.lex_state = 265}, + [8265] = {.lex_state = 285}, + [8266] = {.lex_state = 139}, + [8267] = {.lex_state = 338}, + [8268] = {.lex_state = 285}, [8269] = {.lex_state = 285}, - [8270] = {.lex_state = 335}, - [8271] = {.lex_state = 266}, + [8270] = {.lex_state = 139}, + [8271] = {.lex_state = 265}, [8272] = {.lex_state = 139}, - [8273] = {.lex_state = 139}, - [8274] = {.lex_state = 265}, - [8275] = {.lex_state = 265}, - [8276] = {.lex_state = 337}, + [8273] = {.lex_state = 266}, + [8274] = {.lex_state = 338}, + [8275] = {.lex_state = 338}, + [8276] = {.lex_state = 265}, [8277] = {.lex_state = 139}, - [8278] = {.lex_state = 319}, - [8279] = {.lex_state = 265}, + [8278] = {.lex_state = 139}, + [8279] = {.lex_state = 335}, [8280] = {.lex_state = 265}, - [8281] = {.lex_state = 265}, + [8281] = {.lex_state = 285}, [8282] = {.lex_state = 265}, - [8283] = {.lex_state = 265}, - [8284] = {.lex_state = 265}, + [8283] = {.lex_state = 338}, + [8284] = {.lex_state = 338}, [8285] = {.lex_state = 265}, [8286] = {.lex_state = 139}, - [8287] = {.lex_state = 139}, - [8288] = {.lex_state = 139}, - [8289] = {.lex_state = 285}, - [8290] = {.lex_state = 265}, - [8291] = {.lex_state = 139}, - [8292] = {.lex_state = 285}, + [8287] = {.lex_state = 285}, + [8288] = {.lex_state = 286}, + [8289] = {.lex_state = 265}, + [8290] = {.lex_state = 139}, + [8291] = {.lex_state = 338}, + [8292] = {.lex_state = 338}, [8293] = {.lex_state = 139}, - [8294] = {.lex_state = 338}, - [8295] = {.lex_state = 335}, - [8296] = {.lex_state = 139}, - [8297] = {.lex_state = 338}, + [8294] = {.lex_state = 265}, + [8295] = {.lex_state = 265}, + [8296] = {.lex_state = 338}, + [8297] = {.lex_state = 285}, [8298] = {.lex_state = 338}, - [8299] = {.lex_state = 265}, - [8300] = {.lex_state = 265}, - [8301] = {.lex_state = 338}, - [8302] = {.lex_state = 139}, - [8303] = {.lex_state = 139}, + [8299] = {.lex_state = 285}, + [8300] = {.lex_state = 139}, + [8301] = {.lex_state = 265}, + [8302] = {.lex_state = 265}, + [8303] = {.lex_state = 265}, [8304] = {.lex_state = 265}, - [8305] = {.lex_state = 139}, - [8306] = {.lex_state = 139}, + [8305] = {.lex_state = 338}, + [8306] = {.lex_state = 265}, [8307] = {.lex_state = 265}, - [8308] = {.lex_state = 265}, + [8308] = {.lex_state = 285}, [8309] = {.lex_state = 265}, - [8310] = {.lex_state = 265}, - [8311] = {.lex_state = 285}, - [8312] = {.lex_state = 338}, - [8313] = {.lex_state = 338}, - [8314] = {.lex_state = 338}, + [8310] = {.lex_state = 139}, + [8311] = {.lex_state = 265}, + [8312] = {.lex_state = 139}, + [8313] = {.lex_state = 139}, + [8314] = {.lex_state = 139}, [8315] = {.lex_state = 139}, [8316] = {.lex_state = 139}, - [8317] = {.lex_state = 265}, + [8317] = {.lex_state = 338}, [8318] = {.lex_state = 139}, - [8319] = {.lex_state = 139}, - [8320] = {.lex_state = 265}, - [8321] = {.lex_state = 139}, - [8322] = {.lex_state = 139}, - [8323] = {.lex_state = 139}, + [8319] = {.lex_state = 338}, + [8320] = {.lex_state = 338}, + [8321] = {.lex_state = 266}, + [8322] = {.lex_state = 337}, + [8323] = {.lex_state = 265}, [8324] = {.lex_state = 139}, [8325] = {.lex_state = 265}, [8326] = {.lex_state = 139}, - [8327] = {.lex_state = 139}, - [8328] = {.lex_state = 265}, - [8329] = {.lex_state = 139}, + [8327] = {.lex_state = 285}, + [8328] = {.lex_state = 139}, + [8329] = {.lex_state = 338}, [8330] = {.lex_state = 139}, [8331] = {.lex_state = 139}, - [8332] = {.lex_state = 265}, - [8333] = {.lex_state = 139}, + [8332] = {.lex_state = 340}, + [8333] = {.lex_state = 285}, [8334] = {.lex_state = 338}, [8335] = {.lex_state = 265}, - [8336] = {.lex_state = 337}, - [8337] = {.lex_state = 285}, - [8338] = {.lex_state = 265}, + [8336] = {.lex_state = 265}, + [8337] = {.lex_state = 265}, + [8338] = {.lex_state = 338}, [8339] = {.lex_state = 338}, - [8340] = {.lex_state = 285}, - [8341] = {.lex_state = 347}, - [8342] = {.lex_state = 286}, + [8340] = {.lex_state = 338}, + [8341] = {.lex_state = 338}, + [8342] = {.lex_state = 338}, [8343] = {.lex_state = 338}, - [8344] = {.lex_state = 285}, - [8345] = {.lex_state = 265}, - [8346] = {.lex_state = 265}, + [8344] = {.lex_state = 139}, + [8345] = {.lex_state = 286}, + [8346] = {.lex_state = 139}, [8347] = {.lex_state = 139}, [8348] = {.lex_state = 139}, - [8349] = {.lex_state = 139}, - [8350] = {.lex_state = 338}, - [8351] = {.lex_state = 338}, - [8352] = {.lex_state = 265}, - [8353] = {.lex_state = 338}, + [8349] = {.lex_state = 338}, + [8350] = {.lex_state = 139}, + [8351] = {.lex_state = 265}, + [8352] = {.lex_state = 139}, + [8353] = {.lex_state = 139}, [8354] = {.lex_state = 338}, [8355] = {.lex_state = 139}, [8356] = {.lex_state = 139}, - [8357] = {.lex_state = 139}, - [8358] = {.lex_state = 338}, - [8359] = {.lex_state = 266}, + [8357] = {.lex_state = 338}, + [8358] = {.lex_state = 265}, + [8359] = {.lex_state = 139}, [8360] = {.lex_state = 265}, - [8361] = {.lex_state = 139}, - [8362] = {.lex_state = 338}, - [8363] = {.lex_state = 338}, - [8364] = {.lex_state = 338}, - [8365] = {.lex_state = 285}, - [8366] = {.lex_state = 285}, - [8367] = {.lex_state = 338}, - [8368] = {.lex_state = 338}, - [8369] = {.lex_state = 337}, - [8370] = {.lex_state = 337}, - [8371] = {.lex_state = 265}, + [8361] = {.lex_state = 266}, + [8362] = {.lex_state = 337}, + [8363] = {.lex_state = 337}, + [8364] = {.lex_state = 265}, + [8365] = {.lex_state = 265}, + [8366] = {.lex_state = 337}, + [8367] = {.lex_state = 337}, + [8368] = {.lex_state = 265}, + [8369] = {.lex_state = 266}, + [8370] = {.lex_state = 266}, + [8371] = {.lex_state = 340}, [8372] = {.lex_state = 338}, - [8373] = {.lex_state = 338}, - [8374] = {.lex_state = 337}, + [8373] = {.lex_state = 337}, + [8374] = {.lex_state = 266}, [8375] = {.lex_state = 265}, - [8376] = {.lex_state = 338}, - [8377] = {.lex_state = 265}, - [8378] = {.lex_state = 337}, - [8379] = {.lex_state = 338}, - [8380] = {.lex_state = 338}, - [8381] = {.lex_state = 342}, - [8382] = {.lex_state = 338}, - [8383] = {.lex_state = 266}, - [8384] = {.lex_state = 338}, - [8385] = {.lex_state = 338}, + [8376] = {.lex_state = 265}, + [8377] = {.lex_state = 338}, + [8378] = {.lex_state = 338}, + [8379] = {.lex_state = 280}, + [8380] = {.lex_state = 337}, + [8381] = {.lex_state = 338}, + [8382] = {.lex_state = 337}, + [8383] = {.lex_state = 337}, + [8384] = {.lex_state = 340}, + [8385] = {.lex_state = 340}, [8386] = {.lex_state = 338}, - [8387] = {.lex_state = 338}, - [8388] = {.lex_state = 265}, - [8389] = {.lex_state = 340}, - [8390] = {.lex_state = 266}, - [8391] = {.lex_state = 265}, - [8392] = {.lex_state = 340}, - [8393] = {.lex_state = 265}, - [8394] = {.lex_state = 340}, + [8387] = {.lex_state = 337}, + [8388] = {.lex_state = 337}, + [8389] = {.lex_state = 338}, + [8390] = {.lex_state = 337}, + [8391] = {.lex_state = 337}, + [8392] = {.lex_state = 298}, + [8393] = {.lex_state = 342}, + [8394] = {.lex_state = 337}, [8395] = {.lex_state = 337}, - [8396] = {.lex_state = 337}, - [8397] = {.lex_state = 338}, - [8398] = {.lex_state = 337}, - [8399] = {.lex_state = 337}, - [8400] = {.lex_state = 265}, - [8401] = {.lex_state = 337}, - [8402] = {.lex_state = 337}, - [8403] = {.lex_state = 337}, - [8404] = {.lex_state = 298}, - [8405] = {.lex_state = 338}, - [8406] = {.lex_state = 298}, - [8407] = {.lex_state = 298}, - [8408] = {.lex_state = 337}, - [8409] = {.lex_state = 266}, - [8410] = {.lex_state = 338}, + [8396] = {.lex_state = 266}, + [8397] = {.lex_state = 265}, + [8398] = {.lex_state = 338}, + [8399] = {.lex_state = 265}, + [8400] = {.lex_state = 337}, + [8401] = {.lex_state = 298}, + [8402] = {.lex_state = 340}, + [8403] = {.lex_state = 265}, + [8404] = {.lex_state = 266}, + [8405] = {.lex_state = 266}, + [8406] = {.lex_state = 337}, + [8407] = {.lex_state = 337}, + [8408] = {.lex_state = 298}, + [8409] = {.lex_state = 340}, + [8410] = {.lex_state = 298}, [8411] = {.lex_state = 338}, - [8412] = {.lex_state = 265}, + [8412] = {.lex_state = 337}, [8413] = {.lex_state = 337}, [8414] = {.lex_state = 337}, [8415] = {.lex_state = 337}, - [8416] = {.lex_state = 265}, + [8416] = {.lex_state = 337}, [8417] = {.lex_state = 338}, - [8418] = {.lex_state = 337}, - [8419] = {.lex_state = 340}, + [8418] = {.lex_state = 338}, + [8419] = {.lex_state = 337}, [8420] = {.lex_state = 337}, - [8421] = {.lex_state = 337}, + [8421] = {.lex_state = 298}, [8422] = {.lex_state = 337}, [8423] = {.lex_state = 337}, [8424] = {.lex_state = 337}, - [8425] = {.lex_state = 337}, + [8425] = {.lex_state = 265}, [8426] = {.lex_state = 337}, - [8427] = {.lex_state = 337}, - [8428] = {.lex_state = 337}, + [8427] = {.lex_state = 342}, + [8428] = {.lex_state = 338}, [8429] = {.lex_state = 338}, - [8430] = {.lex_state = 298}, - [8431] = {.lex_state = 337}, - [8432] = {.lex_state = 340}, - [8433] = {.lex_state = 280}, + [8430] = {.lex_state = 338}, + [8431] = {.lex_state = 338}, + [8432] = {.lex_state = 338}, + [8433] = {.lex_state = 338}, [8434] = {.lex_state = 338}, [8435] = {.lex_state = 338}, [8436] = {.lex_state = 338}, - [8437] = {.lex_state = 340}, - [8438] = {.lex_state = 266}, - [8439] = {.lex_state = 266}, - [8440] = {.lex_state = 337}, - [8441] = {.lex_state = 337}, - [8442] = {.lex_state = 266}, - [8443] = {.lex_state = 266}, - [8444] = {.lex_state = 342}, + [8437] = {.lex_state = 338}, + [8438] = {.lex_state = 337}, + [8439] = {.lex_state = 340}, + [8440] = {.lex_state = 338}, + [8441] = {.lex_state = 265}, + [8442] = {.lex_state = 338}, + [8443] = {.lex_state = 340}, + [8444] = {.lex_state = 265}, [8445] = {.lex_state = 265}, - [8446] = {.lex_state = 298}, - [8447] = {.lex_state = 337}, - [8448] = {.lex_state = 337}, - [8449] = {.lex_state = 340}, - [8450] = {.lex_state = 337}, - [8451] = {.lex_state = 265}, - [8452] = {.lex_state = 265}, - [8453] = {.lex_state = 265}, + [8446] = {.lex_state = 265}, + [8447] = {.lex_state = 265}, + [8448] = {.lex_state = 265}, + [8449] = {.lex_state = 338}, + [8450] = {.lex_state = 265}, + [8451] = {.lex_state = 315}, + [8452] = {.lex_state = 329}, + [8453] = {.lex_state = 338}, [8454] = {.lex_state = 265}, - [8455] = {.lex_state = 337}, + [8455] = {.lex_state = 265}, [8456] = {.lex_state = 265}, - [8457] = {.lex_state = 315}, - [8458] = {.lex_state = 266}, + [8457] = {.lex_state = 265}, + [8458] = {.lex_state = 338}, [8459] = {.lex_state = 265}, - [8460] = {.lex_state = 329}, - [8461] = {.lex_state = 265}, - [8462] = {.lex_state = 266}, - [8463] = {.lex_state = 265}, - [8464] = {.lex_state = 265}, - [8465] = {.lex_state = 265}, + [8460] = {.lex_state = 338}, + [8461] = {.lex_state = 315}, + [8462] = {.lex_state = 338}, + [8463] = {.lex_state = 337}, + [8464] = {.lex_state = 315}, + [8465] = {.lex_state = 315}, [8466] = {.lex_state = 265}, - [8467] = {.lex_state = 338}, - [8468] = {.lex_state = 315}, + [8467] = {.lex_state = 265}, + [8468] = {.lex_state = 265}, [8469] = {.lex_state = 265}, - [8470] = {.lex_state = 337}, - [8471] = {.lex_state = 337}, - [8472] = {.lex_state = 337}, - [8473] = {.lex_state = 298}, - [8474] = {.lex_state = 315}, - [8475] = {.lex_state = 265}, - [8476] = {.lex_state = 329}, - [8477] = {.lex_state = 338}, - [8478] = {.lex_state = 265}, - [8479] = {.lex_state = 265}, + [8470] = {.lex_state = 265}, + [8471] = {.lex_state = 265}, + [8472] = {.lex_state = 265}, + [8473] = {.lex_state = 265}, + [8474] = {.lex_state = 266}, + [8475] = {.lex_state = 298}, + [8476] = {.lex_state = 340}, + [8477] = {.lex_state = 265}, + [8478] = {.lex_state = 337}, + [8479] = {.lex_state = 337}, [8480] = {.lex_state = 337}, - [8481] = {.lex_state = 340}, - [8482] = {.lex_state = 338}, - [8483] = {.lex_state = 265}, - [8484] = {.lex_state = 265}, - [8485] = {.lex_state = 338}, + [8481] = {.lex_state = 337}, + [8482] = {.lex_state = 337}, + [8483] = {.lex_state = 337}, + [8484] = {.lex_state = 337}, + [8485] = {.lex_state = 337}, [8486] = {.lex_state = 265}, - [8487] = {.lex_state = 338}, - [8488] = {.lex_state = 265}, - [8489] = {.lex_state = 265}, - [8490] = {.lex_state = 315}, - [8491] = {.lex_state = 337}, + [8487] = {.lex_state = 266}, + [8488] = {.lex_state = 338}, + [8489] = {.lex_state = 329}, + [8490] = {.lex_state = 265}, + [8491] = {.lex_state = 338}, [8492] = {.lex_state = 265}, [8493] = {.lex_state = 265}, - [8494] = {.lex_state = 338}, - [8495] = {.lex_state = 329}, + [8494] = {.lex_state = 265}, + [8495] = {.lex_state = 265}, [8496] = {.lex_state = 338}, - [8497] = {.lex_state = 337}, + [8497] = {.lex_state = 265}, [8498] = {.lex_state = 265}, - [8499] = {.lex_state = 338}, - [8500] = {.lex_state = 265}, - [8501] = {.lex_state = 329}, - [8502] = {.lex_state = 338}, - [8503] = {.lex_state = 265}, - [8504] = {.lex_state = 265}, - [8505] = {.lex_state = 265}, - [8506] = {.lex_state = 265}, - [8507] = {.lex_state = 265}, - [8508] = {.lex_state = 265}, - [8509] = {.lex_state = 342}, + [8499] = {.lex_state = 329}, + [8500] = {.lex_state = 329}, + [8501] = {.lex_state = 265}, + [8502] = {.lex_state = 271}, + [8503] = {.lex_state = 271}, + [8504] = {.lex_state = 338}, + [8505] = {.lex_state = 342}, + [8506] = {.lex_state = 342}, + [8507] = {.lex_state = 316}, + [8508] = {.lex_state = 338}, + [8509] = {.lex_state = 338}, [8510] = {.lex_state = 271}, [8511] = {.lex_state = 271}, - [8512] = {.lex_state = 271}, - [8513] = {.lex_state = 271}, + [8512] = {.lex_state = 338}, + [8513] = {.lex_state = 342}, [8514] = {.lex_state = 338}, - [8515] = {.lex_state = 271}, - [8516] = {.lex_state = 265}, - [8517] = {.lex_state = 271}, + [8515] = {.lex_state = 342}, + [8516] = {.lex_state = 338}, + [8517] = {.lex_state = 338}, [8518] = {.lex_state = 271}, [8519] = {.lex_state = 271}, - [8520] = {.lex_state = 338}, - [8521] = {.lex_state = 338}, - [8522] = {.lex_state = 342}, - [8523] = {.lex_state = 338}, - [8524] = {.lex_state = 338}, - [8525] = {.lex_state = 265}, - [8526] = {.lex_state = 271}, + [8520] = {.lex_state = 265}, + [8521] = {.lex_state = 271}, + [8522] = {.lex_state = 271}, + [8523] = {.lex_state = 271}, + [8524] = {.lex_state = 271}, + [8525] = {.lex_state = 271}, + [8526] = {.lex_state = 265}, [8527] = {.lex_state = 338}, - [8528] = {.lex_state = 338}, - [8529] = {.lex_state = 342}, + [8528] = {.lex_state = 265}, + [8529] = {.lex_state = 338}, [8530] = {.lex_state = 338}, [8531] = {.lex_state = 338}, - [8532] = {.lex_state = 265}, - [8533] = {.lex_state = 265}, - [8534] = {.lex_state = 265}, - [8535] = {.lex_state = 265}, - [8536] = {.lex_state = 265}, + [8532] = {.lex_state = 338}, + [8533] = {.lex_state = 342}, + [8534] = {.lex_state = 338}, + [8535] = {.lex_state = 338}, + [8536] = {.lex_state = 338}, [8537] = {.lex_state = 342}, - [8538] = {.lex_state = 265}, + [8538] = {.lex_state = 271}, [8539] = {.lex_state = 265}, - [8540] = {.lex_state = 338}, + [8540] = {.lex_state = 265}, [8541] = {.lex_state = 338}, - [8542] = {.lex_state = 319}, - [8543] = {.lex_state = 265}, - [8544] = {.lex_state = 342}, - [8545] = {.lex_state = 265}, + [8542] = {.lex_state = 338}, + [8543] = {.lex_state = 338}, + [8544] = {.lex_state = 338}, + [8545] = {.lex_state = 271}, [8546] = {.lex_state = 338}, - [8547] = {.lex_state = 338}, - [8548] = {.lex_state = 338}, - [8549] = {.lex_state = 342}, - [8550] = {.lex_state = 342}, - [8551] = {.lex_state = 271}, + [8547] = {.lex_state = 265}, + [8548] = {.lex_state = 342}, + [8549] = {.lex_state = 265}, + [8550] = {.lex_state = 271}, + [8551] = {.lex_state = 265}, [8552] = {.lex_state = 342}, - [8553] = {.lex_state = 342}, + [8553] = {.lex_state = 265}, [8554] = {.lex_state = 338}, - [8555] = {.lex_state = 338}, + [8555] = {.lex_state = 265}, [8556] = {.lex_state = 338}, - [8557] = {.lex_state = 338}, - [8558] = {.lex_state = 338}, - [8559] = {.lex_state = 271}, - [8560] = {.lex_state = 342}, - [8561] = {.lex_state = 342}, - [8562] = {.lex_state = 265}, - [8563] = {.lex_state = 271}, - [8564] = {.lex_state = 342}, - [8565] = {.lex_state = 271}, + [8557] = {.lex_state = 265}, + [8558] = {.lex_state = 342}, + [8559] = {.lex_state = 342}, + [8560] = {.lex_state = 338}, + [8561] = {.lex_state = 265}, + [8562] = {.lex_state = 271}, + [8563] = {.lex_state = 265}, + [8564] = {.lex_state = 338}, + [8565] = {.lex_state = 338}, [8566] = {.lex_state = 265}, - [8567] = {.lex_state = 342}, - [8568] = {.lex_state = 338}, - [8569] = {.lex_state = 271}, + [8567] = {.lex_state = 265}, + [8568] = {.lex_state = 271}, + [8569] = {.lex_state = 342}, [8570] = {.lex_state = 338}, [8571] = {.lex_state = 338}, - [8572] = {.lex_state = 338}, + [8572] = {.lex_state = 342}, [8573] = {.lex_state = 338}, - [8574] = {.lex_state = 338}, + [8574] = {.lex_state = 342}, [8575] = {.lex_state = 338}, - [8576] = {.lex_state = 338}, + [8576] = {.lex_state = 342}, [8577] = {.lex_state = 342}, - [8578] = {.lex_state = 338}, - [8579] = {.lex_state = 342}, - [8580] = {.lex_state = 265}, - [8581] = {.lex_state = 265}, - [8582] = {.lex_state = 342}, - [8583] = {.lex_state = 271}, - [8584] = {.lex_state = 342}, - [8585] = {.lex_state = 271}, - [8586] = {.lex_state = 338}, - [8587] = {.lex_state = 271}, - [8588] = {.lex_state = 271}, - [8589] = {.lex_state = 338}, - [8590] = {.lex_state = 338}, - [8591] = {.lex_state = 265}, - [8592] = {.lex_state = 342}, - [8593] = {.lex_state = 271}, + [8578] = {.lex_state = 342}, + [8579] = {.lex_state = 271}, + [8580] = {.lex_state = 342}, + [8581] = {.lex_state = 338}, + [8582] = {.lex_state = 265}, + [8583] = {.lex_state = 338}, + [8584] = {.lex_state = 265}, + [8585] = {.lex_state = 338}, + [8586] = {.lex_state = 342}, + [8587] = {.lex_state = 338}, + [8588] = {.lex_state = 342}, + [8589] = {.lex_state = 265}, + [8590] = {.lex_state = 271}, + [8591] = {.lex_state = 342}, + [8592] = {.lex_state = 271}, + [8593] = {.lex_state = 265}, [8594] = {.lex_state = 338}, - [8595] = {.lex_state = 338}, - [8596] = {.lex_state = 342}, - [8597] = {.lex_state = 271}, - [8598] = {.lex_state = 342}, - [8599] = {.lex_state = 265}, - [8600] = {.lex_state = 265}, - [8601] = {.lex_state = 342}, - [8602] = {.lex_state = 338}, - [8603] = {.lex_state = 253}, - [8604] = {.lex_state = 271}, - [8605] = {.lex_state = 265}, + [8595] = {.lex_state = 342}, + [8596] = {.lex_state = 271}, + [8597] = {.lex_state = 266}, + [8598] = {.lex_state = 337}, + [8599] = {.lex_state = 338}, + [8600] = {.lex_state = 253}, + [8601] = {.lex_state = 253}, + [8602] = {.lex_state = 271}, + [8603] = {.lex_state = 337}, + [8604] = {.lex_state = 337}, + [8605] = {.lex_state = 338}, [8606] = {.lex_state = 271}, - [8607] = {.lex_state = 271}, + [8607] = {.lex_state = 253}, [8608] = {.lex_state = 253}, - [8609] = {.lex_state = 301}, + [8609] = {.lex_state = 253}, [8610] = {.lex_state = 253}, [8611] = {.lex_state = 253}, [8612] = {.lex_state = 338}, - [8613] = {.lex_state = 266}, + [8613] = {.lex_state = 271}, [8614] = {.lex_state = 253}, [8615] = {.lex_state = 253}, - [8616] = {.lex_state = 253}, - [8617] = {.lex_state = 338}, - [8618] = {.lex_state = 338}, - [8619] = {.lex_state = 265}, + [8616] = {.lex_state = 271}, + [8617] = {.lex_state = 245}, + [8618] = {.lex_state = 265}, + [8619] = {.lex_state = 337}, [8620] = {.lex_state = 253}, - [8621] = {.lex_state = 253}, - [8622] = {.lex_state = 253}, - [8623] = {.lex_state = 253}, - [8624] = {.lex_state = 253}, - [8625] = {.lex_state = 338}, - [8626] = {.lex_state = 337}, - [8627] = {.lex_state = 337}, - [8628] = {.lex_state = 280}, + [8621] = {.lex_state = 301}, + [8622] = {.lex_state = 301}, + [8623] = {.lex_state = 301}, + [8624] = {.lex_state = 280}, + [8625] = {.lex_state = 337}, + [8626] = {.lex_state = 301}, + [8627] = {.lex_state = 253}, + [8628] = {.lex_state = 253}, [8629] = {.lex_state = 337}, - [8630] = {.lex_state = 337}, - [8631] = {.lex_state = 337}, - [8632] = {.lex_state = 337}, + [8630] = {.lex_state = 338}, + [8631] = {.lex_state = 265}, + [8632] = {.lex_state = 271}, [8633] = {.lex_state = 253}, [8634] = {.lex_state = 253}, - [8635] = {.lex_state = 253}, + [8635] = {.lex_state = 301}, [8636] = {.lex_state = 301}, - [8637] = {.lex_state = 266}, - [8638] = {.lex_state = 338}, - [8639] = {.lex_state = 340}, - [8640] = {.lex_state = 271}, - [8641] = {.lex_state = 271}, - [8642] = {.lex_state = 271}, - [8643] = {.lex_state = 301}, + [8637] = {.lex_state = 253}, + [8638] = {.lex_state = 253}, + [8639] = {.lex_state = 253}, + [8640] = {.lex_state = 253}, + [8641] = {.lex_state = 253}, + [8642] = {.lex_state = 301}, + [8643] = {.lex_state = 266}, [8644] = {.lex_state = 253}, - [8645] = {.lex_state = 253}, - [8646] = {.lex_state = 265}, - [8647] = {.lex_state = 340}, - [8648] = {.lex_state = 253}, - [8649] = {.lex_state = 265}, + [8645] = {.lex_state = 266}, + [8646] = {.lex_state = 301}, + [8647] = {.lex_state = 265}, + [8648] = {.lex_state = 340}, + [8649] = {.lex_state = 271}, [8650] = {.lex_state = 253}, - [8651] = {.lex_state = 253}, - [8652] = {.lex_state = 253}, - [8653] = {.lex_state = 253}, - [8654] = {.lex_state = 253}, + [8651] = {.lex_state = 337}, + [8652] = {.lex_state = 271}, + [8653] = {.lex_state = 265}, + [8654] = {.lex_state = 271}, [8655] = {.lex_state = 253}, - [8656] = {.lex_state = 245}, + [8656] = {.lex_state = 266}, [8657] = {.lex_state = 253}, - [8658] = {.lex_state = 266}, - [8659] = {.lex_state = 337}, - [8660] = {.lex_state = 265}, - [8661] = {.lex_state = 337}, - [8662] = {.lex_state = 301}, - [8663] = {.lex_state = 253}, - [8664] = {.lex_state = 266}, - [8665] = {.lex_state = 271}, - [8666] = {.lex_state = 301}, - [8667] = {.lex_state = 301}, - [8668] = {.lex_state = 301}, - [8669] = {.lex_state = 301}, - [8670] = {.lex_state = 271}, - [8671] = {.lex_state = 265}, - [8672] = {.lex_state = 329}, - [8673] = {.lex_state = 338}, + [8658] = {.lex_state = 265}, + [8659] = {.lex_state = 253}, + [8660] = {.lex_state = 338}, + [8661] = {.lex_state = 253}, + [8662] = {.lex_state = 337}, + [8663] = {.lex_state = 340}, + [8664] = {.lex_state = 253}, + [8665] = {.lex_state = 265}, + [8666] = {.lex_state = 329}, + [8667] = {.lex_state = 265}, + [8668] = {.lex_state = 338}, + [8669] = {.lex_state = 265}, + [8670] = {.lex_state = 338}, + [8671] = {.lex_state = 338}, + [8672] = {.lex_state = 301}, + [8673] = {.lex_state = 301}, [8674] = {.lex_state = 338}, - [8675] = {.lex_state = 265}, - [8676] = {.lex_state = 265}, - [8677] = {.lex_state = 338}, - [8678] = {.lex_state = 338}, - [8679] = {.lex_state = 338}, + [8675] = {.lex_state = 301}, + [8676] = {.lex_state = 301}, + [8677] = {.lex_state = 301}, + [8678] = {.lex_state = 301}, + [8679] = {.lex_state = 301}, [8680] = {.lex_state = 301}, - [8681] = {.lex_state = 265}, - [8682] = {.lex_state = 265}, - [8683] = {.lex_state = 301}, - [8684] = {.lex_state = 265}, - [8685] = {.lex_state = 265}, - [8686] = {.lex_state = 265}, - [8687] = {.lex_state = 265}, + [8681] = {.lex_state = 301}, + [8682] = {.lex_state = 338}, + [8683] = {.lex_state = 338}, + [8684] = {.lex_state = 301}, + [8685] = {.lex_state = 301}, + [8686] = {.lex_state = 301}, + [8687] = {.lex_state = 301}, [8688] = {.lex_state = 301}, - [8689] = {.lex_state = 338}, - [8690] = {.lex_state = 340}, - [8691] = {.lex_state = 265}, - [8692] = {.lex_state = 265}, - [8693] = {.lex_state = 329}, - [8694] = {.lex_state = 266}, + [8689] = {.lex_state = 301}, + [8690] = {.lex_state = 301}, + [8691] = {.lex_state = 301}, + [8692] = {.lex_state = 301}, + [8693] = {.lex_state = 338}, + [8694] = {.lex_state = 338}, [8695] = {.lex_state = 265}, [8696] = {.lex_state = 338}, [8697] = {.lex_state = 266}, [8698] = {.lex_state = 338}, - [8699] = {.lex_state = 329}, - [8700] = {.lex_state = 265}, - [8701] = {.lex_state = 266}, - [8702] = {.lex_state = 265}, - [8703] = {.lex_state = 340}, + [8699] = {.lex_state = 266}, + [8700] = {.lex_state = 338}, + [8701] = {.lex_state = 338}, + [8702] = {.lex_state = 329}, + [8703] = {.lex_state = 338}, [8704] = {.lex_state = 338}, [8705] = {.lex_state = 265}, [8706] = {.lex_state = 265}, - [8707] = {.lex_state = 265}, - [8708] = {.lex_state = 338}, - [8709] = {.lex_state = 338}, + [8707] = {.lex_state = 266}, + [8708] = {.lex_state = 265}, + [8709] = {.lex_state = 265}, [8710] = {.lex_state = 265}, - [8711] = {.lex_state = 265}, - [8712] = {.lex_state = 301}, - [8713] = {.lex_state = 301}, + [8711] = {.lex_state = 266}, + [8712] = {.lex_state = 338}, + [8713] = {.lex_state = 265}, [8714] = {.lex_state = 301}, - [8715] = {.lex_state = 301}, - [8716] = {.lex_state = 265}, - [8717] = {.lex_state = 301}, - [8718] = {.lex_state = 301}, + [8715] = {.lex_state = 338}, + [8716] = {.lex_state = 266}, + [8717] = {.lex_state = 265}, + [8718] = {.lex_state = 340}, [8719] = {.lex_state = 266}, - [8720] = {.lex_state = 338}, - [8721] = {.lex_state = 265}, - [8722] = {.lex_state = 338}, - [8723] = {.lex_state = 338}, - [8724] = {.lex_state = 301}, - [8725] = {.lex_state = 301}, - [8726] = {.lex_state = 301}, - [8727] = {.lex_state = 265}, + [8720] = {.lex_state = 265}, + [8721] = {.lex_state = 338}, + [8722] = {.lex_state = 265}, + [8723] = {.lex_state = 265}, + [8724] = {.lex_state = 265}, + [8725] = {.lex_state = 338}, + [8726] = {.lex_state = 265}, + [8727] = {.lex_state = 340}, [8728] = {.lex_state = 265}, - [8729] = {.lex_state = 338}, - [8730] = {.lex_state = 301}, - [8731] = {.lex_state = 265}, - [8732] = {.lex_state = 338}, - [8733] = {.lex_state = 338}, + [8729] = {.lex_state = 265}, + [8730] = {.lex_state = 265}, + [8731] = {.lex_state = 338}, + [8732] = {.lex_state = 265}, + [8733] = {.lex_state = 266}, [8734] = {.lex_state = 338}, - [8735] = {.lex_state = 301}, + [8735] = {.lex_state = 265}, [8736] = {.lex_state = 301}, - [8737] = {.lex_state = 301}, + [8737] = {.lex_state = 265}, [8738] = {.lex_state = 265}, - [8739] = {.lex_state = 266}, + [8739] = {.lex_state = 265}, [8740] = {.lex_state = 265}, [8741] = {.lex_state = 265}, - [8742] = {.lex_state = 266}, - [8743] = {.lex_state = 301}, - [8744] = {.lex_state = 301}, + [8742] = {.lex_state = 265}, + [8743] = {.lex_state = 329}, + [8744] = {.lex_state = 265}, [8745] = {.lex_state = 265}, [8746] = {.lex_state = 265}, - [8747] = {.lex_state = 265}, + [8747] = {.lex_state = 338}, [8748] = {.lex_state = 265}, - [8749] = {.lex_state = 301}, - [8750] = {.lex_state = 338}, - [8751] = {.lex_state = 265}, - [8752] = {.lex_state = 338}, - [8753] = {.lex_state = 266}, + [8749] = {.lex_state = 266}, + [8750] = {.lex_state = 265}, + [8751] = {.lex_state = 338}, + [8752] = {.lex_state = 329}, + [8753] = {.lex_state = 265}, [8754] = {.lex_state = 265}, - [8755] = {.lex_state = 266}, + [8755] = {.lex_state = 265}, [8756] = {.lex_state = 265}, [8757] = {.lex_state = 265}, [8758] = {.lex_state = 338}, [8759] = {.lex_state = 338}, - [8760] = {.lex_state = 329}, + [8760] = {.lex_state = 340}, [8761] = {.lex_state = 338}, - [8762] = {.lex_state = 265}, + [8762] = {.lex_state = 334}, [8763] = {.lex_state = 265}, - [8764] = {.lex_state = 338}, - [8765] = {.lex_state = 301}, - [8766] = {.lex_state = 265}, - [8767] = {.lex_state = 338}, - [8768] = {.lex_state = 334}, - [8769] = {.lex_state = 265}, - [8770] = {.lex_state = 338}, - [8771] = {.lex_state = 280}, - [8772] = {.lex_state = 338}, - [8773] = {.lex_state = 265}, - [8774] = {.lex_state = 280}, - [8775] = {.lex_state = 280}, + [8764] = {.lex_state = 337}, + [8765] = {.lex_state = 265}, + [8766] = {.lex_state = 340}, + [8767] = {.lex_state = 280}, + [8768] = {.lex_state = 340}, + [8769] = {.lex_state = 338}, + [8770] = {.lex_state = 337}, + [8771] = {.lex_state = 337}, + [8772] = {.lex_state = 337}, + [8773] = {.lex_state = 338}, + [8774] = {.lex_state = 338}, + [8775] = {.lex_state = 340}, [8776] = {.lex_state = 280}, - [8777] = {.lex_state = 337}, - [8778] = {.lex_state = 265}, - [8779] = {.lex_state = 265}, - [8780] = {.lex_state = 265}, - [8781] = {.lex_state = 280}, - [8782] = {.lex_state = 265}, - [8783] = {.lex_state = 280}, - [8784] = {.lex_state = 338}, - [8785] = {.lex_state = 338}, + [8777] = {.lex_state = 265}, + [8778] = {.lex_state = 280}, + [8779] = {.lex_state = 334}, + [8780] = {.lex_state = 337}, + [8781] = {.lex_state = 337}, + [8782] = {.lex_state = 337}, + [8783] = {.lex_state = 337}, + [8784] = {.lex_state = 265}, + [8785] = {.lex_state = 265}, [8786] = {.lex_state = 265}, - [8787] = {.lex_state = 337}, - [8788] = {.lex_state = 340}, - [8789] = {.lex_state = 340}, - [8790] = {.lex_state = 338}, - [8791] = {.lex_state = 337}, - [8792] = {.lex_state = 266}, - [8793] = {.lex_state = 265}, - [8794] = {.lex_state = 338}, - [8795] = {.lex_state = 265}, + [8787] = {.lex_state = 265}, + [8788] = {.lex_state = 280}, + [8789] = {.lex_state = 265}, + [8790] = {.lex_state = 265}, + [8791] = {.lex_state = 265}, + [8792] = {.lex_state = 338}, + [8793] = {.lex_state = 338}, + [8794] = {.lex_state = 280}, + [8795] = {.lex_state = 338}, [8796] = {.lex_state = 265}, [8797] = {.lex_state = 280}, - [8798] = {.lex_state = 334}, - [8799] = {.lex_state = 265}, - [8800] = {.lex_state = 337}, + [8798] = {.lex_state = 266}, + [8799] = {.lex_state = 280}, + [8800] = {.lex_state = 338}, [8801] = {.lex_state = 280}, [8802] = {.lex_state = 266}, - [8803] = {.lex_state = 337}, - [8804] = {.lex_state = 338}, - [8805] = {.lex_state = 265}, - [8806] = {.lex_state = 340}, - [8807] = {.lex_state = 338}, - [8808] = {.lex_state = 340}, - [8809] = {.lex_state = 280}, - [8810] = {.lex_state = 338}, - [8811] = {.lex_state = 280}, + [8803] = {.lex_state = 280}, + [8804] = {.lex_state = 340}, + [8805] = {.lex_state = 338}, + [8806] = {.lex_state = 265}, + [8807] = {.lex_state = 265}, + [8808] = {.lex_state = 280}, + [8809] = {.lex_state = 265}, + [8810] = {.lex_state = 265}, + [8811] = {.lex_state = 338}, [8812] = {.lex_state = 265}, - [8813] = {.lex_state = 265}, - [8814] = {.lex_state = 337}, - [8815] = {.lex_state = 265}, - [8816] = {.lex_state = 340}, + [8813] = {.lex_state = 340}, + [8814] = {.lex_state = 280}, + [8815] = {.lex_state = 340}, + [8816] = {.lex_state = 338}, [8817] = {.lex_state = 265}, [8818] = {.lex_state = 265}, [8819] = {.lex_state = 265}, - [8820] = {.lex_state = 337}, + [8820] = {.lex_state = 265}, [8821] = {.lex_state = 334}, [8822] = {.lex_state = 338}, - [8823] = {.lex_state = 340}, + [8823] = {.lex_state = 265}, [8824] = {.lex_state = 265}, - [8825] = {.lex_state = 280}, + [8825] = {.lex_state = 338}, [8826] = {.lex_state = 338}, [8827] = {.lex_state = 338}, - [8828] = {.lex_state = 337}, - [8829] = {.lex_state = 265}, - [8830] = {.lex_state = 338}, - [8831] = {.lex_state = 338}, - [8832] = {.lex_state = 340}, - [8833] = {.lex_state = 265}, - [8834] = {.lex_state = 266}, + [8828] = {.lex_state = 338}, + [8829] = {.lex_state = 271}, + [8830] = {.lex_state = 271}, + [8831] = {.lex_state = 298}, + [8832] = {.lex_state = 266}, + [8833] = {.lex_state = 271}, + [8834] = {.lex_state = 271}, [8835] = {.lex_state = 271}, [8836] = {.lex_state = 338}, [8837] = {.lex_state = 338}, [8838] = {.lex_state = 271}, - [8839] = {.lex_state = 338}, - [8840] = {.lex_state = 338}, + [8839] = {.lex_state = 271}, + [8840] = {.lex_state = 271}, [8841] = {.lex_state = 271}, [8842] = {.lex_state = 338}, - [8843] = {.lex_state = 271}, - [8844] = {.lex_state = 338}, - [8845] = {.lex_state = 271}, - [8846] = {.lex_state = 271}, - [8847] = {.lex_state = 338}, - [8848] = {.lex_state = 298}, - [8849] = {.lex_state = 271}, - [8850] = {.lex_state = 0}, + [8843] = {.lex_state = 0}, + [8844] = {.lex_state = 271}, + [8845] = {.lex_state = 338}, + [8846] = {.lex_state = 338}, + [8847] = {.lex_state = 271}, + [8848] = {.lex_state = 338}, + [8849] = {.lex_state = 340}, + [8850] = {.lex_state = 338}, [8851] = {.lex_state = 271}, - [8852] = {.lex_state = 271}, - [8853] = {.lex_state = 271}, - [8854] = {.lex_state = 338}, - [8855] = {.lex_state = 338}, - [8856] = {.lex_state = 338}, - [8857] = {.lex_state = 271}, - [8858] = {.lex_state = 271}, - [8859] = {.lex_state = 340}, - [8860] = {.lex_state = 315}, - [8861] = {.lex_state = 315}, - [8862] = {.lex_state = 338}, - [8863] = {.lex_state = 338}, - [8864] = {.lex_state = 338}, - [8865] = {.lex_state = 338}, - [8866] = {.lex_state = 335}, - [8867] = {.lex_state = 334}, + [8852] = {.lex_state = 338}, + [8853] = {.lex_state = 338}, + [8854] = {.lex_state = 266}, + [8855] = {.lex_state = 266}, + [8856] = {.lex_state = 315}, + [8857] = {.lex_state = 266}, + [8858] = {.lex_state = 338}, + [8859] = {.lex_state = 338}, + [8860] = {.lex_state = 266}, + [8861] = {.lex_state = 338}, + [8862] = {.lex_state = 315}, + [8863] = {.lex_state = 337}, + [8864] = {.lex_state = 266}, + [8865] = {.lex_state = 266}, + [8866] = {.lex_state = 271}, + [8867] = {.lex_state = 271}, [8868] = {.lex_state = 266}, - [8869] = {.lex_state = 315}, + [8869] = {.lex_state = 338}, [8870] = {.lex_state = 266}, - [8871] = {.lex_state = 266}, - [8872] = {.lex_state = 338}, - [8873] = {.lex_state = 266}, - [8874] = {.lex_state = 338}, - [8875] = {.lex_state = 338}, - [8876] = {.lex_state = 315}, - [8877] = {.lex_state = 266}, - [8878] = {.lex_state = 315}, - [8879] = {.lex_state = 266}, - [8880] = {.lex_state = 266}, - [8881] = {.lex_state = 315}, - [8882] = {.lex_state = 330}, - [8883] = {.lex_state = 335}, - [8884] = {.lex_state = 337}, - [8885] = {.lex_state = 337}, - [8886] = {.lex_state = 337}, - [8887] = {.lex_state = 337}, + [8871] = {.lex_state = 271}, + [8872] = {.lex_state = 266}, + [8873] = {.lex_state = 315}, + [8874] = {.lex_state = 337}, + [8875] = {.lex_state = 315}, + [8876] = {.lex_state = 301}, + [8877] = {.lex_state = 330}, + [8878] = {.lex_state = 330}, + [8879] = {.lex_state = 337}, + [8880] = {.lex_state = 301}, + [8881] = {.lex_state = 301}, + [8882] = {.lex_state = 337}, + [8883] = {.lex_state = 301}, + [8884] = {.lex_state = 266}, + [8885] = {.lex_state = 335}, + [8886] = {.lex_state = 266}, + [8887] = {.lex_state = 315}, [8888] = {.lex_state = 266}, - [8889] = {.lex_state = 266}, + [8889] = {.lex_state = 315}, [8890] = {.lex_state = 266}, [8891] = {.lex_state = 337}, - [8892] = {.lex_state = 266}, + [8892] = {.lex_state = 265}, [8893] = {.lex_state = 266}, - [8894] = {.lex_state = 266}, - [8895] = {.lex_state = 337}, - [8896] = {.lex_state = 266}, - [8897] = {.lex_state = 266}, - [8898] = {.lex_state = 330}, + [8894] = {.lex_state = 315}, + [8895] = {.lex_state = 266}, + [8896] = {.lex_state = 271}, + [8897] = {.lex_state = 271}, + [8898] = {.lex_state = 315}, [8899] = {.lex_state = 301}, - [8900] = {.lex_state = 266}, - [8901] = {.lex_state = 266}, - [8902] = {.lex_state = 315}, - [8903] = {.lex_state = 266}, + [8900] = {.lex_state = 337}, + [8901] = {.lex_state = 315}, + [8902] = {.lex_state = 338}, + [8903] = {.lex_state = 301}, [8904] = {.lex_state = 315}, - [8905] = {.lex_state = 301}, - [8906] = {.lex_state = 301}, - [8907] = {.lex_state = 271}, - [8908] = {.lex_state = 335}, - [8909] = {.lex_state = 337}, + [8905] = {.lex_state = 266}, + [8906] = {.lex_state = 338}, + [8907] = {.lex_state = 266}, + [8908] = {.lex_state = 266}, + [8909] = {.lex_state = 266}, [8910] = {.lex_state = 315}, - [8911] = {.lex_state = 315}, - [8912] = {.lex_state = 315}, - [8913] = {.lex_state = 330}, - [8914] = {.lex_state = 301}, - [8915] = {.lex_state = 301}, - [8916] = {.lex_state = 266}, + [8911] = {.lex_state = 338}, + [8912] = {.lex_state = 330}, + [8913] = {.lex_state = 301}, + [8914] = {.lex_state = 315}, + [8915] = {.lex_state = 266}, + [8916] = {.lex_state = 335}, [8917] = {.lex_state = 266}, - [8918] = {.lex_state = 315}, - [8919] = {.lex_state = 315}, - [8920] = {.lex_state = 301}, - [8921] = {.lex_state = 266}, - [8922] = {.lex_state = 301}, - [8923] = {.lex_state = 266}, - [8924] = {.lex_state = 266}, - [8925] = {.lex_state = 335}, - [8926] = {.lex_state = 271}, - [8927] = {.lex_state = 271}, - [8928] = {.lex_state = 315}, - [8929] = {.lex_state = 266}, - [8930] = {.lex_state = 265}, + [8918] = {.lex_state = 330}, + [8919] = {.lex_state = 335}, + [8920] = {.lex_state = 335}, + [8921] = {.lex_state = 337}, + [8922] = {.lex_state = 335}, + [8923] = {.lex_state = 337}, + [8924] = {.lex_state = 271}, + [8925] = {.lex_state = 301}, + [8926] = {.lex_state = 266}, + [8927] = {.lex_state = 266}, + [8928] = {.lex_state = 266}, + [8929] = {.lex_state = 315}, + [8930] = {.lex_state = 315}, [8931] = {.lex_state = 266}, - [8932] = {.lex_state = 335}, + [8932] = {.lex_state = 266}, [8933] = {.lex_state = 271}, - [8934] = {.lex_state = 266}, - [8935] = {.lex_state = 266}, - [8936] = {.lex_state = 337}, - [8937] = {.lex_state = 330}, - [8938] = {.lex_state = 271}, - [8939] = {.lex_state = 271}, - [8940] = {.lex_state = 315}, - [8941] = {.lex_state = 266}, - [8942] = {.lex_state = 271}, - [8943] = {.lex_state = 315}, - [8944] = {.lex_state = 271}, - [8945] = {.lex_state = 266}, + [8934] = {.lex_state = 315}, + [8935] = {.lex_state = 315}, + [8936] = {.lex_state = 334}, + [8937] = {.lex_state = 271}, + [8938] = {.lex_state = 266}, + [8939] = {.lex_state = 266}, + [8940] = {.lex_state = 266}, + [8941] = {.lex_state = 337}, + [8942] = {.lex_state = 298}, + [8943] = {.lex_state = 298}, + [8944] = {.lex_state = 301}, + [8945] = {.lex_state = 301}, [8946] = {.lex_state = 301}, - [8947] = {.lex_state = 298}, + [8947] = {.lex_state = 301}, [8948] = {.lex_state = 298}, - [8949] = {.lex_state = 271}, - [8950] = {.lex_state = 271}, - [8951] = {.lex_state = 271}, + [8949] = {.lex_state = 245}, + [8950] = {.lex_state = 298}, + [8951] = {.lex_state = 301}, [8952] = {.lex_state = 298}, - [8953] = {.lex_state = 337}, - [8954] = {.lex_state = 337}, - [8955] = {.lex_state = 337}, - [8956] = {.lex_state = 266}, - [8957] = {.lex_state = 301}, - [8958] = {.lex_state = 301}, - [8959] = {.lex_state = 301}, - [8960] = {.lex_state = 301}, - [8961] = {.lex_state = 301}, + [8953] = {.lex_state = 271}, + [8954] = {.lex_state = 298}, + [8955] = {.lex_state = 271}, + [8956] = {.lex_state = 298}, + [8957] = {.lex_state = 266}, + [8958] = {.lex_state = 298}, + [8959] = {.lex_state = 271}, + [8960] = {.lex_state = 298}, + [8961] = {.lex_state = 336}, [8962] = {.lex_state = 301}, [8963] = {.lex_state = 301}, - [8964] = {.lex_state = 301}, - [8965] = {.lex_state = 298}, - [8966] = {.lex_state = 266}, - [8967] = {.lex_state = 298}, + [8964] = {.lex_state = 337}, + [8965] = {.lex_state = 301}, + [8966] = {.lex_state = 271}, + [8967] = {.lex_state = 266}, [8968] = {.lex_state = 298}, - [8969] = {.lex_state = 336}, - [8970] = {.lex_state = 298}, - [8971] = {.lex_state = 245}, - [8972] = {.lex_state = 271}, - [8973] = {.lex_state = 298}, - [8974] = {.lex_state = 337}, - [8975] = {.lex_state = 301}, + [8969] = {.lex_state = 271}, + [8970] = {.lex_state = 271}, + [8971] = {.lex_state = 301}, + [8972] = {.lex_state = 337}, + [8973] = {.lex_state = 245}, + [8974] = {.lex_state = 298}, + [8975] = {.lex_state = 337}, [8976] = {.lex_state = 298}, - [8977] = {.lex_state = 298}, - [8978] = {.lex_state = 298}, + [8977] = {.lex_state = 265}, + [8978] = {.lex_state = 330}, [8979] = {.lex_state = 298}, [8980] = {.lex_state = 271}, - [8981] = {.lex_state = 245}, - [8982] = {.lex_state = 271}, - [8983] = {.lex_state = 315}, - [8984] = {.lex_state = 271}, + [8981] = {.lex_state = 271}, + [8982] = {.lex_state = 265}, + [8983] = {.lex_state = 271}, + [8984] = {.lex_state = 265}, [8985] = {.lex_state = 265}, - [8986] = {.lex_state = 265}, - [8987] = {.lex_state = 271}, - [8988] = {.lex_state = 330}, - [8989] = {.lex_state = 271}, - [8990] = {.lex_state = 265}, - [8991] = {.lex_state = 265}, - [8992] = {.lex_state = 271}, - [8993] = {.lex_state = 265}, + [8986] = {.lex_state = 271}, + [8987] = {.lex_state = 265}, + [8988] = {.lex_state = 341}, + [8989] = {.lex_state = 330}, + [8990] = {.lex_state = 330}, + [8991] = {.lex_state = 271}, + [8992] = {.lex_state = 265}, + [8993] = {.lex_state = 315}, [8994] = {.lex_state = 271}, - [8995] = {.lex_state = 330}, - [8996] = {.lex_state = 298}, - [8997] = {.lex_state = 330}, - [8998] = {.lex_state = 271}, + [8995] = {.lex_state = 271}, + [8996] = {.lex_state = 265}, + [8997] = {.lex_state = 315}, + [8998] = {.lex_state = 298}, [8999] = {.lex_state = 265}, - [9000] = {.lex_state = 265}, - [9001] = {.lex_state = 298}, - [9002] = {.lex_state = 330}, - [9003] = {.lex_state = 271}, - [9004] = {.lex_state = 315}, - [9005] = {.lex_state = 265}, - [9006] = {.lex_state = 271}, - [9007] = {.lex_state = 266}, - [9008] = {.lex_state = 266}, - [9009] = {.lex_state = 266}, + [9000] = {.lex_state = 271}, + [9001] = {.lex_state = 330}, + [9002] = {.lex_state = 337}, + [9003] = {.lex_state = 334}, + [9004] = {.lex_state = 438}, + [9005] = {.lex_state = 438}, + [9006] = {.lex_state = 266}, + [9007] = {.lex_state = 271}, + [9008] = {.lex_state = 265}, + [9009] = {.lex_state = 265}, [9010] = {.lex_state = 266}, [9011] = {.lex_state = 265}, - [9012] = {.lex_state = 266}, + [9012] = {.lex_state = 341}, [9013] = {.lex_state = 266}, - [9014] = {.lex_state = 266}, - [9015] = {.lex_state = 243}, - [9016] = {.lex_state = 265}, - [9017] = {.lex_state = 265}, + [9014] = {.lex_state = 271}, + [9015] = {.lex_state = 266}, + [9016] = {.lex_state = 337}, + [9017] = {.lex_state = 266}, [9018] = {.lex_state = 266}, - [9019] = {.lex_state = 337}, + [9019] = {.lex_state = 266}, [9020] = {.lex_state = 266}, - [9021] = {.lex_state = 298}, - [9022] = {.lex_state = 265}, - [9023] = {.lex_state = 301}, - [9024] = {.lex_state = 265}, - [9025] = {.lex_state = 438}, - [9026] = {.lex_state = 266}, - [9027] = {.lex_state = 266}, - [9028] = {.lex_state = 271}, + [9021] = {.lex_state = 438}, + [9022] = {.lex_state = 266}, + [9023] = {.lex_state = 265}, + [9024] = {.lex_state = 266}, + [9025] = {.lex_state = 265}, + [9026] = {.lex_state = 301}, + [9027] = {.lex_state = 265}, + [9028] = {.lex_state = 266}, [9029] = {.lex_state = 266}, - [9030] = {.lex_state = 334}, + [9030] = {.lex_state = 271}, [9031] = {.lex_state = 266}, - [9032] = {.lex_state = 438}, - [9033] = {.lex_state = 266}, + [9032] = {.lex_state = 243}, + [9033] = {.lex_state = 265}, [9034] = {.lex_state = 266}, [9035] = {.lex_state = 266}, - [9036] = {.lex_state = 438}, - [9037] = {.lex_state = 301}, + [9036] = {.lex_state = 266}, + [9037] = {.lex_state = 271}, [9038] = {.lex_state = 266}, - [9039] = {.lex_state = 265}, - [9040] = {.lex_state = 438}, - [9041] = {.lex_state = 337}, - [9042] = {.lex_state = 337}, - [9043] = {.lex_state = 266}, + [9039] = {.lex_state = 266}, + [9040] = {.lex_state = 266}, + [9041] = {.lex_state = 265}, + [9042] = {.lex_state = 243}, + [9043] = {.lex_state = 337}, [9044] = {.lex_state = 266}, - [9045] = {.lex_state = 266}, - [9046] = {.lex_state = 265}, - [9047] = {.lex_state = 266}, - [9048] = {.lex_state = 266}, + [9045] = {.lex_state = 301}, + [9046] = {.lex_state = 266}, + [9047] = {.lex_state = 337}, + [9048] = {.lex_state = 265}, [9049] = {.lex_state = 438}, [9050] = {.lex_state = 266}, - [9051] = {.lex_state = 438}, - [9052] = {.lex_state = 301}, - [9053] = {.lex_state = 271}, - [9054] = {.lex_state = 266}, - [9055] = {.lex_state = 266}, - [9056] = {.lex_state = 438}, - [9057] = {.lex_state = 265}, + [9051] = {.lex_state = 337}, + [9052] = {.lex_state = 266}, + [9053] = {.lex_state = 266}, + [9054] = {.lex_state = 301}, + [9055] = {.lex_state = 438}, + [9056] = {.lex_state = 266}, + [9057] = {.lex_state = 266}, [9058] = {.lex_state = 265}, - [9059] = {.lex_state = 243}, - [9060] = {.lex_state = 265}, - [9061] = {.lex_state = 337}, - [9062] = {.lex_state = 266}, - [9063] = {.lex_state = 301}, + [9059] = {.lex_state = 298}, + [9060] = {.lex_state = 266}, + [9061] = {.lex_state = 266}, + [9062] = {.lex_state = 301}, + [9063] = {.lex_state = 266}, [9064] = {.lex_state = 266}, - [9065] = {.lex_state = 266}, - [9066] = {.lex_state = 266}, - [9067] = {.lex_state = 266}, - [9068] = {.lex_state = 271}, - [9069] = {.lex_state = 438}, + [9065] = {.lex_state = 438}, + [9066] = {.lex_state = 438}, + [9067] = {.lex_state = 438}, + [9068] = {.lex_state = 266}, + [9069] = {.lex_state = 265}, [9070] = {.lex_state = 266}, [9071] = {.lex_state = 266}, [9072] = {.lex_state = 266}, - [9073] = {.lex_state = 337}, + [9073] = {.lex_state = 266}, [9074] = {.lex_state = 266}, [9075] = {.lex_state = 266}, [9076] = {.lex_state = 266}, - [9077] = {.lex_state = 266}, - [9078] = {.lex_state = 265}, - [9079] = {.lex_state = 266}, - [9080] = {.lex_state = 271}, + [9077] = {.lex_state = 337}, + [9078] = {.lex_state = 266}, + [9079] = {.lex_state = 334}, + [9080] = {.lex_state = 266}, [9081] = {.lex_state = 266}, - [9082] = {.lex_state = 266}, - [9083] = {.lex_state = 255}, - [9084] = {.lex_state = 337}, - [9085] = {.lex_state = 341}, - [9086] = {.lex_state = 265}, - [9087] = {.lex_state = 438}, - [9088] = {.lex_state = 298}, - [9089] = {.lex_state = 266}, - [9090] = {.lex_state = 266}, - [9091] = {.lex_state = 255}, + [9082] = {.lex_state = 334}, + [9083] = {.lex_state = 266}, + [9084] = {.lex_state = 265}, + [9085] = {.lex_state = 265}, + [9086] = {.lex_state = 255}, + [9087] = {.lex_state = 255}, + [9088] = {.lex_state = 255}, + [9089] = {.lex_state = 255}, + [9090] = {.lex_state = 265}, + [9091] = {.lex_state = 266}, [9092] = {.lex_state = 266}, - [9093] = {.lex_state = 334}, - [9094] = {.lex_state = 265}, - [9095] = {.lex_state = 255}, + [9093] = {.lex_state = 265}, + [9094] = {.lex_state = 266}, + [9095] = {.lex_state = 337}, [9096] = {.lex_state = 266}, [9097] = {.lex_state = 334}, - [9098] = {.lex_state = 255}, - [9099] = {.lex_state = 334}, - [9100] = {.lex_state = 334}, - [9101] = {.lex_state = 255}, + [9098] = {.lex_state = 265}, + [9099] = {.lex_state = 266}, + [9100] = {.lex_state = 266}, + [9101] = {.lex_state = 266}, [9102] = {.lex_state = 265}, - [9103] = {.lex_state = 266}, - [9104] = {.lex_state = 266}, - [9105] = {.lex_state = 255}, - [9106] = {.lex_state = 255}, - [9107] = {.lex_state = 266}, - [9108] = {.lex_state = 334}, - [9109] = {.lex_state = 266}, - [9110] = {.lex_state = 265}, - [9111] = {.lex_state = 265}, + [9103] = {.lex_state = 265}, + [9104] = {.lex_state = 438}, + [9105] = {.lex_state = 266}, + [9106] = {.lex_state = 265}, + [9107] = {.lex_state = 334}, + [9108] = {.lex_state = 265}, + [9109] = {.lex_state = 265}, + [9110] = {.lex_state = 266}, + [9111] = {.lex_state = 266}, [9112] = {.lex_state = 266}, - [9113] = {.lex_state = 265}, - [9114] = {.lex_state = 266}, + [9113] = {.lex_state = 334}, + [9114] = {.lex_state = 298}, [9115] = {.lex_state = 266}, - [9116] = {.lex_state = 265}, - [9117] = {.lex_state = 266}, - [9118] = {.lex_state = 266}, - [9119] = {.lex_state = 298}, - [9120] = {.lex_state = 337}, - [9121] = {.lex_state = 266}, + [9116] = {.lex_state = 298}, + [9117] = {.lex_state = 265}, + [9118] = {.lex_state = 265}, + [9119] = {.lex_state = 266}, + [9120] = {.lex_state = 334}, + [9121] = {.lex_state = 438}, [9122] = {.lex_state = 266}, - [9123] = {.lex_state = 298}, - [9124] = {.lex_state = 266}, - [9125] = {.lex_state = 265}, + [9123] = {.lex_state = 266}, + [9124] = {.lex_state = 255}, + [9125] = {.lex_state = 266}, [9126] = {.lex_state = 266}, - [9127] = {.lex_state = 334}, - [9128] = {.lex_state = 265}, + [9127] = {.lex_state = 298}, + [9128] = {.lex_state = 298}, [9129] = {.lex_state = 266}, - [9130] = {.lex_state = 266}, + [9130] = {.lex_state = 334}, [9131] = {.lex_state = 266}, - [9132] = {.lex_state = 266}, - [9133] = {.lex_state = 266}, - [9134] = {.lex_state = 266}, + [9132] = {.lex_state = 298}, + [9133] = {.lex_state = 438}, + [9134] = {.lex_state = 255}, [9135] = {.lex_state = 266}, [9136] = {.lex_state = 266}, [9137] = {.lex_state = 266}, @@ -35871,587 +35948,587 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [9141] = {.lex_state = 266}, [9142] = {.lex_state = 266}, [9143] = {.lex_state = 266}, - [9144] = {.lex_state = 334}, + [9144] = {.lex_state = 266}, [9145] = {.lex_state = 266}, [9146] = {.lex_state = 266}, [9147] = {.lex_state = 266}, - [9148] = {.lex_state = 265}, - [9149] = {.lex_state = 266}, - [9150] = {.lex_state = 298}, - [9151] = {.lex_state = 298}, - [9152] = {.lex_state = 341}, + [9148] = {.lex_state = 266}, + [9149] = {.lex_state = 255}, + [9150] = {.lex_state = 266}, + [9151] = {.lex_state = 255}, + [9152] = {.lex_state = 266}, [9153] = {.lex_state = 266}, - [9154] = {.lex_state = 255}, - [9155] = {.lex_state = 438}, - [9156] = {.lex_state = 438}, - [9157] = {.lex_state = 266}, + [9154] = {.lex_state = 334}, + [9155] = {.lex_state = 298}, + [9156] = {.lex_state = 265}, + [9157] = {.lex_state = 336}, [9158] = {.lex_state = 265}, - [9159] = {.lex_state = 265}, + [9159] = {.lex_state = 285}, [9160] = {.lex_state = 334}, - [9161] = {.lex_state = 298}, - [9162] = {.lex_state = 265}, - [9163] = {.lex_state = 265}, - [9164] = {.lex_state = 266}, - [9165] = {.lex_state = 334}, + [9161] = {.lex_state = 334}, + [9162] = {.lex_state = 336}, + [9163] = {.lex_state = 266}, + [9164] = {.lex_state = 265}, + [9165] = {.lex_state = 266}, [9166] = {.lex_state = 265}, - [9167] = {.lex_state = 334}, + [9167] = {.lex_state = 265}, [9168] = {.lex_state = 265}, - [9169] = {.lex_state = 265}, - [9170] = {.lex_state = 265}, - [9171] = {.lex_state = 265}, + [9169] = {.lex_state = 271}, + [9170] = {.lex_state = 336}, + [9171] = {.lex_state = 334}, [9172] = {.lex_state = 265}, - [9173] = {.lex_state = 265}, - [9174] = {.lex_state = 266}, + [9173] = {.lex_state = 266}, + [9174] = {.lex_state = 265}, [9175] = {.lex_state = 265}, - [9176] = {.lex_state = 266}, + [9176] = {.lex_state = 334}, [9177] = {.lex_state = 266}, [9178] = {.lex_state = 265}, - [9179] = {.lex_state = 265}, - [9180] = {.lex_state = 265}, + [9179] = {.lex_state = 334}, + [9180] = {.lex_state = 0}, [9181] = {.lex_state = 266}, - [9182] = {.lex_state = 266}, - [9183] = {.lex_state = 285}, - [9184] = {.lex_state = 271}, + [9182] = {.lex_state = 271}, + [9183] = {.lex_state = 265}, + [9184] = {.lex_state = 334}, [9185] = {.lex_state = 266}, - [9186] = {.lex_state = 334}, + [9186] = {.lex_state = 265}, [9187] = {.lex_state = 265}, [9188] = {.lex_state = 266}, - [9189] = {.lex_state = 285}, - [9190] = {.lex_state = 265}, - [9191] = {.lex_state = 285}, - [9192] = {.lex_state = 285}, - [9193] = {.lex_state = 266}, - [9194] = {.lex_state = 266}, + [9189] = {.lex_state = 265}, + [9190] = {.lex_state = 334}, + [9191] = {.lex_state = 265}, + [9192] = {.lex_state = 265}, + [9193] = {.lex_state = 265}, + [9194] = {.lex_state = 265}, [9195] = {.lex_state = 265}, [9196] = {.lex_state = 265}, - [9197] = {.lex_state = 266}, - [9198] = {.lex_state = 336}, - [9199] = {.lex_state = 266}, - [9200] = {.lex_state = 271}, - [9201] = {.lex_state = 266}, - [9202] = {.lex_state = 265}, - [9203] = {.lex_state = 265}, - [9204] = {.lex_state = 266}, - [9205] = {.lex_state = 266}, - [9206] = {.lex_state = 265}, - [9207] = {.lex_state = 265}, - [9208] = {.lex_state = 265}, + [9197] = {.lex_state = 334}, + [9198] = {.lex_state = 265}, + [9199] = {.lex_state = 271}, + [9200] = {.lex_state = 265}, + [9201] = {.lex_state = 271}, + [9202] = {.lex_state = 266}, + [9203] = {.lex_state = 266}, + [9204] = {.lex_state = 265}, + [9205] = {.lex_state = 271}, + [9206] = {.lex_state = 285}, + [9207] = {.lex_state = 266}, + [9208] = {.lex_state = 266}, [9209] = {.lex_state = 266}, - [9210] = {.lex_state = 334}, - [9211] = {.lex_state = 334}, + [9210] = {.lex_state = 265}, + [9211] = {.lex_state = 265}, [9212] = {.lex_state = 265}, - [9213] = {.lex_state = 266}, + [9213] = {.lex_state = 285}, [9214] = {.lex_state = 334}, - [9215] = {.lex_state = 271}, - [9216] = {.lex_state = 265}, - [9217] = {.lex_state = 266}, - [9218] = {.lex_state = 334}, - [9219] = {.lex_state = 285}, - [9220] = {.lex_state = 265}, + [9215] = {.lex_state = 285}, + [9216] = {.lex_state = 266}, + [9217] = {.lex_state = 265}, + [9218] = {.lex_state = 266}, + [9219] = {.lex_state = 265}, + [9220] = {.lex_state = 301}, [9221] = {.lex_state = 266}, - [9222] = {.lex_state = 265}, - [9223] = {.lex_state = 265}, - [9224] = {.lex_state = 271}, + [9222] = {.lex_state = 334}, + [9223] = {.lex_state = 266}, + [9224] = {.lex_state = 266}, [9225] = {.lex_state = 266}, - [9226] = {.lex_state = 271}, + [9226] = {.lex_state = 266}, [9227] = {.lex_state = 265}, - [9228] = {.lex_state = 265}, - [9229] = {.lex_state = 334}, - [9230] = {.lex_state = 265}, - [9231] = {.lex_state = 265}, - [9232] = {.lex_state = 265}, - [9233] = {.lex_state = 266}, - [9234] = {.lex_state = 334}, - [9235] = {.lex_state = 336}, - [9236] = {.lex_state = 336}, - [9237] = {.lex_state = 265}, - [9238] = {.lex_state = 266}, - [9239] = {.lex_state = 266}, - [9240] = {.lex_state = 336}, - [9241] = {.lex_state = 265}, + [9228] = {.lex_state = 334}, + [9229] = {.lex_state = 265}, + [9230] = {.lex_state = 266}, + [9231] = {.lex_state = 271}, + [9232] = {.lex_state = 266}, + [9233] = {.lex_state = 265}, + [9234] = {.lex_state = 265}, + [9235] = {.lex_state = 265}, + [9236] = {.lex_state = 285}, + [9237] = {.lex_state = 271}, + [9238] = {.lex_state = 271}, + [9239] = {.lex_state = 265}, + [9240] = {.lex_state = 265}, + [9241] = {.lex_state = 334}, [9242] = {.lex_state = 266}, - [9243] = {.lex_state = 334}, - [9244] = {.lex_state = 334}, + [9243] = {.lex_state = 265}, + [9244] = {.lex_state = 265}, [9245] = {.lex_state = 265}, [9246] = {.lex_state = 265}, - [9247] = {.lex_state = 265}, - [9248] = {.lex_state = 266}, - [9249] = {.lex_state = 265}, - [9250] = {.lex_state = 271}, - [9251] = {.lex_state = 271}, + [9247] = {.lex_state = 266}, + [9248] = {.lex_state = 265}, + [9249] = {.lex_state = 285}, + [9250] = {.lex_state = 265}, + [9251] = {.lex_state = 266}, [9252] = {.lex_state = 265}, [9253] = {.lex_state = 265}, [9254] = {.lex_state = 265}, [9255] = {.lex_state = 265}, - [9256] = {.lex_state = 0}, - [9257] = {.lex_state = 265}, + [9256] = {.lex_state = 265}, + [9257] = {.lex_state = 334}, [9258] = {.lex_state = 265}, - [9259] = {.lex_state = 265}, - [9260] = {.lex_state = 0}, - [9261] = {.lex_state = 265}, - [9262] = {.lex_state = 301}, + [9259] = {.lex_state = 334}, + [9260] = {.lex_state = 265}, + [9261] = {.lex_state = 266}, + [9262] = {.lex_state = 265}, [9263] = {.lex_state = 265}, - [9264] = {.lex_state = 265}, - [9265] = {.lex_state = 334}, - [9266] = {.lex_state = 334}, - [9267] = {.lex_state = 265}, - [9268] = {.lex_state = 334}, - [9269] = {.lex_state = 271}, - [9270] = {.lex_state = 265}, - [9271] = {.lex_state = 285}, - [9272] = {.lex_state = 266}, - [9273] = {.lex_state = 265}, - [9274] = {.lex_state = 266}, + [9264] = {.lex_state = 0}, + [9265] = {.lex_state = 336}, + [9266] = {.lex_state = 243}, + [9267] = {.lex_state = 266}, + [9268] = {.lex_state = 265}, + [9269] = {.lex_state = 438}, + [9270] = {.lex_state = 334}, + [9271] = {.lex_state = 266}, + [9272] = {.lex_state = 243}, + [9273] = {.lex_state = 243}, + [9274] = {.lex_state = 265}, [9275] = {.lex_state = 266}, [9276] = {.lex_state = 266}, - [9277] = {.lex_state = 243}, + [9277] = {.lex_state = 334}, [9278] = {.lex_state = 266}, - [9279] = {.lex_state = 265}, - [9280] = {.lex_state = 334}, - [9281] = {.lex_state = 266}, - [9282] = {.lex_state = 266}, - [9283] = {.lex_state = 266}, - [9284] = {.lex_state = 438}, - [9285] = {.lex_state = 266}, + [9279] = {.lex_state = 266}, + [9280] = {.lex_state = 266}, + [9281] = {.lex_state = 265}, + [9282] = {.lex_state = 334}, + [9283] = {.lex_state = 265}, + [9284] = {.lex_state = 243}, + [9285] = {.lex_state = 334}, [9286] = {.lex_state = 265}, - [9287] = {.lex_state = 265}, + [9287] = {.lex_state = 334}, [9288] = {.lex_state = 265}, - [9289] = {.lex_state = 265}, - [9290] = {.lex_state = 265}, - [9291] = {.lex_state = 438}, - [9292] = {.lex_state = 334}, - [9293] = {.lex_state = 266}, - [9294] = {.lex_state = 336}, + [9289] = {.lex_state = 334}, + [9290] = {.lex_state = 266}, + [9291] = {.lex_state = 335}, + [9292] = {.lex_state = 266}, + [9293] = {.lex_state = 265}, + [9294] = {.lex_state = 266}, [9295] = {.lex_state = 266}, - [9296] = {.lex_state = 266}, - [9297] = {.lex_state = 334}, - [9298] = {.lex_state = 334}, - [9299] = {.lex_state = 265}, - [9300] = {.lex_state = 266}, - [9301] = {.lex_state = 334}, - [9302] = {.lex_state = 235}, - [9303] = {.lex_state = 265}, - [9304] = {.lex_state = 334}, - [9305] = {.lex_state = 243}, - [9306] = {.lex_state = 334}, + [9296] = {.lex_state = 265}, + [9297] = {.lex_state = 266}, + [9298] = {.lex_state = 298}, + [9299] = {.lex_state = 298}, + [9300] = {.lex_state = 243}, + [9301] = {.lex_state = 438}, + [9302] = {.lex_state = 243}, + [9303] = {.lex_state = 298}, + [9304] = {.lex_state = 266}, + [9305] = {.lex_state = 298}, + [9306] = {.lex_state = 243}, [9307] = {.lex_state = 266}, - [9308] = {.lex_state = 334}, - [9309] = {.lex_state = 265}, + [9308] = {.lex_state = 298}, + [9309] = {.lex_state = 298}, [9310] = {.lex_state = 266}, - [9311] = {.lex_state = 265}, - [9312] = {.lex_state = 438}, - [9313] = {.lex_state = 266}, + [9311] = {.lex_state = 334}, + [9312] = {.lex_state = 265}, + [9313] = {.lex_state = 334}, [9314] = {.lex_state = 266}, [9315] = {.lex_state = 266}, - [9316] = {.lex_state = 266}, - [9317] = {.lex_state = 266}, - [9318] = {.lex_state = 266}, - [9319] = {.lex_state = 298}, + [9316] = {.lex_state = 243}, + [9317] = {.lex_state = 265}, + [9318] = {.lex_state = 265}, + [9319] = {.lex_state = 265}, [9320] = {.lex_state = 298}, - [9321] = {.lex_state = 243}, - [9322] = {.lex_state = 243}, + [9321] = {.lex_state = 266}, + [9322] = {.lex_state = 298}, [9323] = {.lex_state = 298}, [9324] = {.lex_state = 298}, [9325] = {.lex_state = 266}, [9326] = {.lex_state = 298}, [9327] = {.lex_state = 298}, - [9328] = {.lex_state = 266}, + [9328] = {.lex_state = 334}, [9329] = {.lex_state = 266}, - [9330] = {.lex_state = 235}, - [9331] = {.lex_state = 243}, - [9332] = {.lex_state = 438}, - [9333] = {.lex_state = 266}, + [9330] = {.lex_state = 243}, + [9331] = {.lex_state = 438}, + [9332] = {.lex_state = 243}, + [9333] = {.lex_state = 265}, [9334] = {.lex_state = 266}, - [9335] = {.lex_state = 298}, - [9336] = {.lex_state = 265}, - [9337] = {.lex_state = 298}, - [9338] = {.lex_state = 298}, - [9339] = {.lex_state = 298}, - [9340] = {.lex_state = 243}, - [9341] = {.lex_state = 298}, - [9342] = {.lex_state = 298}, - [9343] = {.lex_state = 298}, - [9344] = {.lex_state = 266}, + [9335] = {.lex_state = 266}, + [9336] = {.lex_state = 266}, + [9337] = {.lex_state = 438}, + [9338] = {.lex_state = 266}, + [9339] = {.lex_state = 265}, + [9340] = {.lex_state = 336}, + [9341] = {.lex_state = 266}, + [9342] = {.lex_state = 266}, + [9343] = {.lex_state = 266}, + [9344] = {.lex_state = 438}, [9345] = {.lex_state = 266}, [9346] = {.lex_state = 266}, [9347] = {.lex_state = 266}, [9348] = {.lex_state = 266}, - [9349] = {.lex_state = 265}, - [9350] = {.lex_state = 265}, - [9351] = {.lex_state = 334}, - [9352] = {.lex_state = 266}, - [9353] = {.lex_state = 438}, - [9354] = {.lex_state = 335}, - [9355] = {.lex_state = 265}, - [9356] = {.lex_state = 266}, + [9349] = {.lex_state = 334}, + [9350] = {.lex_state = 438}, + [9351] = {.lex_state = 266}, + [9352] = {.lex_state = 265}, + [9353] = {.lex_state = 265}, + [9354] = {.lex_state = 266}, + [9355] = {.lex_state = 266}, + [9356] = {.lex_state = 265}, [9357] = {.lex_state = 243}, - [9358] = {.lex_state = 266}, - [9359] = {.lex_state = 265}, - [9360] = {.lex_state = 280}, - [9361] = {.lex_state = 266}, - [9362] = {.lex_state = 243}, + [9358] = {.lex_state = 438}, + [9359] = {.lex_state = 266}, + [9360] = {.lex_state = 265}, + [9361] = {.lex_state = 243}, + [9362] = {.lex_state = 266}, [9363] = {.lex_state = 334}, - [9364] = {.lex_state = 265}, - [9365] = {.lex_state = 265}, - [9366] = {.lex_state = 265}, - [9367] = {.lex_state = 266}, + [9364] = {.lex_state = 438}, + [9365] = {.lex_state = 266}, + [9366] = {.lex_state = 334}, + [9367] = {.lex_state = 265}, [9368] = {.lex_state = 266}, [9369] = {.lex_state = 265}, - [9370] = {.lex_state = 265}, - [9371] = {.lex_state = 243}, - [9372] = {.lex_state = 265}, - [9373] = {.lex_state = 266}, - [9374] = {.lex_state = 438}, - [9375] = {.lex_state = 243}, - [9376] = {.lex_state = 334}, - [9377] = {.lex_state = 266}, - [9378] = {.lex_state = 438}, - [9379] = {.lex_state = 266}, + [9370] = {.lex_state = 266}, + [9371] = {.lex_state = 235}, + [9372] = {.lex_state = 298}, + [9373] = {.lex_state = 438}, + [9374] = {.lex_state = 266}, + [9375] = {.lex_state = 266}, + [9376] = {.lex_state = 336}, + [9377] = {.lex_state = 243}, + [9378] = {.lex_state = 266}, + [9379] = {.lex_state = 265}, [9380] = {.lex_state = 266}, [9381] = {.lex_state = 265}, - [9382] = {.lex_state = 265}, - [9383] = {.lex_state = 438}, + [9382] = {.lex_state = 243}, + [9383] = {.lex_state = 265}, [9384] = {.lex_state = 243}, - [9385] = {.lex_state = 265}, + [9385] = {.lex_state = 266}, [9386] = {.lex_state = 334}, - [9387] = {.lex_state = 266}, - [9388] = {.lex_state = 438}, - [9389] = {.lex_state = 243}, - [9390] = {.lex_state = 243}, - [9391] = {.lex_state = 266}, - [9392] = {.lex_state = 243}, - [9393] = {.lex_state = 438}, - [9394] = {.lex_state = 266}, + [9387] = {.lex_state = 265}, + [9388] = {.lex_state = 243}, + [9389] = {.lex_state = 235}, + [9390] = {.lex_state = 266}, + [9391] = {.lex_state = 265}, + [9392] = {.lex_state = 265}, + [9393] = {.lex_state = 243}, + [9394] = {.lex_state = 265}, [9395] = {.lex_state = 266}, - [9396] = {.lex_state = 334}, - [9397] = {.lex_state = 438}, - [9398] = {.lex_state = 266}, - [9399] = {.lex_state = 243}, - [9400] = {.lex_state = 243}, - [9401] = {.lex_state = 243}, + [9396] = {.lex_state = 438}, + [9397] = {.lex_state = 266}, + [9398] = {.lex_state = 243}, + [9399] = {.lex_state = 266}, + [9400] = {.lex_state = 265}, + [9401] = {.lex_state = 265}, [9402] = {.lex_state = 266}, - [9403] = {.lex_state = 243}, + [9403] = {.lex_state = 334}, [9404] = {.lex_state = 265}, - [9405] = {.lex_state = 266}, - [9406] = {.lex_state = 265}, - [9407] = {.lex_state = 266}, - [9408] = {.lex_state = 266}, - [9409] = {.lex_state = 243}, + [9405] = {.lex_state = 243}, + [9406] = {.lex_state = 266}, + [9407] = {.lex_state = 438}, + [9408] = {.lex_state = 280}, + [9409] = {.lex_state = 266}, [9410] = {.lex_state = 243}, - [9411] = {.lex_state = 265}, + [9411] = {.lex_state = 266}, [9412] = {.lex_state = 266}, - [9413] = {.lex_state = 266}, - [9414] = {.lex_state = 265}, - [9415] = {.lex_state = 265}, - [9416] = {.lex_state = 334}, - [9417] = {.lex_state = 336}, - [9418] = {.lex_state = 266}, - [9419] = {.lex_state = 438}, + [9413] = {.lex_state = 334}, + [9414] = {.lex_state = 438}, + [9415] = {.lex_state = 146}, + [9416] = {.lex_state = 266}, + [9417] = {.lex_state = 0}, + [9418] = {.lex_state = 438}, + [9419] = {.lex_state = 266}, [9420] = {.lex_state = 146}, [9421] = {.lex_state = 438}, - [9422] = {.lex_state = 266}, - [9423] = {.lex_state = 266}, - [9424] = {.lex_state = 0}, - [9425] = {.lex_state = 438}, + [9422] = {.lex_state = 146}, + [9423] = {.lex_state = 146}, + [9424] = {.lex_state = 148}, + [9425] = {.lex_state = 266}, [9426] = {.lex_state = 266}, - [9427] = {.lex_state = 0}, - [9428] = {.lex_state = 438}, - [9429] = {.lex_state = 148}, - [9430] = {.lex_state = 266}, + [9427] = {.lex_state = 148}, + [9428] = {.lex_state = 266}, + [9429] = {.lex_state = 0}, + [9430] = {.lex_state = 146}, [9431] = {.lex_state = 438}, - [9432] = {.lex_state = 0}, - [9433] = {.lex_state = 438}, - [9434] = {.lex_state = 438}, - [9435] = {.lex_state = 266}, - [9436] = {.lex_state = 266}, - [9437] = {.lex_state = 266}, - [9438] = {.lex_state = 438}, + [9432] = {.lex_state = 149}, + [9433] = {.lex_state = 146}, + [9434] = {.lex_state = 146}, + [9435] = {.lex_state = 438}, + [9436] = {.lex_state = 148}, + [9437] = {.lex_state = 438}, + [9438] = {.lex_state = 266}, [9439] = {.lex_state = 146}, - [9440] = {.lex_state = 146}, + [9440] = {.lex_state = 266}, [9441] = {.lex_state = 266}, - [9442] = {.lex_state = 334}, - [9443] = {.lex_state = 0}, - [9444] = {.lex_state = 266}, + [9442] = {.lex_state = 266}, + [9443] = {.lex_state = 438}, + [9444] = {.lex_state = 0}, [9445] = {.lex_state = 266}, - [9446] = {.lex_state = 148}, - [9447] = {.lex_state = 146}, - [9448] = {.lex_state = 266}, - [9449] = {.lex_state = 266}, - [9450] = {.lex_state = 266}, - [9451] = {.lex_state = 0}, - [9452] = {.lex_state = 0}, - [9453] = {.lex_state = 266}, - [9454] = {.lex_state = 438}, - [9455] = {.lex_state = 266}, + [9446] = {.lex_state = 146}, + [9447] = {.lex_state = 0}, + [9448] = {.lex_state = 438}, + [9449] = {.lex_state = 146}, + [9450] = {.lex_state = 146}, + [9451] = {.lex_state = 438}, + [9452] = {.lex_state = 149}, + [9453] = {.lex_state = 148}, + [9454] = {.lex_state = 149}, + [9455] = {.lex_state = 438}, [9456] = {.lex_state = 146}, - [9457] = {.lex_state = 146}, - [9458] = {.lex_state = 148}, - [9459] = {.lex_state = 146}, - [9460] = {.lex_state = 266}, - [9461] = {.lex_state = 438}, - [9462] = {.lex_state = 298}, - [9463] = {.lex_state = 266}, + [9457] = {.lex_state = 0}, + [9458] = {.lex_state = 0}, + [9459] = {.lex_state = 438}, + [9460] = {.lex_state = 438}, + [9461] = {.lex_state = 266}, + [9462] = {.lex_state = 438}, + [9463] = {.lex_state = 438}, [9464] = {.lex_state = 148}, - [9465] = {.lex_state = 0}, + [9465] = {.lex_state = 438}, [9466] = {.lex_state = 438}, - [9467] = {.lex_state = 146}, - [9468] = {.lex_state = 0}, + [9467] = {.lex_state = 266}, + [9468] = {.lex_state = 148}, [9469] = {.lex_state = 146}, - [9470] = {.lex_state = 266}, - [9471] = {.lex_state = 146}, - [9472] = {.lex_state = 438}, - [9473] = {.lex_state = 146}, - [9474] = {.lex_state = 266}, - [9475] = {.lex_state = 146}, - [9476] = {.lex_state = 438}, - [9477] = {.lex_state = 149}, - [9478] = {.lex_state = 438}, + [9470] = {.lex_state = 0}, + [9471] = {.lex_state = 438}, + [9472] = {.lex_state = 266}, + [9473] = {.lex_state = 266}, + [9474] = {.lex_state = 146}, + [9475] = {.lex_state = 0}, + [9476] = {.lex_state = 266}, + [9477] = {.lex_state = 0}, + [9478] = {.lex_state = 266}, [9479] = {.lex_state = 266}, - [9480] = {.lex_state = 266}, + [9480] = {.lex_state = 146}, [9481] = {.lex_state = 0}, [9482] = {.lex_state = 438}, - [9483] = {.lex_state = 266}, - [9484] = {.lex_state = 266}, + [9483] = {.lex_state = 298}, + [9484] = {.lex_state = 438}, [9485] = {.lex_state = 146}, - [9486] = {.lex_state = 148}, - [9487] = {.lex_state = 149}, - [9488] = {.lex_state = 0}, - [9489] = {.lex_state = 146}, + [9486] = {.lex_state = 0}, + [9487] = {.lex_state = 438}, + [9488] = {.lex_state = 146}, + [9489] = {.lex_state = 266}, [9490] = {.lex_state = 438}, - [9491] = {.lex_state = 266}, - [9492] = {.lex_state = 146}, - [9493] = {.lex_state = 148}, - [9494] = {.lex_state = 148}, - [9495] = {.lex_state = 146}, + [9491] = {.lex_state = 438}, + [9492] = {.lex_state = 0}, + [9493] = {.lex_state = 438}, + [9494] = {.lex_state = 266}, + [9495] = {.lex_state = 438}, [9496] = {.lex_state = 266}, - [9497] = {.lex_state = 146}, - [9498] = {.lex_state = 146}, - [9499] = {.lex_state = 0}, - [9500] = {.lex_state = 146}, + [9497] = {.lex_state = 438}, + [9498] = {.lex_state = 438}, + [9499] = {.lex_state = 146}, + [9500] = {.lex_state = 266}, [9501] = {.lex_state = 438}, - [9502] = {.lex_state = 438}, - [9503] = {.lex_state = 266}, - [9504] = {.lex_state = 266}, - [9505] = {.lex_state = 438}, + [9502] = {.lex_state = 146}, + [9503] = {.lex_state = 146}, + [9504] = {.lex_state = 0}, + [9505] = {.lex_state = 266}, [9506] = {.lex_state = 146}, - [9507] = {.lex_state = 149}, + [9507] = {.lex_state = 438}, [9508] = {.lex_state = 266}, [9509] = {.lex_state = 266}, - [9510] = {.lex_state = 438}, - [9511] = {.lex_state = 438}, - [9512] = {.lex_state = 266}, - [9513] = {.lex_state = 146}, - [9514] = {.lex_state = 438}, - [9515] = {.lex_state = 0}, - [9516] = {.lex_state = 438}, - [9517] = {.lex_state = 266}, - [9518] = {.lex_state = 266}, - [9519] = {.lex_state = 266}, - [9520] = {.lex_state = 148}, - [9521] = {.lex_state = 148}, - [9522] = {.lex_state = 266}, - [9523] = {.lex_state = 438}, - [9524] = {.lex_state = 438}, + [9510] = {.lex_state = 0}, + [9511] = {.lex_state = 148}, + [9512] = {.lex_state = 438}, + [9513] = {.lex_state = 266}, + [9514] = {.lex_state = 146}, + [9515] = {.lex_state = 146}, + [9516] = {.lex_state = 146}, + [9517] = {.lex_state = 146}, + [9518] = {.lex_state = 148}, + [9519] = {.lex_state = 146}, + [9520] = {.lex_state = 0}, + [9521] = {.lex_state = 438}, + [9522] = {.lex_state = 0}, + [9523] = {.lex_state = 266}, + [9524] = {.lex_state = 266}, [9525] = {.lex_state = 438}, - [9526] = {.lex_state = 266}, - [9527] = {.lex_state = 266}, - [9528] = {.lex_state = 438}, - [9529] = {.lex_state = 438}, - [9530] = {.lex_state = 438}, - [9531] = {.lex_state = 438}, - [9532] = {.lex_state = 438}, - [9533] = {.lex_state = 0}, - [9534] = {.lex_state = 438}, - [9535] = {.lex_state = 266}, - [9536] = {.lex_state = 146}, - [9537] = {.lex_state = 438}, + [9526] = {.lex_state = 146}, + [9527] = {.lex_state = 146}, + [9528] = {.lex_state = 0}, + [9529] = {.lex_state = 146}, + [9530] = {.lex_state = 266}, + [9531] = {.lex_state = 266}, + [9532] = {.lex_state = 0}, + [9533] = {.lex_state = 438}, + [9534] = {.lex_state = 0}, + [9535] = {.lex_state = 438}, + [9536] = {.lex_state = 266}, + [9537] = {.lex_state = 266}, [9538] = {.lex_state = 438}, - [9539] = {.lex_state = 146}, - [9540] = {.lex_state = 146}, + [9539] = {.lex_state = 266}, + [9540] = {.lex_state = 438}, [9541] = {.lex_state = 146}, - [9542] = {.lex_state = 266}, + [9542] = {.lex_state = 438}, [9543] = {.lex_state = 438}, - [9544] = {.lex_state = 438}, - [9545] = {.lex_state = 148}, + [9544] = {.lex_state = 149}, + [9545] = {.lex_state = 438}, [9546] = {.lex_state = 438}, - [9547] = {.lex_state = 146}, - [9548] = {.lex_state = 438}, - [9549] = {.lex_state = 438}, + [9547] = {.lex_state = 438}, + [9548] = {.lex_state = 266}, + [9549] = {.lex_state = 266}, [9550] = {.lex_state = 266}, - [9551] = {.lex_state = 438}, + [9551] = {.lex_state = 0}, [9552] = {.lex_state = 0}, - [9553] = {.lex_state = 146}, - [9554] = {.lex_state = 146}, - [9555] = {.lex_state = 438}, - [9556] = {.lex_state = 266}, - [9557] = {.lex_state = 146}, - [9558] = {.lex_state = 146}, - [9559] = {.lex_state = 146}, + [9553] = {.lex_state = 438}, + [9554] = {.lex_state = 438}, + [9555] = {.lex_state = 0}, + [9556] = {.lex_state = 148}, + [9557] = {.lex_state = 266}, + [9558] = {.lex_state = 438}, + [9559] = {.lex_state = 438}, [9560] = {.lex_state = 438}, - [9561] = {.lex_state = 438}, - [9562] = {.lex_state = 438}, - [9563] = {.lex_state = 438}, - [9564] = {.lex_state = 148}, + [9561] = {.lex_state = 266}, + [9562] = {.lex_state = 266}, + [9563] = {.lex_state = 146}, + [9564] = {.lex_state = 0}, [9565] = {.lex_state = 438}, [9566] = {.lex_state = 438}, - [9567] = {.lex_state = 266}, - [9568] = {.lex_state = 146}, - [9569] = {.lex_state = 266}, - [9570] = {.lex_state = 266}, - [9571] = {.lex_state = 148}, - [9572] = {.lex_state = 266}, + [9567] = {.lex_state = 146}, + [9568] = {.lex_state = 438}, + [9569] = {.lex_state = 438}, + [9570] = {.lex_state = 235}, + [9571] = {.lex_state = 235}, + [9572] = {.lex_state = 438}, [9573] = {.lex_state = 438}, - [9574] = {.lex_state = 438}, - [9575] = {.lex_state = 266}, - [9576] = {.lex_state = 0}, - [9577] = {.lex_state = 0}, + [9574] = {.lex_state = 149}, + [9575] = {.lex_state = 146}, + [9576] = {.lex_state = 266}, + [9577] = {.lex_state = 438}, [9578] = {.lex_state = 438}, [9579] = {.lex_state = 0}, - [9580] = {.lex_state = 149}, - [9581] = {.lex_state = 0}, - [9582] = {.lex_state = 146}, - [9583] = {.lex_state = 266}, - [9584] = {.lex_state = 438}, - [9585] = {.lex_state = 266}, - [9586] = {.lex_state = 146}, - [9587] = {.lex_state = 266}, - [9588] = {.lex_state = 0}, - [9589] = {.lex_state = 149}, - [9590] = {.lex_state = 266}, + [9580] = {.lex_state = 438}, + [9581] = {.lex_state = 438}, + [9582] = {.lex_state = 341}, + [9583] = {.lex_state = 0}, + [9584] = {.lex_state = 266}, + [9585] = {.lex_state = 146}, + [9586] = {.lex_state = 148}, + [9587] = {.lex_state = 149}, + [9588] = {.lex_state = 148}, + [9589] = {.lex_state = 438}, + [9590] = {.lex_state = 149}, [9591] = {.lex_state = 266}, - [9592] = {.lex_state = 438}, + [9592] = {.lex_state = 266}, [9593] = {.lex_state = 0}, - [9594] = {.lex_state = 0}, - [9595] = {.lex_state = 438}, + [9594] = {.lex_state = 266}, + [9595] = {.lex_state = 266}, [9596] = {.lex_state = 0}, - [9597] = {.lex_state = 438}, - [9598] = {.lex_state = 146}, - [9599] = {.lex_state = 0}, + [9597] = {.lex_state = 266}, + [9598] = {.lex_state = 438}, + [9599] = {.lex_state = 438}, [9600] = {.lex_state = 266}, - [9601] = {.lex_state = 146}, + [9601] = {.lex_state = 0}, [9602] = {.lex_state = 266}, - [9603] = {.lex_state = 0}, - [9604] = {.lex_state = 146}, - [9605] = {.lex_state = 438}, - [9606] = {.lex_state = 266}, - [9607] = {.lex_state = 438}, - [9608] = {.lex_state = 266}, - [9609] = {.lex_state = 438}, - [9610] = {.lex_state = 148}, + [9603] = {.lex_state = 438}, + [9604] = {.lex_state = 438}, + [9605] = {.lex_state = 266}, + [9606] = {.lex_state = 146}, + [9607] = {.lex_state = 146}, + [9608] = {.lex_state = 334}, + [9609] = {.lex_state = 146}, + [9610] = {.lex_state = 266}, [9611] = {.lex_state = 266}, - [9612] = {.lex_state = 266}, - [9613] = {.lex_state = 438}, - [9614] = {.lex_state = 146}, - [9615] = {.lex_state = 266}, - [9616] = {.lex_state = 438}, - [9617] = {.lex_state = 0}, - [9618] = {.lex_state = 149}, - [9619] = {.lex_state = 438}, - [9620] = {.lex_state = 146}, + [9612] = {.lex_state = 438}, + [9613] = {.lex_state = 266}, + [9614] = {.lex_state = 148}, + [9615] = {.lex_state = 438}, + [9616] = {.lex_state = 266}, + [9617] = {.lex_state = 266}, + [9618] = {.lex_state = 341}, + [9619] = {.lex_state = 146}, + [9620] = {.lex_state = 266}, [9621] = {.lex_state = 438}, - [9622] = {.lex_state = 149}, - [9623] = {.lex_state = 148}, + [9622] = {.lex_state = 266}, + [9623] = {.lex_state = 0}, [9624] = {.lex_state = 146}, [9625] = {.lex_state = 438}, - [9626] = {.lex_state = 146}, - [9627] = {.lex_state = 0}, + [9626] = {.lex_state = 266}, + [9627] = {.lex_state = 266}, [9628] = {.lex_state = 266}, [9629] = {.lex_state = 146}, - [9630] = {.lex_state = 266}, - [9631] = {.lex_state = 0}, - [9632] = {.lex_state = 438}, + [9630] = {.lex_state = 148}, + [9631] = {.lex_state = 146}, + [9632] = {.lex_state = 341}, [9633] = {.lex_state = 146}, - [9634] = {.lex_state = 266}, - [9635] = {.lex_state = 266}, - [9636] = {.lex_state = 266}, - [9637] = {.lex_state = 334}, - [9638] = {.lex_state = 146}, - [9639] = {.lex_state = 235}, - [9640] = {.lex_state = 438}, + [9634] = {.lex_state = 0}, + [9635] = {.lex_state = 438}, + [9636] = {.lex_state = 0}, + [9637] = {.lex_state = 266}, + [9638] = {.lex_state = 148}, + [9639] = {.lex_state = 146}, + [9640] = {.lex_state = 266}, [9641] = {.lex_state = 438}, - [9642] = {.lex_state = 0}, - [9643] = {.lex_state = 266}, + [9642] = {.lex_state = 146}, + [9643] = {.lex_state = 438}, [9644] = {.lex_state = 266}, - [9645] = {.lex_state = 266}, - [9646] = {.lex_state = 438}, + [9645] = {.lex_state = 0}, + [9646] = {.lex_state = 266}, [9647] = {.lex_state = 0}, - [9648] = {.lex_state = 438}, - [9649] = {.lex_state = 0}, - [9650] = {.lex_state = 146}, - [9651] = {.lex_state = 438}, + [9648] = {.lex_state = 148}, + [9649] = {.lex_state = 146}, + [9650] = {.lex_state = 438}, + [9651] = {.lex_state = 266}, [9652] = {.lex_state = 0}, - [9653] = {.lex_state = 0}, - [9654] = {.lex_state = 148}, - [9655] = {.lex_state = 0}, + [9653] = {.lex_state = 146}, + [9654] = {.lex_state = 438}, + [9655] = {.lex_state = 266}, [9656] = {.lex_state = 146}, - [9657] = {.lex_state = 235}, - [9658] = {.lex_state = 146}, - [9659] = {.lex_state = 438}, + [9657] = {.lex_state = 266}, + [9658] = {.lex_state = 0}, + [9659] = {.lex_state = 266}, [9660] = {.lex_state = 0}, [9661] = {.lex_state = 0}, [9662] = {.lex_state = 0}, [9663] = {.lex_state = 0}, - [9664] = {.lex_state = 0}, - [9665] = {.lex_state = 0}, - [9666] = {.lex_state = 0}, - [9667] = {.lex_state = 266}, - [9668] = {.lex_state = 266}, + [9664] = {.lex_state = 266}, + [9665] = {.lex_state = 266}, + [9666] = {.lex_state = 235}, + [9667] = {.lex_state = 235}, + [9668] = {.lex_state = 0}, [9669] = {.lex_state = 266}, - [9670] = {.lex_state = 341}, - [9671] = {.lex_state = 266}, - [9672] = {.lex_state = 0}, - [9673] = {.lex_state = 266}, + [9670] = {.lex_state = 266}, + [9671] = {.lex_state = 235}, + [9672] = {.lex_state = 235}, + [9673] = {.lex_state = 0}, [9674] = {.lex_state = 0}, - [9675] = {.lex_state = 266}, + [9675] = {.lex_state = 235}, [9676] = {.lex_state = 235}, - [9677] = {.lex_state = 235}, - [9678] = {.lex_state = 235}, - [9679] = {.lex_state = 235}, - [9680] = {.lex_state = 0}, + [9677] = {.lex_state = 0}, + [9678] = {.lex_state = 0}, + [9679] = {.lex_state = 0}, + [9680] = {.lex_state = 266}, [9681] = {.lex_state = 0}, [9682] = {.lex_state = 0}, - [9683] = {.lex_state = 235}, - [9684] = {.lex_state = 235}, + [9683] = {.lex_state = 0}, + [9684] = {.lex_state = 0}, [9685] = {.lex_state = 0}, [9686] = {.lex_state = 0}, - [9687] = {.lex_state = 0}, - [9688] = {.lex_state = 0}, + [9687] = {.lex_state = 266}, + [9688] = {.lex_state = 266}, [9689] = {.lex_state = 0}, - [9690] = {.lex_state = 0}, - [9691] = {.lex_state = 0}, - [9692] = {.lex_state = 0}, + [9690] = {.lex_state = 266}, + [9691] = {.lex_state = 235}, + [9692] = {.lex_state = 235}, [9693] = {.lex_state = 266}, [9694] = {.lex_state = 0}, [9695] = {.lex_state = 235}, [9696] = {.lex_state = 235}, - [9697] = {.lex_state = 235}, - [9698] = {.lex_state = 235}, - [9699] = {.lex_state = 235}, - [9700] = {.lex_state = 235}, + [9697] = {.lex_state = 266}, + [9698] = {.lex_state = 0}, + [9699] = {.lex_state = 0}, + [9700] = {.lex_state = 0}, [9701] = {.lex_state = 0}, [9702] = {.lex_state = 0}, [9703] = {.lex_state = 0}, - [9704] = {.lex_state = 0}, - [9705] = {.lex_state = 266}, - [9706] = {.lex_state = 0}, - [9707] = {.lex_state = 266}, - [9708] = {.lex_state = 235}, - [9709] = {.lex_state = 266}, + [9704] = {.lex_state = 266}, + [9705] = {.lex_state = 0}, + [9706] = {.lex_state = 266}, + [9707] = {.lex_state = 0}, + [9708] = {.lex_state = 438}, + [9709] = {.lex_state = 235}, [9710] = {.lex_state = 235}, - [9711] = {.lex_state = 266}, + [9711] = {.lex_state = 0}, [9712] = {.lex_state = 235}, [9713] = {.lex_state = 235}, - [9714] = {.lex_state = 0}, + [9714] = {.lex_state = 235}, [9715] = {.lex_state = 0}, [9716] = {.lex_state = 0}, - [9717] = {.lex_state = 235}, - [9718] = {.lex_state = 235}, - [9719] = {.lex_state = 0}, - [9720] = {.lex_state = 0}, - [9721] = {.lex_state = 0}, + [9717] = {.lex_state = 0}, + [9718] = {.lex_state = 0}, + [9719] = {.lex_state = 235}, + [9720] = {.lex_state = 266}, + [9721] = {.lex_state = 266}, [9722] = {.lex_state = 0}, - [9723] = {.lex_state = 0}, - [9724] = {.lex_state = 0}, + [9723] = {.lex_state = 235}, + [9724] = {.lex_state = 235}, [9725] = {.lex_state = 0}, [9726] = {.lex_state = 0}, [9727] = {.lex_state = 0}, @@ -36461,19 +36538,19 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [9731] = {.lex_state = 0}, [9732] = {.lex_state = 0}, [9733] = {.lex_state = 0}, - [9734] = {.lex_state = 0}, + [9734] = {.lex_state = 266}, [9735] = {.lex_state = 0}, - [9736] = {.lex_state = 0}, - [9737] = {.lex_state = 0}, + [9736] = {.lex_state = 266}, + [9737] = {.lex_state = 266}, [9738] = {.lex_state = 0}, - [9739] = {.lex_state = 266}, + [9739] = {.lex_state = 0}, [9740] = {.lex_state = 0}, [9741] = {.lex_state = 0}, - [9742] = {.lex_state = 235}, - [9743] = {.lex_state = 235}, - [9744] = {.lex_state = 0}, + [9742] = {.lex_state = 266}, + [9743] = {.lex_state = 0}, + [9744] = {.lex_state = 266}, [9745] = {.lex_state = 0}, - [9746] = {.lex_state = 0}, + [9746] = {.lex_state = 266}, [9747] = {.lex_state = 0}, [9748] = {.lex_state = 0}, [9749] = {.lex_state = 0}, @@ -36481,818 +36558,818 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [9751] = {.lex_state = 0}, [9752] = {.lex_state = 0}, [9753] = {.lex_state = 0}, - [9754] = {.lex_state = 438}, - [9755] = {.lex_state = 266}, + [9754] = {.lex_state = 0}, + [9755] = {.lex_state = 0}, [9756] = {.lex_state = 0}, [9757] = {.lex_state = 0}, - [9758] = {.lex_state = 0}, + [9758] = {.lex_state = 266}, [9759] = {.lex_state = 0}, - [9760] = {.lex_state = 266}, + [9760] = {.lex_state = 0}, [9761] = {.lex_state = 0}, [9762] = {.lex_state = 0}, - [9763] = {.lex_state = 0}, + [9763] = {.lex_state = 266}, [9764] = {.lex_state = 0}, [9765] = {.lex_state = 0}, [9766] = {.lex_state = 0}, - [9767] = {.lex_state = 266}, - [9768] = {.lex_state = 0}, + [9767] = {.lex_state = 235}, + [9768] = {.lex_state = 235}, [9769] = {.lex_state = 0}, [9770] = {.lex_state = 0}, [9771] = {.lex_state = 0}, [9772] = {.lex_state = 0}, - [9773] = {.lex_state = 235}, - [9774] = {.lex_state = 266}, - [9775] = {.lex_state = 235}, + [9773] = {.lex_state = 0}, + [9774] = {.lex_state = 0}, + [9775] = {.lex_state = 0}, [9776] = {.lex_state = 266}, - [9777] = {.lex_state = 266}, + [9777] = {.lex_state = 0}, [9778] = {.lex_state = 0}, [9779] = {.lex_state = 0}, [9780] = {.lex_state = 0}, [9781] = {.lex_state = 0}, [9782] = {.lex_state = 0}, - [9783] = {.lex_state = 266}, - [9784] = {.lex_state = 266}, + [9783] = {.lex_state = 0}, + [9784] = {.lex_state = 0}, [9785] = {.lex_state = 0}, [9786] = {.lex_state = 0}, - [9787] = {.lex_state = 0}, - [9788] = {.lex_state = 0}, + [9787] = {.lex_state = 266}, + [9788] = {.lex_state = 266}, [9789] = {.lex_state = 0}, [9790] = {.lex_state = 0}, [9791] = {.lex_state = 0}, - [9792] = {.lex_state = 0}, + [9792] = {.lex_state = 266}, [9793] = {.lex_state = 0}, [9794] = {.lex_state = 0}, [9795] = {.lex_state = 0}, [9796] = {.lex_state = 0}, [9797] = {.lex_state = 0}, - [9798] = {.lex_state = 266}, - [9799] = {.lex_state = 266}, + [9798] = {.lex_state = 0}, + [9799] = {.lex_state = 0}, [9800] = {.lex_state = 0}, - [9801] = {.lex_state = 0}, + [9801] = {.lex_state = 148}, [9802] = {.lex_state = 0}, - [9803] = {.lex_state = 0}, - [9804] = {.lex_state = 0}, + [9803] = {.lex_state = 266}, + [9804] = {.lex_state = 266}, [9805] = {.lex_state = 0}, - [9806] = {.lex_state = 0}, + [9806] = {.lex_state = 151}, [9807] = {.lex_state = 266}, - [9808] = {.lex_state = 0}, + [9808] = {.lex_state = 266}, [9809] = {.lex_state = 0}, - [9810] = {.lex_state = 0}, - [9811] = {.lex_state = 0}, - [9812] = {.lex_state = 0}, - [9813] = {.lex_state = 266}, + [9810] = {.lex_state = 438}, + [9811] = {.lex_state = 266}, + [9812] = {.lex_state = 266}, + [9813] = {.lex_state = 0}, [9814] = {.lex_state = 0}, - [9815] = {.lex_state = 0}, - [9816] = {.lex_state = 0}, - [9817] = {.lex_state = 0}, + [9815] = {.lex_state = 266}, + [9816] = {.lex_state = 148}, + [9817] = {.lex_state = 266}, [9818] = {.lex_state = 266}, [9819] = {.lex_state = 0}, - [9820] = {.lex_state = 0}, - [9821] = {.lex_state = 266}, - [9822] = {.lex_state = 266}, + [9820] = {.lex_state = 266}, + [9821] = {.lex_state = 0}, + [9822] = {.lex_state = 0}, [9823] = {.lex_state = 0}, [9824] = {.lex_state = 0}, - [9825] = {.lex_state = 266}, - [9826] = {.lex_state = 266}, + [9825] = {.lex_state = 0}, + [9826] = {.lex_state = 235}, [9827] = {.lex_state = 0}, [9828] = {.lex_state = 0}, - [9829] = {.lex_state = 266}, - [9830] = {.lex_state = 266}, - [9831] = {.lex_state = 266}, + [9829] = {.lex_state = 0}, + [9830] = {.lex_state = 235}, + [9831] = {.lex_state = 0}, [9832] = {.lex_state = 0}, - [9833] = {.lex_state = 148}, + [9833] = {.lex_state = 266}, [9834] = {.lex_state = 0}, - [9835] = {.lex_state = 266}, - [9836] = {.lex_state = 266}, + [9835] = {.lex_state = 0}, + [9836] = {.lex_state = 0}, [9837] = {.lex_state = 0}, [9838] = {.lex_state = 0}, - [9839] = {.lex_state = 266}, - [9840] = {.lex_state = 341}, + [9839] = {.lex_state = 0}, + [9840] = {.lex_state = 0}, [9841] = {.lex_state = 266}, - [9842] = {.lex_state = 266}, - [9843] = {.lex_state = 0}, - [9844] = {.lex_state = 0}, - [9845] = {.lex_state = 0}, + [9842] = {.lex_state = 0}, + [9843] = {.lex_state = 266}, + [9844] = {.lex_state = 266}, + [9845] = {.lex_state = 266}, [9846] = {.lex_state = 0}, - [9847] = {.lex_state = 266}, + [9847] = {.lex_state = 0}, [9848] = {.lex_state = 0}, - [9849] = {.lex_state = 0}, - [9850] = {.lex_state = 0}, - [9851] = {.lex_state = 438}, - [9852] = {.lex_state = 0}, - [9853] = {.lex_state = 266}, - [9854] = {.lex_state = 266}, + [9849] = {.lex_state = 266}, + [9850] = {.lex_state = 266}, + [9851] = {.lex_state = 0}, + [9852] = {.lex_state = 235}, + [9853] = {.lex_state = 235}, + [9854] = {.lex_state = 0}, [9855] = {.lex_state = 0}, [9856] = {.lex_state = 0}, - [9857] = {.lex_state = 0}, + [9857] = {.lex_state = 266}, [9858] = {.lex_state = 0}, - [9859] = {.lex_state = 266}, - [9860] = {.lex_state = 266}, + [9859] = {.lex_state = 235}, + [9860] = {.lex_state = 235}, [9861] = {.lex_state = 0}, - [9862] = {.lex_state = 0}, + [9862] = {.lex_state = 151}, [9863] = {.lex_state = 0}, - [9864] = {.lex_state = 266}, - [9865] = {.lex_state = 266}, - [9866] = {.lex_state = 0}, + [9864] = {.lex_state = 151}, + [9865] = {.lex_state = 235}, + [9866] = {.lex_state = 235}, [9867] = {.lex_state = 0}, - [9868] = {.lex_state = 235}, - [9869] = {.lex_state = 235}, + [9868] = {.lex_state = 0}, + [9869] = {.lex_state = 0}, [9870] = {.lex_state = 0}, - [9871] = {.lex_state = 0}, + [9871] = {.lex_state = 266}, [9872] = {.lex_state = 0}, [9873] = {.lex_state = 266}, [9874] = {.lex_state = 0}, - [9875] = {.lex_state = 0}, - [9876] = {.lex_state = 266}, - [9877] = {.lex_state = 266}, + [9875] = {.lex_state = 266}, + [9876] = {.lex_state = 0}, + [9877] = {.lex_state = 0}, [9878] = {.lex_state = 0}, [9879] = {.lex_state = 0}, - [9880] = {.lex_state = 235}, - [9881] = {.lex_state = 235}, + [9880] = {.lex_state = 0}, + [9881] = {.lex_state = 0}, [9882] = {.lex_state = 0}, - [9883] = {.lex_state = 266}, - [9884] = {.lex_state = 0}, + [9883] = {.lex_state = 235}, + [9884] = {.lex_state = 235}, [9885] = {.lex_state = 0}, - [9886] = {.lex_state = 266}, - [9887] = {.lex_state = 266}, + [9886] = {.lex_state = 0}, + [9887] = {.lex_state = 0}, [9888] = {.lex_state = 0}, [9889] = {.lex_state = 0}, [9890] = {.lex_state = 0}, [9891] = {.lex_state = 0}, - [9892] = {.lex_state = 0}, - [9893] = {.lex_state = 266}, - [9894] = {.lex_state = 266}, - [9895] = {.lex_state = 266}, - [9896] = {.lex_state = 266}, + [9892] = {.lex_state = 266}, + [9893] = {.lex_state = 0}, + [9894] = {.lex_state = 0}, + [9895] = {.lex_state = 0}, + [9896] = {.lex_state = 0}, [9897] = {.lex_state = 0}, [9898] = {.lex_state = 0}, [9899] = {.lex_state = 0}, - [9900] = {.lex_state = 0}, - [9901] = {.lex_state = 0}, + [9900] = {.lex_state = 226}, + [9901] = {.lex_state = 266}, [9902] = {.lex_state = 0}, [9903] = {.lex_state = 0}, - [9904] = {.lex_state = 266}, + [9904] = {.lex_state = 151}, [9905] = {.lex_state = 266}, [9906] = {.lex_state = 266}, [9907] = {.lex_state = 0}, [9908] = {.lex_state = 0}, [9909] = {.lex_state = 0}, - [9910] = {.lex_state = 0}, + [9910] = {.lex_state = 266}, [9911] = {.lex_state = 0}, [9912] = {.lex_state = 0}, [9913] = {.lex_state = 0}, [9914] = {.lex_state = 266}, [9915] = {.lex_state = 0}, - [9916] = {.lex_state = 0}, - [9917] = {.lex_state = 266}, - [9918] = {.lex_state = 266}, - [9919] = {.lex_state = 0}, - [9920] = {.lex_state = 0}, - [9921] = {.lex_state = 0}, - [9922] = {.lex_state = 266}, - [9923] = {.lex_state = 266}, + [9916] = {.lex_state = 266}, + [9917] = {.lex_state = 0}, + [9918] = {.lex_state = 0}, + [9919] = {.lex_state = 266}, + [9920] = {.lex_state = 266}, + [9921] = {.lex_state = 266}, + [9922] = {.lex_state = 0}, + [9923] = {.lex_state = 0}, [9924] = {.lex_state = 266}, - [9925] = {.lex_state = 0}, - [9926] = {.lex_state = 148}, - [9927] = {.lex_state = 0}, + [9925] = {.lex_state = 266}, + [9926] = {.lex_state = 266}, + [9927] = {.lex_state = 266}, [9928] = {.lex_state = 0}, - [9929] = {.lex_state = 266}, - [9930] = {.lex_state = 266}, - [9931] = {.lex_state = 0}, - [9932] = {.lex_state = 0}, - [9933] = {.lex_state = 0}, - [9934] = {.lex_state = 0}, + [9929] = {.lex_state = 0}, + [9930] = {.lex_state = 0}, + [9931] = {.lex_state = 266}, + [9932] = {.lex_state = 266}, + [9933] = {.lex_state = 266}, + [9934] = {.lex_state = 266}, [9935] = {.lex_state = 0}, - [9936] = {.lex_state = 0}, + [9936] = {.lex_state = 266}, [9937] = {.lex_state = 0}, - [9938] = {.lex_state = 151}, + [9938] = {.lex_state = 148}, [9939] = {.lex_state = 0}, - [9940] = {.lex_state = 266}, - [9941] = {.lex_state = 0}, - [9942] = {.lex_state = 0}, - [9943] = {.lex_state = 226}, + [9940] = {.lex_state = 235}, + [9941] = {.lex_state = 235}, + [9942] = {.lex_state = 438}, + [9943] = {.lex_state = 235}, [9944] = {.lex_state = 0}, [9945] = {.lex_state = 0}, [9946] = {.lex_state = 0}, - [9947] = {.lex_state = 0}, - [9948] = {.lex_state = 0}, - [9949] = {.lex_state = 235}, - [9950] = {.lex_state = 235}, - [9951] = {.lex_state = 266}, - [9952] = {.lex_state = 0}, - [9953] = {.lex_state = 148}, + [9947] = {.lex_state = 266}, + [9948] = {.lex_state = 266}, + [9949] = {.lex_state = 0}, + [9950] = {.lex_state = 0}, + [9951] = {.lex_state = 0}, + [9952] = {.lex_state = 235}, + [9953] = {.lex_state = 0}, [9954] = {.lex_state = 0}, [9955] = {.lex_state = 0}, - [9956] = {.lex_state = 0}, - [9957] = {.lex_state = 266}, - [9958] = {.lex_state = 266}, + [9956] = {.lex_state = 266}, + [9957] = {.lex_state = 0}, + [9958] = {.lex_state = 0}, [9959] = {.lex_state = 266}, - [9960] = {.lex_state = 0}, - [9961] = {.lex_state = 438}, - [9962] = {.lex_state = 266}, - [9963] = {.lex_state = 0}, - [9964] = {.lex_state = 151}, - [9965] = {.lex_state = 298}, - [9966] = {.lex_state = 341}, - [9967] = {.lex_state = 235}, + [9960] = {.lex_state = 266}, + [9961] = {.lex_state = 235}, + [9962] = {.lex_state = 0}, + [9963] = {.lex_state = 266}, + [9964] = {.lex_state = 266}, + [9965] = {.lex_state = 266}, + [9966] = {.lex_state = 0}, + [9967] = {.lex_state = 0}, [9968] = {.lex_state = 235}, - [9969] = {.lex_state = 0}, + [9969] = {.lex_state = 235}, [9970] = {.lex_state = 0}, [9971] = {.lex_state = 266}, [9972] = {.lex_state = 0}, - [9973] = {.lex_state = 0}, - [9974] = {.lex_state = 235}, - [9975] = {.lex_state = 235}, + [9973] = {.lex_state = 266}, + [9974] = {.lex_state = 266}, + [9975] = {.lex_state = 0}, [9976] = {.lex_state = 0}, - [9977] = {.lex_state = 0}, - [9978] = {.lex_state = 0}, - [9979] = {.lex_state = 0}, - [9980] = {.lex_state = 266}, - [9981] = {.lex_state = 266}, + [9977] = {.lex_state = 266}, + [9978] = {.lex_state = 266}, + [9979] = {.lex_state = 148}, + [9980] = {.lex_state = 0}, + [9981] = {.lex_state = 0}, [9982] = {.lex_state = 266}, - [9983] = {.lex_state = 148}, - [9984] = {.lex_state = 266}, - [9985] = {.lex_state = 266}, - [9986] = {.lex_state = 266}, + [9983] = {.lex_state = 0}, + [9984] = {.lex_state = 0}, + [9985] = {.lex_state = 0}, + [9986] = {.lex_state = 0}, [9987] = {.lex_state = 0}, [9988] = {.lex_state = 0}, [9989] = {.lex_state = 266}, - [9990] = {.lex_state = 266}, - [9991] = {.lex_state = 266}, + [9990] = {.lex_state = 235}, + [9991] = {.lex_state = 235}, [9992] = {.lex_state = 0}, - [9993] = {.lex_state = 266}, + [9993] = {.lex_state = 0}, [9994] = {.lex_state = 0}, - [9995] = {.lex_state = 0}, - [9996] = {.lex_state = 0}, + [9995] = {.lex_state = 266}, + [9996] = {.lex_state = 266}, [9997] = {.lex_state = 0}, [9998] = {.lex_state = 0}, [9999] = {.lex_state = 0}, [10000] = {.lex_state = 0}, [10001] = {.lex_state = 0}, [10002] = {.lex_state = 0}, - [10003] = {.lex_state = 266}, + [10003] = {.lex_state = 148}, [10004] = {.lex_state = 0}, [10005] = {.lex_state = 0}, [10006] = {.lex_state = 0}, - [10007] = {.lex_state = 0}, + [10007] = {.lex_state = 266}, [10008] = {.lex_state = 0}, [10009] = {.lex_state = 0}, [10010] = {.lex_state = 0}, - [10011] = {.lex_state = 266}, - [10012] = {.lex_state = 266}, + [10011] = {.lex_state = 0}, + [10012] = {.lex_state = 0}, [10013] = {.lex_state = 0}, [10014] = {.lex_state = 0}, - [10015] = {.lex_state = 148}, - [10016] = {.lex_state = 266}, + [10015] = {.lex_state = 0}, + [10016] = {.lex_state = 148}, [10017] = {.lex_state = 266}, - [10018] = {.lex_state = 0}, + [10018] = {.lex_state = 266}, [10019] = {.lex_state = 0}, - [10020] = {.lex_state = 266}, + [10020] = {.lex_state = 0}, [10021] = {.lex_state = 0}, - [10022] = {.lex_state = 266}, + [10022] = {.lex_state = 0}, [10023] = {.lex_state = 266}, - [10024] = {.lex_state = 266}, - [10025] = {.lex_state = 266}, - [10026] = {.lex_state = 0}, + [10024] = {.lex_state = 0}, + [10025] = {.lex_state = 0}, + [10026] = {.lex_state = 266}, [10027] = {.lex_state = 0}, [10028] = {.lex_state = 0}, [10029] = {.lex_state = 0}, [10030] = {.lex_state = 0}, - [10031] = {.lex_state = 235}, - [10032] = {.lex_state = 151}, - [10033] = {.lex_state = 0}, - [10034] = {.lex_state = 235}, - [10035] = {.lex_state = 148}, - [10036] = {.lex_state = 266}, - [10037] = {.lex_state = 151}, - [10038] = {.lex_state = 266}, - [10039] = {.lex_state = 266}, - [10040] = {.lex_state = 235}, - [10041] = {.lex_state = 235}, - [10042] = {.lex_state = 0}, - [10043] = {.lex_state = 235}, - [10044] = {.lex_state = 235}, + [10031] = {.lex_state = 0}, + [10032] = {.lex_state = 235}, + [10033] = {.lex_state = 266}, + [10034] = {.lex_state = 266}, + [10035] = {.lex_state = 0}, + [10036] = {.lex_state = 0}, + [10037] = {.lex_state = 0}, + [10038] = {.lex_state = 0}, + [10039] = {.lex_state = 148}, + [10040] = {.lex_state = 0}, + [10041] = {.lex_state = 0}, + [10042] = {.lex_state = 266}, + [10043] = {.lex_state = 266}, + [10044] = {.lex_state = 266}, [10045] = {.lex_state = 0}, - [10046] = {.lex_state = 148}, - [10047] = {.lex_state = 266}, + [10046] = {.lex_state = 0}, + [10047] = {.lex_state = 0}, [10048] = {.lex_state = 266}, - [10049] = {.lex_state = 0}, - [10050] = {.lex_state = 0}, - [10051] = {.lex_state = 0}, - [10052] = {.lex_state = 266}, - [10053] = {.lex_state = 266}, - [10054] = {.lex_state = 0}, - [10055] = {.lex_state = 235}, - [10056] = {.lex_state = 235}, - [10057] = {.lex_state = 0}, - [10058] = {.lex_state = 148}, - [10059] = {.lex_state = 0}, - [10060] = {.lex_state = 148}, - [10061] = {.lex_state = 266}, - [10062] = {.lex_state = 266}, + [10049] = {.lex_state = 266}, + [10050] = {.lex_state = 266}, + [10051] = {.lex_state = 266}, + [10052] = {.lex_state = 235}, + [10053] = {.lex_state = 0}, + [10054] = {.lex_state = 266}, + [10055] = {.lex_state = 0}, + [10056] = {.lex_state = 0}, + [10057] = {.lex_state = 148}, + [10058] = {.lex_state = 0}, + [10059] = {.lex_state = 266}, + [10060] = {.lex_state = 266}, + [10061] = {.lex_state = 0}, + [10062] = {.lex_state = 0}, [10063] = {.lex_state = 0}, [10064] = {.lex_state = 0}, - [10065] = {.lex_state = 235}, + [10065] = {.lex_state = 148}, [10066] = {.lex_state = 0}, - [10067] = {.lex_state = 0}, + [10067] = {.lex_state = 235}, [10068] = {.lex_state = 0}, - [10069] = {.lex_state = 148}, - [10070] = {.lex_state = 0}, - [10071] = {.lex_state = 148}, - [10072] = {.lex_state = 235}, - [10073] = {.lex_state = 148}, + [10069] = {.lex_state = 266}, + [10070] = {.lex_state = 235}, + [10071] = {.lex_state = 235}, + [10072] = {.lex_state = 148}, + [10073] = {.lex_state = 0}, [10074] = {.lex_state = 0}, - [10075] = {.lex_state = 148}, + [10075] = {.lex_state = 0}, [10076] = {.lex_state = 148}, - [10077] = {.lex_state = 0}, + [10077] = {.lex_state = 148}, [10078] = {.lex_state = 0}, - [10079] = {.lex_state = 0}, - [10080] = {.lex_state = 0}, - [10081] = {.lex_state = 266}, - [10082] = {.lex_state = 0}, - [10083] = {.lex_state = 0}, + [10079] = {.lex_state = 266}, + [10080] = {.lex_state = 148}, + [10081] = {.lex_state = 0}, + [10082] = {.lex_state = 266}, + [10083] = {.lex_state = 148}, [10084] = {.lex_state = 0}, - [10085] = {.lex_state = 266}, - [10086] = {.lex_state = 266}, - [10087] = {.lex_state = 0}, + [10085] = {.lex_state = 235}, + [10086] = {.lex_state = 0}, + [10087] = {.lex_state = 235}, [10088] = {.lex_state = 0}, [10089] = {.lex_state = 0}, - [10090] = {.lex_state = 235}, + [10090] = {.lex_state = 266}, [10091] = {.lex_state = 0}, [10092] = {.lex_state = 0}, [10093] = {.lex_state = 0}, [10094] = {.lex_state = 0}, [10095] = {.lex_state = 0}, - [10096] = {.lex_state = 266}, - [10097] = {.lex_state = 266}, + [10096] = {.lex_state = 0}, + [10097] = {.lex_state = 235}, [10098] = {.lex_state = 0}, [10099] = {.lex_state = 266}, [10100] = {.lex_state = 266}, [10101] = {.lex_state = 0}, - [10102] = {.lex_state = 0}, - [10103] = {.lex_state = 266}, - [10104] = {.lex_state = 266}, - [10105] = {.lex_state = 266}, + [10102] = {.lex_state = 235}, + [10103] = {.lex_state = 235}, + [10104] = {.lex_state = 0}, + [10105] = {.lex_state = 0}, [10106] = {.lex_state = 266}, [10107] = {.lex_state = 0}, [10108] = {.lex_state = 0}, - [10109] = {.lex_state = 235}, - [10110] = {.lex_state = 235}, - [10111] = {.lex_state = 235}, + [10109] = {.lex_state = 266}, + [10110] = {.lex_state = 266}, + [10111] = {.lex_state = 266}, [10112] = {.lex_state = 0}, [10113] = {.lex_state = 0}, [10114] = {.lex_state = 0}, - [10115] = {.lex_state = 235}, - [10116] = {.lex_state = 235}, + [10115] = {.lex_state = 0}, + [10116] = {.lex_state = 266}, [10117] = {.lex_state = 0}, - [10118] = {.lex_state = 0}, - [10119] = {.lex_state = 266}, + [10118] = {.lex_state = 266}, + [10119] = {.lex_state = 0}, [10120] = {.lex_state = 0}, [10121] = {.lex_state = 0}, [10122] = {.lex_state = 0}, - [10123] = {.lex_state = 0}, + [10123] = {.lex_state = 266}, [10124] = {.lex_state = 266}, [10125] = {.lex_state = 266}, - [10126] = {.lex_state = 266}, - [10127] = {.lex_state = 266}, + [10126] = {.lex_state = 0}, + [10127] = {.lex_state = 0}, [10128] = {.lex_state = 0}, - [10129] = {.lex_state = 0}, + [10129] = {.lex_state = 266}, [10130] = {.lex_state = 0}, - [10131] = {.lex_state = 0}, - [10132] = {.lex_state = 235}, - [10133] = {.lex_state = 0}, - [10134] = {.lex_state = 235}, + [10131] = {.lex_state = 266}, + [10132] = {.lex_state = 266}, + [10133] = {.lex_state = 266}, + [10134] = {.lex_state = 266}, [10135] = {.lex_state = 0}, - [10136] = {.lex_state = 0}, + [10136] = {.lex_state = 266}, [10137] = {.lex_state = 266}, [10138] = {.lex_state = 0}, [10139] = {.lex_state = 0}, [10140] = {.lex_state = 0}, [10141] = {.lex_state = 0}, - [10142] = {.lex_state = 266}, + [10142] = {.lex_state = 0}, [10143] = {.lex_state = 0}, [10144] = {.lex_state = 0}, - [10145] = {.lex_state = 0}, - [10146] = {.lex_state = 0}, + [10145] = {.lex_state = 266}, + [10146] = {.lex_state = 266}, [10147] = {.lex_state = 0}, [10148] = {.lex_state = 266}, - [10149] = {.lex_state = 0}, - [10150] = {.lex_state = 266}, + [10149] = {.lex_state = 266}, + [10150] = {.lex_state = 0}, [10151] = {.lex_state = 0}, [10152] = {.lex_state = 266}, [10153] = {.lex_state = 266}, [10154] = {.lex_state = 0}, [10155] = {.lex_state = 0}, [10156] = {.lex_state = 0}, - [10157] = {.lex_state = 266}, + [10157] = {.lex_state = 0}, [10158] = {.lex_state = 266}, - [10159] = {.lex_state = 0}, - [10160] = {.lex_state = 0}, - [10161] = {.lex_state = 0}, - [10162] = {.lex_state = 0}, + [10159] = {.lex_state = 266}, + [10160] = {.lex_state = 266}, + [10161] = {.lex_state = 266}, + [10162] = {.lex_state = 266}, [10163] = {.lex_state = 0}, [10164] = {.lex_state = 0}, [10165] = {.lex_state = 0}, - [10166] = {.lex_state = 0}, + [10166] = {.lex_state = 266}, [10167] = {.lex_state = 0}, [10168] = {.lex_state = 0}, - [10169] = {.lex_state = 0}, - [10170] = {.lex_state = 266}, - [10171] = {.lex_state = 266}, + [10169] = {.lex_state = 298}, + [10170] = {.lex_state = 0}, + [10171] = {.lex_state = 0}, [10172] = {.lex_state = 0}, [10173] = {.lex_state = 0}, [10174] = {.lex_state = 0}, [10175] = {.lex_state = 0}, - [10176] = {.lex_state = 266}, + [10176] = {.lex_state = 0}, [10177] = {.lex_state = 266}, - [10178] = {.lex_state = 266}, - [10179] = {.lex_state = 266}, - [10180] = {.lex_state = 0}, - [10181] = {.lex_state = 0}, - [10182] = {.lex_state = 266}, - [10183] = {.lex_state = 266}, + [10178] = {.lex_state = 0}, + [10179] = {.lex_state = 0}, + [10180] = {.lex_state = 235}, + [10181] = {.lex_state = 235}, + [10182] = {.lex_state = 0}, + [10183] = {.lex_state = 0}, [10184] = {.lex_state = 0}, [10185] = {.lex_state = 0}, [10186] = {.lex_state = 0}, [10187] = {.lex_state = 0}, - [10188] = {.lex_state = 0}, - [10189] = {.lex_state = 0}, + [10188] = {.lex_state = 235}, + [10189] = {.lex_state = 235}, [10190] = {.lex_state = 266}, - [10191] = {.lex_state = 266}, + [10191] = {.lex_state = 0}, [10192] = {.lex_state = 0}, - [10193] = {.lex_state = 235}, - [10194] = {.lex_state = 235}, - [10195] = {.lex_state = 266}, + [10193] = {.lex_state = 0}, + [10194] = {.lex_state = 0}, + [10195] = {.lex_state = 0}, [10196] = {.lex_state = 0}, [10197] = {.lex_state = 0}, [10198] = {.lex_state = 0}, [10199] = {.lex_state = 0}, - [10200] = {.lex_state = 0}, - [10201] = {.lex_state = 0}, - [10202] = {.lex_state = 235}, - [10203] = {.lex_state = 235}, + [10200] = {.lex_state = 235}, + [10201] = {.lex_state = 438, .external_lex_state = 2}, + [10202] = {.lex_state = 0}, + [10203] = {.lex_state = 0}, [10204] = {.lex_state = 0}, - [10205] = {.lex_state = 0}, - [10206] = {.lex_state = 266}, - [10207] = {.lex_state = 150}, - [10208] = {.lex_state = 438}, + [10205] = {.lex_state = 438}, + [10206] = {.lex_state = 0}, + [10207] = {.lex_state = 0}, + [10208] = {.lex_state = 0}, [10209] = {.lex_state = 0}, - [10210] = {.lex_state = 438}, - [10211] = {.lex_state = 438}, - [10212] = {.lex_state = 0}, + [10210] = {.lex_state = 0}, + [10211] = {.lex_state = 0}, + [10212] = {.lex_state = 438}, [10213] = {.lex_state = 0}, - [10214] = {.lex_state = 438}, - [10215] = {.lex_state = 0}, - [10216] = {.lex_state = 0}, + [10214] = {.lex_state = 0}, + [10215] = {.lex_state = 438}, + [10216] = {.lex_state = 438}, [10217] = {.lex_state = 0}, - [10218] = {.lex_state = 438}, + [10218] = {.lex_state = 0}, [10219] = {.lex_state = 0}, - [10220] = {.lex_state = 0}, - [10221] = {.lex_state = 438}, - [10222] = {.lex_state = 0}, - [10223] = {.lex_state = 150}, + [10220] = {.lex_state = 438}, + [10221] = {.lex_state = 150}, + [10222] = {.lex_state = 150}, + [10223] = {.lex_state = 438}, [10224] = {.lex_state = 0}, [10225] = {.lex_state = 0}, [10226] = {.lex_state = 0}, - [10227] = {.lex_state = 0}, - [10228] = {.lex_state = 0}, - [10229] = {.lex_state = 0}, + [10227] = {.lex_state = 438}, + [10228] = {.lex_state = 438}, + [10229] = {.lex_state = 150}, [10230] = {.lex_state = 0}, - [10231] = {.lex_state = 0}, + [10231] = {.lex_state = 438}, [10232] = {.lex_state = 0}, [10233] = {.lex_state = 438}, [10234] = {.lex_state = 0}, - [10235] = {.lex_state = 438}, + [10235] = {.lex_state = 0}, [10236] = {.lex_state = 0}, [10237] = {.lex_state = 0}, [10238] = {.lex_state = 0}, [10239] = {.lex_state = 0}, [10240] = {.lex_state = 0}, - [10241] = {.lex_state = 438}, - [10242] = {.lex_state = 438}, - [10243] = {.lex_state = 438}, + [10241] = {.lex_state = 0}, + [10242] = {.lex_state = 0}, + [10243] = {.lex_state = 0}, [10244] = {.lex_state = 0}, [10245] = {.lex_state = 0}, - [10246] = {.lex_state = 0}, - [10247] = {.lex_state = 438}, + [10246] = {.lex_state = 438}, + [10247] = {.lex_state = 0}, [10248] = {.lex_state = 0}, [10249] = {.lex_state = 0}, [10250] = {.lex_state = 0}, [10251] = {.lex_state = 0}, [10252] = {.lex_state = 0}, [10253] = {.lex_state = 0}, - [10254] = {.lex_state = 438}, - [10255] = {.lex_state = 150}, - [10256] = {.lex_state = 438}, - [10257] = {.lex_state = 438}, - [10258] = {.lex_state = 266}, - [10259] = {.lex_state = 150}, - [10260] = {.lex_state = 438}, + [10254] = {.lex_state = 150}, + [10255] = {.lex_state = 438}, + [10256] = {.lex_state = 0}, + [10257] = {.lex_state = 0}, + [10258] = {.lex_state = 438}, + [10259] = {.lex_state = 438}, + [10260] = {.lex_state = 0}, [10261] = {.lex_state = 0}, [10262] = {.lex_state = 0}, [10263] = {.lex_state = 0}, [10264] = {.lex_state = 0}, - [10265] = {.lex_state = 0}, - [10266] = {.lex_state = 0}, - [10267] = {.lex_state = 438}, + [10265] = {.lex_state = 438}, + [10266] = {.lex_state = 438}, + [10267] = {.lex_state = 150}, [10268] = {.lex_state = 0}, - [10269] = {.lex_state = 438}, + [10269] = {.lex_state = 0}, [10270] = {.lex_state = 0}, - [10271] = {.lex_state = 0}, - [10272] = {.lex_state = 0}, + [10271] = {.lex_state = 438}, + [10272] = {.lex_state = 438}, [10273] = {.lex_state = 0}, - [10274] = {.lex_state = 0}, + [10274] = {.lex_state = 438}, [10275] = {.lex_state = 0}, [10276] = {.lex_state = 0}, - [10277] = {.lex_state = 150}, + [10277] = {.lex_state = 0}, [10278] = {.lex_state = 0}, [10279] = {.lex_state = 0}, [10280] = {.lex_state = 0}, [10281] = {.lex_state = 0}, - [10282] = {.lex_state = 438}, - [10283] = {.lex_state = 235}, + [10282] = {.lex_state = 150}, + [10283] = {.lex_state = 0}, [10284] = {.lex_state = 438}, - [10285] = {.lex_state = 266}, - [10286] = {.lex_state = 0}, - [10287] = {.lex_state = 0}, + [10285] = {.lex_state = 438}, + [10286] = {.lex_state = 235}, + [10287] = {.lex_state = 438}, [10288] = {.lex_state = 0}, [10289] = {.lex_state = 0}, [10290] = {.lex_state = 0}, - [10291] = {.lex_state = 0}, - [10292] = {.lex_state = 438}, - [10293] = {.lex_state = 235}, + [10291] = {.lex_state = 235}, + [10292] = {.lex_state = 0}, + [10293] = {.lex_state = 0}, [10294] = {.lex_state = 0}, [10295] = {.lex_state = 0}, - [10296] = {.lex_state = 438}, + [10296] = {.lex_state = 0}, [10297] = {.lex_state = 0}, [10298] = {.lex_state = 0}, [10299] = {.lex_state = 0}, - [10300] = {.lex_state = 150}, + [10300] = {.lex_state = 0}, [10301] = {.lex_state = 438}, - [10302] = {.lex_state = 438}, + [10302] = {.lex_state = 0}, [10303] = {.lex_state = 0}, - [10304] = {.lex_state = 438}, + [10304] = {.lex_state = 0}, [10305] = {.lex_state = 0}, - [10306] = {.lex_state = 150}, - [10307] = {.lex_state = 0}, - [10308] = {.lex_state = 0}, - [10309] = {.lex_state = 0}, - [10310] = {.lex_state = 438}, - [10311] = {.lex_state = 266}, + [10306] = {.lex_state = 438}, + [10307] = {.lex_state = 438}, + [10308] = {.lex_state = 438}, + [10309] = {.lex_state = 150}, + [10310] = {.lex_state = 0}, + [10311] = {.lex_state = 150}, [10312] = {.lex_state = 0}, [10313] = {.lex_state = 0}, - [10314] = {.lex_state = 438}, - [10315] = {.lex_state = 438}, + [10314] = {.lex_state = 0}, + [10315] = {.lex_state = 0}, [10316] = {.lex_state = 0}, [10317] = {.lex_state = 0}, - [10318] = {.lex_state = 0}, + [10318] = {.lex_state = 150}, [10319] = {.lex_state = 0}, [10320] = {.lex_state = 0}, [10321] = {.lex_state = 0}, - [10322] = {.lex_state = 0}, + [10322] = {.lex_state = 438}, [10323] = {.lex_state = 0}, - [10324] = {.lex_state = 0}, + [10324] = {.lex_state = 438}, [10325] = {.lex_state = 0}, [10326] = {.lex_state = 0}, - [10327] = {.lex_state = 438}, - [10328] = {.lex_state = 438}, - [10329] = {.lex_state = 0}, + [10327] = {.lex_state = 0}, + [10328] = {.lex_state = 0}, + [10329] = {.lex_state = 438}, [10330] = {.lex_state = 0}, - [10331] = {.lex_state = 0}, - [10332] = {.lex_state = 235}, + [10331] = {.lex_state = 235}, + [10332] = {.lex_state = 438}, [10333] = {.lex_state = 0}, - [10334] = {.lex_state = 0}, + [10334] = {.lex_state = 438}, [10335] = {.lex_state = 0}, [10336] = {.lex_state = 0}, [10337] = {.lex_state = 0}, - [10338] = {.lex_state = 438}, + [10338] = {.lex_state = 0}, [10339] = {.lex_state = 438}, - [10340] = {.lex_state = 438}, + [10340] = {.lex_state = 0}, [10341] = {.lex_state = 0}, [10342] = {.lex_state = 0}, - [10343] = {.lex_state = 0}, + [10343] = {.lex_state = 235}, [10344] = {.lex_state = 0}, [10345] = {.lex_state = 0}, [10346] = {.lex_state = 0}, - [10347] = {.lex_state = 0}, - [10348] = {.lex_state = 438}, - [10349] = {.lex_state = 0}, + [10347] = {.lex_state = 266}, + [10348] = {.lex_state = 0}, + [10349] = {.lex_state = 438}, [10350] = {.lex_state = 0}, [10351] = {.lex_state = 0}, - [10352] = {.lex_state = 438}, + [10352] = {.lex_state = 0}, [10353] = {.lex_state = 0}, - [10354] = {.lex_state = 0}, - [10355] = {.lex_state = 0}, - [10356] = {.lex_state = 438}, - [10357] = {.lex_state = 0}, - [10358] = {.lex_state = 0}, + [10354] = {.lex_state = 438}, + [10355] = {.lex_state = 438}, + [10356] = {.lex_state = 0}, + [10357] = {.lex_state = 438}, + [10358] = {.lex_state = 438}, [10359] = {.lex_state = 0}, - [10360] = {.lex_state = 0}, + [10360] = {.lex_state = 266}, [10361] = {.lex_state = 0}, - [10362] = {.lex_state = 438}, - [10363] = {.lex_state = 0}, + [10362] = {.lex_state = 0}, + [10363] = {.lex_state = 438}, [10364] = {.lex_state = 0}, [10365] = {.lex_state = 0}, [10366] = {.lex_state = 0}, - [10367] = {.lex_state = 0}, + [10367] = {.lex_state = 438}, [10368] = {.lex_state = 438}, [10369] = {.lex_state = 0}, - [10370] = {.lex_state = 0}, - [10371] = {.lex_state = 438}, + [10370] = {.lex_state = 438}, + [10371] = {.lex_state = 0}, [10372] = {.lex_state = 438}, [10373] = {.lex_state = 438}, - [10374] = {.lex_state = 438}, + [10374] = {.lex_state = 0}, [10375] = {.lex_state = 0}, - [10376] = {.lex_state = 0}, - [10377] = {.lex_state = 0}, + [10376] = {.lex_state = 438}, + [10377] = {.lex_state = 438}, [10378] = {.lex_state = 0}, - [10379] = {.lex_state = 438}, + [10379] = {.lex_state = 0}, [10380] = {.lex_state = 438}, [10381] = {.lex_state = 0}, - [10382] = {.lex_state = 438}, + [10382] = {.lex_state = 0}, [10383] = {.lex_state = 0}, [10384] = {.lex_state = 438}, - [10385] = {.lex_state = 0}, + [10385] = {.lex_state = 438}, [10386] = {.lex_state = 0}, - [10387] = {.lex_state = 438}, + [10387] = {.lex_state = 0}, [10388] = {.lex_state = 438}, [10389] = {.lex_state = 438}, [10390] = {.lex_state = 438}, - [10391] = {.lex_state = 235}, + [10391] = {.lex_state = 438}, [10392] = {.lex_state = 438}, - [10393] = {.lex_state = 0}, + [10393] = {.lex_state = 438}, [10394] = {.lex_state = 438}, [10395] = {.lex_state = 0}, - [10396] = {.lex_state = 0}, - [10397] = {.lex_state = 438}, + [10396] = {.lex_state = 438}, + [10397] = {.lex_state = 0}, [10398] = {.lex_state = 438}, - [10399] = {.lex_state = 0}, + [10399] = {.lex_state = 438}, [10400] = {.lex_state = 0}, [10401] = {.lex_state = 0}, [10402] = {.lex_state = 0}, - [10403] = {.lex_state = 438}, + [10403] = {.lex_state = 0}, [10404] = {.lex_state = 0}, [10405] = {.lex_state = 0}, [10406] = {.lex_state = 0}, [10407] = {.lex_state = 438}, [10408] = {.lex_state = 0}, [10409] = {.lex_state = 0}, - [10410] = {.lex_state = 438}, - [10411] = {.lex_state = 438}, - [10412] = {.lex_state = 438}, + [10410] = {.lex_state = 0}, + [10411] = {.lex_state = 0}, + [10412] = {.lex_state = 0}, [10413] = {.lex_state = 0}, [10414] = {.lex_state = 0}, [10415] = {.lex_state = 0}, - [10416] = {.lex_state = 438}, - [10417] = {.lex_state = 0}, - [10418] = {.lex_state = 0}, - [10419] = {.lex_state = 438}, + [10416] = {.lex_state = 0}, + [10417] = {.lex_state = 438, .external_lex_state = 2}, + [10418] = {.lex_state = 266}, + [10419] = {.lex_state = 266}, [10420] = {.lex_state = 0}, - [10421] = {.lex_state = 150}, - [10422] = {.lex_state = 0}, + [10421] = {.lex_state = 0}, + [10422] = {.lex_state = 150}, [10423] = {.lex_state = 0}, - [10424] = {.lex_state = 0}, + [10424] = {.lex_state = 438}, [10425] = {.lex_state = 0}, [10426] = {.lex_state = 0}, - [10427] = {.lex_state = 0}, - [10428] = {.lex_state = 0}, - [10429] = {.lex_state = 0}, + [10427] = {.lex_state = 438}, + [10428] = {.lex_state = 438}, + [10429] = {.lex_state = 438}, [10430] = {.lex_state = 0}, - [10431] = {.lex_state = 0}, + [10431] = {.lex_state = 266}, [10432] = {.lex_state = 0}, - [10433] = {.lex_state = 438}, - [10434] = {.lex_state = 438}, - [10435] = {.lex_state = 0}, + [10433] = {.lex_state = 0}, + [10434] = {.lex_state = 0}, + [10435] = {.lex_state = 438}, [10436] = {.lex_state = 0}, - [10437] = {.lex_state = 438}, - [10438] = {.lex_state = 438}, - [10439] = {.lex_state = 438}, - [10440] = {.lex_state = 150}, - [10441] = {.lex_state = 235}, + [10437] = {.lex_state = 0}, + [10438] = {.lex_state = 150}, + [10439] = {.lex_state = 0}, + [10440] = {.lex_state = 0}, + [10441] = {.lex_state = 0}, [10442] = {.lex_state = 0}, [10443] = {.lex_state = 0}, [10444] = {.lex_state = 0}, - [10445] = {.lex_state = 0}, + [10445] = {.lex_state = 438}, [10446] = {.lex_state = 0}, - [10447] = {.lex_state = 438}, - [10448] = {.lex_state = 0}, + [10447] = {.lex_state = 0}, + [10448] = {.lex_state = 438}, [10449] = {.lex_state = 0}, - [10450] = {.lex_state = 438}, + [10450] = {.lex_state = 0}, [10451] = {.lex_state = 0}, [10452] = {.lex_state = 0}, [10453] = {.lex_state = 0}, - [10454] = {.lex_state = 0}, - [10455] = {.lex_state = 0}, + [10454] = {.lex_state = 266}, + [10455] = {.lex_state = 438}, [10456] = {.lex_state = 0}, - [10457] = {.lex_state = 0}, + [10457] = {.lex_state = 438}, [10458] = {.lex_state = 0}, - [10459] = {.lex_state = 266}, + [10459] = {.lex_state = 0}, [10460] = {.lex_state = 0}, [10461] = {.lex_state = 0}, [10462] = {.lex_state = 438}, [10463] = {.lex_state = 0}, [10464] = {.lex_state = 438}, [10465] = {.lex_state = 0}, - [10466] = {.lex_state = 0}, + [10466] = {.lex_state = 438}, [10467] = {.lex_state = 0}, [10468] = {.lex_state = 0}, - [10469] = {.lex_state = 0}, + [10469] = {.lex_state = 150}, [10470] = {.lex_state = 0}, - [10471] = {.lex_state = 438}, - [10472] = {.lex_state = 266}, + [10471] = {.lex_state = 0}, + [10472] = {.lex_state = 0}, [10473] = {.lex_state = 0}, - [10474] = {.lex_state = 150}, + [10474] = {.lex_state = 0}, [10475] = {.lex_state = 0}, [10476] = {.lex_state = 0}, - [10477] = {.lex_state = 150}, + [10477] = {.lex_state = 0}, [10478] = {.lex_state = 0}, - [10479] = {.lex_state = 438}, + [10479] = {.lex_state = 0}, [10480] = {.lex_state = 0}, [10481] = {.lex_state = 0}, - [10482] = {.lex_state = 0}, + [10482] = {.lex_state = 438}, [10483] = {.lex_state = 0}, [10484] = {.lex_state = 0}, [10485] = {.lex_state = 0}, - [10486] = {.lex_state = 438}, - [10487] = {.lex_state = 438}, - [10488] = {.lex_state = 438}, - [10489] = {.lex_state = 438}, + [10486] = {.lex_state = 0}, + [10487] = {.lex_state = 0}, + [10488] = {.lex_state = 0}, + [10489] = {.lex_state = 0}, [10490] = {.lex_state = 0}, - [10491] = {.lex_state = 0}, - [10492] = {.lex_state = 0}, - [10493] = {.lex_state = 438}, - [10494] = {.lex_state = 0}, + [10491] = {.lex_state = 438}, + [10492] = {.lex_state = 438}, + [10493] = {.lex_state = 0}, + [10494] = {.lex_state = 438}, [10495] = {.lex_state = 0}, [10496] = {.lex_state = 0}, [10497] = {.lex_state = 266}, [10498] = {.lex_state = 0}, - [10499] = {.lex_state = 0}, + [10499] = {.lex_state = 150}, [10500] = {.lex_state = 438}, - [10501] = {.lex_state = 438}, + [10501] = {.lex_state = 0}, [10502] = {.lex_state = 0}, [10503] = {.lex_state = 0}, - [10504] = {.lex_state = 0}, + [10504] = {.lex_state = 150}, [10505] = {.lex_state = 0}, - [10506] = {.lex_state = 0}, + [10506] = {.lex_state = 438}, [10507] = {.lex_state = 0}, [10508] = {.lex_state = 0}, - [10509] = {.lex_state = 438}, - [10510] = {.lex_state = 0}, - [10511] = {.lex_state = 266}, - [10512] = {.lex_state = 0}, - [10513] = {.lex_state = 235}, + [10509] = {.lex_state = 0}, + [10510] = {.lex_state = 438}, + [10511] = {.lex_state = 0}, + [10512] = {.lex_state = 438}, + [10513] = {.lex_state = 438}, [10514] = {.lex_state = 0}, - [10515] = {.lex_state = 0}, + [10515] = {.lex_state = 150}, [10516] = {.lex_state = 0}, [10517] = {.lex_state = 0}, [10518] = {.lex_state = 0}, - [10519] = {.lex_state = 150}, + [10519] = {.lex_state = 0}, [10520] = {.lex_state = 0}, - [10521] = {.lex_state = 438, .external_lex_state = 2}, - [10522] = {.lex_state = 0}, - [10523] = {.lex_state = 0}, + [10521] = {.lex_state = 0}, + [10522] = {.lex_state = 150}, + [10523] = {.lex_state = 438, .external_lex_state = 2}, [10524] = {.lex_state = 0}, [10525] = {.lex_state = 0}, - [10526] = {.lex_state = 438}, - [10527] = {.lex_state = 438, .external_lex_state = 2}, - [10528] = {.lex_state = 0}, - [10529] = {.lex_state = 150}, + [10526] = {.lex_state = 0}, + [10527] = {.lex_state = 438}, + [10528] = {.lex_state = 438}, + [10529] = {.lex_state = 0}, [10530] = {.lex_state = 438}, [10531] = {.lex_state = 0}, - [10532] = {.lex_state = 438}, + [10532] = {.lex_state = 0}, [10533] = {.lex_state = 0}, [10534] = {.lex_state = 0}, [10535] = {.lex_state = 0}, [10536] = {.lex_state = 438}, - [10537] = {.lex_state = 0}, - [10538] = {.lex_state = 438}, + [10537] = {.lex_state = 235}, + [10538] = {.lex_state = 0}, [10539] = {.lex_state = 0}, - [10540] = {.lex_state = 438}, - [10541] = {.lex_state = 0}, + [10540] = {.lex_state = 0}, + [10541] = {.lex_state = 438}, [10542] = {.lex_state = 0}, [10543] = {.lex_state = 0}, [10544] = {.lex_state = 0}, [10545] = {.lex_state = 0}, - [10546] = {.lex_state = 0}, + [10546] = {.lex_state = 438}, [10547] = {.lex_state = 0}, - [10548] = {.lex_state = 438}, + [10548] = {.lex_state = 0}, [10549] = {.lex_state = 0}, [10550] = {.lex_state = 0}, [10551] = {.lex_state = 0}, [10552] = {.lex_state = 438}, [10553] = {.lex_state = 0}, - [10554] = {.lex_state = 438}, + [10554] = {.lex_state = 0}, [10555] = {.lex_state = 0}, [10556] = {.lex_state = 0}, - [10557] = {.lex_state = 150}, - [10558] = {.lex_state = 266}, - [10559] = {.lex_state = 150}, + [10557] = {.lex_state = 0}, + [10558] = {.lex_state = 0}, + [10559] = {.lex_state = 0}, [10560] = {.lex_state = 0}, - [10561] = {.lex_state = 150}, + [10561] = {.lex_state = 0}, [10562] = {.lex_state = 0}, [10563] = {.lex_state = 0}, [10564] = {.lex_state = 0}, - [10565] = {.lex_state = 150}, + [10565] = {.lex_state = 0}, [10566] = {.lex_state = 0}, [10567] = {.lex_state = 0}, [10568] = {.lex_state = 0}, @@ -37301,857 +37378,857 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [10571] = {.lex_state = 0}, [10572] = {.lex_state = 0}, [10573] = {.lex_state = 0}, - [10574] = {.lex_state = 0}, + [10574] = {.lex_state = 438, .external_lex_state = 2}, [10575] = {.lex_state = 0}, [10576] = {.lex_state = 0}, - [10577] = {.lex_state = 438, .external_lex_state = 2}, - [10578] = {.lex_state = 0}, - [10579] = {.lex_state = 0}, - [10580] = {.lex_state = 0}, - [10581] = {.lex_state = 0}, - [10582] = {.lex_state = 0}, + [10577] = {.lex_state = 438}, + [10578] = {.lex_state = 438, .external_lex_state = 2}, + [10579] = {.lex_state = 266}, + [10580] = {.lex_state = 438}, + [10581] = {.lex_state = 235}, + [10582] = {.lex_state = 438, .external_lex_state = 2}, [10583] = {.lex_state = 0}, - [10584] = {.lex_state = 438, .external_lex_state = 2}, + [10584] = {.lex_state = 0}, [10585] = {.lex_state = 0}, - [10586] = {.lex_state = 0}, - [10587] = {.lex_state = 0}, - [10588] = {.lex_state = 438}, - [10589] = {.lex_state = 438, .external_lex_state = 2}, + [10586] = {.lex_state = 150}, + [10587] = {.lex_state = 438, .external_lex_state = 2}, + [10588] = {.lex_state = 0}, + [10589] = {.lex_state = 0}, [10590] = {.lex_state = 0}, - [10591] = {.lex_state = 0}, - [10592] = {.lex_state = 0}, - [10593] = {.lex_state = 438, .external_lex_state = 2}, - [10594] = {.lex_state = 0}, - [10595] = {.lex_state = 0}, + [10591] = {.lex_state = 438, .external_lex_state = 2}, + [10592] = {.lex_state = 438}, + [10593] = {.lex_state = 0}, + [10594] = {.lex_state = 438, .external_lex_state = 2}, + [10595] = {.lex_state = 438, .external_lex_state = 2}, [10596] = {.lex_state = 438, .external_lex_state = 2}, - [10597] = {.lex_state = 438}, + [10597] = {.lex_state = 438, .external_lex_state = 2}, [10598] = {.lex_state = 438, .external_lex_state = 2}, - [10599] = {.lex_state = 0}, - [10600] = {.lex_state = 0}, + [10599] = {.lex_state = 438, .external_lex_state = 2}, + [10600] = {.lex_state = 438, .external_lex_state = 2}, [10601] = {.lex_state = 438, .external_lex_state = 2}, [10602] = {.lex_state = 438, .external_lex_state = 2}, [10603] = {.lex_state = 438, .external_lex_state = 2}, [10604] = {.lex_state = 438, .external_lex_state = 2}, [10605] = {.lex_state = 438, .external_lex_state = 2}, [10606] = {.lex_state = 438, .external_lex_state = 2}, - [10607] = {.lex_state = 438, .external_lex_state = 2}, - [10608] = {.lex_state = 438, .external_lex_state = 2}, - [10609] = {.lex_state = 438, .external_lex_state = 2}, - [10610] = {.lex_state = 438, .external_lex_state = 2}, - [10611] = {.lex_state = 438, .external_lex_state = 2}, - [10612] = {.lex_state = 438, .external_lex_state = 2}, - [10613] = {.lex_state = 438, .external_lex_state = 2}, + [10607] = {.lex_state = 0}, + [10608] = {.lex_state = 0}, + [10609] = {.lex_state = 0}, + [10610] = {.lex_state = 0}, + [10611] = {.lex_state = 438}, + [10612] = {.lex_state = 438}, + [10613] = {.lex_state = 0}, [10614] = {.lex_state = 0}, - [10615] = {.lex_state = 0}, + [10615] = {.lex_state = 438}, [10616] = {.lex_state = 438}, [10617] = {.lex_state = 0}, [10618] = {.lex_state = 438}, [10619] = {.lex_state = 0}, - [10620] = {.lex_state = 0}, - [10621] = {.lex_state = 0}, + [10620] = {.lex_state = 438}, + [10621] = {.lex_state = 438}, [10622] = {.lex_state = 438}, [10623] = {.lex_state = 0}, [10624] = {.lex_state = 0}, - [10625] = {.lex_state = 438}, - [10626] = {.lex_state = 438}, - [10627] = {.lex_state = 0}, - [10628] = {.lex_state = 438}, + [10625] = {.lex_state = 0}, + [10626] = {.lex_state = 0}, + [10627] = {.lex_state = 237}, + [10628] = {.lex_state = 0}, [10629] = {.lex_state = 0}, - [10630] = {.lex_state = 237}, - [10631] = {.lex_state = 0}, - [10632] = {.lex_state = 0}, - [10633] = {.lex_state = 438}, - [10634] = {.lex_state = 151}, + [10630] = {.lex_state = 0}, + [10631] = {.lex_state = 237}, + [10632] = {.lex_state = 266}, + [10633] = {.lex_state = 266}, + [10634] = {.lex_state = 266}, [10635] = {.lex_state = 0}, [10636] = {.lex_state = 0}, [10637] = {.lex_state = 0}, - [10638] = {.lex_state = 266}, - [10639] = {.lex_state = 151}, + [10638] = {.lex_state = 0}, + [10639] = {.lex_state = 266}, [10640] = {.lex_state = 0}, [10641] = {.lex_state = 0}, - [10642] = {.lex_state = 0}, + [10642] = {.lex_state = 266}, [10643] = {.lex_state = 0}, [10644] = {.lex_state = 0}, - [10645] = {.lex_state = 266}, + [10645] = {.lex_state = 0}, [10646] = {.lex_state = 0}, [10647] = {.lex_state = 0}, - [10648] = {.lex_state = 266}, - [10649] = {.lex_state = 151}, + [10648] = {.lex_state = 0}, + [10649] = {.lex_state = 0}, [10650] = {.lex_state = 0}, [10651] = {.lex_state = 0}, - [10652] = {.lex_state = 237}, + [10652] = {.lex_state = 0}, [10653] = {.lex_state = 0}, - [10654] = {.lex_state = 0}, - [10655] = {.lex_state = 266}, + [10654] = {.lex_state = 266}, + [10655] = {.lex_state = 0}, [10656] = {.lex_state = 0}, [10657] = {.lex_state = 0}, - [10658] = {.lex_state = 266}, + [10658] = {.lex_state = 0}, [10659] = {.lex_state = 0}, - [10660] = {.lex_state = 266}, + [10660] = {.lex_state = 0}, [10661] = {.lex_state = 0}, - [10662] = {.lex_state = 0}, - [10663] = {.lex_state = 0}, + [10662] = {.lex_state = 266}, + [10663] = {.lex_state = 266}, [10664] = {.lex_state = 0}, [10665] = {.lex_state = 0}, [10666] = {.lex_state = 0}, - [10667] = {.lex_state = 151}, + [10667] = {.lex_state = 0}, [10668] = {.lex_state = 0}, - [10669] = {.lex_state = 0}, - [10670] = {.lex_state = 438}, + [10669] = {.lex_state = 266}, + [10670] = {.lex_state = 0}, [10671] = {.lex_state = 0}, [10672] = {.lex_state = 0}, [10673] = {.lex_state = 0}, - [10674] = {.lex_state = 0}, - [10675] = {.lex_state = 266}, - [10676] = {.lex_state = 0}, + [10674] = {.lex_state = 237}, + [10675] = {.lex_state = 0}, + [10676] = {.lex_state = 151}, [10677] = {.lex_state = 438}, - [10678] = {.lex_state = 151}, + [10678] = {.lex_state = 0}, [10679] = {.lex_state = 0}, - [10680] = {.lex_state = 0}, - [10681] = {.lex_state = 0}, + [10680] = {.lex_state = 0, .external_lex_state = 2}, + [10681] = {.lex_state = 237}, [10682] = {.lex_state = 0}, - [10683] = {.lex_state = 237}, - [10684] = {.lex_state = 438}, + [10683] = {.lex_state = 266}, + [10684] = {.lex_state = 0}, [10685] = {.lex_state = 0}, - [10686] = {.lex_state = 0, .external_lex_state = 2}, - [10687] = {.lex_state = 438}, + [10686] = {.lex_state = 0}, + [10687] = {.lex_state = 0}, [10688] = {.lex_state = 0}, [10689] = {.lex_state = 0}, - [10690] = {.lex_state = 438}, - [10691] = {.lex_state = 237}, - [10692] = {.lex_state = 266}, + [10690] = {.lex_state = 0}, + [10691] = {.lex_state = 0}, + [10692] = {.lex_state = 0}, [10693] = {.lex_state = 0}, [10694] = {.lex_state = 266}, - [10695] = {.lex_state = 0}, + [10695] = {.lex_state = 266}, [10696] = {.lex_state = 0}, - [10697] = {.lex_state = 0}, - [10698] = {.lex_state = 237}, + [10697] = {.lex_state = 266}, + [10698] = {.lex_state = 0}, [10699] = {.lex_state = 0}, - [10700] = {.lex_state = 0}, - [10701] = {.lex_state = 0}, - [10702] = {.lex_state = 237}, - [10703] = {.lex_state = 266}, + [10700] = {.lex_state = 266}, + [10701] = {.lex_state = 266}, + [10702] = {.lex_state = 0}, + [10703] = {.lex_state = 237}, [10704] = {.lex_state = 0}, - [10705] = {.lex_state = 237}, + [10705] = {.lex_state = 0}, [10706] = {.lex_state = 0}, [10707] = {.lex_state = 0}, - [10708] = {.lex_state = 0}, + [10708] = {.lex_state = 438}, [10709] = {.lex_state = 0}, - [10710] = {.lex_state = 237}, - [10711] = {.lex_state = 0}, + [10710] = {.lex_state = 0}, + [10711] = {.lex_state = 438}, [10712] = {.lex_state = 0}, [10713] = {.lex_state = 0}, [10714] = {.lex_state = 0}, - [10715] = {.lex_state = 151}, + [10715] = {.lex_state = 237}, [10716] = {.lex_state = 0}, [10717] = {.lex_state = 0}, [10718] = {.lex_state = 0}, - [10719] = {.lex_state = 0}, + [10719] = {.lex_state = 266}, [10720] = {.lex_state = 0}, [10721] = {.lex_state = 0}, - [10722] = {.lex_state = 237}, + [10722] = {.lex_state = 0}, [10723] = {.lex_state = 0}, - [10724] = {.lex_state = 266}, - [10725] = {.lex_state = 266}, - [10726] = {.lex_state = 266}, + [10724] = {.lex_state = 151}, + [10725] = {.lex_state = 0}, + [10726] = {.lex_state = 0}, [10727] = {.lex_state = 0}, - [10728] = {.lex_state = 0}, - [10729] = {.lex_state = 438}, + [10728] = {.lex_state = 266}, + [10729] = {.lex_state = 266}, [10730] = {.lex_state = 0}, [10731] = {.lex_state = 0}, [10732] = {.lex_state = 0}, [10733] = {.lex_state = 0}, - [10734] = {.lex_state = 266}, + [10734] = {.lex_state = 151}, [10735] = {.lex_state = 266}, [10736] = {.lex_state = 0}, - [10737] = {.lex_state = 0}, - [10738] = {.lex_state = 266}, - [10739] = {.lex_state = 438}, - [10740] = {.lex_state = 151}, - [10741] = {.lex_state = 237}, + [10737] = {.lex_state = 438}, + [10738] = {.lex_state = 0}, + [10739] = {.lex_state = 0}, + [10740] = {.lex_state = 0}, + [10741] = {.lex_state = 0}, [10742] = {.lex_state = 0}, [10743] = {.lex_state = 438}, - [10744] = {.lex_state = 237}, + [10744] = {.lex_state = 151}, [10745] = {.lex_state = 0}, [10746] = {.lex_state = 0}, [10747] = {.lex_state = 0}, - [10748] = {.lex_state = 237}, - [10749] = {.lex_state = 237}, - [10750] = {.lex_state = 237}, + [10748] = {.lex_state = 266}, + [10749] = {.lex_state = 0}, + [10750] = {.lex_state = 151}, [10751] = {.lex_state = 266}, [10752] = {.lex_state = 0}, - [10753] = {.lex_state = 266}, - [10754] = {.lex_state = 266}, - [10755] = {.lex_state = 266}, - [10756] = {.lex_state = 237}, + [10753] = {.lex_state = 0}, + [10754] = {.lex_state = 0}, + [10755] = {.lex_state = 0}, + [10756] = {.lex_state = 0}, [10757] = {.lex_state = 266}, - [10758] = {.lex_state = 266}, + [10758] = {.lex_state = 237}, [10759] = {.lex_state = 0}, - [10760] = {.lex_state = 151}, + [10760] = {.lex_state = 237}, [10761] = {.lex_state = 0}, [10762] = {.lex_state = 0}, [10763] = {.lex_state = 0}, - [10764] = {.lex_state = 237}, + [10764] = {.lex_state = 438}, [10765] = {.lex_state = 0}, [10766] = {.lex_state = 0}, [10767] = {.lex_state = 0}, [10768] = {.lex_state = 0}, - [10769] = {.lex_state = 0}, - [10770] = {.lex_state = 438}, - [10771] = {.lex_state = 0}, - [10772] = {.lex_state = 0}, - [10773] = {.lex_state = 151}, - [10774] = {.lex_state = 0}, + [10769] = {.lex_state = 237}, + [10770] = {.lex_state = 237}, + [10771] = {.lex_state = 438}, + [10772] = {.lex_state = 266}, + [10773] = {.lex_state = 438}, + [10774] = {.lex_state = 237}, [10775] = {.lex_state = 0}, [10776] = {.lex_state = 0}, - [10777] = {.lex_state = 0}, - [10778] = {.lex_state = 151}, + [10777] = {.lex_state = 266}, + [10778] = {.lex_state = 0}, [10779] = {.lex_state = 266}, [10780] = {.lex_state = 0}, [10781] = {.lex_state = 0}, [10782] = {.lex_state = 0}, - [10783] = {.lex_state = 266}, - [10784] = {.lex_state = 237}, - [10785] = {.lex_state = 266}, + [10783] = {.lex_state = 0}, + [10784] = {.lex_state = 0}, + [10785] = {.lex_state = 0}, [10786] = {.lex_state = 0}, [10787] = {.lex_state = 0}, [10788] = {.lex_state = 0}, - [10789] = {.lex_state = 0}, - [10790] = {.lex_state = 0}, - [10791] = {.lex_state = 266}, + [10789] = {.lex_state = 266}, + [10790] = {.lex_state = 151}, + [10791] = {.lex_state = 0}, [10792] = {.lex_state = 0}, [10793] = {.lex_state = 0}, [10794] = {.lex_state = 0}, - [10795] = {.lex_state = 0}, - [10796] = {.lex_state = 237}, + [10795] = {.lex_state = 266}, + [10796] = {.lex_state = 0}, [10797] = {.lex_state = 0}, - [10798] = {.lex_state = 0}, + [10798] = {.lex_state = 266}, [10799] = {.lex_state = 0}, [10800] = {.lex_state = 0}, - [10801] = {.lex_state = 266}, + [10801] = {.lex_state = 0}, [10802] = {.lex_state = 0}, - [10803] = {.lex_state = 151}, - [10804] = {.lex_state = 266}, - [10805] = {.lex_state = 0}, + [10803] = {.lex_state = 0}, + [10804] = {.lex_state = 0}, + [10805] = {.lex_state = 0, .external_lex_state = 2}, [10806] = {.lex_state = 0}, - [10807] = {.lex_state = 0}, - [10808] = {.lex_state = 266}, - [10809] = {.lex_state = 266}, - [10810] = {.lex_state = 0}, - [10811] = {.lex_state = 0, .external_lex_state = 2}, - [10812] = {.lex_state = 0}, + [10807] = {.lex_state = 266}, + [10808] = {.lex_state = 0}, + [10809] = {.lex_state = 0}, + [10810] = {.lex_state = 151}, + [10811] = {.lex_state = 0}, + [10812] = {.lex_state = 266}, [10813] = {.lex_state = 0}, - [10814] = {.lex_state = 0}, - [10815] = {.lex_state = 0}, - [10816] = {.lex_state = 0}, - [10817] = {.lex_state = 237}, - [10818] = {.lex_state = 266}, - [10819] = {.lex_state = 0}, - [10820] = {.lex_state = 266}, - [10821] = {.lex_state = 237}, + [10814] = {.lex_state = 237}, + [10815] = {.lex_state = 237}, + [10816] = {.lex_state = 266}, + [10817] = {.lex_state = 0}, + [10818] = {.lex_state = 0}, + [10819] = {.lex_state = 266}, + [10820] = {.lex_state = 0}, + [10821] = {.lex_state = 0}, [10822] = {.lex_state = 0}, [10823] = {.lex_state = 0}, [10824] = {.lex_state = 0}, [10825] = {.lex_state = 266}, - [10826] = {.lex_state = 266}, + [10826] = {.lex_state = 0}, [10827] = {.lex_state = 0}, [10828] = {.lex_state = 0}, [10829] = {.lex_state = 0}, - [10830] = {.lex_state = 0}, - [10831] = {.lex_state = 266}, - [10832] = {.lex_state = 0}, - [10833] = {.lex_state = 0}, - [10834] = {.lex_state = 237}, - [10835] = {.lex_state = 0}, + [10830] = {.lex_state = 266}, + [10831] = {.lex_state = 438}, + [10832] = {.lex_state = 266}, + [10833] = {.lex_state = 151}, + [10834] = {.lex_state = 0}, + [10835] = {.lex_state = 266}, [10836] = {.lex_state = 0}, - [10837] = {.lex_state = 438}, + [10837] = {.lex_state = 0}, [10838] = {.lex_state = 0}, - [10839] = {.lex_state = 266}, + [10839] = {.lex_state = 0}, [10840] = {.lex_state = 0}, [10841] = {.lex_state = 0}, [10842] = {.lex_state = 0}, - [10843] = {.lex_state = 237}, - [10844] = {.lex_state = 0}, - [10845] = {.lex_state = 266}, + [10843] = {.lex_state = 0}, + [10844] = {.lex_state = 237}, + [10845] = {.lex_state = 237}, [10846] = {.lex_state = 0}, - [10847] = {.lex_state = 0}, + [10847] = {.lex_state = 266}, [10848] = {.lex_state = 0}, - [10849] = {.lex_state = 0}, - [10850] = {.lex_state = 237}, - [10851] = {.lex_state = 237}, - [10852] = {.lex_state = 237}, - [10853] = {.lex_state = 0}, - [10854] = {.lex_state = 0}, - [10855] = {.lex_state = 438}, - [10856] = {.lex_state = 0}, - [10857] = {.lex_state = 0}, - [10858] = {.lex_state = 237}, - [10859] = {.lex_state = 237}, + [10849] = {.lex_state = 438}, + [10850] = {.lex_state = 0}, + [10851] = {.lex_state = 266}, + [10852] = {.lex_state = 0}, + [10853] = {.lex_state = 237}, + [10854] = {.lex_state = 266}, + [10855] = {.lex_state = 0}, + [10856] = {.lex_state = 266}, + [10857] = {.lex_state = 333}, + [10858] = {.lex_state = 266}, + [10859] = {.lex_state = 0}, [10860] = {.lex_state = 266}, - [10861] = {.lex_state = 0}, + [10861] = {.lex_state = 438}, [10862] = {.lex_state = 0}, - [10863] = {.lex_state = 0}, - [10864] = {.lex_state = 266}, - [10865] = {.lex_state = 266}, - [10866] = {.lex_state = 266}, + [10863] = {.lex_state = 438}, + [10864] = {.lex_state = 0}, + [10865] = {.lex_state = 237}, + [10866] = {.lex_state = 0}, [10867] = {.lex_state = 0}, - [10868] = {.lex_state = 237}, - [10869] = {.lex_state = 151}, - [10870] = {.lex_state = 0}, - [10871] = {.lex_state = 0}, + [10868] = {.lex_state = 0}, + [10869] = {.lex_state = 0}, + [10870] = {.lex_state = 266}, + [10871] = {.lex_state = 438}, [10872] = {.lex_state = 266}, [10873] = {.lex_state = 0}, - [10874] = {.lex_state = 237}, + [10874] = {.lex_state = 0}, [10875] = {.lex_state = 0}, [10876] = {.lex_state = 0}, [10877] = {.lex_state = 0}, - [10878] = {.lex_state = 0}, - [10879] = {.lex_state = 237}, + [10878] = {.lex_state = 266}, + [10879] = {.lex_state = 0}, [10880] = {.lex_state = 237}, - [10881] = {.lex_state = 151}, + [10881] = {.lex_state = 0}, [10882] = {.lex_state = 0}, [10883] = {.lex_state = 0}, - [10884] = {.lex_state = 266}, - [10885] = {.lex_state = 266}, - [10886] = {.lex_state = 0}, + [10884] = {.lex_state = 0, .external_lex_state = 2}, + [10885] = {.lex_state = 0}, + [10886] = {.lex_state = 266}, [10887] = {.lex_state = 0}, [10888] = {.lex_state = 237}, [10889] = {.lex_state = 0}, - [10890] = {.lex_state = 0, .external_lex_state = 2}, - [10891] = {.lex_state = 0}, - [10892] = {.lex_state = 266}, - [10893] = {.lex_state = 438}, + [10890] = {.lex_state = 151}, + [10891] = {.lex_state = 151}, + [10892] = {.lex_state = 0}, + [10893] = {.lex_state = 0}, [10894] = {.lex_state = 438}, - [10895] = {.lex_state = 151}, - [10896] = {.lex_state = 438}, - [10897] = {.lex_state = 0}, - [10898] = {.lex_state = 266}, - [10899] = {.lex_state = 151}, - [10900] = {.lex_state = 438}, - [10901] = {.lex_state = 151}, - [10902] = {.lex_state = 151}, - [10903] = {.lex_state = 438}, + [10895] = {.lex_state = 333}, + [10896] = {.lex_state = 0}, + [10897] = {.lex_state = 438}, + [10898] = {.lex_state = 0}, + [10899] = {.lex_state = 0}, + [10900] = {.lex_state = 266}, + [10901] = {.lex_state = 0}, + [10902] = {.lex_state = 0}, + [10903] = {.lex_state = 0}, [10904] = {.lex_state = 0}, [10905] = {.lex_state = 0}, - [10906] = {.lex_state = 151}, - [10907] = {.lex_state = 151}, - [10908] = {.lex_state = 0}, - [10909] = {.lex_state = 266}, - [10910] = {.lex_state = 0}, + [10906] = {.lex_state = 0}, + [10907] = {.lex_state = 0}, + [10908] = {.lex_state = 266}, + [10909] = {.lex_state = 0}, + [10910] = {.lex_state = 438}, [10911] = {.lex_state = 0}, [10912] = {.lex_state = 0}, - [10913] = {.lex_state = 235}, + [10913] = {.lex_state = 0}, [10914] = {.lex_state = 266}, [10915] = {.lex_state = 0}, - [10916] = {.lex_state = 438}, - [10917] = {.lex_state = 0}, + [10916] = {.lex_state = 0}, + [10917] = {.lex_state = 266}, [10918] = {.lex_state = 0}, - [10919] = {.lex_state = 0}, - [10920] = {.lex_state = 0}, - [10921] = {.lex_state = 0}, - [10922] = {.lex_state = 0}, - [10923] = {.lex_state = 266}, + [10919] = {.lex_state = 266}, + [10920] = {.lex_state = 235}, + [10921] = {.lex_state = 266}, + [10922] = {.lex_state = 266}, + [10923] = {.lex_state = 0}, [10924] = {.lex_state = 0}, - [10925] = {.lex_state = 266}, + [10925] = {.lex_state = 237}, [10926] = {.lex_state = 0}, [10927] = {.lex_state = 0}, [10928] = {.lex_state = 0}, - [10929] = {.lex_state = 0}, + [10929] = {.lex_state = 0, .external_lex_state = 2}, [10930] = {.lex_state = 0}, - [10931] = {.lex_state = 266}, - [10932] = {.lex_state = 0, .external_lex_state = 2}, - [10933] = {.lex_state = 0}, - [10934] = {.lex_state = 0}, - [10935] = {.lex_state = 0}, - [10936] = {.lex_state = 266}, - [10937] = {.lex_state = 285}, - [10938] = {.lex_state = 237}, - [10939] = {.lex_state = 0}, + [10931] = {.lex_state = 0}, + [10932] = {.lex_state = 0}, + [10933] = {.lex_state = 438}, + [10934] = {.lex_state = 151}, + [10935] = {.lex_state = 266}, + [10936] = {.lex_state = 0}, + [10937] = {.lex_state = 0}, + [10938] = {.lex_state = 266}, + [10939] = {.lex_state = 237}, [10940] = {.lex_state = 0}, - [10941] = {.lex_state = 266}, - [10942] = {.lex_state = 237}, - [10943] = {.lex_state = 0}, + [10941] = {.lex_state = 0, .external_lex_state = 2}, + [10942] = {.lex_state = 266}, + [10943] = {.lex_state = 266}, [10944] = {.lex_state = 0}, [10945] = {.lex_state = 0}, - [10946] = {.lex_state = 0}, - [10947] = {.lex_state = 0, .external_lex_state = 2}, + [10946] = {.lex_state = 235}, + [10947] = {.lex_state = 0}, [10948] = {.lex_state = 0}, - [10949] = {.lex_state = 266}, - [10950] = {.lex_state = 0}, - [10951] = {.lex_state = 0}, - [10952] = {.lex_state = 266}, + [10949] = {.lex_state = 0}, + [10950] = {.lex_state = 237}, + [10951] = {.lex_state = 438}, + [10952] = {.lex_state = 0}, [10953] = {.lex_state = 0}, [10954] = {.lex_state = 0}, [10955] = {.lex_state = 0}, [10956] = {.lex_state = 0}, - [10957] = {.lex_state = 438}, + [10957] = {.lex_state = 0}, [10958] = {.lex_state = 0}, - [10959] = {.lex_state = 0}, + [10959] = {.lex_state = 438}, [10960] = {.lex_state = 0}, - [10961] = {.lex_state = 0}, + [10961] = {.lex_state = 0, .external_lex_state = 3}, [10962] = {.lex_state = 0}, - [10963] = {.lex_state = 438}, - [10964] = {.lex_state = 266}, + [10963] = {.lex_state = 237}, + [10964] = {.lex_state = 0}, [10965] = {.lex_state = 0}, [10966] = {.lex_state = 0}, - [10967] = {.lex_state = 237}, - [10968] = {.lex_state = 266}, - [10969] = {.lex_state = 266}, - [10970] = {.lex_state = 0}, - [10971] = {.lex_state = 237}, + [10967] = {.lex_state = 438}, + [10968] = {.lex_state = 0}, + [10969] = {.lex_state = 0}, + [10970] = {.lex_state = 266}, + [10971] = {.lex_state = 0}, [10972] = {.lex_state = 266}, - [10973] = {.lex_state = 438}, - [10974] = {.lex_state = 0}, - [10975] = {.lex_state = 0}, - [10976] = {.lex_state = 0}, - [10977] = {.lex_state = 151}, - [10978] = {.lex_state = 266}, - [10979] = {.lex_state = 0}, - [10980] = {.lex_state = 266}, - [10981] = {.lex_state = 438}, - [10982] = {.lex_state = 266}, + [10973] = {.lex_state = 0}, + [10974] = {.lex_state = 266}, + [10975] = {.lex_state = 438}, + [10976] = {.lex_state = 237}, + [10977] = {.lex_state = 0}, + [10978] = {.lex_state = 0}, + [10979] = {.lex_state = 266}, + [10980] = {.lex_state = 0}, + [10981] = {.lex_state = 266}, + [10982] = {.lex_state = 0}, [10983] = {.lex_state = 0}, - [10984] = {.lex_state = 0}, - [10985] = {.lex_state = 266}, + [10984] = {.lex_state = 266}, + [10985] = {.lex_state = 0}, [10986] = {.lex_state = 0}, - [10987] = {.lex_state = 0}, + [10987] = {.lex_state = 266}, [10988] = {.lex_state = 0}, - [10989] = {.lex_state = 0}, - [10990] = {.lex_state = 0}, - [10991] = {.lex_state = 438}, + [10989] = {.lex_state = 266}, + [10990] = {.lex_state = 266}, + [10991] = {.lex_state = 0}, [10992] = {.lex_state = 0}, [10993] = {.lex_state = 0}, [10994] = {.lex_state = 0}, - [10995] = {.lex_state = 266}, - [10996] = {.lex_state = 0}, - [10997] = {.lex_state = 0}, - [10998] = {.lex_state = 237}, + [10995] = {.lex_state = 0, .external_lex_state = 2}, + [10996] = {.lex_state = 151}, + [10997] = {.lex_state = 151}, + [10998] = {.lex_state = 0}, [10999] = {.lex_state = 0}, [11000] = {.lex_state = 0}, - [11001] = {.lex_state = 0, .external_lex_state = 2}, - [11002] = {.lex_state = 0}, + [11001] = {.lex_state = 438}, + [11002] = {.lex_state = 438}, [11003] = {.lex_state = 0}, - [11004] = {.lex_state = 0}, - [11005] = {.lex_state = 0}, + [11004] = {.lex_state = 237}, + [11005] = {.lex_state = 0, .external_lex_state = 2}, [11006] = {.lex_state = 0}, - [11007] = {.lex_state = 266}, - [11008] = {.lex_state = 438}, - [11009] = {.lex_state = 237}, + [11007] = {.lex_state = 438}, + [11008] = {.lex_state = 0}, + [11009] = {.lex_state = 0}, [11010] = {.lex_state = 0}, - [11011] = {.lex_state = 0}, - [11012] = {.lex_state = 0}, + [11011] = {.lex_state = 438}, + [11012] = {.lex_state = 438}, [11013] = {.lex_state = 0}, - [11014] = {.lex_state = 0}, + [11014] = {.lex_state = 151}, [11015] = {.lex_state = 266}, [11016] = {.lex_state = 0}, - [11017] = {.lex_state = 0}, - [11018] = {.lex_state = 438}, + [11017] = {.lex_state = 266}, + [11018] = {.lex_state = 0}, [11019] = {.lex_state = 0}, [11020] = {.lex_state = 0}, - [11021] = {.lex_state = 266}, - [11022] = {.lex_state = 0}, + [11021] = {.lex_state = 0}, + [11022] = {.lex_state = 266}, [11023] = {.lex_state = 266}, [11024] = {.lex_state = 0}, - [11025] = {.lex_state = 0}, - [11026] = {.lex_state = 237}, - [11027] = {.lex_state = 151}, - [11028] = {.lex_state = 0}, - [11029] = {.lex_state = 266}, - [11030] = {.lex_state = 266}, - [11031] = {.lex_state = 0, .external_lex_state = 2}, + [11025] = {.lex_state = 0, .external_lex_state = 2}, + [11026] = {.lex_state = 0}, + [11027] = {.lex_state = 0}, + [11028] = {.lex_state = 151}, + [11029] = {.lex_state = 237}, + [11030] = {.lex_state = 0}, + [11031] = {.lex_state = 0}, [11032] = {.lex_state = 0}, [11033] = {.lex_state = 0}, - [11034] = {.lex_state = 0}, + [11034] = {.lex_state = 438}, [11035] = {.lex_state = 0}, - [11036] = {.lex_state = 0}, - [11037] = {.lex_state = 438}, - [11038] = {.lex_state = 237}, + [11036] = {.lex_state = 438}, + [11037] = {.lex_state = 0}, + [11038] = {.lex_state = 266}, [11039] = {.lex_state = 0}, - [11040] = {.lex_state = 0}, + [11040] = {.lex_state = 266}, [11041] = {.lex_state = 0}, - [11042] = {.lex_state = 438}, + [11042] = {.lex_state = 0}, [11043] = {.lex_state = 0}, [11044] = {.lex_state = 0}, - [11045] = {.lex_state = 0}, - [11046] = {.lex_state = 266}, + [11045] = {.lex_state = 0, .external_lex_state = 2}, + [11046] = {.lex_state = 0}, [11047] = {.lex_state = 0}, [11048] = {.lex_state = 0}, - [11049] = {.lex_state = 235}, + [11049] = {.lex_state = 0}, [11050] = {.lex_state = 0}, - [11051] = {.lex_state = 0, .external_lex_state = 2}, - [11052] = {.lex_state = 0}, - [11053] = {.lex_state = 438}, + [11051] = {.lex_state = 438}, + [11052] = {.lex_state = 266}, + [11053] = {.lex_state = 0}, [11054] = {.lex_state = 0}, [11055] = {.lex_state = 0}, - [11056] = {.lex_state = 266}, + [11056] = {.lex_state = 0, .external_lex_state = 2}, [11057] = {.lex_state = 0}, - [11058] = {.lex_state = 266}, + [11058] = {.lex_state = 0}, [11059] = {.lex_state = 0}, [11060] = {.lex_state = 0}, - [11061] = {.lex_state = 0}, - [11062] = {.lex_state = 0, .external_lex_state = 2}, + [11061] = {.lex_state = 438}, + [11062] = {.lex_state = 0}, [11063] = {.lex_state = 266}, - [11064] = {.lex_state = 237}, - [11065] = {.lex_state = 0}, + [11064] = {.lex_state = 0}, + [11065] = {.lex_state = 0, .external_lex_state = 2}, [11066] = {.lex_state = 0}, - [11067] = {.lex_state = 237}, + [11067] = {.lex_state = 266}, [11068] = {.lex_state = 0}, [11069] = {.lex_state = 266}, [11070] = {.lex_state = 0}, - [11071] = {.lex_state = 0, .external_lex_state = 2}, - [11072] = {.lex_state = 0}, + [11071] = {.lex_state = 0}, + [11072] = {.lex_state = 0, .external_lex_state = 2}, [11073] = {.lex_state = 0}, - [11074] = {.lex_state = 0}, - [11075] = {.lex_state = 266}, + [11074] = {.lex_state = 438}, + [11075] = {.lex_state = 0}, [11076] = {.lex_state = 0}, [11077] = {.lex_state = 0}, - [11078] = {.lex_state = 0, .external_lex_state = 2}, - [11079] = {.lex_state = 151}, + [11078] = {.lex_state = 0}, + [11079] = {.lex_state = 0, .external_lex_state = 2}, [11080] = {.lex_state = 0}, - [11081] = {.lex_state = 151}, - [11082] = {.lex_state = 266}, + [11081] = {.lex_state = 0}, + [11082] = {.lex_state = 0}, [11083] = {.lex_state = 0}, [11084] = {.lex_state = 0}, [11085] = {.lex_state = 0, .external_lex_state = 2}, [11086] = {.lex_state = 0}, [11087] = {.lex_state = 0}, - [11088] = {.lex_state = 0}, - [11089] = {.lex_state = 238}, - [11090] = {.lex_state = 0}, - [11091] = {.lex_state = 0, .external_lex_state = 2}, - [11092] = {.lex_state = 235}, - [11093] = {.lex_state = 438}, - [11094] = {.lex_state = 438}, + [11088] = {.lex_state = 237}, + [11089] = {.lex_state = 0}, + [11090] = {.lex_state = 0, .external_lex_state = 2}, + [11091] = {.lex_state = 0}, + [11092] = {.lex_state = 0}, + [11093] = {.lex_state = 0}, + [11094] = {.lex_state = 0, .external_lex_state = 2}, [11095] = {.lex_state = 0}, - [11096] = {.lex_state = 0, .external_lex_state = 2}, + [11096] = {.lex_state = 0}, [11097] = {.lex_state = 0}, - [11098] = {.lex_state = 438}, + [11098] = {.lex_state = 0, .external_lex_state = 2}, [11099] = {.lex_state = 0}, - [11100] = {.lex_state = 0, .external_lex_state = 2}, + [11100] = {.lex_state = 266}, [11101] = {.lex_state = 0}, - [11102] = {.lex_state = 0}, + [11102] = {.lex_state = 0, .external_lex_state = 2}, [11103] = {.lex_state = 0}, - [11104] = {.lex_state = 0, .external_lex_state = 2}, - [11105] = {.lex_state = 151}, - [11106] = {.lex_state = 235}, - [11107] = {.lex_state = 0}, - [11108] = {.lex_state = 0, .external_lex_state = 2}, - [11109] = {.lex_state = 238}, - [11110] = {.lex_state = 266}, - [11111] = {.lex_state = 0}, - [11112] = {.lex_state = 0, .external_lex_state = 2}, - [11113] = {.lex_state = 438}, - [11114] = {.lex_state = 0, .external_lex_state = 3}, + [11104] = {.lex_state = 0}, + [11105] = {.lex_state = 0}, + [11106] = {.lex_state = 0, .external_lex_state = 2}, + [11107] = {.lex_state = 266}, + [11108] = {.lex_state = 0}, + [11109] = {.lex_state = 0}, + [11110] = {.lex_state = 0, .external_lex_state = 2}, + [11111] = {.lex_state = 237}, + [11112] = {.lex_state = 0}, + [11113] = {.lex_state = 0, .external_lex_state = 2}, + [11114] = {.lex_state = 0}, [11115] = {.lex_state = 0}, - [11116] = {.lex_state = 0, .external_lex_state = 2}, + [11116] = {.lex_state = 0}, [11117] = {.lex_state = 0}, [11118] = {.lex_state = 0}, - [11119] = {.lex_state = 0, .external_lex_state = 2}, + [11119] = {.lex_state = 438}, [11120] = {.lex_state = 0}, - [11121] = {.lex_state = 0}, - [11122] = {.lex_state = 0}, - [11123] = {.lex_state = 0}, - [11124] = {.lex_state = 0}, - [11125] = {.lex_state = 438}, - [11126] = {.lex_state = 0}, - [11127] = {.lex_state = 438}, - [11128] = {.lex_state = 438}, - [11129] = {.lex_state = 438}, - [11130] = {.lex_state = 438}, + [11121] = {.lex_state = 438}, + [11122] = {.lex_state = 438}, + [11123] = {.lex_state = 438}, + [11124] = {.lex_state = 438}, + [11125] = {.lex_state = 235}, + [11126] = {.lex_state = 438}, + [11127] = {.lex_state = 0}, + [11128] = {.lex_state = 238}, + [11129] = {.lex_state = 0}, + [11130] = {.lex_state = 0}, [11131] = {.lex_state = 0}, [11132] = {.lex_state = 438}, [11133] = {.lex_state = 0}, [11134] = {.lex_state = 0}, - [11135] = {.lex_state = 0}, + [11135] = {.lex_state = 266}, [11136] = {.lex_state = 0}, - [11137] = {.lex_state = 0}, + [11137] = {.lex_state = 438}, [11138] = {.lex_state = 0}, [11139] = {.lex_state = 0}, - [11140] = {.lex_state = 0}, - [11141] = {.lex_state = 266}, + [11140] = {.lex_state = 438}, + [11141] = {.lex_state = 438}, [11142] = {.lex_state = 0}, - [11143] = {.lex_state = 438}, + [11143] = {.lex_state = 266}, [11144] = {.lex_state = 0}, - [11145] = {.lex_state = 0}, - [11146] = {.lex_state = 438}, - [11147] = {.lex_state = 438}, - [11148] = {.lex_state = 0}, - [11149] = {.lex_state = 266}, - [11150] = {.lex_state = 0}, - [11151] = {.lex_state = 438}, - [11152] = {.lex_state = 0, .external_lex_state = 3}, - [11153] = {.lex_state = 0}, + [11145] = {.lex_state = 438}, + [11146] = {.lex_state = 0, .external_lex_state = 3}, + [11147] = {.lex_state = 237}, + [11148] = {.lex_state = 266}, + [11149] = {.lex_state = 0}, + [11150] = {.lex_state = 438}, + [11151] = {.lex_state = 0}, + [11152] = {.lex_state = 237}, + [11153] = {.lex_state = 438}, [11154] = {.lex_state = 0}, [11155] = {.lex_state = 0}, - [11156] = {.lex_state = 438}, - [11157] = {.lex_state = 0}, + [11156] = {.lex_state = 0}, + [11157] = {.lex_state = 438}, [11158] = {.lex_state = 0}, - [11159] = {.lex_state = 0}, - [11160] = {.lex_state = 0}, + [11159] = {.lex_state = 266}, + [11160] = {.lex_state = 266}, [11161] = {.lex_state = 0}, - [11162] = {.lex_state = 0}, + [11162] = {.lex_state = 266}, [11163] = {.lex_state = 0}, - [11164] = {.lex_state = 0}, + [11164] = {.lex_state = 235}, [11165] = {.lex_state = 0}, - [11166] = {.lex_state = 0}, + [11166] = {.lex_state = 237}, [11167] = {.lex_state = 0}, - [11168] = {.lex_state = 266}, + [11168] = {.lex_state = 285}, [11169] = {.lex_state = 0}, - [11170] = {.lex_state = 0}, - [11171] = {.lex_state = 0}, + [11170] = {.lex_state = 438}, + [11171] = {.lex_state = 151}, [11172] = {.lex_state = 0}, [11173] = {.lex_state = 0}, - [11174] = {.lex_state = 0}, - [11175] = {.lex_state = 0}, - [11176] = {.lex_state = 0}, - [11177] = {.lex_state = 0}, - [11178] = {.lex_state = 266}, + [11174] = {.lex_state = 151}, + [11175] = {.lex_state = 237}, + [11176] = {.lex_state = 237}, + [11177] = {.lex_state = 266}, + [11178] = {.lex_state = 0}, [11179] = {.lex_state = 0}, - [11180] = {.lex_state = 0}, - [11181] = {.lex_state = 266}, + [11180] = {.lex_state = 237}, + [11181] = {.lex_state = 237}, [11182] = {.lex_state = 0}, [11183] = {.lex_state = 266}, - [11184] = {.lex_state = 0}, - [11185] = {.lex_state = 0}, + [11184] = {.lex_state = 237}, + [11185] = {.lex_state = 438}, [11186] = {.lex_state = 0}, [11187] = {.lex_state = 0}, - [11188] = {.lex_state = 0}, - [11189] = {.lex_state = 0}, - [11190] = {.lex_state = 0}, - [11191] = {.lex_state = 438}, + [11188] = {.lex_state = 237}, + [11189] = {.lex_state = 266}, + [11190] = {.lex_state = 237}, + [11191] = {.lex_state = 0}, [11192] = {.lex_state = 0}, [11193] = {.lex_state = 0}, [11194] = {.lex_state = 0}, - [11195] = {.lex_state = 151}, + [11195] = {.lex_state = 0}, [11196] = {.lex_state = 0}, [11197] = {.lex_state = 0}, - [11198] = {.lex_state = 0}, - [11199] = {.lex_state = 0}, - [11200] = {.lex_state = 0}, - [11201] = {.lex_state = 237}, + [11198] = {.lex_state = 266}, + [11199] = {.lex_state = 266}, + [11200] = {.lex_state = 237}, + [11201] = {.lex_state = 266}, [11202] = {.lex_state = 0}, - [11203] = {.lex_state = 266}, - [11204] = {.lex_state = 151}, + [11203] = {.lex_state = 0}, + [11204] = {.lex_state = 0}, [11205] = {.lex_state = 266}, - [11206] = {.lex_state = 237}, + [11206] = {.lex_state = 0}, [11207] = {.lex_state = 0}, [11208] = {.lex_state = 0}, [11209] = {.lex_state = 0}, [11210] = {.lex_state = 0}, - [11211] = {.lex_state = 0}, - [11212] = {.lex_state = 266}, - [11213] = {.lex_state = 0}, + [11211] = {.lex_state = 237}, + [11212] = {.lex_state = 0}, + [11213] = {.lex_state = 151}, [11214] = {.lex_state = 0}, [11215] = {.lex_state = 0}, [11216] = {.lex_state = 0}, [11217] = {.lex_state = 0}, [11218] = {.lex_state = 0}, [11219] = {.lex_state = 0}, - [11220] = {.lex_state = 0}, - [11221] = {.lex_state = 0}, - [11222] = {.lex_state = 237}, - [11223] = {.lex_state = 266}, - [11224] = {.lex_state = 237}, - [11225] = {.lex_state = 151}, + [11220] = {.lex_state = 151}, + [11221] = {.lex_state = 151}, + [11222] = {.lex_state = 0}, + [11223] = {.lex_state = 0}, + [11224] = {.lex_state = 0}, + [11225] = {.lex_state = 0}, [11226] = {.lex_state = 0}, [11227] = {.lex_state = 0}, [11228] = {.lex_state = 0}, - [11229] = {.lex_state = 266}, - [11230] = {.lex_state = 237}, + [11229] = {.lex_state = 0}, + [11230] = {.lex_state = 266}, [11231] = {.lex_state = 0}, [11232] = {.lex_state = 0}, [11233] = {.lex_state = 0}, - [11234] = {.lex_state = 0}, - [11235] = {.lex_state = 0}, - [11236] = {.lex_state = 266}, + [11234] = {.lex_state = 266}, + [11235] = {.lex_state = 438}, + [11236] = {.lex_state = 438}, [11237] = {.lex_state = 0}, [11238] = {.lex_state = 0}, - [11239] = {.lex_state = 0}, + [11239] = {.lex_state = 266}, [11240] = {.lex_state = 0}, - [11241] = {.lex_state = 266}, - [11242] = {.lex_state = 0}, - [11243] = {.lex_state = 0}, - [11244] = {.lex_state = 0}, - [11245] = {.lex_state = 151}, + [11241] = {.lex_state = 237}, + [11242] = {.lex_state = 237}, + [11243] = {.lex_state = 266}, + [11244] = {.lex_state = 237}, + [11245] = {.lex_state = 266}, [11246] = {.lex_state = 0}, [11247] = {.lex_state = 0}, - [11248] = {.lex_state = 266}, + [11248] = {.lex_state = 237}, [11249] = {.lex_state = 0}, - [11250] = {.lex_state = 0}, - [11251] = {.lex_state = 0}, + [11250] = {.lex_state = 151}, + [11251] = {.lex_state = 438}, [11252] = {.lex_state = 0}, [11253] = {.lex_state = 0}, [11254] = {.lex_state = 0}, [11255] = {.lex_state = 0}, - [11256] = {.lex_state = 0}, - [11257] = {.lex_state = 0}, - [11258] = {.lex_state = 266}, - [11259] = {.lex_state = 266}, + [11256] = {.lex_state = 237}, + [11257] = {.lex_state = 0, .external_lex_state = 3}, + [11258] = {.lex_state = 237}, + [11259] = {.lex_state = 0}, [11260] = {.lex_state = 0}, - [11261] = {.lex_state = 438}, + [11261] = {.lex_state = 151}, [11262] = {.lex_state = 0}, - [11263] = {.lex_state = 0}, - [11264] = {.lex_state = 0}, + [11263] = {.lex_state = 438}, + [11264] = {.lex_state = 151}, [11265] = {.lex_state = 0}, - [11266] = {.lex_state = 0}, - [11267] = {.lex_state = 0}, - [11268] = {.lex_state = 0}, + [11266] = {.lex_state = 237}, + [11267] = {.lex_state = 237}, + [11268] = {.lex_state = 266}, [11269] = {.lex_state = 0}, [11270] = {.lex_state = 0}, [11271] = {.lex_state = 0}, [11272] = {.lex_state = 0}, [11273] = {.lex_state = 0}, [11274] = {.lex_state = 0}, - [11275] = {.lex_state = 0}, + [11275] = {.lex_state = 266}, [11276] = {.lex_state = 0}, - [11277] = {.lex_state = 0}, - [11278] = {.lex_state = 0}, - [11279] = {.lex_state = 0}, - [11280] = {.lex_state = 237}, - [11281] = {.lex_state = 0}, - [11282] = {.lex_state = 0}, + [11277] = {.lex_state = 151}, + [11278] = {.lex_state = 438}, + [11279] = {.lex_state = 438}, + [11280] = {.lex_state = 438}, + [11281] = {.lex_state = 438}, + [11282] = {.lex_state = 438}, [11283] = {.lex_state = 0}, [11284] = {.lex_state = 438}, - [11285] = {.lex_state = 438}, - [11286] = {.lex_state = 438}, - [11287] = {.lex_state = 438}, - [11288] = {.lex_state = 438}, + [11285] = {.lex_state = 0}, + [11286] = {.lex_state = 0}, + [11287] = {.lex_state = 237}, + [11288] = {.lex_state = 266}, [11289] = {.lex_state = 0}, [11290] = {.lex_state = 438}, - [11291] = {.lex_state = 266}, - [11292] = {.lex_state = 0}, - [11293] = {.lex_state = 266}, - [11294] = {.lex_state = 266}, - [11295] = {.lex_state = 266}, + [11291] = {.lex_state = 0}, + [11292] = {.lex_state = 438}, + [11293] = {.lex_state = 438}, + [11294] = {.lex_state = 438}, + [11295] = {.lex_state = 0}, [11296] = {.lex_state = 438}, - [11297] = {.lex_state = 0}, - [11298] = {.lex_state = 0}, - [11299] = {.lex_state = 438}, + [11297] = {.lex_state = 0, .external_lex_state = 3}, + [11298] = {.lex_state = 438}, + [11299] = {.lex_state = 0}, [11300] = {.lex_state = 438}, [11301] = {.lex_state = 0}, - [11302] = {.lex_state = 438}, - [11303] = {.lex_state = 0, .external_lex_state = 3}, - [11304] = {.lex_state = 438}, + [11302] = {.lex_state = 0}, + [11303] = {.lex_state = 0}, + [11304] = {.lex_state = 0}, [11305] = {.lex_state = 0}, [11306] = {.lex_state = 0}, - [11307] = {.lex_state = 0}, + [11307] = {.lex_state = 266}, [11308] = {.lex_state = 0}, - [11309] = {.lex_state = 0}, + [11309] = {.lex_state = 438}, [11310] = {.lex_state = 438}, - [11311] = {.lex_state = 0}, + [11311] = {.lex_state = 438}, [11312] = {.lex_state = 0}, - [11313] = {.lex_state = 266}, - [11314] = {.lex_state = 266}, - [11315] = {.lex_state = 438}, - [11316] = {.lex_state = 438}, - [11317] = {.lex_state = 438}, + [11313] = {.lex_state = 438}, + [11314] = {.lex_state = 0}, + [11315] = {.lex_state = 0}, + [11316] = {.lex_state = 151}, + [11317] = {.lex_state = 266}, [11318] = {.lex_state = 0}, [11319] = {.lex_state = 438}, [11320] = {.lex_state = 0}, - [11321] = {.lex_state = 266}, - [11322] = {.lex_state = 266}, - [11323] = {.lex_state = 266}, - [11324] = {.lex_state = 0}, - [11325] = {.lex_state = 438}, + [11321] = {.lex_state = 438}, + [11322] = {.lex_state = 0}, + [11323] = {.lex_state = 438}, + [11324] = {.lex_state = 0, .external_lex_state = 3}, + [11325] = {.lex_state = 0}, [11326] = {.lex_state = 0}, - [11327] = {.lex_state = 438}, - [11328] = {.lex_state = 0}, - [11329] = {.lex_state = 438}, - [11330] = {.lex_state = 0, .external_lex_state = 3}, - [11331] = {.lex_state = 0}, + [11327] = {.lex_state = 0}, + [11328] = {.lex_state = 237}, + [11329] = {.lex_state = 0}, + [11330] = {.lex_state = 0}, + [11331] = {.lex_state = 266}, [11332] = {.lex_state = 0}, - [11333] = {.lex_state = 266}, - [11334] = {.lex_state = 0}, - [11335] = {.lex_state = 266}, + [11333] = {.lex_state = 438}, + [11334] = {.lex_state = 438}, + [11335] = {.lex_state = 438}, [11336] = {.lex_state = 0}, - [11337] = {.lex_state = 266}, - [11338] = {.lex_state = 266}, - [11339] = {.lex_state = 438}, - [11340] = {.lex_state = 438}, + [11337] = {.lex_state = 438}, + [11338] = {.lex_state = 0}, + [11339] = {.lex_state = 0}, + [11340] = {.lex_state = 266}, [11341] = {.lex_state = 438}, - [11342] = {.lex_state = 0}, + [11342] = {.lex_state = 266}, [11343] = {.lex_state = 438}, - [11344] = {.lex_state = 438}, - [11345] = {.lex_state = 266}, - [11346] = {.lex_state = 266}, - [11347] = {.lex_state = 438}, + [11344] = {.lex_state = 266}, + [11345] = {.lex_state = 438}, + [11346] = {.lex_state = 0, .external_lex_state = 3}, + [11347] = {.lex_state = 0}, [11348] = {.lex_state = 0}, - [11349] = {.lex_state = 438}, + [11349] = {.lex_state = 0}, [11350] = {.lex_state = 0}, - [11351] = {.lex_state = 438}, - [11352] = {.lex_state = 0, .external_lex_state = 3}, - [11353] = {.lex_state = 333}, - [11354] = {.lex_state = 0}, - [11355] = {.lex_state = 0}, - [11356] = {.lex_state = 266}, + [11351] = {.lex_state = 0}, + [11352] = {.lex_state = 266}, + [11353] = {.lex_state = 237}, + [11354] = {.lex_state = 438}, + [11355] = {.lex_state = 438}, + [11356] = {.lex_state = 438}, [11357] = {.lex_state = 0}, - [11358] = {.lex_state = 266}, + [11358] = {.lex_state = 438}, [11359] = {.lex_state = 0}, - [11360] = {.lex_state = 438}, + [11360] = {.lex_state = 0}, [11361] = {.lex_state = 438}, - [11362] = {.lex_state = 438}, - [11363] = {.lex_state = 0}, - [11364] = {.lex_state = 438}, - [11365] = {.lex_state = 266}, - [11366] = {.lex_state = 266}, - [11367] = {.lex_state = 438}, + [11362] = {.lex_state = 0}, + [11363] = {.lex_state = 438}, + [11364] = {.lex_state = 0}, + [11365] = {.lex_state = 438}, + [11366] = {.lex_state = 0, .external_lex_state = 3}, + [11367] = {.lex_state = 151}, [11368] = {.lex_state = 0}, - [11369] = {.lex_state = 438}, + [11369] = {.lex_state = 235}, [11370] = {.lex_state = 0}, - [11371] = {.lex_state = 438}, - [11372] = {.lex_state = 0, .external_lex_state = 3}, - [11373] = {.lex_state = 266}, - [11374] = {.lex_state = 0}, + [11371] = {.lex_state = 0}, + [11372] = {.lex_state = 266}, + [11373] = {.lex_state = 0}, + [11374] = {.lex_state = 438}, [11375] = {.lex_state = 438}, - [11376] = {.lex_state = 266}, - [11377] = {.lex_state = 0}, - [11378] = {.lex_state = 266}, - [11379] = {.lex_state = 0, .external_lex_state = 3}, - [11380] = {.lex_state = 438}, + [11376] = {.lex_state = 438}, + [11377] = {.lex_state = 266}, + [11378] = {.lex_state = 438}, + [11379] = {.lex_state = 0}, + [11380] = {.lex_state = 0}, [11381] = {.lex_state = 438}, - [11382] = {.lex_state = 438}, - [11383] = {.lex_state = 0}, - [11384] = {.lex_state = 438}, - [11385] = {.lex_state = 237}, - [11386] = {.lex_state = 0}, - [11387] = {.lex_state = 438}, + [11382] = {.lex_state = 0}, + [11383] = {.lex_state = 438}, + [11384] = {.lex_state = 0}, + [11385] = {.lex_state = 438}, + [11386] = {.lex_state = 0, .external_lex_state = 3}, + [11387] = {.lex_state = 266}, [11388] = {.lex_state = 0}, - [11389] = {.lex_state = 438}, + [11389] = {.lex_state = 0}, [11390] = {.lex_state = 0}, - [11391] = {.lex_state = 438}, - [11392] = {.lex_state = 0, .external_lex_state = 3}, - [11393] = {.lex_state = 151}, - [11394] = {.lex_state = 0}, - [11395] = {.lex_state = 333}, - [11396] = {.lex_state = 0}, + [11391] = {.lex_state = 0}, + [11392] = {.lex_state = 266}, + [11393] = {.lex_state = 0}, + [11394] = {.lex_state = 438}, + [11395] = {.lex_state = 438}, + [11396] = {.lex_state = 438}, [11397] = {.lex_state = 0}, - [11398] = {.lex_state = 266}, + [11398] = {.lex_state = 438}, [11399] = {.lex_state = 0}, [11400] = {.lex_state = 438}, - [11401] = {.lex_state = 438}, + [11401] = {.lex_state = 0}, [11402] = {.lex_state = 438}, - [11403] = {.lex_state = 0}, - [11404] = {.lex_state = 438}, + [11403] = {.lex_state = 0, .external_lex_state = 3}, + [11404] = {.lex_state = 0}, [11405] = {.lex_state = 0}, - [11406] = {.lex_state = 438}, - [11407] = {.lex_state = 237}, - [11408] = {.lex_state = 438}, - [11409] = {.lex_state = 0, .external_lex_state = 3}, - [11410] = {.lex_state = 0}, - [11411] = {.lex_state = 0}, + [11406] = {.lex_state = 266}, + [11407] = {.lex_state = 0}, + [11408] = {.lex_state = 266}, + [11409] = {.lex_state = 0}, + [11410] = {.lex_state = 438}, + [11411] = {.lex_state = 438}, [11412] = {.lex_state = 0}, - [11413] = {.lex_state = 0}, - [11414] = {.lex_state = 266}, - [11415] = {.lex_state = 0}, + [11413] = {.lex_state = 438}, + [11414] = {.lex_state = 0}, + [11415] = {.lex_state = 237}, [11416] = {.lex_state = 438}, - [11417] = {.lex_state = 438}, - [11418] = {.lex_state = 0}, - [11419] = {.lex_state = 438}, - [11420] = {.lex_state = 0}, + [11417] = {.lex_state = 0, .external_lex_state = 3}, + [11418] = {.lex_state = 438}, + [11419] = {.lex_state = 0}, + [11420] = {.lex_state = 438}, [11421] = {.lex_state = 438}, [11422] = {.lex_state = 438}, - [11423] = {.lex_state = 0, .external_lex_state = 3}, - [11424] = {.lex_state = 0}, + [11423] = {.lex_state = 438}, + [11424] = {.lex_state = 0, .external_lex_state = 3}, [11425] = {.lex_state = 0}, [11426] = {.lex_state = 438}, [11427] = {.lex_state = 438}, @@ -38161,278 +38238,278 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [11431] = {.lex_state = 0}, [11432] = {.lex_state = 438}, [11433] = {.lex_state = 438}, - [11434] = {.lex_state = 438}, - [11435] = {.lex_state = 438}, - [11436] = {.lex_state = 0, .external_lex_state = 3}, - [11437] = {.lex_state = 0}, - [11438] = {.lex_state = 438}, - [11439] = {.lex_state = 438}, - [11440] = {.lex_state = 0, .external_lex_state = 3}, - [11441] = {.lex_state = 0}, - [11442] = {.lex_state = 438}, - [11443] = {.lex_state = 438}, - [11444] = {.lex_state = 0, .external_lex_state = 3}, - [11445] = {.lex_state = 0}, - [11446] = {.lex_state = 438}, - [11447] = {.lex_state = 438}, - [11448] = {.lex_state = 0, .external_lex_state = 3}, - [11449] = {.lex_state = 0}, - [11450] = {.lex_state = 438}, - [11451] = {.lex_state = 438}, - [11452] = {.lex_state = 0, .external_lex_state = 3}, - [11453] = {.lex_state = 0}, - [11454] = {.lex_state = 438}, - [11455] = {.lex_state = 438}, - [11456] = {.lex_state = 0, .external_lex_state = 3}, - [11457] = {.lex_state = 0}, - [11458] = {.lex_state = 438}, - [11459] = {.lex_state = 438}, - [11460] = {.lex_state = 0, .external_lex_state = 3}, - [11461] = {.lex_state = 0}, - [11462] = {.lex_state = 438}, - [11463] = {.lex_state = 438}, - [11464] = {.lex_state = 0, .external_lex_state = 3}, - [11465] = {.lex_state = 0}, - [11466] = {.lex_state = 438}, - [11467] = {.lex_state = 438}, - [11468] = {.lex_state = 0, .external_lex_state = 3}, - [11469] = {.lex_state = 0}, - [11470] = {.lex_state = 438}, + [11434] = {.lex_state = 0, .external_lex_state = 3}, + [11435] = {.lex_state = 0}, + [11436] = {.lex_state = 438}, + [11437] = {.lex_state = 438}, + [11438] = {.lex_state = 0, .external_lex_state = 3}, + [11439] = {.lex_state = 0}, + [11440] = {.lex_state = 438}, + [11441] = {.lex_state = 438}, + [11442] = {.lex_state = 0, .external_lex_state = 3}, + [11443] = {.lex_state = 0}, + [11444] = {.lex_state = 438}, + [11445] = {.lex_state = 438}, + [11446] = {.lex_state = 0, .external_lex_state = 3}, + [11447] = {.lex_state = 0}, + [11448] = {.lex_state = 438}, + [11449] = {.lex_state = 438}, + [11450] = {.lex_state = 0, .external_lex_state = 3}, + [11451] = {.lex_state = 0}, + [11452] = {.lex_state = 438}, + [11453] = {.lex_state = 438}, + [11454] = {.lex_state = 0, .external_lex_state = 3}, + [11455] = {.lex_state = 0}, + [11456] = {.lex_state = 438}, + [11457] = {.lex_state = 438}, + [11458] = {.lex_state = 0, .external_lex_state = 3}, + [11459] = {.lex_state = 0}, + [11460] = {.lex_state = 438}, + [11461] = {.lex_state = 438}, + [11462] = {.lex_state = 0, .external_lex_state = 3}, + [11463] = {.lex_state = 0}, + [11464] = {.lex_state = 438}, + [11465] = {.lex_state = 438}, + [11466] = {.lex_state = 0, .external_lex_state = 3}, + [11467] = {.lex_state = 0}, + [11468] = {.lex_state = 438}, + [11469] = {.lex_state = 0, .external_lex_state = 3}, + [11470] = {.lex_state = 0}, [11471] = {.lex_state = 438}, - [11472] = {.lex_state = 0, .external_lex_state = 3}, - [11473] = {.lex_state = 0}, - [11474] = {.lex_state = 438}, - [11475] = {.lex_state = 0, .external_lex_state = 3}, - [11476] = {.lex_state = 0}, + [11472] = {.lex_state = 438}, + [11473] = {.lex_state = 438}, + [11474] = {.lex_state = 0}, + [11475] = {.lex_state = 0}, + [11476] = {.lex_state = 438}, [11477] = {.lex_state = 438}, - [11478] = {.lex_state = 438}, - [11479] = {.lex_state = 438}, - [11480] = {.lex_state = 438}, - [11481] = {.lex_state = 266}, - [11482] = {.lex_state = 438}, - [11483] = {.lex_state = 438}, - [11484] = {.lex_state = 266}, - [11485] = {.lex_state = 266}, - [11486] = {.lex_state = 0}, + [11478] = {.lex_state = 266}, + [11479] = {.lex_state = 0}, + [11480] = {.lex_state = 0}, + [11481] = {.lex_state = 237}, + [11482] = {.lex_state = 0}, + [11483] = {.lex_state = 151}, + [11484] = {.lex_state = 0}, + [11485] = {.lex_state = 0}, + [11486] = {.lex_state = 438}, [11487] = {.lex_state = 0}, [11488] = {.lex_state = 0}, [11489] = {.lex_state = 0}, [11490] = {.lex_state = 0}, - [11491] = {.lex_state = 266}, - [11492] = {.lex_state = 0}, - [11493] = {.lex_state = 0}, - [11494] = {.lex_state = 266}, - [11495] = {.lex_state = 438}, - [11496] = {.lex_state = 237}, - [11497] = {.lex_state = 237}, + [11491] = {.lex_state = 0}, + [11492] = {.lex_state = 266}, + [11493] = {.lex_state = 438}, + [11494] = {.lex_state = 438}, + [11495] = {.lex_state = 0}, + [11496] = {.lex_state = 0}, + [11497] = {.lex_state = 266}, [11498] = {.lex_state = 0}, [11499] = {.lex_state = 438}, - [11500] = {.lex_state = 0}, - [11501] = {.lex_state = 0}, - [11502] = {.lex_state = 0}, - [11503] = {.lex_state = 237}, - [11504] = {.lex_state = 237}, + [11500] = {.lex_state = 266}, + [11501] = {.lex_state = 266}, + [11502] = {.lex_state = 266}, + [11503] = {.lex_state = 0}, + [11504] = {.lex_state = 266}, [11505] = {.lex_state = 0}, - [11506] = {.lex_state = 0}, - [11507] = {.lex_state = 438}, + [11506] = {.lex_state = 266}, + [11507] = {.lex_state = 0}, [11508] = {.lex_state = 0}, [11509] = {.lex_state = 0}, - [11510] = {.lex_state = 237}, + [11510] = {.lex_state = 266}, [11511] = {.lex_state = 0}, - [11512] = {.lex_state = 0}, - [11513] = {.lex_state = 0}, + [11512] = {.lex_state = 237}, + [11513] = {.lex_state = 151}, [11514] = {.lex_state = 0}, - [11515] = {.lex_state = 0}, - [11516] = {.lex_state = 0}, + [11515] = {.lex_state = 266}, + [11516] = {.lex_state = 266}, [11517] = {.lex_state = 0}, [11518] = {.lex_state = 0}, - [11519] = {.lex_state = 0}, - [11520] = {.lex_state = 0}, + [11519] = {.lex_state = 0, .external_lex_state = 3}, + [11520] = {.lex_state = 237}, [11521] = {.lex_state = 0}, - [11522] = {.lex_state = 266}, - [11523] = {.lex_state = 0}, + [11522] = {.lex_state = 0}, + [11523] = {.lex_state = 266}, [11524] = {.lex_state = 0}, - [11525] = {.lex_state = 0, .external_lex_state = 3}, - [11526] = {.lex_state = 266}, - [11527] = {.lex_state = 0, .external_lex_state = 2}, - [11528] = {.lex_state = 0}, + [11525] = {.lex_state = 0}, + [11526] = {.lex_state = 0}, + [11527] = {.lex_state = 0}, + [11528] = {.lex_state = 266}, [11529] = {.lex_state = 0}, - [11530] = {.lex_state = 0}, + [11530] = {.lex_state = 237}, [11531] = {.lex_state = 0}, [11532] = {.lex_state = 0}, [11533] = {.lex_state = 151}, [11534] = {.lex_state = 0}, [11535] = {.lex_state = 0}, [11536] = {.lex_state = 0}, - [11537] = {.lex_state = 237}, - [11538] = {.lex_state = 266}, - [11539] = {.lex_state = 438}, + [11537] = {.lex_state = 0}, + [11538] = {.lex_state = 0}, + [11539] = {.lex_state = 0}, [11540] = {.lex_state = 0}, - [11541] = {.lex_state = 237}, - [11542] = {.lex_state = 0}, - [11543] = {.lex_state = 0}, - [11544] = {.lex_state = 0}, + [11541] = {.lex_state = 0}, + [11542] = {.lex_state = 237}, + [11543] = {.lex_state = 237}, + [11544] = {.lex_state = 237}, [11545] = {.lex_state = 0}, [11546] = {.lex_state = 0}, - [11547] = {.lex_state = 0}, + [11547] = {.lex_state = 266}, [11548] = {.lex_state = 0}, [11549] = {.lex_state = 0}, - [11550] = {.lex_state = 0}, - [11551] = {.lex_state = 438}, - [11552] = {.lex_state = 0}, + [11550] = {.lex_state = 266}, + [11551] = {.lex_state = 0}, + [11552] = {.lex_state = 266}, [11553] = {.lex_state = 0}, - [11554] = {.lex_state = 438}, - [11555] = {.lex_state = 0}, - [11556] = {.lex_state = 237}, - [11557] = {.lex_state = 237}, - [11558] = {.lex_state = 266}, + [11554] = {.lex_state = 0}, + [11555] = {.lex_state = 266}, + [11556] = {.lex_state = 0}, + [11557] = {.lex_state = 0}, + [11558] = {.lex_state = 0}, [11559] = {.lex_state = 237}, [11560] = {.lex_state = 0}, - [11561] = {.lex_state = 0}, - [11562] = {.lex_state = 0}, + [11561] = {.lex_state = 237}, + [11562] = {.lex_state = 266}, [11563] = {.lex_state = 266}, - [11564] = {.lex_state = 266}, - [11565] = {.lex_state = 0}, + [11564] = {.lex_state = 237}, + [11565] = {.lex_state = 237}, [11566] = {.lex_state = 0}, [11567] = {.lex_state = 0}, - [11568] = {.lex_state = 438}, - [11569] = {.lex_state = 237}, - [11570] = {.lex_state = 237}, + [11568] = {.lex_state = 0}, + [11569] = {.lex_state = 0}, + [11570] = {.lex_state = 0}, [11571] = {.lex_state = 0}, - [11572] = {.lex_state = 0}, - [11573] = {.lex_state = 0}, + [11572] = {.lex_state = 266}, + [11573] = {.lex_state = 266}, [11574] = {.lex_state = 0}, [11575] = {.lex_state = 0}, - [11576] = {.lex_state = 0}, + [11576] = {.lex_state = 151}, [11577] = {.lex_state = 0}, [11578] = {.lex_state = 0}, [11579] = {.lex_state = 266}, - [11580] = {.lex_state = 266}, - [11581] = {.lex_state = 0}, - [11582] = {.lex_state = 0}, - [11583] = {.lex_state = 0}, - [11584] = {.lex_state = 0}, - [11585] = {.lex_state = 237}, + [11580] = {.lex_state = 0}, + [11581] = {.lex_state = 237}, + [11582] = {.lex_state = 438}, + [11583] = {.lex_state = 438}, + [11584] = {.lex_state = 266}, + [11585] = {.lex_state = 0}, [11586] = {.lex_state = 0}, - [11587] = {.lex_state = 0}, + [11587] = {.lex_state = 266}, [11588] = {.lex_state = 438}, - [11589] = {.lex_state = 438}, + [11589] = {.lex_state = 0}, [11590] = {.lex_state = 266}, - [11591] = {.lex_state = 266}, - [11592] = {.lex_state = 0}, - [11593] = {.lex_state = 266}, - [11594] = {.lex_state = 438}, - [11595] = {.lex_state = 0}, - [11596] = {.lex_state = 266}, - [11597] = {.lex_state = 0, .external_lex_state = 3}, - [11598] = {.lex_state = 0}, + [11591] = {.lex_state = 0, .external_lex_state = 3}, + [11592] = {.lex_state = 266}, + [11593] = {.lex_state = 237}, + [11594] = {.lex_state = 0}, + [11595] = {.lex_state = 237}, + [11596] = {.lex_state = 438}, + [11597] = {.lex_state = 438}, + [11598] = {.lex_state = 266}, [11599] = {.lex_state = 0}, - [11600] = {.lex_state = 266}, + [11600] = {.lex_state = 0}, [11601] = {.lex_state = 0}, [11602] = {.lex_state = 438}, - [11603] = {.lex_state = 438}, - [11604] = {.lex_state = 266}, - [11605] = {.lex_state = 237}, - [11606] = {.lex_state = 237}, + [11603] = {.lex_state = 266}, + [11604] = {.lex_state = 0, .external_lex_state = 3}, + [11605] = {.lex_state = 0}, + [11606] = {.lex_state = 438}, [11607] = {.lex_state = 0}, [11608] = {.lex_state = 438}, [11609] = {.lex_state = 266}, - [11610] = {.lex_state = 0, .external_lex_state = 3}, + [11610] = {.lex_state = 266}, [11611] = {.lex_state = 0}, - [11612] = {.lex_state = 438}, - [11613] = {.lex_state = 0}, - [11614] = {.lex_state = 438}, - [11615] = {.lex_state = 266}, + [11612] = {.lex_state = 0}, + [11613] = {.lex_state = 266}, + [11614] = {.lex_state = 0, .external_lex_state = 3}, + [11615] = {.lex_state = 0}, [11616] = {.lex_state = 0}, - [11617] = {.lex_state = 0}, - [11618] = {.lex_state = 0}, - [11619] = {.lex_state = 266}, - [11620] = {.lex_state = 0, .external_lex_state = 3}, + [11617] = {.lex_state = 438}, + [11618] = {.lex_state = 266}, + [11619] = {.lex_state = 0}, + [11620] = {.lex_state = 0}, [11621] = {.lex_state = 0}, - [11622] = {.lex_state = 438}, - [11623] = {.lex_state = 438}, - [11624] = {.lex_state = 266}, - [11625] = {.lex_state = 0}, - [11626] = {.lex_state = 0}, + [11622] = {.lex_state = 266}, + [11623] = {.lex_state = 0, .external_lex_state = 3}, + [11624] = {.lex_state = 0}, + [11625] = {.lex_state = 438}, + [11626] = {.lex_state = 266}, [11627] = {.lex_state = 0}, - [11628] = {.lex_state = 266}, - [11629] = {.lex_state = 0, .external_lex_state = 3}, - [11630] = {.lex_state = 0}, - [11631] = {.lex_state = 438}, - [11632] = {.lex_state = 266}, + [11628] = {.lex_state = 0}, + [11629] = {.lex_state = 266}, + [11630] = {.lex_state = 0, .external_lex_state = 3}, + [11631] = {.lex_state = 266}, + [11632] = {.lex_state = 0}, [11633] = {.lex_state = 0}, - [11634] = {.lex_state = 0}, - [11635] = {.lex_state = 266}, - [11636] = {.lex_state = 0, .external_lex_state = 3}, - [11637] = {.lex_state = 237}, - [11638] = {.lex_state = 237}, + [11634] = {.lex_state = 266}, + [11635] = {.lex_state = 0, .external_lex_state = 3}, + [11636] = {.lex_state = 0}, + [11637] = {.lex_state = 438}, + [11638] = {.lex_state = 0, .external_lex_state = 3}, [11639] = {.lex_state = 0}, - [11640] = {.lex_state = 266}, - [11641] = {.lex_state = 0, .external_lex_state = 3}, - [11642] = {.lex_state = 0}, - [11643] = {.lex_state = 266}, + [11640] = {.lex_state = 0, .external_lex_state = 3}, + [11641] = {.lex_state = 0}, + [11642] = {.lex_state = 0, .external_lex_state = 3}, + [11643] = {.lex_state = 0}, [11644] = {.lex_state = 0, .external_lex_state = 3}, [11645] = {.lex_state = 266}, [11646] = {.lex_state = 0, .external_lex_state = 3}, - [11647] = {.lex_state = 0}, + [11647] = {.lex_state = 266}, [11648] = {.lex_state = 0, .external_lex_state = 3}, [11649] = {.lex_state = 0}, [11650] = {.lex_state = 0, .external_lex_state = 3}, - [11651] = {.lex_state = 266}, + [11651] = {.lex_state = 0}, [11652] = {.lex_state = 0, .external_lex_state = 3}, - [11653] = {.lex_state = 266}, + [11653] = {.lex_state = 0}, [11654] = {.lex_state = 0, .external_lex_state = 3}, [11655] = {.lex_state = 0}, [11656] = {.lex_state = 0, .external_lex_state = 3}, - [11657] = {.lex_state = 438}, + [11657] = {.lex_state = 0}, [11658] = {.lex_state = 0, .external_lex_state = 3}, [11659] = {.lex_state = 0}, [11660] = {.lex_state = 0, .external_lex_state = 3}, - [11661] = {.lex_state = 266}, + [11661] = {.lex_state = 0}, [11662] = {.lex_state = 0, .external_lex_state = 3}, [11663] = {.lex_state = 0}, - [11664] = {.lex_state = 0, .external_lex_state = 3}, - [11665] = {.lex_state = 237}, - [11666] = {.lex_state = 0, .external_lex_state = 3}, - [11667] = {.lex_state = 0}, - [11668] = {.lex_state = 0, .external_lex_state = 3}, + [11664] = {.lex_state = 266}, + [11665] = {.lex_state = 0}, + [11666] = {.lex_state = 0}, + [11667] = {.lex_state = 438}, + [11668] = {.lex_state = 0}, [11669] = {.lex_state = 0}, - [11670] = {.lex_state = 237}, + [11670] = {.lex_state = 0}, [11671] = {.lex_state = 0}, [11672] = {.lex_state = 0}, - [11673] = {.lex_state = 438}, - [11674] = {.lex_state = 266}, - [11675] = {.lex_state = 266}, - [11676] = {.lex_state = 0}, + [11673] = {.lex_state = 0}, + [11674] = {.lex_state = 237}, + [11675] = {.lex_state = 0}, + [11676] = {.lex_state = 438}, [11677] = {.lex_state = 0}, [11678] = {.lex_state = 0}, [11679] = {.lex_state = 0}, - [11680] = {.lex_state = 0}, - [11681] = {.lex_state = 0}, + [11680] = {.lex_state = 266}, + [11681] = {.lex_state = 266}, [11682] = {.lex_state = 438}, - [11683] = {.lex_state = 0}, + [11683] = {.lex_state = 438}, [11684] = {.lex_state = 266}, - [11685] = {.lex_state = 0}, + [11685] = {.lex_state = 438}, [11686] = {.lex_state = 438}, - [11687] = {.lex_state = 266}, + [11687] = {.lex_state = 0}, [11688] = {.lex_state = 438}, [11689] = {.lex_state = 438}, - [11690] = {.lex_state = 0}, + [11690] = {.lex_state = 237}, [11691] = {.lex_state = 438}, [11692] = {.lex_state = 438}, - [11693] = {.lex_state = 266}, + [11693] = {.lex_state = 0}, [11694] = {.lex_state = 438}, [11695] = {.lex_state = 438}, - [11696] = {.lex_state = 0}, + [11696] = {.lex_state = 151}, [11697] = {.lex_state = 438}, [11698] = {.lex_state = 438}, - [11699] = {.lex_state = 266}, + [11699] = {.lex_state = 237}, [11700] = {.lex_state = 438}, [11701] = {.lex_state = 438}, - [11702] = {.lex_state = 0}, + [11702] = {.lex_state = 438}, [11703] = {.lex_state = 438}, [11704] = {.lex_state = 438}, - [11705] = {.lex_state = 237}, + [11705] = {.lex_state = 438}, [11706] = {.lex_state = 438}, [11707] = {.lex_state = 438}, [11708] = {.lex_state = 438}, @@ -38440,27 +38517,21 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [11710] = {.lex_state = 438}, [11711] = {.lex_state = 438}, [11712] = {.lex_state = 438}, - [11713] = {.lex_state = 438}, - [11714] = {.lex_state = 438}, + [11713] = {.lex_state = 0}, + [11714] = {.lex_state = 0}, [11715] = {.lex_state = 438}, - [11716] = {.lex_state = 438}, - [11717] = {.lex_state = 438}, - [11718] = {.lex_state = 438}, - [11719] = {.lex_state = 0}, - [11720] = {.lex_state = 0}, - [11721] = {.lex_state = 0}, + [11716] = {.lex_state = 266}, + [11717] = {.lex_state = 0}, + [11718] = {.lex_state = 0}, + [11719] = {.lex_state = 237}, + [11720] = {.lex_state = 438}, + [11721] = {.lex_state = 438}, [11722] = {.lex_state = 438}, - [11723] = {.lex_state = 151}, - [11724] = {.lex_state = 0}, - [11725] = {.lex_state = 0}, + [11723] = {.lex_state = 438}, + [11724] = {.lex_state = 438}, + [11725] = {.lex_state = 438}, [11726] = {.lex_state = 438}, - [11727] = {.lex_state = 438}, - [11728] = {.lex_state = 438}, - [11729] = {.lex_state = 438}, - [11730] = {.lex_state = 438}, - [11731] = {.lex_state = 438}, - [11732] = {.lex_state = 438}, - [11733] = {.lex_state = 0}, + [11727] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -38681,143 +38752,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_content] = ACTIONS(1), }, [STATE(1)] = { - [sym_translation_unit] = STATE(10650), - [sym__top_level_item] = STATE(114), - [sym_preproc_include] = STATE(114), - [sym_preproc_def] = STATE(114), - [sym_preproc_function_def] = STATE(114), - [sym_preproc_call] = STATE(114), - [sym_preproc_if] = STATE(114), - [sym_preproc_ifdef] = STATE(114), - [sym_function_definition] = STATE(114), - [sym_declaration] = STATE(114), - [sym_type_definition] = STATE(114), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6385), - [sym_linkage_specification] = STATE(114), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2684), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8772), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(114), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4545), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(957), - [sym__top_level_statement] = STATE(114), - [sym_labeled_statement] = STATE(114), - [sym__top_level_expression_statement] = STATE(114), - [sym_if_statement] = STATE(114), - [sym_switch_statement] = STATE(114), - [sym_case_statement] = STATE(114), - [sym_while_statement] = STATE(114), - [sym_do_statement] = STATE(114), - [sym_for_statement] = STATE(114), - [sym_return_statement] = STATE(114), - [sym_break_statement] = STATE(114), - [sym_continue_statement] = STATE(114), - [sym_goto_statement] = STATE(114), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7205), - [sym_conditional_expression] = STATE(7419), - [sym_assignment_expression] = STATE(7419), - [sym_pointer_expression] = STATE(6003), - [sym_unary_expression] = STATE(7419), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7419), - [sym_cast_expression] = STATE(7419), - [sym_sizeof_expression] = STATE(7419), - [sym_alignof_expression] = STATE(7419), - [sym_offsetof_expression] = STATE(7419), - [sym_generic_expression] = STATE(7419), - [sym_subscript_expression] = STATE(6003), - [sym_call_expression] = STATE(6003), - [sym_gnu_asm_expression] = STATE(7419), - [sym_extension_expression] = STATE(7419), - [sym_field_expression] = STATE(6003), - [sym_compound_literal_expression] = STATE(7419), - [sym_parenthesized_expression] = STATE(6003), - [sym_char_literal] = STATE(7205), - [sym_concatenated_string] = STATE(7205), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7419), - [sym__empty_declaration] = STATE(114), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2437), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(114), - [sym_export_declaration] = STATE(114), - [sym_import_declaration] = STATE(114), - [sym_global_module_fragment_declaration] = STATE(114), - [sym_private_module_fragment_declaration] = STATE(114), - [sym_template_declaration] = STATE(114), - [sym_template_instantiation] = STATE(114), - [sym_operator_cast] = STATE(9265), - [sym__constructor_specifiers] = STATE(2437), - [sym_operator_cast_definition] = STATE(114), - [sym_operator_cast_declaration] = STATE(114), - [sym_constructor_or_destructor_definition] = STATE(114), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7311), - [sym_namespace_definition] = STATE(114), - [sym_namespace_alias_definition] = STATE(114), - [sym_using_declaration] = STATE(114), - [sym_alias_declaration] = STATE(114), - [sym_static_assert_declaration] = STATE(114), - [sym_consteval_block_declaration] = STATE(114), - [sym_concept_definition] = STATE(114), - [sym_for_range_loop] = STATE(114), - [sym_co_return_statement] = STATE(114), - [sym_co_yield_statement] = STATE(114), - [sym_throw_statement] = STATE(114), - [sym_try_statement] = STATE(114), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7419), - [sym_new_expression] = STATE(7419), - [sym_delete_expression] = STATE(7419), - [sym_requires_clause] = STATE(7419), - [sym_requires_expression] = STATE(7419), - [sym_lambda_expression] = STATE(7419), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7419), - [sym_parameter_pack_expansion] = STATE(7419), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5885), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9265), - [sym_reflect_expression] = STATE(7419), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7314), - [sym_expansion_statement] = STATE(114), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(6003), - [aux_sym_translation_unit_repeat1] = STATE(114), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(184), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2437), + [sym_translation_unit] = STATE(11498), + [sym__top_level_item] = STATE(119), + [sym_preproc_include] = STATE(119), + [sym_preproc_def] = STATE(119), + [sym_preproc_function_def] = STATE(119), + [sym_preproc_call] = STATE(119), + [sym_preproc_if] = STATE(119), + [sym_preproc_ifdef] = STATE(119), + [sym_function_definition] = STATE(119), + [sym_declaration] = STATE(119), + [sym_type_definition] = STATE(119), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6408), + [sym_linkage_specification] = STATE(119), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2708), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8793), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(119), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4507), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(883), + [sym__top_level_statement] = STATE(119), + [sym_labeled_statement] = STATE(119), + [sym__top_level_expression_statement] = STATE(119), + [sym_if_statement] = STATE(119), + [sym_switch_statement] = STATE(119), + [sym_case_statement] = STATE(119), + [sym_while_statement] = STATE(119), + [sym_do_statement] = STATE(119), + [sym_for_statement] = STATE(119), + [sym_return_statement] = STATE(119), + [sym_break_statement] = STATE(119), + [sym_continue_statement] = STATE(119), + [sym_goto_statement] = STATE(119), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7291), + [sym_conditional_expression] = STATE(7480), + [sym_assignment_expression] = STATE(7480), + [sym_pointer_expression] = STATE(6018), + [sym_unary_expression] = STATE(7480), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7480), + [sym_cast_expression] = STATE(7480), + [sym_sizeof_expression] = STATE(7480), + [sym_alignof_expression] = STATE(7480), + [sym_offsetof_expression] = STATE(7480), + [sym_generic_expression] = STATE(7480), + [sym_subscript_expression] = STATE(6018), + [sym_call_expression] = STATE(6018), + [sym_gnu_asm_expression] = STATE(7480), + [sym_extension_expression] = STATE(7480), + [sym_field_expression] = STATE(6018), + [sym_compound_literal_expression] = STATE(7480), + [sym_parenthesized_expression] = STATE(6018), + [sym_char_literal] = STATE(7291), + [sym_concatenated_string] = STATE(7291), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7480), + [sym__empty_declaration] = STATE(119), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2482), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(119), + [sym_export_declaration] = STATE(119), + [sym_import_declaration] = STATE(119), + [sym_global_module_fragment_declaration] = STATE(119), + [sym_private_module_fragment_declaration] = STATE(119), + [sym_template_declaration] = STATE(119), + [sym_template_instantiation] = STATE(119), + [sym_operator_cast] = STATE(9161), + [sym__constructor_specifiers] = STATE(2482), + [sym_operator_cast_definition] = STATE(119), + [sym_operator_cast_declaration] = STATE(119), + [sym_constructor_or_destructor_definition] = STATE(119), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7222), + [sym_namespace_definition] = STATE(119), + [sym_namespace_alias_definition] = STATE(119), + [sym_using_declaration] = STATE(119), + [sym_alias_declaration] = STATE(119), + [sym_static_assert_declaration] = STATE(119), + [sym_consteval_block_declaration] = STATE(119), + [sym_concept_definition] = STATE(119), + [sym_for_range_loop] = STATE(119), + [sym_co_return_statement] = STATE(119), + [sym_co_yield_statement] = STATE(119), + [sym_throw_statement] = STATE(119), + [sym_try_statement] = STATE(119), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7480), + [sym_new_expression] = STATE(7480), + [sym_delete_expression] = STATE(7480), + [sym_requires_clause] = STATE(7480), + [sym_requires_expression] = STATE(7480), + [sym_lambda_expression] = STATE(7480), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7480), + [sym_parameter_pack_expansion] = STATE(7480), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5897), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9161), + [sym_reflect_expression] = STATE(7480), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7285), + [sym_expansion_statement] = STATE(119), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(6018), + [aux_sym_translation_unit_repeat1] = STATE(119), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2482), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [aux_sym_preproc_include_token1] = ACTIONS(9), @@ -38957,148 +39028,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(125), }, [STATE(2)] = { - [sym__block_item] = STATE(68), - [sym_preproc_include] = STATE(68), - [sym_preproc_def] = STATE(68), - [sym_preproc_function_def] = STATE(68), - [sym_preproc_call] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(68), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(68), - [sym_preproc_if_in_block] = STATE(68), - [sym_preproc_ifdef_in_block] = STATE(68), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(68), - [sym_import_declaration] = STATE(68), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(64), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(64), + [sym_preproc_if_in_block] = STATE(64), + [sym_preproc_ifdef_in_block] = STATE(64), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(64), + [sym_import_declaration] = STATE(64), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(68), - [sym_concept_definition] = STATE(68), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(68), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [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_consteval_block_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(64), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -39249,97 +39320,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(107), [sym_declaration] = STATE(107), [sym_type_definition] = STATE(107), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(107), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(107), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(107), [sym_preproc_if_in_block] = STATE(107), [sym_preproc_ifdef_in_block] = STATE(107), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(107), [sym_import_declaration] = STATE(107), [sym_template_declaration] = STATE(107), [sym_template_instantiation] = STATE(107), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(107), [sym_operator_cast_declaration] = STATE(107), [sym_constructor_or_destructor_definition] = STATE(107), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(107), [sym_namespace_alias_definition] = STATE(107), @@ -39348,41 +39419,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(107), [sym_consteval_block_declaration] = STATE(107), [sym_concept_definition] = STATE(107), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(107), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -39533,97 +39604,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(55), [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(55), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(55), [sym_preproc_if_in_block] = STATE(55), [sym_preproc_ifdef_in_block] = STATE(55), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(55), [sym_import_declaration] = STATE(55), [sym_template_declaration] = STATE(55), [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(55), [sym_operator_cast_declaration] = STATE(55), [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(55), [sym_namespace_alias_definition] = STATE(55), @@ -39632,41 +39703,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(55), [sym_consteval_block_declaration] = STATE(55), [sym_concept_definition] = STATE(55), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(55), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -39817,97 +39888,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(55), [sym_declaration] = STATE(55), [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(55), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(55), [sym_preproc_if_in_block] = STATE(55), [sym_preproc_ifdef_in_block] = STATE(55), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(55), [sym_import_declaration] = STATE(55), [sym_template_declaration] = STATE(55), [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(55), [sym_operator_cast_declaration] = STATE(55), [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(55), [sym_namespace_alias_definition] = STATE(55), @@ -39916,41 +39987,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(55), [sym_consteval_block_declaration] = STATE(55), [sym_concept_definition] = STATE(55), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(55), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40093,148 +40164,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(6)] = { - [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_function_definition] = STATE(74), - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(74), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(74), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(74), - [sym_preproc_if_in_block] = STATE(74), - [sym_preproc_ifdef_in_block] = STATE(74), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(74), - [sym_import_declaration] = STATE(74), - [sym_template_declaration] = STATE(74), - [sym_template_instantiation] = STATE(74), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(74), - [sym_operator_cast_declaration] = STATE(74), - [sym_constructor_or_destructor_definition] = STATE(74), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(111), + [sym_preproc_include] = STATE(111), + [sym_preproc_def] = STATE(111), + [sym_preproc_function_def] = STATE(111), + [sym_preproc_call] = STATE(111), + [sym_function_definition] = STATE(111), + [sym_declaration] = STATE(111), + [sym_type_definition] = STATE(111), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(111), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(111), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(111), + [sym_preproc_if_in_block] = STATE(111), + [sym_preproc_ifdef_in_block] = STATE(111), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(111), + [sym_import_declaration] = STATE(111), + [sym_template_declaration] = STATE(111), + [sym_template_instantiation] = STATE(111), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(111), + [sym_operator_cast_declaration] = STATE(111), + [sym_constructor_or_destructor_definition] = STATE(111), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(74), - [sym_concept_definition] = STATE(74), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(74), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_namespace_definition] = STATE(111), + [sym_namespace_alias_definition] = STATE(111), + [sym_using_declaration] = STATE(111), + [sym_alias_declaration] = STATE(111), + [sym_static_assert_declaration] = STATE(111), + [sym_consteval_block_declaration] = STATE(111), + [sym_concept_definition] = STATE(111), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(111), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40377,148 +40448,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(7)] = { - [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_function_definition] = STATE(79), - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(79), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(79), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(79), - [sym_preproc_if_in_block] = STATE(79), - [sym_preproc_ifdef_in_block] = STATE(79), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(79), - [sym_import_declaration] = STATE(79), - [sym_template_declaration] = STATE(79), - [sym_template_instantiation] = STATE(79), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(79), - [sym_operator_cast_declaration] = STATE(79), - [sym_constructor_or_destructor_definition] = STATE(79), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(52), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(52), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(52), + [sym_preproc_if_in_block] = STATE(52), + [sym_preproc_ifdef_in_block] = STATE(52), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(52), + [sym_import_declaration] = STATE(52), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(79), - [sym_concept_definition] = STATE(79), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(79), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_consteval_block_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(52), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40661,148 +40732,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(8)] = { - [sym__block_item] = STATE(89), - [sym_preproc_include] = STATE(89), - [sym_preproc_def] = STATE(89), - [sym_preproc_function_def] = STATE(89), - [sym_preproc_call] = STATE(89), - [sym_function_definition] = STATE(89), - [sym_declaration] = STATE(89), - [sym_type_definition] = STATE(89), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(89), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(89), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(89), - [sym_preproc_if_in_block] = STATE(89), - [sym_preproc_ifdef_in_block] = STATE(89), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(89), - [sym_import_declaration] = STATE(89), - [sym_template_declaration] = STATE(89), - [sym_template_instantiation] = STATE(89), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(89), - [sym_operator_cast_declaration] = STATE(89), - [sym_constructor_or_destructor_definition] = STATE(89), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(88), + [sym_preproc_include] = STATE(88), + [sym_preproc_def] = STATE(88), + [sym_preproc_function_def] = STATE(88), + [sym_preproc_call] = STATE(88), + [sym_function_definition] = STATE(88), + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(88), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(88), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(88), + [sym_preproc_if_in_block] = STATE(88), + [sym_preproc_ifdef_in_block] = STATE(88), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(88), + [sym_import_declaration] = STATE(88), + [sym_template_declaration] = STATE(88), + [sym_template_instantiation] = STATE(88), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(88), + [sym_operator_cast_declaration] = STATE(88), + [sym_constructor_or_destructor_definition] = STATE(88), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(89), - [sym_namespace_alias_definition] = STATE(89), - [sym_using_declaration] = STATE(89), - [sym_alias_declaration] = STATE(89), - [sym_static_assert_declaration] = STATE(89), - [sym_consteval_block_declaration] = STATE(89), - [sym_concept_definition] = STATE(89), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(89), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_namespace_definition] = STATE(88), + [sym_namespace_alias_definition] = STATE(88), + [sym_using_declaration] = STATE(88), + [sym_alias_declaration] = STATE(88), + [sym_static_assert_declaration] = STATE(88), + [sym_consteval_block_declaration] = STATE(88), + [sym_concept_definition] = STATE(88), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(88), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -40945,148 +41016,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(9)] = { - [sym__block_item] = STATE(87), - [sym_preproc_include] = STATE(87), - [sym_preproc_def] = STATE(87), - [sym_preproc_function_def] = STATE(87), - [sym_preproc_call] = STATE(87), - [sym_function_definition] = STATE(87), - [sym_declaration] = STATE(87), - [sym_type_definition] = STATE(87), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(87), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(87), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(87), - [sym_preproc_if_in_block] = STATE(87), - [sym_preproc_ifdef_in_block] = STATE(87), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(87), - [sym_import_declaration] = STATE(87), - [sym_template_declaration] = STATE(87), - [sym_template_instantiation] = STATE(87), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(87), - [sym_operator_cast_declaration] = STATE(87), - [sym_constructor_or_destructor_definition] = STATE(87), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(86), + [sym_preproc_include] = STATE(86), + [sym_preproc_def] = STATE(86), + [sym_preproc_function_def] = STATE(86), + [sym_preproc_call] = STATE(86), + [sym_function_definition] = STATE(86), + [sym_declaration] = STATE(86), + [sym_type_definition] = STATE(86), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(86), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(86), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(86), + [sym_preproc_if_in_block] = STATE(86), + [sym_preproc_ifdef_in_block] = STATE(86), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(86), + [sym_import_declaration] = STATE(86), + [sym_template_declaration] = STATE(86), + [sym_template_instantiation] = STATE(86), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(86), + [sym_operator_cast_declaration] = STATE(86), + [sym_constructor_or_destructor_definition] = STATE(86), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(87), - [sym_namespace_alias_definition] = STATE(87), - [sym_using_declaration] = STATE(87), - [sym_alias_declaration] = STATE(87), - [sym_static_assert_declaration] = STATE(87), - [sym_consteval_block_declaration] = STATE(87), - [sym_concept_definition] = STATE(87), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(87), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_namespace_definition] = STATE(86), + [sym_namespace_alias_definition] = STATE(86), + [sym_using_declaration] = STATE(86), + [sym_alias_declaration] = STATE(86), + [sym_static_assert_declaration] = STATE(86), + [sym_consteval_block_declaration] = STATE(86), + [sym_concept_definition] = STATE(86), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(86), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -41229,148 +41300,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(10)] = { - [sym__block_item] = STATE(89), - [sym_preproc_include] = STATE(89), - [sym_preproc_def] = STATE(89), - [sym_preproc_function_def] = STATE(89), - [sym_preproc_call] = STATE(89), - [sym_function_definition] = STATE(89), - [sym_declaration] = STATE(89), - [sym_type_definition] = STATE(89), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(89), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(89), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(89), - [sym_preproc_if_in_block] = STATE(89), - [sym_preproc_ifdef_in_block] = STATE(89), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(89), - [sym_import_declaration] = STATE(89), - [sym_template_declaration] = STATE(89), - [sym_template_instantiation] = STATE(89), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(89), - [sym_operator_cast_declaration] = STATE(89), - [sym_constructor_or_destructor_definition] = STATE(89), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(88), + [sym_preproc_include] = STATE(88), + [sym_preproc_def] = STATE(88), + [sym_preproc_function_def] = STATE(88), + [sym_preproc_call] = STATE(88), + [sym_function_definition] = STATE(88), + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(88), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(88), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(88), + [sym_preproc_if_in_block] = STATE(88), + [sym_preproc_ifdef_in_block] = STATE(88), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(88), + [sym_import_declaration] = STATE(88), + [sym_template_declaration] = STATE(88), + [sym_template_instantiation] = STATE(88), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(88), + [sym_operator_cast_declaration] = STATE(88), + [sym_constructor_or_destructor_definition] = STATE(88), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(89), - [sym_namespace_alias_definition] = STATE(89), - [sym_using_declaration] = STATE(89), - [sym_alias_declaration] = STATE(89), - [sym_static_assert_declaration] = STATE(89), - [sym_consteval_block_declaration] = STATE(89), - [sym_concept_definition] = STATE(89), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(89), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_namespace_definition] = STATE(88), + [sym_namespace_alias_definition] = STATE(88), + [sym_using_declaration] = STATE(88), + [sym_alias_declaration] = STATE(88), + [sym_static_assert_declaration] = STATE(88), + [sym_consteval_block_declaration] = STATE(88), + [sym_concept_definition] = STATE(88), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(88), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -41521,97 +41592,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(107), [sym_declaration] = STATE(107), [sym_type_definition] = STATE(107), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(107), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(107), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(107), [sym_preproc_if_in_block] = STATE(107), [sym_preproc_ifdef_in_block] = STATE(107), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(107), [sym_import_declaration] = STATE(107), [sym_template_declaration] = STATE(107), [sym_template_instantiation] = STATE(107), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(107), [sym_operator_cast_declaration] = STATE(107), [sym_constructor_or_destructor_definition] = STATE(107), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(107), [sym_namespace_alias_definition] = STATE(107), @@ -41620,41 +41691,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(107), [sym_consteval_block_declaration] = STATE(107), [sym_concept_definition] = STATE(107), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(107), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -41797,148 +41868,148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(12)] = { - [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_function_definition] = STATE(79), - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(79), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(79), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6529), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(79), - [sym_preproc_if_in_block] = STATE(79), - [sym_preproc_ifdef_in_block] = STATE(79), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(79), - [sym_import_declaration] = STATE(79), - [sym_template_declaration] = STATE(79), - [sym_template_instantiation] = STATE(79), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(79), - [sym_operator_cast_declaration] = STATE(79), - [sym_constructor_or_destructor_definition] = STATE(79), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(52), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(52), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6549), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(52), + [sym_preproc_if_in_block] = STATE(52), + [sym_preproc_ifdef_in_block] = STATE(52), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(52), + [sym_import_declaration] = STATE(52), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(79), - [sym_concept_definition] = STATE(79), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(79), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_consteval_block_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(52), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), @@ -42089,95 +42160,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(29), [sym_declaration] = STATE(29), [sym_type_definition] = STATE(29), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(29), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(29), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(29), [sym_preproc_if_in_block] = STATE(29), [sym_preproc_ifdef_in_block] = STATE(29), - [sym_preproc_else_in_block] = STATE(11510), - [sym_preproc_elif_in_block] = STATE(11510), - [sym_preproc_elifdef_in_block] = STATE(11510), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(11242), + [sym_preproc_elif_in_block] = STATE(11242), + [sym_preproc_elifdef_in_block] = STATE(11242), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(29), [sym_import_declaration] = STATE(29), [sym_template_declaration] = STATE(29), [sym_template_instantiation] = STATE(29), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(29), [sym_operator_cast_declaration] = STATE(29), [sym_constructor_or_destructor_definition] = STATE(29), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(29), [sym_namespace_alias_definition] = STATE(29), @@ -42186,40 +42257,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(29), [sym_consteval_block_declaration] = STATE(29), [sym_concept_definition] = STATE(29), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(29), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -42372,95 +42443,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(16), [sym_declaration] = STATE(16), [sym_type_definition] = STATE(16), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(16), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(16), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(16), [sym_preproc_if_in_block] = STATE(16), [sym_preproc_ifdef_in_block] = STATE(16), - [sym_preproc_else_in_block] = STATE(11606), - [sym_preproc_elif_in_block] = STATE(11606), - [sym_preproc_elifdef_in_block] = STATE(11606), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(11520), + [sym_preproc_elif_in_block] = STATE(11520), + [sym_preproc_elifdef_in_block] = STATE(11520), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(16), [sym_import_declaration] = STATE(16), [sym_template_declaration] = STATE(16), [sym_template_instantiation] = STATE(16), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(16), [sym_operator_cast_declaration] = STATE(16), [sym_constructor_or_destructor_definition] = STATE(16), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(16), [sym_namespace_alias_definition] = STATE(16), @@ -42469,40 +42540,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(16), [sym_consteval_block_declaration] = STATE(16), [sym_concept_definition] = STATE(16), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(16), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -42655,95 +42726,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(17), [sym_declaration] = STATE(17), [sym_type_definition] = STATE(17), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(17), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(17), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(17), [sym_preproc_if_in_block] = STATE(17), [sym_preproc_ifdef_in_block] = STATE(17), - [sym_preproc_else_in_block] = STATE(10722), - [sym_preproc_elif_in_block] = STATE(10722), - [sym_preproc_elifdef_in_block] = STATE(10722), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(11544), + [sym_preproc_elif_in_block] = STATE(11544), + [sym_preproc_elifdef_in_block] = STATE(11544), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(17), [sym_import_declaration] = STATE(17), [sym_template_declaration] = STATE(17), [sym_template_instantiation] = STATE(17), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(17), [sym_operator_cast_declaration] = STATE(17), [sym_constructor_or_destructor_definition] = STATE(17), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(17), [sym_namespace_alias_definition] = STATE(17), @@ -42752,40 +42823,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(17), [sym_consteval_block_declaration] = STATE(17), [sym_concept_definition] = STATE(17), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(17), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -42938,95 +43009,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(49), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(49), [sym_preproc_if_in_block] = STATE(49), [sym_preproc_ifdef_in_block] = STATE(49), - [sym_preproc_else_in_block] = STATE(11067), - [sym_preproc_elif_in_block] = STATE(11067), - [sym_preproc_elifdef_in_block] = STATE(11067), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(11690), + [sym_preproc_elif_in_block] = STATE(11690), + [sym_preproc_elifdef_in_block] = STATE(11690), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(49), [sym_import_declaration] = STATE(49), [sym_template_declaration] = STATE(49), [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(49), [sym_operator_cast_declaration] = STATE(49), [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), @@ -43035,40 +43106,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(49), [sym_consteval_block_declaration] = STATE(49), [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -43221,95 +43292,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(49), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(49), [sym_preproc_if_in_block] = STATE(49), [sym_preproc_ifdef_in_block] = STATE(49), - [sym_preproc_else_in_block] = STATE(11407), - [sym_preproc_elif_in_block] = STATE(11407), - [sym_preproc_elifdef_in_block] = STATE(11407), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(11328), + [sym_preproc_elif_in_block] = STATE(11328), + [sym_preproc_elifdef_in_block] = STATE(11328), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(49), [sym_import_declaration] = STATE(49), [sym_template_declaration] = STATE(49), [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(49), [sym_operator_cast_declaration] = STATE(49), [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), @@ -43318,40 +43389,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(49), [sym_consteval_block_declaration] = STATE(49), [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -43496,145 +43567,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(18)] = { - [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_function_definition] = STATE(30), - [sym_declaration] = STATE(30), - [sym_type_definition] = STATE(30), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(30), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), - [sym_statement] = STATE(30), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(30), - [sym_preproc_if_in_block] = STATE(30), - [sym_preproc_ifdef_in_block] = STATE(30), - [sym_preproc_else_in_block] = STATE(11206), - [sym_preproc_elif_in_block] = STATE(11206), - [sym_preproc_elifdef_in_block] = STATE(11206), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(30), - [sym_import_declaration] = STATE(30), - [sym_template_declaration] = STATE(30), - [sym_template_instantiation] = STATE(30), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(30), - [sym_operator_cast_declaration] = STATE(30), - [sym_constructor_or_destructor_definition] = STATE(30), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(31), + [sym_preproc_include] = STATE(31), + [sym_preproc_def] = STATE(31), + [sym_preproc_function_def] = STATE(31), + [sym_preproc_call] = STATE(31), + [sym_function_definition] = STATE(31), + [sym_declaration] = STATE(31), + [sym_type_definition] = STATE(31), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(31), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), + [sym_statement] = STATE(31), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(31), + [sym_preproc_if_in_block] = STATE(31), + [sym_preproc_ifdef_in_block] = STATE(31), + [sym_preproc_else_in_block] = STATE(11267), + [sym_preproc_elif_in_block] = STATE(11267), + [sym_preproc_elifdef_in_block] = STATE(11267), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(31), + [sym_import_declaration] = STATE(31), + [sym_template_declaration] = STATE(31), + [sym_template_instantiation] = STATE(31), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(31), + [sym_operator_cast_declaration] = STATE(31), + [sym_constructor_or_destructor_definition] = STATE(31), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(30), - [sym_concept_definition] = STATE(30), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(30), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [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_consteval_block_declaration] = STATE(31), + [sym_concept_definition] = STATE(31), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(31), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -43787,95 +43858,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(21), [sym_declaration] = STATE(21), [sym_type_definition] = STATE(21), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(21), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(21), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(21), [sym_preproc_if_in_block] = STATE(21), [sym_preproc_ifdef_in_block] = STATE(21), - [sym_preproc_else_in_block] = STATE(10821), - [sym_preproc_elif_in_block] = STATE(10821), - [sym_preproc_elifdef_in_block] = STATE(10821), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(10845), + [sym_preproc_elif_in_block] = STATE(10845), + [sym_preproc_elifdef_in_block] = STATE(10845), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(21), [sym_import_declaration] = STATE(21), [sym_template_declaration] = STATE(21), [sym_template_instantiation] = STATE(21), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(21), [sym_operator_cast_declaration] = STATE(21), [sym_constructor_or_destructor_definition] = STATE(21), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(21), [sym_namespace_alias_definition] = STATE(21), @@ -43884,40 +43955,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(21), [sym_consteval_block_declaration] = STATE(21), [sym_concept_definition] = STATE(21), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(21), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -44062,145 +44133,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(20)] = { - [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_function_definition] = STATE(32), - [sym_declaration] = STATE(32), - [sym_type_definition] = STATE(32), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(32), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), - [sym_statement] = STATE(32), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(32), - [sym_preproc_if_in_block] = STATE(32), - [sym_preproc_ifdef_in_block] = STATE(32), - [sym_preproc_else_in_block] = STATE(10630), - [sym_preproc_elif_in_block] = STATE(10630), - [sym_preproc_elifdef_in_block] = STATE(10630), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(32), - [sym_import_declaration] = STATE(32), - [sym_template_declaration] = STATE(32), - [sym_template_instantiation] = STATE(32), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(32), - [sym_operator_cast_declaration] = STATE(32), - [sym_constructor_or_destructor_definition] = STATE(32), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(22), + [sym_declaration] = STATE(22), + [sym_type_definition] = STATE(22), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(22), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), + [sym_statement] = STATE(22), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(22), + [sym_preproc_if_in_block] = STATE(22), + [sym_preproc_ifdef_in_block] = STATE(22), + [sym_preproc_else_in_block] = STATE(10703), + [sym_preproc_elif_in_block] = STATE(10703), + [sym_preproc_elifdef_in_block] = STATE(10703), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(22), + [sym_import_declaration] = STATE(22), + [sym_template_declaration] = STATE(22), + [sym_template_instantiation] = STATE(22), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(22), + [sym_operator_cast_declaration] = STATE(22), + [sym_constructor_or_destructor_definition] = STATE(22), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(32), - [sym_concept_definition] = STATE(32), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(32), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [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_consteval_block_declaration] = STATE(22), + [sym_concept_definition] = STATE(22), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(22), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -44353,95 +44424,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(49), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(49), [sym_preproc_if_in_block] = STATE(49), [sym_preproc_ifdef_in_block] = STATE(49), - [sym_preproc_else_in_block] = STATE(10652), - [sym_preproc_elif_in_block] = STATE(10652), - [sym_preproc_elifdef_in_block] = STATE(10652), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(10814), + [sym_preproc_elif_in_block] = STATE(10814), + [sym_preproc_elifdef_in_block] = STATE(10814), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(49), [sym_import_declaration] = STATE(49), [sym_template_declaration] = STATE(49), [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(49), [sym_operator_cast_declaration] = STATE(49), [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), @@ -44450,40 +44521,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(49), [sym_consteval_block_declaration] = STATE(49), [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -44628,145 +44699,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [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_function_definition] = STATE(24), - [sym_declaration] = STATE(24), - [sym_type_definition] = STATE(24), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(24), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), - [sym_statement] = STATE(24), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(24), - [sym_preproc_if_in_block] = STATE(24), - [sym_preproc_ifdef_in_block] = STATE(24), - [sym_preproc_else_in_block] = STATE(11222), - [sym_preproc_elif_in_block] = STATE(11222), - [sym_preproc_elifdef_in_block] = STATE(11222), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(24), - [sym_import_declaration] = STATE(24), - [sym_template_declaration] = STATE(24), - [sym_template_instantiation] = STATE(24), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(24), - [sym_operator_cast_declaration] = STATE(24), - [sym_constructor_or_destructor_definition] = STATE(24), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(11559), + [sym_preproc_elif_in_block] = STATE(11559), + [sym_preproc_elifdef_in_block] = STATE(11559), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(24), - [sym_concept_definition] = STATE(24), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(24), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -44919,95 +44990,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(25), [sym_declaration] = STATE(25), [sym_type_definition] = STATE(25), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(25), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(25), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(25), [sym_preproc_if_in_block] = STATE(25), [sym_preproc_ifdef_in_block] = STATE(25), - [sym_preproc_else_in_block] = STATE(10749), - [sym_preproc_elif_in_block] = STATE(10749), - [sym_preproc_elifdef_in_block] = STATE(10749), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(10865), + [sym_preproc_elif_in_block] = STATE(10865), + [sym_preproc_elifdef_in_block] = STATE(10865), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(25), [sym_import_declaration] = STATE(25), [sym_template_declaration] = STATE(25), [sym_template_instantiation] = STATE(25), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(25), [sym_operator_cast_declaration] = STATE(25), [sym_constructor_or_destructor_definition] = STATE(25), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(25), [sym_namespace_alias_definition] = STATE(25), @@ -45016,40 +45087,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(25), [sym_consteval_block_declaration] = STATE(25), [sym_concept_definition] = STATE(25), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(25), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -45194,145 +45265,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(24)] = { - [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_function_definition] = STATE(49), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), - [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(49), - [sym_preproc_if_in_block] = STATE(49), - [sym_preproc_ifdef_in_block] = STATE(49), - [sym_preproc_else_in_block] = STATE(10756), - [sym_preproc_elif_in_block] = STATE(10756), - [sym_preproc_elifdef_in_block] = STATE(10756), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(49), - [sym_import_declaration] = STATE(49), - [sym_template_declaration] = STATE(49), - [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(49), - [sym_operator_cast_declaration] = STATE(49), - [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(26), + [sym_preproc_include] = STATE(26), + [sym_preproc_def] = STATE(26), + [sym_preproc_function_def] = STATE(26), + [sym_preproc_call] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_declaration] = STATE(26), + [sym_type_definition] = STATE(26), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(26), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), + [sym_statement] = STATE(26), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(26), + [sym_preproc_if_in_block] = STATE(26), + [sym_preproc_ifdef_in_block] = STATE(26), + [sym_preproc_else_in_block] = STATE(11181), + [sym_preproc_elif_in_block] = STATE(11181), + [sym_preproc_elifdef_in_block] = STATE(11181), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(26), + [sym_import_declaration] = STATE(26), + [sym_template_declaration] = STATE(26), + [sym_template_instantiation] = STATE(26), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(26), + [sym_operator_cast_declaration] = STATE(26), + [sym_constructor_or_destructor_definition] = STATE(26), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(49), - [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_namespace_definition] = STATE(26), + [sym_namespace_alias_definition] = STATE(26), + [sym_using_declaration] = STATE(26), + [sym_alias_declaration] = STATE(26), + [sym_static_assert_declaration] = STATE(26), + [sym_consteval_block_declaration] = STATE(26), + [sym_concept_definition] = STATE(26), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(26), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -45485,95 +45556,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(49), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(49), [sym_preproc_if_in_block] = STATE(49), [sym_preproc_ifdef_in_block] = STATE(49), - [sym_preproc_else_in_block] = STATE(10851), - [sym_preproc_elif_in_block] = STATE(10851), - [sym_preproc_elifdef_in_block] = STATE(10851), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(11190), + [sym_preproc_elif_in_block] = STATE(11190), + [sym_preproc_elifdef_in_block] = STATE(11190), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(49), [sym_import_declaration] = STATE(49), [sym_template_declaration] = STATE(49), [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(49), [sym_operator_cast_declaration] = STATE(49), [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), @@ -45582,40 +45653,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(49), [sym_consteval_block_declaration] = STATE(49), [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -45760,145 +45831,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [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_function_definition] = STATE(28), - [sym_declaration] = STATE(28), - [sym_type_definition] = STATE(28), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(28), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), - [sym_statement] = STATE(28), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(28), - [sym_preproc_if_in_block] = STATE(28), - [sym_preproc_ifdef_in_block] = STATE(28), - [sym_preproc_else_in_block] = STATE(11224), - [sym_preproc_elif_in_block] = STATE(11224), - [sym_preproc_elifdef_in_block] = STATE(11224), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(28), - [sym_import_declaration] = STATE(28), - [sym_template_declaration] = STATE(28), - [sym_template_instantiation] = STATE(28), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(28), - [sym_operator_cast_declaration] = STATE(28), - [sym_constructor_or_destructor_definition] = STATE(28), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(49), + [sym_declaration] = STATE(49), + [sym_type_definition] = STATE(49), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(49), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), + [sym_statement] = STATE(49), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(49), + [sym_preproc_if_in_block] = STATE(49), + [sym_preproc_ifdef_in_block] = STATE(49), + [sym_preproc_else_in_block] = STATE(11241), + [sym_preproc_elif_in_block] = STATE(11241), + [sym_preproc_elifdef_in_block] = STATE(11241), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(49), + [sym_import_declaration] = STATE(49), + [sym_template_declaration] = STATE(49), + [sym_template_instantiation] = STATE(49), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(49), + [sym_operator_cast_declaration] = STATE(49), + [sym_constructor_or_destructor_definition] = STATE(49), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(28), - [sym_concept_definition] = STATE(28), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(28), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [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_consteval_block_declaration] = STATE(49), + [sym_concept_definition] = STATE(49), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(49), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -46043,145 +46114,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(27)] = { - [sym__block_item] = STATE(31), - [sym_preproc_include] = STATE(31), - [sym_preproc_def] = STATE(31), - [sym_preproc_function_def] = STATE(31), - [sym_preproc_call] = STATE(31), - [sym_function_definition] = STATE(31), - [sym_declaration] = STATE(31), - [sym_type_definition] = STATE(31), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(31), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), - [sym_statement] = STATE(31), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(31), - [sym_preproc_if_in_block] = STATE(31), - [sym_preproc_ifdef_in_block] = STATE(31), - [sym_preproc_else_in_block] = STATE(11605), - [sym_preproc_elif_in_block] = STATE(11605), - [sym_preproc_elifdef_in_block] = STATE(11605), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(31), - [sym_import_declaration] = STATE(31), - [sym_template_declaration] = STATE(31), - [sym_template_instantiation] = STATE(31), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(31), - [sym_operator_cast_declaration] = STATE(31), - [sym_constructor_or_destructor_definition] = STATE(31), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(28), + [sym_declaration] = STATE(28), + [sym_type_definition] = STATE(28), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(28), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), + [sym_statement] = STATE(28), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(28), + [sym_preproc_if_in_block] = STATE(28), + [sym_preproc_ifdef_in_block] = STATE(28), + [sym_preproc_else_in_block] = STATE(10844), + [sym_preproc_elif_in_block] = STATE(10844), + [sym_preproc_elifdef_in_block] = STATE(10844), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(28), + [sym_import_declaration] = STATE(28), + [sym_template_declaration] = STATE(28), + [sym_template_instantiation] = STATE(28), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(28), + [sym_operator_cast_declaration] = STATE(28), + [sym_constructor_or_destructor_definition] = STATE(28), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(31), - [sym_concept_definition] = STATE(31), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(31), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [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_consteval_block_declaration] = STATE(28), + [sym_concept_definition] = STATE(28), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(28), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -46334,95 +46405,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(49), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(49), [sym_preproc_if_in_block] = STATE(49), [sym_preproc_ifdef_in_block] = STATE(49), - [sym_preproc_else_in_block] = STATE(11537), - [sym_preproc_elif_in_block] = STATE(11537), - [sym_preproc_elifdef_in_block] = STATE(11537), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(11699), + [sym_preproc_elif_in_block] = STATE(11699), + [sym_preproc_elifdef_in_block] = STATE(11699), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(49), [sym_import_declaration] = STATE(49), [sym_template_declaration] = STATE(49), [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(49), [sym_operator_cast_declaration] = STATE(49), [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), @@ -46431,40 +46502,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(49), [sym_consteval_block_declaration] = STATE(49), [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -46617,95 +46688,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(49), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(49), [sym_preproc_if_in_block] = STATE(49), [sym_preproc_ifdef_in_block] = STATE(49), - [sym_preproc_else_in_block] = STATE(11570), - [sym_preproc_elif_in_block] = STATE(11570), - [sym_preproc_elifdef_in_block] = STATE(11570), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(11287), + [sym_preproc_elif_in_block] = STATE(11287), + [sym_preproc_elifdef_in_block] = STATE(11287), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(49), [sym_import_declaration] = STATE(49), [sym_template_declaration] = STATE(49), [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(49), [sym_operator_cast_declaration] = STATE(49), [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), @@ -46714,40 +46785,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(49), [sym_consteval_block_declaration] = STATE(49), [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -46892,145 +46963,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(30)] = { - [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_function_definition] = STATE(49), - [sym_declaration] = STATE(49), - [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), - [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(49), - [sym_preproc_if_in_block] = STATE(49), - [sym_preproc_ifdef_in_block] = STATE(49), - [sym_preproc_else_in_block] = STATE(11638), - [sym_preproc_elif_in_block] = STATE(11638), - [sym_preproc_elifdef_in_block] = STATE(11638), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(49), - [sym_import_declaration] = STATE(49), - [sym_template_declaration] = STATE(49), - [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(49), - [sym_operator_cast_declaration] = STATE(49), - [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(32), + [sym_declaration] = STATE(32), + [sym_type_definition] = STATE(32), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(32), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), + [sym_statement] = STATE(32), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(32), + [sym_preproc_if_in_block] = STATE(32), + [sym_preproc_ifdef_in_block] = STATE(32), + [sym_preproc_else_in_block] = STATE(11415), + [sym_preproc_elif_in_block] = STATE(11415), + [sym_preproc_elifdef_in_block] = STATE(11415), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(32), + [sym_import_declaration] = STATE(32), + [sym_template_declaration] = STATE(32), + [sym_template_instantiation] = STATE(32), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(32), + [sym_operator_cast_declaration] = STATE(32), + [sym_constructor_or_destructor_definition] = STATE(32), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(49), - [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [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_consteval_block_declaration] = STATE(32), + [sym_concept_definition] = STATE(32), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(32), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -47183,95 +47254,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(49), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(49), [sym_preproc_if_in_block] = STATE(49), [sym_preproc_ifdef_in_block] = STATE(49), - [sym_preproc_else_in_block] = STATE(11556), - [sym_preproc_elif_in_block] = STATE(11556), - [sym_preproc_elifdef_in_block] = STATE(11556), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(10627), + [sym_preproc_elif_in_block] = STATE(10627), + [sym_preproc_elifdef_in_block] = STATE(10627), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(49), [sym_import_declaration] = STATE(49), [sym_template_declaration] = STATE(49), [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(49), [sym_operator_cast_declaration] = STATE(49), [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), @@ -47280,40 +47351,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(49), [sym_consteval_block_declaration] = STATE(49), [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -47466,95 +47537,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(49), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(49), [sym_preproc_if_in_block] = STATE(49), [sym_preproc_ifdef_in_block] = STATE(49), - [sym_preproc_else_in_block] = STATE(10874), - [sym_preproc_elif_in_block] = STATE(10874), - [sym_preproc_elifdef_in_block] = STATE(10874), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_preproc_else_in_block] = STATE(11512), + [sym_preproc_elif_in_block] = STATE(11512), + [sym_preproc_elifdef_in_block] = STATE(11512), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(49), [sym_import_declaration] = STATE(49), [sym_template_declaration] = STATE(49), [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(49), [sym_operator_cast_declaration] = STATE(49), [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), @@ -47563,40 +47634,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(49), [sym_consteval_block_declaration] = STATE(49), [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -47741,145 +47812,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(33)] = { - [sym__top_level_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_preproc_else] = STATE(10843), - [sym_preproc_elif] = STATE(10843), - [sym_preproc_elifdef] = STATE(10843), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym__top_level_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(50), - [sym_export_declaration] = STATE(50), - [sym_import_declaration] = STATE(50), - [sym_global_module_fragment_declaration] = STATE(50), - [sym_private_module_fragment_declaration] = STATE(50), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym__top_level_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_preproc_else] = STATE(11088), + [sym_preproc_elif] = STATE(11088), + [sym_preproc_elifdef] = STATE(11088), + [sym_function_definition] = STATE(46), + [sym_declaration] = STATE(46), + [sym_type_definition] = STATE(46), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(46), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(46), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(46), + [sym_labeled_statement] = STATE(46), + [sym__top_level_expression_statement] = STATE(46), + [sym_if_statement] = STATE(46), + [sym_switch_statement] = STATE(46), + [sym_case_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_do_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_return_statement] = STATE(46), + [sym_break_statement] = STATE(46), + [sym_continue_statement] = STATE(46), + [sym_goto_statement] = STATE(46), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(46), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(46), + [sym_export_declaration] = STATE(46), + [sym_import_declaration] = STATE(46), + [sym_global_module_fragment_declaration] = STATE(46), + [sym_private_module_fragment_declaration] = STATE(46), + [sym_template_declaration] = STATE(46), + [sym_template_instantiation] = STATE(46), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(46), + [sym_operator_cast_declaration] = STATE(46), + [sym_constructor_or_destructor_definition] = STATE(46), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [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_consteval_block_declaration] = STATE(46), + [sym_concept_definition] = STATE(46), + [sym_for_range_loop] = STATE(46), + [sym_co_return_statement] = STATE(46), + [sym_co_yield_statement] = STATE(46), + [sym_throw_statement] = STATE(46), + [sym_try_statement] = STATE(46), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(46), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(46), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -48030,36 +48101,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(50), [sym_preproc_if] = STATE(50), [sym_preproc_ifdef] = STATE(50), - [sym_preproc_else] = STATE(10967), - [sym_preproc_elif] = STATE(10967), - [sym_preproc_elifdef] = STATE(10967), + [sym_preproc_else] = STATE(11175), + [sym_preproc_elif] = STATE(11175), + [sym_preproc_elifdef] = STATE(11175), [sym_function_definition] = STATE(50), [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -48073,38 +48144,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(50), [sym_continue_statement] = STATE(50), [sym_goto_statement] = STATE(50), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -48112,15 +48183,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(50), [sym_template_declaration] = STATE(50), [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(50), [sym_operator_cast_declaration] = STATE(50), [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -48133,35 +48204,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(50), [sym_throw_statement] = STATE(50), [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -48305,288 +48376,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(417), }, [STATE(35)] = { - [sym__top_level_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_preproc_else] = STATE(10683), - [sym_preproc_elif] = STATE(10683), - [sym_preproc_elifdef] = STATE(10683), - [sym_function_definition] = STATE(39), - [sym_declaration] = STATE(39), - [sym_type_definition] = STATE(39), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(39), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(39), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(39), - [sym_labeled_statement] = STATE(39), - [sym__top_level_expression_statement] = STATE(39), - [sym_if_statement] = STATE(39), - [sym_switch_statement] = STATE(39), - [sym_case_statement] = STATE(39), - [sym_while_statement] = STATE(39), - [sym_do_statement] = STATE(39), - [sym_for_statement] = STATE(39), - [sym_return_statement] = STATE(39), - [sym_break_statement] = STATE(39), - [sym_continue_statement] = STATE(39), - [sym_goto_statement] = STATE(39), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(39), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(39), - [sym_export_declaration] = STATE(39), - [sym_import_declaration] = STATE(39), - [sym_global_module_fragment_declaration] = STATE(39), - [sym_private_module_fragment_declaration] = STATE(39), - [sym_template_declaration] = STATE(39), - [sym_template_instantiation] = STATE(39), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(39), - [sym_operator_cast_declaration] = STATE(39), - [sym_constructor_or_destructor_definition] = STATE(39), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(39), - [sym_concept_definition] = STATE(39), - [sym_for_range_loop] = STATE(39), - [sym_co_return_statement] = STATE(39), - [sym_co_yield_statement] = STATE(39), - [sym_throw_statement] = STATE(39), - [sym_try_statement] = STATE(39), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(39), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(39), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), - [sym_identifier] = ACTIONS(399), - [aux_sym_preproc_include_token1] = ACTIONS(281), - [aux_sym_preproc_def_token1] = ACTIONS(283), - [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(425), - [aux_sym_preproc_ifdef_token1] = ACTIONS(405), - [aux_sym_preproc_ifdef_token2] = ACTIONS(405), - [aux_sym_preproc_else_token1] = ACTIONS(407), - [aux_sym_preproc_elif_token1] = ACTIONS(409), - [aux_sym_preproc_elifdef_token1] = ACTIONS(411), - [aux_sym_preproc_elifdef_token2] = ACTIONS(411), - [sym_preproc_directive] = ACTIONS(297), - [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(413), - [anon_sym___extension__] = ACTIONS(301), - [anon_sym_typedef] = ACTIONS(303), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(305), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(307), - [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(309), - [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(311), - [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(313), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(319), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(325), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_goto] = ACTIONS(335), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(415), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(417), - [sym_false] = ACTIONS(417), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(419), - [anon_sym_module] = ACTIONS(421), - [anon_sym_import] = ACTIONS(343), - [anon_sym_template] = ACTIONS(345), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(347), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_namespace] = ACTIONS(351), - [anon_sym_static_assert] = ACTIONS(353), - [anon_sym_concept] = ACTIONS(355), - [anon_sym_co_return] = ACTIONS(357), - [anon_sym_co_yield] = ACTIONS(359), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(417), - }, - [STATE(36)] = { [sym__top_level_item] = STATE(50), [sym_preproc_include] = STATE(50), [sym_preproc_def] = STATE(50), @@ -48594,36 +48383,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(50), [sym_preproc_if] = STATE(50), [sym_preproc_ifdef] = STATE(50), - [sym_preproc_else] = STATE(10702), - [sym_preproc_elif] = STATE(10702), - [sym_preproc_elifdef] = STATE(10702), + [sym_preproc_else] = STATE(10880), + [sym_preproc_elif] = STATE(10880), + [sym_preproc_elifdef] = STATE(10880), [sym_function_definition] = STATE(50), [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -48637,38 +48426,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(50), [sym_continue_statement] = STATE(50), [sym_goto_statement] = STATE(50), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -48676,15 +48465,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(50), [sym_template_declaration] = STATE(50), [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(50), [sym_operator_cast_declaration] = STATE(50), [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -48697,40 +48486,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(50), [sym_throw_statement] = STATE(50), [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(427), + [aux_sym_preproc_if_token2] = ACTIONS(425), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -48868,7 +48657,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(37)] = { + [STATE(36)] = { [sym__top_level_item] = STATE(50), [sym_preproc_include] = STATE(50), [sym_preproc_def] = STATE(50), @@ -48876,36 +48665,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(50), [sym_preproc_if] = STATE(50), [sym_preproc_ifdef] = STATE(50), - [sym_preproc_else] = STATE(10698), - [sym_preproc_elif] = STATE(10698), - [sym_preproc_elifdef] = STATE(10698), + [sym_preproc_else] = STATE(11152), + [sym_preproc_elif] = STATE(11152), + [sym_preproc_elifdef] = STATE(11152), [sym_function_definition] = STATE(50), [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -48919,38 +48708,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(50), [sym_continue_statement] = STATE(50), [sym_goto_statement] = STATE(50), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -48958,15 +48747,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(50), [sym_template_declaration] = STATE(50), [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(50), [sym_operator_cast_declaration] = STATE(50), [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -48979,40 +48768,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(50), [sym_throw_statement] = STATE(50), [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(429), + [aux_sym_preproc_if_token2] = ACTIONS(427), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -49150,151 +48939,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(38)] = { - [sym__top_level_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_preproc_else] = STATE(11705), - [sym_preproc_elif] = STATE(11705), - [sym_preproc_elifdef] = STATE(11705), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym__top_level_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(50), - [sym_export_declaration] = STATE(50), - [sym_import_declaration] = STATE(50), - [sym_global_module_fragment_declaration] = STATE(50), - [sym_private_module_fragment_declaration] = STATE(50), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [STATE(37)] = { + [sym__top_level_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_preproc_else] = STATE(11530), + [sym_preproc_elif] = STATE(11530), + [sym_preproc_elifdef] = STATE(11530), + [sym_function_definition] = STATE(40), + [sym_declaration] = STATE(40), + [sym_type_definition] = STATE(40), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(40), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(40), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(40), + [sym_labeled_statement] = STATE(40), + [sym__top_level_expression_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_switch_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_do_statement] = STATE(40), + [sym_for_statement] = STATE(40), + [sym_return_statement] = STATE(40), + [sym_break_statement] = STATE(40), + [sym_continue_statement] = STATE(40), + [sym_goto_statement] = STATE(40), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(40), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(40), + [sym_export_declaration] = STATE(40), + [sym_import_declaration] = STATE(40), + [sym_global_module_fragment_declaration] = STATE(40), + [sym_private_module_fragment_declaration] = STATE(40), + [sym_template_declaration] = STATE(40), + [sym_template_instantiation] = STATE(40), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(40), + [sym_operator_cast_declaration] = STATE(40), + [sym_constructor_or_destructor_definition] = STATE(40), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [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_consteval_block_declaration] = STATE(40), + [sym_concept_definition] = STATE(40), + [sym_for_range_loop] = STATE(40), + [sym_co_return_statement] = STATE(40), + [sym_co_yield_statement] = STATE(40), + [sym_throw_statement] = STATE(40), + [sym_try_statement] = STATE(40), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(40), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(40), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(431), + [aux_sym_preproc_if_token2] = ACTIONS(429), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -49432,151 +49221,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(39)] = { - [sym__top_level_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_preproc_else] = STATE(11541), - [sym_preproc_elif] = STATE(11541), - [sym_preproc_elifdef] = STATE(11541), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym__top_level_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(50), - [sym_export_declaration] = STATE(50), - [sym_import_declaration] = STATE(50), - [sym_global_module_fragment_declaration] = STATE(50), - [sym_private_module_fragment_declaration] = STATE(50), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [STATE(38)] = { + [sym__top_level_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_preproc_else] = STATE(11029), + [sym_preproc_elif] = STATE(11029), + [sym_preproc_elifdef] = STATE(11029), + [sym_function_definition] = STATE(47), + [sym_declaration] = STATE(47), + [sym_type_definition] = STATE(47), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(47), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(47), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(47), + [sym_labeled_statement] = STATE(47), + [sym__top_level_expression_statement] = STATE(47), + [sym_if_statement] = STATE(47), + [sym_switch_statement] = STATE(47), + [sym_case_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_do_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_return_statement] = STATE(47), + [sym_break_statement] = STATE(47), + [sym_continue_statement] = STATE(47), + [sym_goto_statement] = STATE(47), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(47), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(47), + [sym_export_declaration] = STATE(47), + [sym_import_declaration] = STATE(47), + [sym_global_module_fragment_declaration] = STATE(47), + [sym_private_module_fragment_declaration] = STATE(47), + [sym_template_declaration] = STATE(47), + [sym_template_instantiation] = STATE(47), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(47), + [sym_operator_cast_declaration] = STATE(47), + [sym_constructor_or_destructor_definition] = STATE(47), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [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_consteval_block_declaration] = STATE(47), + [sym_concept_definition] = STATE(47), + [sym_for_range_loop] = STATE(47), + [sym_co_return_statement] = STATE(47), + [sym_co_yield_statement] = STATE(47), + [sym_throw_statement] = STATE(47), + [sym_try_statement] = STATE(47), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(47), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(47), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(433), + [aux_sym_preproc_if_token2] = ACTIONS(431), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -49714,151 +49503,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(40)] = { - [sym__top_level_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_preproc_else] = STATE(10971), - [sym_preproc_elif] = STATE(10971), - [sym_preproc_elifdef] = STATE(10971), - [sym_function_definition] = STATE(48), - [sym_declaration] = STATE(48), - [sym_type_definition] = STATE(48), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(48), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(48), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(48), - [sym_labeled_statement] = STATE(48), - [sym__top_level_expression_statement] = STATE(48), - [sym_if_statement] = STATE(48), - [sym_switch_statement] = STATE(48), - [sym_case_statement] = STATE(48), - [sym_while_statement] = STATE(48), - [sym_do_statement] = STATE(48), - [sym_for_statement] = STATE(48), - [sym_return_statement] = STATE(48), - [sym_break_statement] = STATE(48), - [sym_continue_statement] = STATE(48), - [sym_goto_statement] = STATE(48), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(48), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(48), - [sym_export_declaration] = STATE(48), - [sym_import_declaration] = STATE(48), - [sym_global_module_fragment_declaration] = STATE(48), - [sym_private_module_fragment_declaration] = STATE(48), - [sym_template_declaration] = STATE(48), - [sym_template_instantiation] = STATE(48), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(48), - [sym_operator_cast_declaration] = STATE(48), - [sym_constructor_or_destructor_definition] = STATE(48), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(48), - [sym_concept_definition] = STATE(48), - [sym_for_range_loop] = STATE(48), - [sym_co_return_statement] = STATE(48), - [sym_co_yield_statement] = STATE(48), - [sym_throw_statement] = STATE(48), - [sym_try_statement] = STATE(48), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(48), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(48), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [STATE(39)] = { + [sym__top_level_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_preproc_else] = STATE(11166), + [sym_preproc_elif] = STATE(11166), + [sym_preproc_elifdef] = STATE(11166), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [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_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(435), + [aux_sym_preproc_if_token2] = ACTIONS(433), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -49996,151 +49785,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(41)] = { - [sym__top_level_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(11385), - [sym_preproc_elif] = STATE(11385), - [sym_preproc_elifdef] = STATE(11385), - [sym_function_definition] = STATE(33), - [sym_declaration] = STATE(33), - [sym_type_definition] = STATE(33), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(33), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(33), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym__top_level_expression_statement] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_case_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_goto_statement] = STATE(33), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(33), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(33), - [sym_export_declaration] = STATE(33), - [sym_import_declaration] = STATE(33), - [sym_global_module_fragment_declaration] = STATE(33), - [sym_private_module_fragment_declaration] = STATE(33), - [sym_template_declaration] = STATE(33), - [sym_template_instantiation] = STATE(33), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(33), - [sym_operator_cast_declaration] = STATE(33), - [sym_constructor_or_destructor_definition] = STATE(33), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(33), - [sym_concept_definition] = STATE(33), - [sym_for_range_loop] = STATE(33), - [sym_co_return_statement] = STATE(33), - [sym_co_yield_statement] = STATE(33), - [sym_throw_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(33), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(33), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [STATE(40)] = { + [sym__top_level_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_preproc_else] = STATE(10815), + [sym_preproc_elif] = STATE(10815), + [sym_preproc_elifdef] = STATE(10815), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [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_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(437), + [aux_sym_preproc_if_token2] = ACTIONS(435), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -50278,151 +50067,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(42)] = { - [sym__top_level_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_preproc_else] = STATE(10705), - [sym_preproc_elif] = STATE(10705), - [sym_preproc_elifdef] = STATE(10705), - [sym_function_definition] = STATE(37), - [sym_declaration] = STATE(37), - [sym_type_definition] = STATE(37), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(37), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(37), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(37), - [sym_labeled_statement] = STATE(37), - [sym__top_level_expression_statement] = STATE(37), - [sym_if_statement] = STATE(37), - [sym_switch_statement] = STATE(37), - [sym_case_statement] = STATE(37), - [sym_while_statement] = STATE(37), - [sym_do_statement] = STATE(37), - [sym_for_statement] = STATE(37), - [sym_return_statement] = STATE(37), - [sym_break_statement] = STATE(37), - [sym_continue_statement] = STATE(37), - [sym_goto_statement] = STATE(37), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(37), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(37), - [sym_export_declaration] = STATE(37), - [sym_import_declaration] = STATE(37), - [sym_global_module_fragment_declaration] = STATE(37), - [sym_private_module_fragment_declaration] = STATE(37), - [sym_template_declaration] = STATE(37), - [sym_template_instantiation] = STATE(37), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(37), - [sym_operator_cast_declaration] = STATE(37), - [sym_constructor_or_destructor_definition] = STATE(37), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(37), - [sym_concept_definition] = STATE(37), - [sym_for_range_loop] = STATE(37), - [sym_co_return_statement] = STATE(37), - [sym_co_yield_statement] = STATE(37), - [sym_throw_statement] = STATE(37), - [sym_try_statement] = STATE(37), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(37), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(37), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [STATE(41)] = { + [sym__top_level_item] = STATE(35), + [sym_preproc_include] = STATE(35), + [sym_preproc_def] = STATE(35), + [sym_preproc_function_def] = STATE(35), + [sym_preproc_call] = STATE(35), + [sym_preproc_if] = STATE(35), + [sym_preproc_ifdef] = STATE(35), + [sym_preproc_else] = STATE(11004), + [sym_preproc_elif] = STATE(11004), + [sym_preproc_elifdef] = STATE(11004), + [sym_function_definition] = STATE(35), + [sym_declaration] = STATE(35), + [sym_type_definition] = STATE(35), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(35), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(35), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(35), + [sym_labeled_statement] = STATE(35), + [sym__top_level_expression_statement] = STATE(35), + [sym_if_statement] = STATE(35), + [sym_switch_statement] = STATE(35), + [sym_case_statement] = STATE(35), + [sym_while_statement] = STATE(35), + [sym_do_statement] = STATE(35), + [sym_for_statement] = STATE(35), + [sym_return_statement] = STATE(35), + [sym_break_statement] = STATE(35), + [sym_continue_statement] = STATE(35), + [sym_goto_statement] = STATE(35), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(35), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(35), + [sym_export_declaration] = STATE(35), + [sym_import_declaration] = STATE(35), + [sym_global_module_fragment_declaration] = STATE(35), + [sym_private_module_fragment_declaration] = STATE(35), + [sym_template_declaration] = STATE(35), + [sym_template_instantiation] = STATE(35), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(35), + [sym_operator_cast_declaration] = STATE(35), + [sym_constructor_or_destructor_definition] = STATE(35), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [sym_namespace_definition] = STATE(35), + [sym_namespace_alias_definition] = STATE(35), + [sym_using_declaration] = STATE(35), + [sym_alias_declaration] = STATE(35), + [sym_static_assert_declaration] = STATE(35), + [sym_consteval_block_declaration] = STATE(35), + [sym_concept_definition] = STATE(35), + [sym_for_range_loop] = STATE(35), + [sym_co_return_statement] = STATE(35), + [sym_co_yield_statement] = STATE(35), + [sym_throw_statement] = STATE(35), + [sym_try_statement] = STATE(35), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(35), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(35), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(439), + [aux_sym_preproc_if_token2] = ACTIONS(437), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -50560,151 +50349,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(43)] = { - [sym__top_level_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_preproc_else] = STATE(10859), - [sym_preproc_elif] = STATE(10859), - [sym_preproc_elifdef] = STATE(10859), - [sym_function_definition] = STATE(45), - [sym_declaration] = STATE(45), - [sym_type_definition] = STATE(45), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(45), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(45), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(45), - [sym_labeled_statement] = STATE(45), - [sym__top_level_expression_statement] = STATE(45), - [sym_if_statement] = STATE(45), - [sym_switch_statement] = STATE(45), - [sym_case_statement] = STATE(45), - [sym_while_statement] = STATE(45), - [sym_do_statement] = STATE(45), - [sym_for_statement] = STATE(45), - [sym_return_statement] = STATE(45), - [sym_break_statement] = STATE(45), - [sym_continue_statement] = STATE(45), - [sym_goto_statement] = STATE(45), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(45), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(45), - [sym_export_declaration] = STATE(45), - [sym_import_declaration] = STATE(45), - [sym_global_module_fragment_declaration] = STATE(45), - [sym_private_module_fragment_declaration] = STATE(45), - [sym_template_declaration] = STATE(45), - [sym_template_instantiation] = STATE(45), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(45), - [sym_operator_cast_declaration] = STATE(45), - [sym_constructor_or_destructor_definition] = STATE(45), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(45), - [sym_concept_definition] = STATE(45), - [sym_for_range_loop] = STATE(45), - [sym_co_return_statement] = STATE(45), - [sym_co_yield_statement] = STATE(45), - [sym_throw_statement] = STATE(45), - [sym_try_statement] = STATE(45), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(45), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(45), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [STATE(42)] = { + [sym__top_level_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_preproc_else] = STATE(11595), + [sym_preproc_elif] = STATE(11595), + [sym_preproc_elifdef] = STATE(11595), + [sym_function_definition] = STATE(48), + [sym_declaration] = STATE(48), + [sym_type_definition] = STATE(48), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(48), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(48), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(48), + [sym_labeled_statement] = STATE(48), + [sym__top_level_expression_statement] = STATE(48), + [sym_if_statement] = STATE(48), + [sym_switch_statement] = STATE(48), + [sym_case_statement] = STATE(48), + [sym_while_statement] = STATE(48), + [sym_do_statement] = STATE(48), + [sym_for_statement] = STATE(48), + [sym_return_statement] = STATE(48), + [sym_break_statement] = STATE(48), + [sym_continue_statement] = STATE(48), + [sym_goto_statement] = STATE(48), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(48), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(48), + [sym_export_declaration] = STATE(48), + [sym_import_declaration] = STATE(48), + [sym_global_module_fragment_declaration] = STATE(48), + [sym_private_module_fragment_declaration] = STATE(48), + [sym_template_declaration] = STATE(48), + [sym_template_instantiation] = STATE(48), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(48), + [sym_operator_cast_declaration] = STATE(48), + [sym_constructor_or_destructor_definition] = STATE(48), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [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_consteval_block_declaration] = STATE(48), + [sym_concept_definition] = STATE(48), + [sym_for_range_loop] = STATE(48), + [sym_co_return_statement] = STATE(48), + [sym_co_yield_statement] = STATE(48), + [sym_throw_statement] = STATE(48), + [sym_try_statement] = STATE(48), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(48), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(48), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(441), + [aux_sym_preproc_if_token2] = ACTIONS(439), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -50842,151 +50631,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(44)] = { - [sym__top_level_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_preproc_else] = STATE(10834), - [sym_preproc_elif] = STATE(10834), - [sym_preproc_elifdef] = STATE(10834), - [sym_function_definition] = STATE(36), - [sym_declaration] = STATE(36), - [sym_type_definition] = STATE(36), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(36), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(36), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(36), - [sym_labeled_statement] = STATE(36), - [sym__top_level_expression_statement] = STATE(36), - [sym_if_statement] = STATE(36), - [sym_switch_statement] = STATE(36), - [sym_case_statement] = STATE(36), - [sym_while_statement] = STATE(36), - [sym_do_statement] = STATE(36), - [sym_for_statement] = STATE(36), - [sym_return_statement] = STATE(36), - [sym_break_statement] = STATE(36), - [sym_continue_statement] = STATE(36), - [sym_goto_statement] = STATE(36), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(36), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(36), - [sym_export_declaration] = STATE(36), - [sym_import_declaration] = STATE(36), - [sym_global_module_fragment_declaration] = STATE(36), - [sym_private_module_fragment_declaration] = STATE(36), - [sym_template_declaration] = STATE(36), - [sym_template_instantiation] = STATE(36), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(36), - [sym_operator_cast_declaration] = STATE(36), - [sym_constructor_or_destructor_definition] = STATE(36), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(36), - [sym_concept_definition] = STATE(36), - [sym_for_range_loop] = STATE(36), - [sym_co_return_statement] = STATE(36), - [sym_co_yield_statement] = STATE(36), - [sym_throw_statement] = STATE(36), - [sym_try_statement] = STATE(36), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(36), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(36), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [STATE(43)] = { + [sym__top_level_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_preproc_else] = STATE(11176), + [sym_preproc_elif] = STATE(11176), + [sym_preproc_elifdef] = STATE(11176), + [sym_function_definition] = STATE(39), + [sym_declaration] = STATE(39), + [sym_type_definition] = STATE(39), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(39), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(39), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(39), + [sym_labeled_statement] = STATE(39), + [sym__top_level_expression_statement] = STATE(39), + [sym_if_statement] = STATE(39), + [sym_switch_statement] = STATE(39), + [sym_case_statement] = STATE(39), + [sym_while_statement] = STATE(39), + [sym_do_statement] = STATE(39), + [sym_for_statement] = STATE(39), + [sym_return_statement] = STATE(39), + [sym_break_statement] = STATE(39), + [sym_continue_statement] = STATE(39), + [sym_goto_statement] = STATE(39), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(39), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(39), + [sym_export_declaration] = STATE(39), + [sym_import_declaration] = STATE(39), + [sym_global_module_fragment_declaration] = STATE(39), + [sym_private_module_fragment_declaration] = STATE(39), + [sym_template_declaration] = STATE(39), + [sym_template_instantiation] = STATE(39), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(39), + [sym_operator_cast_declaration] = STATE(39), + [sym_constructor_or_destructor_definition] = STATE(39), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [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_consteval_block_declaration] = STATE(39), + [sym_concept_definition] = STATE(39), + [sym_for_range_loop] = STATE(39), + [sym_co_return_statement] = STATE(39), + [sym_co_yield_statement] = STATE(39), + [sym_throw_statement] = STATE(39), + [sym_try_statement] = STATE(39), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(39), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(39), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(443), + [aux_sym_preproc_if_token2] = ACTIONS(441), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -51124,151 +50913,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(45)] = { - [sym__top_level_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_preproc_else] = STATE(11280), - [sym_preproc_elif] = STATE(11280), - [sym_preproc_elifdef] = STATE(11280), - [sym_function_definition] = STATE(50), - [sym_declaration] = STATE(50), - [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(50), - [sym_labeled_statement] = STATE(50), - [sym__top_level_expression_statement] = STATE(50), - [sym_if_statement] = STATE(50), - [sym_switch_statement] = STATE(50), - [sym_case_statement] = STATE(50), - [sym_while_statement] = STATE(50), - [sym_do_statement] = STATE(50), - [sym_for_statement] = STATE(50), - [sym_return_statement] = STATE(50), - [sym_break_statement] = STATE(50), - [sym_continue_statement] = STATE(50), - [sym_goto_statement] = STATE(50), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(50), - [sym_export_declaration] = STATE(50), - [sym_import_declaration] = STATE(50), - [sym_global_module_fragment_declaration] = STATE(50), - [sym_private_module_fragment_declaration] = STATE(50), - [sym_template_declaration] = STATE(50), - [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(50), - [sym_operator_cast_declaration] = STATE(50), - [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(50), - [sym_concept_definition] = STATE(50), - [sym_for_range_loop] = STATE(50), - [sym_co_return_statement] = STATE(50), - [sym_co_yield_statement] = STATE(50), - [sym_throw_statement] = STATE(50), - [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [STATE(44)] = { + [sym__top_level_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_preproc_else] = STATE(10758), + [sym_preproc_elif] = STATE(10758), + [sym_preproc_elifdef] = STATE(10758), + [sym_function_definition] = STATE(36), + [sym_declaration] = STATE(36), + [sym_type_definition] = STATE(36), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(36), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(36), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(36), + [sym_labeled_statement] = STATE(36), + [sym__top_level_expression_statement] = STATE(36), + [sym_if_statement] = STATE(36), + [sym_switch_statement] = STATE(36), + [sym_case_statement] = STATE(36), + [sym_while_statement] = STATE(36), + [sym_do_statement] = STATE(36), + [sym_for_statement] = STATE(36), + [sym_return_statement] = STATE(36), + [sym_break_statement] = STATE(36), + [sym_continue_statement] = STATE(36), + [sym_goto_statement] = STATE(36), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(36), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(36), + [sym_export_declaration] = STATE(36), + [sym_import_declaration] = STATE(36), + [sym_global_module_fragment_declaration] = STATE(36), + [sym_private_module_fragment_declaration] = STATE(36), + [sym_template_declaration] = STATE(36), + [sym_template_instantiation] = STATE(36), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(36), + [sym_operator_cast_declaration] = STATE(36), + [sym_constructor_or_destructor_definition] = STATE(36), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [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_consteval_block_declaration] = STATE(36), + [sym_concept_definition] = STATE(36), + [sym_for_range_loop] = STATE(36), + [sym_co_return_statement] = STATE(36), + [sym_co_yield_statement] = STATE(36), + [sym_throw_statement] = STATE(36), + [sym_try_statement] = STATE(36), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(36), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(36), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(445), + [aux_sym_preproc_if_token2] = ACTIONS(443), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -51406,7 +51195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(46)] = { + [STATE(45)] = { [sym__top_level_item] = STATE(34), [sym_preproc_include] = STATE(34), [sym_preproc_def] = STATE(34), @@ -51414,36 +51203,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(34), [sym_preproc_if] = STATE(34), [sym_preproc_ifdef] = STATE(34), - [sym_preproc_else] = STATE(11569), - [sym_preproc_elif] = STATE(11569), - [sym_preproc_elifdef] = STATE(11569), + [sym_preproc_else] = STATE(11256), + [sym_preproc_elif] = STATE(11256), + [sym_preproc_elifdef] = STATE(11256), [sym_function_definition] = STATE(34), [sym_declaration] = STATE(34), [sym_type_definition] = STATE(34), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(34), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), [sym_compound_statement] = STATE(34), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), [sym__top_level_statement] = STATE(34), [sym_labeled_statement] = STATE(34), [sym__top_level_expression_statement] = STATE(34), @@ -51457,38 +51246,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(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), [sym__empty_declaration] = STATE(34), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_module_declaration] = STATE(34), [sym_export_declaration] = STATE(34), [sym_import_declaration] = STATE(34), @@ -51496,15 +51285,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(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(34), [sym_operator_cast_declaration] = STATE(34), [sym_constructor_or_destructor_definition] = STATE(34), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), [sym_namespace_definition] = STATE(34), [sym_namespace_alias_definition] = STATE(34), [sym_using_declaration] = STATE(34), @@ -51517,40 +51306,40 @@ 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(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), [sym_expansion_statement] = STATE(34), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), [aux_sym_translation_unit_repeat1] = STATE(34), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(447), + [aux_sym_preproc_if_token2] = ACTIONS(445), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -51688,151 +51477,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(417), }, - [STATE(47)] = { - [sym__top_level_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_preproc_else] = STATE(11201), - [sym_preproc_elif] = STATE(11201), - [sym_preproc_elifdef] = STATE(11201), - [sym_function_definition] = STATE(38), - [sym_declaration] = STATE(38), - [sym_type_definition] = STATE(38), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(38), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(38), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), - [sym__top_level_statement] = STATE(38), - [sym_labeled_statement] = STATE(38), - [sym__top_level_expression_statement] = STATE(38), - [sym_if_statement] = STATE(38), - [sym_switch_statement] = STATE(38), - [sym_case_statement] = STATE(38), - [sym_while_statement] = STATE(38), - [sym_do_statement] = STATE(38), - [sym_for_statement] = STATE(38), - [sym_return_statement] = STATE(38), - [sym_break_statement] = STATE(38), - [sym_continue_statement] = STATE(38), - [sym_goto_statement] = STATE(38), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), - [sym__empty_declaration] = STATE(38), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(38), - [sym_export_declaration] = STATE(38), - [sym_import_declaration] = STATE(38), - [sym_global_module_fragment_declaration] = STATE(38), - [sym_private_module_fragment_declaration] = STATE(38), - [sym_template_declaration] = STATE(38), - [sym_template_instantiation] = STATE(38), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(38), - [sym_operator_cast_declaration] = STATE(38), - [sym_constructor_or_destructor_definition] = STATE(38), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), - [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_consteval_block_declaration] = STATE(38), - [sym_concept_definition] = STATE(38), - [sym_for_range_loop] = STATE(38), - [sym_co_return_statement] = STATE(38), - [sym_co_yield_statement] = STATE(38), - [sym_throw_statement] = STATE(38), - [sym_try_statement] = STATE(38), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), - [sym_expansion_statement] = STATE(38), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), - [aux_sym_translation_unit_repeat1] = STATE(38), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [STATE(46)] = { + [sym__top_level_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_preproc_else] = STATE(11258), + [sym_preproc_elif] = STATE(11258), + [sym_preproc_elifdef] = STATE(11258), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [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_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), [aux_sym_preproc_if_token1] = ACTIONS(401), - [aux_sym_preproc_if_token2] = ACTIONS(449), + [aux_sym_preproc_if_token2] = ACTIONS(447), + [aux_sym_preproc_ifdef_token1] = ACTIONS(405), + [aux_sym_preproc_ifdef_token2] = ACTIONS(405), + [aux_sym_preproc_else_token1] = ACTIONS(407), + [aux_sym_preproc_elif_token1] = ACTIONS(409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(411), + [sym_preproc_directive] = ACTIONS(297), + [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(413), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(305), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(307), + [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(309), + [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(311), + [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(313), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(415), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(417), + [sym_false] = ACTIONS(417), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(419), + [anon_sym_module] = ACTIONS(421), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(347), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(417), + }, + [STATE(47)] = { + [sym__top_level_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_preproc_else] = STATE(10760), + [sym_preproc_elif] = STATE(10760), + [sym_preproc_elifdef] = STATE(10760), + [sym_function_definition] = STATE(50), + [sym_declaration] = STATE(50), + [sym_type_definition] = STATE(50), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(50), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(50), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), + [sym__top_level_statement] = STATE(50), + [sym_labeled_statement] = STATE(50), + [sym__top_level_expression_statement] = STATE(50), + [sym_if_statement] = STATE(50), + [sym_switch_statement] = STATE(50), + [sym_case_statement] = STATE(50), + [sym_while_statement] = STATE(50), + [sym_do_statement] = STATE(50), + [sym_for_statement] = STATE(50), + [sym_return_statement] = STATE(50), + [sym_break_statement] = STATE(50), + [sym_continue_statement] = STATE(50), + [sym_goto_statement] = STATE(50), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), + [sym__empty_declaration] = STATE(50), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(50), + [sym_export_declaration] = STATE(50), + [sym_import_declaration] = STATE(50), + [sym_global_module_fragment_declaration] = STATE(50), + [sym_private_module_fragment_declaration] = STATE(50), + [sym_template_declaration] = STATE(50), + [sym_template_instantiation] = STATE(50), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(50), + [sym_operator_cast_declaration] = STATE(50), + [sym_constructor_or_destructor_definition] = STATE(50), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), + [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_consteval_block_declaration] = STATE(50), + [sym_concept_definition] = STATE(50), + [sym_for_range_loop] = STATE(50), + [sym_co_return_statement] = STATE(50), + [sym_co_yield_statement] = STATE(50), + [sym_throw_statement] = STATE(50), + [sym_try_statement] = STATE(50), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), + [sym_expansion_statement] = STATE(50), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), + [aux_sym_translation_unit_repeat1] = STATE(50), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), + [sym_identifier] = ACTIONS(399), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(401), + [aux_sym_preproc_if_token2] = ACTIONS(449), [aux_sym_preproc_ifdef_token1] = ACTIONS(405), [aux_sym_preproc_ifdef_token2] = ACTIONS(405), [aux_sym_preproc_else_token1] = ACTIONS(407), @@ -51978,36 +52049,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_call] = STATE(50), [sym_preproc_if] = STATE(50), [sym_preproc_ifdef] = STATE(50), - [sym_preproc_else] = STATE(11026), - [sym_preproc_elif] = STATE(11026), - [sym_preproc_elifdef] = STATE(11026), + [sym_preproc_else] = STATE(10674), + [sym_preproc_elif] = STATE(10674), + [sym_preproc_elifdef] = STATE(10674), [sym_function_definition] = STATE(50), [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -52021,38 +52092,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(50), [sym_continue_statement] = STATE(50), [sym_goto_statement] = STATE(50), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -52060,15 +52131,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(50), [sym_template_declaration] = STATE(50), [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(50), [sym_operator_cast_declaration] = STATE(50), [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -52081,35 +52152,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(50), [sym_throw_statement] = STATE(50), [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(399), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -52261,92 +52332,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(49), [sym_declaration] = STATE(49), [sym_type_definition] = STATE(49), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(49), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), [sym_statement] = STATE(49), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(49), [sym_preproc_if_in_block] = STATE(49), [sym_preproc_ifdef_in_block] = STATE(49), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(49), [sym_import_declaration] = STATE(49), [sym_template_declaration] = STATE(49), [sym_template_instantiation] = STATE(49), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(49), [sym_operator_cast_declaration] = STATE(49), [sym_constructor_or_destructor_definition] = STATE(49), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(49), [sym_namespace_alias_definition] = STATE(49), @@ -52355,40 +52426,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(49), [sym_consteval_block_declaration] = STATE(49), [sym_concept_definition] = STATE(49), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(49), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(453), [aux_sym_preproc_include_token1] = ACTIONS(456), [aux_sym_preproc_def_token1] = ACTIONS(459), @@ -52543,30 +52614,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(50), [sym_declaration] = STATE(50), [sym_type_definition] = STATE(50), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), [sym_linkage_specification] = STATE(50), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), [sym_compound_statement] = STATE(50), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(542), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(532), [sym__top_level_statement] = STATE(50), [sym_labeled_statement] = STATE(50), [sym__top_level_expression_statement] = STATE(50), @@ -52580,38 +52651,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(50), [sym_continue_statement] = STATE(50), [sym_goto_statement] = STATE(50), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7275), - [sym_conditional_expression] = STATE(7441), - [sym_assignment_expression] = STATE(7441), - [sym_pointer_expression] = STATE(5968), - [sym_unary_expression] = STATE(7441), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7441), - [sym_cast_expression] = STATE(7441), - [sym_sizeof_expression] = STATE(7441), - [sym_alignof_expression] = STATE(7441), - [sym_offsetof_expression] = STATE(7441), - [sym_generic_expression] = STATE(7441), - [sym_subscript_expression] = STATE(5968), - [sym_call_expression] = STATE(5968), - [sym_gnu_asm_expression] = STATE(7441), - [sym_extension_expression] = STATE(7441), - [sym_field_expression] = STATE(5968), - [sym_compound_literal_expression] = STATE(7441), - [sym_parenthesized_expression] = STATE(5968), - [sym_char_literal] = STATE(7275), - [sym_concatenated_string] = STATE(7275), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7441), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7274), + [sym_conditional_expression] = STATE(7483), + [sym_assignment_expression] = STATE(7483), + [sym_pointer_expression] = STATE(5962), + [sym_unary_expression] = STATE(7483), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7483), + [sym_cast_expression] = STATE(7483), + [sym_sizeof_expression] = STATE(7483), + [sym_alignof_expression] = STATE(7483), + [sym_offsetof_expression] = STATE(7483), + [sym_generic_expression] = STATE(7483), + [sym_subscript_expression] = STATE(5962), + [sym_call_expression] = STATE(5962), + [sym_gnu_asm_expression] = STATE(7483), + [sym_extension_expression] = STATE(7483), + [sym_field_expression] = STATE(5962), + [sym_compound_literal_expression] = STATE(7483), + [sym_parenthesized_expression] = STATE(5962), + [sym_char_literal] = STATE(7274), + [sym_concatenated_string] = STATE(7274), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7483), [sym__empty_declaration] = STATE(50), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), [sym_module_declaration] = STATE(50), [sym_export_declaration] = STATE(50), [sym_import_declaration] = STATE(50), @@ -52619,15 +52690,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(50), [sym_template_declaration] = STATE(50), [sym_template_instantiation] = STATE(50), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), [sym_operator_cast_definition] = STATE(50), [sym_operator_cast_declaration] = STATE(50), [sym_constructor_or_destructor_definition] = STATE(50), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7330), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7312), [sym_namespace_definition] = STATE(50), [sym_namespace_alias_definition] = STATE(50), [sym_using_declaration] = STATE(50), @@ -52640,35 +52711,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(50), [sym_throw_statement] = STATE(50), [sym_try_statement] = STATE(50), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7441), - [sym_new_expression] = STATE(7441), - [sym_delete_expression] = STATE(7441), - [sym_requires_clause] = STATE(7441), - [sym_requires_expression] = STATE(7441), - [sym_lambda_expression] = STATE(7441), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7441), - [sym_parameter_pack_expansion] = STATE(7441), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5735), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(7441), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7349), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7483), + [sym_new_expression] = STATE(7483), + [sym_delete_expression] = STATE(7483), + [sym_requires_clause] = STATE(7483), + [sym_requires_expression] = STATE(7483), + [sym_lambda_expression] = STATE(7483), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7483), + [sym_parameter_pack_expansion] = STATE(7483), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5804), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(7483), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7330), [sym_expansion_statement] = STATE(50), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5968), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5962), [aux_sym_translation_unit_repeat1] = STATE(50), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(707), [aux_sym_preproc_include_token1] = ACTIONS(710), [aux_sym_preproc_def_token1] = ACTIONS(713), @@ -52820,92 +52891,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(72), [sym_declaration] = STATE(72), [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(72), [sym_preproc_if_in_block] = STATE(72), [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(72), [sym_import_declaration] = STATE(72), [sym_template_declaration] = STATE(72), [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(72), [sym_operator_cast_declaration] = STATE(72), [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(72), [sym_namespace_alias_definition] = STATE(72), @@ -52914,41 +52985,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(72), [sym_consteval_block_declaration] = STATE(72), [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -52981,8 +53052,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(960), - [anon_sym_RBRACE] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53088,419 +53159,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(52)] = { - [sym__block_item] = STATE(52), - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6413), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2707), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8810), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(637), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4502), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(650), - [sym_statement] = STATE(52), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(52), - [sym_preproc_if_in_block] = STATE(52), - [sym_preproc_ifdef_in_block] = STATE(52), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2454), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(52), - [sym_import_declaration] = STATE(52), - [sym_template_declaration] = STATE(52), - [sym_template_instantiation] = STATE(52), - [sym_operator_cast] = STATE(9210), - [sym__constructor_specifiers] = STATE(2454), - [sym_operator_cast_definition] = STATE(52), - [sym_operator_cast_declaration] = STATE(52), - [sym_constructor_or_destructor_definition] = STATE(52), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(52), - [sym_namespace_alias_definition] = STATE(52), - [sym_using_declaration] = STATE(52), - [sym_alias_declaration] = STATE(52), - [sym_static_assert_declaration] = STATE(52), - [sym_consteval_block_declaration] = STATE(52), - [sym_concept_definition] = STATE(52), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9210), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(52), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2454), - [sym_identifier] = ACTIONS(964), - [aux_sym_preproc_include_token1] = ACTIONS(967), - [aux_sym_preproc_def_token1] = ACTIONS(970), - [aux_sym_preproc_if_token1] = ACTIONS(973), - [aux_sym_preproc_if_token2] = ACTIONS(465), - [aux_sym_preproc_ifdef_token1] = ACTIONS(976), - [aux_sym_preproc_ifdef_token2] = ACTIONS(976), - [sym_preproc_directive] = ACTIONS(979), - [anon_sym_LPAREN2] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(485), - [anon_sym_AMP_AMP] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym___extension__] = ACTIONS(985), - [anon_sym_typedef] = ACTIONS(988), - [anon_sym_virtual] = ACTIONS(503), - [anon_sym_extern] = ACTIONS(991), - [anon_sym___attribute__] = ACTIONS(509), - [anon_sym___attribute] = ACTIONS(509), - [anon_sym_using] = ACTIONS(994), - [anon_sym_COLON_COLON] = ACTIONS(515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(518), - [anon_sym___declspec] = ACTIONS(521), - [anon_sym___based] = ACTIONS(524), - [anon_sym___cdecl] = ACTIONS(527), - [anon_sym___clrcall] = ACTIONS(527), - [anon_sym___stdcall] = ACTIONS(527), - [anon_sym___fastcall] = ACTIONS(527), - [anon_sym___thiscall] = ACTIONS(527), - [anon_sym___vectorcall] = ACTIONS(527), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_signed] = ACTIONS(533), - [anon_sym_unsigned] = ACTIONS(533), - [anon_sym_long] = ACTIONS(533), - [anon_sym_short] = ACTIONS(533), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_static] = ACTIONS(539), - [anon_sym_register] = ACTIONS(539), - [anon_sym_inline] = ACTIONS(1000), - [anon_sym___inline] = ACTIONS(539), - [anon_sym___inline__] = ACTIONS(539), - [anon_sym___forceinline] = ACTIONS(539), - [anon_sym_thread_local] = ACTIONS(539), - [anon_sym___thread] = ACTIONS(539), - [anon_sym_const] = ACTIONS(545), - [anon_sym_constexpr] = ACTIONS(545), - [anon_sym_volatile] = ACTIONS(545), - [anon_sym_restrict] = ACTIONS(545), - [anon_sym___restrict__] = ACTIONS(545), - [anon_sym__Atomic] = ACTIONS(545), - [anon_sym__Noreturn] = ACTIONS(545), - [anon_sym_noreturn] = ACTIONS(545), - [anon_sym__Nonnull] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(545), - [anon_sym_constinit] = ACTIONS(545), - [anon_sym_consteval] = ACTIONS(1003), - [anon_sym_alignas] = ACTIONS(551), - [anon_sym__Alignas] = ACTIONS(551), - [sym_primitive_type] = ACTIONS(554), - [anon_sym_enum] = ACTIONS(557), - [anon_sym_class] = ACTIONS(560), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_union] = ACTIONS(566), - [anon_sym_if] = ACTIONS(1006), - [anon_sym_switch] = ACTIONS(1009), - [anon_sym_case] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1024), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1030), - [anon_sym_continue] = ACTIONS(1033), - [anon_sym_goto] = ACTIONS(1036), - [anon_sym___try] = ACTIONS(1039), - [anon_sym___leave] = ACTIONS(1042), - [anon_sym_not] = ACTIONS(482), - [anon_sym_compl] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(608), - [anon_sym_PLUS_PLUS] = ACTIONS(608), - [anon_sym_sizeof] = ACTIONS(611), - [anon_sym___alignof__] = ACTIONS(614), - [anon_sym___alignof] = ACTIONS(614), - [anon_sym__alignof] = ACTIONS(614), - [anon_sym_alignof] = ACTIONS(614), - [anon_sym__Alignof] = ACTIONS(614), - [anon_sym_offsetof] = ACTIONS(617), - [anon_sym__Generic] = ACTIONS(620), - [anon_sym_typename] = ACTIONS(623), - [anon_sym_asm] = ACTIONS(626), - [anon_sym___asm__] = ACTIONS(626), - [anon_sym___asm] = ACTIONS(626), - [sym_number_literal] = ACTIONS(629), - [anon_sym_L_SQUOTE] = ACTIONS(632), - [anon_sym_u_SQUOTE] = ACTIONS(632), - [anon_sym_U_SQUOTE] = ACTIONS(632), - [anon_sym_u8_SQUOTE] = ACTIONS(632), - [anon_sym_SQUOTE] = ACTIONS(632), - [anon_sym_L_DQUOTE] = ACTIONS(635), - [anon_sym_u_DQUOTE] = ACTIONS(635), - [anon_sym_U_DQUOTE] = ACTIONS(635), - [anon_sym_u8_DQUOTE] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(635), - [sym_true] = ACTIONS(638), - [sym_false] = ACTIONS(638), - [anon_sym_NULL] = ACTIONS(641), - [anon_sym_nullptr] = ACTIONS(641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(644), - [anon_sym_decltype] = ACTIONS(647), - [anon_sym_explicit] = ACTIONS(650), - [anon_sym_export] = ACTIONS(1045), - [anon_sym_import] = ACTIONS(1048), - [anon_sym_template] = ACTIONS(1051), - [anon_sym_operator] = ACTIONS(662), - [anon_sym_try] = ACTIONS(1054), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_throw] = ACTIONS(1057), - [anon_sym_namespace] = ACTIONS(1060), - [anon_sym_static_assert] = ACTIONS(1063), - [anon_sym_concept] = ACTIONS(1066), - [anon_sym_co_return] = ACTIONS(1069), - [anon_sym_co_yield] = ACTIONS(1072), - [anon_sym_R_DQUOTE] = ACTIONS(689), - [anon_sym_LR_DQUOTE] = ACTIONS(689), - [anon_sym_uR_DQUOTE] = ACTIONS(689), - [anon_sym_UR_DQUOTE] = ACTIONS(689), - [anon_sym_u8R_DQUOTE] = ACTIONS(689), - [anon_sym_co_await] = ACTIONS(692), - [anon_sym_new] = ACTIONS(695), - [anon_sym_requires] = ACTIONS(698), - [anon_sym_CARET_CARET] = ACTIONS(701), - [anon_sym_LBRACK_COLON] = ACTIONS(704), - [sym_this] = ACTIONS(638), - }, - [STATE(53)] = { - [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_function_definition] = STATE(55), - [sym_declaration] = STATE(55), - [sym_type_definition] = STATE(55), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(55), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(55), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(55), - [sym_preproc_if_in_block] = STATE(55), - [sym_preproc_ifdef_in_block] = STATE(55), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(55), - [sym_import_declaration] = STATE(55), - [sym_template_declaration] = STATE(55), - [sym_template_instantiation] = STATE(55), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(55), - [sym_operator_cast_declaration] = STATE(55), - [sym_constructor_or_destructor_definition] = STATE(55), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(55), - [sym_concept_definition] = STATE(55), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(55), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -53533,8 +53328,284 @@ 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(960), - [anon_sym_RBRACE] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(962), + [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(203), + [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(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(53)] = { + [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_function_definition] = STATE(55), + [sym_declaration] = STATE(55), + [sym_type_definition] = STATE(55), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(55), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(55), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(55), + [sym_preproc_if_in_block] = STATE(55), + [sym_preproc_ifdef_in_block] = STATE(55), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(55), + [sym_import_declaration] = STATE(55), + [sym_template_declaration] = STATE(55), + [sym_template_instantiation] = STATE(55), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(55), + [sym_operator_cast_declaration] = STATE(55), + [sym_constructor_or_destructor_definition] = STATE(55), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(55), + [sym_concept_definition] = STATE(55), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(55), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(195), + [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(958), + [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53640,142 +53711,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(54)] = { - [sym__block_item] = STATE(408), - [sym_preproc_include] = STATE(408), - [sym_preproc_def] = STATE(408), - [sym_preproc_function_def] = STATE(408), - [sym_preproc_call] = STATE(408), - [sym_function_definition] = STATE(408), - [sym_declaration] = STATE(408), - [sym_type_definition] = STATE(408), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(408), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym_declaration_list] = STATE(408), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), - [sym_statement] = STATE(408), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(408), - [sym_preproc_if_in_block] = STATE(408), - [sym_preproc_ifdef_in_block] = STATE(408), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(408), - [sym_import_declaration] = STATE(408), - [sym_template_declaration] = STATE(408), - [sym_template_instantiation] = STATE(408), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(408), - [sym_operator_cast_declaration] = STATE(408), - [sym_constructor_or_destructor_definition] = STATE(408), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(452), + [sym_preproc_include] = STATE(452), + [sym_preproc_def] = STATE(452), + [sym_preproc_function_def] = STATE(452), + [sym_preproc_call] = STATE(452), + [sym_function_definition] = STATE(452), + [sym_declaration] = STATE(452), + [sym_type_definition] = STATE(452), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(452), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym_declaration_list] = STATE(452), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), + [sym_statement] = STATE(452), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(452), + [sym_preproc_if_in_block] = STATE(452), + [sym_preproc_ifdef_in_block] = STATE(452), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(452), + [sym_import_declaration] = STATE(452), + [sym_template_declaration] = STATE(452), + [sym_template_instantiation] = STATE(452), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(452), + [sym_operator_cast_declaration] = STATE(452), + [sym_constructor_or_destructor_definition] = STATE(452), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(408), - [sym_namespace_alias_definition] = STATE(408), - [sym_using_declaration] = STATE(408), - [sym_alias_declaration] = STATE(408), - [sym_static_assert_declaration] = STATE(408), - [sym_consteval_block_declaration] = STATE(408), - [sym_concept_definition] = STATE(408), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), + [sym_namespace_definition] = STATE(452), + [sym_namespace_alias_definition] = STATE(452), + [sym_using_declaration] = STATE(452), + [sym_alias_declaration] = STATE(452), + [sym_static_assert_declaration] = STATE(452), + [sym_consteval_block_declaration] = STATE(452), + [sym_concept_definition] = STATE(452), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), [sym_identifier] = ACTIONS(279), [aux_sym_preproc_include_token1] = ACTIONS(281), [aux_sym_preproc_def_token1] = ACTIONS(283), @@ -53809,7 +53880,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(1077), + [anon_sym_LBRACE] = ACTIONS(966), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -53891,7 +53962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), [anon_sym_export] = ACTIONS(341), - [anon_sym_module] = ACTIONS(1079), + [anon_sym_module] = ACTIONS(968), [anon_sym_import] = ACTIONS(343), [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), @@ -53916,143 +53987,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(55)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -54085,8 +54156,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(960), - [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(970), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -54192,143 +54263,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(56)] = { - [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_function_definition] = STATE(61), - [sym_declaration] = STATE(61), - [sym_type_definition] = STATE(61), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(61), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(61), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(61), - [sym_preproc_if_in_block] = STATE(61), - [sym_preproc_ifdef_in_block] = STATE(61), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(61), - [sym_import_declaration] = STATE(61), - [sym_template_declaration] = STATE(61), - [sym_template_instantiation] = STATE(61), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(61), - [sym_operator_cast_declaration] = STATE(61), - [sym_constructor_or_destructor_definition] = STATE(61), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(60), + [sym_declaration] = STATE(60), + [sym_type_definition] = STATE(60), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(60), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(60), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(60), + [sym_preproc_if_in_block] = STATE(60), + [sym_preproc_ifdef_in_block] = STATE(60), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(60), + [sym_import_declaration] = STATE(60), + [sym_template_declaration] = STATE(60), + [sym_template_instantiation] = STATE(60), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(60), + [sym_operator_cast_declaration] = STATE(60), + [sym_constructor_or_destructor_definition] = STATE(60), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(61), - [sym_concept_definition] = STATE(61), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(61), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(60), + [sym_concept_definition] = STATE(60), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(60), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -54361,8 +54432,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(960), - [anon_sym_RBRACE] = ACTIONS(1083), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(972), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -54468,143 +54539,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(57)] = { - [sym__block_item] = STATE(62), - [sym_preproc_include] = STATE(62), - [sym_preproc_def] = STATE(62), - [sym_preproc_function_def] = STATE(62), - [sym_preproc_call] = STATE(62), - [sym_function_definition] = STATE(62), - [sym_declaration] = STATE(62), - [sym_type_definition] = STATE(62), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(62), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(62), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(62), - [sym_preproc_if_in_block] = STATE(62), - [sym_preproc_ifdef_in_block] = STATE(62), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(62), - [sym_import_declaration] = STATE(62), - [sym_template_declaration] = STATE(62), - [sym_template_instantiation] = STATE(62), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(62), - [sym_operator_cast_declaration] = STATE(62), - [sym_constructor_or_destructor_definition] = STATE(62), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(61), + [sym_declaration] = STATE(61), + [sym_type_definition] = STATE(61), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(61), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(61), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(61), + [sym_preproc_if_in_block] = STATE(61), + [sym_preproc_ifdef_in_block] = STATE(61), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(61), + [sym_import_declaration] = STATE(61), + [sym_template_declaration] = STATE(61), + [sym_template_instantiation] = STATE(61), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(61), + [sym_operator_cast_declaration] = STATE(61), + [sym_constructor_or_destructor_definition] = STATE(61), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(62), - [sym_namespace_alias_definition] = STATE(62), - [sym_using_declaration] = STATE(62), - [sym_alias_declaration] = STATE(62), - [sym_static_assert_declaration] = STATE(62), - [sym_consteval_block_declaration] = STATE(62), - [sym_concept_definition] = STATE(62), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(62), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(61), + [sym_concept_definition] = STATE(61), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(61), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -54637,8 +54708,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(960), - [anon_sym_RBRACE] = ACTIONS(1085), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(974), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -54744,143 +54815,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(58)] = { - [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_function_definition] = STATE(77), - [sym_declaration] = STATE(77), - [sym_type_definition] = STATE(77), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(77), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(77), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(77), - [sym_preproc_if_in_block] = STATE(77), - [sym_preproc_ifdef_in_block] = STATE(77), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(77), - [sym_import_declaration] = STATE(77), - [sym_template_declaration] = STATE(77), - [sym_template_instantiation] = STATE(77), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(77), - [sym_operator_cast_declaration] = STATE(77), - [sym_constructor_or_destructor_definition] = STATE(77), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(73), + [sym_preproc_include] = STATE(73), + [sym_preproc_def] = STATE(73), + [sym_preproc_function_def] = STATE(73), + [sym_preproc_call] = STATE(73), + [sym_function_definition] = STATE(73), + [sym_declaration] = STATE(73), + [sym_type_definition] = STATE(73), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(73), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(73), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(73), + [sym_preproc_if_in_block] = STATE(73), + [sym_preproc_ifdef_in_block] = STATE(73), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(73), + [sym_import_declaration] = STATE(73), + [sym_template_declaration] = STATE(73), + [sym_template_instantiation] = STATE(73), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(73), + [sym_operator_cast_declaration] = STATE(73), + [sym_constructor_or_destructor_definition] = STATE(73), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(77), - [sym_concept_definition] = STATE(77), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(77), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(73), + [sym_namespace_alias_definition] = STATE(73), + [sym_using_declaration] = STATE(73), + [sym_alias_declaration] = STATE(73), + [sym_static_assert_declaration] = STATE(73), + [sym_consteval_block_declaration] = STATE(73), + [sym_concept_definition] = STATE(73), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(73), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -54913,8 +54984,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(960), - [anon_sym_RBRACE] = ACTIONS(1087), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(976), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -55020,6 +55091,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(59)] = { + [sym__block_item] = STATE(68), + [sym_preproc_include] = STATE(68), + [sym_preproc_def] = STATE(68), + [sym_preproc_function_def] = STATE(68), + [sym_preproc_call] = STATE(68), + [sym_function_definition] = STATE(68), + [sym_declaration] = STATE(68), + [sym_type_definition] = STATE(68), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6402), + [sym_linkage_specification] = STATE(68), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2720), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8795), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(571), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4419), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(725), + [sym_statement] = STATE(68), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(68), + [sym_preproc_if_in_block] = STATE(68), + [sym_preproc_ifdef_in_block] = STATE(68), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2503), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(68), + [sym_import_declaration] = STATE(68), + [sym_template_declaration] = STATE(68), + [sym_template_instantiation] = STATE(68), + [sym_operator_cast] = STATE(9184), + [sym__constructor_specifiers] = STATE(2503), + [sym_operator_cast_definition] = STATE(68), + [sym_operator_cast_declaration] = STATE(68), + [sym_constructor_or_destructor_definition] = STATE(68), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(68), + [sym_concept_definition] = STATE(68), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9184), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(68), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2503), + [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), + [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(992), + [anon_sym___extension__] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(998), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1000), + [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(1002), + [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(1004), + [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(1006), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_import] = ACTIONS(1036), + [anon_sym_template] = ACTIONS(1038), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(1040), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_static_assert] = ACTIONS(1046), + [anon_sym_concept] = ACTIONS(1048), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(60)] = { [sym__block_item] = STATE(69), [sym_preproc_include] = STATE(69), [sym_preproc_def] = STATE(69), @@ -55028,92 +55375,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(69), [sym_declaration] = STATE(69), [sym_type_definition] = STATE(69), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6413), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(69), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2707), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8810), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(637), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4502), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(650), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(69), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(69), [sym_preproc_if_in_block] = STATE(69), [sym_preproc_ifdef_in_block] = STATE(69), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2454), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(69), [sym_import_declaration] = STATE(69), [sym_template_declaration] = STATE(69), [sym_template_instantiation] = STATE(69), - [sym_operator_cast] = STATE(9210), - [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(69), [sym_operator_cast_declaration] = STATE(69), [sym_constructor_or_destructor_definition] = STATE(69), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(69), [sym_namespace_alias_definition] = STATE(69), @@ -55122,48 +55469,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(69), [sym_consteval_block_declaration] = STATE(69), [sym_concept_definition] = STATE(69), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9210), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(69), [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2454), - [sym_identifier] = ACTIONS(1089), - [aux_sym_preproc_include_token1] = ACTIONS(1091), - [aux_sym_preproc_def_token1] = ACTIONS(1093), - [aux_sym_preproc_if_token1] = ACTIONS(1095), - [aux_sym_preproc_if_token2] = ACTIONS(1097), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1099), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1099), - [sym_preproc_directive] = ACTIONS(1101), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -55172,14 +55518,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(1103), - [anon_sym___extension__] = ACTIONS(1105), - [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -55190,7 +55536,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(1113), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1054), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -55198,7 +55545,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(1115), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -55215,7 +55562,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(1117), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -55223,19 +55570,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -55271,18 +55618,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(1145), - [anon_sym_import] = ACTIONS(1147), - [anon_sym_template] = ACTIONS(1149), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1155), - [anon_sym_static_assert] = ACTIONS(1157), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -55295,144 +55642,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(60)] = { - [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_function_definition] = STATE(81), - [sym_declaration] = STATE(81), - [sym_type_definition] = STATE(81), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(81), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(81), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(81), - [sym_preproc_if_in_block] = STATE(81), - [sym_preproc_ifdef_in_block] = STATE(81), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(81), - [sym_import_declaration] = STATE(81), - [sym_template_declaration] = STATE(81), - [sym_template_instantiation] = STATE(81), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(81), - [sym_operator_cast_declaration] = STATE(81), - [sym_constructor_or_destructor_definition] = STATE(81), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(61)] = { + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(81), - [sym_concept_definition] = STATE(81), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(81), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -55465,8 +55812,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(960), - [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1056), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -55571,144 +55918,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(61)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(62)] = { + [sym__block_item] = STATE(65), + [sym_preproc_include] = STATE(65), + [sym_preproc_def] = STATE(65), + [sym_preproc_function_def] = STATE(65), + [sym_preproc_call] = STATE(65), + [sym_function_definition] = STATE(65), + [sym_declaration] = STATE(65), + [sym_type_definition] = STATE(65), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(65), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(65), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(65), + [sym_preproc_if_in_block] = STATE(65), + [sym_preproc_ifdef_in_block] = STATE(65), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(65), + [sym_import_declaration] = STATE(65), + [sym_template_declaration] = STATE(65), + [sym_template_instantiation] = STATE(65), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(65), + [sym_operator_cast_declaration] = STATE(65), + [sym_constructor_or_destructor_definition] = STATE(65), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(65), + [sym_namespace_alias_definition] = STATE(65), + [sym_using_declaration] = STATE(65), + [sym_alias_declaration] = STATE(65), + [sym_static_assert_declaration] = STATE(65), + [sym_consteval_block_declaration] = STATE(65), + [sym_concept_definition] = STATE(65), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(65), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -55741,8 +56088,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(960), - [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1058), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -55847,150 +56194,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(62)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(63)] = { + [sym__block_item] = STATE(741), + [sym_preproc_include] = STATE(741), + [sym_preproc_def] = STATE(741), + [sym_preproc_function_def] = STATE(741), + [sym_preproc_call] = STATE(741), + [sym_function_definition] = STATE(741), + [sym_declaration] = STATE(741), + [sym_type_definition] = STATE(741), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6402), + [sym_linkage_specification] = STATE(741), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2720), + [sym_declaration_list] = STATE(741), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8795), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(571), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4419), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(725), + [sym_statement] = STATE(741), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(741), + [sym_preproc_if_in_block] = STATE(741), + [sym_preproc_ifdef_in_block] = STATE(741), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2503), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(741), + [sym_import_declaration] = STATE(741), + [sym_template_declaration] = STATE(741), + [sym_template_instantiation] = STATE(741), + [sym_operator_cast] = STATE(9184), + [sym__constructor_specifiers] = STATE(2503), + [sym_operator_cast_definition] = STATE(741), + [sym_operator_cast_declaration] = STATE(741), + [sym_constructor_or_destructor_definition] = STATE(741), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [sym_namespace_definition] = STATE(741), + [sym_namespace_alias_definition] = STATE(741), + [sym_using_declaration] = STATE(741), + [sym_alias_declaration] = STATE(741), + [sym_static_assert_declaration] = STATE(741), + [sym_consteval_block_declaration] = STATE(741), + [sym_concept_definition] = STATE(741), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9184), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2503), + [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_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), @@ -55999,14 +56346,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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(998), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(1000), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -56017,8 +56364,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(960), - [anon_sym_RBRACE] = ACTIONS(1169), + [anon_sym_LBRACE] = ACTIONS(1060), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -56026,7 +56372,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(203), + [anon_sym_inline] = ACTIONS(1004), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -56043,7 +56389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(1006), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -56051,19 +56397,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -56099,18 +56445,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(239), - [anon_sym_import] = ACTIONS(241), - [anon_sym_template] = ACTIONS(243), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_module] = ACTIONS(1062), + [anon_sym_import] = ACTIONS(1036), + [anon_sym_template] = ACTIONS(1038), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(245), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(249), - [anon_sym_static_assert] = ACTIONS(251), - [anon_sym_concept] = ACTIONS(253), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_static_assert] = ACTIONS(1046), + [anon_sym_concept] = ACTIONS(1048), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -56123,144 +56470,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(63)] = { - [sym__block_item] = STATE(65), - [sym_preproc_include] = STATE(65), - [sym_preproc_def] = STATE(65), - [sym_preproc_function_def] = STATE(65), - [sym_preproc_call] = STATE(65), - [sym_function_definition] = STATE(65), - [sym_declaration] = STATE(65), - [sym_type_definition] = STATE(65), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(65), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(65), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(65), - [sym_preproc_if_in_block] = STATE(65), - [sym_preproc_ifdef_in_block] = STATE(65), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(65), - [sym_import_declaration] = STATE(65), - [sym_template_declaration] = STATE(65), - [sym_template_instantiation] = STATE(65), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(65), - [sym_operator_cast_declaration] = STATE(65), - [sym_constructor_or_destructor_definition] = STATE(65), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(65), - [sym_namespace_alias_definition] = STATE(65), - [sym_using_declaration] = STATE(65), - [sym_alias_declaration] = STATE(65), - [sym_static_assert_declaration] = STATE(65), - [sym_consteval_block_declaration] = STATE(65), - [sym_concept_definition] = STATE(65), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(65), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -56293,8 +56640,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(960), - [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1064), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -56399,150 +56746,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(64)] = { - [sym__block_item] = STATE(652), - [sym_preproc_include] = STATE(652), - [sym_preproc_def] = STATE(652), - [sym_preproc_function_def] = STATE(652), - [sym_preproc_call] = STATE(652), - [sym_function_definition] = STATE(652), - [sym_declaration] = STATE(652), - [sym_type_definition] = STATE(652), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6413), - [sym_linkage_specification] = STATE(652), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2707), - [sym_declaration_list] = STATE(652), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8810), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(637), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4502), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(650), - [sym_statement] = STATE(652), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(652), - [sym_preproc_if_in_block] = STATE(652), - [sym_preproc_ifdef_in_block] = STATE(652), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2454), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(652), - [sym_import_declaration] = STATE(652), - [sym_template_declaration] = STATE(652), - [sym_template_instantiation] = STATE(652), - [sym_operator_cast] = STATE(9210), - [sym__constructor_specifiers] = STATE(2454), - [sym_operator_cast_definition] = STATE(652), - [sym_operator_cast_declaration] = STATE(652), - [sym_constructor_or_destructor_definition] = STATE(652), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(65)] = { + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(652), - [sym_namespace_alias_definition] = STATE(652), - [sym_using_declaration] = STATE(652), - [sym_alias_declaration] = STATE(652), - [sym_static_assert_declaration] = STATE(652), - [sym_consteval_block_declaration] = STATE(652), - [sym_concept_definition] = STATE(652), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9210), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2454), - [sym_identifier] = ACTIONS(1089), - [aux_sym_preproc_include_token1] = ACTIONS(1091), - [aux_sym_preproc_def_token1] = ACTIONS(1093), - [aux_sym_preproc_if_token1] = ACTIONS(1095), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1099), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1099), - [sym_preproc_directive] = ACTIONS(1101), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -56551,14 +56898,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(1103), - [anon_sym___extension__] = ACTIONS(1105), - [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -56569,7 +56916,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(1173), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1066), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -56577,7 +56925,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(1115), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -56594,7 +56942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(1117), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -56602,19 +56950,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -56650,19 +56998,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1175), - [anon_sym_import] = ACTIONS(1147), - [anon_sym_template] = ACTIONS(1149), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1155), - [anon_sym_static_assert] = ACTIONS(1157), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -56675,144 +57022,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(65)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(66)] = { + [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_function_definition] = STATE(70), + [sym_declaration] = STATE(70), + [sym_type_definition] = STATE(70), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(70), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(70), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(70), + [sym_preproc_if_in_block] = STATE(70), + [sym_preproc_ifdef_in_block] = STATE(70), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(70), + [sym_import_declaration] = STATE(70), + [sym_template_declaration] = STATE(70), + [sym_template_instantiation] = STATE(70), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(70), + [sym_operator_cast_declaration] = STATE(70), + [sym_constructor_or_destructor_definition] = STATE(70), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(70), + [sym_concept_definition] = STATE(70), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(70), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -56845,8 +57192,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(960), - [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1068), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -56951,144 +57298,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(66)] = { - [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_function_definition] = STATE(70), - [sym_declaration] = STATE(70), - [sym_type_definition] = STATE(70), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(70), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(70), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(70), - [sym_preproc_if_in_block] = STATE(70), - [sym_preproc_ifdef_in_block] = STATE(70), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(70), - [sym_import_declaration] = STATE(70), - [sym_template_declaration] = STATE(70), - [sym_template_instantiation] = STATE(70), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(70), - [sym_operator_cast_declaration] = STATE(70), - [sym_constructor_or_destructor_definition] = STATE(70), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(67)] = { + [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_function_definition] = STATE(71), + [sym_declaration] = STATE(71), + [sym_type_definition] = STATE(71), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(71), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(71), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(71), + [sym_preproc_if_in_block] = STATE(71), + [sym_preproc_ifdef_in_block] = STATE(71), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(71), + [sym_import_declaration] = STATE(71), + [sym_template_declaration] = STATE(71), + [sym_template_instantiation] = STATE(71), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(71), + [sym_operator_cast_declaration] = STATE(71), + [sym_constructor_or_destructor_definition] = STATE(71), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(70), - [sym_concept_definition] = STATE(70), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(70), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(71), + [sym_concept_definition] = STATE(71), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(71), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -57121,8 +57468,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(960), - [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1070), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57227,150 +57574,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(67)] = { - [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_function_definition] = STATE(71), - [sym_declaration] = STATE(71), - [sym_type_definition] = STATE(71), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(71), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(71), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(71), - [sym_preproc_if_in_block] = STATE(71), - [sym_preproc_ifdef_in_block] = STATE(71), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(71), - [sym_import_declaration] = STATE(71), - [sym_template_declaration] = STATE(71), - [sym_template_instantiation] = STATE(71), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(71), - [sym_operator_cast_declaration] = STATE(71), - [sym_constructor_or_destructor_definition] = STATE(71), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(68)] = { + [sym__block_item] = STATE(95), + [sym_preproc_include] = STATE(95), + [sym_preproc_def] = STATE(95), + [sym_preproc_function_def] = STATE(95), + [sym_preproc_call] = STATE(95), + [sym_function_definition] = STATE(95), + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6402), + [sym_linkage_specification] = STATE(95), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2720), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8795), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(571), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4419), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(725), + [sym_statement] = STATE(95), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(95), + [sym_preproc_if_in_block] = STATE(95), + [sym_preproc_ifdef_in_block] = STATE(95), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2503), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(95), + [sym_import_declaration] = STATE(95), + [sym_template_declaration] = STATE(95), + [sym_template_instantiation] = STATE(95), + [sym_operator_cast] = STATE(9184), + [sym__constructor_specifiers] = STATE(2503), + [sym_operator_cast_definition] = STATE(95), + [sym_operator_cast_declaration] = STATE(95), + [sym_constructor_or_destructor_definition] = STATE(95), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(71), - [sym_concept_definition] = STATE(71), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(71), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [sym_namespace_definition] = STATE(95), + [sym_namespace_alias_definition] = STATE(95), + [sym_using_declaration] = STATE(95), + [sym_alias_declaration] = STATE(95), + [sym_static_assert_declaration] = STATE(95), + [sym_consteval_block_declaration] = STATE(95), + [sym_concept_definition] = STATE(95), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9184), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(95), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2503), + [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(1072), + [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), @@ -57379,14 +57727,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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(998), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(1000), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -57397,8 +57745,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(960), - [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57406,7 +57753,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(203), + [anon_sym_inline] = ACTIONS(1004), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -57423,7 +57770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(1006), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -57431,19 +57778,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -57479,18 +57826,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(239), - [anon_sym_import] = ACTIONS(241), - [anon_sym_template] = ACTIONS(243), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_import] = ACTIONS(1036), + [anon_sym_template] = ACTIONS(1038), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(245), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(249), - [anon_sym_static_assert] = ACTIONS(251), - [anon_sym_concept] = ACTIONS(253), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_static_assert] = ACTIONS(1046), + [anon_sym_concept] = ACTIONS(1048), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -57503,144 +57850,420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(68)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(69)] = { + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(1074), + [aux_sym_preproc_include_token1] = ACTIONS(1077), + [aux_sym_preproc_def_token1] = ACTIONS(1080), + [aux_sym_preproc_if_token1] = ACTIONS(1083), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1086), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1086), + [sym_preproc_directive] = ACTIONS(1089), + [anon_sym_LPAREN2] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1092), + [anon_sym___extension__] = ACTIONS(1095), + [anon_sym_typedef] = ACTIONS(1098), + [anon_sym_virtual] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(1101), + [anon_sym___attribute__] = ACTIONS(509), + [anon_sym___attribute] = ACTIONS(509), + [anon_sym_using] = ACTIONS(1104), + [anon_sym_COLON_COLON] = ACTIONS(515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(518), + [anon_sym___declspec] = ACTIONS(521), + [anon_sym___based] = ACTIONS(524), + [anon_sym___cdecl] = ACTIONS(527), + [anon_sym___clrcall] = ACTIONS(527), + [anon_sym___stdcall] = ACTIONS(527), + [anon_sym___fastcall] = ACTIONS(527), + [anon_sym___thiscall] = ACTIONS(527), + [anon_sym___vectorcall] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1107), + [anon_sym_RBRACE] = ACTIONS(1110), + [anon_sym_signed] = ACTIONS(533), + [anon_sym_unsigned] = ACTIONS(533), + [anon_sym_long] = ACTIONS(533), + [anon_sym_short] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_static] = ACTIONS(539), + [anon_sym_register] = ACTIONS(539), + [anon_sym_inline] = ACTIONS(1112), + [anon_sym___inline] = ACTIONS(539), + [anon_sym___inline__] = ACTIONS(539), + [anon_sym___forceinline] = ACTIONS(539), + [anon_sym_thread_local] = ACTIONS(539), + [anon_sym___thread] = ACTIONS(539), + [anon_sym_const] = ACTIONS(545), + [anon_sym_constexpr] = ACTIONS(545), + [anon_sym_volatile] = ACTIONS(545), + [anon_sym_restrict] = ACTIONS(545), + [anon_sym___restrict__] = ACTIONS(545), + [anon_sym__Atomic] = ACTIONS(545), + [anon_sym__Noreturn] = ACTIONS(545), + [anon_sym_noreturn] = ACTIONS(545), + [anon_sym__Nonnull] = ACTIONS(545), + [anon_sym_mutable] = ACTIONS(545), + [anon_sym_constinit] = ACTIONS(545), + [anon_sym_consteval] = ACTIONS(1115), + [anon_sym_alignas] = ACTIONS(551), + [anon_sym__Alignas] = ACTIONS(551), + [sym_primitive_type] = ACTIONS(554), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_class] = ACTIONS(560), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_union] = ACTIONS(566), + [anon_sym_if] = ACTIONS(1118), + [anon_sym_switch] = ACTIONS(1121), + [anon_sym_case] = ACTIONS(1124), + [anon_sym_default] = ACTIONS(1127), + [anon_sym_while] = ACTIONS(1130), + [anon_sym_do] = ACTIONS(1133), + [anon_sym_for] = ACTIONS(1136), + [anon_sym_return] = ACTIONS(1139), + [anon_sym_break] = ACTIONS(1142), + [anon_sym_continue] = ACTIONS(1145), + [anon_sym_goto] = ACTIONS(1148), + [anon_sym___try] = ACTIONS(1151), + [anon_sym___leave] = ACTIONS(1154), + [anon_sym_not] = ACTIONS(482), + [anon_sym_compl] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_sizeof] = ACTIONS(611), + [anon_sym___alignof__] = ACTIONS(614), + [anon_sym___alignof] = ACTIONS(614), + [anon_sym__alignof] = ACTIONS(614), + [anon_sym_alignof] = ACTIONS(614), + [anon_sym__Alignof] = ACTIONS(614), + [anon_sym_offsetof] = ACTIONS(617), + [anon_sym__Generic] = ACTIONS(620), + [anon_sym_typename] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(626), + [anon_sym___asm__] = ACTIONS(626), + [anon_sym___asm] = ACTIONS(626), + [sym_number_literal] = ACTIONS(629), + [anon_sym_L_SQUOTE] = ACTIONS(632), + [anon_sym_u_SQUOTE] = ACTIONS(632), + [anon_sym_U_SQUOTE] = ACTIONS(632), + [anon_sym_u8_SQUOTE] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(632), + [anon_sym_L_DQUOTE] = ACTIONS(635), + [anon_sym_u_DQUOTE] = ACTIONS(635), + [anon_sym_U_DQUOTE] = ACTIONS(635), + [anon_sym_u8_DQUOTE] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_true] = ACTIONS(638), + [sym_false] = ACTIONS(638), + [anon_sym_NULL] = ACTIONS(641), + [anon_sym_nullptr] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(644), + [anon_sym_decltype] = ACTIONS(647), + [anon_sym_explicit] = ACTIONS(650), + [anon_sym_export] = ACTIONS(1157), + [anon_sym_import] = ACTIONS(1160), + [anon_sym_template] = ACTIONS(1163), + [anon_sym_operator] = ACTIONS(662), + [anon_sym_try] = ACTIONS(1166), + [anon_sym_delete] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(1169), + [anon_sym_namespace] = ACTIONS(1172), + [anon_sym_static_assert] = ACTIONS(1175), + [anon_sym_concept] = ACTIONS(1178), + [anon_sym_co_return] = ACTIONS(1181), + [anon_sym_co_yield] = ACTIONS(1184), + [anon_sym_R_DQUOTE] = ACTIONS(689), + [anon_sym_LR_DQUOTE] = ACTIONS(689), + [anon_sym_uR_DQUOTE] = ACTIONS(689), + [anon_sym_UR_DQUOTE] = ACTIONS(689), + [anon_sym_u8R_DQUOTE] = ACTIONS(689), + [anon_sym_co_await] = ACTIONS(692), + [anon_sym_new] = ACTIONS(695), + [anon_sym_requires] = ACTIONS(698), + [anon_sym_CARET_CARET] = ACTIONS(701), + [anon_sym_LBRACK_COLON] = ACTIONS(704), + [sym_this] = ACTIONS(638), + }, + [STATE(70)] = { + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -57673,8 +58296,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(960), - [anon_sym_RBRACE] = ACTIONS(1183), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1187), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57779,151 +58402,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(69)] = { - [sym__block_item] = STATE(52), - [sym_preproc_include] = STATE(52), - [sym_preproc_def] = STATE(52), - [sym_preproc_function_def] = STATE(52), - [sym_preproc_call] = STATE(52), - [sym_function_definition] = STATE(52), - [sym_declaration] = STATE(52), - [sym_type_definition] = STATE(52), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6413), - [sym_linkage_specification] = STATE(52), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2707), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8810), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(637), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4502), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(650), - [sym_statement] = STATE(52), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(52), - [sym_preproc_if_in_block] = STATE(52), - [sym_preproc_ifdef_in_block] = STATE(52), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2454), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(52), - [sym_import_declaration] = STATE(52), - [sym_template_declaration] = STATE(52), - [sym_template_instantiation] = STATE(52), - [sym_operator_cast] = STATE(9210), - [sym__constructor_specifiers] = STATE(2454), - [sym_operator_cast_definition] = STATE(52), - [sym_operator_cast_declaration] = STATE(52), - [sym_constructor_or_destructor_definition] = STATE(52), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(71)] = { + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(52), - [sym_namespace_alias_definition] = STATE(52), - [sym_using_declaration] = STATE(52), - [sym_alias_declaration] = STATE(52), - [sym_static_assert_declaration] = STATE(52), - [sym_consteval_block_declaration] = STATE(52), - [sym_concept_definition] = STATE(52), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9210), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(52), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2454), - [sym_identifier] = ACTIONS(1089), - [aux_sym_preproc_include_token1] = ACTIONS(1091), - [aux_sym_preproc_def_token1] = ACTIONS(1093), - [aux_sym_preproc_if_token1] = ACTIONS(1095), - [aux_sym_preproc_if_token2] = ACTIONS(1185), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1099), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1099), - [sym_preproc_directive] = ACTIONS(1101), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -57932,14 +58554,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(1103), - [anon_sym___extension__] = ACTIONS(1105), - [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -57950,7 +58572,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(1113), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1189), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -57958,7 +58581,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(1115), + [anon_sym_inline] = ACTIONS(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -57975,7 +58598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(1117), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -57983,19 +58606,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -58031,18 +58654,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(1145), - [anon_sym_import] = ACTIONS(1147), - [anon_sym_template] = ACTIONS(1149), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1155), - [anon_sym_static_assert] = ACTIONS(1157), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -58055,144 +58678,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(70)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(72)] = { + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -58225,8 +58848,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(960), - [anon_sym_RBRACE] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1191), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -58331,144 +58954,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(71)] = { - [sym__block_item] = STATE(72), - [sym_preproc_include] = STATE(72), - [sym_preproc_def] = STATE(72), - [sym_preproc_function_def] = STATE(72), - [sym_preproc_call] = STATE(72), - [sym_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(73)] = { + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -58501,8 +59124,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(960), - [anon_sym_RBRACE] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1193), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -58607,420 +59230,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(72)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(1191), - [aux_sym_preproc_include_token1] = ACTIONS(1194), - [aux_sym_preproc_def_token1] = ACTIONS(1197), - [aux_sym_preproc_if_token1] = ACTIONS(1200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1203), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1203), - [sym_preproc_directive] = ACTIONS(1206), - [anon_sym_LPAREN2] = ACTIONS(473), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(479), - [anon_sym_DASH] = ACTIONS(482), - [anon_sym_PLUS] = ACTIONS(482), - [anon_sym_STAR] = ACTIONS(485), - [anon_sym_AMP_AMP] = ACTIONS(488), - [anon_sym_AMP] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1209), - [anon_sym___extension__] = ACTIONS(1212), - [anon_sym_typedef] = ACTIONS(1215), - [anon_sym_virtual] = ACTIONS(503), - [anon_sym_extern] = ACTIONS(1218), - [anon_sym___attribute__] = ACTIONS(509), - [anon_sym___attribute] = ACTIONS(509), - [anon_sym_using] = ACTIONS(1221), - [anon_sym_COLON_COLON] = ACTIONS(515), - [anon_sym_LBRACK_LBRACK] = ACTIONS(518), - [anon_sym___declspec] = ACTIONS(521), - [anon_sym___based] = ACTIONS(524), - [anon_sym___cdecl] = ACTIONS(527), - [anon_sym___clrcall] = ACTIONS(527), - [anon_sym___stdcall] = ACTIONS(527), - [anon_sym___fastcall] = ACTIONS(527), - [anon_sym___thiscall] = ACTIONS(527), - [anon_sym___vectorcall] = ACTIONS(527), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_RBRACE] = ACTIONS(1227), - [anon_sym_signed] = ACTIONS(533), - [anon_sym_unsigned] = ACTIONS(533), - [anon_sym_long] = ACTIONS(533), - [anon_sym_short] = ACTIONS(533), - [anon_sym_LBRACK] = ACTIONS(536), - [anon_sym_static] = ACTIONS(539), - [anon_sym_register] = ACTIONS(539), - [anon_sym_inline] = ACTIONS(1229), - [anon_sym___inline] = ACTIONS(539), - [anon_sym___inline__] = ACTIONS(539), - [anon_sym___forceinline] = ACTIONS(539), - [anon_sym_thread_local] = ACTIONS(539), - [anon_sym___thread] = ACTIONS(539), - [anon_sym_const] = ACTIONS(545), - [anon_sym_constexpr] = ACTIONS(545), - [anon_sym_volatile] = ACTIONS(545), - [anon_sym_restrict] = ACTIONS(545), - [anon_sym___restrict__] = ACTIONS(545), - [anon_sym__Atomic] = ACTIONS(545), - [anon_sym__Noreturn] = ACTIONS(545), - [anon_sym_noreturn] = ACTIONS(545), - [anon_sym__Nonnull] = ACTIONS(545), - [anon_sym_mutable] = ACTIONS(545), - [anon_sym_constinit] = ACTIONS(545), - [anon_sym_consteval] = ACTIONS(1232), - [anon_sym_alignas] = ACTIONS(551), - [anon_sym__Alignas] = ACTIONS(551), - [sym_primitive_type] = ACTIONS(554), - [anon_sym_enum] = ACTIONS(557), - [anon_sym_class] = ACTIONS(560), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_union] = ACTIONS(566), - [anon_sym_if] = ACTIONS(1235), - [anon_sym_switch] = ACTIONS(1238), - [anon_sym_case] = ACTIONS(1241), - [anon_sym_default] = ACTIONS(1244), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_do] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1256), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_goto] = ACTIONS(1265), - [anon_sym___try] = ACTIONS(1268), - [anon_sym___leave] = ACTIONS(1271), - [anon_sym_not] = ACTIONS(482), - [anon_sym_compl] = ACTIONS(482), - [anon_sym_DASH_DASH] = ACTIONS(608), - [anon_sym_PLUS_PLUS] = ACTIONS(608), - [anon_sym_sizeof] = ACTIONS(611), - [anon_sym___alignof__] = ACTIONS(614), - [anon_sym___alignof] = ACTIONS(614), - [anon_sym__alignof] = ACTIONS(614), - [anon_sym_alignof] = ACTIONS(614), - [anon_sym__Alignof] = ACTIONS(614), - [anon_sym_offsetof] = ACTIONS(617), - [anon_sym__Generic] = ACTIONS(620), - [anon_sym_typename] = ACTIONS(623), - [anon_sym_asm] = ACTIONS(626), - [anon_sym___asm__] = ACTIONS(626), - [anon_sym___asm] = ACTIONS(626), - [sym_number_literal] = ACTIONS(629), - [anon_sym_L_SQUOTE] = ACTIONS(632), - [anon_sym_u_SQUOTE] = ACTIONS(632), - [anon_sym_U_SQUOTE] = ACTIONS(632), - [anon_sym_u8_SQUOTE] = ACTIONS(632), - [anon_sym_SQUOTE] = ACTIONS(632), - [anon_sym_L_DQUOTE] = ACTIONS(635), - [anon_sym_u_DQUOTE] = ACTIONS(635), - [anon_sym_U_DQUOTE] = ACTIONS(635), - [anon_sym_u8_DQUOTE] = ACTIONS(635), - [anon_sym_DQUOTE] = ACTIONS(635), - [sym_true] = ACTIONS(638), - [sym_false] = ACTIONS(638), - [anon_sym_NULL] = ACTIONS(641), - [anon_sym_nullptr] = ACTIONS(641), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(644), - [anon_sym_decltype] = ACTIONS(647), - [anon_sym_explicit] = ACTIONS(650), - [anon_sym_export] = ACTIONS(1274), - [anon_sym_import] = ACTIONS(1277), - [anon_sym_template] = ACTIONS(1280), - [anon_sym_operator] = ACTIONS(662), - [anon_sym_try] = ACTIONS(1283), - [anon_sym_delete] = ACTIONS(668), - [anon_sym_throw] = ACTIONS(1286), - [anon_sym_namespace] = ACTIONS(1289), - [anon_sym_static_assert] = ACTIONS(1292), - [anon_sym_concept] = ACTIONS(1295), - [anon_sym_co_return] = ACTIONS(1298), - [anon_sym_co_yield] = ACTIONS(1301), - [anon_sym_R_DQUOTE] = ACTIONS(689), - [anon_sym_LR_DQUOTE] = ACTIONS(689), - [anon_sym_uR_DQUOTE] = ACTIONS(689), - [anon_sym_UR_DQUOTE] = ACTIONS(689), - [anon_sym_u8R_DQUOTE] = ACTIONS(689), - [anon_sym_co_await] = ACTIONS(692), - [anon_sym_new] = ACTIONS(695), - [anon_sym_requires] = ACTIONS(698), - [anon_sym_CARET_CARET] = ACTIONS(701), - [anon_sym_LBRACK_COLON] = ACTIONS(704), - [sym_this] = ACTIONS(638), - }, - [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_function_definition] = STATE(74), - [sym_declaration] = STATE(74), - [sym_type_definition] = STATE(74), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(74), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(74), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(74), - [sym_preproc_if_in_block] = STATE(74), - [sym_preproc_ifdef_in_block] = STATE(74), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(74), - [sym_import_declaration] = STATE(74), - [sym_template_declaration] = STATE(74), - [sym_template_instantiation] = STATE(74), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(74), - [sym_operator_cast_declaration] = STATE(74), - [sym_constructor_or_destructor_definition] = STATE(74), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(74)] = { + [sym__block_item] = STATE(111), + [sym_preproc_include] = STATE(111), + [sym_preproc_def] = STATE(111), + [sym_preproc_function_def] = STATE(111), + [sym_preproc_call] = STATE(111), + [sym_function_definition] = STATE(111), + [sym_declaration] = STATE(111), + [sym_type_definition] = STATE(111), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(111), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(111), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(111), + [sym_preproc_if_in_block] = STATE(111), + [sym_preproc_ifdef_in_block] = STATE(111), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(111), + [sym_import_declaration] = STATE(111), + [sym_template_declaration] = STATE(111), + [sym_template_instantiation] = STATE(111), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(111), + [sym_operator_cast_declaration] = STATE(111), + [sym_constructor_or_destructor_definition] = STATE(111), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(74), - [sym_concept_definition] = STATE(74), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(74), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(111), + [sym_namespace_alias_definition] = STATE(111), + [sym_using_declaration] = STATE(111), + [sym_alias_declaration] = STATE(111), + [sym_static_assert_declaration] = STATE(111), + [sym_consteval_block_declaration] = STATE(111), + [sym_concept_definition] = STATE(111), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(111), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -59053,8 +59400,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(960), - [anon_sym_RBRACE] = ACTIONS(1304), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1195), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59159,150 +59506,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(74)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(75)] = { + [sym__block_item] = STATE(889), + [sym_preproc_include] = STATE(889), + [sym_preproc_def] = STATE(889), + [sym_preproc_function_def] = STATE(889), + [sym_preproc_call] = STATE(889), + [sym_function_definition] = STATE(889), + [sym_declaration] = STATE(889), + [sym_type_definition] = STATE(889), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6408), + [sym_linkage_specification] = STATE(889), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2708), + [sym_declaration_list] = STATE(889), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8793), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(587), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4507), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(905), + [sym_statement] = STATE(889), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(889), + [sym_preproc_if_in_block] = STATE(889), + [sym_preproc_ifdef_in_block] = STATE(889), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2482), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(889), + [sym_import_declaration] = STATE(889), + [sym_template_declaration] = STATE(889), + [sym_template_instantiation] = STATE(889), + [sym_operator_cast] = STATE(9161), + [sym__constructor_specifiers] = STATE(2482), + [sym_operator_cast_definition] = STATE(889), + [sym_operator_cast_declaration] = STATE(889), + [sym_constructor_or_destructor_definition] = STATE(889), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [sym_namespace_definition] = STATE(889), + [sym_namespace_alias_definition] = STATE(889), + [sym_using_declaration] = STATE(889), + [sym_alias_declaration] = STATE(889), + [sym_static_assert_declaration] = STATE(889), + [sym_consteval_block_declaration] = STATE(889), + [sym_concept_definition] = STATE(889), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9161), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2482), + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -59311,14 +59658,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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(45), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -59329,8 +59676,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(960), - [anon_sym_RBRACE] = ACTIONS(1306), + [anon_sym_LBRACE] = ACTIONS(1205), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59338,7 +59684,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(203), + [anon_sym_inline] = ACTIONS(65), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -59355,7 +59701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(69), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -59363,19 +59709,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -59411,18 +59757,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(239), - [anon_sym_import] = ACTIONS(241), - [anon_sym_template] = ACTIONS(243), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_import] = ACTIONS(139), + [anon_sym_template] = ACTIONS(141), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(245), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(249), - [anon_sym_static_assert] = ACTIONS(251), - [anon_sym_concept] = ACTIONS(253), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(151), + [anon_sym_static_assert] = ACTIONS(153), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -59435,144 +59782,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(75)] = { - [sym__block_item] = STATE(111), - [sym_preproc_include] = STATE(111), - [sym_preproc_def] = STATE(111), - [sym_preproc_function_def] = STATE(111), - [sym_preproc_call] = STATE(111), - [sym_function_definition] = STATE(111), - [sym_declaration] = STATE(111), - [sym_type_definition] = STATE(111), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(111), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(111), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(111), - [sym_preproc_if_in_block] = STATE(111), - [sym_preproc_ifdef_in_block] = STATE(111), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(111), - [sym_import_declaration] = STATE(111), - [sym_template_declaration] = STATE(111), - [sym_template_instantiation] = STATE(111), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(111), - [sym_operator_cast_declaration] = STATE(111), - [sym_constructor_or_destructor_definition] = STATE(111), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(76)] = { + [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_function_definition] = STATE(78), + [sym_declaration] = STATE(78), + [sym_type_definition] = STATE(78), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(78), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(78), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(78), + [sym_preproc_if_in_block] = STATE(78), + [sym_preproc_ifdef_in_block] = STATE(78), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(78), + [sym_import_declaration] = STATE(78), + [sym_template_declaration] = STATE(78), + [sym_template_instantiation] = STATE(78), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(78), + [sym_operator_cast_declaration] = STATE(78), + [sym_constructor_or_destructor_definition] = STATE(78), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(111), - [sym_namespace_alias_definition] = STATE(111), - [sym_using_declaration] = STATE(111), - [sym_alias_declaration] = STATE(111), - [sym_static_assert_declaration] = STATE(111), - [sym_consteval_block_declaration] = STATE(111), - [sym_concept_definition] = STATE(111), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(111), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(78), + [sym_concept_definition] = STATE(78), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(78), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -59605,8 +59952,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(960), - [anon_sym_RBRACE] = ACTIONS(1308), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1215), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59711,144 +60058,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(76)] = { - [sym__block_item] = STATE(80), - [sym_preproc_include] = STATE(80), - [sym_preproc_def] = STATE(80), - [sym_preproc_function_def] = STATE(80), - [sym_preproc_call] = STATE(80), - [sym_function_definition] = STATE(80), - [sym_declaration] = STATE(80), - [sym_type_definition] = STATE(80), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(80), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(80), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(80), - [sym_preproc_if_in_block] = STATE(80), - [sym_preproc_ifdef_in_block] = STATE(80), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(80), - [sym_import_declaration] = STATE(80), - [sym_template_declaration] = STATE(80), - [sym_template_instantiation] = STATE(80), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(80), - [sym_operator_cast_declaration] = STATE(80), - [sym_constructor_or_destructor_definition] = STATE(80), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(77)] = { + [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_function_definition] = STATE(79), + [sym_declaration] = STATE(79), + [sym_type_definition] = STATE(79), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(79), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(79), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(79), + [sym_preproc_if_in_block] = STATE(79), + [sym_preproc_ifdef_in_block] = STATE(79), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(79), + [sym_import_declaration] = STATE(79), + [sym_template_declaration] = STATE(79), + [sym_template_instantiation] = STATE(79), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(79), + [sym_operator_cast_declaration] = STATE(79), + [sym_constructor_or_destructor_definition] = STATE(79), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(80), - [sym_namespace_alias_definition] = STATE(80), - [sym_using_declaration] = STATE(80), - [sym_alias_declaration] = STATE(80), - [sym_static_assert_declaration] = STATE(80), - [sym_consteval_block_declaration] = STATE(80), - [sym_concept_definition] = STATE(80), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(80), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(79), + [sym_concept_definition] = STATE(79), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(79), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -59881,8 +60228,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(960), - [anon_sym_RBRACE] = ACTIONS(1310), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1217), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -59987,144 +60334,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(77)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(78)] = { + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -60157,8 +60504,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(960), - [anon_sym_RBRACE] = ACTIONS(1312), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1219), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -60263,150 +60610,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(78)] = { - [sym__block_item] = STATE(958), - [sym_preproc_include] = STATE(958), - [sym_preproc_def] = STATE(958), - [sym_preproc_function_def] = STATE(958), - [sym_preproc_call] = STATE(958), - [sym_function_definition] = STATE(958), - [sym_declaration] = STATE(958), - [sym_type_definition] = STATE(958), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6385), - [sym_linkage_specification] = STATE(958), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2684), - [sym_declaration_list] = STATE(958), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8772), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(578), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4545), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(1006), - [sym_statement] = STATE(958), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(958), - [sym_preproc_if_in_block] = STATE(958), - [sym_preproc_ifdef_in_block] = STATE(958), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2437), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(958), - [sym_import_declaration] = STATE(958), - [sym_template_declaration] = STATE(958), - [sym_template_instantiation] = STATE(958), - [sym_operator_cast] = STATE(9265), - [sym__constructor_specifiers] = STATE(2437), - [sym_operator_cast_definition] = STATE(958), - [sym_operator_cast_declaration] = STATE(958), - [sym_constructor_or_destructor_definition] = STATE(958), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(79)] = { + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(958), - [sym_namespace_alias_definition] = STATE(958), - [sym_using_declaration] = STATE(958), - [sym_alias_declaration] = STATE(958), - [sym_static_assert_declaration] = STATE(958), - [sym_consteval_block_declaration] = STATE(958), - [sym_concept_definition] = STATE(958), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9265), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(184), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2437), - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(17), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -60415,287 +60762,11 @@ 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(1320), - [anon_sym___extension__] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(41), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(45), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(49), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(55), - [anon_sym___clrcall] = ACTIONS(55), - [anon_sym___stdcall] = ACTIONS(55), - [anon_sym___fastcall] = ACTIONS(55), - [anon_sym___thiscall] = ACTIONS(55), - [anon_sym___vectorcall] = ACTIONS(55), - [anon_sym_LBRACE] = ACTIONS(1322), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_static] = ACTIONS(63), - [anon_sym_register] = ACTIONS(63), - [anon_sym_inline] = ACTIONS(65), - [anon_sym___inline] = ACTIONS(63), - [anon_sym___inline__] = ACTIONS(63), - [anon_sym___forceinline] = ACTIONS(63), - [anon_sym_thread_local] = ACTIONS(63), - [anon_sym___thread] = ACTIONS(63), - [anon_sym_const] = ACTIONS(67), - [anon_sym_constexpr] = ACTIONS(67), - [anon_sym_volatile] = ACTIONS(67), - [anon_sym_restrict] = ACTIONS(67), - [anon_sym___restrict__] = ACTIONS(67), - [anon_sym__Atomic] = ACTIONS(67), - [anon_sym__Noreturn] = ACTIONS(67), - [anon_sym_noreturn] = ACTIONS(67), - [anon_sym__Nonnull] = ACTIONS(67), - [anon_sym_mutable] = ACTIONS(67), - [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(69), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(1328), - [anon_sym_module] = ACTIONS(1330), - [anon_sym_import] = ACTIONS(139), - [anon_sym_template] = ACTIONS(141), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(151), - [anon_sym_static_assert] = ACTIONS(153), - [anon_sym_concept] = ACTIONS(155), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), - }, - [STATE(79)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), - [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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_using] = ACTIONS(195), @@ -60709,8 +60780,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(960), - [anon_sym_RBRACE] = ACTIONS(1332), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1221), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -60816,143 +60887,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(80)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(64), + [sym_declaration] = STATE(64), + [sym_type_definition] = STATE(64), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(64), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(64), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(64), + [sym_preproc_if_in_block] = STATE(64), + [sym_preproc_ifdef_in_block] = STATE(64), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(64), + [sym_import_declaration] = STATE(64), + [sym_template_declaration] = STATE(64), + [sym_template_instantiation] = STATE(64), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(64), + [sym_operator_cast_declaration] = STATE(64), + [sym_constructor_or_destructor_definition] = STATE(64), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(64), + [sym_concept_definition] = STATE(64), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(64), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -60985,8 +61056,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(960), - [anon_sym_RBRACE] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1223), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -61092,143 +61163,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(81)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(82), + [sym_declaration] = STATE(82), + [sym_type_definition] = STATE(82), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(82), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(82), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(82), + [sym_preproc_if_in_block] = STATE(82), + [sym_preproc_ifdef_in_block] = STATE(82), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(82), + [sym_import_declaration] = STATE(82), + [sym_template_declaration] = STATE(82), + [sym_template_instantiation] = STATE(82), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(82), + [sym_operator_cast_declaration] = STATE(82), + [sym_constructor_or_destructor_definition] = STATE(82), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(82), + [sym_concept_definition] = STATE(82), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(82), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -61261,8 +61332,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(960), - [anon_sym_RBRACE] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1225), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -61368,143 +61439,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(82)] = { - [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_function_definition] = STATE(83), - [sym_declaration] = STATE(83), - [sym_type_definition] = STATE(83), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(83), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(83), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(83), - [sym_preproc_if_in_block] = STATE(83), - [sym_preproc_ifdef_in_block] = STATE(83), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(83), - [sym_import_declaration] = STATE(83), - [sym_template_declaration] = STATE(83), - [sym_template_instantiation] = STATE(83), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(83), - [sym_operator_cast_declaration] = STATE(83), - [sym_constructor_or_destructor_definition] = STATE(83), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(83), - [sym_concept_definition] = STATE(83), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(83), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -61537,8 +61608,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(960), - [anon_sym_RBRACE] = ACTIONS(1338), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1227), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -61644,143 +61715,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(83)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(84), + [sym_declaration] = STATE(84), + [sym_type_definition] = STATE(84), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(84), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(84), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(84), + [sym_preproc_if_in_block] = STATE(84), + [sym_preproc_ifdef_in_block] = STATE(84), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(84), + [sym_import_declaration] = STATE(84), + [sym_template_declaration] = STATE(84), + [sym_template_instantiation] = STATE(84), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(84), + [sym_operator_cast_declaration] = STATE(84), + [sym_constructor_or_destructor_definition] = STATE(84), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(84), + [sym_concept_definition] = STATE(84), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(84), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -61813,8 +61884,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(960), - [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1229), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -61920,143 +61991,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(84)] = { - [sym__block_item] = STATE(85), - [sym_preproc_include] = STATE(85), - [sym_preproc_def] = STATE(85), - [sym_preproc_function_def] = STATE(85), - [sym_preproc_call] = STATE(85), - [sym_function_definition] = STATE(85), - [sym_declaration] = STATE(85), - [sym_type_definition] = STATE(85), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(85), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(85), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(85), - [sym_preproc_if_in_block] = STATE(85), - [sym_preproc_ifdef_in_block] = STATE(85), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(85), - [sym_import_declaration] = STATE(85), - [sym_template_declaration] = STATE(85), - [sym_template_instantiation] = STATE(85), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(85), - [sym_operator_cast_declaration] = STATE(85), - [sym_constructor_or_destructor_definition] = STATE(85), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(85), - [sym_namespace_alias_definition] = STATE(85), - [sym_using_declaration] = STATE(85), - [sym_alias_declaration] = STATE(85), - [sym_static_assert_declaration] = STATE(85), - [sym_consteval_block_declaration] = STATE(85), - [sym_concept_definition] = STATE(85), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(85), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -62089,8 +62160,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(960), - [anon_sym_RBRACE] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1231), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -62196,143 +62267,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(85)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(86), + [sym_preproc_include] = STATE(86), + [sym_preproc_def] = STATE(86), + [sym_preproc_function_def] = STATE(86), + [sym_preproc_call] = STATE(86), + [sym_function_definition] = STATE(86), + [sym_declaration] = STATE(86), + [sym_type_definition] = STATE(86), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(86), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(86), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(86), + [sym_preproc_if_in_block] = STATE(86), + [sym_preproc_ifdef_in_block] = STATE(86), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(86), + [sym_import_declaration] = STATE(86), + [sym_template_declaration] = STATE(86), + [sym_template_instantiation] = STATE(86), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(86), + [sym_operator_cast_declaration] = STATE(86), + [sym_constructor_or_destructor_definition] = STATE(86), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(86), + [sym_namespace_alias_definition] = STATE(86), + [sym_using_declaration] = STATE(86), + [sym_alias_declaration] = STATE(86), + [sym_static_assert_declaration] = STATE(86), + [sym_consteval_block_declaration] = STATE(86), + [sym_concept_definition] = STATE(86), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(86), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -62365,8 +62436,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(960), - [anon_sym_RBRACE] = ACTIONS(1344), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1233), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -62472,143 +62543,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(86)] = { - [sym__block_item] = STATE(87), - [sym_preproc_include] = STATE(87), - [sym_preproc_def] = STATE(87), - [sym_preproc_function_def] = STATE(87), - [sym_preproc_call] = STATE(87), - [sym_function_definition] = STATE(87), - [sym_declaration] = STATE(87), - [sym_type_definition] = STATE(87), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(87), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(87), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(87), - [sym_preproc_if_in_block] = STATE(87), - [sym_preproc_ifdef_in_block] = STATE(87), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(87), - [sym_import_declaration] = STATE(87), - [sym_template_declaration] = STATE(87), - [sym_template_instantiation] = STATE(87), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(87), - [sym_operator_cast_declaration] = STATE(87), - [sym_constructor_or_destructor_definition] = STATE(87), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(87), - [sym_namespace_alias_definition] = STATE(87), - [sym_using_declaration] = STATE(87), - [sym_alias_declaration] = STATE(87), - [sym_static_assert_declaration] = STATE(87), - [sym_consteval_block_declaration] = STATE(87), - [sym_concept_definition] = STATE(87), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(87), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -62641,8 +62712,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(960), - [anon_sym_RBRACE] = ACTIONS(1346), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1235), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -62748,143 +62819,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(87)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(88), + [sym_preproc_include] = STATE(88), + [sym_preproc_def] = STATE(88), + [sym_preproc_function_def] = STATE(88), + [sym_preproc_call] = STATE(88), + [sym_function_definition] = STATE(88), + [sym_declaration] = STATE(88), + [sym_type_definition] = STATE(88), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(88), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(88), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(88), + [sym_preproc_if_in_block] = STATE(88), + [sym_preproc_ifdef_in_block] = STATE(88), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(88), + [sym_import_declaration] = STATE(88), + [sym_template_declaration] = STATE(88), + [sym_template_instantiation] = STATE(88), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(88), + [sym_operator_cast_declaration] = STATE(88), + [sym_constructor_or_destructor_definition] = STATE(88), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(88), + [sym_namespace_alias_definition] = STATE(88), + [sym_using_declaration] = STATE(88), + [sym_alias_declaration] = STATE(88), + [sym_static_assert_declaration] = STATE(88), + [sym_consteval_block_declaration] = STATE(88), + [sym_concept_definition] = STATE(88), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(88), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -62917,8 +62988,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(960), - [anon_sym_RBRACE] = ACTIONS(1348), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1237), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -63024,143 +63095,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(88)] = { - [sym__block_item] = STATE(89), - [sym_preproc_include] = STATE(89), - [sym_preproc_def] = STATE(89), - [sym_preproc_function_def] = STATE(89), - [sym_preproc_call] = STATE(89), - [sym_function_definition] = STATE(89), - [sym_declaration] = STATE(89), - [sym_type_definition] = STATE(89), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(89), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(89), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(89), - [sym_preproc_if_in_block] = STATE(89), - [sym_preproc_ifdef_in_block] = STATE(89), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(89), - [sym_import_declaration] = STATE(89), - [sym_template_declaration] = STATE(89), - [sym_template_instantiation] = STATE(89), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(89), - [sym_operator_cast_declaration] = STATE(89), - [sym_constructor_or_destructor_definition] = STATE(89), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(89), - [sym_namespace_alias_definition] = STATE(89), - [sym_using_declaration] = STATE(89), - [sym_alias_declaration] = STATE(89), - [sym_static_assert_declaration] = STATE(89), - [sym_consteval_block_declaration] = STATE(89), - [sym_concept_definition] = STATE(89), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(89), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -63193,8 +63264,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(960), - [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1239), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -63300,143 +63371,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(89)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(90), + [sym_preproc_include] = STATE(90), + [sym_preproc_def] = STATE(90), + [sym_preproc_function_def] = STATE(90), + [sym_preproc_call] = STATE(90), + [sym_function_definition] = STATE(90), + [sym_declaration] = STATE(90), + [sym_type_definition] = STATE(90), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(90), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(90), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(90), + [sym_preproc_if_in_block] = STATE(90), + [sym_preproc_ifdef_in_block] = STATE(90), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(90), + [sym_import_declaration] = STATE(90), + [sym_template_declaration] = STATE(90), + [sym_template_instantiation] = STATE(90), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(90), + [sym_operator_cast_declaration] = STATE(90), + [sym_constructor_or_destructor_definition] = STATE(90), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(90), + [sym_namespace_alias_definition] = STATE(90), + [sym_using_declaration] = STATE(90), + [sym_alias_declaration] = STATE(90), + [sym_static_assert_declaration] = STATE(90), + [sym_consteval_block_declaration] = STATE(90), + [sym_concept_definition] = STATE(90), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(90), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -63469,8 +63540,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(960), - [anon_sym_RBRACE] = ACTIONS(1352), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1241), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -63576,143 +63647,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(90)] = { - [sym__block_item] = STATE(91), - [sym_preproc_include] = STATE(91), - [sym_preproc_def] = STATE(91), - [sym_preproc_function_def] = STATE(91), - [sym_preproc_call] = STATE(91), - [sym_function_definition] = STATE(91), - [sym_declaration] = STATE(91), - [sym_type_definition] = STATE(91), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(91), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(91), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(91), - [sym_preproc_if_in_block] = STATE(91), - [sym_preproc_ifdef_in_block] = STATE(91), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(91), - [sym_import_declaration] = STATE(91), - [sym_template_declaration] = STATE(91), - [sym_template_instantiation] = STATE(91), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(91), - [sym_operator_cast_declaration] = STATE(91), - [sym_constructor_or_destructor_definition] = STATE(91), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(91), - [sym_namespace_alias_definition] = STATE(91), - [sym_using_declaration] = STATE(91), - [sym_alias_declaration] = STATE(91), - [sym_static_assert_declaration] = STATE(91), - [sym_consteval_block_declaration] = STATE(91), - [sym_concept_definition] = STATE(91), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(91), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -63745,8 +63816,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(960), - [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1243), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -63852,143 +63923,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(91)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(92), + [sym_preproc_include] = STATE(92), + [sym_preproc_def] = STATE(92), + [sym_preproc_function_def] = STATE(92), + [sym_preproc_call] = STATE(92), + [sym_function_definition] = STATE(92), + [sym_declaration] = STATE(92), + [sym_type_definition] = STATE(92), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(92), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(92), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(92), + [sym_preproc_if_in_block] = STATE(92), + [sym_preproc_ifdef_in_block] = STATE(92), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(92), + [sym_import_declaration] = STATE(92), + [sym_template_declaration] = STATE(92), + [sym_template_instantiation] = STATE(92), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(92), + [sym_operator_cast_declaration] = STATE(92), + [sym_constructor_or_destructor_definition] = STATE(92), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(92), + [sym_namespace_alias_definition] = STATE(92), + [sym_using_declaration] = STATE(92), + [sym_alias_declaration] = STATE(92), + [sym_static_assert_declaration] = STATE(92), + [sym_consteval_block_declaration] = STATE(92), + [sym_concept_definition] = STATE(92), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(92), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -64021,8 +64092,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(960), - [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1245), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -64128,143 +64199,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(92)] = { - [sym__block_item] = STATE(93), - [sym_preproc_include] = STATE(93), - [sym_preproc_def] = STATE(93), - [sym_preproc_function_def] = STATE(93), - [sym_preproc_call] = STATE(93), - [sym_function_definition] = STATE(93), - [sym_declaration] = STATE(93), - [sym_type_definition] = STATE(93), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(93), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(93), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(93), - [sym_preproc_if_in_block] = STATE(93), - [sym_preproc_ifdef_in_block] = STATE(93), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(93), - [sym_import_declaration] = STATE(93), - [sym_template_declaration] = STATE(93), - [sym_template_instantiation] = STATE(93), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(93), - [sym_operator_cast_declaration] = STATE(93), - [sym_constructor_or_destructor_definition] = STATE(93), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(93), - [sym_namespace_alias_definition] = STATE(93), - [sym_using_declaration] = STATE(93), - [sym_alias_declaration] = STATE(93), - [sym_static_assert_declaration] = STATE(93), - [sym_consteval_block_declaration] = STATE(93), - [sym_concept_definition] = STATE(93), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(93), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -64297,8 +64368,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(960), - [anon_sym_RBRACE] = ACTIONS(1358), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1247), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -64404,143 +64475,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(93)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(94), + [sym_preproc_include] = STATE(94), + [sym_preproc_def] = STATE(94), + [sym_preproc_function_def] = STATE(94), + [sym_preproc_call] = STATE(94), + [sym_function_definition] = STATE(94), + [sym_declaration] = STATE(94), + [sym_type_definition] = STATE(94), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(94), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(94), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(94), + [sym_preproc_if_in_block] = STATE(94), + [sym_preproc_ifdef_in_block] = STATE(94), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(94), + [sym_import_declaration] = STATE(94), + [sym_template_declaration] = STATE(94), + [sym_template_instantiation] = STATE(94), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(94), + [sym_operator_cast_declaration] = STATE(94), + [sym_constructor_or_destructor_definition] = STATE(94), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(94), + [sym_namespace_alias_definition] = STATE(94), + [sym_using_declaration] = STATE(94), + [sym_alias_declaration] = STATE(94), + [sym_static_assert_declaration] = STATE(94), + [sym_consteval_block_declaration] = STATE(94), + [sym_concept_definition] = STATE(94), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(94), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -64573,8 +64644,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(960), - [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1249), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -64680,143 +64751,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(94)] = { - [sym__block_item] = STATE(95), - [sym_preproc_include] = STATE(95), - [sym_preproc_def] = STATE(95), - [sym_preproc_function_def] = STATE(95), - [sym_preproc_call] = STATE(95), - [sym_function_definition] = STATE(95), - [sym_declaration] = STATE(95), - [sym_type_definition] = STATE(95), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(95), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(95), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(95), - [sym_preproc_if_in_block] = STATE(95), - [sym_preproc_ifdef_in_block] = STATE(95), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(95), - [sym_import_declaration] = STATE(95), - [sym_template_declaration] = STATE(95), - [sym_template_instantiation] = STATE(95), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(95), - [sym_operator_cast_declaration] = STATE(95), - [sym_constructor_or_destructor_definition] = STATE(95), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(95), - [sym_namespace_alias_definition] = STATE(95), - [sym_using_declaration] = STATE(95), - [sym_alias_declaration] = STATE(95), - [sym_static_assert_declaration] = STATE(95), - [sym_consteval_block_declaration] = STATE(95), - [sym_concept_definition] = STATE(95), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(95), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -64849,8 +64920,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(960), - [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1251), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -64956,143 +65027,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(95)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(95), + [sym_preproc_include] = STATE(95), + [sym_preproc_def] = STATE(95), + [sym_preproc_function_def] = STATE(95), + [sym_preproc_call] = STATE(95), + [sym_function_definition] = STATE(95), + [sym_declaration] = STATE(95), + [sym_type_definition] = STATE(95), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6402), + [sym_linkage_specification] = STATE(95), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2720), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8795), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(571), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4419), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(725), + [sym_statement] = STATE(95), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(95), + [sym_preproc_if_in_block] = STATE(95), + [sym_preproc_ifdef_in_block] = STATE(95), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2503), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(95), + [sym_import_declaration] = STATE(95), + [sym_template_declaration] = STATE(95), + [sym_template_instantiation] = STATE(95), + [sym_operator_cast] = STATE(9184), + [sym__constructor_specifiers] = STATE(2503), + [sym_operator_cast_definition] = STATE(95), + [sym_operator_cast_declaration] = STATE(95), + [sym_constructor_or_destructor_definition] = STATE(95), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(95), + [sym_namespace_alias_definition] = STATE(95), + [sym_using_declaration] = STATE(95), + [sym_alias_declaration] = STATE(95), + [sym_static_assert_declaration] = STATE(95), + [sym_consteval_block_declaration] = STATE(95), + [sym_concept_definition] = STATE(95), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9184), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(95), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2503), + [sym_identifier] = ACTIONS(1253), + [aux_sym_preproc_include_token1] = ACTIONS(1256), + [aux_sym_preproc_def_token1] = ACTIONS(1259), + [aux_sym_preproc_if_token1] = ACTIONS(1262), + [aux_sym_preproc_if_token2] = ACTIONS(465), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1265), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1265), + [sym_preproc_directive] = ACTIONS(1268), + [anon_sym_LPAREN2] = ACTIONS(473), + [anon_sym_BANG] = ACTIONS(476), + [anon_sym_TILDE] = ACTIONS(479), + [anon_sym_DASH] = ACTIONS(482), + [anon_sym_PLUS] = ACTIONS(482), + [anon_sym_STAR] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(488), + [anon_sym_AMP] = ACTIONS(491), + [anon_sym_SEMI] = ACTIONS(1271), + [anon_sym___extension__] = ACTIONS(1274), + [anon_sym_typedef] = ACTIONS(1277), + [anon_sym_virtual] = ACTIONS(503), + [anon_sym_extern] = ACTIONS(1280), + [anon_sym___attribute__] = ACTIONS(509), + [anon_sym___attribute] = ACTIONS(509), + [anon_sym_using] = ACTIONS(1283), + [anon_sym_COLON_COLON] = ACTIONS(515), + [anon_sym_LBRACK_LBRACK] = ACTIONS(518), + [anon_sym___declspec] = ACTIONS(521), + [anon_sym___based] = ACTIONS(524), + [anon_sym___cdecl] = ACTIONS(527), + [anon_sym___clrcall] = ACTIONS(527), + [anon_sym___stdcall] = ACTIONS(527), + [anon_sym___fastcall] = ACTIONS(527), + [anon_sym___thiscall] = ACTIONS(527), + [anon_sym___vectorcall] = ACTIONS(527), + [anon_sym_LBRACE] = ACTIONS(1286), + [anon_sym_signed] = ACTIONS(533), + [anon_sym_unsigned] = ACTIONS(533), + [anon_sym_long] = ACTIONS(533), + [anon_sym_short] = ACTIONS(533), + [anon_sym_LBRACK] = ACTIONS(536), + [anon_sym_static] = ACTIONS(539), + [anon_sym_register] = ACTIONS(539), + [anon_sym_inline] = ACTIONS(1289), + [anon_sym___inline] = ACTIONS(539), + [anon_sym___inline__] = ACTIONS(539), + [anon_sym___forceinline] = ACTIONS(539), + [anon_sym_thread_local] = ACTIONS(539), + [anon_sym___thread] = ACTIONS(539), + [anon_sym_const] = ACTIONS(545), + [anon_sym_constexpr] = ACTIONS(545), + [anon_sym_volatile] = ACTIONS(545), + [anon_sym_restrict] = ACTIONS(545), + [anon_sym___restrict__] = ACTIONS(545), + [anon_sym__Atomic] = ACTIONS(545), + [anon_sym__Noreturn] = ACTIONS(545), + [anon_sym_noreturn] = ACTIONS(545), + [anon_sym__Nonnull] = ACTIONS(545), + [anon_sym_mutable] = ACTIONS(545), + [anon_sym_constinit] = ACTIONS(545), + [anon_sym_consteval] = ACTIONS(1292), + [anon_sym_alignas] = ACTIONS(551), + [anon_sym__Alignas] = ACTIONS(551), + [sym_primitive_type] = ACTIONS(554), + [anon_sym_enum] = ACTIONS(557), + [anon_sym_class] = ACTIONS(560), + [anon_sym_struct] = ACTIONS(563), + [anon_sym_union] = ACTIONS(566), + [anon_sym_if] = ACTIONS(1295), + [anon_sym_switch] = ACTIONS(1298), + [anon_sym_case] = ACTIONS(1301), + [anon_sym_default] = ACTIONS(1304), + [anon_sym_while] = ACTIONS(1307), + [anon_sym_do] = ACTIONS(1310), + [anon_sym_for] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1319), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_goto] = ACTIONS(1325), + [anon_sym___try] = ACTIONS(1328), + [anon_sym___leave] = ACTIONS(1331), + [anon_sym_not] = ACTIONS(482), + [anon_sym_compl] = ACTIONS(482), + [anon_sym_DASH_DASH] = ACTIONS(608), + [anon_sym_PLUS_PLUS] = ACTIONS(608), + [anon_sym_sizeof] = ACTIONS(611), + [anon_sym___alignof__] = ACTIONS(614), + [anon_sym___alignof] = ACTIONS(614), + [anon_sym__alignof] = ACTIONS(614), + [anon_sym_alignof] = ACTIONS(614), + [anon_sym__Alignof] = ACTIONS(614), + [anon_sym_offsetof] = ACTIONS(617), + [anon_sym__Generic] = ACTIONS(620), + [anon_sym_typename] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(626), + [anon_sym___asm__] = ACTIONS(626), + [anon_sym___asm] = ACTIONS(626), + [sym_number_literal] = ACTIONS(629), + [anon_sym_L_SQUOTE] = ACTIONS(632), + [anon_sym_u_SQUOTE] = ACTIONS(632), + [anon_sym_U_SQUOTE] = ACTIONS(632), + [anon_sym_u8_SQUOTE] = ACTIONS(632), + [anon_sym_SQUOTE] = ACTIONS(632), + [anon_sym_L_DQUOTE] = ACTIONS(635), + [anon_sym_u_DQUOTE] = ACTIONS(635), + [anon_sym_U_DQUOTE] = ACTIONS(635), + [anon_sym_u8_DQUOTE] = ACTIONS(635), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_true] = ACTIONS(638), + [sym_false] = ACTIONS(638), + [anon_sym_NULL] = ACTIONS(641), + [anon_sym_nullptr] = ACTIONS(641), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(644), + [anon_sym_decltype] = ACTIONS(647), + [anon_sym_explicit] = ACTIONS(650), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_import] = ACTIONS(1337), + [anon_sym_template] = ACTIONS(1340), + [anon_sym_operator] = ACTIONS(662), + [anon_sym_try] = ACTIONS(1343), + [anon_sym_delete] = ACTIONS(668), + [anon_sym_throw] = ACTIONS(1346), + [anon_sym_namespace] = ACTIONS(1349), + [anon_sym_static_assert] = ACTIONS(1352), + [anon_sym_concept] = ACTIONS(1355), + [anon_sym_co_return] = ACTIONS(1358), + [anon_sym_co_yield] = ACTIONS(1361), + [anon_sym_R_DQUOTE] = ACTIONS(689), + [anon_sym_LR_DQUOTE] = ACTIONS(689), + [anon_sym_uR_DQUOTE] = ACTIONS(689), + [anon_sym_UR_DQUOTE] = ACTIONS(689), + [anon_sym_u8R_DQUOTE] = ACTIONS(689), + [anon_sym_co_await] = ACTIONS(692), + [anon_sym_new] = ACTIONS(695), + [anon_sym_requires] = ACTIONS(698), + [anon_sym_CARET_CARET] = ACTIONS(701), + [anon_sym_LBRACK_COLON] = ACTIONS(704), + [sym_this] = ACTIONS(638), + }, + [STATE(96)] = { + [sym__block_item] = STATE(97), + [sym_preproc_include] = STATE(97), + [sym_preproc_def] = STATE(97), + [sym_preproc_function_def] = STATE(97), + [sym_preproc_call] = STATE(97), + [sym_function_definition] = STATE(97), + [sym_declaration] = STATE(97), + [sym_type_definition] = STATE(97), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(97), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(97), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(97), + [sym_preproc_if_in_block] = STATE(97), + [sym_preproc_ifdef_in_block] = STATE(97), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(97), + [sym_import_declaration] = STATE(97), + [sym_template_declaration] = STATE(97), + [sym_template_instantiation] = STATE(97), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(97), + [sym_operator_cast_declaration] = STATE(97), + [sym_constructor_or_destructor_definition] = STATE(97), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(97), + [sym_namespace_alias_definition] = STATE(97), + [sym_using_declaration] = STATE(97), + [sym_alias_declaration] = STATE(97), + [sym_static_assert_declaration] = STATE(97), + [sym_consteval_block_declaration] = STATE(97), + [sym_concept_definition] = STATE(97), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(97), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -65125,7 +65472,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(960), + [anon_sym_LBRACE] = ACTIONS(958), [anon_sym_RBRACE] = ACTIONS(1364), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -65231,420 +65578,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(96)] = { - [sym__block_item] = STATE(97), - [sym_preproc_include] = STATE(97), - [sym_preproc_def] = STATE(97), - [sym_preproc_function_def] = STATE(97), - [sym_preproc_call] = STATE(97), - [sym_function_definition] = STATE(97), - [sym_declaration] = STATE(97), - [sym_type_definition] = STATE(97), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(97), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(97), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(97), - [sym_preproc_if_in_block] = STATE(97), - [sym_preproc_ifdef_in_block] = STATE(97), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(97), - [sym_import_declaration] = STATE(97), - [sym_template_declaration] = STATE(97), - [sym_template_instantiation] = STATE(97), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(97), - [sym_operator_cast_declaration] = STATE(97), - [sym_constructor_or_destructor_definition] = STATE(97), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(97), - [sym_namespace_alias_definition] = STATE(97), - [sym_using_declaration] = STATE(97), - [sym_alias_declaration] = STATE(97), - [sym_static_assert_declaration] = STATE(97), - [sym_consteval_block_declaration] = STATE(97), - [sym_concept_definition] = STATE(97), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(97), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), - [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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), - [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(960), - [anon_sym_RBRACE] = ACTIONS(1366), - [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(203), - [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(205), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(239), - [anon_sym_import] = ACTIONS(241), - [anon_sym_template] = ACTIONS(243), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(245), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(249), - [anon_sym_static_assert] = ACTIONS(251), - [anon_sym_concept] = ACTIONS(253), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), - }, [STATE(97)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -65677,8 +65748,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(960), - [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1366), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -65784,143 +65855,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(98)] = { - [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_function_definition] = STATE(51), - [sym_declaration] = STATE(51), - [sym_type_definition] = STATE(51), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(51), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(51), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(51), - [sym_preproc_if_in_block] = STATE(51), - [sym_preproc_ifdef_in_block] = STATE(51), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(51), - [sym_import_declaration] = STATE(51), - [sym_template_declaration] = STATE(51), - [sym_template_instantiation] = STATE(51), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(51), - [sym_operator_cast_declaration] = STATE(51), - [sym_constructor_or_destructor_definition] = STATE(51), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(99), + [sym_preproc_include] = STATE(99), + [sym_preproc_def] = STATE(99), + [sym_preproc_function_def] = STATE(99), + [sym_preproc_call] = STATE(99), + [sym_function_definition] = STATE(99), + [sym_declaration] = STATE(99), + [sym_type_definition] = STATE(99), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(99), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(99), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(99), + [sym_preproc_if_in_block] = STATE(99), + [sym_preproc_ifdef_in_block] = STATE(99), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(99), + [sym_import_declaration] = STATE(99), + [sym_template_declaration] = STATE(99), + [sym_template_instantiation] = STATE(99), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(99), + [sym_operator_cast_declaration] = STATE(99), + [sym_constructor_or_destructor_definition] = STATE(99), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(51), - [sym_concept_definition] = STATE(51), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(51), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(99), + [sym_namespace_alias_definition] = STATE(99), + [sym_using_declaration] = STATE(99), + [sym_alias_declaration] = STATE(99), + [sym_static_assert_declaration] = STATE(99), + [sym_consteval_block_declaration] = STATE(99), + [sym_concept_definition] = STATE(99), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(99), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -65953,8 +66024,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(960), - [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1368), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -66060,143 +66131,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(99)] = { - [sym__block_item] = STATE(68), - [sym_preproc_include] = STATE(68), - [sym_preproc_def] = STATE(68), - [sym_preproc_function_def] = STATE(68), - [sym_preproc_call] = STATE(68), - [sym_function_definition] = STATE(68), - [sym_declaration] = STATE(68), - [sym_type_definition] = STATE(68), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(68), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(68), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(68), - [sym_preproc_if_in_block] = STATE(68), - [sym_preproc_ifdef_in_block] = STATE(68), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(68), - [sym_import_declaration] = STATE(68), - [sym_template_declaration] = STATE(68), - [sym_template_instantiation] = STATE(68), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(68), - [sym_operator_cast_declaration] = STATE(68), - [sym_constructor_or_destructor_definition] = STATE(68), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(68), - [sym_concept_definition] = STATE(68), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(68), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -66229,8 +66300,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(960), - [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1370), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -66344,92 +66415,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(101), [sym_declaration] = STATE(101), [sym_type_definition] = STATE(101), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(101), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(101), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(101), [sym_preproc_if_in_block] = STATE(101), [sym_preproc_ifdef_in_block] = STATE(101), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(101), [sym_import_declaration] = STATE(101), [sym_template_declaration] = STATE(101), [sym_template_instantiation] = STATE(101), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(101), [sym_operator_cast_declaration] = STATE(101), [sym_constructor_or_destructor_definition] = STATE(101), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(101), [sym_namespace_alias_definition] = STATE(101), @@ -66438,41 +66509,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(101), [sym_consteval_block_declaration] = STATE(101), [sym_concept_definition] = STATE(101), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(101), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -66505,8 +66576,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(960), - [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1372), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -66612,143 +66683,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(101)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -66781,8 +66852,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(960), - [anon_sym_RBRACE] = ACTIONS(1376), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1374), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -66896,92 +66967,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(103), [sym_declaration] = STATE(103), [sym_type_definition] = STATE(103), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(103), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(103), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(103), [sym_preproc_if_in_block] = STATE(103), [sym_preproc_ifdef_in_block] = STATE(103), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(103), [sym_import_declaration] = STATE(103), [sym_template_declaration] = STATE(103), [sym_template_instantiation] = STATE(103), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(103), [sym_operator_cast_declaration] = STATE(103), [sym_constructor_or_destructor_definition] = STATE(103), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(103), [sym_namespace_alias_definition] = STATE(103), @@ -66990,41 +67061,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(103), [sym_consteval_block_declaration] = STATE(103), [sym_concept_definition] = STATE(103), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(103), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -67057,8 +67128,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(960), - [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1376), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -67164,143 +67235,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(103)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -67333,8 +67404,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(960), - [anon_sym_RBRACE] = ACTIONS(1380), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1378), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -67448,92 +67519,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(105), [sym_declaration] = STATE(105), [sym_type_definition] = STATE(105), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(105), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(105), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(105), [sym_preproc_if_in_block] = STATE(105), [sym_preproc_ifdef_in_block] = STATE(105), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(105), [sym_import_declaration] = STATE(105), [sym_template_declaration] = STATE(105), [sym_template_instantiation] = STATE(105), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(105), [sym_operator_cast_declaration] = STATE(105), [sym_constructor_or_destructor_definition] = STATE(105), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(105), [sym_namespace_alias_definition] = STATE(105), @@ -67542,41 +67613,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(105), [sym_consteval_block_declaration] = STATE(105), [sym_concept_definition] = STATE(105), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(105), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -67609,8 +67680,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(960), - [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1380), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -67716,143 +67787,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(105)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -67885,8 +67956,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(960), - [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1382), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -68000,92 +68071,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(107), [sym_declaration] = STATE(107), [sym_type_definition] = STATE(107), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(107), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(107), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(107), [sym_preproc_if_in_block] = STATE(107), [sym_preproc_ifdef_in_block] = STATE(107), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(107), [sym_import_declaration] = STATE(107), [sym_template_declaration] = STATE(107), [sym_template_instantiation] = STATE(107), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(107), [sym_operator_cast_declaration] = STATE(107), [sym_constructor_or_destructor_definition] = STATE(107), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(107), [sym_namespace_alias_definition] = STATE(107), @@ -68094,41 +68165,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(107), [sym_consteval_block_declaration] = STATE(107), [sym_concept_definition] = STATE(107), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(107), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -68161,8 +68232,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(960), - [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1384), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -68268,143 +68339,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(107)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -68437,8 +68508,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(960), - [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1386), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -68552,92 +68623,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(109), [sym_declaration] = STATE(109), [sym_type_definition] = STATE(109), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), [sym_linkage_specification] = STATE(109), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), [sym_statement] = STATE(109), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), [sym__empty_declaration] = STATE(109), [sym_preproc_if_in_block] = STATE(109), [sym_preproc_ifdef_in_block] = STATE(109), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), [sym_export_declaration] = STATE(109), [sym_import_declaration] = STATE(109), [sym_template_declaration] = STATE(109), [sym_template_instantiation] = STATE(109), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), [sym_operator_cast_definition] = STATE(109), [sym_operator_cast_declaration] = STATE(109), [sym_constructor_or_destructor_definition] = STATE(109), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), [sym_namespace_definition] = STATE(109), [sym_namespace_alias_definition] = STATE(109), @@ -68646,41 +68717,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_static_assert_declaration] = STATE(109), [sym_consteval_block_declaration] = STATE(109), [sym_concept_definition] = STATE(109), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_declaration_list_repeat1] = STATE(109), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -68713,8 +68784,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(960), - [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1388), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -68820,143 +68891,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(109)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -68989,8 +69060,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(960), - [anon_sym_RBRACE] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1390), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -69096,143 +69167,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(110)] = { - [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_function_definition] = STATE(79), - [sym_declaration] = STATE(79), - [sym_type_definition] = STATE(79), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(79), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(79), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(79), - [sym_preproc_if_in_block] = STATE(79), - [sym_preproc_ifdef_in_block] = STATE(79), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(79), - [sym_import_declaration] = STATE(79), - [sym_template_declaration] = STATE(79), - [sym_template_instantiation] = STATE(79), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(79), - [sym_operator_cast_declaration] = STATE(79), - [sym_constructor_or_destructor_definition] = STATE(79), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(52), + [sym_preproc_include] = STATE(52), + [sym_preproc_def] = STATE(52), + [sym_preproc_function_def] = STATE(52), + [sym_preproc_call] = STATE(52), + [sym_function_definition] = STATE(52), + [sym_declaration] = STATE(52), + [sym_type_definition] = STATE(52), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(52), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(52), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(52), + [sym_preproc_if_in_block] = STATE(52), + [sym_preproc_ifdef_in_block] = STATE(52), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(52), + [sym_import_declaration] = STATE(52), + [sym_template_declaration] = STATE(52), + [sym_template_instantiation] = STATE(52), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(52), + [sym_operator_cast_declaration] = STATE(52), + [sym_constructor_or_destructor_definition] = STATE(52), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(79), - [sym_concept_definition] = STATE(79), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(79), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), + [sym_namespace_definition] = STATE(52), + [sym_namespace_alias_definition] = STATE(52), + [sym_using_declaration] = STATE(52), + [sym_alias_declaration] = STATE(52), + [sym_static_assert_declaration] = STATE(52), + [sym_consteval_block_declaration] = STATE(52), + [sym_concept_definition] = STATE(52), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(52), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), + [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(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(193), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(195), + [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(958), + [anon_sym_RBRACE] = ACTIONS(1392), + [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(203), + [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(205), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_try] = ACTIONS(245), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, + [STATE(111)] = { + [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_function_definition] = STATE(69), + [sym_declaration] = STATE(69), + [sym_type_definition] = STATE(69), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(69), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(69), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(69), + [sym_preproc_if_in_block] = STATE(69), + [sym_preproc_ifdef_in_block] = STATE(69), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(69), + [sym_import_declaration] = STATE(69), + [sym_template_declaration] = STATE(69), + [sym_template_instantiation] = STATE(69), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(69), + [sym_operator_cast_declaration] = STATE(69), + [sym_constructor_or_destructor_definition] = STATE(69), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6810), + [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_consteval_block_declaration] = STATE(69), + [sym_concept_definition] = STATE(69), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_declaration_list_repeat1] = STATE(69), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), [aux_sym_preproc_include_token1] = ACTIONS(175), [aux_sym_preproc_def_token1] = ACTIONS(177), [aux_sym_preproc_if_token1] = ACTIONS(181), @@ -69265,7 +69612,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(960), + [anon_sym_LBRACE] = ACTIONS(958), [anon_sym_RBRACE] = ACTIONS(1394), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -69371,150 +69718,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(111)] = { - [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_function_definition] = STATE(72), - [sym_declaration] = STATE(72), - [sym_type_definition] = STATE(72), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(72), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(72), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(72), - [sym_preproc_if_in_block] = STATE(72), - [sym_preproc_ifdef_in_block] = STATE(72), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(72), - [sym_import_declaration] = STATE(72), - [sym_template_declaration] = STATE(72), - [sym_template_instantiation] = STATE(72), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(72), - [sym_operator_cast_declaration] = STATE(72), - [sym_constructor_or_destructor_definition] = STATE(72), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [STATE(112)] = { + [sym__block_item] = STATE(741), + [sym_preproc_include] = STATE(741), + [sym_preproc_def] = STATE(741), + [sym_preproc_function_def] = STATE(741), + [sym_preproc_call] = STATE(741), + [sym_function_definition] = STATE(741), + [sym_declaration] = STATE(741), + [sym_type_definition] = STATE(741), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6402), + [sym_linkage_specification] = STATE(741), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2720), + [sym_declaration_list] = STATE(741), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8795), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(571), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4419), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(725), + [sym_statement] = STATE(741), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(741), + [sym_preproc_if_in_block] = STATE(741), + [sym_preproc_ifdef_in_block] = STATE(741), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2503), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(741), + [sym_import_declaration] = STATE(741), + [sym_template_declaration] = STATE(741), + [sym_template_instantiation] = STATE(741), + [sym_operator_cast] = STATE(9184), + [sym__constructor_specifiers] = STATE(2503), + [sym_operator_cast_definition] = STATE(741), + [sym_operator_cast_declaration] = STATE(741), + [sym_constructor_or_destructor_definition] = STATE(741), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [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_consteval_block_declaration] = STATE(72), - [sym_concept_definition] = STATE(72), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_declaration_list_repeat1] = STATE(72), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), + [sym_namespace_definition] = STATE(741), + [sym_namespace_alias_definition] = STATE(741), + [sym_using_declaration] = STATE(741), + [sym_alias_declaration] = STATE(741), + [sym_static_assert_declaration] = STATE(741), + [sym_consteval_block_declaration] = STATE(741), + [sym_concept_definition] = STATE(741), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9184), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2503), + [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_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), @@ -69523,14 +69870,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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), + [anon_sym_extern] = ACTIONS(998), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), + [anon_sym_using] = ACTIONS(1000), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -69541,8 +69888,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(960), - [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1060), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -69550,7 +69896,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(203), + [anon_sym_inline] = ACTIONS(1004), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -69567,7 +69913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(205), + [anon_sym_consteval] = ACTIONS(1006), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -69575,19 +69921,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -69623,18 +69969,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(239), - [anon_sym_import] = ACTIONS(241), - [anon_sym_template] = ACTIONS(243), + [anon_sym_export] = ACTIONS(1034), + [anon_sym_import] = ACTIONS(1036), + [anon_sym_template] = ACTIONS(1038), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(245), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(249), - [anon_sym_static_assert] = ACTIONS(251), - [anon_sym_concept] = ACTIONS(253), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_static_assert] = ACTIONS(1046), + [anon_sym_concept] = ACTIONS(1048), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -69647,150 +69993,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(112)] = { - [sym__block_item] = STATE(958), - [sym_preproc_include] = STATE(958), - [sym_preproc_def] = STATE(958), - [sym_preproc_function_def] = STATE(958), - [sym_preproc_call] = STATE(958), - [sym_function_definition] = STATE(958), - [sym_declaration] = STATE(958), - [sym_type_definition] = STATE(958), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6385), - [sym_linkage_specification] = STATE(958), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2684), - [sym_declaration_list] = STATE(958), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8772), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(578), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4545), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(1006), - [sym_statement] = STATE(958), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(958), - [sym_preproc_if_in_block] = STATE(958), - [sym_preproc_ifdef_in_block] = STATE(958), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2437), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(958), - [sym_import_declaration] = STATE(958), - [sym_template_declaration] = STATE(958), - [sym_template_instantiation] = STATE(958), - [sym_operator_cast] = STATE(9265), - [sym__constructor_specifiers] = STATE(2437), - [sym_operator_cast_definition] = STATE(958), - [sym_operator_cast_declaration] = STATE(958), - [sym_constructor_or_destructor_definition] = STATE(958), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(958), - [sym_namespace_alias_definition] = STATE(958), - [sym_using_declaration] = STATE(958), - [sym_alias_declaration] = STATE(958), - [sym_static_assert_declaration] = STATE(958), - [sym_consteval_block_declaration] = STATE(958), - [sym_concept_definition] = STATE(958), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9265), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(184), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2437), - [sym_identifier] = ACTIONS(1314), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(1316), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1318), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1318), - [sym_preproc_directive] = ACTIONS(17), + [STATE(113)] = { + [sym__top_level_item] = STATE(116), + [sym_preproc_include] = STATE(116), + [sym_preproc_def] = STATE(116), + [sym_preproc_function_def] = STATE(116), + [sym_preproc_call] = STATE(116), + [sym_preproc_if] = STATE(116), + [sym_preproc_ifdef] = STATE(116), + [sym_function_definition] = STATE(116), + [sym_declaration] = STATE(116), + [sym_type_definition] = STATE(116), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6402), + [sym_linkage_specification] = STATE(116), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2720), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8795), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(116), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4419), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(872), + [sym__top_level_statement] = STATE(116), + [sym_labeled_statement] = STATE(116), + [sym__top_level_expression_statement] = STATE(116), + [sym_if_statement] = STATE(116), + [sym_switch_statement] = STATE(116), + [sym_case_statement] = STATE(116), + [sym_while_statement] = STATE(116), + [sym_do_statement] = STATE(116), + [sym_for_statement] = STATE(116), + [sym_return_statement] = STATE(116), + [sym_break_statement] = STATE(116), + [sym_continue_statement] = STATE(116), + [sym_goto_statement] = STATE(116), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7365), + [sym_conditional_expression] = STATE(7455), + [sym_assignment_expression] = STATE(7455), + [sym_pointer_expression] = STATE(6006), + [sym_unary_expression] = STATE(7455), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7455), + [sym_cast_expression] = STATE(7455), + [sym_sizeof_expression] = STATE(7455), + [sym_alignof_expression] = STATE(7455), + [sym_offsetof_expression] = STATE(7455), + [sym_generic_expression] = STATE(7455), + [sym_subscript_expression] = STATE(6006), + [sym_call_expression] = STATE(6006), + [sym_gnu_asm_expression] = STATE(7455), + [sym_extension_expression] = STATE(7455), + [sym_field_expression] = STATE(6006), + [sym_compound_literal_expression] = STATE(7455), + [sym_parenthesized_expression] = STATE(6006), + [sym_char_literal] = STATE(7365), + [sym_concatenated_string] = STATE(7365), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7455), + [sym__empty_declaration] = STATE(116), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2503), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(116), + [sym_export_declaration] = STATE(116), + [sym_import_declaration] = STATE(116), + [sym_global_module_fragment_declaration] = STATE(116), + [sym_private_module_fragment_declaration] = STATE(116), + [sym_template_declaration] = STATE(116), + [sym_template_instantiation] = STATE(116), + [sym_operator_cast] = STATE(9184), + [sym__constructor_specifiers] = STATE(2503), + [sym_operator_cast_definition] = STATE(116), + [sym_operator_cast_declaration] = STATE(116), + [sym_constructor_or_destructor_definition] = STATE(116), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7370), + [sym_namespace_definition] = STATE(116), + [sym_namespace_alias_definition] = STATE(116), + [sym_using_declaration] = STATE(116), + [sym_alias_declaration] = STATE(116), + [sym_static_assert_declaration] = STATE(116), + [sym_consteval_block_declaration] = STATE(116), + [sym_concept_definition] = STATE(116), + [sym_for_range_loop] = STATE(116), + [sym_co_return_statement] = STATE(116), + [sym_co_yield_statement] = STATE(116), + [sym_throw_statement] = STATE(116), + [sym_try_statement] = STATE(116), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7455), + [sym_new_expression] = STATE(7455), + [sym_delete_expression] = STATE(7455), + [sym_requires_clause] = STATE(7455), + [sym_requires_expression] = STATE(7455), + [sym_lambda_expression] = STATE(7455), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7455), + [sym_parameter_pack_expansion] = STATE(7455), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5796), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9184), + [sym_reflect_expression] = STATE(7455), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7372), + [sym_expansion_statement] = STATE(116), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(6006), + [aux_sym_translation_unit_repeat1] = STATE(116), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2503), + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1400), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(990), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -69799,14 +70146,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(1320), - [anon_sym___extension__] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(998), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(45), + [anon_sym_using] = ACTIONS(1000), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -69817,7 +70164,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(1322), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -69825,7 +70172,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(1004), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -69842,7 +70189,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(69), + [anon_sym_consteval] = ACTIONS(1006), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -69850,19 +70197,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -69879,7 +70224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), + [sym_number_literal] = ACTIONS(1406), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -69890,26 +70235,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(1328), - [anon_sym_import] = ACTIONS(139), - [anon_sym_template] = ACTIONS(141), + [anon_sym_export] = ACTIONS(1410), + [anon_sym_module] = ACTIONS(1412), + [anon_sym_import] = ACTIONS(1036), + [anon_sym_template] = ACTIONS(1038), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(145), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(151), - [anon_sym_static_assert] = ACTIONS(153), - [anon_sym_concept] = ACTIONS(155), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_static_assert] = ACTIONS(1046), + [anon_sym_concept] = ACTIONS(1048), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -69920,428 +70266,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), - }, - [STATE(113)] = { - [sym__top_level_item] = STATE(113), - [sym_preproc_include] = STATE(113), - [sym_preproc_def] = STATE(113), - [sym_preproc_function_def] = STATE(113), - [sym_preproc_call] = STATE(113), - [sym_preproc_if] = STATE(113), - [sym_preproc_ifdef] = STATE(113), - [sym_function_definition] = STATE(113), - [sym_declaration] = STATE(113), - [sym_type_definition] = STATE(113), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6385), - [sym_linkage_specification] = STATE(113), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2684), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8772), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(113), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4545), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(957), - [sym__top_level_statement] = STATE(113), - [sym_labeled_statement] = STATE(113), - [sym__top_level_expression_statement] = STATE(113), - [sym_if_statement] = STATE(113), - [sym_switch_statement] = STATE(113), - [sym_case_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_expression] = STATE(7241), - [sym__string] = STATE(7205), - [sym_conditional_expression] = STATE(7419), - [sym_assignment_expression] = STATE(7419), - [sym_pointer_expression] = STATE(6003), - [sym_unary_expression] = STATE(7419), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7419), - [sym_cast_expression] = STATE(7419), - [sym_sizeof_expression] = STATE(7419), - [sym_alignof_expression] = STATE(7419), - [sym_offsetof_expression] = STATE(7419), - [sym_generic_expression] = STATE(7419), - [sym_subscript_expression] = STATE(6003), - [sym_call_expression] = STATE(6003), - [sym_gnu_asm_expression] = STATE(7419), - [sym_extension_expression] = STATE(7419), - [sym_field_expression] = STATE(6003), - [sym_compound_literal_expression] = STATE(7419), - [sym_parenthesized_expression] = STATE(6003), - [sym_char_literal] = STATE(7205), - [sym_concatenated_string] = STATE(7205), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7419), - [sym__empty_declaration] = STATE(113), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2437), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(113), - [sym_export_declaration] = STATE(113), - [sym_import_declaration] = STATE(113), - [sym_global_module_fragment_declaration] = STATE(113), - [sym_private_module_fragment_declaration] = STATE(113), - [sym_template_declaration] = STATE(113), - [sym_template_instantiation] = STATE(113), - [sym_operator_cast] = STATE(9265), - [sym__constructor_specifiers] = STATE(2437), - [sym_operator_cast_definition] = STATE(113), - [sym_operator_cast_declaration] = STATE(113), - [sym_constructor_or_destructor_definition] = STATE(113), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7311), - [sym_namespace_definition] = STATE(113), - [sym_namespace_alias_definition] = STATE(113), - [sym_using_declaration] = STATE(113), - [sym_alias_declaration] = STATE(113), - [sym_static_assert_declaration] = STATE(113), - [sym_consteval_block_declaration] = STATE(113), - [sym_concept_definition] = STATE(113), - [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(4767), - [sym_co_await_expression] = STATE(7419), - [sym_new_expression] = STATE(7419), - [sym_delete_expression] = STATE(7419), - [sym_requires_clause] = STATE(7419), - [sym_requires_expression] = STATE(7419), - [sym_lambda_expression] = STATE(7419), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7419), - [sym_parameter_pack_expansion] = STATE(7419), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5885), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9265), - [sym_reflect_expression] = STATE(7419), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7314), - [sym_expansion_statement] = STATE(113), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(6003), - [aux_sym_translation_unit_repeat1] = STATE(113), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(184), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2437), - [ts_builtin_sym_end] = ACTIONS(1398), - [sym_identifier] = ACTIONS(1400), - [aux_sym_preproc_include_token1] = ACTIONS(1403), - [aux_sym_preproc_def_token1] = ACTIONS(1406), - [aux_sym_preproc_if_token1] = ACTIONS(1409), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1412), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1412), - [sym_preproc_directive] = ACTIONS(1415), - [anon_sym_LPAREN2] = ACTIONS(727), - [anon_sym_BANG] = ACTIONS(730), - [anon_sym_TILDE] = ACTIONS(733), - [anon_sym_DASH] = ACTIONS(736), - [anon_sym_PLUS] = ACTIONS(736), - [anon_sym_STAR] = ACTIONS(739), - [anon_sym_AMP_AMP] = ACTIONS(742), - [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym___extension__] = ACTIONS(1421), - [anon_sym_typedef] = ACTIONS(1424), - [anon_sym_virtual] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(1427), - [anon_sym___attribute__] = ACTIONS(763), - [anon_sym___attribute] = ACTIONS(763), - [anon_sym_using] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(769), - [anon_sym_LBRACK_LBRACK] = ACTIONS(772), - [anon_sym___declspec] = ACTIONS(775), - [anon_sym___based] = ACTIONS(778), - [anon_sym___cdecl] = ACTIONS(781), - [anon_sym___clrcall] = ACTIONS(781), - [anon_sym___stdcall] = ACTIONS(781), - [anon_sym___fastcall] = ACTIONS(781), - [anon_sym___thiscall] = ACTIONS(781), - [anon_sym___vectorcall] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(1433), - [anon_sym_signed] = ACTIONS(787), - [anon_sym_unsigned] = ACTIONS(787), - [anon_sym_long] = ACTIONS(787), - [anon_sym_short] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(790), - [anon_sym_static] = ACTIONS(793), - [anon_sym_register] = ACTIONS(793), - [anon_sym_inline] = ACTIONS(1436), - [anon_sym___inline] = ACTIONS(793), - [anon_sym___inline__] = ACTIONS(793), - [anon_sym___forceinline] = ACTIONS(793), - [anon_sym_thread_local] = ACTIONS(793), - [anon_sym___thread] = ACTIONS(793), - [anon_sym_const] = ACTIONS(799), - [anon_sym_constexpr] = ACTIONS(799), - [anon_sym_volatile] = ACTIONS(799), - [anon_sym_restrict] = ACTIONS(799), - [anon_sym___restrict__] = ACTIONS(799), - [anon_sym__Atomic] = ACTIONS(799), - [anon_sym__Noreturn] = ACTIONS(799), - [anon_sym_noreturn] = ACTIONS(799), - [anon_sym__Nonnull] = ACTIONS(799), - [anon_sym_mutable] = ACTIONS(799), - [anon_sym_constinit] = ACTIONS(799), - [anon_sym_consteval] = ACTIONS(1439), - [anon_sym_alignas] = ACTIONS(805), - [anon_sym__Alignas] = ACTIONS(805), - [sym_primitive_type] = ACTIONS(808), - [anon_sym_enum] = ACTIONS(811), - [anon_sym_class] = ACTIONS(814), - [anon_sym_struct] = ACTIONS(817), - [anon_sym_union] = ACTIONS(820), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_switch] = ACTIONS(1445), - [anon_sym_case] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1451), - [anon_sym_while] = ACTIONS(1454), - [anon_sym_do] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1463), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_goto] = ACTIONS(1472), - [anon_sym_not] = ACTIONS(736), - [anon_sym_compl] = ACTIONS(736), - [anon_sym_DASH_DASH] = ACTIONS(856), - [anon_sym_PLUS_PLUS] = ACTIONS(856), - [anon_sym_sizeof] = ACTIONS(859), - [anon_sym___alignof__] = ACTIONS(862), - [anon_sym___alignof] = ACTIONS(862), - [anon_sym__alignof] = ACTIONS(862), - [anon_sym_alignof] = ACTIONS(862), - [anon_sym__Alignof] = ACTIONS(862), - [anon_sym_offsetof] = ACTIONS(865), - [anon_sym__Generic] = ACTIONS(868), - [anon_sym_typename] = ACTIONS(871), - [anon_sym_asm] = ACTIONS(874), - [anon_sym___asm__] = ACTIONS(874), - [anon_sym___asm] = ACTIONS(874), - [sym_number_literal] = ACTIONS(1475), - [anon_sym_L_SQUOTE] = ACTIONS(880), - [anon_sym_u_SQUOTE] = ACTIONS(880), - [anon_sym_U_SQUOTE] = ACTIONS(880), - [anon_sym_u8_SQUOTE] = ACTIONS(880), - [anon_sym_SQUOTE] = ACTIONS(880), - [anon_sym_L_DQUOTE] = ACTIONS(883), - [anon_sym_u_DQUOTE] = ACTIONS(883), - [anon_sym_U_DQUOTE] = ACTIONS(883), - [anon_sym_u8_DQUOTE] = ACTIONS(883), - [anon_sym_DQUOTE] = ACTIONS(883), - [sym_true] = ACTIONS(1478), - [sym_false] = ACTIONS(1478), - [anon_sym_NULL] = ACTIONS(889), - [anon_sym_nullptr] = ACTIONS(889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(892), - [anon_sym_decltype] = ACTIONS(895), - [anon_sym_explicit] = ACTIONS(898), - [anon_sym_export] = ACTIONS(1481), - [anon_sym_module] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(1487), - [anon_sym_template] = ACTIONS(1490), - [anon_sym_operator] = ACTIONS(913), - [anon_sym_try] = ACTIONS(1493), - [anon_sym_delete] = ACTIONS(919), - [anon_sym_throw] = ACTIONS(1496), - [anon_sym_namespace] = ACTIONS(1499), - [anon_sym_static_assert] = ACTIONS(1502), - [anon_sym_concept] = ACTIONS(1505), - [anon_sym_co_return] = ACTIONS(1508), - [anon_sym_co_yield] = ACTIONS(1511), - [anon_sym_R_DQUOTE] = ACTIONS(940), - [anon_sym_LR_DQUOTE] = ACTIONS(940), - [anon_sym_uR_DQUOTE] = ACTIONS(940), - [anon_sym_UR_DQUOTE] = ACTIONS(940), - [anon_sym_u8R_DQUOTE] = ACTIONS(940), - [anon_sym_co_await] = ACTIONS(943), - [anon_sym_new] = ACTIONS(946), - [anon_sym_requires] = ACTIONS(949), - [anon_sym_CARET_CARET] = ACTIONS(952), - [anon_sym_LBRACK_COLON] = ACTIONS(955), - [sym_this] = ACTIONS(1478), + [sym_this] = ACTIONS(1408), }, [STATE(114)] = { - [sym__top_level_item] = STATE(113), - [sym_preproc_include] = STATE(113), - [sym_preproc_def] = STATE(113), - [sym_preproc_function_def] = STATE(113), - [sym_preproc_call] = STATE(113), - [sym_preproc_if] = STATE(113), - [sym_preproc_ifdef] = STATE(113), - [sym_function_definition] = STATE(113), - [sym_declaration] = STATE(113), - [sym_type_definition] = STATE(113), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6385), - [sym_linkage_specification] = STATE(113), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2684), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8772), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(113), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4545), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(957), - [sym__top_level_statement] = STATE(113), - [sym_labeled_statement] = STATE(113), - [sym__top_level_expression_statement] = STATE(113), - [sym_if_statement] = STATE(113), - [sym_switch_statement] = STATE(113), - [sym_case_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_expression] = STATE(7241), - [sym__string] = STATE(7205), - [sym_conditional_expression] = STATE(7419), - [sym_assignment_expression] = STATE(7419), - [sym_pointer_expression] = STATE(6003), - [sym_unary_expression] = STATE(7419), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7419), - [sym_cast_expression] = STATE(7419), - [sym_sizeof_expression] = STATE(7419), - [sym_alignof_expression] = STATE(7419), - [sym_offsetof_expression] = STATE(7419), - [sym_generic_expression] = STATE(7419), - [sym_subscript_expression] = STATE(6003), - [sym_call_expression] = STATE(6003), - [sym_gnu_asm_expression] = STATE(7419), - [sym_extension_expression] = STATE(7419), - [sym_field_expression] = STATE(6003), - [sym_compound_literal_expression] = STATE(7419), - [sym_parenthesized_expression] = STATE(6003), - [sym_char_literal] = STATE(7205), - [sym_concatenated_string] = STATE(7205), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7419), - [sym__empty_declaration] = STATE(113), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2437), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(113), - [sym_export_declaration] = STATE(113), - [sym_import_declaration] = STATE(113), - [sym_global_module_fragment_declaration] = STATE(113), - [sym_private_module_fragment_declaration] = STATE(113), - [sym_template_declaration] = STATE(113), - [sym_template_instantiation] = STATE(113), - [sym_operator_cast] = STATE(9265), - [sym__constructor_specifiers] = STATE(2437), - [sym_operator_cast_definition] = STATE(113), - [sym_operator_cast_declaration] = STATE(113), - [sym_constructor_or_destructor_definition] = STATE(113), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7311), - [sym_namespace_definition] = STATE(113), - [sym_namespace_alias_definition] = STATE(113), - [sym_using_declaration] = STATE(113), - [sym_alias_declaration] = STATE(113), - [sym_static_assert_declaration] = STATE(113), - [sym_consteval_block_declaration] = STATE(113), - [sym_concept_definition] = STATE(113), - [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(4767), - [sym_co_await_expression] = STATE(7419), - [sym_new_expression] = STATE(7419), - [sym_delete_expression] = STATE(7419), - [sym_requires_clause] = STATE(7419), - [sym_requires_expression] = STATE(7419), - [sym_lambda_expression] = STATE(7419), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7419), - [sym_parameter_pack_expansion] = STATE(7419), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5885), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9265), - [sym_reflect_expression] = STATE(7419), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7314), - [sym_expansion_statement] = STATE(113), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(6003), - [aux_sym_translation_unit_repeat1] = STATE(113), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(184), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2437), - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(7), - [aux_sym_preproc_include_token1] = ACTIONS(9), - [aux_sym_preproc_def_token1] = ACTIONS(11), - [aux_sym_preproc_if_token1] = ACTIONS(13), - [aux_sym_preproc_ifdef_token1] = ACTIONS(15), - [aux_sym_preproc_ifdef_token2] = ACTIONS(15), - [sym_preproc_directive] = ACTIONS(17), + [sym__block_item] = STATE(843), + [sym_preproc_include] = STATE(843), + [sym_preproc_def] = STATE(843), + [sym_preproc_function_def] = STATE(843), + [sym_preproc_call] = STATE(843), + [sym_function_definition] = STATE(843), + [sym_declaration] = STATE(843), + [sym_type_definition] = STATE(843), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6414), + [sym_linkage_specification] = STATE(843), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym_declaration_list] = STATE(843), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8816), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(821), + [sym_statement] = STATE(843), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(843), + [sym_preproc_if_in_block] = STATE(843), + [sym_preproc_ifdef_in_block] = STATE(843), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2476), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(843), + [sym_import_declaration] = STATE(843), + [sym_template_declaration] = STATE(843), + [sym_template_instantiation] = STATE(843), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2476), + [sym_operator_cast_definition] = STATE(843), + [sym_operator_cast_declaration] = STATE(843), + [sym_constructor_or_destructor_definition] = STATE(843), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6810), + [sym_namespace_definition] = STATE(843), + [sym_namespace_alias_definition] = STATE(843), + [sym_using_declaration] = STATE(843), + [sym_alias_declaration] = STATE(843), + [sym_static_assert_declaration] = STATE(843), + [sym_consteval_block_declaration] = STATE(843), + [sym_concept_definition] = STATE(843), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(181), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2476), + [sym_identifier] = ACTIONS(173), + [aux_sym_preproc_include_token1] = ACTIONS(175), + [aux_sym_preproc_def_token1] = ACTIONS(177), + [aux_sym_preproc_if_token1] = ACTIONS(181), + [aux_sym_preproc_ifdef_token1] = ACTIONS(183), + [aux_sym_preproc_ifdef_token2] = ACTIONS(183), + [sym_preproc_directive] = ACTIONS(185), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -70350,14 +70420,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(33), - [anon_sym___extension__] = ACTIONS(35), - [anon_sym_typedef] = ACTIONS(37), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(189), + [anon_sym_typedef] = ACTIONS(191), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(41), + [anon_sym_extern] = ACTIONS(193), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(45), + [anon_sym_using] = ACTIONS(195), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -70368,7 +70438,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(57), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -70376,7 +70446,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(203), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -70393,7 +70463,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(69), + [anon_sym_consteval] = ACTIONS(205), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -70401,17 +70471,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -70428,7 +70500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(119), + [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -70439,27 +70511,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(125), - [sym_false] = ACTIONS(125), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(135), - [anon_sym_module] = ACTIONS(137), - [anon_sym_import] = ACTIONS(139), - [anon_sym_template] = ACTIONS(141), + [anon_sym_export] = ACTIONS(239), + [anon_sym_import] = ACTIONS(241), + [anon_sym_template] = ACTIONS(243), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(145), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(151), - [anon_sym_static_assert] = ACTIONS(153), - [anon_sym_concept] = ACTIONS(155), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(249), + [anon_sym_static_assert] = ACTIONS(251), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -70470,152 +70541,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(125), + [sym_this] = ACTIONS(237), }, [STATE(115)] = { - [sym__block_item] = STATE(652), - [sym_preproc_include] = STATE(652), - [sym_preproc_def] = STATE(652), - [sym_preproc_function_def] = STATE(652), - [sym_preproc_call] = STATE(652), - [sym_function_definition] = STATE(652), - [sym_declaration] = STATE(652), - [sym_type_definition] = STATE(652), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6413), - [sym_linkage_specification] = STATE(652), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2707), - [sym_declaration_list] = STATE(652), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8810), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(637), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4502), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(650), - [sym_statement] = STATE(652), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(652), - [sym_preproc_if_in_block] = STATE(652), - [sym_preproc_ifdef_in_block] = STATE(652), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2454), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(652), - [sym_import_declaration] = STATE(652), - [sym_template_declaration] = STATE(652), - [sym_template_instantiation] = STATE(652), - [sym_operator_cast] = STATE(9210), - [sym__constructor_specifiers] = STATE(2454), - [sym_operator_cast_definition] = STATE(652), - [sym_operator_cast_declaration] = STATE(652), - [sym_constructor_or_destructor_definition] = STATE(652), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(452), + [sym_preproc_include] = STATE(452), + [sym_preproc_def] = STATE(452), + [sym_preproc_function_def] = STATE(452), + [sym_preproc_call] = STATE(452), + [sym_function_definition] = STATE(452), + [sym_declaration] = STATE(452), + [sym_type_definition] = STATE(452), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_linkage_specification] = STATE(452), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym_declaration_list] = STATE(452), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8805), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(472), + [sym_statement] = STATE(452), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(452), + [sym_preproc_if_in_block] = STATE(452), + [sym_preproc_ifdef_in_block] = STATE(452), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2500), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(452), + [sym_import_declaration] = STATE(452), + [sym_template_declaration] = STATE(452), + [sym_template_instantiation] = STATE(452), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2500), + [sym_operator_cast_definition] = STATE(452), + [sym_operator_cast_declaration] = STATE(452), + [sym_constructor_or_destructor_definition] = STATE(452), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(652), - [sym_namespace_alias_definition] = STATE(652), - [sym_using_declaration] = STATE(652), - [sym_alias_declaration] = STATE(652), - [sym_static_assert_declaration] = STATE(652), - [sym_consteval_block_declaration] = STATE(652), - [sym_concept_definition] = STATE(652), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9210), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2454), - [sym_identifier] = ACTIONS(1089), - [aux_sym_preproc_include_token1] = ACTIONS(1091), - [aux_sym_preproc_def_token1] = ACTIONS(1093), - [aux_sym_preproc_if_token1] = ACTIONS(1095), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1099), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1099), - [sym_preproc_directive] = ACTIONS(1101), + [sym_namespace_definition] = STATE(452), + [sym_namespace_alias_definition] = STATE(452), + [sym_using_declaration] = STATE(452), + [sym_alias_declaration] = STATE(452), + [sym_static_assert_declaration] = STATE(452), + [sym_consteval_block_declaration] = STATE(452), + [sym_concept_definition] = STATE(452), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(187), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2500), + [sym_identifier] = ACTIONS(279), + [aux_sym_preproc_include_token1] = ACTIONS(281), + [aux_sym_preproc_def_token1] = ACTIONS(283), + [aux_sym_preproc_if_token1] = ACTIONS(285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(289), + [sym_preproc_directive] = ACTIONS(297), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -70624,14 +70695,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(1103), - [anon_sym___extension__] = ACTIONS(1105), - [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(301), + [anon_sym_typedef] = ACTIONS(303), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(305), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(307), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -70642,7 +70713,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(1173), + [anon_sym_LBRACE] = ACTIONS(966), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -70650,7 +70721,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(1115), + [anon_sym_inline] = ACTIONS(311), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -70667,7 +70738,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(1117), + [anon_sym_consteval] = ACTIONS(313), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -70675,19 +70746,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -70723,18 +70794,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(1145), - [anon_sym_import] = ACTIONS(1147), - [anon_sym_template] = ACTIONS(1149), + [anon_sym_export] = ACTIONS(341), + [anon_sym_import] = ACTIONS(343), + [anon_sym_template] = ACTIONS(345), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1155), - [anon_sym_static_assert] = ACTIONS(1157), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_namespace] = ACTIONS(351), + [anon_sym_static_assert] = ACTIONS(353), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -70748,150 +70819,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(116)] = { - [sym__top_level_item] = STATE(119), - [sym_preproc_include] = STATE(119), - [sym_preproc_def] = STATE(119), - [sym_preproc_function_def] = STATE(119), - [sym_preproc_call] = STATE(119), - [sym_preproc_if] = STATE(119), - [sym_preproc_ifdef] = STATE(119), - [sym_function_definition] = STATE(119), - [sym_declaration] = STATE(119), - [sym_type_definition] = STATE(119), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6413), - [sym_linkage_specification] = STATE(119), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2707), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8810), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(119), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4502), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(897), - [sym__top_level_statement] = STATE(119), - [sym_labeled_statement] = STATE(119), - [sym__top_level_expression_statement] = STATE(119), - [sym_if_statement] = STATE(119), - [sym_switch_statement] = STATE(119), - [sym_case_statement] = STATE(119), - [sym_while_statement] = STATE(119), - [sym_do_statement] = STATE(119), - [sym_for_statement] = STATE(119), - [sym_return_statement] = STATE(119), - [sym_break_statement] = STATE(119), - [sym_continue_statement] = STATE(119), - [sym_goto_statement] = STATE(119), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7218), - [sym_conditional_expression] = STATE(7442), - [sym_assignment_expression] = STATE(7442), - [sym_pointer_expression] = STATE(5948), - [sym_unary_expression] = STATE(7442), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7442), - [sym_cast_expression] = STATE(7442), - [sym_sizeof_expression] = STATE(7442), - [sym_alignof_expression] = STATE(7442), - [sym_offsetof_expression] = STATE(7442), - [sym_generic_expression] = STATE(7442), - [sym_subscript_expression] = STATE(5948), - [sym_call_expression] = STATE(5948), - [sym_gnu_asm_expression] = STATE(7442), - [sym_extension_expression] = STATE(7442), - [sym_field_expression] = STATE(5948), - [sym_compound_literal_expression] = STATE(7442), - [sym_parenthesized_expression] = STATE(5948), - [sym_char_literal] = STATE(7218), - [sym_concatenated_string] = STATE(7218), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7442), - [sym__empty_declaration] = STATE(119), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2454), - [sym_dependent_type] = STATE(4935), - [sym_module_declaration] = STATE(119), - [sym_export_declaration] = STATE(119), - [sym_import_declaration] = STATE(119), - [sym_global_module_fragment_declaration] = STATE(119), - [sym_private_module_fragment_declaration] = STATE(119), - [sym_template_declaration] = STATE(119), - [sym_template_instantiation] = STATE(119), - [sym_operator_cast] = STATE(9210), - [sym__constructor_specifiers] = STATE(2454), - [sym_operator_cast_definition] = STATE(119), - [sym_operator_cast_declaration] = STATE(119), - [sym_constructor_or_destructor_definition] = STATE(119), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7246), - [sym_namespace_definition] = STATE(119), - [sym_namespace_alias_definition] = STATE(119), - [sym_using_declaration] = STATE(119), - [sym_alias_declaration] = STATE(119), - [sym_static_assert_declaration] = STATE(119), - [sym_consteval_block_declaration] = STATE(119), - [sym_concept_definition] = STATE(119), - [sym_for_range_loop] = STATE(119), - [sym_co_return_statement] = STATE(119), - [sym_co_yield_statement] = STATE(119), - [sym_throw_statement] = STATE(119), - [sym_try_statement] = STATE(119), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7442), - [sym_new_expression] = STATE(7442), - [sym_delete_expression] = STATE(7442), - [sym_requires_clause] = STATE(7442), - [sym_requires_expression] = STATE(7442), - [sym_lambda_expression] = STATE(7442), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7442), - [sym_parameter_pack_expansion] = STATE(7442), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5874), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9210), - [sym_reflect_expression] = STATE(7442), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7255), - [sym_expansion_statement] = STATE(119), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5948), - [aux_sym_translation_unit_repeat1] = STATE(119), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2454), - [sym_identifier] = ACTIONS(1516), - [aux_sym_preproc_include_token1] = ACTIONS(1091), - [aux_sym_preproc_def_token1] = ACTIONS(1093), - [aux_sym_preproc_if_token1] = ACTIONS(1518), - [aux_sym_preproc_if_token2] = ACTIONS(1520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1101), + [sym__top_level_item] = STATE(117), + [sym_preproc_include] = STATE(117), + [sym_preproc_def] = STATE(117), + [sym_preproc_function_def] = STATE(117), + [sym_preproc_call] = STATE(117), + [sym_preproc_if] = STATE(117), + [sym_preproc_ifdef] = STATE(117), + [sym_function_definition] = STATE(117), + [sym_declaration] = STATE(117), + [sym_type_definition] = STATE(117), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6402), + [sym_linkage_specification] = STATE(117), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2720), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8795), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(117), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4419), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(872), + [sym__top_level_statement] = STATE(117), + [sym_labeled_statement] = STATE(117), + [sym__top_level_expression_statement] = STATE(117), + [sym_if_statement] = STATE(117), + [sym_switch_statement] = STATE(117), + [sym_case_statement] = STATE(117), + [sym_while_statement] = STATE(117), + [sym_do_statement] = STATE(117), + [sym_for_statement] = STATE(117), + [sym_return_statement] = STATE(117), + [sym_break_statement] = STATE(117), + [sym_continue_statement] = STATE(117), + [sym_goto_statement] = STATE(117), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7365), + [sym_conditional_expression] = STATE(7455), + [sym_assignment_expression] = STATE(7455), + [sym_pointer_expression] = STATE(6006), + [sym_unary_expression] = STATE(7455), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7455), + [sym_cast_expression] = STATE(7455), + [sym_sizeof_expression] = STATE(7455), + [sym_alignof_expression] = STATE(7455), + [sym_offsetof_expression] = STATE(7455), + [sym_generic_expression] = STATE(7455), + [sym_subscript_expression] = STATE(6006), + [sym_call_expression] = STATE(6006), + [sym_gnu_asm_expression] = STATE(7455), + [sym_extension_expression] = STATE(7455), + [sym_field_expression] = STATE(6006), + [sym_compound_literal_expression] = STATE(7455), + [sym_parenthesized_expression] = STATE(6006), + [sym_char_literal] = STATE(7365), + [sym_concatenated_string] = STATE(7365), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7455), + [sym__empty_declaration] = STATE(117), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2503), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(117), + [sym_export_declaration] = STATE(117), + [sym_import_declaration] = STATE(117), + [sym_global_module_fragment_declaration] = STATE(117), + [sym_private_module_fragment_declaration] = STATE(117), + [sym_template_declaration] = STATE(117), + [sym_template_instantiation] = STATE(117), + [sym_operator_cast] = STATE(9184), + [sym__constructor_specifiers] = STATE(2503), + [sym_operator_cast_definition] = STATE(117), + [sym_operator_cast_declaration] = STATE(117), + [sym_constructor_or_destructor_definition] = STATE(117), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7370), + [sym_namespace_definition] = STATE(117), + [sym_namespace_alias_definition] = STATE(117), + [sym_using_declaration] = STATE(117), + [sym_alias_declaration] = STATE(117), + [sym_static_assert_declaration] = STATE(117), + [sym_consteval_block_declaration] = STATE(117), + [sym_concept_definition] = STATE(117), + [sym_for_range_loop] = STATE(117), + [sym_co_return_statement] = STATE(117), + [sym_co_yield_statement] = STATE(117), + [sym_throw_statement] = STATE(117), + [sym_try_statement] = STATE(117), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7455), + [sym_new_expression] = STATE(7455), + [sym_delete_expression] = STATE(7455), + [sym_requires_clause] = STATE(7455), + [sym_requires_expression] = STATE(7455), + [sym_lambda_expression] = STATE(7455), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7455), + [sym_parameter_pack_expansion] = STATE(7455), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5796), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9184), + [sym_reflect_expression] = STATE(7455), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7372), + [sym_expansion_statement] = STATE(117), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(6006), + [aux_sym_translation_unit_repeat1] = STATE(117), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2503), + [sym_identifier] = ACTIONS(1396), + [aux_sym_preproc_include_token1] = ACTIONS(980), + [aux_sym_preproc_def_token1] = ACTIONS(982), + [aux_sym_preproc_if_token1] = ACTIONS(1398), + [aux_sym_preproc_if_token2] = ACTIONS(1416), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1402), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1402), + [sym_preproc_directive] = ACTIONS(990), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -70900,14 +70971,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(1524), - [anon_sym___extension__] = ACTIONS(1105), - [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(1404), + [anon_sym___extension__] = ACTIONS(994), + [anon_sym_typedef] = ACTIONS(996), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(998), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(1000), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -70918,7 +70989,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(1113), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -70926,7 +70997,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(1115), + [anon_sym_inline] = ACTIONS(1004), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -70943,7 +71014,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(1117), + [anon_sym_consteval] = ACTIONS(1006), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -70951,17 +71022,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -70978,7 +71049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(1406), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -70989,27 +71060,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(1528), - [sym_false] = ACTIONS(1528), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(1530), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_import] = ACTIONS(1147), - [anon_sym_template] = ACTIONS(1149), + [anon_sym_export] = ACTIONS(1410), + [anon_sym_module] = ACTIONS(1412), + [anon_sym_import] = ACTIONS(1036), + [anon_sym_template] = ACTIONS(1038), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1155), - [anon_sym_static_assert] = ACTIONS(1157), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_static_assert] = ACTIONS(1046), + [anon_sym_concept] = ACTIONS(1048), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -71020,427 +71091,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(1528), + [sym_this] = ACTIONS(1408), }, [STATE(117)] = { - [sym__block_item] = STATE(860), - [sym_preproc_include] = STATE(860), - [sym_preproc_def] = STATE(860), - [sym_preproc_function_def] = STATE(860), - [sym_preproc_call] = STATE(860), - [sym_function_definition] = STATE(860), - [sym_declaration] = STATE(860), - [sym_type_definition] = STATE(860), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_linkage_specification] = STATE(860), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym_declaration_list] = STATE(860), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8767), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(843), - [sym_statement] = STATE(860), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(860), - [sym_preproc_if_in_block] = STATE(860), - [sym_preproc_ifdef_in_block] = STATE(860), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2497), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(860), - [sym_import_declaration] = STATE(860), - [sym_template_declaration] = STATE(860), - [sym_template_instantiation] = STATE(860), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2497), - [sym_operator_cast_definition] = STATE(860), - [sym_operator_cast_declaration] = STATE(860), - [sym_constructor_or_destructor_definition] = STATE(860), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(860), - [sym_namespace_alias_definition] = STATE(860), - [sym_using_declaration] = STATE(860), - [sym_alias_declaration] = STATE(860), - [sym_static_assert_declaration] = STATE(860), - [sym_consteval_block_declaration] = STATE(860), - [sym_concept_definition] = STATE(860), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(188), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2497), - [sym_identifier] = ACTIONS(958), - [aux_sym_preproc_include_token1] = ACTIONS(175), - [aux_sym_preproc_def_token1] = ACTIONS(177), - [aux_sym_preproc_if_token1] = ACTIONS(181), - [aux_sym_preproc_ifdef_token1] = ACTIONS(183), - [aux_sym_preproc_ifdef_token2] = ACTIONS(183), - [sym_preproc_directive] = ACTIONS(185), - [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(187), - [anon_sym___extension__] = ACTIONS(189), - [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(193), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(195), - [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(1534), - [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(203), - [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(205), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), + [sym__top_level_item] = STATE(117), + [sym_preproc_include] = STATE(117), + [sym_preproc_def] = STATE(117), + [sym_preproc_function_def] = STATE(117), + [sym_preproc_call] = STATE(117), + [sym_preproc_if] = STATE(117), + [sym_preproc_ifdef] = STATE(117), + [sym_function_definition] = STATE(117), + [sym_declaration] = STATE(117), + [sym_type_definition] = STATE(117), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6402), + [sym_linkage_specification] = STATE(117), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2720), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8795), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(117), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4419), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(872), + [sym__top_level_statement] = STATE(117), + [sym_labeled_statement] = STATE(117), + [sym__top_level_expression_statement] = STATE(117), + [sym_if_statement] = STATE(117), + [sym_switch_statement] = STATE(117), + [sym_case_statement] = STATE(117), + [sym_while_statement] = STATE(117), + [sym_do_statement] = STATE(117), + [sym_for_statement] = STATE(117), + [sym_return_statement] = STATE(117), + [sym_break_statement] = STATE(117), + [sym_continue_statement] = STATE(117), + [sym_goto_statement] = STATE(117), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7365), + [sym_conditional_expression] = STATE(7455), + [sym_assignment_expression] = STATE(7455), + [sym_pointer_expression] = STATE(6006), + [sym_unary_expression] = STATE(7455), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7455), + [sym_cast_expression] = STATE(7455), + [sym_sizeof_expression] = STATE(7455), + [sym_alignof_expression] = STATE(7455), + [sym_offsetof_expression] = STATE(7455), + [sym_generic_expression] = STATE(7455), + [sym_subscript_expression] = STATE(6006), + [sym_call_expression] = STATE(6006), + [sym_gnu_asm_expression] = STATE(7455), + [sym_extension_expression] = STATE(7455), + [sym_field_expression] = STATE(6006), + [sym_compound_literal_expression] = STATE(7455), + [sym_parenthesized_expression] = STATE(6006), + [sym_char_literal] = STATE(7365), + [sym_concatenated_string] = STATE(7365), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7455), + [sym__empty_declaration] = STATE(117), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2503), + [sym_dependent_type] = STATE(4852), + [sym_module_declaration] = STATE(117), + [sym_export_declaration] = STATE(117), + [sym_import_declaration] = STATE(117), + [sym_global_module_fragment_declaration] = STATE(117), + [sym_private_module_fragment_declaration] = STATE(117), + [sym_template_declaration] = STATE(117), + [sym_template_instantiation] = STATE(117), + [sym_operator_cast] = STATE(9184), + [sym__constructor_specifiers] = STATE(2503), + [sym_operator_cast_definition] = STATE(117), + [sym_operator_cast_declaration] = STATE(117), + [sym_constructor_or_destructor_definition] = STATE(117), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7370), + [sym_namespace_definition] = STATE(117), + [sym_namespace_alias_definition] = STATE(117), + [sym_using_declaration] = STATE(117), + [sym_alias_declaration] = STATE(117), + [sym_static_assert_declaration] = STATE(117), + [sym_consteval_block_declaration] = STATE(117), + [sym_concept_definition] = STATE(117), + [sym_for_range_loop] = STATE(117), + [sym_co_return_statement] = STATE(117), + [sym_co_yield_statement] = STATE(117), + [sym_throw_statement] = STATE(117), + [sym_try_statement] = STATE(117), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7455), + [sym_new_expression] = STATE(7455), + [sym_delete_expression] = STATE(7455), + [sym_requires_clause] = STATE(7455), + [sym_requires_expression] = STATE(7455), + [sym_lambda_expression] = STATE(7455), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7455), + [sym_parameter_pack_expansion] = STATE(7455), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5796), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9184), + [sym_reflect_expression] = STATE(7455), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7372), + [sym_expansion_statement] = STATE(117), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(6006), + [aux_sym_translation_unit_repeat1] = STATE(117), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(186), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2503), + [sym_identifier] = ACTIONS(1418), + [aux_sym_preproc_include_token1] = ACTIONS(1421), + [aux_sym_preproc_def_token1] = ACTIONS(1424), + [aux_sym_preproc_if_token1] = ACTIONS(1427), + [aux_sym_preproc_if_token2] = ACTIONS(719), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1430), + [sym_preproc_directive] = ACTIONS(1433), + [anon_sym_LPAREN2] = ACTIONS(727), + [anon_sym_BANG] = ACTIONS(730), + [anon_sym_TILDE] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(739), + [anon_sym_AMP_AMP] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym___extension__] = ACTIONS(1439), + [anon_sym_typedef] = ACTIONS(1442), + [anon_sym_virtual] = ACTIONS(757), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym___attribute__] = ACTIONS(763), + [anon_sym___attribute] = ACTIONS(763), + [anon_sym_using] = ACTIONS(1448), + [anon_sym_COLON_COLON] = ACTIONS(769), + [anon_sym_LBRACK_LBRACK] = ACTIONS(772), + [anon_sym___declspec] = ACTIONS(775), + [anon_sym___based] = ACTIONS(778), + [anon_sym___cdecl] = ACTIONS(781), + [anon_sym___clrcall] = ACTIONS(781), + [anon_sym___stdcall] = ACTIONS(781), + [anon_sym___fastcall] = ACTIONS(781), + [anon_sym___thiscall] = ACTIONS(781), + [anon_sym___vectorcall] = ACTIONS(781), + [anon_sym_LBRACE] = ACTIONS(1451), + [anon_sym_signed] = ACTIONS(787), + [anon_sym_unsigned] = ACTIONS(787), + [anon_sym_long] = ACTIONS(787), + [anon_sym_short] = ACTIONS(787), + [anon_sym_LBRACK] = ACTIONS(790), + [anon_sym_static] = ACTIONS(793), + [anon_sym_register] = ACTIONS(793), + [anon_sym_inline] = ACTIONS(1454), + [anon_sym___inline] = ACTIONS(793), + [anon_sym___inline__] = ACTIONS(793), + [anon_sym___forceinline] = ACTIONS(793), + [anon_sym_thread_local] = ACTIONS(793), + [anon_sym___thread] = ACTIONS(793), + [anon_sym_const] = ACTIONS(799), + [anon_sym_constexpr] = ACTIONS(799), + [anon_sym_volatile] = ACTIONS(799), + [anon_sym_restrict] = ACTIONS(799), + [anon_sym___restrict__] = ACTIONS(799), + [anon_sym__Atomic] = ACTIONS(799), + [anon_sym__Noreturn] = ACTIONS(799), + [anon_sym_noreturn] = ACTIONS(799), + [anon_sym__Nonnull] = ACTIONS(799), + [anon_sym_mutable] = ACTIONS(799), + [anon_sym_constinit] = ACTIONS(799), + [anon_sym_consteval] = ACTIONS(1457), + [anon_sym_alignas] = ACTIONS(805), + [anon_sym__Alignas] = ACTIONS(805), + [sym_primitive_type] = ACTIONS(808), + [anon_sym_enum] = ACTIONS(811), + [anon_sym_class] = ACTIONS(814), + [anon_sym_struct] = ACTIONS(817), + [anon_sym_union] = ACTIONS(820), + [anon_sym_if] = ACTIONS(1460), + [anon_sym_switch] = ACTIONS(1463), + [anon_sym_case] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1481), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1487), + [anon_sym_goto] = ACTIONS(1490), + [anon_sym_not] = ACTIONS(736), + [anon_sym_compl] = ACTIONS(736), + [anon_sym_DASH_DASH] = ACTIONS(856), + [anon_sym_PLUS_PLUS] = ACTIONS(856), + [anon_sym_sizeof] = ACTIONS(859), + [anon_sym___alignof__] = ACTIONS(862), + [anon_sym___alignof] = ACTIONS(862), + [anon_sym__alignof] = ACTIONS(862), + [anon_sym_alignof] = ACTIONS(862), + [anon_sym__Alignof] = ACTIONS(862), + [anon_sym_offsetof] = ACTIONS(865), + [anon_sym__Generic] = ACTIONS(868), + [anon_sym_typename] = ACTIONS(871), + [anon_sym_asm] = ACTIONS(874), + [anon_sym___asm__] = ACTIONS(874), + [anon_sym___asm] = ACTIONS(874), + [sym_number_literal] = ACTIONS(1493), + [anon_sym_L_SQUOTE] = ACTIONS(880), + [anon_sym_u_SQUOTE] = ACTIONS(880), + [anon_sym_U_SQUOTE] = ACTIONS(880), + [anon_sym_u8_SQUOTE] = ACTIONS(880), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_L_DQUOTE] = ACTIONS(883), + [anon_sym_u_DQUOTE] = ACTIONS(883), + [anon_sym_U_DQUOTE] = ACTIONS(883), + [anon_sym_u8_DQUOTE] = ACTIONS(883), + [anon_sym_DQUOTE] = ACTIONS(883), + [sym_true] = ACTIONS(1496), + [sym_false] = ACTIONS(1496), + [anon_sym_NULL] = ACTIONS(889), + [anon_sym_nullptr] = ACTIONS(889), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(239), - [anon_sym_import] = ACTIONS(241), - [anon_sym_template] = ACTIONS(243), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(245), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(249), - [anon_sym_static_assert] = ACTIONS(251), - [anon_sym_concept] = ACTIONS(253), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), + [sym_auto] = ACTIONS(892), + [anon_sym_decltype] = ACTIONS(895), + [anon_sym_explicit] = ACTIONS(898), + [anon_sym_export] = ACTIONS(1499), + [anon_sym_module] = ACTIONS(1502), + [anon_sym_import] = ACTIONS(1505), + [anon_sym_template] = ACTIONS(1508), + [anon_sym_operator] = ACTIONS(913), + [anon_sym_try] = ACTIONS(1511), + [anon_sym_delete] = ACTIONS(919), + [anon_sym_throw] = ACTIONS(1514), + [anon_sym_namespace] = ACTIONS(1517), + [anon_sym_static_assert] = ACTIONS(1520), + [anon_sym_concept] = ACTIONS(1523), + [anon_sym_co_return] = ACTIONS(1526), + [anon_sym_co_yield] = ACTIONS(1529), + [anon_sym_R_DQUOTE] = ACTIONS(940), + [anon_sym_LR_DQUOTE] = ACTIONS(940), + [anon_sym_uR_DQUOTE] = ACTIONS(940), + [anon_sym_UR_DQUOTE] = ACTIONS(940), + [anon_sym_u8R_DQUOTE] = ACTIONS(940), + [anon_sym_co_await] = ACTIONS(943), + [anon_sym_new] = ACTIONS(946), + [anon_sym_requires] = ACTIONS(949), + [anon_sym_CARET_CARET] = ACTIONS(952), + [anon_sym_LBRACK_COLON] = ACTIONS(955), + [sym_this] = ACTIONS(1496), }, [STATE(118)] = { - [sym__block_item] = STATE(408), - [sym_preproc_include] = STATE(408), - [sym_preproc_def] = STATE(408), - [sym_preproc_function_def] = STATE(408), - [sym_preproc_call] = STATE(408), - [sym_function_definition] = STATE(408), - [sym_declaration] = STATE(408), - [sym_type_definition] = STATE(408), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_linkage_specification] = STATE(408), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym_declaration_list] = STATE(408), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8822), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(405), - [sym_statement] = STATE(408), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym__empty_declaration] = STATE(408), - [sym_preproc_if_in_block] = STATE(408), - [sym_preproc_ifdef_in_block] = STATE(408), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2444), - [sym_dependent_type] = STATE(4935), - [sym_export_declaration] = STATE(408), - [sym_import_declaration] = STATE(408), - [sym_template_declaration] = STATE(408), - [sym_template_instantiation] = STATE(408), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2444), - [sym_operator_cast_definition] = STATE(408), - [sym_operator_cast_declaration] = STATE(408), - [sym_constructor_or_destructor_definition] = STATE(408), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), + [sym__block_item] = STATE(889), + [sym_preproc_include] = STATE(889), + [sym_preproc_def] = STATE(889), + [sym_preproc_function_def] = STATE(889), + [sym_preproc_call] = STATE(889), + [sym_function_definition] = STATE(889), + [sym_declaration] = STATE(889), + [sym_type_definition] = STATE(889), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6408), + [sym_linkage_specification] = STATE(889), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2708), + [sym_declaration_list] = STATE(889), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8793), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(587), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4507), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(905), + [sym_statement] = STATE(889), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym__empty_declaration] = STATE(889), + [sym_preproc_if_in_block] = STATE(889), + [sym_preproc_ifdef_in_block] = STATE(889), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2482), + [sym_dependent_type] = STATE(4852), + [sym_export_declaration] = STATE(889), + [sym_import_declaration] = STATE(889), + [sym_template_declaration] = STATE(889), + [sym_template_instantiation] = STATE(889), + [sym_operator_cast] = STATE(9161), + [sym__constructor_specifiers] = STATE(2482), + [sym_operator_cast_definition] = STATE(889), + [sym_operator_cast_declaration] = STATE(889), + [sym_constructor_or_destructor_definition] = STATE(889), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), [sym_template_function] = STATE(6810), - [sym_namespace_definition] = STATE(408), - [sym_namespace_alias_definition] = STATE(408), - [sym_using_declaration] = STATE(408), - [sym_alias_declaration] = STATE(408), - [sym_static_assert_declaration] = STATE(408), - [sym_consteval_block_declaration] = STATE(408), - [sym_concept_definition] = STATE(408), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5511), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(182), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2444), - [sym_identifier] = ACTIONS(279), - [aux_sym_preproc_include_token1] = ACTIONS(281), - [aux_sym_preproc_def_token1] = ACTIONS(283), - [aux_sym_preproc_if_token1] = ACTIONS(285), - [aux_sym_preproc_ifdef_token1] = ACTIONS(289), - [aux_sym_preproc_ifdef_token2] = ACTIONS(289), - [sym_preproc_directive] = ACTIONS(297), + [sym_namespace_definition] = STATE(889), + [sym_namespace_alias_definition] = STATE(889), + [sym_using_declaration] = STATE(889), + [sym_alias_declaration] = STATE(889), + [sym_static_assert_declaration] = STATE(889), + [sym_consteval_block_declaration] = STATE(889), + [sym_concept_definition] = STATE(889), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5360), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9161), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2482), + [sym_identifier] = ACTIONS(1197), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(1199), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1201), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1201), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -71449,14 +71520,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(299), - [anon_sym___extension__] = ACTIONS(301), - [anon_sym_typedef] = ACTIONS(303), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(305), + [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(307), + [anon_sym_using] = ACTIONS(45), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -71467,7 +71538,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(1077), + [anon_sym_LBRACE] = ACTIONS(1205), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -71475,7 +71546,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(311), + [anon_sym_inline] = ACTIONS(65), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -71492,7 +71563,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(313), + [anon_sym_consteval] = ACTIONS(69), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -71500,19 +71571,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(319), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(325), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_goto] = ACTIONS(335), - [anon_sym___try] = ACTIONS(337), - [anon_sym___leave] = ACTIONS(339), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -71548,18 +71619,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(341), - [anon_sym_import] = ACTIONS(343), - [anon_sym_template] = ACTIONS(345), + [anon_sym_export] = ACTIONS(1211), + [anon_sym_import] = ACTIONS(139), + [anon_sym_template] = ACTIONS(141), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(347), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_namespace] = ACTIONS(351), - [anon_sym_static_assert] = ACTIONS(353), - [anon_sym_concept] = ACTIONS(355), - [anon_sym_co_return] = ACTIONS(357), - [anon_sym_co_yield] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(151), + [anon_sym_static_assert] = ACTIONS(153), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -71583,30 +71654,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(120), [sym_declaration] = STATE(120), [sym_type_definition] = STATE(120), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6413), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6408), [sym_linkage_specification] = STATE(120), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2707), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8810), - [sym_array_declarator] = STATE(8555), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2708), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8793), + [sym_array_declarator] = STATE(8564), [sym_compound_statement] = STATE(120), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4502), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(897), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4507), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(883), [sym__top_level_statement] = STATE(120), [sym_labeled_statement] = STATE(120), [sym__top_level_expression_statement] = STATE(120), @@ -71620,38 +71691,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(120), [sym_continue_statement] = STATE(120), [sym_goto_statement] = STATE(120), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7218), - [sym_conditional_expression] = STATE(7442), - [sym_assignment_expression] = STATE(7442), - [sym_pointer_expression] = STATE(5948), - [sym_unary_expression] = STATE(7442), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7442), - [sym_cast_expression] = STATE(7442), - [sym_sizeof_expression] = STATE(7442), - [sym_alignof_expression] = STATE(7442), - [sym_offsetof_expression] = STATE(7442), - [sym_generic_expression] = STATE(7442), - [sym_subscript_expression] = STATE(5948), - [sym_call_expression] = STATE(5948), - [sym_gnu_asm_expression] = STATE(7442), - [sym_extension_expression] = STATE(7442), - [sym_field_expression] = STATE(5948), - [sym_compound_literal_expression] = STATE(7442), - [sym_parenthesized_expression] = STATE(5948), - [sym_char_literal] = STATE(7218), - [sym_concatenated_string] = STATE(7218), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7442), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7291), + [sym_conditional_expression] = STATE(7480), + [sym_assignment_expression] = STATE(7480), + [sym_pointer_expression] = STATE(6018), + [sym_unary_expression] = STATE(7480), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7480), + [sym_cast_expression] = STATE(7480), + [sym_sizeof_expression] = STATE(7480), + [sym_alignof_expression] = STATE(7480), + [sym_offsetof_expression] = STATE(7480), + [sym_generic_expression] = STATE(7480), + [sym_subscript_expression] = STATE(6018), + [sym_call_expression] = STATE(6018), + [sym_gnu_asm_expression] = STATE(7480), + [sym_extension_expression] = STATE(7480), + [sym_field_expression] = STATE(6018), + [sym_compound_literal_expression] = STATE(7480), + [sym_parenthesized_expression] = STATE(6018), + [sym_char_literal] = STATE(7291), + [sym_concatenated_string] = STATE(7291), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7480), [sym__empty_declaration] = STATE(120), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2454), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2482), + [sym_dependent_type] = STATE(4852), [sym_module_declaration] = STATE(120), [sym_export_declaration] = STATE(120), [sym_import_declaration] = STATE(120), @@ -71659,15 +71730,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(120), [sym_template_declaration] = STATE(120), [sym_template_instantiation] = STATE(120), - [sym_operator_cast] = STATE(9210), - [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast] = STATE(9161), + [sym__constructor_specifiers] = STATE(2482), [sym_operator_cast_definition] = STATE(120), [sym_operator_cast_declaration] = STATE(120), [sym_constructor_or_destructor_definition] = STATE(120), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7246), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7222), [sym_namespace_definition] = STATE(120), [sym_namespace_alias_definition] = STATE(120), [sym_using_declaration] = STATE(120), @@ -71680,43 +71751,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(120), [sym_throw_statement] = STATE(120), [sym_try_statement] = STATE(120), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7442), - [sym_new_expression] = STATE(7442), - [sym_delete_expression] = STATE(7442), - [sym_requires_clause] = STATE(7442), - [sym_requires_expression] = STATE(7442), - [sym_lambda_expression] = STATE(7442), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7442), - [sym_parameter_pack_expansion] = STATE(7442), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5874), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9210), - [sym_reflect_expression] = STATE(7442), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7255), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7480), + [sym_new_expression] = STATE(7480), + [sym_delete_expression] = STATE(7480), + [sym_requires_clause] = STATE(7480), + [sym_requires_expression] = STATE(7480), + [sym_lambda_expression] = STATE(7480), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7480), + [sym_parameter_pack_expansion] = STATE(7480), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5897), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9161), + [sym_reflect_expression] = STATE(7480), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7285), [sym_expansion_statement] = STATE(120), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5948), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(6018), [aux_sym_translation_unit_repeat1] = STATE(120), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2454), - [sym_identifier] = ACTIONS(1516), - [aux_sym_preproc_include_token1] = ACTIONS(1091), - [aux_sym_preproc_def_token1] = ACTIONS(1093), - [aux_sym_preproc_if_token1] = ACTIONS(1518), - [aux_sym_preproc_if_token2] = ACTIONS(1536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1522), - [sym_preproc_directive] = ACTIONS(1101), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2482), + [ts_builtin_sym_end] = ACTIONS(1532), + [sym_identifier] = ACTIONS(7), + [aux_sym_preproc_include_token1] = ACTIONS(9), + [aux_sym_preproc_def_token1] = ACTIONS(11), + [aux_sym_preproc_if_token1] = ACTIONS(13), + [aux_sym_preproc_ifdef_token1] = ACTIONS(15), + [aux_sym_preproc_ifdef_token2] = ACTIONS(15), + [sym_preproc_directive] = ACTIONS(17), [anon_sym_LPAREN2] = ACTIONS(19), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(23), @@ -71725,14 +71796,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(1524), - [anon_sym___extension__] = ACTIONS(1105), - [anon_sym_typedef] = ACTIONS(1107), + [anon_sym_SEMI] = ACTIONS(33), + [anon_sym___extension__] = ACTIONS(35), + [anon_sym_typedef] = ACTIONS(37), [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(1109), + [anon_sym_extern] = ACTIONS(41), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1111), + [anon_sym_using] = ACTIONS(45), [anon_sym_COLON_COLON] = ACTIONS(47), [anon_sym_LBRACK_LBRACK] = ACTIONS(49), [anon_sym___declspec] = ACTIONS(51), @@ -71743,7 +71814,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(1113), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -71751,7 +71822,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(1115), + [anon_sym_inline] = ACTIONS(65), [anon_sym___inline] = ACTIONS(63), [anon_sym___inline__] = ACTIONS(63), [anon_sym___forceinline] = ACTIONS(63), @@ -71768,7 +71839,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(1117), + [anon_sym_consteval] = ACTIONS(69), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), @@ -71776,17 +71847,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -71803,7 +71874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(1526), + [sym_number_literal] = ACTIONS(119), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), [anon_sym_U_SQUOTE] = ACTIONS(121), @@ -71814,27 +71885,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(123), [anon_sym_u8_DQUOTE] = ACTIONS(123), [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(1528), - [sym_false] = ACTIONS(1528), + [sym_true] = ACTIONS(125), + [sym_false] = ACTIONS(125), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_export] = ACTIONS(1530), - [anon_sym_module] = ACTIONS(1532), - [anon_sym_import] = ACTIONS(1147), - [anon_sym_template] = ACTIONS(1149), + [anon_sym_export] = ACTIONS(135), + [anon_sym_module] = ACTIONS(137), + [anon_sym_import] = ACTIONS(139), + [anon_sym_template] = ACTIONS(141), [anon_sym_operator] = ACTIONS(143), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1155), - [anon_sym_static_assert] = ACTIONS(1157), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(151), + [anon_sym_static_assert] = ACTIONS(153), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -71845,7 +71916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(1528), + [sym_this] = ACTIONS(125), }, [STATE(120)] = { [sym__top_level_item] = STATE(120), @@ -71858,30 +71929,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_definition] = STATE(120), [sym_declaration] = STATE(120), [sym_type_definition] = STATE(120), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6413), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6408), [sym_linkage_specification] = STATE(120), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(1115), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2707), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8810), - [sym_array_declarator] = STATE(8555), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(1114), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2708), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8793), + [sym_array_declarator] = STATE(8564), [sym_compound_statement] = STATE(120), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4502), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(897), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4507), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(883), [sym__top_level_statement] = STATE(120), [sym_labeled_statement] = STATE(120), [sym__top_level_expression_statement] = STATE(120), @@ -71895,38 +71966,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_break_statement] = STATE(120), [sym_continue_statement] = STATE(120), [sym_goto_statement] = STATE(120), - [sym_expression] = STATE(7241), - [sym__string] = STATE(7218), - [sym_conditional_expression] = STATE(7442), - [sym_assignment_expression] = STATE(7442), - [sym_pointer_expression] = STATE(5948), - [sym_unary_expression] = STATE(7442), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(7442), - [sym_cast_expression] = STATE(7442), - [sym_sizeof_expression] = STATE(7442), - [sym_alignof_expression] = STATE(7442), - [sym_offsetof_expression] = STATE(7442), - [sym_generic_expression] = STATE(7442), - [sym_subscript_expression] = STATE(5948), - [sym_call_expression] = STATE(5948), - [sym_gnu_asm_expression] = STATE(7442), - [sym_extension_expression] = STATE(7442), - [sym_field_expression] = STATE(5948), - [sym_compound_literal_expression] = STATE(7442), - [sym_parenthesized_expression] = STATE(5948), - [sym_char_literal] = STATE(7218), - [sym_concatenated_string] = STATE(7218), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(7442), + [sym_expression] = STATE(7320), + [sym__string] = STATE(7291), + [sym_conditional_expression] = STATE(7480), + [sym_assignment_expression] = STATE(7480), + [sym_pointer_expression] = STATE(6018), + [sym_unary_expression] = STATE(7480), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(7480), + [sym_cast_expression] = STATE(7480), + [sym_sizeof_expression] = STATE(7480), + [sym_alignof_expression] = STATE(7480), + [sym_offsetof_expression] = STATE(7480), + [sym_generic_expression] = STATE(7480), + [sym_subscript_expression] = STATE(6018), + [sym_call_expression] = STATE(6018), + [sym_gnu_asm_expression] = STATE(7480), + [sym_extension_expression] = STATE(7480), + [sym_field_expression] = STATE(6018), + [sym_compound_literal_expression] = STATE(7480), + [sym_parenthesized_expression] = STATE(6018), + [sym_char_literal] = STATE(7291), + [sym_concatenated_string] = STATE(7291), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(7480), [sym__empty_declaration] = STATE(120), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_explicit_function_specifier] = STATE(2454), - [sym_dependent_type] = STATE(4935), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_explicit_function_specifier] = STATE(2482), + [sym_dependent_type] = STATE(4852), [sym_module_declaration] = STATE(120), [sym_export_declaration] = STATE(120), [sym_import_declaration] = STATE(120), @@ -71934,15 +72005,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_module_fragment_declaration] = STATE(120), [sym_template_declaration] = STATE(120), [sym_template_instantiation] = STATE(120), - [sym_operator_cast] = STATE(9210), - [sym__constructor_specifiers] = STATE(2454), + [sym_operator_cast] = STATE(9161), + [sym__constructor_specifiers] = STATE(2482), [sym_operator_cast_definition] = STATE(120), [sym_operator_cast_declaration] = STATE(120), [sym_constructor_or_destructor_definition] = STATE(120), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(7246), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(7222), [sym_namespace_definition] = STATE(120), [sym_namespace_alias_definition] = STATE(120), [sym_using_declaration] = STATE(120), @@ -71955,43 +72026,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_co_yield_statement] = STATE(120), [sym_throw_statement] = STATE(120), [sym_try_statement] = STATE(120), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(7442), - [sym_new_expression] = STATE(7442), - [sym_delete_expression] = STATE(7442), - [sym_requires_clause] = STATE(7442), - [sym_requires_expression] = STATE(7442), - [sym_lambda_expression] = STATE(7442), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(7442), - [sym_parameter_pack_expansion] = STATE(7442), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7779), - [sym_qualified_identifier] = STATE(5874), - [sym_qualified_type_identifier] = STATE(4604), - [sym_qualified_operator_cast_identifier] = STATE(9210), - [sym_reflect_expression] = STATE(7442), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(7255), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(7480), + [sym_new_expression] = STATE(7480), + [sym_delete_expression] = STATE(7480), + [sym_requires_clause] = STATE(7480), + [sym_requires_expression] = STATE(7480), + [sym_lambda_expression] = STATE(7480), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(7480), + [sym_parameter_pack_expansion] = STATE(7480), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7739), + [sym_qualified_identifier] = STATE(5897), + [sym_qualified_type_identifier] = STATE(4570), + [sym_qualified_operator_cast_identifier] = STATE(9161), + [sym_reflect_expression] = STATE(7480), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(7285), [sym_expansion_statement] = STATE(120), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5948), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(6018), [aux_sym_translation_unit_repeat1] = STATE(120), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(181), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2454), - [sym_identifier] = ACTIONS(1538), - [aux_sym_preproc_include_token1] = ACTIONS(1541), - [aux_sym_preproc_def_token1] = ACTIONS(1544), - [aux_sym_preproc_if_token1] = ACTIONS(1547), - [aux_sym_preproc_if_token2] = ACTIONS(719), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1550), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1550), - [sym_preproc_directive] = ACTIONS(1553), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(179), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2482), + [ts_builtin_sym_end] = ACTIONS(1534), + [sym_identifier] = ACTIONS(1536), + [aux_sym_preproc_include_token1] = ACTIONS(1539), + [aux_sym_preproc_def_token1] = ACTIONS(1542), + [aux_sym_preproc_if_token1] = ACTIONS(1545), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1548), + [sym_preproc_directive] = ACTIONS(1551), [anon_sym_LPAREN2] = ACTIONS(727), [anon_sym_BANG] = ACTIONS(730), [anon_sym_TILDE] = ACTIONS(733), @@ -72000,14 +72071,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(739), [anon_sym_AMP_AMP] = ACTIONS(742), [anon_sym_AMP] = ACTIONS(745), - [anon_sym_SEMI] = ACTIONS(1556), - [anon_sym___extension__] = ACTIONS(1559), - [anon_sym_typedef] = ACTIONS(1562), + [anon_sym_SEMI] = ACTIONS(1554), + [anon_sym___extension__] = ACTIONS(1557), + [anon_sym_typedef] = ACTIONS(1560), [anon_sym_virtual] = ACTIONS(757), - [anon_sym_extern] = ACTIONS(1565), + [anon_sym_extern] = ACTIONS(1563), [anon_sym___attribute__] = ACTIONS(763), [anon_sym___attribute] = ACTIONS(763), - [anon_sym_using] = ACTIONS(1568), + [anon_sym_using] = ACTIONS(1566), [anon_sym_COLON_COLON] = ACTIONS(769), [anon_sym_LBRACK_LBRACK] = ACTIONS(772), [anon_sym___declspec] = ACTIONS(775), @@ -72018,7 +72089,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___fastcall] = ACTIONS(781), [anon_sym___thiscall] = ACTIONS(781), [anon_sym___vectorcall] = ACTIONS(781), - [anon_sym_LBRACE] = ACTIONS(1571), + [anon_sym_LBRACE] = ACTIONS(1569), [anon_sym_signed] = ACTIONS(787), [anon_sym_unsigned] = ACTIONS(787), [anon_sym_long] = ACTIONS(787), @@ -72026,7 +72097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(790), [anon_sym_static] = ACTIONS(793), [anon_sym_register] = ACTIONS(793), - [anon_sym_inline] = ACTIONS(1574), + [anon_sym_inline] = ACTIONS(1572), [anon_sym___inline] = ACTIONS(793), [anon_sym___inline__] = ACTIONS(793), [anon_sym___forceinline] = ACTIONS(793), @@ -72043,7 +72114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(799), [anon_sym_mutable] = ACTIONS(799), [anon_sym_constinit] = ACTIONS(799), - [anon_sym_consteval] = ACTIONS(1577), + [anon_sym_consteval] = ACTIONS(1575), [anon_sym_alignas] = ACTIONS(805), [anon_sym__Alignas] = ACTIONS(805), [sym_primitive_type] = ACTIONS(808), @@ -72051,17 +72122,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(814), [anon_sym_struct] = ACTIONS(817), [anon_sym_union] = ACTIONS(820), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_switch] = ACTIONS(1583), - [anon_sym_case] = ACTIONS(1586), - [anon_sym_default] = ACTIONS(1589), - [anon_sym_while] = ACTIONS(1592), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1601), - [anon_sym_break] = ACTIONS(1604), - [anon_sym_continue] = ACTIONS(1607), - [anon_sym_goto] = ACTIONS(1610), + [anon_sym_if] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1581), + [anon_sym_case] = ACTIONS(1584), + [anon_sym_default] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1590), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1596), + [anon_sym_return] = ACTIONS(1599), + [anon_sym_break] = ACTIONS(1602), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_goto] = ACTIONS(1608), [anon_sym_not] = ACTIONS(736), [anon_sym_compl] = ACTIONS(736), [anon_sym_DASH_DASH] = ACTIONS(856), @@ -72078,7 +72149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_asm] = ACTIONS(874), [anon_sym___asm__] = ACTIONS(874), [anon_sym___asm] = ACTIONS(874), - [sym_number_literal] = ACTIONS(1613), + [sym_number_literal] = ACTIONS(1611), [anon_sym_L_SQUOTE] = ACTIONS(880), [anon_sym_u_SQUOTE] = ACTIONS(880), [anon_sym_U_SQUOTE] = ACTIONS(880), @@ -72089,27 +72160,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(883), [anon_sym_u8_DQUOTE] = ACTIONS(883), [anon_sym_DQUOTE] = ACTIONS(883), - [sym_true] = ACTIONS(1616), - [sym_false] = ACTIONS(1616), + [sym_true] = ACTIONS(1614), + [sym_false] = ACTIONS(1614), [anon_sym_NULL] = ACTIONS(889), [anon_sym_nullptr] = ACTIONS(889), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(892), [anon_sym_decltype] = ACTIONS(895), [anon_sym_explicit] = ACTIONS(898), - [anon_sym_export] = ACTIONS(1619), - [anon_sym_module] = ACTIONS(1622), - [anon_sym_import] = ACTIONS(1625), - [anon_sym_template] = ACTIONS(1628), + [anon_sym_export] = ACTIONS(1617), + [anon_sym_module] = ACTIONS(1620), + [anon_sym_import] = ACTIONS(1623), + [anon_sym_template] = ACTIONS(1626), [anon_sym_operator] = ACTIONS(913), - [anon_sym_try] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1629), [anon_sym_delete] = ACTIONS(919), - [anon_sym_throw] = ACTIONS(1634), - [anon_sym_namespace] = ACTIONS(1637), - [anon_sym_static_assert] = ACTIONS(1640), - [anon_sym_concept] = ACTIONS(1643), - [anon_sym_co_return] = ACTIONS(1646), - [anon_sym_co_yield] = ACTIONS(1649), + [anon_sym_throw] = ACTIONS(1632), + [anon_sym_namespace] = ACTIONS(1635), + [anon_sym_static_assert] = ACTIONS(1638), + [anon_sym_concept] = ACTIONS(1641), + [anon_sym_co_return] = ACTIONS(1644), + [anon_sym_co_yield] = ACTIONS(1647), [anon_sym_R_DQUOTE] = ACTIONS(940), [anon_sym_LR_DQUOTE] = ACTIONS(940), [anon_sym_uR_DQUOTE] = ACTIONS(940), @@ -72120,146 +72191,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(949), [anon_sym_CARET_CARET] = ACTIONS(952), [anon_sym_LBRACK_COLON] = ACTIONS(955), - [sym_this] = ACTIONS(1616), + [sym_this] = ACTIONS(1614), }, [STATE(121)] = { - [sym_declaration] = STATE(125), - [sym_type_definition] = STATE(125), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(125), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(125), - [sym_labeled_statement] = STATE(125), - [sym_expression_statement] = STATE(125), - [sym_if_statement] = STATE(125), - [sym_switch_statement] = STATE(125), - [sym_while_statement] = STATE(125), - [sym_do_statement] = STATE(125), - [sym_for_statement] = STATE(125), - [sym_return_statement] = STATE(125), - [sym_break_statement] = STATE(125), - [sym_continue_statement] = STATE(125), - [sym_goto_statement] = STATE(125), - [sym_seh_try_statement] = STATE(125), - [sym_seh_leave_statement] = STATE(125), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(125), - [sym_co_return_statement] = STATE(125), - [sym_co_yield_statement] = STATE(125), - [sym_throw_statement] = STATE(125), - [sym_try_statement] = STATE(125), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(125), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_declaration] = STATE(124), + [sym_type_definition] = STATE(124), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6419), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(124), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(124), + [sym_labeled_statement] = STATE(124), + [sym_expression_statement] = STATE(124), + [sym_if_statement] = STATE(124), + [sym_switch_statement] = STATE(124), + [sym_while_statement] = STATE(124), + [sym_do_statement] = STATE(124), + [sym_for_statement] = STATE(124), + [sym_return_statement] = STATE(124), + [sym_break_statement] = STATE(124), + [sym_continue_statement] = STATE(124), + [sym_goto_statement] = STATE(124), + [sym_seh_try_statement] = STATE(124), + [sym_seh_leave_statement] = STATE(124), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(124), + [sym_co_return_statement] = STATE(124), + [sym_co_yield_statement] = STATE(124), + [sym_throw_statement] = STATE(124), + [sym_try_statement] = STATE(124), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(124), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_attributed_declarator_repeat1] = STATE(193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(1652), - [aux_sym_preproc_include_token1] = ACTIONS(1654), - [aux_sym_preproc_def_token1] = ACTIONS(1654), - [aux_sym_preproc_if_token1] = ACTIONS(1654), - [aux_sym_preproc_if_token2] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), - [aux_sym_preproc_else_token1] = ACTIONS(1654), - [aux_sym_preproc_elif_token1] = ACTIONS(1654), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1654), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1654), - [sym_preproc_directive] = ACTIONS(1654), - [anon_sym_LPAREN2] = ACTIONS(1656), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(124), + [sym_identifier] = ACTIONS(1650), + [aux_sym_preproc_include_token1] = ACTIONS(1652), + [aux_sym_preproc_def_token1] = ACTIONS(1652), + [aux_sym_preproc_if_token1] = ACTIONS(1652), + [aux_sym_preproc_if_token2] = ACTIONS(1652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1652), + [aux_sym_preproc_else_token1] = ACTIONS(1652), + [aux_sym_preproc_elif_token1] = ACTIONS(1652), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1652), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1652), + [sym_preproc_directive] = ACTIONS(1652), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1660), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(1664), + [anon_sym___extension__] = ACTIONS(1662), [anon_sym_typedef] = ACTIONS(303), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1652), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1654), - [anon_sym___cdecl] = ACTIONS(1654), - [anon_sym___clrcall] = ACTIONS(1654), - [anon_sym___stdcall] = ACTIONS(1654), - [anon_sym___fastcall] = ACTIONS(1654), - [anon_sym___thiscall] = ACTIONS(1654), - [anon_sym___vectorcall] = ACTIONS(1654), + [anon_sym___based] = ACTIONS(1652), + [anon_sym___cdecl] = ACTIONS(1652), + [anon_sym___clrcall] = ACTIONS(1652), + [anon_sym___stdcall] = ACTIONS(1652), + [anon_sym___fastcall] = ACTIONS(1652), + [anon_sym___thiscall] = ACTIONS(1652), + [anon_sym___vectorcall] = ACTIONS(1652), [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -72288,10 +72359,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(315), - [anon_sym_else] = ACTIONS(1654), + [anon_sym_else] = ACTIONS(1652), [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1652), + [anon_sym_default] = ACTIONS(1652), [anon_sym_while] = ACTIONS(323), [anon_sym_do] = ACTIONS(325), [anon_sym_for] = ACTIONS(327), @@ -72335,18 +72406,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(1654), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_import] = ACTIONS(1654), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_operator] = ACTIONS(1654), + [anon_sym_explicit] = ACTIONS(1652), + [anon_sym_export] = ACTIONS(1652), + [anon_sym_module] = ACTIONS(1652), + [anon_sym_import] = ACTIONS(1652), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_operator] = ACTIONS(1652), [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(349), - [anon_sym_namespace] = ACTIONS(1654), - [anon_sym_static_assert] = ACTIONS(1654), - [anon_sym_concept] = ACTIONS(1654), + [anon_sym_namespace] = ACTIONS(1652), + [anon_sym_static_assert] = ACTIONS(1652), + [anon_sym_concept] = ACTIONS(1652), [anon_sym_co_return] = ACTIONS(357), [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -72362,143 +72433,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(122)] = { - [sym_declaration] = STATE(121), - [sym_type_definition] = STATE(121), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(121), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(121), - [sym_labeled_statement] = STATE(121), - [sym_expression_statement] = STATE(121), - [sym_if_statement] = STATE(121), - [sym_switch_statement] = STATE(121), - [sym_while_statement] = STATE(121), - [sym_do_statement] = STATE(121), - [sym_for_statement] = STATE(121), - [sym_return_statement] = STATE(121), - [sym_break_statement] = STATE(121), - [sym_continue_statement] = STATE(121), - [sym_goto_statement] = STATE(121), - [sym_seh_try_statement] = STATE(121), - [sym_seh_leave_statement] = STATE(121), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(121), - [sym_co_return_statement] = STATE(121), - [sym_co_yield_statement] = STATE(121), - [sym_throw_statement] = STATE(121), - [sym_try_statement] = STATE(121), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(121), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_declaration] = STATE(123), + [sym_type_definition] = STATE(123), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6419), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(123), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(123), + [sym_labeled_statement] = STATE(123), + [sym_expression_statement] = STATE(123), + [sym_if_statement] = STATE(123), + [sym_switch_statement] = STATE(123), + [sym_while_statement] = STATE(123), + [sym_do_statement] = STATE(123), + [sym_for_statement] = STATE(123), + [sym_return_statement] = STATE(123), + [sym_break_statement] = STATE(123), + [sym_continue_statement] = STATE(123), + [sym_goto_statement] = STATE(123), + [sym_seh_try_statement] = STATE(123), + [sym_seh_leave_statement] = STATE(123), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(123), + [sym_co_return_statement] = STATE(123), + [sym_co_yield_statement] = STATE(123), + [sym_throw_statement] = STATE(123), + [sym_try_statement] = STATE(123), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(123), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_attributed_declarator_repeat1] = STATE(193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(1652), - [aux_sym_preproc_include_token1] = ACTIONS(1674), - [aux_sym_preproc_def_token1] = ACTIONS(1674), - [aux_sym_preproc_if_token1] = ACTIONS(1674), - [aux_sym_preproc_if_token2] = ACTIONS(1674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1674), - [aux_sym_preproc_else_token1] = ACTIONS(1674), - [aux_sym_preproc_elif_token1] = ACTIONS(1674), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1674), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1674), - [sym_preproc_directive] = ACTIONS(1674), - [anon_sym_LPAREN2] = ACTIONS(1656), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(1650), + [aux_sym_preproc_include_token1] = ACTIONS(1672), + [aux_sym_preproc_def_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [aux_sym_preproc_else_token1] = ACTIONS(1672), + [aux_sym_preproc_elif_token1] = ACTIONS(1672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1672), + [sym_preproc_directive] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1660), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(1664), + [anon_sym___extension__] = ACTIONS(1662), [anon_sym_typedef] = ACTIONS(303), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1672), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1674), - [anon_sym___cdecl] = ACTIONS(1674), - [anon_sym___clrcall] = ACTIONS(1674), - [anon_sym___stdcall] = ACTIONS(1674), - [anon_sym___fastcall] = ACTIONS(1674), - [anon_sym___thiscall] = ACTIONS(1674), - [anon_sym___vectorcall] = ACTIONS(1674), + [anon_sym___based] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -72527,10 +72598,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(315), - [anon_sym_else] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1672), [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), [anon_sym_while] = ACTIONS(323), [anon_sym_do] = ACTIONS(325), [anon_sym_for] = ACTIONS(327), @@ -72574,18 +72645,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_operator] = ACTIONS(1674), + [anon_sym_explicit] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(1672), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_operator] = ACTIONS(1672), [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(349), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_static_assert] = ACTIONS(1674), - [anon_sym_concept] = ACTIONS(1674), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_static_assert] = ACTIONS(1672), + [anon_sym_concept] = ACTIONS(1672), [anon_sym_co_return] = ACTIONS(357), [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -72601,143 +72672,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(123)] = { - [sym_declaration] = STATE(124), - [sym_type_definition] = STATE(124), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(124), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(124), - [sym_labeled_statement] = STATE(124), - [sym_expression_statement] = STATE(124), - [sym_if_statement] = STATE(124), - [sym_switch_statement] = STATE(124), - [sym_while_statement] = STATE(124), - [sym_do_statement] = STATE(124), - [sym_for_statement] = STATE(124), - [sym_return_statement] = STATE(124), - [sym_break_statement] = STATE(124), - [sym_continue_statement] = STATE(124), - [sym_goto_statement] = STATE(124), - [sym_seh_try_statement] = STATE(124), - [sym_seh_leave_statement] = STATE(124), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(124), - [sym_co_return_statement] = STATE(124), - [sym_co_yield_statement] = STATE(124), - [sym_throw_statement] = STATE(124), - [sym_try_statement] = STATE(124), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(124), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_declaration] = STATE(125), + [sym_type_definition] = STATE(125), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6419), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(125), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(125), + [sym_labeled_statement] = STATE(125), + [sym_expression_statement] = STATE(125), + [sym_if_statement] = STATE(125), + [sym_switch_statement] = STATE(125), + [sym_while_statement] = STATE(125), + [sym_do_statement] = STATE(125), + [sym_for_statement] = STATE(125), + [sym_return_statement] = STATE(125), + [sym_break_statement] = STATE(125), + [sym_continue_statement] = STATE(125), + [sym_goto_statement] = STATE(125), + [sym_seh_try_statement] = STATE(125), + [sym_seh_leave_statement] = STATE(125), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(125), + [sym_co_return_statement] = STATE(125), + [sym_co_yield_statement] = STATE(125), + [sym_throw_statement] = STATE(125), + [sym_try_statement] = STATE(125), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(125), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_attributed_declarator_repeat1] = STATE(193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(1652), - [aux_sym_preproc_include_token1] = ACTIONS(1678), - [aux_sym_preproc_def_token1] = ACTIONS(1678), - [aux_sym_preproc_if_token1] = ACTIONS(1678), - [aux_sym_preproc_if_token2] = ACTIONS(1678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1678), - [aux_sym_preproc_else_token1] = ACTIONS(1678), - [aux_sym_preproc_elif_token1] = ACTIONS(1678), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1678), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1678), - [sym_preproc_directive] = ACTIONS(1678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(125), + [sym_identifier] = ACTIONS(1650), + [aux_sym_preproc_include_token1] = ACTIONS(1676), + [aux_sym_preproc_def_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [aux_sym_preproc_else_token1] = ACTIONS(1676), + [aux_sym_preproc_elif_token1] = ACTIONS(1676), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1676), + [sym_preproc_directive] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1660), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(1664), + [anon_sym___extension__] = ACTIONS(1662), [anon_sym_typedef] = ACTIONS(303), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1678), + [anon_sym_using] = ACTIONS(1676), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1678), - [anon_sym___cdecl] = ACTIONS(1678), - [anon_sym___clrcall] = ACTIONS(1678), - [anon_sym___stdcall] = ACTIONS(1678), - [anon_sym___fastcall] = ACTIONS(1678), - [anon_sym___thiscall] = ACTIONS(1678), - [anon_sym___vectorcall] = ACTIONS(1678), + [anon_sym___based] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -72766,10 +72837,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(315), - [anon_sym_else] = ACTIONS(1678), + [anon_sym_else] = ACTIONS(1676), [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), [anon_sym_while] = ACTIONS(323), [anon_sym_do] = ACTIONS(325), [anon_sym_for] = ACTIONS(327), @@ -72813,18 +72884,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1678), - [anon_sym_export] = ACTIONS(1678), - [anon_sym_module] = ACTIONS(1678), - [anon_sym_import] = ACTIONS(1678), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_operator] = ACTIONS(1678), + [anon_sym_explicit] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_operator] = ACTIONS(1676), [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(349), - [anon_sym_namespace] = ACTIONS(1678), - [anon_sym_static_assert] = ACTIONS(1678), - [anon_sym_concept] = ACTIONS(1678), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_static_assert] = ACTIONS(1676), + [anon_sym_concept] = ACTIONS(1676), [anon_sym_co_return] = ACTIONS(357), [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -72842,20 +72913,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(124)] = { [sym_declaration] = STATE(125), [sym_type_definition] = STATE(125), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6419), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), [sym_compound_statement] = STATE(125), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), [sym_attributed_statement] = STATE(125), [sym_labeled_statement] = STATE(125), [sym_expression_statement] = STATE(125), @@ -72870,113 +72941,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(125), [sym_seh_try_statement] = STATE(125), [sym_seh_leave_statement] = STATE(125), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), [sym_for_range_loop] = STATE(125), [sym_co_return_statement] = STATE(125), [sym_co_yield_statement] = STATE(125), [sym_throw_statement] = STATE(125), [sym_try_statement] = STATE(125), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), [sym_expansion_statement] = STATE(125), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_attributed_declarator_repeat1] = STATE(193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), [aux_sym_case_statement_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(1652), - [aux_sym_preproc_include_token1] = ACTIONS(1682), - [aux_sym_preproc_def_token1] = ACTIONS(1682), - [aux_sym_preproc_if_token1] = ACTIONS(1682), - [aux_sym_preproc_if_token2] = ACTIONS(1682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1682), - [aux_sym_preproc_else_token1] = ACTIONS(1682), - [aux_sym_preproc_elif_token1] = ACTIONS(1682), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1682), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1682), - [sym_preproc_directive] = ACTIONS(1682), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_identifier] = ACTIONS(1650), + [aux_sym_preproc_include_token1] = ACTIONS(1680), + [aux_sym_preproc_def_token1] = ACTIONS(1680), + [aux_sym_preproc_if_token1] = ACTIONS(1680), + [aux_sym_preproc_if_token2] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1680), + [aux_sym_preproc_else_token1] = ACTIONS(1680), + [aux_sym_preproc_elif_token1] = ACTIONS(1680), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1680), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1680), + [sym_preproc_directive] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1660), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(1664), + [anon_sym___extension__] = ACTIONS(1662), [anon_sym_typedef] = ACTIONS(303), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1682), + [anon_sym_using] = ACTIONS(1680), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1682), - [anon_sym___cdecl] = ACTIONS(1682), - [anon_sym___clrcall] = ACTIONS(1682), - [anon_sym___stdcall] = ACTIONS(1682), - [anon_sym___fastcall] = ACTIONS(1682), - [anon_sym___thiscall] = ACTIONS(1682), - [anon_sym___vectorcall] = ACTIONS(1682), + [anon_sym___based] = ACTIONS(1680), + [anon_sym___cdecl] = ACTIONS(1680), + [anon_sym___clrcall] = ACTIONS(1680), + [anon_sym___stdcall] = ACTIONS(1680), + [anon_sym___fastcall] = ACTIONS(1680), + [anon_sym___thiscall] = ACTIONS(1680), + [anon_sym___vectorcall] = ACTIONS(1680), [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73005,10 +73076,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(315), - [anon_sym_else] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1680), [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), + [anon_sym_case] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1680), [anon_sym_while] = ACTIONS(323), [anon_sym_do] = ACTIONS(325), [anon_sym_for] = ACTIONS(327), @@ -73052,18 +73123,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1682), - [anon_sym_module] = ACTIONS(1682), - [anon_sym_import] = ACTIONS(1682), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_operator] = ACTIONS(1682), + [anon_sym_explicit] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1680), + [anon_sym_module] = ACTIONS(1680), + [anon_sym_import] = ACTIONS(1680), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_operator] = ACTIONS(1680), [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(349), - [anon_sym_namespace] = ACTIONS(1682), - [anon_sym_static_assert] = ACTIONS(1682), - [anon_sym_concept] = ACTIONS(1682), + [anon_sym_namespace] = ACTIONS(1680), + [anon_sym_static_assert] = ACTIONS(1680), + [anon_sym_concept] = ACTIONS(1680), [anon_sym_co_return] = ACTIONS(357), [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -73081,20 +73152,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [STATE(125)] = { [sym_declaration] = STATE(125), [sym_type_definition] = STATE(125), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6419), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), [sym_compound_statement] = STATE(125), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), [sym_attributed_statement] = STATE(125), [sym_labeled_statement] = STATE(125), [sym_expression_statement] = STATE(125), @@ -73109,231 +73180,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(125), [sym_seh_try_statement] = STATE(125), [sym_seh_leave_statement] = STATE(125), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), [sym_for_range_loop] = STATE(125), [sym_co_return_statement] = STATE(125), [sym_co_yield_statement] = STATE(125), [sym_throw_statement] = STATE(125), [sym_try_statement] = STATE(125), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), [sym_expansion_statement] = STATE(125), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_attributed_declarator_repeat1] = STATE(193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), [aux_sym_case_statement_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(1686), - [aux_sym_preproc_include_token1] = ACTIONS(1689), - [aux_sym_preproc_def_token1] = ACTIONS(1689), - [aux_sym_preproc_if_token1] = ACTIONS(1689), - [aux_sym_preproc_if_token2] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), - [aux_sym_preproc_else_token1] = ACTIONS(1689), - [aux_sym_preproc_elif_token1] = ACTIONS(1689), - [aux_sym_preproc_elifdef_token1] = ACTIONS(1689), - [aux_sym_preproc_elifdef_token2] = ACTIONS(1689), - [sym_preproc_directive] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1708), - [anon_sym___extension__] = ACTIONS(1711), - [anon_sym_typedef] = ACTIONS(1714), - [anon_sym_virtual] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym___attribute__] = ACTIONS(1723), - [anon_sym___attribute] = ACTIONS(1723), - [anon_sym_using] = ACTIONS(1689), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1689), - [anon_sym___cdecl] = ACTIONS(1689), - [anon_sym___clrcall] = ACTIONS(1689), - [anon_sym___stdcall] = ACTIONS(1689), - [anon_sym___fastcall] = ACTIONS(1689), - [anon_sym___thiscall] = ACTIONS(1689), - [anon_sym___vectorcall] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_register] = ACTIONS(1720), - [anon_sym_inline] = ACTIONS(1720), - [anon_sym___inline] = ACTIONS(1720), - [anon_sym___inline__] = ACTIONS(1720), - [anon_sym___forceinline] = ACTIONS(1720), - [anon_sym_thread_local] = ACTIONS(1720), - [anon_sym___thread] = ACTIONS(1720), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_constexpr] = ACTIONS(1744), - [anon_sym_volatile] = ACTIONS(1744), - [anon_sym_restrict] = ACTIONS(1744), - [anon_sym___restrict__] = ACTIONS(1744), - [anon_sym__Atomic] = ACTIONS(1744), - [anon_sym__Noreturn] = ACTIONS(1744), - [anon_sym_noreturn] = ACTIONS(1744), - [anon_sym__Nonnull] = ACTIONS(1744), - [anon_sym_mutable] = ACTIONS(1744), - [anon_sym_constinit] = ACTIONS(1744), - [anon_sym_consteval] = ACTIONS(1744), - [anon_sym_alignas] = ACTIONS(1747), - [anon_sym__Alignas] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1768), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1771), - [anon_sym_do] = ACTIONS(1774), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1783), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_goto] = ACTIONS(1789), - [anon_sym___try] = ACTIONS(1792), - [anon_sym___leave] = ACTIONS(1795), - [anon_sym_not] = ACTIONS(1697), - [anon_sym_compl] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_sizeof] = ACTIONS(1801), - [anon_sym___alignof__] = ACTIONS(1804), - [anon_sym___alignof] = ACTIONS(1804), - [anon_sym__alignof] = ACTIONS(1804), - [anon_sym_alignof] = ACTIONS(1804), - [anon_sym__Alignof] = ACTIONS(1804), - [anon_sym_offsetof] = ACTIONS(1807), - [anon_sym__Generic] = ACTIONS(1810), - [anon_sym_typename] = ACTIONS(1813), - [anon_sym_asm] = ACTIONS(1816), - [anon_sym___asm__] = ACTIONS(1816), - [anon_sym___asm] = ACTIONS(1816), - [sym_number_literal] = ACTIONS(1819), - [anon_sym_L_SQUOTE] = ACTIONS(1822), - [anon_sym_u_SQUOTE] = ACTIONS(1822), - [anon_sym_U_SQUOTE] = ACTIONS(1822), - [anon_sym_u8_SQUOTE] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1822), - [anon_sym_L_DQUOTE] = ACTIONS(1825), - [anon_sym_u_DQUOTE] = ACTIONS(1825), - [anon_sym_U_DQUOTE] = ACTIONS(1825), - [anon_sym_u8_DQUOTE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [sym_true] = ACTIONS(1828), - [sym_false] = ACTIONS(1828), - [anon_sym_NULL] = ACTIONS(1831), - [anon_sym_nullptr] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1834), - [anon_sym_decltype] = ACTIONS(1837), - [anon_sym_explicit] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_template] = ACTIONS(1840), - [anon_sym_operator] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1843), - [anon_sym_delete] = ACTIONS(1846), - [anon_sym_throw] = ACTIONS(1849), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_static_assert] = ACTIONS(1689), - [anon_sym_concept] = ACTIONS(1689), - [anon_sym_co_return] = ACTIONS(1852), - [anon_sym_co_yield] = ACTIONS(1855), - [anon_sym_R_DQUOTE] = ACTIONS(1858), - [anon_sym_LR_DQUOTE] = ACTIONS(1858), - [anon_sym_uR_DQUOTE] = ACTIONS(1858), - [anon_sym_UR_DQUOTE] = ACTIONS(1858), - [anon_sym_u8R_DQUOTE] = ACTIONS(1858), - [anon_sym_co_await] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_requires] = ACTIONS(1867), - [anon_sym_CARET_CARET] = ACTIONS(1870), - [anon_sym_LBRACK_COLON] = ACTIONS(1873), - [sym_this] = ACTIONS(1828), + [sym_identifier] = ACTIONS(1684), + [aux_sym_preproc_include_token1] = ACTIONS(1687), + [aux_sym_preproc_def_token1] = ACTIONS(1687), + [aux_sym_preproc_if_token1] = ACTIONS(1687), + [aux_sym_preproc_if_token2] = ACTIONS(1687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1687), + [aux_sym_preproc_else_token1] = ACTIONS(1687), + [aux_sym_preproc_elif_token1] = ACTIONS(1687), + [aux_sym_preproc_elifdef_token1] = ACTIONS(1687), + [aux_sym_preproc_elifdef_token2] = ACTIONS(1687), + [sym_preproc_directive] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym___extension__] = ACTIONS(1709), + [anon_sym_typedef] = ACTIONS(1712), + [anon_sym_virtual] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1718), + [anon_sym___attribute__] = ACTIONS(1721), + [anon_sym___attribute] = ACTIONS(1721), + [anon_sym_using] = ACTIONS(1687), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1727), + [anon_sym___declspec] = ACTIONS(1730), + [anon_sym___based] = ACTIONS(1687), + [anon_sym___cdecl] = ACTIONS(1687), + [anon_sym___clrcall] = ACTIONS(1687), + [anon_sym___stdcall] = ACTIONS(1687), + [anon_sym___fastcall] = ACTIONS(1687), + [anon_sym___thiscall] = ACTIONS(1687), + [anon_sym___vectorcall] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_signed] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_register] = ACTIONS(1718), + [anon_sym_inline] = ACTIONS(1718), + [anon_sym___inline] = ACTIONS(1718), + [anon_sym___inline__] = ACTIONS(1718), + [anon_sym___forceinline] = ACTIONS(1718), + [anon_sym_thread_local] = ACTIONS(1718), + [anon_sym___thread] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_constexpr] = ACTIONS(1742), + [anon_sym_volatile] = ACTIONS(1742), + [anon_sym_restrict] = ACTIONS(1742), + [anon_sym___restrict__] = ACTIONS(1742), + [anon_sym__Atomic] = ACTIONS(1742), + [anon_sym__Noreturn] = ACTIONS(1742), + [anon_sym_noreturn] = ACTIONS(1742), + [anon_sym__Nonnull] = ACTIONS(1742), + [anon_sym_mutable] = ACTIONS(1742), + [anon_sym_constinit] = ACTIONS(1742), + [anon_sym_consteval] = ACTIONS(1742), + [anon_sym_alignas] = ACTIONS(1745), + [anon_sym__Alignas] = ACTIONS(1745), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1751), + [anon_sym_class] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1763), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_case] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1769), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1778), + [anon_sym_break] = ACTIONS(1781), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_goto] = ACTIONS(1787), + [anon_sym___try] = ACTIONS(1790), + [anon_sym___leave] = ACTIONS(1793), + [anon_sym_not] = ACTIONS(1695), + [anon_sym_compl] = ACTIONS(1695), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1796), + [anon_sym_sizeof] = ACTIONS(1799), + [anon_sym___alignof__] = ACTIONS(1802), + [anon_sym___alignof] = ACTIONS(1802), + [anon_sym__alignof] = ACTIONS(1802), + [anon_sym_alignof] = ACTIONS(1802), + [anon_sym__Alignof] = ACTIONS(1802), + [anon_sym_offsetof] = ACTIONS(1805), + [anon_sym__Generic] = ACTIONS(1808), + [anon_sym_typename] = ACTIONS(1811), + [anon_sym_asm] = ACTIONS(1814), + [anon_sym___asm__] = ACTIONS(1814), + [anon_sym___asm] = ACTIONS(1814), + [sym_number_literal] = ACTIONS(1817), + [anon_sym_L_SQUOTE] = ACTIONS(1820), + [anon_sym_u_SQUOTE] = ACTIONS(1820), + [anon_sym_U_SQUOTE] = ACTIONS(1820), + [anon_sym_u8_SQUOTE] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [anon_sym_L_DQUOTE] = ACTIONS(1823), + [anon_sym_u_DQUOTE] = ACTIONS(1823), + [anon_sym_U_DQUOTE] = ACTIONS(1823), + [anon_sym_u8_DQUOTE] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym_true] = ACTIONS(1826), + [sym_false] = ACTIONS(1826), + [anon_sym_NULL] = ACTIONS(1829), + [anon_sym_nullptr] = ACTIONS(1829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1832), + [anon_sym_decltype] = ACTIONS(1835), + [anon_sym_explicit] = ACTIONS(1687), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(1687), + [anon_sym_template] = ACTIONS(1838), + [anon_sym_operator] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1841), + [anon_sym_delete] = ACTIONS(1844), + [anon_sym_throw] = ACTIONS(1847), + [anon_sym_namespace] = ACTIONS(1687), + [anon_sym_static_assert] = ACTIONS(1687), + [anon_sym_concept] = ACTIONS(1687), + [anon_sym_co_return] = ACTIONS(1850), + [anon_sym_co_yield] = ACTIONS(1853), + [anon_sym_R_DQUOTE] = ACTIONS(1856), + [anon_sym_LR_DQUOTE] = ACTIONS(1856), + [anon_sym_uR_DQUOTE] = ACTIONS(1856), + [anon_sym_UR_DQUOTE] = ACTIONS(1856), + [anon_sym_u8R_DQUOTE] = ACTIONS(1856), + [anon_sym_co_await] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1862), + [anon_sym_requires] = ACTIONS(1865), + [anon_sym_CARET_CARET] = ACTIONS(1868), + [anon_sym_LBRACK_COLON] = ACTIONS(1871), + [sym_this] = ACTIONS(1826), }, [STATE(126)] = { [sym_declaration] = STATE(126), [sym_type_definition] = STATE(126), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6421), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6418), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), [sym_compound_statement] = STATE(126), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), [sym_attributed_statement] = STATE(126), [sym_labeled_statement] = STATE(126), [sym_expression_statement] = STATE(126), @@ -73348,344 +73419,344 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(126), [sym_seh_try_statement] = STATE(126), [sym_seh_leave_statement] = STATE(126), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), [sym_for_range_loop] = STATE(126), [sym_co_return_statement] = STATE(126), [sym_co_yield_statement] = STATE(126), [sym_throw_statement] = STATE(126), [sym_try_statement] = STATE(126), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), [sym_expansion_statement] = STATE(126), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), [aux_sym_case_statement_repeat1] = STATE(126), - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1876), - [aux_sym_preproc_include_token1] = ACTIONS(1689), - [aux_sym_preproc_def_token1] = ACTIONS(1689), - [aux_sym_preproc_if_token1] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), - [sym_preproc_directive] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1879), - [anon_sym___extension__] = ACTIONS(1882), - [anon_sym_typedef] = ACTIONS(1885), - [anon_sym_virtual] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym___attribute__] = ACTIONS(1723), - [anon_sym___attribute] = ACTIONS(1723), - [anon_sym_using] = ACTIONS(1689), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1689), - [anon_sym___cdecl] = ACTIONS(1689), - [anon_sym___clrcall] = ACTIONS(1689), - [anon_sym___stdcall] = ACTIONS(1689), - [anon_sym___fastcall] = ACTIONS(1689), - [anon_sym___thiscall] = ACTIONS(1689), - [anon_sym___vectorcall] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1888), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_register] = ACTIONS(1720), - [anon_sym_inline] = ACTIONS(1720), - [anon_sym___inline] = ACTIONS(1720), - [anon_sym___inline__] = ACTIONS(1720), - [anon_sym___forceinline] = ACTIONS(1720), - [anon_sym_thread_local] = ACTIONS(1720), - [anon_sym___thread] = ACTIONS(1720), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_constexpr] = ACTIONS(1744), - [anon_sym_volatile] = ACTIONS(1744), - [anon_sym_restrict] = ACTIONS(1744), - [anon_sym___restrict__] = ACTIONS(1744), - [anon_sym__Atomic] = ACTIONS(1744), - [anon_sym__Noreturn] = ACTIONS(1744), - [anon_sym_noreturn] = ACTIONS(1744), - [anon_sym__Nonnull] = ACTIONS(1744), - [anon_sym_mutable] = ACTIONS(1744), - [anon_sym_constinit] = ACTIONS(1744), - [anon_sym_consteval] = ACTIONS(1744), - [anon_sym_alignas] = ACTIONS(1747), - [anon_sym__Alignas] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1894), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1897), - [anon_sym_do] = ACTIONS(1900), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1906), - [anon_sym_break] = ACTIONS(1909), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_goto] = ACTIONS(1915), - [anon_sym___try] = ACTIONS(1918), - [anon_sym___leave] = ACTIONS(1921), - [anon_sym_not] = ACTIONS(1697), - [anon_sym_compl] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_sizeof] = ACTIONS(1801), - [anon_sym___alignof__] = ACTIONS(1804), - [anon_sym___alignof] = ACTIONS(1804), - [anon_sym__alignof] = ACTIONS(1804), - [anon_sym_alignof] = ACTIONS(1804), - [anon_sym__Alignof] = ACTIONS(1804), - [anon_sym_offsetof] = ACTIONS(1807), - [anon_sym__Generic] = ACTIONS(1810), - [anon_sym_typename] = ACTIONS(1813), - [anon_sym_asm] = ACTIONS(1816), - [anon_sym___asm__] = ACTIONS(1816), - [anon_sym___asm] = ACTIONS(1816), - [sym_number_literal] = ACTIONS(1819), - [anon_sym_L_SQUOTE] = ACTIONS(1822), - [anon_sym_u_SQUOTE] = ACTIONS(1822), - [anon_sym_U_SQUOTE] = ACTIONS(1822), - [anon_sym_u8_SQUOTE] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1822), - [anon_sym_L_DQUOTE] = ACTIONS(1825), - [anon_sym_u_DQUOTE] = ACTIONS(1825), - [anon_sym_U_DQUOTE] = ACTIONS(1825), - [anon_sym_u8_DQUOTE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [sym_true] = ACTIONS(1828), - [sym_false] = ACTIONS(1828), - [anon_sym_NULL] = ACTIONS(1831), - [anon_sym_nullptr] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1834), - [anon_sym_decltype] = ACTIONS(1837), - [anon_sym_explicit] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_template] = ACTIONS(1924), - [anon_sym_operator] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(1927), - [anon_sym_delete] = ACTIONS(1846), - [anon_sym_throw] = ACTIONS(1930), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_static_assert] = ACTIONS(1689), - [anon_sym_concept] = ACTIONS(1689), - [anon_sym_co_return] = ACTIONS(1933), - [anon_sym_co_yield] = ACTIONS(1936), - [anon_sym_R_DQUOTE] = ACTIONS(1858), - [anon_sym_LR_DQUOTE] = ACTIONS(1858), - [anon_sym_uR_DQUOTE] = ACTIONS(1858), - [anon_sym_UR_DQUOTE] = ACTIONS(1858), - [anon_sym_u8R_DQUOTE] = ACTIONS(1858), - [anon_sym_co_await] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_requires] = ACTIONS(1867), - [anon_sym_CARET_CARET] = ACTIONS(1870), - [anon_sym_LBRACK_COLON] = ACTIONS(1873), - [sym_this] = ACTIONS(1828), + [ts_builtin_sym_end] = ACTIONS(1701), + [sym_identifier] = ACTIONS(1874), + [aux_sym_preproc_include_token1] = ACTIONS(1687), + [aux_sym_preproc_def_token1] = ACTIONS(1687), + [aux_sym_preproc_if_token1] = ACTIONS(1687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1687), + [sym_preproc_directive] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym___extension__] = ACTIONS(1880), + [anon_sym_typedef] = ACTIONS(1883), + [anon_sym_virtual] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1718), + [anon_sym___attribute__] = ACTIONS(1721), + [anon_sym___attribute] = ACTIONS(1721), + [anon_sym_using] = ACTIONS(1687), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1727), + [anon_sym___declspec] = ACTIONS(1730), + [anon_sym___based] = ACTIONS(1687), + [anon_sym___cdecl] = ACTIONS(1687), + [anon_sym___clrcall] = ACTIONS(1687), + [anon_sym___stdcall] = ACTIONS(1687), + [anon_sym___fastcall] = ACTIONS(1687), + [anon_sym___thiscall] = ACTIONS(1687), + [anon_sym___vectorcall] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_signed] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_register] = ACTIONS(1718), + [anon_sym_inline] = ACTIONS(1718), + [anon_sym___inline] = ACTIONS(1718), + [anon_sym___inline__] = ACTIONS(1718), + [anon_sym___forceinline] = ACTIONS(1718), + [anon_sym_thread_local] = ACTIONS(1718), + [anon_sym___thread] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_constexpr] = ACTIONS(1742), + [anon_sym_volatile] = ACTIONS(1742), + [anon_sym_restrict] = ACTIONS(1742), + [anon_sym___restrict__] = ACTIONS(1742), + [anon_sym__Atomic] = ACTIONS(1742), + [anon_sym__Noreturn] = ACTIONS(1742), + [anon_sym_noreturn] = ACTIONS(1742), + [anon_sym__Nonnull] = ACTIONS(1742), + [anon_sym_mutable] = ACTIONS(1742), + [anon_sym_constinit] = ACTIONS(1742), + [anon_sym_consteval] = ACTIONS(1742), + [anon_sym_alignas] = ACTIONS(1745), + [anon_sym__Alignas] = ACTIONS(1745), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1751), + [anon_sym_class] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1889), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_switch] = ACTIONS(1892), + [anon_sym_case] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_goto] = ACTIONS(1913), + [anon_sym___try] = ACTIONS(1916), + [anon_sym___leave] = ACTIONS(1919), + [anon_sym_not] = ACTIONS(1695), + [anon_sym_compl] = ACTIONS(1695), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1796), + [anon_sym_sizeof] = ACTIONS(1799), + [anon_sym___alignof__] = ACTIONS(1802), + [anon_sym___alignof] = ACTIONS(1802), + [anon_sym__alignof] = ACTIONS(1802), + [anon_sym_alignof] = ACTIONS(1802), + [anon_sym__Alignof] = ACTIONS(1802), + [anon_sym_offsetof] = ACTIONS(1805), + [anon_sym__Generic] = ACTIONS(1808), + [anon_sym_typename] = ACTIONS(1811), + [anon_sym_asm] = ACTIONS(1814), + [anon_sym___asm__] = ACTIONS(1814), + [anon_sym___asm] = ACTIONS(1814), + [sym_number_literal] = ACTIONS(1817), + [anon_sym_L_SQUOTE] = ACTIONS(1820), + [anon_sym_u_SQUOTE] = ACTIONS(1820), + [anon_sym_U_SQUOTE] = ACTIONS(1820), + [anon_sym_u8_SQUOTE] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [anon_sym_L_DQUOTE] = ACTIONS(1823), + [anon_sym_u_DQUOTE] = ACTIONS(1823), + [anon_sym_U_DQUOTE] = ACTIONS(1823), + [anon_sym_u8_DQUOTE] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym_true] = ACTIONS(1826), + [sym_false] = ACTIONS(1826), + [anon_sym_NULL] = ACTIONS(1829), + [anon_sym_nullptr] = ACTIONS(1829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1832), + [anon_sym_decltype] = ACTIONS(1835), + [anon_sym_explicit] = ACTIONS(1687), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(1687), + [anon_sym_template] = ACTIONS(1922), + [anon_sym_operator] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1925), + [anon_sym_delete] = ACTIONS(1844), + [anon_sym_throw] = ACTIONS(1928), + [anon_sym_namespace] = ACTIONS(1687), + [anon_sym_static_assert] = ACTIONS(1687), + [anon_sym_concept] = ACTIONS(1687), + [anon_sym_co_return] = ACTIONS(1931), + [anon_sym_co_yield] = ACTIONS(1934), + [anon_sym_R_DQUOTE] = ACTIONS(1856), + [anon_sym_LR_DQUOTE] = ACTIONS(1856), + [anon_sym_uR_DQUOTE] = ACTIONS(1856), + [anon_sym_UR_DQUOTE] = ACTIONS(1856), + [anon_sym_u8R_DQUOTE] = ACTIONS(1856), + [anon_sym_co_await] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1862), + [anon_sym_requires] = ACTIONS(1865), + [anon_sym_CARET_CARET] = ACTIONS(1868), + [anon_sym_LBRACK_COLON] = ACTIONS(1871), + [sym_this] = ACTIONS(1826), }, [STATE(127)] = { - [sym_declaration] = STATE(133), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6398), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(133), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym_seh_try_statement] = STATE(133), - [sym_seh_leave_statement] = STATE(133), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(133), - [sym_co_return_statement] = STATE(133), - [sym_co_yield_statement] = STATE(133), - [sym_throw_statement] = STATE(133), - [sym_try_statement] = STATE(133), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(133), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1939), - [aux_sym_preproc_include_token1] = ACTIONS(1654), - [aux_sym_preproc_def_token1] = ACTIONS(1654), - [aux_sym_preproc_if_token1] = ACTIONS(1654), - [aux_sym_preproc_if_token2] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), - [sym_preproc_directive] = ACTIONS(1654), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(129), + [sym_type_definition] = STATE(129), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6390), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(129), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym_seh_try_statement] = STATE(129), + [sym_seh_leave_statement] = STATE(129), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(129), + [sym_co_return_statement] = STATE(129), + [sym_co_yield_statement] = STATE(129), + [sym_throw_statement] = STATE(129), + [sym_try_statement] = STATE(129), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(129), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1937), + [aux_sym_preproc_include_token1] = ACTIONS(1676), + [aux_sym_preproc_def_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token2] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [sym_preproc_directive] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(1941), - [anon_sym_typedef] = ACTIONS(1107), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1676), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1654), - [anon_sym___cdecl] = ACTIONS(1654), - [anon_sym___clrcall] = ACTIONS(1654), - [anon_sym___stdcall] = ACTIONS(1654), - [anon_sym___fastcall] = ACTIONS(1654), - [anon_sym___thiscall] = ACTIONS(1654), - [anon_sym___vectorcall] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym___based] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73713,20 +73784,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1654), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -73761,20 +73832,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(1654), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_import] = ACTIONS(1654), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_operator] = ACTIONS(1654), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_explicit] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_operator] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1654), - [anon_sym_static_assert] = ACTIONS(1654), - [anon_sym_concept] = ACTIONS(1654), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_static_assert] = ACTIONS(1676), + [anon_sym_concept] = ACTIONS(1676), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -73788,139 +73859,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(128)] = { - [sym_declaration] = STATE(130), - [sym_type_definition] = STATE(130), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6421), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(130), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(130), - [sym_labeled_statement] = STATE(130), - [sym_expression_statement] = STATE(130), - [sym_if_statement] = STATE(130), - [sym_switch_statement] = STATE(130), - [sym_while_statement] = STATE(130), - [sym_do_statement] = STATE(130), - [sym_for_statement] = STATE(130), - [sym_return_statement] = STATE(130), - [sym_break_statement] = STATE(130), - [sym_continue_statement] = STATE(130), - [sym_goto_statement] = STATE(130), - [sym_seh_try_statement] = STATE(130), - [sym_seh_leave_statement] = STATE(130), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(130), - [sym_co_return_statement] = STATE(130), - [sym_co_yield_statement] = STATE(130), - [sym_throw_statement] = STATE(130), - [sym_try_statement] = STATE(130), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(130), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(130), - [ts_builtin_sym_end] = ACTIONS(1680), - [sym_identifier] = ACTIONS(1945), - [aux_sym_preproc_include_token1] = ACTIONS(1678), - [aux_sym_preproc_def_token1] = ACTIONS(1678), - [aux_sym_preproc_if_token1] = ACTIONS(1678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1678), - [sym_preproc_directive] = ACTIONS(1678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(129), + [sym_type_definition] = STATE(129), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6390), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(129), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym_seh_try_statement] = STATE(129), + [sym_seh_leave_statement] = STATE(129), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(129), + [sym_co_return_statement] = STATE(129), + [sym_co_yield_statement] = STATE(129), + [sym_throw_statement] = STATE(129), + [sym_try_statement] = STATE(129), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(129), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1937), + [aux_sym_preproc_include_token1] = ACTIONS(1680), + [aux_sym_preproc_def_token1] = ACTIONS(1680), + [aux_sym_preproc_if_token1] = ACTIONS(1680), + [aux_sym_preproc_if_token2] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1680), + [sym_preproc_directive] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1947), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1678), + [anon_sym_using] = ACTIONS(1680), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1678), - [anon_sym___cdecl] = ACTIONS(1678), - [anon_sym___clrcall] = ACTIONS(1678), - [anon_sym___stdcall] = ACTIONS(1678), - [anon_sym___fastcall] = ACTIONS(1678), - [anon_sym___thiscall] = ACTIONS(1678), - [anon_sym___vectorcall] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(1680), + [anon_sym___cdecl] = ACTIONS(1680), + [anon_sym___clrcall] = ACTIONS(1680), + [anon_sym___stdcall] = ACTIONS(1680), + [anon_sym___fastcall] = ACTIONS(1680), + [anon_sym___thiscall] = ACTIONS(1680), + [anon_sym___vectorcall] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -73948,20 +74019,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_else] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1680), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -73996,20 +74067,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1678), - [anon_sym_export] = ACTIONS(1678), - [anon_sym_module] = ACTIONS(1678), - [anon_sym_import] = ACTIONS(1678), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_operator] = ACTIONS(1678), - [anon_sym_try] = ACTIONS(145), + [anon_sym_explicit] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1680), + [anon_sym_module] = ACTIONS(1680), + [anon_sym_import] = ACTIONS(1680), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_operator] = ACTIONS(1680), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(1678), - [anon_sym_static_assert] = ACTIONS(1678), - [anon_sym_concept] = ACTIONS(1678), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1680), + [anon_sym_static_assert] = ACTIONS(1680), + [anon_sym_concept] = ACTIONS(1680), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -74023,139 +74094,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(129)] = { - [sym_declaration] = STATE(134), - [sym_type_definition] = STATE(134), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6421), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(134), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(134), - [sym_labeled_statement] = STATE(134), - [sym_expression_statement] = STATE(134), - [sym_if_statement] = STATE(134), - [sym_switch_statement] = STATE(134), - [sym_while_statement] = STATE(134), - [sym_do_statement] = STATE(134), - [sym_for_statement] = STATE(134), - [sym_return_statement] = STATE(134), - [sym_break_statement] = STATE(134), - [sym_continue_statement] = STATE(134), - [sym_goto_statement] = STATE(134), - [sym_seh_try_statement] = STATE(134), - [sym_seh_leave_statement] = STATE(134), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(134), - [sym_co_return_statement] = STATE(134), - [sym_co_yield_statement] = STATE(134), - [sym_throw_statement] = STATE(134), - [sym_try_statement] = STATE(134), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(134), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(134), - [ts_builtin_sym_end] = ACTIONS(1676), - [sym_identifier] = ACTIONS(1945), - [aux_sym_preproc_include_token1] = ACTIONS(1674), - [aux_sym_preproc_def_token1] = ACTIONS(1674), - [aux_sym_preproc_if_token1] = ACTIONS(1674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1674), - [sym_preproc_directive] = ACTIONS(1674), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(129), + [sym_type_definition] = STATE(129), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6390), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(129), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(129), + [sym_labeled_statement] = STATE(129), + [sym_expression_statement] = STATE(129), + [sym_if_statement] = STATE(129), + [sym_switch_statement] = STATE(129), + [sym_while_statement] = STATE(129), + [sym_do_statement] = STATE(129), + [sym_for_statement] = STATE(129), + [sym_return_statement] = STATE(129), + [sym_break_statement] = STATE(129), + [sym_continue_statement] = STATE(129), + [sym_goto_statement] = STATE(129), + [sym_seh_try_statement] = STATE(129), + [sym_seh_leave_statement] = STATE(129), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(129), + [sym_co_return_statement] = STATE(129), + [sym_co_yield_statement] = STATE(129), + [sym_throw_statement] = STATE(129), + [sym_try_statement] = STATE(129), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(129), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1943), + [aux_sym_preproc_include_token1] = ACTIONS(1687), + [aux_sym_preproc_def_token1] = ACTIONS(1687), + [aux_sym_preproc_if_token1] = ACTIONS(1687), + [aux_sym_preproc_if_token2] = ACTIONS(1687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1687), + [sym_preproc_directive] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym___extension__] = ACTIONS(1949), + [anon_sym_typedef] = ACTIONS(1952), + [anon_sym_virtual] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1718), + [anon_sym___attribute__] = ACTIONS(1721), + [anon_sym___attribute] = ACTIONS(1721), + [anon_sym_using] = ACTIONS(1687), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1727), + [anon_sym___declspec] = ACTIONS(1730), + [anon_sym___based] = ACTIONS(1687), + [anon_sym___cdecl] = ACTIONS(1687), + [anon_sym___clrcall] = ACTIONS(1687), + [anon_sym___stdcall] = ACTIONS(1687), + [anon_sym___fastcall] = ACTIONS(1687), + [anon_sym___thiscall] = ACTIONS(1687), + [anon_sym___vectorcall] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(1955), + [anon_sym_signed] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_register] = ACTIONS(1718), + [anon_sym_inline] = ACTIONS(1718), + [anon_sym___inline] = ACTIONS(1718), + [anon_sym___inline__] = ACTIONS(1718), + [anon_sym___forceinline] = ACTIONS(1718), + [anon_sym_thread_local] = ACTIONS(1718), + [anon_sym___thread] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_constexpr] = ACTIONS(1742), + [anon_sym_volatile] = ACTIONS(1742), + [anon_sym_restrict] = ACTIONS(1742), + [anon_sym___restrict__] = ACTIONS(1742), + [anon_sym__Atomic] = ACTIONS(1742), + [anon_sym__Noreturn] = ACTIONS(1742), + [anon_sym_noreturn] = ACTIONS(1742), + [anon_sym__Nonnull] = ACTIONS(1742), + [anon_sym_mutable] = ACTIONS(1742), + [anon_sym_constinit] = ACTIONS(1742), + [anon_sym_consteval] = ACTIONS(1742), + [anon_sym_alignas] = ACTIONS(1745), + [anon_sym__Alignas] = ACTIONS(1745), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1751), + [anon_sym_class] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1958), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_switch] = ACTIONS(1961), + [anon_sym_case] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_do] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1979), + [anon_sym_goto] = ACTIONS(1982), + [anon_sym___try] = ACTIONS(1985), + [anon_sym___leave] = ACTIONS(1988), + [anon_sym_not] = ACTIONS(1695), + [anon_sym_compl] = ACTIONS(1695), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1796), + [anon_sym_sizeof] = ACTIONS(1799), + [anon_sym___alignof__] = ACTIONS(1802), + [anon_sym___alignof] = ACTIONS(1802), + [anon_sym__alignof] = ACTIONS(1802), + [anon_sym_alignof] = ACTIONS(1802), + [anon_sym__Alignof] = ACTIONS(1802), + [anon_sym_offsetof] = ACTIONS(1805), + [anon_sym__Generic] = ACTIONS(1808), + [anon_sym_typename] = ACTIONS(1811), + [anon_sym_asm] = ACTIONS(1814), + [anon_sym___asm__] = ACTIONS(1814), + [anon_sym___asm] = ACTIONS(1814), + [sym_number_literal] = ACTIONS(1817), + [anon_sym_L_SQUOTE] = ACTIONS(1820), + [anon_sym_u_SQUOTE] = ACTIONS(1820), + [anon_sym_U_SQUOTE] = ACTIONS(1820), + [anon_sym_u8_SQUOTE] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [anon_sym_L_DQUOTE] = ACTIONS(1823), + [anon_sym_u_DQUOTE] = ACTIONS(1823), + [anon_sym_U_DQUOTE] = ACTIONS(1823), + [anon_sym_u8_DQUOTE] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym_true] = ACTIONS(1826), + [sym_false] = ACTIONS(1826), + [anon_sym_NULL] = ACTIONS(1829), + [anon_sym_nullptr] = ACTIONS(1829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1832), + [anon_sym_decltype] = ACTIONS(1835), + [anon_sym_explicit] = ACTIONS(1687), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_module] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(1687), + [anon_sym_template] = ACTIONS(1991), + [anon_sym_operator] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1994), + [anon_sym_delete] = ACTIONS(1844), + [anon_sym_throw] = ACTIONS(1997), + [anon_sym_namespace] = ACTIONS(1687), + [anon_sym_static_assert] = ACTIONS(1687), + [anon_sym_concept] = ACTIONS(1687), + [anon_sym_co_return] = ACTIONS(2000), + [anon_sym_co_yield] = ACTIONS(2003), + [anon_sym_R_DQUOTE] = ACTIONS(1856), + [anon_sym_LR_DQUOTE] = ACTIONS(1856), + [anon_sym_uR_DQUOTE] = ACTIONS(1856), + [anon_sym_UR_DQUOTE] = ACTIONS(1856), + [anon_sym_u8R_DQUOTE] = ACTIONS(1856), + [anon_sym_co_await] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1862), + [anon_sym_requires] = ACTIONS(1865), + [anon_sym_CARET_CARET] = ACTIONS(1868), + [anon_sym_LBRACK_COLON] = ACTIONS(1871), + [sym_this] = ACTIONS(1826), + }, + [STATE(130)] = { + [sym_declaration] = STATE(128), + [sym_type_definition] = STATE(128), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6390), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(128), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(128), + [sym_labeled_statement] = STATE(128), + [sym_expression_statement] = STATE(128), + [sym_if_statement] = STATE(128), + [sym_switch_statement] = STATE(128), + [sym_while_statement] = STATE(128), + [sym_do_statement] = STATE(128), + [sym_for_statement] = STATE(128), + [sym_return_statement] = STATE(128), + [sym_break_statement] = STATE(128), + [sym_continue_statement] = STATE(128), + [sym_goto_statement] = STATE(128), + [sym_seh_try_statement] = STATE(128), + [sym_seh_leave_statement] = STATE(128), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(128), + [sym_co_return_statement] = STATE(128), + [sym_co_yield_statement] = STATE(128), + [sym_throw_statement] = STATE(128), + [sym_try_statement] = STATE(128), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(128), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(1937), + [aux_sym_preproc_include_token1] = ACTIONS(1652), + [aux_sym_preproc_def_token1] = ACTIONS(1652), + [aux_sym_preproc_if_token1] = ACTIONS(1652), + [aux_sym_preproc_if_token2] = ACTIONS(1652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1652), + [sym_preproc_directive] = ACTIONS(1652), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1947), - [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1652), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1674), - [anon_sym___cdecl] = ACTIONS(1674), - [anon_sym___clrcall] = ACTIONS(1674), - [anon_sym___stdcall] = ACTIONS(1674), - [anon_sym___fastcall] = ACTIONS(1674), - [anon_sym___thiscall] = ACTIONS(1674), - [anon_sym___vectorcall] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym___based] = ACTIONS(1652), + [anon_sym___cdecl] = ACTIONS(1652), + [anon_sym___clrcall] = ACTIONS(1652), + [anon_sym___stdcall] = ACTIONS(1652), + [anon_sym___fastcall] = ACTIONS(1652), + [anon_sym___thiscall] = ACTIONS(1652), + [anon_sym___vectorcall] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -74183,20 +74489,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1652), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1652), + [anon_sym_default] = ACTIONS(1652), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -74231,20 +74537,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_operator] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(145), + [anon_sym_explicit] = ACTIONS(1652), + [anon_sym_export] = ACTIONS(1652), + [anon_sym_module] = ACTIONS(1652), + [anon_sym_import] = ACTIONS(1652), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_operator] = ACTIONS(1652), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_static_assert] = ACTIONS(1674), - [anon_sym_concept] = ACTIONS(1674), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1652), + [anon_sym_static_assert] = ACTIONS(1652), + [anon_sym_concept] = ACTIONS(1652), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -74257,140 +74563,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(130)] = { - [sym_declaration] = STATE(126), - [sym_type_definition] = STATE(126), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6421), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(126), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(126), - [sym_labeled_statement] = STATE(126), - [sym_expression_statement] = STATE(126), - [sym_if_statement] = STATE(126), - [sym_switch_statement] = STATE(126), - [sym_while_statement] = STATE(126), - [sym_do_statement] = STATE(126), - [sym_for_statement] = STATE(126), - [sym_return_statement] = STATE(126), - [sym_break_statement] = STATE(126), - [sym_continue_statement] = STATE(126), - [sym_goto_statement] = STATE(126), - [sym_seh_try_statement] = STATE(126), - [sym_seh_leave_statement] = STATE(126), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(126), - [sym_co_return_statement] = STATE(126), - [sym_co_yield_statement] = STATE(126), - [sym_throw_statement] = STATE(126), - [sym_try_statement] = STATE(126), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(126), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(126), - [ts_builtin_sym_end] = ACTIONS(1684), - [sym_identifier] = ACTIONS(1945), - [aux_sym_preproc_include_token1] = ACTIONS(1682), - [aux_sym_preproc_def_token1] = ACTIONS(1682), - [aux_sym_preproc_if_token1] = ACTIONS(1682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1682), - [sym_preproc_directive] = ACTIONS(1682), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(131)] = { + [sym_declaration] = STATE(132), + [sym_type_definition] = STATE(132), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6418), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(132), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(132), + [sym_labeled_statement] = STATE(132), + [sym_expression_statement] = STATE(132), + [sym_if_statement] = STATE(132), + [sym_switch_statement] = STATE(132), + [sym_while_statement] = STATE(132), + [sym_do_statement] = STATE(132), + [sym_for_statement] = STATE(132), + [sym_return_statement] = STATE(132), + [sym_break_statement] = STATE(132), + [sym_continue_statement] = STATE(132), + [sym_goto_statement] = STATE(132), + [sym_seh_try_statement] = STATE(132), + [sym_seh_leave_statement] = STATE(132), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(132), + [sym_co_return_statement] = STATE(132), + [sym_co_yield_statement] = STATE(132), + [sym_throw_statement] = STATE(132), + [sym_try_statement] = STATE(132), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(132), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(132), + [ts_builtin_sym_end] = ACTIONS(1674), + [sym_identifier] = ACTIONS(2006), + [aux_sym_preproc_include_token1] = ACTIONS(1672), + [aux_sym_preproc_def_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [sym_preproc_directive] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2008), [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1682), + [anon_sym_using] = ACTIONS(1672), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1682), - [anon_sym___cdecl] = ACTIONS(1682), - [anon_sym___clrcall] = ACTIONS(1682), - [anon_sym___stdcall] = ACTIONS(1682), - [anon_sym___fastcall] = ACTIONS(1682), - [anon_sym___thiscall] = ACTIONS(1682), - [anon_sym___vectorcall] = ACTIONS(1682), + [anon_sym___based] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -74419,10 +74725,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(83), - [anon_sym_else] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1672), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), @@ -74430,8 +74736,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -74466,18 +74772,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1682), - [anon_sym_module] = ACTIONS(1682), - [anon_sym_import] = ACTIONS(1682), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_operator] = ACTIONS(1682), + [anon_sym_explicit] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(1672), + [anon_sym_template] = ACTIONS(2010), + [anon_sym_operator] = ACTIONS(1672), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(1682), - [anon_sym_static_assert] = ACTIONS(1682), - [anon_sym_concept] = ACTIONS(1682), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_static_assert] = ACTIONS(1672), + [anon_sym_concept] = ACTIONS(1672), [anon_sym_co_return] = ACTIONS(157), [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -74492,375 +74798,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(131)] = { - [sym_declaration] = STATE(133), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6398), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(133), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym_seh_try_statement] = STATE(133), - [sym_seh_leave_statement] = STATE(133), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(133), - [sym_co_return_statement] = STATE(133), - [sym_co_yield_statement] = STATE(133), - [sym_throw_statement] = STATE(133), - [sym_try_statement] = STATE(133), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(133), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1939), - [aux_sym_preproc_include_token1] = ACTIONS(1682), - [aux_sym_preproc_def_token1] = ACTIONS(1682), - [aux_sym_preproc_if_token1] = ACTIONS(1682), - [aux_sym_preproc_if_token2] = ACTIONS(1682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1682), - [sym_preproc_directive] = ACTIONS(1682), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(1941), - [anon_sym_typedef] = ACTIONS(1107), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1682), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1682), - [anon_sym___cdecl] = ACTIONS(1682), - [anon_sym___clrcall] = ACTIONS(1682), - [anon_sym___stdcall] = ACTIONS(1682), - [anon_sym___fastcall] = ACTIONS(1682), - [anon_sym___thiscall] = ACTIONS(1682), - [anon_sym___vectorcall] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1682), - [anon_sym_module] = ACTIONS(1682), - [anon_sym_import] = ACTIONS(1682), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_operator] = ACTIONS(1682), - [anon_sym_try] = ACTIONS(1151), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1682), - [anon_sym_static_assert] = ACTIONS(1682), - [anon_sym_concept] = ACTIONS(1682), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), - }, [STATE(132)] = { - [sym_declaration] = STATE(127), - [sym_type_definition] = STATE(127), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6398), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(127), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(127), - [sym_labeled_statement] = STATE(127), - [sym_expression_statement] = STATE(127), - [sym_if_statement] = STATE(127), - [sym_switch_statement] = STATE(127), - [sym_while_statement] = STATE(127), - [sym_do_statement] = STATE(127), - [sym_for_statement] = STATE(127), - [sym_return_statement] = STATE(127), - [sym_break_statement] = STATE(127), - [sym_continue_statement] = STATE(127), - [sym_goto_statement] = STATE(127), - [sym_seh_try_statement] = STATE(127), - [sym_seh_leave_statement] = STATE(127), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(127), - [sym_co_return_statement] = STATE(127), - [sym_co_yield_statement] = STATE(127), - [sym_throw_statement] = STATE(127), - [sym_try_statement] = STATE(127), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(127), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(1939), - [aux_sym_preproc_include_token1] = ACTIONS(1674), - [aux_sym_preproc_def_token1] = ACTIONS(1674), - [aux_sym_preproc_if_token1] = ACTIONS(1674), - [aux_sym_preproc_if_token2] = ACTIONS(1674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1674), - [sym_preproc_directive] = ACTIONS(1674), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6418), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(126), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym_seh_try_statement] = STATE(126), + [sym_seh_leave_statement] = STATE(126), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(126), + [sym_co_return_statement] = STATE(126), + [sym_co_yield_statement] = STATE(126), + [sym_throw_statement] = STATE(126), + [sym_try_statement] = STATE(126), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(126), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(126), + [ts_builtin_sym_end] = ACTIONS(1678), + [sym_identifier] = ACTIONS(2006), + [aux_sym_preproc_include_token1] = ACTIONS(1676), + [aux_sym_preproc_def_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [sym_preproc_directive] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(1941), - [anon_sym_typedef] = ACTIONS(1107), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2008), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1676), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1674), - [anon_sym___cdecl] = ACTIONS(1674), - [anon_sym___clrcall] = ACTIONS(1674), - [anon_sym___stdcall] = ACTIONS(1674), - [anon_sym___fastcall] = ACTIONS(1674), - [anon_sym___thiscall] = ACTIONS(1674), - [anon_sym___vectorcall] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym___based] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -74888,20 +74959,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(83), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -74936,20 +75007,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_module] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_operator] = ACTIONS(1674), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_explicit] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_module] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_template] = ACTIONS(2010), + [anon_sym_operator] = ACTIONS(1676), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_static_assert] = ACTIONS(1674), - [anon_sym_concept] = ACTIONS(1674), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_static_assert] = ACTIONS(1676), + [anon_sym_concept] = ACTIONS(1676), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -74963,374 +75034,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(133)] = { - [sym_declaration] = STATE(133), - [sym_type_definition] = STATE(133), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6398), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(133), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(133), - [sym_labeled_statement] = STATE(133), - [sym_expression_statement] = STATE(133), - [sym_if_statement] = STATE(133), - [sym_switch_statement] = STATE(133), - [sym_while_statement] = STATE(133), - [sym_do_statement] = STATE(133), - [sym_for_statement] = STATE(133), - [sym_return_statement] = STATE(133), - [sym_break_statement] = STATE(133), - [sym_continue_statement] = STATE(133), - [sym_goto_statement] = STATE(133), - [sym_seh_try_statement] = STATE(133), - [sym_seh_leave_statement] = STATE(133), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(133), - [sym_co_return_statement] = STATE(133), - [sym_co_yield_statement] = STATE(133), - [sym_throw_statement] = STATE(133), - [sym_try_statement] = STATE(133), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(133), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(1951), - [aux_sym_preproc_include_token1] = ACTIONS(1689), - [aux_sym_preproc_def_token1] = ACTIONS(1689), - [aux_sym_preproc_if_token1] = ACTIONS(1689), - [aux_sym_preproc_if_token2] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), - [sym_preproc_directive] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1954), - [anon_sym___extension__] = ACTIONS(1957), - [anon_sym_typedef] = ACTIONS(1960), - [anon_sym_virtual] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym___attribute__] = ACTIONS(1723), - [anon_sym___attribute] = ACTIONS(1723), - [anon_sym_using] = ACTIONS(1689), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1689), - [anon_sym___cdecl] = ACTIONS(1689), - [anon_sym___clrcall] = ACTIONS(1689), - [anon_sym___stdcall] = ACTIONS(1689), - [anon_sym___fastcall] = ACTIONS(1689), - [anon_sym___thiscall] = ACTIONS(1689), - [anon_sym___vectorcall] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_register] = ACTIONS(1720), - [anon_sym_inline] = ACTIONS(1720), - [anon_sym___inline] = ACTIONS(1720), - [anon_sym___inline__] = ACTIONS(1720), - [anon_sym___forceinline] = ACTIONS(1720), - [anon_sym_thread_local] = ACTIONS(1720), - [anon_sym___thread] = ACTIONS(1720), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_constexpr] = ACTIONS(1744), - [anon_sym_volatile] = ACTIONS(1744), - [anon_sym_restrict] = ACTIONS(1744), - [anon_sym___restrict__] = ACTIONS(1744), - [anon_sym__Atomic] = ACTIONS(1744), - [anon_sym__Noreturn] = ACTIONS(1744), - [anon_sym_noreturn] = ACTIONS(1744), - [anon_sym__Nonnull] = ACTIONS(1744), - [anon_sym_mutable] = ACTIONS(1744), - [anon_sym_constinit] = ACTIONS(1744), - [anon_sym_consteval] = ACTIONS(1744), - [anon_sym_alignas] = ACTIONS(1747), - [anon_sym__Alignas] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(1969), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1978), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_goto] = ACTIONS(1990), - [anon_sym___try] = ACTIONS(1993), - [anon_sym___leave] = ACTIONS(1996), - [anon_sym_not] = ACTIONS(1697), - [anon_sym_compl] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_sizeof] = ACTIONS(1801), - [anon_sym___alignof__] = ACTIONS(1804), - [anon_sym___alignof] = ACTIONS(1804), - [anon_sym__alignof] = ACTIONS(1804), - [anon_sym_alignof] = ACTIONS(1804), - [anon_sym__Alignof] = ACTIONS(1804), - [anon_sym_offsetof] = ACTIONS(1807), - [anon_sym__Generic] = ACTIONS(1810), - [anon_sym_typename] = ACTIONS(1813), - [anon_sym_asm] = ACTIONS(1816), - [anon_sym___asm__] = ACTIONS(1816), - [anon_sym___asm] = ACTIONS(1816), - [sym_number_literal] = ACTIONS(1819), - [anon_sym_L_SQUOTE] = ACTIONS(1822), - [anon_sym_u_SQUOTE] = ACTIONS(1822), - [anon_sym_U_SQUOTE] = ACTIONS(1822), - [anon_sym_u8_SQUOTE] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1822), - [anon_sym_L_DQUOTE] = ACTIONS(1825), - [anon_sym_u_DQUOTE] = ACTIONS(1825), - [anon_sym_U_DQUOTE] = ACTIONS(1825), - [anon_sym_u8_DQUOTE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [sym_true] = ACTIONS(1828), - [sym_false] = ACTIONS(1828), - [anon_sym_NULL] = ACTIONS(1831), - [anon_sym_nullptr] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1834), - [anon_sym_decltype] = ACTIONS(1837), - [anon_sym_explicit] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_module] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_template] = ACTIONS(1999), - [anon_sym_operator] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(2002), - [anon_sym_delete] = ACTIONS(1846), - [anon_sym_throw] = ACTIONS(2005), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_static_assert] = ACTIONS(1689), - [anon_sym_concept] = ACTIONS(1689), - [anon_sym_co_return] = ACTIONS(2008), - [anon_sym_co_yield] = ACTIONS(2011), - [anon_sym_R_DQUOTE] = ACTIONS(1858), - [anon_sym_LR_DQUOTE] = ACTIONS(1858), - [anon_sym_uR_DQUOTE] = ACTIONS(1858), - [anon_sym_UR_DQUOTE] = ACTIONS(1858), - [anon_sym_u8R_DQUOTE] = ACTIONS(1858), - [anon_sym_co_await] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_requires] = ACTIONS(1867), - [anon_sym_CARET_CARET] = ACTIONS(1870), - [anon_sym_LBRACK_COLON] = ACTIONS(1873), - [sym_this] = ACTIONS(1828), - }, - [STATE(134)] = { - [sym_declaration] = STATE(126), - [sym_type_definition] = STATE(126), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6421), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(126), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(126), - [sym_labeled_statement] = STATE(126), - [sym_expression_statement] = STATE(126), - [sym_if_statement] = STATE(126), - [sym_switch_statement] = STATE(126), - [sym_while_statement] = STATE(126), - [sym_do_statement] = STATE(126), - [sym_for_statement] = STATE(126), - [sym_return_statement] = STATE(126), - [sym_break_statement] = STATE(126), - [sym_continue_statement] = STATE(126), - [sym_goto_statement] = STATE(126), - [sym_seh_try_statement] = STATE(126), - [sym_seh_leave_statement] = STATE(126), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(126), - [sym_co_return_statement] = STATE(126), - [sym_co_yield_statement] = STATE(126), - [sym_throw_statement] = STATE(126), - [sym_try_statement] = STATE(126), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(126), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(126), - [ts_builtin_sym_end] = ACTIONS(1660), - [sym_identifier] = ACTIONS(1945), - [aux_sym_preproc_include_token1] = ACTIONS(1654), - [aux_sym_preproc_def_token1] = ACTIONS(1654), - [aux_sym_preproc_if_token1] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), - [sym_preproc_directive] = ACTIONS(1654), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(135), + [sym_type_definition] = STATE(135), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6418), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(135), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(135), + [sym_labeled_statement] = STATE(135), + [sym_expression_statement] = STATE(135), + [sym_if_statement] = STATE(135), + [sym_switch_statement] = STATE(135), + [sym_while_statement] = STATE(135), + [sym_do_statement] = STATE(135), + [sym_for_statement] = STATE(135), + [sym_return_statement] = STATE(135), + [sym_break_statement] = STATE(135), + [sym_continue_statement] = STATE(135), + [sym_goto_statement] = STATE(135), + [sym_seh_try_statement] = STATE(135), + [sym_seh_leave_statement] = STATE(135), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(135), + [sym_co_return_statement] = STATE(135), + [sym_co_yield_statement] = STATE(135), + [sym_throw_statement] = STATE(135), + [sym_try_statement] = STATE(135), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(135), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(135), + [ts_builtin_sym_end] = ACTIONS(1658), + [sym_identifier] = ACTIONS(2006), + [aux_sym_preproc_include_token1] = ACTIONS(1652), + [aux_sym_preproc_def_token1] = ACTIONS(1652), + [aux_sym_preproc_if_token1] = ACTIONS(1652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1652), + [sym_preproc_directive] = ACTIONS(1652), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2008), [anon_sym_typedef] = ACTIONS(37), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1652), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1654), - [anon_sym___cdecl] = ACTIONS(1654), - [anon_sym___clrcall] = ACTIONS(1654), - [anon_sym___stdcall] = ACTIONS(1654), - [anon_sym___fastcall] = ACTIONS(1654), - [anon_sym___thiscall] = ACTIONS(1654), - [anon_sym___vectorcall] = ACTIONS(1654), + [anon_sym___based] = ACTIONS(1652), + [anon_sym___cdecl] = ACTIONS(1652), + [anon_sym___clrcall] = ACTIONS(1652), + [anon_sym___stdcall] = ACTIONS(1652), + [anon_sym___fastcall] = ACTIONS(1652), + [anon_sym___thiscall] = ACTIONS(1652), + [anon_sym___vectorcall] = ACTIONS(1652), [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -75359,10 +75195,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(83), - [anon_sym_else] = ACTIONS(1654), + [anon_sym_else] = ACTIONS(1652), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1652), + [anon_sym_default] = ACTIONS(1652), [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), [anon_sym_for] = ACTIONS(95), @@ -75370,8 +75206,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -75406,18 +75242,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(1654), - [anon_sym_module] = ACTIONS(1654), - [anon_sym_import] = ACTIONS(1654), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_operator] = ACTIONS(1654), + [anon_sym_explicit] = ACTIONS(1652), + [anon_sym_export] = ACTIONS(1652), + [anon_sym_module] = ACTIONS(1652), + [anon_sym_import] = ACTIONS(1652), + [anon_sym_template] = ACTIONS(2010), + [anon_sym_operator] = ACTIONS(1652), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(1654), - [anon_sym_static_assert] = ACTIONS(1654), - [anon_sym_concept] = ACTIONS(1654), + [anon_sym_namespace] = ACTIONS(1652), + [anon_sym_static_assert] = ACTIONS(1652), + [anon_sym_concept] = ACTIONS(1652), [anon_sym_co_return] = ACTIONS(157), [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -75432,140 +75268,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(135)] = { - [sym_declaration] = STATE(131), - [sym_type_definition] = STATE(131), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6398), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(131), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(131), - [sym_labeled_statement] = STATE(131), - [sym_expression_statement] = STATE(131), - [sym_if_statement] = STATE(131), - [sym_switch_statement] = STATE(131), - [sym_while_statement] = STATE(131), - [sym_do_statement] = STATE(131), - [sym_for_statement] = STATE(131), - [sym_return_statement] = STATE(131), - [sym_break_statement] = STATE(131), - [sym_continue_statement] = STATE(131), - [sym_goto_statement] = STATE(131), - [sym_seh_try_statement] = STATE(131), - [sym_seh_leave_statement] = STATE(131), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(131), - [sym_co_return_statement] = STATE(131), - [sym_co_yield_statement] = STATE(131), - [sym_throw_statement] = STATE(131), - [sym_try_statement] = STATE(131), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(131), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(1939), - [aux_sym_preproc_include_token1] = ACTIONS(1678), - [aux_sym_preproc_def_token1] = ACTIONS(1678), - [aux_sym_preproc_if_token1] = ACTIONS(1678), - [aux_sym_preproc_if_token2] = ACTIONS(1678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1678), - [sym_preproc_directive] = ACTIONS(1678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(134)] = { + [sym_declaration] = STATE(127), + [sym_type_definition] = STATE(127), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6390), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(127), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(127), + [sym_labeled_statement] = STATE(127), + [sym_expression_statement] = STATE(127), + [sym_if_statement] = STATE(127), + [sym_switch_statement] = STATE(127), + [sym_while_statement] = STATE(127), + [sym_do_statement] = STATE(127), + [sym_for_statement] = STATE(127), + [sym_return_statement] = STATE(127), + [sym_break_statement] = STATE(127), + [sym_continue_statement] = STATE(127), + [sym_goto_statement] = STATE(127), + [sym_seh_try_statement] = STATE(127), + [sym_seh_leave_statement] = STATE(127), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(127), + [sym_co_return_statement] = STATE(127), + [sym_co_yield_statement] = STATE(127), + [sym_throw_statement] = STATE(127), + [sym_try_statement] = STATE(127), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(127), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(127), + [sym_identifier] = ACTIONS(1937), + [aux_sym_preproc_include_token1] = ACTIONS(1672), + [aux_sym_preproc_def_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token2] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [sym_preproc_directive] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(1941), - [anon_sym_typedef] = ACTIONS(1107), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(996), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1678), + [anon_sym_using] = ACTIONS(1672), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1678), - [anon_sym___cdecl] = ACTIONS(1678), - [anon_sym___clrcall] = ACTIONS(1678), - [anon_sym___stdcall] = ACTIONS(1678), - [anon_sym___fastcall] = ACTIONS(1678), - [anon_sym___thiscall] = ACTIONS(1678), - [anon_sym___vectorcall] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym___based] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -75593,20 +75429,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_else] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -75641,20 +75477,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1678), - [anon_sym_export] = ACTIONS(1678), - [anon_sym_module] = ACTIONS(1678), - [anon_sym_import] = ACTIONS(1678), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_operator] = ACTIONS(1678), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_explicit] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_module] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(1672), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_operator] = ACTIONS(1672), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_namespace] = ACTIONS(1678), - [anon_sym_static_assert] = ACTIONS(1678), - [anon_sym_concept] = ACTIONS(1678), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_static_assert] = ACTIONS(1672), + [anon_sym_concept] = ACTIONS(1672), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -75667,140 +75503,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(136)] = { - [sym_declaration] = STATE(138), - [sym_type_definition] = STATE(138), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6380), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(138), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(138), - [sym_labeled_statement] = STATE(138), - [sym_expression_statement] = STATE(138), - [sym_if_statement] = STATE(138), - [sym_switch_statement] = STATE(138), - [sym_while_statement] = STATE(138), - [sym_do_statement] = STATE(138), - [sym_for_statement] = STATE(138), - [sym_return_statement] = STATE(138), - [sym_break_statement] = STATE(138), - [sym_continue_statement] = STATE(138), - [sym_goto_statement] = STATE(138), - [sym_seh_try_statement] = STATE(138), - [sym_seh_leave_statement] = STATE(138), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(138), - [sym_co_return_statement] = STATE(138), - [sym_co_yield_statement] = STATE(138), - [sym_throw_statement] = STATE(138), - [sym_try_statement] = STATE(138), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(138), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(1678), - [aux_sym_preproc_def_token1] = ACTIONS(1678), - [aux_sym_preproc_if_token1] = ACTIONS(1678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1678), - [sym_preproc_directive] = ACTIONS(1678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(135)] = { + [sym_declaration] = STATE(126), + [sym_type_definition] = STATE(126), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6418), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(126), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(126), + [sym_labeled_statement] = STATE(126), + [sym_expression_statement] = STATE(126), + [sym_if_statement] = STATE(126), + [sym_switch_statement] = STATE(126), + [sym_while_statement] = STATE(126), + [sym_do_statement] = STATE(126), + [sym_for_statement] = STATE(126), + [sym_return_statement] = STATE(126), + [sym_break_statement] = STATE(126), + [sym_continue_statement] = STATE(126), + [sym_goto_statement] = STATE(126), + [sym_seh_try_statement] = STATE(126), + [sym_seh_leave_statement] = STATE(126), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(126), + [sym_co_return_statement] = STATE(126), + [sym_co_yield_statement] = STATE(126), + [sym_throw_statement] = STATE(126), + [sym_try_statement] = STATE(126), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(126), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(126), + [ts_builtin_sym_end] = ACTIONS(1682), + [sym_identifier] = ACTIONS(2006), + [aux_sym_preproc_include_token1] = ACTIONS(1680), + [aux_sym_preproc_def_token1] = ACTIONS(1680), + [aux_sym_preproc_if_token1] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1680), + [sym_preproc_directive] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1680), - [anon_sym_AMP] = ACTIONS(1662), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1660), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2008), + [anon_sym_typedef] = ACTIONS(37), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1678), + [anon_sym_using] = ACTIONS(1680), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1678), - [anon_sym___cdecl] = ACTIONS(1678), - [anon_sym___clrcall] = ACTIONS(1678), - [anon_sym___stdcall] = ACTIONS(1678), - [anon_sym___fastcall] = ACTIONS(1678), - [anon_sym___thiscall] = ACTIONS(1678), - [anon_sym___vectorcall] = ACTIONS(1678), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1680), + [anon_sym___based] = ACTIONS(1680), + [anon_sym___cdecl] = ACTIONS(1680), + [anon_sym___clrcall] = ACTIONS(1680), + [anon_sym___stdcall] = ACTIONS(1680), + [anon_sym___fastcall] = ACTIONS(1680), + [anon_sym___thiscall] = ACTIONS(1680), + [anon_sym___vectorcall] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -75828,20 +75664,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(207), - [anon_sym_else] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1678), - [anon_sym_default] = ACTIONS(1678), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(83), + [anon_sym_else] = ACTIONS(1680), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1680), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -75876,19 +75712,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1678), - [anon_sym_export] = ACTIONS(1678), - [anon_sym_import] = ACTIONS(1678), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_operator] = ACTIONS(1678), - [anon_sym_try] = ACTIONS(245), + [anon_sym_explicit] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1680), + [anon_sym_module] = ACTIONS(1680), + [anon_sym_import] = ACTIONS(1680), + [anon_sym_template] = ACTIONS(2010), + [anon_sym_operator] = ACTIONS(1680), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(1678), - [anon_sym_static_assert] = ACTIONS(1678), - [anon_sym_concept] = ACTIONS(1678), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(1680), + [anon_sym_static_assert] = ACTIONS(1680), + [anon_sym_concept] = ACTIONS(1680), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -75901,140 +75738,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(137)] = { - [sym_declaration] = STATE(139), - [sym_type_definition] = STATE(139), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6380), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(139), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(139), - [sym_labeled_statement] = STATE(139), - [sym_expression_statement] = STATE(139), - [sym_if_statement] = STATE(139), - [sym_switch_statement] = STATE(139), - [sym_while_statement] = STATE(139), - [sym_do_statement] = STATE(139), - [sym_for_statement] = STATE(139), - [sym_return_statement] = STATE(139), - [sym_break_statement] = STATE(139), - [sym_continue_statement] = STATE(139), - [sym_goto_statement] = STATE(139), - [sym_seh_try_statement] = STATE(139), - [sym_seh_leave_statement] = STATE(139), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(139), - [sym_co_return_statement] = STATE(139), - [sym_co_yield_statement] = STATE(139), - [sym_throw_statement] = STATE(139), - [sym_try_statement] = STATE(139), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(139), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(1674), - [aux_sym_preproc_def_token1] = ACTIONS(1674), - [aux_sym_preproc_if_token1] = ACTIONS(1674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1674), - [sym_preproc_directive] = ACTIONS(1674), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(136)] = { + [sym_declaration] = STATE(137), + [sym_type_definition] = STATE(137), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6394), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(137), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(137), + [sym_labeled_statement] = STATE(137), + [sym_expression_statement] = STATE(137), + [sym_if_statement] = STATE(137), + [sym_switch_statement] = STATE(137), + [sym_while_statement] = STATE(137), + [sym_do_statement] = STATE(137), + [sym_for_statement] = STATE(137), + [sym_return_statement] = STATE(137), + [sym_break_statement] = STATE(137), + [sym_continue_statement] = STATE(137), + [sym_goto_statement] = STATE(137), + [sym_seh_try_statement] = STATE(137), + [sym_seh_leave_statement] = STATE(137), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(137), + [sym_co_return_statement] = STATE(137), + [sym_co_yield_statement] = STATE(137), + [sym_throw_statement] = STATE(137), + [sym_try_statement] = STATE(137), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(137), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(1672), + [aux_sym_preproc_def_token1] = ACTIONS(1672), + [aux_sym_preproc_if_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1672), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1672), + [sym_preproc_directive] = ACTIONS(1672), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1674), + [anon_sym_AMP] = ACTIONS(1660), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2016), + [anon_sym___extension__] = ACTIONS(2014), [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1674), + [anon_sym_using] = ACTIONS(1672), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1674), - [anon_sym___cdecl] = ACTIONS(1674), - [anon_sym___clrcall] = ACTIONS(1674), - [anon_sym___stdcall] = ACTIONS(1674), - [anon_sym___fastcall] = ACTIONS(1674), - [anon_sym___thiscall] = ACTIONS(1674), - [anon_sym___vectorcall] = ACTIONS(1674), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1676), + [anon_sym___based] = ACTIONS(1672), + [anon_sym___cdecl] = ACTIONS(1672), + [anon_sym___clrcall] = ACTIONS(1672), + [anon_sym___stdcall] = ACTIONS(1672), + [anon_sym___fastcall] = ACTIONS(1672), + [anon_sym___thiscall] = ACTIONS(1672), + [anon_sym___vectorcall] = ACTIONS(1672), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1674), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -76063,10 +75900,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(207), - [anon_sym_else] = ACTIONS(1674), + [anon_sym_else] = ACTIONS(1672), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1674), - [anon_sym_default] = ACTIONS(1674), + [anon_sym_case] = ACTIONS(1672), + [anon_sym_default] = ACTIONS(1672), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -76110,17 +75947,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1674), - [anon_sym_export] = ACTIONS(1674), - [anon_sym_import] = ACTIONS(1674), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_operator] = ACTIONS(1674), + [anon_sym_explicit] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(1672), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_operator] = ACTIONS(1672), [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(1674), - [anon_sym_static_assert] = ACTIONS(1674), - [anon_sym_concept] = ACTIONS(1674), + [anon_sym_namespace] = ACTIONS(1672), + [anon_sym_static_assert] = ACTIONS(1672), + [anon_sym_concept] = ACTIONS(1672), [anon_sym_co_return] = ACTIONS(255), [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -76135,140 +75972,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(138)] = { - [sym_declaration] = STATE(140), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6380), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(140), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(140), - [sym_labeled_statement] = STATE(140), - [sym_expression_statement] = STATE(140), - [sym_if_statement] = STATE(140), - [sym_switch_statement] = STATE(140), - [sym_while_statement] = STATE(140), - [sym_do_statement] = STATE(140), - [sym_for_statement] = STATE(140), - [sym_return_statement] = STATE(140), - [sym_break_statement] = STATE(140), - [sym_continue_statement] = STATE(140), - [sym_goto_statement] = STATE(140), - [sym_seh_try_statement] = STATE(140), - [sym_seh_leave_statement] = STATE(140), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(140), - [sym_co_return_statement] = STATE(140), - [sym_co_yield_statement] = STATE(140), - [sym_throw_statement] = STATE(140), - [sym_try_statement] = STATE(140), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(140), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(1682), - [aux_sym_preproc_def_token1] = ACTIONS(1682), - [aux_sym_preproc_if_token1] = ACTIONS(1682), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1682), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1682), - [sym_preproc_directive] = ACTIONS(1682), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(137)] = { + [sym_declaration] = STATE(138), + [sym_type_definition] = STATE(138), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6394), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(138), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(138), + [sym_labeled_statement] = STATE(138), + [sym_expression_statement] = STATE(138), + [sym_if_statement] = STATE(138), + [sym_switch_statement] = STATE(138), + [sym_while_statement] = STATE(138), + [sym_do_statement] = STATE(138), + [sym_for_statement] = STATE(138), + [sym_return_statement] = STATE(138), + [sym_break_statement] = STATE(138), + [sym_continue_statement] = STATE(138), + [sym_goto_statement] = STATE(138), + [sym_seh_try_statement] = STATE(138), + [sym_seh_leave_statement] = STATE(138), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(138), + [sym_co_return_statement] = STATE(138), + [sym_co_yield_statement] = STATE(138), + [sym_throw_statement] = STATE(138), + [sym_try_statement] = STATE(138), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(138), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(1676), + [aux_sym_preproc_def_token1] = ACTIONS(1676), + [aux_sym_preproc_if_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1676), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1676), + [sym_preproc_directive] = ACTIONS(1676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(1660), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2016), + [anon_sym___extension__] = ACTIONS(2014), [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1682), + [anon_sym_using] = ACTIONS(1676), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1682), - [anon_sym___cdecl] = ACTIONS(1682), - [anon_sym___clrcall] = ACTIONS(1682), - [anon_sym___stdcall] = ACTIONS(1682), - [anon_sym___fastcall] = ACTIONS(1682), - [anon_sym___thiscall] = ACTIONS(1682), - [anon_sym___vectorcall] = ACTIONS(1682), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1684), + [anon_sym___based] = ACTIONS(1676), + [anon_sym___cdecl] = ACTIONS(1676), + [anon_sym___clrcall] = ACTIONS(1676), + [anon_sym___stdcall] = ACTIONS(1676), + [anon_sym___fastcall] = ACTIONS(1676), + [anon_sym___thiscall] = ACTIONS(1676), + [anon_sym___vectorcall] = ACTIONS(1676), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1678), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -76297,10 +76134,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(207), - [anon_sym_else] = ACTIONS(1682), + [anon_sym_else] = ACTIONS(1676), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1682), - [anon_sym_default] = ACTIONS(1682), + [anon_sym_case] = ACTIONS(1676), + [anon_sym_default] = ACTIONS(1676), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -76344,17 +76181,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1682), - [anon_sym_import] = ACTIONS(1682), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_operator] = ACTIONS(1682), + [anon_sym_explicit] = ACTIONS(1676), + [anon_sym_export] = ACTIONS(1676), + [anon_sym_import] = ACTIONS(1676), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_operator] = ACTIONS(1676), [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(1682), - [anon_sym_static_assert] = ACTIONS(1682), - [anon_sym_concept] = ACTIONS(1682), + [anon_sym_namespace] = ACTIONS(1676), + [anon_sym_static_assert] = ACTIONS(1676), + [anon_sym_concept] = ACTIONS(1676), [anon_sym_co_return] = ACTIONS(255), [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -76369,23 +76206,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, + [STATE(138)] = { + [sym_declaration] = STATE(138), + [sym_type_definition] = STATE(138), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6394), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(138), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(138), + [sym_labeled_statement] = STATE(138), + [sym_expression_statement] = STATE(138), + [sym_if_statement] = STATE(138), + [sym_switch_statement] = STATE(138), + [sym_while_statement] = STATE(138), + [sym_do_statement] = STATE(138), + [sym_for_statement] = STATE(138), + [sym_return_statement] = STATE(138), + [sym_break_statement] = STATE(138), + [sym_continue_statement] = STATE(138), + [sym_goto_statement] = STATE(138), + [sym_seh_try_statement] = STATE(138), + [sym_seh_leave_statement] = STATE(138), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(138), + [sym_co_return_statement] = STATE(138), + [sym_co_yield_statement] = STATE(138), + [sym_throw_statement] = STATE(138), + [sym_try_statement] = STATE(138), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(138), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(2018), + [aux_sym_preproc_include_token1] = ACTIONS(1687), + [aux_sym_preproc_def_token1] = ACTIONS(1687), + [aux_sym_preproc_if_token1] = ACTIONS(1687), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1687), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1687), + [sym_preproc_directive] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_AMP_AMP] = ACTIONS(1701), + [anon_sym_AMP] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(2021), + [anon_sym___extension__] = ACTIONS(2024), + [anon_sym_typedef] = ACTIONS(2027), + [anon_sym_virtual] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1718), + [anon_sym___attribute__] = ACTIONS(1721), + [anon_sym___attribute] = ACTIONS(1721), + [anon_sym_using] = ACTIONS(1687), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1727), + [anon_sym___declspec] = ACTIONS(1730), + [anon_sym___based] = ACTIONS(1687), + [anon_sym___cdecl] = ACTIONS(1687), + [anon_sym___clrcall] = ACTIONS(1687), + [anon_sym___stdcall] = ACTIONS(1687), + [anon_sym___fastcall] = ACTIONS(1687), + [anon_sym___thiscall] = ACTIONS(1687), + [anon_sym___vectorcall] = ACTIONS(1687), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_signed] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_register] = ACTIONS(1718), + [anon_sym_inline] = ACTIONS(1718), + [anon_sym___inline] = ACTIONS(1718), + [anon_sym___inline__] = ACTIONS(1718), + [anon_sym___forceinline] = ACTIONS(1718), + [anon_sym_thread_local] = ACTIONS(1718), + [anon_sym___thread] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_constexpr] = ACTIONS(1742), + [anon_sym_volatile] = ACTIONS(1742), + [anon_sym_restrict] = ACTIONS(1742), + [anon_sym___restrict__] = ACTIONS(1742), + [anon_sym__Atomic] = ACTIONS(1742), + [anon_sym__Noreturn] = ACTIONS(1742), + [anon_sym_noreturn] = ACTIONS(1742), + [anon_sym__Nonnull] = ACTIONS(1742), + [anon_sym_mutable] = ACTIONS(1742), + [anon_sym_constinit] = ACTIONS(1742), + [anon_sym_consteval] = ACTIONS(1742), + [anon_sym_alignas] = ACTIONS(1745), + [anon_sym__Alignas] = ACTIONS(1745), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1751), + [anon_sym_class] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(2033), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(1687), + [anon_sym_default] = ACTIONS(1687), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2045), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_goto] = ACTIONS(2057), + [anon_sym___try] = ACTIONS(2060), + [anon_sym___leave] = ACTIONS(2063), + [anon_sym_not] = ACTIONS(1695), + [anon_sym_compl] = ACTIONS(1695), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1796), + [anon_sym_sizeof] = ACTIONS(1799), + [anon_sym___alignof__] = ACTIONS(1802), + [anon_sym___alignof] = ACTIONS(1802), + [anon_sym__alignof] = ACTIONS(1802), + [anon_sym_alignof] = ACTIONS(1802), + [anon_sym__Alignof] = ACTIONS(1802), + [anon_sym_offsetof] = ACTIONS(1805), + [anon_sym__Generic] = ACTIONS(1808), + [anon_sym_typename] = ACTIONS(1811), + [anon_sym_asm] = ACTIONS(1814), + [anon_sym___asm__] = ACTIONS(1814), + [anon_sym___asm] = ACTIONS(1814), + [sym_number_literal] = ACTIONS(1817), + [anon_sym_L_SQUOTE] = ACTIONS(1820), + [anon_sym_u_SQUOTE] = ACTIONS(1820), + [anon_sym_U_SQUOTE] = ACTIONS(1820), + [anon_sym_u8_SQUOTE] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [anon_sym_L_DQUOTE] = ACTIONS(1823), + [anon_sym_u_DQUOTE] = ACTIONS(1823), + [anon_sym_U_DQUOTE] = ACTIONS(1823), + [anon_sym_u8_DQUOTE] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym_true] = ACTIONS(1826), + [sym_false] = ACTIONS(1826), + [anon_sym_NULL] = ACTIONS(1829), + [anon_sym_nullptr] = ACTIONS(1829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1832), + [anon_sym_decltype] = ACTIONS(1835), + [anon_sym_explicit] = ACTIONS(1687), + [anon_sym_export] = ACTIONS(1687), + [anon_sym_import] = ACTIONS(1687), + [anon_sym_template] = ACTIONS(2066), + [anon_sym_operator] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(2069), + [anon_sym_delete] = ACTIONS(1844), + [anon_sym_throw] = ACTIONS(2072), + [anon_sym_namespace] = ACTIONS(1687), + [anon_sym_static_assert] = ACTIONS(1687), + [anon_sym_concept] = ACTIONS(1687), + [anon_sym_co_return] = ACTIONS(2075), + [anon_sym_co_yield] = ACTIONS(2078), + [anon_sym_R_DQUOTE] = ACTIONS(1856), + [anon_sym_LR_DQUOTE] = ACTIONS(1856), + [anon_sym_uR_DQUOTE] = ACTIONS(1856), + [anon_sym_UR_DQUOTE] = ACTIONS(1856), + [anon_sym_u8R_DQUOTE] = ACTIONS(1856), + [anon_sym_co_await] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1862), + [anon_sym_requires] = ACTIONS(1865), + [anon_sym_CARET_CARET] = ACTIONS(1868), + [anon_sym_LBRACK_COLON] = ACTIONS(1871), + [sym_this] = ACTIONS(1826), + }, [STATE(139)] = { [sym_declaration] = STATE(140), [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6380), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6394), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), [sym_compound_statement] = STATE(140), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), [sym_attributed_statement] = STATE(140), [sym_labeled_statement] = STATE(140), [sym_expression_statement] = STATE(140), @@ -76400,109 +76471,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_goto_statement] = STATE(140), [sym_seh_try_statement] = STATE(140), [sym_seh_leave_statement] = STATE(140), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), [sym_for_range_loop] = STATE(140), [sym_co_return_statement] = STATE(140), [sym_co_yield_statement] = STATE(140), [sym_throw_statement] = STATE(140), [sym_try_statement] = STATE(140), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), [sym_expansion_statement] = STATE(140), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), [aux_sym_case_statement_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(2014), - [aux_sym_preproc_include_token1] = ACTIONS(1654), - [aux_sym_preproc_def_token1] = ACTIONS(1654), - [aux_sym_preproc_if_token1] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1654), - [sym_preproc_directive] = ACTIONS(1654), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(1652), + [aux_sym_preproc_def_token1] = ACTIONS(1652), + [aux_sym_preproc_if_token1] = ACTIONS(1652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1652), + [sym_preproc_directive] = ACTIONS(1652), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(1662), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1658), + [anon_sym_AMP] = ACTIONS(1660), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2016), + [anon_sym___extension__] = ACTIONS(2014), [anon_sym_typedef] = ACTIONS(191), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1652), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(1654), - [anon_sym___cdecl] = ACTIONS(1654), - [anon_sym___clrcall] = ACTIONS(1654), - [anon_sym___stdcall] = ACTIONS(1654), - [anon_sym___fastcall] = ACTIONS(1654), - [anon_sym___thiscall] = ACTIONS(1654), - [anon_sym___vectorcall] = ACTIONS(1654), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(1660), + [anon_sym___based] = ACTIONS(1652), + [anon_sym___cdecl] = ACTIONS(1652), + [anon_sym___clrcall] = ACTIONS(1652), + [anon_sym___stdcall] = ACTIONS(1652), + [anon_sym___fastcall] = ACTIONS(1652), + [anon_sym___thiscall] = ACTIONS(1652), + [anon_sym___vectorcall] = ACTIONS(1652), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1658), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -76531,10 +76602,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(207), - [anon_sym_else] = ACTIONS(1654), + [anon_sym_else] = ACTIONS(1652), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(1654), - [anon_sym_default] = ACTIONS(1654), + [anon_sym_case] = ACTIONS(1652), + [anon_sym_default] = ACTIONS(1652), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -76578,17 +76649,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(1654), - [anon_sym_import] = ACTIONS(1654), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_operator] = ACTIONS(1654), + [anon_sym_explicit] = ACTIONS(1652), + [anon_sym_export] = ACTIONS(1652), + [anon_sym_import] = ACTIONS(1652), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_operator] = ACTIONS(1652), [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(247), - [anon_sym_namespace] = ACTIONS(1654), - [anon_sym_static_assert] = ACTIONS(1654), - [anon_sym_concept] = ACTIONS(1654), + [anon_sym_namespace] = ACTIONS(1652), + [anon_sym_static_assert] = ACTIONS(1652), + [anon_sym_concept] = ACTIONS(1652), [anon_sym_co_return] = ACTIONS(255), [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -76604,357 +76675,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(140)] = { - [sym_declaration] = STATE(140), - [sym_type_definition] = STATE(140), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6380), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(140), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(140), - [sym_labeled_statement] = STATE(140), - [sym_expression_statement] = STATE(140), - [sym_if_statement] = STATE(140), - [sym_switch_statement] = STATE(140), - [sym_while_statement] = STATE(140), - [sym_do_statement] = STATE(140), - [sym_for_statement] = STATE(140), - [sym_return_statement] = STATE(140), - [sym_break_statement] = STATE(140), - [sym_continue_statement] = STATE(140), - [sym_goto_statement] = STATE(140), - [sym_seh_try_statement] = STATE(140), - [sym_seh_leave_statement] = STATE(140), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(140), - [sym_co_return_statement] = STATE(140), - [sym_co_yield_statement] = STATE(140), - [sym_throw_statement] = STATE(140), - [sym_try_statement] = STATE(140), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(140), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(2020), - [aux_sym_preproc_include_token1] = ACTIONS(1689), - [aux_sym_preproc_def_token1] = ACTIONS(1689), - [aux_sym_preproc_if_token1] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token1] = ACTIONS(1689), - [aux_sym_preproc_ifdef_token2] = ACTIONS(1689), - [sym_preproc_directive] = ACTIONS(1689), - [anon_sym_LPAREN2] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_AMP_AMP] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym___extension__] = ACTIONS(2026), - [anon_sym_typedef] = ACTIONS(2029), - [anon_sym_virtual] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym___attribute__] = ACTIONS(1723), - [anon_sym___attribute] = ACTIONS(1723), - [anon_sym_using] = ACTIONS(1689), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym___based] = ACTIONS(1689), - [anon_sym___cdecl] = ACTIONS(1689), - [anon_sym___clrcall] = ACTIONS(1689), - [anon_sym___stdcall] = ACTIONS(1689), - [anon_sym___fastcall] = ACTIONS(1689), - [anon_sym___thiscall] = ACTIONS(1689), - [anon_sym___vectorcall] = ACTIONS(1689), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_register] = ACTIONS(1720), - [anon_sym_inline] = ACTIONS(1720), - [anon_sym___inline] = ACTIONS(1720), - [anon_sym___inline__] = ACTIONS(1720), - [anon_sym___forceinline] = ACTIONS(1720), - [anon_sym_thread_local] = ACTIONS(1720), - [anon_sym___thread] = ACTIONS(1720), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_constexpr] = ACTIONS(1744), - [anon_sym_volatile] = ACTIONS(1744), - [anon_sym_restrict] = ACTIONS(1744), - [anon_sym___restrict__] = ACTIONS(1744), - [anon_sym__Atomic] = ACTIONS(1744), - [anon_sym__Noreturn] = ACTIONS(1744), - [anon_sym_noreturn] = ACTIONS(1744), - [anon_sym__Nonnull] = ACTIONS(1744), - [anon_sym_mutable] = ACTIONS(1744), - [anon_sym_constinit] = ACTIONS(1744), - [anon_sym_consteval] = ACTIONS(1744), - [anon_sym_alignas] = ACTIONS(1747), - [anon_sym__Alignas] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_do] = ACTIONS(2044), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2050), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym___try] = ACTIONS(2062), - [anon_sym___leave] = ACTIONS(2065), - [anon_sym_not] = ACTIONS(1697), - [anon_sym_compl] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_sizeof] = ACTIONS(1801), - [anon_sym___alignof__] = ACTIONS(1804), - [anon_sym___alignof] = ACTIONS(1804), - [anon_sym__alignof] = ACTIONS(1804), - [anon_sym_alignof] = ACTIONS(1804), - [anon_sym__Alignof] = ACTIONS(1804), - [anon_sym_offsetof] = ACTIONS(1807), - [anon_sym__Generic] = ACTIONS(1810), - [anon_sym_typename] = ACTIONS(1813), - [anon_sym_asm] = ACTIONS(1816), - [anon_sym___asm__] = ACTIONS(1816), - [anon_sym___asm] = ACTIONS(1816), - [sym_number_literal] = ACTIONS(1819), - [anon_sym_L_SQUOTE] = ACTIONS(1822), - [anon_sym_u_SQUOTE] = ACTIONS(1822), - [anon_sym_U_SQUOTE] = ACTIONS(1822), - [anon_sym_u8_SQUOTE] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1822), - [anon_sym_L_DQUOTE] = ACTIONS(1825), - [anon_sym_u_DQUOTE] = ACTIONS(1825), - [anon_sym_U_DQUOTE] = ACTIONS(1825), - [anon_sym_u8_DQUOTE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [sym_true] = ACTIONS(1828), - [sym_false] = ACTIONS(1828), - [anon_sym_NULL] = ACTIONS(1831), - [anon_sym_nullptr] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1834), - [anon_sym_decltype] = ACTIONS(1837), - [anon_sym_explicit] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1689), - [anon_sym_import] = ACTIONS(1689), - [anon_sym_template] = ACTIONS(2068), - [anon_sym_operator] = ACTIONS(1689), - [anon_sym_try] = ACTIONS(2071), - [anon_sym_delete] = ACTIONS(1846), - [anon_sym_throw] = ACTIONS(2074), - [anon_sym_namespace] = ACTIONS(1689), - [anon_sym_static_assert] = ACTIONS(1689), - [anon_sym_concept] = ACTIONS(1689), - [anon_sym_co_return] = ACTIONS(2077), - [anon_sym_co_yield] = ACTIONS(2080), - [anon_sym_R_DQUOTE] = ACTIONS(1858), - [anon_sym_LR_DQUOTE] = ACTIONS(1858), - [anon_sym_uR_DQUOTE] = ACTIONS(1858), - [anon_sym_UR_DQUOTE] = ACTIONS(1858), - [anon_sym_u8R_DQUOTE] = ACTIONS(1858), - [anon_sym_co_await] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_requires] = ACTIONS(1867), - [anon_sym_CARET_CARET] = ACTIONS(1870), - [anon_sym_LBRACK_COLON] = ACTIONS(1873), - [sym_this] = ACTIONS(1828), - }, - [STATE(141)] = { - [sym_declaration] = STATE(677), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6380), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(677), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6686), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10556), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(138), + [sym_type_definition] = STATE(138), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6394), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(138), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(138), + [sym_labeled_statement] = STATE(138), + [sym_expression_statement] = STATE(138), + [sym_if_statement] = STATE(138), + [sym_switch_statement] = STATE(138), + [sym_while_statement] = STATE(138), + [sym_do_statement] = STATE(138), + [sym_for_statement] = STATE(138), + [sym_return_statement] = STATE(138), + [sym_break_statement] = STATE(138), + [sym_continue_statement] = STATE(138), + [sym_goto_statement] = STATE(138), + [sym_seh_try_statement] = STATE(138), + [sym_seh_leave_statement] = STATE(138), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(138), + [sym_co_return_statement] = STATE(138), + [sym_co_yield_statement] = STATE(138), + [sym_throw_statement] = STATE(138), + [sym_try_statement] = STATE(138), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(138), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(138), + [sym_identifier] = ACTIONS(2012), + [aux_sym_preproc_include_token1] = ACTIONS(1680), + [aux_sym_preproc_def_token1] = ACTIONS(1680), + [aux_sym_preproc_if_token1] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token1] = ACTIONS(1680), + [aux_sym_preproc_ifdef_token2] = ACTIONS(1680), + [sym_preproc_directive] = ACTIONS(1680), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1682), + [anon_sym_AMP] = ACTIONS(1660), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym___extension__] = ACTIONS(2014), + [anon_sym_typedef] = ACTIONS(191), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(1680), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(197), + [anon_sym___based] = ACTIONS(1680), + [anon_sym___cdecl] = ACTIONS(1680), + [anon_sym___clrcall] = ACTIONS(1680), + [anon_sym___stdcall] = ACTIONS(1680), + [anon_sym___fastcall] = ACTIONS(1680), + [anon_sym___thiscall] = ACTIONS(1680), + [anon_sym___vectorcall] = ACTIONS(1680), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(1682), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -76983,9 +76836,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), [anon_sym_if] = ACTIONS(207), + [anon_sym_else] = ACTIONS(1680), [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), + [anon_sym_case] = ACTIONS(1680), + [anon_sym_default] = ACTIONS(1680), [anon_sym_while] = ACTIONS(215), [anon_sym_do] = ACTIONS(217), [anon_sym_for] = ACTIONS(219), @@ -77029,10 +76883,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2018), + [anon_sym_explicit] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1680), + [anon_sym_import] = ACTIONS(1680), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_operator] = ACTIONS(1680), [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(247), + [anon_sym_namespace] = ACTIONS(1680), + [anon_sym_static_assert] = ACTIONS(1680), + [anon_sym_concept] = ACTIONS(1680), [anon_sym_co_return] = ACTIONS(255), [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), @@ -77047,124 +76908,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, + [STATE(141)] = { + [sym_declaration] = STATE(146), + [sym_type_definition] = STATE(146), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6381), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(146), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(146), + [sym_labeled_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym_if_statement] = STATE(146), + [sym_switch_statement] = STATE(146), + [sym_while_statement] = STATE(146), + [sym_do_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym_return_statement] = STATE(146), + [sym_break_statement] = STATE(146), + [sym_continue_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym_seh_try_statement] = STATE(146), + [sym_seh_leave_statement] = STATE(146), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(146), + [sym_co_return_statement] = STATE(146), + [sym_co_yield_statement] = STATE(146), + [sym_throw_statement] = STATE(146), + [sym_try_statement] = STATE(146), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(146), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(2081), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_typedef] = ACTIONS(2087), + [anon_sym_virtual] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(73), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_else] = ACTIONS(1676), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(115), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(171), + [sym_this] = ACTIONS(237), + }, [STATE(142)] = { - [sym_declaration] = STATE(143), - [sym_type_definition] = STATE(143), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(143), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(143), - [sym_labeled_statement] = STATE(143), - [sym_expression_statement] = STATE(143), - [sym_if_statement] = STATE(143), - [sym_switch_statement] = STATE(143), - [sym_while_statement] = STATE(143), - [sym_do_statement] = STATE(143), - [sym_for_statement] = STATE(143), - [sym_return_statement] = STATE(143), - [sym_break_statement] = STATE(143), - [sym_continue_statement] = STATE(143), - [sym_goto_statement] = STATE(143), - [sym_seh_try_statement] = STATE(143), - [sym_seh_leave_statement] = STATE(143), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(143), - [sym_co_return_statement] = STATE(143), - [sym_co_yield_statement] = STATE(143), - [sym_throw_statement] = STATE(143), - [sym_try_statement] = STATE(143), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(143), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(567), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6418), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(567), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2123), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2089), - [anon_sym_typedef] = ACTIONS(2091), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2125), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -77192,18 +77261,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(1654), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2137), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -77238,12 +77308,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_template] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -77257,331 +77327,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(143)] = { - [sym_declaration] = STATE(143), - [sym_type_definition] = STATE(143), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(143), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(143), - [sym_labeled_statement] = STATE(143), - [sym_expression_statement] = STATE(143), - [sym_if_statement] = STATE(143), - [sym_switch_statement] = STATE(143), - [sym_while_statement] = STATE(143), - [sym_do_statement] = STATE(143), - [sym_for_statement] = STATE(143), - [sym_return_statement] = STATE(143), - [sym_break_statement] = STATE(143), - [sym_continue_statement] = STATE(143), - [sym_goto_statement] = STATE(143), - [sym_seh_try_statement] = STATE(143), - [sym_seh_leave_statement] = STATE(143), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(143), - [sym_co_return_statement] = STATE(143), - [sym_co_yield_statement] = STATE(143), - [sym_throw_statement] = STATE(143), - [sym_try_statement] = STATE(143), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(143), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(2127), - [anon_sym_LPAREN2] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_STAR] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(1700), - [anon_sym_SEMI] = ACTIONS(2130), - [anon_sym___extension__] = ACTIONS(2133), - [anon_sym_typedef] = ACTIONS(2136), - [anon_sym_virtual] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym___attribute__] = ACTIONS(1723), - [anon_sym___attribute] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1729), - [anon_sym___declspec] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_signed] = ACTIONS(1738), - [anon_sym_unsigned] = ACTIONS(1738), - [anon_sym_long] = ACTIONS(1738), - [anon_sym_short] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_register] = ACTIONS(1720), - [anon_sym_inline] = ACTIONS(1720), - [anon_sym___inline] = ACTIONS(1720), - [anon_sym___inline__] = ACTIONS(1720), - [anon_sym___forceinline] = ACTIONS(1720), - [anon_sym_thread_local] = ACTIONS(1720), - [anon_sym___thread] = ACTIONS(1720), - [anon_sym_const] = ACTIONS(1744), - [anon_sym_constexpr] = ACTIONS(1744), - [anon_sym_volatile] = ACTIONS(1744), - [anon_sym_restrict] = ACTIONS(1744), - [anon_sym___restrict__] = ACTIONS(1744), - [anon_sym__Atomic] = ACTIONS(1744), - [anon_sym__Noreturn] = ACTIONS(1744), - [anon_sym_noreturn] = ACTIONS(1744), - [anon_sym__Nonnull] = ACTIONS(1744), - [anon_sym_mutable] = ACTIONS(1744), - [anon_sym_constinit] = ACTIONS(1744), - [anon_sym_consteval] = ACTIONS(1744), - [anon_sym_alignas] = ACTIONS(1747), - [anon_sym__Alignas] = ACTIONS(1747), - [sym_primitive_type] = ACTIONS(1750), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_class] = ACTIONS(1756), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(2142), - [anon_sym_else] = ACTIONS(1689), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2148), - [anon_sym_do] = ACTIONS(2151), - [anon_sym_for] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2163), - [anon_sym_goto] = ACTIONS(2166), - [anon_sym___try] = ACTIONS(2169), - [anon_sym___leave] = ACTIONS(2172), - [anon_sym_not] = ACTIONS(1697), - [anon_sym_compl] = ACTIONS(1697), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_sizeof] = ACTIONS(1801), - [anon_sym___alignof__] = ACTIONS(1804), - [anon_sym___alignof] = ACTIONS(1804), - [anon_sym__alignof] = ACTIONS(1804), - [anon_sym_alignof] = ACTIONS(1804), - [anon_sym__Alignof] = ACTIONS(1804), - [anon_sym_offsetof] = ACTIONS(1807), - [anon_sym__Generic] = ACTIONS(1810), - [anon_sym_typename] = ACTIONS(1813), - [anon_sym_asm] = ACTIONS(1816), - [anon_sym___asm__] = ACTIONS(1816), - [anon_sym___asm] = ACTIONS(1816), - [sym_number_literal] = ACTIONS(1819), - [anon_sym_L_SQUOTE] = ACTIONS(1822), - [anon_sym_u_SQUOTE] = ACTIONS(1822), - [anon_sym_U_SQUOTE] = ACTIONS(1822), - [anon_sym_u8_SQUOTE] = ACTIONS(1822), - [anon_sym_SQUOTE] = ACTIONS(1822), - [anon_sym_L_DQUOTE] = ACTIONS(1825), - [anon_sym_u_DQUOTE] = ACTIONS(1825), - [anon_sym_U_DQUOTE] = ACTIONS(1825), - [anon_sym_u8_DQUOTE] = ACTIONS(1825), - [anon_sym_DQUOTE] = ACTIONS(1825), - [sym_true] = ACTIONS(1828), - [sym_false] = ACTIONS(1828), - [anon_sym_NULL] = ACTIONS(1831), - [anon_sym_nullptr] = ACTIONS(1831), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(1834), - [anon_sym_decltype] = ACTIONS(1837), - [anon_sym_template] = ACTIONS(2175), - [anon_sym_try] = ACTIONS(2178), - [anon_sym_delete] = ACTIONS(1846), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_co_return] = ACTIONS(2184), - [anon_sym_co_yield] = ACTIONS(2187), - [anon_sym_R_DQUOTE] = ACTIONS(1858), - [anon_sym_LR_DQUOTE] = ACTIONS(1858), - [anon_sym_uR_DQUOTE] = ACTIONS(1858), - [anon_sym_UR_DQUOTE] = ACTIONS(1858), - [anon_sym_u8R_DQUOTE] = ACTIONS(1858), - [anon_sym_co_await] = ACTIONS(1861), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_requires] = ACTIONS(1867), - [anon_sym_CARET_CARET] = ACTIONS(1870), - [anon_sym_LBRACK_COLON] = ACTIONS(1873), - [sym_this] = ACTIONS(1828), - }, - [STATE(144)] = { - [sym_declaration] = STATE(599), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6398), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(637), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(599), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(1939), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(609), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6390), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(571), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(609), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(1937), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2125), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(1113), + [anon_sym_LBRACE] = ACTIONS(1002), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -77609,19 +77470,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -77656,12 +77517,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -77674,123 +77535,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(145)] = { - [sym_declaration] = STATE(601), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6421), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(601), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(221), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2190), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(144)] = { + [sym_declaration] = STATE(146), + [sym_type_definition] = STATE(146), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6381), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(146), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(146), + [sym_labeled_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym_if_statement] = STATE(146), + [sym_switch_statement] = STATE(146), + [sym_while_statement] = STATE(146), + [sym_do_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym_return_statement] = STATE(146), + [sym_break_statement] = STATE(146), + [sym_continue_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym_seh_try_statement] = STATE(146), + [sym_seh_leave_statement] = STATE(146), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(146), + [sym_co_return_statement] = STATE(146), + [sym_co_yield_statement] = STATE(146), + [sym_throw_statement] = STATE(146), + [sym_try_statement] = STATE(146), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(146), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(2081), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_typedef] = ACTIONS(2087), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(2089), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -77818,19 +77680,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_else] = ACTIONS(1680), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -77865,12 +77726,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(145), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -77883,123 +77744,124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(146)] = { - [sym_declaration] = STATE(355), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6396), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(339), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(355), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(1652), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(145)] = { + [sym_declaration] = STATE(141), + [sym_type_definition] = STATE(141), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6381), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(141), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(141), + [sym_labeled_statement] = STATE(141), + [sym_expression_statement] = STATE(141), + [sym_if_statement] = STATE(141), + [sym_switch_statement] = STATE(141), + [sym_while_statement] = STATE(141), + [sym_do_statement] = STATE(141), + [sym_for_statement] = STATE(141), + [sym_return_statement] = STATE(141), + [sym_break_statement] = STATE(141), + [sym_continue_statement] = STATE(141), + [sym_goto_statement] = STATE(141), + [sym_seh_try_statement] = STATE(141), + [sym_seh_leave_statement] = STATE(141), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(141), + [sym_co_return_statement] = STATE(141), + [sym_co_yield_statement] = STATE(141), + [sym_throw_statement] = STATE(141), + [sym_try_statement] = STATE(141), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(141), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(141), + [sym_identifier] = ACTIONS(2081), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_typedef] = ACTIONS(2087), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACE] = ACTIONS(2089), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -78027,19 +77889,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(319), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(325), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_goto] = ACTIONS(335), - [anon_sym___try] = ACTIONS(337), - [anon_sym___leave] = ACTIONS(339), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_else] = ACTIONS(1672), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -78074,12 +77935,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(347), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_co_return] = ACTIONS(357), - [anon_sym_co_yield] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -78092,123 +77953,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, + [STATE(146)] = { + [sym_declaration] = STATE(146), + [sym_type_definition] = STATE(146), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6381), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(146), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(146), + [sym_labeled_statement] = STATE(146), + [sym_expression_statement] = STATE(146), + [sym_if_statement] = STATE(146), + [sym_switch_statement] = STATE(146), + [sym_while_statement] = STATE(146), + [sym_do_statement] = STATE(146), + [sym_for_statement] = STATE(146), + [sym_return_statement] = STATE(146), + [sym_break_statement] = STATE(146), + [sym_continue_statement] = STATE(146), + [sym_goto_statement] = STATE(146), + [sym_seh_try_statement] = STATE(146), + [sym_seh_leave_statement] = STATE(146), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(146), + [sym_co_return_statement] = STATE(146), + [sym_co_yield_statement] = STATE(146), + [sym_throw_statement] = STATE(146), + [sym_try_statement] = STATE(146), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(146), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(146), + [sym_identifier] = ACTIONS(2141), + [anon_sym_LPAREN2] = ACTIONS(1689), + [anon_sym_BANG] = ACTIONS(1692), + [anon_sym_TILDE] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(2144), + [anon_sym___extension__] = ACTIONS(2147), + [anon_sym_typedef] = ACTIONS(2150), + [anon_sym_virtual] = ACTIONS(1715), + [anon_sym_extern] = ACTIONS(1718), + [anon_sym___attribute__] = ACTIONS(1721), + [anon_sym___attribute] = ACTIONS(1721), + [anon_sym_COLON_COLON] = ACTIONS(1724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1727), + [anon_sym___declspec] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_signed] = ACTIONS(1736), + [anon_sym_unsigned] = ACTIONS(1736), + [anon_sym_long] = ACTIONS(1736), + [anon_sym_short] = ACTIONS(1736), + [anon_sym_LBRACK] = ACTIONS(1739), + [anon_sym_static] = ACTIONS(1718), + [anon_sym_register] = ACTIONS(1718), + [anon_sym_inline] = ACTIONS(1718), + [anon_sym___inline] = ACTIONS(1718), + [anon_sym___inline__] = ACTIONS(1718), + [anon_sym___forceinline] = ACTIONS(1718), + [anon_sym_thread_local] = ACTIONS(1718), + [anon_sym___thread] = ACTIONS(1718), + [anon_sym_const] = ACTIONS(1742), + [anon_sym_constexpr] = ACTIONS(1742), + [anon_sym_volatile] = ACTIONS(1742), + [anon_sym_restrict] = ACTIONS(1742), + [anon_sym___restrict__] = ACTIONS(1742), + [anon_sym__Atomic] = ACTIONS(1742), + [anon_sym__Noreturn] = ACTIONS(1742), + [anon_sym_noreturn] = ACTIONS(1742), + [anon_sym__Nonnull] = ACTIONS(1742), + [anon_sym_mutable] = ACTIONS(1742), + [anon_sym_constinit] = ACTIONS(1742), + [anon_sym_consteval] = ACTIONS(1742), + [anon_sym_alignas] = ACTIONS(1745), + [anon_sym__Alignas] = ACTIONS(1745), + [sym_primitive_type] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1751), + [anon_sym_class] = ACTIONS(1754), + [anon_sym_struct] = ACTIONS(1757), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(1687), + [anon_sym_switch] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2162), + [anon_sym_do] = ACTIONS(2165), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2174), + [anon_sym_continue] = ACTIONS(2177), + [anon_sym_goto] = ACTIONS(2180), + [anon_sym___try] = ACTIONS(2183), + [anon_sym___leave] = ACTIONS(2186), + [anon_sym_not] = ACTIONS(1695), + [anon_sym_compl] = ACTIONS(1695), + [anon_sym_DASH_DASH] = ACTIONS(1796), + [anon_sym_PLUS_PLUS] = ACTIONS(1796), + [anon_sym_sizeof] = ACTIONS(1799), + [anon_sym___alignof__] = ACTIONS(1802), + [anon_sym___alignof] = ACTIONS(1802), + [anon_sym__alignof] = ACTIONS(1802), + [anon_sym_alignof] = ACTIONS(1802), + [anon_sym__Alignof] = ACTIONS(1802), + [anon_sym_offsetof] = ACTIONS(1805), + [anon_sym__Generic] = ACTIONS(1808), + [anon_sym_typename] = ACTIONS(1811), + [anon_sym_asm] = ACTIONS(1814), + [anon_sym___asm__] = ACTIONS(1814), + [anon_sym___asm] = ACTIONS(1814), + [sym_number_literal] = ACTIONS(1817), + [anon_sym_L_SQUOTE] = ACTIONS(1820), + [anon_sym_u_SQUOTE] = ACTIONS(1820), + [anon_sym_U_SQUOTE] = ACTIONS(1820), + [anon_sym_u8_SQUOTE] = ACTIONS(1820), + [anon_sym_SQUOTE] = ACTIONS(1820), + [anon_sym_L_DQUOTE] = ACTIONS(1823), + [anon_sym_u_DQUOTE] = ACTIONS(1823), + [anon_sym_U_DQUOTE] = ACTIONS(1823), + [anon_sym_u8_DQUOTE] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1823), + [sym_true] = ACTIONS(1826), + [sym_false] = ACTIONS(1826), + [anon_sym_NULL] = ACTIONS(1829), + [anon_sym_nullptr] = ACTIONS(1829), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(1832), + [anon_sym_decltype] = ACTIONS(1835), + [anon_sym_template] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_delete] = ACTIONS(1844), + [anon_sym_throw] = ACTIONS(2195), + [anon_sym_co_return] = ACTIONS(2198), + [anon_sym_co_yield] = ACTIONS(2201), + [anon_sym_R_DQUOTE] = ACTIONS(1856), + [anon_sym_LR_DQUOTE] = ACTIONS(1856), + [anon_sym_uR_DQUOTE] = ACTIONS(1856), + [anon_sym_UR_DQUOTE] = ACTIONS(1856), + [anon_sym_u8R_DQUOTE] = ACTIONS(1856), + [anon_sym_co_await] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1862), + [anon_sym_requires] = ACTIONS(1865), + [anon_sym_CARET_CARET] = ACTIONS(1868), + [anon_sym_LBRACK_COLON] = ACTIONS(1871), + [sym_this] = ACTIONS(1826), + }, [STATE(147)] = { - [sym_declaration] = STATE(601), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6421), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(578), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(601), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), + [sym_declaration] = STATE(144), + [sym_type_definition] = STATE(144), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6381), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(144), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(144), + [sym_labeled_statement] = STATE(144), + [sym_expression_statement] = STATE(144), + [sym_if_statement] = STATE(144), + [sym_switch_statement] = STATE(144), + [sym_while_statement] = STATE(144), + [sym_do_statement] = STATE(144), + [sym_for_statement] = STATE(144), + [sym_return_statement] = STATE(144), + [sym_break_statement] = STATE(144), + [sym_continue_statement] = STATE(144), + [sym_goto_statement] = STATE(144), + [sym_seh_try_statement] = STATE(144), + [sym_seh_leave_statement] = STATE(144), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(144), + [sym_co_return_statement] = STATE(144), + [sym_co_yield_statement] = STATE(144), + [sym_throw_statement] = STATE(144), + [sym_try_statement] = STATE(144), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(144), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), [aux_sym_attributed_declarator_repeat1] = STATE(214), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(1945), - [anon_sym_LPAREN2] = ACTIONS(1656), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_case_statement_repeat1] = STATE(144), + [sym_identifier] = ACTIONS(2081), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_typedef] = ACTIONS(2087), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACE] = ACTIONS(2089), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -78236,19 +78307,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_else] = ACTIONS(1652), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -78283,12 +78353,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(145), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -78302,122 +78372,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(148)] = { - [sym_declaration] = STATE(1225), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(1232), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(1232), - [sym_statement] = STATE(1225), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym_seh_try_statement] = STATE(1232), - [sym_seh_leave_statement] = STATE(1232), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(1232), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(1232), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6381), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(1256), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(1256), + [sym_statement] = STATE(1232), + [sym_labeled_statement] = STATE(1256), + [sym_expression_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym_case_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_break_statement] = STATE(1256), + [sym_continue_statement] = STATE(1256), + [sym_goto_statement] = STATE(1256), + [sym_seh_try_statement] = STATE(1256), + [sym_seh_leave_statement] = STATE(1256), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(1256), + [sym_co_return_statement] = STATE(1256), + [sym_co_yield_statement] = STATE(1256), + [sym_throw_statement] = STATE(1256), + [sym_try_statement] = STATE(1256), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(1256), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2081), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2125), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2089), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -78445,19 +78515,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -78492,12 +78562,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -78511,122 +78581,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(149)] = { - [sym_declaration] = STATE(677), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6380), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(772), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(677), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2014), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(680), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6394), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(704), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(680), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2012), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym___extension__] = ACTIONS(2125), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(958), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -78701,7 +78771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2018), + [anon_sym_template] = ACTIONS(2016), [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(247), @@ -78720,123 +78790,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(150)] = { - [sym_declaration] = STATE(152), - [sym_type_definition] = STATE(152), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(152), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(152), - [sym_labeled_statement] = STATE(152), - [sym_expression_statement] = STATE(152), - [sym_if_statement] = STATE(152), - [sym_switch_statement] = STATE(152), - [sym_while_statement] = STATE(152), - [sym_do_statement] = STATE(152), - [sym_for_statement] = STATE(152), - [sym_return_statement] = STATE(152), - [sym_break_statement] = STATE(152), - [sym_continue_statement] = STATE(152), - [sym_goto_statement] = STATE(152), - [sym_seh_try_statement] = STATE(152), - [sym_seh_leave_statement] = STATE(152), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(152), - [sym_co_return_statement] = STATE(152), - [sym_co_yield_statement] = STATE(152), - [sym_throw_statement] = STATE(152), - [sym_try_statement] = STATE(152), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(152), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(152), - [sym_identifier] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(367), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6419), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(358), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(367), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(1650), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2089), - [anon_sym_typedef] = ACTIONS(2091), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2125), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(309), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -78864,18 +78933,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -78910,12 +78980,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -78929,123 +78999,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(151)] = { - [sym_declaration] = STATE(142), - [sym_type_definition] = STATE(142), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(142), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(142), - [sym_labeled_statement] = STATE(142), - [sym_expression_statement] = STATE(142), - [sym_if_statement] = STATE(142), - [sym_switch_statement] = STATE(142), - [sym_while_statement] = STATE(142), - [sym_do_statement] = STATE(142), - [sym_for_statement] = STATE(142), - [sym_return_statement] = STATE(142), - [sym_break_statement] = STATE(142), - [sym_continue_statement] = STATE(142), - [sym_goto_statement] = STATE(142), - [sym_seh_try_statement] = STATE(142), - [sym_seh_leave_statement] = STATE(142), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(142), - [sym_co_return_statement] = STATE(142), - [sym_co_yield_statement] = STATE(142), - [sym_throw_statement] = STATE(142), - [sym_try_statement] = STATE(142), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(142), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(142), - [sym_identifier] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(567), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6418), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(1235), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_compound_statement] = STATE(587), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(567), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2006), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2089), - [anon_sym_typedef] = ACTIONS(2091), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2125), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(57), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -79073,18 +79142,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -79119,12 +79189,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_template] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -79138,123 +79208,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(152)] = { - [sym_declaration] = STATE(143), - [sym_type_definition] = STATE(143), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6391), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(1265), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_compound_statement] = STATE(143), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_attributed_statement] = STATE(143), - [sym_labeled_statement] = STATE(143), - [sym_expression_statement] = STATE(143), - [sym_if_statement] = STATE(143), - [sym_switch_statement] = STATE(143), - [sym_while_statement] = STATE(143), - [sym_do_statement] = STATE(143), - [sym_for_statement] = STATE(143), - [sym_return_statement] = STATE(143), - [sym_break_statement] = STATE(143), - [sym_continue_statement] = STATE(143), - [sym_goto_statement] = STATE(143), - [sym_seh_try_statement] = STATE(143), - [sym_seh_leave_statement] = STATE(143), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(143), - [sym_co_return_statement] = STATE(143), - [sym_co_yield_statement] = STATE(143), - [sym_throw_statement] = STATE(143), - [sym_try_statement] = STATE(143), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(143), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_case_statement_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(2085), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(292), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6383), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym__for_statement_body] = STATE(10783), + [sym_expression] = STATE(6849), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10843), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(10848), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2089), - [anon_sym_typedef] = ACTIONS(2091), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(2093), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -79282,18 +79334,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_else] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -79328,12 +79368,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -79347,105 +79383,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(153)] = { - [sym_declaration] = STATE(309), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6423), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym__for_statement_body] = STATE(11508), - [sym_expression] = STATE(6892), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11513), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(11514), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(292), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6383), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym__for_statement_body] = STATE(10775), + [sym_expression] = STATE(6849), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10843), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(10776), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -79507,7 +79543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -79522,105 +79558,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(154)] = { - [sym_declaration] = STATE(309), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6423), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym__for_statement_body] = STATE(10926), - [sym_expression] = STATE(6892), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11513), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(10975), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(292), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6383), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym__for_statement_body] = STATE(10637), + [sym_expression] = STATE(6849), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10843), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(10638), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -79682,7 +79718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -79697,105 +79733,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(155)] = { - [sym_declaration] = STATE(309), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6423), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym__for_statement_body] = STATE(11561), - [sym_expression] = STATE(6892), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11513), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(10641), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(292), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6383), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym__for_statement_body] = STATE(11484), + [sym_expression] = STATE(6849), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10843), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(11485), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -79857,7 +79893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -79872,105 +79908,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(156)] = { - [sym_declaration] = STATE(309), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6423), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym__for_statement_body] = STATE(10799), - [sym_expression] = STATE(6892), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11513), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(10800), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(292), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6383), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym__for_statement_body] = STATE(11401), + [sym_expression] = STATE(6849), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10843), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(11491), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -80032,7 +80068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -80047,105 +80083,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(157)] = { - [sym_declaration] = STATE(309), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6423), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym__for_statement_body] = STATE(10643), - [sym_expression] = STATE(6892), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11513), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(10644), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(292), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6383), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym__for_statement_body] = STATE(10800), + [sym_expression] = STATE(6849), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10843), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(10802), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -80207,7 +80243,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -80222,105 +80258,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(158)] = { - [sym_declaration] = STATE(309), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6423), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym__for_statement_body] = STATE(10781), - [sym_expression] = STATE(6892), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11513), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(10782), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(6230), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6388), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym_expression] = STATE(6751), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11151), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(10799), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -80382,7 +80417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -80397,284 +80432,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(237), }, [STATE(159)] = { - [sym_declaration] = STATE(6262), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6407), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym_expression] = STATE(6747), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10840), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(11642), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(115), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(237), - }, - [STATE(160)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(7524), - [sym__declarator] = STATE(9071), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11122), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5427), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7934), - [sym_qualified_identifier] = STATE(5371), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2234), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(7543), + [sym__declarator] = STATE(9010), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10796), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5424), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7948), + [sym_qualified_identifier] = STATE(5429), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2232), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(2242), - [anon_sym___clrcall] = ACTIONS(2242), - [anon_sym___stdcall] = ACTIONS(2242), - [anon_sym___fastcall] = ACTIONS(2242), - [anon_sym___thiscall] = ACTIONS(2242), - [anon_sym___vectorcall] = ACTIONS(2242), + [anon_sym___cdecl] = ACTIONS(2240), + [anon_sym___clrcall] = ACTIONS(2240), + [anon_sym___stdcall] = ACTIONS(2240), + [anon_sym___fastcall] = ACTIONS(2240), + [anon_sym___thiscall] = ACTIONS(2240), + [anon_sym___vectorcall] = ACTIONS(2240), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), [anon_sym_LBRACK] = ACTIONS(61), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), @@ -80690,159 +80551,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(161)] = { - [sym_declaration] = STATE(6262), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6407), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym_expression] = STATE(6747), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10840), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(10883), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(160)] = { + [sym_declaration] = STATE(6230), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6388), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym_expression] = STATE(6751), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11151), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(11714), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -80904,7 +80765,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -80918,105 +80779,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(162)] = { - [sym_declaration] = STATE(1987), - [sym_type_definition] = STATE(1987), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6418), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(1987), - [sym_expression] = STATE(6703), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10455), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(1987), - [sym_init_statement] = STATE(178), - [sym_condition_declaration] = STATE(11262), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(161)] = { + [sym_declaration] = STATE(1985), + [sym_type_definition] = STATE(1985), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6396), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(1985), + [sym_expression] = STATE(6683), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10473), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(1985), + [sym_init_statement] = STATE(177), + [sym_condition_declaration] = STATE(11639), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2089), - [anon_sym_typedef] = ACTIONS(2091), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2085), + [anon_sym_typedef] = ACTIONS(2087), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2302), + [anon_sym_using] = ACTIONS(2300), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -81078,7 +80939,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -81092,105 +80953,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, + [STATE(162)] = { + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(7543), + [sym__declarator] = STATE(9010), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11507), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5424), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7948), + [sym_qualified_identifier] = STATE(5429), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(2240), + [anon_sym___clrcall] = ACTIONS(2240), + [anon_sym___stdcall] = ACTIONS(2240), + [anon_sym___fastcall] = ACTIONS(2240), + [anon_sym___thiscall] = ACTIONS(2240), + [anon_sym___vectorcall] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(61), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, [STATE(163)] = { - [sym_declaration] = STATE(6262), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6407), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym_expression] = STATE(6747), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10840), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(10886), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(7543), + [sym__declarator] = STATE(9010), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_compound_statement] = STATE(11619), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4668), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11619), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10661), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5424), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(10685), + [sym__unary_right_fold] = STATE(10705), + [sym__binary_fold] = STATE(10706), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7948), + [sym_qualified_identifier] = STATE(5429), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(10712), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym___based] = ACTIONS(53), + [anon_sym___cdecl] = ACTIONS(2240), + [anon_sym___clrcall] = ACTIONS(2240), + [anon_sym___stdcall] = ACTIONS(2240), + [anon_sym___fastcall] = ACTIONS(2240), + [anon_sym___thiscall] = ACTIONS(2240), + [anon_sym___vectorcall] = ACTIONS(2240), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(61), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(164)] = { + [sym_declaration] = STATE(6230), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6388), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym_expression] = STATE(6751), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11151), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(10999), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -81252,7 +81461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -81266,105 +81475,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(164)] = { - [sym_declaration] = STATE(6262), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6407), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym_expression] = STATE(6747), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10840), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(11267), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(165)] = { + [sym_declaration] = STATE(6230), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6388), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym_expression] = STATE(6751), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11151), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(10962), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -81426,7 +81635,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -81440,453 +81649,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(165)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(7524), - [sym__declarator] = STATE(9071), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(11243), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4723), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(11243), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11403), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5427), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11536), - [sym__unary_right_fold] = STATE(11566), - [sym__binary_fold] = STATE(11627), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7934), - [sym_qualified_identifier] = STATE(5371), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11671), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(2242), - [anon_sym___clrcall] = ACTIONS(2242), - [anon_sym___stdcall] = ACTIONS(2242), - [anon_sym___fastcall] = ACTIONS(2242), - [anon_sym___thiscall] = ACTIONS(2242), - [anon_sym___vectorcall] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(61), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, [STATE(166)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(7524), - [sym__declarator] = STATE(9071), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10915), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5427), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7934), - [sym_qualified_identifier] = STATE(5371), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2222), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(2242), - [anon_sym___clrcall] = ACTIONS(2242), - [anon_sym___stdcall] = ACTIONS(2242), - [anon_sym___fastcall] = ACTIONS(2242), - [anon_sym___thiscall] = ACTIONS(2242), - [anon_sym___vectorcall] = ACTIONS(2242), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(61), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(167)] = { - [sym_declaration] = STATE(6262), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6407), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym_expression] = STATE(6747), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10840), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(10676), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_declaration] = STATE(6230), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6388), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym_expression] = STATE(6751), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11151), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(10902), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -81948,7 +81809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -81962,105 +81823,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(168)] = { - [sym_declaration] = STATE(6262), - [sym_type_definition] = STATE(6262), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6407), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression_statement] = STATE(6262), - [sym_expression] = STATE(6747), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10840), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_alias_declaration] = STATE(6262), - [sym__for_range_loop_body] = STATE(10805), - [sym_init_statement] = STATE(2706), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2173), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(167)] = { + [sym_declaration] = STATE(6230), + [sym_type_definition] = STATE(6230), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6388), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression_statement] = STATE(6230), + [sym_expression] = STATE(6751), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11151), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_alias_declaration] = STATE(6230), + [sym__for_range_loop_body] = STATE(10670), + [sym_init_statement] = STATE(2710), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2216), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym___extension__] = ACTIONS(2210), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2218), + [anon_sym___extension__] = ACTIONS(2208), + [anon_sym_typedef] = ACTIONS(2210), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(2214), + [anon_sym_using] = ACTIONS(2212), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82122,7 +81983,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -82136,104 +81997,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(169)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_compound_statement] = STATE(9819), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9791), - [sym_expression] = STATE(6683), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9819), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9791), - [sym_optional_parameter_declaration] = STATE(9791), - [sym_variadic_parameter_declaration] = STATE(9791), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7963), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2522), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2304), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(2308), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(168)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_compound_statement] = STATE(9966), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9683), + [sym_expression] = STATE(6644), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9966), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9683), + [sym_optional_parameter_declaration] = STATE(9683), + [sym_variadic_parameter_declaration] = STATE(9683), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7919), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2441), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_RPAREN] = ACTIONS(2306), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2125), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_LBRACE] = ACTIONS(2312), + [anon_sym_LBRACE] = ACTIONS(2310), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82257,10 +82118,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), [sym_primitive_type] = ACTIONS(73), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -82273,7 +82134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2322), + [anon_sym_typename] = ACTIONS(2320), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -82295,7 +82156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -82307,105 +82168,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), [anon_sym_LBRACK_COLON] = ACTIONS(171), - [sym_this] = ACTIONS(2324), + [sym_this] = ACTIONS(2322), }, - [STATE(170)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9862), - [sym_expression] = STATE(5271), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10386), - [sym_dependent_type] = STATE(4935), - [sym_optional_parameter_declaration] = STATE(9862), - [sym_variadic_parameter_declaration] = STATE(9862), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(10662), - [sym__unary_right_fold] = STATE(10665), - [sym__binary_fold] = STATE(10668), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7924), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(2049), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(5970), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2328), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2338), - [anon_sym_virtual] = ACTIONS(2310), + [STATE(169)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9851), + [sym_expression] = STATE(5447), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4852), + [sym_optional_parameter_declaration] = STATE(9851), + [sym_variadic_parameter_declaration] = STATE(9851), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5964), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2336), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82428,156 +82289,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(2354), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), + [sym_primitive_type] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(2352), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(2382), - [sym_this] = ACTIONS(2364), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(2380), + [sym_this] = ACTIONS(2362), }, - [STATE(171)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9862), - [sym_expression] = STATE(5306), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10386), - [sym_dependent_type] = STATE(4935), - [sym_optional_parameter_declaration] = STATE(9862), - [sym_variadic_parameter_declaration] = STATE(9862), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7924), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(2049), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(5970), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2328), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2338), - [anon_sym_virtual] = ACTIONS(2310), + [STATE(170)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9851), + [sym_expression] = STATE(5519), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4852), + [sym_optional_parameter_declaration] = STATE(9851), + [sym_variadic_parameter_declaration] = STATE(9851), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5964), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2336), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82600,156 +82461,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(2354), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), + [sym_primitive_type] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(2352), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(2382), - [sym_this] = ACTIONS(2364), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(2380), + [sym_this] = ACTIONS(2362), }, - [STATE(172)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9862), - [sym_expression] = STATE(5336), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10386), - [sym_dependent_type] = STATE(4935), - [sym_optional_parameter_declaration] = STATE(9862), - [sym_variadic_parameter_declaration] = STATE(9862), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7924), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(2049), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(5970), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2328), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2338), - [anon_sym_virtual] = ACTIONS(2310), + [STATE(171)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9851), + [sym_expression] = STATE(5441), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4852), + [sym_optional_parameter_declaration] = STATE(9851), + [sym_variadic_parameter_declaration] = STATE(9851), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(10721), + [sym__unary_right_fold] = STATE(10756), + [sym__binary_fold] = STATE(10763), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5964), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2336), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82772,156 +82633,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(2354), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), + [sym_primitive_type] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(2352), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(2382), - [sym_this] = ACTIONS(2364), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(2380), + [sym_this] = ACTIONS(2362), }, - [STATE(173)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9862), - [sym_expression] = STATE(5357), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10386), - [sym_dependent_type] = STATE(4935), - [sym_optional_parameter_declaration] = STATE(9862), - [sym_variadic_parameter_declaration] = STATE(9862), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11543), - [sym__unary_right_fold] = STATE(11546), - [sym__binary_fold] = STATE(11549), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7924), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(2049), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(5970), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2328), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2338), - [anon_sym_virtual] = ACTIONS(2310), + [STATE(172)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9851), + [sym_expression] = STATE(5300), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4852), + [sym_optional_parameter_declaration] = STATE(9851), + [sym_variadic_parameter_declaration] = STATE(9851), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(11276), + [sym__unary_right_fold] = STATE(11315), + [sym__binary_fold] = STATE(11382), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5964), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2336), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -82944,156 +82805,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(2354), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), + [sym_primitive_type] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(2352), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(2382), - [sym_this] = ACTIONS(2364), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(2380), + [sym_this] = ACTIONS(2362), }, - [STATE(174)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9862), - [sym_expression] = STATE(5366), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10386), - [sym_dependent_type] = STATE(4935), - [sym_optional_parameter_declaration] = STATE(9862), - [sym_variadic_parameter_declaration] = STATE(9862), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11218), - [sym__unary_right_fold] = STATE(11219), - [sym__binary_fold] = STATE(11220), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7924), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(2049), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(5970), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2328), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2338), - [anon_sym_virtual] = ACTIONS(2310), + [STATE(173)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9851), + [sym_expression] = STATE(5283), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4852), + [sym_optional_parameter_declaration] = STATE(9851), + [sym_variadic_parameter_declaration] = STATE(9851), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(10869), + [sym__unary_right_fold] = STATE(10874), + [sym__binary_fold] = STATE(10875), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5964), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2336), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -83116,156 +82977,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(2354), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), + [sym_primitive_type] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(2352), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(2382), - [sym_this] = ACTIONS(2364), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(2380), + [sym_this] = ACTIONS(2362), }, - [STATE(175)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9862), - [sym_expression] = STATE(5333), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10386), - [sym_dependent_type] = STATE(4935), - [sym_optional_parameter_declaration] = STATE(9862), - [sym_variadic_parameter_declaration] = STATE(9862), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(10793), - [sym__unary_right_fold] = STATE(10798), - [sym__binary_fold] = STATE(10806), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7924), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(2049), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(5970), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2328), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2338), - [anon_sym_virtual] = ACTIONS(2310), + [STATE(174)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9851), + [sym_expression] = STATE(5414), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4852), + [sym_optional_parameter_declaration] = STATE(9851), + [sym_variadic_parameter_declaration] = STATE(9851), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(10685), + [sym__unary_right_fold] = STATE(10705), + [sym__binary_fold] = STATE(10706), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5964), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2336), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -83288,156 +83149,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(2354), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), + [sym_primitive_type] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(2352), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(2382), - [sym_this] = ACTIONS(2364), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(2380), + [sym_this] = ACTIONS(2362), }, - [STATE(176)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9862), - [sym_expression] = STATE(5389), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10386), - [sym_dependent_type] = STATE(4935), - [sym_optional_parameter_declaration] = STATE(9862), - [sym_variadic_parameter_declaration] = STATE(9862), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11536), - [sym__unary_right_fold] = STATE(11566), - [sym__binary_fold] = STATE(11627), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7924), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(2049), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(5970), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2328), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2338), - [anon_sym_virtual] = ACTIONS(2310), + [STATE(175)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9851), + [sym_expression] = STATE(5319), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4852), + [sym_optional_parameter_declaration] = STATE(9851), + [sym_variadic_parameter_declaration] = STATE(9851), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(10829), + [sym__unary_right_fold] = STATE(10836), + [sym__binary_fold] = STATE(10837), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5964), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2336), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -83460,156 +83321,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(2354), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), + [sym_primitive_type] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(2352), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(2382), - [sym_this] = ACTIONS(2364), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(2380), + [sym_this] = ACTIONS(2362), }, - [STATE(177)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9862), - [sym_expression] = STATE(5317), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10386), - [sym_dependent_type] = STATE(4935), - [sym_optional_parameter_declaration] = STATE(9862), - [sym_variadic_parameter_declaration] = STATE(9862), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11055), - [sym__unary_right_fold] = STATE(11097), - [sym__binary_fold] = STATE(11101), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7924), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(2049), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(5970), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_RPAREN] = ACTIONS(2328), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2338), - [anon_sym_virtual] = ACTIONS(2310), + [STATE(176)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9851), + [sym_expression] = STATE(5337), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(4852), + [sym_optional_parameter_declaration] = STATE(9851), + [sym_variadic_parameter_declaration] = STATE(9851), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(11062), + [sym__unary_right_fold] = STATE(11066), + [sym__binary_fold] = STATE(11068), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7934), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(2045), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5964), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2336), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -83632,150 +83493,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2342), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(2354), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), + [sym_primitive_type] = ACTIONS(2340), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(2352), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(2382), - [sym_this] = ACTIONS(2364), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(2380), + [sym_this] = ACTIONS(2362), }, - [STATE(178)] = { - [sym__declaration_modifiers] = STATE(2856), + [STATE(177)] = { + [sym__declaration_modifiers] = STATE(2819), [sym__declaration_specifiers] = STATE(7512), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_expression] = STATE(6760), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11045), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4582), - [sym_template_function] = STATE(6009), - [sym_condition_declaration] = STATE(11045), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7930), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(4604), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(2142), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4626), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(2206), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_expression] = STATE(6722), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11370), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4617), + [sym_template_function] = STATE(5966), + [sym_condition_declaration] = STATE(11370), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7904), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(4570), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(2129), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4611), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2083), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2125), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -83837,7 +83698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -83851,421 +83712,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(171), [sym_this] = ACTIONS(237), }, - [STATE(179)] = { - [sym_expression] = STATE(3820), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_initializer_list] = STATE(3937), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [aux_sym_preproc_if_token2] = ACTIONS(2386), - [aux_sym_preproc_else_token1] = ACTIONS(2386), - [aux_sym_preproc_elif_token1] = ACTIONS(2384), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2386), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2388), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_STAR_EQ] = ACTIONS(2386), - [anon_sym_SLASH_EQ] = ACTIONS(2386), - [anon_sym_PERCENT_EQ] = ACTIONS(2386), - [anon_sym_PLUS_EQ] = ACTIONS(2386), - [anon_sym_DASH_EQ] = ACTIONS(2386), - [anon_sym_LT_LT_EQ] = ACTIONS(2386), - [anon_sym_GT_GT_EQ] = ACTIONS(2386), - [anon_sym_AMP_EQ] = ACTIONS(2386), - [anon_sym_CARET_EQ] = ACTIONS(2386), - [anon_sym_PIPE_EQ] = ACTIONS(2386), - [anon_sym_and_eq] = ACTIONS(2384), - [anon_sym_or_eq] = ACTIONS(2384), - [anon_sym_xor_eq] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(180)] = { - [sym_attribute_declaration] = STATE(180), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(620), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(2440), - [anon_sym_LPAREN2] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2455), - [anon_sym___extension__] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2461), - [anon_sym_COLON_COLON] = ACTIONS(2463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2472), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2481), - [anon_sym_case] = ACTIONS(2484), - [anon_sym_default] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2490), - [anon_sym_do] = ACTIONS(2493), - [anon_sym_for] = ACTIONS(2496), - [anon_sym_return] = ACTIONS(2499), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_goto] = ACTIONS(2508), - [anon_sym___try] = ACTIONS(2511), - [anon_sym___leave] = ACTIONS(2514), - [anon_sym_not] = ACTIONS(2449), - [anon_sym_compl] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2520), - [anon_sym___alignof__] = ACTIONS(2523), - [anon_sym___alignof] = ACTIONS(2523), - [anon_sym__alignof] = ACTIONS(2523), - [anon_sym_alignof] = ACTIONS(2523), - [anon_sym__Alignof] = ACTIONS(2523), - [anon_sym_offsetof] = ACTIONS(2526), - [anon_sym__Generic] = ACTIONS(2529), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_asm] = ACTIONS(2535), - [anon_sym___asm__] = ACTIONS(2535), - [anon_sym___asm] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2538), - [anon_sym_L_SQUOTE] = ACTIONS(2541), - [anon_sym_u_SQUOTE] = ACTIONS(2541), - [anon_sym_U_SQUOTE] = ACTIONS(2541), - [anon_sym_u8_SQUOTE] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_L_DQUOTE] = ACTIONS(2544), - [anon_sym_u_DQUOTE] = ACTIONS(2544), - [anon_sym_U_DQUOTE] = ACTIONS(2544), - [anon_sym_u8_DQUOTE] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [anon_sym_NULL] = ACTIONS(2550), - [anon_sym_nullptr] = ACTIONS(2550), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2553), - [anon_sym_template] = ACTIONS(2556), - [anon_sym_try] = ACTIONS(2559), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2565), - [anon_sym_co_return] = ACTIONS(2568), - [anon_sym_co_yield] = ACTIONS(2571), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2583), - [anon_sym_CARET_CARET] = ACTIONS(2586), - [anon_sym_LBRACK_COLON] = ACTIONS(2589), - [sym_this] = ACTIONS(2547), + [STATE(178)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_initializer_list] = STATE(3867), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [aux_sym_preproc_if_token2] = ACTIONS(2384), + [aux_sym_preproc_else_token1] = ACTIONS(2384), + [aux_sym_preproc_elif_token1] = ACTIONS(2382), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2384), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2386), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2382), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_STAR_EQ] = ACTIONS(2384), + [anon_sym_SLASH_EQ] = ACTIONS(2384), + [anon_sym_PERCENT_EQ] = ACTIONS(2384), + [anon_sym_PLUS_EQ] = ACTIONS(2384), + [anon_sym_DASH_EQ] = ACTIONS(2384), + [anon_sym_LT_LT_EQ] = ACTIONS(2384), + [anon_sym_GT_GT_EQ] = ACTIONS(2384), + [anon_sym_AMP_EQ] = ACTIONS(2384), + [anon_sym_CARET_EQ] = ACTIONS(2384), + [anon_sym_PIPE_EQ] = ACTIONS(2384), + [anon_sym_and_eq] = ACTIONS(2382), + [anon_sym_or_eq] = ACTIONS(2382), + [anon_sym_xor_eq] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, - [STATE(181)] = { - [sym_attribute_declaration] = STATE(180), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(620), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(2592), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(179)] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(587), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(569), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(2438), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2442), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -84278,7 +83984,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -84298,13 +84004,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -84314,113 +84020,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(182)] = { - [sym_attribute_declaration] = STATE(186), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(349), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(186), - [sym_identifier] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(180)] = { + [sym_attribute_declaration] = STATE(180), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(591), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(2450), + [anon_sym_LPAREN2] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2465), + [anon_sym___extension__] = ACTIONS(2468), + [anon_sym_using] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_switch] = ACTIONS(2491), + [anon_sym_case] = ACTIONS(2494), + [anon_sym_default] = ACTIONS(2497), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2506), + [anon_sym_return] = ACTIONS(2509), + [anon_sym_break] = ACTIONS(2512), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_goto] = ACTIONS(2518), + [anon_sym___try] = ACTIONS(2521), + [anon_sym___leave] = ACTIONS(2524), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2530), + [anon_sym___alignof__] = ACTIONS(2533), + [anon_sym___alignof] = ACTIONS(2533), + [anon_sym__alignof] = ACTIONS(2533), + [anon_sym_alignof] = ACTIONS(2533), + [anon_sym__Alignof] = ACTIONS(2533), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2545), + [anon_sym___asm__] = ACTIONS(2545), + [anon_sym___asm] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2548), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2566), + [anon_sym_try] = ACTIONS(2569), + [anon_sym_delete] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2575), + [anon_sym_co_return] = ACTIONS(2578), + [anon_sym_co_yield] = ACTIONS(2581), + [anon_sym_R_DQUOTE] = ACTIONS(2584), + [anon_sym_LR_DQUOTE] = ACTIONS(2584), + [anon_sym_uR_DQUOTE] = ACTIONS(2584), + [anon_sym_UR_DQUOTE] = ACTIONS(2584), + [anon_sym_u8R_DQUOTE] = ACTIONS(2584), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_requires] = ACTIONS(2593), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_LBRACK_COLON] = ACTIONS(2599), + [sym_this] = ACTIONS(2557), + }, + [STATE(181)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(661), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2606), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2604), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(319), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(325), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_goto] = ACTIONS(335), - [anon_sym___try] = ACTIONS(337), - [anon_sym___leave] = ACTIONS(339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -84433,7 +84294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -84453,13 +84314,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(347), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_co_return] = ACTIONS(357), - [anon_sym_co_yield] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -84469,268 +84330,733 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(182)] = { + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(661), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2606), + [anon_sym_LPAREN2] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym___extension__] = ACTIONS(2468), + [anon_sym_using] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2612), + [anon_sym_LBRACK] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2615), + [anon_sym_switch] = ACTIONS(2618), + [anon_sym_case] = ACTIONS(2621), + [anon_sym_default] = ACTIONS(2624), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2630), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2636), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2642), + [anon_sym_goto] = ACTIONS(2645), + [anon_sym___try] = ACTIONS(2648), + [anon_sym___leave] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2530), + [anon_sym___alignof__] = ACTIONS(2533), + [anon_sym___alignof] = ACTIONS(2533), + [anon_sym__alignof] = ACTIONS(2533), + [anon_sym_alignof] = ACTIONS(2533), + [anon_sym__Alignof] = ACTIONS(2533), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2545), + [anon_sym___asm__] = ACTIONS(2545), + [anon_sym___asm] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2548), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2654), + [anon_sym_try] = ACTIONS(2657), + [anon_sym_delete] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2660), + [anon_sym_co_return] = ACTIONS(2663), + [anon_sym_co_yield] = ACTIONS(2666), + [anon_sym_R_DQUOTE] = ACTIONS(2584), + [anon_sym_LR_DQUOTE] = ACTIONS(2584), + [anon_sym_uR_DQUOTE] = ACTIONS(2584), + [anon_sym_UR_DQUOTE] = ACTIONS(2584), + [anon_sym_u8R_DQUOTE] = ACTIONS(2584), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_requires] = ACTIONS(2593), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_LBRACK_COLON] = ACTIONS(2599), + [sym_this] = ACTIONS(2557), + }, [STATE(183)] = { - [sym_expression] = STATE(3820), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_initializer_list] = STATE(3937), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2610), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_STAR_EQ] = ACTIONS(2386), - [anon_sym_SLASH_EQ] = ACTIONS(2386), - [anon_sym_PERCENT_EQ] = ACTIONS(2386), - [anon_sym_PLUS_EQ] = ACTIONS(2386), - [anon_sym_DASH_EQ] = ACTIONS(2386), - [anon_sym_LT_LT_EQ] = ACTIONS(2386), - [anon_sym_GT_GT_EQ] = ACTIONS(2386), - [anon_sym_AMP_EQ] = ACTIONS(2386), - [anon_sym_CARET_EQ] = ACTIONS(2386), - [anon_sym_PIPE_EQ] = ACTIONS(2386), - [anon_sym_and_eq] = ACTIONS(2384), - [anon_sym_or_eq] = ACTIONS(2384), - [anon_sym_xor_eq] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [anon_sym_COLON_RBRACK] = ACTIONS(2386), - [sym_this] = ACTIONS(2418), + [sym_attribute_declaration] = STATE(183), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(339), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(2669), + [anon_sym_LPAREN2] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2672), + [anon_sym___extension__] = ACTIONS(2468), + [anon_sym_using] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2678), + [anon_sym_switch] = ACTIONS(2681), + [anon_sym_case] = ACTIONS(2684), + [anon_sym_default] = ACTIONS(2687), + [anon_sym_while] = ACTIONS(2690), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2696), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_break] = ACTIONS(2702), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_goto] = ACTIONS(2708), + [anon_sym___try] = ACTIONS(2711), + [anon_sym___leave] = ACTIONS(2714), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2530), + [anon_sym___alignof__] = ACTIONS(2533), + [anon_sym___alignof] = ACTIONS(2533), + [anon_sym__alignof] = ACTIONS(2533), + [anon_sym_alignof] = ACTIONS(2533), + [anon_sym__Alignof] = ACTIONS(2533), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2545), + [anon_sym___asm__] = ACTIONS(2545), + [anon_sym___asm] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2548), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2720), + [anon_sym_delete] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2723), + [anon_sym_co_return] = ACTIONS(2726), + [anon_sym_co_yield] = ACTIONS(2729), + [anon_sym_R_DQUOTE] = ACTIONS(2584), + [anon_sym_LR_DQUOTE] = ACTIONS(2584), + [anon_sym_uR_DQUOTE] = ACTIONS(2584), + [anon_sym_UR_DQUOTE] = ACTIONS(2584), + [anon_sym_u8R_DQUOTE] = ACTIONS(2584), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_requires] = ACTIONS(2593), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_LBRACK_COLON] = ACTIONS(2599), + [sym_this] = ACTIONS(2557), }, [STATE(184)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_initializer_list] = STATE(3867), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RPAREN] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2734), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2382), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_STAR_EQ] = ACTIONS(2384), + [anon_sym_SLASH_EQ] = ACTIONS(2384), + [anon_sym_PERCENT_EQ] = ACTIONS(2384), + [anon_sym_PLUS_EQ] = ACTIONS(2384), + [anon_sym_DASH_EQ] = ACTIONS(2384), + [anon_sym_LT_LT_EQ] = ACTIONS(2384), + [anon_sym_GT_GT_EQ] = ACTIONS(2384), + [anon_sym_AMP_EQ] = ACTIONS(2384), + [anon_sym_CARET_EQ] = ACTIONS(2384), + [anon_sym_PIPE_EQ] = ACTIONS(2384), + [anon_sym_and_eq] = ACTIONS(2382), + [anon_sym_or_eq] = ACTIONS(2382), + [anon_sym_xor_eq] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [anon_sym_COLON_RBRACK] = ACTIONS(2384), + [sym_this] = ACTIONS(2416), + }, + [STATE(185)] = { [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(578), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(609), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), + [sym_compound_statement] = STATE(587), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(569), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(2636), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_identifier] = ACTIONS(2760), + [anon_sym_LPAREN2] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym___extension__] = ACTIONS(2468), + [anon_sym_using] = ACTIONS(2471), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2775), + [anon_sym_default] = ACTIONS(2778), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2787), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_goto] = ACTIONS(2799), + [anon_sym___try] = ACTIONS(2802), + [anon_sym___leave] = ACTIONS(2805), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2530), + [anon_sym___alignof__] = ACTIONS(2533), + [anon_sym___alignof] = ACTIONS(2533), + [anon_sym__alignof] = ACTIONS(2533), + [anon_sym_alignof] = ACTIONS(2533), + [anon_sym__Alignof] = ACTIONS(2533), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2545), + [anon_sym___asm__] = ACTIONS(2545), + [anon_sym___asm] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2548), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2808), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2814), + [anon_sym_co_return] = ACTIONS(2817), + [anon_sym_co_yield] = ACTIONS(2820), + [anon_sym_R_DQUOTE] = ACTIONS(2584), + [anon_sym_LR_DQUOTE] = ACTIONS(2584), + [anon_sym_uR_DQUOTE] = ACTIONS(2584), + [anon_sym_UR_DQUOTE] = ACTIONS(2584), + [anon_sym_u8R_DQUOTE] = ACTIONS(2584), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_requires] = ACTIONS(2593), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_LBRACK_COLON] = ACTIONS(2599), + [sym_this] = ACTIONS(2557), + }, + [STATE(186)] = { + [sym_attribute_declaration] = STATE(180), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(591), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2638), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2825), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -84743,7 +85069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -84763,13 +85089,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -84779,578 +85105,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(185)] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(578), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(609), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(2640), - [anon_sym_LPAREN2] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2643), - [anon_sym___extension__] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2461), - [anon_sym_COLON_COLON] = ACTIONS(2463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(2472), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2649), - [anon_sym_switch] = ACTIONS(2652), - [anon_sym_case] = ACTIONS(2655), - [anon_sym_default] = ACTIONS(2658), - [anon_sym_while] = ACTIONS(2661), - [anon_sym_do] = ACTIONS(2664), - [anon_sym_for] = ACTIONS(2667), - [anon_sym_return] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2676), - [anon_sym_goto] = ACTIONS(2679), - [anon_sym___try] = ACTIONS(2682), - [anon_sym___leave] = ACTIONS(2685), - [anon_sym_not] = ACTIONS(2449), - [anon_sym_compl] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2520), - [anon_sym___alignof__] = ACTIONS(2523), - [anon_sym___alignof] = ACTIONS(2523), - [anon_sym__alignof] = ACTIONS(2523), - [anon_sym_alignof] = ACTIONS(2523), - [anon_sym__Alignof] = ACTIONS(2523), - [anon_sym_offsetof] = ACTIONS(2526), - [anon_sym__Generic] = ACTIONS(2529), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_asm] = ACTIONS(2535), - [anon_sym___asm__] = ACTIONS(2535), - [anon_sym___asm] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2538), - [anon_sym_L_SQUOTE] = ACTIONS(2541), - [anon_sym_u_SQUOTE] = ACTIONS(2541), - [anon_sym_U_SQUOTE] = ACTIONS(2541), - [anon_sym_u8_SQUOTE] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_L_DQUOTE] = ACTIONS(2544), - [anon_sym_u_DQUOTE] = ACTIONS(2544), - [anon_sym_U_DQUOTE] = ACTIONS(2544), - [anon_sym_u8_DQUOTE] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [anon_sym_NULL] = ACTIONS(2550), - [anon_sym_nullptr] = ACTIONS(2550), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2553), - [anon_sym_template] = ACTIONS(2688), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_co_return] = ACTIONS(2697), - [anon_sym_co_yield] = ACTIONS(2700), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2583), - [anon_sym_CARET_CARET] = ACTIONS(2586), - [anon_sym_LBRACK_COLON] = ACTIONS(2589), - [sym_this] = ACTIONS(2547), - }, - [STATE(186)] = { - [sym_attribute_declaration] = STATE(186), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(349), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(186), - [sym_identifier] = ACTIONS(2703), - [anon_sym_LPAREN2] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym___extension__] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2461), - [anon_sym_COLON_COLON] = ACTIONS(2463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2709), - [anon_sym_LBRACK] = ACTIONS(2472), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_switch] = ACTIONS(2715), - [anon_sym_case] = ACTIONS(2718), - [anon_sym_default] = ACTIONS(2721), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_do] = ACTIONS(2727), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2733), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2739), - [anon_sym_goto] = ACTIONS(2742), - [anon_sym___try] = ACTIONS(2745), - [anon_sym___leave] = ACTIONS(2748), - [anon_sym_not] = ACTIONS(2449), - [anon_sym_compl] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2520), - [anon_sym___alignof__] = ACTIONS(2523), - [anon_sym___alignof] = ACTIONS(2523), - [anon_sym__alignof] = ACTIONS(2523), - [anon_sym_alignof] = ACTIONS(2523), - [anon_sym__Alignof] = ACTIONS(2523), - [anon_sym_offsetof] = ACTIONS(2526), - [anon_sym__Generic] = ACTIONS(2529), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_asm] = ACTIONS(2535), - [anon_sym___asm__] = ACTIONS(2535), - [anon_sym___asm] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2538), - [anon_sym_L_SQUOTE] = ACTIONS(2541), - [anon_sym_u_SQUOTE] = ACTIONS(2541), - [anon_sym_U_SQUOTE] = ACTIONS(2541), - [anon_sym_u8_SQUOTE] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_L_DQUOTE] = ACTIONS(2544), - [anon_sym_u_DQUOTE] = ACTIONS(2544), - [anon_sym_U_DQUOTE] = ACTIONS(2544), - [anon_sym_u8_DQUOTE] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [anon_sym_NULL] = ACTIONS(2550), - [anon_sym_nullptr] = ACTIONS(2550), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2553), - [anon_sym_template] = ACTIONS(2751), - [anon_sym_try] = ACTIONS(2754), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2757), - [anon_sym_co_return] = ACTIONS(2760), - [anon_sym_co_yield] = ACTIONS(2763), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2583), - [anon_sym_CARET_CARET] = ACTIONS(2586), - [anon_sym_LBRACK_COLON] = ACTIONS(2589), - [sym_this] = ACTIONS(2547), - }, [STATE(187)] = { - [sym_attribute_declaration] = STATE(187), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(651), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(2766), - [anon_sym_LPAREN2] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2458), - [anon_sym_using] = ACTIONS(2461), - [anon_sym_COLON_COLON] = ACTIONS(2463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2472), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2775), - [anon_sym_switch] = ACTIONS(2778), - [anon_sym_case] = ACTIONS(2781), - [anon_sym_default] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2787), - [anon_sym_do] = ACTIONS(2790), - [anon_sym_for] = ACTIONS(2793), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2799), - [anon_sym_continue] = ACTIONS(2802), - [anon_sym_goto] = ACTIONS(2805), - [anon_sym___try] = ACTIONS(2808), - [anon_sym___leave] = ACTIONS(2811), - [anon_sym_not] = ACTIONS(2449), - [anon_sym_compl] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2520), - [anon_sym___alignof__] = ACTIONS(2523), - [anon_sym___alignof] = ACTIONS(2523), - [anon_sym__alignof] = ACTIONS(2523), - [anon_sym_alignof] = ACTIONS(2523), - [anon_sym__Alignof] = ACTIONS(2523), - [anon_sym_offsetof] = ACTIONS(2526), - [anon_sym__Generic] = ACTIONS(2529), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_asm] = ACTIONS(2535), - [anon_sym___asm__] = ACTIONS(2535), - [anon_sym___asm] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2538), - [anon_sym_L_SQUOTE] = ACTIONS(2541), - [anon_sym_u_SQUOTE] = ACTIONS(2541), - [anon_sym_U_SQUOTE] = ACTIONS(2541), - [anon_sym_u8_SQUOTE] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_L_DQUOTE] = ACTIONS(2544), - [anon_sym_u_DQUOTE] = ACTIONS(2544), - [anon_sym_U_DQUOTE] = ACTIONS(2544), - [anon_sym_u8_DQUOTE] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [anon_sym_NULL] = ACTIONS(2550), - [anon_sym_nullptr] = ACTIONS(2550), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2553), - [anon_sym_template] = ACTIONS(2814), - [anon_sym_try] = ACTIONS(2817), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2820), - [anon_sym_co_return] = ACTIONS(2823), - [anon_sym_co_yield] = ACTIONS(2826), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2583), - [anon_sym_CARET_CARET] = ACTIONS(2586), - [anon_sym_LBRACK_COLON] = ACTIONS(2589), - [sym_this] = ACTIONS(2547), - }, - [STATE(188)] = { - [sym_attribute_declaration] = STATE(187), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(651), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_declaration] = STATE(183), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(339), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_using] = ACTIONS(2831), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_using] = ACTIONS(2829), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -85363,7 +85224,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -85383,13 +85244,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_try] = ACTIONS(245), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -85399,112 +85260,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(189)] = { - [sym_attribute_declaration] = STATE(214), - [sym_compound_statement] = STATE(578), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(559), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(2636), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(188)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(11135), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), + [anon_sym_for] = ACTIONS(2135), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(2137), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -85517,7 +85378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -85537,8 +85398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -85553,112 +85414,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(190)] = { - [sym_attribute_declaration] = STATE(215), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(616), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(2592), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(189)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(1256), + [sym_attributed_statement] = STATE(1256), + [sym_statement] = STATE(1220), + [sym_labeled_statement] = STATE(1256), + [sym_expression_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym_case_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_break_statement] = STATE(1256), + [sym_continue_statement] = STATE(1256), + [sym_goto_statement] = STATE(1256), + [sym_seh_try_statement] = STATE(1256), + [sym_seh_leave_statement] = STATE(1256), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(1256), + [sym_co_return_statement] = STATE(1256), + [sym_co_yield_statement] = STATE(1256), + [sym_throw_statement] = STATE(1256), + [sym_try_statement] = STATE(1256), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(1256), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -85671,7 +85532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -85691,13 +85552,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -85707,112 +85568,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(190)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_initializer_list] = STATE(3867), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2382), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym___attribute__] = ACTIONS(2382), + [anon_sym___attribute] = ACTIONS(2382), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_STAR_EQ] = ACTIONS(2384), + [anon_sym_SLASH_EQ] = ACTIONS(2384), + [anon_sym_PERCENT_EQ] = ACTIONS(2384), + [anon_sym_PLUS_EQ] = ACTIONS(2384), + [anon_sym_DASH_EQ] = ACTIONS(2384), + [anon_sym_LT_LT_EQ] = ACTIONS(2384), + [anon_sym_GT_GT_EQ] = ACTIONS(2384), + [anon_sym_AMP_EQ] = ACTIONS(2384), + [anon_sym_CARET_EQ] = ACTIONS(2384), + [anon_sym_PIPE_EQ] = ACTIONS(2384), + [anon_sym_and_eq] = ACTIONS(2382), + [anon_sym_or_eq] = ACTIONS(2382), + [anon_sym_xor_eq] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, [STATE(191)] = { - [sym_attribute_declaration] = STATE(215), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(619), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(2592), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(1256), + [sym_attributed_statement] = STATE(1256), + [sym_statement] = STATE(1228), + [sym_labeled_statement] = STATE(1256), + [sym_expression_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym_case_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_break_statement] = STATE(1256), + [sym_continue_statement] = STATE(1256), + [sym_goto_statement] = STATE(1256), + [sym_seh_try_statement] = STATE(1256), + [sym_seh_leave_statement] = STATE(1256), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(1256), + [sym_co_return_statement] = STATE(1256), + [sym_co_yield_statement] = STATE(1256), + [sym_throw_statement] = STATE(1256), + [sym_try_statement] = STATE(1256), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(1256), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -85825,7 +85840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -85845,13 +85860,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -85861,112 +85876,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(192)] = { - [sym_attribute_declaration] = STATE(215), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(624), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(2592), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_declaration] = STATE(219), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(569), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2137), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -85979,7 +85994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -85999,13 +86014,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -86015,99 +86030,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(193)] = { - [sym_attribute_declaration] = STATE(186), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(349), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(186), - [sym_identifier] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_declaration] = STATE(183), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(339), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(183), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_if] = ACTIONS(315), [anon_sym_switch] = ACTIONS(317), [anon_sym_case] = ACTIONS(319), @@ -86133,7 +86148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86153,8 +86168,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1670), [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(349), @@ -86169,112 +86184,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(194)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(565), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(294), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -86287,7 +86302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86307,13 +86322,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -86323,112 +86338,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(195)] = { - [sym_attribute_declaration] = STATE(222), - [sym_compound_statement] = STATE(1232), - [sym_attributed_statement] = STATE(1232), - [sym_statement] = STATE(1205), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym_seh_try_statement] = STATE(1232), - [sym_seh_leave_statement] = STATE(1232), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(1232), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(363), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -86441,7 +86456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86461,13 +86476,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -86477,112 +86492,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(196)] = { - [sym_attribute_declaration] = STATE(222), - [sym_compound_statement] = STATE(1232), - [sym_attributed_statement] = STATE(1232), - [sym_statement] = STATE(1244), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym_seh_try_statement] = STATE(1232), - [sym_seh_leave_statement] = STATE(1232), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(1232), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_declaration] = STATE(182), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(661), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(182), + [sym_identifier] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -86595,7 +86610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86615,13 +86630,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -86631,112 +86646,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(197)] = { - [sym_attribute_declaration] = STATE(214), - [sym_compound_statement] = STATE(578), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(565), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(2636), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_declaration] = STATE(226), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(550), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -86749,7 +86764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86769,13 +86784,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -86785,112 +86800,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(198)] = { - [sym_attribute_declaration] = STATE(214), - [sym_compound_statement] = STATE(578), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(566), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(2636), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(615), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -86903,7 +86918,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -86923,13 +86938,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -86939,420 +86954,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(199)] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(1232), - [sym_attributed_statement] = STATE(1232), - [sym_statement] = STATE(1246), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym_seh_try_statement] = STATE(1232), - [sym_seh_leave_statement] = STATE(1232), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(1232), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2837), - [anon_sym_LPAREN2] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym___extension__] = ACTIONS(2458), - [anon_sym_COLON_COLON] = ACTIONS(2463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2843), - [anon_sym_LBRACK] = ACTIONS(2472), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2846), - [anon_sym_switch] = ACTIONS(2849), - [anon_sym_case] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2855), - [anon_sym_while] = ACTIONS(2858), - [anon_sym_do] = ACTIONS(2861), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2867), - [anon_sym_break] = ACTIONS(2870), - [anon_sym_continue] = ACTIONS(2873), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym___try] = ACTIONS(2879), - [anon_sym___leave] = ACTIONS(2882), - [anon_sym_not] = ACTIONS(2449), - [anon_sym_compl] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2520), - [anon_sym___alignof__] = ACTIONS(2523), - [anon_sym___alignof] = ACTIONS(2523), - [anon_sym__alignof] = ACTIONS(2523), - [anon_sym_alignof] = ACTIONS(2523), - [anon_sym__Alignof] = ACTIONS(2523), - [anon_sym_offsetof] = ACTIONS(2526), - [anon_sym__Generic] = ACTIONS(2529), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_asm] = ACTIONS(2535), - [anon_sym___asm__] = ACTIONS(2535), - [anon_sym___asm] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2538), - [anon_sym_L_SQUOTE] = ACTIONS(2541), - [anon_sym_u_SQUOTE] = ACTIONS(2541), - [anon_sym_U_SQUOTE] = ACTIONS(2541), - [anon_sym_u8_SQUOTE] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_L_DQUOTE] = ACTIONS(2544), - [anon_sym_u_DQUOTE] = ACTIONS(2544), - [anon_sym_U_DQUOTE] = ACTIONS(2544), - [anon_sym_u8_DQUOTE] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [anon_sym_NULL] = ACTIONS(2550), - [anon_sym_nullptr] = ACTIONS(2550), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2553), - [anon_sym_template] = ACTIONS(2885), - [anon_sym_try] = ACTIONS(2888), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2891), - [anon_sym_co_return] = ACTIONS(2894), - [anon_sym_co_yield] = ACTIONS(2897), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2583), - [anon_sym_CARET_CARET] = ACTIONS(2586), - [anon_sym_LBRACK_COLON] = ACTIONS(2589), - [sym_this] = ACTIONS(2547), - }, - [STATE(200)] = { - [sym_attribute_declaration] = STATE(215), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(530), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(2592), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1151), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(201)] = { - [sym_attribute_declaration] = STATE(222), - [sym_compound_statement] = STATE(1232), - [sym_attributed_statement] = STATE(1232), - [sym_statement] = STATE(1198), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym_seh_try_statement] = STATE(1232), - [sym_seh_leave_statement] = STATE(1232), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(1232), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_attribute_declaration] = STATE(226), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(647), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -87365,7 +87072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -87385,13 +87092,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -87401,112 +87108,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(202)] = { - [sym_attribute_declaration] = STATE(215), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(569), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(2592), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(200)] = { + [sym_attribute_declaration] = STATE(238), + [sym_compound_statement] = STATE(587), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(556), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2438), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -87519,7 +87226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -87539,13 +87246,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -87555,99 +87262,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(203)] = { - [sym_attribute_declaration] = STATE(214), - [sym_compound_statement] = STATE(578), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(548), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(2636), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(201)] = { + [sym_attribute_declaration] = STATE(238), + [sym_compound_statement] = STATE(587), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(572), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2438), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_if] = ACTIONS(83), [anon_sym_switch] = ACTIONS(85), [anon_sym_case] = ACTIONS(87), @@ -87659,8 +87366,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -87673,7 +87380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -87693,8 +87400,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2010), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -87709,112 +87416,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(204)] = { - [sym_attribute_declaration] = STATE(222), - [sym_compound_statement] = STATE(1232), - [sym_attributed_statement] = STATE(1232), - [sym_statement] = STATE(1260), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym_seh_try_statement] = STATE(1232), - [sym_seh_leave_statement] = STATE(1232), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(1232), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(202)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(1256), + [sym_attributed_statement] = STATE(1256), + [sym_statement] = STATE(1205), + [sym_labeled_statement] = STATE(1256), + [sym_expression_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym_case_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_break_statement] = STATE(1256), + [sym_continue_statement] = STATE(1256), + [sym_goto_statement] = STATE(1256), + [sym_seh_try_statement] = STATE(1256), + [sym_seh_leave_statement] = STATE(1256), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(1256), + [sym_co_return_statement] = STATE(1256), + [sym_co_yield_statement] = STATE(1256), + [sym_throw_statement] = STATE(1256), + [sym_try_statement] = STATE(1256), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(1256), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -87827,7 +87534,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -87847,13 +87554,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -87863,112 +87570,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(205)] = { - [sym_attribute_declaration] = STATE(222), - [sym_compound_statement] = STATE(1232), - [sym_attributed_statement] = STATE(1232), - [sym_statement] = STATE(1264), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym_seh_try_statement] = STATE(1232), - [sym_seh_leave_statement] = STATE(1232), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(1232), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(203)] = { + [sym_attribute_declaration] = STATE(226), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(536), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -87981,7 +87688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -88001,13 +87708,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -88017,112 +87724,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(206)] = { - [sym_attribute_declaration] = STATE(222), - [sym_compound_statement] = STATE(1232), - [sym_attributed_statement] = STATE(1232), - [sym_statement] = STATE(1256), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym_seh_try_statement] = STATE(1232), - [sym_seh_leave_statement] = STATE(1232), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(1232), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(204)] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(761), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -88135,7 +87842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -88155,13 +87862,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -88171,99 +87878,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(207)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(611), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(205)] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(648), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_if] = ACTIONS(207), [anon_sym_switch] = ACTIONS(209), [anon_sym_case] = ACTIONS(211), @@ -88289,7 +87996,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -88309,8 +88016,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2018), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2016), [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(247), @@ -88325,112 +88032,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(208)] = { - [sym_attribute_declaration] = STATE(222), - [sym_compound_statement] = STATE(1232), - [sym_attributed_statement] = STATE(1232), - [sym_statement] = STATE(1222), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym_seh_try_statement] = STATE(1232), - [sym_seh_leave_statement] = STATE(1232), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(1232), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(206)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(296), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -88443,7 +88150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -88463,13 +88170,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -88479,265 +88186,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(209)] = { - [sym_expression] = STATE(3820), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_initializer_list] = STATE(3937), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym___attribute__] = ACTIONS(2384), - [anon_sym___attribute] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_STAR_EQ] = ACTIONS(2386), - [anon_sym_SLASH_EQ] = ACTIONS(2386), - [anon_sym_PERCENT_EQ] = ACTIONS(2386), - [anon_sym_PLUS_EQ] = ACTIONS(2386), - [anon_sym_DASH_EQ] = ACTIONS(2386), - [anon_sym_LT_LT_EQ] = ACTIONS(2386), - [anon_sym_GT_GT_EQ] = ACTIONS(2386), - [anon_sym_AMP_EQ] = ACTIONS(2386), - [anon_sym_CARET_EQ] = ACTIONS(2386), - [anon_sym_PIPE_EQ] = ACTIONS(2386), - [anon_sym_and_eq] = ACTIONS(2384), - [anon_sym_or_eq] = ACTIONS(2384), - [anon_sym_xor_eq] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(210)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(566), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(207)] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(764), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -88751,7 +88304,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -88771,167 +88324,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(145), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(211)] = { - [sym_attribute_declaration] = STATE(214), - [sym_compound_statement] = STATE(578), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(524), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(2636), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -88941,99 +88340,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(212)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(674), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(208)] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(690), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_if] = ACTIONS(207), [anon_sym_switch] = ACTIONS(209), [anon_sym_case] = ACTIONS(211), @@ -89059,7 +88458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89079,8 +88478,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2018), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2016), [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(247), @@ -89095,112 +88494,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(213)] = { - [sym_attribute_declaration] = STATE(215), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(606), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(2592), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(209)] = { + [sym_attribute_declaration] = STATE(238), + [sym_compound_statement] = STATE(587), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(559), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2438), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -89213,7 +88612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89233,13 +88632,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -89249,99 +88648,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(214)] = { - [sym_attribute_declaration] = STATE(185), - [sym_compound_statement] = STATE(578), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(609), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(185), - [sym_identifier] = ACTIONS(2636), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(210)] = { + [sym_attribute_declaration] = STATE(238), + [sym_compound_statement] = STATE(587), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(560), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2438), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_if] = ACTIONS(83), [anon_sym_switch] = ACTIONS(85), [anon_sym_case] = ACTIONS(87), @@ -89353,8 +88752,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -89367,7 +88766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89387,8 +88786,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2010), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -89403,112 +88802,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(215)] = { - [sym_attribute_declaration] = STATE(180), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(620), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(2592), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(211)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(326), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -89521,7 +88920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89541,13 +88940,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -89557,112 +88956,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(216)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(596), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), + [STATE(212)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(1256), + [sym_attributed_statement] = STATE(1256), + [sym_statement] = STATE(1263), + [sym_labeled_statement] = STATE(1256), + [sym_expression_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym_case_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_break_statement] = STATE(1256), + [sym_continue_statement] = STATE(1256), + [sym_goto_statement] = STATE(1256), + [sym_seh_try_statement] = STATE(1256), + [sym_seh_leave_statement] = STATE(1256), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(1256), + [sym_co_return_statement] = STATE(1256), + [sym_co_yield_statement] = STATE(1256), + [sym_throw_statement] = STATE(1256), + [sym_try_statement] = STATE(1256), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(1256), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(214), [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -89675,7 +89074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89695,13 +89094,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -89711,99 +89110,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(217)] = { + [STATE(213)] = { [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(312), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(329), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_if] = ACTIONS(315), [anon_sym_switch] = ACTIONS(317), [anon_sym_case] = ACTIONS(319), @@ -89829,7 +89228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -89849,8 +89248,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1670), [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(349), @@ -89865,112 +89264,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(218)] = { - [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(352), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(214)] = { + [sym_attribute_declaration] = STATE(234), + [sym_compound_statement] = STATE(1256), + [sym_attributed_statement] = STATE(1256), + [sym_statement] = STATE(1262), + [sym_labeled_statement] = STATE(1256), + [sym_expression_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym_case_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_break_statement] = STATE(1256), + [sym_continue_statement] = STATE(1256), + [sym_goto_statement] = STATE(1256), + [sym_seh_try_statement] = STATE(1256), + [sym_seh_leave_statement] = STATE(1256), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(1256), + [sym_co_return_statement] = STATE(1256), + [sym_co_yield_statement] = STATE(1256), + [sym_throw_statement] = STATE(1256), + [sym_try_statement] = STATE(1256), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(1256), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(234), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(319), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(325), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_goto] = ACTIONS(335), - [anon_sym___try] = ACTIONS(337), - [anon_sym___leave] = ACTIONS(339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -89983,7 +89382,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90003,13 +89402,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(347), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_co_return] = ACTIONS(357), - [anon_sym_co_yield] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -90019,112 +89418,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(219)] = { - [sym_attribute_declaration] = STATE(187), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(651), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(187), - [sym_identifier] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(215)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(336), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -90137,7 +89536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90157,13 +89556,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_try] = ACTIONS(245), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -90173,111 +89572,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(220)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(627), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(216)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(10129), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2135), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2137), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -90291,7 +89690,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90311,8 +89710,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -90327,111 +89726,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(221)] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(609), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(217)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(602), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2135), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2137), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -90445,7 +89844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90465,8 +89864,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -90481,265 +89880,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(222)] = { - [sym_attribute_declaration] = STATE(199), - [sym_compound_statement] = STATE(1232), - [sym_attributed_statement] = STATE(1232), - [sym_statement] = STATE(1246), - [sym_labeled_statement] = STATE(1232), - [sym_expression_statement] = STATE(1232), - [sym_if_statement] = STATE(1232), - [sym_switch_statement] = STATE(1232), - [sym_case_statement] = STATE(1232), - [sym_while_statement] = STATE(1232), - [sym_do_statement] = STATE(1232), - [sym_for_statement] = STATE(1232), - [sym_return_statement] = STATE(1232), - [sym_break_statement] = STATE(1232), - [sym_continue_statement] = STATE(1232), - [sym_goto_statement] = STATE(1232), - [sym_seh_try_statement] = STATE(1232), - [sym_seh_leave_statement] = STATE(1232), - [sym_expression] = STATE(6880), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11567), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(1232), - [sym_co_return_statement] = STATE(1232), - [sym_co_yield_statement] = STATE(1232), - [sym_throw_statement] = STATE(1232), - [sym_try_statement] = STATE(1232), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(1232), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(2835), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_switch] = ACTIONS(2097), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2099), - [anon_sym_do] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2103), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2107), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_goto] = ACTIONS(2111), - [anon_sym___try] = ACTIONS(2113), - [anon_sym___leave] = ACTIONS(2115), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2119), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(2121), - [anon_sym_co_return] = ACTIONS(2123), - [anon_sym_co_yield] = ACTIONS(2125), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(223)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(11373), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(218)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(10922), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2135), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2137), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -90753,7 +89998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90773,8 +90018,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -90789,111 +90034,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(224)] = { + [STATE(219)] = { [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(635), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(569), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_identifier] = ACTIONS(2861), + [anon_sym_LPAREN2] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym___extension__] = ACTIONS(2468), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2766), + [anon_sym_LBRACK] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2864), + [anon_sym_switch] = ACTIONS(2772), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2870), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_do] = ACTIONS(2784), + [anon_sym_for] = ACTIONS(2876), + [anon_sym_return] = ACTIONS(2790), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2796), + [anon_sym_goto] = ACTIONS(2799), + [anon_sym___try] = ACTIONS(2879), + [anon_sym___leave] = ACTIONS(2651), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2530), + [anon_sym___alignof__] = ACTIONS(2533), + [anon_sym___alignof] = ACTIONS(2533), + [anon_sym__alignof] = ACTIONS(2533), + [anon_sym_alignof] = ACTIONS(2533), + [anon_sym__Alignof] = ACTIONS(2533), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2545), + [anon_sym___asm__] = ACTIONS(2545), + [anon_sym___asm] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2548), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2882), + [anon_sym_try] = ACTIONS(2811), + [anon_sym_delete] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2814), + [anon_sym_co_return] = ACTIONS(2817), + [anon_sym_co_yield] = ACTIONS(2820), + [anon_sym_R_DQUOTE] = ACTIONS(2584), + [anon_sym_LR_DQUOTE] = ACTIONS(2584), + [anon_sym_uR_DQUOTE] = ACTIONS(2584), + [anon_sym_UR_DQUOTE] = ACTIONS(2584), + [anon_sym_u8R_DQUOTE] = ACTIONS(2584), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_requires] = ACTIONS(2593), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_LBRACK_COLON] = ACTIONS(2599), + [sym_this] = ACTIONS(2557), + }, + [STATE(220)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(9690), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2137), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -90907,7 +90306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -90927,13 +90326,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_try] = ACTIONS(245), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -90943,111 +90342,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(225)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(757), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(221)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(556), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2137), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -91061,7 +90460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91081,13 +90480,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_try] = ACTIONS(245), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -91097,112 +90496,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(226)] = { - [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(317), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(222)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(559), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(319), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(325), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_goto] = ACTIONS(335), - [anon_sym___try] = ACTIONS(337), - [anon_sym___leave] = ACTIONS(339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2137), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -91215,7 +90614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91235,13 +90634,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(347), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_co_return] = ACTIONS(357), - [anon_sym_co_yield] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -91251,112 +90650,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(227)] = { - [sym_attribute_declaration] = STATE(214), - [sym_compound_statement] = STATE(578), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(596), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(2636), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(223)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(560), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(83), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), + [anon_sym_for] = ACTIONS(2135), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym___try] = ACTIONS(2137), + [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -91369,7 +90768,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91389,8 +90788,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -91405,111 +90804,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(228)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(759), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(224)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(572), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(2137), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -91523,7 +90922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91543,13 +90942,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_try] = ACTIONS(245), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -91559,112 +90958,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(229)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(760), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(225)] = { + [sym_attribute_declaration] = STATE(238), + [sym_compound_statement] = STATE(587), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(526), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2438), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -91677,7 +91076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91697,13 +91096,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_try] = ACTIONS(245), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -91713,112 +91112,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(230)] = { - [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(374), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(226)] = { + [sym_attribute_declaration] = STATE(180), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(591), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(180), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(319), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(325), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_goto] = ACTIONS(335), - [anon_sym___try] = ACTIONS(337), - [anon_sym___leave] = ACTIONS(339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -91831,7 +91230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -91851,13 +91250,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(347), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_co_return] = ACTIONS(357), - [anon_sym_co_yield] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -91867,112 +91266,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(231)] = { - [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(376), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(227)] = { + [sym_attribute_declaration] = STATE(238), + [sym_compound_statement] = STATE(587), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(602), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2438), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(319), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(325), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_goto] = ACTIONS(335), - [anon_sym___try] = ACTIONS(337), - [anon_sym___leave] = ACTIONS(339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(83), + [anon_sym_switch] = ACTIONS(85), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_for] = ACTIONS(95), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_goto] = ACTIONS(103), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -91985,7 +91384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92005,13 +91404,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(347), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_co_return] = ACTIONS(357), - [anon_sym_co_yield] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(149), + [anon_sym_co_return] = ACTIONS(157), + [anon_sym_co_yield] = ACTIONS(159), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -92021,112 +91420,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(232)] = { - [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(377), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(228)] = { + [sym_attribute_declaration] = STATE(226), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(644), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(319), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(325), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_goto] = ACTIONS(335), - [anon_sym___try] = ACTIONS(337), - [anon_sym___leave] = ACTIONS(339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -92139,7 +91538,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92159,13 +91558,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(347), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_co_return] = ACTIONS(357), - [anon_sym_co_yield] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -92175,112 +91574,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(233)] = { - [sym_attribute_declaration] = STATE(219), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(765), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(219), - [sym_identifier] = ACTIONS(2829), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(229)] = { + [sym_attribute_declaration] = STATE(226), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(646), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(207), - [anon_sym_switch] = ACTIONS(209), - [anon_sym_case] = ACTIONS(211), - [anon_sym_default] = ACTIONS(213), - [anon_sym_while] = ACTIONS(215), - [anon_sym_do] = ACTIONS(217), - [anon_sym_for] = ACTIONS(219), - [anon_sym_return] = ACTIONS(221), - [anon_sym_break] = ACTIONS(223), - [anon_sym_continue] = ACTIONS(225), - [anon_sym_goto] = ACTIONS(227), - [anon_sym___try] = ACTIONS(229), - [anon_sym___leave] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -92293,7 +91692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92313,13 +91712,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2018), - [anon_sym_try] = ACTIONS(245), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(247), - [anon_sym_co_return] = ACTIONS(255), - [anon_sym_co_yield] = ACTIONS(257), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -92329,112 +91728,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(234)] = { - [sym_attribute_declaration] = STATE(193), - [sym_compound_statement] = STATE(339), - [sym_attributed_statement] = STATE(339), - [sym_statement] = STATE(384), - [sym_labeled_statement] = STATE(339), - [sym_expression_statement] = STATE(339), - [sym_if_statement] = STATE(339), - [sym_switch_statement] = STATE(339), - [sym_case_statement] = STATE(339), - [sym_while_statement] = STATE(339), - [sym_do_statement] = STATE(339), - [sym_for_statement] = STATE(339), - [sym_return_statement] = STATE(339), - [sym_break_statement] = STATE(339), - [sym_continue_statement] = STATE(339), - [sym_goto_statement] = STATE(339), - [sym_seh_try_statement] = STATE(339), - [sym_seh_leave_statement] = STATE(339), - [sym_expression] = STATE(6898), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10727), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(339), - [sym_co_return_statement] = STATE(339), - [sym_co_yield_statement] = STATE(339), - [sym_throw_statement] = STATE(339), - [sym_try_statement] = STATE(339), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(339), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(2604), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(230)] = { + [sym_attribute_declaration] = STATE(226), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(590), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(299), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(315), - [anon_sym_switch] = ACTIONS(317), - [anon_sym_case] = ACTIONS(319), - [anon_sym_default] = ACTIONS(321), - [anon_sym_while] = ACTIONS(323), - [anon_sym_do] = ACTIONS(325), - [anon_sym_for] = ACTIONS(327), - [anon_sym_return] = ACTIONS(329), - [anon_sym_break] = ACTIONS(331), - [anon_sym_continue] = ACTIONS(333), - [anon_sym_goto] = ACTIONS(335), - [anon_sym___try] = ACTIONS(337), - [anon_sym___leave] = ACTIONS(339), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -92447,7 +91846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92467,13 +91866,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1672), - [anon_sym_try] = ACTIONS(347), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(349), - [anon_sym_co_return] = ACTIONS(357), - [anon_sym_co_yield] = ACTIONS(359), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -92483,111 +91882,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(235)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(9669), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(231)] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(604), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -92601,7 +92000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92621,13 +92020,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -92637,112 +92036,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(236)] = { - [sym_attribute_declaration] = STATE(215), - [sym_compound_statement] = STATE(637), - [sym_attributed_statement] = STATE(637), - [sym_statement] = STATE(543), - [sym_labeled_statement] = STATE(637), - [sym_expression_statement] = STATE(637), - [sym_if_statement] = STATE(637), - [sym_switch_statement] = STATE(637), - [sym_case_statement] = STATE(637), - [sym_while_statement] = STATE(637), - [sym_do_statement] = STATE(637), - [sym_for_statement] = STATE(637), - [sym_return_statement] = STATE(637), - [sym_break_statement] = STATE(637), - [sym_continue_statement] = STATE(637), - [sym_goto_statement] = STATE(637), - [sym_seh_try_statement] = STATE(637), - [sym_seh_leave_statement] = STATE(637), - [sym_expression] = STATE(6804), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11583), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(637), - [sym_co_return_statement] = STATE(637), - [sym_co_yield_statement] = STATE(637), - [sym_throw_statement] = STATE(637), - [sym_try_statement] = STATE(637), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(637), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(215), - [sym_identifier] = ACTIONS(2592), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(232)] = { + [sym_attribute_declaration] = STATE(226), + [sym_compound_statement] = STATE(571), + [sym_attributed_statement] = STATE(571), + [sym_statement] = STATE(603), + [sym_labeled_statement] = STATE(571), + [sym_expression_statement] = STATE(571), + [sym_if_statement] = STATE(571), + [sym_switch_statement] = STATE(571), + [sym_case_statement] = STATE(571), + [sym_while_statement] = STATE(571), + [sym_do_statement] = STATE(571), + [sym_for_statement] = STATE(571), + [sym_return_statement] = STATE(571), + [sym_break_statement] = STATE(571), + [sym_continue_statement] = STATE(571), + [sym_goto_statement] = STATE(571), + [sym_seh_try_statement] = STATE(571), + [sym_seh_leave_statement] = STATE(571), + [sym_expression] = STATE(6768), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10896), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(571), + [sym_co_return_statement] = STATE(571), + [sym_co_yield_statement] = STATE(571), + [sym_throw_statement] = STATE(571), + [sym_try_statement] = STATE(571), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(571), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(2823), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1103), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(992), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1113), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_switch] = ACTIONS(1121), - [anon_sym_case] = ACTIONS(1123), - [anon_sym_default] = ACTIONS(1125), - [anon_sym_while] = ACTIONS(1127), - [anon_sym_do] = ACTIONS(1129), - [anon_sym_for] = ACTIONS(1131), - [anon_sym_return] = ACTIONS(1133), - [anon_sym_break] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1137), - [anon_sym_goto] = ACTIONS(1139), - [anon_sym___try] = ACTIONS(1141), - [anon_sym___leave] = ACTIONS(1143), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(1008), + [anon_sym_switch] = ACTIONS(1010), + [anon_sym_case] = ACTIONS(1012), + [anon_sym_default] = ACTIONS(1014), + [anon_sym_while] = ACTIONS(1016), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1020), + [anon_sym_return] = ACTIONS(1022), + [anon_sym_break] = ACTIONS(1024), + [anon_sym_continue] = ACTIONS(1026), + [anon_sym_goto] = ACTIONS(1028), + [anon_sym___try] = ACTIONS(1030), + [anon_sym___leave] = ACTIONS(1032), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -92755,7 +92154,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92775,13 +92174,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1151), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1040), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(1153), - [anon_sym_co_return] = ACTIONS(1161), - [anon_sym_co_yield] = ACTIONS(1163), + [anon_sym_throw] = ACTIONS(1042), + [anon_sym_co_return] = ACTIONS(1050), + [anon_sym_co_yield] = ACTIONS(1052), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -92791,112 +92190,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(237)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(559), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(233)] = { + [sym_attribute_declaration] = STATE(238), + [sym_compound_statement] = STATE(587), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(525), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(238), + [sym_identifier] = ACTIONS(2438), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(83), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(95), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), - [anon_sym___leave] = ACTIONS(231), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -92909,7 +92308,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -92929,8 +92328,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2010), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -92945,265 +92344,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(238)] = { - [sym_attribute_declaration] = STATE(238), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(609), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(238), - [sym_identifier] = ACTIONS(2926), - [anon_sym_LPAREN2] = ACTIONS(2443), - [anon_sym_BANG] = ACTIONS(2446), - [anon_sym_TILDE] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2449), - [anon_sym_PLUS] = ACTIONS(2449), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_SEMI] = ACTIONS(2769), - [anon_sym___extension__] = ACTIONS(2458), - [anon_sym_COLON_COLON] = ACTIONS(2463), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2466), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(2472), - [sym_primitive_type] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2929), - [anon_sym_switch] = ACTIONS(2652), - [anon_sym_case] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2855), - [anon_sym_while] = ACTIONS(2932), - [anon_sym_do] = ACTIONS(2664), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2670), - [anon_sym_break] = ACTIONS(2673), - [anon_sym_continue] = ACTIONS(2676), - [anon_sym_goto] = ACTIONS(2679), - [anon_sym___try] = ACTIONS(2938), - [anon_sym___leave] = ACTIONS(2811), - [anon_sym_not] = ACTIONS(2449), - [anon_sym_compl] = ACTIONS(2449), - [anon_sym_DASH_DASH] = ACTIONS(2517), - [anon_sym_PLUS_PLUS] = ACTIONS(2517), - [anon_sym_sizeof] = ACTIONS(2520), - [anon_sym___alignof__] = ACTIONS(2523), - [anon_sym___alignof] = ACTIONS(2523), - [anon_sym__alignof] = ACTIONS(2523), - [anon_sym_alignof] = ACTIONS(2523), - [anon_sym__Alignof] = ACTIONS(2523), - [anon_sym_offsetof] = ACTIONS(2526), - [anon_sym__Generic] = ACTIONS(2529), - [anon_sym_typename] = ACTIONS(2532), - [anon_sym_asm] = ACTIONS(2535), - [anon_sym___asm__] = ACTIONS(2535), - [anon_sym___asm] = ACTIONS(2535), - [sym_number_literal] = ACTIONS(2538), - [anon_sym_L_SQUOTE] = ACTIONS(2541), - [anon_sym_u_SQUOTE] = ACTIONS(2541), - [anon_sym_U_SQUOTE] = ACTIONS(2541), - [anon_sym_u8_SQUOTE] = ACTIONS(2541), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_L_DQUOTE] = ACTIONS(2544), - [anon_sym_u_DQUOTE] = ACTIONS(2544), - [anon_sym_U_DQUOTE] = ACTIONS(2544), - [anon_sym_u8_DQUOTE] = ACTIONS(2544), - [anon_sym_DQUOTE] = ACTIONS(2544), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [anon_sym_NULL] = ACTIONS(2550), - [anon_sym_nullptr] = ACTIONS(2550), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2553), - [anon_sym_template] = ACTIONS(2941), - [anon_sym_try] = ACTIONS(2691), - [anon_sym_delete] = ACTIONS(2562), - [anon_sym_throw] = ACTIONS(2694), - [anon_sym_co_return] = ACTIONS(2697), - [anon_sym_co_yield] = ACTIONS(2700), - [anon_sym_R_DQUOTE] = ACTIONS(2574), - [anon_sym_LR_DQUOTE] = ACTIONS(2574), - [anon_sym_uR_DQUOTE] = ACTIONS(2574), - [anon_sym_UR_DQUOTE] = ACTIONS(2574), - [anon_sym_u8R_DQUOTE] = ACTIONS(2574), - [anon_sym_co_await] = ACTIONS(2577), - [anon_sym_new] = ACTIONS(2580), - [anon_sym_requires] = ACTIONS(2583), - [anon_sym_CARET_CARET] = ACTIONS(2586), - [anon_sym_LBRACK_COLON] = ACTIONS(2589), - [sym_this] = ACTIONS(2547), + [STATE(234)] = { + [sym_attribute_declaration] = STATE(234), + [sym_compound_statement] = STATE(1256), + [sym_attributed_statement] = STATE(1256), + [sym_statement] = STATE(1262), + [sym_labeled_statement] = STATE(1256), + [sym_expression_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym_case_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_break_statement] = STATE(1256), + [sym_continue_statement] = STATE(1256), + [sym_goto_statement] = STATE(1256), + [sym_seh_try_statement] = STATE(1256), + [sym_seh_leave_statement] = STATE(1256), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(1256), + [sym_co_return_statement] = STATE(1256), + [sym_co_yield_statement] = STATE(1256), + [sym_throw_statement] = STATE(1256), + [sym_try_statement] = STATE(1256), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(1256), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(234), + [sym_identifier] = ACTIONS(2885), + [anon_sym_LPAREN2] = ACTIONS(2453), + [anon_sym_BANG] = ACTIONS(2456), + [anon_sym_TILDE] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2459), + [anon_sym_PLUS] = ACTIONS(2459), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2888), + [anon_sym___extension__] = ACTIONS(2468), + [anon_sym_COLON_COLON] = ACTIONS(2473), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2476), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2482), + [sym_primitive_type] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2894), + [anon_sym_switch] = ACTIONS(2897), + [anon_sym_case] = ACTIONS(2867), + [anon_sym_default] = ACTIONS(2870), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2906), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2912), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2918), + [anon_sym___try] = ACTIONS(2921), + [anon_sym___leave] = ACTIONS(2924), + [anon_sym_not] = ACTIONS(2459), + [anon_sym_compl] = ACTIONS(2459), + [anon_sym_DASH_DASH] = ACTIONS(2527), + [anon_sym_PLUS_PLUS] = ACTIONS(2527), + [anon_sym_sizeof] = ACTIONS(2530), + [anon_sym___alignof__] = ACTIONS(2533), + [anon_sym___alignof] = ACTIONS(2533), + [anon_sym__alignof] = ACTIONS(2533), + [anon_sym_alignof] = ACTIONS(2533), + [anon_sym__Alignof] = ACTIONS(2533), + [anon_sym_offsetof] = ACTIONS(2536), + [anon_sym__Generic] = ACTIONS(2539), + [anon_sym_typename] = ACTIONS(2542), + [anon_sym_asm] = ACTIONS(2545), + [anon_sym___asm__] = ACTIONS(2545), + [anon_sym___asm] = ACTIONS(2545), + [sym_number_literal] = ACTIONS(2548), + [anon_sym_L_SQUOTE] = ACTIONS(2551), + [anon_sym_u_SQUOTE] = ACTIONS(2551), + [anon_sym_U_SQUOTE] = ACTIONS(2551), + [anon_sym_u8_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_L_DQUOTE] = ACTIONS(2554), + [anon_sym_u_DQUOTE] = ACTIONS(2554), + [anon_sym_U_DQUOTE] = ACTIONS(2554), + [anon_sym_u8_DQUOTE] = ACTIONS(2554), + [anon_sym_DQUOTE] = ACTIONS(2554), + [sym_true] = ACTIONS(2557), + [sym_false] = ACTIONS(2557), + [anon_sym_NULL] = ACTIONS(2560), + [anon_sym_nullptr] = ACTIONS(2560), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2563), + [anon_sym_template] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2930), + [anon_sym_delete] = ACTIONS(2572), + [anon_sym_throw] = ACTIONS(2933), + [anon_sym_co_return] = ACTIONS(2936), + [anon_sym_co_yield] = ACTIONS(2939), + [anon_sym_R_DQUOTE] = ACTIONS(2584), + [anon_sym_LR_DQUOTE] = ACTIONS(2584), + [anon_sym_uR_DQUOTE] = ACTIONS(2584), + [anon_sym_UR_DQUOTE] = ACTIONS(2584), + [anon_sym_u8R_DQUOTE] = ACTIONS(2584), + [anon_sym_co_await] = ACTIONS(2587), + [anon_sym_new] = ACTIONS(2590), + [anon_sym_requires] = ACTIONS(2593), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_LBRACK_COLON] = ACTIONS(2599), + [sym_this] = ACTIONS(2557), }, - [STATE(239)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(9887), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(235)] = { + [sym_attribute_declaration] = STATE(196), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(676), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(2602), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(958), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(207), + [anon_sym_switch] = ACTIONS(209), + [anon_sym_case] = ACTIONS(211), + [anon_sym_default] = ACTIONS(213), + [anon_sym_while] = ACTIONS(215), + [anon_sym_do] = ACTIONS(217), + [anon_sym_for] = ACTIONS(219), + [anon_sym_return] = ACTIONS(221), + [anon_sym_break] = ACTIONS(223), + [anon_sym_continue] = ACTIONS(225), + [anon_sym_goto] = ACTIONS(227), + [anon_sym___try] = ACTIONS(229), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -93217,7 +92616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93237,13 +92636,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(245), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(247), + [anon_sym_co_return] = ACTIONS(255), + [anon_sym_co_yield] = ACTIONS(257), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -93253,112 +92652,420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(240)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(11141), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), + [STATE(236)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(1256), + [sym_attributed_statement] = STATE(1256), + [sym_statement] = STATE(1180), + [sym_labeled_statement] = STATE(1256), + [sym_expression_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym_case_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_break_statement] = STATE(1256), + [sym_continue_statement] = STATE(1256), + [sym_goto_statement] = STATE(1256), + [sym_seh_try_statement] = STATE(1256), + [sym_seh_leave_statement] = STATE(1256), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(1256), + [sym_co_return_statement] = STATE(1256), + [sym_co_yield_statement] = STATE(1256), + [sym_throw_statement] = STATE(1256), + [sym_try_statement] = STATE(1256), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(1256), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(214), [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(237)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(1256), + [sym_attributed_statement] = STATE(1256), + [sym_statement] = STATE(1233), + [sym_labeled_statement] = STATE(1256), + [sym_expression_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym_case_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_break_statement] = STATE(1256), + [sym_continue_statement] = STATE(1256), + [sym_goto_statement] = STATE(1256), + [sym_seh_try_statement] = STATE(1256), + [sym_seh_leave_statement] = STATE(1256), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(1256), + [sym_co_return_statement] = STATE(1256), + [sym_co_yield_statement] = STATE(1256), + [sym_throw_statement] = STATE(1256), + [sym_try_statement] = STATE(1256), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(1256), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(2833), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(238)] = { + [sym_attribute_declaration] = STATE(185), + [sym_compound_statement] = STATE(587), + [sym_attributed_statement] = STATE(587), + [sym_statement] = STATE(569), + [sym_labeled_statement] = STATE(587), + [sym_expression_statement] = STATE(587), + [sym_if_statement] = STATE(587), + [sym_switch_statement] = STATE(587), + [sym_case_statement] = STATE(587), + [sym_while_statement] = STATE(587), + [sym_do_statement] = STATE(587), + [sym_for_statement] = STATE(587), + [sym_return_statement] = STATE(587), + [sym_break_statement] = STATE(587), + [sym_continue_statement] = STATE(587), + [sym_goto_statement] = STATE(587), + [sym_seh_try_statement] = STATE(587), + [sym_seh_leave_statement] = STATE(587), + [sym_expression] = STATE(6735), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11173), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(587), + [sym_co_return_statement] = STATE(587), + [sym_co_yield_statement] = STATE(587), + [sym_throw_statement] = STATE(587), + [sym_try_statement] = STATE(587), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(587), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(185), + [sym_identifier] = ACTIONS(2438), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(1203), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(83), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(87), + [anon_sym_default] = ACTIONS(89), + [anon_sym_while] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(95), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), - [anon_sym___leave] = ACTIONS(231), + [anon_sym___try] = ACTIONS(1207), + [anon_sym___leave] = ACTIONS(1209), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -93371,7 +93078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93391,8 +93098,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2010), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -93407,111 +93114,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(241)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(11294), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), + [STATE(239)] = { + [sym_attribute_declaration] = STATE(214), + [sym_compound_statement] = STATE(1256), + [sym_attributed_statement] = STATE(1256), + [sym_statement] = STATE(1248), + [sym_labeled_statement] = STATE(1256), + [sym_expression_statement] = STATE(1256), + [sym_if_statement] = STATE(1256), + [sym_switch_statement] = STATE(1256), + [sym_case_statement] = STATE(1256), + [sym_while_statement] = STATE(1256), + [sym_do_statement] = STATE(1256), + [sym_for_statement] = STATE(1256), + [sym_return_statement] = STATE(1256), + [sym_break_statement] = STATE(1256), + [sym_continue_statement] = STATE(1256), + [sym_goto_statement] = STATE(1256), + [sym_seh_try_statement] = STATE(1256), + [sym_seh_leave_statement] = STATE(1256), + [sym_expression] = STATE(6728), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10977), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(1256), + [sym_co_return_statement] = STATE(1256), + [sym_co_yield_statement] = STATE(1256), + [sym_throw_statement] = STATE(1256), + [sym_try_statement] = STATE(1256), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(1256), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(214), [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_switch] = ACTIONS(2093), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2095), + [anon_sym_do] = ACTIONS(2097), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2105), + [anon_sym_goto] = ACTIONS(2107), + [anon_sym___try] = ACTIONS(2109), + [anon_sym___leave] = ACTIONS(2111), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2113), + [anon_sym_try] = ACTIONS(2115), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_co_return] = ACTIONS(2119), + [anon_sym_co_yield] = ACTIONS(2121), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(240)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(11288), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2135), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2137), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -93525,7 +93386,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93545,8 +93406,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -93561,111 +93422,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(242)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(11323), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(241)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(11317), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2135), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2137), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -93679,7 +93540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93699,8 +93560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -93715,111 +93576,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(243)] = { - [sym_attribute_declaration] = STATE(221), - [sym_compound_statement] = STATE(772), - [sym_attributed_statement] = STATE(772), - [sym_statement] = STATE(11346), - [sym_labeled_statement] = STATE(772), - [sym_expression_statement] = STATE(772), - [sym_if_statement] = STATE(772), - [sym_switch_statement] = STATE(772), - [sym_case_statement] = STATE(772), - [sym_while_statement] = STATE(772), - [sym_do_statement] = STATE(772), - [sym_for_statement] = STATE(772), - [sym_return_statement] = STATE(772), - [sym_break_statement] = STATE(772), - [sym_continue_statement] = STATE(772), - [sym_goto_statement] = STATE(772), - [sym_seh_try_statement] = STATE(772), - [sym_seh_leave_statement] = STATE(772), - [sym_expression] = STATE(6871), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10651), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(772), - [sym_co_return_statement] = STATE(772), - [sym_co_yield_statement] = STATE(772), - [sym_throw_statement] = STATE(772), - [sym_try_statement] = STATE(772), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(772), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(2833), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(242)] = { + [sym_attribute_declaration] = STATE(192), + [sym_compound_statement] = STATE(704), + [sym_attributed_statement] = STATE(704), + [sym_statement] = STATE(11340), + [sym_labeled_statement] = STATE(704), + [sym_expression_statement] = STATE(704), + [sym_if_statement] = STATE(704), + [sym_switch_statement] = STATE(704), + [sym_case_statement] = STATE(704), + [sym_while_statement] = STATE(704), + [sym_do_statement] = STATE(704), + [sym_for_statement] = STATE(704), + [sym_return_statement] = STATE(704), + [sym_break_statement] = STATE(704), + [sym_continue_statement] = STATE(704), + [sym_goto_statement] = STATE(704), + [sym_seh_try_statement] = STATE(704), + [sym_seh_leave_statement] = STATE(704), + [sym_expression] = STATE(6721), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11479), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(704), + [sym_co_return_statement] = STATE(704), + [sym_co_yield_statement] = STATE(704), + [sym_throw_statement] = STATE(704), + [sym_try_statement] = STATE(704), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(704), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(2831), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), [anon_sym_SEMI] = ACTIONS(187), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2192), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2127), [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2198), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2133), [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2135), [anon_sym_return] = ACTIONS(97), [anon_sym_break] = ACTIONS(99), [anon_sym_continue] = ACTIONS(101), [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(2202), + [anon_sym___try] = ACTIONS(2137), [anon_sym___leave] = ACTIONS(231), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), @@ -93833,7 +93694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -93853,8 +93714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2204), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2139), [anon_sym_try] = ACTIONS(145), [anon_sym_delete] = ACTIONS(147), [anon_sym_throw] = ACTIONS(149), @@ -93869,112 +93730,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(244)] = { - [sym_attribute_declaration] = STATE(214), - [sym_compound_statement] = STATE(578), - [sym_attributed_statement] = STATE(578), - [sym_statement] = STATE(627), - [sym_labeled_statement] = STATE(578), - [sym_expression_statement] = STATE(578), - [sym_if_statement] = STATE(578), - [sym_switch_statement] = STATE(578), - [sym_case_statement] = STATE(578), - [sym_while_statement] = STATE(578), - [sym_do_statement] = STATE(578), - [sym_for_statement] = STATE(578), - [sym_return_statement] = STATE(578), - [sym_break_statement] = STATE(578), - [sym_continue_statement] = STATE(578), - [sym_goto_statement] = STATE(578), - [sym_seh_try_statement] = STATE(578), - [sym_seh_leave_statement] = STATE(578), - [sym_expression] = STATE(6807), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11035), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_for_range_loop] = STATE(578), - [sym_co_return_statement] = STATE(578), - [sym_co_yield_statement] = STATE(578), - [sym_throw_statement] = STATE(578), - [sym_try_statement] = STATE(578), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_expansion_statement] = STATE(578), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_attributed_declarator_repeat1] = STATE(214), - [sym_identifier] = ACTIONS(2636), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(243)] = { + [sym_attribute_declaration] = STATE(193), + [sym_compound_statement] = STATE(358), + [sym_attributed_statement] = STATE(358), + [sym_statement] = STATE(328), + [sym_labeled_statement] = STATE(358), + [sym_expression_statement] = STATE(358), + [sym_if_statement] = STATE(358), + [sym_switch_statement] = STATE(358), + [sym_case_statement] = STATE(358), + [sym_while_statement] = STATE(358), + [sym_do_statement] = STATE(358), + [sym_for_statement] = STATE(358), + [sym_return_statement] = STATE(358), + [sym_break_statement] = STATE(358), + [sym_continue_statement] = STATE(358), + [sym_goto_statement] = STATE(358), + [sym_seh_try_statement] = STATE(358), + [sym_seh_leave_statement] = STATE(358), + [sym_expression] = STATE(6878), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11653), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_for_range_loop] = STATE(358), + [sym_co_return_statement] = STATE(358), + [sym_co_yield_statement] = STATE(358), + [sym_throw_statement] = STATE(358), + [sym_try_statement] = STATE(358), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_expansion_statement] = STATE(358), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_attributed_declarator_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(2827), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(1320), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(299), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(83), - [anon_sym_switch] = ACTIONS(85), - [anon_sym_case] = ACTIONS(87), - [anon_sym_default] = ACTIONS(89), - [anon_sym_while] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_for] = ACTIONS(95), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_goto] = ACTIONS(103), - [anon_sym___try] = ACTIONS(1324), - [anon_sym___leave] = ACTIONS(1326), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1666), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(315), + [anon_sym_switch] = ACTIONS(317), + [anon_sym_case] = ACTIONS(319), + [anon_sym_default] = ACTIONS(321), + [anon_sym_while] = ACTIONS(323), + [anon_sym_do] = ACTIONS(325), + [anon_sym_for] = ACTIONS(327), + [anon_sym_return] = ACTIONS(329), + [anon_sym_break] = ACTIONS(331), + [anon_sym_continue] = ACTIONS(333), + [anon_sym_goto] = ACTIONS(335), + [anon_sym___try] = ACTIONS(337), + [anon_sym___leave] = ACTIONS(339), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -93987,7 +93848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -94007,13 +93868,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(145), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(1670), + [anon_sym_try] = ACTIONS(347), [anon_sym_delete] = ACTIONS(147), - [anon_sym_throw] = ACTIONS(149), - [anon_sym_co_return] = ACTIONS(157), - [anon_sym_co_yield] = ACTIONS(159), + [anon_sym_throw] = ACTIONS(349), + [anon_sym_co_return] = ACTIONS(357), + [anon_sym_co_yield] = ACTIONS(359), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -94023,95 +93884,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(244)] = { + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11535), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, [STATE(245)] = { - [sym_compound_statement] = STATE(11243), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4723), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(11243), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11003), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11536), - [sym__unary_right_fold] = STATE(11566), - [sym__binary_fold] = STATE(11627), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11671), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11336), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4698), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11336), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10749), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(10721), + [sym__unary_right_fold] = STATE(10756), + [sym__binary_fold] = STATE(10763), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11549), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94126,145 +94140,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(246)] = { - [sym_compound_statement] = STATE(10910), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4664), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10910), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10661), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10662), - [sym__unary_right_fold] = STATE(10665), - [sym__binary_fold] = STATE(10668), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(10928), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11336), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4698), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11336), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10828), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(10829), + [sym__unary_right_fold] = STATE(10836), + [sym__binary_fold] = STATE(10837), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11549), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94279,145 +94293,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(247)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11217), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11336), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4698), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11336), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11116), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(10829), + [sym__unary_right_fold] = STATE(10836), + [sym__binary_fold] = STATE(10837), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11549), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94432,145 +94446,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(248)] = { - [sym_compound_statement] = STATE(10910), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4664), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10910), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11020), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10662), - [sym__unary_right_fold] = STATE(10665), - [sym__binary_fold] = STATE(10668), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(10928), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11621), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4661), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11621), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10655), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11062), + [sym__unary_right_fold] = STATE(11066), + [sym__binary_fold] = STATE(11068), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(10841), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94585,145 +94599,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(249)] = { - [sym_compound_statement] = STATE(11243), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4723), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(11243), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11043), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11055), - [sym__unary_right_fold] = STATE(11097), - [sym__binary_fold] = STATE(11101), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11671), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11621), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4661), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11621), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10803), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11062), + [sym__unary_right_fold] = STATE(11066), + [sym__binary_fold] = STATE(11068), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(10841), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94738,145 +94752,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(250)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11575), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11496), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -94891,145 +94905,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(251)] = { - [sym_compound_statement] = STATE(11243), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4723), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(11243), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11681), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11055), - [sym__unary_right_fold] = STATE(11097), - [sym__binary_fold] = STATE(11101), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11671), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11619), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4668), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11619), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10661), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(10685), + [sym__unary_right_fold] = STATE(10705), + [sym__binary_fold] = STATE(10706), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(10712), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -95044,145 +95058,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(252)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11529), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11663), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -95197,145 +95211,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(253)] = { - [sym_compound_statement] = STATE(10656), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4757), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10656), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10788), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10793), - [sym__unary_right_fold] = STATE(10798), - [sym__binary_fold] = STATE(10806), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(10673), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11207), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -95350,145 +95364,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(254)] = { - [sym_compound_statement] = STATE(10656), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4757), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10656), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11019), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10793), - [sym__unary_right_fold] = STATE(10798), - [sym__binary_fold] = STATE(10806), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(10673), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11059), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -95503,298 +95517,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(255)] = { - [sym_expression] = STATE(5210), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_initializer_list] = STATE(5596), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_STAR_EQ] = ACTIONS(2386), - [anon_sym_SLASH_EQ] = ACTIONS(2386), - [anon_sym_PERCENT_EQ] = ACTIONS(2386), - [anon_sym_PLUS_EQ] = ACTIONS(2386), - [anon_sym_DASH_EQ] = ACTIONS(2386), - [anon_sym_LT_LT_EQ] = ACTIONS(2386), - [anon_sym_GT_GT_EQ] = ACTIONS(2386), - [anon_sym_AMP_EQ] = ACTIONS(2386), - [anon_sym_CARET_EQ] = ACTIONS(2386), - [anon_sym_PIPE_EQ] = ACTIONS(2386), - [anon_sym_and_eq] = ACTIONS(2384), - [anon_sym_or_eq] = ACTIONS(2384), - [anon_sym_xor_eq] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2384), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_DASH_GT_STAR] = ACTIONS(2386), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(256)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11122), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11373), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -95809,145 +95670,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(257)] = { - [sym_compound_statement] = STATE(10910), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4664), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10910), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11542), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11543), - [sym__unary_right_fold] = STATE(11546), - [sym__binary_fold] = STATE(11549), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(10928), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [STATE(256)] = { + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11679), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -95962,145 +95823,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(258)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11649), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [STATE(257)] = { + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10916), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96115,145 +95976,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(259)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10915), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [STATE(258)] = { + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11615), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96268,145 +96129,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(260)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11320), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [STATE(259)] = { + [sym_compound_statement] = STATE(11619), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4668), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11619), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10867), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(10869), + [sym__unary_right_fold] = STATE(10874), + [sym__binary_fold] = STATE(10875), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(10712), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96421,145 +96282,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(261)] = { - [sym_compound_statement] = STATE(10910), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4664), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10910), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10696), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11543), - [sym__unary_right_fold] = STATE(11546), - [sym__binary_fold] = STATE(11549), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(10928), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [STATE(260)] = { + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10746), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96574,145 +96435,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(262)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11424), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [STATE(261)] = { + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10740), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96727,145 +96588,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(263)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11721), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [STATE(262)] = { + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10809), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -96880,145 +96741,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(264)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11618), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [STATE(263)] = { + [sym_compound_statement] = STATE(11619), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4668), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11619), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10684), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(10869), + [sym__unary_right_fold] = STATE(10874), + [sym__binary_fold] = STATE(10875), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(10712), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97033,145 +96894,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(265)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10671), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [STATE(264)] = { + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11399), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97186,145 +97047,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(265)] = { + [sym_expression] = STATE(5052), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_initializer_list] = STATE(5677), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RPAREN] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2382), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_STAR_EQ] = ACTIONS(2384), + [anon_sym_SLASH_EQ] = ACTIONS(2384), + [anon_sym_PERCENT_EQ] = ACTIONS(2384), + [anon_sym_PLUS_EQ] = ACTIONS(2384), + [anon_sym_DASH_EQ] = ACTIONS(2384), + [anon_sym_LT_LT_EQ] = ACTIONS(2384), + [anon_sym_GT_GT_EQ] = ACTIONS(2384), + [anon_sym_AMP_EQ] = ACTIONS(2384), + [anon_sym_CARET_EQ] = ACTIONS(2384), + [anon_sym_PIPE_EQ] = ACTIONS(2384), + [anon_sym_and_eq] = ACTIONS(2382), + [anon_sym_or_eq] = ACTIONS(2382), + [anon_sym_xor_eq] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2382), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_DASH_GT_STAR] = ACTIONS(2384), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(266)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10746), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10640), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97339,145 +97353,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(267)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10802), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11336), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4698), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11336), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10702), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(10721), + [sym__unary_right_fold] = STATE(10756), + [sym__binary_fold] = STATE(10763), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11549), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97492,145 +97506,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(268)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11489), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11507), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97645,145 +97659,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(269)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10646), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11621), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4661), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11621), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11274), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11276), + [sym__unary_right_fold] = STATE(11315), + [sym__binary_fold] = STATE(11382), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(10841), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97798,145 +97812,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(270)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10642), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11566), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -97951,145 +97965,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(271)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11572), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11271), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98104,145 +98118,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(272)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11277), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10796), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98257,145 +98271,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(273)] = { - [sym_compound_statement] = STATE(10656), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4757), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10656), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(10918), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11218), - [sym__unary_right_fold] = STATE(11219), - [sym__binary_fold] = STATE(11220), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(10673), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11621), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4661), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11621), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(10656), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11276), + [sym__unary_right_fold] = STATE(11315), + [sym__binary_fold] = STATE(11382), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(10841), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98410,145 +98424,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(274)] = { - [sym_compound_statement] = STATE(11243), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4723), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(11243), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11403), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11536), - [sym__unary_right_fold] = STATE(11566), - [sym__binary_fold] = STATE(11627), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11671), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11671), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98563,145 +98577,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(275)] = { - [sym_compound_statement] = STATE(10656), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4757), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10656), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11028), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11218), - [sym__unary_right_fold] = STATE(11219), - [sym__binary_fold] = STATE(11220), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(10673), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11616), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4643), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11517), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98716,145 +98730,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(276)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11677), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [sym_compound_statement] = STATE(11619), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(4668), + [sym__string] = STATE(5442), + [sym_comma_expression] = STATE(11619), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(11489), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym__unary_left_fold] = STATE(10685), + [sym__unary_right_fold] = STATE(10705), + [sym__binary_fold] = STATE(10706), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7939), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3998), + [sym__assignment_expression_lhs] = STATE(10712), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3144), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(7932), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(2942), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -98869,1070 +98883,917 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2264), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(277)] = { - [sym_compound_statement] = STATE(10717), - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(4729), - [sym__string] = STATE(5287), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(11523), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7937), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3974), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3128), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(7939), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(2944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2266), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_expression] = STATE(5492), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_initializer_list] = STATE(3867), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2382), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON] = ACTIONS(2382), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_STAR_EQ] = ACTIONS(2384), + [anon_sym_SLASH_EQ] = ACTIONS(2384), + [anon_sym_PERCENT_EQ] = ACTIONS(2384), + [anon_sym_PLUS_EQ] = ACTIONS(2384), + [anon_sym_DASH_EQ] = ACTIONS(2384), + [anon_sym_LT_LT_EQ] = ACTIONS(2384), + [anon_sym_GT_GT_EQ] = ACTIONS(2384), + [anon_sym_AMP_EQ] = ACTIONS(2384), + [anon_sym_CARET_EQ] = ACTIONS(2384), + [anon_sym_PIPE_EQ] = ACTIONS(2384), + [anon_sym_and_eq] = ACTIONS(2382), + [anon_sym_or_eq] = ACTIONS(2382), + [anon_sym_xor_eq] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(278)] = { - [sym_expression] = STATE(5302), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_initializer_list] = STATE(5799), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), + [sym_expression] = STATE(5419), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_initializer_list] = STATE(5763), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2974), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), [anon_sym_GT_EQ] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_STAR_EQ] = ACTIONS(2386), - [anon_sym_SLASH_EQ] = ACTIONS(2386), - [anon_sym_PERCENT_EQ] = ACTIONS(2386), - [anon_sym_PLUS_EQ] = ACTIONS(2386), - [anon_sym_DASH_EQ] = ACTIONS(2386), - [anon_sym_LT_LT_EQ] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2382), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_RBRACK] = ACTIONS(2384), + [anon_sym_EQ] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_STAR_EQ] = ACTIONS(2384), + [anon_sym_SLASH_EQ] = ACTIONS(2384), + [anon_sym_PERCENT_EQ] = ACTIONS(2384), + [anon_sym_PLUS_EQ] = ACTIONS(2384), + [anon_sym_DASH_EQ] = ACTIONS(2384), + [anon_sym_LT_LT_EQ] = ACTIONS(2384), [anon_sym_GT_GT_EQ] = ACTIONS(2384), - [anon_sym_AMP_EQ] = ACTIONS(2386), - [anon_sym_CARET_EQ] = ACTIONS(2386), - [anon_sym_PIPE_EQ] = ACTIONS(2386), - [anon_sym_and_eq] = ACTIONS(2384), - [anon_sym_or_eq] = ACTIONS(2384), - [anon_sym_xor_eq] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_GT2] = ACTIONS(2386), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), + [anon_sym_AMP_EQ] = ACTIONS(2384), + [anon_sym_CARET_EQ] = ACTIONS(2384), + [anon_sym_PIPE_EQ] = ACTIONS(2384), + [anon_sym_and_eq] = ACTIONS(2382), + [anon_sym_or_eq] = ACTIONS(2382), + [anon_sym_xor_eq] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, [STATE(279)] = { - [sym_expression] = STATE(3820), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_initializer_list] = STATE(3937), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2386), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_STAR_EQ] = ACTIONS(2386), - [anon_sym_SLASH_EQ] = ACTIONS(2386), - [anon_sym_PERCENT_EQ] = ACTIONS(2386), - [anon_sym_PLUS_EQ] = ACTIONS(2386), - [anon_sym_DASH_EQ] = ACTIONS(2386), - [anon_sym_LT_LT_EQ] = ACTIONS(2386), - [anon_sym_GT_GT_EQ] = ACTIONS(2386), - [anon_sym_AMP_EQ] = ACTIONS(2386), - [anon_sym_CARET_EQ] = ACTIONS(2386), - [anon_sym_PIPE_EQ] = ACTIONS(2386), - [anon_sym_and_eq] = ACTIONS(2384), - [anon_sym_or_eq] = ACTIONS(2384), - [anon_sym_xor_eq] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(280)] = { - [sym_expression] = STATE(5493), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_initializer_list] = STATE(3937), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), + [sym_expression] = STATE(5425), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_initializer_list] = STATE(5907), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), [anon_sym_BANG] = ACTIONS(3026), [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2382), [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON] = ACTIONS(2384), [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_STAR_EQ] = ACTIONS(2386), - [anon_sym_SLASH_EQ] = ACTIONS(2386), - [anon_sym_PERCENT_EQ] = ACTIONS(2386), - [anon_sym_PLUS_EQ] = ACTIONS(2386), - [anon_sym_DASH_EQ] = ACTIONS(2386), - [anon_sym_LT_LT_EQ] = ACTIONS(2386), - [anon_sym_GT_GT_EQ] = ACTIONS(2386), - [anon_sym_AMP_EQ] = ACTIONS(2386), - [anon_sym_CARET_EQ] = ACTIONS(2386), - [anon_sym_PIPE_EQ] = ACTIONS(2386), - [anon_sym_and_eq] = ACTIONS(2384), - [anon_sym_or_eq] = ACTIONS(2384), - [anon_sym_xor_eq] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_STAR_EQ] = ACTIONS(2384), + [anon_sym_SLASH_EQ] = ACTIONS(2384), + [anon_sym_PERCENT_EQ] = ACTIONS(2384), + [anon_sym_PLUS_EQ] = ACTIONS(2384), + [anon_sym_DASH_EQ] = ACTIONS(2384), + [anon_sym_LT_LT_EQ] = ACTIONS(2384), + [anon_sym_GT_GT_EQ] = ACTIONS(2382), + [anon_sym_AMP_EQ] = ACTIONS(2384), + [anon_sym_CARET_EQ] = ACTIONS(2384), + [anon_sym_PIPE_EQ] = ACTIONS(2384), + [anon_sym_and_eq] = ACTIONS(2382), + [anon_sym_or_eq] = ACTIONS(2382), + [anon_sym_xor_eq] = ACTIONS(2382), [anon_sym_not] = ACTIONS(3026), [anon_sym_compl] = ACTIONS(3026), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_GT2] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), }, - [STATE(281)] = { - [sym_expression] = STATE(5421), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_initializer_list] = STATE(5767), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(3044), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_RBRACK] = ACTIONS(2386), - [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_STAR_EQ] = ACTIONS(2386), - [anon_sym_SLASH_EQ] = ACTIONS(2386), - [anon_sym_PERCENT_EQ] = ACTIONS(2386), - [anon_sym_PLUS_EQ] = ACTIONS(2386), - [anon_sym_DASH_EQ] = ACTIONS(2386), - [anon_sym_LT_LT_EQ] = ACTIONS(2386), - [anon_sym_GT_GT_EQ] = ACTIONS(2386), - [anon_sym_AMP_EQ] = ACTIONS(2386), - [anon_sym_CARET_EQ] = ACTIONS(2386), - [anon_sym_PIPE_EQ] = ACTIONS(2386), - [anon_sym_and_eq] = ACTIONS(2384), - [anon_sym_or_eq] = ACTIONS(2384), - [anon_sym_xor_eq] = ACTIONS(2384), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), + [STATE(280)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_initializer_list] = STATE(3867), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(3076), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2382), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_STAR_EQ] = ACTIONS(2384), + [anon_sym_SLASH_EQ] = ACTIONS(2384), + [anon_sym_PERCENT_EQ] = ACTIONS(2384), + [anon_sym_PLUS_EQ] = ACTIONS(2384), + [anon_sym_DASH_EQ] = ACTIONS(2384), + [anon_sym_LT_LT_EQ] = ACTIONS(2384), + [anon_sym_GT_GT_EQ] = ACTIONS(2384), + [anon_sym_AMP_EQ] = ACTIONS(2384), + [anon_sym_CARET_EQ] = ACTIONS(2384), + [anon_sym_PIPE_EQ] = ACTIONS(2384), + [anon_sym_and_eq] = ACTIONS(2382), + [anon_sym_or_eq] = ACTIONS(2382), + [anon_sym_xor_eq] = ACTIONS(2382), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, - [STATE(282)] = { - [sym_expression] = STATE(5804), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_initializer_list] = STATE(6088), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(2334), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2384), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2384), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2384), - [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_EQ] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_STAR_EQ] = ACTIONS(2386), - [anon_sym_SLASH_EQ] = ACTIONS(2386), - [anon_sym_PERCENT_EQ] = ACTIONS(2386), - [anon_sym_PLUS_EQ] = ACTIONS(2386), - [anon_sym_DASH_EQ] = ACTIONS(2386), - [anon_sym_LT_LT_EQ] = ACTIONS(2386), - [anon_sym_GT_GT_EQ] = ACTIONS(2386), - [anon_sym_AMP_EQ] = ACTIONS(2386), - [anon_sym_CARET_EQ] = ACTIONS(2386), - [anon_sym_PIPE_EQ] = ACTIONS(2386), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2384), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_DASH_GT_STAR] = ACTIONS(2386), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(281)] = { + [sym_expression] = STATE(5724), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_initializer_list] = STATE(6093), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RPAREN] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(2332), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2382), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2382), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2382), + [anon_sym_GT_GT] = ACTIONS(2382), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_EQ] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_STAR_EQ] = ACTIONS(2384), + [anon_sym_SLASH_EQ] = ACTIONS(2384), + [anon_sym_PERCENT_EQ] = ACTIONS(2384), + [anon_sym_PLUS_EQ] = ACTIONS(2384), + [anon_sym_DASH_EQ] = ACTIONS(2384), + [anon_sym_LT_LT_EQ] = ACTIONS(2384), + [anon_sym_GT_GT_EQ] = ACTIONS(2384), + [anon_sym_AMP_EQ] = ACTIONS(2384), + [anon_sym_CARET_EQ] = ACTIONS(2384), + [anon_sym_PIPE_EQ] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2382), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_DASH_GT_STAR] = ACTIONS(2384), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(283)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(3109), + [STATE(282)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(3107), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3110), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3126), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [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(3133), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3124), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -99945,7 +99806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -99965,11 +99826,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3128), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3126), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -99980,109 +99841,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(284)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(3109), + [STATE(283)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(3107), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3110), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3151), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [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(3133), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100095,7 +99956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100115,11 +99976,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3128), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3126), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -100130,259 +99991,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(285)] = { - [ts_builtin_sym_end] = ACTIONS(3153), - [sym_identifier] = ACTIONS(3155), - [aux_sym_preproc_include_token1] = ACTIONS(3155), - [aux_sym_preproc_def_token1] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_RPAREN] = ACTIONS(3153), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), - [sym_preproc_directive] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym___attribute] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym___cdecl] = ACTIONS(3155), - [anon_sym___clrcall] = ACTIONS(3155), - [anon_sym___stdcall] = ACTIONS(3155), - [anon_sym___fastcall] = ACTIONS(3155), - [anon_sym___thiscall] = ACTIONS(3155), - [anon_sym___vectorcall] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym__Nonnull] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym__Alignas] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_default] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym___try] = ACTIONS(3155), - [anon_sym___except] = ACTIONS(3155), - [anon_sym___finally] = ACTIONS(3155), - [anon_sym___leave] = ACTIONS(3155), - [anon_sym_not] = ACTIONS(3155), - [anon_sym_compl] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3155), - [anon_sym_and] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3155), - [anon_sym__Generic] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym___asm__] = ACTIONS(3155), - [anon_sym___asm] = ACTIONS(3155), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_L_SQUOTE] = ACTIONS(3153), - [anon_sym_u_SQUOTE] = ACTIONS(3153), - [anon_sym_U_SQUOTE] = ACTIONS(3153), - [anon_sym_u8_SQUOTE] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3153), - [anon_sym_L_DQUOTE] = ACTIONS(3153), - [anon_sym_u_DQUOTE] = ACTIONS(3153), - [anon_sym_U_DQUOTE] = ACTIONS(3153), - [anon_sym_u8_DQUOTE] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [anon_sym_NULL] = ACTIONS(3155), - [anon_sym_nullptr] = ACTIONS(3155), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_export] = ACTIONS(3155), - [anon_sym_module] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_delete] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_namespace] = ACTIONS(3155), - [anon_sym_static_assert] = ACTIONS(3155), - [anon_sym_concept] = ACTIONS(3155), - [anon_sym_co_return] = ACTIONS(3155), - [anon_sym_co_yield] = ACTIONS(3155), - [anon_sym_catch] = ACTIONS(3155), - [anon_sym_R_DQUOTE] = ACTIONS(3153), - [anon_sym_LR_DQUOTE] = ACTIONS(3153), - [anon_sym_uR_DQUOTE] = ACTIONS(3153), - [anon_sym_UR_DQUOTE] = ACTIONS(3153), - [anon_sym_u8R_DQUOTE] = ACTIONS(3153), - [anon_sym_co_await] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_requires] = ACTIONS(3155), - [anon_sym_CARET_CARET] = ACTIONS(3153), - [anon_sym_LBRACK_COLON] = ACTIONS(3153), - [sym_this] = ACTIONS(3155), - }, - [STATE(286)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(3109), + [STATE(284)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(3107), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3110), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3157), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [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(3133), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100395,7 +100106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100415,11 +100126,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3128), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3126), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -100430,109 +100141,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(287)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(3109), + [STATE(285)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(3107), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3110), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3159), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [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(3133), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3153), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -100545,7 +100256,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -100565,11 +100276,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_operator] = ACTIONS(3128), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_operator] = ACTIONS(3126), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -100580,113 +100291,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(288)] = { - [ts_builtin_sym_end] = ACTIONS(3161), - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_RPAREN] = ACTIONS(3161), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), + [STATE(286)] = { + [ts_builtin_sym_end] = ACTIONS(3155), + [sym_identifier] = ACTIONS(3157), + [aux_sym_preproc_include_token1] = ACTIONS(3157), + [aux_sym_preproc_def_token1] = ACTIONS(3157), + [anon_sym_COMMA] = ACTIONS(3155), + [anon_sym_RPAREN] = ACTIONS(3155), + [aux_sym_preproc_if_token1] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3157), + [sym_preproc_directive] = ACTIONS(3157), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3157), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym___attribute__] = ACTIONS(3157), + [anon_sym___attribute] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3155), + [anon_sym___declspec] = ACTIONS(3157), + [anon_sym___based] = ACTIONS(3157), + [anon_sym___cdecl] = ACTIONS(3157), + [anon_sym___clrcall] = ACTIONS(3157), + [anon_sym___stdcall] = ACTIONS(3157), + [anon_sym___fastcall] = ACTIONS(3157), + [anon_sym___thiscall] = ACTIONS(3157), + [anon_sym___vectorcall] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_signed] = ACTIONS(3157), + [anon_sym_unsigned] = ACTIONS(3157), + [anon_sym_long] = ACTIONS(3157), + [anon_sym_short] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_register] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym___inline] = ACTIONS(3157), + [anon_sym___inline__] = ACTIONS(3157), + [anon_sym___forceinline] = ACTIONS(3157), + [anon_sym_thread_local] = ACTIONS(3157), + [anon_sym___thread] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_constexpr] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_restrict] = ACTIONS(3157), + [anon_sym___restrict__] = ACTIONS(3157), + [anon_sym__Atomic] = ACTIONS(3157), + [anon_sym__Noreturn] = ACTIONS(3157), + [anon_sym_noreturn] = ACTIONS(3157), + [anon_sym__Nonnull] = ACTIONS(3157), + [anon_sym_mutable] = ACTIONS(3157), + [anon_sym_constinit] = ACTIONS(3157), + [anon_sym_consteval] = ACTIONS(3157), + [anon_sym_alignas] = ACTIONS(3157), + [anon_sym__Alignas] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym___try] = ACTIONS(3157), + [anon_sym___except] = ACTIONS(3157), + [anon_sym___finally] = ACTIONS(3157), + [anon_sym___leave] = ACTIONS(3157), + [anon_sym_not] = ACTIONS(3157), + [anon_sym_compl] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3157), + [anon_sym_and] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_sizeof] = ACTIONS(3157), + [anon_sym___alignof__] = ACTIONS(3157), + [anon_sym___alignof] = ACTIONS(3157), + [anon_sym__alignof] = ACTIONS(3157), + [anon_sym_alignof] = ACTIONS(3157), + [anon_sym__Alignof] = ACTIONS(3157), + [anon_sym_offsetof] = ACTIONS(3157), + [anon_sym__Generic] = ACTIONS(3157), + [anon_sym_typename] = ACTIONS(3157), + [anon_sym_asm] = ACTIONS(3157), + [anon_sym___asm__] = ACTIONS(3157), + [anon_sym___asm] = ACTIONS(3157), + [sym_number_literal] = ACTIONS(3155), + [anon_sym_L_SQUOTE] = ACTIONS(3155), + [anon_sym_u_SQUOTE] = ACTIONS(3155), + [anon_sym_U_SQUOTE] = ACTIONS(3155), + [anon_sym_u8_SQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_L_DQUOTE] = ACTIONS(3155), + [anon_sym_u_DQUOTE] = ACTIONS(3155), + [anon_sym_U_DQUOTE] = ACTIONS(3155), + [anon_sym_u8_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [anon_sym_NULL] = ACTIONS(3157), + [anon_sym_nullptr] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3157), + [anon_sym_decltype] = ACTIONS(3157), + [anon_sym_explicit] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_template] = ACTIONS(3157), + [anon_sym_operator] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_static_assert] = ACTIONS(3157), + [anon_sym_concept] = ACTIONS(3157), + [anon_sym_co_return] = ACTIONS(3157), + [anon_sym_co_yield] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_R_DQUOTE] = ACTIONS(3155), + [anon_sym_LR_DQUOTE] = ACTIONS(3155), + [anon_sym_uR_DQUOTE] = ACTIONS(3155), + [anon_sym_UR_DQUOTE] = ACTIONS(3155), + [anon_sym_u8R_DQUOTE] = ACTIONS(3155), + [anon_sym_co_await] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_requires] = ACTIONS(3157), + [anon_sym_CARET_CARET] = ACTIONS(3155), + [anon_sym_LBRACK_COLON] = ACTIONS(3155), + [sym_this] = ACTIONS(3157), + }, + [STATE(287)] = { + [sym_catch_clause] = STATE(287), + [aux_sym_constructor_try_statement_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [aux_sym_preproc_else_token1] = ACTIONS(3159), + [aux_sym_preproc_elif_token1] = ACTIONS(3159), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), [anon_sym_LPAREN2] = ACTIONS(3161), [anon_sym_BANG] = ACTIONS(3161), [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3159), [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym___attribute] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), [anon_sym_COLON_COLON] = ACTIONS(3161), [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym___try] = ACTIONS(3163), - [anon_sym___except] = ACTIONS(3163), - [anon_sym___finally] = ACTIONS(3163), - [anon_sym___leave] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3163), - [anon_sym_compl] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3163), - [anon_sym_and] = ACTIONS(3163), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym__Nonnull] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym__Alignas] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), [anon_sym_DASH_DASH] = ACTIONS(3161), [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = ACTIONS(3163), - [anon_sym___asm] = ACTIONS(3163), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [anon_sym___asm] = ACTIONS(3159), [sym_number_literal] = ACTIONS(3161), [anon_sym_L_SQUOTE] = ACTIONS(3161), [anon_sym_u_SQUOTE] = ACTIONS(3161), @@ -100698,713 +100559,860 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(3161), [anon_sym_u8_DQUOTE] = ACTIONS(3161), [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_export] = ACTIONS(3159), + [anon_sym_module] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), [anon_sym_catch] = ACTIONS(3163), [anon_sym_R_DQUOTE] = ACTIONS(3161), [anon_sym_LR_DQUOTE] = ACTIONS(3161), [anon_sym_uR_DQUOTE] = ACTIONS(3161), [anon_sym_UR_DQUOTE] = ACTIONS(3161), [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), [anon_sym_CARET_CARET] = ACTIONS(3161), [anon_sym_LBRACK_COLON] = ACTIONS(3161), - [sym_this] = ACTIONS(3163), + [sym_this] = ACTIONS(3159), + }, + [STATE(288)] = { + [ts_builtin_sym_end] = ACTIONS(3166), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_RPAREN] = ACTIONS(3166), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_else] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym___try] = ACTIONS(3168), + [anon_sym___except] = ACTIONS(3168), + [anon_sym___finally] = ACTIONS(3168), + [anon_sym___leave] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_or] = ACTIONS(3168), + [anon_sym_and] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [anon_sym___asm] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_module] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_catch] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_CARET_CARET] = ACTIONS(3166), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + [sym_this] = ACTIONS(3168), }, [STATE(289)] = { - [sym_catch_clause] = STATE(290), - [aux_sym_constructor_try_statement_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(3165), - [aux_sym_preproc_include_token1] = ACTIONS(3165), - [aux_sym_preproc_def_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token2] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), - [aux_sym_preproc_else_token1] = ACTIONS(3165), - [aux_sym_preproc_elif_token1] = ACTIONS(3165), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3165), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3165), - [sym_preproc_directive] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym___extension__] = ACTIONS(3165), - [anon_sym_typedef] = ACTIONS(3165), - [anon_sym_virtual] = ACTIONS(3165), - [anon_sym_extern] = ACTIONS(3165), - [anon_sym___attribute__] = ACTIONS(3165), - [anon_sym___attribute] = ACTIONS(3165), - [anon_sym_using] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), - [anon_sym___declspec] = ACTIONS(3165), - [anon_sym___based] = ACTIONS(3165), - [anon_sym___cdecl] = ACTIONS(3165), - [anon_sym___clrcall] = ACTIONS(3165), - [anon_sym___stdcall] = ACTIONS(3165), - [anon_sym___fastcall] = ACTIONS(3165), - [anon_sym___thiscall] = ACTIONS(3165), - [anon_sym___vectorcall] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_signed] = ACTIONS(3165), - [anon_sym_unsigned] = ACTIONS(3165), - [anon_sym_long] = ACTIONS(3165), - [anon_sym_short] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_static] = ACTIONS(3165), - [anon_sym_register] = ACTIONS(3165), - [anon_sym_inline] = ACTIONS(3165), - [anon_sym___inline] = ACTIONS(3165), - [anon_sym___inline__] = ACTIONS(3165), - [anon_sym___forceinline] = ACTIONS(3165), - [anon_sym_thread_local] = ACTIONS(3165), - [anon_sym___thread] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_constexpr] = ACTIONS(3165), - [anon_sym_volatile] = ACTIONS(3165), - [anon_sym_restrict] = ACTIONS(3165), - [anon_sym___restrict__] = ACTIONS(3165), - [anon_sym__Atomic] = ACTIONS(3165), - [anon_sym__Noreturn] = ACTIONS(3165), - [anon_sym_noreturn] = ACTIONS(3165), - [anon_sym__Nonnull] = ACTIONS(3165), - [anon_sym_mutable] = ACTIONS(3165), - [anon_sym_constinit] = ACTIONS(3165), - [anon_sym_consteval] = ACTIONS(3165), - [anon_sym_alignas] = ACTIONS(3165), - [anon_sym__Alignas] = ACTIONS(3165), - [sym_primitive_type] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_switch] = ACTIONS(3165), - [anon_sym_case] = ACTIONS(3165), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym___try] = ACTIONS(3165), - [anon_sym___leave] = ACTIONS(3165), - [anon_sym_not] = ACTIONS(3165), - [anon_sym_compl] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_sizeof] = ACTIONS(3165), - [anon_sym___alignof__] = ACTIONS(3165), - [anon_sym___alignof] = ACTIONS(3165), - [anon_sym__alignof] = ACTIONS(3165), - [anon_sym_alignof] = ACTIONS(3165), - [anon_sym__Alignof] = ACTIONS(3165), - [anon_sym_offsetof] = ACTIONS(3165), - [anon_sym__Generic] = ACTIONS(3165), - [anon_sym_typename] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym___asm__] = ACTIONS(3165), - [anon_sym___asm] = ACTIONS(3165), - [sym_number_literal] = ACTIONS(3167), - [anon_sym_L_SQUOTE] = ACTIONS(3167), - [anon_sym_u_SQUOTE] = ACTIONS(3167), - [anon_sym_U_SQUOTE] = ACTIONS(3167), - [anon_sym_u8_SQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [anon_sym_NULL] = ACTIONS(3165), - [anon_sym_nullptr] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3165), - [anon_sym_decltype] = ACTIONS(3165), - [anon_sym_explicit] = ACTIONS(3165), - [anon_sym_export] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_import] = ACTIONS(3165), - [anon_sym_template] = ACTIONS(3165), - [anon_sym_operator] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_delete] = ACTIONS(3165), - [anon_sym_throw] = ACTIONS(3165), - [anon_sym_namespace] = ACTIONS(3165), - [anon_sym_static_assert] = ACTIONS(3165), - [anon_sym_concept] = ACTIONS(3165), - [anon_sym_co_return] = ACTIONS(3165), - [anon_sym_co_yield] = ACTIONS(3165), - [anon_sym_catch] = ACTIONS(3169), - [anon_sym_R_DQUOTE] = ACTIONS(3167), - [anon_sym_LR_DQUOTE] = ACTIONS(3167), - [anon_sym_uR_DQUOTE] = ACTIONS(3167), - [anon_sym_UR_DQUOTE] = ACTIONS(3167), - [anon_sym_u8R_DQUOTE] = ACTIONS(3167), - [anon_sym_co_await] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_requires] = ACTIONS(3165), - [anon_sym_CARET_CARET] = ACTIONS(3167), - [anon_sym_LBRACK_COLON] = ACTIONS(3167), - [sym_this] = ACTIONS(3165), + [sym_catch_clause] = STATE(287), + [aux_sym_constructor_try_statement_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(3170), + [aux_sym_preproc_include_token1] = ACTIONS(3170), + [aux_sym_preproc_def_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token2] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3170), + [aux_sym_preproc_else_token1] = ACTIONS(3170), + [aux_sym_preproc_elif_token1] = ACTIONS(3170), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3170), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3170), + [sym_preproc_directive] = ACTIONS(3170), + [anon_sym_LPAREN2] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3170), + [anon_sym_virtual] = ACTIONS(3170), + [anon_sym_extern] = ACTIONS(3170), + [anon_sym___attribute__] = ACTIONS(3170), + [anon_sym___attribute] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(3172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3172), + [anon_sym___declspec] = ACTIONS(3170), + [anon_sym___based] = ACTIONS(3170), + [anon_sym___cdecl] = ACTIONS(3170), + [anon_sym___clrcall] = ACTIONS(3170), + [anon_sym___stdcall] = ACTIONS(3170), + [anon_sym___fastcall] = ACTIONS(3170), + [anon_sym___thiscall] = ACTIONS(3170), + [anon_sym___vectorcall] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3170), + [anon_sym_unsigned] = ACTIONS(3170), + [anon_sym_long] = ACTIONS(3170), + [anon_sym_short] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_register] = ACTIONS(3170), + [anon_sym_inline] = ACTIONS(3170), + [anon_sym___inline] = ACTIONS(3170), + [anon_sym___inline__] = ACTIONS(3170), + [anon_sym___forceinline] = ACTIONS(3170), + [anon_sym_thread_local] = ACTIONS(3170), + [anon_sym___thread] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_constexpr] = ACTIONS(3170), + [anon_sym_volatile] = ACTIONS(3170), + [anon_sym_restrict] = ACTIONS(3170), + [anon_sym___restrict__] = ACTIONS(3170), + [anon_sym__Atomic] = ACTIONS(3170), + [anon_sym__Noreturn] = ACTIONS(3170), + [anon_sym_noreturn] = ACTIONS(3170), + [anon_sym__Nonnull] = ACTIONS(3170), + [anon_sym_mutable] = ACTIONS(3170), + [anon_sym_constinit] = ACTIONS(3170), + [anon_sym_consteval] = ACTIONS(3170), + [anon_sym_alignas] = ACTIONS(3170), + [anon_sym__Alignas] = ACTIONS(3170), + [sym_primitive_type] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_case] = ACTIONS(3170), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_goto] = ACTIONS(3170), + [anon_sym___try] = ACTIONS(3170), + [anon_sym___leave] = ACTIONS(3170), + [anon_sym_not] = ACTIONS(3170), + [anon_sym_compl] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_sizeof] = ACTIONS(3170), + [anon_sym___alignof__] = ACTIONS(3170), + [anon_sym___alignof] = ACTIONS(3170), + [anon_sym__alignof] = ACTIONS(3170), + [anon_sym_alignof] = ACTIONS(3170), + [anon_sym__Alignof] = ACTIONS(3170), + [anon_sym_offsetof] = ACTIONS(3170), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_typename] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3170), + [anon_sym___asm__] = ACTIONS(3170), + [anon_sym___asm] = ACTIONS(3170), + [sym_number_literal] = ACTIONS(3172), + [anon_sym_L_SQUOTE] = ACTIONS(3172), + [anon_sym_u_SQUOTE] = ACTIONS(3172), + [anon_sym_U_SQUOTE] = ACTIONS(3172), + [anon_sym_u8_SQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_L_DQUOTE] = ACTIONS(3172), + [anon_sym_u_DQUOTE] = ACTIONS(3172), + [anon_sym_U_DQUOTE] = ACTIONS(3172), + [anon_sym_u8_DQUOTE] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [anon_sym_NULL] = ACTIONS(3170), + [anon_sym_nullptr] = ACTIONS(3170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3170), + [anon_sym_decltype] = ACTIONS(3170), + [anon_sym_explicit] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_template] = ACTIONS(3170), + [anon_sym_operator] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_static_assert] = ACTIONS(3170), + [anon_sym_concept] = ACTIONS(3170), + [anon_sym_co_return] = ACTIONS(3170), + [anon_sym_co_yield] = ACTIONS(3170), + [anon_sym_catch] = ACTIONS(3174), + [anon_sym_R_DQUOTE] = ACTIONS(3172), + [anon_sym_LR_DQUOTE] = ACTIONS(3172), + [anon_sym_uR_DQUOTE] = ACTIONS(3172), + [anon_sym_UR_DQUOTE] = ACTIONS(3172), + [anon_sym_u8R_DQUOTE] = ACTIONS(3172), + [anon_sym_co_await] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_requires] = ACTIONS(3170), + [anon_sym_CARET_CARET] = ACTIONS(3172), + [anon_sym_LBRACK_COLON] = ACTIONS(3172), + [sym_this] = ACTIONS(3170), }, [STATE(290)] = { - [sym_catch_clause] = STATE(290), - [aux_sym_constructor_try_statement_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_include_token1] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token2] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [aux_sym_preproc_else_token1] = ACTIONS(3171), - [aux_sym_preproc_elif_token1] = ACTIONS(3171), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym___attribute] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym___cdecl] = ACTIONS(3171), - [anon_sym___clrcall] = ACTIONS(3171), - [anon_sym___stdcall] = ACTIONS(3171), - [anon_sym___fastcall] = ACTIONS(3171), - [anon_sym___thiscall] = ACTIONS(3171), - [anon_sym___vectorcall] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym__Nonnull] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym__Alignas] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym___try] = ACTIONS(3171), - [anon_sym___leave] = ACTIONS(3171), - [anon_sym_not] = ACTIONS(3171), - [anon_sym_compl] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym___alignof__] = ACTIONS(3171), - [anon_sym___alignof] = ACTIONS(3171), - [anon_sym__alignof] = ACTIONS(3171), - [anon_sym_alignof] = ACTIONS(3171), - [anon_sym__Alignof] = ACTIONS(3171), - [anon_sym_offsetof] = ACTIONS(3171), - [anon_sym__Generic] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym___asm__] = ACTIONS(3171), - [anon_sym___asm] = ACTIONS(3171), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_L_SQUOTE] = ACTIONS(3173), - [anon_sym_u_SQUOTE] = ACTIONS(3173), - [anon_sym_U_SQUOTE] = ACTIONS(3173), - [anon_sym_u8_SQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_L_DQUOTE] = ACTIONS(3173), - [anon_sym_u_DQUOTE] = ACTIONS(3173), - [anon_sym_U_DQUOTE] = ACTIONS(3173), - [anon_sym_u8_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_export] = ACTIONS(3171), - [anon_sym_module] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_concept] = ACTIONS(3171), - [anon_sym_co_return] = ACTIONS(3171), - [anon_sym_co_yield] = ACTIONS(3171), - [anon_sym_catch] = ACTIONS(3175), - [anon_sym_R_DQUOTE] = ACTIONS(3173), - [anon_sym_LR_DQUOTE] = ACTIONS(3173), - [anon_sym_uR_DQUOTE] = ACTIONS(3173), - [anon_sym_UR_DQUOTE] = ACTIONS(3173), - [anon_sym_u8R_DQUOTE] = ACTIONS(3173), - [anon_sym_co_await] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_requires] = ACTIONS(3171), - [anon_sym_CARET_CARET] = ACTIONS(3173), - [anon_sym_LBRACK_COLON] = ACTIONS(3173), - [sym_this] = ACTIONS(3171), + [sym_catch_clause] = STATE(287), + [aux_sym_constructor_try_statement_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [aux_sym_preproc_else_token1] = ACTIONS(3176), + [aux_sym_preproc_elif_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym___attribute] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym__Nonnull] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym__Alignas] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym___try] = ACTIONS(3176), + [anon_sym___leave] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym___alignof__] = ACTIONS(3176), + [anon_sym___alignof] = ACTIONS(3176), + [anon_sym__alignof] = ACTIONS(3176), + [anon_sym_alignof] = ACTIONS(3176), + [anon_sym__Alignof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [anon_sym___asm] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [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(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_catch] = ACTIONS(3174), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [anon_sym_CARET_CARET] = ACTIONS(3178), + [anon_sym_LBRACK_COLON] = ACTIONS(3178), + [sym_this] = ACTIONS(3176), }, [STATE(291)] = { - [sym_catch_clause] = STATE(290), - [aux_sym_constructor_try_statement_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(3178), - [aux_sym_preproc_include_token1] = ACTIONS(3178), - [aux_sym_preproc_def_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token2] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), - [aux_sym_preproc_else_token1] = ACTIONS(3178), - [aux_sym_preproc_elif_token1] = ACTIONS(3178), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3178), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_LPAREN2] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_AMP_AMP] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym___extension__] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_virtual] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym___attribute__] = ACTIONS(3178), - [anon_sym___attribute] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), - [anon_sym___declspec] = ACTIONS(3178), - [anon_sym___based] = ACTIONS(3178), - [anon_sym___cdecl] = ACTIONS(3178), - [anon_sym___clrcall] = ACTIONS(3178), - [anon_sym___stdcall] = ACTIONS(3178), - [anon_sym___fastcall] = ACTIONS(3178), - [anon_sym___thiscall] = ACTIONS(3178), - [anon_sym___vectorcall] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_signed] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym___inline] = ACTIONS(3178), - [anon_sym___inline__] = ACTIONS(3178), - [anon_sym___forceinline] = ACTIONS(3178), - [anon_sym_thread_local] = ACTIONS(3178), - [anon_sym___thread] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym___restrict__] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym__Noreturn] = ACTIONS(3178), - [anon_sym_noreturn] = ACTIONS(3178), - [anon_sym__Nonnull] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_constinit] = ACTIONS(3178), - [anon_sym_consteval] = ACTIONS(3178), - [anon_sym_alignas] = ACTIONS(3178), - [anon_sym__Alignas] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_goto] = ACTIONS(3178), - [anon_sym___try] = ACTIONS(3178), - [anon_sym___leave] = ACTIONS(3178), - [anon_sym_not] = ACTIONS(3178), - [anon_sym_compl] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_sizeof] = ACTIONS(3178), - [anon_sym___alignof__] = ACTIONS(3178), - [anon_sym___alignof] = ACTIONS(3178), - [anon_sym__alignof] = ACTIONS(3178), - [anon_sym_alignof] = ACTIONS(3178), - [anon_sym__Alignof] = ACTIONS(3178), - [anon_sym_offsetof] = ACTIONS(3178), - [anon_sym__Generic] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_asm] = ACTIONS(3178), - [anon_sym___asm__] = ACTIONS(3178), - [anon_sym___asm] = ACTIONS(3178), - [sym_number_literal] = ACTIONS(3180), - [anon_sym_L_SQUOTE] = ACTIONS(3180), - [anon_sym_u_SQUOTE] = ACTIONS(3180), - [anon_sym_U_SQUOTE] = ACTIONS(3180), - [anon_sym_u8_SQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_L_DQUOTE] = ACTIONS(3180), - [anon_sym_u_DQUOTE] = ACTIONS(3180), - [anon_sym_U_DQUOTE] = ACTIONS(3180), - [anon_sym_u8_DQUOTE] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [anon_sym_NULL] = ACTIONS(3178), - [anon_sym_nullptr] = ACTIONS(3178), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3178), - [anon_sym_decltype] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_operator] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_static_assert] = ACTIONS(3178), - [anon_sym_concept] = ACTIONS(3178), - [anon_sym_co_return] = ACTIONS(3178), - [anon_sym_co_yield] = ACTIONS(3178), - [anon_sym_catch] = ACTIONS(3169), - [anon_sym_R_DQUOTE] = ACTIONS(3180), - [anon_sym_LR_DQUOTE] = ACTIONS(3180), - [anon_sym_uR_DQUOTE] = ACTIONS(3180), - [anon_sym_UR_DQUOTE] = ACTIONS(3180), - [anon_sym_u8R_DQUOTE] = ACTIONS(3180), - [anon_sym_co_await] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3178), - [anon_sym_CARET_CARET] = ACTIONS(3180), - [anon_sym_LBRACK_COLON] = ACTIONS(3180), - [sym_this] = ACTIONS(3178), + [sym_catch_clause] = STATE(287), + [aux_sym_constructor_try_statement_repeat1] = STATE(287), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [aux_sym_preproc_else_token1] = ACTIONS(3180), + [aux_sym_preproc_elif_token1] = ACTIONS(3180), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym___attribute] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym__Nonnull] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym__Alignas] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym___try] = ACTIONS(3180), + [anon_sym___leave] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym___alignof__] = ACTIONS(3180), + [anon_sym___alignof] = ACTIONS(3180), + [anon_sym__alignof] = ACTIONS(3180), + [anon_sym_alignof] = ACTIONS(3180), + [anon_sym__Alignof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [anon_sym___asm] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_export] = ACTIONS(3180), + [anon_sym_module] = ACTIONS(3180), + [anon_sym_import] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_catch] = ACTIONS(3174), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [anon_sym_CARET_CARET] = ACTIONS(3182), + [anon_sym_LBRACK_COLON] = ACTIONS(3182), + [sym_this] = ACTIONS(3180), }, [STATE(292)] = { - [sym_catch_clause] = STATE(290), - [aux_sym_constructor_try_statement_repeat1] = STATE(290), - [sym_identifier] = ACTIONS(3182), - [aux_sym_preproc_include_token1] = ACTIONS(3182), - [aux_sym_preproc_def_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token2] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), - [aux_sym_preproc_else_token1] = ACTIONS(3182), - [aux_sym_preproc_elif_token1] = ACTIONS(3182), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3182), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3182), - [sym_preproc_directive] = ACTIONS(3182), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym___extension__] = ACTIONS(3182), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_virtual] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym___attribute__] = ACTIONS(3182), - [anon_sym___attribute] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [anon_sym___declspec] = ACTIONS(3182), - [anon_sym___based] = ACTIONS(3182), - [anon_sym___cdecl] = ACTIONS(3182), - [anon_sym___clrcall] = ACTIONS(3182), - [anon_sym___stdcall] = ACTIONS(3182), - [anon_sym___fastcall] = ACTIONS(3182), - [anon_sym___thiscall] = ACTIONS(3182), - [anon_sym___vectorcall] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_signed] = ACTIONS(3182), - [anon_sym_unsigned] = ACTIONS(3182), - [anon_sym_long] = ACTIONS(3182), - [anon_sym_short] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_register] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym___inline] = ACTIONS(3182), - [anon_sym___inline__] = ACTIONS(3182), - [anon_sym___forceinline] = ACTIONS(3182), - [anon_sym_thread_local] = ACTIONS(3182), - [anon_sym___thread] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_constexpr] = ACTIONS(3182), - [anon_sym_volatile] = ACTIONS(3182), - [anon_sym_restrict] = ACTIONS(3182), - [anon_sym___restrict__] = ACTIONS(3182), - [anon_sym__Atomic] = ACTIONS(3182), - [anon_sym__Noreturn] = ACTIONS(3182), - [anon_sym_noreturn] = ACTIONS(3182), - [anon_sym__Nonnull] = ACTIONS(3182), - [anon_sym_mutable] = ACTIONS(3182), - [anon_sym_constinit] = ACTIONS(3182), - [anon_sym_consteval] = ACTIONS(3182), - [anon_sym_alignas] = ACTIONS(3182), - [anon_sym__Alignas] = ACTIONS(3182), - [sym_primitive_type] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3182), - [anon_sym_union] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_goto] = ACTIONS(3182), - [anon_sym___try] = ACTIONS(3182), - [anon_sym___leave] = ACTIONS(3182), - [anon_sym_not] = ACTIONS(3182), - [anon_sym_compl] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_sizeof] = ACTIONS(3182), - [anon_sym___alignof__] = ACTIONS(3182), - [anon_sym___alignof] = ACTIONS(3182), - [anon_sym__alignof] = ACTIONS(3182), - [anon_sym_alignof] = ACTIONS(3182), - [anon_sym__Alignof] = ACTIONS(3182), - [anon_sym_offsetof] = ACTIONS(3182), - [anon_sym__Generic] = ACTIONS(3182), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_asm] = ACTIONS(3182), - [anon_sym___asm__] = ACTIONS(3182), - [anon_sym___asm] = ACTIONS(3182), - [sym_number_literal] = ACTIONS(3184), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3184), - [anon_sym_u_DQUOTE] = ACTIONS(3184), - [anon_sym_U_DQUOTE] = ACTIONS(3184), - [anon_sym_u8_DQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [anon_sym_NULL] = ACTIONS(3182), - [anon_sym_nullptr] = ACTIONS(3182), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3182), - [anon_sym_decltype] = ACTIONS(3182), - [anon_sym_explicit] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(3182), - [anon_sym_operator] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_static_assert] = ACTIONS(3182), - [anon_sym_concept] = ACTIONS(3182), - [anon_sym_co_return] = ACTIONS(3182), - [anon_sym_co_yield] = ACTIONS(3182), - [anon_sym_catch] = ACTIONS(3169), - [anon_sym_R_DQUOTE] = ACTIONS(3184), - [anon_sym_LR_DQUOTE] = ACTIONS(3184), - [anon_sym_uR_DQUOTE] = ACTIONS(3184), - [anon_sym_UR_DQUOTE] = ACTIONS(3184), - [anon_sym_u8R_DQUOTE] = ACTIONS(3184), - [anon_sym_co_await] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_requires] = ACTIONS(3182), - [anon_sym_CARET_CARET] = ACTIONS(3184), - [anon_sym_LBRACK_COLON] = ACTIONS(3184), - [sym_this] = ACTIONS(3182), + [sym_expression] = STATE(6727), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10898), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3184), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym___extension__] = ACTIONS(3189), + [anon_sym_virtual] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(3192), + [anon_sym___attribute__] = ACTIONS(3192), + [anon_sym___attribute] = ACTIONS(3192), + [anon_sym_COLON_COLON] = ACTIONS(3194), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), + [anon_sym___declspec] = ACTIONS(3192), + [anon_sym_signed] = ACTIONS(3192), + [anon_sym_unsigned] = ACTIONS(3192), + [anon_sym_long] = ACTIONS(3192), + [anon_sym_short] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_register] = ACTIONS(3192), + [anon_sym_inline] = ACTIONS(3192), + [anon_sym___inline] = ACTIONS(3192), + [anon_sym___inline__] = ACTIONS(3192), + [anon_sym___forceinline] = ACTIONS(3192), + [anon_sym_thread_local] = ACTIONS(3192), + [anon_sym___thread] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_constexpr] = ACTIONS(3192), + [anon_sym_volatile] = ACTIONS(3192), + [anon_sym_restrict] = ACTIONS(3192), + [anon_sym___restrict__] = ACTIONS(3192), + [anon_sym__Atomic] = ACTIONS(3192), + [anon_sym__Noreturn] = ACTIONS(3192), + [anon_sym_noreturn] = ACTIONS(3192), + [anon_sym__Nonnull] = ACTIONS(3192), + [anon_sym_mutable] = ACTIONS(3192), + [anon_sym_constinit] = ACTIONS(3192), + [anon_sym_consteval] = ACTIONS(3192), + [anon_sym_alignas] = ACTIONS(3192), + [anon_sym__Alignas] = ACTIONS(3192), + [sym_primitive_type] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3192), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3202), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3192), + [anon_sym_decltype] = ACTIONS(3205), + [anon_sym_template] = ACTIONS(3208), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3211), + [sym_this] = ACTIONS(237), }, [STATE(293)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6659), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9443), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9948), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6680), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9652), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9793), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -101419,286 +101427,1315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, [STATE(294)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(4152), + [sym_else_clause] = STATE(376), + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token2] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [aux_sym_preproc_else_token1] = ACTIONS(3286), + [aux_sym_preproc_elif_token1] = ACTIONS(3286), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym___extension__] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym___attribute] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym___inline] = ACTIONS(3286), + [anon_sym___inline__] = ACTIONS(3286), + [anon_sym___forceinline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym___thread] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym__Nonnull] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [anon_sym_alignas] = ACTIONS(3286), + [anon_sym__Alignas] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym___try] = ACTIONS(3286), + [anon_sym___leave] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym___alignof__] = ACTIONS(3286), + [anon_sym___alignof] = ACTIONS(3286), + [anon_sym__alignof] = ACTIONS(3286), + [anon_sym_alignof] = ACTIONS(3286), + [anon_sym__Alignof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [anon_sym___asm] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_module] = ACTIONS(3286), + [anon_sym_import] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [anon_sym_CARET_CARET] = ACTIONS(3288), + [anon_sym_LBRACK_COLON] = ACTIONS(3288), + [sym_this] = ACTIONS(3286), + }, + [STATE(295)] = { + [sym_expression] = STATE(6839), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10647), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3292), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym___extension__] = ACTIONS(3297), + [anon_sym_virtual] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(3300), + [anon_sym___attribute__] = ACTIONS(3300), + [anon_sym___attribute] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3302), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3305), + [anon_sym___declspec] = ACTIONS(3300), + [anon_sym_signed] = ACTIONS(3300), + [anon_sym_unsigned] = ACTIONS(3300), + [anon_sym_long] = ACTIONS(3300), + [anon_sym_short] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_register] = ACTIONS(3300), + [anon_sym_inline] = ACTIONS(3300), + [anon_sym___inline] = ACTIONS(3300), + [anon_sym___inline__] = ACTIONS(3300), + [anon_sym___forceinline] = ACTIONS(3300), + [anon_sym_thread_local] = ACTIONS(3300), + [anon_sym___thread] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_constexpr] = ACTIONS(3300), + [anon_sym_volatile] = ACTIONS(3300), + [anon_sym_restrict] = ACTIONS(3300), + [anon_sym___restrict__] = ACTIONS(3300), + [anon_sym__Atomic] = ACTIONS(3300), + [anon_sym__Noreturn] = ACTIONS(3300), + [anon_sym_noreturn] = ACTIONS(3300), + [anon_sym__Nonnull] = ACTIONS(3300), + [anon_sym_mutable] = ACTIONS(3300), + [anon_sym_constinit] = ACTIONS(3300), + [anon_sym_consteval] = ACTIONS(3300), + [anon_sym_alignas] = ACTIONS(3300), + [anon_sym__Alignas] = ACTIONS(3300), + [sym_primitive_type] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_union] = ACTIONS(3300), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3310), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3300), + [anon_sym_decltype] = ACTIONS(3313), + [anon_sym_template] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3319), + [sym_this] = ACTIONS(237), + }, + [STATE(296)] = { + [sym_else_clause] = STATE(325), + [sym_identifier] = ACTIONS(3322), + [aux_sym_preproc_include_token1] = ACTIONS(3322), + [aux_sym_preproc_def_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token2] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), + [aux_sym_preproc_else_token1] = ACTIONS(3322), + [aux_sym_preproc_elif_token1] = ACTIONS(3322), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3322), + [sym_preproc_directive] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym___extension__] = ACTIONS(3322), + [anon_sym_typedef] = ACTIONS(3322), + [anon_sym_virtual] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym___attribute__] = ACTIONS(3322), + [anon_sym___attribute] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3322), + [anon_sym___based] = ACTIONS(3322), + [anon_sym___cdecl] = ACTIONS(3322), + [anon_sym___clrcall] = ACTIONS(3322), + [anon_sym___stdcall] = ACTIONS(3322), + [anon_sym___fastcall] = ACTIONS(3322), + [anon_sym___thiscall] = ACTIONS(3322), + [anon_sym___vectorcall] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_signed] = ACTIONS(3322), + [anon_sym_unsigned] = ACTIONS(3322), + [anon_sym_long] = ACTIONS(3322), + [anon_sym_short] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_inline] = ACTIONS(3322), + [anon_sym___inline] = ACTIONS(3322), + [anon_sym___inline__] = ACTIONS(3322), + [anon_sym___forceinline] = ACTIONS(3322), + [anon_sym_thread_local] = ACTIONS(3322), + [anon_sym___thread] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_constexpr] = ACTIONS(3322), + [anon_sym_volatile] = ACTIONS(3322), + [anon_sym_restrict] = ACTIONS(3322), + [anon_sym___restrict__] = ACTIONS(3322), + [anon_sym__Atomic] = ACTIONS(3322), + [anon_sym__Noreturn] = ACTIONS(3322), + [anon_sym_noreturn] = ACTIONS(3322), + [anon_sym__Nonnull] = ACTIONS(3322), + [anon_sym_mutable] = ACTIONS(3322), + [anon_sym_constinit] = ACTIONS(3322), + [anon_sym_consteval] = ACTIONS(3322), + [anon_sym_alignas] = ACTIONS(3322), + [anon_sym__Alignas] = ACTIONS(3322), + [sym_primitive_type] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym___try] = ACTIONS(3322), + [anon_sym___leave] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_compl] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3322), + [anon_sym___alignof__] = ACTIONS(3322), + [anon_sym___alignof] = ACTIONS(3322), + [anon_sym__alignof] = ACTIONS(3322), + [anon_sym_alignof] = ACTIONS(3322), + [anon_sym__Alignof] = ACTIONS(3322), + [anon_sym_offsetof] = ACTIONS(3322), + [anon_sym__Generic] = ACTIONS(3322), + [anon_sym_typename] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym___asm__] = ACTIONS(3322), + [anon_sym___asm] = ACTIONS(3322), + [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(3322), + [sym_false] = ACTIONS(3322), + [anon_sym_NULL] = ACTIONS(3322), + [anon_sym_nullptr] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(3322), + [anon_sym_explicit] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_template] = ACTIONS(3322), + [anon_sym_operator] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_static_assert] = ACTIONS(3322), + [anon_sym_concept] = ACTIONS(3322), + [anon_sym_co_return] = ACTIONS(3322), + [anon_sym_co_yield] = ACTIONS(3322), + [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(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_requires] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3324), + [anon_sym_LBRACK_COLON] = ACTIONS(3324), + [sym_this] = ACTIONS(3322), + }, + [STATE(297)] = { + [sym_identifier] = ACTIONS(3326), + [aux_sym_preproc_include_token1] = ACTIONS(3326), + [aux_sym_preproc_def_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token2] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3326), + [aux_sym_preproc_else_token1] = ACTIONS(3326), + [aux_sym_preproc_elif_token1] = ACTIONS(3326), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3326), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3326), + [sym_preproc_directive] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym___extension__] = ACTIONS(3326), + [anon_sym_typedef] = ACTIONS(3326), + [anon_sym_virtual] = ACTIONS(3326), + [anon_sym_extern] = ACTIONS(3326), + [anon_sym___attribute__] = ACTIONS(3326), + [anon_sym___attribute] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3328), + [anon_sym___declspec] = ACTIONS(3326), + [anon_sym___based] = ACTIONS(3326), + [anon_sym___cdecl] = ACTIONS(3326), + [anon_sym___clrcall] = ACTIONS(3326), + [anon_sym___stdcall] = ACTIONS(3326), + [anon_sym___fastcall] = ACTIONS(3326), + [anon_sym___thiscall] = ACTIONS(3326), + [anon_sym___vectorcall] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3326), + [anon_sym_unsigned] = ACTIONS(3326), + [anon_sym_long] = ACTIONS(3326), + [anon_sym_short] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_register] = ACTIONS(3326), + [anon_sym_inline] = ACTIONS(3326), + [anon_sym___inline] = ACTIONS(3326), + [anon_sym___inline__] = ACTIONS(3326), + [anon_sym___forceinline] = ACTIONS(3326), + [anon_sym_thread_local] = ACTIONS(3326), + [anon_sym___thread] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_constexpr] = ACTIONS(3326), + [anon_sym_volatile] = ACTIONS(3326), + [anon_sym_restrict] = ACTIONS(3326), + [anon_sym___restrict__] = ACTIONS(3326), + [anon_sym__Atomic] = ACTIONS(3326), + [anon_sym__Noreturn] = ACTIONS(3326), + [anon_sym_noreturn] = ACTIONS(3326), + [anon_sym__Nonnull] = ACTIONS(3326), + [anon_sym_mutable] = ACTIONS(3326), + [anon_sym_constinit] = ACTIONS(3326), + [anon_sym_consteval] = ACTIONS(3326), + [anon_sym_alignas] = ACTIONS(3326), + [anon_sym__Alignas] = ACTIONS(3326), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_union] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_goto] = ACTIONS(3326), + [anon_sym___try] = ACTIONS(3326), + [anon_sym___leave] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_compl] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_sizeof] = ACTIONS(3326), + [anon_sym___alignof__] = ACTIONS(3326), + [anon_sym___alignof] = ACTIONS(3326), + [anon_sym__alignof] = ACTIONS(3326), + [anon_sym_alignof] = ACTIONS(3326), + [anon_sym__Alignof] = ACTIONS(3326), + [anon_sym_offsetof] = ACTIONS(3326), + [anon_sym__Generic] = ACTIONS(3326), + [anon_sym_typename] = ACTIONS(3326), + [anon_sym_asm] = ACTIONS(3326), + [anon_sym___asm__] = ACTIONS(3326), + [anon_sym___asm] = ACTIONS(3326), + [sym_number_literal] = ACTIONS(3328), + [anon_sym_L_SQUOTE] = ACTIONS(3328), + [anon_sym_u_SQUOTE] = ACTIONS(3328), + [anon_sym_U_SQUOTE] = ACTIONS(3328), + [anon_sym_u8_SQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_L_DQUOTE] = ACTIONS(3328), + [anon_sym_u_DQUOTE] = ACTIONS(3328), + [anon_sym_U_DQUOTE] = ACTIONS(3328), + [anon_sym_u8_DQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [anon_sym_NULL] = ACTIONS(3326), + [anon_sym_nullptr] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3326), + [anon_sym_decltype] = ACTIONS(3326), + [anon_sym_explicit] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_template] = ACTIONS(3326), + [anon_sym_operator] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_static_assert] = ACTIONS(3326), + [anon_sym_concept] = ACTIONS(3326), + [anon_sym_co_return] = ACTIONS(3326), + [anon_sym_co_yield] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_R_DQUOTE] = ACTIONS(3328), + [anon_sym_LR_DQUOTE] = ACTIONS(3328), + [anon_sym_uR_DQUOTE] = ACTIONS(3328), + [anon_sym_UR_DQUOTE] = ACTIONS(3328), + [anon_sym_u8R_DQUOTE] = ACTIONS(3328), + [anon_sym_co_await] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_requires] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3328), + [anon_sym_LBRACK_COLON] = ACTIONS(3328), + [sym_this] = ACTIONS(3326), + }, + [STATE(298)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_else] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym___try] = ACTIONS(3168), + [anon_sym___leave] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [anon_sym___asm] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_module] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_catch] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_CARET_CARET] = ACTIONS(3166), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + [sym_this] = ACTIONS(3168), + }, + [STATE(299)] = { + [sym_identifier] = ACTIONS(3157), + [aux_sym_preproc_include_token1] = ACTIONS(3157), + [aux_sym_preproc_def_token1] = ACTIONS(3157), + [aux_sym_preproc_if_token1] = ACTIONS(3157), + [aux_sym_preproc_if_token2] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3157), + [aux_sym_preproc_else_token1] = ACTIONS(3157), + [aux_sym_preproc_elif_token1] = ACTIONS(3157), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3157), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3157), + [sym_preproc_directive] = ACTIONS(3157), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3157), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym___attribute__] = ACTIONS(3157), + [anon_sym___attribute] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3155), + [anon_sym___declspec] = ACTIONS(3157), + [anon_sym___based] = ACTIONS(3157), + [anon_sym___cdecl] = ACTIONS(3157), + [anon_sym___clrcall] = ACTIONS(3157), + [anon_sym___stdcall] = ACTIONS(3157), + [anon_sym___fastcall] = ACTIONS(3157), + [anon_sym___thiscall] = ACTIONS(3157), + [anon_sym___vectorcall] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_signed] = ACTIONS(3157), + [anon_sym_unsigned] = ACTIONS(3157), + [anon_sym_long] = ACTIONS(3157), + [anon_sym_short] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_register] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym___inline] = ACTIONS(3157), + [anon_sym___inline__] = ACTIONS(3157), + [anon_sym___forceinline] = ACTIONS(3157), + [anon_sym_thread_local] = ACTIONS(3157), + [anon_sym___thread] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_constexpr] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_restrict] = ACTIONS(3157), + [anon_sym___restrict__] = ACTIONS(3157), + [anon_sym__Atomic] = ACTIONS(3157), + [anon_sym__Noreturn] = ACTIONS(3157), + [anon_sym_noreturn] = ACTIONS(3157), + [anon_sym__Nonnull] = ACTIONS(3157), + [anon_sym_mutable] = ACTIONS(3157), + [anon_sym_constinit] = ACTIONS(3157), + [anon_sym_consteval] = ACTIONS(3157), + [anon_sym_alignas] = ACTIONS(3157), + [anon_sym__Alignas] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym___try] = ACTIONS(3157), + [anon_sym___leave] = ACTIONS(3157), + [anon_sym_not] = ACTIONS(3157), + [anon_sym_compl] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_sizeof] = ACTIONS(3157), + [anon_sym___alignof__] = ACTIONS(3157), + [anon_sym___alignof] = ACTIONS(3157), + [anon_sym__alignof] = ACTIONS(3157), + [anon_sym_alignof] = ACTIONS(3157), + [anon_sym__Alignof] = ACTIONS(3157), + [anon_sym_offsetof] = ACTIONS(3157), + [anon_sym__Generic] = ACTIONS(3157), + [anon_sym_typename] = ACTIONS(3157), + [anon_sym_asm] = ACTIONS(3157), + [anon_sym___asm__] = ACTIONS(3157), + [anon_sym___asm] = ACTIONS(3157), + [sym_number_literal] = ACTIONS(3155), + [anon_sym_L_SQUOTE] = ACTIONS(3155), + [anon_sym_u_SQUOTE] = ACTIONS(3155), + [anon_sym_U_SQUOTE] = ACTIONS(3155), + [anon_sym_u8_SQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_L_DQUOTE] = ACTIONS(3155), + [anon_sym_u_DQUOTE] = ACTIONS(3155), + [anon_sym_U_DQUOTE] = ACTIONS(3155), + [anon_sym_u8_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [anon_sym_NULL] = ACTIONS(3157), + [anon_sym_nullptr] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3157), + [anon_sym_decltype] = ACTIONS(3157), + [anon_sym_explicit] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_template] = ACTIONS(3157), + [anon_sym_operator] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_static_assert] = ACTIONS(3157), + [anon_sym_concept] = ACTIONS(3157), + [anon_sym_co_return] = ACTIONS(3157), + [anon_sym_co_yield] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_R_DQUOTE] = ACTIONS(3155), + [anon_sym_LR_DQUOTE] = ACTIONS(3155), + [anon_sym_uR_DQUOTE] = ACTIONS(3155), + [anon_sym_UR_DQUOTE] = ACTIONS(3155), + [anon_sym_u8R_DQUOTE] = ACTIONS(3155), + [anon_sym_co_await] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_requires] = ACTIONS(3157), + [anon_sym_CARET_CARET] = ACTIONS(3155), + [anon_sym_LBRACK_COLON] = ACTIONS(3155), + [sym_this] = ACTIONS(3157), + }, + [STATE(300)] = { + [sym_expression] = STATE(6726), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10765), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3330), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym___extension__] = ACTIONS(3335), + [anon_sym_virtual] = ACTIONS(3338), + [anon_sym_extern] = ACTIONS(3338), + [anon_sym___attribute__] = ACTIONS(3338), + [anon_sym___attribute] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3340), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3343), + [anon_sym___declspec] = ACTIONS(3338), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_register] = ACTIONS(3338), + [anon_sym_inline] = ACTIONS(3338), + [anon_sym___inline] = ACTIONS(3338), + [anon_sym___inline__] = ACTIONS(3338), + [anon_sym___forceinline] = ACTIONS(3338), + [anon_sym_thread_local] = ACTIONS(3338), + [anon_sym___thread] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_constexpr] = ACTIONS(3338), + [anon_sym_volatile] = ACTIONS(3338), + [anon_sym_restrict] = ACTIONS(3338), + [anon_sym___restrict__] = ACTIONS(3338), + [anon_sym__Atomic] = ACTIONS(3338), + [anon_sym__Noreturn] = ACTIONS(3338), + [anon_sym_noreturn] = ACTIONS(3338), + [anon_sym__Nonnull] = ACTIONS(3338), + [anon_sym_mutable] = ACTIONS(3338), + [anon_sym_constinit] = ACTIONS(3338), + [anon_sym_consteval] = ACTIONS(3338), + [anon_sym_alignas] = ACTIONS(3338), + [anon_sym__Alignas] = ACTIONS(3338), + [sym_primitive_type] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3348), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3338), + [anon_sym_decltype] = ACTIONS(3351), + [anon_sym_template] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3357), + [sym_this] = ACTIONS(237), + }, + [STATE(301)] = { + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(4252), [sym__declarator] = STATE(8826), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_type_qualifier] = STATE(5390), - [sym_alignas_qualifier] = STATE(7511), - [sym_expression] = STATE(3772), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5286), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7947), - [sym_qualified_identifier] = STATE(5288), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(3844), - [aux_sym__type_definition_type_repeat1] = STATE(5390), - [aux_sym_pointer_declarator_repeat1] = STATE(4152), - [sym_identifier] = ACTIONS(3258), - [anon_sym_LPAREN2] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(27), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_type_qualifier] = STATE(5301), + [sym_alignas_qualifier] = STATE(7556), + [sym_expression] = STATE(5057), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5424), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7962), + [sym_qualified_identifier] = STATE(5429), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5301), + [aux_sym_pointer_declarator_repeat1] = STATE(4252), + [sym_identifier] = ACTIONS(3360), + [anon_sym_LPAREN2] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2232), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(3264), - [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_AMP] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(3362), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(295)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6654), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9577), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(10139), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(302)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6582), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9596), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(10175), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -101713,139 +102750,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3372), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(296)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6669), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9627), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9720), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(303)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6574), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9504), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9939), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -101860,139 +102897,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(297)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6666), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9468), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9687), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(304)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6693), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9444), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(10091), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102007,139 +103044,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3376), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(298)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6702), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9655), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9674), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(305)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6593), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9532), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9842), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102154,139 +103191,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(299)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6629), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9451), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9973), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(306)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6607), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9564), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9970), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102301,139 +103338,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3380), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(300)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6678), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9552), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9787), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(307)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6619), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9510), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9745), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102448,139 +103485,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3382), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(301)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6592), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9649), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(10064), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(308)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6637), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9458), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9878), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102595,139 +103632,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3384), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(302)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6670), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9465), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9735), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(309)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6648), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9447), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9997), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102742,139 +103779,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3386), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(303)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6674), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9499), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9779), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(310)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6659), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9601), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(10114), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -102889,139 +103926,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3388), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(304)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6660), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9452), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(10205), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(311)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6662), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9583), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(10198), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103036,139 +104073,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3390), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(305)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6679), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9594), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9794), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(312)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6663), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9528), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9673), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103183,139 +104220,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3392), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(306)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6680), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9647), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9803), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(313)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6667), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9475), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9699), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103330,139 +104367,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3298), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3394), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(307)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6671), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9617), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9745), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(314)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6670), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9551), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9715), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -103477,580 +104514,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(308)] = { - [sym_expression] = STATE(6873), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11247), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3302), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym___extension__] = ACTIONS(3307), - [anon_sym_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(3312), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), - [anon_sym___declspec] = ACTIONS(3310), - [anon_sym_signed] = ACTIONS(3310), - [anon_sym_unsigned] = ACTIONS(3310), - [anon_sym_long] = ACTIONS(3310), - [anon_sym_short] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(3310), - [anon_sym_register] = ACTIONS(3310), - [anon_sym_inline] = ACTIONS(3310), - [anon_sym___inline] = ACTIONS(3310), - [anon_sym___inline__] = ACTIONS(3310), - [anon_sym___forceinline] = ACTIONS(3310), - [anon_sym_thread_local] = ACTIONS(3310), - [anon_sym___thread] = ACTIONS(3310), - [anon_sym_const] = ACTIONS(3310), - [anon_sym_constexpr] = ACTIONS(3310), - [anon_sym_volatile] = ACTIONS(3310), - [anon_sym_restrict] = ACTIONS(3310), - [anon_sym___restrict__] = ACTIONS(3310), - [anon_sym__Atomic] = ACTIONS(3310), - [anon_sym__Noreturn] = ACTIONS(3310), - [anon_sym_noreturn] = ACTIONS(3310), - [anon_sym__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3320), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3310), - [anon_sym_decltype] = ACTIONS(3323), - [anon_sym_template] = ACTIONS(3326), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3329), - [sym_this] = ACTIONS(237), - }, - [STATE(309)] = { - [sym_expression] = STATE(6766), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11251), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3332), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym___extension__] = ACTIONS(3337), - [anon_sym_virtual] = ACTIONS(3340), - [anon_sym_extern] = ACTIONS(3340), - [anon_sym___attribute__] = ACTIONS(3340), - [anon_sym___attribute] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3345), - [anon_sym___declspec] = ACTIONS(3340), - [anon_sym_signed] = ACTIONS(3340), - [anon_sym_unsigned] = ACTIONS(3340), - [anon_sym_long] = ACTIONS(3340), - [anon_sym_short] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_register] = ACTIONS(3340), - [anon_sym_inline] = ACTIONS(3340), - [anon_sym___inline] = ACTIONS(3340), - [anon_sym___inline__] = ACTIONS(3340), - [anon_sym___forceinline] = ACTIONS(3340), - [anon_sym_thread_local] = ACTIONS(3340), - [anon_sym___thread] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_constexpr] = ACTIONS(3340), - [anon_sym_volatile] = ACTIONS(3340), - [anon_sym_restrict] = ACTIONS(3340), - [anon_sym___restrict__] = ACTIONS(3340), - [anon_sym__Atomic] = ACTIONS(3340), - [anon_sym__Noreturn] = ACTIONS(3340), - [anon_sym_noreturn] = ACTIONS(3340), - [anon_sym__Nonnull] = ACTIONS(3340), - [anon_sym_mutable] = ACTIONS(3340), - [anon_sym_constinit] = ACTIONS(3340), - [anon_sym_consteval] = ACTIONS(3340), - [anon_sym_alignas] = ACTIONS(3340), - [anon_sym__Alignas] = ACTIONS(3340), - [sym_primitive_type] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_union] = ACTIONS(3340), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3350), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3340), - [anon_sym_decltype] = ACTIONS(3353), - [anon_sym_template] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3359), - [sym_this] = ACTIONS(237), - }, - [STATE(310)] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [aux_sym_preproc_else_token1] = ACTIONS(3362), - [aux_sym_preproc_elif_token1] = ACTIONS(3362), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym___attribute] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym__Nonnull] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym__Alignas] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_else] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym___try] = ACTIONS(3362), - [anon_sym___leave] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [anon_sym___asm] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_export] = ACTIONS(3362), - [anon_sym_module] = ACTIONS(3362), - [anon_sym_import] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_catch] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [anon_sym_CARET_CARET] = ACTIONS(3364), - [anon_sym_LBRACK_COLON] = ACTIONS(3364), - [sym_this] = ACTIONS(3362), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3396), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(311)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6646), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9631), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(10063), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(315)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6671), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9647), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9725), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104065,286 +104661,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(312)] = { - [sym_else_clause] = STATE(365), - [sym_identifier] = ACTIONS(3368), - [aux_sym_preproc_include_token1] = ACTIONS(3368), - [aux_sym_preproc_def_token1] = ACTIONS(3368), - [aux_sym_preproc_if_token1] = ACTIONS(3368), - [aux_sym_preproc_if_token2] = ACTIONS(3368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3368), - [aux_sym_preproc_else_token1] = ACTIONS(3368), - [aux_sym_preproc_elif_token1] = ACTIONS(3368), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3368), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3368), - [sym_preproc_directive] = ACTIONS(3368), - [anon_sym_LPAREN2] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3370), - [anon_sym_AMP_AMP] = ACTIONS(3370), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym___extension__] = ACTIONS(3368), - [anon_sym_typedef] = ACTIONS(3368), - [anon_sym_virtual] = ACTIONS(3368), - [anon_sym_extern] = ACTIONS(3368), - [anon_sym___attribute__] = ACTIONS(3368), - [anon_sym___attribute] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_COLON_COLON] = ACTIONS(3370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3370), - [anon_sym___declspec] = ACTIONS(3368), - [anon_sym___based] = ACTIONS(3368), - [anon_sym___cdecl] = ACTIONS(3368), - [anon_sym___clrcall] = ACTIONS(3368), - [anon_sym___stdcall] = ACTIONS(3368), - [anon_sym___fastcall] = ACTIONS(3368), - [anon_sym___thiscall] = ACTIONS(3368), - [anon_sym___vectorcall] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_signed] = ACTIONS(3368), - [anon_sym_unsigned] = ACTIONS(3368), - [anon_sym_long] = ACTIONS(3368), - [anon_sym_short] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_register] = ACTIONS(3368), - [anon_sym_inline] = ACTIONS(3368), - [anon_sym___inline] = ACTIONS(3368), - [anon_sym___inline__] = ACTIONS(3368), - [anon_sym___forceinline] = ACTIONS(3368), - [anon_sym_thread_local] = ACTIONS(3368), - [anon_sym___thread] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_constexpr] = ACTIONS(3368), - [anon_sym_volatile] = ACTIONS(3368), - [anon_sym_restrict] = ACTIONS(3368), - [anon_sym___restrict__] = ACTIONS(3368), - [anon_sym__Atomic] = ACTIONS(3368), - [anon_sym__Noreturn] = ACTIONS(3368), - [anon_sym_noreturn] = ACTIONS(3368), - [anon_sym__Nonnull] = ACTIONS(3368), - [anon_sym_mutable] = ACTIONS(3368), - [anon_sym_constinit] = ACTIONS(3368), - [anon_sym_consteval] = ACTIONS(3368), - [anon_sym_alignas] = ACTIONS(3368), - [anon_sym__Alignas] = ACTIONS(3368), - [sym_primitive_type] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(3368), - [anon_sym_union] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_else] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_case] = ACTIONS(3368), - [anon_sym_default] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_goto] = ACTIONS(3368), - [anon_sym___try] = ACTIONS(3368), - [anon_sym___leave] = ACTIONS(3368), - [anon_sym_not] = ACTIONS(3368), - [anon_sym_compl] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_sizeof] = ACTIONS(3368), - [anon_sym___alignof__] = ACTIONS(3368), - [anon_sym___alignof] = ACTIONS(3368), - [anon_sym__alignof] = ACTIONS(3368), - [anon_sym_alignof] = ACTIONS(3368), - [anon_sym__Alignof] = ACTIONS(3368), - [anon_sym_offsetof] = ACTIONS(3368), - [anon_sym__Generic] = ACTIONS(3368), - [anon_sym_typename] = ACTIONS(3368), - [anon_sym_asm] = ACTIONS(3368), - [anon_sym___asm__] = ACTIONS(3368), - [anon_sym___asm] = ACTIONS(3368), - [sym_number_literal] = ACTIONS(3370), - [anon_sym_L_SQUOTE] = ACTIONS(3370), - [anon_sym_u_SQUOTE] = ACTIONS(3370), - [anon_sym_U_SQUOTE] = ACTIONS(3370), - [anon_sym_u8_SQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_L_DQUOTE] = ACTIONS(3370), - [anon_sym_u_DQUOTE] = ACTIONS(3370), - [anon_sym_U_DQUOTE] = ACTIONS(3370), - [anon_sym_u8_DQUOTE] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3368), - [anon_sym_decltype] = ACTIONS(3368), - [anon_sym_explicit] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_template] = ACTIONS(3368), - [anon_sym_operator] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_static_assert] = ACTIONS(3368), - [anon_sym_concept] = ACTIONS(3368), - [anon_sym_co_return] = ACTIONS(3368), - [anon_sym_co_yield] = ACTIONS(3368), - [anon_sym_R_DQUOTE] = ACTIONS(3370), - [anon_sym_LR_DQUOTE] = ACTIONS(3370), - [anon_sym_uR_DQUOTE] = ACTIONS(3370), - [anon_sym_UR_DQUOTE] = ACTIONS(3370), - [anon_sym_u8R_DQUOTE] = ACTIONS(3370), - [anon_sym_co_await] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_requires] = ACTIONS(3368), - [anon_sym_CARET_CARET] = ACTIONS(3370), - [anon_sym_LBRACK_COLON] = ACTIONS(3370), - [sym_this] = ACTIONS(3368), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3398), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(313)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6606), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9652), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9761), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(316)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6672), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9457), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9738), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104359,433 +104808,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3374), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(314)] = { - [sym_expression] = STATE(6765), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11233), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3376), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym___extension__] = ACTIONS(3381), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym___attribute] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym__Nonnull] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym__Alignas] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3394), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3397), - [anon_sym_template] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3403), - [sym_this] = ACTIONS(237), - }, - [STATE(315)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [aux_sym_preproc_else_token1] = ACTIONS(3163), - [aux_sym_preproc_elif_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym___try] = ACTIONS(3163), - [anon_sym___leave] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3163), - [anon_sym_compl] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = ACTIONS(3163), - [anon_sym___asm] = ACTIONS(3163), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_catch] = ACTIONS(3163), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [anon_sym_CARET_CARET] = ACTIONS(3161), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - [sym_this] = ACTIONS(3163), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3400), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(316)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6672), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9424), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9756), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(317)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6673), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9492), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9749), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -104800,286 +104955,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3406), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(317)] = { - [sym_else_clause] = STATE(373), - [sym_identifier] = ACTIONS(3408), - [aux_sym_preproc_include_token1] = ACTIONS(3408), - [aux_sym_preproc_def_token1] = ACTIONS(3408), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_if_token2] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), - [aux_sym_preproc_else_token1] = ACTIONS(3408), - [aux_sym_preproc_elif_token1] = ACTIONS(3408), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3408), - [sym_preproc_directive] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3408), - [anon_sym_typedef] = ACTIONS(3408), - [anon_sym_virtual] = ACTIONS(3408), - [anon_sym_extern] = ACTIONS(3408), - [anon_sym___attribute__] = ACTIONS(3408), - [anon_sym___attribute] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(3410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), - [anon_sym___declspec] = ACTIONS(3408), - [anon_sym___based] = ACTIONS(3408), - [anon_sym___cdecl] = ACTIONS(3408), - [anon_sym___clrcall] = ACTIONS(3408), - [anon_sym___stdcall] = ACTIONS(3408), - [anon_sym___fastcall] = ACTIONS(3408), - [anon_sym___thiscall] = ACTIONS(3408), - [anon_sym___vectorcall] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3408), - [anon_sym_unsigned] = ACTIONS(3408), - [anon_sym_long] = ACTIONS(3408), - [anon_sym_short] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_register] = ACTIONS(3408), - [anon_sym_inline] = ACTIONS(3408), - [anon_sym___inline] = ACTIONS(3408), - [anon_sym___inline__] = ACTIONS(3408), - [anon_sym___forceinline] = ACTIONS(3408), - [anon_sym_thread_local] = ACTIONS(3408), - [anon_sym___thread] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_constexpr] = ACTIONS(3408), - [anon_sym_volatile] = ACTIONS(3408), - [anon_sym_restrict] = ACTIONS(3408), - [anon_sym___restrict__] = ACTIONS(3408), - [anon_sym__Atomic] = ACTIONS(3408), - [anon_sym__Noreturn] = ACTIONS(3408), - [anon_sym_noreturn] = ACTIONS(3408), - [anon_sym__Nonnull] = ACTIONS(3408), - [anon_sym_mutable] = ACTIONS(3408), - [anon_sym_constinit] = ACTIONS(3408), - [anon_sym_consteval] = ACTIONS(3408), - [anon_sym_alignas] = ACTIONS(3408), - [anon_sym__Alignas] = ACTIONS(3408), - [sym_primitive_type] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_else] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym___try] = ACTIONS(3408), - [anon_sym___leave] = ACTIONS(3408), - [anon_sym_not] = ACTIONS(3408), - [anon_sym_compl] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3408), - [anon_sym___alignof__] = ACTIONS(3408), - [anon_sym___alignof] = ACTIONS(3408), - [anon_sym__alignof] = ACTIONS(3408), - [anon_sym_alignof] = ACTIONS(3408), - [anon_sym__Alignof] = ACTIONS(3408), - [anon_sym_offsetof] = ACTIONS(3408), - [anon_sym__Generic] = ACTIONS(3408), - [anon_sym_typename] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym___asm__] = ACTIONS(3408), - [anon_sym___asm] = ACTIONS(3408), - [sym_number_literal] = ACTIONS(3410), - [anon_sym_L_SQUOTE] = ACTIONS(3410), - [anon_sym_u_SQUOTE] = ACTIONS(3410), - [anon_sym_U_SQUOTE] = ACTIONS(3410), - [anon_sym_u8_SQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [anon_sym_L_DQUOTE] = ACTIONS(3410), - [anon_sym_u_DQUOTE] = ACTIONS(3410), - [anon_sym_U_DQUOTE] = ACTIONS(3410), - [anon_sym_u8_DQUOTE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [anon_sym_NULL] = ACTIONS(3408), - [anon_sym_nullptr] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3408), - [anon_sym_decltype] = ACTIONS(3408), - [anon_sym_explicit] = ACTIONS(3408), - [anon_sym_export] = ACTIONS(3408), - [anon_sym_module] = ACTIONS(3408), - [anon_sym_import] = ACTIONS(3408), - [anon_sym_template] = ACTIONS(3408), - [anon_sym_operator] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_static_assert] = ACTIONS(3408), - [anon_sym_concept] = ACTIONS(3408), - [anon_sym_co_return] = ACTIONS(3408), - [anon_sym_co_yield] = ACTIONS(3408), - [anon_sym_R_DQUOTE] = ACTIONS(3410), - [anon_sym_LR_DQUOTE] = ACTIONS(3410), - [anon_sym_uR_DQUOTE] = ACTIONS(3410), - [anon_sym_UR_DQUOTE] = ACTIONS(3410), - [anon_sym_u8R_DQUOTE] = ACTIONS(3410), - [anon_sym_co_await] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_requires] = ACTIONS(3408), - [anon_sym_CARET_CARET] = ACTIONS(3410), - [anon_sym_LBRACK_COLON] = ACTIONS(3410), - [sym_this] = ACTIONS(3408), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, [STATE(318)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6561), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9581), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9706), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6674), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9520), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9759), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -105094,139 +105102,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3412), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3404), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, [STATE(319)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6620), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9432), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9888), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6677), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9552), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9769), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -105241,139 +105249,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3414), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, [STATE(320)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6668), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9588), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9701), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6678), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9593), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9777), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -105388,139 +105396,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3416), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3408), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, [STATE(321)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6673), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(9653), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(9769), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6679), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9623), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(9783), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -105535,459 +105543,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(3418), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, [STATE(322)] = { - [sym_identifier] = ACTIONS(3155), - [aux_sym_preproc_include_token1] = ACTIONS(3155), - [aux_sym_preproc_def_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token2] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), - [aux_sym_preproc_else_token1] = ACTIONS(3155), - [aux_sym_preproc_elif_token1] = ACTIONS(3155), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3155), - [sym_preproc_directive] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym___attribute] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym___cdecl] = ACTIONS(3155), - [anon_sym___clrcall] = ACTIONS(3155), - [anon_sym___stdcall] = ACTIONS(3155), - [anon_sym___fastcall] = ACTIONS(3155), - [anon_sym___thiscall] = ACTIONS(3155), - [anon_sym___vectorcall] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym__Nonnull] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym__Alignas] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_default] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym___try] = ACTIONS(3155), - [anon_sym___leave] = ACTIONS(3155), - [anon_sym_not] = ACTIONS(3155), - [anon_sym_compl] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3155), - [anon_sym__Generic] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym___asm__] = ACTIONS(3155), - [anon_sym___asm] = ACTIONS(3155), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_L_SQUOTE] = ACTIONS(3153), - [anon_sym_u_SQUOTE] = ACTIONS(3153), - [anon_sym_U_SQUOTE] = ACTIONS(3153), - [anon_sym_u8_SQUOTE] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3153), - [anon_sym_L_DQUOTE] = ACTIONS(3153), - [anon_sym_u_DQUOTE] = ACTIONS(3153), - [anon_sym_U_DQUOTE] = ACTIONS(3153), - [anon_sym_u8_DQUOTE] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [anon_sym_NULL] = ACTIONS(3155), - [anon_sym_nullptr] = ACTIONS(3155), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_export] = ACTIONS(3155), - [anon_sym_module] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_delete] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_namespace] = ACTIONS(3155), - [anon_sym_static_assert] = ACTIONS(3155), - [anon_sym_concept] = ACTIONS(3155), - [anon_sym_co_return] = ACTIONS(3155), - [anon_sym_co_yield] = ACTIONS(3155), - [anon_sym_catch] = ACTIONS(3155), - [anon_sym_R_DQUOTE] = ACTIONS(3153), - [anon_sym_LR_DQUOTE] = ACTIONS(3153), - [anon_sym_uR_DQUOTE] = ACTIONS(3153), - [anon_sym_UR_DQUOTE] = ACTIONS(3153), - [anon_sym_u8R_DQUOTE] = ACTIONS(3153), - [anon_sym_co_await] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_requires] = ACTIONS(3155), - [anon_sym_CARET_CARET] = ACTIONS(3153), - [anon_sym_LBRACK_COLON] = ACTIONS(3153), - [sym_this] = ACTIONS(3155), - }, - [STATE(323)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(4152), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(4252), [sym__declarator] = STATE(8826), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_type_qualifier] = STATE(5390), - [sym_alignas_qualifier] = STATE(7511), - [sym_expression] = STATE(5117), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5427), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7942), - [sym_qualified_identifier] = STATE(5371), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5390), - [aux_sym_pointer_declarator_repeat1] = STATE(4152), - [sym_identifier] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2234), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_type_qualifier] = STATE(5301), + [sym_alignas_qualifier] = STATE(7556), + [sym_expression] = STATE(3804), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5508), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7964), + [sym_qualified_identifier] = STATE(5509), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(3897), + [aux_sym__type_definition_type_repeat1] = STATE(5301), + [aux_sym_pointer_declarator_repeat1] = STATE(4252), + [sym_identifier] = ACTIONS(3412), + [anon_sym_LPAREN2] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym___extension__] = ACTIONS(3422), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(3418), + [anon_sym_COLON_COLON] = ACTIONS(2740), [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), [anon_sym_LBRACK] = ACTIONS(61), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, - [STATE(324)] = { - [sym_preproc_def] = STATE(364), - [sym_preproc_function_def] = STATE(364), - [sym_preproc_call] = STATE(364), - [sym_preproc_if_in_field_declaration_list] = STATE(364), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(364), - [sym_preproc_else_in_field_declaration_list] = STATE(10942), - [sym_preproc_elif_in_field_declaration_list] = STATE(10942), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10942), - [sym_type_definition] = STATE(364), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(364), - [sym_field_declaration] = STATE(364), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(364), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(364), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(364), - [sym_operator_cast_declaration] = STATE(364), - [sym_constructor_or_destructor_definition] = STATE(364), - [sym_constructor_or_destructor_declaration] = STATE(364), - [sym_friend_declaration] = STATE(364), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(364), - [sym_alias_declaration] = STATE(364), - [sym_static_assert_declaration] = STATE(364), - [sym_consteval_block_declaration] = STATE(364), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(364), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3430), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(323)] = { + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_field_declaration_list] = STATE(541), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), + [sym_preproc_else_in_field_declaration_list] = STATE(11147), + [sym_preproc_elif_in_field_declaration_list] = STATE(11147), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11147), + [sym_type_definition] = STATE(541), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(541), + [sym_field_declaration] = STATE(541), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(541), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(541), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(541), + [sym_operator_cast_declaration] = STATE(541), + [sym_constructor_or_destructor_definition] = STATE(541), + [sym_constructor_or_destructor_declaration] = STATE(541), + [sym_friend_declaration] = STATE(541), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(541), + [sym_alias_declaration] = STATE(541), + [sym_static_assert_declaration] = STATE(541), + [sym_consteval_block_declaration] = STATE(541), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3428), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -105997,7 +105858,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -106007,863 +105868,3199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(325)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [aux_sym_preproc_else_token1] = ACTIONS(3163), - [aux_sym_preproc_elif_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), + [STATE(324)] = { + [sym_identifier] = ACTIONS(3486), + [aux_sym_preproc_include_token1] = ACTIONS(3486), + [aux_sym_preproc_def_token1] = ACTIONS(3486), + [aux_sym_preproc_if_token1] = ACTIONS(3486), + [aux_sym_preproc_if_token2] = ACTIONS(3486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3486), + [aux_sym_preproc_else_token1] = ACTIONS(3486), + [aux_sym_preproc_elif_token1] = ACTIONS(3486), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3486), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3486), + [sym_preproc_directive] = ACTIONS(3486), + [anon_sym_LPAREN2] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_STAR] = ACTIONS(3488), + [anon_sym_AMP_AMP] = ACTIONS(3488), + [anon_sym_AMP] = ACTIONS(3486), [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym___try] = ACTIONS(3163), - [anon_sym___leave] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3163), - [anon_sym_compl] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = ACTIONS(3163), - [anon_sym___asm] = ACTIONS(3163), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [anon_sym_CARET_CARET] = ACTIONS(3161), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - [sym_this] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(3486), + [anon_sym_typedef] = ACTIONS(3486), + [anon_sym_virtual] = ACTIONS(3486), + [anon_sym_extern] = ACTIONS(3486), + [anon_sym___attribute__] = ACTIONS(3486), + [anon_sym___attribute] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_COLON_COLON] = ACTIONS(3488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3488), + [anon_sym___declspec] = ACTIONS(3486), + [anon_sym___based] = ACTIONS(3486), + [anon_sym___cdecl] = ACTIONS(3486), + [anon_sym___clrcall] = ACTIONS(3486), + [anon_sym___stdcall] = ACTIONS(3486), + [anon_sym___fastcall] = ACTIONS(3486), + [anon_sym___thiscall] = ACTIONS(3486), + [anon_sym___vectorcall] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_signed] = ACTIONS(3486), + [anon_sym_unsigned] = ACTIONS(3486), + [anon_sym_long] = ACTIONS(3486), + [anon_sym_short] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_register] = ACTIONS(3486), + [anon_sym_inline] = ACTIONS(3486), + [anon_sym___inline] = ACTIONS(3486), + [anon_sym___inline__] = ACTIONS(3486), + [anon_sym___forceinline] = ACTIONS(3486), + [anon_sym_thread_local] = ACTIONS(3486), + [anon_sym___thread] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_constexpr] = ACTIONS(3486), + [anon_sym_volatile] = ACTIONS(3486), + [anon_sym_restrict] = ACTIONS(3486), + [anon_sym___restrict__] = ACTIONS(3486), + [anon_sym__Atomic] = ACTIONS(3486), + [anon_sym__Noreturn] = ACTIONS(3486), + [anon_sym_noreturn] = ACTIONS(3486), + [anon_sym__Nonnull] = ACTIONS(3486), + [anon_sym_mutable] = ACTIONS(3486), + [anon_sym_constinit] = ACTIONS(3486), + [anon_sym_consteval] = ACTIONS(3486), + [anon_sym_alignas] = ACTIONS(3486), + [anon_sym__Alignas] = ACTIONS(3486), + [sym_primitive_type] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_struct] = ACTIONS(3486), + [anon_sym_union] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_case] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_goto] = ACTIONS(3486), + [anon_sym___try] = ACTIONS(3486), + [anon_sym___leave] = ACTIONS(3486), + [anon_sym_not] = ACTIONS(3486), + [anon_sym_compl] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_sizeof] = ACTIONS(3486), + [anon_sym___alignof__] = ACTIONS(3486), + [anon_sym___alignof] = ACTIONS(3486), + [anon_sym__alignof] = ACTIONS(3486), + [anon_sym_alignof] = ACTIONS(3486), + [anon_sym__Alignof] = ACTIONS(3486), + [anon_sym_offsetof] = ACTIONS(3486), + [anon_sym__Generic] = ACTIONS(3486), + [anon_sym_typename] = ACTIONS(3486), + [anon_sym_asm] = ACTIONS(3486), + [anon_sym___asm__] = ACTIONS(3486), + [anon_sym___asm] = ACTIONS(3486), + [sym_number_literal] = ACTIONS(3488), + [anon_sym_L_SQUOTE] = ACTIONS(3488), + [anon_sym_u_SQUOTE] = ACTIONS(3488), + [anon_sym_U_SQUOTE] = ACTIONS(3488), + [anon_sym_u8_SQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_L_DQUOTE] = ACTIONS(3488), + [anon_sym_u_DQUOTE] = ACTIONS(3488), + [anon_sym_U_DQUOTE] = ACTIONS(3488), + [anon_sym_u8_DQUOTE] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [anon_sym_NULL] = ACTIONS(3486), + [anon_sym_nullptr] = ACTIONS(3486), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3486), + [anon_sym_decltype] = ACTIONS(3486), + [anon_sym_explicit] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(3486), + [anon_sym_operator] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_static_assert] = ACTIONS(3486), + [anon_sym_concept] = ACTIONS(3486), + [anon_sym_co_return] = ACTIONS(3486), + [anon_sym_co_yield] = ACTIONS(3486), + [anon_sym_R_DQUOTE] = ACTIONS(3488), + [anon_sym_LR_DQUOTE] = ACTIONS(3488), + [anon_sym_uR_DQUOTE] = ACTIONS(3488), + [anon_sym_UR_DQUOTE] = ACTIONS(3488), + [anon_sym_u8R_DQUOTE] = ACTIONS(3488), + [anon_sym_co_await] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_requires] = ACTIONS(3486), + [anon_sym_CARET_CARET] = ACTIONS(3488), + [anon_sym_LBRACK_COLON] = ACTIONS(3488), + [sym_this] = ACTIONS(3486), + }, + [STATE(325)] = { + [sym_identifier] = ACTIONS(3490), + [aux_sym_preproc_include_token1] = ACTIONS(3490), + [aux_sym_preproc_def_token1] = ACTIONS(3490), + [aux_sym_preproc_if_token1] = ACTIONS(3490), + [aux_sym_preproc_if_token2] = ACTIONS(3490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3490), + [aux_sym_preproc_else_token1] = ACTIONS(3490), + [aux_sym_preproc_elif_token1] = ACTIONS(3490), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3490), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3490), + [sym_preproc_directive] = ACTIONS(3490), + [anon_sym_LPAREN2] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP_AMP] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3490), + [anon_sym_typedef] = ACTIONS(3490), + [anon_sym_virtual] = ACTIONS(3490), + [anon_sym_extern] = ACTIONS(3490), + [anon_sym___attribute__] = ACTIONS(3490), + [anon_sym___attribute] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_COLON_COLON] = ACTIONS(3492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3492), + [anon_sym___declspec] = ACTIONS(3490), + [anon_sym___based] = ACTIONS(3490), + [anon_sym___cdecl] = ACTIONS(3490), + [anon_sym___clrcall] = ACTIONS(3490), + [anon_sym___stdcall] = ACTIONS(3490), + [anon_sym___fastcall] = ACTIONS(3490), + [anon_sym___thiscall] = ACTIONS(3490), + [anon_sym___vectorcall] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_signed] = ACTIONS(3490), + [anon_sym_unsigned] = ACTIONS(3490), + [anon_sym_long] = ACTIONS(3490), + [anon_sym_short] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_register] = ACTIONS(3490), + [anon_sym_inline] = ACTIONS(3490), + [anon_sym___inline] = ACTIONS(3490), + [anon_sym___inline__] = ACTIONS(3490), + [anon_sym___forceinline] = ACTIONS(3490), + [anon_sym_thread_local] = ACTIONS(3490), + [anon_sym___thread] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_constexpr] = ACTIONS(3490), + [anon_sym_volatile] = ACTIONS(3490), + [anon_sym_restrict] = ACTIONS(3490), + [anon_sym___restrict__] = ACTIONS(3490), + [anon_sym__Atomic] = ACTIONS(3490), + [anon_sym__Noreturn] = ACTIONS(3490), + [anon_sym_noreturn] = ACTIONS(3490), + [anon_sym__Nonnull] = ACTIONS(3490), + [anon_sym_mutable] = ACTIONS(3490), + [anon_sym_constinit] = ACTIONS(3490), + [anon_sym_consteval] = ACTIONS(3490), + [anon_sym_alignas] = ACTIONS(3490), + [anon_sym__Alignas] = ACTIONS(3490), + [sym_primitive_type] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_struct] = ACTIONS(3490), + [anon_sym_union] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_case] = ACTIONS(3490), + [anon_sym_default] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_goto] = ACTIONS(3490), + [anon_sym___try] = ACTIONS(3490), + [anon_sym___leave] = ACTIONS(3490), + [anon_sym_not] = ACTIONS(3490), + [anon_sym_compl] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_sizeof] = ACTIONS(3490), + [anon_sym___alignof__] = ACTIONS(3490), + [anon_sym___alignof] = ACTIONS(3490), + [anon_sym__alignof] = ACTIONS(3490), + [anon_sym_alignof] = ACTIONS(3490), + [anon_sym__Alignof] = ACTIONS(3490), + [anon_sym_offsetof] = ACTIONS(3490), + [anon_sym__Generic] = ACTIONS(3490), + [anon_sym_typename] = ACTIONS(3490), + [anon_sym_asm] = ACTIONS(3490), + [anon_sym___asm__] = ACTIONS(3490), + [anon_sym___asm] = ACTIONS(3490), + [sym_number_literal] = ACTIONS(3492), + [anon_sym_L_SQUOTE] = ACTIONS(3492), + [anon_sym_u_SQUOTE] = ACTIONS(3492), + [anon_sym_U_SQUOTE] = ACTIONS(3492), + [anon_sym_u8_SQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_L_DQUOTE] = ACTIONS(3492), + [anon_sym_u_DQUOTE] = ACTIONS(3492), + [anon_sym_U_DQUOTE] = ACTIONS(3492), + [anon_sym_u8_DQUOTE] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [anon_sym_NULL] = ACTIONS(3490), + [anon_sym_nullptr] = ACTIONS(3490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3490), + [anon_sym_decltype] = ACTIONS(3490), + [anon_sym_explicit] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_template] = ACTIONS(3490), + [anon_sym_operator] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_static_assert] = ACTIONS(3490), + [anon_sym_concept] = ACTIONS(3490), + [anon_sym_co_return] = ACTIONS(3490), + [anon_sym_co_yield] = ACTIONS(3490), + [anon_sym_R_DQUOTE] = ACTIONS(3492), + [anon_sym_LR_DQUOTE] = ACTIONS(3492), + [anon_sym_uR_DQUOTE] = ACTIONS(3492), + [anon_sym_UR_DQUOTE] = ACTIONS(3492), + [anon_sym_u8R_DQUOTE] = ACTIONS(3492), + [anon_sym_co_await] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_requires] = ACTIONS(3490), + [anon_sym_CARET_CARET] = ACTIONS(3492), + [anon_sym_LBRACK_COLON] = ACTIONS(3492), + [sym_this] = ACTIONS(3490), }, [STATE(326)] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token2] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [aux_sym_preproc_else_token1] = ACTIONS(3384), - [aux_sym_preproc_elif_token1] = ACTIONS(3384), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym___attribute] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym__Nonnull] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym__Alignas] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_else] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym___try] = ACTIONS(3384), - [anon_sym___leave] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [anon_sym___asm] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3389), - [anon_sym_L_SQUOTE] = ACTIONS(3389), - [anon_sym_u_SQUOTE] = ACTIONS(3389), - [anon_sym_U_SQUOTE] = ACTIONS(3389), - [anon_sym_u8_SQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_L_DQUOTE] = ACTIONS(3389), - [anon_sym_u_DQUOTE] = ACTIONS(3389), - [anon_sym_U_DQUOTE] = ACTIONS(3389), - [anon_sym_u8_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_export] = ACTIONS(3384), - [anon_sym_module] = ACTIONS(3384), - [anon_sym_import] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3389), - [anon_sym_LR_DQUOTE] = ACTIONS(3389), - [anon_sym_uR_DQUOTE] = ACTIONS(3389), - [anon_sym_UR_DQUOTE] = ACTIONS(3389), - [anon_sym_u8R_DQUOTE] = ACTIONS(3389), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [anon_sym_CARET_CARET] = ACTIONS(3389), - [anon_sym_LBRACK_COLON] = ACTIONS(3389), - [sym_this] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_include_token1] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3494), + [aux_sym_preproc_if_token1] = ACTIONS(3494), + [aux_sym_preproc_if_token2] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3494), + [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(3494), + [anon_sym_LPAREN2] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3496), + [anon_sym_AMP] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym___extension__] = ACTIONS(3494), + [anon_sym_typedef] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym___attribute__] = ACTIONS(3494), + [anon_sym___attribute] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_COLON_COLON] = ACTIONS(3496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3496), + [anon_sym___declspec] = ACTIONS(3494), + [anon_sym___based] = ACTIONS(3494), + [anon_sym___cdecl] = ACTIONS(3494), + [anon_sym___clrcall] = ACTIONS(3494), + [anon_sym___stdcall] = ACTIONS(3494), + [anon_sym___fastcall] = ACTIONS(3494), + [anon_sym___thiscall] = ACTIONS(3494), + [anon_sym___vectorcall] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_signed] = ACTIONS(3494), + [anon_sym_unsigned] = ACTIONS(3494), + [anon_sym_long] = ACTIONS(3494), + [anon_sym_short] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_register] = ACTIONS(3494), + [anon_sym_inline] = ACTIONS(3494), + [anon_sym___inline] = ACTIONS(3494), + [anon_sym___inline__] = ACTIONS(3494), + [anon_sym___forceinline] = ACTIONS(3494), + [anon_sym_thread_local] = ACTIONS(3494), + [anon_sym___thread] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_constexpr] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_restrict] = ACTIONS(3494), + [anon_sym___restrict__] = ACTIONS(3494), + [anon_sym__Atomic] = ACTIONS(3494), + [anon_sym__Noreturn] = ACTIONS(3494), + [anon_sym_noreturn] = ACTIONS(3494), + [anon_sym__Nonnull] = ACTIONS(3494), + [anon_sym_mutable] = ACTIONS(3494), + [anon_sym_constinit] = ACTIONS(3494), + [anon_sym_consteval] = ACTIONS(3494), + [anon_sym_alignas] = ACTIONS(3494), + [anon_sym__Alignas] = ACTIONS(3494), + [sym_primitive_type] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_union] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_else] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_case] = ACTIONS(3494), + [anon_sym_default] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_goto] = ACTIONS(3494), + [anon_sym___try] = ACTIONS(3494), + [anon_sym___leave] = ACTIONS(3494), + [anon_sym_not] = ACTIONS(3494), + [anon_sym_compl] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_sizeof] = ACTIONS(3494), + [anon_sym___alignof__] = ACTIONS(3494), + [anon_sym___alignof] = ACTIONS(3494), + [anon_sym__alignof] = ACTIONS(3494), + [anon_sym_alignof] = ACTIONS(3494), + [anon_sym__Alignof] = ACTIONS(3494), + [anon_sym_offsetof] = ACTIONS(3494), + [anon_sym__Generic] = ACTIONS(3494), + [anon_sym_typename] = ACTIONS(3494), + [anon_sym_asm] = ACTIONS(3494), + [anon_sym___asm__] = ACTIONS(3494), + [anon_sym___asm] = ACTIONS(3494), + [sym_number_literal] = ACTIONS(3496), + [anon_sym_L_SQUOTE] = ACTIONS(3496), + [anon_sym_u_SQUOTE] = ACTIONS(3496), + [anon_sym_U_SQUOTE] = ACTIONS(3496), + [anon_sym_u8_SQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_L_DQUOTE] = ACTIONS(3496), + [anon_sym_u_DQUOTE] = ACTIONS(3496), + [anon_sym_U_DQUOTE] = ACTIONS(3496), + [anon_sym_u8_DQUOTE] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [anon_sym_NULL] = ACTIONS(3494), + [anon_sym_nullptr] = ACTIONS(3494), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3494), + [anon_sym_decltype] = ACTIONS(3494), + [anon_sym_explicit] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_template] = ACTIONS(3494), + [anon_sym_operator] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_static_assert] = ACTIONS(3494), + [anon_sym_concept] = ACTIONS(3494), + [anon_sym_co_return] = ACTIONS(3494), + [anon_sym_co_yield] = ACTIONS(3494), + [anon_sym_R_DQUOTE] = ACTIONS(3496), + [anon_sym_LR_DQUOTE] = ACTIONS(3496), + [anon_sym_uR_DQUOTE] = ACTIONS(3496), + [anon_sym_UR_DQUOTE] = ACTIONS(3496), + [anon_sym_u8R_DQUOTE] = ACTIONS(3496), + [anon_sym_co_await] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_requires] = ACTIONS(3494), + [anon_sym_CARET_CARET] = ACTIONS(3496), + [anon_sym_LBRACK_COLON] = ACTIONS(3496), + [sym_this] = ACTIONS(3494), }, [STATE(327)] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(10750), - [sym_preproc_elif_in_field_declaration_list] = STATE(10750), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10750), - [sym_type_definition] = STATE(555), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(555), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(555), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(555), - [sym_operator_cast_declaration] = STATE(555), - [sym_constructor_or_destructor_definition] = STATE(555), - [sym_constructor_or_destructor_declaration] = STATE(555), - [sym_friend_declaration] = STATE(555), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(555), - [sym_alias_declaration] = STATE(555), - [sym_static_assert_declaration] = STATE(555), - [sym_consteval_block_declaration] = STATE(555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3490), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(3460), - [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(3462), - [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(3464), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3498), + [aux_sym_preproc_include_token1] = ACTIONS(3498), + [aux_sym_preproc_def_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3498), + [aux_sym_preproc_else_token1] = ACTIONS(3498), + [aux_sym_preproc_elif_token1] = ACTIONS(3498), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3498), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3498), + [sym_preproc_directive] = ACTIONS(3498), + [anon_sym_LPAREN2] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3500), + [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym___extension__] = ACTIONS(3498), + [anon_sym_typedef] = ACTIONS(3498), + [anon_sym_virtual] = ACTIONS(3498), + [anon_sym_extern] = ACTIONS(3498), + [anon_sym___attribute__] = ACTIONS(3498), + [anon_sym___attribute] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_COLON_COLON] = ACTIONS(3500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3500), + [anon_sym___declspec] = ACTIONS(3498), + [anon_sym___based] = ACTIONS(3498), + [anon_sym___cdecl] = ACTIONS(3498), + [anon_sym___clrcall] = ACTIONS(3498), + [anon_sym___stdcall] = ACTIONS(3498), + [anon_sym___fastcall] = ACTIONS(3498), + [anon_sym___thiscall] = ACTIONS(3498), + [anon_sym___vectorcall] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_signed] = ACTIONS(3498), + [anon_sym_unsigned] = ACTIONS(3498), + [anon_sym_long] = ACTIONS(3498), + [anon_sym_short] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_register] = ACTIONS(3498), + [anon_sym_inline] = ACTIONS(3498), + [anon_sym___inline] = ACTIONS(3498), + [anon_sym___inline__] = ACTIONS(3498), + [anon_sym___forceinline] = ACTIONS(3498), + [anon_sym_thread_local] = ACTIONS(3498), + [anon_sym___thread] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_constexpr] = ACTIONS(3498), + [anon_sym_volatile] = ACTIONS(3498), + [anon_sym_restrict] = ACTIONS(3498), + [anon_sym___restrict__] = ACTIONS(3498), + [anon_sym__Atomic] = ACTIONS(3498), + [anon_sym__Noreturn] = ACTIONS(3498), + [anon_sym_noreturn] = ACTIONS(3498), + [anon_sym__Nonnull] = ACTIONS(3498), + [anon_sym_mutable] = ACTIONS(3498), + [anon_sym_constinit] = ACTIONS(3498), + [anon_sym_consteval] = ACTIONS(3498), + [anon_sym_alignas] = ACTIONS(3498), + [anon_sym__Alignas] = ACTIONS(3498), + [sym_primitive_type] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_struct] = ACTIONS(3498), + [anon_sym_union] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_else] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_case] = ACTIONS(3498), + [anon_sym_default] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_goto] = ACTIONS(3498), + [anon_sym___try] = ACTIONS(3498), + [anon_sym___leave] = ACTIONS(3498), + [anon_sym_not] = ACTIONS(3498), + [anon_sym_compl] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_sizeof] = ACTIONS(3498), + [anon_sym___alignof__] = ACTIONS(3498), + [anon_sym___alignof] = ACTIONS(3498), + [anon_sym__alignof] = ACTIONS(3498), + [anon_sym_alignof] = ACTIONS(3498), + [anon_sym__Alignof] = ACTIONS(3498), + [anon_sym_offsetof] = ACTIONS(3498), + [anon_sym__Generic] = ACTIONS(3498), + [anon_sym_typename] = ACTIONS(3498), + [anon_sym_asm] = ACTIONS(3498), + [anon_sym___asm__] = ACTIONS(3498), + [anon_sym___asm] = ACTIONS(3498), + [sym_number_literal] = ACTIONS(3500), + [anon_sym_L_SQUOTE] = ACTIONS(3500), + [anon_sym_u_SQUOTE] = ACTIONS(3500), + [anon_sym_U_SQUOTE] = ACTIONS(3500), + [anon_sym_u8_SQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_L_DQUOTE] = ACTIONS(3500), + [anon_sym_u_DQUOTE] = ACTIONS(3500), + [anon_sym_U_DQUOTE] = ACTIONS(3500), + [anon_sym_u8_DQUOTE] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [anon_sym_NULL] = ACTIONS(3498), + [anon_sym_nullptr] = ACTIONS(3498), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3498), + [anon_sym_decltype] = ACTIONS(3498), + [anon_sym_explicit] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_template] = ACTIONS(3498), + [anon_sym_operator] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_static_assert] = ACTIONS(3498), + [anon_sym_concept] = ACTIONS(3498), + [anon_sym_co_return] = ACTIONS(3498), + [anon_sym_co_yield] = ACTIONS(3498), + [anon_sym_R_DQUOTE] = ACTIONS(3500), + [anon_sym_LR_DQUOTE] = ACTIONS(3500), + [anon_sym_uR_DQUOTE] = ACTIONS(3500), + [anon_sym_UR_DQUOTE] = ACTIONS(3500), + [anon_sym_u8R_DQUOTE] = ACTIONS(3500), + [anon_sym_co_await] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_requires] = ACTIONS(3498), + [anon_sym_CARET_CARET] = ACTIONS(3500), + [anon_sym_LBRACK_COLON] = ACTIONS(3500), + [sym_this] = ACTIONS(3498), }, [STATE(328)] = { - [sym_identifier] = ACTIONS(3310), - [aux_sym_preproc_include_token1] = ACTIONS(3310), - [aux_sym_preproc_def_token1] = ACTIONS(3310), - [aux_sym_preproc_if_token1] = ACTIONS(3310), - [aux_sym_preproc_if_token2] = ACTIONS(3310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3310), - [aux_sym_preproc_else_token1] = ACTIONS(3310), - [aux_sym_preproc_elif_token1] = ACTIONS(3310), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3310), - [sym_preproc_directive] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3310), - [anon_sym_PLUS] = ACTIONS(3310), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3310), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym___extension__] = ACTIONS(3310), - [anon_sym_typedef] = ACTIONS(3310), - [anon_sym_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), - [anon_sym___declspec] = ACTIONS(3310), - [anon_sym___based] = ACTIONS(3310), - [anon_sym___cdecl] = ACTIONS(3310), - [anon_sym___clrcall] = ACTIONS(3310), - [anon_sym___stdcall] = ACTIONS(3310), - [anon_sym___fastcall] = ACTIONS(3310), - [anon_sym___thiscall] = ACTIONS(3310), - [anon_sym___vectorcall] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_signed] = ACTIONS(3310), - [anon_sym_unsigned] = ACTIONS(3310), - [anon_sym_long] = ACTIONS(3310), - [anon_sym_short] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3310), - [anon_sym_register] = ACTIONS(3310), - [anon_sym_inline] = ACTIONS(3310), - [anon_sym___inline] = ACTIONS(3310), - [anon_sym___inline__] = ACTIONS(3310), - [anon_sym___forceinline] = ACTIONS(3310), - [anon_sym_thread_local] = ACTIONS(3310), - [anon_sym___thread] = ACTIONS(3310), - [anon_sym_const] = ACTIONS(3310), - [anon_sym_constexpr] = ACTIONS(3310), - [anon_sym_volatile] = ACTIONS(3310), - [anon_sym_restrict] = ACTIONS(3310), - [anon_sym___restrict__] = ACTIONS(3310), - [anon_sym__Atomic] = ACTIONS(3310), - [anon_sym__Noreturn] = ACTIONS(3310), - [anon_sym_noreturn] = ACTIONS(3310), - [anon_sym__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_else] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3310), - [anon_sym_case] = ACTIONS(3310), - [anon_sym_default] = ACTIONS(3310), - [anon_sym_while] = ACTIONS(3310), - [anon_sym_do] = ACTIONS(3310), - [anon_sym_for] = ACTIONS(3310), - [anon_sym_return] = ACTIONS(3310), - [anon_sym_break] = ACTIONS(3310), - [anon_sym_continue] = ACTIONS(3310), - [anon_sym_goto] = ACTIONS(3310), - [anon_sym___try] = ACTIONS(3310), - [anon_sym___leave] = ACTIONS(3310), - [anon_sym_not] = ACTIONS(3310), - [anon_sym_compl] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_sizeof] = ACTIONS(3310), - [anon_sym___alignof__] = ACTIONS(3310), - [anon_sym___alignof] = ACTIONS(3310), - [anon_sym__alignof] = ACTIONS(3310), - [anon_sym_alignof] = ACTIONS(3310), - [anon_sym__Alignof] = ACTIONS(3310), - [anon_sym_offsetof] = ACTIONS(3310), - [anon_sym__Generic] = ACTIONS(3310), - [anon_sym_typename] = ACTIONS(3310), - [anon_sym_asm] = ACTIONS(3310), - [anon_sym___asm__] = ACTIONS(3310), - [anon_sym___asm] = ACTIONS(3310), - [sym_number_literal] = ACTIONS(3315), - [anon_sym_L_SQUOTE] = ACTIONS(3315), - [anon_sym_u_SQUOTE] = ACTIONS(3315), - [anon_sym_U_SQUOTE] = ACTIONS(3315), - [anon_sym_u8_SQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_L_DQUOTE] = ACTIONS(3315), - [anon_sym_u_DQUOTE] = ACTIONS(3315), - [anon_sym_U_DQUOTE] = ACTIONS(3315), - [anon_sym_u8_DQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [anon_sym_NULL] = ACTIONS(3310), - [anon_sym_nullptr] = ACTIONS(3310), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3310), - [anon_sym_decltype] = ACTIONS(3310), - [anon_sym_explicit] = ACTIONS(3310), - [anon_sym_export] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3310), - [anon_sym_import] = ACTIONS(3310), - [anon_sym_template] = ACTIONS(3310), - [anon_sym_operator] = ACTIONS(3310), - [anon_sym_try] = ACTIONS(3310), - [anon_sym_delete] = ACTIONS(3310), - [anon_sym_throw] = ACTIONS(3310), - [anon_sym_namespace] = ACTIONS(3310), - [anon_sym_static_assert] = ACTIONS(3310), - [anon_sym_concept] = ACTIONS(3310), - [anon_sym_co_return] = ACTIONS(3310), - [anon_sym_co_yield] = ACTIONS(3310), - [anon_sym_R_DQUOTE] = ACTIONS(3315), - [anon_sym_LR_DQUOTE] = ACTIONS(3315), - [anon_sym_uR_DQUOTE] = ACTIONS(3315), - [anon_sym_UR_DQUOTE] = ACTIONS(3315), - [anon_sym_u8R_DQUOTE] = ACTIONS(3315), - [anon_sym_co_await] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3310), - [anon_sym_requires] = ACTIONS(3310), - [anon_sym_CARET_CARET] = ACTIONS(3315), - [anon_sym_LBRACK_COLON] = ACTIONS(3315), - [sym_this] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3502), + [aux_sym_preproc_include_token1] = ACTIONS(3502), + [aux_sym_preproc_def_token1] = ACTIONS(3502), + [aux_sym_preproc_if_token1] = ACTIONS(3502), + [aux_sym_preproc_if_token2] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [aux_sym_preproc_else_token1] = ACTIONS(3502), + [aux_sym_preproc_elif_token1] = ACTIONS(3502), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3502), + [sym_preproc_directive] = ACTIONS(3502), + [anon_sym_LPAREN2] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3504), + [anon_sym_AMP] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym___extension__] = ACTIONS(3502), + [anon_sym_typedef] = ACTIONS(3502), + [anon_sym_virtual] = ACTIONS(3502), + [anon_sym_extern] = ACTIONS(3502), + [anon_sym___attribute__] = ACTIONS(3502), + [anon_sym___attribute] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_COLON_COLON] = ACTIONS(3504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3504), + [anon_sym___declspec] = ACTIONS(3502), + [anon_sym___based] = ACTIONS(3502), + [anon_sym___cdecl] = ACTIONS(3502), + [anon_sym___clrcall] = ACTIONS(3502), + [anon_sym___stdcall] = ACTIONS(3502), + [anon_sym___fastcall] = ACTIONS(3502), + [anon_sym___thiscall] = ACTIONS(3502), + [anon_sym___vectorcall] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_signed] = ACTIONS(3502), + [anon_sym_unsigned] = ACTIONS(3502), + [anon_sym_long] = ACTIONS(3502), + [anon_sym_short] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_register] = ACTIONS(3502), + [anon_sym_inline] = ACTIONS(3502), + [anon_sym___inline] = ACTIONS(3502), + [anon_sym___inline__] = ACTIONS(3502), + [anon_sym___forceinline] = ACTIONS(3502), + [anon_sym_thread_local] = ACTIONS(3502), + [anon_sym___thread] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_constexpr] = ACTIONS(3502), + [anon_sym_volatile] = ACTIONS(3502), + [anon_sym_restrict] = ACTIONS(3502), + [anon_sym___restrict__] = ACTIONS(3502), + [anon_sym__Atomic] = ACTIONS(3502), + [anon_sym__Noreturn] = ACTIONS(3502), + [anon_sym_noreturn] = ACTIONS(3502), + [anon_sym__Nonnull] = ACTIONS(3502), + [anon_sym_mutable] = ACTIONS(3502), + [anon_sym_constinit] = ACTIONS(3502), + [anon_sym_consteval] = ACTIONS(3502), + [anon_sym_alignas] = ACTIONS(3502), + [anon_sym__Alignas] = ACTIONS(3502), + [sym_primitive_type] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_struct] = ACTIONS(3502), + [anon_sym_union] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_else] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_case] = ACTIONS(3502), + [anon_sym_default] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_goto] = ACTIONS(3502), + [anon_sym___try] = ACTIONS(3502), + [anon_sym___leave] = ACTIONS(3502), + [anon_sym_not] = ACTIONS(3502), + [anon_sym_compl] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_PLUS_PLUS] = ACTIONS(3504), + [anon_sym_sizeof] = ACTIONS(3502), + [anon_sym___alignof__] = ACTIONS(3502), + [anon_sym___alignof] = ACTIONS(3502), + [anon_sym__alignof] = ACTIONS(3502), + [anon_sym_alignof] = ACTIONS(3502), + [anon_sym__Alignof] = ACTIONS(3502), + [anon_sym_offsetof] = ACTIONS(3502), + [anon_sym__Generic] = ACTIONS(3502), + [anon_sym_typename] = ACTIONS(3502), + [anon_sym_asm] = ACTIONS(3502), + [anon_sym___asm__] = ACTIONS(3502), + [anon_sym___asm] = ACTIONS(3502), + [sym_number_literal] = ACTIONS(3504), + [anon_sym_L_SQUOTE] = ACTIONS(3504), + [anon_sym_u_SQUOTE] = ACTIONS(3504), + [anon_sym_U_SQUOTE] = ACTIONS(3504), + [anon_sym_u8_SQUOTE] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3504), + [anon_sym_L_DQUOTE] = ACTIONS(3504), + [anon_sym_u_DQUOTE] = ACTIONS(3504), + [anon_sym_U_DQUOTE] = ACTIONS(3504), + [anon_sym_u8_DQUOTE] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [anon_sym_NULL] = ACTIONS(3502), + [anon_sym_nullptr] = ACTIONS(3502), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3502), + [anon_sym_decltype] = ACTIONS(3502), + [anon_sym_explicit] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_template] = ACTIONS(3502), + [anon_sym_operator] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_static_assert] = ACTIONS(3502), + [anon_sym_concept] = ACTIONS(3502), + [anon_sym_co_return] = ACTIONS(3502), + [anon_sym_co_yield] = ACTIONS(3502), + [anon_sym_R_DQUOTE] = ACTIONS(3504), + [anon_sym_LR_DQUOTE] = ACTIONS(3504), + [anon_sym_uR_DQUOTE] = ACTIONS(3504), + [anon_sym_UR_DQUOTE] = ACTIONS(3504), + [anon_sym_u8R_DQUOTE] = ACTIONS(3504), + [anon_sym_co_await] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_requires] = ACTIONS(3502), + [anon_sym_CARET_CARET] = ACTIONS(3504), + [anon_sym_LBRACK_COLON] = ACTIONS(3504), + [sym_this] = ACTIONS(3502), }, [STATE(329)] = { - [sym_preproc_def] = STATE(331), - [sym_preproc_function_def] = STATE(331), - [sym_preproc_call] = STATE(331), - [sym_preproc_if_in_field_declaration_list] = STATE(331), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(331), - [sym_preproc_else_in_field_declaration_list] = STATE(10796), - [sym_preproc_elif_in_field_declaration_list] = STATE(10796), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10796), - [sym_type_definition] = STATE(331), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(331), - [sym_field_declaration] = STATE(331), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(331), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(331), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(331), - [sym_operator_cast_declaration] = STATE(331), - [sym_constructor_or_destructor_definition] = STATE(331), - [sym_constructor_or_destructor_declaration] = STATE(331), - [sym_friend_declaration] = STATE(331), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(331), - [sym_alias_declaration] = STATE(331), - [sym_static_assert_declaration] = STATE(331), - [sym_consteval_block_declaration] = STATE(331), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(331), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3494), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(3460), - [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(3462), - [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(3464), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3506), + [aux_sym_preproc_include_token1] = ACTIONS(3506), + [aux_sym_preproc_def_token1] = ACTIONS(3506), + [aux_sym_preproc_if_token1] = ACTIONS(3506), + [aux_sym_preproc_if_token2] = ACTIONS(3506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3506), + [aux_sym_preproc_else_token1] = ACTIONS(3506), + [aux_sym_preproc_elif_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3506), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3506), + [sym_preproc_directive] = ACTIONS(3506), + [anon_sym_LPAREN2] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_STAR] = ACTIONS(3508), + [anon_sym_AMP_AMP] = ACTIONS(3508), + [anon_sym_AMP] = ACTIONS(3506), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym___extension__] = ACTIONS(3506), + [anon_sym_typedef] = ACTIONS(3506), + [anon_sym_virtual] = ACTIONS(3506), + [anon_sym_extern] = ACTIONS(3506), + [anon_sym___attribute__] = ACTIONS(3506), + [anon_sym___attribute] = ACTIONS(3506), + [anon_sym_using] = ACTIONS(3506), + [anon_sym_COLON_COLON] = ACTIONS(3508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3508), + [anon_sym___declspec] = ACTIONS(3506), + [anon_sym___based] = ACTIONS(3506), + [anon_sym___cdecl] = ACTIONS(3506), + [anon_sym___clrcall] = ACTIONS(3506), + [anon_sym___stdcall] = ACTIONS(3506), + [anon_sym___fastcall] = ACTIONS(3506), + [anon_sym___thiscall] = ACTIONS(3506), + [anon_sym___vectorcall] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_signed] = ACTIONS(3506), + [anon_sym_unsigned] = ACTIONS(3506), + [anon_sym_long] = ACTIONS(3506), + [anon_sym_short] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_register] = ACTIONS(3506), + [anon_sym_inline] = ACTIONS(3506), + [anon_sym___inline] = ACTIONS(3506), + [anon_sym___inline__] = ACTIONS(3506), + [anon_sym___forceinline] = ACTIONS(3506), + [anon_sym_thread_local] = ACTIONS(3506), + [anon_sym___thread] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3506), + [anon_sym_constexpr] = ACTIONS(3506), + [anon_sym_volatile] = ACTIONS(3506), + [anon_sym_restrict] = ACTIONS(3506), + [anon_sym___restrict__] = ACTIONS(3506), + [anon_sym__Atomic] = ACTIONS(3506), + [anon_sym__Noreturn] = ACTIONS(3506), + [anon_sym_noreturn] = ACTIONS(3506), + [anon_sym__Nonnull] = ACTIONS(3506), + [anon_sym_mutable] = ACTIONS(3506), + [anon_sym_constinit] = ACTIONS(3506), + [anon_sym_consteval] = ACTIONS(3506), + [anon_sym_alignas] = ACTIONS(3506), + [anon_sym__Alignas] = ACTIONS(3506), + [sym_primitive_type] = ACTIONS(3506), + [anon_sym_enum] = ACTIONS(3506), + [anon_sym_class] = ACTIONS(3506), + [anon_sym_struct] = ACTIONS(3506), + [anon_sym_union] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_else] = ACTIONS(3506), + [anon_sym_switch] = ACTIONS(3506), + [anon_sym_case] = ACTIONS(3506), + [anon_sym_default] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_do] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_goto] = ACTIONS(3506), + [anon_sym___try] = ACTIONS(3506), + [anon_sym___leave] = ACTIONS(3506), + [anon_sym_not] = ACTIONS(3506), + [anon_sym_compl] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3508), + [anon_sym_sizeof] = ACTIONS(3506), + [anon_sym___alignof__] = ACTIONS(3506), + [anon_sym___alignof] = ACTIONS(3506), + [anon_sym__alignof] = ACTIONS(3506), + [anon_sym_alignof] = ACTIONS(3506), + [anon_sym__Alignof] = ACTIONS(3506), + [anon_sym_offsetof] = ACTIONS(3506), + [anon_sym__Generic] = ACTIONS(3506), + [anon_sym_typename] = ACTIONS(3506), + [anon_sym_asm] = ACTIONS(3506), + [anon_sym___asm__] = ACTIONS(3506), + [anon_sym___asm] = ACTIONS(3506), + [sym_number_literal] = ACTIONS(3508), + [anon_sym_L_SQUOTE] = ACTIONS(3508), + [anon_sym_u_SQUOTE] = ACTIONS(3508), + [anon_sym_U_SQUOTE] = ACTIONS(3508), + [anon_sym_u8_SQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3508), + [anon_sym_L_DQUOTE] = ACTIONS(3508), + [anon_sym_u_DQUOTE] = ACTIONS(3508), + [anon_sym_U_DQUOTE] = ACTIONS(3508), + [anon_sym_u8_DQUOTE] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [anon_sym_NULL] = ACTIONS(3506), + [anon_sym_nullptr] = ACTIONS(3506), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3506), + [anon_sym_decltype] = ACTIONS(3506), + [anon_sym_explicit] = ACTIONS(3506), + [anon_sym_export] = ACTIONS(3506), + [anon_sym_module] = ACTIONS(3506), + [anon_sym_import] = ACTIONS(3506), + [anon_sym_template] = ACTIONS(3506), + [anon_sym_operator] = ACTIONS(3506), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_delete] = ACTIONS(3506), + [anon_sym_throw] = ACTIONS(3506), + [anon_sym_namespace] = ACTIONS(3506), + [anon_sym_static_assert] = ACTIONS(3506), + [anon_sym_concept] = ACTIONS(3506), + [anon_sym_co_return] = ACTIONS(3506), + [anon_sym_co_yield] = ACTIONS(3506), + [anon_sym_R_DQUOTE] = ACTIONS(3508), + [anon_sym_LR_DQUOTE] = ACTIONS(3508), + [anon_sym_uR_DQUOTE] = ACTIONS(3508), + [anon_sym_UR_DQUOTE] = ACTIONS(3508), + [anon_sym_u8R_DQUOTE] = ACTIONS(3508), + [anon_sym_co_await] = ACTIONS(3506), + [anon_sym_new] = ACTIONS(3506), + [anon_sym_requires] = ACTIONS(3506), + [anon_sym_CARET_CARET] = ACTIONS(3508), + [anon_sym_LBRACK_COLON] = ACTIONS(3508), + [sym_this] = ACTIONS(3506), }, [STATE(330)] = { - [sym_preproc_def] = STATE(332), - [sym_preproc_function_def] = STATE(332), - [sym_preproc_call] = STATE(332), - [sym_preproc_if_in_field_declaration_list] = STATE(332), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(332), - [sym_preproc_else_in_field_declaration_list] = STATE(11637), - [sym_preproc_elif_in_field_declaration_list] = STATE(11637), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11637), - [sym_type_definition] = STATE(332), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(332), - [sym_field_declaration] = STATE(332), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(332), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(332), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(332), - [sym_operator_cast_declaration] = STATE(332), - [sym_constructor_or_destructor_definition] = STATE(332), - [sym_constructor_or_destructor_declaration] = STATE(332), - [sym_friend_declaration] = STATE(332), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(332), - [sym_alias_declaration] = STATE(332), - [sym_static_assert_declaration] = STATE(332), - [sym_consteval_block_declaration] = STATE(332), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(332), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3498), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_identifier] = ACTIONS(3510), + [aux_sym_preproc_include_token1] = ACTIONS(3510), + [aux_sym_preproc_def_token1] = ACTIONS(3510), + [aux_sym_preproc_if_token1] = ACTIONS(3510), + [aux_sym_preproc_if_token2] = ACTIONS(3510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3510), + [aux_sym_preproc_else_token1] = ACTIONS(3510), + [aux_sym_preproc_elif_token1] = ACTIONS(3510), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3510), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3510), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_STAR] = ACTIONS(3512), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_AMP] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym___extension__] = ACTIONS(3510), + [anon_sym_typedef] = ACTIONS(3510), + [anon_sym_virtual] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3510), + [anon_sym___attribute__] = ACTIONS(3510), + [anon_sym___attribute] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_COLON_COLON] = ACTIONS(3512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3512), + [anon_sym___declspec] = ACTIONS(3510), + [anon_sym___based] = ACTIONS(3510), + [anon_sym___cdecl] = ACTIONS(3510), + [anon_sym___clrcall] = ACTIONS(3510), + [anon_sym___stdcall] = ACTIONS(3510), + [anon_sym___fastcall] = ACTIONS(3510), + [anon_sym___thiscall] = ACTIONS(3510), + [anon_sym___vectorcall] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_signed] = ACTIONS(3510), + [anon_sym_unsigned] = ACTIONS(3510), + [anon_sym_long] = ACTIONS(3510), + [anon_sym_short] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_register] = ACTIONS(3510), + [anon_sym_inline] = ACTIONS(3510), + [anon_sym___inline] = ACTIONS(3510), + [anon_sym___inline__] = ACTIONS(3510), + [anon_sym___forceinline] = ACTIONS(3510), + [anon_sym_thread_local] = ACTIONS(3510), + [anon_sym___thread] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_constexpr] = ACTIONS(3510), + [anon_sym_volatile] = ACTIONS(3510), + [anon_sym_restrict] = ACTIONS(3510), + [anon_sym___restrict__] = ACTIONS(3510), + [anon_sym__Atomic] = ACTIONS(3510), + [anon_sym__Noreturn] = ACTIONS(3510), + [anon_sym_noreturn] = ACTIONS(3510), + [anon_sym__Nonnull] = ACTIONS(3510), + [anon_sym_mutable] = ACTIONS(3510), + [anon_sym_constinit] = ACTIONS(3510), + [anon_sym_consteval] = ACTIONS(3510), + [anon_sym_alignas] = ACTIONS(3510), + [anon_sym__Alignas] = ACTIONS(3510), + [sym_primitive_type] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_struct] = ACTIONS(3510), + [anon_sym_union] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_else] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_case] = ACTIONS(3510), + [anon_sym_default] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_goto] = ACTIONS(3510), + [anon_sym___try] = ACTIONS(3510), + [anon_sym___leave] = ACTIONS(3510), + [anon_sym_not] = ACTIONS(3510), + [anon_sym_compl] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_sizeof] = ACTIONS(3510), + [anon_sym___alignof__] = ACTIONS(3510), + [anon_sym___alignof] = ACTIONS(3510), + [anon_sym__alignof] = ACTIONS(3510), + [anon_sym_alignof] = ACTIONS(3510), + [anon_sym__Alignof] = ACTIONS(3510), + [anon_sym_offsetof] = ACTIONS(3510), + [anon_sym__Generic] = ACTIONS(3510), + [anon_sym_typename] = ACTIONS(3510), + [anon_sym_asm] = ACTIONS(3510), + [anon_sym___asm__] = ACTIONS(3510), + [anon_sym___asm] = ACTIONS(3510), + [sym_number_literal] = ACTIONS(3512), + [anon_sym_L_SQUOTE] = ACTIONS(3512), + [anon_sym_u_SQUOTE] = ACTIONS(3512), + [anon_sym_U_SQUOTE] = ACTIONS(3512), + [anon_sym_u8_SQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_L_DQUOTE] = ACTIONS(3512), + [anon_sym_u_DQUOTE] = ACTIONS(3512), + [anon_sym_U_DQUOTE] = ACTIONS(3512), + [anon_sym_u8_DQUOTE] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [anon_sym_NULL] = ACTIONS(3510), + [anon_sym_nullptr] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3510), + [anon_sym_decltype] = ACTIONS(3510), + [anon_sym_explicit] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_template] = ACTIONS(3510), + [anon_sym_operator] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_static_assert] = ACTIONS(3510), + [anon_sym_concept] = ACTIONS(3510), + [anon_sym_co_return] = ACTIONS(3510), + [anon_sym_co_yield] = ACTIONS(3510), + [anon_sym_R_DQUOTE] = ACTIONS(3512), + [anon_sym_LR_DQUOTE] = ACTIONS(3512), + [anon_sym_uR_DQUOTE] = ACTIONS(3512), + [anon_sym_UR_DQUOTE] = ACTIONS(3512), + [anon_sym_u8R_DQUOTE] = ACTIONS(3512), + [anon_sym_co_await] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_requires] = ACTIONS(3510), + [anon_sym_CARET_CARET] = ACTIONS(3512), + [anon_sym_LBRACK_COLON] = ACTIONS(3512), + [sym_this] = ACTIONS(3510), + }, + [STATE(331)] = { + [sym_identifier] = ACTIONS(3514), + [aux_sym_preproc_include_token1] = ACTIONS(3514), + [aux_sym_preproc_def_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token2] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3514), + [aux_sym_preproc_else_token1] = ACTIONS(3514), + [aux_sym_preproc_elif_token1] = ACTIONS(3514), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3514), + [sym_preproc_directive] = ACTIONS(3514), + [anon_sym_LPAREN2] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym___extension__] = ACTIONS(3514), + [anon_sym_typedef] = ACTIONS(3514), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3514), + [anon_sym___attribute__] = ACTIONS(3514), + [anon_sym___attribute] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_COLON_COLON] = ACTIONS(3516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3514), + [anon_sym___based] = ACTIONS(3514), + [anon_sym___cdecl] = ACTIONS(3514), + [anon_sym___clrcall] = ACTIONS(3514), + [anon_sym___stdcall] = ACTIONS(3514), + [anon_sym___fastcall] = ACTIONS(3514), + [anon_sym___thiscall] = ACTIONS(3514), + [anon_sym___vectorcall] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_signed] = ACTIONS(3514), + [anon_sym_unsigned] = ACTIONS(3514), + [anon_sym_long] = ACTIONS(3514), + [anon_sym_short] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_register] = ACTIONS(3514), + [anon_sym_inline] = ACTIONS(3514), + [anon_sym___inline] = ACTIONS(3514), + [anon_sym___inline__] = ACTIONS(3514), + [anon_sym___forceinline] = ACTIONS(3514), + [anon_sym_thread_local] = ACTIONS(3514), + [anon_sym___thread] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_constexpr] = ACTIONS(3514), + [anon_sym_volatile] = ACTIONS(3514), + [anon_sym_restrict] = ACTIONS(3514), + [anon_sym___restrict__] = ACTIONS(3514), + [anon_sym__Atomic] = ACTIONS(3514), + [anon_sym__Noreturn] = ACTIONS(3514), + [anon_sym_noreturn] = ACTIONS(3514), + [anon_sym__Nonnull] = ACTIONS(3514), + [anon_sym_mutable] = ACTIONS(3514), + [anon_sym_constinit] = ACTIONS(3514), + [anon_sym_consteval] = ACTIONS(3514), + [anon_sym_alignas] = ACTIONS(3514), + [anon_sym__Alignas] = ACTIONS(3514), + [sym_primitive_type] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_struct] = ACTIONS(3514), + [anon_sym_union] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_else] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_case] = ACTIONS(3514), + [anon_sym_default] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_goto] = ACTIONS(3514), + [anon_sym___try] = ACTIONS(3514), + [anon_sym___leave] = ACTIONS(3514), + [anon_sym_not] = ACTIONS(3514), + [anon_sym_compl] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_sizeof] = ACTIONS(3514), + [anon_sym___alignof__] = ACTIONS(3514), + [anon_sym___alignof] = ACTIONS(3514), + [anon_sym__alignof] = ACTIONS(3514), + [anon_sym_alignof] = ACTIONS(3514), + [anon_sym__Alignof] = ACTIONS(3514), + [anon_sym_offsetof] = ACTIONS(3514), + [anon_sym__Generic] = ACTIONS(3514), + [anon_sym_typename] = ACTIONS(3514), + [anon_sym_asm] = ACTIONS(3514), + [anon_sym___asm__] = ACTIONS(3514), + [anon_sym___asm] = ACTIONS(3514), + [sym_number_literal] = ACTIONS(3516), + [anon_sym_L_SQUOTE] = ACTIONS(3516), + [anon_sym_u_SQUOTE] = ACTIONS(3516), + [anon_sym_U_SQUOTE] = ACTIONS(3516), + [anon_sym_u8_SQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_L_DQUOTE] = ACTIONS(3516), + [anon_sym_u_DQUOTE] = ACTIONS(3516), + [anon_sym_U_DQUOTE] = ACTIONS(3516), + [anon_sym_u8_DQUOTE] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [anon_sym_NULL] = ACTIONS(3514), + [anon_sym_nullptr] = ACTIONS(3514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3514), + [anon_sym_decltype] = ACTIONS(3514), + [anon_sym_explicit] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_template] = ACTIONS(3514), + [anon_sym_operator] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_static_assert] = ACTIONS(3514), + [anon_sym_concept] = ACTIONS(3514), + [anon_sym_co_return] = ACTIONS(3514), + [anon_sym_co_yield] = ACTIONS(3514), + [anon_sym_R_DQUOTE] = ACTIONS(3516), + [anon_sym_LR_DQUOTE] = ACTIONS(3516), + [anon_sym_uR_DQUOTE] = ACTIONS(3516), + [anon_sym_UR_DQUOTE] = ACTIONS(3516), + [anon_sym_u8R_DQUOTE] = ACTIONS(3516), + [anon_sym_co_await] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_requires] = ACTIONS(3514), + [anon_sym_CARET_CARET] = ACTIONS(3516), + [anon_sym_LBRACK_COLON] = ACTIONS(3516), + [sym_this] = ACTIONS(3514), + }, + [STATE(332)] = { + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_include_token1] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token2] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [aux_sym_preproc_else_token1] = ACTIONS(3518), + [aux_sym_preproc_elif_token1] = ACTIONS(3518), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym___cdecl] = ACTIONS(3518), + [anon_sym___clrcall] = ACTIONS(3518), + [anon_sym___stdcall] = ACTIONS(3518), + [anon_sym___fastcall] = ACTIONS(3518), + [anon_sym___thiscall] = ACTIONS(3518), + [anon_sym___vectorcall] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym___try] = ACTIONS(3518), + [anon_sym___leave] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(3518), + [anon_sym_compl] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [anon_sym___alignof__] = ACTIONS(3518), + [anon_sym___alignof] = ACTIONS(3518), + [anon_sym__alignof] = ACTIONS(3518), + [anon_sym_alignof] = ACTIONS(3518), + [anon_sym__Alignof] = ACTIONS(3518), + [anon_sym_offsetof] = ACTIONS(3518), + [anon_sym__Generic] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [anon_sym_asm] = ACTIONS(3518), + [anon_sym___asm__] = ACTIONS(3518), + [anon_sym___asm] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [anon_sym_L_SQUOTE] = ACTIONS(3520), + [anon_sym_u_SQUOTE] = ACTIONS(3520), + [anon_sym_U_SQUOTE] = ACTIONS(3520), + [anon_sym_u8_SQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_L_DQUOTE] = ACTIONS(3520), + [anon_sym_u_DQUOTE] = ACTIONS(3520), + [anon_sym_U_DQUOTE] = ACTIONS(3520), + [anon_sym_u8_DQUOTE] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [anon_sym_NULL] = ACTIONS(3518), + [anon_sym_nullptr] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_concept] = ACTIONS(3518), + [anon_sym_co_return] = ACTIONS(3518), + [anon_sym_co_yield] = ACTIONS(3518), + [anon_sym_R_DQUOTE] = ACTIONS(3520), + [anon_sym_LR_DQUOTE] = ACTIONS(3520), + [anon_sym_uR_DQUOTE] = ACTIONS(3520), + [anon_sym_UR_DQUOTE] = ACTIONS(3520), + [anon_sym_u8R_DQUOTE] = ACTIONS(3520), + [anon_sym_co_await] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_requires] = ACTIONS(3518), + [anon_sym_CARET_CARET] = ACTIONS(3520), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + [sym_this] = ACTIONS(3518), + }, + [STATE(333)] = { + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_include_token1] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token2] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [aux_sym_preproc_else_token1] = ACTIONS(3518), + [aux_sym_preproc_elif_token1] = ACTIONS(3518), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym___cdecl] = ACTIONS(3518), + [anon_sym___clrcall] = ACTIONS(3518), + [anon_sym___stdcall] = ACTIONS(3518), + [anon_sym___fastcall] = ACTIONS(3518), + [anon_sym___thiscall] = ACTIONS(3518), + [anon_sym___vectorcall] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym___try] = ACTIONS(3518), + [anon_sym___leave] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(3518), + [anon_sym_compl] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [anon_sym___alignof__] = ACTIONS(3518), + [anon_sym___alignof] = ACTIONS(3518), + [anon_sym__alignof] = ACTIONS(3518), + [anon_sym_alignof] = ACTIONS(3518), + [anon_sym__Alignof] = ACTIONS(3518), + [anon_sym_offsetof] = ACTIONS(3518), + [anon_sym__Generic] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [anon_sym_asm] = ACTIONS(3518), + [anon_sym___asm__] = ACTIONS(3518), + [anon_sym___asm] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [anon_sym_L_SQUOTE] = ACTIONS(3520), + [anon_sym_u_SQUOTE] = ACTIONS(3520), + [anon_sym_U_SQUOTE] = ACTIONS(3520), + [anon_sym_u8_SQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_L_DQUOTE] = ACTIONS(3520), + [anon_sym_u_DQUOTE] = ACTIONS(3520), + [anon_sym_U_DQUOTE] = ACTIONS(3520), + [anon_sym_u8_DQUOTE] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [anon_sym_NULL] = ACTIONS(3518), + [anon_sym_nullptr] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_concept] = ACTIONS(3518), + [anon_sym_co_return] = ACTIONS(3518), + [anon_sym_co_yield] = ACTIONS(3518), + [anon_sym_R_DQUOTE] = ACTIONS(3520), + [anon_sym_LR_DQUOTE] = ACTIONS(3520), + [anon_sym_uR_DQUOTE] = ACTIONS(3520), + [anon_sym_UR_DQUOTE] = ACTIONS(3520), + [anon_sym_u8R_DQUOTE] = ACTIONS(3520), + [anon_sym_co_await] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_requires] = ACTIONS(3518), + [anon_sym_CARET_CARET] = ACTIONS(3520), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + [sym_this] = ACTIONS(3518), + }, + [STATE(334)] = { + [sym_identifier] = ACTIONS(3522), + [aux_sym_preproc_include_token1] = ACTIONS(3522), + [aux_sym_preproc_def_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token2] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3522), + [aux_sym_preproc_else_token1] = ACTIONS(3522), + [aux_sym_preproc_elif_token1] = ACTIONS(3522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3522), + [sym_preproc_directive] = ACTIONS(3522), + [anon_sym_LPAREN2] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3524), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_virtual] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym___attribute__] = ACTIONS(3522), + [anon_sym___attribute] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_COLON_COLON] = ACTIONS(3524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3524), + [anon_sym___declspec] = ACTIONS(3522), + [anon_sym___based] = ACTIONS(3522), + [anon_sym___cdecl] = ACTIONS(3522), + [anon_sym___clrcall] = ACTIONS(3522), + [anon_sym___stdcall] = ACTIONS(3522), + [anon_sym___fastcall] = ACTIONS(3522), + [anon_sym___thiscall] = ACTIONS(3522), + [anon_sym___vectorcall] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_signed] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym___inline] = ACTIONS(3522), + [anon_sym___inline__] = ACTIONS(3522), + [anon_sym___forceinline] = ACTIONS(3522), + [anon_sym_thread_local] = ACTIONS(3522), + [anon_sym___thread] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_constexpr] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym___restrict__] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym__Noreturn] = ACTIONS(3522), + [anon_sym_noreturn] = ACTIONS(3522), + [anon_sym__Nonnull] = ACTIONS(3522), + [anon_sym_mutable] = ACTIONS(3522), + [anon_sym_constinit] = ACTIONS(3522), + [anon_sym_consteval] = ACTIONS(3522), + [anon_sym_alignas] = ACTIONS(3522), + [anon_sym__Alignas] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_goto] = ACTIONS(3522), + [anon_sym___try] = ACTIONS(3522), + [anon_sym___leave] = ACTIONS(3522), + [anon_sym_not] = ACTIONS(3522), + [anon_sym_compl] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_sizeof] = ACTIONS(3522), + [anon_sym___alignof__] = ACTIONS(3522), + [anon_sym___alignof] = ACTIONS(3522), + [anon_sym__alignof] = ACTIONS(3522), + [anon_sym_alignof] = ACTIONS(3522), + [anon_sym__Alignof] = ACTIONS(3522), + [anon_sym_offsetof] = ACTIONS(3522), + [anon_sym__Generic] = ACTIONS(3522), + [anon_sym_typename] = ACTIONS(3522), + [anon_sym_asm] = ACTIONS(3522), + [anon_sym___asm__] = ACTIONS(3522), + [anon_sym___asm] = ACTIONS(3522), + [sym_number_literal] = ACTIONS(3524), + [anon_sym_L_SQUOTE] = ACTIONS(3524), + [anon_sym_u_SQUOTE] = ACTIONS(3524), + [anon_sym_U_SQUOTE] = ACTIONS(3524), + [anon_sym_u8_SQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_L_DQUOTE] = ACTIONS(3524), + [anon_sym_u_DQUOTE] = ACTIONS(3524), + [anon_sym_U_DQUOTE] = ACTIONS(3524), + [anon_sym_u8_DQUOTE] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [anon_sym_NULL] = ACTIONS(3522), + [anon_sym_nullptr] = ACTIONS(3522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3522), + [anon_sym_decltype] = ACTIONS(3522), + [anon_sym_explicit] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_template] = ACTIONS(3522), + [anon_sym_operator] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_static_assert] = ACTIONS(3522), + [anon_sym_concept] = ACTIONS(3522), + [anon_sym_co_return] = ACTIONS(3522), + [anon_sym_co_yield] = ACTIONS(3522), + [anon_sym_R_DQUOTE] = ACTIONS(3524), + [anon_sym_LR_DQUOTE] = ACTIONS(3524), + [anon_sym_uR_DQUOTE] = ACTIONS(3524), + [anon_sym_UR_DQUOTE] = ACTIONS(3524), + [anon_sym_u8R_DQUOTE] = ACTIONS(3524), + [anon_sym_co_await] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_requires] = ACTIONS(3522), + [anon_sym_CARET_CARET] = ACTIONS(3524), + [anon_sym_LBRACK_COLON] = ACTIONS(3524), + [sym_this] = ACTIONS(3522), + }, + [STATE(335)] = { + [sym_identifier] = ACTIONS(3526), + [aux_sym_preproc_include_token1] = ACTIONS(3526), + [aux_sym_preproc_def_token1] = ACTIONS(3526), + [aux_sym_preproc_if_token1] = ACTIONS(3526), + [aux_sym_preproc_if_token2] = ACTIONS(3526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3526), + [aux_sym_preproc_else_token1] = ACTIONS(3526), + [aux_sym_preproc_elif_token1] = ACTIONS(3526), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3526), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3526), + [sym_preproc_directive] = ACTIONS(3526), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_STAR] = ACTIONS(3528), + [anon_sym_AMP_AMP] = ACTIONS(3528), + [anon_sym_AMP] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym___extension__] = ACTIONS(3526), + [anon_sym_typedef] = ACTIONS(3526), + [anon_sym_virtual] = ACTIONS(3526), + [anon_sym_extern] = ACTIONS(3526), + [anon_sym___attribute__] = ACTIONS(3526), + [anon_sym___attribute] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3528), + [anon_sym___declspec] = ACTIONS(3526), + [anon_sym___based] = ACTIONS(3526), + [anon_sym___cdecl] = ACTIONS(3526), + [anon_sym___clrcall] = ACTIONS(3526), + [anon_sym___stdcall] = ACTIONS(3526), + [anon_sym___fastcall] = ACTIONS(3526), + [anon_sym___thiscall] = ACTIONS(3526), + [anon_sym___vectorcall] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_signed] = ACTIONS(3526), + [anon_sym_unsigned] = ACTIONS(3526), + [anon_sym_long] = ACTIONS(3526), + [anon_sym_short] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_register] = ACTIONS(3526), + [anon_sym_inline] = ACTIONS(3526), + [anon_sym___inline] = ACTIONS(3526), + [anon_sym___inline__] = ACTIONS(3526), + [anon_sym___forceinline] = ACTIONS(3526), + [anon_sym_thread_local] = ACTIONS(3526), + [anon_sym___thread] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_constexpr] = ACTIONS(3526), + [anon_sym_volatile] = ACTIONS(3526), + [anon_sym_restrict] = ACTIONS(3526), + [anon_sym___restrict__] = ACTIONS(3526), + [anon_sym__Atomic] = ACTIONS(3526), + [anon_sym__Noreturn] = ACTIONS(3526), + [anon_sym_noreturn] = ACTIONS(3526), + [anon_sym__Nonnull] = ACTIONS(3526), + [anon_sym_mutable] = ACTIONS(3526), + [anon_sym_constinit] = ACTIONS(3526), + [anon_sym_consteval] = ACTIONS(3526), + [anon_sym_alignas] = ACTIONS(3526), + [anon_sym__Alignas] = ACTIONS(3526), + [sym_primitive_type] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_struct] = ACTIONS(3526), + [anon_sym_union] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_else] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_case] = ACTIONS(3526), + [anon_sym_default] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_goto] = ACTIONS(3526), + [anon_sym___try] = ACTIONS(3526), + [anon_sym___leave] = ACTIONS(3526), + [anon_sym_not] = ACTIONS(3526), + [anon_sym_compl] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_sizeof] = ACTIONS(3526), + [anon_sym___alignof__] = ACTIONS(3526), + [anon_sym___alignof] = ACTIONS(3526), + [anon_sym__alignof] = ACTIONS(3526), + [anon_sym_alignof] = ACTIONS(3526), + [anon_sym__Alignof] = ACTIONS(3526), + [anon_sym_offsetof] = ACTIONS(3526), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_typename] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3526), + [anon_sym___asm__] = ACTIONS(3526), + [anon_sym___asm] = ACTIONS(3526), + [sym_number_literal] = ACTIONS(3528), + [anon_sym_L_SQUOTE] = ACTIONS(3528), + [anon_sym_u_SQUOTE] = ACTIONS(3528), + [anon_sym_U_SQUOTE] = ACTIONS(3528), + [anon_sym_u8_SQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_L_DQUOTE] = ACTIONS(3528), + [anon_sym_u_DQUOTE] = ACTIONS(3528), + [anon_sym_U_DQUOTE] = ACTIONS(3528), + [anon_sym_u8_DQUOTE] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [anon_sym_NULL] = ACTIONS(3526), + [anon_sym_nullptr] = ACTIONS(3526), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3526), + [anon_sym_decltype] = ACTIONS(3526), + [anon_sym_explicit] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_template] = ACTIONS(3526), + [anon_sym_operator] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_static_assert] = ACTIONS(3526), + [anon_sym_concept] = ACTIONS(3526), + [anon_sym_co_return] = ACTIONS(3526), + [anon_sym_co_yield] = ACTIONS(3526), + [anon_sym_R_DQUOTE] = ACTIONS(3528), + [anon_sym_LR_DQUOTE] = ACTIONS(3528), + [anon_sym_uR_DQUOTE] = ACTIONS(3528), + [anon_sym_UR_DQUOTE] = ACTIONS(3528), + [anon_sym_u8R_DQUOTE] = ACTIONS(3528), + [anon_sym_co_await] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_requires] = ACTIONS(3526), + [anon_sym_CARET_CARET] = ACTIONS(3528), + [anon_sym_LBRACK_COLON] = ACTIONS(3528), + [sym_this] = ACTIONS(3526), + }, + [STATE(336)] = { + [sym_identifier] = ACTIONS(3530), + [aux_sym_preproc_include_token1] = ACTIONS(3530), + [aux_sym_preproc_def_token1] = ACTIONS(3530), + [aux_sym_preproc_if_token1] = ACTIONS(3530), + [aux_sym_preproc_if_token2] = ACTIONS(3530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3530), + [aux_sym_preproc_else_token1] = ACTIONS(3530), + [aux_sym_preproc_elif_token1] = ACTIONS(3530), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3530), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3530), + [sym_preproc_directive] = ACTIONS(3530), + [anon_sym_LPAREN2] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_STAR] = ACTIONS(3532), + [anon_sym_AMP_AMP] = ACTIONS(3532), + [anon_sym_AMP] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym___extension__] = ACTIONS(3530), + [anon_sym_typedef] = ACTIONS(3530), + [anon_sym_virtual] = ACTIONS(3530), + [anon_sym_extern] = ACTIONS(3530), + [anon_sym___attribute__] = ACTIONS(3530), + [anon_sym___attribute] = ACTIONS(3530), + [anon_sym_using] = ACTIONS(3530), + [anon_sym_COLON_COLON] = ACTIONS(3532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3532), + [anon_sym___declspec] = ACTIONS(3530), + [anon_sym___based] = ACTIONS(3530), + [anon_sym___cdecl] = ACTIONS(3530), + [anon_sym___clrcall] = ACTIONS(3530), + [anon_sym___stdcall] = ACTIONS(3530), + [anon_sym___fastcall] = ACTIONS(3530), + [anon_sym___thiscall] = ACTIONS(3530), + [anon_sym___vectorcall] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_signed] = ACTIONS(3530), + [anon_sym_unsigned] = ACTIONS(3530), + [anon_sym_long] = ACTIONS(3530), + [anon_sym_short] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_register] = ACTIONS(3530), + [anon_sym_inline] = ACTIONS(3530), + [anon_sym___inline] = ACTIONS(3530), + [anon_sym___inline__] = ACTIONS(3530), + [anon_sym___forceinline] = ACTIONS(3530), + [anon_sym_thread_local] = ACTIONS(3530), + [anon_sym___thread] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_constexpr] = ACTIONS(3530), + [anon_sym_volatile] = ACTIONS(3530), + [anon_sym_restrict] = ACTIONS(3530), + [anon_sym___restrict__] = ACTIONS(3530), + [anon_sym__Atomic] = ACTIONS(3530), + [anon_sym__Noreturn] = ACTIONS(3530), + [anon_sym_noreturn] = ACTIONS(3530), + [anon_sym__Nonnull] = ACTIONS(3530), + [anon_sym_mutable] = ACTIONS(3530), + [anon_sym_constinit] = ACTIONS(3530), + [anon_sym_consteval] = ACTIONS(3530), + [anon_sym_alignas] = ACTIONS(3530), + [anon_sym__Alignas] = ACTIONS(3530), + [sym_primitive_type] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_struct] = ACTIONS(3530), + [anon_sym_union] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_case] = ACTIONS(3530), + [anon_sym_default] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_goto] = ACTIONS(3530), + [anon_sym___try] = ACTIONS(3530), + [anon_sym___leave] = ACTIONS(3530), + [anon_sym_not] = ACTIONS(3530), + [anon_sym_compl] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_sizeof] = ACTIONS(3530), + [anon_sym___alignof__] = ACTIONS(3530), + [anon_sym___alignof] = ACTIONS(3530), + [anon_sym__alignof] = ACTIONS(3530), + [anon_sym_alignof] = ACTIONS(3530), + [anon_sym__Alignof] = ACTIONS(3530), + [anon_sym_offsetof] = ACTIONS(3530), + [anon_sym__Generic] = ACTIONS(3530), + [anon_sym_typename] = ACTIONS(3530), + [anon_sym_asm] = ACTIONS(3530), + [anon_sym___asm__] = ACTIONS(3530), + [anon_sym___asm] = ACTIONS(3530), + [sym_number_literal] = ACTIONS(3532), + [anon_sym_L_SQUOTE] = ACTIONS(3532), + [anon_sym_u_SQUOTE] = ACTIONS(3532), + [anon_sym_U_SQUOTE] = ACTIONS(3532), + [anon_sym_u8_SQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_L_DQUOTE] = ACTIONS(3532), + [anon_sym_u_DQUOTE] = ACTIONS(3532), + [anon_sym_U_DQUOTE] = ACTIONS(3532), + [anon_sym_u8_DQUOTE] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [anon_sym_NULL] = ACTIONS(3530), + [anon_sym_nullptr] = ACTIONS(3530), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3530), + [anon_sym_decltype] = ACTIONS(3530), + [anon_sym_explicit] = ACTIONS(3530), + [anon_sym_export] = ACTIONS(3530), + [anon_sym_module] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_template] = ACTIONS(3530), + [anon_sym_operator] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3530), + [anon_sym_static_assert] = ACTIONS(3530), + [anon_sym_concept] = ACTIONS(3530), + [anon_sym_co_return] = ACTIONS(3530), + [anon_sym_co_yield] = ACTIONS(3530), + [anon_sym_R_DQUOTE] = ACTIONS(3532), + [anon_sym_LR_DQUOTE] = ACTIONS(3532), + [anon_sym_uR_DQUOTE] = ACTIONS(3532), + [anon_sym_UR_DQUOTE] = ACTIONS(3532), + [anon_sym_u8R_DQUOTE] = ACTIONS(3532), + [anon_sym_co_await] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_requires] = ACTIONS(3530), + [anon_sym_CARET_CARET] = ACTIONS(3532), + [anon_sym_LBRACK_COLON] = ACTIONS(3532), + [sym_this] = ACTIONS(3530), + }, + [STATE(337)] = { + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_include_token1] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token2] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [aux_sym_preproc_else_token1] = ACTIONS(3534), + [aux_sym_preproc_elif_token1] = ACTIONS(3534), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym___cdecl] = ACTIONS(3534), + [anon_sym___clrcall] = ACTIONS(3534), + [anon_sym___stdcall] = ACTIONS(3534), + [anon_sym___fastcall] = ACTIONS(3534), + [anon_sym___thiscall] = ACTIONS(3534), + [anon_sym___vectorcall] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_else] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_goto] = ACTIONS(3534), + [anon_sym___try] = ACTIONS(3534), + [anon_sym___leave] = ACTIONS(3534), + [anon_sym_not] = ACTIONS(3534), + [anon_sym_compl] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3534), + [anon_sym___alignof__] = ACTIONS(3534), + [anon_sym___alignof] = ACTIONS(3534), + [anon_sym__alignof] = ACTIONS(3534), + [anon_sym_alignof] = ACTIONS(3534), + [anon_sym__Alignof] = ACTIONS(3534), + [anon_sym_offsetof] = ACTIONS(3534), + [anon_sym__Generic] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [anon_sym_asm] = ACTIONS(3534), + [anon_sym___asm__] = ACTIONS(3534), + [anon_sym___asm] = ACTIONS(3534), + [sym_number_literal] = ACTIONS(3536), + [anon_sym_L_SQUOTE] = ACTIONS(3536), + [anon_sym_u_SQUOTE] = ACTIONS(3536), + [anon_sym_U_SQUOTE] = ACTIONS(3536), + [anon_sym_u8_SQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_L_DQUOTE] = ACTIONS(3536), + [anon_sym_u_DQUOTE] = ACTIONS(3536), + [anon_sym_U_DQUOTE] = ACTIONS(3536), + [anon_sym_u8_DQUOTE] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [anon_sym_NULL] = ACTIONS(3534), + [anon_sym_nullptr] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_concept] = ACTIONS(3534), + [anon_sym_co_return] = ACTIONS(3534), + [anon_sym_co_yield] = ACTIONS(3534), + [anon_sym_R_DQUOTE] = ACTIONS(3536), + [anon_sym_LR_DQUOTE] = ACTIONS(3536), + [anon_sym_uR_DQUOTE] = ACTIONS(3536), + [anon_sym_UR_DQUOTE] = ACTIONS(3536), + [anon_sym_u8R_DQUOTE] = ACTIONS(3536), + [anon_sym_co_await] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_requires] = ACTIONS(3534), + [anon_sym_CARET_CARET] = ACTIONS(3536), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + [sym_this] = ACTIONS(3534), + }, + [STATE(338)] = { + [sym_identifier] = ACTIONS(3538), + [aux_sym_preproc_include_token1] = ACTIONS(3538), + [aux_sym_preproc_def_token1] = ACTIONS(3538), + [aux_sym_preproc_if_token1] = ACTIONS(3538), + [aux_sym_preproc_if_token2] = ACTIONS(3538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3538), + [aux_sym_preproc_else_token1] = ACTIONS(3538), + [aux_sym_preproc_elif_token1] = ACTIONS(3538), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3538), + [sym_preproc_directive] = ACTIONS(3538), + [anon_sym_LPAREN2] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym___extension__] = ACTIONS(3538), + [anon_sym_typedef] = ACTIONS(3538), + [anon_sym_virtual] = ACTIONS(3538), + [anon_sym_extern] = ACTIONS(3538), + [anon_sym___attribute__] = ACTIONS(3538), + [anon_sym___attribute] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(3540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3540), + [anon_sym___declspec] = ACTIONS(3538), + [anon_sym___based] = ACTIONS(3538), + [anon_sym___cdecl] = ACTIONS(3538), + [anon_sym___clrcall] = ACTIONS(3538), + [anon_sym___stdcall] = ACTIONS(3538), + [anon_sym___fastcall] = ACTIONS(3538), + [anon_sym___thiscall] = ACTIONS(3538), + [anon_sym___vectorcall] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_signed] = ACTIONS(3538), + [anon_sym_unsigned] = ACTIONS(3538), + [anon_sym_long] = ACTIONS(3538), + [anon_sym_short] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_register] = ACTIONS(3538), + [anon_sym_inline] = ACTIONS(3538), + [anon_sym___inline] = ACTIONS(3538), + [anon_sym___inline__] = ACTIONS(3538), + [anon_sym___forceinline] = ACTIONS(3538), + [anon_sym_thread_local] = ACTIONS(3538), + [anon_sym___thread] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_constexpr] = ACTIONS(3538), + [anon_sym_volatile] = ACTIONS(3538), + [anon_sym_restrict] = ACTIONS(3538), + [anon_sym___restrict__] = ACTIONS(3538), + [anon_sym__Atomic] = ACTIONS(3538), + [anon_sym__Noreturn] = ACTIONS(3538), + [anon_sym_noreturn] = ACTIONS(3538), + [anon_sym__Nonnull] = ACTIONS(3538), + [anon_sym_mutable] = ACTIONS(3538), + [anon_sym_constinit] = ACTIONS(3538), + [anon_sym_consteval] = ACTIONS(3538), + [anon_sym_alignas] = ACTIONS(3538), + [anon_sym__Alignas] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_struct] = ACTIONS(3538), + [anon_sym_union] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_else] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_case] = ACTIONS(3538), + [anon_sym_default] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_goto] = ACTIONS(3538), + [anon_sym___try] = ACTIONS(3538), + [anon_sym___leave] = ACTIONS(3538), + [anon_sym_not] = ACTIONS(3538), + [anon_sym_compl] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_sizeof] = ACTIONS(3538), + [anon_sym___alignof__] = ACTIONS(3538), + [anon_sym___alignof] = ACTIONS(3538), + [anon_sym__alignof] = ACTIONS(3538), + [anon_sym_alignof] = ACTIONS(3538), + [anon_sym__Alignof] = ACTIONS(3538), + [anon_sym_offsetof] = ACTIONS(3538), + [anon_sym__Generic] = ACTIONS(3538), + [anon_sym_typename] = ACTIONS(3538), + [anon_sym_asm] = ACTIONS(3538), + [anon_sym___asm__] = ACTIONS(3538), + [anon_sym___asm] = ACTIONS(3538), + [sym_number_literal] = ACTIONS(3540), + [anon_sym_L_SQUOTE] = ACTIONS(3540), + [anon_sym_u_SQUOTE] = ACTIONS(3540), + [anon_sym_U_SQUOTE] = ACTIONS(3540), + [anon_sym_u8_SQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_L_DQUOTE] = ACTIONS(3540), + [anon_sym_u_DQUOTE] = ACTIONS(3540), + [anon_sym_U_DQUOTE] = ACTIONS(3540), + [anon_sym_u8_DQUOTE] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [anon_sym_NULL] = ACTIONS(3538), + [anon_sym_nullptr] = ACTIONS(3538), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3538), + [anon_sym_decltype] = ACTIONS(3538), + [anon_sym_explicit] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_module] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_template] = ACTIONS(3538), + [anon_sym_operator] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_static_assert] = ACTIONS(3538), + [anon_sym_concept] = ACTIONS(3538), + [anon_sym_co_return] = ACTIONS(3538), + [anon_sym_co_yield] = ACTIONS(3538), + [anon_sym_R_DQUOTE] = ACTIONS(3540), + [anon_sym_LR_DQUOTE] = ACTIONS(3540), + [anon_sym_uR_DQUOTE] = ACTIONS(3540), + [anon_sym_UR_DQUOTE] = ACTIONS(3540), + [anon_sym_u8R_DQUOTE] = ACTIONS(3540), + [anon_sym_co_await] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_requires] = ACTIONS(3538), + [anon_sym_CARET_CARET] = ACTIONS(3540), + [anon_sym_LBRACK_COLON] = ACTIONS(3540), + [sym_this] = ACTIONS(3538), + }, + [STATE(339)] = { + [sym_identifier] = ACTIONS(3542), + [aux_sym_preproc_include_token1] = ACTIONS(3542), + [aux_sym_preproc_def_token1] = ACTIONS(3542), + [aux_sym_preproc_if_token1] = ACTIONS(3542), + [aux_sym_preproc_if_token2] = ACTIONS(3542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3542), + [aux_sym_preproc_else_token1] = ACTIONS(3542), + [aux_sym_preproc_elif_token1] = ACTIONS(3542), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3542), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3542), + [sym_preproc_directive] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym___extension__] = ACTIONS(3542), + [anon_sym_typedef] = ACTIONS(3542), + [anon_sym_virtual] = ACTIONS(3542), + [anon_sym_extern] = ACTIONS(3542), + [anon_sym___attribute__] = ACTIONS(3542), + [anon_sym___attribute] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3544), + [anon_sym___declspec] = ACTIONS(3542), + [anon_sym___based] = ACTIONS(3542), + [anon_sym___cdecl] = ACTIONS(3542), + [anon_sym___clrcall] = ACTIONS(3542), + [anon_sym___stdcall] = ACTIONS(3542), + [anon_sym___fastcall] = ACTIONS(3542), + [anon_sym___thiscall] = ACTIONS(3542), + [anon_sym___vectorcall] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_signed] = ACTIONS(3542), + [anon_sym_unsigned] = ACTIONS(3542), + [anon_sym_long] = ACTIONS(3542), + [anon_sym_short] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_register] = ACTIONS(3542), + [anon_sym_inline] = ACTIONS(3542), + [anon_sym___inline] = ACTIONS(3542), + [anon_sym___inline__] = ACTIONS(3542), + [anon_sym___forceinline] = ACTIONS(3542), + [anon_sym_thread_local] = ACTIONS(3542), + [anon_sym___thread] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_constexpr] = ACTIONS(3542), + [anon_sym_volatile] = ACTIONS(3542), + [anon_sym_restrict] = ACTIONS(3542), + [anon_sym___restrict__] = ACTIONS(3542), + [anon_sym__Atomic] = ACTIONS(3542), + [anon_sym__Noreturn] = ACTIONS(3542), + [anon_sym_noreturn] = ACTIONS(3542), + [anon_sym__Nonnull] = ACTIONS(3542), + [anon_sym_mutable] = ACTIONS(3542), + [anon_sym_constinit] = ACTIONS(3542), + [anon_sym_consteval] = ACTIONS(3542), + [anon_sym_alignas] = ACTIONS(3542), + [anon_sym__Alignas] = ACTIONS(3542), + [sym_primitive_type] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_else] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_case] = ACTIONS(3542), + [anon_sym_default] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_goto] = ACTIONS(3542), + [anon_sym___try] = ACTIONS(3542), + [anon_sym___leave] = ACTIONS(3542), + [anon_sym_not] = ACTIONS(3542), + [anon_sym_compl] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_sizeof] = ACTIONS(3542), + [anon_sym___alignof__] = ACTIONS(3542), + [anon_sym___alignof] = ACTIONS(3542), + [anon_sym__alignof] = ACTIONS(3542), + [anon_sym_alignof] = ACTIONS(3542), + [anon_sym__Alignof] = ACTIONS(3542), + [anon_sym_offsetof] = ACTIONS(3542), + [anon_sym__Generic] = ACTIONS(3542), + [anon_sym_typename] = ACTIONS(3542), + [anon_sym_asm] = ACTIONS(3542), + [anon_sym___asm__] = ACTIONS(3542), + [anon_sym___asm] = ACTIONS(3542), + [sym_number_literal] = ACTIONS(3544), + [anon_sym_L_SQUOTE] = ACTIONS(3544), + [anon_sym_u_SQUOTE] = ACTIONS(3544), + [anon_sym_U_SQUOTE] = ACTIONS(3544), + [anon_sym_u8_SQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_L_DQUOTE] = ACTIONS(3544), + [anon_sym_u_DQUOTE] = ACTIONS(3544), + [anon_sym_U_DQUOTE] = ACTIONS(3544), + [anon_sym_u8_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [anon_sym_NULL] = ACTIONS(3542), + [anon_sym_nullptr] = ACTIONS(3542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3542), + [anon_sym_decltype] = ACTIONS(3542), + [anon_sym_explicit] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_template] = ACTIONS(3542), + [anon_sym_operator] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_static_assert] = ACTIONS(3542), + [anon_sym_concept] = ACTIONS(3542), + [anon_sym_co_return] = ACTIONS(3542), + [anon_sym_co_yield] = ACTIONS(3542), + [anon_sym_R_DQUOTE] = ACTIONS(3544), + [anon_sym_LR_DQUOTE] = ACTIONS(3544), + [anon_sym_uR_DQUOTE] = ACTIONS(3544), + [anon_sym_UR_DQUOTE] = ACTIONS(3544), + [anon_sym_u8R_DQUOTE] = ACTIONS(3544), + [anon_sym_co_await] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_requires] = ACTIONS(3542), + [anon_sym_CARET_CARET] = ACTIONS(3544), + [anon_sym_LBRACK_COLON] = ACTIONS(3544), + [sym_this] = ACTIONS(3542), + }, + [STATE(340)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym___try] = ACTIONS(3168), + [anon_sym___leave] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [anon_sym___asm] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_module] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_CARET_CARET] = ACTIONS(3166), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + [sym_this] = ACTIONS(3168), + }, + [STATE(341)] = { + [sym_identifier] = ACTIONS(3338), + [aux_sym_preproc_include_token1] = ACTIONS(3338), + [aux_sym_preproc_def_token1] = ACTIONS(3338), + [aux_sym_preproc_if_token1] = ACTIONS(3338), + [aux_sym_preproc_if_token2] = ACTIONS(3338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3338), + [aux_sym_preproc_else_token1] = ACTIONS(3338), + [aux_sym_preproc_elif_token1] = ACTIONS(3338), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3338), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3338), + [sym_preproc_directive] = ACTIONS(3338), + [anon_sym_LPAREN2] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3343), + [anon_sym_AMP_AMP] = ACTIONS(3343), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym___extension__] = ACTIONS(3338), + [anon_sym_typedef] = ACTIONS(3338), + [anon_sym_virtual] = ACTIONS(3338), + [anon_sym_extern] = ACTIONS(3338), + [anon_sym___attribute__] = ACTIONS(3338), + [anon_sym___attribute] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3343), + [anon_sym___declspec] = ACTIONS(3338), + [anon_sym___based] = ACTIONS(3338), + [anon_sym___cdecl] = ACTIONS(3338), + [anon_sym___clrcall] = ACTIONS(3338), + [anon_sym___stdcall] = ACTIONS(3338), + [anon_sym___fastcall] = ACTIONS(3338), + [anon_sym___thiscall] = ACTIONS(3338), + [anon_sym___vectorcall] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_register] = ACTIONS(3338), + [anon_sym_inline] = ACTIONS(3338), + [anon_sym___inline] = ACTIONS(3338), + [anon_sym___inline__] = ACTIONS(3338), + [anon_sym___forceinline] = ACTIONS(3338), + [anon_sym_thread_local] = ACTIONS(3338), + [anon_sym___thread] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_constexpr] = ACTIONS(3338), + [anon_sym_volatile] = ACTIONS(3338), + [anon_sym_restrict] = ACTIONS(3338), + [anon_sym___restrict__] = ACTIONS(3338), + [anon_sym__Atomic] = ACTIONS(3338), + [anon_sym__Noreturn] = ACTIONS(3338), + [anon_sym_noreturn] = ACTIONS(3338), + [anon_sym__Nonnull] = ACTIONS(3338), + [anon_sym_mutable] = ACTIONS(3338), + [anon_sym_constinit] = ACTIONS(3338), + [anon_sym_consteval] = ACTIONS(3338), + [anon_sym_alignas] = ACTIONS(3338), + [anon_sym__Alignas] = ACTIONS(3338), + [sym_primitive_type] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_case] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_goto] = ACTIONS(3338), + [anon_sym___try] = ACTIONS(3338), + [anon_sym___leave] = ACTIONS(3338), + [anon_sym_not] = ACTIONS(3338), + [anon_sym_compl] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3338), + [anon_sym___alignof] = ACTIONS(3338), + [anon_sym__alignof] = ACTIONS(3338), + [anon_sym_alignof] = ACTIONS(3338), + [anon_sym__Alignof] = ACTIONS(3338), + [anon_sym_offsetof] = ACTIONS(3338), + [anon_sym__Generic] = ACTIONS(3338), + [anon_sym_typename] = ACTIONS(3338), + [anon_sym_asm] = ACTIONS(3338), + [anon_sym___asm__] = ACTIONS(3338), + [anon_sym___asm] = ACTIONS(3338), + [sym_number_literal] = ACTIONS(3343), + [anon_sym_L_SQUOTE] = ACTIONS(3343), + [anon_sym_u_SQUOTE] = ACTIONS(3343), + [anon_sym_U_SQUOTE] = ACTIONS(3343), + [anon_sym_u8_SQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_L_DQUOTE] = ACTIONS(3343), + [anon_sym_u_DQUOTE] = ACTIONS(3343), + [anon_sym_U_DQUOTE] = ACTIONS(3343), + [anon_sym_u8_DQUOTE] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [anon_sym_NULL] = ACTIONS(3338), + [anon_sym_nullptr] = ACTIONS(3338), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3338), + [anon_sym_decltype] = ACTIONS(3338), + [anon_sym_explicit] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_template] = ACTIONS(3338), + [anon_sym_operator] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_static_assert] = ACTIONS(3338), + [anon_sym_concept] = ACTIONS(3338), + [anon_sym_co_return] = ACTIONS(3338), + [anon_sym_co_yield] = ACTIONS(3338), + [anon_sym_R_DQUOTE] = ACTIONS(3343), + [anon_sym_LR_DQUOTE] = ACTIONS(3343), + [anon_sym_uR_DQUOTE] = ACTIONS(3343), + [anon_sym_UR_DQUOTE] = ACTIONS(3343), + [anon_sym_u8R_DQUOTE] = ACTIONS(3343), + [anon_sym_co_await] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_requires] = ACTIONS(3338), + [anon_sym_CARET_CARET] = ACTIONS(3343), + [anon_sym_LBRACK_COLON] = ACTIONS(3343), + [sym_this] = ACTIONS(3338), + }, + [STATE(342)] = { + [sym_identifier] = ACTIONS(3300), + [aux_sym_preproc_include_token1] = ACTIONS(3300), + [aux_sym_preproc_def_token1] = ACTIONS(3300), + [aux_sym_preproc_if_token1] = ACTIONS(3300), + [aux_sym_preproc_if_token2] = ACTIONS(3300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3300), + [aux_sym_preproc_else_token1] = ACTIONS(3300), + [aux_sym_preproc_elif_token1] = ACTIONS(3300), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3300), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3300), + [sym_preproc_directive] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym___extension__] = ACTIONS(3300), + [anon_sym_typedef] = ACTIONS(3300), + [anon_sym_virtual] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(3300), + [anon_sym___attribute__] = ACTIONS(3300), + [anon_sym___attribute] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3305), + [anon_sym___declspec] = ACTIONS(3300), + [anon_sym___based] = ACTIONS(3300), + [anon_sym___cdecl] = ACTIONS(3300), + [anon_sym___clrcall] = ACTIONS(3300), + [anon_sym___stdcall] = ACTIONS(3300), + [anon_sym___fastcall] = ACTIONS(3300), + [anon_sym___thiscall] = ACTIONS(3300), + [anon_sym___vectorcall] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_signed] = ACTIONS(3300), + [anon_sym_unsigned] = ACTIONS(3300), + [anon_sym_long] = ACTIONS(3300), + [anon_sym_short] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_register] = ACTIONS(3300), + [anon_sym_inline] = ACTIONS(3300), + [anon_sym___inline] = ACTIONS(3300), + [anon_sym___inline__] = ACTIONS(3300), + [anon_sym___forceinline] = ACTIONS(3300), + [anon_sym_thread_local] = ACTIONS(3300), + [anon_sym___thread] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_constexpr] = ACTIONS(3300), + [anon_sym_volatile] = ACTIONS(3300), + [anon_sym_restrict] = ACTIONS(3300), + [anon_sym___restrict__] = ACTIONS(3300), + [anon_sym__Atomic] = ACTIONS(3300), + [anon_sym__Noreturn] = ACTIONS(3300), + [anon_sym_noreturn] = ACTIONS(3300), + [anon_sym__Nonnull] = ACTIONS(3300), + [anon_sym_mutable] = ACTIONS(3300), + [anon_sym_constinit] = ACTIONS(3300), + [anon_sym_consteval] = ACTIONS(3300), + [anon_sym_alignas] = ACTIONS(3300), + [anon_sym__Alignas] = ACTIONS(3300), + [sym_primitive_type] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_union] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_goto] = ACTIONS(3300), + [anon_sym___try] = ACTIONS(3300), + [anon_sym___leave] = ACTIONS(3300), + [anon_sym_not] = ACTIONS(3300), + [anon_sym_compl] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_sizeof] = ACTIONS(3300), + [anon_sym___alignof__] = ACTIONS(3300), + [anon_sym___alignof] = ACTIONS(3300), + [anon_sym__alignof] = ACTIONS(3300), + [anon_sym_alignof] = ACTIONS(3300), + [anon_sym__Alignof] = ACTIONS(3300), + [anon_sym_offsetof] = ACTIONS(3300), + [anon_sym__Generic] = ACTIONS(3300), + [anon_sym_typename] = ACTIONS(3300), + [anon_sym_asm] = ACTIONS(3300), + [anon_sym___asm__] = ACTIONS(3300), + [anon_sym___asm] = ACTIONS(3300), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3305), + [anon_sym_u_SQUOTE] = ACTIONS(3305), + [anon_sym_U_SQUOTE] = ACTIONS(3305), + [anon_sym_u8_SQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_L_DQUOTE] = ACTIONS(3305), + [anon_sym_u_DQUOTE] = ACTIONS(3305), + [anon_sym_U_DQUOTE] = ACTIONS(3305), + [anon_sym_u8_DQUOTE] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [anon_sym_NULL] = ACTIONS(3300), + [anon_sym_nullptr] = ACTIONS(3300), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3300), + [anon_sym_decltype] = ACTIONS(3300), + [anon_sym_explicit] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_template] = ACTIONS(3300), + [anon_sym_operator] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_static_assert] = ACTIONS(3300), + [anon_sym_concept] = ACTIONS(3300), + [anon_sym_co_return] = ACTIONS(3300), + [anon_sym_co_yield] = ACTIONS(3300), + [anon_sym_R_DQUOTE] = ACTIONS(3305), + [anon_sym_LR_DQUOTE] = ACTIONS(3305), + [anon_sym_uR_DQUOTE] = ACTIONS(3305), + [anon_sym_UR_DQUOTE] = ACTIONS(3305), + [anon_sym_u8R_DQUOTE] = ACTIONS(3305), + [anon_sym_co_await] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_requires] = ACTIONS(3300), + [anon_sym_CARET_CARET] = ACTIONS(3305), + [anon_sym_LBRACK_COLON] = ACTIONS(3305), + [sym_this] = ACTIONS(3300), + }, + [STATE(343)] = { + [sym_identifier] = ACTIONS(3548), + [aux_sym_preproc_include_token1] = ACTIONS(3548), + [aux_sym_preproc_def_token1] = ACTIONS(3548), + [aux_sym_preproc_if_token1] = ACTIONS(3548), + [aux_sym_preproc_if_token2] = ACTIONS(3548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3548), + [aux_sym_preproc_else_token1] = ACTIONS(3548), + [aux_sym_preproc_elif_token1] = ACTIONS(3548), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3548), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3548), + [sym_preproc_directive] = ACTIONS(3548), + [anon_sym_LPAREN2] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_AMP_AMP] = ACTIONS(3550), + [anon_sym_AMP] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym___extension__] = ACTIONS(3548), + [anon_sym_typedef] = ACTIONS(3548), + [anon_sym_virtual] = ACTIONS(3548), + [anon_sym_extern] = ACTIONS(3548), + [anon_sym___attribute__] = ACTIONS(3548), + [anon_sym___attribute] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3550), + [anon_sym___declspec] = ACTIONS(3548), + [anon_sym___based] = ACTIONS(3548), + [anon_sym___cdecl] = ACTIONS(3548), + [anon_sym___clrcall] = ACTIONS(3548), + [anon_sym___stdcall] = ACTIONS(3548), + [anon_sym___fastcall] = ACTIONS(3548), + [anon_sym___thiscall] = ACTIONS(3548), + [anon_sym___vectorcall] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_signed] = ACTIONS(3548), + [anon_sym_unsigned] = ACTIONS(3548), + [anon_sym_long] = ACTIONS(3548), + [anon_sym_short] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_register] = ACTIONS(3548), + [anon_sym_inline] = ACTIONS(3548), + [anon_sym___inline] = ACTIONS(3548), + [anon_sym___inline__] = ACTIONS(3548), + [anon_sym___forceinline] = ACTIONS(3548), + [anon_sym_thread_local] = ACTIONS(3548), + [anon_sym___thread] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_constexpr] = ACTIONS(3548), + [anon_sym_volatile] = ACTIONS(3548), + [anon_sym_restrict] = ACTIONS(3548), + [anon_sym___restrict__] = ACTIONS(3548), + [anon_sym__Atomic] = ACTIONS(3548), + [anon_sym__Noreturn] = ACTIONS(3548), + [anon_sym_noreturn] = ACTIONS(3548), + [anon_sym__Nonnull] = ACTIONS(3548), + [anon_sym_mutable] = ACTIONS(3548), + [anon_sym_constinit] = ACTIONS(3548), + [anon_sym_consteval] = ACTIONS(3548), + [anon_sym_alignas] = ACTIONS(3548), + [anon_sym__Alignas] = ACTIONS(3548), + [sym_primitive_type] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_struct] = ACTIONS(3548), + [anon_sym_union] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_goto] = ACTIONS(3548), + [anon_sym___try] = ACTIONS(3548), + [anon_sym___leave] = ACTIONS(3548), + [anon_sym_not] = ACTIONS(3548), + [anon_sym_compl] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_sizeof] = ACTIONS(3548), + [anon_sym___alignof__] = ACTIONS(3548), + [anon_sym___alignof] = ACTIONS(3548), + [anon_sym__alignof] = ACTIONS(3548), + [anon_sym_alignof] = ACTIONS(3548), + [anon_sym__Alignof] = ACTIONS(3548), + [anon_sym_offsetof] = ACTIONS(3548), + [anon_sym__Generic] = ACTIONS(3548), + [anon_sym_typename] = ACTIONS(3548), + [anon_sym_asm] = ACTIONS(3548), + [anon_sym___asm__] = ACTIONS(3548), + [anon_sym___asm] = ACTIONS(3548), + [sym_number_literal] = ACTIONS(3550), + [anon_sym_L_SQUOTE] = ACTIONS(3550), + [anon_sym_u_SQUOTE] = ACTIONS(3550), + [anon_sym_U_SQUOTE] = ACTIONS(3550), + [anon_sym_u8_SQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_L_DQUOTE] = ACTIONS(3550), + [anon_sym_u_DQUOTE] = ACTIONS(3550), + [anon_sym_U_DQUOTE] = ACTIONS(3550), + [anon_sym_u8_DQUOTE] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [anon_sym_NULL] = ACTIONS(3548), + [anon_sym_nullptr] = ACTIONS(3548), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3548), + [anon_sym_decltype] = ACTIONS(3548), + [anon_sym_explicit] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3548), + [anon_sym_operator] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3548), + [anon_sym_concept] = ACTIONS(3548), + [anon_sym_co_return] = ACTIONS(3548), + [anon_sym_co_yield] = ACTIONS(3548), + [anon_sym_R_DQUOTE] = ACTIONS(3550), + [anon_sym_LR_DQUOTE] = ACTIONS(3550), + [anon_sym_uR_DQUOTE] = ACTIONS(3550), + [anon_sym_UR_DQUOTE] = ACTIONS(3550), + [anon_sym_u8R_DQUOTE] = ACTIONS(3550), + [anon_sym_co_await] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_requires] = ACTIONS(3548), + [anon_sym_CARET_CARET] = ACTIONS(3550), + [anon_sym_LBRACK_COLON] = ACTIONS(3550), + [sym_this] = ACTIONS(3548), + }, + [STATE(344)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3151), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), + [sym_this] = ACTIONS(237), + }, + [STATE(345)] = { + [sym_preproc_def] = STATE(349), + [sym_preproc_function_def] = STATE(349), + [sym_preproc_call] = STATE(349), + [sym_preproc_if_in_field_declaration_list] = STATE(349), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(349), + [sym_preproc_else_in_field_declaration_list] = STATE(11674), + [sym_preproc_elif_in_field_declaration_list] = STATE(11674), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11674), + [sym_type_definition] = STATE(349), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(349), + [sym_field_declaration] = STATE(349), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(349), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(349), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(349), + [sym_operator_cast_declaration] = STATE(349), + [sym_constructor_or_destructor_definition] = STATE(349), + [sym_constructor_or_destructor_declaration] = STATE(349), + [sym_friend_declaration] = STATE(349), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(349), + [sym_alias_declaration] = STATE(349), + [sym_static_assert_declaration] = STATE(349), + [sym_consteval_block_declaration] = STATE(349), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(349), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3552), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3500), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -106873,7 +109070,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -106883,133 +109080,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(331)] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(11670), - [sym_preproc_elif_in_field_declaration_list] = STATE(11670), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11670), - [sym_type_definition] = STATE(555), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(555), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(555), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(555), - [sym_operator_cast_declaration] = STATE(555), - [sym_constructor_or_destructor_definition] = STATE(555), - [sym_constructor_or_destructor_declaration] = STATE(555), - [sym_friend_declaration] = STATE(555), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(555), - [sym_alias_declaration] = STATE(555), - [sym_static_assert_declaration] = STATE(555), - [sym_consteval_block_declaration] = STATE(555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3502), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(346)] = { + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_field_declaration_list] = STATE(541), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), + [sym_preproc_else_in_field_declaration_list] = STATE(11719), + [sym_preproc_elif_in_field_declaration_list] = STATE(11719), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11719), + [sym_type_definition] = STATE(541), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(541), + [sym_field_declaration] = STATE(541), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(541), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(541), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(541), + [sym_operator_cast_declaration] = STATE(541), + [sym_constructor_or_destructor_definition] = STATE(541), + [sym_constructor_or_destructor_declaration] = STATE(541), + [sym_friend_declaration] = STATE(541), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(541), + [sym_alias_declaration] = STATE(541), + [sym_static_assert_declaration] = STATE(541), + [sym_consteval_block_declaration] = STATE(541), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3556), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -107019,7 +109216,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -107029,133 +109226,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(332)] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(11585), - [sym_preproc_elif_in_field_declaration_list] = STATE(11585), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11585), - [sym_type_definition] = STATE(555), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(555), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(555), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(555), - [sym_operator_cast_declaration] = STATE(555), - [sym_constructor_or_destructor_definition] = STATE(555), - [sym_constructor_or_destructor_declaration] = STATE(555), - [sym_friend_declaration] = STATE(555), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(555), - [sym_alias_declaration] = STATE(555), - [sym_static_assert_declaration] = STATE(555), - [sym_consteval_block_declaration] = STATE(555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(347)] = { + [sym_identifier] = ACTIONS(3558), + [aux_sym_preproc_include_token1] = ACTIONS(3558), + [aux_sym_preproc_def_token1] = ACTIONS(3558), + [aux_sym_preproc_if_token1] = ACTIONS(3558), + [aux_sym_preproc_if_token2] = ACTIONS(3558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3558), + [aux_sym_preproc_else_token1] = ACTIONS(3558), + [aux_sym_preproc_elif_token1] = ACTIONS(3558), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3558), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3558), + [sym_preproc_directive] = ACTIONS(3558), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(3560), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym___extension__] = ACTIONS(3558), + [anon_sym_typedef] = ACTIONS(3558), + [anon_sym_virtual] = ACTIONS(3558), + [anon_sym_extern] = ACTIONS(3558), + [anon_sym___attribute__] = ACTIONS(3558), + [anon_sym___attribute] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_COLON_COLON] = ACTIONS(3560), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3560), + [anon_sym___declspec] = ACTIONS(3558), + [anon_sym___based] = ACTIONS(3558), + [anon_sym___cdecl] = ACTIONS(3558), + [anon_sym___clrcall] = ACTIONS(3558), + [anon_sym___stdcall] = ACTIONS(3558), + [anon_sym___fastcall] = ACTIONS(3558), + [anon_sym___thiscall] = ACTIONS(3558), + [anon_sym___vectorcall] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_signed] = ACTIONS(3558), + [anon_sym_unsigned] = ACTIONS(3558), + [anon_sym_long] = ACTIONS(3558), + [anon_sym_short] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_register] = ACTIONS(3558), + [anon_sym_inline] = ACTIONS(3558), + [anon_sym___inline] = ACTIONS(3558), + [anon_sym___inline__] = ACTIONS(3558), + [anon_sym___forceinline] = ACTIONS(3558), + [anon_sym_thread_local] = ACTIONS(3558), + [anon_sym___thread] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_constexpr] = ACTIONS(3558), + [anon_sym_volatile] = ACTIONS(3558), + [anon_sym_restrict] = ACTIONS(3558), + [anon_sym___restrict__] = ACTIONS(3558), + [anon_sym__Atomic] = ACTIONS(3558), + [anon_sym__Noreturn] = ACTIONS(3558), + [anon_sym_noreturn] = ACTIONS(3558), + [anon_sym__Nonnull] = ACTIONS(3558), + [anon_sym_mutable] = ACTIONS(3558), + [anon_sym_constinit] = ACTIONS(3558), + [anon_sym_consteval] = ACTIONS(3558), + [anon_sym_alignas] = ACTIONS(3558), + [anon_sym__Alignas] = ACTIONS(3558), + [sym_primitive_type] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_struct] = ACTIONS(3558), + [anon_sym_union] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_case] = ACTIONS(3558), + [anon_sym_default] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_goto] = ACTIONS(3558), + [anon_sym___try] = ACTIONS(3558), + [anon_sym___leave] = ACTIONS(3558), + [anon_sym_not] = ACTIONS(3558), + [anon_sym_compl] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_sizeof] = ACTIONS(3558), + [anon_sym___alignof__] = ACTIONS(3558), + [anon_sym___alignof] = ACTIONS(3558), + [anon_sym__alignof] = ACTIONS(3558), + [anon_sym_alignof] = ACTIONS(3558), + [anon_sym__Alignof] = ACTIONS(3558), + [anon_sym_offsetof] = ACTIONS(3558), + [anon_sym__Generic] = ACTIONS(3558), + [anon_sym_typename] = ACTIONS(3558), + [anon_sym_asm] = ACTIONS(3558), + [anon_sym___asm__] = ACTIONS(3558), + [anon_sym___asm] = ACTIONS(3558), + [sym_number_literal] = ACTIONS(3560), + [anon_sym_L_SQUOTE] = ACTIONS(3560), + [anon_sym_u_SQUOTE] = ACTIONS(3560), + [anon_sym_U_SQUOTE] = ACTIONS(3560), + [anon_sym_u8_SQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_L_DQUOTE] = ACTIONS(3560), + [anon_sym_u_DQUOTE] = ACTIONS(3560), + [anon_sym_U_DQUOTE] = ACTIONS(3560), + [anon_sym_u8_DQUOTE] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [anon_sym_NULL] = ACTIONS(3558), + [anon_sym_nullptr] = ACTIONS(3558), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3558), + [anon_sym_decltype] = ACTIONS(3558), + [anon_sym_explicit] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_template] = ACTIONS(3558), + [anon_sym_operator] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_static_assert] = ACTIONS(3558), + [anon_sym_concept] = ACTIONS(3558), + [anon_sym_co_return] = ACTIONS(3558), + [anon_sym_co_yield] = ACTIONS(3558), + [anon_sym_R_DQUOTE] = ACTIONS(3560), + [anon_sym_LR_DQUOTE] = ACTIONS(3560), + [anon_sym_uR_DQUOTE] = ACTIONS(3560), + [anon_sym_UR_DQUOTE] = ACTIONS(3560), + [anon_sym_u8R_DQUOTE] = ACTIONS(3560), + [anon_sym_co_await] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_requires] = ACTIONS(3558), + [anon_sym_CARET_CARET] = ACTIONS(3560), + [anon_sym_LBRACK_COLON] = ACTIONS(3560), + [sym_this] = ACTIONS(3558), + }, + [STATE(348)] = { + [sym_identifier] = ACTIONS(3562), + [aux_sym_preproc_include_token1] = ACTIONS(3562), + [aux_sym_preproc_def_token1] = ACTIONS(3562), + [aux_sym_preproc_if_token1] = ACTIONS(3562), + [aux_sym_preproc_if_token2] = ACTIONS(3562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3562), + [aux_sym_preproc_else_token1] = ACTIONS(3562), + [aux_sym_preproc_elif_token1] = ACTIONS(3562), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3562), + [sym_preproc_directive] = ACTIONS(3562), + [anon_sym_LPAREN2] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3564), + [anon_sym_AMP_AMP] = ACTIONS(3564), + [anon_sym_AMP] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym___extension__] = ACTIONS(3562), + [anon_sym_typedef] = ACTIONS(3562), + [anon_sym_virtual] = ACTIONS(3562), + [anon_sym_extern] = ACTIONS(3562), + [anon_sym___attribute__] = ACTIONS(3562), + [anon_sym___attribute] = ACTIONS(3562), + [anon_sym_using] = ACTIONS(3562), + [anon_sym_COLON_COLON] = ACTIONS(3564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3564), + [anon_sym___declspec] = ACTIONS(3562), + [anon_sym___based] = ACTIONS(3562), + [anon_sym___cdecl] = ACTIONS(3562), + [anon_sym___clrcall] = ACTIONS(3562), + [anon_sym___stdcall] = ACTIONS(3562), + [anon_sym___fastcall] = ACTIONS(3562), + [anon_sym___thiscall] = ACTIONS(3562), + [anon_sym___vectorcall] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_signed] = ACTIONS(3562), + [anon_sym_unsigned] = ACTIONS(3562), + [anon_sym_long] = ACTIONS(3562), + [anon_sym_short] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_register] = ACTIONS(3562), + [anon_sym_inline] = ACTIONS(3562), + [anon_sym___inline] = ACTIONS(3562), + [anon_sym___inline__] = ACTIONS(3562), + [anon_sym___forceinline] = ACTIONS(3562), + [anon_sym_thread_local] = ACTIONS(3562), + [anon_sym___thread] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_constexpr] = ACTIONS(3562), + [anon_sym_volatile] = ACTIONS(3562), + [anon_sym_restrict] = ACTIONS(3562), + [anon_sym___restrict__] = ACTIONS(3562), + [anon_sym__Atomic] = ACTIONS(3562), + [anon_sym__Noreturn] = ACTIONS(3562), + [anon_sym_noreturn] = ACTIONS(3562), + [anon_sym__Nonnull] = ACTIONS(3562), + [anon_sym_mutable] = ACTIONS(3562), + [anon_sym_constinit] = ACTIONS(3562), + [anon_sym_consteval] = ACTIONS(3562), + [anon_sym_alignas] = ACTIONS(3562), + [anon_sym__Alignas] = ACTIONS(3562), + [sym_primitive_type] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_struct] = ACTIONS(3562), + [anon_sym_union] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_else] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_case] = ACTIONS(3562), + [anon_sym_default] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_goto] = ACTIONS(3562), + [anon_sym___try] = ACTIONS(3562), + [anon_sym___leave] = ACTIONS(3562), + [anon_sym_not] = ACTIONS(3562), + [anon_sym_compl] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_sizeof] = ACTIONS(3562), + [anon_sym___alignof__] = ACTIONS(3562), + [anon_sym___alignof] = ACTIONS(3562), + [anon_sym__alignof] = ACTIONS(3562), + [anon_sym_alignof] = ACTIONS(3562), + [anon_sym__Alignof] = ACTIONS(3562), + [anon_sym_offsetof] = ACTIONS(3562), + [anon_sym__Generic] = ACTIONS(3562), + [anon_sym_typename] = ACTIONS(3562), + [anon_sym_asm] = ACTIONS(3562), + [anon_sym___asm__] = ACTIONS(3562), + [anon_sym___asm] = ACTIONS(3562), + [sym_number_literal] = ACTIONS(3564), + [anon_sym_L_SQUOTE] = ACTIONS(3564), + [anon_sym_u_SQUOTE] = ACTIONS(3564), + [anon_sym_U_SQUOTE] = ACTIONS(3564), + [anon_sym_u8_SQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_L_DQUOTE] = ACTIONS(3564), + [anon_sym_u_DQUOTE] = ACTIONS(3564), + [anon_sym_U_DQUOTE] = ACTIONS(3564), + [anon_sym_u8_DQUOTE] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [anon_sym_NULL] = ACTIONS(3562), + [anon_sym_nullptr] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3562), + [anon_sym_decltype] = ACTIONS(3562), + [anon_sym_explicit] = ACTIONS(3562), + [anon_sym_export] = ACTIONS(3562), + [anon_sym_module] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_template] = ACTIONS(3562), + [anon_sym_operator] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_namespace] = ACTIONS(3562), + [anon_sym_static_assert] = ACTIONS(3562), + [anon_sym_concept] = ACTIONS(3562), + [anon_sym_co_return] = ACTIONS(3562), + [anon_sym_co_yield] = ACTIONS(3562), + [anon_sym_R_DQUOTE] = ACTIONS(3564), + [anon_sym_LR_DQUOTE] = ACTIONS(3564), + [anon_sym_uR_DQUOTE] = ACTIONS(3564), + [anon_sym_UR_DQUOTE] = ACTIONS(3564), + [anon_sym_u8R_DQUOTE] = ACTIONS(3564), + [anon_sym_co_await] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_requires] = ACTIONS(3562), + [anon_sym_CARET_CARET] = ACTIONS(3564), + [anon_sym_LBRACK_COLON] = ACTIONS(3564), + [sym_this] = ACTIONS(3562), + }, + [STATE(349)] = { + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_field_declaration_list] = STATE(541), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), + [sym_preproc_else_in_field_declaration_list] = STATE(10976), + [sym_preproc_elif_in_field_declaration_list] = STATE(10976), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10976), + [sym_type_definition] = STATE(541), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(541), + [sym_field_declaration] = STATE(541), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(541), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(541), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(541), + [sym_operator_cast_declaration] = STATE(541), + [sym_constructor_or_destructor_definition] = STATE(541), + [sym_constructor_or_destructor_declaration] = STATE(541), + [sym_friend_declaration] = STATE(541), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(541), + [sym_alias_declaration] = STATE(541), + [sym_static_assert_declaration] = STATE(541), + [sym_consteval_block_declaration] = STATE(541), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3566), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -107165,7 +109654,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -107175,425 +109664,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(333)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3506), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = 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(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), - [sym_this] = ACTIONS(237), - }, - [STATE(334)] = { - [sym_type_qualifier] = STATE(5087), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7508), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6876), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(10133), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_type_parameter_pack_expansion] = STATE(10482), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7921), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4988), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5087), - [aux_sym_sized_type_specifier_repeat1] = STATE(6642), - [sym_identifier] = ACTIONS(3186), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_signed] = ACTIONS(3200), - [anon_sym_unsigned] = ACTIONS(3200), - [anon_sym_long] = ACTIONS(3200), - [anon_sym_short] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_struct] = ACTIONS(3208), - [anon_sym_union] = ACTIONS(3210), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(3222), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(335)] = { - [sym_preproc_def] = STATE(337), - [sym_preproc_function_def] = STATE(337), - [sym_preproc_call] = STATE(337), - [sym_preproc_if_in_field_declaration_list] = STATE(337), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(337), - [sym_preproc_else_in_field_declaration_list] = STATE(10691), - [sym_preproc_elif_in_field_declaration_list] = STATE(10691), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10691), - [sym_type_definition] = STATE(337), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(337), - [sym_field_declaration] = STATE(337), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(337), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(337), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(337), - [sym_operator_cast_declaration] = STATE(337), - [sym_constructor_or_destructor_definition] = STATE(337), - [sym_constructor_or_destructor_declaration] = STATE(337), - [sym_friend_declaration] = STATE(337), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(337), - [sym_alias_declaration] = STATE(337), - [sym_static_assert_declaration] = STATE(337), - [sym_consteval_block_declaration] = STATE(337), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(337), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3508), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(350)] = { + [sym_preproc_def] = STATE(353), + [sym_preproc_function_def] = STATE(353), + [sym_preproc_call] = STATE(353), + [sym_preproc_if_in_field_declaration_list] = STATE(353), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(353), + [sym_preproc_else_in_field_declaration_list] = STATE(11188), + [sym_preproc_elif_in_field_declaration_list] = STATE(11188), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11188), + [sym_type_definition] = STATE(353), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(353), + [sym_field_declaration] = STATE(353), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(353), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(353), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(353), + [sym_operator_cast_declaration] = STATE(353), + [sym_constructor_or_destructor_definition] = STATE(353), + [sym_constructor_or_destructor_declaration] = STATE(353), + [sym_friend_declaration] = STATE(353), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(353), + [sym_alias_declaration] = STATE(353), + [sym_static_assert_declaration] = STATE(353), + [sym_consteval_block_declaration] = STATE(353), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(353), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3568), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3570), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -107603,7 +109800,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -107613,133 +109810,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(336)] = { - [sym_preproc_def] = STATE(338), - [sym_preproc_function_def] = STATE(338), - [sym_preproc_call] = STATE(338), - [sym_preproc_if_in_field_declaration_list] = STATE(338), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(338), - [sym_preproc_else_in_field_declaration_list] = STATE(10880), - [sym_preproc_elif_in_field_declaration_list] = STATE(10880), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10880), - [sym_type_definition] = STATE(338), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(338), - [sym_field_declaration] = STATE(338), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(338), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(338), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(338), - [sym_operator_cast_declaration] = STATE(338), - [sym_constructor_or_destructor_definition] = STATE(338), - [sym_constructor_or_destructor_declaration] = STATE(338), - [sym_friend_declaration] = STATE(338), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(338), - [sym_alias_declaration] = STATE(338), - [sym_static_assert_declaration] = STATE(338), - [sym_consteval_block_declaration] = STATE(338), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(338), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3512), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(351)] = { + [sym_preproc_def] = STATE(356), + [sym_preproc_function_def] = STATE(356), + [sym_preproc_call] = STATE(356), + [sym_preproc_if_in_field_declaration_list] = STATE(356), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(356), + [sym_preproc_else_in_field_declaration_list] = STATE(10853), + [sym_preproc_elif_in_field_declaration_list] = STATE(10853), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10853), + [sym_type_definition] = STATE(356), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(356), + [sym_field_declaration] = STATE(356), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(356), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(356), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(356), + [sym_operator_cast_declaration] = STATE(356), + [sym_constructor_or_destructor_definition] = STATE(356), + [sym_constructor_or_destructor_declaration] = STATE(356), + [sym_friend_declaration] = STATE(356), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(356), + [sym_alias_declaration] = STATE(356), + [sym_static_assert_declaration] = STATE(356), + [sym_consteval_block_declaration] = STATE(356), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(356), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3572), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3514), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3574), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -107749,7 +109946,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -107759,133 +109956,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(337)] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(10888), - [sym_preproc_elif_in_field_declaration_list] = STATE(10888), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10888), - [sym_type_definition] = STATE(555), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(555), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(555), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(555), - [sym_operator_cast_declaration] = STATE(555), - [sym_constructor_or_destructor_definition] = STATE(555), - [sym_constructor_or_destructor_declaration] = STATE(555), - [sym_friend_declaration] = STATE(555), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(555), - [sym_alias_declaration] = STATE(555), - [sym_static_assert_declaration] = STATE(555), - [sym_consteval_block_declaration] = STATE(555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3516), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(352)] = { + [sym_preproc_def] = STATE(354), + [sym_preproc_function_def] = STATE(354), + [sym_preproc_call] = STATE(354), + [sym_preproc_if_in_field_declaration_list] = STATE(354), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(354), + [sym_preproc_else_in_field_declaration_list] = STATE(10769), + [sym_preproc_elif_in_field_declaration_list] = STATE(10769), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(10769), + [sym_type_definition] = STATE(354), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(354), + [sym_field_declaration] = STATE(354), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(354), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(354), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(354), + [sym_operator_cast_declaration] = STATE(354), + [sym_constructor_or_destructor_definition] = STATE(354), + [sym_constructor_or_destructor_declaration] = STATE(354), + [sym_friend_declaration] = STATE(354), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(354), + [sym_alias_declaration] = STATE(354), + [sym_static_assert_declaration] = STATE(354), + [sym_consteval_block_declaration] = STATE(354), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(354), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3576), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -107895,7 +110092,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -107905,133 +110102,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(338)] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(10998), - [sym_preproc_elif_in_field_declaration_list] = STATE(10998), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10998), - [sym_type_definition] = STATE(555), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(555), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(555), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(555), - [sym_operator_cast_declaration] = STATE(555), - [sym_constructor_or_destructor_definition] = STATE(555), - [sym_constructor_or_destructor_declaration] = STATE(555), - [sym_friend_declaration] = STATE(555), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(555), - [sym_alias_declaration] = STATE(555), - [sym_static_assert_declaration] = STATE(555), - [sym_consteval_block_declaration] = STATE(555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(353)] = { + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_field_declaration_list] = STATE(541), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), + [sym_preproc_else_in_field_declaration_list] = STATE(11481), + [sym_preproc_elif_in_field_declaration_list] = STATE(11481), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11481), + [sym_type_definition] = STATE(541), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(541), + [sym_field_declaration] = STATE(541), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(541), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(541), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(541), + [sym_operator_cast_declaration] = STATE(541), + [sym_constructor_or_destructor_definition] = STATE(541), + [sym_constructor_or_destructor_declaration] = STATE(541), + [sym_friend_declaration] = STATE(541), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(541), + [sym_alias_declaration] = STATE(541), + [sym_static_assert_declaration] = STATE(541), + [sym_consteval_block_declaration] = STATE(541), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3580), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -108041,7 +110238,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -108051,717 +110248,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(339)] = { - [sym_identifier] = ACTIONS(3520), - [aux_sym_preproc_include_token1] = ACTIONS(3520), - [aux_sym_preproc_def_token1] = ACTIONS(3520), - [aux_sym_preproc_if_token1] = ACTIONS(3520), - [aux_sym_preproc_if_token2] = ACTIONS(3520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3520), - [aux_sym_preproc_else_token1] = ACTIONS(3520), - [aux_sym_preproc_elif_token1] = ACTIONS(3520), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3520), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3520), - [sym_preproc_directive] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_AMP_AMP] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym___extension__] = ACTIONS(3520), - [anon_sym_typedef] = ACTIONS(3520), - [anon_sym_virtual] = ACTIONS(3520), - [anon_sym_extern] = ACTIONS(3520), - [anon_sym___attribute__] = ACTIONS(3520), - [anon_sym___attribute] = ACTIONS(3520), - [anon_sym_using] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3522), - [anon_sym___declspec] = ACTIONS(3520), - [anon_sym___based] = ACTIONS(3520), - [anon_sym___cdecl] = ACTIONS(3520), - [anon_sym___clrcall] = ACTIONS(3520), - [anon_sym___stdcall] = ACTIONS(3520), - [anon_sym___fastcall] = ACTIONS(3520), - [anon_sym___thiscall] = ACTIONS(3520), - [anon_sym___vectorcall] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_signed] = ACTIONS(3520), - [anon_sym_unsigned] = ACTIONS(3520), - [anon_sym_long] = ACTIONS(3520), - [anon_sym_short] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_register] = ACTIONS(3520), - [anon_sym_inline] = ACTIONS(3520), - [anon_sym___inline] = ACTIONS(3520), - [anon_sym___inline__] = ACTIONS(3520), - [anon_sym___forceinline] = ACTIONS(3520), - [anon_sym_thread_local] = ACTIONS(3520), - [anon_sym___thread] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_constexpr] = ACTIONS(3520), - [anon_sym_volatile] = ACTIONS(3520), - [anon_sym_restrict] = ACTIONS(3520), - [anon_sym___restrict__] = ACTIONS(3520), - [anon_sym__Atomic] = ACTIONS(3520), - [anon_sym__Noreturn] = ACTIONS(3520), - [anon_sym_noreturn] = ACTIONS(3520), - [anon_sym__Nonnull] = ACTIONS(3520), - [anon_sym_mutable] = ACTIONS(3520), - [anon_sym_constinit] = ACTIONS(3520), - [anon_sym_consteval] = ACTIONS(3520), - [anon_sym_alignas] = ACTIONS(3520), - [anon_sym__Alignas] = ACTIONS(3520), - [sym_primitive_type] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), - [anon_sym_class] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(3520), - [anon_sym_union] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_else] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_case] = ACTIONS(3520), - [anon_sym_default] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_goto] = ACTIONS(3520), - [anon_sym___try] = ACTIONS(3520), - [anon_sym___leave] = ACTIONS(3520), - [anon_sym_not] = ACTIONS(3520), - [anon_sym_compl] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_sizeof] = ACTIONS(3520), - [anon_sym___alignof__] = ACTIONS(3520), - [anon_sym___alignof] = ACTIONS(3520), - [anon_sym__alignof] = ACTIONS(3520), - [anon_sym_alignof] = ACTIONS(3520), - [anon_sym__Alignof] = ACTIONS(3520), - [anon_sym_offsetof] = ACTIONS(3520), - [anon_sym__Generic] = ACTIONS(3520), - [anon_sym_typename] = ACTIONS(3520), - [anon_sym_asm] = ACTIONS(3520), - [anon_sym___asm__] = ACTIONS(3520), - [anon_sym___asm] = ACTIONS(3520), - [sym_number_literal] = ACTIONS(3522), - [anon_sym_L_SQUOTE] = ACTIONS(3522), - [anon_sym_u_SQUOTE] = ACTIONS(3522), - [anon_sym_U_SQUOTE] = ACTIONS(3522), - [anon_sym_u8_SQUOTE] = ACTIONS(3522), - [anon_sym_SQUOTE] = ACTIONS(3522), - [anon_sym_L_DQUOTE] = ACTIONS(3522), - [anon_sym_u_DQUOTE] = ACTIONS(3522), - [anon_sym_U_DQUOTE] = ACTIONS(3522), - [anon_sym_u8_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [sym_true] = ACTIONS(3520), - [sym_false] = ACTIONS(3520), - [anon_sym_NULL] = ACTIONS(3520), - [anon_sym_nullptr] = ACTIONS(3520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3520), - [anon_sym_decltype] = ACTIONS(3520), - [anon_sym_explicit] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3520), - [anon_sym_module] = ACTIONS(3520), - [anon_sym_import] = ACTIONS(3520), - [anon_sym_template] = ACTIONS(3520), - [anon_sym_operator] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_delete] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_namespace] = ACTIONS(3520), - [anon_sym_static_assert] = ACTIONS(3520), - [anon_sym_concept] = ACTIONS(3520), - [anon_sym_co_return] = ACTIONS(3520), - [anon_sym_co_yield] = ACTIONS(3520), - [anon_sym_R_DQUOTE] = ACTIONS(3522), - [anon_sym_LR_DQUOTE] = ACTIONS(3522), - [anon_sym_uR_DQUOTE] = ACTIONS(3522), - [anon_sym_UR_DQUOTE] = ACTIONS(3522), - [anon_sym_u8R_DQUOTE] = ACTIONS(3522), - [anon_sym_co_await] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_requires] = ACTIONS(3520), - [anon_sym_CARET_CARET] = ACTIONS(3522), - [anon_sym_LBRACK_COLON] = ACTIONS(3522), - [sym_this] = ACTIONS(3520), - }, - [STATE(340)] = { - [sym_identifier] = ACTIONS(3524), - [aux_sym_preproc_include_token1] = ACTIONS(3524), - [aux_sym_preproc_def_token1] = ACTIONS(3524), - [aux_sym_preproc_if_token1] = ACTIONS(3524), - [aux_sym_preproc_if_token2] = ACTIONS(3524), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3524), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3524), - [aux_sym_preproc_else_token1] = ACTIONS(3524), - [aux_sym_preproc_elif_token1] = ACTIONS(3524), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3524), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3524), - [sym_preproc_directive] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_AMP_AMP] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym___extension__] = ACTIONS(3524), - [anon_sym_typedef] = ACTIONS(3524), - [anon_sym_virtual] = ACTIONS(3524), - [anon_sym_extern] = ACTIONS(3524), - [anon_sym___attribute__] = ACTIONS(3524), - [anon_sym___attribute] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3526), - [anon_sym___declspec] = ACTIONS(3524), - [anon_sym___based] = ACTIONS(3524), - [anon_sym___cdecl] = ACTIONS(3524), - [anon_sym___clrcall] = ACTIONS(3524), - [anon_sym___stdcall] = ACTIONS(3524), - [anon_sym___fastcall] = ACTIONS(3524), - [anon_sym___thiscall] = ACTIONS(3524), - [anon_sym___vectorcall] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_signed] = ACTIONS(3524), - [anon_sym_unsigned] = ACTIONS(3524), - [anon_sym_long] = ACTIONS(3524), - [anon_sym_short] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_register] = ACTIONS(3524), - [anon_sym_inline] = ACTIONS(3524), - [anon_sym___inline] = ACTIONS(3524), - [anon_sym___inline__] = ACTIONS(3524), - [anon_sym___forceinline] = ACTIONS(3524), - [anon_sym_thread_local] = ACTIONS(3524), - [anon_sym___thread] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_constexpr] = ACTIONS(3524), - [anon_sym_volatile] = ACTIONS(3524), - [anon_sym_restrict] = ACTIONS(3524), - [anon_sym___restrict__] = ACTIONS(3524), - [anon_sym__Atomic] = ACTIONS(3524), - [anon_sym__Noreturn] = ACTIONS(3524), - [anon_sym_noreturn] = ACTIONS(3524), - [anon_sym__Nonnull] = ACTIONS(3524), - [anon_sym_mutable] = ACTIONS(3524), - [anon_sym_constinit] = ACTIONS(3524), - [anon_sym_consteval] = ACTIONS(3524), - [anon_sym_alignas] = ACTIONS(3524), - [anon_sym__Alignas] = ACTIONS(3524), - [sym_primitive_type] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_struct] = ACTIONS(3524), - [anon_sym_union] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_goto] = ACTIONS(3524), - [anon_sym___try] = ACTIONS(3524), - [anon_sym___leave] = ACTIONS(3524), - [anon_sym_not] = ACTIONS(3524), - [anon_sym_compl] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_sizeof] = ACTIONS(3524), - [anon_sym___alignof__] = ACTIONS(3524), - [anon_sym___alignof] = ACTIONS(3524), - [anon_sym__alignof] = ACTIONS(3524), - [anon_sym_alignof] = ACTIONS(3524), - [anon_sym__Alignof] = ACTIONS(3524), - [anon_sym_offsetof] = ACTIONS(3524), - [anon_sym__Generic] = ACTIONS(3524), - [anon_sym_typename] = ACTIONS(3524), - [anon_sym_asm] = ACTIONS(3524), - [anon_sym___asm__] = ACTIONS(3524), - [anon_sym___asm] = ACTIONS(3524), - [sym_number_literal] = ACTIONS(3526), - [anon_sym_L_SQUOTE] = ACTIONS(3526), - [anon_sym_u_SQUOTE] = ACTIONS(3526), - [anon_sym_U_SQUOTE] = ACTIONS(3526), - [anon_sym_u8_SQUOTE] = ACTIONS(3526), - [anon_sym_SQUOTE] = ACTIONS(3526), - [anon_sym_L_DQUOTE] = ACTIONS(3526), - [anon_sym_u_DQUOTE] = ACTIONS(3526), - [anon_sym_U_DQUOTE] = ACTIONS(3526), - [anon_sym_u8_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [anon_sym_NULL] = ACTIONS(3524), - [anon_sym_nullptr] = ACTIONS(3524), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3524), - [anon_sym_decltype] = ACTIONS(3524), - [anon_sym_explicit] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_template] = ACTIONS(3524), - [anon_sym_operator] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_static_assert] = ACTIONS(3524), - [anon_sym_concept] = ACTIONS(3524), - [anon_sym_co_return] = ACTIONS(3524), - [anon_sym_co_yield] = ACTIONS(3524), - [anon_sym_R_DQUOTE] = ACTIONS(3526), - [anon_sym_LR_DQUOTE] = ACTIONS(3526), - [anon_sym_uR_DQUOTE] = ACTIONS(3526), - [anon_sym_UR_DQUOTE] = ACTIONS(3526), - [anon_sym_u8R_DQUOTE] = ACTIONS(3526), - [anon_sym_co_await] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_requires] = ACTIONS(3524), - [anon_sym_CARET_CARET] = ACTIONS(3526), - [anon_sym_LBRACK_COLON] = ACTIONS(3526), - [sym_this] = ACTIONS(3524), - }, - [STATE(341)] = { - [sym_identifier] = ACTIONS(3528), - [aux_sym_preproc_include_token1] = ACTIONS(3528), - [aux_sym_preproc_def_token1] = ACTIONS(3528), - [aux_sym_preproc_if_token1] = ACTIONS(3528), - [aux_sym_preproc_if_token2] = ACTIONS(3528), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3528), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3528), - [aux_sym_preproc_else_token1] = ACTIONS(3528), - [aux_sym_preproc_elif_token1] = ACTIONS(3528), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3528), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3528), - [sym_preproc_directive] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_AMP_AMP] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym___extension__] = ACTIONS(3528), - [anon_sym_typedef] = ACTIONS(3528), - [anon_sym_virtual] = ACTIONS(3528), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym___attribute__] = ACTIONS(3528), - [anon_sym___attribute] = ACTIONS(3528), - [anon_sym_using] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3530), - [anon_sym___declspec] = ACTIONS(3528), - [anon_sym___based] = ACTIONS(3528), - [anon_sym___cdecl] = ACTIONS(3528), - [anon_sym___clrcall] = ACTIONS(3528), - [anon_sym___stdcall] = ACTIONS(3528), - [anon_sym___fastcall] = ACTIONS(3528), - [anon_sym___thiscall] = ACTIONS(3528), - [anon_sym___vectorcall] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_signed] = ACTIONS(3528), - [anon_sym_unsigned] = ACTIONS(3528), - [anon_sym_long] = ACTIONS(3528), - [anon_sym_short] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_register] = ACTIONS(3528), - [anon_sym_inline] = ACTIONS(3528), - [anon_sym___inline] = ACTIONS(3528), - [anon_sym___inline__] = ACTIONS(3528), - [anon_sym___forceinline] = ACTIONS(3528), - [anon_sym_thread_local] = ACTIONS(3528), - [anon_sym___thread] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_constexpr] = ACTIONS(3528), - [anon_sym_volatile] = ACTIONS(3528), - [anon_sym_restrict] = ACTIONS(3528), - [anon_sym___restrict__] = ACTIONS(3528), - [anon_sym__Atomic] = ACTIONS(3528), - [anon_sym__Noreturn] = ACTIONS(3528), - [anon_sym_noreturn] = ACTIONS(3528), - [anon_sym__Nonnull] = ACTIONS(3528), - [anon_sym_mutable] = ACTIONS(3528), - [anon_sym_constinit] = ACTIONS(3528), - [anon_sym_consteval] = ACTIONS(3528), - [anon_sym_alignas] = ACTIONS(3528), - [anon_sym__Alignas] = ACTIONS(3528), - [sym_primitive_type] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), - [anon_sym_class] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(3528), - [anon_sym_union] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_else] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_case] = ACTIONS(3528), - [anon_sym_default] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_goto] = ACTIONS(3528), - [anon_sym___try] = ACTIONS(3528), - [anon_sym___leave] = ACTIONS(3528), - [anon_sym_not] = ACTIONS(3528), - [anon_sym_compl] = ACTIONS(3528), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_sizeof] = ACTIONS(3528), - [anon_sym___alignof__] = ACTIONS(3528), - [anon_sym___alignof] = ACTIONS(3528), - [anon_sym__alignof] = ACTIONS(3528), - [anon_sym_alignof] = ACTIONS(3528), - [anon_sym__Alignof] = ACTIONS(3528), - [anon_sym_offsetof] = ACTIONS(3528), - [anon_sym__Generic] = ACTIONS(3528), - [anon_sym_typename] = ACTIONS(3528), - [anon_sym_asm] = ACTIONS(3528), - [anon_sym___asm__] = ACTIONS(3528), - [anon_sym___asm] = ACTIONS(3528), - [sym_number_literal] = ACTIONS(3530), - [anon_sym_L_SQUOTE] = ACTIONS(3530), - [anon_sym_u_SQUOTE] = ACTIONS(3530), - [anon_sym_U_SQUOTE] = ACTIONS(3530), - [anon_sym_u8_SQUOTE] = ACTIONS(3530), - [anon_sym_SQUOTE] = ACTIONS(3530), - [anon_sym_L_DQUOTE] = ACTIONS(3530), - [anon_sym_u_DQUOTE] = ACTIONS(3530), - [anon_sym_U_DQUOTE] = ACTIONS(3530), - [anon_sym_u8_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [anon_sym_NULL] = ACTIONS(3528), - [anon_sym_nullptr] = ACTIONS(3528), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3528), - [anon_sym_decltype] = ACTIONS(3528), - [anon_sym_explicit] = ACTIONS(3528), - [anon_sym_export] = ACTIONS(3528), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_import] = ACTIONS(3528), - [anon_sym_template] = ACTIONS(3528), - [anon_sym_operator] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_delete] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_static_assert] = ACTIONS(3528), - [anon_sym_concept] = ACTIONS(3528), - [anon_sym_co_return] = ACTIONS(3528), - [anon_sym_co_yield] = ACTIONS(3528), - [anon_sym_R_DQUOTE] = ACTIONS(3530), - [anon_sym_LR_DQUOTE] = ACTIONS(3530), - [anon_sym_uR_DQUOTE] = ACTIONS(3530), - [anon_sym_UR_DQUOTE] = ACTIONS(3530), - [anon_sym_u8R_DQUOTE] = ACTIONS(3530), - [anon_sym_co_await] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_requires] = ACTIONS(3528), - [anon_sym_CARET_CARET] = ACTIONS(3530), - [anon_sym_LBRACK_COLON] = ACTIONS(3530), - [sym_this] = ACTIONS(3528), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(342)] = { - [sym_identifier] = ACTIONS(3532), - [aux_sym_preproc_include_token1] = ACTIONS(3532), - [aux_sym_preproc_def_token1] = ACTIONS(3532), - [aux_sym_preproc_if_token1] = ACTIONS(3532), - [aux_sym_preproc_if_token2] = ACTIONS(3532), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3532), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3532), - [aux_sym_preproc_else_token1] = ACTIONS(3532), - [aux_sym_preproc_elif_token1] = ACTIONS(3532), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3532), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3532), - [sym_preproc_directive] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym___extension__] = ACTIONS(3532), - [anon_sym_typedef] = ACTIONS(3532), - [anon_sym_virtual] = ACTIONS(3532), - [anon_sym_extern] = ACTIONS(3532), - [anon_sym___attribute__] = ACTIONS(3532), - [anon_sym___attribute] = ACTIONS(3532), - [anon_sym_using] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), - [anon_sym___declspec] = ACTIONS(3532), - [anon_sym___based] = ACTIONS(3532), - [anon_sym___cdecl] = ACTIONS(3532), - [anon_sym___clrcall] = ACTIONS(3532), - [anon_sym___stdcall] = ACTIONS(3532), - [anon_sym___fastcall] = ACTIONS(3532), - [anon_sym___thiscall] = ACTIONS(3532), - [anon_sym___vectorcall] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_signed] = ACTIONS(3532), - [anon_sym_unsigned] = ACTIONS(3532), - [anon_sym_long] = ACTIONS(3532), - [anon_sym_short] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_register] = ACTIONS(3532), - [anon_sym_inline] = ACTIONS(3532), - [anon_sym___inline] = ACTIONS(3532), - [anon_sym___inline__] = ACTIONS(3532), - [anon_sym___forceinline] = ACTIONS(3532), - [anon_sym_thread_local] = ACTIONS(3532), - [anon_sym___thread] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_constexpr] = ACTIONS(3532), - [anon_sym_volatile] = ACTIONS(3532), - [anon_sym_restrict] = ACTIONS(3532), - [anon_sym___restrict__] = ACTIONS(3532), - [anon_sym__Atomic] = ACTIONS(3532), - [anon_sym__Noreturn] = ACTIONS(3532), - [anon_sym_noreturn] = ACTIONS(3532), - [anon_sym__Nonnull] = ACTIONS(3532), - [anon_sym_mutable] = ACTIONS(3532), - [anon_sym_constinit] = ACTIONS(3532), - [anon_sym_consteval] = ACTIONS(3532), - [anon_sym_alignas] = ACTIONS(3532), - [anon_sym__Alignas] = ACTIONS(3532), - [sym_primitive_type] = ACTIONS(3532), - [anon_sym_enum] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3532), - [anon_sym_struct] = ACTIONS(3532), - [anon_sym_union] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_else] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_case] = ACTIONS(3532), - [anon_sym_default] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_goto] = ACTIONS(3532), - [anon_sym___try] = ACTIONS(3532), - [anon_sym___leave] = ACTIONS(3532), - [anon_sym_not] = ACTIONS(3532), - [anon_sym_compl] = ACTIONS(3532), - [anon_sym_DASH_DASH] = ACTIONS(3534), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_sizeof] = ACTIONS(3532), - [anon_sym___alignof__] = ACTIONS(3532), - [anon_sym___alignof] = ACTIONS(3532), - [anon_sym__alignof] = ACTIONS(3532), - [anon_sym_alignof] = ACTIONS(3532), - [anon_sym__Alignof] = ACTIONS(3532), - [anon_sym_offsetof] = ACTIONS(3532), - [anon_sym__Generic] = ACTIONS(3532), - [anon_sym_typename] = ACTIONS(3532), - [anon_sym_asm] = ACTIONS(3532), - [anon_sym___asm__] = ACTIONS(3532), - [anon_sym___asm] = ACTIONS(3532), - [sym_number_literal] = ACTIONS(3534), - [anon_sym_L_SQUOTE] = ACTIONS(3534), - [anon_sym_u_SQUOTE] = ACTIONS(3534), - [anon_sym_U_SQUOTE] = ACTIONS(3534), - [anon_sym_u8_SQUOTE] = ACTIONS(3534), - [anon_sym_SQUOTE] = ACTIONS(3534), - [anon_sym_L_DQUOTE] = ACTIONS(3534), - [anon_sym_u_DQUOTE] = ACTIONS(3534), - [anon_sym_U_DQUOTE] = ACTIONS(3534), - [anon_sym_u8_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [sym_true] = ACTIONS(3532), - [sym_false] = ACTIONS(3532), - [anon_sym_NULL] = ACTIONS(3532), - [anon_sym_nullptr] = ACTIONS(3532), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3532), - [anon_sym_decltype] = ACTIONS(3532), - [anon_sym_explicit] = ACTIONS(3532), - [anon_sym_export] = ACTIONS(3532), - [anon_sym_module] = ACTIONS(3532), - [anon_sym_import] = ACTIONS(3532), - [anon_sym_template] = ACTIONS(3532), - [anon_sym_operator] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_delete] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_namespace] = ACTIONS(3532), - [anon_sym_static_assert] = ACTIONS(3532), - [anon_sym_concept] = ACTIONS(3532), - [anon_sym_co_return] = ACTIONS(3532), - [anon_sym_co_yield] = ACTIONS(3532), - [anon_sym_R_DQUOTE] = ACTIONS(3534), - [anon_sym_LR_DQUOTE] = ACTIONS(3534), - [anon_sym_uR_DQUOTE] = ACTIONS(3534), - [anon_sym_UR_DQUOTE] = ACTIONS(3534), - [anon_sym_u8R_DQUOTE] = ACTIONS(3534), - [anon_sym_co_await] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_requires] = ACTIONS(3532), - [anon_sym_CARET_CARET] = ACTIONS(3534), - [anon_sym_LBRACK_COLON] = ACTIONS(3534), - [sym_this] = ACTIONS(3532), - }, - [STATE(343)] = { - [sym_preproc_def] = STATE(347), - [sym_preproc_function_def] = STATE(347), - [sym_preproc_call] = STATE(347), - [sym_preproc_if_in_field_declaration_list] = STATE(347), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(347), - [sym_preproc_else_in_field_declaration_list] = STATE(10764), - [sym_preproc_elif_in_field_declaration_list] = STATE(10764), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10764), - [sym_type_definition] = STATE(347), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(347), - [sym_field_declaration] = STATE(347), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(347), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(347), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(347), - [sym_operator_cast_declaration] = STATE(347), - [sym_constructor_or_destructor_definition] = STATE(347), - [sym_constructor_or_destructor_declaration] = STATE(347), - [sym_friend_declaration] = STATE(347), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(347), - [sym_alias_declaration] = STATE(347), - [sym_static_assert_declaration] = STATE(347), - [sym_consteval_block_declaration] = STATE(347), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(347), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3536), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(354)] = { + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_field_declaration_list] = STATE(541), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), + [sym_preproc_else_in_field_declaration_list] = STATE(11211), + [sym_preproc_elif_in_field_declaration_list] = STATE(11211), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11211), + [sym_type_definition] = STATE(541), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(541), + [sym_field_declaration] = STATE(541), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(541), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(541), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(541), + [sym_operator_cast_declaration] = STATE(541), + [sym_constructor_or_destructor_definition] = STATE(541), + [sym_constructor_or_destructor_declaration] = STATE(541), + [sym_friend_declaration] = STATE(541), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(541), + [sym_alias_declaration] = STATE(541), + [sym_static_assert_declaration] = STATE(541), + [sym_consteval_block_declaration] = STATE(541), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3582), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3538), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -108771,7 +110384,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -108781,425 +110394,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(344)] = { - [sym_identifier] = ACTIONS(3540), - [aux_sym_preproc_include_token1] = ACTIONS(3540), - [aux_sym_preproc_def_token1] = ACTIONS(3540), - [aux_sym_preproc_if_token1] = ACTIONS(3540), - [aux_sym_preproc_if_token2] = ACTIONS(3540), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3540), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3540), - [aux_sym_preproc_else_token1] = ACTIONS(3540), - [aux_sym_preproc_elif_token1] = ACTIONS(3540), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3540), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3540), - [sym_preproc_directive] = ACTIONS(3540), - [anon_sym_LPAREN2] = ACTIONS(3542), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_STAR] = ACTIONS(3542), - [anon_sym_AMP_AMP] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3540), - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym___extension__] = ACTIONS(3540), - [anon_sym_typedef] = ACTIONS(3540), - [anon_sym_virtual] = ACTIONS(3540), - [anon_sym_extern] = ACTIONS(3540), - [anon_sym___attribute__] = ACTIONS(3540), - [anon_sym___attribute] = ACTIONS(3540), - [anon_sym_using] = ACTIONS(3540), - [anon_sym_COLON_COLON] = ACTIONS(3542), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), - [anon_sym___declspec] = ACTIONS(3540), - [anon_sym___based] = ACTIONS(3540), - [anon_sym___cdecl] = ACTIONS(3540), - [anon_sym___clrcall] = ACTIONS(3540), - [anon_sym___stdcall] = ACTIONS(3540), - [anon_sym___fastcall] = ACTIONS(3540), - [anon_sym___thiscall] = ACTIONS(3540), - [anon_sym___vectorcall] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3542), - [anon_sym_signed] = ACTIONS(3540), - [anon_sym_unsigned] = ACTIONS(3540), - [anon_sym_long] = ACTIONS(3540), - [anon_sym_short] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_register] = ACTIONS(3540), - [anon_sym_inline] = ACTIONS(3540), - [anon_sym___inline] = ACTIONS(3540), - [anon_sym___inline__] = ACTIONS(3540), - [anon_sym___forceinline] = ACTIONS(3540), - [anon_sym_thread_local] = ACTIONS(3540), - [anon_sym___thread] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_constexpr] = ACTIONS(3540), - [anon_sym_volatile] = ACTIONS(3540), - [anon_sym_restrict] = ACTIONS(3540), - [anon_sym___restrict__] = ACTIONS(3540), - [anon_sym__Atomic] = ACTIONS(3540), - [anon_sym__Noreturn] = ACTIONS(3540), - [anon_sym_noreturn] = ACTIONS(3540), - [anon_sym__Nonnull] = ACTIONS(3540), - [anon_sym_mutable] = ACTIONS(3540), - [anon_sym_constinit] = ACTIONS(3540), - [anon_sym_consteval] = ACTIONS(3540), - [anon_sym_alignas] = ACTIONS(3540), - [anon_sym__Alignas] = ACTIONS(3540), - [sym_primitive_type] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(3540), - [anon_sym_class] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(3540), - [anon_sym_union] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_else] = ACTIONS(3540), - [anon_sym_switch] = ACTIONS(3540), - [anon_sym_case] = ACTIONS(3540), - [anon_sym_default] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_do] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_goto] = ACTIONS(3540), - [anon_sym___try] = ACTIONS(3540), - [anon_sym___leave] = ACTIONS(3540), - [anon_sym_not] = ACTIONS(3540), - [anon_sym_compl] = ACTIONS(3540), - [anon_sym_DASH_DASH] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_sizeof] = ACTIONS(3540), - [anon_sym___alignof__] = ACTIONS(3540), - [anon_sym___alignof] = ACTIONS(3540), - [anon_sym__alignof] = ACTIONS(3540), - [anon_sym_alignof] = ACTIONS(3540), - [anon_sym__Alignof] = ACTIONS(3540), - [anon_sym_offsetof] = ACTIONS(3540), - [anon_sym__Generic] = ACTIONS(3540), - [anon_sym_typename] = ACTIONS(3540), - [anon_sym_asm] = ACTIONS(3540), - [anon_sym___asm__] = ACTIONS(3540), - [anon_sym___asm] = ACTIONS(3540), - [sym_number_literal] = ACTIONS(3542), - [anon_sym_L_SQUOTE] = ACTIONS(3542), - [anon_sym_u_SQUOTE] = ACTIONS(3542), - [anon_sym_U_SQUOTE] = ACTIONS(3542), - [anon_sym_u8_SQUOTE] = ACTIONS(3542), - [anon_sym_SQUOTE] = ACTIONS(3542), - [anon_sym_L_DQUOTE] = ACTIONS(3542), - [anon_sym_u_DQUOTE] = ACTIONS(3542), - [anon_sym_U_DQUOTE] = ACTIONS(3542), - [anon_sym_u8_DQUOTE] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3542), - [sym_true] = ACTIONS(3540), - [sym_false] = ACTIONS(3540), - [anon_sym_NULL] = ACTIONS(3540), - [anon_sym_nullptr] = ACTIONS(3540), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3540), - [anon_sym_decltype] = ACTIONS(3540), - [anon_sym_explicit] = ACTIONS(3540), - [anon_sym_export] = ACTIONS(3540), - [anon_sym_module] = ACTIONS(3540), - [anon_sym_import] = ACTIONS(3540), - [anon_sym_template] = ACTIONS(3540), - [anon_sym_operator] = ACTIONS(3540), - [anon_sym_try] = ACTIONS(3540), - [anon_sym_delete] = ACTIONS(3540), - [anon_sym_throw] = ACTIONS(3540), - [anon_sym_namespace] = ACTIONS(3540), - [anon_sym_static_assert] = ACTIONS(3540), - [anon_sym_concept] = ACTIONS(3540), - [anon_sym_co_return] = ACTIONS(3540), - [anon_sym_co_yield] = ACTIONS(3540), - [anon_sym_R_DQUOTE] = ACTIONS(3542), - [anon_sym_LR_DQUOTE] = ACTIONS(3542), - [anon_sym_uR_DQUOTE] = ACTIONS(3542), - [anon_sym_UR_DQUOTE] = ACTIONS(3542), - [anon_sym_u8R_DQUOTE] = ACTIONS(3542), - [anon_sym_co_await] = ACTIONS(3540), - [anon_sym_new] = ACTIONS(3540), - [anon_sym_requires] = ACTIONS(3540), - [anon_sym_CARET_CARET] = ACTIONS(3542), - [anon_sym_LBRACK_COLON] = ACTIONS(3542), - [sym_this] = ACTIONS(3540), - }, - [STATE(345)] = { - [sym_identifier] = ACTIONS(3544), - [aux_sym_preproc_include_token1] = ACTIONS(3544), - [aux_sym_preproc_def_token1] = ACTIONS(3544), - [aux_sym_preproc_if_token1] = ACTIONS(3544), - [aux_sym_preproc_if_token2] = ACTIONS(3544), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3544), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3544), - [aux_sym_preproc_else_token1] = ACTIONS(3544), - [aux_sym_preproc_elif_token1] = ACTIONS(3544), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3544), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3544), - [sym_preproc_directive] = ACTIONS(3544), - [anon_sym_LPAREN2] = ACTIONS(3546), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_STAR] = ACTIONS(3546), - [anon_sym_AMP_AMP] = ACTIONS(3546), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym___extension__] = ACTIONS(3544), - [anon_sym_typedef] = ACTIONS(3544), - [anon_sym_virtual] = ACTIONS(3544), - [anon_sym_extern] = ACTIONS(3544), - [anon_sym___attribute__] = ACTIONS(3544), - [anon_sym___attribute] = ACTIONS(3544), - [anon_sym_using] = ACTIONS(3544), - [anon_sym_COLON_COLON] = ACTIONS(3546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3546), - [anon_sym___declspec] = ACTIONS(3544), - [anon_sym___based] = ACTIONS(3544), - [anon_sym___cdecl] = ACTIONS(3544), - [anon_sym___clrcall] = ACTIONS(3544), - [anon_sym___stdcall] = ACTIONS(3544), - [anon_sym___fastcall] = ACTIONS(3544), - [anon_sym___thiscall] = ACTIONS(3544), - [anon_sym___vectorcall] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_signed] = ACTIONS(3544), - [anon_sym_unsigned] = ACTIONS(3544), - [anon_sym_long] = ACTIONS(3544), - [anon_sym_short] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_register] = ACTIONS(3544), - [anon_sym_inline] = ACTIONS(3544), - [anon_sym___inline] = ACTIONS(3544), - [anon_sym___inline__] = ACTIONS(3544), - [anon_sym___forceinline] = ACTIONS(3544), - [anon_sym_thread_local] = ACTIONS(3544), - [anon_sym___thread] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_constexpr] = ACTIONS(3544), - [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(3544), - [anon_sym__Alignas] = ACTIONS(3544), - [sym_primitive_type] = ACTIONS(3544), - [anon_sym_enum] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3544), - [anon_sym_struct] = ACTIONS(3544), - [anon_sym_union] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3544), - [anon_sym_else] = ACTIONS(3544), - [anon_sym_switch] = ACTIONS(3544), - [anon_sym_case] = ACTIONS(3544), - [anon_sym_default] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_do] = ACTIONS(3544), - [anon_sym_for] = ACTIONS(3544), - [anon_sym_return] = ACTIONS(3544), - [anon_sym_break] = ACTIONS(3544), - [anon_sym_continue] = ACTIONS(3544), - [anon_sym_goto] = ACTIONS(3544), - [anon_sym___try] = ACTIONS(3544), - [anon_sym___leave] = ACTIONS(3544), - [anon_sym_not] = ACTIONS(3544), - [anon_sym_compl] = ACTIONS(3544), - [anon_sym_DASH_DASH] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_sizeof] = ACTIONS(3544), - [anon_sym___alignof__] = ACTIONS(3544), - [anon_sym___alignof] = ACTIONS(3544), - [anon_sym__alignof] = ACTIONS(3544), - [anon_sym_alignof] = ACTIONS(3544), - [anon_sym__Alignof] = ACTIONS(3544), - [anon_sym_offsetof] = ACTIONS(3544), - [anon_sym__Generic] = ACTIONS(3544), - [anon_sym_typename] = ACTIONS(3544), - [anon_sym_asm] = ACTIONS(3544), - [anon_sym___asm__] = ACTIONS(3544), - [anon_sym___asm] = ACTIONS(3544), - [sym_number_literal] = ACTIONS(3546), - [anon_sym_L_SQUOTE] = ACTIONS(3546), - [anon_sym_u_SQUOTE] = ACTIONS(3546), - [anon_sym_U_SQUOTE] = ACTIONS(3546), - [anon_sym_u8_SQUOTE] = ACTIONS(3546), - [anon_sym_SQUOTE] = ACTIONS(3546), - [anon_sym_L_DQUOTE] = ACTIONS(3546), - [anon_sym_u_DQUOTE] = ACTIONS(3546), - [anon_sym_U_DQUOTE] = ACTIONS(3546), - [anon_sym_u8_DQUOTE] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(3546), - [sym_true] = ACTIONS(3544), - [sym_false] = ACTIONS(3544), - [anon_sym_NULL] = ACTIONS(3544), - [anon_sym_nullptr] = ACTIONS(3544), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3544), - [anon_sym_decltype] = ACTIONS(3544), - [anon_sym_explicit] = ACTIONS(3544), - [anon_sym_export] = ACTIONS(3544), - [anon_sym_module] = ACTIONS(3544), - [anon_sym_import] = ACTIONS(3544), - [anon_sym_template] = ACTIONS(3544), - [anon_sym_operator] = ACTIONS(3544), - [anon_sym_try] = ACTIONS(3544), - [anon_sym_delete] = ACTIONS(3544), - [anon_sym_throw] = ACTIONS(3544), - [anon_sym_namespace] = ACTIONS(3544), - [anon_sym_static_assert] = ACTIONS(3544), - [anon_sym_concept] = ACTIONS(3544), - [anon_sym_co_return] = ACTIONS(3544), - [anon_sym_co_yield] = ACTIONS(3544), - [anon_sym_R_DQUOTE] = ACTIONS(3546), - [anon_sym_LR_DQUOTE] = ACTIONS(3546), - [anon_sym_uR_DQUOTE] = ACTIONS(3546), - [anon_sym_UR_DQUOTE] = ACTIONS(3546), - [anon_sym_u8R_DQUOTE] = ACTIONS(3546), - [anon_sym_co_await] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_requires] = ACTIONS(3544), - [anon_sym_CARET_CARET] = ACTIONS(3546), - [anon_sym_LBRACK_COLON] = ACTIONS(3546), - [sym_this] = ACTIONS(3544), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(346)] = { - [sym_preproc_def] = STATE(348), - [sym_preproc_function_def] = STATE(348), - [sym_preproc_call] = STATE(348), - [sym_preproc_if_in_field_declaration_list] = STATE(348), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(348), - [sym_preproc_else_in_field_declaration_list] = STATE(10852), - [sym_preproc_elif_in_field_declaration_list] = STATE(10852), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10852), - [sym_type_definition] = STATE(348), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(348), - [sym_field_declaration] = STATE(348), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(348), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(348), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(348), - [sym_operator_cast_declaration] = STATE(348), - [sym_constructor_or_destructor_definition] = STATE(348), - [sym_constructor_or_destructor_declaration] = STATE(348), - [sym_friend_declaration] = STATE(348), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(348), - [sym_alias_declaration] = STATE(348), - [sym_static_assert_declaration] = STATE(348), - [sym_consteval_block_declaration] = STATE(348), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(348), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3548), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(355)] = { + [sym_preproc_def] = STATE(323), + [sym_preproc_function_def] = STATE(323), + [sym_preproc_call] = STATE(323), + [sym_preproc_if_in_field_declaration_list] = STATE(323), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(323), + [sym_preproc_else_in_field_declaration_list] = STATE(11561), + [sym_preproc_elif_in_field_declaration_list] = STATE(11561), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11561), + [sym_type_definition] = STATE(323), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(323), + [sym_field_declaration] = STATE(323), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(323), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(323), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(323), + [sym_operator_cast_declaration] = STATE(323), + [sym_constructor_or_destructor_definition] = STATE(323), + [sym_constructor_or_destructor_declaration] = STATE(323), + [sym_friend_declaration] = STATE(323), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(323), + [sym_alias_declaration] = STATE(323), + [sym_static_assert_declaration] = STATE(323), + [sym_consteval_block_declaration] = STATE(323), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(323), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3584), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3550), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3586), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -109209,7 +110530,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -109219,133 +110540,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(347)] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(10858), - [sym_preproc_elif_in_field_declaration_list] = STATE(10858), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10858), - [sym_type_definition] = STATE(555), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(555), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(555), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(555), - [sym_operator_cast_declaration] = STATE(555), - [sym_constructor_or_destructor_definition] = STATE(555), - [sym_constructor_or_destructor_declaration] = STATE(555), - [sym_friend_declaration] = STATE(555), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(555), - [sym_alias_declaration] = STATE(555), - [sym_static_assert_declaration] = STATE(555), - [sym_consteval_block_declaration] = STATE(555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3552), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(356)] = { + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_field_declaration_list] = STATE(541), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), + [sym_preproc_else_in_field_declaration_list] = STATE(11565), + [sym_preproc_elif_in_field_declaration_list] = STATE(11565), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11565), + [sym_type_definition] = STATE(541), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(541), + [sym_field_declaration] = STATE(541), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(541), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(541), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(541), + [sym_operator_cast_declaration] = STATE(541), + [sym_constructor_or_destructor_definition] = STATE(541), + [sym_constructor_or_destructor_declaration] = STATE(541), + [sym_friend_declaration] = STATE(541), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(541), + [sym_alias_declaration] = STATE(541), + [sym_static_assert_declaration] = STATE(541), + [sym_consteval_block_declaration] = STATE(541), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3588), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -109355,7 +110676,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -109365,1487 +110686,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(348)] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(10938), - [sym_preproc_elif_in_field_declaration_list] = STATE(10938), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10938), - [sym_type_definition] = STATE(555), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(555), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(555), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(555), - [sym_operator_cast_declaration] = STATE(555), - [sym_constructor_or_destructor_definition] = STATE(555), - [sym_constructor_or_destructor_declaration] = STATE(555), - [sym_friend_declaration] = STATE(555), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(555), - [sym_alias_declaration] = STATE(555), - [sym_static_assert_declaration] = STATE(555), - [sym_consteval_block_declaration] = STATE(555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3554), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(3460), - [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(3462), - [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(3464), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(349)] = { - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_include_token1] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token2] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [aux_sym_preproc_else_token1] = ACTIONS(3556), - [aux_sym_preproc_elif_token1] = ACTIONS(3556), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym___attribute] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym___cdecl] = ACTIONS(3556), - [anon_sym___clrcall] = ACTIONS(3556), - [anon_sym___stdcall] = ACTIONS(3556), - [anon_sym___fastcall] = ACTIONS(3556), - [anon_sym___thiscall] = ACTIONS(3556), - [anon_sym___vectorcall] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [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(3556), - [anon_sym__Alignas] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_else] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_case] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym___try] = ACTIONS(3556), - [anon_sym___leave] = ACTIONS(3556), - [anon_sym_not] = ACTIONS(3556), - [anon_sym_compl] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym___alignof__] = ACTIONS(3556), - [anon_sym___alignof] = ACTIONS(3556), - [anon_sym__alignof] = ACTIONS(3556), - [anon_sym_alignof] = ACTIONS(3556), - [anon_sym__Alignof] = ACTIONS(3556), - [anon_sym_offsetof] = ACTIONS(3556), - [anon_sym__Generic] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym___asm__] = ACTIONS(3556), - [anon_sym___asm] = ACTIONS(3556), - [sym_number_literal] = ACTIONS(3558), - [anon_sym_L_SQUOTE] = ACTIONS(3558), - [anon_sym_u_SQUOTE] = ACTIONS(3558), - [anon_sym_U_SQUOTE] = ACTIONS(3558), - [anon_sym_u8_SQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_L_DQUOTE] = ACTIONS(3558), - [anon_sym_u_DQUOTE] = ACTIONS(3558), - [anon_sym_U_DQUOTE] = ACTIONS(3558), - [anon_sym_u8_DQUOTE] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [anon_sym_NULL] = ACTIONS(3556), - [anon_sym_nullptr] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_export] = ACTIONS(3556), - [anon_sym_module] = ACTIONS(3556), - [anon_sym_import] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_delete] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_namespace] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), - [anon_sym_concept] = ACTIONS(3556), - [anon_sym_co_return] = ACTIONS(3556), - [anon_sym_co_yield] = ACTIONS(3556), - [anon_sym_R_DQUOTE] = ACTIONS(3558), - [anon_sym_LR_DQUOTE] = ACTIONS(3558), - [anon_sym_uR_DQUOTE] = ACTIONS(3558), - [anon_sym_UR_DQUOTE] = ACTIONS(3558), - [anon_sym_u8R_DQUOTE] = ACTIONS(3558), - [anon_sym_co_await] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_requires] = ACTIONS(3556), - [anon_sym_CARET_CARET] = ACTIONS(3558), - [anon_sym_LBRACK_COLON] = ACTIONS(3558), - [sym_this] = ACTIONS(3556), - }, - [STATE(350)] = { - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_include_token1] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token2] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [aux_sym_preproc_else_token1] = ACTIONS(3560), - [aux_sym_preproc_elif_token1] = ACTIONS(3560), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym___attribute] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym___cdecl] = ACTIONS(3560), - [anon_sym___clrcall] = ACTIONS(3560), - [anon_sym___stdcall] = ACTIONS(3560), - [anon_sym___fastcall] = ACTIONS(3560), - [anon_sym___thiscall] = ACTIONS(3560), - [anon_sym___vectorcall] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym__Nonnull] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym__Alignas] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_else] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym___try] = ACTIONS(3560), - [anon_sym___leave] = ACTIONS(3560), - [anon_sym_not] = ACTIONS(3560), - [anon_sym_compl] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym___alignof__] = ACTIONS(3560), - [anon_sym___alignof] = ACTIONS(3560), - [anon_sym__alignof] = ACTIONS(3560), - [anon_sym_alignof] = ACTIONS(3560), - [anon_sym__Alignof] = ACTIONS(3560), - [anon_sym_offsetof] = ACTIONS(3560), - [anon_sym__Generic] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_asm] = ACTIONS(3560), - [anon_sym___asm__] = ACTIONS(3560), - [anon_sym___asm] = ACTIONS(3560), - [sym_number_literal] = ACTIONS(3562), - [anon_sym_L_SQUOTE] = ACTIONS(3562), - [anon_sym_u_SQUOTE] = ACTIONS(3562), - [anon_sym_U_SQUOTE] = ACTIONS(3562), - [anon_sym_u8_SQUOTE] = ACTIONS(3562), - [anon_sym_SQUOTE] = ACTIONS(3562), - [anon_sym_L_DQUOTE] = ACTIONS(3562), - [anon_sym_u_DQUOTE] = ACTIONS(3562), - [anon_sym_U_DQUOTE] = ACTIONS(3562), - [anon_sym_u8_DQUOTE] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [anon_sym_NULL] = ACTIONS(3560), - [anon_sym_nullptr] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_export] = ACTIONS(3560), - [anon_sym_module] = ACTIONS(3560), - [anon_sym_import] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), - [anon_sym_concept] = ACTIONS(3560), - [anon_sym_co_return] = ACTIONS(3560), - [anon_sym_co_yield] = ACTIONS(3560), - [anon_sym_R_DQUOTE] = ACTIONS(3562), - [anon_sym_LR_DQUOTE] = ACTIONS(3562), - [anon_sym_uR_DQUOTE] = ACTIONS(3562), - [anon_sym_UR_DQUOTE] = ACTIONS(3562), - [anon_sym_u8R_DQUOTE] = ACTIONS(3562), - [anon_sym_co_await] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_requires] = ACTIONS(3560), - [anon_sym_CARET_CARET] = ACTIONS(3562), - [anon_sym_LBRACK_COLON] = ACTIONS(3562), - [sym_this] = ACTIONS(3560), - }, - [STATE(351)] = { - [sym_identifier] = ACTIONS(3564), - [aux_sym_preproc_include_token1] = ACTIONS(3564), - [aux_sym_preproc_def_token1] = ACTIONS(3564), - [aux_sym_preproc_if_token1] = ACTIONS(3564), - [aux_sym_preproc_if_token2] = ACTIONS(3564), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3564), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3564), - [aux_sym_preproc_else_token1] = ACTIONS(3564), - [aux_sym_preproc_elif_token1] = ACTIONS(3564), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3564), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3564), - [sym_preproc_directive] = ACTIONS(3564), - [anon_sym_LPAREN2] = ACTIONS(3566), - [anon_sym_BANG] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3564), - [anon_sym_SEMI] = ACTIONS(3566), - [anon_sym___extension__] = ACTIONS(3564), - [anon_sym_typedef] = ACTIONS(3564), - [anon_sym_virtual] = ACTIONS(3564), - [anon_sym_extern] = ACTIONS(3564), - [anon_sym___attribute__] = ACTIONS(3564), - [anon_sym___attribute] = ACTIONS(3564), - [anon_sym_using] = ACTIONS(3564), - [anon_sym_COLON_COLON] = ACTIONS(3566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3566), - [anon_sym___declspec] = ACTIONS(3564), - [anon_sym___based] = ACTIONS(3564), - [anon_sym___cdecl] = ACTIONS(3564), - [anon_sym___clrcall] = ACTIONS(3564), - [anon_sym___stdcall] = ACTIONS(3564), - [anon_sym___fastcall] = ACTIONS(3564), - [anon_sym___thiscall] = ACTIONS(3564), - [anon_sym___vectorcall] = ACTIONS(3564), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_signed] = ACTIONS(3564), - [anon_sym_unsigned] = ACTIONS(3564), - [anon_sym_long] = ACTIONS(3564), - [anon_sym_short] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3564), - [anon_sym_static] = ACTIONS(3564), - [anon_sym_register] = ACTIONS(3564), - [anon_sym_inline] = ACTIONS(3564), - [anon_sym___inline] = ACTIONS(3564), - [anon_sym___inline__] = ACTIONS(3564), - [anon_sym___forceinline] = ACTIONS(3564), - [anon_sym_thread_local] = ACTIONS(3564), - [anon_sym___thread] = ACTIONS(3564), - [anon_sym_const] = ACTIONS(3564), - [anon_sym_constexpr] = ACTIONS(3564), - [anon_sym_volatile] = ACTIONS(3564), - [anon_sym_restrict] = ACTIONS(3564), - [anon_sym___restrict__] = ACTIONS(3564), - [anon_sym__Atomic] = ACTIONS(3564), - [anon_sym__Noreturn] = ACTIONS(3564), - [anon_sym_noreturn] = ACTIONS(3564), - [anon_sym__Nonnull] = ACTIONS(3564), - [anon_sym_mutable] = ACTIONS(3564), - [anon_sym_constinit] = ACTIONS(3564), - [anon_sym_consteval] = ACTIONS(3564), - [anon_sym_alignas] = ACTIONS(3564), - [anon_sym__Alignas] = ACTIONS(3564), - [sym_primitive_type] = ACTIONS(3564), - [anon_sym_enum] = ACTIONS(3564), - [anon_sym_class] = ACTIONS(3564), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_union] = ACTIONS(3564), - [anon_sym_if] = ACTIONS(3564), - [anon_sym_else] = ACTIONS(3564), - [anon_sym_switch] = ACTIONS(3564), - [anon_sym_case] = ACTIONS(3564), - [anon_sym_default] = ACTIONS(3564), - [anon_sym_while] = ACTIONS(3564), - [anon_sym_do] = ACTIONS(3564), - [anon_sym_for] = ACTIONS(3564), - [anon_sym_return] = ACTIONS(3564), - [anon_sym_break] = ACTIONS(3564), - [anon_sym_continue] = ACTIONS(3564), - [anon_sym_goto] = ACTIONS(3564), - [anon_sym___try] = ACTIONS(3564), - [anon_sym___leave] = ACTIONS(3564), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3566), - [anon_sym_PLUS_PLUS] = ACTIONS(3566), - [anon_sym_sizeof] = ACTIONS(3564), - [anon_sym___alignof__] = ACTIONS(3564), - [anon_sym___alignof] = ACTIONS(3564), - [anon_sym__alignof] = ACTIONS(3564), - [anon_sym_alignof] = ACTIONS(3564), - [anon_sym__Alignof] = ACTIONS(3564), - [anon_sym_offsetof] = ACTIONS(3564), - [anon_sym__Generic] = ACTIONS(3564), - [anon_sym_typename] = ACTIONS(3564), - [anon_sym_asm] = ACTIONS(3564), - [anon_sym___asm__] = ACTIONS(3564), - [anon_sym___asm] = ACTIONS(3564), - [sym_number_literal] = ACTIONS(3566), - [anon_sym_L_SQUOTE] = ACTIONS(3566), - [anon_sym_u_SQUOTE] = ACTIONS(3566), - [anon_sym_U_SQUOTE] = ACTIONS(3566), - [anon_sym_u8_SQUOTE] = ACTIONS(3566), - [anon_sym_SQUOTE] = ACTIONS(3566), - [anon_sym_L_DQUOTE] = ACTIONS(3566), - [anon_sym_u_DQUOTE] = ACTIONS(3566), - [anon_sym_U_DQUOTE] = ACTIONS(3566), - [anon_sym_u8_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [sym_true] = ACTIONS(3564), - [sym_false] = ACTIONS(3564), - [anon_sym_NULL] = ACTIONS(3564), - [anon_sym_nullptr] = ACTIONS(3564), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3564), - [anon_sym_decltype] = ACTIONS(3564), - [anon_sym_explicit] = ACTIONS(3564), - [anon_sym_export] = ACTIONS(3564), - [anon_sym_module] = ACTIONS(3564), - [anon_sym_import] = ACTIONS(3564), - [anon_sym_template] = ACTIONS(3564), - [anon_sym_operator] = ACTIONS(3564), - [anon_sym_try] = ACTIONS(3564), - [anon_sym_delete] = ACTIONS(3564), - [anon_sym_throw] = ACTIONS(3564), - [anon_sym_namespace] = ACTIONS(3564), - [anon_sym_static_assert] = ACTIONS(3564), - [anon_sym_concept] = ACTIONS(3564), - [anon_sym_co_return] = ACTIONS(3564), - [anon_sym_co_yield] = ACTIONS(3564), - [anon_sym_R_DQUOTE] = ACTIONS(3566), - [anon_sym_LR_DQUOTE] = ACTIONS(3566), - [anon_sym_uR_DQUOTE] = ACTIONS(3566), - [anon_sym_UR_DQUOTE] = ACTIONS(3566), - [anon_sym_u8R_DQUOTE] = ACTIONS(3566), - [anon_sym_co_await] = ACTIONS(3564), - [anon_sym_new] = ACTIONS(3564), - [anon_sym_requires] = ACTIONS(3564), - [anon_sym_CARET_CARET] = ACTIONS(3566), - [anon_sym_LBRACK_COLON] = ACTIONS(3566), - [sym_this] = ACTIONS(3564), - }, - [STATE(352)] = { - [sym_identifier] = ACTIONS(3568), - [aux_sym_preproc_include_token1] = ACTIONS(3568), - [aux_sym_preproc_def_token1] = ACTIONS(3568), - [aux_sym_preproc_if_token1] = ACTIONS(3568), - [aux_sym_preproc_if_token2] = ACTIONS(3568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3568), - [aux_sym_preproc_else_token1] = ACTIONS(3568), - [aux_sym_preproc_elif_token1] = ACTIONS(3568), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3568), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3568), - [sym_preproc_directive] = ACTIONS(3568), - [anon_sym_LPAREN2] = ACTIONS(3570), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_AMP] = ACTIONS(3568), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym___extension__] = ACTIONS(3568), - [anon_sym_typedef] = ACTIONS(3568), - [anon_sym_virtual] = ACTIONS(3568), - [anon_sym_extern] = ACTIONS(3568), - [anon_sym___attribute__] = ACTIONS(3568), - [anon_sym___attribute] = ACTIONS(3568), - [anon_sym_using] = ACTIONS(3568), - [anon_sym_COLON_COLON] = ACTIONS(3570), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3570), - [anon_sym___declspec] = ACTIONS(3568), - [anon_sym___based] = ACTIONS(3568), - [anon_sym___cdecl] = ACTIONS(3568), - [anon_sym___clrcall] = ACTIONS(3568), - [anon_sym___stdcall] = ACTIONS(3568), - [anon_sym___fastcall] = ACTIONS(3568), - [anon_sym___thiscall] = ACTIONS(3568), - [anon_sym___vectorcall] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_signed] = ACTIONS(3568), - [anon_sym_unsigned] = ACTIONS(3568), - [anon_sym_long] = ACTIONS(3568), - [anon_sym_short] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_register] = ACTIONS(3568), - [anon_sym_inline] = ACTIONS(3568), - [anon_sym___inline] = ACTIONS(3568), - [anon_sym___inline__] = ACTIONS(3568), - [anon_sym___forceinline] = ACTIONS(3568), - [anon_sym_thread_local] = ACTIONS(3568), - [anon_sym___thread] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_constexpr] = ACTIONS(3568), - [anon_sym_volatile] = ACTIONS(3568), - [anon_sym_restrict] = ACTIONS(3568), - [anon_sym___restrict__] = ACTIONS(3568), - [anon_sym__Atomic] = ACTIONS(3568), - [anon_sym__Noreturn] = ACTIONS(3568), - [anon_sym_noreturn] = ACTIONS(3568), - [anon_sym__Nonnull] = ACTIONS(3568), - [anon_sym_mutable] = ACTIONS(3568), - [anon_sym_constinit] = ACTIONS(3568), - [anon_sym_consteval] = ACTIONS(3568), - [anon_sym_alignas] = ACTIONS(3568), - [anon_sym__Alignas] = ACTIONS(3568), - [sym_primitive_type] = ACTIONS(3568), - [anon_sym_enum] = ACTIONS(3568), - [anon_sym_class] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3568), - [anon_sym_union] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_else] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_case] = ACTIONS(3568), - [anon_sym_default] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_goto] = ACTIONS(3568), - [anon_sym___try] = ACTIONS(3568), - [anon_sym___leave] = ACTIONS(3568), - [anon_sym_not] = ACTIONS(3568), - [anon_sym_compl] = ACTIONS(3568), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_sizeof] = ACTIONS(3568), - [anon_sym___alignof__] = ACTIONS(3568), - [anon_sym___alignof] = ACTIONS(3568), - [anon_sym__alignof] = ACTIONS(3568), - [anon_sym_alignof] = ACTIONS(3568), - [anon_sym__Alignof] = ACTIONS(3568), - [anon_sym_offsetof] = ACTIONS(3568), - [anon_sym__Generic] = ACTIONS(3568), - [anon_sym_typename] = ACTIONS(3568), - [anon_sym_asm] = ACTIONS(3568), - [anon_sym___asm__] = ACTIONS(3568), - [anon_sym___asm] = ACTIONS(3568), - [sym_number_literal] = ACTIONS(3570), - [anon_sym_L_SQUOTE] = ACTIONS(3570), - [anon_sym_u_SQUOTE] = ACTIONS(3570), - [anon_sym_U_SQUOTE] = ACTIONS(3570), - [anon_sym_u8_SQUOTE] = ACTIONS(3570), - [anon_sym_SQUOTE] = ACTIONS(3570), - [anon_sym_L_DQUOTE] = ACTIONS(3570), - [anon_sym_u_DQUOTE] = ACTIONS(3570), - [anon_sym_U_DQUOTE] = ACTIONS(3570), - [anon_sym_u8_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [sym_true] = ACTIONS(3568), - [sym_false] = ACTIONS(3568), - [anon_sym_NULL] = ACTIONS(3568), - [anon_sym_nullptr] = ACTIONS(3568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3568), - [anon_sym_decltype] = ACTIONS(3568), - [anon_sym_explicit] = ACTIONS(3568), - [anon_sym_export] = ACTIONS(3568), - [anon_sym_module] = ACTIONS(3568), - [anon_sym_import] = ACTIONS(3568), - [anon_sym_template] = ACTIONS(3568), - [anon_sym_operator] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_delete] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_namespace] = ACTIONS(3568), - [anon_sym_static_assert] = ACTIONS(3568), - [anon_sym_concept] = ACTIONS(3568), - [anon_sym_co_return] = ACTIONS(3568), - [anon_sym_co_yield] = ACTIONS(3568), - [anon_sym_R_DQUOTE] = ACTIONS(3570), - [anon_sym_LR_DQUOTE] = ACTIONS(3570), - [anon_sym_uR_DQUOTE] = ACTIONS(3570), - [anon_sym_UR_DQUOTE] = ACTIONS(3570), - [anon_sym_u8R_DQUOTE] = ACTIONS(3570), - [anon_sym_co_await] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_requires] = ACTIONS(3568), - [anon_sym_CARET_CARET] = ACTIONS(3570), - [anon_sym_LBRACK_COLON] = ACTIONS(3570), - [sym_this] = ACTIONS(3568), - }, - [STATE(353)] = { - [sym_identifier] = ACTIONS(3572), - [aux_sym_preproc_include_token1] = ACTIONS(3572), - [aux_sym_preproc_def_token1] = ACTIONS(3572), - [aux_sym_preproc_if_token1] = ACTIONS(3572), - [aux_sym_preproc_if_token2] = ACTIONS(3572), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3572), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3572), - [aux_sym_preproc_else_token1] = ACTIONS(3572), - [aux_sym_preproc_elif_token1] = ACTIONS(3572), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3572), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3572), - [sym_preproc_directive] = ACTIONS(3572), - [anon_sym_LPAREN2] = ACTIONS(3574), - [anon_sym_BANG] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_STAR] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_AMP] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym___extension__] = ACTIONS(3572), - [anon_sym_typedef] = ACTIONS(3572), - [anon_sym_virtual] = ACTIONS(3572), - [anon_sym_extern] = ACTIONS(3572), - [anon_sym___attribute__] = ACTIONS(3572), - [anon_sym___attribute] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_COLON_COLON] = ACTIONS(3574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3574), - [anon_sym___declspec] = ACTIONS(3572), - [anon_sym___based] = ACTIONS(3572), - [anon_sym___cdecl] = ACTIONS(3572), - [anon_sym___clrcall] = ACTIONS(3572), - [anon_sym___stdcall] = ACTIONS(3572), - [anon_sym___fastcall] = ACTIONS(3572), - [anon_sym___thiscall] = ACTIONS(3572), - [anon_sym___vectorcall] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_signed] = ACTIONS(3572), - [anon_sym_unsigned] = ACTIONS(3572), - [anon_sym_long] = ACTIONS(3572), - [anon_sym_short] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_register] = ACTIONS(3572), - [anon_sym_inline] = ACTIONS(3572), - [anon_sym___inline] = ACTIONS(3572), - [anon_sym___inline__] = ACTIONS(3572), - [anon_sym___forceinline] = ACTIONS(3572), - [anon_sym_thread_local] = ACTIONS(3572), - [anon_sym___thread] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_constexpr] = ACTIONS(3572), - [anon_sym_volatile] = ACTIONS(3572), - [anon_sym_restrict] = ACTIONS(3572), - [anon_sym___restrict__] = ACTIONS(3572), - [anon_sym__Atomic] = ACTIONS(3572), - [anon_sym__Noreturn] = ACTIONS(3572), - [anon_sym_noreturn] = ACTIONS(3572), - [anon_sym__Nonnull] = ACTIONS(3572), - [anon_sym_mutable] = ACTIONS(3572), - [anon_sym_constinit] = ACTIONS(3572), - [anon_sym_consteval] = ACTIONS(3572), - [anon_sym_alignas] = ACTIONS(3572), - [anon_sym__Alignas] = ACTIONS(3572), - [sym_primitive_type] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_struct] = ACTIONS(3572), - [anon_sym_union] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_case] = ACTIONS(3572), - [anon_sym_default] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_goto] = ACTIONS(3572), - [anon_sym___try] = ACTIONS(3572), - [anon_sym___leave] = ACTIONS(3572), - [anon_sym_not] = ACTIONS(3572), - [anon_sym_compl] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_sizeof] = ACTIONS(3572), - [anon_sym___alignof__] = ACTIONS(3572), - [anon_sym___alignof] = ACTIONS(3572), - [anon_sym__alignof] = ACTIONS(3572), - [anon_sym_alignof] = ACTIONS(3572), - [anon_sym__Alignof] = ACTIONS(3572), - [anon_sym_offsetof] = ACTIONS(3572), - [anon_sym__Generic] = ACTIONS(3572), - [anon_sym_typename] = ACTIONS(3572), - [anon_sym_asm] = ACTIONS(3572), - [anon_sym___asm__] = ACTIONS(3572), - [anon_sym___asm] = ACTIONS(3572), - [sym_number_literal] = ACTIONS(3574), - [anon_sym_L_SQUOTE] = ACTIONS(3574), - [anon_sym_u_SQUOTE] = ACTIONS(3574), - [anon_sym_U_SQUOTE] = ACTIONS(3574), - [anon_sym_u8_SQUOTE] = ACTIONS(3574), - [anon_sym_SQUOTE] = ACTIONS(3574), - [anon_sym_L_DQUOTE] = ACTIONS(3574), - [anon_sym_u_DQUOTE] = ACTIONS(3574), - [anon_sym_U_DQUOTE] = ACTIONS(3574), - [anon_sym_u8_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [anon_sym_NULL] = ACTIONS(3572), - [anon_sym_nullptr] = ACTIONS(3572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3572), - [anon_sym_decltype] = ACTIONS(3572), - [anon_sym_explicit] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_module] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_template] = ACTIONS(3572), - [anon_sym_operator] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_static_assert] = ACTIONS(3572), - [anon_sym_concept] = ACTIONS(3572), - [anon_sym_co_return] = ACTIONS(3572), - [anon_sym_co_yield] = ACTIONS(3572), - [anon_sym_R_DQUOTE] = ACTIONS(3574), - [anon_sym_LR_DQUOTE] = ACTIONS(3574), - [anon_sym_uR_DQUOTE] = ACTIONS(3574), - [anon_sym_UR_DQUOTE] = ACTIONS(3574), - [anon_sym_u8R_DQUOTE] = ACTIONS(3574), - [anon_sym_co_await] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_requires] = ACTIONS(3572), - [anon_sym_CARET_CARET] = ACTIONS(3574), - [anon_sym_LBRACK_COLON] = ACTIONS(3574), - [sym_this] = ACTIONS(3572), - }, - [STATE(354)] = { - [sym_identifier] = ACTIONS(3576), - [aux_sym_preproc_include_token1] = ACTIONS(3576), - [aux_sym_preproc_def_token1] = ACTIONS(3576), - [aux_sym_preproc_if_token1] = ACTIONS(3576), - [aux_sym_preproc_if_token2] = ACTIONS(3576), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3576), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3576), - [aux_sym_preproc_else_token1] = ACTIONS(3576), - [aux_sym_preproc_elif_token1] = ACTIONS(3576), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3576), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3576), - [sym_preproc_directive] = ACTIONS(3576), - [anon_sym_LPAREN2] = ACTIONS(3578), - [anon_sym_BANG] = ACTIONS(3578), - [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(3578), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [anon_sym_AMP] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym___extension__] = ACTIONS(3576), - [anon_sym_typedef] = ACTIONS(3576), - [anon_sym_virtual] = ACTIONS(3576), - [anon_sym_extern] = ACTIONS(3576), - [anon_sym___attribute__] = ACTIONS(3576), - [anon_sym___attribute] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_COLON_COLON] = ACTIONS(3578), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), - [anon_sym___declspec] = ACTIONS(3576), - [anon_sym___based] = ACTIONS(3576), - [anon_sym___cdecl] = ACTIONS(3576), - [anon_sym___clrcall] = ACTIONS(3576), - [anon_sym___stdcall] = ACTIONS(3576), - [anon_sym___fastcall] = ACTIONS(3576), - [anon_sym___thiscall] = ACTIONS(3576), - [anon_sym___vectorcall] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_signed] = ACTIONS(3576), - [anon_sym_unsigned] = ACTIONS(3576), - [anon_sym_long] = ACTIONS(3576), - [anon_sym_short] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_register] = ACTIONS(3576), - [anon_sym_inline] = ACTIONS(3576), - [anon_sym___inline] = ACTIONS(3576), - [anon_sym___inline__] = ACTIONS(3576), - [anon_sym___forceinline] = ACTIONS(3576), - [anon_sym_thread_local] = ACTIONS(3576), - [anon_sym___thread] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_constexpr] = ACTIONS(3576), - [anon_sym_volatile] = ACTIONS(3576), - [anon_sym_restrict] = ACTIONS(3576), - [anon_sym___restrict__] = ACTIONS(3576), - [anon_sym__Atomic] = ACTIONS(3576), - [anon_sym__Noreturn] = ACTIONS(3576), - [anon_sym_noreturn] = ACTIONS(3576), - [anon_sym__Nonnull] = ACTIONS(3576), - [anon_sym_mutable] = ACTIONS(3576), - [anon_sym_constinit] = ACTIONS(3576), - [anon_sym_consteval] = ACTIONS(3576), - [anon_sym_alignas] = ACTIONS(3576), - [anon_sym__Alignas] = ACTIONS(3576), - [sym_primitive_type] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_struct] = ACTIONS(3576), - [anon_sym_union] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_goto] = ACTIONS(3576), - [anon_sym___try] = ACTIONS(3576), - [anon_sym___leave] = ACTIONS(3576), - [anon_sym_not] = ACTIONS(3576), - [anon_sym_compl] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_sizeof] = ACTIONS(3576), - [anon_sym___alignof__] = ACTIONS(3576), - [anon_sym___alignof] = ACTIONS(3576), - [anon_sym__alignof] = ACTIONS(3576), - [anon_sym_alignof] = ACTIONS(3576), - [anon_sym__Alignof] = ACTIONS(3576), - [anon_sym_offsetof] = ACTIONS(3576), - [anon_sym__Generic] = ACTIONS(3576), - [anon_sym_typename] = ACTIONS(3576), - [anon_sym_asm] = ACTIONS(3576), - [anon_sym___asm__] = ACTIONS(3576), - [anon_sym___asm] = ACTIONS(3576), - [sym_number_literal] = ACTIONS(3578), - [anon_sym_L_SQUOTE] = ACTIONS(3578), - [anon_sym_u_SQUOTE] = ACTIONS(3578), - [anon_sym_U_SQUOTE] = ACTIONS(3578), - [anon_sym_u8_SQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3578), - [anon_sym_L_DQUOTE] = ACTIONS(3578), - [anon_sym_u_DQUOTE] = ACTIONS(3578), - [anon_sym_U_DQUOTE] = ACTIONS(3578), - [anon_sym_u8_DQUOTE] = ACTIONS(3578), - [anon_sym_DQUOTE] = ACTIONS(3578), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [anon_sym_NULL] = ACTIONS(3576), - [anon_sym_nullptr] = ACTIONS(3576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3576), - [anon_sym_decltype] = ACTIONS(3576), - [anon_sym_explicit] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_template] = ACTIONS(3576), - [anon_sym_operator] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_static_assert] = ACTIONS(3576), - [anon_sym_concept] = ACTIONS(3576), - [anon_sym_co_return] = ACTIONS(3576), - [anon_sym_co_yield] = ACTIONS(3576), - [anon_sym_R_DQUOTE] = ACTIONS(3578), - [anon_sym_LR_DQUOTE] = ACTIONS(3578), - [anon_sym_uR_DQUOTE] = ACTIONS(3578), - [anon_sym_UR_DQUOTE] = ACTIONS(3578), - [anon_sym_u8R_DQUOTE] = ACTIONS(3578), - [anon_sym_co_await] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_requires] = ACTIONS(3576), - [anon_sym_CARET_CARET] = ACTIONS(3578), - [anon_sym_LBRACK_COLON] = ACTIONS(3578), - [sym_this] = ACTIONS(3576), - }, - [STATE(355)] = { - [sym_identifier] = ACTIONS(3580), - [aux_sym_preproc_include_token1] = ACTIONS(3580), - [aux_sym_preproc_def_token1] = ACTIONS(3580), - [aux_sym_preproc_if_token1] = ACTIONS(3580), - [aux_sym_preproc_if_token2] = ACTIONS(3580), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3580), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3580), - [aux_sym_preproc_else_token1] = ACTIONS(3580), - [aux_sym_preproc_elif_token1] = ACTIONS(3580), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3580), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3580), - [sym_preproc_directive] = ACTIONS(3580), - [anon_sym_LPAREN2] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3580), - [anon_sym_PLUS] = ACTIONS(3580), - [anon_sym_STAR] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_AMP] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym___extension__] = ACTIONS(3580), - [anon_sym_typedef] = ACTIONS(3580), - [anon_sym_virtual] = ACTIONS(3580), - [anon_sym_extern] = ACTIONS(3580), - [anon_sym___attribute__] = ACTIONS(3580), - [anon_sym___attribute] = ACTIONS(3580), - [anon_sym_using] = ACTIONS(3580), - [anon_sym_COLON_COLON] = ACTIONS(3582), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), - [anon_sym___declspec] = ACTIONS(3580), - [anon_sym___based] = ACTIONS(3580), - [anon_sym___cdecl] = ACTIONS(3580), - [anon_sym___clrcall] = ACTIONS(3580), - [anon_sym___stdcall] = ACTIONS(3580), - [anon_sym___fastcall] = ACTIONS(3580), - [anon_sym___thiscall] = ACTIONS(3580), - [anon_sym___vectorcall] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_signed] = ACTIONS(3580), - [anon_sym_unsigned] = ACTIONS(3580), - [anon_sym_long] = ACTIONS(3580), - [anon_sym_short] = ACTIONS(3580), - [anon_sym_LBRACK] = ACTIONS(3580), - [anon_sym_static] = ACTIONS(3580), - [anon_sym_register] = ACTIONS(3580), - [anon_sym_inline] = ACTIONS(3580), - [anon_sym___inline] = ACTIONS(3580), - [anon_sym___inline__] = ACTIONS(3580), - [anon_sym___forceinline] = ACTIONS(3580), - [anon_sym_thread_local] = ACTIONS(3580), - [anon_sym___thread] = ACTIONS(3580), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_constexpr] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_restrict] = ACTIONS(3580), - [anon_sym___restrict__] = ACTIONS(3580), - [anon_sym__Atomic] = ACTIONS(3580), - [anon_sym__Noreturn] = ACTIONS(3580), - [anon_sym_noreturn] = ACTIONS(3580), - [anon_sym__Nonnull] = ACTIONS(3580), - [anon_sym_mutable] = ACTIONS(3580), - [anon_sym_constinit] = ACTIONS(3580), - [anon_sym_consteval] = ACTIONS(3580), - [anon_sym_alignas] = ACTIONS(3580), - [anon_sym__Alignas] = ACTIONS(3580), - [sym_primitive_type] = ACTIONS(3580), - [anon_sym_enum] = ACTIONS(3580), - [anon_sym_class] = ACTIONS(3580), - [anon_sym_struct] = ACTIONS(3580), - [anon_sym_union] = ACTIONS(3580), - [anon_sym_if] = ACTIONS(3580), - [anon_sym_else] = ACTIONS(3580), - [anon_sym_switch] = ACTIONS(3580), - [anon_sym_case] = ACTIONS(3580), - [anon_sym_default] = ACTIONS(3580), - [anon_sym_while] = ACTIONS(3580), - [anon_sym_do] = ACTIONS(3580), - [anon_sym_for] = ACTIONS(3580), - [anon_sym_return] = ACTIONS(3580), - [anon_sym_break] = ACTIONS(3580), - [anon_sym_continue] = ACTIONS(3580), - [anon_sym_goto] = ACTIONS(3580), - [anon_sym___try] = ACTIONS(3580), - [anon_sym___leave] = ACTIONS(3580), - [anon_sym_not] = ACTIONS(3580), - [anon_sym_compl] = ACTIONS(3580), - [anon_sym_DASH_DASH] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_sizeof] = ACTIONS(3580), - [anon_sym___alignof__] = ACTIONS(3580), - [anon_sym___alignof] = ACTIONS(3580), - [anon_sym__alignof] = ACTIONS(3580), - [anon_sym_alignof] = ACTIONS(3580), - [anon_sym__Alignof] = ACTIONS(3580), - [anon_sym_offsetof] = ACTIONS(3580), - [anon_sym__Generic] = ACTIONS(3580), - [anon_sym_typename] = ACTIONS(3580), - [anon_sym_asm] = ACTIONS(3580), - [anon_sym___asm__] = ACTIONS(3580), - [anon_sym___asm] = ACTIONS(3580), - [sym_number_literal] = ACTIONS(3582), - [anon_sym_L_SQUOTE] = ACTIONS(3582), - [anon_sym_u_SQUOTE] = ACTIONS(3582), - [anon_sym_U_SQUOTE] = ACTIONS(3582), - [anon_sym_u8_SQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_L_DQUOTE] = ACTIONS(3582), - [anon_sym_u_DQUOTE] = ACTIONS(3582), - [anon_sym_U_DQUOTE] = ACTIONS(3582), - [anon_sym_u8_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [sym_true] = ACTIONS(3580), - [sym_false] = ACTIONS(3580), - [anon_sym_NULL] = ACTIONS(3580), - [anon_sym_nullptr] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3580), - [anon_sym_decltype] = ACTIONS(3580), - [anon_sym_explicit] = ACTIONS(3580), - [anon_sym_export] = ACTIONS(3580), - [anon_sym_module] = ACTIONS(3580), - [anon_sym_import] = ACTIONS(3580), - [anon_sym_template] = ACTIONS(3580), - [anon_sym_operator] = ACTIONS(3580), - [anon_sym_try] = ACTIONS(3580), - [anon_sym_delete] = ACTIONS(3580), - [anon_sym_throw] = ACTIONS(3580), - [anon_sym_namespace] = ACTIONS(3580), - [anon_sym_static_assert] = ACTIONS(3580), - [anon_sym_concept] = ACTIONS(3580), - [anon_sym_co_return] = ACTIONS(3580), - [anon_sym_co_yield] = ACTIONS(3580), - [anon_sym_R_DQUOTE] = ACTIONS(3582), - [anon_sym_LR_DQUOTE] = ACTIONS(3582), - [anon_sym_uR_DQUOTE] = ACTIONS(3582), - [anon_sym_UR_DQUOTE] = ACTIONS(3582), - [anon_sym_u8R_DQUOTE] = ACTIONS(3582), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3580), - [anon_sym_requires] = ACTIONS(3580), - [anon_sym_CARET_CARET] = ACTIONS(3582), - [anon_sym_LBRACK_COLON] = ACTIONS(3582), - [sym_this] = ACTIONS(3580), - }, - [STATE(356)] = { - [sym_preproc_def] = STATE(327), - [sym_preproc_function_def] = STATE(327), - [sym_preproc_call] = STATE(327), - [sym_preproc_if_in_field_declaration_list] = STATE(327), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(327), - [sym_preproc_else_in_field_declaration_list] = STATE(10784), - [sym_preproc_elif_in_field_declaration_list] = STATE(10784), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(10784), - [sym_type_definition] = STATE(327), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(327), - [sym_field_declaration] = STATE(327), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(327), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(327), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(327), - [sym_operator_cast_declaration] = STATE(327), - [sym_constructor_or_destructor_definition] = STATE(327), - [sym_constructor_or_destructor_declaration] = STATE(327), - [sym_friend_declaration] = STATE(327), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(327), - [sym_alias_declaration] = STATE(327), - [sym_static_assert_declaration] = STATE(327), - [sym_consteval_block_declaration] = STATE(327), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(327), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3584), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3586), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(3460), - [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(3462), - [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(3464), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(357)] = { - [sym_identifier] = ACTIONS(3588), - [aux_sym_preproc_include_token1] = ACTIONS(3588), - [aux_sym_preproc_def_token1] = ACTIONS(3588), - [aux_sym_preproc_if_token1] = ACTIONS(3588), - [aux_sym_preproc_if_token2] = ACTIONS(3588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3588), - [aux_sym_preproc_else_token1] = ACTIONS(3588), - [aux_sym_preproc_elif_token1] = ACTIONS(3588), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3588), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3588), - [sym_preproc_directive] = ACTIONS(3588), - [anon_sym_LPAREN2] = ACTIONS(3590), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_STAR] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_AMP] = ACTIONS(3588), - [anon_sym_SEMI] = ACTIONS(3590), - [anon_sym___extension__] = ACTIONS(3588), - [anon_sym_typedef] = ACTIONS(3588), - [anon_sym_virtual] = ACTIONS(3588), - [anon_sym_extern] = ACTIONS(3588), - [anon_sym___attribute__] = ACTIONS(3588), - [anon_sym___attribute] = ACTIONS(3588), - [anon_sym_using] = ACTIONS(3588), - [anon_sym_COLON_COLON] = ACTIONS(3590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), - [anon_sym___declspec] = ACTIONS(3588), - [anon_sym___based] = ACTIONS(3588), - [anon_sym___cdecl] = ACTIONS(3588), - [anon_sym___clrcall] = ACTIONS(3588), - [anon_sym___stdcall] = ACTIONS(3588), - [anon_sym___fastcall] = ACTIONS(3588), - [anon_sym___thiscall] = ACTIONS(3588), - [anon_sym___vectorcall] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_signed] = ACTIONS(3588), - [anon_sym_unsigned] = ACTIONS(3588), - [anon_sym_long] = ACTIONS(3588), - [anon_sym_short] = ACTIONS(3588), - [anon_sym_LBRACK] = ACTIONS(3588), - [anon_sym_static] = ACTIONS(3588), - [anon_sym_register] = ACTIONS(3588), - [anon_sym_inline] = ACTIONS(3588), - [anon_sym___inline] = ACTIONS(3588), - [anon_sym___inline__] = ACTIONS(3588), - [anon_sym___forceinline] = ACTIONS(3588), - [anon_sym_thread_local] = ACTIONS(3588), - [anon_sym___thread] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_constexpr] = ACTIONS(3588), - [anon_sym_volatile] = ACTIONS(3588), - [anon_sym_restrict] = ACTIONS(3588), - [anon_sym___restrict__] = ACTIONS(3588), - [anon_sym__Atomic] = ACTIONS(3588), - [anon_sym__Noreturn] = ACTIONS(3588), - [anon_sym_noreturn] = ACTIONS(3588), - [anon_sym__Nonnull] = ACTIONS(3588), - [anon_sym_mutable] = ACTIONS(3588), - [anon_sym_constinit] = ACTIONS(3588), - [anon_sym_consteval] = ACTIONS(3588), - [anon_sym_alignas] = ACTIONS(3588), - [anon_sym__Alignas] = ACTIONS(3588), - [sym_primitive_type] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), - [anon_sym_class] = ACTIONS(3588), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_union] = ACTIONS(3588), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_else] = ACTIONS(3588), - [anon_sym_switch] = ACTIONS(3588), - [anon_sym_case] = ACTIONS(3588), - [anon_sym_default] = ACTIONS(3588), - [anon_sym_while] = ACTIONS(3588), - [anon_sym_do] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3588), - [anon_sym_return] = ACTIONS(3588), - [anon_sym_break] = ACTIONS(3588), - [anon_sym_continue] = ACTIONS(3588), - [anon_sym_goto] = ACTIONS(3588), - [anon_sym___try] = ACTIONS(3588), - [anon_sym___leave] = ACTIONS(3588), - [anon_sym_not] = ACTIONS(3588), - [anon_sym_compl] = ACTIONS(3588), - [anon_sym_DASH_DASH] = ACTIONS(3590), - [anon_sym_PLUS_PLUS] = ACTIONS(3590), - [anon_sym_sizeof] = ACTIONS(3588), - [anon_sym___alignof__] = ACTIONS(3588), - [anon_sym___alignof] = ACTIONS(3588), - [anon_sym__alignof] = ACTIONS(3588), - [anon_sym_alignof] = ACTIONS(3588), - [anon_sym__Alignof] = ACTIONS(3588), - [anon_sym_offsetof] = ACTIONS(3588), - [anon_sym__Generic] = ACTIONS(3588), - [anon_sym_typename] = ACTIONS(3588), - [anon_sym_asm] = ACTIONS(3588), - [anon_sym___asm__] = ACTIONS(3588), - [anon_sym___asm] = ACTIONS(3588), - [sym_number_literal] = ACTIONS(3590), - [anon_sym_L_SQUOTE] = ACTIONS(3590), - [anon_sym_u_SQUOTE] = ACTIONS(3590), - [anon_sym_U_SQUOTE] = ACTIONS(3590), - [anon_sym_u8_SQUOTE] = ACTIONS(3590), - [anon_sym_SQUOTE] = ACTIONS(3590), - [anon_sym_L_DQUOTE] = ACTIONS(3590), - [anon_sym_u_DQUOTE] = ACTIONS(3590), - [anon_sym_U_DQUOTE] = ACTIONS(3590), - [anon_sym_u8_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [sym_true] = ACTIONS(3588), - [sym_false] = ACTIONS(3588), - [anon_sym_NULL] = ACTIONS(3588), - [anon_sym_nullptr] = ACTIONS(3588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3588), - [anon_sym_decltype] = ACTIONS(3588), - [anon_sym_explicit] = ACTIONS(3588), - [anon_sym_export] = ACTIONS(3588), - [anon_sym_module] = ACTIONS(3588), - [anon_sym_import] = ACTIONS(3588), - [anon_sym_template] = ACTIONS(3588), - [anon_sym_operator] = ACTIONS(3588), - [anon_sym_try] = ACTIONS(3588), - [anon_sym_delete] = ACTIONS(3588), - [anon_sym_throw] = ACTIONS(3588), - [anon_sym_namespace] = ACTIONS(3588), - [anon_sym_static_assert] = ACTIONS(3588), - [anon_sym_concept] = ACTIONS(3588), - [anon_sym_co_return] = ACTIONS(3588), - [anon_sym_co_yield] = ACTIONS(3588), - [anon_sym_R_DQUOTE] = ACTIONS(3590), - [anon_sym_LR_DQUOTE] = ACTIONS(3590), - [anon_sym_uR_DQUOTE] = ACTIONS(3590), - [anon_sym_UR_DQUOTE] = ACTIONS(3590), - [anon_sym_u8R_DQUOTE] = ACTIONS(3590), - [anon_sym_co_await] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3588), - [anon_sym_requires] = ACTIONS(3588), - [anon_sym_CARET_CARET] = ACTIONS(3590), - [anon_sym_LBRACK_COLON] = ACTIONS(3590), - [sym_this] = ACTIONS(3588), + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3590), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), + [sym_this] = ACTIONS(237), }, [STATE(358)] = { [sym_identifier] = ACTIONS(3592), @@ -111140,103 +111147,3461 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(3596), }, [STATE(360)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_preproc_def] = STATE(362), + [sym_preproc_function_def] = STATE(362), + [sym_preproc_call] = STATE(362), + [sym_preproc_if_in_field_declaration_list] = STATE(362), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(362), + [sym_preproc_else_in_field_declaration_list] = STATE(11200), + [sym_preproc_elif_in_field_declaration_list] = STATE(11200), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11200), + [sym_type_definition] = STATE(362), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(362), + [sym_field_declaration] = STATE(362), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(362), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(362), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(362), + [sym_operator_cast_declaration] = STATE(362), + [sym_constructor_or_destructor_definition] = STATE(362), + [sym_constructor_or_destructor_declaration] = STATE(362), + [sym_friend_declaration] = STATE(362), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(362), + [sym_alias_declaration] = STATE(362), + [sym_static_assert_declaration] = STATE(362), + [sym_consteval_block_declaration] = STATE(362), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(362), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3600), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3602), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(3458), + [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(3460), + [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(3462), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(361)] = { + [sym_preproc_def] = STATE(364), + [sym_preproc_function_def] = STATE(364), + [sym_preproc_call] = STATE(364), + [sym_preproc_if_in_field_declaration_list] = STATE(364), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(364), + [sym_preproc_else_in_field_declaration_list] = STATE(11244), + [sym_preproc_elif_in_field_declaration_list] = STATE(11244), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11244), + [sym_type_definition] = STATE(364), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(364), + [sym_field_declaration] = STATE(364), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(364), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(364), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(364), + [sym_operator_cast_declaration] = STATE(364), + [sym_constructor_or_destructor_definition] = STATE(364), + [sym_constructor_or_destructor_declaration] = STATE(364), + [sym_friend_declaration] = STATE(364), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(364), + [sym_alias_declaration] = STATE(364), + [sym_static_assert_declaration] = STATE(364), + [sym_consteval_block_declaration] = STATE(364), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(364), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3604), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(3458), + [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(3460), + [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(3462), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(362)] = { + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_field_declaration_list] = STATE(541), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), + [sym_preproc_else_in_field_declaration_list] = STATE(11248), + [sym_preproc_elif_in_field_declaration_list] = STATE(11248), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11248), + [sym_type_definition] = STATE(541), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(541), + [sym_field_declaration] = STATE(541), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(541), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(541), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(541), + [sym_operator_cast_declaration] = STATE(541), + [sym_constructor_or_destructor_definition] = STATE(541), + [sym_constructor_or_destructor_declaration] = STATE(541), + [sym_friend_declaration] = STATE(541), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(541), + [sym_alias_declaration] = STATE(541), + [sym_static_assert_declaration] = STATE(541), + [sym_consteval_block_declaration] = STATE(541), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3608), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(3458), + [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(3460), + [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(3462), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(363)] = { + [sym_identifier] = ACTIONS(3610), + [aux_sym_preproc_include_token1] = ACTIONS(3610), + [aux_sym_preproc_def_token1] = ACTIONS(3610), + [aux_sym_preproc_if_token1] = ACTIONS(3610), + [aux_sym_preproc_if_token2] = ACTIONS(3610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3610), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3610), + [aux_sym_preproc_else_token1] = ACTIONS(3610), + [aux_sym_preproc_elif_token1] = ACTIONS(3610), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3610), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3610), + [sym_preproc_directive] = ACTIONS(3610), + [anon_sym_LPAREN2] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_AMP] = ACTIONS(3610), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym___extension__] = ACTIONS(3610), + [anon_sym_typedef] = ACTIONS(3610), + [anon_sym_virtual] = ACTIONS(3610), + [anon_sym_extern] = ACTIONS(3610), + [anon_sym___attribute__] = ACTIONS(3610), + [anon_sym___attribute] = ACTIONS(3610), + [anon_sym_using] = ACTIONS(3610), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3612), + [anon_sym___declspec] = ACTIONS(3610), + [anon_sym___based] = ACTIONS(3610), + [anon_sym___cdecl] = ACTIONS(3610), + [anon_sym___clrcall] = ACTIONS(3610), + [anon_sym___stdcall] = ACTIONS(3610), + [anon_sym___fastcall] = ACTIONS(3610), + [anon_sym___thiscall] = ACTIONS(3610), + [anon_sym___vectorcall] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_signed] = ACTIONS(3610), + [anon_sym_unsigned] = ACTIONS(3610), + [anon_sym_long] = ACTIONS(3610), + [anon_sym_short] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3610), + [anon_sym_static] = ACTIONS(3610), + [anon_sym_register] = ACTIONS(3610), + [anon_sym_inline] = ACTIONS(3610), + [anon_sym___inline] = ACTIONS(3610), + [anon_sym___inline__] = ACTIONS(3610), + [anon_sym___forceinline] = ACTIONS(3610), + [anon_sym_thread_local] = ACTIONS(3610), + [anon_sym___thread] = ACTIONS(3610), + [anon_sym_const] = ACTIONS(3610), + [anon_sym_constexpr] = ACTIONS(3610), + [anon_sym_volatile] = ACTIONS(3610), + [anon_sym_restrict] = ACTIONS(3610), + [anon_sym___restrict__] = ACTIONS(3610), + [anon_sym__Atomic] = ACTIONS(3610), + [anon_sym__Noreturn] = ACTIONS(3610), + [anon_sym_noreturn] = ACTIONS(3610), + [anon_sym__Nonnull] = ACTIONS(3610), + [anon_sym_mutable] = ACTIONS(3610), + [anon_sym_constinit] = ACTIONS(3610), + [anon_sym_consteval] = ACTIONS(3610), + [anon_sym_alignas] = ACTIONS(3610), + [anon_sym__Alignas] = ACTIONS(3610), + [sym_primitive_type] = ACTIONS(3610), + [anon_sym_enum] = ACTIONS(3610), + [anon_sym_class] = ACTIONS(3610), + [anon_sym_struct] = ACTIONS(3610), + [anon_sym_union] = ACTIONS(3610), + [anon_sym_if] = ACTIONS(3610), + [anon_sym_else] = ACTIONS(3610), + [anon_sym_switch] = ACTIONS(3610), + [anon_sym_case] = ACTIONS(3610), + [anon_sym_default] = ACTIONS(3610), + [anon_sym_while] = ACTIONS(3610), + [anon_sym_do] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3610), + [anon_sym_break] = ACTIONS(3610), + [anon_sym_continue] = ACTIONS(3610), + [anon_sym_goto] = ACTIONS(3610), + [anon_sym___try] = ACTIONS(3610), + [anon_sym___leave] = ACTIONS(3610), + [anon_sym_not] = ACTIONS(3610), + [anon_sym_compl] = ACTIONS(3610), + [anon_sym_DASH_DASH] = ACTIONS(3612), + [anon_sym_PLUS_PLUS] = ACTIONS(3612), + [anon_sym_sizeof] = ACTIONS(3610), + [anon_sym___alignof__] = ACTIONS(3610), + [anon_sym___alignof] = ACTIONS(3610), + [anon_sym__alignof] = ACTIONS(3610), + [anon_sym_alignof] = ACTIONS(3610), + [anon_sym__Alignof] = ACTIONS(3610), + [anon_sym_offsetof] = ACTIONS(3610), + [anon_sym__Generic] = ACTIONS(3610), + [anon_sym_typename] = ACTIONS(3610), + [anon_sym_asm] = ACTIONS(3610), + [anon_sym___asm__] = ACTIONS(3610), + [anon_sym___asm] = ACTIONS(3610), + [sym_number_literal] = ACTIONS(3612), + [anon_sym_L_SQUOTE] = ACTIONS(3612), + [anon_sym_u_SQUOTE] = ACTIONS(3612), + [anon_sym_U_SQUOTE] = ACTIONS(3612), + [anon_sym_u8_SQUOTE] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(3612), + [anon_sym_L_DQUOTE] = ACTIONS(3612), + [anon_sym_u_DQUOTE] = ACTIONS(3612), + [anon_sym_U_DQUOTE] = ACTIONS(3612), + [anon_sym_u8_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [sym_true] = ACTIONS(3610), + [sym_false] = ACTIONS(3610), + [anon_sym_NULL] = ACTIONS(3610), + [anon_sym_nullptr] = ACTIONS(3610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3610), + [anon_sym_decltype] = ACTIONS(3610), + [anon_sym_explicit] = ACTIONS(3610), + [anon_sym_export] = ACTIONS(3610), + [anon_sym_module] = ACTIONS(3610), + [anon_sym_import] = ACTIONS(3610), + [anon_sym_template] = ACTIONS(3610), + [anon_sym_operator] = ACTIONS(3610), + [anon_sym_try] = ACTIONS(3610), + [anon_sym_delete] = ACTIONS(3610), + [anon_sym_throw] = ACTIONS(3610), + [anon_sym_namespace] = ACTIONS(3610), + [anon_sym_static_assert] = ACTIONS(3610), + [anon_sym_concept] = ACTIONS(3610), + [anon_sym_co_return] = ACTIONS(3610), + [anon_sym_co_yield] = ACTIONS(3610), + [anon_sym_R_DQUOTE] = ACTIONS(3612), + [anon_sym_LR_DQUOTE] = ACTIONS(3612), + [anon_sym_uR_DQUOTE] = ACTIONS(3612), + [anon_sym_UR_DQUOTE] = ACTIONS(3612), + [anon_sym_u8R_DQUOTE] = ACTIONS(3612), + [anon_sym_co_await] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3610), + [anon_sym_requires] = ACTIONS(3610), + [anon_sym_CARET_CARET] = ACTIONS(3612), + [anon_sym_LBRACK_COLON] = ACTIONS(3612), + [sym_this] = ACTIONS(3610), + }, + [STATE(364)] = { + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_field_declaration_list] = STATE(541), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), + [sym_preproc_else_in_field_declaration_list] = STATE(11353), + [sym_preproc_elif_in_field_declaration_list] = STATE(11353), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11353), + [sym_type_definition] = STATE(541), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(541), + [sym_field_declaration] = STATE(541), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(541), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(541), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(541), + [sym_operator_cast_declaration] = STATE(541), + [sym_constructor_or_destructor_definition] = STATE(541), + [sym_constructor_or_destructor_declaration] = STATE(541), + [sym_friend_declaration] = STATE(541), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(541), + [sym_alias_declaration] = STATE(541), + [sym_static_assert_declaration] = STATE(541), + [sym_consteval_block_declaration] = STATE(541), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3614), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(3458), + [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(3460), + [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(3462), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(365)] = { + [sym_identifier] = ACTIONS(3616), + [aux_sym_preproc_include_token1] = ACTIONS(3616), + [aux_sym_preproc_def_token1] = ACTIONS(3616), + [aux_sym_preproc_if_token1] = ACTIONS(3616), + [aux_sym_preproc_if_token2] = ACTIONS(3616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3616), + [aux_sym_preproc_else_token1] = ACTIONS(3616), + [aux_sym_preproc_elif_token1] = ACTIONS(3616), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3616), + [sym_preproc_directive] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_AMP_AMP] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym___extension__] = ACTIONS(3616), + [anon_sym_typedef] = ACTIONS(3616), + [anon_sym_virtual] = ACTIONS(3616), + [anon_sym_extern] = ACTIONS(3616), + [anon_sym___attribute__] = ACTIONS(3616), + [anon_sym___attribute] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3618), + [anon_sym___declspec] = ACTIONS(3616), + [anon_sym___based] = ACTIONS(3616), + [anon_sym___cdecl] = ACTIONS(3616), + [anon_sym___clrcall] = ACTIONS(3616), + [anon_sym___stdcall] = ACTIONS(3616), + [anon_sym___fastcall] = ACTIONS(3616), + [anon_sym___thiscall] = ACTIONS(3616), + [anon_sym___vectorcall] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_signed] = ACTIONS(3616), + [anon_sym_unsigned] = ACTIONS(3616), + [anon_sym_long] = ACTIONS(3616), + [anon_sym_short] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_register] = ACTIONS(3616), + [anon_sym_inline] = ACTIONS(3616), + [anon_sym___inline] = ACTIONS(3616), + [anon_sym___inline__] = ACTIONS(3616), + [anon_sym___forceinline] = ACTIONS(3616), + [anon_sym_thread_local] = ACTIONS(3616), + [anon_sym___thread] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_constexpr] = ACTIONS(3616), + [anon_sym_volatile] = ACTIONS(3616), + [anon_sym_restrict] = ACTIONS(3616), + [anon_sym___restrict__] = ACTIONS(3616), + [anon_sym__Atomic] = ACTIONS(3616), + [anon_sym__Noreturn] = ACTIONS(3616), + [anon_sym_noreturn] = ACTIONS(3616), + [anon_sym__Nonnull] = ACTIONS(3616), + [anon_sym_mutable] = ACTIONS(3616), + [anon_sym_constinit] = ACTIONS(3616), + [anon_sym_consteval] = ACTIONS(3616), + [anon_sym_alignas] = ACTIONS(3616), + [anon_sym__Alignas] = ACTIONS(3616), + [sym_primitive_type] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3616), + [anon_sym_union] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_case] = ACTIONS(3616), + [anon_sym_default] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_goto] = ACTIONS(3616), + [anon_sym___try] = ACTIONS(3616), + [anon_sym___leave] = ACTIONS(3616), + [anon_sym_not] = ACTIONS(3616), + [anon_sym_compl] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(3616), + [anon_sym___alignof] = ACTIONS(3616), + [anon_sym__alignof] = ACTIONS(3616), + [anon_sym_alignof] = ACTIONS(3616), + [anon_sym__Alignof] = ACTIONS(3616), + [anon_sym_offsetof] = ACTIONS(3616), + [anon_sym__Generic] = ACTIONS(3616), + [anon_sym_typename] = ACTIONS(3616), + [anon_sym_asm] = ACTIONS(3616), + [anon_sym___asm__] = ACTIONS(3616), + [anon_sym___asm] = ACTIONS(3616), + [sym_number_literal] = ACTIONS(3618), + [anon_sym_L_SQUOTE] = ACTIONS(3618), + [anon_sym_u_SQUOTE] = ACTIONS(3618), + [anon_sym_U_SQUOTE] = ACTIONS(3618), + [anon_sym_u8_SQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_L_DQUOTE] = ACTIONS(3618), + [anon_sym_u_DQUOTE] = ACTIONS(3618), + [anon_sym_U_DQUOTE] = ACTIONS(3618), + [anon_sym_u8_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [anon_sym_NULL] = ACTIONS(3616), + [anon_sym_nullptr] = ACTIONS(3616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3616), + [anon_sym_decltype] = ACTIONS(3616), + [anon_sym_explicit] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_template] = ACTIONS(3616), + [anon_sym_operator] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_static_assert] = ACTIONS(3616), + [anon_sym_concept] = ACTIONS(3616), + [anon_sym_co_return] = ACTIONS(3616), + [anon_sym_co_yield] = ACTIONS(3616), + [anon_sym_R_DQUOTE] = ACTIONS(3618), + [anon_sym_LR_DQUOTE] = ACTIONS(3618), + [anon_sym_uR_DQUOTE] = ACTIONS(3618), + [anon_sym_UR_DQUOTE] = ACTIONS(3618), + [anon_sym_u8R_DQUOTE] = ACTIONS(3618), + [anon_sym_co_await] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_requires] = ACTIONS(3616), + [anon_sym_CARET_CARET] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3618), + [sym_this] = ACTIONS(3616), + }, + [STATE(366)] = { + [sym_identifier] = ACTIONS(3620), + [aux_sym_preproc_include_token1] = ACTIONS(3620), + [aux_sym_preproc_def_token1] = ACTIONS(3620), + [aux_sym_preproc_if_token1] = ACTIONS(3620), + [aux_sym_preproc_if_token2] = ACTIONS(3620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3620), + [aux_sym_preproc_else_token1] = ACTIONS(3620), + [aux_sym_preproc_elif_token1] = ACTIONS(3620), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3620), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3620), + [sym_preproc_directive] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [anon_sym_AMP_AMP] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym___extension__] = ACTIONS(3620), + [anon_sym_typedef] = ACTIONS(3620), + [anon_sym_virtual] = ACTIONS(3620), + [anon_sym_extern] = ACTIONS(3620), + [anon_sym___attribute__] = ACTIONS(3620), + [anon_sym___attribute] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3622), + [anon_sym___declspec] = ACTIONS(3620), + [anon_sym___based] = ACTIONS(3620), + [anon_sym___cdecl] = ACTIONS(3620), + [anon_sym___clrcall] = ACTIONS(3620), + [anon_sym___stdcall] = ACTIONS(3620), + [anon_sym___fastcall] = ACTIONS(3620), + [anon_sym___thiscall] = ACTIONS(3620), + [anon_sym___vectorcall] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3620), + [anon_sym_unsigned] = ACTIONS(3620), + [anon_sym_long] = ACTIONS(3620), + [anon_sym_short] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_register] = ACTIONS(3620), + [anon_sym_inline] = ACTIONS(3620), + [anon_sym___inline] = ACTIONS(3620), + [anon_sym___inline__] = ACTIONS(3620), + [anon_sym___forceinline] = ACTIONS(3620), + [anon_sym_thread_local] = ACTIONS(3620), + [anon_sym___thread] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_constexpr] = ACTIONS(3620), + [anon_sym_volatile] = ACTIONS(3620), + [anon_sym_restrict] = ACTIONS(3620), + [anon_sym___restrict__] = ACTIONS(3620), + [anon_sym__Atomic] = ACTIONS(3620), + [anon_sym__Noreturn] = ACTIONS(3620), + [anon_sym_noreturn] = ACTIONS(3620), + [anon_sym__Nonnull] = ACTIONS(3620), + [anon_sym_mutable] = ACTIONS(3620), + [anon_sym_constinit] = ACTIONS(3620), + [anon_sym_consteval] = ACTIONS(3620), + [anon_sym_alignas] = ACTIONS(3620), + [anon_sym__Alignas] = ACTIONS(3620), + [sym_primitive_type] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_struct] = ACTIONS(3620), + [anon_sym_union] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_else] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_case] = ACTIONS(3620), + [anon_sym_default] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_goto] = ACTIONS(3620), + [anon_sym___try] = ACTIONS(3620), + [anon_sym___leave] = ACTIONS(3620), + [anon_sym_not] = ACTIONS(3620), + [anon_sym_compl] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_sizeof] = ACTIONS(3620), + [anon_sym___alignof__] = ACTIONS(3620), + [anon_sym___alignof] = ACTIONS(3620), + [anon_sym__alignof] = ACTIONS(3620), + [anon_sym_alignof] = ACTIONS(3620), + [anon_sym__Alignof] = ACTIONS(3620), + [anon_sym_offsetof] = ACTIONS(3620), + [anon_sym__Generic] = ACTIONS(3620), + [anon_sym_typename] = ACTIONS(3620), + [anon_sym_asm] = ACTIONS(3620), + [anon_sym___asm__] = ACTIONS(3620), + [anon_sym___asm] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [anon_sym_L_SQUOTE] = ACTIONS(3622), + [anon_sym_u_SQUOTE] = ACTIONS(3622), + [anon_sym_U_SQUOTE] = ACTIONS(3622), + [anon_sym_u8_SQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [anon_sym_NULL] = ACTIONS(3620), + [anon_sym_nullptr] = ACTIONS(3620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3620), + [anon_sym_decltype] = ACTIONS(3620), + [anon_sym_explicit] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_template] = ACTIONS(3620), + [anon_sym_operator] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_static_assert] = ACTIONS(3620), + [anon_sym_concept] = ACTIONS(3620), + [anon_sym_co_return] = ACTIONS(3620), + [anon_sym_co_yield] = ACTIONS(3620), + [anon_sym_R_DQUOTE] = ACTIONS(3622), + [anon_sym_LR_DQUOTE] = ACTIONS(3622), + [anon_sym_uR_DQUOTE] = ACTIONS(3622), + [anon_sym_UR_DQUOTE] = ACTIONS(3622), + [anon_sym_u8R_DQUOTE] = ACTIONS(3622), + [anon_sym_co_await] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_requires] = ACTIONS(3620), + [anon_sym_CARET_CARET] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3622), + [sym_this] = ACTIONS(3620), + }, + [STATE(367)] = { + [sym_identifier] = ACTIONS(3624), + [aux_sym_preproc_include_token1] = ACTIONS(3624), + [aux_sym_preproc_def_token1] = ACTIONS(3624), + [aux_sym_preproc_if_token1] = ACTIONS(3624), + [aux_sym_preproc_if_token2] = ACTIONS(3624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3624), + [aux_sym_preproc_else_token1] = ACTIONS(3624), + [aux_sym_preproc_elif_token1] = ACTIONS(3624), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3624), + [sym_preproc_directive] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3626), + [anon_sym_AMP_AMP] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym___extension__] = ACTIONS(3624), + [anon_sym_typedef] = ACTIONS(3624), + [anon_sym_virtual] = ACTIONS(3624), + [anon_sym_extern] = ACTIONS(3624), + [anon_sym___attribute__] = ACTIONS(3624), + [anon_sym___attribute] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3626), + [anon_sym___declspec] = ACTIONS(3624), + [anon_sym___based] = ACTIONS(3624), + [anon_sym___cdecl] = ACTIONS(3624), + [anon_sym___clrcall] = ACTIONS(3624), + [anon_sym___stdcall] = ACTIONS(3624), + [anon_sym___fastcall] = ACTIONS(3624), + [anon_sym___thiscall] = ACTIONS(3624), + [anon_sym___vectorcall] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_signed] = ACTIONS(3624), + [anon_sym_unsigned] = ACTIONS(3624), + [anon_sym_long] = ACTIONS(3624), + [anon_sym_short] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_register] = ACTIONS(3624), + [anon_sym_inline] = ACTIONS(3624), + [anon_sym___inline] = ACTIONS(3624), + [anon_sym___inline__] = ACTIONS(3624), + [anon_sym___forceinline] = ACTIONS(3624), + [anon_sym_thread_local] = ACTIONS(3624), + [anon_sym___thread] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_constexpr] = ACTIONS(3624), + [anon_sym_volatile] = ACTIONS(3624), + [anon_sym_restrict] = ACTIONS(3624), + [anon_sym___restrict__] = ACTIONS(3624), + [anon_sym__Atomic] = ACTIONS(3624), + [anon_sym__Noreturn] = ACTIONS(3624), + [anon_sym_noreturn] = ACTIONS(3624), + [anon_sym__Nonnull] = ACTIONS(3624), + [anon_sym_mutable] = ACTIONS(3624), + [anon_sym_constinit] = ACTIONS(3624), + [anon_sym_consteval] = ACTIONS(3624), + [anon_sym_alignas] = ACTIONS(3624), + [anon_sym__Alignas] = ACTIONS(3624), + [sym_primitive_type] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_struct] = ACTIONS(3624), + [anon_sym_union] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_case] = ACTIONS(3624), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_goto] = ACTIONS(3624), + [anon_sym___try] = ACTIONS(3624), + [anon_sym___leave] = ACTIONS(3624), + [anon_sym_not] = ACTIONS(3624), + [anon_sym_compl] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_sizeof] = ACTIONS(3624), + [anon_sym___alignof__] = ACTIONS(3624), + [anon_sym___alignof] = ACTIONS(3624), + [anon_sym__alignof] = ACTIONS(3624), + [anon_sym_alignof] = ACTIONS(3624), + [anon_sym__Alignof] = ACTIONS(3624), + [anon_sym_offsetof] = ACTIONS(3624), + [anon_sym__Generic] = ACTIONS(3624), + [anon_sym_typename] = ACTIONS(3624), + [anon_sym_asm] = ACTIONS(3624), + [anon_sym___asm__] = ACTIONS(3624), + [anon_sym___asm] = ACTIONS(3624), + [sym_number_literal] = ACTIONS(3626), + [anon_sym_L_SQUOTE] = ACTIONS(3626), + [anon_sym_u_SQUOTE] = ACTIONS(3626), + [anon_sym_U_SQUOTE] = ACTIONS(3626), + [anon_sym_u8_SQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_L_DQUOTE] = ACTIONS(3626), + [anon_sym_u_DQUOTE] = ACTIONS(3626), + [anon_sym_U_DQUOTE] = ACTIONS(3626), + [anon_sym_u8_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [anon_sym_NULL] = ACTIONS(3624), + [anon_sym_nullptr] = ACTIONS(3624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3624), + [anon_sym_decltype] = ACTIONS(3624), + [anon_sym_explicit] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_template] = ACTIONS(3624), + [anon_sym_operator] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_static_assert] = ACTIONS(3624), + [anon_sym_concept] = ACTIONS(3624), + [anon_sym_co_return] = ACTIONS(3624), + [anon_sym_co_yield] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_requires] = ACTIONS(3624), + [anon_sym_CARET_CARET] = ACTIONS(3626), + [anon_sym_LBRACK_COLON] = ACTIONS(3626), + [sym_this] = ACTIONS(3624), + }, + [STATE(368)] = { + [sym_identifier] = ACTIONS(3628), + [aux_sym_preproc_include_token1] = ACTIONS(3628), + [aux_sym_preproc_def_token1] = ACTIONS(3628), + [aux_sym_preproc_if_token1] = ACTIONS(3628), + [aux_sym_preproc_if_token2] = ACTIONS(3628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3628), + [aux_sym_preproc_else_token1] = ACTIONS(3628), + [aux_sym_preproc_elif_token1] = ACTIONS(3628), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3628), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3628), + [sym_preproc_directive] = ACTIONS(3628), + [anon_sym_LPAREN2] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_AMP] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym___extension__] = ACTIONS(3628), + [anon_sym_typedef] = ACTIONS(3628), + [anon_sym_virtual] = ACTIONS(3628), + [anon_sym_extern] = ACTIONS(3628), + [anon_sym___attribute__] = ACTIONS(3628), + [anon_sym___attribute] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_COLON_COLON] = ACTIONS(3630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3630), + [anon_sym___declspec] = ACTIONS(3628), + [anon_sym___based] = ACTIONS(3628), + [anon_sym___cdecl] = ACTIONS(3628), + [anon_sym___clrcall] = ACTIONS(3628), + [anon_sym___stdcall] = ACTIONS(3628), + [anon_sym___fastcall] = ACTIONS(3628), + [anon_sym___thiscall] = ACTIONS(3628), + [anon_sym___vectorcall] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3628), + [anon_sym_unsigned] = ACTIONS(3628), + [anon_sym_long] = ACTIONS(3628), + [anon_sym_short] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_register] = ACTIONS(3628), + [anon_sym_inline] = ACTIONS(3628), + [anon_sym___inline] = ACTIONS(3628), + [anon_sym___inline__] = ACTIONS(3628), + [anon_sym___forceinline] = ACTIONS(3628), + [anon_sym_thread_local] = ACTIONS(3628), + [anon_sym___thread] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_constexpr] = ACTIONS(3628), + [anon_sym_volatile] = ACTIONS(3628), + [anon_sym_restrict] = ACTIONS(3628), + [anon_sym___restrict__] = ACTIONS(3628), + [anon_sym__Atomic] = ACTIONS(3628), + [anon_sym__Noreturn] = ACTIONS(3628), + [anon_sym_noreturn] = ACTIONS(3628), + [anon_sym__Nonnull] = ACTIONS(3628), + [anon_sym_mutable] = ACTIONS(3628), + [anon_sym_constinit] = ACTIONS(3628), + [anon_sym_consteval] = ACTIONS(3628), + [anon_sym_alignas] = ACTIONS(3628), + [anon_sym__Alignas] = ACTIONS(3628), + [sym_primitive_type] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_struct] = ACTIONS(3628), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_else] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_case] = ACTIONS(3628), + [anon_sym_default] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_goto] = ACTIONS(3628), + [anon_sym___try] = ACTIONS(3628), + [anon_sym___leave] = ACTIONS(3628), + [anon_sym_not] = ACTIONS(3628), + [anon_sym_compl] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_sizeof] = ACTIONS(3628), + [anon_sym___alignof__] = ACTIONS(3628), + [anon_sym___alignof] = ACTIONS(3628), + [anon_sym__alignof] = ACTIONS(3628), + [anon_sym_alignof] = ACTIONS(3628), + [anon_sym__Alignof] = ACTIONS(3628), + [anon_sym_offsetof] = ACTIONS(3628), + [anon_sym__Generic] = ACTIONS(3628), + [anon_sym_typename] = ACTIONS(3628), + [anon_sym_asm] = ACTIONS(3628), + [anon_sym___asm__] = ACTIONS(3628), + [anon_sym___asm] = ACTIONS(3628), + [sym_number_literal] = ACTIONS(3630), + [anon_sym_L_SQUOTE] = ACTIONS(3630), + [anon_sym_u_SQUOTE] = ACTIONS(3630), + [anon_sym_U_SQUOTE] = ACTIONS(3630), + [anon_sym_u8_SQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_L_DQUOTE] = ACTIONS(3630), + [anon_sym_u_DQUOTE] = ACTIONS(3630), + [anon_sym_U_DQUOTE] = ACTIONS(3630), + [anon_sym_u8_DQUOTE] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [anon_sym_NULL] = ACTIONS(3628), + [anon_sym_nullptr] = ACTIONS(3628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3628), + [anon_sym_decltype] = ACTIONS(3628), + [anon_sym_explicit] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_template] = ACTIONS(3628), + [anon_sym_operator] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_static_assert] = ACTIONS(3628), + [anon_sym_concept] = ACTIONS(3628), + [anon_sym_co_return] = ACTIONS(3628), + [anon_sym_co_yield] = ACTIONS(3628), + [anon_sym_R_DQUOTE] = ACTIONS(3630), + [anon_sym_LR_DQUOTE] = ACTIONS(3630), + [anon_sym_uR_DQUOTE] = ACTIONS(3630), + [anon_sym_UR_DQUOTE] = ACTIONS(3630), + [anon_sym_u8R_DQUOTE] = ACTIONS(3630), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_requires] = ACTIONS(3628), + [anon_sym_CARET_CARET] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3630), + [sym_this] = ACTIONS(3628), + }, + [STATE(369)] = { + [sym_identifier] = ACTIONS(3632), + [aux_sym_preproc_include_token1] = ACTIONS(3632), + [aux_sym_preproc_def_token1] = ACTIONS(3632), + [aux_sym_preproc_if_token1] = ACTIONS(3632), + [aux_sym_preproc_if_token2] = ACTIONS(3632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3632), + [aux_sym_preproc_else_token1] = ACTIONS(3632), + [aux_sym_preproc_elif_token1] = ACTIONS(3632), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3632), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3632), + [sym_preproc_directive] = ACTIONS(3632), + [anon_sym_LPAREN2] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_AMP_AMP] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym___extension__] = ACTIONS(3632), + [anon_sym_typedef] = ACTIONS(3632), + [anon_sym_virtual] = ACTIONS(3632), + [anon_sym_extern] = ACTIONS(3632), + [anon_sym___attribute__] = ACTIONS(3632), + [anon_sym___attribute] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3634), + [anon_sym___declspec] = ACTIONS(3632), + [anon_sym___based] = ACTIONS(3632), + [anon_sym___cdecl] = ACTIONS(3632), + [anon_sym___clrcall] = ACTIONS(3632), + [anon_sym___stdcall] = ACTIONS(3632), + [anon_sym___fastcall] = ACTIONS(3632), + [anon_sym___thiscall] = ACTIONS(3632), + [anon_sym___vectorcall] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_signed] = ACTIONS(3632), + [anon_sym_unsigned] = ACTIONS(3632), + [anon_sym_long] = ACTIONS(3632), + [anon_sym_short] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_register] = ACTIONS(3632), + [anon_sym_inline] = ACTIONS(3632), + [anon_sym___inline] = ACTIONS(3632), + [anon_sym___inline__] = ACTIONS(3632), + [anon_sym___forceinline] = ACTIONS(3632), + [anon_sym_thread_local] = ACTIONS(3632), + [anon_sym___thread] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_constexpr] = ACTIONS(3632), + [anon_sym_volatile] = ACTIONS(3632), + [anon_sym_restrict] = ACTIONS(3632), + [anon_sym___restrict__] = ACTIONS(3632), + [anon_sym__Atomic] = ACTIONS(3632), + [anon_sym__Noreturn] = ACTIONS(3632), + [anon_sym_noreturn] = ACTIONS(3632), + [anon_sym__Nonnull] = ACTIONS(3632), + [anon_sym_mutable] = ACTIONS(3632), + [anon_sym_constinit] = ACTIONS(3632), + [anon_sym_consteval] = ACTIONS(3632), + [anon_sym_alignas] = ACTIONS(3632), + [anon_sym__Alignas] = ACTIONS(3632), + [sym_primitive_type] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_struct] = ACTIONS(3632), + [anon_sym_union] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_else] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_case] = ACTIONS(3632), + [anon_sym_default] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_goto] = ACTIONS(3632), + [anon_sym___try] = ACTIONS(3632), + [anon_sym___leave] = ACTIONS(3632), + [anon_sym_not] = ACTIONS(3632), + [anon_sym_compl] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_sizeof] = ACTIONS(3632), + [anon_sym___alignof__] = ACTIONS(3632), + [anon_sym___alignof] = ACTIONS(3632), + [anon_sym__alignof] = ACTIONS(3632), + [anon_sym_alignof] = ACTIONS(3632), + [anon_sym__Alignof] = ACTIONS(3632), + [anon_sym_offsetof] = ACTIONS(3632), + [anon_sym__Generic] = ACTIONS(3632), + [anon_sym_typename] = ACTIONS(3632), + [anon_sym_asm] = ACTIONS(3632), + [anon_sym___asm__] = ACTIONS(3632), + [anon_sym___asm] = ACTIONS(3632), + [sym_number_literal] = ACTIONS(3634), + [anon_sym_L_SQUOTE] = ACTIONS(3634), + [anon_sym_u_SQUOTE] = ACTIONS(3634), + [anon_sym_U_SQUOTE] = ACTIONS(3634), + [anon_sym_u8_SQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_L_DQUOTE] = ACTIONS(3634), + [anon_sym_u_DQUOTE] = ACTIONS(3634), + [anon_sym_U_DQUOTE] = ACTIONS(3634), + [anon_sym_u8_DQUOTE] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [anon_sym_NULL] = ACTIONS(3632), + [anon_sym_nullptr] = ACTIONS(3632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3632), + [anon_sym_decltype] = ACTIONS(3632), + [anon_sym_explicit] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_module] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_template] = ACTIONS(3632), + [anon_sym_operator] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_static_assert] = ACTIONS(3632), + [anon_sym_concept] = ACTIONS(3632), + [anon_sym_co_return] = ACTIONS(3632), + [anon_sym_co_yield] = ACTIONS(3632), + [anon_sym_R_DQUOTE] = ACTIONS(3634), + [anon_sym_LR_DQUOTE] = ACTIONS(3634), + [anon_sym_uR_DQUOTE] = ACTIONS(3634), + [anon_sym_UR_DQUOTE] = ACTIONS(3634), + [anon_sym_u8R_DQUOTE] = ACTIONS(3634), + [anon_sym_co_await] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_requires] = ACTIONS(3632), + [anon_sym_CARET_CARET] = ACTIONS(3634), + [anon_sym_LBRACK_COLON] = ACTIONS(3634), + [sym_this] = ACTIONS(3632), + }, + [STATE(370)] = { + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_include_token1] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token2] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [aux_sym_preproc_else_token1] = ACTIONS(3636), + [aux_sym_preproc_elif_token1] = ACTIONS(3636), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym___cdecl] = ACTIONS(3636), + [anon_sym___clrcall] = ACTIONS(3636), + [anon_sym___stdcall] = ACTIONS(3636), + [anon_sym___fastcall] = ACTIONS(3636), + [anon_sym___thiscall] = ACTIONS(3636), + [anon_sym___vectorcall] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym___try] = ACTIONS(3636), + [anon_sym___leave] = ACTIONS(3636), + [anon_sym_not] = ACTIONS(3636), + [anon_sym_compl] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym___alignof__] = ACTIONS(3636), + [anon_sym___alignof] = ACTIONS(3636), + [anon_sym__alignof] = ACTIONS(3636), + [anon_sym_alignof] = ACTIONS(3636), + [anon_sym__Alignof] = ACTIONS(3636), + [anon_sym_offsetof] = ACTIONS(3636), + [anon_sym__Generic] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [anon_sym_asm] = ACTIONS(3636), + [anon_sym___asm__] = ACTIONS(3636), + [anon_sym___asm] = ACTIONS(3636), + [sym_number_literal] = ACTIONS(3638), + [anon_sym_L_SQUOTE] = ACTIONS(3638), + [anon_sym_u_SQUOTE] = ACTIONS(3638), + [anon_sym_U_SQUOTE] = ACTIONS(3638), + [anon_sym_u8_SQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_L_DQUOTE] = ACTIONS(3638), + [anon_sym_u_DQUOTE] = ACTIONS(3638), + [anon_sym_U_DQUOTE] = ACTIONS(3638), + [anon_sym_u8_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_nullptr] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_concept] = ACTIONS(3636), + [anon_sym_co_return] = ACTIONS(3636), + [anon_sym_co_yield] = ACTIONS(3636), + [anon_sym_R_DQUOTE] = ACTIONS(3638), + [anon_sym_LR_DQUOTE] = ACTIONS(3638), + [anon_sym_uR_DQUOTE] = ACTIONS(3638), + [anon_sym_UR_DQUOTE] = ACTIONS(3638), + [anon_sym_u8R_DQUOTE] = ACTIONS(3638), + [anon_sym_co_await] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_requires] = ACTIONS(3636), + [anon_sym_CARET_CARET] = ACTIONS(3638), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [sym_this] = ACTIONS(3636), + }, + [STATE(371)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token2] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), + }, + [STATE(372)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token2] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), + }, + [STATE(373)] = { + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_include_token1] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token2] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym___cdecl] = ACTIONS(3644), + [anon_sym___clrcall] = ACTIONS(3644), + [anon_sym___stdcall] = ACTIONS(3644), + [anon_sym___fastcall] = ACTIONS(3644), + [anon_sym___thiscall] = ACTIONS(3644), + [anon_sym___vectorcall] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_goto] = ACTIONS(3644), + [anon_sym___try] = ACTIONS(3644), + [anon_sym___leave] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_compl] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_sizeof] = ACTIONS(3644), + [anon_sym___alignof__] = ACTIONS(3644), + [anon_sym___alignof] = ACTIONS(3644), + [anon_sym__alignof] = ACTIONS(3644), + [anon_sym_alignof] = ACTIONS(3644), + [anon_sym__Alignof] = ACTIONS(3644), + [anon_sym_offsetof] = ACTIONS(3644), + [anon_sym__Generic] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [anon_sym_asm] = ACTIONS(3644), + [anon_sym___asm__] = ACTIONS(3644), + [anon_sym___asm] = ACTIONS(3644), + [sym_number_literal] = ACTIONS(3646), + [anon_sym_L_SQUOTE] = ACTIONS(3646), + [anon_sym_u_SQUOTE] = ACTIONS(3646), + [anon_sym_U_SQUOTE] = ACTIONS(3646), + [anon_sym_u8_SQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_L_DQUOTE] = ACTIONS(3646), + [anon_sym_u_DQUOTE] = ACTIONS(3646), + [anon_sym_U_DQUOTE] = ACTIONS(3646), + [anon_sym_u8_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [anon_sym_NULL] = ACTIONS(3644), + [anon_sym_nullptr] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_concept] = ACTIONS(3644), + [anon_sym_co_return] = ACTIONS(3644), + [anon_sym_co_yield] = ACTIONS(3644), + [anon_sym_R_DQUOTE] = ACTIONS(3646), + [anon_sym_LR_DQUOTE] = ACTIONS(3646), + [anon_sym_uR_DQUOTE] = ACTIONS(3646), + [anon_sym_UR_DQUOTE] = ACTIONS(3646), + [anon_sym_u8R_DQUOTE] = ACTIONS(3646), + [anon_sym_co_await] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_requires] = ACTIONS(3644), + [anon_sym_CARET_CARET] = ACTIONS(3646), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), + }, + [STATE(374)] = { + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_include_token1] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token2] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [aux_sym_preproc_else_token1] = ACTIONS(3648), + [aux_sym_preproc_elif_token1] = ACTIONS(3648), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym___cdecl] = ACTIONS(3648), + [anon_sym___clrcall] = ACTIONS(3648), + [anon_sym___stdcall] = ACTIONS(3648), + [anon_sym___fastcall] = ACTIONS(3648), + [anon_sym___thiscall] = ACTIONS(3648), + [anon_sym___vectorcall] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym___try] = ACTIONS(3648), + [anon_sym___leave] = ACTIONS(3648), + [anon_sym_not] = ACTIONS(3648), + [anon_sym_compl] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym___alignof__] = ACTIONS(3648), + [anon_sym___alignof] = ACTIONS(3648), + [anon_sym__alignof] = ACTIONS(3648), + [anon_sym_alignof] = ACTIONS(3648), + [anon_sym__Alignof] = ACTIONS(3648), + [anon_sym_offsetof] = ACTIONS(3648), + [anon_sym__Generic] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [anon_sym_asm] = ACTIONS(3648), + [anon_sym___asm__] = ACTIONS(3648), + [anon_sym___asm] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [anon_sym_L_SQUOTE] = ACTIONS(3650), + [anon_sym_u_SQUOTE] = ACTIONS(3650), + [anon_sym_U_SQUOTE] = ACTIONS(3650), + [anon_sym_u8_SQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_L_DQUOTE] = ACTIONS(3650), + [anon_sym_u_DQUOTE] = ACTIONS(3650), + [anon_sym_U_DQUOTE] = ACTIONS(3650), + [anon_sym_u8_DQUOTE] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [anon_sym_NULL] = ACTIONS(3648), + [anon_sym_nullptr] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_concept] = ACTIONS(3648), + [anon_sym_co_return] = ACTIONS(3648), + [anon_sym_co_yield] = ACTIONS(3648), + [anon_sym_R_DQUOTE] = ACTIONS(3650), + [anon_sym_LR_DQUOTE] = ACTIONS(3650), + [anon_sym_uR_DQUOTE] = ACTIONS(3650), + [anon_sym_UR_DQUOTE] = ACTIONS(3650), + [anon_sym_u8R_DQUOTE] = ACTIONS(3650), + [anon_sym_co_await] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_requires] = ACTIONS(3648), + [anon_sym_CARET_CARET] = ACTIONS(3650), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [sym_this] = ACTIONS(3648), + }, + [STATE(375)] = { + [sym_identifier] = ACTIONS(3652), + [aux_sym_preproc_include_token1] = ACTIONS(3652), + [aux_sym_preproc_def_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token2] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), + [aux_sym_preproc_else_token1] = ACTIONS(3652), + [aux_sym_preproc_elif_token1] = ACTIONS(3652), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3652), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3652), + [sym_preproc_directive] = ACTIONS(3652), + [anon_sym_LPAREN2] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [anon_sym_AMP_AMP] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym___extension__] = ACTIONS(3652), + [anon_sym_typedef] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym___attribute__] = ACTIONS(3652), + [anon_sym___attribute] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), + [anon_sym___declspec] = ACTIONS(3652), + [anon_sym___based] = ACTIONS(3652), + [anon_sym___cdecl] = ACTIONS(3652), + [anon_sym___clrcall] = ACTIONS(3652), + [anon_sym___stdcall] = ACTIONS(3652), + [anon_sym___fastcall] = ACTIONS(3652), + [anon_sym___thiscall] = ACTIONS(3652), + [anon_sym___vectorcall] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_signed] = ACTIONS(3652), + [anon_sym_unsigned] = ACTIONS(3652), + [anon_sym_long] = ACTIONS(3652), + [anon_sym_short] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_register] = ACTIONS(3652), + [anon_sym_inline] = ACTIONS(3652), + [anon_sym___inline] = ACTIONS(3652), + [anon_sym___inline__] = ACTIONS(3652), + [anon_sym___forceinline] = ACTIONS(3652), + [anon_sym_thread_local] = ACTIONS(3652), + [anon_sym___thread] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_constexpr] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_restrict] = ACTIONS(3652), + [anon_sym___restrict__] = ACTIONS(3652), + [anon_sym__Atomic] = ACTIONS(3652), + [anon_sym__Noreturn] = ACTIONS(3652), + [anon_sym_noreturn] = ACTIONS(3652), + [anon_sym__Nonnull] = ACTIONS(3652), + [anon_sym_mutable] = ACTIONS(3652), + [anon_sym_constinit] = ACTIONS(3652), + [anon_sym_consteval] = ACTIONS(3652), + [anon_sym_alignas] = ACTIONS(3652), + [anon_sym__Alignas] = ACTIONS(3652), + [sym_primitive_type] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_union] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym___try] = ACTIONS(3652), + [anon_sym___leave] = ACTIONS(3652), + [anon_sym_not] = ACTIONS(3652), + [anon_sym_compl] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym___alignof__] = ACTIONS(3652), + [anon_sym___alignof] = ACTIONS(3652), + [anon_sym__alignof] = ACTIONS(3652), + [anon_sym_alignof] = ACTIONS(3652), + [anon_sym__Alignof] = ACTIONS(3652), + [anon_sym_offsetof] = ACTIONS(3652), + [anon_sym__Generic] = ACTIONS(3652), + [anon_sym_typename] = ACTIONS(3652), + [anon_sym_asm] = ACTIONS(3652), + [anon_sym___asm__] = ACTIONS(3652), + [anon_sym___asm] = ACTIONS(3652), + [sym_number_literal] = ACTIONS(3654), + [anon_sym_L_SQUOTE] = ACTIONS(3654), + [anon_sym_u_SQUOTE] = ACTIONS(3654), + [anon_sym_U_SQUOTE] = ACTIONS(3654), + [anon_sym_u8_SQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_L_DQUOTE] = ACTIONS(3654), + [anon_sym_u_DQUOTE] = ACTIONS(3654), + [anon_sym_U_DQUOTE] = ACTIONS(3654), + [anon_sym_u8_DQUOTE] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [anon_sym_NULL] = ACTIONS(3652), + [anon_sym_nullptr] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3652), + [anon_sym_decltype] = ACTIONS(3652), + [anon_sym_explicit] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_operator] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_static_assert] = ACTIONS(3652), + [anon_sym_concept] = ACTIONS(3652), + [anon_sym_co_return] = ACTIONS(3652), + [anon_sym_co_yield] = ACTIONS(3652), + [anon_sym_R_DQUOTE] = ACTIONS(3654), + [anon_sym_LR_DQUOTE] = ACTIONS(3654), + [anon_sym_uR_DQUOTE] = ACTIONS(3654), + [anon_sym_UR_DQUOTE] = ACTIONS(3654), + [anon_sym_u8R_DQUOTE] = ACTIONS(3654), + [anon_sym_co_await] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_requires] = ACTIONS(3652), + [anon_sym_CARET_CARET] = ACTIONS(3654), + [anon_sym_LBRACK_COLON] = ACTIONS(3654), + [sym_this] = ACTIONS(3652), + }, + [STATE(376)] = { + [sym_identifier] = ACTIONS(3656), + [aux_sym_preproc_include_token1] = ACTIONS(3656), + [aux_sym_preproc_def_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token2] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), + [aux_sym_preproc_else_token1] = ACTIONS(3656), + [aux_sym_preproc_elif_token1] = ACTIONS(3656), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3656), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3656), + [sym_preproc_directive] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym___extension__] = ACTIONS(3656), + [anon_sym_typedef] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym___attribute__] = ACTIONS(3656), + [anon_sym___attribute] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), + [anon_sym___declspec] = ACTIONS(3656), + [anon_sym___based] = ACTIONS(3656), + [anon_sym___cdecl] = ACTIONS(3656), + [anon_sym___clrcall] = ACTIONS(3656), + [anon_sym___stdcall] = ACTIONS(3656), + [anon_sym___fastcall] = ACTIONS(3656), + [anon_sym___thiscall] = ACTIONS(3656), + [anon_sym___vectorcall] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3656), + [anon_sym_unsigned] = ACTIONS(3656), + [anon_sym_long] = ACTIONS(3656), + [anon_sym_short] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_register] = ACTIONS(3656), + [anon_sym_inline] = ACTIONS(3656), + [anon_sym___inline] = ACTIONS(3656), + [anon_sym___inline__] = ACTIONS(3656), + [anon_sym___forceinline] = ACTIONS(3656), + [anon_sym_thread_local] = ACTIONS(3656), + [anon_sym___thread] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_constexpr] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_restrict] = ACTIONS(3656), + [anon_sym___restrict__] = ACTIONS(3656), + [anon_sym__Atomic] = ACTIONS(3656), + [anon_sym__Noreturn] = ACTIONS(3656), + [anon_sym_noreturn] = ACTIONS(3656), + [anon_sym__Nonnull] = ACTIONS(3656), + [anon_sym_mutable] = ACTIONS(3656), + [anon_sym_constinit] = ACTIONS(3656), + [anon_sym_consteval] = ACTIONS(3656), + [anon_sym_alignas] = ACTIONS(3656), + [anon_sym__Alignas] = ACTIONS(3656), + [sym_primitive_type] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_union] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym___try] = ACTIONS(3656), + [anon_sym___leave] = ACTIONS(3656), + [anon_sym_not] = ACTIONS(3656), + [anon_sym_compl] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym___alignof__] = ACTIONS(3656), + [anon_sym___alignof] = ACTIONS(3656), + [anon_sym__alignof] = ACTIONS(3656), + [anon_sym_alignof] = ACTIONS(3656), + [anon_sym__Alignof] = ACTIONS(3656), + [anon_sym_offsetof] = ACTIONS(3656), + [anon_sym__Generic] = ACTIONS(3656), + [anon_sym_typename] = ACTIONS(3656), + [anon_sym_asm] = ACTIONS(3656), + [anon_sym___asm__] = ACTIONS(3656), + [anon_sym___asm] = ACTIONS(3656), + [sym_number_literal] = ACTIONS(3658), + [anon_sym_L_SQUOTE] = ACTIONS(3658), + [anon_sym_u_SQUOTE] = ACTIONS(3658), + [anon_sym_U_SQUOTE] = ACTIONS(3658), + [anon_sym_u8_SQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_L_DQUOTE] = ACTIONS(3658), + [anon_sym_u_DQUOTE] = ACTIONS(3658), + [anon_sym_U_DQUOTE] = ACTIONS(3658), + [anon_sym_u8_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [anon_sym_NULL] = ACTIONS(3656), + [anon_sym_nullptr] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_concept] = ACTIONS(3656), + [anon_sym_co_return] = ACTIONS(3656), + [anon_sym_co_yield] = ACTIONS(3656), + [anon_sym_R_DQUOTE] = ACTIONS(3658), + [anon_sym_LR_DQUOTE] = ACTIONS(3658), + [anon_sym_uR_DQUOTE] = ACTIONS(3658), + [anon_sym_UR_DQUOTE] = ACTIONS(3658), + [anon_sym_u8R_DQUOTE] = ACTIONS(3658), + [anon_sym_co_await] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_requires] = ACTIONS(3656), + [anon_sym_CARET_CARET] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + [sym_this] = ACTIONS(3656), + }, + [STATE(377)] = { + [sym_type_qualifier] = STATE(5102), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7552), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6845), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(9984), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_type_parameter_pack_expansion] = STATE(10211), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7940), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4782), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5102), + [aux_sym_sized_type_specifier_repeat1] = STATE(6638), + [sym_identifier] = ACTIONS(3214), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_signed] = ACTIONS(3228), + [anon_sym_unsigned] = ACTIONS(3228), + [anon_sym_long] = ACTIONS(3228), + [anon_sym_short] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_struct] = ACTIONS(3236), + [anon_sym_union] = ACTIONS(3238), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3250), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(378)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token2] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [aux_sym_preproc_else_token1] = ACTIONS(3660), + [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), + }, + [STATE(379)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token2] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [aux_sym_preproc_else_token1] = ACTIONS(3660), + [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), + }, + [STATE(380)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token2] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), + }, + [STATE(381)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token2] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), + }, + [STATE(382)] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [anon_sym___asm] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [anon_sym_CARET_CARET] = ACTIONS(3670), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + [sym_this] = ACTIONS(3668), + }, + [STATE(383)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3159), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = 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(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3153), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -111249,7 +114614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -111269,9 +114634,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -111282,552 +114647,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(361)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_include_token1] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token2] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [aux_sym_preproc_else_token1] = ACTIONS(3600), - [aux_sym_preproc_elif_token1] = ACTIONS(3600), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym___cdecl] = ACTIONS(3600), - [anon_sym___clrcall] = ACTIONS(3600), - [anon_sym___stdcall] = ACTIONS(3600), - [anon_sym___fastcall] = ACTIONS(3600), - [anon_sym___thiscall] = ACTIONS(3600), - [anon_sym___vectorcall] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_case] = ACTIONS(3600), - [anon_sym_default] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym___try] = ACTIONS(3600), - [anon_sym___leave] = ACTIONS(3600), - [anon_sym_not] = ACTIONS(3600), - [anon_sym_compl] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(3600), - [anon_sym___alignof] = ACTIONS(3600), - [anon_sym__alignof] = ACTIONS(3600), - [anon_sym_alignof] = ACTIONS(3600), - [anon_sym__Alignof] = ACTIONS(3600), - [anon_sym_offsetof] = ACTIONS(3600), - [anon_sym__Generic] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [anon_sym_asm] = ACTIONS(3600), - [anon_sym___asm__] = ACTIONS(3600), - [anon_sym___asm] = ACTIONS(3600), - [sym_number_literal] = ACTIONS(3602), - [anon_sym_L_SQUOTE] = ACTIONS(3602), - [anon_sym_u_SQUOTE] = ACTIONS(3602), - [anon_sym_U_SQUOTE] = ACTIONS(3602), - [anon_sym_u8_SQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_L_DQUOTE] = ACTIONS(3602), - [anon_sym_u_DQUOTE] = ACTIONS(3602), - [anon_sym_U_DQUOTE] = ACTIONS(3602), - [anon_sym_u8_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [anon_sym_NULL] = ACTIONS(3600), - [anon_sym_nullptr] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_export] = ACTIONS(3600), - [anon_sym_module] = ACTIONS(3600), - [anon_sym_import] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_concept] = ACTIONS(3600), - [anon_sym_co_return] = ACTIONS(3600), - [anon_sym_co_yield] = ACTIONS(3600), - [anon_sym_R_DQUOTE] = ACTIONS(3602), - [anon_sym_LR_DQUOTE] = ACTIONS(3602), - [anon_sym_uR_DQUOTE] = ACTIONS(3602), - [anon_sym_UR_DQUOTE] = ACTIONS(3602), - [anon_sym_u8R_DQUOTE] = ACTIONS(3602), - [anon_sym_co_await] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_requires] = ACTIONS(3600), - [anon_sym_CARET_CARET] = ACTIONS(3602), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - [sym_this] = ACTIONS(3600), - }, - [STATE(362)] = { - [sym_identifier] = ACTIONS(3604), - [aux_sym_preproc_include_token1] = ACTIONS(3604), - [aux_sym_preproc_def_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token2] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), - [aux_sym_preproc_else_token1] = ACTIONS(3604), - [aux_sym_preproc_elif_token1] = ACTIONS(3604), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3604), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3604), - [sym_preproc_directive] = ACTIONS(3604), - [anon_sym_LPAREN2] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(3604), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym___extension__] = ACTIONS(3604), - [anon_sym_typedef] = ACTIONS(3604), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_extern] = ACTIONS(3604), - [anon_sym___attribute__] = ACTIONS(3604), - [anon_sym___attribute] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_COLON_COLON] = ACTIONS(3606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), - [anon_sym___declspec] = ACTIONS(3604), - [anon_sym___based] = ACTIONS(3604), - [anon_sym___cdecl] = ACTIONS(3604), - [anon_sym___clrcall] = ACTIONS(3604), - [anon_sym___stdcall] = ACTIONS(3604), - [anon_sym___fastcall] = ACTIONS(3604), - [anon_sym___thiscall] = ACTIONS(3604), - [anon_sym___vectorcall] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_signed] = ACTIONS(3604), - [anon_sym_unsigned] = ACTIONS(3604), - [anon_sym_long] = ACTIONS(3604), - [anon_sym_short] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_register] = ACTIONS(3604), - [anon_sym_inline] = ACTIONS(3604), - [anon_sym___inline] = ACTIONS(3604), - [anon_sym___inline__] = ACTIONS(3604), - [anon_sym___forceinline] = ACTIONS(3604), - [anon_sym_thread_local] = ACTIONS(3604), - [anon_sym___thread] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_constexpr] = ACTIONS(3604), - [anon_sym_volatile] = ACTIONS(3604), - [anon_sym_restrict] = ACTIONS(3604), - [anon_sym___restrict__] = ACTIONS(3604), - [anon_sym__Atomic] = ACTIONS(3604), - [anon_sym__Noreturn] = ACTIONS(3604), - [anon_sym_noreturn] = ACTIONS(3604), - [anon_sym__Nonnull] = ACTIONS(3604), - [anon_sym_mutable] = ACTIONS(3604), - [anon_sym_constinit] = ACTIONS(3604), - [anon_sym_consteval] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3604), - [anon_sym__Alignas] = ACTIONS(3604), - [sym_primitive_type] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_union] = ACTIONS(3604), - [anon_sym_if] = ACTIONS(3604), - [anon_sym_else] = ACTIONS(3604), - [anon_sym_switch] = ACTIONS(3604), - [anon_sym_case] = ACTIONS(3604), - [anon_sym_default] = ACTIONS(3604), - [anon_sym_while] = ACTIONS(3604), - [anon_sym_do] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3604), - [anon_sym_return] = ACTIONS(3604), - [anon_sym_break] = ACTIONS(3604), - [anon_sym_continue] = ACTIONS(3604), - [anon_sym_goto] = ACTIONS(3604), - [anon_sym___try] = ACTIONS(3604), - [anon_sym___leave] = ACTIONS(3604), - [anon_sym_not] = ACTIONS(3604), - [anon_sym_compl] = ACTIONS(3604), - [anon_sym_DASH_DASH] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_sizeof] = ACTIONS(3604), - [anon_sym___alignof__] = ACTIONS(3604), - [anon_sym___alignof] = ACTIONS(3604), - [anon_sym__alignof] = ACTIONS(3604), - [anon_sym_alignof] = ACTIONS(3604), - [anon_sym__Alignof] = ACTIONS(3604), - [anon_sym_offsetof] = ACTIONS(3604), - [anon_sym__Generic] = ACTIONS(3604), - [anon_sym_typename] = ACTIONS(3604), - [anon_sym_asm] = ACTIONS(3604), - [anon_sym___asm__] = ACTIONS(3604), - [anon_sym___asm] = ACTIONS(3604), - [sym_number_literal] = ACTIONS(3606), - [anon_sym_L_SQUOTE] = ACTIONS(3606), - [anon_sym_u_SQUOTE] = ACTIONS(3606), - [anon_sym_U_SQUOTE] = ACTIONS(3606), - [anon_sym_u8_SQUOTE] = ACTIONS(3606), - [anon_sym_SQUOTE] = ACTIONS(3606), - [anon_sym_L_DQUOTE] = ACTIONS(3606), - [anon_sym_u_DQUOTE] = ACTIONS(3606), - [anon_sym_U_DQUOTE] = ACTIONS(3606), - [anon_sym_u8_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [sym_true] = ACTIONS(3604), - [sym_false] = ACTIONS(3604), - [anon_sym_NULL] = ACTIONS(3604), - [anon_sym_nullptr] = ACTIONS(3604), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3604), - [anon_sym_decltype] = ACTIONS(3604), - [anon_sym_explicit] = ACTIONS(3604), - [anon_sym_export] = ACTIONS(3604), - [anon_sym_module] = ACTIONS(3604), - [anon_sym_import] = ACTIONS(3604), - [anon_sym_template] = ACTIONS(3604), - [anon_sym_operator] = ACTIONS(3604), - [anon_sym_try] = ACTIONS(3604), - [anon_sym_delete] = ACTIONS(3604), - [anon_sym_throw] = ACTIONS(3604), - [anon_sym_namespace] = ACTIONS(3604), - [anon_sym_static_assert] = ACTIONS(3604), - [anon_sym_concept] = ACTIONS(3604), - [anon_sym_co_return] = ACTIONS(3604), - [anon_sym_co_yield] = ACTIONS(3604), - [anon_sym_R_DQUOTE] = ACTIONS(3606), - [anon_sym_LR_DQUOTE] = ACTIONS(3606), - [anon_sym_uR_DQUOTE] = ACTIONS(3606), - [anon_sym_UR_DQUOTE] = ACTIONS(3606), - [anon_sym_u8R_DQUOTE] = ACTIONS(3606), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3604), - [anon_sym_requires] = ACTIONS(3604), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(3606), - [sym_this] = ACTIONS(3604), - }, - [STATE(363)] = { - [sym_identifier] = ACTIONS(3608), - [aux_sym_preproc_include_token1] = ACTIONS(3608), - [aux_sym_preproc_def_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token2] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), - [aux_sym_preproc_else_token1] = ACTIONS(3608), - [aux_sym_preproc_elif_token1] = ACTIONS(3608), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3608), - [sym_preproc_directive] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym___based] = ACTIONS(3608), - [anon_sym___cdecl] = ACTIONS(3608), - [anon_sym___clrcall] = ACTIONS(3608), - [anon_sym___stdcall] = ACTIONS(3608), - [anon_sym___fastcall] = ACTIONS(3608), - [anon_sym___thiscall] = ACTIONS(3608), - [anon_sym___vectorcall] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_else] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_case] = ACTIONS(3608), - [anon_sym_default] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_goto] = ACTIONS(3608), - [anon_sym___try] = ACTIONS(3608), - [anon_sym___leave] = ACTIONS(3608), - [anon_sym_not] = ACTIONS(3608), - [anon_sym_compl] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_sizeof] = ACTIONS(3608), - [anon_sym___alignof__] = ACTIONS(3608), - [anon_sym___alignof] = ACTIONS(3608), - [anon_sym__alignof] = ACTIONS(3608), - [anon_sym_alignof] = ACTIONS(3608), - [anon_sym__Alignof] = ACTIONS(3608), - [anon_sym_offsetof] = ACTIONS(3608), - [anon_sym__Generic] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [anon_sym_asm] = ACTIONS(3608), - [anon_sym___asm__] = ACTIONS(3608), - [anon_sym___asm] = ACTIONS(3608), - [sym_number_literal] = ACTIONS(3610), - [anon_sym_L_SQUOTE] = ACTIONS(3610), - [anon_sym_u_SQUOTE] = ACTIONS(3610), - [anon_sym_U_SQUOTE] = ACTIONS(3610), - [anon_sym_u8_SQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_L_DQUOTE] = ACTIONS(3610), - [anon_sym_u_DQUOTE] = ACTIONS(3610), - [anon_sym_U_DQUOTE] = ACTIONS(3610), - [anon_sym_u8_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [anon_sym_NULL] = ACTIONS(3608), - [anon_sym_nullptr] = ACTIONS(3608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_export] = ACTIONS(3608), - [anon_sym_module] = ACTIONS(3608), - [anon_sym_import] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_operator] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_static_assert] = ACTIONS(3608), - [anon_sym_concept] = ACTIONS(3608), - [anon_sym_co_return] = ACTIONS(3608), - [anon_sym_co_yield] = ACTIONS(3608), - [anon_sym_R_DQUOTE] = ACTIONS(3610), - [anon_sym_LR_DQUOTE] = ACTIONS(3610), - [anon_sym_uR_DQUOTE] = ACTIONS(3610), - [anon_sym_UR_DQUOTE] = ACTIONS(3610), - [anon_sym_u8R_DQUOTE] = ACTIONS(3610), - [anon_sym_co_await] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_requires] = ACTIONS(3608), - [anon_sym_CARET_CARET] = ACTIONS(3610), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - [sym_this] = ACTIONS(3608), - }, - [STATE(364)] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_preproc_else_in_field_declaration_list] = STATE(11665), - [sym_preproc_elif_in_field_declaration_list] = STATE(11665), - [sym_preproc_elifdef_in_field_declaration_list] = STATE(11665), - [sym_type_definition] = STATE(555), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(555), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(555), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(555), - [sym_operator_cast_declaration] = STATE(555), - [sym_constructor_or_destructor_definition] = STATE(555), - [sym_constructor_or_destructor_declaration] = STATE(555), - [sym_friend_declaration] = STATE(555), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(555), - [sym_alias_declaration] = STATE(555), - [sym_static_assert_declaration] = STATE(555), - [sym_consteval_block_declaration] = STATE(555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(3426), - [aux_sym_preproc_if_token1] = ACTIONS(3428), - [aux_sym_preproc_if_token2] = ACTIONS(3612), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3432), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3432), - [aux_sym_preproc_else_token1] = ACTIONS(3434), - [aux_sym_preproc_elif_token1] = ACTIONS(3436), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3438), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3438), - [sym_preproc_directive] = ACTIONS(3440), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(384)] = { + [sym_preproc_def] = STATE(346), + [sym_preproc_function_def] = STATE(346), + [sym_preproc_call] = STATE(346), + [sym_preproc_if_in_field_declaration_list] = STATE(346), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(346), + [sym_preproc_else_in_field_declaration_list] = STATE(11184), + [sym_preproc_elif_in_field_declaration_list] = STATE(11184), + [sym_preproc_elifdef_in_field_declaration_list] = STATE(11184), + [sym_type_definition] = STATE(346), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(346), + [sym_field_declaration] = STATE(346), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(346), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(346), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(346), + [sym_operator_cast_declaration] = STATE(346), + [sym_constructor_or_destructor_definition] = STATE(346), + [sym_constructor_or_destructor_declaration] = STATE(346), + [sym_friend_declaration] = STATE(346), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(346), + [sym_alias_declaration] = STATE(346), + [sym_static_assert_declaration] = STATE(346), + [sym_consteval_block_declaration] = STATE(346), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(346), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(3424), + [aux_sym_preproc_if_token1] = ACTIONS(3426), + [aux_sym_preproc_if_token2] = ACTIONS(3672), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3430), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3430), + [aux_sym_preproc_else_token1] = ACTIONS(3432), + [aux_sym_preproc_elif_token1] = ACTIONS(3434), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3436), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3436), + [sym_preproc_directive] = ACTIONS(3438), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym___extension__] = ACTIONS(3452), - [anon_sym_typedef] = ACTIONS(3454), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3674), + [anon_sym___extension__] = ACTIONS(3450), + [anon_sym_typedef] = ACTIONS(3452), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(3456), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(3454), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -111837,7 +114764,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -111847,2608 +114774,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(3464), + [anon_sym_consteval] = ACTIONS(3462), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(3484), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(365)] = { - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_include_token1] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token2] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [aux_sym_preproc_else_token1] = ACTIONS(3614), - [aux_sym_preproc_elif_token1] = ACTIONS(3614), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym___attribute] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym___cdecl] = ACTIONS(3614), - [anon_sym___clrcall] = ACTIONS(3614), - [anon_sym___stdcall] = ACTIONS(3614), - [anon_sym___fastcall] = ACTIONS(3614), - [anon_sym___thiscall] = ACTIONS(3614), - [anon_sym___vectorcall] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym__Nonnull] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym__Alignas] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_else] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_goto] = ACTIONS(3614), - [anon_sym___try] = ACTIONS(3614), - [anon_sym___leave] = ACTIONS(3614), - [anon_sym_not] = ACTIONS(3614), - [anon_sym_compl] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3614), - [anon_sym___alignof__] = ACTIONS(3614), - [anon_sym___alignof] = ACTIONS(3614), - [anon_sym__alignof] = ACTIONS(3614), - [anon_sym_alignof] = ACTIONS(3614), - [anon_sym__Alignof] = ACTIONS(3614), - [anon_sym_offsetof] = ACTIONS(3614), - [anon_sym__Generic] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_asm] = ACTIONS(3614), - [anon_sym___asm__] = ACTIONS(3614), - [anon_sym___asm] = ACTIONS(3614), - [sym_number_literal] = ACTIONS(3616), - [anon_sym_L_SQUOTE] = ACTIONS(3616), - [anon_sym_u_SQUOTE] = ACTIONS(3616), - [anon_sym_U_SQUOTE] = ACTIONS(3616), - [anon_sym_u8_SQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_L_DQUOTE] = ACTIONS(3616), - [anon_sym_u_DQUOTE] = ACTIONS(3616), - [anon_sym_U_DQUOTE] = ACTIONS(3616), - [anon_sym_u8_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [anon_sym_NULL] = ACTIONS(3614), - [anon_sym_nullptr] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_export] = ACTIONS(3614), - [anon_sym_module] = ACTIONS(3614), - [anon_sym_import] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - [anon_sym_concept] = ACTIONS(3614), - [anon_sym_co_return] = ACTIONS(3614), - [anon_sym_co_yield] = ACTIONS(3614), - [anon_sym_R_DQUOTE] = ACTIONS(3616), - [anon_sym_LR_DQUOTE] = ACTIONS(3616), - [anon_sym_uR_DQUOTE] = ACTIONS(3616), - [anon_sym_UR_DQUOTE] = ACTIONS(3616), - [anon_sym_u8R_DQUOTE] = ACTIONS(3616), - [anon_sym_co_await] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_requires] = ACTIONS(3614), - [anon_sym_CARET_CARET] = ACTIONS(3616), - [anon_sym_LBRACK_COLON] = ACTIONS(3616), - [sym_this] = ACTIONS(3614), - }, - [STATE(366)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [aux_sym_preproc_else_token1] = ACTIONS(3618), - [aux_sym_preproc_elif_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), - }, - [STATE(367)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [aux_sym_preproc_else_token1] = ACTIONS(3618), - [aux_sym_preproc_elif_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), - }, - [STATE(368)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [aux_sym_preproc_else_token1] = ACTIONS(3622), - [aux_sym_preproc_elif_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(369)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [aux_sym_preproc_else_token1] = ACTIONS(3622), - [aux_sym_preproc_elif_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(370)] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token2] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [aux_sym_preproc_else_token1] = ACTIONS(3626), - [aux_sym_preproc_elif_token1] = ACTIONS(3626), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [anon_sym___asm] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [anon_sym_CARET_CARET] = ACTIONS(3628), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), - [sym_this] = ACTIONS(3626), - }, - [STATE(371)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), - }, - [STATE(372)] = { - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_include_token1] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token2] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [aux_sym_preproc_else_token1] = ACTIONS(3634), - [aux_sym_preproc_elif_token1] = ACTIONS(3634), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym___attribute] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym___cdecl] = ACTIONS(3634), - [anon_sym___clrcall] = ACTIONS(3634), - [anon_sym___stdcall] = ACTIONS(3634), - [anon_sym___fastcall] = ACTIONS(3634), - [anon_sym___thiscall] = ACTIONS(3634), - [anon_sym___vectorcall] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym__Nonnull] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym__Alignas] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_else] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_goto] = ACTIONS(3634), - [anon_sym___try] = ACTIONS(3634), - [anon_sym___leave] = ACTIONS(3634), - [anon_sym_not] = ACTIONS(3634), - [anon_sym_compl] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3634), - [anon_sym___alignof__] = ACTIONS(3634), - [anon_sym___alignof] = ACTIONS(3634), - [anon_sym__alignof] = ACTIONS(3634), - [anon_sym_alignof] = ACTIONS(3634), - [anon_sym__Alignof] = ACTIONS(3634), - [anon_sym_offsetof] = ACTIONS(3634), - [anon_sym__Generic] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_asm] = ACTIONS(3634), - [anon_sym___asm__] = ACTIONS(3634), - [anon_sym___asm] = ACTIONS(3634), - [sym_number_literal] = ACTIONS(3636), - [anon_sym_L_SQUOTE] = ACTIONS(3636), - [anon_sym_u_SQUOTE] = ACTIONS(3636), - [anon_sym_U_SQUOTE] = ACTIONS(3636), - [anon_sym_u8_SQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_L_DQUOTE] = ACTIONS(3636), - [anon_sym_u_DQUOTE] = ACTIONS(3636), - [anon_sym_U_DQUOTE] = ACTIONS(3636), - [anon_sym_u8_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [anon_sym_NULL] = ACTIONS(3634), - [anon_sym_nullptr] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_export] = ACTIONS(3634), - [anon_sym_module] = ACTIONS(3634), - [anon_sym_import] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), - [anon_sym_concept] = ACTIONS(3634), - [anon_sym_co_return] = ACTIONS(3634), - [anon_sym_co_yield] = ACTIONS(3634), - [anon_sym_R_DQUOTE] = ACTIONS(3636), - [anon_sym_LR_DQUOTE] = ACTIONS(3636), - [anon_sym_uR_DQUOTE] = ACTIONS(3636), - [anon_sym_UR_DQUOTE] = ACTIONS(3636), - [anon_sym_u8R_DQUOTE] = ACTIONS(3636), - [anon_sym_co_await] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_requires] = ACTIONS(3634), - [anon_sym_CARET_CARET] = ACTIONS(3636), - [anon_sym_LBRACK_COLON] = ACTIONS(3636), - [sym_this] = ACTIONS(3634), - }, - [STATE(373)] = { - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_include_token1] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token2] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [aux_sym_preproc_else_token1] = ACTIONS(3638), - [aux_sym_preproc_elif_token1] = ACTIONS(3638), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym___attribute] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym___cdecl] = ACTIONS(3638), - [anon_sym___clrcall] = ACTIONS(3638), - [anon_sym___stdcall] = ACTIONS(3638), - [anon_sym___fastcall] = ACTIONS(3638), - [anon_sym___thiscall] = ACTIONS(3638), - [anon_sym___vectorcall] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym__Nonnull] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym__Alignas] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_else] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_goto] = ACTIONS(3638), - [anon_sym___try] = ACTIONS(3638), - [anon_sym___leave] = ACTIONS(3638), - [anon_sym_not] = ACTIONS(3638), - [anon_sym_compl] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3638), - [anon_sym___alignof__] = ACTIONS(3638), - [anon_sym___alignof] = ACTIONS(3638), - [anon_sym__alignof] = ACTIONS(3638), - [anon_sym_alignof] = ACTIONS(3638), - [anon_sym__Alignof] = ACTIONS(3638), - [anon_sym_offsetof] = ACTIONS(3638), - [anon_sym__Generic] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_asm] = ACTIONS(3638), - [anon_sym___asm__] = ACTIONS(3638), - [anon_sym___asm] = ACTIONS(3638), - [sym_number_literal] = ACTIONS(3640), - [anon_sym_L_SQUOTE] = ACTIONS(3640), - [anon_sym_u_SQUOTE] = ACTIONS(3640), - [anon_sym_U_SQUOTE] = ACTIONS(3640), - [anon_sym_u8_SQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_L_DQUOTE] = ACTIONS(3640), - [anon_sym_u_DQUOTE] = ACTIONS(3640), - [anon_sym_U_DQUOTE] = ACTIONS(3640), - [anon_sym_u8_DQUOTE] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [anon_sym_NULL] = ACTIONS(3638), - [anon_sym_nullptr] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_export] = ACTIONS(3638), - [anon_sym_module] = ACTIONS(3638), - [anon_sym_import] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), - [anon_sym_concept] = ACTIONS(3638), - [anon_sym_co_return] = ACTIONS(3638), - [anon_sym_co_yield] = ACTIONS(3638), - [anon_sym_R_DQUOTE] = ACTIONS(3640), - [anon_sym_LR_DQUOTE] = ACTIONS(3640), - [anon_sym_uR_DQUOTE] = ACTIONS(3640), - [anon_sym_UR_DQUOTE] = ACTIONS(3640), - [anon_sym_u8R_DQUOTE] = ACTIONS(3640), - [anon_sym_co_await] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_requires] = ACTIONS(3638), - [anon_sym_CARET_CARET] = ACTIONS(3640), - [anon_sym_LBRACK_COLON] = ACTIONS(3640), - [sym_this] = ACTIONS(3638), - }, - [STATE(374)] = { - [sym_identifier] = ACTIONS(3642), - [aux_sym_preproc_include_token1] = ACTIONS(3642), - [aux_sym_preproc_def_token1] = ACTIONS(3642), - [aux_sym_preproc_if_token1] = ACTIONS(3642), - [aux_sym_preproc_if_token2] = ACTIONS(3642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3642), - [aux_sym_preproc_else_token1] = ACTIONS(3642), - [aux_sym_preproc_elif_token1] = ACTIONS(3642), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3642), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3642), - [sym_preproc_directive] = ACTIONS(3642), - [anon_sym_LPAREN2] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_AMP_AMP] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3642), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym___extension__] = ACTIONS(3642), - [anon_sym_typedef] = ACTIONS(3642), - [anon_sym_virtual] = ACTIONS(3642), - [anon_sym_extern] = ACTIONS(3642), - [anon_sym___attribute__] = ACTIONS(3642), - [anon_sym___attribute] = ACTIONS(3642), - [anon_sym_using] = ACTIONS(3642), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3644), - [anon_sym___declspec] = ACTIONS(3642), - [anon_sym___based] = ACTIONS(3642), - [anon_sym___cdecl] = ACTIONS(3642), - [anon_sym___clrcall] = ACTIONS(3642), - [anon_sym___stdcall] = ACTIONS(3642), - [anon_sym___fastcall] = ACTIONS(3642), - [anon_sym___thiscall] = ACTIONS(3642), - [anon_sym___vectorcall] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3644), - [anon_sym_signed] = ACTIONS(3642), - [anon_sym_unsigned] = ACTIONS(3642), - [anon_sym_long] = ACTIONS(3642), - [anon_sym_short] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_static] = ACTIONS(3642), - [anon_sym_register] = ACTIONS(3642), - [anon_sym_inline] = ACTIONS(3642), - [anon_sym___inline] = ACTIONS(3642), - [anon_sym___inline__] = ACTIONS(3642), - [anon_sym___forceinline] = ACTIONS(3642), - [anon_sym_thread_local] = ACTIONS(3642), - [anon_sym___thread] = ACTIONS(3642), - [anon_sym_const] = ACTIONS(3642), - [anon_sym_constexpr] = ACTIONS(3642), - [anon_sym_volatile] = ACTIONS(3642), - [anon_sym_restrict] = ACTIONS(3642), - [anon_sym___restrict__] = ACTIONS(3642), - [anon_sym__Atomic] = ACTIONS(3642), - [anon_sym__Noreturn] = ACTIONS(3642), - [anon_sym_noreturn] = ACTIONS(3642), - [anon_sym__Nonnull] = ACTIONS(3642), - [anon_sym_mutable] = ACTIONS(3642), - [anon_sym_constinit] = ACTIONS(3642), - [anon_sym_consteval] = ACTIONS(3642), - [anon_sym_alignas] = ACTIONS(3642), - [anon_sym__Alignas] = ACTIONS(3642), - [sym_primitive_type] = ACTIONS(3642), - [anon_sym_enum] = ACTIONS(3642), - [anon_sym_class] = ACTIONS(3642), - [anon_sym_struct] = ACTIONS(3642), - [anon_sym_union] = ACTIONS(3642), - [anon_sym_if] = ACTIONS(3642), - [anon_sym_else] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_case] = ACTIONS(3642), - [anon_sym_default] = ACTIONS(3642), - [anon_sym_while] = ACTIONS(3642), - [anon_sym_do] = ACTIONS(3642), - [anon_sym_for] = ACTIONS(3642), - [anon_sym_return] = ACTIONS(3642), - [anon_sym_break] = ACTIONS(3642), - [anon_sym_continue] = ACTIONS(3642), - [anon_sym_goto] = ACTIONS(3642), - [anon_sym___try] = ACTIONS(3642), - [anon_sym___leave] = ACTIONS(3642), - [anon_sym_not] = ACTIONS(3642), - [anon_sym_compl] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3644), - [anon_sym_sizeof] = ACTIONS(3642), - [anon_sym___alignof__] = ACTIONS(3642), - [anon_sym___alignof] = ACTIONS(3642), - [anon_sym__alignof] = ACTIONS(3642), - [anon_sym_alignof] = ACTIONS(3642), - [anon_sym__Alignof] = ACTIONS(3642), - [anon_sym_offsetof] = ACTIONS(3642), - [anon_sym__Generic] = ACTIONS(3642), - [anon_sym_typename] = ACTIONS(3642), - [anon_sym_asm] = ACTIONS(3642), - [anon_sym___asm__] = ACTIONS(3642), - [anon_sym___asm] = ACTIONS(3642), - [sym_number_literal] = ACTIONS(3644), - [anon_sym_L_SQUOTE] = ACTIONS(3644), - [anon_sym_u_SQUOTE] = ACTIONS(3644), - [anon_sym_U_SQUOTE] = ACTIONS(3644), - [anon_sym_u8_SQUOTE] = ACTIONS(3644), - [anon_sym_SQUOTE] = ACTIONS(3644), - [anon_sym_L_DQUOTE] = ACTIONS(3644), - [anon_sym_u_DQUOTE] = ACTIONS(3644), - [anon_sym_U_DQUOTE] = ACTIONS(3644), - [anon_sym_u8_DQUOTE] = ACTIONS(3644), - [anon_sym_DQUOTE] = ACTIONS(3644), - [sym_true] = ACTIONS(3642), - [sym_false] = ACTIONS(3642), - [anon_sym_NULL] = ACTIONS(3642), - [anon_sym_nullptr] = ACTIONS(3642), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3642), - [anon_sym_decltype] = ACTIONS(3642), - [anon_sym_explicit] = ACTIONS(3642), - [anon_sym_export] = ACTIONS(3642), - [anon_sym_module] = ACTIONS(3642), - [anon_sym_import] = ACTIONS(3642), - [anon_sym_template] = ACTIONS(3642), - [anon_sym_operator] = ACTIONS(3642), - [anon_sym_try] = ACTIONS(3642), - [anon_sym_delete] = ACTIONS(3642), - [anon_sym_throw] = ACTIONS(3642), - [anon_sym_namespace] = ACTIONS(3642), - [anon_sym_static_assert] = ACTIONS(3642), - [anon_sym_concept] = ACTIONS(3642), - [anon_sym_co_return] = ACTIONS(3642), - [anon_sym_co_yield] = ACTIONS(3642), - [anon_sym_R_DQUOTE] = ACTIONS(3644), - [anon_sym_LR_DQUOTE] = ACTIONS(3644), - [anon_sym_uR_DQUOTE] = ACTIONS(3644), - [anon_sym_UR_DQUOTE] = ACTIONS(3644), - [anon_sym_u8R_DQUOTE] = ACTIONS(3644), - [anon_sym_co_await] = ACTIONS(3642), - [anon_sym_new] = ACTIONS(3642), - [anon_sym_requires] = ACTIONS(3642), - [anon_sym_CARET_CARET] = ACTIONS(3644), - [anon_sym_LBRACK_COLON] = ACTIONS(3644), - [sym_this] = ACTIONS(3642), - }, - [STATE(375)] = { - [sym_identifier] = ACTIONS(3646), - [aux_sym_preproc_include_token1] = ACTIONS(3646), - [aux_sym_preproc_def_token1] = ACTIONS(3646), - [aux_sym_preproc_if_token1] = ACTIONS(3646), - [aux_sym_preproc_if_token2] = ACTIONS(3646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3646), - [aux_sym_preproc_else_token1] = ACTIONS(3646), - [aux_sym_preproc_elif_token1] = ACTIONS(3646), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3646), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3646), - [sym_preproc_directive] = ACTIONS(3646), - [anon_sym_LPAREN2] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_STAR] = ACTIONS(3648), - [anon_sym_AMP_AMP] = ACTIONS(3648), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym___extension__] = ACTIONS(3646), - [anon_sym_typedef] = ACTIONS(3646), - [anon_sym_virtual] = ACTIONS(3646), - [anon_sym_extern] = ACTIONS(3646), - [anon_sym___attribute__] = ACTIONS(3646), - [anon_sym___attribute] = ACTIONS(3646), - [anon_sym_using] = ACTIONS(3646), - [anon_sym_COLON_COLON] = ACTIONS(3648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3648), - [anon_sym___declspec] = ACTIONS(3646), - [anon_sym___based] = ACTIONS(3646), - [anon_sym___cdecl] = ACTIONS(3646), - [anon_sym___clrcall] = ACTIONS(3646), - [anon_sym___stdcall] = ACTIONS(3646), - [anon_sym___fastcall] = ACTIONS(3646), - [anon_sym___thiscall] = ACTIONS(3646), - [anon_sym___vectorcall] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_signed] = ACTIONS(3646), - [anon_sym_unsigned] = ACTIONS(3646), - [anon_sym_long] = ACTIONS(3646), - [anon_sym_short] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_register] = ACTIONS(3646), - [anon_sym_inline] = ACTIONS(3646), - [anon_sym___inline] = ACTIONS(3646), - [anon_sym___inline__] = ACTIONS(3646), - [anon_sym___forceinline] = ACTIONS(3646), - [anon_sym_thread_local] = ACTIONS(3646), - [anon_sym___thread] = ACTIONS(3646), - [anon_sym_const] = ACTIONS(3646), - [anon_sym_constexpr] = ACTIONS(3646), - [anon_sym_volatile] = ACTIONS(3646), - [anon_sym_restrict] = ACTIONS(3646), - [anon_sym___restrict__] = ACTIONS(3646), - [anon_sym__Atomic] = ACTIONS(3646), - [anon_sym__Noreturn] = ACTIONS(3646), - [anon_sym_noreturn] = ACTIONS(3646), - [anon_sym__Nonnull] = ACTIONS(3646), - [anon_sym_mutable] = ACTIONS(3646), - [anon_sym_constinit] = ACTIONS(3646), - [anon_sym_consteval] = ACTIONS(3646), - [anon_sym_alignas] = ACTIONS(3646), - [anon_sym__Alignas] = ACTIONS(3646), - [sym_primitive_type] = ACTIONS(3646), - [anon_sym_enum] = ACTIONS(3646), - [anon_sym_class] = ACTIONS(3646), - [anon_sym_struct] = ACTIONS(3646), - [anon_sym_union] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_else] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_case] = ACTIONS(3646), - [anon_sym_default] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_goto] = ACTIONS(3646), - [anon_sym___try] = ACTIONS(3646), - [anon_sym___leave] = ACTIONS(3646), - [anon_sym_not] = ACTIONS(3646), - [anon_sym_compl] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_sizeof] = ACTIONS(3646), - [anon_sym___alignof__] = ACTIONS(3646), - [anon_sym___alignof] = ACTIONS(3646), - [anon_sym__alignof] = ACTIONS(3646), - [anon_sym_alignof] = ACTIONS(3646), - [anon_sym__Alignof] = ACTIONS(3646), - [anon_sym_offsetof] = ACTIONS(3646), - [anon_sym__Generic] = ACTIONS(3646), - [anon_sym_typename] = ACTIONS(3646), - [anon_sym_asm] = ACTIONS(3646), - [anon_sym___asm__] = ACTIONS(3646), - [anon_sym___asm] = ACTIONS(3646), - [sym_number_literal] = ACTIONS(3648), - [anon_sym_L_SQUOTE] = ACTIONS(3648), - [anon_sym_u_SQUOTE] = ACTIONS(3648), - [anon_sym_U_SQUOTE] = ACTIONS(3648), - [anon_sym_u8_SQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [anon_sym_L_DQUOTE] = ACTIONS(3648), - [anon_sym_u_DQUOTE] = ACTIONS(3648), - [anon_sym_U_DQUOTE] = ACTIONS(3648), - [anon_sym_u8_DQUOTE] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [sym_true] = ACTIONS(3646), - [sym_false] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_nullptr] = ACTIONS(3646), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3646), - [anon_sym_decltype] = ACTIONS(3646), - [anon_sym_explicit] = ACTIONS(3646), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_module] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_template] = ACTIONS(3646), - [anon_sym_operator] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_delete] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_namespace] = ACTIONS(3646), - [anon_sym_static_assert] = ACTIONS(3646), - [anon_sym_concept] = ACTIONS(3646), - [anon_sym_co_return] = ACTIONS(3646), - [anon_sym_co_yield] = ACTIONS(3646), - [anon_sym_R_DQUOTE] = ACTIONS(3648), - [anon_sym_LR_DQUOTE] = ACTIONS(3648), - [anon_sym_uR_DQUOTE] = ACTIONS(3648), - [anon_sym_UR_DQUOTE] = ACTIONS(3648), - [anon_sym_u8R_DQUOTE] = ACTIONS(3648), - [anon_sym_co_await] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_requires] = ACTIONS(3646), - [anon_sym_CARET_CARET] = ACTIONS(3648), - [anon_sym_LBRACK_COLON] = ACTIONS(3648), - [sym_this] = ACTIONS(3646), - }, - [STATE(376)] = { - [sym_identifier] = ACTIONS(3650), - [aux_sym_preproc_include_token1] = ACTIONS(3650), - [aux_sym_preproc_def_token1] = ACTIONS(3650), - [aux_sym_preproc_if_token1] = ACTIONS(3650), - [aux_sym_preproc_if_token2] = ACTIONS(3650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3650), - [aux_sym_preproc_else_token1] = ACTIONS(3650), - [aux_sym_preproc_elif_token1] = ACTIONS(3650), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3650), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3650), - [sym_preproc_directive] = ACTIONS(3650), - [anon_sym_LPAREN2] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym___extension__] = ACTIONS(3650), - [anon_sym_typedef] = ACTIONS(3650), - [anon_sym_virtual] = ACTIONS(3650), - [anon_sym_extern] = ACTIONS(3650), - [anon_sym___attribute__] = ACTIONS(3650), - [anon_sym___attribute] = ACTIONS(3650), - [anon_sym_using] = ACTIONS(3650), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3652), - [anon_sym___declspec] = ACTIONS(3650), - [anon_sym___based] = ACTIONS(3650), - [anon_sym___cdecl] = ACTIONS(3650), - [anon_sym___clrcall] = ACTIONS(3650), - [anon_sym___stdcall] = ACTIONS(3650), - [anon_sym___fastcall] = ACTIONS(3650), - [anon_sym___thiscall] = ACTIONS(3650), - [anon_sym___vectorcall] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_signed] = ACTIONS(3650), - [anon_sym_unsigned] = ACTIONS(3650), - [anon_sym_long] = ACTIONS(3650), - [anon_sym_short] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_register] = ACTIONS(3650), - [anon_sym_inline] = ACTIONS(3650), - [anon_sym___inline] = ACTIONS(3650), - [anon_sym___inline__] = ACTIONS(3650), - [anon_sym___forceinline] = ACTIONS(3650), - [anon_sym_thread_local] = ACTIONS(3650), - [anon_sym___thread] = ACTIONS(3650), - [anon_sym_const] = ACTIONS(3650), - [anon_sym_constexpr] = ACTIONS(3650), - [anon_sym_volatile] = ACTIONS(3650), - [anon_sym_restrict] = ACTIONS(3650), - [anon_sym___restrict__] = ACTIONS(3650), - [anon_sym__Atomic] = ACTIONS(3650), - [anon_sym__Noreturn] = ACTIONS(3650), - [anon_sym_noreturn] = ACTIONS(3650), - [anon_sym__Nonnull] = ACTIONS(3650), - [anon_sym_mutable] = ACTIONS(3650), - [anon_sym_constinit] = ACTIONS(3650), - [anon_sym_consteval] = ACTIONS(3650), - [anon_sym_alignas] = ACTIONS(3650), - [anon_sym__Alignas] = ACTIONS(3650), - [sym_primitive_type] = ACTIONS(3650), - [anon_sym_enum] = ACTIONS(3650), - [anon_sym_class] = ACTIONS(3650), - [anon_sym_struct] = ACTIONS(3650), - [anon_sym_union] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_case] = ACTIONS(3650), - [anon_sym_default] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_goto] = ACTIONS(3650), - [anon_sym___try] = ACTIONS(3650), - [anon_sym___leave] = ACTIONS(3650), - [anon_sym_not] = ACTIONS(3650), - [anon_sym_compl] = ACTIONS(3650), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_sizeof] = ACTIONS(3650), - [anon_sym___alignof__] = ACTIONS(3650), - [anon_sym___alignof] = ACTIONS(3650), - [anon_sym__alignof] = ACTIONS(3650), - [anon_sym_alignof] = ACTIONS(3650), - [anon_sym__Alignof] = ACTIONS(3650), - [anon_sym_offsetof] = ACTIONS(3650), - [anon_sym__Generic] = ACTIONS(3650), - [anon_sym_typename] = ACTIONS(3650), - [anon_sym_asm] = ACTIONS(3650), - [anon_sym___asm__] = ACTIONS(3650), - [anon_sym___asm] = ACTIONS(3650), - [sym_number_literal] = ACTIONS(3652), - [anon_sym_L_SQUOTE] = ACTIONS(3652), - [anon_sym_u_SQUOTE] = ACTIONS(3652), - [anon_sym_U_SQUOTE] = ACTIONS(3652), - [anon_sym_u8_SQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [anon_sym_L_DQUOTE] = ACTIONS(3652), - [anon_sym_u_DQUOTE] = ACTIONS(3652), - [anon_sym_U_DQUOTE] = ACTIONS(3652), - [anon_sym_u8_DQUOTE] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [sym_true] = ACTIONS(3650), - [sym_false] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_nullptr] = ACTIONS(3650), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3650), - [anon_sym_decltype] = ACTIONS(3650), - [anon_sym_explicit] = ACTIONS(3650), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_module] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_template] = ACTIONS(3650), - [anon_sym_operator] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_delete] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_namespace] = ACTIONS(3650), - [anon_sym_static_assert] = ACTIONS(3650), - [anon_sym_concept] = ACTIONS(3650), - [anon_sym_co_return] = ACTIONS(3650), - [anon_sym_co_yield] = ACTIONS(3650), - [anon_sym_R_DQUOTE] = ACTIONS(3652), - [anon_sym_LR_DQUOTE] = ACTIONS(3652), - [anon_sym_uR_DQUOTE] = ACTIONS(3652), - [anon_sym_UR_DQUOTE] = ACTIONS(3652), - [anon_sym_u8R_DQUOTE] = ACTIONS(3652), - [anon_sym_co_await] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_requires] = ACTIONS(3650), - [anon_sym_CARET_CARET] = ACTIONS(3652), - [anon_sym_LBRACK_COLON] = ACTIONS(3652), - [sym_this] = ACTIONS(3650), - }, - [STATE(377)] = { - [sym_identifier] = ACTIONS(3654), - [aux_sym_preproc_include_token1] = ACTIONS(3654), - [aux_sym_preproc_def_token1] = ACTIONS(3654), - [aux_sym_preproc_if_token1] = ACTIONS(3654), - [aux_sym_preproc_if_token2] = ACTIONS(3654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3654), - [aux_sym_preproc_else_token1] = ACTIONS(3654), - [aux_sym_preproc_elif_token1] = ACTIONS(3654), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3654), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3654), - [sym_preproc_directive] = ACTIONS(3654), - [anon_sym_LPAREN2] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3656), - [anon_sym_TILDE] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym___extension__] = ACTIONS(3654), - [anon_sym_typedef] = ACTIONS(3654), - [anon_sym_virtual] = ACTIONS(3654), - [anon_sym_extern] = ACTIONS(3654), - [anon_sym___attribute__] = ACTIONS(3654), - [anon_sym___attribute] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_COLON_COLON] = ACTIONS(3656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3656), - [anon_sym___declspec] = ACTIONS(3654), - [anon_sym___based] = ACTIONS(3654), - [anon_sym___cdecl] = ACTIONS(3654), - [anon_sym___clrcall] = ACTIONS(3654), - [anon_sym___stdcall] = ACTIONS(3654), - [anon_sym___fastcall] = ACTIONS(3654), - [anon_sym___thiscall] = ACTIONS(3654), - [anon_sym___vectorcall] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_signed] = ACTIONS(3654), - [anon_sym_unsigned] = ACTIONS(3654), - [anon_sym_long] = ACTIONS(3654), - [anon_sym_short] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_register] = ACTIONS(3654), - [anon_sym_inline] = ACTIONS(3654), - [anon_sym___inline] = ACTIONS(3654), - [anon_sym___inline__] = ACTIONS(3654), - [anon_sym___forceinline] = ACTIONS(3654), - [anon_sym_thread_local] = ACTIONS(3654), - [anon_sym___thread] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_constexpr] = ACTIONS(3654), - [anon_sym_volatile] = ACTIONS(3654), - [anon_sym_restrict] = ACTIONS(3654), - [anon_sym___restrict__] = ACTIONS(3654), - [anon_sym__Atomic] = ACTIONS(3654), - [anon_sym__Noreturn] = ACTIONS(3654), - [anon_sym_noreturn] = ACTIONS(3654), - [anon_sym__Nonnull] = ACTIONS(3654), - [anon_sym_mutable] = ACTIONS(3654), - [anon_sym_constinit] = ACTIONS(3654), - [anon_sym_consteval] = ACTIONS(3654), - [anon_sym_alignas] = ACTIONS(3654), - [anon_sym__Alignas] = ACTIONS(3654), - [sym_primitive_type] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_struct] = ACTIONS(3654), - [anon_sym_union] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_case] = ACTIONS(3654), - [anon_sym_default] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_goto] = ACTIONS(3654), - [anon_sym___try] = ACTIONS(3654), - [anon_sym___leave] = ACTIONS(3654), - [anon_sym_not] = ACTIONS(3654), - [anon_sym_compl] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_sizeof] = ACTIONS(3654), - [anon_sym___alignof__] = ACTIONS(3654), - [anon_sym___alignof] = ACTIONS(3654), - [anon_sym__alignof] = ACTIONS(3654), - [anon_sym_alignof] = ACTIONS(3654), - [anon_sym__Alignof] = ACTIONS(3654), - [anon_sym_offsetof] = ACTIONS(3654), - [anon_sym__Generic] = ACTIONS(3654), - [anon_sym_typename] = ACTIONS(3654), - [anon_sym_asm] = ACTIONS(3654), - [anon_sym___asm__] = ACTIONS(3654), - [anon_sym___asm] = ACTIONS(3654), - [sym_number_literal] = ACTIONS(3656), - [anon_sym_L_SQUOTE] = ACTIONS(3656), - [anon_sym_u_SQUOTE] = ACTIONS(3656), - [anon_sym_U_SQUOTE] = ACTIONS(3656), - [anon_sym_u8_SQUOTE] = ACTIONS(3656), - [anon_sym_SQUOTE] = ACTIONS(3656), - [anon_sym_L_DQUOTE] = ACTIONS(3656), - [anon_sym_u_DQUOTE] = ACTIONS(3656), - [anon_sym_U_DQUOTE] = ACTIONS(3656), - [anon_sym_u8_DQUOTE] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(3656), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [anon_sym_NULL] = ACTIONS(3654), - [anon_sym_nullptr] = ACTIONS(3654), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3654), - [anon_sym_decltype] = ACTIONS(3654), - [anon_sym_explicit] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_template] = ACTIONS(3654), - [anon_sym_operator] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_static_assert] = ACTIONS(3654), - [anon_sym_concept] = ACTIONS(3654), - [anon_sym_co_return] = ACTIONS(3654), - [anon_sym_co_yield] = ACTIONS(3654), - [anon_sym_R_DQUOTE] = ACTIONS(3656), - [anon_sym_LR_DQUOTE] = ACTIONS(3656), - [anon_sym_uR_DQUOTE] = ACTIONS(3656), - [anon_sym_UR_DQUOTE] = ACTIONS(3656), - [anon_sym_u8R_DQUOTE] = ACTIONS(3656), - [anon_sym_co_await] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_requires] = ACTIONS(3654), - [anon_sym_CARET_CARET] = ACTIONS(3656), - [anon_sym_LBRACK_COLON] = ACTIONS(3656), - [sym_this] = ACTIONS(3654), - }, - [STATE(378)] = { - [sym_identifier] = ACTIONS(3658), - [aux_sym_preproc_include_token1] = ACTIONS(3658), - [aux_sym_preproc_def_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token2] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), - [aux_sym_preproc_else_token1] = ACTIONS(3658), - [aux_sym_preproc_elif_token1] = ACTIONS(3658), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3658), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3658), - [sym_preproc_directive] = ACTIONS(3658), - [anon_sym_LPAREN2] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym___extension__] = ACTIONS(3658), - [anon_sym_typedef] = ACTIONS(3658), - [anon_sym_virtual] = ACTIONS(3658), - [anon_sym_extern] = ACTIONS(3658), - [anon_sym___attribute__] = ACTIONS(3658), - [anon_sym___attribute] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), - [anon_sym___declspec] = ACTIONS(3658), - [anon_sym___based] = ACTIONS(3658), - [anon_sym___cdecl] = ACTIONS(3658), - [anon_sym___clrcall] = ACTIONS(3658), - [anon_sym___stdcall] = ACTIONS(3658), - [anon_sym___fastcall] = ACTIONS(3658), - [anon_sym___thiscall] = ACTIONS(3658), - [anon_sym___vectorcall] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_signed] = ACTIONS(3658), - [anon_sym_unsigned] = ACTIONS(3658), - [anon_sym_long] = ACTIONS(3658), - [anon_sym_short] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_register] = ACTIONS(3658), - [anon_sym_inline] = ACTIONS(3658), - [anon_sym___inline] = ACTIONS(3658), - [anon_sym___inline__] = ACTIONS(3658), - [anon_sym___forceinline] = ACTIONS(3658), - [anon_sym_thread_local] = ACTIONS(3658), - [anon_sym___thread] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_constexpr] = ACTIONS(3658), - [anon_sym_volatile] = ACTIONS(3658), - [anon_sym_restrict] = ACTIONS(3658), - [anon_sym___restrict__] = ACTIONS(3658), - [anon_sym__Atomic] = ACTIONS(3658), - [anon_sym__Noreturn] = ACTIONS(3658), - [anon_sym_noreturn] = ACTIONS(3658), - [anon_sym__Nonnull] = ACTIONS(3658), - [anon_sym_mutable] = ACTIONS(3658), - [anon_sym_constinit] = ACTIONS(3658), - [anon_sym_consteval] = ACTIONS(3658), - [anon_sym_alignas] = ACTIONS(3658), - [anon_sym__Alignas] = ACTIONS(3658), - [sym_primitive_type] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3658), - [anon_sym_union] = ACTIONS(3658), - [anon_sym_if] = ACTIONS(3658), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_case] = ACTIONS(3658), - [anon_sym_default] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_for] = ACTIONS(3658), - [anon_sym_return] = ACTIONS(3658), - [anon_sym_break] = ACTIONS(3658), - [anon_sym_continue] = ACTIONS(3658), - [anon_sym_goto] = ACTIONS(3658), - [anon_sym___try] = ACTIONS(3658), - [anon_sym___leave] = ACTIONS(3658), - [anon_sym_not] = ACTIONS(3658), - [anon_sym_compl] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_sizeof] = ACTIONS(3658), - [anon_sym___alignof__] = ACTIONS(3658), - [anon_sym___alignof] = ACTIONS(3658), - [anon_sym__alignof] = ACTIONS(3658), - [anon_sym_alignof] = ACTIONS(3658), - [anon_sym__Alignof] = ACTIONS(3658), - [anon_sym_offsetof] = ACTIONS(3658), - [anon_sym__Generic] = ACTIONS(3658), - [anon_sym_typename] = ACTIONS(3658), - [anon_sym_asm] = ACTIONS(3658), - [anon_sym___asm__] = ACTIONS(3658), - [anon_sym___asm] = ACTIONS(3658), - [sym_number_literal] = ACTIONS(3660), - [anon_sym_L_SQUOTE] = ACTIONS(3660), - [anon_sym_u_SQUOTE] = ACTIONS(3660), - [anon_sym_U_SQUOTE] = ACTIONS(3660), - [anon_sym_u8_SQUOTE] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_L_DQUOTE] = ACTIONS(3660), - [anon_sym_u_DQUOTE] = ACTIONS(3660), - [anon_sym_U_DQUOTE] = ACTIONS(3660), - [anon_sym_u8_DQUOTE] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [sym_true] = ACTIONS(3658), - [sym_false] = ACTIONS(3658), - [anon_sym_NULL] = ACTIONS(3658), - [anon_sym_nullptr] = ACTIONS(3658), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3658), - [anon_sym_decltype] = ACTIONS(3658), - [anon_sym_explicit] = ACTIONS(3658), - [anon_sym_export] = ACTIONS(3658), - [anon_sym_module] = ACTIONS(3658), - [anon_sym_import] = ACTIONS(3658), - [anon_sym_template] = ACTIONS(3658), - [anon_sym_operator] = ACTIONS(3658), - [anon_sym_try] = ACTIONS(3658), - [anon_sym_delete] = ACTIONS(3658), - [anon_sym_throw] = ACTIONS(3658), - [anon_sym_namespace] = ACTIONS(3658), - [anon_sym_static_assert] = ACTIONS(3658), - [anon_sym_concept] = ACTIONS(3658), - [anon_sym_co_return] = ACTIONS(3658), - [anon_sym_co_yield] = ACTIONS(3658), - [anon_sym_R_DQUOTE] = ACTIONS(3660), - [anon_sym_LR_DQUOTE] = ACTIONS(3660), - [anon_sym_uR_DQUOTE] = ACTIONS(3660), - [anon_sym_UR_DQUOTE] = ACTIONS(3660), - [anon_sym_u8R_DQUOTE] = ACTIONS(3660), - [anon_sym_co_await] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_requires] = ACTIONS(3658), - [anon_sym_CARET_CARET] = ACTIONS(3660), - [anon_sym_LBRACK_COLON] = ACTIONS(3660), - [sym_this] = ACTIONS(3658), - }, - [STATE(379)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_include_token1] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token2] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym___cdecl] = ACTIONS(3662), - [anon_sym___clrcall] = ACTIONS(3662), - [anon_sym___stdcall] = ACTIONS(3662), - [anon_sym___fastcall] = ACTIONS(3662), - [anon_sym___thiscall] = ACTIONS(3662), - [anon_sym___vectorcall] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_goto] = ACTIONS(3662), - [anon_sym___try] = ACTIONS(3662), - [anon_sym___leave] = ACTIONS(3662), - [anon_sym_not] = ACTIONS(3662), - [anon_sym_compl] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_sizeof] = ACTIONS(3662), - [anon_sym___alignof__] = ACTIONS(3662), - [anon_sym___alignof] = ACTIONS(3662), - [anon_sym__alignof] = ACTIONS(3662), - [anon_sym_alignof] = ACTIONS(3662), - [anon_sym__Alignof] = ACTIONS(3662), - [anon_sym_offsetof] = ACTIONS(3662), - [anon_sym__Generic] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [anon_sym_asm] = ACTIONS(3662), - [anon_sym___asm__] = ACTIONS(3662), - [anon_sym___asm] = ACTIONS(3662), - [sym_number_literal] = ACTIONS(3664), - [anon_sym_L_SQUOTE] = ACTIONS(3664), - [anon_sym_u_SQUOTE] = ACTIONS(3664), - [anon_sym_U_SQUOTE] = ACTIONS(3664), - [anon_sym_u8_SQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_L_DQUOTE] = ACTIONS(3664), - [anon_sym_u_DQUOTE] = ACTIONS(3664), - [anon_sym_U_DQUOTE] = ACTIONS(3664), - [anon_sym_u8_DQUOTE] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [anon_sym_NULL] = ACTIONS(3662), - [anon_sym_nullptr] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_concept] = ACTIONS(3662), - [anon_sym_co_return] = ACTIONS(3662), - [anon_sym_co_yield] = ACTIONS(3662), - [anon_sym_R_DQUOTE] = ACTIONS(3664), - [anon_sym_LR_DQUOTE] = ACTIONS(3664), - [anon_sym_uR_DQUOTE] = ACTIONS(3664), - [anon_sym_UR_DQUOTE] = ACTIONS(3664), - [anon_sym_u8R_DQUOTE] = ACTIONS(3664), - [anon_sym_co_await] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3662), - [anon_sym_CARET_CARET] = ACTIONS(3664), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - [sym_this] = ACTIONS(3662), - }, - [STATE(380)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_include_token1] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token2] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym___cdecl] = ACTIONS(3662), - [anon_sym___clrcall] = ACTIONS(3662), - [anon_sym___stdcall] = ACTIONS(3662), - [anon_sym___fastcall] = ACTIONS(3662), - [anon_sym___thiscall] = ACTIONS(3662), - [anon_sym___vectorcall] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_goto] = ACTIONS(3662), - [anon_sym___try] = ACTIONS(3662), - [anon_sym___leave] = ACTIONS(3662), - [anon_sym_not] = ACTIONS(3662), - [anon_sym_compl] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_sizeof] = ACTIONS(3662), - [anon_sym___alignof__] = ACTIONS(3662), - [anon_sym___alignof] = ACTIONS(3662), - [anon_sym__alignof] = ACTIONS(3662), - [anon_sym_alignof] = ACTIONS(3662), - [anon_sym__Alignof] = ACTIONS(3662), - [anon_sym_offsetof] = ACTIONS(3662), - [anon_sym__Generic] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [anon_sym_asm] = ACTIONS(3662), - [anon_sym___asm__] = ACTIONS(3662), - [anon_sym___asm] = ACTIONS(3662), - [sym_number_literal] = ACTIONS(3664), - [anon_sym_L_SQUOTE] = ACTIONS(3664), - [anon_sym_u_SQUOTE] = ACTIONS(3664), - [anon_sym_U_SQUOTE] = ACTIONS(3664), - [anon_sym_u8_SQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_L_DQUOTE] = ACTIONS(3664), - [anon_sym_u_DQUOTE] = ACTIONS(3664), - [anon_sym_U_DQUOTE] = ACTIONS(3664), - [anon_sym_u8_DQUOTE] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [anon_sym_NULL] = ACTIONS(3662), - [anon_sym_nullptr] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_concept] = ACTIONS(3662), - [anon_sym_co_return] = ACTIONS(3662), - [anon_sym_co_yield] = ACTIONS(3662), - [anon_sym_R_DQUOTE] = ACTIONS(3664), - [anon_sym_LR_DQUOTE] = ACTIONS(3664), - [anon_sym_uR_DQUOTE] = ACTIONS(3664), - [anon_sym_UR_DQUOTE] = ACTIONS(3664), - [anon_sym_u8R_DQUOTE] = ACTIONS(3664), - [anon_sym_co_await] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3662), - [anon_sym_CARET_CARET] = ACTIONS(3664), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - [sym_this] = ACTIONS(3662), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(3482), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(381)] = { - [sym_identifier] = ACTIONS(3666), - [aux_sym_preproc_include_token1] = ACTIONS(3666), - [aux_sym_preproc_def_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token2] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), - [aux_sym_preproc_else_token1] = ACTIONS(3666), - [aux_sym_preproc_elif_token1] = ACTIONS(3666), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3666), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3666), - [sym_preproc_directive] = ACTIONS(3666), - [anon_sym_LPAREN2] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym___extension__] = ACTIONS(3666), - [anon_sym_typedef] = ACTIONS(3666), - [anon_sym_virtual] = ACTIONS(3666), - [anon_sym_extern] = ACTIONS(3666), - [anon_sym___attribute__] = ACTIONS(3666), - [anon_sym___attribute] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_COLON_COLON] = ACTIONS(3668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), - [anon_sym___declspec] = ACTIONS(3666), - [anon_sym___based] = ACTIONS(3666), - [anon_sym___cdecl] = ACTIONS(3666), - [anon_sym___clrcall] = ACTIONS(3666), - [anon_sym___stdcall] = ACTIONS(3666), - [anon_sym___fastcall] = ACTIONS(3666), - [anon_sym___thiscall] = ACTIONS(3666), - [anon_sym___vectorcall] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_signed] = ACTIONS(3666), - [anon_sym_unsigned] = ACTIONS(3666), - [anon_sym_long] = ACTIONS(3666), - [anon_sym_short] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_register] = ACTIONS(3666), - [anon_sym_inline] = ACTIONS(3666), - [anon_sym___inline] = ACTIONS(3666), - [anon_sym___inline__] = ACTIONS(3666), - [anon_sym___forceinline] = ACTIONS(3666), - [anon_sym_thread_local] = ACTIONS(3666), - [anon_sym___thread] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_constexpr] = ACTIONS(3666), - [anon_sym_volatile] = ACTIONS(3666), - [anon_sym_restrict] = ACTIONS(3666), - [anon_sym___restrict__] = ACTIONS(3666), - [anon_sym__Atomic] = ACTIONS(3666), - [anon_sym__Noreturn] = ACTIONS(3666), - [anon_sym_noreturn] = ACTIONS(3666), - [anon_sym__Nonnull] = ACTIONS(3666), - [anon_sym_mutable] = ACTIONS(3666), - [anon_sym_constinit] = ACTIONS(3666), - [anon_sym_consteval] = ACTIONS(3666), - [anon_sym_alignas] = ACTIONS(3666), - [anon_sym__Alignas] = ACTIONS(3666), - [sym_primitive_type] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_union] = ACTIONS(3666), - [anon_sym_if] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_case] = ACTIONS(3666), - [anon_sym_default] = ACTIONS(3666), - [anon_sym_while] = ACTIONS(3666), - [anon_sym_do] = ACTIONS(3666), - [anon_sym_for] = ACTIONS(3666), - [anon_sym_return] = ACTIONS(3666), - [anon_sym_break] = ACTIONS(3666), - [anon_sym_continue] = ACTIONS(3666), - [anon_sym_goto] = ACTIONS(3666), - [anon_sym___try] = ACTIONS(3666), - [anon_sym___leave] = ACTIONS(3666), - [anon_sym_not] = ACTIONS(3666), - [anon_sym_compl] = ACTIONS(3666), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_sizeof] = ACTIONS(3666), - [anon_sym___alignof__] = ACTIONS(3666), - [anon_sym___alignof] = ACTIONS(3666), - [anon_sym__alignof] = ACTIONS(3666), - [anon_sym_alignof] = ACTIONS(3666), - [anon_sym__Alignof] = ACTIONS(3666), - [anon_sym_offsetof] = ACTIONS(3666), - [anon_sym__Generic] = ACTIONS(3666), - [anon_sym_typename] = ACTIONS(3666), - [anon_sym_asm] = ACTIONS(3666), - [anon_sym___asm__] = ACTIONS(3666), - [anon_sym___asm] = ACTIONS(3666), - [sym_number_literal] = ACTIONS(3668), - [anon_sym_L_SQUOTE] = ACTIONS(3668), - [anon_sym_u_SQUOTE] = ACTIONS(3668), - [anon_sym_U_SQUOTE] = ACTIONS(3668), - [anon_sym_u8_SQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3668), - [anon_sym_L_DQUOTE] = ACTIONS(3668), - [anon_sym_u_DQUOTE] = ACTIONS(3668), - [anon_sym_U_DQUOTE] = ACTIONS(3668), - [anon_sym_u8_DQUOTE] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(3668), - [sym_true] = ACTIONS(3666), - [sym_false] = ACTIONS(3666), - [anon_sym_NULL] = ACTIONS(3666), - [anon_sym_nullptr] = ACTIONS(3666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3666), - [anon_sym_decltype] = ACTIONS(3666), - [anon_sym_explicit] = ACTIONS(3666), - [anon_sym_export] = ACTIONS(3666), - [anon_sym_module] = ACTIONS(3666), - [anon_sym_import] = ACTIONS(3666), - [anon_sym_template] = ACTIONS(3666), - [anon_sym_operator] = ACTIONS(3666), - [anon_sym_try] = ACTIONS(3666), - [anon_sym_delete] = ACTIONS(3666), - [anon_sym_throw] = ACTIONS(3666), - [anon_sym_namespace] = ACTIONS(3666), - [anon_sym_static_assert] = ACTIONS(3666), - [anon_sym_concept] = ACTIONS(3666), - [anon_sym_co_return] = ACTIONS(3666), - [anon_sym_co_yield] = ACTIONS(3666), - [anon_sym_R_DQUOTE] = ACTIONS(3668), - [anon_sym_LR_DQUOTE] = ACTIONS(3668), - [anon_sym_uR_DQUOTE] = ACTIONS(3668), - [anon_sym_UR_DQUOTE] = ACTIONS(3668), - [anon_sym_u8R_DQUOTE] = ACTIONS(3668), - [anon_sym_co_await] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_requires] = ACTIONS(3666), - [anon_sym_CARET_CARET] = ACTIONS(3668), - [anon_sym_LBRACK_COLON] = ACTIONS(3668), - [sym_this] = ACTIONS(3666), - }, - [STATE(382)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(385)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3126), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = 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(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3676), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -114461,7 +114906,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -114481,9 +114926,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -114494,302 +114939,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(383)] = { - [sym_identifier] = ACTIONS(3670), - [aux_sym_preproc_include_token1] = ACTIONS(3670), - [aux_sym_preproc_def_token1] = ACTIONS(3670), - [aux_sym_preproc_if_token1] = ACTIONS(3670), - [aux_sym_preproc_if_token2] = ACTIONS(3670), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3670), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3670), - [aux_sym_preproc_else_token1] = ACTIONS(3670), - [aux_sym_preproc_elif_token1] = ACTIONS(3670), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3670), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3670), - [sym_preproc_directive] = ACTIONS(3670), - [anon_sym_LPAREN2] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(3672), - [anon_sym_TILDE] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym___extension__] = ACTIONS(3670), - [anon_sym_typedef] = ACTIONS(3670), - [anon_sym_virtual] = ACTIONS(3670), - [anon_sym_extern] = ACTIONS(3670), - [anon_sym___attribute__] = ACTIONS(3670), - [anon_sym___attribute] = ACTIONS(3670), - [anon_sym_using] = ACTIONS(3670), - [anon_sym_COLON_COLON] = ACTIONS(3672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3672), - [anon_sym___declspec] = ACTIONS(3670), - [anon_sym___based] = ACTIONS(3670), - [anon_sym___cdecl] = ACTIONS(3670), - [anon_sym___clrcall] = ACTIONS(3670), - [anon_sym___stdcall] = ACTIONS(3670), - [anon_sym___fastcall] = ACTIONS(3670), - [anon_sym___thiscall] = ACTIONS(3670), - [anon_sym___vectorcall] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_signed] = ACTIONS(3670), - [anon_sym_unsigned] = ACTIONS(3670), - [anon_sym_long] = ACTIONS(3670), - [anon_sym_short] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3670), - [anon_sym_static] = ACTIONS(3670), - [anon_sym_register] = ACTIONS(3670), - [anon_sym_inline] = ACTIONS(3670), - [anon_sym___inline] = ACTIONS(3670), - [anon_sym___inline__] = ACTIONS(3670), - [anon_sym___forceinline] = ACTIONS(3670), - [anon_sym_thread_local] = ACTIONS(3670), - [anon_sym___thread] = ACTIONS(3670), - [anon_sym_const] = ACTIONS(3670), - [anon_sym_constexpr] = ACTIONS(3670), - [anon_sym_volatile] = ACTIONS(3670), - [anon_sym_restrict] = ACTIONS(3670), - [anon_sym___restrict__] = ACTIONS(3670), - [anon_sym__Atomic] = ACTIONS(3670), - [anon_sym__Noreturn] = ACTIONS(3670), - [anon_sym_noreturn] = ACTIONS(3670), - [anon_sym__Nonnull] = ACTIONS(3670), - [anon_sym_mutable] = ACTIONS(3670), - [anon_sym_constinit] = ACTIONS(3670), - [anon_sym_consteval] = ACTIONS(3670), - [anon_sym_alignas] = ACTIONS(3670), - [anon_sym__Alignas] = ACTIONS(3670), - [sym_primitive_type] = ACTIONS(3670), - [anon_sym_enum] = ACTIONS(3670), - [anon_sym_class] = ACTIONS(3670), - [anon_sym_struct] = ACTIONS(3670), - [anon_sym_union] = ACTIONS(3670), - [anon_sym_if] = ACTIONS(3670), - [anon_sym_else] = ACTIONS(3670), - [anon_sym_switch] = ACTIONS(3670), - [anon_sym_case] = ACTIONS(3670), - [anon_sym_default] = ACTIONS(3670), - [anon_sym_while] = ACTIONS(3670), - [anon_sym_do] = ACTIONS(3670), - [anon_sym_for] = ACTIONS(3670), - [anon_sym_return] = ACTIONS(3670), - [anon_sym_break] = ACTIONS(3670), - [anon_sym_continue] = ACTIONS(3670), - [anon_sym_goto] = ACTIONS(3670), - [anon_sym___try] = ACTIONS(3670), - [anon_sym___leave] = ACTIONS(3670), - [anon_sym_not] = ACTIONS(3670), - [anon_sym_compl] = ACTIONS(3670), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_sizeof] = ACTIONS(3670), - [anon_sym___alignof__] = ACTIONS(3670), - [anon_sym___alignof] = ACTIONS(3670), - [anon_sym__alignof] = ACTIONS(3670), - [anon_sym_alignof] = ACTIONS(3670), - [anon_sym__Alignof] = ACTIONS(3670), - [anon_sym_offsetof] = ACTIONS(3670), - [anon_sym__Generic] = ACTIONS(3670), - [anon_sym_typename] = ACTIONS(3670), - [anon_sym_asm] = ACTIONS(3670), - [anon_sym___asm__] = ACTIONS(3670), - [anon_sym___asm] = ACTIONS(3670), - [sym_number_literal] = ACTIONS(3672), - [anon_sym_L_SQUOTE] = ACTIONS(3672), - [anon_sym_u_SQUOTE] = ACTIONS(3672), - [anon_sym_U_SQUOTE] = ACTIONS(3672), - [anon_sym_u8_SQUOTE] = ACTIONS(3672), - [anon_sym_SQUOTE] = ACTIONS(3672), - [anon_sym_L_DQUOTE] = ACTIONS(3672), - [anon_sym_u_DQUOTE] = ACTIONS(3672), - [anon_sym_U_DQUOTE] = ACTIONS(3672), - [anon_sym_u8_DQUOTE] = ACTIONS(3672), - [anon_sym_DQUOTE] = ACTIONS(3672), - [sym_true] = ACTIONS(3670), - [sym_false] = ACTIONS(3670), - [anon_sym_NULL] = ACTIONS(3670), - [anon_sym_nullptr] = ACTIONS(3670), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3670), - [anon_sym_decltype] = ACTIONS(3670), - [anon_sym_explicit] = ACTIONS(3670), - [anon_sym_export] = ACTIONS(3670), - [anon_sym_module] = ACTIONS(3670), - [anon_sym_import] = ACTIONS(3670), - [anon_sym_template] = ACTIONS(3670), - [anon_sym_operator] = ACTIONS(3670), - [anon_sym_try] = ACTIONS(3670), - [anon_sym_delete] = ACTIONS(3670), - [anon_sym_throw] = ACTIONS(3670), - [anon_sym_namespace] = ACTIONS(3670), - [anon_sym_static_assert] = ACTIONS(3670), - [anon_sym_concept] = ACTIONS(3670), - [anon_sym_co_return] = ACTIONS(3670), - [anon_sym_co_yield] = ACTIONS(3670), - [anon_sym_R_DQUOTE] = ACTIONS(3672), - [anon_sym_LR_DQUOTE] = ACTIONS(3672), - [anon_sym_uR_DQUOTE] = ACTIONS(3672), - [anon_sym_UR_DQUOTE] = ACTIONS(3672), - [anon_sym_u8R_DQUOTE] = ACTIONS(3672), - [anon_sym_co_await] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3670), - [anon_sym_requires] = ACTIONS(3670), - [anon_sym_CARET_CARET] = ACTIONS(3672), - [anon_sym_LBRACK_COLON] = ACTIONS(3672), - [sym_this] = ACTIONS(3670), + [STATE(386)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), + [sym_this] = ACTIONS(237), }, - [STATE(384)] = { - [sym_identifier] = ACTIONS(3674), - [aux_sym_preproc_include_token1] = ACTIONS(3674), - [aux_sym_preproc_def_token1] = ACTIONS(3674), - [aux_sym_preproc_if_token1] = ACTIONS(3674), - [aux_sym_preproc_if_token2] = ACTIONS(3674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3674), - [aux_sym_preproc_else_token1] = ACTIONS(3674), - [aux_sym_preproc_elif_token1] = ACTIONS(3674), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3674), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3674), - [sym_preproc_directive] = ACTIONS(3674), - [anon_sym_LPAREN2] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3676), - [anon_sym_TILDE] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym___extension__] = ACTIONS(3674), - [anon_sym_typedef] = ACTIONS(3674), - [anon_sym_virtual] = ACTIONS(3674), - [anon_sym_extern] = ACTIONS(3674), - [anon_sym___attribute__] = ACTIONS(3674), - [anon_sym___attribute] = ACTIONS(3674), - [anon_sym_using] = ACTIONS(3674), - [anon_sym_COLON_COLON] = ACTIONS(3676), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3676), - [anon_sym___declspec] = ACTIONS(3674), - [anon_sym___based] = ACTIONS(3674), - [anon_sym___cdecl] = ACTIONS(3674), - [anon_sym___clrcall] = ACTIONS(3674), - [anon_sym___stdcall] = ACTIONS(3674), - [anon_sym___fastcall] = ACTIONS(3674), - [anon_sym___thiscall] = ACTIONS(3674), - [anon_sym___vectorcall] = ACTIONS(3674), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_signed] = ACTIONS(3674), - [anon_sym_unsigned] = ACTIONS(3674), - [anon_sym_long] = ACTIONS(3674), - [anon_sym_short] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_static] = ACTIONS(3674), - [anon_sym_register] = ACTIONS(3674), - [anon_sym_inline] = ACTIONS(3674), - [anon_sym___inline] = ACTIONS(3674), - [anon_sym___inline__] = ACTIONS(3674), - [anon_sym___forceinline] = ACTIONS(3674), - [anon_sym_thread_local] = ACTIONS(3674), - [anon_sym___thread] = ACTIONS(3674), - [anon_sym_const] = ACTIONS(3674), - [anon_sym_constexpr] = ACTIONS(3674), - [anon_sym_volatile] = ACTIONS(3674), - [anon_sym_restrict] = ACTIONS(3674), - [anon_sym___restrict__] = ACTIONS(3674), - [anon_sym__Atomic] = ACTIONS(3674), - [anon_sym__Noreturn] = ACTIONS(3674), - [anon_sym_noreturn] = ACTIONS(3674), - [anon_sym__Nonnull] = ACTIONS(3674), - [anon_sym_mutable] = ACTIONS(3674), - [anon_sym_constinit] = ACTIONS(3674), - [anon_sym_consteval] = ACTIONS(3674), - [anon_sym_alignas] = ACTIONS(3674), - [anon_sym__Alignas] = ACTIONS(3674), - [sym_primitive_type] = ACTIONS(3674), - [anon_sym_enum] = ACTIONS(3674), - [anon_sym_class] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(3674), - [anon_sym_union] = ACTIONS(3674), - [anon_sym_if] = ACTIONS(3674), - [anon_sym_else] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_case] = ACTIONS(3674), - [anon_sym_default] = ACTIONS(3674), - [anon_sym_while] = ACTIONS(3674), - [anon_sym_do] = ACTIONS(3674), - [anon_sym_for] = ACTIONS(3674), - [anon_sym_return] = ACTIONS(3674), - [anon_sym_break] = ACTIONS(3674), - [anon_sym_continue] = ACTIONS(3674), - [anon_sym_goto] = ACTIONS(3674), - [anon_sym___try] = ACTIONS(3674), - [anon_sym___leave] = ACTIONS(3674), - [anon_sym_not] = ACTIONS(3674), - [anon_sym_compl] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_sizeof] = ACTIONS(3674), - [anon_sym___alignof__] = ACTIONS(3674), - [anon_sym___alignof] = ACTIONS(3674), - [anon_sym__alignof] = ACTIONS(3674), - [anon_sym_alignof] = ACTIONS(3674), - [anon_sym__Alignof] = ACTIONS(3674), - [anon_sym_offsetof] = ACTIONS(3674), - [anon_sym__Generic] = ACTIONS(3674), - [anon_sym_typename] = ACTIONS(3674), - [anon_sym_asm] = ACTIONS(3674), - [anon_sym___asm__] = ACTIONS(3674), - [anon_sym___asm] = ACTIONS(3674), - [sym_number_literal] = ACTIONS(3676), - [anon_sym_L_SQUOTE] = ACTIONS(3676), - [anon_sym_u_SQUOTE] = ACTIONS(3676), - [anon_sym_U_SQUOTE] = ACTIONS(3676), - [anon_sym_u8_SQUOTE] = ACTIONS(3676), - [anon_sym_SQUOTE] = ACTIONS(3676), - [anon_sym_L_DQUOTE] = ACTIONS(3676), - [anon_sym_u_DQUOTE] = ACTIONS(3676), - [anon_sym_U_DQUOTE] = ACTIONS(3676), - [anon_sym_u8_DQUOTE] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(3676), - [sym_true] = ACTIONS(3674), - [sym_false] = ACTIONS(3674), - [anon_sym_NULL] = ACTIONS(3674), - [anon_sym_nullptr] = ACTIONS(3674), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3674), - [anon_sym_decltype] = ACTIONS(3674), - [anon_sym_explicit] = ACTIONS(3674), - [anon_sym_export] = ACTIONS(3674), - [anon_sym_module] = ACTIONS(3674), - [anon_sym_import] = ACTIONS(3674), - [anon_sym_template] = ACTIONS(3674), - [anon_sym_operator] = ACTIONS(3674), - [anon_sym_try] = ACTIONS(3674), - [anon_sym_delete] = ACTIONS(3674), - [anon_sym_throw] = ACTIONS(3674), - [anon_sym_namespace] = ACTIONS(3674), - [anon_sym_static_assert] = ACTIONS(3674), - [anon_sym_concept] = ACTIONS(3674), - [anon_sym_co_return] = ACTIONS(3674), - [anon_sym_co_yield] = ACTIONS(3674), - [anon_sym_R_DQUOTE] = ACTIONS(3676), - [anon_sym_LR_DQUOTE] = ACTIONS(3676), - [anon_sym_uR_DQUOTE] = ACTIONS(3676), - [anon_sym_UR_DQUOTE] = ACTIONS(3676), - [anon_sym_u8R_DQUOTE] = ACTIONS(3676), - [anon_sym_co_await] = ACTIONS(3674), - [anon_sym_new] = ACTIONS(3674), - [anon_sym_requires] = ACTIONS(3674), - [anon_sym_CARET_CARET] = ACTIONS(3676), - [anon_sym_LBRACK_COLON] = ACTIONS(3676), - [sym_this] = ACTIONS(3674), + [STATE(387)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3124), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3137), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), + [sym_this] = ACTIONS(237), }, - [STATE(385)] = { + [STATE(388)] = { [sym_identifier] = ACTIONS(3678), [aux_sym_preproc_include_token1] = ACTIONS(3678), [aux_sym_preproc_def_token1] = ACTIONS(3678), @@ -114935,813 +115380,3999 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3680), [sym_this] = ACTIONS(3678), }, - [STATE(386)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3682), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = 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(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), - [sym_this] = ACTIONS(237), - }, - [STATE(387)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3151), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = 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(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), - [sym_this] = ACTIONS(237), - }, - [STATE(388)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_typedef] = ACTIONS(3157), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = 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(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), - [sym_this] = ACTIONS(237), - }, [STATE(389)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_include_token1] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token2] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [aux_sym_preproc_else_token1] = ACTIONS(3600), - [aux_sym_preproc_elif_token1] = ACTIONS(3600), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym___cdecl] = ACTIONS(3600), - [anon_sym___clrcall] = ACTIONS(3600), - [anon_sym___stdcall] = ACTIONS(3600), - [anon_sym___fastcall] = ACTIONS(3600), - [anon_sym___thiscall] = ACTIONS(3600), - [anon_sym___vectorcall] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_case] = ACTIONS(3600), - [anon_sym_default] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym___try] = ACTIONS(3600), - [anon_sym___leave] = ACTIONS(3600), - [anon_sym_not] = ACTIONS(3600), - [anon_sym_compl] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(3600), - [anon_sym___alignof] = ACTIONS(3600), - [anon_sym__alignof] = ACTIONS(3600), - [anon_sym_alignof] = ACTIONS(3600), - [anon_sym__Alignof] = ACTIONS(3600), - [anon_sym_offsetof] = ACTIONS(3600), - [anon_sym__Generic] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [anon_sym_asm] = ACTIONS(3600), - [anon_sym___asm__] = ACTIONS(3600), - [anon_sym___asm] = ACTIONS(3600), - [sym_number_literal] = ACTIONS(3602), - [anon_sym_L_SQUOTE] = ACTIONS(3602), - [anon_sym_u_SQUOTE] = ACTIONS(3602), - [anon_sym_U_SQUOTE] = ACTIONS(3602), - [anon_sym_u8_SQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_L_DQUOTE] = ACTIONS(3602), - [anon_sym_u_DQUOTE] = ACTIONS(3602), - [anon_sym_U_DQUOTE] = ACTIONS(3602), - [anon_sym_u8_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [anon_sym_NULL] = ACTIONS(3600), - [anon_sym_nullptr] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_export] = ACTIONS(3600), - [anon_sym_module] = ACTIONS(3600), - [anon_sym_import] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_concept] = ACTIONS(3600), - [anon_sym_co_return] = ACTIONS(3600), - [anon_sym_co_yield] = ACTIONS(3600), - [anon_sym_R_DQUOTE] = ACTIONS(3602), - [anon_sym_LR_DQUOTE] = ACTIONS(3602), - [anon_sym_uR_DQUOTE] = ACTIONS(3602), - [anon_sym_UR_DQUOTE] = ACTIONS(3602), - [anon_sym_u8R_DQUOTE] = ACTIONS(3602), - [anon_sym_co_await] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_requires] = ACTIONS(3600), - [anon_sym_CARET_CARET] = ACTIONS(3602), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - [sym_this] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3682), + [aux_sym_preproc_include_token1] = ACTIONS(3682), + [aux_sym_preproc_def_token1] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3682), + [aux_sym_preproc_if_token2] = ACTIONS(3682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), + [aux_sym_preproc_else_token1] = ACTIONS(3682), + [aux_sym_preproc_elif_token1] = ACTIONS(3682), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3682), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3682), + [sym_preproc_directive] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym___extension__] = ACTIONS(3682), + [anon_sym_typedef] = ACTIONS(3682), + [anon_sym_virtual] = ACTIONS(3682), + [anon_sym_extern] = ACTIONS(3682), + [anon_sym___attribute__] = ACTIONS(3682), + [anon_sym___attribute] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3682), + [anon_sym___based] = ACTIONS(3682), + [anon_sym___cdecl] = ACTIONS(3682), + [anon_sym___clrcall] = ACTIONS(3682), + [anon_sym___stdcall] = ACTIONS(3682), + [anon_sym___fastcall] = ACTIONS(3682), + [anon_sym___thiscall] = ACTIONS(3682), + [anon_sym___vectorcall] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_signed] = ACTIONS(3682), + [anon_sym_unsigned] = ACTIONS(3682), + [anon_sym_long] = ACTIONS(3682), + [anon_sym_short] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_register] = ACTIONS(3682), + [anon_sym_inline] = ACTIONS(3682), + [anon_sym___inline] = ACTIONS(3682), + [anon_sym___inline__] = ACTIONS(3682), + [anon_sym___forceinline] = ACTIONS(3682), + [anon_sym_thread_local] = ACTIONS(3682), + [anon_sym___thread] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_constexpr] = ACTIONS(3682), + [anon_sym_volatile] = ACTIONS(3682), + [anon_sym_restrict] = ACTIONS(3682), + [anon_sym___restrict__] = ACTIONS(3682), + [anon_sym__Atomic] = ACTIONS(3682), + [anon_sym__Noreturn] = ACTIONS(3682), + [anon_sym_noreturn] = ACTIONS(3682), + [anon_sym__Nonnull] = ACTIONS(3682), + [anon_sym_mutable] = ACTIONS(3682), + [anon_sym_constinit] = ACTIONS(3682), + [anon_sym_consteval] = ACTIONS(3682), + [anon_sym_alignas] = ACTIONS(3682), + [anon_sym__Alignas] = ACTIONS(3682), + [sym_primitive_type] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_struct] = ACTIONS(3682), + [anon_sym_union] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_case] = ACTIONS(3682), + [anon_sym_default] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_goto] = ACTIONS(3682), + [anon_sym___try] = ACTIONS(3682), + [anon_sym___leave] = ACTIONS(3682), + [anon_sym_not] = ACTIONS(3682), + [anon_sym_compl] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_sizeof] = ACTIONS(3682), + [anon_sym___alignof__] = ACTIONS(3682), + [anon_sym___alignof] = ACTIONS(3682), + [anon_sym__alignof] = ACTIONS(3682), + [anon_sym_alignof] = ACTIONS(3682), + [anon_sym__Alignof] = ACTIONS(3682), + [anon_sym_offsetof] = ACTIONS(3682), + [anon_sym__Generic] = ACTIONS(3682), + [anon_sym_typename] = ACTIONS(3682), + [anon_sym_asm] = ACTIONS(3682), + [anon_sym___asm__] = ACTIONS(3682), + [anon_sym___asm] = ACTIONS(3682), + [sym_number_literal] = ACTIONS(3684), + [anon_sym_L_SQUOTE] = ACTIONS(3684), + [anon_sym_u_SQUOTE] = ACTIONS(3684), + [anon_sym_U_SQUOTE] = ACTIONS(3684), + [anon_sym_u8_SQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_L_DQUOTE] = ACTIONS(3684), + [anon_sym_u_DQUOTE] = ACTIONS(3684), + [anon_sym_U_DQUOTE] = ACTIONS(3684), + [anon_sym_u8_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [anon_sym_NULL] = ACTIONS(3682), + [anon_sym_nullptr] = ACTIONS(3682), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3682), + [anon_sym_decltype] = ACTIONS(3682), + [anon_sym_explicit] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_template] = ACTIONS(3682), + [anon_sym_operator] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3682), + [anon_sym_concept] = ACTIONS(3682), + [anon_sym_co_return] = ACTIONS(3682), + [anon_sym_co_yield] = ACTIONS(3682), + [anon_sym_R_DQUOTE] = ACTIONS(3684), + [anon_sym_LR_DQUOTE] = ACTIONS(3684), + [anon_sym_uR_DQUOTE] = ACTIONS(3684), + [anon_sym_UR_DQUOTE] = ACTIONS(3684), + [anon_sym_u8R_DQUOTE] = ACTIONS(3684), + [anon_sym_co_await] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_requires] = ACTIONS(3682), + [anon_sym_CARET_CARET] = ACTIONS(3684), + [anon_sym_LBRACK_COLON] = ACTIONS(3684), + [sym_this] = ACTIONS(3682), }, [STATE(390)] = { - [sym_identifier] = ACTIONS(3684), - [aux_sym_preproc_include_token1] = ACTIONS(3684), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token2] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), - [aux_sym_preproc_else_token1] = ACTIONS(3684), - [aux_sym_preproc_elif_token1] = ACTIONS(3684), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3684), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3684), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym___extension__] = ACTIONS(3684), - [anon_sym_typedef] = ACTIONS(3684), - [anon_sym_virtual] = ACTIONS(3684), - [anon_sym_extern] = ACTIONS(3684), - [anon_sym___attribute__] = ACTIONS(3684), - [anon_sym___attribute] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_COLON_COLON] = ACTIONS(3686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), - [anon_sym___declspec] = ACTIONS(3684), - [anon_sym___based] = ACTIONS(3684), - [anon_sym___cdecl] = ACTIONS(3684), - [anon_sym___clrcall] = ACTIONS(3684), - [anon_sym___stdcall] = ACTIONS(3684), - [anon_sym___fastcall] = ACTIONS(3684), - [anon_sym___thiscall] = ACTIONS(3684), - [anon_sym___vectorcall] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_signed] = ACTIONS(3684), - [anon_sym_unsigned] = ACTIONS(3684), - [anon_sym_long] = ACTIONS(3684), - [anon_sym_short] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_register] = ACTIONS(3684), - [anon_sym_inline] = ACTIONS(3684), - [anon_sym___inline] = ACTIONS(3684), - [anon_sym___inline__] = ACTIONS(3684), - [anon_sym___forceinline] = ACTIONS(3684), - [anon_sym_thread_local] = ACTIONS(3684), - [anon_sym___thread] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_constexpr] = ACTIONS(3684), - [anon_sym_volatile] = ACTIONS(3684), - [anon_sym_restrict] = ACTIONS(3684), - [anon_sym___restrict__] = ACTIONS(3684), - [anon_sym__Atomic] = ACTIONS(3684), - [anon_sym__Noreturn] = ACTIONS(3684), - [anon_sym_noreturn] = ACTIONS(3684), - [anon_sym__Nonnull] = ACTIONS(3684), - [anon_sym_mutable] = ACTIONS(3684), - [anon_sym_constinit] = ACTIONS(3684), - [anon_sym_consteval] = ACTIONS(3684), - [anon_sym_alignas] = ACTIONS(3684), - [anon_sym__Alignas] = ACTIONS(3684), - [sym_primitive_type] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_struct] = ACTIONS(3684), - [anon_sym_union] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_case] = ACTIONS(3684), - [anon_sym_default] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_goto] = ACTIONS(3684), - [anon_sym___try] = ACTIONS(3684), - [anon_sym___leave] = ACTIONS(3684), - [anon_sym_not] = ACTIONS(3684), - [anon_sym_compl] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_sizeof] = ACTIONS(3684), - [anon_sym___alignof__] = ACTIONS(3684), - [anon_sym___alignof] = ACTIONS(3684), - [anon_sym__alignof] = ACTIONS(3684), - [anon_sym_alignof] = ACTIONS(3684), - [anon_sym__Alignof] = ACTIONS(3684), - [anon_sym_offsetof] = ACTIONS(3684), - [anon_sym__Generic] = ACTIONS(3684), - [anon_sym_typename] = ACTIONS(3684), - [anon_sym_asm] = ACTIONS(3684), - [anon_sym___asm__] = ACTIONS(3684), - [anon_sym___asm] = ACTIONS(3684), - [sym_number_literal] = ACTIONS(3686), - [anon_sym_L_SQUOTE] = ACTIONS(3686), - [anon_sym_u_SQUOTE] = ACTIONS(3686), - [anon_sym_U_SQUOTE] = ACTIONS(3686), - [anon_sym_u8_SQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_L_DQUOTE] = ACTIONS(3686), - [anon_sym_u_DQUOTE] = ACTIONS(3686), - [anon_sym_U_DQUOTE] = ACTIONS(3686), - [anon_sym_u8_DQUOTE] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [anon_sym_NULL] = ACTIONS(3684), - [anon_sym_nullptr] = ACTIONS(3684), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3684), - [anon_sym_decltype] = ACTIONS(3684), - [anon_sym_explicit] = ACTIONS(3684), - [anon_sym_export] = ACTIONS(3684), - [anon_sym_module] = ACTIONS(3684), - [anon_sym_import] = ACTIONS(3684), - [anon_sym_template] = ACTIONS(3684), - [anon_sym_operator] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_static_assert] = ACTIONS(3684), - [anon_sym_concept] = ACTIONS(3684), - [anon_sym_co_return] = ACTIONS(3684), - [anon_sym_co_yield] = ACTIONS(3684), - [anon_sym_R_DQUOTE] = ACTIONS(3686), - [anon_sym_LR_DQUOTE] = ACTIONS(3686), - [anon_sym_uR_DQUOTE] = ACTIONS(3686), - [anon_sym_UR_DQUOTE] = ACTIONS(3686), - [anon_sym_u8R_DQUOTE] = ACTIONS(3686), - [anon_sym_co_await] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_requires] = ACTIONS(3684), - [anon_sym_CARET_CARET] = ACTIONS(3686), - [anon_sym_LBRACK_COLON] = ACTIONS(3686), - [sym_this] = ACTIONS(3684), + [sym_identifier] = ACTIONS(3686), + [aux_sym_preproc_include_token1] = ACTIONS(3686), + [aux_sym_preproc_def_token1] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3686), + [aux_sym_preproc_if_token2] = ACTIONS(3686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3686), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3686), + [aux_sym_preproc_else_token1] = ACTIONS(3686), + [aux_sym_preproc_elif_token1] = ACTIONS(3686), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3686), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3686), + [sym_preproc_directive] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3688), + [anon_sym_BANG] = ACTIONS(3688), + [anon_sym_TILDE] = ACTIONS(3688), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_AMP_AMP] = ACTIONS(3688), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3688), + [anon_sym___extension__] = ACTIONS(3686), + [anon_sym_typedef] = ACTIONS(3686), + [anon_sym_virtual] = ACTIONS(3686), + [anon_sym_extern] = ACTIONS(3686), + [anon_sym___attribute__] = ACTIONS(3686), + [anon_sym___attribute] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3688), + [anon_sym___declspec] = ACTIONS(3686), + [anon_sym___based] = ACTIONS(3686), + [anon_sym___cdecl] = ACTIONS(3686), + [anon_sym___clrcall] = ACTIONS(3686), + [anon_sym___stdcall] = ACTIONS(3686), + [anon_sym___fastcall] = ACTIONS(3686), + [anon_sym___thiscall] = ACTIONS(3686), + [anon_sym___vectorcall] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3688), + [anon_sym_signed] = ACTIONS(3686), + [anon_sym_unsigned] = ACTIONS(3686), + [anon_sym_long] = ACTIONS(3686), + [anon_sym_short] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_register] = ACTIONS(3686), + [anon_sym_inline] = ACTIONS(3686), + [anon_sym___inline] = ACTIONS(3686), + [anon_sym___inline__] = ACTIONS(3686), + [anon_sym___forceinline] = ACTIONS(3686), + [anon_sym_thread_local] = ACTIONS(3686), + [anon_sym___thread] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_constexpr] = ACTIONS(3686), + [anon_sym_volatile] = ACTIONS(3686), + [anon_sym_restrict] = ACTIONS(3686), + [anon_sym___restrict__] = ACTIONS(3686), + [anon_sym__Atomic] = ACTIONS(3686), + [anon_sym__Noreturn] = ACTIONS(3686), + [anon_sym_noreturn] = ACTIONS(3686), + [anon_sym__Nonnull] = ACTIONS(3686), + [anon_sym_mutable] = ACTIONS(3686), + [anon_sym_constinit] = ACTIONS(3686), + [anon_sym_consteval] = ACTIONS(3686), + [anon_sym_alignas] = ACTIONS(3686), + [anon_sym__Alignas] = ACTIONS(3686), + [sym_primitive_type] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_struct] = ACTIONS(3686), + [anon_sym_union] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_case] = ACTIONS(3686), + [anon_sym_default] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_goto] = ACTIONS(3686), + [anon_sym___try] = ACTIONS(3686), + [anon_sym___leave] = ACTIONS(3686), + [anon_sym_not] = ACTIONS(3686), + [anon_sym_compl] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3688), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_sizeof] = ACTIONS(3686), + [anon_sym___alignof__] = ACTIONS(3686), + [anon_sym___alignof] = ACTIONS(3686), + [anon_sym__alignof] = ACTIONS(3686), + [anon_sym_alignof] = ACTIONS(3686), + [anon_sym__Alignof] = ACTIONS(3686), + [anon_sym_offsetof] = ACTIONS(3686), + [anon_sym__Generic] = ACTIONS(3686), + [anon_sym_typename] = ACTIONS(3686), + [anon_sym_asm] = ACTIONS(3686), + [anon_sym___asm__] = ACTIONS(3686), + [anon_sym___asm] = ACTIONS(3686), + [sym_number_literal] = ACTIONS(3688), + [anon_sym_L_SQUOTE] = ACTIONS(3688), + [anon_sym_u_SQUOTE] = ACTIONS(3688), + [anon_sym_U_SQUOTE] = ACTIONS(3688), + [anon_sym_u8_SQUOTE] = ACTIONS(3688), + [anon_sym_SQUOTE] = ACTIONS(3688), + [anon_sym_L_DQUOTE] = ACTIONS(3688), + [anon_sym_u_DQUOTE] = ACTIONS(3688), + [anon_sym_U_DQUOTE] = ACTIONS(3688), + [anon_sym_u8_DQUOTE] = ACTIONS(3688), + [anon_sym_DQUOTE] = ACTIONS(3688), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [anon_sym_NULL] = ACTIONS(3686), + [anon_sym_nullptr] = ACTIONS(3686), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3686), + [anon_sym_decltype] = ACTIONS(3686), + [anon_sym_explicit] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_template] = ACTIONS(3686), + [anon_sym_operator] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_static_assert] = ACTIONS(3686), + [anon_sym_concept] = ACTIONS(3686), + [anon_sym_co_return] = ACTIONS(3686), + [anon_sym_co_yield] = ACTIONS(3686), + [anon_sym_R_DQUOTE] = ACTIONS(3688), + [anon_sym_LR_DQUOTE] = ACTIONS(3688), + [anon_sym_uR_DQUOTE] = ACTIONS(3688), + [anon_sym_UR_DQUOTE] = ACTIONS(3688), + [anon_sym_u8R_DQUOTE] = ACTIONS(3688), + [anon_sym_co_await] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_requires] = ACTIONS(3686), + [anon_sym_CARET_CARET] = ACTIONS(3688), + [anon_sym_LBRACK_COLON] = ACTIONS(3688), + [sym_this] = ACTIONS(3686), }, [STATE(391)] = { - [sym_type_qualifier] = STATE(5177), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(3585), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(6890), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(5965), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7943), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(4088), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [aux_sym__type_definition_type_repeat1] = STATE(5177), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3688), - [anon_sym_LPAREN2] = ACTIONS(3690), + [sym_identifier] = ACTIONS(3690), + [aux_sym_preproc_include_token1] = ACTIONS(3690), + [aux_sym_preproc_def_token1] = ACTIONS(3690), + [aux_sym_preproc_if_token1] = ACTIONS(3690), + [aux_sym_preproc_if_token2] = ACTIONS(3690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3690), + [aux_sym_preproc_else_token1] = ACTIONS(3690), + [aux_sym_preproc_elif_token1] = ACTIONS(3690), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3690), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3690), + [sym_preproc_directive] = ACTIONS(3690), + [anon_sym_LPAREN2] = ACTIONS(3692), [anon_sym_BANG] = ACTIONS(3692), [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym___extension__] = ACTIONS(3690), + [anon_sym_typedef] = ACTIONS(3690), + [anon_sym_virtual] = ACTIONS(3690), + [anon_sym_extern] = ACTIONS(3690), + [anon_sym___attribute__] = ACTIONS(3690), + [anon_sym___attribute] = ACTIONS(3690), + [anon_sym_using] = ACTIONS(3690), + [anon_sym_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3692), + [anon_sym___declspec] = ACTIONS(3690), + [anon_sym___based] = ACTIONS(3690), + [anon_sym___cdecl] = ACTIONS(3690), + [anon_sym___clrcall] = ACTIONS(3690), + [anon_sym___stdcall] = ACTIONS(3690), + [anon_sym___fastcall] = ACTIONS(3690), + [anon_sym___thiscall] = ACTIONS(3690), + [anon_sym___vectorcall] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_signed] = ACTIONS(3690), + [anon_sym_unsigned] = ACTIONS(3690), + [anon_sym_long] = ACTIONS(3690), + [anon_sym_short] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_register] = ACTIONS(3690), + [anon_sym_inline] = ACTIONS(3690), + [anon_sym___inline] = ACTIONS(3690), + [anon_sym___inline__] = ACTIONS(3690), + [anon_sym___forceinline] = ACTIONS(3690), + [anon_sym_thread_local] = ACTIONS(3690), + [anon_sym___thread] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_constexpr] = ACTIONS(3690), + [anon_sym_volatile] = ACTIONS(3690), + [anon_sym_restrict] = ACTIONS(3690), + [anon_sym___restrict__] = ACTIONS(3690), + [anon_sym__Atomic] = ACTIONS(3690), + [anon_sym__Noreturn] = ACTIONS(3690), + [anon_sym_noreturn] = ACTIONS(3690), + [anon_sym__Nonnull] = ACTIONS(3690), + [anon_sym_mutable] = ACTIONS(3690), + [anon_sym_constinit] = ACTIONS(3690), + [anon_sym_consteval] = ACTIONS(3690), + [anon_sym_alignas] = ACTIONS(3690), + [anon_sym__Alignas] = ACTIONS(3690), + [sym_primitive_type] = ACTIONS(3690), + [anon_sym_enum] = ACTIONS(3690), + [anon_sym_class] = ACTIONS(3690), + [anon_sym_struct] = ACTIONS(3690), + [anon_sym_union] = ACTIONS(3690), + [anon_sym_if] = ACTIONS(3690), + [anon_sym_switch] = ACTIONS(3690), + [anon_sym_case] = ACTIONS(3690), + [anon_sym_default] = ACTIONS(3690), + [anon_sym_while] = ACTIONS(3690), + [anon_sym_do] = ACTIONS(3690), + [anon_sym_for] = ACTIONS(3690), + [anon_sym_return] = ACTIONS(3690), + [anon_sym_break] = ACTIONS(3690), + [anon_sym_continue] = ACTIONS(3690), + [anon_sym_goto] = ACTIONS(3690), + [anon_sym___try] = ACTIONS(3690), + [anon_sym___leave] = ACTIONS(3690), + [anon_sym_not] = ACTIONS(3690), + [anon_sym_compl] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_sizeof] = ACTIONS(3690), + [anon_sym___alignof__] = ACTIONS(3690), + [anon_sym___alignof] = ACTIONS(3690), + [anon_sym__alignof] = ACTIONS(3690), + [anon_sym_alignof] = ACTIONS(3690), + [anon_sym__Alignof] = ACTIONS(3690), + [anon_sym_offsetof] = ACTIONS(3690), + [anon_sym__Generic] = ACTIONS(3690), + [anon_sym_typename] = ACTIONS(3690), + [anon_sym_asm] = ACTIONS(3690), + [anon_sym___asm__] = ACTIONS(3690), + [anon_sym___asm] = ACTIONS(3690), + [sym_number_literal] = ACTIONS(3692), + [anon_sym_L_SQUOTE] = ACTIONS(3692), + [anon_sym_u_SQUOTE] = ACTIONS(3692), + [anon_sym_U_SQUOTE] = ACTIONS(3692), + [anon_sym_u8_SQUOTE] = ACTIONS(3692), + [anon_sym_SQUOTE] = ACTIONS(3692), + [anon_sym_L_DQUOTE] = ACTIONS(3692), + [anon_sym_u_DQUOTE] = ACTIONS(3692), + [anon_sym_U_DQUOTE] = ACTIONS(3692), + [anon_sym_u8_DQUOTE] = ACTIONS(3692), + [anon_sym_DQUOTE] = ACTIONS(3692), + [sym_true] = ACTIONS(3690), + [sym_false] = ACTIONS(3690), + [anon_sym_NULL] = ACTIONS(3690), + [anon_sym_nullptr] = ACTIONS(3690), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3690), + [anon_sym_decltype] = ACTIONS(3690), + [anon_sym_explicit] = ACTIONS(3690), + [anon_sym_export] = ACTIONS(3690), + [anon_sym_module] = ACTIONS(3690), + [anon_sym_import] = ACTIONS(3690), + [anon_sym_template] = ACTIONS(3690), + [anon_sym_operator] = ACTIONS(3690), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_delete] = ACTIONS(3690), + [anon_sym_throw] = ACTIONS(3690), + [anon_sym_namespace] = ACTIONS(3690), + [anon_sym_static_assert] = ACTIONS(3690), + [anon_sym_concept] = ACTIONS(3690), + [anon_sym_co_return] = ACTIONS(3690), + [anon_sym_co_yield] = ACTIONS(3690), + [anon_sym_R_DQUOTE] = ACTIONS(3692), + [anon_sym_LR_DQUOTE] = ACTIONS(3692), + [anon_sym_uR_DQUOTE] = ACTIONS(3692), + [anon_sym_UR_DQUOTE] = ACTIONS(3692), + [anon_sym_u8R_DQUOTE] = ACTIONS(3692), + [anon_sym_co_await] = ACTIONS(3690), + [anon_sym_new] = ACTIONS(3690), + [anon_sym_requires] = ACTIONS(3690), + [anon_sym_CARET_CARET] = ACTIONS(3692), + [anon_sym_LBRACK_COLON] = ACTIONS(3692), + [sym_this] = ACTIONS(3690), + }, + [STATE(392)] = { + [sym_identifier] = ACTIONS(3694), + [aux_sym_preproc_include_token1] = ACTIONS(3694), + [aux_sym_preproc_def_token1] = ACTIONS(3694), + [aux_sym_preproc_if_token1] = ACTIONS(3694), + [aux_sym_preproc_if_token2] = ACTIONS(3694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3694), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3694), + [aux_sym_preproc_else_token1] = ACTIONS(3694), + [aux_sym_preproc_elif_token1] = ACTIONS(3694), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3694), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3694), + [sym_preproc_directive] = ACTIONS(3694), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3696), [anon_sym_DASH] = ACTIONS(3694), [anon_sym_PLUS] = ACTIONS(3694), [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3694), + [anon_sym_typedef] = ACTIONS(3694), + [anon_sym_virtual] = ACTIONS(3694), + [anon_sym_extern] = ACTIONS(3694), + [anon_sym___attribute__] = ACTIONS(3694), + [anon_sym___attribute] = ACTIONS(3694), + [anon_sym_using] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3696), + [anon_sym___declspec] = ACTIONS(3694), + [anon_sym___based] = ACTIONS(3694), + [anon_sym___cdecl] = ACTIONS(3694), + [anon_sym___clrcall] = ACTIONS(3694), + [anon_sym___stdcall] = ACTIONS(3694), + [anon_sym___fastcall] = ACTIONS(3694), + [anon_sym___thiscall] = ACTIONS(3694), + [anon_sym___vectorcall] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_signed] = ACTIONS(3694), + [anon_sym_unsigned] = ACTIONS(3694), + [anon_sym_long] = ACTIONS(3694), + [anon_sym_short] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_static] = ACTIONS(3694), + [anon_sym_register] = ACTIONS(3694), + [anon_sym_inline] = ACTIONS(3694), + [anon_sym___inline] = ACTIONS(3694), + [anon_sym___inline__] = ACTIONS(3694), + [anon_sym___forceinline] = ACTIONS(3694), + [anon_sym_thread_local] = ACTIONS(3694), + [anon_sym___thread] = ACTIONS(3694), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_constexpr] = ACTIONS(3694), + [anon_sym_volatile] = ACTIONS(3694), + [anon_sym_restrict] = ACTIONS(3694), + [anon_sym___restrict__] = ACTIONS(3694), + [anon_sym__Atomic] = ACTIONS(3694), + [anon_sym__Noreturn] = ACTIONS(3694), + [anon_sym_noreturn] = ACTIONS(3694), + [anon_sym__Nonnull] = ACTIONS(3694), + [anon_sym_mutable] = ACTIONS(3694), + [anon_sym_constinit] = ACTIONS(3694), + [anon_sym_consteval] = ACTIONS(3694), + [anon_sym_alignas] = ACTIONS(3694), + [anon_sym__Alignas] = ACTIONS(3694), + [sym_primitive_type] = ACTIONS(3694), + [anon_sym_enum] = ACTIONS(3694), + [anon_sym_class] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(3694), + [anon_sym_union] = ACTIONS(3694), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_case] = ACTIONS(3694), + [anon_sym_default] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3694), + [anon_sym_do] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(3694), + [anon_sym_break] = ACTIONS(3694), + [anon_sym_continue] = ACTIONS(3694), + [anon_sym_goto] = ACTIONS(3694), + [anon_sym___try] = ACTIONS(3694), + [anon_sym___leave] = ACTIONS(3694), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3696), + [anon_sym_sizeof] = ACTIONS(3694), + [anon_sym___alignof__] = ACTIONS(3694), + [anon_sym___alignof] = ACTIONS(3694), + [anon_sym__alignof] = ACTIONS(3694), + [anon_sym_alignof] = ACTIONS(3694), + [anon_sym__Alignof] = ACTIONS(3694), + [anon_sym_offsetof] = ACTIONS(3694), + [anon_sym__Generic] = ACTIONS(3694), + [anon_sym_typename] = ACTIONS(3694), + [anon_sym_asm] = ACTIONS(3694), + [anon_sym___asm__] = ACTIONS(3694), + [anon_sym___asm] = ACTIONS(3694), + [sym_number_literal] = ACTIONS(3696), + [anon_sym_L_SQUOTE] = ACTIONS(3696), + [anon_sym_u_SQUOTE] = ACTIONS(3696), + [anon_sym_U_SQUOTE] = ACTIONS(3696), + [anon_sym_u8_SQUOTE] = ACTIONS(3696), + [anon_sym_SQUOTE] = ACTIONS(3696), + [anon_sym_L_DQUOTE] = ACTIONS(3696), + [anon_sym_u_DQUOTE] = ACTIONS(3696), + [anon_sym_U_DQUOTE] = ACTIONS(3696), + [anon_sym_u8_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [sym_true] = ACTIONS(3694), + [sym_false] = ACTIONS(3694), + [anon_sym_NULL] = ACTIONS(3694), + [anon_sym_nullptr] = ACTIONS(3694), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3694), + [anon_sym_decltype] = ACTIONS(3694), + [anon_sym_explicit] = ACTIONS(3694), + [anon_sym_export] = ACTIONS(3694), + [anon_sym_module] = ACTIONS(3694), + [anon_sym_import] = ACTIONS(3694), + [anon_sym_template] = ACTIONS(3694), + [anon_sym_operator] = ACTIONS(3694), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_delete] = ACTIONS(3694), + [anon_sym_throw] = ACTIONS(3694), + [anon_sym_namespace] = ACTIONS(3694), + [anon_sym_static_assert] = ACTIONS(3694), + [anon_sym_concept] = ACTIONS(3694), + [anon_sym_co_return] = ACTIONS(3694), + [anon_sym_co_yield] = ACTIONS(3694), + [anon_sym_R_DQUOTE] = ACTIONS(3696), + [anon_sym_LR_DQUOTE] = ACTIONS(3696), + [anon_sym_uR_DQUOTE] = ACTIONS(3696), + [anon_sym_UR_DQUOTE] = ACTIONS(3696), + [anon_sym_u8R_DQUOTE] = ACTIONS(3696), + [anon_sym_co_await] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3694), + [anon_sym_requires] = ACTIONS(3694), + [anon_sym_CARET_CARET] = ACTIONS(3696), + [anon_sym_LBRACK_COLON] = ACTIONS(3696), + [sym_this] = ACTIONS(3694), + }, + [STATE(393)] = { + [sym_identifier] = ACTIONS(3698), + [aux_sym_preproc_include_token1] = ACTIONS(3698), + [aux_sym_preproc_def_token1] = ACTIONS(3698), + [aux_sym_preproc_if_token1] = ACTIONS(3698), + [aux_sym_preproc_if_token2] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3698), + [aux_sym_preproc_else_token1] = ACTIONS(3698), + [aux_sym_preproc_elif_token1] = ACTIONS(3698), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3698), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3698), + [sym_preproc_directive] = ACTIONS(3698), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3700), [anon_sym___extension__] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym___attribute__] = ACTIONS(3698), + [anon_sym___attribute] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), [anon_sym_COLON_COLON] = ACTIONS(3700), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym___declspec] = ACTIONS(3698), + [anon_sym___based] = ACTIONS(3698), + [anon_sym___cdecl] = ACTIONS(3698), + [anon_sym___clrcall] = ACTIONS(3698), + [anon_sym___stdcall] = ACTIONS(3698), + [anon_sym___fastcall] = ACTIONS(3698), + [anon_sym___thiscall] = ACTIONS(3698), + [anon_sym___vectorcall] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_signed] = ACTIONS(3698), + [anon_sym_unsigned] = ACTIONS(3698), + [anon_sym_long] = ACTIONS(3698), + [anon_sym_short] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym___inline] = ACTIONS(3698), + [anon_sym___inline__] = ACTIONS(3698), + [anon_sym___forceinline] = ACTIONS(3698), + [anon_sym_thread_local] = ACTIONS(3698), + [anon_sym___thread] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_restrict] = ACTIONS(3698), + [anon_sym___restrict__] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym__Noreturn] = ACTIONS(3698), + [anon_sym_noreturn] = ACTIONS(3698), + [anon_sym__Nonnull] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_constinit] = ACTIONS(3698), + [anon_sym_consteval] = ACTIONS(3698), + [anon_sym_alignas] = ACTIONS(3698), + [anon_sym__Alignas] = ACTIONS(3698), + [sym_primitive_type] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_struct] = ACTIONS(3698), + [anon_sym_union] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_case] = ACTIONS(3698), + [anon_sym_default] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_goto] = ACTIONS(3698), + [anon_sym___try] = ACTIONS(3698), + [anon_sym___leave] = ACTIONS(3698), + [anon_sym_not] = ACTIONS(3698), + [anon_sym_compl] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_sizeof] = ACTIONS(3698), + [anon_sym___alignof__] = ACTIONS(3698), + [anon_sym___alignof] = ACTIONS(3698), + [anon_sym__alignof] = ACTIONS(3698), + [anon_sym_alignof] = ACTIONS(3698), + [anon_sym__Alignof] = ACTIONS(3698), + [anon_sym_offsetof] = ACTIONS(3698), + [anon_sym__Generic] = ACTIONS(3698), + [anon_sym_typename] = ACTIONS(3698), + [anon_sym_asm] = ACTIONS(3698), + [anon_sym___asm__] = ACTIONS(3698), + [anon_sym___asm] = ACTIONS(3698), + [sym_number_literal] = ACTIONS(3700), + [anon_sym_L_SQUOTE] = ACTIONS(3700), + [anon_sym_u_SQUOTE] = ACTIONS(3700), + [anon_sym_U_SQUOTE] = ACTIONS(3700), + [anon_sym_u8_SQUOTE] = ACTIONS(3700), + [anon_sym_SQUOTE] = ACTIONS(3700), + [anon_sym_L_DQUOTE] = ACTIONS(3700), + [anon_sym_u_DQUOTE] = ACTIONS(3700), + [anon_sym_U_DQUOTE] = ACTIONS(3700), + [anon_sym_u8_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [anon_sym_NULL] = ACTIONS(3698), + [anon_sym_nullptr] = ACTIONS(3698), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(3698), + [anon_sym_explicit] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_module] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_operator] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_static_assert] = ACTIONS(3698), + [anon_sym_concept] = ACTIONS(3698), + [anon_sym_co_return] = ACTIONS(3698), + [anon_sym_co_yield] = ACTIONS(3698), + [anon_sym_R_DQUOTE] = ACTIONS(3700), + [anon_sym_LR_DQUOTE] = ACTIONS(3700), + [anon_sym_uR_DQUOTE] = ACTIONS(3700), + [anon_sym_UR_DQUOTE] = ACTIONS(3700), + [anon_sym_u8R_DQUOTE] = ACTIONS(3700), + [anon_sym_co_await] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_requires] = ACTIONS(3698), + [anon_sym_CARET_CARET] = ACTIONS(3700), + [anon_sym_LBRACK_COLON] = ACTIONS(3700), + [sym_this] = ACTIONS(3698), + }, + [STATE(394)] = { + [sym_identifier] = ACTIONS(3702), + [aux_sym_preproc_include_token1] = ACTIONS(3702), + [aux_sym_preproc_def_token1] = ACTIONS(3702), + [aux_sym_preproc_if_token1] = ACTIONS(3702), + [aux_sym_preproc_if_token2] = ACTIONS(3702), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3702), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3702), + [aux_sym_preproc_else_token1] = ACTIONS(3702), + [aux_sym_preproc_elif_token1] = ACTIONS(3702), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3702), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3702), + [sym_preproc_directive] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3704), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_TILDE] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3704), + [anon_sym___extension__] = ACTIONS(3702), + [anon_sym_typedef] = ACTIONS(3702), + [anon_sym_virtual] = ACTIONS(3702), + [anon_sym_extern] = ACTIONS(3702), + [anon_sym___attribute__] = ACTIONS(3702), + [anon_sym___attribute] = ACTIONS(3702), + [anon_sym_using] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3704), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3704), + [anon_sym___declspec] = ACTIONS(3702), + [anon_sym___based] = ACTIONS(3702), + [anon_sym___cdecl] = ACTIONS(3702), + [anon_sym___clrcall] = ACTIONS(3702), + [anon_sym___stdcall] = ACTIONS(3702), + [anon_sym___fastcall] = ACTIONS(3702), + [anon_sym___thiscall] = ACTIONS(3702), + [anon_sym___vectorcall] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3704), + [anon_sym_signed] = ACTIONS(3702), + [anon_sym_unsigned] = ACTIONS(3702), + [anon_sym_long] = ACTIONS(3702), + [anon_sym_short] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_static] = ACTIONS(3702), + [anon_sym_register] = ACTIONS(3702), + [anon_sym_inline] = ACTIONS(3702), + [anon_sym___inline] = ACTIONS(3702), + [anon_sym___inline__] = ACTIONS(3702), + [anon_sym___forceinline] = ACTIONS(3702), + [anon_sym_thread_local] = ACTIONS(3702), + [anon_sym___thread] = ACTIONS(3702), + [anon_sym_const] = ACTIONS(3702), + [anon_sym_constexpr] = ACTIONS(3702), + [anon_sym_volatile] = ACTIONS(3702), + [anon_sym_restrict] = ACTIONS(3702), + [anon_sym___restrict__] = ACTIONS(3702), + [anon_sym__Atomic] = ACTIONS(3702), + [anon_sym__Noreturn] = ACTIONS(3702), + [anon_sym_noreturn] = ACTIONS(3702), + [anon_sym__Nonnull] = ACTIONS(3702), + [anon_sym_mutable] = ACTIONS(3702), + [anon_sym_constinit] = ACTIONS(3702), + [anon_sym_consteval] = ACTIONS(3702), + [anon_sym_alignas] = ACTIONS(3702), + [anon_sym__Alignas] = ACTIONS(3702), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(3702), + [anon_sym_class] = ACTIONS(3702), + [anon_sym_struct] = ACTIONS(3702), + [anon_sym_union] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_case] = ACTIONS(3702), + [anon_sym_default] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_break] = ACTIONS(3702), + [anon_sym_continue] = ACTIONS(3702), + [anon_sym_goto] = ACTIONS(3702), + [anon_sym___try] = ACTIONS(3702), + [anon_sym___leave] = ACTIONS(3702), + [anon_sym_not] = ACTIONS(3702), + [anon_sym_compl] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3704), + [anon_sym_sizeof] = ACTIONS(3702), + [anon_sym___alignof__] = ACTIONS(3702), + [anon_sym___alignof] = ACTIONS(3702), + [anon_sym__alignof] = ACTIONS(3702), + [anon_sym_alignof] = ACTIONS(3702), + [anon_sym__Alignof] = ACTIONS(3702), + [anon_sym_offsetof] = ACTIONS(3702), + [anon_sym__Generic] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3702), + [anon_sym_asm] = ACTIONS(3702), + [anon_sym___asm__] = ACTIONS(3702), + [anon_sym___asm] = ACTIONS(3702), + [sym_number_literal] = ACTIONS(3704), + [anon_sym_L_SQUOTE] = ACTIONS(3704), + [anon_sym_u_SQUOTE] = ACTIONS(3704), + [anon_sym_U_SQUOTE] = ACTIONS(3704), + [anon_sym_u8_SQUOTE] = ACTIONS(3704), + [anon_sym_SQUOTE] = ACTIONS(3704), + [anon_sym_L_DQUOTE] = ACTIONS(3704), + [anon_sym_u_DQUOTE] = ACTIONS(3704), + [anon_sym_U_DQUOTE] = ACTIONS(3704), + [anon_sym_u8_DQUOTE] = ACTIONS(3704), + [anon_sym_DQUOTE] = ACTIONS(3704), + [sym_true] = ACTIONS(3702), + [sym_false] = ACTIONS(3702), + [anon_sym_NULL] = ACTIONS(3702), + [anon_sym_nullptr] = ACTIONS(3702), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3702), + [anon_sym_decltype] = ACTIONS(3702), + [anon_sym_explicit] = ACTIONS(3702), + [anon_sym_export] = ACTIONS(3702), + [anon_sym_module] = ACTIONS(3702), + [anon_sym_import] = ACTIONS(3702), + [anon_sym_template] = ACTIONS(3702), + [anon_sym_operator] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_delete] = ACTIONS(3702), + [anon_sym_throw] = ACTIONS(3702), + [anon_sym_namespace] = ACTIONS(3702), + [anon_sym_static_assert] = ACTIONS(3702), + [anon_sym_concept] = ACTIONS(3702), + [anon_sym_co_return] = ACTIONS(3702), + [anon_sym_co_yield] = ACTIONS(3702), + [anon_sym_R_DQUOTE] = ACTIONS(3704), + [anon_sym_LR_DQUOTE] = ACTIONS(3704), + [anon_sym_uR_DQUOTE] = ACTIONS(3704), + [anon_sym_UR_DQUOTE] = ACTIONS(3704), + [anon_sym_u8R_DQUOTE] = ACTIONS(3704), + [anon_sym_co_await] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_requires] = ACTIONS(3702), + [anon_sym_CARET_CARET] = ACTIONS(3704), + [anon_sym_LBRACK_COLON] = ACTIONS(3704), + [sym_this] = ACTIONS(3702), + }, + [STATE(395)] = { + [sym_identifier] = ACTIONS(3706), + [aux_sym_preproc_include_token1] = ACTIONS(3706), + [aux_sym_preproc_def_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token2] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3706), + [aux_sym_preproc_else_token1] = ACTIONS(3706), + [aux_sym_preproc_elif_token1] = ACTIONS(3706), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3706), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3706), + [sym_preproc_directive] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym___extension__] = ACTIONS(3706), + [anon_sym_typedef] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym___attribute] = ACTIONS(3706), + [anon_sym_using] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym___cdecl] = ACTIONS(3706), + [anon_sym___clrcall] = ACTIONS(3706), + [anon_sym___stdcall] = ACTIONS(3706), + [anon_sym___fastcall] = ACTIONS(3706), + [anon_sym___thiscall] = ACTIONS(3706), + [anon_sym___vectorcall] = ACTIONS(3706), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_signed] = ACTIONS(3706), + [anon_sym_unsigned] = ACTIONS(3706), + [anon_sym_long] = ACTIONS(3706), + [anon_sym_short] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym___inline] = ACTIONS(3706), + [anon_sym___inline__] = ACTIONS(3706), + [anon_sym___forceinline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym___thread] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym___restrict__] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym__Noreturn] = ACTIONS(3706), + [anon_sym_noreturn] = ACTIONS(3706), + [anon_sym__Nonnull] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_alignas] = ACTIONS(3706), + [anon_sym__Alignas] = ACTIONS(3706), + [sym_primitive_type] = ACTIONS(3706), + [anon_sym_enum] = ACTIONS(3706), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3706), + [anon_sym_union] = ACTIONS(3706), + [anon_sym_if] = ACTIONS(3706), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_case] = ACTIONS(3706), + [anon_sym_default] = ACTIONS(3706), + [anon_sym_while] = ACTIONS(3706), + [anon_sym_do] = ACTIONS(3706), + [anon_sym_for] = ACTIONS(3706), + [anon_sym_return] = ACTIONS(3706), + [anon_sym_break] = ACTIONS(3706), + [anon_sym_continue] = ACTIONS(3706), + [anon_sym_goto] = ACTIONS(3706), + [anon_sym___try] = ACTIONS(3706), + [anon_sym___leave] = ACTIONS(3706), + [anon_sym_not] = ACTIONS(3706), + [anon_sym_compl] = ACTIONS(3706), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_sizeof] = ACTIONS(3706), + [anon_sym___alignof__] = ACTIONS(3706), + [anon_sym___alignof] = ACTIONS(3706), + [anon_sym__alignof] = ACTIONS(3706), + [anon_sym_alignof] = ACTIONS(3706), + [anon_sym__Alignof] = ACTIONS(3706), + [anon_sym_offsetof] = ACTIONS(3706), + [anon_sym__Generic] = ACTIONS(3706), + [anon_sym_typename] = ACTIONS(3706), + [anon_sym_asm] = ACTIONS(3706), + [anon_sym___asm__] = ACTIONS(3706), + [anon_sym___asm] = ACTIONS(3706), + [sym_number_literal] = ACTIONS(3708), + [anon_sym_L_SQUOTE] = ACTIONS(3708), + [anon_sym_u_SQUOTE] = ACTIONS(3708), + [anon_sym_U_SQUOTE] = ACTIONS(3708), + [anon_sym_u8_SQUOTE] = ACTIONS(3708), + [anon_sym_SQUOTE] = ACTIONS(3708), + [anon_sym_L_DQUOTE] = ACTIONS(3708), + [anon_sym_u_DQUOTE] = ACTIONS(3708), + [anon_sym_U_DQUOTE] = ACTIONS(3708), + [anon_sym_u8_DQUOTE] = ACTIONS(3708), + [anon_sym_DQUOTE] = ACTIONS(3708), + [sym_true] = ACTIONS(3706), + [sym_false] = ACTIONS(3706), + [anon_sym_NULL] = ACTIONS(3706), + [anon_sym_nullptr] = ACTIONS(3706), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_explicit] = ACTIONS(3706), + [anon_sym_export] = ACTIONS(3706), + [anon_sym_module] = ACTIONS(3706), + [anon_sym_import] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + [anon_sym_try] = ACTIONS(3706), + [anon_sym_delete] = ACTIONS(3706), + [anon_sym_throw] = ACTIONS(3706), + [anon_sym_namespace] = ACTIONS(3706), + [anon_sym_static_assert] = ACTIONS(3706), + [anon_sym_concept] = ACTIONS(3706), + [anon_sym_co_return] = ACTIONS(3706), + [anon_sym_co_yield] = ACTIONS(3706), + [anon_sym_R_DQUOTE] = ACTIONS(3708), + [anon_sym_LR_DQUOTE] = ACTIONS(3708), + [anon_sym_uR_DQUOTE] = ACTIONS(3708), + [anon_sym_UR_DQUOTE] = ACTIONS(3708), + [anon_sym_u8R_DQUOTE] = ACTIONS(3708), + [anon_sym_co_await] = ACTIONS(3706), + [anon_sym_new] = ACTIONS(3706), + [anon_sym_requires] = ACTIONS(3706), + [anon_sym_CARET_CARET] = ACTIONS(3708), + [anon_sym_LBRACK_COLON] = ACTIONS(3708), + [sym_this] = ACTIONS(3706), + }, + [STATE(396)] = { + [sym_identifier] = ACTIONS(3710), + [aux_sym_preproc_include_token1] = ACTIONS(3710), + [aux_sym_preproc_def_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token2] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3710), + [aux_sym_preproc_else_token1] = ACTIONS(3710), + [aux_sym_preproc_elif_token1] = ACTIONS(3710), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3710), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3710), + [sym_preproc_directive] = ACTIONS(3710), + [anon_sym_LPAREN2] = ACTIONS(3712), + [anon_sym_BANG] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_AMP] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(3712), + [anon_sym___extension__] = ACTIONS(3710), + [anon_sym_typedef] = ACTIONS(3710), + [anon_sym_virtual] = ACTIONS(3710), + [anon_sym_extern] = ACTIONS(3710), + [anon_sym___attribute__] = ACTIONS(3710), + [anon_sym___attribute] = ACTIONS(3710), + [anon_sym_using] = ACTIONS(3710), + [anon_sym_COLON_COLON] = ACTIONS(3712), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3712), + [anon_sym___declspec] = ACTIONS(3710), + [anon_sym___based] = ACTIONS(3710), + [anon_sym___cdecl] = ACTIONS(3710), + [anon_sym___clrcall] = ACTIONS(3710), + [anon_sym___stdcall] = ACTIONS(3710), + [anon_sym___fastcall] = ACTIONS(3710), + [anon_sym___thiscall] = ACTIONS(3710), + [anon_sym___vectorcall] = ACTIONS(3710), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_signed] = ACTIONS(3710), + [anon_sym_unsigned] = ACTIONS(3710), + [anon_sym_long] = ACTIONS(3710), + [anon_sym_short] = ACTIONS(3710), + [anon_sym_LBRACK] = ACTIONS(3710), + [anon_sym_static] = ACTIONS(3710), + [anon_sym_register] = ACTIONS(3710), + [anon_sym_inline] = ACTIONS(3710), + [anon_sym___inline] = ACTIONS(3710), + [anon_sym___inline__] = ACTIONS(3710), + [anon_sym___forceinline] = ACTIONS(3710), + [anon_sym_thread_local] = ACTIONS(3710), + [anon_sym___thread] = ACTIONS(3710), + [anon_sym_const] = ACTIONS(3710), + [anon_sym_constexpr] = ACTIONS(3710), + [anon_sym_volatile] = ACTIONS(3710), + [anon_sym_restrict] = ACTIONS(3710), + [anon_sym___restrict__] = ACTIONS(3710), + [anon_sym__Atomic] = ACTIONS(3710), + [anon_sym__Noreturn] = ACTIONS(3710), + [anon_sym_noreturn] = ACTIONS(3710), + [anon_sym__Nonnull] = ACTIONS(3710), + [anon_sym_mutable] = ACTIONS(3710), + [anon_sym_constinit] = ACTIONS(3710), + [anon_sym_consteval] = ACTIONS(3710), + [anon_sym_alignas] = ACTIONS(3710), + [anon_sym__Alignas] = ACTIONS(3710), + [sym_primitive_type] = ACTIONS(3710), + [anon_sym_enum] = ACTIONS(3710), + [anon_sym_class] = ACTIONS(3710), + [anon_sym_struct] = ACTIONS(3710), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_if] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3710), + [anon_sym_case] = ACTIONS(3710), + [anon_sym_default] = ACTIONS(3710), + [anon_sym_while] = ACTIONS(3710), + [anon_sym_do] = ACTIONS(3710), + [anon_sym_for] = ACTIONS(3710), + [anon_sym_return] = ACTIONS(3710), + [anon_sym_break] = ACTIONS(3710), + [anon_sym_continue] = ACTIONS(3710), + [anon_sym_goto] = ACTIONS(3710), + [anon_sym___try] = ACTIONS(3710), + [anon_sym___leave] = ACTIONS(3710), + [anon_sym_not] = ACTIONS(3710), + [anon_sym_compl] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3710), + [anon_sym___alignof__] = ACTIONS(3710), + [anon_sym___alignof] = ACTIONS(3710), + [anon_sym__alignof] = ACTIONS(3710), + [anon_sym_alignof] = ACTIONS(3710), + [anon_sym__Alignof] = ACTIONS(3710), + [anon_sym_offsetof] = ACTIONS(3710), + [anon_sym__Generic] = ACTIONS(3710), + [anon_sym_typename] = ACTIONS(3710), + [anon_sym_asm] = ACTIONS(3710), + [anon_sym___asm__] = ACTIONS(3710), + [anon_sym___asm] = ACTIONS(3710), + [sym_number_literal] = ACTIONS(3712), + [anon_sym_L_SQUOTE] = ACTIONS(3712), + [anon_sym_u_SQUOTE] = ACTIONS(3712), + [anon_sym_U_SQUOTE] = ACTIONS(3712), + [anon_sym_u8_SQUOTE] = ACTIONS(3712), + [anon_sym_SQUOTE] = ACTIONS(3712), + [anon_sym_L_DQUOTE] = ACTIONS(3712), + [anon_sym_u_DQUOTE] = ACTIONS(3712), + [anon_sym_U_DQUOTE] = ACTIONS(3712), + [anon_sym_u8_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [sym_true] = ACTIONS(3710), + [sym_false] = ACTIONS(3710), + [anon_sym_NULL] = ACTIONS(3710), + [anon_sym_nullptr] = ACTIONS(3710), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3710), + [anon_sym_decltype] = ACTIONS(3710), + [anon_sym_explicit] = ACTIONS(3710), + [anon_sym_export] = ACTIONS(3710), + [anon_sym_module] = ACTIONS(3710), + [anon_sym_import] = ACTIONS(3710), + [anon_sym_template] = ACTIONS(3710), + [anon_sym_operator] = ACTIONS(3710), + [anon_sym_try] = ACTIONS(3710), + [anon_sym_delete] = ACTIONS(3710), + [anon_sym_throw] = ACTIONS(3710), + [anon_sym_namespace] = ACTIONS(3710), + [anon_sym_static_assert] = ACTIONS(3710), + [anon_sym_concept] = ACTIONS(3710), + [anon_sym_co_return] = ACTIONS(3710), + [anon_sym_co_yield] = ACTIONS(3710), + [anon_sym_R_DQUOTE] = ACTIONS(3712), + [anon_sym_LR_DQUOTE] = ACTIONS(3712), + [anon_sym_uR_DQUOTE] = ACTIONS(3712), + [anon_sym_UR_DQUOTE] = ACTIONS(3712), + [anon_sym_u8R_DQUOTE] = ACTIONS(3712), + [anon_sym_co_await] = ACTIONS(3710), + [anon_sym_new] = ACTIONS(3710), + [anon_sym_requires] = ACTIONS(3710), + [anon_sym_CARET_CARET] = ACTIONS(3712), + [anon_sym_LBRACK_COLON] = ACTIONS(3712), + [sym_this] = ACTIONS(3710), + }, + [STATE(397)] = { + [sym_identifier] = ACTIONS(3714), + [aux_sym_preproc_include_token1] = ACTIONS(3714), + [aux_sym_preproc_def_token1] = ACTIONS(3714), + [aux_sym_preproc_if_token1] = ACTIONS(3714), + [aux_sym_preproc_if_token2] = ACTIONS(3714), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3714), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3714), + [aux_sym_preproc_else_token1] = ACTIONS(3714), + [aux_sym_preproc_elif_token1] = ACTIONS(3714), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3714), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3714), + [sym_preproc_directive] = ACTIONS(3714), + [anon_sym_LPAREN2] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3714), + [anon_sym_PLUS] = ACTIONS(3714), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_AMP_AMP] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3714), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym___extension__] = ACTIONS(3714), + [anon_sym_typedef] = ACTIONS(3714), + [anon_sym_virtual] = ACTIONS(3714), + [anon_sym_extern] = ACTIONS(3714), + [anon_sym___attribute__] = ACTIONS(3714), + [anon_sym___attribute] = ACTIONS(3714), + [anon_sym_using] = ACTIONS(3714), + [anon_sym_COLON_COLON] = ACTIONS(3716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3716), + [anon_sym___declspec] = ACTIONS(3714), + [anon_sym___based] = ACTIONS(3714), + [anon_sym___cdecl] = ACTIONS(3714), + [anon_sym___clrcall] = ACTIONS(3714), + [anon_sym___stdcall] = ACTIONS(3714), + [anon_sym___fastcall] = ACTIONS(3714), + [anon_sym___thiscall] = ACTIONS(3714), + [anon_sym___vectorcall] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_signed] = ACTIONS(3714), + [anon_sym_unsigned] = ACTIONS(3714), + [anon_sym_long] = ACTIONS(3714), + [anon_sym_short] = ACTIONS(3714), + [anon_sym_LBRACK] = ACTIONS(3714), + [anon_sym_static] = ACTIONS(3714), + [anon_sym_register] = ACTIONS(3714), + [anon_sym_inline] = ACTIONS(3714), + [anon_sym___inline] = ACTIONS(3714), + [anon_sym___inline__] = ACTIONS(3714), + [anon_sym___forceinline] = ACTIONS(3714), + [anon_sym_thread_local] = ACTIONS(3714), + [anon_sym___thread] = ACTIONS(3714), + [anon_sym_const] = ACTIONS(3714), + [anon_sym_constexpr] = ACTIONS(3714), + [anon_sym_volatile] = ACTIONS(3714), + [anon_sym_restrict] = ACTIONS(3714), + [anon_sym___restrict__] = ACTIONS(3714), + [anon_sym__Atomic] = ACTIONS(3714), + [anon_sym__Noreturn] = ACTIONS(3714), + [anon_sym_noreturn] = ACTIONS(3714), + [anon_sym__Nonnull] = ACTIONS(3714), + [anon_sym_mutable] = ACTIONS(3714), + [anon_sym_constinit] = ACTIONS(3714), + [anon_sym_consteval] = ACTIONS(3714), + [anon_sym_alignas] = ACTIONS(3714), + [anon_sym__Alignas] = ACTIONS(3714), + [sym_primitive_type] = ACTIONS(3714), + [anon_sym_enum] = ACTIONS(3714), + [anon_sym_class] = ACTIONS(3714), + [anon_sym_struct] = ACTIONS(3714), + [anon_sym_union] = ACTIONS(3714), + [anon_sym_if] = ACTIONS(3714), + [anon_sym_switch] = ACTIONS(3714), + [anon_sym_case] = ACTIONS(3714), + [anon_sym_default] = ACTIONS(3714), + [anon_sym_while] = ACTIONS(3714), + [anon_sym_do] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3714), + [anon_sym_return] = ACTIONS(3714), + [anon_sym_break] = ACTIONS(3714), + [anon_sym_continue] = ACTIONS(3714), + [anon_sym_goto] = ACTIONS(3714), + [anon_sym___try] = ACTIONS(3714), + [anon_sym___leave] = ACTIONS(3714), + [anon_sym_not] = ACTIONS(3714), + [anon_sym_compl] = ACTIONS(3714), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(3714), + [anon_sym___alignof] = ACTIONS(3714), + [anon_sym__alignof] = ACTIONS(3714), + [anon_sym_alignof] = ACTIONS(3714), + [anon_sym__Alignof] = ACTIONS(3714), + [anon_sym_offsetof] = ACTIONS(3714), + [anon_sym__Generic] = ACTIONS(3714), + [anon_sym_typename] = ACTIONS(3714), + [anon_sym_asm] = ACTIONS(3714), + [anon_sym___asm__] = ACTIONS(3714), + [anon_sym___asm] = ACTIONS(3714), + [sym_number_literal] = ACTIONS(3716), + [anon_sym_L_SQUOTE] = ACTIONS(3716), + [anon_sym_u_SQUOTE] = ACTIONS(3716), + [anon_sym_U_SQUOTE] = ACTIONS(3716), + [anon_sym_u8_SQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_L_DQUOTE] = ACTIONS(3716), + [anon_sym_u_DQUOTE] = ACTIONS(3716), + [anon_sym_U_DQUOTE] = ACTIONS(3716), + [anon_sym_u8_DQUOTE] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [sym_true] = ACTIONS(3714), + [sym_false] = ACTIONS(3714), + [anon_sym_NULL] = ACTIONS(3714), + [anon_sym_nullptr] = ACTIONS(3714), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3714), + [anon_sym_decltype] = ACTIONS(3714), + [anon_sym_explicit] = ACTIONS(3714), + [anon_sym_export] = ACTIONS(3714), + [anon_sym_module] = ACTIONS(3714), + [anon_sym_import] = ACTIONS(3714), + [anon_sym_template] = ACTIONS(3714), + [anon_sym_operator] = ACTIONS(3714), + [anon_sym_try] = ACTIONS(3714), + [anon_sym_delete] = ACTIONS(3714), + [anon_sym_throw] = ACTIONS(3714), + [anon_sym_namespace] = ACTIONS(3714), + [anon_sym_static_assert] = ACTIONS(3714), + [anon_sym_concept] = ACTIONS(3714), + [anon_sym_co_return] = ACTIONS(3714), + [anon_sym_co_yield] = ACTIONS(3714), + [anon_sym_R_DQUOTE] = ACTIONS(3716), + [anon_sym_LR_DQUOTE] = ACTIONS(3716), + [anon_sym_uR_DQUOTE] = ACTIONS(3716), + [anon_sym_UR_DQUOTE] = ACTIONS(3716), + [anon_sym_u8R_DQUOTE] = ACTIONS(3716), + [anon_sym_co_await] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3714), + [anon_sym_requires] = ACTIONS(3714), + [anon_sym_CARET_CARET] = ACTIONS(3716), + [anon_sym_LBRACK_COLON] = ACTIONS(3716), + [sym_this] = ACTIONS(3714), + }, + [STATE(398)] = { + [sym_identifier] = ACTIONS(3718), + [aux_sym_preproc_include_token1] = ACTIONS(3718), + [aux_sym_preproc_def_token1] = ACTIONS(3718), + [aux_sym_preproc_if_token1] = ACTIONS(3718), + [aux_sym_preproc_if_token2] = ACTIONS(3718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3718), + [aux_sym_preproc_else_token1] = ACTIONS(3718), + [aux_sym_preproc_elif_token1] = ACTIONS(3718), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3718), + [sym_preproc_directive] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_BANG] = ACTIONS(3720), + [anon_sym_TILDE] = ACTIONS(3720), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3720), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym___extension__] = ACTIONS(3718), + [anon_sym_typedef] = ACTIONS(3718), + [anon_sym_virtual] = ACTIONS(3718), + [anon_sym_extern] = ACTIONS(3718), + [anon_sym___attribute__] = ACTIONS(3718), + [anon_sym___attribute] = ACTIONS(3718), + [anon_sym_using] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3720), + [anon_sym___declspec] = ACTIONS(3718), + [anon_sym___based] = ACTIONS(3718), + [anon_sym___cdecl] = ACTIONS(3718), + [anon_sym___clrcall] = ACTIONS(3718), + [anon_sym___stdcall] = ACTIONS(3718), + [anon_sym___fastcall] = ACTIONS(3718), + [anon_sym___thiscall] = ACTIONS(3718), + [anon_sym___vectorcall] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3720), + [anon_sym_signed] = ACTIONS(3718), + [anon_sym_unsigned] = ACTIONS(3718), + [anon_sym_long] = ACTIONS(3718), + [anon_sym_short] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_static] = ACTIONS(3718), + [anon_sym_register] = ACTIONS(3718), + [anon_sym_inline] = ACTIONS(3718), + [anon_sym___inline] = ACTIONS(3718), + [anon_sym___inline__] = ACTIONS(3718), + [anon_sym___forceinline] = ACTIONS(3718), + [anon_sym_thread_local] = ACTIONS(3718), + [anon_sym___thread] = ACTIONS(3718), + [anon_sym_const] = ACTIONS(3718), + [anon_sym_constexpr] = ACTIONS(3718), + [anon_sym_volatile] = ACTIONS(3718), + [anon_sym_restrict] = ACTIONS(3718), + [anon_sym___restrict__] = ACTIONS(3718), + [anon_sym__Atomic] = ACTIONS(3718), + [anon_sym__Noreturn] = ACTIONS(3718), + [anon_sym_noreturn] = ACTIONS(3718), + [anon_sym__Nonnull] = ACTIONS(3718), + [anon_sym_mutable] = ACTIONS(3718), + [anon_sym_constinit] = ACTIONS(3718), + [anon_sym_consteval] = ACTIONS(3718), + [anon_sym_alignas] = ACTIONS(3718), + [anon_sym__Alignas] = ACTIONS(3718), + [sym_primitive_type] = ACTIONS(3718), + [anon_sym_enum] = ACTIONS(3718), + [anon_sym_class] = ACTIONS(3718), + [anon_sym_struct] = ACTIONS(3718), + [anon_sym_union] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_switch] = ACTIONS(3718), + [anon_sym_case] = ACTIONS(3718), + [anon_sym_default] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_break] = ACTIONS(3718), + [anon_sym_continue] = ACTIONS(3718), + [anon_sym_goto] = ACTIONS(3718), + [anon_sym___try] = ACTIONS(3718), + [anon_sym___leave] = ACTIONS(3718), + [anon_sym_not] = ACTIONS(3718), + [anon_sym_compl] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3720), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_sizeof] = ACTIONS(3718), + [anon_sym___alignof__] = ACTIONS(3718), + [anon_sym___alignof] = ACTIONS(3718), + [anon_sym__alignof] = ACTIONS(3718), + [anon_sym_alignof] = ACTIONS(3718), + [anon_sym__Alignof] = ACTIONS(3718), + [anon_sym_offsetof] = ACTIONS(3718), + [anon_sym__Generic] = ACTIONS(3718), + [anon_sym_typename] = ACTIONS(3718), + [anon_sym_asm] = ACTIONS(3718), + [anon_sym___asm__] = ACTIONS(3718), + [anon_sym___asm] = ACTIONS(3718), + [sym_number_literal] = ACTIONS(3720), + [anon_sym_L_SQUOTE] = ACTIONS(3720), + [anon_sym_u_SQUOTE] = ACTIONS(3720), + [anon_sym_U_SQUOTE] = ACTIONS(3720), + [anon_sym_u8_SQUOTE] = ACTIONS(3720), + [anon_sym_SQUOTE] = ACTIONS(3720), + [anon_sym_L_DQUOTE] = ACTIONS(3720), + [anon_sym_u_DQUOTE] = ACTIONS(3720), + [anon_sym_U_DQUOTE] = ACTIONS(3720), + [anon_sym_u8_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE] = ACTIONS(3720), + [sym_true] = ACTIONS(3718), + [sym_false] = ACTIONS(3718), + [anon_sym_NULL] = ACTIONS(3718), + [anon_sym_nullptr] = ACTIONS(3718), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(3718), + [anon_sym_explicit] = ACTIONS(3718), + [anon_sym_export] = ACTIONS(3718), + [anon_sym_module] = ACTIONS(3718), + [anon_sym_import] = ACTIONS(3718), + [anon_sym_template] = ACTIONS(3718), + [anon_sym_operator] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_throw] = ACTIONS(3718), + [anon_sym_namespace] = ACTIONS(3718), + [anon_sym_static_assert] = ACTIONS(3718), + [anon_sym_concept] = ACTIONS(3718), + [anon_sym_co_return] = ACTIONS(3718), + [anon_sym_co_yield] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(3720), + [anon_sym_LR_DQUOTE] = ACTIONS(3720), + [anon_sym_uR_DQUOTE] = ACTIONS(3720), + [anon_sym_UR_DQUOTE] = ACTIONS(3720), + [anon_sym_u8R_DQUOTE] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3718), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_requires] = ACTIONS(3718), + [anon_sym_CARET_CARET] = ACTIONS(3720), + [anon_sym_LBRACK_COLON] = ACTIONS(3720), + [sym_this] = ACTIONS(3718), + }, + [STATE(399)] = { + [sym_identifier] = ACTIONS(3722), + [aux_sym_preproc_include_token1] = ACTIONS(3722), + [aux_sym_preproc_def_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token2] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3722), + [aux_sym_preproc_else_token1] = ACTIONS(3722), + [aux_sym_preproc_elif_token1] = ACTIONS(3722), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3722), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3722), + [sym_preproc_directive] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_SEMI] = ACTIONS(3724), + [anon_sym___extension__] = ACTIONS(3722), + [anon_sym_typedef] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym___attribute] = ACTIONS(3722), + [anon_sym_using] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3724), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym___cdecl] = ACTIONS(3722), + [anon_sym___clrcall] = ACTIONS(3722), + [anon_sym___stdcall] = ACTIONS(3722), + [anon_sym___fastcall] = ACTIONS(3722), + [anon_sym___thiscall] = ACTIONS(3722), + [anon_sym___vectorcall] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_signed] = ACTIONS(3722), + [anon_sym_unsigned] = ACTIONS(3722), + [anon_sym_long] = ACTIONS(3722), + [anon_sym_short] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym___inline] = ACTIONS(3722), + [anon_sym___inline__] = ACTIONS(3722), + [anon_sym___forceinline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym___thread] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym___restrict__] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym__Noreturn] = ACTIONS(3722), + [anon_sym_noreturn] = ACTIONS(3722), + [anon_sym__Nonnull] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_alignas] = ACTIONS(3722), + [anon_sym__Alignas] = ACTIONS(3722), + [sym_primitive_type] = ACTIONS(3722), + [anon_sym_enum] = ACTIONS(3722), + [anon_sym_class] = ACTIONS(3722), + [anon_sym_struct] = ACTIONS(3722), + [anon_sym_union] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_switch] = ACTIONS(3722), + [anon_sym_case] = ACTIONS(3722), + [anon_sym_default] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_break] = ACTIONS(3722), + [anon_sym_continue] = ACTIONS(3722), + [anon_sym_goto] = ACTIONS(3722), + [anon_sym___try] = ACTIONS(3722), + [anon_sym___leave] = ACTIONS(3722), + [anon_sym_not] = ACTIONS(3722), + [anon_sym_compl] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3724), + [anon_sym_sizeof] = ACTIONS(3722), + [anon_sym___alignof__] = ACTIONS(3722), + [anon_sym___alignof] = ACTIONS(3722), + [anon_sym__alignof] = ACTIONS(3722), + [anon_sym_alignof] = ACTIONS(3722), + [anon_sym__Alignof] = ACTIONS(3722), + [anon_sym_offsetof] = ACTIONS(3722), + [anon_sym__Generic] = ACTIONS(3722), + [anon_sym_typename] = ACTIONS(3722), + [anon_sym_asm] = ACTIONS(3722), + [anon_sym___asm__] = ACTIONS(3722), + [anon_sym___asm] = ACTIONS(3722), + [sym_number_literal] = ACTIONS(3724), + [anon_sym_L_SQUOTE] = ACTIONS(3724), + [anon_sym_u_SQUOTE] = ACTIONS(3724), + [anon_sym_U_SQUOTE] = ACTIONS(3724), + [anon_sym_u8_SQUOTE] = ACTIONS(3724), + [anon_sym_SQUOTE] = ACTIONS(3724), + [anon_sym_L_DQUOTE] = ACTIONS(3724), + [anon_sym_u_DQUOTE] = ACTIONS(3724), + [anon_sym_U_DQUOTE] = ACTIONS(3724), + [anon_sym_u8_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE] = ACTIONS(3724), + [sym_true] = ACTIONS(3722), + [sym_false] = ACTIONS(3722), + [anon_sym_NULL] = ACTIONS(3722), + [anon_sym_nullptr] = ACTIONS(3722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_explicit] = ACTIONS(3722), + [anon_sym_export] = ACTIONS(3722), + [anon_sym_module] = ACTIONS(3722), + [anon_sym_import] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_delete] = ACTIONS(3722), + [anon_sym_throw] = ACTIONS(3722), + [anon_sym_namespace] = ACTIONS(3722), + [anon_sym_static_assert] = ACTIONS(3722), + [anon_sym_concept] = ACTIONS(3722), + [anon_sym_co_return] = ACTIONS(3722), + [anon_sym_co_yield] = ACTIONS(3722), + [anon_sym_R_DQUOTE] = ACTIONS(3724), + [anon_sym_LR_DQUOTE] = ACTIONS(3724), + [anon_sym_uR_DQUOTE] = ACTIONS(3724), + [anon_sym_UR_DQUOTE] = ACTIONS(3724), + [anon_sym_u8R_DQUOTE] = ACTIONS(3724), + [anon_sym_co_await] = ACTIONS(3722), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_requires] = ACTIONS(3722), + [anon_sym_CARET_CARET] = ACTIONS(3724), + [anon_sym_LBRACK_COLON] = ACTIONS(3724), + [sym_this] = ACTIONS(3722), + }, + [STATE(400)] = { + [sym_identifier] = ACTIONS(3726), + [aux_sym_preproc_include_token1] = ACTIONS(3726), + [aux_sym_preproc_def_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token2] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3726), + [aux_sym_preproc_else_token1] = ACTIONS(3726), + [aux_sym_preproc_elif_token1] = ACTIONS(3726), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3726), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3726), + [sym_preproc_directive] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_BANG] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(3726), + [anon_sym_typedef] = ACTIONS(3726), + [anon_sym_virtual] = ACTIONS(3726), + [anon_sym_extern] = ACTIONS(3726), + [anon_sym___attribute__] = ACTIONS(3726), + [anon_sym___attribute] = ACTIONS(3726), + [anon_sym_using] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3728), + [anon_sym___declspec] = ACTIONS(3726), + [anon_sym___based] = ACTIONS(3726), + [anon_sym___cdecl] = ACTIONS(3726), + [anon_sym___clrcall] = ACTIONS(3726), + [anon_sym___stdcall] = ACTIONS(3726), + [anon_sym___fastcall] = ACTIONS(3726), + [anon_sym___thiscall] = ACTIONS(3726), + [anon_sym___vectorcall] = ACTIONS(3726), + [anon_sym_LBRACE] = ACTIONS(3728), + [anon_sym_signed] = ACTIONS(3726), + [anon_sym_unsigned] = ACTIONS(3726), + [anon_sym_long] = ACTIONS(3726), + [anon_sym_short] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_static] = ACTIONS(3726), + [anon_sym_register] = ACTIONS(3726), + [anon_sym_inline] = ACTIONS(3726), + [anon_sym___inline] = ACTIONS(3726), + [anon_sym___inline__] = ACTIONS(3726), + [anon_sym___forceinline] = ACTIONS(3726), + [anon_sym_thread_local] = ACTIONS(3726), + [anon_sym___thread] = ACTIONS(3726), + [anon_sym_const] = ACTIONS(3726), + [anon_sym_constexpr] = ACTIONS(3726), + [anon_sym_volatile] = ACTIONS(3726), + [anon_sym_restrict] = ACTIONS(3726), + [anon_sym___restrict__] = ACTIONS(3726), + [anon_sym__Atomic] = ACTIONS(3726), + [anon_sym__Noreturn] = ACTIONS(3726), + [anon_sym_noreturn] = ACTIONS(3726), + [anon_sym__Nonnull] = ACTIONS(3726), + [anon_sym_mutable] = ACTIONS(3726), + [anon_sym_constinit] = ACTIONS(3726), + [anon_sym_consteval] = ACTIONS(3726), + [anon_sym_alignas] = ACTIONS(3726), + [anon_sym__Alignas] = ACTIONS(3726), + [sym_primitive_type] = ACTIONS(3726), + [anon_sym_enum] = ACTIONS(3726), + [anon_sym_class] = ACTIONS(3726), + [anon_sym_struct] = ACTIONS(3726), + [anon_sym_union] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_switch] = ACTIONS(3726), + [anon_sym_case] = ACTIONS(3726), + [anon_sym_default] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_break] = ACTIONS(3726), + [anon_sym_continue] = ACTIONS(3726), + [anon_sym_goto] = ACTIONS(3726), + [anon_sym___try] = ACTIONS(3726), + [anon_sym___leave] = ACTIONS(3726), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3728), + [anon_sym_PLUS_PLUS] = ACTIONS(3728), + [anon_sym_sizeof] = ACTIONS(3726), + [anon_sym___alignof__] = ACTIONS(3726), + [anon_sym___alignof] = ACTIONS(3726), + [anon_sym__alignof] = ACTIONS(3726), + [anon_sym_alignof] = ACTIONS(3726), + [anon_sym__Alignof] = ACTIONS(3726), + [anon_sym_offsetof] = ACTIONS(3726), + [anon_sym__Generic] = ACTIONS(3726), + [anon_sym_typename] = ACTIONS(3726), + [anon_sym_asm] = ACTIONS(3726), + [anon_sym___asm__] = ACTIONS(3726), + [anon_sym___asm] = ACTIONS(3726), + [sym_number_literal] = ACTIONS(3728), + [anon_sym_L_SQUOTE] = ACTIONS(3728), + [anon_sym_u_SQUOTE] = ACTIONS(3728), + [anon_sym_U_SQUOTE] = ACTIONS(3728), + [anon_sym_u8_SQUOTE] = ACTIONS(3728), + [anon_sym_SQUOTE] = ACTIONS(3728), + [anon_sym_L_DQUOTE] = ACTIONS(3728), + [anon_sym_u_DQUOTE] = ACTIONS(3728), + [anon_sym_U_DQUOTE] = ACTIONS(3728), + [anon_sym_u8_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE] = ACTIONS(3728), + [sym_true] = ACTIONS(3726), + [sym_false] = ACTIONS(3726), + [anon_sym_NULL] = ACTIONS(3726), + [anon_sym_nullptr] = ACTIONS(3726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3726), + [anon_sym_decltype] = ACTIONS(3726), + [anon_sym_explicit] = ACTIONS(3726), + [anon_sym_export] = ACTIONS(3726), + [anon_sym_module] = ACTIONS(3726), + [anon_sym_import] = ACTIONS(3726), + [anon_sym_template] = ACTIONS(3726), + [anon_sym_operator] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_delete] = ACTIONS(3726), + [anon_sym_throw] = ACTIONS(3726), + [anon_sym_namespace] = ACTIONS(3726), + [anon_sym_static_assert] = ACTIONS(3726), + [anon_sym_concept] = ACTIONS(3726), + [anon_sym_co_return] = ACTIONS(3726), + [anon_sym_co_yield] = ACTIONS(3726), + [anon_sym_R_DQUOTE] = ACTIONS(3728), + [anon_sym_LR_DQUOTE] = ACTIONS(3728), + [anon_sym_uR_DQUOTE] = ACTIONS(3728), + [anon_sym_UR_DQUOTE] = ACTIONS(3728), + [anon_sym_u8R_DQUOTE] = ACTIONS(3728), + [anon_sym_co_await] = ACTIONS(3726), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_requires] = ACTIONS(3726), + [anon_sym_CARET_CARET] = ACTIONS(3728), + [anon_sym_LBRACK_COLON] = ACTIONS(3728), + [sym_this] = ACTIONS(3726), + }, + [STATE(401)] = { + [sym_identifier] = ACTIONS(3730), + [aux_sym_preproc_include_token1] = ACTIONS(3730), + [aux_sym_preproc_def_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token2] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3730), + [aux_sym_preproc_else_token1] = ACTIONS(3730), + [aux_sym_preproc_elif_token1] = ACTIONS(3730), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3730), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3730), + [sym_preproc_directive] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_BANG] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym___extension__] = ACTIONS(3730), + [anon_sym_typedef] = ACTIONS(3730), + [anon_sym_virtual] = ACTIONS(3730), + [anon_sym_extern] = ACTIONS(3730), + [anon_sym___attribute__] = ACTIONS(3730), + [anon_sym___attribute] = ACTIONS(3730), + [anon_sym_using] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3732), + [anon_sym___declspec] = ACTIONS(3730), + [anon_sym___based] = ACTIONS(3730), + [anon_sym___cdecl] = ACTIONS(3730), + [anon_sym___clrcall] = ACTIONS(3730), + [anon_sym___stdcall] = ACTIONS(3730), + [anon_sym___fastcall] = ACTIONS(3730), + [anon_sym___thiscall] = ACTIONS(3730), + [anon_sym___vectorcall] = ACTIONS(3730), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_signed] = ACTIONS(3730), + [anon_sym_unsigned] = ACTIONS(3730), + [anon_sym_long] = ACTIONS(3730), + [anon_sym_short] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_static] = ACTIONS(3730), + [anon_sym_register] = ACTIONS(3730), + [anon_sym_inline] = ACTIONS(3730), + [anon_sym___inline] = ACTIONS(3730), + [anon_sym___inline__] = ACTIONS(3730), + [anon_sym___forceinline] = ACTIONS(3730), + [anon_sym_thread_local] = ACTIONS(3730), + [anon_sym___thread] = ACTIONS(3730), + [anon_sym_const] = ACTIONS(3730), + [anon_sym_constexpr] = ACTIONS(3730), + [anon_sym_volatile] = ACTIONS(3730), + [anon_sym_restrict] = ACTIONS(3730), + [anon_sym___restrict__] = ACTIONS(3730), + [anon_sym__Atomic] = ACTIONS(3730), + [anon_sym__Noreturn] = ACTIONS(3730), + [anon_sym_noreturn] = ACTIONS(3730), + [anon_sym__Nonnull] = ACTIONS(3730), + [anon_sym_mutable] = ACTIONS(3730), + [anon_sym_constinit] = ACTIONS(3730), + [anon_sym_consteval] = ACTIONS(3730), + [anon_sym_alignas] = ACTIONS(3730), + [anon_sym__Alignas] = ACTIONS(3730), + [sym_primitive_type] = ACTIONS(3730), + [anon_sym_enum] = ACTIONS(3730), + [anon_sym_class] = ACTIONS(3730), + [anon_sym_struct] = ACTIONS(3730), + [anon_sym_union] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_switch] = ACTIONS(3730), + [anon_sym_case] = ACTIONS(3730), + [anon_sym_default] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_break] = ACTIONS(3730), + [anon_sym_continue] = ACTIONS(3730), + [anon_sym_goto] = ACTIONS(3730), + [anon_sym___try] = ACTIONS(3730), + [anon_sym___leave] = ACTIONS(3730), + [anon_sym_not] = ACTIONS(3730), + [anon_sym_compl] = ACTIONS(3730), + [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_PLUS_PLUS] = ACTIONS(3732), + [anon_sym_sizeof] = ACTIONS(3730), + [anon_sym___alignof__] = ACTIONS(3730), + [anon_sym___alignof] = ACTIONS(3730), + [anon_sym__alignof] = ACTIONS(3730), + [anon_sym_alignof] = ACTIONS(3730), + [anon_sym__Alignof] = ACTIONS(3730), + [anon_sym_offsetof] = ACTIONS(3730), + [anon_sym__Generic] = ACTIONS(3730), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_asm] = ACTIONS(3730), + [anon_sym___asm__] = ACTIONS(3730), + [anon_sym___asm] = ACTIONS(3730), + [sym_number_literal] = ACTIONS(3732), + [anon_sym_L_SQUOTE] = ACTIONS(3732), + [anon_sym_u_SQUOTE] = ACTIONS(3732), + [anon_sym_U_SQUOTE] = ACTIONS(3732), + [anon_sym_u8_SQUOTE] = ACTIONS(3732), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_L_DQUOTE] = ACTIONS(3732), + [anon_sym_u_DQUOTE] = ACTIONS(3732), + [anon_sym_U_DQUOTE] = ACTIONS(3732), + [anon_sym_u8_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(3732), + [sym_true] = ACTIONS(3730), + [sym_false] = ACTIONS(3730), + [anon_sym_NULL] = ACTIONS(3730), + [anon_sym_nullptr] = ACTIONS(3730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3730), + [anon_sym_decltype] = ACTIONS(3730), + [anon_sym_explicit] = ACTIONS(3730), + [anon_sym_export] = ACTIONS(3730), + [anon_sym_module] = ACTIONS(3730), + [anon_sym_import] = ACTIONS(3730), + [anon_sym_template] = ACTIONS(3730), + [anon_sym_operator] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_delete] = ACTIONS(3730), + [anon_sym_throw] = ACTIONS(3730), + [anon_sym_namespace] = ACTIONS(3730), + [anon_sym_static_assert] = ACTIONS(3730), + [anon_sym_concept] = ACTIONS(3730), + [anon_sym_co_return] = ACTIONS(3730), + [anon_sym_co_yield] = ACTIONS(3730), + [anon_sym_R_DQUOTE] = ACTIONS(3732), + [anon_sym_LR_DQUOTE] = ACTIONS(3732), + [anon_sym_uR_DQUOTE] = ACTIONS(3732), + [anon_sym_UR_DQUOTE] = ACTIONS(3732), + [anon_sym_u8R_DQUOTE] = ACTIONS(3732), + [anon_sym_co_await] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_requires] = ACTIONS(3730), + [anon_sym_CARET_CARET] = ACTIONS(3732), + [anon_sym_LBRACK_COLON] = ACTIONS(3732), + [sym_this] = ACTIONS(3730), + }, + [STATE(402)] = { + [sym_identifier] = ACTIONS(3734), + [aux_sym_preproc_include_token1] = ACTIONS(3734), + [aux_sym_preproc_def_token1] = ACTIONS(3734), + [aux_sym_preproc_if_token1] = ACTIONS(3734), + [aux_sym_preproc_if_token2] = ACTIONS(3734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3734), + [aux_sym_preproc_else_token1] = ACTIONS(3734), + [aux_sym_preproc_elif_token1] = ACTIONS(3734), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3734), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3734), + [sym_preproc_directive] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3736), + [anon_sym_TILDE] = ACTIONS(3736), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3736), + [anon_sym___extension__] = ACTIONS(3734), + [anon_sym_typedef] = ACTIONS(3734), + [anon_sym_virtual] = ACTIONS(3734), + [anon_sym_extern] = ACTIONS(3734), + [anon_sym___attribute__] = ACTIONS(3734), + [anon_sym___attribute] = ACTIONS(3734), + [anon_sym_using] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3736), + [anon_sym___declspec] = ACTIONS(3734), + [anon_sym___based] = ACTIONS(3734), + [anon_sym___cdecl] = ACTIONS(3734), + [anon_sym___clrcall] = ACTIONS(3734), + [anon_sym___stdcall] = ACTIONS(3734), + [anon_sym___fastcall] = ACTIONS(3734), + [anon_sym___thiscall] = ACTIONS(3734), + [anon_sym___vectorcall] = ACTIONS(3734), + [anon_sym_LBRACE] = ACTIONS(3736), + [anon_sym_signed] = ACTIONS(3734), + [anon_sym_unsigned] = ACTIONS(3734), + [anon_sym_long] = ACTIONS(3734), + [anon_sym_short] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_static] = ACTIONS(3734), + [anon_sym_register] = ACTIONS(3734), + [anon_sym_inline] = ACTIONS(3734), + [anon_sym___inline] = ACTIONS(3734), + [anon_sym___inline__] = ACTIONS(3734), + [anon_sym___forceinline] = ACTIONS(3734), + [anon_sym_thread_local] = ACTIONS(3734), + [anon_sym___thread] = ACTIONS(3734), + [anon_sym_const] = ACTIONS(3734), + [anon_sym_constexpr] = ACTIONS(3734), + [anon_sym_volatile] = ACTIONS(3734), + [anon_sym_restrict] = ACTIONS(3734), + [anon_sym___restrict__] = ACTIONS(3734), + [anon_sym__Atomic] = ACTIONS(3734), + [anon_sym__Noreturn] = ACTIONS(3734), + [anon_sym_noreturn] = ACTIONS(3734), + [anon_sym__Nonnull] = ACTIONS(3734), + [anon_sym_mutable] = ACTIONS(3734), + [anon_sym_constinit] = ACTIONS(3734), + [anon_sym_consteval] = ACTIONS(3734), + [anon_sym_alignas] = ACTIONS(3734), + [anon_sym__Alignas] = ACTIONS(3734), + [sym_primitive_type] = ACTIONS(3734), + [anon_sym_enum] = ACTIONS(3734), + [anon_sym_class] = ACTIONS(3734), + [anon_sym_struct] = ACTIONS(3734), + [anon_sym_union] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_switch] = ACTIONS(3734), + [anon_sym_case] = ACTIONS(3734), + [anon_sym_default] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_break] = ACTIONS(3734), + [anon_sym_continue] = ACTIONS(3734), + [anon_sym_goto] = ACTIONS(3734), + [anon_sym___try] = ACTIONS(3734), + [anon_sym___leave] = ACTIONS(3734), + [anon_sym_not] = ACTIONS(3734), + [anon_sym_compl] = ACTIONS(3734), + [anon_sym_DASH_DASH] = ACTIONS(3736), + [anon_sym_PLUS_PLUS] = ACTIONS(3736), + [anon_sym_sizeof] = ACTIONS(3734), + [anon_sym___alignof__] = ACTIONS(3734), + [anon_sym___alignof] = ACTIONS(3734), + [anon_sym__alignof] = ACTIONS(3734), + [anon_sym_alignof] = ACTIONS(3734), + [anon_sym__Alignof] = ACTIONS(3734), + [anon_sym_offsetof] = ACTIONS(3734), + [anon_sym__Generic] = ACTIONS(3734), + [anon_sym_typename] = ACTIONS(3734), + [anon_sym_asm] = ACTIONS(3734), + [anon_sym___asm__] = ACTIONS(3734), + [anon_sym___asm] = ACTIONS(3734), + [sym_number_literal] = ACTIONS(3736), + [anon_sym_L_SQUOTE] = ACTIONS(3736), + [anon_sym_u_SQUOTE] = ACTIONS(3736), + [anon_sym_U_SQUOTE] = ACTIONS(3736), + [anon_sym_u8_SQUOTE] = ACTIONS(3736), + [anon_sym_SQUOTE] = ACTIONS(3736), + [anon_sym_L_DQUOTE] = ACTIONS(3736), + [anon_sym_u_DQUOTE] = ACTIONS(3736), + [anon_sym_U_DQUOTE] = ACTIONS(3736), + [anon_sym_u8_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE] = ACTIONS(3736), + [sym_true] = ACTIONS(3734), + [sym_false] = ACTIONS(3734), + [anon_sym_NULL] = ACTIONS(3734), + [anon_sym_nullptr] = ACTIONS(3734), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3734), + [anon_sym_decltype] = ACTIONS(3734), + [anon_sym_explicit] = ACTIONS(3734), + [anon_sym_export] = ACTIONS(3734), + [anon_sym_module] = ACTIONS(3734), + [anon_sym_import] = ACTIONS(3734), + [anon_sym_template] = ACTIONS(3734), + [anon_sym_operator] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_delete] = ACTIONS(3734), + [anon_sym_throw] = ACTIONS(3734), + [anon_sym_namespace] = ACTIONS(3734), + [anon_sym_static_assert] = ACTIONS(3734), + [anon_sym_concept] = ACTIONS(3734), + [anon_sym_co_return] = ACTIONS(3734), + [anon_sym_co_yield] = ACTIONS(3734), + [anon_sym_R_DQUOTE] = ACTIONS(3736), + [anon_sym_LR_DQUOTE] = ACTIONS(3736), + [anon_sym_uR_DQUOTE] = ACTIONS(3736), + [anon_sym_UR_DQUOTE] = ACTIONS(3736), + [anon_sym_u8R_DQUOTE] = ACTIONS(3736), + [anon_sym_co_await] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_requires] = ACTIONS(3734), + [anon_sym_CARET_CARET] = ACTIONS(3736), + [anon_sym_LBRACK_COLON] = ACTIONS(3736), + [sym_this] = ACTIONS(3734), + }, + [STATE(403)] = { + [sym_identifier] = ACTIONS(3738), + [aux_sym_preproc_include_token1] = ACTIONS(3738), + [aux_sym_preproc_def_token1] = ACTIONS(3738), + [aux_sym_preproc_if_token1] = ACTIONS(3738), + [aux_sym_preproc_if_token2] = ACTIONS(3738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3738), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3738), + [aux_sym_preproc_else_token1] = ACTIONS(3738), + [aux_sym_preproc_elif_token1] = ACTIONS(3738), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3738), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3738), + [sym_preproc_directive] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym___extension__] = ACTIONS(3738), + [anon_sym_typedef] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym___attribute__] = ACTIONS(3738), + [anon_sym___attribute] = ACTIONS(3738), + [anon_sym_using] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3740), + [anon_sym___declspec] = ACTIONS(3738), + [anon_sym___based] = ACTIONS(3738), + [anon_sym___cdecl] = ACTIONS(3738), + [anon_sym___clrcall] = ACTIONS(3738), + [anon_sym___stdcall] = ACTIONS(3738), + [anon_sym___fastcall] = ACTIONS(3738), + [anon_sym___thiscall] = ACTIONS(3738), + [anon_sym___vectorcall] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_signed] = ACTIONS(3738), + [anon_sym_unsigned] = ACTIONS(3738), + [anon_sym_long] = ACTIONS(3738), + [anon_sym_short] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_register] = ACTIONS(3738), + [anon_sym_inline] = ACTIONS(3738), + [anon_sym___inline] = ACTIONS(3738), + [anon_sym___inline__] = ACTIONS(3738), + [anon_sym___forceinline] = ACTIONS(3738), + [anon_sym_thread_local] = ACTIONS(3738), + [anon_sym___thread] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_constexpr] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_restrict] = ACTIONS(3738), + [anon_sym___restrict__] = ACTIONS(3738), + [anon_sym__Atomic] = ACTIONS(3738), + [anon_sym__Noreturn] = ACTIONS(3738), + [anon_sym_noreturn] = ACTIONS(3738), + [anon_sym__Nonnull] = ACTIONS(3738), + [anon_sym_mutable] = ACTIONS(3738), + [anon_sym_constinit] = ACTIONS(3738), + [anon_sym_consteval] = ACTIONS(3738), + [anon_sym_alignas] = ACTIONS(3738), + [anon_sym__Alignas] = ACTIONS(3738), + [sym_primitive_type] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_union] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_switch] = ACTIONS(3738), + [anon_sym_case] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_break] = ACTIONS(3738), + [anon_sym_continue] = ACTIONS(3738), + [anon_sym_goto] = ACTIONS(3738), + [anon_sym___try] = ACTIONS(3738), + [anon_sym___leave] = ACTIONS(3738), + [anon_sym_not] = ACTIONS(3738), + [anon_sym_compl] = ACTIONS(3738), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_sizeof] = ACTIONS(3738), + [anon_sym___alignof__] = ACTIONS(3738), + [anon_sym___alignof] = ACTIONS(3738), + [anon_sym__alignof] = ACTIONS(3738), + [anon_sym_alignof] = ACTIONS(3738), + [anon_sym__Alignof] = ACTIONS(3738), + [anon_sym_offsetof] = ACTIONS(3738), + [anon_sym__Generic] = ACTIONS(3738), + [anon_sym_typename] = ACTIONS(3738), + [anon_sym_asm] = ACTIONS(3738), + [anon_sym___asm__] = ACTIONS(3738), + [anon_sym___asm] = ACTIONS(3738), + [sym_number_literal] = ACTIONS(3740), + [anon_sym_L_SQUOTE] = ACTIONS(3740), + [anon_sym_u_SQUOTE] = ACTIONS(3740), + [anon_sym_U_SQUOTE] = ACTIONS(3740), + [anon_sym_u8_SQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_L_DQUOTE] = ACTIONS(3740), + [anon_sym_u_DQUOTE] = ACTIONS(3740), + [anon_sym_U_DQUOTE] = ACTIONS(3740), + [anon_sym_u8_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [sym_true] = ACTIONS(3738), + [sym_false] = ACTIONS(3738), + [anon_sym_NULL] = ACTIONS(3738), + [anon_sym_nullptr] = ACTIONS(3738), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3738), + [anon_sym_decltype] = ACTIONS(3738), + [anon_sym_explicit] = ACTIONS(3738), + [anon_sym_export] = ACTIONS(3738), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_import] = ACTIONS(3738), + [anon_sym_template] = ACTIONS(3738), + [anon_sym_operator] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_delete] = ACTIONS(3738), + [anon_sym_throw] = ACTIONS(3738), + [anon_sym_namespace] = ACTIONS(3738), + [anon_sym_static_assert] = ACTIONS(3738), + [anon_sym_concept] = ACTIONS(3738), + [anon_sym_co_return] = ACTIONS(3738), + [anon_sym_co_yield] = ACTIONS(3738), + [anon_sym_R_DQUOTE] = ACTIONS(3740), + [anon_sym_LR_DQUOTE] = ACTIONS(3740), + [anon_sym_uR_DQUOTE] = ACTIONS(3740), + [anon_sym_UR_DQUOTE] = ACTIONS(3740), + [anon_sym_u8R_DQUOTE] = ACTIONS(3740), + [anon_sym_co_await] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_requires] = ACTIONS(3738), + [anon_sym_CARET_CARET] = ACTIONS(3740), + [anon_sym_LBRACK_COLON] = ACTIONS(3740), + [sym_this] = ACTIONS(3738), + }, + [STATE(404)] = { + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_include_token1] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token2] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [aux_sym_preproc_else_token1] = ACTIONS(3742), + [aux_sym_preproc_elif_token1] = ACTIONS(3742), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym___cdecl] = ACTIONS(3742), + [anon_sym___clrcall] = ACTIONS(3742), + [anon_sym___stdcall] = ACTIONS(3742), + [anon_sym___fastcall] = ACTIONS(3742), + [anon_sym___thiscall] = ACTIONS(3742), + [anon_sym___vectorcall] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_switch] = ACTIONS(3742), + [anon_sym_case] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_goto] = ACTIONS(3742), + [anon_sym___try] = ACTIONS(3742), + [anon_sym___leave] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(3742), + [anon_sym_compl] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3742), + [anon_sym___alignof__] = ACTIONS(3742), + [anon_sym___alignof] = ACTIONS(3742), + [anon_sym__alignof] = ACTIONS(3742), + [anon_sym_alignof] = ACTIONS(3742), + [anon_sym__Alignof] = ACTIONS(3742), + [anon_sym_offsetof] = ACTIONS(3742), + [anon_sym__Generic] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [anon_sym_asm] = ACTIONS(3742), + [anon_sym___asm__] = ACTIONS(3742), + [anon_sym___asm] = ACTIONS(3742), + [sym_number_literal] = ACTIONS(3744), + [anon_sym_L_SQUOTE] = ACTIONS(3744), + [anon_sym_u_SQUOTE] = ACTIONS(3744), + [anon_sym_U_SQUOTE] = ACTIONS(3744), + [anon_sym_u8_SQUOTE] = ACTIONS(3744), + [anon_sym_SQUOTE] = ACTIONS(3744), + [anon_sym_L_DQUOTE] = ACTIONS(3744), + [anon_sym_u_DQUOTE] = ACTIONS(3744), + [anon_sym_U_DQUOTE] = ACTIONS(3744), + [anon_sym_u8_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [anon_sym_NULL] = ACTIONS(3742), + [anon_sym_nullptr] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_export] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_import] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_delete] = ACTIONS(3742), + [anon_sym_throw] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_concept] = ACTIONS(3742), + [anon_sym_co_return] = ACTIONS(3742), + [anon_sym_co_yield] = ACTIONS(3742), + [anon_sym_R_DQUOTE] = ACTIONS(3744), + [anon_sym_LR_DQUOTE] = ACTIONS(3744), + [anon_sym_uR_DQUOTE] = ACTIONS(3744), + [anon_sym_UR_DQUOTE] = ACTIONS(3744), + [anon_sym_u8R_DQUOTE] = ACTIONS(3744), + [anon_sym_co_await] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_requires] = ACTIONS(3742), + [anon_sym_CARET_CARET] = ACTIONS(3744), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + [sym_this] = ACTIONS(3742), + }, + [STATE(405)] = { + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_include_token1] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token2] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [aux_sym_preproc_else_token1] = ACTIONS(3742), + [aux_sym_preproc_elif_token1] = ACTIONS(3742), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym___cdecl] = ACTIONS(3742), + [anon_sym___clrcall] = ACTIONS(3742), + [anon_sym___stdcall] = ACTIONS(3742), + [anon_sym___fastcall] = ACTIONS(3742), + [anon_sym___thiscall] = ACTIONS(3742), + [anon_sym___vectorcall] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_switch] = ACTIONS(3742), + [anon_sym_case] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_goto] = ACTIONS(3742), + [anon_sym___try] = ACTIONS(3742), + [anon_sym___leave] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(3742), + [anon_sym_compl] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3742), + [anon_sym___alignof__] = ACTIONS(3742), + [anon_sym___alignof] = ACTIONS(3742), + [anon_sym__alignof] = ACTIONS(3742), + [anon_sym_alignof] = ACTIONS(3742), + [anon_sym__Alignof] = ACTIONS(3742), + [anon_sym_offsetof] = ACTIONS(3742), + [anon_sym__Generic] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [anon_sym_asm] = ACTIONS(3742), + [anon_sym___asm__] = ACTIONS(3742), + [anon_sym___asm] = ACTIONS(3742), + [sym_number_literal] = ACTIONS(3744), + [anon_sym_L_SQUOTE] = ACTIONS(3744), + [anon_sym_u_SQUOTE] = ACTIONS(3744), + [anon_sym_U_SQUOTE] = ACTIONS(3744), + [anon_sym_u8_SQUOTE] = ACTIONS(3744), + [anon_sym_SQUOTE] = ACTIONS(3744), + [anon_sym_L_DQUOTE] = ACTIONS(3744), + [anon_sym_u_DQUOTE] = ACTIONS(3744), + [anon_sym_U_DQUOTE] = ACTIONS(3744), + [anon_sym_u8_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [anon_sym_NULL] = ACTIONS(3742), + [anon_sym_nullptr] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_export] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_import] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_delete] = ACTIONS(3742), + [anon_sym_throw] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_concept] = ACTIONS(3742), + [anon_sym_co_return] = ACTIONS(3742), + [anon_sym_co_yield] = ACTIONS(3742), + [anon_sym_R_DQUOTE] = ACTIONS(3744), + [anon_sym_LR_DQUOTE] = ACTIONS(3744), + [anon_sym_uR_DQUOTE] = ACTIONS(3744), + [anon_sym_UR_DQUOTE] = ACTIONS(3744), + [anon_sym_u8R_DQUOTE] = ACTIONS(3744), + [anon_sym_co_await] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_requires] = ACTIONS(3742), + [anon_sym_CARET_CARET] = ACTIONS(3744), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + [sym_this] = ACTIONS(3742), + }, + [STATE(406)] = { + [sym_identifier] = ACTIONS(3746), + [aux_sym_preproc_include_token1] = ACTIONS(3746), + [aux_sym_preproc_def_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token2] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3746), + [aux_sym_preproc_else_token1] = ACTIONS(3746), + [aux_sym_preproc_elif_token1] = ACTIONS(3746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3746), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3746), + [sym_preproc_directive] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_TILDE] = ACTIONS(3748), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_STAR] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym___extension__] = ACTIONS(3746), + [anon_sym_typedef] = ACTIONS(3746), + [anon_sym_virtual] = ACTIONS(3746), + [anon_sym_extern] = ACTIONS(3746), + [anon_sym___attribute__] = ACTIONS(3746), + [anon_sym___attribute] = ACTIONS(3746), + [anon_sym_using] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3748), + [anon_sym___declspec] = ACTIONS(3746), + [anon_sym___based] = ACTIONS(3746), + [anon_sym___cdecl] = ACTIONS(3746), + [anon_sym___clrcall] = ACTIONS(3746), + [anon_sym___stdcall] = ACTIONS(3746), + [anon_sym___fastcall] = ACTIONS(3746), + [anon_sym___thiscall] = ACTIONS(3746), + [anon_sym___vectorcall] = ACTIONS(3746), + [anon_sym_LBRACE] = ACTIONS(3748), + [anon_sym_signed] = ACTIONS(3746), + [anon_sym_unsigned] = ACTIONS(3746), + [anon_sym_long] = ACTIONS(3746), + [anon_sym_short] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_static] = ACTIONS(3746), + [anon_sym_register] = ACTIONS(3746), + [anon_sym_inline] = ACTIONS(3746), + [anon_sym___inline] = ACTIONS(3746), + [anon_sym___inline__] = ACTIONS(3746), + [anon_sym___forceinline] = ACTIONS(3746), + [anon_sym_thread_local] = ACTIONS(3746), + [anon_sym___thread] = ACTIONS(3746), + [anon_sym_const] = ACTIONS(3746), + [anon_sym_constexpr] = ACTIONS(3746), + [anon_sym_volatile] = ACTIONS(3746), + [anon_sym_restrict] = ACTIONS(3746), + [anon_sym___restrict__] = ACTIONS(3746), + [anon_sym__Atomic] = ACTIONS(3746), + [anon_sym__Noreturn] = ACTIONS(3746), + [anon_sym_noreturn] = ACTIONS(3746), + [anon_sym__Nonnull] = ACTIONS(3746), + [anon_sym_mutable] = ACTIONS(3746), + [anon_sym_constinit] = ACTIONS(3746), + [anon_sym_consteval] = ACTIONS(3746), + [anon_sym_alignas] = ACTIONS(3746), + [anon_sym__Alignas] = ACTIONS(3746), + [sym_primitive_type] = ACTIONS(3746), + [anon_sym_enum] = ACTIONS(3746), + [anon_sym_class] = ACTIONS(3746), + [anon_sym_struct] = ACTIONS(3746), + [anon_sym_union] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_switch] = ACTIONS(3746), + [anon_sym_case] = ACTIONS(3746), + [anon_sym_default] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_break] = ACTIONS(3746), + [anon_sym_continue] = ACTIONS(3746), + [anon_sym_goto] = ACTIONS(3746), + [anon_sym___try] = ACTIONS(3746), + [anon_sym___leave] = ACTIONS(3746), + [anon_sym_not] = ACTIONS(3746), + [anon_sym_compl] = ACTIONS(3746), + [anon_sym_DASH_DASH] = ACTIONS(3748), + [anon_sym_PLUS_PLUS] = ACTIONS(3748), + [anon_sym_sizeof] = ACTIONS(3746), + [anon_sym___alignof__] = ACTIONS(3746), + [anon_sym___alignof] = ACTIONS(3746), + [anon_sym__alignof] = ACTIONS(3746), + [anon_sym_alignof] = ACTIONS(3746), + [anon_sym__Alignof] = ACTIONS(3746), + [anon_sym_offsetof] = ACTIONS(3746), + [anon_sym__Generic] = ACTIONS(3746), + [anon_sym_typename] = ACTIONS(3746), + [anon_sym_asm] = ACTIONS(3746), + [anon_sym___asm__] = ACTIONS(3746), + [anon_sym___asm] = ACTIONS(3746), + [sym_number_literal] = ACTIONS(3748), + [anon_sym_L_SQUOTE] = ACTIONS(3748), + [anon_sym_u_SQUOTE] = ACTIONS(3748), + [anon_sym_U_SQUOTE] = ACTIONS(3748), + [anon_sym_u8_SQUOTE] = ACTIONS(3748), + [anon_sym_SQUOTE] = ACTIONS(3748), + [anon_sym_L_DQUOTE] = ACTIONS(3748), + [anon_sym_u_DQUOTE] = ACTIONS(3748), + [anon_sym_U_DQUOTE] = ACTIONS(3748), + [anon_sym_u8_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [sym_true] = ACTIONS(3746), + [sym_false] = ACTIONS(3746), + [anon_sym_NULL] = ACTIONS(3746), + [anon_sym_nullptr] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3746), + [anon_sym_decltype] = ACTIONS(3746), + [anon_sym_explicit] = ACTIONS(3746), + [anon_sym_export] = ACTIONS(3746), + [anon_sym_module] = ACTIONS(3746), + [anon_sym_import] = ACTIONS(3746), + [anon_sym_template] = ACTIONS(3746), + [anon_sym_operator] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_delete] = ACTIONS(3746), + [anon_sym_throw] = ACTIONS(3746), + [anon_sym_namespace] = ACTIONS(3746), + [anon_sym_static_assert] = ACTIONS(3746), + [anon_sym_concept] = ACTIONS(3746), + [anon_sym_co_return] = ACTIONS(3746), + [anon_sym_co_yield] = ACTIONS(3746), + [anon_sym_R_DQUOTE] = ACTIONS(3748), + [anon_sym_LR_DQUOTE] = ACTIONS(3748), + [anon_sym_uR_DQUOTE] = ACTIONS(3748), + [anon_sym_UR_DQUOTE] = ACTIONS(3748), + [anon_sym_u8R_DQUOTE] = ACTIONS(3748), + [anon_sym_co_await] = ACTIONS(3746), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_requires] = ACTIONS(3746), + [anon_sym_CARET_CARET] = ACTIONS(3748), + [anon_sym_LBRACK_COLON] = ACTIONS(3748), + [sym_this] = ACTIONS(3746), + }, + [STATE(407)] = { + [sym_identifier] = ACTIONS(3750), + [aux_sym_preproc_include_token1] = ACTIONS(3750), + [aux_sym_preproc_def_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token2] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3750), + [aux_sym_preproc_else_token1] = ACTIONS(3750), + [aux_sym_preproc_elif_token1] = ACTIONS(3750), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3750), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3750), + [sym_preproc_directive] = ACTIONS(3750), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_BANG] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3750), + [anon_sym_PLUS] = ACTIONS(3750), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym___extension__] = ACTIONS(3750), + [anon_sym_typedef] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym___attribute] = ACTIONS(3750), + [anon_sym_using] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym___cdecl] = ACTIONS(3750), + [anon_sym___clrcall] = ACTIONS(3750), + [anon_sym___stdcall] = ACTIONS(3750), + [anon_sym___fastcall] = ACTIONS(3750), + [anon_sym___thiscall] = ACTIONS(3750), + [anon_sym___vectorcall] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_signed] = ACTIONS(3750), + [anon_sym_unsigned] = ACTIONS(3750), + [anon_sym_long] = ACTIONS(3750), + [anon_sym_short] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym___inline] = ACTIONS(3750), + [anon_sym___inline__] = ACTIONS(3750), + [anon_sym___forceinline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym___thread] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym___restrict__] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym__Noreturn] = ACTIONS(3750), + [anon_sym_noreturn] = ACTIONS(3750), + [anon_sym__Nonnull] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_alignas] = ACTIONS(3750), + [anon_sym__Alignas] = ACTIONS(3750), + [sym_primitive_type] = ACTIONS(3750), + [anon_sym_enum] = ACTIONS(3750), + [anon_sym_class] = ACTIONS(3750), + [anon_sym_struct] = ACTIONS(3750), + [anon_sym_union] = ACTIONS(3750), + [anon_sym_if] = ACTIONS(3750), + [anon_sym_switch] = ACTIONS(3750), + [anon_sym_case] = ACTIONS(3750), + [anon_sym_default] = ACTIONS(3750), + [anon_sym_while] = ACTIONS(3750), + [anon_sym_do] = ACTIONS(3750), + [anon_sym_for] = ACTIONS(3750), + [anon_sym_return] = ACTIONS(3750), + [anon_sym_break] = ACTIONS(3750), + [anon_sym_continue] = ACTIONS(3750), + [anon_sym_goto] = ACTIONS(3750), + [anon_sym___try] = ACTIONS(3750), + [anon_sym___leave] = ACTIONS(3750), + [anon_sym_not] = ACTIONS(3750), + [anon_sym_compl] = ACTIONS(3750), + [anon_sym_DASH_DASH] = ACTIONS(3752), + [anon_sym_PLUS_PLUS] = ACTIONS(3752), + [anon_sym_sizeof] = ACTIONS(3750), + [anon_sym___alignof__] = ACTIONS(3750), + [anon_sym___alignof] = ACTIONS(3750), + [anon_sym__alignof] = ACTIONS(3750), + [anon_sym_alignof] = ACTIONS(3750), + [anon_sym__Alignof] = ACTIONS(3750), + [anon_sym_offsetof] = ACTIONS(3750), + [anon_sym__Generic] = ACTIONS(3750), + [anon_sym_typename] = ACTIONS(3750), + [anon_sym_asm] = ACTIONS(3750), + [anon_sym___asm__] = ACTIONS(3750), + [anon_sym___asm] = ACTIONS(3750), + [sym_number_literal] = ACTIONS(3752), + [anon_sym_L_SQUOTE] = ACTIONS(3752), + [anon_sym_u_SQUOTE] = ACTIONS(3752), + [anon_sym_U_SQUOTE] = ACTIONS(3752), + [anon_sym_u8_SQUOTE] = ACTIONS(3752), + [anon_sym_SQUOTE] = ACTIONS(3752), + [anon_sym_L_DQUOTE] = ACTIONS(3752), + [anon_sym_u_DQUOTE] = ACTIONS(3752), + [anon_sym_U_DQUOTE] = ACTIONS(3752), + [anon_sym_u8_DQUOTE] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3752), + [sym_true] = ACTIONS(3750), + [sym_false] = ACTIONS(3750), + [anon_sym_NULL] = ACTIONS(3750), + [anon_sym_nullptr] = ACTIONS(3750), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_export] = ACTIONS(3750), + [anon_sym_module] = ACTIONS(3750), + [anon_sym_import] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + [anon_sym_try] = ACTIONS(3750), + [anon_sym_delete] = ACTIONS(3750), + [anon_sym_throw] = ACTIONS(3750), + [anon_sym_namespace] = ACTIONS(3750), + [anon_sym_static_assert] = ACTIONS(3750), + [anon_sym_concept] = ACTIONS(3750), + [anon_sym_co_return] = ACTIONS(3750), + [anon_sym_co_yield] = ACTIONS(3750), + [anon_sym_R_DQUOTE] = ACTIONS(3752), + [anon_sym_LR_DQUOTE] = ACTIONS(3752), + [anon_sym_uR_DQUOTE] = ACTIONS(3752), + [anon_sym_UR_DQUOTE] = ACTIONS(3752), + [anon_sym_u8R_DQUOTE] = ACTIONS(3752), + [anon_sym_co_await] = ACTIONS(3750), + [anon_sym_new] = ACTIONS(3750), + [anon_sym_requires] = ACTIONS(3750), + [anon_sym_CARET_CARET] = ACTIONS(3752), + [anon_sym_LBRACK_COLON] = ACTIONS(3752), + [sym_this] = ACTIONS(3750), + }, + [STATE(408)] = { + [sym_identifier] = ACTIONS(3754), + [aux_sym_preproc_include_token1] = ACTIONS(3754), + [aux_sym_preproc_def_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token2] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3754), + [aux_sym_preproc_else_token1] = ACTIONS(3754), + [aux_sym_preproc_elif_token1] = ACTIONS(3754), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3754), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3754), + [sym_preproc_directive] = ACTIONS(3754), + [anon_sym_LPAREN2] = ACTIONS(3756), + [anon_sym_BANG] = ACTIONS(3756), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_DASH] = ACTIONS(3754), + [anon_sym_PLUS] = ACTIONS(3754), + [anon_sym_STAR] = ACTIONS(3756), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(3756), + [anon_sym___extension__] = ACTIONS(3754), + [anon_sym_typedef] = ACTIONS(3754), + [anon_sym_virtual] = ACTIONS(3754), + [anon_sym_extern] = ACTIONS(3754), + [anon_sym___attribute__] = ACTIONS(3754), + [anon_sym___attribute] = ACTIONS(3754), + [anon_sym_using] = ACTIONS(3754), + [anon_sym_COLON_COLON] = ACTIONS(3756), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3756), + [anon_sym___declspec] = ACTIONS(3754), + [anon_sym___based] = ACTIONS(3754), + [anon_sym___cdecl] = ACTIONS(3754), + [anon_sym___clrcall] = ACTIONS(3754), + [anon_sym___stdcall] = ACTIONS(3754), + [anon_sym___fastcall] = ACTIONS(3754), + [anon_sym___thiscall] = ACTIONS(3754), + [anon_sym___vectorcall] = ACTIONS(3754), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_signed] = ACTIONS(3754), + [anon_sym_unsigned] = ACTIONS(3754), + [anon_sym_long] = ACTIONS(3754), + [anon_sym_short] = ACTIONS(3754), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_static] = ACTIONS(3754), + [anon_sym_register] = ACTIONS(3754), + [anon_sym_inline] = ACTIONS(3754), + [anon_sym___inline] = ACTIONS(3754), + [anon_sym___inline__] = ACTIONS(3754), + [anon_sym___forceinline] = ACTIONS(3754), + [anon_sym_thread_local] = ACTIONS(3754), + [anon_sym___thread] = ACTIONS(3754), + [anon_sym_const] = ACTIONS(3754), + [anon_sym_constexpr] = ACTIONS(3754), + [anon_sym_volatile] = ACTIONS(3754), + [anon_sym_restrict] = ACTIONS(3754), + [anon_sym___restrict__] = ACTIONS(3754), + [anon_sym__Atomic] = ACTIONS(3754), + [anon_sym__Noreturn] = ACTIONS(3754), + [anon_sym_noreturn] = ACTIONS(3754), + [anon_sym__Nonnull] = ACTIONS(3754), + [anon_sym_mutable] = ACTIONS(3754), + [anon_sym_constinit] = ACTIONS(3754), + [anon_sym_consteval] = ACTIONS(3754), + [anon_sym_alignas] = ACTIONS(3754), + [anon_sym__Alignas] = ACTIONS(3754), + [sym_primitive_type] = ACTIONS(3754), + [anon_sym_enum] = ACTIONS(3754), + [anon_sym_class] = ACTIONS(3754), + [anon_sym_struct] = ACTIONS(3754), + [anon_sym_union] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(3754), + [anon_sym_switch] = ACTIONS(3754), + [anon_sym_case] = ACTIONS(3754), + [anon_sym_default] = ACTIONS(3754), + [anon_sym_while] = ACTIONS(3754), + [anon_sym_do] = ACTIONS(3754), + [anon_sym_for] = ACTIONS(3754), + [anon_sym_return] = ACTIONS(3754), + [anon_sym_break] = ACTIONS(3754), + [anon_sym_continue] = ACTIONS(3754), + [anon_sym_goto] = ACTIONS(3754), + [anon_sym___try] = ACTIONS(3754), + [anon_sym___leave] = ACTIONS(3754), + [anon_sym_not] = ACTIONS(3754), + [anon_sym_compl] = ACTIONS(3754), + [anon_sym_DASH_DASH] = ACTIONS(3756), + [anon_sym_PLUS_PLUS] = ACTIONS(3756), + [anon_sym_sizeof] = ACTIONS(3754), + [anon_sym___alignof__] = ACTIONS(3754), + [anon_sym___alignof] = ACTIONS(3754), + [anon_sym__alignof] = ACTIONS(3754), + [anon_sym_alignof] = ACTIONS(3754), + [anon_sym__Alignof] = ACTIONS(3754), + [anon_sym_offsetof] = ACTIONS(3754), + [anon_sym__Generic] = ACTIONS(3754), + [anon_sym_typename] = ACTIONS(3754), + [anon_sym_asm] = ACTIONS(3754), + [anon_sym___asm__] = ACTIONS(3754), + [anon_sym___asm] = ACTIONS(3754), + [sym_number_literal] = ACTIONS(3756), + [anon_sym_L_SQUOTE] = ACTIONS(3756), + [anon_sym_u_SQUOTE] = ACTIONS(3756), + [anon_sym_U_SQUOTE] = ACTIONS(3756), + [anon_sym_u8_SQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3756), + [anon_sym_L_DQUOTE] = ACTIONS(3756), + [anon_sym_u_DQUOTE] = ACTIONS(3756), + [anon_sym_U_DQUOTE] = ACTIONS(3756), + [anon_sym_u8_DQUOTE] = ACTIONS(3756), + [anon_sym_DQUOTE] = ACTIONS(3756), + [sym_true] = ACTIONS(3754), + [sym_false] = ACTIONS(3754), + [anon_sym_NULL] = ACTIONS(3754), + [anon_sym_nullptr] = ACTIONS(3754), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3754), + [anon_sym_decltype] = ACTIONS(3754), + [anon_sym_explicit] = ACTIONS(3754), + [anon_sym_export] = ACTIONS(3754), + [anon_sym_module] = ACTIONS(3754), + [anon_sym_import] = ACTIONS(3754), + [anon_sym_template] = ACTIONS(3754), + [anon_sym_operator] = ACTIONS(3754), + [anon_sym_try] = ACTIONS(3754), + [anon_sym_delete] = ACTIONS(3754), + [anon_sym_throw] = ACTIONS(3754), + [anon_sym_namespace] = ACTIONS(3754), + [anon_sym_static_assert] = ACTIONS(3754), + [anon_sym_concept] = ACTIONS(3754), + [anon_sym_co_return] = ACTIONS(3754), + [anon_sym_co_yield] = ACTIONS(3754), + [anon_sym_R_DQUOTE] = ACTIONS(3756), + [anon_sym_LR_DQUOTE] = ACTIONS(3756), + [anon_sym_uR_DQUOTE] = ACTIONS(3756), + [anon_sym_UR_DQUOTE] = ACTIONS(3756), + [anon_sym_u8R_DQUOTE] = ACTIONS(3756), + [anon_sym_co_await] = ACTIONS(3754), + [anon_sym_new] = ACTIONS(3754), + [anon_sym_requires] = ACTIONS(3754), + [anon_sym_CARET_CARET] = ACTIONS(3756), + [anon_sym_LBRACK_COLON] = ACTIONS(3756), + [sym_this] = ACTIONS(3754), + }, + [STATE(409)] = { + [sym_identifier] = ACTIONS(3758), + [aux_sym_preproc_include_token1] = ACTIONS(3758), + [aux_sym_preproc_def_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token2] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3758), + [aux_sym_preproc_else_token1] = ACTIONS(3758), + [aux_sym_preproc_elif_token1] = ACTIONS(3758), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3758), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3758), + [sym_preproc_directive] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_BANG] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym___extension__] = ACTIONS(3758), + [anon_sym_typedef] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym___attribute] = ACTIONS(3758), + [anon_sym_using] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym___cdecl] = ACTIONS(3758), + [anon_sym___clrcall] = ACTIONS(3758), + [anon_sym___stdcall] = ACTIONS(3758), + [anon_sym___fastcall] = ACTIONS(3758), + [anon_sym___thiscall] = ACTIONS(3758), + [anon_sym___vectorcall] = ACTIONS(3758), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_signed] = ACTIONS(3758), + [anon_sym_unsigned] = ACTIONS(3758), + [anon_sym_long] = ACTIONS(3758), + [anon_sym_short] = ACTIONS(3758), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym___restrict__] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym__Noreturn] = ACTIONS(3758), + [anon_sym_noreturn] = ACTIONS(3758), + [anon_sym__Nonnull] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_alignas] = ACTIONS(3758), + [anon_sym__Alignas] = ACTIONS(3758), + [sym_primitive_type] = ACTIONS(3758), + [anon_sym_enum] = ACTIONS(3758), + [anon_sym_class] = ACTIONS(3758), + [anon_sym_struct] = ACTIONS(3758), + [anon_sym_union] = ACTIONS(3758), + [anon_sym_if] = ACTIONS(3758), + [anon_sym_switch] = ACTIONS(3758), + [anon_sym_case] = ACTIONS(3758), + [anon_sym_default] = ACTIONS(3758), + [anon_sym_while] = ACTIONS(3758), + [anon_sym_do] = ACTIONS(3758), + [anon_sym_for] = ACTIONS(3758), + [anon_sym_return] = ACTIONS(3758), + [anon_sym_break] = ACTIONS(3758), + [anon_sym_continue] = ACTIONS(3758), + [anon_sym_goto] = ACTIONS(3758), + [anon_sym___try] = ACTIONS(3758), + [anon_sym___leave] = ACTIONS(3758), + [anon_sym_not] = ACTIONS(3758), + [anon_sym_compl] = ACTIONS(3758), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3758), + [anon_sym___alignof__] = ACTIONS(3758), + [anon_sym___alignof] = ACTIONS(3758), + [anon_sym__alignof] = ACTIONS(3758), + [anon_sym_alignof] = ACTIONS(3758), + [anon_sym__Alignof] = ACTIONS(3758), + [anon_sym_offsetof] = ACTIONS(3758), + [anon_sym__Generic] = ACTIONS(3758), + [anon_sym_typename] = ACTIONS(3758), + [anon_sym_asm] = ACTIONS(3758), + [anon_sym___asm__] = ACTIONS(3758), + [anon_sym___asm] = ACTIONS(3758), + [sym_number_literal] = ACTIONS(3760), + [anon_sym_L_SQUOTE] = ACTIONS(3760), + [anon_sym_u_SQUOTE] = ACTIONS(3760), + [anon_sym_U_SQUOTE] = ACTIONS(3760), + [anon_sym_u8_SQUOTE] = ACTIONS(3760), + [anon_sym_SQUOTE] = ACTIONS(3760), + [anon_sym_L_DQUOTE] = ACTIONS(3760), + [anon_sym_u_DQUOTE] = ACTIONS(3760), + [anon_sym_U_DQUOTE] = ACTIONS(3760), + [anon_sym_u8_DQUOTE] = ACTIONS(3760), + [anon_sym_DQUOTE] = ACTIONS(3760), + [sym_true] = ACTIONS(3758), + [sym_false] = ACTIONS(3758), + [anon_sym_NULL] = ACTIONS(3758), + [anon_sym_nullptr] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_explicit] = ACTIONS(3758), + [anon_sym_export] = ACTIONS(3758), + [anon_sym_module] = ACTIONS(3758), + [anon_sym_import] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + [anon_sym_try] = ACTIONS(3758), + [anon_sym_delete] = ACTIONS(3758), + [anon_sym_throw] = ACTIONS(3758), + [anon_sym_namespace] = ACTIONS(3758), + [anon_sym_static_assert] = ACTIONS(3758), + [anon_sym_concept] = ACTIONS(3758), + [anon_sym_co_return] = ACTIONS(3758), + [anon_sym_co_yield] = ACTIONS(3758), + [anon_sym_R_DQUOTE] = ACTIONS(3760), + [anon_sym_LR_DQUOTE] = ACTIONS(3760), + [anon_sym_uR_DQUOTE] = ACTIONS(3760), + [anon_sym_UR_DQUOTE] = ACTIONS(3760), + [anon_sym_u8R_DQUOTE] = ACTIONS(3760), + [anon_sym_co_await] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3758), + [anon_sym_requires] = ACTIONS(3758), + [anon_sym_CARET_CARET] = ACTIONS(3760), + [anon_sym_LBRACK_COLON] = ACTIONS(3760), + [sym_this] = ACTIONS(3758), + }, + [STATE(410)] = { + [sym_identifier] = ACTIONS(3762), + [aux_sym_preproc_include_token1] = ACTIONS(3762), + [aux_sym_preproc_def_token1] = ACTIONS(3762), + [aux_sym_preproc_if_token1] = ACTIONS(3762), + [aux_sym_preproc_if_token2] = ACTIONS(3762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3762), + [aux_sym_preproc_else_token1] = ACTIONS(3762), + [aux_sym_preproc_elif_token1] = ACTIONS(3762), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3762), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3762), + [sym_preproc_directive] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_BANG] = ACTIONS(3764), + [anon_sym_TILDE] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_STAR] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym___extension__] = ACTIONS(3762), + [anon_sym_typedef] = ACTIONS(3762), + [anon_sym_virtual] = ACTIONS(3762), + [anon_sym_extern] = ACTIONS(3762), + [anon_sym___attribute__] = ACTIONS(3762), + [anon_sym___attribute] = ACTIONS(3762), + [anon_sym_using] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), + [anon_sym___declspec] = ACTIONS(3762), + [anon_sym___based] = ACTIONS(3762), + [anon_sym___cdecl] = ACTIONS(3762), + [anon_sym___clrcall] = ACTIONS(3762), + [anon_sym___stdcall] = ACTIONS(3762), + [anon_sym___fastcall] = ACTIONS(3762), + [anon_sym___thiscall] = ACTIONS(3762), + [anon_sym___vectorcall] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_signed] = ACTIONS(3762), + [anon_sym_unsigned] = ACTIONS(3762), + [anon_sym_long] = ACTIONS(3762), + [anon_sym_short] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_static] = ACTIONS(3762), + [anon_sym_register] = ACTIONS(3762), + [anon_sym_inline] = ACTIONS(3762), + [anon_sym___inline] = ACTIONS(3762), + [anon_sym___inline__] = ACTIONS(3762), + [anon_sym___forceinline] = ACTIONS(3762), + [anon_sym_thread_local] = ACTIONS(3762), + [anon_sym___thread] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym___restrict__] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym__Noreturn] = ACTIONS(3762), + [anon_sym_noreturn] = ACTIONS(3762), + [anon_sym__Nonnull] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_constinit] = ACTIONS(3762), + [anon_sym_consteval] = ACTIONS(3762), + [anon_sym_alignas] = ACTIONS(3762), + [anon_sym__Alignas] = ACTIONS(3762), + [sym_primitive_type] = ACTIONS(3762), + [anon_sym_enum] = ACTIONS(3762), + [anon_sym_class] = ACTIONS(3762), + [anon_sym_struct] = ACTIONS(3762), + [anon_sym_union] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_switch] = ACTIONS(3762), + [anon_sym_case] = ACTIONS(3762), + [anon_sym_default] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_break] = ACTIONS(3762), + [anon_sym_continue] = ACTIONS(3762), + [anon_sym_goto] = ACTIONS(3762), + [anon_sym___try] = ACTIONS(3762), + [anon_sym___leave] = ACTIONS(3762), + [anon_sym_not] = ACTIONS(3762), + [anon_sym_compl] = ACTIONS(3762), + [anon_sym_DASH_DASH] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3764), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(3762), + [anon_sym___alignof] = ACTIONS(3762), + [anon_sym__alignof] = ACTIONS(3762), + [anon_sym_alignof] = ACTIONS(3762), + [anon_sym__Alignof] = ACTIONS(3762), + [anon_sym_offsetof] = ACTIONS(3762), + [anon_sym__Generic] = ACTIONS(3762), + [anon_sym_typename] = ACTIONS(3762), + [anon_sym_asm] = ACTIONS(3762), + [anon_sym___asm__] = ACTIONS(3762), + [anon_sym___asm] = ACTIONS(3762), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3764), + [anon_sym_u_SQUOTE] = ACTIONS(3764), + [anon_sym_U_SQUOTE] = ACTIONS(3764), + [anon_sym_u8_SQUOTE] = ACTIONS(3764), + [anon_sym_SQUOTE] = ACTIONS(3764), + [anon_sym_L_DQUOTE] = ACTIONS(3764), + [anon_sym_u_DQUOTE] = ACTIONS(3764), + [anon_sym_U_DQUOTE] = ACTIONS(3764), + [anon_sym_u8_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE] = ACTIONS(3764), + [sym_true] = ACTIONS(3762), + [sym_false] = ACTIONS(3762), + [anon_sym_NULL] = ACTIONS(3762), + [anon_sym_nullptr] = ACTIONS(3762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3762), + [anon_sym_decltype] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_export] = ACTIONS(3762), + [anon_sym_module] = ACTIONS(3762), + [anon_sym_import] = ACTIONS(3762), + [anon_sym_template] = ACTIONS(3762), + [anon_sym_operator] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_delete] = ACTIONS(3762), + [anon_sym_throw] = ACTIONS(3762), + [anon_sym_namespace] = ACTIONS(3762), + [anon_sym_static_assert] = ACTIONS(3762), + [anon_sym_concept] = ACTIONS(3762), + [anon_sym_co_return] = ACTIONS(3762), + [anon_sym_co_yield] = ACTIONS(3762), + [anon_sym_R_DQUOTE] = ACTIONS(3764), + [anon_sym_LR_DQUOTE] = ACTIONS(3764), + [anon_sym_uR_DQUOTE] = ACTIONS(3764), + [anon_sym_UR_DQUOTE] = ACTIONS(3764), + [anon_sym_u8R_DQUOTE] = ACTIONS(3764), + [anon_sym_co_await] = ACTIONS(3762), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_requires] = ACTIONS(3762), + [anon_sym_CARET_CARET] = ACTIONS(3764), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), + [sym_this] = ACTIONS(3762), + }, + [STATE(411)] = { + [sym_identifier] = ACTIONS(3766), + [aux_sym_preproc_include_token1] = ACTIONS(3766), + [aux_sym_preproc_def_token1] = ACTIONS(3766), + [aux_sym_preproc_if_token1] = ACTIONS(3766), + [aux_sym_preproc_if_token2] = ACTIONS(3766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3766), + [aux_sym_preproc_else_token1] = ACTIONS(3766), + [aux_sym_preproc_elif_token1] = ACTIONS(3766), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3766), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3766), + [sym_preproc_directive] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_BANG] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(3768), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_SEMI] = ACTIONS(3768), + [anon_sym___extension__] = ACTIONS(3766), + [anon_sym_typedef] = ACTIONS(3766), + [anon_sym_virtual] = ACTIONS(3766), + [anon_sym_extern] = ACTIONS(3766), + [anon_sym___attribute__] = ACTIONS(3766), + [anon_sym___attribute] = ACTIONS(3766), + [anon_sym_using] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3768), + [anon_sym___declspec] = ACTIONS(3766), + [anon_sym___based] = ACTIONS(3766), + [anon_sym___cdecl] = ACTIONS(3766), + [anon_sym___clrcall] = ACTIONS(3766), + [anon_sym___stdcall] = ACTIONS(3766), + [anon_sym___fastcall] = ACTIONS(3766), + [anon_sym___thiscall] = ACTIONS(3766), + [anon_sym___vectorcall] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_signed] = ACTIONS(3766), + [anon_sym_unsigned] = ACTIONS(3766), + [anon_sym_long] = ACTIONS(3766), + [anon_sym_short] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_static] = ACTIONS(3766), + [anon_sym_register] = ACTIONS(3766), + [anon_sym_inline] = ACTIONS(3766), + [anon_sym___inline] = ACTIONS(3766), + [anon_sym___inline__] = ACTIONS(3766), + [anon_sym___forceinline] = ACTIONS(3766), + [anon_sym_thread_local] = ACTIONS(3766), + [anon_sym___thread] = ACTIONS(3766), + [anon_sym_const] = ACTIONS(3766), + [anon_sym_constexpr] = ACTIONS(3766), + [anon_sym_volatile] = ACTIONS(3766), + [anon_sym_restrict] = ACTIONS(3766), + [anon_sym___restrict__] = ACTIONS(3766), + [anon_sym__Atomic] = ACTIONS(3766), + [anon_sym__Noreturn] = ACTIONS(3766), + [anon_sym_noreturn] = ACTIONS(3766), + [anon_sym__Nonnull] = ACTIONS(3766), + [anon_sym_mutable] = ACTIONS(3766), + [anon_sym_constinit] = ACTIONS(3766), + [anon_sym_consteval] = ACTIONS(3766), + [anon_sym_alignas] = ACTIONS(3766), + [anon_sym__Alignas] = ACTIONS(3766), + [sym_primitive_type] = ACTIONS(3766), + [anon_sym_enum] = ACTIONS(3766), + [anon_sym_class] = ACTIONS(3766), + [anon_sym_struct] = ACTIONS(3766), + [anon_sym_union] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_switch] = ACTIONS(3766), + [anon_sym_case] = ACTIONS(3766), + [anon_sym_default] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_break] = ACTIONS(3766), + [anon_sym_continue] = ACTIONS(3766), + [anon_sym_goto] = ACTIONS(3766), + [anon_sym___try] = ACTIONS(3766), + [anon_sym___leave] = ACTIONS(3766), + [anon_sym_not] = ACTIONS(3766), + [anon_sym_compl] = ACTIONS(3766), + [anon_sym_DASH_DASH] = ACTIONS(3768), + [anon_sym_PLUS_PLUS] = ACTIONS(3768), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym___alignof__] = ACTIONS(3766), + [anon_sym___alignof] = ACTIONS(3766), + [anon_sym__alignof] = ACTIONS(3766), + [anon_sym_alignof] = ACTIONS(3766), + [anon_sym__Alignof] = ACTIONS(3766), + [anon_sym_offsetof] = ACTIONS(3766), + [anon_sym__Generic] = ACTIONS(3766), + [anon_sym_typename] = ACTIONS(3766), + [anon_sym_asm] = ACTIONS(3766), + [anon_sym___asm__] = ACTIONS(3766), + [anon_sym___asm] = ACTIONS(3766), + [sym_number_literal] = ACTIONS(3768), + [anon_sym_L_SQUOTE] = ACTIONS(3768), + [anon_sym_u_SQUOTE] = ACTIONS(3768), + [anon_sym_U_SQUOTE] = ACTIONS(3768), + [anon_sym_u8_SQUOTE] = ACTIONS(3768), + [anon_sym_SQUOTE] = ACTIONS(3768), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(3766), + [sym_false] = ACTIONS(3766), + [anon_sym_NULL] = ACTIONS(3766), + [anon_sym_nullptr] = ACTIONS(3766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3766), + [anon_sym_decltype] = ACTIONS(3766), + [anon_sym_explicit] = ACTIONS(3766), + [anon_sym_export] = ACTIONS(3766), + [anon_sym_module] = ACTIONS(3766), + [anon_sym_import] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(3766), + [anon_sym_operator] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_delete] = ACTIONS(3766), + [anon_sym_throw] = ACTIONS(3766), + [anon_sym_namespace] = ACTIONS(3766), + [anon_sym_static_assert] = ACTIONS(3766), + [anon_sym_concept] = ACTIONS(3766), + [anon_sym_co_return] = ACTIONS(3766), + [anon_sym_co_yield] = ACTIONS(3766), + [anon_sym_R_DQUOTE] = ACTIONS(3768), + [anon_sym_LR_DQUOTE] = ACTIONS(3768), + [anon_sym_uR_DQUOTE] = ACTIONS(3768), + [anon_sym_UR_DQUOTE] = ACTIONS(3768), + [anon_sym_u8R_DQUOTE] = ACTIONS(3768), + [anon_sym_co_await] = ACTIONS(3766), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_requires] = ACTIONS(3766), + [anon_sym_CARET_CARET] = ACTIONS(3768), + [anon_sym_LBRACK_COLON] = ACTIONS(3768), + [sym_this] = ACTIONS(3766), + }, + [STATE(412)] = { + [sym_identifier] = ACTIONS(3770), + [aux_sym_preproc_include_token1] = ACTIONS(3770), + [aux_sym_preproc_def_token1] = ACTIONS(3770), + [aux_sym_preproc_if_token1] = ACTIONS(3770), + [aux_sym_preproc_if_token2] = ACTIONS(3770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3770), + [aux_sym_preproc_else_token1] = ACTIONS(3770), + [aux_sym_preproc_elif_token1] = ACTIONS(3770), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3770), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3770), + [sym_preproc_directive] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_BANG] = ACTIONS(3772), + [anon_sym_TILDE] = ACTIONS(3772), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_STAR] = ACTIONS(3772), + [anon_sym_AMP_AMP] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_SEMI] = ACTIONS(3772), + [anon_sym___extension__] = ACTIONS(3770), + [anon_sym_typedef] = ACTIONS(3770), + [anon_sym_virtual] = ACTIONS(3770), + [anon_sym_extern] = ACTIONS(3770), + [anon_sym___attribute__] = ACTIONS(3770), + [anon_sym___attribute] = ACTIONS(3770), + [anon_sym_using] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3772), + [anon_sym___declspec] = ACTIONS(3770), + [anon_sym___based] = ACTIONS(3770), + [anon_sym___cdecl] = ACTIONS(3770), + [anon_sym___clrcall] = ACTIONS(3770), + [anon_sym___stdcall] = ACTIONS(3770), + [anon_sym___fastcall] = ACTIONS(3770), + [anon_sym___thiscall] = ACTIONS(3770), + [anon_sym___vectorcall] = ACTIONS(3770), + [anon_sym_LBRACE] = ACTIONS(3772), + [anon_sym_signed] = ACTIONS(3770), + [anon_sym_unsigned] = ACTIONS(3770), + [anon_sym_long] = ACTIONS(3770), + [anon_sym_short] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_static] = ACTIONS(3770), + [anon_sym_register] = ACTIONS(3770), + [anon_sym_inline] = ACTIONS(3770), + [anon_sym___inline] = ACTIONS(3770), + [anon_sym___inline__] = ACTIONS(3770), + [anon_sym___forceinline] = ACTIONS(3770), + [anon_sym_thread_local] = ACTIONS(3770), + [anon_sym___thread] = ACTIONS(3770), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_constexpr] = ACTIONS(3770), + [anon_sym_volatile] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3770), + [anon_sym___restrict__] = ACTIONS(3770), + [anon_sym__Atomic] = ACTIONS(3770), + [anon_sym__Noreturn] = ACTIONS(3770), + [anon_sym_noreturn] = ACTIONS(3770), + [anon_sym__Nonnull] = ACTIONS(3770), + [anon_sym_mutable] = ACTIONS(3770), + [anon_sym_constinit] = ACTIONS(3770), + [anon_sym_consteval] = ACTIONS(3770), + [anon_sym_alignas] = ACTIONS(3770), + [anon_sym__Alignas] = ACTIONS(3770), + [sym_primitive_type] = ACTIONS(3770), + [anon_sym_enum] = ACTIONS(3770), + [anon_sym_class] = ACTIONS(3770), + [anon_sym_struct] = ACTIONS(3770), + [anon_sym_union] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_switch] = ACTIONS(3770), + [anon_sym_case] = ACTIONS(3770), + [anon_sym_default] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_break] = ACTIONS(3770), + [anon_sym_continue] = ACTIONS(3770), + [anon_sym_goto] = ACTIONS(3770), + [anon_sym___try] = ACTIONS(3770), + [anon_sym___leave] = ACTIONS(3770), + [anon_sym_not] = ACTIONS(3770), + [anon_sym_compl] = ACTIONS(3770), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_sizeof] = ACTIONS(3770), + [anon_sym___alignof__] = ACTIONS(3770), + [anon_sym___alignof] = ACTIONS(3770), + [anon_sym__alignof] = ACTIONS(3770), + [anon_sym_alignof] = ACTIONS(3770), + [anon_sym__Alignof] = ACTIONS(3770), + [anon_sym_offsetof] = ACTIONS(3770), + [anon_sym__Generic] = ACTIONS(3770), + [anon_sym_typename] = ACTIONS(3770), + [anon_sym_asm] = ACTIONS(3770), + [anon_sym___asm__] = ACTIONS(3770), + [anon_sym___asm] = ACTIONS(3770), + [sym_number_literal] = ACTIONS(3772), + [anon_sym_L_SQUOTE] = ACTIONS(3772), + [anon_sym_u_SQUOTE] = ACTIONS(3772), + [anon_sym_U_SQUOTE] = ACTIONS(3772), + [anon_sym_u8_SQUOTE] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(3772), + [anon_sym_L_DQUOTE] = ACTIONS(3772), + [anon_sym_u_DQUOTE] = ACTIONS(3772), + [anon_sym_U_DQUOTE] = ACTIONS(3772), + [anon_sym_u8_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE] = ACTIONS(3772), + [sym_true] = ACTIONS(3770), + [sym_false] = ACTIONS(3770), + [anon_sym_NULL] = ACTIONS(3770), + [anon_sym_nullptr] = ACTIONS(3770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3770), + [anon_sym_decltype] = ACTIONS(3770), + [anon_sym_explicit] = ACTIONS(3770), + [anon_sym_export] = ACTIONS(3770), + [anon_sym_module] = ACTIONS(3770), + [anon_sym_import] = ACTIONS(3770), + [anon_sym_template] = ACTIONS(3770), + [anon_sym_operator] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_throw] = ACTIONS(3770), + [anon_sym_namespace] = ACTIONS(3770), + [anon_sym_static_assert] = ACTIONS(3770), + [anon_sym_concept] = ACTIONS(3770), + [anon_sym_co_return] = ACTIONS(3770), + [anon_sym_co_yield] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3770), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_requires] = ACTIONS(3770), + [anon_sym_CARET_CARET] = ACTIONS(3772), + [anon_sym_LBRACK_COLON] = ACTIONS(3772), + [sym_this] = ACTIONS(3770), + }, + [STATE(413)] = { + [sym_identifier] = ACTIONS(3774), + [aux_sym_preproc_include_token1] = ACTIONS(3774), + [aux_sym_preproc_def_token1] = ACTIONS(3774), + [aux_sym_preproc_if_token1] = ACTIONS(3774), + [aux_sym_preproc_if_token2] = ACTIONS(3774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3774), + [aux_sym_preproc_else_token1] = ACTIONS(3774), + [aux_sym_preproc_elif_token1] = ACTIONS(3774), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3774), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3774), + [sym_preproc_directive] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_BANG] = ACTIONS(3776), + [anon_sym_TILDE] = ACTIONS(3776), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(3776), + [anon_sym_AMP_AMP] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym___extension__] = ACTIONS(3774), + [anon_sym_typedef] = ACTIONS(3774), + [anon_sym_virtual] = ACTIONS(3774), + [anon_sym_extern] = ACTIONS(3774), + [anon_sym___attribute__] = ACTIONS(3774), + [anon_sym___attribute] = ACTIONS(3774), + [anon_sym_using] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3776), + [anon_sym___declspec] = ACTIONS(3774), + [anon_sym___based] = ACTIONS(3774), + [anon_sym___cdecl] = ACTIONS(3774), + [anon_sym___clrcall] = ACTIONS(3774), + [anon_sym___stdcall] = ACTIONS(3774), + [anon_sym___fastcall] = ACTIONS(3774), + [anon_sym___thiscall] = ACTIONS(3774), + [anon_sym___vectorcall] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_signed] = ACTIONS(3774), + [anon_sym_unsigned] = ACTIONS(3774), + [anon_sym_long] = ACTIONS(3774), + [anon_sym_short] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_static] = ACTIONS(3774), + [anon_sym_register] = ACTIONS(3774), + [anon_sym_inline] = ACTIONS(3774), + [anon_sym___inline] = ACTIONS(3774), + [anon_sym___inline__] = ACTIONS(3774), + [anon_sym___forceinline] = ACTIONS(3774), + [anon_sym_thread_local] = ACTIONS(3774), + [anon_sym___thread] = ACTIONS(3774), + [anon_sym_const] = ACTIONS(3774), + [anon_sym_constexpr] = ACTIONS(3774), + [anon_sym_volatile] = ACTIONS(3774), + [anon_sym_restrict] = ACTIONS(3774), + [anon_sym___restrict__] = ACTIONS(3774), + [anon_sym__Atomic] = ACTIONS(3774), + [anon_sym__Noreturn] = ACTIONS(3774), + [anon_sym_noreturn] = ACTIONS(3774), + [anon_sym__Nonnull] = ACTIONS(3774), + [anon_sym_mutable] = ACTIONS(3774), + [anon_sym_constinit] = ACTIONS(3774), + [anon_sym_consteval] = ACTIONS(3774), + [anon_sym_alignas] = ACTIONS(3774), + [anon_sym__Alignas] = ACTIONS(3774), + [sym_primitive_type] = ACTIONS(3774), + [anon_sym_enum] = ACTIONS(3774), + [anon_sym_class] = ACTIONS(3774), + [anon_sym_struct] = ACTIONS(3774), + [anon_sym_union] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_switch] = ACTIONS(3774), + [anon_sym_case] = ACTIONS(3774), + [anon_sym_default] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_break] = ACTIONS(3774), + [anon_sym_continue] = ACTIONS(3774), + [anon_sym_goto] = ACTIONS(3774), + [anon_sym___try] = ACTIONS(3774), + [anon_sym___leave] = ACTIONS(3774), + [anon_sym_not] = ACTIONS(3774), + [anon_sym_compl] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3776), + [anon_sym_PLUS_PLUS] = ACTIONS(3776), + [anon_sym_sizeof] = ACTIONS(3774), + [anon_sym___alignof__] = ACTIONS(3774), + [anon_sym___alignof] = ACTIONS(3774), + [anon_sym__alignof] = ACTIONS(3774), + [anon_sym_alignof] = ACTIONS(3774), + [anon_sym__Alignof] = ACTIONS(3774), + [anon_sym_offsetof] = ACTIONS(3774), + [anon_sym__Generic] = ACTIONS(3774), + [anon_sym_typename] = ACTIONS(3774), + [anon_sym_asm] = ACTIONS(3774), + [anon_sym___asm__] = ACTIONS(3774), + [anon_sym___asm] = ACTIONS(3774), + [sym_number_literal] = ACTIONS(3776), + [anon_sym_L_SQUOTE] = ACTIONS(3776), + [anon_sym_u_SQUOTE] = ACTIONS(3776), + [anon_sym_U_SQUOTE] = ACTIONS(3776), + [anon_sym_u8_SQUOTE] = ACTIONS(3776), + [anon_sym_SQUOTE] = ACTIONS(3776), + [anon_sym_L_DQUOTE] = ACTIONS(3776), + [anon_sym_u_DQUOTE] = ACTIONS(3776), + [anon_sym_U_DQUOTE] = ACTIONS(3776), + [anon_sym_u8_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE] = ACTIONS(3776), + [sym_true] = ACTIONS(3774), + [sym_false] = ACTIONS(3774), + [anon_sym_NULL] = ACTIONS(3774), + [anon_sym_nullptr] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(3774), + [anon_sym_explicit] = ACTIONS(3774), + [anon_sym_export] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), + [anon_sym_import] = ACTIONS(3774), + [anon_sym_template] = ACTIONS(3774), + [anon_sym_operator] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_throw] = ACTIONS(3774), + [anon_sym_namespace] = ACTIONS(3774), + [anon_sym_static_assert] = ACTIONS(3774), + [anon_sym_concept] = ACTIONS(3774), + [anon_sym_co_return] = ACTIONS(3774), + [anon_sym_co_yield] = ACTIONS(3774), + [anon_sym_R_DQUOTE] = ACTIONS(3776), + [anon_sym_LR_DQUOTE] = ACTIONS(3776), + [anon_sym_uR_DQUOTE] = ACTIONS(3776), + [anon_sym_UR_DQUOTE] = ACTIONS(3776), + [anon_sym_u8R_DQUOTE] = ACTIONS(3776), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_requires] = ACTIONS(3774), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(3776), + [sym_this] = ACTIONS(3774), + }, + [STATE(414)] = { + [sym_identifier] = ACTIONS(3778), + [aux_sym_preproc_include_token1] = ACTIONS(3778), + [aux_sym_preproc_def_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token2] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3778), + [aux_sym_preproc_else_token1] = ACTIONS(3778), + [aux_sym_preproc_elif_token1] = ACTIONS(3778), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3778), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3778), + [sym_preproc_directive] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_TILDE] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_AMP_AMP] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym___extension__] = ACTIONS(3778), + [anon_sym_typedef] = ACTIONS(3778), + [anon_sym_virtual] = ACTIONS(3778), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym___attribute__] = ACTIONS(3778), + [anon_sym___attribute] = ACTIONS(3778), + [anon_sym_using] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3780), + [anon_sym___declspec] = ACTIONS(3778), + [anon_sym___based] = ACTIONS(3778), + [anon_sym___cdecl] = ACTIONS(3778), + [anon_sym___clrcall] = ACTIONS(3778), + [anon_sym___stdcall] = ACTIONS(3778), + [anon_sym___fastcall] = ACTIONS(3778), + [anon_sym___thiscall] = ACTIONS(3778), + [anon_sym___vectorcall] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3780), + [anon_sym_signed] = ACTIONS(3778), + [anon_sym_unsigned] = ACTIONS(3778), + [anon_sym_long] = ACTIONS(3778), + [anon_sym_short] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym___inline] = ACTIONS(3778), + [anon_sym___inline__] = ACTIONS(3778), + [anon_sym___forceinline] = ACTIONS(3778), + [anon_sym_thread_local] = ACTIONS(3778), + [anon_sym___thread] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym___restrict__] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym__Noreturn] = ACTIONS(3778), + [anon_sym_noreturn] = ACTIONS(3778), + [anon_sym__Nonnull] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_constinit] = ACTIONS(3778), + [anon_sym_consteval] = ACTIONS(3778), + [anon_sym_alignas] = ACTIONS(3778), + [anon_sym__Alignas] = ACTIONS(3778), + [sym_primitive_type] = ACTIONS(3778), + [anon_sym_enum] = ACTIONS(3778), + [anon_sym_class] = ACTIONS(3778), + [anon_sym_struct] = ACTIONS(3778), + [anon_sym_union] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_switch] = ACTIONS(3778), + [anon_sym_case] = ACTIONS(3778), + [anon_sym_default] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_break] = ACTIONS(3778), + [anon_sym_continue] = ACTIONS(3778), + [anon_sym_goto] = ACTIONS(3778), + [anon_sym___try] = ACTIONS(3778), + [anon_sym___leave] = ACTIONS(3778), + [anon_sym_not] = ACTIONS(3778), + [anon_sym_compl] = ACTIONS(3778), + [anon_sym_DASH_DASH] = ACTIONS(3780), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_sizeof] = ACTIONS(3778), + [anon_sym___alignof__] = ACTIONS(3778), + [anon_sym___alignof] = ACTIONS(3778), + [anon_sym__alignof] = ACTIONS(3778), + [anon_sym_alignof] = ACTIONS(3778), + [anon_sym__Alignof] = ACTIONS(3778), + [anon_sym_offsetof] = ACTIONS(3778), + [anon_sym__Generic] = ACTIONS(3778), + [anon_sym_typename] = ACTIONS(3778), + [anon_sym_asm] = ACTIONS(3778), + [anon_sym___asm__] = ACTIONS(3778), + [anon_sym___asm] = ACTIONS(3778), + [sym_number_literal] = ACTIONS(3780), + [anon_sym_L_SQUOTE] = ACTIONS(3780), + [anon_sym_u_SQUOTE] = ACTIONS(3780), + [anon_sym_U_SQUOTE] = ACTIONS(3780), + [anon_sym_u8_SQUOTE] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_L_DQUOTE] = ACTIONS(3780), + [anon_sym_u_DQUOTE] = ACTIONS(3780), + [anon_sym_U_DQUOTE] = ACTIONS(3780), + [anon_sym_u8_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [sym_true] = ACTIONS(3778), + [sym_false] = ACTIONS(3778), + [anon_sym_NULL] = ACTIONS(3778), + [anon_sym_nullptr] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3778), + [anon_sym_decltype] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_export] = ACTIONS(3778), + [anon_sym_module] = ACTIONS(3778), + [anon_sym_import] = ACTIONS(3778), + [anon_sym_template] = ACTIONS(3778), + [anon_sym_operator] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_delete] = ACTIONS(3778), + [anon_sym_throw] = ACTIONS(3778), + [anon_sym_namespace] = ACTIONS(3778), + [anon_sym_static_assert] = ACTIONS(3778), + [anon_sym_concept] = ACTIONS(3778), + [anon_sym_co_return] = ACTIONS(3778), + [anon_sym_co_yield] = ACTIONS(3778), + [anon_sym_R_DQUOTE] = ACTIONS(3780), + [anon_sym_LR_DQUOTE] = ACTIONS(3780), + [anon_sym_uR_DQUOTE] = ACTIONS(3780), + [anon_sym_UR_DQUOTE] = ACTIONS(3780), + [anon_sym_u8R_DQUOTE] = ACTIONS(3780), + [anon_sym_co_await] = ACTIONS(3778), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_requires] = ACTIONS(3778), + [anon_sym_CARET_CARET] = ACTIONS(3780), + [anon_sym_LBRACK_COLON] = ACTIONS(3780), + [sym_this] = ACTIONS(3778), + }, + [STATE(415)] = { + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_include_token1] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token2] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [aux_sym_preproc_else_token1] = ACTIONS(3782), + [aux_sym_preproc_elif_token1] = ACTIONS(3782), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_BANG] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym___cdecl] = ACTIONS(3782), + [anon_sym___clrcall] = ACTIONS(3782), + [anon_sym___stdcall] = ACTIONS(3782), + [anon_sym___fastcall] = ACTIONS(3782), + [anon_sym___thiscall] = ACTIONS(3782), + [anon_sym___vectorcall] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3784), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_switch] = ACTIONS(3782), + [anon_sym_case] = ACTIONS(3782), + [anon_sym_default] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_break] = ACTIONS(3782), + [anon_sym_continue] = ACTIONS(3782), + [anon_sym_goto] = ACTIONS(3782), + [anon_sym___try] = ACTIONS(3782), + [anon_sym___leave] = ACTIONS(3782), + [anon_sym_not] = ACTIONS(3782), + [anon_sym_compl] = ACTIONS(3782), + [anon_sym_DASH_DASH] = ACTIONS(3784), + [anon_sym_PLUS_PLUS] = ACTIONS(3784), + [anon_sym_sizeof] = ACTIONS(3782), + [anon_sym___alignof__] = ACTIONS(3782), + [anon_sym___alignof] = ACTIONS(3782), + [anon_sym__alignof] = ACTIONS(3782), + [anon_sym_alignof] = ACTIONS(3782), + [anon_sym__Alignof] = ACTIONS(3782), + [anon_sym_offsetof] = ACTIONS(3782), + [anon_sym__Generic] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [anon_sym_asm] = ACTIONS(3782), + [anon_sym___asm__] = ACTIONS(3782), + [anon_sym___asm] = ACTIONS(3782), + [sym_number_literal] = ACTIONS(3784), + [anon_sym_L_SQUOTE] = ACTIONS(3784), + [anon_sym_u_SQUOTE] = ACTIONS(3784), + [anon_sym_U_SQUOTE] = ACTIONS(3784), + [anon_sym_u8_SQUOTE] = ACTIONS(3784), + [anon_sym_SQUOTE] = ACTIONS(3784), + [anon_sym_L_DQUOTE] = ACTIONS(3784), + [anon_sym_u_DQUOTE] = ACTIONS(3784), + [anon_sym_U_DQUOTE] = ACTIONS(3784), + [anon_sym_u8_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [anon_sym_NULL] = ACTIONS(3782), + [anon_sym_nullptr] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_export] = ACTIONS(3782), + [anon_sym_module] = ACTIONS(3782), + [anon_sym_import] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_delete] = ACTIONS(3782), + [anon_sym_throw] = ACTIONS(3782), + [anon_sym_namespace] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_concept] = ACTIONS(3782), + [anon_sym_co_return] = ACTIONS(3782), + [anon_sym_co_yield] = ACTIONS(3782), + [anon_sym_R_DQUOTE] = ACTIONS(3784), + [anon_sym_LR_DQUOTE] = ACTIONS(3784), + [anon_sym_uR_DQUOTE] = ACTIONS(3784), + [anon_sym_UR_DQUOTE] = ACTIONS(3784), + [anon_sym_u8R_DQUOTE] = ACTIONS(3784), + [anon_sym_co_await] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_requires] = ACTIONS(3782), + [anon_sym_CARET_CARET] = ACTIONS(3784), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), + [sym_this] = ACTIONS(3782), + }, + [STATE(416)] = { + [sym_type_qualifier] = STATE(5142), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3538), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6904), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(5948), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7902), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(4042), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [aux_sym__type_definition_type_repeat1] = STATE(5142), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3786), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(3796), + [anon_sym_COLON_COLON] = ACTIONS(3798), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -115756,16 +119387,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_union] = ACTIONS(3710), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(3802), + [anon_sym_class] = ACTIONS(3804), + [anon_sym_struct] = ACTIONS(3806), + [anon_sym_union] = ACTIONS(3808), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -115773,7 +119404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3814), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -115793,245 +119424,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(392)] = { - [sym_type_qualifier] = STATE(5032), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(2426), - [sym_sized_type_specifier] = STATE(3067), - [sym_enum_specifier] = STATE(3067), - [sym_struct_specifier] = STATE(3067), - [sym_union_specifier] = STATE(3067), - [sym_expression] = STATE(5217), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_type_descriptor] = STATE(5609), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_placeholder_type_specifier] = STATE(3067), - [sym_decltype_auto] = STATE(2997), - [sym_decltype] = STATE(2942), - [sym_class_specifier] = STATE(3067), - [sym__class_name] = STATE(10583), - [sym_dependent_type] = STATE(3067), - [sym_template_type] = STATE(2935), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7909), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(3059), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(3177), - [sym__splice_specialization_specifier] = STATE(2601), - [sym_splice_type_specifier] = STATE(3041), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [aux_sym__type_definition_type_repeat1] = STATE(5032), - [aux_sym_sized_type_specifier_repeat1] = STATE(2180), - [sym_identifier] = ACTIONS(3724), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2238), - [anon_sym_COLON_COLON] = ACTIONS(3726), - [anon_sym_signed] = ACTIONS(3728), - [anon_sym_unsigned] = ACTIONS(3728), - [anon_sym_long] = ACTIONS(3728), - [anon_sym_short] = ACTIONS(3728), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3730), - [anon_sym_enum] = ACTIONS(3732), - [anon_sym_class] = ACTIONS(3734), - [anon_sym_struct] = ACTIONS(3736), - [anon_sym_union] = ACTIONS(3738), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(3740), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3742), - [anon_sym_decltype] = ACTIONS(3744), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(417)] = { + [sym_identifier] = ACTIONS(3822), + [aux_sym_preproc_include_token1] = ACTIONS(3822), + [aux_sym_preproc_def_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token2] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3822), + [aux_sym_preproc_else_token1] = ACTIONS(3822), + [aux_sym_preproc_elif_token1] = ACTIONS(3822), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3822), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3822), + [sym_preproc_directive] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3824), + [anon_sym___extension__] = ACTIONS(3822), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_virtual] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym___attribute__] = ACTIONS(3822), + [anon_sym___attribute] = ACTIONS(3822), + [anon_sym_using] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3824), + [anon_sym___declspec] = ACTIONS(3822), + [anon_sym___based] = ACTIONS(3822), + [anon_sym___cdecl] = ACTIONS(3822), + [anon_sym___clrcall] = ACTIONS(3822), + [anon_sym___stdcall] = ACTIONS(3822), + [anon_sym___fastcall] = ACTIONS(3822), + [anon_sym___thiscall] = ACTIONS(3822), + [anon_sym___vectorcall] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3824), + [anon_sym_signed] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3822), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_inline] = ACTIONS(3822), + [anon_sym___inline] = ACTIONS(3822), + [anon_sym___inline__] = ACTIONS(3822), + [anon_sym___forceinline] = ACTIONS(3822), + [anon_sym_thread_local] = ACTIONS(3822), + [anon_sym___thread] = ACTIONS(3822), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_constexpr] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym___restrict__] = ACTIONS(3822), + [anon_sym__Atomic] = ACTIONS(3822), + [anon_sym__Noreturn] = ACTIONS(3822), + [anon_sym_noreturn] = ACTIONS(3822), + [anon_sym__Nonnull] = ACTIONS(3822), + [anon_sym_mutable] = ACTIONS(3822), + [anon_sym_constinit] = ACTIONS(3822), + [anon_sym_consteval] = ACTIONS(3822), + [anon_sym_alignas] = ACTIONS(3822), + [anon_sym__Alignas] = ACTIONS(3822), + [sym_primitive_type] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_class] = ACTIONS(3822), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_if] = ACTIONS(3822), + [anon_sym_switch] = ACTIONS(3822), + [anon_sym_case] = ACTIONS(3822), + [anon_sym_default] = ACTIONS(3822), + [anon_sym_while] = ACTIONS(3822), + [anon_sym_do] = ACTIONS(3822), + [anon_sym_for] = ACTIONS(3822), + [anon_sym_return] = ACTIONS(3822), + [anon_sym_break] = ACTIONS(3822), + [anon_sym_continue] = ACTIONS(3822), + [anon_sym_goto] = ACTIONS(3822), + [anon_sym___try] = ACTIONS(3822), + [anon_sym___leave] = ACTIONS(3822), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(3824), + [anon_sym_PLUS_PLUS] = ACTIONS(3824), + [anon_sym_sizeof] = ACTIONS(3822), + [anon_sym___alignof__] = ACTIONS(3822), + [anon_sym___alignof] = ACTIONS(3822), + [anon_sym__alignof] = ACTIONS(3822), + [anon_sym_alignof] = ACTIONS(3822), + [anon_sym__Alignof] = ACTIONS(3822), + [anon_sym_offsetof] = ACTIONS(3822), + [anon_sym__Generic] = ACTIONS(3822), + [anon_sym_typename] = ACTIONS(3822), + [anon_sym_asm] = ACTIONS(3822), + [anon_sym___asm__] = ACTIONS(3822), + [anon_sym___asm] = ACTIONS(3822), + [sym_number_literal] = ACTIONS(3824), + [anon_sym_L_SQUOTE] = ACTIONS(3824), + [anon_sym_u_SQUOTE] = ACTIONS(3824), + [anon_sym_U_SQUOTE] = ACTIONS(3824), + [anon_sym_u8_SQUOTE] = ACTIONS(3824), + [anon_sym_SQUOTE] = ACTIONS(3824), + [anon_sym_L_DQUOTE] = ACTIONS(3824), + [anon_sym_u_DQUOTE] = ACTIONS(3824), + [anon_sym_U_DQUOTE] = ACTIONS(3824), + [anon_sym_u8_DQUOTE] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(3824), + [sym_true] = ACTIONS(3822), + [sym_false] = ACTIONS(3822), + [anon_sym_NULL] = ACTIONS(3822), + [anon_sym_nullptr] = ACTIONS(3822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3822), + [anon_sym_decltype] = ACTIONS(3822), + [anon_sym_explicit] = ACTIONS(3822), + [anon_sym_export] = ACTIONS(3822), + [anon_sym_module] = ACTIONS(3822), + [anon_sym_import] = ACTIONS(3822), + [anon_sym_template] = ACTIONS(3822), + [anon_sym_operator] = ACTIONS(3822), + [anon_sym_try] = ACTIONS(3822), + [anon_sym_delete] = ACTIONS(3822), + [anon_sym_throw] = ACTIONS(3822), + [anon_sym_namespace] = ACTIONS(3822), + [anon_sym_static_assert] = ACTIONS(3822), + [anon_sym_concept] = ACTIONS(3822), + [anon_sym_co_return] = ACTIONS(3822), + [anon_sym_co_yield] = ACTIONS(3822), + [anon_sym_R_DQUOTE] = ACTIONS(3824), + [anon_sym_LR_DQUOTE] = ACTIONS(3824), + [anon_sym_uR_DQUOTE] = ACTIONS(3824), + [anon_sym_UR_DQUOTE] = ACTIONS(3824), + [anon_sym_u8R_DQUOTE] = ACTIONS(3824), + [anon_sym_co_await] = ACTIONS(3822), + [anon_sym_new] = ACTIONS(3822), + [anon_sym_requires] = ACTIONS(3822), + [anon_sym_CARET_CARET] = ACTIONS(3824), + [anon_sym_LBRACK_COLON] = ACTIONS(3824), + [sym_this] = ACTIONS(3822), }, - [STATE(393)] = { - [sym_type_qualifier] = STATE(5192), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(3801), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(6518), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(5965), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7943), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(4088), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [aux_sym__type_definition_type_repeat1] = STATE(5192), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3746), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(3756), - [anon_sym_COLON_COLON] = ACTIONS(3758), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(418)] = { + [sym_type_qualifier] = STATE(5112), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3961), + [sym_sized_type_specifier] = STATE(4523), + [sym_enum_specifier] = STATE(4523), + [sym_struct_specifier] = STATE(4523), + [sym_union_specifier] = STATE(4523), + [sym_expression] = STATE(6792), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_type_descriptor] = STATE(7202), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_placeholder_type_specifier] = STATE(4523), + [sym_decltype_auto] = STATE(4522), + [sym_decltype] = STATE(4361), + [sym_class_specifier] = STATE(4523), + [sym__class_name] = STATE(10452), + [sym_dependent_type] = STATE(4523), + [sym_template_type] = STATE(4573), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7942), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(4640), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(4923), + [sym__splice_specialization_specifier] = STATE(4290), + [sym_splice_type_specifier] = STATE(4708), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [aux_sym__type_definition_type_repeat1] = STATE(5112), + [aux_sym_sized_type_specifier_repeat1] = STATE(3579), + [sym_identifier] = ACTIONS(3826), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3224), + [anon_sym_COLON_COLON] = ACTIONS(3828), + [anon_sym_signed] = ACTIONS(3830), + [anon_sym_unsigned] = ACTIONS(3830), + [anon_sym_long] = ACTIONS(3830), + [anon_sym_short] = ACTIONS(3830), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -116046,137 +119677,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_union] = ACTIONS(3710), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3716), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [sym_primitive_type] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3832), + [anon_sym_class] = ACTIONS(3834), + [anon_sym_struct] = ACTIONS(3836), + [anon_sym_union] = ACTIONS(3838), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(3840), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3264), + [anon_sym_decltype] = ACTIONS(3266), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(394)] = { - [sym_type_qualifier] = STATE(5177), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(3585), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(6483), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(5965), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7943), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(4088), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5177), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3778), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(419)] = { + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_include_token1] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token2] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [aux_sym_preproc_else_token1] = ACTIONS(3782), + [aux_sym_preproc_elif_token1] = ACTIONS(3782), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_BANG] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym___cdecl] = ACTIONS(3782), + [anon_sym___clrcall] = ACTIONS(3782), + [anon_sym___stdcall] = ACTIONS(3782), + [anon_sym___fastcall] = ACTIONS(3782), + [anon_sym___thiscall] = ACTIONS(3782), + [anon_sym___vectorcall] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3784), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_switch] = ACTIONS(3782), + [anon_sym_case] = ACTIONS(3782), + [anon_sym_default] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_break] = ACTIONS(3782), + [anon_sym_continue] = ACTIONS(3782), + [anon_sym_goto] = ACTIONS(3782), + [anon_sym___try] = ACTIONS(3782), + [anon_sym___leave] = ACTIONS(3782), + [anon_sym_not] = ACTIONS(3782), + [anon_sym_compl] = ACTIONS(3782), + [anon_sym_DASH_DASH] = ACTIONS(3784), + [anon_sym_PLUS_PLUS] = ACTIONS(3784), + [anon_sym_sizeof] = ACTIONS(3782), + [anon_sym___alignof__] = ACTIONS(3782), + [anon_sym___alignof] = ACTIONS(3782), + [anon_sym__alignof] = ACTIONS(3782), + [anon_sym_alignof] = ACTIONS(3782), + [anon_sym__Alignof] = ACTIONS(3782), + [anon_sym_offsetof] = ACTIONS(3782), + [anon_sym__Generic] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [anon_sym_asm] = ACTIONS(3782), + [anon_sym___asm__] = ACTIONS(3782), + [anon_sym___asm] = ACTIONS(3782), + [sym_number_literal] = ACTIONS(3784), + [anon_sym_L_SQUOTE] = ACTIONS(3784), + [anon_sym_u_SQUOTE] = ACTIONS(3784), + [anon_sym_U_SQUOTE] = ACTIONS(3784), + [anon_sym_u8_SQUOTE] = ACTIONS(3784), + [anon_sym_SQUOTE] = ACTIONS(3784), + [anon_sym_L_DQUOTE] = ACTIONS(3784), + [anon_sym_u_DQUOTE] = ACTIONS(3784), + [anon_sym_U_DQUOTE] = ACTIONS(3784), + [anon_sym_u8_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [anon_sym_NULL] = ACTIONS(3782), + [anon_sym_nullptr] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_export] = ACTIONS(3782), + [anon_sym_module] = ACTIONS(3782), + [anon_sym_import] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_delete] = ACTIONS(3782), + [anon_sym_throw] = ACTIONS(3782), + [anon_sym_namespace] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_concept] = ACTIONS(3782), + [anon_sym_co_return] = ACTIONS(3782), + [anon_sym_co_yield] = ACTIONS(3782), + [anon_sym_R_DQUOTE] = ACTIONS(3784), + [anon_sym_LR_DQUOTE] = ACTIONS(3784), + [anon_sym_uR_DQUOTE] = ACTIONS(3784), + [anon_sym_UR_DQUOTE] = ACTIONS(3784), + [anon_sym_u8R_DQUOTE] = ACTIONS(3784), + [anon_sym_co_await] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_requires] = ACTIONS(3782), + [anon_sym_CARET_CARET] = ACTIONS(3784), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), + [sym_this] = ACTIONS(3782), + }, + [STATE(420)] = { + [sym_identifier] = ACTIONS(3842), + [aux_sym_preproc_include_token1] = ACTIONS(3842), + [aux_sym_preproc_def_token1] = ACTIONS(3842), + [aux_sym_preproc_if_token1] = ACTIONS(3842), + [aux_sym_preproc_if_token2] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3842), + [aux_sym_preproc_else_token1] = ACTIONS(3842), + [aux_sym_preproc_elif_token1] = ACTIONS(3842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3842), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3842), + [sym_preproc_directive] = ACTIONS(3842), + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_BANG] = ACTIONS(3844), + [anon_sym_TILDE] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3842), + [anon_sym_PLUS] = ACTIONS(3842), + [anon_sym_STAR] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym___extension__] = ACTIONS(3842), + [anon_sym_typedef] = ACTIONS(3842), + [anon_sym_virtual] = ACTIONS(3842), + [anon_sym_extern] = ACTIONS(3842), + [anon_sym___attribute__] = ACTIONS(3842), + [anon_sym___attribute] = ACTIONS(3842), + [anon_sym_using] = ACTIONS(3842), + [anon_sym_COLON_COLON] = ACTIONS(3844), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3844), + [anon_sym___declspec] = ACTIONS(3842), + [anon_sym___based] = ACTIONS(3842), + [anon_sym___cdecl] = ACTIONS(3842), + [anon_sym___clrcall] = ACTIONS(3842), + [anon_sym___stdcall] = ACTIONS(3842), + [anon_sym___fastcall] = ACTIONS(3842), + [anon_sym___thiscall] = ACTIONS(3842), + [anon_sym___vectorcall] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3844), + [anon_sym_signed] = ACTIONS(3842), + [anon_sym_unsigned] = ACTIONS(3842), + [anon_sym_long] = ACTIONS(3842), + [anon_sym_short] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_static] = ACTIONS(3842), + [anon_sym_register] = ACTIONS(3842), + [anon_sym_inline] = ACTIONS(3842), + [anon_sym___inline] = ACTIONS(3842), + [anon_sym___inline__] = ACTIONS(3842), + [anon_sym___forceinline] = ACTIONS(3842), + [anon_sym_thread_local] = ACTIONS(3842), + [anon_sym___thread] = ACTIONS(3842), + [anon_sym_const] = ACTIONS(3842), + [anon_sym_constexpr] = ACTIONS(3842), + [anon_sym_volatile] = ACTIONS(3842), + [anon_sym_restrict] = ACTIONS(3842), + [anon_sym___restrict__] = ACTIONS(3842), + [anon_sym__Atomic] = ACTIONS(3842), + [anon_sym__Noreturn] = ACTIONS(3842), + [anon_sym_noreturn] = ACTIONS(3842), + [anon_sym__Nonnull] = ACTIONS(3842), + [anon_sym_mutable] = ACTIONS(3842), + [anon_sym_constinit] = ACTIONS(3842), + [anon_sym_consteval] = ACTIONS(3842), + [anon_sym_alignas] = ACTIONS(3842), + [anon_sym__Alignas] = ACTIONS(3842), + [sym_primitive_type] = ACTIONS(3842), + [anon_sym_enum] = ACTIONS(3842), + [anon_sym_class] = ACTIONS(3842), + [anon_sym_struct] = ACTIONS(3842), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_if] = ACTIONS(3842), + [anon_sym_switch] = ACTIONS(3842), + [anon_sym_case] = ACTIONS(3842), + [anon_sym_default] = ACTIONS(3842), + [anon_sym_while] = ACTIONS(3842), + [anon_sym_do] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3842), + [anon_sym_return] = ACTIONS(3842), + [anon_sym_break] = ACTIONS(3842), + [anon_sym_continue] = ACTIONS(3842), + [anon_sym_goto] = ACTIONS(3842), + [anon_sym___try] = ACTIONS(3842), + [anon_sym___leave] = ACTIONS(3842), + [anon_sym_not] = ACTIONS(3842), + [anon_sym_compl] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(3842), + [anon_sym___alignof__] = ACTIONS(3842), + [anon_sym___alignof] = ACTIONS(3842), + [anon_sym__alignof] = ACTIONS(3842), + [anon_sym_alignof] = ACTIONS(3842), + [anon_sym__Alignof] = ACTIONS(3842), + [anon_sym_offsetof] = ACTIONS(3842), + [anon_sym__Generic] = ACTIONS(3842), + [anon_sym_typename] = ACTIONS(3842), + [anon_sym_asm] = ACTIONS(3842), + [anon_sym___asm__] = ACTIONS(3842), + [anon_sym___asm] = ACTIONS(3842), + [sym_number_literal] = ACTIONS(3844), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3844), + [anon_sym_u_DQUOTE] = ACTIONS(3844), + [anon_sym_U_DQUOTE] = ACTIONS(3844), + [anon_sym_u8_DQUOTE] = ACTIONS(3844), + [anon_sym_DQUOTE] = ACTIONS(3844), + [sym_true] = ACTIONS(3842), + [sym_false] = ACTIONS(3842), + [anon_sym_NULL] = ACTIONS(3842), + [anon_sym_nullptr] = ACTIONS(3842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3842), + [anon_sym_decltype] = ACTIONS(3842), + [anon_sym_explicit] = ACTIONS(3842), + [anon_sym_export] = ACTIONS(3842), + [anon_sym_module] = ACTIONS(3842), + [anon_sym_import] = ACTIONS(3842), + [anon_sym_template] = ACTIONS(3842), + [anon_sym_operator] = ACTIONS(3842), + [anon_sym_try] = ACTIONS(3842), + [anon_sym_delete] = ACTIONS(3842), + [anon_sym_throw] = ACTIONS(3842), + [anon_sym_namespace] = ACTIONS(3842), + [anon_sym_static_assert] = ACTIONS(3842), + [anon_sym_concept] = ACTIONS(3842), + [anon_sym_co_return] = ACTIONS(3842), + [anon_sym_co_yield] = ACTIONS(3842), + [anon_sym_R_DQUOTE] = ACTIONS(3844), + [anon_sym_LR_DQUOTE] = ACTIONS(3844), + [anon_sym_uR_DQUOTE] = ACTIONS(3844), + [anon_sym_UR_DQUOTE] = ACTIONS(3844), + [anon_sym_u8R_DQUOTE] = ACTIONS(3844), + [anon_sym_co_await] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3842), + [anon_sym_requires] = ACTIONS(3842), + [anon_sym_CARET_CARET] = ACTIONS(3844), + [anon_sym_LBRACK_COLON] = ACTIONS(3844), + [sym_this] = ACTIONS(3842), + }, + [STATE(421)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6969), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11551), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), - [anon_sym_COLON_COLON] = ACTIONS(3782), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -116191,11 +120112,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_union] = ACTIONS(3710), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -116208,7 +120129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3716), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -116228,9 +120149,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -116241,87 +120162,1392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(395)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7107), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11418), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), + [STATE(422)] = { + [sym_catch_clause] = STATE(426), + [aux_sym_constructor_try_statement_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(3170), + [aux_sym_preproc_include_token1] = ACTIONS(3170), + [aux_sym_preproc_def_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token2] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3170), + [sym_preproc_directive] = ACTIONS(3170), + [anon_sym_LPAREN2] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3170), + [anon_sym_virtual] = ACTIONS(3170), + [anon_sym_extern] = ACTIONS(3170), + [anon_sym___attribute__] = ACTIONS(3170), + [anon_sym___attribute] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(3172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3172), + [anon_sym___declspec] = ACTIONS(3170), + [anon_sym___based] = ACTIONS(3170), + [anon_sym___cdecl] = ACTIONS(3170), + [anon_sym___clrcall] = ACTIONS(3170), + [anon_sym___stdcall] = ACTIONS(3170), + [anon_sym___fastcall] = ACTIONS(3170), + [anon_sym___thiscall] = ACTIONS(3170), + [anon_sym___vectorcall] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3170), + [anon_sym_unsigned] = ACTIONS(3170), + [anon_sym_long] = ACTIONS(3170), + [anon_sym_short] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_register] = ACTIONS(3170), + [anon_sym_inline] = ACTIONS(3170), + [anon_sym___inline] = ACTIONS(3170), + [anon_sym___inline__] = ACTIONS(3170), + [anon_sym___forceinline] = ACTIONS(3170), + [anon_sym_thread_local] = ACTIONS(3170), + [anon_sym___thread] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_constexpr] = ACTIONS(3170), + [anon_sym_volatile] = ACTIONS(3170), + [anon_sym_restrict] = ACTIONS(3170), + [anon_sym___restrict__] = ACTIONS(3170), + [anon_sym__Atomic] = ACTIONS(3170), + [anon_sym__Noreturn] = ACTIONS(3170), + [anon_sym_noreturn] = ACTIONS(3170), + [anon_sym__Nonnull] = ACTIONS(3170), + [anon_sym_mutable] = ACTIONS(3170), + [anon_sym_constinit] = ACTIONS(3170), + [anon_sym_consteval] = ACTIONS(3170), + [anon_sym_alignas] = ACTIONS(3170), + [anon_sym__Alignas] = ACTIONS(3170), + [sym_primitive_type] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_case] = ACTIONS(3170), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_goto] = ACTIONS(3170), + [anon_sym___try] = ACTIONS(3170), + [anon_sym___leave] = ACTIONS(3170), + [anon_sym_not] = ACTIONS(3170), + [anon_sym_compl] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_sizeof] = ACTIONS(3170), + [anon_sym___alignof__] = ACTIONS(3170), + [anon_sym___alignof] = ACTIONS(3170), + [anon_sym__alignof] = ACTIONS(3170), + [anon_sym_alignof] = ACTIONS(3170), + [anon_sym__Alignof] = ACTIONS(3170), + [anon_sym_offsetof] = ACTIONS(3170), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_typename] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3170), + [anon_sym___asm__] = ACTIONS(3170), + [anon_sym___asm] = ACTIONS(3170), + [sym_number_literal] = ACTIONS(3172), + [anon_sym_L_SQUOTE] = ACTIONS(3172), + [anon_sym_u_SQUOTE] = ACTIONS(3172), + [anon_sym_U_SQUOTE] = ACTIONS(3172), + [anon_sym_u8_SQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_L_DQUOTE] = ACTIONS(3172), + [anon_sym_u_DQUOTE] = ACTIONS(3172), + [anon_sym_U_DQUOTE] = ACTIONS(3172), + [anon_sym_u8_DQUOTE] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [anon_sym_NULL] = ACTIONS(3170), + [anon_sym_nullptr] = ACTIONS(3170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3170), + [anon_sym_decltype] = ACTIONS(3170), + [anon_sym_explicit] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_template] = ACTIONS(3170), + [anon_sym_operator] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_static_assert] = ACTIONS(3170), + [anon_sym_concept] = ACTIONS(3170), + [anon_sym_co_return] = ACTIONS(3170), + [anon_sym_co_yield] = ACTIONS(3170), + [anon_sym_catch] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3172), + [anon_sym_LR_DQUOTE] = ACTIONS(3172), + [anon_sym_uR_DQUOTE] = ACTIONS(3172), + [anon_sym_UR_DQUOTE] = ACTIONS(3172), + [anon_sym_u8R_DQUOTE] = ACTIONS(3172), + [anon_sym_co_await] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_requires] = ACTIONS(3170), + [anon_sym_CARET_CARET] = ACTIONS(3172), + [anon_sym_LBRACK_COLON] = ACTIONS(3172), + [sym_this] = ACTIONS(3170), + }, + [STATE(423)] = { + [sym_identifier] = ACTIONS(3854), + [aux_sym_preproc_include_token1] = ACTIONS(3854), + [aux_sym_preproc_def_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token2] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3854), + [aux_sym_preproc_else_token1] = ACTIONS(3854), + [aux_sym_preproc_elif_token1] = ACTIONS(3854), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3854), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3854), + [sym_preproc_directive] = ACTIONS(3854), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3856), + [anon_sym_TILDE] = ACTIONS(3856), + [anon_sym_DASH] = ACTIONS(3854), + [anon_sym_PLUS] = ACTIONS(3854), + [anon_sym_STAR] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + [anon_sym_SEMI] = ACTIONS(3856), + [anon_sym___extension__] = ACTIONS(3854), + [anon_sym_typedef] = ACTIONS(3854), + [anon_sym_virtual] = ACTIONS(3854), + [anon_sym_extern] = ACTIONS(3854), + [anon_sym___attribute__] = ACTIONS(3854), + [anon_sym___attribute] = ACTIONS(3854), + [anon_sym_using] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3856), + [anon_sym___declspec] = ACTIONS(3854), + [anon_sym___based] = ACTIONS(3854), + [anon_sym___cdecl] = ACTIONS(3854), + [anon_sym___clrcall] = ACTIONS(3854), + [anon_sym___stdcall] = ACTIONS(3854), + [anon_sym___fastcall] = ACTIONS(3854), + [anon_sym___thiscall] = ACTIONS(3854), + [anon_sym___vectorcall] = ACTIONS(3854), + [anon_sym_LBRACE] = ACTIONS(3856), + [anon_sym_signed] = ACTIONS(3854), + [anon_sym_unsigned] = ACTIONS(3854), + [anon_sym_long] = ACTIONS(3854), + [anon_sym_short] = ACTIONS(3854), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_static] = ACTIONS(3854), + [anon_sym_register] = ACTIONS(3854), + [anon_sym_inline] = ACTIONS(3854), + [anon_sym___inline] = ACTIONS(3854), + [anon_sym___inline__] = ACTIONS(3854), + [anon_sym___forceinline] = ACTIONS(3854), + [anon_sym_thread_local] = ACTIONS(3854), + [anon_sym___thread] = ACTIONS(3854), + [anon_sym_const] = ACTIONS(3854), + [anon_sym_constexpr] = ACTIONS(3854), + [anon_sym_volatile] = ACTIONS(3854), + [anon_sym_restrict] = ACTIONS(3854), + [anon_sym___restrict__] = ACTIONS(3854), + [anon_sym__Atomic] = ACTIONS(3854), + [anon_sym__Noreturn] = ACTIONS(3854), + [anon_sym_noreturn] = ACTIONS(3854), + [anon_sym__Nonnull] = ACTIONS(3854), + [anon_sym_mutable] = ACTIONS(3854), + [anon_sym_constinit] = ACTIONS(3854), + [anon_sym_consteval] = ACTIONS(3854), + [anon_sym_alignas] = ACTIONS(3854), + [anon_sym__Alignas] = ACTIONS(3854), + [sym_primitive_type] = ACTIONS(3854), + [anon_sym_enum] = ACTIONS(3854), + [anon_sym_class] = ACTIONS(3854), + [anon_sym_struct] = ACTIONS(3854), + [anon_sym_union] = ACTIONS(3854), + [anon_sym_if] = ACTIONS(3854), + [anon_sym_switch] = ACTIONS(3854), + [anon_sym_case] = ACTIONS(3854), + [anon_sym_default] = ACTIONS(3854), + [anon_sym_while] = ACTIONS(3854), + [anon_sym_do] = ACTIONS(3854), + [anon_sym_for] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(3854), + [anon_sym_break] = ACTIONS(3854), + [anon_sym_continue] = ACTIONS(3854), + [anon_sym_goto] = ACTIONS(3854), + [anon_sym___try] = ACTIONS(3854), + [anon_sym___leave] = ACTIONS(3854), + [anon_sym_not] = ACTIONS(3854), + [anon_sym_compl] = ACTIONS(3854), + [anon_sym_DASH_DASH] = ACTIONS(3856), + [anon_sym_PLUS_PLUS] = ACTIONS(3856), + [anon_sym_sizeof] = ACTIONS(3854), + [anon_sym___alignof__] = ACTIONS(3854), + [anon_sym___alignof] = ACTIONS(3854), + [anon_sym__alignof] = ACTIONS(3854), + [anon_sym_alignof] = ACTIONS(3854), + [anon_sym__Alignof] = ACTIONS(3854), + [anon_sym_offsetof] = ACTIONS(3854), + [anon_sym__Generic] = ACTIONS(3854), + [anon_sym_typename] = ACTIONS(3854), + [anon_sym_asm] = ACTIONS(3854), + [anon_sym___asm__] = ACTIONS(3854), + [anon_sym___asm] = ACTIONS(3854), + [sym_number_literal] = ACTIONS(3856), + [anon_sym_L_SQUOTE] = ACTIONS(3856), + [anon_sym_u_SQUOTE] = ACTIONS(3856), + [anon_sym_U_SQUOTE] = ACTIONS(3856), + [anon_sym_u8_SQUOTE] = ACTIONS(3856), + [anon_sym_SQUOTE] = ACTIONS(3856), + [anon_sym_L_DQUOTE] = ACTIONS(3856), + [anon_sym_u_DQUOTE] = ACTIONS(3856), + [anon_sym_U_DQUOTE] = ACTIONS(3856), + [anon_sym_u8_DQUOTE] = ACTIONS(3856), + [anon_sym_DQUOTE] = ACTIONS(3856), + [sym_true] = ACTIONS(3854), + [sym_false] = ACTIONS(3854), + [anon_sym_NULL] = ACTIONS(3854), + [anon_sym_nullptr] = ACTIONS(3854), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3854), + [anon_sym_decltype] = ACTIONS(3854), + [anon_sym_explicit] = ACTIONS(3854), + [anon_sym_export] = ACTIONS(3854), + [anon_sym_module] = ACTIONS(3854), + [anon_sym_import] = ACTIONS(3854), + [anon_sym_template] = ACTIONS(3854), + [anon_sym_operator] = ACTIONS(3854), + [anon_sym_try] = ACTIONS(3854), + [anon_sym_delete] = ACTIONS(3854), + [anon_sym_throw] = ACTIONS(3854), + [anon_sym_namespace] = ACTIONS(3854), + [anon_sym_static_assert] = ACTIONS(3854), + [anon_sym_concept] = ACTIONS(3854), + [anon_sym_co_return] = ACTIONS(3854), + [anon_sym_co_yield] = ACTIONS(3854), + [anon_sym_R_DQUOTE] = ACTIONS(3856), + [anon_sym_LR_DQUOTE] = ACTIONS(3856), + [anon_sym_uR_DQUOTE] = ACTIONS(3856), + [anon_sym_UR_DQUOTE] = ACTIONS(3856), + [anon_sym_u8R_DQUOTE] = ACTIONS(3856), + [anon_sym_co_await] = ACTIONS(3854), + [anon_sym_new] = ACTIONS(3854), + [anon_sym_requires] = ACTIONS(3854), + [anon_sym_CARET_CARET] = ACTIONS(3856), + [anon_sym_LBRACK_COLON] = ACTIONS(3856), + [sym_this] = ACTIONS(3854), + }, + [STATE(424)] = { + [sym_identifier] = ACTIONS(3858), + [aux_sym_preproc_include_token1] = ACTIONS(3858), + [aux_sym_preproc_def_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token2] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3858), + [aux_sym_preproc_else_token1] = ACTIONS(3858), + [aux_sym_preproc_elif_token1] = ACTIONS(3858), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3858), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3858), + [sym_preproc_directive] = ACTIONS(3858), + [anon_sym_LPAREN2] = ACTIONS(3860), + [anon_sym_BANG] = ACTIONS(3860), + [anon_sym_TILDE] = ACTIONS(3860), + [anon_sym_DASH] = ACTIONS(3858), + [anon_sym_PLUS] = ACTIONS(3858), + [anon_sym_STAR] = ACTIONS(3860), + [anon_sym_AMP_AMP] = ACTIONS(3860), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym___extension__] = ACTIONS(3858), + [anon_sym_typedef] = ACTIONS(3858), + [anon_sym_virtual] = ACTIONS(3858), + [anon_sym_extern] = ACTIONS(3858), + [anon_sym___attribute__] = ACTIONS(3858), + [anon_sym___attribute] = ACTIONS(3858), + [anon_sym_using] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3860), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), + [anon_sym___declspec] = ACTIONS(3858), + [anon_sym___based] = ACTIONS(3858), + [anon_sym___cdecl] = ACTIONS(3858), + [anon_sym___clrcall] = ACTIONS(3858), + [anon_sym___stdcall] = ACTIONS(3858), + [anon_sym___fastcall] = ACTIONS(3858), + [anon_sym___thiscall] = ACTIONS(3858), + [anon_sym___vectorcall] = ACTIONS(3858), + [anon_sym_LBRACE] = ACTIONS(3860), + [anon_sym_signed] = ACTIONS(3858), + [anon_sym_unsigned] = ACTIONS(3858), + [anon_sym_long] = ACTIONS(3858), + [anon_sym_short] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3858), + [anon_sym_static] = ACTIONS(3858), + [anon_sym_register] = ACTIONS(3858), + [anon_sym_inline] = ACTIONS(3858), + [anon_sym___inline] = ACTIONS(3858), + [anon_sym___inline__] = ACTIONS(3858), + [anon_sym___forceinline] = ACTIONS(3858), + [anon_sym_thread_local] = ACTIONS(3858), + [anon_sym___thread] = ACTIONS(3858), + [anon_sym_const] = ACTIONS(3858), + [anon_sym_constexpr] = ACTIONS(3858), + [anon_sym_volatile] = ACTIONS(3858), + [anon_sym_restrict] = ACTIONS(3858), + [anon_sym___restrict__] = ACTIONS(3858), + [anon_sym__Atomic] = ACTIONS(3858), + [anon_sym__Noreturn] = ACTIONS(3858), + [anon_sym_noreturn] = ACTIONS(3858), + [anon_sym__Nonnull] = ACTIONS(3858), + [anon_sym_mutable] = ACTIONS(3858), + [anon_sym_constinit] = ACTIONS(3858), + [anon_sym_consteval] = ACTIONS(3858), + [anon_sym_alignas] = ACTIONS(3858), + [anon_sym__Alignas] = ACTIONS(3858), + [sym_primitive_type] = ACTIONS(3858), + [anon_sym_enum] = ACTIONS(3858), + [anon_sym_class] = ACTIONS(3858), + [anon_sym_struct] = ACTIONS(3858), + [anon_sym_union] = ACTIONS(3858), + [anon_sym_if] = ACTIONS(3858), + [anon_sym_switch] = ACTIONS(3858), + [anon_sym_case] = ACTIONS(3858), + [anon_sym_default] = ACTIONS(3858), + [anon_sym_while] = ACTIONS(3858), + [anon_sym_do] = ACTIONS(3858), + [anon_sym_for] = ACTIONS(3858), + [anon_sym_return] = ACTIONS(3858), + [anon_sym_break] = ACTIONS(3858), + [anon_sym_continue] = ACTIONS(3858), + [anon_sym_goto] = ACTIONS(3858), + [anon_sym___try] = ACTIONS(3858), + [anon_sym___leave] = ACTIONS(3858), + [anon_sym_not] = ACTIONS(3858), + [anon_sym_compl] = ACTIONS(3858), + [anon_sym_DASH_DASH] = ACTIONS(3860), + [anon_sym_PLUS_PLUS] = ACTIONS(3860), + [anon_sym_sizeof] = ACTIONS(3858), + [anon_sym___alignof__] = ACTIONS(3858), + [anon_sym___alignof] = ACTIONS(3858), + [anon_sym__alignof] = ACTIONS(3858), + [anon_sym_alignof] = ACTIONS(3858), + [anon_sym__Alignof] = ACTIONS(3858), + [anon_sym_offsetof] = ACTIONS(3858), + [anon_sym__Generic] = ACTIONS(3858), + [anon_sym_typename] = ACTIONS(3858), + [anon_sym_asm] = ACTIONS(3858), + [anon_sym___asm__] = ACTIONS(3858), + [anon_sym___asm] = ACTIONS(3858), + [sym_number_literal] = ACTIONS(3860), + [anon_sym_L_SQUOTE] = ACTIONS(3860), + [anon_sym_u_SQUOTE] = ACTIONS(3860), + [anon_sym_U_SQUOTE] = ACTIONS(3860), + [anon_sym_u8_SQUOTE] = ACTIONS(3860), + [anon_sym_SQUOTE] = ACTIONS(3860), + [anon_sym_L_DQUOTE] = ACTIONS(3860), + [anon_sym_u_DQUOTE] = ACTIONS(3860), + [anon_sym_U_DQUOTE] = ACTIONS(3860), + [anon_sym_u8_DQUOTE] = ACTIONS(3860), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym_true] = ACTIONS(3858), + [sym_false] = ACTIONS(3858), + [anon_sym_NULL] = ACTIONS(3858), + [anon_sym_nullptr] = ACTIONS(3858), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3858), + [anon_sym_decltype] = ACTIONS(3858), + [anon_sym_explicit] = ACTIONS(3858), + [anon_sym_export] = ACTIONS(3858), + [anon_sym_module] = ACTIONS(3858), + [anon_sym_import] = ACTIONS(3858), + [anon_sym_template] = ACTIONS(3858), + [anon_sym_operator] = ACTIONS(3858), + [anon_sym_try] = ACTIONS(3858), + [anon_sym_delete] = ACTIONS(3858), + [anon_sym_throw] = ACTIONS(3858), + [anon_sym_namespace] = ACTIONS(3858), + [anon_sym_static_assert] = ACTIONS(3858), + [anon_sym_concept] = ACTIONS(3858), + [anon_sym_co_return] = ACTIONS(3858), + [anon_sym_co_yield] = ACTIONS(3858), + [anon_sym_R_DQUOTE] = ACTIONS(3860), + [anon_sym_LR_DQUOTE] = ACTIONS(3860), + [anon_sym_uR_DQUOTE] = ACTIONS(3860), + [anon_sym_UR_DQUOTE] = ACTIONS(3860), + [anon_sym_u8R_DQUOTE] = ACTIONS(3860), + [anon_sym_co_await] = ACTIONS(3858), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3858), + [anon_sym_CARET_CARET] = ACTIONS(3860), + [anon_sym_LBRACK_COLON] = ACTIONS(3860), + [sym_this] = ACTIONS(3858), + }, + [STATE(425)] = { + [sym_identifier] = ACTIONS(3862), + [aux_sym_preproc_include_token1] = ACTIONS(3862), + [aux_sym_preproc_def_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token2] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3862), + [aux_sym_preproc_else_token1] = ACTIONS(3862), + [aux_sym_preproc_elif_token1] = ACTIONS(3862), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3862), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3862), + [sym_preproc_directive] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(3864), + [anon_sym_BANG] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3864), + [anon_sym_DASH] = ACTIONS(3862), + [anon_sym_PLUS] = ACTIONS(3862), + [anon_sym_STAR] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym___extension__] = ACTIONS(3862), + [anon_sym_typedef] = ACTIONS(3862), + [anon_sym_virtual] = ACTIONS(3862), + [anon_sym_extern] = ACTIONS(3862), + [anon_sym___attribute__] = ACTIONS(3862), + [anon_sym___attribute] = ACTIONS(3862), + [anon_sym_using] = ACTIONS(3862), + [anon_sym_COLON_COLON] = ACTIONS(3864), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), + [anon_sym___declspec] = ACTIONS(3862), + [anon_sym___based] = ACTIONS(3862), + [anon_sym___cdecl] = ACTIONS(3862), + [anon_sym___clrcall] = ACTIONS(3862), + [anon_sym___stdcall] = ACTIONS(3862), + [anon_sym___fastcall] = ACTIONS(3862), + [anon_sym___thiscall] = ACTIONS(3862), + [anon_sym___vectorcall] = ACTIONS(3862), + [anon_sym_LBRACE] = ACTIONS(3864), + [anon_sym_signed] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3862), + [anon_sym_long] = ACTIONS(3862), + [anon_sym_short] = ACTIONS(3862), + [anon_sym_LBRACK] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3862), + [anon_sym_register] = ACTIONS(3862), + [anon_sym_inline] = ACTIONS(3862), + [anon_sym___inline] = ACTIONS(3862), + [anon_sym___inline__] = ACTIONS(3862), + [anon_sym___forceinline] = ACTIONS(3862), + [anon_sym_thread_local] = ACTIONS(3862), + [anon_sym___thread] = ACTIONS(3862), + [anon_sym_const] = ACTIONS(3862), + [anon_sym_constexpr] = ACTIONS(3862), + [anon_sym_volatile] = ACTIONS(3862), + [anon_sym_restrict] = ACTIONS(3862), + [anon_sym___restrict__] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3862), + [anon_sym__Noreturn] = ACTIONS(3862), + [anon_sym_noreturn] = ACTIONS(3862), + [anon_sym__Nonnull] = ACTIONS(3862), + [anon_sym_mutable] = ACTIONS(3862), + [anon_sym_constinit] = ACTIONS(3862), + [anon_sym_consteval] = ACTIONS(3862), + [anon_sym_alignas] = ACTIONS(3862), + [anon_sym__Alignas] = ACTIONS(3862), + [sym_primitive_type] = ACTIONS(3862), + [anon_sym_enum] = ACTIONS(3862), + [anon_sym_class] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3862), + [anon_sym_union] = ACTIONS(3862), + [anon_sym_if] = ACTIONS(3862), + [anon_sym_switch] = ACTIONS(3862), + [anon_sym_case] = ACTIONS(3862), + [anon_sym_default] = ACTIONS(3862), + [anon_sym_while] = ACTIONS(3862), + [anon_sym_do] = ACTIONS(3862), + [anon_sym_for] = ACTIONS(3862), + [anon_sym_return] = ACTIONS(3862), + [anon_sym_break] = ACTIONS(3862), + [anon_sym_continue] = ACTIONS(3862), + [anon_sym_goto] = ACTIONS(3862), + [anon_sym___try] = ACTIONS(3862), + [anon_sym___leave] = ACTIONS(3862), + [anon_sym_not] = ACTIONS(3862), + [anon_sym_compl] = ACTIONS(3862), + [anon_sym_DASH_DASH] = ACTIONS(3864), + [anon_sym_PLUS_PLUS] = ACTIONS(3864), + [anon_sym_sizeof] = ACTIONS(3862), + [anon_sym___alignof__] = ACTIONS(3862), + [anon_sym___alignof] = ACTIONS(3862), + [anon_sym__alignof] = ACTIONS(3862), + [anon_sym_alignof] = ACTIONS(3862), + [anon_sym__Alignof] = ACTIONS(3862), + [anon_sym_offsetof] = ACTIONS(3862), + [anon_sym__Generic] = ACTIONS(3862), + [anon_sym_typename] = ACTIONS(3862), + [anon_sym_asm] = ACTIONS(3862), + [anon_sym___asm__] = ACTIONS(3862), + [anon_sym___asm] = ACTIONS(3862), + [sym_number_literal] = ACTIONS(3864), + [anon_sym_L_SQUOTE] = ACTIONS(3864), + [anon_sym_u_SQUOTE] = ACTIONS(3864), + [anon_sym_U_SQUOTE] = ACTIONS(3864), + [anon_sym_u8_SQUOTE] = ACTIONS(3864), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_L_DQUOTE] = ACTIONS(3864), + [anon_sym_u_DQUOTE] = ACTIONS(3864), + [anon_sym_U_DQUOTE] = ACTIONS(3864), + [anon_sym_u8_DQUOTE] = ACTIONS(3864), + [anon_sym_DQUOTE] = ACTIONS(3864), + [sym_true] = ACTIONS(3862), + [sym_false] = ACTIONS(3862), + [anon_sym_NULL] = ACTIONS(3862), + [anon_sym_nullptr] = ACTIONS(3862), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3862), + [anon_sym_decltype] = ACTIONS(3862), + [anon_sym_explicit] = ACTIONS(3862), + [anon_sym_export] = ACTIONS(3862), + [anon_sym_module] = ACTIONS(3862), + [anon_sym_import] = ACTIONS(3862), + [anon_sym_template] = ACTIONS(3862), + [anon_sym_operator] = ACTIONS(3862), + [anon_sym_try] = ACTIONS(3862), + [anon_sym_delete] = ACTIONS(3862), + [anon_sym_throw] = ACTIONS(3862), + [anon_sym_namespace] = ACTIONS(3862), + [anon_sym_static_assert] = ACTIONS(3862), + [anon_sym_concept] = ACTIONS(3862), + [anon_sym_co_return] = ACTIONS(3862), + [anon_sym_co_yield] = ACTIONS(3862), + [anon_sym_R_DQUOTE] = ACTIONS(3864), + [anon_sym_LR_DQUOTE] = ACTIONS(3864), + [anon_sym_uR_DQUOTE] = ACTIONS(3864), + [anon_sym_UR_DQUOTE] = ACTIONS(3864), + [anon_sym_u8R_DQUOTE] = ACTIONS(3864), + [anon_sym_co_await] = ACTIONS(3862), + [anon_sym_new] = ACTIONS(3862), + [anon_sym_requires] = ACTIONS(3862), + [anon_sym_CARET_CARET] = ACTIONS(3864), + [anon_sym_LBRACK_COLON] = ACTIONS(3864), + [sym_this] = ACTIONS(3862), + }, + [STATE(426)] = { + [sym_catch_clause] = STATE(426), + [aux_sym_constructor_try_statement_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym___attribute] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym__Nonnull] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym__Alignas] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [anon_sym___asm] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_export] = ACTIONS(3159), + [anon_sym_module] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_catch] = ACTIONS(3866), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3159), + }, + [STATE(427)] = { + [sym_identifier] = ACTIONS(3869), + [aux_sym_preproc_include_token1] = ACTIONS(3869), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token2] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3869), + [aux_sym_preproc_else_token1] = ACTIONS(3869), + [aux_sym_preproc_elif_token1] = ACTIONS(3869), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3869), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3869), + [sym_preproc_directive] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_TILDE] = ACTIONS(3871), + [anon_sym_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3869), + [anon_sym_STAR] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym___extension__] = ACTIONS(3869), + [anon_sym_typedef] = ACTIONS(3869), + [anon_sym_virtual] = ACTIONS(3869), + [anon_sym_extern] = ACTIONS(3869), + [anon_sym___attribute__] = ACTIONS(3869), + [anon_sym___attribute] = ACTIONS(3869), + [anon_sym_using] = ACTIONS(3869), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3871), + [anon_sym___declspec] = ACTIONS(3869), + [anon_sym___based] = ACTIONS(3869), + [anon_sym___cdecl] = ACTIONS(3869), + [anon_sym___clrcall] = ACTIONS(3869), + [anon_sym___stdcall] = ACTIONS(3869), + [anon_sym___fastcall] = ACTIONS(3869), + [anon_sym___thiscall] = ACTIONS(3869), + [anon_sym___vectorcall] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_signed] = ACTIONS(3869), + [anon_sym_unsigned] = ACTIONS(3869), + [anon_sym_long] = ACTIONS(3869), + [anon_sym_short] = ACTIONS(3869), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_static] = ACTIONS(3869), + [anon_sym_register] = ACTIONS(3869), + [anon_sym_inline] = ACTIONS(3869), + [anon_sym___inline] = ACTIONS(3869), + [anon_sym___inline__] = ACTIONS(3869), + [anon_sym___forceinline] = ACTIONS(3869), + [anon_sym_thread_local] = ACTIONS(3869), + [anon_sym___thread] = ACTIONS(3869), + [anon_sym_const] = ACTIONS(3869), + [anon_sym_constexpr] = ACTIONS(3869), + [anon_sym_volatile] = ACTIONS(3869), + [anon_sym_restrict] = ACTIONS(3869), + [anon_sym___restrict__] = ACTIONS(3869), + [anon_sym__Atomic] = ACTIONS(3869), + [anon_sym__Noreturn] = ACTIONS(3869), + [anon_sym_noreturn] = ACTIONS(3869), + [anon_sym__Nonnull] = ACTIONS(3869), + [anon_sym_mutable] = ACTIONS(3869), + [anon_sym_constinit] = ACTIONS(3869), + [anon_sym_consteval] = ACTIONS(3869), + [anon_sym_alignas] = ACTIONS(3869), + [anon_sym__Alignas] = ACTIONS(3869), + [sym_primitive_type] = ACTIONS(3869), + [anon_sym_enum] = ACTIONS(3869), + [anon_sym_class] = ACTIONS(3869), + [anon_sym_struct] = ACTIONS(3869), + [anon_sym_union] = ACTIONS(3869), + [anon_sym_if] = ACTIONS(3869), + [anon_sym_switch] = ACTIONS(3869), + [anon_sym_case] = ACTIONS(3869), + [anon_sym_default] = ACTIONS(3869), + [anon_sym_while] = ACTIONS(3869), + [anon_sym_do] = ACTIONS(3869), + [anon_sym_for] = ACTIONS(3869), + [anon_sym_return] = ACTIONS(3869), + [anon_sym_break] = ACTIONS(3869), + [anon_sym_continue] = ACTIONS(3869), + [anon_sym_goto] = ACTIONS(3869), + [anon_sym___try] = ACTIONS(3869), + [anon_sym___leave] = ACTIONS(3869), + [anon_sym_not] = ACTIONS(3869), + [anon_sym_compl] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_sizeof] = ACTIONS(3869), + [anon_sym___alignof__] = ACTIONS(3869), + [anon_sym___alignof] = ACTIONS(3869), + [anon_sym__alignof] = ACTIONS(3869), + [anon_sym_alignof] = ACTIONS(3869), + [anon_sym__Alignof] = ACTIONS(3869), + [anon_sym_offsetof] = ACTIONS(3869), + [anon_sym__Generic] = ACTIONS(3869), + [anon_sym_typename] = ACTIONS(3869), + [anon_sym_asm] = ACTIONS(3869), + [anon_sym___asm__] = ACTIONS(3869), + [anon_sym___asm] = ACTIONS(3869), + [sym_number_literal] = ACTIONS(3871), + [anon_sym_L_SQUOTE] = ACTIONS(3871), + [anon_sym_u_SQUOTE] = ACTIONS(3871), + [anon_sym_U_SQUOTE] = ACTIONS(3871), + [anon_sym_u8_SQUOTE] = ACTIONS(3871), + [anon_sym_SQUOTE] = ACTIONS(3871), + [anon_sym_L_DQUOTE] = ACTIONS(3871), + [anon_sym_u_DQUOTE] = ACTIONS(3871), + [anon_sym_U_DQUOTE] = ACTIONS(3871), + [anon_sym_u8_DQUOTE] = ACTIONS(3871), + [anon_sym_DQUOTE] = ACTIONS(3871), + [sym_true] = ACTIONS(3869), + [sym_false] = ACTIONS(3869), + [anon_sym_NULL] = ACTIONS(3869), + [anon_sym_nullptr] = ACTIONS(3869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3869), + [anon_sym_decltype] = ACTIONS(3869), + [anon_sym_explicit] = ACTIONS(3869), + [anon_sym_export] = ACTIONS(3869), + [anon_sym_module] = ACTIONS(3869), + [anon_sym_import] = ACTIONS(3869), + [anon_sym_template] = ACTIONS(3869), + [anon_sym_operator] = ACTIONS(3869), + [anon_sym_try] = ACTIONS(3869), + [anon_sym_delete] = ACTIONS(3869), + [anon_sym_throw] = ACTIONS(3869), + [anon_sym_namespace] = ACTIONS(3869), + [anon_sym_static_assert] = ACTIONS(3869), + [anon_sym_concept] = ACTIONS(3869), + [anon_sym_co_return] = ACTIONS(3869), + [anon_sym_co_yield] = ACTIONS(3869), + [anon_sym_R_DQUOTE] = ACTIONS(3871), + [anon_sym_LR_DQUOTE] = ACTIONS(3871), + [anon_sym_uR_DQUOTE] = ACTIONS(3871), + [anon_sym_UR_DQUOTE] = ACTIONS(3871), + [anon_sym_u8R_DQUOTE] = ACTIONS(3871), + [anon_sym_co_await] = ACTIONS(3869), + [anon_sym_new] = ACTIONS(3869), + [anon_sym_requires] = ACTIONS(3869), + [anon_sym_CARET_CARET] = ACTIONS(3871), + [anon_sym_LBRACK_COLON] = ACTIONS(3871), + [sym_this] = ACTIONS(3869), + }, + [STATE(428)] = { + [sym_identifier] = ACTIONS(3873), + [aux_sym_preproc_include_token1] = ACTIONS(3873), + [aux_sym_preproc_def_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token2] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [aux_sym_preproc_else_token1] = ACTIONS(3873), + [aux_sym_preproc_elif_token1] = ACTIONS(3873), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3875), + [anon_sym_BANG] = ACTIONS(3875), + [anon_sym_TILDE] = ACTIONS(3875), + [anon_sym_DASH] = ACTIONS(3873), + [anon_sym_PLUS] = ACTIONS(3873), + [anon_sym_STAR] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym___extension__] = ACTIONS(3873), + [anon_sym_typedef] = ACTIONS(3873), + [anon_sym_virtual] = ACTIONS(3873), + [anon_sym_extern] = ACTIONS(3873), + [anon_sym___attribute__] = ACTIONS(3873), + [anon_sym___attribute] = ACTIONS(3873), + [anon_sym_using] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3875), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), + [anon_sym___declspec] = ACTIONS(3873), + [anon_sym___based] = ACTIONS(3873), + [anon_sym___cdecl] = ACTIONS(3873), + [anon_sym___clrcall] = ACTIONS(3873), + [anon_sym___stdcall] = ACTIONS(3873), + [anon_sym___fastcall] = ACTIONS(3873), + [anon_sym___thiscall] = ACTIONS(3873), + [anon_sym___vectorcall] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3875), + [anon_sym_signed] = ACTIONS(3873), + [anon_sym_unsigned] = ACTIONS(3873), + [anon_sym_long] = ACTIONS(3873), + [anon_sym_short] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3873), + [anon_sym_static] = ACTIONS(3873), + [anon_sym_register] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym___inline] = ACTIONS(3873), + [anon_sym___inline__] = ACTIONS(3873), + [anon_sym___forceinline] = ACTIONS(3873), + [anon_sym_thread_local] = ACTIONS(3873), + [anon_sym___thread] = ACTIONS(3873), + [anon_sym_const] = ACTIONS(3873), + [anon_sym_constexpr] = ACTIONS(3873), + [anon_sym_volatile] = ACTIONS(3873), + [anon_sym_restrict] = ACTIONS(3873), + [anon_sym___restrict__] = ACTIONS(3873), + [anon_sym__Atomic] = ACTIONS(3873), + [anon_sym__Noreturn] = ACTIONS(3873), + [anon_sym_noreturn] = ACTIONS(3873), + [anon_sym__Nonnull] = ACTIONS(3873), + [anon_sym_mutable] = ACTIONS(3873), + [anon_sym_constinit] = ACTIONS(3873), + [anon_sym_consteval] = ACTIONS(3873), + [anon_sym_alignas] = ACTIONS(3873), + [anon_sym__Alignas] = ACTIONS(3873), + [sym_primitive_type] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3873), + [anon_sym_union] = ACTIONS(3873), + [anon_sym_if] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3873), + [anon_sym_case] = ACTIONS(3873), + [anon_sym_default] = ACTIONS(3873), + [anon_sym_while] = ACTIONS(3873), + [anon_sym_do] = ACTIONS(3873), + [anon_sym_for] = ACTIONS(3873), + [anon_sym_return] = ACTIONS(3873), + [anon_sym_break] = ACTIONS(3873), + [anon_sym_continue] = ACTIONS(3873), + [anon_sym_goto] = ACTIONS(3873), + [anon_sym___try] = ACTIONS(3873), + [anon_sym___leave] = ACTIONS(3873), + [anon_sym_not] = ACTIONS(3873), + [anon_sym_compl] = ACTIONS(3873), + [anon_sym_DASH_DASH] = ACTIONS(3875), + [anon_sym_PLUS_PLUS] = ACTIONS(3875), + [anon_sym_sizeof] = ACTIONS(3873), + [anon_sym___alignof__] = ACTIONS(3873), + [anon_sym___alignof] = ACTIONS(3873), + [anon_sym__alignof] = ACTIONS(3873), + [anon_sym_alignof] = ACTIONS(3873), + [anon_sym__Alignof] = ACTIONS(3873), + [anon_sym_offsetof] = ACTIONS(3873), + [anon_sym__Generic] = ACTIONS(3873), + [anon_sym_typename] = ACTIONS(3873), + [anon_sym_asm] = ACTIONS(3873), + [anon_sym___asm__] = ACTIONS(3873), + [anon_sym___asm] = ACTIONS(3873), + [sym_number_literal] = ACTIONS(3875), + [anon_sym_L_SQUOTE] = ACTIONS(3875), + [anon_sym_u_SQUOTE] = ACTIONS(3875), + [anon_sym_U_SQUOTE] = ACTIONS(3875), + [anon_sym_u8_SQUOTE] = ACTIONS(3875), + [anon_sym_SQUOTE] = ACTIONS(3875), + [anon_sym_L_DQUOTE] = ACTIONS(3875), + [anon_sym_u_DQUOTE] = ACTIONS(3875), + [anon_sym_U_DQUOTE] = ACTIONS(3875), + [anon_sym_u8_DQUOTE] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [sym_true] = ACTIONS(3873), + [sym_false] = ACTIONS(3873), + [anon_sym_NULL] = ACTIONS(3873), + [anon_sym_nullptr] = ACTIONS(3873), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3873), + [anon_sym_decltype] = ACTIONS(3873), + [anon_sym_explicit] = ACTIONS(3873), + [anon_sym_export] = ACTIONS(3873), + [anon_sym_module] = ACTIONS(3873), + [anon_sym_import] = ACTIONS(3873), + [anon_sym_template] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_try] = ACTIONS(3873), + [anon_sym_delete] = ACTIONS(3873), + [anon_sym_throw] = ACTIONS(3873), + [anon_sym_namespace] = ACTIONS(3873), + [anon_sym_static_assert] = ACTIONS(3873), + [anon_sym_concept] = ACTIONS(3873), + [anon_sym_co_return] = ACTIONS(3873), + [anon_sym_co_yield] = ACTIONS(3873), + [anon_sym_R_DQUOTE] = ACTIONS(3875), + [anon_sym_LR_DQUOTE] = ACTIONS(3875), + [anon_sym_uR_DQUOTE] = ACTIONS(3875), + [anon_sym_UR_DQUOTE] = ACTIONS(3875), + [anon_sym_u8R_DQUOTE] = ACTIONS(3875), + [anon_sym_co_await] = ACTIONS(3873), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(3873), + [anon_sym_CARET_CARET] = ACTIONS(3875), + [anon_sym_LBRACK_COLON] = ACTIONS(3875), + [sym_this] = ACTIONS(3873), + }, + [STATE(429)] = { + [sym_identifier] = ACTIONS(3877), + [aux_sym_preproc_include_token1] = ACTIONS(3877), + [aux_sym_preproc_def_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token2] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3877), + [aux_sym_preproc_else_token1] = ACTIONS(3877), + [aux_sym_preproc_elif_token1] = ACTIONS(3877), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3877), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3877), + [sym_preproc_directive] = ACTIONS(3877), + [anon_sym_LPAREN2] = ACTIONS(3879), + [anon_sym_BANG] = ACTIONS(3879), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_PLUS] = ACTIONS(3877), + [anon_sym_STAR] = ACTIONS(3879), + [anon_sym_AMP_AMP] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_SEMI] = ACTIONS(3879), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_typedef] = ACTIONS(3877), + [anon_sym_virtual] = ACTIONS(3877), + [anon_sym_extern] = ACTIONS(3877), + [anon_sym___attribute__] = ACTIONS(3877), + [anon_sym___attribute] = ACTIONS(3877), + [anon_sym_using] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3879), + [anon_sym___declspec] = ACTIONS(3877), + [anon_sym___based] = ACTIONS(3877), + [anon_sym___cdecl] = ACTIONS(3877), + [anon_sym___clrcall] = ACTIONS(3877), + [anon_sym___stdcall] = ACTIONS(3877), + [anon_sym___fastcall] = ACTIONS(3877), + [anon_sym___thiscall] = ACTIONS(3877), + [anon_sym___vectorcall] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_signed] = ACTIONS(3877), + [anon_sym_unsigned] = ACTIONS(3877), + [anon_sym_long] = ACTIONS(3877), + [anon_sym_short] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_static] = ACTIONS(3877), + [anon_sym_register] = ACTIONS(3877), + [anon_sym_inline] = ACTIONS(3877), + [anon_sym___inline] = ACTIONS(3877), + [anon_sym___inline__] = ACTIONS(3877), + [anon_sym___forceinline] = ACTIONS(3877), + [anon_sym_thread_local] = ACTIONS(3877), + [anon_sym___thread] = ACTIONS(3877), + [anon_sym_const] = ACTIONS(3877), + [anon_sym_constexpr] = ACTIONS(3877), + [anon_sym_volatile] = ACTIONS(3877), + [anon_sym_restrict] = ACTIONS(3877), + [anon_sym___restrict__] = ACTIONS(3877), + [anon_sym__Atomic] = ACTIONS(3877), + [anon_sym__Noreturn] = ACTIONS(3877), + [anon_sym_noreturn] = ACTIONS(3877), + [anon_sym__Nonnull] = ACTIONS(3877), + [anon_sym_mutable] = ACTIONS(3877), + [anon_sym_constinit] = ACTIONS(3877), + [anon_sym_consteval] = ACTIONS(3877), + [anon_sym_alignas] = ACTIONS(3877), + [anon_sym__Alignas] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(3877), + [anon_sym_enum] = ACTIONS(3877), + [anon_sym_class] = ACTIONS(3877), + [anon_sym_struct] = ACTIONS(3877), + [anon_sym_union] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(3877), + [anon_sym_switch] = ACTIONS(3877), + [anon_sym_case] = ACTIONS(3877), + [anon_sym_default] = ACTIONS(3877), + [anon_sym_while] = ACTIONS(3877), + [anon_sym_do] = ACTIONS(3877), + [anon_sym_for] = ACTIONS(3877), + [anon_sym_return] = ACTIONS(3877), + [anon_sym_break] = ACTIONS(3877), + [anon_sym_continue] = ACTIONS(3877), + [anon_sym_goto] = ACTIONS(3877), + [anon_sym___try] = ACTIONS(3877), + [anon_sym___leave] = ACTIONS(3877), + [anon_sym_not] = ACTIONS(3877), + [anon_sym_compl] = ACTIONS(3877), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3877), + [anon_sym___alignof__] = ACTIONS(3877), + [anon_sym___alignof] = ACTIONS(3877), + [anon_sym__alignof] = ACTIONS(3877), + [anon_sym_alignof] = ACTIONS(3877), + [anon_sym__Alignof] = ACTIONS(3877), + [anon_sym_offsetof] = ACTIONS(3877), + [anon_sym__Generic] = ACTIONS(3877), + [anon_sym_typename] = ACTIONS(3877), + [anon_sym_asm] = ACTIONS(3877), + [anon_sym___asm__] = ACTIONS(3877), + [anon_sym___asm] = ACTIONS(3877), + [sym_number_literal] = ACTIONS(3879), + [anon_sym_L_SQUOTE] = ACTIONS(3879), + [anon_sym_u_SQUOTE] = ACTIONS(3879), + [anon_sym_U_SQUOTE] = ACTIONS(3879), + [anon_sym_u8_SQUOTE] = ACTIONS(3879), + [anon_sym_SQUOTE] = ACTIONS(3879), + [anon_sym_L_DQUOTE] = ACTIONS(3879), + [anon_sym_u_DQUOTE] = ACTIONS(3879), + [anon_sym_U_DQUOTE] = ACTIONS(3879), + [anon_sym_u8_DQUOTE] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3879), + [sym_true] = ACTIONS(3877), + [sym_false] = ACTIONS(3877), + [anon_sym_NULL] = ACTIONS(3877), + [anon_sym_nullptr] = ACTIONS(3877), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3877), + [anon_sym_decltype] = ACTIONS(3877), + [anon_sym_explicit] = ACTIONS(3877), + [anon_sym_export] = ACTIONS(3877), + [anon_sym_module] = ACTIONS(3877), + [anon_sym_import] = ACTIONS(3877), + [anon_sym_template] = ACTIONS(3877), + [anon_sym_operator] = ACTIONS(3877), + [anon_sym_try] = ACTIONS(3877), + [anon_sym_delete] = ACTIONS(3877), + [anon_sym_throw] = ACTIONS(3877), + [anon_sym_namespace] = ACTIONS(3877), + [anon_sym_static_assert] = ACTIONS(3877), + [anon_sym_concept] = ACTIONS(3877), + [anon_sym_co_return] = ACTIONS(3877), + [anon_sym_co_yield] = ACTIONS(3877), + [anon_sym_R_DQUOTE] = ACTIONS(3879), + [anon_sym_LR_DQUOTE] = ACTIONS(3879), + [anon_sym_uR_DQUOTE] = ACTIONS(3879), + [anon_sym_UR_DQUOTE] = ACTIONS(3879), + [anon_sym_u8R_DQUOTE] = ACTIONS(3879), + [anon_sym_co_await] = ACTIONS(3877), + [anon_sym_new] = ACTIONS(3877), + [anon_sym_requires] = ACTIONS(3877), + [anon_sym_CARET_CARET] = ACTIONS(3879), + [anon_sym_LBRACK_COLON] = ACTIONS(3879), + [sym_this] = ACTIONS(3877), + }, + [STATE(430)] = { + [sym_identifier] = ACTIONS(3881), + [aux_sym_preproc_include_token1] = ACTIONS(3881), + [aux_sym_preproc_def_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token2] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3881), + [aux_sym_preproc_else_token1] = ACTIONS(3881), + [aux_sym_preproc_elif_token1] = ACTIONS(3881), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3881), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3881), + [sym_preproc_directive] = ACTIONS(3881), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_BANG] = ACTIONS(3883), + [anon_sym_TILDE] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_SEMI] = ACTIONS(3883), + [anon_sym___extension__] = ACTIONS(3881), + [anon_sym_typedef] = ACTIONS(3881), + [anon_sym_virtual] = ACTIONS(3881), + [anon_sym_extern] = ACTIONS(3881), + [anon_sym___attribute__] = ACTIONS(3881), + [anon_sym___attribute] = ACTIONS(3881), + [anon_sym_using] = ACTIONS(3881), + [anon_sym_COLON_COLON] = ACTIONS(3883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3883), + [anon_sym___declspec] = ACTIONS(3881), + [anon_sym___based] = ACTIONS(3881), + [anon_sym___cdecl] = ACTIONS(3881), + [anon_sym___clrcall] = ACTIONS(3881), + [anon_sym___stdcall] = ACTIONS(3881), + [anon_sym___fastcall] = ACTIONS(3881), + [anon_sym___thiscall] = ACTIONS(3881), + [anon_sym___vectorcall] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3883), + [anon_sym_signed] = ACTIONS(3881), + [anon_sym_unsigned] = ACTIONS(3881), + [anon_sym_long] = ACTIONS(3881), + [anon_sym_short] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_static] = ACTIONS(3881), + [anon_sym_register] = ACTIONS(3881), + [anon_sym_inline] = ACTIONS(3881), + [anon_sym___inline] = ACTIONS(3881), + [anon_sym___inline__] = ACTIONS(3881), + [anon_sym___forceinline] = ACTIONS(3881), + [anon_sym_thread_local] = ACTIONS(3881), + [anon_sym___thread] = ACTIONS(3881), + [anon_sym_const] = ACTIONS(3881), + [anon_sym_constexpr] = ACTIONS(3881), + [anon_sym_volatile] = ACTIONS(3881), + [anon_sym_restrict] = ACTIONS(3881), + [anon_sym___restrict__] = ACTIONS(3881), + [anon_sym__Atomic] = ACTIONS(3881), + [anon_sym__Noreturn] = ACTIONS(3881), + [anon_sym_noreturn] = ACTIONS(3881), + [anon_sym__Nonnull] = ACTIONS(3881), + [anon_sym_mutable] = ACTIONS(3881), + [anon_sym_constinit] = ACTIONS(3881), + [anon_sym_consteval] = ACTIONS(3881), + [anon_sym_alignas] = ACTIONS(3881), + [anon_sym__Alignas] = ACTIONS(3881), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_enum] = ACTIONS(3881), + [anon_sym_class] = ACTIONS(3881), + [anon_sym_struct] = ACTIONS(3881), + [anon_sym_union] = ACTIONS(3881), + [anon_sym_if] = ACTIONS(3881), + [anon_sym_switch] = ACTIONS(3881), + [anon_sym_case] = ACTIONS(3881), + [anon_sym_default] = ACTIONS(3881), + [anon_sym_while] = ACTIONS(3881), + [anon_sym_do] = ACTIONS(3881), + [anon_sym_for] = ACTIONS(3881), + [anon_sym_return] = ACTIONS(3881), + [anon_sym_break] = ACTIONS(3881), + [anon_sym_continue] = ACTIONS(3881), + [anon_sym_goto] = ACTIONS(3881), + [anon_sym___try] = ACTIONS(3881), + [anon_sym___leave] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3881), + [anon_sym_compl] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(3883), + [anon_sym_PLUS_PLUS] = ACTIONS(3883), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(3881), + [anon_sym___alignof] = ACTIONS(3881), + [anon_sym__alignof] = ACTIONS(3881), + [anon_sym_alignof] = ACTIONS(3881), + [anon_sym__Alignof] = ACTIONS(3881), + [anon_sym_offsetof] = ACTIONS(3881), + [anon_sym__Generic] = ACTIONS(3881), + [anon_sym_typename] = ACTIONS(3881), + [anon_sym_asm] = ACTIONS(3881), + [anon_sym___asm__] = ACTIONS(3881), + [anon_sym___asm] = ACTIONS(3881), + [sym_number_literal] = ACTIONS(3883), + [anon_sym_L_SQUOTE] = ACTIONS(3883), + [anon_sym_u_SQUOTE] = ACTIONS(3883), + [anon_sym_U_SQUOTE] = ACTIONS(3883), + [anon_sym_u8_SQUOTE] = ACTIONS(3883), + [anon_sym_SQUOTE] = ACTIONS(3883), + [anon_sym_L_DQUOTE] = ACTIONS(3883), + [anon_sym_u_DQUOTE] = ACTIONS(3883), + [anon_sym_U_DQUOTE] = ACTIONS(3883), + [anon_sym_u8_DQUOTE] = ACTIONS(3883), + [anon_sym_DQUOTE] = ACTIONS(3883), + [sym_true] = ACTIONS(3881), + [sym_false] = ACTIONS(3881), + [anon_sym_NULL] = ACTIONS(3881), + [anon_sym_nullptr] = ACTIONS(3881), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3881), + [anon_sym_decltype] = ACTIONS(3881), + [anon_sym_explicit] = ACTIONS(3881), + [anon_sym_export] = ACTIONS(3881), + [anon_sym_module] = ACTIONS(3881), + [anon_sym_import] = ACTIONS(3881), + [anon_sym_template] = ACTIONS(3881), + [anon_sym_operator] = ACTIONS(3881), + [anon_sym_try] = ACTIONS(3881), + [anon_sym_delete] = ACTIONS(3881), + [anon_sym_throw] = ACTIONS(3881), + [anon_sym_namespace] = ACTIONS(3881), + [anon_sym_static_assert] = ACTIONS(3881), + [anon_sym_concept] = ACTIONS(3881), + [anon_sym_co_return] = ACTIONS(3881), + [anon_sym_co_yield] = ACTIONS(3881), + [anon_sym_R_DQUOTE] = ACTIONS(3883), + [anon_sym_LR_DQUOTE] = ACTIONS(3883), + [anon_sym_uR_DQUOTE] = ACTIONS(3883), + [anon_sym_UR_DQUOTE] = ACTIONS(3883), + [anon_sym_u8R_DQUOTE] = ACTIONS(3883), + [anon_sym_co_await] = ACTIONS(3881), + [anon_sym_new] = ACTIONS(3881), + [anon_sym_requires] = ACTIONS(3881), + [anon_sym_CARET_CARET] = ACTIONS(3883), + [anon_sym_LBRACK_COLON] = ACTIONS(3883), + [sym_this] = ACTIONS(3881), + }, + [STATE(431)] = { + [sym_type_qualifier] = STATE(5115), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(2648), + [sym_sized_type_specifier] = STATE(3575), + [sym_enum_specifier] = STATE(3575), + [sym_struct_specifier] = STATE(3575), + [sym_union_specifier] = STATE(3575), + [sym_expression] = STATE(5870), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_type_descriptor] = STATE(6110), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_placeholder_type_specifier] = STATE(3575), + [sym_decltype_auto] = STATE(3576), + [sym_decltype] = STATE(3396), + [sym_class_specifier] = STATE(3575), + [sym__class_name] = STATE(10514), + [sym_dependent_type] = STATE(3575), + [sym_template_type] = STATE(3430), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7915), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(3550), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(3666), + [sym__splice_specialization_specifier] = STATE(2899), [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [aux_sym__type_definition_type_repeat1] = STATE(5115), + [aux_sym_sized_type_specifier_repeat1] = STATE(2345), + [sym_identifier] = ACTIONS(3885), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3887), + [anon_sym_COLON_COLON] = ACTIONS(3889), + [anon_sym_signed] = ACTIONS(3891), + [anon_sym_unsigned] = ACTIONS(3891), + [anon_sym_long] = ACTIONS(3891), + [anon_sym_short] = ACTIONS(3891), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -116336,11 +121562,156 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3893), + [anon_sym_enum] = ACTIONS(3895), + [anon_sym_class] = ACTIONS(3897), + [anon_sym_struct] = ACTIONS(3899), + [anon_sym_union] = ACTIONS(3901), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3903), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3905), + [anon_sym_decltype] = ACTIONS(3907), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(432)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -116353,7 +121724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -116373,9 +121744,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -116386,1025 +121757,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(396)] = { - [sym_catch_clause] = STATE(398), - [aux_sym_constructor_try_statement_repeat1] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3165), - [aux_sym_preproc_include_token1] = ACTIONS(3165), - [aux_sym_preproc_def_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), - [sym_preproc_directive] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym___extension__] = ACTIONS(3165), - [anon_sym_typedef] = ACTIONS(3165), - [anon_sym_virtual] = ACTIONS(3165), - [anon_sym_extern] = ACTIONS(3165), - [anon_sym___attribute__] = ACTIONS(3165), - [anon_sym___attribute] = ACTIONS(3165), - [anon_sym_using] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), - [anon_sym___declspec] = ACTIONS(3165), - [anon_sym___based] = ACTIONS(3165), - [anon_sym___cdecl] = ACTIONS(3165), - [anon_sym___clrcall] = ACTIONS(3165), - [anon_sym___stdcall] = ACTIONS(3165), - [anon_sym___fastcall] = ACTIONS(3165), - [anon_sym___thiscall] = ACTIONS(3165), - [anon_sym___vectorcall] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_signed] = ACTIONS(3165), - [anon_sym_unsigned] = ACTIONS(3165), - [anon_sym_long] = ACTIONS(3165), - [anon_sym_short] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_static] = ACTIONS(3165), - [anon_sym_register] = ACTIONS(3165), - [anon_sym_inline] = ACTIONS(3165), - [anon_sym___inline] = ACTIONS(3165), - [anon_sym___inline__] = ACTIONS(3165), - [anon_sym___forceinline] = ACTIONS(3165), - [anon_sym_thread_local] = ACTIONS(3165), - [anon_sym___thread] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_constexpr] = ACTIONS(3165), - [anon_sym_volatile] = ACTIONS(3165), - [anon_sym_restrict] = ACTIONS(3165), - [anon_sym___restrict__] = ACTIONS(3165), - [anon_sym__Atomic] = ACTIONS(3165), - [anon_sym__Noreturn] = ACTIONS(3165), - [anon_sym_noreturn] = ACTIONS(3165), - [anon_sym__Nonnull] = ACTIONS(3165), - [anon_sym_mutable] = ACTIONS(3165), - [anon_sym_constinit] = ACTIONS(3165), - [anon_sym_consteval] = ACTIONS(3165), - [anon_sym_alignas] = ACTIONS(3165), - [anon_sym__Alignas] = ACTIONS(3165), - [sym_primitive_type] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_switch] = ACTIONS(3165), - [anon_sym_case] = ACTIONS(3165), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym___try] = ACTIONS(3165), - [anon_sym___leave] = ACTIONS(3165), - [anon_sym_not] = ACTIONS(3165), - [anon_sym_compl] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_sizeof] = ACTIONS(3165), - [anon_sym___alignof__] = ACTIONS(3165), - [anon_sym___alignof] = ACTIONS(3165), - [anon_sym__alignof] = ACTIONS(3165), - [anon_sym_alignof] = ACTIONS(3165), - [anon_sym__Alignof] = ACTIONS(3165), - [anon_sym_offsetof] = ACTIONS(3165), - [anon_sym__Generic] = ACTIONS(3165), - [anon_sym_typename] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym___asm__] = ACTIONS(3165), - [anon_sym___asm] = ACTIONS(3165), - [sym_number_literal] = ACTIONS(3167), - [anon_sym_L_SQUOTE] = ACTIONS(3167), - [anon_sym_u_SQUOTE] = ACTIONS(3167), - [anon_sym_U_SQUOTE] = ACTIONS(3167), - [anon_sym_u8_SQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [anon_sym_NULL] = ACTIONS(3165), - [anon_sym_nullptr] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3165), - [anon_sym_decltype] = ACTIONS(3165), - [anon_sym_explicit] = ACTIONS(3165), - [anon_sym_export] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_import] = ACTIONS(3165), - [anon_sym_template] = ACTIONS(3165), - [anon_sym_operator] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_delete] = ACTIONS(3165), - [anon_sym_throw] = ACTIONS(3165), - [anon_sym_namespace] = ACTIONS(3165), - [anon_sym_static_assert] = ACTIONS(3165), - [anon_sym_concept] = ACTIONS(3165), - [anon_sym_co_return] = ACTIONS(3165), - [anon_sym_co_yield] = ACTIONS(3165), - [anon_sym_catch] = ACTIONS(3788), - [anon_sym_R_DQUOTE] = ACTIONS(3167), - [anon_sym_LR_DQUOTE] = ACTIONS(3167), - [anon_sym_uR_DQUOTE] = ACTIONS(3167), - [anon_sym_UR_DQUOTE] = ACTIONS(3167), - [anon_sym_u8R_DQUOTE] = ACTIONS(3167), - [anon_sym_co_await] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_requires] = ACTIONS(3165), - [anon_sym_CARET_CARET] = ACTIONS(3167), - [anon_sym_LBRACK_COLON] = ACTIONS(3167), - [sym_this] = ACTIONS(3165), - }, - [STATE(397)] = { - [sym_catch_clause] = STATE(410), - [aux_sym_constructor_try_statement_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(3165), - [aux_sym_preproc_include_token1] = ACTIONS(3165), - [aux_sym_preproc_def_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token2] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), - [sym_preproc_directive] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym___extension__] = ACTIONS(3165), - [anon_sym_typedef] = ACTIONS(3165), - [anon_sym_virtual] = ACTIONS(3165), - [anon_sym_extern] = ACTIONS(3165), - [anon_sym___attribute__] = ACTIONS(3165), - [anon_sym___attribute] = ACTIONS(3165), - [anon_sym_using] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), - [anon_sym___declspec] = ACTIONS(3165), - [anon_sym___based] = ACTIONS(3165), - [anon_sym___cdecl] = ACTIONS(3165), - [anon_sym___clrcall] = ACTIONS(3165), - [anon_sym___stdcall] = ACTIONS(3165), - [anon_sym___fastcall] = ACTIONS(3165), - [anon_sym___thiscall] = ACTIONS(3165), - [anon_sym___vectorcall] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_signed] = ACTIONS(3165), - [anon_sym_unsigned] = ACTIONS(3165), - [anon_sym_long] = ACTIONS(3165), - [anon_sym_short] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_static] = ACTIONS(3165), - [anon_sym_register] = ACTIONS(3165), - [anon_sym_inline] = ACTIONS(3165), - [anon_sym___inline] = ACTIONS(3165), - [anon_sym___inline__] = ACTIONS(3165), - [anon_sym___forceinline] = ACTIONS(3165), - [anon_sym_thread_local] = ACTIONS(3165), - [anon_sym___thread] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_constexpr] = ACTIONS(3165), - [anon_sym_volatile] = ACTIONS(3165), - [anon_sym_restrict] = ACTIONS(3165), - [anon_sym___restrict__] = ACTIONS(3165), - [anon_sym__Atomic] = ACTIONS(3165), - [anon_sym__Noreturn] = ACTIONS(3165), - [anon_sym_noreturn] = ACTIONS(3165), - [anon_sym__Nonnull] = ACTIONS(3165), - [anon_sym_mutable] = ACTIONS(3165), - [anon_sym_constinit] = ACTIONS(3165), - [anon_sym_consteval] = ACTIONS(3165), - [anon_sym_alignas] = ACTIONS(3165), - [anon_sym__Alignas] = ACTIONS(3165), - [sym_primitive_type] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_switch] = ACTIONS(3165), - [anon_sym_case] = ACTIONS(3165), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym___try] = ACTIONS(3165), - [anon_sym___leave] = ACTIONS(3165), - [anon_sym_not] = ACTIONS(3165), - [anon_sym_compl] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_sizeof] = ACTIONS(3165), - [anon_sym___alignof__] = ACTIONS(3165), - [anon_sym___alignof] = ACTIONS(3165), - [anon_sym__alignof] = ACTIONS(3165), - [anon_sym_alignof] = ACTIONS(3165), - [anon_sym__Alignof] = ACTIONS(3165), - [anon_sym_offsetof] = ACTIONS(3165), - [anon_sym__Generic] = ACTIONS(3165), - [anon_sym_typename] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym___asm__] = ACTIONS(3165), - [anon_sym___asm] = ACTIONS(3165), - [sym_number_literal] = ACTIONS(3167), - [anon_sym_L_SQUOTE] = ACTIONS(3167), - [anon_sym_u_SQUOTE] = ACTIONS(3167), - [anon_sym_U_SQUOTE] = ACTIONS(3167), - [anon_sym_u8_SQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [anon_sym_NULL] = ACTIONS(3165), - [anon_sym_nullptr] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3165), - [anon_sym_decltype] = ACTIONS(3165), - [anon_sym_explicit] = ACTIONS(3165), - [anon_sym_export] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_import] = ACTIONS(3165), - [anon_sym_template] = ACTIONS(3165), - [anon_sym_operator] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_delete] = ACTIONS(3165), - [anon_sym_throw] = ACTIONS(3165), - [anon_sym_namespace] = ACTIONS(3165), - [anon_sym_static_assert] = ACTIONS(3165), - [anon_sym_concept] = ACTIONS(3165), - [anon_sym_co_return] = ACTIONS(3165), - [anon_sym_co_yield] = ACTIONS(3165), - [anon_sym_catch] = ACTIONS(3790), - [anon_sym_R_DQUOTE] = ACTIONS(3167), - [anon_sym_LR_DQUOTE] = ACTIONS(3167), - [anon_sym_uR_DQUOTE] = ACTIONS(3167), - [anon_sym_UR_DQUOTE] = ACTIONS(3167), - [anon_sym_u8R_DQUOTE] = ACTIONS(3167), - [anon_sym_co_await] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_requires] = ACTIONS(3165), - [anon_sym_CARET_CARET] = ACTIONS(3167), - [anon_sym_LBRACK_COLON] = ACTIONS(3167), - [sym_this] = ACTIONS(3165), - }, - [STATE(398)] = { - [sym_catch_clause] = STATE(398), - [aux_sym_constructor_try_statement_repeat1] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(3173), - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_include_token1] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym___attribute] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym___cdecl] = ACTIONS(3171), - [anon_sym___clrcall] = ACTIONS(3171), - [anon_sym___stdcall] = ACTIONS(3171), - [anon_sym___fastcall] = ACTIONS(3171), - [anon_sym___thiscall] = ACTIONS(3171), - [anon_sym___vectorcall] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym__Nonnull] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym__Alignas] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym___try] = ACTIONS(3171), - [anon_sym___leave] = ACTIONS(3171), - [anon_sym_not] = ACTIONS(3171), - [anon_sym_compl] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym___alignof__] = ACTIONS(3171), - [anon_sym___alignof] = ACTIONS(3171), - [anon_sym__alignof] = ACTIONS(3171), - [anon_sym_alignof] = ACTIONS(3171), - [anon_sym__Alignof] = ACTIONS(3171), - [anon_sym_offsetof] = ACTIONS(3171), - [anon_sym__Generic] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym___asm__] = ACTIONS(3171), - [anon_sym___asm] = ACTIONS(3171), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_L_SQUOTE] = ACTIONS(3173), - [anon_sym_u_SQUOTE] = ACTIONS(3173), - [anon_sym_U_SQUOTE] = ACTIONS(3173), - [anon_sym_u8_SQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_L_DQUOTE] = ACTIONS(3173), - [anon_sym_u_DQUOTE] = ACTIONS(3173), - [anon_sym_U_DQUOTE] = ACTIONS(3173), - [anon_sym_u8_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_export] = ACTIONS(3171), - [anon_sym_module] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_concept] = ACTIONS(3171), - [anon_sym_co_return] = ACTIONS(3171), - [anon_sym_co_yield] = ACTIONS(3171), - [anon_sym_catch] = ACTIONS(3792), - [anon_sym_R_DQUOTE] = ACTIONS(3173), - [anon_sym_LR_DQUOTE] = ACTIONS(3173), - [anon_sym_uR_DQUOTE] = ACTIONS(3173), - [anon_sym_UR_DQUOTE] = ACTIONS(3173), - [anon_sym_u8R_DQUOTE] = ACTIONS(3173), - [anon_sym_co_await] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_requires] = ACTIONS(3171), - [anon_sym_CARET_CARET] = ACTIONS(3173), - [anon_sym_LBRACK_COLON] = ACTIONS(3173), - [sym_this] = ACTIONS(3171), - }, - [STATE(399)] = { - [sym_type_qualifier] = STATE(5202), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(2376), - [sym_sized_type_specifier] = STATE(2222), - [sym_enum_specifier] = STATE(2222), - [sym_struct_specifier] = STATE(2222), - [sym_union_specifier] = STATE(2222), - [sym_expression] = STATE(5002), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_type_descriptor] = STATE(3833), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_placeholder_type_specifier] = STATE(2222), - [sym_decltype_auto] = STATE(2221), - [sym_decltype] = STATE(2169), - [sym_class_specifier] = STATE(2222), - [sym__class_name] = STATE(10271), - [sym_dependent_type] = STATE(2222), - [sym_template_type] = STATE(2146), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7954), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(2207), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(2251), - [sym__splice_specialization_specifier] = STATE(2170), - [sym_splice_type_specifier] = STATE(2223), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [aux_sym__type_definition_type_repeat1] = STATE(5202), - [aux_sym_sized_type_specifier_repeat1] = STATE(2076), - [sym_identifier] = ACTIONS(3795), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(3799), - [anon_sym_COLON_COLON] = ACTIONS(3801), - [anon_sym_signed] = ACTIONS(3803), - [anon_sym_unsigned] = ACTIONS(3803), - [anon_sym_long] = ACTIONS(3803), - [anon_sym_short] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3805), - [anon_sym_enum] = ACTIONS(3807), - [anon_sym_class] = ACTIONS(3809), - [anon_sym_struct] = ACTIONS(3811), - [anon_sym_union] = ACTIONS(3813), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(3817), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3819), - [anon_sym_decltype] = ACTIONS(3821), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [STATE(433)] = { + [sym_identifier] = ACTIONS(3909), + [aux_sym_preproc_include_token1] = ACTIONS(3909), + [aux_sym_preproc_def_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token2] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3909), + [aux_sym_preproc_else_token1] = ACTIONS(3909), + [aux_sym_preproc_elif_token1] = ACTIONS(3909), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3909), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3909), + [sym_preproc_directive] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(3911), + [anon_sym_TILDE] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym___extension__] = ACTIONS(3909), + [anon_sym_typedef] = ACTIONS(3909), + [anon_sym_virtual] = ACTIONS(3909), + [anon_sym_extern] = ACTIONS(3909), + [anon_sym___attribute__] = ACTIONS(3909), + [anon_sym___attribute] = ACTIONS(3909), + [anon_sym_using] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(3911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3911), + [anon_sym___declspec] = ACTIONS(3909), + [anon_sym___based] = ACTIONS(3909), + [anon_sym___cdecl] = ACTIONS(3909), + [anon_sym___clrcall] = ACTIONS(3909), + [anon_sym___stdcall] = ACTIONS(3909), + [anon_sym___fastcall] = ACTIONS(3909), + [anon_sym___thiscall] = ACTIONS(3909), + [anon_sym___vectorcall] = ACTIONS(3909), + [anon_sym_LBRACE] = ACTIONS(3911), + [anon_sym_signed] = ACTIONS(3909), + [anon_sym_unsigned] = ACTIONS(3909), + [anon_sym_long] = ACTIONS(3909), + [anon_sym_short] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_static] = ACTIONS(3909), + [anon_sym_register] = ACTIONS(3909), + [anon_sym_inline] = ACTIONS(3909), + [anon_sym___inline] = ACTIONS(3909), + [anon_sym___inline__] = ACTIONS(3909), + [anon_sym___forceinline] = ACTIONS(3909), + [anon_sym_thread_local] = ACTIONS(3909), + [anon_sym___thread] = ACTIONS(3909), + [anon_sym_const] = ACTIONS(3909), + [anon_sym_constexpr] = ACTIONS(3909), + [anon_sym_volatile] = ACTIONS(3909), + [anon_sym_restrict] = ACTIONS(3909), + [anon_sym___restrict__] = ACTIONS(3909), + [anon_sym__Atomic] = ACTIONS(3909), + [anon_sym__Noreturn] = ACTIONS(3909), + [anon_sym_noreturn] = ACTIONS(3909), + [anon_sym__Nonnull] = ACTIONS(3909), + [anon_sym_mutable] = ACTIONS(3909), + [anon_sym_constinit] = ACTIONS(3909), + [anon_sym_consteval] = ACTIONS(3909), + [anon_sym_alignas] = ACTIONS(3909), + [anon_sym__Alignas] = ACTIONS(3909), + [sym_primitive_type] = ACTIONS(3909), + [anon_sym_enum] = ACTIONS(3909), + [anon_sym_class] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(3909), + [anon_sym_union] = ACTIONS(3909), + [anon_sym_if] = ACTIONS(3909), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_case] = ACTIONS(3909), + [anon_sym_default] = ACTIONS(3909), + [anon_sym_while] = ACTIONS(3909), + [anon_sym_do] = ACTIONS(3909), + [anon_sym_for] = ACTIONS(3909), + [anon_sym_return] = ACTIONS(3909), + [anon_sym_break] = ACTIONS(3909), + [anon_sym_continue] = ACTIONS(3909), + [anon_sym_goto] = ACTIONS(3909), + [anon_sym___try] = ACTIONS(3909), + [anon_sym___leave] = ACTIONS(3909), + [anon_sym_not] = ACTIONS(3909), + [anon_sym_compl] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_sizeof] = ACTIONS(3909), + [anon_sym___alignof__] = ACTIONS(3909), + [anon_sym___alignof] = ACTIONS(3909), + [anon_sym__alignof] = ACTIONS(3909), + [anon_sym_alignof] = ACTIONS(3909), + [anon_sym__Alignof] = ACTIONS(3909), + [anon_sym_offsetof] = ACTIONS(3909), + [anon_sym__Generic] = ACTIONS(3909), + [anon_sym_typename] = ACTIONS(3909), + [anon_sym_asm] = ACTIONS(3909), + [anon_sym___asm__] = ACTIONS(3909), + [anon_sym___asm] = ACTIONS(3909), + [sym_number_literal] = ACTIONS(3911), + [anon_sym_L_SQUOTE] = ACTIONS(3911), + [anon_sym_u_SQUOTE] = ACTIONS(3911), + [anon_sym_U_SQUOTE] = ACTIONS(3911), + [anon_sym_u8_SQUOTE] = ACTIONS(3911), + [anon_sym_SQUOTE] = ACTIONS(3911), + [anon_sym_L_DQUOTE] = ACTIONS(3911), + [anon_sym_u_DQUOTE] = ACTIONS(3911), + [anon_sym_U_DQUOTE] = ACTIONS(3911), + [anon_sym_u8_DQUOTE] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [anon_sym_NULL] = ACTIONS(3909), + [anon_sym_nullptr] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3909), + [anon_sym_decltype] = ACTIONS(3909), + [anon_sym_explicit] = ACTIONS(3909), + [anon_sym_export] = ACTIONS(3909), + [anon_sym_module] = ACTIONS(3909), + [anon_sym_import] = ACTIONS(3909), + [anon_sym_template] = ACTIONS(3909), + [anon_sym_operator] = ACTIONS(3909), + [anon_sym_try] = ACTIONS(3909), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_throw] = ACTIONS(3909), + [anon_sym_namespace] = ACTIONS(3909), + [anon_sym_static_assert] = ACTIONS(3909), + [anon_sym_concept] = ACTIONS(3909), + [anon_sym_co_return] = ACTIONS(3909), + [anon_sym_co_yield] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3909), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3909), + [anon_sym_CARET_CARET] = ACTIONS(3911), + [anon_sym_LBRACK_COLON] = ACTIONS(3911), + [sym_this] = ACTIONS(3909), }, - [STATE(400)] = { - [sym_type_qualifier] = STATE(5187), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(2472), - [sym_sized_type_specifier] = STATE(3167), - [sym_enum_specifier] = STATE(3167), - [sym_struct_specifier] = STATE(3167), - [sym_union_specifier] = STATE(3167), - [sym_expression] = STATE(5322), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_type_descriptor] = STATE(5751), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_placeholder_type_specifier] = STATE(3167), - [sym_decltype_auto] = STATE(3166), - [sym_decltype] = STATE(3053), - [sym_class_specifier] = STATE(3167), - [sym__class_name] = STATE(10308), - [sym_dependent_type] = STATE(3167), - [sym_template_type] = STATE(3054), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7919), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(3176), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(3392), - [sym__splice_specialization_specifier] = STATE(2659), - [sym_splice_type_specifier] = STATE(3184), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [aux_sym__type_definition_type_repeat1] = STATE(5187), - [aux_sym_sized_type_specifier_repeat1] = STATE(2263), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3829), - [anon_sym_COLON_COLON] = ACTIONS(3831), - [anon_sym_signed] = ACTIONS(3833), - [anon_sym_unsigned] = ACTIONS(3833), - [anon_sym_long] = ACTIONS(3833), - [anon_sym_short] = ACTIONS(3833), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3835), - [anon_sym_enum] = ACTIONS(3837), - [anon_sym_class] = ACTIONS(3839), - [anon_sym_struct] = ACTIONS(3841), - [anon_sym_union] = ACTIONS(3843), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3847), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3849), - [anon_sym_decltype] = ACTIONS(3851), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(434)] = { + [sym_identifier] = ACTIONS(3913), + [aux_sym_preproc_include_token1] = ACTIONS(3913), + [aux_sym_preproc_def_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token2] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3913), + [aux_sym_preproc_else_token1] = ACTIONS(3913), + [aux_sym_preproc_elif_token1] = ACTIONS(3913), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3913), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3913), + [sym_preproc_directive] = ACTIONS(3913), + [anon_sym_LPAREN2] = ACTIONS(3915), + [anon_sym_BANG] = ACTIONS(3915), + [anon_sym_TILDE] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym___extension__] = ACTIONS(3913), + [anon_sym_typedef] = ACTIONS(3913), + [anon_sym_virtual] = ACTIONS(3913), + [anon_sym_extern] = ACTIONS(3913), + [anon_sym___attribute__] = ACTIONS(3913), + [anon_sym___attribute] = ACTIONS(3913), + [anon_sym_using] = ACTIONS(3913), + [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3915), + [anon_sym___declspec] = ACTIONS(3913), + [anon_sym___based] = ACTIONS(3913), + [anon_sym___cdecl] = ACTIONS(3913), + [anon_sym___clrcall] = ACTIONS(3913), + [anon_sym___stdcall] = ACTIONS(3913), + [anon_sym___fastcall] = ACTIONS(3913), + [anon_sym___thiscall] = ACTIONS(3913), + [anon_sym___vectorcall] = ACTIONS(3913), + [anon_sym_LBRACE] = ACTIONS(3915), + [anon_sym_signed] = ACTIONS(3913), + [anon_sym_unsigned] = ACTIONS(3913), + [anon_sym_long] = ACTIONS(3913), + [anon_sym_short] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(3913), + [anon_sym_static] = ACTIONS(3913), + [anon_sym_register] = ACTIONS(3913), + [anon_sym_inline] = ACTIONS(3913), + [anon_sym___inline] = ACTIONS(3913), + [anon_sym___inline__] = ACTIONS(3913), + [anon_sym___forceinline] = ACTIONS(3913), + [anon_sym_thread_local] = ACTIONS(3913), + [anon_sym___thread] = ACTIONS(3913), + [anon_sym_const] = ACTIONS(3913), + [anon_sym_constexpr] = ACTIONS(3913), + [anon_sym_volatile] = ACTIONS(3913), + [anon_sym_restrict] = ACTIONS(3913), + [anon_sym___restrict__] = ACTIONS(3913), + [anon_sym__Atomic] = ACTIONS(3913), + [anon_sym__Noreturn] = ACTIONS(3913), + [anon_sym_noreturn] = ACTIONS(3913), + [anon_sym__Nonnull] = ACTIONS(3913), + [anon_sym_mutable] = ACTIONS(3913), + [anon_sym_constinit] = ACTIONS(3913), + [anon_sym_consteval] = ACTIONS(3913), + [anon_sym_alignas] = ACTIONS(3913), + [anon_sym__Alignas] = ACTIONS(3913), + [sym_primitive_type] = ACTIONS(3913), + [anon_sym_enum] = ACTIONS(3913), + [anon_sym_class] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(3913), + [anon_sym_union] = ACTIONS(3913), + [anon_sym_if] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_case] = ACTIONS(3913), + [anon_sym_default] = ACTIONS(3913), + [anon_sym_while] = ACTIONS(3913), + [anon_sym_do] = ACTIONS(3913), + [anon_sym_for] = ACTIONS(3913), + [anon_sym_return] = ACTIONS(3913), + [anon_sym_break] = ACTIONS(3913), + [anon_sym_continue] = ACTIONS(3913), + [anon_sym_goto] = ACTIONS(3913), + [anon_sym___try] = ACTIONS(3913), + [anon_sym___leave] = ACTIONS(3913), + [anon_sym_not] = ACTIONS(3913), + [anon_sym_compl] = ACTIONS(3913), + [anon_sym_DASH_DASH] = ACTIONS(3915), + [anon_sym_PLUS_PLUS] = ACTIONS(3915), + [anon_sym_sizeof] = ACTIONS(3913), + [anon_sym___alignof__] = ACTIONS(3913), + [anon_sym___alignof] = ACTIONS(3913), + [anon_sym__alignof] = ACTIONS(3913), + [anon_sym_alignof] = ACTIONS(3913), + [anon_sym__Alignof] = ACTIONS(3913), + [anon_sym_offsetof] = ACTIONS(3913), + [anon_sym__Generic] = ACTIONS(3913), + [anon_sym_typename] = ACTIONS(3913), + [anon_sym_asm] = ACTIONS(3913), + [anon_sym___asm__] = ACTIONS(3913), + [anon_sym___asm] = ACTIONS(3913), + [sym_number_literal] = ACTIONS(3915), + [anon_sym_L_SQUOTE] = ACTIONS(3915), + [anon_sym_u_SQUOTE] = ACTIONS(3915), + [anon_sym_U_SQUOTE] = ACTIONS(3915), + [anon_sym_u8_SQUOTE] = ACTIONS(3915), + [anon_sym_SQUOTE] = ACTIONS(3915), + [anon_sym_L_DQUOTE] = ACTIONS(3915), + [anon_sym_u_DQUOTE] = ACTIONS(3915), + [anon_sym_U_DQUOTE] = ACTIONS(3915), + [anon_sym_u8_DQUOTE] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [sym_true] = ACTIONS(3913), + [sym_false] = ACTIONS(3913), + [anon_sym_NULL] = ACTIONS(3913), + [anon_sym_nullptr] = ACTIONS(3913), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3913), + [anon_sym_decltype] = ACTIONS(3913), + [anon_sym_explicit] = ACTIONS(3913), + [anon_sym_export] = ACTIONS(3913), + [anon_sym_module] = ACTIONS(3913), + [anon_sym_import] = ACTIONS(3913), + [anon_sym_template] = ACTIONS(3913), + [anon_sym_operator] = ACTIONS(3913), + [anon_sym_try] = ACTIONS(3913), + [anon_sym_delete] = ACTIONS(3913), + [anon_sym_throw] = ACTIONS(3913), + [anon_sym_namespace] = ACTIONS(3913), + [anon_sym_static_assert] = ACTIONS(3913), + [anon_sym_concept] = ACTIONS(3913), + [anon_sym_co_return] = ACTIONS(3913), + [anon_sym_co_yield] = ACTIONS(3913), + [anon_sym_R_DQUOTE] = ACTIONS(3915), + [anon_sym_LR_DQUOTE] = ACTIONS(3915), + [anon_sym_uR_DQUOTE] = ACTIONS(3915), + [anon_sym_UR_DQUOTE] = ACTIONS(3915), + [anon_sym_u8R_DQUOTE] = ACTIONS(3915), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3913), + [anon_sym_requires] = ACTIONS(3913), + [anon_sym_CARET_CARET] = ACTIONS(3915), + [anon_sym_LBRACK_COLON] = ACTIONS(3915), + [sym_this] = ACTIONS(3913), }, - [STATE(401)] = { - [sym_type_qualifier] = STATE(5201), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(3483), - [sym_sized_type_specifier] = STATE(4064), - [sym_enum_specifier] = STATE(4064), - [sym_struct_specifier] = STATE(4064), - [sym_union_specifier] = STATE(4064), - [sym_expression] = STATE(6359), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(5965), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(4064), - [sym_decltype_auto] = STATE(4119), - [sym_decltype] = STATE(3967), - [sym_class_specifier] = STATE(4064), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(4064), - [sym_template_type] = STATE(4148), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7920), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(4155), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(4279), - [sym__splice_specialization_specifier] = STATE(3711), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [aux_sym__type_definition_type_repeat1] = STATE(5201), - [aux_sym_sized_type_specifier_repeat1] = STATE(2941), - [sym_identifier] = ACTIONS(3853), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(3863), - [anon_sym_COLON_COLON] = ACTIONS(3865), - [anon_sym_signed] = ACTIONS(3867), - [anon_sym_unsigned] = ACTIONS(3867), - [anon_sym_long] = ACTIONS(3867), - [anon_sym_short] = ACTIONS(3867), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3869), - [anon_sym_enum] = ACTIONS(3871), - [anon_sym_class] = ACTIONS(3873), - [anon_sym_struct] = ACTIONS(3875), - [anon_sym_union] = ACTIONS(3877), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3883), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3891), - [anon_sym_decltype] = ACTIONS(3893), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(402)] = { - [sym_type_qualifier] = STATE(5062), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(2280), - [sym_sized_type_specifier] = STATE(2222), - [sym_enum_specifier] = STATE(2222), - [sym_struct_specifier] = STATE(2222), - [sym_union_specifier] = STATE(2222), - [sym_expression] = STATE(4750), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_type_descriptor] = STATE(3833), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_placeholder_type_specifier] = STATE(2222), - [sym_decltype_auto] = STATE(2221), - [sym_decltype] = STATE(2169), - [sym_class_specifier] = STATE(2222), - [sym__class_name] = STATE(10271), - [sym_dependent_type] = STATE(2222), - [sym_template_type] = STATE(2146), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7954), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(2207), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(2251), - [sym__splice_specialization_specifier] = STATE(2170), - [sym_splice_type_specifier] = STATE(2223), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [aux_sym__type_definition_type_repeat1] = STATE(5062), - [aux_sym_sized_type_specifier_repeat1] = STATE(2076), - [sym_identifier] = ACTIONS(3909), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3913), - [anon_sym_COLON_COLON] = ACTIONS(3915), - [anon_sym_signed] = ACTIONS(3803), - [anon_sym_unsigned] = ACTIONS(3803), - [anon_sym_long] = ACTIONS(3803), - [anon_sym_short] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3805), - [anon_sym_enum] = ACTIONS(3807), - [anon_sym_class] = ACTIONS(3809), - [anon_sym_struct] = ACTIONS(3811), - [anon_sym_union] = ACTIONS(3813), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(3817), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3819), - [anon_sym_decltype] = ACTIONS(3821), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(403)] = { + [STATE(435)] = { [sym_identifier] = ACTIONS(3917), [aux_sym_preproc_include_token1] = ACTIONS(3917), [aux_sym_preproc_def_token1] = ACTIONS(3917), @@ -117549,7 +122195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3919), [sym_this] = ACTIONS(3917), }, - [STATE(404)] = { + [STATE(436)] = { [sym_identifier] = ACTIONS(3921), [aux_sym_preproc_include_token1] = ACTIONS(3921), [aux_sym_preproc_def_token1] = ACTIONS(3921), @@ -117694,1534 +122340,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3923), [sym_this] = ACTIONS(3921), }, - [STATE(405)] = { + [STATE(437)] = { + [sym_type_qualifier] = STATE(5123), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4031), + [sym_sized_type_specifier] = STATE(4081), + [sym_enum_specifier] = STATE(4081), + [sym_struct_specifier] = STATE(4081), + [sym_union_specifier] = STATE(4081), + [sym_expression] = STATE(6856), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_type_descriptor] = STATE(7241), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_placeholder_type_specifier] = STATE(4081), + [sym_decltype_auto] = STATE(4080), + [sym_decltype] = STATE(3960), + [sym_class_specifier] = STATE(4081), + [sym__class_name] = STATE(10593), + [sym_dependent_type] = STATE(4081), + [sym_template_type] = STATE(4601), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7930), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(4736), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(4883), + [sym__splice_specialization_specifier] = STATE(3735), + [sym_splice_type_specifier] = STATE(4642), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym__type_definition_type_repeat1] = STATE(5123), + [aux_sym_sized_type_specifier_repeat1] = STATE(3511), [sym_identifier] = ACTIONS(3925), - [aux_sym_preproc_include_token1] = ACTIONS(3925), - [aux_sym_preproc_def_token1] = ACTIONS(3925), - [aux_sym_preproc_if_token1] = ACTIONS(3925), - [aux_sym_preproc_if_token2] = ACTIONS(3925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3925), - [aux_sym_preproc_else_token1] = ACTIONS(3925), - [aux_sym_preproc_elif_token1] = ACTIONS(3925), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3925), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3925), - [sym_preproc_directive] = ACTIONS(3925), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_BANG] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_DASH] = ACTIONS(3925), - [anon_sym_PLUS] = ACTIONS(3925), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3925), - [anon_sym_typedef] = ACTIONS(3925), - [anon_sym_virtual] = ACTIONS(3925), - [anon_sym_extern] = ACTIONS(3925), - [anon_sym___attribute__] = ACTIONS(3925), - [anon_sym___attribute] = ACTIONS(3925), - [anon_sym_using] = ACTIONS(3925), - [anon_sym_COLON_COLON] = ACTIONS(3928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3925), - [anon_sym___based] = ACTIONS(3925), - [anon_sym___cdecl] = ACTIONS(3925), - [anon_sym___clrcall] = ACTIONS(3925), - [anon_sym___stdcall] = ACTIONS(3925), - [anon_sym___fastcall] = ACTIONS(3925), - [anon_sym___thiscall] = ACTIONS(3925), - [anon_sym___vectorcall] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_signed] = ACTIONS(3925), - [anon_sym_unsigned] = ACTIONS(3925), - [anon_sym_long] = ACTIONS(3925), - [anon_sym_short] = ACTIONS(3925), - [anon_sym_LBRACK] = ACTIONS(3925), - [anon_sym_static] = ACTIONS(3925), - [anon_sym_register] = ACTIONS(3925), - [anon_sym_inline] = ACTIONS(3925), - [anon_sym___inline] = ACTIONS(3925), - [anon_sym___inline__] = ACTIONS(3925), - [anon_sym___forceinline] = ACTIONS(3925), - [anon_sym_thread_local] = ACTIONS(3925), - [anon_sym___thread] = ACTIONS(3925), - [anon_sym_const] = ACTIONS(3925), - [anon_sym_constexpr] = ACTIONS(3925), - [anon_sym_volatile] = ACTIONS(3925), - [anon_sym_restrict] = ACTIONS(3925), - [anon_sym___restrict__] = ACTIONS(3925), - [anon_sym__Atomic] = ACTIONS(3925), - [anon_sym__Noreturn] = ACTIONS(3925), - [anon_sym_noreturn] = ACTIONS(3925), - [anon_sym__Nonnull] = ACTIONS(3925), - [anon_sym_mutable] = ACTIONS(3925), - [anon_sym_constinit] = ACTIONS(3925), - [anon_sym_consteval] = ACTIONS(3925), - [anon_sym_alignas] = ACTIONS(3925), - [anon_sym__Alignas] = ACTIONS(3925), - [sym_primitive_type] = ACTIONS(3925), - [anon_sym_enum] = ACTIONS(3925), - [anon_sym_class] = ACTIONS(3925), - [anon_sym_struct] = ACTIONS(3925), - [anon_sym_union] = ACTIONS(3925), - [anon_sym_if] = ACTIONS(3925), - [anon_sym_switch] = ACTIONS(3925), - [anon_sym_case] = ACTIONS(3925), - [anon_sym_default] = ACTIONS(3925), - [anon_sym_while] = ACTIONS(3925), - [anon_sym_do] = ACTIONS(3925), - [anon_sym_for] = ACTIONS(3925), - [anon_sym_return] = ACTIONS(3925), - [anon_sym_break] = ACTIONS(3925), - [anon_sym_continue] = ACTIONS(3925), - [anon_sym_goto] = ACTIONS(3925), - [anon_sym___try] = ACTIONS(3925), - [anon_sym___leave] = ACTIONS(3925), - [anon_sym_not] = ACTIONS(3925), - [anon_sym_compl] = ACTIONS(3925), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3925), - [anon_sym___alignof__] = ACTIONS(3925), - [anon_sym___alignof] = ACTIONS(3925), - [anon_sym__alignof] = ACTIONS(3925), - [anon_sym_alignof] = ACTIONS(3925), - [anon_sym__Alignof] = ACTIONS(3925), - [anon_sym_offsetof] = ACTIONS(3925), - [anon_sym__Generic] = ACTIONS(3925), - [anon_sym_typename] = ACTIONS(3925), - [anon_sym_asm] = ACTIONS(3925), - [anon_sym___asm__] = ACTIONS(3925), - [anon_sym___asm] = ACTIONS(3925), - [sym_number_literal] = ACTIONS(3928), - [anon_sym_L_SQUOTE] = ACTIONS(3928), - [anon_sym_u_SQUOTE] = ACTIONS(3928), - [anon_sym_U_SQUOTE] = ACTIONS(3928), - [anon_sym_u8_SQUOTE] = ACTIONS(3928), - [anon_sym_SQUOTE] = ACTIONS(3928), - [anon_sym_L_DQUOTE] = ACTIONS(3928), - [anon_sym_u_DQUOTE] = ACTIONS(3928), - [anon_sym_U_DQUOTE] = ACTIONS(3928), - [anon_sym_u8_DQUOTE] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(3928), - [sym_true] = ACTIONS(3925), - [sym_false] = ACTIONS(3925), - [anon_sym_NULL] = ACTIONS(3925), - [anon_sym_nullptr] = ACTIONS(3925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3925), - [anon_sym_decltype] = ACTIONS(3925), - [anon_sym_explicit] = ACTIONS(3925), - [anon_sym_export] = ACTIONS(3925), - [anon_sym_module] = ACTIONS(3925), - [anon_sym_import] = ACTIONS(3925), - [anon_sym_template] = ACTIONS(3925), - [anon_sym_operator] = ACTIONS(3925), - [anon_sym_try] = ACTIONS(3925), - [anon_sym_delete] = ACTIONS(3925), - [anon_sym_throw] = ACTIONS(3925), - [anon_sym_namespace] = ACTIONS(3925), - [anon_sym_static_assert] = ACTIONS(3925), - [anon_sym_concept] = ACTIONS(3925), - [anon_sym_co_return] = ACTIONS(3925), - [anon_sym_co_yield] = ACTIONS(3925), - [anon_sym_R_DQUOTE] = ACTIONS(3928), - [anon_sym_LR_DQUOTE] = ACTIONS(3928), - [anon_sym_uR_DQUOTE] = ACTIONS(3928), - [anon_sym_UR_DQUOTE] = ACTIONS(3928), - [anon_sym_u8R_DQUOTE] = ACTIONS(3928), - [anon_sym_co_await] = ACTIONS(3925), - [anon_sym_new] = ACTIONS(3925), - [anon_sym_requires] = ACTIONS(3925), - [anon_sym_CARET_CARET] = ACTIONS(3928), - [anon_sym_LBRACK_COLON] = ACTIONS(3928), - [sym_this] = ACTIONS(3925), - }, - [STATE(406)] = { - [sym_identifier] = ACTIONS(3931), - [aux_sym_preproc_include_token1] = ACTIONS(3931), - [aux_sym_preproc_def_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token2] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), - [aux_sym_preproc_else_token1] = ACTIONS(3931), - [aux_sym_preproc_elif_token1] = ACTIONS(3931), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3931), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3931), - [sym_preproc_directive] = ACTIONS(3931), - [anon_sym_LPAREN2] = ACTIONS(3933), - [anon_sym_BANG] = ACTIONS(3933), - [anon_sym_TILDE] = ACTIONS(3933), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), [anon_sym_DASH] = ACTIONS(3931), [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(3931), - [anon_sym_SEMI] = ACTIONS(3933), - [anon_sym___extension__] = ACTIONS(3931), - [anon_sym_typedef] = ACTIONS(3931), - [anon_sym_virtual] = ACTIONS(3931), - [anon_sym_extern] = ACTIONS(3931), - [anon_sym___attribute__] = ACTIONS(3931), - [anon_sym___attribute] = ACTIONS(3931), - [anon_sym_using] = ACTIONS(3931), - [anon_sym_COLON_COLON] = ACTIONS(3933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), - [anon_sym___declspec] = ACTIONS(3931), - [anon_sym___based] = ACTIONS(3931), - [anon_sym___cdecl] = ACTIONS(3931), - [anon_sym___clrcall] = ACTIONS(3931), - [anon_sym___stdcall] = ACTIONS(3931), - [anon_sym___fastcall] = ACTIONS(3931), - [anon_sym___thiscall] = ACTIONS(3931), - [anon_sym___vectorcall] = ACTIONS(3931), - [anon_sym_LBRACE] = ACTIONS(3933), - [anon_sym_signed] = ACTIONS(3931), - [anon_sym_unsigned] = ACTIONS(3931), - [anon_sym_long] = ACTIONS(3931), - [anon_sym_short] = ACTIONS(3931), - [anon_sym_LBRACK] = ACTIONS(3931), - [anon_sym_static] = ACTIONS(3931), - [anon_sym_register] = ACTIONS(3931), - [anon_sym_inline] = ACTIONS(3931), - [anon_sym___inline] = ACTIONS(3931), - [anon_sym___inline__] = ACTIONS(3931), - [anon_sym___forceinline] = ACTIONS(3931), - [anon_sym_thread_local] = ACTIONS(3931), - [anon_sym___thread] = ACTIONS(3931), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_constexpr] = ACTIONS(3931), - [anon_sym_volatile] = ACTIONS(3931), - [anon_sym_restrict] = ACTIONS(3931), - [anon_sym___restrict__] = ACTIONS(3931), - [anon_sym__Atomic] = ACTIONS(3931), - [anon_sym__Noreturn] = ACTIONS(3931), - [anon_sym_noreturn] = ACTIONS(3931), - [anon_sym__Nonnull] = ACTIONS(3931), - [anon_sym_mutable] = ACTIONS(3931), - [anon_sym_constinit] = ACTIONS(3931), - [anon_sym_consteval] = ACTIONS(3931), - [anon_sym_alignas] = ACTIONS(3931), - [anon_sym__Alignas] = ACTIONS(3931), - [sym_primitive_type] = ACTIONS(3931), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3931), - [anon_sym_struct] = ACTIONS(3931), - [anon_sym_union] = ACTIONS(3931), - [anon_sym_if] = ACTIONS(3931), - [anon_sym_switch] = ACTIONS(3931), - [anon_sym_case] = ACTIONS(3931), - [anon_sym_default] = ACTIONS(3931), - [anon_sym_while] = ACTIONS(3931), - [anon_sym_do] = ACTIONS(3931), - [anon_sym_for] = ACTIONS(3931), - [anon_sym_return] = ACTIONS(3931), - [anon_sym_break] = ACTIONS(3931), - [anon_sym_continue] = ACTIONS(3931), - [anon_sym_goto] = ACTIONS(3931), - [anon_sym___try] = ACTIONS(3931), - [anon_sym___leave] = ACTIONS(3931), - [anon_sym_not] = ACTIONS(3931), - [anon_sym_compl] = ACTIONS(3931), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_sizeof] = ACTIONS(3931), - [anon_sym___alignof__] = ACTIONS(3931), - [anon_sym___alignof] = ACTIONS(3931), - [anon_sym__alignof] = ACTIONS(3931), - [anon_sym_alignof] = ACTIONS(3931), - [anon_sym__Alignof] = ACTIONS(3931), - [anon_sym_offsetof] = ACTIONS(3931), - [anon_sym__Generic] = ACTIONS(3931), - [anon_sym_typename] = ACTIONS(3931), - [anon_sym_asm] = ACTIONS(3931), - [anon_sym___asm__] = ACTIONS(3931), - [anon_sym___asm] = ACTIONS(3931), - [sym_number_literal] = ACTIONS(3933), - [anon_sym_L_SQUOTE] = ACTIONS(3933), - [anon_sym_u_SQUOTE] = ACTIONS(3933), - [anon_sym_U_SQUOTE] = ACTIONS(3933), - [anon_sym_u8_SQUOTE] = ACTIONS(3933), - [anon_sym_SQUOTE] = ACTIONS(3933), - [anon_sym_L_DQUOTE] = ACTIONS(3933), - [anon_sym_u_DQUOTE] = ACTIONS(3933), - [anon_sym_U_DQUOTE] = ACTIONS(3933), - [anon_sym_u8_DQUOTE] = ACTIONS(3933), - [anon_sym_DQUOTE] = ACTIONS(3933), - [sym_true] = ACTIONS(3931), - [sym_false] = ACTIONS(3931), - [anon_sym_NULL] = ACTIONS(3931), - [anon_sym_nullptr] = ACTIONS(3931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3931), - [anon_sym_decltype] = ACTIONS(3931), - [anon_sym_explicit] = ACTIONS(3931), - [anon_sym_export] = ACTIONS(3931), - [anon_sym_module] = ACTIONS(3931), - [anon_sym_import] = ACTIONS(3931), - [anon_sym_template] = ACTIONS(3931), - [anon_sym_operator] = ACTIONS(3931), - [anon_sym_try] = ACTIONS(3931), - [anon_sym_delete] = ACTIONS(3931), - [anon_sym_throw] = ACTIONS(3931), - [anon_sym_namespace] = ACTIONS(3931), - [anon_sym_static_assert] = ACTIONS(3931), - [anon_sym_concept] = ACTIONS(3931), - [anon_sym_co_return] = ACTIONS(3931), - [anon_sym_co_yield] = ACTIONS(3931), - [anon_sym_R_DQUOTE] = ACTIONS(3933), - [anon_sym_LR_DQUOTE] = ACTIONS(3933), - [anon_sym_uR_DQUOTE] = ACTIONS(3933), - [anon_sym_UR_DQUOTE] = ACTIONS(3933), - [anon_sym_u8R_DQUOTE] = ACTIONS(3933), - [anon_sym_co_await] = ACTIONS(3931), - [anon_sym_new] = ACTIONS(3931), - [anon_sym_requires] = ACTIONS(3931), - [anon_sym_CARET_CARET] = ACTIONS(3933), - [anon_sym_LBRACK_COLON] = ACTIONS(3933), - [sym_this] = ACTIONS(3931), - }, - [STATE(407)] = { - [sym_identifier] = ACTIONS(3935), - [aux_sym_preproc_include_token1] = ACTIONS(3935), - [aux_sym_preproc_def_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token2] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), - [aux_sym_preproc_else_token1] = ACTIONS(3935), - [aux_sym_preproc_elif_token1] = ACTIONS(3935), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3935), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3935), - [sym_preproc_directive] = ACTIONS(3935), - [anon_sym_LPAREN2] = ACTIONS(3937), - [anon_sym_BANG] = ACTIONS(3937), - [anon_sym_TILDE] = ACTIONS(3937), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3937), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_SEMI] = ACTIONS(3937), + [anon_sym_AMP] = ACTIONS(3933), [anon_sym___extension__] = ACTIONS(3935), - [anon_sym_typedef] = ACTIONS(3935), - [anon_sym_virtual] = ACTIONS(3935), - [anon_sym_extern] = ACTIONS(3935), - [anon_sym___attribute__] = ACTIONS(3935), - [anon_sym___attribute] = ACTIONS(3935), - [anon_sym_using] = ACTIONS(3935), [anon_sym_COLON_COLON] = ACTIONS(3937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), - [anon_sym___declspec] = ACTIONS(3935), - [anon_sym___based] = ACTIONS(3935), - [anon_sym___cdecl] = ACTIONS(3935), - [anon_sym___clrcall] = ACTIONS(3935), - [anon_sym___stdcall] = ACTIONS(3935), - [anon_sym___fastcall] = ACTIONS(3935), - [anon_sym___thiscall] = ACTIONS(3935), - [anon_sym___vectorcall] = ACTIONS(3935), - [anon_sym_LBRACE] = ACTIONS(3937), - [anon_sym_signed] = ACTIONS(3935), - [anon_sym_unsigned] = ACTIONS(3935), - [anon_sym_long] = ACTIONS(3935), - [anon_sym_short] = ACTIONS(3935), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_static] = ACTIONS(3935), - [anon_sym_register] = ACTIONS(3935), - [anon_sym_inline] = ACTIONS(3935), - [anon_sym___inline] = ACTIONS(3935), - [anon_sym___inline__] = ACTIONS(3935), - [anon_sym___forceinline] = ACTIONS(3935), - [anon_sym_thread_local] = ACTIONS(3935), - [anon_sym___thread] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_constexpr] = ACTIONS(3935), - [anon_sym_volatile] = ACTIONS(3935), - [anon_sym_restrict] = ACTIONS(3935), - [anon_sym___restrict__] = ACTIONS(3935), - [anon_sym__Atomic] = ACTIONS(3935), - [anon_sym__Noreturn] = ACTIONS(3935), - [anon_sym_noreturn] = ACTIONS(3935), - [anon_sym__Nonnull] = ACTIONS(3935), - [anon_sym_mutable] = ACTIONS(3935), - [anon_sym_constinit] = ACTIONS(3935), - [anon_sym_consteval] = ACTIONS(3935), - [anon_sym_alignas] = ACTIONS(3935), - [anon_sym__Alignas] = ACTIONS(3935), - [sym_primitive_type] = ACTIONS(3935), - [anon_sym_enum] = ACTIONS(3935), - [anon_sym_class] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3935), - [anon_sym_if] = ACTIONS(3935), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_case] = ACTIONS(3935), - [anon_sym_default] = ACTIONS(3935), - [anon_sym_while] = ACTIONS(3935), - [anon_sym_do] = ACTIONS(3935), - [anon_sym_for] = ACTIONS(3935), - [anon_sym_return] = ACTIONS(3935), - [anon_sym_break] = ACTIONS(3935), - [anon_sym_continue] = ACTIONS(3935), - [anon_sym_goto] = ACTIONS(3935), - [anon_sym___try] = ACTIONS(3935), - [anon_sym___leave] = ACTIONS(3935), - [anon_sym_not] = ACTIONS(3935), - [anon_sym_compl] = ACTIONS(3935), - [anon_sym_DASH_DASH] = ACTIONS(3937), - [anon_sym_PLUS_PLUS] = ACTIONS(3937), - [anon_sym_sizeof] = ACTIONS(3935), - [anon_sym___alignof__] = ACTIONS(3935), - [anon_sym___alignof] = ACTIONS(3935), - [anon_sym__alignof] = ACTIONS(3935), - [anon_sym_alignof] = ACTIONS(3935), - [anon_sym__Alignof] = ACTIONS(3935), - [anon_sym_offsetof] = ACTIONS(3935), - [anon_sym__Generic] = ACTIONS(3935), - [anon_sym_typename] = ACTIONS(3935), - [anon_sym_asm] = ACTIONS(3935), - [anon_sym___asm__] = ACTIONS(3935), - [anon_sym___asm] = ACTIONS(3935), - [sym_number_literal] = ACTIONS(3937), - [anon_sym_L_SQUOTE] = ACTIONS(3937), - [anon_sym_u_SQUOTE] = ACTIONS(3937), - [anon_sym_U_SQUOTE] = ACTIONS(3937), - [anon_sym_u8_SQUOTE] = ACTIONS(3937), - [anon_sym_SQUOTE] = ACTIONS(3937), - [anon_sym_L_DQUOTE] = ACTIONS(3937), - [anon_sym_u_DQUOTE] = ACTIONS(3937), - [anon_sym_U_DQUOTE] = ACTIONS(3937), - [anon_sym_u8_DQUOTE] = ACTIONS(3937), - [anon_sym_DQUOTE] = ACTIONS(3937), - [sym_true] = ACTIONS(3935), - [sym_false] = ACTIONS(3935), - [anon_sym_NULL] = ACTIONS(3935), - [anon_sym_nullptr] = ACTIONS(3935), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3935), - [anon_sym_decltype] = ACTIONS(3935), - [anon_sym_explicit] = ACTIONS(3935), - [anon_sym_export] = ACTIONS(3935), - [anon_sym_module] = ACTIONS(3935), - [anon_sym_import] = ACTIONS(3935), - [anon_sym_template] = ACTIONS(3935), - [anon_sym_operator] = ACTIONS(3935), - [anon_sym_try] = ACTIONS(3935), - [anon_sym_delete] = ACTIONS(3935), - [anon_sym_throw] = ACTIONS(3935), - [anon_sym_namespace] = ACTIONS(3935), - [anon_sym_static_assert] = ACTIONS(3935), - [anon_sym_concept] = ACTIONS(3935), - [anon_sym_co_return] = ACTIONS(3935), - [anon_sym_co_yield] = ACTIONS(3935), - [anon_sym_R_DQUOTE] = ACTIONS(3937), - [anon_sym_LR_DQUOTE] = ACTIONS(3937), - [anon_sym_uR_DQUOTE] = ACTIONS(3937), - [anon_sym_UR_DQUOTE] = ACTIONS(3937), - [anon_sym_u8R_DQUOTE] = ACTIONS(3937), - [anon_sym_co_await] = ACTIONS(3935), - [anon_sym_new] = ACTIONS(3935), - [anon_sym_requires] = ACTIONS(3935), - [anon_sym_CARET_CARET] = ACTIONS(3937), - [anon_sym_LBRACK_COLON] = ACTIONS(3937), - [sym_this] = ACTIONS(3935), - }, - [STATE(408)] = { - [sym_identifier] = ACTIONS(3939), - [aux_sym_preproc_include_token1] = ACTIONS(3939), - [aux_sym_preproc_def_token1] = ACTIONS(3939), - [aux_sym_preproc_if_token1] = ACTIONS(3939), - [aux_sym_preproc_if_token2] = ACTIONS(3939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3939), - [aux_sym_preproc_else_token1] = ACTIONS(3939), - [aux_sym_preproc_elif_token1] = ACTIONS(3939), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3939), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3939), - [sym_preproc_directive] = ACTIONS(3939), - [anon_sym_LPAREN2] = ACTIONS(3941), - [anon_sym_BANG] = ACTIONS(3941), - [anon_sym_TILDE] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3939), - [anon_sym_PLUS] = ACTIONS(3939), - [anon_sym_STAR] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym___extension__] = ACTIONS(3939), - [anon_sym_typedef] = ACTIONS(3939), - [anon_sym_virtual] = ACTIONS(3939), - [anon_sym_extern] = ACTIONS(3939), - [anon_sym___attribute__] = ACTIONS(3939), - [anon_sym___attribute] = ACTIONS(3939), - [anon_sym_using] = ACTIONS(3939), - [anon_sym_COLON_COLON] = ACTIONS(3941), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3941), - [anon_sym___declspec] = ACTIONS(3939), - [anon_sym___based] = ACTIONS(3939), - [anon_sym___cdecl] = ACTIONS(3939), - [anon_sym___clrcall] = ACTIONS(3939), - [anon_sym___stdcall] = ACTIONS(3939), - [anon_sym___fastcall] = ACTIONS(3939), - [anon_sym___thiscall] = ACTIONS(3939), - [anon_sym___vectorcall] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3941), [anon_sym_signed] = ACTIONS(3939), [anon_sym_unsigned] = ACTIONS(3939), [anon_sym_long] = ACTIONS(3939), [anon_sym_short] = ACTIONS(3939), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_static] = ACTIONS(3939), - [anon_sym_register] = ACTIONS(3939), - [anon_sym_inline] = ACTIONS(3939), - [anon_sym___inline] = ACTIONS(3939), - [anon_sym___inline__] = ACTIONS(3939), - [anon_sym___forceinline] = ACTIONS(3939), - [anon_sym_thread_local] = ACTIONS(3939), - [anon_sym___thread] = ACTIONS(3939), - [anon_sym_const] = ACTIONS(3939), - [anon_sym_constexpr] = ACTIONS(3939), - [anon_sym_volatile] = ACTIONS(3939), - [anon_sym_restrict] = ACTIONS(3939), - [anon_sym___restrict__] = ACTIONS(3939), - [anon_sym__Atomic] = ACTIONS(3939), - [anon_sym__Noreturn] = ACTIONS(3939), - [anon_sym_noreturn] = ACTIONS(3939), - [anon_sym__Nonnull] = ACTIONS(3939), - [anon_sym_mutable] = ACTIONS(3939), - [anon_sym_constinit] = ACTIONS(3939), - [anon_sym_consteval] = ACTIONS(3939), - [anon_sym_alignas] = ACTIONS(3939), - [anon_sym__Alignas] = ACTIONS(3939), - [sym_primitive_type] = ACTIONS(3939), - [anon_sym_enum] = ACTIONS(3939), - [anon_sym_class] = ACTIONS(3939), - [anon_sym_struct] = ACTIONS(3939), - [anon_sym_union] = ACTIONS(3939), - [anon_sym_if] = ACTIONS(3939), - [anon_sym_switch] = ACTIONS(3939), - [anon_sym_case] = ACTIONS(3939), - [anon_sym_default] = ACTIONS(3939), - [anon_sym_while] = ACTIONS(3939), - [anon_sym_do] = ACTIONS(3939), - [anon_sym_for] = ACTIONS(3939), - [anon_sym_return] = ACTIONS(3939), - [anon_sym_break] = ACTIONS(3939), - [anon_sym_continue] = ACTIONS(3939), - [anon_sym_goto] = ACTIONS(3939), - [anon_sym___try] = ACTIONS(3939), - [anon_sym___leave] = ACTIONS(3939), - [anon_sym_not] = ACTIONS(3939), - [anon_sym_compl] = ACTIONS(3939), - [anon_sym_DASH_DASH] = ACTIONS(3941), - [anon_sym_PLUS_PLUS] = ACTIONS(3941), - [anon_sym_sizeof] = ACTIONS(3939), - [anon_sym___alignof__] = ACTIONS(3939), - [anon_sym___alignof] = ACTIONS(3939), - [anon_sym__alignof] = ACTIONS(3939), - [anon_sym_alignof] = ACTIONS(3939), - [anon_sym__Alignof] = ACTIONS(3939), - [anon_sym_offsetof] = ACTIONS(3939), - [anon_sym__Generic] = ACTIONS(3939), - [anon_sym_typename] = ACTIONS(3939), - [anon_sym_asm] = ACTIONS(3939), - [anon_sym___asm__] = ACTIONS(3939), - [anon_sym___asm] = ACTIONS(3939), - [sym_number_literal] = ACTIONS(3941), - [anon_sym_L_SQUOTE] = ACTIONS(3941), - [anon_sym_u_SQUOTE] = ACTIONS(3941), - [anon_sym_U_SQUOTE] = ACTIONS(3941), - [anon_sym_u8_SQUOTE] = ACTIONS(3941), - [anon_sym_SQUOTE] = ACTIONS(3941), - [anon_sym_L_DQUOTE] = ACTIONS(3941), - [anon_sym_u_DQUOTE] = ACTIONS(3941), - [anon_sym_U_DQUOTE] = ACTIONS(3941), - [anon_sym_u8_DQUOTE] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [sym_true] = ACTIONS(3939), - [sym_false] = ACTIONS(3939), - [anon_sym_NULL] = ACTIONS(3939), - [anon_sym_nullptr] = ACTIONS(3939), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3939), - [anon_sym_decltype] = ACTIONS(3939), - [anon_sym_explicit] = ACTIONS(3939), - [anon_sym_export] = ACTIONS(3939), - [anon_sym_module] = ACTIONS(3939), - [anon_sym_import] = ACTIONS(3939), - [anon_sym_template] = ACTIONS(3939), - [anon_sym_operator] = ACTIONS(3939), - [anon_sym_try] = ACTIONS(3939), - [anon_sym_delete] = ACTIONS(3939), - [anon_sym_throw] = ACTIONS(3939), - [anon_sym_namespace] = ACTIONS(3939), - [anon_sym_static_assert] = ACTIONS(3939), - [anon_sym_concept] = ACTIONS(3939), - [anon_sym_co_return] = ACTIONS(3939), - [anon_sym_co_yield] = ACTIONS(3939), - [anon_sym_R_DQUOTE] = ACTIONS(3941), - [anon_sym_LR_DQUOTE] = ACTIONS(3941), - [anon_sym_uR_DQUOTE] = ACTIONS(3941), - [anon_sym_UR_DQUOTE] = ACTIONS(3941), - [anon_sym_u8R_DQUOTE] = ACTIONS(3941), - [anon_sym_co_await] = ACTIONS(3939), - [anon_sym_new] = ACTIONS(3939), - [anon_sym_requires] = ACTIONS(3939), - [anon_sym_CARET_CARET] = ACTIONS(3941), - [anon_sym_LBRACK_COLON] = ACTIONS(3941), - [sym_this] = ACTIONS(3939), - }, - [STATE(409)] = { - [sym_identifier] = ACTIONS(3943), - [aux_sym_preproc_include_token1] = ACTIONS(3943), - [aux_sym_preproc_def_token1] = ACTIONS(3943), - [aux_sym_preproc_if_token1] = ACTIONS(3943), - [aux_sym_preproc_if_token2] = ACTIONS(3943), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3943), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3943), - [aux_sym_preproc_else_token1] = ACTIONS(3943), - [aux_sym_preproc_elif_token1] = ACTIONS(3943), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3943), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3943), - [sym_preproc_directive] = ACTIONS(3943), - [anon_sym_LPAREN2] = ACTIONS(3945), - [anon_sym_BANG] = ACTIONS(3945), - [anon_sym_TILDE] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym___extension__] = ACTIONS(3943), - [anon_sym_typedef] = 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___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_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_typename] = 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_export] = ACTIONS(3943), - [anon_sym_module] = ACTIONS(3943), - [anon_sym_import] = ACTIONS(3943), - [anon_sym_template] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_delete] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_namespace] = ACTIONS(3943), - [anon_sym_static_assert] = ACTIONS(3943), - [anon_sym_concept] = 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), - [anon_sym_CARET_CARET] = ACTIONS(3945), - [anon_sym_LBRACK_COLON] = ACTIONS(3945), - [sym_this] = ACTIONS(3943), - }, - [STATE(410)] = { - [sym_catch_clause] = STATE(410), - [aux_sym_constructor_try_statement_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_include_token1] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token2] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym___attribute] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym___cdecl] = ACTIONS(3171), - [anon_sym___clrcall] = ACTIONS(3171), - [anon_sym___stdcall] = ACTIONS(3171), - [anon_sym___fastcall] = ACTIONS(3171), - [anon_sym___thiscall] = ACTIONS(3171), - [anon_sym___vectorcall] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym__Nonnull] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym__Alignas] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym___try] = ACTIONS(3171), - [anon_sym___leave] = ACTIONS(3171), - [anon_sym_not] = ACTIONS(3171), - [anon_sym_compl] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym___alignof__] = ACTIONS(3171), - [anon_sym___alignof] = ACTIONS(3171), - [anon_sym__alignof] = ACTIONS(3171), - [anon_sym_alignof] = ACTIONS(3171), - [anon_sym__Alignof] = ACTIONS(3171), - [anon_sym_offsetof] = ACTIONS(3171), - [anon_sym__Generic] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym___asm__] = ACTIONS(3171), - [anon_sym___asm] = ACTIONS(3171), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_L_SQUOTE] = ACTIONS(3173), - [anon_sym_u_SQUOTE] = ACTIONS(3173), - [anon_sym_U_SQUOTE] = ACTIONS(3173), - [anon_sym_u8_SQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_L_DQUOTE] = ACTIONS(3173), - [anon_sym_u_DQUOTE] = ACTIONS(3173), - [anon_sym_U_DQUOTE] = ACTIONS(3173), - [anon_sym_u8_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_export] = ACTIONS(3171), - [anon_sym_module] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_concept] = ACTIONS(3171), - [anon_sym_co_return] = ACTIONS(3171), - [anon_sym_co_yield] = ACTIONS(3171), - [anon_sym_catch] = ACTIONS(3947), - [anon_sym_R_DQUOTE] = ACTIONS(3173), - [anon_sym_LR_DQUOTE] = ACTIONS(3173), - [anon_sym_uR_DQUOTE] = ACTIONS(3173), - [anon_sym_UR_DQUOTE] = ACTIONS(3173), - [anon_sym_u8R_DQUOTE] = ACTIONS(3173), - [anon_sym_co_await] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_requires] = ACTIONS(3171), - [anon_sym_CARET_CARET] = ACTIONS(3173), - [anon_sym_LBRACK_COLON] = ACTIONS(3173), - [sym_this] = ACTIONS(3171), - }, - [STATE(411)] = { - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_include_token1] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token2] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym___cdecl] = ACTIONS(3950), - [anon_sym___clrcall] = ACTIONS(3950), - [anon_sym___stdcall] = ACTIONS(3950), - [anon_sym___fastcall] = ACTIONS(3950), - [anon_sym___thiscall] = ACTIONS(3950), - [anon_sym___vectorcall] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3952), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_if] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_case] = ACTIONS(3950), - [anon_sym_default] = ACTIONS(3950), - [anon_sym_while] = ACTIONS(3950), - [anon_sym_do] = ACTIONS(3950), - [anon_sym_for] = ACTIONS(3950), - [anon_sym_return] = ACTIONS(3950), - [anon_sym_break] = ACTIONS(3950), - [anon_sym_continue] = ACTIONS(3950), - [anon_sym_goto] = ACTIONS(3950), - [anon_sym___try] = ACTIONS(3950), - [anon_sym___leave] = ACTIONS(3950), - [anon_sym_not] = ACTIONS(3950), - [anon_sym_compl] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3952), - [anon_sym_sizeof] = ACTIONS(3950), - [anon_sym___alignof__] = ACTIONS(3950), - [anon_sym___alignof] = ACTIONS(3950), - [anon_sym__alignof] = ACTIONS(3950), - [anon_sym_alignof] = ACTIONS(3950), - [anon_sym__Alignof] = ACTIONS(3950), - [anon_sym_offsetof] = ACTIONS(3950), - [anon_sym__Generic] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), - [anon_sym_asm] = ACTIONS(3950), - [anon_sym___asm__] = ACTIONS(3950), - [anon_sym___asm] = ACTIONS(3950), - [sym_number_literal] = ACTIONS(3952), - [anon_sym_L_SQUOTE] = ACTIONS(3952), - [anon_sym_u_SQUOTE] = ACTIONS(3952), - [anon_sym_U_SQUOTE] = ACTIONS(3952), - [anon_sym_u8_SQUOTE] = ACTIONS(3952), - [anon_sym_SQUOTE] = ACTIONS(3952), - [anon_sym_L_DQUOTE] = ACTIONS(3952), - [anon_sym_u_DQUOTE] = ACTIONS(3952), - [anon_sym_U_DQUOTE] = ACTIONS(3952), - [anon_sym_u8_DQUOTE] = ACTIONS(3952), - [anon_sym_DQUOTE] = ACTIONS(3952), - [sym_true] = ACTIONS(3950), - [sym_false] = ACTIONS(3950), - [anon_sym_NULL] = ACTIONS(3950), - [anon_sym_nullptr] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_export] = ACTIONS(3950), - [anon_sym_module] = ACTIONS(3950), - [anon_sym_import] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_try] = ACTIONS(3950), - [anon_sym_delete] = ACTIONS(3950), - [anon_sym_throw] = ACTIONS(3950), - [anon_sym_namespace] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_concept] = ACTIONS(3950), - [anon_sym_co_return] = ACTIONS(3950), - [anon_sym_co_yield] = ACTIONS(3950), - [anon_sym_R_DQUOTE] = ACTIONS(3952), - [anon_sym_LR_DQUOTE] = ACTIONS(3952), - [anon_sym_uR_DQUOTE] = ACTIONS(3952), - [anon_sym_UR_DQUOTE] = ACTIONS(3952), - [anon_sym_u8R_DQUOTE] = ACTIONS(3952), - [anon_sym_co_await] = ACTIONS(3950), - [anon_sym_new] = ACTIONS(3950), - [anon_sym_requires] = ACTIONS(3950), - [anon_sym_CARET_CARET] = ACTIONS(3952), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), - [sym_this] = ACTIONS(3950), - }, - [STATE(412)] = { - [sym_identifier] = ACTIONS(3954), - [aux_sym_preproc_include_token1] = ACTIONS(3954), - [aux_sym_preproc_def_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token2] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), - [aux_sym_preproc_else_token1] = ACTIONS(3954), - [aux_sym_preproc_elif_token1] = ACTIONS(3954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3954), - [sym_preproc_directive] = ACTIONS(3954), - [anon_sym_LPAREN2] = ACTIONS(3956), - [anon_sym_BANG] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym___extension__] = ACTIONS(3954), - [anon_sym_typedef] = ACTIONS(3954), - [anon_sym_virtual] = ACTIONS(3954), - [anon_sym_extern] = ACTIONS(3954), - [anon_sym___attribute__] = ACTIONS(3954), - [anon_sym___attribute] = ACTIONS(3954), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_COLON_COLON] = ACTIONS(3956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), - [anon_sym___declspec] = ACTIONS(3954), - [anon_sym___based] = ACTIONS(3954), - [anon_sym___cdecl] = ACTIONS(3954), - [anon_sym___clrcall] = ACTIONS(3954), - [anon_sym___stdcall] = ACTIONS(3954), - [anon_sym___fastcall] = ACTIONS(3954), - [anon_sym___thiscall] = ACTIONS(3954), - [anon_sym___vectorcall] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3956), - [anon_sym_signed] = ACTIONS(3954), - [anon_sym_unsigned] = ACTIONS(3954), - [anon_sym_long] = ACTIONS(3954), - [anon_sym_short] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3954), - [anon_sym_register] = ACTIONS(3954), - [anon_sym_inline] = ACTIONS(3954), - [anon_sym___inline] = ACTIONS(3954), - [anon_sym___inline__] = ACTIONS(3954), - [anon_sym___forceinline] = ACTIONS(3954), - [anon_sym_thread_local] = ACTIONS(3954), - [anon_sym___thread] = ACTIONS(3954), - [anon_sym_const] = ACTIONS(3954), - [anon_sym_constexpr] = ACTIONS(3954), - [anon_sym_volatile] = ACTIONS(3954), - [anon_sym_restrict] = ACTIONS(3954), - [anon_sym___restrict__] = ACTIONS(3954), - [anon_sym__Atomic] = ACTIONS(3954), - [anon_sym__Noreturn] = ACTIONS(3954), - [anon_sym_noreturn] = ACTIONS(3954), - [anon_sym__Nonnull] = ACTIONS(3954), - [anon_sym_mutable] = ACTIONS(3954), - [anon_sym_constinit] = ACTIONS(3954), - [anon_sym_consteval] = ACTIONS(3954), - [anon_sym_alignas] = ACTIONS(3954), - [anon_sym__Alignas] = ACTIONS(3954), - [sym_primitive_type] = ACTIONS(3954), - [anon_sym_enum] = ACTIONS(3954), - [anon_sym_class] = ACTIONS(3954), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3954), - [anon_sym_if] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_case] = ACTIONS(3954), - [anon_sym_default] = ACTIONS(3954), - [anon_sym_while] = ACTIONS(3954), - [anon_sym_do] = ACTIONS(3954), - [anon_sym_for] = ACTIONS(3954), - [anon_sym_return] = ACTIONS(3954), - [anon_sym_break] = ACTIONS(3954), - [anon_sym_continue] = ACTIONS(3954), - [anon_sym_goto] = ACTIONS(3954), - [anon_sym___try] = ACTIONS(3954), - [anon_sym___leave] = ACTIONS(3954), - [anon_sym_not] = ACTIONS(3954), - [anon_sym_compl] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3956), - [anon_sym_PLUS_PLUS] = ACTIONS(3956), - [anon_sym_sizeof] = ACTIONS(3954), - [anon_sym___alignof__] = ACTIONS(3954), - [anon_sym___alignof] = ACTIONS(3954), - [anon_sym__alignof] = ACTIONS(3954), - [anon_sym_alignof] = ACTIONS(3954), - [anon_sym__Alignof] = ACTIONS(3954), - [anon_sym_offsetof] = ACTIONS(3954), - [anon_sym__Generic] = ACTIONS(3954), - [anon_sym_typename] = ACTIONS(3954), - [anon_sym_asm] = ACTIONS(3954), - [anon_sym___asm__] = ACTIONS(3954), - [anon_sym___asm] = ACTIONS(3954), - [sym_number_literal] = ACTIONS(3956), - [anon_sym_L_SQUOTE] = ACTIONS(3956), - [anon_sym_u_SQUOTE] = ACTIONS(3956), - [anon_sym_U_SQUOTE] = ACTIONS(3956), - [anon_sym_u8_SQUOTE] = ACTIONS(3956), - [anon_sym_SQUOTE] = ACTIONS(3956), - [anon_sym_L_DQUOTE] = ACTIONS(3956), - [anon_sym_u_DQUOTE] = ACTIONS(3956), - [anon_sym_U_DQUOTE] = ACTIONS(3956), - [anon_sym_u8_DQUOTE] = ACTIONS(3956), - [anon_sym_DQUOTE] = ACTIONS(3956), - [sym_true] = ACTIONS(3954), - [sym_false] = ACTIONS(3954), - [anon_sym_NULL] = ACTIONS(3954), - [anon_sym_nullptr] = ACTIONS(3954), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3954), - [anon_sym_decltype] = ACTIONS(3954), - [anon_sym_explicit] = ACTIONS(3954), - [anon_sym_export] = ACTIONS(3954), - [anon_sym_module] = ACTIONS(3954), - [anon_sym_import] = ACTIONS(3954), - [anon_sym_template] = ACTIONS(3954), - [anon_sym_operator] = ACTIONS(3954), - [anon_sym_try] = ACTIONS(3954), - [anon_sym_delete] = ACTIONS(3954), - [anon_sym_throw] = ACTIONS(3954), - [anon_sym_namespace] = ACTIONS(3954), - [anon_sym_static_assert] = ACTIONS(3954), - [anon_sym_concept] = ACTIONS(3954), - [anon_sym_co_return] = ACTIONS(3954), - [anon_sym_co_yield] = ACTIONS(3954), - [anon_sym_R_DQUOTE] = ACTIONS(3956), - [anon_sym_LR_DQUOTE] = ACTIONS(3956), - [anon_sym_uR_DQUOTE] = ACTIONS(3956), - [anon_sym_UR_DQUOTE] = ACTIONS(3956), - [anon_sym_u8R_DQUOTE] = ACTIONS(3956), - [anon_sym_co_await] = ACTIONS(3954), - [anon_sym_new] = ACTIONS(3954), - [anon_sym_requires] = ACTIONS(3954), - [anon_sym_CARET_CARET] = ACTIONS(3956), - [anon_sym_LBRACK_COLON] = ACTIONS(3956), - [sym_this] = ACTIONS(3954), - }, - [STATE(413)] = { - [sym_identifier] = ACTIONS(3958), - [aux_sym_preproc_include_token1] = ACTIONS(3958), - [aux_sym_preproc_def_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token2] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), - [aux_sym_preproc_else_token1] = ACTIONS(3958), - [aux_sym_preproc_elif_token1] = ACTIONS(3958), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3958), - [sym_preproc_directive] = ACTIONS(3958), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_BANG] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3958), - [anon_sym_PLUS] = ACTIONS(3958), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_typedef] = ACTIONS(3958), - [anon_sym_virtual] = ACTIONS(3958), - [anon_sym_extern] = ACTIONS(3958), - [anon_sym___attribute__] = ACTIONS(3958), - [anon_sym___attribute] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), - [anon_sym___declspec] = ACTIONS(3958), - [anon_sym___based] = ACTIONS(3958), - [anon_sym___cdecl] = ACTIONS(3958), - [anon_sym___clrcall] = ACTIONS(3958), - [anon_sym___stdcall] = ACTIONS(3958), - [anon_sym___fastcall] = ACTIONS(3958), - [anon_sym___thiscall] = ACTIONS(3958), - [anon_sym___vectorcall] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_signed] = ACTIONS(3958), - [anon_sym_unsigned] = ACTIONS(3958), - [anon_sym_long] = ACTIONS(3958), - [anon_sym_short] = ACTIONS(3958), - [anon_sym_LBRACK] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3958), - [anon_sym_register] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym___inline] = ACTIONS(3958), - [anon_sym___inline__] = ACTIONS(3958), - [anon_sym___forceinline] = ACTIONS(3958), - [anon_sym_thread_local] = ACTIONS(3958), - [anon_sym___thread] = ACTIONS(3958), - [anon_sym_const] = ACTIONS(3958), - [anon_sym_constexpr] = ACTIONS(3958), - [anon_sym_volatile] = ACTIONS(3958), - [anon_sym_restrict] = ACTIONS(3958), - [anon_sym___restrict__] = ACTIONS(3958), - [anon_sym__Atomic] = ACTIONS(3958), - [anon_sym__Noreturn] = ACTIONS(3958), - [anon_sym_noreturn] = ACTIONS(3958), - [anon_sym__Nonnull] = ACTIONS(3958), - [anon_sym_mutable] = ACTIONS(3958), - [anon_sym_constinit] = ACTIONS(3958), - [anon_sym_consteval] = ACTIONS(3958), - [anon_sym_alignas] = ACTIONS(3958), - [anon_sym__Alignas] = ACTIONS(3958), - [sym_primitive_type] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_union] = ACTIONS(3958), - [anon_sym_if] = ACTIONS(3958), - [anon_sym_switch] = ACTIONS(3958), - [anon_sym_case] = ACTIONS(3958), - [anon_sym_default] = ACTIONS(3958), - [anon_sym_while] = ACTIONS(3958), - [anon_sym_do] = ACTIONS(3958), - [anon_sym_for] = ACTIONS(3958), - [anon_sym_return] = ACTIONS(3958), - [anon_sym_break] = ACTIONS(3958), - [anon_sym_continue] = ACTIONS(3958), - [anon_sym_goto] = ACTIONS(3958), - [anon_sym___try] = ACTIONS(3958), - [anon_sym___leave] = ACTIONS(3958), - [anon_sym_not] = ACTIONS(3958), - [anon_sym_compl] = ACTIONS(3958), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_PLUS_PLUS] = ACTIONS(3960), - [anon_sym_sizeof] = ACTIONS(3958), - [anon_sym___alignof__] = ACTIONS(3958), - [anon_sym___alignof] = ACTIONS(3958), - [anon_sym__alignof] = ACTIONS(3958), - [anon_sym_alignof] = ACTIONS(3958), - [anon_sym__Alignof] = ACTIONS(3958), - [anon_sym_offsetof] = ACTIONS(3958), - [anon_sym__Generic] = ACTIONS(3958), - [anon_sym_typename] = ACTIONS(3958), - [anon_sym_asm] = ACTIONS(3958), - [anon_sym___asm__] = ACTIONS(3958), - [anon_sym___asm] = ACTIONS(3958), - [sym_number_literal] = ACTIONS(3960), - [anon_sym_L_SQUOTE] = ACTIONS(3960), - [anon_sym_u_SQUOTE] = ACTIONS(3960), - [anon_sym_U_SQUOTE] = ACTIONS(3960), - [anon_sym_u8_SQUOTE] = ACTIONS(3960), - [anon_sym_SQUOTE] = ACTIONS(3960), - [anon_sym_L_DQUOTE] = ACTIONS(3960), - [anon_sym_u_DQUOTE] = ACTIONS(3960), - [anon_sym_U_DQUOTE] = ACTIONS(3960), - [anon_sym_u8_DQUOTE] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [anon_sym_NULL] = ACTIONS(3958), - [anon_sym_nullptr] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3958), - [anon_sym_decltype] = ACTIONS(3958), - [anon_sym_explicit] = ACTIONS(3958), - [anon_sym_export] = ACTIONS(3958), - [anon_sym_module] = ACTIONS(3958), - [anon_sym_import] = ACTIONS(3958), - [anon_sym_template] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_try] = ACTIONS(3958), - [anon_sym_delete] = ACTIONS(3958), - [anon_sym_throw] = ACTIONS(3958), - [anon_sym_namespace] = ACTIONS(3958), - [anon_sym_static_assert] = ACTIONS(3958), - [anon_sym_concept] = ACTIONS(3958), - [anon_sym_co_return] = ACTIONS(3958), - [anon_sym_co_yield] = ACTIONS(3958), - [anon_sym_R_DQUOTE] = ACTIONS(3960), - [anon_sym_LR_DQUOTE] = ACTIONS(3960), - [anon_sym_uR_DQUOTE] = ACTIONS(3960), - [anon_sym_UR_DQUOTE] = ACTIONS(3960), - [anon_sym_u8R_DQUOTE] = ACTIONS(3960), - [anon_sym_co_await] = ACTIONS(3958), - [anon_sym_new] = ACTIONS(3958), - [anon_sym_requires] = ACTIONS(3958), - [anon_sym_CARET_CARET] = ACTIONS(3960), - [anon_sym_LBRACK_COLON] = ACTIONS(3960), - [sym_this] = ACTIONS(3958), - }, - [STATE(414)] = { - [sym_identifier] = ACTIONS(3962), - [aux_sym_preproc_include_token1] = ACTIONS(3962), - [aux_sym_preproc_def_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token2] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), - [aux_sym_preproc_else_token1] = ACTIONS(3962), - [aux_sym_preproc_elif_token1] = ACTIONS(3962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3962), - [sym_preproc_directive] = ACTIONS(3962), - [anon_sym_LPAREN2] = ACTIONS(3964), - [anon_sym_BANG] = ACTIONS(3964), - [anon_sym_TILDE] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym___extension__] = ACTIONS(3962), - [anon_sym_typedef] = ACTIONS(3962), - [anon_sym_virtual] = ACTIONS(3962), - [anon_sym_extern] = ACTIONS(3962), - [anon_sym___attribute__] = ACTIONS(3962), - [anon_sym___attribute] = ACTIONS(3962), - [anon_sym_using] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), - [anon_sym___declspec] = ACTIONS(3962), - [anon_sym___based] = ACTIONS(3962), - [anon_sym___cdecl] = ACTIONS(3962), - [anon_sym___clrcall] = ACTIONS(3962), - [anon_sym___stdcall] = ACTIONS(3962), - [anon_sym___fastcall] = ACTIONS(3962), - [anon_sym___thiscall] = ACTIONS(3962), - [anon_sym___vectorcall] = ACTIONS(3962), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_signed] = ACTIONS(3962), - [anon_sym_unsigned] = ACTIONS(3962), - [anon_sym_long] = ACTIONS(3962), - [anon_sym_short] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3962), - [anon_sym_register] = ACTIONS(3962), - [anon_sym_inline] = ACTIONS(3962), - [anon_sym___inline] = ACTIONS(3962), - [anon_sym___inline__] = ACTIONS(3962), - [anon_sym___forceinline] = ACTIONS(3962), - [anon_sym_thread_local] = ACTIONS(3962), - [anon_sym___thread] = ACTIONS(3962), - [anon_sym_const] = ACTIONS(3962), - [anon_sym_constexpr] = ACTIONS(3962), - [anon_sym_volatile] = ACTIONS(3962), - [anon_sym_restrict] = ACTIONS(3962), - [anon_sym___restrict__] = ACTIONS(3962), - [anon_sym__Atomic] = ACTIONS(3962), - [anon_sym__Noreturn] = ACTIONS(3962), - [anon_sym_noreturn] = ACTIONS(3962), - [anon_sym__Nonnull] = ACTIONS(3962), - [anon_sym_mutable] = ACTIONS(3962), - [anon_sym_constinit] = ACTIONS(3962), - [anon_sym_consteval] = ACTIONS(3962), - [anon_sym_alignas] = ACTIONS(3962), - [anon_sym__Alignas] = ACTIONS(3962), - [sym_primitive_type] = ACTIONS(3962), - [anon_sym_enum] = ACTIONS(3962), - [anon_sym_class] = ACTIONS(3962), - [anon_sym_struct] = ACTIONS(3962), - [anon_sym_union] = ACTIONS(3962), - [anon_sym_if] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3962), - [anon_sym_case] = ACTIONS(3962), - [anon_sym_default] = ACTIONS(3962), - [anon_sym_while] = ACTIONS(3962), - [anon_sym_do] = ACTIONS(3962), - [anon_sym_for] = ACTIONS(3962), - [anon_sym_return] = ACTIONS(3962), - [anon_sym_break] = ACTIONS(3962), - [anon_sym_continue] = ACTIONS(3962), - [anon_sym_goto] = ACTIONS(3962), - [anon_sym___try] = ACTIONS(3962), - [anon_sym___leave] = ACTIONS(3962), - [anon_sym_not] = ACTIONS(3962), - [anon_sym_compl] = ACTIONS(3962), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_sizeof] = ACTIONS(3962), - [anon_sym___alignof__] = ACTIONS(3962), - [anon_sym___alignof] = ACTIONS(3962), - [anon_sym__alignof] = ACTIONS(3962), - [anon_sym_alignof] = ACTIONS(3962), - [anon_sym__Alignof] = ACTIONS(3962), - [anon_sym_offsetof] = ACTIONS(3962), - [anon_sym__Generic] = ACTIONS(3962), - [anon_sym_typename] = ACTIONS(3962), - [anon_sym_asm] = ACTIONS(3962), - [anon_sym___asm__] = ACTIONS(3962), - [anon_sym___asm] = ACTIONS(3962), - [sym_number_literal] = ACTIONS(3964), - [anon_sym_L_SQUOTE] = ACTIONS(3964), - [anon_sym_u_SQUOTE] = ACTIONS(3964), - [anon_sym_U_SQUOTE] = ACTIONS(3964), - [anon_sym_u8_SQUOTE] = ACTIONS(3964), - [anon_sym_SQUOTE] = ACTIONS(3964), - [anon_sym_L_DQUOTE] = ACTIONS(3964), - [anon_sym_u_DQUOTE] = ACTIONS(3964), - [anon_sym_U_DQUOTE] = ACTIONS(3964), - [anon_sym_u8_DQUOTE] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym_true] = ACTIONS(3962), - [sym_false] = ACTIONS(3962), - [anon_sym_NULL] = ACTIONS(3962), - [anon_sym_nullptr] = ACTIONS(3962), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3962), - [anon_sym_decltype] = ACTIONS(3962), - [anon_sym_explicit] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3962), - [anon_sym_module] = ACTIONS(3962), - [anon_sym_import] = ACTIONS(3962), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(3962), - [anon_sym_try] = ACTIONS(3962), - [anon_sym_delete] = ACTIONS(3962), - [anon_sym_throw] = ACTIONS(3962), - [anon_sym_namespace] = ACTIONS(3962), - [anon_sym_static_assert] = ACTIONS(3962), - [anon_sym_concept] = ACTIONS(3962), - [anon_sym_co_return] = ACTIONS(3962), - [anon_sym_co_yield] = ACTIONS(3962), - [anon_sym_R_DQUOTE] = ACTIONS(3964), - [anon_sym_LR_DQUOTE] = ACTIONS(3964), - [anon_sym_uR_DQUOTE] = ACTIONS(3964), - [anon_sym_UR_DQUOTE] = ACTIONS(3964), - [anon_sym_u8R_DQUOTE] = ACTIONS(3964), - [anon_sym_co_await] = ACTIONS(3962), - [anon_sym_new] = ACTIONS(3962), - [anon_sym_requires] = ACTIONS(3962), - [anon_sym_CARET_CARET] = ACTIONS(3964), - [anon_sym_LBRACK_COLON] = ACTIONS(3964), - [sym_this] = ACTIONS(3962), - }, - [STATE(415)] = { - [sym_type_qualifier] = STATE(5205), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(2241), - [sym_sized_type_specifier] = STATE(2222), - [sym_enum_specifier] = STATE(2222), - [sym_struct_specifier] = STATE(2222), - [sym_union_specifier] = STATE(2222), - [sym_expression] = STATE(4493), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_type_descriptor] = STATE(3833), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_placeholder_type_specifier] = STATE(2222), - [sym_decltype_auto] = STATE(2221), - [sym_decltype] = STATE(2169), - [sym_class_specifier] = STATE(2222), - [sym__class_name] = STATE(10271), - [sym_dependent_type] = STATE(2222), - [sym_template_type] = STATE(2146), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7954), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(2207), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(2251), - [sym__splice_specialization_specifier] = STATE(2170), - [sym_splice_type_specifier] = STATE(2223), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [aux_sym__type_definition_type_repeat1] = STATE(5205), - [aux_sym_sized_type_specifier_repeat1] = STATE(2093), - [sym_identifier] = ACTIONS(3966), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(3970), - [anon_sym_COLON_COLON] = ACTIONS(3972), - [anon_sym_signed] = ACTIONS(3974), - [anon_sym_unsigned] = ACTIONS(3974), - [anon_sym_long] = ACTIONS(3974), - [anon_sym_short] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -119236,2235 +122432,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3976), - [anon_sym_enum] = ACTIONS(3978), - [anon_sym_class] = ACTIONS(3809), - [anon_sym_struct] = ACTIONS(3811), - [anon_sym_union] = ACTIONS(3813), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(3982), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3819), - [anon_sym_decltype] = ACTIONS(3821), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(416)] = { - [sym_identifier] = ACTIONS(3984), - [aux_sym_preproc_include_token1] = ACTIONS(3984), - [aux_sym_preproc_def_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token2] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), - [aux_sym_preproc_else_token1] = ACTIONS(3984), - [aux_sym_preproc_elif_token1] = ACTIONS(3984), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3984), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3984), - [sym_preproc_directive] = ACTIONS(3984), - [anon_sym_LPAREN2] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_TILDE] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3984), - [anon_sym_PLUS] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_SEMI] = ACTIONS(3986), - [anon_sym___extension__] = ACTIONS(3984), - [anon_sym_typedef] = ACTIONS(3984), - [anon_sym_virtual] = ACTIONS(3984), - [anon_sym_extern] = ACTIONS(3984), - [anon_sym___attribute__] = ACTIONS(3984), - [anon_sym___attribute] = ACTIONS(3984), - [anon_sym_using] = ACTIONS(3984), - [anon_sym_COLON_COLON] = ACTIONS(3986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), - [anon_sym___declspec] = ACTIONS(3984), - [anon_sym___based] = ACTIONS(3984), - [anon_sym___cdecl] = ACTIONS(3984), - [anon_sym___clrcall] = ACTIONS(3984), - [anon_sym___stdcall] = ACTIONS(3984), - [anon_sym___fastcall] = ACTIONS(3984), - [anon_sym___thiscall] = ACTIONS(3984), - [anon_sym___vectorcall] = ACTIONS(3984), - [anon_sym_LBRACE] = ACTIONS(3986), - [anon_sym_signed] = ACTIONS(3984), - [anon_sym_unsigned] = ACTIONS(3984), - [anon_sym_long] = ACTIONS(3984), - [anon_sym_short] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_register] = ACTIONS(3984), - [anon_sym_inline] = ACTIONS(3984), - [anon_sym___inline] = ACTIONS(3984), - [anon_sym___inline__] = ACTIONS(3984), - [anon_sym___forceinline] = ACTIONS(3984), - [anon_sym_thread_local] = ACTIONS(3984), - [anon_sym___thread] = ACTIONS(3984), - [anon_sym_const] = ACTIONS(3984), - [anon_sym_constexpr] = ACTIONS(3984), - [anon_sym_volatile] = ACTIONS(3984), - [anon_sym_restrict] = ACTIONS(3984), - [anon_sym___restrict__] = ACTIONS(3984), - [anon_sym__Atomic] = ACTIONS(3984), - [anon_sym__Noreturn] = ACTIONS(3984), - [anon_sym_noreturn] = ACTIONS(3984), - [anon_sym__Nonnull] = ACTIONS(3984), - [anon_sym_mutable] = ACTIONS(3984), - [anon_sym_constinit] = ACTIONS(3984), - [anon_sym_consteval] = ACTIONS(3984), - [anon_sym_alignas] = ACTIONS(3984), - [anon_sym__Alignas] = ACTIONS(3984), - [sym_primitive_type] = ACTIONS(3984), - [anon_sym_enum] = ACTIONS(3984), - [anon_sym_class] = ACTIONS(3984), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3984), - [anon_sym_if] = ACTIONS(3984), - [anon_sym_switch] = ACTIONS(3984), - [anon_sym_case] = ACTIONS(3984), - [anon_sym_default] = ACTIONS(3984), - [anon_sym_while] = ACTIONS(3984), - [anon_sym_do] = ACTIONS(3984), - [anon_sym_for] = ACTIONS(3984), - [anon_sym_return] = ACTIONS(3984), - [anon_sym_break] = ACTIONS(3984), - [anon_sym_continue] = ACTIONS(3984), - [anon_sym_goto] = ACTIONS(3984), - [anon_sym___try] = ACTIONS(3984), - [anon_sym___leave] = ACTIONS(3984), - [anon_sym_not] = ACTIONS(3984), - [anon_sym_compl] = ACTIONS(3984), - [anon_sym_DASH_DASH] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3986), - [anon_sym_sizeof] = ACTIONS(3984), - [anon_sym___alignof__] = ACTIONS(3984), - [anon_sym___alignof] = ACTIONS(3984), - [anon_sym__alignof] = ACTIONS(3984), - [anon_sym_alignof] = ACTIONS(3984), - [anon_sym__Alignof] = ACTIONS(3984), - [anon_sym_offsetof] = ACTIONS(3984), - [anon_sym__Generic] = ACTIONS(3984), - [anon_sym_typename] = ACTIONS(3984), - [anon_sym_asm] = ACTIONS(3984), - [anon_sym___asm__] = ACTIONS(3984), - [anon_sym___asm] = ACTIONS(3984), - [sym_number_literal] = ACTIONS(3986), - [anon_sym_L_SQUOTE] = ACTIONS(3986), - [anon_sym_u_SQUOTE] = ACTIONS(3986), - [anon_sym_U_SQUOTE] = ACTIONS(3986), - [anon_sym_u8_SQUOTE] = ACTIONS(3986), - [anon_sym_SQUOTE] = ACTIONS(3986), - [anon_sym_L_DQUOTE] = ACTIONS(3986), - [anon_sym_u_DQUOTE] = ACTIONS(3986), - [anon_sym_U_DQUOTE] = ACTIONS(3986), - [anon_sym_u8_DQUOTE] = ACTIONS(3986), - [anon_sym_DQUOTE] = ACTIONS(3986), - [sym_true] = ACTIONS(3984), - [sym_false] = ACTIONS(3984), - [anon_sym_NULL] = ACTIONS(3984), - [anon_sym_nullptr] = ACTIONS(3984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3984), - [anon_sym_decltype] = ACTIONS(3984), - [anon_sym_explicit] = ACTIONS(3984), - [anon_sym_export] = ACTIONS(3984), - [anon_sym_module] = ACTIONS(3984), - [anon_sym_import] = ACTIONS(3984), - [anon_sym_template] = ACTIONS(3984), - [anon_sym_operator] = ACTIONS(3984), - [anon_sym_try] = ACTIONS(3984), - [anon_sym_delete] = ACTIONS(3984), - [anon_sym_throw] = ACTIONS(3984), - [anon_sym_namespace] = ACTIONS(3984), - [anon_sym_static_assert] = ACTIONS(3984), - [anon_sym_concept] = ACTIONS(3984), - [anon_sym_co_return] = ACTIONS(3984), - [anon_sym_co_yield] = ACTIONS(3984), - [anon_sym_R_DQUOTE] = ACTIONS(3986), - [anon_sym_LR_DQUOTE] = ACTIONS(3986), - [anon_sym_uR_DQUOTE] = ACTIONS(3986), - [anon_sym_UR_DQUOTE] = ACTIONS(3986), - [anon_sym_u8R_DQUOTE] = ACTIONS(3986), - [anon_sym_co_await] = ACTIONS(3984), - [anon_sym_new] = ACTIONS(3984), - [anon_sym_requires] = ACTIONS(3984), - [anon_sym_CARET_CARET] = ACTIONS(3986), - [anon_sym_LBRACK_COLON] = ACTIONS(3986), - [sym_this] = ACTIONS(3984), - }, - [STATE(417)] = { - [sym_identifier] = ACTIONS(3988), - [aux_sym_preproc_include_token1] = ACTIONS(3988), - [aux_sym_preproc_def_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token2] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), - [aux_sym_preproc_else_token1] = ACTIONS(3988), - [aux_sym_preproc_elif_token1] = ACTIONS(3988), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3988), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3988), - [sym_preproc_directive] = ACTIONS(3988), - [anon_sym_LPAREN2] = ACTIONS(3990), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_TILDE] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3988), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3988), - [anon_sym_SEMI] = ACTIONS(3990), - [anon_sym___extension__] = ACTIONS(3988), - [anon_sym_typedef] = ACTIONS(3988), - [anon_sym_virtual] = ACTIONS(3988), - [anon_sym_extern] = ACTIONS(3988), - [anon_sym___attribute__] = ACTIONS(3988), - [anon_sym___attribute] = ACTIONS(3988), - [anon_sym_using] = ACTIONS(3988), - [anon_sym_COLON_COLON] = ACTIONS(3990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), - [anon_sym___declspec] = ACTIONS(3988), - [anon_sym___based] = ACTIONS(3988), - [anon_sym___cdecl] = ACTIONS(3988), - [anon_sym___clrcall] = ACTIONS(3988), - [anon_sym___stdcall] = ACTIONS(3988), - [anon_sym___fastcall] = ACTIONS(3988), - [anon_sym___thiscall] = ACTIONS(3988), - [anon_sym___vectorcall] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_signed] = ACTIONS(3988), - [anon_sym_unsigned] = ACTIONS(3988), - [anon_sym_long] = ACTIONS(3988), - [anon_sym_short] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_static] = ACTIONS(3988), - [anon_sym_register] = ACTIONS(3988), - [anon_sym_inline] = ACTIONS(3988), - [anon_sym___inline] = ACTIONS(3988), - [anon_sym___inline__] = ACTIONS(3988), - [anon_sym___forceinline] = ACTIONS(3988), - [anon_sym_thread_local] = ACTIONS(3988), - [anon_sym___thread] = ACTIONS(3988), - [anon_sym_const] = ACTIONS(3988), - [anon_sym_constexpr] = ACTIONS(3988), - [anon_sym_volatile] = ACTIONS(3988), - [anon_sym_restrict] = ACTIONS(3988), - [anon_sym___restrict__] = ACTIONS(3988), - [anon_sym__Atomic] = ACTIONS(3988), - [anon_sym__Noreturn] = ACTIONS(3988), - [anon_sym_noreturn] = ACTIONS(3988), - [anon_sym__Nonnull] = ACTIONS(3988), - [anon_sym_mutable] = ACTIONS(3988), - [anon_sym_constinit] = ACTIONS(3988), - [anon_sym_consteval] = ACTIONS(3988), - [anon_sym_alignas] = ACTIONS(3988), - [anon_sym__Alignas] = ACTIONS(3988), - [sym_primitive_type] = ACTIONS(3988), - [anon_sym_enum] = ACTIONS(3988), - [anon_sym_class] = ACTIONS(3988), - [anon_sym_struct] = ACTIONS(3988), - [anon_sym_union] = ACTIONS(3988), - [anon_sym_if] = ACTIONS(3988), - [anon_sym_switch] = ACTIONS(3988), - [anon_sym_case] = ACTIONS(3988), - [anon_sym_default] = ACTIONS(3988), - [anon_sym_while] = ACTIONS(3988), - [anon_sym_do] = ACTIONS(3988), - [anon_sym_for] = ACTIONS(3988), - [anon_sym_return] = ACTIONS(3988), - [anon_sym_break] = ACTIONS(3988), - [anon_sym_continue] = ACTIONS(3988), - [anon_sym_goto] = ACTIONS(3988), - [anon_sym___try] = ACTIONS(3988), - [anon_sym___leave] = ACTIONS(3988), - [anon_sym_not] = ACTIONS(3988), - [anon_sym_compl] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3990), - [anon_sym_sizeof] = ACTIONS(3988), - [anon_sym___alignof__] = ACTIONS(3988), - [anon_sym___alignof] = ACTIONS(3988), - [anon_sym__alignof] = ACTIONS(3988), - [anon_sym_alignof] = ACTIONS(3988), - [anon_sym__Alignof] = ACTIONS(3988), - [anon_sym_offsetof] = ACTIONS(3988), - [anon_sym__Generic] = ACTIONS(3988), - [anon_sym_typename] = ACTIONS(3988), - [anon_sym_asm] = ACTIONS(3988), - [anon_sym___asm__] = ACTIONS(3988), - [anon_sym___asm] = ACTIONS(3988), - [sym_number_literal] = ACTIONS(3990), - [anon_sym_L_SQUOTE] = ACTIONS(3990), - [anon_sym_u_SQUOTE] = ACTIONS(3990), - [anon_sym_U_SQUOTE] = ACTIONS(3990), - [anon_sym_u8_SQUOTE] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3990), - [anon_sym_L_DQUOTE] = ACTIONS(3990), - [anon_sym_u_DQUOTE] = ACTIONS(3990), - [anon_sym_U_DQUOTE] = ACTIONS(3990), - [anon_sym_u8_DQUOTE] = ACTIONS(3990), - [anon_sym_DQUOTE] = ACTIONS(3990), - [sym_true] = ACTIONS(3988), - [sym_false] = ACTIONS(3988), - [anon_sym_NULL] = ACTIONS(3988), - [anon_sym_nullptr] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3988), - [anon_sym_decltype] = ACTIONS(3988), - [anon_sym_explicit] = ACTIONS(3988), - [anon_sym_export] = ACTIONS(3988), - [anon_sym_module] = ACTIONS(3988), - [anon_sym_import] = ACTIONS(3988), - [anon_sym_template] = ACTIONS(3988), - [anon_sym_operator] = ACTIONS(3988), - [anon_sym_try] = ACTIONS(3988), - [anon_sym_delete] = ACTIONS(3988), - [anon_sym_throw] = ACTIONS(3988), - [anon_sym_namespace] = ACTIONS(3988), - [anon_sym_static_assert] = ACTIONS(3988), - [anon_sym_concept] = ACTIONS(3988), - [anon_sym_co_return] = ACTIONS(3988), - [anon_sym_co_yield] = ACTIONS(3988), - [anon_sym_R_DQUOTE] = ACTIONS(3990), - [anon_sym_LR_DQUOTE] = ACTIONS(3990), - [anon_sym_uR_DQUOTE] = ACTIONS(3990), - [anon_sym_UR_DQUOTE] = ACTIONS(3990), - [anon_sym_u8R_DQUOTE] = ACTIONS(3990), - [anon_sym_co_await] = ACTIONS(3988), - [anon_sym_new] = ACTIONS(3988), - [anon_sym_requires] = ACTIONS(3988), - [anon_sym_CARET_CARET] = ACTIONS(3990), - [anon_sym_LBRACK_COLON] = ACTIONS(3990), - [sym_this] = ACTIONS(3988), - }, - [STATE(418)] = { - [sym_identifier] = ACTIONS(3992), - [aux_sym_preproc_include_token1] = ACTIONS(3992), - [aux_sym_preproc_def_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token2] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), - [aux_sym_preproc_else_token1] = ACTIONS(3992), - [aux_sym_preproc_elif_token1] = ACTIONS(3992), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3992), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3992), - [sym_preproc_directive] = ACTIONS(3992), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_BANG] = ACTIONS(3994), - [anon_sym_TILDE] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(3992), - [anon_sym_STAR] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3992), - [anon_sym_SEMI] = ACTIONS(3994), - [anon_sym___extension__] = ACTIONS(3992), - [anon_sym_typedef] = ACTIONS(3992), - [anon_sym_virtual] = ACTIONS(3992), - [anon_sym_extern] = ACTIONS(3992), - [anon_sym___attribute__] = ACTIONS(3992), - [anon_sym___attribute] = ACTIONS(3992), - [anon_sym_using] = ACTIONS(3992), - [anon_sym_COLON_COLON] = ACTIONS(3994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), - [anon_sym___declspec] = ACTIONS(3992), - [anon_sym___based] = ACTIONS(3992), - [anon_sym___cdecl] = ACTIONS(3992), - [anon_sym___clrcall] = ACTIONS(3992), - [anon_sym___stdcall] = ACTIONS(3992), - [anon_sym___fastcall] = ACTIONS(3992), - [anon_sym___thiscall] = ACTIONS(3992), - [anon_sym___vectorcall] = ACTIONS(3992), - [anon_sym_LBRACE] = ACTIONS(3994), - [anon_sym_signed] = ACTIONS(3992), - [anon_sym_unsigned] = ACTIONS(3992), - [anon_sym_long] = ACTIONS(3992), - [anon_sym_short] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_register] = ACTIONS(3992), - [anon_sym_inline] = ACTIONS(3992), - [anon_sym___inline] = ACTIONS(3992), - [anon_sym___inline__] = ACTIONS(3992), - [anon_sym___forceinline] = ACTIONS(3992), - [anon_sym_thread_local] = ACTIONS(3992), - [anon_sym___thread] = ACTIONS(3992), - [anon_sym_const] = ACTIONS(3992), - [anon_sym_constexpr] = ACTIONS(3992), - [anon_sym_volatile] = ACTIONS(3992), - [anon_sym_restrict] = ACTIONS(3992), - [anon_sym___restrict__] = ACTIONS(3992), - [anon_sym__Atomic] = ACTIONS(3992), - [anon_sym__Noreturn] = ACTIONS(3992), - [anon_sym_noreturn] = ACTIONS(3992), - [anon_sym__Nonnull] = ACTIONS(3992), - [anon_sym_mutable] = ACTIONS(3992), - [anon_sym_constinit] = ACTIONS(3992), - [anon_sym_consteval] = ACTIONS(3992), - [anon_sym_alignas] = ACTIONS(3992), - [anon_sym__Alignas] = ACTIONS(3992), - [sym_primitive_type] = ACTIONS(3992), - [anon_sym_enum] = ACTIONS(3992), - [anon_sym_class] = ACTIONS(3992), - [anon_sym_struct] = ACTIONS(3992), - [anon_sym_union] = ACTIONS(3992), - [anon_sym_if] = ACTIONS(3992), - [anon_sym_switch] = ACTIONS(3992), - [anon_sym_case] = ACTIONS(3992), - [anon_sym_default] = ACTIONS(3992), - [anon_sym_while] = ACTIONS(3992), - [anon_sym_do] = ACTIONS(3992), - [anon_sym_for] = ACTIONS(3992), - [anon_sym_return] = ACTIONS(3992), - [anon_sym_break] = ACTIONS(3992), - [anon_sym_continue] = ACTIONS(3992), - [anon_sym_goto] = ACTIONS(3992), - [anon_sym___try] = ACTIONS(3992), - [anon_sym___leave] = ACTIONS(3992), - [anon_sym_not] = ACTIONS(3992), - [anon_sym_compl] = ACTIONS(3992), - [anon_sym_DASH_DASH] = ACTIONS(3994), - [anon_sym_PLUS_PLUS] = ACTIONS(3994), - [anon_sym_sizeof] = ACTIONS(3992), - [anon_sym___alignof__] = ACTIONS(3992), - [anon_sym___alignof] = ACTIONS(3992), - [anon_sym__alignof] = ACTIONS(3992), - [anon_sym_alignof] = ACTIONS(3992), - [anon_sym__Alignof] = ACTIONS(3992), - [anon_sym_offsetof] = ACTIONS(3992), - [anon_sym__Generic] = ACTIONS(3992), - [anon_sym_typename] = ACTIONS(3992), - [anon_sym_asm] = ACTIONS(3992), - [anon_sym___asm__] = ACTIONS(3992), - [anon_sym___asm] = ACTIONS(3992), - [sym_number_literal] = ACTIONS(3994), - [anon_sym_L_SQUOTE] = ACTIONS(3994), - [anon_sym_u_SQUOTE] = ACTIONS(3994), - [anon_sym_U_SQUOTE] = ACTIONS(3994), - [anon_sym_u8_SQUOTE] = ACTIONS(3994), - [anon_sym_SQUOTE] = ACTIONS(3994), - [anon_sym_L_DQUOTE] = ACTIONS(3994), - [anon_sym_u_DQUOTE] = ACTIONS(3994), - [anon_sym_U_DQUOTE] = ACTIONS(3994), - [anon_sym_u8_DQUOTE] = ACTIONS(3994), - [anon_sym_DQUOTE] = ACTIONS(3994), - [sym_true] = ACTIONS(3992), - [sym_false] = ACTIONS(3992), - [anon_sym_NULL] = ACTIONS(3992), - [anon_sym_nullptr] = ACTIONS(3992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3992), - [anon_sym_decltype] = ACTIONS(3992), - [anon_sym_explicit] = ACTIONS(3992), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_module] = ACTIONS(3992), - [anon_sym_import] = ACTIONS(3992), - [anon_sym_template] = ACTIONS(3992), - [anon_sym_operator] = ACTIONS(3992), - [anon_sym_try] = ACTIONS(3992), - [anon_sym_delete] = ACTIONS(3992), - [anon_sym_throw] = ACTIONS(3992), - [anon_sym_namespace] = ACTIONS(3992), - [anon_sym_static_assert] = ACTIONS(3992), - [anon_sym_concept] = ACTIONS(3992), - [anon_sym_co_return] = ACTIONS(3992), - [anon_sym_co_yield] = ACTIONS(3992), - [anon_sym_R_DQUOTE] = ACTIONS(3994), - [anon_sym_LR_DQUOTE] = ACTIONS(3994), - [anon_sym_uR_DQUOTE] = ACTIONS(3994), - [anon_sym_UR_DQUOTE] = ACTIONS(3994), - [anon_sym_u8R_DQUOTE] = ACTIONS(3994), - [anon_sym_co_await] = ACTIONS(3992), - [anon_sym_new] = ACTIONS(3992), - [anon_sym_requires] = ACTIONS(3992), - [anon_sym_CARET_CARET] = ACTIONS(3994), - [anon_sym_LBRACK_COLON] = ACTIONS(3994), - [sym_this] = ACTIONS(3992), - }, - [STATE(419)] = { - [sym_identifier] = ACTIONS(3996), - [aux_sym_preproc_include_token1] = ACTIONS(3996), - [aux_sym_preproc_def_token1] = ACTIONS(3996), - [aux_sym_preproc_if_token1] = ACTIONS(3996), - [aux_sym_preproc_if_token2] = ACTIONS(3996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3996), - [aux_sym_preproc_else_token1] = ACTIONS(3996), - [aux_sym_preproc_elif_token1] = ACTIONS(3996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3996), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3996), - [sym_preproc_directive] = ACTIONS(3996), - [anon_sym_LPAREN2] = ACTIONS(3998), - [anon_sym_BANG] = ACTIONS(3998), - [anon_sym_TILDE] = ACTIONS(3998), - [anon_sym_DASH] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3996), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(3996), - [anon_sym_SEMI] = ACTIONS(3998), - [anon_sym___extension__] = ACTIONS(3996), - [anon_sym_typedef] = ACTIONS(3996), - [anon_sym_virtual] = ACTIONS(3996), - [anon_sym_extern] = ACTIONS(3996), - [anon_sym___attribute__] = ACTIONS(3996), - [anon_sym___attribute] = ACTIONS(3996), - [anon_sym_using] = ACTIONS(3996), - [anon_sym_COLON_COLON] = ACTIONS(3998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3998), - [anon_sym___declspec] = ACTIONS(3996), - [anon_sym___based] = ACTIONS(3996), - [anon_sym___cdecl] = ACTIONS(3996), - [anon_sym___clrcall] = ACTIONS(3996), - [anon_sym___stdcall] = ACTIONS(3996), - [anon_sym___fastcall] = ACTIONS(3996), - [anon_sym___thiscall] = ACTIONS(3996), - [anon_sym___vectorcall] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3998), - [anon_sym_signed] = ACTIONS(3996), - [anon_sym_unsigned] = ACTIONS(3996), - [anon_sym_long] = ACTIONS(3996), - [anon_sym_short] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3996), - [anon_sym_static] = ACTIONS(3996), - [anon_sym_register] = ACTIONS(3996), - [anon_sym_inline] = ACTIONS(3996), - [anon_sym___inline] = ACTIONS(3996), - [anon_sym___inline__] = ACTIONS(3996), - [anon_sym___forceinline] = ACTIONS(3996), - [anon_sym_thread_local] = ACTIONS(3996), - [anon_sym___thread] = ACTIONS(3996), - [anon_sym_const] = ACTIONS(3996), - [anon_sym_constexpr] = ACTIONS(3996), - [anon_sym_volatile] = ACTIONS(3996), - [anon_sym_restrict] = ACTIONS(3996), - [anon_sym___restrict__] = ACTIONS(3996), - [anon_sym__Atomic] = ACTIONS(3996), - [anon_sym__Noreturn] = ACTIONS(3996), - [anon_sym_noreturn] = ACTIONS(3996), - [anon_sym__Nonnull] = ACTIONS(3996), - [anon_sym_mutable] = ACTIONS(3996), - [anon_sym_constinit] = ACTIONS(3996), - [anon_sym_consteval] = ACTIONS(3996), - [anon_sym_alignas] = ACTIONS(3996), - [anon_sym__Alignas] = ACTIONS(3996), - [sym_primitive_type] = ACTIONS(3996), - [anon_sym_enum] = ACTIONS(3996), - [anon_sym_class] = ACTIONS(3996), - [anon_sym_struct] = ACTIONS(3996), - [anon_sym_union] = ACTIONS(3996), - [anon_sym_if] = ACTIONS(3996), - [anon_sym_switch] = ACTIONS(3996), - [anon_sym_case] = ACTIONS(3996), - [anon_sym_default] = ACTIONS(3996), - [anon_sym_while] = ACTIONS(3996), - [anon_sym_do] = ACTIONS(3996), - [anon_sym_for] = ACTIONS(3996), - [anon_sym_return] = ACTIONS(3996), - [anon_sym_break] = ACTIONS(3996), - [anon_sym_continue] = ACTIONS(3996), - [anon_sym_goto] = ACTIONS(3996), - [anon_sym___try] = ACTIONS(3996), - [anon_sym___leave] = ACTIONS(3996), - [anon_sym_not] = ACTIONS(3996), - [anon_sym_compl] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [anon_sym_PLUS_PLUS] = ACTIONS(3998), - [anon_sym_sizeof] = ACTIONS(3996), - [anon_sym___alignof__] = ACTIONS(3996), - [anon_sym___alignof] = ACTIONS(3996), - [anon_sym__alignof] = ACTIONS(3996), - [anon_sym_alignof] = ACTIONS(3996), - [anon_sym__Alignof] = ACTIONS(3996), - [anon_sym_offsetof] = ACTIONS(3996), - [anon_sym__Generic] = ACTIONS(3996), - [anon_sym_typename] = ACTIONS(3996), - [anon_sym_asm] = ACTIONS(3996), - [anon_sym___asm__] = ACTIONS(3996), - [anon_sym___asm] = ACTIONS(3996), - [sym_number_literal] = ACTIONS(3998), - [anon_sym_L_SQUOTE] = ACTIONS(3998), - [anon_sym_u_SQUOTE] = ACTIONS(3998), - [anon_sym_U_SQUOTE] = ACTIONS(3998), - [anon_sym_u8_SQUOTE] = ACTIONS(3998), - [anon_sym_SQUOTE] = ACTIONS(3998), - [anon_sym_L_DQUOTE] = ACTIONS(3998), - [anon_sym_u_DQUOTE] = ACTIONS(3998), - [anon_sym_U_DQUOTE] = ACTIONS(3998), - [anon_sym_u8_DQUOTE] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [sym_true] = ACTIONS(3996), - [sym_false] = ACTIONS(3996), - [anon_sym_NULL] = ACTIONS(3996), - [anon_sym_nullptr] = ACTIONS(3996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3996), - [anon_sym_decltype] = ACTIONS(3996), - [anon_sym_explicit] = ACTIONS(3996), - [anon_sym_export] = ACTIONS(3996), - [anon_sym_module] = ACTIONS(3996), - [anon_sym_import] = ACTIONS(3996), - [anon_sym_template] = ACTIONS(3996), - [anon_sym_operator] = ACTIONS(3996), - [anon_sym_try] = ACTIONS(3996), - [anon_sym_delete] = ACTIONS(3996), - [anon_sym_throw] = ACTIONS(3996), - [anon_sym_namespace] = ACTIONS(3996), - [anon_sym_static_assert] = ACTIONS(3996), - [anon_sym_concept] = ACTIONS(3996), - [anon_sym_co_return] = ACTIONS(3996), - [anon_sym_co_yield] = ACTIONS(3996), - [anon_sym_R_DQUOTE] = ACTIONS(3998), - [anon_sym_LR_DQUOTE] = ACTIONS(3998), - [anon_sym_uR_DQUOTE] = ACTIONS(3998), - [anon_sym_UR_DQUOTE] = ACTIONS(3998), - [anon_sym_u8R_DQUOTE] = ACTIONS(3998), - [anon_sym_co_await] = ACTIONS(3996), - [anon_sym_new] = ACTIONS(3996), - [anon_sym_requires] = ACTIONS(3996), - [anon_sym_CARET_CARET] = ACTIONS(3998), - [anon_sym_LBRACK_COLON] = ACTIONS(3998), - [sym_this] = ACTIONS(3996), - }, - [STATE(420)] = { - [sym_identifier] = ACTIONS(4000), - [aux_sym_preproc_include_token1] = ACTIONS(4000), - [aux_sym_preproc_def_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token2] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), - [aux_sym_preproc_else_token1] = ACTIONS(4000), - [aux_sym_preproc_elif_token1] = ACTIONS(4000), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4000), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4000), - [sym_preproc_directive] = ACTIONS(4000), - [anon_sym_LPAREN2] = ACTIONS(4002), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_TILDE] = ACTIONS(4002), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym___extension__] = ACTIONS(4000), - [anon_sym_typedef] = ACTIONS(4000), - [anon_sym_virtual] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym___attribute__] = ACTIONS(4000), - [anon_sym___attribute] = ACTIONS(4000), - [anon_sym_using] = ACTIONS(4000), - [anon_sym_COLON_COLON] = ACTIONS(4002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), - [anon_sym___declspec] = ACTIONS(4000), - [anon_sym___based] = ACTIONS(4000), - [anon_sym___cdecl] = ACTIONS(4000), - [anon_sym___clrcall] = ACTIONS(4000), - [anon_sym___stdcall] = ACTIONS(4000), - [anon_sym___fastcall] = ACTIONS(4000), - [anon_sym___thiscall] = ACTIONS(4000), - [anon_sym___vectorcall] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_signed] = ACTIONS(4000), - [anon_sym_unsigned] = ACTIONS(4000), - [anon_sym_long] = ACTIONS(4000), - [anon_sym_short] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_static] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_inline] = ACTIONS(4000), - [anon_sym___inline] = ACTIONS(4000), - [anon_sym___inline__] = ACTIONS(4000), - [anon_sym___forceinline] = ACTIONS(4000), - [anon_sym_thread_local] = ACTIONS(4000), - [anon_sym___thread] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_constexpr] = ACTIONS(4000), - [anon_sym_volatile] = ACTIONS(4000), - [anon_sym_restrict] = ACTIONS(4000), - [anon_sym___restrict__] = ACTIONS(4000), - [anon_sym__Atomic] = ACTIONS(4000), - [anon_sym__Noreturn] = ACTIONS(4000), - [anon_sym_noreturn] = ACTIONS(4000), - [anon_sym__Nonnull] = ACTIONS(4000), - [anon_sym_mutable] = ACTIONS(4000), - [anon_sym_constinit] = ACTIONS(4000), - [anon_sym_consteval] = ACTIONS(4000), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym__Alignas] = ACTIONS(4000), - [sym_primitive_type] = ACTIONS(4000), - [anon_sym_enum] = ACTIONS(4000), - [anon_sym_class] = ACTIONS(4000), - [anon_sym_struct] = ACTIONS(4000), - [anon_sym_union] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_switch] = ACTIONS(4000), - [anon_sym_case] = ACTIONS(4000), - [anon_sym_default] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_goto] = ACTIONS(4000), - [anon_sym___try] = ACTIONS(4000), - [anon_sym___leave] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_compl] = ACTIONS(4000), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_sizeof] = ACTIONS(4000), - [anon_sym___alignof__] = ACTIONS(4000), - [anon_sym___alignof] = ACTIONS(4000), - [anon_sym__alignof] = ACTIONS(4000), - [anon_sym_alignof] = ACTIONS(4000), - [anon_sym__Alignof] = ACTIONS(4000), - [anon_sym_offsetof] = ACTIONS(4000), - [anon_sym__Generic] = ACTIONS(4000), - [anon_sym_typename] = ACTIONS(4000), - [anon_sym_asm] = ACTIONS(4000), - [anon_sym___asm__] = ACTIONS(4000), - [anon_sym___asm] = ACTIONS(4000), - [sym_number_literal] = ACTIONS(4002), - [anon_sym_L_SQUOTE] = ACTIONS(4002), - [anon_sym_u_SQUOTE] = ACTIONS(4002), - [anon_sym_U_SQUOTE] = ACTIONS(4002), - [anon_sym_u8_SQUOTE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(4002), - [anon_sym_L_DQUOTE] = ACTIONS(4002), - [anon_sym_u_DQUOTE] = ACTIONS(4002), - [anon_sym_U_DQUOTE] = ACTIONS(4002), - [anon_sym_u8_DQUOTE] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [sym_true] = ACTIONS(4000), - [sym_false] = ACTIONS(4000), - [anon_sym_NULL] = ACTIONS(4000), - [anon_sym_nullptr] = ACTIONS(4000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4000), - [anon_sym_decltype] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4000), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_import] = ACTIONS(4000), - [anon_sym_template] = ACTIONS(4000), - [anon_sym_operator] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_delete] = ACTIONS(4000), - [anon_sym_throw] = ACTIONS(4000), - [anon_sym_namespace] = ACTIONS(4000), - [anon_sym_static_assert] = ACTIONS(4000), - [anon_sym_concept] = ACTIONS(4000), - [anon_sym_co_return] = ACTIONS(4000), - [anon_sym_co_yield] = ACTIONS(4000), - [anon_sym_R_DQUOTE] = ACTIONS(4002), - [anon_sym_LR_DQUOTE] = ACTIONS(4002), - [anon_sym_uR_DQUOTE] = ACTIONS(4002), - [anon_sym_UR_DQUOTE] = ACTIONS(4002), - [anon_sym_u8R_DQUOTE] = ACTIONS(4002), - [anon_sym_co_await] = ACTIONS(4000), - [anon_sym_new] = ACTIONS(4000), - [anon_sym_requires] = ACTIONS(4000), - [anon_sym_CARET_CARET] = ACTIONS(4002), - [anon_sym_LBRACK_COLON] = ACTIONS(4002), - [sym_this] = ACTIONS(4000), + [sym_primitive_type] = ACTIONS(3941), + [anon_sym_enum] = ACTIONS(3943), + [anon_sym_class] = ACTIONS(3945), + [anon_sym_struct] = ACTIONS(3947), + [anon_sym_union] = ACTIONS(3949), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(3961), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3975), + [anon_sym_decltype] = ACTIONS(3977), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(421)] = { - [sym_identifier] = ACTIONS(4004), - [aux_sym_preproc_include_token1] = ACTIONS(4004), - [aux_sym_preproc_def_token1] = ACTIONS(4004), - [aux_sym_preproc_if_token1] = ACTIONS(4004), - [aux_sym_preproc_if_token2] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), - [aux_sym_preproc_else_token1] = ACTIONS(4004), - [aux_sym_preproc_elif_token1] = ACTIONS(4004), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4004), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4004), - [sym_preproc_directive] = ACTIONS(4004), - [anon_sym_LPAREN2] = ACTIONS(4006), - [anon_sym_BANG] = ACTIONS(4006), - [anon_sym_TILDE] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym___extension__] = ACTIONS(4004), - [anon_sym_typedef] = ACTIONS(4004), - [anon_sym_virtual] = ACTIONS(4004), - [anon_sym_extern] = ACTIONS(4004), - [anon_sym___attribute__] = ACTIONS(4004), - [anon_sym___attribute] = ACTIONS(4004), - [anon_sym_using] = ACTIONS(4004), - [anon_sym_COLON_COLON] = ACTIONS(4006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), - [anon_sym___declspec] = ACTIONS(4004), - [anon_sym___based] = ACTIONS(4004), - [anon_sym___cdecl] = ACTIONS(4004), - [anon_sym___clrcall] = ACTIONS(4004), - [anon_sym___stdcall] = ACTIONS(4004), - [anon_sym___fastcall] = ACTIONS(4004), - [anon_sym___thiscall] = ACTIONS(4004), - [anon_sym___vectorcall] = ACTIONS(4004), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_signed] = ACTIONS(4004), - [anon_sym_unsigned] = ACTIONS(4004), - [anon_sym_long] = ACTIONS(4004), - [anon_sym_short] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(4004), - [anon_sym_static] = ACTIONS(4004), - [anon_sym_register] = ACTIONS(4004), - [anon_sym_inline] = ACTIONS(4004), - [anon_sym___inline] = ACTIONS(4004), - [anon_sym___inline__] = ACTIONS(4004), - [anon_sym___forceinline] = ACTIONS(4004), - [anon_sym_thread_local] = ACTIONS(4004), - [anon_sym___thread] = ACTIONS(4004), - [anon_sym_const] = ACTIONS(4004), - [anon_sym_constexpr] = ACTIONS(4004), - [anon_sym_volatile] = ACTIONS(4004), - [anon_sym_restrict] = ACTIONS(4004), - [anon_sym___restrict__] = ACTIONS(4004), - [anon_sym__Atomic] = ACTIONS(4004), - [anon_sym__Noreturn] = ACTIONS(4004), - [anon_sym_noreturn] = ACTIONS(4004), - [anon_sym__Nonnull] = ACTIONS(4004), - [anon_sym_mutable] = ACTIONS(4004), - [anon_sym_constinit] = ACTIONS(4004), - [anon_sym_consteval] = ACTIONS(4004), - [anon_sym_alignas] = ACTIONS(4004), - [anon_sym__Alignas] = ACTIONS(4004), + [STATE(438)] = { + [sym_expression] = STATE(5772), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3995), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(4001), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), [sym_primitive_type] = ACTIONS(4004), - [anon_sym_enum] = ACTIONS(4004), - [anon_sym_class] = ACTIONS(4004), - [anon_sym_struct] = ACTIONS(4004), - [anon_sym_union] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(4004), - [anon_sym_switch] = ACTIONS(4004), - [anon_sym_case] = ACTIONS(4004), - [anon_sym_default] = ACTIONS(4004), - [anon_sym_while] = ACTIONS(4004), - [anon_sym_do] = ACTIONS(4004), - [anon_sym_for] = ACTIONS(4004), - [anon_sym_return] = ACTIONS(4004), - [anon_sym_break] = ACTIONS(4004), - [anon_sym_continue] = ACTIONS(4004), - [anon_sym_goto] = ACTIONS(4004), - [anon_sym___try] = ACTIONS(4004), - [anon_sym___leave] = ACTIONS(4004), - [anon_sym_not] = ACTIONS(4004), - [anon_sym_compl] = ACTIONS(4004), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_sizeof] = ACTIONS(4004), - [anon_sym___alignof__] = ACTIONS(4004), - [anon_sym___alignof] = ACTIONS(4004), - [anon_sym__alignof] = ACTIONS(4004), - [anon_sym_alignof] = ACTIONS(4004), - [anon_sym__Alignof] = ACTIONS(4004), - [anon_sym_offsetof] = ACTIONS(4004), - [anon_sym__Generic] = ACTIONS(4004), - [anon_sym_typename] = ACTIONS(4004), - [anon_sym_asm] = ACTIONS(4004), - [anon_sym___asm__] = ACTIONS(4004), - [anon_sym___asm] = ACTIONS(4004), - [sym_number_literal] = ACTIONS(4006), - [anon_sym_L_SQUOTE] = ACTIONS(4006), - [anon_sym_u_SQUOTE] = ACTIONS(4006), - [anon_sym_U_SQUOTE] = ACTIONS(4006), - [anon_sym_u8_SQUOTE] = ACTIONS(4006), - [anon_sym_SQUOTE] = ACTIONS(4006), - [anon_sym_L_DQUOTE] = ACTIONS(4006), - [anon_sym_u_DQUOTE] = ACTIONS(4006), - [anon_sym_U_DQUOTE] = ACTIONS(4006), - [anon_sym_u8_DQUOTE] = ACTIONS(4006), - [anon_sym_DQUOTE] = ACTIONS(4006), - [sym_true] = ACTIONS(4004), - [sym_false] = ACTIONS(4004), - [anon_sym_NULL] = ACTIONS(4004), - [anon_sym_nullptr] = ACTIONS(4004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4004), - [anon_sym_decltype] = ACTIONS(4004), - [anon_sym_explicit] = ACTIONS(4004), - [anon_sym_export] = ACTIONS(4004), - [anon_sym_module] = ACTIONS(4004), - [anon_sym_import] = ACTIONS(4004), - [anon_sym_template] = ACTIONS(4004), - [anon_sym_operator] = ACTIONS(4004), - [anon_sym_try] = ACTIONS(4004), - [anon_sym_delete] = ACTIONS(4004), - [anon_sym_throw] = ACTIONS(4004), - [anon_sym_namespace] = ACTIONS(4004), - [anon_sym_static_assert] = ACTIONS(4004), - [anon_sym_concept] = ACTIONS(4004), - [anon_sym_co_return] = ACTIONS(4004), - [anon_sym_co_yield] = ACTIONS(4004), - [anon_sym_R_DQUOTE] = ACTIONS(4006), - [anon_sym_LR_DQUOTE] = ACTIONS(4006), - [anon_sym_uR_DQUOTE] = ACTIONS(4006), - [anon_sym_UR_DQUOTE] = ACTIONS(4006), - [anon_sym_u8R_DQUOTE] = ACTIONS(4006), - [anon_sym_co_await] = ACTIONS(4004), - [anon_sym_new] = ACTIONS(4004), - [anon_sym_requires] = ACTIONS(4004), - [anon_sym_CARET_CARET] = ACTIONS(4006), - [anon_sym_LBRACK_COLON] = ACTIONS(4006), - [sym_this] = ACTIONS(4004), - }, - [STATE(422)] = { - [sym_identifier] = ACTIONS(4008), - [aux_sym_preproc_include_token1] = ACTIONS(4008), - [aux_sym_preproc_def_token1] = ACTIONS(4008), - [aux_sym_preproc_if_token1] = ACTIONS(4008), - [aux_sym_preproc_if_token2] = ACTIONS(4008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4008), - [aux_sym_preproc_else_token1] = ACTIONS(4008), - [aux_sym_preproc_elif_token1] = ACTIONS(4008), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4008), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4008), - [sym_preproc_directive] = ACTIONS(4008), - [anon_sym_LPAREN2] = ACTIONS(4010), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_TILDE] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym___extension__] = ACTIONS(4008), - [anon_sym_typedef] = ACTIONS(4008), - [anon_sym_virtual] = ACTIONS(4008), - [anon_sym_extern] = ACTIONS(4008), - [anon_sym___attribute__] = ACTIONS(4008), - [anon_sym___attribute] = ACTIONS(4008), - [anon_sym_using] = ACTIONS(4008), - [anon_sym_COLON_COLON] = ACTIONS(4010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4010), - [anon_sym___declspec] = ACTIONS(4008), - [anon_sym___based] = ACTIONS(4008), - [anon_sym___cdecl] = ACTIONS(4008), - [anon_sym___clrcall] = ACTIONS(4008), - [anon_sym___stdcall] = ACTIONS(4008), - [anon_sym___fastcall] = ACTIONS(4008), - [anon_sym___thiscall] = ACTIONS(4008), - [anon_sym___vectorcall] = ACTIONS(4008), - [anon_sym_LBRACE] = ACTIONS(4010), - [anon_sym_signed] = ACTIONS(4008), - [anon_sym_unsigned] = ACTIONS(4008), - [anon_sym_long] = ACTIONS(4008), - [anon_sym_short] = ACTIONS(4008), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_static] = ACTIONS(4008), - [anon_sym_register] = ACTIONS(4008), - [anon_sym_inline] = ACTIONS(4008), - [anon_sym___inline] = ACTIONS(4008), - [anon_sym___inline__] = ACTIONS(4008), - [anon_sym___forceinline] = ACTIONS(4008), - [anon_sym_thread_local] = ACTIONS(4008), - [anon_sym___thread] = ACTIONS(4008), - [anon_sym_const] = ACTIONS(4008), - [anon_sym_constexpr] = ACTIONS(4008), - [anon_sym_volatile] = ACTIONS(4008), - [anon_sym_restrict] = ACTIONS(4008), - [anon_sym___restrict__] = ACTIONS(4008), - [anon_sym__Atomic] = ACTIONS(4008), - [anon_sym__Noreturn] = ACTIONS(4008), - [anon_sym_noreturn] = ACTIONS(4008), - [anon_sym__Nonnull] = ACTIONS(4008), - [anon_sym_mutable] = ACTIONS(4008), - [anon_sym_constinit] = ACTIONS(4008), - [anon_sym_consteval] = ACTIONS(4008), - [anon_sym_alignas] = ACTIONS(4008), - [anon_sym__Alignas] = ACTIONS(4008), - [sym_primitive_type] = ACTIONS(4008), - [anon_sym_enum] = ACTIONS(4008), - [anon_sym_class] = ACTIONS(4008), - [anon_sym_struct] = ACTIONS(4008), - [anon_sym_union] = ACTIONS(4008), - [anon_sym_if] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4008), - [anon_sym_case] = ACTIONS(4008), - [anon_sym_default] = ACTIONS(4008), - [anon_sym_while] = ACTIONS(4008), - [anon_sym_do] = ACTIONS(4008), - [anon_sym_for] = ACTIONS(4008), - [anon_sym_return] = ACTIONS(4008), - [anon_sym_break] = ACTIONS(4008), - [anon_sym_continue] = ACTIONS(4008), - [anon_sym_goto] = ACTIONS(4008), - [anon_sym___try] = ACTIONS(4008), - [anon_sym___leave] = ACTIONS(4008), - [anon_sym_not] = ACTIONS(4008), - [anon_sym_compl] = ACTIONS(4008), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_sizeof] = ACTIONS(4008), - [anon_sym___alignof__] = ACTIONS(4008), - [anon_sym___alignof] = ACTIONS(4008), - [anon_sym__alignof] = ACTIONS(4008), - [anon_sym_alignof] = ACTIONS(4008), - [anon_sym__Alignof] = ACTIONS(4008), - [anon_sym_offsetof] = ACTIONS(4008), - [anon_sym__Generic] = ACTIONS(4008), - [anon_sym_typename] = ACTIONS(4008), - [anon_sym_asm] = ACTIONS(4008), - [anon_sym___asm__] = ACTIONS(4008), - [anon_sym___asm] = ACTIONS(4008), - [sym_number_literal] = ACTIONS(4010), - [anon_sym_L_SQUOTE] = ACTIONS(4010), - [anon_sym_u_SQUOTE] = ACTIONS(4010), - [anon_sym_U_SQUOTE] = ACTIONS(4010), - [anon_sym_u8_SQUOTE] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4010), - [anon_sym_L_DQUOTE] = ACTIONS(4010), - [anon_sym_u_DQUOTE] = ACTIONS(4010), - [anon_sym_U_DQUOTE] = ACTIONS(4010), - [anon_sym_u8_DQUOTE] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [sym_true] = ACTIONS(4008), - [sym_false] = ACTIONS(4008), - [anon_sym_NULL] = ACTIONS(4008), - [anon_sym_nullptr] = ACTIONS(4008), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4008), - [anon_sym_decltype] = ACTIONS(4008), - [anon_sym_explicit] = ACTIONS(4008), - [anon_sym_export] = ACTIONS(4008), - [anon_sym_module] = ACTIONS(4008), - [anon_sym_import] = ACTIONS(4008), - [anon_sym_template] = ACTIONS(4008), - [anon_sym_operator] = ACTIONS(4008), - [anon_sym_try] = ACTIONS(4008), - [anon_sym_delete] = ACTIONS(4008), - [anon_sym_throw] = ACTIONS(4008), - [anon_sym_namespace] = ACTIONS(4008), - [anon_sym_static_assert] = ACTIONS(4008), - [anon_sym_concept] = ACTIONS(4008), - [anon_sym_co_return] = ACTIONS(4008), - [anon_sym_co_yield] = ACTIONS(4008), - [anon_sym_R_DQUOTE] = ACTIONS(4010), - [anon_sym_LR_DQUOTE] = ACTIONS(4010), - [anon_sym_uR_DQUOTE] = ACTIONS(4010), - [anon_sym_UR_DQUOTE] = ACTIONS(4010), - [anon_sym_u8R_DQUOTE] = ACTIONS(4010), - [anon_sym_co_await] = ACTIONS(4008), - [anon_sym_new] = ACTIONS(4008), - [anon_sym_requires] = ACTIONS(4008), - [anon_sym_CARET_CARET] = ACTIONS(4010), - [anon_sym_LBRACK_COLON] = ACTIONS(4010), - [sym_this] = ACTIONS(4008), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(4007), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4010), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(4013), + [sym_this] = ACTIONS(2362), }, - [STATE(423)] = { - [sym_identifier] = ACTIONS(4012), - [aux_sym_preproc_include_token1] = ACTIONS(4012), - [aux_sym_preproc_def_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token2] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), - [aux_sym_preproc_else_token1] = ACTIONS(4012), - [aux_sym_preproc_elif_token1] = ACTIONS(4012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4012), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4012), - [sym_preproc_directive] = ACTIONS(4012), - [anon_sym_LPAREN2] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4014), - [anon_sym_TILDE] = ACTIONS(4014), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym___extension__] = ACTIONS(4012), - [anon_sym_typedef] = ACTIONS(4012), - [anon_sym_virtual] = ACTIONS(4012), - [anon_sym_extern] = ACTIONS(4012), - [anon_sym___attribute__] = ACTIONS(4012), - [anon_sym___attribute] = ACTIONS(4012), - [anon_sym_using] = ACTIONS(4012), - [anon_sym_COLON_COLON] = ACTIONS(4014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), - [anon_sym___declspec] = ACTIONS(4012), - [anon_sym___based] = ACTIONS(4012), - [anon_sym___cdecl] = ACTIONS(4012), - [anon_sym___clrcall] = ACTIONS(4012), - [anon_sym___stdcall] = ACTIONS(4012), - [anon_sym___fastcall] = ACTIONS(4012), - [anon_sym___thiscall] = ACTIONS(4012), - [anon_sym___vectorcall] = ACTIONS(4012), - [anon_sym_LBRACE] = ACTIONS(4014), - [anon_sym_signed] = ACTIONS(4012), - [anon_sym_unsigned] = ACTIONS(4012), - [anon_sym_long] = ACTIONS(4012), - [anon_sym_short] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4012), - [anon_sym_static] = ACTIONS(4012), - [anon_sym_register] = ACTIONS(4012), - [anon_sym_inline] = ACTIONS(4012), - [anon_sym___inline] = ACTIONS(4012), - [anon_sym___inline__] = ACTIONS(4012), - [anon_sym___forceinline] = ACTIONS(4012), - [anon_sym_thread_local] = ACTIONS(4012), - [anon_sym___thread] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4012), - [anon_sym_constexpr] = ACTIONS(4012), - [anon_sym_volatile] = ACTIONS(4012), - [anon_sym_restrict] = ACTIONS(4012), - [anon_sym___restrict__] = ACTIONS(4012), - [anon_sym__Atomic] = ACTIONS(4012), - [anon_sym__Noreturn] = ACTIONS(4012), - [anon_sym_noreturn] = ACTIONS(4012), - [anon_sym__Nonnull] = ACTIONS(4012), - [anon_sym_mutable] = ACTIONS(4012), - [anon_sym_constinit] = ACTIONS(4012), - [anon_sym_consteval] = ACTIONS(4012), - [anon_sym_alignas] = ACTIONS(4012), - [anon_sym__Alignas] = ACTIONS(4012), - [sym_primitive_type] = ACTIONS(4012), - [anon_sym_enum] = ACTIONS(4012), - [anon_sym_class] = ACTIONS(4012), - [anon_sym_struct] = ACTIONS(4012), - [anon_sym_union] = ACTIONS(4012), - [anon_sym_if] = ACTIONS(4012), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_case] = ACTIONS(4012), - [anon_sym_default] = ACTIONS(4012), - [anon_sym_while] = ACTIONS(4012), - [anon_sym_do] = ACTIONS(4012), - [anon_sym_for] = ACTIONS(4012), - [anon_sym_return] = ACTIONS(4012), - [anon_sym_break] = ACTIONS(4012), - [anon_sym_continue] = ACTIONS(4012), - [anon_sym_goto] = ACTIONS(4012), - [anon_sym___try] = ACTIONS(4012), - [anon_sym___leave] = ACTIONS(4012), - [anon_sym_not] = ACTIONS(4012), - [anon_sym_compl] = ACTIONS(4012), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_sizeof] = ACTIONS(4012), - [anon_sym___alignof__] = ACTIONS(4012), - [anon_sym___alignof] = ACTIONS(4012), - [anon_sym__alignof] = ACTIONS(4012), - [anon_sym_alignof] = ACTIONS(4012), - [anon_sym__Alignof] = ACTIONS(4012), - [anon_sym_offsetof] = ACTIONS(4012), - [anon_sym__Generic] = ACTIONS(4012), - [anon_sym_typename] = ACTIONS(4012), - [anon_sym_asm] = ACTIONS(4012), - [anon_sym___asm__] = ACTIONS(4012), - [anon_sym___asm] = ACTIONS(4012), - [sym_number_literal] = ACTIONS(4014), - [anon_sym_L_SQUOTE] = ACTIONS(4014), - [anon_sym_u_SQUOTE] = ACTIONS(4014), - [anon_sym_U_SQUOTE] = ACTIONS(4014), - [anon_sym_u8_SQUOTE] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(4014), - [anon_sym_L_DQUOTE] = ACTIONS(4014), - [anon_sym_u_DQUOTE] = ACTIONS(4014), - [anon_sym_U_DQUOTE] = ACTIONS(4014), - [anon_sym_u8_DQUOTE] = ACTIONS(4014), - [anon_sym_DQUOTE] = ACTIONS(4014), - [sym_true] = ACTIONS(4012), - [sym_false] = ACTIONS(4012), - [anon_sym_NULL] = ACTIONS(4012), - [anon_sym_nullptr] = ACTIONS(4012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4012), - [anon_sym_decltype] = ACTIONS(4012), - [anon_sym_explicit] = ACTIONS(4012), - [anon_sym_export] = ACTIONS(4012), - [anon_sym_module] = ACTIONS(4012), - [anon_sym_import] = ACTIONS(4012), - [anon_sym_template] = ACTIONS(4012), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_try] = ACTIONS(4012), - [anon_sym_delete] = ACTIONS(4012), - [anon_sym_throw] = ACTIONS(4012), - [anon_sym_namespace] = ACTIONS(4012), - [anon_sym_static_assert] = ACTIONS(4012), - [anon_sym_concept] = ACTIONS(4012), - [anon_sym_co_return] = ACTIONS(4012), - [anon_sym_co_yield] = ACTIONS(4012), - [anon_sym_R_DQUOTE] = ACTIONS(4014), - [anon_sym_LR_DQUOTE] = ACTIONS(4014), - [anon_sym_uR_DQUOTE] = ACTIONS(4014), - [anon_sym_UR_DQUOTE] = ACTIONS(4014), - [anon_sym_u8R_DQUOTE] = ACTIONS(4014), - [anon_sym_co_await] = ACTIONS(4012), - [anon_sym_new] = ACTIONS(4012), - [anon_sym_requires] = ACTIONS(4012), - [anon_sym_CARET_CARET] = ACTIONS(4014), - [anon_sym_LBRACK_COLON] = ACTIONS(4014), - [sym_this] = ACTIONS(4012), - }, - [STATE(424)] = { + [STATE(439)] = { + [sym_type_qualifier] = STATE(5136), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(2507), + [sym_sized_type_specifier] = STATE(3236), + [sym_enum_specifier] = STATE(3236), + [sym_struct_specifier] = STATE(3236), + [sym_union_specifier] = STATE(3236), + [sym_expression] = STATE(5438), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_type_descriptor] = STATE(5873), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_placeholder_type_specifier] = STATE(3236), + [sym_decltype_auto] = STATE(3230), + [sym_decltype] = STATE(3080), + [sym_class_specifier] = STATE(3236), + [sym__class_name] = STATE(10521), + [sym_dependent_type] = STATE(3236), + [sym_template_type] = STATE(3081), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7941), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(3239), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(3388), + [sym__splice_specialization_specifier] = STATE(2672), + [sym_splice_type_specifier] = STATE(3221), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [aux_sym__type_definition_type_repeat1] = STATE(5136), + [aux_sym_sized_type_specifier_repeat1] = STATE(2264), [sym_identifier] = ACTIONS(4016), - [aux_sym_preproc_include_token1] = ACTIONS(4016), - [aux_sym_preproc_def_token1] = ACTIONS(4016), - [aux_sym_preproc_if_token1] = ACTIONS(4016), - [aux_sym_preproc_if_token2] = ACTIONS(4016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4016), - [aux_sym_preproc_else_token1] = ACTIONS(4016), - [aux_sym_preproc_elif_token1] = ACTIONS(4016), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4016), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4016), - [sym_preproc_directive] = ACTIONS(4016), [anon_sym_LPAREN2] = ACTIONS(4018), - [anon_sym_BANG] = ACTIONS(4018), - [anon_sym_TILDE] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym___extension__] = ACTIONS(4016), - [anon_sym_typedef] = ACTIONS(4016), - [anon_sym_virtual] = ACTIONS(4016), - [anon_sym_extern] = ACTIONS(4016), - [anon_sym___attribute__] = ACTIONS(4016), - [anon_sym___attribute] = ACTIONS(4016), - [anon_sym_using] = ACTIONS(4016), - [anon_sym_COLON_COLON] = ACTIONS(4018), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4018), - [anon_sym___declspec] = ACTIONS(4016), - [anon_sym___based] = ACTIONS(4016), - [anon_sym___cdecl] = ACTIONS(4016), - [anon_sym___clrcall] = ACTIONS(4016), - [anon_sym___stdcall] = ACTIONS(4016), - [anon_sym___fastcall] = ACTIONS(4016), - [anon_sym___thiscall] = ACTIONS(4016), - [anon_sym___vectorcall] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_signed] = ACTIONS(4016), - [anon_sym_unsigned] = ACTIONS(4016), - [anon_sym_long] = ACTIONS(4016), - [anon_sym_short] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_static] = ACTIONS(4016), - [anon_sym_register] = ACTIONS(4016), - [anon_sym_inline] = ACTIONS(4016), - [anon_sym___inline] = ACTIONS(4016), - [anon_sym___inline__] = ACTIONS(4016), - [anon_sym___forceinline] = ACTIONS(4016), - [anon_sym_thread_local] = ACTIONS(4016), - [anon_sym___thread] = ACTIONS(4016), - [anon_sym_const] = ACTIONS(4016), - [anon_sym_constexpr] = ACTIONS(4016), - [anon_sym_volatile] = ACTIONS(4016), - [anon_sym_restrict] = ACTIONS(4016), - [anon_sym___restrict__] = ACTIONS(4016), - [anon_sym__Atomic] = ACTIONS(4016), - [anon_sym__Noreturn] = ACTIONS(4016), - [anon_sym_noreturn] = ACTIONS(4016), - [anon_sym__Nonnull] = ACTIONS(4016), - [anon_sym_mutable] = ACTIONS(4016), - [anon_sym_constinit] = ACTIONS(4016), - [anon_sym_consteval] = ACTIONS(4016), - [anon_sym_alignas] = ACTIONS(4016), - [anon_sym__Alignas] = ACTIONS(4016), - [sym_primitive_type] = ACTIONS(4016), - [anon_sym_enum] = ACTIONS(4016), - [anon_sym_class] = ACTIONS(4016), - [anon_sym_struct] = ACTIONS(4016), - [anon_sym_union] = ACTIONS(4016), - [anon_sym_if] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_case] = ACTIONS(4016), - [anon_sym_default] = ACTIONS(4016), - [anon_sym_while] = ACTIONS(4016), - [anon_sym_do] = ACTIONS(4016), - [anon_sym_for] = ACTIONS(4016), - [anon_sym_return] = ACTIONS(4016), - [anon_sym_break] = ACTIONS(4016), - [anon_sym_continue] = ACTIONS(4016), - [anon_sym_goto] = ACTIONS(4016), - [anon_sym___try] = ACTIONS(4016), - [anon_sym___leave] = ACTIONS(4016), - [anon_sym_not] = ACTIONS(4016), - [anon_sym_compl] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_sizeof] = ACTIONS(4016), - [anon_sym___alignof__] = ACTIONS(4016), - [anon_sym___alignof] = ACTIONS(4016), - [anon_sym__alignof] = ACTIONS(4016), - [anon_sym_alignof] = ACTIONS(4016), - [anon_sym__Alignof] = ACTIONS(4016), - [anon_sym_offsetof] = ACTIONS(4016), - [anon_sym__Generic] = ACTIONS(4016), - [anon_sym_typename] = ACTIONS(4016), - [anon_sym_asm] = ACTIONS(4016), - [anon_sym___asm__] = ACTIONS(4016), - [anon_sym___asm] = ACTIONS(4016), - [sym_number_literal] = ACTIONS(4018), - [anon_sym_L_SQUOTE] = ACTIONS(4018), - [anon_sym_u_SQUOTE] = ACTIONS(4018), - [anon_sym_U_SQUOTE] = ACTIONS(4018), - [anon_sym_u8_SQUOTE] = ACTIONS(4018), - [anon_sym_SQUOTE] = ACTIONS(4018), - [anon_sym_L_DQUOTE] = ACTIONS(4018), - [anon_sym_u_DQUOTE] = ACTIONS(4018), - [anon_sym_U_DQUOTE] = ACTIONS(4018), - [anon_sym_u8_DQUOTE] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [sym_true] = ACTIONS(4016), - [sym_false] = ACTIONS(4016), - [anon_sym_NULL] = ACTIONS(4016), - [anon_sym_nullptr] = ACTIONS(4016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4016), - [anon_sym_decltype] = ACTIONS(4016), - [anon_sym_explicit] = ACTIONS(4016), - [anon_sym_export] = ACTIONS(4016), - [anon_sym_module] = ACTIONS(4016), - [anon_sym_import] = ACTIONS(4016), - [anon_sym_template] = ACTIONS(4016), - [anon_sym_operator] = ACTIONS(4016), - [anon_sym_try] = ACTIONS(4016), - [anon_sym_delete] = ACTIONS(4016), - [anon_sym_throw] = ACTIONS(4016), - [anon_sym_namespace] = ACTIONS(4016), - [anon_sym_static_assert] = ACTIONS(4016), - [anon_sym_concept] = ACTIONS(4016), - [anon_sym_co_return] = ACTIONS(4016), - [anon_sym_co_yield] = ACTIONS(4016), - [anon_sym_R_DQUOTE] = ACTIONS(4018), - [anon_sym_LR_DQUOTE] = ACTIONS(4018), - [anon_sym_uR_DQUOTE] = ACTIONS(4018), - [anon_sym_UR_DQUOTE] = ACTIONS(4018), - [anon_sym_u8R_DQUOTE] = ACTIONS(4018), - [anon_sym_co_await] = ACTIONS(4016), - [anon_sym_new] = ACTIONS(4016), - [anon_sym_requires] = ACTIONS(4016), - [anon_sym_CARET_CARET] = ACTIONS(4018), - [anon_sym_LBRACK_COLON] = ACTIONS(4018), - [sym_this] = ACTIONS(4016), - }, - [STATE(425)] = { - [sym_identifier] = ACTIONS(4020), - [aux_sym_preproc_include_token1] = ACTIONS(4020), - [aux_sym_preproc_def_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token2] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), - [aux_sym_preproc_else_token1] = ACTIONS(4020), - [aux_sym_preproc_elif_token1] = ACTIONS(4020), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4020), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4020), - [sym_preproc_directive] = ACTIONS(4020), - [anon_sym_LPAREN2] = ACTIONS(4022), - [anon_sym_BANG] = ACTIONS(4022), - [anon_sym_TILDE] = ACTIONS(4022), - [anon_sym_DASH] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4020), - [anon_sym_STAR] = ACTIONS(4022), - [anon_sym_AMP_AMP] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_SEMI] = ACTIONS(4022), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), [anon_sym___extension__] = ACTIONS(4020), - [anon_sym_typedef] = ACTIONS(4020), - [anon_sym_virtual] = ACTIONS(4020), - [anon_sym_extern] = ACTIONS(4020), - [anon_sym___attribute__] = ACTIONS(4020), - [anon_sym___attribute] = ACTIONS(4020), - [anon_sym_using] = ACTIONS(4020), [anon_sym_COLON_COLON] = ACTIONS(4022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), - [anon_sym___declspec] = ACTIONS(4020), - [anon_sym___based] = ACTIONS(4020), - [anon_sym___cdecl] = ACTIONS(4020), - [anon_sym___clrcall] = ACTIONS(4020), - [anon_sym___stdcall] = ACTIONS(4020), - [anon_sym___fastcall] = ACTIONS(4020), - [anon_sym___thiscall] = ACTIONS(4020), - [anon_sym___vectorcall] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_signed] = ACTIONS(4020), - [anon_sym_unsigned] = ACTIONS(4020), - [anon_sym_long] = ACTIONS(4020), - [anon_sym_short] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_static] = ACTIONS(4020), - [anon_sym_register] = ACTIONS(4020), - [anon_sym_inline] = ACTIONS(4020), - [anon_sym___inline] = ACTIONS(4020), - [anon_sym___inline__] = ACTIONS(4020), - [anon_sym___forceinline] = ACTIONS(4020), - [anon_sym_thread_local] = ACTIONS(4020), - [anon_sym___thread] = ACTIONS(4020), - [anon_sym_const] = ACTIONS(4020), - [anon_sym_constexpr] = ACTIONS(4020), - [anon_sym_volatile] = ACTIONS(4020), - [anon_sym_restrict] = ACTIONS(4020), - [anon_sym___restrict__] = ACTIONS(4020), - [anon_sym__Atomic] = ACTIONS(4020), - [anon_sym__Noreturn] = ACTIONS(4020), - [anon_sym_noreturn] = ACTIONS(4020), - [anon_sym__Nonnull] = ACTIONS(4020), - [anon_sym_mutable] = ACTIONS(4020), - [anon_sym_constinit] = ACTIONS(4020), - [anon_sym_consteval] = ACTIONS(4020), - [anon_sym_alignas] = ACTIONS(4020), - [anon_sym__Alignas] = ACTIONS(4020), - [sym_primitive_type] = ACTIONS(4020), - [anon_sym_enum] = ACTIONS(4020), - [anon_sym_class] = ACTIONS(4020), - [anon_sym_struct] = ACTIONS(4020), - [anon_sym_union] = ACTIONS(4020), - [anon_sym_if] = ACTIONS(4020), - [anon_sym_switch] = ACTIONS(4020), - [anon_sym_case] = ACTIONS(4020), - [anon_sym_default] = ACTIONS(4020), - [anon_sym_while] = ACTIONS(4020), - [anon_sym_do] = ACTIONS(4020), - [anon_sym_for] = ACTIONS(4020), - [anon_sym_return] = ACTIONS(4020), - [anon_sym_break] = ACTIONS(4020), - [anon_sym_continue] = ACTIONS(4020), - [anon_sym_goto] = ACTIONS(4020), - [anon_sym___try] = ACTIONS(4020), - [anon_sym___leave] = ACTIONS(4020), - [anon_sym_not] = ACTIONS(4020), - [anon_sym_compl] = ACTIONS(4020), - [anon_sym_DASH_DASH] = ACTIONS(4022), - [anon_sym_PLUS_PLUS] = ACTIONS(4022), - [anon_sym_sizeof] = ACTIONS(4020), - [anon_sym___alignof__] = ACTIONS(4020), - [anon_sym___alignof] = ACTIONS(4020), - [anon_sym__alignof] = ACTIONS(4020), - [anon_sym_alignof] = ACTIONS(4020), - [anon_sym__Alignof] = ACTIONS(4020), - [anon_sym_offsetof] = ACTIONS(4020), - [anon_sym__Generic] = ACTIONS(4020), - [anon_sym_typename] = ACTIONS(4020), - [anon_sym_asm] = ACTIONS(4020), - [anon_sym___asm__] = ACTIONS(4020), - [anon_sym___asm] = ACTIONS(4020), - [sym_number_literal] = ACTIONS(4022), - [anon_sym_L_SQUOTE] = ACTIONS(4022), - [anon_sym_u_SQUOTE] = ACTIONS(4022), - [anon_sym_U_SQUOTE] = ACTIONS(4022), - [anon_sym_u8_SQUOTE] = ACTIONS(4022), - [anon_sym_SQUOTE] = ACTIONS(4022), - [anon_sym_L_DQUOTE] = ACTIONS(4022), - [anon_sym_u_DQUOTE] = ACTIONS(4022), - [anon_sym_U_DQUOTE] = ACTIONS(4022), - [anon_sym_u8_DQUOTE] = ACTIONS(4022), - [anon_sym_DQUOTE] = ACTIONS(4022), - [sym_true] = ACTIONS(4020), - [sym_false] = ACTIONS(4020), - [anon_sym_NULL] = ACTIONS(4020), - [anon_sym_nullptr] = ACTIONS(4020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4020), - [anon_sym_decltype] = ACTIONS(4020), - [anon_sym_explicit] = ACTIONS(4020), - [anon_sym_export] = ACTIONS(4020), - [anon_sym_module] = ACTIONS(4020), - [anon_sym_import] = ACTIONS(4020), - [anon_sym_template] = ACTIONS(4020), - [anon_sym_operator] = ACTIONS(4020), - [anon_sym_try] = ACTIONS(4020), - [anon_sym_delete] = ACTIONS(4020), - [anon_sym_throw] = ACTIONS(4020), - [anon_sym_namespace] = ACTIONS(4020), - [anon_sym_static_assert] = ACTIONS(4020), - [anon_sym_concept] = ACTIONS(4020), - [anon_sym_co_return] = ACTIONS(4020), - [anon_sym_co_yield] = ACTIONS(4020), - [anon_sym_R_DQUOTE] = ACTIONS(4022), - [anon_sym_LR_DQUOTE] = ACTIONS(4022), - [anon_sym_uR_DQUOTE] = ACTIONS(4022), - [anon_sym_UR_DQUOTE] = ACTIONS(4022), - [anon_sym_u8R_DQUOTE] = ACTIONS(4022), - [anon_sym_co_await] = ACTIONS(4020), - [anon_sym_new] = ACTIONS(4020), - [anon_sym_requires] = ACTIONS(4020), - [anon_sym_CARET_CARET] = ACTIONS(4022), - [anon_sym_LBRACK_COLON] = ACTIONS(4022), - [sym_this] = ACTIONS(4020), - }, - [STATE(426)] = { - [sym_identifier] = ACTIONS(4024), - [aux_sym_preproc_include_token1] = ACTIONS(4024), - [aux_sym_preproc_def_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token2] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), - [aux_sym_preproc_else_token1] = ACTIONS(4024), - [aux_sym_preproc_elif_token1] = ACTIONS(4024), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4024), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4024), - [sym_preproc_directive] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [anon_sym_DASH] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym___extension__] = ACTIONS(4024), - [anon_sym_typedef] = ACTIONS(4024), - [anon_sym_virtual] = ACTIONS(4024), - [anon_sym_extern] = ACTIONS(4024), - [anon_sym___attribute__] = ACTIONS(4024), - [anon_sym___attribute] = ACTIONS(4024), - [anon_sym_using] = ACTIONS(4024), - [anon_sym_COLON_COLON] = ACTIONS(4026), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), - [anon_sym___declspec] = ACTIONS(4024), - [anon_sym___based] = ACTIONS(4024), - [anon_sym___cdecl] = ACTIONS(4024), - [anon_sym___clrcall] = ACTIONS(4024), - [anon_sym___stdcall] = ACTIONS(4024), - [anon_sym___fastcall] = ACTIONS(4024), - [anon_sym___thiscall] = ACTIONS(4024), - [anon_sym___vectorcall] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), [anon_sym_signed] = ACTIONS(4024), [anon_sym_unsigned] = ACTIONS(4024), [anon_sym_long] = ACTIONS(4024), [anon_sym_short] = ACTIONS(4024), - [anon_sym_LBRACK] = ACTIONS(4024), - [anon_sym_static] = ACTIONS(4024), - [anon_sym_register] = ACTIONS(4024), - [anon_sym_inline] = ACTIONS(4024), - [anon_sym___inline] = ACTIONS(4024), - [anon_sym___inline__] = ACTIONS(4024), - [anon_sym___forceinline] = ACTIONS(4024), - [anon_sym_thread_local] = ACTIONS(4024), - [anon_sym___thread] = ACTIONS(4024), - [anon_sym_const] = ACTIONS(4024), - [anon_sym_constexpr] = ACTIONS(4024), - [anon_sym_volatile] = ACTIONS(4024), - [anon_sym_restrict] = ACTIONS(4024), - [anon_sym___restrict__] = ACTIONS(4024), - [anon_sym__Atomic] = ACTIONS(4024), - [anon_sym__Noreturn] = ACTIONS(4024), - [anon_sym_noreturn] = ACTIONS(4024), - [anon_sym__Nonnull] = ACTIONS(4024), - [anon_sym_mutable] = ACTIONS(4024), - [anon_sym_constinit] = ACTIONS(4024), - [anon_sym_consteval] = ACTIONS(4024), - [anon_sym_alignas] = ACTIONS(4024), - [anon_sym__Alignas] = ACTIONS(4024), - [sym_primitive_type] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4024), - [anon_sym_class] = ACTIONS(4024), - [anon_sym_struct] = ACTIONS(4024), - [anon_sym_union] = ACTIONS(4024), - [anon_sym_if] = ACTIONS(4024), - [anon_sym_switch] = ACTIONS(4024), - [anon_sym_case] = ACTIONS(4024), - [anon_sym_default] = ACTIONS(4024), - [anon_sym_while] = ACTIONS(4024), - [anon_sym_do] = ACTIONS(4024), - [anon_sym_for] = ACTIONS(4024), - [anon_sym_return] = ACTIONS(4024), - [anon_sym_break] = ACTIONS(4024), - [anon_sym_continue] = ACTIONS(4024), - [anon_sym_goto] = ACTIONS(4024), - [anon_sym___try] = ACTIONS(4024), - [anon_sym___leave] = ACTIONS(4024), - [anon_sym_not] = ACTIONS(4024), - [anon_sym_compl] = ACTIONS(4024), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_sizeof] = ACTIONS(4024), - [anon_sym___alignof__] = ACTIONS(4024), - [anon_sym___alignof] = ACTIONS(4024), - [anon_sym__alignof] = ACTIONS(4024), - [anon_sym_alignof] = ACTIONS(4024), - [anon_sym__Alignof] = ACTIONS(4024), - [anon_sym_offsetof] = ACTIONS(4024), - [anon_sym__Generic] = ACTIONS(4024), - [anon_sym_typename] = ACTIONS(4024), - [anon_sym_asm] = ACTIONS(4024), - [anon_sym___asm__] = ACTIONS(4024), - [anon_sym___asm] = ACTIONS(4024), - [sym_number_literal] = ACTIONS(4026), - [anon_sym_L_SQUOTE] = ACTIONS(4026), - [anon_sym_u_SQUOTE] = ACTIONS(4026), - [anon_sym_U_SQUOTE] = ACTIONS(4026), - [anon_sym_u8_SQUOTE] = ACTIONS(4026), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_L_DQUOTE] = ACTIONS(4026), - [anon_sym_u_DQUOTE] = ACTIONS(4026), - [anon_sym_U_DQUOTE] = ACTIONS(4026), - [anon_sym_u8_DQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [anon_sym_NULL] = ACTIONS(4024), - [anon_sym_nullptr] = ACTIONS(4024), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4024), - [anon_sym_decltype] = ACTIONS(4024), - [anon_sym_explicit] = ACTIONS(4024), - [anon_sym_export] = ACTIONS(4024), - [anon_sym_module] = ACTIONS(4024), - [anon_sym_import] = ACTIONS(4024), - [anon_sym_template] = ACTIONS(4024), - [anon_sym_operator] = ACTIONS(4024), - [anon_sym_try] = ACTIONS(4024), - [anon_sym_delete] = ACTIONS(4024), - [anon_sym_throw] = ACTIONS(4024), - [anon_sym_namespace] = ACTIONS(4024), - [anon_sym_static_assert] = ACTIONS(4024), - [anon_sym_concept] = ACTIONS(4024), - [anon_sym_co_return] = ACTIONS(4024), - [anon_sym_co_yield] = ACTIONS(4024), - [anon_sym_R_DQUOTE] = ACTIONS(4026), - [anon_sym_LR_DQUOTE] = ACTIONS(4026), - [anon_sym_uR_DQUOTE] = ACTIONS(4026), - [anon_sym_UR_DQUOTE] = ACTIONS(4026), - [anon_sym_u8R_DQUOTE] = ACTIONS(4026), - [anon_sym_co_await] = ACTIONS(4024), - [anon_sym_new] = ACTIONS(4024), - [anon_sym_requires] = ACTIONS(4024), - [anon_sym_CARET_CARET] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4026), - [sym_this] = ACTIONS(4024), - }, - [STATE(427)] = { - [sym_identifier] = ACTIONS(4028), - [aux_sym_preproc_include_token1] = ACTIONS(4028), - [aux_sym_preproc_def_token1] = ACTIONS(4028), - [aux_sym_preproc_if_token1] = ACTIONS(4028), - [aux_sym_preproc_if_token2] = ACTIONS(4028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4028), - [aux_sym_preproc_else_token1] = ACTIONS(4028), - [aux_sym_preproc_elif_token1] = ACTIONS(4028), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4028), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4028), - [sym_preproc_directive] = ACTIONS(4028), - [anon_sym_LPAREN2] = ACTIONS(4030), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4028), - [anon_sym_PLUS] = ACTIONS(4028), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_AMP_AMP] = ACTIONS(4030), - [anon_sym_AMP] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4030), - [anon_sym___extension__] = ACTIONS(4028), - [anon_sym_typedef] = ACTIONS(4028), - [anon_sym_virtual] = ACTIONS(4028), - [anon_sym_extern] = ACTIONS(4028), - [anon_sym___attribute__] = ACTIONS(4028), - [anon_sym___attribute] = ACTIONS(4028), - [anon_sym_using] = ACTIONS(4028), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4030), - [anon_sym___declspec] = ACTIONS(4028), - [anon_sym___based] = ACTIONS(4028), - [anon_sym___cdecl] = ACTIONS(4028), - [anon_sym___clrcall] = ACTIONS(4028), - [anon_sym___stdcall] = ACTIONS(4028), - [anon_sym___fastcall] = ACTIONS(4028), - [anon_sym___thiscall] = ACTIONS(4028), - [anon_sym___vectorcall] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4030), - [anon_sym_signed] = ACTIONS(4028), - [anon_sym_unsigned] = ACTIONS(4028), - [anon_sym_long] = ACTIONS(4028), - [anon_sym_short] = ACTIONS(4028), - [anon_sym_LBRACK] = ACTIONS(4028), - [anon_sym_static] = ACTIONS(4028), - [anon_sym_register] = ACTIONS(4028), - [anon_sym_inline] = ACTIONS(4028), - [anon_sym___inline] = ACTIONS(4028), - [anon_sym___inline__] = ACTIONS(4028), - [anon_sym___forceinline] = ACTIONS(4028), - [anon_sym_thread_local] = ACTIONS(4028), - [anon_sym___thread] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4028), - [anon_sym_constexpr] = ACTIONS(4028), - [anon_sym_volatile] = ACTIONS(4028), - [anon_sym_restrict] = ACTIONS(4028), - [anon_sym___restrict__] = ACTIONS(4028), - [anon_sym__Atomic] = ACTIONS(4028), - [anon_sym__Noreturn] = ACTIONS(4028), - [anon_sym_noreturn] = ACTIONS(4028), - [anon_sym__Nonnull] = ACTIONS(4028), - [anon_sym_mutable] = ACTIONS(4028), - [anon_sym_constinit] = ACTIONS(4028), - [anon_sym_consteval] = ACTIONS(4028), - [anon_sym_alignas] = ACTIONS(4028), - [anon_sym__Alignas] = ACTIONS(4028), - [sym_primitive_type] = ACTIONS(4028), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4026), [anon_sym_enum] = ACTIONS(4028), - [anon_sym_class] = ACTIONS(4028), - [anon_sym_struct] = ACTIONS(4028), - [anon_sym_union] = ACTIONS(4028), - [anon_sym_if] = ACTIONS(4028), - [anon_sym_switch] = ACTIONS(4028), - [anon_sym_case] = ACTIONS(4028), - [anon_sym_default] = ACTIONS(4028), - [anon_sym_while] = ACTIONS(4028), - [anon_sym_do] = ACTIONS(4028), - [anon_sym_for] = ACTIONS(4028), - [anon_sym_return] = ACTIONS(4028), - [anon_sym_break] = ACTIONS(4028), - [anon_sym_continue] = ACTIONS(4028), - [anon_sym_goto] = ACTIONS(4028), - [anon_sym___try] = ACTIONS(4028), - [anon_sym___leave] = ACTIONS(4028), - [anon_sym_not] = ACTIONS(4028), - [anon_sym_compl] = ACTIONS(4028), - [anon_sym_DASH_DASH] = ACTIONS(4030), - [anon_sym_PLUS_PLUS] = ACTIONS(4030), - [anon_sym_sizeof] = ACTIONS(4028), - [anon_sym___alignof__] = ACTIONS(4028), - [anon_sym___alignof] = ACTIONS(4028), - [anon_sym__alignof] = ACTIONS(4028), - [anon_sym_alignof] = ACTIONS(4028), - [anon_sym__Alignof] = ACTIONS(4028), - [anon_sym_offsetof] = ACTIONS(4028), - [anon_sym__Generic] = ACTIONS(4028), - [anon_sym_typename] = ACTIONS(4028), - [anon_sym_asm] = ACTIONS(4028), - [anon_sym___asm__] = ACTIONS(4028), - [anon_sym___asm] = ACTIONS(4028), - [sym_number_literal] = ACTIONS(4030), - [anon_sym_L_SQUOTE] = ACTIONS(4030), - [anon_sym_u_SQUOTE] = ACTIONS(4030), - [anon_sym_U_SQUOTE] = ACTIONS(4030), - [anon_sym_u8_SQUOTE] = ACTIONS(4030), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_L_DQUOTE] = ACTIONS(4030), - [anon_sym_u_DQUOTE] = ACTIONS(4030), - [anon_sym_U_DQUOTE] = ACTIONS(4030), - [anon_sym_u8_DQUOTE] = ACTIONS(4030), - [anon_sym_DQUOTE] = ACTIONS(4030), - [sym_true] = ACTIONS(4028), - [sym_false] = ACTIONS(4028), - [anon_sym_NULL] = ACTIONS(4028), - [anon_sym_nullptr] = ACTIONS(4028), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4028), - [anon_sym_decltype] = ACTIONS(4028), - [anon_sym_explicit] = ACTIONS(4028), - [anon_sym_export] = ACTIONS(4028), - [anon_sym_module] = ACTIONS(4028), - [anon_sym_import] = ACTIONS(4028), - [anon_sym_template] = ACTIONS(4028), - [anon_sym_operator] = ACTIONS(4028), - [anon_sym_try] = ACTIONS(4028), - [anon_sym_delete] = ACTIONS(4028), - [anon_sym_throw] = ACTIONS(4028), - [anon_sym_namespace] = ACTIONS(4028), - [anon_sym_static_assert] = ACTIONS(4028), - [anon_sym_concept] = ACTIONS(4028), - [anon_sym_co_return] = ACTIONS(4028), - [anon_sym_co_yield] = ACTIONS(4028), - [anon_sym_R_DQUOTE] = ACTIONS(4030), - [anon_sym_LR_DQUOTE] = ACTIONS(4030), - [anon_sym_uR_DQUOTE] = ACTIONS(4030), - [anon_sym_UR_DQUOTE] = ACTIONS(4030), - [anon_sym_u8R_DQUOTE] = ACTIONS(4030), - [anon_sym_co_await] = ACTIONS(4028), - [anon_sym_new] = ACTIONS(4028), - [anon_sym_requires] = ACTIONS(4028), - [anon_sym_CARET_CARET] = ACTIONS(4030), - [anon_sym_LBRACK_COLON] = ACTIONS(4030), - [sym_this] = ACTIONS(4028), - }, - [STATE(428)] = { - [sym_identifier] = ACTIONS(4032), - [aux_sym_preproc_include_token1] = ACTIONS(4032), - [aux_sym_preproc_def_token1] = ACTIONS(4032), - [aux_sym_preproc_if_token1] = ACTIONS(4032), - [aux_sym_preproc_if_token2] = ACTIONS(4032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4032), - [aux_sym_preproc_else_token1] = ACTIONS(4032), - [aux_sym_preproc_elif_token1] = ACTIONS(4032), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4032), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4032), - [sym_preproc_directive] = ACTIONS(4032), - [anon_sym_LPAREN2] = ACTIONS(4034), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_STAR] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4032), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym___extension__] = ACTIONS(4032), - [anon_sym_typedef] = ACTIONS(4032), - [anon_sym_virtual] = ACTIONS(4032), - [anon_sym_extern] = ACTIONS(4032), - [anon_sym___attribute__] = ACTIONS(4032), - [anon_sym___attribute] = ACTIONS(4032), - [anon_sym_using] = ACTIONS(4032), - [anon_sym_COLON_COLON] = ACTIONS(4034), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4034), - [anon_sym___declspec] = ACTIONS(4032), - [anon_sym___based] = ACTIONS(4032), - [anon_sym___cdecl] = ACTIONS(4032), - [anon_sym___clrcall] = ACTIONS(4032), - [anon_sym___stdcall] = ACTIONS(4032), - [anon_sym___fastcall] = ACTIONS(4032), - [anon_sym___thiscall] = ACTIONS(4032), - [anon_sym___vectorcall] = ACTIONS(4032), - [anon_sym_LBRACE] = ACTIONS(4034), - [anon_sym_signed] = ACTIONS(4032), - [anon_sym_unsigned] = ACTIONS(4032), - [anon_sym_long] = ACTIONS(4032), - [anon_sym_short] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_static] = ACTIONS(4032), - [anon_sym_register] = ACTIONS(4032), - [anon_sym_inline] = ACTIONS(4032), - [anon_sym___inline] = ACTIONS(4032), - [anon_sym___inline__] = ACTIONS(4032), - [anon_sym___forceinline] = ACTIONS(4032), - [anon_sym_thread_local] = ACTIONS(4032), - [anon_sym___thread] = ACTIONS(4032), - [anon_sym_const] = ACTIONS(4032), - [anon_sym_constexpr] = ACTIONS(4032), - [anon_sym_volatile] = ACTIONS(4032), - [anon_sym_restrict] = ACTIONS(4032), - [anon_sym___restrict__] = ACTIONS(4032), - [anon_sym__Atomic] = ACTIONS(4032), - [anon_sym__Noreturn] = ACTIONS(4032), - [anon_sym_noreturn] = ACTIONS(4032), - [anon_sym__Nonnull] = ACTIONS(4032), - [anon_sym_mutable] = ACTIONS(4032), - [anon_sym_constinit] = ACTIONS(4032), - [anon_sym_consteval] = ACTIONS(4032), - [anon_sym_alignas] = ACTIONS(4032), - [anon_sym__Alignas] = ACTIONS(4032), - [sym_primitive_type] = ACTIONS(4032), - [anon_sym_enum] = ACTIONS(4032), - [anon_sym_class] = ACTIONS(4032), + [anon_sym_class] = ACTIONS(4030), [anon_sym_struct] = ACTIONS(4032), - [anon_sym_union] = ACTIONS(4032), - [anon_sym_if] = ACTIONS(4032), - [anon_sym_switch] = ACTIONS(4032), - [anon_sym_case] = ACTIONS(4032), - [anon_sym_default] = ACTIONS(4032), - [anon_sym_while] = ACTIONS(4032), - [anon_sym_do] = ACTIONS(4032), - [anon_sym_for] = ACTIONS(4032), - [anon_sym_return] = ACTIONS(4032), - [anon_sym_break] = ACTIONS(4032), - [anon_sym_continue] = ACTIONS(4032), - [anon_sym_goto] = ACTIONS(4032), - [anon_sym___try] = ACTIONS(4032), - [anon_sym___leave] = ACTIONS(4032), - [anon_sym_not] = ACTIONS(4032), - [anon_sym_compl] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4034), - [anon_sym_PLUS_PLUS] = ACTIONS(4034), - [anon_sym_sizeof] = ACTIONS(4032), - [anon_sym___alignof__] = ACTIONS(4032), - [anon_sym___alignof] = ACTIONS(4032), - [anon_sym__alignof] = ACTIONS(4032), - [anon_sym_alignof] = ACTIONS(4032), - [anon_sym__Alignof] = ACTIONS(4032), - [anon_sym_offsetof] = ACTIONS(4032), - [anon_sym__Generic] = ACTIONS(4032), - [anon_sym_typename] = ACTIONS(4032), - [anon_sym_asm] = ACTIONS(4032), - [anon_sym___asm__] = ACTIONS(4032), - [anon_sym___asm] = ACTIONS(4032), - [sym_number_literal] = ACTIONS(4034), - [anon_sym_L_SQUOTE] = ACTIONS(4034), - [anon_sym_u_SQUOTE] = ACTIONS(4034), - [anon_sym_U_SQUOTE] = ACTIONS(4034), - [anon_sym_u8_SQUOTE] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4034), - [anon_sym_L_DQUOTE] = ACTIONS(4034), - [anon_sym_u_DQUOTE] = ACTIONS(4034), - [anon_sym_U_DQUOTE] = ACTIONS(4034), - [anon_sym_u8_DQUOTE] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4034), - [sym_true] = ACTIONS(4032), - [sym_false] = ACTIONS(4032), - [anon_sym_NULL] = ACTIONS(4032), - [anon_sym_nullptr] = ACTIONS(4032), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4032), - [anon_sym_decltype] = ACTIONS(4032), - [anon_sym_explicit] = ACTIONS(4032), - [anon_sym_export] = ACTIONS(4032), - [anon_sym_module] = ACTIONS(4032), - [anon_sym_import] = ACTIONS(4032), - [anon_sym_template] = ACTIONS(4032), - [anon_sym_operator] = ACTIONS(4032), - [anon_sym_try] = ACTIONS(4032), - [anon_sym_delete] = ACTIONS(4032), - [anon_sym_throw] = ACTIONS(4032), - [anon_sym_namespace] = ACTIONS(4032), - [anon_sym_static_assert] = ACTIONS(4032), - [anon_sym_concept] = ACTIONS(4032), - [anon_sym_co_return] = ACTIONS(4032), - [anon_sym_co_yield] = ACTIONS(4032), - [anon_sym_R_DQUOTE] = ACTIONS(4034), - [anon_sym_LR_DQUOTE] = ACTIONS(4034), - [anon_sym_uR_DQUOTE] = ACTIONS(4034), - [anon_sym_UR_DQUOTE] = ACTIONS(4034), - [anon_sym_u8R_DQUOTE] = ACTIONS(4034), - [anon_sym_co_await] = ACTIONS(4032), - [anon_sym_new] = ACTIONS(4032), - [anon_sym_requires] = ACTIONS(4032), - [anon_sym_CARET_CARET] = ACTIONS(4034), - [anon_sym_LBRACK_COLON] = ACTIONS(4034), - [sym_this] = ACTIONS(4032), - }, - [STATE(429)] = { - [sym_identifier] = ACTIONS(4036), - [aux_sym_preproc_include_token1] = ACTIONS(4036), - [aux_sym_preproc_def_token1] = ACTIONS(4036), - [aux_sym_preproc_if_token1] = ACTIONS(4036), - [aux_sym_preproc_if_token2] = ACTIONS(4036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4036), - [aux_sym_preproc_else_token1] = ACTIONS(4036), - [aux_sym_preproc_elif_token1] = ACTIONS(4036), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4036), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4036), - [sym_preproc_directive] = ACTIONS(4036), - [anon_sym_LPAREN2] = ACTIONS(4038), - [anon_sym_BANG] = ACTIONS(4038), - [anon_sym_TILDE] = ACTIONS(4038), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4036), - [anon_sym_STAR] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym___extension__] = ACTIONS(4036), - [anon_sym_typedef] = ACTIONS(4036), - [anon_sym_virtual] = ACTIONS(4036), - [anon_sym_extern] = ACTIONS(4036), - [anon_sym___attribute__] = ACTIONS(4036), - [anon_sym___attribute] = ACTIONS(4036), - [anon_sym_using] = ACTIONS(4036), - [anon_sym_COLON_COLON] = ACTIONS(4038), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4038), - [anon_sym___declspec] = ACTIONS(4036), - [anon_sym___based] = ACTIONS(4036), - [anon_sym___cdecl] = ACTIONS(4036), - [anon_sym___clrcall] = ACTIONS(4036), - [anon_sym___stdcall] = ACTIONS(4036), - [anon_sym___fastcall] = ACTIONS(4036), - [anon_sym___thiscall] = ACTIONS(4036), - [anon_sym___vectorcall] = ACTIONS(4036), - [anon_sym_LBRACE] = ACTIONS(4038), - [anon_sym_signed] = ACTIONS(4036), - [anon_sym_unsigned] = ACTIONS(4036), - [anon_sym_long] = ACTIONS(4036), - [anon_sym_short] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_static] = ACTIONS(4036), - [anon_sym_register] = ACTIONS(4036), - [anon_sym_inline] = ACTIONS(4036), - [anon_sym___inline] = ACTIONS(4036), - [anon_sym___inline__] = ACTIONS(4036), - [anon_sym___forceinline] = ACTIONS(4036), - [anon_sym_thread_local] = ACTIONS(4036), - [anon_sym___thread] = ACTIONS(4036), - [anon_sym_const] = ACTIONS(4036), - [anon_sym_constexpr] = ACTIONS(4036), - [anon_sym_volatile] = ACTIONS(4036), - [anon_sym_restrict] = ACTIONS(4036), - [anon_sym___restrict__] = ACTIONS(4036), - [anon_sym__Atomic] = ACTIONS(4036), - [anon_sym__Noreturn] = ACTIONS(4036), - [anon_sym_noreturn] = ACTIONS(4036), - [anon_sym__Nonnull] = ACTIONS(4036), - [anon_sym_mutable] = ACTIONS(4036), - [anon_sym_constinit] = ACTIONS(4036), - [anon_sym_consteval] = ACTIONS(4036), - [anon_sym_alignas] = ACTIONS(4036), - [anon_sym__Alignas] = ACTIONS(4036), - [sym_primitive_type] = ACTIONS(4036), - [anon_sym_enum] = ACTIONS(4036), - [anon_sym_class] = ACTIONS(4036), - [anon_sym_struct] = ACTIONS(4036), - [anon_sym_union] = ACTIONS(4036), - [anon_sym_if] = ACTIONS(4036), - [anon_sym_switch] = ACTIONS(4036), - [anon_sym_case] = ACTIONS(4036), - [anon_sym_default] = ACTIONS(4036), - [anon_sym_while] = ACTIONS(4036), - [anon_sym_do] = ACTIONS(4036), - [anon_sym_for] = ACTIONS(4036), - [anon_sym_return] = ACTIONS(4036), - [anon_sym_break] = ACTIONS(4036), - [anon_sym_continue] = ACTIONS(4036), - [anon_sym_goto] = ACTIONS(4036), - [anon_sym___try] = ACTIONS(4036), - [anon_sym___leave] = ACTIONS(4036), - [anon_sym_not] = ACTIONS(4036), - [anon_sym_compl] = ACTIONS(4036), - [anon_sym_DASH_DASH] = ACTIONS(4038), - [anon_sym_PLUS_PLUS] = ACTIONS(4038), - [anon_sym_sizeof] = ACTIONS(4036), - [anon_sym___alignof__] = ACTIONS(4036), - [anon_sym___alignof] = ACTIONS(4036), - [anon_sym__alignof] = ACTIONS(4036), - [anon_sym_alignof] = ACTIONS(4036), - [anon_sym__Alignof] = ACTIONS(4036), - [anon_sym_offsetof] = ACTIONS(4036), - [anon_sym__Generic] = ACTIONS(4036), - [anon_sym_typename] = ACTIONS(4036), - [anon_sym_asm] = ACTIONS(4036), - [anon_sym___asm__] = ACTIONS(4036), - [anon_sym___asm] = ACTIONS(4036), - [sym_number_literal] = ACTIONS(4038), - [anon_sym_L_SQUOTE] = ACTIONS(4038), - [anon_sym_u_SQUOTE] = ACTIONS(4038), - [anon_sym_U_SQUOTE] = ACTIONS(4038), - [anon_sym_u8_SQUOTE] = ACTIONS(4038), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_L_DQUOTE] = ACTIONS(4038), - [anon_sym_u_DQUOTE] = ACTIONS(4038), - [anon_sym_U_DQUOTE] = ACTIONS(4038), - [anon_sym_u8_DQUOTE] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [sym_true] = ACTIONS(4036), - [sym_false] = ACTIONS(4036), - [anon_sym_NULL] = ACTIONS(4036), - [anon_sym_nullptr] = ACTIONS(4036), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4036), - [anon_sym_decltype] = ACTIONS(4036), - [anon_sym_explicit] = ACTIONS(4036), - [anon_sym_export] = ACTIONS(4036), - [anon_sym_module] = ACTIONS(4036), - [anon_sym_import] = ACTIONS(4036), - [anon_sym_template] = ACTIONS(4036), - [anon_sym_operator] = ACTIONS(4036), - [anon_sym_try] = ACTIONS(4036), - [anon_sym_delete] = ACTIONS(4036), - [anon_sym_throw] = ACTIONS(4036), - [anon_sym_namespace] = ACTIONS(4036), - [anon_sym_static_assert] = ACTIONS(4036), - [anon_sym_concept] = ACTIONS(4036), - [anon_sym_co_return] = ACTIONS(4036), - [anon_sym_co_yield] = ACTIONS(4036), - [anon_sym_R_DQUOTE] = ACTIONS(4038), - [anon_sym_LR_DQUOTE] = ACTIONS(4038), - [anon_sym_uR_DQUOTE] = ACTIONS(4038), - [anon_sym_UR_DQUOTE] = ACTIONS(4038), - [anon_sym_u8R_DQUOTE] = ACTIONS(4038), - [anon_sym_co_await] = ACTIONS(4036), - [anon_sym_new] = ACTIONS(4036), - [anon_sym_requires] = ACTIONS(4036), - [anon_sym_CARET_CARET] = ACTIONS(4038), - [anon_sym_LBRACK_COLON] = ACTIONS(4038), - [sym_this] = ACTIONS(4036), - }, - [STATE(430)] = { - [sym_identifier] = ACTIONS(4040), - [aux_sym_preproc_include_token1] = ACTIONS(4040), - [aux_sym_preproc_def_token1] = ACTIONS(4040), - [aux_sym_preproc_if_token1] = ACTIONS(4040), - [aux_sym_preproc_if_token2] = ACTIONS(4040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4040), - [aux_sym_preproc_else_token1] = ACTIONS(4040), - [aux_sym_preproc_elif_token1] = ACTIONS(4040), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4040), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4040), - [sym_preproc_directive] = ACTIONS(4040), - [anon_sym_LPAREN2] = ACTIONS(4042), - [anon_sym_BANG] = ACTIONS(4042), - [anon_sym_TILDE] = ACTIONS(4042), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym___extension__] = ACTIONS(4040), - [anon_sym_typedef] = ACTIONS(4040), - [anon_sym_virtual] = ACTIONS(4040), - [anon_sym_extern] = ACTIONS(4040), - [anon_sym___attribute__] = ACTIONS(4040), - [anon_sym___attribute] = ACTIONS(4040), - [anon_sym_using] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4042), - [anon_sym___declspec] = ACTIONS(4040), - [anon_sym___based] = ACTIONS(4040), - [anon_sym___cdecl] = ACTIONS(4040), - [anon_sym___clrcall] = ACTIONS(4040), - [anon_sym___stdcall] = ACTIONS(4040), - [anon_sym___fastcall] = ACTIONS(4040), - [anon_sym___thiscall] = ACTIONS(4040), - [anon_sym___vectorcall] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_signed] = ACTIONS(4040), - [anon_sym_unsigned] = ACTIONS(4040), - [anon_sym_long] = ACTIONS(4040), - [anon_sym_short] = ACTIONS(4040), - [anon_sym_LBRACK] = ACTIONS(4040), - [anon_sym_static] = ACTIONS(4040), - [anon_sym_register] = ACTIONS(4040), - [anon_sym_inline] = ACTIONS(4040), - [anon_sym___inline] = ACTIONS(4040), - [anon_sym___inline__] = ACTIONS(4040), - [anon_sym___forceinline] = ACTIONS(4040), - [anon_sym_thread_local] = ACTIONS(4040), - [anon_sym___thread] = ACTIONS(4040), - [anon_sym_const] = ACTIONS(4040), - [anon_sym_constexpr] = ACTIONS(4040), - [anon_sym_volatile] = ACTIONS(4040), - [anon_sym_restrict] = ACTIONS(4040), - [anon_sym___restrict__] = ACTIONS(4040), - [anon_sym__Atomic] = ACTIONS(4040), - [anon_sym__Noreturn] = ACTIONS(4040), - [anon_sym_noreturn] = ACTIONS(4040), - [anon_sym__Nonnull] = ACTIONS(4040), - [anon_sym_mutable] = ACTIONS(4040), - [anon_sym_constinit] = ACTIONS(4040), - [anon_sym_consteval] = ACTIONS(4040), - [anon_sym_alignas] = ACTIONS(4040), - [anon_sym__Alignas] = ACTIONS(4040), - [sym_primitive_type] = ACTIONS(4040), - [anon_sym_enum] = ACTIONS(4040), - [anon_sym_class] = ACTIONS(4040), - [anon_sym_struct] = ACTIONS(4040), - [anon_sym_union] = ACTIONS(4040), - [anon_sym_if] = ACTIONS(4040), - [anon_sym_switch] = ACTIONS(4040), - [anon_sym_case] = ACTIONS(4040), - [anon_sym_default] = ACTIONS(4040), - [anon_sym_while] = ACTIONS(4040), - [anon_sym_do] = ACTIONS(4040), - [anon_sym_for] = ACTIONS(4040), - [anon_sym_return] = ACTIONS(4040), - [anon_sym_break] = ACTIONS(4040), - [anon_sym_continue] = ACTIONS(4040), - [anon_sym_goto] = ACTIONS(4040), - [anon_sym___try] = ACTIONS(4040), - [anon_sym___leave] = ACTIONS(4040), - [anon_sym_not] = ACTIONS(4040), - [anon_sym_compl] = ACTIONS(4040), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_sizeof] = ACTIONS(4040), - [anon_sym___alignof__] = ACTIONS(4040), - [anon_sym___alignof] = ACTIONS(4040), - [anon_sym__alignof] = ACTIONS(4040), - [anon_sym_alignof] = ACTIONS(4040), - [anon_sym__Alignof] = ACTIONS(4040), - [anon_sym_offsetof] = ACTIONS(4040), - [anon_sym__Generic] = ACTIONS(4040), - [anon_sym_typename] = ACTIONS(4040), - [anon_sym_asm] = ACTIONS(4040), - [anon_sym___asm__] = ACTIONS(4040), - [anon_sym___asm] = ACTIONS(4040), - [sym_number_literal] = ACTIONS(4042), - [anon_sym_L_SQUOTE] = ACTIONS(4042), - [anon_sym_u_SQUOTE] = ACTIONS(4042), - [anon_sym_U_SQUOTE] = ACTIONS(4042), - [anon_sym_u8_SQUOTE] = ACTIONS(4042), - [anon_sym_SQUOTE] = ACTIONS(4042), - [anon_sym_L_DQUOTE] = ACTIONS(4042), - [anon_sym_u_DQUOTE] = ACTIONS(4042), - [anon_sym_U_DQUOTE] = ACTIONS(4042), - [anon_sym_u8_DQUOTE] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4042), - [sym_true] = ACTIONS(4040), - [sym_false] = ACTIONS(4040), - [anon_sym_NULL] = ACTIONS(4040), - [anon_sym_nullptr] = ACTIONS(4040), + [anon_sym_union] = ACTIONS(4034), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(4038), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(4040), - [anon_sym_decltype] = ACTIONS(4040), - [anon_sym_explicit] = ACTIONS(4040), - [anon_sym_export] = ACTIONS(4040), - [anon_sym_module] = ACTIONS(4040), - [anon_sym_import] = ACTIONS(4040), - [anon_sym_template] = ACTIONS(4040), - [anon_sym_operator] = ACTIONS(4040), - [anon_sym_try] = ACTIONS(4040), - [anon_sym_delete] = ACTIONS(4040), - [anon_sym_throw] = ACTIONS(4040), - [anon_sym_namespace] = ACTIONS(4040), - [anon_sym_static_assert] = ACTIONS(4040), - [anon_sym_concept] = ACTIONS(4040), - [anon_sym_co_return] = ACTIONS(4040), - [anon_sym_co_yield] = ACTIONS(4040), - [anon_sym_R_DQUOTE] = ACTIONS(4042), - [anon_sym_LR_DQUOTE] = ACTIONS(4042), - [anon_sym_uR_DQUOTE] = ACTIONS(4042), - [anon_sym_UR_DQUOTE] = ACTIONS(4042), - [anon_sym_u8R_DQUOTE] = ACTIONS(4042), - [anon_sym_co_await] = ACTIONS(4040), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_requires] = ACTIONS(4040), - [anon_sym_CARET_CARET] = ACTIONS(4042), - [anon_sym_LBRACK_COLON] = ACTIONS(4042), - [sym_this] = ACTIONS(4040), + [anon_sym_decltype] = ACTIONS(4042), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), }, - [STATE(431)] = { + [STATE(440)] = { [sym_identifier] = ACTIONS(4044), [aux_sym_preproc_include_token1] = ACTIONS(4044), [aux_sym_preproc_def_token1] = ACTIONS(4044), @@ -121609,7 +122920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4046), [sym_this] = ACTIONS(4044), }, - [STATE(432)] = { + [STATE(441)] = { [sym_identifier] = ACTIONS(4048), [aux_sym_preproc_include_token1] = ACTIONS(4048), [aux_sym_preproc_def_token1] = ACTIONS(4048), @@ -121754,84 +123065,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4050), [sym_this] = ACTIONS(4048), }, - [STATE(433)] = { - [sym_type_qualifier] = STATE(5133), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(2603), - [sym_sized_type_specifier] = STATE(3528), - [sym_enum_specifier] = STATE(3528), - [sym_struct_specifier] = STATE(3528), - [sym_union_specifier] = STATE(3528), - [sym_expression] = STATE(5832), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_type_descriptor] = STATE(6113), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_placeholder_type_specifier] = STATE(3528), - [sym_decltype_auto] = STATE(3527), - [sym_decltype] = STATE(3447), - [sym_class_specifier] = STATE(3528), - [sym__class_name] = STATE(10386), - [sym_dependent_type] = STATE(3528), - [sym_template_type] = STATE(3448), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7949), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(3529), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(3606), - [sym__splice_specialization_specifier] = STATE(2921), - [sym_splice_type_specifier] = STATE(3539), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [aux_sym__type_definition_type_repeat1] = STATE(5133), - [aux_sym_sized_type_specifier_repeat1] = STATE(2356), + [STATE(442)] = { [sym_identifier] = ACTIONS(4052), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(4054), - [anon_sym_COLON_COLON] = ACTIONS(4056), - [anon_sym_signed] = ACTIONS(4058), - [anon_sym_unsigned] = ACTIONS(4058), - [anon_sym_long] = ACTIONS(4058), - [anon_sym_short] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(1670), + [aux_sym_preproc_include_token1] = ACTIONS(4052), + [aux_sym_preproc_def_token1] = ACTIONS(4052), + [aux_sym_preproc_if_token1] = ACTIONS(4052), + [aux_sym_preproc_if_token2] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4052), + [aux_sym_preproc_else_token1] = ACTIONS(4052), + [aux_sym_preproc_elif_token1] = ACTIONS(4052), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4052), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4052), + [sym_preproc_directive] = ACTIONS(4052), + [anon_sym_LPAREN2] = ACTIONS(4054), + [anon_sym_BANG] = ACTIONS(4054), + [anon_sym_TILDE] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_AMP_AMP] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym___extension__] = ACTIONS(4052), + [anon_sym_typedef] = ACTIONS(4052), + [anon_sym_virtual] = ACTIONS(4052), + [anon_sym_extern] = ACTIONS(4052), + [anon_sym___attribute__] = ACTIONS(4052), + [anon_sym___attribute] = ACTIONS(4052), + [anon_sym_using] = ACTIONS(4052), + [anon_sym_COLON_COLON] = ACTIONS(4054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4054), + [anon_sym___declspec] = ACTIONS(4052), + [anon_sym___based] = ACTIONS(4052), + [anon_sym___cdecl] = ACTIONS(4052), + [anon_sym___clrcall] = ACTIONS(4052), + [anon_sym___stdcall] = ACTIONS(4052), + [anon_sym___fastcall] = ACTIONS(4052), + [anon_sym___thiscall] = ACTIONS(4052), + [anon_sym___vectorcall] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_signed] = ACTIONS(4052), + [anon_sym_unsigned] = ACTIONS(4052), + [anon_sym_long] = ACTIONS(4052), + [anon_sym_short] = ACTIONS(4052), + [anon_sym_LBRACK] = ACTIONS(4052), + [anon_sym_static] = ACTIONS(4052), + [anon_sym_register] = ACTIONS(4052), + [anon_sym_inline] = ACTIONS(4052), + [anon_sym___inline] = ACTIONS(4052), + [anon_sym___inline__] = ACTIONS(4052), + [anon_sym___forceinline] = ACTIONS(4052), + [anon_sym_thread_local] = ACTIONS(4052), + [anon_sym___thread] = ACTIONS(4052), + [anon_sym_const] = ACTIONS(4052), + [anon_sym_constexpr] = ACTIONS(4052), + [anon_sym_volatile] = ACTIONS(4052), + [anon_sym_restrict] = ACTIONS(4052), + [anon_sym___restrict__] = ACTIONS(4052), + [anon_sym__Atomic] = ACTIONS(4052), + [anon_sym__Noreturn] = ACTIONS(4052), + [anon_sym_noreturn] = ACTIONS(4052), + [anon_sym__Nonnull] = ACTIONS(4052), + [anon_sym_mutable] = ACTIONS(4052), + [anon_sym_constinit] = ACTIONS(4052), + [anon_sym_consteval] = ACTIONS(4052), + [anon_sym_alignas] = ACTIONS(4052), + [anon_sym__Alignas] = ACTIONS(4052), + [sym_primitive_type] = ACTIONS(4052), + [anon_sym_enum] = ACTIONS(4052), + [anon_sym_class] = ACTIONS(4052), + [anon_sym_struct] = ACTIONS(4052), + [anon_sym_union] = ACTIONS(4052), + [anon_sym_if] = ACTIONS(4052), + [anon_sym_switch] = ACTIONS(4052), + [anon_sym_case] = ACTIONS(4052), + [anon_sym_default] = ACTIONS(4052), + [anon_sym_while] = ACTIONS(4052), + [anon_sym_do] = ACTIONS(4052), + [anon_sym_for] = ACTIONS(4052), + [anon_sym_return] = ACTIONS(4052), + [anon_sym_break] = ACTIONS(4052), + [anon_sym_continue] = ACTIONS(4052), + [anon_sym_goto] = ACTIONS(4052), + [anon_sym___try] = ACTIONS(4052), + [anon_sym___leave] = ACTIONS(4052), + [anon_sym_not] = ACTIONS(4052), + [anon_sym_compl] = ACTIONS(4052), + [anon_sym_DASH_DASH] = ACTIONS(4054), + [anon_sym_PLUS_PLUS] = ACTIONS(4054), + [anon_sym_sizeof] = ACTIONS(4052), + [anon_sym___alignof__] = ACTIONS(4052), + [anon_sym___alignof] = ACTIONS(4052), + [anon_sym__alignof] = ACTIONS(4052), + [anon_sym_alignof] = ACTIONS(4052), + [anon_sym__Alignof] = ACTIONS(4052), + [anon_sym_offsetof] = ACTIONS(4052), + [anon_sym__Generic] = ACTIONS(4052), + [anon_sym_typename] = ACTIONS(4052), + [anon_sym_asm] = ACTIONS(4052), + [anon_sym___asm__] = ACTIONS(4052), + [anon_sym___asm] = ACTIONS(4052), + [sym_number_literal] = ACTIONS(4054), + [anon_sym_L_SQUOTE] = ACTIONS(4054), + [anon_sym_u_SQUOTE] = ACTIONS(4054), + [anon_sym_U_SQUOTE] = ACTIONS(4054), + [anon_sym_u8_SQUOTE] = ACTIONS(4054), + [anon_sym_SQUOTE] = ACTIONS(4054), + [anon_sym_L_DQUOTE] = ACTIONS(4054), + [anon_sym_u_DQUOTE] = ACTIONS(4054), + [anon_sym_U_DQUOTE] = ACTIONS(4054), + [anon_sym_u8_DQUOTE] = ACTIONS(4054), + [anon_sym_DQUOTE] = ACTIONS(4054), + [sym_true] = ACTIONS(4052), + [sym_false] = ACTIONS(4052), + [anon_sym_NULL] = ACTIONS(4052), + [anon_sym_nullptr] = ACTIONS(4052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4052), + [anon_sym_decltype] = ACTIONS(4052), + [anon_sym_explicit] = ACTIONS(4052), + [anon_sym_export] = ACTIONS(4052), + [anon_sym_module] = ACTIONS(4052), + [anon_sym_import] = ACTIONS(4052), + [anon_sym_template] = ACTIONS(4052), + [anon_sym_operator] = ACTIONS(4052), + [anon_sym_try] = ACTIONS(4052), + [anon_sym_delete] = ACTIONS(4052), + [anon_sym_throw] = ACTIONS(4052), + [anon_sym_namespace] = ACTIONS(4052), + [anon_sym_static_assert] = ACTIONS(4052), + [anon_sym_concept] = ACTIONS(4052), + [anon_sym_co_return] = ACTIONS(4052), + [anon_sym_co_yield] = ACTIONS(4052), + [anon_sym_R_DQUOTE] = ACTIONS(4054), + [anon_sym_LR_DQUOTE] = ACTIONS(4054), + [anon_sym_uR_DQUOTE] = ACTIONS(4054), + [anon_sym_UR_DQUOTE] = ACTIONS(4054), + [anon_sym_u8R_DQUOTE] = ACTIONS(4054), + [anon_sym_co_await] = ACTIONS(4052), + [anon_sym_new] = ACTIONS(4052), + [anon_sym_requires] = ACTIONS(4052), + [anon_sym_CARET_CARET] = ACTIONS(4054), + [anon_sym_LBRACK_COLON] = ACTIONS(4054), + [sym_this] = ACTIONS(4052), + }, + [STATE(443)] = { + [sym_type_qualifier] = STATE(5157), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3806), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6533), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(5948), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7902), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(4042), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [aux_sym__type_definition_type_repeat1] = STATE(5157), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(4056), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4068), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -121846,451 +123302,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4062), - [anon_sym_class] = ACTIONS(4064), - [anon_sym_struct] = ACTIONS(4066), - [anon_sym_union] = ACTIONS(4068), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(4070), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4072), - [anon_sym_decltype] = ACTIONS(4074), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(434)] = { - [sym_identifier] = ACTIONS(4024), - [aux_sym_preproc_include_token1] = ACTIONS(4024), - [aux_sym_preproc_def_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token2] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), - [aux_sym_preproc_else_token1] = ACTIONS(4024), - [aux_sym_preproc_elif_token1] = ACTIONS(4024), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4024), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4024), - [sym_preproc_directive] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [anon_sym_DASH] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym___extension__] = ACTIONS(4024), - [anon_sym_typedef] = ACTIONS(4024), - [anon_sym_virtual] = ACTIONS(4024), - [anon_sym_extern] = ACTIONS(4024), - [anon_sym___attribute__] = ACTIONS(4024), - [anon_sym___attribute] = ACTIONS(4024), - [anon_sym_using] = ACTIONS(4024), - [anon_sym_COLON_COLON] = ACTIONS(4026), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), - [anon_sym___declspec] = ACTIONS(4024), - [anon_sym___based] = ACTIONS(4024), - [anon_sym___cdecl] = ACTIONS(4024), - [anon_sym___clrcall] = ACTIONS(4024), - [anon_sym___stdcall] = ACTIONS(4024), - [anon_sym___fastcall] = ACTIONS(4024), - [anon_sym___thiscall] = ACTIONS(4024), - [anon_sym___vectorcall] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_signed] = ACTIONS(4024), - [anon_sym_unsigned] = ACTIONS(4024), - [anon_sym_long] = ACTIONS(4024), - [anon_sym_short] = ACTIONS(4024), - [anon_sym_LBRACK] = ACTIONS(4024), - [anon_sym_static] = ACTIONS(4024), - [anon_sym_register] = ACTIONS(4024), - [anon_sym_inline] = ACTIONS(4024), - [anon_sym___inline] = ACTIONS(4024), - [anon_sym___inline__] = ACTIONS(4024), - [anon_sym___forceinline] = ACTIONS(4024), - [anon_sym_thread_local] = ACTIONS(4024), - [anon_sym___thread] = ACTIONS(4024), - [anon_sym_const] = ACTIONS(4024), - [anon_sym_constexpr] = ACTIONS(4024), - [anon_sym_volatile] = ACTIONS(4024), - [anon_sym_restrict] = ACTIONS(4024), - [anon_sym___restrict__] = ACTIONS(4024), - [anon_sym__Atomic] = ACTIONS(4024), - [anon_sym__Noreturn] = ACTIONS(4024), - [anon_sym_noreturn] = ACTIONS(4024), - [anon_sym__Nonnull] = ACTIONS(4024), - [anon_sym_mutable] = ACTIONS(4024), - [anon_sym_constinit] = ACTIONS(4024), - [anon_sym_consteval] = ACTIONS(4024), - [anon_sym_alignas] = ACTIONS(4024), - [anon_sym__Alignas] = ACTIONS(4024), - [sym_primitive_type] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4024), - [anon_sym_class] = ACTIONS(4024), - [anon_sym_struct] = ACTIONS(4024), - [anon_sym_union] = ACTIONS(4024), - [anon_sym_if] = ACTIONS(4024), - [anon_sym_switch] = ACTIONS(4024), - [anon_sym_case] = ACTIONS(4024), - [anon_sym_default] = ACTIONS(4024), - [anon_sym_while] = ACTIONS(4024), - [anon_sym_do] = ACTIONS(4024), - [anon_sym_for] = ACTIONS(4024), - [anon_sym_return] = ACTIONS(4024), - [anon_sym_break] = ACTIONS(4024), - [anon_sym_continue] = ACTIONS(4024), - [anon_sym_goto] = ACTIONS(4024), - [anon_sym___try] = ACTIONS(4024), - [anon_sym___leave] = ACTIONS(4024), - [anon_sym_not] = ACTIONS(4024), - [anon_sym_compl] = ACTIONS(4024), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_sizeof] = ACTIONS(4024), - [anon_sym___alignof__] = ACTIONS(4024), - [anon_sym___alignof] = ACTIONS(4024), - [anon_sym__alignof] = ACTIONS(4024), - [anon_sym_alignof] = ACTIONS(4024), - [anon_sym__Alignof] = ACTIONS(4024), - [anon_sym_offsetof] = ACTIONS(4024), - [anon_sym__Generic] = ACTIONS(4024), - [anon_sym_typename] = ACTIONS(4024), - [anon_sym_asm] = ACTIONS(4024), - [anon_sym___asm__] = ACTIONS(4024), - [anon_sym___asm] = ACTIONS(4024), - [sym_number_literal] = ACTIONS(4026), - [anon_sym_L_SQUOTE] = ACTIONS(4026), - [anon_sym_u_SQUOTE] = ACTIONS(4026), - [anon_sym_U_SQUOTE] = ACTIONS(4026), - [anon_sym_u8_SQUOTE] = ACTIONS(4026), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_L_DQUOTE] = ACTIONS(4026), - [anon_sym_u_DQUOTE] = ACTIONS(4026), - [anon_sym_U_DQUOTE] = ACTIONS(4026), - [anon_sym_u8_DQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [anon_sym_NULL] = ACTIONS(4024), - [anon_sym_nullptr] = ACTIONS(4024), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4024), - [anon_sym_decltype] = ACTIONS(4024), - [anon_sym_explicit] = ACTIONS(4024), - [anon_sym_export] = ACTIONS(4024), - [anon_sym_module] = ACTIONS(4024), - [anon_sym_import] = ACTIONS(4024), - [anon_sym_template] = ACTIONS(4024), - [anon_sym_operator] = ACTIONS(4024), - [anon_sym_try] = ACTIONS(4024), - [anon_sym_delete] = ACTIONS(4024), - [anon_sym_throw] = ACTIONS(4024), - [anon_sym_namespace] = ACTIONS(4024), - [anon_sym_static_assert] = ACTIONS(4024), - [anon_sym_concept] = ACTIONS(4024), - [anon_sym_co_return] = ACTIONS(4024), - [anon_sym_co_yield] = ACTIONS(4024), - [anon_sym_R_DQUOTE] = ACTIONS(4026), - [anon_sym_LR_DQUOTE] = ACTIONS(4026), - [anon_sym_uR_DQUOTE] = ACTIONS(4026), - [anon_sym_UR_DQUOTE] = ACTIONS(4026), - [anon_sym_u8R_DQUOTE] = ACTIONS(4026), - [anon_sym_co_await] = ACTIONS(4024), - [anon_sym_new] = ACTIONS(4024), - [anon_sym_requires] = ACTIONS(4024), - [anon_sym_CARET_CARET] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4026), - [sym_this] = ACTIONS(4024), - }, - [STATE(435)] = { - [sym_identifier] = ACTIONS(4076), - [aux_sym_preproc_include_token1] = ACTIONS(4076), - [aux_sym_preproc_def_token1] = ACTIONS(4076), - [aux_sym_preproc_if_token1] = ACTIONS(4076), - [aux_sym_preproc_if_token2] = ACTIONS(4076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4076), - [aux_sym_preproc_else_token1] = ACTIONS(4076), - [aux_sym_preproc_elif_token1] = ACTIONS(4076), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4076), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4076), - [sym_preproc_directive] = ACTIONS(4076), - [anon_sym_LPAREN2] = ACTIONS(4078), - [anon_sym_BANG] = ACTIONS(4078), - [anon_sym_TILDE] = ACTIONS(4078), - [anon_sym_DASH] = ACTIONS(4076), - [anon_sym_PLUS] = ACTIONS(4076), - [anon_sym_STAR] = ACTIONS(4078), - [anon_sym_AMP_AMP] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4076), - [anon_sym_SEMI] = ACTIONS(4078), - [anon_sym___extension__] = ACTIONS(4076), - [anon_sym_typedef] = ACTIONS(4076), - [anon_sym_virtual] = ACTIONS(4076), - [anon_sym_extern] = ACTIONS(4076), - [anon_sym___attribute__] = ACTIONS(4076), - [anon_sym___attribute] = ACTIONS(4076), - [anon_sym_using] = ACTIONS(4076), - [anon_sym_COLON_COLON] = ACTIONS(4078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4078), - [anon_sym___declspec] = ACTIONS(4076), - [anon_sym___based] = ACTIONS(4076), - [anon_sym___cdecl] = ACTIONS(4076), - [anon_sym___clrcall] = ACTIONS(4076), - [anon_sym___stdcall] = ACTIONS(4076), - [anon_sym___fastcall] = ACTIONS(4076), - [anon_sym___thiscall] = ACTIONS(4076), - [anon_sym___vectorcall] = ACTIONS(4076), - [anon_sym_LBRACE] = ACTIONS(4078), - [anon_sym_signed] = ACTIONS(4076), - [anon_sym_unsigned] = ACTIONS(4076), - [anon_sym_long] = ACTIONS(4076), - [anon_sym_short] = ACTIONS(4076), - [anon_sym_LBRACK] = ACTIONS(4076), - [anon_sym_static] = ACTIONS(4076), - [anon_sym_register] = ACTIONS(4076), - [anon_sym_inline] = ACTIONS(4076), - [anon_sym___inline] = ACTIONS(4076), - [anon_sym___inline__] = ACTIONS(4076), - [anon_sym___forceinline] = ACTIONS(4076), - [anon_sym_thread_local] = ACTIONS(4076), - [anon_sym___thread] = ACTIONS(4076), - [anon_sym_const] = ACTIONS(4076), - [anon_sym_constexpr] = ACTIONS(4076), - [anon_sym_volatile] = ACTIONS(4076), - [anon_sym_restrict] = ACTIONS(4076), - [anon_sym___restrict__] = ACTIONS(4076), - [anon_sym__Atomic] = ACTIONS(4076), - [anon_sym__Noreturn] = ACTIONS(4076), - [anon_sym_noreturn] = ACTIONS(4076), - [anon_sym__Nonnull] = ACTIONS(4076), - [anon_sym_mutable] = ACTIONS(4076), - [anon_sym_constinit] = ACTIONS(4076), - [anon_sym_consteval] = ACTIONS(4076), - [anon_sym_alignas] = ACTIONS(4076), - [anon_sym__Alignas] = ACTIONS(4076), - [sym_primitive_type] = ACTIONS(4076), - [anon_sym_enum] = ACTIONS(4076), - [anon_sym_class] = ACTIONS(4076), - [anon_sym_struct] = ACTIONS(4076), - [anon_sym_union] = ACTIONS(4076), - [anon_sym_if] = ACTIONS(4076), - [anon_sym_switch] = ACTIONS(4076), - [anon_sym_case] = ACTIONS(4076), - [anon_sym_default] = ACTIONS(4076), - [anon_sym_while] = ACTIONS(4076), - [anon_sym_do] = ACTIONS(4076), - [anon_sym_for] = ACTIONS(4076), - [anon_sym_return] = ACTIONS(4076), - [anon_sym_break] = ACTIONS(4076), - [anon_sym_continue] = ACTIONS(4076), - [anon_sym_goto] = ACTIONS(4076), - [anon_sym___try] = ACTIONS(4076), - [anon_sym___leave] = ACTIONS(4076), - [anon_sym_not] = ACTIONS(4076), - [anon_sym_compl] = ACTIONS(4076), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_sizeof] = ACTIONS(4076), - [anon_sym___alignof__] = ACTIONS(4076), - [anon_sym___alignof] = ACTIONS(4076), - [anon_sym__alignof] = ACTIONS(4076), - [anon_sym_alignof] = ACTIONS(4076), - [anon_sym__Alignof] = ACTIONS(4076), - [anon_sym_offsetof] = ACTIONS(4076), - [anon_sym__Generic] = ACTIONS(4076), - [anon_sym_typename] = ACTIONS(4076), - [anon_sym_asm] = ACTIONS(4076), - [anon_sym___asm__] = ACTIONS(4076), - [anon_sym___asm] = ACTIONS(4076), - [sym_number_literal] = ACTIONS(4078), - [anon_sym_L_SQUOTE] = ACTIONS(4078), - [anon_sym_u_SQUOTE] = ACTIONS(4078), - [anon_sym_U_SQUOTE] = ACTIONS(4078), - [anon_sym_u8_SQUOTE] = ACTIONS(4078), - [anon_sym_SQUOTE] = ACTIONS(4078), - [anon_sym_L_DQUOTE] = ACTIONS(4078), - [anon_sym_u_DQUOTE] = ACTIONS(4078), - [anon_sym_U_DQUOTE] = ACTIONS(4078), - [anon_sym_u8_DQUOTE] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(4078), - [sym_true] = ACTIONS(4076), - [sym_false] = ACTIONS(4076), - [anon_sym_NULL] = ACTIONS(4076), - [anon_sym_nullptr] = ACTIONS(4076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4076), - [anon_sym_decltype] = ACTIONS(4076), - [anon_sym_explicit] = ACTIONS(4076), - [anon_sym_export] = ACTIONS(4076), - [anon_sym_module] = ACTIONS(4076), - [anon_sym_import] = ACTIONS(4076), - [anon_sym_template] = ACTIONS(4076), - [anon_sym_operator] = ACTIONS(4076), - [anon_sym_try] = ACTIONS(4076), - [anon_sym_delete] = ACTIONS(4076), - [anon_sym_throw] = ACTIONS(4076), - [anon_sym_namespace] = ACTIONS(4076), - [anon_sym_static_assert] = ACTIONS(4076), - [anon_sym_concept] = ACTIONS(4076), - [anon_sym_co_return] = ACTIONS(4076), - [anon_sym_co_yield] = ACTIONS(4076), - [anon_sym_R_DQUOTE] = ACTIONS(4078), - [anon_sym_LR_DQUOTE] = ACTIONS(4078), - [anon_sym_uR_DQUOTE] = ACTIONS(4078), - [anon_sym_UR_DQUOTE] = ACTIONS(4078), - [anon_sym_u8R_DQUOTE] = ACTIONS(4078), - [anon_sym_co_await] = ACTIONS(4076), - [anon_sym_new] = ACTIONS(4076), - [anon_sym_requires] = ACTIONS(4076), - [anon_sym_CARET_CARET] = ACTIONS(4078), - [anon_sym_LBRACK_COLON] = ACTIONS(4078), - [sym_this] = ACTIONS(4076), - }, - [STATE(436)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = 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(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(3802), + [anon_sym_class] = ACTIONS(3804), + [anon_sym_struct] = ACTIONS(3806), + [anon_sym_union] = ACTIONS(3808), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -122298,478 +123319,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3814), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), - [sym_this] = ACTIONS(237), - }, - [STATE(437)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_include_token1] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token2] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [aux_sym_preproc_else_token1] = ACTIONS(4080), - [aux_sym_preproc_elif_token1] = ACTIONS(4080), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym___cdecl] = ACTIONS(4080), - [anon_sym___clrcall] = ACTIONS(4080), - [anon_sym___stdcall] = ACTIONS(4080), - [anon_sym___fastcall] = ACTIONS(4080), - [anon_sym___thiscall] = ACTIONS(4080), - [anon_sym___vectorcall] = ACTIONS(4080), - [anon_sym_LBRACE] = ACTIONS(4082), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_if] = ACTIONS(4080), - [anon_sym_switch] = ACTIONS(4080), - [anon_sym_case] = ACTIONS(4080), - [anon_sym_default] = ACTIONS(4080), - [anon_sym_while] = ACTIONS(4080), - [anon_sym_do] = ACTIONS(4080), - [anon_sym_for] = ACTIONS(4080), - [anon_sym_return] = ACTIONS(4080), - [anon_sym_break] = ACTIONS(4080), - [anon_sym_continue] = ACTIONS(4080), - [anon_sym_goto] = ACTIONS(4080), - [anon_sym___try] = ACTIONS(4080), - [anon_sym___leave] = ACTIONS(4080), - [anon_sym_not] = ACTIONS(4080), - [anon_sym_compl] = ACTIONS(4080), - [anon_sym_DASH_DASH] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4082), - [anon_sym_sizeof] = ACTIONS(4080), - [anon_sym___alignof__] = ACTIONS(4080), - [anon_sym___alignof] = ACTIONS(4080), - [anon_sym__alignof] = ACTIONS(4080), - [anon_sym_alignof] = ACTIONS(4080), - [anon_sym__Alignof] = ACTIONS(4080), - [anon_sym_offsetof] = ACTIONS(4080), - [anon_sym__Generic] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [anon_sym_asm] = ACTIONS(4080), - [anon_sym___asm__] = ACTIONS(4080), - [anon_sym___asm] = ACTIONS(4080), - [sym_number_literal] = ACTIONS(4082), - [anon_sym_L_SQUOTE] = ACTIONS(4082), - [anon_sym_u_SQUOTE] = ACTIONS(4082), - [anon_sym_U_SQUOTE] = ACTIONS(4082), - [anon_sym_u8_SQUOTE] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4082), - [anon_sym_L_DQUOTE] = ACTIONS(4082), - [anon_sym_u_DQUOTE] = ACTIONS(4082), - [anon_sym_U_DQUOTE] = ACTIONS(4082), - [anon_sym_u8_DQUOTE] = ACTIONS(4082), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [anon_sym_NULL] = ACTIONS(4080), - [anon_sym_nullptr] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_export] = ACTIONS(4080), - [anon_sym_module] = ACTIONS(4080), - [anon_sym_import] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_try] = ACTIONS(4080), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(4080), - [anon_sym_throw] = ACTIONS(4080), - [anon_sym_namespace] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_concept] = ACTIONS(4080), - [anon_sym_co_return] = ACTIONS(4080), - [anon_sym_co_yield] = ACTIONS(4080), [anon_sym_R_DQUOTE] = ACTIONS(4082), [anon_sym_LR_DQUOTE] = ACTIONS(4082), [anon_sym_uR_DQUOTE] = ACTIONS(4082), [anon_sym_UR_DQUOTE] = ACTIONS(4082), [anon_sym_u8R_DQUOTE] = ACTIONS(4082), - [anon_sym_co_await] = ACTIONS(4080), - [anon_sym_new] = ACTIONS(4080), - [anon_sym_requires] = ACTIONS(4080), - [anon_sym_CARET_CARET] = ACTIONS(4082), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), - [sym_this] = ACTIONS(4080), - }, - [STATE(438)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_include_token1] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token2] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [aux_sym_preproc_else_token1] = ACTIONS(4080), - [aux_sym_preproc_elif_token1] = ACTIONS(4080), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym___cdecl] = ACTIONS(4080), - [anon_sym___clrcall] = ACTIONS(4080), - [anon_sym___stdcall] = ACTIONS(4080), - [anon_sym___fastcall] = ACTIONS(4080), - [anon_sym___thiscall] = ACTIONS(4080), - [anon_sym___vectorcall] = ACTIONS(4080), - [anon_sym_LBRACE] = ACTIONS(4082), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_if] = ACTIONS(4080), - [anon_sym_switch] = ACTIONS(4080), - [anon_sym_case] = ACTIONS(4080), - [anon_sym_default] = ACTIONS(4080), - [anon_sym_while] = ACTIONS(4080), - [anon_sym_do] = ACTIONS(4080), - [anon_sym_for] = ACTIONS(4080), - [anon_sym_return] = ACTIONS(4080), - [anon_sym_break] = ACTIONS(4080), - [anon_sym_continue] = ACTIONS(4080), - [anon_sym_goto] = ACTIONS(4080), - [anon_sym___try] = ACTIONS(4080), - [anon_sym___leave] = ACTIONS(4080), - [anon_sym_not] = ACTIONS(4080), - [anon_sym_compl] = ACTIONS(4080), - [anon_sym_DASH_DASH] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4082), - [anon_sym_sizeof] = ACTIONS(4080), - [anon_sym___alignof__] = ACTIONS(4080), - [anon_sym___alignof] = ACTIONS(4080), - [anon_sym__alignof] = ACTIONS(4080), - [anon_sym_alignof] = ACTIONS(4080), - [anon_sym__Alignof] = ACTIONS(4080), - [anon_sym_offsetof] = ACTIONS(4080), - [anon_sym__Generic] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [anon_sym_asm] = ACTIONS(4080), - [anon_sym___asm__] = ACTIONS(4080), - [anon_sym___asm] = ACTIONS(4080), - [sym_number_literal] = ACTIONS(4082), - [anon_sym_L_SQUOTE] = ACTIONS(4082), - [anon_sym_u_SQUOTE] = ACTIONS(4082), - [anon_sym_U_SQUOTE] = ACTIONS(4082), - [anon_sym_u8_SQUOTE] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4082), - [anon_sym_L_DQUOTE] = ACTIONS(4082), - [anon_sym_u_DQUOTE] = ACTIONS(4082), - [anon_sym_U_DQUOTE] = ACTIONS(4082), - [anon_sym_u8_DQUOTE] = ACTIONS(4082), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [anon_sym_NULL] = ACTIONS(4080), - [anon_sym_nullptr] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_export] = ACTIONS(4080), - [anon_sym_module] = ACTIONS(4080), - [anon_sym_import] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_try] = ACTIONS(4080), - [anon_sym_delete] = ACTIONS(4080), - [anon_sym_throw] = ACTIONS(4080), - [anon_sym_namespace] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_concept] = ACTIONS(4080), - [anon_sym_co_return] = ACTIONS(4080), - [anon_sym_co_yield] = ACTIONS(4080), - [anon_sym_R_DQUOTE] = ACTIONS(4082), - [anon_sym_LR_DQUOTE] = ACTIONS(4082), - [anon_sym_uR_DQUOTE] = ACTIONS(4082), - [anon_sym_UR_DQUOTE] = ACTIONS(4082), - [anon_sym_u8R_DQUOTE] = ACTIONS(4082), - [anon_sym_co_await] = ACTIONS(4080), - [anon_sym_new] = ACTIONS(4080), - [anon_sym_requires] = ACTIONS(4080), - [anon_sym_CARET_CARET] = ACTIONS(4082), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), - [sym_this] = ACTIONS(4080), - }, - [STATE(439)] = { - [sym_identifier] = ACTIONS(4084), - [aux_sym_preproc_include_token1] = ACTIONS(4084), - [aux_sym_preproc_def_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token2] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), - [aux_sym_preproc_else_token1] = ACTIONS(4084), - [aux_sym_preproc_elif_token1] = ACTIONS(4084), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4084), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4084), - [sym_preproc_directive] = ACTIONS(4084), - [anon_sym_LPAREN2] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4086), - [anon_sym_TILDE] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_AMP_AMP] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym___extension__] = ACTIONS(4084), - [anon_sym_typedef] = ACTIONS(4084), - [anon_sym_virtual] = ACTIONS(4084), - [anon_sym_extern] = ACTIONS(4084), - [anon_sym___attribute__] = ACTIONS(4084), - [anon_sym___attribute] = ACTIONS(4084), - [anon_sym_using] = ACTIONS(4084), - [anon_sym_COLON_COLON] = ACTIONS(4086), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), - [anon_sym___declspec] = ACTIONS(4084), - [anon_sym___based] = ACTIONS(4084), - [anon_sym___cdecl] = ACTIONS(4084), - [anon_sym___clrcall] = ACTIONS(4084), - [anon_sym___stdcall] = ACTIONS(4084), - [anon_sym___fastcall] = ACTIONS(4084), - [anon_sym___thiscall] = ACTIONS(4084), - [anon_sym___vectorcall] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4086), - [anon_sym_signed] = ACTIONS(4084), - [anon_sym_unsigned] = ACTIONS(4084), - [anon_sym_long] = ACTIONS(4084), - [anon_sym_short] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_register] = ACTIONS(4084), - [anon_sym_inline] = ACTIONS(4084), - [anon_sym___inline] = ACTIONS(4084), - [anon_sym___inline__] = ACTIONS(4084), - [anon_sym___forceinline] = ACTIONS(4084), - [anon_sym_thread_local] = ACTIONS(4084), - [anon_sym___thread] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_constexpr] = ACTIONS(4084), - [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_restrict] = ACTIONS(4084), - [anon_sym___restrict__] = ACTIONS(4084), - [anon_sym__Atomic] = ACTIONS(4084), - [anon_sym__Noreturn] = ACTIONS(4084), - [anon_sym_noreturn] = ACTIONS(4084), - [anon_sym__Nonnull] = ACTIONS(4084), - [anon_sym_mutable] = ACTIONS(4084), - [anon_sym_constinit] = ACTIONS(4084), - [anon_sym_consteval] = ACTIONS(4084), - [anon_sym_alignas] = ACTIONS(4084), - [anon_sym__Alignas] = ACTIONS(4084), - [sym_primitive_type] = ACTIONS(4084), - [anon_sym_enum] = ACTIONS(4084), - [anon_sym_class] = ACTIONS(4084), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_union] = ACTIONS(4084), - [anon_sym_if] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(4084), - [anon_sym_case] = ACTIONS(4084), - [anon_sym_default] = ACTIONS(4084), - [anon_sym_while] = ACTIONS(4084), - [anon_sym_do] = ACTIONS(4084), - [anon_sym_for] = ACTIONS(4084), - [anon_sym_return] = ACTIONS(4084), - [anon_sym_break] = ACTIONS(4084), - [anon_sym_continue] = ACTIONS(4084), - [anon_sym_goto] = ACTIONS(4084), - [anon_sym___try] = ACTIONS(4084), - [anon_sym___leave] = ACTIONS(4084), - [anon_sym_not] = ACTIONS(4084), - [anon_sym_compl] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4086), - [anon_sym_PLUS_PLUS] = ACTIONS(4086), - [anon_sym_sizeof] = ACTIONS(4084), - [anon_sym___alignof__] = ACTIONS(4084), - [anon_sym___alignof] = ACTIONS(4084), - [anon_sym__alignof] = ACTIONS(4084), - [anon_sym_alignof] = ACTIONS(4084), - [anon_sym__Alignof] = ACTIONS(4084), - [anon_sym_offsetof] = ACTIONS(4084), - [anon_sym__Generic] = ACTIONS(4084), - [anon_sym_typename] = ACTIONS(4084), - [anon_sym_asm] = ACTIONS(4084), - [anon_sym___asm__] = ACTIONS(4084), - [anon_sym___asm] = ACTIONS(4084), - [sym_number_literal] = ACTIONS(4086), - [anon_sym_L_SQUOTE] = ACTIONS(4086), - [anon_sym_u_SQUOTE] = ACTIONS(4086), - [anon_sym_U_SQUOTE] = ACTIONS(4086), - [anon_sym_u8_SQUOTE] = ACTIONS(4086), - [anon_sym_SQUOTE] = ACTIONS(4086), - [anon_sym_L_DQUOTE] = ACTIONS(4086), - [anon_sym_u_DQUOTE] = ACTIONS(4086), - [anon_sym_U_DQUOTE] = ACTIONS(4086), - [anon_sym_u8_DQUOTE] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(4086), - [sym_true] = ACTIONS(4084), - [sym_false] = ACTIONS(4084), - [anon_sym_NULL] = ACTIONS(4084), - [anon_sym_nullptr] = ACTIONS(4084), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4084), - [anon_sym_decltype] = ACTIONS(4084), - [anon_sym_explicit] = ACTIONS(4084), - [anon_sym_export] = ACTIONS(4084), - [anon_sym_module] = ACTIONS(4084), - [anon_sym_import] = ACTIONS(4084), - [anon_sym_template] = ACTIONS(4084), - [anon_sym_operator] = ACTIONS(4084), - [anon_sym_try] = ACTIONS(4084), - [anon_sym_delete] = ACTIONS(4084), - [anon_sym_throw] = ACTIONS(4084), - [anon_sym_namespace] = ACTIONS(4084), - [anon_sym_static_assert] = ACTIONS(4084), - [anon_sym_concept] = ACTIONS(4084), - [anon_sym_co_return] = ACTIONS(4084), - [anon_sym_co_yield] = ACTIONS(4084), - [anon_sym_R_DQUOTE] = ACTIONS(4086), - [anon_sym_LR_DQUOTE] = ACTIONS(4086), - [anon_sym_uR_DQUOTE] = ACTIONS(4086), - [anon_sym_UR_DQUOTE] = ACTIONS(4086), - [anon_sym_u8R_DQUOTE] = ACTIONS(4086), [anon_sym_co_await] = ACTIONS(4084), - [anon_sym_new] = ACTIONS(4084), - [anon_sym_requires] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(4086), - [anon_sym_LBRACK_COLON] = ACTIONS(4086), - [sym_this] = ACTIONS(4084), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, - [STATE(440)] = { + [STATE(444)] = { [sym_identifier] = ACTIONS(4088), [aux_sym_preproc_include_token1] = ACTIONS(4088), [aux_sym_preproc_def_token1] = ACTIONS(4088), @@ -122914,7 +123500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4090), [sym_this] = ACTIONS(4088), }, - [STATE(441)] = { + [STATE(445)] = { [sym_identifier] = ACTIONS(4092), [aux_sym_preproc_include_token1] = ACTIONS(4092), [aux_sym_preproc_def_token1] = ACTIONS(4092), @@ -123059,7 +123645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4094), [sym_this] = ACTIONS(4092), }, - [STATE(442)] = { + [STATE(446)] = { [sym_identifier] = ACTIONS(4096), [aux_sym_preproc_include_token1] = ACTIONS(4096), [aux_sym_preproc_def_token1] = ACTIONS(4096), @@ -123204,4724 +123790,2984 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4098), [sym_this] = ACTIONS(4096), }, - [STATE(443)] = { - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_include_token1] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token2] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [aux_sym_preproc_else_token1] = ACTIONS(4100), - [aux_sym_preproc_elif_token1] = ACTIONS(4100), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym___cdecl] = ACTIONS(4100), - [anon_sym___clrcall] = ACTIONS(4100), - [anon_sym___stdcall] = ACTIONS(4100), - [anon_sym___fastcall] = ACTIONS(4100), - [anon_sym___thiscall] = ACTIONS(4100), - [anon_sym___vectorcall] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4102), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_if] = ACTIONS(4100), - [anon_sym_switch] = ACTIONS(4100), - [anon_sym_case] = ACTIONS(4100), - [anon_sym_default] = ACTIONS(4100), - [anon_sym_while] = ACTIONS(4100), - [anon_sym_do] = ACTIONS(4100), - [anon_sym_for] = ACTIONS(4100), - [anon_sym_return] = ACTIONS(4100), - [anon_sym_break] = ACTIONS(4100), - [anon_sym_continue] = ACTIONS(4100), - [anon_sym_goto] = ACTIONS(4100), - [anon_sym___try] = ACTIONS(4100), - [anon_sym___leave] = ACTIONS(4100), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4102), - [anon_sym_PLUS_PLUS] = ACTIONS(4102), - [anon_sym_sizeof] = ACTIONS(4100), - [anon_sym___alignof__] = ACTIONS(4100), - [anon_sym___alignof] = ACTIONS(4100), - [anon_sym__alignof] = ACTIONS(4100), - [anon_sym_alignof] = ACTIONS(4100), - [anon_sym__Alignof] = ACTIONS(4100), - [anon_sym_offsetof] = ACTIONS(4100), - [anon_sym__Generic] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), - [anon_sym_asm] = ACTIONS(4100), - [anon_sym___asm__] = ACTIONS(4100), - [anon_sym___asm] = ACTIONS(4100), - [sym_number_literal] = ACTIONS(4102), - [anon_sym_L_SQUOTE] = ACTIONS(4102), - [anon_sym_u_SQUOTE] = ACTIONS(4102), - [anon_sym_U_SQUOTE] = ACTIONS(4102), - [anon_sym_u8_SQUOTE] = ACTIONS(4102), - [anon_sym_SQUOTE] = ACTIONS(4102), - [anon_sym_L_DQUOTE] = ACTIONS(4102), - [anon_sym_u_DQUOTE] = ACTIONS(4102), - [anon_sym_U_DQUOTE] = ACTIONS(4102), - [anon_sym_u8_DQUOTE] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(4102), - [sym_true] = ACTIONS(4100), - [sym_false] = ACTIONS(4100), - [anon_sym_NULL] = ACTIONS(4100), - [anon_sym_nullptr] = ACTIONS(4100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_export] = ACTIONS(4100), - [anon_sym_module] = ACTIONS(4100), - [anon_sym_import] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_try] = ACTIONS(4100), - [anon_sym_delete] = ACTIONS(4100), - [anon_sym_throw] = ACTIONS(4100), - [anon_sym_namespace] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_concept] = ACTIONS(4100), - [anon_sym_co_return] = ACTIONS(4100), - [anon_sym_co_yield] = ACTIONS(4100), - [anon_sym_R_DQUOTE] = ACTIONS(4102), - [anon_sym_LR_DQUOTE] = ACTIONS(4102), - [anon_sym_uR_DQUOTE] = ACTIONS(4102), - [anon_sym_UR_DQUOTE] = ACTIONS(4102), - [anon_sym_u8R_DQUOTE] = ACTIONS(4102), - [anon_sym_co_await] = ACTIONS(4100), - [anon_sym_new] = ACTIONS(4100), - [anon_sym_requires] = ACTIONS(4100), - [anon_sym_CARET_CARET] = ACTIONS(4102), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), - [sym_this] = ACTIONS(4100), - }, - [STATE(444)] = { - [sym_identifier] = ACTIONS(4104), - [aux_sym_preproc_include_token1] = ACTIONS(4104), - [aux_sym_preproc_def_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token2] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), - [aux_sym_preproc_else_token1] = ACTIONS(4104), - [aux_sym_preproc_elif_token1] = ACTIONS(4104), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4104), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4104), - [sym_preproc_directive] = ACTIONS(4104), - [anon_sym_LPAREN2] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym___extension__] = ACTIONS(4104), - [anon_sym_typedef] = ACTIONS(4104), - [anon_sym_virtual] = ACTIONS(4104), - [anon_sym_extern] = ACTIONS(4104), - [anon_sym___attribute__] = ACTIONS(4104), - [anon_sym___attribute] = ACTIONS(4104), - [anon_sym_using] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), - [anon_sym___declspec] = ACTIONS(4104), - [anon_sym___based] = ACTIONS(4104), - [anon_sym___cdecl] = ACTIONS(4104), - [anon_sym___clrcall] = ACTIONS(4104), - [anon_sym___stdcall] = ACTIONS(4104), - [anon_sym___fastcall] = ACTIONS(4104), - [anon_sym___thiscall] = ACTIONS(4104), - [anon_sym___vectorcall] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_signed] = ACTIONS(4104), - [anon_sym_unsigned] = ACTIONS(4104), - [anon_sym_long] = ACTIONS(4104), - [anon_sym_short] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(4104), - [anon_sym_static] = ACTIONS(4104), - [anon_sym_register] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym___inline] = ACTIONS(4104), - [anon_sym___inline__] = ACTIONS(4104), - [anon_sym___forceinline] = ACTIONS(4104), - [anon_sym_thread_local] = ACTIONS(4104), - [anon_sym___thread] = ACTIONS(4104), - [anon_sym_const] = ACTIONS(4104), - [anon_sym_constexpr] = ACTIONS(4104), - [anon_sym_volatile] = ACTIONS(4104), - [anon_sym_restrict] = ACTIONS(4104), - [anon_sym___restrict__] = ACTIONS(4104), - [anon_sym__Atomic] = ACTIONS(4104), - [anon_sym__Noreturn] = ACTIONS(4104), - [anon_sym_noreturn] = ACTIONS(4104), - [anon_sym__Nonnull] = ACTIONS(4104), - [anon_sym_mutable] = ACTIONS(4104), - [anon_sym_constinit] = ACTIONS(4104), - [anon_sym_consteval] = ACTIONS(4104), - [anon_sym_alignas] = ACTIONS(4104), - [anon_sym__Alignas] = ACTIONS(4104), - [sym_primitive_type] = ACTIONS(4104), - [anon_sym_enum] = ACTIONS(4104), - [anon_sym_class] = ACTIONS(4104), - [anon_sym_struct] = ACTIONS(4104), - [anon_sym_union] = ACTIONS(4104), - [anon_sym_if] = ACTIONS(4104), - [anon_sym_switch] = ACTIONS(4104), - [anon_sym_case] = ACTIONS(4104), - [anon_sym_default] = ACTIONS(4104), - [anon_sym_while] = ACTIONS(4104), - [anon_sym_do] = ACTIONS(4104), - [anon_sym_for] = ACTIONS(4104), - [anon_sym_return] = ACTIONS(4104), - [anon_sym_break] = ACTIONS(4104), - [anon_sym_continue] = ACTIONS(4104), - [anon_sym_goto] = ACTIONS(4104), - [anon_sym___try] = ACTIONS(4104), - [anon_sym___leave] = ACTIONS(4104), - [anon_sym_not] = ACTIONS(4104), - [anon_sym_compl] = ACTIONS(4104), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_sizeof] = ACTIONS(4104), - [anon_sym___alignof__] = ACTIONS(4104), - [anon_sym___alignof] = ACTIONS(4104), - [anon_sym__alignof] = ACTIONS(4104), - [anon_sym_alignof] = ACTIONS(4104), - [anon_sym__Alignof] = ACTIONS(4104), - [anon_sym_offsetof] = ACTIONS(4104), - [anon_sym__Generic] = ACTIONS(4104), - [anon_sym_typename] = ACTIONS(4104), - [anon_sym_asm] = ACTIONS(4104), - [anon_sym___asm__] = ACTIONS(4104), - [anon_sym___asm] = ACTIONS(4104), - [sym_number_literal] = ACTIONS(4106), - [anon_sym_L_SQUOTE] = ACTIONS(4106), - [anon_sym_u_SQUOTE] = ACTIONS(4106), - [anon_sym_U_SQUOTE] = ACTIONS(4106), - [anon_sym_u8_SQUOTE] = ACTIONS(4106), - [anon_sym_SQUOTE] = ACTIONS(4106), - [anon_sym_L_DQUOTE] = ACTIONS(4106), - [anon_sym_u_DQUOTE] = ACTIONS(4106), - [anon_sym_U_DQUOTE] = ACTIONS(4106), - [anon_sym_u8_DQUOTE] = ACTIONS(4106), - [anon_sym_DQUOTE] = ACTIONS(4106), - [sym_true] = ACTIONS(4104), - [sym_false] = ACTIONS(4104), - [anon_sym_NULL] = ACTIONS(4104), - [anon_sym_nullptr] = ACTIONS(4104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4104), - [anon_sym_decltype] = ACTIONS(4104), - [anon_sym_explicit] = ACTIONS(4104), - [anon_sym_export] = ACTIONS(4104), - [anon_sym_module] = ACTIONS(4104), - [anon_sym_import] = ACTIONS(4104), - [anon_sym_template] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_try] = ACTIONS(4104), - [anon_sym_delete] = ACTIONS(4104), - [anon_sym_throw] = ACTIONS(4104), - [anon_sym_namespace] = ACTIONS(4104), - [anon_sym_static_assert] = ACTIONS(4104), - [anon_sym_concept] = ACTIONS(4104), - [anon_sym_co_return] = ACTIONS(4104), - [anon_sym_co_yield] = ACTIONS(4104), - [anon_sym_R_DQUOTE] = ACTIONS(4106), - [anon_sym_LR_DQUOTE] = ACTIONS(4106), - [anon_sym_uR_DQUOTE] = ACTIONS(4106), - [anon_sym_UR_DQUOTE] = ACTIONS(4106), - [anon_sym_u8R_DQUOTE] = ACTIONS(4106), - [anon_sym_co_await] = ACTIONS(4104), - [anon_sym_new] = ACTIONS(4104), - [anon_sym_requires] = ACTIONS(4104), - [anon_sym_CARET_CARET] = ACTIONS(4106), - [anon_sym_LBRACK_COLON] = ACTIONS(4106), - [sym_this] = ACTIONS(4104), - }, - [STATE(445)] = { - [sym_identifier] = ACTIONS(4108), - [aux_sym_preproc_include_token1] = ACTIONS(4108), - [aux_sym_preproc_def_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token2] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), - [aux_sym_preproc_else_token1] = ACTIONS(4108), - [aux_sym_preproc_elif_token1] = ACTIONS(4108), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4108), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_LPAREN2] = ACTIONS(4110), - [anon_sym_BANG] = ACTIONS(4110), - [anon_sym_TILDE] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym___extension__] = ACTIONS(4108), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_virtual] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym___attribute__] = ACTIONS(4108), - [anon_sym___attribute] = ACTIONS(4108), - [anon_sym_using] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), - [anon_sym___declspec] = ACTIONS(4108), - [anon_sym___based] = ACTIONS(4108), - [anon_sym___cdecl] = ACTIONS(4108), - [anon_sym___clrcall] = ACTIONS(4108), - [anon_sym___stdcall] = ACTIONS(4108), - [anon_sym___fastcall] = ACTIONS(4108), - [anon_sym___thiscall] = ACTIONS(4108), - [anon_sym___vectorcall] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_signed] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4108), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym___inline] = ACTIONS(4108), - [anon_sym___inline__] = ACTIONS(4108), - [anon_sym___forceinline] = ACTIONS(4108), - [anon_sym_thread_local] = ACTIONS(4108), - [anon_sym___thread] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym___restrict__] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym__Noreturn] = ACTIONS(4108), - [anon_sym_noreturn] = ACTIONS(4108), - [anon_sym__Nonnull] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_constinit] = ACTIONS(4108), - [anon_sym_consteval] = ACTIONS(4108), - [anon_sym_alignas] = ACTIONS(4108), - [anon_sym__Alignas] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_class] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(4108), - [anon_sym_case] = ACTIONS(4108), - [anon_sym_default] = ACTIONS(4108), - [anon_sym_while] = ACTIONS(4108), - [anon_sym_do] = ACTIONS(4108), - [anon_sym_for] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_goto] = ACTIONS(4108), - [anon_sym___try] = ACTIONS(4108), - [anon_sym___leave] = ACTIONS(4108), - [anon_sym_not] = ACTIONS(4108), - [anon_sym_compl] = ACTIONS(4108), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_sizeof] = ACTIONS(4108), - [anon_sym___alignof__] = ACTIONS(4108), - [anon_sym___alignof] = ACTIONS(4108), - [anon_sym__alignof] = ACTIONS(4108), - [anon_sym_alignof] = ACTIONS(4108), - [anon_sym__Alignof] = ACTIONS(4108), - [anon_sym_offsetof] = ACTIONS(4108), - [anon_sym__Generic] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [anon_sym_asm] = ACTIONS(4108), - [anon_sym___asm__] = ACTIONS(4108), - [anon_sym___asm] = ACTIONS(4108), - [sym_number_literal] = ACTIONS(4110), - [anon_sym_L_SQUOTE] = ACTIONS(4110), - [anon_sym_u_SQUOTE] = ACTIONS(4110), - [anon_sym_U_SQUOTE] = ACTIONS(4110), - [anon_sym_u8_SQUOTE] = ACTIONS(4110), - [anon_sym_SQUOTE] = ACTIONS(4110), - [anon_sym_L_DQUOTE] = ACTIONS(4110), - [anon_sym_u_DQUOTE] = ACTIONS(4110), - [anon_sym_U_DQUOTE] = ACTIONS(4110), - [anon_sym_u8_DQUOTE] = ACTIONS(4110), - [anon_sym_DQUOTE] = ACTIONS(4110), - [sym_true] = ACTIONS(4108), - [sym_false] = ACTIONS(4108), - [anon_sym_NULL] = ACTIONS(4108), - [anon_sym_nullptr] = ACTIONS(4108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4108), - [anon_sym_decltype] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_export] = ACTIONS(4108), - [anon_sym_module] = ACTIONS(4108), - [anon_sym_import] = ACTIONS(4108), - [anon_sym_template] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_try] = ACTIONS(4108), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_throw] = ACTIONS(4108), - [anon_sym_namespace] = ACTIONS(4108), - [anon_sym_static_assert] = ACTIONS(4108), - [anon_sym_concept] = ACTIONS(4108), - [anon_sym_co_return] = ACTIONS(4108), - [anon_sym_co_yield] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(4110), - [anon_sym_LR_DQUOTE] = ACTIONS(4110), - [anon_sym_uR_DQUOTE] = ACTIONS(4110), - [anon_sym_UR_DQUOTE] = ACTIONS(4110), - [anon_sym_u8R_DQUOTE] = ACTIONS(4110), - [anon_sym_co_await] = ACTIONS(4108), - [anon_sym_new] = ACTIONS(4108), - [anon_sym_requires] = ACTIONS(4108), - [anon_sym_CARET_CARET] = ACTIONS(4110), - [anon_sym_LBRACK_COLON] = ACTIONS(4110), - [sym_this] = ACTIONS(4108), - }, - [STATE(446)] = { - [sym_identifier] = ACTIONS(4112), - [aux_sym_preproc_include_token1] = ACTIONS(4112), - [aux_sym_preproc_def_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token2] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), - [aux_sym_preproc_else_token1] = ACTIONS(4112), - [aux_sym_preproc_elif_token1] = ACTIONS(4112), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4112), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4112), - [sym_preproc_directive] = ACTIONS(4112), - [anon_sym_LPAREN2] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_TILDE] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym___extension__] = ACTIONS(4112), - [anon_sym_typedef] = ACTIONS(4112), - [anon_sym_virtual] = ACTIONS(4112), - [anon_sym_extern] = ACTIONS(4112), - [anon_sym___attribute__] = ACTIONS(4112), - [anon_sym___attribute] = ACTIONS(4112), - [anon_sym_using] = ACTIONS(4112), - [anon_sym_COLON_COLON] = ACTIONS(4114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), - [anon_sym___declspec] = ACTIONS(4112), - [anon_sym___based] = ACTIONS(4112), - [anon_sym___cdecl] = ACTIONS(4112), - [anon_sym___clrcall] = ACTIONS(4112), - [anon_sym___stdcall] = ACTIONS(4112), - [anon_sym___fastcall] = ACTIONS(4112), - [anon_sym___thiscall] = ACTIONS(4112), - [anon_sym___vectorcall] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_signed] = ACTIONS(4112), - [anon_sym_unsigned] = ACTIONS(4112), - [anon_sym_long] = ACTIONS(4112), - [anon_sym_short] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_static] = ACTIONS(4112), - [anon_sym_register] = ACTIONS(4112), - [anon_sym_inline] = ACTIONS(4112), - [anon_sym___inline] = ACTIONS(4112), - [anon_sym___inline__] = ACTIONS(4112), - [anon_sym___forceinline] = ACTIONS(4112), - [anon_sym_thread_local] = ACTIONS(4112), - [anon_sym___thread] = ACTIONS(4112), - [anon_sym_const] = ACTIONS(4112), - [anon_sym_constexpr] = ACTIONS(4112), - [anon_sym_volatile] = ACTIONS(4112), - [anon_sym_restrict] = ACTIONS(4112), - [anon_sym___restrict__] = ACTIONS(4112), - [anon_sym__Atomic] = ACTIONS(4112), - [anon_sym__Noreturn] = ACTIONS(4112), - [anon_sym_noreturn] = ACTIONS(4112), - [anon_sym__Nonnull] = ACTIONS(4112), - [anon_sym_mutable] = ACTIONS(4112), - [anon_sym_constinit] = ACTIONS(4112), - [anon_sym_consteval] = ACTIONS(4112), - [anon_sym_alignas] = ACTIONS(4112), - [anon_sym__Alignas] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(4112), - [anon_sym_enum] = ACTIONS(4112), - [anon_sym_class] = ACTIONS(4112), - [anon_sym_struct] = ACTIONS(4112), - [anon_sym_union] = ACTIONS(4112), - [anon_sym_if] = ACTIONS(4112), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_case] = ACTIONS(4112), - [anon_sym_default] = ACTIONS(4112), - [anon_sym_while] = ACTIONS(4112), - [anon_sym_do] = ACTIONS(4112), - [anon_sym_for] = ACTIONS(4112), - [anon_sym_return] = ACTIONS(4112), - [anon_sym_break] = ACTIONS(4112), - [anon_sym_continue] = ACTIONS(4112), - [anon_sym_goto] = ACTIONS(4112), - [anon_sym___try] = ACTIONS(4112), - [anon_sym___leave] = ACTIONS(4112), - [anon_sym_not] = ACTIONS(4112), - [anon_sym_compl] = ACTIONS(4112), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_PLUS_PLUS] = ACTIONS(4114), - [anon_sym_sizeof] = ACTIONS(4112), - [anon_sym___alignof__] = ACTIONS(4112), - [anon_sym___alignof] = ACTIONS(4112), - [anon_sym__alignof] = ACTIONS(4112), - [anon_sym_alignof] = ACTIONS(4112), - [anon_sym__Alignof] = ACTIONS(4112), - [anon_sym_offsetof] = ACTIONS(4112), - [anon_sym__Generic] = ACTIONS(4112), - [anon_sym_typename] = ACTIONS(4112), - [anon_sym_asm] = ACTIONS(4112), - [anon_sym___asm__] = ACTIONS(4112), - [anon_sym___asm] = ACTIONS(4112), - [sym_number_literal] = ACTIONS(4114), - [anon_sym_L_SQUOTE] = ACTIONS(4114), - [anon_sym_u_SQUOTE] = ACTIONS(4114), - [anon_sym_U_SQUOTE] = ACTIONS(4114), - [anon_sym_u8_SQUOTE] = ACTIONS(4114), - [anon_sym_SQUOTE] = ACTIONS(4114), - [anon_sym_L_DQUOTE] = ACTIONS(4114), - [anon_sym_u_DQUOTE] = ACTIONS(4114), - [anon_sym_U_DQUOTE] = ACTIONS(4114), - [anon_sym_u8_DQUOTE] = ACTIONS(4114), - [anon_sym_DQUOTE] = ACTIONS(4114), - [sym_true] = ACTIONS(4112), - [sym_false] = ACTIONS(4112), - [anon_sym_NULL] = ACTIONS(4112), - [anon_sym_nullptr] = ACTIONS(4112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4112), - [anon_sym_decltype] = ACTIONS(4112), - [anon_sym_explicit] = ACTIONS(4112), - [anon_sym_export] = ACTIONS(4112), - [anon_sym_module] = ACTIONS(4112), - [anon_sym_import] = ACTIONS(4112), - [anon_sym_template] = ACTIONS(4112), - [anon_sym_operator] = ACTIONS(4112), - [anon_sym_try] = ACTIONS(4112), - [anon_sym_delete] = ACTIONS(4112), - [anon_sym_throw] = ACTIONS(4112), - [anon_sym_namespace] = ACTIONS(4112), - [anon_sym_static_assert] = ACTIONS(4112), - [anon_sym_concept] = ACTIONS(4112), - [anon_sym_co_return] = ACTIONS(4112), - [anon_sym_co_yield] = ACTIONS(4112), - [anon_sym_R_DQUOTE] = ACTIONS(4114), - [anon_sym_LR_DQUOTE] = ACTIONS(4114), - [anon_sym_uR_DQUOTE] = ACTIONS(4114), - [anon_sym_UR_DQUOTE] = ACTIONS(4114), - [anon_sym_u8R_DQUOTE] = ACTIONS(4114), - [anon_sym_co_await] = ACTIONS(4112), - [anon_sym_new] = ACTIONS(4112), - [anon_sym_requires] = ACTIONS(4112), - [anon_sym_CARET_CARET] = ACTIONS(4114), - [anon_sym_LBRACK_COLON] = ACTIONS(4114), - [sym_this] = ACTIONS(4112), - }, [STATE(447)] = { - [sym_identifier] = ACTIONS(4116), - [aux_sym_preproc_include_token1] = ACTIONS(4116), - [aux_sym_preproc_def_token1] = ACTIONS(4116), - [aux_sym_preproc_if_token1] = ACTIONS(4116), - [aux_sym_preproc_if_token2] = ACTIONS(4116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4116), - [aux_sym_preproc_else_token1] = ACTIONS(4116), - [aux_sym_preproc_elif_token1] = ACTIONS(4116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4116), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4116), - [sym_preproc_directive] = ACTIONS(4116), - [anon_sym_LPAREN2] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4118), - [anon_sym_TILDE] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_AMP] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym___extension__] = ACTIONS(4116), - [anon_sym_typedef] = ACTIONS(4116), - [anon_sym_virtual] = ACTIONS(4116), - [anon_sym_extern] = ACTIONS(4116), - [anon_sym___attribute__] = ACTIONS(4116), - [anon_sym___attribute] = ACTIONS(4116), - [anon_sym_using] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4118), - [anon_sym___declspec] = ACTIONS(4116), - [anon_sym___based] = ACTIONS(4116), - [anon_sym___cdecl] = ACTIONS(4116), - [anon_sym___clrcall] = ACTIONS(4116), - [anon_sym___stdcall] = ACTIONS(4116), - [anon_sym___fastcall] = ACTIONS(4116), - [anon_sym___thiscall] = ACTIONS(4116), - [anon_sym___vectorcall] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_signed] = ACTIONS(4116), - [anon_sym_unsigned] = ACTIONS(4116), - [anon_sym_long] = ACTIONS(4116), - [anon_sym_short] = ACTIONS(4116), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_static] = ACTIONS(4116), - [anon_sym_register] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym___inline] = ACTIONS(4116), - [anon_sym___inline__] = ACTIONS(4116), - [anon_sym___forceinline] = ACTIONS(4116), - [anon_sym_thread_local] = ACTIONS(4116), - [anon_sym___thread] = ACTIONS(4116), - [anon_sym_const] = ACTIONS(4116), - [anon_sym_constexpr] = ACTIONS(4116), - [anon_sym_volatile] = ACTIONS(4116), - [anon_sym_restrict] = ACTIONS(4116), - [anon_sym___restrict__] = ACTIONS(4116), - [anon_sym__Atomic] = ACTIONS(4116), - [anon_sym__Noreturn] = ACTIONS(4116), - [anon_sym_noreturn] = ACTIONS(4116), - [anon_sym__Nonnull] = ACTIONS(4116), - [anon_sym_mutable] = ACTIONS(4116), - [anon_sym_constinit] = ACTIONS(4116), - [anon_sym_consteval] = ACTIONS(4116), - [anon_sym_alignas] = ACTIONS(4116), - [anon_sym__Alignas] = ACTIONS(4116), - [sym_primitive_type] = ACTIONS(4116), - [anon_sym_enum] = ACTIONS(4116), - [anon_sym_class] = ACTIONS(4116), - [anon_sym_struct] = ACTIONS(4116), - [anon_sym_union] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_switch] = ACTIONS(4116), - [anon_sym_case] = ACTIONS(4116), - [anon_sym_default] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_do] = ACTIONS(4116), - [anon_sym_for] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_goto] = ACTIONS(4116), - [anon_sym___try] = ACTIONS(4116), - [anon_sym___leave] = ACTIONS(4116), - [anon_sym_not] = ACTIONS(4116), - [anon_sym_compl] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_sizeof] = ACTIONS(4116), - [anon_sym___alignof__] = ACTIONS(4116), - [anon_sym___alignof] = ACTIONS(4116), - [anon_sym__alignof] = ACTIONS(4116), - [anon_sym_alignof] = ACTIONS(4116), - [anon_sym__Alignof] = ACTIONS(4116), - [anon_sym_offsetof] = ACTIONS(4116), - [anon_sym__Generic] = ACTIONS(4116), - [anon_sym_typename] = ACTIONS(4116), - [anon_sym_asm] = ACTIONS(4116), - [anon_sym___asm__] = ACTIONS(4116), - [anon_sym___asm] = ACTIONS(4116), - [sym_number_literal] = ACTIONS(4118), - [anon_sym_L_SQUOTE] = ACTIONS(4118), - [anon_sym_u_SQUOTE] = ACTIONS(4118), - [anon_sym_U_SQUOTE] = ACTIONS(4118), - [anon_sym_u8_SQUOTE] = ACTIONS(4118), - [anon_sym_SQUOTE] = ACTIONS(4118), - [anon_sym_L_DQUOTE] = ACTIONS(4118), - [anon_sym_u_DQUOTE] = ACTIONS(4118), - [anon_sym_U_DQUOTE] = ACTIONS(4118), - [anon_sym_u8_DQUOTE] = ACTIONS(4118), - [anon_sym_DQUOTE] = ACTIONS(4118), - [sym_true] = ACTIONS(4116), - [sym_false] = ACTIONS(4116), - [anon_sym_NULL] = ACTIONS(4116), - [anon_sym_nullptr] = ACTIONS(4116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4116), - [anon_sym_decltype] = ACTIONS(4116), - [anon_sym_explicit] = ACTIONS(4116), - [anon_sym_export] = ACTIONS(4116), - [anon_sym_module] = ACTIONS(4116), - [anon_sym_import] = ACTIONS(4116), - [anon_sym_template] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_delete] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_namespace] = ACTIONS(4116), - [anon_sym_static_assert] = ACTIONS(4116), - [anon_sym_concept] = ACTIONS(4116), - [anon_sym_co_return] = ACTIONS(4116), - [anon_sym_co_yield] = ACTIONS(4116), - [anon_sym_R_DQUOTE] = ACTIONS(4118), - [anon_sym_LR_DQUOTE] = ACTIONS(4118), - [anon_sym_uR_DQUOTE] = ACTIONS(4118), - [anon_sym_UR_DQUOTE] = ACTIONS(4118), - [anon_sym_u8R_DQUOTE] = ACTIONS(4118), - [anon_sym_co_await] = ACTIONS(4116), - [anon_sym_new] = ACTIONS(4116), - [anon_sym_requires] = ACTIONS(4116), - [anon_sym_CARET_CARET] = ACTIONS(4118), - [anon_sym_LBRACK_COLON] = ACTIONS(4118), - [sym_this] = ACTIONS(4116), + [sym_catch_clause] = STATE(455), + [aux_sym_constructor_try_statement_repeat1] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3170), + [aux_sym_preproc_include_token1] = ACTIONS(3170), + [aux_sym_preproc_def_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token1] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3170), + [sym_preproc_directive] = ACTIONS(3170), + [anon_sym_LPAREN2] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3170), + [anon_sym_virtual] = ACTIONS(3170), + [anon_sym_extern] = ACTIONS(3170), + [anon_sym___attribute__] = ACTIONS(3170), + [anon_sym___attribute] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(3172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3172), + [anon_sym___declspec] = ACTIONS(3170), + [anon_sym___based] = ACTIONS(3170), + [anon_sym___cdecl] = ACTIONS(3170), + [anon_sym___clrcall] = ACTIONS(3170), + [anon_sym___stdcall] = ACTIONS(3170), + [anon_sym___fastcall] = ACTIONS(3170), + [anon_sym___thiscall] = ACTIONS(3170), + [anon_sym___vectorcall] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3170), + [anon_sym_unsigned] = ACTIONS(3170), + [anon_sym_long] = ACTIONS(3170), + [anon_sym_short] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_register] = ACTIONS(3170), + [anon_sym_inline] = ACTIONS(3170), + [anon_sym___inline] = ACTIONS(3170), + [anon_sym___inline__] = ACTIONS(3170), + [anon_sym___forceinline] = ACTIONS(3170), + [anon_sym_thread_local] = ACTIONS(3170), + [anon_sym___thread] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_constexpr] = ACTIONS(3170), + [anon_sym_volatile] = ACTIONS(3170), + [anon_sym_restrict] = ACTIONS(3170), + [anon_sym___restrict__] = ACTIONS(3170), + [anon_sym__Atomic] = ACTIONS(3170), + [anon_sym__Noreturn] = ACTIONS(3170), + [anon_sym_noreturn] = ACTIONS(3170), + [anon_sym__Nonnull] = ACTIONS(3170), + [anon_sym_mutable] = ACTIONS(3170), + [anon_sym_constinit] = ACTIONS(3170), + [anon_sym_consteval] = ACTIONS(3170), + [anon_sym_alignas] = ACTIONS(3170), + [anon_sym__Alignas] = ACTIONS(3170), + [sym_primitive_type] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_case] = ACTIONS(3170), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_goto] = ACTIONS(3170), + [anon_sym___try] = ACTIONS(3170), + [anon_sym___leave] = ACTIONS(3170), + [anon_sym_not] = ACTIONS(3170), + [anon_sym_compl] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_sizeof] = ACTIONS(3170), + [anon_sym___alignof__] = ACTIONS(3170), + [anon_sym___alignof] = ACTIONS(3170), + [anon_sym__alignof] = ACTIONS(3170), + [anon_sym_alignof] = ACTIONS(3170), + [anon_sym__Alignof] = ACTIONS(3170), + [anon_sym_offsetof] = ACTIONS(3170), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_typename] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3170), + [anon_sym___asm__] = ACTIONS(3170), + [anon_sym___asm] = ACTIONS(3170), + [sym_number_literal] = ACTIONS(3172), + [anon_sym_L_SQUOTE] = ACTIONS(3172), + [anon_sym_u_SQUOTE] = ACTIONS(3172), + [anon_sym_U_SQUOTE] = ACTIONS(3172), + [anon_sym_u8_SQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_L_DQUOTE] = ACTIONS(3172), + [anon_sym_u_DQUOTE] = ACTIONS(3172), + [anon_sym_U_DQUOTE] = ACTIONS(3172), + [anon_sym_u8_DQUOTE] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [anon_sym_NULL] = ACTIONS(3170), + [anon_sym_nullptr] = ACTIONS(3170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3170), + [anon_sym_decltype] = ACTIONS(3170), + [anon_sym_explicit] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_template] = ACTIONS(3170), + [anon_sym_operator] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_static_assert] = ACTIONS(3170), + [anon_sym_concept] = ACTIONS(3170), + [anon_sym_co_return] = ACTIONS(3170), + [anon_sym_co_yield] = ACTIONS(3170), + [anon_sym_catch] = ACTIONS(4100), + [anon_sym_R_DQUOTE] = ACTIONS(3172), + [anon_sym_LR_DQUOTE] = ACTIONS(3172), + [anon_sym_uR_DQUOTE] = ACTIONS(3172), + [anon_sym_UR_DQUOTE] = ACTIONS(3172), + [anon_sym_u8R_DQUOTE] = ACTIONS(3172), + [anon_sym_co_await] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_requires] = ACTIONS(3170), + [anon_sym_CARET_CARET] = ACTIONS(3172), + [anon_sym_LBRACK_COLON] = ACTIONS(3172), + [sym_this] = ACTIONS(3170), }, [STATE(448)] = { - [sym_identifier] = ACTIONS(4120), - [aux_sym_preproc_include_token1] = ACTIONS(4120), - [aux_sym_preproc_def_token1] = ACTIONS(4120), - [aux_sym_preproc_if_token1] = ACTIONS(4120), - [aux_sym_preproc_if_token2] = ACTIONS(4120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4120), - [aux_sym_preproc_else_token1] = ACTIONS(4120), - [aux_sym_preproc_elif_token1] = ACTIONS(4120), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4120), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4120), - [sym_preproc_directive] = ACTIONS(4120), - [anon_sym_LPAREN2] = ACTIONS(4122), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_TILDE] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_AMP] = ACTIONS(4120), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym___extension__] = ACTIONS(4120), - [anon_sym_typedef] = ACTIONS(4120), - [anon_sym_virtual] = ACTIONS(4120), - [anon_sym_extern] = ACTIONS(4120), - [anon_sym___attribute__] = ACTIONS(4120), - [anon_sym___attribute] = ACTIONS(4120), - [anon_sym_using] = ACTIONS(4120), - [anon_sym_COLON_COLON] = ACTIONS(4122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4122), - [anon_sym___declspec] = ACTIONS(4120), - [anon_sym___based] = ACTIONS(4120), - [anon_sym___cdecl] = ACTIONS(4120), - [anon_sym___clrcall] = ACTIONS(4120), - [anon_sym___stdcall] = ACTIONS(4120), - [anon_sym___fastcall] = ACTIONS(4120), - [anon_sym___thiscall] = ACTIONS(4120), - [anon_sym___vectorcall] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_signed] = ACTIONS(4120), - [anon_sym_unsigned] = ACTIONS(4120), - [anon_sym_long] = ACTIONS(4120), - [anon_sym_short] = ACTIONS(4120), - [anon_sym_LBRACK] = ACTIONS(4120), - [anon_sym_static] = ACTIONS(4120), - [anon_sym_register] = ACTIONS(4120), - [anon_sym_inline] = ACTIONS(4120), - [anon_sym___inline] = ACTIONS(4120), - [anon_sym___inline__] = ACTIONS(4120), - [anon_sym___forceinline] = ACTIONS(4120), - [anon_sym_thread_local] = ACTIONS(4120), - [anon_sym___thread] = ACTIONS(4120), - [anon_sym_const] = ACTIONS(4120), - [anon_sym_constexpr] = ACTIONS(4120), - [anon_sym_volatile] = ACTIONS(4120), - [anon_sym_restrict] = ACTIONS(4120), - [anon_sym___restrict__] = ACTIONS(4120), - [anon_sym__Atomic] = ACTIONS(4120), - [anon_sym__Noreturn] = ACTIONS(4120), - [anon_sym_noreturn] = ACTIONS(4120), - [anon_sym__Nonnull] = ACTIONS(4120), - [anon_sym_mutable] = ACTIONS(4120), - [anon_sym_constinit] = ACTIONS(4120), - [anon_sym_consteval] = ACTIONS(4120), - [anon_sym_alignas] = ACTIONS(4120), - [anon_sym__Alignas] = ACTIONS(4120), - [sym_primitive_type] = ACTIONS(4120), - [anon_sym_enum] = ACTIONS(4120), - [anon_sym_class] = ACTIONS(4120), - [anon_sym_struct] = ACTIONS(4120), - [anon_sym_union] = ACTIONS(4120), - [anon_sym_if] = ACTIONS(4120), - [anon_sym_switch] = ACTIONS(4120), - [anon_sym_case] = ACTIONS(4120), - [anon_sym_default] = ACTIONS(4120), - [anon_sym_while] = ACTIONS(4120), - [anon_sym_do] = ACTIONS(4120), - [anon_sym_for] = ACTIONS(4120), - [anon_sym_return] = ACTIONS(4120), - [anon_sym_break] = ACTIONS(4120), - [anon_sym_continue] = ACTIONS(4120), - [anon_sym_goto] = ACTIONS(4120), - [anon_sym___try] = ACTIONS(4120), - [anon_sym___leave] = ACTIONS(4120), - [anon_sym_not] = ACTIONS(4120), - [anon_sym_compl] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_sizeof] = ACTIONS(4120), - [anon_sym___alignof__] = ACTIONS(4120), - [anon_sym___alignof] = ACTIONS(4120), - [anon_sym__alignof] = ACTIONS(4120), - [anon_sym_alignof] = ACTIONS(4120), - [anon_sym__Alignof] = ACTIONS(4120), - [anon_sym_offsetof] = ACTIONS(4120), - [anon_sym__Generic] = ACTIONS(4120), - [anon_sym_typename] = ACTIONS(4120), - [anon_sym_asm] = ACTIONS(4120), - [anon_sym___asm__] = ACTIONS(4120), - [anon_sym___asm] = ACTIONS(4120), - [sym_number_literal] = ACTIONS(4122), - [anon_sym_L_SQUOTE] = ACTIONS(4122), - [anon_sym_u_SQUOTE] = ACTIONS(4122), - [anon_sym_U_SQUOTE] = ACTIONS(4122), - [anon_sym_u8_SQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4122), - [anon_sym_L_DQUOTE] = ACTIONS(4122), - [anon_sym_u_DQUOTE] = ACTIONS(4122), - [anon_sym_U_DQUOTE] = ACTIONS(4122), - [anon_sym_u8_DQUOTE] = ACTIONS(4122), - [anon_sym_DQUOTE] = ACTIONS(4122), - [sym_true] = ACTIONS(4120), - [sym_false] = ACTIONS(4120), - [anon_sym_NULL] = ACTIONS(4120), - [anon_sym_nullptr] = ACTIONS(4120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4120), - [anon_sym_decltype] = ACTIONS(4120), - [anon_sym_explicit] = ACTIONS(4120), - [anon_sym_export] = ACTIONS(4120), - [anon_sym_module] = ACTIONS(4120), - [anon_sym_import] = ACTIONS(4120), - [anon_sym_template] = ACTIONS(4120), - [anon_sym_operator] = ACTIONS(4120), - [anon_sym_try] = ACTIONS(4120), - [anon_sym_delete] = ACTIONS(4120), - [anon_sym_throw] = ACTIONS(4120), - [anon_sym_namespace] = ACTIONS(4120), - [anon_sym_static_assert] = ACTIONS(4120), - [anon_sym_concept] = ACTIONS(4120), - [anon_sym_co_return] = ACTIONS(4120), - [anon_sym_co_yield] = ACTIONS(4120), - [anon_sym_R_DQUOTE] = ACTIONS(4122), - [anon_sym_LR_DQUOTE] = ACTIONS(4122), - [anon_sym_uR_DQUOTE] = ACTIONS(4122), - [anon_sym_UR_DQUOTE] = ACTIONS(4122), - [anon_sym_u8R_DQUOTE] = ACTIONS(4122), - [anon_sym_co_await] = ACTIONS(4120), - [anon_sym_new] = ACTIONS(4120), - [anon_sym_requires] = ACTIONS(4120), - [anon_sym_CARET_CARET] = ACTIONS(4122), - [anon_sym_LBRACK_COLON] = ACTIONS(4122), - [sym_this] = ACTIONS(4120), + [sym_identifier] = ACTIONS(4102), + [aux_sym_preproc_include_token1] = ACTIONS(4102), + [aux_sym_preproc_def_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token2] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4102), + [aux_sym_preproc_else_token1] = ACTIONS(4102), + [aux_sym_preproc_elif_token1] = ACTIONS(4102), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4102), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4102), + [sym_preproc_directive] = ACTIONS(4102), + [anon_sym_LPAREN2] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_TILDE] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym___extension__] = ACTIONS(4102), + [anon_sym_typedef] = ACTIONS(4102), + [anon_sym_virtual] = ACTIONS(4102), + [anon_sym_extern] = ACTIONS(4102), + [anon_sym___attribute__] = ACTIONS(4102), + [anon_sym___attribute] = ACTIONS(4102), + [anon_sym_using] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4104), + [anon_sym___declspec] = ACTIONS(4102), + [anon_sym___based] = ACTIONS(4102), + [anon_sym___cdecl] = ACTIONS(4102), + [anon_sym___clrcall] = ACTIONS(4102), + [anon_sym___stdcall] = ACTIONS(4102), + [anon_sym___fastcall] = ACTIONS(4102), + [anon_sym___thiscall] = ACTIONS(4102), + [anon_sym___vectorcall] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_signed] = ACTIONS(4102), + [anon_sym_unsigned] = ACTIONS(4102), + [anon_sym_long] = ACTIONS(4102), + [anon_sym_short] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_static] = ACTIONS(4102), + [anon_sym_register] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym___inline] = ACTIONS(4102), + [anon_sym___inline__] = ACTIONS(4102), + [anon_sym___forceinline] = ACTIONS(4102), + [anon_sym_thread_local] = ACTIONS(4102), + [anon_sym___thread] = ACTIONS(4102), + [anon_sym_const] = ACTIONS(4102), + [anon_sym_constexpr] = ACTIONS(4102), + [anon_sym_volatile] = ACTIONS(4102), + [anon_sym_restrict] = ACTIONS(4102), + [anon_sym___restrict__] = ACTIONS(4102), + [anon_sym__Atomic] = ACTIONS(4102), + [anon_sym__Noreturn] = ACTIONS(4102), + [anon_sym_noreturn] = ACTIONS(4102), + [anon_sym__Nonnull] = ACTIONS(4102), + [anon_sym_mutable] = ACTIONS(4102), + [anon_sym_constinit] = ACTIONS(4102), + [anon_sym_consteval] = ACTIONS(4102), + [anon_sym_alignas] = ACTIONS(4102), + [anon_sym__Alignas] = ACTIONS(4102), + [sym_primitive_type] = ACTIONS(4102), + [anon_sym_enum] = ACTIONS(4102), + [anon_sym_class] = ACTIONS(4102), + [anon_sym_struct] = ACTIONS(4102), + [anon_sym_union] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_switch] = ACTIONS(4102), + [anon_sym_case] = ACTIONS(4102), + [anon_sym_default] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_do] = ACTIONS(4102), + [anon_sym_for] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_goto] = ACTIONS(4102), + [anon_sym___try] = ACTIONS(4102), + [anon_sym___leave] = ACTIONS(4102), + [anon_sym_not] = ACTIONS(4102), + [anon_sym_compl] = ACTIONS(4102), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_sizeof] = ACTIONS(4102), + [anon_sym___alignof__] = ACTIONS(4102), + [anon_sym___alignof] = ACTIONS(4102), + [anon_sym__alignof] = ACTIONS(4102), + [anon_sym_alignof] = ACTIONS(4102), + [anon_sym__Alignof] = ACTIONS(4102), + [anon_sym_offsetof] = ACTIONS(4102), + [anon_sym__Generic] = ACTIONS(4102), + [anon_sym_typename] = ACTIONS(4102), + [anon_sym_asm] = ACTIONS(4102), + [anon_sym___asm__] = ACTIONS(4102), + [anon_sym___asm] = ACTIONS(4102), + [sym_number_literal] = ACTIONS(4104), + [anon_sym_L_SQUOTE] = ACTIONS(4104), + [anon_sym_u_SQUOTE] = ACTIONS(4104), + [anon_sym_U_SQUOTE] = ACTIONS(4104), + [anon_sym_u8_SQUOTE] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4104), + [anon_sym_L_DQUOTE] = ACTIONS(4104), + [anon_sym_u_DQUOTE] = ACTIONS(4104), + [anon_sym_U_DQUOTE] = ACTIONS(4104), + [anon_sym_u8_DQUOTE] = ACTIONS(4104), + [anon_sym_DQUOTE] = ACTIONS(4104), + [sym_true] = ACTIONS(4102), + [sym_false] = ACTIONS(4102), + [anon_sym_NULL] = ACTIONS(4102), + [anon_sym_nullptr] = ACTIONS(4102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4102), + [anon_sym_decltype] = ACTIONS(4102), + [anon_sym_explicit] = ACTIONS(4102), + [anon_sym_export] = ACTIONS(4102), + [anon_sym_module] = ACTIONS(4102), + [anon_sym_import] = ACTIONS(4102), + [anon_sym_template] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_delete] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_namespace] = ACTIONS(4102), + [anon_sym_static_assert] = ACTIONS(4102), + [anon_sym_concept] = ACTIONS(4102), + [anon_sym_co_return] = ACTIONS(4102), + [anon_sym_co_yield] = ACTIONS(4102), + [anon_sym_R_DQUOTE] = ACTIONS(4104), + [anon_sym_LR_DQUOTE] = ACTIONS(4104), + [anon_sym_uR_DQUOTE] = ACTIONS(4104), + [anon_sym_UR_DQUOTE] = ACTIONS(4104), + [anon_sym_u8R_DQUOTE] = ACTIONS(4104), + [anon_sym_co_await] = ACTIONS(4102), + [anon_sym_new] = ACTIONS(4102), + [anon_sym_requires] = ACTIONS(4102), + [anon_sym_CARET_CARET] = ACTIONS(4104), + [anon_sym_LBRACK_COLON] = ACTIONS(4104), + [sym_this] = ACTIONS(4102), }, [STATE(449)] = { - [sym_identifier] = ACTIONS(4124), - [aux_sym_preproc_include_token1] = ACTIONS(4124), - [aux_sym_preproc_def_token1] = ACTIONS(4124), - [aux_sym_preproc_if_token1] = ACTIONS(4124), - [aux_sym_preproc_if_token2] = ACTIONS(4124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4124), - [aux_sym_preproc_else_token1] = ACTIONS(4124), - [aux_sym_preproc_elif_token1] = ACTIONS(4124), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4124), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4124), - [sym_preproc_directive] = ACTIONS(4124), - [anon_sym_LPAREN2] = ACTIONS(4126), - [anon_sym_BANG] = ACTIONS(4126), - [anon_sym_TILDE] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_SEMI] = ACTIONS(4126), - [anon_sym___extension__] = ACTIONS(4124), - [anon_sym_typedef] = ACTIONS(4124), - [anon_sym_virtual] = ACTIONS(4124), - [anon_sym_extern] = ACTIONS(4124), - [anon_sym___attribute__] = ACTIONS(4124), - [anon_sym___attribute] = ACTIONS(4124), - [anon_sym_using] = ACTIONS(4124), - [anon_sym_COLON_COLON] = ACTIONS(4126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4126), - [anon_sym___declspec] = ACTIONS(4124), - [anon_sym___based] = ACTIONS(4124), - [anon_sym___cdecl] = ACTIONS(4124), - [anon_sym___clrcall] = ACTIONS(4124), - [anon_sym___stdcall] = ACTIONS(4124), - [anon_sym___fastcall] = ACTIONS(4124), - [anon_sym___thiscall] = ACTIONS(4124), - [anon_sym___vectorcall] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_signed] = ACTIONS(4124), - [anon_sym_unsigned] = ACTIONS(4124), - [anon_sym_long] = ACTIONS(4124), - [anon_sym_short] = ACTIONS(4124), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_static] = ACTIONS(4124), - [anon_sym_register] = ACTIONS(4124), - [anon_sym_inline] = ACTIONS(4124), - [anon_sym___inline] = ACTIONS(4124), - [anon_sym___inline__] = ACTIONS(4124), - [anon_sym___forceinline] = ACTIONS(4124), - [anon_sym_thread_local] = ACTIONS(4124), - [anon_sym___thread] = ACTIONS(4124), - [anon_sym_const] = ACTIONS(4124), - [anon_sym_constexpr] = ACTIONS(4124), - [anon_sym_volatile] = ACTIONS(4124), - [anon_sym_restrict] = ACTIONS(4124), - [anon_sym___restrict__] = ACTIONS(4124), - [anon_sym__Atomic] = ACTIONS(4124), - [anon_sym__Noreturn] = ACTIONS(4124), - [anon_sym_noreturn] = ACTIONS(4124), - [anon_sym__Nonnull] = ACTIONS(4124), - [anon_sym_mutable] = ACTIONS(4124), - [anon_sym_constinit] = ACTIONS(4124), - [anon_sym_consteval] = ACTIONS(4124), - [anon_sym_alignas] = ACTIONS(4124), - [anon_sym__Alignas] = ACTIONS(4124), - [sym_primitive_type] = ACTIONS(4124), - [anon_sym_enum] = ACTIONS(4124), - [anon_sym_class] = ACTIONS(4124), - [anon_sym_struct] = ACTIONS(4124), - [anon_sym_union] = ACTIONS(4124), - [anon_sym_if] = ACTIONS(4124), - [anon_sym_switch] = ACTIONS(4124), - [anon_sym_case] = ACTIONS(4124), - [anon_sym_default] = ACTIONS(4124), - [anon_sym_while] = ACTIONS(4124), - [anon_sym_do] = ACTIONS(4124), - [anon_sym_for] = ACTIONS(4124), - [anon_sym_return] = ACTIONS(4124), - [anon_sym_break] = ACTIONS(4124), - [anon_sym_continue] = ACTIONS(4124), - [anon_sym_goto] = ACTIONS(4124), - [anon_sym___try] = ACTIONS(4124), - [anon_sym___leave] = ACTIONS(4124), - [anon_sym_not] = ACTIONS(4124), - [anon_sym_compl] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4124), - [anon_sym___alignof] = ACTIONS(4124), - [anon_sym__alignof] = ACTIONS(4124), - [anon_sym_alignof] = ACTIONS(4124), - [anon_sym__Alignof] = ACTIONS(4124), - [anon_sym_offsetof] = ACTIONS(4124), - [anon_sym__Generic] = ACTIONS(4124), - [anon_sym_typename] = ACTIONS(4124), - [anon_sym_asm] = ACTIONS(4124), - [anon_sym___asm__] = ACTIONS(4124), - [anon_sym___asm] = ACTIONS(4124), - [sym_number_literal] = ACTIONS(4126), - [anon_sym_L_SQUOTE] = ACTIONS(4126), - [anon_sym_u_SQUOTE] = ACTIONS(4126), - [anon_sym_U_SQUOTE] = ACTIONS(4126), - [anon_sym_u8_SQUOTE] = ACTIONS(4126), - [anon_sym_SQUOTE] = ACTIONS(4126), - [anon_sym_L_DQUOTE] = ACTIONS(4126), - [anon_sym_u_DQUOTE] = ACTIONS(4126), - [anon_sym_U_DQUOTE] = ACTIONS(4126), - [anon_sym_u8_DQUOTE] = ACTIONS(4126), - [anon_sym_DQUOTE] = ACTIONS(4126), - [sym_true] = ACTIONS(4124), - [sym_false] = ACTIONS(4124), - [anon_sym_NULL] = ACTIONS(4124), - [anon_sym_nullptr] = ACTIONS(4124), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4124), - [anon_sym_decltype] = ACTIONS(4124), - [anon_sym_explicit] = ACTIONS(4124), - [anon_sym_export] = ACTIONS(4124), - [anon_sym_module] = ACTIONS(4124), - [anon_sym_import] = ACTIONS(4124), - [anon_sym_template] = ACTIONS(4124), - [anon_sym_operator] = ACTIONS(4124), - [anon_sym_try] = ACTIONS(4124), - [anon_sym_delete] = ACTIONS(4124), - [anon_sym_throw] = ACTIONS(4124), - [anon_sym_namespace] = ACTIONS(4124), - [anon_sym_static_assert] = ACTIONS(4124), - [anon_sym_concept] = ACTIONS(4124), - [anon_sym_co_return] = ACTIONS(4124), - [anon_sym_co_yield] = ACTIONS(4124), - [anon_sym_R_DQUOTE] = ACTIONS(4126), - [anon_sym_LR_DQUOTE] = ACTIONS(4126), - [anon_sym_uR_DQUOTE] = ACTIONS(4126), - [anon_sym_UR_DQUOTE] = ACTIONS(4126), - [anon_sym_u8R_DQUOTE] = ACTIONS(4126), - [anon_sym_co_await] = ACTIONS(4124), - [anon_sym_new] = ACTIONS(4124), - [anon_sym_requires] = ACTIONS(4124), - [anon_sym_CARET_CARET] = ACTIONS(4126), - [anon_sym_LBRACK_COLON] = ACTIONS(4126), - [sym_this] = ACTIONS(4124), + [sym_identifier] = ACTIONS(4106), + [aux_sym_preproc_include_token1] = ACTIONS(4106), + [aux_sym_preproc_def_token1] = ACTIONS(4106), + [aux_sym_preproc_if_token1] = ACTIONS(4106), + [aux_sym_preproc_if_token2] = ACTIONS(4106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4106), + [aux_sym_preproc_else_token1] = ACTIONS(4106), + [aux_sym_preproc_elif_token1] = ACTIONS(4106), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4106), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4106), + [sym_preproc_directive] = ACTIONS(4106), + [anon_sym_LPAREN2] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_TILDE] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym___extension__] = ACTIONS(4106), + [anon_sym_typedef] = ACTIONS(4106), + [anon_sym_virtual] = ACTIONS(4106), + [anon_sym_extern] = ACTIONS(4106), + [anon_sym___attribute__] = ACTIONS(4106), + [anon_sym___attribute] = ACTIONS(4106), + [anon_sym_using] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4108), + [anon_sym___declspec] = ACTIONS(4106), + [anon_sym___based] = ACTIONS(4106), + [anon_sym___cdecl] = ACTIONS(4106), + [anon_sym___clrcall] = ACTIONS(4106), + [anon_sym___stdcall] = ACTIONS(4106), + [anon_sym___fastcall] = ACTIONS(4106), + [anon_sym___thiscall] = ACTIONS(4106), + [anon_sym___vectorcall] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4106), + [anon_sym_unsigned] = ACTIONS(4106), + [anon_sym_long] = ACTIONS(4106), + [anon_sym_short] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_register] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym___inline] = ACTIONS(4106), + [anon_sym___inline__] = ACTIONS(4106), + [anon_sym___forceinline] = ACTIONS(4106), + [anon_sym_thread_local] = ACTIONS(4106), + [anon_sym___thread] = ACTIONS(4106), + [anon_sym_const] = ACTIONS(4106), + [anon_sym_constexpr] = ACTIONS(4106), + [anon_sym_volatile] = ACTIONS(4106), + [anon_sym_restrict] = ACTIONS(4106), + [anon_sym___restrict__] = ACTIONS(4106), + [anon_sym__Atomic] = ACTIONS(4106), + [anon_sym__Noreturn] = ACTIONS(4106), + [anon_sym_noreturn] = ACTIONS(4106), + [anon_sym__Nonnull] = ACTIONS(4106), + [anon_sym_mutable] = ACTIONS(4106), + [anon_sym_constinit] = ACTIONS(4106), + [anon_sym_consteval] = ACTIONS(4106), + [anon_sym_alignas] = ACTIONS(4106), + [anon_sym__Alignas] = ACTIONS(4106), + [sym_primitive_type] = ACTIONS(4106), + [anon_sym_enum] = ACTIONS(4106), + [anon_sym_class] = ACTIONS(4106), + [anon_sym_struct] = ACTIONS(4106), + [anon_sym_union] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_switch] = ACTIONS(4106), + [anon_sym_case] = ACTIONS(4106), + [anon_sym_default] = ACTIONS(4106), + [anon_sym_while] = ACTIONS(4106), + [anon_sym_do] = ACTIONS(4106), + [anon_sym_for] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_goto] = ACTIONS(4106), + [anon_sym___try] = ACTIONS(4106), + [anon_sym___leave] = ACTIONS(4106), + [anon_sym_not] = ACTIONS(4106), + [anon_sym_compl] = ACTIONS(4106), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_sizeof] = ACTIONS(4106), + [anon_sym___alignof__] = ACTIONS(4106), + [anon_sym___alignof] = ACTIONS(4106), + [anon_sym__alignof] = ACTIONS(4106), + [anon_sym_alignof] = ACTIONS(4106), + [anon_sym__Alignof] = ACTIONS(4106), + [anon_sym_offsetof] = ACTIONS(4106), + [anon_sym__Generic] = ACTIONS(4106), + [anon_sym_typename] = ACTIONS(4106), + [anon_sym_asm] = ACTIONS(4106), + [anon_sym___asm__] = ACTIONS(4106), + [anon_sym___asm] = ACTIONS(4106), + [sym_number_literal] = ACTIONS(4108), + [anon_sym_L_SQUOTE] = ACTIONS(4108), + [anon_sym_u_SQUOTE] = ACTIONS(4108), + [anon_sym_U_SQUOTE] = ACTIONS(4108), + [anon_sym_u8_SQUOTE] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4108), + [anon_sym_L_DQUOTE] = ACTIONS(4108), + [anon_sym_u_DQUOTE] = ACTIONS(4108), + [anon_sym_U_DQUOTE] = ACTIONS(4108), + [anon_sym_u8_DQUOTE] = ACTIONS(4108), + [anon_sym_DQUOTE] = ACTIONS(4108), + [sym_true] = ACTIONS(4106), + [sym_false] = ACTIONS(4106), + [anon_sym_NULL] = ACTIONS(4106), + [anon_sym_nullptr] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4106), + [anon_sym_decltype] = ACTIONS(4106), + [anon_sym_explicit] = ACTIONS(4106), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_module] = ACTIONS(4106), + [anon_sym_import] = ACTIONS(4106), + [anon_sym_template] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4106), + [anon_sym_delete] = ACTIONS(4106), + [anon_sym_throw] = ACTIONS(4106), + [anon_sym_namespace] = ACTIONS(4106), + [anon_sym_static_assert] = ACTIONS(4106), + [anon_sym_concept] = ACTIONS(4106), + [anon_sym_co_return] = ACTIONS(4106), + [anon_sym_co_yield] = ACTIONS(4106), + [anon_sym_R_DQUOTE] = ACTIONS(4108), + [anon_sym_LR_DQUOTE] = ACTIONS(4108), + [anon_sym_uR_DQUOTE] = ACTIONS(4108), + [anon_sym_UR_DQUOTE] = ACTIONS(4108), + [anon_sym_u8R_DQUOTE] = ACTIONS(4108), + [anon_sym_co_await] = ACTIONS(4106), + [anon_sym_new] = ACTIONS(4106), + [anon_sym_requires] = ACTIONS(4106), + [anon_sym_CARET_CARET] = ACTIONS(4108), + [anon_sym_LBRACK_COLON] = ACTIONS(4108), + [sym_this] = ACTIONS(4106), }, [STATE(450)] = { - [sym_identifier] = ACTIONS(4128), - [aux_sym_preproc_include_token1] = ACTIONS(4128), - [aux_sym_preproc_def_token1] = ACTIONS(4128), - [aux_sym_preproc_if_token1] = ACTIONS(4128), - [aux_sym_preproc_if_token2] = ACTIONS(4128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4128), - [aux_sym_preproc_else_token1] = ACTIONS(4128), - [aux_sym_preproc_elif_token1] = ACTIONS(4128), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4128), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4128), - [sym_preproc_directive] = ACTIONS(4128), - [anon_sym_LPAREN2] = ACTIONS(4130), - [anon_sym_BANG] = ACTIONS(4130), - [anon_sym_TILDE] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4130), - [anon_sym_AMP_AMP] = ACTIONS(4130), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym___extension__] = ACTIONS(4128), - [anon_sym_typedef] = ACTIONS(4128), - [anon_sym_virtual] = ACTIONS(4128), - [anon_sym_extern] = ACTIONS(4128), - [anon_sym___attribute__] = ACTIONS(4128), - [anon_sym___attribute] = ACTIONS(4128), - [anon_sym_using] = ACTIONS(4128), - [anon_sym_COLON_COLON] = ACTIONS(4130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4130), - [anon_sym___declspec] = ACTIONS(4128), - [anon_sym___based] = ACTIONS(4128), - [anon_sym___cdecl] = ACTIONS(4128), - [anon_sym___clrcall] = ACTIONS(4128), - [anon_sym___stdcall] = ACTIONS(4128), - [anon_sym___fastcall] = ACTIONS(4128), - [anon_sym___thiscall] = ACTIONS(4128), - [anon_sym___vectorcall] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4130), - [anon_sym_signed] = ACTIONS(4128), - [anon_sym_unsigned] = ACTIONS(4128), - [anon_sym_long] = ACTIONS(4128), - [anon_sym_short] = ACTIONS(4128), - [anon_sym_LBRACK] = ACTIONS(4128), - [anon_sym_static] = ACTIONS(4128), - [anon_sym_register] = ACTIONS(4128), - [anon_sym_inline] = ACTIONS(4128), - [anon_sym___inline] = ACTIONS(4128), - [anon_sym___inline__] = ACTIONS(4128), - [anon_sym___forceinline] = ACTIONS(4128), - [anon_sym_thread_local] = ACTIONS(4128), - [anon_sym___thread] = ACTIONS(4128), - [anon_sym_const] = ACTIONS(4128), - [anon_sym_constexpr] = ACTIONS(4128), - [anon_sym_volatile] = ACTIONS(4128), - [anon_sym_restrict] = ACTIONS(4128), - [anon_sym___restrict__] = ACTIONS(4128), - [anon_sym__Atomic] = ACTIONS(4128), - [anon_sym__Noreturn] = ACTIONS(4128), - [anon_sym_noreturn] = ACTIONS(4128), - [anon_sym__Nonnull] = ACTIONS(4128), - [anon_sym_mutable] = ACTIONS(4128), - [anon_sym_constinit] = ACTIONS(4128), - [anon_sym_consteval] = ACTIONS(4128), - [anon_sym_alignas] = ACTIONS(4128), - [anon_sym__Alignas] = ACTIONS(4128), - [sym_primitive_type] = ACTIONS(4128), - [anon_sym_enum] = ACTIONS(4128), - [anon_sym_class] = ACTIONS(4128), - [anon_sym_struct] = ACTIONS(4128), - [anon_sym_union] = ACTIONS(4128), - [anon_sym_if] = ACTIONS(4128), - [anon_sym_switch] = ACTIONS(4128), - [anon_sym_case] = ACTIONS(4128), - [anon_sym_default] = ACTIONS(4128), - [anon_sym_while] = ACTIONS(4128), - [anon_sym_do] = ACTIONS(4128), - [anon_sym_for] = ACTIONS(4128), - [anon_sym_return] = ACTIONS(4128), - [anon_sym_break] = ACTIONS(4128), - [anon_sym_continue] = ACTIONS(4128), - [anon_sym_goto] = ACTIONS(4128), - [anon_sym___try] = ACTIONS(4128), - [anon_sym___leave] = ACTIONS(4128), - [anon_sym_not] = ACTIONS(4128), - [anon_sym_compl] = ACTIONS(4128), - [anon_sym_DASH_DASH] = ACTIONS(4130), - [anon_sym_PLUS_PLUS] = ACTIONS(4130), - [anon_sym_sizeof] = ACTIONS(4128), - [anon_sym___alignof__] = ACTIONS(4128), - [anon_sym___alignof] = ACTIONS(4128), - [anon_sym__alignof] = ACTIONS(4128), - [anon_sym_alignof] = ACTIONS(4128), - [anon_sym__Alignof] = ACTIONS(4128), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4128), - [anon_sym_typename] = ACTIONS(4128), - [anon_sym_asm] = ACTIONS(4128), - [anon_sym___asm__] = ACTIONS(4128), - [anon_sym___asm] = ACTIONS(4128), - [sym_number_literal] = ACTIONS(4130), - [anon_sym_L_SQUOTE] = ACTIONS(4130), - [anon_sym_u_SQUOTE] = ACTIONS(4130), - [anon_sym_U_SQUOTE] = ACTIONS(4130), - [anon_sym_u8_SQUOTE] = ACTIONS(4130), - [anon_sym_SQUOTE] = ACTIONS(4130), - [anon_sym_L_DQUOTE] = ACTIONS(4130), - [anon_sym_u_DQUOTE] = ACTIONS(4130), - [anon_sym_U_DQUOTE] = ACTIONS(4130), - [anon_sym_u8_DQUOTE] = ACTIONS(4130), - [anon_sym_DQUOTE] = ACTIONS(4130), - [sym_true] = ACTIONS(4128), - [sym_false] = ACTIONS(4128), - [anon_sym_NULL] = ACTIONS(4128), - [anon_sym_nullptr] = ACTIONS(4128), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4128), - [anon_sym_decltype] = ACTIONS(4128), - [anon_sym_explicit] = ACTIONS(4128), - [anon_sym_export] = ACTIONS(4128), - [anon_sym_module] = ACTIONS(4128), - [anon_sym_import] = ACTIONS(4128), - [anon_sym_template] = ACTIONS(4128), - [anon_sym_operator] = ACTIONS(4128), - [anon_sym_try] = ACTIONS(4128), - [anon_sym_delete] = ACTIONS(4128), - [anon_sym_throw] = ACTIONS(4128), - [anon_sym_namespace] = ACTIONS(4128), - [anon_sym_static_assert] = ACTIONS(4128), - [anon_sym_concept] = ACTIONS(4128), - [anon_sym_co_return] = ACTIONS(4128), - [anon_sym_co_yield] = ACTIONS(4128), - [anon_sym_R_DQUOTE] = ACTIONS(4130), - [anon_sym_LR_DQUOTE] = ACTIONS(4130), - [anon_sym_uR_DQUOTE] = ACTIONS(4130), - [anon_sym_UR_DQUOTE] = ACTIONS(4130), - [anon_sym_u8R_DQUOTE] = ACTIONS(4130), - [anon_sym_co_await] = ACTIONS(4128), - [anon_sym_new] = ACTIONS(4128), - [anon_sym_requires] = ACTIONS(4128), - [anon_sym_CARET_CARET] = ACTIONS(4130), - [anon_sym_LBRACK_COLON] = ACTIONS(4130), - [sym_this] = ACTIONS(4128), + [sym_identifier] = ACTIONS(4110), + [aux_sym_preproc_include_token1] = ACTIONS(4110), + [aux_sym_preproc_def_token1] = ACTIONS(4110), + [aux_sym_preproc_if_token1] = ACTIONS(4110), + [aux_sym_preproc_if_token2] = ACTIONS(4110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4110), + [aux_sym_preproc_else_token1] = ACTIONS(4110), + [aux_sym_preproc_elif_token1] = ACTIONS(4110), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4110), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4110), + [sym_preproc_directive] = ACTIONS(4110), + [anon_sym_LPAREN2] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym___extension__] = ACTIONS(4110), + [anon_sym_typedef] = ACTIONS(4110), + [anon_sym_virtual] = ACTIONS(4110), + [anon_sym_extern] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4110), + [anon_sym___attribute] = ACTIONS(4110), + [anon_sym_using] = ACTIONS(4110), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4112), + [anon_sym___declspec] = ACTIONS(4110), + [anon_sym___based] = ACTIONS(4110), + [anon_sym___cdecl] = ACTIONS(4110), + [anon_sym___clrcall] = ACTIONS(4110), + [anon_sym___stdcall] = ACTIONS(4110), + [anon_sym___fastcall] = ACTIONS(4110), + [anon_sym___thiscall] = ACTIONS(4110), + [anon_sym___vectorcall] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_signed] = ACTIONS(4110), + [anon_sym_unsigned] = ACTIONS(4110), + [anon_sym_long] = ACTIONS(4110), + [anon_sym_short] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_static] = ACTIONS(4110), + [anon_sym_register] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym___inline] = ACTIONS(4110), + [anon_sym___inline__] = ACTIONS(4110), + [anon_sym___forceinline] = ACTIONS(4110), + [anon_sym_thread_local] = ACTIONS(4110), + [anon_sym___thread] = ACTIONS(4110), + [anon_sym_const] = ACTIONS(4110), + [anon_sym_constexpr] = ACTIONS(4110), + [anon_sym_volatile] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4110), + [anon_sym___restrict__] = ACTIONS(4110), + [anon_sym__Atomic] = ACTIONS(4110), + [anon_sym__Noreturn] = ACTIONS(4110), + [anon_sym_noreturn] = ACTIONS(4110), + [anon_sym__Nonnull] = ACTIONS(4110), + [anon_sym_mutable] = ACTIONS(4110), + [anon_sym_constinit] = ACTIONS(4110), + [anon_sym_consteval] = ACTIONS(4110), + [anon_sym_alignas] = ACTIONS(4110), + [anon_sym__Alignas] = ACTIONS(4110), + [sym_primitive_type] = ACTIONS(4110), + [anon_sym_enum] = ACTIONS(4110), + [anon_sym_class] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4110), + [anon_sym_if] = ACTIONS(4110), + [anon_sym_switch] = ACTIONS(4110), + [anon_sym_case] = ACTIONS(4110), + [anon_sym_default] = ACTIONS(4110), + [anon_sym_while] = ACTIONS(4110), + [anon_sym_do] = ACTIONS(4110), + [anon_sym_for] = ACTIONS(4110), + [anon_sym_return] = ACTIONS(4110), + [anon_sym_break] = ACTIONS(4110), + [anon_sym_continue] = ACTIONS(4110), + [anon_sym_goto] = ACTIONS(4110), + [anon_sym___try] = ACTIONS(4110), + [anon_sym___leave] = ACTIONS(4110), + [anon_sym_not] = ACTIONS(4110), + [anon_sym_compl] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_sizeof] = ACTIONS(4110), + [anon_sym___alignof__] = ACTIONS(4110), + [anon_sym___alignof] = ACTIONS(4110), + [anon_sym__alignof] = ACTIONS(4110), + [anon_sym_alignof] = ACTIONS(4110), + [anon_sym__Alignof] = ACTIONS(4110), + [anon_sym_offsetof] = ACTIONS(4110), + [anon_sym__Generic] = ACTIONS(4110), + [anon_sym_typename] = ACTIONS(4110), + [anon_sym_asm] = ACTIONS(4110), + [anon_sym___asm__] = ACTIONS(4110), + [anon_sym___asm] = ACTIONS(4110), + [sym_number_literal] = ACTIONS(4112), + [anon_sym_L_SQUOTE] = ACTIONS(4112), + [anon_sym_u_SQUOTE] = ACTIONS(4112), + [anon_sym_U_SQUOTE] = ACTIONS(4112), + [anon_sym_u8_SQUOTE] = ACTIONS(4112), + [anon_sym_SQUOTE] = ACTIONS(4112), + [anon_sym_L_DQUOTE] = ACTIONS(4112), + [anon_sym_u_DQUOTE] = ACTIONS(4112), + [anon_sym_U_DQUOTE] = ACTIONS(4112), + [anon_sym_u8_DQUOTE] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4112), + [sym_true] = ACTIONS(4110), + [sym_false] = ACTIONS(4110), + [anon_sym_NULL] = ACTIONS(4110), + [anon_sym_nullptr] = ACTIONS(4110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4110), + [anon_sym_decltype] = ACTIONS(4110), + [anon_sym_explicit] = ACTIONS(4110), + [anon_sym_export] = ACTIONS(4110), + [anon_sym_module] = ACTIONS(4110), + [anon_sym_import] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(4110), + [anon_sym_operator] = ACTIONS(4110), + [anon_sym_try] = ACTIONS(4110), + [anon_sym_delete] = ACTIONS(4110), + [anon_sym_throw] = ACTIONS(4110), + [anon_sym_namespace] = ACTIONS(4110), + [anon_sym_static_assert] = ACTIONS(4110), + [anon_sym_concept] = ACTIONS(4110), + [anon_sym_co_return] = ACTIONS(4110), + [anon_sym_co_yield] = ACTIONS(4110), + [anon_sym_R_DQUOTE] = ACTIONS(4112), + [anon_sym_LR_DQUOTE] = ACTIONS(4112), + [anon_sym_uR_DQUOTE] = ACTIONS(4112), + [anon_sym_UR_DQUOTE] = ACTIONS(4112), + [anon_sym_u8R_DQUOTE] = ACTIONS(4112), + [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_new] = ACTIONS(4110), + [anon_sym_requires] = ACTIONS(4110), + [anon_sym_CARET_CARET] = ACTIONS(4112), + [anon_sym_LBRACK_COLON] = ACTIONS(4112), + [sym_this] = ACTIONS(4110), }, [STATE(451)] = { - [sym_identifier] = ACTIONS(4132), - [aux_sym_preproc_include_token1] = ACTIONS(4132), - [aux_sym_preproc_def_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token2] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), - [aux_sym_preproc_else_token1] = ACTIONS(4132), - [aux_sym_preproc_elif_token1] = ACTIONS(4132), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4132), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4132), - [sym_preproc_directive] = ACTIONS(4132), - [anon_sym_LPAREN2] = ACTIONS(4134), - [anon_sym_BANG] = ACTIONS(4134), - [anon_sym_TILDE] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym___extension__] = ACTIONS(4132), - [anon_sym_typedef] = ACTIONS(4132), - [anon_sym_virtual] = ACTIONS(4132), - [anon_sym_extern] = ACTIONS(4132), - [anon_sym___attribute__] = ACTIONS(4132), - [anon_sym___attribute] = ACTIONS(4132), - [anon_sym_using] = ACTIONS(4132), - [anon_sym_COLON_COLON] = ACTIONS(4134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), - [anon_sym___declspec] = ACTIONS(4132), - [anon_sym___based] = ACTIONS(4132), - [anon_sym___cdecl] = ACTIONS(4132), - [anon_sym___clrcall] = ACTIONS(4132), - [anon_sym___stdcall] = ACTIONS(4132), - [anon_sym___fastcall] = ACTIONS(4132), - [anon_sym___thiscall] = ACTIONS(4132), - [anon_sym___vectorcall] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4134), - [anon_sym_signed] = ACTIONS(4132), - [anon_sym_unsigned] = ACTIONS(4132), - [anon_sym_long] = ACTIONS(4132), - [anon_sym_short] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_static] = ACTIONS(4132), - [anon_sym_register] = ACTIONS(4132), - [anon_sym_inline] = ACTIONS(4132), - [anon_sym___inline] = ACTIONS(4132), - [anon_sym___inline__] = ACTIONS(4132), - [anon_sym___forceinline] = ACTIONS(4132), - [anon_sym_thread_local] = ACTIONS(4132), - [anon_sym___thread] = ACTIONS(4132), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_constexpr] = ACTIONS(4132), - [anon_sym_volatile] = ACTIONS(4132), - [anon_sym_restrict] = ACTIONS(4132), - [anon_sym___restrict__] = ACTIONS(4132), - [anon_sym__Atomic] = ACTIONS(4132), - [anon_sym__Noreturn] = ACTIONS(4132), - [anon_sym_noreturn] = ACTIONS(4132), - [anon_sym__Nonnull] = ACTIONS(4132), - [anon_sym_mutable] = ACTIONS(4132), - [anon_sym_constinit] = ACTIONS(4132), - [anon_sym_consteval] = ACTIONS(4132), - [anon_sym_alignas] = ACTIONS(4132), - [anon_sym__Alignas] = ACTIONS(4132), - [sym_primitive_type] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_class] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_switch] = ACTIONS(4132), - [anon_sym_case] = ACTIONS(4132), - [anon_sym_default] = ACTIONS(4132), - [anon_sym_while] = ACTIONS(4132), - [anon_sym_do] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym___try] = ACTIONS(4132), - [anon_sym___leave] = ACTIONS(4132), - [anon_sym_not] = ACTIONS(4132), - [anon_sym_compl] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_sizeof] = ACTIONS(4132), - [anon_sym___alignof__] = ACTIONS(4132), - [anon_sym___alignof] = ACTIONS(4132), - [anon_sym__alignof] = ACTIONS(4132), - [anon_sym_alignof] = ACTIONS(4132), - [anon_sym__Alignof] = ACTIONS(4132), - [anon_sym_offsetof] = ACTIONS(4132), - [anon_sym__Generic] = ACTIONS(4132), - [anon_sym_typename] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [anon_sym___asm] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4134), - [anon_sym_u_SQUOTE] = ACTIONS(4134), - [anon_sym_U_SQUOTE] = ACTIONS(4134), - [anon_sym_u8_SQUOTE] = ACTIONS(4134), - [anon_sym_SQUOTE] = ACTIONS(4134), - [anon_sym_L_DQUOTE] = ACTIONS(4134), - [anon_sym_u_DQUOTE] = ACTIONS(4134), - [anon_sym_U_DQUOTE] = ACTIONS(4134), - [anon_sym_u8_DQUOTE] = ACTIONS(4134), - [anon_sym_DQUOTE] = ACTIONS(4134), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [anon_sym_NULL] = ACTIONS(4132), - [anon_sym_nullptr] = ACTIONS(4132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4132), - [anon_sym_decltype] = ACTIONS(4132), - [anon_sym_explicit] = ACTIONS(4132), - [anon_sym_export] = ACTIONS(4132), - [anon_sym_module] = ACTIONS(4132), - [anon_sym_import] = ACTIONS(4132), - [anon_sym_template] = ACTIONS(4132), - [anon_sym_operator] = ACTIONS(4132), - [anon_sym_try] = ACTIONS(4132), - [anon_sym_delete] = ACTIONS(4132), - [anon_sym_throw] = ACTIONS(4132), - [anon_sym_namespace] = ACTIONS(4132), - [anon_sym_static_assert] = ACTIONS(4132), - [anon_sym_concept] = ACTIONS(4132), - [anon_sym_co_return] = ACTIONS(4132), - [anon_sym_co_yield] = ACTIONS(4132), - [anon_sym_R_DQUOTE] = ACTIONS(4134), - [anon_sym_LR_DQUOTE] = ACTIONS(4134), - [anon_sym_uR_DQUOTE] = ACTIONS(4134), - [anon_sym_UR_DQUOTE] = ACTIONS(4134), - [anon_sym_u8R_DQUOTE] = ACTIONS(4134), - [anon_sym_co_await] = ACTIONS(4132), - [anon_sym_new] = ACTIONS(4132), - [anon_sym_requires] = ACTIONS(4132), - [anon_sym_CARET_CARET] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4134), - [sym_this] = ACTIONS(4132), + [sym_identifier] = ACTIONS(4114), + [aux_sym_preproc_include_token1] = ACTIONS(4114), + [aux_sym_preproc_def_token1] = ACTIONS(4114), + [aux_sym_preproc_if_token1] = ACTIONS(4114), + [aux_sym_preproc_if_token2] = ACTIONS(4114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4114), + [aux_sym_preproc_else_token1] = ACTIONS(4114), + [aux_sym_preproc_elif_token1] = ACTIONS(4114), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4114), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4114), + [sym_preproc_directive] = ACTIONS(4114), + [anon_sym_LPAREN2] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4116), + [anon_sym_TILDE] = ACTIONS(4116), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym___extension__] = ACTIONS(4114), + [anon_sym_typedef] = ACTIONS(4114), + [anon_sym_virtual] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym___attribute__] = ACTIONS(4114), + [anon_sym___attribute] = ACTIONS(4114), + [anon_sym_using] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4116), + [anon_sym___declspec] = ACTIONS(4114), + [anon_sym___based] = ACTIONS(4114), + [anon_sym___cdecl] = ACTIONS(4114), + [anon_sym___clrcall] = ACTIONS(4114), + [anon_sym___stdcall] = ACTIONS(4114), + [anon_sym___fastcall] = ACTIONS(4114), + [anon_sym___thiscall] = ACTIONS(4114), + [anon_sym___vectorcall] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_signed] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [anon_sym_LBRACK] = ACTIONS(4114), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym___inline] = ACTIONS(4114), + [anon_sym___inline__] = ACTIONS(4114), + [anon_sym___forceinline] = ACTIONS(4114), + [anon_sym_thread_local] = ACTIONS(4114), + [anon_sym___thread] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym___restrict__] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym__Noreturn] = ACTIONS(4114), + [anon_sym_noreturn] = ACTIONS(4114), + [anon_sym__Nonnull] = ACTIONS(4114), + [anon_sym_mutable] = ACTIONS(4114), + [anon_sym_constinit] = ACTIONS(4114), + [anon_sym_consteval] = ACTIONS(4114), + [anon_sym_alignas] = ACTIONS(4114), + [anon_sym__Alignas] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_class] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_switch] = ACTIONS(4114), + [anon_sym_case] = ACTIONS(4114), + [anon_sym_default] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_do] = ACTIONS(4114), + [anon_sym_for] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_goto] = ACTIONS(4114), + [anon_sym___try] = ACTIONS(4114), + [anon_sym___leave] = ACTIONS(4114), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_compl] = ACTIONS(4114), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_sizeof] = ACTIONS(4114), + [anon_sym___alignof__] = ACTIONS(4114), + [anon_sym___alignof] = ACTIONS(4114), + [anon_sym__alignof] = ACTIONS(4114), + [anon_sym_alignof] = ACTIONS(4114), + [anon_sym__Alignof] = ACTIONS(4114), + [anon_sym_offsetof] = ACTIONS(4114), + [anon_sym__Generic] = ACTIONS(4114), + [anon_sym_typename] = ACTIONS(4114), + [anon_sym_asm] = ACTIONS(4114), + [anon_sym___asm__] = ACTIONS(4114), + [anon_sym___asm] = ACTIONS(4114), + [sym_number_literal] = ACTIONS(4116), + [anon_sym_L_SQUOTE] = ACTIONS(4116), + [anon_sym_u_SQUOTE] = ACTIONS(4116), + [anon_sym_U_SQUOTE] = ACTIONS(4116), + [anon_sym_u8_SQUOTE] = ACTIONS(4116), + [anon_sym_SQUOTE] = ACTIONS(4116), + [anon_sym_L_DQUOTE] = ACTIONS(4116), + [anon_sym_u_DQUOTE] = ACTIONS(4116), + [anon_sym_U_DQUOTE] = ACTIONS(4116), + [anon_sym_u8_DQUOTE] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(4116), + [sym_true] = ACTIONS(4114), + [sym_false] = ACTIONS(4114), + [anon_sym_NULL] = ACTIONS(4114), + [anon_sym_nullptr] = ACTIONS(4114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4114), + [anon_sym_decltype] = ACTIONS(4114), + [anon_sym_explicit] = ACTIONS(4114), + [anon_sym_export] = ACTIONS(4114), + [anon_sym_module] = ACTIONS(4114), + [anon_sym_import] = ACTIONS(4114), + [anon_sym_template] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_delete] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_namespace] = ACTIONS(4114), + [anon_sym_static_assert] = ACTIONS(4114), + [anon_sym_concept] = ACTIONS(4114), + [anon_sym_co_return] = ACTIONS(4114), + [anon_sym_co_yield] = ACTIONS(4114), + [anon_sym_R_DQUOTE] = ACTIONS(4116), + [anon_sym_LR_DQUOTE] = ACTIONS(4116), + [anon_sym_uR_DQUOTE] = ACTIONS(4116), + [anon_sym_UR_DQUOTE] = ACTIONS(4116), + [anon_sym_u8R_DQUOTE] = ACTIONS(4116), + [anon_sym_co_await] = ACTIONS(4114), + [anon_sym_new] = ACTIONS(4114), + [anon_sym_requires] = ACTIONS(4114), + [anon_sym_CARET_CARET] = ACTIONS(4116), + [anon_sym_LBRACK_COLON] = ACTIONS(4116), + [sym_this] = ACTIONS(4114), }, [STATE(452)] = { - [sym_identifier] = ACTIONS(4136), - [aux_sym_preproc_include_token1] = ACTIONS(4136), - [aux_sym_preproc_def_token1] = ACTIONS(4136), - [aux_sym_preproc_if_token1] = ACTIONS(4136), - [aux_sym_preproc_if_token2] = ACTIONS(4136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4136), - [aux_sym_preproc_else_token1] = ACTIONS(4136), - [aux_sym_preproc_elif_token1] = ACTIONS(4136), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4136), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4136), - [sym_preproc_directive] = ACTIONS(4136), - [anon_sym_LPAREN2] = ACTIONS(4138), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_TILDE] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4138), - [anon_sym_AMP_AMP] = ACTIONS(4138), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_SEMI] = ACTIONS(4138), - [anon_sym___extension__] = ACTIONS(4136), - [anon_sym_typedef] = ACTIONS(4136), - [anon_sym_virtual] = ACTIONS(4136), - [anon_sym_extern] = ACTIONS(4136), - [anon_sym___attribute__] = ACTIONS(4136), - [anon_sym___attribute] = ACTIONS(4136), - [anon_sym_using] = ACTIONS(4136), - [anon_sym_COLON_COLON] = ACTIONS(4138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4138), - [anon_sym___declspec] = ACTIONS(4136), - [anon_sym___based] = ACTIONS(4136), - [anon_sym___cdecl] = ACTIONS(4136), - [anon_sym___clrcall] = ACTIONS(4136), - [anon_sym___stdcall] = ACTIONS(4136), - [anon_sym___fastcall] = ACTIONS(4136), - [anon_sym___thiscall] = ACTIONS(4136), - [anon_sym___vectorcall] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4138), - [anon_sym_signed] = ACTIONS(4136), - [anon_sym_unsigned] = ACTIONS(4136), - [anon_sym_long] = ACTIONS(4136), - [anon_sym_short] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_static] = ACTIONS(4136), - [anon_sym_register] = ACTIONS(4136), - [anon_sym_inline] = ACTIONS(4136), - [anon_sym___inline] = ACTIONS(4136), - [anon_sym___inline__] = ACTIONS(4136), - [anon_sym___forceinline] = ACTIONS(4136), - [anon_sym_thread_local] = ACTIONS(4136), - [anon_sym___thread] = ACTIONS(4136), - [anon_sym_const] = ACTIONS(4136), - [anon_sym_constexpr] = ACTIONS(4136), - [anon_sym_volatile] = ACTIONS(4136), - [anon_sym_restrict] = ACTIONS(4136), - [anon_sym___restrict__] = ACTIONS(4136), - [anon_sym__Atomic] = ACTIONS(4136), - [anon_sym__Noreturn] = ACTIONS(4136), - [anon_sym_noreturn] = ACTIONS(4136), - [anon_sym__Nonnull] = ACTIONS(4136), - [anon_sym_mutable] = ACTIONS(4136), - [anon_sym_constinit] = ACTIONS(4136), - [anon_sym_consteval] = ACTIONS(4136), - [anon_sym_alignas] = ACTIONS(4136), - [anon_sym__Alignas] = ACTIONS(4136), - [sym_primitive_type] = ACTIONS(4136), - [anon_sym_enum] = ACTIONS(4136), - [anon_sym_class] = ACTIONS(4136), - [anon_sym_struct] = ACTIONS(4136), - [anon_sym_union] = ACTIONS(4136), - [anon_sym_if] = ACTIONS(4136), - [anon_sym_switch] = ACTIONS(4136), - [anon_sym_case] = ACTIONS(4136), - [anon_sym_default] = ACTIONS(4136), - [anon_sym_while] = ACTIONS(4136), - [anon_sym_do] = ACTIONS(4136), - [anon_sym_for] = ACTIONS(4136), - [anon_sym_return] = ACTIONS(4136), - [anon_sym_break] = ACTIONS(4136), - [anon_sym_continue] = ACTIONS(4136), - [anon_sym_goto] = ACTIONS(4136), - [anon_sym___try] = ACTIONS(4136), - [anon_sym___leave] = ACTIONS(4136), - [anon_sym_not] = ACTIONS(4136), - [anon_sym_compl] = ACTIONS(4136), - [anon_sym_DASH_DASH] = ACTIONS(4138), - [anon_sym_PLUS_PLUS] = ACTIONS(4138), - [anon_sym_sizeof] = ACTIONS(4136), - [anon_sym___alignof__] = ACTIONS(4136), - [anon_sym___alignof] = ACTIONS(4136), - [anon_sym__alignof] = ACTIONS(4136), - [anon_sym_alignof] = ACTIONS(4136), - [anon_sym__Alignof] = ACTIONS(4136), - [anon_sym_offsetof] = ACTIONS(4136), - [anon_sym__Generic] = ACTIONS(4136), - [anon_sym_typename] = ACTIONS(4136), - [anon_sym_asm] = ACTIONS(4136), - [anon_sym___asm__] = ACTIONS(4136), - [anon_sym___asm] = ACTIONS(4136), - [sym_number_literal] = ACTIONS(4138), - [anon_sym_L_SQUOTE] = ACTIONS(4138), - [anon_sym_u_SQUOTE] = ACTIONS(4138), - [anon_sym_U_SQUOTE] = ACTIONS(4138), - [anon_sym_u8_SQUOTE] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4138), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4136), - [sym_false] = ACTIONS(4136), - [anon_sym_NULL] = ACTIONS(4136), - [anon_sym_nullptr] = ACTIONS(4136), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4136), - [anon_sym_decltype] = ACTIONS(4136), - [anon_sym_explicit] = ACTIONS(4136), - [anon_sym_export] = ACTIONS(4136), - [anon_sym_module] = ACTIONS(4136), - [anon_sym_import] = ACTIONS(4136), - [anon_sym_template] = ACTIONS(4136), - [anon_sym_operator] = ACTIONS(4136), - [anon_sym_try] = ACTIONS(4136), - [anon_sym_delete] = ACTIONS(4136), - [anon_sym_throw] = ACTIONS(4136), - [anon_sym_namespace] = ACTIONS(4136), - [anon_sym_static_assert] = ACTIONS(4136), - [anon_sym_concept] = ACTIONS(4136), - [anon_sym_co_return] = ACTIONS(4136), - [anon_sym_co_yield] = ACTIONS(4136), - [anon_sym_R_DQUOTE] = ACTIONS(4138), - [anon_sym_LR_DQUOTE] = ACTIONS(4138), - [anon_sym_uR_DQUOTE] = ACTIONS(4138), - [anon_sym_UR_DQUOTE] = ACTIONS(4138), - [anon_sym_u8R_DQUOTE] = ACTIONS(4138), - [anon_sym_co_await] = ACTIONS(4136), - [anon_sym_new] = ACTIONS(4136), - [anon_sym_requires] = ACTIONS(4136), - [anon_sym_CARET_CARET] = ACTIONS(4138), - [anon_sym_LBRACK_COLON] = ACTIONS(4138), - [sym_this] = ACTIONS(4136), + [sym_identifier] = ACTIONS(4118), + [aux_sym_preproc_include_token1] = ACTIONS(4118), + [aux_sym_preproc_def_token1] = ACTIONS(4118), + [aux_sym_preproc_if_token1] = ACTIONS(4118), + [aux_sym_preproc_if_token2] = ACTIONS(4118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4118), + [aux_sym_preproc_else_token1] = ACTIONS(4118), + [aux_sym_preproc_elif_token1] = ACTIONS(4118), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4118), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4118), + [sym_preproc_directive] = ACTIONS(4118), + [anon_sym_LPAREN2] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_TILDE] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_AMP_AMP] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym___extension__] = ACTIONS(4118), + [anon_sym_typedef] = ACTIONS(4118), + [anon_sym_virtual] = ACTIONS(4118), + [anon_sym_extern] = ACTIONS(4118), + [anon_sym___attribute__] = ACTIONS(4118), + [anon_sym___attribute] = ACTIONS(4118), + [anon_sym_using] = ACTIONS(4118), + [anon_sym_COLON_COLON] = ACTIONS(4120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4120), + [anon_sym___declspec] = ACTIONS(4118), + [anon_sym___based] = ACTIONS(4118), + [anon_sym___cdecl] = ACTIONS(4118), + [anon_sym___clrcall] = ACTIONS(4118), + [anon_sym___stdcall] = ACTIONS(4118), + [anon_sym___fastcall] = ACTIONS(4118), + [anon_sym___thiscall] = ACTIONS(4118), + [anon_sym___vectorcall] = ACTIONS(4118), + [anon_sym_LBRACE] = ACTIONS(4120), + [anon_sym_signed] = ACTIONS(4118), + [anon_sym_unsigned] = ACTIONS(4118), + [anon_sym_long] = ACTIONS(4118), + [anon_sym_short] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_static] = ACTIONS(4118), + [anon_sym_register] = ACTIONS(4118), + [anon_sym_inline] = ACTIONS(4118), + [anon_sym___inline] = ACTIONS(4118), + [anon_sym___inline__] = ACTIONS(4118), + [anon_sym___forceinline] = ACTIONS(4118), + [anon_sym_thread_local] = ACTIONS(4118), + [anon_sym___thread] = ACTIONS(4118), + [anon_sym_const] = ACTIONS(4118), + [anon_sym_constexpr] = ACTIONS(4118), + [anon_sym_volatile] = ACTIONS(4118), + [anon_sym_restrict] = ACTIONS(4118), + [anon_sym___restrict__] = ACTIONS(4118), + [anon_sym__Atomic] = ACTIONS(4118), + [anon_sym__Noreturn] = ACTIONS(4118), + [anon_sym_noreturn] = ACTIONS(4118), + [anon_sym__Nonnull] = ACTIONS(4118), + [anon_sym_mutable] = ACTIONS(4118), + [anon_sym_constinit] = ACTIONS(4118), + [anon_sym_consteval] = ACTIONS(4118), + [anon_sym_alignas] = ACTIONS(4118), + [anon_sym__Alignas] = ACTIONS(4118), + [sym_primitive_type] = ACTIONS(4118), + [anon_sym_enum] = ACTIONS(4118), + [anon_sym_class] = ACTIONS(4118), + [anon_sym_struct] = ACTIONS(4118), + [anon_sym_union] = ACTIONS(4118), + [anon_sym_if] = ACTIONS(4118), + [anon_sym_switch] = ACTIONS(4118), + [anon_sym_case] = ACTIONS(4118), + [anon_sym_default] = ACTIONS(4118), + [anon_sym_while] = ACTIONS(4118), + [anon_sym_do] = ACTIONS(4118), + [anon_sym_for] = ACTIONS(4118), + [anon_sym_return] = ACTIONS(4118), + [anon_sym_break] = ACTIONS(4118), + [anon_sym_continue] = ACTIONS(4118), + [anon_sym_goto] = ACTIONS(4118), + [anon_sym___try] = ACTIONS(4118), + [anon_sym___leave] = ACTIONS(4118), + [anon_sym_not] = ACTIONS(4118), + [anon_sym_compl] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_PLUS_PLUS] = ACTIONS(4120), + [anon_sym_sizeof] = ACTIONS(4118), + [anon_sym___alignof__] = ACTIONS(4118), + [anon_sym___alignof] = ACTIONS(4118), + [anon_sym__alignof] = ACTIONS(4118), + [anon_sym_alignof] = ACTIONS(4118), + [anon_sym__Alignof] = ACTIONS(4118), + [anon_sym_offsetof] = ACTIONS(4118), + [anon_sym__Generic] = ACTIONS(4118), + [anon_sym_typename] = ACTIONS(4118), + [anon_sym_asm] = ACTIONS(4118), + [anon_sym___asm__] = ACTIONS(4118), + [anon_sym___asm] = ACTIONS(4118), + [sym_number_literal] = ACTIONS(4120), + [anon_sym_L_SQUOTE] = ACTIONS(4120), + [anon_sym_u_SQUOTE] = ACTIONS(4120), + [anon_sym_U_SQUOTE] = ACTIONS(4120), + [anon_sym_u8_SQUOTE] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4120), + [anon_sym_L_DQUOTE] = ACTIONS(4120), + [anon_sym_u_DQUOTE] = ACTIONS(4120), + [anon_sym_U_DQUOTE] = ACTIONS(4120), + [anon_sym_u8_DQUOTE] = ACTIONS(4120), + [anon_sym_DQUOTE] = ACTIONS(4120), + [sym_true] = ACTIONS(4118), + [sym_false] = ACTIONS(4118), + [anon_sym_NULL] = ACTIONS(4118), + [anon_sym_nullptr] = ACTIONS(4118), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4118), + [anon_sym_decltype] = ACTIONS(4118), + [anon_sym_explicit] = ACTIONS(4118), + [anon_sym_export] = ACTIONS(4118), + [anon_sym_module] = ACTIONS(4118), + [anon_sym_import] = ACTIONS(4118), + [anon_sym_template] = ACTIONS(4118), + [anon_sym_operator] = ACTIONS(4118), + [anon_sym_try] = ACTIONS(4118), + [anon_sym_delete] = ACTIONS(4118), + [anon_sym_throw] = ACTIONS(4118), + [anon_sym_namespace] = ACTIONS(4118), + [anon_sym_static_assert] = ACTIONS(4118), + [anon_sym_concept] = ACTIONS(4118), + [anon_sym_co_return] = ACTIONS(4118), + [anon_sym_co_yield] = ACTIONS(4118), + [anon_sym_R_DQUOTE] = ACTIONS(4120), + [anon_sym_LR_DQUOTE] = ACTIONS(4120), + [anon_sym_uR_DQUOTE] = ACTIONS(4120), + [anon_sym_UR_DQUOTE] = ACTIONS(4120), + [anon_sym_u8R_DQUOTE] = ACTIONS(4120), + [anon_sym_co_await] = ACTIONS(4118), + [anon_sym_new] = ACTIONS(4118), + [anon_sym_requires] = ACTIONS(4118), + [anon_sym_CARET_CARET] = ACTIONS(4120), + [anon_sym_LBRACK_COLON] = ACTIONS(4120), + [sym_this] = ACTIONS(4118), }, [STATE(453)] = { - [sym_identifier] = ACTIONS(4140), - [aux_sym_preproc_include_token1] = ACTIONS(4140), - [aux_sym_preproc_def_token1] = ACTIONS(4140), - [aux_sym_preproc_if_token1] = ACTIONS(4140), - [aux_sym_preproc_if_token2] = ACTIONS(4140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4140), - [aux_sym_preproc_else_token1] = ACTIONS(4140), - [aux_sym_preproc_elif_token1] = ACTIONS(4140), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4140), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4140), - [sym_preproc_directive] = ACTIONS(4140), - [anon_sym_LPAREN2] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4142), - [anon_sym_TILDE] = ACTIONS(4142), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_AMP] = ACTIONS(4140), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym___extension__] = ACTIONS(4140), - [anon_sym_typedef] = ACTIONS(4140), - [anon_sym_virtual] = ACTIONS(4140), - [anon_sym_extern] = ACTIONS(4140), - [anon_sym___attribute__] = ACTIONS(4140), - [anon_sym___attribute] = ACTIONS(4140), - [anon_sym_using] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4142), - [anon_sym___declspec] = ACTIONS(4140), - [anon_sym___based] = ACTIONS(4140), - [anon_sym___cdecl] = ACTIONS(4140), - [anon_sym___clrcall] = ACTIONS(4140), - [anon_sym___stdcall] = ACTIONS(4140), - [anon_sym___fastcall] = ACTIONS(4140), - [anon_sym___thiscall] = ACTIONS(4140), - [anon_sym___vectorcall] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_signed] = ACTIONS(4140), - [anon_sym_unsigned] = ACTIONS(4140), - [anon_sym_long] = ACTIONS(4140), - [anon_sym_short] = ACTIONS(4140), - [anon_sym_LBRACK] = ACTIONS(4140), - [anon_sym_static] = ACTIONS(4140), - [anon_sym_register] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym___inline] = ACTIONS(4140), - [anon_sym___inline__] = ACTIONS(4140), - [anon_sym___forceinline] = ACTIONS(4140), - [anon_sym_thread_local] = ACTIONS(4140), - [anon_sym___thread] = ACTIONS(4140), - [anon_sym_const] = ACTIONS(4140), - [anon_sym_constexpr] = ACTIONS(4140), - [anon_sym_volatile] = ACTIONS(4140), - [anon_sym_restrict] = ACTIONS(4140), - [anon_sym___restrict__] = ACTIONS(4140), - [anon_sym__Atomic] = ACTIONS(4140), - [anon_sym__Noreturn] = ACTIONS(4140), - [anon_sym_noreturn] = ACTIONS(4140), - [anon_sym__Nonnull] = ACTIONS(4140), - [anon_sym_mutable] = ACTIONS(4140), - [anon_sym_constinit] = ACTIONS(4140), - [anon_sym_consteval] = ACTIONS(4140), - [anon_sym_alignas] = ACTIONS(4140), - [anon_sym__Alignas] = ACTIONS(4140), - [sym_primitive_type] = ACTIONS(4140), - [anon_sym_enum] = ACTIONS(4140), - [anon_sym_class] = ACTIONS(4140), - [anon_sym_struct] = ACTIONS(4140), - [anon_sym_union] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_switch] = ACTIONS(4140), - [anon_sym_case] = ACTIONS(4140), - [anon_sym_default] = ACTIONS(4140), - [anon_sym_while] = ACTIONS(4140), - [anon_sym_do] = ACTIONS(4140), - [anon_sym_for] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_goto] = ACTIONS(4140), - [anon_sym___try] = ACTIONS(4140), - [anon_sym___leave] = ACTIONS(4140), - [anon_sym_not] = ACTIONS(4140), - [anon_sym_compl] = ACTIONS(4140), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_sizeof] = ACTIONS(4140), - [anon_sym___alignof__] = ACTIONS(4140), - [anon_sym___alignof] = ACTIONS(4140), - [anon_sym__alignof] = ACTIONS(4140), - [anon_sym_alignof] = ACTIONS(4140), - [anon_sym__Alignof] = ACTIONS(4140), - [anon_sym_offsetof] = ACTIONS(4140), - [anon_sym__Generic] = ACTIONS(4140), - [anon_sym_typename] = ACTIONS(4140), - [anon_sym_asm] = ACTIONS(4140), - [anon_sym___asm__] = ACTIONS(4140), - [anon_sym___asm] = ACTIONS(4140), - [sym_number_literal] = ACTIONS(4142), - [anon_sym_L_SQUOTE] = ACTIONS(4142), - [anon_sym_u_SQUOTE] = ACTIONS(4142), - [anon_sym_U_SQUOTE] = ACTIONS(4142), - [anon_sym_u8_SQUOTE] = ACTIONS(4142), - [anon_sym_SQUOTE] = ACTIONS(4142), - [anon_sym_L_DQUOTE] = ACTIONS(4142), - [anon_sym_u_DQUOTE] = ACTIONS(4142), - [anon_sym_U_DQUOTE] = ACTIONS(4142), - [anon_sym_u8_DQUOTE] = ACTIONS(4142), - [anon_sym_DQUOTE] = ACTIONS(4142), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4140), - [anon_sym_nullptr] = ACTIONS(4140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4140), - [anon_sym_decltype] = ACTIONS(4140), - [anon_sym_explicit] = ACTIONS(4140), - [anon_sym_export] = ACTIONS(4140), - [anon_sym_module] = ACTIONS(4140), - [anon_sym_import] = ACTIONS(4140), - [anon_sym_template] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_delete] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_namespace] = ACTIONS(4140), - [anon_sym_static_assert] = ACTIONS(4140), - [anon_sym_concept] = ACTIONS(4140), - [anon_sym_co_return] = ACTIONS(4140), - [anon_sym_co_yield] = ACTIONS(4140), - [anon_sym_R_DQUOTE] = ACTIONS(4142), - [anon_sym_LR_DQUOTE] = ACTIONS(4142), - [anon_sym_uR_DQUOTE] = ACTIONS(4142), - [anon_sym_UR_DQUOTE] = ACTIONS(4142), - [anon_sym_u8R_DQUOTE] = ACTIONS(4142), - [anon_sym_co_await] = ACTIONS(4140), - [anon_sym_new] = ACTIONS(4140), - [anon_sym_requires] = ACTIONS(4140), - [anon_sym_CARET_CARET] = ACTIONS(4142), - [anon_sym_LBRACK_COLON] = ACTIONS(4142), - [sym_this] = ACTIONS(4140), + [sym_identifier] = ACTIONS(4122), + [aux_sym_preproc_include_token1] = ACTIONS(4122), + [aux_sym_preproc_def_token1] = ACTIONS(4122), + [aux_sym_preproc_if_token1] = ACTIONS(4122), + [aux_sym_preproc_if_token2] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4122), + [aux_sym_preproc_else_token1] = ACTIONS(4122), + [aux_sym_preproc_elif_token1] = ACTIONS(4122), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4122), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4122), + [sym_preproc_directive] = ACTIONS(4122), + [anon_sym_LPAREN2] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4124), + [anon_sym_TILDE] = ACTIONS(4124), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym___extension__] = ACTIONS(4122), + [anon_sym_typedef] = ACTIONS(4122), + [anon_sym_virtual] = ACTIONS(4122), + [anon_sym_extern] = ACTIONS(4122), + [anon_sym___attribute__] = ACTIONS(4122), + [anon_sym___attribute] = ACTIONS(4122), + [anon_sym_using] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4124), + [anon_sym___declspec] = ACTIONS(4122), + [anon_sym___based] = ACTIONS(4122), + [anon_sym___cdecl] = ACTIONS(4122), + [anon_sym___clrcall] = ACTIONS(4122), + [anon_sym___stdcall] = ACTIONS(4122), + [anon_sym___fastcall] = ACTIONS(4122), + [anon_sym___thiscall] = ACTIONS(4122), + [anon_sym___vectorcall] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_signed] = ACTIONS(4122), + [anon_sym_unsigned] = ACTIONS(4122), + [anon_sym_long] = ACTIONS(4122), + [anon_sym_short] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_static] = ACTIONS(4122), + [anon_sym_register] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym___inline] = ACTIONS(4122), + [anon_sym___inline__] = ACTIONS(4122), + [anon_sym___forceinline] = ACTIONS(4122), + [anon_sym_thread_local] = ACTIONS(4122), + [anon_sym___thread] = ACTIONS(4122), + [anon_sym_const] = ACTIONS(4122), + [anon_sym_constexpr] = ACTIONS(4122), + [anon_sym_volatile] = ACTIONS(4122), + [anon_sym_restrict] = ACTIONS(4122), + [anon_sym___restrict__] = ACTIONS(4122), + [anon_sym__Atomic] = ACTIONS(4122), + [anon_sym__Noreturn] = ACTIONS(4122), + [anon_sym_noreturn] = ACTIONS(4122), + [anon_sym__Nonnull] = ACTIONS(4122), + [anon_sym_mutable] = ACTIONS(4122), + [anon_sym_constinit] = ACTIONS(4122), + [anon_sym_consteval] = ACTIONS(4122), + [anon_sym_alignas] = ACTIONS(4122), + [anon_sym__Alignas] = ACTIONS(4122), + [sym_primitive_type] = ACTIONS(4122), + [anon_sym_enum] = ACTIONS(4122), + [anon_sym_class] = ACTIONS(4122), + [anon_sym_struct] = ACTIONS(4122), + [anon_sym_union] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4122), + [anon_sym_switch] = ACTIONS(4122), + [anon_sym_case] = ACTIONS(4122), + [anon_sym_default] = ACTIONS(4122), + [anon_sym_while] = ACTIONS(4122), + [anon_sym_do] = ACTIONS(4122), + [anon_sym_for] = ACTIONS(4122), + [anon_sym_return] = ACTIONS(4122), + [anon_sym_break] = ACTIONS(4122), + [anon_sym_continue] = ACTIONS(4122), + [anon_sym_goto] = ACTIONS(4122), + [anon_sym___try] = ACTIONS(4122), + [anon_sym___leave] = ACTIONS(4122), + [anon_sym_not] = ACTIONS(4122), + [anon_sym_compl] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_sizeof] = ACTIONS(4122), + [anon_sym___alignof__] = ACTIONS(4122), + [anon_sym___alignof] = ACTIONS(4122), + [anon_sym__alignof] = ACTIONS(4122), + [anon_sym_alignof] = ACTIONS(4122), + [anon_sym__Alignof] = ACTIONS(4122), + [anon_sym_offsetof] = ACTIONS(4122), + [anon_sym__Generic] = ACTIONS(4122), + [anon_sym_typename] = ACTIONS(4122), + [anon_sym_asm] = ACTIONS(4122), + [anon_sym___asm__] = ACTIONS(4122), + [anon_sym___asm] = ACTIONS(4122), + [sym_number_literal] = ACTIONS(4124), + [anon_sym_L_SQUOTE] = ACTIONS(4124), + [anon_sym_u_SQUOTE] = ACTIONS(4124), + [anon_sym_U_SQUOTE] = ACTIONS(4124), + [anon_sym_u8_SQUOTE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(4124), + [anon_sym_L_DQUOTE] = ACTIONS(4124), + [anon_sym_u_DQUOTE] = ACTIONS(4124), + [anon_sym_U_DQUOTE] = ACTIONS(4124), + [anon_sym_u8_DQUOTE] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4124), + [sym_true] = ACTIONS(4122), + [sym_false] = ACTIONS(4122), + [anon_sym_NULL] = ACTIONS(4122), + [anon_sym_nullptr] = ACTIONS(4122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4122), + [anon_sym_decltype] = ACTIONS(4122), + [anon_sym_explicit] = ACTIONS(4122), + [anon_sym_export] = ACTIONS(4122), + [anon_sym_module] = ACTIONS(4122), + [anon_sym_import] = ACTIONS(4122), + [anon_sym_template] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_try] = ACTIONS(4122), + [anon_sym_delete] = ACTIONS(4122), + [anon_sym_throw] = ACTIONS(4122), + [anon_sym_namespace] = ACTIONS(4122), + [anon_sym_static_assert] = ACTIONS(4122), + [anon_sym_concept] = ACTIONS(4122), + [anon_sym_co_return] = ACTIONS(4122), + [anon_sym_co_yield] = ACTIONS(4122), + [anon_sym_R_DQUOTE] = ACTIONS(4124), + [anon_sym_LR_DQUOTE] = ACTIONS(4124), + [anon_sym_uR_DQUOTE] = ACTIONS(4124), + [anon_sym_UR_DQUOTE] = ACTIONS(4124), + [anon_sym_u8R_DQUOTE] = ACTIONS(4124), + [anon_sym_co_await] = ACTIONS(4122), + [anon_sym_new] = ACTIONS(4122), + [anon_sym_requires] = ACTIONS(4122), + [anon_sym_CARET_CARET] = ACTIONS(4124), + [anon_sym_LBRACK_COLON] = ACTIONS(4124), + [sym_this] = ACTIONS(4122), }, [STATE(454)] = { - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_include_token1] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token2] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [aux_sym_preproc_else_token1] = ACTIONS(4144), - [aux_sym_preproc_elif_token1] = ACTIONS(4144), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_case] = ACTIONS(4144), - [anon_sym_default] = ACTIONS(4144), - [anon_sym_while] = ACTIONS(4144), - [anon_sym_do] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym___try] = ACTIONS(4144), - [anon_sym___leave] = ACTIONS(4144), - [anon_sym_not] = ACTIONS(4144), - [anon_sym_compl] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_sizeof] = ACTIONS(4144), - [anon_sym___alignof__] = ACTIONS(4144), - [anon_sym___alignof] = ACTIONS(4144), - [anon_sym__alignof] = ACTIONS(4144), - [anon_sym_alignof] = ACTIONS(4144), - [anon_sym__Alignof] = ACTIONS(4144), - [anon_sym_offsetof] = ACTIONS(4144), - [anon_sym__Generic] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym___asm__] = ACTIONS(4144), - [anon_sym___asm] = ACTIONS(4144), - [sym_number_literal] = ACTIONS(4146), - [anon_sym_L_SQUOTE] = ACTIONS(4146), - [anon_sym_u_SQUOTE] = ACTIONS(4146), - [anon_sym_U_SQUOTE] = ACTIONS(4146), - [anon_sym_u8_SQUOTE] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(4146), - [anon_sym_u_DQUOTE] = ACTIONS(4146), - [anon_sym_U_DQUOTE] = ACTIONS(4146), - [anon_sym_u8_DQUOTE] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [anon_sym_NULL] = ACTIONS(4144), - [anon_sym_nullptr] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4144), - [anon_sym_module] = ACTIONS(4144), - [anon_sym_import] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_try] = ACTIONS(4144), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_throw] = ACTIONS(4144), - [anon_sym_namespace] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_concept] = ACTIONS(4144), - [anon_sym_co_return] = ACTIONS(4144), - [anon_sym_co_yield] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4144), - [anon_sym_new] = ACTIONS(4144), - [anon_sym_requires] = ACTIONS(4144), - [anon_sym_CARET_CARET] = ACTIONS(4146), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), - [sym_this] = ACTIONS(4144), + [sym_identifier] = ACTIONS(4126), + [aux_sym_preproc_include_token1] = ACTIONS(4126), + [aux_sym_preproc_def_token1] = ACTIONS(4126), + [aux_sym_preproc_if_token1] = ACTIONS(4126), + [aux_sym_preproc_if_token2] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4126), + [aux_sym_preproc_else_token1] = ACTIONS(4126), + [aux_sym_preproc_elif_token1] = ACTIONS(4126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4126), + [sym_preproc_directive] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4128), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_TILDE] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4126), + [anon_sym_PLUS] = ACTIONS(4126), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_AMP_AMP] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(4128), + [anon_sym___extension__] = ACTIONS(4126), + [anon_sym_typedef] = ACTIONS(4126), + [anon_sym_virtual] = ACTIONS(4126), + [anon_sym_extern] = ACTIONS(4126), + [anon_sym___attribute__] = ACTIONS(4126), + [anon_sym___attribute] = ACTIONS(4126), + [anon_sym_using] = ACTIONS(4126), + [anon_sym_COLON_COLON] = ACTIONS(4128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4128), + [anon_sym___declspec] = ACTIONS(4126), + [anon_sym___based] = ACTIONS(4126), + [anon_sym___cdecl] = ACTIONS(4126), + [anon_sym___clrcall] = ACTIONS(4126), + [anon_sym___stdcall] = ACTIONS(4126), + [anon_sym___fastcall] = ACTIONS(4126), + [anon_sym___thiscall] = ACTIONS(4126), + [anon_sym___vectorcall] = ACTIONS(4126), + [anon_sym_LBRACE] = ACTIONS(4128), + [anon_sym_signed] = ACTIONS(4126), + [anon_sym_unsigned] = ACTIONS(4126), + [anon_sym_long] = ACTIONS(4126), + [anon_sym_short] = ACTIONS(4126), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_static] = ACTIONS(4126), + [anon_sym_register] = ACTIONS(4126), + [anon_sym_inline] = ACTIONS(4126), + [anon_sym___inline] = ACTIONS(4126), + [anon_sym___inline__] = ACTIONS(4126), + [anon_sym___forceinline] = ACTIONS(4126), + [anon_sym_thread_local] = ACTIONS(4126), + [anon_sym___thread] = ACTIONS(4126), + [anon_sym_const] = ACTIONS(4126), + [anon_sym_constexpr] = ACTIONS(4126), + [anon_sym_volatile] = ACTIONS(4126), + [anon_sym_restrict] = ACTIONS(4126), + [anon_sym___restrict__] = ACTIONS(4126), + [anon_sym__Atomic] = ACTIONS(4126), + [anon_sym__Noreturn] = ACTIONS(4126), + [anon_sym_noreturn] = ACTIONS(4126), + [anon_sym__Nonnull] = ACTIONS(4126), + [anon_sym_mutable] = ACTIONS(4126), + [anon_sym_constinit] = ACTIONS(4126), + [anon_sym_consteval] = ACTIONS(4126), + [anon_sym_alignas] = ACTIONS(4126), + [anon_sym__Alignas] = ACTIONS(4126), + [sym_primitive_type] = ACTIONS(4126), + [anon_sym_enum] = ACTIONS(4126), + [anon_sym_class] = ACTIONS(4126), + [anon_sym_struct] = ACTIONS(4126), + [anon_sym_union] = ACTIONS(4126), + [anon_sym_if] = ACTIONS(4126), + [anon_sym_switch] = ACTIONS(4126), + [anon_sym_case] = ACTIONS(4126), + [anon_sym_default] = ACTIONS(4126), + [anon_sym_while] = ACTIONS(4126), + [anon_sym_do] = ACTIONS(4126), + [anon_sym_for] = ACTIONS(4126), + [anon_sym_return] = ACTIONS(4126), + [anon_sym_break] = ACTIONS(4126), + [anon_sym_continue] = ACTIONS(4126), + [anon_sym_goto] = ACTIONS(4126), + [anon_sym___try] = ACTIONS(4126), + [anon_sym___leave] = ACTIONS(4126), + [anon_sym_not] = ACTIONS(4126), + [anon_sym_compl] = ACTIONS(4126), + [anon_sym_DASH_DASH] = ACTIONS(4128), + [anon_sym_PLUS_PLUS] = ACTIONS(4128), + [anon_sym_sizeof] = ACTIONS(4126), + [anon_sym___alignof__] = ACTIONS(4126), + [anon_sym___alignof] = ACTIONS(4126), + [anon_sym__alignof] = ACTIONS(4126), + [anon_sym_alignof] = ACTIONS(4126), + [anon_sym__Alignof] = ACTIONS(4126), + [anon_sym_offsetof] = ACTIONS(4126), + [anon_sym__Generic] = ACTIONS(4126), + [anon_sym_typename] = ACTIONS(4126), + [anon_sym_asm] = ACTIONS(4126), + [anon_sym___asm__] = ACTIONS(4126), + [anon_sym___asm] = ACTIONS(4126), + [sym_number_literal] = ACTIONS(4128), + [anon_sym_L_SQUOTE] = ACTIONS(4128), + [anon_sym_u_SQUOTE] = ACTIONS(4128), + [anon_sym_U_SQUOTE] = ACTIONS(4128), + [anon_sym_u8_SQUOTE] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4128), + [anon_sym_L_DQUOTE] = ACTIONS(4128), + [anon_sym_u_DQUOTE] = ACTIONS(4128), + [anon_sym_U_DQUOTE] = ACTIONS(4128), + [anon_sym_u8_DQUOTE] = ACTIONS(4128), + [anon_sym_DQUOTE] = ACTIONS(4128), + [sym_true] = ACTIONS(4126), + [sym_false] = ACTIONS(4126), + [anon_sym_NULL] = ACTIONS(4126), + [anon_sym_nullptr] = ACTIONS(4126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4126), + [anon_sym_decltype] = ACTIONS(4126), + [anon_sym_explicit] = ACTIONS(4126), + [anon_sym_export] = ACTIONS(4126), + [anon_sym_module] = ACTIONS(4126), + [anon_sym_import] = ACTIONS(4126), + [anon_sym_template] = ACTIONS(4126), + [anon_sym_operator] = ACTIONS(4126), + [anon_sym_try] = ACTIONS(4126), + [anon_sym_delete] = ACTIONS(4126), + [anon_sym_throw] = ACTIONS(4126), + [anon_sym_namespace] = ACTIONS(4126), + [anon_sym_static_assert] = ACTIONS(4126), + [anon_sym_concept] = ACTIONS(4126), + [anon_sym_co_return] = ACTIONS(4126), + [anon_sym_co_yield] = ACTIONS(4126), + [anon_sym_R_DQUOTE] = ACTIONS(4128), + [anon_sym_LR_DQUOTE] = ACTIONS(4128), + [anon_sym_uR_DQUOTE] = ACTIONS(4128), + [anon_sym_UR_DQUOTE] = ACTIONS(4128), + [anon_sym_u8R_DQUOTE] = ACTIONS(4128), + [anon_sym_co_await] = ACTIONS(4126), + [anon_sym_new] = ACTIONS(4126), + [anon_sym_requires] = ACTIONS(4126), + [anon_sym_CARET_CARET] = ACTIONS(4128), + [anon_sym_LBRACK_COLON] = ACTIONS(4128), + [sym_this] = ACTIONS(4126), }, [STATE(455)] = { - [sym_identifier] = ACTIONS(4148), - [aux_sym_preproc_include_token1] = ACTIONS(4148), - [aux_sym_preproc_def_token1] = ACTIONS(4148), - [aux_sym_preproc_if_token1] = ACTIONS(4148), - [aux_sym_preproc_if_token2] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), - [aux_sym_preproc_else_token1] = ACTIONS(4148), - [aux_sym_preproc_elif_token1] = ACTIONS(4148), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4148), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4148), - [sym_preproc_directive] = ACTIONS(4148), - [anon_sym_LPAREN2] = ACTIONS(4150), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_TILDE] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4148), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_AMP_AMP] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4148), - [anon_sym_SEMI] = ACTIONS(4150), - [anon_sym___extension__] = ACTIONS(4148), - [anon_sym_typedef] = ACTIONS(4148), - [anon_sym_virtual] = ACTIONS(4148), - [anon_sym_extern] = ACTIONS(4148), - [anon_sym___attribute__] = ACTIONS(4148), - [anon_sym___attribute] = ACTIONS(4148), - [anon_sym_using] = ACTIONS(4148), - [anon_sym_COLON_COLON] = ACTIONS(4150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), - [anon_sym___declspec] = ACTIONS(4148), - [anon_sym___based] = ACTIONS(4148), - [anon_sym___cdecl] = ACTIONS(4148), - [anon_sym___clrcall] = ACTIONS(4148), - [anon_sym___stdcall] = ACTIONS(4148), - [anon_sym___fastcall] = ACTIONS(4148), - [anon_sym___thiscall] = ACTIONS(4148), - [anon_sym___vectorcall] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4150), - [anon_sym_signed] = ACTIONS(4148), - [anon_sym_unsigned] = ACTIONS(4148), - [anon_sym_long] = ACTIONS(4148), - [anon_sym_short] = ACTIONS(4148), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_static] = ACTIONS(4148), - [anon_sym_register] = ACTIONS(4148), - [anon_sym_inline] = ACTIONS(4148), - [anon_sym___inline] = ACTIONS(4148), - [anon_sym___inline__] = ACTIONS(4148), - [anon_sym___forceinline] = ACTIONS(4148), - [anon_sym_thread_local] = ACTIONS(4148), - [anon_sym___thread] = ACTIONS(4148), - [anon_sym_const] = ACTIONS(4148), - [anon_sym_constexpr] = ACTIONS(4148), - [anon_sym_volatile] = ACTIONS(4148), - [anon_sym_restrict] = ACTIONS(4148), - [anon_sym___restrict__] = ACTIONS(4148), - [anon_sym__Atomic] = ACTIONS(4148), - [anon_sym__Noreturn] = ACTIONS(4148), - [anon_sym_noreturn] = ACTIONS(4148), - [anon_sym__Nonnull] = ACTIONS(4148), - [anon_sym_mutable] = ACTIONS(4148), - [anon_sym_constinit] = ACTIONS(4148), - [anon_sym_consteval] = ACTIONS(4148), - [anon_sym_alignas] = ACTIONS(4148), - [anon_sym__Alignas] = ACTIONS(4148), - [sym_primitive_type] = ACTIONS(4148), - [anon_sym_enum] = ACTIONS(4148), - [anon_sym_class] = ACTIONS(4148), - [anon_sym_struct] = ACTIONS(4148), - [anon_sym_union] = ACTIONS(4148), - [anon_sym_if] = ACTIONS(4148), - [anon_sym_switch] = ACTIONS(4148), - [anon_sym_case] = ACTIONS(4148), - [anon_sym_default] = ACTIONS(4148), - [anon_sym_while] = ACTIONS(4148), - [anon_sym_do] = ACTIONS(4148), - [anon_sym_for] = ACTIONS(4148), - [anon_sym_return] = ACTIONS(4148), - [anon_sym_break] = ACTIONS(4148), - [anon_sym_continue] = ACTIONS(4148), - [anon_sym_goto] = ACTIONS(4148), - [anon_sym___try] = ACTIONS(4148), - [anon_sym___leave] = ACTIONS(4148), - [anon_sym_not] = ACTIONS(4148), - [anon_sym_compl] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4150), - [anon_sym_PLUS_PLUS] = ACTIONS(4150), - [anon_sym_sizeof] = ACTIONS(4148), - [anon_sym___alignof__] = ACTIONS(4148), - [anon_sym___alignof] = ACTIONS(4148), - [anon_sym__alignof] = ACTIONS(4148), - [anon_sym_alignof] = ACTIONS(4148), - [anon_sym__Alignof] = ACTIONS(4148), - [anon_sym_offsetof] = ACTIONS(4148), - [anon_sym__Generic] = ACTIONS(4148), - [anon_sym_typename] = ACTIONS(4148), - [anon_sym_asm] = ACTIONS(4148), - [anon_sym___asm__] = ACTIONS(4148), - [anon_sym___asm] = ACTIONS(4148), - [sym_number_literal] = ACTIONS(4150), - [anon_sym_L_SQUOTE] = ACTIONS(4150), - [anon_sym_u_SQUOTE] = ACTIONS(4150), - [anon_sym_U_SQUOTE] = ACTIONS(4150), - [anon_sym_u8_SQUOTE] = ACTIONS(4150), - [anon_sym_SQUOTE] = ACTIONS(4150), - [anon_sym_L_DQUOTE] = ACTIONS(4150), - [anon_sym_u_DQUOTE] = ACTIONS(4150), - [anon_sym_U_DQUOTE] = ACTIONS(4150), - [anon_sym_u8_DQUOTE] = ACTIONS(4150), - [anon_sym_DQUOTE] = ACTIONS(4150), - [sym_true] = ACTIONS(4148), - [sym_false] = ACTIONS(4148), - [anon_sym_NULL] = ACTIONS(4148), - [anon_sym_nullptr] = ACTIONS(4148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4148), - [anon_sym_decltype] = ACTIONS(4148), - [anon_sym_explicit] = ACTIONS(4148), - [anon_sym_export] = ACTIONS(4148), - [anon_sym_module] = ACTIONS(4148), - [anon_sym_import] = ACTIONS(4148), - [anon_sym_template] = ACTIONS(4148), - [anon_sym_operator] = ACTIONS(4148), - [anon_sym_try] = ACTIONS(4148), - [anon_sym_delete] = ACTIONS(4148), - [anon_sym_throw] = ACTIONS(4148), - [anon_sym_namespace] = ACTIONS(4148), - [anon_sym_static_assert] = ACTIONS(4148), - [anon_sym_concept] = ACTIONS(4148), - [anon_sym_co_return] = ACTIONS(4148), - [anon_sym_co_yield] = ACTIONS(4148), - [anon_sym_R_DQUOTE] = ACTIONS(4150), - [anon_sym_LR_DQUOTE] = ACTIONS(4150), - [anon_sym_uR_DQUOTE] = ACTIONS(4150), - [anon_sym_UR_DQUOTE] = ACTIONS(4150), - [anon_sym_u8R_DQUOTE] = ACTIONS(4150), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4148), - [anon_sym_requires] = ACTIONS(4148), - [anon_sym_CARET_CARET] = ACTIONS(4150), - [anon_sym_LBRACK_COLON] = ACTIONS(4150), - [sym_this] = ACTIONS(4148), + [sym_catch_clause] = STATE(455), + [aux_sym_constructor_try_statement_repeat1] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym___attribute] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym__Nonnull] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym__Alignas] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [anon_sym___asm] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_export] = ACTIONS(3159), + [anon_sym_module] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_catch] = ACTIONS(4130), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3159), }, [STATE(456)] = { - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_include_token1] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token2] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [aux_sym_preproc_else_token1] = ACTIONS(4152), - [aux_sym_preproc_elif_token1] = ACTIONS(4152), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_PLUS] = ACTIONS(4152), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym___cdecl] = ACTIONS(4152), - [anon_sym___clrcall] = ACTIONS(4152), - [anon_sym___stdcall] = ACTIONS(4152), - [anon_sym___fastcall] = ACTIONS(4152), - [anon_sym___thiscall] = ACTIONS(4152), - [anon_sym___vectorcall] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4154), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_if] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(4152), - [anon_sym_case] = ACTIONS(4152), - [anon_sym_default] = ACTIONS(4152), - [anon_sym_while] = ACTIONS(4152), - [anon_sym_do] = ACTIONS(4152), - [anon_sym_for] = ACTIONS(4152), - [anon_sym_return] = ACTIONS(4152), - [anon_sym_break] = ACTIONS(4152), - [anon_sym_continue] = ACTIONS(4152), - [anon_sym_goto] = ACTIONS(4152), - [anon_sym___try] = ACTIONS(4152), - [anon_sym___leave] = ACTIONS(4152), - [anon_sym_not] = ACTIONS(4152), - [anon_sym_compl] = ACTIONS(4152), - [anon_sym_DASH_DASH] = ACTIONS(4154), - [anon_sym_PLUS_PLUS] = ACTIONS(4154), - [anon_sym_sizeof] = ACTIONS(4152), - [anon_sym___alignof__] = ACTIONS(4152), - [anon_sym___alignof] = ACTIONS(4152), - [anon_sym__alignof] = ACTIONS(4152), - [anon_sym_alignof] = ACTIONS(4152), - [anon_sym__Alignof] = ACTIONS(4152), - [anon_sym_offsetof] = ACTIONS(4152), - [anon_sym__Generic] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), - [anon_sym_asm] = ACTIONS(4152), - [anon_sym___asm__] = ACTIONS(4152), - [anon_sym___asm] = ACTIONS(4152), - [sym_number_literal] = ACTIONS(4154), - [anon_sym_L_SQUOTE] = ACTIONS(4154), - [anon_sym_u_SQUOTE] = ACTIONS(4154), - [anon_sym_U_SQUOTE] = ACTIONS(4154), - [anon_sym_u8_SQUOTE] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(4154), - [anon_sym_u_DQUOTE] = ACTIONS(4154), - [anon_sym_U_DQUOTE] = ACTIONS(4154), - [anon_sym_u8_DQUOTE] = ACTIONS(4154), - [anon_sym_DQUOTE] = ACTIONS(4154), - [sym_true] = ACTIONS(4152), - [sym_false] = ACTIONS(4152), - [anon_sym_NULL] = ACTIONS(4152), - [anon_sym_nullptr] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_export] = ACTIONS(4152), - [anon_sym_module] = ACTIONS(4152), - [anon_sym_import] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_try] = ACTIONS(4152), - [anon_sym_delete] = ACTIONS(4152), - [anon_sym_throw] = ACTIONS(4152), - [anon_sym_namespace] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_concept] = ACTIONS(4152), - [anon_sym_co_return] = ACTIONS(4152), - [anon_sym_co_yield] = ACTIONS(4152), - [anon_sym_R_DQUOTE] = ACTIONS(4154), - [anon_sym_LR_DQUOTE] = ACTIONS(4154), - [anon_sym_uR_DQUOTE] = ACTIONS(4154), - [anon_sym_UR_DQUOTE] = ACTIONS(4154), - [anon_sym_u8R_DQUOTE] = ACTIONS(4154), - [anon_sym_co_await] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_requires] = ACTIONS(4152), - [anon_sym_CARET_CARET] = ACTIONS(4154), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), - [sym_this] = ACTIONS(4152), + [sym_type_qualifier] = STATE(5044), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(2414), + [sym_sized_type_specifier] = STATE(3045), + [sym_enum_specifier] = STATE(3045), + [sym_struct_specifier] = STATE(3045), + [sym_union_specifier] = STATE(3045), + [sym_expression] = STATE(5110), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_type_descriptor] = STATE(5558), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_placeholder_type_specifier] = STATE(3045), + [sym_decltype_auto] = STATE(3013), + [sym_decltype] = STATE(2934), + [sym_class_specifier] = STATE(3045), + [sym__class_name] = STATE(10296), + [sym_dependent_type] = STATE(3045), + [sym_template_type] = STATE(2942), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7965), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(3046), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(3116), + [sym__splice_specialization_specifier] = STATE(2640), + [sym_splice_type_specifier] = STATE(3047), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [aux_sym__type_definition_type_repeat1] = STATE(5044), + [aux_sym_sized_type_specifier_repeat1] = STATE(2177), + [sym_identifier] = ACTIONS(4133), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2236), + [anon_sym_COLON_COLON] = ACTIONS(4135), + [anon_sym_signed] = ACTIONS(4137), + [anon_sym_unsigned] = ACTIONS(4137), + [anon_sym_long] = ACTIONS(4137), + [anon_sym_short] = ACTIONS(4137), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4139), + [anon_sym_enum] = ACTIONS(4141), + [anon_sym_class] = ACTIONS(4143), + [anon_sym_struct] = ACTIONS(4145), + [anon_sym_union] = ACTIONS(4147), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(4149), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4151), + [anon_sym_decltype] = ACTIONS(4153), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, [STATE(457)] = { - [sym_identifier] = ACTIONS(4132), - [aux_sym_preproc_include_token1] = ACTIONS(4132), - [aux_sym_preproc_def_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token2] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), - [aux_sym_preproc_else_token1] = ACTIONS(4132), - [aux_sym_preproc_elif_token1] = ACTIONS(4132), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4132), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4132), - [sym_preproc_directive] = ACTIONS(4132), - [anon_sym_LPAREN2] = ACTIONS(4134), - [anon_sym_BANG] = ACTIONS(4134), - [anon_sym_TILDE] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym___extension__] = ACTIONS(4132), - [anon_sym_typedef] = ACTIONS(4132), - [anon_sym_virtual] = ACTIONS(4132), - [anon_sym_extern] = ACTIONS(4132), - [anon_sym___attribute__] = ACTIONS(4132), - [anon_sym___attribute] = ACTIONS(4132), - [anon_sym_using] = ACTIONS(4132), - [anon_sym_COLON_COLON] = ACTIONS(4134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), - [anon_sym___declspec] = ACTIONS(4132), - [anon_sym___based] = ACTIONS(4132), - [anon_sym___cdecl] = ACTIONS(4132), - [anon_sym___clrcall] = ACTIONS(4132), - [anon_sym___stdcall] = ACTIONS(4132), - [anon_sym___fastcall] = ACTIONS(4132), - [anon_sym___thiscall] = ACTIONS(4132), - [anon_sym___vectorcall] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4134), - [anon_sym_signed] = ACTIONS(4132), - [anon_sym_unsigned] = ACTIONS(4132), - [anon_sym_long] = ACTIONS(4132), - [anon_sym_short] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_static] = ACTIONS(4132), - [anon_sym_register] = ACTIONS(4132), - [anon_sym_inline] = ACTIONS(4132), - [anon_sym___inline] = ACTIONS(4132), - [anon_sym___inline__] = ACTIONS(4132), - [anon_sym___forceinline] = ACTIONS(4132), - [anon_sym_thread_local] = ACTIONS(4132), - [anon_sym___thread] = ACTIONS(4132), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_constexpr] = ACTIONS(4132), - [anon_sym_volatile] = ACTIONS(4132), - [anon_sym_restrict] = ACTIONS(4132), - [anon_sym___restrict__] = ACTIONS(4132), - [anon_sym__Atomic] = ACTIONS(4132), - [anon_sym__Noreturn] = ACTIONS(4132), - [anon_sym_noreturn] = ACTIONS(4132), - [anon_sym__Nonnull] = ACTIONS(4132), - [anon_sym_mutable] = ACTIONS(4132), - [anon_sym_constinit] = ACTIONS(4132), - [anon_sym_consteval] = ACTIONS(4132), - [anon_sym_alignas] = ACTIONS(4132), - [anon_sym__Alignas] = ACTIONS(4132), - [sym_primitive_type] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_class] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_switch] = ACTIONS(4132), - [anon_sym_case] = ACTIONS(4132), - [anon_sym_default] = ACTIONS(4132), - [anon_sym_while] = ACTIONS(4132), - [anon_sym_do] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym___try] = ACTIONS(4132), - [anon_sym___leave] = ACTIONS(4132), - [anon_sym_not] = ACTIONS(4132), - [anon_sym_compl] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_sizeof] = ACTIONS(4132), - [anon_sym___alignof__] = ACTIONS(4132), - [anon_sym___alignof] = ACTIONS(4132), - [anon_sym__alignof] = ACTIONS(4132), - [anon_sym_alignof] = ACTIONS(4132), - [anon_sym__Alignof] = ACTIONS(4132), - [anon_sym_offsetof] = ACTIONS(4132), - [anon_sym__Generic] = ACTIONS(4132), - [anon_sym_typename] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [anon_sym___asm] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4134), - [anon_sym_u_SQUOTE] = ACTIONS(4134), - [anon_sym_U_SQUOTE] = ACTIONS(4134), - [anon_sym_u8_SQUOTE] = ACTIONS(4134), - [anon_sym_SQUOTE] = ACTIONS(4134), - [anon_sym_L_DQUOTE] = ACTIONS(4134), - [anon_sym_u_DQUOTE] = ACTIONS(4134), - [anon_sym_U_DQUOTE] = ACTIONS(4134), - [anon_sym_u8_DQUOTE] = ACTIONS(4134), - [anon_sym_DQUOTE] = ACTIONS(4134), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [anon_sym_NULL] = ACTIONS(4132), - [anon_sym_nullptr] = ACTIONS(4132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4132), - [anon_sym_decltype] = ACTIONS(4132), - [anon_sym_explicit] = ACTIONS(4132), - [anon_sym_export] = ACTIONS(4132), - [anon_sym_module] = ACTIONS(4132), - [anon_sym_import] = ACTIONS(4132), - [anon_sym_template] = ACTIONS(4132), - [anon_sym_operator] = ACTIONS(4132), - [anon_sym_try] = ACTIONS(4132), - [anon_sym_delete] = ACTIONS(4132), - [anon_sym_throw] = ACTIONS(4132), - [anon_sym_namespace] = ACTIONS(4132), - [anon_sym_static_assert] = ACTIONS(4132), - [anon_sym_concept] = ACTIONS(4132), - [anon_sym_co_return] = ACTIONS(4132), - [anon_sym_co_yield] = ACTIONS(4132), - [anon_sym_R_DQUOTE] = ACTIONS(4134), - [anon_sym_LR_DQUOTE] = ACTIONS(4134), - [anon_sym_uR_DQUOTE] = ACTIONS(4134), - [anon_sym_UR_DQUOTE] = ACTIONS(4134), - [anon_sym_u8R_DQUOTE] = ACTIONS(4134), - [anon_sym_co_await] = ACTIONS(4132), - [anon_sym_new] = ACTIONS(4132), - [anon_sym_requires] = ACTIONS(4132), - [anon_sym_CARET_CARET] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4134), - [sym_this] = ACTIONS(4132), + [sym_type_qualifier] = STATE(5165), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(2372), + [sym_sized_type_specifier] = STATE(2173), + [sym_enum_specifier] = STATE(2173), + [sym_struct_specifier] = STATE(2173), + [sym_union_specifier] = STATE(2173), + [sym_expression] = STATE(4850), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_type_descriptor] = STATE(3937), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_placeholder_type_specifier] = STATE(2173), + [sym_decltype_auto] = STATE(2172), + [sym_decltype] = STATE(2148), + [sym_class_specifier] = STATE(2173), + [sym__class_name] = STATE(10219), + [sym_dependent_type] = STATE(2173), + [sym_template_type] = STATE(2144), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7979), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(2226), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(2280), + [sym__splice_specialization_specifier] = STATE(2149), + [sym_splice_type_specifier] = STATE(2171), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [aux_sym__type_definition_type_repeat1] = STATE(5165), + [aux_sym_sized_type_specifier_repeat1] = STATE(2070), + [sym_identifier] = ACTIONS(4155), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4159), + [anon_sym_COLON_COLON] = ACTIONS(4161), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4165), + [anon_sym_enum] = ACTIONS(4167), + [anon_sym_class] = ACTIONS(4169), + [anon_sym_struct] = ACTIONS(4171), + [anon_sym_union] = ACTIONS(4173), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(4177), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4179), + [anon_sym_decltype] = ACTIONS(4181), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(458)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [aux_sym_preproc_else_token1] = ACTIONS(4156), - [aux_sym_preproc_elif_token1] = ACTIONS(4156), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym___try] = ACTIONS(4156), - [anon_sym___leave] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_export] = ACTIONS(4156), - [anon_sym_module] = ACTIONS(4156), - [anon_sym_import] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), + [sym_type_qualifier] = STATE(5147), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(2489), + [sym_sized_type_specifier] = STATE(3097), + [sym_enum_specifier] = STATE(3097), + [sym_struct_specifier] = STATE(3097), + [sym_union_specifier] = STATE(3097), + [sym_expression] = STATE(5334), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_type_descriptor] = STATE(5820), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_placeholder_type_specifier] = STATE(3097), + [sym_decltype_auto] = STATE(3096), + [sym_decltype] = STATE(2978), + [sym_class_specifier] = STATE(3097), + [sym__class_name] = STATE(10511), + [sym_dependent_type] = STATE(3097), + [sym_template_type] = STATE(2979), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7961), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(3111), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(3297), + [sym__splice_specialization_specifier] = STATE(2652), + [sym_splice_type_specifier] = STATE(3108), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [aux_sym__type_definition_type_repeat1] = STATE(5147), + [aux_sym_sized_type_specifier_repeat1] = STATE(2267), + [sym_identifier] = ACTIONS(4183), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4187), + [anon_sym_COLON_COLON] = ACTIONS(4189), + [anon_sym_signed] = ACTIONS(4191), + [anon_sym_unsigned] = ACTIONS(4191), + [anon_sym_long] = ACTIONS(4191), + [anon_sym_short] = ACTIONS(4191), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4193), + [anon_sym_enum] = ACTIONS(4195), + [anon_sym_class] = ACTIONS(4197), + [anon_sym_struct] = ACTIONS(4199), + [anon_sym_union] = ACTIONS(4201), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(4205), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4207), + [anon_sym_decltype] = ACTIONS(4209), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, [STATE(459)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [aux_sym_preproc_else_token1] = ACTIONS(4156), - [aux_sym_preproc_elif_token1] = ACTIONS(4156), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym___try] = ACTIONS(4156), - [anon_sym___leave] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_export] = ACTIONS(4156), - [anon_sym_module] = ACTIONS(4156), - [anon_sym_import] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), + [sym_type_qualifier] = STATE(5074), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(2266), + [sym_sized_type_specifier] = STATE(2173), + [sym_enum_specifier] = STATE(2173), + [sym_struct_specifier] = STATE(2173), + [sym_union_specifier] = STATE(2173), + [sym_expression] = STATE(4719), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_type_descriptor] = STATE(3937), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_placeholder_type_specifier] = STATE(2173), + [sym_decltype_auto] = STATE(2172), + [sym_decltype] = STATE(2148), + [sym_class_specifier] = STATE(2173), + [sym__class_name] = STATE(10219), + [sym_dependent_type] = STATE(2173), + [sym_template_type] = STATE(2144), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7979), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(2226), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(2280), + [sym__splice_specialization_specifier] = STATE(2149), + [sym_splice_type_specifier] = STATE(2171), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [aux_sym__type_definition_type_repeat1] = STATE(5074), + [aux_sym_sized_type_specifier_repeat1] = STATE(2070), + [sym_identifier] = ACTIONS(4211), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(4215), + [anon_sym_COLON_COLON] = ACTIONS(4217), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4165), + [anon_sym_enum] = ACTIONS(4167), + [anon_sym_class] = ACTIONS(4169), + [anon_sym_struct] = ACTIONS(4171), + [anon_sym_union] = ACTIONS(4173), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(4177), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4179), + [anon_sym_decltype] = ACTIONS(4181), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(460)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_include_token1] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [aux_sym_preproc_else_token1] = ACTIONS(4160), - [aux_sym_preproc_elif_token1] = ACTIONS(4160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym___cdecl] = ACTIONS(4160), - [anon_sym___clrcall] = ACTIONS(4160), - [anon_sym___stdcall] = ACTIONS(4160), - [anon_sym___fastcall] = ACTIONS(4160), - [anon_sym___thiscall] = ACTIONS(4160), - [anon_sym___vectorcall] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_case] = ACTIONS(4160), - [anon_sym_default] = ACTIONS(4160), - [anon_sym_while] = ACTIONS(4160), - [anon_sym_do] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym___try] = ACTIONS(4160), - [anon_sym___leave] = ACTIONS(4160), - [anon_sym_not] = ACTIONS(4160), - [anon_sym_compl] = ACTIONS(4160), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_sizeof] = ACTIONS(4160), - [anon_sym___alignof__] = ACTIONS(4160), - [anon_sym___alignof] = ACTIONS(4160), - [anon_sym__alignof] = ACTIONS(4160), - [anon_sym_alignof] = ACTIONS(4160), - [anon_sym__Alignof] = ACTIONS(4160), - [anon_sym_offsetof] = ACTIONS(4160), - [anon_sym__Generic] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym___asm__] = ACTIONS(4160), - [anon_sym___asm] = ACTIONS(4160), - [sym_number_literal] = ACTIONS(4162), - [anon_sym_L_SQUOTE] = ACTIONS(4162), - [anon_sym_u_SQUOTE] = ACTIONS(4162), - [anon_sym_U_SQUOTE] = ACTIONS(4162), - [anon_sym_u8_SQUOTE] = ACTIONS(4162), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_L_DQUOTE] = ACTIONS(4162), - [anon_sym_u_DQUOTE] = ACTIONS(4162), - [anon_sym_U_DQUOTE] = ACTIONS(4162), - [anon_sym_u8_DQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [anon_sym_NULL] = ACTIONS(4160), - [anon_sym_nullptr] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_export] = ACTIONS(4160), - [anon_sym_module] = ACTIONS(4160), - [anon_sym_import] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_try] = ACTIONS(4160), - [anon_sym_delete] = ACTIONS(4160), - [anon_sym_throw] = ACTIONS(4160), - [anon_sym_namespace] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_concept] = ACTIONS(4160), - [anon_sym_co_return] = ACTIONS(4160), - [anon_sym_co_yield] = ACTIONS(4160), - [anon_sym_R_DQUOTE] = ACTIONS(4162), - [anon_sym_LR_DQUOTE] = ACTIONS(4162), - [anon_sym_uR_DQUOTE] = ACTIONS(4162), - [anon_sym_UR_DQUOTE] = ACTIONS(4162), - [anon_sym_u8R_DQUOTE] = ACTIONS(4162), - [anon_sym_co_await] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4160), - [anon_sym_requires] = ACTIONS(4160), - [anon_sym_CARET_CARET] = ACTIONS(4162), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - [sym_this] = ACTIONS(4160), + [sym_identifier] = ACTIONS(4219), + [aux_sym_preproc_include_token1] = ACTIONS(4219), + [aux_sym_preproc_def_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token2] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4219), + [aux_sym_preproc_else_token1] = ACTIONS(4219), + [aux_sym_preproc_elif_token1] = ACTIONS(4219), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4219), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4219), + [sym_preproc_directive] = ACTIONS(4219), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym___extension__] = ACTIONS(4219), + [anon_sym_typedef] = ACTIONS(4219), + [anon_sym_virtual] = ACTIONS(4219), + [anon_sym_extern] = ACTIONS(4219), + [anon_sym___attribute__] = ACTIONS(4219), + [anon_sym___attribute] = ACTIONS(4219), + [anon_sym_using] = ACTIONS(4219), + [anon_sym_COLON_COLON] = ACTIONS(4221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4221), + [anon_sym___declspec] = ACTIONS(4219), + [anon_sym___based] = ACTIONS(4219), + [anon_sym___cdecl] = ACTIONS(4219), + [anon_sym___clrcall] = ACTIONS(4219), + [anon_sym___stdcall] = ACTIONS(4219), + [anon_sym___fastcall] = ACTIONS(4219), + [anon_sym___thiscall] = ACTIONS(4219), + [anon_sym___vectorcall] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4221), + [anon_sym_signed] = ACTIONS(4219), + [anon_sym_unsigned] = ACTIONS(4219), + [anon_sym_long] = ACTIONS(4219), + [anon_sym_short] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_static] = ACTIONS(4219), + [anon_sym_register] = ACTIONS(4219), + [anon_sym_inline] = ACTIONS(4219), + [anon_sym___inline] = ACTIONS(4219), + [anon_sym___inline__] = ACTIONS(4219), + [anon_sym___forceinline] = ACTIONS(4219), + [anon_sym_thread_local] = ACTIONS(4219), + [anon_sym___thread] = ACTIONS(4219), + [anon_sym_const] = ACTIONS(4219), + [anon_sym_constexpr] = ACTIONS(4219), + [anon_sym_volatile] = ACTIONS(4219), + [anon_sym_restrict] = ACTIONS(4219), + [anon_sym___restrict__] = ACTIONS(4219), + [anon_sym__Atomic] = ACTIONS(4219), + [anon_sym__Noreturn] = ACTIONS(4219), + [anon_sym_noreturn] = ACTIONS(4219), + [anon_sym__Nonnull] = ACTIONS(4219), + [anon_sym_mutable] = ACTIONS(4219), + [anon_sym_constinit] = ACTIONS(4219), + [anon_sym_consteval] = ACTIONS(4219), + [anon_sym_alignas] = ACTIONS(4219), + [anon_sym__Alignas] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(4219), + [anon_sym_enum] = ACTIONS(4219), + [anon_sym_class] = ACTIONS(4219), + [anon_sym_struct] = ACTIONS(4219), + [anon_sym_union] = ACTIONS(4219), + [anon_sym_if] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_case] = ACTIONS(4219), + [anon_sym_default] = ACTIONS(4219), + [anon_sym_while] = ACTIONS(4219), + [anon_sym_do] = ACTIONS(4219), + [anon_sym_for] = ACTIONS(4219), + [anon_sym_return] = ACTIONS(4219), + [anon_sym_break] = ACTIONS(4219), + [anon_sym_continue] = ACTIONS(4219), + [anon_sym_goto] = ACTIONS(4219), + [anon_sym___try] = ACTIONS(4219), + [anon_sym___leave] = ACTIONS(4219), + [anon_sym_not] = ACTIONS(4219), + [anon_sym_compl] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_sizeof] = ACTIONS(4219), + [anon_sym___alignof__] = ACTIONS(4219), + [anon_sym___alignof] = ACTIONS(4219), + [anon_sym__alignof] = ACTIONS(4219), + [anon_sym_alignof] = ACTIONS(4219), + [anon_sym__Alignof] = ACTIONS(4219), + [anon_sym_offsetof] = ACTIONS(4219), + [anon_sym__Generic] = ACTIONS(4219), + [anon_sym_typename] = ACTIONS(4219), + [anon_sym_asm] = ACTIONS(4219), + [anon_sym___asm__] = ACTIONS(4219), + [anon_sym___asm] = ACTIONS(4219), + [sym_number_literal] = ACTIONS(4221), + [anon_sym_L_SQUOTE] = ACTIONS(4221), + [anon_sym_u_SQUOTE] = ACTIONS(4221), + [anon_sym_U_SQUOTE] = ACTIONS(4221), + [anon_sym_u8_SQUOTE] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_L_DQUOTE] = ACTIONS(4221), + [anon_sym_u_DQUOTE] = ACTIONS(4221), + [anon_sym_U_DQUOTE] = ACTIONS(4221), + [anon_sym_u8_DQUOTE] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4221), + [sym_true] = ACTIONS(4219), + [sym_false] = ACTIONS(4219), + [anon_sym_NULL] = ACTIONS(4219), + [anon_sym_nullptr] = ACTIONS(4219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4219), + [anon_sym_decltype] = ACTIONS(4219), + [anon_sym_explicit] = ACTIONS(4219), + [anon_sym_export] = ACTIONS(4219), + [anon_sym_module] = ACTIONS(4219), + [anon_sym_import] = ACTIONS(4219), + [anon_sym_template] = ACTIONS(4219), + [anon_sym_operator] = ACTIONS(4219), + [anon_sym_try] = ACTIONS(4219), + [anon_sym_delete] = ACTIONS(4219), + [anon_sym_throw] = ACTIONS(4219), + [anon_sym_namespace] = ACTIONS(4219), + [anon_sym_static_assert] = ACTIONS(4219), + [anon_sym_concept] = ACTIONS(4219), + [anon_sym_co_return] = ACTIONS(4219), + [anon_sym_co_yield] = ACTIONS(4219), + [anon_sym_R_DQUOTE] = ACTIONS(4221), + [anon_sym_LR_DQUOTE] = ACTIONS(4221), + [anon_sym_uR_DQUOTE] = ACTIONS(4221), + [anon_sym_UR_DQUOTE] = ACTIONS(4221), + [anon_sym_u8R_DQUOTE] = ACTIONS(4221), + [anon_sym_co_await] = ACTIONS(4219), + [anon_sym_new] = ACTIONS(4219), + [anon_sym_requires] = ACTIONS(4219), + [anon_sym_CARET_CARET] = ACTIONS(4221), + [anon_sym_LBRACK_COLON] = ACTIONS(4221), + [sym_this] = ACTIONS(4219), }, [STATE(461)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_include_token1] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [aux_sym_preproc_else_token1] = ACTIONS(4160), - [aux_sym_preproc_elif_token1] = ACTIONS(4160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym___cdecl] = ACTIONS(4160), - [anon_sym___clrcall] = ACTIONS(4160), - [anon_sym___stdcall] = ACTIONS(4160), - [anon_sym___fastcall] = ACTIONS(4160), - [anon_sym___thiscall] = ACTIONS(4160), - [anon_sym___vectorcall] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_case] = ACTIONS(4160), - [anon_sym_default] = ACTIONS(4160), - [anon_sym_while] = ACTIONS(4160), - [anon_sym_do] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym___try] = ACTIONS(4160), - [anon_sym___leave] = ACTIONS(4160), - [anon_sym_not] = ACTIONS(4160), - [anon_sym_compl] = ACTIONS(4160), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_sizeof] = ACTIONS(4160), - [anon_sym___alignof__] = ACTIONS(4160), - [anon_sym___alignof] = ACTIONS(4160), - [anon_sym__alignof] = ACTIONS(4160), - [anon_sym_alignof] = ACTIONS(4160), - [anon_sym__Alignof] = ACTIONS(4160), - [anon_sym_offsetof] = ACTIONS(4160), - [anon_sym__Generic] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym___asm__] = ACTIONS(4160), - [anon_sym___asm] = ACTIONS(4160), - [sym_number_literal] = ACTIONS(4162), - [anon_sym_L_SQUOTE] = ACTIONS(4162), - [anon_sym_u_SQUOTE] = ACTIONS(4162), - [anon_sym_U_SQUOTE] = ACTIONS(4162), - [anon_sym_u8_SQUOTE] = ACTIONS(4162), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_L_DQUOTE] = ACTIONS(4162), - [anon_sym_u_DQUOTE] = ACTIONS(4162), - [anon_sym_U_DQUOTE] = ACTIONS(4162), - [anon_sym_u8_DQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [anon_sym_NULL] = ACTIONS(4160), - [anon_sym_nullptr] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_export] = ACTIONS(4160), - [anon_sym_module] = ACTIONS(4160), - [anon_sym_import] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_try] = ACTIONS(4160), - [anon_sym_delete] = ACTIONS(4160), - [anon_sym_throw] = ACTIONS(4160), - [anon_sym_namespace] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_concept] = ACTIONS(4160), - [anon_sym_co_return] = ACTIONS(4160), - [anon_sym_co_yield] = ACTIONS(4160), - [anon_sym_R_DQUOTE] = ACTIONS(4162), - [anon_sym_LR_DQUOTE] = ACTIONS(4162), - [anon_sym_uR_DQUOTE] = ACTIONS(4162), - [anon_sym_UR_DQUOTE] = ACTIONS(4162), - [anon_sym_u8R_DQUOTE] = ACTIONS(4162), - [anon_sym_co_await] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4160), - [anon_sym_requires] = ACTIONS(4160), - [anon_sym_CARET_CARET] = ACTIONS(4162), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - [sym_this] = ACTIONS(4160), + [sym_identifier] = ACTIONS(4223), + [aux_sym_preproc_include_token1] = ACTIONS(4223), + [aux_sym_preproc_def_token1] = ACTIONS(4223), + [aux_sym_preproc_if_token1] = ACTIONS(4223), + [aux_sym_preproc_if_token2] = ACTIONS(4223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4223), + [aux_sym_preproc_else_token1] = ACTIONS(4223), + [aux_sym_preproc_elif_token1] = ACTIONS(4223), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4223), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4223), + [sym_preproc_directive] = ACTIONS(4223), + [anon_sym_LPAREN2] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4225), + [anon_sym_TILDE] = ACTIONS(4225), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym___extension__] = ACTIONS(4223), + [anon_sym_typedef] = ACTIONS(4223), + [anon_sym_virtual] = ACTIONS(4223), + [anon_sym_extern] = ACTIONS(4223), + [anon_sym___attribute__] = ACTIONS(4223), + [anon_sym___attribute] = ACTIONS(4223), + [anon_sym_using] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4225), + [anon_sym___declspec] = ACTIONS(4223), + [anon_sym___based] = ACTIONS(4223), + [anon_sym___cdecl] = ACTIONS(4223), + [anon_sym___clrcall] = ACTIONS(4223), + [anon_sym___stdcall] = ACTIONS(4223), + [anon_sym___fastcall] = ACTIONS(4223), + [anon_sym___thiscall] = ACTIONS(4223), + [anon_sym___vectorcall] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_signed] = ACTIONS(4223), + [anon_sym_unsigned] = ACTIONS(4223), + [anon_sym_long] = ACTIONS(4223), + [anon_sym_short] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_static] = ACTIONS(4223), + [anon_sym_register] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym___inline] = ACTIONS(4223), + [anon_sym___inline__] = ACTIONS(4223), + [anon_sym___forceinline] = ACTIONS(4223), + [anon_sym_thread_local] = ACTIONS(4223), + [anon_sym___thread] = ACTIONS(4223), + [anon_sym_const] = ACTIONS(4223), + [anon_sym_constexpr] = ACTIONS(4223), + [anon_sym_volatile] = ACTIONS(4223), + [anon_sym_restrict] = ACTIONS(4223), + [anon_sym___restrict__] = ACTIONS(4223), + [anon_sym__Atomic] = ACTIONS(4223), + [anon_sym__Noreturn] = ACTIONS(4223), + [anon_sym_noreturn] = ACTIONS(4223), + [anon_sym__Nonnull] = ACTIONS(4223), + [anon_sym_mutable] = ACTIONS(4223), + [anon_sym_constinit] = ACTIONS(4223), + [anon_sym_consteval] = ACTIONS(4223), + [anon_sym_alignas] = ACTIONS(4223), + [anon_sym__Alignas] = ACTIONS(4223), + [sym_primitive_type] = ACTIONS(4223), + [anon_sym_enum] = ACTIONS(4223), + [anon_sym_class] = ACTIONS(4223), + [anon_sym_struct] = ACTIONS(4223), + [anon_sym_union] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_switch] = ACTIONS(4223), + [anon_sym_case] = ACTIONS(4223), + [anon_sym_default] = ACTIONS(4223), + [anon_sym_while] = ACTIONS(4223), + [anon_sym_do] = ACTIONS(4223), + [anon_sym_for] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_goto] = ACTIONS(4223), + [anon_sym___try] = ACTIONS(4223), + [anon_sym___leave] = ACTIONS(4223), + [anon_sym_not] = ACTIONS(4223), + [anon_sym_compl] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_sizeof] = ACTIONS(4223), + [anon_sym___alignof__] = ACTIONS(4223), + [anon_sym___alignof] = ACTIONS(4223), + [anon_sym__alignof] = ACTIONS(4223), + [anon_sym_alignof] = ACTIONS(4223), + [anon_sym__Alignof] = ACTIONS(4223), + [anon_sym_offsetof] = ACTIONS(4223), + [anon_sym__Generic] = ACTIONS(4223), + [anon_sym_typename] = ACTIONS(4223), + [anon_sym_asm] = ACTIONS(4223), + [anon_sym___asm__] = ACTIONS(4223), + [anon_sym___asm] = ACTIONS(4223), + [sym_number_literal] = ACTIONS(4225), + [anon_sym_L_SQUOTE] = ACTIONS(4225), + [anon_sym_u_SQUOTE] = ACTIONS(4225), + [anon_sym_U_SQUOTE] = ACTIONS(4225), + [anon_sym_u8_SQUOTE] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4225), + [anon_sym_L_DQUOTE] = ACTIONS(4225), + [anon_sym_u_DQUOTE] = ACTIONS(4225), + [anon_sym_U_DQUOTE] = ACTIONS(4225), + [anon_sym_u8_DQUOTE] = ACTIONS(4225), + [anon_sym_DQUOTE] = ACTIONS(4225), + [sym_true] = ACTIONS(4223), + [sym_false] = ACTIONS(4223), + [anon_sym_NULL] = ACTIONS(4223), + [anon_sym_nullptr] = ACTIONS(4223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4223), + [anon_sym_decltype] = ACTIONS(4223), + [anon_sym_explicit] = ACTIONS(4223), + [anon_sym_export] = ACTIONS(4223), + [anon_sym_module] = ACTIONS(4223), + [anon_sym_import] = ACTIONS(4223), + [anon_sym_template] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_delete] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_namespace] = ACTIONS(4223), + [anon_sym_static_assert] = ACTIONS(4223), + [anon_sym_concept] = ACTIONS(4223), + [anon_sym_co_return] = ACTIONS(4223), + [anon_sym_co_yield] = ACTIONS(4223), + [anon_sym_R_DQUOTE] = ACTIONS(4225), + [anon_sym_LR_DQUOTE] = ACTIONS(4225), + [anon_sym_uR_DQUOTE] = ACTIONS(4225), + [anon_sym_UR_DQUOTE] = ACTIONS(4225), + [anon_sym_u8R_DQUOTE] = ACTIONS(4225), + [anon_sym_co_await] = ACTIONS(4223), + [anon_sym_new] = ACTIONS(4223), + [anon_sym_requires] = ACTIONS(4223), + [anon_sym_CARET_CARET] = ACTIONS(4225), + [anon_sym_LBRACK_COLON] = ACTIONS(4225), + [sym_this] = ACTIONS(4223), }, [STATE(462)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_include_token1] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token2] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [aux_sym_preproc_else_token1] = ACTIONS(4164), - [aux_sym_preproc_elif_token1] = ACTIONS(4164), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [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(4166), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = 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), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_switch] = ACTIONS(4164), - [anon_sym_case] = ACTIONS(4164), - [anon_sym_default] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_do] = ACTIONS(4164), - [anon_sym_for] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_goto] = ACTIONS(4164), - [anon_sym___try] = ACTIONS(4164), - [anon_sym___leave] = ACTIONS(4164), - [anon_sym_not] = ACTIONS(4164), - [anon_sym_compl] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_sizeof] = ACTIONS(4164), - [anon_sym___alignof__] = ACTIONS(4164), - [anon_sym___alignof] = ACTIONS(4164), - [anon_sym__alignof] = ACTIONS(4164), - [anon_sym_alignof] = ACTIONS(4164), - [anon_sym__Alignof] = ACTIONS(4164), - [anon_sym_offsetof] = ACTIONS(4164), - [anon_sym__Generic] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [anon_sym_asm] = ACTIONS(4164), - [anon_sym___asm__] = ACTIONS(4164), - [anon_sym___asm] = ACTIONS(4164), - [sym_number_literal] = ACTIONS(4166), - [anon_sym_L_SQUOTE] = ACTIONS(4166), - [anon_sym_u_SQUOTE] = ACTIONS(4166), - [anon_sym_U_SQUOTE] = ACTIONS(4166), - [anon_sym_u8_SQUOTE] = ACTIONS(4166), - [anon_sym_SQUOTE] = ACTIONS(4166), - [anon_sym_L_DQUOTE] = ACTIONS(4166), - [anon_sym_u_DQUOTE] = ACTIONS(4166), - [anon_sym_U_DQUOTE] = ACTIONS(4166), - [anon_sym_u8_DQUOTE] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [sym_true] = ACTIONS(4164), - [sym_false] = ACTIONS(4164), - [anon_sym_NULL] = ACTIONS(4164), - [anon_sym_nullptr] = ACTIONS(4164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_export] = ACTIONS(4164), - [anon_sym_module] = ACTIONS(4164), - [anon_sym_import] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_delete] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_namespace] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_concept] = ACTIONS(4164), - [anon_sym_co_return] = ACTIONS(4164), - [anon_sym_co_yield] = ACTIONS(4164), - [anon_sym_R_DQUOTE] = ACTIONS(4166), - [anon_sym_LR_DQUOTE] = ACTIONS(4166), - [anon_sym_uR_DQUOTE] = ACTIONS(4166), - [anon_sym_UR_DQUOTE] = ACTIONS(4166), - [anon_sym_u8R_DQUOTE] = ACTIONS(4166), - [anon_sym_co_await] = ACTIONS(4164), - [anon_sym_new] = ACTIONS(4164), - [anon_sym_requires] = ACTIONS(4164), - [anon_sym_CARET_CARET] = ACTIONS(4166), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), - [sym_this] = ACTIONS(4164), + [sym_identifier] = ACTIONS(4227), + [aux_sym_preproc_include_token1] = ACTIONS(4227), + [aux_sym_preproc_def_token1] = ACTIONS(4227), + [aux_sym_preproc_if_token1] = ACTIONS(4227), + [aux_sym_preproc_if_token2] = ACTIONS(4227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4227), + [aux_sym_preproc_else_token1] = ACTIONS(4227), + [aux_sym_preproc_elif_token1] = ACTIONS(4227), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4227), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4227), + [sym_preproc_directive] = ACTIONS(4227), + [anon_sym_LPAREN2] = ACTIONS(4229), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4229), + [anon_sym_AMP_AMP] = ACTIONS(4229), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4229), + [anon_sym___extension__] = ACTIONS(4227), + [anon_sym_typedef] = ACTIONS(4227), + [anon_sym_virtual] = ACTIONS(4227), + [anon_sym_extern] = ACTIONS(4227), + [anon_sym___attribute__] = ACTIONS(4227), + [anon_sym___attribute] = ACTIONS(4227), + [anon_sym_using] = ACTIONS(4227), + [anon_sym_COLON_COLON] = ACTIONS(4229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4229), + [anon_sym___declspec] = ACTIONS(4227), + [anon_sym___based] = ACTIONS(4227), + [anon_sym___cdecl] = ACTIONS(4227), + [anon_sym___clrcall] = ACTIONS(4227), + [anon_sym___stdcall] = ACTIONS(4227), + [anon_sym___fastcall] = ACTIONS(4227), + [anon_sym___thiscall] = ACTIONS(4227), + [anon_sym___vectorcall] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_signed] = ACTIONS(4227), + [anon_sym_unsigned] = ACTIONS(4227), + [anon_sym_long] = ACTIONS(4227), + [anon_sym_short] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4227), + [anon_sym_static] = ACTIONS(4227), + [anon_sym_register] = ACTIONS(4227), + [anon_sym_inline] = ACTIONS(4227), + [anon_sym___inline] = ACTIONS(4227), + [anon_sym___inline__] = ACTIONS(4227), + [anon_sym___forceinline] = ACTIONS(4227), + [anon_sym_thread_local] = ACTIONS(4227), + [anon_sym___thread] = ACTIONS(4227), + [anon_sym_const] = ACTIONS(4227), + [anon_sym_constexpr] = ACTIONS(4227), + [anon_sym_volatile] = ACTIONS(4227), + [anon_sym_restrict] = ACTIONS(4227), + [anon_sym___restrict__] = ACTIONS(4227), + [anon_sym__Atomic] = ACTIONS(4227), + [anon_sym__Noreturn] = ACTIONS(4227), + [anon_sym_noreturn] = ACTIONS(4227), + [anon_sym__Nonnull] = ACTIONS(4227), + [anon_sym_mutable] = ACTIONS(4227), + [anon_sym_constinit] = ACTIONS(4227), + [anon_sym_consteval] = ACTIONS(4227), + [anon_sym_alignas] = ACTIONS(4227), + [anon_sym__Alignas] = ACTIONS(4227), + [sym_primitive_type] = ACTIONS(4227), + [anon_sym_enum] = ACTIONS(4227), + [anon_sym_class] = ACTIONS(4227), + [anon_sym_struct] = ACTIONS(4227), + [anon_sym_union] = ACTIONS(4227), + [anon_sym_if] = ACTIONS(4227), + [anon_sym_switch] = ACTIONS(4227), + [anon_sym_case] = ACTIONS(4227), + [anon_sym_default] = ACTIONS(4227), + [anon_sym_while] = ACTIONS(4227), + [anon_sym_do] = ACTIONS(4227), + [anon_sym_for] = ACTIONS(4227), + [anon_sym_return] = ACTIONS(4227), + [anon_sym_break] = ACTIONS(4227), + [anon_sym_continue] = ACTIONS(4227), + [anon_sym_goto] = ACTIONS(4227), + [anon_sym___try] = ACTIONS(4227), + [anon_sym___leave] = ACTIONS(4227), + [anon_sym_not] = ACTIONS(4227), + [anon_sym_compl] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_PLUS_PLUS] = ACTIONS(4229), + [anon_sym_sizeof] = ACTIONS(4227), + [anon_sym___alignof__] = ACTIONS(4227), + [anon_sym___alignof] = ACTIONS(4227), + [anon_sym__alignof] = ACTIONS(4227), + [anon_sym_alignof] = ACTIONS(4227), + [anon_sym__Alignof] = ACTIONS(4227), + [anon_sym_offsetof] = ACTIONS(4227), + [anon_sym__Generic] = ACTIONS(4227), + [anon_sym_typename] = ACTIONS(4227), + [anon_sym_asm] = ACTIONS(4227), + [anon_sym___asm__] = ACTIONS(4227), + [anon_sym___asm] = ACTIONS(4227), + [sym_number_literal] = ACTIONS(4229), + [anon_sym_L_SQUOTE] = ACTIONS(4229), + [anon_sym_u_SQUOTE] = ACTIONS(4229), + [anon_sym_U_SQUOTE] = ACTIONS(4229), + [anon_sym_u8_SQUOTE] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4229), + [anon_sym_L_DQUOTE] = ACTIONS(4229), + [anon_sym_u_DQUOTE] = ACTIONS(4229), + [anon_sym_U_DQUOTE] = ACTIONS(4229), + [anon_sym_u8_DQUOTE] = ACTIONS(4229), + [anon_sym_DQUOTE] = ACTIONS(4229), + [sym_true] = ACTIONS(4227), + [sym_false] = ACTIONS(4227), + [anon_sym_NULL] = ACTIONS(4227), + [anon_sym_nullptr] = ACTIONS(4227), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4227), + [anon_sym_decltype] = ACTIONS(4227), + [anon_sym_explicit] = ACTIONS(4227), + [anon_sym_export] = ACTIONS(4227), + [anon_sym_module] = ACTIONS(4227), + [anon_sym_import] = ACTIONS(4227), + [anon_sym_template] = ACTIONS(4227), + [anon_sym_operator] = ACTIONS(4227), + [anon_sym_try] = ACTIONS(4227), + [anon_sym_delete] = ACTIONS(4227), + [anon_sym_throw] = ACTIONS(4227), + [anon_sym_namespace] = ACTIONS(4227), + [anon_sym_static_assert] = ACTIONS(4227), + [anon_sym_concept] = ACTIONS(4227), + [anon_sym_co_return] = ACTIONS(4227), + [anon_sym_co_yield] = ACTIONS(4227), + [anon_sym_R_DQUOTE] = ACTIONS(4229), + [anon_sym_LR_DQUOTE] = ACTIONS(4229), + [anon_sym_uR_DQUOTE] = ACTIONS(4229), + [anon_sym_UR_DQUOTE] = ACTIONS(4229), + [anon_sym_u8R_DQUOTE] = ACTIONS(4229), + [anon_sym_co_await] = ACTIONS(4227), + [anon_sym_new] = ACTIONS(4227), + [anon_sym_requires] = ACTIONS(4227), + [anon_sym_CARET_CARET] = ACTIONS(4229), + [anon_sym_LBRACK_COLON] = ACTIONS(4229), + [sym_this] = ACTIONS(4227), }, [STATE(463)] = { - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_include_token1] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token2] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [aux_sym_preproc_else_token1] = ACTIONS(4168), - [aux_sym_preproc_elif_token1] = ACTIONS(4168), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_BANG] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym___cdecl] = ACTIONS(4168), - [anon_sym___clrcall] = ACTIONS(4168), - [anon_sym___stdcall] = ACTIONS(4168), - [anon_sym___fastcall] = ACTIONS(4168), - [anon_sym___thiscall] = ACTIONS(4168), - [anon_sym___vectorcall] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4170), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_if] = ACTIONS(4168), - [anon_sym_switch] = ACTIONS(4168), - [anon_sym_case] = ACTIONS(4168), - [anon_sym_default] = ACTIONS(4168), - [anon_sym_while] = ACTIONS(4168), - [anon_sym_do] = ACTIONS(4168), - [anon_sym_for] = ACTIONS(4168), - [anon_sym_return] = ACTIONS(4168), - [anon_sym_break] = ACTIONS(4168), - [anon_sym_continue] = ACTIONS(4168), - [anon_sym_goto] = ACTIONS(4168), - [anon_sym___try] = ACTIONS(4168), - [anon_sym___leave] = ACTIONS(4168), - [anon_sym_not] = ACTIONS(4168), - [anon_sym_compl] = ACTIONS(4168), - [anon_sym_DASH_DASH] = ACTIONS(4170), - [anon_sym_PLUS_PLUS] = ACTIONS(4170), - [anon_sym_sizeof] = ACTIONS(4168), - [anon_sym___alignof__] = ACTIONS(4168), - [anon_sym___alignof] = ACTIONS(4168), - [anon_sym__alignof] = ACTIONS(4168), - [anon_sym_alignof] = ACTIONS(4168), - [anon_sym__Alignof] = ACTIONS(4168), - [anon_sym_offsetof] = ACTIONS(4168), - [anon_sym__Generic] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), - [anon_sym_asm] = ACTIONS(4168), - [anon_sym___asm__] = ACTIONS(4168), - [anon_sym___asm] = ACTIONS(4168), - [sym_number_literal] = ACTIONS(4170), - [anon_sym_L_SQUOTE] = ACTIONS(4170), - [anon_sym_u_SQUOTE] = ACTIONS(4170), - [anon_sym_U_SQUOTE] = ACTIONS(4170), - [anon_sym_u8_SQUOTE] = ACTIONS(4170), - [anon_sym_SQUOTE] = ACTIONS(4170), - [anon_sym_L_DQUOTE] = ACTIONS(4170), - [anon_sym_u_DQUOTE] = ACTIONS(4170), - [anon_sym_U_DQUOTE] = ACTIONS(4170), - [anon_sym_u8_DQUOTE] = ACTIONS(4170), - [anon_sym_DQUOTE] = ACTIONS(4170), - [sym_true] = ACTIONS(4168), - [sym_false] = ACTIONS(4168), - [anon_sym_NULL] = ACTIONS(4168), - [anon_sym_nullptr] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_export] = ACTIONS(4168), - [anon_sym_module] = ACTIONS(4168), - [anon_sym_import] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_try] = ACTIONS(4168), - [anon_sym_delete] = ACTIONS(4168), - [anon_sym_throw] = ACTIONS(4168), - [anon_sym_namespace] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_concept] = ACTIONS(4168), - [anon_sym_co_return] = ACTIONS(4168), - [anon_sym_co_yield] = ACTIONS(4168), - [anon_sym_R_DQUOTE] = ACTIONS(4170), - [anon_sym_LR_DQUOTE] = ACTIONS(4170), - [anon_sym_uR_DQUOTE] = ACTIONS(4170), - [anon_sym_UR_DQUOTE] = ACTIONS(4170), - [anon_sym_u8R_DQUOTE] = ACTIONS(4170), - [anon_sym_co_await] = ACTIONS(4168), - [anon_sym_new] = ACTIONS(4168), - [anon_sym_requires] = ACTIONS(4168), - [anon_sym_CARET_CARET] = ACTIONS(4170), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), - [sym_this] = ACTIONS(4168), + [sym_identifier] = ACTIONS(4231), + [aux_sym_preproc_include_token1] = ACTIONS(4231), + [aux_sym_preproc_def_token1] = ACTIONS(4231), + [aux_sym_preproc_if_token1] = ACTIONS(4231), + [aux_sym_preproc_if_token2] = ACTIONS(4231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4231), + [aux_sym_preproc_else_token1] = ACTIONS(4231), + [aux_sym_preproc_elif_token1] = ACTIONS(4231), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4231), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4231), + [sym_preproc_directive] = ACTIONS(4231), + [anon_sym_LPAREN2] = ACTIONS(4233), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_TILDE] = ACTIONS(4233), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_AMP_AMP] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym___extension__] = ACTIONS(4231), + [anon_sym_typedef] = ACTIONS(4231), + [anon_sym_virtual] = ACTIONS(4231), + [anon_sym_extern] = ACTIONS(4231), + [anon_sym___attribute__] = ACTIONS(4231), + [anon_sym___attribute] = ACTIONS(4231), + [anon_sym_using] = ACTIONS(4231), + [anon_sym_COLON_COLON] = ACTIONS(4233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4233), + [anon_sym___declspec] = ACTIONS(4231), + [anon_sym___based] = ACTIONS(4231), + [anon_sym___cdecl] = ACTIONS(4231), + [anon_sym___clrcall] = ACTIONS(4231), + [anon_sym___stdcall] = ACTIONS(4231), + [anon_sym___fastcall] = ACTIONS(4231), + [anon_sym___thiscall] = ACTIONS(4231), + [anon_sym___vectorcall] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4233), + [anon_sym_signed] = ACTIONS(4231), + [anon_sym_unsigned] = ACTIONS(4231), + [anon_sym_long] = ACTIONS(4231), + [anon_sym_short] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_static] = ACTIONS(4231), + [anon_sym_register] = ACTIONS(4231), + [anon_sym_inline] = ACTIONS(4231), + [anon_sym___inline] = ACTIONS(4231), + [anon_sym___inline__] = ACTIONS(4231), + [anon_sym___forceinline] = ACTIONS(4231), + [anon_sym_thread_local] = ACTIONS(4231), + [anon_sym___thread] = ACTIONS(4231), + [anon_sym_const] = ACTIONS(4231), + [anon_sym_constexpr] = ACTIONS(4231), + [anon_sym_volatile] = ACTIONS(4231), + [anon_sym_restrict] = ACTIONS(4231), + [anon_sym___restrict__] = ACTIONS(4231), + [anon_sym__Atomic] = ACTIONS(4231), + [anon_sym__Noreturn] = ACTIONS(4231), + [anon_sym_noreturn] = ACTIONS(4231), + [anon_sym__Nonnull] = ACTIONS(4231), + [anon_sym_mutable] = ACTIONS(4231), + [anon_sym_constinit] = ACTIONS(4231), + [anon_sym_consteval] = ACTIONS(4231), + [anon_sym_alignas] = ACTIONS(4231), + [anon_sym__Alignas] = ACTIONS(4231), + [sym_primitive_type] = ACTIONS(4231), + [anon_sym_enum] = ACTIONS(4231), + [anon_sym_class] = ACTIONS(4231), + [anon_sym_struct] = ACTIONS(4231), + [anon_sym_union] = ACTIONS(4231), + [anon_sym_if] = ACTIONS(4231), + [anon_sym_switch] = ACTIONS(4231), + [anon_sym_case] = ACTIONS(4231), + [anon_sym_default] = ACTIONS(4231), + [anon_sym_while] = ACTIONS(4231), + [anon_sym_do] = ACTIONS(4231), + [anon_sym_for] = ACTIONS(4231), + [anon_sym_return] = ACTIONS(4231), + [anon_sym_break] = ACTIONS(4231), + [anon_sym_continue] = ACTIONS(4231), + [anon_sym_goto] = ACTIONS(4231), + [anon_sym___try] = ACTIONS(4231), + [anon_sym___leave] = ACTIONS(4231), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_compl] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_PLUS_PLUS] = ACTIONS(4233), + [anon_sym_sizeof] = ACTIONS(4231), + [anon_sym___alignof__] = ACTIONS(4231), + [anon_sym___alignof] = ACTIONS(4231), + [anon_sym__alignof] = ACTIONS(4231), + [anon_sym_alignof] = ACTIONS(4231), + [anon_sym__Alignof] = ACTIONS(4231), + [anon_sym_offsetof] = ACTIONS(4231), + [anon_sym__Generic] = ACTIONS(4231), + [anon_sym_typename] = ACTIONS(4231), + [anon_sym_asm] = ACTIONS(4231), + [anon_sym___asm__] = ACTIONS(4231), + [anon_sym___asm] = ACTIONS(4231), + [sym_number_literal] = ACTIONS(4233), + [anon_sym_L_SQUOTE] = ACTIONS(4233), + [anon_sym_u_SQUOTE] = ACTIONS(4233), + [anon_sym_U_SQUOTE] = ACTIONS(4233), + [anon_sym_u8_SQUOTE] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4233), + [anon_sym_L_DQUOTE] = ACTIONS(4233), + [anon_sym_u_DQUOTE] = ACTIONS(4233), + [anon_sym_U_DQUOTE] = ACTIONS(4233), + [anon_sym_u8_DQUOTE] = ACTIONS(4233), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym_true] = ACTIONS(4231), + [sym_false] = ACTIONS(4231), + [anon_sym_NULL] = ACTIONS(4231), + [anon_sym_nullptr] = ACTIONS(4231), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4231), + [anon_sym_decltype] = ACTIONS(4231), + [anon_sym_explicit] = ACTIONS(4231), + [anon_sym_export] = ACTIONS(4231), + [anon_sym_module] = ACTIONS(4231), + [anon_sym_import] = ACTIONS(4231), + [anon_sym_template] = ACTIONS(4231), + [anon_sym_operator] = ACTIONS(4231), + [anon_sym_try] = ACTIONS(4231), + [anon_sym_delete] = ACTIONS(4231), + [anon_sym_throw] = ACTIONS(4231), + [anon_sym_namespace] = ACTIONS(4231), + [anon_sym_static_assert] = ACTIONS(4231), + [anon_sym_concept] = ACTIONS(4231), + [anon_sym_co_return] = ACTIONS(4231), + [anon_sym_co_yield] = ACTIONS(4231), + [anon_sym_R_DQUOTE] = ACTIONS(4233), + [anon_sym_LR_DQUOTE] = ACTIONS(4233), + [anon_sym_uR_DQUOTE] = ACTIONS(4233), + [anon_sym_UR_DQUOTE] = ACTIONS(4233), + [anon_sym_u8R_DQUOTE] = ACTIONS(4233), + [anon_sym_co_await] = ACTIONS(4231), + [anon_sym_new] = ACTIONS(4231), + [anon_sym_requires] = ACTIONS(4231), + [anon_sym_CARET_CARET] = ACTIONS(4233), + [anon_sym_LBRACK_COLON] = ACTIONS(4233), + [sym_this] = ACTIONS(4231), }, [STATE(464)] = { - [sym_identifier] = ACTIONS(4172), - [aux_sym_preproc_include_token1] = ACTIONS(4172), - [aux_sym_preproc_def_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token2] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), - [aux_sym_preproc_else_token1] = ACTIONS(4172), - [aux_sym_preproc_elif_token1] = ACTIONS(4172), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4172), - [sym_preproc_directive] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_BANG] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4172), - [anon_sym_typedef] = ACTIONS(4172), - [anon_sym_virtual] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(4172), - [anon_sym___attribute] = ACTIONS(4172), - [anon_sym_using] = ACTIONS(4172), - [anon_sym_COLON_COLON] = ACTIONS(4174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), - [anon_sym___declspec] = ACTIONS(4172), - [anon_sym___based] = ACTIONS(4172), - [anon_sym___cdecl] = ACTIONS(4172), - [anon_sym___clrcall] = ACTIONS(4172), - [anon_sym___stdcall] = ACTIONS(4172), - [anon_sym___fastcall] = ACTIONS(4172), - [anon_sym___thiscall] = ACTIONS(4172), - [anon_sym___vectorcall] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4174), - [anon_sym_signed] = ACTIONS(4172), - [anon_sym_unsigned] = ACTIONS(4172), - [anon_sym_long] = ACTIONS(4172), - [anon_sym_short] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_static] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_inline] = ACTIONS(4172), - [anon_sym___inline] = ACTIONS(4172), - [anon_sym___inline__] = ACTIONS(4172), - [anon_sym___forceinline] = ACTIONS(4172), - [anon_sym_thread_local] = ACTIONS(4172), - [anon_sym___thread] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [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), - [sym_primitive_type] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_class] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4172), - [anon_sym_default] = ACTIONS(4172), - [anon_sym_while] = ACTIONS(4172), - [anon_sym_do] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_goto] = ACTIONS(4172), - [anon_sym___try] = ACTIONS(4172), - [anon_sym___leave] = ACTIONS(4172), - [anon_sym_not] = ACTIONS(4172), - [anon_sym_compl] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4174), - [anon_sym_PLUS_PLUS] = ACTIONS(4174), - [anon_sym_sizeof] = ACTIONS(4172), - [anon_sym___alignof__] = ACTIONS(4172), - [anon_sym___alignof] = ACTIONS(4172), - [anon_sym__alignof] = ACTIONS(4172), - [anon_sym_alignof] = ACTIONS(4172), - [anon_sym__Alignof] = ACTIONS(4172), - [anon_sym_offsetof] = ACTIONS(4172), - [anon_sym__Generic] = ACTIONS(4172), - [anon_sym_typename] = ACTIONS(4172), - [anon_sym_asm] = ACTIONS(4172), - [anon_sym___asm__] = ACTIONS(4172), - [anon_sym___asm] = ACTIONS(4172), - [sym_number_literal] = ACTIONS(4174), - [anon_sym_L_SQUOTE] = ACTIONS(4174), - [anon_sym_u_SQUOTE] = ACTIONS(4174), - [anon_sym_U_SQUOTE] = ACTIONS(4174), - [anon_sym_u8_SQUOTE] = ACTIONS(4174), - [anon_sym_SQUOTE] = ACTIONS(4174), - [anon_sym_L_DQUOTE] = ACTIONS(4174), - [anon_sym_u_DQUOTE] = ACTIONS(4174), - [anon_sym_U_DQUOTE] = ACTIONS(4174), - [anon_sym_u8_DQUOTE] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [anon_sym_NULL] = ACTIONS(4172), - [anon_sym_nullptr] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4172), - [anon_sym_decltype] = ACTIONS(4172), - [anon_sym_explicit] = ACTIONS(4172), - [anon_sym_export] = ACTIONS(4172), - [anon_sym_module] = ACTIONS(4172), - [anon_sym_import] = ACTIONS(4172), - [anon_sym_template] = ACTIONS(4172), - [anon_sym_operator] = ACTIONS(4172), - [anon_sym_try] = ACTIONS(4172), - [anon_sym_delete] = ACTIONS(4172), - [anon_sym_throw] = ACTIONS(4172), - [anon_sym_namespace] = ACTIONS(4172), - [anon_sym_static_assert] = ACTIONS(4172), - [anon_sym_concept] = ACTIONS(4172), - [anon_sym_co_return] = ACTIONS(4172), - [anon_sym_co_yield] = ACTIONS(4172), - [anon_sym_R_DQUOTE] = ACTIONS(4174), - [anon_sym_LR_DQUOTE] = ACTIONS(4174), - [anon_sym_uR_DQUOTE] = ACTIONS(4174), - [anon_sym_UR_DQUOTE] = ACTIONS(4174), - [anon_sym_u8R_DQUOTE] = ACTIONS(4174), - [anon_sym_co_await] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_requires] = ACTIONS(4172), - [anon_sym_CARET_CARET] = ACTIONS(4174), - [anon_sym_LBRACK_COLON] = ACTIONS(4174), - [sym_this] = ACTIONS(4172), + [sym_identifier] = ACTIONS(4235), + [aux_sym_preproc_include_token1] = ACTIONS(4235), + [aux_sym_preproc_def_token1] = ACTIONS(4235), + [aux_sym_preproc_if_token1] = ACTIONS(4235), + [aux_sym_preproc_if_token2] = ACTIONS(4235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4235), + [aux_sym_preproc_else_token1] = ACTIONS(4235), + [aux_sym_preproc_elif_token1] = ACTIONS(4235), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4235), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4235), + [sym_preproc_directive] = ACTIONS(4235), + [anon_sym_LPAREN2] = ACTIONS(4237), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_TILDE] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4237), + [anon_sym_AMP_AMP] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4237), + [anon_sym___extension__] = ACTIONS(4235), + [anon_sym_typedef] = ACTIONS(4235), + [anon_sym_virtual] = ACTIONS(4235), + [anon_sym_extern] = ACTIONS(4235), + [anon_sym___attribute__] = ACTIONS(4235), + [anon_sym___attribute] = ACTIONS(4235), + [anon_sym_using] = ACTIONS(4235), + [anon_sym_COLON_COLON] = ACTIONS(4237), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4237), + [anon_sym___declspec] = ACTIONS(4235), + [anon_sym___based] = ACTIONS(4235), + [anon_sym___cdecl] = ACTIONS(4235), + [anon_sym___clrcall] = ACTIONS(4235), + [anon_sym___stdcall] = ACTIONS(4235), + [anon_sym___fastcall] = ACTIONS(4235), + [anon_sym___thiscall] = ACTIONS(4235), + [anon_sym___vectorcall] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4237), + [anon_sym_signed] = ACTIONS(4235), + [anon_sym_unsigned] = ACTIONS(4235), + [anon_sym_long] = ACTIONS(4235), + [anon_sym_short] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4235), + [anon_sym_static] = ACTIONS(4235), + [anon_sym_register] = ACTIONS(4235), + [anon_sym_inline] = ACTIONS(4235), + [anon_sym___inline] = ACTIONS(4235), + [anon_sym___inline__] = ACTIONS(4235), + [anon_sym___forceinline] = ACTIONS(4235), + [anon_sym_thread_local] = ACTIONS(4235), + [anon_sym___thread] = ACTIONS(4235), + [anon_sym_const] = ACTIONS(4235), + [anon_sym_constexpr] = ACTIONS(4235), + [anon_sym_volatile] = ACTIONS(4235), + [anon_sym_restrict] = ACTIONS(4235), + [anon_sym___restrict__] = ACTIONS(4235), + [anon_sym__Atomic] = ACTIONS(4235), + [anon_sym__Noreturn] = ACTIONS(4235), + [anon_sym_noreturn] = ACTIONS(4235), + [anon_sym__Nonnull] = ACTIONS(4235), + [anon_sym_mutable] = ACTIONS(4235), + [anon_sym_constinit] = ACTIONS(4235), + [anon_sym_consteval] = ACTIONS(4235), + [anon_sym_alignas] = ACTIONS(4235), + [anon_sym__Alignas] = ACTIONS(4235), + [sym_primitive_type] = ACTIONS(4235), + [anon_sym_enum] = ACTIONS(4235), + [anon_sym_class] = ACTIONS(4235), + [anon_sym_struct] = ACTIONS(4235), + [anon_sym_union] = ACTIONS(4235), + [anon_sym_if] = ACTIONS(4235), + [anon_sym_switch] = ACTIONS(4235), + [anon_sym_case] = ACTIONS(4235), + [anon_sym_default] = ACTIONS(4235), + [anon_sym_while] = ACTIONS(4235), + [anon_sym_do] = ACTIONS(4235), + [anon_sym_for] = ACTIONS(4235), + [anon_sym_return] = ACTIONS(4235), + [anon_sym_break] = ACTIONS(4235), + [anon_sym_continue] = ACTIONS(4235), + [anon_sym_goto] = ACTIONS(4235), + [anon_sym___try] = ACTIONS(4235), + [anon_sym___leave] = ACTIONS(4235), + [anon_sym_not] = ACTIONS(4235), + [anon_sym_compl] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_PLUS_PLUS] = ACTIONS(4237), + [anon_sym_sizeof] = ACTIONS(4235), + [anon_sym___alignof__] = ACTIONS(4235), + [anon_sym___alignof] = ACTIONS(4235), + [anon_sym__alignof] = ACTIONS(4235), + [anon_sym_alignof] = ACTIONS(4235), + [anon_sym__Alignof] = ACTIONS(4235), + [anon_sym_offsetof] = ACTIONS(4235), + [anon_sym__Generic] = ACTIONS(4235), + [anon_sym_typename] = ACTIONS(4235), + [anon_sym_asm] = ACTIONS(4235), + [anon_sym___asm__] = ACTIONS(4235), + [anon_sym___asm] = ACTIONS(4235), + [sym_number_literal] = ACTIONS(4237), + [anon_sym_L_SQUOTE] = ACTIONS(4237), + [anon_sym_u_SQUOTE] = ACTIONS(4237), + [anon_sym_U_SQUOTE] = ACTIONS(4237), + [anon_sym_u8_SQUOTE] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4237), + [anon_sym_L_DQUOTE] = ACTIONS(4237), + [anon_sym_u_DQUOTE] = ACTIONS(4237), + [anon_sym_U_DQUOTE] = ACTIONS(4237), + [anon_sym_u8_DQUOTE] = ACTIONS(4237), + [anon_sym_DQUOTE] = ACTIONS(4237), + [sym_true] = ACTIONS(4235), + [sym_false] = ACTIONS(4235), + [anon_sym_NULL] = ACTIONS(4235), + [anon_sym_nullptr] = ACTIONS(4235), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4235), + [anon_sym_decltype] = ACTIONS(4235), + [anon_sym_explicit] = ACTIONS(4235), + [anon_sym_export] = ACTIONS(4235), + [anon_sym_module] = ACTIONS(4235), + [anon_sym_import] = ACTIONS(4235), + [anon_sym_template] = ACTIONS(4235), + [anon_sym_operator] = ACTIONS(4235), + [anon_sym_try] = ACTIONS(4235), + [anon_sym_delete] = ACTIONS(4235), + [anon_sym_throw] = ACTIONS(4235), + [anon_sym_namespace] = ACTIONS(4235), + [anon_sym_static_assert] = ACTIONS(4235), + [anon_sym_concept] = ACTIONS(4235), + [anon_sym_co_return] = ACTIONS(4235), + [anon_sym_co_yield] = ACTIONS(4235), + [anon_sym_R_DQUOTE] = ACTIONS(4237), + [anon_sym_LR_DQUOTE] = ACTIONS(4237), + [anon_sym_uR_DQUOTE] = ACTIONS(4237), + [anon_sym_UR_DQUOTE] = ACTIONS(4237), + [anon_sym_u8R_DQUOTE] = ACTIONS(4237), + [anon_sym_co_await] = ACTIONS(4235), + [anon_sym_new] = ACTIONS(4235), + [anon_sym_requires] = ACTIONS(4235), + [anon_sym_CARET_CARET] = ACTIONS(4237), + [anon_sym_LBRACK_COLON] = ACTIONS(4237), + [sym_this] = ACTIONS(4235), }, [STATE(465)] = { - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_include_token1] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token2] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [aux_sym_preproc_else_token1] = ACTIONS(4176), - [aux_sym_preproc_elif_token1] = ACTIONS(4176), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_BANG] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_PLUS] = ACTIONS(4176), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym___cdecl] = ACTIONS(4176), - [anon_sym___clrcall] = ACTIONS(4176), - [anon_sym___stdcall] = ACTIONS(4176), - [anon_sym___fastcall] = ACTIONS(4176), - [anon_sym___thiscall] = ACTIONS(4176), - [anon_sym___vectorcall] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4178), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_if] = ACTIONS(4176), - [anon_sym_switch] = ACTIONS(4176), - [anon_sym_case] = ACTIONS(4176), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4176), - [anon_sym_do] = ACTIONS(4176), - [anon_sym_for] = ACTIONS(4176), - [anon_sym_return] = ACTIONS(4176), - [anon_sym_break] = ACTIONS(4176), - [anon_sym_continue] = ACTIONS(4176), - [anon_sym_goto] = ACTIONS(4176), - [anon_sym___try] = ACTIONS(4176), - [anon_sym___leave] = ACTIONS(4176), - [anon_sym_not] = ACTIONS(4176), - [anon_sym_compl] = ACTIONS(4176), - [anon_sym_DASH_DASH] = ACTIONS(4178), - [anon_sym_PLUS_PLUS] = ACTIONS(4178), - [anon_sym_sizeof] = ACTIONS(4176), - [anon_sym___alignof__] = ACTIONS(4176), - [anon_sym___alignof] = ACTIONS(4176), - [anon_sym__alignof] = ACTIONS(4176), - [anon_sym_alignof] = ACTIONS(4176), - [anon_sym__Alignof] = ACTIONS(4176), - [anon_sym_offsetof] = ACTIONS(4176), - [anon_sym__Generic] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [anon_sym_asm] = ACTIONS(4176), - [anon_sym___asm__] = ACTIONS(4176), - [anon_sym___asm] = ACTIONS(4176), - [sym_number_literal] = ACTIONS(4178), - [anon_sym_L_SQUOTE] = ACTIONS(4178), - [anon_sym_u_SQUOTE] = ACTIONS(4178), - [anon_sym_U_SQUOTE] = ACTIONS(4178), - [anon_sym_u8_SQUOTE] = ACTIONS(4178), - [anon_sym_SQUOTE] = ACTIONS(4178), - [anon_sym_L_DQUOTE] = ACTIONS(4178), - [anon_sym_u_DQUOTE] = ACTIONS(4178), - [anon_sym_U_DQUOTE] = ACTIONS(4178), - [anon_sym_u8_DQUOTE] = ACTIONS(4178), - [anon_sym_DQUOTE] = ACTIONS(4178), - [sym_true] = ACTIONS(4176), - [sym_false] = ACTIONS(4176), - [anon_sym_NULL] = ACTIONS(4176), - [anon_sym_nullptr] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_export] = ACTIONS(4176), - [anon_sym_module] = ACTIONS(4176), - [anon_sym_import] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_try] = ACTIONS(4176), - [anon_sym_delete] = ACTIONS(4176), - [anon_sym_throw] = ACTIONS(4176), - [anon_sym_namespace] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_concept] = ACTIONS(4176), - [anon_sym_co_return] = ACTIONS(4176), - [anon_sym_co_yield] = ACTIONS(4176), - [anon_sym_R_DQUOTE] = ACTIONS(4178), - [anon_sym_LR_DQUOTE] = ACTIONS(4178), - [anon_sym_uR_DQUOTE] = ACTIONS(4178), - [anon_sym_UR_DQUOTE] = ACTIONS(4178), - [anon_sym_u8R_DQUOTE] = ACTIONS(4178), - [anon_sym_co_await] = ACTIONS(4176), - [anon_sym_new] = ACTIONS(4176), - [anon_sym_requires] = ACTIONS(4176), - [anon_sym_CARET_CARET] = ACTIONS(4178), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - [sym_this] = ACTIONS(4176), + [sym_identifier] = ACTIONS(4239), + [aux_sym_preproc_include_token1] = ACTIONS(4239), + [aux_sym_preproc_def_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token2] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4239), + [aux_sym_preproc_else_token1] = ACTIONS(4239), + [aux_sym_preproc_elif_token1] = ACTIONS(4239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4239), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4239), + [sym_preproc_directive] = ACTIONS(4239), + [anon_sym_LPAREN2] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_TILDE] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym___extension__] = ACTIONS(4239), + [anon_sym_typedef] = ACTIONS(4239), + [anon_sym_virtual] = ACTIONS(4239), + [anon_sym_extern] = ACTIONS(4239), + [anon_sym___attribute__] = ACTIONS(4239), + [anon_sym___attribute] = ACTIONS(4239), + [anon_sym_using] = ACTIONS(4239), + [anon_sym_COLON_COLON] = ACTIONS(4241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4241), + [anon_sym___declspec] = ACTIONS(4239), + [anon_sym___based] = ACTIONS(4239), + [anon_sym___cdecl] = ACTIONS(4239), + [anon_sym___clrcall] = ACTIONS(4239), + [anon_sym___stdcall] = ACTIONS(4239), + [anon_sym___fastcall] = ACTIONS(4239), + [anon_sym___thiscall] = ACTIONS(4239), + [anon_sym___vectorcall] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4241), + [anon_sym_signed] = ACTIONS(4239), + [anon_sym_unsigned] = ACTIONS(4239), + [anon_sym_long] = ACTIONS(4239), + [anon_sym_short] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_static] = ACTIONS(4239), + [anon_sym_register] = ACTIONS(4239), + [anon_sym_inline] = ACTIONS(4239), + [anon_sym___inline] = ACTIONS(4239), + [anon_sym___inline__] = ACTIONS(4239), + [anon_sym___forceinline] = ACTIONS(4239), + [anon_sym_thread_local] = ACTIONS(4239), + [anon_sym___thread] = ACTIONS(4239), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_constexpr] = ACTIONS(4239), + [anon_sym_volatile] = ACTIONS(4239), + [anon_sym_restrict] = ACTIONS(4239), + [anon_sym___restrict__] = ACTIONS(4239), + [anon_sym__Atomic] = ACTIONS(4239), + [anon_sym__Noreturn] = ACTIONS(4239), + [anon_sym_noreturn] = ACTIONS(4239), + [anon_sym__Nonnull] = ACTIONS(4239), + [anon_sym_mutable] = ACTIONS(4239), + [anon_sym_constinit] = ACTIONS(4239), + [anon_sym_consteval] = ACTIONS(4239), + [anon_sym_alignas] = ACTIONS(4239), + [anon_sym__Alignas] = ACTIONS(4239), + [sym_primitive_type] = ACTIONS(4239), + [anon_sym_enum] = ACTIONS(4239), + [anon_sym_class] = ACTIONS(4239), + [anon_sym_struct] = ACTIONS(4239), + [anon_sym_union] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(4239), + [anon_sym_switch] = ACTIONS(4239), + [anon_sym_case] = ACTIONS(4239), + [anon_sym_default] = ACTIONS(4239), + [anon_sym_while] = ACTIONS(4239), + [anon_sym_do] = ACTIONS(4239), + [anon_sym_for] = ACTIONS(4239), + [anon_sym_return] = ACTIONS(4239), + [anon_sym_break] = ACTIONS(4239), + [anon_sym_continue] = ACTIONS(4239), + [anon_sym_goto] = ACTIONS(4239), + [anon_sym___try] = ACTIONS(4239), + [anon_sym___leave] = ACTIONS(4239), + [anon_sym_not] = ACTIONS(4239), + [anon_sym_compl] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_PLUS_PLUS] = ACTIONS(4241), + [anon_sym_sizeof] = ACTIONS(4239), + [anon_sym___alignof__] = ACTIONS(4239), + [anon_sym___alignof] = ACTIONS(4239), + [anon_sym__alignof] = ACTIONS(4239), + [anon_sym_alignof] = ACTIONS(4239), + [anon_sym__Alignof] = ACTIONS(4239), + [anon_sym_offsetof] = ACTIONS(4239), + [anon_sym__Generic] = ACTIONS(4239), + [anon_sym_typename] = ACTIONS(4239), + [anon_sym_asm] = ACTIONS(4239), + [anon_sym___asm__] = ACTIONS(4239), + [anon_sym___asm] = ACTIONS(4239), + [sym_number_literal] = ACTIONS(4241), + [anon_sym_L_SQUOTE] = ACTIONS(4241), + [anon_sym_u_SQUOTE] = ACTIONS(4241), + [anon_sym_U_SQUOTE] = ACTIONS(4241), + [anon_sym_u8_SQUOTE] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4241), + [anon_sym_L_DQUOTE] = ACTIONS(4241), + [anon_sym_u_DQUOTE] = ACTIONS(4241), + [anon_sym_U_DQUOTE] = ACTIONS(4241), + [anon_sym_u8_DQUOTE] = ACTIONS(4241), + [anon_sym_DQUOTE] = ACTIONS(4241), + [sym_true] = ACTIONS(4239), + [sym_false] = ACTIONS(4239), + [anon_sym_NULL] = ACTIONS(4239), + [anon_sym_nullptr] = ACTIONS(4239), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4239), + [anon_sym_decltype] = ACTIONS(4239), + [anon_sym_explicit] = ACTIONS(4239), + [anon_sym_export] = ACTIONS(4239), + [anon_sym_module] = ACTIONS(4239), + [anon_sym_import] = ACTIONS(4239), + [anon_sym_template] = ACTIONS(4239), + [anon_sym_operator] = ACTIONS(4239), + [anon_sym_try] = ACTIONS(4239), + [anon_sym_delete] = ACTIONS(4239), + [anon_sym_throw] = ACTIONS(4239), + [anon_sym_namespace] = ACTIONS(4239), + [anon_sym_static_assert] = ACTIONS(4239), + [anon_sym_concept] = ACTIONS(4239), + [anon_sym_co_return] = ACTIONS(4239), + [anon_sym_co_yield] = ACTIONS(4239), + [anon_sym_R_DQUOTE] = ACTIONS(4241), + [anon_sym_LR_DQUOTE] = ACTIONS(4241), + [anon_sym_uR_DQUOTE] = ACTIONS(4241), + [anon_sym_UR_DQUOTE] = ACTIONS(4241), + [anon_sym_u8R_DQUOTE] = ACTIONS(4241), + [anon_sym_co_await] = ACTIONS(4239), + [anon_sym_new] = ACTIONS(4239), + [anon_sym_requires] = ACTIONS(4239), + [anon_sym_CARET_CARET] = ACTIONS(4241), + [anon_sym_LBRACK_COLON] = ACTIONS(4241), + [sym_this] = ACTIONS(4239), }, [STATE(466)] = { - [sym_identifier] = ACTIONS(4180), - [aux_sym_preproc_include_token1] = ACTIONS(4180), - [aux_sym_preproc_def_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token2] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), - [aux_sym_preproc_else_token1] = ACTIONS(4180), - [aux_sym_preproc_elif_token1] = ACTIONS(4180), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4180), - [sym_preproc_directive] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(4182), - [anon_sym_BANG] = ACTIONS(4182), - [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_STAR] = ACTIONS(4182), - [anon_sym_AMP_AMP] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym___extension__] = ACTIONS(4180), - [anon_sym_typedef] = ACTIONS(4180), - [anon_sym_virtual] = ACTIONS(4180), - [anon_sym_extern] = ACTIONS(4180), - [anon_sym___attribute__] = ACTIONS(4180), - [anon_sym___attribute] = ACTIONS(4180), - [anon_sym_using] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), - [anon_sym___declspec] = ACTIONS(4180), - [anon_sym___based] = ACTIONS(4180), - [anon_sym___cdecl] = ACTIONS(4180), - [anon_sym___clrcall] = ACTIONS(4180), - [anon_sym___stdcall] = ACTIONS(4180), - [anon_sym___fastcall] = ACTIONS(4180), - [anon_sym___thiscall] = ACTIONS(4180), - [anon_sym___vectorcall] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(4182), - [anon_sym_signed] = ACTIONS(4180), - [anon_sym_unsigned] = ACTIONS(4180), - [anon_sym_long] = ACTIONS(4180), - [anon_sym_short] = ACTIONS(4180), - [anon_sym_LBRACK] = ACTIONS(4180), - [anon_sym_static] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4180), - [anon_sym_inline] = ACTIONS(4180), - [anon_sym___inline] = ACTIONS(4180), - [anon_sym___inline__] = ACTIONS(4180), - [anon_sym___forceinline] = ACTIONS(4180), - [anon_sym_thread_local] = ACTIONS(4180), - [anon_sym___thread] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_constexpr] = ACTIONS(4180), - [anon_sym_volatile] = ACTIONS(4180), - [anon_sym_restrict] = ACTIONS(4180), - [anon_sym___restrict__] = ACTIONS(4180), - [anon_sym__Atomic] = ACTIONS(4180), - [anon_sym__Noreturn] = ACTIONS(4180), - [anon_sym_noreturn] = ACTIONS(4180), - [anon_sym__Nonnull] = ACTIONS(4180), - [anon_sym_mutable] = ACTIONS(4180), - [anon_sym_constinit] = ACTIONS(4180), - [anon_sym_consteval] = ACTIONS(4180), - [anon_sym_alignas] = ACTIONS(4180), - [anon_sym__Alignas] = ACTIONS(4180), - [sym_primitive_type] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_class] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_if] = ACTIONS(4180), - [anon_sym_switch] = ACTIONS(4180), - [anon_sym_case] = ACTIONS(4180), - [anon_sym_default] = ACTIONS(4180), - [anon_sym_while] = ACTIONS(4180), - [anon_sym_do] = ACTIONS(4180), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(4180), - [anon_sym_break] = ACTIONS(4180), - [anon_sym_continue] = ACTIONS(4180), - [anon_sym_goto] = ACTIONS(4180), - [anon_sym___try] = ACTIONS(4180), - [anon_sym___leave] = ACTIONS(4180), - [anon_sym_not] = ACTIONS(4180), - [anon_sym_compl] = ACTIONS(4180), - [anon_sym_DASH_DASH] = ACTIONS(4182), - [anon_sym_PLUS_PLUS] = ACTIONS(4182), - [anon_sym_sizeof] = ACTIONS(4180), - [anon_sym___alignof__] = ACTIONS(4180), - [anon_sym___alignof] = ACTIONS(4180), - [anon_sym__alignof] = ACTIONS(4180), - [anon_sym_alignof] = ACTIONS(4180), - [anon_sym__Alignof] = ACTIONS(4180), - [anon_sym_offsetof] = ACTIONS(4180), - [anon_sym__Generic] = ACTIONS(4180), - [anon_sym_typename] = ACTIONS(4180), - [anon_sym_asm] = ACTIONS(4180), - [anon_sym___asm__] = ACTIONS(4180), - [anon_sym___asm] = ACTIONS(4180), - [sym_number_literal] = ACTIONS(4182), - [anon_sym_L_SQUOTE] = ACTIONS(4182), - [anon_sym_u_SQUOTE] = ACTIONS(4182), - [anon_sym_U_SQUOTE] = ACTIONS(4182), - [anon_sym_u8_SQUOTE] = ACTIONS(4182), - [anon_sym_SQUOTE] = ACTIONS(4182), - [anon_sym_L_DQUOTE] = ACTIONS(4182), - [anon_sym_u_DQUOTE] = ACTIONS(4182), - [anon_sym_U_DQUOTE] = ACTIONS(4182), - [anon_sym_u8_DQUOTE] = ACTIONS(4182), - [anon_sym_DQUOTE] = ACTIONS(4182), - [sym_true] = ACTIONS(4180), - [sym_false] = ACTIONS(4180), - [anon_sym_NULL] = ACTIONS(4180), - [anon_sym_nullptr] = ACTIONS(4180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4180), - [anon_sym_decltype] = ACTIONS(4180), - [anon_sym_explicit] = ACTIONS(4180), - [anon_sym_export] = ACTIONS(4180), - [anon_sym_module] = ACTIONS(4180), - [anon_sym_import] = ACTIONS(4180), - [anon_sym_template] = ACTIONS(4180), - [anon_sym_operator] = ACTIONS(4180), - [anon_sym_try] = ACTIONS(4180), - [anon_sym_delete] = ACTIONS(4180), - [anon_sym_throw] = ACTIONS(4180), - [anon_sym_namespace] = ACTIONS(4180), - [anon_sym_static_assert] = ACTIONS(4180), - [anon_sym_concept] = ACTIONS(4180), - [anon_sym_co_return] = ACTIONS(4180), - [anon_sym_co_yield] = ACTIONS(4180), - [anon_sym_R_DQUOTE] = ACTIONS(4182), - [anon_sym_LR_DQUOTE] = ACTIONS(4182), - [anon_sym_uR_DQUOTE] = ACTIONS(4182), - [anon_sym_UR_DQUOTE] = ACTIONS(4182), - [anon_sym_u8R_DQUOTE] = ACTIONS(4182), - [anon_sym_co_await] = ACTIONS(4180), - [anon_sym_new] = ACTIONS(4180), - [anon_sym_requires] = ACTIONS(4180), - [anon_sym_CARET_CARET] = ACTIONS(4182), - [anon_sym_LBRACK_COLON] = ACTIONS(4182), - [sym_this] = ACTIONS(4180), + [sym_type_qualifier] = STATE(5168), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(2247), + [sym_sized_type_specifier] = STATE(2173), + [sym_enum_specifier] = STATE(2173), + [sym_struct_specifier] = STATE(2173), + [sym_union_specifier] = STATE(2173), + [sym_expression] = STATE(4414), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_type_descriptor] = STATE(3937), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_placeholder_type_specifier] = STATE(2173), + [sym_decltype_auto] = STATE(2172), + [sym_decltype] = STATE(2148), + [sym_class_specifier] = STATE(2173), + [sym__class_name] = STATE(10219), + [sym_dependent_type] = STATE(2173), + [sym_template_type] = STATE(2144), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7979), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(2226), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(2280), + [sym__splice_specialization_specifier] = STATE(2149), + [sym_splice_type_specifier] = STATE(2171), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [aux_sym__type_definition_type_repeat1] = STATE(5168), + [aux_sym_sized_type_specifier_repeat1] = STATE(2093), + [sym_identifier] = ACTIONS(4243), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4249), + [anon_sym_COLON_COLON] = ACTIONS(4251), + [anon_sym_signed] = ACTIONS(4253), + [anon_sym_unsigned] = ACTIONS(4253), + [anon_sym_long] = ACTIONS(4253), + [anon_sym_short] = ACTIONS(4253), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4255), + [anon_sym_enum] = ACTIONS(4257), + [anon_sym_class] = ACTIONS(4169), + [anon_sym_struct] = ACTIONS(4171), + [anon_sym_union] = ACTIONS(4173), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(4261), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4179), + [anon_sym_decltype] = ACTIONS(4181), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(467)] = { - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_include_token1] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token2] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [aux_sym_preproc_else_token1] = ACTIONS(4184), - [aux_sym_preproc_elif_token1] = ACTIONS(4184), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym___cdecl] = ACTIONS(4184), - [anon_sym___clrcall] = ACTIONS(4184), - [anon_sym___stdcall] = ACTIONS(4184), - [anon_sym___fastcall] = ACTIONS(4184), - [anon_sym___thiscall] = ACTIONS(4184), - [anon_sym___vectorcall] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(4186), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_if] = ACTIONS(4184), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_case] = ACTIONS(4184), - [anon_sym_default] = ACTIONS(4184), - [anon_sym_while] = ACTIONS(4184), - [anon_sym_do] = ACTIONS(4184), - [anon_sym_for] = ACTIONS(4184), - [anon_sym_return] = ACTIONS(4184), - [anon_sym_break] = ACTIONS(4184), - [anon_sym_continue] = ACTIONS(4184), - [anon_sym_goto] = ACTIONS(4184), - [anon_sym___try] = ACTIONS(4184), - [anon_sym___leave] = ACTIONS(4184), - [anon_sym_not] = ACTIONS(4184), - [anon_sym_compl] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4186), - [anon_sym_sizeof] = ACTIONS(4184), - [anon_sym___alignof__] = ACTIONS(4184), - [anon_sym___alignof] = ACTIONS(4184), - [anon_sym__alignof] = ACTIONS(4184), - [anon_sym_alignof] = ACTIONS(4184), - [anon_sym__Alignof] = ACTIONS(4184), - [anon_sym_offsetof] = ACTIONS(4184), - [anon_sym__Generic] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [anon_sym_asm] = ACTIONS(4184), - [anon_sym___asm__] = ACTIONS(4184), - [anon_sym___asm] = ACTIONS(4184), - [sym_number_literal] = ACTIONS(4186), - [anon_sym_L_SQUOTE] = ACTIONS(4186), - [anon_sym_u_SQUOTE] = ACTIONS(4186), - [anon_sym_U_SQUOTE] = ACTIONS(4186), - [anon_sym_u8_SQUOTE] = ACTIONS(4186), - [anon_sym_SQUOTE] = ACTIONS(4186), - [anon_sym_L_DQUOTE] = ACTIONS(4186), - [anon_sym_u_DQUOTE] = ACTIONS(4186), - [anon_sym_U_DQUOTE] = ACTIONS(4186), - [anon_sym_u8_DQUOTE] = ACTIONS(4186), - [anon_sym_DQUOTE] = ACTIONS(4186), - [sym_true] = ACTIONS(4184), - [sym_false] = ACTIONS(4184), - [anon_sym_NULL] = ACTIONS(4184), - [anon_sym_nullptr] = ACTIONS(4184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_export] = ACTIONS(4184), - [anon_sym_module] = ACTIONS(4184), - [anon_sym_import] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_try] = ACTIONS(4184), - [anon_sym_delete] = ACTIONS(4184), - [anon_sym_throw] = ACTIONS(4184), - [anon_sym_namespace] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_concept] = ACTIONS(4184), - [anon_sym_co_return] = ACTIONS(4184), - [anon_sym_co_yield] = ACTIONS(4184), - [anon_sym_R_DQUOTE] = ACTIONS(4186), - [anon_sym_LR_DQUOTE] = ACTIONS(4186), - [anon_sym_uR_DQUOTE] = ACTIONS(4186), - [anon_sym_UR_DQUOTE] = ACTIONS(4186), - [anon_sym_u8R_DQUOTE] = ACTIONS(4186), - [anon_sym_co_await] = ACTIONS(4184), - [anon_sym_new] = ACTIONS(4184), - [anon_sym_requires] = ACTIONS(4184), - [anon_sym_CARET_CARET] = ACTIONS(4186), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), - [sym_this] = ACTIONS(4184), - }, - [STATE(468)] = { - [sym_identifier] = ACTIONS(4188), - [aux_sym_preproc_include_token1] = ACTIONS(4188), - [aux_sym_preproc_def_token1] = ACTIONS(4188), - [aux_sym_preproc_if_token1] = ACTIONS(4188), - [aux_sym_preproc_if_token2] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), - [aux_sym_preproc_else_token1] = ACTIONS(4188), - [aux_sym_preproc_elif_token1] = ACTIONS(4188), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4188), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4188), - [sym_preproc_directive] = ACTIONS(4188), - [anon_sym_LPAREN2] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_TILDE] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4188), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4188), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym___extension__] = ACTIONS(4188), - [anon_sym_typedef] = ACTIONS(4188), - [anon_sym_virtual] = ACTIONS(4188), - [anon_sym_extern] = ACTIONS(4188), - [anon_sym___attribute__] = ACTIONS(4188), - [anon_sym___attribute] = ACTIONS(4188), - [anon_sym_using] = ACTIONS(4188), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), - [anon_sym___declspec] = ACTIONS(4188), - [anon_sym___based] = ACTIONS(4188), - [anon_sym___cdecl] = ACTIONS(4188), - [anon_sym___clrcall] = ACTIONS(4188), - [anon_sym___stdcall] = ACTIONS(4188), - [anon_sym___fastcall] = ACTIONS(4188), - [anon_sym___thiscall] = ACTIONS(4188), - [anon_sym___vectorcall] = ACTIONS(4188), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_signed] = ACTIONS(4188), - [anon_sym_unsigned] = ACTIONS(4188), - [anon_sym_long] = ACTIONS(4188), - [anon_sym_short] = ACTIONS(4188), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_static] = ACTIONS(4188), - [anon_sym_register] = ACTIONS(4188), - [anon_sym_inline] = ACTIONS(4188), - [anon_sym___inline] = ACTIONS(4188), - [anon_sym___inline__] = ACTIONS(4188), - [anon_sym___forceinline] = ACTIONS(4188), - [anon_sym_thread_local] = ACTIONS(4188), - [anon_sym___thread] = ACTIONS(4188), - [anon_sym_const] = ACTIONS(4188), - [anon_sym_constexpr] = ACTIONS(4188), - [anon_sym_volatile] = ACTIONS(4188), - [anon_sym_restrict] = ACTIONS(4188), - [anon_sym___restrict__] = ACTIONS(4188), - [anon_sym__Atomic] = ACTIONS(4188), - [anon_sym__Noreturn] = ACTIONS(4188), - [anon_sym_noreturn] = ACTIONS(4188), - [anon_sym__Nonnull] = ACTIONS(4188), - [anon_sym_mutable] = ACTIONS(4188), - [anon_sym_constinit] = ACTIONS(4188), - [anon_sym_consteval] = ACTIONS(4188), - [anon_sym_alignas] = ACTIONS(4188), - [anon_sym__Alignas] = ACTIONS(4188), - [sym_primitive_type] = ACTIONS(4188), - [anon_sym_enum] = ACTIONS(4188), - [anon_sym_class] = ACTIONS(4188), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_union] = ACTIONS(4188), - [anon_sym_if] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_case] = ACTIONS(4188), - [anon_sym_default] = ACTIONS(4188), - [anon_sym_while] = ACTIONS(4188), - [anon_sym_do] = ACTIONS(4188), - [anon_sym_for] = ACTIONS(4188), - [anon_sym_return] = ACTIONS(4188), - [anon_sym_break] = ACTIONS(4188), - [anon_sym_continue] = ACTIONS(4188), - [anon_sym_goto] = ACTIONS(4188), - [anon_sym___try] = ACTIONS(4188), - [anon_sym___leave] = ACTIONS(4188), - [anon_sym_not] = ACTIONS(4188), - [anon_sym_compl] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_sizeof] = ACTIONS(4188), - [anon_sym___alignof__] = ACTIONS(4188), - [anon_sym___alignof] = ACTIONS(4188), - [anon_sym__alignof] = ACTIONS(4188), - [anon_sym_alignof] = ACTIONS(4188), - [anon_sym__Alignof] = ACTIONS(4188), - [anon_sym_offsetof] = ACTIONS(4188), - [anon_sym__Generic] = ACTIONS(4188), - [anon_sym_typename] = ACTIONS(4188), - [anon_sym_asm] = ACTIONS(4188), - [anon_sym___asm__] = ACTIONS(4188), - [anon_sym___asm] = ACTIONS(4188), - [sym_number_literal] = ACTIONS(4190), - [anon_sym_L_SQUOTE] = ACTIONS(4190), - [anon_sym_u_SQUOTE] = ACTIONS(4190), - [anon_sym_U_SQUOTE] = ACTIONS(4190), - [anon_sym_u8_SQUOTE] = ACTIONS(4190), - [anon_sym_SQUOTE] = ACTIONS(4190), - [anon_sym_L_DQUOTE] = ACTIONS(4190), - [anon_sym_u_DQUOTE] = ACTIONS(4190), - [anon_sym_U_DQUOTE] = ACTIONS(4190), - [anon_sym_u8_DQUOTE] = ACTIONS(4190), - [anon_sym_DQUOTE] = ACTIONS(4190), - [sym_true] = ACTIONS(4188), - [sym_false] = ACTIONS(4188), - [anon_sym_NULL] = ACTIONS(4188), - [anon_sym_nullptr] = ACTIONS(4188), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4188), - [anon_sym_decltype] = ACTIONS(4188), - [anon_sym_explicit] = ACTIONS(4188), - [anon_sym_export] = ACTIONS(4188), - [anon_sym_module] = ACTIONS(4188), - [anon_sym_import] = ACTIONS(4188), - [anon_sym_template] = ACTIONS(4188), - [anon_sym_operator] = ACTIONS(4188), - [anon_sym_try] = ACTIONS(4188), - [anon_sym_delete] = ACTIONS(4188), - [anon_sym_throw] = ACTIONS(4188), - [anon_sym_namespace] = ACTIONS(4188), - [anon_sym_static_assert] = ACTIONS(4188), - [anon_sym_concept] = ACTIONS(4188), - [anon_sym_co_return] = ACTIONS(4188), - [anon_sym_co_yield] = ACTIONS(4188), - [anon_sym_R_DQUOTE] = ACTIONS(4190), - [anon_sym_LR_DQUOTE] = ACTIONS(4190), - [anon_sym_uR_DQUOTE] = ACTIONS(4190), - [anon_sym_UR_DQUOTE] = ACTIONS(4190), - [anon_sym_u8R_DQUOTE] = ACTIONS(4190), - [anon_sym_co_await] = ACTIONS(4188), - [anon_sym_new] = ACTIONS(4188), - [anon_sym_requires] = ACTIONS(4188), - [anon_sym_CARET_CARET] = ACTIONS(4190), - [anon_sym_LBRACK_COLON] = ACTIONS(4190), - [sym_this] = ACTIONS(4188), - }, - [STATE(469)] = { - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_include_token1] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token2] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [aux_sym_preproc_else_token1] = ACTIONS(4192), - [aux_sym_preproc_elif_token1] = ACTIONS(4192), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4192), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym___cdecl] = ACTIONS(4192), - [anon_sym___clrcall] = ACTIONS(4192), - [anon_sym___stdcall] = ACTIONS(4192), - [anon_sym___fastcall] = ACTIONS(4192), - [anon_sym___thiscall] = ACTIONS(4192), - [anon_sym___vectorcall] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4194), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_if] = ACTIONS(4192), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_case] = ACTIONS(4192), - [anon_sym_default] = ACTIONS(4192), - [anon_sym_while] = ACTIONS(4192), - [anon_sym_do] = ACTIONS(4192), - [anon_sym_for] = ACTIONS(4192), - [anon_sym_return] = ACTIONS(4192), - [anon_sym_break] = ACTIONS(4192), - [anon_sym_continue] = ACTIONS(4192), - [anon_sym_goto] = ACTIONS(4192), - [anon_sym___try] = ACTIONS(4192), - [anon_sym___leave] = ACTIONS(4192), - [anon_sym_not] = ACTIONS(4192), - [anon_sym_compl] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4194), - [anon_sym_sizeof] = ACTIONS(4192), - [anon_sym___alignof__] = ACTIONS(4192), - [anon_sym___alignof] = ACTIONS(4192), - [anon_sym__alignof] = ACTIONS(4192), - [anon_sym_alignof] = ACTIONS(4192), - [anon_sym__Alignof] = ACTIONS(4192), - [anon_sym_offsetof] = ACTIONS(4192), - [anon_sym__Generic] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [anon_sym_asm] = ACTIONS(4192), - [anon_sym___asm__] = ACTIONS(4192), - [anon_sym___asm] = ACTIONS(4192), - [sym_number_literal] = ACTIONS(4194), - [anon_sym_L_SQUOTE] = ACTIONS(4194), - [anon_sym_u_SQUOTE] = ACTIONS(4194), - [anon_sym_U_SQUOTE] = ACTIONS(4194), - [anon_sym_u8_SQUOTE] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4194), - [anon_sym_L_DQUOTE] = ACTIONS(4194), - [anon_sym_u_DQUOTE] = ACTIONS(4194), - [anon_sym_U_DQUOTE] = ACTIONS(4194), - [anon_sym_u8_DQUOTE] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [sym_true] = ACTIONS(4192), - [sym_false] = ACTIONS(4192), - [anon_sym_NULL] = ACTIONS(4192), - [anon_sym_nullptr] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_export] = ACTIONS(4192), - [anon_sym_module] = ACTIONS(4192), - [anon_sym_import] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_try] = ACTIONS(4192), - [anon_sym_delete] = ACTIONS(4192), - [anon_sym_throw] = ACTIONS(4192), - [anon_sym_namespace] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_concept] = ACTIONS(4192), - [anon_sym_co_return] = ACTIONS(4192), - [anon_sym_co_yield] = ACTIONS(4192), - [anon_sym_R_DQUOTE] = ACTIONS(4194), - [anon_sym_LR_DQUOTE] = ACTIONS(4194), - [anon_sym_uR_DQUOTE] = ACTIONS(4194), - [anon_sym_UR_DQUOTE] = ACTIONS(4194), - [anon_sym_u8R_DQUOTE] = ACTIONS(4194), - [anon_sym_co_await] = ACTIONS(4192), - [anon_sym_new] = ACTIONS(4192), - [anon_sym_requires] = ACTIONS(4192), - [anon_sym_CARET_CARET] = ACTIONS(4194), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - [sym_this] = ACTIONS(4192), - }, - [STATE(470)] = { - [sym_identifier] = ACTIONS(4196), - [aux_sym_preproc_include_token1] = ACTIONS(4196), - [aux_sym_preproc_def_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token2] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), - [aux_sym_preproc_else_token1] = ACTIONS(4196), - [aux_sym_preproc_elif_token1] = ACTIONS(4196), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4196), - [sym_preproc_directive] = ACTIONS(4196), - [anon_sym_LPAREN2] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4198), - [anon_sym_TILDE] = ACTIONS(4198), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym___extension__] = ACTIONS(4196), - [anon_sym_typedef] = ACTIONS(4196), - [anon_sym_virtual] = ACTIONS(4196), - [anon_sym_extern] = ACTIONS(4196), - [anon_sym___attribute__] = ACTIONS(4196), - [anon_sym___attribute] = ACTIONS(4196), - [anon_sym_using] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), - [anon_sym___declspec] = ACTIONS(4196), - [anon_sym___based] = ACTIONS(4196), - [anon_sym___cdecl] = ACTIONS(4196), - [anon_sym___clrcall] = ACTIONS(4196), - [anon_sym___stdcall] = ACTIONS(4196), - [anon_sym___fastcall] = ACTIONS(4196), - [anon_sym___thiscall] = ACTIONS(4196), - [anon_sym___vectorcall] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_signed] = ACTIONS(4196), - [anon_sym_unsigned] = ACTIONS(4196), - [anon_sym_long] = ACTIONS(4196), - [anon_sym_short] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_static] = ACTIONS(4196), - [anon_sym_register] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym___inline] = ACTIONS(4196), - [anon_sym___inline__] = ACTIONS(4196), - [anon_sym___forceinline] = ACTIONS(4196), - [anon_sym_thread_local] = ACTIONS(4196), - [anon_sym___thread] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_constexpr] = ACTIONS(4196), - [anon_sym_volatile] = ACTIONS(4196), - [anon_sym_restrict] = ACTIONS(4196), - [anon_sym___restrict__] = ACTIONS(4196), - [anon_sym__Atomic] = ACTIONS(4196), - [anon_sym__Noreturn] = ACTIONS(4196), - [anon_sym_noreturn] = ACTIONS(4196), - [anon_sym__Nonnull] = ACTIONS(4196), - [anon_sym_mutable] = ACTIONS(4196), - [anon_sym_constinit] = ACTIONS(4196), - [anon_sym_consteval] = ACTIONS(4196), - [anon_sym_alignas] = ACTIONS(4196), - [anon_sym__Alignas] = ACTIONS(4196), - [sym_primitive_type] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_class] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_switch] = ACTIONS(4196), - [anon_sym_case] = ACTIONS(4196), - [anon_sym_default] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_do] = ACTIONS(4196), - [anon_sym_for] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_goto] = ACTIONS(4196), - [anon_sym___try] = ACTIONS(4196), - [anon_sym___leave] = ACTIONS(4196), - [anon_sym_not] = ACTIONS(4196), - [anon_sym_compl] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_sizeof] = ACTIONS(4196), - [anon_sym___alignof__] = ACTIONS(4196), - [anon_sym___alignof] = ACTIONS(4196), - [anon_sym__alignof] = ACTIONS(4196), - [anon_sym_alignof] = ACTIONS(4196), - [anon_sym__Alignof] = ACTIONS(4196), - [anon_sym_offsetof] = ACTIONS(4196), - [anon_sym__Generic] = ACTIONS(4196), - [anon_sym_typename] = ACTIONS(4196), - [anon_sym_asm] = ACTIONS(4196), - [anon_sym___asm__] = ACTIONS(4196), - [anon_sym___asm] = ACTIONS(4196), - [sym_number_literal] = ACTIONS(4198), - [anon_sym_L_SQUOTE] = ACTIONS(4198), - [anon_sym_u_SQUOTE] = ACTIONS(4198), - [anon_sym_U_SQUOTE] = ACTIONS(4198), - [anon_sym_u8_SQUOTE] = ACTIONS(4198), - [anon_sym_SQUOTE] = ACTIONS(4198), - [anon_sym_L_DQUOTE] = ACTIONS(4198), - [anon_sym_u_DQUOTE] = ACTIONS(4198), - [anon_sym_U_DQUOTE] = ACTIONS(4198), - [anon_sym_u8_DQUOTE] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4198), - [sym_true] = ACTIONS(4196), - [sym_false] = ACTIONS(4196), - [anon_sym_NULL] = ACTIONS(4196), - [anon_sym_nullptr] = ACTIONS(4196), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4196), - [anon_sym_decltype] = ACTIONS(4196), - [anon_sym_explicit] = ACTIONS(4196), - [anon_sym_export] = ACTIONS(4196), - [anon_sym_module] = ACTIONS(4196), - [anon_sym_import] = ACTIONS(4196), - [anon_sym_template] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_delete] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_namespace] = ACTIONS(4196), - [anon_sym_static_assert] = ACTIONS(4196), - [anon_sym_concept] = ACTIONS(4196), - [anon_sym_co_return] = ACTIONS(4196), - [anon_sym_co_yield] = ACTIONS(4196), - [anon_sym_R_DQUOTE] = ACTIONS(4198), - [anon_sym_LR_DQUOTE] = ACTIONS(4198), - [anon_sym_uR_DQUOTE] = ACTIONS(4198), - [anon_sym_UR_DQUOTE] = ACTIONS(4198), - [anon_sym_u8R_DQUOTE] = ACTIONS(4198), - [anon_sym_co_await] = ACTIONS(4196), - [anon_sym_new] = ACTIONS(4196), - [anon_sym_requires] = ACTIONS(4196), - [anon_sym_CARET_CARET] = ACTIONS(4198), - [anon_sym_LBRACK_COLON] = ACTIONS(4198), - [sym_this] = ACTIONS(4196), - }, - [STATE(471)] = { - [sym_identifier] = ACTIONS(4200), - [aux_sym_preproc_include_token1] = ACTIONS(4200), - [aux_sym_preproc_def_token1] = ACTIONS(4200), - [aux_sym_preproc_if_token1] = ACTIONS(4200), - [aux_sym_preproc_if_token2] = ACTIONS(4200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4200), - [aux_sym_preproc_else_token1] = ACTIONS(4200), - [aux_sym_preproc_elif_token1] = ACTIONS(4200), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4200), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4200), - [sym_preproc_directive] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4202), - [anon_sym_TILDE] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_AMP] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym___extension__] = ACTIONS(4200), - [anon_sym_typedef] = ACTIONS(4200), - [anon_sym_virtual] = ACTIONS(4200), - [anon_sym_extern] = ACTIONS(4200), - [anon_sym___attribute__] = ACTIONS(4200), - [anon_sym___attribute] = ACTIONS(4200), - [anon_sym_using] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4202), - [anon_sym___declspec] = ACTIONS(4200), - [anon_sym___based] = ACTIONS(4200), - [anon_sym___cdecl] = ACTIONS(4200), - [anon_sym___clrcall] = ACTIONS(4200), - [anon_sym___stdcall] = ACTIONS(4200), - [anon_sym___fastcall] = ACTIONS(4200), - [anon_sym___thiscall] = ACTIONS(4200), - [anon_sym___vectorcall] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4202), - [anon_sym_signed] = ACTIONS(4200), - [anon_sym_unsigned] = ACTIONS(4200), - [anon_sym_long] = ACTIONS(4200), - [anon_sym_short] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(4200), - [anon_sym_static] = ACTIONS(4200), - [anon_sym_register] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym___inline] = ACTIONS(4200), - [anon_sym___inline__] = ACTIONS(4200), - [anon_sym___forceinline] = ACTIONS(4200), - [anon_sym_thread_local] = ACTIONS(4200), - [anon_sym___thread] = ACTIONS(4200), - [anon_sym_const] = ACTIONS(4200), - [anon_sym_constexpr] = ACTIONS(4200), - [anon_sym_volatile] = ACTIONS(4200), - [anon_sym_restrict] = ACTIONS(4200), - [anon_sym___restrict__] = ACTIONS(4200), - [anon_sym__Atomic] = ACTIONS(4200), - [anon_sym__Noreturn] = ACTIONS(4200), - [anon_sym_noreturn] = ACTIONS(4200), - [anon_sym__Nonnull] = ACTIONS(4200), - [anon_sym_mutable] = ACTIONS(4200), - [anon_sym_constinit] = ACTIONS(4200), - [anon_sym_consteval] = ACTIONS(4200), - [anon_sym_alignas] = ACTIONS(4200), - [anon_sym__Alignas] = ACTIONS(4200), - [sym_primitive_type] = ACTIONS(4200), - [anon_sym_enum] = ACTIONS(4200), - [anon_sym_class] = ACTIONS(4200), - [anon_sym_struct] = ACTIONS(4200), - [anon_sym_union] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_switch] = ACTIONS(4200), - [anon_sym_case] = ACTIONS(4200), - [anon_sym_default] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_do] = ACTIONS(4200), - [anon_sym_for] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_goto] = ACTIONS(4200), - [anon_sym___try] = ACTIONS(4200), - [anon_sym___leave] = ACTIONS(4200), - [anon_sym_not] = ACTIONS(4200), - [anon_sym_compl] = ACTIONS(4200), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_sizeof] = ACTIONS(4200), - [anon_sym___alignof__] = ACTIONS(4200), - [anon_sym___alignof] = ACTIONS(4200), - [anon_sym__alignof] = ACTIONS(4200), - [anon_sym_alignof] = ACTIONS(4200), - [anon_sym__Alignof] = ACTIONS(4200), - [anon_sym_offsetof] = ACTIONS(4200), - [anon_sym__Generic] = ACTIONS(4200), - [anon_sym_typename] = ACTIONS(4200), - [anon_sym_asm] = ACTIONS(4200), - [anon_sym___asm__] = ACTIONS(4200), - [anon_sym___asm] = ACTIONS(4200), - [sym_number_literal] = ACTIONS(4202), - [anon_sym_L_SQUOTE] = ACTIONS(4202), - [anon_sym_u_SQUOTE] = ACTIONS(4202), - [anon_sym_U_SQUOTE] = ACTIONS(4202), - [anon_sym_u8_SQUOTE] = ACTIONS(4202), - [anon_sym_SQUOTE] = ACTIONS(4202), - [anon_sym_L_DQUOTE] = ACTIONS(4202), - [anon_sym_u_DQUOTE] = ACTIONS(4202), - [anon_sym_U_DQUOTE] = ACTIONS(4202), - [anon_sym_u8_DQUOTE] = ACTIONS(4202), - [anon_sym_DQUOTE] = ACTIONS(4202), - [sym_true] = ACTIONS(4200), - [sym_false] = ACTIONS(4200), - [anon_sym_NULL] = ACTIONS(4200), - [anon_sym_nullptr] = ACTIONS(4200), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4200), - [anon_sym_decltype] = ACTIONS(4200), - [anon_sym_explicit] = ACTIONS(4200), - [anon_sym_export] = ACTIONS(4200), - [anon_sym_module] = ACTIONS(4200), - [anon_sym_import] = ACTIONS(4200), - [anon_sym_template] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_delete] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_namespace] = ACTIONS(4200), - [anon_sym_static_assert] = ACTIONS(4200), - [anon_sym_concept] = ACTIONS(4200), - [anon_sym_co_return] = ACTIONS(4200), - [anon_sym_co_yield] = ACTIONS(4200), - [anon_sym_R_DQUOTE] = ACTIONS(4202), - [anon_sym_LR_DQUOTE] = ACTIONS(4202), - [anon_sym_uR_DQUOTE] = ACTIONS(4202), - [anon_sym_UR_DQUOTE] = ACTIONS(4202), - [anon_sym_u8R_DQUOTE] = ACTIONS(4202), - [anon_sym_co_await] = ACTIONS(4200), - [anon_sym_new] = ACTIONS(4200), - [anon_sym_requires] = ACTIONS(4200), - [anon_sym_CARET_CARET] = ACTIONS(4202), - [anon_sym_LBRACK_COLON] = ACTIONS(4202), - [sym_this] = ACTIONS(4200), - }, - [STATE(472)] = { - [sym_identifier] = ACTIONS(4204), - [aux_sym_preproc_include_token1] = ACTIONS(4204), - [aux_sym_preproc_def_token1] = ACTIONS(4204), - [aux_sym_preproc_if_token1] = ACTIONS(4204), - [aux_sym_preproc_if_token2] = ACTIONS(4204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4204), - [aux_sym_preproc_else_token1] = ACTIONS(4204), - [aux_sym_preproc_elif_token1] = ACTIONS(4204), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4204), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4204), - [sym_preproc_directive] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(4206), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_TILDE] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4204), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_AMP_AMP] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(4204), - [anon_sym_SEMI] = ACTIONS(4206), - [anon_sym___extension__] = ACTIONS(4204), - [anon_sym_typedef] = ACTIONS(4204), - [anon_sym_virtual] = ACTIONS(4204), - [anon_sym_extern] = ACTIONS(4204), - [anon_sym___attribute__] = ACTIONS(4204), - [anon_sym___attribute] = ACTIONS(4204), - [anon_sym_using] = ACTIONS(4204), - [anon_sym_COLON_COLON] = ACTIONS(4206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4206), - [anon_sym___declspec] = ACTIONS(4204), - [anon_sym___based] = ACTIONS(4204), - [anon_sym___cdecl] = ACTIONS(4204), - [anon_sym___clrcall] = ACTIONS(4204), - [anon_sym___stdcall] = ACTIONS(4204), - [anon_sym___fastcall] = ACTIONS(4204), - [anon_sym___thiscall] = ACTIONS(4204), - [anon_sym___vectorcall] = ACTIONS(4204), - [anon_sym_LBRACE] = ACTIONS(4206), - [anon_sym_signed] = ACTIONS(4204), - [anon_sym_unsigned] = ACTIONS(4204), - [anon_sym_long] = ACTIONS(4204), - [anon_sym_short] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_static] = ACTIONS(4204), - [anon_sym_register] = ACTIONS(4204), - [anon_sym_inline] = ACTIONS(4204), - [anon_sym___inline] = ACTIONS(4204), - [anon_sym___inline__] = ACTIONS(4204), - [anon_sym___forceinline] = ACTIONS(4204), - [anon_sym_thread_local] = ACTIONS(4204), - [anon_sym___thread] = ACTIONS(4204), - [anon_sym_const] = ACTIONS(4204), - [anon_sym_constexpr] = ACTIONS(4204), - [anon_sym_volatile] = ACTIONS(4204), - [anon_sym_restrict] = ACTIONS(4204), - [anon_sym___restrict__] = ACTIONS(4204), - [anon_sym__Atomic] = ACTIONS(4204), - [anon_sym__Noreturn] = ACTIONS(4204), - [anon_sym_noreturn] = ACTIONS(4204), - [anon_sym__Nonnull] = ACTIONS(4204), - [anon_sym_mutable] = ACTIONS(4204), - [anon_sym_constinit] = ACTIONS(4204), - [anon_sym_consteval] = ACTIONS(4204), - [anon_sym_alignas] = ACTIONS(4204), - [anon_sym__Alignas] = ACTIONS(4204), - [sym_primitive_type] = ACTIONS(4204), - [anon_sym_enum] = ACTIONS(4204), - [anon_sym_class] = ACTIONS(4204), - [anon_sym_struct] = ACTIONS(4204), - [anon_sym_union] = ACTIONS(4204), - [anon_sym_if] = ACTIONS(4204), - [anon_sym_switch] = ACTIONS(4204), - [anon_sym_case] = ACTIONS(4204), - [anon_sym_default] = ACTIONS(4204), - [anon_sym_while] = ACTIONS(4204), - [anon_sym_do] = ACTIONS(4204), - [anon_sym_for] = ACTIONS(4204), - [anon_sym_return] = ACTIONS(4204), - [anon_sym_break] = ACTIONS(4204), - [anon_sym_continue] = ACTIONS(4204), - [anon_sym_goto] = ACTIONS(4204), - [anon_sym___try] = ACTIONS(4204), - [anon_sym___leave] = ACTIONS(4204), - [anon_sym_not] = ACTIONS(4204), - [anon_sym_compl] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4206), - [anon_sym_PLUS_PLUS] = ACTIONS(4206), - [anon_sym_sizeof] = ACTIONS(4204), - [anon_sym___alignof__] = ACTIONS(4204), - [anon_sym___alignof] = ACTIONS(4204), - [anon_sym__alignof] = ACTIONS(4204), - [anon_sym_alignof] = ACTIONS(4204), - [anon_sym__Alignof] = ACTIONS(4204), - [anon_sym_offsetof] = ACTIONS(4204), - [anon_sym__Generic] = ACTIONS(4204), - [anon_sym_typename] = ACTIONS(4204), - [anon_sym_asm] = ACTIONS(4204), - [anon_sym___asm__] = ACTIONS(4204), - [anon_sym___asm] = ACTIONS(4204), - [sym_number_literal] = ACTIONS(4206), - [anon_sym_L_SQUOTE] = ACTIONS(4206), - [anon_sym_u_SQUOTE] = ACTIONS(4206), - [anon_sym_U_SQUOTE] = ACTIONS(4206), - [anon_sym_u8_SQUOTE] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4206), - [anon_sym_L_DQUOTE] = ACTIONS(4206), - [anon_sym_u_DQUOTE] = ACTIONS(4206), - [anon_sym_U_DQUOTE] = ACTIONS(4206), - [anon_sym_u8_DQUOTE] = ACTIONS(4206), - [anon_sym_DQUOTE] = ACTIONS(4206), - [sym_true] = ACTIONS(4204), - [sym_false] = ACTIONS(4204), - [anon_sym_NULL] = ACTIONS(4204), - [anon_sym_nullptr] = ACTIONS(4204), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4204), - [anon_sym_decltype] = ACTIONS(4204), - [anon_sym_explicit] = ACTIONS(4204), - [anon_sym_export] = ACTIONS(4204), - [anon_sym_module] = ACTIONS(4204), - [anon_sym_import] = ACTIONS(4204), - [anon_sym_template] = ACTIONS(4204), - [anon_sym_operator] = ACTIONS(4204), - [anon_sym_try] = ACTIONS(4204), - [anon_sym_delete] = ACTIONS(4204), - [anon_sym_throw] = ACTIONS(4204), - [anon_sym_namespace] = ACTIONS(4204), - [anon_sym_static_assert] = ACTIONS(4204), - [anon_sym_concept] = ACTIONS(4204), - [anon_sym_co_return] = ACTIONS(4204), - [anon_sym_co_yield] = ACTIONS(4204), - [anon_sym_R_DQUOTE] = ACTIONS(4206), - [anon_sym_LR_DQUOTE] = ACTIONS(4206), - [anon_sym_uR_DQUOTE] = ACTIONS(4206), - [anon_sym_UR_DQUOTE] = ACTIONS(4206), - [anon_sym_u8R_DQUOTE] = ACTIONS(4206), - [anon_sym_co_await] = ACTIONS(4204), - [anon_sym_new] = ACTIONS(4204), - [anon_sym_requires] = ACTIONS(4204), - [anon_sym_CARET_CARET] = ACTIONS(4206), - [anon_sym_LBRACK_COLON] = ACTIONS(4206), - [sym_this] = ACTIONS(4204), - }, - [STATE(473)] = { - [sym_identifier] = ACTIONS(4208), - [aux_sym_preproc_include_token1] = ACTIONS(4208), - [aux_sym_preproc_def_token1] = ACTIONS(4208), - [aux_sym_preproc_if_token1] = ACTIONS(4208), - [aux_sym_preproc_if_token2] = ACTIONS(4208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4208), - [aux_sym_preproc_else_token1] = ACTIONS(4208), - [aux_sym_preproc_elif_token1] = ACTIONS(4208), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4208), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4208), - [sym_preproc_directive] = ACTIONS(4208), - [anon_sym_LPAREN2] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_TILDE] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym___extension__] = ACTIONS(4208), - [anon_sym_typedef] = ACTIONS(4208), - [anon_sym_virtual] = ACTIONS(4208), - [anon_sym_extern] = ACTIONS(4208), - [anon_sym___attribute__] = ACTIONS(4208), - [anon_sym___attribute] = ACTIONS(4208), - [anon_sym_using] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4210), - [anon_sym___declspec] = ACTIONS(4208), - [anon_sym___based] = ACTIONS(4208), - [anon_sym___cdecl] = ACTIONS(4208), - [anon_sym___clrcall] = ACTIONS(4208), - [anon_sym___stdcall] = ACTIONS(4208), - [anon_sym___fastcall] = ACTIONS(4208), - [anon_sym___thiscall] = ACTIONS(4208), - [anon_sym___vectorcall] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4210), - [anon_sym_signed] = ACTIONS(4208), - [anon_sym_unsigned] = ACTIONS(4208), - [anon_sym_long] = ACTIONS(4208), - [anon_sym_short] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_static] = ACTIONS(4208), - [anon_sym_register] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym___inline] = ACTIONS(4208), - [anon_sym___inline__] = ACTIONS(4208), - [anon_sym___forceinline] = ACTIONS(4208), - [anon_sym_thread_local] = ACTIONS(4208), - [anon_sym___thread] = ACTIONS(4208), - [anon_sym_const] = ACTIONS(4208), - [anon_sym_constexpr] = ACTIONS(4208), - [anon_sym_volatile] = ACTIONS(4208), - [anon_sym_restrict] = ACTIONS(4208), - [anon_sym___restrict__] = ACTIONS(4208), - [anon_sym__Atomic] = ACTIONS(4208), - [anon_sym__Noreturn] = ACTIONS(4208), - [anon_sym_noreturn] = ACTIONS(4208), - [anon_sym__Nonnull] = ACTIONS(4208), - [anon_sym_mutable] = ACTIONS(4208), - [anon_sym_constinit] = ACTIONS(4208), - [anon_sym_consteval] = ACTIONS(4208), - [anon_sym_alignas] = ACTIONS(4208), - [anon_sym__Alignas] = ACTIONS(4208), - [sym_primitive_type] = ACTIONS(4208), - [anon_sym_enum] = ACTIONS(4208), - [anon_sym_class] = ACTIONS(4208), - [anon_sym_struct] = ACTIONS(4208), - [anon_sym_union] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_switch] = ACTIONS(4208), - [anon_sym_case] = ACTIONS(4208), - [anon_sym_default] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_do] = ACTIONS(4208), - [anon_sym_for] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_goto] = ACTIONS(4208), - [anon_sym___try] = ACTIONS(4208), - [anon_sym___leave] = ACTIONS(4208), - [anon_sym_not] = ACTIONS(4208), - [anon_sym_compl] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_sizeof] = ACTIONS(4208), - [anon_sym___alignof__] = ACTIONS(4208), - [anon_sym___alignof] = ACTIONS(4208), - [anon_sym__alignof] = ACTIONS(4208), - [anon_sym_alignof] = ACTIONS(4208), - [anon_sym__Alignof] = ACTIONS(4208), - [anon_sym_offsetof] = ACTIONS(4208), - [anon_sym__Generic] = ACTIONS(4208), - [anon_sym_typename] = ACTIONS(4208), - [anon_sym_asm] = ACTIONS(4208), - [anon_sym___asm__] = ACTIONS(4208), - [anon_sym___asm] = ACTIONS(4208), - [sym_number_literal] = ACTIONS(4210), - [anon_sym_L_SQUOTE] = ACTIONS(4210), - [anon_sym_u_SQUOTE] = ACTIONS(4210), - [anon_sym_U_SQUOTE] = ACTIONS(4210), - [anon_sym_u8_SQUOTE] = ACTIONS(4210), - [anon_sym_SQUOTE] = ACTIONS(4210), - [anon_sym_L_DQUOTE] = ACTIONS(4210), - [anon_sym_u_DQUOTE] = ACTIONS(4210), - [anon_sym_U_DQUOTE] = ACTIONS(4210), - [anon_sym_u8_DQUOTE] = ACTIONS(4210), - [anon_sym_DQUOTE] = ACTIONS(4210), - [sym_true] = ACTIONS(4208), - [sym_false] = ACTIONS(4208), - [anon_sym_NULL] = ACTIONS(4208), - [anon_sym_nullptr] = ACTIONS(4208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4208), - [anon_sym_decltype] = ACTIONS(4208), - [anon_sym_explicit] = ACTIONS(4208), - [anon_sym_export] = ACTIONS(4208), - [anon_sym_module] = ACTIONS(4208), - [anon_sym_import] = ACTIONS(4208), - [anon_sym_template] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_delete] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_namespace] = ACTIONS(4208), - [anon_sym_static_assert] = ACTIONS(4208), - [anon_sym_concept] = ACTIONS(4208), - [anon_sym_co_return] = ACTIONS(4208), - [anon_sym_co_yield] = ACTIONS(4208), - [anon_sym_R_DQUOTE] = ACTIONS(4210), - [anon_sym_LR_DQUOTE] = ACTIONS(4210), - [anon_sym_uR_DQUOTE] = ACTIONS(4210), - [anon_sym_UR_DQUOTE] = ACTIONS(4210), - [anon_sym_u8R_DQUOTE] = ACTIONS(4210), - [anon_sym_co_await] = ACTIONS(4208), - [anon_sym_new] = ACTIONS(4208), - [anon_sym_requires] = ACTIONS(4208), - [anon_sym_CARET_CARET] = ACTIONS(4210), - [anon_sym_LBRACK_COLON] = ACTIONS(4210), - [sym_this] = ACTIONS(4208), - }, - [STATE(474)] = { - [sym_identifier] = ACTIONS(4212), - [aux_sym_preproc_include_token1] = ACTIONS(4212), - [aux_sym_preproc_def_token1] = ACTIONS(4212), - [aux_sym_preproc_if_token1] = ACTIONS(4212), - [aux_sym_preproc_if_token2] = ACTIONS(4212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4212), - [aux_sym_preproc_else_token1] = ACTIONS(4212), - [aux_sym_preproc_elif_token1] = ACTIONS(4212), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4212), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4212), - [sym_preproc_directive] = ACTIONS(4212), - [anon_sym_LPAREN2] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_TILDE] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4212), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4212), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym___extension__] = ACTIONS(4212), - [anon_sym_typedef] = ACTIONS(4212), - [anon_sym_virtual] = ACTIONS(4212), - [anon_sym_extern] = ACTIONS(4212), - [anon_sym___attribute__] = ACTIONS(4212), - [anon_sym___attribute] = ACTIONS(4212), - [anon_sym_using] = ACTIONS(4212), - [anon_sym_COLON_COLON] = ACTIONS(4214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4214), - [anon_sym___declspec] = ACTIONS(4212), - [anon_sym___based] = ACTIONS(4212), - [anon_sym___cdecl] = ACTIONS(4212), - [anon_sym___clrcall] = ACTIONS(4212), - [anon_sym___stdcall] = ACTIONS(4212), - [anon_sym___fastcall] = ACTIONS(4212), - [anon_sym___thiscall] = ACTIONS(4212), - [anon_sym___vectorcall] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_signed] = ACTIONS(4212), - [anon_sym_unsigned] = ACTIONS(4212), - [anon_sym_long] = ACTIONS(4212), - [anon_sym_short] = ACTIONS(4212), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_static] = ACTIONS(4212), - [anon_sym_register] = ACTIONS(4212), - [anon_sym_inline] = ACTIONS(4212), - [anon_sym___inline] = ACTIONS(4212), - [anon_sym___inline__] = ACTIONS(4212), - [anon_sym___forceinline] = ACTIONS(4212), - [anon_sym_thread_local] = ACTIONS(4212), - [anon_sym___thread] = ACTIONS(4212), - [anon_sym_const] = ACTIONS(4212), - [anon_sym_constexpr] = ACTIONS(4212), - [anon_sym_volatile] = ACTIONS(4212), - [anon_sym_restrict] = ACTIONS(4212), - [anon_sym___restrict__] = ACTIONS(4212), - [anon_sym__Atomic] = ACTIONS(4212), - [anon_sym__Noreturn] = ACTIONS(4212), - [anon_sym_noreturn] = ACTIONS(4212), - [anon_sym__Nonnull] = ACTIONS(4212), - [anon_sym_mutable] = ACTIONS(4212), - [anon_sym_constinit] = ACTIONS(4212), - [anon_sym_consteval] = ACTIONS(4212), - [anon_sym_alignas] = ACTIONS(4212), - [anon_sym__Alignas] = ACTIONS(4212), - [sym_primitive_type] = ACTIONS(4212), - [anon_sym_enum] = ACTIONS(4212), - [anon_sym_class] = ACTIONS(4212), - [anon_sym_struct] = ACTIONS(4212), - [anon_sym_union] = ACTIONS(4212), - [anon_sym_if] = ACTIONS(4212), - [anon_sym_switch] = ACTIONS(4212), - [anon_sym_case] = ACTIONS(4212), - [anon_sym_default] = ACTIONS(4212), - [anon_sym_while] = ACTIONS(4212), - [anon_sym_do] = ACTIONS(4212), - [anon_sym_for] = ACTIONS(4212), - [anon_sym_return] = ACTIONS(4212), - [anon_sym_break] = ACTIONS(4212), - [anon_sym_continue] = ACTIONS(4212), - [anon_sym_goto] = ACTIONS(4212), - [anon_sym___try] = ACTIONS(4212), - [anon_sym___leave] = ACTIONS(4212), - [anon_sym_not] = ACTIONS(4212), - [anon_sym_compl] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4214), - [anon_sym_sizeof] = ACTIONS(4212), - [anon_sym___alignof__] = ACTIONS(4212), - [anon_sym___alignof] = ACTIONS(4212), - [anon_sym__alignof] = ACTIONS(4212), - [anon_sym_alignof] = ACTIONS(4212), - [anon_sym__Alignof] = ACTIONS(4212), - [anon_sym_offsetof] = ACTIONS(4212), - [anon_sym__Generic] = ACTIONS(4212), - [anon_sym_typename] = ACTIONS(4212), - [anon_sym_asm] = ACTIONS(4212), - [anon_sym___asm__] = ACTIONS(4212), - [anon_sym___asm] = ACTIONS(4212), - [sym_number_literal] = ACTIONS(4214), - [anon_sym_L_SQUOTE] = ACTIONS(4214), - [anon_sym_u_SQUOTE] = ACTIONS(4214), - [anon_sym_U_SQUOTE] = ACTIONS(4214), - [anon_sym_u8_SQUOTE] = ACTIONS(4214), - [anon_sym_SQUOTE] = ACTIONS(4214), - [anon_sym_L_DQUOTE] = ACTIONS(4214), - [anon_sym_u_DQUOTE] = ACTIONS(4214), - [anon_sym_U_DQUOTE] = ACTIONS(4214), - [anon_sym_u8_DQUOTE] = ACTIONS(4214), - [anon_sym_DQUOTE] = ACTIONS(4214), - [sym_true] = ACTIONS(4212), - [sym_false] = ACTIONS(4212), - [anon_sym_NULL] = ACTIONS(4212), - [anon_sym_nullptr] = ACTIONS(4212), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4212), - [anon_sym_decltype] = ACTIONS(4212), - [anon_sym_explicit] = ACTIONS(4212), - [anon_sym_export] = ACTIONS(4212), - [anon_sym_module] = ACTIONS(4212), - [anon_sym_import] = ACTIONS(4212), - [anon_sym_template] = ACTIONS(4212), - [anon_sym_operator] = ACTIONS(4212), - [anon_sym_try] = ACTIONS(4212), - [anon_sym_delete] = ACTIONS(4212), - [anon_sym_throw] = ACTIONS(4212), - [anon_sym_namespace] = ACTIONS(4212), - [anon_sym_static_assert] = ACTIONS(4212), - [anon_sym_concept] = ACTIONS(4212), - [anon_sym_co_return] = ACTIONS(4212), - [anon_sym_co_yield] = ACTIONS(4212), - [anon_sym_R_DQUOTE] = ACTIONS(4214), - [anon_sym_LR_DQUOTE] = ACTIONS(4214), - [anon_sym_uR_DQUOTE] = ACTIONS(4214), - [anon_sym_UR_DQUOTE] = ACTIONS(4214), - [anon_sym_u8R_DQUOTE] = ACTIONS(4214), - [anon_sym_co_await] = ACTIONS(4212), - [anon_sym_new] = ACTIONS(4212), - [anon_sym_requires] = ACTIONS(4212), - [anon_sym_CARET_CARET] = ACTIONS(4214), - [anon_sym_LBRACK_COLON] = ACTIONS(4214), - [sym_this] = ACTIONS(4212), - }, - [STATE(475)] = { - [sym_type_qualifier] = STATE(5177), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(3585), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(6847), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(5965), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10422), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7926), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(4088), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(4666), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [aux_sym__type_definition_type_repeat1] = STATE(5177), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(4216), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4226), - [anon_sym_COLON_COLON] = ACTIONS(4228), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [sym_type_qualifier] = STATE(5142), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3538), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6425), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(5948), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7902), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(4042), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5142), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(4263), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), + [anon_sym_COLON_COLON] = ACTIONS(4265), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -127936,16 +126782,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(4230), - [anon_sym_enum] = ACTIONS(3704), - [anon_sym_class] = ACTIONS(3706), - [anon_sym_struct] = ACTIONS(3708), - [anon_sym_union] = ACTIONS(3710), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(3802), + [anon_sym_class] = ACTIONS(3804), + [anon_sym_struct] = ACTIONS(3806), + [anon_sym_union] = ACTIONS(3808), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -127953,7 +126799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4236), + [anon_sym_typename] = ACTIONS(3814), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -127973,100 +126819,2710 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(468)] = { + [sym_identifier] = ACTIONS(4219), + [aux_sym_preproc_include_token1] = ACTIONS(4219), + [aux_sym_preproc_def_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token2] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4219), + [aux_sym_preproc_else_token1] = ACTIONS(4219), + [aux_sym_preproc_elif_token1] = ACTIONS(4219), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4219), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4219), + [sym_preproc_directive] = ACTIONS(4219), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym___extension__] = ACTIONS(4219), + [anon_sym_typedef] = ACTIONS(4219), + [anon_sym_virtual] = ACTIONS(4219), + [anon_sym_extern] = ACTIONS(4219), + [anon_sym___attribute__] = ACTIONS(4219), + [anon_sym___attribute] = ACTIONS(4219), + [anon_sym_using] = ACTIONS(4219), + [anon_sym_COLON_COLON] = ACTIONS(4221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4221), + [anon_sym___declspec] = ACTIONS(4219), + [anon_sym___based] = ACTIONS(4219), + [anon_sym___cdecl] = ACTIONS(4219), + [anon_sym___clrcall] = ACTIONS(4219), + [anon_sym___stdcall] = ACTIONS(4219), + [anon_sym___fastcall] = ACTIONS(4219), + [anon_sym___thiscall] = ACTIONS(4219), + [anon_sym___vectorcall] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4221), + [anon_sym_signed] = ACTIONS(4219), + [anon_sym_unsigned] = ACTIONS(4219), + [anon_sym_long] = ACTIONS(4219), + [anon_sym_short] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_static] = ACTIONS(4219), + [anon_sym_register] = ACTIONS(4219), + [anon_sym_inline] = ACTIONS(4219), + [anon_sym___inline] = ACTIONS(4219), + [anon_sym___inline__] = ACTIONS(4219), + [anon_sym___forceinline] = ACTIONS(4219), + [anon_sym_thread_local] = ACTIONS(4219), + [anon_sym___thread] = ACTIONS(4219), + [anon_sym_const] = ACTIONS(4219), + [anon_sym_constexpr] = ACTIONS(4219), + [anon_sym_volatile] = ACTIONS(4219), + [anon_sym_restrict] = ACTIONS(4219), + [anon_sym___restrict__] = ACTIONS(4219), + [anon_sym__Atomic] = ACTIONS(4219), + [anon_sym__Noreturn] = ACTIONS(4219), + [anon_sym_noreturn] = ACTIONS(4219), + [anon_sym__Nonnull] = ACTIONS(4219), + [anon_sym_mutable] = ACTIONS(4219), + [anon_sym_constinit] = ACTIONS(4219), + [anon_sym_consteval] = ACTIONS(4219), + [anon_sym_alignas] = ACTIONS(4219), + [anon_sym__Alignas] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(4219), + [anon_sym_enum] = ACTIONS(4219), + [anon_sym_class] = ACTIONS(4219), + [anon_sym_struct] = ACTIONS(4219), + [anon_sym_union] = ACTIONS(4219), + [anon_sym_if] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_case] = ACTIONS(4219), + [anon_sym_default] = ACTIONS(4219), + [anon_sym_while] = ACTIONS(4219), + [anon_sym_do] = ACTIONS(4219), + [anon_sym_for] = ACTIONS(4219), + [anon_sym_return] = ACTIONS(4219), + [anon_sym_break] = ACTIONS(4219), + [anon_sym_continue] = ACTIONS(4219), + [anon_sym_goto] = ACTIONS(4219), + [anon_sym___try] = ACTIONS(4219), + [anon_sym___leave] = ACTIONS(4219), + [anon_sym_not] = ACTIONS(4219), + [anon_sym_compl] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_sizeof] = ACTIONS(4219), + [anon_sym___alignof__] = ACTIONS(4219), + [anon_sym___alignof] = ACTIONS(4219), + [anon_sym__alignof] = ACTIONS(4219), + [anon_sym_alignof] = ACTIONS(4219), + [anon_sym__Alignof] = ACTIONS(4219), + [anon_sym_offsetof] = ACTIONS(4219), + [anon_sym__Generic] = ACTIONS(4219), + [anon_sym_typename] = ACTIONS(4219), + [anon_sym_asm] = ACTIONS(4219), + [anon_sym___asm__] = ACTIONS(4219), + [anon_sym___asm] = ACTIONS(4219), + [sym_number_literal] = ACTIONS(4221), + [anon_sym_L_SQUOTE] = ACTIONS(4221), + [anon_sym_u_SQUOTE] = ACTIONS(4221), + [anon_sym_U_SQUOTE] = ACTIONS(4221), + [anon_sym_u8_SQUOTE] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_L_DQUOTE] = ACTIONS(4221), + [anon_sym_u_DQUOTE] = ACTIONS(4221), + [anon_sym_U_DQUOTE] = ACTIONS(4221), + [anon_sym_u8_DQUOTE] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4221), + [sym_true] = ACTIONS(4219), + [sym_false] = ACTIONS(4219), + [anon_sym_NULL] = ACTIONS(4219), + [anon_sym_nullptr] = ACTIONS(4219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4219), + [anon_sym_decltype] = ACTIONS(4219), + [anon_sym_explicit] = ACTIONS(4219), + [anon_sym_export] = ACTIONS(4219), + [anon_sym_module] = ACTIONS(4219), + [anon_sym_import] = ACTIONS(4219), + [anon_sym_template] = ACTIONS(4219), + [anon_sym_operator] = ACTIONS(4219), + [anon_sym_try] = ACTIONS(4219), + [anon_sym_delete] = ACTIONS(4219), + [anon_sym_throw] = ACTIONS(4219), + [anon_sym_namespace] = ACTIONS(4219), + [anon_sym_static_assert] = ACTIONS(4219), + [anon_sym_concept] = ACTIONS(4219), + [anon_sym_co_return] = ACTIONS(4219), + [anon_sym_co_yield] = ACTIONS(4219), + [anon_sym_R_DQUOTE] = ACTIONS(4221), + [anon_sym_LR_DQUOTE] = ACTIONS(4221), + [anon_sym_uR_DQUOTE] = ACTIONS(4221), + [anon_sym_UR_DQUOTE] = ACTIONS(4221), + [anon_sym_u8R_DQUOTE] = ACTIONS(4221), + [anon_sym_co_await] = ACTIONS(4219), + [anon_sym_new] = ACTIONS(4219), + [anon_sym_requires] = ACTIONS(4219), + [anon_sym_CARET_CARET] = ACTIONS(4221), + [anon_sym_LBRACK_COLON] = ACTIONS(4221), + [sym_this] = ACTIONS(4219), + }, + [STATE(469)] = { + [sym_identifier] = ACTIONS(4267), + [aux_sym_preproc_include_token1] = ACTIONS(4267), + [aux_sym_preproc_def_token1] = ACTIONS(4267), + [aux_sym_preproc_if_token1] = ACTIONS(4267), + [aux_sym_preproc_if_token2] = ACTIONS(4267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), + [aux_sym_preproc_else_token1] = ACTIONS(4267), + [aux_sym_preproc_elif_token1] = ACTIONS(4267), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4267), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4267), + [sym_preproc_directive] = ACTIONS(4267), + [anon_sym_LPAREN2] = ACTIONS(4269), + [anon_sym_BANG] = ACTIONS(4269), + [anon_sym_TILDE] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym___extension__] = ACTIONS(4267), + [anon_sym_typedef] = ACTIONS(4267), + [anon_sym_virtual] = ACTIONS(4267), + [anon_sym_extern] = ACTIONS(4267), + [anon_sym___attribute__] = ACTIONS(4267), + [anon_sym___attribute] = ACTIONS(4267), + [anon_sym_using] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4269), + [anon_sym___declspec] = ACTIONS(4267), + [anon_sym___based] = ACTIONS(4267), + [anon_sym___cdecl] = ACTIONS(4267), + [anon_sym___clrcall] = ACTIONS(4267), + [anon_sym___stdcall] = ACTIONS(4267), + [anon_sym___fastcall] = ACTIONS(4267), + [anon_sym___thiscall] = ACTIONS(4267), + [anon_sym___vectorcall] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_signed] = ACTIONS(4267), + [anon_sym_unsigned] = ACTIONS(4267), + [anon_sym_long] = ACTIONS(4267), + [anon_sym_short] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_static] = ACTIONS(4267), + [anon_sym_register] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym___inline] = ACTIONS(4267), + [anon_sym___inline__] = ACTIONS(4267), + [anon_sym___forceinline] = ACTIONS(4267), + [anon_sym_thread_local] = ACTIONS(4267), + [anon_sym___thread] = ACTIONS(4267), + [anon_sym_const] = ACTIONS(4267), + [anon_sym_constexpr] = ACTIONS(4267), + [anon_sym_volatile] = ACTIONS(4267), + [anon_sym_restrict] = ACTIONS(4267), + [anon_sym___restrict__] = ACTIONS(4267), + [anon_sym__Atomic] = ACTIONS(4267), + [anon_sym__Noreturn] = ACTIONS(4267), + [anon_sym_noreturn] = ACTIONS(4267), + [anon_sym__Nonnull] = ACTIONS(4267), + [anon_sym_mutable] = ACTIONS(4267), + [anon_sym_constinit] = ACTIONS(4267), + [anon_sym_consteval] = ACTIONS(4267), + [anon_sym_alignas] = ACTIONS(4267), + [anon_sym__Alignas] = ACTIONS(4267), + [sym_primitive_type] = ACTIONS(4267), + [anon_sym_enum] = ACTIONS(4267), + [anon_sym_class] = ACTIONS(4267), + [anon_sym_struct] = ACTIONS(4267), + [anon_sym_union] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_switch] = ACTIONS(4267), + [anon_sym_case] = ACTIONS(4267), + [anon_sym_default] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_do] = ACTIONS(4267), + [anon_sym_for] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_goto] = ACTIONS(4267), + [anon_sym___try] = ACTIONS(4267), + [anon_sym___leave] = ACTIONS(4267), + [anon_sym_not] = ACTIONS(4267), + [anon_sym_compl] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_sizeof] = ACTIONS(4267), + [anon_sym___alignof__] = ACTIONS(4267), + [anon_sym___alignof] = ACTIONS(4267), + [anon_sym__alignof] = ACTIONS(4267), + [anon_sym_alignof] = ACTIONS(4267), + [anon_sym__Alignof] = ACTIONS(4267), + [anon_sym_offsetof] = ACTIONS(4267), + [anon_sym__Generic] = ACTIONS(4267), + [anon_sym_typename] = ACTIONS(4267), + [anon_sym_asm] = ACTIONS(4267), + [anon_sym___asm__] = ACTIONS(4267), + [anon_sym___asm] = ACTIONS(4267), + [sym_number_literal] = ACTIONS(4269), + [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(4269), + [anon_sym_u_DQUOTE] = ACTIONS(4269), + [anon_sym_U_DQUOTE] = ACTIONS(4269), + [anon_sym_u8_DQUOTE] = ACTIONS(4269), + [anon_sym_DQUOTE] = ACTIONS(4269), + [sym_true] = ACTIONS(4267), + [sym_false] = ACTIONS(4267), + [anon_sym_NULL] = ACTIONS(4267), + [anon_sym_nullptr] = ACTIONS(4267), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4267), + [anon_sym_decltype] = ACTIONS(4267), + [anon_sym_explicit] = ACTIONS(4267), + [anon_sym_export] = ACTIONS(4267), + [anon_sym_module] = ACTIONS(4267), + [anon_sym_import] = ACTIONS(4267), + [anon_sym_template] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_delete] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_namespace] = ACTIONS(4267), + [anon_sym_static_assert] = ACTIONS(4267), + [anon_sym_concept] = ACTIONS(4267), + [anon_sym_co_return] = ACTIONS(4267), + [anon_sym_co_yield] = ACTIONS(4267), + [anon_sym_R_DQUOTE] = ACTIONS(4269), + [anon_sym_LR_DQUOTE] = ACTIONS(4269), + [anon_sym_uR_DQUOTE] = ACTIONS(4269), + [anon_sym_UR_DQUOTE] = ACTIONS(4269), + [anon_sym_u8R_DQUOTE] = ACTIONS(4269), + [anon_sym_co_await] = ACTIONS(4267), + [anon_sym_new] = ACTIONS(4267), + [anon_sym_requires] = ACTIONS(4267), + [anon_sym_CARET_CARET] = ACTIONS(4269), + [anon_sym_LBRACK_COLON] = ACTIONS(4269), + [sym_this] = ACTIONS(4267), + }, + [STATE(470)] = { + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4271), + [aux_sym_preproc_elif_token1] = ACTIONS(4271), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym___cdecl] = ACTIONS(4271), + [anon_sym___clrcall] = ACTIONS(4271), + [anon_sym___stdcall] = ACTIONS(4271), + [anon_sym___fastcall] = ACTIONS(4271), + [anon_sym___thiscall] = ACTIONS(4271), + [anon_sym___vectorcall] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_switch] = ACTIONS(4271), + [anon_sym_case] = ACTIONS(4271), + [anon_sym_default] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_do] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_goto] = ACTIONS(4271), + [anon_sym___try] = ACTIONS(4271), + [anon_sym___leave] = ACTIONS(4271), + [anon_sym_not] = ACTIONS(4271), + [anon_sym_compl] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_sizeof] = ACTIONS(4271), + [anon_sym___alignof__] = ACTIONS(4271), + [anon_sym___alignof] = ACTIONS(4271), + [anon_sym__alignof] = ACTIONS(4271), + [anon_sym_alignof] = ACTIONS(4271), + [anon_sym__Alignof] = ACTIONS(4271), + [anon_sym_offsetof] = ACTIONS(4271), + [anon_sym__Generic] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [anon_sym_asm] = ACTIONS(4271), + [anon_sym___asm__] = ACTIONS(4271), + [anon_sym___asm] = ACTIONS(4271), + [sym_number_literal] = ACTIONS(4273), + [anon_sym_L_SQUOTE] = ACTIONS(4273), + [anon_sym_u_SQUOTE] = ACTIONS(4273), + [anon_sym_U_SQUOTE] = ACTIONS(4273), + [anon_sym_u8_SQUOTE] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4273), + [anon_sym_L_DQUOTE] = ACTIONS(4273), + [anon_sym_u_DQUOTE] = ACTIONS(4273), + [anon_sym_U_DQUOTE] = ACTIONS(4273), + [anon_sym_u8_DQUOTE] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(4273), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [anon_sym_NULL] = ACTIONS(4271), + [anon_sym_nullptr] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_export] = ACTIONS(4271), + [anon_sym_module] = ACTIONS(4271), + [anon_sym_import] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_delete] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_namespace] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_concept] = ACTIONS(4271), + [anon_sym_co_return] = ACTIONS(4271), + [anon_sym_co_yield] = ACTIONS(4271), + [anon_sym_R_DQUOTE] = ACTIONS(4273), + [anon_sym_LR_DQUOTE] = ACTIONS(4273), + [anon_sym_uR_DQUOTE] = ACTIONS(4273), + [anon_sym_UR_DQUOTE] = ACTIONS(4273), + [anon_sym_u8R_DQUOTE] = ACTIONS(4273), + [anon_sym_co_await] = ACTIONS(4271), + [anon_sym_new] = ACTIONS(4271), + [anon_sym_requires] = ACTIONS(4271), + [anon_sym_CARET_CARET] = ACTIONS(4273), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), + [sym_this] = ACTIONS(4271), + }, + [STATE(471)] = { + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4271), + [aux_sym_preproc_elif_token1] = ACTIONS(4271), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym___cdecl] = ACTIONS(4271), + [anon_sym___clrcall] = ACTIONS(4271), + [anon_sym___stdcall] = ACTIONS(4271), + [anon_sym___fastcall] = ACTIONS(4271), + [anon_sym___thiscall] = ACTIONS(4271), + [anon_sym___vectorcall] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_switch] = ACTIONS(4271), + [anon_sym_case] = ACTIONS(4271), + [anon_sym_default] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_do] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_goto] = ACTIONS(4271), + [anon_sym___try] = ACTIONS(4271), + [anon_sym___leave] = ACTIONS(4271), + [anon_sym_not] = ACTIONS(4271), + [anon_sym_compl] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_sizeof] = ACTIONS(4271), + [anon_sym___alignof__] = ACTIONS(4271), + [anon_sym___alignof] = ACTIONS(4271), + [anon_sym__alignof] = ACTIONS(4271), + [anon_sym_alignof] = ACTIONS(4271), + [anon_sym__Alignof] = ACTIONS(4271), + [anon_sym_offsetof] = ACTIONS(4271), + [anon_sym__Generic] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [anon_sym_asm] = ACTIONS(4271), + [anon_sym___asm__] = ACTIONS(4271), + [anon_sym___asm] = ACTIONS(4271), + [sym_number_literal] = ACTIONS(4273), + [anon_sym_L_SQUOTE] = ACTIONS(4273), + [anon_sym_u_SQUOTE] = ACTIONS(4273), + [anon_sym_U_SQUOTE] = ACTIONS(4273), + [anon_sym_u8_SQUOTE] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4273), + [anon_sym_L_DQUOTE] = ACTIONS(4273), + [anon_sym_u_DQUOTE] = ACTIONS(4273), + [anon_sym_U_DQUOTE] = ACTIONS(4273), + [anon_sym_u8_DQUOTE] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(4273), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [anon_sym_NULL] = ACTIONS(4271), + [anon_sym_nullptr] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_export] = ACTIONS(4271), + [anon_sym_module] = ACTIONS(4271), + [anon_sym_import] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_delete] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_namespace] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_concept] = ACTIONS(4271), + [anon_sym_co_return] = ACTIONS(4271), + [anon_sym_co_yield] = ACTIONS(4271), + [anon_sym_R_DQUOTE] = ACTIONS(4273), + [anon_sym_LR_DQUOTE] = ACTIONS(4273), + [anon_sym_uR_DQUOTE] = ACTIONS(4273), + [anon_sym_UR_DQUOTE] = ACTIONS(4273), + [anon_sym_u8R_DQUOTE] = ACTIONS(4273), + [anon_sym_co_await] = ACTIONS(4271), + [anon_sym_new] = ACTIONS(4271), + [anon_sym_requires] = ACTIONS(4271), + [anon_sym_CARET_CARET] = ACTIONS(4273), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), + [sym_this] = ACTIONS(4271), + }, + [STATE(472)] = { + [sym_identifier] = ACTIONS(4275), + [aux_sym_preproc_include_token1] = ACTIONS(4275), + [aux_sym_preproc_def_token1] = ACTIONS(4275), + [aux_sym_preproc_if_token1] = ACTIONS(4275), + [aux_sym_preproc_if_token2] = ACTIONS(4275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4275), + [aux_sym_preproc_else_token1] = ACTIONS(4275), + [aux_sym_preproc_elif_token1] = ACTIONS(4275), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4275), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4275), + [sym_preproc_directive] = ACTIONS(4275), + [anon_sym_LPAREN2] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_TILDE] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_AMP] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_typedef] = ACTIONS(4275), + [anon_sym_virtual] = ACTIONS(4275), + [anon_sym_extern] = ACTIONS(4275), + [anon_sym___attribute__] = ACTIONS(4275), + [anon_sym___attribute] = ACTIONS(4275), + [anon_sym_using] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4278), + [anon_sym___declspec] = ACTIONS(4275), + [anon_sym___based] = ACTIONS(4275), + [anon_sym___cdecl] = ACTIONS(4275), + [anon_sym___clrcall] = ACTIONS(4275), + [anon_sym___stdcall] = ACTIONS(4275), + [anon_sym___fastcall] = ACTIONS(4275), + [anon_sym___thiscall] = ACTIONS(4275), + [anon_sym___vectorcall] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_signed] = ACTIONS(4275), + [anon_sym_unsigned] = ACTIONS(4275), + [anon_sym_long] = ACTIONS(4275), + [anon_sym_short] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4275), + [anon_sym_static] = ACTIONS(4275), + [anon_sym_register] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym___inline] = ACTIONS(4275), + [anon_sym___inline__] = ACTIONS(4275), + [anon_sym___forceinline] = ACTIONS(4275), + [anon_sym_thread_local] = ACTIONS(4275), + [anon_sym___thread] = ACTIONS(4275), + [anon_sym_const] = ACTIONS(4275), + [anon_sym_constexpr] = ACTIONS(4275), + [anon_sym_volatile] = ACTIONS(4275), + [anon_sym_restrict] = ACTIONS(4275), + [anon_sym___restrict__] = ACTIONS(4275), + [anon_sym__Atomic] = ACTIONS(4275), + [anon_sym__Noreturn] = ACTIONS(4275), + [anon_sym_noreturn] = ACTIONS(4275), + [anon_sym__Nonnull] = ACTIONS(4275), + [anon_sym_mutable] = ACTIONS(4275), + [anon_sym_constinit] = ACTIONS(4275), + [anon_sym_consteval] = ACTIONS(4275), + [anon_sym_alignas] = ACTIONS(4275), + [anon_sym__Alignas] = ACTIONS(4275), + [sym_primitive_type] = ACTIONS(4275), + [anon_sym_enum] = ACTIONS(4275), + [anon_sym_class] = ACTIONS(4275), + [anon_sym_struct] = ACTIONS(4275), + [anon_sym_union] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_switch] = ACTIONS(4275), + [anon_sym_case] = ACTIONS(4275), + [anon_sym_default] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_do] = ACTIONS(4275), + [anon_sym_for] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_goto] = ACTIONS(4275), + [anon_sym___try] = ACTIONS(4275), + [anon_sym___leave] = ACTIONS(4275), + [anon_sym_not] = ACTIONS(4275), + [anon_sym_compl] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_sizeof] = ACTIONS(4275), + [anon_sym___alignof__] = ACTIONS(4275), + [anon_sym___alignof] = ACTIONS(4275), + [anon_sym__alignof] = ACTIONS(4275), + [anon_sym_alignof] = ACTIONS(4275), + [anon_sym__Alignof] = ACTIONS(4275), + [anon_sym_offsetof] = ACTIONS(4275), + [anon_sym__Generic] = ACTIONS(4275), + [anon_sym_typename] = ACTIONS(4275), + [anon_sym_asm] = ACTIONS(4275), + [anon_sym___asm__] = ACTIONS(4275), + [anon_sym___asm] = ACTIONS(4275), + [sym_number_literal] = ACTIONS(4278), + [anon_sym_L_SQUOTE] = ACTIONS(4278), + [anon_sym_u_SQUOTE] = ACTIONS(4278), + [anon_sym_U_SQUOTE] = ACTIONS(4278), + [anon_sym_u8_SQUOTE] = ACTIONS(4278), + [anon_sym_SQUOTE] = ACTIONS(4278), + [anon_sym_L_DQUOTE] = ACTIONS(4278), + [anon_sym_u_DQUOTE] = ACTIONS(4278), + [anon_sym_U_DQUOTE] = ACTIONS(4278), + [anon_sym_u8_DQUOTE] = ACTIONS(4278), + [anon_sym_DQUOTE] = ACTIONS(4278), + [sym_true] = ACTIONS(4275), + [sym_false] = ACTIONS(4275), + [anon_sym_NULL] = ACTIONS(4275), + [anon_sym_nullptr] = ACTIONS(4275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4275), + [anon_sym_decltype] = ACTIONS(4275), + [anon_sym_explicit] = ACTIONS(4275), + [anon_sym_export] = ACTIONS(4275), + [anon_sym_module] = ACTIONS(4275), + [anon_sym_import] = ACTIONS(4275), + [anon_sym_template] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_delete] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_namespace] = ACTIONS(4275), + [anon_sym_static_assert] = ACTIONS(4275), + [anon_sym_concept] = ACTIONS(4275), + [anon_sym_co_return] = ACTIONS(4275), + [anon_sym_co_yield] = ACTIONS(4275), + [anon_sym_R_DQUOTE] = ACTIONS(4278), + [anon_sym_LR_DQUOTE] = ACTIONS(4278), + [anon_sym_uR_DQUOTE] = ACTIONS(4278), + [anon_sym_UR_DQUOTE] = ACTIONS(4278), + [anon_sym_u8R_DQUOTE] = ACTIONS(4278), + [anon_sym_co_await] = ACTIONS(4275), + [anon_sym_new] = ACTIONS(4275), + [anon_sym_requires] = ACTIONS(4275), + [anon_sym_CARET_CARET] = ACTIONS(4278), + [anon_sym_LBRACK_COLON] = ACTIONS(4278), + [sym_this] = ACTIONS(4275), + }, + [STATE(473)] = { + [sym_identifier] = ACTIONS(4281), + [aux_sym_preproc_include_token1] = ACTIONS(4281), + [aux_sym_preproc_def_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token2] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4281), + [aux_sym_preproc_else_token1] = ACTIONS(4281), + [aux_sym_preproc_elif_token1] = ACTIONS(4281), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4281), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4281), + [sym_preproc_directive] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym___extension__] = ACTIONS(4281), + [anon_sym_typedef] = ACTIONS(4281), + [anon_sym_virtual] = ACTIONS(4281), + [anon_sym_extern] = ACTIONS(4281), + [anon_sym___attribute__] = ACTIONS(4281), + [anon_sym___attribute] = ACTIONS(4281), + [anon_sym_using] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4283), + [anon_sym___declspec] = ACTIONS(4281), + [anon_sym___based] = ACTIONS(4281), + [anon_sym___cdecl] = ACTIONS(4281), + [anon_sym___clrcall] = ACTIONS(4281), + [anon_sym___stdcall] = ACTIONS(4281), + [anon_sym___fastcall] = ACTIONS(4281), + [anon_sym___thiscall] = ACTIONS(4281), + [anon_sym___vectorcall] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4283), + [anon_sym_signed] = ACTIONS(4281), + [anon_sym_unsigned] = ACTIONS(4281), + [anon_sym_long] = ACTIONS(4281), + [anon_sym_short] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_static] = ACTIONS(4281), + [anon_sym_register] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym___inline] = ACTIONS(4281), + [anon_sym___inline__] = ACTIONS(4281), + [anon_sym___forceinline] = ACTIONS(4281), + [anon_sym_thread_local] = ACTIONS(4281), + [anon_sym___thread] = ACTIONS(4281), + [anon_sym_const] = ACTIONS(4281), + [anon_sym_constexpr] = ACTIONS(4281), + [anon_sym_volatile] = ACTIONS(4281), + [anon_sym_restrict] = ACTIONS(4281), + [anon_sym___restrict__] = ACTIONS(4281), + [anon_sym__Atomic] = ACTIONS(4281), + [anon_sym__Noreturn] = ACTIONS(4281), + [anon_sym_noreturn] = ACTIONS(4281), + [anon_sym__Nonnull] = ACTIONS(4281), + [anon_sym_mutable] = ACTIONS(4281), + [anon_sym_constinit] = ACTIONS(4281), + [anon_sym_consteval] = ACTIONS(4281), + [anon_sym_alignas] = ACTIONS(4281), + [anon_sym__Alignas] = ACTIONS(4281), + [sym_primitive_type] = ACTIONS(4281), + [anon_sym_enum] = ACTIONS(4281), + [anon_sym_class] = ACTIONS(4281), + [anon_sym_struct] = ACTIONS(4281), + [anon_sym_union] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_switch] = ACTIONS(4281), + [anon_sym_case] = ACTIONS(4281), + [anon_sym_default] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_do] = ACTIONS(4281), + [anon_sym_for] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_goto] = ACTIONS(4281), + [anon_sym___try] = ACTIONS(4281), + [anon_sym___leave] = ACTIONS(4281), + [anon_sym_not] = ACTIONS(4281), + [anon_sym_compl] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_sizeof] = ACTIONS(4281), + [anon_sym___alignof__] = ACTIONS(4281), + [anon_sym___alignof] = ACTIONS(4281), + [anon_sym__alignof] = ACTIONS(4281), + [anon_sym_alignof] = ACTIONS(4281), + [anon_sym__Alignof] = ACTIONS(4281), + [anon_sym_offsetof] = ACTIONS(4281), + [anon_sym__Generic] = ACTIONS(4281), + [anon_sym_typename] = ACTIONS(4281), + [anon_sym_asm] = ACTIONS(4281), + [anon_sym___asm__] = ACTIONS(4281), + [anon_sym___asm] = ACTIONS(4281), + [sym_number_literal] = ACTIONS(4283), + [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(4283), + [anon_sym_u_DQUOTE] = ACTIONS(4283), + [anon_sym_U_DQUOTE] = ACTIONS(4283), + [anon_sym_u8_DQUOTE] = ACTIONS(4283), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym_true] = ACTIONS(4281), + [sym_false] = ACTIONS(4281), + [anon_sym_NULL] = ACTIONS(4281), + [anon_sym_nullptr] = ACTIONS(4281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4281), + [anon_sym_decltype] = ACTIONS(4281), + [anon_sym_explicit] = ACTIONS(4281), + [anon_sym_export] = ACTIONS(4281), + [anon_sym_module] = ACTIONS(4281), + [anon_sym_import] = ACTIONS(4281), + [anon_sym_template] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_delete] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_namespace] = ACTIONS(4281), + [anon_sym_static_assert] = ACTIONS(4281), + [anon_sym_concept] = ACTIONS(4281), + [anon_sym_co_return] = ACTIONS(4281), + [anon_sym_co_yield] = ACTIONS(4281), + [anon_sym_R_DQUOTE] = ACTIONS(4283), + [anon_sym_LR_DQUOTE] = ACTIONS(4283), + [anon_sym_uR_DQUOTE] = ACTIONS(4283), + [anon_sym_UR_DQUOTE] = ACTIONS(4283), + [anon_sym_u8R_DQUOTE] = ACTIONS(4283), + [anon_sym_co_await] = ACTIONS(4281), + [anon_sym_new] = ACTIONS(4281), + [anon_sym_requires] = ACTIONS(4281), + [anon_sym_CARET_CARET] = ACTIONS(4283), + [anon_sym_LBRACK_COLON] = ACTIONS(4283), + [sym_this] = ACTIONS(4281), + }, + [STATE(474)] = { + [sym_identifier] = ACTIONS(4285), + [aux_sym_preproc_include_token1] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token2] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [aux_sym_preproc_else_token1] = ACTIONS(4285), + [aux_sym_preproc_elif_token1] = ACTIONS(4285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4287), + [anon_sym_TILDE] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4285), + [anon_sym_PLUS] = ACTIONS(4285), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_AMP] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym___extension__] = ACTIONS(4285), + [anon_sym_typedef] = ACTIONS(4285), + [anon_sym_virtual] = ACTIONS(4285), + [anon_sym_extern] = ACTIONS(4285), + [anon_sym___attribute__] = ACTIONS(4285), + [anon_sym___attribute] = ACTIONS(4285), + [anon_sym_using] = ACTIONS(4285), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4287), + [anon_sym___declspec] = ACTIONS(4285), + [anon_sym___based] = ACTIONS(4285), + [anon_sym___cdecl] = ACTIONS(4285), + [anon_sym___clrcall] = ACTIONS(4285), + [anon_sym___stdcall] = ACTIONS(4285), + [anon_sym___fastcall] = ACTIONS(4285), + [anon_sym___thiscall] = ACTIONS(4285), + [anon_sym___vectorcall] = ACTIONS(4285), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_signed] = ACTIONS(4285), + [anon_sym_unsigned] = ACTIONS(4285), + [anon_sym_long] = ACTIONS(4285), + [anon_sym_short] = ACTIONS(4285), + [anon_sym_LBRACK] = ACTIONS(4285), + [anon_sym_static] = ACTIONS(4285), + [anon_sym_register] = ACTIONS(4285), + [anon_sym_inline] = ACTIONS(4285), + [anon_sym___inline] = ACTIONS(4285), + [anon_sym___inline__] = ACTIONS(4285), + [anon_sym___forceinline] = ACTIONS(4285), + [anon_sym_thread_local] = ACTIONS(4285), + [anon_sym___thread] = ACTIONS(4285), + [anon_sym_const] = ACTIONS(4285), + [anon_sym_constexpr] = ACTIONS(4285), + [anon_sym_volatile] = ACTIONS(4285), + [anon_sym_restrict] = ACTIONS(4285), + [anon_sym___restrict__] = ACTIONS(4285), + [anon_sym__Atomic] = ACTIONS(4285), + [anon_sym__Noreturn] = ACTIONS(4285), + [anon_sym_noreturn] = ACTIONS(4285), + [anon_sym__Nonnull] = ACTIONS(4285), + [anon_sym_mutable] = ACTIONS(4285), + [anon_sym_constinit] = ACTIONS(4285), + [anon_sym_consteval] = ACTIONS(4285), + [anon_sym_alignas] = ACTIONS(4285), + [anon_sym__Alignas] = ACTIONS(4285), + [sym_primitive_type] = ACTIONS(4285), + [anon_sym_enum] = ACTIONS(4285), + [anon_sym_class] = ACTIONS(4285), + [anon_sym_struct] = ACTIONS(4285), + [anon_sym_union] = ACTIONS(4285), + [anon_sym_if] = ACTIONS(4285), + [anon_sym_switch] = ACTIONS(4285), + [anon_sym_case] = ACTIONS(4285), + [anon_sym_default] = ACTIONS(4285), + [anon_sym_while] = ACTIONS(4285), + [anon_sym_do] = ACTIONS(4285), + [anon_sym_for] = ACTIONS(4285), + [anon_sym_return] = ACTIONS(4285), + [anon_sym_break] = ACTIONS(4285), + [anon_sym_continue] = ACTIONS(4285), + [anon_sym_goto] = ACTIONS(4285), + [anon_sym___try] = ACTIONS(4285), + [anon_sym___leave] = ACTIONS(4285), + [anon_sym_not] = ACTIONS(4285), + [anon_sym_compl] = ACTIONS(4285), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_sizeof] = ACTIONS(4285), + [anon_sym___alignof__] = ACTIONS(4285), + [anon_sym___alignof] = ACTIONS(4285), + [anon_sym__alignof] = ACTIONS(4285), + [anon_sym_alignof] = ACTIONS(4285), + [anon_sym__Alignof] = ACTIONS(4285), + [anon_sym_offsetof] = ACTIONS(4285), + [anon_sym__Generic] = ACTIONS(4285), + [anon_sym_typename] = ACTIONS(4285), + [anon_sym_asm] = ACTIONS(4285), + [anon_sym___asm__] = ACTIONS(4285), + [anon_sym___asm] = ACTIONS(4285), + [sym_number_literal] = ACTIONS(4287), + [anon_sym_L_SQUOTE] = ACTIONS(4287), + [anon_sym_u_SQUOTE] = ACTIONS(4287), + [anon_sym_U_SQUOTE] = ACTIONS(4287), + [anon_sym_u8_SQUOTE] = ACTIONS(4287), + [anon_sym_SQUOTE] = ACTIONS(4287), + [anon_sym_L_DQUOTE] = ACTIONS(4287), + [anon_sym_u_DQUOTE] = ACTIONS(4287), + [anon_sym_U_DQUOTE] = ACTIONS(4287), + [anon_sym_u8_DQUOTE] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [sym_true] = ACTIONS(4285), + [sym_false] = ACTIONS(4285), + [anon_sym_NULL] = ACTIONS(4285), + [anon_sym_nullptr] = ACTIONS(4285), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4285), + [anon_sym_decltype] = ACTIONS(4285), + [anon_sym_explicit] = ACTIONS(4285), + [anon_sym_export] = ACTIONS(4285), + [anon_sym_module] = ACTIONS(4285), + [anon_sym_import] = ACTIONS(4285), + [anon_sym_template] = ACTIONS(4285), + [anon_sym_operator] = ACTIONS(4285), + [anon_sym_try] = ACTIONS(4285), + [anon_sym_delete] = ACTIONS(4285), + [anon_sym_throw] = ACTIONS(4285), + [anon_sym_namespace] = ACTIONS(4285), + [anon_sym_static_assert] = ACTIONS(4285), + [anon_sym_concept] = ACTIONS(4285), + [anon_sym_co_return] = ACTIONS(4285), + [anon_sym_co_yield] = ACTIONS(4285), + [anon_sym_R_DQUOTE] = ACTIONS(4287), + [anon_sym_LR_DQUOTE] = ACTIONS(4287), + [anon_sym_uR_DQUOTE] = ACTIONS(4287), + [anon_sym_UR_DQUOTE] = ACTIONS(4287), + [anon_sym_u8R_DQUOTE] = ACTIONS(4287), + [anon_sym_co_await] = ACTIONS(4285), + [anon_sym_new] = ACTIONS(4285), + [anon_sym_requires] = ACTIONS(4285), + [anon_sym_CARET_CARET] = ACTIONS(4287), + [anon_sym_LBRACK_COLON] = ACTIONS(4287), + [sym_this] = ACTIONS(4285), + }, + [STATE(475)] = { + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token2] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [aux_sym_preproc_else_token1] = ACTIONS(4289), + [aux_sym_preproc_elif_token1] = ACTIONS(4289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym___cdecl] = ACTIONS(4289), + [anon_sym___clrcall] = ACTIONS(4289), + [anon_sym___stdcall] = ACTIONS(4289), + [anon_sym___fastcall] = ACTIONS(4289), + [anon_sym___thiscall] = ACTIONS(4289), + [anon_sym___vectorcall] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_switch] = ACTIONS(4289), + [anon_sym_case] = ACTIONS(4289), + [anon_sym_default] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_do] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_goto] = ACTIONS(4289), + [anon_sym___try] = ACTIONS(4289), + [anon_sym___leave] = ACTIONS(4289), + [anon_sym_not] = ACTIONS(4289), + [anon_sym_compl] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_sizeof] = ACTIONS(4289), + [anon_sym___alignof__] = ACTIONS(4289), + [anon_sym___alignof] = ACTIONS(4289), + [anon_sym__alignof] = ACTIONS(4289), + [anon_sym_alignof] = ACTIONS(4289), + [anon_sym__Alignof] = ACTIONS(4289), + [anon_sym_offsetof] = ACTIONS(4289), + [anon_sym__Generic] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [anon_sym_asm] = ACTIONS(4289), + [anon_sym___asm__] = ACTIONS(4289), + [anon_sym___asm] = ACTIONS(4289), + [sym_number_literal] = ACTIONS(4291), + [anon_sym_L_SQUOTE] = ACTIONS(4291), + [anon_sym_u_SQUOTE] = ACTIONS(4291), + [anon_sym_U_SQUOTE] = ACTIONS(4291), + [anon_sym_u8_SQUOTE] = ACTIONS(4291), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_L_DQUOTE] = ACTIONS(4291), + [anon_sym_u_DQUOTE] = ACTIONS(4291), + [anon_sym_U_DQUOTE] = ACTIONS(4291), + [anon_sym_u8_DQUOTE] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [sym_true] = ACTIONS(4289), + [sym_false] = ACTIONS(4289), + [anon_sym_NULL] = ACTIONS(4289), + [anon_sym_nullptr] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_export] = ACTIONS(4289), + [anon_sym_module] = ACTIONS(4289), + [anon_sym_import] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_delete] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_namespace] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_concept] = ACTIONS(4289), + [anon_sym_co_return] = ACTIONS(4289), + [anon_sym_co_yield] = ACTIONS(4289), + [anon_sym_R_DQUOTE] = ACTIONS(4291), + [anon_sym_LR_DQUOTE] = ACTIONS(4291), + [anon_sym_uR_DQUOTE] = ACTIONS(4291), + [anon_sym_UR_DQUOTE] = ACTIONS(4291), + [anon_sym_u8R_DQUOTE] = ACTIONS(4291), + [anon_sym_co_await] = ACTIONS(4289), + [anon_sym_new] = ACTIONS(4289), + [anon_sym_requires] = ACTIONS(4289), + [anon_sym_CARET_CARET] = ACTIONS(4291), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), + [sym_this] = ACTIONS(4289), + }, [STATE(476)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7081), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11548), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token2] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [aux_sym_preproc_else_token1] = ACTIONS(4289), + [aux_sym_preproc_elif_token1] = ACTIONS(4289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym___cdecl] = ACTIONS(4289), + [anon_sym___clrcall] = ACTIONS(4289), + [anon_sym___stdcall] = ACTIONS(4289), + [anon_sym___fastcall] = ACTIONS(4289), + [anon_sym___thiscall] = ACTIONS(4289), + [anon_sym___vectorcall] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_switch] = ACTIONS(4289), + [anon_sym_case] = ACTIONS(4289), + [anon_sym_default] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_do] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_goto] = ACTIONS(4289), + [anon_sym___try] = ACTIONS(4289), + [anon_sym___leave] = ACTIONS(4289), + [anon_sym_not] = ACTIONS(4289), + [anon_sym_compl] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_sizeof] = ACTIONS(4289), + [anon_sym___alignof__] = ACTIONS(4289), + [anon_sym___alignof] = ACTIONS(4289), + [anon_sym__alignof] = ACTIONS(4289), + [anon_sym_alignof] = ACTIONS(4289), + [anon_sym__Alignof] = ACTIONS(4289), + [anon_sym_offsetof] = ACTIONS(4289), + [anon_sym__Generic] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [anon_sym_asm] = ACTIONS(4289), + [anon_sym___asm__] = ACTIONS(4289), + [anon_sym___asm] = ACTIONS(4289), + [sym_number_literal] = ACTIONS(4291), + [anon_sym_L_SQUOTE] = ACTIONS(4291), + [anon_sym_u_SQUOTE] = ACTIONS(4291), + [anon_sym_U_SQUOTE] = ACTIONS(4291), + [anon_sym_u8_SQUOTE] = ACTIONS(4291), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_L_DQUOTE] = ACTIONS(4291), + [anon_sym_u_DQUOTE] = ACTIONS(4291), + [anon_sym_U_DQUOTE] = ACTIONS(4291), + [anon_sym_u8_DQUOTE] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [sym_true] = ACTIONS(4289), + [sym_false] = ACTIONS(4289), + [anon_sym_NULL] = ACTIONS(4289), + [anon_sym_nullptr] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_export] = ACTIONS(4289), + [anon_sym_module] = ACTIONS(4289), + [anon_sym_import] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_delete] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_namespace] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_concept] = ACTIONS(4289), + [anon_sym_co_return] = ACTIONS(4289), + [anon_sym_co_yield] = ACTIONS(4289), + [anon_sym_R_DQUOTE] = ACTIONS(4291), + [anon_sym_LR_DQUOTE] = ACTIONS(4291), + [anon_sym_uR_DQUOTE] = ACTIONS(4291), + [anon_sym_UR_DQUOTE] = ACTIONS(4291), + [anon_sym_u8R_DQUOTE] = ACTIONS(4291), + [anon_sym_co_await] = ACTIONS(4289), + [anon_sym_new] = ACTIONS(4289), + [anon_sym_requires] = ACTIONS(4289), + [anon_sym_CARET_CARET] = ACTIONS(4291), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), + [sym_this] = ACTIONS(4289), + }, + [STATE(477)] = { + [sym_identifier] = ACTIONS(4293), + [aux_sym_preproc_include_token1] = ACTIONS(4293), + [aux_sym_preproc_def_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token2] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), + [aux_sym_preproc_else_token1] = ACTIONS(4293), + [aux_sym_preproc_elif_token1] = ACTIONS(4293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4293), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4293), + [sym_preproc_directive] = ACTIONS(4293), + [anon_sym_LPAREN2] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym___extension__] = ACTIONS(4293), + [anon_sym_typedef] = ACTIONS(4293), + [anon_sym_virtual] = ACTIONS(4293), + [anon_sym_extern] = ACTIONS(4293), + [anon_sym___attribute__] = ACTIONS(4293), + [anon_sym___attribute] = ACTIONS(4293), + [anon_sym_using] = ACTIONS(4293), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4295), + [anon_sym___declspec] = ACTIONS(4293), + [anon_sym___based] = ACTIONS(4293), + [anon_sym___cdecl] = ACTIONS(4293), + [anon_sym___clrcall] = ACTIONS(4293), + [anon_sym___stdcall] = ACTIONS(4293), + [anon_sym___fastcall] = ACTIONS(4293), + [anon_sym___thiscall] = ACTIONS(4293), + [anon_sym___vectorcall] = ACTIONS(4293), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_signed] = ACTIONS(4293), + [anon_sym_unsigned] = ACTIONS(4293), + [anon_sym_long] = ACTIONS(4293), + [anon_sym_short] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_static] = ACTIONS(4293), + [anon_sym_register] = ACTIONS(4293), + [anon_sym_inline] = ACTIONS(4293), + [anon_sym___inline] = ACTIONS(4293), + [anon_sym___inline__] = ACTIONS(4293), + [anon_sym___forceinline] = ACTIONS(4293), + [anon_sym_thread_local] = ACTIONS(4293), + [anon_sym___thread] = ACTIONS(4293), + [anon_sym_const] = ACTIONS(4293), + [anon_sym_constexpr] = ACTIONS(4293), + [anon_sym_volatile] = ACTIONS(4293), + [anon_sym_restrict] = ACTIONS(4293), + [anon_sym___restrict__] = ACTIONS(4293), + [anon_sym__Atomic] = ACTIONS(4293), + [anon_sym__Noreturn] = ACTIONS(4293), + [anon_sym_noreturn] = ACTIONS(4293), + [anon_sym__Nonnull] = ACTIONS(4293), + [anon_sym_mutable] = ACTIONS(4293), + [anon_sym_constinit] = ACTIONS(4293), + [anon_sym_consteval] = ACTIONS(4293), + [anon_sym_alignas] = ACTIONS(4293), + [anon_sym__Alignas] = ACTIONS(4293), + [sym_primitive_type] = ACTIONS(4293), + [anon_sym_enum] = ACTIONS(4293), + [anon_sym_class] = ACTIONS(4293), + [anon_sym_struct] = ACTIONS(4293), + [anon_sym_union] = ACTIONS(4293), + [anon_sym_if] = ACTIONS(4293), + [anon_sym_switch] = ACTIONS(4293), + [anon_sym_case] = ACTIONS(4293), + [anon_sym_default] = ACTIONS(4293), + [anon_sym_while] = ACTIONS(4293), + [anon_sym_do] = ACTIONS(4293), + [anon_sym_for] = ACTIONS(4293), + [anon_sym_return] = ACTIONS(4293), + [anon_sym_break] = ACTIONS(4293), + [anon_sym_continue] = ACTIONS(4293), + [anon_sym_goto] = ACTIONS(4293), + [anon_sym___try] = ACTIONS(4293), + [anon_sym___leave] = ACTIONS(4293), + [anon_sym_not] = ACTIONS(4293), + [anon_sym_compl] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_sizeof] = ACTIONS(4293), + [anon_sym___alignof__] = ACTIONS(4293), + [anon_sym___alignof] = ACTIONS(4293), + [anon_sym__alignof] = ACTIONS(4293), + [anon_sym_alignof] = ACTIONS(4293), + [anon_sym__Alignof] = ACTIONS(4293), + [anon_sym_offsetof] = ACTIONS(4293), + [anon_sym__Generic] = ACTIONS(4293), + [anon_sym_typename] = ACTIONS(4293), + [anon_sym_asm] = ACTIONS(4293), + [anon_sym___asm__] = ACTIONS(4293), + [anon_sym___asm] = ACTIONS(4293), + [sym_number_literal] = ACTIONS(4295), + [anon_sym_L_SQUOTE] = ACTIONS(4295), + [anon_sym_u_SQUOTE] = ACTIONS(4295), + [anon_sym_U_SQUOTE] = ACTIONS(4295), + [anon_sym_u8_SQUOTE] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4295), + [anon_sym_L_DQUOTE] = ACTIONS(4295), + [anon_sym_u_DQUOTE] = ACTIONS(4295), + [anon_sym_U_DQUOTE] = ACTIONS(4295), + [anon_sym_u8_DQUOTE] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4295), + [sym_true] = ACTIONS(4293), + [sym_false] = ACTIONS(4293), + [anon_sym_NULL] = ACTIONS(4293), + [anon_sym_nullptr] = ACTIONS(4293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4293), + [anon_sym_decltype] = ACTIONS(4293), + [anon_sym_explicit] = ACTIONS(4293), + [anon_sym_export] = ACTIONS(4293), + [anon_sym_module] = ACTIONS(4293), + [anon_sym_import] = ACTIONS(4293), + [anon_sym_template] = ACTIONS(4293), + [anon_sym_operator] = ACTIONS(4293), + [anon_sym_try] = ACTIONS(4293), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_throw] = ACTIONS(4293), + [anon_sym_namespace] = ACTIONS(4293), + [anon_sym_static_assert] = ACTIONS(4293), + [anon_sym_concept] = ACTIONS(4293), + [anon_sym_co_return] = ACTIONS(4293), + [anon_sym_co_yield] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(4295), + [anon_sym_LR_DQUOTE] = ACTIONS(4295), + [anon_sym_uR_DQUOTE] = ACTIONS(4295), + [anon_sym_UR_DQUOTE] = ACTIONS(4295), + [anon_sym_u8R_DQUOTE] = ACTIONS(4295), + [anon_sym_co_await] = ACTIONS(4293), + [anon_sym_new] = ACTIONS(4293), + [anon_sym_requires] = ACTIONS(4293), + [anon_sym_CARET_CARET] = ACTIONS(4295), + [anon_sym_LBRACK_COLON] = ACTIONS(4295), + [sym_this] = ACTIONS(4293), + }, + [STATE(478)] = { + [sym_identifier] = ACTIONS(4297), + [aux_sym_preproc_include_token1] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token2] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [aux_sym_preproc_else_token1] = ACTIONS(4297), + [aux_sym_preproc_elif_token1] = ACTIONS(4297), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4299), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_TILDE] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_AMP_AMP] = ACTIONS(4299), + [anon_sym_AMP] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4299), + [anon_sym___extension__] = ACTIONS(4297), + [anon_sym_typedef] = ACTIONS(4297), + [anon_sym_virtual] = ACTIONS(4297), + [anon_sym_extern] = ACTIONS(4297), + [anon_sym___attribute__] = ACTIONS(4297), + [anon_sym___attribute] = ACTIONS(4297), + [anon_sym_using] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), + [anon_sym___declspec] = ACTIONS(4297), + [anon_sym___based] = ACTIONS(4297), + [anon_sym___cdecl] = ACTIONS(4297), + [anon_sym___clrcall] = ACTIONS(4297), + [anon_sym___stdcall] = ACTIONS(4297), + [anon_sym___fastcall] = ACTIONS(4297), + [anon_sym___thiscall] = ACTIONS(4297), + [anon_sym___vectorcall] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4299), + [anon_sym_signed] = ACTIONS(4297), + [anon_sym_unsigned] = ACTIONS(4297), + [anon_sym_long] = ACTIONS(4297), + [anon_sym_short] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_static] = ACTIONS(4297), + [anon_sym_register] = ACTIONS(4297), + [anon_sym_inline] = ACTIONS(4297), + [anon_sym___inline] = ACTIONS(4297), + [anon_sym___inline__] = ACTIONS(4297), + [anon_sym___forceinline] = ACTIONS(4297), + [anon_sym_thread_local] = ACTIONS(4297), + [anon_sym___thread] = ACTIONS(4297), + [anon_sym_const] = ACTIONS(4297), + [anon_sym_constexpr] = ACTIONS(4297), + [anon_sym_volatile] = ACTIONS(4297), + [anon_sym_restrict] = ACTIONS(4297), + [anon_sym___restrict__] = ACTIONS(4297), + [anon_sym__Atomic] = ACTIONS(4297), + [anon_sym__Noreturn] = ACTIONS(4297), + [anon_sym_noreturn] = ACTIONS(4297), + [anon_sym__Nonnull] = ACTIONS(4297), + [anon_sym_mutable] = ACTIONS(4297), + [anon_sym_constinit] = ACTIONS(4297), + [anon_sym_consteval] = ACTIONS(4297), + [anon_sym_alignas] = ACTIONS(4297), + [anon_sym__Alignas] = ACTIONS(4297), + [sym_primitive_type] = ACTIONS(4297), + [anon_sym_enum] = ACTIONS(4297), + [anon_sym_class] = ACTIONS(4297), + [anon_sym_struct] = ACTIONS(4297), + [anon_sym_union] = ACTIONS(4297), + [anon_sym_if] = ACTIONS(4297), + [anon_sym_switch] = ACTIONS(4297), + [anon_sym_case] = ACTIONS(4297), + [anon_sym_default] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_do] = ACTIONS(4297), + [anon_sym_for] = ACTIONS(4297), + [anon_sym_return] = ACTIONS(4297), + [anon_sym_break] = ACTIONS(4297), + [anon_sym_continue] = ACTIONS(4297), + [anon_sym_goto] = ACTIONS(4297), + [anon_sym___try] = ACTIONS(4297), + [anon_sym___leave] = ACTIONS(4297), + [anon_sym_not] = ACTIONS(4297), + [anon_sym_compl] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_PLUS_PLUS] = ACTIONS(4299), + [anon_sym_sizeof] = ACTIONS(4297), + [anon_sym___alignof__] = ACTIONS(4297), + [anon_sym___alignof] = ACTIONS(4297), + [anon_sym__alignof] = ACTIONS(4297), + [anon_sym_alignof] = ACTIONS(4297), + [anon_sym__Alignof] = ACTIONS(4297), + [anon_sym_offsetof] = ACTIONS(4297), + [anon_sym__Generic] = ACTIONS(4297), + [anon_sym_typename] = ACTIONS(4297), + [anon_sym_asm] = ACTIONS(4297), + [anon_sym___asm__] = ACTIONS(4297), + [anon_sym___asm] = ACTIONS(4297), + [sym_number_literal] = ACTIONS(4299), + [anon_sym_L_SQUOTE] = ACTIONS(4299), + [anon_sym_u_SQUOTE] = ACTIONS(4299), + [anon_sym_U_SQUOTE] = ACTIONS(4299), + [anon_sym_u8_SQUOTE] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4299), + [anon_sym_L_DQUOTE] = ACTIONS(4299), + [anon_sym_u_DQUOTE] = ACTIONS(4299), + [anon_sym_U_DQUOTE] = ACTIONS(4299), + [anon_sym_u8_DQUOTE] = ACTIONS(4299), + [anon_sym_DQUOTE] = ACTIONS(4299), + [sym_true] = ACTIONS(4297), + [sym_false] = ACTIONS(4297), + [anon_sym_NULL] = ACTIONS(4297), + [anon_sym_nullptr] = ACTIONS(4297), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4297), + [anon_sym_decltype] = ACTIONS(4297), + [anon_sym_explicit] = ACTIONS(4297), + [anon_sym_export] = ACTIONS(4297), + [anon_sym_module] = ACTIONS(4297), + [anon_sym_import] = ACTIONS(4297), + [anon_sym_template] = ACTIONS(4297), + [anon_sym_operator] = ACTIONS(4297), + [anon_sym_try] = ACTIONS(4297), + [anon_sym_delete] = ACTIONS(4297), + [anon_sym_throw] = ACTIONS(4297), + [anon_sym_namespace] = ACTIONS(4297), + [anon_sym_static_assert] = ACTIONS(4297), + [anon_sym_concept] = ACTIONS(4297), + [anon_sym_co_return] = ACTIONS(4297), + [anon_sym_co_yield] = ACTIONS(4297), + [anon_sym_R_DQUOTE] = ACTIONS(4299), + [anon_sym_LR_DQUOTE] = ACTIONS(4299), + [anon_sym_uR_DQUOTE] = ACTIONS(4299), + [anon_sym_UR_DQUOTE] = ACTIONS(4299), + [anon_sym_u8R_DQUOTE] = ACTIONS(4299), + [anon_sym_co_await] = ACTIONS(4297), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(4297), + [anon_sym_CARET_CARET] = ACTIONS(4299), + [anon_sym_LBRACK_COLON] = ACTIONS(4299), + [sym_this] = ACTIONS(4297), + }, + [STATE(479)] = { + [sym_identifier] = ACTIONS(4301), + [aux_sym_preproc_include_token1] = ACTIONS(4301), + [aux_sym_preproc_def_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token2] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4301), + [aux_sym_preproc_else_token1] = ACTIONS(4301), + [aux_sym_preproc_elif_token1] = ACTIONS(4301), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4301), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4301), + [sym_preproc_directive] = ACTIONS(4301), + [anon_sym_LPAREN2] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4301), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym___extension__] = ACTIONS(4301), + [anon_sym_typedef] = ACTIONS(4301), + [anon_sym_virtual] = ACTIONS(4301), + [anon_sym_extern] = ACTIONS(4301), + [anon_sym___attribute__] = ACTIONS(4301), + [anon_sym___attribute] = ACTIONS(4301), + [anon_sym_using] = ACTIONS(4301), + [anon_sym_COLON_COLON] = ACTIONS(4303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4303), + [anon_sym___declspec] = ACTIONS(4301), + [anon_sym___based] = ACTIONS(4301), + [anon_sym___cdecl] = ACTIONS(4301), + [anon_sym___clrcall] = ACTIONS(4301), + [anon_sym___stdcall] = ACTIONS(4301), + [anon_sym___fastcall] = ACTIONS(4301), + [anon_sym___thiscall] = ACTIONS(4301), + [anon_sym___vectorcall] = ACTIONS(4301), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_signed] = ACTIONS(4301), + [anon_sym_unsigned] = ACTIONS(4301), + [anon_sym_long] = ACTIONS(4301), + [anon_sym_short] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_static] = ACTIONS(4301), + [anon_sym_register] = ACTIONS(4301), + [anon_sym_inline] = ACTIONS(4301), + [anon_sym___inline] = ACTIONS(4301), + [anon_sym___inline__] = ACTIONS(4301), + [anon_sym___forceinline] = ACTIONS(4301), + [anon_sym_thread_local] = ACTIONS(4301), + [anon_sym___thread] = ACTIONS(4301), + [anon_sym_const] = ACTIONS(4301), + [anon_sym_constexpr] = ACTIONS(4301), + [anon_sym_volatile] = ACTIONS(4301), + [anon_sym_restrict] = ACTIONS(4301), + [anon_sym___restrict__] = ACTIONS(4301), + [anon_sym__Atomic] = ACTIONS(4301), + [anon_sym__Noreturn] = ACTIONS(4301), + [anon_sym_noreturn] = ACTIONS(4301), + [anon_sym__Nonnull] = ACTIONS(4301), + [anon_sym_mutable] = ACTIONS(4301), + [anon_sym_constinit] = ACTIONS(4301), + [anon_sym_consteval] = ACTIONS(4301), + [anon_sym_alignas] = ACTIONS(4301), + [anon_sym__Alignas] = ACTIONS(4301), + [sym_primitive_type] = ACTIONS(4301), + [anon_sym_enum] = ACTIONS(4301), + [anon_sym_class] = ACTIONS(4301), + [anon_sym_struct] = ACTIONS(4301), + [anon_sym_union] = ACTIONS(4301), + [anon_sym_if] = ACTIONS(4301), + [anon_sym_switch] = ACTIONS(4301), + [anon_sym_case] = ACTIONS(4301), + [anon_sym_default] = ACTIONS(4301), + [anon_sym_while] = ACTIONS(4301), + [anon_sym_do] = ACTIONS(4301), + [anon_sym_for] = ACTIONS(4301), + [anon_sym_return] = ACTIONS(4301), + [anon_sym_break] = ACTIONS(4301), + [anon_sym_continue] = ACTIONS(4301), + [anon_sym_goto] = ACTIONS(4301), + [anon_sym___try] = ACTIONS(4301), + [anon_sym___leave] = ACTIONS(4301), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4303), + [anon_sym_PLUS_PLUS] = ACTIONS(4303), + [anon_sym_sizeof] = ACTIONS(4301), + [anon_sym___alignof__] = ACTIONS(4301), + [anon_sym___alignof] = ACTIONS(4301), + [anon_sym__alignof] = ACTIONS(4301), + [anon_sym_alignof] = ACTIONS(4301), + [anon_sym__Alignof] = ACTIONS(4301), + [anon_sym_offsetof] = ACTIONS(4301), + [anon_sym__Generic] = ACTIONS(4301), + [anon_sym_typename] = ACTIONS(4301), + [anon_sym_asm] = ACTIONS(4301), + [anon_sym___asm__] = ACTIONS(4301), + [anon_sym___asm] = ACTIONS(4301), + [sym_number_literal] = ACTIONS(4303), + [anon_sym_L_SQUOTE] = ACTIONS(4303), + [anon_sym_u_SQUOTE] = ACTIONS(4303), + [anon_sym_U_SQUOTE] = ACTIONS(4303), + [anon_sym_u8_SQUOTE] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_L_DQUOTE] = ACTIONS(4303), + [anon_sym_u_DQUOTE] = ACTIONS(4303), + [anon_sym_U_DQUOTE] = ACTIONS(4303), + [anon_sym_u8_DQUOTE] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym_true] = ACTIONS(4301), + [sym_false] = ACTIONS(4301), + [anon_sym_NULL] = ACTIONS(4301), + [anon_sym_nullptr] = ACTIONS(4301), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4301), + [anon_sym_decltype] = ACTIONS(4301), + [anon_sym_explicit] = ACTIONS(4301), + [anon_sym_export] = ACTIONS(4301), + [anon_sym_module] = ACTIONS(4301), + [anon_sym_import] = ACTIONS(4301), + [anon_sym_template] = ACTIONS(4301), + [anon_sym_operator] = ACTIONS(4301), + [anon_sym_try] = ACTIONS(4301), + [anon_sym_delete] = ACTIONS(4301), + [anon_sym_throw] = ACTIONS(4301), + [anon_sym_namespace] = ACTIONS(4301), + [anon_sym_static_assert] = ACTIONS(4301), + [anon_sym_concept] = ACTIONS(4301), + [anon_sym_co_return] = ACTIONS(4301), + [anon_sym_co_yield] = ACTIONS(4301), + [anon_sym_R_DQUOTE] = ACTIONS(4303), + [anon_sym_LR_DQUOTE] = ACTIONS(4303), + [anon_sym_uR_DQUOTE] = ACTIONS(4303), + [anon_sym_UR_DQUOTE] = ACTIONS(4303), + [anon_sym_u8R_DQUOTE] = ACTIONS(4303), + [anon_sym_co_await] = ACTIONS(4301), + [anon_sym_new] = ACTIONS(4301), + [anon_sym_requires] = ACTIONS(4301), + [anon_sym_CARET_CARET] = ACTIONS(4303), + [anon_sym_LBRACK_COLON] = ACTIONS(4303), + [sym_this] = ACTIONS(4301), + }, + [STATE(480)] = { + [sym_identifier] = ACTIONS(4305), + [aux_sym_preproc_include_token1] = ACTIONS(4305), + [aux_sym_preproc_def_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token2] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4305), + [aux_sym_preproc_else_token1] = ACTIONS(4305), + [aux_sym_preproc_elif_token1] = ACTIONS(4305), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4305), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4305), + [sym_preproc_directive] = ACTIONS(4305), + [anon_sym_LPAREN2] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4305), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_typedef] = ACTIONS(4305), + [anon_sym_virtual] = ACTIONS(4305), + [anon_sym_extern] = ACTIONS(4305), + [anon_sym___attribute__] = ACTIONS(4305), + [anon_sym___attribute] = ACTIONS(4305), + [anon_sym_using] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4307), + [anon_sym___declspec] = ACTIONS(4305), + [anon_sym___based] = ACTIONS(4305), + [anon_sym___cdecl] = ACTIONS(4305), + [anon_sym___clrcall] = ACTIONS(4305), + [anon_sym___stdcall] = ACTIONS(4305), + [anon_sym___fastcall] = ACTIONS(4305), + [anon_sym___thiscall] = ACTIONS(4305), + [anon_sym___vectorcall] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_signed] = ACTIONS(4305), + [anon_sym_unsigned] = ACTIONS(4305), + [anon_sym_long] = ACTIONS(4305), + [anon_sym_short] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_static] = ACTIONS(4305), + [anon_sym_register] = ACTIONS(4305), + [anon_sym_inline] = ACTIONS(4305), + [anon_sym___inline] = ACTIONS(4305), + [anon_sym___inline__] = ACTIONS(4305), + [anon_sym___forceinline] = ACTIONS(4305), + [anon_sym_thread_local] = ACTIONS(4305), + [anon_sym___thread] = ACTIONS(4305), + [anon_sym_const] = ACTIONS(4305), + [anon_sym_constexpr] = ACTIONS(4305), + [anon_sym_volatile] = ACTIONS(4305), + [anon_sym_restrict] = ACTIONS(4305), + [anon_sym___restrict__] = ACTIONS(4305), + [anon_sym__Atomic] = ACTIONS(4305), + [anon_sym__Noreturn] = ACTIONS(4305), + [anon_sym_noreturn] = ACTIONS(4305), + [anon_sym__Nonnull] = ACTIONS(4305), + [anon_sym_mutable] = ACTIONS(4305), + [anon_sym_constinit] = ACTIONS(4305), + [anon_sym_consteval] = ACTIONS(4305), + [anon_sym_alignas] = ACTIONS(4305), + [anon_sym__Alignas] = ACTIONS(4305), + [sym_primitive_type] = ACTIONS(4305), + [anon_sym_enum] = ACTIONS(4305), + [anon_sym_class] = ACTIONS(4305), + [anon_sym_struct] = ACTIONS(4305), + [anon_sym_union] = ACTIONS(4305), + [anon_sym_if] = ACTIONS(4305), + [anon_sym_switch] = ACTIONS(4305), + [anon_sym_case] = ACTIONS(4305), + [anon_sym_default] = ACTIONS(4305), + [anon_sym_while] = ACTIONS(4305), + [anon_sym_do] = ACTIONS(4305), + [anon_sym_for] = ACTIONS(4305), + [anon_sym_return] = ACTIONS(4305), + [anon_sym_break] = ACTIONS(4305), + [anon_sym_continue] = ACTIONS(4305), + [anon_sym_goto] = ACTIONS(4305), + [anon_sym___try] = ACTIONS(4305), + [anon_sym___leave] = ACTIONS(4305), + [anon_sym_not] = ACTIONS(4305), + [anon_sym_compl] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_sizeof] = ACTIONS(4305), + [anon_sym___alignof__] = ACTIONS(4305), + [anon_sym___alignof] = ACTIONS(4305), + [anon_sym__alignof] = ACTIONS(4305), + [anon_sym_alignof] = ACTIONS(4305), + [anon_sym__Alignof] = ACTIONS(4305), + [anon_sym_offsetof] = ACTIONS(4305), + [anon_sym__Generic] = ACTIONS(4305), + [anon_sym_typename] = ACTIONS(4305), + [anon_sym_asm] = ACTIONS(4305), + [anon_sym___asm__] = ACTIONS(4305), + [anon_sym___asm] = ACTIONS(4305), + [sym_number_literal] = ACTIONS(4307), + [anon_sym_L_SQUOTE] = ACTIONS(4307), + [anon_sym_u_SQUOTE] = ACTIONS(4307), + [anon_sym_U_SQUOTE] = ACTIONS(4307), + [anon_sym_u8_SQUOTE] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4307), + [anon_sym_L_DQUOTE] = ACTIONS(4307), + [anon_sym_u_DQUOTE] = ACTIONS(4307), + [anon_sym_U_DQUOTE] = ACTIONS(4307), + [anon_sym_u8_DQUOTE] = ACTIONS(4307), + [anon_sym_DQUOTE] = ACTIONS(4307), + [sym_true] = ACTIONS(4305), + [sym_false] = ACTIONS(4305), + [anon_sym_NULL] = ACTIONS(4305), + [anon_sym_nullptr] = ACTIONS(4305), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4305), + [anon_sym_decltype] = ACTIONS(4305), + [anon_sym_explicit] = ACTIONS(4305), + [anon_sym_export] = ACTIONS(4305), + [anon_sym_module] = ACTIONS(4305), + [anon_sym_import] = ACTIONS(4305), + [anon_sym_template] = ACTIONS(4305), + [anon_sym_operator] = ACTIONS(4305), + [anon_sym_try] = ACTIONS(4305), + [anon_sym_delete] = ACTIONS(4305), + [anon_sym_throw] = ACTIONS(4305), + [anon_sym_namespace] = ACTIONS(4305), + [anon_sym_static_assert] = ACTIONS(4305), + [anon_sym_concept] = ACTIONS(4305), + [anon_sym_co_return] = ACTIONS(4305), + [anon_sym_co_yield] = ACTIONS(4305), + [anon_sym_R_DQUOTE] = ACTIONS(4307), + [anon_sym_LR_DQUOTE] = ACTIONS(4307), + [anon_sym_uR_DQUOTE] = ACTIONS(4307), + [anon_sym_UR_DQUOTE] = ACTIONS(4307), + [anon_sym_u8R_DQUOTE] = ACTIONS(4307), + [anon_sym_co_await] = ACTIONS(4305), + [anon_sym_new] = ACTIONS(4305), + [anon_sym_requires] = ACTIONS(4305), + [anon_sym_CARET_CARET] = ACTIONS(4307), + [anon_sym_LBRACK_COLON] = ACTIONS(4307), + [sym_this] = ACTIONS(4305), + }, + [STATE(481)] = { + [sym_identifier] = ACTIONS(4309), + [aux_sym_preproc_include_token1] = ACTIONS(4309), + [aux_sym_preproc_def_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token2] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4309), + [aux_sym_preproc_else_token1] = ACTIONS(4309), + [aux_sym_preproc_elif_token1] = ACTIONS(4309), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4309), + [sym_preproc_directive] = ACTIONS(4309), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_TILDE] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4309), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_AMP_AMP] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), + [anon_sym_SEMI] = ACTIONS(4311), + [anon_sym___extension__] = ACTIONS(4309), + [anon_sym_typedef] = ACTIONS(4309), + [anon_sym_virtual] = ACTIONS(4309), + [anon_sym_extern] = ACTIONS(4309), + [anon_sym___attribute__] = ACTIONS(4309), + [anon_sym___attribute] = ACTIONS(4309), + [anon_sym_using] = ACTIONS(4309), + [anon_sym_COLON_COLON] = ACTIONS(4311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4311), + [anon_sym___declspec] = ACTIONS(4309), + [anon_sym___based] = ACTIONS(4309), + [anon_sym___cdecl] = ACTIONS(4309), + [anon_sym___clrcall] = ACTIONS(4309), + [anon_sym___stdcall] = ACTIONS(4309), + [anon_sym___fastcall] = ACTIONS(4309), + [anon_sym___thiscall] = ACTIONS(4309), + [anon_sym___vectorcall] = ACTIONS(4309), + [anon_sym_LBRACE] = ACTIONS(4311), + [anon_sym_signed] = ACTIONS(4309), + [anon_sym_unsigned] = ACTIONS(4309), + [anon_sym_long] = ACTIONS(4309), + [anon_sym_short] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_static] = ACTIONS(4309), + [anon_sym_register] = ACTIONS(4309), + [anon_sym_inline] = ACTIONS(4309), + [anon_sym___inline] = ACTIONS(4309), + [anon_sym___inline__] = ACTIONS(4309), + [anon_sym___forceinline] = ACTIONS(4309), + [anon_sym_thread_local] = ACTIONS(4309), + [anon_sym___thread] = ACTIONS(4309), + [anon_sym_const] = ACTIONS(4309), + [anon_sym_constexpr] = ACTIONS(4309), + [anon_sym_volatile] = ACTIONS(4309), + [anon_sym_restrict] = ACTIONS(4309), + [anon_sym___restrict__] = ACTIONS(4309), + [anon_sym__Atomic] = ACTIONS(4309), + [anon_sym__Noreturn] = ACTIONS(4309), + [anon_sym_noreturn] = ACTIONS(4309), + [anon_sym__Nonnull] = ACTIONS(4309), + [anon_sym_mutable] = ACTIONS(4309), + [anon_sym_constinit] = ACTIONS(4309), + [anon_sym_consteval] = ACTIONS(4309), + [anon_sym_alignas] = ACTIONS(4309), + [anon_sym__Alignas] = ACTIONS(4309), + [sym_primitive_type] = ACTIONS(4309), + [anon_sym_enum] = ACTIONS(4309), + [anon_sym_class] = ACTIONS(4309), + [anon_sym_struct] = ACTIONS(4309), + [anon_sym_union] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4309), + [anon_sym_switch] = ACTIONS(4309), + [anon_sym_case] = ACTIONS(4309), + [anon_sym_default] = ACTIONS(4309), + [anon_sym_while] = ACTIONS(4309), + [anon_sym_do] = ACTIONS(4309), + [anon_sym_for] = ACTIONS(4309), + [anon_sym_return] = ACTIONS(4309), + [anon_sym_break] = ACTIONS(4309), + [anon_sym_continue] = ACTIONS(4309), + [anon_sym_goto] = ACTIONS(4309), + [anon_sym___try] = ACTIONS(4309), + [anon_sym___leave] = ACTIONS(4309), + [anon_sym_not] = ACTIONS(4309), + [anon_sym_compl] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4311), + [anon_sym_PLUS_PLUS] = ACTIONS(4311), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(4309), + [anon_sym___alignof] = ACTIONS(4309), + [anon_sym__alignof] = ACTIONS(4309), + [anon_sym_alignof] = ACTIONS(4309), + [anon_sym__Alignof] = ACTIONS(4309), + [anon_sym_offsetof] = ACTIONS(4309), + [anon_sym__Generic] = ACTIONS(4309), + [anon_sym_typename] = ACTIONS(4309), + [anon_sym_asm] = ACTIONS(4309), + [anon_sym___asm__] = ACTIONS(4309), + [anon_sym___asm] = ACTIONS(4309), + [sym_number_literal] = ACTIONS(4311), + [anon_sym_L_SQUOTE] = ACTIONS(4311), + [anon_sym_u_SQUOTE] = ACTIONS(4311), + [anon_sym_U_SQUOTE] = ACTIONS(4311), + [anon_sym_u8_SQUOTE] = ACTIONS(4311), + [anon_sym_SQUOTE] = ACTIONS(4311), + [anon_sym_L_DQUOTE] = ACTIONS(4311), + [anon_sym_u_DQUOTE] = ACTIONS(4311), + [anon_sym_U_DQUOTE] = ACTIONS(4311), + [anon_sym_u8_DQUOTE] = ACTIONS(4311), + [anon_sym_DQUOTE] = ACTIONS(4311), + [sym_true] = ACTIONS(4309), + [sym_false] = ACTIONS(4309), + [anon_sym_NULL] = ACTIONS(4309), + [anon_sym_nullptr] = ACTIONS(4309), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4309), + [anon_sym_decltype] = ACTIONS(4309), + [anon_sym_explicit] = ACTIONS(4309), + [anon_sym_export] = ACTIONS(4309), + [anon_sym_module] = ACTIONS(4309), + [anon_sym_import] = ACTIONS(4309), + [anon_sym_template] = ACTIONS(4309), + [anon_sym_operator] = ACTIONS(4309), + [anon_sym_try] = ACTIONS(4309), + [anon_sym_delete] = ACTIONS(4309), + [anon_sym_throw] = ACTIONS(4309), + [anon_sym_namespace] = ACTIONS(4309), + [anon_sym_static_assert] = ACTIONS(4309), + [anon_sym_concept] = ACTIONS(4309), + [anon_sym_co_return] = ACTIONS(4309), + [anon_sym_co_yield] = ACTIONS(4309), + [anon_sym_R_DQUOTE] = ACTIONS(4311), + [anon_sym_LR_DQUOTE] = ACTIONS(4311), + [anon_sym_uR_DQUOTE] = ACTIONS(4311), + [anon_sym_UR_DQUOTE] = ACTIONS(4311), + [anon_sym_u8R_DQUOTE] = ACTIONS(4311), + [anon_sym_co_await] = ACTIONS(4309), + [anon_sym_new] = ACTIONS(4309), + [anon_sym_requires] = ACTIONS(4309), + [anon_sym_CARET_CARET] = ACTIONS(4311), + [anon_sym_LBRACK_COLON] = ACTIONS(4311), + [sym_this] = ACTIONS(4309), + }, + [STATE(482)] = { + [sym_identifier] = ACTIONS(4313), + [aux_sym_preproc_include_token1] = ACTIONS(4313), + [aux_sym_preproc_def_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token2] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), + [aux_sym_preproc_else_token1] = ACTIONS(4313), + [aux_sym_preproc_elif_token1] = ACTIONS(4313), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4313), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4313), + [sym_preproc_directive] = ACTIONS(4313), + [anon_sym_LPAREN2] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4315), + [anon_sym_TILDE] = ACTIONS(4315), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym___extension__] = ACTIONS(4313), + [anon_sym_typedef] = ACTIONS(4313), + [anon_sym_virtual] = ACTIONS(4313), + [anon_sym_extern] = ACTIONS(4313), + [anon_sym___attribute__] = ACTIONS(4313), + [anon_sym___attribute] = ACTIONS(4313), + [anon_sym_using] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4315), + [anon_sym___declspec] = ACTIONS(4313), + [anon_sym___based] = ACTIONS(4313), + [anon_sym___cdecl] = ACTIONS(4313), + [anon_sym___clrcall] = ACTIONS(4313), + [anon_sym___stdcall] = ACTIONS(4313), + [anon_sym___fastcall] = ACTIONS(4313), + [anon_sym___thiscall] = ACTIONS(4313), + [anon_sym___vectorcall] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_signed] = ACTIONS(4313), + [anon_sym_unsigned] = ACTIONS(4313), + [anon_sym_long] = ACTIONS(4313), + [anon_sym_short] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_static] = ACTIONS(4313), + [anon_sym_register] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym___inline] = ACTIONS(4313), + [anon_sym___inline__] = ACTIONS(4313), + [anon_sym___forceinline] = ACTIONS(4313), + [anon_sym_thread_local] = ACTIONS(4313), + [anon_sym___thread] = ACTIONS(4313), + [anon_sym_const] = ACTIONS(4313), + [anon_sym_constexpr] = ACTIONS(4313), + [anon_sym_volatile] = ACTIONS(4313), + [anon_sym_restrict] = ACTIONS(4313), + [anon_sym___restrict__] = ACTIONS(4313), + [anon_sym__Atomic] = ACTIONS(4313), + [anon_sym__Noreturn] = ACTIONS(4313), + [anon_sym_noreturn] = ACTIONS(4313), + [anon_sym__Nonnull] = ACTIONS(4313), + [anon_sym_mutable] = ACTIONS(4313), + [anon_sym_constinit] = ACTIONS(4313), + [anon_sym_consteval] = ACTIONS(4313), + [anon_sym_alignas] = ACTIONS(4313), + [anon_sym__Alignas] = ACTIONS(4313), + [sym_primitive_type] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_struct] = ACTIONS(4313), + [anon_sym_union] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_switch] = ACTIONS(4313), + [anon_sym_case] = ACTIONS(4313), + [anon_sym_default] = ACTIONS(4313), + [anon_sym_while] = ACTIONS(4313), + [anon_sym_do] = ACTIONS(4313), + [anon_sym_for] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_goto] = ACTIONS(4313), + [anon_sym___try] = ACTIONS(4313), + [anon_sym___leave] = ACTIONS(4313), + [anon_sym_not] = ACTIONS(4313), + [anon_sym_compl] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_sizeof] = ACTIONS(4313), + [anon_sym___alignof__] = ACTIONS(4313), + [anon_sym___alignof] = ACTIONS(4313), + [anon_sym__alignof] = ACTIONS(4313), + [anon_sym_alignof] = ACTIONS(4313), + [anon_sym__Alignof] = ACTIONS(4313), + [anon_sym_offsetof] = ACTIONS(4313), + [anon_sym__Generic] = ACTIONS(4313), + [anon_sym_typename] = ACTIONS(4313), + [anon_sym_asm] = ACTIONS(4313), + [anon_sym___asm__] = ACTIONS(4313), + [anon_sym___asm] = ACTIONS(4313), + [sym_number_literal] = ACTIONS(4315), + [anon_sym_L_SQUOTE] = ACTIONS(4315), + [anon_sym_u_SQUOTE] = ACTIONS(4315), + [anon_sym_U_SQUOTE] = ACTIONS(4315), + [anon_sym_u8_SQUOTE] = ACTIONS(4315), + [anon_sym_SQUOTE] = ACTIONS(4315), + [anon_sym_L_DQUOTE] = ACTIONS(4315), + [anon_sym_u_DQUOTE] = ACTIONS(4315), + [anon_sym_U_DQUOTE] = ACTIONS(4315), + [anon_sym_u8_DQUOTE] = ACTIONS(4315), + [anon_sym_DQUOTE] = ACTIONS(4315), + [sym_true] = ACTIONS(4313), + [sym_false] = ACTIONS(4313), + [anon_sym_NULL] = ACTIONS(4313), + [anon_sym_nullptr] = ACTIONS(4313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4313), + [anon_sym_decltype] = ACTIONS(4313), + [anon_sym_explicit] = ACTIONS(4313), + [anon_sym_export] = ACTIONS(4313), + [anon_sym_module] = ACTIONS(4313), + [anon_sym_import] = ACTIONS(4313), + [anon_sym_template] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_delete] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_namespace] = ACTIONS(4313), + [anon_sym_static_assert] = ACTIONS(4313), + [anon_sym_concept] = ACTIONS(4313), + [anon_sym_co_return] = ACTIONS(4313), + [anon_sym_co_yield] = ACTIONS(4313), + [anon_sym_R_DQUOTE] = ACTIONS(4315), + [anon_sym_LR_DQUOTE] = ACTIONS(4315), + [anon_sym_uR_DQUOTE] = ACTIONS(4315), + [anon_sym_UR_DQUOTE] = ACTIONS(4315), + [anon_sym_u8R_DQUOTE] = ACTIONS(4315), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4313), + [anon_sym_requires] = ACTIONS(4313), + [anon_sym_CARET_CARET] = ACTIONS(4315), + [anon_sym_LBRACK_COLON] = ACTIONS(4315), + [sym_this] = ACTIONS(4313), + }, + [STATE(483)] = { + [sym_identifier] = ACTIONS(4317), + [aux_sym_preproc_include_token1] = ACTIONS(4317), + [aux_sym_preproc_def_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token2] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4317), + [aux_sym_preproc_else_token1] = ACTIONS(4317), + [aux_sym_preproc_elif_token1] = ACTIONS(4317), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4317), + [sym_preproc_directive] = ACTIONS(4317), + [anon_sym_LPAREN2] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4319), + [anon_sym_TILDE] = ACTIONS(4319), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym___extension__] = ACTIONS(4317), + [anon_sym_typedef] = ACTIONS(4317), + [anon_sym_virtual] = ACTIONS(4317), + [anon_sym_extern] = ACTIONS(4317), + [anon_sym___attribute__] = ACTIONS(4317), + [anon_sym___attribute] = ACTIONS(4317), + [anon_sym_using] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4319), + [anon_sym___declspec] = ACTIONS(4317), + [anon_sym___based] = ACTIONS(4317), + [anon_sym___cdecl] = ACTIONS(4317), + [anon_sym___clrcall] = ACTIONS(4317), + [anon_sym___stdcall] = ACTIONS(4317), + [anon_sym___fastcall] = ACTIONS(4317), + [anon_sym___thiscall] = ACTIONS(4317), + [anon_sym___vectorcall] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_signed] = ACTIONS(4317), + [anon_sym_unsigned] = ACTIONS(4317), + [anon_sym_long] = ACTIONS(4317), + [anon_sym_short] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [anon_sym_static] = ACTIONS(4317), + [anon_sym_register] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym___inline] = ACTIONS(4317), + [anon_sym___inline__] = ACTIONS(4317), + [anon_sym___forceinline] = ACTIONS(4317), + [anon_sym_thread_local] = ACTIONS(4317), + [anon_sym___thread] = ACTIONS(4317), + [anon_sym_const] = ACTIONS(4317), + [anon_sym_constexpr] = ACTIONS(4317), + [anon_sym_volatile] = ACTIONS(4317), + [anon_sym_restrict] = ACTIONS(4317), + [anon_sym___restrict__] = ACTIONS(4317), + [anon_sym__Atomic] = ACTIONS(4317), + [anon_sym__Noreturn] = ACTIONS(4317), + [anon_sym_noreturn] = ACTIONS(4317), + [anon_sym__Nonnull] = ACTIONS(4317), + [anon_sym_mutable] = ACTIONS(4317), + [anon_sym_constinit] = ACTIONS(4317), + [anon_sym_consteval] = ACTIONS(4317), + [anon_sym_alignas] = ACTIONS(4317), + [anon_sym__Alignas] = ACTIONS(4317), + [sym_primitive_type] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_class] = ACTIONS(4317), + [anon_sym_struct] = ACTIONS(4317), + [anon_sym_union] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_switch] = ACTIONS(4317), + [anon_sym_case] = ACTIONS(4317), + [anon_sym_default] = ACTIONS(4317), + [anon_sym_while] = ACTIONS(4317), + [anon_sym_do] = ACTIONS(4317), + [anon_sym_for] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_goto] = ACTIONS(4317), + [anon_sym___try] = ACTIONS(4317), + [anon_sym___leave] = ACTIONS(4317), + [anon_sym_not] = ACTIONS(4317), + [anon_sym_compl] = ACTIONS(4317), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_sizeof] = ACTIONS(4317), + [anon_sym___alignof__] = ACTIONS(4317), + [anon_sym___alignof] = ACTIONS(4317), + [anon_sym__alignof] = ACTIONS(4317), + [anon_sym_alignof] = ACTIONS(4317), + [anon_sym__Alignof] = ACTIONS(4317), + [anon_sym_offsetof] = ACTIONS(4317), + [anon_sym__Generic] = ACTIONS(4317), + [anon_sym_typename] = ACTIONS(4317), + [anon_sym_asm] = ACTIONS(4317), + [anon_sym___asm__] = ACTIONS(4317), + [anon_sym___asm] = ACTIONS(4317), + [sym_number_literal] = ACTIONS(4319), + [anon_sym_L_SQUOTE] = ACTIONS(4319), + [anon_sym_u_SQUOTE] = ACTIONS(4319), + [anon_sym_U_SQUOTE] = ACTIONS(4319), + [anon_sym_u8_SQUOTE] = ACTIONS(4319), + [anon_sym_SQUOTE] = ACTIONS(4319), + [anon_sym_L_DQUOTE] = ACTIONS(4319), + [anon_sym_u_DQUOTE] = ACTIONS(4319), + [anon_sym_U_DQUOTE] = ACTIONS(4319), + [anon_sym_u8_DQUOTE] = ACTIONS(4319), + [anon_sym_DQUOTE] = ACTIONS(4319), + [sym_true] = ACTIONS(4317), + [sym_false] = ACTIONS(4317), + [anon_sym_NULL] = ACTIONS(4317), + [anon_sym_nullptr] = ACTIONS(4317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4317), + [anon_sym_decltype] = ACTIONS(4317), + [anon_sym_explicit] = ACTIONS(4317), + [anon_sym_export] = ACTIONS(4317), + [anon_sym_module] = ACTIONS(4317), + [anon_sym_import] = ACTIONS(4317), + [anon_sym_template] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_delete] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_namespace] = ACTIONS(4317), + [anon_sym_static_assert] = ACTIONS(4317), + [anon_sym_concept] = ACTIONS(4317), + [anon_sym_co_return] = ACTIONS(4317), + [anon_sym_co_yield] = ACTIONS(4317), + [anon_sym_R_DQUOTE] = ACTIONS(4319), + [anon_sym_LR_DQUOTE] = ACTIONS(4319), + [anon_sym_uR_DQUOTE] = ACTIONS(4319), + [anon_sym_UR_DQUOTE] = ACTIONS(4319), + [anon_sym_u8R_DQUOTE] = ACTIONS(4319), + [anon_sym_co_await] = ACTIONS(4317), + [anon_sym_new] = ACTIONS(4317), + [anon_sym_requires] = ACTIONS(4317), + [anon_sym_CARET_CARET] = ACTIONS(4319), + [anon_sym_LBRACK_COLON] = ACTIONS(4319), + [sym_this] = ACTIONS(4317), + }, + [STATE(484)] = { + [sym_identifier] = ACTIONS(4321), + [aux_sym_preproc_include_token1] = ACTIONS(4321), + [aux_sym_preproc_def_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token2] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4321), + [aux_sym_preproc_else_token1] = ACTIONS(4321), + [aux_sym_preproc_elif_token1] = ACTIONS(4321), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4321), + [sym_preproc_directive] = ACTIONS(4321), + [anon_sym_LPAREN2] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4323), + [anon_sym_TILDE] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_AMP] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym___extension__] = ACTIONS(4321), + [anon_sym_typedef] = ACTIONS(4321), + [anon_sym_virtual] = ACTIONS(4321), + [anon_sym_extern] = ACTIONS(4321), + [anon_sym___attribute__] = ACTIONS(4321), + [anon_sym___attribute] = ACTIONS(4321), + [anon_sym_using] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4323), + [anon_sym___declspec] = ACTIONS(4321), + [anon_sym___based] = ACTIONS(4321), + [anon_sym___cdecl] = ACTIONS(4321), + [anon_sym___clrcall] = ACTIONS(4321), + [anon_sym___stdcall] = ACTIONS(4321), + [anon_sym___fastcall] = ACTIONS(4321), + [anon_sym___thiscall] = ACTIONS(4321), + [anon_sym___vectorcall] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_signed] = ACTIONS(4321), + [anon_sym_unsigned] = ACTIONS(4321), + [anon_sym_long] = ACTIONS(4321), + [anon_sym_short] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_static] = ACTIONS(4321), + [anon_sym_register] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym___inline] = ACTIONS(4321), + [anon_sym___inline__] = ACTIONS(4321), + [anon_sym___forceinline] = ACTIONS(4321), + [anon_sym_thread_local] = ACTIONS(4321), + [anon_sym___thread] = ACTIONS(4321), + [anon_sym_const] = ACTIONS(4321), + [anon_sym_constexpr] = ACTIONS(4321), + [anon_sym_volatile] = ACTIONS(4321), + [anon_sym_restrict] = ACTIONS(4321), + [anon_sym___restrict__] = ACTIONS(4321), + [anon_sym__Atomic] = ACTIONS(4321), + [anon_sym__Noreturn] = ACTIONS(4321), + [anon_sym_noreturn] = ACTIONS(4321), + [anon_sym__Nonnull] = ACTIONS(4321), + [anon_sym_mutable] = ACTIONS(4321), + [anon_sym_constinit] = ACTIONS(4321), + [anon_sym_consteval] = ACTIONS(4321), + [anon_sym_alignas] = ACTIONS(4321), + [anon_sym__Alignas] = ACTIONS(4321), + [sym_primitive_type] = ACTIONS(4321), + [anon_sym_enum] = ACTIONS(4321), + [anon_sym_class] = ACTIONS(4321), + [anon_sym_struct] = ACTIONS(4321), + [anon_sym_union] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_switch] = ACTIONS(4321), + [anon_sym_case] = ACTIONS(4321), + [anon_sym_default] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_do] = ACTIONS(4321), + [anon_sym_for] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_goto] = ACTIONS(4321), + [anon_sym___try] = ACTIONS(4321), + [anon_sym___leave] = ACTIONS(4321), + [anon_sym_not] = ACTIONS(4321), + [anon_sym_compl] = ACTIONS(4321), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_sizeof] = ACTIONS(4321), + [anon_sym___alignof__] = ACTIONS(4321), + [anon_sym___alignof] = ACTIONS(4321), + [anon_sym__alignof] = ACTIONS(4321), + [anon_sym_alignof] = ACTIONS(4321), + [anon_sym__Alignof] = ACTIONS(4321), + [anon_sym_offsetof] = ACTIONS(4321), + [anon_sym__Generic] = ACTIONS(4321), + [anon_sym_typename] = ACTIONS(4321), + [anon_sym_asm] = ACTIONS(4321), + [anon_sym___asm__] = ACTIONS(4321), + [anon_sym___asm] = ACTIONS(4321), + [sym_number_literal] = ACTIONS(4323), + [anon_sym_L_SQUOTE] = ACTIONS(4323), + [anon_sym_u_SQUOTE] = ACTIONS(4323), + [anon_sym_U_SQUOTE] = ACTIONS(4323), + [anon_sym_u8_SQUOTE] = ACTIONS(4323), + [anon_sym_SQUOTE] = ACTIONS(4323), + [anon_sym_L_DQUOTE] = ACTIONS(4323), + [anon_sym_u_DQUOTE] = ACTIONS(4323), + [anon_sym_U_DQUOTE] = ACTIONS(4323), + [anon_sym_u8_DQUOTE] = ACTIONS(4323), + [anon_sym_DQUOTE] = ACTIONS(4323), + [sym_true] = ACTIONS(4321), + [sym_false] = ACTIONS(4321), + [anon_sym_NULL] = ACTIONS(4321), + [anon_sym_nullptr] = ACTIONS(4321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4321), + [anon_sym_decltype] = ACTIONS(4321), + [anon_sym_explicit] = ACTIONS(4321), + [anon_sym_export] = ACTIONS(4321), + [anon_sym_module] = ACTIONS(4321), + [anon_sym_import] = ACTIONS(4321), + [anon_sym_template] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_delete] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_namespace] = ACTIONS(4321), + [anon_sym_static_assert] = ACTIONS(4321), + [anon_sym_concept] = ACTIONS(4321), + [anon_sym_co_return] = ACTIONS(4321), + [anon_sym_co_yield] = ACTIONS(4321), + [anon_sym_R_DQUOTE] = ACTIONS(4323), + [anon_sym_LR_DQUOTE] = ACTIONS(4323), + [anon_sym_uR_DQUOTE] = ACTIONS(4323), + [anon_sym_UR_DQUOTE] = ACTIONS(4323), + [anon_sym_u8R_DQUOTE] = ACTIONS(4323), + [anon_sym_co_await] = ACTIONS(4321), + [anon_sym_new] = ACTIONS(4321), + [anon_sym_requires] = ACTIONS(4321), + [anon_sym_CARET_CARET] = ACTIONS(4323), + [anon_sym_LBRACK_COLON] = ACTIONS(4323), + [sym_this] = ACTIONS(4321), + }, + [STATE(485)] = { + [sym_identifier] = ACTIONS(4325), + [aux_sym_preproc_include_token1] = ACTIONS(4325), + [aux_sym_preproc_def_token1] = ACTIONS(4325), + [aux_sym_preproc_if_token1] = ACTIONS(4325), + [aux_sym_preproc_if_token2] = ACTIONS(4325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4325), + [aux_sym_preproc_else_token1] = ACTIONS(4325), + [aux_sym_preproc_elif_token1] = ACTIONS(4325), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4325), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4325), + [sym_preproc_directive] = ACTIONS(4325), + [anon_sym_LPAREN2] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_TILDE] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_AMP] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym___extension__] = ACTIONS(4325), + [anon_sym_typedef] = ACTIONS(4325), + [anon_sym_virtual] = ACTIONS(4325), + [anon_sym_extern] = ACTIONS(4325), + [anon_sym___attribute__] = ACTIONS(4325), + [anon_sym___attribute] = ACTIONS(4325), + [anon_sym_using] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4327), + [anon_sym___declspec] = ACTIONS(4325), + [anon_sym___based] = ACTIONS(4325), + [anon_sym___cdecl] = ACTIONS(4325), + [anon_sym___clrcall] = ACTIONS(4325), + [anon_sym___stdcall] = ACTIONS(4325), + [anon_sym___fastcall] = ACTIONS(4325), + [anon_sym___thiscall] = ACTIONS(4325), + [anon_sym___vectorcall] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4327), + [anon_sym_signed] = ACTIONS(4325), + [anon_sym_unsigned] = ACTIONS(4325), + [anon_sym_long] = ACTIONS(4325), + [anon_sym_short] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_static] = ACTIONS(4325), + [anon_sym_register] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym___inline] = ACTIONS(4325), + [anon_sym___inline__] = ACTIONS(4325), + [anon_sym___forceinline] = ACTIONS(4325), + [anon_sym_thread_local] = ACTIONS(4325), + [anon_sym___thread] = ACTIONS(4325), + [anon_sym_const] = ACTIONS(4325), + [anon_sym_constexpr] = ACTIONS(4325), + [anon_sym_volatile] = ACTIONS(4325), + [anon_sym_restrict] = ACTIONS(4325), + [anon_sym___restrict__] = ACTIONS(4325), + [anon_sym__Atomic] = ACTIONS(4325), + [anon_sym__Noreturn] = ACTIONS(4325), + [anon_sym_noreturn] = ACTIONS(4325), + [anon_sym__Nonnull] = ACTIONS(4325), + [anon_sym_mutable] = ACTIONS(4325), + [anon_sym_constinit] = ACTIONS(4325), + [anon_sym_consteval] = ACTIONS(4325), + [anon_sym_alignas] = ACTIONS(4325), + [anon_sym__Alignas] = ACTIONS(4325), + [sym_primitive_type] = ACTIONS(4325), + [anon_sym_enum] = ACTIONS(4325), + [anon_sym_class] = ACTIONS(4325), + [anon_sym_struct] = ACTIONS(4325), + [anon_sym_union] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_switch] = ACTIONS(4325), + [anon_sym_case] = ACTIONS(4325), + [anon_sym_default] = ACTIONS(4325), + [anon_sym_while] = ACTIONS(4325), + [anon_sym_do] = ACTIONS(4325), + [anon_sym_for] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_goto] = ACTIONS(4325), + [anon_sym___try] = ACTIONS(4325), + [anon_sym___leave] = ACTIONS(4325), + [anon_sym_not] = ACTIONS(4325), + [anon_sym_compl] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_sizeof] = ACTIONS(4325), + [anon_sym___alignof__] = ACTIONS(4325), + [anon_sym___alignof] = ACTIONS(4325), + [anon_sym__alignof] = ACTIONS(4325), + [anon_sym_alignof] = ACTIONS(4325), + [anon_sym__Alignof] = ACTIONS(4325), + [anon_sym_offsetof] = ACTIONS(4325), + [anon_sym__Generic] = ACTIONS(4325), + [anon_sym_typename] = ACTIONS(4325), + [anon_sym_asm] = ACTIONS(4325), + [anon_sym___asm__] = ACTIONS(4325), + [anon_sym___asm] = ACTIONS(4325), + [sym_number_literal] = ACTIONS(4327), + [anon_sym_L_SQUOTE] = ACTIONS(4327), + [anon_sym_u_SQUOTE] = ACTIONS(4327), + [anon_sym_U_SQUOTE] = ACTIONS(4327), + [anon_sym_u8_SQUOTE] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4327), + [anon_sym_L_DQUOTE] = ACTIONS(4327), + [anon_sym_u_DQUOTE] = ACTIONS(4327), + [anon_sym_U_DQUOTE] = ACTIONS(4327), + [anon_sym_u8_DQUOTE] = ACTIONS(4327), + [anon_sym_DQUOTE] = ACTIONS(4327), + [sym_true] = ACTIONS(4325), + [sym_false] = ACTIONS(4325), + [anon_sym_NULL] = ACTIONS(4325), + [anon_sym_nullptr] = ACTIONS(4325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4325), + [anon_sym_decltype] = ACTIONS(4325), + [anon_sym_explicit] = ACTIONS(4325), + [anon_sym_export] = ACTIONS(4325), + [anon_sym_module] = ACTIONS(4325), + [anon_sym_import] = ACTIONS(4325), + [anon_sym_template] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_delete] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_namespace] = ACTIONS(4325), + [anon_sym_static_assert] = ACTIONS(4325), + [anon_sym_concept] = ACTIONS(4325), + [anon_sym_co_return] = ACTIONS(4325), + [anon_sym_co_yield] = ACTIONS(4325), + [anon_sym_R_DQUOTE] = ACTIONS(4327), + [anon_sym_LR_DQUOTE] = ACTIONS(4327), + [anon_sym_uR_DQUOTE] = ACTIONS(4327), + [anon_sym_UR_DQUOTE] = ACTIONS(4327), + [anon_sym_u8R_DQUOTE] = ACTIONS(4327), + [anon_sym_co_await] = ACTIONS(4325), + [anon_sym_new] = ACTIONS(4325), + [anon_sym_requires] = ACTIONS(4325), + [anon_sym_CARET_CARET] = ACTIONS(4327), + [anon_sym_LBRACK_COLON] = ACTIONS(4327), + [sym_this] = ACTIONS(4325), + }, + [STATE(486)] = { + [sym_type_qualifier] = STATE(5142), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3538), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6860), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(5948), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10387), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7943), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(4042), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(4751), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [aux_sym__type_definition_type_repeat1] = STATE(5142), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(4329), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4339), + [anon_sym_COLON_COLON] = ACTIONS(4341), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -128081,16 +129537,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [sym_primitive_type] = ACTIONS(4343), + [anon_sym_enum] = ACTIONS(3802), + [anon_sym_class] = ACTIONS(3804), + [anon_sym_struct] = ACTIONS(3806), + [anon_sym_union] = ACTIONS(3808), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -128098,7 +129554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(4349), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -128118,825 +129574,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(477)] = { - [sym_identifier] = ACTIONS(4246), - [aux_sym_preproc_include_token1] = ACTIONS(4246), - [aux_sym_preproc_def_token1] = ACTIONS(4246), - [aux_sym_preproc_if_token1] = ACTIONS(4246), - [aux_sym_preproc_if_token2] = ACTIONS(4246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4246), - [aux_sym_preproc_else_token1] = ACTIONS(4246), - [aux_sym_preproc_elif_token1] = ACTIONS(4246), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4246), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4246), - [sym_preproc_directive] = ACTIONS(4246), - [anon_sym_LPAREN2] = ACTIONS(4248), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_TILDE] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4246), - [anon_sym_STAR] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4246), - [anon_sym_SEMI] = ACTIONS(4248), - [anon_sym___extension__] = ACTIONS(4246), - [anon_sym_typedef] = ACTIONS(4246), - [anon_sym_virtual] = ACTIONS(4246), - [anon_sym_extern] = ACTIONS(4246), - [anon_sym___attribute__] = ACTIONS(4246), - [anon_sym___attribute] = ACTIONS(4246), - [anon_sym_using] = ACTIONS(4246), - [anon_sym_COLON_COLON] = ACTIONS(4248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4248), - [anon_sym___declspec] = ACTIONS(4246), - [anon_sym___based] = ACTIONS(4246), - [anon_sym___cdecl] = ACTIONS(4246), - [anon_sym___clrcall] = ACTIONS(4246), - [anon_sym___stdcall] = ACTIONS(4246), - [anon_sym___fastcall] = ACTIONS(4246), - [anon_sym___thiscall] = ACTIONS(4246), - [anon_sym___vectorcall] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4248), - [anon_sym_signed] = ACTIONS(4246), - [anon_sym_unsigned] = ACTIONS(4246), - [anon_sym_long] = ACTIONS(4246), - [anon_sym_short] = ACTIONS(4246), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_static] = ACTIONS(4246), - [anon_sym_register] = ACTIONS(4246), - [anon_sym_inline] = ACTIONS(4246), - [anon_sym___inline] = ACTIONS(4246), - [anon_sym___inline__] = ACTIONS(4246), - [anon_sym___forceinline] = ACTIONS(4246), - [anon_sym_thread_local] = ACTIONS(4246), - [anon_sym___thread] = ACTIONS(4246), - [anon_sym_const] = ACTIONS(4246), - [anon_sym_constexpr] = ACTIONS(4246), - [anon_sym_volatile] = ACTIONS(4246), - [anon_sym_restrict] = ACTIONS(4246), - [anon_sym___restrict__] = ACTIONS(4246), - [anon_sym__Atomic] = ACTIONS(4246), - [anon_sym__Noreturn] = ACTIONS(4246), - [anon_sym_noreturn] = ACTIONS(4246), - [anon_sym__Nonnull] = ACTIONS(4246), - [anon_sym_mutable] = ACTIONS(4246), - [anon_sym_constinit] = ACTIONS(4246), - [anon_sym_consteval] = ACTIONS(4246), - [anon_sym_alignas] = ACTIONS(4246), - [anon_sym__Alignas] = ACTIONS(4246), - [sym_primitive_type] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4246), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_struct] = ACTIONS(4246), - [anon_sym_union] = ACTIONS(4246), - [anon_sym_if] = ACTIONS(4246), - [anon_sym_switch] = ACTIONS(4246), - [anon_sym_case] = ACTIONS(4246), - [anon_sym_default] = ACTIONS(4246), - [anon_sym_while] = ACTIONS(4246), - [anon_sym_do] = ACTIONS(4246), - [anon_sym_for] = ACTIONS(4246), - [anon_sym_return] = ACTIONS(4246), - [anon_sym_break] = ACTIONS(4246), - [anon_sym_continue] = ACTIONS(4246), - [anon_sym_goto] = ACTIONS(4246), - [anon_sym___try] = ACTIONS(4246), - [anon_sym___leave] = ACTIONS(4246), - [anon_sym_not] = ACTIONS(4246), - [anon_sym_compl] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4248), - [anon_sym_sizeof] = ACTIONS(4246), - [anon_sym___alignof__] = ACTIONS(4246), - [anon_sym___alignof] = ACTIONS(4246), - [anon_sym__alignof] = ACTIONS(4246), - [anon_sym_alignof] = ACTIONS(4246), - [anon_sym__Alignof] = ACTIONS(4246), - [anon_sym_offsetof] = ACTIONS(4246), - [anon_sym__Generic] = ACTIONS(4246), - [anon_sym_typename] = ACTIONS(4246), - [anon_sym_asm] = ACTIONS(4246), - [anon_sym___asm__] = ACTIONS(4246), - [anon_sym___asm] = ACTIONS(4246), - [sym_number_literal] = ACTIONS(4248), - [anon_sym_L_SQUOTE] = ACTIONS(4248), - [anon_sym_u_SQUOTE] = ACTIONS(4248), - [anon_sym_U_SQUOTE] = ACTIONS(4248), - [anon_sym_u8_SQUOTE] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4248), - [anon_sym_L_DQUOTE] = ACTIONS(4248), - [anon_sym_u_DQUOTE] = ACTIONS(4248), - [anon_sym_U_DQUOTE] = ACTIONS(4248), - [anon_sym_u8_DQUOTE] = ACTIONS(4248), - [anon_sym_DQUOTE] = ACTIONS(4248), - [sym_true] = ACTIONS(4246), - [sym_false] = ACTIONS(4246), - [anon_sym_NULL] = ACTIONS(4246), - [anon_sym_nullptr] = ACTIONS(4246), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4246), - [anon_sym_decltype] = ACTIONS(4246), - [anon_sym_explicit] = ACTIONS(4246), - [anon_sym_export] = ACTIONS(4246), - [anon_sym_module] = ACTIONS(4246), - [anon_sym_import] = ACTIONS(4246), - [anon_sym_template] = ACTIONS(4246), - [anon_sym_operator] = ACTIONS(4246), - [anon_sym_try] = ACTIONS(4246), - [anon_sym_delete] = ACTIONS(4246), - [anon_sym_throw] = ACTIONS(4246), - [anon_sym_namespace] = ACTIONS(4246), - [anon_sym_static_assert] = ACTIONS(4246), - [anon_sym_concept] = ACTIONS(4246), - [anon_sym_co_return] = ACTIONS(4246), - [anon_sym_co_yield] = ACTIONS(4246), - [anon_sym_R_DQUOTE] = ACTIONS(4248), - [anon_sym_LR_DQUOTE] = ACTIONS(4248), - [anon_sym_uR_DQUOTE] = ACTIONS(4248), - [anon_sym_UR_DQUOTE] = ACTIONS(4248), - [anon_sym_u8R_DQUOTE] = ACTIONS(4248), - [anon_sym_co_await] = ACTIONS(4246), - [anon_sym_new] = ACTIONS(4246), - [anon_sym_requires] = ACTIONS(4246), - [anon_sym_CARET_CARET] = ACTIONS(4248), - [anon_sym_LBRACK_COLON] = ACTIONS(4248), - [sym_this] = ACTIONS(4246), - }, - [STATE(478)] = { - [sym_type_qualifier] = STATE(5062), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(2280), - [sym_sized_type_specifier] = STATE(2222), - [sym_enum_specifier] = STATE(2222), - [sym_struct_specifier] = STATE(2222), - [sym_union_specifier] = STATE(2222), - [sym_expression] = STATE(5395), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_type_descriptor] = STATE(3833), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_placeholder_type_specifier] = STATE(2222), - [sym_decltype_auto] = STATE(2221), - [sym_decltype] = STATE(2169), - [sym_class_specifier] = STATE(2222), - [sym__class_name] = STATE(10271), - [sym_dependent_type] = STATE(2222), - [sym_template_type] = STATE(2146), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7975), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(2207), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(2251), - [sym__splice_specialization_specifier] = STATE(2170), - [sym_splice_type_specifier] = STATE(2223), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [aux_sym__type_definition_type_repeat1] = STATE(5062), - [aux_sym_sized_type_specifier_repeat1] = STATE(2076), - [sym_identifier] = ACTIONS(3909), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4252), - [anon_sym_COLON_COLON] = ACTIONS(4254), - [anon_sym_signed] = ACTIONS(3803), - [anon_sym_unsigned] = ACTIONS(3803), - [anon_sym_long] = ACTIONS(3803), - [anon_sym_short] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3805), - [anon_sym_enum] = ACTIONS(3807), - [anon_sym_class] = ACTIONS(3809), - [anon_sym_struct] = ACTIONS(3811), - [anon_sym_union] = ACTIONS(3813), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(3817), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3819), - [anon_sym_decltype] = ACTIONS(3821), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(479)] = { - [sym_identifier] = ACTIONS(4258), - [aux_sym_preproc_include_token1] = ACTIONS(4258), - [aux_sym_preproc_def_token1] = ACTIONS(4258), - [aux_sym_preproc_if_token1] = ACTIONS(4258), - [aux_sym_preproc_if_token2] = ACTIONS(4258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4258), - [aux_sym_preproc_else_token1] = ACTIONS(4258), - [aux_sym_preproc_elif_token1] = ACTIONS(4258), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4258), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4258), - [sym_preproc_directive] = ACTIONS(4258), - [anon_sym_LPAREN2] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_TILDE] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym___extension__] = ACTIONS(4258), - [anon_sym_typedef] = ACTIONS(4258), - [anon_sym_virtual] = ACTIONS(4258), - [anon_sym_extern] = ACTIONS(4258), - [anon_sym___attribute__] = ACTIONS(4258), - [anon_sym___attribute] = ACTIONS(4258), - [anon_sym_using] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4260), - [anon_sym___declspec] = ACTIONS(4258), - [anon_sym___based] = ACTIONS(4258), - [anon_sym___cdecl] = ACTIONS(4258), - [anon_sym___clrcall] = ACTIONS(4258), - [anon_sym___stdcall] = ACTIONS(4258), - [anon_sym___fastcall] = ACTIONS(4258), - [anon_sym___thiscall] = ACTIONS(4258), - [anon_sym___vectorcall] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_signed] = ACTIONS(4258), - [anon_sym_unsigned] = ACTIONS(4258), - [anon_sym_long] = ACTIONS(4258), - [anon_sym_short] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_static] = ACTIONS(4258), - [anon_sym_register] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym___inline] = ACTIONS(4258), - [anon_sym___inline__] = ACTIONS(4258), - [anon_sym___forceinline] = ACTIONS(4258), - [anon_sym_thread_local] = ACTIONS(4258), - [anon_sym___thread] = ACTIONS(4258), - [anon_sym_const] = ACTIONS(4258), - [anon_sym_constexpr] = ACTIONS(4258), - [anon_sym_volatile] = ACTIONS(4258), - [anon_sym_restrict] = ACTIONS(4258), - [anon_sym___restrict__] = ACTIONS(4258), - [anon_sym__Atomic] = ACTIONS(4258), - [anon_sym__Noreturn] = ACTIONS(4258), - [anon_sym_noreturn] = ACTIONS(4258), - [anon_sym__Nonnull] = ACTIONS(4258), - [anon_sym_mutable] = ACTIONS(4258), - [anon_sym_constinit] = ACTIONS(4258), - [anon_sym_consteval] = ACTIONS(4258), - [anon_sym_alignas] = ACTIONS(4258), - [anon_sym__Alignas] = ACTIONS(4258), - [sym_primitive_type] = ACTIONS(4258), - [anon_sym_enum] = ACTIONS(4258), - [anon_sym_class] = ACTIONS(4258), - [anon_sym_struct] = ACTIONS(4258), - [anon_sym_union] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_switch] = ACTIONS(4258), - [anon_sym_case] = ACTIONS(4258), - [anon_sym_default] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_do] = ACTIONS(4258), - [anon_sym_for] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_goto] = ACTIONS(4258), - [anon_sym___try] = ACTIONS(4258), - [anon_sym___leave] = ACTIONS(4258), - [anon_sym_not] = ACTIONS(4258), - [anon_sym_compl] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_sizeof] = ACTIONS(4258), - [anon_sym___alignof__] = ACTIONS(4258), - [anon_sym___alignof] = ACTIONS(4258), - [anon_sym__alignof] = ACTIONS(4258), - [anon_sym_alignof] = ACTIONS(4258), - [anon_sym__Alignof] = ACTIONS(4258), - [anon_sym_offsetof] = ACTIONS(4258), - [anon_sym__Generic] = ACTIONS(4258), - [anon_sym_typename] = ACTIONS(4258), - [anon_sym_asm] = ACTIONS(4258), - [anon_sym___asm__] = ACTIONS(4258), - [anon_sym___asm] = ACTIONS(4258), - [sym_number_literal] = ACTIONS(4260), - [anon_sym_L_SQUOTE] = ACTIONS(4260), - [anon_sym_u_SQUOTE] = ACTIONS(4260), - [anon_sym_U_SQUOTE] = ACTIONS(4260), - [anon_sym_u8_SQUOTE] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4260), - [anon_sym_L_DQUOTE] = ACTIONS(4260), - [anon_sym_u_DQUOTE] = ACTIONS(4260), - [anon_sym_U_DQUOTE] = ACTIONS(4260), - [anon_sym_u8_DQUOTE] = ACTIONS(4260), - [anon_sym_DQUOTE] = ACTIONS(4260), - [sym_true] = ACTIONS(4258), - [sym_false] = ACTIONS(4258), - [anon_sym_NULL] = ACTIONS(4258), - [anon_sym_nullptr] = ACTIONS(4258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4258), - [anon_sym_decltype] = ACTIONS(4258), - [anon_sym_explicit] = ACTIONS(4258), - [anon_sym_export] = ACTIONS(4258), - [anon_sym_module] = ACTIONS(4258), - [anon_sym_import] = ACTIONS(4258), - [anon_sym_template] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_delete] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_namespace] = ACTIONS(4258), - [anon_sym_static_assert] = ACTIONS(4258), - [anon_sym_concept] = ACTIONS(4258), - [anon_sym_co_return] = ACTIONS(4258), - [anon_sym_co_yield] = ACTIONS(4258), - [anon_sym_R_DQUOTE] = ACTIONS(4260), - [anon_sym_LR_DQUOTE] = ACTIONS(4260), - [anon_sym_uR_DQUOTE] = ACTIONS(4260), - [anon_sym_UR_DQUOTE] = ACTIONS(4260), - [anon_sym_u8R_DQUOTE] = ACTIONS(4260), - [anon_sym_co_await] = ACTIONS(4258), - [anon_sym_new] = ACTIONS(4258), - [anon_sym_requires] = ACTIONS(4258), - [anon_sym_CARET_CARET] = ACTIONS(4260), - [anon_sym_LBRACK_COLON] = ACTIONS(4260), - [sym_this] = ACTIONS(4258), - }, - [STATE(480)] = { - [sym_identifier] = ACTIONS(4262), - [aux_sym_preproc_include_token1] = ACTIONS(4262), - [aux_sym_preproc_def_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token2] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), - [aux_sym_preproc_else_token1] = ACTIONS(4262), - [aux_sym_preproc_elif_token1] = ACTIONS(4262), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4262), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4262), - [sym_preproc_directive] = ACTIONS(4262), - [anon_sym_LPAREN2] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_TILDE] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym___extension__] = ACTIONS(4262), - [anon_sym_typedef] = ACTIONS(4262), - [anon_sym_virtual] = ACTIONS(4262), - [anon_sym_extern] = ACTIONS(4262), - [anon_sym___attribute__] = ACTIONS(4262), - [anon_sym___attribute] = ACTIONS(4262), - [anon_sym_using] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), - [anon_sym___declspec] = ACTIONS(4262), - [anon_sym___based] = ACTIONS(4262), - [anon_sym___cdecl] = ACTIONS(4262), - [anon_sym___clrcall] = ACTIONS(4262), - [anon_sym___stdcall] = ACTIONS(4262), - [anon_sym___fastcall] = ACTIONS(4262), - [anon_sym___thiscall] = ACTIONS(4262), - [anon_sym___vectorcall] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_signed] = ACTIONS(4262), - [anon_sym_unsigned] = ACTIONS(4262), - [anon_sym_long] = ACTIONS(4262), - [anon_sym_short] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_static] = ACTIONS(4262), - [anon_sym_register] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym___inline] = ACTIONS(4262), - [anon_sym___inline__] = ACTIONS(4262), - [anon_sym___forceinline] = ACTIONS(4262), - [anon_sym_thread_local] = ACTIONS(4262), - [anon_sym___thread] = ACTIONS(4262), - [anon_sym_const] = ACTIONS(4262), - [anon_sym_constexpr] = ACTIONS(4262), - [anon_sym_volatile] = ACTIONS(4262), - [anon_sym_restrict] = ACTIONS(4262), - [anon_sym___restrict__] = ACTIONS(4262), - [anon_sym__Atomic] = ACTIONS(4262), - [anon_sym__Noreturn] = ACTIONS(4262), - [anon_sym_noreturn] = ACTIONS(4262), - [anon_sym__Nonnull] = ACTIONS(4262), - [anon_sym_mutable] = ACTIONS(4262), - [anon_sym_constinit] = ACTIONS(4262), - [anon_sym_consteval] = ACTIONS(4262), - [anon_sym_alignas] = ACTIONS(4262), - [anon_sym__Alignas] = ACTIONS(4262), - [sym_primitive_type] = ACTIONS(4262), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_class] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4262), - [anon_sym_union] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_switch] = ACTIONS(4262), - [anon_sym_case] = ACTIONS(4262), - [anon_sym_default] = ACTIONS(4262), - [anon_sym_while] = ACTIONS(4262), - [anon_sym_do] = ACTIONS(4262), - [anon_sym_for] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_goto] = ACTIONS(4262), - [anon_sym___try] = ACTIONS(4262), - [anon_sym___leave] = ACTIONS(4262), - [anon_sym_not] = ACTIONS(4262), - [anon_sym_compl] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_sizeof] = ACTIONS(4262), - [anon_sym___alignof__] = ACTIONS(4262), - [anon_sym___alignof] = ACTIONS(4262), - [anon_sym__alignof] = ACTIONS(4262), - [anon_sym_alignof] = ACTIONS(4262), - [anon_sym__Alignof] = ACTIONS(4262), - [anon_sym_offsetof] = ACTIONS(4262), - [anon_sym__Generic] = ACTIONS(4262), - [anon_sym_typename] = ACTIONS(4262), - [anon_sym_asm] = ACTIONS(4262), - [anon_sym___asm__] = ACTIONS(4262), - [anon_sym___asm] = ACTIONS(4262), - [sym_number_literal] = ACTIONS(4264), - [anon_sym_L_SQUOTE] = ACTIONS(4264), - [anon_sym_u_SQUOTE] = ACTIONS(4264), - [anon_sym_U_SQUOTE] = ACTIONS(4264), - [anon_sym_u8_SQUOTE] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4264), - [anon_sym_L_DQUOTE] = ACTIONS(4264), - [anon_sym_u_DQUOTE] = ACTIONS(4264), - [anon_sym_U_DQUOTE] = ACTIONS(4264), - [anon_sym_u8_DQUOTE] = ACTIONS(4264), - [anon_sym_DQUOTE] = ACTIONS(4264), - [sym_true] = ACTIONS(4262), - [sym_false] = ACTIONS(4262), - [anon_sym_NULL] = ACTIONS(4262), - [anon_sym_nullptr] = ACTIONS(4262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4262), - [anon_sym_decltype] = ACTIONS(4262), - [anon_sym_explicit] = ACTIONS(4262), - [anon_sym_export] = ACTIONS(4262), - [anon_sym_module] = ACTIONS(4262), - [anon_sym_import] = ACTIONS(4262), - [anon_sym_template] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_try] = ACTIONS(4262), - [anon_sym_delete] = ACTIONS(4262), - [anon_sym_throw] = ACTIONS(4262), - [anon_sym_namespace] = ACTIONS(4262), - [anon_sym_static_assert] = ACTIONS(4262), - [anon_sym_concept] = ACTIONS(4262), - [anon_sym_co_return] = ACTIONS(4262), - [anon_sym_co_yield] = ACTIONS(4262), - [anon_sym_R_DQUOTE] = ACTIONS(4264), - [anon_sym_LR_DQUOTE] = ACTIONS(4264), - [anon_sym_uR_DQUOTE] = ACTIONS(4264), - [anon_sym_UR_DQUOTE] = ACTIONS(4264), - [anon_sym_u8R_DQUOTE] = ACTIONS(4264), - [anon_sym_co_await] = ACTIONS(4262), - [anon_sym_new] = ACTIONS(4262), - [anon_sym_requires] = ACTIONS(4262), - [anon_sym_CARET_CARET] = ACTIONS(4264), - [anon_sym_LBRACK_COLON] = ACTIONS(4264), - [sym_this] = ACTIONS(4262), - }, - [STATE(481)] = { - [sym_identifier] = ACTIONS(4266), - [aux_sym_preproc_include_token1] = ACTIONS(4266), - [aux_sym_preproc_def_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token2] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), - [aux_sym_preproc_else_token1] = ACTIONS(4266), - [aux_sym_preproc_elif_token1] = ACTIONS(4266), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4266), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4266), - [sym_preproc_directive] = ACTIONS(4266), - [anon_sym_LPAREN2] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym___extension__] = ACTIONS(4266), - [anon_sym_typedef] = ACTIONS(4266), - [anon_sym_virtual] = ACTIONS(4266), - [anon_sym_extern] = ACTIONS(4266), - [anon_sym___attribute__] = ACTIONS(4266), - [anon_sym___attribute] = ACTIONS(4266), - [anon_sym_using] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), - [anon_sym___declspec] = ACTIONS(4266), - [anon_sym___based] = ACTIONS(4266), - [anon_sym___cdecl] = ACTIONS(4266), - [anon_sym___clrcall] = ACTIONS(4266), - [anon_sym___stdcall] = ACTIONS(4266), - [anon_sym___fastcall] = ACTIONS(4266), - [anon_sym___thiscall] = ACTIONS(4266), - [anon_sym___vectorcall] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_signed] = ACTIONS(4266), - [anon_sym_unsigned] = ACTIONS(4266), - [anon_sym_long] = ACTIONS(4266), - [anon_sym_short] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_static] = ACTIONS(4266), - [anon_sym_register] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym___inline] = ACTIONS(4266), - [anon_sym___inline__] = ACTIONS(4266), - [anon_sym___forceinline] = ACTIONS(4266), - [anon_sym_thread_local] = ACTIONS(4266), - [anon_sym___thread] = ACTIONS(4266), - [anon_sym_const] = ACTIONS(4266), - [anon_sym_constexpr] = ACTIONS(4266), - [anon_sym_volatile] = ACTIONS(4266), - [anon_sym_restrict] = ACTIONS(4266), - [anon_sym___restrict__] = ACTIONS(4266), - [anon_sym__Atomic] = ACTIONS(4266), - [anon_sym__Noreturn] = ACTIONS(4266), - [anon_sym_noreturn] = ACTIONS(4266), - [anon_sym__Nonnull] = ACTIONS(4266), - [anon_sym_mutable] = ACTIONS(4266), - [anon_sym_constinit] = ACTIONS(4266), - [anon_sym_consteval] = ACTIONS(4266), - [anon_sym_alignas] = ACTIONS(4266), - [anon_sym__Alignas] = ACTIONS(4266), - [sym_primitive_type] = ACTIONS(4266), - [anon_sym_enum] = ACTIONS(4266), - [anon_sym_class] = ACTIONS(4266), - [anon_sym_struct] = ACTIONS(4266), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_switch] = ACTIONS(4266), - [anon_sym_case] = ACTIONS(4266), - [anon_sym_default] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_do] = ACTIONS(4266), - [anon_sym_for] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_goto] = ACTIONS(4266), - [anon_sym___try] = ACTIONS(4266), - [anon_sym___leave] = ACTIONS(4266), - [anon_sym_not] = ACTIONS(4266), - [anon_sym_compl] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_sizeof] = ACTIONS(4266), - [anon_sym___alignof__] = ACTIONS(4266), - [anon_sym___alignof] = ACTIONS(4266), - [anon_sym__alignof] = ACTIONS(4266), - [anon_sym_alignof] = ACTIONS(4266), - [anon_sym__Alignof] = ACTIONS(4266), - [anon_sym_offsetof] = ACTIONS(4266), - [anon_sym__Generic] = ACTIONS(4266), - [anon_sym_typename] = ACTIONS(4266), - [anon_sym_asm] = ACTIONS(4266), - [anon_sym___asm__] = ACTIONS(4266), - [anon_sym___asm] = ACTIONS(4266), - [sym_number_literal] = ACTIONS(4268), - [anon_sym_L_SQUOTE] = ACTIONS(4268), - [anon_sym_u_SQUOTE] = ACTIONS(4268), - [anon_sym_U_SQUOTE] = ACTIONS(4268), - [anon_sym_u8_SQUOTE] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4268), - [anon_sym_L_DQUOTE] = ACTIONS(4268), - [anon_sym_u_DQUOTE] = ACTIONS(4268), - [anon_sym_U_DQUOTE] = ACTIONS(4268), - [anon_sym_u8_DQUOTE] = ACTIONS(4268), - [anon_sym_DQUOTE] = ACTIONS(4268), - [sym_true] = ACTIONS(4266), - [sym_false] = ACTIONS(4266), - [anon_sym_NULL] = ACTIONS(4266), - [anon_sym_nullptr] = ACTIONS(4266), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4266), - [anon_sym_decltype] = ACTIONS(4266), - [anon_sym_explicit] = ACTIONS(4266), - [anon_sym_export] = ACTIONS(4266), - [anon_sym_module] = ACTIONS(4266), - [anon_sym_import] = ACTIONS(4266), - [anon_sym_template] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_delete] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_namespace] = ACTIONS(4266), - [anon_sym_static_assert] = ACTIONS(4266), - [anon_sym_concept] = ACTIONS(4266), - [anon_sym_co_return] = ACTIONS(4266), - [anon_sym_co_yield] = ACTIONS(4266), - [anon_sym_R_DQUOTE] = ACTIONS(4268), - [anon_sym_LR_DQUOTE] = ACTIONS(4268), - [anon_sym_uR_DQUOTE] = ACTIONS(4268), - [anon_sym_UR_DQUOTE] = ACTIONS(4268), - [anon_sym_u8R_DQUOTE] = ACTIONS(4268), - [anon_sym_co_await] = ACTIONS(4266), - [anon_sym_new] = ACTIONS(4266), - [anon_sym_requires] = ACTIONS(4266), - [anon_sym_CARET_CARET] = ACTIONS(4268), - [anon_sym_LBRACK_COLON] = ACTIONS(4268), - [sym_this] = ACTIONS(4266), - }, - [STATE(482)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(6998), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11198), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(487)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6922), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(10991), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -128951,11 +129682,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -128968,7 +129699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -128988,9 +129719,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -129001,377 +129732,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(483)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_include_token1] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token2] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [aux_sym_preproc_else_token1] = ACTIONS(4270), - [aux_sym_preproc_elif_token1] = ACTIONS(4270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym___cdecl] = ACTIONS(4270), - [anon_sym___clrcall] = ACTIONS(4270), - [anon_sym___stdcall] = ACTIONS(4270), - [anon_sym___fastcall] = ACTIONS(4270), - [anon_sym___thiscall] = ACTIONS(4270), - [anon_sym___vectorcall] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_switch] = ACTIONS(4270), - [anon_sym_case] = ACTIONS(4270), - [anon_sym_default] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_do] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_goto] = ACTIONS(4270), - [anon_sym___try] = ACTIONS(4270), - [anon_sym___leave] = ACTIONS(4270), - [anon_sym_not] = ACTIONS(4270), - [anon_sym_compl] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_sizeof] = ACTIONS(4270), - [anon_sym___alignof__] = ACTIONS(4270), - [anon_sym___alignof] = ACTIONS(4270), - [anon_sym__alignof] = ACTIONS(4270), - [anon_sym_alignof] = ACTIONS(4270), - [anon_sym__Alignof] = ACTIONS(4270), - [anon_sym_offsetof] = ACTIONS(4270), - [anon_sym__Generic] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4270), - [anon_sym___asm__] = ACTIONS(4270), - [anon_sym___asm] = ACTIONS(4270), - [sym_number_literal] = ACTIONS(4272), - [anon_sym_L_SQUOTE] = ACTIONS(4272), - [anon_sym_u_SQUOTE] = ACTIONS(4272), - [anon_sym_U_SQUOTE] = ACTIONS(4272), - [anon_sym_u8_SQUOTE] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4272), - [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(4270), - [sym_false] = ACTIONS(4270), - [anon_sym_NULL] = ACTIONS(4270), - [anon_sym_nullptr] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_export] = ACTIONS(4270), - [anon_sym_module] = ACTIONS(4270), - [anon_sym_import] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_delete] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_namespace] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_concept] = ACTIONS(4270), - [anon_sym_co_return] = ACTIONS(4270), - [anon_sym_co_yield] = ACTIONS(4270), - [anon_sym_R_DQUOTE] = ACTIONS(4272), - [anon_sym_LR_DQUOTE] = ACTIONS(4272), - [anon_sym_uR_DQUOTE] = ACTIONS(4272), - [anon_sym_UR_DQUOTE] = ACTIONS(4272), - [anon_sym_u8R_DQUOTE] = ACTIONS(4272), - [anon_sym_co_await] = ACTIONS(4270), - [anon_sym_new] = ACTIONS(4270), - [anon_sym_requires] = ACTIONS(4270), - [anon_sym_CARET_CARET] = ACTIONS(4272), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - [sym_this] = ACTIONS(4270), - }, - [STATE(484)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_include_token1] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token2] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [aux_sym_preproc_else_token1] = ACTIONS(4270), - [aux_sym_preproc_elif_token1] = ACTIONS(4270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym___cdecl] = ACTIONS(4270), - [anon_sym___clrcall] = ACTIONS(4270), - [anon_sym___stdcall] = ACTIONS(4270), - [anon_sym___fastcall] = ACTIONS(4270), - [anon_sym___thiscall] = ACTIONS(4270), - [anon_sym___vectorcall] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_switch] = ACTIONS(4270), - [anon_sym_case] = ACTIONS(4270), - [anon_sym_default] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_do] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_goto] = ACTIONS(4270), - [anon_sym___try] = ACTIONS(4270), - [anon_sym___leave] = ACTIONS(4270), - [anon_sym_not] = ACTIONS(4270), - [anon_sym_compl] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_sizeof] = ACTIONS(4270), - [anon_sym___alignof__] = ACTIONS(4270), - [anon_sym___alignof] = ACTIONS(4270), - [anon_sym__alignof] = ACTIONS(4270), - [anon_sym_alignof] = ACTIONS(4270), - [anon_sym__Alignof] = ACTIONS(4270), - [anon_sym_offsetof] = ACTIONS(4270), - [anon_sym__Generic] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4270), - [anon_sym___asm__] = ACTIONS(4270), - [anon_sym___asm] = ACTIONS(4270), - [sym_number_literal] = ACTIONS(4272), - [anon_sym_L_SQUOTE] = ACTIONS(4272), - [anon_sym_u_SQUOTE] = ACTIONS(4272), - [anon_sym_U_SQUOTE] = ACTIONS(4272), - [anon_sym_u8_SQUOTE] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4272), - [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(4270), - [sym_false] = ACTIONS(4270), - [anon_sym_NULL] = ACTIONS(4270), - [anon_sym_nullptr] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_export] = ACTIONS(4270), - [anon_sym_module] = ACTIONS(4270), - [anon_sym_import] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_delete] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_namespace] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_concept] = ACTIONS(4270), - [anon_sym_co_return] = ACTIONS(4270), - [anon_sym_co_yield] = ACTIONS(4270), - [anon_sym_R_DQUOTE] = ACTIONS(4272), - [anon_sym_LR_DQUOTE] = ACTIONS(4272), - [anon_sym_uR_DQUOTE] = ACTIONS(4272), - [anon_sym_UR_DQUOTE] = ACTIONS(4272), - [anon_sym_u8R_DQUOTE] = ACTIONS(4272), - [anon_sym_co_await] = ACTIONS(4270), - [anon_sym_new] = ACTIONS(4270), - [anon_sym_requires] = ACTIONS(4270), - [anon_sym_CARET_CARET] = ACTIONS(4272), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - [sym_this] = ACTIONS(4270), - }, - [STATE(485)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7120), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(10976), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [STATE(488)] = { + [sym_type_qualifier] = STATE(5074), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(2266), + [sym_sized_type_specifier] = STATE(2173), + [sym_enum_specifier] = STATE(2173), + [sym_struct_specifier] = STATE(2173), + [sym_union_specifier] = STATE(2173), + [sym_expression] = STATE(5392), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_type_descriptor] = STATE(3937), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_placeholder_type_specifier] = STATE(2173), + [sym_decltype_auto] = STATE(2172), + [sym_decltype] = STATE(2148), + [sym_class_specifier] = STATE(2173), + [sym__class_name] = STATE(10219), + [sym_dependent_type] = STATE(2173), + [sym_template_type] = STATE(2144), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7936), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(2226), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(2280), + [sym__splice_specialization_specifier] = STATE(2149), + [sym_splice_type_specifier] = STATE(2171), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [aux_sym__type_definition_type_repeat1] = STATE(5074), + [aux_sym_sized_type_specifier_repeat1] = STATE(2070), + [sym_identifier] = ACTIONS(4211), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4361), + [anon_sym_COLON_COLON] = ACTIONS(4363), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -129386,137 +129827,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [sym_primitive_type] = ACTIONS(4165), + [anon_sym_enum] = ACTIONS(4167), + [anon_sym_class] = ACTIONS(4169), + [anon_sym_struct] = ACTIONS(4171), + [anon_sym_union] = ACTIONS(4173), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(4177), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4179), + [anon_sym_decltype] = ACTIONS(4181), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, - [STATE(486)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7174), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11528), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(489)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(7142), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11225), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -129531,11 +129972,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -129548,7 +129989,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -129568,9 +130009,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -129581,87 +130022,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(487)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(6947), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(10987), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(490)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(7162), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11301), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -129676,11 +130117,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -129693,7 +130134,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -129713,9 +130154,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -129726,87 +130167,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(488)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(6970), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(10681), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(491)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(7016), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11249), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -129821,11 +130262,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -129838,7 +130279,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -129858,9 +130299,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -129871,87 +130312,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(489)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7001), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11011), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(492)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6986), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11534), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -129966,11 +130407,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -129983,7 +130424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130003,9 +130444,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -130016,87 +130457,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(490)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7020), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11305), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(493)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(7086), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11076), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130111,11 +130552,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -130128,7 +130569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130148,9 +130589,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -130161,87 +130602,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(491)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7038), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11690), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(494)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(7141), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(10781), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130256,11 +130697,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -130273,7 +130714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130293,9 +130734,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -130306,87 +130747,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(492)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7050), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11574), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(495)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(7181), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11194), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130401,11 +130842,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -130418,7 +130859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130438,9 +130879,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -130451,87 +130892,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(493)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7057), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11531), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(496)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6939), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11636), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130546,11 +130987,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -130563,7 +131004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130583,9 +131024,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -130596,87 +131037,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(494)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7060), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(10882), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(497)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6950), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(10690), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130691,11 +131132,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -130708,7 +131149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130728,9 +131169,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -130741,87 +131182,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(495)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7062), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11175), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(498)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6958), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(10686), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130836,11 +131277,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -130853,7 +131294,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -130873,9 +131314,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -130886,87 +131327,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(496)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7064), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11490), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(499)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6964), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11080), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -130981,11 +131422,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -130998,7 +131439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131018,9 +131459,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -131031,87 +131472,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(497)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7066), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(10635), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(500)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6967), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11262), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131126,11 +131567,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -131143,7 +131584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131163,9 +131604,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -131176,87 +131617,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(498)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7068), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(10737), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(501)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6971), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11641), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131271,11 +131712,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -131288,7 +131729,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131308,9 +131749,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -131321,87 +131762,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(499)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7069), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(10846), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(502)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6974), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(10714), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131416,11 +131857,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -131433,7 +131874,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131453,9 +131894,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -131466,87 +131907,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(500)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7070), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(10960), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(503)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6976), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(10824), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131561,11 +132002,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -131578,7 +132019,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131598,9 +132039,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -131611,87 +132052,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(501)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7071), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11057), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(504)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6981), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(10918), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131706,11 +132147,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -131723,7 +132164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131743,9 +132184,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -131756,87 +132197,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(502)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7073), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11167), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(505)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6983), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11021), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131851,11 +132292,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -131868,7 +132309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -131888,9 +132329,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -131901,87 +132342,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(503)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7074), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11246), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(506)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6985), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11127), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -131996,11 +132437,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -132013,7 +132454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -132033,9 +132474,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -132046,87 +132487,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(504)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7194), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11278), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(507)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6987), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11182), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -132141,11 +132582,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -132158,7 +132599,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -132178,9 +132619,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -132191,87 +132632,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(505)] = { - [sym_type_qualifier] = STATE(5167), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(7223), - [sym_sized_type_specifier] = STATE(3100), - [sym_enum_specifier] = STATE(3100), - [sym_struct_specifier] = STATE(3100), - [sym_union_specifier] = STATE(3100), - [sym_expression] = STATE(7076), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_type_descriptor] = STATE(11318), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_placeholder_type_specifier] = STATE(3100), - [sym_decltype_auto] = STATE(3197), - [sym_decltype] = STATE(3021), - [sym_class_specifier] = STATE(3100), - [sym__class_name] = STATE(10231), - [sym_dependent_type] = STATE(3100), - [sym_template_type] = STATE(3870), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7912), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(3974), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5230), - [sym__splice_specialization_specifier] = STATE(3028), - [sym_splice_type_specifier] = STATE(3484), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym__type_definition_type_repeat1] = STATE(5167), - [aux_sym_sized_type_specifier_repeat1] = STATE(2852), - [sym_identifier] = ACTIONS(3784), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(508)] = { + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6989), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11727), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_signed] = ACTIONS(2244), - [anon_sym_unsigned] = ACTIONS(2244), - [anon_sym_long] = ACTIONS(2244), - [anon_sym_short] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -132286,11 +132727,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3702), - [anon_sym_enum] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2252), - [anon_sym_union] = ACTIONS(2254), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -132303,7 +132744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3786), + [anon_sym_typename] = ACTIONS(3850), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -132323,9 +132764,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(2280), - [anon_sym_decltype] = ACTIONS(2282), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -132336,957 +132777,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(506)] = { - [sym_identifier] = ACTIONS(4274), - [aux_sym_preproc_include_token1] = ACTIONS(4274), - [aux_sym_preproc_def_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token2] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), - [aux_sym_preproc_else_token1] = ACTIONS(4274), - [aux_sym_preproc_elif_token1] = ACTIONS(4274), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4274), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4274), - [sym_preproc_directive] = ACTIONS(4274), - [anon_sym_LPAREN2] = ACTIONS(4276), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_TILDE] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_AMP_AMP] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4274), - [anon_sym_SEMI] = ACTIONS(4276), - [anon_sym___extension__] = ACTIONS(4274), - [anon_sym_typedef] = ACTIONS(4274), - [anon_sym_virtual] = ACTIONS(4274), - [anon_sym_extern] = ACTIONS(4274), - [anon_sym___attribute__] = ACTIONS(4274), - [anon_sym___attribute] = ACTIONS(4274), - [anon_sym_using] = ACTIONS(4274), - [anon_sym_COLON_COLON] = ACTIONS(4276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), - [anon_sym___declspec] = ACTIONS(4274), - [anon_sym___based] = ACTIONS(4274), - [anon_sym___cdecl] = ACTIONS(4274), - [anon_sym___clrcall] = ACTIONS(4274), - [anon_sym___stdcall] = ACTIONS(4274), - [anon_sym___fastcall] = ACTIONS(4274), - [anon_sym___thiscall] = ACTIONS(4274), - [anon_sym___vectorcall] = ACTIONS(4274), - [anon_sym_LBRACE] = ACTIONS(4276), - [anon_sym_signed] = ACTIONS(4274), - [anon_sym_unsigned] = ACTIONS(4274), - [anon_sym_long] = ACTIONS(4274), - [anon_sym_short] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_static] = ACTIONS(4274), - [anon_sym_register] = ACTIONS(4274), - [anon_sym_inline] = ACTIONS(4274), - [anon_sym___inline] = ACTIONS(4274), - [anon_sym___inline__] = ACTIONS(4274), - [anon_sym___forceinline] = ACTIONS(4274), - [anon_sym_thread_local] = ACTIONS(4274), - [anon_sym___thread] = ACTIONS(4274), - [anon_sym_const] = ACTIONS(4274), - [anon_sym_constexpr] = ACTIONS(4274), - [anon_sym_volatile] = ACTIONS(4274), - [anon_sym_restrict] = ACTIONS(4274), - [anon_sym___restrict__] = ACTIONS(4274), - [anon_sym__Atomic] = ACTIONS(4274), - [anon_sym__Noreturn] = ACTIONS(4274), - [anon_sym_noreturn] = ACTIONS(4274), - [anon_sym__Nonnull] = ACTIONS(4274), - [anon_sym_mutable] = ACTIONS(4274), - [anon_sym_constinit] = ACTIONS(4274), - [anon_sym_consteval] = ACTIONS(4274), - [anon_sym_alignas] = ACTIONS(4274), - [anon_sym__Alignas] = ACTIONS(4274), - [sym_primitive_type] = ACTIONS(4274), - [anon_sym_enum] = ACTIONS(4274), - [anon_sym_class] = ACTIONS(4274), - [anon_sym_struct] = ACTIONS(4274), - [anon_sym_union] = ACTIONS(4274), - [anon_sym_if] = ACTIONS(4274), - [anon_sym_switch] = ACTIONS(4274), - [anon_sym_case] = ACTIONS(4274), - [anon_sym_default] = ACTIONS(4274), - [anon_sym_while] = ACTIONS(4274), - [anon_sym_do] = ACTIONS(4274), - [anon_sym_for] = ACTIONS(4274), - [anon_sym_return] = ACTIONS(4274), - [anon_sym_break] = ACTIONS(4274), - [anon_sym_continue] = ACTIONS(4274), - [anon_sym_goto] = ACTIONS(4274), - [anon_sym___try] = ACTIONS(4274), - [anon_sym___leave] = ACTIONS(4274), - [anon_sym_not] = ACTIONS(4274), - [anon_sym_compl] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4276), - [anon_sym_sizeof] = ACTIONS(4274), - [anon_sym___alignof__] = ACTIONS(4274), - [anon_sym___alignof] = ACTIONS(4274), - [anon_sym__alignof] = ACTIONS(4274), - [anon_sym_alignof] = ACTIONS(4274), - [anon_sym__Alignof] = ACTIONS(4274), - [anon_sym_offsetof] = ACTIONS(4274), - [anon_sym__Generic] = ACTIONS(4274), - [anon_sym_typename] = ACTIONS(4274), - [anon_sym_asm] = ACTIONS(4274), - [anon_sym___asm__] = ACTIONS(4274), - [anon_sym___asm] = ACTIONS(4274), - [sym_number_literal] = ACTIONS(4276), - [anon_sym_L_SQUOTE] = ACTIONS(4276), - [anon_sym_u_SQUOTE] = ACTIONS(4276), - [anon_sym_U_SQUOTE] = ACTIONS(4276), - [anon_sym_u8_SQUOTE] = ACTIONS(4276), - [anon_sym_SQUOTE] = ACTIONS(4276), - [anon_sym_L_DQUOTE] = ACTIONS(4276), - [anon_sym_u_DQUOTE] = ACTIONS(4276), - [anon_sym_U_DQUOTE] = ACTIONS(4276), - [anon_sym_u8_DQUOTE] = ACTIONS(4276), - [anon_sym_DQUOTE] = ACTIONS(4276), - [sym_true] = ACTIONS(4274), - [sym_false] = ACTIONS(4274), - [anon_sym_NULL] = ACTIONS(4274), - [anon_sym_nullptr] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4274), - [anon_sym_decltype] = ACTIONS(4274), - [anon_sym_explicit] = ACTIONS(4274), - [anon_sym_export] = ACTIONS(4274), - [anon_sym_module] = ACTIONS(4274), - [anon_sym_import] = ACTIONS(4274), - [anon_sym_template] = ACTIONS(4274), - [anon_sym_operator] = ACTIONS(4274), - [anon_sym_try] = ACTIONS(4274), - [anon_sym_delete] = ACTIONS(4274), - [anon_sym_throw] = ACTIONS(4274), - [anon_sym_namespace] = ACTIONS(4274), - [anon_sym_static_assert] = ACTIONS(4274), - [anon_sym_concept] = ACTIONS(4274), - [anon_sym_co_return] = ACTIONS(4274), - [anon_sym_co_yield] = ACTIONS(4274), - [anon_sym_R_DQUOTE] = ACTIONS(4276), - [anon_sym_LR_DQUOTE] = ACTIONS(4276), - [anon_sym_uR_DQUOTE] = ACTIONS(4276), - [anon_sym_UR_DQUOTE] = ACTIONS(4276), - [anon_sym_u8R_DQUOTE] = ACTIONS(4276), - [anon_sym_co_await] = ACTIONS(4274), - [anon_sym_new] = ACTIONS(4274), - [anon_sym_requires] = ACTIONS(4274), - [anon_sym_CARET_CARET] = ACTIONS(4276), - [anon_sym_LBRACK_COLON] = ACTIONS(4276), - [sym_this] = ACTIONS(4274), - }, - [STATE(507)] = { - [sym_identifier] = ACTIONS(4278), - [aux_sym_preproc_include_token1] = ACTIONS(4278), - [aux_sym_preproc_def_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token2] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), - [aux_sym_preproc_else_token1] = ACTIONS(4278), - [aux_sym_preproc_elif_token1] = ACTIONS(4278), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4278), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4278), - [sym_preproc_directive] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_BANG] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4280), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_AMP] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym___extension__] = ACTIONS(4278), - [anon_sym_typedef] = ACTIONS(4278), - [anon_sym_virtual] = ACTIONS(4278), - [anon_sym_extern] = ACTIONS(4278), - [anon_sym___attribute__] = ACTIONS(4278), - [anon_sym___attribute] = ACTIONS(4278), - [anon_sym_using] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), - [anon_sym___declspec] = ACTIONS(4278), - [anon_sym___based] = ACTIONS(4278), - [anon_sym___cdecl] = ACTIONS(4278), - [anon_sym___clrcall] = ACTIONS(4278), - [anon_sym___stdcall] = ACTIONS(4278), - [anon_sym___fastcall] = ACTIONS(4278), - [anon_sym___thiscall] = ACTIONS(4278), - [anon_sym___vectorcall] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4280), - [anon_sym_signed] = ACTIONS(4278), - [anon_sym_unsigned] = ACTIONS(4278), - [anon_sym_long] = ACTIONS(4278), - [anon_sym_short] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_static] = ACTIONS(4278), - [anon_sym_register] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym___inline] = ACTIONS(4278), - [anon_sym___inline__] = ACTIONS(4278), - [anon_sym___forceinline] = ACTIONS(4278), - [anon_sym_thread_local] = ACTIONS(4278), - [anon_sym___thread] = ACTIONS(4278), - [anon_sym_const] = ACTIONS(4278), - [anon_sym_constexpr] = ACTIONS(4278), - [anon_sym_volatile] = ACTIONS(4278), - [anon_sym_restrict] = ACTIONS(4278), - [anon_sym___restrict__] = ACTIONS(4278), - [anon_sym__Atomic] = ACTIONS(4278), - [anon_sym__Noreturn] = ACTIONS(4278), - [anon_sym_noreturn] = ACTIONS(4278), - [anon_sym__Nonnull] = ACTIONS(4278), - [anon_sym_mutable] = ACTIONS(4278), - [anon_sym_constinit] = ACTIONS(4278), - [anon_sym_consteval] = ACTIONS(4278), - [anon_sym_alignas] = ACTIONS(4278), - [anon_sym__Alignas] = ACTIONS(4278), - [sym_primitive_type] = ACTIONS(4278), - [anon_sym_enum] = ACTIONS(4278), - [anon_sym_class] = ACTIONS(4278), - [anon_sym_struct] = ACTIONS(4278), - [anon_sym_union] = ACTIONS(4278), - [anon_sym_if] = ACTIONS(4278), - [anon_sym_switch] = ACTIONS(4278), - [anon_sym_case] = ACTIONS(4278), - [anon_sym_default] = ACTIONS(4278), - [anon_sym_while] = ACTIONS(4278), - [anon_sym_do] = ACTIONS(4278), - [anon_sym_for] = ACTIONS(4278), - [anon_sym_return] = ACTIONS(4278), - [anon_sym_break] = ACTIONS(4278), - [anon_sym_continue] = ACTIONS(4278), - [anon_sym_goto] = ACTIONS(4278), - [anon_sym___try] = ACTIONS(4278), - [anon_sym___leave] = ACTIONS(4278), - [anon_sym_not] = ACTIONS(4278), - [anon_sym_compl] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4280), - [anon_sym_PLUS_PLUS] = ACTIONS(4280), - [anon_sym_sizeof] = ACTIONS(4278), - [anon_sym___alignof__] = ACTIONS(4278), - [anon_sym___alignof] = ACTIONS(4278), - [anon_sym__alignof] = ACTIONS(4278), - [anon_sym_alignof] = ACTIONS(4278), - [anon_sym__Alignof] = ACTIONS(4278), - [anon_sym_offsetof] = ACTIONS(4278), - [anon_sym__Generic] = ACTIONS(4278), - [anon_sym_typename] = ACTIONS(4278), - [anon_sym_asm] = ACTIONS(4278), - [anon_sym___asm__] = ACTIONS(4278), - [anon_sym___asm] = ACTIONS(4278), - [sym_number_literal] = ACTIONS(4280), - [anon_sym_L_SQUOTE] = ACTIONS(4280), - [anon_sym_u_SQUOTE] = ACTIONS(4280), - [anon_sym_U_SQUOTE] = ACTIONS(4280), - [anon_sym_u8_SQUOTE] = ACTIONS(4280), - [anon_sym_SQUOTE] = ACTIONS(4280), - [anon_sym_L_DQUOTE] = ACTIONS(4280), - [anon_sym_u_DQUOTE] = ACTIONS(4280), - [anon_sym_U_DQUOTE] = ACTIONS(4280), - [anon_sym_u8_DQUOTE] = ACTIONS(4280), - [anon_sym_DQUOTE] = ACTIONS(4280), - [sym_true] = ACTIONS(4278), - [sym_false] = ACTIONS(4278), - [anon_sym_NULL] = ACTIONS(4278), - [anon_sym_nullptr] = ACTIONS(4278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4278), - [anon_sym_decltype] = ACTIONS(4278), - [anon_sym_explicit] = ACTIONS(4278), - [anon_sym_export] = ACTIONS(4278), - [anon_sym_module] = ACTIONS(4278), - [anon_sym_import] = ACTIONS(4278), - [anon_sym_template] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_try] = ACTIONS(4278), - [anon_sym_delete] = ACTIONS(4278), - [anon_sym_throw] = ACTIONS(4278), - [anon_sym_namespace] = ACTIONS(4278), - [anon_sym_static_assert] = ACTIONS(4278), - [anon_sym_concept] = ACTIONS(4278), - [anon_sym_co_return] = ACTIONS(4278), - [anon_sym_co_yield] = ACTIONS(4278), - [anon_sym_R_DQUOTE] = ACTIONS(4280), - [anon_sym_LR_DQUOTE] = ACTIONS(4280), - [anon_sym_uR_DQUOTE] = ACTIONS(4280), - [anon_sym_UR_DQUOTE] = ACTIONS(4280), - [anon_sym_u8R_DQUOTE] = ACTIONS(4280), - [anon_sym_co_await] = ACTIONS(4278), - [anon_sym_new] = ACTIONS(4278), - [anon_sym_requires] = ACTIONS(4278), - [anon_sym_CARET_CARET] = ACTIONS(4280), - [anon_sym_LBRACK_COLON] = ACTIONS(4280), - [sym_this] = ACTIONS(4278), - }, - [STATE(508)] = { - [sym_identifier] = ACTIONS(4282), - [aux_sym_preproc_include_token1] = ACTIONS(4282), - [aux_sym_preproc_def_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token2] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), - [aux_sym_preproc_else_token1] = ACTIONS(4282), - [aux_sym_preproc_elif_token1] = ACTIONS(4282), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4282), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4282), - [sym_preproc_directive] = ACTIONS(4282), - [anon_sym_LPAREN2] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4282), - [anon_sym_PLUS] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(4284), - [anon_sym_AMP_AMP] = ACTIONS(4284), - [anon_sym_AMP] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4284), - [anon_sym___extension__] = ACTIONS(4282), - [anon_sym_typedef] = ACTIONS(4282), - [anon_sym_virtual] = ACTIONS(4282), - [anon_sym_extern] = ACTIONS(4282), - [anon_sym___attribute__] = ACTIONS(4282), - [anon_sym___attribute] = ACTIONS(4282), - [anon_sym_using] = ACTIONS(4282), - [anon_sym_COLON_COLON] = ACTIONS(4284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4282), - [anon_sym___based] = ACTIONS(4282), - [anon_sym___cdecl] = ACTIONS(4282), - [anon_sym___clrcall] = ACTIONS(4282), - [anon_sym___stdcall] = ACTIONS(4282), - [anon_sym___fastcall] = ACTIONS(4282), - [anon_sym___thiscall] = ACTIONS(4282), - [anon_sym___vectorcall] = ACTIONS(4282), - [anon_sym_LBRACE] = ACTIONS(4284), - [anon_sym_signed] = ACTIONS(4282), - [anon_sym_unsigned] = ACTIONS(4282), - [anon_sym_long] = ACTIONS(4282), - [anon_sym_short] = ACTIONS(4282), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_static] = ACTIONS(4282), - [anon_sym_register] = ACTIONS(4282), - [anon_sym_inline] = ACTIONS(4282), - [anon_sym___inline] = ACTIONS(4282), - [anon_sym___inline__] = ACTIONS(4282), - [anon_sym___forceinline] = ACTIONS(4282), - [anon_sym_thread_local] = ACTIONS(4282), - [anon_sym___thread] = ACTIONS(4282), - [anon_sym_const] = ACTIONS(4282), - [anon_sym_constexpr] = ACTIONS(4282), - [anon_sym_volatile] = ACTIONS(4282), - [anon_sym_restrict] = ACTIONS(4282), - [anon_sym___restrict__] = ACTIONS(4282), - [anon_sym__Atomic] = ACTIONS(4282), - [anon_sym__Noreturn] = ACTIONS(4282), - [anon_sym_noreturn] = ACTIONS(4282), - [anon_sym__Nonnull] = ACTIONS(4282), - [anon_sym_mutable] = ACTIONS(4282), - [anon_sym_constinit] = ACTIONS(4282), - [anon_sym_consteval] = ACTIONS(4282), - [anon_sym_alignas] = ACTIONS(4282), - [anon_sym__Alignas] = ACTIONS(4282), - [sym_primitive_type] = ACTIONS(4282), - [anon_sym_enum] = ACTIONS(4282), - [anon_sym_class] = ACTIONS(4282), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_union] = ACTIONS(4282), - [anon_sym_if] = ACTIONS(4282), - [anon_sym_switch] = ACTIONS(4282), - [anon_sym_case] = ACTIONS(4282), - [anon_sym_default] = ACTIONS(4282), - [anon_sym_while] = ACTIONS(4282), - [anon_sym_do] = ACTIONS(4282), - [anon_sym_for] = ACTIONS(4282), - [anon_sym_return] = ACTIONS(4282), - [anon_sym_break] = ACTIONS(4282), - [anon_sym_continue] = ACTIONS(4282), - [anon_sym_goto] = ACTIONS(4282), - [anon_sym___try] = ACTIONS(4282), - [anon_sym___leave] = ACTIONS(4282), - [anon_sym_not] = ACTIONS(4282), - [anon_sym_compl] = ACTIONS(4282), - [anon_sym_DASH_DASH] = ACTIONS(4284), - [anon_sym_PLUS_PLUS] = ACTIONS(4284), - [anon_sym_sizeof] = ACTIONS(4282), - [anon_sym___alignof__] = ACTIONS(4282), - [anon_sym___alignof] = ACTIONS(4282), - [anon_sym__alignof] = ACTIONS(4282), - [anon_sym_alignof] = ACTIONS(4282), - [anon_sym__Alignof] = ACTIONS(4282), - [anon_sym_offsetof] = ACTIONS(4282), - [anon_sym__Generic] = ACTIONS(4282), - [anon_sym_typename] = ACTIONS(4282), - [anon_sym_asm] = ACTIONS(4282), - [anon_sym___asm__] = ACTIONS(4282), - [anon_sym___asm] = ACTIONS(4282), - [sym_number_literal] = ACTIONS(4284), - [anon_sym_L_SQUOTE] = ACTIONS(4284), - [anon_sym_u_SQUOTE] = ACTIONS(4284), - [anon_sym_U_SQUOTE] = ACTIONS(4284), - [anon_sym_u8_SQUOTE] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4284), - [anon_sym_L_DQUOTE] = ACTIONS(4284), - [anon_sym_u_DQUOTE] = ACTIONS(4284), - [anon_sym_U_DQUOTE] = ACTIONS(4284), - [anon_sym_u8_DQUOTE] = ACTIONS(4284), - [anon_sym_DQUOTE] = ACTIONS(4284), - [sym_true] = ACTIONS(4282), - [sym_false] = ACTIONS(4282), - [anon_sym_NULL] = ACTIONS(4282), - [anon_sym_nullptr] = ACTIONS(4282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4282), - [anon_sym_decltype] = ACTIONS(4282), - [anon_sym_explicit] = ACTIONS(4282), - [anon_sym_export] = ACTIONS(4282), - [anon_sym_module] = ACTIONS(4282), - [anon_sym_import] = ACTIONS(4282), - [anon_sym_template] = ACTIONS(4282), - [anon_sym_operator] = ACTIONS(4282), - [anon_sym_try] = ACTIONS(4282), - [anon_sym_delete] = ACTIONS(4282), - [anon_sym_throw] = ACTIONS(4282), - [anon_sym_namespace] = ACTIONS(4282), - [anon_sym_static_assert] = ACTIONS(4282), - [anon_sym_concept] = ACTIONS(4282), - [anon_sym_co_return] = ACTIONS(4282), - [anon_sym_co_yield] = ACTIONS(4282), - [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(4282), - [anon_sym_new] = ACTIONS(4282), - [anon_sym_requires] = ACTIONS(4282), - [anon_sym_CARET_CARET] = ACTIONS(4284), - [anon_sym_LBRACK_COLON] = ACTIONS(4284), - [sym_this] = ACTIONS(4282), - }, [STATE(509)] = { - [sym_identifier] = ACTIONS(4286), - [aux_sym_preproc_include_token1] = ACTIONS(4286), - [aux_sym_preproc_def_token1] = ACTIONS(4286), - [aux_sym_preproc_if_token1] = ACTIONS(4286), - [aux_sym_preproc_if_token2] = ACTIONS(4286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4286), - [aux_sym_preproc_else_token1] = ACTIONS(4286), - [aux_sym_preproc_elif_token1] = ACTIONS(4286), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4286), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4286), - [sym_preproc_directive] = ACTIONS(4286), - [anon_sym_LPAREN2] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_TILDE] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_AMP_AMP] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4288), - [anon_sym___extension__] = ACTIONS(4286), - [anon_sym_typedef] = ACTIONS(4286), - [anon_sym_virtual] = ACTIONS(4286), - [anon_sym_extern] = ACTIONS(4286), - [anon_sym___attribute__] = ACTIONS(4286), - [anon_sym___attribute] = ACTIONS(4286), - [anon_sym_using] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4288), - [anon_sym___declspec] = ACTIONS(4286), - [anon_sym___based] = ACTIONS(4286), - [anon_sym___cdecl] = ACTIONS(4286), - [anon_sym___clrcall] = ACTIONS(4286), - [anon_sym___stdcall] = ACTIONS(4286), - [anon_sym___fastcall] = ACTIONS(4286), - [anon_sym___thiscall] = ACTIONS(4286), - [anon_sym___vectorcall] = ACTIONS(4286), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_signed] = ACTIONS(4286), - [anon_sym_unsigned] = ACTIONS(4286), - [anon_sym_long] = ACTIONS(4286), - [anon_sym_short] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_static] = ACTIONS(4286), - [anon_sym_register] = ACTIONS(4286), - [anon_sym_inline] = ACTIONS(4286), - [anon_sym___inline] = ACTIONS(4286), - [anon_sym___inline__] = ACTIONS(4286), - [anon_sym___forceinline] = ACTIONS(4286), - [anon_sym_thread_local] = ACTIONS(4286), - [anon_sym___thread] = ACTIONS(4286), - [anon_sym_const] = ACTIONS(4286), - [anon_sym_constexpr] = ACTIONS(4286), - [anon_sym_volatile] = ACTIONS(4286), - [anon_sym_restrict] = ACTIONS(4286), - [anon_sym___restrict__] = ACTIONS(4286), - [anon_sym__Atomic] = ACTIONS(4286), - [anon_sym__Noreturn] = ACTIONS(4286), - [anon_sym_noreturn] = ACTIONS(4286), - [anon_sym__Nonnull] = ACTIONS(4286), - [anon_sym_mutable] = ACTIONS(4286), - [anon_sym_constinit] = ACTIONS(4286), - [anon_sym_consteval] = ACTIONS(4286), - [anon_sym_alignas] = ACTIONS(4286), - [anon_sym__Alignas] = ACTIONS(4286), - [sym_primitive_type] = ACTIONS(4286), - [anon_sym_enum] = ACTIONS(4286), - [anon_sym_class] = ACTIONS(4286), - [anon_sym_struct] = ACTIONS(4286), - [anon_sym_union] = ACTIONS(4286), - [anon_sym_if] = ACTIONS(4286), - [anon_sym_switch] = ACTIONS(4286), - [anon_sym_case] = ACTIONS(4286), - [anon_sym_default] = ACTIONS(4286), - [anon_sym_while] = ACTIONS(4286), - [anon_sym_do] = ACTIONS(4286), - [anon_sym_for] = ACTIONS(4286), - [anon_sym_return] = ACTIONS(4286), - [anon_sym_break] = ACTIONS(4286), - [anon_sym_continue] = ACTIONS(4286), - [anon_sym_goto] = ACTIONS(4286), - [anon_sym___try] = ACTIONS(4286), - [anon_sym___leave] = ACTIONS(4286), - [anon_sym_not] = ACTIONS(4286), - [anon_sym_compl] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4288), - [anon_sym_sizeof] = ACTIONS(4286), - [anon_sym___alignof__] = ACTIONS(4286), - [anon_sym___alignof] = ACTIONS(4286), - [anon_sym__alignof] = ACTIONS(4286), - [anon_sym_alignof] = ACTIONS(4286), - [anon_sym__Alignof] = ACTIONS(4286), - [anon_sym_offsetof] = ACTIONS(4286), - [anon_sym__Generic] = ACTIONS(4286), - [anon_sym_typename] = ACTIONS(4286), - [anon_sym_asm] = ACTIONS(4286), - [anon_sym___asm__] = ACTIONS(4286), - [anon_sym___asm] = ACTIONS(4286), - [sym_number_literal] = ACTIONS(4288), - [anon_sym_L_SQUOTE] = ACTIONS(4288), - [anon_sym_u_SQUOTE] = ACTIONS(4288), - [anon_sym_U_SQUOTE] = ACTIONS(4288), - [anon_sym_u8_SQUOTE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(4288), - [anon_sym_L_DQUOTE] = ACTIONS(4288), - [anon_sym_u_DQUOTE] = ACTIONS(4288), - [anon_sym_U_DQUOTE] = ACTIONS(4288), - [anon_sym_u8_DQUOTE] = ACTIONS(4288), - [anon_sym_DQUOTE] = ACTIONS(4288), - [sym_true] = ACTIONS(4286), - [sym_false] = ACTIONS(4286), - [anon_sym_NULL] = ACTIONS(4286), - [anon_sym_nullptr] = ACTIONS(4286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4286), - [anon_sym_decltype] = ACTIONS(4286), - [anon_sym_explicit] = ACTIONS(4286), - [anon_sym_export] = ACTIONS(4286), - [anon_sym_module] = ACTIONS(4286), - [anon_sym_import] = ACTIONS(4286), - [anon_sym_template] = ACTIONS(4286), - [anon_sym_operator] = ACTIONS(4286), - [anon_sym_try] = ACTIONS(4286), - [anon_sym_delete] = ACTIONS(4286), - [anon_sym_throw] = ACTIONS(4286), - [anon_sym_namespace] = ACTIONS(4286), - [anon_sym_static_assert] = ACTIONS(4286), - [anon_sym_concept] = ACTIONS(4286), - [anon_sym_co_return] = ACTIONS(4286), - [anon_sym_co_yield] = ACTIONS(4286), - [anon_sym_R_DQUOTE] = ACTIONS(4288), - [anon_sym_LR_DQUOTE] = ACTIONS(4288), - [anon_sym_uR_DQUOTE] = ACTIONS(4288), - [anon_sym_UR_DQUOTE] = ACTIONS(4288), - [anon_sym_u8R_DQUOTE] = ACTIONS(4288), - [anon_sym_co_await] = ACTIONS(4286), - [anon_sym_new] = ACTIONS(4286), - [anon_sym_requires] = ACTIONS(4286), - [anon_sym_CARET_CARET] = ACTIONS(4288), - [anon_sym_LBRACK_COLON] = ACTIONS(4288), - [sym_this] = ACTIONS(4286), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6990), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11295), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3850), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, [STATE(510)] = { - [sym_identifier] = ACTIONS(4290), - [aux_sym_preproc_include_token1] = ACTIONS(4290), - [aux_sym_preproc_def_token1] = ACTIONS(4290), - [aux_sym_preproc_if_token1] = ACTIONS(4290), - [aux_sym_preproc_if_token2] = ACTIONS(4290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4290), - [aux_sym_preproc_else_token1] = ACTIONS(4290), - [aux_sym_preproc_elif_token1] = ACTIONS(4290), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4290), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4290), - [sym_preproc_directive] = ACTIONS(4290), - [anon_sym_LPAREN2] = ACTIONS(4292), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_TILDE] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(4292), - [anon_sym_AMP_AMP] = ACTIONS(4292), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_SEMI] = ACTIONS(4292), - [anon_sym___extension__] = ACTIONS(4290), - [anon_sym_typedef] = ACTIONS(4290), - [anon_sym_virtual] = ACTIONS(4290), - [anon_sym_extern] = ACTIONS(4290), - [anon_sym___attribute__] = ACTIONS(4290), - [anon_sym___attribute] = ACTIONS(4290), - [anon_sym_using] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4292), - [anon_sym___declspec] = ACTIONS(4290), - [anon_sym___based] = ACTIONS(4290), - [anon_sym___cdecl] = ACTIONS(4290), - [anon_sym___clrcall] = ACTIONS(4290), - [anon_sym___stdcall] = ACTIONS(4290), - [anon_sym___fastcall] = ACTIONS(4290), - [anon_sym___thiscall] = ACTIONS(4290), - [anon_sym___vectorcall] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4292), - [anon_sym_signed] = ACTIONS(4290), - [anon_sym_unsigned] = ACTIONS(4290), - [anon_sym_long] = ACTIONS(4290), - [anon_sym_short] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_static] = ACTIONS(4290), - [anon_sym_register] = ACTIONS(4290), - [anon_sym_inline] = ACTIONS(4290), - [anon_sym___inline] = ACTIONS(4290), - [anon_sym___inline__] = ACTIONS(4290), - [anon_sym___forceinline] = ACTIONS(4290), - [anon_sym_thread_local] = ACTIONS(4290), - [anon_sym___thread] = ACTIONS(4290), - [anon_sym_const] = ACTIONS(4290), - [anon_sym_constexpr] = ACTIONS(4290), - [anon_sym_volatile] = ACTIONS(4290), - [anon_sym_restrict] = ACTIONS(4290), - [anon_sym___restrict__] = ACTIONS(4290), - [anon_sym__Atomic] = ACTIONS(4290), - [anon_sym__Noreturn] = ACTIONS(4290), - [anon_sym_noreturn] = ACTIONS(4290), - [anon_sym__Nonnull] = ACTIONS(4290), - [anon_sym_mutable] = ACTIONS(4290), - [anon_sym_constinit] = ACTIONS(4290), - [anon_sym_consteval] = ACTIONS(4290), - [anon_sym_alignas] = ACTIONS(4290), - [anon_sym__Alignas] = ACTIONS(4290), - [sym_primitive_type] = ACTIONS(4290), - [anon_sym_enum] = ACTIONS(4290), - [anon_sym_class] = ACTIONS(4290), - [anon_sym_struct] = ACTIONS(4290), - [anon_sym_union] = ACTIONS(4290), - [anon_sym_if] = ACTIONS(4290), - [anon_sym_switch] = ACTIONS(4290), - [anon_sym_case] = ACTIONS(4290), - [anon_sym_default] = ACTIONS(4290), - [anon_sym_while] = ACTIONS(4290), - [anon_sym_do] = ACTIONS(4290), - [anon_sym_for] = ACTIONS(4290), - [anon_sym_return] = ACTIONS(4290), - [anon_sym_break] = ACTIONS(4290), - [anon_sym_continue] = ACTIONS(4290), - [anon_sym_goto] = ACTIONS(4290), - [anon_sym___try] = ACTIONS(4290), - [anon_sym___leave] = ACTIONS(4290), - [anon_sym_not] = ACTIONS(4290), - [anon_sym_compl] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4292), - [anon_sym_PLUS_PLUS] = ACTIONS(4292), - [anon_sym_sizeof] = ACTIONS(4290), - [anon_sym___alignof__] = ACTIONS(4290), - [anon_sym___alignof] = ACTIONS(4290), - [anon_sym__alignof] = ACTIONS(4290), - [anon_sym_alignof] = ACTIONS(4290), - [anon_sym__Alignof] = ACTIONS(4290), - [anon_sym_offsetof] = ACTIONS(4290), - [anon_sym__Generic] = ACTIONS(4290), - [anon_sym_typename] = ACTIONS(4290), - [anon_sym_asm] = ACTIONS(4290), - [anon_sym___asm__] = ACTIONS(4290), - [anon_sym___asm] = ACTIONS(4290), - [sym_number_literal] = ACTIONS(4292), - [anon_sym_L_SQUOTE] = ACTIONS(4292), - [anon_sym_u_SQUOTE] = ACTIONS(4292), - [anon_sym_U_SQUOTE] = ACTIONS(4292), - [anon_sym_u8_SQUOTE] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4292), - [anon_sym_L_DQUOTE] = ACTIONS(4292), - [anon_sym_u_DQUOTE] = ACTIONS(4292), - [anon_sym_U_DQUOTE] = ACTIONS(4292), - [anon_sym_u8_DQUOTE] = ACTIONS(4292), - [anon_sym_DQUOTE] = ACTIONS(4292), - [sym_true] = ACTIONS(4290), - [sym_false] = ACTIONS(4290), - [anon_sym_NULL] = ACTIONS(4290), - [anon_sym_nullptr] = ACTIONS(4290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4290), - [anon_sym_decltype] = ACTIONS(4290), - [anon_sym_explicit] = ACTIONS(4290), - [anon_sym_export] = ACTIONS(4290), - [anon_sym_module] = ACTIONS(4290), - [anon_sym_import] = ACTIONS(4290), - [anon_sym_template] = ACTIONS(4290), - [anon_sym_operator] = ACTIONS(4290), - [anon_sym_try] = ACTIONS(4290), - [anon_sym_delete] = ACTIONS(4290), - [anon_sym_throw] = ACTIONS(4290), - [anon_sym_namespace] = ACTIONS(4290), - [anon_sym_static_assert] = ACTIONS(4290), - [anon_sym_concept] = ACTIONS(4290), - [anon_sym_co_return] = ACTIONS(4290), - [anon_sym_co_yield] = ACTIONS(4290), - [anon_sym_R_DQUOTE] = ACTIONS(4292), - [anon_sym_LR_DQUOTE] = ACTIONS(4292), - [anon_sym_uR_DQUOTE] = ACTIONS(4292), - [anon_sym_UR_DQUOTE] = ACTIONS(4292), - [anon_sym_u8R_DQUOTE] = ACTIONS(4292), - [anon_sym_co_await] = ACTIONS(4290), - [anon_sym_new] = ACTIONS(4290), - [anon_sym_requires] = ACTIONS(4290), - [anon_sym_CARET_CARET] = ACTIONS(4292), - [anon_sym_LBRACK_COLON] = ACTIONS(4292), - [sym_this] = ACTIONS(4290), - }, - [STATE(511)] = { - [sym_identifier] = ACTIONS(4294), - [aux_sym_preproc_include_token1] = ACTIONS(4294), - [aux_sym_preproc_def_token1] = ACTIONS(4294), - [aux_sym_preproc_if_token1] = ACTIONS(4294), - [aux_sym_preproc_if_token2] = ACTIONS(4294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4294), - [aux_sym_preproc_else_token1] = ACTIONS(4294), - [aux_sym_preproc_elif_token1] = ACTIONS(4294), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4294), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4294), - [sym_preproc_directive] = ACTIONS(4294), - [anon_sym_LPAREN2] = ACTIONS(4296), - [anon_sym_BANG] = ACTIONS(4296), - [anon_sym_TILDE] = ACTIONS(4296), - [anon_sym_DASH] = ACTIONS(4294), - [anon_sym_PLUS] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_AMP] = ACTIONS(4294), - [anon_sym_SEMI] = ACTIONS(4296), - [anon_sym___extension__] = ACTIONS(4294), - [anon_sym_typedef] = ACTIONS(4294), - [anon_sym_virtual] = ACTIONS(4294), - [anon_sym_extern] = ACTIONS(4294), - [anon_sym___attribute__] = ACTIONS(4294), - [anon_sym___attribute] = ACTIONS(4294), - [anon_sym_using] = ACTIONS(4294), - [anon_sym_COLON_COLON] = ACTIONS(4296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4296), - [anon_sym___declspec] = ACTIONS(4294), - [anon_sym___based] = ACTIONS(4294), - [anon_sym___cdecl] = ACTIONS(4294), - [anon_sym___clrcall] = ACTIONS(4294), - [anon_sym___stdcall] = ACTIONS(4294), - [anon_sym___fastcall] = ACTIONS(4294), - [anon_sym___thiscall] = ACTIONS(4294), - [anon_sym___vectorcall] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [anon_sym_signed] = ACTIONS(4294), - [anon_sym_unsigned] = ACTIONS(4294), - [anon_sym_long] = ACTIONS(4294), - [anon_sym_short] = ACTIONS(4294), - [anon_sym_LBRACK] = ACTIONS(4294), - [anon_sym_static] = ACTIONS(4294), - [anon_sym_register] = ACTIONS(4294), - [anon_sym_inline] = ACTIONS(4294), - [anon_sym___inline] = ACTIONS(4294), - [anon_sym___inline__] = ACTIONS(4294), - [anon_sym___forceinline] = ACTIONS(4294), - [anon_sym_thread_local] = ACTIONS(4294), - [anon_sym___thread] = ACTIONS(4294), - [anon_sym_const] = ACTIONS(4294), - [anon_sym_constexpr] = ACTIONS(4294), - [anon_sym_volatile] = ACTIONS(4294), - [anon_sym_restrict] = ACTIONS(4294), - [anon_sym___restrict__] = ACTIONS(4294), - [anon_sym__Atomic] = ACTIONS(4294), - [anon_sym__Noreturn] = ACTIONS(4294), - [anon_sym_noreturn] = ACTIONS(4294), - [anon_sym__Nonnull] = ACTIONS(4294), - [anon_sym_mutable] = ACTIONS(4294), - [anon_sym_constinit] = ACTIONS(4294), - [anon_sym_consteval] = ACTIONS(4294), - [anon_sym_alignas] = ACTIONS(4294), - [anon_sym__Alignas] = ACTIONS(4294), - [sym_primitive_type] = ACTIONS(4294), - [anon_sym_enum] = ACTIONS(4294), - [anon_sym_class] = ACTIONS(4294), - [anon_sym_struct] = ACTIONS(4294), - [anon_sym_union] = ACTIONS(4294), - [anon_sym_if] = ACTIONS(4294), - [anon_sym_switch] = ACTIONS(4294), - [anon_sym_case] = ACTIONS(4294), - [anon_sym_default] = ACTIONS(4294), - [anon_sym_while] = ACTIONS(4294), - [anon_sym_do] = ACTIONS(4294), - [anon_sym_for] = ACTIONS(4294), - [anon_sym_return] = ACTIONS(4294), - [anon_sym_break] = ACTIONS(4294), - [anon_sym_continue] = ACTIONS(4294), - [anon_sym_goto] = ACTIONS(4294), - [anon_sym___try] = ACTIONS(4294), - [anon_sym___leave] = ACTIONS(4294), - [anon_sym_not] = ACTIONS(4294), - [anon_sym_compl] = ACTIONS(4294), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_sizeof] = ACTIONS(4294), - [anon_sym___alignof__] = ACTIONS(4294), - [anon_sym___alignof] = ACTIONS(4294), - [anon_sym__alignof] = ACTIONS(4294), - [anon_sym_alignof] = ACTIONS(4294), - [anon_sym__Alignof] = ACTIONS(4294), - [anon_sym_offsetof] = ACTIONS(4294), - [anon_sym__Generic] = ACTIONS(4294), - [anon_sym_typename] = ACTIONS(4294), - [anon_sym_asm] = ACTIONS(4294), - [anon_sym___asm__] = ACTIONS(4294), - [anon_sym___asm] = ACTIONS(4294), - [sym_number_literal] = ACTIONS(4296), - [anon_sym_L_SQUOTE] = ACTIONS(4296), - [anon_sym_u_SQUOTE] = ACTIONS(4296), - [anon_sym_U_SQUOTE] = ACTIONS(4296), - [anon_sym_u8_SQUOTE] = ACTIONS(4296), - [anon_sym_SQUOTE] = ACTIONS(4296), - [anon_sym_L_DQUOTE] = ACTIONS(4296), - [anon_sym_u_DQUOTE] = ACTIONS(4296), - [anon_sym_U_DQUOTE] = ACTIONS(4296), - [anon_sym_u8_DQUOTE] = ACTIONS(4296), - [anon_sym_DQUOTE] = ACTIONS(4296), - [sym_true] = ACTIONS(4294), - [sym_false] = ACTIONS(4294), - [anon_sym_NULL] = ACTIONS(4294), - [anon_sym_nullptr] = ACTIONS(4294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4294), - [anon_sym_decltype] = ACTIONS(4294), - [anon_sym_explicit] = ACTIONS(4294), - [anon_sym_export] = ACTIONS(4294), - [anon_sym_module] = ACTIONS(4294), - [anon_sym_import] = ACTIONS(4294), - [anon_sym_template] = ACTIONS(4294), - [anon_sym_operator] = ACTIONS(4294), - [anon_sym_try] = ACTIONS(4294), - [anon_sym_delete] = ACTIONS(4294), - [anon_sym_throw] = ACTIONS(4294), - [anon_sym_namespace] = ACTIONS(4294), - [anon_sym_static_assert] = ACTIONS(4294), - [anon_sym_concept] = ACTIONS(4294), - [anon_sym_co_return] = ACTIONS(4294), - [anon_sym_co_yield] = ACTIONS(4294), - [anon_sym_R_DQUOTE] = ACTIONS(4296), - [anon_sym_LR_DQUOTE] = ACTIONS(4296), - [anon_sym_uR_DQUOTE] = ACTIONS(4296), - [anon_sym_UR_DQUOTE] = ACTIONS(4296), - [anon_sym_u8R_DQUOTE] = ACTIONS(4296), - [anon_sym_co_await] = ACTIONS(4294), - [anon_sym_new] = ACTIONS(4294), - [anon_sym_requires] = ACTIONS(4294), - [anon_sym_CARET_CARET] = ACTIONS(4296), - [anon_sym_LBRACK_COLON] = ACTIONS(4296), - [sym_this] = ACTIONS(4294), - }, - [STATE(512)] = { - [sym_type_qualifier] = STATE(5144), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4033), - [sym_sized_type_specifier] = STATE(4064), - [sym_enum_specifier] = STATE(4064), - [sym_struct_specifier] = STATE(4064), - [sym_union_specifier] = STATE(4064), - [sym_expression] = STATE(6808), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_type_descriptor] = STATE(7253), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_placeholder_type_specifier] = STATE(4064), - [sym_decltype_auto] = STATE(4119), - [sym_decltype] = STATE(3967), - [sym_class_specifier] = STATE(4064), - [sym__class_name] = STATE(10587), - [sym_dependent_type] = STATE(4064), - [sym_template_type] = STATE(4622), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7971), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(4752), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(4906), - [sym__splice_specialization_specifier] = STATE(3711), - [sym_splice_type_specifier] = STATE(4644), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym__type_definition_type_repeat1] = STATE(5144), - [aux_sym_sized_type_specifier_repeat1] = STATE(3488), - [sym_identifier] = ACTIONS(4298), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4306), - [anon_sym_COLON_COLON] = ACTIONS(4308), - [anon_sym_signed] = ACTIONS(4310), - [anon_sym_unsigned] = ACTIONS(4310), - [anon_sym_long] = ACTIONS(4310), - [anon_sym_short] = ACTIONS(4310), - [anon_sym_LBRACK] = ACTIONS(1670), + [sym_type_qualifier] = STATE(5058), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(7206), + [sym_sized_type_specifier] = STATE(3139), + [sym_enum_specifier] = STATE(3139), + [sym_struct_specifier] = STATE(3139), + [sym_union_specifier] = STATE(3139), + [sym_expression] = STATE(6991), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(11320), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(3139), + [sym_decltype_auto] = STATE(3117), + [sym_decltype] = STATE(3029), + [sym_class_specifier] = STATE(3139), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(3139), + [sym_template_type] = STATE(3854), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7938), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(3998), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5122), + [sym__splice_specialization_specifier] = STATE(3030), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym__type_definition_type_repeat1] = STATE(5058), + [aux_sym_sized_type_specifier_repeat1] = STATE(2749), + [sym_identifier] = ACTIONS(3846), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3848), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_signed] = ACTIONS(2242), + [anon_sym_unsigned] = ACTIONS(2242), + [anon_sym_long] = ACTIONS(2242), + [anon_sym_short] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -133301,348 +133017,638 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(4312), - [anon_sym_enum] = ACTIONS(4314), - [anon_sym_class] = ACTIONS(4316), - [anon_sym_struct] = ACTIONS(4318), - [anon_sym_union] = ACTIONS(4320), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4332), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3891), - [anon_sym_decltype] = ACTIONS(3893), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_primitive_type] = ACTIONS(3800), + [anon_sym_enum] = ACTIONS(2246), + [anon_sym_class] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2250), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(3850), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(2278), + [anon_sym_decltype] = ACTIONS(2280), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, - [STATE(513)] = { - [sym_expression] = STATE(5773), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(4362), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(4365), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(4368), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym___declspec] = 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(1670), - [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), + [STATE(511)] = { + [sym_identifier] = ACTIONS(4367), + [aux_sym_preproc_include_token1] = ACTIONS(4367), + [aux_sym_preproc_def_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token2] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4367), + [aux_sym_preproc_else_token1] = ACTIONS(4367), + [aux_sym_preproc_elif_token1] = ACTIONS(4367), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4367), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4367), + [sym_preproc_directive] = ACTIONS(4367), + [anon_sym_LPAREN2] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_AMP_AMP] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4369), + [anon_sym___extension__] = ACTIONS(4367), + [anon_sym_typedef] = ACTIONS(4367), + [anon_sym_virtual] = ACTIONS(4367), + [anon_sym_extern] = ACTIONS(4367), + [anon_sym___attribute__] = ACTIONS(4367), + [anon_sym___attribute] = ACTIONS(4367), + [anon_sym_using] = ACTIONS(4367), + [anon_sym_COLON_COLON] = ACTIONS(4369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4369), + [anon_sym___declspec] = ACTIONS(4367), + [anon_sym___based] = ACTIONS(4367), + [anon_sym___cdecl] = ACTIONS(4367), + [anon_sym___clrcall] = ACTIONS(4367), + [anon_sym___stdcall] = ACTIONS(4367), + [anon_sym___fastcall] = ACTIONS(4367), + [anon_sym___thiscall] = ACTIONS(4367), + [anon_sym___vectorcall] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4369), + [anon_sym_signed] = ACTIONS(4367), + [anon_sym_unsigned] = ACTIONS(4367), + [anon_sym_long] = ACTIONS(4367), + [anon_sym_short] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4367), + [anon_sym_static] = ACTIONS(4367), + [anon_sym_register] = ACTIONS(4367), + [anon_sym_inline] = ACTIONS(4367), + [anon_sym___inline] = ACTIONS(4367), + [anon_sym___inline__] = ACTIONS(4367), + [anon_sym___forceinline] = ACTIONS(4367), + [anon_sym_thread_local] = ACTIONS(4367), + [anon_sym___thread] = ACTIONS(4367), + [anon_sym_const] = ACTIONS(4367), + [anon_sym_constexpr] = ACTIONS(4367), + [anon_sym_volatile] = ACTIONS(4367), + [anon_sym_restrict] = ACTIONS(4367), + [anon_sym___restrict__] = ACTIONS(4367), + [anon_sym__Atomic] = ACTIONS(4367), + [anon_sym__Noreturn] = ACTIONS(4367), + [anon_sym_noreturn] = ACTIONS(4367), + [anon_sym__Nonnull] = ACTIONS(4367), + [anon_sym_mutable] = ACTIONS(4367), + [anon_sym_constinit] = ACTIONS(4367), + [anon_sym_consteval] = ACTIONS(4367), + [anon_sym_alignas] = ACTIONS(4367), + [anon_sym__Alignas] = ACTIONS(4367), + [sym_primitive_type] = ACTIONS(4367), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_class] = ACTIONS(4367), + [anon_sym_struct] = ACTIONS(4367), + [anon_sym_union] = ACTIONS(4367), + [anon_sym_if] = ACTIONS(4367), + [anon_sym_switch] = ACTIONS(4367), + [anon_sym_case] = ACTIONS(4367), + [anon_sym_default] = ACTIONS(4367), + [anon_sym_while] = ACTIONS(4367), + [anon_sym_do] = ACTIONS(4367), + [anon_sym_for] = ACTIONS(4367), + [anon_sym_return] = ACTIONS(4367), + [anon_sym_break] = ACTIONS(4367), + [anon_sym_continue] = ACTIONS(4367), + [anon_sym_goto] = ACTIONS(4367), + [anon_sym___try] = ACTIONS(4367), + [anon_sym___leave] = ACTIONS(4367), + [anon_sym_not] = ACTIONS(4367), + [anon_sym_compl] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_PLUS_PLUS] = ACTIONS(4369), + [anon_sym_sizeof] = ACTIONS(4367), + [anon_sym___alignof__] = ACTIONS(4367), + [anon_sym___alignof] = ACTIONS(4367), + [anon_sym__alignof] = ACTIONS(4367), + [anon_sym_alignof] = ACTIONS(4367), + [anon_sym__Alignof] = ACTIONS(4367), + [anon_sym_offsetof] = ACTIONS(4367), + [anon_sym__Generic] = ACTIONS(4367), + [anon_sym_typename] = ACTIONS(4367), + [anon_sym_asm] = ACTIONS(4367), + [anon_sym___asm__] = ACTIONS(4367), + [anon_sym___asm] = ACTIONS(4367), + [sym_number_literal] = ACTIONS(4369), + [anon_sym_L_SQUOTE] = ACTIONS(4369), + [anon_sym_u_SQUOTE] = ACTIONS(4369), + [anon_sym_U_SQUOTE] = ACTIONS(4369), + [anon_sym_u8_SQUOTE] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4369), + [anon_sym_L_DQUOTE] = ACTIONS(4369), + [anon_sym_u_DQUOTE] = ACTIONS(4369), + [anon_sym_U_DQUOTE] = ACTIONS(4369), + [anon_sym_u8_DQUOTE] = ACTIONS(4369), + [anon_sym_DQUOTE] = ACTIONS(4369), + [sym_true] = ACTIONS(4367), + [sym_false] = ACTIONS(4367), + [anon_sym_NULL] = ACTIONS(4367), + [anon_sym_nullptr] = ACTIONS(4367), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4367), + [anon_sym_decltype] = ACTIONS(4367), + [anon_sym_explicit] = ACTIONS(4367), + [anon_sym_export] = ACTIONS(4367), + [anon_sym_module] = ACTIONS(4367), + [anon_sym_import] = ACTIONS(4367), + [anon_sym_template] = ACTIONS(4367), + [anon_sym_operator] = ACTIONS(4367), + [anon_sym_try] = ACTIONS(4367), + [anon_sym_delete] = ACTIONS(4367), + [anon_sym_throw] = ACTIONS(4367), + [anon_sym_namespace] = ACTIONS(4367), + [anon_sym_static_assert] = ACTIONS(4367), + [anon_sym_concept] = ACTIONS(4367), + [anon_sym_co_return] = ACTIONS(4367), + [anon_sym_co_yield] = ACTIONS(4367), + [anon_sym_R_DQUOTE] = ACTIONS(4369), + [anon_sym_LR_DQUOTE] = ACTIONS(4369), + [anon_sym_uR_DQUOTE] = ACTIONS(4369), + [anon_sym_UR_DQUOTE] = ACTIONS(4369), + [anon_sym_u8R_DQUOTE] = ACTIONS(4369), + [anon_sym_co_await] = ACTIONS(4367), + [anon_sym_new] = ACTIONS(4367), + [anon_sym_requires] = ACTIONS(4367), + [anon_sym_CARET_CARET] = ACTIONS(4369), + [anon_sym_LBRACK_COLON] = ACTIONS(4369), + [sym_this] = ACTIONS(4367), + }, + [STATE(512)] = { + [sym_identifier] = ACTIONS(4371), + [aux_sym_preproc_include_token1] = ACTIONS(4371), + [aux_sym_preproc_def_token1] = ACTIONS(4371), + [aux_sym_preproc_if_token1] = ACTIONS(4371), + [aux_sym_preproc_if_token2] = ACTIONS(4371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4371), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4371), + [aux_sym_preproc_else_token1] = ACTIONS(4371), + [aux_sym_preproc_elif_token1] = ACTIONS(4371), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4371), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4371), + [sym_preproc_directive] = ACTIONS(4371), + [anon_sym_LPAREN2] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4373), + [anon_sym_AMP_AMP] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4371), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym___extension__] = ACTIONS(4371), + [anon_sym_typedef] = ACTIONS(4371), + [anon_sym_virtual] = ACTIONS(4371), + [anon_sym_extern] = ACTIONS(4371), + [anon_sym___attribute__] = ACTIONS(4371), + [anon_sym___attribute] = ACTIONS(4371), + [anon_sym_using] = ACTIONS(4371), + [anon_sym_COLON_COLON] = ACTIONS(4373), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4373), + [anon_sym___declspec] = ACTIONS(4371), + [anon_sym___based] = ACTIONS(4371), + [anon_sym___cdecl] = ACTIONS(4371), + [anon_sym___clrcall] = ACTIONS(4371), + [anon_sym___stdcall] = ACTIONS(4371), + [anon_sym___fastcall] = ACTIONS(4371), + [anon_sym___thiscall] = ACTIONS(4371), + [anon_sym___vectorcall] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_signed] = ACTIONS(4371), + [anon_sym_unsigned] = ACTIONS(4371), + [anon_sym_long] = ACTIONS(4371), + [anon_sym_short] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_static] = ACTIONS(4371), + [anon_sym_register] = ACTIONS(4371), + [anon_sym_inline] = ACTIONS(4371), + [anon_sym___inline] = ACTIONS(4371), + [anon_sym___inline__] = ACTIONS(4371), + [anon_sym___forceinline] = ACTIONS(4371), + [anon_sym_thread_local] = ACTIONS(4371), + [anon_sym___thread] = ACTIONS(4371), + [anon_sym_const] = ACTIONS(4371), + [anon_sym_constexpr] = ACTIONS(4371), + [anon_sym_volatile] = ACTIONS(4371), + [anon_sym_restrict] = ACTIONS(4371), + [anon_sym___restrict__] = ACTIONS(4371), + [anon_sym__Atomic] = ACTIONS(4371), + [anon_sym__Noreturn] = ACTIONS(4371), + [anon_sym_noreturn] = ACTIONS(4371), + [anon_sym__Nonnull] = ACTIONS(4371), + [anon_sym_mutable] = ACTIONS(4371), + [anon_sym_constinit] = ACTIONS(4371), + [anon_sym_consteval] = ACTIONS(4371), + [anon_sym_alignas] = ACTIONS(4371), + [anon_sym__Alignas] = ACTIONS(4371), [sym_primitive_type] = ACTIONS(4371), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(4374), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(4377), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(4380), - [sym_this] = ACTIONS(2364), + [anon_sym_enum] = ACTIONS(4371), + [anon_sym_class] = ACTIONS(4371), + [anon_sym_struct] = ACTIONS(4371), + [anon_sym_union] = ACTIONS(4371), + [anon_sym_if] = ACTIONS(4371), + [anon_sym_switch] = ACTIONS(4371), + [anon_sym_case] = ACTIONS(4371), + [anon_sym_default] = ACTIONS(4371), + [anon_sym_while] = ACTIONS(4371), + [anon_sym_do] = ACTIONS(4371), + [anon_sym_for] = ACTIONS(4371), + [anon_sym_return] = ACTIONS(4371), + [anon_sym_break] = ACTIONS(4371), + [anon_sym_continue] = ACTIONS(4371), + [anon_sym_goto] = ACTIONS(4371), + [anon_sym___try] = ACTIONS(4371), + [anon_sym___leave] = ACTIONS(4371), + [anon_sym_not] = ACTIONS(4371), + [anon_sym_compl] = ACTIONS(4371), + [anon_sym_DASH_DASH] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4373), + [anon_sym_sizeof] = ACTIONS(4371), + [anon_sym___alignof__] = ACTIONS(4371), + [anon_sym___alignof] = ACTIONS(4371), + [anon_sym__alignof] = ACTIONS(4371), + [anon_sym_alignof] = ACTIONS(4371), + [anon_sym__Alignof] = ACTIONS(4371), + [anon_sym_offsetof] = ACTIONS(4371), + [anon_sym__Generic] = ACTIONS(4371), + [anon_sym_typename] = ACTIONS(4371), + [anon_sym_asm] = ACTIONS(4371), + [anon_sym___asm__] = ACTIONS(4371), + [anon_sym___asm] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4373), + [anon_sym_L_SQUOTE] = ACTIONS(4373), + [anon_sym_u_SQUOTE] = ACTIONS(4373), + [anon_sym_U_SQUOTE] = ACTIONS(4373), + [anon_sym_u8_SQUOTE] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_L_DQUOTE] = ACTIONS(4373), + [anon_sym_u_DQUOTE] = ACTIONS(4373), + [anon_sym_U_DQUOTE] = ACTIONS(4373), + [anon_sym_u8_DQUOTE] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [sym_true] = ACTIONS(4371), + [sym_false] = ACTIONS(4371), + [anon_sym_NULL] = ACTIONS(4371), + [anon_sym_nullptr] = ACTIONS(4371), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4371), + [anon_sym_decltype] = ACTIONS(4371), + [anon_sym_explicit] = ACTIONS(4371), + [anon_sym_export] = ACTIONS(4371), + [anon_sym_module] = ACTIONS(4371), + [anon_sym_import] = ACTIONS(4371), + [anon_sym_template] = ACTIONS(4371), + [anon_sym_operator] = ACTIONS(4371), + [anon_sym_try] = ACTIONS(4371), + [anon_sym_delete] = ACTIONS(4371), + [anon_sym_throw] = ACTIONS(4371), + [anon_sym_namespace] = ACTIONS(4371), + [anon_sym_static_assert] = ACTIONS(4371), + [anon_sym_concept] = ACTIONS(4371), + [anon_sym_co_return] = ACTIONS(4371), + [anon_sym_co_yield] = ACTIONS(4371), + [anon_sym_R_DQUOTE] = ACTIONS(4373), + [anon_sym_LR_DQUOTE] = ACTIONS(4373), + [anon_sym_uR_DQUOTE] = ACTIONS(4373), + [anon_sym_UR_DQUOTE] = ACTIONS(4373), + [anon_sym_u8R_DQUOTE] = ACTIONS(4373), + [anon_sym_co_await] = ACTIONS(4371), + [anon_sym_new] = ACTIONS(4371), + [anon_sym_requires] = ACTIONS(4371), + [anon_sym_CARET_CARET] = ACTIONS(4373), + [anon_sym_LBRACK_COLON] = ACTIONS(4373), + [sym_this] = ACTIONS(4371), + }, + [STATE(513)] = { + [sym_identifier] = ACTIONS(4375), + [aux_sym_preproc_include_token1] = ACTIONS(4375), + [aux_sym_preproc_def_token1] = ACTIONS(4375), + [aux_sym_preproc_if_token1] = ACTIONS(4375), + [aux_sym_preproc_if_token2] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4375), + [aux_sym_preproc_else_token1] = ACTIONS(4375), + [aux_sym_preproc_elif_token1] = ACTIONS(4375), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4375), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4375), + [sym_preproc_directive] = ACTIONS(4375), + [anon_sym_LPAREN2] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4377), + [anon_sym_TILDE] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym___extension__] = ACTIONS(4375), + [anon_sym_typedef] = ACTIONS(4375), + [anon_sym_virtual] = ACTIONS(4375), + [anon_sym_extern] = ACTIONS(4375), + [anon_sym___attribute__] = ACTIONS(4375), + [anon_sym___attribute] = ACTIONS(4375), + [anon_sym_using] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4377), + [anon_sym___declspec] = ACTIONS(4375), + [anon_sym___based] = ACTIONS(4375), + [anon_sym___cdecl] = ACTIONS(4375), + [anon_sym___clrcall] = ACTIONS(4375), + [anon_sym___stdcall] = ACTIONS(4375), + [anon_sym___fastcall] = ACTIONS(4375), + [anon_sym___thiscall] = ACTIONS(4375), + [anon_sym___vectorcall] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_signed] = ACTIONS(4375), + [anon_sym_unsigned] = ACTIONS(4375), + [anon_sym_long] = ACTIONS(4375), + [anon_sym_short] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_static] = ACTIONS(4375), + [anon_sym_register] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym___inline] = ACTIONS(4375), + [anon_sym___inline__] = ACTIONS(4375), + [anon_sym___forceinline] = ACTIONS(4375), + [anon_sym_thread_local] = ACTIONS(4375), + [anon_sym___thread] = ACTIONS(4375), + [anon_sym_const] = ACTIONS(4375), + [anon_sym_constexpr] = ACTIONS(4375), + [anon_sym_volatile] = ACTIONS(4375), + [anon_sym_restrict] = ACTIONS(4375), + [anon_sym___restrict__] = ACTIONS(4375), + [anon_sym__Atomic] = ACTIONS(4375), + [anon_sym__Noreturn] = ACTIONS(4375), + [anon_sym_noreturn] = ACTIONS(4375), + [anon_sym__Nonnull] = ACTIONS(4375), + [anon_sym_mutable] = ACTIONS(4375), + [anon_sym_constinit] = ACTIONS(4375), + [anon_sym_consteval] = ACTIONS(4375), + [anon_sym_alignas] = ACTIONS(4375), + [anon_sym__Alignas] = ACTIONS(4375), + [sym_primitive_type] = ACTIONS(4375), + [anon_sym_enum] = ACTIONS(4375), + [anon_sym_class] = ACTIONS(4375), + [anon_sym_struct] = ACTIONS(4375), + [anon_sym_union] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_switch] = ACTIONS(4375), + [anon_sym_case] = ACTIONS(4375), + [anon_sym_default] = ACTIONS(4375), + [anon_sym_while] = ACTIONS(4375), + [anon_sym_do] = ACTIONS(4375), + [anon_sym_for] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_goto] = ACTIONS(4375), + [anon_sym___try] = ACTIONS(4375), + [anon_sym___leave] = ACTIONS(4375), + [anon_sym_not] = ACTIONS(4375), + [anon_sym_compl] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_sizeof] = ACTIONS(4375), + [anon_sym___alignof__] = ACTIONS(4375), + [anon_sym___alignof] = ACTIONS(4375), + [anon_sym__alignof] = ACTIONS(4375), + [anon_sym_alignof] = ACTIONS(4375), + [anon_sym__Alignof] = ACTIONS(4375), + [anon_sym_offsetof] = ACTIONS(4375), + [anon_sym__Generic] = ACTIONS(4375), + [anon_sym_typename] = ACTIONS(4375), + [anon_sym_asm] = ACTIONS(4375), + [anon_sym___asm__] = ACTIONS(4375), + [anon_sym___asm] = ACTIONS(4375), + [sym_number_literal] = ACTIONS(4377), + [anon_sym_L_SQUOTE] = ACTIONS(4377), + [anon_sym_u_SQUOTE] = ACTIONS(4377), + [anon_sym_U_SQUOTE] = ACTIONS(4377), + [anon_sym_u8_SQUOTE] = ACTIONS(4377), + [anon_sym_SQUOTE] = ACTIONS(4377), + [anon_sym_L_DQUOTE] = ACTIONS(4377), + [anon_sym_u_DQUOTE] = ACTIONS(4377), + [anon_sym_U_DQUOTE] = ACTIONS(4377), + [anon_sym_u8_DQUOTE] = ACTIONS(4377), + [anon_sym_DQUOTE] = ACTIONS(4377), + [sym_true] = ACTIONS(4375), + [sym_false] = ACTIONS(4375), + [anon_sym_NULL] = ACTIONS(4375), + [anon_sym_nullptr] = ACTIONS(4375), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4375), + [anon_sym_decltype] = ACTIONS(4375), + [anon_sym_explicit] = ACTIONS(4375), + [anon_sym_export] = ACTIONS(4375), + [anon_sym_module] = ACTIONS(4375), + [anon_sym_import] = ACTIONS(4375), + [anon_sym_template] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_delete] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_namespace] = ACTIONS(4375), + [anon_sym_static_assert] = ACTIONS(4375), + [anon_sym_concept] = ACTIONS(4375), + [anon_sym_co_return] = ACTIONS(4375), + [anon_sym_co_yield] = ACTIONS(4375), + [anon_sym_R_DQUOTE] = ACTIONS(4377), + [anon_sym_LR_DQUOTE] = ACTIONS(4377), + [anon_sym_uR_DQUOTE] = ACTIONS(4377), + [anon_sym_UR_DQUOTE] = ACTIONS(4377), + [anon_sym_u8R_DQUOTE] = ACTIONS(4377), + [anon_sym_co_await] = ACTIONS(4375), + [anon_sym_new] = ACTIONS(4375), + [anon_sym_requires] = ACTIONS(4375), + [anon_sym_CARET_CARET] = ACTIONS(4377), + [anon_sym_LBRACK_COLON] = ACTIONS(4377), + [sym_this] = ACTIONS(4375), }, [STATE(514)] = { - [sym_identifier] = ACTIONS(4383), - [aux_sym_preproc_include_token1] = ACTIONS(4383), - [aux_sym_preproc_def_token1] = ACTIONS(4383), - [aux_sym_preproc_if_token1] = ACTIONS(4383), - [aux_sym_preproc_if_token2] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), - [aux_sym_preproc_else_token1] = ACTIONS(4383), - [aux_sym_preproc_elif_token1] = ACTIONS(4383), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4383), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4383), - [sym_preproc_directive] = ACTIONS(4383), - [anon_sym_LPAREN2] = ACTIONS(4385), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_TILDE] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_AMP_AMP] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(4385), - [anon_sym___extension__] = ACTIONS(4383), - [anon_sym_typedef] = ACTIONS(4383), - [anon_sym_virtual] = ACTIONS(4383), - [anon_sym_extern] = ACTIONS(4383), - [anon_sym___attribute__] = ACTIONS(4383), - [anon_sym___attribute] = ACTIONS(4383), - [anon_sym_using] = ACTIONS(4383), - [anon_sym_COLON_COLON] = ACTIONS(4385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4385), - [anon_sym___declspec] = ACTIONS(4383), - [anon_sym___based] = ACTIONS(4383), - [anon_sym___cdecl] = ACTIONS(4383), - [anon_sym___clrcall] = ACTIONS(4383), - [anon_sym___stdcall] = ACTIONS(4383), - [anon_sym___fastcall] = ACTIONS(4383), - [anon_sym___thiscall] = ACTIONS(4383), - [anon_sym___vectorcall] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4385), - [anon_sym_signed] = ACTIONS(4383), - [anon_sym_unsigned] = ACTIONS(4383), - [anon_sym_long] = ACTIONS(4383), - [anon_sym_short] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_static] = ACTIONS(4383), - [anon_sym_register] = ACTIONS(4383), - [anon_sym_inline] = ACTIONS(4383), - [anon_sym___inline] = ACTIONS(4383), - [anon_sym___inline__] = ACTIONS(4383), - [anon_sym___forceinline] = ACTIONS(4383), - [anon_sym_thread_local] = ACTIONS(4383), - [anon_sym___thread] = ACTIONS(4383), - [anon_sym_const] = ACTIONS(4383), - [anon_sym_constexpr] = ACTIONS(4383), - [anon_sym_volatile] = ACTIONS(4383), - [anon_sym_restrict] = ACTIONS(4383), - [anon_sym___restrict__] = ACTIONS(4383), - [anon_sym__Atomic] = ACTIONS(4383), - [anon_sym__Noreturn] = ACTIONS(4383), - [anon_sym_noreturn] = ACTIONS(4383), - [anon_sym__Nonnull] = ACTIONS(4383), - [anon_sym_mutable] = ACTIONS(4383), - [anon_sym_constinit] = ACTIONS(4383), - [anon_sym_consteval] = ACTIONS(4383), - [anon_sym_alignas] = ACTIONS(4383), - [anon_sym__Alignas] = ACTIONS(4383), - [sym_primitive_type] = ACTIONS(4383), - [anon_sym_enum] = ACTIONS(4383), - [anon_sym_class] = ACTIONS(4383), - [anon_sym_struct] = ACTIONS(4383), - [anon_sym_union] = ACTIONS(4383), - [anon_sym_if] = ACTIONS(4383), - [anon_sym_switch] = ACTIONS(4383), - [anon_sym_case] = ACTIONS(4383), - [anon_sym_default] = ACTIONS(4383), - [anon_sym_while] = ACTIONS(4383), - [anon_sym_do] = ACTIONS(4383), - [anon_sym_for] = ACTIONS(4383), - [anon_sym_return] = ACTIONS(4383), - [anon_sym_break] = ACTIONS(4383), - [anon_sym_continue] = ACTIONS(4383), - [anon_sym_goto] = ACTIONS(4383), - [anon_sym___try] = ACTIONS(4383), - [anon_sym___leave] = ACTIONS(4383), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_compl] = ACTIONS(4383), + [sym_type_qualifier] = STATE(5074), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(2266), + [sym_sized_type_specifier] = STATE(2173), + [sym_enum_specifier] = STATE(2173), + [sym_struct_specifier] = STATE(2173), + [sym_union_specifier] = STATE(2173), + [sym_expression] = STATE(5478), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_type_descriptor] = STATE(3937), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_placeholder_type_specifier] = STATE(2173), + [sym_decltype_auto] = STATE(2172), + [sym_decltype] = STATE(2148), + [sym_class_specifier] = STATE(2173), + [sym__class_name] = STATE(10219), + [sym_dependent_type] = STATE(2173), + [sym_template_type] = STATE(2144), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7979), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(2226), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(2280), + [sym__splice_specialization_specifier] = STATE(2149), + [sym_splice_type_specifier] = STATE(2171), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [aux_sym__type_definition_type_repeat1] = STATE(5074), + [aux_sym_sized_type_specifier_repeat1] = STATE(2070), + [sym_identifier] = ACTIONS(4211), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4381), + [anon_sym_COLON_COLON] = ACTIONS(4383), + [anon_sym_signed] = ACTIONS(4163), + [anon_sym_unsigned] = ACTIONS(4163), + [anon_sym_long] = ACTIONS(4163), + [anon_sym_short] = ACTIONS(4163), + [anon_sym_LBRACK] = ACTIONS(1668), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(4165), + [anon_sym_enum] = ACTIONS(4167), + [anon_sym_class] = ACTIONS(4169), + [anon_sym_struct] = ACTIONS(4171), + [anon_sym_union] = ACTIONS(4173), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), [anon_sym_DASH_DASH] = ACTIONS(4385), [anon_sym_PLUS_PLUS] = ACTIONS(4385), - [anon_sym_sizeof] = ACTIONS(4383), - [anon_sym___alignof__] = ACTIONS(4383), - [anon_sym___alignof] = ACTIONS(4383), - [anon_sym__alignof] = ACTIONS(4383), - [anon_sym_alignof] = ACTIONS(4383), - [anon_sym__Alignof] = ACTIONS(4383), - [anon_sym_offsetof] = ACTIONS(4383), - [anon_sym__Generic] = ACTIONS(4383), - [anon_sym_typename] = ACTIONS(4383), - [anon_sym_asm] = ACTIONS(4383), - [anon_sym___asm__] = ACTIONS(4383), - [anon_sym___asm] = ACTIONS(4383), - [sym_number_literal] = ACTIONS(4385), - [anon_sym_L_SQUOTE] = ACTIONS(4385), - [anon_sym_u_SQUOTE] = ACTIONS(4385), - [anon_sym_U_SQUOTE] = ACTIONS(4385), - [anon_sym_u8_SQUOTE] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4385), - [anon_sym_L_DQUOTE] = ACTIONS(4385), - [anon_sym_u_DQUOTE] = ACTIONS(4385), - [anon_sym_U_DQUOTE] = ACTIONS(4385), - [anon_sym_u8_DQUOTE] = ACTIONS(4385), - [anon_sym_DQUOTE] = ACTIONS(4385), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [anon_sym_NULL] = ACTIONS(4383), - [anon_sym_nullptr] = ACTIONS(4383), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4383), - [anon_sym_decltype] = ACTIONS(4383), - [anon_sym_explicit] = ACTIONS(4383), - [anon_sym_export] = ACTIONS(4383), - [anon_sym_module] = ACTIONS(4383), - [anon_sym_import] = ACTIONS(4383), - [anon_sym_template] = ACTIONS(4383), - [anon_sym_operator] = ACTIONS(4383), - [anon_sym_try] = ACTIONS(4383), - [anon_sym_delete] = ACTIONS(4383), - [anon_sym_throw] = ACTIONS(4383), - [anon_sym_namespace] = ACTIONS(4383), - [anon_sym_static_assert] = ACTIONS(4383), - [anon_sym_concept] = ACTIONS(4383), - [anon_sym_co_return] = ACTIONS(4383), - [anon_sym_co_yield] = ACTIONS(4383), - [anon_sym_R_DQUOTE] = ACTIONS(4385), - [anon_sym_LR_DQUOTE] = ACTIONS(4385), - [anon_sym_uR_DQUOTE] = ACTIONS(4385), - [anon_sym_UR_DQUOTE] = ACTIONS(4385), - [anon_sym_u8R_DQUOTE] = ACTIONS(4385), - [anon_sym_co_await] = ACTIONS(4383), - [anon_sym_new] = ACTIONS(4383), - [anon_sym_requires] = ACTIONS(4383), - [anon_sym_CARET_CARET] = ACTIONS(4385), - [anon_sym_LBRACK_COLON] = ACTIONS(4385), - [sym_this] = ACTIONS(4383), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(4177), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4179), + [anon_sym_decltype] = ACTIONS(4181), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(515)] = { [sym_identifier] = ACTIONS(4387), @@ -133790,373 +133796,373 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(4387), }, [STATE(516)] = { - [sym_type_qualifier] = STATE(5118), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(3973), - [sym_sized_type_specifier] = STATE(4430), - [sym_enum_specifier] = STATE(4430), - [sym_struct_specifier] = STATE(4430), - [sym_union_specifier] = STATE(4430), - [sym_expression] = STATE(6732), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_type_descriptor] = STATE(7259), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_placeholder_type_specifier] = STATE(4430), - [sym_decltype_auto] = STATE(4426), - [sym_decltype] = STATE(4373), - [sym_class_specifier] = STATE(4430), - [sym__class_name] = STATE(10514), - [sym_dependent_type] = STATE(4430), - [sym_template_type] = STATE(4627), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7931), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(4714), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(4867), - [sym__splice_specialization_specifier] = STATE(4305), - [sym_splice_type_specifier] = STATE(4673), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [aux_sym__type_definition_type_repeat1] = STATE(5118), - [aux_sym_sized_type_specifier_repeat1] = STATE(3490), - [sym_identifier] = ACTIONS(4391), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(3196), - [anon_sym_COLON_COLON] = ACTIONS(4393), - [anon_sym_signed] = ACTIONS(4395), - [anon_sym_unsigned] = ACTIONS(4395), - [anon_sym_long] = ACTIONS(4395), - [anon_sym_short] = ACTIONS(4395), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(4397), - [anon_sym_class] = ACTIONS(4399), - [anon_sym_struct] = ACTIONS(4401), - [anon_sym_union] = ACTIONS(4403), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4405), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3236), - [anon_sym_decltype] = ACTIONS(3238), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3730), + [aux_sym_preproc_include_token1] = ACTIONS(3730), + [aux_sym_preproc_def_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token2] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3730), + [aux_sym_preproc_else_token1] = ACTIONS(3730), + [aux_sym_preproc_elif_token1] = ACTIONS(3730), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3730), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3730), + [sym_preproc_directive] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_BANG] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym___extension__] = ACTIONS(3730), + [anon_sym_typedef] = ACTIONS(3730), + [anon_sym_virtual] = ACTIONS(3730), + [anon_sym_extern] = ACTIONS(3730), + [anon_sym___attribute__] = ACTIONS(3730), + [anon_sym___attribute] = ACTIONS(3730), + [anon_sym_using] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3732), + [anon_sym___declspec] = ACTIONS(3730), + [anon_sym___based] = ACTIONS(3730), + [anon_sym___cdecl] = ACTIONS(3730), + [anon_sym___clrcall] = ACTIONS(3730), + [anon_sym___stdcall] = ACTIONS(3730), + [anon_sym___fastcall] = ACTIONS(3730), + [anon_sym___thiscall] = ACTIONS(3730), + [anon_sym___vectorcall] = ACTIONS(3730), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_signed] = ACTIONS(3730), + [anon_sym_unsigned] = ACTIONS(3730), + [anon_sym_long] = ACTIONS(3730), + [anon_sym_short] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_static] = ACTIONS(3730), + [anon_sym_register] = ACTIONS(3730), + [anon_sym_inline] = ACTIONS(3730), + [anon_sym___inline] = ACTIONS(3730), + [anon_sym___inline__] = ACTIONS(3730), + [anon_sym___forceinline] = ACTIONS(3730), + [anon_sym_thread_local] = ACTIONS(3730), + [anon_sym___thread] = ACTIONS(3730), + [anon_sym_const] = ACTIONS(3730), + [anon_sym_constexpr] = ACTIONS(3730), + [anon_sym_volatile] = ACTIONS(3730), + [anon_sym_restrict] = ACTIONS(3730), + [anon_sym___restrict__] = ACTIONS(3730), + [anon_sym__Atomic] = ACTIONS(3730), + [anon_sym__Noreturn] = ACTIONS(3730), + [anon_sym_noreturn] = ACTIONS(3730), + [anon_sym__Nonnull] = ACTIONS(3730), + [anon_sym_mutable] = ACTIONS(3730), + [anon_sym_constinit] = ACTIONS(3730), + [anon_sym_consteval] = ACTIONS(3730), + [anon_sym_alignas] = ACTIONS(3730), + [anon_sym__Alignas] = ACTIONS(3730), + [sym_primitive_type] = ACTIONS(3730), + [anon_sym_enum] = ACTIONS(3730), + [anon_sym_class] = ACTIONS(3730), + [anon_sym_struct] = ACTIONS(3730), + [anon_sym_union] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_switch] = ACTIONS(3730), + [anon_sym_case] = ACTIONS(3730), + [anon_sym_default] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_break] = ACTIONS(3730), + [anon_sym_continue] = ACTIONS(3730), + [anon_sym_goto] = ACTIONS(3730), + [anon_sym___try] = ACTIONS(3730), + [anon_sym___leave] = ACTIONS(3730), + [anon_sym_not] = ACTIONS(3730), + [anon_sym_compl] = ACTIONS(3730), + [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_PLUS_PLUS] = ACTIONS(3732), + [anon_sym_sizeof] = ACTIONS(3730), + [anon_sym___alignof__] = ACTIONS(3730), + [anon_sym___alignof] = ACTIONS(3730), + [anon_sym__alignof] = ACTIONS(3730), + [anon_sym_alignof] = ACTIONS(3730), + [anon_sym__Alignof] = ACTIONS(3730), + [anon_sym_offsetof] = ACTIONS(3730), + [anon_sym__Generic] = ACTIONS(3730), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_asm] = ACTIONS(3730), + [anon_sym___asm__] = ACTIONS(3730), + [anon_sym___asm] = ACTIONS(3730), + [sym_number_literal] = ACTIONS(3732), + [anon_sym_L_SQUOTE] = ACTIONS(3732), + [anon_sym_u_SQUOTE] = ACTIONS(3732), + [anon_sym_U_SQUOTE] = ACTIONS(3732), + [anon_sym_u8_SQUOTE] = ACTIONS(3732), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_L_DQUOTE] = ACTIONS(3732), + [anon_sym_u_DQUOTE] = ACTIONS(3732), + [anon_sym_U_DQUOTE] = ACTIONS(3732), + [anon_sym_u8_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(3732), + [sym_true] = ACTIONS(3730), + [sym_false] = ACTIONS(3730), + [anon_sym_NULL] = ACTIONS(3730), + [anon_sym_nullptr] = ACTIONS(3730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3730), + [anon_sym_decltype] = ACTIONS(3730), + [anon_sym_explicit] = ACTIONS(3730), + [anon_sym_export] = ACTIONS(3730), + [anon_sym_module] = ACTIONS(3730), + [anon_sym_import] = ACTIONS(3730), + [anon_sym_template] = ACTIONS(3730), + [anon_sym_operator] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_delete] = ACTIONS(3730), + [anon_sym_throw] = ACTIONS(3730), + [anon_sym_namespace] = ACTIONS(3730), + [anon_sym_static_assert] = ACTIONS(3730), + [anon_sym_concept] = ACTIONS(3730), + [anon_sym_co_return] = ACTIONS(3730), + [anon_sym_co_yield] = ACTIONS(3730), + [anon_sym_R_DQUOTE] = ACTIONS(3732), + [anon_sym_LR_DQUOTE] = ACTIONS(3732), + [anon_sym_uR_DQUOTE] = ACTIONS(3732), + [anon_sym_UR_DQUOTE] = ACTIONS(3732), + [anon_sym_u8R_DQUOTE] = ACTIONS(3732), + [anon_sym_co_await] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_requires] = ACTIONS(3730), + [anon_sym_CARET_CARET] = ACTIONS(3732), + [anon_sym_LBRACK_COLON] = ACTIONS(3732), + [sym_this] = ACTIONS(3730), }, [STATE(517)] = { - [sym_type_qualifier] = STATE(5062), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(2280), - [sym_sized_type_specifier] = STATE(2222), - [sym_enum_specifier] = STATE(2222), - [sym_struct_specifier] = STATE(2222), - [sym_union_specifier] = STATE(2222), - [sym_expression] = STATE(5479), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_type_descriptor] = STATE(3833), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_placeholder_type_specifier] = STATE(2222), - [sym_decltype_auto] = STATE(2221), - [sym_decltype] = STATE(2169), - [sym_class_specifier] = STATE(2222), - [sym__class_name] = STATE(10271), - [sym_dependent_type] = STATE(2222), - [sym_template_type] = STATE(2146), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7954), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(2207), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(2251), - [sym__splice_specialization_specifier] = STATE(2170), - [sym_splice_type_specifier] = STATE(2223), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [aux_sym__type_definition_type_repeat1] = STATE(5062), - [aux_sym_sized_type_specifier_repeat1] = STATE(2076), - [sym_identifier] = ACTIONS(3909), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4409), - [anon_sym_COLON_COLON] = ACTIONS(4411), - [anon_sym_signed] = ACTIONS(3803), - [anon_sym_unsigned] = ACTIONS(3803), - [anon_sym_long] = ACTIONS(3803), - [anon_sym_short] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3805), - [anon_sym_enum] = ACTIONS(3807), - [anon_sym_class] = ACTIONS(3809), - [anon_sym_struct] = ACTIONS(3811), - [anon_sym_union] = ACTIONS(3813), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(3817), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3819), - [anon_sym_decltype] = ACTIONS(3821), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_identifier] = ACTIONS(4391), + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [aux_sym_preproc_else_token1] = ACTIONS(4391), + [aux_sym_preproc_elif_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_TILDE] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [anon_sym___extension__] = ACTIONS(4391), + [anon_sym_typedef] = ACTIONS(4391), + [anon_sym_virtual] = ACTIONS(4391), + [anon_sym_extern] = ACTIONS(4391), + [anon_sym___attribute__] = ACTIONS(4391), + [anon_sym___attribute] = ACTIONS(4391), + [anon_sym_using] = ACTIONS(4391), + [anon_sym_COLON_COLON] = ACTIONS(4393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4393), + [anon_sym___declspec] = ACTIONS(4391), + [anon_sym___based] = ACTIONS(4391), + [anon_sym___cdecl] = ACTIONS(4391), + [anon_sym___clrcall] = ACTIONS(4391), + [anon_sym___stdcall] = ACTIONS(4391), + [anon_sym___fastcall] = ACTIONS(4391), + [anon_sym___thiscall] = ACTIONS(4391), + [anon_sym___vectorcall] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_signed] = ACTIONS(4391), + [anon_sym_unsigned] = ACTIONS(4391), + [anon_sym_long] = ACTIONS(4391), + [anon_sym_short] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_static] = ACTIONS(4391), + [anon_sym_register] = ACTIONS(4391), + [anon_sym_inline] = ACTIONS(4391), + [anon_sym___inline] = ACTIONS(4391), + [anon_sym___inline__] = ACTIONS(4391), + [anon_sym___forceinline] = ACTIONS(4391), + [anon_sym_thread_local] = ACTIONS(4391), + [anon_sym___thread] = ACTIONS(4391), + [anon_sym_const] = ACTIONS(4391), + [anon_sym_constexpr] = ACTIONS(4391), + [anon_sym_volatile] = ACTIONS(4391), + [anon_sym_restrict] = ACTIONS(4391), + [anon_sym___restrict__] = ACTIONS(4391), + [anon_sym__Atomic] = ACTIONS(4391), + [anon_sym__Noreturn] = ACTIONS(4391), + [anon_sym_noreturn] = ACTIONS(4391), + [anon_sym__Nonnull] = ACTIONS(4391), + [anon_sym_mutable] = ACTIONS(4391), + [anon_sym_constinit] = ACTIONS(4391), + [anon_sym_consteval] = ACTIONS(4391), + [anon_sym_alignas] = ACTIONS(4391), + [anon_sym__Alignas] = ACTIONS(4391), + [sym_primitive_type] = ACTIONS(4391), + [anon_sym_enum] = ACTIONS(4391), + [anon_sym_class] = ACTIONS(4391), + [anon_sym_struct] = ACTIONS(4391), + [anon_sym_union] = ACTIONS(4391), + [anon_sym_if] = ACTIONS(4391), + [anon_sym_switch] = ACTIONS(4391), + [anon_sym_case] = ACTIONS(4391), + [anon_sym_default] = ACTIONS(4391), + [anon_sym_while] = ACTIONS(4391), + [anon_sym_do] = ACTIONS(4391), + [anon_sym_for] = ACTIONS(4391), + [anon_sym_return] = ACTIONS(4391), + [anon_sym_break] = ACTIONS(4391), + [anon_sym_continue] = ACTIONS(4391), + [anon_sym_goto] = ACTIONS(4391), + [anon_sym___try] = ACTIONS(4391), + [anon_sym___leave] = ACTIONS(4391), + [anon_sym_not] = ACTIONS(4391), + [anon_sym_compl] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_PLUS_PLUS] = ACTIONS(4393), + [anon_sym_sizeof] = ACTIONS(4391), + [anon_sym___alignof__] = ACTIONS(4391), + [anon_sym___alignof] = ACTIONS(4391), + [anon_sym__alignof] = ACTIONS(4391), + [anon_sym_alignof] = ACTIONS(4391), + [anon_sym__Alignof] = ACTIONS(4391), + [anon_sym_offsetof] = ACTIONS(4391), + [anon_sym__Generic] = ACTIONS(4391), + [anon_sym_typename] = ACTIONS(4391), + [anon_sym_asm] = ACTIONS(4391), + [anon_sym___asm__] = ACTIONS(4391), + [anon_sym___asm] = ACTIONS(4391), + [sym_number_literal] = ACTIONS(4393), + [anon_sym_L_SQUOTE] = ACTIONS(4393), + [anon_sym_u_SQUOTE] = ACTIONS(4393), + [anon_sym_U_SQUOTE] = ACTIONS(4393), + [anon_sym_u8_SQUOTE] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4393), + [anon_sym_L_DQUOTE] = ACTIONS(4393), + [anon_sym_u_DQUOTE] = ACTIONS(4393), + [anon_sym_U_DQUOTE] = ACTIONS(4393), + [anon_sym_u8_DQUOTE] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(4393), + [sym_true] = ACTIONS(4391), + [sym_false] = ACTIONS(4391), + [anon_sym_NULL] = ACTIONS(4391), + [anon_sym_nullptr] = ACTIONS(4391), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4391), + [anon_sym_decltype] = ACTIONS(4391), + [anon_sym_explicit] = ACTIONS(4391), + [anon_sym_export] = ACTIONS(4391), + [anon_sym_module] = ACTIONS(4391), + [anon_sym_import] = ACTIONS(4391), + [anon_sym_template] = ACTIONS(4391), + [anon_sym_operator] = ACTIONS(4391), + [anon_sym_try] = ACTIONS(4391), + [anon_sym_delete] = ACTIONS(4391), + [anon_sym_throw] = ACTIONS(4391), + [anon_sym_namespace] = ACTIONS(4391), + [anon_sym_static_assert] = ACTIONS(4391), + [anon_sym_concept] = ACTIONS(4391), + [anon_sym_co_return] = ACTIONS(4391), + [anon_sym_co_yield] = ACTIONS(4391), + [anon_sym_R_DQUOTE] = ACTIONS(4393), + [anon_sym_LR_DQUOTE] = ACTIONS(4393), + [anon_sym_uR_DQUOTE] = ACTIONS(4393), + [anon_sym_UR_DQUOTE] = ACTIONS(4393), + [anon_sym_u8R_DQUOTE] = ACTIONS(4393), + [anon_sym_co_await] = ACTIONS(4391), + [anon_sym_new] = ACTIONS(4391), + [anon_sym_requires] = ACTIONS(4391), + [anon_sym_CARET_CARET] = ACTIONS(4393), + [anon_sym_LBRACK_COLON] = ACTIONS(4393), + [sym_this] = ACTIONS(4391), }, [STATE(518)] = { - [sym_type_qualifier] = STATE(5168), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(2501), - [sym_sized_type_specifier] = STATE(3123), - [sym_enum_specifier] = STATE(3123), - [sym_struct_specifier] = STATE(3123), - [sym_union_specifier] = STATE(3123), - [sym_expression] = STATE(5342), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_type_descriptor] = STATE(5778), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_placeholder_type_specifier] = STATE(3123), - [sym_decltype_auto] = STATE(3099), - [sym_decltype] = STATE(2984), - [sym_class_specifier] = STATE(3123), - [sym__class_name] = STATE(10468), - [sym_dependent_type] = STATE(3123), - [sym_template_type] = STATE(2986), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7976), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(3146), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(3381), - [sym__splice_specialization_specifier] = STATE(2696), - [sym_splice_type_specifier] = STATE(3145), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [aux_sym__type_definition_type_repeat1] = STATE(5168), - [aux_sym_sized_type_specifier_repeat1] = STATE(2283), - [sym_identifier] = ACTIONS(4415), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4419), - [anon_sym_COLON_COLON] = ACTIONS(4421), - [anon_sym_signed] = ACTIONS(4423), - [anon_sym_unsigned] = ACTIONS(4423), - [anon_sym_long] = ACTIONS(4423), - [anon_sym_short] = ACTIONS(4423), - [anon_sym_LBRACK] = ACTIONS(1670), + [sym_type_qualifier] = STATE(5164), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3570), + [sym_sized_type_specifier] = STATE(4081), + [sym_enum_specifier] = STATE(4081), + [sym_struct_specifier] = STATE(4081), + [sym_union_specifier] = STATE(4081), + [sym_expression] = STATE(6365), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_type_descriptor] = STATE(5948), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_placeholder_type_specifier] = STATE(4081), + [sym_decltype_auto] = STATE(4080), + [sym_decltype] = STATE(3960), + [sym_class_specifier] = STATE(4081), + [sym__class_name] = STATE(10441), + [sym_dependent_type] = STATE(4081), + [sym_template_type] = STATE(4039), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7974), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(4150), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(4280), + [sym__splice_specialization_specifier] = STATE(3735), + [sym_splice_type_specifier] = STATE(3493), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [aux_sym__type_definition_type_repeat1] = STATE(5164), + [aux_sym_sized_type_specifier_repeat1] = STATE(2914), + [sym_identifier] = ACTIONS(4395), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4403), + [anon_sym_COLON_COLON] = ACTIONS(4405), + [anon_sym_signed] = ACTIONS(4407), + [anon_sym_unsigned] = ACTIONS(4407), + [anon_sym_long] = ACTIONS(4407), + [anon_sym_short] = ACTIONS(4407), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_const] = ACTIONS(67), [anon_sym_constexpr] = ACTIONS(67), [anon_sym_volatile] = ACTIONS(67), @@ -134171,1021 +134177,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(4425), - [anon_sym_enum] = ACTIONS(4427), - [anon_sym_class] = ACTIONS(4429), - [anon_sym_struct] = ACTIONS(4431), - [anon_sym_union] = ACTIONS(4433), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(4437), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4439), - [anon_sym_decltype] = ACTIONS(4441), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), + [sym_primitive_type] = ACTIONS(4409), + [anon_sym_enum] = ACTIONS(4411), + [anon_sym_class] = ACTIONS(4413), + [anon_sym_struct] = ACTIONS(4415), + [anon_sym_union] = ACTIONS(4417), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4423), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3975), + [anon_sym_decltype] = ACTIONS(3977), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, [STATE(519)] = { - [sym_identifier] = ACTIONS(4443), - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token2] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [aux_sym_preproc_else_token1] = ACTIONS(4443), - [aux_sym_preproc_elif_token1] = ACTIONS(4443), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4445), - [anon_sym_TILDE] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_AMP] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym___extension__] = ACTIONS(4443), - [anon_sym_typedef] = ACTIONS(4443), - [anon_sym_virtual] = ACTIONS(4443), - [anon_sym_extern] = ACTIONS(4443), - [anon_sym___attribute__] = ACTIONS(4443), - [anon_sym___attribute] = ACTIONS(4443), - [anon_sym_using] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4445), - [anon_sym___declspec] = ACTIONS(4443), - [anon_sym___based] = ACTIONS(4443), - [anon_sym___cdecl] = ACTIONS(4443), - [anon_sym___clrcall] = ACTIONS(4443), - [anon_sym___stdcall] = ACTIONS(4443), - [anon_sym___fastcall] = ACTIONS(4443), - [anon_sym___thiscall] = ACTIONS(4443), - [anon_sym___vectorcall] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_signed] = ACTIONS(4443), - [anon_sym_unsigned] = ACTIONS(4443), - [anon_sym_long] = ACTIONS(4443), - [anon_sym_short] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4443), - [anon_sym_static] = ACTIONS(4443), - [anon_sym_register] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym___inline] = ACTIONS(4443), - [anon_sym___inline__] = ACTIONS(4443), - [anon_sym___forceinline] = ACTIONS(4443), - [anon_sym_thread_local] = ACTIONS(4443), - [anon_sym___thread] = ACTIONS(4443), - [anon_sym_const] = ACTIONS(4443), - [anon_sym_constexpr] = ACTIONS(4443), - [anon_sym_volatile] = ACTIONS(4443), - [anon_sym_restrict] = ACTIONS(4443), - [anon_sym___restrict__] = ACTIONS(4443), - [anon_sym__Atomic] = ACTIONS(4443), - [anon_sym__Noreturn] = ACTIONS(4443), - [anon_sym_noreturn] = ACTIONS(4443), - [anon_sym__Nonnull] = ACTIONS(4443), - [anon_sym_mutable] = ACTIONS(4443), - [anon_sym_constinit] = ACTIONS(4443), - [anon_sym_consteval] = ACTIONS(4443), - [anon_sym_alignas] = ACTIONS(4443), - [anon_sym__Alignas] = ACTIONS(4443), - [sym_primitive_type] = ACTIONS(4443), - [anon_sym_enum] = ACTIONS(4443), - [anon_sym_class] = ACTIONS(4443), - [anon_sym_struct] = ACTIONS(4443), - [anon_sym_union] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_switch] = ACTIONS(4443), - [anon_sym_case] = ACTIONS(4443), - [anon_sym_default] = ACTIONS(4443), - [anon_sym_while] = ACTIONS(4443), - [anon_sym_do] = ACTIONS(4443), - [anon_sym_for] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_goto] = ACTIONS(4443), - [anon_sym___try] = ACTIONS(4443), - [anon_sym___leave] = ACTIONS(4443), - [anon_sym_not] = ACTIONS(4443), - [anon_sym_compl] = ACTIONS(4443), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_sizeof] = ACTIONS(4443), - [anon_sym___alignof__] = ACTIONS(4443), - [anon_sym___alignof] = ACTIONS(4443), - [anon_sym__alignof] = ACTIONS(4443), - [anon_sym_alignof] = ACTIONS(4443), - [anon_sym__Alignof] = ACTIONS(4443), - [anon_sym_offsetof] = ACTIONS(4443), - [anon_sym__Generic] = ACTIONS(4443), - [anon_sym_typename] = ACTIONS(4443), - [anon_sym_asm] = ACTIONS(4443), - [anon_sym___asm__] = ACTIONS(4443), - [anon_sym___asm] = ACTIONS(4443), - [sym_number_literal] = ACTIONS(4445), - [anon_sym_L_SQUOTE] = ACTIONS(4445), - [anon_sym_u_SQUOTE] = ACTIONS(4445), - [anon_sym_U_SQUOTE] = ACTIONS(4445), - [anon_sym_u8_SQUOTE] = ACTIONS(4445), - [anon_sym_SQUOTE] = ACTIONS(4445), - [anon_sym_L_DQUOTE] = ACTIONS(4445), - [anon_sym_u_DQUOTE] = ACTIONS(4445), - [anon_sym_U_DQUOTE] = ACTIONS(4445), - [anon_sym_u8_DQUOTE] = ACTIONS(4445), - [anon_sym_DQUOTE] = ACTIONS(4445), - [sym_true] = ACTIONS(4443), - [sym_false] = ACTIONS(4443), - [anon_sym_NULL] = ACTIONS(4443), - [anon_sym_nullptr] = ACTIONS(4443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4443), - [anon_sym_decltype] = ACTIONS(4443), - [anon_sym_explicit] = ACTIONS(4443), - [anon_sym_export] = ACTIONS(4443), - [anon_sym_module] = ACTIONS(4443), - [anon_sym_import] = ACTIONS(4443), - [anon_sym_template] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_delete] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_namespace] = ACTIONS(4443), - [anon_sym_static_assert] = ACTIONS(4443), - [anon_sym_concept] = ACTIONS(4443), - [anon_sym_co_return] = ACTIONS(4443), - [anon_sym_co_yield] = ACTIONS(4443), - [anon_sym_R_DQUOTE] = ACTIONS(4445), - [anon_sym_LR_DQUOTE] = ACTIONS(4445), - [anon_sym_uR_DQUOTE] = ACTIONS(4445), - [anon_sym_UR_DQUOTE] = ACTIONS(4445), - [anon_sym_u8R_DQUOTE] = ACTIONS(4445), - [anon_sym_co_await] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4443), - [anon_sym_requires] = ACTIONS(4443), - [anon_sym_CARET_CARET] = ACTIONS(4445), - [anon_sym_LBRACK_COLON] = ACTIONS(4445), - [sym_this] = ACTIONS(4443), - }, - [STATE(520)] = { - [sym_catch_clause] = STATE(521), - [aux_sym_constructor_try_statement_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(3165), - [aux_sym_preproc_include_token1] = ACTIONS(3165), - [aux_sym_preproc_def_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), - [sym_preproc_directive] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym___extension__] = ACTIONS(3165), - [anon_sym_typedef] = ACTIONS(3165), - [anon_sym_virtual] = ACTIONS(3165), - [anon_sym_extern] = ACTIONS(3165), - [anon_sym___attribute__] = ACTIONS(3165), - [anon_sym___attribute] = ACTIONS(3165), - [anon_sym_using] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), - [anon_sym___declspec] = ACTIONS(3165), - [anon_sym___based] = ACTIONS(3165), - [anon_sym___cdecl] = ACTIONS(3165), - [anon_sym___clrcall] = ACTIONS(3165), - [anon_sym___stdcall] = ACTIONS(3165), - [anon_sym___fastcall] = ACTIONS(3165), - [anon_sym___thiscall] = ACTIONS(3165), - [anon_sym___vectorcall] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_signed] = ACTIONS(3165), - [anon_sym_unsigned] = ACTIONS(3165), - [anon_sym_long] = ACTIONS(3165), - [anon_sym_short] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_static] = ACTIONS(3165), - [anon_sym_register] = ACTIONS(3165), - [anon_sym_inline] = ACTIONS(3165), - [anon_sym___inline] = ACTIONS(3165), - [anon_sym___inline__] = ACTIONS(3165), - [anon_sym___forceinline] = ACTIONS(3165), - [anon_sym_thread_local] = ACTIONS(3165), - [anon_sym___thread] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_constexpr] = ACTIONS(3165), - [anon_sym_volatile] = ACTIONS(3165), - [anon_sym_restrict] = ACTIONS(3165), - [anon_sym___restrict__] = ACTIONS(3165), - [anon_sym__Atomic] = ACTIONS(3165), - [anon_sym__Noreturn] = ACTIONS(3165), - [anon_sym_noreturn] = ACTIONS(3165), - [anon_sym__Nonnull] = ACTIONS(3165), - [anon_sym_mutable] = ACTIONS(3165), - [anon_sym_constinit] = ACTIONS(3165), - [anon_sym_consteval] = ACTIONS(3165), - [anon_sym_alignas] = ACTIONS(3165), - [anon_sym__Alignas] = ACTIONS(3165), - [sym_primitive_type] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_switch] = ACTIONS(3165), - [anon_sym_case] = ACTIONS(3165), - [anon_sym_default] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym___try] = ACTIONS(3165), - [anon_sym___leave] = ACTIONS(3165), - [anon_sym_not] = ACTIONS(3165), - [anon_sym_compl] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_sizeof] = ACTIONS(3165), - [anon_sym___alignof__] = ACTIONS(3165), - [anon_sym___alignof] = ACTIONS(3165), - [anon_sym__alignof] = ACTIONS(3165), - [anon_sym_alignof] = ACTIONS(3165), - [anon_sym__Alignof] = ACTIONS(3165), - [anon_sym_offsetof] = ACTIONS(3165), - [anon_sym__Generic] = ACTIONS(3165), - [anon_sym_typename] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym___asm__] = ACTIONS(3165), - [anon_sym___asm] = ACTIONS(3165), - [sym_number_literal] = ACTIONS(3167), - [anon_sym_L_SQUOTE] = ACTIONS(3167), - [anon_sym_u_SQUOTE] = ACTIONS(3167), - [anon_sym_U_SQUOTE] = ACTIONS(3167), - [anon_sym_u8_SQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [anon_sym_NULL] = ACTIONS(3165), - [anon_sym_nullptr] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3165), - [anon_sym_decltype] = ACTIONS(3165), - [anon_sym_explicit] = ACTIONS(3165), - [anon_sym_export] = ACTIONS(3165), - [anon_sym_import] = ACTIONS(3165), - [anon_sym_template] = ACTIONS(3165), - [anon_sym_operator] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_delete] = ACTIONS(3165), - [anon_sym_throw] = ACTIONS(3165), - [anon_sym_namespace] = ACTIONS(3165), - [anon_sym_static_assert] = ACTIONS(3165), - [anon_sym_concept] = ACTIONS(3165), - [anon_sym_co_return] = ACTIONS(3165), - [anon_sym_co_yield] = ACTIONS(3165), - [anon_sym_catch] = ACTIONS(4447), - [anon_sym_R_DQUOTE] = ACTIONS(3167), - [anon_sym_LR_DQUOTE] = ACTIONS(3167), - [anon_sym_uR_DQUOTE] = ACTIONS(3167), - [anon_sym_UR_DQUOTE] = ACTIONS(3167), - [anon_sym_u8R_DQUOTE] = ACTIONS(3167), - [anon_sym_co_await] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_requires] = ACTIONS(3165), - [anon_sym_CARET_CARET] = ACTIONS(3167), - [anon_sym_LBRACK_COLON] = ACTIONS(3167), - [sym_this] = ACTIONS(3165), - }, - [STATE(521)] = { - [sym_catch_clause] = STATE(521), - [aux_sym_constructor_try_statement_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_include_token1] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym___attribute] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym___cdecl] = ACTIONS(3171), - [anon_sym___clrcall] = ACTIONS(3171), - [anon_sym___stdcall] = ACTIONS(3171), - [anon_sym___fastcall] = ACTIONS(3171), - [anon_sym___thiscall] = ACTIONS(3171), - [anon_sym___vectorcall] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym__Nonnull] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym__Alignas] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_case] = ACTIONS(3171), - [anon_sym_default] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym___try] = ACTIONS(3171), - [anon_sym___leave] = ACTIONS(3171), - [anon_sym_not] = ACTIONS(3171), - [anon_sym_compl] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym___alignof__] = ACTIONS(3171), - [anon_sym___alignof] = ACTIONS(3171), - [anon_sym__alignof] = ACTIONS(3171), - [anon_sym_alignof] = ACTIONS(3171), - [anon_sym__Alignof] = ACTIONS(3171), - [anon_sym_offsetof] = ACTIONS(3171), - [anon_sym__Generic] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym___asm__] = ACTIONS(3171), - [anon_sym___asm] = ACTIONS(3171), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_L_SQUOTE] = ACTIONS(3173), - [anon_sym_u_SQUOTE] = ACTIONS(3173), - [anon_sym_U_SQUOTE] = ACTIONS(3173), - [anon_sym_u8_SQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_L_DQUOTE] = ACTIONS(3173), - [anon_sym_u_DQUOTE] = ACTIONS(3173), - [anon_sym_U_DQUOTE] = ACTIONS(3173), - [anon_sym_u8_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_export] = ACTIONS(3171), - [anon_sym_import] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_namespace] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_concept] = ACTIONS(3171), - [anon_sym_co_return] = ACTIONS(3171), - [anon_sym_co_yield] = ACTIONS(3171), - [anon_sym_catch] = ACTIONS(4449), - [anon_sym_R_DQUOTE] = ACTIONS(3173), - [anon_sym_LR_DQUOTE] = ACTIONS(3173), - [anon_sym_uR_DQUOTE] = ACTIONS(3173), - [anon_sym_UR_DQUOTE] = ACTIONS(3173), - [anon_sym_u8R_DQUOTE] = ACTIONS(3173), - [anon_sym_co_await] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_requires] = ACTIONS(3171), - [anon_sym_CARET_CARET] = ACTIONS(3173), - [anon_sym_LBRACK_COLON] = ACTIONS(3173), - [sym_this] = ACTIONS(3171), - }, - [STATE(522)] = { - [sym_catch_clause] = STATE(410), - [aux_sym_constructor_try_statement_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(3182), - [aux_sym_preproc_include_token1] = ACTIONS(3182), - [aux_sym_preproc_def_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token2] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), - [sym_preproc_directive] = ACTIONS(3182), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym___extension__] = ACTIONS(3182), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_virtual] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym___attribute__] = ACTIONS(3182), - [anon_sym___attribute] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [anon_sym___declspec] = ACTIONS(3182), - [anon_sym___based] = ACTIONS(3182), - [anon_sym___cdecl] = ACTIONS(3182), - [anon_sym___clrcall] = ACTIONS(3182), - [anon_sym___stdcall] = ACTIONS(3182), - [anon_sym___fastcall] = ACTIONS(3182), - [anon_sym___thiscall] = ACTIONS(3182), - [anon_sym___vectorcall] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_signed] = ACTIONS(3182), - [anon_sym_unsigned] = ACTIONS(3182), - [anon_sym_long] = ACTIONS(3182), - [anon_sym_short] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_register] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym___inline] = ACTIONS(3182), - [anon_sym___inline__] = ACTIONS(3182), - [anon_sym___forceinline] = ACTIONS(3182), - [anon_sym_thread_local] = ACTIONS(3182), - [anon_sym___thread] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_constexpr] = ACTIONS(3182), - [anon_sym_volatile] = ACTIONS(3182), - [anon_sym_restrict] = ACTIONS(3182), - [anon_sym___restrict__] = ACTIONS(3182), - [anon_sym__Atomic] = ACTIONS(3182), - [anon_sym__Noreturn] = ACTIONS(3182), - [anon_sym_noreturn] = ACTIONS(3182), - [anon_sym__Nonnull] = ACTIONS(3182), - [anon_sym_mutable] = ACTIONS(3182), - [anon_sym_constinit] = ACTIONS(3182), - [anon_sym_consteval] = ACTIONS(3182), - [anon_sym_alignas] = ACTIONS(3182), - [anon_sym__Alignas] = ACTIONS(3182), - [sym_primitive_type] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3182), - [anon_sym_union] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_goto] = ACTIONS(3182), - [anon_sym___try] = ACTIONS(3182), - [anon_sym___leave] = ACTIONS(3182), - [anon_sym_not] = ACTIONS(3182), - [anon_sym_compl] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_sizeof] = ACTIONS(3182), - [anon_sym___alignof__] = ACTIONS(3182), - [anon_sym___alignof] = ACTIONS(3182), - [anon_sym__alignof] = ACTIONS(3182), - [anon_sym_alignof] = ACTIONS(3182), - [anon_sym__Alignof] = ACTIONS(3182), - [anon_sym_offsetof] = ACTIONS(3182), - [anon_sym__Generic] = ACTIONS(3182), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_asm] = ACTIONS(3182), - [anon_sym___asm__] = ACTIONS(3182), - [anon_sym___asm] = ACTIONS(3182), - [sym_number_literal] = ACTIONS(3184), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3184), - [anon_sym_u_DQUOTE] = ACTIONS(3184), - [anon_sym_U_DQUOTE] = ACTIONS(3184), - [anon_sym_u8_DQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [anon_sym_NULL] = ACTIONS(3182), - [anon_sym_nullptr] = ACTIONS(3182), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3182), - [anon_sym_decltype] = ACTIONS(3182), - [anon_sym_explicit] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(3182), - [anon_sym_operator] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_static_assert] = ACTIONS(3182), - [anon_sym_concept] = ACTIONS(3182), - [anon_sym_co_return] = ACTIONS(3182), - [anon_sym_co_yield] = ACTIONS(3182), - [anon_sym_catch] = ACTIONS(3790), - [anon_sym_R_DQUOTE] = ACTIONS(3184), - [anon_sym_LR_DQUOTE] = ACTIONS(3184), - [anon_sym_uR_DQUOTE] = ACTIONS(3184), - [anon_sym_UR_DQUOTE] = ACTIONS(3184), - [anon_sym_u8R_DQUOTE] = ACTIONS(3184), - [anon_sym_co_await] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_requires] = ACTIONS(3182), - [anon_sym_CARET_CARET] = ACTIONS(3184), - [anon_sym_LBRACK_COLON] = ACTIONS(3184), - [sym_this] = ACTIONS(3182), - }, - [STATE(523)] = { - [sym_catch_clause] = STATE(410), - [aux_sym_constructor_try_statement_repeat1] = STATE(410), - [sym_identifier] = ACTIONS(3178), - [aux_sym_preproc_include_token1] = ACTIONS(3178), - [aux_sym_preproc_def_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token2] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_LPAREN2] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_AMP_AMP] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym___extension__] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_virtual] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym___attribute__] = ACTIONS(3178), - [anon_sym___attribute] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), - [anon_sym___declspec] = ACTIONS(3178), - [anon_sym___based] = ACTIONS(3178), - [anon_sym___cdecl] = ACTIONS(3178), - [anon_sym___clrcall] = ACTIONS(3178), - [anon_sym___stdcall] = ACTIONS(3178), - [anon_sym___fastcall] = ACTIONS(3178), - [anon_sym___thiscall] = ACTIONS(3178), - [anon_sym___vectorcall] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_signed] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym___inline] = ACTIONS(3178), - [anon_sym___inline__] = ACTIONS(3178), - [anon_sym___forceinline] = ACTIONS(3178), - [anon_sym_thread_local] = ACTIONS(3178), - [anon_sym___thread] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym___restrict__] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym__Noreturn] = ACTIONS(3178), - [anon_sym_noreturn] = ACTIONS(3178), - [anon_sym__Nonnull] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_constinit] = ACTIONS(3178), - [anon_sym_consteval] = ACTIONS(3178), - [anon_sym_alignas] = ACTIONS(3178), - [anon_sym__Alignas] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_goto] = ACTIONS(3178), - [anon_sym___try] = ACTIONS(3178), - [anon_sym___leave] = ACTIONS(3178), - [anon_sym_not] = ACTIONS(3178), - [anon_sym_compl] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_sizeof] = ACTIONS(3178), - [anon_sym___alignof__] = ACTIONS(3178), - [anon_sym___alignof] = ACTIONS(3178), - [anon_sym__alignof] = ACTIONS(3178), - [anon_sym_alignof] = ACTIONS(3178), - [anon_sym__Alignof] = ACTIONS(3178), - [anon_sym_offsetof] = ACTIONS(3178), - [anon_sym__Generic] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_asm] = ACTIONS(3178), - [anon_sym___asm__] = ACTIONS(3178), - [anon_sym___asm] = ACTIONS(3178), - [sym_number_literal] = ACTIONS(3180), - [anon_sym_L_SQUOTE] = ACTIONS(3180), - [anon_sym_u_SQUOTE] = ACTIONS(3180), - [anon_sym_U_SQUOTE] = ACTIONS(3180), - [anon_sym_u8_SQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_L_DQUOTE] = ACTIONS(3180), - [anon_sym_u_DQUOTE] = ACTIONS(3180), - [anon_sym_U_DQUOTE] = ACTIONS(3180), - [anon_sym_u8_DQUOTE] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [anon_sym_NULL] = ACTIONS(3178), - [anon_sym_nullptr] = ACTIONS(3178), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3178), - [anon_sym_decltype] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_operator] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_static_assert] = ACTIONS(3178), - [anon_sym_concept] = ACTIONS(3178), - [anon_sym_co_return] = ACTIONS(3178), - [anon_sym_co_yield] = ACTIONS(3178), - [anon_sym_catch] = ACTIONS(3790), - [anon_sym_R_DQUOTE] = ACTIONS(3180), - [anon_sym_LR_DQUOTE] = ACTIONS(3180), - [anon_sym_uR_DQUOTE] = ACTIONS(3180), - [anon_sym_UR_DQUOTE] = ACTIONS(3180), - [anon_sym_u8R_DQUOTE] = ACTIONS(3180), - [anon_sym_co_await] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3178), - [anon_sym_CARET_CARET] = ACTIONS(3180), - [anon_sym_LBRACK_COLON] = ACTIONS(3180), - [sym_this] = ACTIONS(3178), - }, - [STATE(524)] = { - [sym_else_clause] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3408), - [aux_sym_preproc_include_token1] = ACTIONS(3408), - [aux_sym_preproc_def_token1] = ACTIONS(3408), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), - [sym_preproc_directive] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3408), - [anon_sym_typedef] = ACTIONS(3408), - [anon_sym_virtual] = ACTIONS(3408), - [anon_sym_extern] = ACTIONS(3408), - [anon_sym___attribute__] = ACTIONS(3408), - [anon_sym___attribute] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(3410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), - [anon_sym___declspec] = ACTIONS(3408), - [anon_sym___based] = ACTIONS(3408), - [anon_sym___cdecl] = ACTIONS(3408), - [anon_sym___clrcall] = ACTIONS(3408), - [anon_sym___stdcall] = ACTIONS(3408), - [anon_sym___fastcall] = ACTIONS(3408), - [anon_sym___thiscall] = ACTIONS(3408), - [anon_sym___vectorcall] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3408), - [anon_sym_unsigned] = ACTIONS(3408), - [anon_sym_long] = ACTIONS(3408), - [anon_sym_short] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_register] = ACTIONS(3408), - [anon_sym_inline] = ACTIONS(3408), - [anon_sym___inline] = ACTIONS(3408), - [anon_sym___inline__] = ACTIONS(3408), - [anon_sym___forceinline] = ACTIONS(3408), - [anon_sym_thread_local] = ACTIONS(3408), - [anon_sym___thread] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_constexpr] = ACTIONS(3408), - [anon_sym_volatile] = ACTIONS(3408), - [anon_sym_restrict] = ACTIONS(3408), - [anon_sym___restrict__] = ACTIONS(3408), - [anon_sym__Atomic] = ACTIONS(3408), - [anon_sym__Noreturn] = ACTIONS(3408), - [anon_sym_noreturn] = ACTIONS(3408), - [anon_sym__Nonnull] = ACTIONS(3408), - [anon_sym_mutable] = ACTIONS(3408), - [anon_sym_constinit] = ACTIONS(3408), - [anon_sym_consteval] = ACTIONS(3408), - [anon_sym_alignas] = ACTIONS(3408), - [anon_sym__Alignas] = ACTIONS(3408), - [sym_primitive_type] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym___try] = ACTIONS(3408), - [anon_sym___leave] = ACTIONS(3408), - [anon_sym_not] = ACTIONS(3408), - [anon_sym_compl] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3408), - [anon_sym___alignof__] = ACTIONS(3408), - [anon_sym___alignof] = ACTIONS(3408), - [anon_sym__alignof] = ACTIONS(3408), - [anon_sym_alignof] = ACTIONS(3408), - [anon_sym__Alignof] = ACTIONS(3408), - [anon_sym_offsetof] = ACTIONS(3408), - [anon_sym__Generic] = ACTIONS(3408), - [anon_sym_typename] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym___asm__] = ACTIONS(3408), - [anon_sym___asm] = ACTIONS(3408), - [sym_number_literal] = ACTIONS(3410), - [anon_sym_L_SQUOTE] = ACTIONS(3410), - [anon_sym_u_SQUOTE] = ACTIONS(3410), - [anon_sym_U_SQUOTE] = ACTIONS(3410), - [anon_sym_u8_SQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [anon_sym_L_DQUOTE] = ACTIONS(3410), - [anon_sym_u_DQUOTE] = ACTIONS(3410), - [anon_sym_U_DQUOTE] = ACTIONS(3410), - [anon_sym_u8_DQUOTE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [anon_sym_NULL] = ACTIONS(3408), - [anon_sym_nullptr] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3408), - [anon_sym_decltype] = ACTIONS(3408), - [anon_sym_explicit] = ACTIONS(3408), - [anon_sym_export] = ACTIONS(3408), - [anon_sym_module] = ACTIONS(3408), - [anon_sym_import] = ACTIONS(3408), - [anon_sym_template] = ACTIONS(3408), - [anon_sym_operator] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_static_assert] = ACTIONS(3408), - [anon_sym_concept] = ACTIONS(3408), - [anon_sym_co_return] = ACTIONS(3408), - [anon_sym_co_yield] = ACTIONS(3408), - [anon_sym_R_DQUOTE] = ACTIONS(3410), - [anon_sym_LR_DQUOTE] = ACTIONS(3410), - [anon_sym_uR_DQUOTE] = ACTIONS(3410), - [anon_sym_UR_DQUOTE] = ACTIONS(3410), - [anon_sym_u8R_DQUOTE] = ACTIONS(3410), - [anon_sym_co_await] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_requires] = ACTIONS(3408), - [anon_sym_CARET_CARET] = ACTIONS(3410), - [anon_sym_LBRACK_COLON] = ACTIONS(3410), - [sym_this] = ACTIONS(3408), - }, - [STATE(525)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), + [sym_catch_clause] = STATE(519), + [aux_sym_constructor_try_statement_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_include_token1] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), [anon_sym_LPAREN2] = ACTIONS(3161), [anon_sym_BANG] = ACTIONS(3161), [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), [anon_sym_STAR] = ACTIONS(3161), [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3159), [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym___attribute] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), [anon_sym_COLON_COLON] = ACTIONS(3161), [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym___cdecl] = ACTIONS(3159), + [anon_sym___clrcall] = ACTIONS(3159), + [anon_sym___stdcall] = ACTIONS(3159), + [anon_sym___fastcall] = ACTIONS(3159), + [anon_sym___thiscall] = ACTIONS(3159), + [anon_sym___vectorcall] = ACTIONS(3159), [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym___try] = ACTIONS(3163), - [anon_sym___leave] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3163), - [anon_sym_compl] = ACTIONS(3163), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym__Nonnull] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym__Alignas] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), [anon_sym_DASH_DASH] = ACTIONS(3161), [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = ACTIONS(3163), - [anon_sym___asm] = ACTIONS(3163), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [anon_sym___asm] = ACTIONS(3159), [sym_number_literal] = ACTIONS(3161), [anon_sym_L_SQUOTE] = ACTIONS(3161), [anon_sym_u_SQUOTE] = ACTIONS(3161), @@ -135197,1471 +134341,2474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_U_DQUOTE] = ACTIONS(3161), [anon_sym_u8_DQUOTE] = ACTIONS(3161), [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_catch] = ACTIONS(3163), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_export] = ACTIONS(3159), + [anon_sym_import] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_namespace] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_concept] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_catch] = ACTIONS(4445), [anon_sym_R_DQUOTE] = ACTIONS(3161), [anon_sym_LR_DQUOTE] = ACTIONS(3161), [anon_sym_uR_DQUOTE] = ACTIONS(3161), [anon_sym_UR_DQUOTE] = ACTIONS(3161), [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), [anon_sym_CARET_CARET] = ACTIONS(3161), [anon_sym_LBRACK_COLON] = ACTIONS(3161), - [sym_this] = ACTIONS(3163), + [sym_this] = ACTIONS(3159), + }, + [STATE(520)] = { + [sym_catch_clause] = STATE(426), + [aux_sym_constructor_try_statement_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym___attribute] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym__Nonnull] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym__Alignas] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym___try] = ACTIONS(3180), + [anon_sym___leave] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym___alignof__] = ACTIONS(3180), + [anon_sym___alignof] = ACTIONS(3180), + [anon_sym__alignof] = ACTIONS(3180), + [anon_sym_alignof] = ACTIONS(3180), + [anon_sym__Alignof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [anon_sym___asm] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_export] = ACTIONS(3180), + [anon_sym_module] = ACTIONS(3180), + [anon_sym_import] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_catch] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [anon_sym_CARET_CARET] = ACTIONS(3182), + [anon_sym_LBRACK_COLON] = ACTIONS(3182), + [sym_this] = ACTIONS(3180), + }, + [STATE(521)] = { + [sym_catch_clause] = STATE(519), + [aux_sym_constructor_try_statement_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(3170), + [aux_sym_preproc_include_token1] = ACTIONS(3170), + [aux_sym_preproc_def_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token1] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3170), + [sym_preproc_directive] = ACTIONS(3170), + [anon_sym_LPAREN2] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3170), + [anon_sym_virtual] = ACTIONS(3170), + [anon_sym_extern] = ACTIONS(3170), + [anon_sym___attribute__] = ACTIONS(3170), + [anon_sym___attribute] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(3172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3172), + [anon_sym___declspec] = ACTIONS(3170), + [anon_sym___based] = ACTIONS(3170), + [anon_sym___cdecl] = ACTIONS(3170), + [anon_sym___clrcall] = ACTIONS(3170), + [anon_sym___stdcall] = ACTIONS(3170), + [anon_sym___fastcall] = ACTIONS(3170), + [anon_sym___thiscall] = ACTIONS(3170), + [anon_sym___vectorcall] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3170), + [anon_sym_unsigned] = ACTIONS(3170), + [anon_sym_long] = ACTIONS(3170), + [anon_sym_short] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_register] = ACTIONS(3170), + [anon_sym_inline] = ACTIONS(3170), + [anon_sym___inline] = ACTIONS(3170), + [anon_sym___inline__] = ACTIONS(3170), + [anon_sym___forceinline] = ACTIONS(3170), + [anon_sym_thread_local] = ACTIONS(3170), + [anon_sym___thread] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_constexpr] = ACTIONS(3170), + [anon_sym_volatile] = ACTIONS(3170), + [anon_sym_restrict] = ACTIONS(3170), + [anon_sym___restrict__] = ACTIONS(3170), + [anon_sym__Atomic] = ACTIONS(3170), + [anon_sym__Noreturn] = ACTIONS(3170), + [anon_sym_noreturn] = ACTIONS(3170), + [anon_sym__Nonnull] = ACTIONS(3170), + [anon_sym_mutable] = ACTIONS(3170), + [anon_sym_constinit] = ACTIONS(3170), + [anon_sym_consteval] = ACTIONS(3170), + [anon_sym_alignas] = ACTIONS(3170), + [anon_sym__Alignas] = ACTIONS(3170), + [sym_primitive_type] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_case] = ACTIONS(3170), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_goto] = ACTIONS(3170), + [anon_sym___try] = ACTIONS(3170), + [anon_sym___leave] = ACTIONS(3170), + [anon_sym_not] = ACTIONS(3170), + [anon_sym_compl] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_sizeof] = ACTIONS(3170), + [anon_sym___alignof__] = ACTIONS(3170), + [anon_sym___alignof] = ACTIONS(3170), + [anon_sym__alignof] = ACTIONS(3170), + [anon_sym_alignof] = ACTIONS(3170), + [anon_sym__Alignof] = ACTIONS(3170), + [anon_sym_offsetof] = ACTIONS(3170), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_typename] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3170), + [anon_sym___asm__] = ACTIONS(3170), + [anon_sym___asm] = ACTIONS(3170), + [sym_number_literal] = ACTIONS(3172), + [anon_sym_L_SQUOTE] = ACTIONS(3172), + [anon_sym_u_SQUOTE] = ACTIONS(3172), + [anon_sym_U_SQUOTE] = ACTIONS(3172), + [anon_sym_u8_SQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_L_DQUOTE] = ACTIONS(3172), + [anon_sym_u_DQUOTE] = ACTIONS(3172), + [anon_sym_U_DQUOTE] = ACTIONS(3172), + [anon_sym_u8_DQUOTE] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [anon_sym_NULL] = ACTIONS(3170), + [anon_sym_nullptr] = ACTIONS(3170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3170), + [anon_sym_decltype] = ACTIONS(3170), + [anon_sym_explicit] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_template] = ACTIONS(3170), + [anon_sym_operator] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_static_assert] = ACTIONS(3170), + [anon_sym_concept] = ACTIONS(3170), + [anon_sym_co_return] = ACTIONS(3170), + [anon_sym_co_yield] = ACTIONS(3170), + [anon_sym_catch] = ACTIONS(4448), + [anon_sym_R_DQUOTE] = ACTIONS(3172), + [anon_sym_LR_DQUOTE] = ACTIONS(3172), + [anon_sym_uR_DQUOTE] = ACTIONS(3172), + [anon_sym_UR_DQUOTE] = ACTIONS(3172), + [anon_sym_u8R_DQUOTE] = ACTIONS(3172), + [anon_sym_co_await] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_requires] = ACTIONS(3170), + [anon_sym_CARET_CARET] = ACTIONS(3172), + [anon_sym_LBRACK_COLON] = ACTIONS(3172), + [sym_this] = ACTIONS(3170), + }, + [STATE(522)] = { + [sym_catch_clause] = STATE(426), + [aux_sym_constructor_try_statement_repeat1] = STATE(426), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym___attribute] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym__Nonnull] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym__Alignas] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym___try] = ACTIONS(3176), + [anon_sym___leave] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym___alignof__] = ACTIONS(3176), + [anon_sym___alignof] = ACTIONS(3176), + [anon_sym__alignof] = ACTIONS(3176), + [anon_sym_alignof] = ACTIONS(3176), + [anon_sym__Alignof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [anon_sym___asm] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [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(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_catch] = ACTIONS(3852), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [anon_sym_CARET_CARET] = ACTIONS(3178), + [anon_sym_LBRACK_COLON] = ACTIONS(3178), + [sym_this] = ACTIONS(3176), + }, + [STATE(523)] = { + [sym_identifier] = ACTIONS(4450), + [aux_sym_preproc_include_token1] = ACTIONS(4450), + [aux_sym_preproc_def_token1] = ACTIONS(4450), + [aux_sym_preproc_if_token1] = ACTIONS(4450), + [aux_sym_preproc_if_token2] = ACTIONS(4450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4450), + [aux_sym_preproc_else_token1] = ACTIONS(4450), + [aux_sym_preproc_elif_token1] = ACTIONS(4450), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4450), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4450), + [sym_preproc_directive] = ACTIONS(4450), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_TILDE] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4452), + [anon_sym_AMP_AMP] = ACTIONS(4452), + [anon_sym_AMP] = ACTIONS(4450), + [anon_sym_SEMI] = ACTIONS(4452), + [anon_sym___extension__] = ACTIONS(4450), + [anon_sym_typedef] = ACTIONS(4450), + [anon_sym_virtual] = ACTIONS(4450), + [anon_sym_extern] = ACTIONS(4450), + [anon_sym___attribute__] = ACTIONS(4450), + [anon_sym___attribute] = ACTIONS(4450), + [anon_sym_using] = ACTIONS(4450), + [anon_sym_COLON_COLON] = ACTIONS(4452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4452), + [anon_sym___declspec] = ACTIONS(4450), + [anon_sym___based] = ACTIONS(4450), + [anon_sym___cdecl] = ACTIONS(4450), + [anon_sym___clrcall] = ACTIONS(4450), + [anon_sym___stdcall] = ACTIONS(4450), + [anon_sym___fastcall] = ACTIONS(4450), + [anon_sym___thiscall] = ACTIONS(4450), + [anon_sym___vectorcall] = ACTIONS(4450), + [anon_sym_LBRACE] = ACTIONS(4452), + [anon_sym_signed] = ACTIONS(4450), + [anon_sym_unsigned] = ACTIONS(4450), + [anon_sym_long] = ACTIONS(4450), + [anon_sym_short] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_static] = ACTIONS(4450), + [anon_sym_register] = ACTIONS(4450), + [anon_sym_inline] = ACTIONS(4450), + [anon_sym___inline] = ACTIONS(4450), + [anon_sym___inline__] = ACTIONS(4450), + [anon_sym___forceinline] = ACTIONS(4450), + [anon_sym_thread_local] = ACTIONS(4450), + [anon_sym___thread] = ACTIONS(4450), + [anon_sym_const] = ACTIONS(4450), + [anon_sym_constexpr] = ACTIONS(4450), + [anon_sym_volatile] = ACTIONS(4450), + [anon_sym_restrict] = ACTIONS(4450), + [anon_sym___restrict__] = ACTIONS(4450), + [anon_sym__Atomic] = ACTIONS(4450), + [anon_sym__Noreturn] = ACTIONS(4450), + [anon_sym_noreturn] = ACTIONS(4450), + [anon_sym__Nonnull] = ACTIONS(4450), + [anon_sym_mutable] = ACTIONS(4450), + [anon_sym_constinit] = ACTIONS(4450), + [anon_sym_consteval] = ACTIONS(4450), + [anon_sym_alignas] = ACTIONS(4450), + [anon_sym__Alignas] = ACTIONS(4450), + [sym_primitive_type] = ACTIONS(4450), + [anon_sym_enum] = ACTIONS(4450), + [anon_sym_class] = ACTIONS(4450), + [anon_sym_struct] = ACTIONS(4450), + [anon_sym_union] = ACTIONS(4450), + [anon_sym_if] = ACTIONS(4450), + [anon_sym_switch] = ACTIONS(4450), + [anon_sym_case] = ACTIONS(4450), + [anon_sym_default] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4450), + [anon_sym_do] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(4450), + [anon_sym_return] = ACTIONS(4450), + [anon_sym_break] = ACTIONS(4450), + [anon_sym_continue] = ACTIONS(4450), + [anon_sym_goto] = ACTIONS(4450), + [anon_sym_not] = ACTIONS(4450), + [anon_sym_compl] = ACTIONS(4450), + [anon_sym_DASH_DASH] = ACTIONS(4452), + [anon_sym_PLUS_PLUS] = ACTIONS(4452), + [anon_sym_sizeof] = ACTIONS(4450), + [anon_sym___alignof__] = ACTIONS(4450), + [anon_sym___alignof] = ACTIONS(4450), + [anon_sym__alignof] = ACTIONS(4450), + [anon_sym_alignof] = ACTIONS(4450), + [anon_sym__Alignof] = ACTIONS(4450), + [anon_sym_offsetof] = ACTIONS(4450), + [anon_sym__Generic] = ACTIONS(4450), + [anon_sym_typename] = ACTIONS(4450), + [anon_sym_asm] = ACTIONS(4450), + [anon_sym___asm__] = ACTIONS(4450), + [anon_sym___asm] = ACTIONS(4450), + [sym_number_literal] = ACTIONS(4452), + [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(4452), + [anon_sym_u_DQUOTE] = ACTIONS(4452), + [anon_sym_U_DQUOTE] = ACTIONS(4452), + [anon_sym_u8_DQUOTE] = ACTIONS(4452), + [anon_sym_DQUOTE] = ACTIONS(4452), + [sym_true] = ACTIONS(4450), + [sym_false] = ACTIONS(4450), + [anon_sym_NULL] = ACTIONS(4450), + [anon_sym_nullptr] = ACTIONS(4450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4450), + [anon_sym_decltype] = ACTIONS(4450), + [anon_sym_explicit] = ACTIONS(4450), + [anon_sym_export] = ACTIONS(4450), + [anon_sym_module] = ACTIONS(4450), + [anon_sym_import] = ACTIONS(4450), + [anon_sym_template] = ACTIONS(4450), + [anon_sym_operator] = ACTIONS(4450), + [anon_sym_try] = ACTIONS(4450), + [anon_sym_delete] = ACTIONS(4450), + [anon_sym_throw] = ACTIONS(4450), + [anon_sym_namespace] = ACTIONS(4450), + [anon_sym_static_assert] = ACTIONS(4450), + [anon_sym_concept] = ACTIONS(4450), + [anon_sym_co_return] = ACTIONS(4450), + [anon_sym_co_yield] = ACTIONS(4450), + [anon_sym_R_DQUOTE] = ACTIONS(4452), + [anon_sym_LR_DQUOTE] = ACTIONS(4452), + [anon_sym_uR_DQUOTE] = ACTIONS(4452), + [anon_sym_UR_DQUOTE] = ACTIONS(4452), + [anon_sym_u8R_DQUOTE] = ACTIONS(4452), + [anon_sym_co_await] = ACTIONS(4450), + [anon_sym_new] = ACTIONS(4450), + [anon_sym_requires] = ACTIONS(4450), + [anon_sym_CARET_CARET] = ACTIONS(4452), + [anon_sym_LBRACK_COLON] = ACTIONS(4452), + [sym_this] = ACTIONS(4450), + }, + [STATE(524)] = { + [sym_catch_clause] = STATE(519), + [aux_sym_constructor_try_statement_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym___attribute] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym__Nonnull] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym__Alignas] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym___try] = ACTIONS(3180), + [anon_sym___leave] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym___alignof__] = ACTIONS(3180), + [anon_sym___alignof] = ACTIONS(3180), + [anon_sym__alignof] = ACTIONS(3180), + [anon_sym_alignof] = ACTIONS(3180), + [anon_sym__Alignof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [anon_sym___asm] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_export] = ACTIONS(3180), + [anon_sym_import] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_catch] = ACTIONS(4448), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [anon_sym_CARET_CARET] = ACTIONS(3182), + [anon_sym_LBRACK_COLON] = ACTIONS(3182), + [sym_this] = ACTIONS(3180), + }, + [STATE(525)] = { + [sym_else_clause] = STATE(629), + [ts_builtin_sym_end] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym___extension__] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym___attribute] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym___inline] = ACTIONS(3286), + [anon_sym___inline__] = ACTIONS(3286), + [anon_sym___forceinline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym___thread] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym__Nonnull] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [anon_sym_alignas] = ACTIONS(3286), + [anon_sym__Alignas] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(4454), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym___try] = ACTIONS(3286), + [anon_sym___leave] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym___alignof__] = ACTIONS(3286), + [anon_sym___alignof] = ACTIONS(3286), + [anon_sym__alignof] = ACTIONS(3286), + [anon_sym_alignof] = ACTIONS(3286), + [anon_sym__Alignof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [anon_sym___asm] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_module] = ACTIONS(3286), + [anon_sym_import] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [anon_sym_CARET_CARET] = ACTIONS(3288), + [anon_sym_LBRACK_COLON] = ACTIONS(3288), + [sym_this] = ACTIONS(3286), }, [STATE(526)] = { - [sym_identifier] = ACTIONS(4454), - [aux_sym_preproc_include_token1] = ACTIONS(4454), - [aux_sym_preproc_def_token1] = ACTIONS(4454), - [aux_sym_preproc_if_token1] = ACTIONS(4454), - [aux_sym_preproc_if_token2] = ACTIONS(4454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4454), - [aux_sym_preproc_else_token1] = ACTIONS(4454), - [aux_sym_preproc_elif_token1] = ACTIONS(4454), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4454), - [sym_preproc_directive] = ACTIONS(4454), - [anon_sym_LPAREN2] = ACTIONS(4456), - [anon_sym_BANG] = ACTIONS(4456), - [anon_sym_TILDE] = ACTIONS(4456), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4456), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4454), - [anon_sym_SEMI] = ACTIONS(4456), - [anon_sym___extension__] = ACTIONS(4454), - [anon_sym_typedef] = ACTIONS(4454), - [anon_sym_virtual] = ACTIONS(4454), - [anon_sym_extern] = ACTIONS(4454), - [anon_sym___attribute__] = ACTIONS(4454), - [anon_sym___attribute] = ACTIONS(4454), - [anon_sym_using] = ACTIONS(4454), - [anon_sym_COLON_COLON] = ACTIONS(4456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4456), - [anon_sym___declspec] = ACTIONS(4454), - [anon_sym___based] = ACTIONS(4454), - [anon_sym___cdecl] = ACTIONS(4454), - [anon_sym___clrcall] = ACTIONS(4454), - [anon_sym___stdcall] = ACTIONS(4454), - [anon_sym___fastcall] = ACTIONS(4454), - [anon_sym___thiscall] = ACTIONS(4454), - [anon_sym___vectorcall] = ACTIONS(4454), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_signed] = ACTIONS(4454), - [anon_sym_unsigned] = ACTIONS(4454), - [anon_sym_long] = ACTIONS(4454), - [anon_sym_short] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_static] = ACTIONS(4454), - [anon_sym_register] = ACTIONS(4454), - [anon_sym_inline] = ACTIONS(4454), - [anon_sym___inline] = ACTIONS(4454), - [anon_sym___inline__] = ACTIONS(4454), - [anon_sym___forceinline] = ACTIONS(4454), - [anon_sym_thread_local] = ACTIONS(4454), - [anon_sym___thread] = ACTIONS(4454), - [anon_sym_const] = ACTIONS(4454), - [anon_sym_constexpr] = ACTIONS(4454), - [anon_sym_volatile] = ACTIONS(4454), - [anon_sym_restrict] = ACTIONS(4454), - [anon_sym___restrict__] = ACTIONS(4454), - [anon_sym__Atomic] = ACTIONS(4454), - [anon_sym__Noreturn] = ACTIONS(4454), - [anon_sym_noreturn] = ACTIONS(4454), - [anon_sym__Nonnull] = ACTIONS(4454), - [anon_sym_mutable] = ACTIONS(4454), - [anon_sym_constinit] = ACTIONS(4454), - [anon_sym_consteval] = ACTIONS(4454), - [anon_sym_alignas] = ACTIONS(4454), - [anon_sym__Alignas] = ACTIONS(4454), - [sym_primitive_type] = ACTIONS(4454), - [anon_sym_enum] = ACTIONS(4454), - [anon_sym_class] = ACTIONS(4454), - [anon_sym_struct] = ACTIONS(4454), - [anon_sym_union] = ACTIONS(4454), - [anon_sym_if] = ACTIONS(4454), - [anon_sym_switch] = ACTIONS(4454), - [anon_sym_case] = ACTIONS(4454), - [anon_sym_default] = ACTIONS(4454), - [anon_sym_while] = ACTIONS(4454), - [anon_sym_do] = ACTIONS(4454), - [anon_sym_for] = ACTIONS(4454), - [anon_sym_return] = ACTIONS(4454), - [anon_sym_break] = ACTIONS(4454), - [anon_sym_continue] = ACTIONS(4454), - [anon_sym_goto] = ACTIONS(4454), - [anon_sym_not] = ACTIONS(4454), - [anon_sym_compl] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_sizeof] = ACTIONS(4454), - [anon_sym___alignof__] = ACTIONS(4454), - [anon_sym___alignof] = ACTIONS(4454), - [anon_sym__alignof] = ACTIONS(4454), - [anon_sym_alignof] = ACTIONS(4454), - [anon_sym__Alignof] = ACTIONS(4454), - [anon_sym_offsetof] = ACTIONS(4454), - [anon_sym__Generic] = ACTIONS(4454), - [anon_sym_typename] = ACTIONS(4454), - [anon_sym_asm] = ACTIONS(4454), - [anon_sym___asm__] = ACTIONS(4454), - [anon_sym___asm] = ACTIONS(4454), - [sym_number_literal] = ACTIONS(4456), - [anon_sym_L_SQUOTE] = ACTIONS(4456), - [anon_sym_u_SQUOTE] = ACTIONS(4456), - [anon_sym_U_SQUOTE] = ACTIONS(4456), - [anon_sym_u8_SQUOTE] = ACTIONS(4456), - [anon_sym_SQUOTE] = ACTIONS(4456), - [anon_sym_L_DQUOTE] = ACTIONS(4456), - [anon_sym_u_DQUOTE] = ACTIONS(4456), - [anon_sym_U_DQUOTE] = ACTIONS(4456), - [anon_sym_u8_DQUOTE] = ACTIONS(4456), - [anon_sym_DQUOTE] = ACTIONS(4456), - [sym_true] = ACTIONS(4454), - [sym_false] = ACTIONS(4454), - [anon_sym_NULL] = ACTIONS(4454), - [anon_sym_nullptr] = ACTIONS(4454), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4454), - [anon_sym_decltype] = ACTIONS(4454), - [anon_sym_explicit] = ACTIONS(4454), - [anon_sym_export] = ACTIONS(4454), - [anon_sym_module] = ACTIONS(4454), - [anon_sym_import] = ACTIONS(4454), - [anon_sym_template] = ACTIONS(4454), - [anon_sym_operator] = ACTIONS(4454), - [anon_sym_try] = ACTIONS(4454), - [anon_sym_delete] = ACTIONS(4454), - [anon_sym_throw] = ACTIONS(4454), - [anon_sym_namespace] = ACTIONS(4454), - [anon_sym_static_assert] = ACTIONS(4454), - [anon_sym_concept] = ACTIONS(4454), - [anon_sym_co_return] = ACTIONS(4454), - [anon_sym_co_yield] = ACTIONS(4454), - [anon_sym_R_DQUOTE] = ACTIONS(4456), - [anon_sym_LR_DQUOTE] = ACTIONS(4456), - [anon_sym_uR_DQUOTE] = ACTIONS(4456), - [anon_sym_UR_DQUOTE] = ACTIONS(4456), - [anon_sym_u8R_DQUOTE] = ACTIONS(4456), - [anon_sym_co_await] = ACTIONS(4454), - [anon_sym_new] = ACTIONS(4454), - [anon_sym_requires] = ACTIONS(4454), - [anon_sym_CARET_CARET] = ACTIONS(4456), - [anon_sym_LBRACK_COLON] = ACTIONS(4456), - [sym_this] = ACTIONS(4454), + [sym_else_clause] = STATE(643), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3322), + [aux_sym_preproc_include_token1] = ACTIONS(3322), + [aux_sym_preproc_def_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), + [sym_preproc_directive] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym___extension__] = ACTIONS(3322), + [anon_sym_typedef] = ACTIONS(3322), + [anon_sym_virtual] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym___attribute__] = ACTIONS(3322), + [anon_sym___attribute] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3322), + [anon_sym___based] = ACTIONS(3322), + [anon_sym___cdecl] = ACTIONS(3322), + [anon_sym___clrcall] = ACTIONS(3322), + [anon_sym___stdcall] = ACTIONS(3322), + [anon_sym___fastcall] = ACTIONS(3322), + [anon_sym___thiscall] = ACTIONS(3322), + [anon_sym___vectorcall] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_signed] = ACTIONS(3322), + [anon_sym_unsigned] = ACTIONS(3322), + [anon_sym_long] = ACTIONS(3322), + [anon_sym_short] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_inline] = ACTIONS(3322), + [anon_sym___inline] = ACTIONS(3322), + [anon_sym___inline__] = ACTIONS(3322), + [anon_sym___forceinline] = ACTIONS(3322), + [anon_sym_thread_local] = ACTIONS(3322), + [anon_sym___thread] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_constexpr] = ACTIONS(3322), + [anon_sym_volatile] = ACTIONS(3322), + [anon_sym_restrict] = ACTIONS(3322), + [anon_sym___restrict__] = ACTIONS(3322), + [anon_sym__Atomic] = ACTIONS(3322), + [anon_sym__Noreturn] = ACTIONS(3322), + [anon_sym_noreturn] = ACTIONS(3322), + [anon_sym__Nonnull] = ACTIONS(3322), + [anon_sym_mutable] = ACTIONS(3322), + [anon_sym_constinit] = ACTIONS(3322), + [anon_sym_consteval] = ACTIONS(3322), + [anon_sym_alignas] = ACTIONS(3322), + [anon_sym__Alignas] = ACTIONS(3322), + [sym_primitive_type] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(4454), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym___try] = ACTIONS(3322), + [anon_sym___leave] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_compl] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3322), + [anon_sym___alignof__] = ACTIONS(3322), + [anon_sym___alignof] = ACTIONS(3322), + [anon_sym__alignof] = ACTIONS(3322), + [anon_sym_alignof] = ACTIONS(3322), + [anon_sym__Alignof] = ACTIONS(3322), + [anon_sym_offsetof] = ACTIONS(3322), + [anon_sym__Generic] = ACTIONS(3322), + [anon_sym_typename] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym___asm__] = ACTIONS(3322), + [anon_sym___asm] = ACTIONS(3322), + [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(3322), + [sym_false] = ACTIONS(3322), + [anon_sym_NULL] = ACTIONS(3322), + [anon_sym_nullptr] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(3322), + [anon_sym_explicit] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_template] = ACTIONS(3322), + [anon_sym_operator] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_static_assert] = ACTIONS(3322), + [anon_sym_concept] = ACTIONS(3322), + [anon_sym_co_return] = ACTIONS(3322), + [anon_sym_co_yield] = ACTIONS(3322), + [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(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_requires] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3324), + [anon_sym_LBRACK_COLON] = ACTIONS(3324), + [sym_this] = ACTIONS(3322), }, [STATE(527)] = { - [sym_identifier] = ACTIONS(4458), - [aux_sym_preproc_include_token1] = ACTIONS(4458), - [aux_sym_preproc_def_token1] = ACTIONS(4458), - [aux_sym_preproc_if_token1] = ACTIONS(4458), - [aux_sym_preproc_if_token2] = ACTIONS(4458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4458), - [aux_sym_preproc_else_token1] = ACTIONS(4458), - [aux_sym_preproc_elif_token1] = ACTIONS(4458), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4458), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4458), - [sym_preproc_directive] = ACTIONS(4458), - [anon_sym_LPAREN2] = ACTIONS(4460), - [anon_sym_BANG] = ACTIONS(4460), - [anon_sym_TILDE] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_AMP] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym___extension__] = ACTIONS(4458), - [anon_sym_typedef] = ACTIONS(4458), - [anon_sym_virtual] = ACTIONS(4458), - [anon_sym_extern] = ACTIONS(4458), - [anon_sym___attribute__] = ACTIONS(4458), - [anon_sym___attribute] = ACTIONS(4458), - [anon_sym_using] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4460), - [anon_sym___declspec] = ACTIONS(4458), - [anon_sym___based] = ACTIONS(4458), - [anon_sym___cdecl] = ACTIONS(4458), - [anon_sym___clrcall] = ACTIONS(4458), - [anon_sym___stdcall] = ACTIONS(4458), - [anon_sym___fastcall] = ACTIONS(4458), - [anon_sym___thiscall] = ACTIONS(4458), - [anon_sym___vectorcall] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_signed] = ACTIONS(4458), - [anon_sym_unsigned] = ACTIONS(4458), - [anon_sym_long] = ACTIONS(4458), - [anon_sym_short] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4458), - [anon_sym_static] = ACTIONS(4458), - [anon_sym_register] = ACTIONS(4458), - [anon_sym_inline] = ACTIONS(4458), - [anon_sym___inline] = ACTIONS(4458), - [anon_sym___inline__] = ACTIONS(4458), - [anon_sym___forceinline] = ACTIONS(4458), - [anon_sym_thread_local] = ACTIONS(4458), - [anon_sym___thread] = ACTIONS(4458), - [anon_sym_const] = ACTIONS(4458), - [anon_sym_constexpr] = ACTIONS(4458), - [anon_sym_volatile] = ACTIONS(4458), - [anon_sym_restrict] = ACTIONS(4458), - [anon_sym___restrict__] = ACTIONS(4458), - [anon_sym__Atomic] = ACTIONS(4458), - [anon_sym__Noreturn] = ACTIONS(4458), - [anon_sym_noreturn] = ACTIONS(4458), - [anon_sym__Nonnull] = ACTIONS(4458), - [anon_sym_mutable] = ACTIONS(4458), - [anon_sym_constinit] = ACTIONS(4458), - [anon_sym_consteval] = ACTIONS(4458), - [anon_sym_alignas] = ACTIONS(4458), - [anon_sym__Alignas] = ACTIONS(4458), - [sym_primitive_type] = ACTIONS(4458), - [anon_sym_enum] = ACTIONS(4458), - [anon_sym_class] = ACTIONS(4458), - [anon_sym_struct] = ACTIONS(4458), - [anon_sym_union] = ACTIONS(4458), - [anon_sym_if] = ACTIONS(4458), - [anon_sym_switch] = ACTIONS(4458), - [anon_sym_case] = ACTIONS(4458), - [anon_sym_default] = ACTIONS(4458), - [anon_sym_while] = ACTIONS(4458), - [anon_sym_do] = ACTIONS(4458), - [anon_sym_for] = ACTIONS(4458), - [anon_sym_return] = ACTIONS(4458), - [anon_sym_break] = ACTIONS(4458), - [anon_sym_continue] = ACTIONS(4458), - [anon_sym_goto] = ACTIONS(4458), - [anon_sym_not] = ACTIONS(4458), - [anon_sym_compl] = ACTIONS(4458), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_sizeof] = ACTIONS(4458), - [anon_sym___alignof__] = ACTIONS(4458), - [anon_sym___alignof] = ACTIONS(4458), - [anon_sym__alignof] = ACTIONS(4458), - [anon_sym_alignof] = ACTIONS(4458), - [anon_sym__Alignof] = ACTIONS(4458), - [anon_sym_offsetof] = ACTIONS(4458), - [anon_sym__Generic] = ACTIONS(4458), - [anon_sym_typename] = ACTIONS(4458), - [anon_sym_asm] = ACTIONS(4458), - [anon_sym___asm__] = ACTIONS(4458), - [anon_sym___asm] = ACTIONS(4458), - [sym_number_literal] = ACTIONS(4460), - [anon_sym_L_SQUOTE] = ACTIONS(4460), - [anon_sym_u_SQUOTE] = ACTIONS(4460), - [anon_sym_U_SQUOTE] = ACTIONS(4460), - [anon_sym_u8_SQUOTE] = ACTIONS(4460), - [anon_sym_SQUOTE] = ACTIONS(4460), - [anon_sym_L_DQUOTE] = ACTIONS(4460), - [anon_sym_u_DQUOTE] = ACTIONS(4460), - [anon_sym_U_DQUOTE] = ACTIONS(4460), - [anon_sym_u8_DQUOTE] = ACTIONS(4460), - [anon_sym_DQUOTE] = ACTIONS(4460), - [sym_true] = ACTIONS(4458), - [sym_false] = ACTIONS(4458), - [anon_sym_NULL] = ACTIONS(4458), - [anon_sym_nullptr] = ACTIONS(4458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4458), - [anon_sym_decltype] = ACTIONS(4458), - [anon_sym_explicit] = ACTIONS(4458), - [anon_sym_export] = ACTIONS(4458), - [anon_sym_module] = ACTIONS(4458), - [anon_sym_import] = ACTIONS(4458), - [anon_sym_template] = ACTIONS(4458), - [anon_sym_operator] = ACTIONS(4458), - [anon_sym_try] = ACTIONS(4458), - [anon_sym_delete] = ACTIONS(4458), - [anon_sym_throw] = ACTIONS(4458), - [anon_sym_namespace] = ACTIONS(4458), - [anon_sym_static_assert] = ACTIONS(4458), - [anon_sym_concept] = ACTIONS(4458), - [anon_sym_co_return] = ACTIONS(4458), - [anon_sym_co_yield] = ACTIONS(4458), - [anon_sym_R_DQUOTE] = ACTIONS(4460), - [anon_sym_LR_DQUOTE] = ACTIONS(4460), - [anon_sym_uR_DQUOTE] = ACTIONS(4460), - [anon_sym_UR_DQUOTE] = ACTIONS(4460), - [anon_sym_u8R_DQUOTE] = ACTIONS(4460), - [anon_sym_co_await] = ACTIONS(4458), - [anon_sym_new] = ACTIONS(4458), - [anon_sym_requires] = ACTIONS(4458), - [anon_sym_CARET_CARET] = ACTIONS(4460), - [anon_sym_LBRACK_COLON] = ACTIONS(4460), - [sym_this] = ACTIONS(4458), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_else] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym___try] = ACTIONS(3168), + [anon_sym___leave] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [anon_sym___asm] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_module] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_catch] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_CARET_CARET] = ACTIONS(3166), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + [sym_this] = ACTIONS(3168), }, [STATE(528)] = { - [sym_identifier] = ACTIONS(4462), - [aux_sym_preproc_include_token1] = ACTIONS(4462), - [aux_sym_preproc_def_token1] = ACTIONS(4462), - [aux_sym_preproc_if_token1] = ACTIONS(4462), - [aux_sym_preproc_if_token2] = ACTIONS(4462), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4462), - [aux_sym_preproc_else_token1] = ACTIONS(4462), - [aux_sym_preproc_elif_token1] = ACTIONS(4462), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4462), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4462), - [sym_preproc_directive] = ACTIONS(4462), - [anon_sym_LPAREN2] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4464), - [anon_sym_TILDE] = ACTIONS(4464), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_PLUS] = ACTIONS(4462), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_AMP_AMP] = ACTIONS(4464), - [anon_sym_AMP] = ACTIONS(4462), - [anon_sym_SEMI] = ACTIONS(4464), - [anon_sym___extension__] = ACTIONS(4462), - [anon_sym_typedef] = ACTIONS(4462), - [anon_sym_virtual] = ACTIONS(4462), - [anon_sym_extern] = ACTIONS(4462), - [anon_sym___attribute__] = ACTIONS(4462), - [anon_sym___attribute] = ACTIONS(4462), - [anon_sym_using] = ACTIONS(4462), - [anon_sym_COLON_COLON] = ACTIONS(4464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), - [anon_sym___declspec] = ACTIONS(4462), - [anon_sym___based] = ACTIONS(4462), - [anon_sym___cdecl] = ACTIONS(4462), - [anon_sym___clrcall] = ACTIONS(4462), - [anon_sym___stdcall] = ACTIONS(4462), - [anon_sym___fastcall] = ACTIONS(4462), - [anon_sym___thiscall] = ACTIONS(4462), - [anon_sym___vectorcall] = ACTIONS(4462), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_signed] = ACTIONS(4462), - [anon_sym_unsigned] = ACTIONS(4462), - [anon_sym_long] = ACTIONS(4462), - [anon_sym_short] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_static] = ACTIONS(4462), - [anon_sym_register] = ACTIONS(4462), - [anon_sym_inline] = ACTIONS(4462), - [anon_sym___inline] = ACTIONS(4462), - [anon_sym___inline__] = ACTIONS(4462), - [anon_sym___forceinline] = ACTIONS(4462), - [anon_sym_thread_local] = ACTIONS(4462), - [anon_sym___thread] = ACTIONS(4462), - [anon_sym_const] = ACTIONS(4462), - [anon_sym_constexpr] = ACTIONS(4462), - [anon_sym_volatile] = ACTIONS(4462), - [anon_sym_restrict] = ACTIONS(4462), - [anon_sym___restrict__] = ACTIONS(4462), - [anon_sym__Atomic] = ACTIONS(4462), - [anon_sym__Noreturn] = ACTIONS(4462), - [anon_sym_noreturn] = ACTIONS(4462), - [anon_sym__Nonnull] = ACTIONS(4462), - [anon_sym_mutable] = ACTIONS(4462), - [anon_sym_constinit] = ACTIONS(4462), - [anon_sym_consteval] = ACTIONS(4462), - [anon_sym_alignas] = ACTIONS(4462), - [anon_sym__Alignas] = ACTIONS(4462), - [sym_primitive_type] = ACTIONS(4462), - [anon_sym_enum] = ACTIONS(4462), - [anon_sym_class] = ACTIONS(4462), - [anon_sym_struct] = ACTIONS(4462), - [anon_sym_union] = ACTIONS(4462), - [anon_sym_if] = ACTIONS(4462), - [anon_sym_switch] = ACTIONS(4462), - [anon_sym_case] = ACTIONS(4462), - [anon_sym_default] = ACTIONS(4462), - [anon_sym_while] = ACTIONS(4462), - [anon_sym_do] = ACTIONS(4462), - [anon_sym_for] = ACTIONS(4462), - [anon_sym_return] = ACTIONS(4462), - [anon_sym_break] = ACTIONS(4462), - [anon_sym_continue] = ACTIONS(4462), - [anon_sym_goto] = ACTIONS(4462), - [anon_sym_not] = ACTIONS(4462), - [anon_sym_compl] = ACTIONS(4462), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_sizeof] = ACTIONS(4462), - [anon_sym___alignof__] = ACTIONS(4462), - [anon_sym___alignof] = ACTIONS(4462), - [anon_sym__alignof] = ACTIONS(4462), - [anon_sym_alignof] = ACTIONS(4462), - [anon_sym__Alignof] = ACTIONS(4462), - [anon_sym_offsetof] = ACTIONS(4462), - [anon_sym__Generic] = ACTIONS(4462), - [anon_sym_typename] = ACTIONS(4462), - [anon_sym_asm] = ACTIONS(4462), - [anon_sym___asm__] = ACTIONS(4462), - [anon_sym___asm] = ACTIONS(4462), - [sym_number_literal] = ACTIONS(4464), - [anon_sym_L_SQUOTE] = ACTIONS(4464), - [anon_sym_u_SQUOTE] = ACTIONS(4464), - [anon_sym_U_SQUOTE] = ACTIONS(4464), - [anon_sym_u8_SQUOTE] = ACTIONS(4464), - [anon_sym_SQUOTE] = ACTIONS(4464), - [anon_sym_L_DQUOTE] = ACTIONS(4464), - [anon_sym_u_DQUOTE] = ACTIONS(4464), - [anon_sym_U_DQUOTE] = ACTIONS(4464), - [anon_sym_u8_DQUOTE] = ACTIONS(4464), - [anon_sym_DQUOTE] = ACTIONS(4464), - [sym_true] = ACTIONS(4462), - [sym_false] = ACTIONS(4462), - [anon_sym_NULL] = ACTIONS(4462), - [anon_sym_nullptr] = ACTIONS(4462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4462), - [anon_sym_decltype] = ACTIONS(4462), - [anon_sym_explicit] = ACTIONS(4462), - [anon_sym_export] = ACTIONS(4462), - [anon_sym_module] = ACTIONS(4462), - [anon_sym_import] = ACTIONS(4462), - [anon_sym_template] = ACTIONS(4462), - [anon_sym_operator] = ACTIONS(4462), - [anon_sym_try] = ACTIONS(4462), - [anon_sym_delete] = ACTIONS(4462), - [anon_sym_throw] = ACTIONS(4462), - [anon_sym_namespace] = ACTIONS(4462), - [anon_sym_static_assert] = ACTIONS(4462), - [anon_sym_concept] = ACTIONS(4462), - [anon_sym_co_return] = ACTIONS(4462), - [anon_sym_co_yield] = ACTIONS(4462), - [anon_sym_R_DQUOTE] = ACTIONS(4464), - [anon_sym_LR_DQUOTE] = ACTIONS(4464), - [anon_sym_uR_DQUOTE] = ACTIONS(4464), - [anon_sym_UR_DQUOTE] = ACTIONS(4464), - [anon_sym_u8R_DQUOTE] = ACTIONS(4464), - [anon_sym_co_await] = ACTIONS(4462), - [anon_sym_new] = ACTIONS(4462), - [anon_sym_requires] = ACTIONS(4462), - [anon_sym_CARET_CARET] = ACTIONS(4464), - [anon_sym_LBRACK_COLON] = ACTIONS(4464), - [sym_this] = ACTIONS(4462), + [sym_identifier] = ACTIONS(3157), + [aux_sym_preproc_include_token1] = ACTIONS(3157), + [aux_sym_preproc_def_token1] = ACTIONS(3157), + [aux_sym_preproc_if_token1] = ACTIONS(3157), + [aux_sym_preproc_if_token2] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3157), + [sym_preproc_directive] = ACTIONS(3157), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3157), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym___attribute__] = ACTIONS(3157), + [anon_sym___attribute] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3155), + [anon_sym___declspec] = ACTIONS(3157), + [anon_sym___based] = ACTIONS(3157), + [anon_sym___cdecl] = ACTIONS(3157), + [anon_sym___clrcall] = ACTIONS(3157), + [anon_sym___stdcall] = ACTIONS(3157), + [anon_sym___fastcall] = ACTIONS(3157), + [anon_sym___thiscall] = ACTIONS(3157), + [anon_sym___vectorcall] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_signed] = ACTIONS(3157), + [anon_sym_unsigned] = ACTIONS(3157), + [anon_sym_long] = ACTIONS(3157), + [anon_sym_short] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_register] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym___inline] = ACTIONS(3157), + [anon_sym___inline__] = ACTIONS(3157), + [anon_sym___forceinline] = ACTIONS(3157), + [anon_sym_thread_local] = ACTIONS(3157), + [anon_sym___thread] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_constexpr] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_restrict] = ACTIONS(3157), + [anon_sym___restrict__] = ACTIONS(3157), + [anon_sym__Atomic] = ACTIONS(3157), + [anon_sym__Noreturn] = ACTIONS(3157), + [anon_sym_noreturn] = ACTIONS(3157), + [anon_sym__Nonnull] = ACTIONS(3157), + [anon_sym_mutable] = ACTIONS(3157), + [anon_sym_constinit] = ACTIONS(3157), + [anon_sym_consteval] = ACTIONS(3157), + [anon_sym_alignas] = ACTIONS(3157), + [anon_sym__Alignas] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym___try] = ACTIONS(3157), + [anon_sym___leave] = ACTIONS(3157), + [anon_sym_not] = ACTIONS(3157), + [anon_sym_compl] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_sizeof] = ACTIONS(3157), + [anon_sym___alignof__] = ACTIONS(3157), + [anon_sym___alignof] = ACTIONS(3157), + [anon_sym__alignof] = ACTIONS(3157), + [anon_sym_alignof] = ACTIONS(3157), + [anon_sym__Alignof] = ACTIONS(3157), + [anon_sym_offsetof] = ACTIONS(3157), + [anon_sym__Generic] = ACTIONS(3157), + [anon_sym_typename] = ACTIONS(3157), + [anon_sym_asm] = ACTIONS(3157), + [anon_sym___asm__] = ACTIONS(3157), + [anon_sym___asm] = ACTIONS(3157), + [sym_number_literal] = ACTIONS(3155), + [anon_sym_L_SQUOTE] = ACTIONS(3155), + [anon_sym_u_SQUOTE] = ACTIONS(3155), + [anon_sym_U_SQUOTE] = ACTIONS(3155), + [anon_sym_u8_SQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_L_DQUOTE] = ACTIONS(3155), + [anon_sym_u_DQUOTE] = ACTIONS(3155), + [anon_sym_U_DQUOTE] = ACTIONS(3155), + [anon_sym_u8_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [anon_sym_NULL] = ACTIONS(3157), + [anon_sym_nullptr] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3157), + [anon_sym_decltype] = ACTIONS(3157), + [anon_sym_explicit] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_module] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_template] = ACTIONS(3157), + [anon_sym_operator] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_static_assert] = ACTIONS(3157), + [anon_sym_concept] = ACTIONS(3157), + [anon_sym_co_return] = ACTIONS(3157), + [anon_sym_co_yield] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_R_DQUOTE] = ACTIONS(3155), + [anon_sym_LR_DQUOTE] = ACTIONS(3155), + [anon_sym_uR_DQUOTE] = ACTIONS(3155), + [anon_sym_UR_DQUOTE] = ACTIONS(3155), + [anon_sym_u8R_DQUOTE] = ACTIONS(3155), + [anon_sym_co_await] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_requires] = ACTIONS(3157), + [anon_sym_CARET_CARET] = ACTIONS(3155), + [anon_sym_LBRACK_COLON] = ACTIONS(3155), + [sym_this] = ACTIONS(3157), }, [STATE(529)] = { - [sym_identifier] = ACTIONS(4466), - [aux_sym_preproc_include_token1] = ACTIONS(4466), - [aux_sym_preproc_def_token1] = ACTIONS(4466), - [aux_sym_preproc_if_token1] = ACTIONS(4466), - [aux_sym_preproc_if_token2] = ACTIONS(4466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4466), - [aux_sym_preproc_else_token1] = ACTIONS(4466), - [aux_sym_preproc_elif_token1] = ACTIONS(4466), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4466), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4466), - [sym_preproc_directive] = ACTIONS(4466), - [anon_sym_LPAREN2] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_TILDE] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_AMP] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym___extension__] = ACTIONS(4466), - [anon_sym_typedef] = ACTIONS(4466), - [anon_sym_virtual] = ACTIONS(4466), - [anon_sym_extern] = ACTIONS(4466), - [anon_sym___attribute__] = ACTIONS(4466), - [anon_sym___attribute] = ACTIONS(4466), - [anon_sym_using] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4468), - [anon_sym___declspec] = ACTIONS(4466), - [anon_sym___based] = ACTIONS(4466), - [anon_sym___cdecl] = ACTIONS(4466), - [anon_sym___clrcall] = ACTIONS(4466), - [anon_sym___stdcall] = ACTIONS(4466), - [anon_sym___fastcall] = ACTIONS(4466), - [anon_sym___thiscall] = ACTIONS(4466), - [anon_sym___vectorcall] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4468), - [anon_sym_signed] = ACTIONS(4466), - [anon_sym_unsigned] = ACTIONS(4466), - [anon_sym_long] = ACTIONS(4466), - [anon_sym_short] = ACTIONS(4466), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_static] = ACTIONS(4466), - [anon_sym_register] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym___inline] = ACTIONS(4466), - [anon_sym___inline__] = ACTIONS(4466), - [anon_sym___forceinline] = ACTIONS(4466), - [anon_sym_thread_local] = ACTIONS(4466), - [anon_sym___thread] = ACTIONS(4466), - [anon_sym_const] = ACTIONS(4466), - [anon_sym_constexpr] = ACTIONS(4466), - [anon_sym_volatile] = ACTIONS(4466), - [anon_sym_restrict] = ACTIONS(4466), - [anon_sym___restrict__] = ACTIONS(4466), - [anon_sym__Atomic] = ACTIONS(4466), - [anon_sym__Noreturn] = ACTIONS(4466), - [anon_sym_noreturn] = ACTIONS(4466), - [anon_sym__Nonnull] = ACTIONS(4466), - [anon_sym_mutable] = ACTIONS(4466), - [anon_sym_constinit] = ACTIONS(4466), - [anon_sym_consteval] = ACTIONS(4466), - [anon_sym_alignas] = ACTIONS(4466), - [anon_sym__Alignas] = ACTIONS(4466), - [sym_primitive_type] = ACTIONS(4466), - [anon_sym_enum] = ACTIONS(4466), - [anon_sym_class] = ACTIONS(4466), - [anon_sym_struct] = ACTIONS(4466), - [anon_sym_union] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4466), - [anon_sym_case] = ACTIONS(4466), - [anon_sym_default] = ACTIONS(4466), - [anon_sym_while] = ACTIONS(4466), - [anon_sym_do] = ACTIONS(4466), - [anon_sym_for] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_goto] = ACTIONS(4466), - [anon_sym_not] = ACTIONS(4466), - [anon_sym_compl] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_sizeof] = ACTIONS(4466), - [anon_sym___alignof__] = ACTIONS(4466), - [anon_sym___alignof] = ACTIONS(4466), - [anon_sym__alignof] = ACTIONS(4466), - [anon_sym_alignof] = ACTIONS(4466), - [anon_sym__Alignof] = ACTIONS(4466), - [anon_sym_offsetof] = ACTIONS(4466), - [anon_sym__Generic] = ACTIONS(4466), - [anon_sym_typename] = ACTIONS(4466), - [anon_sym_asm] = ACTIONS(4466), - [anon_sym___asm__] = ACTIONS(4466), - [anon_sym___asm] = ACTIONS(4466), - [sym_number_literal] = ACTIONS(4468), - [anon_sym_L_SQUOTE] = ACTIONS(4468), - [anon_sym_u_SQUOTE] = ACTIONS(4468), - [anon_sym_U_SQUOTE] = ACTIONS(4468), - [anon_sym_u8_SQUOTE] = ACTIONS(4468), - [anon_sym_SQUOTE] = ACTIONS(4468), - [anon_sym_L_DQUOTE] = ACTIONS(4468), - [anon_sym_u_DQUOTE] = ACTIONS(4468), - [anon_sym_U_DQUOTE] = ACTIONS(4468), - [anon_sym_u8_DQUOTE] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4468), - [sym_true] = ACTIONS(4466), - [sym_false] = ACTIONS(4466), - [anon_sym_NULL] = ACTIONS(4466), - [anon_sym_nullptr] = ACTIONS(4466), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4466), - [anon_sym_decltype] = ACTIONS(4466), - [anon_sym_explicit] = ACTIONS(4466), - [anon_sym_export] = ACTIONS(4466), - [anon_sym_module] = ACTIONS(4466), - [anon_sym_import] = ACTIONS(4466), - [anon_sym_template] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_delete] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_namespace] = ACTIONS(4466), - [anon_sym_static_assert] = ACTIONS(4466), - [anon_sym_concept] = ACTIONS(4466), - [anon_sym_co_return] = ACTIONS(4466), - [anon_sym_co_yield] = ACTIONS(4466), - [anon_sym_R_DQUOTE] = ACTIONS(4468), - [anon_sym_LR_DQUOTE] = ACTIONS(4468), - [anon_sym_uR_DQUOTE] = ACTIONS(4468), - [anon_sym_UR_DQUOTE] = ACTIONS(4468), - [anon_sym_u8R_DQUOTE] = ACTIONS(4468), - [anon_sym_co_await] = ACTIONS(4466), - [anon_sym_new] = ACTIONS(4466), - [anon_sym_requires] = ACTIONS(4466), - [anon_sym_CARET_CARET] = ACTIONS(4468), - [anon_sym_LBRACK_COLON] = ACTIONS(4468), - [sym_this] = ACTIONS(4466), + [sym_identifier] = ACTIONS(4456), + [aux_sym_preproc_include_token1] = ACTIONS(4456), + [aux_sym_preproc_def_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token2] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4456), + [aux_sym_preproc_else_token1] = ACTIONS(4456), + [aux_sym_preproc_elif_token1] = ACTIONS(4456), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4456), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4456), + [sym_preproc_directive] = ACTIONS(4456), + [anon_sym_LPAREN2] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym___extension__] = ACTIONS(4456), + [anon_sym_typedef] = ACTIONS(4456), + [anon_sym_virtual] = ACTIONS(4456), + [anon_sym_extern] = ACTIONS(4456), + [anon_sym___attribute__] = ACTIONS(4456), + [anon_sym___attribute] = ACTIONS(4456), + [anon_sym_using] = ACTIONS(4456), + [anon_sym_COLON_COLON] = ACTIONS(4458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4458), + [anon_sym___declspec] = ACTIONS(4456), + [anon_sym___based] = ACTIONS(4456), + [anon_sym___cdecl] = ACTIONS(4456), + [anon_sym___clrcall] = ACTIONS(4456), + [anon_sym___stdcall] = ACTIONS(4456), + [anon_sym___fastcall] = ACTIONS(4456), + [anon_sym___thiscall] = ACTIONS(4456), + [anon_sym___vectorcall] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_signed] = ACTIONS(4456), + [anon_sym_unsigned] = ACTIONS(4456), + [anon_sym_long] = ACTIONS(4456), + [anon_sym_short] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_static] = ACTIONS(4456), + [anon_sym_register] = ACTIONS(4456), + [anon_sym_inline] = ACTIONS(4456), + [anon_sym___inline] = ACTIONS(4456), + [anon_sym___inline__] = ACTIONS(4456), + [anon_sym___forceinline] = ACTIONS(4456), + [anon_sym_thread_local] = ACTIONS(4456), + [anon_sym___thread] = ACTIONS(4456), + [anon_sym_const] = ACTIONS(4456), + [anon_sym_constexpr] = ACTIONS(4456), + [anon_sym_volatile] = ACTIONS(4456), + [anon_sym_restrict] = ACTIONS(4456), + [anon_sym___restrict__] = ACTIONS(4456), + [anon_sym__Atomic] = ACTIONS(4456), + [anon_sym__Noreturn] = ACTIONS(4456), + [anon_sym_noreturn] = ACTIONS(4456), + [anon_sym__Nonnull] = ACTIONS(4456), + [anon_sym_mutable] = ACTIONS(4456), + [anon_sym_constinit] = ACTIONS(4456), + [anon_sym_consteval] = ACTIONS(4456), + [anon_sym_alignas] = ACTIONS(4456), + [anon_sym__Alignas] = ACTIONS(4456), + [sym_primitive_type] = ACTIONS(4456), + [anon_sym_enum] = ACTIONS(4456), + [anon_sym_class] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4456), + [anon_sym_union] = ACTIONS(4456), + [anon_sym_if] = ACTIONS(4456), + [anon_sym_switch] = ACTIONS(4456), + [anon_sym_case] = ACTIONS(4456), + [anon_sym_default] = ACTIONS(4456), + [anon_sym_while] = ACTIONS(4456), + [anon_sym_do] = ACTIONS(4456), + [anon_sym_for] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4456), + [anon_sym_break] = ACTIONS(4456), + [anon_sym_continue] = ACTIONS(4456), + [anon_sym_goto] = ACTIONS(4456), + [anon_sym_not] = ACTIONS(4456), + [anon_sym_compl] = ACTIONS(4456), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_sizeof] = ACTIONS(4456), + [anon_sym___alignof__] = ACTIONS(4456), + [anon_sym___alignof] = ACTIONS(4456), + [anon_sym__alignof] = ACTIONS(4456), + [anon_sym_alignof] = ACTIONS(4456), + [anon_sym__Alignof] = ACTIONS(4456), + [anon_sym_offsetof] = ACTIONS(4456), + [anon_sym__Generic] = ACTIONS(4456), + [anon_sym_typename] = ACTIONS(4456), + [anon_sym_asm] = ACTIONS(4456), + [anon_sym___asm__] = ACTIONS(4456), + [anon_sym___asm] = ACTIONS(4456), + [sym_number_literal] = ACTIONS(4458), + [anon_sym_L_SQUOTE] = ACTIONS(4458), + [anon_sym_u_SQUOTE] = ACTIONS(4458), + [anon_sym_U_SQUOTE] = ACTIONS(4458), + [anon_sym_u8_SQUOTE] = ACTIONS(4458), + [anon_sym_SQUOTE] = ACTIONS(4458), + [anon_sym_L_DQUOTE] = ACTIONS(4458), + [anon_sym_u_DQUOTE] = ACTIONS(4458), + [anon_sym_U_DQUOTE] = ACTIONS(4458), + [anon_sym_u8_DQUOTE] = ACTIONS(4458), + [anon_sym_DQUOTE] = ACTIONS(4458), + [sym_true] = ACTIONS(4456), + [sym_false] = ACTIONS(4456), + [anon_sym_NULL] = ACTIONS(4456), + [anon_sym_nullptr] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4456), + [anon_sym_decltype] = ACTIONS(4456), + [anon_sym_explicit] = ACTIONS(4456), + [anon_sym_export] = ACTIONS(4456), + [anon_sym_module] = ACTIONS(4456), + [anon_sym_import] = ACTIONS(4456), + [anon_sym_template] = ACTIONS(4456), + [anon_sym_operator] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4456), + [anon_sym_delete] = ACTIONS(4456), + [anon_sym_throw] = ACTIONS(4456), + [anon_sym_namespace] = ACTIONS(4456), + [anon_sym_static_assert] = ACTIONS(4456), + [anon_sym_concept] = ACTIONS(4456), + [anon_sym_co_return] = ACTIONS(4456), + [anon_sym_co_yield] = ACTIONS(4456), + [anon_sym_R_DQUOTE] = ACTIONS(4458), + [anon_sym_LR_DQUOTE] = ACTIONS(4458), + [anon_sym_uR_DQUOTE] = ACTIONS(4458), + [anon_sym_UR_DQUOTE] = ACTIONS(4458), + [anon_sym_u8R_DQUOTE] = ACTIONS(4458), + [anon_sym_co_await] = ACTIONS(4456), + [anon_sym_new] = ACTIONS(4456), + [anon_sym_requires] = ACTIONS(4456), + [anon_sym_CARET_CARET] = ACTIONS(4458), + [anon_sym_LBRACK_COLON] = ACTIONS(4458), + [sym_this] = ACTIONS(4456), }, [STATE(530)] = { - [sym_else_clause] = STATE(584), - [sym_identifier] = ACTIONS(3368), - [aux_sym_preproc_include_token1] = ACTIONS(3368), - [aux_sym_preproc_def_token1] = ACTIONS(3368), - [aux_sym_preproc_if_token1] = ACTIONS(3368), - [aux_sym_preproc_if_token2] = ACTIONS(3368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3368), - [sym_preproc_directive] = ACTIONS(3368), - [anon_sym_LPAREN2] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3370), - [anon_sym_AMP_AMP] = ACTIONS(3370), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym___extension__] = ACTIONS(3368), - [anon_sym_typedef] = ACTIONS(3368), - [anon_sym_virtual] = ACTIONS(3368), - [anon_sym_extern] = ACTIONS(3368), - [anon_sym___attribute__] = ACTIONS(3368), - [anon_sym___attribute] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_COLON_COLON] = ACTIONS(3370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3370), - [anon_sym___declspec] = ACTIONS(3368), - [anon_sym___based] = ACTIONS(3368), - [anon_sym___cdecl] = ACTIONS(3368), - [anon_sym___clrcall] = ACTIONS(3368), - [anon_sym___stdcall] = ACTIONS(3368), - [anon_sym___fastcall] = ACTIONS(3368), - [anon_sym___thiscall] = ACTIONS(3368), - [anon_sym___vectorcall] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_signed] = ACTIONS(3368), - [anon_sym_unsigned] = ACTIONS(3368), - [anon_sym_long] = ACTIONS(3368), - [anon_sym_short] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_register] = ACTIONS(3368), - [anon_sym_inline] = ACTIONS(3368), - [anon_sym___inline] = ACTIONS(3368), - [anon_sym___inline__] = ACTIONS(3368), - [anon_sym___forceinline] = ACTIONS(3368), - [anon_sym_thread_local] = ACTIONS(3368), - [anon_sym___thread] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_constexpr] = ACTIONS(3368), - [anon_sym_volatile] = ACTIONS(3368), - [anon_sym_restrict] = ACTIONS(3368), - [anon_sym___restrict__] = ACTIONS(3368), - [anon_sym__Atomic] = ACTIONS(3368), - [anon_sym__Noreturn] = ACTIONS(3368), - [anon_sym_noreturn] = ACTIONS(3368), - [anon_sym__Nonnull] = ACTIONS(3368), - [anon_sym_mutable] = ACTIONS(3368), - [anon_sym_constinit] = ACTIONS(3368), - [anon_sym_consteval] = ACTIONS(3368), - [anon_sym_alignas] = ACTIONS(3368), - [anon_sym__Alignas] = ACTIONS(3368), - [sym_primitive_type] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(3368), - [anon_sym_union] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_case] = ACTIONS(3368), - [anon_sym_default] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_goto] = ACTIONS(3368), - [anon_sym___try] = ACTIONS(3368), - [anon_sym___leave] = ACTIONS(3368), - [anon_sym_not] = ACTIONS(3368), - [anon_sym_compl] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_sizeof] = ACTIONS(3368), - [anon_sym___alignof__] = ACTIONS(3368), - [anon_sym___alignof] = ACTIONS(3368), - [anon_sym__alignof] = ACTIONS(3368), - [anon_sym_alignof] = ACTIONS(3368), - [anon_sym__Alignof] = ACTIONS(3368), - [anon_sym_offsetof] = ACTIONS(3368), - [anon_sym__Generic] = ACTIONS(3368), - [anon_sym_typename] = ACTIONS(3368), - [anon_sym_asm] = ACTIONS(3368), - [anon_sym___asm__] = ACTIONS(3368), - [anon_sym___asm] = ACTIONS(3368), - [sym_number_literal] = ACTIONS(3370), - [anon_sym_L_SQUOTE] = ACTIONS(3370), - [anon_sym_u_SQUOTE] = ACTIONS(3370), - [anon_sym_U_SQUOTE] = ACTIONS(3370), - [anon_sym_u8_SQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_L_DQUOTE] = ACTIONS(3370), - [anon_sym_u_DQUOTE] = ACTIONS(3370), - [anon_sym_U_DQUOTE] = ACTIONS(3370), - [anon_sym_u8_DQUOTE] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3368), - [anon_sym_decltype] = ACTIONS(3368), - [anon_sym_explicit] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_template] = ACTIONS(3368), - [anon_sym_operator] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_static_assert] = ACTIONS(3368), - [anon_sym_concept] = ACTIONS(3368), - [anon_sym_co_return] = ACTIONS(3368), - [anon_sym_co_yield] = ACTIONS(3368), - [anon_sym_R_DQUOTE] = ACTIONS(3370), - [anon_sym_LR_DQUOTE] = ACTIONS(3370), - [anon_sym_uR_DQUOTE] = ACTIONS(3370), - [anon_sym_UR_DQUOTE] = ACTIONS(3370), - [anon_sym_u8R_DQUOTE] = ACTIONS(3370), - [anon_sym_co_await] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_requires] = ACTIONS(3368), - [anon_sym_CARET_CARET] = ACTIONS(3370), - [anon_sym_LBRACK_COLON] = ACTIONS(3370), - [sym_this] = ACTIONS(3368), + [ts_builtin_sym_end] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3326), + [aux_sym_preproc_include_token1] = ACTIONS(3326), + [aux_sym_preproc_def_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token1] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3326), + [sym_preproc_directive] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym___extension__] = ACTIONS(3326), + [anon_sym_typedef] = ACTIONS(3326), + [anon_sym_virtual] = ACTIONS(3326), + [anon_sym_extern] = ACTIONS(3326), + [anon_sym___attribute__] = ACTIONS(3326), + [anon_sym___attribute] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3328), + [anon_sym___declspec] = ACTIONS(3326), + [anon_sym___based] = ACTIONS(3326), + [anon_sym___cdecl] = ACTIONS(3326), + [anon_sym___clrcall] = ACTIONS(3326), + [anon_sym___stdcall] = ACTIONS(3326), + [anon_sym___fastcall] = ACTIONS(3326), + [anon_sym___thiscall] = ACTIONS(3326), + [anon_sym___vectorcall] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3326), + [anon_sym_unsigned] = ACTIONS(3326), + [anon_sym_long] = ACTIONS(3326), + [anon_sym_short] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_register] = ACTIONS(3326), + [anon_sym_inline] = ACTIONS(3326), + [anon_sym___inline] = ACTIONS(3326), + [anon_sym___inline__] = ACTIONS(3326), + [anon_sym___forceinline] = ACTIONS(3326), + [anon_sym_thread_local] = ACTIONS(3326), + [anon_sym___thread] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_constexpr] = ACTIONS(3326), + [anon_sym_volatile] = ACTIONS(3326), + [anon_sym_restrict] = ACTIONS(3326), + [anon_sym___restrict__] = ACTIONS(3326), + [anon_sym__Atomic] = ACTIONS(3326), + [anon_sym__Noreturn] = ACTIONS(3326), + [anon_sym_noreturn] = ACTIONS(3326), + [anon_sym__Nonnull] = ACTIONS(3326), + [anon_sym_mutable] = ACTIONS(3326), + [anon_sym_constinit] = ACTIONS(3326), + [anon_sym_consteval] = ACTIONS(3326), + [anon_sym_alignas] = ACTIONS(3326), + [anon_sym__Alignas] = ACTIONS(3326), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_union] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_goto] = ACTIONS(3326), + [anon_sym___try] = ACTIONS(3326), + [anon_sym___leave] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_compl] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_sizeof] = ACTIONS(3326), + [anon_sym___alignof__] = ACTIONS(3326), + [anon_sym___alignof] = ACTIONS(3326), + [anon_sym__alignof] = ACTIONS(3326), + [anon_sym_alignof] = ACTIONS(3326), + [anon_sym__Alignof] = ACTIONS(3326), + [anon_sym_offsetof] = ACTIONS(3326), + [anon_sym__Generic] = ACTIONS(3326), + [anon_sym_typename] = ACTIONS(3326), + [anon_sym_asm] = ACTIONS(3326), + [anon_sym___asm__] = ACTIONS(3326), + [anon_sym___asm] = ACTIONS(3326), + [sym_number_literal] = ACTIONS(3328), + [anon_sym_L_SQUOTE] = ACTIONS(3328), + [anon_sym_u_SQUOTE] = ACTIONS(3328), + [anon_sym_U_SQUOTE] = ACTIONS(3328), + [anon_sym_u8_SQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_L_DQUOTE] = ACTIONS(3328), + [anon_sym_u_DQUOTE] = ACTIONS(3328), + [anon_sym_U_DQUOTE] = ACTIONS(3328), + [anon_sym_u8_DQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [anon_sym_NULL] = ACTIONS(3326), + [anon_sym_nullptr] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3326), + [anon_sym_decltype] = ACTIONS(3326), + [anon_sym_explicit] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_template] = ACTIONS(3326), + [anon_sym_operator] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_static_assert] = ACTIONS(3326), + [anon_sym_concept] = ACTIONS(3326), + [anon_sym_co_return] = ACTIONS(3326), + [anon_sym_co_yield] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_R_DQUOTE] = ACTIONS(3328), + [anon_sym_LR_DQUOTE] = ACTIONS(3328), + [anon_sym_uR_DQUOTE] = ACTIONS(3328), + [anon_sym_UR_DQUOTE] = ACTIONS(3328), + [anon_sym_u8R_DQUOTE] = ACTIONS(3328), + [anon_sym_co_await] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_requires] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3328), + [anon_sym_LBRACK_COLON] = ACTIONS(3328), + [sym_this] = ACTIONS(3326), }, [STATE(531)] = { - [sym_catch_clause] = STATE(521), - [aux_sym_constructor_try_statement_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(3182), - [aux_sym_preproc_include_token1] = ACTIONS(3182), - [aux_sym_preproc_def_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token1] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), - [sym_preproc_directive] = ACTIONS(3182), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym___extension__] = ACTIONS(3182), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_virtual] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym___attribute__] = ACTIONS(3182), - [anon_sym___attribute] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [anon_sym___declspec] = ACTIONS(3182), - [anon_sym___based] = ACTIONS(3182), - [anon_sym___cdecl] = ACTIONS(3182), - [anon_sym___clrcall] = ACTIONS(3182), - [anon_sym___stdcall] = ACTIONS(3182), - [anon_sym___fastcall] = ACTIONS(3182), - [anon_sym___thiscall] = ACTIONS(3182), - [anon_sym___vectorcall] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_signed] = ACTIONS(3182), - [anon_sym_unsigned] = ACTIONS(3182), - [anon_sym_long] = ACTIONS(3182), - [anon_sym_short] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_register] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym___inline] = ACTIONS(3182), - [anon_sym___inline__] = ACTIONS(3182), - [anon_sym___forceinline] = ACTIONS(3182), - [anon_sym_thread_local] = ACTIONS(3182), - [anon_sym___thread] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_constexpr] = ACTIONS(3182), - [anon_sym_volatile] = ACTIONS(3182), - [anon_sym_restrict] = ACTIONS(3182), - [anon_sym___restrict__] = ACTIONS(3182), - [anon_sym__Atomic] = ACTIONS(3182), - [anon_sym__Noreturn] = ACTIONS(3182), - [anon_sym_noreturn] = ACTIONS(3182), - [anon_sym__Nonnull] = ACTIONS(3182), - [anon_sym_mutable] = ACTIONS(3182), - [anon_sym_constinit] = ACTIONS(3182), - [anon_sym_consteval] = ACTIONS(3182), - [anon_sym_alignas] = ACTIONS(3182), - [anon_sym__Alignas] = ACTIONS(3182), - [sym_primitive_type] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3182), - [anon_sym_union] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_goto] = ACTIONS(3182), - [anon_sym___try] = ACTIONS(3182), - [anon_sym___leave] = ACTIONS(3182), - [anon_sym_not] = ACTIONS(3182), - [anon_sym_compl] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_sizeof] = ACTIONS(3182), - [anon_sym___alignof__] = ACTIONS(3182), - [anon_sym___alignof] = ACTIONS(3182), - [anon_sym__alignof] = ACTIONS(3182), - [anon_sym_alignof] = ACTIONS(3182), - [anon_sym__Alignof] = ACTIONS(3182), - [anon_sym_offsetof] = ACTIONS(3182), - [anon_sym__Generic] = ACTIONS(3182), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_asm] = ACTIONS(3182), - [anon_sym___asm__] = ACTIONS(3182), - [anon_sym___asm] = ACTIONS(3182), - [sym_number_literal] = ACTIONS(3184), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3184), - [anon_sym_u_DQUOTE] = ACTIONS(3184), - [anon_sym_U_DQUOTE] = ACTIONS(3184), - [anon_sym_u8_DQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [anon_sym_NULL] = ACTIONS(3182), - [anon_sym_nullptr] = ACTIONS(3182), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3182), - [anon_sym_decltype] = ACTIONS(3182), - [anon_sym_explicit] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(3182), - [anon_sym_operator] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_static_assert] = ACTIONS(3182), - [anon_sym_concept] = ACTIONS(3182), - [anon_sym_co_return] = ACTIONS(3182), - [anon_sym_co_yield] = ACTIONS(3182), - [anon_sym_catch] = ACTIONS(4447), - [anon_sym_R_DQUOTE] = ACTIONS(3184), - [anon_sym_LR_DQUOTE] = ACTIONS(3184), - [anon_sym_uR_DQUOTE] = ACTIONS(3184), - [anon_sym_UR_DQUOTE] = ACTIONS(3184), - [anon_sym_u8R_DQUOTE] = ACTIONS(3184), - [anon_sym_co_await] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_requires] = ACTIONS(3182), - [anon_sym_CARET_CARET] = ACTIONS(3184), - [anon_sym_LBRACK_COLON] = ACTIONS(3184), - [sym_this] = ACTIONS(3182), + [sym_identifier] = ACTIONS(4460), + [aux_sym_preproc_include_token1] = ACTIONS(4460), + [aux_sym_preproc_def_token1] = ACTIONS(4460), + [aux_sym_preproc_if_token1] = ACTIONS(4460), + [aux_sym_preproc_if_token2] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4460), + [aux_sym_preproc_else_token1] = ACTIONS(4460), + [aux_sym_preproc_elif_token1] = ACTIONS(4460), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4460), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4460), + [sym_preproc_directive] = ACTIONS(4460), + [anon_sym_LPAREN2] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4460), + [anon_sym_PLUS] = ACTIONS(4460), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_AMP] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym___extension__] = ACTIONS(4460), + [anon_sym_typedef] = ACTIONS(4460), + [anon_sym_virtual] = ACTIONS(4460), + [anon_sym_extern] = ACTIONS(4460), + [anon_sym___attribute__] = ACTIONS(4460), + [anon_sym___attribute] = ACTIONS(4460), + [anon_sym_using] = ACTIONS(4460), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), + [anon_sym___declspec] = ACTIONS(4460), + [anon_sym___based] = ACTIONS(4460), + [anon_sym___cdecl] = ACTIONS(4460), + [anon_sym___clrcall] = ACTIONS(4460), + [anon_sym___stdcall] = ACTIONS(4460), + [anon_sym___fastcall] = ACTIONS(4460), + [anon_sym___thiscall] = ACTIONS(4460), + [anon_sym___vectorcall] = ACTIONS(4460), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_signed] = ACTIONS(4460), + [anon_sym_unsigned] = ACTIONS(4460), + [anon_sym_long] = ACTIONS(4460), + [anon_sym_short] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4460), + [anon_sym_static] = ACTIONS(4460), + [anon_sym_register] = ACTIONS(4460), + [anon_sym_inline] = ACTIONS(4460), + [anon_sym___inline] = ACTIONS(4460), + [anon_sym___inline__] = ACTIONS(4460), + [anon_sym___forceinline] = ACTIONS(4460), + [anon_sym_thread_local] = ACTIONS(4460), + [anon_sym___thread] = ACTIONS(4460), + [anon_sym_const] = ACTIONS(4460), + [anon_sym_constexpr] = ACTIONS(4460), + [anon_sym_volatile] = ACTIONS(4460), + [anon_sym_restrict] = ACTIONS(4460), + [anon_sym___restrict__] = ACTIONS(4460), + [anon_sym__Atomic] = ACTIONS(4460), + [anon_sym__Noreturn] = ACTIONS(4460), + [anon_sym_noreturn] = ACTIONS(4460), + [anon_sym__Nonnull] = ACTIONS(4460), + [anon_sym_mutable] = ACTIONS(4460), + [anon_sym_constinit] = ACTIONS(4460), + [anon_sym_consteval] = ACTIONS(4460), + [anon_sym_alignas] = ACTIONS(4460), + [anon_sym__Alignas] = ACTIONS(4460), + [sym_primitive_type] = ACTIONS(4460), + [anon_sym_enum] = ACTIONS(4460), + [anon_sym_class] = ACTIONS(4460), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_union] = ACTIONS(4460), + [anon_sym_if] = ACTIONS(4460), + [anon_sym_switch] = ACTIONS(4460), + [anon_sym_case] = ACTIONS(4460), + [anon_sym_default] = ACTIONS(4460), + [anon_sym_while] = ACTIONS(4460), + [anon_sym_do] = ACTIONS(4460), + [anon_sym_for] = ACTIONS(4460), + [anon_sym_return] = ACTIONS(4460), + [anon_sym_break] = ACTIONS(4460), + [anon_sym_continue] = ACTIONS(4460), + [anon_sym_goto] = ACTIONS(4460), + [anon_sym_not] = ACTIONS(4460), + [anon_sym_compl] = ACTIONS(4460), + [anon_sym_DASH_DASH] = ACTIONS(4462), + [anon_sym_PLUS_PLUS] = ACTIONS(4462), + [anon_sym_sizeof] = ACTIONS(4460), + [anon_sym___alignof__] = ACTIONS(4460), + [anon_sym___alignof] = ACTIONS(4460), + [anon_sym__alignof] = ACTIONS(4460), + [anon_sym_alignof] = ACTIONS(4460), + [anon_sym__Alignof] = ACTIONS(4460), + [anon_sym_offsetof] = ACTIONS(4460), + [anon_sym__Generic] = ACTIONS(4460), + [anon_sym_typename] = ACTIONS(4460), + [anon_sym_asm] = ACTIONS(4460), + [anon_sym___asm__] = ACTIONS(4460), + [anon_sym___asm] = ACTIONS(4460), + [sym_number_literal] = ACTIONS(4462), + [anon_sym_L_SQUOTE] = ACTIONS(4462), + [anon_sym_u_SQUOTE] = ACTIONS(4462), + [anon_sym_U_SQUOTE] = ACTIONS(4462), + [anon_sym_u8_SQUOTE] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4462), + [anon_sym_L_DQUOTE] = ACTIONS(4462), + [anon_sym_u_DQUOTE] = ACTIONS(4462), + [anon_sym_U_DQUOTE] = ACTIONS(4462), + [anon_sym_u8_DQUOTE] = ACTIONS(4462), + [anon_sym_DQUOTE] = ACTIONS(4462), + [sym_true] = ACTIONS(4460), + [sym_false] = ACTIONS(4460), + [anon_sym_NULL] = ACTIONS(4460), + [anon_sym_nullptr] = ACTIONS(4460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4460), + [anon_sym_decltype] = ACTIONS(4460), + [anon_sym_explicit] = ACTIONS(4460), + [anon_sym_export] = ACTIONS(4460), + [anon_sym_module] = ACTIONS(4460), + [anon_sym_import] = ACTIONS(4460), + [anon_sym_template] = ACTIONS(4460), + [anon_sym_operator] = ACTIONS(4460), + [anon_sym_try] = ACTIONS(4460), + [anon_sym_delete] = ACTIONS(4460), + [anon_sym_throw] = ACTIONS(4460), + [anon_sym_namespace] = ACTIONS(4460), + [anon_sym_static_assert] = ACTIONS(4460), + [anon_sym_concept] = ACTIONS(4460), + [anon_sym_co_return] = ACTIONS(4460), + [anon_sym_co_yield] = ACTIONS(4460), + [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(4460), + [anon_sym_new] = ACTIONS(4460), + [anon_sym_requires] = ACTIONS(4460), + [anon_sym_CARET_CARET] = ACTIONS(4462), + [anon_sym_LBRACK_COLON] = ACTIONS(4462), + [sym_this] = ACTIONS(4460), }, [STATE(532)] = { - [sym_identifier] = ACTIONS(4472), - [aux_sym_preproc_include_token1] = ACTIONS(4472), - [aux_sym_preproc_def_token1] = ACTIONS(4472), - [aux_sym_preproc_if_token1] = ACTIONS(4472), - [aux_sym_preproc_if_token2] = ACTIONS(4472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), - [aux_sym_preproc_else_token1] = ACTIONS(4472), - [aux_sym_preproc_elif_token1] = ACTIONS(4472), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4472), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4472), - [sym_preproc_directive] = ACTIONS(4472), - [anon_sym_LPAREN2] = ACTIONS(4474), - [anon_sym_BANG] = ACTIONS(4474), - [anon_sym_TILDE] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4472), - [anon_sym_STAR] = ACTIONS(4474), - [anon_sym_AMP_AMP] = ACTIONS(4474), - [anon_sym_AMP] = ACTIONS(4472), - [anon_sym_SEMI] = ACTIONS(4474), - [anon_sym___extension__] = ACTIONS(4472), - [anon_sym_typedef] = ACTIONS(4472), - [anon_sym_virtual] = ACTIONS(4472), - [anon_sym_extern] = ACTIONS(4472), - [anon_sym___attribute__] = ACTIONS(4472), - [anon_sym___attribute] = ACTIONS(4472), - [anon_sym_using] = ACTIONS(4472), - [anon_sym_COLON_COLON] = ACTIONS(4474), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4474), - [anon_sym___declspec] = ACTIONS(4472), - [anon_sym___based] = ACTIONS(4472), - [anon_sym___cdecl] = ACTIONS(4472), - [anon_sym___clrcall] = ACTIONS(4472), - [anon_sym___stdcall] = ACTIONS(4472), - [anon_sym___fastcall] = ACTIONS(4472), - [anon_sym___thiscall] = ACTIONS(4472), - [anon_sym___vectorcall] = ACTIONS(4472), - [anon_sym_LBRACE] = ACTIONS(4474), - [anon_sym_signed] = ACTIONS(4472), - [anon_sym_unsigned] = ACTIONS(4472), - [anon_sym_long] = ACTIONS(4472), - [anon_sym_short] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_static] = ACTIONS(4472), - [anon_sym_register] = ACTIONS(4472), - [anon_sym_inline] = ACTIONS(4472), - [anon_sym___inline] = ACTIONS(4472), - [anon_sym___inline__] = ACTIONS(4472), - [anon_sym___forceinline] = ACTIONS(4472), - [anon_sym_thread_local] = ACTIONS(4472), - [anon_sym___thread] = ACTIONS(4472), - [anon_sym_const] = ACTIONS(4472), - [anon_sym_constexpr] = ACTIONS(4472), - [anon_sym_volatile] = ACTIONS(4472), - [anon_sym_restrict] = ACTIONS(4472), - [anon_sym___restrict__] = ACTIONS(4472), - [anon_sym__Atomic] = ACTIONS(4472), - [anon_sym__Noreturn] = ACTIONS(4472), - [anon_sym_noreturn] = ACTIONS(4472), - [anon_sym__Nonnull] = ACTIONS(4472), - [anon_sym_mutable] = ACTIONS(4472), - [anon_sym_constinit] = ACTIONS(4472), - [anon_sym_consteval] = ACTIONS(4472), - [anon_sym_alignas] = ACTIONS(4472), - [anon_sym__Alignas] = ACTIONS(4472), - [sym_primitive_type] = ACTIONS(4472), - [anon_sym_enum] = ACTIONS(4472), - [anon_sym_class] = ACTIONS(4472), - [anon_sym_struct] = ACTIONS(4472), - [anon_sym_union] = ACTIONS(4472), - [anon_sym_if] = ACTIONS(4472), - [anon_sym_switch] = ACTIONS(4472), - [anon_sym_case] = ACTIONS(4472), - [anon_sym_default] = ACTIONS(4472), - [anon_sym_while] = ACTIONS(4472), - [anon_sym_do] = ACTIONS(4472), - [anon_sym_for] = ACTIONS(4472), - [anon_sym_return] = ACTIONS(4472), - [anon_sym_break] = ACTIONS(4472), - [anon_sym_continue] = ACTIONS(4472), - [anon_sym_goto] = ACTIONS(4472), - [anon_sym_not] = ACTIONS(4472), - [anon_sym_compl] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4474), - [anon_sym_PLUS_PLUS] = ACTIONS(4474), - [anon_sym_sizeof] = ACTIONS(4472), - [anon_sym___alignof__] = ACTIONS(4472), - [anon_sym___alignof] = ACTIONS(4472), - [anon_sym__alignof] = ACTIONS(4472), - [anon_sym_alignof] = ACTIONS(4472), - [anon_sym__Alignof] = ACTIONS(4472), - [anon_sym_offsetof] = ACTIONS(4472), - [anon_sym__Generic] = ACTIONS(4472), - [anon_sym_typename] = ACTIONS(4472), - [anon_sym_asm] = ACTIONS(4472), - [anon_sym___asm__] = ACTIONS(4472), - [anon_sym___asm] = ACTIONS(4472), - [sym_number_literal] = ACTIONS(4474), - [anon_sym_L_SQUOTE] = ACTIONS(4474), - [anon_sym_u_SQUOTE] = ACTIONS(4474), - [anon_sym_U_SQUOTE] = ACTIONS(4474), - [anon_sym_u8_SQUOTE] = ACTIONS(4474), - [anon_sym_SQUOTE] = ACTIONS(4474), - [anon_sym_L_DQUOTE] = ACTIONS(4474), - [anon_sym_u_DQUOTE] = ACTIONS(4474), - [anon_sym_U_DQUOTE] = ACTIONS(4474), - [anon_sym_u8_DQUOTE] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(4474), - [sym_true] = ACTIONS(4472), - [sym_false] = ACTIONS(4472), - [anon_sym_NULL] = ACTIONS(4472), - [anon_sym_nullptr] = ACTIONS(4472), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4472), - [anon_sym_decltype] = ACTIONS(4472), - [anon_sym_explicit] = ACTIONS(4472), - [anon_sym_export] = ACTIONS(4472), - [anon_sym_module] = ACTIONS(4472), - [anon_sym_import] = ACTIONS(4472), - [anon_sym_template] = ACTIONS(4472), - [anon_sym_operator] = ACTIONS(4472), - [anon_sym_try] = ACTIONS(4472), - [anon_sym_delete] = ACTIONS(4472), - [anon_sym_throw] = ACTIONS(4472), - [anon_sym_namespace] = ACTIONS(4472), - [anon_sym_static_assert] = ACTIONS(4472), - [anon_sym_concept] = ACTIONS(4472), - [anon_sym_co_return] = ACTIONS(4472), - [anon_sym_co_yield] = ACTIONS(4472), - [anon_sym_R_DQUOTE] = ACTIONS(4474), - [anon_sym_LR_DQUOTE] = ACTIONS(4474), - [anon_sym_uR_DQUOTE] = ACTIONS(4474), - [anon_sym_UR_DQUOTE] = ACTIONS(4474), - [anon_sym_u8R_DQUOTE] = ACTIONS(4474), - [anon_sym_co_await] = ACTIONS(4472), - [anon_sym_new] = ACTIONS(4472), - [anon_sym_requires] = ACTIONS(4472), - [anon_sym_CARET_CARET] = ACTIONS(4474), - [anon_sym_LBRACK_COLON] = ACTIONS(4474), - [sym_this] = ACTIONS(4472), + [sym_identifier] = ACTIONS(4464), + [aux_sym_preproc_include_token1] = ACTIONS(4464), + [aux_sym_preproc_def_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token2] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4464), + [aux_sym_preproc_else_token1] = ACTIONS(4464), + [aux_sym_preproc_elif_token1] = ACTIONS(4464), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4464), + [sym_preproc_directive] = ACTIONS(4464), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_TILDE] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4467), + [anon_sym___extension__] = ACTIONS(4464), + [anon_sym_typedef] = ACTIONS(4464), + [anon_sym_virtual] = ACTIONS(4464), + [anon_sym_extern] = ACTIONS(4464), + [anon_sym___attribute__] = ACTIONS(4464), + [anon_sym___attribute] = ACTIONS(4464), + [anon_sym_using] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4467), + [anon_sym___declspec] = ACTIONS(4464), + [anon_sym___based] = ACTIONS(4464), + [anon_sym___cdecl] = ACTIONS(4464), + [anon_sym___clrcall] = ACTIONS(4464), + [anon_sym___stdcall] = ACTIONS(4464), + [anon_sym___fastcall] = ACTIONS(4464), + [anon_sym___thiscall] = ACTIONS(4464), + [anon_sym___vectorcall] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_signed] = ACTIONS(4464), + [anon_sym_unsigned] = ACTIONS(4464), + [anon_sym_long] = ACTIONS(4464), + [anon_sym_short] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_static] = ACTIONS(4464), + [anon_sym_register] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym___inline] = ACTIONS(4464), + [anon_sym___inline__] = ACTIONS(4464), + [anon_sym___forceinline] = ACTIONS(4464), + [anon_sym_thread_local] = ACTIONS(4464), + [anon_sym___thread] = ACTIONS(4464), + [anon_sym_const] = ACTIONS(4464), + [anon_sym_constexpr] = ACTIONS(4464), + [anon_sym_volatile] = ACTIONS(4464), + [anon_sym_restrict] = ACTIONS(4464), + [anon_sym___restrict__] = ACTIONS(4464), + [anon_sym__Atomic] = ACTIONS(4464), + [anon_sym__Noreturn] = ACTIONS(4464), + [anon_sym_noreturn] = ACTIONS(4464), + [anon_sym__Nonnull] = ACTIONS(4464), + [anon_sym_mutable] = ACTIONS(4464), + [anon_sym_constinit] = ACTIONS(4464), + [anon_sym_consteval] = ACTIONS(4464), + [anon_sym_alignas] = ACTIONS(4464), + [anon_sym__Alignas] = ACTIONS(4464), + [sym_primitive_type] = ACTIONS(4464), + [anon_sym_enum] = ACTIONS(4464), + [anon_sym_class] = ACTIONS(4464), + [anon_sym_struct] = ACTIONS(4464), + [anon_sym_union] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_switch] = ACTIONS(4464), + [anon_sym_case] = ACTIONS(4464), + [anon_sym_default] = ACTIONS(4464), + [anon_sym_while] = ACTIONS(4464), + [anon_sym_do] = ACTIONS(4464), + [anon_sym_for] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_break] = ACTIONS(4464), + [anon_sym_continue] = ACTIONS(4464), + [anon_sym_goto] = ACTIONS(4464), + [anon_sym_not] = ACTIONS(4464), + [anon_sym_compl] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4467), + [anon_sym_PLUS_PLUS] = ACTIONS(4467), + [anon_sym_sizeof] = ACTIONS(4464), + [anon_sym___alignof__] = ACTIONS(4464), + [anon_sym___alignof] = ACTIONS(4464), + [anon_sym__alignof] = ACTIONS(4464), + [anon_sym_alignof] = ACTIONS(4464), + [anon_sym__Alignof] = ACTIONS(4464), + [anon_sym_offsetof] = ACTIONS(4464), + [anon_sym__Generic] = ACTIONS(4464), + [anon_sym_typename] = ACTIONS(4464), + [anon_sym_asm] = ACTIONS(4464), + [anon_sym___asm__] = ACTIONS(4464), + [anon_sym___asm] = ACTIONS(4464), + [sym_number_literal] = ACTIONS(4467), + [anon_sym_L_SQUOTE] = ACTIONS(4467), + [anon_sym_u_SQUOTE] = ACTIONS(4467), + [anon_sym_U_SQUOTE] = ACTIONS(4467), + [anon_sym_u8_SQUOTE] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4467), + [anon_sym_L_DQUOTE] = ACTIONS(4467), + [anon_sym_u_DQUOTE] = ACTIONS(4467), + [anon_sym_U_DQUOTE] = ACTIONS(4467), + [anon_sym_u8_DQUOTE] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4467), + [sym_true] = ACTIONS(4464), + [sym_false] = ACTIONS(4464), + [anon_sym_NULL] = ACTIONS(4464), + [anon_sym_nullptr] = ACTIONS(4464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4464), + [anon_sym_decltype] = ACTIONS(4464), + [anon_sym_explicit] = ACTIONS(4464), + [anon_sym_export] = ACTIONS(4464), + [anon_sym_module] = ACTIONS(4464), + [anon_sym_import] = ACTIONS(4464), + [anon_sym_template] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_delete] = ACTIONS(4464), + [anon_sym_throw] = ACTIONS(4464), + [anon_sym_namespace] = ACTIONS(4464), + [anon_sym_static_assert] = ACTIONS(4464), + [anon_sym_concept] = ACTIONS(4464), + [anon_sym_co_return] = ACTIONS(4464), + [anon_sym_co_yield] = ACTIONS(4464), + [anon_sym_R_DQUOTE] = ACTIONS(4467), + [anon_sym_LR_DQUOTE] = ACTIONS(4467), + [anon_sym_uR_DQUOTE] = ACTIONS(4467), + [anon_sym_UR_DQUOTE] = ACTIONS(4467), + [anon_sym_u8R_DQUOTE] = ACTIONS(4467), + [anon_sym_co_await] = ACTIONS(4464), + [anon_sym_new] = ACTIONS(4464), + [anon_sym_requires] = ACTIONS(4464), + [anon_sym_CARET_CARET] = ACTIONS(4467), + [anon_sym_LBRACK_COLON] = ACTIONS(4467), + [sym_this] = ACTIONS(4464), }, [STATE(533)] = { - [sym_identifier] = ACTIONS(4476), - [aux_sym_preproc_include_token1] = ACTIONS(4476), - [aux_sym_preproc_def_token1] = ACTIONS(4476), - [aux_sym_preproc_if_token1] = ACTIONS(4476), - [aux_sym_preproc_if_token2] = ACTIONS(4476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4476), - [aux_sym_preproc_else_token1] = ACTIONS(4476), - [aux_sym_preproc_elif_token1] = ACTIONS(4476), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4476), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4476), - [sym_preproc_directive] = ACTIONS(4476), - [anon_sym_LPAREN2] = ACTIONS(4478), - [anon_sym_BANG] = ACTIONS(4478), - [anon_sym_TILDE] = ACTIONS(4478), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_AMP_AMP] = ACTIONS(4478), - [anon_sym_AMP] = ACTIONS(4476), - [anon_sym_SEMI] = ACTIONS(4478), - [anon_sym___extension__] = ACTIONS(4476), - [anon_sym_typedef] = ACTIONS(4476), - [anon_sym_virtual] = ACTIONS(4476), - [anon_sym_extern] = ACTIONS(4476), - [anon_sym___attribute__] = ACTIONS(4476), - [anon_sym___attribute] = ACTIONS(4476), - [anon_sym_using] = ACTIONS(4476), - [anon_sym_COLON_COLON] = ACTIONS(4478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), - [anon_sym___declspec] = ACTIONS(4476), - [anon_sym___based] = ACTIONS(4476), - [anon_sym___cdecl] = ACTIONS(4476), - [anon_sym___clrcall] = ACTIONS(4476), - [anon_sym___stdcall] = ACTIONS(4476), - [anon_sym___fastcall] = ACTIONS(4476), - [anon_sym___thiscall] = ACTIONS(4476), - [anon_sym___vectorcall] = ACTIONS(4476), - [anon_sym_LBRACE] = ACTIONS(4478), - [anon_sym_signed] = ACTIONS(4476), - [anon_sym_unsigned] = ACTIONS(4476), - [anon_sym_long] = ACTIONS(4476), - [anon_sym_short] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_static] = ACTIONS(4476), - [anon_sym_register] = ACTIONS(4476), - [anon_sym_inline] = ACTIONS(4476), - [anon_sym___inline] = ACTIONS(4476), - [anon_sym___inline__] = ACTIONS(4476), - [anon_sym___forceinline] = ACTIONS(4476), - [anon_sym_thread_local] = ACTIONS(4476), - [anon_sym___thread] = ACTIONS(4476), - [anon_sym_const] = ACTIONS(4476), - [anon_sym_constexpr] = ACTIONS(4476), - [anon_sym_volatile] = ACTIONS(4476), - [anon_sym_restrict] = ACTIONS(4476), - [anon_sym___restrict__] = ACTIONS(4476), - [anon_sym__Atomic] = ACTIONS(4476), - [anon_sym__Noreturn] = ACTIONS(4476), - [anon_sym_noreturn] = ACTIONS(4476), - [anon_sym__Nonnull] = ACTIONS(4476), - [anon_sym_mutable] = ACTIONS(4476), - [anon_sym_constinit] = ACTIONS(4476), - [anon_sym_consteval] = ACTIONS(4476), - [anon_sym_alignas] = ACTIONS(4476), - [anon_sym__Alignas] = ACTIONS(4476), - [sym_primitive_type] = ACTIONS(4476), - [anon_sym_enum] = ACTIONS(4476), - [anon_sym_class] = ACTIONS(4476), - [anon_sym_struct] = ACTIONS(4476), - [anon_sym_union] = ACTIONS(4476), - [anon_sym_if] = ACTIONS(4476), - [anon_sym_switch] = ACTIONS(4476), - [anon_sym_case] = ACTIONS(4476), - [anon_sym_default] = ACTIONS(4476), - [anon_sym_while] = ACTIONS(4476), - [anon_sym_do] = ACTIONS(4476), - [anon_sym_for] = ACTIONS(4476), - [anon_sym_return] = ACTIONS(4476), - [anon_sym_break] = ACTIONS(4476), - [anon_sym_continue] = ACTIONS(4476), - [anon_sym_goto] = ACTIONS(4476), - [anon_sym_not] = ACTIONS(4476), - [anon_sym_compl] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4478), - [anon_sym_sizeof] = ACTIONS(4476), - [anon_sym___alignof__] = ACTIONS(4476), - [anon_sym___alignof] = ACTIONS(4476), - [anon_sym__alignof] = ACTIONS(4476), - [anon_sym_alignof] = ACTIONS(4476), - [anon_sym__Alignof] = ACTIONS(4476), - [anon_sym_offsetof] = ACTIONS(4476), - [anon_sym__Generic] = ACTIONS(4476), - [anon_sym_typename] = ACTIONS(4476), - [anon_sym_asm] = ACTIONS(4476), - [anon_sym___asm__] = ACTIONS(4476), - [anon_sym___asm] = ACTIONS(4476), - [sym_number_literal] = ACTIONS(4478), - [anon_sym_L_SQUOTE] = ACTIONS(4478), - [anon_sym_u_SQUOTE] = ACTIONS(4478), - [anon_sym_U_SQUOTE] = ACTIONS(4478), - [anon_sym_u8_SQUOTE] = ACTIONS(4478), - [anon_sym_SQUOTE] = ACTIONS(4478), - [anon_sym_L_DQUOTE] = ACTIONS(4478), - [anon_sym_u_DQUOTE] = ACTIONS(4478), - [anon_sym_U_DQUOTE] = ACTIONS(4478), - [anon_sym_u8_DQUOTE] = ACTIONS(4478), - [anon_sym_DQUOTE] = ACTIONS(4478), - [sym_true] = ACTIONS(4476), - [sym_false] = ACTIONS(4476), - [anon_sym_NULL] = ACTIONS(4476), - [anon_sym_nullptr] = ACTIONS(4476), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4476), - [anon_sym_decltype] = ACTIONS(4476), - [anon_sym_explicit] = ACTIONS(4476), - [anon_sym_export] = ACTIONS(4476), - [anon_sym_module] = ACTIONS(4476), - [anon_sym_import] = ACTIONS(4476), - [anon_sym_template] = ACTIONS(4476), - [anon_sym_operator] = ACTIONS(4476), - [anon_sym_try] = ACTIONS(4476), - [anon_sym_delete] = ACTIONS(4476), - [anon_sym_throw] = ACTIONS(4476), - [anon_sym_namespace] = ACTIONS(4476), - [anon_sym_static_assert] = ACTIONS(4476), - [anon_sym_concept] = ACTIONS(4476), - [anon_sym_co_return] = ACTIONS(4476), - [anon_sym_co_yield] = ACTIONS(4476), - [anon_sym_R_DQUOTE] = ACTIONS(4478), - [anon_sym_LR_DQUOTE] = ACTIONS(4478), - [anon_sym_uR_DQUOTE] = ACTIONS(4478), - [anon_sym_UR_DQUOTE] = ACTIONS(4478), - [anon_sym_u8R_DQUOTE] = ACTIONS(4478), - [anon_sym_co_await] = ACTIONS(4476), - [anon_sym_new] = ACTIONS(4476), - [anon_sym_requires] = ACTIONS(4476), - [anon_sym_CARET_CARET] = ACTIONS(4478), - [anon_sym_LBRACK_COLON] = ACTIONS(4478), - [sym_this] = ACTIONS(4476), + [sym_identifier] = ACTIONS(4470), + [aux_sym_preproc_include_token1] = ACTIONS(4470), + [aux_sym_preproc_def_token1] = ACTIONS(4470), + [aux_sym_preproc_if_token1] = ACTIONS(4470), + [aux_sym_preproc_if_token2] = ACTIONS(4470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4470), + [aux_sym_preproc_else_token1] = ACTIONS(4470), + [aux_sym_preproc_elif_token1] = ACTIONS(4470), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4470), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4470), + [sym_preproc_directive] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_AMP] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4472), + [anon_sym___extension__] = ACTIONS(4470), + [anon_sym_typedef] = ACTIONS(4470), + [anon_sym_virtual] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4470), + [anon_sym___attribute__] = ACTIONS(4470), + [anon_sym___attribute] = ACTIONS(4470), + [anon_sym_using] = ACTIONS(4470), + [anon_sym_COLON_COLON] = ACTIONS(4472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4472), + [anon_sym___declspec] = ACTIONS(4470), + [anon_sym___based] = ACTIONS(4470), + [anon_sym___cdecl] = ACTIONS(4470), + [anon_sym___clrcall] = ACTIONS(4470), + [anon_sym___stdcall] = ACTIONS(4470), + [anon_sym___fastcall] = ACTIONS(4470), + [anon_sym___thiscall] = ACTIONS(4470), + [anon_sym___vectorcall] = ACTIONS(4470), + [anon_sym_LBRACE] = ACTIONS(4472), + [anon_sym_signed] = ACTIONS(4470), + [anon_sym_unsigned] = ACTIONS(4470), + [anon_sym_long] = ACTIONS(4470), + [anon_sym_short] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_static] = ACTIONS(4470), + [anon_sym_register] = ACTIONS(4470), + [anon_sym_inline] = ACTIONS(4470), + [anon_sym___inline] = ACTIONS(4470), + [anon_sym___inline__] = ACTIONS(4470), + [anon_sym___forceinline] = ACTIONS(4470), + [anon_sym_thread_local] = ACTIONS(4470), + [anon_sym___thread] = ACTIONS(4470), + [anon_sym_const] = ACTIONS(4470), + [anon_sym_constexpr] = ACTIONS(4470), + [anon_sym_volatile] = ACTIONS(4470), + [anon_sym_restrict] = ACTIONS(4470), + [anon_sym___restrict__] = ACTIONS(4470), + [anon_sym__Atomic] = ACTIONS(4470), + [anon_sym__Noreturn] = ACTIONS(4470), + [anon_sym_noreturn] = ACTIONS(4470), + [anon_sym__Nonnull] = ACTIONS(4470), + [anon_sym_mutable] = ACTIONS(4470), + [anon_sym_constinit] = ACTIONS(4470), + [anon_sym_consteval] = ACTIONS(4470), + [anon_sym_alignas] = ACTIONS(4470), + [anon_sym__Alignas] = ACTIONS(4470), + [sym_primitive_type] = ACTIONS(4470), + [anon_sym_enum] = ACTIONS(4470), + [anon_sym_class] = ACTIONS(4470), + [anon_sym_struct] = ACTIONS(4470), + [anon_sym_union] = ACTIONS(4470), + [anon_sym_if] = ACTIONS(4470), + [anon_sym_switch] = ACTIONS(4470), + [anon_sym_case] = ACTIONS(4470), + [anon_sym_default] = ACTIONS(4470), + [anon_sym_while] = ACTIONS(4470), + [anon_sym_do] = ACTIONS(4470), + [anon_sym_for] = ACTIONS(4470), + [anon_sym_return] = ACTIONS(4470), + [anon_sym_break] = ACTIONS(4470), + [anon_sym_continue] = ACTIONS(4470), + [anon_sym_goto] = ACTIONS(4470), + [anon_sym_not] = ACTIONS(4470), + [anon_sym_compl] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(4472), + [anon_sym_PLUS_PLUS] = ACTIONS(4472), + [anon_sym_sizeof] = ACTIONS(4470), + [anon_sym___alignof__] = ACTIONS(4470), + [anon_sym___alignof] = ACTIONS(4470), + [anon_sym__alignof] = ACTIONS(4470), + [anon_sym_alignof] = ACTIONS(4470), + [anon_sym__Alignof] = ACTIONS(4470), + [anon_sym_offsetof] = ACTIONS(4470), + [anon_sym__Generic] = ACTIONS(4470), + [anon_sym_typename] = ACTIONS(4470), + [anon_sym_asm] = ACTIONS(4470), + [anon_sym___asm__] = ACTIONS(4470), + [anon_sym___asm] = ACTIONS(4470), + [sym_number_literal] = ACTIONS(4472), + [anon_sym_L_SQUOTE] = ACTIONS(4472), + [anon_sym_u_SQUOTE] = ACTIONS(4472), + [anon_sym_U_SQUOTE] = ACTIONS(4472), + [anon_sym_u8_SQUOTE] = ACTIONS(4472), + [anon_sym_SQUOTE] = ACTIONS(4472), + [anon_sym_L_DQUOTE] = ACTIONS(4472), + [anon_sym_u_DQUOTE] = ACTIONS(4472), + [anon_sym_U_DQUOTE] = ACTIONS(4472), + [anon_sym_u8_DQUOTE] = ACTIONS(4472), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_true] = ACTIONS(4470), + [sym_false] = ACTIONS(4470), + [anon_sym_NULL] = ACTIONS(4470), + [anon_sym_nullptr] = ACTIONS(4470), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4470), + [anon_sym_decltype] = ACTIONS(4470), + [anon_sym_explicit] = ACTIONS(4470), + [anon_sym_export] = ACTIONS(4470), + [anon_sym_module] = ACTIONS(4470), + [anon_sym_import] = ACTIONS(4470), + [anon_sym_template] = ACTIONS(4470), + [anon_sym_operator] = ACTIONS(4470), + [anon_sym_try] = ACTIONS(4470), + [anon_sym_delete] = ACTIONS(4470), + [anon_sym_throw] = ACTIONS(4470), + [anon_sym_namespace] = ACTIONS(4470), + [anon_sym_static_assert] = ACTIONS(4470), + [anon_sym_concept] = ACTIONS(4470), + [anon_sym_co_return] = ACTIONS(4470), + [anon_sym_co_yield] = ACTIONS(4470), + [anon_sym_R_DQUOTE] = ACTIONS(4472), + [anon_sym_LR_DQUOTE] = ACTIONS(4472), + [anon_sym_uR_DQUOTE] = ACTIONS(4472), + [anon_sym_UR_DQUOTE] = ACTIONS(4472), + [anon_sym_u8R_DQUOTE] = ACTIONS(4472), + [anon_sym_co_await] = ACTIONS(4470), + [anon_sym_new] = ACTIONS(4470), + [anon_sym_requires] = ACTIONS(4470), + [anon_sym_CARET_CARET] = ACTIONS(4472), + [anon_sym_LBRACK_COLON] = ACTIONS(4472), + [sym_this] = ACTIONS(4470), }, [STATE(534)] = { - [sym_identifier] = ACTIONS(3155), - [aux_sym_preproc_include_token1] = ACTIONS(3155), - [aux_sym_preproc_def_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token2] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), - [sym_preproc_directive] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym___attribute] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym___cdecl] = ACTIONS(3155), - [anon_sym___clrcall] = ACTIONS(3155), - [anon_sym___stdcall] = ACTIONS(3155), - [anon_sym___fastcall] = ACTIONS(3155), - [anon_sym___thiscall] = ACTIONS(3155), - [anon_sym___vectorcall] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym__Nonnull] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym__Alignas] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_default] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym___try] = ACTIONS(3155), - [anon_sym___leave] = ACTIONS(3155), - [anon_sym_not] = ACTIONS(3155), - [anon_sym_compl] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3155), - [anon_sym__Generic] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym___asm__] = ACTIONS(3155), - [anon_sym___asm] = ACTIONS(3155), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_L_SQUOTE] = ACTIONS(3153), - [anon_sym_u_SQUOTE] = ACTIONS(3153), - [anon_sym_U_SQUOTE] = ACTIONS(3153), - [anon_sym_u8_SQUOTE] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3153), - [anon_sym_L_DQUOTE] = ACTIONS(3153), - [anon_sym_u_DQUOTE] = ACTIONS(3153), - [anon_sym_U_DQUOTE] = ACTIONS(3153), - [anon_sym_u8_DQUOTE] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [anon_sym_NULL] = ACTIONS(3155), - [anon_sym_nullptr] = ACTIONS(3155), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_export] = ACTIONS(3155), - [anon_sym_module] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_delete] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_namespace] = ACTIONS(3155), - [anon_sym_static_assert] = ACTIONS(3155), - [anon_sym_concept] = ACTIONS(3155), - [anon_sym_co_return] = ACTIONS(3155), - [anon_sym_co_yield] = ACTIONS(3155), - [anon_sym_catch] = ACTIONS(3155), - [anon_sym_R_DQUOTE] = ACTIONS(3153), - [anon_sym_LR_DQUOTE] = ACTIONS(3153), - [anon_sym_uR_DQUOTE] = ACTIONS(3153), - [anon_sym_UR_DQUOTE] = ACTIONS(3153), - [anon_sym_u8R_DQUOTE] = ACTIONS(3153), - [anon_sym_co_await] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_requires] = ACTIONS(3155), - [anon_sym_CARET_CARET] = ACTIONS(3153), - [anon_sym_LBRACK_COLON] = ACTIONS(3153), - [sym_this] = ACTIONS(3155), + [sym_identifier] = ACTIONS(4474), + [aux_sym_preproc_include_token1] = ACTIONS(4474), + [aux_sym_preproc_def_token1] = ACTIONS(4474), + [aux_sym_preproc_if_token1] = ACTIONS(4474), + [aux_sym_preproc_if_token2] = ACTIONS(4474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4474), + [aux_sym_preproc_else_token1] = ACTIONS(4474), + [aux_sym_preproc_elif_token1] = ACTIONS(4474), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4474), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4474), + [sym_preproc_directive] = ACTIONS(4474), + [anon_sym_LPAREN2] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4476), + [anon_sym___extension__] = ACTIONS(4474), + [anon_sym_typedef] = ACTIONS(4474), + [anon_sym_virtual] = ACTIONS(4474), + [anon_sym_extern] = ACTIONS(4474), + [anon_sym___attribute__] = ACTIONS(4474), + [anon_sym___attribute] = ACTIONS(4474), + [anon_sym_using] = ACTIONS(4474), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4476), + [anon_sym___declspec] = ACTIONS(4474), + [anon_sym___based] = ACTIONS(4474), + [anon_sym___cdecl] = ACTIONS(4474), + [anon_sym___clrcall] = ACTIONS(4474), + [anon_sym___stdcall] = ACTIONS(4474), + [anon_sym___fastcall] = ACTIONS(4474), + [anon_sym___thiscall] = ACTIONS(4474), + [anon_sym___vectorcall] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4476), + [anon_sym_signed] = ACTIONS(4474), + [anon_sym_unsigned] = ACTIONS(4474), + [anon_sym_long] = ACTIONS(4474), + [anon_sym_short] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_static] = ACTIONS(4474), + [anon_sym_register] = ACTIONS(4474), + [anon_sym_inline] = ACTIONS(4474), + [anon_sym___inline] = ACTIONS(4474), + [anon_sym___inline__] = ACTIONS(4474), + [anon_sym___forceinline] = ACTIONS(4474), + [anon_sym_thread_local] = ACTIONS(4474), + [anon_sym___thread] = ACTIONS(4474), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_constexpr] = ACTIONS(4474), + [anon_sym_volatile] = ACTIONS(4474), + [anon_sym_restrict] = ACTIONS(4474), + [anon_sym___restrict__] = ACTIONS(4474), + [anon_sym__Atomic] = ACTIONS(4474), + [anon_sym__Noreturn] = ACTIONS(4474), + [anon_sym_noreturn] = ACTIONS(4474), + [anon_sym__Nonnull] = ACTIONS(4474), + [anon_sym_mutable] = ACTIONS(4474), + [anon_sym_constinit] = ACTIONS(4474), + [anon_sym_consteval] = ACTIONS(4474), + [anon_sym_alignas] = ACTIONS(4474), + [anon_sym__Alignas] = ACTIONS(4474), + [sym_primitive_type] = ACTIONS(4474), + [anon_sym_enum] = ACTIONS(4474), + [anon_sym_class] = ACTIONS(4474), + [anon_sym_struct] = ACTIONS(4474), + [anon_sym_union] = ACTIONS(4474), + [anon_sym_if] = ACTIONS(4474), + [anon_sym_switch] = ACTIONS(4474), + [anon_sym_case] = ACTIONS(4474), + [anon_sym_default] = ACTIONS(4474), + [anon_sym_while] = ACTIONS(4474), + [anon_sym_do] = ACTIONS(4474), + [anon_sym_for] = ACTIONS(4474), + [anon_sym_return] = ACTIONS(4474), + [anon_sym_break] = ACTIONS(4474), + [anon_sym_continue] = ACTIONS(4474), + [anon_sym_goto] = ACTIONS(4474), + [anon_sym_not] = ACTIONS(4474), + [anon_sym_compl] = ACTIONS(4474), + [anon_sym_DASH_DASH] = ACTIONS(4476), + [anon_sym_PLUS_PLUS] = ACTIONS(4476), + [anon_sym_sizeof] = ACTIONS(4474), + [anon_sym___alignof__] = ACTIONS(4474), + [anon_sym___alignof] = ACTIONS(4474), + [anon_sym__alignof] = ACTIONS(4474), + [anon_sym_alignof] = ACTIONS(4474), + [anon_sym__Alignof] = ACTIONS(4474), + [anon_sym_offsetof] = ACTIONS(4474), + [anon_sym__Generic] = ACTIONS(4474), + [anon_sym_typename] = ACTIONS(4474), + [anon_sym_asm] = ACTIONS(4474), + [anon_sym___asm__] = ACTIONS(4474), + [anon_sym___asm] = ACTIONS(4474), + [sym_number_literal] = ACTIONS(4476), + [anon_sym_L_SQUOTE] = ACTIONS(4476), + [anon_sym_u_SQUOTE] = ACTIONS(4476), + [anon_sym_U_SQUOTE] = ACTIONS(4476), + [anon_sym_u8_SQUOTE] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4476), + [anon_sym_L_DQUOTE] = ACTIONS(4476), + [anon_sym_u_DQUOTE] = ACTIONS(4476), + [anon_sym_U_DQUOTE] = ACTIONS(4476), + [anon_sym_u8_DQUOTE] = ACTIONS(4476), + [anon_sym_DQUOTE] = ACTIONS(4476), + [sym_true] = ACTIONS(4474), + [sym_false] = ACTIONS(4474), + [anon_sym_NULL] = ACTIONS(4474), + [anon_sym_nullptr] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4474), + [anon_sym_decltype] = ACTIONS(4474), + [anon_sym_explicit] = ACTIONS(4474), + [anon_sym_export] = ACTIONS(4474), + [anon_sym_module] = ACTIONS(4474), + [anon_sym_import] = ACTIONS(4474), + [anon_sym_template] = ACTIONS(4474), + [anon_sym_operator] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4474), + [anon_sym_delete] = ACTIONS(4474), + [anon_sym_throw] = ACTIONS(4474), + [anon_sym_namespace] = ACTIONS(4474), + [anon_sym_static_assert] = ACTIONS(4474), + [anon_sym_concept] = ACTIONS(4474), + [anon_sym_co_return] = ACTIONS(4474), + [anon_sym_co_yield] = ACTIONS(4474), + [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(4474), + [anon_sym_new] = ACTIONS(4474), + [anon_sym_requires] = ACTIONS(4474), + [anon_sym_CARET_CARET] = ACTIONS(4476), + [anon_sym_LBRACK_COLON] = ACTIONS(4476), + [sym_this] = ACTIONS(4474), }, [STATE(535)] = { - [sym_identifier] = ACTIONS(4480), - [aux_sym_preproc_include_token1] = ACTIONS(4480), - [aux_sym_preproc_def_token1] = ACTIONS(4480), - [aux_sym_preproc_if_token1] = ACTIONS(4480), - [aux_sym_preproc_if_token2] = ACTIONS(4480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4480), - [aux_sym_preproc_else_token1] = ACTIONS(4480), - [aux_sym_preproc_elif_token1] = ACTIONS(4480), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4480), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4480), - [sym_preproc_directive] = ACTIONS(4480), - [anon_sym_LPAREN2] = ACTIONS(4482), - [anon_sym_BANG] = ACTIONS(4482), - [anon_sym_TILDE] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4480), - [anon_sym_PLUS] = ACTIONS(4480), - [anon_sym_STAR] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4482), - [anon_sym_AMP] = ACTIONS(4480), - [anon_sym_SEMI] = ACTIONS(4482), - [anon_sym___extension__] = ACTIONS(4480), - [anon_sym_typedef] = ACTIONS(4480), - [anon_sym_virtual] = ACTIONS(4480), - [anon_sym_extern] = ACTIONS(4480), - [anon_sym___attribute__] = ACTIONS(4480), - [anon_sym___attribute] = ACTIONS(4480), - [anon_sym_using] = ACTIONS(4480), - [anon_sym_COLON_COLON] = ACTIONS(4482), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4482), - [anon_sym___declspec] = ACTIONS(4480), - [anon_sym___based] = ACTIONS(4480), - [anon_sym___cdecl] = ACTIONS(4480), - [anon_sym___clrcall] = ACTIONS(4480), - [anon_sym___stdcall] = ACTIONS(4480), - [anon_sym___fastcall] = ACTIONS(4480), - [anon_sym___thiscall] = ACTIONS(4480), - [anon_sym___vectorcall] = ACTIONS(4480), - [anon_sym_LBRACE] = ACTIONS(4482), - [anon_sym_signed] = ACTIONS(4480), - [anon_sym_unsigned] = ACTIONS(4480), - [anon_sym_long] = ACTIONS(4480), - [anon_sym_short] = ACTIONS(4480), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_static] = ACTIONS(4480), - [anon_sym_register] = ACTIONS(4480), - [anon_sym_inline] = ACTIONS(4480), - [anon_sym___inline] = ACTIONS(4480), - [anon_sym___inline__] = ACTIONS(4480), - [anon_sym___forceinline] = ACTIONS(4480), - [anon_sym_thread_local] = ACTIONS(4480), - [anon_sym___thread] = ACTIONS(4480), - [anon_sym_const] = ACTIONS(4480), - [anon_sym_constexpr] = ACTIONS(4480), - [anon_sym_volatile] = ACTIONS(4480), - [anon_sym_restrict] = ACTIONS(4480), - [anon_sym___restrict__] = ACTIONS(4480), - [anon_sym__Atomic] = ACTIONS(4480), - [anon_sym__Noreturn] = ACTIONS(4480), - [anon_sym_noreturn] = ACTIONS(4480), - [anon_sym__Nonnull] = ACTIONS(4480), - [anon_sym_mutable] = ACTIONS(4480), - [anon_sym_constinit] = ACTIONS(4480), - [anon_sym_consteval] = ACTIONS(4480), - [anon_sym_alignas] = ACTIONS(4480), - [anon_sym__Alignas] = ACTIONS(4480), - [sym_primitive_type] = ACTIONS(4480), - [anon_sym_enum] = ACTIONS(4480), - [anon_sym_class] = ACTIONS(4480), - [anon_sym_struct] = ACTIONS(4480), - [anon_sym_union] = ACTIONS(4480), - [anon_sym_if] = ACTIONS(4480), - [anon_sym_switch] = ACTIONS(4480), - [anon_sym_case] = ACTIONS(4480), - [anon_sym_default] = ACTIONS(4480), - [anon_sym_while] = ACTIONS(4480), - [anon_sym_do] = ACTIONS(4480), - [anon_sym_for] = ACTIONS(4480), - [anon_sym_return] = ACTIONS(4480), - [anon_sym_break] = ACTIONS(4480), - [anon_sym_continue] = ACTIONS(4480), - [anon_sym_goto] = ACTIONS(4480), - [anon_sym_not] = ACTIONS(4480), - [anon_sym_compl] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4482), - [anon_sym_PLUS_PLUS] = ACTIONS(4482), - [anon_sym_sizeof] = ACTIONS(4480), - [anon_sym___alignof__] = ACTIONS(4480), - [anon_sym___alignof] = ACTIONS(4480), - [anon_sym__alignof] = ACTIONS(4480), - [anon_sym_alignof] = ACTIONS(4480), - [anon_sym__Alignof] = ACTIONS(4480), - [anon_sym_offsetof] = ACTIONS(4480), - [anon_sym__Generic] = ACTIONS(4480), - [anon_sym_typename] = ACTIONS(4480), - [anon_sym_asm] = ACTIONS(4480), - [anon_sym___asm__] = ACTIONS(4480), - [anon_sym___asm] = ACTIONS(4480), - [sym_number_literal] = ACTIONS(4482), - [anon_sym_L_SQUOTE] = ACTIONS(4482), - [anon_sym_u_SQUOTE] = ACTIONS(4482), - [anon_sym_U_SQUOTE] = ACTIONS(4482), - [anon_sym_u8_SQUOTE] = ACTIONS(4482), - [anon_sym_SQUOTE] = ACTIONS(4482), - [anon_sym_L_DQUOTE] = ACTIONS(4482), - [anon_sym_u_DQUOTE] = ACTIONS(4482), - [anon_sym_U_DQUOTE] = ACTIONS(4482), - [anon_sym_u8_DQUOTE] = ACTIONS(4482), - [anon_sym_DQUOTE] = ACTIONS(4482), - [sym_true] = ACTIONS(4480), - [sym_false] = ACTIONS(4480), - [anon_sym_NULL] = ACTIONS(4480), - [anon_sym_nullptr] = ACTIONS(4480), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4480), - [anon_sym_decltype] = ACTIONS(4480), - [anon_sym_explicit] = ACTIONS(4480), - [anon_sym_export] = ACTIONS(4480), - [anon_sym_module] = ACTIONS(4480), - [anon_sym_import] = ACTIONS(4480), - [anon_sym_template] = ACTIONS(4480), - [anon_sym_operator] = ACTIONS(4480), - [anon_sym_try] = ACTIONS(4480), - [anon_sym_delete] = ACTIONS(4480), - [anon_sym_throw] = ACTIONS(4480), - [anon_sym_namespace] = ACTIONS(4480), - [anon_sym_static_assert] = ACTIONS(4480), - [anon_sym_concept] = ACTIONS(4480), - [anon_sym_co_return] = ACTIONS(4480), - [anon_sym_co_yield] = ACTIONS(4480), - [anon_sym_R_DQUOTE] = ACTIONS(4482), - [anon_sym_LR_DQUOTE] = ACTIONS(4482), - [anon_sym_uR_DQUOTE] = ACTIONS(4482), - [anon_sym_UR_DQUOTE] = ACTIONS(4482), - [anon_sym_u8R_DQUOTE] = ACTIONS(4482), - [anon_sym_co_await] = ACTIONS(4480), - [anon_sym_new] = ACTIONS(4480), - [anon_sym_requires] = ACTIONS(4480), - [anon_sym_CARET_CARET] = ACTIONS(4482), - [anon_sym_LBRACK_COLON] = ACTIONS(4482), - [sym_this] = ACTIONS(4480), + [sym_identifier] = ACTIONS(4478), + [aux_sym_preproc_include_token1] = ACTIONS(4478), + [aux_sym_preproc_def_token1] = ACTIONS(4478), + [aux_sym_preproc_if_token1] = ACTIONS(4478), + [aux_sym_preproc_if_token2] = ACTIONS(4478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4478), + [aux_sym_preproc_else_token1] = ACTIONS(4478), + [aux_sym_preproc_elif_token1] = ACTIONS(4478), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4478), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4478), + [sym_preproc_directive] = ACTIONS(4478), + [anon_sym_LPAREN2] = ACTIONS(4480), + [anon_sym_BANG] = ACTIONS(4480), + [anon_sym_TILDE] = ACTIONS(4480), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4478), + [anon_sym_STAR] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_AMP] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym___extension__] = ACTIONS(4478), + [anon_sym_typedef] = ACTIONS(4478), + [anon_sym_virtual] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym___attribute__] = ACTIONS(4478), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_using] = ACTIONS(4478), + [anon_sym_COLON_COLON] = ACTIONS(4480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4480), + [anon_sym___declspec] = ACTIONS(4478), + [anon_sym___based] = ACTIONS(4478), + [anon_sym___cdecl] = ACTIONS(4478), + [anon_sym___clrcall] = ACTIONS(4478), + [anon_sym___stdcall] = ACTIONS(4478), + [anon_sym___fastcall] = ACTIONS(4478), + [anon_sym___thiscall] = ACTIONS(4478), + [anon_sym___vectorcall] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(4480), + [anon_sym_signed] = ACTIONS(4478), + [anon_sym_unsigned] = ACTIONS(4478), + [anon_sym_long] = ACTIONS(4478), + [anon_sym_short] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_static] = ACTIONS(4478), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_inline] = ACTIONS(4478), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4478), + [anon_sym___forceinline] = ACTIONS(4478), + [anon_sym_thread_local] = ACTIONS(4478), + [anon_sym___thread] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4478), + [anon_sym_volatile] = ACTIONS(4478), + [anon_sym_restrict] = ACTIONS(4478), + [anon_sym___restrict__] = ACTIONS(4478), + [anon_sym__Atomic] = ACTIONS(4478), + [anon_sym__Noreturn] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4478), + [anon_sym__Nonnull] = ACTIONS(4478), + [anon_sym_mutable] = ACTIONS(4478), + [anon_sym_constinit] = ACTIONS(4478), + [anon_sym_consteval] = ACTIONS(4478), + [anon_sym_alignas] = ACTIONS(4478), + [anon_sym__Alignas] = ACTIONS(4478), + [sym_primitive_type] = ACTIONS(4478), + [anon_sym_enum] = ACTIONS(4478), + [anon_sym_class] = ACTIONS(4478), + [anon_sym_struct] = ACTIONS(4478), + [anon_sym_union] = ACTIONS(4478), + [anon_sym_if] = ACTIONS(4478), + [anon_sym_switch] = ACTIONS(4478), + [anon_sym_case] = ACTIONS(4478), + [anon_sym_default] = ACTIONS(4478), + [anon_sym_while] = ACTIONS(4478), + [anon_sym_do] = ACTIONS(4478), + [anon_sym_for] = ACTIONS(4478), + [anon_sym_return] = ACTIONS(4478), + [anon_sym_break] = ACTIONS(4478), + [anon_sym_continue] = ACTIONS(4478), + [anon_sym_goto] = ACTIONS(4478), + [anon_sym_not] = ACTIONS(4478), + [anon_sym_compl] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4480), + [anon_sym_PLUS_PLUS] = ACTIONS(4480), + [anon_sym_sizeof] = ACTIONS(4478), + [anon_sym___alignof__] = ACTIONS(4478), + [anon_sym___alignof] = ACTIONS(4478), + [anon_sym__alignof] = ACTIONS(4478), + [anon_sym_alignof] = ACTIONS(4478), + [anon_sym__Alignof] = ACTIONS(4478), + [anon_sym_offsetof] = ACTIONS(4478), + [anon_sym__Generic] = ACTIONS(4478), + [anon_sym_typename] = ACTIONS(4478), + [anon_sym_asm] = ACTIONS(4478), + [anon_sym___asm__] = ACTIONS(4478), + [anon_sym___asm] = ACTIONS(4478), + [sym_number_literal] = ACTIONS(4480), + [anon_sym_L_SQUOTE] = ACTIONS(4480), + [anon_sym_u_SQUOTE] = ACTIONS(4480), + [anon_sym_U_SQUOTE] = ACTIONS(4480), + [anon_sym_u8_SQUOTE] = ACTIONS(4480), + [anon_sym_SQUOTE] = ACTIONS(4480), + [anon_sym_L_DQUOTE] = ACTIONS(4480), + [anon_sym_u_DQUOTE] = ACTIONS(4480), + [anon_sym_U_DQUOTE] = ACTIONS(4480), + [anon_sym_u8_DQUOTE] = ACTIONS(4480), + [anon_sym_DQUOTE] = ACTIONS(4480), + [sym_true] = ACTIONS(4478), + [sym_false] = ACTIONS(4478), + [anon_sym_NULL] = ACTIONS(4478), + [anon_sym_nullptr] = ACTIONS(4478), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4478), + [anon_sym_decltype] = ACTIONS(4478), + [anon_sym_explicit] = ACTIONS(4478), + [anon_sym_export] = ACTIONS(4478), + [anon_sym_module] = ACTIONS(4478), + [anon_sym_import] = ACTIONS(4478), + [anon_sym_template] = ACTIONS(4478), + [anon_sym_operator] = ACTIONS(4478), + [anon_sym_try] = ACTIONS(4478), + [anon_sym_delete] = ACTIONS(4478), + [anon_sym_throw] = ACTIONS(4478), + [anon_sym_namespace] = ACTIONS(4478), + [anon_sym_static_assert] = ACTIONS(4478), + [anon_sym_concept] = ACTIONS(4478), + [anon_sym_co_return] = ACTIONS(4478), + [anon_sym_co_yield] = ACTIONS(4478), + [anon_sym_R_DQUOTE] = ACTIONS(4480), + [anon_sym_LR_DQUOTE] = ACTIONS(4480), + [anon_sym_uR_DQUOTE] = ACTIONS(4480), + [anon_sym_UR_DQUOTE] = ACTIONS(4480), + [anon_sym_u8R_DQUOTE] = ACTIONS(4480), + [anon_sym_co_await] = ACTIONS(4478), + [anon_sym_new] = ACTIONS(4478), + [anon_sym_requires] = ACTIONS(4478), + [anon_sym_CARET_CARET] = ACTIONS(4480), + [anon_sym_LBRACK_COLON] = ACTIONS(4480), + [sym_this] = ACTIONS(4478), }, [STATE(536)] = { + [sym_else_clause] = STATE(632), + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token2] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym___extension__] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym___attribute] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym___inline] = ACTIONS(3286), + [anon_sym___inline__] = ACTIONS(3286), + [anon_sym___forceinline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym___thread] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym__Nonnull] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [anon_sym_alignas] = ACTIONS(3286), + [anon_sym__Alignas] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym___try] = ACTIONS(3286), + [anon_sym___leave] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym___alignof__] = ACTIONS(3286), + [anon_sym___alignof] = ACTIONS(3286), + [anon_sym__alignof] = ACTIONS(3286), + [anon_sym_alignof] = ACTIONS(3286), + [anon_sym__Alignof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [anon_sym___asm] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_module] = ACTIONS(3286), + [anon_sym_import] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [anon_sym_CARET_CARET] = ACTIONS(3288), + [anon_sym_LBRACK_COLON] = ACTIONS(3288), + [sym_this] = ACTIONS(3286), + }, + [STATE(537)] = { [sym_identifier] = ACTIONS(4484), [aux_sym_preproc_include_token1] = ACTIONS(4484), [aux_sym_preproc_def_token1] = ACTIONS(4484), @@ -136804,7 +136951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4486), [sym_this] = ACTIONS(4484), }, - [STATE(537)] = { + [STATE(538)] = { [sym_identifier] = ACTIONS(4488), [aux_sym_preproc_include_token1] = ACTIONS(4488), [aux_sym_preproc_def_token1] = ACTIONS(4488), @@ -136947,7 +137094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4490), [sym_this] = ACTIONS(4488), }, - [STATE(538)] = { + [STATE(539)] = { [sym_identifier] = ACTIONS(4492), [aux_sym_preproc_include_token1] = ACTIONS(4492), [aux_sym_preproc_def_token1] = ACTIONS(4492), @@ -137090,149 +137237,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4494), [sym_this] = ACTIONS(4492), }, - [STATE(539)] = { - [sym_catch_clause] = STATE(521), - [aux_sym_constructor_try_statement_repeat1] = STATE(521), - [sym_identifier] = ACTIONS(3178), - [aux_sym_preproc_include_token1] = ACTIONS(3178), - [aux_sym_preproc_def_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token1] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_LPAREN2] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_AMP_AMP] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym___extension__] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_virtual] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym___attribute__] = ACTIONS(3178), - [anon_sym___attribute] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), - [anon_sym___declspec] = ACTIONS(3178), - [anon_sym___based] = ACTIONS(3178), - [anon_sym___cdecl] = ACTIONS(3178), - [anon_sym___clrcall] = ACTIONS(3178), - [anon_sym___stdcall] = ACTIONS(3178), - [anon_sym___fastcall] = ACTIONS(3178), - [anon_sym___thiscall] = ACTIONS(3178), - [anon_sym___vectorcall] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_signed] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym___inline] = ACTIONS(3178), - [anon_sym___inline__] = ACTIONS(3178), - [anon_sym___forceinline] = ACTIONS(3178), - [anon_sym_thread_local] = ACTIONS(3178), - [anon_sym___thread] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym___restrict__] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym__Noreturn] = ACTIONS(3178), - [anon_sym_noreturn] = ACTIONS(3178), - [anon_sym__Nonnull] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_constinit] = ACTIONS(3178), - [anon_sym_consteval] = ACTIONS(3178), - [anon_sym_alignas] = ACTIONS(3178), - [anon_sym__Alignas] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_goto] = ACTIONS(3178), - [anon_sym___try] = ACTIONS(3178), - [anon_sym___leave] = ACTIONS(3178), - [anon_sym_not] = ACTIONS(3178), - [anon_sym_compl] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_sizeof] = ACTIONS(3178), - [anon_sym___alignof__] = ACTIONS(3178), - [anon_sym___alignof] = ACTIONS(3178), - [anon_sym__alignof] = ACTIONS(3178), - [anon_sym_alignof] = ACTIONS(3178), - [anon_sym__Alignof] = ACTIONS(3178), - [anon_sym_offsetof] = ACTIONS(3178), - [anon_sym__Generic] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_asm] = ACTIONS(3178), - [anon_sym___asm__] = ACTIONS(3178), - [anon_sym___asm] = ACTIONS(3178), - [sym_number_literal] = ACTIONS(3180), - [anon_sym_L_SQUOTE] = ACTIONS(3180), - [anon_sym_u_SQUOTE] = ACTIONS(3180), - [anon_sym_U_SQUOTE] = ACTIONS(3180), - [anon_sym_u8_SQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_L_DQUOTE] = ACTIONS(3180), - [anon_sym_u_DQUOTE] = ACTIONS(3180), - [anon_sym_U_DQUOTE] = ACTIONS(3180), - [anon_sym_u8_DQUOTE] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [anon_sym_NULL] = ACTIONS(3178), - [anon_sym_nullptr] = ACTIONS(3178), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3178), - [anon_sym_decltype] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_operator] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_static_assert] = ACTIONS(3178), - [anon_sym_concept] = ACTIONS(3178), - [anon_sym_co_return] = ACTIONS(3178), - [anon_sym_co_yield] = ACTIONS(3178), - [anon_sym_catch] = ACTIONS(4447), - [anon_sym_R_DQUOTE] = ACTIONS(3180), - [anon_sym_LR_DQUOTE] = ACTIONS(3180), - [anon_sym_uR_DQUOTE] = ACTIONS(3180), - [anon_sym_UR_DQUOTE] = ACTIONS(3180), - [anon_sym_u8R_DQUOTE] = ACTIONS(3180), - [anon_sym_co_await] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3178), - [anon_sym_CARET_CARET] = ACTIONS(3180), - [anon_sym_LBRACK_COLON] = ACTIONS(3180), - [sym_this] = ACTIONS(3178), - }, [STATE(540)] = { [sym_identifier] = ACTIONS(4496), [aux_sym_preproc_include_token1] = ACTIONS(4496), @@ -137377,2298 +137381,5279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(4496), }, [STATE(541)] = { + [sym_preproc_def] = STATE(541), + [sym_preproc_function_def] = STATE(541), + [sym_preproc_call] = STATE(541), + [sym_preproc_if_in_field_declaration_list] = STATE(541), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(541), + [sym_type_definition] = STATE(541), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8135), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(541), + [sym_field_declaration] = STATE(541), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(541), + [sym_operator_cast] = STATE(9190), + [sym_inline_method_definition] = STATE(541), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(541), + [sym_operator_cast_declaration] = STATE(541), + [sym_constructor_or_destructor_definition] = STATE(541), + [sym_constructor_or_destructor_declaration] = STATE(541), + [sym_friend_declaration] = STATE(541), + [sym_access_specifier] = STATE(11189), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(541), + [sym_alias_declaration] = STATE(541), + [sym_static_assert_declaration] = STATE(541), + [sym_consteval_block_declaration] = STATE(541), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(541), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9473), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), [sym_identifier] = ACTIONS(4500), - [aux_sym_preproc_include_token1] = ACTIONS(4500), - [aux_sym_preproc_def_token1] = ACTIONS(4500), - [aux_sym_preproc_if_token1] = ACTIONS(4500), - [aux_sym_preproc_if_token2] = ACTIONS(4500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4500), - [aux_sym_preproc_else_token1] = ACTIONS(4500), - [aux_sym_preproc_elif_token1] = ACTIONS(4500), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4500), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4500), - [sym_preproc_directive] = ACTIONS(4500), - [anon_sym_LPAREN2] = ACTIONS(4502), - [anon_sym_BANG] = ACTIONS(4502), - [anon_sym_TILDE] = ACTIONS(4502), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_PLUS] = ACTIONS(4500), - [anon_sym_STAR] = ACTIONS(4502), - [anon_sym_AMP_AMP] = ACTIONS(4502), - [anon_sym_AMP] = ACTIONS(4500), - [anon_sym_SEMI] = ACTIONS(4502), - [anon_sym___extension__] = ACTIONS(4500), - [anon_sym_typedef] = ACTIONS(4500), - [anon_sym_virtual] = ACTIONS(4500), - [anon_sym_extern] = ACTIONS(4500), - [anon_sym___attribute__] = ACTIONS(4500), - [anon_sym___attribute] = ACTIONS(4500), - [anon_sym_using] = ACTIONS(4500), - [anon_sym_COLON_COLON] = ACTIONS(4502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4502), - [anon_sym___declspec] = ACTIONS(4500), - [anon_sym___based] = ACTIONS(4500), - [anon_sym___cdecl] = ACTIONS(4500), - [anon_sym___clrcall] = ACTIONS(4500), - [anon_sym___stdcall] = ACTIONS(4500), - [anon_sym___fastcall] = ACTIONS(4500), - [anon_sym___thiscall] = ACTIONS(4500), - [anon_sym___vectorcall] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_signed] = ACTIONS(4500), - [anon_sym_unsigned] = ACTIONS(4500), - [anon_sym_long] = ACTIONS(4500), - [anon_sym_short] = ACTIONS(4500), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_static] = ACTIONS(4500), - [anon_sym_register] = ACTIONS(4500), - [anon_sym_inline] = ACTIONS(4500), - [anon_sym___inline] = ACTIONS(4500), - [anon_sym___inline__] = ACTIONS(4500), - [anon_sym___forceinline] = ACTIONS(4500), - [anon_sym_thread_local] = ACTIONS(4500), - [anon_sym___thread] = ACTIONS(4500), - [anon_sym_const] = ACTIONS(4500), - [anon_sym_constexpr] = ACTIONS(4500), - [anon_sym_volatile] = ACTIONS(4500), - [anon_sym_restrict] = ACTIONS(4500), - [anon_sym___restrict__] = ACTIONS(4500), - [anon_sym__Atomic] = ACTIONS(4500), - [anon_sym__Noreturn] = ACTIONS(4500), - [anon_sym_noreturn] = ACTIONS(4500), - [anon_sym__Nonnull] = ACTIONS(4500), - [anon_sym_mutable] = ACTIONS(4500), - [anon_sym_constinit] = ACTIONS(4500), - [anon_sym_consteval] = ACTIONS(4500), - [anon_sym_alignas] = ACTIONS(4500), - [anon_sym__Alignas] = ACTIONS(4500), - [sym_primitive_type] = ACTIONS(4500), - [anon_sym_enum] = ACTIONS(4500), - [anon_sym_class] = ACTIONS(4500), - [anon_sym_struct] = ACTIONS(4500), - [anon_sym_union] = ACTIONS(4500), - [anon_sym_if] = ACTIONS(4500), - [anon_sym_switch] = ACTIONS(4500), - [anon_sym_case] = ACTIONS(4500), - [anon_sym_default] = ACTIONS(4500), - [anon_sym_while] = ACTIONS(4500), - [anon_sym_do] = ACTIONS(4500), - [anon_sym_for] = ACTIONS(4500), - [anon_sym_return] = ACTIONS(4500), - [anon_sym_break] = ACTIONS(4500), - [anon_sym_continue] = ACTIONS(4500), - [anon_sym_goto] = ACTIONS(4500), - [anon_sym_not] = ACTIONS(4500), - [anon_sym_compl] = ACTIONS(4500), - [anon_sym_DASH_DASH] = ACTIONS(4502), - [anon_sym_PLUS_PLUS] = ACTIONS(4502), - [anon_sym_sizeof] = ACTIONS(4500), - [anon_sym___alignof__] = ACTIONS(4500), - [anon_sym___alignof] = ACTIONS(4500), - [anon_sym__alignof] = ACTIONS(4500), - [anon_sym_alignof] = ACTIONS(4500), - [anon_sym__Alignof] = ACTIONS(4500), - [anon_sym_offsetof] = ACTIONS(4500), - [anon_sym__Generic] = ACTIONS(4500), - [anon_sym_typename] = ACTIONS(4500), - [anon_sym_asm] = ACTIONS(4500), - [anon_sym___asm__] = ACTIONS(4500), - [anon_sym___asm] = ACTIONS(4500), - [sym_number_literal] = ACTIONS(4502), - [anon_sym_L_SQUOTE] = ACTIONS(4502), - [anon_sym_u_SQUOTE] = ACTIONS(4502), - [anon_sym_U_SQUOTE] = ACTIONS(4502), - [anon_sym_u8_SQUOTE] = ACTIONS(4502), - [anon_sym_SQUOTE] = ACTIONS(4502), - [anon_sym_L_DQUOTE] = ACTIONS(4502), - [anon_sym_u_DQUOTE] = ACTIONS(4502), - [anon_sym_U_DQUOTE] = ACTIONS(4502), - [anon_sym_u8_DQUOTE] = ACTIONS(4502), - [anon_sym_DQUOTE] = ACTIONS(4502), - [sym_true] = ACTIONS(4500), - [sym_false] = ACTIONS(4500), - [anon_sym_NULL] = ACTIONS(4500), - [anon_sym_nullptr] = ACTIONS(4500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4500), - [anon_sym_decltype] = ACTIONS(4500), - [anon_sym_explicit] = ACTIONS(4500), - [anon_sym_export] = ACTIONS(4500), - [anon_sym_module] = ACTIONS(4500), - [anon_sym_import] = ACTIONS(4500), - [anon_sym_template] = ACTIONS(4500), - [anon_sym_operator] = ACTIONS(4500), - [anon_sym_try] = ACTIONS(4500), - [anon_sym_delete] = ACTIONS(4500), - [anon_sym_throw] = ACTIONS(4500), - [anon_sym_namespace] = ACTIONS(4500), - [anon_sym_static_assert] = ACTIONS(4500), - [anon_sym_concept] = ACTIONS(4500), - [anon_sym_co_return] = ACTIONS(4500), - [anon_sym_co_yield] = ACTIONS(4500), - [anon_sym_R_DQUOTE] = ACTIONS(4502), - [anon_sym_LR_DQUOTE] = ACTIONS(4502), - [anon_sym_uR_DQUOTE] = ACTIONS(4502), - [anon_sym_UR_DQUOTE] = ACTIONS(4502), - [anon_sym_u8R_DQUOTE] = ACTIONS(4502), - [anon_sym_co_await] = ACTIONS(4500), - [anon_sym_new] = ACTIONS(4500), - [anon_sym_requires] = ACTIONS(4500), - [anon_sym_CARET_CARET] = ACTIONS(4502), - [anon_sym_LBRACK_COLON] = ACTIONS(4502), - [sym_this] = ACTIONS(4500), + [aux_sym_preproc_def_token1] = ACTIONS(4503), + [aux_sym_preproc_if_token1] = ACTIONS(4506), + [aux_sym_preproc_if_token2] = ACTIONS(4509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4511), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4511), + [aux_sym_preproc_else_token1] = ACTIONS(4509), + [aux_sym_preproc_elif_token1] = ACTIONS(4509), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4509), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4509), + [sym_preproc_directive] = ACTIONS(4514), + [anon_sym_LPAREN2] = ACTIONS(4517), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_AMP_AMP] = ACTIONS(4526), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4532), + [anon_sym___extension__] = ACTIONS(4535), + [anon_sym_typedef] = ACTIONS(4538), + [anon_sym_virtual] = ACTIONS(4541), + [anon_sym_extern] = ACTIONS(4544), + [anon_sym___attribute__] = ACTIONS(4547), + [anon_sym___attribute] = ACTIONS(4547), + [anon_sym_using] = ACTIONS(4550), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4556), + [anon_sym___declspec] = ACTIONS(4559), + [anon_sym___based] = ACTIONS(4562), + [anon_sym_signed] = ACTIONS(4565), + [anon_sym_unsigned] = ACTIONS(4565), + [anon_sym_long] = ACTIONS(4565), + [anon_sym_short] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_static] = ACTIONS(4544), + [anon_sym_register] = ACTIONS(4544), + [anon_sym_inline] = ACTIONS(4544), + [anon_sym___inline] = ACTIONS(4544), + [anon_sym___inline__] = ACTIONS(4544), + [anon_sym___forceinline] = ACTIONS(4544), + [anon_sym_thread_local] = ACTIONS(4544), + [anon_sym___thread] = ACTIONS(4544), + [anon_sym_const] = ACTIONS(4571), + [anon_sym_constexpr] = ACTIONS(4574), + [anon_sym_volatile] = ACTIONS(4571), + [anon_sym_restrict] = ACTIONS(4571), + [anon_sym___restrict__] = ACTIONS(4571), + [anon_sym__Atomic] = ACTIONS(4571), + [anon_sym__Noreturn] = ACTIONS(4571), + [anon_sym_noreturn] = ACTIONS(4571), + [anon_sym__Nonnull] = ACTIONS(4571), + [anon_sym_mutable] = ACTIONS(4571), + [anon_sym_constinit] = ACTIONS(4571), + [anon_sym_consteval] = ACTIONS(4577), + [anon_sym_alignas] = ACTIONS(4580), + [anon_sym__Alignas] = ACTIONS(4580), + [sym_primitive_type] = ACTIONS(4583), + [anon_sym_enum] = ACTIONS(4586), + [anon_sym_class] = ACTIONS(4589), + [anon_sym_struct] = ACTIONS(4592), + [anon_sym_union] = ACTIONS(4595), + [anon_sym_typename] = ACTIONS(4598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4601), + [anon_sym_decltype] = ACTIONS(4604), + [anon_sym_explicit] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4610), + [anon_sym_template] = ACTIONS(4613), + [anon_sym_operator] = ACTIONS(4616), + [anon_sym_friend] = ACTIONS(4619), + [anon_sym_public] = ACTIONS(4610), + [anon_sym_protected] = ACTIONS(4610), + [anon_sym_static_assert] = ACTIONS(4622), + [anon_sym_LBRACK_COLON] = ACTIONS(4625), }, [STATE(542)] = { - [sym_identifier] = ACTIONS(4504), - [aux_sym_preproc_include_token1] = ACTIONS(4504), - [aux_sym_preproc_def_token1] = ACTIONS(4504), - [aux_sym_preproc_if_token1] = ACTIONS(4504), - [aux_sym_preproc_if_token2] = ACTIONS(4504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4504), - [aux_sym_preproc_else_token1] = ACTIONS(4504), - [aux_sym_preproc_elif_token1] = ACTIONS(4504), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4504), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4504), - [sym_preproc_directive] = ACTIONS(4504), - [anon_sym_LPAREN2] = ACTIONS(4507), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_TILDE] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP_AMP] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(4504), - [anon_sym_typedef] = ACTIONS(4504), - [anon_sym_virtual] = ACTIONS(4504), - [anon_sym_extern] = ACTIONS(4504), - [anon_sym___attribute__] = ACTIONS(4504), - [anon_sym___attribute] = ACTIONS(4504), - [anon_sym_using] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4507), - [anon_sym___declspec] = ACTIONS(4504), - [anon_sym___based] = ACTIONS(4504), - [anon_sym___cdecl] = ACTIONS(4504), - [anon_sym___clrcall] = ACTIONS(4504), - [anon_sym___stdcall] = ACTIONS(4504), - [anon_sym___fastcall] = ACTIONS(4504), - [anon_sym___thiscall] = ACTIONS(4504), - [anon_sym___vectorcall] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4507), - [anon_sym_signed] = ACTIONS(4504), - [anon_sym_unsigned] = ACTIONS(4504), - [anon_sym_long] = ACTIONS(4504), - [anon_sym_short] = ACTIONS(4504), - [anon_sym_LBRACK] = ACTIONS(4504), - [anon_sym_static] = ACTIONS(4504), - [anon_sym_register] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym___inline] = ACTIONS(4504), - [anon_sym___inline__] = ACTIONS(4504), - [anon_sym___forceinline] = ACTIONS(4504), - [anon_sym_thread_local] = ACTIONS(4504), - [anon_sym___thread] = ACTIONS(4504), - [anon_sym_const] = ACTIONS(4504), - [anon_sym_constexpr] = ACTIONS(4504), - [anon_sym_volatile] = ACTIONS(4504), - [anon_sym_restrict] = ACTIONS(4504), - [anon_sym___restrict__] = ACTIONS(4504), - [anon_sym__Atomic] = ACTIONS(4504), - [anon_sym__Noreturn] = ACTIONS(4504), - [anon_sym_noreturn] = ACTIONS(4504), - [anon_sym__Nonnull] = ACTIONS(4504), - [anon_sym_mutable] = ACTIONS(4504), - [anon_sym_constinit] = ACTIONS(4504), - [anon_sym_consteval] = ACTIONS(4504), - [anon_sym_alignas] = ACTIONS(4504), - [anon_sym__Alignas] = ACTIONS(4504), - [sym_primitive_type] = ACTIONS(4504), - [anon_sym_enum] = ACTIONS(4504), - [anon_sym_class] = ACTIONS(4504), - [anon_sym_struct] = ACTIONS(4504), - [anon_sym_union] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_switch] = ACTIONS(4504), - [anon_sym_case] = ACTIONS(4504), - [anon_sym_default] = ACTIONS(4504), - [anon_sym_while] = ACTIONS(4504), - [anon_sym_do] = ACTIONS(4504), - [anon_sym_for] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_goto] = ACTIONS(4504), - [anon_sym_not] = ACTIONS(4504), - [anon_sym_compl] = ACTIONS(4504), - [anon_sym_DASH_DASH] = ACTIONS(4507), - [anon_sym_PLUS_PLUS] = ACTIONS(4507), - [anon_sym_sizeof] = ACTIONS(4504), - [anon_sym___alignof__] = ACTIONS(4504), - [anon_sym___alignof] = ACTIONS(4504), - [anon_sym__alignof] = ACTIONS(4504), - [anon_sym_alignof] = ACTIONS(4504), - [anon_sym__Alignof] = ACTIONS(4504), - [anon_sym_offsetof] = ACTIONS(4504), - [anon_sym__Generic] = ACTIONS(4504), - [anon_sym_typename] = ACTIONS(4504), - [anon_sym_asm] = ACTIONS(4504), - [anon_sym___asm__] = ACTIONS(4504), - [anon_sym___asm] = ACTIONS(4504), - [sym_number_literal] = ACTIONS(4507), - [anon_sym_L_SQUOTE] = ACTIONS(4507), - [anon_sym_u_SQUOTE] = ACTIONS(4507), - [anon_sym_U_SQUOTE] = ACTIONS(4507), - [anon_sym_u8_SQUOTE] = ACTIONS(4507), - [anon_sym_SQUOTE] = ACTIONS(4507), - [anon_sym_L_DQUOTE] = ACTIONS(4507), - [anon_sym_u_DQUOTE] = ACTIONS(4507), - [anon_sym_U_DQUOTE] = ACTIONS(4507), - [anon_sym_u8_DQUOTE] = ACTIONS(4507), - [anon_sym_DQUOTE] = ACTIONS(4507), - [sym_true] = ACTIONS(4504), - [sym_false] = ACTIONS(4504), - [anon_sym_NULL] = ACTIONS(4504), - [anon_sym_nullptr] = ACTIONS(4504), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4504), - [anon_sym_decltype] = ACTIONS(4504), - [anon_sym_explicit] = ACTIONS(4504), - [anon_sym_export] = ACTIONS(4504), - [anon_sym_module] = ACTIONS(4504), - [anon_sym_import] = ACTIONS(4504), - [anon_sym_template] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_delete] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_namespace] = ACTIONS(4504), - [anon_sym_static_assert] = ACTIONS(4504), - [anon_sym_concept] = ACTIONS(4504), - [anon_sym_co_return] = ACTIONS(4504), - [anon_sym_co_yield] = ACTIONS(4504), - [anon_sym_R_DQUOTE] = ACTIONS(4507), - [anon_sym_LR_DQUOTE] = ACTIONS(4507), - [anon_sym_uR_DQUOTE] = ACTIONS(4507), - [anon_sym_UR_DQUOTE] = ACTIONS(4507), - [anon_sym_u8R_DQUOTE] = ACTIONS(4507), - [anon_sym_co_await] = ACTIONS(4504), - [anon_sym_new] = ACTIONS(4504), - [anon_sym_requires] = ACTIONS(4504), - [anon_sym_CARET_CARET] = ACTIONS(4507), - [anon_sym_LBRACK_COLON] = ACTIONS(4507), - [sym_this] = ACTIONS(4504), + [sym_identifier] = ACTIONS(4628), + [aux_sym_preproc_include_token1] = ACTIONS(4628), + [aux_sym_preproc_def_token1] = ACTIONS(4628), + [aux_sym_preproc_if_token1] = ACTIONS(4628), + [aux_sym_preproc_if_token2] = ACTIONS(4628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4628), + [aux_sym_preproc_else_token1] = ACTIONS(4628), + [aux_sym_preproc_elif_token1] = ACTIONS(4628), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4628), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4628), + [sym_preproc_directive] = ACTIONS(4628), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(4630), + [anon_sym_TILDE] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4628), + [anon_sym_PLUS] = ACTIONS(4628), + [anon_sym_STAR] = ACTIONS(4630), + [anon_sym_AMP_AMP] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_SEMI] = ACTIONS(4630), + [anon_sym___extension__] = ACTIONS(4628), + [anon_sym_typedef] = ACTIONS(4628), + [anon_sym_virtual] = ACTIONS(4628), + [anon_sym_extern] = ACTIONS(4628), + [anon_sym___attribute__] = ACTIONS(4628), + [anon_sym___attribute] = ACTIONS(4628), + [anon_sym_using] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(4630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4630), + [anon_sym___declspec] = ACTIONS(4628), + [anon_sym___based] = ACTIONS(4628), + [anon_sym___cdecl] = ACTIONS(4628), + [anon_sym___clrcall] = ACTIONS(4628), + [anon_sym___stdcall] = ACTIONS(4628), + [anon_sym___fastcall] = ACTIONS(4628), + [anon_sym___thiscall] = ACTIONS(4628), + [anon_sym___vectorcall] = ACTIONS(4628), + [anon_sym_LBRACE] = ACTIONS(4630), + [anon_sym_signed] = ACTIONS(4628), + [anon_sym_unsigned] = ACTIONS(4628), + [anon_sym_long] = ACTIONS(4628), + [anon_sym_short] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_static] = ACTIONS(4628), + [anon_sym_register] = ACTIONS(4628), + [anon_sym_inline] = ACTIONS(4628), + [anon_sym___inline] = ACTIONS(4628), + [anon_sym___inline__] = ACTIONS(4628), + [anon_sym___forceinline] = ACTIONS(4628), + [anon_sym_thread_local] = ACTIONS(4628), + [anon_sym___thread] = ACTIONS(4628), + [anon_sym_const] = ACTIONS(4628), + [anon_sym_constexpr] = ACTIONS(4628), + [anon_sym_volatile] = ACTIONS(4628), + [anon_sym_restrict] = ACTIONS(4628), + [anon_sym___restrict__] = ACTIONS(4628), + [anon_sym__Atomic] = ACTIONS(4628), + [anon_sym__Noreturn] = ACTIONS(4628), + [anon_sym_noreturn] = ACTIONS(4628), + [anon_sym__Nonnull] = ACTIONS(4628), + [anon_sym_mutable] = ACTIONS(4628), + [anon_sym_constinit] = ACTIONS(4628), + [anon_sym_consteval] = ACTIONS(4628), + [anon_sym_alignas] = ACTIONS(4628), + [anon_sym__Alignas] = ACTIONS(4628), + [sym_primitive_type] = ACTIONS(4628), + [anon_sym_enum] = ACTIONS(4628), + [anon_sym_class] = ACTIONS(4628), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_union] = ACTIONS(4628), + [anon_sym_if] = ACTIONS(4628), + [anon_sym_switch] = ACTIONS(4628), + [anon_sym_case] = ACTIONS(4628), + [anon_sym_default] = ACTIONS(4628), + [anon_sym_while] = ACTIONS(4628), + [anon_sym_do] = ACTIONS(4628), + [anon_sym_for] = ACTIONS(4628), + [anon_sym_return] = ACTIONS(4628), + [anon_sym_break] = ACTIONS(4628), + [anon_sym_continue] = ACTIONS(4628), + [anon_sym_goto] = ACTIONS(4628), + [anon_sym_not] = ACTIONS(4628), + [anon_sym_compl] = ACTIONS(4628), + [anon_sym_DASH_DASH] = ACTIONS(4630), + [anon_sym_PLUS_PLUS] = ACTIONS(4630), + [anon_sym_sizeof] = ACTIONS(4628), + [anon_sym___alignof__] = ACTIONS(4628), + [anon_sym___alignof] = ACTIONS(4628), + [anon_sym__alignof] = ACTIONS(4628), + [anon_sym_alignof] = ACTIONS(4628), + [anon_sym__Alignof] = ACTIONS(4628), + [anon_sym_offsetof] = ACTIONS(4628), + [anon_sym__Generic] = ACTIONS(4628), + [anon_sym_typename] = ACTIONS(4628), + [anon_sym_asm] = ACTIONS(4628), + [anon_sym___asm__] = ACTIONS(4628), + [anon_sym___asm] = ACTIONS(4628), + [sym_number_literal] = ACTIONS(4630), + [anon_sym_L_SQUOTE] = ACTIONS(4630), + [anon_sym_u_SQUOTE] = ACTIONS(4630), + [anon_sym_U_SQUOTE] = ACTIONS(4630), + [anon_sym_u8_SQUOTE] = ACTIONS(4630), + [anon_sym_SQUOTE] = ACTIONS(4630), + [anon_sym_L_DQUOTE] = ACTIONS(4630), + [anon_sym_u_DQUOTE] = ACTIONS(4630), + [anon_sym_U_DQUOTE] = ACTIONS(4630), + [anon_sym_u8_DQUOTE] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(4630), + [sym_true] = ACTIONS(4628), + [sym_false] = ACTIONS(4628), + [anon_sym_NULL] = ACTIONS(4628), + [anon_sym_nullptr] = ACTIONS(4628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4628), + [anon_sym_decltype] = ACTIONS(4628), + [anon_sym_explicit] = ACTIONS(4628), + [anon_sym_export] = ACTIONS(4628), + [anon_sym_module] = ACTIONS(4628), + [anon_sym_import] = ACTIONS(4628), + [anon_sym_template] = ACTIONS(4628), + [anon_sym_operator] = ACTIONS(4628), + [anon_sym_try] = ACTIONS(4628), + [anon_sym_delete] = ACTIONS(4628), + [anon_sym_throw] = ACTIONS(4628), + [anon_sym_namespace] = ACTIONS(4628), + [anon_sym_static_assert] = ACTIONS(4628), + [anon_sym_concept] = ACTIONS(4628), + [anon_sym_co_return] = ACTIONS(4628), + [anon_sym_co_yield] = ACTIONS(4628), + [anon_sym_R_DQUOTE] = ACTIONS(4630), + [anon_sym_LR_DQUOTE] = ACTIONS(4630), + [anon_sym_uR_DQUOTE] = ACTIONS(4630), + [anon_sym_UR_DQUOTE] = ACTIONS(4630), + [anon_sym_u8R_DQUOTE] = ACTIONS(4630), + [anon_sym_co_await] = ACTIONS(4628), + [anon_sym_new] = ACTIONS(4628), + [anon_sym_requires] = ACTIONS(4628), + [anon_sym_CARET_CARET] = ACTIONS(4630), + [anon_sym_LBRACK_COLON] = ACTIONS(4630), + [sym_this] = ACTIONS(4628), }, [STATE(543)] = { - [sym_else_clause] = STATE(600), - [sym_identifier] = ACTIONS(3408), - [aux_sym_preproc_include_token1] = ACTIONS(3408), - [aux_sym_preproc_def_token1] = ACTIONS(3408), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_if_token2] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), - [sym_preproc_directive] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3408), - [anon_sym_typedef] = ACTIONS(3408), - [anon_sym_virtual] = ACTIONS(3408), - [anon_sym_extern] = ACTIONS(3408), - [anon_sym___attribute__] = ACTIONS(3408), - [anon_sym___attribute] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(3410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), - [anon_sym___declspec] = ACTIONS(3408), - [anon_sym___based] = ACTIONS(3408), - [anon_sym___cdecl] = ACTIONS(3408), - [anon_sym___clrcall] = ACTIONS(3408), - [anon_sym___stdcall] = ACTIONS(3408), - [anon_sym___fastcall] = ACTIONS(3408), - [anon_sym___thiscall] = ACTIONS(3408), - [anon_sym___vectorcall] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3408), - [anon_sym_unsigned] = ACTIONS(3408), - [anon_sym_long] = ACTIONS(3408), - [anon_sym_short] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_register] = ACTIONS(3408), - [anon_sym_inline] = ACTIONS(3408), - [anon_sym___inline] = ACTIONS(3408), - [anon_sym___inline__] = ACTIONS(3408), - [anon_sym___forceinline] = ACTIONS(3408), - [anon_sym_thread_local] = ACTIONS(3408), - [anon_sym___thread] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_constexpr] = ACTIONS(3408), - [anon_sym_volatile] = ACTIONS(3408), - [anon_sym_restrict] = ACTIONS(3408), - [anon_sym___restrict__] = ACTIONS(3408), - [anon_sym__Atomic] = ACTIONS(3408), - [anon_sym__Noreturn] = ACTIONS(3408), - [anon_sym_noreturn] = ACTIONS(3408), - [anon_sym__Nonnull] = ACTIONS(3408), - [anon_sym_mutable] = ACTIONS(3408), - [anon_sym_constinit] = ACTIONS(3408), - [anon_sym_consteval] = ACTIONS(3408), - [anon_sym_alignas] = ACTIONS(3408), - [anon_sym__Alignas] = ACTIONS(3408), - [sym_primitive_type] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_else] = ACTIONS(4470), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym___try] = ACTIONS(3408), - [anon_sym___leave] = ACTIONS(3408), - [anon_sym_not] = ACTIONS(3408), - [anon_sym_compl] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3408), - [anon_sym___alignof__] = ACTIONS(3408), - [anon_sym___alignof] = ACTIONS(3408), - [anon_sym__alignof] = ACTIONS(3408), - [anon_sym_alignof] = ACTIONS(3408), - [anon_sym__Alignof] = ACTIONS(3408), - [anon_sym_offsetof] = ACTIONS(3408), - [anon_sym__Generic] = ACTIONS(3408), - [anon_sym_typename] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym___asm__] = ACTIONS(3408), - [anon_sym___asm] = ACTIONS(3408), - [sym_number_literal] = ACTIONS(3410), - [anon_sym_L_SQUOTE] = ACTIONS(3410), - [anon_sym_u_SQUOTE] = ACTIONS(3410), - [anon_sym_U_SQUOTE] = ACTIONS(3410), - [anon_sym_u8_SQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [anon_sym_L_DQUOTE] = ACTIONS(3410), - [anon_sym_u_DQUOTE] = ACTIONS(3410), - [anon_sym_U_DQUOTE] = ACTIONS(3410), - [anon_sym_u8_DQUOTE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [anon_sym_NULL] = ACTIONS(3408), - [anon_sym_nullptr] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3408), - [anon_sym_decltype] = ACTIONS(3408), - [anon_sym_explicit] = ACTIONS(3408), - [anon_sym_export] = ACTIONS(3408), - [anon_sym_module] = ACTIONS(3408), - [anon_sym_import] = ACTIONS(3408), - [anon_sym_template] = ACTIONS(3408), - [anon_sym_operator] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_static_assert] = ACTIONS(3408), - [anon_sym_concept] = ACTIONS(3408), - [anon_sym_co_return] = ACTIONS(3408), - [anon_sym_co_yield] = ACTIONS(3408), - [anon_sym_R_DQUOTE] = ACTIONS(3410), - [anon_sym_LR_DQUOTE] = ACTIONS(3410), - [anon_sym_uR_DQUOTE] = ACTIONS(3410), - [anon_sym_UR_DQUOTE] = ACTIONS(3410), - [anon_sym_u8R_DQUOTE] = ACTIONS(3410), - [anon_sym_co_await] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_requires] = ACTIONS(3408), - [anon_sym_CARET_CARET] = ACTIONS(3410), - [anon_sym_LBRACK_COLON] = ACTIONS(3410), - [sym_this] = ACTIONS(3408), + [sym_identifier] = ACTIONS(4632), + [aux_sym_preproc_include_token1] = ACTIONS(4632), + [aux_sym_preproc_def_token1] = ACTIONS(4632), + [aux_sym_preproc_if_token1] = ACTIONS(4632), + [aux_sym_preproc_if_token2] = ACTIONS(4632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4632), + [aux_sym_preproc_else_token1] = ACTIONS(4632), + [aux_sym_preproc_elif_token1] = ACTIONS(4632), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4632), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4632), + [sym_preproc_directive] = ACTIONS(4632), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4634), + [anon_sym_TILDE] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym___extension__] = ACTIONS(4632), + [anon_sym_typedef] = ACTIONS(4632), + [anon_sym_virtual] = ACTIONS(4632), + [anon_sym_extern] = ACTIONS(4632), + [anon_sym___attribute__] = ACTIONS(4632), + [anon_sym___attribute] = ACTIONS(4632), + [anon_sym_using] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4634), + [anon_sym___declspec] = ACTIONS(4632), + [anon_sym___based] = ACTIONS(4632), + [anon_sym___cdecl] = ACTIONS(4632), + [anon_sym___clrcall] = ACTIONS(4632), + [anon_sym___stdcall] = ACTIONS(4632), + [anon_sym___fastcall] = ACTIONS(4632), + [anon_sym___thiscall] = ACTIONS(4632), + [anon_sym___vectorcall] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_signed] = ACTIONS(4632), + [anon_sym_unsigned] = ACTIONS(4632), + [anon_sym_long] = ACTIONS(4632), + [anon_sym_short] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_static] = ACTIONS(4632), + [anon_sym_register] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym___inline] = ACTIONS(4632), + [anon_sym___inline__] = ACTIONS(4632), + [anon_sym___forceinline] = ACTIONS(4632), + [anon_sym_thread_local] = ACTIONS(4632), + [anon_sym___thread] = ACTIONS(4632), + [anon_sym_const] = ACTIONS(4632), + [anon_sym_constexpr] = ACTIONS(4632), + [anon_sym_volatile] = ACTIONS(4632), + [anon_sym_restrict] = ACTIONS(4632), + [anon_sym___restrict__] = ACTIONS(4632), + [anon_sym__Atomic] = ACTIONS(4632), + [anon_sym__Noreturn] = ACTIONS(4632), + [anon_sym_noreturn] = ACTIONS(4632), + [anon_sym__Nonnull] = ACTIONS(4632), + [anon_sym_mutable] = ACTIONS(4632), + [anon_sym_constinit] = ACTIONS(4632), + [anon_sym_consteval] = ACTIONS(4632), + [anon_sym_alignas] = ACTIONS(4632), + [anon_sym__Alignas] = ACTIONS(4632), + [sym_primitive_type] = ACTIONS(4632), + [anon_sym_enum] = ACTIONS(4632), + [anon_sym_class] = ACTIONS(4632), + [anon_sym_struct] = ACTIONS(4632), + [anon_sym_union] = ACTIONS(4632), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_switch] = ACTIONS(4632), + [anon_sym_case] = ACTIONS(4632), + [anon_sym_default] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_do] = ACTIONS(4632), + [anon_sym_for] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_goto] = ACTIONS(4632), + [anon_sym_not] = ACTIONS(4632), + [anon_sym_compl] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_sizeof] = ACTIONS(4632), + [anon_sym___alignof__] = ACTIONS(4632), + [anon_sym___alignof] = ACTIONS(4632), + [anon_sym__alignof] = ACTIONS(4632), + [anon_sym_alignof] = ACTIONS(4632), + [anon_sym__Alignof] = ACTIONS(4632), + [anon_sym_offsetof] = ACTIONS(4632), + [anon_sym__Generic] = ACTIONS(4632), + [anon_sym_typename] = ACTIONS(4632), + [anon_sym_asm] = ACTIONS(4632), + [anon_sym___asm__] = ACTIONS(4632), + [anon_sym___asm] = ACTIONS(4632), + [sym_number_literal] = ACTIONS(4634), + [anon_sym_L_SQUOTE] = ACTIONS(4634), + [anon_sym_u_SQUOTE] = ACTIONS(4634), + [anon_sym_U_SQUOTE] = ACTIONS(4634), + [anon_sym_u8_SQUOTE] = ACTIONS(4634), + [anon_sym_SQUOTE] = ACTIONS(4634), + [anon_sym_L_DQUOTE] = ACTIONS(4634), + [anon_sym_u_DQUOTE] = ACTIONS(4634), + [anon_sym_U_DQUOTE] = ACTIONS(4634), + [anon_sym_u8_DQUOTE] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4634), + [sym_true] = ACTIONS(4632), + [sym_false] = ACTIONS(4632), + [anon_sym_NULL] = ACTIONS(4632), + [anon_sym_nullptr] = ACTIONS(4632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4632), + [anon_sym_decltype] = ACTIONS(4632), + [anon_sym_explicit] = ACTIONS(4632), + [anon_sym_export] = ACTIONS(4632), + [anon_sym_module] = ACTIONS(4632), + [anon_sym_import] = ACTIONS(4632), + [anon_sym_template] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_delete] = ACTIONS(4632), + [anon_sym_throw] = ACTIONS(4632), + [anon_sym_namespace] = ACTIONS(4632), + [anon_sym_static_assert] = ACTIONS(4632), + [anon_sym_concept] = ACTIONS(4632), + [anon_sym_co_return] = ACTIONS(4632), + [anon_sym_co_yield] = ACTIONS(4632), + [anon_sym_R_DQUOTE] = ACTIONS(4634), + [anon_sym_LR_DQUOTE] = ACTIONS(4634), + [anon_sym_uR_DQUOTE] = ACTIONS(4634), + [anon_sym_UR_DQUOTE] = ACTIONS(4634), + [anon_sym_u8R_DQUOTE] = ACTIONS(4634), + [anon_sym_co_await] = ACTIONS(4632), + [anon_sym_new] = ACTIONS(4632), + [anon_sym_requires] = ACTIONS(4632), + [anon_sym_CARET_CARET] = ACTIONS(4634), + [anon_sym_LBRACK_COLON] = ACTIONS(4634), + [sym_this] = ACTIONS(4632), }, [STATE(544)] = { - [sym_identifier] = ACTIONS(4510), - [aux_sym_preproc_include_token1] = ACTIONS(4510), - [aux_sym_preproc_def_token1] = ACTIONS(4510), - [aux_sym_preproc_if_token1] = ACTIONS(4510), - [aux_sym_preproc_if_token2] = ACTIONS(4510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4510), - [aux_sym_preproc_else_token1] = ACTIONS(4510), - [aux_sym_preproc_elif_token1] = ACTIONS(4510), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4510), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4510), - [sym_preproc_directive] = ACTIONS(4510), - [anon_sym_LPAREN2] = ACTIONS(4512), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_TILDE] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4510), - [anon_sym_STAR] = ACTIONS(4512), - [anon_sym_AMP_AMP] = ACTIONS(4512), - [anon_sym_AMP] = ACTIONS(4510), - [anon_sym_SEMI] = ACTIONS(4512), - [anon_sym___extension__] = ACTIONS(4510), - [anon_sym_typedef] = ACTIONS(4510), - [anon_sym_virtual] = ACTIONS(4510), - [anon_sym_extern] = ACTIONS(4510), - [anon_sym___attribute__] = ACTIONS(4510), - [anon_sym___attribute] = ACTIONS(4510), - [anon_sym_using] = ACTIONS(4510), - [anon_sym_COLON_COLON] = ACTIONS(4512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4512), - [anon_sym___declspec] = ACTIONS(4510), - [anon_sym___based] = ACTIONS(4510), - [anon_sym___cdecl] = ACTIONS(4510), - [anon_sym___clrcall] = ACTIONS(4510), - [anon_sym___stdcall] = ACTIONS(4510), - [anon_sym___fastcall] = ACTIONS(4510), - [anon_sym___thiscall] = ACTIONS(4510), - [anon_sym___vectorcall] = ACTIONS(4510), - [anon_sym_LBRACE] = ACTIONS(4512), - [anon_sym_signed] = ACTIONS(4510), - [anon_sym_unsigned] = ACTIONS(4510), - [anon_sym_long] = ACTIONS(4510), - [anon_sym_short] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_static] = ACTIONS(4510), - [anon_sym_register] = ACTIONS(4510), - [anon_sym_inline] = ACTIONS(4510), - [anon_sym___inline] = ACTIONS(4510), - [anon_sym___inline__] = ACTIONS(4510), - [anon_sym___forceinline] = ACTIONS(4510), - [anon_sym_thread_local] = ACTIONS(4510), - [anon_sym___thread] = ACTIONS(4510), - [anon_sym_const] = ACTIONS(4510), - [anon_sym_constexpr] = ACTIONS(4510), - [anon_sym_volatile] = ACTIONS(4510), - [anon_sym_restrict] = ACTIONS(4510), - [anon_sym___restrict__] = ACTIONS(4510), - [anon_sym__Atomic] = ACTIONS(4510), - [anon_sym__Noreturn] = ACTIONS(4510), - [anon_sym_noreturn] = ACTIONS(4510), - [anon_sym__Nonnull] = ACTIONS(4510), - [anon_sym_mutable] = ACTIONS(4510), - [anon_sym_constinit] = ACTIONS(4510), - [anon_sym_consteval] = ACTIONS(4510), - [anon_sym_alignas] = ACTIONS(4510), - [anon_sym__Alignas] = ACTIONS(4510), - [sym_primitive_type] = ACTIONS(4510), - [anon_sym_enum] = ACTIONS(4510), - [anon_sym_class] = ACTIONS(4510), - [anon_sym_struct] = ACTIONS(4510), - [anon_sym_union] = ACTIONS(4510), - [anon_sym_if] = ACTIONS(4510), - [anon_sym_switch] = ACTIONS(4510), - [anon_sym_case] = ACTIONS(4510), - [anon_sym_default] = ACTIONS(4510), - [anon_sym_while] = ACTIONS(4510), - [anon_sym_do] = ACTIONS(4510), - [anon_sym_for] = ACTIONS(4510), - [anon_sym_return] = ACTIONS(4510), - [anon_sym_break] = ACTIONS(4510), - [anon_sym_continue] = ACTIONS(4510), - [anon_sym_goto] = ACTIONS(4510), - [anon_sym_not] = ACTIONS(4510), - [anon_sym_compl] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4512), - [anon_sym_PLUS_PLUS] = ACTIONS(4512), - [anon_sym_sizeof] = ACTIONS(4510), - [anon_sym___alignof__] = ACTIONS(4510), - [anon_sym___alignof] = ACTIONS(4510), - [anon_sym__alignof] = ACTIONS(4510), - [anon_sym_alignof] = ACTIONS(4510), - [anon_sym__Alignof] = ACTIONS(4510), - [anon_sym_offsetof] = ACTIONS(4510), - [anon_sym__Generic] = ACTIONS(4510), - [anon_sym_typename] = ACTIONS(4510), - [anon_sym_asm] = ACTIONS(4510), - [anon_sym___asm__] = ACTIONS(4510), - [anon_sym___asm] = ACTIONS(4510), - [sym_number_literal] = ACTIONS(4512), - [anon_sym_L_SQUOTE] = ACTIONS(4512), - [anon_sym_u_SQUOTE] = ACTIONS(4512), - [anon_sym_U_SQUOTE] = ACTIONS(4512), - [anon_sym_u8_SQUOTE] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4512), - [anon_sym_L_DQUOTE] = ACTIONS(4512), - [anon_sym_u_DQUOTE] = ACTIONS(4512), - [anon_sym_U_DQUOTE] = ACTIONS(4512), - [anon_sym_u8_DQUOTE] = ACTIONS(4512), - [anon_sym_DQUOTE] = ACTIONS(4512), - [sym_true] = ACTIONS(4510), - [sym_false] = ACTIONS(4510), - [anon_sym_NULL] = ACTIONS(4510), - [anon_sym_nullptr] = ACTIONS(4510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4510), - [anon_sym_decltype] = ACTIONS(4510), - [anon_sym_explicit] = ACTIONS(4510), - [anon_sym_export] = ACTIONS(4510), - [anon_sym_module] = ACTIONS(4510), - [anon_sym_import] = ACTIONS(4510), - [anon_sym_template] = ACTIONS(4510), - [anon_sym_operator] = ACTIONS(4510), - [anon_sym_try] = ACTIONS(4510), - [anon_sym_delete] = ACTIONS(4510), - [anon_sym_throw] = ACTIONS(4510), - [anon_sym_namespace] = ACTIONS(4510), - [anon_sym_static_assert] = ACTIONS(4510), - [anon_sym_concept] = ACTIONS(4510), - [anon_sym_co_return] = ACTIONS(4510), - [anon_sym_co_yield] = ACTIONS(4510), - [anon_sym_R_DQUOTE] = ACTIONS(4512), - [anon_sym_LR_DQUOTE] = ACTIONS(4512), - [anon_sym_uR_DQUOTE] = ACTIONS(4512), - [anon_sym_UR_DQUOTE] = ACTIONS(4512), - [anon_sym_u8R_DQUOTE] = ACTIONS(4512), - [anon_sym_co_await] = ACTIONS(4510), - [anon_sym_new] = ACTIONS(4510), - [anon_sym_requires] = ACTIONS(4510), - [anon_sym_CARET_CARET] = ACTIONS(4512), - [anon_sym_LBRACK_COLON] = ACTIONS(4512), - [sym_this] = ACTIONS(4510), + [sym_identifier] = ACTIONS(4636), + [aux_sym_preproc_include_token1] = ACTIONS(4636), + [aux_sym_preproc_def_token1] = ACTIONS(4636), + [aux_sym_preproc_if_token1] = ACTIONS(4636), + [aux_sym_preproc_if_token2] = ACTIONS(4636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4636), + [aux_sym_preproc_else_token1] = ACTIONS(4636), + [aux_sym_preproc_elif_token1] = ACTIONS(4636), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4636), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4636), + [sym_preproc_directive] = ACTIONS(4636), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(4638), + [anon_sym_TILDE] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_PLUS] = ACTIONS(4636), + [anon_sym_STAR] = ACTIONS(4638), + [anon_sym_AMP_AMP] = ACTIONS(4638), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_SEMI] = ACTIONS(4638), + [anon_sym___extension__] = ACTIONS(4636), + [anon_sym_typedef] = ACTIONS(4636), + [anon_sym_virtual] = ACTIONS(4636), + [anon_sym_extern] = ACTIONS(4636), + [anon_sym___attribute__] = ACTIONS(4636), + [anon_sym___attribute] = ACTIONS(4636), + [anon_sym_using] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(4638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4638), + [anon_sym___declspec] = ACTIONS(4636), + [anon_sym___based] = ACTIONS(4636), + [anon_sym___cdecl] = ACTIONS(4636), + [anon_sym___clrcall] = ACTIONS(4636), + [anon_sym___stdcall] = ACTIONS(4636), + [anon_sym___fastcall] = ACTIONS(4636), + [anon_sym___thiscall] = ACTIONS(4636), + [anon_sym___vectorcall] = ACTIONS(4636), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_signed] = ACTIONS(4636), + [anon_sym_unsigned] = ACTIONS(4636), + [anon_sym_long] = ACTIONS(4636), + [anon_sym_short] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4636), + [anon_sym_static] = ACTIONS(4636), + [anon_sym_register] = ACTIONS(4636), + [anon_sym_inline] = ACTIONS(4636), + [anon_sym___inline] = ACTIONS(4636), + [anon_sym___inline__] = ACTIONS(4636), + [anon_sym___forceinline] = ACTIONS(4636), + [anon_sym_thread_local] = ACTIONS(4636), + [anon_sym___thread] = ACTIONS(4636), + [anon_sym_const] = ACTIONS(4636), + [anon_sym_constexpr] = ACTIONS(4636), + [anon_sym_volatile] = ACTIONS(4636), + [anon_sym_restrict] = ACTIONS(4636), + [anon_sym___restrict__] = ACTIONS(4636), + [anon_sym__Atomic] = ACTIONS(4636), + [anon_sym__Noreturn] = ACTIONS(4636), + [anon_sym_noreturn] = ACTIONS(4636), + [anon_sym__Nonnull] = ACTIONS(4636), + [anon_sym_mutable] = ACTIONS(4636), + [anon_sym_constinit] = ACTIONS(4636), + [anon_sym_consteval] = ACTIONS(4636), + [anon_sym_alignas] = ACTIONS(4636), + [anon_sym__Alignas] = ACTIONS(4636), + [sym_primitive_type] = ACTIONS(4636), + [anon_sym_enum] = ACTIONS(4636), + [anon_sym_class] = ACTIONS(4636), + [anon_sym_struct] = ACTIONS(4636), + [anon_sym_union] = ACTIONS(4636), + [anon_sym_if] = ACTIONS(4636), + [anon_sym_switch] = ACTIONS(4636), + [anon_sym_case] = ACTIONS(4636), + [anon_sym_default] = ACTIONS(4636), + [anon_sym_while] = ACTIONS(4636), + [anon_sym_do] = ACTIONS(4636), + [anon_sym_for] = ACTIONS(4636), + [anon_sym_return] = ACTIONS(4636), + [anon_sym_break] = ACTIONS(4636), + [anon_sym_continue] = ACTIONS(4636), + [anon_sym_goto] = ACTIONS(4636), + [anon_sym_not] = ACTIONS(4636), + [anon_sym_compl] = ACTIONS(4636), + [anon_sym_DASH_DASH] = ACTIONS(4638), + [anon_sym_PLUS_PLUS] = ACTIONS(4638), + [anon_sym_sizeof] = ACTIONS(4636), + [anon_sym___alignof__] = ACTIONS(4636), + [anon_sym___alignof] = ACTIONS(4636), + [anon_sym__alignof] = ACTIONS(4636), + [anon_sym_alignof] = ACTIONS(4636), + [anon_sym__Alignof] = ACTIONS(4636), + [anon_sym_offsetof] = ACTIONS(4636), + [anon_sym__Generic] = ACTIONS(4636), + [anon_sym_typename] = ACTIONS(4636), + [anon_sym_asm] = ACTIONS(4636), + [anon_sym___asm__] = ACTIONS(4636), + [anon_sym___asm] = ACTIONS(4636), + [sym_number_literal] = ACTIONS(4638), + [anon_sym_L_SQUOTE] = ACTIONS(4638), + [anon_sym_u_SQUOTE] = ACTIONS(4638), + [anon_sym_U_SQUOTE] = ACTIONS(4638), + [anon_sym_u8_SQUOTE] = ACTIONS(4638), + [anon_sym_SQUOTE] = ACTIONS(4638), + [anon_sym_L_DQUOTE] = ACTIONS(4638), + [anon_sym_u_DQUOTE] = ACTIONS(4638), + [anon_sym_U_DQUOTE] = ACTIONS(4638), + [anon_sym_u8_DQUOTE] = ACTIONS(4638), + [anon_sym_DQUOTE] = ACTIONS(4638), + [sym_true] = ACTIONS(4636), + [sym_false] = ACTIONS(4636), + [anon_sym_NULL] = ACTIONS(4636), + [anon_sym_nullptr] = ACTIONS(4636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4636), + [anon_sym_decltype] = ACTIONS(4636), + [anon_sym_explicit] = ACTIONS(4636), + [anon_sym_export] = ACTIONS(4636), + [anon_sym_module] = ACTIONS(4636), + [anon_sym_import] = ACTIONS(4636), + [anon_sym_template] = ACTIONS(4636), + [anon_sym_operator] = ACTIONS(4636), + [anon_sym_try] = ACTIONS(4636), + [anon_sym_delete] = ACTIONS(4636), + [anon_sym_throw] = ACTIONS(4636), + [anon_sym_namespace] = ACTIONS(4636), + [anon_sym_static_assert] = ACTIONS(4636), + [anon_sym_concept] = ACTIONS(4636), + [anon_sym_co_return] = ACTIONS(4636), + [anon_sym_co_yield] = ACTIONS(4636), + [anon_sym_R_DQUOTE] = ACTIONS(4638), + [anon_sym_LR_DQUOTE] = ACTIONS(4638), + [anon_sym_uR_DQUOTE] = ACTIONS(4638), + [anon_sym_UR_DQUOTE] = ACTIONS(4638), + [anon_sym_u8R_DQUOTE] = ACTIONS(4638), + [anon_sym_co_await] = ACTIONS(4636), + [anon_sym_new] = ACTIONS(4636), + [anon_sym_requires] = ACTIONS(4636), + [anon_sym_CARET_CARET] = ACTIONS(4638), + [anon_sym_LBRACK_COLON] = ACTIONS(4638), + [sym_this] = ACTIONS(4636), }, [STATE(545)] = { - [ts_builtin_sym_end] = ACTIONS(3364), - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym___attribute] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym__Nonnull] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym__Alignas] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_else] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym___try] = ACTIONS(3362), - [anon_sym___leave] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [anon_sym___asm] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_export] = ACTIONS(3362), - [anon_sym_module] = ACTIONS(3362), - [anon_sym_import] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_catch] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [anon_sym_CARET_CARET] = ACTIONS(3364), - [anon_sym_LBRACK_COLON] = ACTIONS(3364), - [sym_this] = ACTIONS(3362), + [sym_identifier] = ACTIONS(4640), + [aux_sym_preproc_include_token1] = ACTIONS(4640), + [aux_sym_preproc_def_token1] = ACTIONS(4640), + [aux_sym_preproc_if_token1] = ACTIONS(4640), + [aux_sym_preproc_if_token2] = ACTIONS(4640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4640), + [aux_sym_preproc_else_token1] = ACTIONS(4640), + [aux_sym_preproc_elif_token1] = ACTIONS(4640), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4640), + [sym_preproc_directive] = ACTIONS(4640), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_AMP_AMP] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4640), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym___extension__] = ACTIONS(4640), + [anon_sym_typedef] = ACTIONS(4640), + [anon_sym_virtual] = ACTIONS(4640), + [anon_sym_extern] = ACTIONS(4640), + [anon_sym___attribute__] = ACTIONS(4640), + [anon_sym___attribute] = ACTIONS(4640), + [anon_sym_using] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4642), + [anon_sym___declspec] = ACTIONS(4640), + [anon_sym___based] = ACTIONS(4640), + [anon_sym___cdecl] = ACTIONS(4640), + [anon_sym___clrcall] = ACTIONS(4640), + [anon_sym___stdcall] = ACTIONS(4640), + [anon_sym___fastcall] = ACTIONS(4640), + [anon_sym___thiscall] = ACTIONS(4640), + [anon_sym___vectorcall] = ACTIONS(4640), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_signed] = ACTIONS(4640), + [anon_sym_unsigned] = ACTIONS(4640), + [anon_sym_long] = ACTIONS(4640), + [anon_sym_short] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_static] = ACTIONS(4640), + [anon_sym_register] = ACTIONS(4640), + [anon_sym_inline] = ACTIONS(4640), + [anon_sym___inline] = ACTIONS(4640), + [anon_sym___inline__] = ACTIONS(4640), + [anon_sym___forceinline] = ACTIONS(4640), + [anon_sym_thread_local] = ACTIONS(4640), + [anon_sym___thread] = ACTIONS(4640), + [anon_sym_const] = ACTIONS(4640), + [anon_sym_constexpr] = ACTIONS(4640), + [anon_sym_volatile] = ACTIONS(4640), + [anon_sym_restrict] = ACTIONS(4640), + [anon_sym___restrict__] = ACTIONS(4640), + [anon_sym__Atomic] = ACTIONS(4640), + [anon_sym__Noreturn] = ACTIONS(4640), + [anon_sym_noreturn] = ACTIONS(4640), + [anon_sym__Nonnull] = ACTIONS(4640), + [anon_sym_mutable] = ACTIONS(4640), + [anon_sym_constinit] = ACTIONS(4640), + [anon_sym_consteval] = ACTIONS(4640), + [anon_sym_alignas] = ACTIONS(4640), + [anon_sym__Alignas] = ACTIONS(4640), + [sym_primitive_type] = ACTIONS(4640), + [anon_sym_enum] = ACTIONS(4640), + [anon_sym_class] = ACTIONS(4640), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_union] = ACTIONS(4640), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_switch] = ACTIONS(4640), + [anon_sym_case] = ACTIONS(4640), + [anon_sym_default] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_do] = ACTIONS(4640), + [anon_sym_for] = ACTIONS(4640), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_goto] = ACTIONS(4640), + [anon_sym_not] = ACTIONS(4640), + [anon_sym_compl] = ACTIONS(4640), + [anon_sym_DASH_DASH] = ACTIONS(4642), + [anon_sym_PLUS_PLUS] = ACTIONS(4642), + [anon_sym_sizeof] = ACTIONS(4640), + [anon_sym___alignof__] = ACTIONS(4640), + [anon_sym___alignof] = ACTIONS(4640), + [anon_sym__alignof] = ACTIONS(4640), + [anon_sym_alignof] = ACTIONS(4640), + [anon_sym__Alignof] = ACTIONS(4640), + [anon_sym_offsetof] = ACTIONS(4640), + [anon_sym__Generic] = ACTIONS(4640), + [anon_sym_typename] = ACTIONS(4640), + [anon_sym_asm] = ACTIONS(4640), + [anon_sym___asm__] = ACTIONS(4640), + [anon_sym___asm] = ACTIONS(4640), + [sym_number_literal] = ACTIONS(4642), + [anon_sym_L_SQUOTE] = ACTIONS(4642), + [anon_sym_u_SQUOTE] = ACTIONS(4642), + [anon_sym_U_SQUOTE] = ACTIONS(4642), + [anon_sym_u8_SQUOTE] = ACTIONS(4642), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_L_DQUOTE] = ACTIONS(4642), + [anon_sym_u_DQUOTE] = ACTIONS(4642), + [anon_sym_U_DQUOTE] = ACTIONS(4642), + [anon_sym_u8_DQUOTE] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [sym_true] = ACTIONS(4640), + [sym_false] = ACTIONS(4640), + [anon_sym_NULL] = ACTIONS(4640), + [anon_sym_nullptr] = ACTIONS(4640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4640), + [anon_sym_decltype] = ACTIONS(4640), + [anon_sym_explicit] = ACTIONS(4640), + [anon_sym_export] = ACTIONS(4640), + [anon_sym_module] = ACTIONS(4640), + [anon_sym_import] = ACTIONS(4640), + [anon_sym_template] = ACTIONS(4640), + [anon_sym_operator] = ACTIONS(4640), + [anon_sym_try] = ACTIONS(4640), + [anon_sym_delete] = ACTIONS(4640), + [anon_sym_throw] = ACTIONS(4640), + [anon_sym_namespace] = ACTIONS(4640), + [anon_sym_static_assert] = ACTIONS(4640), + [anon_sym_concept] = ACTIONS(4640), + [anon_sym_co_return] = ACTIONS(4640), + [anon_sym_co_yield] = ACTIONS(4640), + [anon_sym_R_DQUOTE] = ACTIONS(4642), + [anon_sym_LR_DQUOTE] = ACTIONS(4642), + [anon_sym_uR_DQUOTE] = ACTIONS(4642), + [anon_sym_UR_DQUOTE] = ACTIONS(4642), + [anon_sym_u8R_DQUOTE] = ACTIONS(4642), + [anon_sym_co_await] = ACTIONS(4640), + [anon_sym_new] = ACTIONS(4640), + [anon_sym_requires] = ACTIONS(4640), + [anon_sym_CARET_CARET] = ACTIONS(4642), + [anon_sym_LBRACK_COLON] = ACTIONS(4642), + [sym_this] = ACTIONS(4640), }, [STATE(546)] = { - [sym_identifier] = ACTIONS(4514), - [aux_sym_preproc_include_token1] = ACTIONS(4514), - [aux_sym_preproc_def_token1] = ACTIONS(4514), - [aux_sym_preproc_if_token1] = ACTIONS(4514), - [aux_sym_preproc_if_token2] = ACTIONS(4514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4514), - [aux_sym_preproc_else_token1] = ACTIONS(4514), - [aux_sym_preproc_elif_token1] = ACTIONS(4514), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4514), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4514), - [sym_preproc_directive] = ACTIONS(4514), - [anon_sym_LPAREN2] = ACTIONS(4516), - [anon_sym_BANG] = ACTIONS(4516), - [anon_sym_TILDE] = ACTIONS(4516), - [anon_sym_DASH] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4514), - [anon_sym_STAR] = ACTIONS(4516), - [anon_sym_AMP_AMP] = ACTIONS(4516), - [anon_sym_AMP] = ACTIONS(4514), - [anon_sym_SEMI] = ACTIONS(4516), - [anon_sym___extension__] = ACTIONS(4514), - [anon_sym_typedef] = ACTIONS(4514), - [anon_sym_virtual] = ACTIONS(4514), - [anon_sym_extern] = ACTIONS(4514), - [anon_sym___attribute__] = ACTIONS(4514), - [anon_sym___attribute] = ACTIONS(4514), - [anon_sym_using] = ACTIONS(4514), - [anon_sym_COLON_COLON] = ACTIONS(4516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4516), - [anon_sym___declspec] = ACTIONS(4514), - [anon_sym___based] = ACTIONS(4514), - [anon_sym___cdecl] = ACTIONS(4514), - [anon_sym___clrcall] = ACTIONS(4514), - [anon_sym___stdcall] = ACTIONS(4514), - [anon_sym___fastcall] = ACTIONS(4514), - [anon_sym___thiscall] = ACTIONS(4514), - [anon_sym___vectorcall] = ACTIONS(4514), - [anon_sym_LBRACE] = ACTIONS(4516), - [anon_sym_signed] = ACTIONS(4514), - [anon_sym_unsigned] = ACTIONS(4514), - [anon_sym_long] = ACTIONS(4514), - [anon_sym_short] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_static] = ACTIONS(4514), - [anon_sym_register] = ACTIONS(4514), - [anon_sym_inline] = ACTIONS(4514), - [anon_sym___inline] = ACTIONS(4514), - [anon_sym___inline__] = ACTIONS(4514), - [anon_sym___forceinline] = ACTIONS(4514), - [anon_sym_thread_local] = ACTIONS(4514), - [anon_sym___thread] = ACTIONS(4514), - [anon_sym_const] = ACTIONS(4514), - [anon_sym_constexpr] = ACTIONS(4514), - [anon_sym_volatile] = ACTIONS(4514), - [anon_sym_restrict] = ACTIONS(4514), - [anon_sym___restrict__] = ACTIONS(4514), - [anon_sym__Atomic] = ACTIONS(4514), - [anon_sym__Noreturn] = ACTIONS(4514), - [anon_sym_noreturn] = ACTIONS(4514), - [anon_sym__Nonnull] = ACTIONS(4514), - [anon_sym_mutable] = ACTIONS(4514), - [anon_sym_constinit] = ACTIONS(4514), - [anon_sym_consteval] = ACTIONS(4514), - [anon_sym_alignas] = ACTIONS(4514), - [anon_sym__Alignas] = ACTIONS(4514), - [sym_primitive_type] = ACTIONS(4514), - [anon_sym_enum] = ACTIONS(4514), - [anon_sym_class] = ACTIONS(4514), - [anon_sym_struct] = ACTIONS(4514), - [anon_sym_union] = ACTIONS(4514), - [anon_sym_if] = ACTIONS(4514), - [anon_sym_switch] = ACTIONS(4514), - [anon_sym_case] = ACTIONS(4514), - [anon_sym_default] = ACTIONS(4514), - [anon_sym_while] = ACTIONS(4514), - [anon_sym_do] = ACTIONS(4514), - [anon_sym_for] = ACTIONS(4514), - [anon_sym_return] = ACTIONS(4514), - [anon_sym_break] = ACTIONS(4514), - [anon_sym_continue] = ACTIONS(4514), - [anon_sym_goto] = ACTIONS(4514), - [anon_sym_not] = ACTIONS(4514), - [anon_sym_compl] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4516), - [anon_sym_PLUS_PLUS] = ACTIONS(4516), - [anon_sym_sizeof] = ACTIONS(4514), - [anon_sym___alignof__] = ACTIONS(4514), - [anon_sym___alignof] = ACTIONS(4514), - [anon_sym__alignof] = ACTIONS(4514), - [anon_sym_alignof] = ACTIONS(4514), - [anon_sym__Alignof] = ACTIONS(4514), - [anon_sym_offsetof] = ACTIONS(4514), - [anon_sym__Generic] = ACTIONS(4514), - [anon_sym_typename] = ACTIONS(4514), - [anon_sym_asm] = ACTIONS(4514), - [anon_sym___asm__] = ACTIONS(4514), - [anon_sym___asm] = ACTIONS(4514), - [sym_number_literal] = ACTIONS(4516), - [anon_sym_L_SQUOTE] = ACTIONS(4516), - [anon_sym_u_SQUOTE] = ACTIONS(4516), - [anon_sym_U_SQUOTE] = ACTIONS(4516), - [anon_sym_u8_SQUOTE] = ACTIONS(4516), - [anon_sym_SQUOTE] = ACTIONS(4516), - [anon_sym_L_DQUOTE] = ACTIONS(4516), - [anon_sym_u_DQUOTE] = ACTIONS(4516), - [anon_sym_U_DQUOTE] = ACTIONS(4516), - [anon_sym_u8_DQUOTE] = ACTIONS(4516), - [anon_sym_DQUOTE] = ACTIONS(4516), - [sym_true] = ACTIONS(4514), - [sym_false] = ACTIONS(4514), - [anon_sym_NULL] = ACTIONS(4514), - [anon_sym_nullptr] = ACTIONS(4514), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4514), - [anon_sym_decltype] = ACTIONS(4514), - [anon_sym_explicit] = ACTIONS(4514), - [anon_sym_export] = ACTIONS(4514), - [anon_sym_module] = ACTIONS(4514), - [anon_sym_import] = ACTIONS(4514), - [anon_sym_template] = ACTIONS(4514), - [anon_sym_operator] = ACTIONS(4514), - [anon_sym_try] = ACTIONS(4514), - [anon_sym_delete] = ACTIONS(4514), - [anon_sym_throw] = ACTIONS(4514), - [anon_sym_namespace] = ACTIONS(4514), - [anon_sym_static_assert] = ACTIONS(4514), - [anon_sym_concept] = ACTIONS(4514), - [anon_sym_co_return] = ACTIONS(4514), - [anon_sym_co_yield] = ACTIONS(4514), - [anon_sym_R_DQUOTE] = ACTIONS(4516), - [anon_sym_LR_DQUOTE] = ACTIONS(4516), - [anon_sym_uR_DQUOTE] = ACTIONS(4516), - [anon_sym_UR_DQUOTE] = ACTIONS(4516), - [anon_sym_u8R_DQUOTE] = ACTIONS(4516), - [anon_sym_co_await] = ACTIONS(4514), - [anon_sym_new] = ACTIONS(4514), - [anon_sym_requires] = ACTIONS(4514), - [anon_sym_CARET_CARET] = ACTIONS(4516), - [anon_sym_LBRACK_COLON] = ACTIONS(4516), - [sym_this] = ACTIONS(4514), + [sym_catch_clause] = STATE(519), + [aux_sym_constructor_try_statement_repeat1] = STATE(519), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym___attribute] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym__Nonnull] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym__Alignas] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym___try] = ACTIONS(3176), + [anon_sym___leave] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym___alignof__] = ACTIONS(3176), + [anon_sym___alignof] = ACTIONS(3176), + [anon_sym__alignof] = ACTIONS(3176), + [anon_sym_alignof] = ACTIONS(3176), + [anon_sym__Alignof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [anon_sym___asm] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [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(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_catch] = ACTIONS(4448), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [anon_sym_CARET_CARET] = ACTIONS(3178), + [anon_sym_LBRACK_COLON] = ACTIONS(3178), + [sym_this] = ACTIONS(3176), }, [STATE(547)] = { - [sym_identifier] = ACTIONS(4518), - [aux_sym_preproc_include_token1] = ACTIONS(4518), - [aux_sym_preproc_def_token1] = ACTIONS(4518), - [aux_sym_preproc_if_token1] = ACTIONS(4518), - [aux_sym_preproc_if_token2] = ACTIONS(4518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4518), - [aux_sym_preproc_else_token1] = ACTIONS(4518), - [aux_sym_preproc_elif_token1] = ACTIONS(4518), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4518), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4518), - [sym_preproc_directive] = ACTIONS(4518), - [anon_sym_LPAREN2] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_TILDE] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_AMP] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym___extension__] = ACTIONS(4518), - [anon_sym_typedef] = ACTIONS(4518), - [anon_sym_virtual] = ACTIONS(4518), - [anon_sym_extern] = ACTIONS(4518), - [anon_sym___attribute__] = ACTIONS(4518), - [anon_sym___attribute] = ACTIONS(4518), - [anon_sym_using] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4520), - [anon_sym___declspec] = ACTIONS(4518), - [anon_sym___based] = ACTIONS(4518), - [anon_sym___cdecl] = ACTIONS(4518), - [anon_sym___clrcall] = ACTIONS(4518), - [anon_sym___stdcall] = ACTIONS(4518), - [anon_sym___fastcall] = ACTIONS(4518), - [anon_sym___thiscall] = ACTIONS(4518), - [anon_sym___vectorcall] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4520), - [anon_sym_signed] = ACTIONS(4518), - [anon_sym_unsigned] = ACTIONS(4518), - [anon_sym_long] = ACTIONS(4518), - [anon_sym_short] = ACTIONS(4518), - [anon_sym_LBRACK] = ACTIONS(4518), - [anon_sym_static] = ACTIONS(4518), - [anon_sym_register] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym___inline] = ACTIONS(4518), - [anon_sym___inline__] = ACTIONS(4518), - [anon_sym___forceinline] = ACTIONS(4518), - [anon_sym_thread_local] = ACTIONS(4518), - [anon_sym___thread] = ACTIONS(4518), - [anon_sym_const] = ACTIONS(4518), - [anon_sym_constexpr] = ACTIONS(4518), - [anon_sym_volatile] = ACTIONS(4518), - [anon_sym_restrict] = ACTIONS(4518), - [anon_sym___restrict__] = ACTIONS(4518), - [anon_sym__Atomic] = ACTIONS(4518), - [anon_sym__Noreturn] = ACTIONS(4518), - [anon_sym_noreturn] = ACTIONS(4518), - [anon_sym__Nonnull] = ACTIONS(4518), - [anon_sym_mutable] = ACTIONS(4518), - [anon_sym_constinit] = ACTIONS(4518), - [anon_sym_consteval] = ACTIONS(4518), - [anon_sym_alignas] = ACTIONS(4518), - [anon_sym__Alignas] = ACTIONS(4518), - [sym_primitive_type] = ACTIONS(4518), - [anon_sym_enum] = ACTIONS(4518), - [anon_sym_class] = ACTIONS(4518), - [anon_sym_struct] = ACTIONS(4518), - [anon_sym_union] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_switch] = ACTIONS(4518), - [anon_sym_case] = ACTIONS(4518), - [anon_sym_default] = ACTIONS(4518), - [anon_sym_while] = ACTIONS(4518), - [anon_sym_do] = ACTIONS(4518), - [anon_sym_for] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_goto] = ACTIONS(4518), - [anon_sym_not] = ACTIONS(4518), - [anon_sym_compl] = ACTIONS(4518), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_sizeof] = ACTIONS(4518), - [anon_sym___alignof__] = ACTIONS(4518), - [anon_sym___alignof] = ACTIONS(4518), - [anon_sym__alignof] = ACTIONS(4518), - [anon_sym_alignof] = ACTIONS(4518), - [anon_sym__Alignof] = ACTIONS(4518), - [anon_sym_offsetof] = ACTIONS(4518), - [anon_sym__Generic] = ACTIONS(4518), - [anon_sym_typename] = ACTIONS(4518), - [anon_sym_asm] = ACTIONS(4518), - [anon_sym___asm__] = ACTIONS(4518), - [anon_sym___asm] = ACTIONS(4518), - [sym_number_literal] = ACTIONS(4520), - [anon_sym_L_SQUOTE] = ACTIONS(4520), - [anon_sym_u_SQUOTE] = ACTIONS(4520), - [anon_sym_U_SQUOTE] = ACTIONS(4520), - [anon_sym_u8_SQUOTE] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4520), - [anon_sym_L_DQUOTE] = ACTIONS(4520), - [anon_sym_u_DQUOTE] = ACTIONS(4520), - [anon_sym_U_DQUOTE] = ACTIONS(4520), - [anon_sym_u8_DQUOTE] = ACTIONS(4520), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym_true] = ACTIONS(4518), - [sym_false] = ACTIONS(4518), - [anon_sym_NULL] = ACTIONS(4518), - [anon_sym_nullptr] = ACTIONS(4518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4518), - [anon_sym_decltype] = ACTIONS(4518), - [anon_sym_explicit] = ACTIONS(4518), - [anon_sym_export] = ACTIONS(4518), - [anon_sym_module] = ACTIONS(4518), - [anon_sym_import] = ACTIONS(4518), - [anon_sym_template] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_delete] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_namespace] = ACTIONS(4518), - [anon_sym_static_assert] = ACTIONS(4518), - [anon_sym_concept] = ACTIONS(4518), - [anon_sym_co_return] = ACTIONS(4518), - [anon_sym_co_yield] = ACTIONS(4518), - [anon_sym_R_DQUOTE] = ACTIONS(4520), - [anon_sym_LR_DQUOTE] = ACTIONS(4520), - [anon_sym_uR_DQUOTE] = ACTIONS(4520), - [anon_sym_UR_DQUOTE] = ACTIONS(4520), - [anon_sym_u8R_DQUOTE] = ACTIONS(4520), - [anon_sym_co_await] = ACTIONS(4518), - [anon_sym_new] = ACTIONS(4518), - [anon_sym_requires] = ACTIONS(4518), - [anon_sym_CARET_CARET] = ACTIONS(4520), - [anon_sym_LBRACK_COLON] = ACTIONS(4520), - [sym_this] = ACTIONS(4518), + [sym_identifier] = ACTIONS(4644), + [aux_sym_preproc_include_token1] = ACTIONS(4644), + [aux_sym_preproc_def_token1] = ACTIONS(4644), + [aux_sym_preproc_if_token1] = ACTIONS(4644), + [aux_sym_preproc_if_token2] = ACTIONS(4644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4644), + [aux_sym_preproc_else_token1] = ACTIONS(4644), + [aux_sym_preproc_elif_token1] = ACTIONS(4644), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4644), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4644), + [sym_preproc_directive] = ACTIONS(4644), + [anon_sym_LPAREN2] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4646), + [anon_sym_TILDE] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym___extension__] = ACTIONS(4644), + [anon_sym_typedef] = ACTIONS(4644), + [anon_sym_virtual] = ACTIONS(4644), + [anon_sym_extern] = ACTIONS(4644), + [anon_sym___attribute__] = ACTIONS(4644), + [anon_sym___attribute] = ACTIONS(4644), + [anon_sym_using] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4646), + [anon_sym___declspec] = ACTIONS(4644), + [anon_sym___based] = ACTIONS(4644), + [anon_sym___cdecl] = ACTIONS(4644), + [anon_sym___clrcall] = ACTIONS(4644), + [anon_sym___stdcall] = ACTIONS(4644), + [anon_sym___fastcall] = ACTIONS(4644), + [anon_sym___thiscall] = ACTIONS(4644), + [anon_sym___vectorcall] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_signed] = ACTIONS(4644), + [anon_sym_unsigned] = ACTIONS(4644), + [anon_sym_long] = ACTIONS(4644), + [anon_sym_short] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_static] = ACTIONS(4644), + [anon_sym_register] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym___inline] = ACTIONS(4644), + [anon_sym___inline__] = ACTIONS(4644), + [anon_sym___forceinline] = ACTIONS(4644), + [anon_sym_thread_local] = ACTIONS(4644), + [anon_sym___thread] = ACTIONS(4644), + [anon_sym_const] = ACTIONS(4644), + [anon_sym_constexpr] = ACTIONS(4644), + [anon_sym_volatile] = ACTIONS(4644), + [anon_sym_restrict] = ACTIONS(4644), + [anon_sym___restrict__] = ACTIONS(4644), + [anon_sym__Atomic] = ACTIONS(4644), + [anon_sym__Noreturn] = ACTIONS(4644), + [anon_sym_noreturn] = ACTIONS(4644), + [anon_sym__Nonnull] = ACTIONS(4644), + [anon_sym_mutable] = ACTIONS(4644), + [anon_sym_constinit] = ACTIONS(4644), + [anon_sym_consteval] = ACTIONS(4644), + [anon_sym_alignas] = ACTIONS(4644), + [anon_sym__Alignas] = ACTIONS(4644), + [sym_primitive_type] = ACTIONS(4644), + [anon_sym_enum] = ACTIONS(4644), + [anon_sym_class] = ACTIONS(4644), + [anon_sym_struct] = ACTIONS(4644), + [anon_sym_union] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_switch] = ACTIONS(4644), + [anon_sym_case] = ACTIONS(4644), + [anon_sym_default] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_do] = ACTIONS(4644), + [anon_sym_for] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_goto] = ACTIONS(4644), + [anon_sym_not] = ACTIONS(4644), + [anon_sym_compl] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_sizeof] = ACTIONS(4644), + [anon_sym___alignof__] = ACTIONS(4644), + [anon_sym___alignof] = ACTIONS(4644), + [anon_sym__alignof] = ACTIONS(4644), + [anon_sym_alignof] = ACTIONS(4644), + [anon_sym__Alignof] = ACTIONS(4644), + [anon_sym_offsetof] = ACTIONS(4644), + [anon_sym__Generic] = ACTIONS(4644), + [anon_sym_typename] = ACTIONS(4644), + [anon_sym_asm] = ACTIONS(4644), + [anon_sym___asm__] = ACTIONS(4644), + [anon_sym___asm] = ACTIONS(4644), + [sym_number_literal] = ACTIONS(4646), + [anon_sym_L_SQUOTE] = ACTIONS(4646), + [anon_sym_u_SQUOTE] = ACTIONS(4646), + [anon_sym_U_SQUOTE] = ACTIONS(4646), + [anon_sym_u8_SQUOTE] = ACTIONS(4646), + [anon_sym_SQUOTE] = ACTIONS(4646), + [anon_sym_L_DQUOTE] = ACTIONS(4646), + [anon_sym_u_DQUOTE] = ACTIONS(4646), + [anon_sym_U_DQUOTE] = ACTIONS(4646), + [anon_sym_u8_DQUOTE] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(4646), + [sym_true] = ACTIONS(4644), + [sym_false] = ACTIONS(4644), + [anon_sym_NULL] = ACTIONS(4644), + [anon_sym_nullptr] = ACTIONS(4644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4644), + [anon_sym_decltype] = ACTIONS(4644), + [anon_sym_explicit] = ACTIONS(4644), + [anon_sym_export] = ACTIONS(4644), + [anon_sym_module] = ACTIONS(4644), + [anon_sym_import] = ACTIONS(4644), + [anon_sym_template] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_delete] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_namespace] = ACTIONS(4644), + [anon_sym_static_assert] = ACTIONS(4644), + [anon_sym_concept] = ACTIONS(4644), + [anon_sym_co_return] = ACTIONS(4644), + [anon_sym_co_yield] = ACTIONS(4644), + [anon_sym_R_DQUOTE] = ACTIONS(4646), + [anon_sym_LR_DQUOTE] = ACTIONS(4646), + [anon_sym_uR_DQUOTE] = ACTIONS(4646), + [anon_sym_UR_DQUOTE] = ACTIONS(4646), + [anon_sym_u8R_DQUOTE] = ACTIONS(4646), + [anon_sym_co_await] = ACTIONS(4644), + [anon_sym_new] = ACTIONS(4644), + [anon_sym_requires] = ACTIONS(4644), + [anon_sym_CARET_CARET] = ACTIONS(4646), + [anon_sym_LBRACK_COLON] = ACTIONS(4646), + [sym_this] = ACTIONS(4644), }, [STATE(548)] = { - [sym_else_clause] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3368), - [aux_sym_preproc_include_token1] = ACTIONS(3368), - [aux_sym_preproc_def_token1] = ACTIONS(3368), - [aux_sym_preproc_if_token1] = ACTIONS(3368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3368), - [sym_preproc_directive] = ACTIONS(3368), - [anon_sym_LPAREN2] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3370), - [anon_sym_AMP_AMP] = ACTIONS(3370), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym___extension__] = ACTIONS(3368), - [anon_sym_typedef] = ACTIONS(3368), - [anon_sym_virtual] = ACTIONS(3368), - [anon_sym_extern] = ACTIONS(3368), - [anon_sym___attribute__] = ACTIONS(3368), - [anon_sym___attribute] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_COLON_COLON] = ACTIONS(3370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3370), - [anon_sym___declspec] = ACTIONS(3368), - [anon_sym___based] = ACTIONS(3368), - [anon_sym___cdecl] = ACTIONS(3368), - [anon_sym___clrcall] = ACTIONS(3368), - [anon_sym___stdcall] = ACTIONS(3368), - [anon_sym___fastcall] = ACTIONS(3368), - [anon_sym___thiscall] = ACTIONS(3368), - [anon_sym___vectorcall] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_signed] = ACTIONS(3368), - [anon_sym_unsigned] = ACTIONS(3368), - [anon_sym_long] = ACTIONS(3368), - [anon_sym_short] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_register] = ACTIONS(3368), - [anon_sym_inline] = ACTIONS(3368), - [anon_sym___inline] = ACTIONS(3368), - [anon_sym___inline__] = ACTIONS(3368), - [anon_sym___forceinline] = ACTIONS(3368), - [anon_sym_thread_local] = ACTIONS(3368), - [anon_sym___thread] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_constexpr] = ACTIONS(3368), - [anon_sym_volatile] = ACTIONS(3368), - [anon_sym_restrict] = ACTIONS(3368), - [anon_sym___restrict__] = ACTIONS(3368), - [anon_sym__Atomic] = ACTIONS(3368), - [anon_sym__Noreturn] = ACTIONS(3368), - [anon_sym_noreturn] = ACTIONS(3368), - [anon_sym__Nonnull] = ACTIONS(3368), - [anon_sym_mutable] = ACTIONS(3368), - [anon_sym_constinit] = ACTIONS(3368), - [anon_sym_consteval] = ACTIONS(3368), - [anon_sym_alignas] = ACTIONS(3368), - [anon_sym__Alignas] = ACTIONS(3368), - [sym_primitive_type] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(3368), - [anon_sym_union] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_else] = ACTIONS(4452), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_case] = ACTIONS(3368), - [anon_sym_default] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_goto] = ACTIONS(3368), - [anon_sym___try] = ACTIONS(3368), - [anon_sym___leave] = ACTIONS(3368), - [anon_sym_not] = ACTIONS(3368), - [anon_sym_compl] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_sizeof] = ACTIONS(3368), - [anon_sym___alignof__] = ACTIONS(3368), - [anon_sym___alignof] = ACTIONS(3368), - [anon_sym__alignof] = ACTIONS(3368), - [anon_sym_alignof] = ACTIONS(3368), - [anon_sym__Alignof] = ACTIONS(3368), - [anon_sym_offsetof] = ACTIONS(3368), - [anon_sym__Generic] = ACTIONS(3368), - [anon_sym_typename] = ACTIONS(3368), - [anon_sym_asm] = ACTIONS(3368), - [anon_sym___asm__] = ACTIONS(3368), - [anon_sym___asm] = ACTIONS(3368), - [sym_number_literal] = ACTIONS(3370), - [anon_sym_L_SQUOTE] = ACTIONS(3370), - [anon_sym_u_SQUOTE] = ACTIONS(3370), - [anon_sym_U_SQUOTE] = ACTIONS(3370), - [anon_sym_u8_SQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_L_DQUOTE] = ACTIONS(3370), - [anon_sym_u_DQUOTE] = ACTIONS(3370), - [anon_sym_U_DQUOTE] = ACTIONS(3370), - [anon_sym_u8_DQUOTE] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3368), - [anon_sym_decltype] = ACTIONS(3368), - [anon_sym_explicit] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_template] = ACTIONS(3368), - [anon_sym_operator] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_static_assert] = ACTIONS(3368), - [anon_sym_concept] = ACTIONS(3368), - [anon_sym_co_return] = ACTIONS(3368), - [anon_sym_co_yield] = ACTIONS(3368), - [anon_sym_R_DQUOTE] = ACTIONS(3370), - [anon_sym_LR_DQUOTE] = ACTIONS(3370), - [anon_sym_uR_DQUOTE] = ACTIONS(3370), - [anon_sym_UR_DQUOTE] = ACTIONS(3370), - [anon_sym_u8R_DQUOTE] = ACTIONS(3370), - [anon_sym_co_await] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_requires] = ACTIONS(3368), - [anon_sym_CARET_CARET] = ACTIONS(3370), - [anon_sym_LBRACK_COLON] = ACTIONS(3370), - [sym_this] = ACTIONS(3368), + [sym_identifier] = ACTIONS(4648), + [aux_sym_preproc_include_token1] = ACTIONS(4648), + [aux_sym_preproc_def_token1] = ACTIONS(4648), + [aux_sym_preproc_if_token1] = ACTIONS(4648), + [aux_sym_preproc_if_token2] = ACTIONS(4648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4648), + [aux_sym_preproc_else_token1] = ACTIONS(4648), + [aux_sym_preproc_elif_token1] = ACTIONS(4648), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4648), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4648), + [sym_preproc_directive] = ACTIONS(4648), + [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_BANG] = ACTIONS(4650), + [anon_sym_TILDE] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4650), + [anon_sym_AMP_AMP] = ACTIONS(4650), + [anon_sym_AMP] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym___extension__] = ACTIONS(4648), + [anon_sym_typedef] = ACTIONS(4648), + [anon_sym_virtual] = ACTIONS(4648), + [anon_sym_extern] = ACTIONS(4648), + [anon_sym___attribute__] = ACTIONS(4648), + [anon_sym___attribute] = ACTIONS(4648), + [anon_sym_using] = ACTIONS(4648), + [anon_sym_COLON_COLON] = ACTIONS(4650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4650), + [anon_sym___declspec] = ACTIONS(4648), + [anon_sym___based] = ACTIONS(4648), + [anon_sym___cdecl] = ACTIONS(4648), + [anon_sym___clrcall] = ACTIONS(4648), + [anon_sym___stdcall] = ACTIONS(4648), + [anon_sym___fastcall] = ACTIONS(4648), + [anon_sym___thiscall] = ACTIONS(4648), + [anon_sym___vectorcall] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_signed] = ACTIONS(4648), + [anon_sym_unsigned] = ACTIONS(4648), + [anon_sym_long] = ACTIONS(4648), + [anon_sym_short] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_static] = ACTIONS(4648), + [anon_sym_register] = ACTIONS(4648), + [anon_sym_inline] = ACTIONS(4648), + [anon_sym___inline] = ACTIONS(4648), + [anon_sym___inline__] = ACTIONS(4648), + [anon_sym___forceinline] = ACTIONS(4648), + [anon_sym_thread_local] = ACTIONS(4648), + [anon_sym___thread] = ACTIONS(4648), + [anon_sym_const] = ACTIONS(4648), + [anon_sym_constexpr] = ACTIONS(4648), + [anon_sym_volatile] = ACTIONS(4648), + [anon_sym_restrict] = ACTIONS(4648), + [anon_sym___restrict__] = ACTIONS(4648), + [anon_sym__Atomic] = ACTIONS(4648), + [anon_sym__Noreturn] = ACTIONS(4648), + [anon_sym_noreturn] = ACTIONS(4648), + [anon_sym__Nonnull] = ACTIONS(4648), + [anon_sym_mutable] = ACTIONS(4648), + [anon_sym_constinit] = ACTIONS(4648), + [anon_sym_consteval] = ACTIONS(4648), + [anon_sym_alignas] = ACTIONS(4648), + [anon_sym__Alignas] = ACTIONS(4648), + [sym_primitive_type] = ACTIONS(4648), + [anon_sym_enum] = ACTIONS(4648), + [anon_sym_class] = ACTIONS(4648), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_union] = ACTIONS(4648), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_switch] = ACTIONS(4648), + [anon_sym_case] = ACTIONS(4648), + [anon_sym_default] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_do] = ACTIONS(4648), + [anon_sym_for] = ACTIONS(4648), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_goto] = ACTIONS(4648), + [anon_sym_not] = ACTIONS(4648), + [anon_sym_compl] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_PLUS_PLUS] = ACTIONS(4650), + [anon_sym_sizeof] = ACTIONS(4648), + [anon_sym___alignof__] = ACTIONS(4648), + [anon_sym___alignof] = ACTIONS(4648), + [anon_sym__alignof] = ACTIONS(4648), + [anon_sym_alignof] = ACTIONS(4648), + [anon_sym__Alignof] = ACTIONS(4648), + [anon_sym_offsetof] = ACTIONS(4648), + [anon_sym__Generic] = ACTIONS(4648), + [anon_sym_typename] = ACTIONS(4648), + [anon_sym_asm] = ACTIONS(4648), + [anon_sym___asm__] = ACTIONS(4648), + [anon_sym___asm] = ACTIONS(4648), + [sym_number_literal] = ACTIONS(4650), + [anon_sym_L_SQUOTE] = ACTIONS(4650), + [anon_sym_u_SQUOTE] = ACTIONS(4650), + [anon_sym_U_SQUOTE] = ACTIONS(4650), + [anon_sym_u8_SQUOTE] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4650), + [anon_sym_L_DQUOTE] = ACTIONS(4650), + [anon_sym_u_DQUOTE] = ACTIONS(4650), + [anon_sym_U_DQUOTE] = ACTIONS(4650), + [anon_sym_u8_DQUOTE] = ACTIONS(4650), + [anon_sym_DQUOTE] = ACTIONS(4650), + [sym_true] = ACTIONS(4648), + [sym_false] = ACTIONS(4648), + [anon_sym_NULL] = ACTIONS(4648), + [anon_sym_nullptr] = ACTIONS(4648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4648), + [anon_sym_decltype] = ACTIONS(4648), + [anon_sym_explicit] = ACTIONS(4648), + [anon_sym_export] = ACTIONS(4648), + [anon_sym_module] = ACTIONS(4648), + [anon_sym_import] = ACTIONS(4648), + [anon_sym_template] = ACTIONS(4648), + [anon_sym_operator] = ACTIONS(4648), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_delete] = ACTIONS(4648), + [anon_sym_throw] = ACTIONS(4648), + [anon_sym_namespace] = ACTIONS(4648), + [anon_sym_static_assert] = ACTIONS(4648), + [anon_sym_concept] = ACTIONS(4648), + [anon_sym_co_return] = ACTIONS(4648), + [anon_sym_co_yield] = ACTIONS(4648), + [anon_sym_R_DQUOTE] = ACTIONS(4650), + [anon_sym_LR_DQUOTE] = ACTIONS(4650), + [anon_sym_uR_DQUOTE] = ACTIONS(4650), + [anon_sym_UR_DQUOTE] = ACTIONS(4650), + [anon_sym_u8R_DQUOTE] = ACTIONS(4650), + [anon_sym_co_await] = ACTIONS(4648), + [anon_sym_new] = ACTIONS(4648), + [anon_sym_requires] = ACTIONS(4648), + [anon_sym_CARET_CARET] = ACTIONS(4650), + [anon_sym_LBRACK_COLON] = ACTIONS(4650), + [sym_this] = ACTIONS(4648), }, [STATE(549)] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym___attribute] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym__Nonnull] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym__Alignas] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_else] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym___try] = ACTIONS(3362), - [anon_sym___leave] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [anon_sym___asm] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_export] = ACTIONS(3362), - [anon_sym_module] = ACTIONS(3362), - [anon_sym_import] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_catch] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [anon_sym_CARET_CARET] = ACTIONS(3364), - [anon_sym_LBRACK_COLON] = ACTIONS(3364), - [sym_this] = ACTIONS(3362), + [sym_identifier] = ACTIONS(4652), + [aux_sym_preproc_include_token1] = ACTIONS(4652), + [aux_sym_preproc_def_token1] = ACTIONS(4652), + [aux_sym_preproc_if_token1] = ACTIONS(4652), + [aux_sym_preproc_if_token2] = ACTIONS(4652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4652), + [aux_sym_preproc_else_token1] = ACTIONS(4652), + [aux_sym_preproc_elif_token1] = ACTIONS(4652), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4652), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4652), + [sym_preproc_directive] = ACTIONS(4652), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4654), + [anon_sym_TILDE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_AMP] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym___extension__] = ACTIONS(4652), + [anon_sym_typedef] = ACTIONS(4652), + [anon_sym_virtual] = ACTIONS(4652), + [anon_sym_extern] = ACTIONS(4652), + [anon_sym___attribute__] = ACTIONS(4652), + [anon_sym___attribute] = ACTIONS(4652), + [anon_sym_using] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4654), + [anon_sym___declspec] = ACTIONS(4652), + [anon_sym___based] = ACTIONS(4652), + [anon_sym___cdecl] = ACTIONS(4652), + [anon_sym___clrcall] = ACTIONS(4652), + [anon_sym___stdcall] = ACTIONS(4652), + [anon_sym___fastcall] = ACTIONS(4652), + [anon_sym___thiscall] = ACTIONS(4652), + [anon_sym___vectorcall] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_signed] = ACTIONS(4652), + [anon_sym_unsigned] = ACTIONS(4652), + [anon_sym_long] = ACTIONS(4652), + [anon_sym_short] = ACTIONS(4652), + [anon_sym_LBRACK] = ACTIONS(4652), + [anon_sym_static] = ACTIONS(4652), + [anon_sym_register] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym___inline] = ACTIONS(4652), + [anon_sym___inline__] = ACTIONS(4652), + [anon_sym___forceinline] = ACTIONS(4652), + [anon_sym_thread_local] = ACTIONS(4652), + [anon_sym___thread] = ACTIONS(4652), + [anon_sym_const] = ACTIONS(4652), + [anon_sym_constexpr] = ACTIONS(4652), + [anon_sym_volatile] = ACTIONS(4652), + [anon_sym_restrict] = ACTIONS(4652), + [anon_sym___restrict__] = ACTIONS(4652), + [anon_sym__Atomic] = ACTIONS(4652), + [anon_sym__Noreturn] = ACTIONS(4652), + [anon_sym_noreturn] = ACTIONS(4652), + [anon_sym__Nonnull] = ACTIONS(4652), + [anon_sym_mutable] = ACTIONS(4652), + [anon_sym_constinit] = ACTIONS(4652), + [anon_sym_consteval] = ACTIONS(4652), + [anon_sym_alignas] = ACTIONS(4652), + [anon_sym__Alignas] = ACTIONS(4652), + [sym_primitive_type] = ACTIONS(4652), + [anon_sym_enum] = ACTIONS(4652), + [anon_sym_class] = ACTIONS(4652), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_union] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_switch] = ACTIONS(4652), + [anon_sym_case] = ACTIONS(4652), + [anon_sym_default] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_do] = ACTIONS(4652), + [anon_sym_for] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_goto] = ACTIONS(4652), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_compl] = ACTIONS(4652), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_sizeof] = ACTIONS(4652), + [anon_sym___alignof__] = ACTIONS(4652), + [anon_sym___alignof] = ACTIONS(4652), + [anon_sym__alignof] = ACTIONS(4652), + [anon_sym_alignof] = ACTIONS(4652), + [anon_sym__Alignof] = ACTIONS(4652), + [anon_sym_offsetof] = ACTIONS(4652), + [anon_sym__Generic] = ACTIONS(4652), + [anon_sym_typename] = ACTIONS(4652), + [anon_sym_asm] = ACTIONS(4652), + [anon_sym___asm__] = ACTIONS(4652), + [anon_sym___asm] = ACTIONS(4652), + [sym_number_literal] = ACTIONS(4654), + [anon_sym_L_SQUOTE] = ACTIONS(4654), + [anon_sym_u_SQUOTE] = ACTIONS(4654), + [anon_sym_U_SQUOTE] = ACTIONS(4654), + [anon_sym_u8_SQUOTE] = ACTIONS(4654), + [anon_sym_SQUOTE] = ACTIONS(4654), + [anon_sym_L_DQUOTE] = ACTIONS(4654), + [anon_sym_u_DQUOTE] = ACTIONS(4654), + [anon_sym_U_DQUOTE] = ACTIONS(4654), + [anon_sym_u8_DQUOTE] = ACTIONS(4654), + [anon_sym_DQUOTE] = ACTIONS(4654), + [sym_true] = ACTIONS(4652), + [sym_false] = ACTIONS(4652), + [anon_sym_NULL] = ACTIONS(4652), + [anon_sym_nullptr] = ACTIONS(4652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4652), + [anon_sym_decltype] = ACTIONS(4652), + [anon_sym_explicit] = ACTIONS(4652), + [anon_sym_export] = ACTIONS(4652), + [anon_sym_module] = ACTIONS(4652), + [anon_sym_import] = ACTIONS(4652), + [anon_sym_template] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_delete] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_namespace] = ACTIONS(4652), + [anon_sym_static_assert] = ACTIONS(4652), + [anon_sym_concept] = ACTIONS(4652), + [anon_sym_co_return] = ACTIONS(4652), + [anon_sym_co_yield] = ACTIONS(4652), + [anon_sym_R_DQUOTE] = ACTIONS(4654), + [anon_sym_LR_DQUOTE] = ACTIONS(4654), + [anon_sym_uR_DQUOTE] = ACTIONS(4654), + [anon_sym_UR_DQUOTE] = ACTIONS(4654), + [anon_sym_u8R_DQUOTE] = ACTIONS(4654), + [anon_sym_co_await] = ACTIONS(4652), + [anon_sym_new] = ACTIONS(4652), + [anon_sym_requires] = ACTIONS(4652), + [anon_sym_CARET_CARET] = ACTIONS(4654), + [anon_sym_LBRACK_COLON] = ACTIONS(4654), + [sym_this] = ACTIONS(4652), }, [STATE(550)] = { - [sym_identifier] = ACTIONS(4522), - [aux_sym_preproc_include_token1] = ACTIONS(4522), - [aux_sym_preproc_def_token1] = ACTIONS(4522), - [aux_sym_preproc_if_token1] = ACTIONS(4522), - [aux_sym_preproc_if_token2] = ACTIONS(4522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4522), - [aux_sym_preproc_else_token1] = ACTIONS(4522), - [aux_sym_preproc_elif_token1] = ACTIONS(4522), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4522), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4522), - [sym_preproc_directive] = ACTIONS(4522), - [anon_sym_LPAREN2] = ACTIONS(4524), - [anon_sym_BANG] = ACTIONS(4524), - [anon_sym_TILDE] = ACTIONS(4524), - [anon_sym_DASH] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4522), - [anon_sym_STAR] = ACTIONS(4524), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_AMP] = ACTIONS(4522), - [anon_sym_SEMI] = ACTIONS(4524), - [anon_sym___extension__] = ACTIONS(4522), - [anon_sym_typedef] = ACTIONS(4522), - [anon_sym_virtual] = ACTIONS(4522), - [anon_sym_extern] = ACTIONS(4522), - [anon_sym___attribute__] = ACTIONS(4522), - [anon_sym___attribute] = ACTIONS(4522), - [anon_sym_using] = ACTIONS(4522), - [anon_sym_COLON_COLON] = ACTIONS(4524), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4524), - [anon_sym___declspec] = ACTIONS(4522), - [anon_sym___based] = ACTIONS(4522), - [anon_sym___cdecl] = ACTIONS(4522), - [anon_sym___clrcall] = ACTIONS(4522), - [anon_sym___stdcall] = ACTIONS(4522), - [anon_sym___fastcall] = ACTIONS(4522), - [anon_sym___thiscall] = ACTIONS(4522), - [anon_sym___vectorcall] = ACTIONS(4522), - [anon_sym_LBRACE] = ACTIONS(4524), - [anon_sym_signed] = ACTIONS(4522), - [anon_sym_unsigned] = ACTIONS(4522), - [anon_sym_long] = ACTIONS(4522), - [anon_sym_short] = ACTIONS(4522), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_static] = ACTIONS(4522), - [anon_sym_register] = ACTIONS(4522), - [anon_sym_inline] = ACTIONS(4522), - [anon_sym___inline] = ACTIONS(4522), - [anon_sym___inline__] = ACTIONS(4522), - [anon_sym___forceinline] = ACTIONS(4522), - [anon_sym_thread_local] = ACTIONS(4522), - [anon_sym___thread] = ACTIONS(4522), - [anon_sym_const] = ACTIONS(4522), - [anon_sym_constexpr] = ACTIONS(4522), - [anon_sym_volatile] = ACTIONS(4522), - [anon_sym_restrict] = ACTIONS(4522), - [anon_sym___restrict__] = ACTIONS(4522), - [anon_sym__Atomic] = ACTIONS(4522), - [anon_sym__Noreturn] = ACTIONS(4522), - [anon_sym_noreturn] = ACTIONS(4522), - [anon_sym__Nonnull] = ACTIONS(4522), - [anon_sym_mutable] = ACTIONS(4522), - [anon_sym_constinit] = ACTIONS(4522), - [anon_sym_consteval] = ACTIONS(4522), - [anon_sym_alignas] = ACTIONS(4522), - [anon_sym__Alignas] = ACTIONS(4522), - [sym_primitive_type] = ACTIONS(4522), - [anon_sym_enum] = ACTIONS(4522), - [anon_sym_class] = ACTIONS(4522), - [anon_sym_struct] = ACTIONS(4522), - [anon_sym_union] = ACTIONS(4522), - [anon_sym_if] = ACTIONS(4522), - [anon_sym_switch] = ACTIONS(4522), - [anon_sym_case] = ACTIONS(4522), - [anon_sym_default] = ACTIONS(4522), - [anon_sym_while] = ACTIONS(4522), - [anon_sym_do] = ACTIONS(4522), - [anon_sym_for] = ACTIONS(4522), - [anon_sym_return] = ACTIONS(4522), - [anon_sym_break] = ACTIONS(4522), - [anon_sym_continue] = ACTIONS(4522), - [anon_sym_goto] = ACTIONS(4522), - [anon_sym_not] = ACTIONS(4522), - [anon_sym_compl] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4524), - [anon_sym_PLUS_PLUS] = ACTIONS(4524), - [anon_sym_sizeof] = ACTIONS(4522), - [anon_sym___alignof__] = ACTIONS(4522), - [anon_sym___alignof] = ACTIONS(4522), - [anon_sym__alignof] = ACTIONS(4522), - [anon_sym_alignof] = ACTIONS(4522), - [anon_sym__Alignof] = ACTIONS(4522), - [anon_sym_offsetof] = ACTIONS(4522), - [anon_sym__Generic] = ACTIONS(4522), - [anon_sym_typename] = ACTIONS(4522), - [anon_sym_asm] = ACTIONS(4522), - [anon_sym___asm__] = ACTIONS(4522), - [anon_sym___asm] = ACTIONS(4522), - [sym_number_literal] = ACTIONS(4524), - [anon_sym_L_SQUOTE] = ACTIONS(4524), - [anon_sym_u_SQUOTE] = ACTIONS(4524), - [anon_sym_U_SQUOTE] = ACTIONS(4524), - [anon_sym_u8_SQUOTE] = ACTIONS(4524), - [anon_sym_SQUOTE] = ACTIONS(4524), - [anon_sym_L_DQUOTE] = ACTIONS(4524), - [anon_sym_u_DQUOTE] = ACTIONS(4524), - [anon_sym_U_DQUOTE] = ACTIONS(4524), - [anon_sym_u8_DQUOTE] = ACTIONS(4524), - [anon_sym_DQUOTE] = ACTIONS(4524), - [sym_true] = ACTIONS(4522), - [sym_false] = ACTIONS(4522), - [anon_sym_NULL] = ACTIONS(4522), - [anon_sym_nullptr] = ACTIONS(4522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4522), - [anon_sym_decltype] = ACTIONS(4522), - [anon_sym_explicit] = ACTIONS(4522), - [anon_sym_export] = ACTIONS(4522), - [anon_sym_module] = ACTIONS(4522), - [anon_sym_import] = ACTIONS(4522), - [anon_sym_template] = ACTIONS(4522), - [anon_sym_operator] = ACTIONS(4522), - [anon_sym_try] = ACTIONS(4522), - [anon_sym_delete] = ACTIONS(4522), - [anon_sym_throw] = ACTIONS(4522), - [anon_sym_namespace] = ACTIONS(4522), - [anon_sym_static_assert] = ACTIONS(4522), - [anon_sym_concept] = ACTIONS(4522), - [anon_sym_co_return] = ACTIONS(4522), - [anon_sym_co_yield] = ACTIONS(4522), - [anon_sym_R_DQUOTE] = ACTIONS(4524), - [anon_sym_LR_DQUOTE] = ACTIONS(4524), - [anon_sym_uR_DQUOTE] = ACTIONS(4524), - [anon_sym_UR_DQUOTE] = ACTIONS(4524), - [anon_sym_u8R_DQUOTE] = ACTIONS(4524), - [anon_sym_co_await] = ACTIONS(4522), - [anon_sym_new] = ACTIONS(4522), - [anon_sym_requires] = ACTIONS(4522), - [anon_sym_CARET_CARET] = ACTIONS(4524), - [anon_sym_LBRACK_COLON] = ACTIONS(4524), - [sym_this] = ACTIONS(4522), + [sym_else_clause] = STATE(641), + [sym_identifier] = ACTIONS(3322), + [aux_sym_preproc_include_token1] = ACTIONS(3322), + [aux_sym_preproc_def_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token2] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), + [sym_preproc_directive] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym___extension__] = ACTIONS(3322), + [anon_sym_typedef] = ACTIONS(3322), + [anon_sym_virtual] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym___attribute__] = ACTIONS(3322), + [anon_sym___attribute] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3322), + [anon_sym___based] = ACTIONS(3322), + [anon_sym___cdecl] = ACTIONS(3322), + [anon_sym___clrcall] = ACTIONS(3322), + [anon_sym___stdcall] = ACTIONS(3322), + [anon_sym___fastcall] = ACTIONS(3322), + [anon_sym___thiscall] = ACTIONS(3322), + [anon_sym___vectorcall] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_signed] = ACTIONS(3322), + [anon_sym_unsigned] = ACTIONS(3322), + [anon_sym_long] = ACTIONS(3322), + [anon_sym_short] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_inline] = ACTIONS(3322), + [anon_sym___inline] = ACTIONS(3322), + [anon_sym___inline__] = ACTIONS(3322), + [anon_sym___forceinline] = ACTIONS(3322), + [anon_sym_thread_local] = ACTIONS(3322), + [anon_sym___thread] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_constexpr] = ACTIONS(3322), + [anon_sym_volatile] = ACTIONS(3322), + [anon_sym_restrict] = ACTIONS(3322), + [anon_sym___restrict__] = ACTIONS(3322), + [anon_sym__Atomic] = ACTIONS(3322), + [anon_sym__Noreturn] = ACTIONS(3322), + [anon_sym_noreturn] = ACTIONS(3322), + [anon_sym__Nonnull] = ACTIONS(3322), + [anon_sym_mutable] = ACTIONS(3322), + [anon_sym_constinit] = ACTIONS(3322), + [anon_sym_consteval] = ACTIONS(3322), + [anon_sym_alignas] = ACTIONS(3322), + [anon_sym__Alignas] = ACTIONS(3322), + [sym_primitive_type] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(4482), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym___try] = ACTIONS(3322), + [anon_sym___leave] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_compl] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3322), + [anon_sym___alignof__] = ACTIONS(3322), + [anon_sym___alignof] = ACTIONS(3322), + [anon_sym__alignof] = ACTIONS(3322), + [anon_sym_alignof] = ACTIONS(3322), + [anon_sym__Alignof] = ACTIONS(3322), + [anon_sym_offsetof] = ACTIONS(3322), + [anon_sym__Generic] = ACTIONS(3322), + [anon_sym_typename] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym___asm__] = ACTIONS(3322), + [anon_sym___asm] = ACTIONS(3322), + [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(3322), + [sym_false] = ACTIONS(3322), + [anon_sym_NULL] = ACTIONS(3322), + [anon_sym_nullptr] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(3322), + [anon_sym_explicit] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_template] = ACTIONS(3322), + [anon_sym_operator] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_static_assert] = ACTIONS(3322), + [anon_sym_concept] = ACTIONS(3322), + [anon_sym_co_return] = ACTIONS(3322), + [anon_sym_co_yield] = ACTIONS(3322), + [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(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_requires] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3324), + [anon_sym_LBRACK_COLON] = ACTIONS(3324), + [sym_this] = ACTIONS(3322), }, [STATE(551)] = { - [sym_identifier] = ACTIONS(4526), - [aux_sym_preproc_include_token1] = ACTIONS(4526), - [aux_sym_preproc_def_token1] = ACTIONS(4526), - [aux_sym_preproc_if_token1] = ACTIONS(4526), - [aux_sym_preproc_if_token2] = ACTIONS(4526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4526), - [aux_sym_preproc_else_token1] = ACTIONS(4526), - [aux_sym_preproc_elif_token1] = ACTIONS(4526), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4526), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4526), - [sym_preproc_directive] = ACTIONS(4526), - [anon_sym_LPAREN2] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_TILDE] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4526), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4526), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym___extension__] = ACTIONS(4526), - [anon_sym_typedef] = ACTIONS(4526), - [anon_sym_virtual] = ACTIONS(4526), - [anon_sym_extern] = ACTIONS(4526), - [anon_sym___attribute__] = ACTIONS(4526), - [anon_sym___attribute] = ACTIONS(4526), - [anon_sym_using] = ACTIONS(4526), - [anon_sym_COLON_COLON] = ACTIONS(4528), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4528), - [anon_sym___declspec] = ACTIONS(4526), - [anon_sym___based] = ACTIONS(4526), - [anon_sym___cdecl] = ACTIONS(4526), - [anon_sym___clrcall] = ACTIONS(4526), - [anon_sym___stdcall] = ACTIONS(4526), - [anon_sym___fastcall] = ACTIONS(4526), - [anon_sym___thiscall] = ACTIONS(4526), - [anon_sym___vectorcall] = ACTIONS(4526), - [anon_sym_LBRACE] = ACTIONS(4528), - [anon_sym_signed] = ACTIONS(4526), - [anon_sym_unsigned] = ACTIONS(4526), - [anon_sym_long] = ACTIONS(4526), - [anon_sym_short] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_static] = ACTIONS(4526), - [anon_sym_register] = ACTIONS(4526), - [anon_sym_inline] = ACTIONS(4526), - [anon_sym___inline] = ACTIONS(4526), - [anon_sym___inline__] = ACTIONS(4526), - [anon_sym___forceinline] = ACTIONS(4526), - [anon_sym_thread_local] = ACTIONS(4526), - [anon_sym___thread] = ACTIONS(4526), - [anon_sym_const] = ACTIONS(4526), - [anon_sym_constexpr] = ACTIONS(4526), - [anon_sym_volatile] = ACTIONS(4526), - [anon_sym_restrict] = ACTIONS(4526), - [anon_sym___restrict__] = ACTIONS(4526), - [anon_sym__Atomic] = ACTIONS(4526), - [anon_sym__Noreturn] = ACTIONS(4526), - [anon_sym_noreturn] = ACTIONS(4526), - [anon_sym__Nonnull] = ACTIONS(4526), - [anon_sym_mutable] = ACTIONS(4526), - [anon_sym_constinit] = ACTIONS(4526), - [anon_sym_consteval] = ACTIONS(4526), - [anon_sym_alignas] = ACTIONS(4526), - [anon_sym__Alignas] = ACTIONS(4526), - [sym_primitive_type] = ACTIONS(4526), - [anon_sym_enum] = ACTIONS(4526), - [anon_sym_class] = ACTIONS(4526), - [anon_sym_struct] = ACTIONS(4526), - [anon_sym_union] = ACTIONS(4526), - [anon_sym_if] = ACTIONS(4526), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_case] = ACTIONS(4526), - [anon_sym_default] = ACTIONS(4526), - [anon_sym_while] = ACTIONS(4526), - [anon_sym_do] = ACTIONS(4526), - [anon_sym_for] = ACTIONS(4526), - [anon_sym_return] = ACTIONS(4526), - [anon_sym_break] = ACTIONS(4526), - [anon_sym_continue] = ACTIONS(4526), - [anon_sym_goto] = ACTIONS(4526), - [anon_sym_not] = ACTIONS(4526), - [anon_sym_compl] = ACTIONS(4526), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_PLUS_PLUS] = ACTIONS(4528), - [anon_sym_sizeof] = ACTIONS(4526), - [anon_sym___alignof__] = ACTIONS(4526), - [anon_sym___alignof] = ACTIONS(4526), - [anon_sym__alignof] = ACTIONS(4526), - [anon_sym_alignof] = ACTIONS(4526), - [anon_sym__Alignof] = ACTIONS(4526), - [anon_sym_offsetof] = ACTIONS(4526), - [anon_sym__Generic] = ACTIONS(4526), - [anon_sym_typename] = ACTIONS(4526), - [anon_sym_asm] = ACTIONS(4526), - [anon_sym___asm__] = ACTIONS(4526), - [anon_sym___asm] = ACTIONS(4526), - [sym_number_literal] = ACTIONS(4528), - [anon_sym_L_SQUOTE] = ACTIONS(4528), - [anon_sym_u_SQUOTE] = ACTIONS(4528), - [anon_sym_U_SQUOTE] = ACTIONS(4528), - [anon_sym_u8_SQUOTE] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4528), - [anon_sym_L_DQUOTE] = ACTIONS(4528), - [anon_sym_u_DQUOTE] = ACTIONS(4528), - [anon_sym_U_DQUOTE] = ACTIONS(4528), - [anon_sym_u8_DQUOTE] = ACTIONS(4528), - [anon_sym_DQUOTE] = ACTIONS(4528), - [sym_true] = ACTIONS(4526), - [sym_false] = ACTIONS(4526), - [anon_sym_NULL] = ACTIONS(4526), - [anon_sym_nullptr] = ACTIONS(4526), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4526), - [anon_sym_decltype] = ACTIONS(4526), - [anon_sym_explicit] = ACTIONS(4526), - [anon_sym_export] = ACTIONS(4526), - [anon_sym_module] = ACTIONS(4526), - [anon_sym_import] = ACTIONS(4526), - [anon_sym_template] = ACTIONS(4526), - [anon_sym_operator] = ACTIONS(4526), - [anon_sym_try] = ACTIONS(4526), - [anon_sym_delete] = ACTIONS(4526), - [anon_sym_throw] = ACTIONS(4526), - [anon_sym_namespace] = ACTIONS(4526), - [anon_sym_static_assert] = ACTIONS(4526), - [anon_sym_concept] = ACTIONS(4526), - [anon_sym_co_return] = ACTIONS(4526), - [anon_sym_co_yield] = ACTIONS(4526), - [anon_sym_R_DQUOTE] = ACTIONS(4528), - [anon_sym_LR_DQUOTE] = ACTIONS(4528), - [anon_sym_uR_DQUOTE] = ACTIONS(4528), - [anon_sym_UR_DQUOTE] = ACTIONS(4528), - [anon_sym_u8R_DQUOTE] = ACTIONS(4528), - [anon_sym_co_await] = ACTIONS(4526), - [anon_sym_new] = ACTIONS(4526), - [anon_sym_requires] = ACTIONS(4526), - [anon_sym_CARET_CARET] = ACTIONS(4528), - [anon_sym_LBRACK_COLON] = ACTIONS(4528), - [sym_this] = ACTIONS(4526), + [sym_identifier] = ACTIONS(3326), + [aux_sym_preproc_include_token1] = ACTIONS(3326), + [aux_sym_preproc_def_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token2] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3326), + [sym_preproc_directive] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym___extension__] = ACTIONS(3326), + [anon_sym_typedef] = ACTIONS(3326), + [anon_sym_virtual] = ACTIONS(3326), + [anon_sym_extern] = ACTIONS(3326), + [anon_sym___attribute__] = ACTIONS(3326), + [anon_sym___attribute] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3328), + [anon_sym___declspec] = ACTIONS(3326), + [anon_sym___based] = ACTIONS(3326), + [anon_sym___cdecl] = ACTIONS(3326), + [anon_sym___clrcall] = ACTIONS(3326), + [anon_sym___stdcall] = ACTIONS(3326), + [anon_sym___fastcall] = ACTIONS(3326), + [anon_sym___thiscall] = ACTIONS(3326), + [anon_sym___vectorcall] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3326), + [anon_sym_unsigned] = ACTIONS(3326), + [anon_sym_long] = ACTIONS(3326), + [anon_sym_short] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_register] = ACTIONS(3326), + [anon_sym_inline] = ACTIONS(3326), + [anon_sym___inline] = ACTIONS(3326), + [anon_sym___inline__] = ACTIONS(3326), + [anon_sym___forceinline] = ACTIONS(3326), + [anon_sym_thread_local] = ACTIONS(3326), + [anon_sym___thread] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_constexpr] = ACTIONS(3326), + [anon_sym_volatile] = ACTIONS(3326), + [anon_sym_restrict] = ACTIONS(3326), + [anon_sym___restrict__] = ACTIONS(3326), + [anon_sym__Atomic] = ACTIONS(3326), + [anon_sym__Noreturn] = ACTIONS(3326), + [anon_sym_noreturn] = ACTIONS(3326), + [anon_sym__Nonnull] = ACTIONS(3326), + [anon_sym_mutable] = ACTIONS(3326), + [anon_sym_constinit] = ACTIONS(3326), + [anon_sym_consteval] = ACTIONS(3326), + [anon_sym_alignas] = ACTIONS(3326), + [anon_sym__Alignas] = ACTIONS(3326), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_union] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_goto] = ACTIONS(3326), + [anon_sym___try] = ACTIONS(3326), + [anon_sym___leave] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_compl] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_sizeof] = ACTIONS(3326), + [anon_sym___alignof__] = ACTIONS(3326), + [anon_sym___alignof] = ACTIONS(3326), + [anon_sym__alignof] = ACTIONS(3326), + [anon_sym_alignof] = ACTIONS(3326), + [anon_sym__Alignof] = ACTIONS(3326), + [anon_sym_offsetof] = ACTIONS(3326), + [anon_sym__Generic] = ACTIONS(3326), + [anon_sym_typename] = ACTIONS(3326), + [anon_sym_asm] = ACTIONS(3326), + [anon_sym___asm__] = ACTIONS(3326), + [anon_sym___asm] = ACTIONS(3326), + [sym_number_literal] = ACTIONS(3328), + [anon_sym_L_SQUOTE] = ACTIONS(3328), + [anon_sym_u_SQUOTE] = ACTIONS(3328), + [anon_sym_U_SQUOTE] = ACTIONS(3328), + [anon_sym_u8_SQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_L_DQUOTE] = ACTIONS(3328), + [anon_sym_u_DQUOTE] = ACTIONS(3328), + [anon_sym_U_DQUOTE] = ACTIONS(3328), + [anon_sym_u8_DQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [anon_sym_NULL] = ACTIONS(3326), + [anon_sym_nullptr] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3326), + [anon_sym_decltype] = ACTIONS(3326), + [anon_sym_explicit] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_template] = ACTIONS(3326), + [anon_sym_operator] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_static_assert] = ACTIONS(3326), + [anon_sym_concept] = ACTIONS(3326), + [anon_sym_co_return] = ACTIONS(3326), + [anon_sym_co_yield] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_R_DQUOTE] = ACTIONS(3328), + [anon_sym_LR_DQUOTE] = ACTIONS(3328), + [anon_sym_uR_DQUOTE] = ACTIONS(3328), + [anon_sym_UR_DQUOTE] = ACTIONS(3328), + [anon_sym_u8R_DQUOTE] = ACTIONS(3328), + [anon_sym_co_await] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_requires] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3328), + [anon_sym_LBRACK_COLON] = ACTIONS(3328), + [sym_this] = ACTIONS(3326), }, [STATE(552)] = { - [sym_identifier] = ACTIONS(4530), - [aux_sym_preproc_include_token1] = ACTIONS(4530), - [aux_sym_preproc_def_token1] = ACTIONS(4530), - [aux_sym_preproc_if_token1] = ACTIONS(4530), - [aux_sym_preproc_if_token2] = ACTIONS(4530), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4530), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4530), - [aux_sym_preproc_else_token1] = ACTIONS(4530), - [aux_sym_preproc_elif_token1] = ACTIONS(4530), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4530), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4530), - [sym_preproc_directive] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_TILDE] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym___extension__] = ACTIONS(4530), - [anon_sym_typedef] = ACTIONS(4530), - [anon_sym_virtual] = ACTIONS(4530), - [anon_sym_extern] = ACTIONS(4530), - [anon_sym___attribute__] = ACTIONS(4530), - [anon_sym___attribute] = ACTIONS(4530), - [anon_sym_using] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4532), - [anon_sym___declspec] = ACTIONS(4530), - [anon_sym___based] = ACTIONS(4530), - [anon_sym___cdecl] = ACTIONS(4530), - [anon_sym___clrcall] = ACTIONS(4530), - [anon_sym___stdcall] = ACTIONS(4530), - [anon_sym___fastcall] = ACTIONS(4530), - [anon_sym___thiscall] = ACTIONS(4530), - [anon_sym___vectorcall] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_signed] = ACTIONS(4530), - [anon_sym_unsigned] = ACTIONS(4530), - [anon_sym_long] = ACTIONS(4530), - [anon_sym_short] = ACTIONS(4530), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_static] = ACTIONS(4530), - [anon_sym_register] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym___inline] = ACTIONS(4530), - [anon_sym___inline__] = ACTIONS(4530), - [anon_sym___forceinline] = ACTIONS(4530), - [anon_sym_thread_local] = ACTIONS(4530), - [anon_sym___thread] = ACTIONS(4530), - [anon_sym_const] = ACTIONS(4530), - [anon_sym_constexpr] = ACTIONS(4530), - [anon_sym_volatile] = ACTIONS(4530), - [anon_sym_restrict] = ACTIONS(4530), - [anon_sym___restrict__] = ACTIONS(4530), - [anon_sym__Atomic] = ACTIONS(4530), - [anon_sym__Noreturn] = ACTIONS(4530), - [anon_sym_noreturn] = ACTIONS(4530), - [anon_sym__Nonnull] = ACTIONS(4530), - [anon_sym_mutable] = ACTIONS(4530), - [anon_sym_constinit] = ACTIONS(4530), - [anon_sym_consteval] = ACTIONS(4530), - [anon_sym_alignas] = ACTIONS(4530), - [anon_sym__Alignas] = ACTIONS(4530), - [sym_primitive_type] = ACTIONS(4530), - [anon_sym_enum] = ACTIONS(4530), - [anon_sym_class] = ACTIONS(4530), - [anon_sym_struct] = ACTIONS(4530), - [anon_sym_union] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_switch] = ACTIONS(4530), - [anon_sym_case] = ACTIONS(4530), - [anon_sym_default] = ACTIONS(4530), - [anon_sym_while] = ACTIONS(4530), - [anon_sym_do] = ACTIONS(4530), - [anon_sym_for] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_goto] = ACTIONS(4530), - [anon_sym_not] = ACTIONS(4530), - [anon_sym_compl] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_sizeof] = ACTIONS(4530), - [anon_sym___alignof__] = ACTIONS(4530), - [anon_sym___alignof] = ACTIONS(4530), - [anon_sym__alignof] = ACTIONS(4530), - [anon_sym_alignof] = ACTIONS(4530), - [anon_sym__Alignof] = ACTIONS(4530), - [anon_sym_offsetof] = ACTIONS(4530), - [anon_sym__Generic] = ACTIONS(4530), - [anon_sym_typename] = ACTIONS(4530), - [anon_sym_asm] = ACTIONS(4530), - [anon_sym___asm__] = ACTIONS(4530), - [anon_sym___asm] = ACTIONS(4530), - [sym_number_literal] = ACTIONS(4532), - [anon_sym_L_SQUOTE] = ACTIONS(4532), - [anon_sym_u_SQUOTE] = ACTIONS(4532), - [anon_sym_U_SQUOTE] = ACTIONS(4532), - [anon_sym_u8_SQUOTE] = ACTIONS(4532), - [anon_sym_SQUOTE] = ACTIONS(4532), - [anon_sym_L_DQUOTE] = ACTIONS(4532), - [anon_sym_u_DQUOTE] = ACTIONS(4532), - [anon_sym_U_DQUOTE] = ACTIONS(4532), - [anon_sym_u8_DQUOTE] = ACTIONS(4532), - [anon_sym_DQUOTE] = ACTIONS(4532), - [sym_true] = ACTIONS(4530), - [sym_false] = ACTIONS(4530), - [anon_sym_NULL] = ACTIONS(4530), - [anon_sym_nullptr] = ACTIONS(4530), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4530), - [anon_sym_decltype] = ACTIONS(4530), - [anon_sym_explicit] = ACTIONS(4530), - [anon_sym_export] = ACTIONS(4530), - [anon_sym_module] = ACTIONS(4530), - [anon_sym_import] = ACTIONS(4530), - [anon_sym_template] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_delete] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_namespace] = ACTIONS(4530), - [anon_sym_static_assert] = ACTIONS(4530), - [anon_sym_concept] = ACTIONS(4530), - [anon_sym_co_return] = ACTIONS(4530), - [anon_sym_co_yield] = ACTIONS(4530), - [anon_sym_R_DQUOTE] = ACTIONS(4532), - [anon_sym_LR_DQUOTE] = ACTIONS(4532), - [anon_sym_uR_DQUOTE] = ACTIONS(4532), - [anon_sym_UR_DQUOTE] = ACTIONS(4532), - [anon_sym_u8R_DQUOTE] = ACTIONS(4532), - [anon_sym_co_await] = ACTIONS(4530), - [anon_sym_new] = ACTIONS(4530), - [anon_sym_requires] = ACTIONS(4530), - [anon_sym_CARET_CARET] = ACTIONS(4532), - [anon_sym_LBRACK_COLON] = ACTIONS(4532), - [sym_this] = ACTIONS(4530), + [sym_identifier] = ACTIONS(4656), + [aux_sym_preproc_include_token1] = ACTIONS(4656), + [aux_sym_preproc_def_token1] = ACTIONS(4656), + [aux_sym_preproc_if_token1] = ACTIONS(4656), + [aux_sym_preproc_if_token2] = ACTIONS(4656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4656), + [aux_sym_preproc_else_token1] = ACTIONS(4656), + [aux_sym_preproc_elif_token1] = ACTIONS(4656), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4656), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4656), + [sym_preproc_directive] = ACTIONS(4656), + [anon_sym_LPAREN2] = ACTIONS(4658), + [anon_sym_BANG] = ACTIONS(4658), + [anon_sym_TILDE] = ACTIONS(4658), + [anon_sym_DASH] = ACTIONS(4656), + [anon_sym_PLUS] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4658), + [anon_sym_AMP_AMP] = ACTIONS(4658), + [anon_sym_AMP] = ACTIONS(4656), + [anon_sym_SEMI] = ACTIONS(4658), + [anon_sym___extension__] = ACTIONS(4656), + [anon_sym_typedef] = ACTIONS(4656), + [anon_sym_virtual] = ACTIONS(4656), + [anon_sym_extern] = ACTIONS(4656), + [anon_sym___attribute__] = ACTIONS(4656), + [anon_sym___attribute] = ACTIONS(4656), + [anon_sym_using] = ACTIONS(4656), + [anon_sym_COLON_COLON] = ACTIONS(4658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4658), + [anon_sym___declspec] = ACTIONS(4656), + [anon_sym___based] = ACTIONS(4656), + [anon_sym___cdecl] = ACTIONS(4656), + [anon_sym___clrcall] = ACTIONS(4656), + [anon_sym___stdcall] = ACTIONS(4656), + [anon_sym___fastcall] = ACTIONS(4656), + [anon_sym___thiscall] = ACTIONS(4656), + [anon_sym___vectorcall] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4658), + [anon_sym_signed] = ACTIONS(4656), + [anon_sym_unsigned] = ACTIONS(4656), + [anon_sym_long] = ACTIONS(4656), + [anon_sym_short] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_static] = ACTIONS(4656), + [anon_sym_register] = ACTIONS(4656), + [anon_sym_inline] = ACTIONS(4656), + [anon_sym___inline] = ACTIONS(4656), + [anon_sym___inline__] = ACTIONS(4656), + [anon_sym___forceinline] = ACTIONS(4656), + [anon_sym_thread_local] = ACTIONS(4656), + [anon_sym___thread] = ACTIONS(4656), + [anon_sym_const] = ACTIONS(4656), + [anon_sym_constexpr] = ACTIONS(4656), + [anon_sym_volatile] = ACTIONS(4656), + [anon_sym_restrict] = ACTIONS(4656), + [anon_sym___restrict__] = ACTIONS(4656), + [anon_sym__Atomic] = ACTIONS(4656), + [anon_sym__Noreturn] = ACTIONS(4656), + [anon_sym_noreturn] = ACTIONS(4656), + [anon_sym__Nonnull] = ACTIONS(4656), + [anon_sym_mutable] = ACTIONS(4656), + [anon_sym_constinit] = ACTIONS(4656), + [anon_sym_consteval] = ACTIONS(4656), + [anon_sym_alignas] = ACTIONS(4656), + [anon_sym__Alignas] = ACTIONS(4656), + [sym_primitive_type] = ACTIONS(4656), + [anon_sym_enum] = ACTIONS(4656), + [anon_sym_class] = ACTIONS(4656), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_union] = ACTIONS(4656), + [anon_sym_if] = ACTIONS(4656), + [anon_sym_switch] = ACTIONS(4656), + [anon_sym_case] = ACTIONS(4656), + [anon_sym_default] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_do] = ACTIONS(4656), + [anon_sym_for] = ACTIONS(4656), + [anon_sym_return] = ACTIONS(4656), + [anon_sym_break] = ACTIONS(4656), + [anon_sym_continue] = ACTIONS(4656), + [anon_sym_goto] = ACTIONS(4656), + [anon_sym_not] = ACTIONS(4656), + [anon_sym_compl] = ACTIONS(4656), + [anon_sym_DASH_DASH] = ACTIONS(4658), + [anon_sym_PLUS_PLUS] = ACTIONS(4658), + [anon_sym_sizeof] = ACTIONS(4656), + [anon_sym___alignof__] = ACTIONS(4656), + [anon_sym___alignof] = ACTIONS(4656), + [anon_sym__alignof] = ACTIONS(4656), + [anon_sym_alignof] = ACTIONS(4656), + [anon_sym__Alignof] = ACTIONS(4656), + [anon_sym_offsetof] = ACTIONS(4656), + [anon_sym__Generic] = ACTIONS(4656), + [anon_sym_typename] = ACTIONS(4656), + [anon_sym_asm] = ACTIONS(4656), + [anon_sym___asm__] = ACTIONS(4656), + [anon_sym___asm] = ACTIONS(4656), + [sym_number_literal] = ACTIONS(4658), + [anon_sym_L_SQUOTE] = ACTIONS(4658), + [anon_sym_u_SQUOTE] = ACTIONS(4658), + [anon_sym_U_SQUOTE] = ACTIONS(4658), + [anon_sym_u8_SQUOTE] = ACTIONS(4658), + [anon_sym_SQUOTE] = ACTIONS(4658), + [anon_sym_L_DQUOTE] = ACTIONS(4658), + [anon_sym_u_DQUOTE] = ACTIONS(4658), + [anon_sym_U_DQUOTE] = ACTIONS(4658), + [anon_sym_u8_DQUOTE] = ACTIONS(4658), + [anon_sym_DQUOTE] = ACTIONS(4658), + [sym_true] = ACTIONS(4656), + [sym_false] = ACTIONS(4656), + [anon_sym_NULL] = ACTIONS(4656), + [anon_sym_nullptr] = ACTIONS(4656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4656), + [anon_sym_decltype] = ACTIONS(4656), + [anon_sym_explicit] = ACTIONS(4656), + [anon_sym_export] = ACTIONS(4656), + [anon_sym_module] = ACTIONS(4656), + [anon_sym_import] = ACTIONS(4656), + [anon_sym_template] = ACTIONS(4656), + [anon_sym_operator] = ACTIONS(4656), + [anon_sym_try] = ACTIONS(4656), + [anon_sym_delete] = ACTIONS(4656), + [anon_sym_throw] = ACTIONS(4656), + [anon_sym_namespace] = ACTIONS(4656), + [anon_sym_static_assert] = ACTIONS(4656), + [anon_sym_concept] = ACTIONS(4656), + [anon_sym_co_return] = ACTIONS(4656), + [anon_sym_co_yield] = ACTIONS(4656), + [anon_sym_R_DQUOTE] = ACTIONS(4658), + [anon_sym_LR_DQUOTE] = ACTIONS(4658), + [anon_sym_uR_DQUOTE] = ACTIONS(4658), + [anon_sym_UR_DQUOTE] = ACTIONS(4658), + [anon_sym_u8R_DQUOTE] = ACTIONS(4658), + [anon_sym_co_await] = ACTIONS(4656), + [anon_sym_new] = ACTIONS(4656), + [anon_sym_requires] = ACTIONS(4656), + [anon_sym_CARET_CARET] = ACTIONS(4658), + [anon_sym_LBRACK_COLON] = ACTIONS(4658), + [sym_this] = ACTIONS(4656), }, [STATE(553)] = { - [sym_identifier] = ACTIONS(4534), - [aux_sym_preproc_include_token1] = ACTIONS(4534), - [aux_sym_preproc_def_token1] = ACTIONS(4534), - [aux_sym_preproc_if_token1] = ACTIONS(4534), - [aux_sym_preproc_if_token2] = ACTIONS(4534), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4534), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4534), - [aux_sym_preproc_else_token1] = ACTIONS(4534), - [aux_sym_preproc_elif_token1] = ACTIONS(4534), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4534), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4534), - [sym_preproc_directive] = ACTIONS(4534), - [anon_sym_LPAREN2] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4536), - [anon_sym_TILDE] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym___extension__] = ACTIONS(4534), - [anon_sym_typedef] = ACTIONS(4534), - [anon_sym_virtual] = ACTIONS(4534), - [anon_sym_extern] = ACTIONS(4534), - [anon_sym___attribute__] = ACTIONS(4534), - [anon_sym___attribute] = ACTIONS(4534), - [anon_sym_using] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4536), - [anon_sym___declspec] = ACTIONS(4534), - [anon_sym___based] = ACTIONS(4534), - [anon_sym___cdecl] = ACTIONS(4534), - [anon_sym___clrcall] = ACTIONS(4534), - [anon_sym___stdcall] = ACTIONS(4534), - [anon_sym___fastcall] = ACTIONS(4534), - [anon_sym___thiscall] = ACTIONS(4534), - [anon_sym___vectorcall] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_signed] = ACTIONS(4534), - [anon_sym_unsigned] = ACTIONS(4534), - [anon_sym_long] = ACTIONS(4534), - [anon_sym_short] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(4534), - [anon_sym_static] = ACTIONS(4534), - [anon_sym_register] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym___inline] = ACTIONS(4534), - [anon_sym___inline__] = ACTIONS(4534), - [anon_sym___forceinline] = ACTIONS(4534), - [anon_sym_thread_local] = ACTIONS(4534), - [anon_sym___thread] = ACTIONS(4534), - [anon_sym_const] = ACTIONS(4534), - [anon_sym_constexpr] = ACTIONS(4534), - [anon_sym_volatile] = ACTIONS(4534), - [anon_sym_restrict] = ACTIONS(4534), - [anon_sym___restrict__] = ACTIONS(4534), - [anon_sym__Atomic] = ACTIONS(4534), - [anon_sym__Noreturn] = ACTIONS(4534), - [anon_sym_noreturn] = ACTIONS(4534), - [anon_sym__Nonnull] = ACTIONS(4534), - [anon_sym_mutable] = ACTIONS(4534), - [anon_sym_constinit] = ACTIONS(4534), - [anon_sym_consteval] = ACTIONS(4534), - [anon_sym_alignas] = ACTIONS(4534), - [anon_sym__Alignas] = ACTIONS(4534), - [sym_primitive_type] = ACTIONS(4534), - [anon_sym_enum] = ACTIONS(4534), - [anon_sym_class] = ACTIONS(4534), - [anon_sym_struct] = ACTIONS(4534), - [anon_sym_union] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_switch] = ACTIONS(4534), - [anon_sym_case] = ACTIONS(4534), - [anon_sym_default] = ACTIONS(4534), - [anon_sym_while] = ACTIONS(4534), - [anon_sym_do] = ACTIONS(4534), - [anon_sym_for] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_goto] = ACTIONS(4534), - [anon_sym_not] = ACTIONS(4534), - [anon_sym_compl] = ACTIONS(4534), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_sizeof] = ACTIONS(4534), - [anon_sym___alignof__] = ACTIONS(4534), - [anon_sym___alignof] = ACTIONS(4534), - [anon_sym__alignof] = ACTIONS(4534), - [anon_sym_alignof] = ACTIONS(4534), - [anon_sym__Alignof] = ACTIONS(4534), - [anon_sym_offsetof] = ACTIONS(4534), - [anon_sym__Generic] = ACTIONS(4534), - [anon_sym_typename] = ACTIONS(4534), - [anon_sym_asm] = ACTIONS(4534), - [anon_sym___asm__] = ACTIONS(4534), - [anon_sym___asm] = ACTIONS(4534), - [sym_number_literal] = ACTIONS(4536), - [anon_sym_L_SQUOTE] = ACTIONS(4536), - [anon_sym_u_SQUOTE] = ACTIONS(4536), - [anon_sym_U_SQUOTE] = ACTIONS(4536), - [anon_sym_u8_SQUOTE] = ACTIONS(4536), - [anon_sym_SQUOTE] = ACTIONS(4536), - [anon_sym_L_DQUOTE] = ACTIONS(4536), - [anon_sym_u_DQUOTE] = ACTIONS(4536), - [anon_sym_U_DQUOTE] = ACTIONS(4536), - [anon_sym_u8_DQUOTE] = ACTIONS(4536), - [anon_sym_DQUOTE] = ACTIONS(4536), - [sym_true] = ACTIONS(4534), - [sym_false] = ACTIONS(4534), - [anon_sym_NULL] = ACTIONS(4534), - [anon_sym_nullptr] = ACTIONS(4534), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4534), - [anon_sym_decltype] = ACTIONS(4534), - [anon_sym_explicit] = ACTIONS(4534), - [anon_sym_export] = ACTIONS(4534), - [anon_sym_module] = ACTIONS(4534), - [anon_sym_import] = ACTIONS(4534), - [anon_sym_template] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_delete] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_namespace] = ACTIONS(4534), - [anon_sym_static_assert] = ACTIONS(4534), - [anon_sym_concept] = ACTIONS(4534), - [anon_sym_co_return] = ACTIONS(4534), - [anon_sym_co_yield] = ACTIONS(4534), - [anon_sym_R_DQUOTE] = ACTIONS(4536), - [anon_sym_LR_DQUOTE] = ACTIONS(4536), - [anon_sym_uR_DQUOTE] = ACTIONS(4536), - [anon_sym_UR_DQUOTE] = ACTIONS(4536), - [anon_sym_u8R_DQUOTE] = ACTIONS(4536), - [anon_sym_co_await] = ACTIONS(4534), - [anon_sym_new] = ACTIONS(4534), - [anon_sym_requires] = ACTIONS(4534), - [anon_sym_CARET_CARET] = ACTIONS(4536), - [anon_sym_LBRACK_COLON] = ACTIONS(4536), - [sym_this] = ACTIONS(4534), + [sym_identifier] = ACTIONS(4660), + [aux_sym_preproc_include_token1] = ACTIONS(4660), + [aux_sym_preproc_def_token1] = ACTIONS(4660), + [aux_sym_preproc_if_token1] = ACTIONS(4660), + [aux_sym_preproc_if_token2] = ACTIONS(4660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4660), + [aux_sym_preproc_else_token1] = ACTIONS(4660), + [aux_sym_preproc_elif_token1] = ACTIONS(4660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4660), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4660), + [sym_preproc_directive] = ACTIONS(4660), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_TILDE] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_AMP] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym___extension__] = ACTIONS(4660), + [anon_sym_typedef] = ACTIONS(4660), + [anon_sym_virtual] = ACTIONS(4660), + [anon_sym_extern] = ACTIONS(4660), + [anon_sym___attribute__] = ACTIONS(4660), + [anon_sym___attribute] = ACTIONS(4660), + [anon_sym_using] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4662), + [anon_sym___declspec] = ACTIONS(4660), + [anon_sym___based] = ACTIONS(4660), + [anon_sym___cdecl] = ACTIONS(4660), + [anon_sym___clrcall] = ACTIONS(4660), + [anon_sym___stdcall] = ACTIONS(4660), + [anon_sym___fastcall] = ACTIONS(4660), + [anon_sym___thiscall] = ACTIONS(4660), + [anon_sym___vectorcall] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_signed] = ACTIONS(4660), + [anon_sym_unsigned] = ACTIONS(4660), + [anon_sym_long] = ACTIONS(4660), + [anon_sym_short] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4660), + [anon_sym_static] = ACTIONS(4660), + [anon_sym_register] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym___inline] = ACTIONS(4660), + [anon_sym___inline__] = ACTIONS(4660), + [anon_sym___forceinline] = ACTIONS(4660), + [anon_sym_thread_local] = ACTIONS(4660), + [anon_sym___thread] = ACTIONS(4660), + [anon_sym_const] = ACTIONS(4660), + [anon_sym_constexpr] = ACTIONS(4660), + [anon_sym_volatile] = ACTIONS(4660), + [anon_sym_restrict] = ACTIONS(4660), + [anon_sym___restrict__] = ACTIONS(4660), + [anon_sym__Atomic] = ACTIONS(4660), + [anon_sym__Noreturn] = ACTIONS(4660), + [anon_sym_noreturn] = ACTIONS(4660), + [anon_sym__Nonnull] = ACTIONS(4660), + [anon_sym_mutable] = ACTIONS(4660), + [anon_sym_constinit] = ACTIONS(4660), + [anon_sym_consteval] = ACTIONS(4660), + [anon_sym_alignas] = ACTIONS(4660), + [anon_sym__Alignas] = ACTIONS(4660), + [sym_primitive_type] = ACTIONS(4660), + [anon_sym_enum] = ACTIONS(4660), + [anon_sym_class] = ACTIONS(4660), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_union] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_switch] = ACTIONS(4660), + [anon_sym_case] = ACTIONS(4660), + [anon_sym_default] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_do] = ACTIONS(4660), + [anon_sym_for] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_goto] = ACTIONS(4660), + [anon_sym_not] = ACTIONS(4660), + [anon_sym_compl] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_sizeof] = ACTIONS(4660), + [anon_sym___alignof__] = ACTIONS(4660), + [anon_sym___alignof] = ACTIONS(4660), + [anon_sym__alignof] = ACTIONS(4660), + [anon_sym_alignof] = ACTIONS(4660), + [anon_sym__Alignof] = ACTIONS(4660), + [anon_sym_offsetof] = ACTIONS(4660), + [anon_sym__Generic] = ACTIONS(4660), + [anon_sym_typename] = ACTIONS(4660), + [anon_sym_asm] = ACTIONS(4660), + [anon_sym___asm__] = ACTIONS(4660), + [anon_sym___asm] = ACTIONS(4660), + [sym_number_literal] = ACTIONS(4662), + [anon_sym_L_SQUOTE] = ACTIONS(4662), + [anon_sym_u_SQUOTE] = ACTIONS(4662), + [anon_sym_U_SQUOTE] = ACTIONS(4662), + [anon_sym_u8_SQUOTE] = ACTIONS(4662), + [anon_sym_SQUOTE] = ACTIONS(4662), + [anon_sym_L_DQUOTE] = ACTIONS(4662), + [anon_sym_u_DQUOTE] = ACTIONS(4662), + [anon_sym_U_DQUOTE] = ACTIONS(4662), + [anon_sym_u8_DQUOTE] = ACTIONS(4662), + [anon_sym_DQUOTE] = ACTIONS(4662), + [sym_true] = ACTIONS(4660), + [sym_false] = ACTIONS(4660), + [anon_sym_NULL] = ACTIONS(4660), + [anon_sym_nullptr] = ACTIONS(4660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4660), + [anon_sym_decltype] = ACTIONS(4660), + [anon_sym_explicit] = ACTIONS(4660), + [anon_sym_export] = ACTIONS(4660), + [anon_sym_module] = ACTIONS(4660), + [anon_sym_import] = ACTIONS(4660), + [anon_sym_template] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_delete] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_namespace] = ACTIONS(4660), + [anon_sym_static_assert] = ACTIONS(4660), + [anon_sym_concept] = ACTIONS(4660), + [anon_sym_co_return] = ACTIONS(4660), + [anon_sym_co_yield] = ACTIONS(4660), + [anon_sym_R_DQUOTE] = ACTIONS(4662), + [anon_sym_LR_DQUOTE] = ACTIONS(4662), + [anon_sym_uR_DQUOTE] = ACTIONS(4662), + [anon_sym_UR_DQUOTE] = ACTIONS(4662), + [anon_sym_u8R_DQUOTE] = ACTIONS(4662), + [anon_sym_co_await] = ACTIONS(4660), + [anon_sym_new] = ACTIONS(4660), + [anon_sym_requires] = ACTIONS(4660), + [anon_sym_CARET_CARET] = ACTIONS(4662), + [anon_sym_LBRACK_COLON] = ACTIONS(4662), + [sym_this] = ACTIONS(4660), }, [STATE(554)] = { - [sym_identifier] = ACTIONS(4538), - [aux_sym_preproc_include_token1] = ACTIONS(4538), - [aux_sym_preproc_def_token1] = ACTIONS(4538), - [aux_sym_preproc_if_token1] = ACTIONS(4538), - [aux_sym_preproc_if_token2] = ACTIONS(4538), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4538), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4538), - [aux_sym_preproc_else_token1] = ACTIONS(4538), - [aux_sym_preproc_elif_token1] = ACTIONS(4538), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4538), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4538), - [sym_preproc_directive] = ACTIONS(4538), - [anon_sym_LPAREN2] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_TILDE] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_SEMI] = ACTIONS(4540), - [anon_sym___extension__] = ACTIONS(4538), - [anon_sym_typedef] = ACTIONS(4538), - [anon_sym_virtual] = ACTIONS(4538), - [anon_sym_extern] = ACTIONS(4538), - [anon_sym___attribute__] = ACTIONS(4538), - [anon_sym___attribute] = ACTIONS(4538), - [anon_sym_using] = ACTIONS(4538), - [anon_sym_COLON_COLON] = ACTIONS(4540), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4540), - [anon_sym___declspec] = ACTIONS(4538), - [anon_sym___based] = ACTIONS(4538), - [anon_sym___cdecl] = ACTIONS(4538), - [anon_sym___clrcall] = ACTIONS(4538), - [anon_sym___stdcall] = ACTIONS(4538), - [anon_sym___fastcall] = ACTIONS(4538), - [anon_sym___thiscall] = ACTIONS(4538), - [anon_sym___vectorcall] = ACTIONS(4538), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_signed] = ACTIONS(4538), - [anon_sym_unsigned] = ACTIONS(4538), - [anon_sym_long] = ACTIONS(4538), - [anon_sym_short] = ACTIONS(4538), - [anon_sym_LBRACK] = ACTIONS(4538), - [anon_sym_static] = ACTIONS(4538), - [anon_sym_register] = ACTIONS(4538), - [anon_sym_inline] = ACTIONS(4538), - [anon_sym___inline] = ACTIONS(4538), - [anon_sym___inline__] = ACTIONS(4538), - [anon_sym___forceinline] = ACTIONS(4538), - [anon_sym_thread_local] = ACTIONS(4538), - [anon_sym___thread] = ACTIONS(4538), - [anon_sym_const] = ACTIONS(4538), - [anon_sym_constexpr] = ACTIONS(4538), - [anon_sym_volatile] = ACTIONS(4538), - [anon_sym_restrict] = ACTIONS(4538), - [anon_sym___restrict__] = ACTIONS(4538), - [anon_sym__Atomic] = ACTIONS(4538), - [anon_sym__Noreturn] = ACTIONS(4538), - [anon_sym_noreturn] = ACTIONS(4538), - [anon_sym__Nonnull] = ACTIONS(4538), - [anon_sym_mutable] = ACTIONS(4538), - [anon_sym_constinit] = ACTIONS(4538), - [anon_sym_consteval] = ACTIONS(4538), - [anon_sym_alignas] = ACTIONS(4538), - [anon_sym__Alignas] = ACTIONS(4538), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_enum] = ACTIONS(4538), - [anon_sym_class] = ACTIONS(4538), - [anon_sym_struct] = ACTIONS(4538), - [anon_sym_union] = ACTIONS(4538), - [anon_sym_if] = ACTIONS(4538), - [anon_sym_switch] = ACTIONS(4538), - [anon_sym_case] = ACTIONS(4538), - [anon_sym_default] = ACTIONS(4538), - [anon_sym_while] = ACTIONS(4538), - [anon_sym_do] = ACTIONS(4538), - [anon_sym_for] = ACTIONS(4538), - [anon_sym_return] = ACTIONS(4538), - [anon_sym_break] = ACTIONS(4538), - [anon_sym_continue] = ACTIONS(4538), - [anon_sym_goto] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(4538), - [anon_sym_compl] = ACTIONS(4538), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_sizeof] = ACTIONS(4538), - [anon_sym___alignof__] = ACTIONS(4538), - [anon_sym___alignof] = ACTIONS(4538), - [anon_sym__alignof] = ACTIONS(4538), - [anon_sym_alignof] = ACTIONS(4538), - [anon_sym__Alignof] = ACTIONS(4538), - [anon_sym_offsetof] = ACTIONS(4538), - [anon_sym__Generic] = ACTIONS(4538), - [anon_sym_typename] = ACTIONS(4538), - [anon_sym_asm] = ACTIONS(4538), - [anon_sym___asm__] = ACTIONS(4538), - [anon_sym___asm] = ACTIONS(4538), - [sym_number_literal] = ACTIONS(4540), - [anon_sym_L_SQUOTE] = ACTIONS(4540), - [anon_sym_u_SQUOTE] = ACTIONS(4540), - [anon_sym_U_SQUOTE] = ACTIONS(4540), - [anon_sym_u8_SQUOTE] = ACTIONS(4540), - [anon_sym_SQUOTE] = ACTIONS(4540), - [anon_sym_L_DQUOTE] = ACTIONS(4540), - [anon_sym_u_DQUOTE] = ACTIONS(4540), - [anon_sym_U_DQUOTE] = ACTIONS(4540), - [anon_sym_u8_DQUOTE] = ACTIONS(4540), - [anon_sym_DQUOTE] = ACTIONS(4540), - [sym_true] = ACTIONS(4538), - [sym_false] = ACTIONS(4538), - [anon_sym_NULL] = ACTIONS(4538), - [anon_sym_nullptr] = ACTIONS(4538), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4538), - [anon_sym_decltype] = ACTIONS(4538), - [anon_sym_explicit] = ACTIONS(4538), - [anon_sym_export] = ACTIONS(4538), - [anon_sym_module] = ACTIONS(4538), - [anon_sym_import] = ACTIONS(4538), - [anon_sym_template] = ACTIONS(4538), - [anon_sym_operator] = ACTIONS(4538), - [anon_sym_try] = ACTIONS(4538), - [anon_sym_delete] = ACTIONS(4538), - [anon_sym_throw] = ACTIONS(4538), - [anon_sym_namespace] = ACTIONS(4538), - [anon_sym_static_assert] = ACTIONS(4538), - [anon_sym_concept] = ACTIONS(4538), - [anon_sym_co_return] = ACTIONS(4538), - [anon_sym_co_yield] = ACTIONS(4538), - [anon_sym_R_DQUOTE] = ACTIONS(4540), - [anon_sym_LR_DQUOTE] = ACTIONS(4540), - [anon_sym_uR_DQUOTE] = ACTIONS(4540), - [anon_sym_UR_DQUOTE] = ACTIONS(4540), - [anon_sym_u8R_DQUOTE] = ACTIONS(4540), - [anon_sym_co_await] = ACTIONS(4538), - [anon_sym_new] = ACTIONS(4538), - [anon_sym_requires] = ACTIONS(4538), - [anon_sym_CARET_CARET] = ACTIONS(4540), - [anon_sym_LBRACK_COLON] = ACTIONS(4540), - [sym_this] = ACTIONS(4538), + [sym_identifier] = ACTIONS(4664), + [aux_sym_preproc_include_token1] = ACTIONS(4664), + [aux_sym_preproc_def_token1] = ACTIONS(4664), + [aux_sym_preproc_if_token1] = ACTIONS(4664), + [aux_sym_preproc_if_token2] = ACTIONS(4664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4664), + [aux_sym_preproc_else_token1] = ACTIONS(4664), + [aux_sym_preproc_elif_token1] = ACTIONS(4664), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4664), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4664), + [sym_preproc_directive] = ACTIONS(4664), + [anon_sym_LPAREN2] = ACTIONS(4666), + [anon_sym_BANG] = ACTIONS(4666), + [anon_sym_TILDE] = ACTIONS(4666), + [anon_sym_DASH] = ACTIONS(4664), + [anon_sym_PLUS] = ACTIONS(4664), + [anon_sym_STAR] = ACTIONS(4666), + [anon_sym_AMP_AMP] = ACTIONS(4666), + [anon_sym_AMP] = ACTIONS(4664), + [anon_sym_SEMI] = ACTIONS(4666), + [anon_sym___extension__] = ACTIONS(4664), + [anon_sym_typedef] = ACTIONS(4664), + [anon_sym_virtual] = ACTIONS(4664), + [anon_sym_extern] = ACTIONS(4664), + [anon_sym___attribute__] = ACTIONS(4664), + [anon_sym___attribute] = ACTIONS(4664), + [anon_sym_using] = ACTIONS(4664), + [anon_sym_COLON_COLON] = ACTIONS(4666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4666), + [anon_sym___declspec] = ACTIONS(4664), + [anon_sym___based] = ACTIONS(4664), + [anon_sym___cdecl] = ACTIONS(4664), + [anon_sym___clrcall] = ACTIONS(4664), + [anon_sym___stdcall] = ACTIONS(4664), + [anon_sym___fastcall] = ACTIONS(4664), + [anon_sym___thiscall] = ACTIONS(4664), + [anon_sym___vectorcall] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4666), + [anon_sym_signed] = ACTIONS(4664), + [anon_sym_unsigned] = ACTIONS(4664), + [anon_sym_long] = ACTIONS(4664), + [anon_sym_short] = ACTIONS(4664), + [anon_sym_LBRACK] = ACTIONS(4664), + [anon_sym_static] = ACTIONS(4664), + [anon_sym_register] = ACTIONS(4664), + [anon_sym_inline] = ACTIONS(4664), + [anon_sym___inline] = ACTIONS(4664), + [anon_sym___inline__] = ACTIONS(4664), + [anon_sym___forceinline] = ACTIONS(4664), + [anon_sym_thread_local] = ACTIONS(4664), + [anon_sym___thread] = ACTIONS(4664), + [anon_sym_const] = ACTIONS(4664), + [anon_sym_constexpr] = ACTIONS(4664), + [anon_sym_volatile] = ACTIONS(4664), + [anon_sym_restrict] = ACTIONS(4664), + [anon_sym___restrict__] = ACTIONS(4664), + [anon_sym__Atomic] = ACTIONS(4664), + [anon_sym__Noreturn] = ACTIONS(4664), + [anon_sym_noreturn] = ACTIONS(4664), + [anon_sym__Nonnull] = ACTIONS(4664), + [anon_sym_mutable] = ACTIONS(4664), + [anon_sym_constinit] = ACTIONS(4664), + [anon_sym_consteval] = ACTIONS(4664), + [anon_sym_alignas] = ACTIONS(4664), + [anon_sym__Alignas] = ACTIONS(4664), + [sym_primitive_type] = ACTIONS(4664), + [anon_sym_enum] = ACTIONS(4664), + [anon_sym_class] = ACTIONS(4664), + [anon_sym_struct] = ACTIONS(4664), + [anon_sym_union] = ACTIONS(4664), + [anon_sym_if] = ACTIONS(4664), + [anon_sym_switch] = ACTIONS(4664), + [anon_sym_case] = ACTIONS(4664), + [anon_sym_default] = ACTIONS(4664), + [anon_sym_while] = ACTIONS(4664), + [anon_sym_do] = ACTIONS(4664), + [anon_sym_for] = ACTIONS(4664), + [anon_sym_return] = ACTIONS(4664), + [anon_sym_break] = ACTIONS(4664), + [anon_sym_continue] = ACTIONS(4664), + [anon_sym_goto] = ACTIONS(4664), + [anon_sym_not] = ACTIONS(4664), + [anon_sym_compl] = ACTIONS(4664), + [anon_sym_DASH_DASH] = ACTIONS(4666), + [anon_sym_PLUS_PLUS] = ACTIONS(4666), + [anon_sym_sizeof] = ACTIONS(4664), + [anon_sym___alignof__] = ACTIONS(4664), + [anon_sym___alignof] = ACTIONS(4664), + [anon_sym__alignof] = ACTIONS(4664), + [anon_sym_alignof] = ACTIONS(4664), + [anon_sym__Alignof] = ACTIONS(4664), + [anon_sym_offsetof] = ACTIONS(4664), + [anon_sym__Generic] = ACTIONS(4664), + [anon_sym_typename] = ACTIONS(4664), + [anon_sym_asm] = ACTIONS(4664), + [anon_sym___asm__] = ACTIONS(4664), + [anon_sym___asm] = ACTIONS(4664), + [sym_number_literal] = ACTIONS(4666), + [anon_sym_L_SQUOTE] = ACTIONS(4666), + [anon_sym_u_SQUOTE] = ACTIONS(4666), + [anon_sym_U_SQUOTE] = ACTIONS(4666), + [anon_sym_u8_SQUOTE] = ACTIONS(4666), + [anon_sym_SQUOTE] = ACTIONS(4666), + [anon_sym_L_DQUOTE] = ACTIONS(4666), + [anon_sym_u_DQUOTE] = ACTIONS(4666), + [anon_sym_U_DQUOTE] = ACTIONS(4666), + [anon_sym_u8_DQUOTE] = ACTIONS(4666), + [anon_sym_DQUOTE] = ACTIONS(4666), + [sym_true] = ACTIONS(4664), + [sym_false] = ACTIONS(4664), + [anon_sym_NULL] = ACTIONS(4664), + [anon_sym_nullptr] = ACTIONS(4664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4664), + [anon_sym_decltype] = ACTIONS(4664), + [anon_sym_explicit] = ACTIONS(4664), + [anon_sym_export] = ACTIONS(4664), + [anon_sym_module] = ACTIONS(4664), + [anon_sym_import] = ACTIONS(4664), + [anon_sym_template] = ACTIONS(4664), + [anon_sym_operator] = ACTIONS(4664), + [anon_sym_try] = ACTIONS(4664), + [anon_sym_delete] = ACTIONS(4664), + [anon_sym_throw] = ACTIONS(4664), + [anon_sym_namespace] = ACTIONS(4664), + [anon_sym_static_assert] = ACTIONS(4664), + [anon_sym_concept] = ACTIONS(4664), + [anon_sym_co_return] = ACTIONS(4664), + [anon_sym_co_yield] = ACTIONS(4664), + [anon_sym_R_DQUOTE] = ACTIONS(4666), + [anon_sym_LR_DQUOTE] = ACTIONS(4666), + [anon_sym_uR_DQUOTE] = ACTIONS(4666), + [anon_sym_UR_DQUOTE] = ACTIONS(4666), + [anon_sym_u8R_DQUOTE] = ACTIONS(4666), + [anon_sym_co_await] = ACTIONS(4664), + [anon_sym_new] = ACTIONS(4664), + [anon_sym_requires] = ACTIONS(4664), + [anon_sym_CARET_CARET] = ACTIONS(4666), + [anon_sym_LBRACK_COLON] = ACTIONS(4666), + [sym_this] = ACTIONS(4664), }, [STATE(555)] = { - [sym_preproc_def] = STATE(555), - [sym_preproc_function_def] = STATE(555), - [sym_preproc_call] = STATE(555), - [sym_preproc_if_in_field_declaration_list] = STATE(555), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(555), - [sym_type_definition] = STATE(555), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8093), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(555), - [sym_field_declaration] = STATE(555), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(555), - [sym_operator_cast] = STATE(9218), - [sym_inline_method_definition] = STATE(555), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(555), - [sym_operator_cast_declaration] = STATE(555), - [sym_constructor_or_destructor_definition] = STATE(555), - [sym_constructor_or_destructor_declaration] = STATE(555), - [sym_friend_declaration] = STATE(555), - [sym_access_specifier] = STATE(11699), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(555), - [sym_alias_declaration] = STATE(555), - [sym_static_assert_declaration] = STATE(555), - [sym_consteval_block_declaration] = STATE(555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9608), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(4542), - [aux_sym_preproc_def_token1] = ACTIONS(4545), - [aux_sym_preproc_if_token1] = ACTIONS(4548), - [aux_sym_preproc_if_token2] = ACTIONS(4551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4553), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4553), - [aux_sym_preproc_else_token1] = ACTIONS(4551), - [aux_sym_preproc_elif_token1] = ACTIONS(4551), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4551), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4551), - [sym_preproc_directive] = ACTIONS(4556), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_TILDE] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4574), - [anon_sym___extension__] = ACTIONS(4577), - [anon_sym_typedef] = ACTIONS(4580), - [anon_sym_virtual] = ACTIONS(4583), - [anon_sym_extern] = ACTIONS(4586), - [anon_sym___attribute__] = ACTIONS(4589), - [anon_sym___attribute] = ACTIONS(4589), - [anon_sym_using] = ACTIONS(4592), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4598), - [anon_sym___declspec] = ACTIONS(4601), - [anon_sym___based] = ACTIONS(4604), - [anon_sym_signed] = ACTIONS(4607), - [anon_sym_unsigned] = ACTIONS(4607), - [anon_sym_long] = ACTIONS(4607), - [anon_sym_short] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4610), - [anon_sym_static] = ACTIONS(4586), - [anon_sym_register] = ACTIONS(4586), - [anon_sym_inline] = ACTIONS(4586), - [anon_sym___inline] = ACTIONS(4586), - [anon_sym___inline__] = ACTIONS(4586), - [anon_sym___forceinline] = ACTIONS(4586), - [anon_sym_thread_local] = ACTIONS(4586), - [anon_sym___thread] = ACTIONS(4586), - [anon_sym_const] = ACTIONS(4613), - [anon_sym_constexpr] = ACTIONS(4616), - [anon_sym_volatile] = ACTIONS(4613), - [anon_sym_restrict] = ACTIONS(4613), - [anon_sym___restrict__] = ACTIONS(4613), - [anon_sym__Atomic] = ACTIONS(4613), - [anon_sym__Noreturn] = ACTIONS(4613), - [anon_sym_noreturn] = ACTIONS(4613), - [anon_sym__Nonnull] = ACTIONS(4613), - [anon_sym_mutable] = ACTIONS(4613), - [anon_sym_constinit] = ACTIONS(4613), - [anon_sym_consteval] = ACTIONS(4619), - [anon_sym_alignas] = ACTIONS(4622), - [anon_sym__Alignas] = ACTIONS(4622), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4628), - [anon_sym_class] = ACTIONS(4631), - [anon_sym_struct] = ACTIONS(4634), - [anon_sym_union] = ACTIONS(4637), - [anon_sym_typename] = ACTIONS(4640), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4643), - [anon_sym_decltype] = ACTIONS(4646), - [anon_sym_explicit] = ACTIONS(4649), - [anon_sym_private] = ACTIONS(4652), - [anon_sym_template] = ACTIONS(4655), - [anon_sym_operator] = ACTIONS(4658), - [anon_sym_friend] = ACTIONS(4661), - [anon_sym_public] = ACTIONS(4652), - [anon_sym_protected] = ACTIONS(4652), - [anon_sym_static_assert] = ACTIONS(4664), - [anon_sym_LBRACK_COLON] = ACTIONS(4667), + [ts_builtin_sym_end] = ACTIONS(3654), + [sym_identifier] = ACTIONS(3652), + [aux_sym_preproc_include_token1] = ACTIONS(3652), + [aux_sym_preproc_def_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), + [sym_preproc_directive] = ACTIONS(3652), + [anon_sym_LPAREN2] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [anon_sym_AMP_AMP] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym___extension__] = ACTIONS(3652), + [anon_sym_typedef] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym___attribute__] = ACTIONS(3652), + [anon_sym___attribute] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), + [anon_sym___declspec] = ACTIONS(3652), + [anon_sym___based] = ACTIONS(3652), + [anon_sym___cdecl] = ACTIONS(3652), + [anon_sym___clrcall] = ACTIONS(3652), + [anon_sym___stdcall] = ACTIONS(3652), + [anon_sym___fastcall] = ACTIONS(3652), + [anon_sym___thiscall] = ACTIONS(3652), + [anon_sym___vectorcall] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_signed] = ACTIONS(3652), + [anon_sym_unsigned] = ACTIONS(3652), + [anon_sym_long] = ACTIONS(3652), + [anon_sym_short] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_register] = ACTIONS(3652), + [anon_sym_inline] = ACTIONS(3652), + [anon_sym___inline] = ACTIONS(3652), + [anon_sym___inline__] = ACTIONS(3652), + [anon_sym___forceinline] = ACTIONS(3652), + [anon_sym_thread_local] = ACTIONS(3652), + [anon_sym___thread] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_constexpr] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_restrict] = ACTIONS(3652), + [anon_sym___restrict__] = ACTIONS(3652), + [anon_sym__Atomic] = ACTIONS(3652), + [anon_sym__Noreturn] = ACTIONS(3652), + [anon_sym_noreturn] = ACTIONS(3652), + [anon_sym__Nonnull] = ACTIONS(3652), + [anon_sym_mutable] = ACTIONS(3652), + [anon_sym_constinit] = ACTIONS(3652), + [anon_sym_consteval] = ACTIONS(3652), + [anon_sym_alignas] = ACTIONS(3652), + [anon_sym__Alignas] = ACTIONS(3652), + [sym_primitive_type] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_union] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym___try] = ACTIONS(3652), + [anon_sym___leave] = ACTIONS(3652), + [anon_sym_not] = ACTIONS(3652), + [anon_sym_compl] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym___alignof__] = ACTIONS(3652), + [anon_sym___alignof] = ACTIONS(3652), + [anon_sym__alignof] = ACTIONS(3652), + [anon_sym_alignof] = ACTIONS(3652), + [anon_sym__Alignof] = ACTIONS(3652), + [anon_sym_offsetof] = ACTIONS(3652), + [anon_sym__Generic] = ACTIONS(3652), + [anon_sym_typename] = ACTIONS(3652), + [anon_sym_asm] = ACTIONS(3652), + [anon_sym___asm__] = ACTIONS(3652), + [anon_sym___asm] = ACTIONS(3652), + [sym_number_literal] = ACTIONS(3654), + [anon_sym_L_SQUOTE] = ACTIONS(3654), + [anon_sym_u_SQUOTE] = ACTIONS(3654), + [anon_sym_U_SQUOTE] = ACTIONS(3654), + [anon_sym_u8_SQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_L_DQUOTE] = ACTIONS(3654), + [anon_sym_u_DQUOTE] = ACTIONS(3654), + [anon_sym_U_DQUOTE] = ACTIONS(3654), + [anon_sym_u8_DQUOTE] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [anon_sym_NULL] = ACTIONS(3652), + [anon_sym_nullptr] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3652), + [anon_sym_decltype] = ACTIONS(3652), + [anon_sym_explicit] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_operator] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_static_assert] = ACTIONS(3652), + [anon_sym_concept] = ACTIONS(3652), + [anon_sym_co_return] = ACTIONS(3652), + [anon_sym_co_yield] = ACTIONS(3652), + [anon_sym_R_DQUOTE] = ACTIONS(3654), + [anon_sym_LR_DQUOTE] = ACTIONS(3654), + [anon_sym_uR_DQUOTE] = ACTIONS(3654), + [anon_sym_UR_DQUOTE] = ACTIONS(3654), + [anon_sym_u8R_DQUOTE] = ACTIONS(3654), + [anon_sym_co_await] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_requires] = ACTIONS(3652), + [anon_sym_CARET_CARET] = ACTIONS(3654), + [anon_sym_LBRACK_COLON] = ACTIONS(3654), + [sym_this] = ACTIONS(3652), }, [STATE(556)] = { - [ts_builtin_sym_end] = ACTIONS(3606), - [sym_identifier] = ACTIONS(3604), - [aux_sym_preproc_include_token1] = ACTIONS(3604), - [aux_sym_preproc_def_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), - [sym_preproc_directive] = ACTIONS(3604), - [anon_sym_LPAREN2] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(3604), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym___extension__] = ACTIONS(3604), - [anon_sym_typedef] = ACTIONS(3604), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_extern] = ACTIONS(3604), - [anon_sym___attribute__] = ACTIONS(3604), - [anon_sym___attribute] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_COLON_COLON] = ACTIONS(3606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), - [anon_sym___declspec] = ACTIONS(3604), - [anon_sym___based] = ACTIONS(3604), - [anon_sym___cdecl] = ACTIONS(3604), - [anon_sym___clrcall] = ACTIONS(3604), - [anon_sym___stdcall] = ACTIONS(3604), - [anon_sym___fastcall] = ACTIONS(3604), - [anon_sym___thiscall] = ACTIONS(3604), - [anon_sym___vectorcall] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_signed] = ACTIONS(3604), - [anon_sym_unsigned] = ACTIONS(3604), - [anon_sym_long] = ACTIONS(3604), - [anon_sym_short] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_register] = ACTIONS(3604), - [anon_sym_inline] = ACTIONS(3604), - [anon_sym___inline] = ACTIONS(3604), - [anon_sym___inline__] = ACTIONS(3604), - [anon_sym___forceinline] = ACTIONS(3604), - [anon_sym_thread_local] = ACTIONS(3604), - [anon_sym___thread] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_constexpr] = ACTIONS(3604), - [anon_sym_volatile] = ACTIONS(3604), - [anon_sym_restrict] = ACTIONS(3604), - [anon_sym___restrict__] = ACTIONS(3604), - [anon_sym__Atomic] = ACTIONS(3604), - [anon_sym__Noreturn] = ACTIONS(3604), - [anon_sym_noreturn] = ACTIONS(3604), - [anon_sym__Nonnull] = ACTIONS(3604), - [anon_sym_mutable] = ACTIONS(3604), - [anon_sym_constinit] = ACTIONS(3604), - [anon_sym_consteval] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3604), - [anon_sym__Alignas] = ACTIONS(3604), - [sym_primitive_type] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_union] = ACTIONS(3604), - [anon_sym_if] = ACTIONS(3604), - [anon_sym_else] = ACTIONS(3604), - [anon_sym_switch] = ACTIONS(3604), - [anon_sym_case] = ACTIONS(3604), - [anon_sym_default] = ACTIONS(3604), - [anon_sym_while] = ACTIONS(3604), - [anon_sym_do] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3604), - [anon_sym_return] = ACTIONS(3604), - [anon_sym_break] = ACTIONS(3604), - [anon_sym_continue] = ACTIONS(3604), - [anon_sym_goto] = ACTIONS(3604), - [anon_sym___try] = ACTIONS(3604), - [anon_sym___leave] = ACTIONS(3604), - [anon_sym_not] = ACTIONS(3604), - [anon_sym_compl] = ACTIONS(3604), - [anon_sym_DASH_DASH] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_sizeof] = ACTIONS(3604), - [anon_sym___alignof__] = ACTIONS(3604), - [anon_sym___alignof] = ACTIONS(3604), - [anon_sym__alignof] = ACTIONS(3604), - [anon_sym_alignof] = ACTIONS(3604), - [anon_sym__Alignof] = ACTIONS(3604), - [anon_sym_offsetof] = ACTIONS(3604), - [anon_sym__Generic] = ACTIONS(3604), - [anon_sym_typename] = ACTIONS(3604), - [anon_sym_asm] = ACTIONS(3604), - [anon_sym___asm__] = ACTIONS(3604), - [anon_sym___asm] = ACTIONS(3604), - [sym_number_literal] = ACTIONS(3606), - [anon_sym_L_SQUOTE] = ACTIONS(3606), - [anon_sym_u_SQUOTE] = ACTIONS(3606), - [anon_sym_U_SQUOTE] = ACTIONS(3606), - [anon_sym_u8_SQUOTE] = ACTIONS(3606), - [anon_sym_SQUOTE] = ACTIONS(3606), - [anon_sym_L_DQUOTE] = ACTIONS(3606), - [anon_sym_u_DQUOTE] = ACTIONS(3606), - [anon_sym_U_DQUOTE] = ACTIONS(3606), - [anon_sym_u8_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [sym_true] = ACTIONS(3604), - [sym_false] = ACTIONS(3604), - [anon_sym_NULL] = ACTIONS(3604), - [anon_sym_nullptr] = ACTIONS(3604), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3604), - [anon_sym_decltype] = ACTIONS(3604), - [anon_sym_explicit] = ACTIONS(3604), - [anon_sym_export] = ACTIONS(3604), - [anon_sym_module] = ACTIONS(3604), - [anon_sym_import] = ACTIONS(3604), - [anon_sym_template] = ACTIONS(3604), - [anon_sym_operator] = ACTIONS(3604), - [anon_sym_try] = ACTIONS(3604), - [anon_sym_delete] = ACTIONS(3604), - [anon_sym_throw] = ACTIONS(3604), - [anon_sym_namespace] = ACTIONS(3604), - [anon_sym_static_assert] = ACTIONS(3604), - [anon_sym_concept] = ACTIONS(3604), - [anon_sym_co_return] = ACTIONS(3604), - [anon_sym_co_yield] = ACTIONS(3604), - [anon_sym_R_DQUOTE] = ACTIONS(3606), - [anon_sym_LR_DQUOTE] = ACTIONS(3606), - [anon_sym_uR_DQUOTE] = ACTIONS(3606), - [anon_sym_UR_DQUOTE] = ACTIONS(3606), - [anon_sym_u8R_DQUOTE] = ACTIONS(3606), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3604), - [anon_sym_requires] = ACTIONS(3604), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(3606), - [sym_this] = ACTIONS(3604), + [ts_builtin_sym_end] = ACTIONS(3496), + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_include_token1] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3494), + [aux_sym_preproc_if_token1] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3494), + [sym_preproc_directive] = ACTIONS(3494), + [anon_sym_LPAREN2] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3496), + [anon_sym_AMP] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym___extension__] = ACTIONS(3494), + [anon_sym_typedef] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym___attribute__] = ACTIONS(3494), + [anon_sym___attribute] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_COLON_COLON] = ACTIONS(3496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3496), + [anon_sym___declspec] = ACTIONS(3494), + [anon_sym___based] = ACTIONS(3494), + [anon_sym___cdecl] = ACTIONS(3494), + [anon_sym___clrcall] = ACTIONS(3494), + [anon_sym___stdcall] = ACTIONS(3494), + [anon_sym___fastcall] = ACTIONS(3494), + [anon_sym___thiscall] = ACTIONS(3494), + [anon_sym___vectorcall] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_signed] = ACTIONS(3494), + [anon_sym_unsigned] = ACTIONS(3494), + [anon_sym_long] = ACTIONS(3494), + [anon_sym_short] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_register] = ACTIONS(3494), + [anon_sym_inline] = ACTIONS(3494), + [anon_sym___inline] = ACTIONS(3494), + [anon_sym___inline__] = ACTIONS(3494), + [anon_sym___forceinline] = ACTIONS(3494), + [anon_sym_thread_local] = ACTIONS(3494), + [anon_sym___thread] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_constexpr] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_restrict] = ACTIONS(3494), + [anon_sym___restrict__] = ACTIONS(3494), + [anon_sym__Atomic] = ACTIONS(3494), + [anon_sym__Noreturn] = ACTIONS(3494), + [anon_sym_noreturn] = ACTIONS(3494), + [anon_sym__Nonnull] = ACTIONS(3494), + [anon_sym_mutable] = ACTIONS(3494), + [anon_sym_constinit] = ACTIONS(3494), + [anon_sym_consteval] = ACTIONS(3494), + [anon_sym_alignas] = ACTIONS(3494), + [anon_sym__Alignas] = ACTIONS(3494), + [sym_primitive_type] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_union] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_else] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_case] = ACTIONS(3494), + [anon_sym_default] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_goto] = ACTIONS(3494), + [anon_sym___try] = ACTIONS(3494), + [anon_sym___leave] = ACTIONS(3494), + [anon_sym_not] = ACTIONS(3494), + [anon_sym_compl] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_sizeof] = ACTIONS(3494), + [anon_sym___alignof__] = ACTIONS(3494), + [anon_sym___alignof] = ACTIONS(3494), + [anon_sym__alignof] = ACTIONS(3494), + [anon_sym_alignof] = ACTIONS(3494), + [anon_sym__Alignof] = ACTIONS(3494), + [anon_sym_offsetof] = ACTIONS(3494), + [anon_sym__Generic] = ACTIONS(3494), + [anon_sym_typename] = ACTIONS(3494), + [anon_sym_asm] = ACTIONS(3494), + [anon_sym___asm__] = ACTIONS(3494), + [anon_sym___asm] = ACTIONS(3494), + [sym_number_literal] = ACTIONS(3496), + [anon_sym_L_SQUOTE] = ACTIONS(3496), + [anon_sym_u_SQUOTE] = ACTIONS(3496), + [anon_sym_U_SQUOTE] = ACTIONS(3496), + [anon_sym_u8_SQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_L_DQUOTE] = ACTIONS(3496), + [anon_sym_u_DQUOTE] = ACTIONS(3496), + [anon_sym_U_DQUOTE] = ACTIONS(3496), + [anon_sym_u8_DQUOTE] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [anon_sym_NULL] = ACTIONS(3494), + [anon_sym_nullptr] = ACTIONS(3494), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3494), + [anon_sym_decltype] = ACTIONS(3494), + [anon_sym_explicit] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_template] = ACTIONS(3494), + [anon_sym_operator] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_static_assert] = ACTIONS(3494), + [anon_sym_concept] = ACTIONS(3494), + [anon_sym_co_return] = ACTIONS(3494), + [anon_sym_co_yield] = ACTIONS(3494), + [anon_sym_R_DQUOTE] = ACTIONS(3496), + [anon_sym_LR_DQUOTE] = ACTIONS(3496), + [anon_sym_uR_DQUOTE] = ACTIONS(3496), + [anon_sym_UR_DQUOTE] = ACTIONS(3496), + [anon_sym_u8R_DQUOTE] = ACTIONS(3496), + [anon_sym_co_await] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_requires] = ACTIONS(3494), + [anon_sym_CARET_CARET] = ACTIONS(3496), + [anon_sym_LBRACK_COLON] = ACTIONS(3496), + [sym_this] = ACTIONS(3494), }, [STATE(557)] = { - [ts_builtin_sym_end] = ACTIONS(3680), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3498), + [aux_sym_preproc_include_token1] = ACTIONS(3498), + [aux_sym_preproc_def_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3498), + [sym_preproc_directive] = ACTIONS(3498), + [anon_sym_LPAREN2] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3500), + [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym___extension__] = ACTIONS(3498), + [anon_sym_typedef] = ACTIONS(3498), + [anon_sym_virtual] = ACTIONS(3498), + [anon_sym_extern] = ACTIONS(3498), + [anon_sym___attribute__] = ACTIONS(3498), + [anon_sym___attribute] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_COLON_COLON] = ACTIONS(3500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3500), + [anon_sym___declspec] = ACTIONS(3498), + [anon_sym___based] = ACTIONS(3498), + [anon_sym___cdecl] = ACTIONS(3498), + [anon_sym___clrcall] = ACTIONS(3498), + [anon_sym___stdcall] = ACTIONS(3498), + [anon_sym___fastcall] = ACTIONS(3498), + [anon_sym___thiscall] = ACTIONS(3498), + [anon_sym___vectorcall] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_signed] = ACTIONS(3498), + [anon_sym_unsigned] = ACTIONS(3498), + [anon_sym_long] = ACTIONS(3498), + [anon_sym_short] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_register] = ACTIONS(3498), + [anon_sym_inline] = ACTIONS(3498), + [anon_sym___inline] = ACTIONS(3498), + [anon_sym___inline__] = ACTIONS(3498), + [anon_sym___forceinline] = ACTIONS(3498), + [anon_sym_thread_local] = ACTIONS(3498), + [anon_sym___thread] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_constexpr] = ACTIONS(3498), + [anon_sym_volatile] = ACTIONS(3498), + [anon_sym_restrict] = ACTIONS(3498), + [anon_sym___restrict__] = ACTIONS(3498), + [anon_sym__Atomic] = ACTIONS(3498), + [anon_sym__Noreturn] = ACTIONS(3498), + [anon_sym_noreturn] = ACTIONS(3498), + [anon_sym__Nonnull] = ACTIONS(3498), + [anon_sym_mutable] = ACTIONS(3498), + [anon_sym_constinit] = ACTIONS(3498), + [anon_sym_consteval] = ACTIONS(3498), + [anon_sym_alignas] = ACTIONS(3498), + [anon_sym__Alignas] = ACTIONS(3498), + [sym_primitive_type] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_struct] = ACTIONS(3498), + [anon_sym_union] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_else] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_case] = ACTIONS(3498), + [anon_sym_default] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_goto] = ACTIONS(3498), + [anon_sym___try] = ACTIONS(3498), + [anon_sym___leave] = ACTIONS(3498), + [anon_sym_not] = ACTIONS(3498), + [anon_sym_compl] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_sizeof] = ACTIONS(3498), + [anon_sym___alignof__] = ACTIONS(3498), + [anon_sym___alignof] = ACTIONS(3498), + [anon_sym__alignof] = ACTIONS(3498), + [anon_sym_alignof] = ACTIONS(3498), + [anon_sym__Alignof] = ACTIONS(3498), + [anon_sym_offsetof] = ACTIONS(3498), + [anon_sym__Generic] = ACTIONS(3498), + [anon_sym_typename] = ACTIONS(3498), + [anon_sym_asm] = ACTIONS(3498), + [anon_sym___asm__] = ACTIONS(3498), + [anon_sym___asm] = ACTIONS(3498), + [sym_number_literal] = ACTIONS(3500), + [anon_sym_L_SQUOTE] = ACTIONS(3500), + [anon_sym_u_SQUOTE] = ACTIONS(3500), + [anon_sym_U_SQUOTE] = ACTIONS(3500), + [anon_sym_u8_SQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_L_DQUOTE] = ACTIONS(3500), + [anon_sym_u_DQUOTE] = ACTIONS(3500), + [anon_sym_U_DQUOTE] = ACTIONS(3500), + [anon_sym_u8_DQUOTE] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [anon_sym_NULL] = ACTIONS(3498), + [anon_sym_nullptr] = ACTIONS(3498), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3498), + [anon_sym_decltype] = ACTIONS(3498), + [anon_sym_explicit] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_template] = ACTIONS(3498), + [anon_sym_operator] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_static_assert] = ACTIONS(3498), + [anon_sym_concept] = ACTIONS(3498), + [anon_sym_co_return] = ACTIONS(3498), + [anon_sym_co_yield] = ACTIONS(3498), + [anon_sym_R_DQUOTE] = ACTIONS(3500), + [anon_sym_LR_DQUOTE] = ACTIONS(3500), + [anon_sym_uR_DQUOTE] = ACTIONS(3500), + [anon_sym_UR_DQUOTE] = ACTIONS(3500), + [anon_sym_u8R_DQUOTE] = ACTIONS(3500), + [anon_sym_co_await] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_requires] = ACTIONS(3498), + [anon_sym_CARET_CARET] = ACTIONS(3500), + [anon_sym_LBRACK_COLON] = ACTIONS(3500), + [sym_this] = ACTIONS(3498), + }, + [STATE(558)] = { + [ts_builtin_sym_end] = ACTIONS(3564), + [sym_identifier] = ACTIONS(3562), + [aux_sym_preproc_include_token1] = ACTIONS(3562), + [aux_sym_preproc_def_token1] = ACTIONS(3562), + [aux_sym_preproc_if_token1] = ACTIONS(3562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3562), + [sym_preproc_directive] = ACTIONS(3562), + [anon_sym_LPAREN2] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3564), + [anon_sym_AMP_AMP] = ACTIONS(3564), + [anon_sym_AMP] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym___extension__] = ACTIONS(3562), + [anon_sym_typedef] = ACTIONS(3562), + [anon_sym_virtual] = ACTIONS(3562), + [anon_sym_extern] = ACTIONS(3562), + [anon_sym___attribute__] = ACTIONS(3562), + [anon_sym___attribute] = ACTIONS(3562), + [anon_sym_using] = ACTIONS(3562), + [anon_sym_COLON_COLON] = ACTIONS(3564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3564), + [anon_sym___declspec] = ACTIONS(3562), + [anon_sym___based] = ACTIONS(3562), + [anon_sym___cdecl] = ACTIONS(3562), + [anon_sym___clrcall] = ACTIONS(3562), + [anon_sym___stdcall] = ACTIONS(3562), + [anon_sym___fastcall] = ACTIONS(3562), + [anon_sym___thiscall] = ACTIONS(3562), + [anon_sym___vectorcall] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_signed] = ACTIONS(3562), + [anon_sym_unsigned] = ACTIONS(3562), + [anon_sym_long] = ACTIONS(3562), + [anon_sym_short] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_register] = ACTIONS(3562), + [anon_sym_inline] = ACTIONS(3562), + [anon_sym___inline] = ACTIONS(3562), + [anon_sym___inline__] = ACTIONS(3562), + [anon_sym___forceinline] = ACTIONS(3562), + [anon_sym_thread_local] = ACTIONS(3562), + [anon_sym___thread] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_constexpr] = ACTIONS(3562), + [anon_sym_volatile] = ACTIONS(3562), + [anon_sym_restrict] = ACTIONS(3562), + [anon_sym___restrict__] = ACTIONS(3562), + [anon_sym__Atomic] = ACTIONS(3562), + [anon_sym__Noreturn] = ACTIONS(3562), + [anon_sym_noreturn] = ACTIONS(3562), + [anon_sym__Nonnull] = ACTIONS(3562), + [anon_sym_mutable] = ACTIONS(3562), + [anon_sym_constinit] = ACTIONS(3562), + [anon_sym_consteval] = ACTIONS(3562), + [anon_sym_alignas] = ACTIONS(3562), + [anon_sym__Alignas] = ACTIONS(3562), + [sym_primitive_type] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_struct] = ACTIONS(3562), + [anon_sym_union] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_else] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_case] = ACTIONS(3562), + [anon_sym_default] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_goto] = ACTIONS(3562), + [anon_sym___try] = ACTIONS(3562), + [anon_sym___leave] = ACTIONS(3562), + [anon_sym_not] = ACTIONS(3562), + [anon_sym_compl] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_sizeof] = ACTIONS(3562), + [anon_sym___alignof__] = ACTIONS(3562), + [anon_sym___alignof] = ACTIONS(3562), + [anon_sym__alignof] = ACTIONS(3562), + [anon_sym_alignof] = ACTIONS(3562), + [anon_sym__Alignof] = ACTIONS(3562), + [anon_sym_offsetof] = ACTIONS(3562), + [anon_sym__Generic] = ACTIONS(3562), + [anon_sym_typename] = ACTIONS(3562), + [anon_sym_asm] = ACTIONS(3562), + [anon_sym___asm__] = ACTIONS(3562), + [anon_sym___asm] = ACTIONS(3562), + [sym_number_literal] = ACTIONS(3564), + [anon_sym_L_SQUOTE] = ACTIONS(3564), + [anon_sym_u_SQUOTE] = ACTIONS(3564), + [anon_sym_U_SQUOTE] = ACTIONS(3564), + [anon_sym_u8_SQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_L_DQUOTE] = ACTIONS(3564), + [anon_sym_u_DQUOTE] = ACTIONS(3564), + [anon_sym_U_DQUOTE] = ACTIONS(3564), + [anon_sym_u8_DQUOTE] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [anon_sym_NULL] = ACTIONS(3562), + [anon_sym_nullptr] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3562), + [anon_sym_decltype] = ACTIONS(3562), + [anon_sym_explicit] = ACTIONS(3562), + [anon_sym_export] = ACTIONS(3562), + [anon_sym_module] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_template] = ACTIONS(3562), + [anon_sym_operator] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_namespace] = ACTIONS(3562), + [anon_sym_static_assert] = ACTIONS(3562), + [anon_sym_concept] = ACTIONS(3562), + [anon_sym_co_return] = ACTIONS(3562), + [anon_sym_co_yield] = ACTIONS(3562), + [anon_sym_R_DQUOTE] = ACTIONS(3564), + [anon_sym_LR_DQUOTE] = ACTIONS(3564), + [anon_sym_uR_DQUOTE] = ACTIONS(3564), + [anon_sym_UR_DQUOTE] = ACTIONS(3564), + [anon_sym_u8R_DQUOTE] = ACTIONS(3564), + [anon_sym_co_await] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_requires] = ACTIONS(3562), + [anon_sym_CARET_CARET] = ACTIONS(3564), + [anon_sym_LBRACK_COLON] = ACTIONS(3564), + [sym_this] = ACTIONS(3562), + }, + [STATE(559)] = { + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3502), + [aux_sym_preproc_include_token1] = ACTIONS(3502), + [aux_sym_preproc_def_token1] = ACTIONS(3502), + [aux_sym_preproc_if_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [sym_preproc_directive] = ACTIONS(3502), + [anon_sym_LPAREN2] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3504), + [anon_sym_AMP] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym___extension__] = ACTIONS(3502), + [anon_sym_typedef] = ACTIONS(3502), + [anon_sym_virtual] = ACTIONS(3502), + [anon_sym_extern] = ACTIONS(3502), + [anon_sym___attribute__] = ACTIONS(3502), + [anon_sym___attribute] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_COLON_COLON] = ACTIONS(3504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3504), + [anon_sym___declspec] = ACTIONS(3502), + [anon_sym___based] = ACTIONS(3502), + [anon_sym___cdecl] = ACTIONS(3502), + [anon_sym___clrcall] = ACTIONS(3502), + [anon_sym___stdcall] = ACTIONS(3502), + [anon_sym___fastcall] = ACTIONS(3502), + [anon_sym___thiscall] = ACTIONS(3502), + [anon_sym___vectorcall] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_signed] = ACTIONS(3502), + [anon_sym_unsigned] = ACTIONS(3502), + [anon_sym_long] = ACTIONS(3502), + [anon_sym_short] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_register] = ACTIONS(3502), + [anon_sym_inline] = ACTIONS(3502), + [anon_sym___inline] = ACTIONS(3502), + [anon_sym___inline__] = ACTIONS(3502), + [anon_sym___forceinline] = ACTIONS(3502), + [anon_sym_thread_local] = ACTIONS(3502), + [anon_sym___thread] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_constexpr] = ACTIONS(3502), + [anon_sym_volatile] = ACTIONS(3502), + [anon_sym_restrict] = ACTIONS(3502), + [anon_sym___restrict__] = ACTIONS(3502), + [anon_sym__Atomic] = ACTIONS(3502), + [anon_sym__Noreturn] = ACTIONS(3502), + [anon_sym_noreturn] = ACTIONS(3502), + [anon_sym__Nonnull] = ACTIONS(3502), + [anon_sym_mutable] = ACTIONS(3502), + [anon_sym_constinit] = ACTIONS(3502), + [anon_sym_consteval] = ACTIONS(3502), + [anon_sym_alignas] = ACTIONS(3502), + [anon_sym__Alignas] = ACTIONS(3502), + [sym_primitive_type] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_struct] = ACTIONS(3502), + [anon_sym_union] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_else] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_case] = ACTIONS(3502), + [anon_sym_default] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_goto] = ACTIONS(3502), + [anon_sym___try] = ACTIONS(3502), + [anon_sym___leave] = ACTIONS(3502), + [anon_sym_not] = ACTIONS(3502), + [anon_sym_compl] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_PLUS_PLUS] = ACTIONS(3504), + [anon_sym_sizeof] = ACTIONS(3502), + [anon_sym___alignof__] = ACTIONS(3502), + [anon_sym___alignof] = ACTIONS(3502), + [anon_sym__alignof] = ACTIONS(3502), + [anon_sym_alignof] = ACTIONS(3502), + [anon_sym__Alignof] = ACTIONS(3502), + [anon_sym_offsetof] = ACTIONS(3502), + [anon_sym__Generic] = ACTIONS(3502), + [anon_sym_typename] = ACTIONS(3502), + [anon_sym_asm] = ACTIONS(3502), + [anon_sym___asm__] = ACTIONS(3502), + [anon_sym___asm] = ACTIONS(3502), + [sym_number_literal] = ACTIONS(3504), + [anon_sym_L_SQUOTE] = ACTIONS(3504), + [anon_sym_u_SQUOTE] = ACTIONS(3504), + [anon_sym_U_SQUOTE] = ACTIONS(3504), + [anon_sym_u8_SQUOTE] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3504), + [anon_sym_L_DQUOTE] = ACTIONS(3504), + [anon_sym_u_DQUOTE] = ACTIONS(3504), + [anon_sym_U_DQUOTE] = ACTIONS(3504), + [anon_sym_u8_DQUOTE] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [anon_sym_NULL] = ACTIONS(3502), + [anon_sym_nullptr] = ACTIONS(3502), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3502), + [anon_sym_decltype] = ACTIONS(3502), + [anon_sym_explicit] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_template] = ACTIONS(3502), + [anon_sym_operator] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_static_assert] = ACTIONS(3502), + [anon_sym_concept] = ACTIONS(3502), + [anon_sym_co_return] = ACTIONS(3502), + [anon_sym_co_yield] = ACTIONS(3502), + [anon_sym_R_DQUOTE] = ACTIONS(3504), + [anon_sym_LR_DQUOTE] = ACTIONS(3504), + [anon_sym_uR_DQUOTE] = ACTIONS(3504), + [anon_sym_UR_DQUOTE] = ACTIONS(3504), + [anon_sym_u8R_DQUOTE] = ACTIONS(3504), + [anon_sym_co_await] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_requires] = ACTIONS(3502), + [anon_sym_CARET_CARET] = ACTIONS(3504), + [anon_sym_LBRACK_COLON] = ACTIONS(3504), + [sym_this] = ACTIONS(3502), + }, + [STATE(560)] = { + [ts_builtin_sym_end] = ACTIONS(3508), + [sym_identifier] = ACTIONS(3506), + [aux_sym_preproc_include_token1] = ACTIONS(3506), + [aux_sym_preproc_def_token1] = ACTIONS(3506), + [aux_sym_preproc_if_token1] = ACTIONS(3506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3506), + [sym_preproc_directive] = ACTIONS(3506), + [anon_sym_LPAREN2] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_STAR] = ACTIONS(3508), + [anon_sym_AMP_AMP] = ACTIONS(3508), + [anon_sym_AMP] = ACTIONS(3506), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym___extension__] = ACTIONS(3506), + [anon_sym_typedef] = ACTIONS(3506), + [anon_sym_virtual] = ACTIONS(3506), + [anon_sym_extern] = ACTIONS(3506), + [anon_sym___attribute__] = ACTIONS(3506), + [anon_sym___attribute] = ACTIONS(3506), + [anon_sym_using] = ACTIONS(3506), + [anon_sym_COLON_COLON] = ACTIONS(3508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3508), + [anon_sym___declspec] = ACTIONS(3506), + [anon_sym___based] = ACTIONS(3506), + [anon_sym___cdecl] = ACTIONS(3506), + [anon_sym___clrcall] = ACTIONS(3506), + [anon_sym___stdcall] = ACTIONS(3506), + [anon_sym___fastcall] = ACTIONS(3506), + [anon_sym___thiscall] = ACTIONS(3506), + [anon_sym___vectorcall] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_signed] = ACTIONS(3506), + [anon_sym_unsigned] = ACTIONS(3506), + [anon_sym_long] = ACTIONS(3506), + [anon_sym_short] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_register] = ACTIONS(3506), + [anon_sym_inline] = ACTIONS(3506), + [anon_sym___inline] = ACTIONS(3506), + [anon_sym___inline__] = ACTIONS(3506), + [anon_sym___forceinline] = ACTIONS(3506), + [anon_sym_thread_local] = ACTIONS(3506), + [anon_sym___thread] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3506), + [anon_sym_constexpr] = ACTIONS(3506), + [anon_sym_volatile] = ACTIONS(3506), + [anon_sym_restrict] = ACTIONS(3506), + [anon_sym___restrict__] = ACTIONS(3506), + [anon_sym__Atomic] = ACTIONS(3506), + [anon_sym__Noreturn] = ACTIONS(3506), + [anon_sym_noreturn] = ACTIONS(3506), + [anon_sym__Nonnull] = ACTIONS(3506), + [anon_sym_mutable] = ACTIONS(3506), + [anon_sym_constinit] = ACTIONS(3506), + [anon_sym_consteval] = ACTIONS(3506), + [anon_sym_alignas] = ACTIONS(3506), + [anon_sym__Alignas] = ACTIONS(3506), + [sym_primitive_type] = ACTIONS(3506), + [anon_sym_enum] = ACTIONS(3506), + [anon_sym_class] = ACTIONS(3506), + [anon_sym_struct] = ACTIONS(3506), + [anon_sym_union] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_else] = ACTIONS(3506), + [anon_sym_switch] = ACTIONS(3506), + [anon_sym_case] = ACTIONS(3506), + [anon_sym_default] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_do] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_goto] = ACTIONS(3506), + [anon_sym___try] = ACTIONS(3506), + [anon_sym___leave] = ACTIONS(3506), + [anon_sym_not] = ACTIONS(3506), + [anon_sym_compl] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3508), + [anon_sym_sizeof] = ACTIONS(3506), + [anon_sym___alignof__] = ACTIONS(3506), + [anon_sym___alignof] = ACTIONS(3506), + [anon_sym__alignof] = ACTIONS(3506), + [anon_sym_alignof] = ACTIONS(3506), + [anon_sym__Alignof] = ACTIONS(3506), + [anon_sym_offsetof] = ACTIONS(3506), + [anon_sym__Generic] = ACTIONS(3506), + [anon_sym_typename] = ACTIONS(3506), + [anon_sym_asm] = ACTIONS(3506), + [anon_sym___asm__] = ACTIONS(3506), + [anon_sym___asm] = ACTIONS(3506), + [sym_number_literal] = ACTIONS(3508), + [anon_sym_L_SQUOTE] = ACTIONS(3508), + [anon_sym_u_SQUOTE] = ACTIONS(3508), + [anon_sym_U_SQUOTE] = ACTIONS(3508), + [anon_sym_u8_SQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3508), + [anon_sym_L_DQUOTE] = ACTIONS(3508), + [anon_sym_u_DQUOTE] = ACTIONS(3508), + [anon_sym_U_DQUOTE] = ACTIONS(3508), + [anon_sym_u8_DQUOTE] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [anon_sym_NULL] = ACTIONS(3506), + [anon_sym_nullptr] = ACTIONS(3506), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3506), + [anon_sym_decltype] = ACTIONS(3506), + [anon_sym_explicit] = ACTIONS(3506), + [anon_sym_export] = ACTIONS(3506), + [anon_sym_module] = ACTIONS(3506), + [anon_sym_import] = ACTIONS(3506), + [anon_sym_template] = ACTIONS(3506), + [anon_sym_operator] = ACTIONS(3506), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_delete] = ACTIONS(3506), + [anon_sym_throw] = ACTIONS(3506), + [anon_sym_namespace] = ACTIONS(3506), + [anon_sym_static_assert] = ACTIONS(3506), + [anon_sym_concept] = ACTIONS(3506), + [anon_sym_co_return] = ACTIONS(3506), + [anon_sym_co_yield] = ACTIONS(3506), + [anon_sym_R_DQUOTE] = ACTIONS(3508), + [anon_sym_LR_DQUOTE] = ACTIONS(3508), + [anon_sym_uR_DQUOTE] = ACTIONS(3508), + [anon_sym_UR_DQUOTE] = ACTIONS(3508), + [anon_sym_u8R_DQUOTE] = ACTIONS(3508), + [anon_sym_co_await] = ACTIONS(3506), + [anon_sym_new] = ACTIONS(3506), + [anon_sym_requires] = ACTIONS(3506), + [anon_sym_CARET_CARET] = ACTIONS(3508), + [anon_sym_LBRACK_COLON] = ACTIONS(3508), + [sym_this] = ACTIONS(3506), + }, + [STATE(561)] = { + [ts_builtin_sym_end] = ACTIONS(3622), + [sym_identifier] = ACTIONS(3620), + [aux_sym_preproc_include_token1] = ACTIONS(3620), + [aux_sym_preproc_def_token1] = ACTIONS(3620), + [aux_sym_preproc_if_token1] = ACTIONS(3620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3620), + [sym_preproc_directive] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [anon_sym_AMP_AMP] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym___extension__] = ACTIONS(3620), + [anon_sym_typedef] = ACTIONS(3620), + [anon_sym_virtual] = ACTIONS(3620), + [anon_sym_extern] = ACTIONS(3620), + [anon_sym___attribute__] = ACTIONS(3620), + [anon_sym___attribute] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3622), + [anon_sym___declspec] = ACTIONS(3620), + [anon_sym___based] = ACTIONS(3620), + [anon_sym___cdecl] = ACTIONS(3620), + [anon_sym___clrcall] = ACTIONS(3620), + [anon_sym___stdcall] = ACTIONS(3620), + [anon_sym___fastcall] = ACTIONS(3620), + [anon_sym___thiscall] = ACTIONS(3620), + [anon_sym___vectorcall] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3620), + [anon_sym_unsigned] = ACTIONS(3620), + [anon_sym_long] = ACTIONS(3620), + [anon_sym_short] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_register] = ACTIONS(3620), + [anon_sym_inline] = ACTIONS(3620), + [anon_sym___inline] = ACTIONS(3620), + [anon_sym___inline__] = ACTIONS(3620), + [anon_sym___forceinline] = ACTIONS(3620), + [anon_sym_thread_local] = ACTIONS(3620), + [anon_sym___thread] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_constexpr] = ACTIONS(3620), + [anon_sym_volatile] = ACTIONS(3620), + [anon_sym_restrict] = ACTIONS(3620), + [anon_sym___restrict__] = ACTIONS(3620), + [anon_sym__Atomic] = ACTIONS(3620), + [anon_sym__Noreturn] = ACTIONS(3620), + [anon_sym_noreturn] = ACTIONS(3620), + [anon_sym__Nonnull] = ACTIONS(3620), + [anon_sym_mutable] = ACTIONS(3620), + [anon_sym_constinit] = ACTIONS(3620), + [anon_sym_consteval] = ACTIONS(3620), + [anon_sym_alignas] = ACTIONS(3620), + [anon_sym__Alignas] = ACTIONS(3620), + [sym_primitive_type] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_struct] = ACTIONS(3620), + [anon_sym_union] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_else] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_case] = ACTIONS(3620), + [anon_sym_default] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_goto] = ACTIONS(3620), + [anon_sym___try] = ACTIONS(3620), + [anon_sym___leave] = ACTIONS(3620), + [anon_sym_not] = ACTIONS(3620), + [anon_sym_compl] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_sizeof] = ACTIONS(3620), + [anon_sym___alignof__] = ACTIONS(3620), + [anon_sym___alignof] = ACTIONS(3620), + [anon_sym__alignof] = ACTIONS(3620), + [anon_sym_alignof] = ACTIONS(3620), + [anon_sym__Alignof] = ACTIONS(3620), + [anon_sym_offsetof] = ACTIONS(3620), + [anon_sym__Generic] = ACTIONS(3620), + [anon_sym_typename] = ACTIONS(3620), + [anon_sym_asm] = ACTIONS(3620), + [anon_sym___asm__] = ACTIONS(3620), + [anon_sym___asm] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [anon_sym_L_SQUOTE] = ACTIONS(3622), + [anon_sym_u_SQUOTE] = ACTIONS(3622), + [anon_sym_U_SQUOTE] = ACTIONS(3622), + [anon_sym_u8_SQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [anon_sym_NULL] = ACTIONS(3620), + [anon_sym_nullptr] = ACTIONS(3620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3620), + [anon_sym_decltype] = ACTIONS(3620), + [anon_sym_explicit] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_template] = ACTIONS(3620), + [anon_sym_operator] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_static_assert] = ACTIONS(3620), + [anon_sym_concept] = ACTIONS(3620), + [anon_sym_co_return] = ACTIONS(3620), + [anon_sym_co_yield] = ACTIONS(3620), + [anon_sym_R_DQUOTE] = ACTIONS(3622), + [anon_sym_LR_DQUOTE] = ACTIONS(3622), + [anon_sym_uR_DQUOTE] = ACTIONS(3622), + [anon_sym_UR_DQUOTE] = ACTIONS(3622), + [anon_sym_u8R_DQUOTE] = ACTIONS(3622), + [anon_sym_co_await] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_requires] = ACTIONS(3620), + [anon_sym_CARET_CARET] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3622), + [sym_this] = ACTIONS(3620), + }, + [STATE(562)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token2] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), + }, + [STATE(563)] = { + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3514), + [aux_sym_preproc_include_token1] = ACTIONS(3514), + [aux_sym_preproc_def_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token1] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3514), + [sym_preproc_directive] = ACTIONS(3514), + [anon_sym_LPAREN2] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym___extension__] = ACTIONS(3514), + [anon_sym_typedef] = ACTIONS(3514), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3514), + [anon_sym___attribute__] = ACTIONS(3514), + [anon_sym___attribute] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_COLON_COLON] = ACTIONS(3516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3514), + [anon_sym___based] = ACTIONS(3514), + [anon_sym___cdecl] = ACTIONS(3514), + [anon_sym___clrcall] = ACTIONS(3514), + [anon_sym___stdcall] = ACTIONS(3514), + [anon_sym___fastcall] = ACTIONS(3514), + [anon_sym___thiscall] = ACTIONS(3514), + [anon_sym___vectorcall] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_signed] = ACTIONS(3514), + [anon_sym_unsigned] = ACTIONS(3514), + [anon_sym_long] = ACTIONS(3514), + [anon_sym_short] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_register] = ACTIONS(3514), + [anon_sym_inline] = ACTIONS(3514), + [anon_sym___inline] = ACTIONS(3514), + [anon_sym___inline__] = ACTIONS(3514), + [anon_sym___forceinline] = ACTIONS(3514), + [anon_sym_thread_local] = ACTIONS(3514), + [anon_sym___thread] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_constexpr] = ACTIONS(3514), + [anon_sym_volatile] = ACTIONS(3514), + [anon_sym_restrict] = ACTIONS(3514), + [anon_sym___restrict__] = ACTIONS(3514), + [anon_sym__Atomic] = ACTIONS(3514), + [anon_sym__Noreturn] = ACTIONS(3514), + [anon_sym_noreturn] = ACTIONS(3514), + [anon_sym__Nonnull] = ACTIONS(3514), + [anon_sym_mutable] = ACTIONS(3514), + [anon_sym_constinit] = ACTIONS(3514), + [anon_sym_consteval] = ACTIONS(3514), + [anon_sym_alignas] = ACTIONS(3514), + [anon_sym__Alignas] = ACTIONS(3514), + [sym_primitive_type] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_struct] = ACTIONS(3514), + [anon_sym_union] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_else] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_case] = ACTIONS(3514), + [anon_sym_default] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_goto] = ACTIONS(3514), + [anon_sym___try] = ACTIONS(3514), + [anon_sym___leave] = ACTIONS(3514), + [anon_sym_not] = ACTIONS(3514), + [anon_sym_compl] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_sizeof] = ACTIONS(3514), + [anon_sym___alignof__] = ACTIONS(3514), + [anon_sym___alignof] = ACTIONS(3514), + [anon_sym__alignof] = ACTIONS(3514), + [anon_sym_alignof] = ACTIONS(3514), + [anon_sym__Alignof] = ACTIONS(3514), + [anon_sym_offsetof] = ACTIONS(3514), + [anon_sym__Generic] = ACTIONS(3514), + [anon_sym_typename] = ACTIONS(3514), + [anon_sym_asm] = ACTIONS(3514), + [anon_sym___asm__] = ACTIONS(3514), + [anon_sym___asm] = ACTIONS(3514), + [sym_number_literal] = ACTIONS(3516), + [anon_sym_L_SQUOTE] = ACTIONS(3516), + [anon_sym_u_SQUOTE] = ACTIONS(3516), + [anon_sym_U_SQUOTE] = ACTIONS(3516), + [anon_sym_u8_SQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_L_DQUOTE] = ACTIONS(3516), + [anon_sym_u_DQUOTE] = ACTIONS(3516), + [anon_sym_U_DQUOTE] = ACTIONS(3516), + [anon_sym_u8_DQUOTE] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [anon_sym_NULL] = ACTIONS(3514), + [anon_sym_nullptr] = ACTIONS(3514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3514), + [anon_sym_decltype] = ACTIONS(3514), + [anon_sym_explicit] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_template] = ACTIONS(3514), + [anon_sym_operator] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_static_assert] = ACTIONS(3514), + [anon_sym_concept] = ACTIONS(3514), + [anon_sym_co_return] = ACTIONS(3514), + [anon_sym_co_yield] = ACTIONS(3514), + [anon_sym_R_DQUOTE] = ACTIONS(3516), + [anon_sym_LR_DQUOTE] = ACTIONS(3516), + [anon_sym_uR_DQUOTE] = ACTIONS(3516), + [anon_sym_UR_DQUOTE] = ACTIONS(3516), + [anon_sym_u8R_DQUOTE] = ACTIONS(3516), + [anon_sym_co_await] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_requires] = ACTIONS(3514), + [anon_sym_CARET_CARET] = ACTIONS(3516), + [anon_sym_LBRACK_COLON] = ACTIONS(3516), + [sym_this] = ACTIONS(3514), + }, + [STATE(564)] = { + [ts_builtin_sym_end] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_include_token1] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym___cdecl] = ACTIONS(3518), + [anon_sym___clrcall] = ACTIONS(3518), + [anon_sym___stdcall] = ACTIONS(3518), + [anon_sym___fastcall] = ACTIONS(3518), + [anon_sym___thiscall] = ACTIONS(3518), + [anon_sym___vectorcall] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym___try] = ACTIONS(3518), + [anon_sym___leave] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(3518), + [anon_sym_compl] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [anon_sym___alignof__] = ACTIONS(3518), + [anon_sym___alignof] = ACTIONS(3518), + [anon_sym__alignof] = ACTIONS(3518), + [anon_sym_alignof] = ACTIONS(3518), + [anon_sym__Alignof] = ACTIONS(3518), + [anon_sym_offsetof] = ACTIONS(3518), + [anon_sym__Generic] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [anon_sym_asm] = ACTIONS(3518), + [anon_sym___asm__] = ACTIONS(3518), + [anon_sym___asm] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [anon_sym_L_SQUOTE] = ACTIONS(3520), + [anon_sym_u_SQUOTE] = ACTIONS(3520), + [anon_sym_U_SQUOTE] = ACTIONS(3520), + [anon_sym_u8_SQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_L_DQUOTE] = ACTIONS(3520), + [anon_sym_u_DQUOTE] = ACTIONS(3520), + [anon_sym_U_DQUOTE] = ACTIONS(3520), + [anon_sym_u8_DQUOTE] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [anon_sym_NULL] = ACTIONS(3518), + [anon_sym_nullptr] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_concept] = ACTIONS(3518), + [anon_sym_co_return] = ACTIONS(3518), + [anon_sym_co_yield] = ACTIONS(3518), + [anon_sym_R_DQUOTE] = ACTIONS(3520), + [anon_sym_LR_DQUOTE] = ACTIONS(3520), + [anon_sym_uR_DQUOTE] = ACTIONS(3520), + [anon_sym_UR_DQUOTE] = ACTIONS(3520), + [anon_sym_u8R_DQUOTE] = ACTIONS(3520), + [anon_sym_co_await] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_requires] = ACTIONS(3518), + [anon_sym_CARET_CARET] = ACTIONS(3520), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + [sym_this] = ACTIONS(3518), + }, + [STATE(565)] = { + [ts_builtin_sym_end] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_include_token1] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym___cdecl] = ACTIONS(3518), + [anon_sym___clrcall] = ACTIONS(3518), + [anon_sym___stdcall] = ACTIONS(3518), + [anon_sym___fastcall] = ACTIONS(3518), + [anon_sym___thiscall] = ACTIONS(3518), + [anon_sym___vectorcall] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym___try] = ACTIONS(3518), + [anon_sym___leave] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(3518), + [anon_sym_compl] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [anon_sym___alignof__] = ACTIONS(3518), + [anon_sym___alignof] = ACTIONS(3518), + [anon_sym__alignof] = ACTIONS(3518), + [anon_sym_alignof] = ACTIONS(3518), + [anon_sym__Alignof] = ACTIONS(3518), + [anon_sym_offsetof] = ACTIONS(3518), + [anon_sym__Generic] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [anon_sym_asm] = ACTIONS(3518), + [anon_sym___asm__] = ACTIONS(3518), + [anon_sym___asm] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [anon_sym_L_SQUOTE] = ACTIONS(3520), + [anon_sym_u_SQUOTE] = ACTIONS(3520), + [anon_sym_U_SQUOTE] = ACTIONS(3520), + [anon_sym_u8_SQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_L_DQUOTE] = ACTIONS(3520), + [anon_sym_u_DQUOTE] = ACTIONS(3520), + [anon_sym_U_DQUOTE] = ACTIONS(3520), + [anon_sym_u8_DQUOTE] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [anon_sym_NULL] = ACTIONS(3518), + [anon_sym_nullptr] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_concept] = ACTIONS(3518), + [anon_sym_co_return] = ACTIONS(3518), + [anon_sym_co_yield] = ACTIONS(3518), + [anon_sym_R_DQUOTE] = ACTIONS(3520), + [anon_sym_LR_DQUOTE] = ACTIONS(3520), + [anon_sym_uR_DQUOTE] = ACTIONS(3520), + [anon_sym_UR_DQUOTE] = ACTIONS(3520), + [anon_sym_u8R_DQUOTE] = ACTIONS(3520), + [anon_sym_co_await] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_requires] = ACTIONS(3518), + [anon_sym_CARET_CARET] = ACTIONS(3520), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + [sym_this] = ACTIONS(3518), + }, + [STATE(566)] = { + [sym_catch_clause] = STATE(455), + [aux_sym_constructor_try_statement_repeat1] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_include_token1] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym___attribute] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym___cdecl] = ACTIONS(3180), + [anon_sym___clrcall] = ACTIONS(3180), + [anon_sym___stdcall] = ACTIONS(3180), + [anon_sym___fastcall] = ACTIONS(3180), + [anon_sym___thiscall] = ACTIONS(3180), + [anon_sym___vectorcall] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym__Nonnull] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym__Alignas] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3180), + [anon_sym_default] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_goto] = ACTIONS(3180), + [anon_sym_not] = ACTIONS(3180), + [anon_sym_compl] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3180), + [anon_sym___alignof__] = ACTIONS(3180), + [anon_sym___alignof] = ACTIONS(3180), + [anon_sym__alignof] = ACTIONS(3180), + [anon_sym_alignof] = ACTIONS(3180), + [anon_sym__Alignof] = ACTIONS(3180), + [anon_sym_offsetof] = ACTIONS(3180), + [anon_sym__Generic] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [anon_sym_asm] = ACTIONS(3180), + [anon_sym___asm__] = ACTIONS(3180), + [anon_sym___asm] = ACTIONS(3180), + [sym_number_literal] = ACTIONS(3182), + [anon_sym_L_SQUOTE] = ACTIONS(3182), + [anon_sym_u_SQUOTE] = ACTIONS(3182), + [anon_sym_U_SQUOTE] = ACTIONS(3182), + [anon_sym_u8_SQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_L_DQUOTE] = ACTIONS(3182), + [anon_sym_u_DQUOTE] = ACTIONS(3182), + [anon_sym_U_DQUOTE] = ACTIONS(3182), + [anon_sym_u8_DQUOTE] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [anon_sym_NULL] = ACTIONS(3180), + [anon_sym_nullptr] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_export] = ACTIONS(3180), + [anon_sym_module] = ACTIONS(3180), + [anon_sym_import] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_concept] = ACTIONS(3180), + [anon_sym_co_return] = ACTIONS(3180), + [anon_sym_co_yield] = ACTIONS(3180), + [anon_sym_catch] = ACTIONS(4100), + [anon_sym_R_DQUOTE] = ACTIONS(3182), + [anon_sym_LR_DQUOTE] = ACTIONS(3182), + [anon_sym_uR_DQUOTE] = ACTIONS(3182), + [anon_sym_UR_DQUOTE] = ACTIONS(3182), + [anon_sym_u8R_DQUOTE] = ACTIONS(3182), + [anon_sym_co_await] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_requires] = ACTIONS(3180), + [anon_sym_CARET_CARET] = ACTIONS(3182), + [anon_sym_LBRACK_COLON] = ACTIONS(3182), + [sym_this] = ACTIONS(3180), + }, + [STATE(567)] = { + [ts_builtin_sym_end] = ACTIONS(3626), + [sym_identifier] = ACTIONS(3624), + [aux_sym_preproc_include_token1] = ACTIONS(3624), + [aux_sym_preproc_def_token1] = ACTIONS(3624), + [aux_sym_preproc_if_token1] = ACTIONS(3624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3624), + [sym_preproc_directive] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3626), + [anon_sym_AMP_AMP] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym___extension__] = ACTIONS(3624), + [anon_sym_typedef] = ACTIONS(3624), + [anon_sym_virtual] = ACTIONS(3624), + [anon_sym_extern] = ACTIONS(3624), + [anon_sym___attribute__] = ACTIONS(3624), + [anon_sym___attribute] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3626), + [anon_sym___declspec] = ACTIONS(3624), + [anon_sym___based] = ACTIONS(3624), + [anon_sym___cdecl] = ACTIONS(3624), + [anon_sym___clrcall] = ACTIONS(3624), + [anon_sym___stdcall] = ACTIONS(3624), + [anon_sym___fastcall] = ACTIONS(3624), + [anon_sym___thiscall] = ACTIONS(3624), + [anon_sym___vectorcall] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_signed] = ACTIONS(3624), + [anon_sym_unsigned] = ACTIONS(3624), + [anon_sym_long] = ACTIONS(3624), + [anon_sym_short] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_register] = ACTIONS(3624), + [anon_sym_inline] = ACTIONS(3624), + [anon_sym___inline] = ACTIONS(3624), + [anon_sym___inline__] = ACTIONS(3624), + [anon_sym___forceinline] = ACTIONS(3624), + [anon_sym_thread_local] = ACTIONS(3624), + [anon_sym___thread] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_constexpr] = ACTIONS(3624), + [anon_sym_volatile] = ACTIONS(3624), + [anon_sym_restrict] = ACTIONS(3624), + [anon_sym___restrict__] = ACTIONS(3624), + [anon_sym__Atomic] = ACTIONS(3624), + [anon_sym__Noreturn] = ACTIONS(3624), + [anon_sym_noreturn] = ACTIONS(3624), + [anon_sym__Nonnull] = ACTIONS(3624), + [anon_sym_mutable] = ACTIONS(3624), + [anon_sym_constinit] = ACTIONS(3624), + [anon_sym_consteval] = ACTIONS(3624), + [anon_sym_alignas] = ACTIONS(3624), + [anon_sym__Alignas] = ACTIONS(3624), + [sym_primitive_type] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_struct] = ACTIONS(3624), + [anon_sym_union] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_case] = ACTIONS(3624), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_goto] = ACTIONS(3624), + [anon_sym___try] = ACTIONS(3624), + [anon_sym___leave] = ACTIONS(3624), + [anon_sym_not] = ACTIONS(3624), + [anon_sym_compl] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_sizeof] = ACTIONS(3624), + [anon_sym___alignof__] = ACTIONS(3624), + [anon_sym___alignof] = ACTIONS(3624), + [anon_sym__alignof] = ACTIONS(3624), + [anon_sym_alignof] = ACTIONS(3624), + [anon_sym__Alignof] = ACTIONS(3624), + [anon_sym_offsetof] = ACTIONS(3624), + [anon_sym__Generic] = ACTIONS(3624), + [anon_sym_typename] = ACTIONS(3624), + [anon_sym_asm] = ACTIONS(3624), + [anon_sym___asm__] = ACTIONS(3624), + [anon_sym___asm] = ACTIONS(3624), + [sym_number_literal] = ACTIONS(3626), + [anon_sym_L_SQUOTE] = ACTIONS(3626), + [anon_sym_u_SQUOTE] = ACTIONS(3626), + [anon_sym_U_SQUOTE] = ACTIONS(3626), + [anon_sym_u8_SQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_L_DQUOTE] = ACTIONS(3626), + [anon_sym_u_DQUOTE] = ACTIONS(3626), + [anon_sym_U_DQUOTE] = ACTIONS(3626), + [anon_sym_u8_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [anon_sym_NULL] = ACTIONS(3624), + [anon_sym_nullptr] = ACTIONS(3624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3624), + [anon_sym_decltype] = ACTIONS(3624), + [anon_sym_explicit] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_template] = ACTIONS(3624), + [anon_sym_operator] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_static_assert] = ACTIONS(3624), + [anon_sym_concept] = ACTIONS(3624), + [anon_sym_co_return] = ACTIONS(3624), + [anon_sym_co_yield] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_requires] = ACTIONS(3624), + [anon_sym_CARET_CARET] = ACTIONS(3626), + [anon_sym_LBRACK_COLON] = ACTIONS(3626), + [sym_this] = ACTIONS(3624), + }, + [STATE(568)] = { + [ts_builtin_sym_end] = ACTIONS(3524), + [sym_identifier] = ACTIONS(3522), + [aux_sym_preproc_include_token1] = ACTIONS(3522), + [aux_sym_preproc_def_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token1] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3522), + [sym_preproc_directive] = ACTIONS(3522), + [anon_sym_LPAREN2] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3524), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_virtual] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym___attribute__] = ACTIONS(3522), + [anon_sym___attribute] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_COLON_COLON] = ACTIONS(3524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3524), + [anon_sym___declspec] = ACTIONS(3522), + [anon_sym___based] = ACTIONS(3522), + [anon_sym___cdecl] = ACTIONS(3522), + [anon_sym___clrcall] = ACTIONS(3522), + [anon_sym___stdcall] = ACTIONS(3522), + [anon_sym___fastcall] = ACTIONS(3522), + [anon_sym___thiscall] = ACTIONS(3522), + [anon_sym___vectorcall] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_signed] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym___inline] = ACTIONS(3522), + [anon_sym___inline__] = ACTIONS(3522), + [anon_sym___forceinline] = ACTIONS(3522), + [anon_sym_thread_local] = ACTIONS(3522), + [anon_sym___thread] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_constexpr] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym___restrict__] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym__Noreturn] = ACTIONS(3522), + [anon_sym_noreturn] = ACTIONS(3522), + [anon_sym__Nonnull] = ACTIONS(3522), + [anon_sym_mutable] = ACTIONS(3522), + [anon_sym_constinit] = ACTIONS(3522), + [anon_sym_consteval] = ACTIONS(3522), + [anon_sym_alignas] = ACTIONS(3522), + [anon_sym__Alignas] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_goto] = ACTIONS(3522), + [anon_sym___try] = ACTIONS(3522), + [anon_sym___leave] = ACTIONS(3522), + [anon_sym_not] = ACTIONS(3522), + [anon_sym_compl] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_sizeof] = ACTIONS(3522), + [anon_sym___alignof__] = ACTIONS(3522), + [anon_sym___alignof] = ACTIONS(3522), + [anon_sym__alignof] = ACTIONS(3522), + [anon_sym_alignof] = ACTIONS(3522), + [anon_sym__Alignof] = ACTIONS(3522), + [anon_sym_offsetof] = ACTIONS(3522), + [anon_sym__Generic] = ACTIONS(3522), + [anon_sym_typename] = ACTIONS(3522), + [anon_sym_asm] = ACTIONS(3522), + [anon_sym___asm__] = ACTIONS(3522), + [anon_sym___asm] = ACTIONS(3522), + [sym_number_literal] = ACTIONS(3524), + [anon_sym_L_SQUOTE] = ACTIONS(3524), + [anon_sym_u_SQUOTE] = ACTIONS(3524), + [anon_sym_U_SQUOTE] = ACTIONS(3524), + [anon_sym_u8_SQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_L_DQUOTE] = ACTIONS(3524), + [anon_sym_u_DQUOTE] = ACTIONS(3524), + [anon_sym_U_DQUOTE] = ACTIONS(3524), + [anon_sym_u8_DQUOTE] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [anon_sym_NULL] = ACTIONS(3522), + [anon_sym_nullptr] = ACTIONS(3522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3522), + [anon_sym_decltype] = ACTIONS(3522), + [anon_sym_explicit] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_template] = ACTIONS(3522), + [anon_sym_operator] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_static_assert] = ACTIONS(3522), + [anon_sym_concept] = ACTIONS(3522), + [anon_sym_co_return] = ACTIONS(3522), + [anon_sym_co_yield] = ACTIONS(3522), + [anon_sym_R_DQUOTE] = ACTIONS(3524), + [anon_sym_LR_DQUOTE] = ACTIONS(3524), + [anon_sym_uR_DQUOTE] = ACTIONS(3524), + [anon_sym_UR_DQUOTE] = ACTIONS(3524), + [anon_sym_u8R_DQUOTE] = ACTIONS(3524), + [anon_sym_co_await] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_requires] = ACTIONS(3522), + [anon_sym_CARET_CARET] = ACTIONS(3524), + [anon_sym_LBRACK_COLON] = ACTIONS(3524), + [sym_this] = ACTIONS(3522), + }, + [STATE(569)] = { + [ts_builtin_sym_end] = ACTIONS(3544), + [sym_identifier] = ACTIONS(3542), + [aux_sym_preproc_include_token1] = ACTIONS(3542), + [aux_sym_preproc_def_token1] = ACTIONS(3542), + [aux_sym_preproc_if_token1] = ACTIONS(3542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3542), + [sym_preproc_directive] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym___extension__] = ACTIONS(3542), + [anon_sym_typedef] = ACTIONS(3542), + [anon_sym_virtual] = ACTIONS(3542), + [anon_sym_extern] = ACTIONS(3542), + [anon_sym___attribute__] = ACTIONS(3542), + [anon_sym___attribute] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3544), + [anon_sym___declspec] = ACTIONS(3542), + [anon_sym___based] = ACTIONS(3542), + [anon_sym___cdecl] = ACTIONS(3542), + [anon_sym___clrcall] = ACTIONS(3542), + [anon_sym___stdcall] = ACTIONS(3542), + [anon_sym___fastcall] = ACTIONS(3542), + [anon_sym___thiscall] = ACTIONS(3542), + [anon_sym___vectorcall] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_signed] = ACTIONS(3542), + [anon_sym_unsigned] = ACTIONS(3542), + [anon_sym_long] = ACTIONS(3542), + [anon_sym_short] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_register] = ACTIONS(3542), + [anon_sym_inline] = ACTIONS(3542), + [anon_sym___inline] = ACTIONS(3542), + [anon_sym___inline__] = ACTIONS(3542), + [anon_sym___forceinline] = ACTIONS(3542), + [anon_sym_thread_local] = ACTIONS(3542), + [anon_sym___thread] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_constexpr] = ACTIONS(3542), + [anon_sym_volatile] = ACTIONS(3542), + [anon_sym_restrict] = ACTIONS(3542), + [anon_sym___restrict__] = ACTIONS(3542), + [anon_sym__Atomic] = ACTIONS(3542), + [anon_sym__Noreturn] = ACTIONS(3542), + [anon_sym_noreturn] = ACTIONS(3542), + [anon_sym__Nonnull] = ACTIONS(3542), + [anon_sym_mutable] = ACTIONS(3542), + [anon_sym_constinit] = ACTIONS(3542), + [anon_sym_consteval] = ACTIONS(3542), + [anon_sym_alignas] = ACTIONS(3542), + [anon_sym__Alignas] = ACTIONS(3542), + [sym_primitive_type] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_else] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_case] = ACTIONS(3542), + [anon_sym_default] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_goto] = ACTIONS(3542), + [anon_sym___try] = ACTIONS(3542), + [anon_sym___leave] = ACTIONS(3542), + [anon_sym_not] = ACTIONS(3542), + [anon_sym_compl] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_sizeof] = ACTIONS(3542), + [anon_sym___alignof__] = ACTIONS(3542), + [anon_sym___alignof] = ACTIONS(3542), + [anon_sym__alignof] = ACTIONS(3542), + [anon_sym_alignof] = ACTIONS(3542), + [anon_sym__Alignof] = ACTIONS(3542), + [anon_sym_offsetof] = ACTIONS(3542), + [anon_sym__Generic] = ACTIONS(3542), + [anon_sym_typename] = ACTIONS(3542), + [anon_sym_asm] = ACTIONS(3542), + [anon_sym___asm__] = ACTIONS(3542), + [anon_sym___asm] = ACTIONS(3542), + [sym_number_literal] = ACTIONS(3544), + [anon_sym_L_SQUOTE] = ACTIONS(3544), + [anon_sym_u_SQUOTE] = ACTIONS(3544), + [anon_sym_U_SQUOTE] = ACTIONS(3544), + [anon_sym_u8_SQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_L_DQUOTE] = ACTIONS(3544), + [anon_sym_u_DQUOTE] = ACTIONS(3544), + [anon_sym_U_DQUOTE] = ACTIONS(3544), + [anon_sym_u8_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [anon_sym_NULL] = ACTIONS(3542), + [anon_sym_nullptr] = ACTIONS(3542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3542), + [anon_sym_decltype] = ACTIONS(3542), + [anon_sym_explicit] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_template] = ACTIONS(3542), + [anon_sym_operator] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_static_assert] = ACTIONS(3542), + [anon_sym_concept] = ACTIONS(3542), + [anon_sym_co_return] = ACTIONS(3542), + [anon_sym_co_yield] = ACTIONS(3542), + [anon_sym_R_DQUOTE] = ACTIONS(3544), + [anon_sym_LR_DQUOTE] = ACTIONS(3544), + [anon_sym_uR_DQUOTE] = ACTIONS(3544), + [anon_sym_UR_DQUOTE] = ACTIONS(3544), + [anon_sym_u8R_DQUOTE] = ACTIONS(3544), + [anon_sym_co_await] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_requires] = ACTIONS(3542), + [anon_sym_CARET_CARET] = ACTIONS(3544), + [anon_sym_LBRACK_COLON] = ACTIONS(3544), + [sym_this] = ACTIONS(3542), + }, + [STATE(570)] = { + [ts_builtin_sym_end] = ACTIONS(3560), + [sym_identifier] = ACTIONS(3558), + [aux_sym_preproc_include_token1] = ACTIONS(3558), + [aux_sym_preproc_def_token1] = ACTIONS(3558), + [aux_sym_preproc_if_token1] = ACTIONS(3558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3558), + [sym_preproc_directive] = ACTIONS(3558), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(3560), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym___extension__] = ACTIONS(3558), + [anon_sym_typedef] = ACTIONS(3558), + [anon_sym_virtual] = ACTIONS(3558), + [anon_sym_extern] = ACTIONS(3558), + [anon_sym___attribute__] = ACTIONS(3558), + [anon_sym___attribute] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_COLON_COLON] = ACTIONS(3560), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3560), + [anon_sym___declspec] = ACTIONS(3558), + [anon_sym___based] = ACTIONS(3558), + [anon_sym___cdecl] = ACTIONS(3558), + [anon_sym___clrcall] = ACTIONS(3558), + [anon_sym___stdcall] = ACTIONS(3558), + [anon_sym___fastcall] = ACTIONS(3558), + [anon_sym___thiscall] = ACTIONS(3558), + [anon_sym___vectorcall] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_signed] = ACTIONS(3558), + [anon_sym_unsigned] = ACTIONS(3558), + [anon_sym_long] = ACTIONS(3558), + [anon_sym_short] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_register] = ACTIONS(3558), + [anon_sym_inline] = ACTIONS(3558), + [anon_sym___inline] = ACTIONS(3558), + [anon_sym___inline__] = ACTIONS(3558), + [anon_sym___forceinline] = ACTIONS(3558), + [anon_sym_thread_local] = ACTIONS(3558), + [anon_sym___thread] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_constexpr] = ACTIONS(3558), + [anon_sym_volatile] = ACTIONS(3558), + [anon_sym_restrict] = ACTIONS(3558), + [anon_sym___restrict__] = ACTIONS(3558), + [anon_sym__Atomic] = ACTIONS(3558), + [anon_sym__Noreturn] = ACTIONS(3558), + [anon_sym_noreturn] = ACTIONS(3558), + [anon_sym__Nonnull] = ACTIONS(3558), + [anon_sym_mutable] = ACTIONS(3558), + [anon_sym_constinit] = ACTIONS(3558), + [anon_sym_consteval] = ACTIONS(3558), + [anon_sym_alignas] = ACTIONS(3558), + [anon_sym__Alignas] = ACTIONS(3558), + [sym_primitive_type] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_struct] = ACTIONS(3558), + [anon_sym_union] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_case] = ACTIONS(3558), + [anon_sym_default] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_goto] = ACTIONS(3558), + [anon_sym___try] = ACTIONS(3558), + [anon_sym___leave] = ACTIONS(3558), + [anon_sym_not] = ACTIONS(3558), + [anon_sym_compl] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_sizeof] = ACTIONS(3558), + [anon_sym___alignof__] = ACTIONS(3558), + [anon_sym___alignof] = ACTIONS(3558), + [anon_sym__alignof] = ACTIONS(3558), + [anon_sym_alignof] = ACTIONS(3558), + [anon_sym__Alignof] = ACTIONS(3558), + [anon_sym_offsetof] = ACTIONS(3558), + [anon_sym__Generic] = ACTIONS(3558), + [anon_sym_typename] = ACTIONS(3558), + [anon_sym_asm] = ACTIONS(3558), + [anon_sym___asm__] = ACTIONS(3558), + [anon_sym___asm] = ACTIONS(3558), + [sym_number_literal] = ACTIONS(3560), + [anon_sym_L_SQUOTE] = ACTIONS(3560), + [anon_sym_u_SQUOTE] = ACTIONS(3560), + [anon_sym_U_SQUOTE] = ACTIONS(3560), + [anon_sym_u8_SQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_L_DQUOTE] = ACTIONS(3560), + [anon_sym_u_DQUOTE] = ACTIONS(3560), + [anon_sym_U_DQUOTE] = ACTIONS(3560), + [anon_sym_u8_DQUOTE] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [anon_sym_NULL] = ACTIONS(3558), + [anon_sym_nullptr] = ACTIONS(3558), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3558), + [anon_sym_decltype] = ACTIONS(3558), + [anon_sym_explicit] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_template] = ACTIONS(3558), + [anon_sym_operator] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_static_assert] = ACTIONS(3558), + [anon_sym_concept] = ACTIONS(3558), + [anon_sym_co_return] = ACTIONS(3558), + [anon_sym_co_yield] = ACTIONS(3558), + [anon_sym_R_DQUOTE] = ACTIONS(3560), + [anon_sym_LR_DQUOTE] = ACTIONS(3560), + [anon_sym_uR_DQUOTE] = ACTIONS(3560), + [anon_sym_UR_DQUOTE] = ACTIONS(3560), + [anon_sym_u8R_DQUOTE] = ACTIONS(3560), + [anon_sym_co_await] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_requires] = ACTIONS(3558), + [anon_sym_CARET_CARET] = ACTIONS(3560), + [anon_sym_LBRACK_COLON] = ACTIONS(3560), + [sym_this] = ACTIONS(3558), + }, + [STATE(571)] = { + [sym_identifier] = ACTIONS(3592), + [aux_sym_preproc_include_token1] = ACTIONS(3592), + [aux_sym_preproc_def_token1] = ACTIONS(3592), + [aux_sym_preproc_if_token1] = ACTIONS(3592), + [aux_sym_preproc_if_token2] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), + [sym_preproc_directive] = ACTIONS(3592), + [anon_sym_LPAREN2] = ACTIONS(3594), + [anon_sym_BANG] = ACTIONS(3594), + [anon_sym_TILDE] = ACTIONS(3594), + [anon_sym_DASH] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3594), + [anon_sym_AMP_AMP] = ACTIONS(3594), + [anon_sym_AMP] = ACTIONS(3592), + [anon_sym_SEMI] = ACTIONS(3594), + [anon_sym___extension__] = ACTIONS(3592), + [anon_sym_typedef] = ACTIONS(3592), + [anon_sym_virtual] = ACTIONS(3592), + [anon_sym_extern] = ACTIONS(3592), + [anon_sym___attribute__] = ACTIONS(3592), + [anon_sym___attribute] = ACTIONS(3592), + [anon_sym_using] = ACTIONS(3592), + [anon_sym_COLON_COLON] = ACTIONS(3594), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), + [anon_sym___declspec] = ACTIONS(3592), + [anon_sym___based] = ACTIONS(3592), + [anon_sym___cdecl] = ACTIONS(3592), + [anon_sym___clrcall] = ACTIONS(3592), + [anon_sym___stdcall] = ACTIONS(3592), + [anon_sym___fastcall] = ACTIONS(3592), + [anon_sym___thiscall] = ACTIONS(3592), + [anon_sym___vectorcall] = ACTIONS(3592), + [anon_sym_LBRACE] = ACTIONS(3594), + [anon_sym_signed] = ACTIONS(3592), + [anon_sym_unsigned] = ACTIONS(3592), + [anon_sym_long] = ACTIONS(3592), + [anon_sym_short] = ACTIONS(3592), + [anon_sym_LBRACK] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3592), + [anon_sym_register] = ACTIONS(3592), + [anon_sym_inline] = ACTIONS(3592), + [anon_sym___inline] = ACTIONS(3592), + [anon_sym___inline__] = ACTIONS(3592), + [anon_sym___forceinline] = ACTIONS(3592), + [anon_sym_thread_local] = ACTIONS(3592), + [anon_sym___thread] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_constexpr] = ACTIONS(3592), + [anon_sym_volatile] = ACTIONS(3592), + [anon_sym_restrict] = ACTIONS(3592), + [anon_sym___restrict__] = ACTIONS(3592), + [anon_sym__Atomic] = ACTIONS(3592), + [anon_sym__Noreturn] = ACTIONS(3592), + [anon_sym_noreturn] = ACTIONS(3592), + [anon_sym__Nonnull] = ACTIONS(3592), + [anon_sym_mutable] = ACTIONS(3592), + [anon_sym_constinit] = ACTIONS(3592), + [anon_sym_consteval] = ACTIONS(3592), + [anon_sym_alignas] = ACTIONS(3592), + [anon_sym__Alignas] = ACTIONS(3592), + [sym_primitive_type] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [anon_sym_class] = ACTIONS(3592), + [anon_sym_struct] = ACTIONS(3592), + [anon_sym_union] = ACTIONS(3592), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_else] = ACTIONS(3592), + [anon_sym_switch] = ACTIONS(3592), + [anon_sym_case] = ACTIONS(3592), + [anon_sym_default] = ACTIONS(3592), + [anon_sym_while] = ACTIONS(3592), + [anon_sym_do] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_goto] = ACTIONS(3592), + [anon_sym___try] = ACTIONS(3592), + [anon_sym___leave] = ACTIONS(3592), + [anon_sym_not] = ACTIONS(3592), + [anon_sym_compl] = ACTIONS(3592), + [anon_sym_DASH_DASH] = ACTIONS(3594), + [anon_sym_PLUS_PLUS] = ACTIONS(3594), + [anon_sym_sizeof] = ACTIONS(3592), + [anon_sym___alignof__] = ACTIONS(3592), + [anon_sym___alignof] = ACTIONS(3592), + [anon_sym__alignof] = ACTIONS(3592), + [anon_sym_alignof] = ACTIONS(3592), + [anon_sym__Alignof] = ACTIONS(3592), + [anon_sym_offsetof] = ACTIONS(3592), + [anon_sym__Generic] = ACTIONS(3592), + [anon_sym_typename] = ACTIONS(3592), + [anon_sym_asm] = ACTIONS(3592), + [anon_sym___asm__] = ACTIONS(3592), + [anon_sym___asm] = ACTIONS(3592), + [sym_number_literal] = ACTIONS(3594), + [anon_sym_L_SQUOTE] = ACTIONS(3594), + [anon_sym_u_SQUOTE] = ACTIONS(3594), + [anon_sym_U_SQUOTE] = ACTIONS(3594), + [anon_sym_u8_SQUOTE] = ACTIONS(3594), + [anon_sym_SQUOTE] = ACTIONS(3594), + [anon_sym_L_DQUOTE] = ACTIONS(3594), + [anon_sym_u_DQUOTE] = ACTIONS(3594), + [anon_sym_U_DQUOTE] = ACTIONS(3594), + [anon_sym_u8_DQUOTE] = ACTIONS(3594), + [anon_sym_DQUOTE] = ACTIONS(3594), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [anon_sym_NULL] = ACTIONS(3592), + [anon_sym_nullptr] = ACTIONS(3592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3592), + [anon_sym_decltype] = ACTIONS(3592), + [anon_sym_explicit] = ACTIONS(3592), + [anon_sym_export] = ACTIONS(3592), + [anon_sym_module] = ACTIONS(3592), + [anon_sym_import] = ACTIONS(3592), + [anon_sym_template] = ACTIONS(3592), + [anon_sym_operator] = ACTIONS(3592), + [anon_sym_try] = ACTIONS(3592), + [anon_sym_delete] = ACTIONS(3592), + [anon_sym_throw] = ACTIONS(3592), + [anon_sym_namespace] = ACTIONS(3592), + [anon_sym_static_assert] = ACTIONS(3592), + [anon_sym_concept] = ACTIONS(3592), + [anon_sym_co_return] = ACTIONS(3592), + [anon_sym_co_yield] = ACTIONS(3592), + [anon_sym_R_DQUOTE] = ACTIONS(3594), + [anon_sym_LR_DQUOTE] = ACTIONS(3594), + [anon_sym_uR_DQUOTE] = ACTIONS(3594), + [anon_sym_UR_DQUOTE] = ACTIONS(3594), + [anon_sym_u8R_DQUOTE] = ACTIONS(3594), + [anon_sym_co_await] = ACTIONS(3592), + [anon_sym_new] = ACTIONS(3592), + [anon_sym_requires] = ACTIONS(3592), + [anon_sym_CARET_CARET] = ACTIONS(3594), + [anon_sym_LBRACK_COLON] = ACTIONS(3594), + [sym_this] = ACTIONS(3592), + }, + [STATE(572)] = { + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3530), + [aux_sym_preproc_include_token1] = ACTIONS(3530), + [aux_sym_preproc_def_token1] = ACTIONS(3530), + [aux_sym_preproc_if_token1] = ACTIONS(3530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3530), + [sym_preproc_directive] = ACTIONS(3530), + [anon_sym_LPAREN2] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_STAR] = ACTIONS(3532), + [anon_sym_AMP_AMP] = ACTIONS(3532), + [anon_sym_AMP] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym___extension__] = ACTIONS(3530), + [anon_sym_typedef] = ACTIONS(3530), + [anon_sym_virtual] = ACTIONS(3530), + [anon_sym_extern] = ACTIONS(3530), + [anon_sym___attribute__] = ACTIONS(3530), + [anon_sym___attribute] = ACTIONS(3530), + [anon_sym_using] = ACTIONS(3530), + [anon_sym_COLON_COLON] = ACTIONS(3532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3532), + [anon_sym___declspec] = ACTIONS(3530), + [anon_sym___based] = ACTIONS(3530), + [anon_sym___cdecl] = ACTIONS(3530), + [anon_sym___clrcall] = ACTIONS(3530), + [anon_sym___stdcall] = ACTIONS(3530), + [anon_sym___fastcall] = ACTIONS(3530), + [anon_sym___thiscall] = ACTIONS(3530), + [anon_sym___vectorcall] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_signed] = ACTIONS(3530), + [anon_sym_unsigned] = ACTIONS(3530), + [anon_sym_long] = ACTIONS(3530), + [anon_sym_short] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_register] = ACTIONS(3530), + [anon_sym_inline] = ACTIONS(3530), + [anon_sym___inline] = ACTIONS(3530), + [anon_sym___inline__] = ACTIONS(3530), + [anon_sym___forceinline] = ACTIONS(3530), + [anon_sym_thread_local] = ACTIONS(3530), + [anon_sym___thread] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_constexpr] = ACTIONS(3530), + [anon_sym_volatile] = ACTIONS(3530), + [anon_sym_restrict] = ACTIONS(3530), + [anon_sym___restrict__] = ACTIONS(3530), + [anon_sym__Atomic] = ACTIONS(3530), + [anon_sym__Noreturn] = ACTIONS(3530), + [anon_sym_noreturn] = ACTIONS(3530), + [anon_sym__Nonnull] = ACTIONS(3530), + [anon_sym_mutable] = ACTIONS(3530), + [anon_sym_constinit] = ACTIONS(3530), + [anon_sym_consteval] = ACTIONS(3530), + [anon_sym_alignas] = ACTIONS(3530), + [anon_sym__Alignas] = ACTIONS(3530), + [sym_primitive_type] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_struct] = ACTIONS(3530), + [anon_sym_union] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_case] = ACTIONS(3530), + [anon_sym_default] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_goto] = ACTIONS(3530), + [anon_sym___try] = ACTIONS(3530), + [anon_sym___leave] = ACTIONS(3530), + [anon_sym_not] = ACTIONS(3530), + [anon_sym_compl] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_sizeof] = ACTIONS(3530), + [anon_sym___alignof__] = ACTIONS(3530), + [anon_sym___alignof] = ACTIONS(3530), + [anon_sym__alignof] = ACTIONS(3530), + [anon_sym_alignof] = ACTIONS(3530), + [anon_sym__Alignof] = ACTIONS(3530), + [anon_sym_offsetof] = ACTIONS(3530), + [anon_sym__Generic] = ACTIONS(3530), + [anon_sym_typename] = ACTIONS(3530), + [anon_sym_asm] = ACTIONS(3530), + [anon_sym___asm__] = ACTIONS(3530), + [anon_sym___asm] = ACTIONS(3530), + [sym_number_literal] = ACTIONS(3532), + [anon_sym_L_SQUOTE] = ACTIONS(3532), + [anon_sym_u_SQUOTE] = ACTIONS(3532), + [anon_sym_U_SQUOTE] = ACTIONS(3532), + [anon_sym_u8_SQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_L_DQUOTE] = ACTIONS(3532), + [anon_sym_u_DQUOTE] = ACTIONS(3532), + [anon_sym_U_DQUOTE] = ACTIONS(3532), + [anon_sym_u8_DQUOTE] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [anon_sym_NULL] = ACTIONS(3530), + [anon_sym_nullptr] = ACTIONS(3530), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3530), + [anon_sym_decltype] = ACTIONS(3530), + [anon_sym_explicit] = ACTIONS(3530), + [anon_sym_export] = ACTIONS(3530), + [anon_sym_module] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_template] = ACTIONS(3530), + [anon_sym_operator] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3530), + [anon_sym_static_assert] = ACTIONS(3530), + [anon_sym_concept] = ACTIONS(3530), + [anon_sym_co_return] = ACTIONS(3530), + [anon_sym_co_yield] = ACTIONS(3530), + [anon_sym_R_DQUOTE] = ACTIONS(3532), + [anon_sym_LR_DQUOTE] = ACTIONS(3532), + [anon_sym_uR_DQUOTE] = ACTIONS(3532), + [anon_sym_UR_DQUOTE] = ACTIONS(3532), + [anon_sym_u8R_DQUOTE] = ACTIONS(3532), + [anon_sym_co_await] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_requires] = ACTIONS(3530), + [anon_sym_CARET_CARET] = ACTIONS(3532), + [anon_sym_LBRACK_COLON] = ACTIONS(3532), + [sym_this] = ACTIONS(3530), + }, + [STATE(573)] = { + [ts_builtin_sym_end] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_include_token1] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym___cdecl] = ACTIONS(3534), + [anon_sym___clrcall] = ACTIONS(3534), + [anon_sym___stdcall] = ACTIONS(3534), + [anon_sym___fastcall] = ACTIONS(3534), + [anon_sym___thiscall] = ACTIONS(3534), + [anon_sym___vectorcall] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_else] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_goto] = ACTIONS(3534), + [anon_sym___try] = ACTIONS(3534), + [anon_sym___leave] = ACTIONS(3534), + [anon_sym_not] = ACTIONS(3534), + [anon_sym_compl] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3534), + [anon_sym___alignof__] = ACTIONS(3534), + [anon_sym___alignof] = ACTIONS(3534), + [anon_sym__alignof] = ACTIONS(3534), + [anon_sym_alignof] = ACTIONS(3534), + [anon_sym__Alignof] = ACTIONS(3534), + [anon_sym_offsetof] = ACTIONS(3534), + [anon_sym__Generic] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [anon_sym_asm] = ACTIONS(3534), + [anon_sym___asm__] = ACTIONS(3534), + [anon_sym___asm] = ACTIONS(3534), + [sym_number_literal] = ACTIONS(3536), + [anon_sym_L_SQUOTE] = ACTIONS(3536), + [anon_sym_u_SQUOTE] = ACTIONS(3536), + [anon_sym_U_SQUOTE] = ACTIONS(3536), + [anon_sym_u8_SQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_L_DQUOTE] = ACTIONS(3536), + [anon_sym_u_DQUOTE] = ACTIONS(3536), + [anon_sym_U_DQUOTE] = ACTIONS(3536), + [anon_sym_u8_DQUOTE] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [anon_sym_NULL] = ACTIONS(3534), + [anon_sym_nullptr] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_concept] = ACTIONS(3534), + [anon_sym_co_return] = ACTIONS(3534), + [anon_sym_co_yield] = ACTIONS(3534), + [anon_sym_R_DQUOTE] = ACTIONS(3536), + [anon_sym_LR_DQUOTE] = ACTIONS(3536), + [anon_sym_uR_DQUOTE] = ACTIONS(3536), + [anon_sym_UR_DQUOTE] = ACTIONS(3536), + [anon_sym_u8R_DQUOTE] = ACTIONS(3536), + [anon_sym_co_await] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_requires] = ACTIONS(3534), + [anon_sym_CARET_CARET] = ACTIONS(3536), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + [sym_this] = ACTIONS(3534), + }, + [STATE(574)] = { + [ts_builtin_sym_end] = ACTIONS(3630), + [sym_identifier] = ACTIONS(3628), + [aux_sym_preproc_include_token1] = ACTIONS(3628), + [aux_sym_preproc_def_token1] = ACTIONS(3628), + [aux_sym_preproc_if_token1] = ACTIONS(3628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3628), + [sym_preproc_directive] = ACTIONS(3628), + [anon_sym_LPAREN2] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_AMP] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym___extension__] = ACTIONS(3628), + [anon_sym_typedef] = ACTIONS(3628), + [anon_sym_virtual] = ACTIONS(3628), + [anon_sym_extern] = ACTIONS(3628), + [anon_sym___attribute__] = ACTIONS(3628), + [anon_sym___attribute] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_COLON_COLON] = ACTIONS(3630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3630), + [anon_sym___declspec] = ACTIONS(3628), + [anon_sym___based] = ACTIONS(3628), + [anon_sym___cdecl] = ACTIONS(3628), + [anon_sym___clrcall] = ACTIONS(3628), + [anon_sym___stdcall] = ACTIONS(3628), + [anon_sym___fastcall] = ACTIONS(3628), + [anon_sym___thiscall] = ACTIONS(3628), + [anon_sym___vectorcall] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3628), + [anon_sym_unsigned] = ACTIONS(3628), + [anon_sym_long] = ACTIONS(3628), + [anon_sym_short] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_register] = ACTIONS(3628), + [anon_sym_inline] = ACTIONS(3628), + [anon_sym___inline] = ACTIONS(3628), + [anon_sym___inline__] = ACTIONS(3628), + [anon_sym___forceinline] = ACTIONS(3628), + [anon_sym_thread_local] = ACTIONS(3628), + [anon_sym___thread] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_constexpr] = ACTIONS(3628), + [anon_sym_volatile] = ACTIONS(3628), + [anon_sym_restrict] = ACTIONS(3628), + [anon_sym___restrict__] = ACTIONS(3628), + [anon_sym__Atomic] = ACTIONS(3628), + [anon_sym__Noreturn] = ACTIONS(3628), + [anon_sym_noreturn] = ACTIONS(3628), + [anon_sym__Nonnull] = ACTIONS(3628), + [anon_sym_mutable] = ACTIONS(3628), + [anon_sym_constinit] = ACTIONS(3628), + [anon_sym_consteval] = ACTIONS(3628), + [anon_sym_alignas] = ACTIONS(3628), + [anon_sym__Alignas] = ACTIONS(3628), + [sym_primitive_type] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_struct] = ACTIONS(3628), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_else] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_case] = ACTIONS(3628), + [anon_sym_default] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_goto] = ACTIONS(3628), + [anon_sym___try] = ACTIONS(3628), + [anon_sym___leave] = ACTIONS(3628), + [anon_sym_not] = ACTIONS(3628), + [anon_sym_compl] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_sizeof] = ACTIONS(3628), + [anon_sym___alignof__] = ACTIONS(3628), + [anon_sym___alignof] = ACTIONS(3628), + [anon_sym__alignof] = ACTIONS(3628), + [anon_sym_alignof] = ACTIONS(3628), + [anon_sym__Alignof] = ACTIONS(3628), + [anon_sym_offsetof] = ACTIONS(3628), + [anon_sym__Generic] = ACTIONS(3628), + [anon_sym_typename] = ACTIONS(3628), + [anon_sym_asm] = ACTIONS(3628), + [anon_sym___asm__] = ACTIONS(3628), + [anon_sym___asm] = ACTIONS(3628), + [sym_number_literal] = ACTIONS(3630), + [anon_sym_L_SQUOTE] = ACTIONS(3630), + [anon_sym_u_SQUOTE] = ACTIONS(3630), + [anon_sym_U_SQUOTE] = ACTIONS(3630), + [anon_sym_u8_SQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_L_DQUOTE] = ACTIONS(3630), + [anon_sym_u_DQUOTE] = ACTIONS(3630), + [anon_sym_U_DQUOTE] = ACTIONS(3630), + [anon_sym_u8_DQUOTE] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [anon_sym_NULL] = ACTIONS(3628), + [anon_sym_nullptr] = ACTIONS(3628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3628), + [anon_sym_decltype] = ACTIONS(3628), + [anon_sym_explicit] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_template] = ACTIONS(3628), + [anon_sym_operator] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_static_assert] = ACTIONS(3628), + [anon_sym_concept] = ACTIONS(3628), + [anon_sym_co_return] = ACTIONS(3628), + [anon_sym_co_yield] = ACTIONS(3628), + [anon_sym_R_DQUOTE] = ACTIONS(3630), + [anon_sym_LR_DQUOTE] = ACTIONS(3630), + [anon_sym_uR_DQUOTE] = ACTIONS(3630), + [anon_sym_UR_DQUOTE] = ACTIONS(3630), + [anon_sym_u8R_DQUOTE] = ACTIONS(3630), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_requires] = ACTIONS(3628), + [anon_sym_CARET_CARET] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3630), + [sym_this] = ACTIONS(3628), + }, + [STATE(575)] = { + [ts_builtin_sym_end] = ACTIONS(3666), + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), + }, + [STATE(576)] = { + [sym_catch_clause] = STATE(455), + [aux_sym_constructor_try_statement_repeat1] = STATE(455), + [ts_builtin_sym_end] = ACTIONS(3178), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_include_token1] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym___attribute] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym___cdecl] = ACTIONS(3176), + [anon_sym___clrcall] = ACTIONS(3176), + [anon_sym___stdcall] = ACTIONS(3176), + [anon_sym___fastcall] = ACTIONS(3176), + [anon_sym___thiscall] = ACTIONS(3176), + [anon_sym___vectorcall] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym__Nonnull] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym__Alignas] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_goto] = ACTIONS(3176), + [anon_sym_not] = ACTIONS(3176), + [anon_sym_compl] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_sizeof] = ACTIONS(3176), + [anon_sym___alignof__] = ACTIONS(3176), + [anon_sym___alignof] = ACTIONS(3176), + [anon_sym__alignof] = ACTIONS(3176), + [anon_sym_alignof] = ACTIONS(3176), + [anon_sym__Alignof] = ACTIONS(3176), + [anon_sym_offsetof] = ACTIONS(3176), + [anon_sym__Generic] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [anon_sym_asm] = ACTIONS(3176), + [anon_sym___asm__] = ACTIONS(3176), + [anon_sym___asm] = ACTIONS(3176), + [sym_number_literal] = ACTIONS(3178), + [anon_sym_L_SQUOTE] = ACTIONS(3178), + [anon_sym_u_SQUOTE] = ACTIONS(3178), + [anon_sym_U_SQUOTE] = ACTIONS(3178), + [anon_sym_u8_SQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [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(3176), + [sym_false] = ACTIONS(3176), + [anon_sym_NULL] = ACTIONS(3176), + [anon_sym_nullptr] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_concept] = ACTIONS(3176), + [anon_sym_co_return] = ACTIONS(3176), + [anon_sym_co_yield] = ACTIONS(3176), + [anon_sym_catch] = ACTIONS(4100), + [anon_sym_R_DQUOTE] = ACTIONS(3178), + [anon_sym_LR_DQUOTE] = ACTIONS(3178), + [anon_sym_uR_DQUOTE] = ACTIONS(3178), + [anon_sym_UR_DQUOTE] = ACTIONS(3178), + [anon_sym_u8R_DQUOTE] = ACTIONS(3178), + [anon_sym_co_await] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_requires] = ACTIONS(3176), + [anon_sym_CARET_CARET] = ACTIONS(3178), + [anon_sym_LBRACK_COLON] = ACTIONS(3178), + [sym_this] = ACTIONS(3176), + }, + [STATE(577)] = { + [sym_identifier] = ACTIONS(3558), + [aux_sym_preproc_include_token1] = ACTIONS(3558), + [aux_sym_preproc_def_token1] = ACTIONS(3558), + [aux_sym_preproc_if_token1] = ACTIONS(3558), + [aux_sym_preproc_if_token2] = ACTIONS(3558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3558), + [sym_preproc_directive] = ACTIONS(3558), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(3560), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym___extension__] = ACTIONS(3558), + [anon_sym_typedef] = ACTIONS(3558), + [anon_sym_virtual] = ACTIONS(3558), + [anon_sym_extern] = ACTIONS(3558), + [anon_sym___attribute__] = ACTIONS(3558), + [anon_sym___attribute] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_COLON_COLON] = ACTIONS(3560), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3560), + [anon_sym___declspec] = ACTIONS(3558), + [anon_sym___based] = ACTIONS(3558), + [anon_sym___cdecl] = ACTIONS(3558), + [anon_sym___clrcall] = ACTIONS(3558), + [anon_sym___stdcall] = ACTIONS(3558), + [anon_sym___fastcall] = ACTIONS(3558), + [anon_sym___thiscall] = ACTIONS(3558), + [anon_sym___vectorcall] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_signed] = ACTIONS(3558), + [anon_sym_unsigned] = ACTIONS(3558), + [anon_sym_long] = ACTIONS(3558), + [anon_sym_short] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_register] = ACTIONS(3558), + [anon_sym_inline] = ACTIONS(3558), + [anon_sym___inline] = ACTIONS(3558), + [anon_sym___inline__] = ACTIONS(3558), + [anon_sym___forceinline] = ACTIONS(3558), + [anon_sym_thread_local] = ACTIONS(3558), + [anon_sym___thread] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_constexpr] = ACTIONS(3558), + [anon_sym_volatile] = ACTIONS(3558), + [anon_sym_restrict] = ACTIONS(3558), + [anon_sym___restrict__] = ACTIONS(3558), + [anon_sym__Atomic] = ACTIONS(3558), + [anon_sym__Noreturn] = ACTIONS(3558), + [anon_sym_noreturn] = ACTIONS(3558), + [anon_sym__Nonnull] = ACTIONS(3558), + [anon_sym_mutable] = ACTIONS(3558), + [anon_sym_constinit] = ACTIONS(3558), + [anon_sym_consteval] = ACTIONS(3558), + [anon_sym_alignas] = ACTIONS(3558), + [anon_sym__Alignas] = ACTIONS(3558), + [sym_primitive_type] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_struct] = ACTIONS(3558), + [anon_sym_union] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_case] = ACTIONS(3558), + [anon_sym_default] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_goto] = ACTIONS(3558), + [anon_sym___try] = ACTIONS(3558), + [anon_sym___leave] = ACTIONS(3558), + [anon_sym_not] = ACTIONS(3558), + [anon_sym_compl] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_sizeof] = ACTIONS(3558), + [anon_sym___alignof__] = ACTIONS(3558), + [anon_sym___alignof] = ACTIONS(3558), + [anon_sym__alignof] = ACTIONS(3558), + [anon_sym_alignof] = ACTIONS(3558), + [anon_sym__Alignof] = ACTIONS(3558), + [anon_sym_offsetof] = ACTIONS(3558), + [anon_sym__Generic] = ACTIONS(3558), + [anon_sym_typename] = ACTIONS(3558), + [anon_sym_asm] = ACTIONS(3558), + [anon_sym___asm__] = ACTIONS(3558), + [anon_sym___asm] = ACTIONS(3558), + [sym_number_literal] = ACTIONS(3560), + [anon_sym_L_SQUOTE] = ACTIONS(3560), + [anon_sym_u_SQUOTE] = ACTIONS(3560), + [anon_sym_U_SQUOTE] = ACTIONS(3560), + [anon_sym_u8_SQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_L_DQUOTE] = ACTIONS(3560), + [anon_sym_u_DQUOTE] = ACTIONS(3560), + [anon_sym_U_DQUOTE] = ACTIONS(3560), + [anon_sym_u8_DQUOTE] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [anon_sym_NULL] = ACTIONS(3558), + [anon_sym_nullptr] = ACTIONS(3558), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3558), + [anon_sym_decltype] = ACTIONS(3558), + [anon_sym_explicit] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_module] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_template] = ACTIONS(3558), + [anon_sym_operator] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_static_assert] = ACTIONS(3558), + [anon_sym_concept] = ACTIONS(3558), + [anon_sym_co_return] = ACTIONS(3558), + [anon_sym_co_yield] = ACTIONS(3558), + [anon_sym_R_DQUOTE] = ACTIONS(3560), + [anon_sym_LR_DQUOTE] = ACTIONS(3560), + [anon_sym_uR_DQUOTE] = ACTIONS(3560), + [anon_sym_UR_DQUOTE] = ACTIONS(3560), + [anon_sym_u8R_DQUOTE] = ACTIONS(3560), + [anon_sym_co_await] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_requires] = ACTIONS(3558), + [anon_sym_CARET_CARET] = ACTIONS(3560), + [anon_sym_LBRACK_COLON] = ACTIONS(3560), + [sym_this] = ACTIONS(3558), + }, + [STATE(578)] = { [sym_identifier] = ACTIONS(3678), [aux_sym_preproc_include_token1] = ACTIONS(3678), [aux_sym_preproc_def_token1] = ACTIONS(3678), [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token2] = ACTIONS(3678), [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), [sym_preproc_directive] = ACTIONS(3678), @@ -139805,1853 +142790,1143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3680), [sym_this] = ACTIONS(3678), }, - [STATE(558)] = { - [sym_identifier] = ACTIONS(3608), - [aux_sym_preproc_include_token1] = ACTIONS(3608), - [aux_sym_preproc_def_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token2] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), - [sym_preproc_directive] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym___based] = ACTIONS(3608), - [anon_sym___cdecl] = ACTIONS(3608), - [anon_sym___clrcall] = ACTIONS(3608), - [anon_sym___stdcall] = ACTIONS(3608), - [anon_sym___fastcall] = ACTIONS(3608), - [anon_sym___thiscall] = ACTIONS(3608), - [anon_sym___vectorcall] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_else] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_case] = ACTIONS(3608), - [anon_sym_default] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_goto] = ACTIONS(3608), - [anon_sym___try] = ACTIONS(3608), - [anon_sym___leave] = ACTIONS(3608), - [anon_sym_not] = ACTIONS(3608), - [anon_sym_compl] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_sizeof] = ACTIONS(3608), - [anon_sym___alignof__] = ACTIONS(3608), - [anon_sym___alignof] = ACTIONS(3608), - [anon_sym__alignof] = ACTIONS(3608), - [anon_sym_alignof] = ACTIONS(3608), - [anon_sym__Alignof] = ACTIONS(3608), - [anon_sym_offsetof] = ACTIONS(3608), - [anon_sym__Generic] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [anon_sym_asm] = ACTIONS(3608), - [anon_sym___asm__] = ACTIONS(3608), - [anon_sym___asm] = ACTIONS(3608), - [sym_number_literal] = ACTIONS(3610), - [anon_sym_L_SQUOTE] = ACTIONS(3610), - [anon_sym_u_SQUOTE] = ACTIONS(3610), - [anon_sym_U_SQUOTE] = ACTIONS(3610), - [anon_sym_u8_SQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_L_DQUOTE] = ACTIONS(3610), - [anon_sym_u_DQUOTE] = ACTIONS(3610), - [anon_sym_U_DQUOTE] = ACTIONS(3610), - [anon_sym_u8_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [anon_sym_NULL] = ACTIONS(3608), - [anon_sym_nullptr] = ACTIONS(3608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_export] = ACTIONS(3608), - [anon_sym_module] = ACTIONS(3608), - [anon_sym_import] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_operator] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_static_assert] = ACTIONS(3608), - [anon_sym_concept] = ACTIONS(3608), - [anon_sym_co_return] = ACTIONS(3608), - [anon_sym_co_yield] = ACTIONS(3608), - [anon_sym_R_DQUOTE] = ACTIONS(3610), - [anon_sym_LR_DQUOTE] = ACTIONS(3610), - [anon_sym_uR_DQUOTE] = ACTIONS(3610), - [anon_sym_UR_DQUOTE] = ACTIONS(3610), - [anon_sym_u8R_DQUOTE] = ACTIONS(3610), - [anon_sym_co_await] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_requires] = ACTIONS(3608), - [anon_sym_CARET_CARET] = ACTIONS(3610), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - [sym_this] = ACTIONS(3608), - }, - [STATE(559)] = { - [ts_builtin_sym_end] = ACTIONS(3570), - [sym_identifier] = ACTIONS(3568), - [aux_sym_preproc_include_token1] = ACTIONS(3568), - [aux_sym_preproc_def_token1] = ACTIONS(3568), - [aux_sym_preproc_if_token1] = ACTIONS(3568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3568), - [sym_preproc_directive] = ACTIONS(3568), - [anon_sym_LPAREN2] = ACTIONS(3570), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_AMP] = ACTIONS(3568), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym___extension__] = ACTIONS(3568), - [anon_sym_typedef] = ACTIONS(3568), - [anon_sym_virtual] = ACTIONS(3568), - [anon_sym_extern] = ACTIONS(3568), - [anon_sym___attribute__] = ACTIONS(3568), - [anon_sym___attribute] = ACTIONS(3568), - [anon_sym_using] = ACTIONS(3568), - [anon_sym_COLON_COLON] = ACTIONS(3570), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3570), - [anon_sym___declspec] = ACTIONS(3568), - [anon_sym___based] = ACTIONS(3568), - [anon_sym___cdecl] = ACTIONS(3568), - [anon_sym___clrcall] = ACTIONS(3568), - [anon_sym___stdcall] = ACTIONS(3568), - [anon_sym___fastcall] = ACTIONS(3568), - [anon_sym___thiscall] = ACTIONS(3568), - [anon_sym___vectorcall] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_signed] = ACTIONS(3568), - [anon_sym_unsigned] = ACTIONS(3568), - [anon_sym_long] = ACTIONS(3568), - [anon_sym_short] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_register] = ACTIONS(3568), - [anon_sym_inline] = ACTIONS(3568), - [anon_sym___inline] = ACTIONS(3568), - [anon_sym___inline__] = ACTIONS(3568), - [anon_sym___forceinline] = ACTIONS(3568), - [anon_sym_thread_local] = ACTIONS(3568), - [anon_sym___thread] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_constexpr] = ACTIONS(3568), - [anon_sym_volatile] = ACTIONS(3568), - [anon_sym_restrict] = ACTIONS(3568), - [anon_sym___restrict__] = ACTIONS(3568), - [anon_sym__Atomic] = ACTIONS(3568), - [anon_sym__Noreturn] = ACTIONS(3568), - [anon_sym_noreturn] = ACTIONS(3568), - [anon_sym__Nonnull] = ACTIONS(3568), - [anon_sym_mutable] = ACTIONS(3568), - [anon_sym_constinit] = ACTIONS(3568), - [anon_sym_consteval] = ACTIONS(3568), - [anon_sym_alignas] = ACTIONS(3568), - [anon_sym__Alignas] = ACTIONS(3568), - [sym_primitive_type] = ACTIONS(3568), - [anon_sym_enum] = ACTIONS(3568), - [anon_sym_class] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3568), - [anon_sym_union] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_else] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_case] = ACTIONS(3568), - [anon_sym_default] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_goto] = ACTIONS(3568), - [anon_sym___try] = ACTIONS(3568), - [anon_sym___leave] = ACTIONS(3568), - [anon_sym_not] = ACTIONS(3568), - [anon_sym_compl] = ACTIONS(3568), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_sizeof] = ACTIONS(3568), - [anon_sym___alignof__] = ACTIONS(3568), - [anon_sym___alignof] = ACTIONS(3568), - [anon_sym__alignof] = ACTIONS(3568), - [anon_sym_alignof] = ACTIONS(3568), - [anon_sym__Alignof] = ACTIONS(3568), - [anon_sym_offsetof] = ACTIONS(3568), - [anon_sym__Generic] = ACTIONS(3568), - [anon_sym_typename] = ACTIONS(3568), - [anon_sym_asm] = ACTIONS(3568), - [anon_sym___asm__] = ACTIONS(3568), - [anon_sym___asm] = ACTIONS(3568), - [sym_number_literal] = ACTIONS(3570), - [anon_sym_L_SQUOTE] = ACTIONS(3570), - [anon_sym_u_SQUOTE] = ACTIONS(3570), - [anon_sym_U_SQUOTE] = ACTIONS(3570), - [anon_sym_u8_SQUOTE] = ACTIONS(3570), - [anon_sym_SQUOTE] = ACTIONS(3570), - [anon_sym_L_DQUOTE] = ACTIONS(3570), - [anon_sym_u_DQUOTE] = ACTIONS(3570), - [anon_sym_U_DQUOTE] = ACTIONS(3570), - [anon_sym_u8_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [sym_true] = ACTIONS(3568), - [sym_false] = ACTIONS(3568), - [anon_sym_NULL] = ACTIONS(3568), - [anon_sym_nullptr] = ACTIONS(3568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3568), - [anon_sym_decltype] = ACTIONS(3568), - [anon_sym_explicit] = ACTIONS(3568), - [anon_sym_export] = ACTIONS(3568), - [anon_sym_module] = ACTIONS(3568), - [anon_sym_import] = ACTIONS(3568), - [anon_sym_template] = ACTIONS(3568), - [anon_sym_operator] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_delete] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_namespace] = ACTIONS(3568), - [anon_sym_static_assert] = ACTIONS(3568), - [anon_sym_concept] = ACTIONS(3568), - [anon_sym_co_return] = ACTIONS(3568), - [anon_sym_co_yield] = ACTIONS(3568), - [anon_sym_R_DQUOTE] = ACTIONS(3570), - [anon_sym_LR_DQUOTE] = ACTIONS(3570), - [anon_sym_uR_DQUOTE] = ACTIONS(3570), - [anon_sym_UR_DQUOTE] = ACTIONS(3570), - [anon_sym_u8R_DQUOTE] = ACTIONS(3570), - [anon_sym_co_await] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_requires] = ACTIONS(3568), - [anon_sym_CARET_CARET] = ACTIONS(3570), - [anon_sym_LBRACK_COLON] = ACTIONS(3570), - [sym_this] = ACTIONS(3568), - }, - [STATE(560)] = { - [sym_catch_clause] = STATE(398), - [aux_sym_constructor_try_statement_repeat1] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(3184), - [sym_identifier] = ACTIONS(3182), - [aux_sym_preproc_include_token1] = ACTIONS(3182), - [aux_sym_preproc_def_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token1] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), - [sym_preproc_directive] = ACTIONS(3182), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym___extension__] = ACTIONS(3182), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_virtual] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym___attribute__] = ACTIONS(3182), - [anon_sym___attribute] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [anon_sym___declspec] = ACTIONS(3182), - [anon_sym___based] = ACTIONS(3182), - [anon_sym___cdecl] = ACTIONS(3182), - [anon_sym___clrcall] = ACTIONS(3182), - [anon_sym___stdcall] = ACTIONS(3182), - [anon_sym___fastcall] = ACTIONS(3182), - [anon_sym___thiscall] = ACTIONS(3182), - [anon_sym___vectorcall] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_signed] = ACTIONS(3182), - [anon_sym_unsigned] = ACTIONS(3182), - [anon_sym_long] = ACTIONS(3182), - [anon_sym_short] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_register] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym___inline] = ACTIONS(3182), - [anon_sym___inline__] = ACTIONS(3182), - [anon_sym___forceinline] = ACTIONS(3182), - [anon_sym_thread_local] = ACTIONS(3182), - [anon_sym___thread] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_constexpr] = ACTIONS(3182), - [anon_sym_volatile] = ACTIONS(3182), - [anon_sym_restrict] = ACTIONS(3182), - [anon_sym___restrict__] = ACTIONS(3182), - [anon_sym__Atomic] = ACTIONS(3182), - [anon_sym__Noreturn] = ACTIONS(3182), - [anon_sym_noreturn] = ACTIONS(3182), - [anon_sym__Nonnull] = ACTIONS(3182), - [anon_sym_mutable] = ACTIONS(3182), - [anon_sym_constinit] = ACTIONS(3182), - [anon_sym_consteval] = ACTIONS(3182), - [anon_sym_alignas] = ACTIONS(3182), - [anon_sym__Alignas] = ACTIONS(3182), - [sym_primitive_type] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3182), - [anon_sym_union] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_goto] = ACTIONS(3182), - [anon_sym_not] = ACTIONS(3182), - [anon_sym_compl] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_sizeof] = ACTIONS(3182), - [anon_sym___alignof__] = ACTIONS(3182), - [anon_sym___alignof] = ACTIONS(3182), - [anon_sym__alignof] = ACTIONS(3182), - [anon_sym_alignof] = ACTIONS(3182), - [anon_sym__Alignof] = ACTIONS(3182), - [anon_sym_offsetof] = ACTIONS(3182), - [anon_sym__Generic] = ACTIONS(3182), - [anon_sym_typename] = ACTIONS(3182), - [anon_sym_asm] = ACTIONS(3182), - [anon_sym___asm__] = ACTIONS(3182), - [anon_sym___asm] = ACTIONS(3182), - [sym_number_literal] = ACTIONS(3184), - [anon_sym_L_SQUOTE] = ACTIONS(3184), - [anon_sym_u_SQUOTE] = ACTIONS(3184), - [anon_sym_U_SQUOTE] = ACTIONS(3184), - [anon_sym_u8_SQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_L_DQUOTE] = ACTIONS(3184), - [anon_sym_u_DQUOTE] = ACTIONS(3184), - [anon_sym_U_DQUOTE] = ACTIONS(3184), - [anon_sym_u8_DQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [anon_sym_NULL] = ACTIONS(3182), - [anon_sym_nullptr] = ACTIONS(3182), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3182), - [anon_sym_decltype] = ACTIONS(3182), - [anon_sym_explicit] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(3182), - [anon_sym_operator] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_static_assert] = ACTIONS(3182), - [anon_sym_concept] = ACTIONS(3182), - [anon_sym_co_return] = ACTIONS(3182), - [anon_sym_co_yield] = ACTIONS(3182), - [anon_sym_catch] = ACTIONS(3788), - [anon_sym_R_DQUOTE] = ACTIONS(3184), - [anon_sym_LR_DQUOTE] = ACTIONS(3184), - [anon_sym_uR_DQUOTE] = ACTIONS(3184), - [anon_sym_UR_DQUOTE] = ACTIONS(3184), - [anon_sym_u8R_DQUOTE] = ACTIONS(3184), - [anon_sym_co_await] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_requires] = ACTIONS(3182), - [anon_sym_CARET_CARET] = ACTIONS(3184), - [anon_sym_LBRACK_COLON] = ACTIONS(3184), - [sym_this] = ACTIONS(3182), - }, - [STATE(561)] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_include_token1] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym___attribute] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym___cdecl] = ACTIONS(3362), - [anon_sym___clrcall] = ACTIONS(3362), - [anon_sym___stdcall] = ACTIONS(3362), - [anon_sym___fastcall] = ACTIONS(3362), - [anon_sym___thiscall] = ACTIONS(3362), - [anon_sym___vectorcall] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym__Nonnull] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym__Alignas] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_else] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3362), - [anon_sym_default] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym___try] = ACTIONS(3362), - [anon_sym___leave] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [anon_sym___asm] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_export] = ACTIONS(3362), - [anon_sym_import] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_namespace] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_concept] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_catch] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [anon_sym_CARET_CARET] = ACTIONS(3364), - [anon_sym_LBRACK_COLON] = ACTIONS(3364), - [sym_this] = ACTIONS(3362), - }, - [STATE(562)] = { - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3524), - [aux_sym_preproc_include_token1] = ACTIONS(3524), - [aux_sym_preproc_def_token1] = ACTIONS(3524), - [aux_sym_preproc_if_token1] = ACTIONS(3524), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3524), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3524), - [sym_preproc_directive] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_AMP_AMP] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym___extension__] = ACTIONS(3524), - [anon_sym_typedef] = ACTIONS(3524), - [anon_sym_virtual] = ACTIONS(3524), - [anon_sym_extern] = ACTIONS(3524), - [anon_sym___attribute__] = ACTIONS(3524), - [anon_sym___attribute] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3526), - [anon_sym___declspec] = ACTIONS(3524), - [anon_sym___based] = ACTIONS(3524), - [anon_sym___cdecl] = ACTIONS(3524), - [anon_sym___clrcall] = ACTIONS(3524), - [anon_sym___stdcall] = ACTIONS(3524), - [anon_sym___fastcall] = ACTIONS(3524), - [anon_sym___thiscall] = ACTIONS(3524), - [anon_sym___vectorcall] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_signed] = ACTIONS(3524), - [anon_sym_unsigned] = ACTIONS(3524), - [anon_sym_long] = ACTIONS(3524), - [anon_sym_short] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_register] = ACTIONS(3524), - [anon_sym_inline] = ACTIONS(3524), - [anon_sym___inline] = ACTIONS(3524), - [anon_sym___inline__] = ACTIONS(3524), - [anon_sym___forceinline] = ACTIONS(3524), - [anon_sym_thread_local] = ACTIONS(3524), - [anon_sym___thread] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_constexpr] = ACTIONS(3524), - [anon_sym_volatile] = ACTIONS(3524), - [anon_sym_restrict] = ACTIONS(3524), - [anon_sym___restrict__] = ACTIONS(3524), - [anon_sym__Atomic] = ACTIONS(3524), - [anon_sym__Noreturn] = ACTIONS(3524), - [anon_sym_noreturn] = ACTIONS(3524), - [anon_sym__Nonnull] = ACTIONS(3524), - [anon_sym_mutable] = ACTIONS(3524), - [anon_sym_constinit] = ACTIONS(3524), - [anon_sym_consteval] = ACTIONS(3524), - [anon_sym_alignas] = ACTIONS(3524), - [anon_sym__Alignas] = ACTIONS(3524), - [sym_primitive_type] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_struct] = ACTIONS(3524), - [anon_sym_union] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_goto] = ACTIONS(3524), - [anon_sym___try] = ACTIONS(3524), - [anon_sym___leave] = ACTIONS(3524), - [anon_sym_not] = ACTIONS(3524), - [anon_sym_compl] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_sizeof] = ACTIONS(3524), - [anon_sym___alignof__] = ACTIONS(3524), - [anon_sym___alignof] = ACTIONS(3524), - [anon_sym__alignof] = ACTIONS(3524), - [anon_sym_alignof] = ACTIONS(3524), - [anon_sym__Alignof] = ACTIONS(3524), - [anon_sym_offsetof] = ACTIONS(3524), - [anon_sym__Generic] = ACTIONS(3524), - [anon_sym_typename] = ACTIONS(3524), - [anon_sym_asm] = ACTIONS(3524), - [anon_sym___asm__] = ACTIONS(3524), - [anon_sym___asm] = ACTIONS(3524), - [sym_number_literal] = ACTIONS(3526), - [anon_sym_L_SQUOTE] = ACTIONS(3526), - [anon_sym_u_SQUOTE] = ACTIONS(3526), - [anon_sym_U_SQUOTE] = ACTIONS(3526), - [anon_sym_u8_SQUOTE] = ACTIONS(3526), - [anon_sym_SQUOTE] = ACTIONS(3526), - [anon_sym_L_DQUOTE] = ACTIONS(3526), - [anon_sym_u_DQUOTE] = ACTIONS(3526), - [anon_sym_U_DQUOTE] = ACTIONS(3526), - [anon_sym_u8_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [anon_sym_NULL] = ACTIONS(3524), - [anon_sym_nullptr] = ACTIONS(3524), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3524), - [anon_sym_decltype] = ACTIONS(3524), - [anon_sym_explicit] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_template] = ACTIONS(3524), - [anon_sym_operator] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_static_assert] = ACTIONS(3524), - [anon_sym_concept] = ACTIONS(3524), - [anon_sym_co_return] = ACTIONS(3524), - [anon_sym_co_yield] = ACTIONS(3524), - [anon_sym_R_DQUOTE] = ACTIONS(3526), - [anon_sym_LR_DQUOTE] = ACTIONS(3526), - [anon_sym_uR_DQUOTE] = ACTIONS(3526), - [anon_sym_UR_DQUOTE] = ACTIONS(3526), - [anon_sym_u8R_DQUOTE] = ACTIONS(3526), - [anon_sym_co_await] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_requires] = ACTIONS(3524), - [anon_sym_CARET_CARET] = ACTIONS(3526), - [anon_sym_LBRACK_COLON] = ACTIONS(3526), - [sym_this] = ACTIONS(3524), - }, - [STATE(563)] = { - [ts_builtin_sym_end] = ACTIONS(3620), - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), + [STATE(579)] = { + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_include_token1] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token2] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym___cdecl] = ACTIONS(3648), + [anon_sym___clrcall] = ACTIONS(3648), + [anon_sym___stdcall] = ACTIONS(3648), + [anon_sym___fastcall] = ACTIONS(3648), + [anon_sym___thiscall] = ACTIONS(3648), + [anon_sym___vectorcall] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym___try] = ACTIONS(3648), + [anon_sym___leave] = ACTIONS(3648), + [anon_sym_not] = ACTIONS(3648), + [anon_sym_compl] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym___alignof__] = ACTIONS(3648), + [anon_sym___alignof] = ACTIONS(3648), + [anon_sym__alignof] = ACTIONS(3648), + [anon_sym_alignof] = ACTIONS(3648), + [anon_sym__Alignof] = ACTIONS(3648), + [anon_sym_offsetof] = ACTIONS(3648), + [anon_sym__Generic] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [anon_sym_asm] = ACTIONS(3648), + [anon_sym___asm__] = ACTIONS(3648), + [anon_sym___asm] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [anon_sym_L_SQUOTE] = ACTIONS(3650), + [anon_sym_u_SQUOTE] = ACTIONS(3650), + [anon_sym_U_SQUOTE] = ACTIONS(3650), + [anon_sym_u8_SQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_L_DQUOTE] = ACTIONS(3650), + [anon_sym_u_DQUOTE] = ACTIONS(3650), + [anon_sym_U_DQUOTE] = ACTIONS(3650), + [anon_sym_u8_DQUOTE] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [anon_sym_NULL] = ACTIONS(3648), + [anon_sym_nullptr] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_concept] = ACTIONS(3648), + [anon_sym_co_return] = ACTIONS(3648), + [anon_sym_co_yield] = ACTIONS(3648), + [anon_sym_R_DQUOTE] = ACTIONS(3650), + [anon_sym_LR_DQUOTE] = ACTIONS(3650), + [anon_sym_uR_DQUOTE] = ACTIONS(3650), + [anon_sym_UR_DQUOTE] = ACTIONS(3650), + [anon_sym_u8R_DQUOTE] = ACTIONS(3650), + [anon_sym_co_await] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_requires] = ACTIONS(3648), + [anon_sym_CARET_CARET] = ACTIONS(3650), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [sym_this] = ACTIONS(3648), }, - [STATE(564)] = { - [ts_builtin_sym_end] = ACTIONS(3672), - [sym_identifier] = ACTIONS(3670), - [aux_sym_preproc_include_token1] = ACTIONS(3670), - [aux_sym_preproc_def_token1] = ACTIONS(3670), - [aux_sym_preproc_if_token1] = ACTIONS(3670), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3670), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3670), - [sym_preproc_directive] = ACTIONS(3670), - [anon_sym_LPAREN2] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(3672), - [anon_sym_TILDE] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym___extension__] = ACTIONS(3670), - [anon_sym_typedef] = ACTIONS(3670), - [anon_sym_virtual] = ACTIONS(3670), - [anon_sym_extern] = ACTIONS(3670), - [anon_sym___attribute__] = ACTIONS(3670), - [anon_sym___attribute] = ACTIONS(3670), - [anon_sym_using] = ACTIONS(3670), - [anon_sym_COLON_COLON] = ACTIONS(3672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3672), - [anon_sym___declspec] = ACTIONS(3670), - [anon_sym___based] = ACTIONS(3670), - [anon_sym___cdecl] = ACTIONS(3670), - [anon_sym___clrcall] = ACTIONS(3670), - [anon_sym___stdcall] = ACTIONS(3670), - [anon_sym___fastcall] = ACTIONS(3670), - [anon_sym___thiscall] = ACTIONS(3670), - [anon_sym___vectorcall] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_signed] = ACTIONS(3670), - [anon_sym_unsigned] = ACTIONS(3670), - [anon_sym_long] = ACTIONS(3670), - [anon_sym_short] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3670), - [anon_sym_static] = ACTIONS(3670), - [anon_sym_register] = ACTIONS(3670), - [anon_sym_inline] = ACTIONS(3670), - [anon_sym___inline] = ACTIONS(3670), - [anon_sym___inline__] = ACTIONS(3670), - [anon_sym___forceinline] = ACTIONS(3670), - [anon_sym_thread_local] = ACTIONS(3670), - [anon_sym___thread] = ACTIONS(3670), - [anon_sym_const] = ACTIONS(3670), - [anon_sym_constexpr] = ACTIONS(3670), - [anon_sym_volatile] = ACTIONS(3670), - [anon_sym_restrict] = ACTIONS(3670), - [anon_sym___restrict__] = ACTIONS(3670), - [anon_sym__Atomic] = ACTIONS(3670), - [anon_sym__Noreturn] = ACTIONS(3670), - [anon_sym_noreturn] = ACTIONS(3670), - [anon_sym__Nonnull] = ACTIONS(3670), - [anon_sym_mutable] = ACTIONS(3670), - [anon_sym_constinit] = ACTIONS(3670), - [anon_sym_consteval] = ACTIONS(3670), - [anon_sym_alignas] = ACTIONS(3670), - [anon_sym__Alignas] = ACTIONS(3670), - [sym_primitive_type] = ACTIONS(3670), - [anon_sym_enum] = ACTIONS(3670), - [anon_sym_class] = ACTIONS(3670), - [anon_sym_struct] = ACTIONS(3670), - [anon_sym_union] = ACTIONS(3670), - [anon_sym_if] = ACTIONS(3670), - [anon_sym_else] = ACTIONS(3670), - [anon_sym_switch] = ACTIONS(3670), - [anon_sym_case] = ACTIONS(3670), - [anon_sym_default] = ACTIONS(3670), - [anon_sym_while] = ACTIONS(3670), - [anon_sym_do] = ACTIONS(3670), - [anon_sym_for] = ACTIONS(3670), - [anon_sym_return] = ACTIONS(3670), - [anon_sym_break] = ACTIONS(3670), - [anon_sym_continue] = ACTIONS(3670), - [anon_sym_goto] = ACTIONS(3670), - [anon_sym___try] = ACTIONS(3670), - [anon_sym___leave] = ACTIONS(3670), - [anon_sym_not] = ACTIONS(3670), - [anon_sym_compl] = ACTIONS(3670), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_sizeof] = ACTIONS(3670), - [anon_sym___alignof__] = ACTIONS(3670), - [anon_sym___alignof] = ACTIONS(3670), - [anon_sym__alignof] = ACTIONS(3670), - [anon_sym_alignof] = ACTIONS(3670), - [anon_sym__Alignof] = ACTIONS(3670), - [anon_sym_offsetof] = ACTIONS(3670), - [anon_sym__Generic] = ACTIONS(3670), - [anon_sym_typename] = ACTIONS(3670), - [anon_sym_asm] = ACTIONS(3670), - [anon_sym___asm__] = ACTIONS(3670), - [anon_sym___asm] = ACTIONS(3670), - [sym_number_literal] = ACTIONS(3672), - [anon_sym_L_SQUOTE] = ACTIONS(3672), - [anon_sym_u_SQUOTE] = ACTIONS(3672), - [anon_sym_U_SQUOTE] = ACTIONS(3672), - [anon_sym_u8_SQUOTE] = ACTIONS(3672), - [anon_sym_SQUOTE] = ACTIONS(3672), - [anon_sym_L_DQUOTE] = ACTIONS(3672), - [anon_sym_u_DQUOTE] = ACTIONS(3672), - [anon_sym_U_DQUOTE] = ACTIONS(3672), - [anon_sym_u8_DQUOTE] = ACTIONS(3672), - [anon_sym_DQUOTE] = ACTIONS(3672), - [sym_true] = ACTIONS(3670), - [sym_false] = ACTIONS(3670), - [anon_sym_NULL] = ACTIONS(3670), - [anon_sym_nullptr] = ACTIONS(3670), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3670), - [anon_sym_decltype] = ACTIONS(3670), - [anon_sym_explicit] = ACTIONS(3670), - [anon_sym_export] = ACTIONS(3670), - [anon_sym_module] = ACTIONS(3670), - [anon_sym_import] = ACTIONS(3670), - [anon_sym_template] = ACTIONS(3670), - [anon_sym_operator] = ACTIONS(3670), - [anon_sym_try] = ACTIONS(3670), - [anon_sym_delete] = ACTIONS(3670), - [anon_sym_throw] = ACTIONS(3670), - [anon_sym_namespace] = ACTIONS(3670), - [anon_sym_static_assert] = ACTIONS(3670), - [anon_sym_concept] = ACTIONS(3670), - [anon_sym_co_return] = ACTIONS(3670), - [anon_sym_co_yield] = ACTIONS(3670), - [anon_sym_R_DQUOTE] = ACTIONS(3672), - [anon_sym_LR_DQUOTE] = ACTIONS(3672), - [anon_sym_uR_DQUOTE] = ACTIONS(3672), - [anon_sym_UR_DQUOTE] = ACTIONS(3672), - [anon_sym_u8R_DQUOTE] = ACTIONS(3672), - [anon_sym_co_await] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3670), - [anon_sym_requires] = ACTIONS(3670), - [anon_sym_CARET_CARET] = ACTIONS(3672), - [anon_sym_LBRACK_COLON] = ACTIONS(3672), - [sym_this] = ACTIONS(3670), + [STATE(580)] = { + [sym_identifier] = ACTIONS(3652), + [aux_sym_preproc_include_token1] = ACTIONS(3652), + [aux_sym_preproc_def_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token2] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), + [sym_preproc_directive] = ACTIONS(3652), + [anon_sym_LPAREN2] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [anon_sym_AMP_AMP] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym___extension__] = ACTIONS(3652), + [anon_sym_typedef] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym___attribute__] = ACTIONS(3652), + [anon_sym___attribute] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), + [anon_sym___declspec] = ACTIONS(3652), + [anon_sym___based] = ACTIONS(3652), + [anon_sym___cdecl] = ACTIONS(3652), + [anon_sym___clrcall] = ACTIONS(3652), + [anon_sym___stdcall] = ACTIONS(3652), + [anon_sym___fastcall] = ACTIONS(3652), + [anon_sym___thiscall] = ACTIONS(3652), + [anon_sym___vectorcall] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_signed] = ACTIONS(3652), + [anon_sym_unsigned] = ACTIONS(3652), + [anon_sym_long] = ACTIONS(3652), + [anon_sym_short] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_register] = ACTIONS(3652), + [anon_sym_inline] = ACTIONS(3652), + [anon_sym___inline] = ACTIONS(3652), + [anon_sym___inline__] = ACTIONS(3652), + [anon_sym___forceinline] = ACTIONS(3652), + [anon_sym_thread_local] = ACTIONS(3652), + [anon_sym___thread] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_constexpr] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_restrict] = ACTIONS(3652), + [anon_sym___restrict__] = ACTIONS(3652), + [anon_sym__Atomic] = ACTIONS(3652), + [anon_sym__Noreturn] = ACTIONS(3652), + [anon_sym_noreturn] = ACTIONS(3652), + [anon_sym__Nonnull] = ACTIONS(3652), + [anon_sym_mutable] = ACTIONS(3652), + [anon_sym_constinit] = ACTIONS(3652), + [anon_sym_consteval] = ACTIONS(3652), + [anon_sym_alignas] = ACTIONS(3652), + [anon_sym__Alignas] = ACTIONS(3652), + [sym_primitive_type] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_union] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym___try] = ACTIONS(3652), + [anon_sym___leave] = ACTIONS(3652), + [anon_sym_not] = ACTIONS(3652), + [anon_sym_compl] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym___alignof__] = ACTIONS(3652), + [anon_sym___alignof] = ACTIONS(3652), + [anon_sym__alignof] = ACTIONS(3652), + [anon_sym_alignof] = ACTIONS(3652), + [anon_sym__Alignof] = ACTIONS(3652), + [anon_sym_offsetof] = ACTIONS(3652), + [anon_sym__Generic] = ACTIONS(3652), + [anon_sym_typename] = ACTIONS(3652), + [anon_sym_asm] = ACTIONS(3652), + [anon_sym___asm__] = ACTIONS(3652), + [anon_sym___asm] = ACTIONS(3652), + [sym_number_literal] = ACTIONS(3654), + [anon_sym_L_SQUOTE] = ACTIONS(3654), + [anon_sym_u_SQUOTE] = ACTIONS(3654), + [anon_sym_U_SQUOTE] = ACTIONS(3654), + [anon_sym_u8_SQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_L_DQUOTE] = ACTIONS(3654), + [anon_sym_u_DQUOTE] = ACTIONS(3654), + [anon_sym_U_DQUOTE] = ACTIONS(3654), + [anon_sym_u8_DQUOTE] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [anon_sym_NULL] = ACTIONS(3652), + [anon_sym_nullptr] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3652), + [anon_sym_decltype] = ACTIONS(3652), + [anon_sym_explicit] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_module] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_operator] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_static_assert] = ACTIONS(3652), + [anon_sym_concept] = ACTIONS(3652), + [anon_sym_co_return] = ACTIONS(3652), + [anon_sym_co_yield] = ACTIONS(3652), + [anon_sym_R_DQUOTE] = ACTIONS(3654), + [anon_sym_LR_DQUOTE] = ACTIONS(3654), + [anon_sym_uR_DQUOTE] = ACTIONS(3654), + [anon_sym_UR_DQUOTE] = ACTIONS(3654), + [anon_sym_u8R_DQUOTE] = ACTIONS(3654), + [anon_sym_co_await] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_requires] = ACTIONS(3652), + [anon_sym_CARET_CARET] = ACTIONS(3654), + [anon_sym_LBRACK_COLON] = ACTIONS(3654), + [sym_this] = ACTIONS(3652), }, - [STATE(565)] = { - [ts_builtin_sym_end] = ACTIONS(3656), - [sym_identifier] = ACTIONS(3654), - [aux_sym_preproc_include_token1] = ACTIONS(3654), - [aux_sym_preproc_def_token1] = ACTIONS(3654), - [aux_sym_preproc_if_token1] = ACTIONS(3654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3654), - [sym_preproc_directive] = ACTIONS(3654), - [anon_sym_LPAREN2] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3656), - [anon_sym_TILDE] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym___extension__] = ACTIONS(3654), - [anon_sym_typedef] = ACTIONS(3654), - [anon_sym_virtual] = ACTIONS(3654), - [anon_sym_extern] = ACTIONS(3654), - [anon_sym___attribute__] = ACTIONS(3654), - [anon_sym___attribute] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_COLON_COLON] = ACTIONS(3656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3656), - [anon_sym___declspec] = ACTIONS(3654), - [anon_sym___based] = ACTIONS(3654), - [anon_sym___cdecl] = ACTIONS(3654), - [anon_sym___clrcall] = ACTIONS(3654), - [anon_sym___stdcall] = ACTIONS(3654), - [anon_sym___fastcall] = ACTIONS(3654), - [anon_sym___thiscall] = ACTIONS(3654), - [anon_sym___vectorcall] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_signed] = ACTIONS(3654), - [anon_sym_unsigned] = ACTIONS(3654), - [anon_sym_long] = ACTIONS(3654), - [anon_sym_short] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_register] = ACTIONS(3654), - [anon_sym_inline] = ACTIONS(3654), - [anon_sym___inline] = ACTIONS(3654), - [anon_sym___inline__] = ACTIONS(3654), - [anon_sym___forceinline] = ACTIONS(3654), - [anon_sym_thread_local] = ACTIONS(3654), - [anon_sym___thread] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_constexpr] = ACTIONS(3654), - [anon_sym_volatile] = ACTIONS(3654), - [anon_sym_restrict] = ACTIONS(3654), - [anon_sym___restrict__] = ACTIONS(3654), - [anon_sym__Atomic] = ACTIONS(3654), - [anon_sym__Noreturn] = ACTIONS(3654), - [anon_sym_noreturn] = ACTIONS(3654), - [anon_sym__Nonnull] = ACTIONS(3654), - [anon_sym_mutable] = ACTIONS(3654), - [anon_sym_constinit] = ACTIONS(3654), - [anon_sym_consteval] = ACTIONS(3654), - [anon_sym_alignas] = ACTIONS(3654), - [anon_sym__Alignas] = ACTIONS(3654), - [sym_primitive_type] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_struct] = ACTIONS(3654), - [anon_sym_union] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_case] = ACTIONS(3654), - [anon_sym_default] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_goto] = ACTIONS(3654), - [anon_sym___try] = ACTIONS(3654), - [anon_sym___leave] = ACTIONS(3654), - [anon_sym_not] = ACTIONS(3654), - [anon_sym_compl] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_sizeof] = ACTIONS(3654), - [anon_sym___alignof__] = ACTIONS(3654), - [anon_sym___alignof] = ACTIONS(3654), - [anon_sym__alignof] = ACTIONS(3654), - [anon_sym_alignof] = ACTIONS(3654), - [anon_sym__Alignof] = ACTIONS(3654), - [anon_sym_offsetof] = ACTIONS(3654), - [anon_sym__Generic] = ACTIONS(3654), - [anon_sym_typename] = ACTIONS(3654), - [anon_sym_asm] = ACTIONS(3654), - [anon_sym___asm__] = ACTIONS(3654), - [anon_sym___asm] = ACTIONS(3654), - [sym_number_literal] = ACTIONS(3656), - [anon_sym_L_SQUOTE] = ACTIONS(3656), - [anon_sym_u_SQUOTE] = ACTIONS(3656), - [anon_sym_U_SQUOTE] = ACTIONS(3656), - [anon_sym_u8_SQUOTE] = ACTIONS(3656), - [anon_sym_SQUOTE] = ACTIONS(3656), - [anon_sym_L_DQUOTE] = ACTIONS(3656), - [anon_sym_u_DQUOTE] = ACTIONS(3656), - [anon_sym_U_DQUOTE] = ACTIONS(3656), - [anon_sym_u8_DQUOTE] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(3656), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [anon_sym_NULL] = ACTIONS(3654), - [anon_sym_nullptr] = ACTIONS(3654), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3654), - [anon_sym_decltype] = ACTIONS(3654), - [anon_sym_explicit] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_template] = ACTIONS(3654), - [anon_sym_operator] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_static_assert] = ACTIONS(3654), - [anon_sym_concept] = ACTIONS(3654), - [anon_sym_co_return] = ACTIONS(3654), - [anon_sym_co_yield] = ACTIONS(3654), - [anon_sym_R_DQUOTE] = ACTIONS(3656), - [anon_sym_LR_DQUOTE] = ACTIONS(3656), - [anon_sym_uR_DQUOTE] = ACTIONS(3656), - [anon_sym_UR_DQUOTE] = ACTIONS(3656), - [anon_sym_u8R_DQUOTE] = ACTIONS(3656), - [anon_sym_co_await] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_requires] = ACTIONS(3654), - [anon_sym_CARET_CARET] = ACTIONS(3656), - [anon_sym_LBRACK_COLON] = ACTIONS(3656), - [sym_this] = ACTIONS(3654), + [STATE(581)] = { + [sym_identifier] = ACTIONS(3510), + [aux_sym_preproc_include_token1] = ACTIONS(3510), + [aux_sym_preproc_def_token1] = ACTIONS(3510), + [aux_sym_preproc_if_token1] = ACTIONS(3510), + [aux_sym_preproc_if_token2] = ACTIONS(3510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3510), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_STAR] = ACTIONS(3512), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_AMP] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym___extension__] = ACTIONS(3510), + [anon_sym_typedef] = ACTIONS(3510), + [anon_sym_virtual] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3510), + [anon_sym___attribute__] = ACTIONS(3510), + [anon_sym___attribute] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_COLON_COLON] = ACTIONS(3512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3512), + [anon_sym___declspec] = ACTIONS(3510), + [anon_sym___based] = ACTIONS(3510), + [anon_sym___cdecl] = ACTIONS(3510), + [anon_sym___clrcall] = ACTIONS(3510), + [anon_sym___stdcall] = ACTIONS(3510), + [anon_sym___fastcall] = ACTIONS(3510), + [anon_sym___thiscall] = ACTIONS(3510), + [anon_sym___vectorcall] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_signed] = ACTIONS(3510), + [anon_sym_unsigned] = ACTIONS(3510), + [anon_sym_long] = ACTIONS(3510), + [anon_sym_short] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_register] = ACTIONS(3510), + [anon_sym_inline] = ACTIONS(3510), + [anon_sym___inline] = ACTIONS(3510), + [anon_sym___inline__] = ACTIONS(3510), + [anon_sym___forceinline] = ACTIONS(3510), + [anon_sym_thread_local] = ACTIONS(3510), + [anon_sym___thread] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_constexpr] = ACTIONS(3510), + [anon_sym_volatile] = ACTIONS(3510), + [anon_sym_restrict] = ACTIONS(3510), + [anon_sym___restrict__] = ACTIONS(3510), + [anon_sym__Atomic] = ACTIONS(3510), + [anon_sym__Noreturn] = ACTIONS(3510), + [anon_sym_noreturn] = ACTIONS(3510), + [anon_sym__Nonnull] = ACTIONS(3510), + [anon_sym_mutable] = ACTIONS(3510), + [anon_sym_constinit] = ACTIONS(3510), + [anon_sym_consteval] = ACTIONS(3510), + [anon_sym_alignas] = ACTIONS(3510), + [anon_sym__Alignas] = ACTIONS(3510), + [sym_primitive_type] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_struct] = ACTIONS(3510), + [anon_sym_union] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_else] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_case] = ACTIONS(3510), + [anon_sym_default] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_goto] = ACTIONS(3510), + [anon_sym___try] = ACTIONS(3510), + [anon_sym___leave] = ACTIONS(3510), + [anon_sym_not] = ACTIONS(3510), + [anon_sym_compl] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_sizeof] = ACTIONS(3510), + [anon_sym___alignof__] = ACTIONS(3510), + [anon_sym___alignof] = ACTIONS(3510), + [anon_sym__alignof] = ACTIONS(3510), + [anon_sym_alignof] = ACTIONS(3510), + [anon_sym__Alignof] = ACTIONS(3510), + [anon_sym_offsetof] = ACTIONS(3510), + [anon_sym__Generic] = ACTIONS(3510), + [anon_sym_typename] = ACTIONS(3510), + [anon_sym_asm] = ACTIONS(3510), + [anon_sym___asm__] = ACTIONS(3510), + [anon_sym___asm] = ACTIONS(3510), + [sym_number_literal] = ACTIONS(3512), + [anon_sym_L_SQUOTE] = ACTIONS(3512), + [anon_sym_u_SQUOTE] = ACTIONS(3512), + [anon_sym_U_SQUOTE] = ACTIONS(3512), + [anon_sym_u8_SQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_L_DQUOTE] = ACTIONS(3512), + [anon_sym_u_DQUOTE] = ACTIONS(3512), + [anon_sym_U_DQUOTE] = ACTIONS(3512), + [anon_sym_u8_DQUOTE] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [anon_sym_NULL] = ACTIONS(3510), + [anon_sym_nullptr] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3510), + [anon_sym_decltype] = ACTIONS(3510), + [anon_sym_explicit] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_template] = ACTIONS(3510), + [anon_sym_operator] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_static_assert] = ACTIONS(3510), + [anon_sym_concept] = ACTIONS(3510), + [anon_sym_co_return] = ACTIONS(3510), + [anon_sym_co_yield] = ACTIONS(3510), + [anon_sym_R_DQUOTE] = ACTIONS(3512), + [anon_sym_LR_DQUOTE] = ACTIONS(3512), + [anon_sym_uR_DQUOTE] = ACTIONS(3512), + [anon_sym_UR_DQUOTE] = ACTIONS(3512), + [anon_sym_u8R_DQUOTE] = ACTIONS(3512), + [anon_sym_co_await] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_requires] = ACTIONS(3510), + [anon_sym_CARET_CARET] = ACTIONS(3512), + [anon_sym_LBRACK_COLON] = ACTIONS(3512), + [sym_this] = ACTIONS(3510), }, - [STATE(566)] = { - [ts_builtin_sym_end] = ACTIONS(3676), - [sym_identifier] = ACTIONS(3674), - [aux_sym_preproc_include_token1] = ACTIONS(3674), - [aux_sym_preproc_def_token1] = ACTIONS(3674), - [aux_sym_preproc_if_token1] = ACTIONS(3674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3674), - [sym_preproc_directive] = ACTIONS(3674), - [anon_sym_LPAREN2] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3676), - [anon_sym_TILDE] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym___extension__] = ACTIONS(3674), - [anon_sym_typedef] = ACTIONS(3674), - [anon_sym_virtual] = ACTIONS(3674), - [anon_sym_extern] = ACTIONS(3674), - [anon_sym___attribute__] = ACTIONS(3674), - [anon_sym___attribute] = ACTIONS(3674), - [anon_sym_using] = ACTIONS(3674), - [anon_sym_COLON_COLON] = ACTIONS(3676), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3676), - [anon_sym___declspec] = ACTIONS(3674), - [anon_sym___based] = ACTIONS(3674), - [anon_sym___cdecl] = ACTIONS(3674), - [anon_sym___clrcall] = ACTIONS(3674), - [anon_sym___stdcall] = ACTIONS(3674), - [anon_sym___fastcall] = ACTIONS(3674), - [anon_sym___thiscall] = ACTIONS(3674), - [anon_sym___vectorcall] = ACTIONS(3674), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_signed] = ACTIONS(3674), - [anon_sym_unsigned] = ACTIONS(3674), - [anon_sym_long] = ACTIONS(3674), - [anon_sym_short] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_static] = ACTIONS(3674), - [anon_sym_register] = ACTIONS(3674), - [anon_sym_inline] = ACTIONS(3674), - [anon_sym___inline] = ACTIONS(3674), - [anon_sym___inline__] = ACTIONS(3674), - [anon_sym___forceinline] = ACTIONS(3674), - [anon_sym_thread_local] = ACTIONS(3674), - [anon_sym___thread] = ACTIONS(3674), - [anon_sym_const] = ACTIONS(3674), - [anon_sym_constexpr] = ACTIONS(3674), - [anon_sym_volatile] = ACTIONS(3674), - [anon_sym_restrict] = ACTIONS(3674), - [anon_sym___restrict__] = ACTIONS(3674), - [anon_sym__Atomic] = ACTIONS(3674), - [anon_sym__Noreturn] = ACTIONS(3674), - [anon_sym_noreturn] = ACTIONS(3674), - [anon_sym__Nonnull] = ACTIONS(3674), - [anon_sym_mutable] = ACTIONS(3674), - [anon_sym_constinit] = ACTIONS(3674), - [anon_sym_consteval] = ACTIONS(3674), - [anon_sym_alignas] = ACTIONS(3674), - [anon_sym__Alignas] = ACTIONS(3674), - [sym_primitive_type] = ACTIONS(3674), - [anon_sym_enum] = ACTIONS(3674), - [anon_sym_class] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(3674), - [anon_sym_union] = ACTIONS(3674), - [anon_sym_if] = ACTIONS(3674), - [anon_sym_else] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_case] = ACTIONS(3674), - [anon_sym_default] = ACTIONS(3674), - [anon_sym_while] = ACTIONS(3674), - [anon_sym_do] = ACTIONS(3674), - [anon_sym_for] = ACTIONS(3674), - [anon_sym_return] = ACTIONS(3674), - [anon_sym_break] = ACTIONS(3674), - [anon_sym_continue] = ACTIONS(3674), - [anon_sym_goto] = ACTIONS(3674), - [anon_sym___try] = ACTIONS(3674), - [anon_sym___leave] = ACTIONS(3674), - [anon_sym_not] = ACTIONS(3674), - [anon_sym_compl] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_sizeof] = ACTIONS(3674), - [anon_sym___alignof__] = ACTIONS(3674), - [anon_sym___alignof] = ACTIONS(3674), - [anon_sym__alignof] = ACTIONS(3674), - [anon_sym_alignof] = ACTIONS(3674), - [anon_sym__Alignof] = ACTIONS(3674), - [anon_sym_offsetof] = ACTIONS(3674), - [anon_sym__Generic] = ACTIONS(3674), - [anon_sym_typename] = ACTIONS(3674), - [anon_sym_asm] = ACTIONS(3674), - [anon_sym___asm__] = ACTIONS(3674), - [anon_sym___asm] = ACTIONS(3674), - [sym_number_literal] = ACTIONS(3676), - [anon_sym_L_SQUOTE] = ACTIONS(3676), - [anon_sym_u_SQUOTE] = ACTIONS(3676), - [anon_sym_U_SQUOTE] = ACTIONS(3676), - [anon_sym_u8_SQUOTE] = ACTIONS(3676), - [anon_sym_SQUOTE] = ACTIONS(3676), - [anon_sym_L_DQUOTE] = ACTIONS(3676), - [anon_sym_u_DQUOTE] = ACTIONS(3676), - [anon_sym_U_DQUOTE] = ACTIONS(3676), - [anon_sym_u8_DQUOTE] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(3676), - [sym_true] = ACTIONS(3674), - [sym_false] = ACTIONS(3674), - [anon_sym_NULL] = ACTIONS(3674), - [anon_sym_nullptr] = ACTIONS(3674), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3674), - [anon_sym_decltype] = ACTIONS(3674), - [anon_sym_explicit] = ACTIONS(3674), - [anon_sym_export] = ACTIONS(3674), - [anon_sym_module] = ACTIONS(3674), - [anon_sym_import] = ACTIONS(3674), - [anon_sym_template] = ACTIONS(3674), - [anon_sym_operator] = ACTIONS(3674), - [anon_sym_try] = ACTIONS(3674), - [anon_sym_delete] = ACTIONS(3674), - [anon_sym_throw] = ACTIONS(3674), - [anon_sym_namespace] = ACTIONS(3674), - [anon_sym_static_assert] = ACTIONS(3674), - [anon_sym_concept] = ACTIONS(3674), - [anon_sym_co_return] = ACTIONS(3674), - [anon_sym_co_yield] = ACTIONS(3674), - [anon_sym_R_DQUOTE] = ACTIONS(3676), - [anon_sym_LR_DQUOTE] = ACTIONS(3676), - [anon_sym_uR_DQUOTE] = ACTIONS(3676), - [anon_sym_UR_DQUOTE] = ACTIONS(3676), - [anon_sym_u8R_DQUOTE] = ACTIONS(3676), - [anon_sym_co_await] = ACTIONS(3674), - [anon_sym_new] = ACTIONS(3674), - [anon_sym_requires] = ACTIONS(3674), - [anon_sym_CARET_CARET] = ACTIONS(3676), - [anon_sym_LBRACK_COLON] = ACTIONS(3676), - [sym_this] = ACTIONS(3674), + [STATE(582)] = { + [sym_identifier] = ACTIONS(3538), + [aux_sym_preproc_include_token1] = ACTIONS(3538), + [aux_sym_preproc_def_token1] = ACTIONS(3538), + [aux_sym_preproc_if_token1] = ACTIONS(3538), + [aux_sym_preproc_if_token2] = ACTIONS(3538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3538), + [sym_preproc_directive] = ACTIONS(3538), + [anon_sym_LPAREN2] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym___extension__] = ACTIONS(3538), + [anon_sym_typedef] = ACTIONS(3538), + [anon_sym_virtual] = ACTIONS(3538), + [anon_sym_extern] = ACTIONS(3538), + [anon_sym___attribute__] = ACTIONS(3538), + [anon_sym___attribute] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(3540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3540), + [anon_sym___declspec] = ACTIONS(3538), + [anon_sym___based] = ACTIONS(3538), + [anon_sym___cdecl] = ACTIONS(3538), + [anon_sym___clrcall] = ACTIONS(3538), + [anon_sym___stdcall] = ACTIONS(3538), + [anon_sym___fastcall] = ACTIONS(3538), + [anon_sym___thiscall] = ACTIONS(3538), + [anon_sym___vectorcall] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_signed] = ACTIONS(3538), + [anon_sym_unsigned] = ACTIONS(3538), + [anon_sym_long] = ACTIONS(3538), + [anon_sym_short] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_register] = ACTIONS(3538), + [anon_sym_inline] = ACTIONS(3538), + [anon_sym___inline] = ACTIONS(3538), + [anon_sym___inline__] = ACTIONS(3538), + [anon_sym___forceinline] = ACTIONS(3538), + [anon_sym_thread_local] = ACTIONS(3538), + [anon_sym___thread] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_constexpr] = ACTIONS(3538), + [anon_sym_volatile] = ACTIONS(3538), + [anon_sym_restrict] = ACTIONS(3538), + [anon_sym___restrict__] = ACTIONS(3538), + [anon_sym__Atomic] = ACTIONS(3538), + [anon_sym__Noreturn] = ACTIONS(3538), + [anon_sym_noreturn] = ACTIONS(3538), + [anon_sym__Nonnull] = ACTIONS(3538), + [anon_sym_mutable] = ACTIONS(3538), + [anon_sym_constinit] = ACTIONS(3538), + [anon_sym_consteval] = ACTIONS(3538), + [anon_sym_alignas] = ACTIONS(3538), + [anon_sym__Alignas] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_struct] = ACTIONS(3538), + [anon_sym_union] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_else] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_case] = ACTIONS(3538), + [anon_sym_default] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_goto] = ACTIONS(3538), + [anon_sym___try] = ACTIONS(3538), + [anon_sym___leave] = ACTIONS(3538), + [anon_sym_not] = ACTIONS(3538), + [anon_sym_compl] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_sizeof] = ACTIONS(3538), + [anon_sym___alignof__] = ACTIONS(3538), + [anon_sym___alignof] = ACTIONS(3538), + [anon_sym__alignof] = ACTIONS(3538), + [anon_sym_alignof] = ACTIONS(3538), + [anon_sym__Alignof] = ACTIONS(3538), + [anon_sym_offsetof] = ACTIONS(3538), + [anon_sym__Generic] = ACTIONS(3538), + [anon_sym_typename] = ACTIONS(3538), + [anon_sym_asm] = ACTIONS(3538), + [anon_sym___asm__] = ACTIONS(3538), + [anon_sym___asm] = ACTIONS(3538), + [sym_number_literal] = ACTIONS(3540), + [anon_sym_L_SQUOTE] = ACTIONS(3540), + [anon_sym_u_SQUOTE] = ACTIONS(3540), + [anon_sym_U_SQUOTE] = ACTIONS(3540), + [anon_sym_u8_SQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_L_DQUOTE] = ACTIONS(3540), + [anon_sym_u_DQUOTE] = ACTIONS(3540), + [anon_sym_U_DQUOTE] = ACTIONS(3540), + [anon_sym_u8_DQUOTE] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [anon_sym_NULL] = ACTIONS(3538), + [anon_sym_nullptr] = ACTIONS(3538), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3538), + [anon_sym_decltype] = ACTIONS(3538), + [anon_sym_explicit] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_module] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_template] = ACTIONS(3538), + [anon_sym_operator] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_static_assert] = ACTIONS(3538), + [anon_sym_concept] = ACTIONS(3538), + [anon_sym_co_return] = ACTIONS(3538), + [anon_sym_co_yield] = ACTIONS(3538), + [anon_sym_R_DQUOTE] = ACTIONS(3540), + [anon_sym_LR_DQUOTE] = ACTIONS(3540), + [anon_sym_uR_DQUOTE] = ACTIONS(3540), + [anon_sym_UR_DQUOTE] = ACTIONS(3540), + [anon_sym_u8R_DQUOTE] = ACTIONS(3540), + [anon_sym_co_await] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_requires] = ACTIONS(3538), + [anon_sym_CARET_CARET] = ACTIONS(3540), + [anon_sym_LBRACK_COLON] = ACTIONS(3540), + [sym_this] = ACTIONS(3538), }, - [STATE(567)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_include_token1] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token2] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym___cdecl] = ACTIONS(3600), - [anon_sym___clrcall] = ACTIONS(3600), - [anon_sym___stdcall] = ACTIONS(3600), - [anon_sym___fastcall] = ACTIONS(3600), - [anon_sym___thiscall] = ACTIONS(3600), - [anon_sym___vectorcall] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_case] = ACTIONS(3600), - [anon_sym_default] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym___try] = ACTIONS(3600), - [anon_sym___leave] = ACTIONS(3600), - [anon_sym_not] = ACTIONS(3600), - [anon_sym_compl] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(3600), - [anon_sym___alignof] = ACTIONS(3600), - [anon_sym__alignof] = ACTIONS(3600), - [anon_sym_alignof] = ACTIONS(3600), - [anon_sym__Alignof] = ACTIONS(3600), - [anon_sym_offsetof] = ACTIONS(3600), - [anon_sym__Generic] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [anon_sym_asm] = ACTIONS(3600), - [anon_sym___asm__] = ACTIONS(3600), - [anon_sym___asm] = ACTIONS(3600), - [sym_number_literal] = ACTIONS(3602), - [anon_sym_L_SQUOTE] = ACTIONS(3602), - [anon_sym_u_SQUOTE] = ACTIONS(3602), - [anon_sym_U_SQUOTE] = ACTIONS(3602), - [anon_sym_u8_SQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_L_DQUOTE] = ACTIONS(3602), - [anon_sym_u_DQUOTE] = ACTIONS(3602), - [anon_sym_U_DQUOTE] = ACTIONS(3602), - [anon_sym_u8_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [anon_sym_NULL] = ACTIONS(3600), - [anon_sym_nullptr] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_export] = ACTIONS(3600), - [anon_sym_module] = ACTIONS(3600), - [anon_sym_import] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_concept] = ACTIONS(3600), - [anon_sym_co_return] = ACTIONS(3600), - [anon_sym_co_yield] = ACTIONS(3600), - [anon_sym_R_DQUOTE] = ACTIONS(3602), - [anon_sym_LR_DQUOTE] = ACTIONS(3602), - [anon_sym_uR_DQUOTE] = ACTIONS(3602), - [anon_sym_UR_DQUOTE] = ACTIONS(3602), - [anon_sym_u8R_DQUOTE] = ACTIONS(3602), - [anon_sym_co_await] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_requires] = ACTIONS(3600), - [anon_sym_CARET_CARET] = ACTIONS(3602), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - [sym_this] = ACTIONS(3600), + [STATE(583)] = { + [ts_builtin_sym_end] = ACTIONS(3618), + [sym_identifier] = ACTIONS(3616), + [aux_sym_preproc_include_token1] = ACTIONS(3616), + [aux_sym_preproc_def_token1] = ACTIONS(3616), + [aux_sym_preproc_if_token1] = ACTIONS(3616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3616), + [sym_preproc_directive] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_AMP_AMP] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym___extension__] = ACTIONS(3616), + [anon_sym_typedef] = ACTIONS(3616), + [anon_sym_virtual] = ACTIONS(3616), + [anon_sym_extern] = ACTIONS(3616), + [anon_sym___attribute__] = ACTIONS(3616), + [anon_sym___attribute] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3618), + [anon_sym___declspec] = ACTIONS(3616), + [anon_sym___based] = ACTIONS(3616), + [anon_sym___cdecl] = ACTIONS(3616), + [anon_sym___clrcall] = ACTIONS(3616), + [anon_sym___stdcall] = ACTIONS(3616), + [anon_sym___fastcall] = ACTIONS(3616), + [anon_sym___thiscall] = ACTIONS(3616), + [anon_sym___vectorcall] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_signed] = ACTIONS(3616), + [anon_sym_unsigned] = ACTIONS(3616), + [anon_sym_long] = ACTIONS(3616), + [anon_sym_short] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_register] = ACTIONS(3616), + [anon_sym_inline] = ACTIONS(3616), + [anon_sym___inline] = ACTIONS(3616), + [anon_sym___inline__] = ACTIONS(3616), + [anon_sym___forceinline] = ACTIONS(3616), + [anon_sym_thread_local] = ACTIONS(3616), + [anon_sym___thread] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_constexpr] = ACTIONS(3616), + [anon_sym_volatile] = ACTIONS(3616), + [anon_sym_restrict] = ACTIONS(3616), + [anon_sym___restrict__] = ACTIONS(3616), + [anon_sym__Atomic] = ACTIONS(3616), + [anon_sym__Noreturn] = ACTIONS(3616), + [anon_sym_noreturn] = ACTIONS(3616), + [anon_sym__Nonnull] = ACTIONS(3616), + [anon_sym_mutable] = ACTIONS(3616), + [anon_sym_constinit] = ACTIONS(3616), + [anon_sym_consteval] = ACTIONS(3616), + [anon_sym_alignas] = ACTIONS(3616), + [anon_sym__Alignas] = ACTIONS(3616), + [sym_primitive_type] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3616), + [anon_sym_union] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_case] = ACTIONS(3616), + [anon_sym_default] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_goto] = ACTIONS(3616), + [anon_sym___try] = ACTIONS(3616), + [anon_sym___leave] = ACTIONS(3616), + [anon_sym_not] = ACTIONS(3616), + [anon_sym_compl] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(3616), + [anon_sym___alignof] = ACTIONS(3616), + [anon_sym__alignof] = ACTIONS(3616), + [anon_sym_alignof] = ACTIONS(3616), + [anon_sym__Alignof] = ACTIONS(3616), + [anon_sym_offsetof] = ACTIONS(3616), + [anon_sym__Generic] = ACTIONS(3616), + [anon_sym_typename] = ACTIONS(3616), + [anon_sym_asm] = ACTIONS(3616), + [anon_sym___asm__] = ACTIONS(3616), + [anon_sym___asm] = ACTIONS(3616), + [sym_number_literal] = ACTIONS(3618), + [anon_sym_L_SQUOTE] = ACTIONS(3618), + [anon_sym_u_SQUOTE] = ACTIONS(3618), + [anon_sym_U_SQUOTE] = ACTIONS(3618), + [anon_sym_u8_SQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_L_DQUOTE] = ACTIONS(3618), + [anon_sym_u_DQUOTE] = ACTIONS(3618), + [anon_sym_U_DQUOTE] = ACTIONS(3618), + [anon_sym_u8_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [anon_sym_NULL] = ACTIONS(3616), + [anon_sym_nullptr] = ACTIONS(3616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3616), + [anon_sym_decltype] = ACTIONS(3616), + [anon_sym_explicit] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_template] = ACTIONS(3616), + [anon_sym_operator] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_static_assert] = ACTIONS(3616), + [anon_sym_concept] = ACTIONS(3616), + [anon_sym_co_return] = ACTIONS(3616), + [anon_sym_co_yield] = ACTIONS(3616), + [anon_sym_R_DQUOTE] = ACTIONS(3618), + [anon_sym_LR_DQUOTE] = ACTIONS(3618), + [anon_sym_uR_DQUOTE] = ACTIONS(3618), + [anon_sym_UR_DQUOTE] = ACTIONS(3618), + [anon_sym_u8R_DQUOTE] = ACTIONS(3618), + [anon_sym_co_await] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_requires] = ACTIONS(3616), + [anon_sym_CARET_CARET] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3618), + [sym_this] = ACTIONS(3616), }, - [STATE(568)] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym___attribute] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym__Nonnull] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym__Alignas] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_else] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym___try] = ACTIONS(3384), - [anon_sym___leave] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [anon_sym___asm] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3389), - [anon_sym_L_SQUOTE] = ACTIONS(3389), - [anon_sym_u_SQUOTE] = ACTIONS(3389), - [anon_sym_U_SQUOTE] = ACTIONS(3389), - [anon_sym_u8_SQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_L_DQUOTE] = ACTIONS(3389), - [anon_sym_u_DQUOTE] = ACTIONS(3389), - [anon_sym_U_DQUOTE] = ACTIONS(3389), - [anon_sym_u8_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_export] = ACTIONS(3384), - [anon_sym_module] = ACTIONS(3384), - [anon_sym_import] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3389), - [anon_sym_LR_DQUOTE] = ACTIONS(3389), - [anon_sym_uR_DQUOTE] = ACTIONS(3389), - [anon_sym_UR_DQUOTE] = ACTIONS(3389), - [anon_sym_u8R_DQUOTE] = ACTIONS(3389), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [anon_sym_CARET_CARET] = ACTIONS(3389), - [anon_sym_LBRACK_COLON] = ACTIONS(3389), - [sym_this] = ACTIONS(3384), + [STATE(584)] = { + [ts_builtin_sym_end] = ACTIONS(3343), + [sym_identifier] = ACTIONS(3338), + [aux_sym_preproc_include_token1] = ACTIONS(3338), + [aux_sym_preproc_def_token1] = ACTIONS(3338), + [aux_sym_preproc_if_token1] = ACTIONS(3338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3338), + [sym_preproc_directive] = ACTIONS(3338), + [anon_sym_LPAREN2] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3343), + [anon_sym_AMP_AMP] = ACTIONS(3343), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym___extension__] = ACTIONS(3338), + [anon_sym_typedef] = ACTIONS(3338), + [anon_sym_virtual] = ACTIONS(3338), + [anon_sym_extern] = ACTIONS(3338), + [anon_sym___attribute__] = ACTIONS(3338), + [anon_sym___attribute] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3343), + [anon_sym___declspec] = ACTIONS(3338), + [anon_sym___based] = ACTIONS(3338), + [anon_sym___cdecl] = ACTIONS(3338), + [anon_sym___clrcall] = ACTIONS(3338), + [anon_sym___stdcall] = ACTIONS(3338), + [anon_sym___fastcall] = ACTIONS(3338), + [anon_sym___thiscall] = ACTIONS(3338), + [anon_sym___vectorcall] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_register] = ACTIONS(3338), + [anon_sym_inline] = ACTIONS(3338), + [anon_sym___inline] = ACTIONS(3338), + [anon_sym___inline__] = ACTIONS(3338), + [anon_sym___forceinline] = ACTIONS(3338), + [anon_sym_thread_local] = ACTIONS(3338), + [anon_sym___thread] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_constexpr] = ACTIONS(3338), + [anon_sym_volatile] = ACTIONS(3338), + [anon_sym_restrict] = ACTIONS(3338), + [anon_sym___restrict__] = ACTIONS(3338), + [anon_sym__Atomic] = ACTIONS(3338), + [anon_sym__Noreturn] = ACTIONS(3338), + [anon_sym_noreturn] = ACTIONS(3338), + [anon_sym__Nonnull] = ACTIONS(3338), + [anon_sym_mutable] = ACTIONS(3338), + [anon_sym_constinit] = ACTIONS(3338), + [anon_sym_consteval] = ACTIONS(3338), + [anon_sym_alignas] = ACTIONS(3338), + [anon_sym__Alignas] = ACTIONS(3338), + [sym_primitive_type] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_case] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_goto] = ACTIONS(3338), + [anon_sym___try] = ACTIONS(3338), + [anon_sym___leave] = ACTIONS(3338), + [anon_sym_not] = ACTIONS(3338), + [anon_sym_compl] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3338), + [anon_sym___alignof] = ACTIONS(3338), + [anon_sym__alignof] = ACTIONS(3338), + [anon_sym_alignof] = ACTIONS(3338), + [anon_sym__Alignof] = ACTIONS(3338), + [anon_sym_offsetof] = ACTIONS(3338), + [anon_sym__Generic] = ACTIONS(3338), + [anon_sym_typename] = ACTIONS(3338), + [anon_sym_asm] = ACTIONS(3338), + [anon_sym___asm__] = ACTIONS(3338), + [anon_sym___asm] = ACTIONS(3338), + [sym_number_literal] = ACTIONS(3343), + [anon_sym_L_SQUOTE] = ACTIONS(3343), + [anon_sym_u_SQUOTE] = ACTIONS(3343), + [anon_sym_U_SQUOTE] = ACTIONS(3343), + [anon_sym_u8_SQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_L_DQUOTE] = ACTIONS(3343), + [anon_sym_u_DQUOTE] = ACTIONS(3343), + [anon_sym_U_DQUOTE] = ACTIONS(3343), + [anon_sym_u8_DQUOTE] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [anon_sym_NULL] = ACTIONS(3338), + [anon_sym_nullptr] = ACTIONS(3338), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3338), + [anon_sym_decltype] = ACTIONS(3338), + [anon_sym_explicit] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_template] = ACTIONS(3338), + [anon_sym_operator] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_static_assert] = ACTIONS(3338), + [anon_sym_concept] = ACTIONS(3338), + [anon_sym_co_return] = ACTIONS(3338), + [anon_sym_co_yield] = ACTIONS(3338), + [anon_sym_R_DQUOTE] = ACTIONS(3343), + [anon_sym_LR_DQUOTE] = ACTIONS(3343), + [anon_sym_uR_DQUOTE] = ACTIONS(3343), + [anon_sym_UR_DQUOTE] = ACTIONS(3343), + [anon_sym_u8R_DQUOTE] = ACTIONS(3343), + [anon_sym_co_await] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_requires] = ACTIONS(3338), + [anon_sym_CARET_CARET] = ACTIONS(3343), + [anon_sym_LBRACK_COLON] = ACTIONS(3343), + [sym_this] = ACTIONS(3338), }, - [STATE(569)] = { - [sym_identifier] = ACTIONS(3568), - [aux_sym_preproc_include_token1] = ACTIONS(3568), - [aux_sym_preproc_def_token1] = ACTIONS(3568), - [aux_sym_preproc_if_token1] = ACTIONS(3568), - [aux_sym_preproc_if_token2] = ACTIONS(3568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3568), - [sym_preproc_directive] = ACTIONS(3568), - [anon_sym_LPAREN2] = ACTIONS(3570), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_AMP] = ACTIONS(3568), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym___extension__] = ACTIONS(3568), - [anon_sym_typedef] = ACTIONS(3568), - [anon_sym_virtual] = ACTIONS(3568), - [anon_sym_extern] = ACTIONS(3568), - [anon_sym___attribute__] = ACTIONS(3568), - [anon_sym___attribute] = ACTIONS(3568), - [anon_sym_using] = ACTIONS(3568), - [anon_sym_COLON_COLON] = ACTIONS(3570), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3570), - [anon_sym___declspec] = ACTIONS(3568), - [anon_sym___based] = ACTIONS(3568), - [anon_sym___cdecl] = ACTIONS(3568), - [anon_sym___clrcall] = ACTIONS(3568), - [anon_sym___stdcall] = ACTIONS(3568), - [anon_sym___fastcall] = ACTIONS(3568), - [anon_sym___thiscall] = ACTIONS(3568), - [anon_sym___vectorcall] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_signed] = ACTIONS(3568), - [anon_sym_unsigned] = ACTIONS(3568), - [anon_sym_long] = ACTIONS(3568), - [anon_sym_short] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_register] = ACTIONS(3568), - [anon_sym_inline] = ACTIONS(3568), - [anon_sym___inline] = ACTIONS(3568), - [anon_sym___inline__] = ACTIONS(3568), - [anon_sym___forceinline] = ACTIONS(3568), - [anon_sym_thread_local] = ACTIONS(3568), - [anon_sym___thread] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_constexpr] = ACTIONS(3568), - [anon_sym_volatile] = ACTIONS(3568), - [anon_sym_restrict] = ACTIONS(3568), - [anon_sym___restrict__] = ACTIONS(3568), - [anon_sym__Atomic] = ACTIONS(3568), - [anon_sym__Noreturn] = ACTIONS(3568), - [anon_sym_noreturn] = ACTIONS(3568), - [anon_sym__Nonnull] = ACTIONS(3568), - [anon_sym_mutable] = ACTIONS(3568), - [anon_sym_constinit] = ACTIONS(3568), - [anon_sym_consteval] = ACTIONS(3568), - [anon_sym_alignas] = ACTIONS(3568), - [anon_sym__Alignas] = ACTIONS(3568), - [sym_primitive_type] = ACTIONS(3568), - [anon_sym_enum] = ACTIONS(3568), - [anon_sym_class] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3568), - [anon_sym_union] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_else] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_case] = ACTIONS(3568), - [anon_sym_default] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_goto] = ACTIONS(3568), - [anon_sym___try] = ACTIONS(3568), - [anon_sym___leave] = ACTIONS(3568), - [anon_sym_not] = ACTIONS(3568), - [anon_sym_compl] = ACTIONS(3568), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_sizeof] = ACTIONS(3568), - [anon_sym___alignof__] = ACTIONS(3568), - [anon_sym___alignof] = ACTIONS(3568), - [anon_sym__alignof] = ACTIONS(3568), - [anon_sym_alignof] = ACTIONS(3568), - [anon_sym__Alignof] = ACTIONS(3568), - [anon_sym_offsetof] = ACTIONS(3568), - [anon_sym__Generic] = ACTIONS(3568), - [anon_sym_typename] = ACTIONS(3568), - [anon_sym_asm] = ACTIONS(3568), - [anon_sym___asm__] = ACTIONS(3568), - [anon_sym___asm] = ACTIONS(3568), - [sym_number_literal] = ACTIONS(3570), - [anon_sym_L_SQUOTE] = ACTIONS(3570), - [anon_sym_u_SQUOTE] = ACTIONS(3570), - [anon_sym_U_SQUOTE] = ACTIONS(3570), - [anon_sym_u8_SQUOTE] = ACTIONS(3570), - [anon_sym_SQUOTE] = ACTIONS(3570), - [anon_sym_L_DQUOTE] = ACTIONS(3570), - [anon_sym_u_DQUOTE] = ACTIONS(3570), - [anon_sym_U_DQUOTE] = ACTIONS(3570), - [anon_sym_u8_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [sym_true] = ACTIONS(3568), - [sym_false] = ACTIONS(3568), - [anon_sym_NULL] = ACTIONS(3568), - [anon_sym_nullptr] = ACTIONS(3568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3568), - [anon_sym_decltype] = ACTIONS(3568), - [anon_sym_explicit] = ACTIONS(3568), - [anon_sym_export] = ACTIONS(3568), - [anon_sym_module] = ACTIONS(3568), - [anon_sym_import] = ACTIONS(3568), - [anon_sym_template] = ACTIONS(3568), - [anon_sym_operator] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_delete] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_namespace] = ACTIONS(3568), - [anon_sym_static_assert] = ACTIONS(3568), - [anon_sym_concept] = ACTIONS(3568), - [anon_sym_co_return] = ACTIONS(3568), - [anon_sym_co_yield] = ACTIONS(3568), - [anon_sym_R_DQUOTE] = ACTIONS(3570), - [anon_sym_LR_DQUOTE] = ACTIONS(3570), - [anon_sym_uR_DQUOTE] = ACTIONS(3570), - [anon_sym_UR_DQUOTE] = ACTIONS(3570), - [anon_sym_u8R_DQUOTE] = ACTIONS(3570), - [anon_sym_co_await] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_requires] = ACTIONS(3568), - [anon_sym_CARET_CARET] = ACTIONS(3570), - [anon_sym_LBRACK_COLON] = ACTIONS(3570), - [sym_this] = ACTIONS(3568), + [STATE(585)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_else] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym___try] = ACTIONS(3168), + [anon_sym___leave] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [anon_sym___asm] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_catch] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_CARET_CARET] = ACTIONS(3166), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + [sym_this] = ACTIONS(3168), }, - [STATE(570)] = { - [sym_identifier] = ACTIONS(3572), - [aux_sym_preproc_include_token1] = ACTIONS(3572), - [aux_sym_preproc_def_token1] = ACTIONS(3572), - [aux_sym_preproc_if_token1] = ACTIONS(3572), - [aux_sym_preproc_if_token2] = ACTIONS(3572), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3572), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3572), - [sym_preproc_directive] = ACTIONS(3572), - [anon_sym_LPAREN2] = ACTIONS(3574), - [anon_sym_BANG] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_STAR] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_AMP] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym___extension__] = ACTIONS(3572), - [anon_sym_typedef] = ACTIONS(3572), - [anon_sym_virtual] = ACTIONS(3572), - [anon_sym_extern] = ACTIONS(3572), - [anon_sym___attribute__] = ACTIONS(3572), - [anon_sym___attribute] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_COLON_COLON] = ACTIONS(3574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3574), - [anon_sym___declspec] = ACTIONS(3572), - [anon_sym___based] = ACTIONS(3572), - [anon_sym___cdecl] = ACTIONS(3572), - [anon_sym___clrcall] = ACTIONS(3572), - [anon_sym___stdcall] = ACTIONS(3572), - [anon_sym___fastcall] = ACTIONS(3572), - [anon_sym___thiscall] = ACTIONS(3572), - [anon_sym___vectorcall] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_signed] = ACTIONS(3572), - [anon_sym_unsigned] = ACTIONS(3572), - [anon_sym_long] = ACTIONS(3572), - [anon_sym_short] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_register] = ACTIONS(3572), - [anon_sym_inline] = ACTIONS(3572), - [anon_sym___inline] = ACTIONS(3572), - [anon_sym___inline__] = ACTIONS(3572), - [anon_sym___forceinline] = ACTIONS(3572), - [anon_sym_thread_local] = ACTIONS(3572), - [anon_sym___thread] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_constexpr] = ACTIONS(3572), - [anon_sym_volatile] = ACTIONS(3572), - [anon_sym_restrict] = ACTIONS(3572), - [anon_sym___restrict__] = ACTIONS(3572), - [anon_sym__Atomic] = ACTIONS(3572), - [anon_sym__Noreturn] = ACTIONS(3572), - [anon_sym_noreturn] = ACTIONS(3572), - [anon_sym__Nonnull] = ACTIONS(3572), - [anon_sym_mutable] = ACTIONS(3572), - [anon_sym_constinit] = ACTIONS(3572), - [anon_sym_consteval] = ACTIONS(3572), - [anon_sym_alignas] = ACTIONS(3572), - [anon_sym__Alignas] = ACTIONS(3572), - [sym_primitive_type] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_struct] = ACTIONS(3572), - [anon_sym_union] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_case] = ACTIONS(3572), - [anon_sym_default] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_goto] = ACTIONS(3572), - [anon_sym___try] = ACTIONS(3572), - [anon_sym___leave] = ACTIONS(3572), - [anon_sym_not] = ACTIONS(3572), - [anon_sym_compl] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_sizeof] = ACTIONS(3572), - [anon_sym___alignof__] = ACTIONS(3572), - [anon_sym___alignof] = ACTIONS(3572), - [anon_sym__alignof] = ACTIONS(3572), - [anon_sym_alignof] = ACTIONS(3572), - [anon_sym__Alignof] = ACTIONS(3572), - [anon_sym_offsetof] = ACTIONS(3572), - [anon_sym__Generic] = ACTIONS(3572), - [anon_sym_typename] = ACTIONS(3572), - [anon_sym_asm] = ACTIONS(3572), - [anon_sym___asm__] = ACTIONS(3572), - [anon_sym___asm] = ACTIONS(3572), - [sym_number_literal] = ACTIONS(3574), - [anon_sym_L_SQUOTE] = ACTIONS(3574), - [anon_sym_u_SQUOTE] = ACTIONS(3574), - [anon_sym_U_SQUOTE] = ACTIONS(3574), - [anon_sym_u8_SQUOTE] = ACTIONS(3574), - [anon_sym_SQUOTE] = ACTIONS(3574), - [anon_sym_L_DQUOTE] = ACTIONS(3574), - [anon_sym_u_DQUOTE] = ACTIONS(3574), - [anon_sym_U_DQUOTE] = ACTIONS(3574), - [anon_sym_u8_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [anon_sym_NULL] = ACTIONS(3572), - [anon_sym_nullptr] = ACTIONS(3572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3572), - [anon_sym_decltype] = ACTIONS(3572), - [anon_sym_explicit] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_module] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_template] = ACTIONS(3572), - [anon_sym_operator] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_static_assert] = ACTIONS(3572), - [anon_sym_concept] = ACTIONS(3572), - [anon_sym_co_return] = ACTIONS(3572), - [anon_sym_co_yield] = ACTIONS(3572), - [anon_sym_R_DQUOTE] = ACTIONS(3574), - [anon_sym_LR_DQUOTE] = ACTIONS(3574), - [anon_sym_uR_DQUOTE] = ACTIONS(3574), - [anon_sym_UR_DQUOTE] = ACTIONS(3574), - [anon_sym_u8R_DQUOTE] = ACTIONS(3574), - [anon_sym_co_await] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_requires] = ACTIONS(3572), - [anon_sym_CARET_CARET] = ACTIONS(3574), - [anon_sym_LBRACK_COLON] = ACTIONS(3574), - [sym_this] = ACTIONS(3572), + [STATE(586)] = { + [ts_builtin_sym_end] = ACTIONS(3680), + [sym_identifier] = ACTIONS(3678), + [aux_sym_preproc_include_token1] = ACTIONS(3678), + [aux_sym_preproc_def_token1] = ACTIONS(3678), + [aux_sym_preproc_if_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), + [sym_preproc_directive] = ACTIONS(3678), + [anon_sym_LPAREN2] = ACTIONS(3680), + [anon_sym_BANG] = ACTIONS(3680), + [anon_sym_TILDE] = ACTIONS(3680), + [anon_sym_DASH] = ACTIONS(3678), + [anon_sym_PLUS] = ACTIONS(3678), + [anon_sym_STAR] = ACTIONS(3680), + [anon_sym_AMP_AMP] = ACTIONS(3680), + [anon_sym_AMP] = ACTIONS(3678), + [anon_sym_SEMI] = ACTIONS(3680), + [anon_sym___extension__] = ACTIONS(3678), + [anon_sym_typedef] = ACTIONS(3678), + [anon_sym_virtual] = ACTIONS(3678), + [anon_sym_extern] = ACTIONS(3678), + [anon_sym___attribute__] = ACTIONS(3678), + [anon_sym___attribute] = ACTIONS(3678), + [anon_sym_using] = ACTIONS(3678), + [anon_sym_COLON_COLON] = ACTIONS(3680), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), + [anon_sym___declspec] = ACTIONS(3678), + [anon_sym___based] = ACTIONS(3678), + [anon_sym___cdecl] = ACTIONS(3678), + [anon_sym___clrcall] = ACTIONS(3678), + [anon_sym___stdcall] = ACTIONS(3678), + [anon_sym___fastcall] = ACTIONS(3678), + [anon_sym___thiscall] = ACTIONS(3678), + [anon_sym___vectorcall] = ACTIONS(3678), + [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_signed] = ACTIONS(3678), + [anon_sym_unsigned] = ACTIONS(3678), + [anon_sym_long] = ACTIONS(3678), + [anon_sym_short] = ACTIONS(3678), + [anon_sym_LBRACK] = ACTIONS(3678), + [anon_sym_static] = ACTIONS(3678), + [anon_sym_register] = ACTIONS(3678), + [anon_sym_inline] = ACTIONS(3678), + [anon_sym___inline] = ACTIONS(3678), + [anon_sym___inline__] = ACTIONS(3678), + [anon_sym___forceinline] = ACTIONS(3678), + [anon_sym_thread_local] = ACTIONS(3678), + [anon_sym___thread] = ACTIONS(3678), + [anon_sym_const] = ACTIONS(3678), + [anon_sym_constexpr] = ACTIONS(3678), + [anon_sym_volatile] = ACTIONS(3678), + [anon_sym_restrict] = ACTIONS(3678), + [anon_sym___restrict__] = ACTIONS(3678), + [anon_sym__Atomic] = ACTIONS(3678), + [anon_sym__Noreturn] = ACTIONS(3678), + [anon_sym_noreturn] = ACTIONS(3678), + [anon_sym__Nonnull] = ACTIONS(3678), + [anon_sym_mutable] = ACTIONS(3678), + [anon_sym_constinit] = ACTIONS(3678), + [anon_sym_consteval] = ACTIONS(3678), + [anon_sym_alignas] = ACTIONS(3678), + [anon_sym__Alignas] = ACTIONS(3678), + [sym_primitive_type] = ACTIONS(3678), + [anon_sym_enum] = ACTIONS(3678), + [anon_sym_class] = ACTIONS(3678), + [anon_sym_struct] = ACTIONS(3678), + [anon_sym_union] = ACTIONS(3678), + [anon_sym_if] = ACTIONS(3678), + [anon_sym_else] = ACTIONS(3678), + [anon_sym_switch] = ACTIONS(3678), + [anon_sym_case] = ACTIONS(3678), + [anon_sym_default] = ACTIONS(3678), + [anon_sym_while] = ACTIONS(3678), + [anon_sym_do] = ACTIONS(3678), + [anon_sym_for] = ACTIONS(3678), + [anon_sym_return] = ACTIONS(3678), + [anon_sym_break] = ACTIONS(3678), + [anon_sym_continue] = ACTIONS(3678), + [anon_sym_goto] = ACTIONS(3678), + [anon_sym___try] = ACTIONS(3678), + [anon_sym___leave] = ACTIONS(3678), + [anon_sym_not] = ACTIONS(3678), + [anon_sym_compl] = ACTIONS(3678), + [anon_sym_DASH_DASH] = ACTIONS(3680), + [anon_sym_PLUS_PLUS] = ACTIONS(3680), + [anon_sym_sizeof] = ACTIONS(3678), + [anon_sym___alignof__] = ACTIONS(3678), + [anon_sym___alignof] = ACTIONS(3678), + [anon_sym__alignof] = ACTIONS(3678), + [anon_sym_alignof] = ACTIONS(3678), + [anon_sym__Alignof] = ACTIONS(3678), + [anon_sym_offsetof] = ACTIONS(3678), + [anon_sym__Generic] = ACTIONS(3678), + [anon_sym_typename] = ACTIONS(3678), + [anon_sym_asm] = ACTIONS(3678), + [anon_sym___asm__] = ACTIONS(3678), + [anon_sym___asm] = ACTIONS(3678), + [sym_number_literal] = ACTIONS(3680), + [anon_sym_L_SQUOTE] = ACTIONS(3680), + [anon_sym_u_SQUOTE] = ACTIONS(3680), + [anon_sym_U_SQUOTE] = ACTIONS(3680), + [anon_sym_u8_SQUOTE] = ACTIONS(3680), + [anon_sym_SQUOTE] = ACTIONS(3680), + [anon_sym_L_DQUOTE] = ACTIONS(3680), + [anon_sym_u_DQUOTE] = ACTIONS(3680), + [anon_sym_U_DQUOTE] = ACTIONS(3680), + [anon_sym_u8_DQUOTE] = ACTIONS(3680), + [anon_sym_DQUOTE] = ACTIONS(3680), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [anon_sym_NULL] = ACTIONS(3678), + [anon_sym_nullptr] = ACTIONS(3678), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3678), + [anon_sym_decltype] = ACTIONS(3678), + [anon_sym_explicit] = ACTIONS(3678), + [anon_sym_export] = ACTIONS(3678), + [anon_sym_module] = ACTIONS(3678), + [anon_sym_import] = ACTIONS(3678), + [anon_sym_template] = ACTIONS(3678), + [anon_sym_operator] = ACTIONS(3678), + [anon_sym_try] = ACTIONS(3678), + [anon_sym_delete] = ACTIONS(3678), + [anon_sym_throw] = ACTIONS(3678), + [anon_sym_namespace] = ACTIONS(3678), + [anon_sym_static_assert] = ACTIONS(3678), + [anon_sym_concept] = ACTIONS(3678), + [anon_sym_co_return] = ACTIONS(3678), + [anon_sym_co_yield] = ACTIONS(3678), + [anon_sym_R_DQUOTE] = ACTIONS(3680), + [anon_sym_LR_DQUOTE] = ACTIONS(3680), + [anon_sym_uR_DQUOTE] = ACTIONS(3680), + [anon_sym_UR_DQUOTE] = ACTIONS(3680), + [anon_sym_u8R_DQUOTE] = ACTIONS(3680), + [anon_sym_co_await] = ACTIONS(3678), + [anon_sym_new] = ACTIONS(3678), + [anon_sym_requires] = ACTIONS(3678), + [anon_sym_CARET_CARET] = ACTIONS(3680), + [anon_sym_LBRACK_COLON] = ACTIONS(3680), + [sym_this] = ACTIONS(3678), }, - [STATE(571)] = { + [STATE(587)] = { [ts_builtin_sym_end] = ACTIONS(3594), [sym_identifier] = ACTIONS(3592), [aux_sym_preproc_include_token1] = ACTIONS(3592), @@ -141793,433 +144068,6539 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3594), [sym_this] = ACTIONS(3592), }, - [STATE(572)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym___try] = ACTIONS(3163), - [anon_sym___leave] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3163), - [anon_sym_compl] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = ACTIONS(3163), - [anon_sym___asm] = ACTIONS(3163), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_catch] = ACTIONS(3163), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [anon_sym_CARET_CARET] = ACTIONS(3161), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - [sym_this] = ACTIONS(3163), + [STATE(588)] = { + [ts_builtin_sym_end] = ACTIONS(3634), + [sym_identifier] = ACTIONS(3632), + [aux_sym_preproc_include_token1] = ACTIONS(3632), + [aux_sym_preproc_def_token1] = ACTIONS(3632), + [aux_sym_preproc_if_token1] = ACTIONS(3632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3632), + [sym_preproc_directive] = ACTIONS(3632), + [anon_sym_LPAREN2] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_AMP_AMP] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym___extension__] = ACTIONS(3632), + [anon_sym_typedef] = ACTIONS(3632), + [anon_sym_virtual] = ACTIONS(3632), + [anon_sym_extern] = ACTIONS(3632), + [anon_sym___attribute__] = ACTIONS(3632), + [anon_sym___attribute] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3634), + [anon_sym___declspec] = ACTIONS(3632), + [anon_sym___based] = ACTIONS(3632), + [anon_sym___cdecl] = ACTIONS(3632), + [anon_sym___clrcall] = ACTIONS(3632), + [anon_sym___stdcall] = ACTIONS(3632), + [anon_sym___fastcall] = ACTIONS(3632), + [anon_sym___thiscall] = ACTIONS(3632), + [anon_sym___vectorcall] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_signed] = ACTIONS(3632), + [anon_sym_unsigned] = ACTIONS(3632), + [anon_sym_long] = ACTIONS(3632), + [anon_sym_short] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_register] = ACTIONS(3632), + [anon_sym_inline] = ACTIONS(3632), + [anon_sym___inline] = ACTIONS(3632), + [anon_sym___inline__] = ACTIONS(3632), + [anon_sym___forceinline] = ACTIONS(3632), + [anon_sym_thread_local] = ACTIONS(3632), + [anon_sym___thread] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_constexpr] = ACTIONS(3632), + [anon_sym_volatile] = ACTIONS(3632), + [anon_sym_restrict] = ACTIONS(3632), + [anon_sym___restrict__] = ACTIONS(3632), + [anon_sym__Atomic] = ACTIONS(3632), + [anon_sym__Noreturn] = ACTIONS(3632), + [anon_sym_noreturn] = ACTIONS(3632), + [anon_sym__Nonnull] = ACTIONS(3632), + [anon_sym_mutable] = ACTIONS(3632), + [anon_sym_constinit] = ACTIONS(3632), + [anon_sym_consteval] = ACTIONS(3632), + [anon_sym_alignas] = ACTIONS(3632), + [anon_sym__Alignas] = ACTIONS(3632), + [sym_primitive_type] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_struct] = ACTIONS(3632), + [anon_sym_union] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_else] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_case] = ACTIONS(3632), + [anon_sym_default] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_goto] = ACTIONS(3632), + [anon_sym___try] = ACTIONS(3632), + [anon_sym___leave] = ACTIONS(3632), + [anon_sym_not] = ACTIONS(3632), + [anon_sym_compl] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_sizeof] = ACTIONS(3632), + [anon_sym___alignof__] = ACTIONS(3632), + [anon_sym___alignof] = ACTIONS(3632), + [anon_sym__alignof] = ACTIONS(3632), + [anon_sym_alignof] = ACTIONS(3632), + [anon_sym__Alignof] = ACTIONS(3632), + [anon_sym_offsetof] = ACTIONS(3632), + [anon_sym__Generic] = ACTIONS(3632), + [anon_sym_typename] = ACTIONS(3632), + [anon_sym_asm] = ACTIONS(3632), + [anon_sym___asm__] = ACTIONS(3632), + [anon_sym___asm] = ACTIONS(3632), + [sym_number_literal] = ACTIONS(3634), + [anon_sym_L_SQUOTE] = ACTIONS(3634), + [anon_sym_u_SQUOTE] = ACTIONS(3634), + [anon_sym_U_SQUOTE] = ACTIONS(3634), + [anon_sym_u8_SQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_L_DQUOTE] = ACTIONS(3634), + [anon_sym_u_DQUOTE] = ACTIONS(3634), + [anon_sym_U_DQUOTE] = ACTIONS(3634), + [anon_sym_u8_DQUOTE] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [anon_sym_NULL] = ACTIONS(3632), + [anon_sym_nullptr] = ACTIONS(3632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3632), + [anon_sym_decltype] = ACTIONS(3632), + [anon_sym_explicit] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_module] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_template] = ACTIONS(3632), + [anon_sym_operator] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_static_assert] = ACTIONS(3632), + [anon_sym_concept] = ACTIONS(3632), + [anon_sym_co_return] = ACTIONS(3632), + [anon_sym_co_yield] = ACTIONS(3632), + [anon_sym_R_DQUOTE] = ACTIONS(3634), + [anon_sym_LR_DQUOTE] = ACTIONS(3634), + [anon_sym_uR_DQUOTE] = ACTIONS(3634), + [anon_sym_UR_DQUOTE] = ACTIONS(3634), + [anon_sym_u8R_DQUOTE] = ACTIONS(3634), + [anon_sym_co_await] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_requires] = ACTIONS(3632), + [anon_sym_CARET_CARET] = ACTIONS(3634), + [anon_sym_LBRACK_COLON] = ACTIONS(3634), + [sym_this] = ACTIONS(3632), }, - [STATE(573)] = { - [sym_identifier] = ACTIONS(3604), - [aux_sym_preproc_include_token1] = ACTIONS(3604), - [aux_sym_preproc_def_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token2] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), - [sym_preproc_directive] = ACTIONS(3604), - [anon_sym_LPAREN2] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(3604), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym___extension__] = ACTIONS(3604), - [anon_sym_typedef] = ACTIONS(3604), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_extern] = ACTIONS(3604), - [anon_sym___attribute__] = ACTIONS(3604), - [anon_sym___attribute] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_COLON_COLON] = ACTIONS(3606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), - [anon_sym___declspec] = ACTIONS(3604), - [anon_sym___based] = ACTIONS(3604), - [anon_sym___cdecl] = ACTIONS(3604), - [anon_sym___clrcall] = ACTIONS(3604), - [anon_sym___stdcall] = ACTIONS(3604), - [anon_sym___fastcall] = ACTIONS(3604), - [anon_sym___thiscall] = ACTIONS(3604), - [anon_sym___vectorcall] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_signed] = ACTIONS(3604), - [anon_sym_unsigned] = ACTIONS(3604), - [anon_sym_long] = ACTIONS(3604), - [anon_sym_short] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_register] = ACTIONS(3604), - [anon_sym_inline] = ACTIONS(3604), - [anon_sym___inline] = ACTIONS(3604), - [anon_sym___inline__] = ACTIONS(3604), - [anon_sym___forceinline] = ACTIONS(3604), - [anon_sym_thread_local] = ACTIONS(3604), - [anon_sym___thread] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_constexpr] = ACTIONS(3604), - [anon_sym_volatile] = ACTIONS(3604), - [anon_sym_restrict] = ACTIONS(3604), - [anon_sym___restrict__] = ACTIONS(3604), - [anon_sym__Atomic] = ACTIONS(3604), - [anon_sym__Noreturn] = ACTIONS(3604), - [anon_sym_noreturn] = ACTIONS(3604), - [anon_sym__Nonnull] = ACTIONS(3604), - [anon_sym_mutable] = ACTIONS(3604), - [anon_sym_constinit] = ACTIONS(3604), - [anon_sym_consteval] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3604), - [anon_sym__Alignas] = ACTIONS(3604), - [sym_primitive_type] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_union] = ACTIONS(3604), - [anon_sym_if] = ACTIONS(3604), - [anon_sym_else] = ACTIONS(3604), - [anon_sym_switch] = ACTIONS(3604), - [anon_sym_case] = ACTIONS(3604), - [anon_sym_default] = ACTIONS(3604), - [anon_sym_while] = ACTIONS(3604), - [anon_sym_do] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3604), - [anon_sym_return] = ACTIONS(3604), - [anon_sym_break] = ACTIONS(3604), - [anon_sym_continue] = ACTIONS(3604), - [anon_sym_goto] = ACTIONS(3604), - [anon_sym___try] = ACTIONS(3604), - [anon_sym___leave] = ACTIONS(3604), - [anon_sym_not] = ACTIONS(3604), - [anon_sym_compl] = ACTIONS(3604), - [anon_sym_DASH_DASH] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_sizeof] = ACTIONS(3604), - [anon_sym___alignof__] = ACTIONS(3604), - [anon_sym___alignof] = ACTIONS(3604), - [anon_sym__alignof] = ACTIONS(3604), - [anon_sym_alignof] = ACTIONS(3604), - [anon_sym__Alignof] = ACTIONS(3604), - [anon_sym_offsetof] = ACTIONS(3604), - [anon_sym__Generic] = ACTIONS(3604), - [anon_sym_typename] = ACTIONS(3604), - [anon_sym_asm] = ACTIONS(3604), - [anon_sym___asm__] = ACTIONS(3604), - [anon_sym___asm] = ACTIONS(3604), - [sym_number_literal] = ACTIONS(3606), - [anon_sym_L_SQUOTE] = ACTIONS(3606), - [anon_sym_u_SQUOTE] = ACTIONS(3606), - [anon_sym_U_SQUOTE] = ACTIONS(3606), - [anon_sym_u8_SQUOTE] = ACTIONS(3606), - [anon_sym_SQUOTE] = ACTIONS(3606), - [anon_sym_L_DQUOTE] = ACTIONS(3606), - [anon_sym_u_DQUOTE] = ACTIONS(3606), - [anon_sym_U_DQUOTE] = ACTIONS(3606), - [anon_sym_u8_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [sym_true] = ACTIONS(3604), - [sym_false] = ACTIONS(3604), - [anon_sym_NULL] = ACTIONS(3604), - [anon_sym_nullptr] = ACTIONS(3604), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3604), - [anon_sym_decltype] = ACTIONS(3604), - [anon_sym_explicit] = ACTIONS(3604), - [anon_sym_export] = ACTIONS(3604), - [anon_sym_module] = ACTIONS(3604), - [anon_sym_import] = ACTIONS(3604), - [anon_sym_template] = ACTIONS(3604), - [anon_sym_operator] = ACTIONS(3604), - [anon_sym_try] = ACTIONS(3604), - [anon_sym_delete] = ACTIONS(3604), - [anon_sym_throw] = ACTIONS(3604), - [anon_sym_namespace] = ACTIONS(3604), - [anon_sym_static_assert] = ACTIONS(3604), - [anon_sym_concept] = ACTIONS(3604), - [anon_sym_co_return] = ACTIONS(3604), - [anon_sym_co_yield] = ACTIONS(3604), - [anon_sym_R_DQUOTE] = ACTIONS(3606), - [anon_sym_LR_DQUOTE] = ACTIONS(3606), - [anon_sym_uR_DQUOTE] = ACTIONS(3606), - [anon_sym_UR_DQUOTE] = ACTIONS(3606), - [anon_sym_u8R_DQUOTE] = ACTIONS(3606), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3604), - [anon_sym_requires] = ACTIONS(3604), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(3606), - [sym_this] = ACTIONS(3604), + [STATE(589)] = { + [ts_builtin_sym_end] = ACTIONS(3638), + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_include_token1] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym___cdecl] = ACTIONS(3636), + [anon_sym___clrcall] = ACTIONS(3636), + [anon_sym___stdcall] = ACTIONS(3636), + [anon_sym___fastcall] = ACTIONS(3636), + [anon_sym___thiscall] = ACTIONS(3636), + [anon_sym___vectorcall] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym___try] = ACTIONS(3636), + [anon_sym___leave] = ACTIONS(3636), + [anon_sym_not] = ACTIONS(3636), + [anon_sym_compl] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym___alignof__] = ACTIONS(3636), + [anon_sym___alignof] = ACTIONS(3636), + [anon_sym__alignof] = ACTIONS(3636), + [anon_sym_alignof] = ACTIONS(3636), + [anon_sym__Alignof] = ACTIONS(3636), + [anon_sym_offsetof] = ACTIONS(3636), + [anon_sym__Generic] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [anon_sym_asm] = ACTIONS(3636), + [anon_sym___asm__] = ACTIONS(3636), + [anon_sym___asm] = ACTIONS(3636), + [sym_number_literal] = ACTIONS(3638), + [anon_sym_L_SQUOTE] = ACTIONS(3638), + [anon_sym_u_SQUOTE] = ACTIONS(3638), + [anon_sym_U_SQUOTE] = ACTIONS(3638), + [anon_sym_u8_SQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_L_DQUOTE] = ACTIONS(3638), + [anon_sym_u_DQUOTE] = ACTIONS(3638), + [anon_sym_U_DQUOTE] = ACTIONS(3638), + [anon_sym_u8_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_nullptr] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_concept] = ACTIONS(3636), + [anon_sym_co_return] = ACTIONS(3636), + [anon_sym_co_yield] = ACTIONS(3636), + [anon_sym_R_DQUOTE] = ACTIONS(3638), + [anon_sym_LR_DQUOTE] = ACTIONS(3638), + [anon_sym_uR_DQUOTE] = ACTIONS(3638), + [anon_sym_UR_DQUOTE] = ACTIONS(3638), + [anon_sym_u8R_DQUOTE] = ACTIONS(3638), + [anon_sym_co_await] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_requires] = ACTIONS(3636), + [anon_sym_CARET_CARET] = ACTIONS(3638), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [sym_this] = ACTIONS(3636), }, - [STATE(574)] = { - [ts_builtin_sym_end] = ACTIONS(3546), - [sym_identifier] = ACTIONS(3544), - [aux_sym_preproc_include_token1] = ACTIONS(3544), - [aux_sym_preproc_def_token1] = ACTIONS(3544), - [aux_sym_preproc_if_token1] = ACTIONS(3544), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3544), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3544), - [sym_preproc_directive] = ACTIONS(3544), - [anon_sym_LPAREN2] = ACTIONS(3546), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_STAR] = ACTIONS(3546), - [anon_sym_AMP_AMP] = ACTIONS(3546), - [anon_sym_AMP] = ACTIONS(3544), + [STATE(590)] = { + [sym_identifier] = ACTIONS(3506), + [aux_sym_preproc_include_token1] = ACTIONS(3506), + [aux_sym_preproc_def_token1] = ACTIONS(3506), + [aux_sym_preproc_if_token1] = ACTIONS(3506), + [aux_sym_preproc_if_token2] = ACTIONS(3506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3506), + [sym_preproc_directive] = ACTIONS(3506), + [anon_sym_LPAREN2] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_STAR] = ACTIONS(3508), + [anon_sym_AMP_AMP] = ACTIONS(3508), + [anon_sym_AMP] = ACTIONS(3506), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym___extension__] = ACTIONS(3506), + [anon_sym_typedef] = ACTIONS(3506), + [anon_sym_virtual] = ACTIONS(3506), + [anon_sym_extern] = ACTIONS(3506), + [anon_sym___attribute__] = ACTIONS(3506), + [anon_sym___attribute] = ACTIONS(3506), + [anon_sym_using] = ACTIONS(3506), + [anon_sym_COLON_COLON] = ACTIONS(3508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3508), + [anon_sym___declspec] = ACTIONS(3506), + [anon_sym___based] = ACTIONS(3506), + [anon_sym___cdecl] = ACTIONS(3506), + [anon_sym___clrcall] = ACTIONS(3506), + [anon_sym___stdcall] = ACTIONS(3506), + [anon_sym___fastcall] = ACTIONS(3506), + [anon_sym___thiscall] = ACTIONS(3506), + [anon_sym___vectorcall] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_signed] = ACTIONS(3506), + [anon_sym_unsigned] = ACTIONS(3506), + [anon_sym_long] = ACTIONS(3506), + [anon_sym_short] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_register] = ACTIONS(3506), + [anon_sym_inline] = ACTIONS(3506), + [anon_sym___inline] = ACTIONS(3506), + [anon_sym___inline__] = ACTIONS(3506), + [anon_sym___forceinline] = ACTIONS(3506), + [anon_sym_thread_local] = ACTIONS(3506), + [anon_sym___thread] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3506), + [anon_sym_constexpr] = ACTIONS(3506), + [anon_sym_volatile] = ACTIONS(3506), + [anon_sym_restrict] = ACTIONS(3506), + [anon_sym___restrict__] = ACTIONS(3506), + [anon_sym__Atomic] = ACTIONS(3506), + [anon_sym__Noreturn] = ACTIONS(3506), + [anon_sym_noreturn] = ACTIONS(3506), + [anon_sym__Nonnull] = ACTIONS(3506), + [anon_sym_mutable] = ACTIONS(3506), + [anon_sym_constinit] = ACTIONS(3506), + [anon_sym_consteval] = ACTIONS(3506), + [anon_sym_alignas] = ACTIONS(3506), + [anon_sym__Alignas] = ACTIONS(3506), + [sym_primitive_type] = ACTIONS(3506), + [anon_sym_enum] = ACTIONS(3506), + [anon_sym_class] = ACTIONS(3506), + [anon_sym_struct] = ACTIONS(3506), + [anon_sym_union] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_else] = ACTIONS(3506), + [anon_sym_switch] = ACTIONS(3506), + [anon_sym_case] = ACTIONS(3506), + [anon_sym_default] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_do] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_goto] = ACTIONS(3506), + [anon_sym___try] = ACTIONS(3506), + [anon_sym___leave] = ACTIONS(3506), + [anon_sym_not] = ACTIONS(3506), + [anon_sym_compl] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3508), + [anon_sym_sizeof] = ACTIONS(3506), + [anon_sym___alignof__] = ACTIONS(3506), + [anon_sym___alignof] = ACTIONS(3506), + [anon_sym__alignof] = ACTIONS(3506), + [anon_sym_alignof] = ACTIONS(3506), + [anon_sym__Alignof] = ACTIONS(3506), + [anon_sym_offsetof] = ACTIONS(3506), + [anon_sym__Generic] = ACTIONS(3506), + [anon_sym_typename] = ACTIONS(3506), + [anon_sym_asm] = ACTIONS(3506), + [anon_sym___asm__] = ACTIONS(3506), + [anon_sym___asm] = ACTIONS(3506), + [sym_number_literal] = ACTIONS(3508), + [anon_sym_L_SQUOTE] = ACTIONS(3508), + [anon_sym_u_SQUOTE] = ACTIONS(3508), + [anon_sym_U_SQUOTE] = ACTIONS(3508), + [anon_sym_u8_SQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3508), + [anon_sym_L_DQUOTE] = ACTIONS(3508), + [anon_sym_u_DQUOTE] = ACTIONS(3508), + [anon_sym_U_DQUOTE] = ACTIONS(3508), + [anon_sym_u8_DQUOTE] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [anon_sym_NULL] = ACTIONS(3506), + [anon_sym_nullptr] = ACTIONS(3506), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3506), + [anon_sym_decltype] = ACTIONS(3506), + [anon_sym_explicit] = ACTIONS(3506), + [anon_sym_export] = ACTIONS(3506), + [anon_sym_module] = ACTIONS(3506), + [anon_sym_import] = ACTIONS(3506), + [anon_sym_template] = ACTIONS(3506), + [anon_sym_operator] = ACTIONS(3506), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_delete] = ACTIONS(3506), + [anon_sym_throw] = ACTIONS(3506), + [anon_sym_namespace] = ACTIONS(3506), + [anon_sym_static_assert] = ACTIONS(3506), + [anon_sym_concept] = ACTIONS(3506), + [anon_sym_co_return] = ACTIONS(3506), + [anon_sym_co_yield] = ACTIONS(3506), + [anon_sym_R_DQUOTE] = ACTIONS(3508), + [anon_sym_LR_DQUOTE] = ACTIONS(3508), + [anon_sym_uR_DQUOTE] = ACTIONS(3508), + [anon_sym_UR_DQUOTE] = ACTIONS(3508), + [anon_sym_u8R_DQUOTE] = ACTIONS(3508), + [anon_sym_co_await] = ACTIONS(3506), + [anon_sym_new] = ACTIONS(3506), + [anon_sym_requires] = ACTIONS(3506), + [anon_sym_CARET_CARET] = ACTIONS(3508), + [anon_sym_LBRACK_COLON] = ACTIONS(3508), + [sym_this] = ACTIONS(3506), + }, + [STATE(591)] = { + [sym_identifier] = ACTIONS(3542), + [aux_sym_preproc_include_token1] = ACTIONS(3542), + [aux_sym_preproc_def_token1] = ACTIONS(3542), + [aux_sym_preproc_if_token1] = ACTIONS(3542), + [aux_sym_preproc_if_token2] = ACTIONS(3542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3542), + [sym_preproc_directive] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym___extension__] = ACTIONS(3542), + [anon_sym_typedef] = ACTIONS(3542), + [anon_sym_virtual] = ACTIONS(3542), + [anon_sym_extern] = ACTIONS(3542), + [anon_sym___attribute__] = ACTIONS(3542), + [anon_sym___attribute] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3544), + [anon_sym___declspec] = ACTIONS(3542), + [anon_sym___based] = ACTIONS(3542), + [anon_sym___cdecl] = ACTIONS(3542), + [anon_sym___clrcall] = ACTIONS(3542), + [anon_sym___stdcall] = ACTIONS(3542), + [anon_sym___fastcall] = ACTIONS(3542), + [anon_sym___thiscall] = ACTIONS(3542), + [anon_sym___vectorcall] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_signed] = ACTIONS(3542), + [anon_sym_unsigned] = ACTIONS(3542), + [anon_sym_long] = ACTIONS(3542), + [anon_sym_short] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_register] = ACTIONS(3542), + [anon_sym_inline] = ACTIONS(3542), + [anon_sym___inline] = ACTIONS(3542), + [anon_sym___inline__] = ACTIONS(3542), + [anon_sym___forceinline] = ACTIONS(3542), + [anon_sym_thread_local] = ACTIONS(3542), + [anon_sym___thread] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_constexpr] = ACTIONS(3542), + [anon_sym_volatile] = ACTIONS(3542), + [anon_sym_restrict] = ACTIONS(3542), + [anon_sym___restrict__] = ACTIONS(3542), + [anon_sym__Atomic] = ACTIONS(3542), + [anon_sym__Noreturn] = ACTIONS(3542), + [anon_sym_noreturn] = ACTIONS(3542), + [anon_sym__Nonnull] = ACTIONS(3542), + [anon_sym_mutable] = ACTIONS(3542), + [anon_sym_constinit] = ACTIONS(3542), + [anon_sym_consteval] = ACTIONS(3542), + [anon_sym_alignas] = ACTIONS(3542), + [anon_sym__Alignas] = ACTIONS(3542), + [sym_primitive_type] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_else] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_case] = ACTIONS(3542), + [anon_sym_default] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_goto] = ACTIONS(3542), + [anon_sym___try] = ACTIONS(3542), + [anon_sym___leave] = ACTIONS(3542), + [anon_sym_not] = ACTIONS(3542), + [anon_sym_compl] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_sizeof] = ACTIONS(3542), + [anon_sym___alignof__] = ACTIONS(3542), + [anon_sym___alignof] = ACTIONS(3542), + [anon_sym__alignof] = ACTIONS(3542), + [anon_sym_alignof] = ACTIONS(3542), + [anon_sym__Alignof] = ACTIONS(3542), + [anon_sym_offsetof] = ACTIONS(3542), + [anon_sym__Generic] = ACTIONS(3542), + [anon_sym_typename] = ACTIONS(3542), + [anon_sym_asm] = ACTIONS(3542), + [anon_sym___asm__] = ACTIONS(3542), + [anon_sym___asm] = ACTIONS(3542), + [sym_number_literal] = ACTIONS(3544), + [anon_sym_L_SQUOTE] = ACTIONS(3544), + [anon_sym_u_SQUOTE] = ACTIONS(3544), + [anon_sym_U_SQUOTE] = ACTIONS(3544), + [anon_sym_u8_SQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_L_DQUOTE] = ACTIONS(3544), + [anon_sym_u_DQUOTE] = ACTIONS(3544), + [anon_sym_U_DQUOTE] = ACTIONS(3544), + [anon_sym_u8_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [anon_sym_NULL] = ACTIONS(3542), + [anon_sym_nullptr] = ACTIONS(3542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3542), + [anon_sym_decltype] = ACTIONS(3542), + [anon_sym_explicit] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_module] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_template] = ACTIONS(3542), + [anon_sym_operator] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_static_assert] = ACTIONS(3542), + [anon_sym_concept] = ACTIONS(3542), + [anon_sym_co_return] = ACTIONS(3542), + [anon_sym_co_yield] = ACTIONS(3542), + [anon_sym_R_DQUOTE] = ACTIONS(3544), + [anon_sym_LR_DQUOTE] = ACTIONS(3544), + [anon_sym_uR_DQUOTE] = ACTIONS(3544), + [anon_sym_UR_DQUOTE] = ACTIONS(3544), + [anon_sym_u8R_DQUOTE] = ACTIONS(3544), + [anon_sym_co_await] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_requires] = ACTIONS(3542), + [anon_sym_CARET_CARET] = ACTIONS(3544), + [anon_sym_LBRACK_COLON] = ACTIONS(3544), + [sym_this] = ACTIONS(3542), + }, + [STATE(592)] = { + [ts_builtin_sym_end] = ACTIONS(3642), + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), + }, + [STATE(593)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token2] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), + }, + [STATE(594)] = { + [ts_builtin_sym_end] = ACTIONS(3642), + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), + }, + [STATE(595)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token2] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), + }, + [STATE(596)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token2] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), + }, + [STATE(597)] = { + [ts_builtin_sym_end] = ACTIONS(3550), + [sym_identifier] = ACTIONS(3548), + [aux_sym_preproc_include_token1] = ACTIONS(3548), + [aux_sym_preproc_def_token1] = ACTIONS(3548), + [aux_sym_preproc_if_token1] = ACTIONS(3548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3548), + [sym_preproc_directive] = ACTIONS(3548), + [anon_sym_LPAREN2] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_AMP_AMP] = ACTIONS(3550), + [anon_sym_AMP] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym___extension__] = ACTIONS(3548), + [anon_sym_typedef] = ACTIONS(3548), + [anon_sym_virtual] = ACTIONS(3548), + [anon_sym_extern] = ACTIONS(3548), + [anon_sym___attribute__] = ACTIONS(3548), + [anon_sym___attribute] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3550), + [anon_sym___declspec] = ACTIONS(3548), + [anon_sym___based] = ACTIONS(3548), + [anon_sym___cdecl] = ACTIONS(3548), + [anon_sym___clrcall] = ACTIONS(3548), + [anon_sym___stdcall] = ACTIONS(3548), + [anon_sym___fastcall] = ACTIONS(3548), + [anon_sym___thiscall] = ACTIONS(3548), + [anon_sym___vectorcall] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_signed] = ACTIONS(3548), + [anon_sym_unsigned] = ACTIONS(3548), + [anon_sym_long] = ACTIONS(3548), + [anon_sym_short] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_register] = ACTIONS(3548), + [anon_sym_inline] = ACTIONS(3548), + [anon_sym___inline] = ACTIONS(3548), + [anon_sym___inline__] = ACTIONS(3548), + [anon_sym___forceinline] = ACTIONS(3548), + [anon_sym_thread_local] = ACTIONS(3548), + [anon_sym___thread] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_constexpr] = ACTIONS(3548), + [anon_sym_volatile] = ACTIONS(3548), + [anon_sym_restrict] = ACTIONS(3548), + [anon_sym___restrict__] = ACTIONS(3548), + [anon_sym__Atomic] = ACTIONS(3548), + [anon_sym__Noreturn] = ACTIONS(3548), + [anon_sym_noreturn] = ACTIONS(3548), + [anon_sym__Nonnull] = ACTIONS(3548), + [anon_sym_mutable] = ACTIONS(3548), + [anon_sym_constinit] = ACTIONS(3548), + [anon_sym_consteval] = ACTIONS(3548), + [anon_sym_alignas] = ACTIONS(3548), + [anon_sym__Alignas] = ACTIONS(3548), + [sym_primitive_type] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_struct] = ACTIONS(3548), + [anon_sym_union] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_goto] = ACTIONS(3548), + [anon_sym___try] = ACTIONS(3548), + [anon_sym___leave] = ACTIONS(3548), + [anon_sym_not] = ACTIONS(3548), + [anon_sym_compl] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_sizeof] = ACTIONS(3548), + [anon_sym___alignof__] = ACTIONS(3548), + [anon_sym___alignof] = ACTIONS(3548), + [anon_sym__alignof] = ACTIONS(3548), + [anon_sym_alignof] = ACTIONS(3548), + [anon_sym__Alignof] = ACTIONS(3548), + [anon_sym_offsetof] = ACTIONS(3548), + [anon_sym__Generic] = ACTIONS(3548), + [anon_sym_typename] = ACTIONS(3548), + [anon_sym_asm] = ACTIONS(3548), + [anon_sym___asm__] = ACTIONS(3548), + [anon_sym___asm] = ACTIONS(3548), + [sym_number_literal] = ACTIONS(3550), + [anon_sym_L_SQUOTE] = ACTIONS(3550), + [anon_sym_u_SQUOTE] = ACTIONS(3550), + [anon_sym_U_SQUOTE] = ACTIONS(3550), + [anon_sym_u8_SQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_L_DQUOTE] = ACTIONS(3550), + [anon_sym_u_DQUOTE] = ACTIONS(3550), + [anon_sym_U_DQUOTE] = ACTIONS(3550), + [anon_sym_u8_DQUOTE] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [anon_sym_NULL] = ACTIONS(3548), + [anon_sym_nullptr] = ACTIONS(3548), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3548), + [anon_sym_decltype] = ACTIONS(3548), + [anon_sym_explicit] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3548), + [anon_sym_operator] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3548), + [anon_sym_concept] = ACTIONS(3548), + [anon_sym_co_return] = ACTIONS(3548), + [anon_sym_co_yield] = ACTIONS(3548), + [anon_sym_R_DQUOTE] = ACTIONS(3550), + [anon_sym_LR_DQUOTE] = ACTIONS(3550), + [anon_sym_uR_DQUOTE] = ACTIONS(3550), + [anon_sym_UR_DQUOTE] = ACTIONS(3550), + [anon_sym_u8R_DQUOTE] = ACTIONS(3550), + [anon_sym_co_await] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_requires] = ACTIONS(3548), + [anon_sym_CARET_CARET] = ACTIONS(3550), + [anon_sym_LBRACK_COLON] = ACTIONS(3550), + [sym_this] = ACTIONS(3548), + }, + [STATE(598)] = { + [ts_builtin_sym_end] = ACTIONS(3305), + [sym_identifier] = ACTIONS(3300), + [aux_sym_preproc_include_token1] = ACTIONS(3300), + [aux_sym_preproc_def_token1] = ACTIONS(3300), + [aux_sym_preproc_if_token1] = ACTIONS(3300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3300), + [sym_preproc_directive] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym___extension__] = ACTIONS(3300), + [anon_sym_typedef] = ACTIONS(3300), + [anon_sym_virtual] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(3300), + [anon_sym___attribute__] = ACTIONS(3300), + [anon_sym___attribute] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3305), + [anon_sym___declspec] = ACTIONS(3300), + [anon_sym___based] = ACTIONS(3300), + [anon_sym___cdecl] = ACTIONS(3300), + [anon_sym___clrcall] = ACTIONS(3300), + [anon_sym___stdcall] = ACTIONS(3300), + [anon_sym___fastcall] = ACTIONS(3300), + [anon_sym___thiscall] = ACTIONS(3300), + [anon_sym___vectorcall] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_signed] = ACTIONS(3300), + [anon_sym_unsigned] = ACTIONS(3300), + [anon_sym_long] = ACTIONS(3300), + [anon_sym_short] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_register] = ACTIONS(3300), + [anon_sym_inline] = ACTIONS(3300), + [anon_sym___inline] = ACTIONS(3300), + [anon_sym___inline__] = ACTIONS(3300), + [anon_sym___forceinline] = ACTIONS(3300), + [anon_sym_thread_local] = ACTIONS(3300), + [anon_sym___thread] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_constexpr] = ACTIONS(3300), + [anon_sym_volatile] = ACTIONS(3300), + [anon_sym_restrict] = ACTIONS(3300), + [anon_sym___restrict__] = ACTIONS(3300), + [anon_sym__Atomic] = ACTIONS(3300), + [anon_sym__Noreturn] = ACTIONS(3300), + [anon_sym_noreturn] = ACTIONS(3300), + [anon_sym__Nonnull] = ACTIONS(3300), + [anon_sym_mutable] = ACTIONS(3300), + [anon_sym_constinit] = ACTIONS(3300), + [anon_sym_consteval] = ACTIONS(3300), + [anon_sym_alignas] = ACTIONS(3300), + [anon_sym__Alignas] = ACTIONS(3300), + [sym_primitive_type] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_union] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_goto] = ACTIONS(3300), + [anon_sym___try] = ACTIONS(3300), + [anon_sym___leave] = ACTIONS(3300), + [anon_sym_not] = ACTIONS(3300), + [anon_sym_compl] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_sizeof] = ACTIONS(3300), + [anon_sym___alignof__] = ACTIONS(3300), + [anon_sym___alignof] = ACTIONS(3300), + [anon_sym__alignof] = ACTIONS(3300), + [anon_sym_alignof] = ACTIONS(3300), + [anon_sym__Alignof] = ACTIONS(3300), + [anon_sym_offsetof] = ACTIONS(3300), + [anon_sym__Generic] = ACTIONS(3300), + [anon_sym_typename] = ACTIONS(3300), + [anon_sym_asm] = ACTIONS(3300), + [anon_sym___asm__] = ACTIONS(3300), + [anon_sym___asm] = ACTIONS(3300), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3305), + [anon_sym_u_SQUOTE] = ACTIONS(3305), + [anon_sym_U_SQUOTE] = ACTIONS(3305), + [anon_sym_u8_SQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_L_DQUOTE] = ACTIONS(3305), + [anon_sym_u_DQUOTE] = ACTIONS(3305), + [anon_sym_U_DQUOTE] = ACTIONS(3305), + [anon_sym_u8_DQUOTE] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [anon_sym_NULL] = ACTIONS(3300), + [anon_sym_nullptr] = ACTIONS(3300), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3300), + [anon_sym_decltype] = ACTIONS(3300), + [anon_sym_explicit] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_template] = ACTIONS(3300), + [anon_sym_operator] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_static_assert] = ACTIONS(3300), + [anon_sym_concept] = ACTIONS(3300), + [anon_sym_co_return] = ACTIONS(3300), + [anon_sym_co_yield] = ACTIONS(3300), + [anon_sym_R_DQUOTE] = ACTIONS(3305), + [anon_sym_LR_DQUOTE] = ACTIONS(3305), + [anon_sym_uR_DQUOTE] = ACTIONS(3305), + [anon_sym_UR_DQUOTE] = ACTIONS(3305), + [anon_sym_u8R_DQUOTE] = ACTIONS(3305), + [anon_sym_co_await] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_requires] = ACTIONS(3300), + [anon_sym_CARET_CARET] = ACTIONS(3305), + [anon_sym_LBRACK_COLON] = ACTIONS(3305), + [sym_this] = ACTIONS(3300), + }, + [STATE(599)] = { + [sym_identifier] = ACTIONS(3157), + [aux_sym_preproc_include_token1] = ACTIONS(3157), + [aux_sym_preproc_def_token1] = ACTIONS(3157), + [aux_sym_preproc_if_token1] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3157), + [sym_preproc_directive] = ACTIONS(3157), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3157), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym___attribute__] = ACTIONS(3157), + [anon_sym___attribute] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3155), + [anon_sym___declspec] = ACTIONS(3157), + [anon_sym___based] = ACTIONS(3157), + [anon_sym___cdecl] = ACTIONS(3157), + [anon_sym___clrcall] = ACTIONS(3157), + [anon_sym___stdcall] = ACTIONS(3157), + [anon_sym___fastcall] = ACTIONS(3157), + [anon_sym___thiscall] = ACTIONS(3157), + [anon_sym___vectorcall] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_signed] = ACTIONS(3157), + [anon_sym_unsigned] = ACTIONS(3157), + [anon_sym_long] = ACTIONS(3157), + [anon_sym_short] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_register] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym___inline] = ACTIONS(3157), + [anon_sym___inline__] = ACTIONS(3157), + [anon_sym___forceinline] = ACTIONS(3157), + [anon_sym_thread_local] = ACTIONS(3157), + [anon_sym___thread] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_constexpr] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_restrict] = ACTIONS(3157), + [anon_sym___restrict__] = ACTIONS(3157), + [anon_sym__Atomic] = ACTIONS(3157), + [anon_sym__Noreturn] = ACTIONS(3157), + [anon_sym_noreturn] = ACTIONS(3157), + [anon_sym__Nonnull] = ACTIONS(3157), + [anon_sym_mutable] = ACTIONS(3157), + [anon_sym_constinit] = ACTIONS(3157), + [anon_sym_consteval] = ACTIONS(3157), + [anon_sym_alignas] = ACTIONS(3157), + [anon_sym__Alignas] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym___try] = ACTIONS(3157), + [anon_sym___leave] = ACTIONS(3157), + [anon_sym_not] = ACTIONS(3157), + [anon_sym_compl] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_sizeof] = ACTIONS(3157), + [anon_sym___alignof__] = ACTIONS(3157), + [anon_sym___alignof] = ACTIONS(3157), + [anon_sym__alignof] = ACTIONS(3157), + [anon_sym_alignof] = ACTIONS(3157), + [anon_sym__Alignof] = ACTIONS(3157), + [anon_sym_offsetof] = ACTIONS(3157), + [anon_sym__Generic] = ACTIONS(3157), + [anon_sym_typename] = ACTIONS(3157), + [anon_sym_asm] = ACTIONS(3157), + [anon_sym___asm__] = ACTIONS(3157), + [anon_sym___asm] = ACTIONS(3157), + [sym_number_literal] = ACTIONS(3155), + [anon_sym_L_SQUOTE] = ACTIONS(3155), + [anon_sym_u_SQUOTE] = ACTIONS(3155), + [anon_sym_U_SQUOTE] = ACTIONS(3155), + [anon_sym_u8_SQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_L_DQUOTE] = ACTIONS(3155), + [anon_sym_u_DQUOTE] = ACTIONS(3155), + [anon_sym_U_DQUOTE] = ACTIONS(3155), + [anon_sym_u8_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [anon_sym_NULL] = ACTIONS(3157), + [anon_sym_nullptr] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3157), + [anon_sym_decltype] = ACTIONS(3157), + [anon_sym_explicit] = ACTIONS(3157), + [anon_sym_export] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_template] = ACTIONS(3157), + [anon_sym_operator] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_namespace] = ACTIONS(3157), + [anon_sym_static_assert] = ACTIONS(3157), + [anon_sym_concept] = ACTIONS(3157), + [anon_sym_co_return] = ACTIONS(3157), + [anon_sym_co_yield] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_R_DQUOTE] = ACTIONS(3155), + [anon_sym_LR_DQUOTE] = ACTIONS(3155), + [anon_sym_uR_DQUOTE] = ACTIONS(3155), + [anon_sym_UR_DQUOTE] = ACTIONS(3155), + [anon_sym_u8R_DQUOTE] = ACTIONS(3155), + [anon_sym_co_await] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_requires] = ACTIONS(3157), + [anon_sym_CARET_CARET] = ACTIONS(3155), + [anon_sym_LBRACK_COLON] = ACTIONS(3155), + [sym_this] = ACTIONS(3157), + }, + [STATE(600)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token2] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), + }, + [STATE(601)] = { + [sym_identifier] = ACTIONS(3562), + [aux_sym_preproc_include_token1] = ACTIONS(3562), + [aux_sym_preproc_def_token1] = ACTIONS(3562), + [aux_sym_preproc_if_token1] = ACTIONS(3562), + [aux_sym_preproc_if_token2] = ACTIONS(3562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3562), + [sym_preproc_directive] = ACTIONS(3562), + [anon_sym_LPAREN2] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3564), + [anon_sym_AMP_AMP] = ACTIONS(3564), + [anon_sym_AMP] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym___extension__] = ACTIONS(3562), + [anon_sym_typedef] = ACTIONS(3562), + [anon_sym_virtual] = ACTIONS(3562), + [anon_sym_extern] = ACTIONS(3562), + [anon_sym___attribute__] = ACTIONS(3562), + [anon_sym___attribute] = ACTIONS(3562), + [anon_sym_using] = ACTIONS(3562), + [anon_sym_COLON_COLON] = ACTIONS(3564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3564), + [anon_sym___declspec] = ACTIONS(3562), + [anon_sym___based] = ACTIONS(3562), + [anon_sym___cdecl] = ACTIONS(3562), + [anon_sym___clrcall] = ACTIONS(3562), + [anon_sym___stdcall] = ACTIONS(3562), + [anon_sym___fastcall] = ACTIONS(3562), + [anon_sym___thiscall] = ACTIONS(3562), + [anon_sym___vectorcall] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_signed] = ACTIONS(3562), + [anon_sym_unsigned] = ACTIONS(3562), + [anon_sym_long] = ACTIONS(3562), + [anon_sym_short] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_register] = ACTIONS(3562), + [anon_sym_inline] = ACTIONS(3562), + [anon_sym___inline] = ACTIONS(3562), + [anon_sym___inline__] = ACTIONS(3562), + [anon_sym___forceinline] = ACTIONS(3562), + [anon_sym_thread_local] = ACTIONS(3562), + [anon_sym___thread] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_constexpr] = ACTIONS(3562), + [anon_sym_volatile] = ACTIONS(3562), + [anon_sym_restrict] = ACTIONS(3562), + [anon_sym___restrict__] = ACTIONS(3562), + [anon_sym__Atomic] = ACTIONS(3562), + [anon_sym__Noreturn] = ACTIONS(3562), + [anon_sym_noreturn] = ACTIONS(3562), + [anon_sym__Nonnull] = ACTIONS(3562), + [anon_sym_mutable] = ACTIONS(3562), + [anon_sym_constinit] = ACTIONS(3562), + [anon_sym_consteval] = ACTIONS(3562), + [anon_sym_alignas] = ACTIONS(3562), + [anon_sym__Alignas] = ACTIONS(3562), + [sym_primitive_type] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_struct] = ACTIONS(3562), + [anon_sym_union] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_else] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_case] = ACTIONS(3562), + [anon_sym_default] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_goto] = ACTIONS(3562), + [anon_sym___try] = ACTIONS(3562), + [anon_sym___leave] = ACTIONS(3562), + [anon_sym_not] = ACTIONS(3562), + [anon_sym_compl] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_sizeof] = ACTIONS(3562), + [anon_sym___alignof__] = ACTIONS(3562), + [anon_sym___alignof] = ACTIONS(3562), + [anon_sym__alignof] = ACTIONS(3562), + [anon_sym_alignof] = ACTIONS(3562), + [anon_sym__Alignof] = ACTIONS(3562), + [anon_sym_offsetof] = ACTIONS(3562), + [anon_sym__Generic] = ACTIONS(3562), + [anon_sym_typename] = ACTIONS(3562), + [anon_sym_asm] = ACTIONS(3562), + [anon_sym___asm__] = ACTIONS(3562), + [anon_sym___asm] = ACTIONS(3562), + [sym_number_literal] = ACTIONS(3564), + [anon_sym_L_SQUOTE] = ACTIONS(3564), + [anon_sym_u_SQUOTE] = ACTIONS(3564), + [anon_sym_U_SQUOTE] = ACTIONS(3564), + [anon_sym_u8_SQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_L_DQUOTE] = ACTIONS(3564), + [anon_sym_u_DQUOTE] = ACTIONS(3564), + [anon_sym_U_DQUOTE] = ACTIONS(3564), + [anon_sym_u8_DQUOTE] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [anon_sym_NULL] = ACTIONS(3562), + [anon_sym_nullptr] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3562), + [anon_sym_decltype] = ACTIONS(3562), + [anon_sym_explicit] = ACTIONS(3562), + [anon_sym_export] = ACTIONS(3562), + [anon_sym_module] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_template] = ACTIONS(3562), + [anon_sym_operator] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_namespace] = ACTIONS(3562), + [anon_sym_static_assert] = ACTIONS(3562), + [anon_sym_concept] = ACTIONS(3562), + [anon_sym_co_return] = ACTIONS(3562), + [anon_sym_co_yield] = ACTIONS(3562), + [anon_sym_R_DQUOTE] = ACTIONS(3564), + [anon_sym_LR_DQUOTE] = ACTIONS(3564), + [anon_sym_uR_DQUOTE] = ACTIONS(3564), + [anon_sym_UR_DQUOTE] = ACTIONS(3564), + [anon_sym_u8R_DQUOTE] = ACTIONS(3564), + [anon_sym_co_await] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_requires] = ACTIONS(3562), + [anon_sym_CARET_CARET] = ACTIONS(3564), + [anon_sym_LBRACK_COLON] = ACTIONS(3564), + [sym_this] = ACTIONS(3562), + }, + [STATE(602)] = { + [ts_builtin_sym_end] = ACTIONS(3612), + [sym_identifier] = ACTIONS(3610), + [aux_sym_preproc_include_token1] = ACTIONS(3610), + [aux_sym_preproc_def_token1] = ACTIONS(3610), + [aux_sym_preproc_if_token1] = ACTIONS(3610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3610), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3610), + [sym_preproc_directive] = ACTIONS(3610), + [anon_sym_LPAREN2] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_AMP] = ACTIONS(3610), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym___extension__] = ACTIONS(3610), + [anon_sym_typedef] = ACTIONS(3610), + [anon_sym_virtual] = ACTIONS(3610), + [anon_sym_extern] = ACTIONS(3610), + [anon_sym___attribute__] = ACTIONS(3610), + [anon_sym___attribute] = ACTIONS(3610), + [anon_sym_using] = ACTIONS(3610), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3612), + [anon_sym___declspec] = ACTIONS(3610), + [anon_sym___based] = ACTIONS(3610), + [anon_sym___cdecl] = ACTIONS(3610), + [anon_sym___clrcall] = ACTIONS(3610), + [anon_sym___stdcall] = ACTIONS(3610), + [anon_sym___fastcall] = ACTIONS(3610), + [anon_sym___thiscall] = ACTIONS(3610), + [anon_sym___vectorcall] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_signed] = ACTIONS(3610), + [anon_sym_unsigned] = ACTIONS(3610), + [anon_sym_long] = ACTIONS(3610), + [anon_sym_short] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3610), + [anon_sym_static] = ACTIONS(3610), + [anon_sym_register] = ACTIONS(3610), + [anon_sym_inline] = ACTIONS(3610), + [anon_sym___inline] = ACTIONS(3610), + [anon_sym___inline__] = ACTIONS(3610), + [anon_sym___forceinline] = ACTIONS(3610), + [anon_sym_thread_local] = ACTIONS(3610), + [anon_sym___thread] = ACTIONS(3610), + [anon_sym_const] = ACTIONS(3610), + [anon_sym_constexpr] = ACTIONS(3610), + [anon_sym_volatile] = ACTIONS(3610), + [anon_sym_restrict] = ACTIONS(3610), + [anon_sym___restrict__] = ACTIONS(3610), + [anon_sym__Atomic] = ACTIONS(3610), + [anon_sym__Noreturn] = ACTIONS(3610), + [anon_sym_noreturn] = ACTIONS(3610), + [anon_sym__Nonnull] = ACTIONS(3610), + [anon_sym_mutable] = ACTIONS(3610), + [anon_sym_constinit] = ACTIONS(3610), + [anon_sym_consteval] = ACTIONS(3610), + [anon_sym_alignas] = ACTIONS(3610), + [anon_sym__Alignas] = ACTIONS(3610), + [sym_primitive_type] = ACTIONS(3610), + [anon_sym_enum] = ACTIONS(3610), + [anon_sym_class] = ACTIONS(3610), + [anon_sym_struct] = ACTIONS(3610), + [anon_sym_union] = ACTIONS(3610), + [anon_sym_if] = ACTIONS(3610), + [anon_sym_else] = ACTIONS(3610), + [anon_sym_switch] = ACTIONS(3610), + [anon_sym_case] = ACTIONS(3610), + [anon_sym_default] = ACTIONS(3610), + [anon_sym_while] = ACTIONS(3610), + [anon_sym_do] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3610), + [anon_sym_break] = ACTIONS(3610), + [anon_sym_continue] = ACTIONS(3610), + [anon_sym_goto] = ACTIONS(3610), + [anon_sym___try] = ACTIONS(3610), + [anon_sym___leave] = ACTIONS(3610), + [anon_sym_not] = ACTIONS(3610), + [anon_sym_compl] = ACTIONS(3610), + [anon_sym_DASH_DASH] = ACTIONS(3612), + [anon_sym_PLUS_PLUS] = ACTIONS(3612), + [anon_sym_sizeof] = ACTIONS(3610), + [anon_sym___alignof__] = ACTIONS(3610), + [anon_sym___alignof] = ACTIONS(3610), + [anon_sym__alignof] = ACTIONS(3610), + [anon_sym_alignof] = ACTIONS(3610), + [anon_sym__Alignof] = ACTIONS(3610), + [anon_sym_offsetof] = ACTIONS(3610), + [anon_sym__Generic] = ACTIONS(3610), + [anon_sym_typename] = ACTIONS(3610), + [anon_sym_asm] = ACTIONS(3610), + [anon_sym___asm__] = ACTIONS(3610), + [anon_sym___asm] = ACTIONS(3610), + [sym_number_literal] = ACTIONS(3612), + [anon_sym_L_SQUOTE] = ACTIONS(3612), + [anon_sym_u_SQUOTE] = ACTIONS(3612), + [anon_sym_U_SQUOTE] = ACTIONS(3612), + [anon_sym_u8_SQUOTE] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(3612), + [anon_sym_L_DQUOTE] = ACTIONS(3612), + [anon_sym_u_DQUOTE] = ACTIONS(3612), + [anon_sym_U_DQUOTE] = ACTIONS(3612), + [anon_sym_u8_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [sym_true] = ACTIONS(3610), + [sym_false] = ACTIONS(3610), + [anon_sym_NULL] = ACTIONS(3610), + [anon_sym_nullptr] = ACTIONS(3610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3610), + [anon_sym_decltype] = ACTIONS(3610), + [anon_sym_explicit] = ACTIONS(3610), + [anon_sym_export] = ACTIONS(3610), + [anon_sym_module] = ACTIONS(3610), + [anon_sym_import] = ACTIONS(3610), + [anon_sym_template] = ACTIONS(3610), + [anon_sym_operator] = ACTIONS(3610), + [anon_sym_try] = ACTIONS(3610), + [anon_sym_delete] = ACTIONS(3610), + [anon_sym_throw] = ACTIONS(3610), + [anon_sym_namespace] = ACTIONS(3610), + [anon_sym_static_assert] = ACTIONS(3610), + [anon_sym_concept] = ACTIONS(3610), + [anon_sym_co_return] = ACTIONS(3610), + [anon_sym_co_yield] = ACTIONS(3610), + [anon_sym_R_DQUOTE] = ACTIONS(3612), + [anon_sym_LR_DQUOTE] = ACTIONS(3612), + [anon_sym_uR_DQUOTE] = ACTIONS(3612), + [anon_sym_UR_DQUOTE] = ACTIONS(3612), + [anon_sym_u8R_DQUOTE] = ACTIONS(3612), + [anon_sym_co_await] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3610), + [anon_sym_requires] = ACTIONS(3610), + [anon_sym_CARET_CARET] = ACTIONS(3612), + [anon_sym_LBRACK_COLON] = ACTIONS(3612), + [sym_this] = ACTIONS(3610), + }, + [STATE(603)] = { + [sym_identifier] = ACTIONS(3530), + [aux_sym_preproc_include_token1] = ACTIONS(3530), + [aux_sym_preproc_def_token1] = ACTIONS(3530), + [aux_sym_preproc_if_token1] = ACTIONS(3530), + [aux_sym_preproc_if_token2] = ACTIONS(3530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3530), + [sym_preproc_directive] = ACTIONS(3530), + [anon_sym_LPAREN2] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_STAR] = ACTIONS(3532), + [anon_sym_AMP_AMP] = ACTIONS(3532), + [anon_sym_AMP] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym___extension__] = ACTIONS(3530), + [anon_sym_typedef] = ACTIONS(3530), + [anon_sym_virtual] = ACTIONS(3530), + [anon_sym_extern] = ACTIONS(3530), + [anon_sym___attribute__] = ACTIONS(3530), + [anon_sym___attribute] = ACTIONS(3530), + [anon_sym_using] = ACTIONS(3530), + [anon_sym_COLON_COLON] = ACTIONS(3532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3532), + [anon_sym___declspec] = ACTIONS(3530), + [anon_sym___based] = ACTIONS(3530), + [anon_sym___cdecl] = ACTIONS(3530), + [anon_sym___clrcall] = ACTIONS(3530), + [anon_sym___stdcall] = ACTIONS(3530), + [anon_sym___fastcall] = ACTIONS(3530), + [anon_sym___thiscall] = ACTIONS(3530), + [anon_sym___vectorcall] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_signed] = ACTIONS(3530), + [anon_sym_unsigned] = ACTIONS(3530), + [anon_sym_long] = ACTIONS(3530), + [anon_sym_short] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_register] = ACTIONS(3530), + [anon_sym_inline] = ACTIONS(3530), + [anon_sym___inline] = ACTIONS(3530), + [anon_sym___inline__] = ACTIONS(3530), + [anon_sym___forceinline] = ACTIONS(3530), + [anon_sym_thread_local] = ACTIONS(3530), + [anon_sym___thread] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_constexpr] = ACTIONS(3530), + [anon_sym_volatile] = ACTIONS(3530), + [anon_sym_restrict] = ACTIONS(3530), + [anon_sym___restrict__] = ACTIONS(3530), + [anon_sym__Atomic] = ACTIONS(3530), + [anon_sym__Noreturn] = ACTIONS(3530), + [anon_sym_noreturn] = ACTIONS(3530), + [anon_sym__Nonnull] = ACTIONS(3530), + [anon_sym_mutable] = ACTIONS(3530), + [anon_sym_constinit] = ACTIONS(3530), + [anon_sym_consteval] = ACTIONS(3530), + [anon_sym_alignas] = ACTIONS(3530), + [anon_sym__Alignas] = ACTIONS(3530), + [sym_primitive_type] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_struct] = ACTIONS(3530), + [anon_sym_union] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_case] = ACTIONS(3530), + [anon_sym_default] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_goto] = ACTIONS(3530), + [anon_sym___try] = ACTIONS(3530), + [anon_sym___leave] = ACTIONS(3530), + [anon_sym_not] = ACTIONS(3530), + [anon_sym_compl] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_sizeof] = ACTIONS(3530), + [anon_sym___alignof__] = ACTIONS(3530), + [anon_sym___alignof] = ACTIONS(3530), + [anon_sym__alignof] = ACTIONS(3530), + [anon_sym_alignof] = ACTIONS(3530), + [anon_sym__Alignof] = ACTIONS(3530), + [anon_sym_offsetof] = ACTIONS(3530), + [anon_sym__Generic] = ACTIONS(3530), + [anon_sym_typename] = ACTIONS(3530), + [anon_sym_asm] = ACTIONS(3530), + [anon_sym___asm__] = ACTIONS(3530), + [anon_sym___asm] = ACTIONS(3530), + [sym_number_literal] = ACTIONS(3532), + [anon_sym_L_SQUOTE] = ACTIONS(3532), + [anon_sym_u_SQUOTE] = ACTIONS(3532), + [anon_sym_U_SQUOTE] = ACTIONS(3532), + [anon_sym_u8_SQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_L_DQUOTE] = ACTIONS(3532), + [anon_sym_u_DQUOTE] = ACTIONS(3532), + [anon_sym_U_DQUOTE] = ACTIONS(3532), + [anon_sym_u8_DQUOTE] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [anon_sym_NULL] = ACTIONS(3530), + [anon_sym_nullptr] = ACTIONS(3530), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3530), + [anon_sym_decltype] = ACTIONS(3530), + [anon_sym_explicit] = ACTIONS(3530), + [anon_sym_export] = ACTIONS(3530), + [anon_sym_module] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_template] = ACTIONS(3530), + [anon_sym_operator] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3530), + [anon_sym_static_assert] = ACTIONS(3530), + [anon_sym_concept] = ACTIONS(3530), + [anon_sym_co_return] = ACTIONS(3530), + [anon_sym_co_yield] = ACTIONS(3530), + [anon_sym_R_DQUOTE] = ACTIONS(3532), + [anon_sym_LR_DQUOTE] = ACTIONS(3532), + [anon_sym_uR_DQUOTE] = ACTIONS(3532), + [anon_sym_UR_DQUOTE] = ACTIONS(3532), + [anon_sym_u8R_DQUOTE] = ACTIONS(3532), + [anon_sym_co_await] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_requires] = ACTIONS(3530), + [anon_sym_CARET_CARET] = ACTIONS(3532), + [anon_sym_LBRACK_COLON] = ACTIONS(3532), + [sym_this] = ACTIONS(3530), + }, + [STATE(604)] = { + [sym_else_clause] = STATE(701), + [sym_identifier] = ACTIONS(3286), + [aux_sym_preproc_include_token1] = ACTIONS(3286), + [aux_sym_preproc_def_token1] = ACTIONS(3286), + [aux_sym_preproc_if_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3286), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3286), + [sym_preproc_directive] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP_AMP] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym___extension__] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym___attribute] = ACTIONS(3286), + [anon_sym_using] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym___based] = ACTIONS(3286), + [anon_sym___cdecl] = ACTIONS(3286), + [anon_sym___clrcall] = ACTIONS(3286), + [anon_sym___stdcall] = ACTIONS(3286), + [anon_sym___fastcall] = ACTIONS(3286), + [anon_sym___thiscall] = ACTIONS(3286), + [anon_sym___vectorcall] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym___inline] = ACTIONS(3286), + [anon_sym___inline__] = ACTIONS(3286), + [anon_sym___forceinline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym___thread] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym__Nonnull] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [anon_sym_alignas] = ACTIONS(3286), + [anon_sym__Alignas] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym___try] = ACTIONS(3286), + [anon_sym___leave] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym___alignof__] = ACTIONS(3286), + [anon_sym___alignof] = ACTIONS(3286), + [anon_sym__alignof] = ACTIONS(3286), + [anon_sym_alignof] = ACTIONS(3286), + [anon_sym__Alignof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [anon_sym___asm] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_explicit] = ACTIONS(3286), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_import] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_operator] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_static_assert] = ACTIONS(3286), + [anon_sym_concept] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [anon_sym_CARET_CARET] = ACTIONS(3288), + [anon_sym_LBRACK_COLON] = ACTIONS(3288), + [sym_this] = ACTIONS(3286), + }, + [STATE(605)] = { + [ts_builtin_sym_end] = ACTIONS(3646), + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_include_token1] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym___cdecl] = ACTIONS(3644), + [anon_sym___clrcall] = ACTIONS(3644), + [anon_sym___stdcall] = ACTIONS(3644), + [anon_sym___fastcall] = ACTIONS(3644), + [anon_sym___thiscall] = ACTIONS(3644), + [anon_sym___vectorcall] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_goto] = ACTIONS(3644), + [anon_sym___try] = ACTIONS(3644), + [anon_sym___leave] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_compl] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_sizeof] = ACTIONS(3644), + [anon_sym___alignof__] = ACTIONS(3644), + [anon_sym___alignof] = ACTIONS(3644), + [anon_sym__alignof] = ACTIONS(3644), + [anon_sym_alignof] = ACTIONS(3644), + [anon_sym__Alignof] = ACTIONS(3644), + [anon_sym_offsetof] = ACTIONS(3644), + [anon_sym__Generic] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [anon_sym_asm] = ACTIONS(3644), + [anon_sym___asm__] = ACTIONS(3644), + [anon_sym___asm] = ACTIONS(3644), + [sym_number_literal] = ACTIONS(3646), + [anon_sym_L_SQUOTE] = ACTIONS(3646), + [anon_sym_u_SQUOTE] = ACTIONS(3646), + [anon_sym_U_SQUOTE] = ACTIONS(3646), + [anon_sym_u8_SQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_L_DQUOTE] = ACTIONS(3646), + [anon_sym_u_DQUOTE] = ACTIONS(3646), + [anon_sym_U_DQUOTE] = ACTIONS(3646), + [anon_sym_u8_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [anon_sym_NULL] = ACTIONS(3644), + [anon_sym_nullptr] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_concept] = ACTIONS(3644), + [anon_sym_co_return] = ACTIONS(3644), + [anon_sym_co_yield] = ACTIONS(3644), + [anon_sym_R_DQUOTE] = ACTIONS(3646), + [anon_sym_LR_DQUOTE] = ACTIONS(3646), + [anon_sym_uR_DQUOTE] = ACTIONS(3646), + [anon_sym_UR_DQUOTE] = ACTIONS(3646), + [anon_sym_u8R_DQUOTE] = ACTIONS(3646), + [anon_sym_co_await] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_requires] = ACTIONS(3644), + [anon_sym_CARET_CARET] = ACTIONS(3646), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), + }, + [STATE(606)] = { + [sym_identifier] = ACTIONS(3616), + [aux_sym_preproc_include_token1] = ACTIONS(3616), + [aux_sym_preproc_def_token1] = ACTIONS(3616), + [aux_sym_preproc_if_token1] = ACTIONS(3616), + [aux_sym_preproc_if_token2] = ACTIONS(3616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3616), + [sym_preproc_directive] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_AMP_AMP] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym___extension__] = ACTIONS(3616), + [anon_sym_typedef] = ACTIONS(3616), + [anon_sym_virtual] = ACTIONS(3616), + [anon_sym_extern] = ACTIONS(3616), + [anon_sym___attribute__] = ACTIONS(3616), + [anon_sym___attribute] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3618), + [anon_sym___declspec] = ACTIONS(3616), + [anon_sym___based] = ACTIONS(3616), + [anon_sym___cdecl] = ACTIONS(3616), + [anon_sym___clrcall] = ACTIONS(3616), + [anon_sym___stdcall] = ACTIONS(3616), + [anon_sym___fastcall] = ACTIONS(3616), + [anon_sym___thiscall] = ACTIONS(3616), + [anon_sym___vectorcall] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_signed] = ACTIONS(3616), + [anon_sym_unsigned] = ACTIONS(3616), + [anon_sym_long] = ACTIONS(3616), + [anon_sym_short] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_register] = ACTIONS(3616), + [anon_sym_inline] = ACTIONS(3616), + [anon_sym___inline] = ACTIONS(3616), + [anon_sym___inline__] = ACTIONS(3616), + [anon_sym___forceinline] = ACTIONS(3616), + [anon_sym_thread_local] = ACTIONS(3616), + [anon_sym___thread] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_constexpr] = ACTIONS(3616), + [anon_sym_volatile] = ACTIONS(3616), + [anon_sym_restrict] = ACTIONS(3616), + [anon_sym___restrict__] = ACTIONS(3616), + [anon_sym__Atomic] = ACTIONS(3616), + [anon_sym__Noreturn] = ACTIONS(3616), + [anon_sym_noreturn] = ACTIONS(3616), + [anon_sym__Nonnull] = ACTIONS(3616), + [anon_sym_mutable] = ACTIONS(3616), + [anon_sym_constinit] = ACTIONS(3616), + [anon_sym_consteval] = ACTIONS(3616), + [anon_sym_alignas] = ACTIONS(3616), + [anon_sym__Alignas] = ACTIONS(3616), + [sym_primitive_type] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3616), + [anon_sym_union] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_case] = ACTIONS(3616), + [anon_sym_default] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_goto] = ACTIONS(3616), + [anon_sym___try] = ACTIONS(3616), + [anon_sym___leave] = ACTIONS(3616), + [anon_sym_not] = ACTIONS(3616), + [anon_sym_compl] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(3616), + [anon_sym___alignof] = ACTIONS(3616), + [anon_sym__alignof] = ACTIONS(3616), + [anon_sym_alignof] = ACTIONS(3616), + [anon_sym__Alignof] = ACTIONS(3616), + [anon_sym_offsetof] = ACTIONS(3616), + [anon_sym__Generic] = ACTIONS(3616), + [anon_sym_typename] = ACTIONS(3616), + [anon_sym_asm] = ACTIONS(3616), + [anon_sym___asm__] = ACTIONS(3616), + [anon_sym___asm] = ACTIONS(3616), + [sym_number_literal] = ACTIONS(3618), + [anon_sym_L_SQUOTE] = ACTIONS(3618), + [anon_sym_u_SQUOTE] = ACTIONS(3618), + [anon_sym_U_SQUOTE] = ACTIONS(3618), + [anon_sym_u8_SQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_L_DQUOTE] = ACTIONS(3618), + [anon_sym_u_DQUOTE] = ACTIONS(3618), + [anon_sym_U_DQUOTE] = ACTIONS(3618), + [anon_sym_u8_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [anon_sym_NULL] = ACTIONS(3616), + [anon_sym_nullptr] = ACTIONS(3616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3616), + [anon_sym_decltype] = ACTIONS(3616), + [anon_sym_explicit] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_module] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_template] = ACTIONS(3616), + [anon_sym_operator] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_static_assert] = ACTIONS(3616), + [anon_sym_concept] = ACTIONS(3616), + [anon_sym_co_return] = ACTIONS(3616), + [anon_sym_co_yield] = ACTIONS(3616), + [anon_sym_R_DQUOTE] = ACTIONS(3618), + [anon_sym_LR_DQUOTE] = ACTIONS(3618), + [anon_sym_uR_DQUOTE] = ACTIONS(3618), + [anon_sym_UR_DQUOTE] = ACTIONS(3618), + [anon_sym_u8R_DQUOTE] = ACTIONS(3618), + [anon_sym_co_await] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_requires] = ACTIONS(3616), + [anon_sym_CARET_CARET] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3618), + [sym_this] = ACTIONS(3616), + }, + [STATE(607)] = { + [sym_identifier] = ACTIONS(3486), + [aux_sym_preproc_include_token1] = ACTIONS(3486), + [aux_sym_preproc_def_token1] = ACTIONS(3486), + [aux_sym_preproc_if_token1] = ACTIONS(3486), + [aux_sym_preproc_if_token2] = ACTIONS(3486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3486), + [sym_preproc_directive] = ACTIONS(3486), + [anon_sym_LPAREN2] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_STAR] = ACTIONS(3488), + [anon_sym_AMP_AMP] = ACTIONS(3488), + [anon_sym_AMP] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3486), + [anon_sym_typedef] = ACTIONS(3486), + [anon_sym_virtual] = ACTIONS(3486), + [anon_sym_extern] = ACTIONS(3486), + [anon_sym___attribute__] = ACTIONS(3486), + [anon_sym___attribute] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_COLON_COLON] = ACTIONS(3488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3488), + [anon_sym___declspec] = ACTIONS(3486), + [anon_sym___based] = ACTIONS(3486), + [anon_sym___cdecl] = ACTIONS(3486), + [anon_sym___clrcall] = ACTIONS(3486), + [anon_sym___stdcall] = ACTIONS(3486), + [anon_sym___fastcall] = ACTIONS(3486), + [anon_sym___thiscall] = ACTIONS(3486), + [anon_sym___vectorcall] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_signed] = ACTIONS(3486), + [anon_sym_unsigned] = ACTIONS(3486), + [anon_sym_long] = ACTIONS(3486), + [anon_sym_short] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_register] = ACTIONS(3486), + [anon_sym_inline] = ACTIONS(3486), + [anon_sym___inline] = ACTIONS(3486), + [anon_sym___inline__] = ACTIONS(3486), + [anon_sym___forceinline] = ACTIONS(3486), + [anon_sym_thread_local] = ACTIONS(3486), + [anon_sym___thread] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_constexpr] = ACTIONS(3486), + [anon_sym_volatile] = ACTIONS(3486), + [anon_sym_restrict] = ACTIONS(3486), + [anon_sym___restrict__] = ACTIONS(3486), + [anon_sym__Atomic] = ACTIONS(3486), + [anon_sym__Noreturn] = ACTIONS(3486), + [anon_sym_noreturn] = ACTIONS(3486), + [anon_sym__Nonnull] = ACTIONS(3486), + [anon_sym_mutable] = ACTIONS(3486), + [anon_sym_constinit] = ACTIONS(3486), + [anon_sym_consteval] = ACTIONS(3486), + [anon_sym_alignas] = ACTIONS(3486), + [anon_sym__Alignas] = ACTIONS(3486), + [sym_primitive_type] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_struct] = ACTIONS(3486), + [anon_sym_union] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_case] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_goto] = ACTIONS(3486), + [anon_sym___try] = ACTIONS(3486), + [anon_sym___leave] = ACTIONS(3486), + [anon_sym_not] = ACTIONS(3486), + [anon_sym_compl] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_sizeof] = ACTIONS(3486), + [anon_sym___alignof__] = ACTIONS(3486), + [anon_sym___alignof] = ACTIONS(3486), + [anon_sym__alignof] = ACTIONS(3486), + [anon_sym_alignof] = ACTIONS(3486), + [anon_sym__Alignof] = ACTIONS(3486), + [anon_sym_offsetof] = ACTIONS(3486), + [anon_sym__Generic] = ACTIONS(3486), + [anon_sym_typename] = ACTIONS(3486), + [anon_sym_asm] = ACTIONS(3486), + [anon_sym___asm__] = ACTIONS(3486), + [anon_sym___asm] = ACTIONS(3486), + [sym_number_literal] = ACTIONS(3488), + [anon_sym_L_SQUOTE] = ACTIONS(3488), + [anon_sym_u_SQUOTE] = ACTIONS(3488), + [anon_sym_U_SQUOTE] = ACTIONS(3488), + [anon_sym_u8_SQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_L_DQUOTE] = ACTIONS(3488), + [anon_sym_u_DQUOTE] = ACTIONS(3488), + [anon_sym_U_DQUOTE] = ACTIONS(3488), + [anon_sym_u8_DQUOTE] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [anon_sym_NULL] = ACTIONS(3486), + [anon_sym_nullptr] = ACTIONS(3486), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3486), + [anon_sym_decltype] = ACTIONS(3486), + [anon_sym_explicit] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(3486), + [anon_sym_operator] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_static_assert] = ACTIONS(3486), + [anon_sym_concept] = ACTIONS(3486), + [anon_sym_co_return] = ACTIONS(3486), + [anon_sym_co_yield] = ACTIONS(3486), + [anon_sym_R_DQUOTE] = ACTIONS(3488), + [anon_sym_LR_DQUOTE] = ACTIONS(3488), + [anon_sym_uR_DQUOTE] = ACTIONS(3488), + [anon_sym_UR_DQUOTE] = ACTIONS(3488), + [anon_sym_u8R_DQUOTE] = ACTIONS(3488), + [anon_sym_co_await] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_requires] = ACTIONS(3486), + [anon_sym_CARET_CARET] = ACTIONS(3488), + [anon_sym_LBRACK_COLON] = ACTIONS(3488), + [sym_this] = ACTIONS(3486), + }, + [STATE(608)] = { + [sym_identifier] = ACTIONS(3620), + [aux_sym_preproc_include_token1] = ACTIONS(3620), + [aux_sym_preproc_def_token1] = ACTIONS(3620), + [aux_sym_preproc_if_token1] = ACTIONS(3620), + [aux_sym_preproc_if_token2] = ACTIONS(3620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3620), + [sym_preproc_directive] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [anon_sym_AMP_AMP] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym___extension__] = ACTIONS(3620), + [anon_sym_typedef] = ACTIONS(3620), + [anon_sym_virtual] = ACTIONS(3620), + [anon_sym_extern] = ACTIONS(3620), + [anon_sym___attribute__] = ACTIONS(3620), + [anon_sym___attribute] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3622), + [anon_sym___declspec] = ACTIONS(3620), + [anon_sym___based] = ACTIONS(3620), + [anon_sym___cdecl] = ACTIONS(3620), + [anon_sym___clrcall] = ACTIONS(3620), + [anon_sym___stdcall] = ACTIONS(3620), + [anon_sym___fastcall] = ACTIONS(3620), + [anon_sym___thiscall] = ACTIONS(3620), + [anon_sym___vectorcall] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3620), + [anon_sym_unsigned] = ACTIONS(3620), + [anon_sym_long] = ACTIONS(3620), + [anon_sym_short] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_register] = ACTIONS(3620), + [anon_sym_inline] = ACTIONS(3620), + [anon_sym___inline] = ACTIONS(3620), + [anon_sym___inline__] = ACTIONS(3620), + [anon_sym___forceinline] = ACTIONS(3620), + [anon_sym_thread_local] = ACTIONS(3620), + [anon_sym___thread] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_constexpr] = ACTIONS(3620), + [anon_sym_volatile] = ACTIONS(3620), + [anon_sym_restrict] = ACTIONS(3620), + [anon_sym___restrict__] = ACTIONS(3620), + [anon_sym__Atomic] = ACTIONS(3620), + [anon_sym__Noreturn] = ACTIONS(3620), + [anon_sym_noreturn] = ACTIONS(3620), + [anon_sym__Nonnull] = ACTIONS(3620), + [anon_sym_mutable] = ACTIONS(3620), + [anon_sym_constinit] = ACTIONS(3620), + [anon_sym_consteval] = ACTIONS(3620), + [anon_sym_alignas] = ACTIONS(3620), + [anon_sym__Alignas] = ACTIONS(3620), + [sym_primitive_type] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_struct] = ACTIONS(3620), + [anon_sym_union] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_else] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_case] = ACTIONS(3620), + [anon_sym_default] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_goto] = ACTIONS(3620), + [anon_sym___try] = ACTIONS(3620), + [anon_sym___leave] = ACTIONS(3620), + [anon_sym_not] = ACTIONS(3620), + [anon_sym_compl] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_sizeof] = ACTIONS(3620), + [anon_sym___alignof__] = ACTIONS(3620), + [anon_sym___alignof] = ACTIONS(3620), + [anon_sym__alignof] = ACTIONS(3620), + [anon_sym_alignof] = ACTIONS(3620), + [anon_sym__Alignof] = ACTIONS(3620), + [anon_sym_offsetof] = ACTIONS(3620), + [anon_sym__Generic] = ACTIONS(3620), + [anon_sym_typename] = ACTIONS(3620), + [anon_sym_asm] = ACTIONS(3620), + [anon_sym___asm__] = ACTIONS(3620), + [anon_sym___asm] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [anon_sym_L_SQUOTE] = ACTIONS(3622), + [anon_sym_u_SQUOTE] = ACTIONS(3622), + [anon_sym_U_SQUOTE] = ACTIONS(3622), + [anon_sym_u8_SQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [anon_sym_NULL] = ACTIONS(3620), + [anon_sym_nullptr] = ACTIONS(3620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3620), + [anon_sym_decltype] = ACTIONS(3620), + [anon_sym_explicit] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_module] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_template] = ACTIONS(3620), + [anon_sym_operator] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_static_assert] = ACTIONS(3620), + [anon_sym_concept] = ACTIONS(3620), + [anon_sym_co_return] = ACTIONS(3620), + [anon_sym_co_yield] = ACTIONS(3620), + [anon_sym_R_DQUOTE] = ACTIONS(3622), + [anon_sym_LR_DQUOTE] = ACTIONS(3622), + [anon_sym_uR_DQUOTE] = ACTIONS(3622), + [anon_sym_UR_DQUOTE] = ACTIONS(3622), + [anon_sym_u8R_DQUOTE] = ACTIONS(3622), + [anon_sym_co_await] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_requires] = ACTIONS(3620), + [anon_sym_CARET_CARET] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3622), + [sym_this] = ACTIONS(3620), + }, + [STATE(609)] = { + [sym_identifier] = ACTIONS(3624), + [aux_sym_preproc_include_token1] = ACTIONS(3624), + [aux_sym_preproc_def_token1] = ACTIONS(3624), + [aux_sym_preproc_if_token1] = ACTIONS(3624), + [aux_sym_preproc_if_token2] = ACTIONS(3624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3624), + [sym_preproc_directive] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3626), + [anon_sym_AMP_AMP] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym___extension__] = ACTIONS(3624), + [anon_sym_typedef] = ACTIONS(3624), + [anon_sym_virtual] = ACTIONS(3624), + [anon_sym_extern] = ACTIONS(3624), + [anon_sym___attribute__] = ACTIONS(3624), + [anon_sym___attribute] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3626), + [anon_sym___declspec] = ACTIONS(3624), + [anon_sym___based] = ACTIONS(3624), + [anon_sym___cdecl] = ACTIONS(3624), + [anon_sym___clrcall] = ACTIONS(3624), + [anon_sym___stdcall] = ACTIONS(3624), + [anon_sym___fastcall] = ACTIONS(3624), + [anon_sym___thiscall] = ACTIONS(3624), + [anon_sym___vectorcall] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_signed] = ACTIONS(3624), + [anon_sym_unsigned] = ACTIONS(3624), + [anon_sym_long] = ACTIONS(3624), + [anon_sym_short] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_register] = ACTIONS(3624), + [anon_sym_inline] = ACTIONS(3624), + [anon_sym___inline] = ACTIONS(3624), + [anon_sym___inline__] = ACTIONS(3624), + [anon_sym___forceinline] = ACTIONS(3624), + [anon_sym_thread_local] = ACTIONS(3624), + [anon_sym___thread] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_constexpr] = ACTIONS(3624), + [anon_sym_volatile] = ACTIONS(3624), + [anon_sym_restrict] = ACTIONS(3624), + [anon_sym___restrict__] = ACTIONS(3624), + [anon_sym__Atomic] = ACTIONS(3624), + [anon_sym__Noreturn] = ACTIONS(3624), + [anon_sym_noreturn] = ACTIONS(3624), + [anon_sym__Nonnull] = ACTIONS(3624), + [anon_sym_mutable] = ACTIONS(3624), + [anon_sym_constinit] = ACTIONS(3624), + [anon_sym_consteval] = ACTIONS(3624), + [anon_sym_alignas] = ACTIONS(3624), + [anon_sym__Alignas] = ACTIONS(3624), + [sym_primitive_type] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_struct] = ACTIONS(3624), + [anon_sym_union] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_case] = ACTIONS(3624), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_goto] = ACTIONS(3624), + [anon_sym___try] = ACTIONS(3624), + [anon_sym___leave] = ACTIONS(3624), + [anon_sym_not] = ACTIONS(3624), + [anon_sym_compl] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_sizeof] = ACTIONS(3624), + [anon_sym___alignof__] = ACTIONS(3624), + [anon_sym___alignof] = ACTIONS(3624), + [anon_sym__alignof] = ACTIONS(3624), + [anon_sym_alignof] = ACTIONS(3624), + [anon_sym__Alignof] = ACTIONS(3624), + [anon_sym_offsetof] = ACTIONS(3624), + [anon_sym__Generic] = ACTIONS(3624), + [anon_sym_typename] = ACTIONS(3624), + [anon_sym_asm] = ACTIONS(3624), + [anon_sym___asm__] = ACTIONS(3624), + [anon_sym___asm] = ACTIONS(3624), + [sym_number_literal] = ACTIONS(3626), + [anon_sym_L_SQUOTE] = ACTIONS(3626), + [anon_sym_u_SQUOTE] = ACTIONS(3626), + [anon_sym_U_SQUOTE] = ACTIONS(3626), + [anon_sym_u8_SQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_L_DQUOTE] = ACTIONS(3626), + [anon_sym_u_DQUOTE] = ACTIONS(3626), + [anon_sym_U_DQUOTE] = ACTIONS(3626), + [anon_sym_u8_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [anon_sym_NULL] = ACTIONS(3624), + [anon_sym_nullptr] = ACTIONS(3624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3624), + [anon_sym_decltype] = ACTIONS(3624), + [anon_sym_explicit] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_module] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_template] = ACTIONS(3624), + [anon_sym_operator] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_static_assert] = ACTIONS(3624), + [anon_sym_concept] = ACTIONS(3624), + [anon_sym_co_return] = ACTIONS(3624), + [anon_sym_co_yield] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_requires] = ACTIONS(3624), + [anon_sym_CARET_CARET] = ACTIONS(3626), + [anon_sym_LBRACK_COLON] = ACTIONS(3626), + [sym_this] = ACTIONS(3624), + }, + [STATE(610)] = { + [sym_identifier] = ACTIONS(3514), + [aux_sym_preproc_include_token1] = ACTIONS(3514), + [aux_sym_preproc_def_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token2] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3514), + [sym_preproc_directive] = ACTIONS(3514), + [anon_sym_LPAREN2] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym___extension__] = ACTIONS(3514), + [anon_sym_typedef] = ACTIONS(3514), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3514), + [anon_sym___attribute__] = ACTIONS(3514), + [anon_sym___attribute] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_COLON_COLON] = ACTIONS(3516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3514), + [anon_sym___based] = ACTIONS(3514), + [anon_sym___cdecl] = ACTIONS(3514), + [anon_sym___clrcall] = ACTIONS(3514), + [anon_sym___stdcall] = ACTIONS(3514), + [anon_sym___fastcall] = ACTIONS(3514), + [anon_sym___thiscall] = ACTIONS(3514), + [anon_sym___vectorcall] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_signed] = ACTIONS(3514), + [anon_sym_unsigned] = ACTIONS(3514), + [anon_sym_long] = ACTIONS(3514), + [anon_sym_short] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_register] = ACTIONS(3514), + [anon_sym_inline] = ACTIONS(3514), + [anon_sym___inline] = ACTIONS(3514), + [anon_sym___inline__] = ACTIONS(3514), + [anon_sym___forceinline] = ACTIONS(3514), + [anon_sym_thread_local] = ACTIONS(3514), + [anon_sym___thread] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_constexpr] = ACTIONS(3514), + [anon_sym_volatile] = ACTIONS(3514), + [anon_sym_restrict] = ACTIONS(3514), + [anon_sym___restrict__] = ACTIONS(3514), + [anon_sym__Atomic] = ACTIONS(3514), + [anon_sym__Noreturn] = ACTIONS(3514), + [anon_sym_noreturn] = ACTIONS(3514), + [anon_sym__Nonnull] = ACTIONS(3514), + [anon_sym_mutable] = ACTIONS(3514), + [anon_sym_constinit] = ACTIONS(3514), + [anon_sym_consteval] = ACTIONS(3514), + [anon_sym_alignas] = ACTIONS(3514), + [anon_sym__Alignas] = ACTIONS(3514), + [sym_primitive_type] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_struct] = ACTIONS(3514), + [anon_sym_union] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_else] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_case] = ACTIONS(3514), + [anon_sym_default] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_goto] = ACTIONS(3514), + [anon_sym___try] = ACTIONS(3514), + [anon_sym___leave] = ACTIONS(3514), + [anon_sym_not] = ACTIONS(3514), + [anon_sym_compl] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_sizeof] = ACTIONS(3514), + [anon_sym___alignof__] = ACTIONS(3514), + [anon_sym___alignof] = ACTIONS(3514), + [anon_sym__alignof] = ACTIONS(3514), + [anon_sym_alignof] = ACTIONS(3514), + [anon_sym__Alignof] = ACTIONS(3514), + [anon_sym_offsetof] = ACTIONS(3514), + [anon_sym__Generic] = ACTIONS(3514), + [anon_sym_typename] = ACTIONS(3514), + [anon_sym_asm] = ACTIONS(3514), + [anon_sym___asm__] = ACTIONS(3514), + [anon_sym___asm] = ACTIONS(3514), + [sym_number_literal] = ACTIONS(3516), + [anon_sym_L_SQUOTE] = ACTIONS(3516), + [anon_sym_u_SQUOTE] = ACTIONS(3516), + [anon_sym_U_SQUOTE] = ACTIONS(3516), + [anon_sym_u8_SQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_L_DQUOTE] = ACTIONS(3516), + [anon_sym_u_DQUOTE] = ACTIONS(3516), + [anon_sym_U_DQUOTE] = ACTIONS(3516), + [anon_sym_u8_DQUOTE] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [anon_sym_NULL] = ACTIONS(3514), + [anon_sym_nullptr] = ACTIONS(3514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3514), + [anon_sym_decltype] = ACTIONS(3514), + [anon_sym_explicit] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_template] = ACTIONS(3514), + [anon_sym_operator] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_static_assert] = ACTIONS(3514), + [anon_sym_concept] = ACTIONS(3514), + [anon_sym_co_return] = ACTIONS(3514), + [anon_sym_co_yield] = ACTIONS(3514), + [anon_sym_R_DQUOTE] = ACTIONS(3516), + [anon_sym_LR_DQUOTE] = ACTIONS(3516), + [anon_sym_uR_DQUOTE] = ACTIONS(3516), + [anon_sym_UR_DQUOTE] = ACTIONS(3516), + [anon_sym_u8R_DQUOTE] = ACTIONS(3516), + [anon_sym_co_await] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_requires] = ACTIONS(3514), + [anon_sym_CARET_CARET] = ACTIONS(3516), + [anon_sym_LBRACK_COLON] = ACTIONS(3516), + [sym_this] = ACTIONS(3514), + }, + [STATE(611)] = { + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_include_token1] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token2] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym___cdecl] = ACTIONS(3518), + [anon_sym___clrcall] = ACTIONS(3518), + [anon_sym___stdcall] = ACTIONS(3518), + [anon_sym___fastcall] = ACTIONS(3518), + [anon_sym___thiscall] = ACTIONS(3518), + [anon_sym___vectorcall] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym___try] = ACTIONS(3518), + [anon_sym___leave] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(3518), + [anon_sym_compl] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [anon_sym___alignof__] = ACTIONS(3518), + [anon_sym___alignof] = ACTIONS(3518), + [anon_sym__alignof] = ACTIONS(3518), + [anon_sym_alignof] = ACTIONS(3518), + [anon_sym__Alignof] = ACTIONS(3518), + [anon_sym_offsetof] = ACTIONS(3518), + [anon_sym__Generic] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [anon_sym_asm] = ACTIONS(3518), + [anon_sym___asm__] = ACTIONS(3518), + [anon_sym___asm] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [anon_sym_L_SQUOTE] = ACTIONS(3520), + [anon_sym_u_SQUOTE] = ACTIONS(3520), + [anon_sym_U_SQUOTE] = ACTIONS(3520), + [anon_sym_u8_SQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_L_DQUOTE] = ACTIONS(3520), + [anon_sym_u_DQUOTE] = ACTIONS(3520), + [anon_sym_U_DQUOTE] = ACTIONS(3520), + [anon_sym_u8_DQUOTE] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [anon_sym_NULL] = ACTIONS(3518), + [anon_sym_nullptr] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_concept] = ACTIONS(3518), + [anon_sym_co_return] = ACTIONS(3518), + [anon_sym_co_yield] = ACTIONS(3518), + [anon_sym_R_DQUOTE] = ACTIONS(3520), + [anon_sym_LR_DQUOTE] = ACTIONS(3520), + [anon_sym_uR_DQUOTE] = ACTIONS(3520), + [anon_sym_UR_DQUOTE] = ACTIONS(3520), + [anon_sym_u8R_DQUOTE] = ACTIONS(3520), + [anon_sym_co_await] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_requires] = ACTIONS(3518), + [anon_sym_CARET_CARET] = ACTIONS(3520), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + [sym_this] = ACTIONS(3518), + }, + [STATE(612)] = { + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_include_token1] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token2] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym___cdecl] = ACTIONS(3518), + [anon_sym___clrcall] = ACTIONS(3518), + [anon_sym___stdcall] = ACTIONS(3518), + [anon_sym___fastcall] = ACTIONS(3518), + [anon_sym___thiscall] = ACTIONS(3518), + [anon_sym___vectorcall] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym___try] = ACTIONS(3518), + [anon_sym___leave] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(3518), + [anon_sym_compl] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [anon_sym___alignof__] = ACTIONS(3518), + [anon_sym___alignof] = ACTIONS(3518), + [anon_sym__alignof] = ACTIONS(3518), + [anon_sym_alignof] = ACTIONS(3518), + [anon_sym__Alignof] = ACTIONS(3518), + [anon_sym_offsetof] = ACTIONS(3518), + [anon_sym__Generic] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [anon_sym_asm] = ACTIONS(3518), + [anon_sym___asm__] = ACTIONS(3518), + [anon_sym___asm] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [anon_sym_L_SQUOTE] = ACTIONS(3520), + [anon_sym_u_SQUOTE] = ACTIONS(3520), + [anon_sym_U_SQUOTE] = ACTIONS(3520), + [anon_sym_u8_SQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_L_DQUOTE] = ACTIONS(3520), + [anon_sym_u_DQUOTE] = ACTIONS(3520), + [anon_sym_U_DQUOTE] = ACTIONS(3520), + [anon_sym_u8_DQUOTE] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [anon_sym_NULL] = ACTIONS(3518), + [anon_sym_nullptr] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_concept] = ACTIONS(3518), + [anon_sym_co_return] = ACTIONS(3518), + [anon_sym_co_yield] = ACTIONS(3518), + [anon_sym_R_DQUOTE] = ACTIONS(3520), + [anon_sym_LR_DQUOTE] = ACTIONS(3520), + [anon_sym_uR_DQUOTE] = ACTIONS(3520), + [anon_sym_UR_DQUOTE] = ACTIONS(3520), + [anon_sym_u8R_DQUOTE] = ACTIONS(3520), + [anon_sym_co_await] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_requires] = ACTIONS(3518), + [anon_sym_CARET_CARET] = ACTIONS(3520), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + [sym_this] = ACTIONS(3518), + }, + [STATE(613)] = { + [ts_builtin_sym_end] = ACTIONS(3650), + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_include_token1] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym___cdecl] = ACTIONS(3648), + [anon_sym___clrcall] = ACTIONS(3648), + [anon_sym___stdcall] = ACTIONS(3648), + [anon_sym___fastcall] = ACTIONS(3648), + [anon_sym___thiscall] = ACTIONS(3648), + [anon_sym___vectorcall] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym___try] = ACTIONS(3648), + [anon_sym___leave] = ACTIONS(3648), + [anon_sym_not] = ACTIONS(3648), + [anon_sym_compl] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym___alignof__] = ACTIONS(3648), + [anon_sym___alignof] = ACTIONS(3648), + [anon_sym__alignof] = ACTIONS(3648), + [anon_sym_alignof] = ACTIONS(3648), + [anon_sym__Alignof] = ACTIONS(3648), + [anon_sym_offsetof] = ACTIONS(3648), + [anon_sym__Generic] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [anon_sym_asm] = ACTIONS(3648), + [anon_sym___asm__] = ACTIONS(3648), + [anon_sym___asm] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [anon_sym_L_SQUOTE] = ACTIONS(3650), + [anon_sym_u_SQUOTE] = ACTIONS(3650), + [anon_sym_U_SQUOTE] = ACTIONS(3650), + [anon_sym_u8_SQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_L_DQUOTE] = ACTIONS(3650), + [anon_sym_u_DQUOTE] = ACTIONS(3650), + [anon_sym_U_DQUOTE] = ACTIONS(3650), + [anon_sym_u8_DQUOTE] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [anon_sym_NULL] = ACTIONS(3648), + [anon_sym_nullptr] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_module] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_concept] = ACTIONS(3648), + [anon_sym_co_return] = ACTIONS(3648), + [anon_sym_co_yield] = ACTIONS(3648), + [anon_sym_R_DQUOTE] = ACTIONS(3650), + [anon_sym_LR_DQUOTE] = ACTIONS(3650), + [anon_sym_uR_DQUOTE] = ACTIONS(3650), + [anon_sym_UR_DQUOTE] = ACTIONS(3650), + [anon_sym_u8R_DQUOTE] = ACTIONS(3650), + [anon_sym_co_await] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_requires] = ACTIONS(3648), + [anon_sym_CARET_CARET] = ACTIONS(3650), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [sym_this] = ACTIONS(3648), + }, + [STATE(614)] = { + [sym_identifier] = ACTIONS(3548), + [aux_sym_preproc_include_token1] = ACTIONS(3548), + [aux_sym_preproc_def_token1] = ACTIONS(3548), + [aux_sym_preproc_if_token1] = ACTIONS(3548), + [aux_sym_preproc_if_token2] = ACTIONS(3548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3548), + [sym_preproc_directive] = ACTIONS(3548), + [anon_sym_LPAREN2] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_AMP_AMP] = ACTIONS(3550), + [anon_sym_AMP] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym___extension__] = ACTIONS(3548), + [anon_sym_typedef] = ACTIONS(3548), + [anon_sym_virtual] = ACTIONS(3548), + [anon_sym_extern] = ACTIONS(3548), + [anon_sym___attribute__] = ACTIONS(3548), + [anon_sym___attribute] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3550), + [anon_sym___declspec] = ACTIONS(3548), + [anon_sym___based] = ACTIONS(3548), + [anon_sym___cdecl] = ACTIONS(3548), + [anon_sym___clrcall] = ACTIONS(3548), + [anon_sym___stdcall] = ACTIONS(3548), + [anon_sym___fastcall] = ACTIONS(3548), + [anon_sym___thiscall] = ACTIONS(3548), + [anon_sym___vectorcall] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_signed] = ACTIONS(3548), + [anon_sym_unsigned] = ACTIONS(3548), + [anon_sym_long] = ACTIONS(3548), + [anon_sym_short] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_register] = ACTIONS(3548), + [anon_sym_inline] = ACTIONS(3548), + [anon_sym___inline] = ACTIONS(3548), + [anon_sym___inline__] = ACTIONS(3548), + [anon_sym___forceinline] = ACTIONS(3548), + [anon_sym_thread_local] = ACTIONS(3548), + [anon_sym___thread] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_constexpr] = ACTIONS(3548), + [anon_sym_volatile] = ACTIONS(3548), + [anon_sym_restrict] = ACTIONS(3548), + [anon_sym___restrict__] = ACTIONS(3548), + [anon_sym__Atomic] = ACTIONS(3548), + [anon_sym__Noreturn] = ACTIONS(3548), + [anon_sym_noreturn] = ACTIONS(3548), + [anon_sym__Nonnull] = ACTIONS(3548), + [anon_sym_mutable] = ACTIONS(3548), + [anon_sym_constinit] = ACTIONS(3548), + [anon_sym_consteval] = ACTIONS(3548), + [anon_sym_alignas] = ACTIONS(3548), + [anon_sym__Alignas] = ACTIONS(3548), + [sym_primitive_type] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_struct] = ACTIONS(3548), + [anon_sym_union] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_goto] = ACTIONS(3548), + [anon_sym___try] = ACTIONS(3548), + [anon_sym___leave] = ACTIONS(3548), + [anon_sym_not] = ACTIONS(3548), + [anon_sym_compl] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_sizeof] = ACTIONS(3548), + [anon_sym___alignof__] = ACTIONS(3548), + [anon_sym___alignof] = ACTIONS(3548), + [anon_sym__alignof] = ACTIONS(3548), + [anon_sym_alignof] = ACTIONS(3548), + [anon_sym__Alignof] = ACTIONS(3548), + [anon_sym_offsetof] = ACTIONS(3548), + [anon_sym__Generic] = ACTIONS(3548), + [anon_sym_typename] = ACTIONS(3548), + [anon_sym_asm] = ACTIONS(3548), + [anon_sym___asm__] = ACTIONS(3548), + [anon_sym___asm] = ACTIONS(3548), + [sym_number_literal] = ACTIONS(3550), + [anon_sym_L_SQUOTE] = ACTIONS(3550), + [anon_sym_u_SQUOTE] = ACTIONS(3550), + [anon_sym_U_SQUOTE] = ACTIONS(3550), + [anon_sym_u8_SQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_L_DQUOTE] = ACTIONS(3550), + [anon_sym_u_DQUOTE] = ACTIONS(3550), + [anon_sym_U_DQUOTE] = ACTIONS(3550), + [anon_sym_u8_DQUOTE] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [anon_sym_NULL] = ACTIONS(3548), + [anon_sym_nullptr] = ACTIONS(3548), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3548), + [anon_sym_decltype] = ACTIONS(3548), + [anon_sym_explicit] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3548), + [anon_sym_operator] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3548), + [anon_sym_concept] = ACTIONS(3548), + [anon_sym_co_return] = ACTIONS(3548), + [anon_sym_co_yield] = ACTIONS(3548), + [anon_sym_R_DQUOTE] = ACTIONS(3550), + [anon_sym_LR_DQUOTE] = ACTIONS(3550), + [anon_sym_uR_DQUOTE] = ACTIONS(3550), + [anon_sym_UR_DQUOTE] = ACTIONS(3550), + [anon_sym_u8R_DQUOTE] = ACTIONS(3550), + [anon_sym_co_await] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_requires] = ACTIONS(3548), + [anon_sym_CARET_CARET] = ACTIONS(3550), + [anon_sym_LBRACK_COLON] = ACTIONS(3550), + [sym_this] = ACTIONS(3548), + }, + [STATE(615)] = { + [sym_else_clause] = STATE(760), + [sym_identifier] = ACTIONS(3322), + [aux_sym_preproc_include_token1] = ACTIONS(3322), + [aux_sym_preproc_def_token1] = ACTIONS(3322), + [aux_sym_preproc_if_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3322), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3322), + [sym_preproc_directive] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP_AMP] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym___extension__] = ACTIONS(3322), + [anon_sym_typedef] = ACTIONS(3322), + [anon_sym_virtual] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym___attribute__] = ACTIONS(3322), + [anon_sym___attribute] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3322), + [anon_sym___based] = ACTIONS(3322), + [anon_sym___cdecl] = ACTIONS(3322), + [anon_sym___clrcall] = ACTIONS(3322), + [anon_sym___stdcall] = ACTIONS(3322), + [anon_sym___fastcall] = ACTIONS(3322), + [anon_sym___thiscall] = ACTIONS(3322), + [anon_sym___vectorcall] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_signed] = ACTIONS(3322), + [anon_sym_unsigned] = ACTIONS(3322), + [anon_sym_long] = ACTIONS(3322), + [anon_sym_short] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_inline] = ACTIONS(3322), + [anon_sym___inline] = ACTIONS(3322), + [anon_sym___inline__] = ACTIONS(3322), + [anon_sym___forceinline] = ACTIONS(3322), + [anon_sym_thread_local] = ACTIONS(3322), + [anon_sym___thread] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_constexpr] = ACTIONS(3322), + [anon_sym_volatile] = ACTIONS(3322), + [anon_sym_restrict] = ACTIONS(3322), + [anon_sym___restrict__] = ACTIONS(3322), + [anon_sym__Atomic] = ACTIONS(3322), + [anon_sym__Noreturn] = ACTIONS(3322), + [anon_sym_noreturn] = ACTIONS(3322), + [anon_sym__Nonnull] = ACTIONS(3322), + [anon_sym_mutable] = ACTIONS(3322), + [anon_sym_constinit] = ACTIONS(3322), + [anon_sym_consteval] = ACTIONS(3322), + [anon_sym_alignas] = ACTIONS(3322), + [anon_sym__Alignas] = ACTIONS(3322), + [sym_primitive_type] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(4668), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym___try] = ACTIONS(3322), + [anon_sym___leave] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_compl] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3322), + [anon_sym___alignof__] = ACTIONS(3322), + [anon_sym___alignof] = ACTIONS(3322), + [anon_sym__alignof] = ACTIONS(3322), + [anon_sym_alignof] = ACTIONS(3322), + [anon_sym__Alignof] = ACTIONS(3322), + [anon_sym_offsetof] = ACTIONS(3322), + [anon_sym__Generic] = ACTIONS(3322), + [anon_sym_typename] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym___asm__] = ACTIONS(3322), + [anon_sym___asm] = ACTIONS(3322), + [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(3322), + [sym_false] = ACTIONS(3322), + [anon_sym_NULL] = ACTIONS(3322), + [anon_sym_nullptr] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(3322), + [anon_sym_explicit] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_template] = ACTIONS(3322), + [anon_sym_operator] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_static_assert] = ACTIONS(3322), + [anon_sym_concept] = ACTIONS(3322), + [anon_sym_co_return] = ACTIONS(3322), + [anon_sym_co_yield] = ACTIONS(3322), + [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(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_requires] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3324), + [anon_sym_LBRACK_COLON] = ACTIONS(3324), + [sym_this] = ACTIONS(3322), + }, + [STATE(616)] = { + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3510), + [aux_sym_preproc_include_token1] = ACTIONS(3510), + [aux_sym_preproc_def_token1] = ACTIONS(3510), + [aux_sym_preproc_if_token1] = ACTIONS(3510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3510), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_STAR] = ACTIONS(3512), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_AMP] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym___extension__] = ACTIONS(3510), + [anon_sym_typedef] = ACTIONS(3510), + [anon_sym_virtual] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3510), + [anon_sym___attribute__] = ACTIONS(3510), + [anon_sym___attribute] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_COLON_COLON] = ACTIONS(3512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3512), + [anon_sym___declspec] = ACTIONS(3510), + [anon_sym___based] = ACTIONS(3510), + [anon_sym___cdecl] = ACTIONS(3510), + [anon_sym___clrcall] = ACTIONS(3510), + [anon_sym___stdcall] = ACTIONS(3510), + [anon_sym___fastcall] = ACTIONS(3510), + [anon_sym___thiscall] = ACTIONS(3510), + [anon_sym___vectorcall] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_signed] = ACTIONS(3510), + [anon_sym_unsigned] = ACTIONS(3510), + [anon_sym_long] = ACTIONS(3510), + [anon_sym_short] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_register] = ACTIONS(3510), + [anon_sym_inline] = ACTIONS(3510), + [anon_sym___inline] = ACTIONS(3510), + [anon_sym___inline__] = ACTIONS(3510), + [anon_sym___forceinline] = ACTIONS(3510), + [anon_sym_thread_local] = ACTIONS(3510), + [anon_sym___thread] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_constexpr] = ACTIONS(3510), + [anon_sym_volatile] = ACTIONS(3510), + [anon_sym_restrict] = ACTIONS(3510), + [anon_sym___restrict__] = ACTIONS(3510), + [anon_sym__Atomic] = ACTIONS(3510), + [anon_sym__Noreturn] = ACTIONS(3510), + [anon_sym_noreturn] = ACTIONS(3510), + [anon_sym__Nonnull] = ACTIONS(3510), + [anon_sym_mutable] = ACTIONS(3510), + [anon_sym_constinit] = ACTIONS(3510), + [anon_sym_consteval] = ACTIONS(3510), + [anon_sym_alignas] = ACTIONS(3510), + [anon_sym__Alignas] = ACTIONS(3510), + [sym_primitive_type] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_struct] = ACTIONS(3510), + [anon_sym_union] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_else] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_case] = ACTIONS(3510), + [anon_sym_default] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_goto] = ACTIONS(3510), + [anon_sym___try] = ACTIONS(3510), + [anon_sym___leave] = ACTIONS(3510), + [anon_sym_not] = ACTIONS(3510), + [anon_sym_compl] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_sizeof] = ACTIONS(3510), + [anon_sym___alignof__] = ACTIONS(3510), + [anon_sym___alignof] = ACTIONS(3510), + [anon_sym__alignof] = ACTIONS(3510), + [anon_sym_alignof] = ACTIONS(3510), + [anon_sym__Alignof] = ACTIONS(3510), + [anon_sym_offsetof] = ACTIONS(3510), + [anon_sym__Generic] = ACTIONS(3510), + [anon_sym_typename] = ACTIONS(3510), + [anon_sym_asm] = ACTIONS(3510), + [anon_sym___asm__] = ACTIONS(3510), + [anon_sym___asm] = ACTIONS(3510), + [sym_number_literal] = ACTIONS(3512), + [anon_sym_L_SQUOTE] = ACTIONS(3512), + [anon_sym_u_SQUOTE] = ACTIONS(3512), + [anon_sym_U_SQUOTE] = ACTIONS(3512), + [anon_sym_u8_SQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_L_DQUOTE] = ACTIONS(3512), + [anon_sym_u_DQUOTE] = ACTIONS(3512), + [anon_sym_U_DQUOTE] = ACTIONS(3512), + [anon_sym_u8_DQUOTE] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [anon_sym_NULL] = ACTIONS(3510), + [anon_sym_nullptr] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3510), + [anon_sym_decltype] = ACTIONS(3510), + [anon_sym_explicit] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_template] = ACTIONS(3510), + [anon_sym_operator] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_static_assert] = ACTIONS(3510), + [anon_sym_concept] = ACTIONS(3510), + [anon_sym_co_return] = ACTIONS(3510), + [anon_sym_co_yield] = ACTIONS(3510), + [anon_sym_R_DQUOTE] = ACTIONS(3512), + [anon_sym_LR_DQUOTE] = ACTIONS(3512), + [anon_sym_uR_DQUOTE] = ACTIONS(3512), + [anon_sym_UR_DQUOTE] = ACTIONS(3512), + [anon_sym_u8R_DQUOTE] = ACTIONS(3512), + [anon_sym_co_await] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_requires] = ACTIONS(3510), + [anon_sym_CARET_CARET] = ACTIONS(3512), + [anon_sym_LBRACK_COLON] = ACTIONS(3512), + [sym_this] = ACTIONS(3510), + }, + [STATE(617)] = { + [sym_identifier] = ACTIONS(3526), + [aux_sym_preproc_include_token1] = ACTIONS(3526), + [aux_sym_preproc_def_token1] = ACTIONS(3526), + [aux_sym_preproc_if_token1] = ACTIONS(3526), + [aux_sym_preproc_if_token2] = ACTIONS(3526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3526), + [sym_preproc_directive] = ACTIONS(3526), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_STAR] = ACTIONS(3528), + [anon_sym_AMP_AMP] = ACTIONS(3528), + [anon_sym_AMP] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym___extension__] = ACTIONS(3526), + [anon_sym_typedef] = ACTIONS(3526), + [anon_sym_virtual] = ACTIONS(3526), + [anon_sym_extern] = ACTIONS(3526), + [anon_sym___attribute__] = ACTIONS(3526), + [anon_sym___attribute] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3528), + [anon_sym___declspec] = ACTIONS(3526), + [anon_sym___based] = ACTIONS(3526), + [anon_sym___cdecl] = ACTIONS(3526), + [anon_sym___clrcall] = ACTIONS(3526), + [anon_sym___stdcall] = ACTIONS(3526), + [anon_sym___fastcall] = ACTIONS(3526), + [anon_sym___thiscall] = ACTIONS(3526), + [anon_sym___vectorcall] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_signed] = ACTIONS(3526), + [anon_sym_unsigned] = ACTIONS(3526), + [anon_sym_long] = ACTIONS(3526), + [anon_sym_short] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_register] = ACTIONS(3526), + [anon_sym_inline] = ACTIONS(3526), + [anon_sym___inline] = ACTIONS(3526), + [anon_sym___inline__] = ACTIONS(3526), + [anon_sym___forceinline] = ACTIONS(3526), + [anon_sym_thread_local] = ACTIONS(3526), + [anon_sym___thread] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_constexpr] = ACTIONS(3526), + [anon_sym_volatile] = ACTIONS(3526), + [anon_sym_restrict] = ACTIONS(3526), + [anon_sym___restrict__] = ACTIONS(3526), + [anon_sym__Atomic] = ACTIONS(3526), + [anon_sym__Noreturn] = ACTIONS(3526), + [anon_sym_noreturn] = ACTIONS(3526), + [anon_sym__Nonnull] = ACTIONS(3526), + [anon_sym_mutable] = ACTIONS(3526), + [anon_sym_constinit] = ACTIONS(3526), + [anon_sym_consteval] = ACTIONS(3526), + [anon_sym_alignas] = ACTIONS(3526), + [anon_sym__Alignas] = ACTIONS(3526), + [sym_primitive_type] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_struct] = ACTIONS(3526), + [anon_sym_union] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_else] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_case] = ACTIONS(3526), + [anon_sym_default] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_goto] = ACTIONS(3526), + [anon_sym___try] = ACTIONS(3526), + [anon_sym___leave] = ACTIONS(3526), + [anon_sym_not] = ACTIONS(3526), + [anon_sym_compl] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_sizeof] = ACTIONS(3526), + [anon_sym___alignof__] = ACTIONS(3526), + [anon_sym___alignof] = ACTIONS(3526), + [anon_sym__alignof] = ACTIONS(3526), + [anon_sym_alignof] = ACTIONS(3526), + [anon_sym__Alignof] = ACTIONS(3526), + [anon_sym_offsetof] = ACTIONS(3526), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_typename] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3526), + [anon_sym___asm__] = ACTIONS(3526), + [anon_sym___asm] = ACTIONS(3526), + [sym_number_literal] = ACTIONS(3528), + [anon_sym_L_SQUOTE] = ACTIONS(3528), + [anon_sym_u_SQUOTE] = ACTIONS(3528), + [anon_sym_U_SQUOTE] = ACTIONS(3528), + [anon_sym_u8_SQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_L_DQUOTE] = ACTIONS(3528), + [anon_sym_u_DQUOTE] = ACTIONS(3528), + [anon_sym_U_DQUOTE] = ACTIONS(3528), + [anon_sym_u8_DQUOTE] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [anon_sym_NULL] = ACTIONS(3526), + [anon_sym_nullptr] = ACTIONS(3526), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3526), + [anon_sym_decltype] = ACTIONS(3526), + [anon_sym_explicit] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_template] = ACTIONS(3526), + [anon_sym_operator] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_static_assert] = ACTIONS(3526), + [anon_sym_concept] = ACTIONS(3526), + [anon_sym_co_return] = ACTIONS(3526), + [anon_sym_co_yield] = ACTIONS(3526), + [anon_sym_R_DQUOTE] = ACTIONS(3528), + [anon_sym_LR_DQUOTE] = ACTIONS(3528), + [anon_sym_uR_DQUOTE] = ACTIONS(3528), + [anon_sym_UR_DQUOTE] = ACTIONS(3528), + [anon_sym_u8R_DQUOTE] = ACTIONS(3528), + [anon_sym_co_await] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_requires] = ACTIONS(3526), + [anon_sym_CARET_CARET] = ACTIONS(3528), + [anon_sym_LBRACK_COLON] = ACTIONS(3528), + [sym_this] = ACTIONS(3526), + }, + [STATE(618)] = { + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_include_token1] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token2] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym___cdecl] = ACTIONS(3534), + [anon_sym___clrcall] = ACTIONS(3534), + [anon_sym___stdcall] = ACTIONS(3534), + [anon_sym___fastcall] = ACTIONS(3534), + [anon_sym___thiscall] = ACTIONS(3534), + [anon_sym___vectorcall] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_else] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_goto] = ACTIONS(3534), + [anon_sym___try] = ACTIONS(3534), + [anon_sym___leave] = ACTIONS(3534), + [anon_sym_not] = ACTIONS(3534), + [anon_sym_compl] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3534), + [anon_sym___alignof__] = ACTIONS(3534), + [anon_sym___alignof] = ACTIONS(3534), + [anon_sym__alignof] = ACTIONS(3534), + [anon_sym_alignof] = ACTIONS(3534), + [anon_sym__Alignof] = ACTIONS(3534), + [anon_sym_offsetof] = ACTIONS(3534), + [anon_sym__Generic] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [anon_sym_asm] = ACTIONS(3534), + [anon_sym___asm__] = ACTIONS(3534), + [anon_sym___asm] = ACTIONS(3534), + [sym_number_literal] = ACTIONS(3536), + [anon_sym_L_SQUOTE] = ACTIONS(3536), + [anon_sym_u_SQUOTE] = ACTIONS(3536), + [anon_sym_U_SQUOTE] = ACTIONS(3536), + [anon_sym_u8_SQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_L_DQUOTE] = ACTIONS(3536), + [anon_sym_u_DQUOTE] = ACTIONS(3536), + [anon_sym_U_DQUOTE] = ACTIONS(3536), + [anon_sym_u8_DQUOTE] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [anon_sym_NULL] = ACTIONS(3534), + [anon_sym_nullptr] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_concept] = ACTIONS(3534), + [anon_sym_co_return] = ACTIONS(3534), + [anon_sym_co_yield] = ACTIONS(3534), + [anon_sym_R_DQUOTE] = ACTIONS(3536), + [anon_sym_LR_DQUOTE] = ACTIONS(3536), + [anon_sym_uR_DQUOTE] = ACTIONS(3536), + [anon_sym_UR_DQUOTE] = ACTIONS(3536), + [anon_sym_u8R_DQUOTE] = ACTIONS(3536), + [anon_sym_co_await] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_requires] = ACTIONS(3534), + [anon_sym_CARET_CARET] = ACTIONS(3536), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + [sym_this] = ACTIONS(3534), + }, + [STATE(619)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym___extension__] = ACTIONS(3544), - [anon_sym_typedef] = ACTIONS(3544), - [anon_sym_virtual] = ACTIONS(3544), - [anon_sym_extern] = ACTIONS(3544), - [anon_sym___attribute__] = ACTIONS(3544), - [anon_sym___attribute] = ACTIONS(3544), - [anon_sym_using] = ACTIONS(3544), - [anon_sym_COLON_COLON] = ACTIONS(3546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3546), - [anon_sym___declspec] = ACTIONS(3544), - [anon_sym___based] = ACTIONS(3544), - [anon_sym___cdecl] = ACTIONS(3544), - [anon_sym___clrcall] = ACTIONS(3544), - [anon_sym___stdcall] = ACTIONS(3544), - [anon_sym___fastcall] = ACTIONS(3544), - [anon_sym___thiscall] = ACTIONS(3544), - [anon_sym___vectorcall] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_signed] = ACTIONS(3544), - [anon_sym_unsigned] = ACTIONS(3544), - [anon_sym_long] = ACTIONS(3544), - [anon_sym_short] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_register] = ACTIONS(3544), - [anon_sym_inline] = ACTIONS(3544), - [anon_sym___inline] = ACTIONS(3544), - [anon_sym___inline__] = ACTIONS(3544), - [anon_sym___forceinline] = ACTIONS(3544), - [anon_sym_thread_local] = ACTIONS(3544), - [anon_sym___thread] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_constexpr] = ACTIONS(3544), - [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(3544), - [anon_sym__Alignas] = ACTIONS(3544), - [sym_primitive_type] = ACTIONS(3544), - [anon_sym_enum] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3544), - [anon_sym_struct] = ACTIONS(3544), - [anon_sym_union] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3544), - [anon_sym_else] = ACTIONS(3544), - [anon_sym_switch] = ACTIONS(3544), - [anon_sym_case] = ACTIONS(3544), - [anon_sym_default] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_do] = ACTIONS(3544), - [anon_sym_for] = ACTIONS(3544), - [anon_sym_return] = ACTIONS(3544), - [anon_sym_break] = ACTIONS(3544), - [anon_sym_continue] = ACTIONS(3544), - [anon_sym_goto] = ACTIONS(3544), - [anon_sym___try] = ACTIONS(3544), - [anon_sym___leave] = ACTIONS(3544), - [anon_sym_not] = ACTIONS(3544), - [anon_sym_compl] = ACTIONS(3544), - [anon_sym_DASH_DASH] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_sizeof] = ACTIONS(3544), - [anon_sym___alignof__] = ACTIONS(3544), - [anon_sym___alignof] = ACTIONS(3544), - [anon_sym__alignof] = ACTIONS(3544), - [anon_sym_alignof] = ACTIONS(3544), - [anon_sym__Alignof] = ACTIONS(3544), - [anon_sym_offsetof] = ACTIONS(3544), - [anon_sym__Generic] = ACTIONS(3544), - [anon_sym_typename] = ACTIONS(3544), - [anon_sym_asm] = ACTIONS(3544), - [anon_sym___asm__] = ACTIONS(3544), - [anon_sym___asm] = ACTIONS(3544), - [sym_number_literal] = ACTIONS(3546), - [anon_sym_L_SQUOTE] = ACTIONS(3546), - [anon_sym_u_SQUOTE] = ACTIONS(3546), - [anon_sym_U_SQUOTE] = ACTIONS(3546), - [anon_sym_u8_SQUOTE] = ACTIONS(3546), - [anon_sym_SQUOTE] = ACTIONS(3546), - [anon_sym_L_DQUOTE] = ACTIONS(3546), - [anon_sym_u_DQUOTE] = ACTIONS(3546), - [anon_sym_U_DQUOTE] = ACTIONS(3546), - [anon_sym_u8_DQUOTE] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(3546), - [sym_true] = ACTIONS(3544), - [sym_false] = ACTIONS(3544), - [anon_sym_NULL] = ACTIONS(3544), - [anon_sym_nullptr] = ACTIONS(3544), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3544), - [anon_sym_decltype] = ACTIONS(3544), - [anon_sym_explicit] = ACTIONS(3544), - [anon_sym_export] = ACTIONS(3544), - [anon_sym_module] = ACTIONS(3544), - [anon_sym_import] = ACTIONS(3544), - [anon_sym_template] = ACTIONS(3544), - [anon_sym_operator] = ACTIONS(3544), - [anon_sym_try] = ACTIONS(3544), - [anon_sym_delete] = ACTIONS(3544), - [anon_sym_throw] = ACTIONS(3544), - [anon_sym_namespace] = ACTIONS(3544), - [anon_sym_static_assert] = ACTIONS(3544), - [anon_sym_concept] = ACTIONS(3544), - [anon_sym_co_return] = ACTIONS(3544), - [anon_sym_co_yield] = ACTIONS(3544), - [anon_sym_R_DQUOTE] = ACTIONS(3546), - [anon_sym_LR_DQUOTE] = ACTIONS(3546), - [anon_sym_uR_DQUOTE] = ACTIONS(3546), - [anon_sym_UR_DQUOTE] = ACTIONS(3546), - [anon_sym_u8R_DQUOTE] = ACTIONS(3546), - [anon_sym_co_await] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_requires] = ACTIONS(3544), - [anon_sym_CARET_CARET] = ACTIONS(3546), - [anon_sym_LBRACK_COLON] = ACTIONS(3546), - [sym_this] = ACTIONS(3544), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym___try] = ACTIONS(3168), + [anon_sym___leave] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [anon_sym___asm] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_module] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_CARET_CARET] = ACTIONS(3166), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + [sym_this] = ACTIONS(3168), }, - [STATE(575)] = { + [STATE(620)] = { + [sym_identifier] = ACTIONS(3338), + [aux_sym_preproc_include_token1] = ACTIONS(3338), + [aux_sym_preproc_def_token1] = ACTIONS(3338), + [aux_sym_preproc_if_token1] = ACTIONS(3338), + [aux_sym_preproc_if_token2] = ACTIONS(3338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3338), + [sym_preproc_directive] = ACTIONS(3338), + [anon_sym_LPAREN2] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3343), + [anon_sym_AMP_AMP] = ACTIONS(3343), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym___extension__] = ACTIONS(3338), + [anon_sym_typedef] = ACTIONS(3338), + [anon_sym_virtual] = ACTIONS(3338), + [anon_sym_extern] = ACTIONS(3338), + [anon_sym___attribute__] = ACTIONS(3338), + [anon_sym___attribute] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3343), + [anon_sym___declspec] = ACTIONS(3338), + [anon_sym___based] = ACTIONS(3338), + [anon_sym___cdecl] = ACTIONS(3338), + [anon_sym___clrcall] = ACTIONS(3338), + [anon_sym___stdcall] = ACTIONS(3338), + [anon_sym___fastcall] = ACTIONS(3338), + [anon_sym___thiscall] = ACTIONS(3338), + [anon_sym___vectorcall] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_register] = ACTIONS(3338), + [anon_sym_inline] = ACTIONS(3338), + [anon_sym___inline] = ACTIONS(3338), + [anon_sym___inline__] = ACTIONS(3338), + [anon_sym___forceinline] = ACTIONS(3338), + [anon_sym_thread_local] = ACTIONS(3338), + [anon_sym___thread] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_constexpr] = ACTIONS(3338), + [anon_sym_volatile] = ACTIONS(3338), + [anon_sym_restrict] = ACTIONS(3338), + [anon_sym___restrict__] = ACTIONS(3338), + [anon_sym__Atomic] = ACTIONS(3338), + [anon_sym__Noreturn] = ACTIONS(3338), + [anon_sym_noreturn] = ACTIONS(3338), + [anon_sym__Nonnull] = ACTIONS(3338), + [anon_sym_mutable] = ACTIONS(3338), + [anon_sym_constinit] = ACTIONS(3338), + [anon_sym_consteval] = ACTIONS(3338), + [anon_sym_alignas] = ACTIONS(3338), + [anon_sym__Alignas] = ACTIONS(3338), + [sym_primitive_type] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_case] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_goto] = ACTIONS(3338), + [anon_sym___try] = ACTIONS(3338), + [anon_sym___leave] = ACTIONS(3338), + [anon_sym_not] = ACTIONS(3338), + [anon_sym_compl] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3338), + [anon_sym___alignof] = ACTIONS(3338), + [anon_sym__alignof] = ACTIONS(3338), + [anon_sym_alignof] = ACTIONS(3338), + [anon_sym__Alignof] = ACTIONS(3338), + [anon_sym_offsetof] = ACTIONS(3338), + [anon_sym__Generic] = ACTIONS(3338), + [anon_sym_typename] = ACTIONS(3338), + [anon_sym_asm] = ACTIONS(3338), + [anon_sym___asm__] = ACTIONS(3338), + [anon_sym___asm] = ACTIONS(3338), + [sym_number_literal] = ACTIONS(3343), + [anon_sym_L_SQUOTE] = ACTIONS(3343), + [anon_sym_u_SQUOTE] = ACTIONS(3343), + [anon_sym_U_SQUOTE] = ACTIONS(3343), + [anon_sym_u8_SQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_L_DQUOTE] = ACTIONS(3343), + [anon_sym_u_DQUOTE] = ACTIONS(3343), + [anon_sym_U_DQUOTE] = ACTIONS(3343), + [anon_sym_u8_DQUOTE] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [anon_sym_NULL] = ACTIONS(3338), + [anon_sym_nullptr] = ACTIONS(3338), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3338), + [anon_sym_decltype] = ACTIONS(3338), + [anon_sym_explicit] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_template] = ACTIONS(3338), + [anon_sym_operator] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_static_assert] = ACTIONS(3338), + [anon_sym_concept] = ACTIONS(3338), + [anon_sym_co_return] = ACTIONS(3338), + [anon_sym_co_yield] = ACTIONS(3338), + [anon_sym_R_DQUOTE] = ACTIONS(3343), + [anon_sym_LR_DQUOTE] = ACTIONS(3343), + [anon_sym_uR_DQUOTE] = ACTIONS(3343), + [anon_sym_UR_DQUOTE] = ACTIONS(3343), + [anon_sym_u8R_DQUOTE] = ACTIONS(3343), + [anon_sym_co_await] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_requires] = ACTIONS(3338), + [anon_sym_CARET_CARET] = ACTIONS(3343), + [anon_sym_LBRACK_COLON] = ACTIONS(3343), + [sym_this] = ACTIONS(3338), + }, + [STATE(621)] = { + [sym_identifier] = ACTIONS(3628), + [aux_sym_preproc_include_token1] = ACTIONS(3628), + [aux_sym_preproc_def_token1] = ACTIONS(3628), + [aux_sym_preproc_if_token1] = ACTIONS(3628), + [aux_sym_preproc_if_token2] = ACTIONS(3628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3628), + [sym_preproc_directive] = ACTIONS(3628), + [anon_sym_LPAREN2] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_AMP] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym___extension__] = ACTIONS(3628), + [anon_sym_typedef] = ACTIONS(3628), + [anon_sym_virtual] = ACTIONS(3628), + [anon_sym_extern] = ACTIONS(3628), + [anon_sym___attribute__] = ACTIONS(3628), + [anon_sym___attribute] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_COLON_COLON] = ACTIONS(3630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3630), + [anon_sym___declspec] = ACTIONS(3628), + [anon_sym___based] = ACTIONS(3628), + [anon_sym___cdecl] = ACTIONS(3628), + [anon_sym___clrcall] = ACTIONS(3628), + [anon_sym___stdcall] = ACTIONS(3628), + [anon_sym___fastcall] = ACTIONS(3628), + [anon_sym___thiscall] = ACTIONS(3628), + [anon_sym___vectorcall] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3628), + [anon_sym_unsigned] = ACTIONS(3628), + [anon_sym_long] = ACTIONS(3628), + [anon_sym_short] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_register] = ACTIONS(3628), + [anon_sym_inline] = ACTIONS(3628), + [anon_sym___inline] = ACTIONS(3628), + [anon_sym___inline__] = ACTIONS(3628), + [anon_sym___forceinline] = ACTIONS(3628), + [anon_sym_thread_local] = ACTIONS(3628), + [anon_sym___thread] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_constexpr] = ACTIONS(3628), + [anon_sym_volatile] = ACTIONS(3628), + [anon_sym_restrict] = ACTIONS(3628), + [anon_sym___restrict__] = ACTIONS(3628), + [anon_sym__Atomic] = ACTIONS(3628), + [anon_sym__Noreturn] = ACTIONS(3628), + [anon_sym_noreturn] = ACTIONS(3628), + [anon_sym__Nonnull] = ACTIONS(3628), + [anon_sym_mutable] = ACTIONS(3628), + [anon_sym_constinit] = ACTIONS(3628), + [anon_sym_consteval] = ACTIONS(3628), + [anon_sym_alignas] = ACTIONS(3628), + [anon_sym__Alignas] = ACTIONS(3628), + [sym_primitive_type] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_struct] = ACTIONS(3628), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_else] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_case] = ACTIONS(3628), + [anon_sym_default] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_goto] = ACTIONS(3628), + [anon_sym___try] = ACTIONS(3628), + [anon_sym___leave] = ACTIONS(3628), + [anon_sym_not] = ACTIONS(3628), + [anon_sym_compl] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_sizeof] = ACTIONS(3628), + [anon_sym___alignof__] = ACTIONS(3628), + [anon_sym___alignof] = ACTIONS(3628), + [anon_sym__alignof] = ACTIONS(3628), + [anon_sym_alignof] = ACTIONS(3628), + [anon_sym__Alignof] = ACTIONS(3628), + [anon_sym_offsetof] = ACTIONS(3628), + [anon_sym__Generic] = ACTIONS(3628), + [anon_sym_typename] = ACTIONS(3628), + [anon_sym_asm] = ACTIONS(3628), + [anon_sym___asm__] = ACTIONS(3628), + [anon_sym___asm] = ACTIONS(3628), + [sym_number_literal] = ACTIONS(3630), + [anon_sym_L_SQUOTE] = ACTIONS(3630), + [anon_sym_u_SQUOTE] = ACTIONS(3630), + [anon_sym_U_SQUOTE] = ACTIONS(3630), + [anon_sym_u8_SQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_L_DQUOTE] = ACTIONS(3630), + [anon_sym_u_DQUOTE] = ACTIONS(3630), + [anon_sym_U_DQUOTE] = ACTIONS(3630), + [anon_sym_u8_DQUOTE] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [anon_sym_NULL] = ACTIONS(3628), + [anon_sym_nullptr] = ACTIONS(3628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3628), + [anon_sym_decltype] = ACTIONS(3628), + [anon_sym_explicit] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_module] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_template] = ACTIONS(3628), + [anon_sym_operator] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_static_assert] = ACTIONS(3628), + [anon_sym_concept] = ACTIONS(3628), + [anon_sym_co_return] = ACTIONS(3628), + [anon_sym_co_yield] = ACTIONS(3628), + [anon_sym_R_DQUOTE] = ACTIONS(3630), + [anon_sym_LR_DQUOTE] = ACTIONS(3630), + [anon_sym_uR_DQUOTE] = ACTIONS(3630), + [anon_sym_UR_DQUOTE] = ACTIONS(3630), + [anon_sym_u8R_DQUOTE] = ACTIONS(3630), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_requires] = ACTIONS(3628), + [anon_sym_CARET_CARET] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3630), + [sym_this] = ACTIONS(3628), + }, + [STATE(622)] = { + [sym_identifier] = ACTIONS(3632), + [aux_sym_preproc_include_token1] = ACTIONS(3632), + [aux_sym_preproc_def_token1] = ACTIONS(3632), + [aux_sym_preproc_if_token1] = ACTIONS(3632), + [aux_sym_preproc_if_token2] = ACTIONS(3632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3632), + [sym_preproc_directive] = ACTIONS(3632), + [anon_sym_LPAREN2] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_AMP_AMP] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym___extension__] = ACTIONS(3632), + [anon_sym_typedef] = ACTIONS(3632), + [anon_sym_virtual] = ACTIONS(3632), + [anon_sym_extern] = ACTIONS(3632), + [anon_sym___attribute__] = ACTIONS(3632), + [anon_sym___attribute] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3634), + [anon_sym___declspec] = ACTIONS(3632), + [anon_sym___based] = ACTIONS(3632), + [anon_sym___cdecl] = ACTIONS(3632), + [anon_sym___clrcall] = ACTIONS(3632), + [anon_sym___stdcall] = ACTIONS(3632), + [anon_sym___fastcall] = ACTIONS(3632), + [anon_sym___thiscall] = ACTIONS(3632), + [anon_sym___vectorcall] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_signed] = ACTIONS(3632), + [anon_sym_unsigned] = ACTIONS(3632), + [anon_sym_long] = ACTIONS(3632), + [anon_sym_short] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_register] = ACTIONS(3632), + [anon_sym_inline] = ACTIONS(3632), + [anon_sym___inline] = ACTIONS(3632), + [anon_sym___inline__] = ACTIONS(3632), + [anon_sym___forceinline] = ACTIONS(3632), + [anon_sym_thread_local] = ACTIONS(3632), + [anon_sym___thread] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_constexpr] = ACTIONS(3632), + [anon_sym_volatile] = ACTIONS(3632), + [anon_sym_restrict] = ACTIONS(3632), + [anon_sym___restrict__] = ACTIONS(3632), + [anon_sym__Atomic] = ACTIONS(3632), + [anon_sym__Noreturn] = ACTIONS(3632), + [anon_sym_noreturn] = ACTIONS(3632), + [anon_sym__Nonnull] = ACTIONS(3632), + [anon_sym_mutable] = ACTIONS(3632), + [anon_sym_constinit] = ACTIONS(3632), + [anon_sym_consteval] = ACTIONS(3632), + [anon_sym_alignas] = ACTIONS(3632), + [anon_sym__Alignas] = ACTIONS(3632), + [sym_primitive_type] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_struct] = ACTIONS(3632), + [anon_sym_union] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_else] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_case] = ACTIONS(3632), + [anon_sym_default] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_goto] = ACTIONS(3632), + [anon_sym___try] = ACTIONS(3632), + [anon_sym___leave] = ACTIONS(3632), + [anon_sym_not] = ACTIONS(3632), + [anon_sym_compl] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_sizeof] = ACTIONS(3632), + [anon_sym___alignof__] = ACTIONS(3632), + [anon_sym___alignof] = ACTIONS(3632), + [anon_sym__alignof] = ACTIONS(3632), + [anon_sym_alignof] = ACTIONS(3632), + [anon_sym__Alignof] = ACTIONS(3632), + [anon_sym_offsetof] = ACTIONS(3632), + [anon_sym__Generic] = ACTIONS(3632), + [anon_sym_typename] = ACTIONS(3632), + [anon_sym_asm] = ACTIONS(3632), + [anon_sym___asm__] = ACTIONS(3632), + [anon_sym___asm] = ACTIONS(3632), + [sym_number_literal] = ACTIONS(3634), + [anon_sym_L_SQUOTE] = ACTIONS(3634), + [anon_sym_u_SQUOTE] = ACTIONS(3634), + [anon_sym_U_SQUOTE] = ACTIONS(3634), + [anon_sym_u8_SQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_L_DQUOTE] = ACTIONS(3634), + [anon_sym_u_DQUOTE] = ACTIONS(3634), + [anon_sym_U_DQUOTE] = ACTIONS(3634), + [anon_sym_u8_DQUOTE] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [anon_sym_NULL] = ACTIONS(3632), + [anon_sym_nullptr] = ACTIONS(3632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3632), + [anon_sym_decltype] = ACTIONS(3632), + [anon_sym_explicit] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_module] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_template] = ACTIONS(3632), + [anon_sym_operator] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_static_assert] = ACTIONS(3632), + [anon_sym_concept] = ACTIONS(3632), + [anon_sym_co_return] = ACTIONS(3632), + [anon_sym_co_yield] = ACTIONS(3632), + [anon_sym_R_DQUOTE] = ACTIONS(3634), + [anon_sym_LR_DQUOTE] = ACTIONS(3634), + [anon_sym_uR_DQUOTE] = ACTIONS(3634), + [anon_sym_UR_DQUOTE] = ACTIONS(3634), + [anon_sym_u8R_DQUOTE] = ACTIONS(3634), + [anon_sym_co_await] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_requires] = ACTIONS(3632), + [anon_sym_CARET_CARET] = ACTIONS(3634), + [anon_sym_LBRACK_COLON] = ACTIONS(3634), + [sym_this] = ACTIONS(3632), + }, + [STATE(623)] = { + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_include_token1] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token2] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym___cdecl] = ACTIONS(3636), + [anon_sym___clrcall] = ACTIONS(3636), + [anon_sym___stdcall] = ACTIONS(3636), + [anon_sym___fastcall] = ACTIONS(3636), + [anon_sym___thiscall] = ACTIONS(3636), + [anon_sym___vectorcall] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym___try] = ACTIONS(3636), + [anon_sym___leave] = ACTIONS(3636), + [anon_sym_not] = ACTIONS(3636), + [anon_sym_compl] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym___alignof__] = ACTIONS(3636), + [anon_sym___alignof] = ACTIONS(3636), + [anon_sym__alignof] = ACTIONS(3636), + [anon_sym_alignof] = ACTIONS(3636), + [anon_sym__Alignof] = ACTIONS(3636), + [anon_sym_offsetof] = ACTIONS(3636), + [anon_sym__Generic] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [anon_sym_asm] = ACTIONS(3636), + [anon_sym___asm__] = ACTIONS(3636), + [anon_sym___asm] = ACTIONS(3636), + [sym_number_literal] = ACTIONS(3638), + [anon_sym_L_SQUOTE] = ACTIONS(3638), + [anon_sym_u_SQUOTE] = ACTIONS(3638), + [anon_sym_U_SQUOTE] = ACTIONS(3638), + [anon_sym_u8_SQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_L_DQUOTE] = ACTIONS(3638), + [anon_sym_u_DQUOTE] = ACTIONS(3638), + [anon_sym_U_DQUOTE] = ACTIONS(3638), + [anon_sym_u8_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_nullptr] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_module] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_concept] = ACTIONS(3636), + [anon_sym_co_return] = ACTIONS(3636), + [anon_sym_co_yield] = ACTIONS(3636), + [anon_sym_R_DQUOTE] = ACTIONS(3638), + [anon_sym_LR_DQUOTE] = ACTIONS(3638), + [anon_sym_uR_DQUOTE] = ACTIONS(3638), + [anon_sym_UR_DQUOTE] = ACTIONS(3638), + [anon_sym_u8R_DQUOTE] = ACTIONS(3638), + [anon_sym_co_await] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_requires] = ACTIONS(3636), + [anon_sym_CARET_CARET] = ACTIONS(3638), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [sym_this] = ACTIONS(3636), + }, + [STATE(624)] = { + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3538), + [aux_sym_preproc_include_token1] = ACTIONS(3538), + [aux_sym_preproc_def_token1] = ACTIONS(3538), + [aux_sym_preproc_if_token1] = ACTIONS(3538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3538), + [sym_preproc_directive] = ACTIONS(3538), + [anon_sym_LPAREN2] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym___extension__] = ACTIONS(3538), + [anon_sym_typedef] = ACTIONS(3538), + [anon_sym_virtual] = ACTIONS(3538), + [anon_sym_extern] = ACTIONS(3538), + [anon_sym___attribute__] = ACTIONS(3538), + [anon_sym___attribute] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(3540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3540), + [anon_sym___declspec] = ACTIONS(3538), + [anon_sym___based] = ACTIONS(3538), + [anon_sym___cdecl] = ACTIONS(3538), + [anon_sym___clrcall] = ACTIONS(3538), + [anon_sym___stdcall] = ACTIONS(3538), + [anon_sym___fastcall] = ACTIONS(3538), + [anon_sym___thiscall] = ACTIONS(3538), + [anon_sym___vectorcall] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_signed] = ACTIONS(3538), + [anon_sym_unsigned] = ACTIONS(3538), + [anon_sym_long] = ACTIONS(3538), + [anon_sym_short] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_register] = ACTIONS(3538), + [anon_sym_inline] = ACTIONS(3538), + [anon_sym___inline] = ACTIONS(3538), + [anon_sym___inline__] = ACTIONS(3538), + [anon_sym___forceinline] = ACTIONS(3538), + [anon_sym_thread_local] = ACTIONS(3538), + [anon_sym___thread] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_constexpr] = ACTIONS(3538), + [anon_sym_volatile] = ACTIONS(3538), + [anon_sym_restrict] = ACTIONS(3538), + [anon_sym___restrict__] = ACTIONS(3538), + [anon_sym__Atomic] = ACTIONS(3538), + [anon_sym__Noreturn] = ACTIONS(3538), + [anon_sym_noreturn] = ACTIONS(3538), + [anon_sym__Nonnull] = ACTIONS(3538), + [anon_sym_mutable] = ACTIONS(3538), + [anon_sym_constinit] = ACTIONS(3538), + [anon_sym_consteval] = ACTIONS(3538), + [anon_sym_alignas] = ACTIONS(3538), + [anon_sym__Alignas] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_struct] = ACTIONS(3538), + [anon_sym_union] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_else] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_case] = ACTIONS(3538), + [anon_sym_default] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_goto] = ACTIONS(3538), + [anon_sym___try] = ACTIONS(3538), + [anon_sym___leave] = ACTIONS(3538), + [anon_sym_not] = ACTIONS(3538), + [anon_sym_compl] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_sizeof] = ACTIONS(3538), + [anon_sym___alignof__] = ACTIONS(3538), + [anon_sym___alignof] = ACTIONS(3538), + [anon_sym__alignof] = ACTIONS(3538), + [anon_sym_alignof] = ACTIONS(3538), + [anon_sym__Alignof] = ACTIONS(3538), + [anon_sym_offsetof] = ACTIONS(3538), + [anon_sym__Generic] = ACTIONS(3538), + [anon_sym_typename] = ACTIONS(3538), + [anon_sym_asm] = ACTIONS(3538), + [anon_sym___asm__] = ACTIONS(3538), + [anon_sym___asm] = ACTIONS(3538), + [sym_number_literal] = ACTIONS(3540), + [anon_sym_L_SQUOTE] = ACTIONS(3540), + [anon_sym_u_SQUOTE] = ACTIONS(3540), + [anon_sym_U_SQUOTE] = ACTIONS(3540), + [anon_sym_u8_SQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_L_DQUOTE] = ACTIONS(3540), + [anon_sym_u_DQUOTE] = ACTIONS(3540), + [anon_sym_U_DQUOTE] = ACTIONS(3540), + [anon_sym_u8_DQUOTE] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [anon_sym_NULL] = ACTIONS(3538), + [anon_sym_nullptr] = ACTIONS(3538), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3538), + [anon_sym_decltype] = ACTIONS(3538), + [anon_sym_explicit] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_module] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_template] = ACTIONS(3538), + [anon_sym_operator] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_static_assert] = ACTIONS(3538), + [anon_sym_concept] = ACTIONS(3538), + [anon_sym_co_return] = ACTIONS(3538), + [anon_sym_co_yield] = ACTIONS(3538), + [anon_sym_R_DQUOTE] = ACTIONS(3540), + [anon_sym_LR_DQUOTE] = ACTIONS(3540), + [anon_sym_uR_DQUOTE] = ACTIONS(3540), + [anon_sym_UR_DQUOTE] = ACTIONS(3540), + [anon_sym_u8R_DQUOTE] = ACTIONS(3540), + [anon_sym_co_await] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_requires] = ACTIONS(3538), + [anon_sym_CARET_CARET] = ACTIONS(3540), + [anon_sym_LBRACK_COLON] = ACTIONS(3540), + [sym_this] = ACTIONS(3538), + }, + [STATE(625)] = { + [ts_builtin_sym_end] = ACTIONS(3666), + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_module] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), + }, + [STATE(626)] = { + [sym_identifier] = ACTIONS(3300), + [aux_sym_preproc_include_token1] = ACTIONS(3300), + [aux_sym_preproc_def_token1] = ACTIONS(3300), + [aux_sym_preproc_if_token1] = ACTIONS(3300), + [aux_sym_preproc_if_token2] = ACTIONS(3300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3300), + [sym_preproc_directive] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym___extension__] = ACTIONS(3300), + [anon_sym_typedef] = ACTIONS(3300), + [anon_sym_virtual] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(3300), + [anon_sym___attribute__] = ACTIONS(3300), + [anon_sym___attribute] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3305), + [anon_sym___declspec] = ACTIONS(3300), + [anon_sym___based] = ACTIONS(3300), + [anon_sym___cdecl] = ACTIONS(3300), + [anon_sym___clrcall] = ACTIONS(3300), + [anon_sym___stdcall] = ACTIONS(3300), + [anon_sym___fastcall] = ACTIONS(3300), + [anon_sym___thiscall] = ACTIONS(3300), + [anon_sym___vectorcall] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_signed] = ACTIONS(3300), + [anon_sym_unsigned] = ACTIONS(3300), + [anon_sym_long] = ACTIONS(3300), + [anon_sym_short] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_register] = ACTIONS(3300), + [anon_sym_inline] = ACTIONS(3300), + [anon_sym___inline] = ACTIONS(3300), + [anon_sym___inline__] = ACTIONS(3300), + [anon_sym___forceinline] = ACTIONS(3300), + [anon_sym_thread_local] = ACTIONS(3300), + [anon_sym___thread] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_constexpr] = ACTIONS(3300), + [anon_sym_volatile] = ACTIONS(3300), + [anon_sym_restrict] = ACTIONS(3300), + [anon_sym___restrict__] = ACTIONS(3300), + [anon_sym__Atomic] = ACTIONS(3300), + [anon_sym__Noreturn] = ACTIONS(3300), + [anon_sym_noreturn] = ACTIONS(3300), + [anon_sym__Nonnull] = ACTIONS(3300), + [anon_sym_mutable] = ACTIONS(3300), + [anon_sym_constinit] = ACTIONS(3300), + [anon_sym_consteval] = ACTIONS(3300), + [anon_sym_alignas] = ACTIONS(3300), + [anon_sym__Alignas] = ACTIONS(3300), + [sym_primitive_type] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_union] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_goto] = ACTIONS(3300), + [anon_sym___try] = ACTIONS(3300), + [anon_sym___leave] = ACTIONS(3300), + [anon_sym_not] = ACTIONS(3300), + [anon_sym_compl] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_sizeof] = ACTIONS(3300), + [anon_sym___alignof__] = ACTIONS(3300), + [anon_sym___alignof] = ACTIONS(3300), + [anon_sym__alignof] = ACTIONS(3300), + [anon_sym_alignof] = ACTIONS(3300), + [anon_sym__Alignof] = ACTIONS(3300), + [anon_sym_offsetof] = ACTIONS(3300), + [anon_sym__Generic] = ACTIONS(3300), + [anon_sym_typename] = ACTIONS(3300), + [anon_sym_asm] = ACTIONS(3300), + [anon_sym___asm__] = ACTIONS(3300), + [anon_sym___asm] = ACTIONS(3300), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3305), + [anon_sym_u_SQUOTE] = ACTIONS(3305), + [anon_sym_U_SQUOTE] = ACTIONS(3305), + [anon_sym_u8_SQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_L_DQUOTE] = ACTIONS(3305), + [anon_sym_u_DQUOTE] = ACTIONS(3305), + [anon_sym_U_DQUOTE] = ACTIONS(3305), + [anon_sym_u8_DQUOTE] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [anon_sym_NULL] = ACTIONS(3300), + [anon_sym_nullptr] = ACTIONS(3300), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3300), + [anon_sym_decltype] = ACTIONS(3300), + [anon_sym_explicit] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_template] = ACTIONS(3300), + [anon_sym_operator] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_static_assert] = ACTIONS(3300), + [anon_sym_concept] = ACTIONS(3300), + [anon_sym_co_return] = ACTIONS(3300), + [anon_sym_co_yield] = ACTIONS(3300), + [anon_sym_R_DQUOTE] = ACTIONS(3305), + [anon_sym_LR_DQUOTE] = ACTIONS(3305), + [anon_sym_uR_DQUOTE] = ACTIONS(3305), + [anon_sym_UR_DQUOTE] = ACTIONS(3305), + [anon_sym_u8R_DQUOTE] = ACTIONS(3305), + [anon_sym_co_await] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_requires] = ACTIONS(3300), + [anon_sym_CARET_CARET] = ACTIONS(3305), + [anon_sym_LBRACK_COLON] = ACTIONS(3305), + [sym_this] = ACTIONS(3300), + }, + [STATE(627)] = { + [ts_builtin_sym_end] = ACTIONS(3662), + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), + }, + [STATE(628)] = { + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_include_token1] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token2] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym___cdecl] = ACTIONS(3644), + [anon_sym___clrcall] = ACTIONS(3644), + [anon_sym___stdcall] = ACTIONS(3644), + [anon_sym___fastcall] = ACTIONS(3644), + [anon_sym___thiscall] = ACTIONS(3644), + [anon_sym___vectorcall] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_goto] = ACTIONS(3644), + [anon_sym___try] = ACTIONS(3644), + [anon_sym___leave] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_compl] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_sizeof] = ACTIONS(3644), + [anon_sym___alignof__] = ACTIONS(3644), + [anon_sym___alignof] = ACTIONS(3644), + [anon_sym__alignof] = ACTIONS(3644), + [anon_sym_alignof] = ACTIONS(3644), + [anon_sym__Alignof] = ACTIONS(3644), + [anon_sym_offsetof] = ACTIONS(3644), + [anon_sym__Generic] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [anon_sym_asm] = ACTIONS(3644), + [anon_sym___asm__] = ACTIONS(3644), + [anon_sym___asm] = ACTIONS(3644), + [sym_number_literal] = ACTIONS(3646), + [anon_sym_L_SQUOTE] = ACTIONS(3646), + [anon_sym_u_SQUOTE] = ACTIONS(3646), + [anon_sym_U_SQUOTE] = ACTIONS(3646), + [anon_sym_u8_SQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_L_DQUOTE] = ACTIONS(3646), + [anon_sym_u_DQUOTE] = ACTIONS(3646), + [anon_sym_U_DQUOTE] = ACTIONS(3646), + [anon_sym_u8_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [anon_sym_NULL] = ACTIONS(3644), + [anon_sym_nullptr] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_module] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_concept] = ACTIONS(3644), + [anon_sym_co_return] = ACTIONS(3644), + [anon_sym_co_yield] = ACTIONS(3644), + [anon_sym_R_DQUOTE] = ACTIONS(3646), + [anon_sym_LR_DQUOTE] = ACTIONS(3646), + [anon_sym_uR_DQUOTE] = ACTIONS(3646), + [anon_sym_UR_DQUOTE] = ACTIONS(3646), + [anon_sym_u8R_DQUOTE] = ACTIONS(3646), + [anon_sym_co_await] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_requires] = ACTIONS(3644), + [anon_sym_CARET_CARET] = ACTIONS(3646), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), + }, + [STATE(629)] = { + [ts_builtin_sym_end] = ACTIONS(3658), + [sym_identifier] = ACTIONS(3656), + [aux_sym_preproc_include_token1] = ACTIONS(3656), + [aux_sym_preproc_def_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), + [sym_preproc_directive] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym___extension__] = ACTIONS(3656), + [anon_sym_typedef] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym___attribute__] = ACTIONS(3656), + [anon_sym___attribute] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), + [anon_sym___declspec] = ACTIONS(3656), + [anon_sym___based] = ACTIONS(3656), + [anon_sym___cdecl] = ACTIONS(3656), + [anon_sym___clrcall] = ACTIONS(3656), + [anon_sym___stdcall] = ACTIONS(3656), + [anon_sym___fastcall] = ACTIONS(3656), + [anon_sym___thiscall] = ACTIONS(3656), + [anon_sym___vectorcall] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3656), + [anon_sym_unsigned] = ACTIONS(3656), + [anon_sym_long] = ACTIONS(3656), + [anon_sym_short] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_register] = ACTIONS(3656), + [anon_sym_inline] = ACTIONS(3656), + [anon_sym___inline] = ACTIONS(3656), + [anon_sym___inline__] = ACTIONS(3656), + [anon_sym___forceinline] = ACTIONS(3656), + [anon_sym_thread_local] = ACTIONS(3656), + [anon_sym___thread] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_constexpr] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_restrict] = ACTIONS(3656), + [anon_sym___restrict__] = ACTIONS(3656), + [anon_sym__Atomic] = ACTIONS(3656), + [anon_sym__Noreturn] = ACTIONS(3656), + [anon_sym_noreturn] = ACTIONS(3656), + [anon_sym__Nonnull] = ACTIONS(3656), + [anon_sym_mutable] = ACTIONS(3656), + [anon_sym_constinit] = ACTIONS(3656), + [anon_sym_consteval] = ACTIONS(3656), + [anon_sym_alignas] = ACTIONS(3656), + [anon_sym__Alignas] = ACTIONS(3656), + [sym_primitive_type] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_union] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym___try] = ACTIONS(3656), + [anon_sym___leave] = ACTIONS(3656), + [anon_sym_not] = ACTIONS(3656), + [anon_sym_compl] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym___alignof__] = ACTIONS(3656), + [anon_sym___alignof] = ACTIONS(3656), + [anon_sym__alignof] = ACTIONS(3656), + [anon_sym_alignof] = ACTIONS(3656), + [anon_sym__Alignof] = ACTIONS(3656), + [anon_sym_offsetof] = ACTIONS(3656), + [anon_sym__Generic] = ACTIONS(3656), + [anon_sym_typename] = ACTIONS(3656), + [anon_sym_asm] = ACTIONS(3656), + [anon_sym___asm__] = ACTIONS(3656), + [anon_sym___asm] = ACTIONS(3656), + [sym_number_literal] = ACTIONS(3658), + [anon_sym_L_SQUOTE] = ACTIONS(3658), + [anon_sym_u_SQUOTE] = ACTIONS(3658), + [anon_sym_U_SQUOTE] = ACTIONS(3658), + [anon_sym_u8_SQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_L_DQUOTE] = ACTIONS(3658), + [anon_sym_u_DQUOTE] = ACTIONS(3658), + [anon_sym_U_DQUOTE] = ACTIONS(3658), + [anon_sym_u8_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [anon_sym_NULL] = ACTIONS(3656), + [anon_sym_nullptr] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_concept] = ACTIONS(3656), + [anon_sym_co_return] = ACTIONS(3656), + [anon_sym_co_yield] = ACTIONS(3656), + [anon_sym_R_DQUOTE] = ACTIONS(3658), + [anon_sym_LR_DQUOTE] = ACTIONS(3658), + [anon_sym_uR_DQUOTE] = ACTIONS(3658), + [anon_sym_UR_DQUOTE] = ACTIONS(3658), + [anon_sym_u8R_DQUOTE] = ACTIONS(3658), + [anon_sym_co_await] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_requires] = ACTIONS(3656), + [anon_sym_CARET_CARET] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + [sym_this] = ACTIONS(3656), + }, + [STATE(630)] = { + [ts_builtin_sym_end] = ACTIONS(3662), + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_module] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), + }, + [STATE(631)] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [anon_sym___asm] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [anon_sym_CARET_CARET] = ACTIONS(3670), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + [sym_this] = ACTIONS(3668), + }, + [STATE(632)] = { + [sym_identifier] = ACTIONS(3656), + [aux_sym_preproc_include_token1] = ACTIONS(3656), + [aux_sym_preproc_def_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token2] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), + [sym_preproc_directive] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym___extension__] = ACTIONS(3656), + [anon_sym_typedef] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym___attribute__] = ACTIONS(3656), + [anon_sym___attribute] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), + [anon_sym___declspec] = ACTIONS(3656), + [anon_sym___based] = ACTIONS(3656), + [anon_sym___cdecl] = ACTIONS(3656), + [anon_sym___clrcall] = ACTIONS(3656), + [anon_sym___stdcall] = ACTIONS(3656), + [anon_sym___fastcall] = ACTIONS(3656), + [anon_sym___thiscall] = ACTIONS(3656), + [anon_sym___vectorcall] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3656), + [anon_sym_unsigned] = ACTIONS(3656), + [anon_sym_long] = ACTIONS(3656), + [anon_sym_short] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_register] = ACTIONS(3656), + [anon_sym_inline] = ACTIONS(3656), + [anon_sym___inline] = ACTIONS(3656), + [anon_sym___inline__] = ACTIONS(3656), + [anon_sym___forceinline] = ACTIONS(3656), + [anon_sym_thread_local] = ACTIONS(3656), + [anon_sym___thread] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_constexpr] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_restrict] = ACTIONS(3656), + [anon_sym___restrict__] = ACTIONS(3656), + [anon_sym__Atomic] = ACTIONS(3656), + [anon_sym__Noreturn] = ACTIONS(3656), + [anon_sym_noreturn] = ACTIONS(3656), + [anon_sym__Nonnull] = ACTIONS(3656), + [anon_sym_mutable] = ACTIONS(3656), + [anon_sym_constinit] = ACTIONS(3656), + [anon_sym_consteval] = ACTIONS(3656), + [anon_sym_alignas] = ACTIONS(3656), + [anon_sym__Alignas] = ACTIONS(3656), + [sym_primitive_type] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_union] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym___try] = ACTIONS(3656), + [anon_sym___leave] = ACTIONS(3656), + [anon_sym_not] = ACTIONS(3656), + [anon_sym_compl] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym___alignof__] = ACTIONS(3656), + [anon_sym___alignof] = ACTIONS(3656), + [anon_sym__alignof] = ACTIONS(3656), + [anon_sym_alignof] = ACTIONS(3656), + [anon_sym__Alignof] = ACTIONS(3656), + [anon_sym_offsetof] = ACTIONS(3656), + [anon_sym__Generic] = ACTIONS(3656), + [anon_sym_typename] = ACTIONS(3656), + [anon_sym_asm] = ACTIONS(3656), + [anon_sym___asm__] = ACTIONS(3656), + [anon_sym___asm] = ACTIONS(3656), + [sym_number_literal] = ACTIONS(3658), + [anon_sym_L_SQUOTE] = ACTIONS(3658), + [anon_sym_u_SQUOTE] = ACTIONS(3658), + [anon_sym_U_SQUOTE] = ACTIONS(3658), + [anon_sym_u8_SQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_L_DQUOTE] = ACTIONS(3658), + [anon_sym_u_DQUOTE] = ACTIONS(3658), + [anon_sym_U_DQUOTE] = ACTIONS(3658), + [anon_sym_u8_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [anon_sym_NULL] = ACTIONS(3656), + [anon_sym_nullptr] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_module] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_concept] = ACTIONS(3656), + [anon_sym_co_return] = ACTIONS(3656), + [anon_sym_co_yield] = ACTIONS(3656), + [anon_sym_R_DQUOTE] = ACTIONS(3658), + [anon_sym_LR_DQUOTE] = ACTIONS(3658), + [anon_sym_uR_DQUOTE] = ACTIONS(3658), + [anon_sym_UR_DQUOTE] = ACTIONS(3658), + [anon_sym_u8R_DQUOTE] = ACTIONS(3658), + [anon_sym_co_await] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_requires] = ACTIONS(3656), + [anon_sym_CARET_CARET] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + [sym_this] = ACTIONS(3656), + }, + [STATE(633)] = { + [ts_builtin_sym_end] = ACTIONS(3670), + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [anon_sym___asm] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_module] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [anon_sym_CARET_CARET] = ACTIONS(3670), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + [sym_this] = ACTIONS(3668), + }, + [STATE(634)] = { [ts_builtin_sym_end] = ACTIONS(3598), [sym_identifier] = ACTIONS(3596), [aux_sym_preproc_include_token1] = ACTIONS(3596), @@ -142361,1711 +150742,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3598), [sym_this] = ACTIONS(3596), }, - [STATE(576)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), - }, - [STATE(577)] = { - [ts_builtin_sym_end] = ACTIONS(3628), - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [anon_sym___asm] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [anon_sym_CARET_CARET] = ACTIONS(3628), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), - [sym_this] = ACTIONS(3626), - }, - [STATE(578)] = { - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3520), - [aux_sym_preproc_include_token1] = ACTIONS(3520), - [aux_sym_preproc_def_token1] = ACTIONS(3520), - [aux_sym_preproc_if_token1] = ACTIONS(3520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3520), - [sym_preproc_directive] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_AMP_AMP] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym___extension__] = ACTIONS(3520), - [anon_sym_typedef] = ACTIONS(3520), - [anon_sym_virtual] = ACTIONS(3520), - [anon_sym_extern] = ACTIONS(3520), - [anon_sym___attribute__] = ACTIONS(3520), - [anon_sym___attribute] = ACTIONS(3520), - [anon_sym_using] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3522), - [anon_sym___declspec] = ACTIONS(3520), - [anon_sym___based] = ACTIONS(3520), - [anon_sym___cdecl] = ACTIONS(3520), - [anon_sym___clrcall] = ACTIONS(3520), - [anon_sym___stdcall] = ACTIONS(3520), - [anon_sym___fastcall] = ACTIONS(3520), - [anon_sym___thiscall] = ACTIONS(3520), - [anon_sym___vectorcall] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_signed] = ACTIONS(3520), - [anon_sym_unsigned] = ACTIONS(3520), - [anon_sym_long] = ACTIONS(3520), - [anon_sym_short] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_register] = ACTIONS(3520), - [anon_sym_inline] = ACTIONS(3520), - [anon_sym___inline] = ACTIONS(3520), - [anon_sym___inline__] = ACTIONS(3520), - [anon_sym___forceinline] = ACTIONS(3520), - [anon_sym_thread_local] = ACTIONS(3520), - [anon_sym___thread] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_constexpr] = ACTIONS(3520), - [anon_sym_volatile] = ACTIONS(3520), - [anon_sym_restrict] = ACTIONS(3520), - [anon_sym___restrict__] = ACTIONS(3520), - [anon_sym__Atomic] = ACTIONS(3520), - [anon_sym__Noreturn] = ACTIONS(3520), - [anon_sym_noreturn] = ACTIONS(3520), - [anon_sym__Nonnull] = ACTIONS(3520), - [anon_sym_mutable] = ACTIONS(3520), - [anon_sym_constinit] = ACTIONS(3520), - [anon_sym_consteval] = ACTIONS(3520), - [anon_sym_alignas] = ACTIONS(3520), - [anon_sym__Alignas] = ACTIONS(3520), - [sym_primitive_type] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), - [anon_sym_class] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(3520), - [anon_sym_union] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_else] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_case] = ACTIONS(3520), - [anon_sym_default] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_goto] = ACTIONS(3520), - [anon_sym___try] = ACTIONS(3520), - [anon_sym___leave] = ACTIONS(3520), - [anon_sym_not] = ACTIONS(3520), - [anon_sym_compl] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_sizeof] = ACTIONS(3520), - [anon_sym___alignof__] = ACTIONS(3520), - [anon_sym___alignof] = ACTIONS(3520), - [anon_sym__alignof] = ACTIONS(3520), - [anon_sym_alignof] = ACTIONS(3520), - [anon_sym__Alignof] = ACTIONS(3520), - [anon_sym_offsetof] = ACTIONS(3520), - [anon_sym__Generic] = ACTIONS(3520), - [anon_sym_typename] = ACTIONS(3520), - [anon_sym_asm] = ACTIONS(3520), - [anon_sym___asm__] = ACTIONS(3520), - [anon_sym___asm] = ACTIONS(3520), - [sym_number_literal] = ACTIONS(3522), - [anon_sym_L_SQUOTE] = ACTIONS(3522), - [anon_sym_u_SQUOTE] = ACTIONS(3522), - [anon_sym_U_SQUOTE] = ACTIONS(3522), - [anon_sym_u8_SQUOTE] = ACTIONS(3522), - [anon_sym_SQUOTE] = ACTIONS(3522), - [anon_sym_L_DQUOTE] = ACTIONS(3522), - [anon_sym_u_DQUOTE] = ACTIONS(3522), - [anon_sym_U_DQUOTE] = ACTIONS(3522), - [anon_sym_u8_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [sym_true] = ACTIONS(3520), - [sym_false] = ACTIONS(3520), - [anon_sym_NULL] = ACTIONS(3520), - [anon_sym_nullptr] = ACTIONS(3520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3520), - [anon_sym_decltype] = ACTIONS(3520), - [anon_sym_explicit] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3520), - [anon_sym_module] = ACTIONS(3520), - [anon_sym_import] = ACTIONS(3520), - [anon_sym_template] = ACTIONS(3520), - [anon_sym_operator] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_delete] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_namespace] = ACTIONS(3520), - [anon_sym_static_assert] = ACTIONS(3520), - [anon_sym_concept] = ACTIONS(3520), - [anon_sym_co_return] = ACTIONS(3520), - [anon_sym_co_yield] = ACTIONS(3520), - [anon_sym_R_DQUOTE] = ACTIONS(3522), - [anon_sym_LR_DQUOTE] = ACTIONS(3522), - [anon_sym_uR_DQUOTE] = ACTIONS(3522), - [anon_sym_UR_DQUOTE] = ACTIONS(3522), - [anon_sym_u8R_DQUOTE] = ACTIONS(3522), - [anon_sym_co_await] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_requires] = ACTIONS(3520), - [anon_sym_CARET_CARET] = ACTIONS(3522), - [anon_sym_LBRACK_COLON] = ACTIONS(3522), - [sym_this] = ACTIONS(3520), - }, - [STATE(579)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), - }, - [STATE(580)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(581)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(582)] = { - [ts_builtin_sym_end] = ACTIONS(3640), - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_include_token1] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym___attribute] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym___cdecl] = ACTIONS(3638), - [anon_sym___clrcall] = ACTIONS(3638), - [anon_sym___stdcall] = ACTIONS(3638), - [anon_sym___fastcall] = ACTIONS(3638), - [anon_sym___thiscall] = ACTIONS(3638), - [anon_sym___vectorcall] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym__Nonnull] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym__Alignas] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_else] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_goto] = ACTIONS(3638), - [anon_sym___try] = ACTIONS(3638), - [anon_sym___leave] = ACTIONS(3638), - [anon_sym_not] = ACTIONS(3638), - [anon_sym_compl] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3638), - [anon_sym___alignof__] = ACTIONS(3638), - [anon_sym___alignof] = ACTIONS(3638), - [anon_sym__alignof] = ACTIONS(3638), - [anon_sym_alignof] = ACTIONS(3638), - [anon_sym__Alignof] = ACTIONS(3638), - [anon_sym_offsetof] = ACTIONS(3638), - [anon_sym__Generic] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_asm] = ACTIONS(3638), - [anon_sym___asm__] = ACTIONS(3638), - [anon_sym___asm] = ACTIONS(3638), - [sym_number_literal] = ACTIONS(3640), - [anon_sym_L_SQUOTE] = ACTIONS(3640), - [anon_sym_u_SQUOTE] = ACTIONS(3640), - [anon_sym_U_SQUOTE] = ACTIONS(3640), - [anon_sym_u8_SQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_L_DQUOTE] = ACTIONS(3640), - [anon_sym_u_DQUOTE] = ACTIONS(3640), - [anon_sym_U_DQUOTE] = ACTIONS(3640), - [anon_sym_u8_DQUOTE] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [anon_sym_NULL] = ACTIONS(3638), - [anon_sym_nullptr] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_export] = ACTIONS(3638), - [anon_sym_module] = ACTIONS(3638), - [anon_sym_import] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), - [anon_sym_concept] = ACTIONS(3638), - [anon_sym_co_return] = ACTIONS(3638), - [anon_sym_co_yield] = ACTIONS(3638), - [anon_sym_R_DQUOTE] = ACTIONS(3640), - [anon_sym_LR_DQUOTE] = ACTIONS(3640), - [anon_sym_uR_DQUOTE] = ACTIONS(3640), - [anon_sym_UR_DQUOTE] = ACTIONS(3640), - [anon_sym_u8R_DQUOTE] = ACTIONS(3640), - [anon_sym_co_await] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_requires] = ACTIONS(3638), - [anon_sym_CARET_CARET] = ACTIONS(3640), - [anon_sym_LBRACK_COLON] = ACTIONS(3640), - [sym_this] = ACTIONS(3638), - }, - [STATE(583)] = { - [sym_identifier] = ACTIONS(3564), - [aux_sym_preproc_include_token1] = ACTIONS(3564), - [aux_sym_preproc_def_token1] = ACTIONS(3564), - [aux_sym_preproc_if_token1] = ACTIONS(3564), - [aux_sym_preproc_if_token2] = ACTIONS(3564), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3564), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3564), - [sym_preproc_directive] = ACTIONS(3564), - [anon_sym_LPAREN2] = ACTIONS(3566), - [anon_sym_BANG] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3564), - [anon_sym_SEMI] = ACTIONS(3566), - [anon_sym___extension__] = ACTIONS(3564), - [anon_sym_typedef] = ACTIONS(3564), - [anon_sym_virtual] = ACTIONS(3564), - [anon_sym_extern] = ACTIONS(3564), - [anon_sym___attribute__] = ACTIONS(3564), - [anon_sym___attribute] = ACTIONS(3564), - [anon_sym_using] = ACTIONS(3564), - [anon_sym_COLON_COLON] = ACTIONS(3566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3566), - [anon_sym___declspec] = ACTIONS(3564), - [anon_sym___based] = ACTIONS(3564), - [anon_sym___cdecl] = ACTIONS(3564), - [anon_sym___clrcall] = ACTIONS(3564), - [anon_sym___stdcall] = ACTIONS(3564), - [anon_sym___fastcall] = ACTIONS(3564), - [anon_sym___thiscall] = ACTIONS(3564), - [anon_sym___vectorcall] = ACTIONS(3564), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_signed] = ACTIONS(3564), - [anon_sym_unsigned] = ACTIONS(3564), - [anon_sym_long] = ACTIONS(3564), - [anon_sym_short] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3564), - [anon_sym_static] = ACTIONS(3564), - [anon_sym_register] = ACTIONS(3564), - [anon_sym_inline] = ACTIONS(3564), - [anon_sym___inline] = ACTIONS(3564), - [anon_sym___inline__] = ACTIONS(3564), - [anon_sym___forceinline] = ACTIONS(3564), - [anon_sym_thread_local] = ACTIONS(3564), - [anon_sym___thread] = ACTIONS(3564), - [anon_sym_const] = ACTIONS(3564), - [anon_sym_constexpr] = ACTIONS(3564), - [anon_sym_volatile] = ACTIONS(3564), - [anon_sym_restrict] = ACTIONS(3564), - [anon_sym___restrict__] = ACTIONS(3564), - [anon_sym__Atomic] = ACTIONS(3564), - [anon_sym__Noreturn] = ACTIONS(3564), - [anon_sym_noreturn] = ACTIONS(3564), - [anon_sym__Nonnull] = ACTIONS(3564), - [anon_sym_mutable] = ACTIONS(3564), - [anon_sym_constinit] = ACTIONS(3564), - [anon_sym_consteval] = ACTIONS(3564), - [anon_sym_alignas] = ACTIONS(3564), - [anon_sym__Alignas] = ACTIONS(3564), - [sym_primitive_type] = ACTIONS(3564), - [anon_sym_enum] = ACTIONS(3564), - [anon_sym_class] = ACTIONS(3564), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_union] = ACTIONS(3564), - [anon_sym_if] = ACTIONS(3564), - [anon_sym_else] = ACTIONS(3564), - [anon_sym_switch] = ACTIONS(3564), - [anon_sym_case] = ACTIONS(3564), - [anon_sym_default] = ACTIONS(3564), - [anon_sym_while] = ACTIONS(3564), - [anon_sym_do] = ACTIONS(3564), - [anon_sym_for] = ACTIONS(3564), - [anon_sym_return] = ACTIONS(3564), - [anon_sym_break] = ACTIONS(3564), - [anon_sym_continue] = ACTIONS(3564), - [anon_sym_goto] = ACTIONS(3564), - [anon_sym___try] = ACTIONS(3564), - [anon_sym___leave] = ACTIONS(3564), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3566), - [anon_sym_PLUS_PLUS] = ACTIONS(3566), - [anon_sym_sizeof] = ACTIONS(3564), - [anon_sym___alignof__] = ACTIONS(3564), - [anon_sym___alignof] = ACTIONS(3564), - [anon_sym__alignof] = ACTIONS(3564), - [anon_sym_alignof] = ACTIONS(3564), - [anon_sym__Alignof] = ACTIONS(3564), - [anon_sym_offsetof] = ACTIONS(3564), - [anon_sym__Generic] = ACTIONS(3564), - [anon_sym_typename] = ACTIONS(3564), - [anon_sym_asm] = ACTIONS(3564), - [anon_sym___asm__] = ACTIONS(3564), - [anon_sym___asm] = ACTIONS(3564), - [sym_number_literal] = ACTIONS(3566), - [anon_sym_L_SQUOTE] = ACTIONS(3566), - [anon_sym_u_SQUOTE] = ACTIONS(3566), - [anon_sym_U_SQUOTE] = ACTIONS(3566), - [anon_sym_u8_SQUOTE] = ACTIONS(3566), - [anon_sym_SQUOTE] = ACTIONS(3566), - [anon_sym_L_DQUOTE] = ACTIONS(3566), - [anon_sym_u_DQUOTE] = ACTIONS(3566), - [anon_sym_U_DQUOTE] = ACTIONS(3566), - [anon_sym_u8_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [sym_true] = ACTIONS(3564), - [sym_false] = ACTIONS(3564), - [anon_sym_NULL] = ACTIONS(3564), - [anon_sym_nullptr] = ACTIONS(3564), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3564), - [anon_sym_decltype] = ACTIONS(3564), - [anon_sym_explicit] = ACTIONS(3564), - [anon_sym_export] = ACTIONS(3564), - [anon_sym_module] = ACTIONS(3564), - [anon_sym_import] = ACTIONS(3564), - [anon_sym_template] = ACTIONS(3564), - [anon_sym_operator] = ACTIONS(3564), - [anon_sym_try] = ACTIONS(3564), - [anon_sym_delete] = ACTIONS(3564), - [anon_sym_throw] = ACTIONS(3564), - [anon_sym_namespace] = ACTIONS(3564), - [anon_sym_static_assert] = ACTIONS(3564), - [anon_sym_concept] = ACTIONS(3564), - [anon_sym_co_return] = ACTIONS(3564), - [anon_sym_co_yield] = ACTIONS(3564), - [anon_sym_R_DQUOTE] = ACTIONS(3566), - [anon_sym_LR_DQUOTE] = ACTIONS(3566), - [anon_sym_uR_DQUOTE] = ACTIONS(3566), - [anon_sym_UR_DQUOTE] = ACTIONS(3566), - [anon_sym_u8R_DQUOTE] = ACTIONS(3566), - [anon_sym_co_await] = ACTIONS(3564), - [anon_sym_new] = ACTIONS(3564), - [anon_sym_requires] = ACTIONS(3564), - [anon_sym_CARET_CARET] = ACTIONS(3566), - [anon_sym_LBRACK_COLON] = ACTIONS(3566), - [sym_this] = ACTIONS(3564), - }, - [STATE(584)] = { - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_include_token1] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token2] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym___attribute] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym___cdecl] = ACTIONS(3614), - [anon_sym___clrcall] = ACTIONS(3614), - [anon_sym___stdcall] = ACTIONS(3614), - [anon_sym___fastcall] = ACTIONS(3614), - [anon_sym___thiscall] = ACTIONS(3614), - [anon_sym___vectorcall] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym__Nonnull] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym__Alignas] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_else] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_goto] = ACTIONS(3614), - [anon_sym___try] = ACTIONS(3614), - [anon_sym___leave] = ACTIONS(3614), - [anon_sym_not] = ACTIONS(3614), - [anon_sym_compl] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3614), - [anon_sym___alignof__] = ACTIONS(3614), - [anon_sym___alignof] = ACTIONS(3614), - [anon_sym__alignof] = ACTIONS(3614), - [anon_sym_alignof] = ACTIONS(3614), - [anon_sym__Alignof] = ACTIONS(3614), - [anon_sym_offsetof] = ACTIONS(3614), - [anon_sym__Generic] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_asm] = ACTIONS(3614), - [anon_sym___asm__] = ACTIONS(3614), - [anon_sym___asm] = ACTIONS(3614), - [sym_number_literal] = ACTIONS(3616), - [anon_sym_L_SQUOTE] = ACTIONS(3616), - [anon_sym_u_SQUOTE] = ACTIONS(3616), - [anon_sym_U_SQUOTE] = ACTIONS(3616), - [anon_sym_u8_SQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_L_DQUOTE] = ACTIONS(3616), - [anon_sym_u_DQUOTE] = ACTIONS(3616), - [anon_sym_U_DQUOTE] = ACTIONS(3616), - [anon_sym_u8_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [anon_sym_NULL] = ACTIONS(3614), - [anon_sym_nullptr] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_export] = ACTIONS(3614), - [anon_sym_module] = ACTIONS(3614), - [anon_sym_import] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - [anon_sym_concept] = ACTIONS(3614), - [anon_sym_co_return] = ACTIONS(3614), - [anon_sym_co_yield] = ACTIONS(3614), - [anon_sym_R_DQUOTE] = ACTIONS(3616), - [anon_sym_LR_DQUOTE] = ACTIONS(3616), - [anon_sym_uR_DQUOTE] = ACTIONS(3616), - [anon_sym_UR_DQUOTE] = ACTIONS(3616), - [anon_sym_u8R_DQUOTE] = ACTIONS(3616), - [anon_sym_co_await] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_requires] = ACTIONS(3614), - [anon_sym_CARET_CARET] = ACTIONS(3616), - [anon_sym_LBRACK_COLON] = ACTIONS(3616), - [sym_this] = ACTIONS(3614), - }, - [STATE(585)] = { - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_include_token1] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token2] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym___attribute] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym___cdecl] = ACTIONS(3634), - [anon_sym___clrcall] = ACTIONS(3634), - [anon_sym___stdcall] = ACTIONS(3634), - [anon_sym___fastcall] = ACTIONS(3634), - [anon_sym___thiscall] = ACTIONS(3634), - [anon_sym___vectorcall] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym__Nonnull] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym__Alignas] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_else] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_goto] = ACTIONS(3634), - [anon_sym___try] = ACTIONS(3634), - [anon_sym___leave] = ACTIONS(3634), - [anon_sym_not] = ACTIONS(3634), - [anon_sym_compl] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3634), - [anon_sym___alignof__] = ACTIONS(3634), - [anon_sym___alignof] = ACTIONS(3634), - [anon_sym__alignof] = ACTIONS(3634), - [anon_sym_alignof] = ACTIONS(3634), - [anon_sym__Alignof] = ACTIONS(3634), - [anon_sym_offsetof] = ACTIONS(3634), - [anon_sym__Generic] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_asm] = ACTIONS(3634), - [anon_sym___asm__] = ACTIONS(3634), - [anon_sym___asm] = ACTIONS(3634), - [sym_number_literal] = ACTIONS(3636), - [anon_sym_L_SQUOTE] = ACTIONS(3636), - [anon_sym_u_SQUOTE] = ACTIONS(3636), - [anon_sym_U_SQUOTE] = ACTIONS(3636), - [anon_sym_u8_SQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_L_DQUOTE] = ACTIONS(3636), - [anon_sym_u_DQUOTE] = ACTIONS(3636), - [anon_sym_U_DQUOTE] = ACTIONS(3636), - [anon_sym_u8_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [anon_sym_NULL] = ACTIONS(3634), - [anon_sym_nullptr] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_export] = ACTIONS(3634), - [anon_sym_module] = ACTIONS(3634), - [anon_sym_import] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), - [anon_sym_concept] = ACTIONS(3634), - [anon_sym_co_return] = ACTIONS(3634), - [anon_sym_co_yield] = ACTIONS(3634), - [anon_sym_R_DQUOTE] = ACTIONS(3636), - [anon_sym_LR_DQUOTE] = ACTIONS(3636), - [anon_sym_uR_DQUOTE] = ACTIONS(3636), - [anon_sym_UR_DQUOTE] = ACTIONS(3636), - [anon_sym_u8R_DQUOTE] = ACTIONS(3636), - [anon_sym_co_await] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_requires] = ACTIONS(3634), - [anon_sym_CARET_CARET] = ACTIONS(3636), - [anon_sym_LBRACK_COLON] = ACTIONS(3636), - [sym_this] = ACTIONS(3634), - }, - [STATE(586)] = { - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3564), - [aux_sym_preproc_include_token1] = ACTIONS(3564), - [aux_sym_preproc_def_token1] = ACTIONS(3564), - [aux_sym_preproc_if_token1] = ACTIONS(3564), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3564), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3564), - [sym_preproc_directive] = ACTIONS(3564), - [anon_sym_LPAREN2] = ACTIONS(3566), - [anon_sym_BANG] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3564), - [anon_sym_SEMI] = ACTIONS(3566), - [anon_sym___extension__] = ACTIONS(3564), - [anon_sym_typedef] = ACTIONS(3564), - [anon_sym_virtual] = ACTIONS(3564), - [anon_sym_extern] = ACTIONS(3564), - [anon_sym___attribute__] = ACTIONS(3564), - [anon_sym___attribute] = ACTIONS(3564), - [anon_sym_using] = ACTIONS(3564), - [anon_sym_COLON_COLON] = ACTIONS(3566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3566), - [anon_sym___declspec] = ACTIONS(3564), - [anon_sym___based] = ACTIONS(3564), - [anon_sym___cdecl] = ACTIONS(3564), - [anon_sym___clrcall] = ACTIONS(3564), - [anon_sym___stdcall] = ACTIONS(3564), - [anon_sym___fastcall] = ACTIONS(3564), - [anon_sym___thiscall] = ACTIONS(3564), - [anon_sym___vectorcall] = ACTIONS(3564), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_signed] = ACTIONS(3564), - [anon_sym_unsigned] = ACTIONS(3564), - [anon_sym_long] = ACTIONS(3564), - [anon_sym_short] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3564), - [anon_sym_static] = ACTIONS(3564), - [anon_sym_register] = ACTIONS(3564), - [anon_sym_inline] = ACTIONS(3564), - [anon_sym___inline] = ACTIONS(3564), - [anon_sym___inline__] = ACTIONS(3564), - [anon_sym___forceinline] = ACTIONS(3564), - [anon_sym_thread_local] = ACTIONS(3564), - [anon_sym___thread] = ACTIONS(3564), - [anon_sym_const] = ACTIONS(3564), - [anon_sym_constexpr] = ACTIONS(3564), - [anon_sym_volatile] = ACTIONS(3564), - [anon_sym_restrict] = ACTIONS(3564), - [anon_sym___restrict__] = ACTIONS(3564), - [anon_sym__Atomic] = ACTIONS(3564), - [anon_sym__Noreturn] = ACTIONS(3564), - [anon_sym_noreturn] = ACTIONS(3564), - [anon_sym__Nonnull] = ACTIONS(3564), - [anon_sym_mutable] = ACTIONS(3564), - [anon_sym_constinit] = ACTIONS(3564), - [anon_sym_consteval] = ACTIONS(3564), - [anon_sym_alignas] = ACTIONS(3564), - [anon_sym__Alignas] = ACTIONS(3564), - [sym_primitive_type] = ACTIONS(3564), - [anon_sym_enum] = ACTIONS(3564), - [anon_sym_class] = ACTIONS(3564), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_union] = ACTIONS(3564), - [anon_sym_if] = ACTIONS(3564), - [anon_sym_else] = ACTIONS(3564), - [anon_sym_switch] = ACTIONS(3564), - [anon_sym_case] = ACTIONS(3564), - [anon_sym_default] = ACTIONS(3564), - [anon_sym_while] = ACTIONS(3564), - [anon_sym_do] = ACTIONS(3564), - [anon_sym_for] = ACTIONS(3564), - [anon_sym_return] = ACTIONS(3564), - [anon_sym_break] = ACTIONS(3564), - [anon_sym_continue] = ACTIONS(3564), - [anon_sym_goto] = ACTIONS(3564), - [anon_sym___try] = ACTIONS(3564), - [anon_sym___leave] = ACTIONS(3564), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3566), - [anon_sym_PLUS_PLUS] = ACTIONS(3566), - [anon_sym_sizeof] = ACTIONS(3564), - [anon_sym___alignof__] = ACTIONS(3564), - [anon_sym___alignof] = ACTIONS(3564), - [anon_sym__alignof] = ACTIONS(3564), - [anon_sym_alignof] = ACTIONS(3564), - [anon_sym__Alignof] = ACTIONS(3564), - [anon_sym_offsetof] = ACTIONS(3564), - [anon_sym__Generic] = ACTIONS(3564), - [anon_sym_typename] = ACTIONS(3564), - [anon_sym_asm] = ACTIONS(3564), - [anon_sym___asm__] = ACTIONS(3564), - [anon_sym___asm] = ACTIONS(3564), - [sym_number_literal] = ACTIONS(3566), - [anon_sym_L_SQUOTE] = ACTIONS(3566), - [anon_sym_u_SQUOTE] = ACTIONS(3566), - [anon_sym_U_SQUOTE] = ACTIONS(3566), - [anon_sym_u8_SQUOTE] = ACTIONS(3566), - [anon_sym_SQUOTE] = ACTIONS(3566), - [anon_sym_L_DQUOTE] = ACTIONS(3566), - [anon_sym_u_DQUOTE] = ACTIONS(3566), - [anon_sym_U_DQUOTE] = ACTIONS(3566), - [anon_sym_u8_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [sym_true] = ACTIONS(3564), - [sym_false] = ACTIONS(3564), - [anon_sym_NULL] = ACTIONS(3564), - [anon_sym_nullptr] = ACTIONS(3564), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3564), - [anon_sym_decltype] = ACTIONS(3564), - [anon_sym_explicit] = ACTIONS(3564), - [anon_sym_export] = ACTIONS(3564), - [anon_sym_module] = ACTIONS(3564), - [anon_sym_import] = ACTIONS(3564), - [anon_sym_template] = ACTIONS(3564), - [anon_sym_operator] = ACTIONS(3564), - [anon_sym_try] = ACTIONS(3564), - [anon_sym_delete] = ACTIONS(3564), - [anon_sym_throw] = ACTIONS(3564), - [anon_sym_namespace] = ACTIONS(3564), - [anon_sym_static_assert] = ACTIONS(3564), - [anon_sym_concept] = ACTIONS(3564), - [anon_sym_co_return] = ACTIONS(3564), - [anon_sym_co_yield] = ACTIONS(3564), - [anon_sym_R_DQUOTE] = ACTIONS(3566), - [anon_sym_LR_DQUOTE] = ACTIONS(3566), - [anon_sym_uR_DQUOTE] = ACTIONS(3566), - [anon_sym_UR_DQUOTE] = ACTIONS(3566), - [anon_sym_u8R_DQUOTE] = ACTIONS(3566), - [anon_sym_co_await] = ACTIONS(3564), - [anon_sym_new] = ACTIONS(3564), - [anon_sym_requires] = ACTIONS(3564), - [anon_sym_CARET_CARET] = ACTIONS(3566), - [anon_sym_LBRACK_COLON] = ACTIONS(3566), - [sym_this] = ACTIONS(3564), - }, - [STATE(587)] = { - [sym_identifier] = ACTIONS(3576), - [aux_sym_preproc_include_token1] = ACTIONS(3576), - [aux_sym_preproc_def_token1] = ACTIONS(3576), - [aux_sym_preproc_if_token1] = ACTIONS(3576), - [aux_sym_preproc_if_token2] = ACTIONS(3576), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3576), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3576), - [sym_preproc_directive] = ACTIONS(3576), - [anon_sym_LPAREN2] = ACTIONS(3578), - [anon_sym_BANG] = ACTIONS(3578), - [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(3578), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [anon_sym_AMP] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym___extension__] = ACTIONS(3576), - [anon_sym_typedef] = ACTIONS(3576), - [anon_sym_virtual] = ACTIONS(3576), - [anon_sym_extern] = ACTIONS(3576), - [anon_sym___attribute__] = ACTIONS(3576), - [anon_sym___attribute] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_COLON_COLON] = ACTIONS(3578), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), - [anon_sym___declspec] = ACTIONS(3576), - [anon_sym___based] = ACTIONS(3576), - [anon_sym___cdecl] = ACTIONS(3576), - [anon_sym___clrcall] = ACTIONS(3576), - [anon_sym___stdcall] = ACTIONS(3576), - [anon_sym___fastcall] = ACTIONS(3576), - [anon_sym___thiscall] = ACTIONS(3576), - [anon_sym___vectorcall] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_signed] = ACTIONS(3576), - [anon_sym_unsigned] = ACTIONS(3576), - [anon_sym_long] = ACTIONS(3576), - [anon_sym_short] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_register] = ACTIONS(3576), - [anon_sym_inline] = ACTIONS(3576), - [anon_sym___inline] = ACTIONS(3576), - [anon_sym___inline__] = ACTIONS(3576), - [anon_sym___forceinline] = ACTIONS(3576), - [anon_sym_thread_local] = ACTIONS(3576), - [anon_sym___thread] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_constexpr] = ACTIONS(3576), - [anon_sym_volatile] = ACTIONS(3576), - [anon_sym_restrict] = ACTIONS(3576), - [anon_sym___restrict__] = ACTIONS(3576), - [anon_sym__Atomic] = ACTIONS(3576), - [anon_sym__Noreturn] = ACTIONS(3576), - [anon_sym_noreturn] = ACTIONS(3576), - [anon_sym__Nonnull] = ACTIONS(3576), - [anon_sym_mutable] = ACTIONS(3576), - [anon_sym_constinit] = ACTIONS(3576), - [anon_sym_consteval] = ACTIONS(3576), - [anon_sym_alignas] = ACTIONS(3576), - [anon_sym__Alignas] = ACTIONS(3576), - [sym_primitive_type] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_struct] = ACTIONS(3576), - [anon_sym_union] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_goto] = ACTIONS(3576), - [anon_sym___try] = ACTIONS(3576), - [anon_sym___leave] = ACTIONS(3576), - [anon_sym_not] = ACTIONS(3576), - [anon_sym_compl] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_sizeof] = ACTIONS(3576), - [anon_sym___alignof__] = ACTIONS(3576), - [anon_sym___alignof] = ACTIONS(3576), - [anon_sym__alignof] = ACTIONS(3576), - [anon_sym_alignof] = ACTIONS(3576), - [anon_sym__Alignof] = ACTIONS(3576), - [anon_sym_offsetof] = ACTIONS(3576), - [anon_sym__Generic] = ACTIONS(3576), - [anon_sym_typename] = ACTIONS(3576), - [anon_sym_asm] = ACTIONS(3576), - [anon_sym___asm__] = ACTIONS(3576), - [anon_sym___asm] = ACTIONS(3576), - [sym_number_literal] = ACTIONS(3578), - [anon_sym_L_SQUOTE] = ACTIONS(3578), - [anon_sym_u_SQUOTE] = ACTIONS(3578), - [anon_sym_U_SQUOTE] = ACTIONS(3578), - [anon_sym_u8_SQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3578), - [anon_sym_L_DQUOTE] = ACTIONS(3578), - [anon_sym_u_DQUOTE] = ACTIONS(3578), - [anon_sym_U_DQUOTE] = ACTIONS(3578), - [anon_sym_u8_DQUOTE] = ACTIONS(3578), - [anon_sym_DQUOTE] = ACTIONS(3578), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [anon_sym_NULL] = ACTIONS(3576), - [anon_sym_nullptr] = ACTIONS(3576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3576), - [anon_sym_decltype] = ACTIONS(3576), - [anon_sym_explicit] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_template] = ACTIONS(3576), - [anon_sym_operator] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_static_assert] = ACTIONS(3576), - [anon_sym_concept] = ACTIONS(3576), - [anon_sym_co_return] = ACTIONS(3576), - [anon_sym_co_yield] = ACTIONS(3576), - [anon_sym_R_DQUOTE] = ACTIONS(3578), - [anon_sym_LR_DQUOTE] = ACTIONS(3578), - [anon_sym_uR_DQUOTE] = ACTIONS(3578), - [anon_sym_UR_DQUOTE] = ACTIONS(3578), - [anon_sym_u8R_DQUOTE] = ACTIONS(3578), - [anon_sym_co_await] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_requires] = ACTIONS(3576), - [anon_sym_CARET_CARET] = ACTIONS(3578), - [anon_sym_LBRACK_COLON] = ACTIONS(3578), - [sym_this] = ACTIONS(3576), + [STATE(635)] = { + [ts_builtin_sym_end] = ACTIONS(3488), + [sym_identifier] = ACTIONS(3486), + [aux_sym_preproc_include_token1] = ACTIONS(3486), + [aux_sym_preproc_def_token1] = ACTIONS(3486), + [aux_sym_preproc_if_token1] = ACTIONS(3486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3486), + [sym_preproc_directive] = ACTIONS(3486), + [anon_sym_LPAREN2] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_STAR] = ACTIONS(3488), + [anon_sym_AMP_AMP] = ACTIONS(3488), + [anon_sym_AMP] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3486), + [anon_sym_typedef] = ACTIONS(3486), + [anon_sym_virtual] = ACTIONS(3486), + [anon_sym_extern] = ACTIONS(3486), + [anon_sym___attribute__] = ACTIONS(3486), + [anon_sym___attribute] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_COLON_COLON] = ACTIONS(3488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3488), + [anon_sym___declspec] = ACTIONS(3486), + [anon_sym___based] = ACTIONS(3486), + [anon_sym___cdecl] = ACTIONS(3486), + [anon_sym___clrcall] = ACTIONS(3486), + [anon_sym___stdcall] = ACTIONS(3486), + [anon_sym___fastcall] = ACTIONS(3486), + [anon_sym___thiscall] = ACTIONS(3486), + [anon_sym___vectorcall] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_signed] = ACTIONS(3486), + [anon_sym_unsigned] = ACTIONS(3486), + [anon_sym_long] = ACTIONS(3486), + [anon_sym_short] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_register] = ACTIONS(3486), + [anon_sym_inline] = ACTIONS(3486), + [anon_sym___inline] = ACTIONS(3486), + [anon_sym___inline__] = ACTIONS(3486), + [anon_sym___forceinline] = ACTIONS(3486), + [anon_sym_thread_local] = ACTIONS(3486), + [anon_sym___thread] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_constexpr] = ACTIONS(3486), + [anon_sym_volatile] = ACTIONS(3486), + [anon_sym_restrict] = ACTIONS(3486), + [anon_sym___restrict__] = ACTIONS(3486), + [anon_sym__Atomic] = ACTIONS(3486), + [anon_sym__Noreturn] = ACTIONS(3486), + [anon_sym_noreturn] = ACTIONS(3486), + [anon_sym__Nonnull] = ACTIONS(3486), + [anon_sym_mutable] = ACTIONS(3486), + [anon_sym_constinit] = ACTIONS(3486), + [anon_sym_consteval] = ACTIONS(3486), + [anon_sym_alignas] = ACTIONS(3486), + [anon_sym__Alignas] = ACTIONS(3486), + [sym_primitive_type] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_struct] = ACTIONS(3486), + [anon_sym_union] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_case] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_goto] = ACTIONS(3486), + [anon_sym___try] = ACTIONS(3486), + [anon_sym___leave] = ACTIONS(3486), + [anon_sym_not] = ACTIONS(3486), + [anon_sym_compl] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_sizeof] = ACTIONS(3486), + [anon_sym___alignof__] = ACTIONS(3486), + [anon_sym___alignof] = ACTIONS(3486), + [anon_sym__alignof] = ACTIONS(3486), + [anon_sym_alignof] = ACTIONS(3486), + [anon_sym__Alignof] = ACTIONS(3486), + [anon_sym_offsetof] = ACTIONS(3486), + [anon_sym__Generic] = ACTIONS(3486), + [anon_sym_typename] = ACTIONS(3486), + [anon_sym_asm] = ACTIONS(3486), + [anon_sym___asm__] = ACTIONS(3486), + [anon_sym___asm] = ACTIONS(3486), + [sym_number_literal] = ACTIONS(3488), + [anon_sym_L_SQUOTE] = ACTIONS(3488), + [anon_sym_u_SQUOTE] = ACTIONS(3488), + [anon_sym_U_SQUOTE] = ACTIONS(3488), + [anon_sym_u8_SQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_L_DQUOTE] = ACTIONS(3488), + [anon_sym_u_DQUOTE] = ACTIONS(3488), + [anon_sym_U_DQUOTE] = ACTIONS(3488), + [anon_sym_u8_DQUOTE] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [anon_sym_NULL] = ACTIONS(3486), + [anon_sym_nullptr] = ACTIONS(3486), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3486), + [anon_sym_decltype] = ACTIONS(3486), + [anon_sym_explicit] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(3486), + [anon_sym_operator] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_static_assert] = ACTIONS(3486), + [anon_sym_concept] = ACTIONS(3486), + [anon_sym_co_return] = ACTIONS(3486), + [anon_sym_co_yield] = ACTIONS(3486), + [anon_sym_R_DQUOTE] = ACTIONS(3488), + [anon_sym_LR_DQUOTE] = ACTIONS(3488), + [anon_sym_uR_DQUOTE] = ACTIONS(3488), + [anon_sym_UR_DQUOTE] = ACTIONS(3488), + [anon_sym_u8R_DQUOTE] = ACTIONS(3488), + [anon_sym_co_await] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_requires] = ACTIONS(3486), + [anon_sym_CARET_CARET] = ACTIONS(3488), + [anon_sym_LBRACK_COLON] = ACTIONS(3488), + [sym_this] = ACTIONS(3486), }, - [STATE(588)] = { + [STATE(636)] = { [sym_identifier] = ACTIONS(3596), [aux_sym_preproc_include_token1] = ACTIONS(3596), [aux_sym_preproc_def_token1] = ACTIONS(3596), @@ -144207,5550 +151026,2137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3598), [sym_this] = ACTIONS(3596), }, - [STATE(589)] = { - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(3532), - [aux_sym_preproc_include_token1] = ACTIONS(3532), - [aux_sym_preproc_def_token1] = ACTIONS(3532), - [aux_sym_preproc_if_token1] = ACTIONS(3532), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3532), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3532), - [sym_preproc_directive] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym___extension__] = ACTIONS(3532), - [anon_sym_typedef] = ACTIONS(3532), - [anon_sym_virtual] = ACTIONS(3532), - [anon_sym_extern] = ACTIONS(3532), - [anon_sym___attribute__] = ACTIONS(3532), - [anon_sym___attribute] = ACTIONS(3532), - [anon_sym_using] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), - [anon_sym___declspec] = ACTIONS(3532), - [anon_sym___based] = ACTIONS(3532), - [anon_sym___cdecl] = ACTIONS(3532), - [anon_sym___clrcall] = ACTIONS(3532), - [anon_sym___stdcall] = ACTIONS(3532), - [anon_sym___fastcall] = ACTIONS(3532), - [anon_sym___thiscall] = ACTIONS(3532), - [anon_sym___vectorcall] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_signed] = ACTIONS(3532), - [anon_sym_unsigned] = ACTIONS(3532), - [anon_sym_long] = ACTIONS(3532), - [anon_sym_short] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_register] = ACTIONS(3532), - [anon_sym_inline] = ACTIONS(3532), - [anon_sym___inline] = ACTIONS(3532), - [anon_sym___inline__] = ACTIONS(3532), - [anon_sym___forceinline] = ACTIONS(3532), - [anon_sym_thread_local] = ACTIONS(3532), - [anon_sym___thread] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_constexpr] = ACTIONS(3532), - [anon_sym_volatile] = ACTIONS(3532), - [anon_sym_restrict] = ACTIONS(3532), - [anon_sym___restrict__] = ACTIONS(3532), - [anon_sym__Atomic] = ACTIONS(3532), - [anon_sym__Noreturn] = ACTIONS(3532), - [anon_sym_noreturn] = ACTIONS(3532), - [anon_sym__Nonnull] = ACTIONS(3532), - [anon_sym_mutable] = ACTIONS(3532), - [anon_sym_constinit] = ACTIONS(3532), - [anon_sym_consteval] = ACTIONS(3532), - [anon_sym_alignas] = ACTIONS(3532), - [anon_sym__Alignas] = ACTIONS(3532), - [sym_primitive_type] = ACTIONS(3532), - [anon_sym_enum] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3532), - [anon_sym_struct] = ACTIONS(3532), - [anon_sym_union] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_else] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_case] = ACTIONS(3532), - [anon_sym_default] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_goto] = ACTIONS(3532), - [anon_sym___try] = ACTIONS(3532), - [anon_sym___leave] = ACTIONS(3532), - [anon_sym_not] = ACTIONS(3532), - [anon_sym_compl] = ACTIONS(3532), - [anon_sym_DASH_DASH] = ACTIONS(3534), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_sizeof] = ACTIONS(3532), - [anon_sym___alignof__] = ACTIONS(3532), - [anon_sym___alignof] = ACTIONS(3532), - [anon_sym__alignof] = ACTIONS(3532), - [anon_sym_alignof] = ACTIONS(3532), - [anon_sym__Alignof] = ACTIONS(3532), - [anon_sym_offsetof] = ACTIONS(3532), - [anon_sym__Generic] = ACTIONS(3532), - [anon_sym_typename] = ACTIONS(3532), - [anon_sym_asm] = ACTIONS(3532), - [anon_sym___asm__] = ACTIONS(3532), - [anon_sym___asm] = ACTIONS(3532), - [sym_number_literal] = ACTIONS(3534), - [anon_sym_L_SQUOTE] = ACTIONS(3534), - [anon_sym_u_SQUOTE] = ACTIONS(3534), - [anon_sym_U_SQUOTE] = ACTIONS(3534), - [anon_sym_u8_SQUOTE] = ACTIONS(3534), - [anon_sym_SQUOTE] = ACTIONS(3534), - [anon_sym_L_DQUOTE] = ACTIONS(3534), - [anon_sym_u_DQUOTE] = ACTIONS(3534), - [anon_sym_U_DQUOTE] = ACTIONS(3534), - [anon_sym_u8_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [sym_true] = ACTIONS(3532), - [sym_false] = ACTIONS(3532), - [anon_sym_NULL] = ACTIONS(3532), - [anon_sym_nullptr] = ACTIONS(3532), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3532), - [anon_sym_decltype] = ACTIONS(3532), - [anon_sym_explicit] = ACTIONS(3532), - [anon_sym_export] = ACTIONS(3532), - [anon_sym_module] = ACTIONS(3532), - [anon_sym_import] = ACTIONS(3532), - [anon_sym_template] = ACTIONS(3532), - [anon_sym_operator] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_delete] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_namespace] = ACTIONS(3532), - [anon_sym_static_assert] = ACTIONS(3532), - [anon_sym_concept] = ACTIONS(3532), - [anon_sym_co_return] = ACTIONS(3532), - [anon_sym_co_yield] = ACTIONS(3532), - [anon_sym_R_DQUOTE] = ACTIONS(3534), - [anon_sym_LR_DQUOTE] = ACTIONS(3534), - [anon_sym_uR_DQUOTE] = ACTIONS(3534), - [anon_sym_UR_DQUOTE] = ACTIONS(3534), - [anon_sym_u8R_DQUOTE] = ACTIONS(3534), - [anon_sym_co_await] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_requires] = ACTIONS(3532), - [anon_sym_CARET_CARET] = ACTIONS(3534), - [anon_sym_LBRACK_COLON] = ACTIONS(3534), - [sym_this] = ACTIONS(3532), - }, - [STATE(590)] = { - [ts_builtin_sym_end] = ACTIONS(3574), - [sym_identifier] = ACTIONS(3572), - [aux_sym_preproc_include_token1] = ACTIONS(3572), - [aux_sym_preproc_def_token1] = ACTIONS(3572), - [aux_sym_preproc_if_token1] = ACTIONS(3572), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3572), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3572), - [sym_preproc_directive] = ACTIONS(3572), - [anon_sym_LPAREN2] = ACTIONS(3574), - [anon_sym_BANG] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_STAR] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_AMP] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym___extension__] = ACTIONS(3572), - [anon_sym_typedef] = ACTIONS(3572), - [anon_sym_virtual] = ACTIONS(3572), - [anon_sym_extern] = ACTIONS(3572), - [anon_sym___attribute__] = ACTIONS(3572), - [anon_sym___attribute] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_COLON_COLON] = ACTIONS(3574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3574), - [anon_sym___declspec] = ACTIONS(3572), - [anon_sym___based] = ACTIONS(3572), - [anon_sym___cdecl] = ACTIONS(3572), - [anon_sym___clrcall] = ACTIONS(3572), - [anon_sym___stdcall] = ACTIONS(3572), - [anon_sym___fastcall] = ACTIONS(3572), - [anon_sym___thiscall] = ACTIONS(3572), - [anon_sym___vectorcall] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_signed] = ACTIONS(3572), - [anon_sym_unsigned] = ACTIONS(3572), - [anon_sym_long] = ACTIONS(3572), - [anon_sym_short] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_register] = ACTIONS(3572), - [anon_sym_inline] = ACTIONS(3572), - [anon_sym___inline] = ACTIONS(3572), - [anon_sym___inline__] = ACTIONS(3572), - [anon_sym___forceinline] = ACTIONS(3572), - [anon_sym_thread_local] = ACTIONS(3572), - [anon_sym___thread] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_constexpr] = ACTIONS(3572), - [anon_sym_volatile] = ACTIONS(3572), - [anon_sym_restrict] = ACTIONS(3572), - [anon_sym___restrict__] = ACTIONS(3572), - [anon_sym__Atomic] = ACTIONS(3572), - [anon_sym__Noreturn] = ACTIONS(3572), - [anon_sym_noreturn] = ACTIONS(3572), - [anon_sym__Nonnull] = ACTIONS(3572), - [anon_sym_mutable] = ACTIONS(3572), - [anon_sym_constinit] = ACTIONS(3572), - [anon_sym_consteval] = ACTIONS(3572), - [anon_sym_alignas] = ACTIONS(3572), - [anon_sym__Alignas] = ACTIONS(3572), - [sym_primitive_type] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_struct] = ACTIONS(3572), - [anon_sym_union] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_case] = ACTIONS(3572), - [anon_sym_default] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_goto] = ACTIONS(3572), - [anon_sym___try] = ACTIONS(3572), - [anon_sym___leave] = ACTIONS(3572), - [anon_sym_not] = ACTIONS(3572), - [anon_sym_compl] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_sizeof] = ACTIONS(3572), - [anon_sym___alignof__] = ACTIONS(3572), - [anon_sym___alignof] = ACTIONS(3572), - [anon_sym__alignof] = ACTIONS(3572), - [anon_sym_alignof] = ACTIONS(3572), - [anon_sym__Alignof] = ACTIONS(3572), - [anon_sym_offsetof] = ACTIONS(3572), - [anon_sym__Generic] = ACTIONS(3572), - [anon_sym_typename] = ACTIONS(3572), - [anon_sym_asm] = ACTIONS(3572), - [anon_sym___asm__] = ACTIONS(3572), - [anon_sym___asm] = ACTIONS(3572), - [sym_number_literal] = ACTIONS(3574), - [anon_sym_L_SQUOTE] = ACTIONS(3574), - [anon_sym_u_SQUOTE] = ACTIONS(3574), - [anon_sym_U_SQUOTE] = ACTIONS(3574), - [anon_sym_u8_SQUOTE] = ACTIONS(3574), - [anon_sym_SQUOTE] = ACTIONS(3574), - [anon_sym_L_DQUOTE] = ACTIONS(3574), - [anon_sym_u_DQUOTE] = ACTIONS(3574), - [anon_sym_U_DQUOTE] = ACTIONS(3574), - [anon_sym_u8_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [anon_sym_NULL] = ACTIONS(3572), - [anon_sym_nullptr] = ACTIONS(3572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3572), - [anon_sym_decltype] = ACTIONS(3572), - [anon_sym_explicit] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_module] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_template] = ACTIONS(3572), - [anon_sym_operator] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_static_assert] = ACTIONS(3572), - [anon_sym_concept] = ACTIONS(3572), - [anon_sym_co_return] = ACTIONS(3572), - [anon_sym_co_yield] = ACTIONS(3572), - [anon_sym_R_DQUOTE] = ACTIONS(3574), - [anon_sym_LR_DQUOTE] = ACTIONS(3574), - [anon_sym_uR_DQUOTE] = ACTIONS(3574), - [anon_sym_UR_DQUOTE] = ACTIONS(3574), - [anon_sym_u8R_DQUOTE] = ACTIONS(3574), - [anon_sym_co_await] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_requires] = ACTIONS(3572), - [anon_sym_CARET_CARET] = ACTIONS(3574), - [anon_sym_LBRACK_COLON] = ACTIONS(3574), - [sym_this] = ACTIONS(3572), - }, - [STATE(591)] = { - [sym_identifier] = ACTIONS(3310), - [aux_sym_preproc_include_token1] = ACTIONS(3310), - [aux_sym_preproc_def_token1] = ACTIONS(3310), - [aux_sym_preproc_if_token1] = ACTIONS(3310), - [aux_sym_preproc_if_token2] = ACTIONS(3310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3310), - [sym_preproc_directive] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3310), - [anon_sym_PLUS] = ACTIONS(3310), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3310), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym___extension__] = ACTIONS(3310), - [anon_sym_typedef] = ACTIONS(3310), - [anon_sym_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), - [anon_sym___declspec] = ACTIONS(3310), - [anon_sym___based] = ACTIONS(3310), - [anon_sym___cdecl] = ACTIONS(3310), - [anon_sym___clrcall] = ACTIONS(3310), - [anon_sym___stdcall] = ACTIONS(3310), - [anon_sym___fastcall] = ACTIONS(3310), - [anon_sym___thiscall] = ACTIONS(3310), - [anon_sym___vectorcall] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_signed] = ACTIONS(3310), - [anon_sym_unsigned] = ACTIONS(3310), - [anon_sym_long] = ACTIONS(3310), - [anon_sym_short] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3310), - [anon_sym_register] = ACTIONS(3310), - [anon_sym_inline] = ACTIONS(3310), - [anon_sym___inline] = ACTIONS(3310), - [anon_sym___inline__] = ACTIONS(3310), - [anon_sym___forceinline] = ACTIONS(3310), - [anon_sym_thread_local] = ACTIONS(3310), - [anon_sym___thread] = ACTIONS(3310), - [anon_sym_const] = ACTIONS(3310), - [anon_sym_constexpr] = ACTIONS(3310), - [anon_sym_volatile] = ACTIONS(3310), - [anon_sym_restrict] = ACTIONS(3310), - [anon_sym___restrict__] = ACTIONS(3310), - [anon_sym__Atomic] = ACTIONS(3310), - [anon_sym__Noreturn] = ACTIONS(3310), - [anon_sym_noreturn] = ACTIONS(3310), - [anon_sym__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_else] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3310), - [anon_sym_case] = ACTIONS(3310), - [anon_sym_default] = ACTIONS(3310), - [anon_sym_while] = ACTIONS(3310), - [anon_sym_do] = ACTIONS(3310), - [anon_sym_for] = ACTIONS(3310), - [anon_sym_return] = ACTIONS(3310), - [anon_sym_break] = ACTIONS(3310), - [anon_sym_continue] = ACTIONS(3310), - [anon_sym_goto] = ACTIONS(3310), - [anon_sym___try] = ACTIONS(3310), - [anon_sym___leave] = ACTIONS(3310), - [anon_sym_not] = ACTIONS(3310), - [anon_sym_compl] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_sizeof] = ACTIONS(3310), - [anon_sym___alignof__] = ACTIONS(3310), - [anon_sym___alignof] = ACTIONS(3310), - [anon_sym__alignof] = ACTIONS(3310), - [anon_sym_alignof] = ACTIONS(3310), - [anon_sym__Alignof] = ACTIONS(3310), - [anon_sym_offsetof] = ACTIONS(3310), - [anon_sym__Generic] = ACTIONS(3310), - [anon_sym_typename] = ACTIONS(3310), - [anon_sym_asm] = ACTIONS(3310), - [anon_sym___asm__] = ACTIONS(3310), - [anon_sym___asm] = ACTIONS(3310), - [sym_number_literal] = ACTIONS(3315), - [anon_sym_L_SQUOTE] = ACTIONS(3315), - [anon_sym_u_SQUOTE] = ACTIONS(3315), - [anon_sym_U_SQUOTE] = ACTIONS(3315), - [anon_sym_u8_SQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_L_DQUOTE] = ACTIONS(3315), - [anon_sym_u_DQUOTE] = ACTIONS(3315), - [anon_sym_U_DQUOTE] = ACTIONS(3315), - [anon_sym_u8_DQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [anon_sym_NULL] = ACTIONS(3310), - [anon_sym_nullptr] = ACTIONS(3310), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3310), - [anon_sym_decltype] = ACTIONS(3310), - [anon_sym_explicit] = ACTIONS(3310), - [anon_sym_export] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3310), - [anon_sym_import] = ACTIONS(3310), - [anon_sym_template] = ACTIONS(3310), - [anon_sym_operator] = ACTIONS(3310), - [anon_sym_try] = ACTIONS(3310), - [anon_sym_delete] = ACTIONS(3310), - [anon_sym_throw] = ACTIONS(3310), - [anon_sym_namespace] = ACTIONS(3310), - [anon_sym_static_assert] = ACTIONS(3310), - [anon_sym_concept] = ACTIONS(3310), - [anon_sym_co_return] = ACTIONS(3310), - [anon_sym_co_yield] = ACTIONS(3310), - [anon_sym_R_DQUOTE] = ACTIONS(3315), - [anon_sym_LR_DQUOTE] = ACTIONS(3315), - [anon_sym_uR_DQUOTE] = ACTIONS(3315), - [anon_sym_UR_DQUOTE] = ACTIONS(3315), - [anon_sym_u8R_DQUOTE] = ACTIONS(3315), - [anon_sym_co_await] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3310), - [anon_sym_requires] = ACTIONS(3310), - [anon_sym_CARET_CARET] = ACTIONS(3315), - [anon_sym_LBRACK_COLON] = ACTIONS(3315), - [sym_this] = ACTIONS(3310), - }, - [STATE(592)] = { - [sym_identifier] = ACTIONS(3658), - [aux_sym_preproc_include_token1] = ACTIONS(3658), - [aux_sym_preproc_def_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token2] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), - [sym_preproc_directive] = ACTIONS(3658), - [anon_sym_LPAREN2] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym___extension__] = ACTIONS(3658), - [anon_sym_typedef] = ACTIONS(3658), - [anon_sym_virtual] = ACTIONS(3658), - [anon_sym_extern] = ACTIONS(3658), - [anon_sym___attribute__] = ACTIONS(3658), - [anon_sym___attribute] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), - [anon_sym___declspec] = ACTIONS(3658), - [anon_sym___based] = ACTIONS(3658), - [anon_sym___cdecl] = ACTIONS(3658), - [anon_sym___clrcall] = ACTIONS(3658), - [anon_sym___stdcall] = ACTIONS(3658), - [anon_sym___fastcall] = ACTIONS(3658), - [anon_sym___thiscall] = ACTIONS(3658), - [anon_sym___vectorcall] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_signed] = ACTIONS(3658), - [anon_sym_unsigned] = ACTIONS(3658), - [anon_sym_long] = ACTIONS(3658), - [anon_sym_short] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_register] = ACTIONS(3658), - [anon_sym_inline] = ACTIONS(3658), - [anon_sym___inline] = ACTIONS(3658), - [anon_sym___inline__] = ACTIONS(3658), - [anon_sym___forceinline] = ACTIONS(3658), - [anon_sym_thread_local] = ACTIONS(3658), - [anon_sym___thread] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_constexpr] = ACTIONS(3658), - [anon_sym_volatile] = ACTIONS(3658), - [anon_sym_restrict] = ACTIONS(3658), - [anon_sym___restrict__] = ACTIONS(3658), - [anon_sym__Atomic] = ACTIONS(3658), - [anon_sym__Noreturn] = ACTIONS(3658), - [anon_sym_noreturn] = ACTIONS(3658), - [anon_sym__Nonnull] = ACTIONS(3658), - [anon_sym_mutable] = ACTIONS(3658), - [anon_sym_constinit] = ACTIONS(3658), - [anon_sym_consteval] = ACTIONS(3658), - [anon_sym_alignas] = ACTIONS(3658), - [anon_sym__Alignas] = ACTIONS(3658), - [sym_primitive_type] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3658), - [anon_sym_union] = ACTIONS(3658), - [anon_sym_if] = ACTIONS(3658), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_case] = ACTIONS(3658), - [anon_sym_default] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_for] = ACTIONS(3658), - [anon_sym_return] = ACTIONS(3658), - [anon_sym_break] = ACTIONS(3658), - [anon_sym_continue] = ACTIONS(3658), - [anon_sym_goto] = ACTIONS(3658), - [anon_sym___try] = ACTIONS(3658), - [anon_sym___leave] = ACTIONS(3658), - [anon_sym_not] = ACTIONS(3658), - [anon_sym_compl] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_sizeof] = ACTIONS(3658), - [anon_sym___alignof__] = ACTIONS(3658), - [anon_sym___alignof] = ACTIONS(3658), - [anon_sym__alignof] = ACTIONS(3658), - [anon_sym_alignof] = ACTIONS(3658), - [anon_sym__Alignof] = ACTIONS(3658), - [anon_sym_offsetof] = ACTIONS(3658), - [anon_sym__Generic] = ACTIONS(3658), - [anon_sym_typename] = ACTIONS(3658), - [anon_sym_asm] = ACTIONS(3658), - [anon_sym___asm__] = ACTIONS(3658), - [anon_sym___asm] = ACTIONS(3658), - [sym_number_literal] = ACTIONS(3660), - [anon_sym_L_SQUOTE] = ACTIONS(3660), - [anon_sym_u_SQUOTE] = ACTIONS(3660), - [anon_sym_U_SQUOTE] = ACTIONS(3660), - [anon_sym_u8_SQUOTE] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_L_DQUOTE] = ACTIONS(3660), - [anon_sym_u_DQUOTE] = ACTIONS(3660), - [anon_sym_U_DQUOTE] = ACTIONS(3660), - [anon_sym_u8_DQUOTE] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [sym_true] = ACTIONS(3658), - [sym_false] = ACTIONS(3658), - [anon_sym_NULL] = ACTIONS(3658), - [anon_sym_nullptr] = ACTIONS(3658), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3658), - [anon_sym_decltype] = ACTIONS(3658), - [anon_sym_explicit] = ACTIONS(3658), - [anon_sym_export] = ACTIONS(3658), - [anon_sym_module] = ACTIONS(3658), - [anon_sym_import] = ACTIONS(3658), - [anon_sym_template] = ACTIONS(3658), - [anon_sym_operator] = ACTIONS(3658), - [anon_sym_try] = ACTIONS(3658), - [anon_sym_delete] = ACTIONS(3658), - [anon_sym_throw] = ACTIONS(3658), - [anon_sym_namespace] = ACTIONS(3658), - [anon_sym_static_assert] = ACTIONS(3658), - [anon_sym_concept] = ACTIONS(3658), - [anon_sym_co_return] = ACTIONS(3658), - [anon_sym_co_yield] = ACTIONS(3658), - [anon_sym_R_DQUOTE] = ACTIONS(3660), - [anon_sym_LR_DQUOTE] = ACTIONS(3660), - [anon_sym_uR_DQUOTE] = ACTIONS(3660), - [anon_sym_UR_DQUOTE] = ACTIONS(3660), - [anon_sym_u8R_DQUOTE] = ACTIONS(3660), - [anon_sym_co_await] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_requires] = ACTIONS(3658), - [anon_sym_CARET_CARET] = ACTIONS(3660), - [anon_sym_LBRACK_COLON] = ACTIONS(3660), - [sym_this] = ACTIONS(3658), - }, - [STATE(593)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_include_token1] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token2] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym___cdecl] = ACTIONS(3662), - [anon_sym___clrcall] = ACTIONS(3662), - [anon_sym___stdcall] = ACTIONS(3662), - [anon_sym___fastcall] = ACTIONS(3662), - [anon_sym___thiscall] = ACTIONS(3662), - [anon_sym___vectorcall] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_goto] = ACTIONS(3662), - [anon_sym___try] = ACTIONS(3662), - [anon_sym___leave] = ACTIONS(3662), - [anon_sym_not] = ACTIONS(3662), - [anon_sym_compl] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_sizeof] = ACTIONS(3662), - [anon_sym___alignof__] = ACTIONS(3662), - [anon_sym___alignof] = ACTIONS(3662), - [anon_sym__alignof] = ACTIONS(3662), - [anon_sym_alignof] = ACTIONS(3662), - [anon_sym__Alignof] = ACTIONS(3662), - [anon_sym_offsetof] = ACTIONS(3662), - [anon_sym__Generic] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [anon_sym_asm] = ACTIONS(3662), - [anon_sym___asm__] = ACTIONS(3662), - [anon_sym___asm] = ACTIONS(3662), - [sym_number_literal] = ACTIONS(3664), - [anon_sym_L_SQUOTE] = ACTIONS(3664), - [anon_sym_u_SQUOTE] = ACTIONS(3664), - [anon_sym_U_SQUOTE] = ACTIONS(3664), - [anon_sym_u8_SQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_L_DQUOTE] = ACTIONS(3664), - [anon_sym_u_DQUOTE] = ACTIONS(3664), - [anon_sym_U_DQUOTE] = ACTIONS(3664), - [anon_sym_u8_DQUOTE] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [anon_sym_NULL] = ACTIONS(3662), - [anon_sym_nullptr] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_concept] = ACTIONS(3662), - [anon_sym_co_return] = ACTIONS(3662), - [anon_sym_co_yield] = ACTIONS(3662), - [anon_sym_R_DQUOTE] = ACTIONS(3664), - [anon_sym_LR_DQUOTE] = ACTIONS(3664), - [anon_sym_uR_DQUOTE] = ACTIONS(3664), - [anon_sym_UR_DQUOTE] = ACTIONS(3664), - [anon_sym_u8R_DQUOTE] = ACTIONS(3664), - [anon_sym_co_await] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3662), - [anon_sym_CARET_CARET] = ACTIONS(3664), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - [sym_this] = ACTIONS(3662), - }, - [STATE(594)] = { - [ts_builtin_sym_end] = ACTIONS(3578), - [sym_identifier] = ACTIONS(3576), - [aux_sym_preproc_include_token1] = ACTIONS(3576), - [aux_sym_preproc_def_token1] = ACTIONS(3576), - [aux_sym_preproc_if_token1] = ACTIONS(3576), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3576), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3576), - [sym_preproc_directive] = ACTIONS(3576), - [anon_sym_LPAREN2] = ACTIONS(3578), - [anon_sym_BANG] = ACTIONS(3578), - [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(3578), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [anon_sym_AMP] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym___extension__] = ACTIONS(3576), - [anon_sym_typedef] = ACTIONS(3576), - [anon_sym_virtual] = ACTIONS(3576), - [anon_sym_extern] = ACTIONS(3576), - [anon_sym___attribute__] = ACTIONS(3576), - [anon_sym___attribute] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_COLON_COLON] = ACTIONS(3578), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), - [anon_sym___declspec] = ACTIONS(3576), - [anon_sym___based] = ACTIONS(3576), - [anon_sym___cdecl] = ACTIONS(3576), - [anon_sym___clrcall] = ACTIONS(3576), - [anon_sym___stdcall] = ACTIONS(3576), - [anon_sym___fastcall] = ACTIONS(3576), - [anon_sym___thiscall] = ACTIONS(3576), - [anon_sym___vectorcall] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_signed] = ACTIONS(3576), - [anon_sym_unsigned] = ACTIONS(3576), - [anon_sym_long] = ACTIONS(3576), - [anon_sym_short] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_register] = ACTIONS(3576), - [anon_sym_inline] = ACTIONS(3576), - [anon_sym___inline] = ACTIONS(3576), - [anon_sym___inline__] = ACTIONS(3576), - [anon_sym___forceinline] = ACTIONS(3576), - [anon_sym_thread_local] = ACTIONS(3576), - [anon_sym___thread] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_constexpr] = ACTIONS(3576), - [anon_sym_volatile] = ACTIONS(3576), - [anon_sym_restrict] = ACTIONS(3576), - [anon_sym___restrict__] = ACTIONS(3576), - [anon_sym__Atomic] = ACTIONS(3576), - [anon_sym__Noreturn] = ACTIONS(3576), - [anon_sym_noreturn] = ACTIONS(3576), - [anon_sym__Nonnull] = ACTIONS(3576), - [anon_sym_mutable] = ACTIONS(3576), - [anon_sym_constinit] = ACTIONS(3576), - [anon_sym_consteval] = ACTIONS(3576), - [anon_sym_alignas] = ACTIONS(3576), - [anon_sym__Alignas] = ACTIONS(3576), - [sym_primitive_type] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_struct] = ACTIONS(3576), - [anon_sym_union] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_goto] = ACTIONS(3576), - [anon_sym___try] = ACTIONS(3576), - [anon_sym___leave] = ACTIONS(3576), - [anon_sym_not] = ACTIONS(3576), - [anon_sym_compl] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_sizeof] = ACTIONS(3576), - [anon_sym___alignof__] = ACTIONS(3576), - [anon_sym___alignof] = ACTIONS(3576), - [anon_sym__alignof] = ACTIONS(3576), - [anon_sym_alignof] = ACTIONS(3576), - [anon_sym__Alignof] = ACTIONS(3576), - [anon_sym_offsetof] = ACTIONS(3576), - [anon_sym__Generic] = ACTIONS(3576), - [anon_sym_typename] = ACTIONS(3576), - [anon_sym_asm] = ACTIONS(3576), - [anon_sym___asm__] = ACTIONS(3576), - [anon_sym___asm] = ACTIONS(3576), - [sym_number_literal] = ACTIONS(3578), - [anon_sym_L_SQUOTE] = ACTIONS(3578), - [anon_sym_u_SQUOTE] = ACTIONS(3578), - [anon_sym_U_SQUOTE] = ACTIONS(3578), - [anon_sym_u8_SQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3578), - [anon_sym_L_DQUOTE] = ACTIONS(3578), - [anon_sym_u_DQUOTE] = ACTIONS(3578), - [anon_sym_U_DQUOTE] = ACTIONS(3578), - [anon_sym_u8_DQUOTE] = ACTIONS(3578), - [anon_sym_DQUOTE] = ACTIONS(3578), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [anon_sym_NULL] = ACTIONS(3576), - [anon_sym_nullptr] = ACTIONS(3576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3576), - [anon_sym_decltype] = ACTIONS(3576), - [anon_sym_explicit] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_module] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_template] = ACTIONS(3576), - [anon_sym_operator] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_static_assert] = ACTIONS(3576), - [anon_sym_concept] = ACTIONS(3576), - [anon_sym_co_return] = ACTIONS(3576), - [anon_sym_co_yield] = ACTIONS(3576), - [anon_sym_R_DQUOTE] = ACTIONS(3578), - [anon_sym_LR_DQUOTE] = ACTIONS(3578), - [anon_sym_uR_DQUOTE] = ACTIONS(3578), - [anon_sym_UR_DQUOTE] = ACTIONS(3578), - [anon_sym_u8R_DQUOTE] = ACTIONS(3578), - [anon_sym_co_await] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_requires] = ACTIONS(3576), - [anon_sym_CARET_CARET] = ACTIONS(3578), - [anon_sym_LBRACK_COLON] = ACTIONS(3578), - [sym_this] = ACTIONS(3576), - }, - [STATE(595)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_include_token1] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token2] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym___cdecl] = ACTIONS(3662), - [anon_sym___clrcall] = ACTIONS(3662), - [anon_sym___stdcall] = ACTIONS(3662), - [anon_sym___fastcall] = ACTIONS(3662), - [anon_sym___thiscall] = ACTIONS(3662), - [anon_sym___vectorcall] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_goto] = ACTIONS(3662), - [anon_sym___try] = ACTIONS(3662), - [anon_sym___leave] = ACTIONS(3662), - [anon_sym_not] = ACTIONS(3662), - [anon_sym_compl] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_sizeof] = ACTIONS(3662), - [anon_sym___alignof__] = ACTIONS(3662), - [anon_sym___alignof] = ACTIONS(3662), - [anon_sym__alignof] = ACTIONS(3662), - [anon_sym_alignof] = ACTIONS(3662), - [anon_sym__Alignof] = ACTIONS(3662), - [anon_sym_offsetof] = ACTIONS(3662), - [anon_sym__Generic] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [anon_sym_asm] = ACTIONS(3662), - [anon_sym___asm__] = ACTIONS(3662), - [anon_sym___asm] = ACTIONS(3662), - [sym_number_literal] = ACTIONS(3664), - [anon_sym_L_SQUOTE] = ACTIONS(3664), - [anon_sym_u_SQUOTE] = ACTIONS(3664), - [anon_sym_U_SQUOTE] = ACTIONS(3664), - [anon_sym_u8_SQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_L_DQUOTE] = ACTIONS(3664), - [anon_sym_u_DQUOTE] = ACTIONS(3664), - [anon_sym_U_DQUOTE] = ACTIONS(3664), - [anon_sym_u8_DQUOTE] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [anon_sym_NULL] = ACTIONS(3662), - [anon_sym_nullptr] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_concept] = ACTIONS(3662), - [anon_sym_co_return] = ACTIONS(3662), - [anon_sym_co_yield] = ACTIONS(3662), - [anon_sym_R_DQUOTE] = ACTIONS(3664), - [anon_sym_LR_DQUOTE] = ACTIONS(3664), - [anon_sym_uR_DQUOTE] = ACTIONS(3664), - [anon_sym_UR_DQUOTE] = ACTIONS(3664), - [anon_sym_u8R_DQUOTE] = ACTIONS(3664), - [anon_sym_co_await] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3662), - [anon_sym_CARET_CARET] = ACTIONS(3664), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - [sym_this] = ACTIONS(3662), - }, - [STATE(596)] = { - [ts_builtin_sym_end] = ACTIONS(3644), - [sym_identifier] = ACTIONS(3642), - [aux_sym_preproc_include_token1] = ACTIONS(3642), - [aux_sym_preproc_def_token1] = ACTIONS(3642), - [aux_sym_preproc_if_token1] = ACTIONS(3642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3642), - [sym_preproc_directive] = ACTIONS(3642), - [anon_sym_LPAREN2] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_AMP_AMP] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3642), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym___extension__] = ACTIONS(3642), - [anon_sym_typedef] = ACTIONS(3642), - [anon_sym_virtual] = ACTIONS(3642), - [anon_sym_extern] = ACTIONS(3642), - [anon_sym___attribute__] = ACTIONS(3642), - [anon_sym___attribute] = ACTIONS(3642), - [anon_sym_using] = ACTIONS(3642), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3644), - [anon_sym___declspec] = ACTIONS(3642), - [anon_sym___based] = ACTIONS(3642), - [anon_sym___cdecl] = ACTIONS(3642), - [anon_sym___clrcall] = ACTIONS(3642), - [anon_sym___stdcall] = ACTIONS(3642), - [anon_sym___fastcall] = ACTIONS(3642), - [anon_sym___thiscall] = ACTIONS(3642), - [anon_sym___vectorcall] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3644), - [anon_sym_signed] = ACTIONS(3642), - [anon_sym_unsigned] = ACTIONS(3642), - [anon_sym_long] = ACTIONS(3642), - [anon_sym_short] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_static] = ACTIONS(3642), - [anon_sym_register] = ACTIONS(3642), - [anon_sym_inline] = ACTIONS(3642), - [anon_sym___inline] = ACTIONS(3642), - [anon_sym___inline__] = ACTIONS(3642), - [anon_sym___forceinline] = ACTIONS(3642), - [anon_sym_thread_local] = ACTIONS(3642), - [anon_sym___thread] = ACTIONS(3642), - [anon_sym_const] = ACTIONS(3642), - [anon_sym_constexpr] = ACTIONS(3642), - [anon_sym_volatile] = ACTIONS(3642), - [anon_sym_restrict] = ACTIONS(3642), - [anon_sym___restrict__] = ACTIONS(3642), - [anon_sym__Atomic] = ACTIONS(3642), - [anon_sym__Noreturn] = ACTIONS(3642), - [anon_sym_noreturn] = ACTIONS(3642), - [anon_sym__Nonnull] = ACTIONS(3642), - [anon_sym_mutable] = ACTIONS(3642), - [anon_sym_constinit] = ACTIONS(3642), - [anon_sym_consteval] = ACTIONS(3642), - [anon_sym_alignas] = ACTIONS(3642), - [anon_sym__Alignas] = ACTIONS(3642), - [sym_primitive_type] = ACTIONS(3642), - [anon_sym_enum] = ACTIONS(3642), - [anon_sym_class] = ACTIONS(3642), - [anon_sym_struct] = ACTIONS(3642), - [anon_sym_union] = ACTIONS(3642), - [anon_sym_if] = ACTIONS(3642), - [anon_sym_else] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_case] = ACTIONS(3642), - [anon_sym_default] = ACTIONS(3642), - [anon_sym_while] = ACTIONS(3642), - [anon_sym_do] = ACTIONS(3642), - [anon_sym_for] = ACTIONS(3642), - [anon_sym_return] = ACTIONS(3642), - [anon_sym_break] = ACTIONS(3642), - [anon_sym_continue] = ACTIONS(3642), - [anon_sym_goto] = ACTIONS(3642), - [anon_sym___try] = ACTIONS(3642), - [anon_sym___leave] = ACTIONS(3642), - [anon_sym_not] = ACTIONS(3642), - [anon_sym_compl] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3644), - [anon_sym_sizeof] = ACTIONS(3642), - [anon_sym___alignof__] = ACTIONS(3642), - [anon_sym___alignof] = ACTIONS(3642), - [anon_sym__alignof] = ACTIONS(3642), - [anon_sym_alignof] = ACTIONS(3642), - [anon_sym__Alignof] = ACTIONS(3642), - [anon_sym_offsetof] = ACTIONS(3642), - [anon_sym__Generic] = ACTIONS(3642), - [anon_sym_typename] = ACTIONS(3642), - [anon_sym_asm] = ACTIONS(3642), - [anon_sym___asm__] = ACTIONS(3642), - [anon_sym___asm] = ACTIONS(3642), - [sym_number_literal] = ACTIONS(3644), - [anon_sym_L_SQUOTE] = ACTIONS(3644), - [anon_sym_u_SQUOTE] = ACTIONS(3644), - [anon_sym_U_SQUOTE] = ACTIONS(3644), - [anon_sym_u8_SQUOTE] = ACTIONS(3644), - [anon_sym_SQUOTE] = ACTIONS(3644), - [anon_sym_L_DQUOTE] = ACTIONS(3644), - [anon_sym_u_DQUOTE] = ACTIONS(3644), - [anon_sym_U_DQUOTE] = ACTIONS(3644), - [anon_sym_u8_DQUOTE] = ACTIONS(3644), - [anon_sym_DQUOTE] = ACTIONS(3644), - [sym_true] = ACTIONS(3642), - [sym_false] = ACTIONS(3642), - [anon_sym_NULL] = ACTIONS(3642), - [anon_sym_nullptr] = ACTIONS(3642), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3642), - [anon_sym_decltype] = ACTIONS(3642), - [anon_sym_explicit] = ACTIONS(3642), - [anon_sym_export] = ACTIONS(3642), - [anon_sym_module] = ACTIONS(3642), - [anon_sym_import] = ACTIONS(3642), - [anon_sym_template] = ACTIONS(3642), - [anon_sym_operator] = ACTIONS(3642), - [anon_sym_try] = ACTIONS(3642), - [anon_sym_delete] = ACTIONS(3642), - [anon_sym_throw] = ACTIONS(3642), - [anon_sym_namespace] = ACTIONS(3642), - [anon_sym_static_assert] = ACTIONS(3642), - [anon_sym_concept] = ACTIONS(3642), - [anon_sym_co_return] = ACTIONS(3642), - [anon_sym_co_yield] = ACTIONS(3642), - [anon_sym_R_DQUOTE] = ACTIONS(3644), - [anon_sym_LR_DQUOTE] = ACTIONS(3644), - [anon_sym_uR_DQUOTE] = ACTIONS(3644), - [anon_sym_UR_DQUOTE] = ACTIONS(3644), - [anon_sym_u8R_DQUOTE] = ACTIONS(3644), - [anon_sym_co_await] = ACTIONS(3642), - [anon_sym_new] = ACTIONS(3642), - [anon_sym_requires] = ACTIONS(3642), - [anon_sym_CARET_CARET] = ACTIONS(3644), - [anon_sym_LBRACK_COLON] = ACTIONS(3644), - [sym_this] = ACTIONS(3642), - }, - [STATE(597)] = { - [ts_builtin_sym_end] = ACTIONS(3616), - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_include_token1] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym___attribute] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym___cdecl] = ACTIONS(3614), - [anon_sym___clrcall] = ACTIONS(3614), - [anon_sym___stdcall] = ACTIONS(3614), - [anon_sym___fastcall] = ACTIONS(3614), - [anon_sym___thiscall] = ACTIONS(3614), - [anon_sym___vectorcall] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym__Nonnull] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym__Alignas] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_else] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_goto] = ACTIONS(3614), - [anon_sym___try] = ACTIONS(3614), - [anon_sym___leave] = ACTIONS(3614), - [anon_sym_not] = ACTIONS(3614), - [anon_sym_compl] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3614), - [anon_sym___alignof__] = ACTIONS(3614), - [anon_sym___alignof] = ACTIONS(3614), - [anon_sym__alignof] = ACTIONS(3614), - [anon_sym_alignof] = ACTIONS(3614), - [anon_sym__Alignof] = ACTIONS(3614), - [anon_sym_offsetof] = ACTIONS(3614), - [anon_sym__Generic] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_asm] = ACTIONS(3614), - [anon_sym___asm__] = ACTIONS(3614), - [anon_sym___asm] = ACTIONS(3614), - [sym_number_literal] = ACTIONS(3616), - [anon_sym_L_SQUOTE] = ACTIONS(3616), - [anon_sym_u_SQUOTE] = ACTIONS(3616), - [anon_sym_U_SQUOTE] = ACTIONS(3616), - [anon_sym_u8_SQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_L_DQUOTE] = ACTIONS(3616), - [anon_sym_u_DQUOTE] = ACTIONS(3616), - [anon_sym_U_DQUOTE] = ACTIONS(3616), - [anon_sym_u8_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [anon_sym_NULL] = ACTIONS(3614), - [anon_sym_nullptr] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_export] = ACTIONS(3614), - [anon_sym_module] = ACTIONS(3614), - [anon_sym_import] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - [anon_sym_concept] = ACTIONS(3614), - [anon_sym_co_return] = ACTIONS(3614), - [anon_sym_co_yield] = ACTIONS(3614), - [anon_sym_R_DQUOTE] = ACTIONS(3616), - [anon_sym_LR_DQUOTE] = ACTIONS(3616), - [anon_sym_uR_DQUOTE] = ACTIONS(3616), - [anon_sym_UR_DQUOTE] = ACTIONS(3616), - [anon_sym_u8R_DQUOTE] = ACTIONS(3616), - [anon_sym_co_await] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_requires] = ACTIONS(3614), - [anon_sym_CARET_CARET] = ACTIONS(3616), - [anon_sym_LBRACK_COLON] = ACTIONS(3616), - [sym_this] = ACTIONS(3614), - }, - [STATE(598)] = { - [ts_builtin_sym_end] = ACTIONS(3648), - [sym_identifier] = ACTIONS(3646), - [aux_sym_preproc_include_token1] = ACTIONS(3646), - [aux_sym_preproc_def_token1] = ACTIONS(3646), - [aux_sym_preproc_if_token1] = ACTIONS(3646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3646), - [sym_preproc_directive] = ACTIONS(3646), - [anon_sym_LPAREN2] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_STAR] = ACTIONS(3648), - [anon_sym_AMP_AMP] = ACTIONS(3648), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym___extension__] = ACTIONS(3646), - [anon_sym_typedef] = ACTIONS(3646), - [anon_sym_virtual] = ACTIONS(3646), - [anon_sym_extern] = ACTIONS(3646), - [anon_sym___attribute__] = ACTIONS(3646), - [anon_sym___attribute] = ACTIONS(3646), - [anon_sym_using] = ACTIONS(3646), - [anon_sym_COLON_COLON] = ACTIONS(3648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3648), - [anon_sym___declspec] = ACTIONS(3646), - [anon_sym___based] = ACTIONS(3646), - [anon_sym___cdecl] = ACTIONS(3646), - [anon_sym___clrcall] = ACTIONS(3646), - [anon_sym___stdcall] = ACTIONS(3646), - [anon_sym___fastcall] = ACTIONS(3646), - [anon_sym___thiscall] = ACTIONS(3646), - [anon_sym___vectorcall] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_signed] = ACTIONS(3646), - [anon_sym_unsigned] = ACTIONS(3646), - [anon_sym_long] = ACTIONS(3646), - [anon_sym_short] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_register] = ACTIONS(3646), - [anon_sym_inline] = ACTIONS(3646), - [anon_sym___inline] = ACTIONS(3646), - [anon_sym___inline__] = ACTIONS(3646), - [anon_sym___forceinline] = ACTIONS(3646), - [anon_sym_thread_local] = ACTIONS(3646), - [anon_sym___thread] = ACTIONS(3646), - [anon_sym_const] = ACTIONS(3646), - [anon_sym_constexpr] = ACTIONS(3646), - [anon_sym_volatile] = ACTIONS(3646), - [anon_sym_restrict] = ACTIONS(3646), - [anon_sym___restrict__] = ACTIONS(3646), - [anon_sym__Atomic] = ACTIONS(3646), - [anon_sym__Noreturn] = ACTIONS(3646), - [anon_sym_noreturn] = ACTIONS(3646), - [anon_sym__Nonnull] = ACTIONS(3646), - [anon_sym_mutable] = ACTIONS(3646), - [anon_sym_constinit] = ACTIONS(3646), - [anon_sym_consteval] = ACTIONS(3646), - [anon_sym_alignas] = ACTIONS(3646), - [anon_sym__Alignas] = ACTIONS(3646), - [sym_primitive_type] = ACTIONS(3646), - [anon_sym_enum] = ACTIONS(3646), - [anon_sym_class] = ACTIONS(3646), - [anon_sym_struct] = ACTIONS(3646), - [anon_sym_union] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_else] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_case] = ACTIONS(3646), - [anon_sym_default] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_goto] = ACTIONS(3646), - [anon_sym___try] = ACTIONS(3646), - [anon_sym___leave] = ACTIONS(3646), - [anon_sym_not] = ACTIONS(3646), - [anon_sym_compl] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_sizeof] = ACTIONS(3646), - [anon_sym___alignof__] = ACTIONS(3646), - [anon_sym___alignof] = ACTIONS(3646), - [anon_sym__alignof] = ACTIONS(3646), - [anon_sym_alignof] = ACTIONS(3646), - [anon_sym__Alignof] = ACTIONS(3646), - [anon_sym_offsetof] = ACTIONS(3646), - [anon_sym__Generic] = ACTIONS(3646), - [anon_sym_typename] = ACTIONS(3646), - [anon_sym_asm] = ACTIONS(3646), - [anon_sym___asm__] = ACTIONS(3646), - [anon_sym___asm] = ACTIONS(3646), - [sym_number_literal] = ACTIONS(3648), - [anon_sym_L_SQUOTE] = ACTIONS(3648), - [anon_sym_u_SQUOTE] = ACTIONS(3648), - [anon_sym_U_SQUOTE] = ACTIONS(3648), - [anon_sym_u8_SQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [anon_sym_L_DQUOTE] = ACTIONS(3648), - [anon_sym_u_DQUOTE] = ACTIONS(3648), - [anon_sym_U_DQUOTE] = ACTIONS(3648), - [anon_sym_u8_DQUOTE] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [sym_true] = ACTIONS(3646), - [sym_false] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_nullptr] = ACTIONS(3646), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3646), - [anon_sym_decltype] = ACTIONS(3646), - [anon_sym_explicit] = ACTIONS(3646), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_module] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_template] = ACTIONS(3646), - [anon_sym_operator] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_delete] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_namespace] = ACTIONS(3646), - [anon_sym_static_assert] = ACTIONS(3646), - [anon_sym_concept] = ACTIONS(3646), - [anon_sym_co_return] = ACTIONS(3646), - [anon_sym_co_yield] = ACTIONS(3646), - [anon_sym_R_DQUOTE] = ACTIONS(3648), - [anon_sym_LR_DQUOTE] = ACTIONS(3648), - [anon_sym_uR_DQUOTE] = ACTIONS(3648), - [anon_sym_UR_DQUOTE] = ACTIONS(3648), - [anon_sym_u8R_DQUOTE] = ACTIONS(3648), - [anon_sym_co_await] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_requires] = ACTIONS(3646), - [anon_sym_CARET_CARET] = ACTIONS(3648), - [anon_sym_LBRACK_COLON] = ACTIONS(3648), - [sym_this] = ACTIONS(3646), - }, - [STATE(599)] = { - [sym_identifier] = ACTIONS(3580), - [aux_sym_preproc_include_token1] = ACTIONS(3580), - [aux_sym_preproc_def_token1] = ACTIONS(3580), - [aux_sym_preproc_if_token1] = ACTIONS(3580), - [aux_sym_preproc_if_token2] = ACTIONS(3580), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3580), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3580), - [sym_preproc_directive] = ACTIONS(3580), - [anon_sym_LPAREN2] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3580), - [anon_sym_PLUS] = ACTIONS(3580), - [anon_sym_STAR] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_AMP] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym___extension__] = ACTIONS(3580), - [anon_sym_typedef] = ACTIONS(3580), - [anon_sym_virtual] = ACTIONS(3580), - [anon_sym_extern] = ACTIONS(3580), - [anon_sym___attribute__] = ACTIONS(3580), - [anon_sym___attribute] = ACTIONS(3580), - [anon_sym_using] = ACTIONS(3580), - [anon_sym_COLON_COLON] = ACTIONS(3582), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), - [anon_sym___declspec] = ACTIONS(3580), - [anon_sym___based] = ACTIONS(3580), - [anon_sym___cdecl] = ACTIONS(3580), - [anon_sym___clrcall] = ACTIONS(3580), - [anon_sym___stdcall] = ACTIONS(3580), - [anon_sym___fastcall] = ACTIONS(3580), - [anon_sym___thiscall] = ACTIONS(3580), - [anon_sym___vectorcall] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_signed] = ACTIONS(3580), - [anon_sym_unsigned] = ACTIONS(3580), - [anon_sym_long] = ACTIONS(3580), - [anon_sym_short] = ACTIONS(3580), - [anon_sym_LBRACK] = ACTIONS(3580), - [anon_sym_static] = ACTIONS(3580), - [anon_sym_register] = ACTIONS(3580), - [anon_sym_inline] = ACTIONS(3580), - [anon_sym___inline] = ACTIONS(3580), - [anon_sym___inline__] = ACTIONS(3580), - [anon_sym___forceinline] = ACTIONS(3580), - [anon_sym_thread_local] = ACTIONS(3580), - [anon_sym___thread] = ACTIONS(3580), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_constexpr] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_restrict] = ACTIONS(3580), - [anon_sym___restrict__] = ACTIONS(3580), - [anon_sym__Atomic] = ACTIONS(3580), - [anon_sym__Noreturn] = ACTIONS(3580), - [anon_sym_noreturn] = ACTIONS(3580), - [anon_sym__Nonnull] = ACTIONS(3580), - [anon_sym_mutable] = ACTIONS(3580), - [anon_sym_constinit] = ACTIONS(3580), - [anon_sym_consteval] = ACTIONS(3580), - [anon_sym_alignas] = ACTIONS(3580), - [anon_sym__Alignas] = ACTIONS(3580), - [sym_primitive_type] = ACTIONS(3580), - [anon_sym_enum] = ACTIONS(3580), - [anon_sym_class] = ACTIONS(3580), - [anon_sym_struct] = ACTIONS(3580), - [anon_sym_union] = ACTIONS(3580), - [anon_sym_if] = ACTIONS(3580), - [anon_sym_else] = ACTIONS(3580), - [anon_sym_switch] = ACTIONS(3580), - [anon_sym_case] = ACTIONS(3580), - [anon_sym_default] = ACTIONS(3580), - [anon_sym_while] = ACTIONS(3580), - [anon_sym_do] = ACTIONS(3580), - [anon_sym_for] = ACTIONS(3580), - [anon_sym_return] = ACTIONS(3580), - [anon_sym_break] = ACTIONS(3580), - [anon_sym_continue] = ACTIONS(3580), - [anon_sym_goto] = ACTIONS(3580), - [anon_sym___try] = ACTIONS(3580), - [anon_sym___leave] = ACTIONS(3580), - [anon_sym_not] = ACTIONS(3580), - [anon_sym_compl] = ACTIONS(3580), - [anon_sym_DASH_DASH] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_sizeof] = ACTIONS(3580), - [anon_sym___alignof__] = ACTIONS(3580), - [anon_sym___alignof] = ACTIONS(3580), - [anon_sym__alignof] = ACTIONS(3580), - [anon_sym_alignof] = ACTIONS(3580), - [anon_sym__Alignof] = ACTIONS(3580), - [anon_sym_offsetof] = ACTIONS(3580), - [anon_sym__Generic] = ACTIONS(3580), - [anon_sym_typename] = ACTIONS(3580), - [anon_sym_asm] = ACTIONS(3580), - [anon_sym___asm__] = ACTIONS(3580), - [anon_sym___asm] = ACTIONS(3580), - [sym_number_literal] = ACTIONS(3582), - [anon_sym_L_SQUOTE] = ACTIONS(3582), - [anon_sym_u_SQUOTE] = ACTIONS(3582), - [anon_sym_U_SQUOTE] = ACTIONS(3582), - [anon_sym_u8_SQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_L_DQUOTE] = ACTIONS(3582), - [anon_sym_u_DQUOTE] = ACTIONS(3582), - [anon_sym_U_DQUOTE] = ACTIONS(3582), - [anon_sym_u8_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [sym_true] = ACTIONS(3580), - [sym_false] = ACTIONS(3580), - [anon_sym_NULL] = ACTIONS(3580), - [anon_sym_nullptr] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3580), - [anon_sym_decltype] = ACTIONS(3580), - [anon_sym_explicit] = ACTIONS(3580), - [anon_sym_export] = ACTIONS(3580), - [anon_sym_module] = ACTIONS(3580), - [anon_sym_import] = ACTIONS(3580), - [anon_sym_template] = ACTIONS(3580), - [anon_sym_operator] = ACTIONS(3580), - [anon_sym_try] = ACTIONS(3580), - [anon_sym_delete] = ACTIONS(3580), - [anon_sym_throw] = ACTIONS(3580), - [anon_sym_namespace] = ACTIONS(3580), - [anon_sym_static_assert] = ACTIONS(3580), - [anon_sym_concept] = ACTIONS(3580), - [anon_sym_co_return] = ACTIONS(3580), - [anon_sym_co_yield] = ACTIONS(3580), - [anon_sym_R_DQUOTE] = ACTIONS(3582), - [anon_sym_LR_DQUOTE] = ACTIONS(3582), - [anon_sym_uR_DQUOTE] = ACTIONS(3582), - [anon_sym_UR_DQUOTE] = ACTIONS(3582), - [anon_sym_u8R_DQUOTE] = ACTIONS(3582), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3580), - [anon_sym_requires] = ACTIONS(3580), - [anon_sym_CARET_CARET] = ACTIONS(3582), - [anon_sym_LBRACK_COLON] = ACTIONS(3582), - [sym_this] = ACTIONS(3580), - }, - [STATE(600)] = { - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_include_token1] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token2] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym___attribute] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym___cdecl] = ACTIONS(3638), - [anon_sym___clrcall] = ACTIONS(3638), - [anon_sym___stdcall] = ACTIONS(3638), - [anon_sym___fastcall] = ACTIONS(3638), - [anon_sym___thiscall] = ACTIONS(3638), - [anon_sym___vectorcall] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym__Nonnull] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym__Alignas] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_else] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_goto] = ACTIONS(3638), - [anon_sym___try] = ACTIONS(3638), - [anon_sym___leave] = ACTIONS(3638), - [anon_sym_not] = ACTIONS(3638), - [anon_sym_compl] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3638), - [anon_sym___alignof__] = ACTIONS(3638), - [anon_sym___alignof] = ACTIONS(3638), - [anon_sym__alignof] = ACTIONS(3638), - [anon_sym_alignof] = ACTIONS(3638), - [anon_sym__Alignof] = ACTIONS(3638), - [anon_sym_offsetof] = ACTIONS(3638), - [anon_sym__Generic] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_asm] = ACTIONS(3638), - [anon_sym___asm__] = ACTIONS(3638), - [anon_sym___asm] = ACTIONS(3638), - [sym_number_literal] = ACTIONS(3640), - [anon_sym_L_SQUOTE] = ACTIONS(3640), - [anon_sym_u_SQUOTE] = ACTIONS(3640), - [anon_sym_U_SQUOTE] = ACTIONS(3640), - [anon_sym_u8_SQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_L_DQUOTE] = ACTIONS(3640), - [anon_sym_u_DQUOTE] = ACTIONS(3640), - [anon_sym_U_DQUOTE] = ACTIONS(3640), - [anon_sym_u8_DQUOTE] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [anon_sym_NULL] = ACTIONS(3638), - [anon_sym_nullptr] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_export] = ACTIONS(3638), - [anon_sym_module] = ACTIONS(3638), - [anon_sym_import] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), - [anon_sym_concept] = ACTIONS(3638), - [anon_sym_co_return] = ACTIONS(3638), - [anon_sym_co_yield] = ACTIONS(3638), - [anon_sym_R_DQUOTE] = ACTIONS(3640), - [anon_sym_LR_DQUOTE] = ACTIONS(3640), - [anon_sym_uR_DQUOTE] = ACTIONS(3640), - [anon_sym_UR_DQUOTE] = ACTIONS(3640), - [anon_sym_u8R_DQUOTE] = ACTIONS(3640), - [anon_sym_co_await] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_requires] = ACTIONS(3638), - [anon_sym_CARET_CARET] = ACTIONS(3640), - [anon_sym_LBRACK_COLON] = ACTIONS(3640), - [sym_this] = ACTIONS(3638), - }, - [STATE(601)] = { - [ts_builtin_sym_end] = ACTIONS(3582), - [sym_identifier] = ACTIONS(3580), - [aux_sym_preproc_include_token1] = ACTIONS(3580), - [aux_sym_preproc_def_token1] = ACTIONS(3580), - [aux_sym_preproc_if_token1] = ACTIONS(3580), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3580), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3580), - [sym_preproc_directive] = ACTIONS(3580), - [anon_sym_LPAREN2] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3580), - [anon_sym_PLUS] = ACTIONS(3580), - [anon_sym_STAR] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_AMP] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym___extension__] = ACTIONS(3580), - [anon_sym_typedef] = ACTIONS(3580), - [anon_sym_virtual] = ACTIONS(3580), - [anon_sym_extern] = ACTIONS(3580), - [anon_sym___attribute__] = ACTIONS(3580), - [anon_sym___attribute] = ACTIONS(3580), - [anon_sym_using] = ACTIONS(3580), - [anon_sym_COLON_COLON] = ACTIONS(3582), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), - [anon_sym___declspec] = ACTIONS(3580), - [anon_sym___based] = ACTIONS(3580), - [anon_sym___cdecl] = ACTIONS(3580), - [anon_sym___clrcall] = ACTIONS(3580), - [anon_sym___stdcall] = ACTIONS(3580), - [anon_sym___fastcall] = ACTIONS(3580), - [anon_sym___thiscall] = ACTIONS(3580), - [anon_sym___vectorcall] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_signed] = ACTIONS(3580), - [anon_sym_unsigned] = ACTIONS(3580), - [anon_sym_long] = ACTIONS(3580), - [anon_sym_short] = ACTIONS(3580), - [anon_sym_LBRACK] = ACTIONS(3580), - [anon_sym_static] = ACTIONS(3580), - [anon_sym_register] = ACTIONS(3580), - [anon_sym_inline] = ACTIONS(3580), - [anon_sym___inline] = ACTIONS(3580), - [anon_sym___inline__] = ACTIONS(3580), - [anon_sym___forceinline] = ACTIONS(3580), - [anon_sym_thread_local] = ACTIONS(3580), - [anon_sym___thread] = ACTIONS(3580), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_constexpr] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_restrict] = ACTIONS(3580), - [anon_sym___restrict__] = ACTIONS(3580), - [anon_sym__Atomic] = ACTIONS(3580), - [anon_sym__Noreturn] = ACTIONS(3580), - [anon_sym_noreturn] = ACTIONS(3580), - [anon_sym__Nonnull] = ACTIONS(3580), - [anon_sym_mutable] = ACTIONS(3580), - [anon_sym_constinit] = ACTIONS(3580), - [anon_sym_consteval] = ACTIONS(3580), - [anon_sym_alignas] = ACTIONS(3580), - [anon_sym__Alignas] = ACTIONS(3580), - [sym_primitive_type] = ACTIONS(3580), - [anon_sym_enum] = ACTIONS(3580), - [anon_sym_class] = ACTIONS(3580), - [anon_sym_struct] = ACTIONS(3580), - [anon_sym_union] = ACTIONS(3580), - [anon_sym_if] = ACTIONS(3580), - [anon_sym_else] = ACTIONS(3580), - [anon_sym_switch] = ACTIONS(3580), - [anon_sym_case] = ACTIONS(3580), - [anon_sym_default] = ACTIONS(3580), - [anon_sym_while] = ACTIONS(3580), - [anon_sym_do] = ACTIONS(3580), - [anon_sym_for] = ACTIONS(3580), - [anon_sym_return] = ACTIONS(3580), - [anon_sym_break] = ACTIONS(3580), - [anon_sym_continue] = ACTIONS(3580), - [anon_sym_goto] = ACTIONS(3580), - [anon_sym___try] = ACTIONS(3580), - [anon_sym___leave] = ACTIONS(3580), - [anon_sym_not] = ACTIONS(3580), - [anon_sym_compl] = ACTIONS(3580), - [anon_sym_DASH_DASH] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_sizeof] = ACTIONS(3580), - [anon_sym___alignof__] = ACTIONS(3580), - [anon_sym___alignof] = ACTIONS(3580), - [anon_sym__alignof] = ACTIONS(3580), - [anon_sym_alignof] = ACTIONS(3580), - [anon_sym__Alignof] = ACTIONS(3580), - [anon_sym_offsetof] = ACTIONS(3580), - [anon_sym__Generic] = ACTIONS(3580), - [anon_sym_typename] = ACTIONS(3580), - [anon_sym_asm] = ACTIONS(3580), - [anon_sym___asm__] = ACTIONS(3580), - [anon_sym___asm] = ACTIONS(3580), - [sym_number_literal] = ACTIONS(3582), - [anon_sym_L_SQUOTE] = ACTIONS(3582), - [anon_sym_u_SQUOTE] = ACTIONS(3582), - [anon_sym_U_SQUOTE] = ACTIONS(3582), - [anon_sym_u8_SQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_L_DQUOTE] = ACTIONS(3582), - [anon_sym_u_DQUOTE] = ACTIONS(3582), - [anon_sym_U_DQUOTE] = ACTIONS(3582), - [anon_sym_u8_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [sym_true] = ACTIONS(3580), - [sym_false] = ACTIONS(3580), - [anon_sym_NULL] = ACTIONS(3580), - [anon_sym_nullptr] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3580), - [anon_sym_decltype] = ACTIONS(3580), - [anon_sym_explicit] = ACTIONS(3580), - [anon_sym_export] = ACTIONS(3580), - [anon_sym_module] = ACTIONS(3580), - [anon_sym_import] = ACTIONS(3580), - [anon_sym_template] = ACTIONS(3580), - [anon_sym_operator] = ACTIONS(3580), - [anon_sym_try] = ACTIONS(3580), - [anon_sym_delete] = ACTIONS(3580), - [anon_sym_throw] = ACTIONS(3580), - [anon_sym_namespace] = ACTIONS(3580), - [anon_sym_static_assert] = ACTIONS(3580), - [anon_sym_concept] = ACTIONS(3580), - [anon_sym_co_return] = ACTIONS(3580), - [anon_sym_co_yield] = ACTIONS(3580), - [anon_sym_R_DQUOTE] = ACTIONS(3582), - [anon_sym_LR_DQUOTE] = ACTIONS(3582), - [anon_sym_uR_DQUOTE] = ACTIONS(3582), - [anon_sym_UR_DQUOTE] = ACTIONS(3582), - [anon_sym_u8R_DQUOTE] = ACTIONS(3582), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3580), - [anon_sym_requires] = ACTIONS(3580), - [anon_sym_CARET_CARET] = ACTIONS(3582), - [anon_sym_LBRACK_COLON] = ACTIONS(3582), - [sym_this] = ACTIONS(3580), - }, - [STATE(602)] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token2] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [anon_sym___asm] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_module] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [anon_sym_CARET_CARET] = ACTIONS(3628), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), - [sym_this] = ACTIONS(3626), - }, - [STATE(603)] = { - [ts_builtin_sym_end] = ACTIONS(3620), - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_module] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), - }, - [STATE(604)] = { - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_include_token1] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token2] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym___attribute] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym___cdecl] = ACTIONS(3560), - [anon_sym___clrcall] = ACTIONS(3560), - [anon_sym___stdcall] = ACTIONS(3560), - [anon_sym___fastcall] = ACTIONS(3560), - [anon_sym___thiscall] = ACTIONS(3560), - [anon_sym___vectorcall] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym__Nonnull] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym__Alignas] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_else] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym___try] = ACTIONS(3560), - [anon_sym___leave] = ACTIONS(3560), - [anon_sym_not] = ACTIONS(3560), - [anon_sym_compl] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym___alignof__] = ACTIONS(3560), - [anon_sym___alignof] = ACTIONS(3560), - [anon_sym__alignof] = ACTIONS(3560), - [anon_sym_alignof] = ACTIONS(3560), - [anon_sym__Alignof] = ACTIONS(3560), - [anon_sym_offsetof] = ACTIONS(3560), - [anon_sym__Generic] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_asm] = ACTIONS(3560), - [anon_sym___asm__] = ACTIONS(3560), - [anon_sym___asm] = ACTIONS(3560), - [sym_number_literal] = ACTIONS(3562), - [anon_sym_L_SQUOTE] = ACTIONS(3562), - [anon_sym_u_SQUOTE] = ACTIONS(3562), - [anon_sym_U_SQUOTE] = ACTIONS(3562), - [anon_sym_u8_SQUOTE] = ACTIONS(3562), - [anon_sym_SQUOTE] = ACTIONS(3562), - [anon_sym_L_DQUOTE] = ACTIONS(3562), - [anon_sym_u_DQUOTE] = ACTIONS(3562), - [anon_sym_U_DQUOTE] = ACTIONS(3562), - [anon_sym_u8_DQUOTE] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [anon_sym_NULL] = ACTIONS(3560), - [anon_sym_nullptr] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_export] = ACTIONS(3560), - [anon_sym_module] = ACTIONS(3560), - [anon_sym_import] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), - [anon_sym_concept] = ACTIONS(3560), - [anon_sym_co_return] = ACTIONS(3560), - [anon_sym_co_yield] = ACTIONS(3560), - [anon_sym_R_DQUOTE] = ACTIONS(3562), - [anon_sym_LR_DQUOTE] = ACTIONS(3562), - [anon_sym_uR_DQUOTE] = ACTIONS(3562), - [anon_sym_UR_DQUOTE] = ACTIONS(3562), - [anon_sym_u8R_DQUOTE] = ACTIONS(3562), - [anon_sym_co_await] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_requires] = ACTIONS(3560), - [anon_sym_CARET_CARET] = ACTIONS(3562), - [anon_sym_LBRACK_COLON] = ACTIONS(3562), - [sym_this] = ACTIONS(3560), - }, - [STATE(605)] = { - [ts_builtin_sym_end] = ACTIONS(3632), - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), - }, - [STATE(606)] = { - [sym_identifier] = ACTIONS(3642), - [aux_sym_preproc_include_token1] = ACTIONS(3642), - [aux_sym_preproc_def_token1] = ACTIONS(3642), - [aux_sym_preproc_if_token1] = ACTIONS(3642), - [aux_sym_preproc_if_token2] = ACTIONS(3642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3642), - [sym_preproc_directive] = ACTIONS(3642), - [anon_sym_LPAREN2] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_AMP_AMP] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3642), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym___extension__] = ACTIONS(3642), - [anon_sym_typedef] = ACTIONS(3642), - [anon_sym_virtual] = ACTIONS(3642), - [anon_sym_extern] = ACTIONS(3642), - [anon_sym___attribute__] = ACTIONS(3642), - [anon_sym___attribute] = ACTIONS(3642), - [anon_sym_using] = ACTIONS(3642), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3644), - [anon_sym___declspec] = ACTIONS(3642), - [anon_sym___based] = ACTIONS(3642), - [anon_sym___cdecl] = ACTIONS(3642), - [anon_sym___clrcall] = ACTIONS(3642), - [anon_sym___stdcall] = ACTIONS(3642), - [anon_sym___fastcall] = ACTIONS(3642), - [anon_sym___thiscall] = ACTIONS(3642), - [anon_sym___vectorcall] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3644), - [anon_sym_signed] = ACTIONS(3642), - [anon_sym_unsigned] = ACTIONS(3642), - [anon_sym_long] = ACTIONS(3642), - [anon_sym_short] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_static] = ACTIONS(3642), - [anon_sym_register] = ACTIONS(3642), - [anon_sym_inline] = ACTIONS(3642), - [anon_sym___inline] = ACTIONS(3642), - [anon_sym___inline__] = ACTIONS(3642), - [anon_sym___forceinline] = ACTIONS(3642), - [anon_sym_thread_local] = ACTIONS(3642), - [anon_sym___thread] = ACTIONS(3642), - [anon_sym_const] = ACTIONS(3642), - [anon_sym_constexpr] = ACTIONS(3642), - [anon_sym_volatile] = ACTIONS(3642), - [anon_sym_restrict] = ACTIONS(3642), - [anon_sym___restrict__] = ACTIONS(3642), - [anon_sym__Atomic] = ACTIONS(3642), - [anon_sym__Noreturn] = ACTIONS(3642), - [anon_sym_noreturn] = ACTIONS(3642), - [anon_sym__Nonnull] = ACTIONS(3642), - [anon_sym_mutable] = ACTIONS(3642), - [anon_sym_constinit] = ACTIONS(3642), - [anon_sym_consteval] = ACTIONS(3642), - [anon_sym_alignas] = ACTIONS(3642), - [anon_sym__Alignas] = ACTIONS(3642), - [sym_primitive_type] = ACTIONS(3642), - [anon_sym_enum] = ACTIONS(3642), - [anon_sym_class] = ACTIONS(3642), - [anon_sym_struct] = ACTIONS(3642), - [anon_sym_union] = ACTIONS(3642), - [anon_sym_if] = ACTIONS(3642), - [anon_sym_else] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_case] = ACTIONS(3642), - [anon_sym_default] = ACTIONS(3642), - [anon_sym_while] = ACTIONS(3642), - [anon_sym_do] = ACTIONS(3642), - [anon_sym_for] = ACTIONS(3642), - [anon_sym_return] = ACTIONS(3642), - [anon_sym_break] = ACTIONS(3642), - [anon_sym_continue] = ACTIONS(3642), - [anon_sym_goto] = ACTIONS(3642), - [anon_sym___try] = ACTIONS(3642), - [anon_sym___leave] = ACTIONS(3642), - [anon_sym_not] = ACTIONS(3642), - [anon_sym_compl] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3644), - [anon_sym_sizeof] = ACTIONS(3642), - [anon_sym___alignof__] = ACTIONS(3642), - [anon_sym___alignof] = ACTIONS(3642), - [anon_sym__alignof] = ACTIONS(3642), - [anon_sym_alignof] = ACTIONS(3642), - [anon_sym__Alignof] = ACTIONS(3642), - [anon_sym_offsetof] = ACTIONS(3642), - [anon_sym__Generic] = ACTIONS(3642), - [anon_sym_typename] = ACTIONS(3642), - [anon_sym_asm] = ACTIONS(3642), - [anon_sym___asm__] = ACTIONS(3642), - [anon_sym___asm] = ACTIONS(3642), - [sym_number_literal] = ACTIONS(3644), - [anon_sym_L_SQUOTE] = ACTIONS(3644), - [anon_sym_u_SQUOTE] = ACTIONS(3644), - [anon_sym_U_SQUOTE] = ACTIONS(3644), - [anon_sym_u8_SQUOTE] = ACTIONS(3644), - [anon_sym_SQUOTE] = ACTIONS(3644), - [anon_sym_L_DQUOTE] = ACTIONS(3644), - [anon_sym_u_DQUOTE] = ACTIONS(3644), - [anon_sym_U_DQUOTE] = ACTIONS(3644), - [anon_sym_u8_DQUOTE] = ACTIONS(3644), - [anon_sym_DQUOTE] = ACTIONS(3644), - [sym_true] = ACTIONS(3642), - [sym_false] = ACTIONS(3642), - [anon_sym_NULL] = ACTIONS(3642), - [anon_sym_nullptr] = ACTIONS(3642), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3642), - [anon_sym_decltype] = ACTIONS(3642), - [anon_sym_explicit] = ACTIONS(3642), - [anon_sym_export] = ACTIONS(3642), - [anon_sym_module] = ACTIONS(3642), - [anon_sym_import] = ACTIONS(3642), - [anon_sym_template] = ACTIONS(3642), - [anon_sym_operator] = ACTIONS(3642), - [anon_sym_try] = ACTIONS(3642), - [anon_sym_delete] = ACTIONS(3642), - [anon_sym_throw] = ACTIONS(3642), - [anon_sym_namespace] = ACTIONS(3642), - [anon_sym_static_assert] = ACTIONS(3642), - [anon_sym_concept] = ACTIONS(3642), - [anon_sym_co_return] = ACTIONS(3642), - [anon_sym_co_yield] = ACTIONS(3642), - [anon_sym_R_DQUOTE] = ACTIONS(3644), - [anon_sym_LR_DQUOTE] = ACTIONS(3644), - [anon_sym_uR_DQUOTE] = ACTIONS(3644), - [anon_sym_UR_DQUOTE] = ACTIONS(3644), - [anon_sym_u8R_DQUOTE] = ACTIONS(3644), - [anon_sym_co_await] = ACTIONS(3642), - [anon_sym_new] = ACTIONS(3642), - [anon_sym_requires] = ACTIONS(3642), - [anon_sym_CARET_CARET] = ACTIONS(3644), - [anon_sym_LBRACK_COLON] = ACTIONS(3644), - [sym_this] = ACTIONS(3642), - }, - [STATE(607)] = { - [ts_builtin_sym_end] = ACTIONS(3315), - [sym_identifier] = ACTIONS(3310), - [aux_sym_preproc_include_token1] = ACTIONS(3310), - [aux_sym_preproc_def_token1] = ACTIONS(3310), - [aux_sym_preproc_if_token1] = ACTIONS(3310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3310), - [sym_preproc_directive] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3310), - [anon_sym_PLUS] = ACTIONS(3310), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3310), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym___extension__] = ACTIONS(3310), - [anon_sym_typedef] = ACTIONS(3310), - [anon_sym_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), - [anon_sym___declspec] = ACTIONS(3310), - [anon_sym___based] = ACTIONS(3310), - [anon_sym___cdecl] = ACTIONS(3310), - [anon_sym___clrcall] = ACTIONS(3310), - [anon_sym___stdcall] = ACTIONS(3310), - [anon_sym___fastcall] = ACTIONS(3310), - [anon_sym___thiscall] = ACTIONS(3310), - [anon_sym___vectorcall] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_signed] = ACTIONS(3310), - [anon_sym_unsigned] = ACTIONS(3310), - [anon_sym_long] = ACTIONS(3310), - [anon_sym_short] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3310), - [anon_sym_register] = ACTIONS(3310), - [anon_sym_inline] = ACTIONS(3310), - [anon_sym___inline] = ACTIONS(3310), - [anon_sym___inline__] = ACTIONS(3310), - [anon_sym___forceinline] = ACTIONS(3310), - [anon_sym_thread_local] = ACTIONS(3310), - [anon_sym___thread] = ACTIONS(3310), - [anon_sym_const] = ACTIONS(3310), - [anon_sym_constexpr] = ACTIONS(3310), - [anon_sym_volatile] = ACTIONS(3310), - [anon_sym_restrict] = ACTIONS(3310), - [anon_sym___restrict__] = ACTIONS(3310), - [anon_sym__Atomic] = ACTIONS(3310), - [anon_sym__Noreturn] = ACTIONS(3310), - [anon_sym_noreturn] = ACTIONS(3310), - [anon_sym__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_else] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3310), - [anon_sym_case] = ACTIONS(3310), - [anon_sym_default] = ACTIONS(3310), - [anon_sym_while] = ACTIONS(3310), - [anon_sym_do] = ACTIONS(3310), - [anon_sym_for] = ACTIONS(3310), - [anon_sym_return] = ACTIONS(3310), - [anon_sym_break] = ACTIONS(3310), - [anon_sym_continue] = ACTIONS(3310), - [anon_sym_goto] = ACTIONS(3310), - [anon_sym___try] = ACTIONS(3310), - [anon_sym___leave] = ACTIONS(3310), - [anon_sym_not] = ACTIONS(3310), - [anon_sym_compl] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_sizeof] = ACTIONS(3310), - [anon_sym___alignof__] = ACTIONS(3310), - [anon_sym___alignof] = ACTIONS(3310), - [anon_sym__alignof] = ACTIONS(3310), - [anon_sym_alignof] = ACTIONS(3310), - [anon_sym__Alignof] = ACTIONS(3310), - [anon_sym_offsetof] = ACTIONS(3310), - [anon_sym__Generic] = ACTIONS(3310), - [anon_sym_typename] = ACTIONS(3310), - [anon_sym_asm] = ACTIONS(3310), - [anon_sym___asm__] = ACTIONS(3310), - [anon_sym___asm] = ACTIONS(3310), - [sym_number_literal] = ACTIONS(3315), - [anon_sym_L_SQUOTE] = ACTIONS(3315), - [anon_sym_u_SQUOTE] = ACTIONS(3315), - [anon_sym_U_SQUOTE] = ACTIONS(3315), - [anon_sym_u8_SQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_L_DQUOTE] = ACTIONS(3315), - [anon_sym_u_DQUOTE] = ACTIONS(3315), - [anon_sym_U_DQUOTE] = ACTIONS(3315), - [anon_sym_u8_DQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [anon_sym_NULL] = ACTIONS(3310), - [anon_sym_nullptr] = ACTIONS(3310), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3310), - [anon_sym_decltype] = ACTIONS(3310), - [anon_sym_explicit] = ACTIONS(3310), - [anon_sym_export] = ACTIONS(3310), - [anon_sym_module] = ACTIONS(3310), - [anon_sym_import] = ACTIONS(3310), - [anon_sym_template] = ACTIONS(3310), - [anon_sym_operator] = ACTIONS(3310), - [anon_sym_try] = ACTIONS(3310), - [anon_sym_delete] = ACTIONS(3310), - [anon_sym_throw] = ACTIONS(3310), - [anon_sym_namespace] = ACTIONS(3310), - [anon_sym_static_assert] = ACTIONS(3310), - [anon_sym_concept] = ACTIONS(3310), - [anon_sym_co_return] = ACTIONS(3310), - [anon_sym_co_yield] = ACTIONS(3310), - [anon_sym_R_DQUOTE] = ACTIONS(3315), - [anon_sym_LR_DQUOTE] = ACTIONS(3315), - [anon_sym_uR_DQUOTE] = ACTIONS(3315), - [anon_sym_UR_DQUOTE] = ACTIONS(3315), - [anon_sym_u8R_DQUOTE] = ACTIONS(3315), - [anon_sym_co_await] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3310), - [anon_sym_requires] = ACTIONS(3310), - [anon_sym_CARET_CARET] = ACTIONS(3315), - [anon_sym_LBRACK_COLON] = ACTIONS(3315), - [sym_this] = ACTIONS(3310), - }, - [STATE(608)] = { - [sym_identifier] = ACTIONS(3155), - [aux_sym_preproc_include_token1] = ACTIONS(3155), - [aux_sym_preproc_def_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), - [sym_preproc_directive] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym___attribute] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym___cdecl] = ACTIONS(3155), - [anon_sym___clrcall] = ACTIONS(3155), - [anon_sym___stdcall] = ACTIONS(3155), - [anon_sym___fastcall] = ACTIONS(3155), - [anon_sym___thiscall] = ACTIONS(3155), - [anon_sym___vectorcall] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym__Nonnull] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym__Alignas] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_case] = ACTIONS(3155), - [anon_sym_default] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym___try] = ACTIONS(3155), - [anon_sym___leave] = ACTIONS(3155), - [anon_sym_not] = ACTIONS(3155), - [anon_sym_compl] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3155), - [anon_sym__Generic] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym___asm__] = ACTIONS(3155), - [anon_sym___asm] = ACTIONS(3155), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_L_SQUOTE] = ACTIONS(3153), - [anon_sym_u_SQUOTE] = ACTIONS(3153), - [anon_sym_U_SQUOTE] = ACTIONS(3153), - [anon_sym_u8_SQUOTE] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3153), - [anon_sym_L_DQUOTE] = ACTIONS(3153), - [anon_sym_u_DQUOTE] = ACTIONS(3153), - [anon_sym_U_DQUOTE] = ACTIONS(3153), - [anon_sym_u8_DQUOTE] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [anon_sym_NULL] = ACTIONS(3155), - [anon_sym_nullptr] = ACTIONS(3155), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_export] = ACTIONS(3155), - [anon_sym_import] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_delete] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_namespace] = ACTIONS(3155), - [anon_sym_static_assert] = ACTIONS(3155), - [anon_sym_concept] = ACTIONS(3155), - [anon_sym_co_return] = ACTIONS(3155), - [anon_sym_co_yield] = ACTIONS(3155), - [anon_sym_catch] = ACTIONS(3155), - [anon_sym_R_DQUOTE] = ACTIONS(3153), - [anon_sym_LR_DQUOTE] = ACTIONS(3153), - [anon_sym_uR_DQUOTE] = ACTIONS(3153), - [anon_sym_UR_DQUOTE] = ACTIONS(3153), - [anon_sym_u8R_DQUOTE] = ACTIONS(3153), - [anon_sym_co_await] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_requires] = ACTIONS(3155), - [anon_sym_CARET_CARET] = ACTIONS(3153), - [anon_sym_LBRACK_COLON] = ACTIONS(3153), - [sym_this] = ACTIONS(3155), - }, - [STATE(609)] = { - [ts_builtin_sym_end] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_include_token1] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym___attribute] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym___cdecl] = ACTIONS(3556), - [anon_sym___clrcall] = ACTIONS(3556), - [anon_sym___stdcall] = ACTIONS(3556), - [anon_sym___fastcall] = ACTIONS(3556), - [anon_sym___thiscall] = ACTIONS(3556), - [anon_sym___vectorcall] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [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(3556), - [anon_sym__Alignas] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_else] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_case] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym___try] = ACTIONS(3556), - [anon_sym___leave] = ACTIONS(3556), - [anon_sym_not] = ACTIONS(3556), - [anon_sym_compl] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym___alignof__] = ACTIONS(3556), - [anon_sym___alignof] = ACTIONS(3556), - [anon_sym__alignof] = ACTIONS(3556), - [anon_sym_alignof] = ACTIONS(3556), - [anon_sym__Alignof] = ACTIONS(3556), - [anon_sym_offsetof] = ACTIONS(3556), - [anon_sym__Generic] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym___asm__] = ACTIONS(3556), - [anon_sym___asm] = ACTIONS(3556), - [sym_number_literal] = ACTIONS(3558), - [anon_sym_L_SQUOTE] = ACTIONS(3558), - [anon_sym_u_SQUOTE] = ACTIONS(3558), - [anon_sym_U_SQUOTE] = ACTIONS(3558), - [anon_sym_u8_SQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_L_DQUOTE] = ACTIONS(3558), - [anon_sym_u_DQUOTE] = ACTIONS(3558), - [anon_sym_U_DQUOTE] = ACTIONS(3558), - [anon_sym_u8_DQUOTE] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [anon_sym_NULL] = ACTIONS(3556), - [anon_sym_nullptr] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_export] = ACTIONS(3556), - [anon_sym_module] = ACTIONS(3556), - [anon_sym_import] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_delete] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_namespace] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), - [anon_sym_concept] = ACTIONS(3556), - [anon_sym_co_return] = ACTIONS(3556), - [anon_sym_co_yield] = ACTIONS(3556), - [anon_sym_R_DQUOTE] = ACTIONS(3558), - [anon_sym_LR_DQUOTE] = ACTIONS(3558), - [anon_sym_uR_DQUOTE] = ACTIONS(3558), - [anon_sym_UR_DQUOTE] = ACTIONS(3558), - [anon_sym_u8R_DQUOTE] = ACTIONS(3558), - [anon_sym_co_await] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_requires] = ACTIONS(3556), - [anon_sym_CARET_CARET] = ACTIONS(3558), - [anon_sym_LBRACK_COLON] = ACTIONS(3558), - [sym_this] = ACTIONS(3556), - }, - [STATE(610)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_module] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), - }, - [STATE(611)] = { - [sym_else_clause] = STATE(745), - [sym_identifier] = ACTIONS(3368), - [aux_sym_preproc_include_token1] = ACTIONS(3368), - [aux_sym_preproc_def_token1] = ACTIONS(3368), - [aux_sym_preproc_if_token1] = ACTIONS(3368), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3368), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3368), - [sym_preproc_directive] = ACTIONS(3368), - [anon_sym_LPAREN2] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3370), - [anon_sym_AMP_AMP] = ACTIONS(3370), - [anon_sym_AMP] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym___extension__] = ACTIONS(3368), - [anon_sym_typedef] = ACTIONS(3368), - [anon_sym_virtual] = ACTIONS(3368), - [anon_sym_extern] = ACTIONS(3368), - [anon_sym___attribute__] = ACTIONS(3368), - [anon_sym___attribute] = ACTIONS(3368), - [anon_sym_using] = ACTIONS(3368), - [anon_sym_COLON_COLON] = ACTIONS(3370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3370), - [anon_sym___declspec] = ACTIONS(3368), - [anon_sym___based] = ACTIONS(3368), - [anon_sym___cdecl] = ACTIONS(3368), - [anon_sym___clrcall] = ACTIONS(3368), - [anon_sym___stdcall] = ACTIONS(3368), - [anon_sym___fastcall] = ACTIONS(3368), - [anon_sym___thiscall] = ACTIONS(3368), - [anon_sym___vectorcall] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_signed] = ACTIONS(3368), - [anon_sym_unsigned] = ACTIONS(3368), - [anon_sym_long] = ACTIONS(3368), - [anon_sym_short] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_register] = ACTIONS(3368), - [anon_sym_inline] = ACTIONS(3368), - [anon_sym___inline] = ACTIONS(3368), - [anon_sym___inline__] = ACTIONS(3368), - [anon_sym___forceinline] = ACTIONS(3368), - [anon_sym_thread_local] = ACTIONS(3368), - [anon_sym___thread] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_constexpr] = ACTIONS(3368), - [anon_sym_volatile] = ACTIONS(3368), - [anon_sym_restrict] = ACTIONS(3368), - [anon_sym___restrict__] = ACTIONS(3368), - [anon_sym__Atomic] = ACTIONS(3368), - [anon_sym__Noreturn] = ACTIONS(3368), - [anon_sym_noreturn] = ACTIONS(3368), - [anon_sym__Nonnull] = ACTIONS(3368), - [anon_sym_mutable] = ACTIONS(3368), - [anon_sym_constinit] = ACTIONS(3368), - [anon_sym_consteval] = ACTIONS(3368), - [anon_sym_alignas] = ACTIONS(3368), - [anon_sym__Alignas] = ACTIONS(3368), - [sym_primitive_type] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(3368), - [anon_sym_union] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_else] = ACTIONS(4670), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_case] = ACTIONS(3368), - [anon_sym_default] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_goto] = ACTIONS(3368), - [anon_sym___try] = ACTIONS(3368), - [anon_sym___leave] = ACTIONS(3368), - [anon_sym_not] = ACTIONS(3368), - [anon_sym_compl] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_sizeof] = ACTIONS(3368), - [anon_sym___alignof__] = ACTIONS(3368), - [anon_sym___alignof] = ACTIONS(3368), - [anon_sym__alignof] = ACTIONS(3368), - [anon_sym_alignof] = ACTIONS(3368), - [anon_sym__Alignof] = ACTIONS(3368), - [anon_sym_offsetof] = ACTIONS(3368), - [anon_sym__Generic] = ACTIONS(3368), - [anon_sym_typename] = ACTIONS(3368), - [anon_sym_asm] = ACTIONS(3368), - [anon_sym___asm__] = ACTIONS(3368), - [anon_sym___asm] = ACTIONS(3368), - [sym_number_literal] = ACTIONS(3370), - [anon_sym_L_SQUOTE] = ACTIONS(3370), - [anon_sym_u_SQUOTE] = ACTIONS(3370), - [anon_sym_U_SQUOTE] = ACTIONS(3370), - [anon_sym_u8_SQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_L_DQUOTE] = ACTIONS(3370), - [anon_sym_u_DQUOTE] = ACTIONS(3370), - [anon_sym_U_DQUOTE] = ACTIONS(3370), - [anon_sym_u8_DQUOTE] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3368), - [anon_sym_decltype] = ACTIONS(3368), - [anon_sym_explicit] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_template] = ACTIONS(3368), - [anon_sym_operator] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_static_assert] = ACTIONS(3368), - [anon_sym_concept] = ACTIONS(3368), - [anon_sym_co_return] = ACTIONS(3368), - [anon_sym_co_yield] = ACTIONS(3368), - [anon_sym_R_DQUOTE] = ACTIONS(3370), - [anon_sym_LR_DQUOTE] = ACTIONS(3370), - [anon_sym_uR_DQUOTE] = ACTIONS(3370), - [anon_sym_UR_DQUOTE] = ACTIONS(3370), - [anon_sym_u8R_DQUOTE] = ACTIONS(3370), - [anon_sym_co_await] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_requires] = ACTIONS(3368), - [anon_sym_CARET_CARET] = ACTIONS(3370), - [anon_sym_LBRACK_COLON] = ACTIONS(3370), - [sym_this] = ACTIONS(3368), - }, - [STATE(612)] = { - [sym_identifier] = ACTIONS(3646), - [aux_sym_preproc_include_token1] = ACTIONS(3646), - [aux_sym_preproc_def_token1] = ACTIONS(3646), - [aux_sym_preproc_if_token1] = ACTIONS(3646), - [aux_sym_preproc_if_token2] = ACTIONS(3646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3646), - [sym_preproc_directive] = ACTIONS(3646), - [anon_sym_LPAREN2] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_STAR] = ACTIONS(3648), - [anon_sym_AMP_AMP] = ACTIONS(3648), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym___extension__] = ACTIONS(3646), - [anon_sym_typedef] = ACTIONS(3646), - [anon_sym_virtual] = ACTIONS(3646), - [anon_sym_extern] = ACTIONS(3646), - [anon_sym___attribute__] = ACTIONS(3646), - [anon_sym___attribute] = ACTIONS(3646), - [anon_sym_using] = ACTIONS(3646), - [anon_sym_COLON_COLON] = ACTIONS(3648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3648), - [anon_sym___declspec] = ACTIONS(3646), - [anon_sym___based] = ACTIONS(3646), - [anon_sym___cdecl] = ACTIONS(3646), - [anon_sym___clrcall] = ACTIONS(3646), - [anon_sym___stdcall] = ACTIONS(3646), - [anon_sym___fastcall] = ACTIONS(3646), - [anon_sym___thiscall] = ACTIONS(3646), - [anon_sym___vectorcall] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_signed] = ACTIONS(3646), - [anon_sym_unsigned] = ACTIONS(3646), - [anon_sym_long] = ACTIONS(3646), - [anon_sym_short] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_register] = ACTIONS(3646), - [anon_sym_inline] = ACTIONS(3646), - [anon_sym___inline] = ACTIONS(3646), - [anon_sym___inline__] = ACTIONS(3646), - [anon_sym___forceinline] = ACTIONS(3646), - [anon_sym_thread_local] = ACTIONS(3646), - [anon_sym___thread] = ACTIONS(3646), - [anon_sym_const] = ACTIONS(3646), - [anon_sym_constexpr] = ACTIONS(3646), - [anon_sym_volatile] = ACTIONS(3646), - [anon_sym_restrict] = ACTIONS(3646), - [anon_sym___restrict__] = ACTIONS(3646), - [anon_sym__Atomic] = ACTIONS(3646), - [anon_sym__Noreturn] = ACTIONS(3646), - [anon_sym_noreturn] = ACTIONS(3646), - [anon_sym__Nonnull] = ACTIONS(3646), - [anon_sym_mutable] = ACTIONS(3646), - [anon_sym_constinit] = ACTIONS(3646), - [anon_sym_consteval] = ACTIONS(3646), - [anon_sym_alignas] = ACTIONS(3646), - [anon_sym__Alignas] = ACTIONS(3646), - [sym_primitive_type] = ACTIONS(3646), - [anon_sym_enum] = ACTIONS(3646), - [anon_sym_class] = ACTIONS(3646), - [anon_sym_struct] = ACTIONS(3646), - [anon_sym_union] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_else] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_case] = ACTIONS(3646), - [anon_sym_default] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_goto] = ACTIONS(3646), - [anon_sym___try] = ACTIONS(3646), - [anon_sym___leave] = ACTIONS(3646), - [anon_sym_not] = ACTIONS(3646), - [anon_sym_compl] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_sizeof] = ACTIONS(3646), - [anon_sym___alignof__] = ACTIONS(3646), - [anon_sym___alignof] = ACTIONS(3646), - [anon_sym__alignof] = ACTIONS(3646), - [anon_sym_alignof] = ACTIONS(3646), - [anon_sym__Alignof] = ACTIONS(3646), - [anon_sym_offsetof] = ACTIONS(3646), - [anon_sym__Generic] = ACTIONS(3646), - [anon_sym_typename] = ACTIONS(3646), - [anon_sym_asm] = ACTIONS(3646), - [anon_sym___asm__] = ACTIONS(3646), - [anon_sym___asm] = ACTIONS(3646), - [sym_number_literal] = ACTIONS(3648), - [anon_sym_L_SQUOTE] = ACTIONS(3648), - [anon_sym_u_SQUOTE] = ACTIONS(3648), - [anon_sym_U_SQUOTE] = ACTIONS(3648), - [anon_sym_u8_SQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [anon_sym_L_DQUOTE] = ACTIONS(3648), - [anon_sym_u_DQUOTE] = ACTIONS(3648), - [anon_sym_U_DQUOTE] = ACTIONS(3648), - [anon_sym_u8_DQUOTE] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [sym_true] = ACTIONS(3646), - [sym_false] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_nullptr] = ACTIONS(3646), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3646), - [anon_sym_decltype] = ACTIONS(3646), - [anon_sym_explicit] = ACTIONS(3646), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_module] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_template] = ACTIONS(3646), - [anon_sym_operator] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_delete] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_namespace] = ACTIONS(3646), - [anon_sym_static_assert] = ACTIONS(3646), - [anon_sym_concept] = ACTIONS(3646), - [anon_sym_co_return] = ACTIONS(3646), - [anon_sym_co_yield] = ACTIONS(3646), - [anon_sym_R_DQUOTE] = ACTIONS(3648), - [anon_sym_LR_DQUOTE] = ACTIONS(3648), - [anon_sym_uR_DQUOTE] = ACTIONS(3648), - [anon_sym_UR_DQUOTE] = ACTIONS(3648), - [anon_sym_u8R_DQUOTE] = ACTIONS(3648), - [anon_sym_co_await] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_requires] = ACTIONS(3646), - [anon_sym_CARET_CARET] = ACTIONS(3648), - [anon_sym_LBRACK_COLON] = ACTIONS(3648), - [sym_this] = ACTIONS(3646), - }, - [STATE(613)] = { - [ts_builtin_sym_end] = ACTIONS(3530), - [sym_identifier] = ACTIONS(3528), - [aux_sym_preproc_include_token1] = ACTIONS(3528), - [aux_sym_preproc_def_token1] = ACTIONS(3528), - [aux_sym_preproc_if_token1] = ACTIONS(3528), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3528), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3528), - [sym_preproc_directive] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_AMP_AMP] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym___extension__] = ACTIONS(3528), - [anon_sym_typedef] = ACTIONS(3528), - [anon_sym_virtual] = ACTIONS(3528), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym___attribute__] = ACTIONS(3528), - [anon_sym___attribute] = ACTIONS(3528), - [anon_sym_using] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3530), - [anon_sym___declspec] = ACTIONS(3528), - [anon_sym___based] = ACTIONS(3528), - [anon_sym___cdecl] = ACTIONS(3528), - [anon_sym___clrcall] = ACTIONS(3528), - [anon_sym___stdcall] = ACTIONS(3528), - [anon_sym___fastcall] = ACTIONS(3528), - [anon_sym___thiscall] = ACTIONS(3528), - [anon_sym___vectorcall] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_signed] = ACTIONS(3528), - [anon_sym_unsigned] = ACTIONS(3528), - [anon_sym_long] = ACTIONS(3528), - [anon_sym_short] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_register] = ACTIONS(3528), - [anon_sym_inline] = ACTIONS(3528), - [anon_sym___inline] = ACTIONS(3528), - [anon_sym___inline__] = ACTIONS(3528), - [anon_sym___forceinline] = ACTIONS(3528), - [anon_sym_thread_local] = ACTIONS(3528), - [anon_sym___thread] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_constexpr] = ACTIONS(3528), - [anon_sym_volatile] = ACTIONS(3528), - [anon_sym_restrict] = ACTIONS(3528), - [anon_sym___restrict__] = ACTIONS(3528), - [anon_sym__Atomic] = ACTIONS(3528), - [anon_sym__Noreturn] = ACTIONS(3528), - [anon_sym_noreturn] = ACTIONS(3528), - [anon_sym__Nonnull] = ACTIONS(3528), - [anon_sym_mutable] = ACTIONS(3528), - [anon_sym_constinit] = ACTIONS(3528), - [anon_sym_consteval] = ACTIONS(3528), - [anon_sym_alignas] = ACTIONS(3528), - [anon_sym__Alignas] = ACTIONS(3528), - [sym_primitive_type] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), - [anon_sym_class] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(3528), - [anon_sym_union] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_else] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_case] = ACTIONS(3528), - [anon_sym_default] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_goto] = ACTIONS(3528), - [anon_sym___try] = ACTIONS(3528), - [anon_sym___leave] = ACTIONS(3528), - [anon_sym_not] = ACTIONS(3528), - [anon_sym_compl] = ACTIONS(3528), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_sizeof] = ACTIONS(3528), - [anon_sym___alignof__] = ACTIONS(3528), - [anon_sym___alignof] = ACTIONS(3528), - [anon_sym__alignof] = ACTIONS(3528), - [anon_sym_alignof] = ACTIONS(3528), - [anon_sym__Alignof] = ACTIONS(3528), - [anon_sym_offsetof] = ACTIONS(3528), - [anon_sym__Generic] = ACTIONS(3528), - [anon_sym_typename] = ACTIONS(3528), - [anon_sym_asm] = ACTIONS(3528), - [anon_sym___asm__] = ACTIONS(3528), - [anon_sym___asm] = ACTIONS(3528), - [sym_number_literal] = ACTIONS(3530), - [anon_sym_L_SQUOTE] = ACTIONS(3530), - [anon_sym_u_SQUOTE] = ACTIONS(3530), - [anon_sym_U_SQUOTE] = ACTIONS(3530), - [anon_sym_u8_SQUOTE] = ACTIONS(3530), - [anon_sym_SQUOTE] = ACTIONS(3530), - [anon_sym_L_DQUOTE] = ACTIONS(3530), - [anon_sym_u_DQUOTE] = ACTIONS(3530), - [anon_sym_U_DQUOTE] = ACTIONS(3530), - [anon_sym_u8_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [anon_sym_NULL] = ACTIONS(3528), - [anon_sym_nullptr] = ACTIONS(3528), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3528), - [anon_sym_decltype] = ACTIONS(3528), - [anon_sym_explicit] = ACTIONS(3528), - [anon_sym_export] = ACTIONS(3528), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_import] = ACTIONS(3528), - [anon_sym_template] = ACTIONS(3528), - [anon_sym_operator] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_delete] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_static_assert] = ACTIONS(3528), - [anon_sym_concept] = ACTIONS(3528), - [anon_sym_co_return] = ACTIONS(3528), - [anon_sym_co_yield] = ACTIONS(3528), - [anon_sym_R_DQUOTE] = ACTIONS(3530), - [anon_sym_LR_DQUOTE] = ACTIONS(3530), - [anon_sym_uR_DQUOTE] = ACTIONS(3530), - [anon_sym_UR_DQUOTE] = ACTIONS(3530), - [anon_sym_u8R_DQUOTE] = ACTIONS(3530), - [anon_sym_co_await] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_requires] = ACTIONS(3528), - [anon_sym_CARET_CARET] = ACTIONS(3530), - [anon_sym_LBRACK_COLON] = ACTIONS(3530), - [sym_this] = ACTIONS(3528), + [STATE(637)] = { + [sym_identifier] = ACTIONS(3522), + [aux_sym_preproc_include_token1] = ACTIONS(3522), + [aux_sym_preproc_def_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token2] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3522), + [sym_preproc_directive] = ACTIONS(3522), + [anon_sym_LPAREN2] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3524), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_virtual] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym___attribute__] = ACTIONS(3522), + [anon_sym___attribute] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_COLON_COLON] = ACTIONS(3524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3524), + [anon_sym___declspec] = ACTIONS(3522), + [anon_sym___based] = ACTIONS(3522), + [anon_sym___cdecl] = ACTIONS(3522), + [anon_sym___clrcall] = ACTIONS(3522), + [anon_sym___stdcall] = ACTIONS(3522), + [anon_sym___fastcall] = ACTIONS(3522), + [anon_sym___thiscall] = ACTIONS(3522), + [anon_sym___vectorcall] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_signed] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym___inline] = ACTIONS(3522), + [anon_sym___inline__] = ACTIONS(3522), + [anon_sym___forceinline] = ACTIONS(3522), + [anon_sym_thread_local] = ACTIONS(3522), + [anon_sym___thread] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_constexpr] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym___restrict__] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym__Noreturn] = ACTIONS(3522), + [anon_sym_noreturn] = ACTIONS(3522), + [anon_sym__Nonnull] = ACTIONS(3522), + [anon_sym_mutable] = ACTIONS(3522), + [anon_sym_constinit] = ACTIONS(3522), + [anon_sym_consteval] = ACTIONS(3522), + [anon_sym_alignas] = ACTIONS(3522), + [anon_sym__Alignas] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_goto] = ACTIONS(3522), + [anon_sym___try] = ACTIONS(3522), + [anon_sym___leave] = ACTIONS(3522), + [anon_sym_not] = ACTIONS(3522), + [anon_sym_compl] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_sizeof] = ACTIONS(3522), + [anon_sym___alignof__] = ACTIONS(3522), + [anon_sym___alignof] = ACTIONS(3522), + [anon_sym__alignof] = ACTIONS(3522), + [anon_sym_alignof] = ACTIONS(3522), + [anon_sym__Alignof] = ACTIONS(3522), + [anon_sym_offsetof] = ACTIONS(3522), + [anon_sym__Generic] = ACTIONS(3522), + [anon_sym_typename] = ACTIONS(3522), + [anon_sym_asm] = ACTIONS(3522), + [anon_sym___asm__] = ACTIONS(3522), + [anon_sym___asm] = ACTIONS(3522), + [sym_number_literal] = ACTIONS(3524), + [anon_sym_L_SQUOTE] = ACTIONS(3524), + [anon_sym_u_SQUOTE] = ACTIONS(3524), + [anon_sym_U_SQUOTE] = ACTIONS(3524), + [anon_sym_u8_SQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_L_DQUOTE] = ACTIONS(3524), + [anon_sym_u_DQUOTE] = ACTIONS(3524), + [anon_sym_U_DQUOTE] = ACTIONS(3524), + [anon_sym_u8_DQUOTE] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [anon_sym_NULL] = ACTIONS(3522), + [anon_sym_nullptr] = ACTIONS(3522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3522), + [anon_sym_decltype] = ACTIONS(3522), + [anon_sym_explicit] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_template] = ACTIONS(3522), + [anon_sym_operator] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_static_assert] = ACTIONS(3522), + [anon_sym_concept] = ACTIONS(3522), + [anon_sym_co_return] = ACTIONS(3522), + [anon_sym_co_yield] = ACTIONS(3522), + [anon_sym_R_DQUOTE] = ACTIONS(3524), + [anon_sym_LR_DQUOTE] = ACTIONS(3524), + [anon_sym_uR_DQUOTE] = ACTIONS(3524), + [anon_sym_UR_DQUOTE] = ACTIONS(3524), + [anon_sym_u8R_DQUOTE] = ACTIONS(3524), + [anon_sym_co_await] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_requires] = ACTIONS(3522), + [anon_sym_CARET_CARET] = ACTIONS(3524), + [anon_sym_LBRACK_COLON] = ACTIONS(3524), + [sym_this] = ACTIONS(3522), }, - [STATE(614)] = { - [ts_builtin_sym_end] = ACTIONS(3590), - [sym_identifier] = ACTIONS(3588), - [aux_sym_preproc_include_token1] = ACTIONS(3588), - [aux_sym_preproc_def_token1] = ACTIONS(3588), - [aux_sym_preproc_if_token1] = ACTIONS(3588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3588), - [sym_preproc_directive] = ACTIONS(3588), - [anon_sym_LPAREN2] = ACTIONS(3590), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_STAR] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_AMP] = ACTIONS(3588), - [anon_sym_SEMI] = ACTIONS(3590), - [anon_sym___extension__] = ACTIONS(3588), - [anon_sym_typedef] = ACTIONS(3588), - [anon_sym_virtual] = ACTIONS(3588), - [anon_sym_extern] = ACTIONS(3588), - [anon_sym___attribute__] = ACTIONS(3588), - [anon_sym___attribute] = ACTIONS(3588), - [anon_sym_using] = ACTIONS(3588), - [anon_sym_COLON_COLON] = ACTIONS(3590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), - [anon_sym___declspec] = ACTIONS(3588), - [anon_sym___based] = ACTIONS(3588), - [anon_sym___cdecl] = ACTIONS(3588), - [anon_sym___clrcall] = ACTIONS(3588), - [anon_sym___stdcall] = ACTIONS(3588), - [anon_sym___fastcall] = ACTIONS(3588), - [anon_sym___thiscall] = ACTIONS(3588), - [anon_sym___vectorcall] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_signed] = ACTIONS(3588), - [anon_sym_unsigned] = ACTIONS(3588), - [anon_sym_long] = ACTIONS(3588), - [anon_sym_short] = ACTIONS(3588), - [anon_sym_LBRACK] = ACTIONS(3588), - [anon_sym_static] = ACTIONS(3588), - [anon_sym_register] = ACTIONS(3588), - [anon_sym_inline] = ACTIONS(3588), - [anon_sym___inline] = ACTIONS(3588), - [anon_sym___inline__] = ACTIONS(3588), - [anon_sym___forceinline] = ACTIONS(3588), - [anon_sym_thread_local] = ACTIONS(3588), - [anon_sym___thread] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_constexpr] = ACTIONS(3588), - [anon_sym_volatile] = ACTIONS(3588), - [anon_sym_restrict] = ACTIONS(3588), - [anon_sym___restrict__] = ACTIONS(3588), - [anon_sym__Atomic] = ACTIONS(3588), - [anon_sym__Noreturn] = ACTIONS(3588), - [anon_sym_noreturn] = ACTIONS(3588), - [anon_sym__Nonnull] = ACTIONS(3588), - [anon_sym_mutable] = ACTIONS(3588), - [anon_sym_constinit] = ACTIONS(3588), - [anon_sym_consteval] = ACTIONS(3588), - [anon_sym_alignas] = ACTIONS(3588), - [anon_sym__Alignas] = ACTIONS(3588), - [sym_primitive_type] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), - [anon_sym_class] = ACTIONS(3588), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_union] = ACTIONS(3588), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_else] = ACTIONS(3588), - [anon_sym_switch] = ACTIONS(3588), - [anon_sym_case] = ACTIONS(3588), - [anon_sym_default] = ACTIONS(3588), - [anon_sym_while] = ACTIONS(3588), - [anon_sym_do] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3588), - [anon_sym_return] = ACTIONS(3588), - [anon_sym_break] = ACTIONS(3588), - [anon_sym_continue] = ACTIONS(3588), - [anon_sym_goto] = ACTIONS(3588), - [anon_sym___try] = ACTIONS(3588), - [anon_sym___leave] = ACTIONS(3588), - [anon_sym_not] = ACTIONS(3588), - [anon_sym_compl] = ACTIONS(3588), - [anon_sym_DASH_DASH] = ACTIONS(3590), - [anon_sym_PLUS_PLUS] = ACTIONS(3590), - [anon_sym_sizeof] = ACTIONS(3588), - [anon_sym___alignof__] = ACTIONS(3588), - [anon_sym___alignof] = ACTIONS(3588), - [anon_sym__alignof] = ACTIONS(3588), - [anon_sym_alignof] = ACTIONS(3588), - [anon_sym__Alignof] = ACTIONS(3588), - [anon_sym_offsetof] = ACTIONS(3588), - [anon_sym__Generic] = ACTIONS(3588), - [anon_sym_typename] = ACTIONS(3588), - [anon_sym_asm] = ACTIONS(3588), - [anon_sym___asm__] = ACTIONS(3588), - [anon_sym___asm] = ACTIONS(3588), - [sym_number_literal] = ACTIONS(3590), - [anon_sym_L_SQUOTE] = ACTIONS(3590), - [anon_sym_u_SQUOTE] = ACTIONS(3590), - [anon_sym_U_SQUOTE] = ACTIONS(3590), - [anon_sym_u8_SQUOTE] = ACTIONS(3590), - [anon_sym_SQUOTE] = ACTIONS(3590), - [anon_sym_L_DQUOTE] = ACTIONS(3590), - [anon_sym_u_DQUOTE] = ACTIONS(3590), - [anon_sym_U_DQUOTE] = ACTIONS(3590), - [anon_sym_u8_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [sym_true] = ACTIONS(3588), - [sym_false] = ACTIONS(3588), - [anon_sym_NULL] = ACTIONS(3588), - [anon_sym_nullptr] = ACTIONS(3588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3588), - [anon_sym_decltype] = ACTIONS(3588), - [anon_sym_explicit] = ACTIONS(3588), - [anon_sym_export] = ACTIONS(3588), - [anon_sym_module] = ACTIONS(3588), - [anon_sym_import] = ACTIONS(3588), - [anon_sym_template] = ACTIONS(3588), - [anon_sym_operator] = ACTIONS(3588), - [anon_sym_try] = ACTIONS(3588), - [anon_sym_delete] = ACTIONS(3588), - [anon_sym_throw] = ACTIONS(3588), - [anon_sym_namespace] = ACTIONS(3588), - [anon_sym_static_assert] = ACTIONS(3588), - [anon_sym_concept] = ACTIONS(3588), - [anon_sym_co_return] = ACTIONS(3588), - [anon_sym_co_yield] = ACTIONS(3588), - [anon_sym_R_DQUOTE] = ACTIONS(3590), - [anon_sym_LR_DQUOTE] = ACTIONS(3590), - [anon_sym_uR_DQUOTE] = ACTIONS(3590), - [anon_sym_UR_DQUOTE] = ACTIONS(3590), - [anon_sym_u8R_DQUOTE] = ACTIONS(3590), - [anon_sym_co_await] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3588), - [anon_sym_requires] = ACTIONS(3588), - [anon_sym_CARET_CARET] = ACTIONS(3590), - [anon_sym_LBRACK_COLON] = ACTIONS(3590), - [sym_this] = ACTIONS(3588), + [STATE(638)] = { + [sym_expression] = STATE(5842), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_initializer_list] = STATE(5943), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(2382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [aux_sym_preproc_if_token2] = ACTIONS(2384), + [aux_sym_preproc_else_token1] = ACTIONS(2384), + [aux_sym_preproc_elif_token1] = ACTIONS(2382), + [aux_sym_preproc_elifdef_token1] = ACTIONS(2384), + [aux_sym_preproc_elifdef_token2] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(4401), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(4421), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, - [STATE(615)] = { - [ts_builtin_sym_end] = ACTIONS(3602), - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_include_token1] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym___cdecl] = ACTIONS(3600), - [anon_sym___clrcall] = ACTIONS(3600), - [anon_sym___stdcall] = ACTIONS(3600), - [anon_sym___fastcall] = ACTIONS(3600), - [anon_sym___thiscall] = ACTIONS(3600), - [anon_sym___vectorcall] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_case] = ACTIONS(3600), - [anon_sym_default] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym___try] = ACTIONS(3600), - [anon_sym___leave] = ACTIONS(3600), - [anon_sym_not] = ACTIONS(3600), - [anon_sym_compl] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(3600), - [anon_sym___alignof] = ACTIONS(3600), - [anon_sym__alignof] = ACTIONS(3600), - [anon_sym_alignof] = ACTIONS(3600), - [anon_sym__Alignof] = ACTIONS(3600), - [anon_sym_offsetof] = ACTIONS(3600), - [anon_sym__Generic] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [anon_sym_asm] = ACTIONS(3600), - [anon_sym___asm__] = ACTIONS(3600), - [anon_sym___asm] = ACTIONS(3600), - [sym_number_literal] = ACTIONS(3602), - [anon_sym_L_SQUOTE] = ACTIONS(3602), - [anon_sym_u_SQUOTE] = ACTIONS(3602), - [anon_sym_U_SQUOTE] = ACTIONS(3602), - [anon_sym_u8_SQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_L_DQUOTE] = ACTIONS(3602), - [anon_sym_u_DQUOTE] = ACTIONS(3602), - [anon_sym_U_DQUOTE] = ACTIONS(3602), - [anon_sym_u8_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [anon_sym_NULL] = ACTIONS(3600), - [anon_sym_nullptr] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_export] = ACTIONS(3600), - [anon_sym_module] = ACTIONS(3600), - [anon_sym_import] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_concept] = ACTIONS(3600), - [anon_sym_co_return] = ACTIONS(3600), - [anon_sym_co_yield] = ACTIONS(3600), - [anon_sym_R_DQUOTE] = ACTIONS(3602), - [anon_sym_LR_DQUOTE] = ACTIONS(3602), - [anon_sym_uR_DQUOTE] = ACTIONS(3602), - [anon_sym_UR_DQUOTE] = ACTIONS(3602), - [anon_sym_u8R_DQUOTE] = ACTIONS(3602), - [anon_sym_co_await] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_requires] = ACTIONS(3600), - [anon_sym_CARET_CARET] = ACTIONS(3602), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - [sym_this] = ACTIONS(3600), + [STATE(639)] = { + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3526), + [aux_sym_preproc_include_token1] = ACTIONS(3526), + [aux_sym_preproc_def_token1] = ACTIONS(3526), + [aux_sym_preproc_if_token1] = ACTIONS(3526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3526), + [sym_preproc_directive] = ACTIONS(3526), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_STAR] = ACTIONS(3528), + [anon_sym_AMP_AMP] = ACTIONS(3528), + [anon_sym_AMP] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym___extension__] = ACTIONS(3526), + [anon_sym_typedef] = ACTIONS(3526), + [anon_sym_virtual] = ACTIONS(3526), + [anon_sym_extern] = ACTIONS(3526), + [anon_sym___attribute__] = ACTIONS(3526), + [anon_sym___attribute] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3528), + [anon_sym___declspec] = ACTIONS(3526), + [anon_sym___based] = ACTIONS(3526), + [anon_sym___cdecl] = ACTIONS(3526), + [anon_sym___clrcall] = ACTIONS(3526), + [anon_sym___stdcall] = ACTIONS(3526), + [anon_sym___fastcall] = ACTIONS(3526), + [anon_sym___thiscall] = ACTIONS(3526), + [anon_sym___vectorcall] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_signed] = ACTIONS(3526), + [anon_sym_unsigned] = ACTIONS(3526), + [anon_sym_long] = ACTIONS(3526), + [anon_sym_short] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_register] = ACTIONS(3526), + [anon_sym_inline] = ACTIONS(3526), + [anon_sym___inline] = ACTIONS(3526), + [anon_sym___inline__] = ACTIONS(3526), + [anon_sym___forceinline] = ACTIONS(3526), + [anon_sym_thread_local] = ACTIONS(3526), + [anon_sym___thread] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_constexpr] = ACTIONS(3526), + [anon_sym_volatile] = ACTIONS(3526), + [anon_sym_restrict] = ACTIONS(3526), + [anon_sym___restrict__] = ACTIONS(3526), + [anon_sym__Atomic] = ACTIONS(3526), + [anon_sym__Noreturn] = ACTIONS(3526), + [anon_sym_noreturn] = ACTIONS(3526), + [anon_sym__Nonnull] = ACTIONS(3526), + [anon_sym_mutable] = ACTIONS(3526), + [anon_sym_constinit] = ACTIONS(3526), + [anon_sym_consteval] = ACTIONS(3526), + [anon_sym_alignas] = ACTIONS(3526), + [anon_sym__Alignas] = ACTIONS(3526), + [sym_primitive_type] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_struct] = ACTIONS(3526), + [anon_sym_union] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_else] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_case] = ACTIONS(3526), + [anon_sym_default] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_goto] = ACTIONS(3526), + [anon_sym___try] = ACTIONS(3526), + [anon_sym___leave] = ACTIONS(3526), + [anon_sym_not] = ACTIONS(3526), + [anon_sym_compl] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_sizeof] = ACTIONS(3526), + [anon_sym___alignof__] = ACTIONS(3526), + [anon_sym___alignof] = ACTIONS(3526), + [anon_sym__alignof] = ACTIONS(3526), + [anon_sym_alignof] = ACTIONS(3526), + [anon_sym__Alignof] = ACTIONS(3526), + [anon_sym_offsetof] = ACTIONS(3526), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_typename] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3526), + [anon_sym___asm__] = ACTIONS(3526), + [anon_sym___asm] = ACTIONS(3526), + [sym_number_literal] = ACTIONS(3528), + [anon_sym_L_SQUOTE] = ACTIONS(3528), + [anon_sym_u_SQUOTE] = ACTIONS(3528), + [anon_sym_U_SQUOTE] = ACTIONS(3528), + [anon_sym_u8_SQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_L_DQUOTE] = ACTIONS(3528), + [anon_sym_u_DQUOTE] = ACTIONS(3528), + [anon_sym_U_DQUOTE] = ACTIONS(3528), + [anon_sym_u8_DQUOTE] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [anon_sym_NULL] = ACTIONS(3526), + [anon_sym_nullptr] = ACTIONS(3526), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3526), + [anon_sym_decltype] = ACTIONS(3526), + [anon_sym_explicit] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_template] = ACTIONS(3526), + [anon_sym_operator] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_static_assert] = ACTIONS(3526), + [anon_sym_concept] = ACTIONS(3526), + [anon_sym_co_return] = ACTIONS(3526), + [anon_sym_co_yield] = ACTIONS(3526), + [anon_sym_R_DQUOTE] = ACTIONS(3528), + [anon_sym_LR_DQUOTE] = ACTIONS(3528), + [anon_sym_uR_DQUOTE] = ACTIONS(3528), + [anon_sym_UR_DQUOTE] = ACTIONS(3528), + [anon_sym_u8R_DQUOTE] = ACTIONS(3528), + [anon_sym_co_await] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_requires] = ACTIONS(3526), + [anon_sym_CARET_CARET] = ACTIONS(3528), + [anon_sym_LBRACK_COLON] = ACTIONS(3528), + [sym_this] = ACTIONS(3526), }, - [STATE(616)] = { - [sym_identifier] = ACTIONS(3650), - [aux_sym_preproc_include_token1] = ACTIONS(3650), - [aux_sym_preproc_def_token1] = ACTIONS(3650), - [aux_sym_preproc_if_token1] = ACTIONS(3650), - [aux_sym_preproc_if_token2] = ACTIONS(3650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3650), - [sym_preproc_directive] = ACTIONS(3650), - [anon_sym_LPAREN2] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym___extension__] = ACTIONS(3650), - [anon_sym_typedef] = ACTIONS(3650), - [anon_sym_virtual] = ACTIONS(3650), - [anon_sym_extern] = ACTIONS(3650), - [anon_sym___attribute__] = ACTIONS(3650), - [anon_sym___attribute] = ACTIONS(3650), - [anon_sym_using] = ACTIONS(3650), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3652), - [anon_sym___declspec] = ACTIONS(3650), - [anon_sym___based] = ACTIONS(3650), - [anon_sym___cdecl] = ACTIONS(3650), - [anon_sym___clrcall] = ACTIONS(3650), - [anon_sym___stdcall] = ACTIONS(3650), - [anon_sym___fastcall] = ACTIONS(3650), - [anon_sym___thiscall] = ACTIONS(3650), - [anon_sym___vectorcall] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_signed] = ACTIONS(3650), - [anon_sym_unsigned] = ACTIONS(3650), - [anon_sym_long] = ACTIONS(3650), - [anon_sym_short] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_register] = ACTIONS(3650), - [anon_sym_inline] = ACTIONS(3650), - [anon_sym___inline] = ACTIONS(3650), - [anon_sym___inline__] = ACTIONS(3650), - [anon_sym___forceinline] = ACTIONS(3650), - [anon_sym_thread_local] = ACTIONS(3650), - [anon_sym___thread] = ACTIONS(3650), - [anon_sym_const] = ACTIONS(3650), - [anon_sym_constexpr] = ACTIONS(3650), - [anon_sym_volatile] = ACTIONS(3650), - [anon_sym_restrict] = ACTIONS(3650), - [anon_sym___restrict__] = ACTIONS(3650), - [anon_sym__Atomic] = ACTIONS(3650), - [anon_sym__Noreturn] = ACTIONS(3650), - [anon_sym_noreturn] = ACTIONS(3650), - [anon_sym__Nonnull] = ACTIONS(3650), - [anon_sym_mutable] = ACTIONS(3650), - [anon_sym_constinit] = ACTIONS(3650), - [anon_sym_consteval] = ACTIONS(3650), - [anon_sym_alignas] = ACTIONS(3650), - [anon_sym__Alignas] = ACTIONS(3650), - [sym_primitive_type] = ACTIONS(3650), - [anon_sym_enum] = ACTIONS(3650), - [anon_sym_class] = ACTIONS(3650), - [anon_sym_struct] = ACTIONS(3650), - [anon_sym_union] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_case] = ACTIONS(3650), - [anon_sym_default] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_goto] = ACTIONS(3650), - [anon_sym___try] = ACTIONS(3650), - [anon_sym___leave] = ACTIONS(3650), - [anon_sym_not] = ACTIONS(3650), - [anon_sym_compl] = ACTIONS(3650), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_sizeof] = ACTIONS(3650), - [anon_sym___alignof__] = ACTIONS(3650), - [anon_sym___alignof] = ACTIONS(3650), - [anon_sym__alignof] = ACTIONS(3650), - [anon_sym_alignof] = ACTIONS(3650), - [anon_sym__Alignof] = ACTIONS(3650), - [anon_sym_offsetof] = ACTIONS(3650), - [anon_sym__Generic] = ACTIONS(3650), - [anon_sym_typename] = ACTIONS(3650), - [anon_sym_asm] = ACTIONS(3650), - [anon_sym___asm__] = ACTIONS(3650), - [anon_sym___asm] = ACTIONS(3650), - [sym_number_literal] = ACTIONS(3652), - [anon_sym_L_SQUOTE] = ACTIONS(3652), - [anon_sym_u_SQUOTE] = ACTIONS(3652), - [anon_sym_U_SQUOTE] = ACTIONS(3652), - [anon_sym_u8_SQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [anon_sym_L_DQUOTE] = ACTIONS(3652), - [anon_sym_u_DQUOTE] = ACTIONS(3652), - [anon_sym_U_DQUOTE] = ACTIONS(3652), - [anon_sym_u8_DQUOTE] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [sym_true] = ACTIONS(3650), - [sym_false] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_nullptr] = ACTIONS(3650), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3650), - [anon_sym_decltype] = ACTIONS(3650), - [anon_sym_explicit] = ACTIONS(3650), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_module] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_template] = ACTIONS(3650), - [anon_sym_operator] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_delete] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_namespace] = ACTIONS(3650), - [anon_sym_static_assert] = ACTIONS(3650), - [anon_sym_concept] = ACTIONS(3650), - [anon_sym_co_return] = ACTIONS(3650), - [anon_sym_co_yield] = ACTIONS(3650), - [anon_sym_R_DQUOTE] = ACTIONS(3652), - [anon_sym_LR_DQUOTE] = ACTIONS(3652), - [anon_sym_uR_DQUOTE] = ACTIONS(3652), - [anon_sym_UR_DQUOTE] = ACTIONS(3652), - [anon_sym_u8R_DQUOTE] = ACTIONS(3652), - [anon_sym_co_await] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_requires] = ACTIONS(3650), - [anon_sym_CARET_CARET] = ACTIONS(3652), - [anon_sym_LBRACK_COLON] = ACTIONS(3652), - [sym_this] = ACTIONS(3650), + [STATE(640)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token2] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_module] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), }, - [STATE(617)] = { - [ts_builtin_sym_end] = ACTIONS(3602), - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_include_token1] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym___cdecl] = ACTIONS(3600), - [anon_sym___clrcall] = ACTIONS(3600), - [anon_sym___stdcall] = ACTIONS(3600), - [anon_sym___fastcall] = ACTIONS(3600), - [anon_sym___thiscall] = ACTIONS(3600), - [anon_sym___vectorcall] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_case] = ACTIONS(3600), - [anon_sym_default] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym___try] = ACTIONS(3600), - [anon_sym___leave] = ACTIONS(3600), - [anon_sym_not] = ACTIONS(3600), - [anon_sym_compl] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(3600), - [anon_sym___alignof] = ACTIONS(3600), - [anon_sym__alignof] = ACTIONS(3600), - [anon_sym_alignof] = ACTIONS(3600), - [anon_sym__Alignof] = ACTIONS(3600), - [anon_sym_offsetof] = ACTIONS(3600), - [anon_sym__Generic] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [anon_sym_asm] = ACTIONS(3600), - [anon_sym___asm__] = ACTIONS(3600), - [anon_sym___asm] = ACTIONS(3600), - [sym_number_literal] = ACTIONS(3602), - [anon_sym_L_SQUOTE] = ACTIONS(3602), - [anon_sym_u_SQUOTE] = ACTIONS(3602), - [anon_sym_U_SQUOTE] = ACTIONS(3602), - [anon_sym_u8_SQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_L_DQUOTE] = ACTIONS(3602), - [anon_sym_u_DQUOTE] = ACTIONS(3602), - [anon_sym_U_DQUOTE] = ACTIONS(3602), - [anon_sym_u8_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [anon_sym_NULL] = ACTIONS(3600), - [anon_sym_nullptr] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_export] = ACTIONS(3600), - [anon_sym_module] = ACTIONS(3600), - [anon_sym_import] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_concept] = ACTIONS(3600), - [anon_sym_co_return] = ACTIONS(3600), - [anon_sym_co_yield] = ACTIONS(3600), - [anon_sym_R_DQUOTE] = ACTIONS(3602), - [anon_sym_LR_DQUOTE] = ACTIONS(3602), - [anon_sym_uR_DQUOTE] = ACTIONS(3602), - [anon_sym_UR_DQUOTE] = ACTIONS(3602), - [anon_sym_u8R_DQUOTE] = ACTIONS(3602), - [anon_sym_co_await] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_requires] = ACTIONS(3600), - [anon_sym_CARET_CARET] = ACTIONS(3602), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - [sym_this] = ACTIONS(3600), + [STATE(641)] = { + [sym_identifier] = ACTIONS(3490), + [aux_sym_preproc_include_token1] = ACTIONS(3490), + [aux_sym_preproc_def_token1] = ACTIONS(3490), + [aux_sym_preproc_if_token1] = ACTIONS(3490), + [aux_sym_preproc_if_token2] = ACTIONS(3490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3490), + [sym_preproc_directive] = ACTIONS(3490), + [anon_sym_LPAREN2] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP_AMP] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3490), + [anon_sym_typedef] = ACTIONS(3490), + [anon_sym_virtual] = ACTIONS(3490), + [anon_sym_extern] = ACTIONS(3490), + [anon_sym___attribute__] = ACTIONS(3490), + [anon_sym___attribute] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_COLON_COLON] = ACTIONS(3492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3492), + [anon_sym___declspec] = ACTIONS(3490), + [anon_sym___based] = ACTIONS(3490), + [anon_sym___cdecl] = ACTIONS(3490), + [anon_sym___clrcall] = ACTIONS(3490), + [anon_sym___stdcall] = ACTIONS(3490), + [anon_sym___fastcall] = ACTIONS(3490), + [anon_sym___thiscall] = ACTIONS(3490), + [anon_sym___vectorcall] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_signed] = ACTIONS(3490), + [anon_sym_unsigned] = ACTIONS(3490), + [anon_sym_long] = ACTIONS(3490), + [anon_sym_short] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_register] = ACTIONS(3490), + [anon_sym_inline] = ACTIONS(3490), + [anon_sym___inline] = ACTIONS(3490), + [anon_sym___inline__] = ACTIONS(3490), + [anon_sym___forceinline] = ACTIONS(3490), + [anon_sym_thread_local] = ACTIONS(3490), + [anon_sym___thread] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_constexpr] = ACTIONS(3490), + [anon_sym_volatile] = ACTIONS(3490), + [anon_sym_restrict] = ACTIONS(3490), + [anon_sym___restrict__] = ACTIONS(3490), + [anon_sym__Atomic] = ACTIONS(3490), + [anon_sym__Noreturn] = ACTIONS(3490), + [anon_sym_noreturn] = ACTIONS(3490), + [anon_sym__Nonnull] = ACTIONS(3490), + [anon_sym_mutable] = ACTIONS(3490), + [anon_sym_constinit] = ACTIONS(3490), + [anon_sym_consteval] = ACTIONS(3490), + [anon_sym_alignas] = ACTIONS(3490), + [anon_sym__Alignas] = ACTIONS(3490), + [sym_primitive_type] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_struct] = ACTIONS(3490), + [anon_sym_union] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_case] = ACTIONS(3490), + [anon_sym_default] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_goto] = ACTIONS(3490), + [anon_sym___try] = ACTIONS(3490), + [anon_sym___leave] = ACTIONS(3490), + [anon_sym_not] = ACTIONS(3490), + [anon_sym_compl] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_sizeof] = ACTIONS(3490), + [anon_sym___alignof__] = ACTIONS(3490), + [anon_sym___alignof] = ACTIONS(3490), + [anon_sym__alignof] = ACTIONS(3490), + [anon_sym_alignof] = ACTIONS(3490), + [anon_sym__Alignof] = ACTIONS(3490), + [anon_sym_offsetof] = ACTIONS(3490), + [anon_sym__Generic] = ACTIONS(3490), + [anon_sym_typename] = ACTIONS(3490), + [anon_sym_asm] = ACTIONS(3490), + [anon_sym___asm__] = ACTIONS(3490), + [anon_sym___asm] = ACTIONS(3490), + [sym_number_literal] = ACTIONS(3492), + [anon_sym_L_SQUOTE] = ACTIONS(3492), + [anon_sym_u_SQUOTE] = ACTIONS(3492), + [anon_sym_U_SQUOTE] = ACTIONS(3492), + [anon_sym_u8_SQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_L_DQUOTE] = ACTIONS(3492), + [anon_sym_u_DQUOTE] = ACTIONS(3492), + [anon_sym_U_DQUOTE] = ACTIONS(3492), + [anon_sym_u8_DQUOTE] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [anon_sym_NULL] = ACTIONS(3490), + [anon_sym_nullptr] = ACTIONS(3490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3490), + [anon_sym_decltype] = ACTIONS(3490), + [anon_sym_explicit] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_template] = ACTIONS(3490), + [anon_sym_operator] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_static_assert] = ACTIONS(3490), + [anon_sym_concept] = ACTIONS(3490), + [anon_sym_co_return] = ACTIONS(3490), + [anon_sym_co_yield] = ACTIONS(3490), + [anon_sym_R_DQUOTE] = ACTIONS(3492), + [anon_sym_LR_DQUOTE] = ACTIONS(3492), + [anon_sym_uR_DQUOTE] = ACTIONS(3492), + [anon_sym_UR_DQUOTE] = ACTIONS(3492), + [anon_sym_u8R_DQUOTE] = ACTIONS(3492), + [anon_sym_co_await] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_requires] = ACTIONS(3490), + [anon_sym_CARET_CARET] = ACTIONS(3492), + [anon_sym_LBRACK_COLON] = ACTIONS(3492), + [sym_this] = ACTIONS(3490), }, - [STATE(618)] = { - [ts_builtin_sym_end] = ACTIONS(3542), - [sym_identifier] = ACTIONS(3540), - [aux_sym_preproc_include_token1] = ACTIONS(3540), - [aux_sym_preproc_def_token1] = ACTIONS(3540), - [aux_sym_preproc_if_token1] = ACTIONS(3540), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3540), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3540), - [sym_preproc_directive] = ACTIONS(3540), - [anon_sym_LPAREN2] = ACTIONS(3542), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_STAR] = ACTIONS(3542), - [anon_sym_AMP_AMP] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3540), - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym___extension__] = ACTIONS(3540), - [anon_sym_typedef] = ACTIONS(3540), - [anon_sym_virtual] = ACTIONS(3540), - [anon_sym_extern] = ACTIONS(3540), - [anon_sym___attribute__] = ACTIONS(3540), - [anon_sym___attribute] = ACTIONS(3540), - [anon_sym_using] = ACTIONS(3540), - [anon_sym_COLON_COLON] = ACTIONS(3542), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), - [anon_sym___declspec] = ACTIONS(3540), - [anon_sym___based] = ACTIONS(3540), - [anon_sym___cdecl] = ACTIONS(3540), - [anon_sym___clrcall] = ACTIONS(3540), - [anon_sym___stdcall] = ACTIONS(3540), - [anon_sym___fastcall] = ACTIONS(3540), - [anon_sym___thiscall] = ACTIONS(3540), - [anon_sym___vectorcall] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3542), - [anon_sym_signed] = ACTIONS(3540), - [anon_sym_unsigned] = ACTIONS(3540), - [anon_sym_long] = ACTIONS(3540), - [anon_sym_short] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_register] = ACTIONS(3540), - [anon_sym_inline] = ACTIONS(3540), - [anon_sym___inline] = ACTIONS(3540), - [anon_sym___inline__] = ACTIONS(3540), - [anon_sym___forceinline] = ACTIONS(3540), - [anon_sym_thread_local] = ACTIONS(3540), - [anon_sym___thread] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_constexpr] = ACTIONS(3540), - [anon_sym_volatile] = ACTIONS(3540), - [anon_sym_restrict] = ACTIONS(3540), - [anon_sym___restrict__] = ACTIONS(3540), - [anon_sym__Atomic] = ACTIONS(3540), - [anon_sym__Noreturn] = ACTIONS(3540), - [anon_sym_noreturn] = ACTIONS(3540), - [anon_sym__Nonnull] = ACTIONS(3540), - [anon_sym_mutable] = ACTIONS(3540), - [anon_sym_constinit] = ACTIONS(3540), - [anon_sym_consteval] = ACTIONS(3540), - [anon_sym_alignas] = ACTIONS(3540), - [anon_sym__Alignas] = ACTIONS(3540), - [sym_primitive_type] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(3540), - [anon_sym_class] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(3540), - [anon_sym_union] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_else] = ACTIONS(3540), - [anon_sym_switch] = ACTIONS(3540), - [anon_sym_case] = ACTIONS(3540), - [anon_sym_default] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_do] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_goto] = ACTIONS(3540), - [anon_sym___try] = ACTIONS(3540), - [anon_sym___leave] = ACTIONS(3540), - [anon_sym_not] = ACTIONS(3540), - [anon_sym_compl] = ACTIONS(3540), - [anon_sym_DASH_DASH] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_sizeof] = ACTIONS(3540), - [anon_sym___alignof__] = ACTIONS(3540), - [anon_sym___alignof] = ACTIONS(3540), - [anon_sym__alignof] = ACTIONS(3540), - [anon_sym_alignof] = ACTIONS(3540), - [anon_sym__Alignof] = ACTIONS(3540), - [anon_sym_offsetof] = ACTIONS(3540), - [anon_sym__Generic] = ACTIONS(3540), - [anon_sym_typename] = ACTIONS(3540), - [anon_sym_asm] = ACTIONS(3540), - [anon_sym___asm__] = ACTIONS(3540), - [anon_sym___asm] = ACTIONS(3540), - [sym_number_literal] = ACTIONS(3542), - [anon_sym_L_SQUOTE] = ACTIONS(3542), - [anon_sym_u_SQUOTE] = ACTIONS(3542), - [anon_sym_U_SQUOTE] = ACTIONS(3542), - [anon_sym_u8_SQUOTE] = ACTIONS(3542), - [anon_sym_SQUOTE] = ACTIONS(3542), - [anon_sym_L_DQUOTE] = ACTIONS(3542), - [anon_sym_u_DQUOTE] = ACTIONS(3542), - [anon_sym_U_DQUOTE] = ACTIONS(3542), - [anon_sym_u8_DQUOTE] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3542), - [sym_true] = ACTIONS(3540), - [sym_false] = ACTIONS(3540), - [anon_sym_NULL] = ACTIONS(3540), - [anon_sym_nullptr] = ACTIONS(3540), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3540), - [anon_sym_decltype] = ACTIONS(3540), - [anon_sym_explicit] = ACTIONS(3540), - [anon_sym_export] = ACTIONS(3540), - [anon_sym_module] = ACTIONS(3540), - [anon_sym_import] = ACTIONS(3540), - [anon_sym_template] = ACTIONS(3540), - [anon_sym_operator] = ACTIONS(3540), - [anon_sym_try] = ACTIONS(3540), - [anon_sym_delete] = ACTIONS(3540), - [anon_sym_throw] = ACTIONS(3540), - [anon_sym_namespace] = ACTIONS(3540), - [anon_sym_static_assert] = ACTIONS(3540), - [anon_sym_concept] = ACTIONS(3540), - [anon_sym_co_return] = ACTIONS(3540), - [anon_sym_co_yield] = ACTIONS(3540), - [anon_sym_R_DQUOTE] = ACTIONS(3542), - [anon_sym_LR_DQUOTE] = ACTIONS(3542), - [anon_sym_uR_DQUOTE] = ACTIONS(3542), - [anon_sym_UR_DQUOTE] = ACTIONS(3542), - [anon_sym_u8R_DQUOTE] = ACTIONS(3542), - [anon_sym_co_await] = ACTIONS(3540), - [anon_sym_new] = ACTIONS(3540), - [anon_sym_requires] = ACTIONS(3540), - [anon_sym_CARET_CARET] = ACTIONS(3542), - [anon_sym_LBRACK_COLON] = ACTIONS(3542), - [sym_this] = ACTIONS(3540), + [STATE(642)] = { + [sym_identifier] = ACTIONS(3326), + [aux_sym_preproc_include_token1] = ACTIONS(3326), + [aux_sym_preproc_def_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token1] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3326), + [sym_preproc_directive] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym___extension__] = ACTIONS(3326), + [anon_sym_typedef] = ACTIONS(3326), + [anon_sym_virtual] = ACTIONS(3326), + [anon_sym_extern] = ACTIONS(3326), + [anon_sym___attribute__] = ACTIONS(3326), + [anon_sym___attribute] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3328), + [anon_sym___declspec] = ACTIONS(3326), + [anon_sym___based] = ACTIONS(3326), + [anon_sym___cdecl] = ACTIONS(3326), + [anon_sym___clrcall] = ACTIONS(3326), + [anon_sym___stdcall] = ACTIONS(3326), + [anon_sym___fastcall] = ACTIONS(3326), + [anon_sym___thiscall] = ACTIONS(3326), + [anon_sym___vectorcall] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3326), + [anon_sym_unsigned] = ACTIONS(3326), + [anon_sym_long] = ACTIONS(3326), + [anon_sym_short] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_register] = ACTIONS(3326), + [anon_sym_inline] = ACTIONS(3326), + [anon_sym___inline] = ACTIONS(3326), + [anon_sym___inline__] = ACTIONS(3326), + [anon_sym___forceinline] = ACTIONS(3326), + [anon_sym_thread_local] = ACTIONS(3326), + [anon_sym___thread] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_constexpr] = ACTIONS(3326), + [anon_sym_volatile] = ACTIONS(3326), + [anon_sym_restrict] = ACTIONS(3326), + [anon_sym___restrict__] = ACTIONS(3326), + [anon_sym__Atomic] = ACTIONS(3326), + [anon_sym__Noreturn] = ACTIONS(3326), + [anon_sym_noreturn] = ACTIONS(3326), + [anon_sym__Nonnull] = ACTIONS(3326), + [anon_sym_mutable] = ACTIONS(3326), + [anon_sym_constinit] = ACTIONS(3326), + [anon_sym_consteval] = ACTIONS(3326), + [anon_sym_alignas] = ACTIONS(3326), + [anon_sym__Alignas] = ACTIONS(3326), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_union] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_goto] = ACTIONS(3326), + [anon_sym___try] = ACTIONS(3326), + [anon_sym___leave] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_compl] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_sizeof] = ACTIONS(3326), + [anon_sym___alignof__] = ACTIONS(3326), + [anon_sym___alignof] = ACTIONS(3326), + [anon_sym__alignof] = ACTIONS(3326), + [anon_sym_alignof] = ACTIONS(3326), + [anon_sym__Alignof] = ACTIONS(3326), + [anon_sym_offsetof] = ACTIONS(3326), + [anon_sym__Generic] = ACTIONS(3326), + [anon_sym_typename] = ACTIONS(3326), + [anon_sym_asm] = ACTIONS(3326), + [anon_sym___asm__] = ACTIONS(3326), + [anon_sym___asm] = ACTIONS(3326), + [sym_number_literal] = ACTIONS(3328), + [anon_sym_L_SQUOTE] = ACTIONS(3328), + [anon_sym_u_SQUOTE] = ACTIONS(3328), + [anon_sym_U_SQUOTE] = ACTIONS(3328), + [anon_sym_u8_SQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_L_DQUOTE] = ACTIONS(3328), + [anon_sym_u_DQUOTE] = ACTIONS(3328), + [anon_sym_U_DQUOTE] = ACTIONS(3328), + [anon_sym_u8_DQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [anon_sym_NULL] = ACTIONS(3326), + [anon_sym_nullptr] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3326), + [anon_sym_decltype] = ACTIONS(3326), + [anon_sym_explicit] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_template] = ACTIONS(3326), + [anon_sym_operator] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_static_assert] = ACTIONS(3326), + [anon_sym_concept] = ACTIONS(3326), + [anon_sym_co_return] = ACTIONS(3326), + [anon_sym_co_yield] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_R_DQUOTE] = ACTIONS(3328), + [anon_sym_LR_DQUOTE] = ACTIONS(3328), + [anon_sym_uR_DQUOTE] = ACTIONS(3328), + [anon_sym_UR_DQUOTE] = ACTIONS(3328), + [anon_sym_u8R_DQUOTE] = ACTIONS(3328), + [anon_sym_co_await] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_requires] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3328), + [anon_sym_LBRACK_COLON] = ACTIONS(3328), + [sym_this] = ACTIONS(3326), }, - [STATE(619)] = { - [sym_identifier] = ACTIONS(3654), - [aux_sym_preproc_include_token1] = ACTIONS(3654), - [aux_sym_preproc_def_token1] = ACTIONS(3654), - [aux_sym_preproc_if_token1] = ACTIONS(3654), - [aux_sym_preproc_if_token2] = ACTIONS(3654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3654), - [sym_preproc_directive] = ACTIONS(3654), - [anon_sym_LPAREN2] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3656), - [anon_sym_TILDE] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym___extension__] = ACTIONS(3654), - [anon_sym_typedef] = ACTIONS(3654), - [anon_sym_virtual] = ACTIONS(3654), - [anon_sym_extern] = ACTIONS(3654), - [anon_sym___attribute__] = ACTIONS(3654), - [anon_sym___attribute] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_COLON_COLON] = ACTIONS(3656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3656), - [anon_sym___declspec] = ACTIONS(3654), - [anon_sym___based] = ACTIONS(3654), - [anon_sym___cdecl] = ACTIONS(3654), - [anon_sym___clrcall] = ACTIONS(3654), - [anon_sym___stdcall] = ACTIONS(3654), - [anon_sym___fastcall] = ACTIONS(3654), - [anon_sym___thiscall] = ACTIONS(3654), - [anon_sym___vectorcall] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_signed] = ACTIONS(3654), - [anon_sym_unsigned] = ACTIONS(3654), - [anon_sym_long] = ACTIONS(3654), - [anon_sym_short] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_register] = ACTIONS(3654), - [anon_sym_inline] = ACTIONS(3654), - [anon_sym___inline] = ACTIONS(3654), - [anon_sym___inline__] = ACTIONS(3654), - [anon_sym___forceinline] = ACTIONS(3654), - [anon_sym_thread_local] = ACTIONS(3654), - [anon_sym___thread] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_constexpr] = ACTIONS(3654), - [anon_sym_volatile] = ACTIONS(3654), - [anon_sym_restrict] = ACTIONS(3654), - [anon_sym___restrict__] = ACTIONS(3654), - [anon_sym__Atomic] = ACTIONS(3654), - [anon_sym__Noreturn] = ACTIONS(3654), - [anon_sym_noreturn] = ACTIONS(3654), - [anon_sym__Nonnull] = ACTIONS(3654), - [anon_sym_mutable] = ACTIONS(3654), - [anon_sym_constinit] = ACTIONS(3654), - [anon_sym_consteval] = ACTIONS(3654), - [anon_sym_alignas] = ACTIONS(3654), - [anon_sym__Alignas] = ACTIONS(3654), - [sym_primitive_type] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_struct] = ACTIONS(3654), - [anon_sym_union] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_case] = ACTIONS(3654), - [anon_sym_default] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_goto] = ACTIONS(3654), - [anon_sym___try] = ACTIONS(3654), - [anon_sym___leave] = ACTIONS(3654), - [anon_sym_not] = ACTIONS(3654), - [anon_sym_compl] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_sizeof] = ACTIONS(3654), - [anon_sym___alignof__] = ACTIONS(3654), - [anon_sym___alignof] = ACTIONS(3654), - [anon_sym__alignof] = ACTIONS(3654), - [anon_sym_alignof] = ACTIONS(3654), - [anon_sym__Alignof] = ACTIONS(3654), - [anon_sym_offsetof] = ACTIONS(3654), - [anon_sym__Generic] = ACTIONS(3654), - [anon_sym_typename] = ACTIONS(3654), - [anon_sym_asm] = ACTIONS(3654), - [anon_sym___asm__] = ACTIONS(3654), - [anon_sym___asm] = ACTIONS(3654), - [sym_number_literal] = ACTIONS(3656), - [anon_sym_L_SQUOTE] = ACTIONS(3656), - [anon_sym_u_SQUOTE] = ACTIONS(3656), - [anon_sym_U_SQUOTE] = ACTIONS(3656), - [anon_sym_u8_SQUOTE] = ACTIONS(3656), - [anon_sym_SQUOTE] = ACTIONS(3656), - [anon_sym_L_DQUOTE] = ACTIONS(3656), - [anon_sym_u_DQUOTE] = ACTIONS(3656), - [anon_sym_U_DQUOTE] = ACTIONS(3656), - [anon_sym_u8_DQUOTE] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(3656), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [anon_sym_NULL] = ACTIONS(3654), - [anon_sym_nullptr] = ACTIONS(3654), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3654), - [anon_sym_decltype] = ACTIONS(3654), - [anon_sym_explicit] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_module] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_template] = ACTIONS(3654), - [anon_sym_operator] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_static_assert] = ACTIONS(3654), - [anon_sym_concept] = ACTIONS(3654), - [anon_sym_co_return] = ACTIONS(3654), - [anon_sym_co_yield] = ACTIONS(3654), - [anon_sym_R_DQUOTE] = ACTIONS(3656), - [anon_sym_LR_DQUOTE] = ACTIONS(3656), - [anon_sym_uR_DQUOTE] = ACTIONS(3656), - [anon_sym_UR_DQUOTE] = ACTIONS(3656), - [anon_sym_u8R_DQUOTE] = ACTIONS(3656), - [anon_sym_co_await] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_requires] = ACTIONS(3654), - [anon_sym_CARET_CARET] = ACTIONS(3656), - [anon_sym_LBRACK_COLON] = ACTIONS(3656), - [sym_this] = ACTIONS(3654), + [STATE(643)] = { + [ts_builtin_sym_end] = ACTIONS(3492), + [sym_identifier] = ACTIONS(3490), + [aux_sym_preproc_include_token1] = ACTIONS(3490), + [aux_sym_preproc_def_token1] = ACTIONS(3490), + [aux_sym_preproc_if_token1] = ACTIONS(3490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3490), + [sym_preproc_directive] = ACTIONS(3490), + [anon_sym_LPAREN2] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP_AMP] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3490), + [anon_sym_typedef] = ACTIONS(3490), + [anon_sym_virtual] = ACTIONS(3490), + [anon_sym_extern] = ACTIONS(3490), + [anon_sym___attribute__] = ACTIONS(3490), + [anon_sym___attribute] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_COLON_COLON] = ACTIONS(3492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3492), + [anon_sym___declspec] = ACTIONS(3490), + [anon_sym___based] = ACTIONS(3490), + [anon_sym___cdecl] = ACTIONS(3490), + [anon_sym___clrcall] = ACTIONS(3490), + [anon_sym___stdcall] = ACTIONS(3490), + [anon_sym___fastcall] = ACTIONS(3490), + [anon_sym___thiscall] = ACTIONS(3490), + [anon_sym___vectorcall] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_signed] = ACTIONS(3490), + [anon_sym_unsigned] = ACTIONS(3490), + [anon_sym_long] = ACTIONS(3490), + [anon_sym_short] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_register] = ACTIONS(3490), + [anon_sym_inline] = ACTIONS(3490), + [anon_sym___inline] = ACTIONS(3490), + [anon_sym___inline__] = ACTIONS(3490), + [anon_sym___forceinline] = ACTIONS(3490), + [anon_sym_thread_local] = ACTIONS(3490), + [anon_sym___thread] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_constexpr] = ACTIONS(3490), + [anon_sym_volatile] = ACTIONS(3490), + [anon_sym_restrict] = ACTIONS(3490), + [anon_sym___restrict__] = ACTIONS(3490), + [anon_sym__Atomic] = ACTIONS(3490), + [anon_sym__Noreturn] = ACTIONS(3490), + [anon_sym_noreturn] = ACTIONS(3490), + [anon_sym__Nonnull] = ACTIONS(3490), + [anon_sym_mutable] = ACTIONS(3490), + [anon_sym_constinit] = ACTIONS(3490), + [anon_sym_consteval] = ACTIONS(3490), + [anon_sym_alignas] = ACTIONS(3490), + [anon_sym__Alignas] = ACTIONS(3490), + [sym_primitive_type] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_struct] = ACTIONS(3490), + [anon_sym_union] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_case] = ACTIONS(3490), + [anon_sym_default] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_goto] = ACTIONS(3490), + [anon_sym___try] = ACTIONS(3490), + [anon_sym___leave] = ACTIONS(3490), + [anon_sym_not] = ACTIONS(3490), + [anon_sym_compl] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_sizeof] = ACTIONS(3490), + [anon_sym___alignof__] = ACTIONS(3490), + [anon_sym___alignof] = ACTIONS(3490), + [anon_sym__alignof] = ACTIONS(3490), + [anon_sym_alignof] = ACTIONS(3490), + [anon_sym__Alignof] = ACTIONS(3490), + [anon_sym_offsetof] = ACTIONS(3490), + [anon_sym__Generic] = ACTIONS(3490), + [anon_sym_typename] = ACTIONS(3490), + [anon_sym_asm] = ACTIONS(3490), + [anon_sym___asm__] = ACTIONS(3490), + [anon_sym___asm] = ACTIONS(3490), + [sym_number_literal] = ACTIONS(3492), + [anon_sym_L_SQUOTE] = ACTIONS(3492), + [anon_sym_u_SQUOTE] = ACTIONS(3492), + [anon_sym_U_SQUOTE] = ACTIONS(3492), + [anon_sym_u8_SQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_L_DQUOTE] = ACTIONS(3492), + [anon_sym_u_DQUOTE] = ACTIONS(3492), + [anon_sym_U_DQUOTE] = ACTIONS(3492), + [anon_sym_u8_DQUOTE] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [anon_sym_NULL] = ACTIONS(3490), + [anon_sym_nullptr] = ACTIONS(3490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3490), + [anon_sym_decltype] = ACTIONS(3490), + [anon_sym_explicit] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_template] = ACTIONS(3490), + [anon_sym_operator] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_static_assert] = ACTIONS(3490), + [anon_sym_concept] = ACTIONS(3490), + [anon_sym_co_return] = ACTIONS(3490), + [anon_sym_co_yield] = ACTIONS(3490), + [anon_sym_R_DQUOTE] = ACTIONS(3492), + [anon_sym_LR_DQUOTE] = ACTIONS(3492), + [anon_sym_uR_DQUOTE] = ACTIONS(3492), + [anon_sym_UR_DQUOTE] = ACTIONS(3492), + [anon_sym_u8R_DQUOTE] = ACTIONS(3492), + [anon_sym_co_await] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_requires] = ACTIONS(3490), + [anon_sym_CARET_CARET] = ACTIONS(3492), + [anon_sym_LBRACK_COLON] = ACTIONS(3492), + [sym_this] = ACTIONS(3490), }, - [STATE(620)] = { - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_include_token1] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token2] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym___attribute] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym___cdecl] = ACTIONS(3556), - [anon_sym___clrcall] = ACTIONS(3556), - [anon_sym___stdcall] = ACTIONS(3556), - [anon_sym___fastcall] = ACTIONS(3556), - [anon_sym___thiscall] = ACTIONS(3556), - [anon_sym___vectorcall] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [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(3556), - [anon_sym__Alignas] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_else] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_case] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym___try] = ACTIONS(3556), - [anon_sym___leave] = ACTIONS(3556), - [anon_sym_not] = ACTIONS(3556), - [anon_sym_compl] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym___alignof__] = ACTIONS(3556), - [anon_sym___alignof] = ACTIONS(3556), - [anon_sym__alignof] = ACTIONS(3556), - [anon_sym_alignof] = ACTIONS(3556), - [anon_sym__Alignof] = ACTIONS(3556), - [anon_sym_offsetof] = ACTIONS(3556), - [anon_sym__Generic] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym___asm__] = ACTIONS(3556), - [anon_sym___asm] = ACTIONS(3556), - [sym_number_literal] = ACTIONS(3558), - [anon_sym_L_SQUOTE] = ACTIONS(3558), - [anon_sym_u_SQUOTE] = ACTIONS(3558), - [anon_sym_U_SQUOTE] = ACTIONS(3558), - [anon_sym_u8_SQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_L_DQUOTE] = ACTIONS(3558), - [anon_sym_u_DQUOTE] = ACTIONS(3558), - [anon_sym_U_DQUOTE] = ACTIONS(3558), - [anon_sym_u8_DQUOTE] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [anon_sym_NULL] = ACTIONS(3556), - [anon_sym_nullptr] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_export] = ACTIONS(3556), - [anon_sym_module] = ACTIONS(3556), - [anon_sym_import] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_delete] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_namespace] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), - [anon_sym_concept] = ACTIONS(3556), - [anon_sym_co_return] = ACTIONS(3556), - [anon_sym_co_yield] = ACTIONS(3556), - [anon_sym_R_DQUOTE] = ACTIONS(3558), - [anon_sym_LR_DQUOTE] = ACTIONS(3558), - [anon_sym_uR_DQUOTE] = ACTIONS(3558), - [anon_sym_UR_DQUOTE] = ACTIONS(3558), - [anon_sym_u8R_DQUOTE] = ACTIONS(3558), - [anon_sym_co_await] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_requires] = ACTIONS(3556), - [anon_sym_CARET_CARET] = ACTIONS(3558), - [anon_sym_LBRACK_COLON] = ACTIONS(3558), - [sym_this] = ACTIONS(3556), + [STATE(644)] = { + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_include_token1] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3494), + [aux_sym_preproc_if_token1] = ACTIONS(3494), + [aux_sym_preproc_if_token2] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3494), + [sym_preproc_directive] = ACTIONS(3494), + [anon_sym_LPAREN2] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3496), + [anon_sym_AMP] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym___extension__] = ACTIONS(3494), + [anon_sym_typedef] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym___attribute__] = ACTIONS(3494), + [anon_sym___attribute] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_COLON_COLON] = ACTIONS(3496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3496), + [anon_sym___declspec] = ACTIONS(3494), + [anon_sym___based] = ACTIONS(3494), + [anon_sym___cdecl] = ACTIONS(3494), + [anon_sym___clrcall] = ACTIONS(3494), + [anon_sym___stdcall] = ACTIONS(3494), + [anon_sym___fastcall] = ACTIONS(3494), + [anon_sym___thiscall] = ACTIONS(3494), + [anon_sym___vectorcall] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_signed] = ACTIONS(3494), + [anon_sym_unsigned] = ACTIONS(3494), + [anon_sym_long] = ACTIONS(3494), + [anon_sym_short] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_register] = ACTIONS(3494), + [anon_sym_inline] = ACTIONS(3494), + [anon_sym___inline] = ACTIONS(3494), + [anon_sym___inline__] = ACTIONS(3494), + [anon_sym___forceinline] = ACTIONS(3494), + [anon_sym_thread_local] = ACTIONS(3494), + [anon_sym___thread] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_constexpr] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_restrict] = ACTIONS(3494), + [anon_sym___restrict__] = ACTIONS(3494), + [anon_sym__Atomic] = ACTIONS(3494), + [anon_sym__Noreturn] = ACTIONS(3494), + [anon_sym_noreturn] = ACTIONS(3494), + [anon_sym__Nonnull] = ACTIONS(3494), + [anon_sym_mutable] = ACTIONS(3494), + [anon_sym_constinit] = ACTIONS(3494), + [anon_sym_consteval] = ACTIONS(3494), + [anon_sym_alignas] = ACTIONS(3494), + [anon_sym__Alignas] = ACTIONS(3494), + [sym_primitive_type] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_union] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_else] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_case] = ACTIONS(3494), + [anon_sym_default] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_goto] = ACTIONS(3494), + [anon_sym___try] = ACTIONS(3494), + [anon_sym___leave] = ACTIONS(3494), + [anon_sym_not] = ACTIONS(3494), + [anon_sym_compl] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_sizeof] = ACTIONS(3494), + [anon_sym___alignof__] = ACTIONS(3494), + [anon_sym___alignof] = ACTIONS(3494), + [anon_sym__alignof] = ACTIONS(3494), + [anon_sym_alignof] = ACTIONS(3494), + [anon_sym__Alignof] = ACTIONS(3494), + [anon_sym_offsetof] = ACTIONS(3494), + [anon_sym__Generic] = ACTIONS(3494), + [anon_sym_typename] = ACTIONS(3494), + [anon_sym_asm] = ACTIONS(3494), + [anon_sym___asm__] = ACTIONS(3494), + [anon_sym___asm] = ACTIONS(3494), + [sym_number_literal] = ACTIONS(3496), + [anon_sym_L_SQUOTE] = ACTIONS(3496), + [anon_sym_u_SQUOTE] = ACTIONS(3496), + [anon_sym_U_SQUOTE] = ACTIONS(3496), + [anon_sym_u8_SQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_L_DQUOTE] = ACTIONS(3496), + [anon_sym_u_DQUOTE] = ACTIONS(3496), + [anon_sym_U_DQUOTE] = ACTIONS(3496), + [anon_sym_u8_DQUOTE] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [anon_sym_NULL] = ACTIONS(3494), + [anon_sym_nullptr] = ACTIONS(3494), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3494), + [anon_sym_decltype] = ACTIONS(3494), + [anon_sym_explicit] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_template] = ACTIONS(3494), + [anon_sym_operator] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_static_assert] = ACTIONS(3494), + [anon_sym_concept] = ACTIONS(3494), + [anon_sym_co_return] = ACTIONS(3494), + [anon_sym_co_yield] = ACTIONS(3494), + [anon_sym_R_DQUOTE] = ACTIONS(3496), + [anon_sym_LR_DQUOTE] = ACTIONS(3496), + [anon_sym_uR_DQUOTE] = ACTIONS(3496), + [anon_sym_UR_DQUOTE] = ACTIONS(3496), + [anon_sym_u8R_DQUOTE] = ACTIONS(3496), + [anon_sym_co_await] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_requires] = ACTIONS(3494), + [anon_sym_CARET_CARET] = ACTIONS(3496), + [anon_sym_LBRACK_COLON] = ACTIONS(3496), + [sym_this] = ACTIONS(3494), }, - [STATE(621)] = { - [sym_identifier] = ACTIONS(3666), - [aux_sym_preproc_include_token1] = ACTIONS(3666), - [aux_sym_preproc_def_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token2] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), - [sym_preproc_directive] = ACTIONS(3666), - [anon_sym_LPAREN2] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym___extension__] = ACTIONS(3666), - [anon_sym_typedef] = ACTIONS(3666), - [anon_sym_virtual] = ACTIONS(3666), - [anon_sym_extern] = ACTIONS(3666), - [anon_sym___attribute__] = ACTIONS(3666), - [anon_sym___attribute] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_COLON_COLON] = ACTIONS(3668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), - [anon_sym___declspec] = ACTIONS(3666), - [anon_sym___based] = ACTIONS(3666), - [anon_sym___cdecl] = ACTIONS(3666), - [anon_sym___clrcall] = ACTIONS(3666), - [anon_sym___stdcall] = ACTIONS(3666), - [anon_sym___fastcall] = ACTIONS(3666), - [anon_sym___thiscall] = ACTIONS(3666), - [anon_sym___vectorcall] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_signed] = ACTIONS(3666), - [anon_sym_unsigned] = ACTIONS(3666), - [anon_sym_long] = ACTIONS(3666), - [anon_sym_short] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_register] = ACTIONS(3666), - [anon_sym_inline] = ACTIONS(3666), - [anon_sym___inline] = ACTIONS(3666), - [anon_sym___inline__] = ACTIONS(3666), - [anon_sym___forceinline] = ACTIONS(3666), - [anon_sym_thread_local] = ACTIONS(3666), - [anon_sym___thread] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_constexpr] = ACTIONS(3666), - [anon_sym_volatile] = ACTIONS(3666), - [anon_sym_restrict] = ACTIONS(3666), - [anon_sym___restrict__] = ACTIONS(3666), - [anon_sym__Atomic] = ACTIONS(3666), - [anon_sym__Noreturn] = ACTIONS(3666), - [anon_sym_noreturn] = ACTIONS(3666), - [anon_sym__Nonnull] = ACTIONS(3666), - [anon_sym_mutable] = ACTIONS(3666), - [anon_sym_constinit] = ACTIONS(3666), - [anon_sym_consteval] = ACTIONS(3666), - [anon_sym_alignas] = ACTIONS(3666), - [anon_sym__Alignas] = ACTIONS(3666), - [sym_primitive_type] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_union] = ACTIONS(3666), - [anon_sym_if] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_case] = ACTIONS(3666), - [anon_sym_default] = ACTIONS(3666), - [anon_sym_while] = ACTIONS(3666), - [anon_sym_do] = ACTIONS(3666), - [anon_sym_for] = ACTIONS(3666), - [anon_sym_return] = ACTIONS(3666), - [anon_sym_break] = ACTIONS(3666), - [anon_sym_continue] = ACTIONS(3666), - [anon_sym_goto] = ACTIONS(3666), - [anon_sym___try] = ACTIONS(3666), - [anon_sym___leave] = ACTIONS(3666), - [anon_sym_not] = ACTIONS(3666), - [anon_sym_compl] = ACTIONS(3666), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_sizeof] = ACTIONS(3666), - [anon_sym___alignof__] = ACTIONS(3666), - [anon_sym___alignof] = ACTIONS(3666), - [anon_sym__alignof] = ACTIONS(3666), - [anon_sym_alignof] = ACTIONS(3666), - [anon_sym__Alignof] = ACTIONS(3666), - [anon_sym_offsetof] = ACTIONS(3666), - [anon_sym__Generic] = ACTIONS(3666), - [anon_sym_typename] = ACTIONS(3666), - [anon_sym_asm] = ACTIONS(3666), - [anon_sym___asm__] = ACTIONS(3666), - [anon_sym___asm] = ACTIONS(3666), - [sym_number_literal] = ACTIONS(3668), - [anon_sym_L_SQUOTE] = ACTIONS(3668), - [anon_sym_u_SQUOTE] = ACTIONS(3668), - [anon_sym_U_SQUOTE] = ACTIONS(3668), - [anon_sym_u8_SQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3668), - [anon_sym_L_DQUOTE] = ACTIONS(3668), - [anon_sym_u_DQUOTE] = ACTIONS(3668), - [anon_sym_U_DQUOTE] = ACTIONS(3668), - [anon_sym_u8_DQUOTE] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(3668), - [sym_true] = ACTIONS(3666), - [sym_false] = ACTIONS(3666), - [anon_sym_NULL] = ACTIONS(3666), - [anon_sym_nullptr] = ACTIONS(3666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3666), - [anon_sym_decltype] = ACTIONS(3666), - [anon_sym_explicit] = ACTIONS(3666), - [anon_sym_export] = ACTIONS(3666), - [anon_sym_module] = ACTIONS(3666), - [anon_sym_import] = ACTIONS(3666), - [anon_sym_template] = ACTIONS(3666), - [anon_sym_operator] = ACTIONS(3666), - [anon_sym_try] = ACTIONS(3666), - [anon_sym_delete] = ACTIONS(3666), - [anon_sym_throw] = ACTIONS(3666), - [anon_sym_namespace] = ACTIONS(3666), - [anon_sym_static_assert] = ACTIONS(3666), - [anon_sym_concept] = ACTIONS(3666), - [anon_sym_co_return] = ACTIONS(3666), - [anon_sym_co_yield] = ACTIONS(3666), - [anon_sym_R_DQUOTE] = ACTIONS(3668), - [anon_sym_LR_DQUOTE] = ACTIONS(3668), - [anon_sym_uR_DQUOTE] = ACTIONS(3668), - [anon_sym_UR_DQUOTE] = ACTIONS(3668), - [anon_sym_u8R_DQUOTE] = ACTIONS(3668), - [anon_sym_co_await] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_requires] = ACTIONS(3666), - [anon_sym_CARET_CARET] = ACTIONS(3668), - [anon_sym_LBRACK_COLON] = ACTIONS(3668), - [sym_this] = ACTIONS(3666), + [STATE(645)] = { + [sym_identifier] = ACTIONS(3498), + [aux_sym_preproc_include_token1] = ACTIONS(3498), + [aux_sym_preproc_def_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token2] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3498), + [sym_preproc_directive] = ACTIONS(3498), + [anon_sym_LPAREN2] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3500), + [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym___extension__] = ACTIONS(3498), + [anon_sym_typedef] = ACTIONS(3498), + [anon_sym_virtual] = ACTIONS(3498), + [anon_sym_extern] = ACTIONS(3498), + [anon_sym___attribute__] = ACTIONS(3498), + [anon_sym___attribute] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_COLON_COLON] = ACTIONS(3500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3500), + [anon_sym___declspec] = ACTIONS(3498), + [anon_sym___based] = ACTIONS(3498), + [anon_sym___cdecl] = ACTIONS(3498), + [anon_sym___clrcall] = ACTIONS(3498), + [anon_sym___stdcall] = ACTIONS(3498), + [anon_sym___fastcall] = ACTIONS(3498), + [anon_sym___thiscall] = ACTIONS(3498), + [anon_sym___vectorcall] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_signed] = ACTIONS(3498), + [anon_sym_unsigned] = ACTIONS(3498), + [anon_sym_long] = ACTIONS(3498), + [anon_sym_short] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_register] = ACTIONS(3498), + [anon_sym_inline] = ACTIONS(3498), + [anon_sym___inline] = ACTIONS(3498), + [anon_sym___inline__] = ACTIONS(3498), + [anon_sym___forceinline] = ACTIONS(3498), + [anon_sym_thread_local] = ACTIONS(3498), + [anon_sym___thread] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_constexpr] = ACTIONS(3498), + [anon_sym_volatile] = ACTIONS(3498), + [anon_sym_restrict] = ACTIONS(3498), + [anon_sym___restrict__] = ACTIONS(3498), + [anon_sym__Atomic] = ACTIONS(3498), + [anon_sym__Noreturn] = ACTIONS(3498), + [anon_sym_noreturn] = ACTIONS(3498), + [anon_sym__Nonnull] = ACTIONS(3498), + [anon_sym_mutable] = ACTIONS(3498), + [anon_sym_constinit] = ACTIONS(3498), + [anon_sym_consteval] = ACTIONS(3498), + [anon_sym_alignas] = ACTIONS(3498), + [anon_sym__Alignas] = ACTIONS(3498), + [sym_primitive_type] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_struct] = ACTIONS(3498), + [anon_sym_union] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_else] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_case] = ACTIONS(3498), + [anon_sym_default] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_goto] = ACTIONS(3498), + [anon_sym___try] = ACTIONS(3498), + [anon_sym___leave] = ACTIONS(3498), + [anon_sym_not] = ACTIONS(3498), + [anon_sym_compl] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_sizeof] = ACTIONS(3498), + [anon_sym___alignof__] = ACTIONS(3498), + [anon_sym___alignof] = ACTIONS(3498), + [anon_sym__alignof] = ACTIONS(3498), + [anon_sym_alignof] = ACTIONS(3498), + [anon_sym__Alignof] = ACTIONS(3498), + [anon_sym_offsetof] = ACTIONS(3498), + [anon_sym__Generic] = ACTIONS(3498), + [anon_sym_typename] = ACTIONS(3498), + [anon_sym_asm] = ACTIONS(3498), + [anon_sym___asm__] = ACTIONS(3498), + [anon_sym___asm] = ACTIONS(3498), + [sym_number_literal] = ACTIONS(3500), + [anon_sym_L_SQUOTE] = ACTIONS(3500), + [anon_sym_u_SQUOTE] = ACTIONS(3500), + [anon_sym_U_SQUOTE] = ACTIONS(3500), + [anon_sym_u8_SQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_L_DQUOTE] = ACTIONS(3500), + [anon_sym_u_DQUOTE] = ACTIONS(3500), + [anon_sym_U_DQUOTE] = ACTIONS(3500), + [anon_sym_u8_DQUOTE] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [anon_sym_NULL] = ACTIONS(3498), + [anon_sym_nullptr] = ACTIONS(3498), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3498), + [anon_sym_decltype] = ACTIONS(3498), + [anon_sym_explicit] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_template] = ACTIONS(3498), + [anon_sym_operator] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_static_assert] = ACTIONS(3498), + [anon_sym_concept] = ACTIONS(3498), + [anon_sym_co_return] = ACTIONS(3498), + [anon_sym_co_yield] = ACTIONS(3498), + [anon_sym_R_DQUOTE] = ACTIONS(3500), + [anon_sym_LR_DQUOTE] = ACTIONS(3500), + [anon_sym_uR_DQUOTE] = ACTIONS(3500), + [anon_sym_UR_DQUOTE] = ACTIONS(3500), + [anon_sym_u8R_DQUOTE] = ACTIONS(3500), + [anon_sym_co_await] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_requires] = ACTIONS(3498), + [anon_sym_CARET_CARET] = ACTIONS(3500), + [anon_sym_LBRACK_COLON] = ACTIONS(3500), + [sym_this] = ACTIONS(3498), }, - [STATE(622)] = { - [ts_builtin_sym_end] = ACTIONS(3624), - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), + [STATE(646)] = { + [sym_identifier] = ACTIONS(3502), + [aux_sym_preproc_include_token1] = ACTIONS(3502), + [aux_sym_preproc_def_token1] = ACTIONS(3502), + [aux_sym_preproc_if_token1] = ACTIONS(3502), + [aux_sym_preproc_if_token2] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [sym_preproc_directive] = ACTIONS(3502), + [anon_sym_LPAREN2] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3504), + [anon_sym_AMP] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym___extension__] = ACTIONS(3502), + [anon_sym_typedef] = ACTIONS(3502), + [anon_sym_virtual] = ACTIONS(3502), + [anon_sym_extern] = ACTIONS(3502), + [anon_sym___attribute__] = ACTIONS(3502), + [anon_sym___attribute] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_COLON_COLON] = ACTIONS(3504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3504), + [anon_sym___declspec] = ACTIONS(3502), + [anon_sym___based] = ACTIONS(3502), + [anon_sym___cdecl] = ACTIONS(3502), + [anon_sym___clrcall] = ACTIONS(3502), + [anon_sym___stdcall] = ACTIONS(3502), + [anon_sym___fastcall] = ACTIONS(3502), + [anon_sym___thiscall] = ACTIONS(3502), + [anon_sym___vectorcall] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_signed] = ACTIONS(3502), + [anon_sym_unsigned] = ACTIONS(3502), + [anon_sym_long] = ACTIONS(3502), + [anon_sym_short] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_register] = ACTIONS(3502), + [anon_sym_inline] = ACTIONS(3502), + [anon_sym___inline] = ACTIONS(3502), + [anon_sym___inline__] = ACTIONS(3502), + [anon_sym___forceinline] = ACTIONS(3502), + [anon_sym_thread_local] = ACTIONS(3502), + [anon_sym___thread] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_constexpr] = ACTIONS(3502), + [anon_sym_volatile] = ACTIONS(3502), + [anon_sym_restrict] = ACTIONS(3502), + [anon_sym___restrict__] = ACTIONS(3502), + [anon_sym__Atomic] = ACTIONS(3502), + [anon_sym__Noreturn] = ACTIONS(3502), + [anon_sym_noreturn] = ACTIONS(3502), + [anon_sym__Nonnull] = ACTIONS(3502), + [anon_sym_mutable] = ACTIONS(3502), + [anon_sym_constinit] = ACTIONS(3502), + [anon_sym_consteval] = ACTIONS(3502), + [anon_sym_alignas] = ACTIONS(3502), + [anon_sym__Alignas] = ACTIONS(3502), + [sym_primitive_type] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_struct] = ACTIONS(3502), + [anon_sym_union] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_else] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_case] = ACTIONS(3502), + [anon_sym_default] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_goto] = ACTIONS(3502), + [anon_sym___try] = ACTIONS(3502), + [anon_sym___leave] = ACTIONS(3502), + [anon_sym_not] = ACTIONS(3502), + [anon_sym_compl] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_PLUS_PLUS] = ACTIONS(3504), + [anon_sym_sizeof] = ACTIONS(3502), + [anon_sym___alignof__] = ACTIONS(3502), + [anon_sym___alignof] = ACTIONS(3502), + [anon_sym__alignof] = ACTIONS(3502), + [anon_sym_alignof] = ACTIONS(3502), + [anon_sym__Alignof] = ACTIONS(3502), + [anon_sym_offsetof] = ACTIONS(3502), + [anon_sym__Generic] = ACTIONS(3502), + [anon_sym_typename] = ACTIONS(3502), + [anon_sym_asm] = ACTIONS(3502), + [anon_sym___asm__] = ACTIONS(3502), + [anon_sym___asm] = ACTIONS(3502), + [sym_number_literal] = ACTIONS(3504), + [anon_sym_L_SQUOTE] = ACTIONS(3504), + [anon_sym_u_SQUOTE] = ACTIONS(3504), + [anon_sym_U_SQUOTE] = ACTIONS(3504), + [anon_sym_u8_SQUOTE] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3504), + [anon_sym_L_DQUOTE] = ACTIONS(3504), + [anon_sym_u_DQUOTE] = ACTIONS(3504), + [anon_sym_U_DQUOTE] = ACTIONS(3504), + [anon_sym_u8_DQUOTE] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [anon_sym_NULL] = ACTIONS(3502), + [anon_sym_nullptr] = ACTIONS(3502), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3502), + [anon_sym_decltype] = ACTIONS(3502), + [anon_sym_explicit] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_template] = ACTIONS(3502), + [anon_sym_operator] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_static_assert] = ACTIONS(3502), + [anon_sym_concept] = ACTIONS(3502), + [anon_sym_co_return] = ACTIONS(3502), + [anon_sym_co_yield] = ACTIONS(3502), + [anon_sym_R_DQUOTE] = ACTIONS(3504), + [anon_sym_LR_DQUOTE] = ACTIONS(3504), + [anon_sym_uR_DQUOTE] = ACTIONS(3504), + [anon_sym_UR_DQUOTE] = ACTIONS(3504), + [anon_sym_u8R_DQUOTE] = ACTIONS(3504), + [anon_sym_co_await] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_requires] = ACTIONS(3502), + [anon_sym_CARET_CARET] = ACTIONS(3504), + [anon_sym_LBRACK_COLON] = ACTIONS(3504), + [sym_this] = ACTIONS(3502), }, - [STATE(623)] = { - [sym_identifier] = ACTIONS(3670), - [aux_sym_preproc_include_token1] = ACTIONS(3670), - [aux_sym_preproc_def_token1] = ACTIONS(3670), - [aux_sym_preproc_if_token1] = ACTIONS(3670), - [aux_sym_preproc_if_token2] = ACTIONS(3670), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3670), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3670), - [sym_preproc_directive] = ACTIONS(3670), - [anon_sym_LPAREN2] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(3672), - [anon_sym_TILDE] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym___extension__] = ACTIONS(3670), - [anon_sym_typedef] = ACTIONS(3670), - [anon_sym_virtual] = ACTIONS(3670), - [anon_sym_extern] = ACTIONS(3670), - [anon_sym___attribute__] = ACTIONS(3670), - [anon_sym___attribute] = ACTIONS(3670), - [anon_sym_using] = ACTIONS(3670), - [anon_sym_COLON_COLON] = ACTIONS(3672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3672), - [anon_sym___declspec] = ACTIONS(3670), - [anon_sym___based] = ACTIONS(3670), - [anon_sym___cdecl] = ACTIONS(3670), - [anon_sym___clrcall] = ACTIONS(3670), - [anon_sym___stdcall] = ACTIONS(3670), - [anon_sym___fastcall] = ACTIONS(3670), - [anon_sym___thiscall] = ACTIONS(3670), - [anon_sym___vectorcall] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_signed] = ACTIONS(3670), - [anon_sym_unsigned] = ACTIONS(3670), - [anon_sym_long] = ACTIONS(3670), - [anon_sym_short] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3670), - [anon_sym_static] = ACTIONS(3670), - [anon_sym_register] = ACTIONS(3670), - [anon_sym_inline] = ACTIONS(3670), - [anon_sym___inline] = ACTIONS(3670), - [anon_sym___inline__] = ACTIONS(3670), - [anon_sym___forceinline] = ACTIONS(3670), - [anon_sym_thread_local] = ACTIONS(3670), - [anon_sym___thread] = ACTIONS(3670), - [anon_sym_const] = ACTIONS(3670), - [anon_sym_constexpr] = ACTIONS(3670), - [anon_sym_volatile] = ACTIONS(3670), - [anon_sym_restrict] = ACTIONS(3670), - [anon_sym___restrict__] = ACTIONS(3670), - [anon_sym__Atomic] = ACTIONS(3670), - [anon_sym__Noreturn] = ACTIONS(3670), - [anon_sym_noreturn] = ACTIONS(3670), - [anon_sym__Nonnull] = ACTIONS(3670), - [anon_sym_mutable] = ACTIONS(3670), - [anon_sym_constinit] = ACTIONS(3670), - [anon_sym_consteval] = ACTIONS(3670), - [anon_sym_alignas] = ACTIONS(3670), - [anon_sym__Alignas] = ACTIONS(3670), - [sym_primitive_type] = ACTIONS(3670), - [anon_sym_enum] = ACTIONS(3670), - [anon_sym_class] = ACTIONS(3670), - [anon_sym_struct] = ACTIONS(3670), - [anon_sym_union] = ACTIONS(3670), - [anon_sym_if] = ACTIONS(3670), - [anon_sym_else] = ACTIONS(3670), - [anon_sym_switch] = ACTIONS(3670), - [anon_sym_case] = ACTIONS(3670), - [anon_sym_default] = ACTIONS(3670), - [anon_sym_while] = ACTIONS(3670), - [anon_sym_do] = ACTIONS(3670), - [anon_sym_for] = ACTIONS(3670), - [anon_sym_return] = ACTIONS(3670), - [anon_sym_break] = ACTIONS(3670), - [anon_sym_continue] = ACTIONS(3670), - [anon_sym_goto] = ACTIONS(3670), - [anon_sym___try] = ACTIONS(3670), - [anon_sym___leave] = ACTIONS(3670), - [anon_sym_not] = ACTIONS(3670), - [anon_sym_compl] = ACTIONS(3670), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_sizeof] = ACTIONS(3670), - [anon_sym___alignof__] = ACTIONS(3670), - [anon_sym___alignof] = ACTIONS(3670), - [anon_sym__alignof] = ACTIONS(3670), - [anon_sym_alignof] = ACTIONS(3670), - [anon_sym__Alignof] = ACTIONS(3670), - [anon_sym_offsetof] = ACTIONS(3670), - [anon_sym__Generic] = ACTIONS(3670), - [anon_sym_typename] = ACTIONS(3670), - [anon_sym_asm] = ACTIONS(3670), - [anon_sym___asm__] = ACTIONS(3670), - [anon_sym___asm] = ACTIONS(3670), - [sym_number_literal] = ACTIONS(3672), - [anon_sym_L_SQUOTE] = ACTIONS(3672), - [anon_sym_u_SQUOTE] = ACTIONS(3672), - [anon_sym_U_SQUOTE] = ACTIONS(3672), - [anon_sym_u8_SQUOTE] = ACTIONS(3672), - [anon_sym_SQUOTE] = ACTIONS(3672), - [anon_sym_L_DQUOTE] = ACTIONS(3672), - [anon_sym_u_DQUOTE] = ACTIONS(3672), - [anon_sym_U_DQUOTE] = ACTIONS(3672), - [anon_sym_u8_DQUOTE] = ACTIONS(3672), - [anon_sym_DQUOTE] = ACTIONS(3672), - [sym_true] = ACTIONS(3670), - [sym_false] = ACTIONS(3670), - [anon_sym_NULL] = ACTIONS(3670), - [anon_sym_nullptr] = ACTIONS(3670), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3670), - [anon_sym_decltype] = ACTIONS(3670), - [anon_sym_explicit] = ACTIONS(3670), - [anon_sym_export] = ACTIONS(3670), - [anon_sym_module] = ACTIONS(3670), - [anon_sym_import] = ACTIONS(3670), - [anon_sym_template] = ACTIONS(3670), - [anon_sym_operator] = ACTIONS(3670), - [anon_sym_try] = ACTIONS(3670), - [anon_sym_delete] = ACTIONS(3670), - [anon_sym_throw] = ACTIONS(3670), - [anon_sym_namespace] = ACTIONS(3670), - [anon_sym_static_assert] = ACTIONS(3670), - [anon_sym_concept] = ACTIONS(3670), - [anon_sym_co_return] = ACTIONS(3670), - [anon_sym_co_yield] = ACTIONS(3670), - [anon_sym_R_DQUOTE] = ACTIONS(3672), - [anon_sym_LR_DQUOTE] = ACTIONS(3672), - [anon_sym_uR_DQUOTE] = ACTIONS(3672), - [anon_sym_UR_DQUOTE] = ACTIONS(3672), - [anon_sym_u8R_DQUOTE] = ACTIONS(3672), - [anon_sym_co_await] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3670), - [anon_sym_requires] = ACTIONS(3670), - [anon_sym_CARET_CARET] = ACTIONS(3672), - [anon_sym_LBRACK_COLON] = ACTIONS(3672), - [sym_this] = ACTIONS(3670), + [STATE(647)] = { + [sym_identifier] = ACTIONS(3610), + [aux_sym_preproc_include_token1] = ACTIONS(3610), + [aux_sym_preproc_def_token1] = ACTIONS(3610), + [aux_sym_preproc_if_token1] = ACTIONS(3610), + [aux_sym_preproc_if_token2] = ACTIONS(3610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3610), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3610), + [sym_preproc_directive] = ACTIONS(3610), + [anon_sym_LPAREN2] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_AMP] = ACTIONS(3610), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym___extension__] = ACTIONS(3610), + [anon_sym_typedef] = ACTIONS(3610), + [anon_sym_virtual] = ACTIONS(3610), + [anon_sym_extern] = ACTIONS(3610), + [anon_sym___attribute__] = ACTIONS(3610), + [anon_sym___attribute] = ACTIONS(3610), + [anon_sym_using] = ACTIONS(3610), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3612), + [anon_sym___declspec] = ACTIONS(3610), + [anon_sym___based] = ACTIONS(3610), + [anon_sym___cdecl] = ACTIONS(3610), + [anon_sym___clrcall] = ACTIONS(3610), + [anon_sym___stdcall] = ACTIONS(3610), + [anon_sym___fastcall] = ACTIONS(3610), + [anon_sym___thiscall] = ACTIONS(3610), + [anon_sym___vectorcall] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_signed] = ACTIONS(3610), + [anon_sym_unsigned] = ACTIONS(3610), + [anon_sym_long] = ACTIONS(3610), + [anon_sym_short] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3610), + [anon_sym_static] = ACTIONS(3610), + [anon_sym_register] = ACTIONS(3610), + [anon_sym_inline] = ACTIONS(3610), + [anon_sym___inline] = ACTIONS(3610), + [anon_sym___inline__] = ACTIONS(3610), + [anon_sym___forceinline] = ACTIONS(3610), + [anon_sym_thread_local] = ACTIONS(3610), + [anon_sym___thread] = ACTIONS(3610), + [anon_sym_const] = ACTIONS(3610), + [anon_sym_constexpr] = ACTIONS(3610), + [anon_sym_volatile] = ACTIONS(3610), + [anon_sym_restrict] = ACTIONS(3610), + [anon_sym___restrict__] = ACTIONS(3610), + [anon_sym__Atomic] = ACTIONS(3610), + [anon_sym__Noreturn] = ACTIONS(3610), + [anon_sym_noreturn] = ACTIONS(3610), + [anon_sym__Nonnull] = ACTIONS(3610), + [anon_sym_mutable] = ACTIONS(3610), + [anon_sym_constinit] = ACTIONS(3610), + [anon_sym_consteval] = ACTIONS(3610), + [anon_sym_alignas] = ACTIONS(3610), + [anon_sym__Alignas] = ACTIONS(3610), + [sym_primitive_type] = ACTIONS(3610), + [anon_sym_enum] = ACTIONS(3610), + [anon_sym_class] = ACTIONS(3610), + [anon_sym_struct] = ACTIONS(3610), + [anon_sym_union] = ACTIONS(3610), + [anon_sym_if] = ACTIONS(3610), + [anon_sym_else] = ACTIONS(3610), + [anon_sym_switch] = ACTIONS(3610), + [anon_sym_case] = ACTIONS(3610), + [anon_sym_default] = ACTIONS(3610), + [anon_sym_while] = ACTIONS(3610), + [anon_sym_do] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3610), + [anon_sym_break] = ACTIONS(3610), + [anon_sym_continue] = ACTIONS(3610), + [anon_sym_goto] = ACTIONS(3610), + [anon_sym___try] = ACTIONS(3610), + [anon_sym___leave] = ACTIONS(3610), + [anon_sym_not] = ACTIONS(3610), + [anon_sym_compl] = ACTIONS(3610), + [anon_sym_DASH_DASH] = ACTIONS(3612), + [anon_sym_PLUS_PLUS] = ACTIONS(3612), + [anon_sym_sizeof] = ACTIONS(3610), + [anon_sym___alignof__] = ACTIONS(3610), + [anon_sym___alignof] = ACTIONS(3610), + [anon_sym__alignof] = ACTIONS(3610), + [anon_sym_alignof] = ACTIONS(3610), + [anon_sym__Alignof] = ACTIONS(3610), + [anon_sym_offsetof] = ACTIONS(3610), + [anon_sym__Generic] = ACTIONS(3610), + [anon_sym_typename] = ACTIONS(3610), + [anon_sym_asm] = ACTIONS(3610), + [anon_sym___asm__] = ACTIONS(3610), + [anon_sym___asm] = ACTIONS(3610), + [sym_number_literal] = ACTIONS(3612), + [anon_sym_L_SQUOTE] = ACTIONS(3612), + [anon_sym_u_SQUOTE] = ACTIONS(3612), + [anon_sym_U_SQUOTE] = ACTIONS(3612), + [anon_sym_u8_SQUOTE] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(3612), + [anon_sym_L_DQUOTE] = ACTIONS(3612), + [anon_sym_u_DQUOTE] = ACTIONS(3612), + [anon_sym_U_DQUOTE] = ACTIONS(3612), + [anon_sym_u8_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [sym_true] = ACTIONS(3610), + [sym_false] = ACTIONS(3610), + [anon_sym_NULL] = ACTIONS(3610), + [anon_sym_nullptr] = ACTIONS(3610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3610), + [anon_sym_decltype] = ACTIONS(3610), + [anon_sym_explicit] = ACTIONS(3610), + [anon_sym_export] = ACTIONS(3610), + [anon_sym_module] = ACTIONS(3610), + [anon_sym_import] = ACTIONS(3610), + [anon_sym_template] = ACTIONS(3610), + [anon_sym_operator] = ACTIONS(3610), + [anon_sym_try] = ACTIONS(3610), + [anon_sym_delete] = ACTIONS(3610), + [anon_sym_throw] = ACTIONS(3610), + [anon_sym_namespace] = ACTIONS(3610), + [anon_sym_static_assert] = ACTIONS(3610), + [anon_sym_concept] = ACTIONS(3610), + [anon_sym_co_return] = ACTIONS(3610), + [anon_sym_co_yield] = ACTIONS(3610), + [anon_sym_R_DQUOTE] = ACTIONS(3612), + [anon_sym_LR_DQUOTE] = ACTIONS(3612), + [anon_sym_uR_DQUOTE] = ACTIONS(3612), + [anon_sym_UR_DQUOTE] = ACTIONS(3612), + [anon_sym_u8R_DQUOTE] = ACTIONS(3612), + [anon_sym_co_await] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3610), + [anon_sym_requires] = ACTIONS(3610), + [anon_sym_CARET_CARET] = ACTIONS(3612), + [anon_sym_LBRACK_COLON] = ACTIONS(3612), + [sym_this] = ACTIONS(3610), }, - [STATE(624)] = { - [sym_identifier] = ACTIONS(3674), - [aux_sym_preproc_include_token1] = ACTIONS(3674), - [aux_sym_preproc_def_token1] = ACTIONS(3674), - [aux_sym_preproc_if_token1] = ACTIONS(3674), - [aux_sym_preproc_if_token2] = ACTIONS(3674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3674), - [sym_preproc_directive] = ACTIONS(3674), - [anon_sym_LPAREN2] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3676), - [anon_sym_TILDE] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym___extension__] = ACTIONS(3674), - [anon_sym_typedef] = ACTIONS(3674), - [anon_sym_virtual] = ACTIONS(3674), - [anon_sym_extern] = ACTIONS(3674), - [anon_sym___attribute__] = ACTIONS(3674), - [anon_sym___attribute] = ACTIONS(3674), - [anon_sym_using] = ACTIONS(3674), - [anon_sym_COLON_COLON] = ACTIONS(3676), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3676), - [anon_sym___declspec] = ACTIONS(3674), - [anon_sym___based] = ACTIONS(3674), - [anon_sym___cdecl] = ACTIONS(3674), - [anon_sym___clrcall] = ACTIONS(3674), - [anon_sym___stdcall] = ACTIONS(3674), - [anon_sym___fastcall] = ACTIONS(3674), - [anon_sym___thiscall] = ACTIONS(3674), - [anon_sym___vectorcall] = ACTIONS(3674), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_signed] = ACTIONS(3674), - [anon_sym_unsigned] = ACTIONS(3674), - [anon_sym_long] = ACTIONS(3674), - [anon_sym_short] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_static] = ACTIONS(3674), - [anon_sym_register] = ACTIONS(3674), - [anon_sym_inline] = ACTIONS(3674), - [anon_sym___inline] = ACTIONS(3674), - [anon_sym___inline__] = ACTIONS(3674), - [anon_sym___forceinline] = ACTIONS(3674), - [anon_sym_thread_local] = ACTIONS(3674), - [anon_sym___thread] = ACTIONS(3674), - [anon_sym_const] = ACTIONS(3674), - [anon_sym_constexpr] = ACTIONS(3674), - [anon_sym_volatile] = ACTIONS(3674), - [anon_sym_restrict] = ACTIONS(3674), - [anon_sym___restrict__] = ACTIONS(3674), - [anon_sym__Atomic] = ACTIONS(3674), - [anon_sym__Noreturn] = ACTIONS(3674), - [anon_sym_noreturn] = ACTIONS(3674), - [anon_sym__Nonnull] = ACTIONS(3674), - [anon_sym_mutable] = ACTIONS(3674), - [anon_sym_constinit] = ACTIONS(3674), - [anon_sym_consteval] = ACTIONS(3674), - [anon_sym_alignas] = ACTIONS(3674), - [anon_sym__Alignas] = ACTIONS(3674), - [sym_primitive_type] = ACTIONS(3674), - [anon_sym_enum] = ACTIONS(3674), - [anon_sym_class] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(3674), - [anon_sym_union] = ACTIONS(3674), - [anon_sym_if] = ACTIONS(3674), - [anon_sym_else] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_case] = ACTIONS(3674), - [anon_sym_default] = ACTIONS(3674), - [anon_sym_while] = ACTIONS(3674), - [anon_sym_do] = ACTIONS(3674), - [anon_sym_for] = ACTIONS(3674), - [anon_sym_return] = ACTIONS(3674), - [anon_sym_break] = ACTIONS(3674), - [anon_sym_continue] = ACTIONS(3674), - [anon_sym_goto] = ACTIONS(3674), - [anon_sym___try] = ACTIONS(3674), - [anon_sym___leave] = ACTIONS(3674), - [anon_sym_not] = ACTIONS(3674), - [anon_sym_compl] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_sizeof] = ACTIONS(3674), - [anon_sym___alignof__] = ACTIONS(3674), - [anon_sym___alignof] = ACTIONS(3674), - [anon_sym__alignof] = ACTIONS(3674), - [anon_sym_alignof] = ACTIONS(3674), - [anon_sym__Alignof] = ACTIONS(3674), - [anon_sym_offsetof] = ACTIONS(3674), - [anon_sym__Generic] = ACTIONS(3674), - [anon_sym_typename] = ACTIONS(3674), - [anon_sym_asm] = ACTIONS(3674), - [anon_sym___asm__] = ACTIONS(3674), - [anon_sym___asm] = ACTIONS(3674), - [sym_number_literal] = ACTIONS(3676), - [anon_sym_L_SQUOTE] = ACTIONS(3676), - [anon_sym_u_SQUOTE] = ACTIONS(3676), - [anon_sym_U_SQUOTE] = ACTIONS(3676), - [anon_sym_u8_SQUOTE] = ACTIONS(3676), - [anon_sym_SQUOTE] = ACTIONS(3676), - [anon_sym_L_DQUOTE] = ACTIONS(3676), - [anon_sym_u_DQUOTE] = ACTIONS(3676), - [anon_sym_U_DQUOTE] = ACTIONS(3676), - [anon_sym_u8_DQUOTE] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(3676), - [sym_true] = ACTIONS(3674), - [sym_false] = ACTIONS(3674), - [anon_sym_NULL] = ACTIONS(3674), - [anon_sym_nullptr] = ACTIONS(3674), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3674), - [anon_sym_decltype] = ACTIONS(3674), - [anon_sym_explicit] = ACTIONS(3674), - [anon_sym_export] = ACTIONS(3674), - [anon_sym_module] = ACTIONS(3674), - [anon_sym_import] = ACTIONS(3674), - [anon_sym_template] = ACTIONS(3674), - [anon_sym_operator] = ACTIONS(3674), - [anon_sym_try] = ACTIONS(3674), - [anon_sym_delete] = ACTIONS(3674), - [anon_sym_throw] = ACTIONS(3674), - [anon_sym_namespace] = ACTIONS(3674), - [anon_sym_static_assert] = ACTIONS(3674), - [anon_sym_concept] = ACTIONS(3674), - [anon_sym_co_return] = ACTIONS(3674), - [anon_sym_co_yield] = ACTIONS(3674), - [anon_sym_R_DQUOTE] = ACTIONS(3676), - [anon_sym_LR_DQUOTE] = ACTIONS(3676), - [anon_sym_uR_DQUOTE] = ACTIONS(3676), - [anon_sym_UR_DQUOTE] = ACTIONS(3676), - [anon_sym_u8R_DQUOTE] = ACTIONS(3676), - [anon_sym_co_await] = ACTIONS(3674), - [anon_sym_new] = ACTIONS(3674), - [anon_sym_requires] = ACTIONS(3674), - [anon_sym_CARET_CARET] = ACTIONS(3676), - [anon_sym_LBRACK_COLON] = ACTIONS(3676), - [sym_this] = ACTIONS(3674), + [STATE(648)] = { + [sym_identifier] = ACTIONS(3502), + [aux_sym_preproc_include_token1] = ACTIONS(3502), + [aux_sym_preproc_def_token1] = ACTIONS(3502), + [aux_sym_preproc_if_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3502), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3502), + [sym_preproc_directive] = ACTIONS(3502), + [anon_sym_LPAREN2] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_AMP_AMP] = ACTIONS(3504), + [anon_sym_AMP] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym___extension__] = ACTIONS(3502), + [anon_sym_typedef] = ACTIONS(3502), + [anon_sym_virtual] = ACTIONS(3502), + [anon_sym_extern] = ACTIONS(3502), + [anon_sym___attribute__] = ACTIONS(3502), + [anon_sym___attribute] = ACTIONS(3502), + [anon_sym_using] = ACTIONS(3502), + [anon_sym_COLON_COLON] = ACTIONS(3504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3504), + [anon_sym___declspec] = ACTIONS(3502), + [anon_sym___based] = ACTIONS(3502), + [anon_sym___cdecl] = ACTIONS(3502), + [anon_sym___clrcall] = ACTIONS(3502), + [anon_sym___stdcall] = ACTIONS(3502), + [anon_sym___fastcall] = ACTIONS(3502), + [anon_sym___thiscall] = ACTIONS(3502), + [anon_sym___vectorcall] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_signed] = ACTIONS(3502), + [anon_sym_unsigned] = ACTIONS(3502), + [anon_sym_long] = ACTIONS(3502), + [anon_sym_short] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_register] = ACTIONS(3502), + [anon_sym_inline] = ACTIONS(3502), + [anon_sym___inline] = ACTIONS(3502), + [anon_sym___inline__] = ACTIONS(3502), + [anon_sym___forceinline] = ACTIONS(3502), + [anon_sym_thread_local] = ACTIONS(3502), + [anon_sym___thread] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_constexpr] = ACTIONS(3502), + [anon_sym_volatile] = ACTIONS(3502), + [anon_sym_restrict] = ACTIONS(3502), + [anon_sym___restrict__] = ACTIONS(3502), + [anon_sym__Atomic] = ACTIONS(3502), + [anon_sym__Noreturn] = ACTIONS(3502), + [anon_sym_noreturn] = ACTIONS(3502), + [anon_sym__Nonnull] = ACTIONS(3502), + [anon_sym_mutable] = ACTIONS(3502), + [anon_sym_constinit] = ACTIONS(3502), + [anon_sym_consteval] = ACTIONS(3502), + [anon_sym_alignas] = ACTIONS(3502), + [anon_sym__Alignas] = ACTIONS(3502), + [sym_primitive_type] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_struct] = ACTIONS(3502), + [anon_sym_union] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_else] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_case] = ACTIONS(3502), + [anon_sym_default] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_goto] = ACTIONS(3502), + [anon_sym___try] = ACTIONS(3502), + [anon_sym___leave] = ACTIONS(3502), + [anon_sym_not] = ACTIONS(3502), + [anon_sym_compl] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_PLUS_PLUS] = ACTIONS(3504), + [anon_sym_sizeof] = ACTIONS(3502), + [anon_sym___alignof__] = ACTIONS(3502), + [anon_sym___alignof] = ACTIONS(3502), + [anon_sym__alignof] = ACTIONS(3502), + [anon_sym_alignof] = ACTIONS(3502), + [anon_sym__Alignof] = ACTIONS(3502), + [anon_sym_offsetof] = ACTIONS(3502), + [anon_sym__Generic] = ACTIONS(3502), + [anon_sym_typename] = ACTIONS(3502), + [anon_sym_asm] = ACTIONS(3502), + [anon_sym___asm__] = ACTIONS(3502), + [anon_sym___asm] = ACTIONS(3502), + [sym_number_literal] = ACTIONS(3504), + [anon_sym_L_SQUOTE] = ACTIONS(3504), + [anon_sym_u_SQUOTE] = ACTIONS(3504), + [anon_sym_U_SQUOTE] = ACTIONS(3504), + [anon_sym_u8_SQUOTE] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3504), + [anon_sym_L_DQUOTE] = ACTIONS(3504), + [anon_sym_u_DQUOTE] = ACTIONS(3504), + [anon_sym_U_DQUOTE] = ACTIONS(3504), + [anon_sym_u8_DQUOTE] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [anon_sym_NULL] = ACTIONS(3502), + [anon_sym_nullptr] = ACTIONS(3502), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3502), + [anon_sym_decltype] = ACTIONS(3502), + [anon_sym_explicit] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_template] = ACTIONS(3502), + [anon_sym_operator] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_static_assert] = ACTIONS(3502), + [anon_sym_concept] = ACTIONS(3502), + [anon_sym_co_return] = ACTIONS(3502), + [anon_sym_co_yield] = ACTIONS(3502), + [anon_sym_R_DQUOTE] = ACTIONS(3504), + [anon_sym_LR_DQUOTE] = ACTIONS(3504), + [anon_sym_uR_DQUOTE] = ACTIONS(3504), + [anon_sym_UR_DQUOTE] = ACTIONS(3504), + [anon_sym_u8R_DQUOTE] = ACTIONS(3504), + [anon_sym_co_await] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_requires] = ACTIONS(3502), + [anon_sym_CARET_CARET] = ACTIONS(3504), + [anon_sym_LBRACK_COLON] = ACTIONS(3504), + [sym_this] = ACTIONS(3502), }, - [STATE(625)] = { - [ts_builtin_sym_end] = ACTIONS(3636), - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_include_token1] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym___attribute] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym___cdecl] = ACTIONS(3634), - [anon_sym___clrcall] = ACTIONS(3634), - [anon_sym___stdcall] = ACTIONS(3634), - [anon_sym___fastcall] = ACTIONS(3634), - [anon_sym___thiscall] = ACTIONS(3634), - [anon_sym___vectorcall] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym__Nonnull] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym__Alignas] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_else] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_goto] = ACTIONS(3634), - [anon_sym___try] = ACTIONS(3634), - [anon_sym___leave] = ACTIONS(3634), - [anon_sym_not] = ACTIONS(3634), - [anon_sym_compl] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3634), - [anon_sym___alignof__] = ACTIONS(3634), - [anon_sym___alignof] = ACTIONS(3634), - [anon_sym__alignof] = ACTIONS(3634), - [anon_sym_alignof] = ACTIONS(3634), - [anon_sym__Alignof] = ACTIONS(3634), - [anon_sym_offsetof] = ACTIONS(3634), - [anon_sym__Generic] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_asm] = ACTIONS(3634), - [anon_sym___asm__] = ACTIONS(3634), - [anon_sym___asm] = ACTIONS(3634), - [sym_number_literal] = ACTIONS(3636), - [anon_sym_L_SQUOTE] = ACTIONS(3636), - [anon_sym_u_SQUOTE] = ACTIONS(3636), - [anon_sym_U_SQUOTE] = ACTIONS(3636), - [anon_sym_u8_SQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_L_DQUOTE] = ACTIONS(3636), - [anon_sym_u_DQUOTE] = ACTIONS(3636), - [anon_sym_U_DQUOTE] = ACTIONS(3636), - [anon_sym_u8_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [anon_sym_NULL] = ACTIONS(3634), - [anon_sym_nullptr] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_export] = ACTIONS(3634), - [anon_sym_module] = ACTIONS(3634), - [anon_sym_import] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), - [anon_sym_concept] = ACTIONS(3634), - [anon_sym_co_return] = ACTIONS(3634), - [anon_sym_co_yield] = ACTIONS(3634), - [anon_sym_R_DQUOTE] = ACTIONS(3636), - [anon_sym_LR_DQUOTE] = ACTIONS(3636), - [anon_sym_uR_DQUOTE] = ACTIONS(3636), - [anon_sym_UR_DQUOTE] = ACTIONS(3636), - [anon_sym_u8R_DQUOTE] = ACTIONS(3636), - [anon_sym_co_await] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_requires] = ACTIONS(3634), - [anon_sym_CARET_CARET] = ACTIONS(3636), - [anon_sym_LBRACK_COLON] = ACTIONS(3636), - [sym_this] = ACTIONS(3634), + [STATE(649)] = { + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_include_token1] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token2] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym___cdecl] = ACTIONS(3742), + [anon_sym___clrcall] = ACTIONS(3742), + [anon_sym___stdcall] = ACTIONS(3742), + [anon_sym___fastcall] = ACTIONS(3742), + [anon_sym___thiscall] = ACTIONS(3742), + [anon_sym___vectorcall] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_switch] = ACTIONS(3742), + [anon_sym_case] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_goto] = ACTIONS(3742), + [anon_sym___try] = ACTIONS(3742), + [anon_sym___leave] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(3742), + [anon_sym_compl] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3742), + [anon_sym___alignof__] = ACTIONS(3742), + [anon_sym___alignof] = ACTIONS(3742), + [anon_sym__alignof] = ACTIONS(3742), + [anon_sym_alignof] = ACTIONS(3742), + [anon_sym__Alignof] = ACTIONS(3742), + [anon_sym_offsetof] = ACTIONS(3742), + [anon_sym__Generic] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [anon_sym_asm] = ACTIONS(3742), + [anon_sym___asm__] = ACTIONS(3742), + [anon_sym___asm] = ACTIONS(3742), + [sym_number_literal] = ACTIONS(3744), + [anon_sym_L_SQUOTE] = ACTIONS(3744), + [anon_sym_u_SQUOTE] = ACTIONS(3744), + [anon_sym_U_SQUOTE] = ACTIONS(3744), + [anon_sym_u8_SQUOTE] = ACTIONS(3744), + [anon_sym_SQUOTE] = ACTIONS(3744), + [anon_sym_L_DQUOTE] = ACTIONS(3744), + [anon_sym_u_DQUOTE] = ACTIONS(3744), + [anon_sym_U_DQUOTE] = ACTIONS(3744), + [anon_sym_u8_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [anon_sym_NULL] = ACTIONS(3742), + [anon_sym_nullptr] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_export] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_import] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_delete] = ACTIONS(3742), + [anon_sym_throw] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_concept] = ACTIONS(3742), + [anon_sym_co_return] = ACTIONS(3742), + [anon_sym_co_yield] = ACTIONS(3742), + [anon_sym_R_DQUOTE] = ACTIONS(3744), + [anon_sym_LR_DQUOTE] = ACTIONS(3744), + [anon_sym_uR_DQUOTE] = ACTIONS(3744), + [anon_sym_UR_DQUOTE] = ACTIONS(3744), + [anon_sym_u8R_DQUOTE] = ACTIONS(3744), + [anon_sym_co_await] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_requires] = ACTIONS(3742), + [anon_sym_CARET_CARET] = ACTIONS(3744), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + [sym_this] = ACTIONS(3742), }, - [STATE(626)] = { - [sym_catch_clause] = STATE(398), - [aux_sym_constructor_try_statement_repeat1] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(3180), - [sym_identifier] = ACTIONS(3178), - [aux_sym_preproc_include_token1] = ACTIONS(3178), - [aux_sym_preproc_def_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token1] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_LPAREN2] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_AMP_AMP] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym___extension__] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_virtual] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym___attribute__] = ACTIONS(3178), - [anon_sym___attribute] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), - [anon_sym___declspec] = ACTIONS(3178), - [anon_sym___based] = ACTIONS(3178), - [anon_sym___cdecl] = ACTIONS(3178), - [anon_sym___clrcall] = ACTIONS(3178), - [anon_sym___stdcall] = ACTIONS(3178), - [anon_sym___fastcall] = ACTIONS(3178), - [anon_sym___thiscall] = ACTIONS(3178), - [anon_sym___vectorcall] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_signed] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym___inline] = ACTIONS(3178), - [anon_sym___inline__] = ACTIONS(3178), - [anon_sym___forceinline] = ACTIONS(3178), - [anon_sym_thread_local] = ACTIONS(3178), - [anon_sym___thread] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym___restrict__] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym__Noreturn] = ACTIONS(3178), - [anon_sym_noreturn] = ACTIONS(3178), - [anon_sym__Nonnull] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_constinit] = ACTIONS(3178), - [anon_sym_consteval] = ACTIONS(3178), - [anon_sym_alignas] = ACTIONS(3178), - [anon_sym__Alignas] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_goto] = ACTIONS(3178), - [anon_sym_not] = ACTIONS(3178), - [anon_sym_compl] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_sizeof] = ACTIONS(3178), - [anon_sym___alignof__] = ACTIONS(3178), - [anon_sym___alignof] = ACTIONS(3178), - [anon_sym__alignof] = ACTIONS(3178), - [anon_sym_alignof] = ACTIONS(3178), - [anon_sym__Alignof] = ACTIONS(3178), - [anon_sym_offsetof] = ACTIONS(3178), - [anon_sym__Generic] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_asm] = ACTIONS(3178), - [anon_sym___asm__] = ACTIONS(3178), - [anon_sym___asm] = ACTIONS(3178), - [sym_number_literal] = ACTIONS(3180), - [anon_sym_L_SQUOTE] = ACTIONS(3180), - [anon_sym_u_SQUOTE] = ACTIONS(3180), - [anon_sym_U_SQUOTE] = ACTIONS(3180), - [anon_sym_u8_SQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_L_DQUOTE] = ACTIONS(3180), - [anon_sym_u_DQUOTE] = ACTIONS(3180), - [anon_sym_U_DQUOTE] = ACTIONS(3180), - [anon_sym_u8_DQUOTE] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [anon_sym_NULL] = ACTIONS(3178), - [anon_sym_nullptr] = ACTIONS(3178), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3178), - [anon_sym_decltype] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_operator] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_static_assert] = ACTIONS(3178), - [anon_sym_concept] = ACTIONS(3178), - [anon_sym_co_return] = ACTIONS(3178), - [anon_sym_co_yield] = ACTIONS(3178), - [anon_sym_catch] = ACTIONS(3788), - [anon_sym_R_DQUOTE] = ACTIONS(3180), - [anon_sym_LR_DQUOTE] = ACTIONS(3180), - [anon_sym_uR_DQUOTE] = ACTIONS(3180), - [anon_sym_UR_DQUOTE] = ACTIONS(3180), - [anon_sym_u8R_DQUOTE] = ACTIONS(3180), - [anon_sym_co_await] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_requires] = ACTIONS(3178), - [anon_sym_CARET_CARET] = ACTIONS(3180), - [anon_sym_LBRACK_COLON] = ACTIONS(3180), - [sym_this] = ACTIONS(3178), + [STATE(650)] = { + [sym_identifier] = ACTIONS(3558), + [aux_sym_preproc_include_token1] = ACTIONS(3558), + [aux_sym_preproc_def_token1] = ACTIONS(3558), + [aux_sym_preproc_if_token1] = ACTIONS(3558), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3558), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3558), + [sym_preproc_directive] = ACTIONS(3558), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_AMP_AMP] = ACTIONS(3560), + [anon_sym_AMP] = ACTIONS(3558), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym___extension__] = ACTIONS(3558), + [anon_sym_typedef] = ACTIONS(3558), + [anon_sym_virtual] = ACTIONS(3558), + [anon_sym_extern] = ACTIONS(3558), + [anon_sym___attribute__] = ACTIONS(3558), + [anon_sym___attribute] = ACTIONS(3558), + [anon_sym_using] = ACTIONS(3558), + [anon_sym_COLON_COLON] = ACTIONS(3560), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3560), + [anon_sym___declspec] = ACTIONS(3558), + [anon_sym___based] = ACTIONS(3558), + [anon_sym___cdecl] = ACTIONS(3558), + [anon_sym___clrcall] = ACTIONS(3558), + [anon_sym___stdcall] = ACTIONS(3558), + [anon_sym___fastcall] = ACTIONS(3558), + [anon_sym___thiscall] = ACTIONS(3558), + [anon_sym___vectorcall] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_RBRACE] = ACTIONS(3560), + [anon_sym_signed] = ACTIONS(3558), + [anon_sym_unsigned] = ACTIONS(3558), + [anon_sym_long] = ACTIONS(3558), + [anon_sym_short] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_register] = ACTIONS(3558), + [anon_sym_inline] = ACTIONS(3558), + [anon_sym___inline] = ACTIONS(3558), + [anon_sym___inline__] = ACTIONS(3558), + [anon_sym___forceinline] = ACTIONS(3558), + [anon_sym_thread_local] = ACTIONS(3558), + [anon_sym___thread] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_constexpr] = ACTIONS(3558), + [anon_sym_volatile] = ACTIONS(3558), + [anon_sym_restrict] = ACTIONS(3558), + [anon_sym___restrict__] = ACTIONS(3558), + [anon_sym__Atomic] = ACTIONS(3558), + [anon_sym__Noreturn] = ACTIONS(3558), + [anon_sym_noreturn] = ACTIONS(3558), + [anon_sym__Nonnull] = ACTIONS(3558), + [anon_sym_mutable] = ACTIONS(3558), + [anon_sym_constinit] = ACTIONS(3558), + [anon_sym_consteval] = ACTIONS(3558), + [anon_sym_alignas] = ACTIONS(3558), + [anon_sym__Alignas] = ACTIONS(3558), + [sym_primitive_type] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_struct] = ACTIONS(3558), + [anon_sym_union] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_case] = ACTIONS(3558), + [anon_sym_default] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_goto] = ACTIONS(3558), + [anon_sym___try] = ACTIONS(3558), + [anon_sym___leave] = ACTIONS(3558), + [anon_sym_not] = ACTIONS(3558), + [anon_sym_compl] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_sizeof] = ACTIONS(3558), + [anon_sym___alignof__] = ACTIONS(3558), + [anon_sym___alignof] = ACTIONS(3558), + [anon_sym__alignof] = ACTIONS(3558), + [anon_sym_alignof] = ACTIONS(3558), + [anon_sym__Alignof] = ACTIONS(3558), + [anon_sym_offsetof] = ACTIONS(3558), + [anon_sym__Generic] = ACTIONS(3558), + [anon_sym_typename] = ACTIONS(3558), + [anon_sym_asm] = ACTIONS(3558), + [anon_sym___asm__] = ACTIONS(3558), + [anon_sym___asm] = ACTIONS(3558), + [sym_number_literal] = ACTIONS(3560), + [anon_sym_L_SQUOTE] = ACTIONS(3560), + [anon_sym_u_SQUOTE] = ACTIONS(3560), + [anon_sym_U_SQUOTE] = ACTIONS(3560), + [anon_sym_u8_SQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_L_DQUOTE] = ACTIONS(3560), + [anon_sym_u_DQUOTE] = ACTIONS(3560), + [anon_sym_U_DQUOTE] = ACTIONS(3560), + [anon_sym_u8_DQUOTE] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [anon_sym_NULL] = ACTIONS(3558), + [anon_sym_nullptr] = ACTIONS(3558), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3558), + [anon_sym_decltype] = ACTIONS(3558), + [anon_sym_explicit] = ACTIONS(3558), + [anon_sym_export] = ACTIONS(3558), + [anon_sym_import] = ACTIONS(3558), + [anon_sym_template] = ACTIONS(3558), + [anon_sym_operator] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_namespace] = ACTIONS(3558), + [anon_sym_static_assert] = ACTIONS(3558), + [anon_sym_concept] = ACTIONS(3558), + [anon_sym_co_return] = ACTIONS(3558), + [anon_sym_co_yield] = ACTIONS(3558), + [anon_sym_R_DQUOTE] = ACTIONS(3560), + [anon_sym_LR_DQUOTE] = ACTIONS(3560), + [anon_sym_uR_DQUOTE] = ACTIONS(3560), + [anon_sym_UR_DQUOTE] = ACTIONS(3560), + [anon_sym_u8R_DQUOTE] = ACTIONS(3560), + [anon_sym_co_await] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_requires] = ACTIONS(3558), + [anon_sym_CARET_CARET] = ACTIONS(3560), + [anon_sym_LBRACK_COLON] = ACTIONS(3560), + [sym_this] = ACTIONS(3558), }, - [STATE(627)] = { - [ts_builtin_sym_end] = ACTIONS(3652), - [sym_identifier] = ACTIONS(3650), - [aux_sym_preproc_include_token1] = ACTIONS(3650), - [aux_sym_preproc_def_token1] = ACTIONS(3650), - [aux_sym_preproc_if_token1] = ACTIONS(3650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3650), - [sym_preproc_directive] = ACTIONS(3650), - [anon_sym_LPAREN2] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym___extension__] = ACTIONS(3650), - [anon_sym_typedef] = ACTIONS(3650), - [anon_sym_virtual] = ACTIONS(3650), - [anon_sym_extern] = ACTIONS(3650), - [anon_sym___attribute__] = ACTIONS(3650), - [anon_sym___attribute] = ACTIONS(3650), - [anon_sym_using] = ACTIONS(3650), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3652), - [anon_sym___declspec] = ACTIONS(3650), - [anon_sym___based] = ACTIONS(3650), - [anon_sym___cdecl] = ACTIONS(3650), - [anon_sym___clrcall] = ACTIONS(3650), - [anon_sym___stdcall] = ACTIONS(3650), - [anon_sym___fastcall] = ACTIONS(3650), - [anon_sym___thiscall] = ACTIONS(3650), - [anon_sym___vectorcall] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_signed] = ACTIONS(3650), - [anon_sym_unsigned] = ACTIONS(3650), - [anon_sym_long] = ACTIONS(3650), - [anon_sym_short] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_register] = ACTIONS(3650), - [anon_sym_inline] = ACTIONS(3650), - [anon_sym___inline] = ACTIONS(3650), - [anon_sym___inline__] = ACTIONS(3650), - [anon_sym___forceinline] = ACTIONS(3650), - [anon_sym_thread_local] = ACTIONS(3650), - [anon_sym___thread] = ACTIONS(3650), - [anon_sym_const] = ACTIONS(3650), - [anon_sym_constexpr] = ACTIONS(3650), - [anon_sym_volatile] = ACTIONS(3650), - [anon_sym_restrict] = ACTIONS(3650), - [anon_sym___restrict__] = ACTIONS(3650), - [anon_sym__Atomic] = ACTIONS(3650), - [anon_sym__Noreturn] = ACTIONS(3650), - [anon_sym_noreturn] = ACTIONS(3650), - [anon_sym__Nonnull] = ACTIONS(3650), - [anon_sym_mutable] = ACTIONS(3650), - [anon_sym_constinit] = ACTIONS(3650), - [anon_sym_consteval] = ACTIONS(3650), - [anon_sym_alignas] = ACTIONS(3650), - [anon_sym__Alignas] = ACTIONS(3650), - [sym_primitive_type] = ACTIONS(3650), - [anon_sym_enum] = ACTIONS(3650), - [anon_sym_class] = ACTIONS(3650), - [anon_sym_struct] = ACTIONS(3650), - [anon_sym_union] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_case] = ACTIONS(3650), - [anon_sym_default] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_goto] = ACTIONS(3650), - [anon_sym___try] = ACTIONS(3650), - [anon_sym___leave] = ACTIONS(3650), - [anon_sym_not] = ACTIONS(3650), - [anon_sym_compl] = ACTIONS(3650), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_sizeof] = ACTIONS(3650), - [anon_sym___alignof__] = ACTIONS(3650), - [anon_sym___alignof] = ACTIONS(3650), - [anon_sym__alignof] = ACTIONS(3650), - [anon_sym_alignof] = ACTIONS(3650), - [anon_sym__Alignof] = ACTIONS(3650), - [anon_sym_offsetof] = ACTIONS(3650), - [anon_sym__Generic] = ACTIONS(3650), - [anon_sym_typename] = ACTIONS(3650), - [anon_sym_asm] = ACTIONS(3650), - [anon_sym___asm__] = ACTIONS(3650), - [anon_sym___asm] = ACTIONS(3650), - [sym_number_literal] = ACTIONS(3652), - [anon_sym_L_SQUOTE] = ACTIONS(3652), - [anon_sym_u_SQUOTE] = ACTIONS(3652), - [anon_sym_U_SQUOTE] = ACTIONS(3652), - [anon_sym_u8_SQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [anon_sym_L_DQUOTE] = ACTIONS(3652), - [anon_sym_u_DQUOTE] = ACTIONS(3652), - [anon_sym_U_DQUOTE] = ACTIONS(3652), - [anon_sym_u8_DQUOTE] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [sym_true] = ACTIONS(3650), - [sym_false] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_nullptr] = ACTIONS(3650), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3650), - [anon_sym_decltype] = ACTIONS(3650), - [anon_sym_explicit] = ACTIONS(3650), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_module] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_template] = ACTIONS(3650), - [anon_sym_operator] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_delete] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_namespace] = ACTIONS(3650), - [anon_sym_static_assert] = ACTIONS(3650), - [anon_sym_concept] = ACTIONS(3650), - [anon_sym_co_return] = ACTIONS(3650), - [anon_sym_co_yield] = ACTIONS(3650), - [anon_sym_R_DQUOTE] = ACTIONS(3652), - [anon_sym_LR_DQUOTE] = ACTIONS(3652), - [anon_sym_uR_DQUOTE] = ACTIONS(3652), - [anon_sym_UR_DQUOTE] = ACTIONS(3652), - [anon_sym_u8R_DQUOTE] = ACTIONS(3652), - [anon_sym_co_await] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_requires] = ACTIONS(3650), - [anon_sym_CARET_CARET] = ACTIONS(3652), - [anon_sym_LBRACK_COLON] = ACTIONS(3652), - [sym_this] = ACTIONS(3650), + [STATE(651)] = { + [sym_identifier] = ACTIONS(3774), + [aux_sym_preproc_include_token1] = ACTIONS(3774), + [aux_sym_preproc_def_token1] = ACTIONS(3774), + [aux_sym_preproc_if_token1] = ACTIONS(3774), + [aux_sym_preproc_if_token2] = ACTIONS(3774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3774), + [sym_preproc_directive] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_BANG] = ACTIONS(3776), + [anon_sym_TILDE] = ACTIONS(3776), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(3776), + [anon_sym_AMP_AMP] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym___extension__] = ACTIONS(3774), + [anon_sym_typedef] = ACTIONS(3774), + [anon_sym_virtual] = ACTIONS(3774), + [anon_sym_extern] = ACTIONS(3774), + [anon_sym___attribute__] = ACTIONS(3774), + [anon_sym___attribute] = ACTIONS(3774), + [anon_sym_using] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3776), + [anon_sym___declspec] = ACTIONS(3774), + [anon_sym___based] = ACTIONS(3774), + [anon_sym___cdecl] = ACTIONS(3774), + [anon_sym___clrcall] = ACTIONS(3774), + [anon_sym___stdcall] = ACTIONS(3774), + [anon_sym___fastcall] = ACTIONS(3774), + [anon_sym___thiscall] = ACTIONS(3774), + [anon_sym___vectorcall] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_signed] = ACTIONS(3774), + [anon_sym_unsigned] = ACTIONS(3774), + [anon_sym_long] = ACTIONS(3774), + [anon_sym_short] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_static] = ACTIONS(3774), + [anon_sym_register] = ACTIONS(3774), + [anon_sym_inline] = ACTIONS(3774), + [anon_sym___inline] = ACTIONS(3774), + [anon_sym___inline__] = ACTIONS(3774), + [anon_sym___forceinline] = ACTIONS(3774), + [anon_sym_thread_local] = ACTIONS(3774), + [anon_sym___thread] = ACTIONS(3774), + [anon_sym_const] = ACTIONS(3774), + [anon_sym_constexpr] = ACTIONS(3774), + [anon_sym_volatile] = ACTIONS(3774), + [anon_sym_restrict] = ACTIONS(3774), + [anon_sym___restrict__] = ACTIONS(3774), + [anon_sym__Atomic] = ACTIONS(3774), + [anon_sym__Noreturn] = ACTIONS(3774), + [anon_sym_noreturn] = ACTIONS(3774), + [anon_sym__Nonnull] = ACTIONS(3774), + [anon_sym_mutable] = ACTIONS(3774), + [anon_sym_constinit] = ACTIONS(3774), + [anon_sym_consteval] = ACTIONS(3774), + [anon_sym_alignas] = ACTIONS(3774), + [anon_sym__Alignas] = ACTIONS(3774), + [sym_primitive_type] = ACTIONS(3774), + [anon_sym_enum] = ACTIONS(3774), + [anon_sym_class] = ACTIONS(3774), + [anon_sym_struct] = ACTIONS(3774), + [anon_sym_union] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_switch] = ACTIONS(3774), + [anon_sym_case] = ACTIONS(3774), + [anon_sym_default] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_break] = ACTIONS(3774), + [anon_sym_continue] = ACTIONS(3774), + [anon_sym_goto] = ACTIONS(3774), + [anon_sym___try] = ACTIONS(3774), + [anon_sym___leave] = ACTIONS(3774), + [anon_sym_not] = ACTIONS(3774), + [anon_sym_compl] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3776), + [anon_sym_PLUS_PLUS] = ACTIONS(3776), + [anon_sym_sizeof] = ACTIONS(3774), + [anon_sym___alignof__] = ACTIONS(3774), + [anon_sym___alignof] = ACTIONS(3774), + [anon_sym__alignof] = ACTIONS(3774), + [anon_sym_alignof] = ACTIONS(3774), + [anon_sym__Alignof] = ACTIONS(3774), + [anon_sym_offsetof] = ACTIONS(3774), + [anon_sym__Generic] = ACTIONS(3774), + [anon_sym_typename] = ACTIONS(3774), + [anon_sym_asm] = ACTIONS(3774), + [anon_sym___asm__] = ACTIONS(3774), + [anon_sym___asm] = ACTIONS(3774), + [sym_number_literal] = ACTIONS(3776), + [anon_sym_L_SQUOTE] = ACTIONS(3776), + [anon_sym_u_SQUOTE] = ACTIONS(3776), + [anon_sym_U_SQUOTE] = ACTIONS(3776), + [anon_sym_u8_SQUOTE] = ACTIONS(3776), + [anon_sym_SQUOTE] = ACTIONS(3776), + [anon_sym_L_DQUOTE] = ACTIONS(3776), + [anon_sym_u_DQUOTE] = ACTIONS(3776), + [anon_sym_U_DQUOTE] = ACTIONS(3776), + [anon_sym_u8_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE] = ACTIONS(3776), + [sym_true] = ACTIONS(3774), + [sym_false] = ACTIONS(3774), + [anon_sym_NULL] = ACTIONS(3774), + [anon_sym_nullptr] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(3774), + [anon_sym_explicit] = ACTIONS(3774), + [anon_sym_export] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), + [anon_sym_import] = ACTIONS(3774), + [anon_sym_template] = ACTIONS(3774), + [anon_sym_operator] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_throw] = ACTIONS(3774), + [anon_sym_namespace] = ACTIONS(3774), + [anon_sym_static_assert] = ACTIONS(3774), + [anon_sym_concept] = ACTIONS(3774), + [anon_sym_co_return] = ACTIONS(3774), + [anon_sym_co_yield] = ACTIONS(3774), + [anon_sym_R_DQUOTE] = ACTIONS(3776), + [anon_sym_LR_DQUOTE] = ACTIONS(3776), + [anon_sym_uR_DQUOTE] = ACTIONS(3776), + [anon_sym_UR_DQUOTE] = ACTIONS(3776), + [anon_sym_u8R_DQUOTE] = ACTIONS(3776), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_requires] = ACTIONS(3774), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(3776), + [sym_this] = ACTIONS(3774), }, - [STATE(628)] = { + [STATE(652)] = { [sym_identifier] = ACTIONS(3678), [aux_sym_preproc_include_token1] = ACTIONS(3678), [aux_sym_preproc_def_token1] = ACTIONS(3678), [aux_sym_preproc_if_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token2] = ACTIONS(3678), [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), [sym_preproc_directive] = ACTIONS(3678), @@ -149781,6 +153187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3678), [anon_sym___vectorcall] = ACTIONS(3678), [anon_sym_LBRACE] = ACTIONS(3680), + [anon_sym_RBRACE] = ACTIONS(3680), [anon_sym_signed] = ACTIONS(3678), [anon_sym_unsigned] = ACTIONS(3678), [anon_sym_long] = ACTIONS(3678), @@ -149863,7 +153270,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_decltype] = ACTIONS(3678), [anon_sym_explicit] = ACTIONS(3678), [anon_sym_export] = ACTIONS(3678), - [anon_sym_module] = ACTIONS(3678), [anon_sym_import] = ACTIONS(3678), [anon_sym_template] = ACTIONS(3678), [anon_sym_operator] = ACTIONS(3678), @@ -149887,3981 +153293,3114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3680), [sym_this] = ACTIONS(3678), }, - [STATE(629)] = { - [ts_builtin_sym_end] = ACTIONS(3624), - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_module] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(630)] = { - [sym_identifier] = ACTIONS(3588), - [aux_sym_preproc_include_token1] = ACTIONS(3588), - [aux_sym_preproc_def_token1] = ACTIONS(3588), - [aux_sym_preproc_if_token1] = ACTIONS(3588), - [aux_sym_preproc_if_token2] = ACTIONS(3588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3588), - [sym_preproc_directive] = ACTIONS(3588), - [anon_sym_LPAREN2] = ACTIONS(3590), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_STAR] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_AMP] = ACTIONS(3588), - [anon_sym_SEMI] = ACTIONS(3590), - [anon_sym___extension__] = ACTIONS(3588), - [anon_sym_typedef] = ACTIONS(3588), - [anon_sym_virtual] = ACTIONS(3588), - [anon_sym_extern] = ACTIONS(3588), - [anon_sym___attribute__] = ACTIONS(3588), - [anon_sym___attribute] = ACTIONS(3588), - [anon_sym_using] = ACTIONS(3588), - [anon_sym_COLON_COLON] = ACTIONS(3590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), - [anon_sym___declspec] = ACTIONS(3588), - [anon_sym___based] = ACTIONS(3588), - [anon_sym___cdecl] = ACTIONS(3588), - [anon_sym___clrcall] = ACTIONS(3588), - [anon_sym___stdcall] = ACTIONS(3588), - [anon_sym___fastcall] = ACTIONS(3588), - [anon_sym___thiscall] = ACTIONS(3588), - [anon_sym___vectorcall] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_signed] = ACTIONS(3588), - [anon_sym_unsigned] = ACTIONS(3588), - [anon_sym_long] = ACTIONS(3588), - [anon_sym_short] = ACTIONS(3588), - [anon_sym_LBRACK] = ACTIONS(3588), - [anon_sym_static] = ACTIONS(3588), - [anon_sym_register] = ACTIONS(3588), - [anon_sym_inline] = ACTIONS(3588), - [anon_sym___inline] = ACTIONS(3588), - [anon_sym___inline__] = ACTIONS(3588), - [anon_sym___forceinline] = ACTIONS(3588), - [anon_sym_thread_local] = ACTIONS(3588), - [anon_sym___thread] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_constexpr] = ACTIONS(3588), - [anon_sym_volatile] = ACTIONS(3588), - [anon_sym_restrict] = ACTIONS(3588), - [anon_sym___restrict__] = ACTIONS(3588), - [anon_sym__Atomic] = ACTIONS(3588), - [anon_sym__Noreturn] = ACTIONS(3588), - [anon_sym_noreturn] = ACTIONS(3588), - [anon_sym__Nonnull] = ACTIONS(3588), - [anon_sym_mutable] = ACTIONS(3588), - [anon_sym_constinit] = ACTIONS(3588), - [anon_sym_consteval] = ACTIONS(3588), - [anon_sym_alignas] = ACTIONS(3588), - [anon_sym__Alignas] = ACTIONS(3588), - [sym_primitive_type] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), - [anon_sym_class] = ACTIONS(3588), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_union] = ACTIONS(3588), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_else] = ACTIONS(3588), - [anon_sym_switch] = ACTIONS(3588), - [anon_sym_case] = ACTIONS(3588), - [anon_sym_default] = ACTIONS(3588), - [anon_sym_while] = ACTIONS(3588), - [anon_sym_do] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3588), - [anon_sym_return] = ACTIONS(3588), - [anon_sym_break] = ACTIONS(3588), - [anon_sym_continue] = ACTIONS(3588), - [anon_sym_goto] = ACTIONS(3588), - [anon_sym___try] = ACTIONS(3588), - [anon_sym___leave] = ACTIONS(3588), - [anon_sym_not] = ACTIONS(3588), - [anon_sym_compl] = ACTIONS(3588), - [anon_sym_DASH_DASH] = ACTIONS(3590), - [anon_sym_PLUS_PLUS] = ACTIONS(3590), - [anon_sym_sizeof] = ACTIONS(3588), - [anon_sym___alignof__] = ACTIONS(3588), - [anon_sym___alignof] = ACTIONS(3588), - [anon_sym__alignof] = ACTIONS(3588), - [anon_sym_alignof] = ACTIONS(3588), - [anon_sym__Alignof] = ACTIONS(3588), - [anon_sym_offsetof] = ACTIONS(3588), - [anon_sym__Generic] = ACTIONS(3588), - [anon_sym_typename] = ACTIONS(3588), - [anon_sym_asm] = ACTIONS(3588), - [anon_sym___asm__] = ACTIONS(3588), - [anon_sym___asm] = ACTIONS(3588), - [sym_number_literal] = ACTIONS(3590), - [anon_sym_L_SQUOTE] = ACTIONS(3590), - [anon_sym_u_SQUOTE] = ACTIONS(3590), - [anon_sym_U_SQUOTE] = ACTIONS(3590), - [anon_sym_u8_SQUOTE] = ACTIONS(3590), - [anon_sym_SQUOTE] = ACTIONS(3590), - [anon_sym_L_DQUOTE] = ACTIONS(3590), - [anon_sym_u_DQUOTE] = ACTIONS(3590), - [anon_sym_U_DQUOTE] = ACTIONS(3590), - [anon_sym_u8_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [sym_true] = ACTIONS(3588), - [sym_false] = ACTIONS(3588), - [anon_sym_NULL] = ACTIONS(3588), - [anon_sym_nullptr] = ACTIONS(3588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3588), - [anon_sym_decltype] = ACTIONS(3588), - [anon_sym_explicit] = ACTIONS(3588), - [anon_sym_export] = ACTIONS(3588), - [anon_sym_module] = ACTIONS(3588), - [anon_sym_import] = ACTIONS(3588), - [anon_sym_template] = ACTIONS(3588), - [anon_sym_operator] = ACTIONS(3588), - [anon_sym_try] = ACTIONS(3588), - [anon_sym_delete] = ACTIONS(3588), - [anon_sym_throw] = ACTIONS(3588), - [anon_sym_namespace] = ACTIONS(3588), - [anon_sym_static_assert] = ACTIONS(3588), - [anon_sym_concept] = ACTIONS(3588), - [anon_sym_co_return] = ACTIONS(3588), - [anon_sym_co_yield] = ACTIONS(3588), - [anon_sym_R_DQUOTE] = ACTIONS(3590), - [anon_sym_LR_DQUOTE] = ACTIONS(3590), - [anon_sym_uR_DQUOTE] = ACTIONS(3590), - [anon_sym_UR_DQUOTE] = ACTIONS(3590), - [anon_sym_u8R_DQUOTE] = ACTIONS(3590), - [anon_sym_co_await] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3588), - [anon_sym_requires] = ACTIONS(3588), - [anon_sym_CARET_CARET] = ACTIONS(3590), - [anon_sym_LBRACK_COLON] = ACTIONS(3590), - [sym_this] = ACTIONS(3588), + [STATE(653)] = { + [sym_identifier] = ACTIONS(3652), + [aux_sym_preproc_include_token1] = ACTIONS(3652), + [aux_sym_preproc_def_token1] = ACTIONS(3652), + [aux_sym_preproc_if_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3652), + [sym_preproc_directive] = ACTIONS(3652), + [anon_sym_LPAREN2] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [anon_sym_AMP_AMP] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3652), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym___extension__] = ACTIONS(3652), + [anon_sym_typedef] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym___attribute__] = ACTIONS(3652), + [anon_sym___attribute] = ACTIONS(3652), + [anon_sym_using] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), + [anon_sym___declspec] = ACTIONS(3652), + [anon_sym___based] = ACTIONS(3652), + [anon_sym___cdecl] = ACTIONS(3652), + [anon_sym___clrcall] = ACTIONS(3652), + [anon_sym___stdcall] = ACTIONS(3652), + [anon_sym___fastcall] = ACTIONS(3652), + [anon_sym___thiscall] = ACTIONS(3652), + [anon_sym___vectorcall] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_RBRACE] = ACTIONS(3654), + [anon_sym_signed] = ACTIONS(3652), + [anon_sym_unsigned] = ACTIONS(3652), + [anon_sym_long] = ACTIONS(3652), + [anon_sym_short] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_register] = ACTIONS(3652), + [anon_sym_inline] = ACTIONS(3652), + [anon_sym___inline] = ACTIONS(3652), + [anon_sym___inline__] = ACTIONS(3652), + [anon_sym___forceinline] = ACTIONS(3652), + [anon_sym_thread_local] = ACTIONS(3652), + [anon_sym___thread] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_constexpr] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_restrict] = ACTIONS(3652), + [anon_sym___restrict__] = ACTIONS(3652), + [anon_sym__Atomic] = ACTIONS(3652), + [anon_sym__Noreturn] = ACTIONS(3652), + [anon_sym_noreturn] = ACTIONS(3652), + [anon_sym__Nonnull] = ACTIONS(3652), + [anon_sym_mutable] = ACTIONS(3652), + [anon_sym_constinit] = ACTIONS(3652), + [anon_sym_consteval] = ACTIONS(3652), + [anon_sym_alignas] = ACTIONS(3652), + [anon_sym__Alignas] = ACTIONS(3652), + [sym_primitive_type] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_union] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_case] = ACTIONS(3652), + [anon_sym_default] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym___try] = ACTIONS(3652), + [anon_sym___leave] = ACTIONS(3652), + [anon_sym_not] = ACTIONS(3652), + [anon_sym_compl] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym___alignof__] = ACTIONS(3652), + [anon_sym___alignof] = ACTIONS(3652), + [anon_sym__alignof] = ACTIONS(3652), + [anon_sym_alignof] = ACTIONS(3652), + [anon_sym__Alignof] = ACTIONS(3652), + [anon_sym_offsetof] = ACTIONS(3652), + [anon_sym__Generic] = ACTIONS(3652), + [anon_sym_typename] = ACTIONS(3652), + [anon_sym_asm] = ACTIONS(3652), + [anon_sym___asm__] = ACTIONS(3652), + [anon_sym___asm] = ACTIONS(3652), + [sym_number_literal] = ACTIONS(3654), + [anon_sym_L_SQUOTE] = ACTIONS(3654), + [anon_sym_u_SQUOTE] = ACTIONS(3654), + [anon_sym_U_SQUOTE] = ACTIONS(3654), + [anon_sym_u8_SQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_L_DQUOTE] = ACTIONS(3654), + [anon_sym_u_DQUOTE] = ACTIONS(3654), + [anon_sym_U_DQUOTE] = ACTIONS(3654), + [anon_sym_u8_DQUOTE] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [anon_sym_NULL] = ACTIONS(3652), + [anon_sym_nullptr] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3652), + [anon_sym_decltype] = ACTIONS(3652), + [anon_sym_explicit] = ACTIONS(3652), + [anon_sym_export] = ACTIONS(3652), + [anon_sym_import] = ACTIONS(3652), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_operator] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_namespace] = ACTIONS(3652), + [anon_sym_static_assert] = ACTIONS(3652), + [anon_sym_concept] = ACTIONS(3652), + [anon_sym_co_return] = ACTIONS(3652), + [anon_sym_co_yield] = ACTIONS(3652), + [anon_sym_R_DQUOTE] = ACTIONS(3654), + [anon_sym_LR_DQUOTE] = ACTIONS(3654), + [anon_sym_uR_DQUOTE] = ACTIONS(3654), + [anon_sym_UR_DQUOTE] = ACTIONS(3654), + [anon_sym_u8R_DQUOTE] = ACTIONS(3654), + [anon_sym_co_await] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_requires] = ACTIONS(3652), + [anon_sym_CARET_CARET] = ACTIONS(3654), + [anon_sym_LBRACK_COLON] = ACTIONS(3654), + [sym_this] = ACTIONS(3652), }, - [STATE(631)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_include_token1] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token2] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym___cdecl] = ACTIONS(3600), - [anon_sym___clrcall] = ACTIONS(3600), - [anon_sym___stdcall] = ACTIONS(3600), - [anon_sym___fastcall] = ACTIONS(3600), - [anon_sym___thiscall] = ACTIONS(3600), - [anon_sym___vectorcall] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_case] = ACTIONS(3600), - [anon_sym_default] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym___try] = ACTIONS(3600), - [anon_sym___leave] = ACTIONS(3600), - [anon_sym_not] = ACTIONS(3600), - [anon_sym_compl] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(3600), - [anon_sym___alignof] = ACTIONS(3600), - [anon_sym__alignof] = ACTIONS(3600), - [anon_sym_alignof] = ACTIONS(3600), - [anon_sym__Alignof] = ACTIONS(3600), - [anon_sym_offsetof] = ACTIONS(3600), - [anon_sym__Generic] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [anon_sym_asm] = ACTIONS(3600), - [anon_sym___asm__] = ACTIONS(3600), - [anon_sym___asm] = ACTIONS(3600), - [sym_number_literal] = ACTIONS(3602), - [anon_sym_L_SQUOTE] = ACTIONS(3602), - [anon_sym_u_SQUOTE] = ACTIONS(3602), - [anon_sym_U_SQUOTE] = ACTIONS(3602), - [anon_sym_u8_SQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_L_DQUOTE] = ACTIONS(3602), - [anon_sym_u_DQUOTE] = ACTIONS(3602), - [anon_sym_U_DQUOTE] = ACTIONS(3602), - [anon_sym_u8_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [anon_sym_NULL] = ACTIONS(3600), - [anon_sym_nullptr] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_export] = ACTIONS(3600), - [anon_sym_module] = ACTIONS(3600), - [anon_sym_import] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_concept] = ACTIONS(3600), - [anon_sym_co_return] = ACTIONS(3600), - [anon_sym_co_yield] = ACTIONS(3600), - [anon_sym_R_DQUOTE] = ACTIONS(3602), - [anon_sym_LR_DQUOTE] = ACTIONS(3602), - [anon_sym_uR_DQUOTE] = ACTIONS(3602), - [anon_sym_UR_DQUOTE] = ACTIONS(3602), - [anon_sym_u8R_DQUOTE] = ACTIONS(3602), - [anon_sym_co_await] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_requires] = ACTIONS(3600), - [anon_sym_CARET_CARET] = ACTIONS(3602), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - [sym_this] = ACTIONS(3600), + [STATE(654)] = { + [sym_identifier] = ACTIONS(3338), + [aux_sym_preproc_include_token1] = ACTIONS(3338), + [aux_sym_preproc_def_token1] = ACTIONS(3338), + [aux_sym_preproc_if_token1] = ACTIONS(3338), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3338), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3338), + [sym_preproc_directive] = ACTIONS(3338), + [anon_sym_LPAREN2] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3343), + [anon_sym_AMP_AMP] = ACTIONS(3343), + [anon_sym_AMP] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym___extension__] = ACTIONS(3338), + [anon_sym_typedef] = ACTIONS(3338), + [anon_sym_virtual] = ACTIONS(3338), + [anon_sym_extern] = ACTIONS(3338), + [anon_sym___attribute__] = ACTIONS(3338), + [anon_sym___attribute] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3343), + [anon_sym___declspec] = ACTIONS(3338), + [anon_sym___based] = ACTIONS(3338), + [anon_sym___cdecl] = ACTIONS(3338), + [anon_sym___clrcall] = ACTIONS(3338), + [anon_sym___stdcall] = ACTIONS(3338), + [anon_sym___fastcall] = ACTIONS(3338), + [anon_sym___thiscall] = ACTIONS(3338), + [anon_sym___vectorcall] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_register] = ACTIONS(3338), + [anon_sym_inline] = ACTIONS(3338), + [anon_sym___inline] = ACTIONS(3338), + [anon_sym___inline__] = ACTIONS(3338), + [anon_sym___forceinline] = ACTIONS(3338), + [anon_sym_thread_local] = ACTIONS(3338), + [anon_sym___thread] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_constexpr] = ACTIONS(3338), + [anon_sym_volatile] = ACTIONS(3338), + [anon_sym_restrict] = ACTIONS(3338), + [anon_sym___restrict__] = ACTIONS(3338), + [anon_sym__Atomic] = ACTIONS(3338), + [anon_sym__Noreturn] = ACTIONS(3338), + [anon_sym_noreturn] = ACTIONS(3338), + [anon_sym__Nonnull] = ACTIONS(3338), + [anon_sym_mutable] = ACTIONS(3338), + [anon_sym_constinit] = ACTIONS(3338), + [anon_sym_consteval] = ACTIONS(3338), + [anon_sym_alignas] = ACTIONS(3338), + [anon_sym__Alignas] = ACTIONS(3338), + [sym_primitive_type] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_case] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_goto] = ACTIONS(3338), + [anon_sym___try] = ACTIONS(3338), + [anon_sym___leave] = ACTIONS(3338), + [anon_sym_not] = ACTIONS(3338), + [anon_sym_compl] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3338), + [anon_sym___alignof] = ACTIONS(3338), + [anon_sym__alignof] = ACTIONS(3338), + [anon_sym_alignof] = ACTIONS(3338), + [anon_sym__Alignof] = ACTIONS(3338), + [anon_sym_offsetof] = ACTIONS(3338), + [anon_sym__Generic] = ACTIONS(3338), + [anon_sym_typename] = ACTIONS(3338), + [anon_sym_asm] = ACTIONS(3338), + [anon_sym___asm__] = ACTIONS(3338), + [anon_sym___asm] = ACTIONS(3338), + [sym_number_literal] = ACTIONS(3343), + [anon_sym_L_SQUOTE] = ACTIONS(3343), + [anon_sym_u_SQUOTE] = ACTIONS(3343), + [anon_sym_U_SQUOTE] = ACTIONS(3343), + [anon_sym_u8_SQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_L_DQUOTE] = ACTIONS(3343), + [anon_sym_u_DQUOTE] = ACTIONS(3343), + [anon_sym_U_DQUOTE] = ACTIONS(3343), + [anon_sym_u8_DQUOTE] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [anon_sym_NULL] = ACTIONS(3338), + [anon_sym_nullptr] = ACTIONS(3338), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3338), + [anon_sym_decltype] = ACTIONS(3338), + [anon_sym_explicit] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_template] = ACTIONS(3338), + [anon_sym_operator] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_static_assert] = ACTIONS(3338), + [anon_sym_concept] = ACTIONS(3338), + [anon_sym_co_return] = ACTIONS(3338), + [anon_sym_co_yield] = ACTIONS(3338), + [anon_sym_R_DQUOTE] = ACTIONS(3343), + [anon_sym_LR_DQUOTE] = ACTIONS(3343), + [anon_sym_uR_DQUOTE] = ACTIONS(3343), + [anon_sym_UR_DQUOTE] = ACTIONS(3343), + [anon_sym_u8R_DQUOTE] = ACTIONS(3343), + [anon_sym_co_await] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_requires] = ACTIONS(3338), + [anon_sym_CARET_CARET] = ACTIONS(3343), + [anon_sym_LBRACK_COLON] = ACTIONS(3343), + [sym_this] = ACTIONS(3338), }, - [STATE(632)] = { - [ts_builtin_sym_end] = ACTIONS(3610), - [sym_identifier] = ACTIONS(3608), - [aux_sym_preproc_include_token1] = ACTIONS(3608), - [aux_sym_preproc_def_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), - [sym_preproc_directive] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym___based] = ACTIONS(3608), - [anon_sym___cdecl] = ACTIONS(3608), - [anon_sym___clrcall] = ACTIONS(3608), - [anon_sym___stdcall] = ACTIONS(3608), - [anon_sym___fastcall] = ACTIONS(3608), - [anon_sym___thiscall] = ACTIONS(3608), - [anon_sym___vectorcall] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_else] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_case] = ACTIONS(3608), - [anon_sym_default] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_goto] = ACTIONS(3608), - [anon_sym___try] = ACTIONS(3608), - [anon_sym___leave] = ACTIONS(3608), - [anon_sym_not] = ACTIONS(3608), - [anon_sym_compl] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_sizeof] = ACTIONS(3608), - [anon_sym___alignof__] = ACTIONS(3608), - [anon_sym___alignof] = ACTIONS(3608), - [anon_sym__alignof] = ACTIONS(3608), - [anon_sym_alignof] = ACTIONS(3608), - [anon_sym__Alignof] = ACTIONS(3608), - [anon_sym_offsetof] = ACTIONS(3608), - [anon_sym__Generic] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [anon_sym_asm] = ACTIONS(3608), - [anon_sym___asm__] = ACTIONS(3608), - [anon_sym___asm] = ACTIONS(3608), - [sym_number_literal] = ACTIONS(3610), - [anon_sym_L_SQUOTE] = ACTIONS(3610), - [anon_sym_u_SQUOTE] = ACTIONS(3610), - [anon_sym_U_SQUOTE] = ACTIONS(3610), - [anon_sym_u8_SQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_L_DQUOTE] = ACTIONS(3610), - [anon_sym_u_DQUOTE] = ACTIONS(3610), - [anon_sym_U_DQUOTE] = ACTIONS(3610), - [anon_sym_u8_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [anon_sym_NULL] = ACTIONS(3608), - [anon_sym_nullptr] = ACTIONS(3608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_export] = ACTIONS(3608), - [anon_sym_module] = ACTIONS(3608), - [anon_sym_import] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_operator] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_static_assert] = ACTIONS(3608), - [anon_sym_concept] = ACTIONS(3608), - [anon_sym_co_return] = ACTIONS(3608), - [anon_sym_co_yield] = ACTIONS(3608), - [anon_sym_R_DQUOTE] = ACTIONS(3610), - [anon_sym_LR_DQUOTE] = ACTIONS(3610), - [anon_sym_uR_DQUOTE] = ACTIONS(3610), - [anon_sym_UR_DQUOTE] = ACTIONS(3610), - [anon_sym_u8R_DQUOTE] = ACTIONS(3610), - [anon_sym_co_await] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_requires] = ACTIONS(3608), - [anon_sym_CARET_CARET] = ACTIONS(3610), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - [sym_this] = ACTIONS(3608), + [STATE(655)] = { + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_include_token1] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token2] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym___cdecl] = ACTIONS(3742), + [anon_sym___clrcall] = ACTIONS(3742), + [anon_sym___stdcall] = ACTIONS(3742), + [anon_sym___fastcall] = ACTIONS(3742), + [anon_sym___thiscall] = ACTIONS(3742), + [anon_sym___vectorcall] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_switch] = ACTIONS(3742), + [anon_sym_case] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_goto] = ACTIONS(3742), + [anon_sym___try] = ACTIONS(3742), + [anon_sym___leave] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(3742), + [anon_sym_compl] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3742), + [anon_sym___alignof__] = ACTIONS(3742), + [anon_sym___alignof] = ACTIONS(3742), + [anon_sym__alignof] = ACTIONS(3742), + [anon_sym_alignof] = ACTIONS(3742), + [anon_sym__Alignof] = ACTIONS(3742), + [anon_sym_offsetof] = ACTIONS(3742), + [anon_sym__Generic] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [anon_sym_asm] = ACTIONS(3742), + [anon_sym___asm__] = ACTIONS(3742), + [anon_sym___asm] = ACTIONS(3742), + [sym_number_literal] = ACTIONS(3744), + [anon_sym_L_SQUOTE] = ACTIONS(3744), + [anon_sym_u_SQUOTE] = ACTIONS(3744), + [anon_sym_U_SQUOTE] = ACTIONS(3744), + [anon_sym_u8_SQUOTE] = ACTIONS(3744), + [anon_sym_SQUOTE] = ACTIONS(3744), + [anon_sym_L_DQUOTE] = ACTIONS(3744), + [anon_sym_u_DQUOTE] = ACTIONS(3744), + [anon_sym_U_DQUOTE] = ACTIONS(3744), + [anon_sym_u8_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [anon_sym_NULL] = ACTIONS(3742), + [anon_sym_nullptr] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_export] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_import] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_delete] = ACTIONS(3742), + [anon_sym_throw] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_concept] = ACTIONS(3742), + [anon_sym_co_return] = ACTIONS(3742), + [anon_sym_co_yield] = ACTIONS(3742), + [anon_sym_R_DQUOTE] = ACTIONS(3744), + [anon_sym_LR_DQUOTE] = ACTIONS(3744), + [anon_sym_uR_DQUOTE] = ACTIONS(3744), + [anon_sym_UR_DQUOTE] = ACTIONS(3744), + [anon_sym_u8R_DQUOTE] = ACTIONS(3744), + [anon_sym_co_await] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_requires] = ACTIONS(3742), + [anon_sym_CARET_CARET] = ACTIONS(3744), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + [sym_this] = ACTIONS(3742), }, - [STATE(633)] = { - [ts_builtin_sym_end] = ACTIONS(3668), - [sym_identifier] = ACTIONS(3666), - [aux_sym_preproc_include_token1] = ACTIONS(3666), - [aux_sym_preproc_def_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token1] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), - [sym_preproc_directive] = ACTIONS(3666), - [anon_sym_LPAREN2] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym___extension__] = ACTIONS(3666), - [anon_sym_typedef] = ACTIONS(3666), - [anon_sym_virtual] = ACTIONS(3666), - [anon_sym_extern] = ACTIONS(3666), - [anon_sym___attribute__] = ACTIONS(3666), - [anon_sym___attribute] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_COLON_COLON] = ACTIONS(3668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), - [anon_sym___declspec] = ACTIONS(3666), - [anon_sym___based] = ACTIONS(3666), - [anon_sym___cdecl] = ACTIONS(3666), - [anon_sym___clrcall] = ACTIONS(3666), - [anon_sym___stdcall] = ACTIONS(3666), - [anon_sym___fastcall] = ACTIONS(3666), - [anon_sym___thiscall] = ACTIONS(3666), - [anon_sym___vectorcall] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_signed] = ACTIONS(3666), - [anon_sym_unsigned] = ACTIONS(3666), - [anon_sym_long] = ACTIONS(3666), - [anon_sym_short] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_register] = ACTIONS(3666), - [anon_sym_inline] = ACTIONS(3666), - [anon_sym___inline] = ACTIONS(3666), - [anon_sym___inline__] = ACTIONS(3666), - [anon_sym___forceinline] = ACTIONS(3666), - [anon_sym_thread_local] = ACTIONS(3666), - [anon_sym___thread] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_constexpr] = ACTIONS(3666), - [anon_sym_volatile] = ACTIONS(3666), - [anon_sym_restrict] = ACTIONS(3666), - [anon_sym___restrict__] = ACTIONS(3666), - [anon_sym__Atomic] = ACTIONS(3666), - [anon_sym__Noreturn] = ACTIONS(3666), - [anon_sym_noreturn] = ACTIONS(3666), - [anon_sym__Nonnull] = ACTIONS(3666), - [anon_sym_mutable] = ACTIONS(3666), - [anon_sym_constinit] = ACTIONS(3666), - [anon_sym_consteval] = ACTIONS(3666), - [anon_sym_alignas] = ACTIONS(3666), - [anon_sym__Alignas] = ACTIONS(3666), - [sym_primitive_type] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_union] = ACTIONS(3666), - [anon_sym_if] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_case] = ACTIONS(3666), - [anon_sym_default] = ACTIONS(3666), - [anon_sym_while] = ACTIONS(3666), - [anon_sym_do] = ACTIONS(3666), - [anon_sym_for] = ACTIONS(3666), - [anon_sym_return] = ACTIONS(3666), - [anon_sym_break] = ACTIONS(3666), - [anon_sym_continue] = ACTIONS(3666), - [anon_sym_goto] = ACTIONS(3666), - [anon_sym___try] = ACTIONS(3666), - [anon_sym___leave] = ACTIONS(3666), - [anon_sym_not] = ACTIONS(3666), - [anon_sym_compl] = ACTIONS(3666), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_sizeof] = ACTIONS(3666), - [anon_sym___alignof__] = ACTIONS(3666), - [anon_sym___alignof] = ACTIONS(3666), - [anon_sym__alignof] = ACTIONS(3666), - [anon_sym_alignof] = ACTIONS(3666), - [anon_sym__Alignof] = ACTIONS(3666), - [anon_sym_offsetof] = ACTIONS(3666), - [anon_sym__Generic] = ACTIONS(3666), - [anon_sym_typename] = ACTIONS(3666), - [anon_sym_asm] = ACTIONS(3666), - [anon_sym___asm__] = ACTIONS(3666), - [anon_sym___asm] = ACTIONS(3666), - [sym_number_literal] = ACTIONS(3668), - [anon_sym_L_SQUOTE] = ACTIONS(3668), - [anon_sym_u_SQUOTE] = ACTIONS(3668), - [anon_sym_U_SQUOTE] = ACTIONS(3668), - [anon_sym_u8_SQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3668), - [anon_sym_L_DQUOTE] = ACTIONS(3668), - [anon_sym_u_DQUOTE] = ACTIONS(3668), - [anon_sym_U_DQUOTE] = ACTIONS(3668), - [anon_sym_u8_DQUOTE] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(3668), - [sym_true] = ACTIONS(3666), - [sym_false] = ACTIONS(3666), - [anon_sym_NULL] = ACTIONS(3666), - [anon_sym_nullptr] = ACTIONS(3666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3666), - [anon_sym_decltype] = ACTIONS(3666), - [anon_sym_explicit] = ACTIONS(3666), - [anon_sym_export] = ACTIONS(3666), - [anon_sym_module] = ACTIONS(3666), - [anon_sym_import] = ACTIONS(3666), - [anon_sym_template] = ACTIONS(3666), - [anon_sym_operator] = ACTIONS(3666), - [anon_sym_try] = ACTIONS(3666), - [anon_sym_delete] = ACTIONS(3666), - [anon_sym_throw] = ACTIONS(3666), - [anon_sym_namespace] = ACTIONS(3666), - [anon_sym_static_assert] = ACTIONS(3666), - [anon_sym_concept] = ACTIONS(3666), - [anon_sym_co_return] = ACTIONS(3666), - [anon_sym_co_yield] = ACTIONS(3666), - [anon_sym_R_DQUOTE] = ACTIONS(3668), - [anon_sym_LR_DQUOTE] = ACTIONS(3668), - [anon_sym_uR_DQUOTE] = ACTIONS(3668), - [anon_sym_UR_DQUOTE] = ACTIONS(3668), - [anon_sym_u8R_DQUOTE] = ACTIONS(3668), - [anon_sym_co_await] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_requires] = ACTIONS(3666), - [anon_sym_CARET_CARET] = ACTIONS(3668), - [anon_sym_LBRACK_COLON] = ACTIONS(3668), - [sym_this] = ACTIONS(3666), + [STATE(656)] = { + [sym_identifier] = ACTIONS(3762), + [aux_sym_preproc_include_token1] = ACTIONS(3762), + [aux_sym_preproc_def_token1] = ACTIONS(3762), + [aux_sym_preproc_if_token1] = ACTIONS(3762), + [aux_sym_preproc_if_token2] = ACTIONS(3762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3762), + [sym_preproc_directive] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_BANG] = ACTIONS(3764), + [anon_sym_TILDE] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_STAR] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym___extension__] = ACTIONS(3762), + [anon_sym_typedef] = ACTIONS(3762), + [anon_sym_virtual] = ACTIONS(3762), + [anon_sym_extern] = ACTIONS(3762), + [anon_sym___attribute__] = ACTIONS(3762), + [anon_sym___attribute] = ACTIONS(3762), + [anon_sym_using] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), + [anon_sym___declspec] = ACTIONS(3762), + [anon_sym___based] = ACTIONS(3762), + [anon_sym___cdecl] = ACTIONS(3762), + [anon_sym___clrcall] = ACTIONS(3762), + [anon_sym___stdcall] = ACTIONS(3762), + [anon_sym___fastcall] = ACTIONS(3762), + [anon_sym___thiscall] = ACTIONS(3762), + [anon_sym___vectorcall] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_signed] = ACTIONS(3762), + [anon_sym_unsigned] = ACTIONS(3762), + [anon_sym_long] = ACTIONS(3762), + [anon_sym_short] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_static] = ACTIONS(3762), + [anon_sym_register] = ACTIONS(3762), + [anon_sym_inline] = ACTIONS(3762), + [anon_sym___inline] = ACTIONS(3762), + [anon_sym___inline__] = ACTIONS(3762), + [anon_sym___forceinline] = ACTIONS(3762), + [anon_sym_thread_local] = ACTIONS(3762), + [anon_sym___thread] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym___restrict__] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym__Noreturn] = ACTIONS(3762), + [anon_sym_noreturn] = ACTIONS(3762), + [anon_sym__Nonnull] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_constinit] = ACTIONS(3762), + [anon_sym_consteval] = ACTIONS(3762), + [anon_sym_alignas] = ACTIONS(3762), + [anon_sym__Alignas] = ACTIONS(3762), + [sym_primitive_type] = ACTIONS(3762), + [anon_sym_enum] = ACTIONS(3762), + [anon_sym_class] = ACTIONS(3762), + [anon_sym_struct] = ACTIONS(3762), + [anon_sym_union] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_switch] = ACTIONS(3762), + [anon_sym_case] = ACTIONS(3762), + [anon_sym_default] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_break] = ACTIONS(3762), + [anon_sym_continue] = ACTIONS(3762), + [anon_sym_goto] = ACTIONS(3762), + [anon_sym___try] = ACTIONS(3762), + [anon_sym___leave] = ACTIONS(3762), + [anon_sym_not] = ACTIONS(3762), + [anon_sym_compl] = ACTIONS(3762), + [anon_sym_DASH_DASH] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3764), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(3762), + [anon_sym___alignof] = ACTIONS(3762), + [anon_sym__alignof] = ACTIONS(3762), + [anon_sym_alignof] = ACTIONS(3762), + [anon_sym__Alignof] = ACTIONS(3762), + [anon_sym_offsetof] = ACTIONS(3762), + [anon_sym__Generic] = ACTIONS(3762), + [anon_sym_typename] = ACTIONS(3762), + [anon_sym_asm] = ACTIONS(3762), + [anon_sym___asm__] = ACTIONS(3762), + [anon_sym___asm] = ACTIONS(3762), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3764), + [anon_sym_u_SQUOTE] = ACTIONS(3764), + [anon_sym_U_SQUOTE] = ACTIONS(3764), + [anon_sym_u8_SQUOTE] = ACTIONS(3764), + [anon_sym_SQUOTE] = ACTIONS(3764), + [anon_sym_L_DQUOTE] = ACTIONS(3764), + [anon_sym_u_DQUOTE] = ACTIONS(3764), + [anon_sym_U_DQUOTE] = ACTIONS(3764), + [anon_sym_u8_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE] = ACTIONS(3764), + [sym_true] = ACTIONS(3762), + [sym_false] = ACTIONS(3762), + [anon_sym_NULL] = ACTIONS(3762), + [anon_sym_nullptr] = ACTIONS(3762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3762), + [anon_sym_decltype] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_export] = ACTIONS(3762), + [anon_sym_module] = ACTIONS(3762), + [anon_sym_import] = ACTIONS(3762), + [anon_sym_template] = ACTIONS(3762), + [anon_sym_operator] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_delete] = ACTIONS(3762), + [anon_sym_throw] = ACTIONS(3762), + [anon_sym_namespace] = ACTIONS(3762), + [anon_sym_static_assert] = ACTIONS(3762), + [anon_sym_concept] = ACTIONS(3762), + [anon_sym_co_return] = ACTIONS(3762), + [anon_sym_co_yield] = ACTIONS(3762), + [anon_sym_R_DQUOTE] = ACTIONS(3764), + [anon_sym_LR_DQUOTE] = ACTIONS(3764), + [anon_sym_uR_DQUOTE] = ACTIONS(3764), + [anon_sym_UR_DQUOTE] = ACTIONS(3764), + [anon_sym_u8R_DQUOTE] = ACTIONS(3764), + [anon_sym_co_await] = ACTIONS(3762), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_requires] = ACTIONS(3762), + [anon_sym_CARET_CARET] = ACTIONS(3764), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), + [sym_this] = ACTIONS(3762), }, - [STATE(634)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym___try] = ACTIONS(3163), - [anon_sym___leave] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3163), - [anon_sym_compl] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = ACTIONS(3163), - [anon_sym___asm] = ACTIONS(3163), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [anon_sym_CARET_CARET] = ACTIONS(3161), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - [sym_this] = ACTIONS(3163), + [STATE(657)] = { + [sym_identifier] = ACTIONS(3510), + [aux_sym_preproc_include_token1] = ACTIONS(3510), + [aux_sym_preproc_def_token1] = ACTIONS(3510), + [aux_sym_preproc_if_token1] = ACTIONS(3510), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3510), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3510), + [sym_preproc_directive] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_STAR] = ACTIONS(3512), + [anon_sym_AMP_AMP] = ACTIONS(3512), + [anon_sym_AMP] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym___extension__] = ACTIONS(3510), + [anon_sym_typedef] = ACTIONS(3510), + [anon_sym_virtual] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3510), + [anon_sym___attribute__] = ACTIONS(3510), + [anon_sym___attribute] = ACTIONS(3510), + [anon_sym_using] = ACTIONS(3510), + [anon_sym_COLON_COLON] = ACTIONS(3512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3512), + [anon_sym___declspec] = ACTIONS(3510), + [anon_sym___based] = ACTIONS(3510), + [anon_sym___cdecl] = ACTIONS(3510), + [anon_sym___clrcall] = ACTIONS(3510), + [anon_sym___stdcall] = ACTIONS(3510), + [anon_sym___fastcall] = ACTIONS(3510), + [anon_sym___thiscall] = ACTIONS(3510), + [anon_sym___vectorcall] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_signed] = ACTIONS(3510), + [anon_sym_unsigned] = ACTIONS(3510), + [anon_sym_long] = ACTIONS(3510), + [anon_sym_short] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_register] = ACTIONS(3510), + [anon_sym_inline] = ACTIONS(3510), + [anon_sym___inline] = ACTIONS(3510), + [anon_sym___inline__] = ACTIONS(3510), + [anon_sym___forceinline] = ACTIONS(3510), + [anon_sym_thread_local] = ACTIONS(3510), + [anon_sym___thread] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_constexpr] = ACTIONS(3510), + [anon_sym_volatile] = ACTIONS(3510), + [anon_sym_restrict] = ACTIONS(3510), + [anon_sym___restrict__] = ACTIONS(3510), + [anon_sym__Atomic] = ACTIONS(3510), + [anon_sym__Noreturn] = ACTIONS(3510), + [anon_sym_noreturn] = ACTIONS(3510), + [anon_sym__Nonnull] = ACTIONS(3510), + [anon_sym_mutable] = ACTIONS(3510), + [anon_sym_constinit] = ACTIONS(3510), + [anon_sym_consteval] = ACTIONS(3510), + [anon_sym_alignas] = ACTIONS(3510), + [anon_sym__Alignas] = ACTIONS(3510), + [sym_primitive_type] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_struct] = ACTIONS(3510), + [anon_sym_union] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_else] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_case] = ACTIONS(3510), + [anon_sym_default] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_goto] = ACTIONS(3510), + [anon_sym___try] = ACTIONS(3510), + [anon_sym___leave] = ACTIONS(3510), + [anon_sym_not] = ACTIONS(3510), + [anon_sym_compl] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_sizeof] = ACTIONS(3510), + [anon_sym___alignof__] = ACTIONS(3510), + [anon_sym___alignof] = ACTIONS(3510), + [anon_sym__alignof] = ACTIONS(3510), + [anon_sym_alignof] = ACTIONS(3510), + [anon_sym__Alignof] = ACTIONS(3510), + [anon_sym_offsetof] = ACTIONS(3510), + [anon_sym__Generic] = ACTIONS(3510), + [anon_sym_typename] = ACTIONS(3510), + [anon_sym_asm] = ACTIONS(3510), + [anon_sym___asm__] = ACTIONS(3510), + [anon_sym___asm] = ACTIONS(3510), + [sym_number_literal] = ACTIONS(3512), + [anon_sym_L_SQUOTE] = ACTIONS(3512), + [anon_sym_u_SQUOTE] = ACTIONS(3512), + [anon_sym_U_SQUOTE] = ACTIONS(3512), + [anon_sym_u8_SQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_L_DQUOTE] = ACTIONS(3512), + [anon_sym_u_DQUOTE] = ACTIONS(3512), + [anon_sym_U_DQUOTE] = ACTIONS(3512), + [anon_sym_u8_DQUOTE] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [anon_sym_NULL] = ACTIONS(3510), + [anon_sym_nullptr] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3510), + [anon_sym_decltype] = ACTIONS(3510), + [anon_sym_explicit] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_template] = ACTIONS(3510), + [anon_sym_operator] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_static_assert] = ACTIONS(3510), + [anon_sym_concept] = ACTIONS(3510), + [anon_sym_co_return] = ACTIONS(3510), + [anon_sym_co_yield] = ACTIONS(3510), + [anon_sym_R_DQUOTE] = ACTIONS(3512), + [anon_sym_LR_DQUOTE] = ACTIONS(3512), + [anon_sym_uR_DQUOTE] = ACTIONS(3512), + [anon_sym_UR_DQUOTE] = ACTIONS(3512), + [anon_sym_u8R_DQUOTE] = ACTIONS(3512), + [anon_sym_co_await] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_requires] = ACTIONS(3510), + [anon_sym_CARET_CARET] = ACTIONS(3512), + [anon_sym_LBRACK_COLON] = ACTIONS(3512), + [sym_this] = ACTIONS(3510), }, - [STATE(635)] = { - [sym_else_clause] = STATE(756), - [sym_identifier] = ACTIONS(3408), - [aux_sym_preproc_include_token1] = ACTIONS(3408), - [aux_sym_preproc_def_token1] = ACTIONS(3408), - [aux_sym_preproc_if_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3408), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3408), - [sym_preproc_directive] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_AMP_AMP] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3408), - [anon_sym_typedef] = ACTIONS(3408), - [anon_sym_virtual] = ACTIONS(3408), - [anon_sym_extern] = ACTIONS(3408), - [anon_sym___attribute__] = ACTIONS(3408), - [anon_sym___attribute] = ACTIONS(3408), - [anon_sym_using] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(3410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), - [anon_sym___declspec] = ACTIONS(3408), - [anon_sym___based] = ACTIONS(3408), - [anon_sym___cdecl] = ACTIONS(3408), - [anon_sym___clrcall] = ACTIONS(3408), - [anon_sym___stdcall] = ACTIONS(3408), - [anon_sym___fastcall] = ACTIONS(3408), - [anon_sym___thiscall] = ACTIONS(3408), - [anon_sym___vectorcall] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_RBRACE] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3408), - [anon_sym_unsigned] = ACTIONS(3408), - [anon_sym_long] = ACTIONS(3408), - [anon_sym_short] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_register] = ACTIONS(3408), - [anon_sym_inline] = ACTIONS(3408), - [anon_sym___inline] = ACTIONS(3408), - [anon_sym___inline__] = ACTIONS(3408), - [anon_sym___forceinline] = ACTIONS(3408), - [anon_sym_thread_local] = ACTIONS(3408), - [anon_sym___thread] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_constexpr] = ACTIONS(3408), - [anon_sym_volatile] = ACTIONS(3408), - [anon_sym_restrict] = ACTIONS(3408), - [anon_sym___restrict__] = ACTIONS(3408), - [anon_sym__Atomic] = ACTIONS(3408), - [anon_sym__Noreturn] = ACTIONS(3408), - [anon_sym_noreturn] = ACTIONS(3408), - [anon_sym__Nonnull] = ACTIONS(3408), - [anon_sym_mutable] = ACTIONS(3408), - [anon_sym_constinit] = ACTIONS(3408), - [anon_sym_consteval] = ACTIONS(3408), - [anon_sym_alignas] = ACTIONS(3408), - [anon_sym__Alignas] = ACTIONS(3408), - [sym_primitive_type] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_else] = ACTIONS(4670), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym___try] = ACTIONS(3408), - [anon_sym___leave] = ACTIONS(3408), - [anon_sym_not] = ACTIONS(3408), - [anon_sym_compl] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3408), - [anon_sym___alignof__] = ACTIONS(3408), - [anon_sym___alignof] = ACTIONS(3408), - [anon_sym__alignof] = ACTIONS(3408), - [anon_sym_alignof] = ACTIONS(3408), - [anon_sym__Alignof] = ACTIONS(3408), - [anon_sym_offsetof] = ACTIONS(3408), - [anon_sym__Generic] = ACTIONS(3408), - [anon_sym_typename] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym___asm__] = ACTIONS(3408), - [anon_sym___asm] = ACTIONS(3408), - [sym_number_literal] = ACTIONS(3410), - [anon_sym_L_SQUOTE] = ACTIONS(3410), - [anon_sym_u_SQUOTE] = ACTIONS(3410), - [anon_sym_U_SQUOTE] = ACTIONS(3410), - [anon_sym_u8_SQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [anon_sym_L_DQUOTE] = ACTIONS(3410), - [anon_sym_u_DQUOTE] = ACTIONS(3410), - [anon_sym_U_DQUOTE] = ACTIONS(3410), - [anon_sym_u8_DQUOTE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [anon_sym_NULL] = ACTIONS(3408), - [anon_sym_nullptr] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3408), - [anon_sym_decltype] = ACTIONS(3408), - [anon_sym_explicit] = ACTIONS(3408), - [anon_sym_export] = ACTIONS(3408), - [anon_sym_import] = ACTIONS(3408), - [anon_sym_template] = ACTIONS(3408), - [anon_sym_operator] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_static_assert] = ACTIONS(3408), - [anon_sym_concept] = ACTIONS(3408), - [anon_sym_co_return] = ACTIONS(3408), - [anon_sym_co_yield] = ACTIONS(3408), - [anon_sym_R_DQUOTE] = ACTIONS(3410), - [anon_sym_LR_DQUOTE] = ACTIONS(3410), - [anon_sym_uR_DQUOTE] = ACTIONS(3410), - [anon_sym_UR_DQUOTE] = ACTIONS(3410), - [anon_sym_u8R_DQUOTE] = ACTIONS(3410), - [anon_sym_co_await] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_requires] = ACTIONS(3408), - [anon_sym_CARET_CARET] = ACTIONS(3410), - [anon_sym_LBRACK_COLON] = ACTIONS(3410), - [sym_this] = ACTIONS(3408), + [STATE(658)] = { + [sym_identifier] = ACTIONS(4052), + [aux_sym_preproc_include_token1] = ACTIONS(4052), + [aux_sym_preproc_def_token1] = ACTIONS(4052), + [aux_sym_preproc_if_token1] = ACTIONS(4052), + [aux_sym_preproc_if_token2] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4052), + [sym_preproc_directive] = ACTIONS(4052), + [anon_sym_LPAREN2] = ACTIONS(4054), + [anon_sym_BANG] = ACTIONS(4054), + [anon_sym_TILDE] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_AMP_AMP] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym___extension__] = ACTIONS(4052), + [anon_sym_typedef] = ACTIONS(4052), + [anon_sym_virtual] = ACTIONS(4052), + [anon_sym_extern] = ACTIONS(4052), + [anon_sym___attribute__] = ACTIONS(4052), + [anon_sym___attribute] = ACTIONS(4052), + [anon_sym_using] = ACTIONS(4052), + [anon_sym_COLON_COLON] = ACTIONS(4054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4054), + [anon_sym___declspec] = ACTIONS(4052), + [anon_sym___based] = ACTIONS(4052), + [anon_sym___cdecl] = ACTIONS(4052), + [anon_sym___clrcall] = ACTIONS(4052), + [anon_sym___stdcall] = ACTIONS(4052), + [anon_sym___fastcall] = ACTIONS(4052), + [anon_sym___thiscall] = ACTIONS(4052), + [anon_sym___vectorcall] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_signed] = ACTIONS(4052), + [anon_sym_unsigned] = ACTIONS(4052), + [anon_sym_long] = ACTIONS(4052), + [anon_sym_short] = ACTIONS(4052), + [anon_sym_LBRACK] = ACTIONS(4052), + [anon_sym_static] = ACTIONS(4052), + [anon_sym_register] = ACTIONS(4052), + [anon_sym_inline] = ACTIONS(4052), + [anon_sym___inline] = ACTIONS(4052), + [anon_sym___inline__] = ACTIONS(4052), + [anon_sym___forceinline] = ACTIONS(4052), + [anon_sym_thread_local] = ACTIONS(4052), + [anon_sym___thread] = ACTIONS(4052), + [anon_sym_const] = ACTIONS(4052), + [anon_sym_constexpr] = ACTIONS(4052), + [anon_sym_volatile] = ACTIONS(4052), + [anon_sym_restrict] = ACTIONS(4052), + [anon_sym___restrict__] = ACTIONS(4052), + [anon_sym__Atomic] = ACTIONS(4052), + [anon_sym__Noreturn] = ACTIONS(4052), + [anon_sym_noreturn] = ACTIONS(4052), + [anon_sym__Nonnull] = ACTIONS(4052), + [anon_sym_mutable] = ACTIONS(4052), + [anon_sym_constinit] = ACTIONS(4052), + [anon_sym_consteval] = ACTIONS(4052), + [anon_sym_alignas] = ACTIONS(4052), + [anon_sym__Alignas] = ACTIONS(4052), + [sym_primitive_type] = ACTIONS(4052), + [anon_sym_enum] = ACTIONS(4052), + [anon_sym_class] = ACTIONS(4052), + [anon_sym_struct] = ACTIONS(4052), + [anon_sym_union] = ACTIONS(4052), + [anon_sym_if] = ACTIONS(4052), + [anon_sym_switch] = ACTIONS(4052), + [anon_sym_case] = ACTIONS(4052), + [anon_sym_default] = ACTIONS(4052), + [anon_sym_while] = ACTIONS(4052), + [anon_sym_do] = ACTIONS(4052), + [anon_sym_for] = ACTIONS(4052), + [anon_sym_return] = ACTIONS(4052), + [anon_sym_break] = ACTIONS(4052), + [anon_sym_continue] = ACTIONS(4052), + [anon_sym_goto] = ACTIONS(4052), + [anon_sym___try] = ACTIONS(4052), + [anon_sym___leave] = ACTIONS(4052), + [anon_sym_not] = ACTIONS(4052), + [anon_sym_compl] = ACTIONS(4052), + [anon_sym_DASH_DASH] = ACTIONS(4054), + [anon_sym_PLUS_PLUS] = ACTIONS(4054), + [anon_sym_sizeof] = ACTIONS(4052), + [anon_sym___alignof__] = ACTIONS(4052), + [anon_sym___alignof] = ACTIONS(4052), + [anon_sym__alignof] = ACTIONS(4052), + [anon_sym_alignof] = ACTIONS(4052), + [anon_sym__Alignof] = ACTIONS(4052), + [anon_sym_offsetof] = ACTIONS(4052), + [anon_sym__Generic] = ACTIONS(4052), + [anon_sym_typename] = ACTIONS(4052), + [anon_sym_asm] = ACTIONS(4052), + [anon_sym___asm__] = ACTIONS(4052), + [anon_sym___asm] = ACTIONS(4052), + [sym_number_literal] = ACTIONS(4054), + [anon_sym_L_SQUOTE] = ACTIONS(4054), + [anon_sym_u_SQUOTE] = ACTIONS(4054), + [anon_sym_U_SQUOTE] = ACTIONS(4054), + [anon_sym_u8_SQUOTE] = ACTIONS(4054), + [anon_sym_SQUOTE] = ACTIONS(4054), + [anon_sym_L_DQUOTE] = ACTIONS(4054), + [anon_sym_u_DQUOTE] = ACTIONS(4054), + [anon_sym_U_DQUOTE] = ACTIONS(4054), + [anon_sym_u8_DQUOTE] = ACTIONS(4054), + [anon_sym_DQUOTE] = ACTIONS(4054), + [sym_true] = ACTIONS(4052), + [sym_false] = ACTIONS(4052), + [anon_sym_NULL] = ACTIONS(4052), + [anon_sym_nullptr] = ACTIONS(4052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4052), + [anon_sym_decltype] = ACTIONS(4052), + [anon_sym_explicit] = ACTIONS(4052), + [anon_sym_export] = ACTIONS(4052), + [anon_sym_module] = ACTIONS(4052), + [anon_sym_import] = ACTIONS(4052), + [anon_sym_template] = ACTIONS(4052), + [anon_sym_operator] = ACTIONS(4052), + [anon_sym_try] = ACTIONS(4052), + [anon_sym_delete] = ACTIONS(4052), + [anon_sym_throw] = ACTIONS(4052), + [anon_sym_namespace] = ACTIONS(4052), + [anon_sym_static_assert] = ACTIONS(4052), + [anon_sym_concept] = ACTIONS(4052), + [anon_sym_co_return] = ACTIONS(4052), + [anon_sym_co_yield] = ACTIONS(4052), + [anon_sym_R_DQUOTE] = ACTIONS(4054), + [anon_sym_LR_DQUOTE] = ACTIONS(4054), + [anon_sym_uR_DQUOTE] = ACTIONS(4054), + [anon_sym_UR_DQUOTE] = ACTIONS(4054), + [anon_sym_u8R_DQUOTE] = ACTIONS(4054), + [anon_sym_co_await] = ACTIONS(4052), + [anon_sym_new] = ACTIONS(4052), + [anon_sym_requires] = ACTIONS(4052), + [anon_sym_CARET_CARET] = ACTIONS(4054), + [anon_sym_LBRACK_COLON] = ACTIONS(4054), + [sym_this] = ACTIONS(4052), }, - [STATE(636)] = { - [ts_builtin_sym_end] = ACTIONS(3660), - [sym_identifier] = ACTIONS(3658), - [aux_sym_preproc_include_token1] = ACTIONS(3658), - [aux_sym_preproc_def_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token1] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), - [sym_preproc_directive] = ACTIONS(3658), - [anon_sym_LPAREN2] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym___extension__] = ACTIONS(3658), - [anon_sym_typedef] = ACTIONS(3658), - [anon_sym_virtual] = ACTIONS(3658), - [anon_sym_extern] = ACTIONS(3658), - [anon_sym___attribute__] = ACTIONS(3658), - [anon_sym___attribute] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), - [anon_sym___declspec] = ACTIONS(3658), - [anon_sym___based] = ACTIONS(3658), - [anon_sym___cdecl] = ACTIONS(3658), - [anon_sym___clrcall] = ACTIONS(3658), - [anon_sym___stdcall] = ACTIONS(3658), - [anon_sym___fastcall] = ACTIONS(3658), - [anon_sym___thiscall] = ACTIONS(3658), - [anon_sym___vectorcall] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_signed] = ACTIONS(3658), - [anon_sym_unsigned] = ACTIONS(3658), - [anon_sym_long] = ACTIONS(3658), - [anon_sym_short] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_register] = ACTIONS(3658), - [anon_sym_inline] = ACTIONS(3658), - [anon_sym___inline] = ACTIONS(3658), - [anon_sym___inline__] = ACTIONS(3658), - [anon_sym___forceinline] = ACTIONS(3658), - [anon_sym_thread_local] = ACTIONS(3658), - [anon_sym___thread] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_constexpr] = ACTIONS(3658), - [anon_sym_volatile] = ACTIONS(3658), - [anon_sym_restrict] = ACTIONS(3658), - [anon_sym___restrict__] = ACTIONS(3658), - [anon_sym__Atomic] = ACTIONS(3658), - [anon_sym__Noreturn] = ACTIONS(3658), - [anon_sym_noreturn] = ACTIONS(3658), - [anon_sym__Nonnull] = ACTIONS(3658), - [anon_sym_mutable] = ACTIONS(3658), - [anon_sym_constinit] = ACTIONS(3658), - [anon_sym_consteval] = ACTIONS(3658), - [anon_sym_alignas] = ACTIONS(3658), - [anon_sym__Alignas] = ACTIONS(3658), - [sym_primitive_type] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3658), - [anon_sym_union] = ACTIONS(3658), - [anon_sym_if] = ACTIONS(3658), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_case] = ACTIONS(3658), - [anon_sym_default] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_for] = ACTIONS(3658), - [anon_sym_return] = ACTIONS(3658), - [anon_sym_break] = ACTIONS(3658), - [anon_sym_continue] = ACTIONS(3658), - [anon_sym_goto] = ACTIONS(3658), - [anon_sym___try] = ACTIONS(3658), - [anon_sym___leave] = ACTIONS(3658), - [anon_sym_not] = ACTIONS(3658), - [anon_sym_compl] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_sizeof] = ACTIONS(3658), - [anon_sym___alignof__] = ACTIONS(3658), - [anon_sym___alignof] = ACTIONS(3658), - [anon_sym__alignof] = ACTIONS(3658), - [anon_sym_alignof] = ACTIONS(3658), - [anon_sym__Alignof] = ACTIONS(3658), - [anon_sym_offsetof] = ACTIONS(3658), - [anon_sym__Generic] = ACTIONS(3658), - [anon_sym_typename] = ACTIONS(3658), - [anon_sym_asm] = ACTIONS(3658), - [anon_sym___asm__] = ACTIONS(3658), - [anon_sym___asm] = ACTIONS(3658), - [sym_number_literal] = ACTIONS(3660), - [anon_sym_L_SQUOTE] = ACTIONS(3660), - [anon_sym_u_SQUOTE] = ACTIONS(3660), - [anon_sym_U_SQUOTE] = ACTIONS(3660), - [anon_sym_u8_SQUOTE] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_L_DQUOTE] = ACTIONS(3660), - [anon_sym_u_DQUOTE] = ACTIONS(3660), - [anon_sym_U_DQUOTE] = ACTIONS(3660), - [anon_sym_u8_DQUOTE] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [sym_true] = ACTIONS(3658), - [sym_false] = ACTIONS(3658), - [anon_sym_NULL] = ACTIONS(3658), - [anon_sym_nullptr] = ACTIONS(3658), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3658), - [anon_sym_decltype] = ACTIONS(3658), - [anon_sym_explicit] = ACTIONS(3658), - [anon_sym_export] = ACTIONS(3658), - [anon_sym_module] = ACTIONS(3658), - [anon_sym_import] = ACTIONS(3658), - [anon_sym_template] = ACTIONS(3658), - [anon_sym_operator] = ACTIONS(3658), - [anon_sym_try] = ACTIONS(3658), - [anon_sym_delete] = ACTIONS(3658), - [anon_sym_throw] = ACTIONS(3658), - [anon_sym_namespace] = ACTIONS(3658), - [anon_sym_static_assert] = ACTIONS(3658), - [anon_sym_concept] = ACTIONS(3658), - [anon_sym_co_return] = ACTIONS(3658), - [anon_sym_co_yield] = ACTIONS(3658), - [anon_sym_R_DQUOTE] = ACTIONS(3660), - [anon_sym_LR_DQUOTE] = ACTIONS(3660), - [anon_sym_uR_DQUOTE] = ACTIONS(3660), - [anon_sym_UR_DQUOTE] = ACTIONS(3660), - [anon_sym_u8R_DQUOTE] = ACTIONS(3660), - [anon_sym_co_await] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_requires] = ACTIONS(3658), - [anon_sym_CARET_CARET] = ACTIONS(3660), - [anon_sym_LBRACK_COLON] = ACTIONS(3660), - [sym_this] = ACTIONS(3658), + [STATE(659)] = { + [sym_identifier] = ACTIONS(3538), + [aux_sym_preproc_include_token1] = ACTIONS(3538), + [aux_sym_preproc_def_token1] = ACTIONS(3538), + [aux_sym_preproc_if_token1] = ACTIONS(3538), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3538), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3538), + [sym_preproc_directive] = ACTIONS(3538), + [anon_sym_LPAREN2] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3538), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym___extension__] = ACTIONS(3538), + [anon_sym_typedef] = ACTIONS(3538), + [anon_sym_virtual] = ACTIONS(3538), + [anon_sym_extern] = ACTIONS(3538), + [anon_sym___attribute__] = ACTIONS(3538), + [anon_sym___attribute] = ACTIONS(3538), + [anon_sym_using] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(3540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3540), + [anon_sym___declspec] = ACTIONS(3538), + [anon_sym___based] = ACTIONS(3538), + [anon_sym___cdecl] = ACTIONS(3538), + [anon_sym___clrcall] = ACTIONS(3538), + [anon_sym___stdcall] = ACTIONS(3538), + [anon_sym___fastcall] = ACTIONS(3538), + [anon_sym___thiscall] = ACTIONS(3538), + [anon_sym___vectorcall] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_RBRACE] = ACTIONS(3540), + [anon_sym_signed] = ACTIONS(3538), + [anon_sym_unsigned] = ACTIONS(3538), + [anon_sym_long] = ACTIONS(3538), + [anon_sym_short] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_register] = ACTIONS(3538), + [anon_sym_inline] = ACTIONS(3538), + [anon_sym___inline] = ACTIONS(3538), + [anon_sym___inline__] = ACTIONS(3538), + [anon_sym___forceinline] = ACTIONS(3538), + [anon_sym_thread_local] = ACTIONS(3538), + [anon_sym___thread] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_constexpr] = ACTIONS(3538), + [anon_sym_volatile] = ACTIONS(3538), + [anon_sym_restrict] = ACTIONS(3538), + [anon_sym___restrict__] = ACTIONS(3538), + [anon_sym__Atomic] = ACTIONS(3538), + [anon_sym__Noreturn] = ACTIONS(3538), + [anon_sym_noreturn] = ACTIONS(3538), + [anon_sym__Nonnull] = ACTIONS(3538), + [anon_sym_mutable] = ACTIONS(3538), + [anon_sym_constinit] = ACTIONS(3538), + [anon_sym_consteval] = ACTIONS(3538), + [anon_sym_alignas] = ACTIONS(3538), + [anon_sym__Alignas] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_struct] = ACTIONS(3538), + [anon_sym_union] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_else] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_case] = ACTIONS(3538), + [anon_sym_default] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_goto] = ACTIONS(3538), + [anon_sym___try] = ACTIONS(3538), + [anon_sym___leave] = ACTIONS(3538), + [anon_sym_not] = ACTIONS(3538), + [anon_sym_compl] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_sizeof] = ACTIONS(3538), + [anon_sym___alignof__] = ACTIONS(3538), + [anon_sym___alignof] = ACTIONS(3538), + [anon_sym__alignof] = ACTIONS(3538), + [anon_sym_alignof] = ACTIONS(3538), + [anon_sym__Alignof] = ACTIONS(3538), + [anon_sym_offsetof] = ACTIONS(3538), + [anon_sym__Generic] = ACTIONS(3538), + [anon_sym_typename] = ACTIONS(3538), + [anon_sym_asm] = ACTIONS(3538), + [anon_sym___asm__] = ACTIONS(3538), + [anon_sym___asm] = ACTIONS(3538), + [sym_number_literal] = ACTIONS(3540), + [anon_sym_L_SQUOTE] = ACTIONS(3540), + [anon_sym_u_SQUOTE] = ACTIONS(3540), + [anon_sym_U_SQUOTE] = ACTIONS(3540), + [anon_sym_u8_SQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_L_DQUOTE] = ACTIONS(3540), + [anon_sym_u_DQUOTE] = ACTIONS(3540), + [anon_sym_U_DQUOTE] = ACTIONS(3540), + [anon_sym_u8_DQUOTE] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [anon_sym_NULL] = ACTIONS(3538), + [anon_sym_nullptr] = ACTIONS(3538), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3538), + [anon_sym_decltype] = ACTIONS(3538), + [anon_sym_explicit] = ACTIONS(3538), + [anon_sym_export] = ACTIONS(3538), + [anon_sym_import] = ACTIONS(3538), + [anon_sym_template] = ACTIONS(3538), + [anon_sym_operator] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_namespace] = ACTIONS(3538), + [anon_sym_static_assert] = ACTIONS(3538), + [anon_sym_concept] = ACTIONS(3538), + [anon_sym_co_return] = ACTIONS(3538), + [anon_sym_co_yield] = ACTIONS(3538), + [anon_sym_R_DQUOTE] = ACTIONS(3540), + [anon_sym_LR_DQUOTE] = ACTIONS(3540), + [anon_sym_uR_DQUOTE] = ACTIONS(3540), + [anon_sym_UR_DQUOTE] = ACTIONS(3540), + [anon_sym_u8R_DQUOTE] = ACTIONS(3540), + [anon_sym_co_await] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_requires] = ACTIONS(3538), + [anon_sym_CARET_CARET] = ACTIONS(3540), + [anon_sym_LBRACK_COLON] = ACTIONS(3540), + [sym_this] = ACTIONS(3538), }, - [STATE(637)] = { - [sym_identifier] = ACTIONS(3520), - [aux_sym_preproc_include_token1] = ACTIONS(3520), - [aux_sym_preproc_def_token1] = ACTIONS(3520), - [aux_sym_preproc_if_token1] = ACTIONS(3520), - [aux_sym_preproc_if_token2] = ACTIONS(3520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3520), - [sym_preproc_directive] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_AMP_AMP] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym___extension__] = ACTIONS(3520), - [anon_sym_typedef] = ACTIONS(3520), - [anon_sym_virtual] = ACTIONS(3520), - [anon_sym_extern] = ACTIONS(3520), - [anon_sym___attribute__] = ACTIONS(3520), - [anon_sym___attribute] = ACTIONS(3520), - [anon_sym_using] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3522), - [anon_sym___declspec] = ACTIONS(3520), - [anon_sym___based] = ACTIONS(3520), - [anon_sym___cdecl] = ACTIONS(3520), - [anon_sym___clrcall] = ACTIONS(3520), - [anon_sym___stdcall] = ACTIONS(3520), - [anon_sym___fastcall] = ACTIONS(3520), - [anon_sym___thiscall] = ACTIONS(3520), - [anon_sym___vectorcall] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_signed] = ACTIONS(3520), - [anon_sym_unsigned] = ACTIONS(3520), - [anon_sym_long] = ACTIONS(3520), - [anon_sym_short] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_register] = ACTIONS(3520), - [anon_sym_inline] = ACTIONS(3520), - [anon_sym___inline] = ACTIONS(3520), - [anon_sym___inline__] = ACTIONS(3520), - [anon_sym___forceinline] = ACTIONS(3520), - [anon_sym_thread_local] = ACTIONS(3520), - [anon_sym___thread] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_constexpr] = ACTIONS(3520), - [anon_sym_volatile] = ACTIONS(3520), - [anon_sym_restrict] = ACTIONS(3520), - [anon_sym___restrict__] = ACTIONS(3520), - [anon_sym__Atomic] = ACTIONS(3520), - [anon_sym__Noreturn] = ACTIONS(3520), - [anon_sym_noreturn] = ACTIONS(3520), - [anon_sym__Nonnull] = ACTIONS(3520), - [anon_sym_mutable] = ACTIONS(3520), - [anon_sym_constinit] = ACTIONS(3520), - [anon_sym_consteval] = ACTIONS(3520), - [anon_sym_alignas] = ACTIONS(3520), - [anon_sym__Alignas] = ACTIONS(3520), - [sym_primitive_type] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), - [anon_sym_class] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(3520), - [anon_sym_union] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_else] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_case] = ACTIONS(3520), - [anon_sym_default] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_goto] = ACTIONS(3520), - [anon_sym___try] = ACTIONS(3520), - [anon_sym___leave] = ACTIONS(3520), - [anon_sym_not] = ACTIONS(3520), - [anon_sym_compl] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_sizeof] = ACTIONS(3520), - [anon_sym___alignof__] = ACTIONS(3520), - [anon_sym___alignof] = ACTIONS(3520), - [anon_sym__alignof] = ACTIONS(3520), - [anon_sym_alignof] = ACTIONS(3520), - [anon_sym__Alignof] = ACTIONS(3520), - [anon_sym_offsetof] = ACTIONS(3520), - [anon_sym__Generic] = ACTIONS(3520), - [anon_sym_typename] = ACTIONS(3520), - [anon_sym_asm] = ACTIONS(3520), - [anon_sym___asm__] = ACTIONS(3520), - [anon_sym___asm] = ACTIONS(3520), - [sym_number_literal] = ACTIONS(3522), - [anon_sym_L_SQUOTE] = ACTIONS(3522), - [anon_sym_u_SQUOTE] = ACTIONS(3522), - [anon_sym_U_SQUOTE] = ACTIONS(3522), - [anon_sym_u8_SQUOTE] = ACTIONS(3522), - [anon_sym_SQUOTE] = ACTIONS(3522), - [anon_sym_L_DQUOTE] = ACTIONS(3522), - [anon_sym_u_DQUOTE] = ACTIONS(3522), - [anon_sym_U_DQUOTE] = ACTIONS(3522), - [anon_sym_u8_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [sym_true] = ACTIONS(3520), - [sym_false] = ACTIONS(3520), - [anon_sym_NULL] = ACTIONS(3520), - [anon_sym_nullptr] = ACTIONS(3520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3520), - [anon_sym_decltype] = ACTIONS(3520), - [anon_sym_explicit] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3520), - [anon_sym_module] = ACTIONS(3520), - [anon_sym_import] = ACTIONS(3520), - [anon_sym_template] = ACTIONS(3520), - [anon_sym_operator] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_delete] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_namespace] = ACTIONS(3520), - [anon_sym_static_assert] = ACTIONS(3520), - [anon_sym_concept] = ACTIONS(3520), - [anon_sym_co_return] = ACTIONS(3520), - [anon_sym_co_yield] = ACTIONS(3520), - [anon_sym_R_DQUOTE] = ACTIONS(3522), - [anon_sym_LR_DQUOTE] = ACTIONS(3522), - [anon_sym_uR_DQUOTE] = ACTIONS(3522), - [anon_sym_UR_DQUOTE] = ACTIONS(3522), - [anon_sym_u8R_DQUOTE] = ACTIONS(3522), - [anon_sym_co_await] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_requires] = ACTIONS(3520), - [anon_sym_CARET_CARET] = ACTIONS(3522), - [anon_sym_LBRACK_COLON] = ACTIONS(3522), - [sym_this] = ACTIONS(3520), + [STATE(660)] = { + [ts_builtin_sym_end] = ACTIONS(4128), + [sym_identifier] = ACTIONS(4126), + [aux_sym_preproc_include_token1] = ACTIONS(4126), + [aux_sym_preproc_def_token1] = ACTIONS(4126), + [anon_sym_COMMA] = ACTIONS(4128), + [aux_sym_preproc_if_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4126), + [sym_preproc_directive] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4128), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_TILDE] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4126), + [anon_sym_PLUS] = ACTIONS(4126), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_AMP_AMP] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(4128), + [anon_sym___extension__] = ACTIONS(4126), + [anon_sym_typedef] = ACTIONS(4126), + [anon_sym_virtual] = ACTIONS(4126), + [anon_sym_extern] = ACTIONS(4126), + [anon_sym___attribute__] = ACTIONS(4126), + [anon_sym___attribute] = ACTIONS(4126), + [anon_sym_using] = ACTIONS(4126), + [anon_sym_COLON_COLON] = ACTIONS(4128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4128), + [anon_sym___declspec] = ACTIONS(4126), + [anon_sym___based] = ACTIONS(4126), + [anon_sym___cdecl] = ACTIONS(4126), + [anon_sym___clrcall] = ACTIONS(4126), + [anon_sym___stdcall] = ACTIONS(4126), + [anon_sym___fastcall] = ACTIONS(4126), + [anon_sym___thiscall] = ACTIONS(4126), + [anon_sym___vectorcall] = ACTIONS(4126), + [anon_sym_LBRACE] = ACTIONS(4128), + [anon_sym_RBRACE] = ACTIONS(4128), + [anon_sym_signed] = ACTIONS(4126), + [anon_sym_unsigned] = ACTIONS(4126), + [anon_sym_long] = ACTIONS(4126), + [anon_sym_short] = ACTIONS(4126), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_static] = ACTIONS(4126), + [anon_sym_register] = ACTIONS(4126), + [anon_sym_inline] = ACTIONS(4126), + [anon_sym___inline] = ACTIONS(4126), + [anon_sym___inline__] = ACTIONS(4126), + [anon_sym___forceinline] = ACTIONS(4126), + [anon_sym_thread_local] = ACTIONS(4126), + [anon_sym___thread] = ACTIONS(4126), + [anon_sym_const] = ACTIONS(4126), + [anon_sym_constexpr] = ACTIONS(4126), + [anon_sym_volatile] = ACTIONS(4126), + [anon_sym_restrict] = ACTIONS(4126), + [anon_sym___restrict__] = ACTIONS(4126), + [anon_sym__Atomic] = ACTIONS(4126), + [anon_sym__Noreturn] = ACTIONS(4126), + [anon_sym_noreturn] = ACTIONS(4126), + [anon_sym__Nonnull] = ACTIONS(4126), + [anon_sym_mutable] = ACTIONS(4126), + [anon_sym_constinit] = ACTIONS(4126), + [anon_sym_consteval] = ACTIONS(4126), + [anon_sym_alignas] = ACTIONS(4126), + [anon_sym__Alignas] = ACTIONS(4126), + [sym_primitive_type] = ACTIONS(4126), + [anon_sym_enum] = ACTIONS(4126), + [anon_sym_class] = ACTIONS(4126), + [anon_sym_struct] = ACTIONS(4126), + [anon_sym_union] = ACTIONS(4126), + [anon_sym_if] = ACTIONS(4126), + [anon_sym_switch] = ACTIONS(4126), + [anon_sym_case] = ACTIONS(4126), + [anon_sym_default] = ACTIONS(4126), + [anon_sym_while] = ACTIONS(4126), + [anon_sym_do] = ACTIONS(4126), + [anon_sym_for] = ACTIONS(4126), + [anon_sym_return] = ACTIONS(4126), + [anon_sym_break] = ACTIONS(4126), + [anon_sym_continue] = ACTIONS(4126), + [anon_sym_goto] = ACTIONS(4126), + [anon_sym_not] = ACTIONS(4126), + [anon_sym_compl] = ACTIONS(4126), + [anon_sym_DASH_DASH] = ACTIONS(4128), + [anon_sym_PLUS_PLUS] = ACTIONS(4128), + [anon_sym_sizeof] = ACTIONS(4126), + [anon_sym___alignof__] = ACTIONS(4126), + [anon_sym___alignof] = ACTIONS(4126), + [anon_sym__alignof] = ACTIONS(4126), + [anon_sym_alignof] = ACTIONS(4126), + [anon_sym__Alignof] = ACTIONS(4126), + [anon_sym_offsetof] = ACTIONS(4126), + [anon_sym__Generic] = ACTIONS(4126), + [anon_sym_typename] = ACTIONS(4126), + [anon_sym_asm] = ACTIONS(4126), + [anon_sym___asm__] = ACTIONS(4126), + [anon_sym___asm] = ACTIONS(4126), + [sym_number_literal] = ACTIONS(4128), + [anon_sym_L_SQUOTE] = ACTIONS(4128), + [anon_sym_u_SQUOTE] = ACTIONS(4128), + [anon_sym_U_SQUOTE] = ACTIONS(4128), + [anon_sym_u8_SQUOTE] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4128), + [anon_sym_L_DQUOTE] = ACTIONS(4128), + [anon_sym_u_DQUOTE] = ACTIONS(4128), + [anon_sym_U_DQUOTE] = ACTIONS(4128), + [anon_sym_u8_DQUOTE] = ACTIONS(4128), + [anon_sym_DQUOTE] = ACTIONS(4128), + [sym_true] = ACTIONS(4126), + [sym_false] = ACTIONS(4126), + [anon_sym_NULL] = ACTIONS(4126), + [anon_sym_nullptr] = ACTIONS(4126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4126), + [anon_sym_decltype] = ACTIONS(4126), + [anon_sym_explicit] = ACTIONS(4126), + [anon_sym_export] = ACTIONS(4126), + [anon_sym_module] = ACTIONS(4126), + [anon_sym_import] = ACTIONS(4126), + [anon_sym_template] = ACTIONS(4126), + [anon_sym_operator] = ACTIONS(4126), + [anon_sym_try] = ACTIONS(4126), + [anon_sym_delete] = ACTIONS(4126), + [anon_sym_throw] = ACTIONS(4126), + [anon_sym_namespace] = ACTIONS(4126), + [anon_sym_static_assert] = ACTIONS(4126), + [anon_sym_concept] = ACTIONS(4126), + [anon_sym_co_return] = ACTIONS(4126), + [anon_sym_co_yield] = ACTIONS(4126), + [anon_sym_R_DQUOTE] = ACTIONS(4128), + [anon_sym_LR_DQUOTE] = ACTIONS(4128), + [anon_sym_uR_DQUOTE] = ACTIONS(4128), + [anon_sym_UR_DQUOTE] = ACTIONS(4128), + [anon_sym_u8R_DQUOTE] = ACTIONS(4128), + [anon_sym_co_await] = ACTIONS(4126), + [anon_sym_new] = ACTIONS(4126), + [anon_sym_requires] = ACTIONS(4126), + [anon_sym_CARET_CARET] = ACTIONS(4128), + [anon_sym_LBRACK_COLON] = ACTIONS(4128), + [sym_this] = ACTIONS(4126), }, - [STATE(638)] = { - [ts_builtin_sym_end] = ACTIONS(3664), - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_include_token1] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym___cdecl] = ACTIONS(3662), - [anon_sym___clrcall] = ACTIONS(3662), - [anon_sym___stdcall] = ACTIONS(3662), - [anon_sym___fastcall] = ACTIONS(3662), - [anon_sym___thiscall] = ACTIONS(3662), - [anon_sym___vectorcall] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_goto] = ACTIONS(3662), - [anon_sym___try] = ACTIONS(3662), - [anon_sym___leave] = ACTIONS(3662), - [anon_sym_not] = ACTIONS(3662), - [anon_sym_compl] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_sizeof] = ACTIONS(3662), - [anon_sym___alignof__] = ACTIONS(3662), - [anon_sym___alignof] = ACTIONS(3662), - [anon_sym__alignof] = ACTIONS(3662), - [anon_sym_alignof] = ACTIONS(3662), - [anon_sym__Alignof] = ACTIONS(3662), - [anon_sym_offsetof] = ACTIONS(3662), - [anon_sym__Generic] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [anon_sym_asm] = ACTIONS(3662), - [anon_sym___asm__] = ACTIONS(3662), - [anon_sym___asm] = ACTIONS(3662), - [sym_number_literal] = ACTIONS(3664), - [anon_sym_L_SQUOTE] = ACTIONS(3664), - [anon_sym_u_SQUOTE] = ACTIONS(3664), - [anon_sym_U_SQUOTE] = ACTIONS(3664), - [anon_sym_u8_SQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_L_DQUOTE] = ACTIONS(3664), - [anon_sym_u_DQUOTE] = ACTIONS(3664), - [anon_sym_U_DQUOTE] = ACTIONS(3664), - [anon_sym_u8_DQUOTE] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [anon_sym_NULL] = ACTIONS(3662), - [anon_sym_nullptr] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_concept] = ACTIONS(3662), - [anon_sym_co_return] = ACTIONS(3662), - [anon_sym_co_yield] = ACTIONS(3662), - [anon_sym_R_DQUOTE] = ACTIONS(3664), - [anon_sym_LR_DQUOTE] = ACTIONS(3664), - [anon_sym_uR_DQUOTE] = ACTIONS(3664), - [anon_sym_UR_DQUOTE] = ACTIONS(3664), - [anon_sym_u8R_DQUOTE] = ACTIONS(3664), - [anon_sym_co_await] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3662), - [anon_sym_CARET_CARET] = ACTIONS(3664), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - [sym_this] = ACTIONS(3662), + [STATE(661)] = { + [sym_identifier] = ACTIONS(3542), + [aux_sym_preproc_include_token1] = ACTIONS(3542), + [aux_sym_preproc_def_token1] = ACTIONS(3542), + [aux_sym_preproc_if_token1] = ACTIONS(3542), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3542), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3542), + [sym_preproc_directive] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_AMP_AMP] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3542), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym___extension__] = ACTIONS(3542), + [anon_sym_typedef] = ACTIONS(3542), + [anon_sym_virtual] = ACTIONS(3542), + [anon_sym_extern] = ACTIONS(3542), + [anon_sym___attribute__] = ACTIONS(3542), + [anon_sym___attribute] = ACTIONS(3542), + [anon_sym_using] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3544), + [anon_sym___declspec] = ACTIONS(3542), + [anon_sym___based] = ACTIONS(3542), + [anon_sym___cdecl] = ACTIONS(3542), + [anon_sym___clrcall] = ACTIONS(3542), + [anon_sym___stdcall] = ACTIONS(3542), + [anon_sym___fastcall] = ACTIONS(3542), + [anon_sym___thiscall] = ACTIONS(3542), + [anon_sym___vectorcall] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_RBRACE] = ACTIONS(3544), + [anon_sym_signed] = ACTIONS(3542), + [anon_sym_unsigned] = ACTIONS(3542), + [anon_sym_long] = ACTIONS(3542), + [anon_sym_short] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_register] = ACTIONS(3542), + [anon_sym_inline] = ACTIONS(3542), + [anon_sym___inline] = ACTIONS(3542), + [anon_sym___inline__] = ACTIONS(3542), + [anon_sym___forceinline] = ACTIONS(3542), + [anon_sym_thread_local] = ACTIONS(3542), + [anon_sym___thread] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_constexpr] = ACTIONS(3542), + [anon_sym_volatile] = ACTIONS(3542), + [anon_sym_restrict] = ACTIONS(3542), + [anon_sym___restrict__] = ACTIONS(3542), + [anon_sym__Atomic] = ACTIONS(3542), + [anon_sym__Noreturn] = ACTIONS(3542), + [anon_sym_noreturn] = ACTIONS(3542), + [anon_sym__Nonnull] = ACTIONS(3542), + [anon_sym_mutable] = ACTIONS(3542), + [anon_sym_constinit] = ACTIONS(3542), + [anon_sym_consteval] = ACTIONS(3542), + [anon_sym_alignas] = ACTIONS(3542), + [anon_sym__Alignas] = ACTIONS(3542), + [sym_primitive_type] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_else] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_case] = ACTIONS(3542), + [anon_sym_default] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_goto] = ACTIONS(3542), + [anon_sym___try] = ACTIONS(3542), + [anon_sym___leave] = ACTIONS(3542), + [anon_sym_not] = ACTIONS(3542), + [anon_sym_compl] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_sizeof] = ACTIONS(3542), + [anon_sym___alignof__] = ACTIONS(3542), + [anon_sym___alignof] = ACTIONS(3542), + [anon_sym__alignof] = ACTIONS(3542), + [anon_sym_alignof] = ACTIONS(3542), + [anon_sym__Alignof] = ACTIONS(3542), + [anon_sym_offsetof] = ACTIONS(3542), + [anon_sym__Generic] = ACTIONS(3542), + [anon_sym_typename] = ACTIONS(3542), + [anon_sym_asm] = ACTIONS(3542), + [anon_sym___asm__] = ACTIONS(3542), + [anon_sym___asm] = ACTIONS(3542), + [sym_number_literal] = ACTIONS(3544), + [anon_sym_L_SQUOTE] = ACTIONS(3544), + [anon_sym_u_SQUOTE] = ACTIONS(3544), + [anon_sym_U_SQUOTE] = ACTIONS(3544), + [anon_sym_u8_SQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_L_DQUOTE] = ACTIONS(3544), + [anon_sym_u_DQUOTE] = ACTIONS(3544), + [anon_sym_U_DQUOTE] = ACTIONS(3544), + [anon_sym_u8_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [anon_sym_NULL] = ACTIONS(3542), + [anon_sym_nullptr] = ACTIONS(3542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3542), + [anon_sym_decltype] = ACTIONS(3542), + [anon_sym_explicit] = ACTIONS(3542), + [anon_sym_export] = ACTIONS(3542), + [anon_sym_import] = ACTIONS(3542), + [anon_sym_template] = ACTIONS(3542), + [anon_sym_operator] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_namespace] = ACTIONS(3542), + [anon_sym_static_assert] = ACTIONS(3542), + [anon_sym_concept] = ACTIONS(3542), + [anon_sym_co_return] = ACTIONS(3542), + [anon_sym_co_yield] = ACTIONS(3542), + [anon_sym_R_DQUOTE] = ACTIONS(3544), + [anon_sym_LR_DQUOTE] = ACTIONS(3544), + [anon_sym_uR_DQUOTE] = ACTIONS(3544), + [anon_sym_UR_DQUOTE] = ACTIONS(3544), + [anon_sym_u8R_DQUOTE] = ACTIONS(3544), + [anon_sym_co_await] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_requires] = ACTIONS(3542), + [anon_sym_CARET_CARET] = ACTIONS(3544), + [anon_sym_LBRACK_COLON] = ACTIONS(3544), + [sym_this] = ACTIONS(3542), }, - [STATE(639)] = { - [ts_builtin_sym_end] = ACTIONS(3664), - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_include_token1] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym___cdecl] = ACTIONS(3662), - [anon_sym___clrcall] = ACTIONS(3662), - [anon_sym___stdcall] = ACTIONS(3662), - [anon_sym___fastcall] = ACTIONS(3662), - [anon_sym___thiscall] = ACTIONS(3662), - [anon_sym___vectorcall] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_goto] = ACTIONS(3662), - [anon_sym___try] = ACTIONS(3662), - [anon_sym___leave] = ACTIONS(3662), - [anon_sym_not] = ACTIONS(3662), - [anon_sym_compl] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_sizeof] = ACTIONS(3662), - [anon_sym___alignof__] = ACTIONS(3662), - [anon_sym___alignof] = ACTIONS(3662), - [anon_sym__alignof] = ACTIONS(3662), - [anon_sym_alignof] = ACTIONS(3662), - [anon_sym__Alignof] = ACTIONS(3662), - [anon_sym_offsetof] = ACTIONS(3662), - [anon_sym__Generic] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [anon_sym_asm] = ACTIONS(3662), - [anon_sym___asm__] = ACTIONS(3662), - [anon_sym___asm] = ACTIONS(3662), - [sym_number_literal] = ACTIONS(3664), - [anon_sym_L_SQUOTE] = ACTIONS(3664), - [anon_sym_u_SQUOTE] = ACTIONS(3664), - [anon_sym_U_SQUOTE] = ACTIONS(3664), - [anon_sym_u8_SQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_L_DQUOTE] = ACTIONS(3664), - [anon_sym_u_DQUOTE] = ACTIONS(3664), - [anon_sym_U_DQUOTE] = ACTIONS(3664), - [anon_sym_u8_DQUOTE] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [anon_sym_NULL] = ACTIONS(3662), - [anon_sym_nullptr] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_module] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_concept] = ACTIONS(3662), - [anon_sym_co_return] = ACTIONS(3662), - [anon_sym_co_yield] = ACTIONS(3662), - [anon_sym_R_DQUOTE] = ACTIONS(3664), - [anon_sym_LR_DQUOTE] = ACTIONS(3664), - [anon_sym_uR_DQUOTE] = ACTIONS(3664), - [anon_sym_UR_DQUOTE] = ACTIONS(3664), - [anon_sym_u8R_DQUOTE] = ACTIONS(3664), - [anon_sym_co_await] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3662), - [anon_sym_CARET_CARET] = ACTIONS(3664), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - [sym_this] = ACTIONS(3662), + [STATE(662)] = { + [ts_builtin_sym_end] = ACTIONS(3844), + [sym_identifier] = ACTIONS(3842), + [aux_sym_preproc_include_token1] = ACTIONS(3842), + [aux_sym_preproc_def_token1] = ACTIONS(3842), + [anon_sym_COMMA] = ACTIONS(3844), + [aux_sym_preproc_if_token1] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3842), + [sym_preproc_directive] = ACTIONS(3842), + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_BANG] = ACTIONS(3844), + [anon_sym_TILDE] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3842), + [anon_sym_PLUS] = ACTIONS(3842), + [anon_sym_STAR] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym___extension__] = ACTIONS(3842), + [anon_sym_typedef] = ACTIONS(3842), + [anon_sym_virtual] = ACTIONS(3842), + [anon_sym_extern] = ACTIONS(3842), + [anon_sym___attribute__] = ACTIONS(3842), + [anon_sym___attribute] = ACTIONS(3842), + [anon_sym_using] = ACTIONS(3842), + [anon_sym_COLON_COLON] = ACTIONS(3844), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3844), + [anon_sym___declspec] = ACTIONS(3842), + [anon_sym___based] = ACTIONS(3842), + [anon_sym___cdecl] = ACTIONS(3842), + [anon_sym___clrcall] = ACTIONS(3842), + [anon_sym___stdcall] = ACTIONS(3842), + [anon_sym___fastcall] = ACTIONS(3842), + [anon_sym___thiscall] = ACTIONS(3842), + [anon_sym___vectorcall] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3844), + [anon_sym_RBRACE] = ACTIONS(3844), + [anon_sym_signed] = ACTIONS(3842), + [anon_sym_unsigned] = ACTIONS(3842), + [anon_sym_long] = ACTIONS(3842), + [anon_sym_short] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_static] = ACTIONS(3842), + [anon_sym_register] = ACTIONS(3842), + [anon_sym_inline] = ACTIONS(3842), + [anon_sym___inline] = ACTIONS(3842), + [anon_sym___inline__] = ACTIONS(3842), + [anon_sym___forceinline] = ACTIONS(3842), + [anon_sym_thread_local] = ACTIONS(3842), + [anon_sym___thread] = ACTIONS(3842), + [anon_sym_const] = ACTIONS(3842), + [anon_sym_constexpr] = ACTIONS(3842), + [anon_sym_volatile] = ACTIONS(3842), + [anon_sym_restrict] = ACTIONS(3842), + [anon_sym___restrict__] = ACTIONS(3842), + [anon_sym__Atomic] = ACTIONS(3842), + [anon_sym__Noreturn] = ACTIONS(3842), + [anon_sym_noreturn] = ACTIONS(3842), + [anon_sym__Nonnull] = ACTIONS(3842), + [anon_sym_mutable] = ACTIONS(3842), + [anon_sym_constinit] = ACTIONS(3842), + [anon_sym_consteval] = ACTIONS(3842), + [anon_sym_alignas] = ACTIONS(3842), + [anon_sym__Alignas] = ACTIONS(3842), + [sym_primitive_type] = ACTIONS(3842), + [anon_sym_enum] = ACTIONS(3842), + [anon_sym_class] = ACTIONS(3842), + [anon_sym_struct] = ACTIONS(3842), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_if] = ACTIONS(3842), + [anon_sym_switch] = ACTIONS(3842), + [anon_sym_case] = ACTIONS(3842), + [anon_sym_default] = ACTIONS(3842), + [anon_sym_while] = ACTIONS(3842), + [anon_sym_do] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3842), + [anon_sym_return] = ACTIONS(3842), + [anon_sym_break] = ACTIONS(3842), + [anon_sym_continue] = ACTIONS(3842), + [anon_sym_goto] = ACTIONS(3842), + [anon_sym_not] = ACTIONS(3842), + [anon_sym_compl] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(3842), + [anon_sym___alignof__] = ACTIONS(3842), + [anon_sym___alignof] = ACTIONS(3842), + [anon_sym__alignof] = ACTIONS(3842), + [anon_sym_alignof] = ACTIONS(3842), + [anon_sym__Alignof] = ACTIONS(3842), + [anon_sym_offsetof] = ACTIONS(3842), + [anon_sym__Generic] = ACTIONS(3842), + [anon_sym_typename] = ACTIONS(3842), + [anon_sym_asm] = ACTIONS(3842), + [anon_sym___asm__] = ACTIONS(3842), + [anon_sym___asm] = ACTIONS(3842), + [sym_number_literal] = ACTIONS(3844), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3844), + [anon_sym_u_DQUOTE] = ACTIONS(3844), + [anon_sym_U_DQUOTE] = ACTIONS(3844), + [anon_sym_u8_DQUOTE] = ACTIONS(3844), + [anon_sym_DQUOTE] = ACTIONS(3844), + [sym_true] = ACTIONS(3842), + [sym_false] = ACTIONS(3842), + [anon_sym_NULL] = ACTIONS(3842), + [anon_sym_nullptr] = ACTIONS(3842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3842), + [anon_sym_decltype] = ACTIONS(3842), + [anon_sym_explicit] = ACTIONS(3842), + [anon_sym_export] = ACTIONS(3842), + [anon_sym_module] = ACTIONS(3842), + [anon_sym_import] = ACTIONS(3842), + [anon_sym_template] = ACTIONS(3842), + [anon_sym_operator] = ACTIONS(3842), + [anon_sym_try] = ACTIONS(3842), + [anon_sym_delete] = ACTIONS(3842), + [anon_sym_throw] = ACTIONS(3842), + [anon_sym_namespace] = ACTIONS(3842), + [anon_sym_static_assert] = ACTIONS(3842), + [anon_sym_concept] = ACTIONS(3842), + [anon_sym_co_return] = ACTIONS(3842), + [anon_sym_co_yield] = ACTIONS(3842), + [anon_sym_R_DQUOTE] = ACTIONS(3844), + [anon_sym_LR_DQUOTE] = ACTIONS(3844), + [anon_sym_uR_DQUOTE] = ACTIONS(3844), + [anon_sym_UR_DQUOTE] = ACTIONS(3844), + [anon_sym_u8R_DQUOTE] = ACTIONS(3844), + [anon_sym_co_await] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3842), + [anon_sym_requires] = ACTIONS(3842), + [anon_sym_CARET_CARET] = ACTIONS(3844), + [anon_sym_LBRACK_COLON] = ACTIONS(3844), + [sym_this] = ACTIONS(3842), }, - [STATE(640)] = { - [sym_identifier] = ACTIONS(3592), - [aux_sym_preproc_include_token1] = ACTIONS(3592), - [aux_sym_preproc_def_token1] = ACTIONS(3592), - [aux_sym_preproc_if_token1] = ACTIONS(3592), - [aux_sym_preproc_if_token2] = ACTIONS(3592), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3592), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3592), - [sym_preproc_directive] = ACTIONS(3592), - [anon_sym_LPAREN2] = ACTIONS(3594), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_TILDE] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(3594), - [anon_sym_AMP_AMP] = ACTIONS(3594), - [anon_sym_AMP] = ACTIONS(3592), - [anon_sym_SEMI] = ACTIONS(3594), - [anon_sym___extension__] = ACTIONS(3592), - [anon_sym_typedef] = ACTIONS(3592), - [anon_sym_virtual] = ACTIONS(3592), - [anon_sym_extern] = ACTIONS(3592), - [anon_sym___attribute__] = ACTIONS(3592), - [anon_sym___attribute] = ACTIONS(3592), - [anon_sym_using] = ACTIONS(3592), - [anon_sym_COLON_COLON] = ACTIONS(3594), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3594), - [anon_sym___declspec] = ACTIONS(3592), - [anon_sym___based] = ACTIONS(3592), - [anon_sym___cdecl] = ACTIONS(3592), - [anon_sym___clrcall] = ACTIONS(3592), - [anon_sym___stdcall] = ACTIONS(3592), - [anon_sym___fastcall] = ACTIONS(3592), - [anon_sym___thiscall] = ACTIONS(3592), - [anon_sym___vectorcall] = ACTIONS(3592), - [anon_sym_LBRACE] = ACTIONS(3594), - [anon_sym_signed] = ACTIONS(3592), - [anon_sym_unsigned] = ACTIONS(3592), - [anon_sym_long] = ACTIONS(3592), - [anon_sym_short] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3592), - [anon_sym_static] = ACTIONS(3592), - [anon_sym_register] = ACTIONS(3592), - [anon_sym_inline] = ACTIONS(3592), - [anon_sym___inline] = ACTIONS(3592), - [anon_sym___inline__] = ACTIONS(3592), - [anon_sym___forceinline] = ACTIONS(3592), - [anon_sym_thread_local] = ACTIONS(3592), - [anon_sym___thread] = ACTIONS(3592), - [anon_sym_const] = ACTIONS(3592), - [anon_sym_constexpr] = ACTIONS(3592), - [anon_sym_volatile] = ACTIONS(3592), - [anon_sym_restrict] = ACTIONS(3592), - [anon_sym___restrict__] = ACTIONS(3592), - [anon_sym__Atomic] = ACTIONS(3592), - [anon_sym__Noreturn] = ACTIONS(3592), - [anon_sym_noreturn] = ACTIONS(3592), - [anon_sym__Nonnull] = ACTIONS(3592), - [anon_sym_mutable] = ACTIONS(3592), - [anon_sym_constinit] = ACTIONS(3592), - [anon_sym_consteval] = ACTIONS(3592), - [anon_sym_alignas] = ACTIONS(3592), - [anon_sym__Alignas] = ACTIONS(3592), - [sym_primitive_type] = ACTIONS(3592), - [anon_sym_enum] = ACTIONS(3592), - [anon_sym_class] = ACTIONS(3592), - [anon_sym_struct] = ACTIONS(3592), - [anon_sym_union] = ACTIONS(3592), - [anon_sym_if] = ACTIONS(3592), - [anon_sym_else] = ACTIONS(3592), - [anon_sym_switch] = ACTIONS(3592), - [anon_sym_case] = ACTIONS(3592), - [anon_sym_default] = ACTIONS(3592), - [anon_sym_while] = ACTIONS(3592), - [anon_sym_do] = ACTIONS(3592), - [anon_sym_for] = ACTIONS(3592), - [anon_sym_return] = ACTIONS(3592), - [anon_sym_break] = ACTIONS(3592), - [anon_sym_continue] = ACTIONS(3592), - [anon_sym_goto] = ACTIONS(3592), - [anon_sym___try] = ACTIONS(3592), - [anon_sym___leave] = ACTIONS(3592), - [anon_sym_not] = ACTIONS(3592), - [anon_sym_compl] = ACTIONS(3592), - [anon_sym_DASH_DASH] = ACTIONS(3594), - [anon_sym_PLUS_PLUS] = ACTIONS(3594), - [anon_sym_sizeof] = ACTIONS(3592), - [anon_sym___alignof__] = ACTIONS(3592), - [anon_sym___alignof] = ACTIONS(3592), - [anon_sym__alignof] = ACTIONS(3592), - [anon_sym_alignof] = ACTIONS(3592), - [anon_sym__Alignof] = ACTIONS(3592), - [anon_sym_offsetof] = ACTIONS(3592), - [anon_sym__Generic] = ACTIONS(3592), - [anon_sym_typename] = ACTIONS(3592), - [anon_sym_asm] = ACTIONS(3592), - [anon_sym___asm__] = ACTIONS(3592), - [anon_sym___asm] = ACTIONS(3592), - [sym_number_literal] = ACTIONS(3594), - [anon_sym_L_SQUOTE] = ACTIONS(3594), - [anon_sym_u_SQUOTE] = ACTIONS(3594), - [anon_sym_U_SQUOTE] = ACTIONS(3594), - [anon_sym_u8_SQUOTE] = ACTIONS(3594), - [anon_sym_SQUOTE] = ACTIONS(3594), - [anon_sym_L_DQUOTE] = ACTIONS(3594), - [anon_sym_u_DQUOTE] = ACTIONS(3594), - [anon_sym_U_DQUOTE] = ACTIONS(3594), - [anon_sym_u8_DQUOTE] = ACTIONS(3594), - [anon_sym_DQUOTE] = ACTIONS(3594), - [sym_true] = ACTIONS(3592), - [sym_false] = ACTIONS(3592), - [anon_sym_NULL] = ACTIONS(3592), - [anon_sym_nullptr] = ACTIONS(3592), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3592), - [anon_sym_decltype] = ACTIONS(3592), - [anon_sym_explicit] = ACTIONS(3592), - [anon_sym_export] = ACTIONS(3592), - [anon_sym_module] = ACTIONS(3592), - [anon_sym_import] = ACTIONS(3592), - [anon_sym_template] = ACTIONS(3592), - [anon_sym_operator] = ACTIONS(3592), - [anon_sym_try] = ACTIONS(3592), - [anon_sym_delete] = ACTIONS(3592), - [anon_sym_throw] = ACTIONS(3592), - [anon_sym_namespace] = ACTIONS(3592), - [anon_sym_static_assert] = ACTIONS(3592), - [anon_sym_concept] = ACTIONS(3592), - [anon_sym_co_return] = ACTIONS(3592), - [anon_sym_co_yield] = ACTIONS(3592), - [anon_sym_R_DQUOTE] = ACTIONS(3594), - [anon_sym_LR_DQUOTE] = ACTIONS(3594), - [anon_sym_uR_DQUOTE] = ACTIONS(3594), - [anon_sym_UR_DQUOTE] = ACTIONS(3594), - [anon_sym_u8R_DQUOTE] = ACTIONS(3594), - [anon_sym_co_await] = ACTIONS(3592), - [anon_sym_new] = ACTIONS(3592), - [anon_sym_requires] = ACTIONS(3592), - [anon_sym_CARET_CARET] = ACTIONS(3594), - [anon_sym_LBRACK_COLON] = ACTIONS(3594), - [sym_this] = ACTIONS(3592), + [STATE(663)] = { + [sym_identifier] = ACTIONS(3706), + [aux_sym_preproc_include_token1] = ACTIONS(3706), + [aux_sym_preproc_def_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token2] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3706), + [sym_preproc_directive] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym___extension__] = ACTIONS(3706), + [anon_sym_typedef] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym___attribute] = ACTIONS(3706), + [anon_sym_using] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym___cdecl] = ACTIONS(3706), + [anon_sym___clrcall] = ACTIONS(3706), + [anon_sym___stdcall] = ACTIONS(3706), + [anon_sym___fastcall] = ACTIONS(3706), + [anon_sym___thiscall] = ACTIONS(3706), + [anon_sym___vectorcall] = ACTIONS(3706), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_signed] = ACTIONS(3706), + [anon_sym_unsigned] = ACTIONS(3706), + [anon_sym_long] = ACTIONS(3706), + [anon_sym_short] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym___inline] = ACTIONS(3706), + [anon_sym___inline__] = ACTIONS(3706), + [anon_sym___forceinline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym___thread] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym___restrict__] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym__Noreturn] = ACTIONS(3706), + [anon_sym_noreturn] = ACTIONS(3706), + [anon_sym__Nonnull] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_alignas] = ACTIONS(3706), + [anon_sym__Alignas] = ACTIONS(3706), + [sym_primitive_type] = ACTIONS(3706), + [anon_sym_enum] = ACTIONS(3706), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3706), + [anon_sym_union] = ACTIONS(3706), + [anon_sym_if] = ACTIONS(3706), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_case] = ACTIONS(3706), + [anon_sym_default] = ACTIONS(3706), + [anon_sym_while] = ACTIONS(3706), + [anon_sym_do] = ACTIONS(3706), + [anon_sym_for] = ACTIONS(3706), + [anon_sym_return] = ACTIONS(3706), + [anon_sym_break] = ACTIONS(3706), + [anon_sym_continue] = ACTIONS(3706), + [anon_sym_goto] = ACTIONS(3706), + [anon_sym___try] = ACTIONS(3706), + [anon_sym___leave] = ACTIONS(3706), + [anon_sym_not] = ACTIONS(3706), + [anon_sym_compl] = ACTIONS(3706), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_sizeof] = ACTIONS(3706), + [anon_sym___alignof__] = ACTIONS(3706), + [anon_sym___alignof] = ACTIONS(3706), + [anon_sym__alignof] = ACTIONS(3706), + [anon_sym_alignof] = ACTIONS(3706), + [anon_sym__Alignof] = ACTIONS(3706), + [anon_sym_offsetof] = ACTIONS(3706), + [anon_sym__Generic] = ACTIONS(3706), + [anon_sym_typename] = ACTIONS(3706), + [anon_sym_asm] = ACTIONS(3706), + [anon_sym___asm__] = ACTIONS(3706), + [anon_sym___asm] = ACTIONS(3706), + [sym_number_literal] = ACTIONS(3708), + [anon_sym_L_SQUOTE] = ACTIONS(3708), + [anon_sym_u_SQUOTE] = ACTIONS(3708), + [anon_sym_U_SQUOTE] = ACTIONS(3708), + [anon_sym_u8_SQUOTE] = ACTIONS(3708), + [anon_sym_SQUOTE] = ACTIONS(3708), + [anon_sym_L_DQUOTE] = ACTIONS(3708), + [anon_sym_u_DQUOTE] = ACTIONS(3708), + [anon_sym_U_DQUOTE] = ACTIONS(3708), + [anon_sym_u8_DQUOTE] = ACTIONS(3708), + [anon_sym_DQUOTE] = ACTIONS(3708), + [sym_true] = ACTIONS(3706), + [sym_false] = ACTIONS(3706), + [anon_sym_NULL] = ACTIONS(3706), + [anon_sym_nullptr] = ACTIONS(3706), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_explicit] = ACTIONS(3706), + [anon_sym_export] = ACTIONS(3706), + [anon_sym_module] = ACTIONS(3706), + [anon_sym_import] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + [anon_sym_try] = ACTIONS(3706), + [anon_sym_delete] = ACTIONS(3706), + [anon_sym_throw] = ACTIONS(3706), + [anon_sym_namespace] = ACTIONS(3706), + [anon_sym_static_assert] = ACTIONS(3706), + [anon_sym_concept] = ACTIONS(3706), + [anon_sym_co_return] = ACTIONS(3706), + [anon_sym_co_yield] = ACTIONS(3706), + [anon_sym_R_DQUOTE] = ACTIONS(3708), + [anon_sym_LR_DQUOTE] = ACTIONS(3708), + [anon_sym_uR_DQUOTE] = ACTIONS(3708), + [anon_sym_UR_DQUOTE] = ACTIONS(3708), + [anon_sym_u8R_DQUOTE] = ACTIONS(3708), + [anon_sym_co_await] = ACTIONS(3706), + [anon_sym_new] = ACTIONS(3706), + [anon_sym_requires] = ACTIONS(3706), + [anon_sym_CARET_CARET] = ACTIONS(3708), + [anon_sym_LBRACK_COLON] = ACTIONS(3708), + [sym_this] = ACTIONS(3706), }, - [STATE(641)] = { - [sym_identifier] = ACTIONS(3524), - [aux_sym_preproc_include_token1] = ACTIONS(3524), - [aux_sym_preproc_def_token1] = ACTIONS(3524), - [aux_sym_preproc_if_token1] = ACTIONS(3524), - [aux_sym_preproc_if_token2] = ACTIONS(3524), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3524), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3524), - [sym_preproc_directive] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_AMP_AMP] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym___extension__] = ACTIONS(3524), - [anon_sym_typedef] = ACTIONS(3524), - [anon_sym_virtual] = ACTIONS(3524), - [anon_sym_extern] = ACTIONS(3524), - [anon_sym___attribute__] = ACTIONS(3524), - [anon_sym___attribute] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3526), - [anon_sym___declspec] = ACTIONS(3524), - [anon_sym___based] = ACTIONS(3524), - [anon_sym___cdecl] = ACTIONS(3524), - [anon_sym___clrcall] = ACTIONS(3524), - [anon_sym___stdcall] = ACTIONS(3524), - [anon_sym___fastcall] = ACTIONS(3524), - [anon_sym___thiscall] = ACTIONS(3524), - [anon_sym___vectorcall] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_signed] = ACTIONS(3524), - [anon_sym_unsigned] = ACTIONS(3524), - [anon_sym_long] = ACTIONS(3524), - [anon_sym_short] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_register] = ACTIONS(3524), - [anon_sym_inline] = ACTIONS(3524), - [anon_sym___inline] = ACTIONS(3524), - [anon_sym___inline__] = ACTIONS(3524), - [anon_sym___forceinline] = ACTIONS(3524), - [anon_sym_thread_local] = ACTIONS(3524), - [anon_sym___thread] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_constexpr] = ACTIONS(3524), - [anon_sym_volatile] = ACTIONS(3524), - [anon_sym_restrict] = ACTIONS(3524), - [anon_sym___restrict__] = ACTIONS(3524), - [anon_sym__Atomic] = ACTIONS(3524), - [anon_sym__Noreturn] = ACTIONS(3524), - [anon_sym_noreturn] = ACTIONS(3524), - [anon_sym__Nonnull] = ACTIONS(3524), - [anon_sym_mutable] = ACTIONS(3524), - [anon_sym_constinit] = ACTIONS(3524), - [anon_sym_consteval] = ACTIONS(3524), - [anon_sym_alignas] = ACTIONS(3524), - [anon_sym__Alignas] = ACTIONS(3524), - [sym_primitive_type] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_struct] = ACTIONS(3524), - [anon_sym_union] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_goto] = ACTIONS(3524), - [anon_sym___try] = ACTIONS(3524), - [anon_sym___leave] = ACTIONS(3524), - [anon_sym_not] = ACTIONS(3524), - [anon_sym_compl] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_sizeof] = ACTIONS(3524), - [anon_sym___alignof__] = ACTIONS(3524), - [anon_sym___alignof] = ACTIONS(3524), - [anon_sym__alignof] = ACTIONS(3524), - [anon_sym_alignof] = ACTIONS(3524), - [anon_sym__Alignof] = ACTIONS(3524), - [anon_sym_offsetof] = ACTIONS(3524), - [anon_sym__Generic] = ACTIONS(3524), - [anon_sym_typename] = ACTIONS(3524), - [anon_sym_asm] = ACTIONS(3524), - [anon_sym___asm__] = ACTIONS(3524), - [anon_sym___asm] = ACTIONS(3524), - [sym_number_literal] = ACTIONS(3526), - [anon_sym_L_SQUOTE] = ACTIONS(3526), - [anon_sym_u_SQUOTE] = ACTIONS(3526), - [anon_sym_U_SQUOTE] = ACTIONS(3526), - [anon_sym_u8_SQUOTE] = ACTIONS(3526), - [anon_sym_SQUOTE] = ACTIONS(3526), - [anon_sym_L_DQUOTE] = ACTIONS(3526), - [anon_sym_u_DQUOTE] = ACTIONS(3526), - [anon_sym_U_DQUOTE] = ACTIONS(3526), - [anon_sym_u8_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [anon_sym_NULL] = ACTIONS(3524), - [anon_sym_nullptr] = ACTIONS(3524), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3524), - [anon_sym_decltype] = ACTIONS(3524), - [anon_sym_explicit] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_template] = ACTIONS(3524), - [anon_sym_operator] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_static_assert] = ACTIONS(3524), - [anon_sym_concept] = ACTIONS(3524), - [anon_sym_co_return] = ACTIONS(3524), - [anon_sym_co_yield] = ACTIONS(3524), - [anon_sym_R_DQUOTE] = ACTIONS(3526), - [anon_sym_LR_DQUOTE] = ACTIONS(3526), - [anon_sym_uR_DQUOTE] = ACTIONS(3526), - [anon_sym_UR_DQUOTE] = ACTIONS(3526), - [anon_sym_u8R_DQUOTE] = ACTIONS(3526), - [anon_sym_co_await] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_requires] = ACTIONS(3524), - [anon_sym_CARET_CARET] = ACTIONS(3526), - [anon_sym_LBRACK_COLON] = ACTIONS(3526), - [sym_this] = ACTIONS(3524), + [STATE(664)] = { + [sym_identifier] = ACTIONS(3486), + [aux_sym_preproc_include_token1] = ACTIONS(3486), + [aux_sym_preproc_def_token1] = ACTIONS(3486), + [aux_sym_preproc_if_token1] = ACTIONS(3486), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3486), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3486), + [sym_preproc_directive] = ACTIONS(3486), + [anon_sym_LPAREN2] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_STAR] = ACTIONS(3488), + [anon_sym_AMP_AMP] = ACTIONS(3488), + [anon_sym_AMP] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3486), + [anon_sym_typedef] = ACTIONS(3486), + [anon_sym_virtual] = ACTIONS(3486), + [anon_sym_extern] = ACTIONS(3486), + [anon_sym___attribute__] = ACTIONS(3486), + [anon_sym___attribute] = ACTIONS(3486), + [anon_sym_using] = ACTIONS(3486), + [anon_sym_COLON_COLON] = ACTIONS(3488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3488), + [anon_sym___declspec] = ACTIONS(3486), + [anon_sym___based] = ACTIONS(3486), + [anon_sym___cdecl] = ACTIONS(3486), + [anon_sym___clrcall] = ACTIONS(3486), + [anon_sym___stdcall] = ACTIONS(3486), + [anon_sym___fastcall] = ACTIONS(3486), + [anon_sym___thiscall] = ACTIONS(3486), + [anon_sym___vectorcall] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_signed] = ACTIONS(3486), + [anon_sym_unsigned] = ACTIONS(3486), + [anon_sym_long] = ACTIONS(3486), + [anon_sym_short] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_register] = ACTIONS(3486), + [anon_sym_inline] = ACTIONS(3486), + [anon_sym___inline] = ACTIONS(3486), + [anon_sym___inline__] = ACTIONS(3486), + [anon_sym___forceinline] = ACTIONS(3486), + [anon_sym_thread_local] = ACTIONS(3486), + [anon_sym___thread] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_constexpr] = ACTIONS(3486), + [anon_sym_volatile] = ACTIONS(3486), + [anon_sym_restrict] = ACTIONS(3486), + [anon_sym___restrict__] = ACTIONS(3486), + [anon_sym__Atomic] = ACTIONS(3486), + [anon_sym__Noreturn] = ACTIONS(3486), + [anon_sym_noreturn] = ACTIONS(3486), + [anon_sym__Nonnull] = ACTIONS(3486), + [anon_sym_mutable] = ACTIONS(3486), + [anon_sym_constinit] = ACTIONS(3486), + [anon_sym_consteval] = ACTIONS(3486), + [anon_sym_alignas] = ACTIONS(3486), + [anon_sym__Alignas] = ACTIONS(3486), + [sym_primitive_type] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_struct] = ACTIONS(3486), + [anon_sym_union] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_case] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_goto] = ACTIONS(3486), + [anon_sym___try] = ACTIONS(3486), + [anon_sym___leave] = ACTIONS(3486), + [anon_sym_not] = ACTIONS(3486), + [anon_sym_compl] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_sizeof] = ACTIONS(3486), + [anon_sym___alignof__] = ACTIONS(3486), + [anon_sym___alignof] = ACTIONS(3486), + [anon_sym__alignof] = ACTIONS(3486), + [anon_sym_alignof] = ACTIONS(3486), + [anon_sym__Alignof] = ACTIONS(3486), + [anon_sym_offsetof] = ACTIONS(3486), + [anon_sym__Generic] = ACTIONS(3486), + [anon_sym_typename] = ACTIONS(3486), + [anon_sym_asm] = ACTIONS(3486), + [anon_sym___asm__] = ACTIONS(3486), + [anon_sym___asm] = ACTIONS(3486), + [sym_number_literal] = ACTIONS(3488), + [anon_sym_L_SQUOTE] = ACTIONS(3488), + [anon_sym_u_SQUOTE] = ACTIONS(3488), + [anon_sym_U_SQUOTE] = ACTIONS(3488), + [anon_sym_u8_SQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_L_DQUOTE] = ACTIONS(3488), + [anon_sym_u_DQUOTE] = ACTIONS(3488), + [anon_sym_U_DQUOTE] = ACTIONS(3488), + [anon_sym_u8_DQUOTE] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [anon_sym_NULL] = ACTIONS(3486), + [anon_sym_nullptr] = ACTIONS(3486), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3486), + [anon_sym_decltype] = ACTIONS(3486), + [anon_sym_explicit] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(3486), + [anon_sym_operator] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_static_assert] = ACTIONS(3486), + [anon_sym_concept] = ACTIONS(3486), + [anon_sym_co_return] = ACTIONS(3486), + [anon_sym_co_yield] = ACTIONS(3486), + [anon_sym_R_DQUOTE] = ACTIONS(3488), + [anon_sym_LR_DQUOTE] = ACTIONS(3488), + [anon_sym_uR_DQUOTE] = ACTIONS(3488), + [anon_sym_UR_DQUOTE] = ACTIONS(3488), + [anon_sym_u8R_DQUOTE] = ACTIONS(3488), + [anon_sym_co_await] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_requires] = ACTIONS(3486), + [anon_sym_CARET_CARET] = ACTIONS(3488), + [anon_sym_LBRACK_COLON] = ACTIONS(3488), + [sym_this] = ACTIONS(3486), }, - [STATE(642)] = { - [sym_identifier] = ACTIONS(3528), - [aux_sym_preproc_include_token1] = ACTIONS(3528), - [aux_sym_preproc_def_token1] = ACTIONS(3528), - [aux_sym_preproc_if_token1] = ACTIONS(3528), - [aux_sym_preproc_if_token2] = ACTIONS(3528), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3528), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3528), - [sym_preproc_directive] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_AMP_AMP] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym___extension__] = ACTIONS(3528), - [anon_sym_typedef] = ACTIONS(3528), - [anon_sym_virtual] = ACTIONS(3528), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym___attribute__] = ACTIONS(3528), - [anon_sym___attribute] = ACTIONS(3528), - [anon_sym_using] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3530), - [anon_sym___declspec] = ACTIONS(3528), - [anon_sym___based] = ACTIONS(3528), - [anon_sym___cdecl] = ACTIONS(3528), - [anon_sym___clrcall] = ACTIONS(3528), - [anon_sym___stdcall] = ACTIONS(3528), - [anon_sym___fastcall] = ACTIONS(3528), - [anon_sym___thiscall] = ACTIONS(3528), - [anon_sym___vectorcall] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_signed] = ACTIONS(3528), - [anon_sym_unsigned] = ACTIONS(3528), - [anon_sym_long] = ACTIONS(3528), - [anon_sym_short] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_register] = ACTIONS(3528), - [anon_sym_inline] = ACTIONS(3528), - [anon_sym___inline] = ACTIONS(3528), - [anon_sym___inline__] = ACTIONS(3528), - [anon_sym___forceinline] = ACTIONS(3528), - [anon_sym_thread_local] = ACTIONS(3528), - [anon_sym___thread] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_constexpr] = ACTIONS(3528), - [anon_sym_volatile] = ACTIONS(3528), - [anon_sym_restrict] = ACTIONS(3528), - [anon_sym___restrict__] = ACTIONS(3528), - [anon_sym__Atomic] = ACTIONS(3528), - [anon_sym__Noreturn] = ACTIONS(3528), - [anon_sym_noreturn] = ACTIONS(3528), - [anon_sym__Nonnull] = ACTIONS(3528), - [anon_sym_mutable] = ACTIONS(3528), - [anon_sym_constinit] = ACTIONS(3528), - [anon_sym_consteval] = ACTIONS(3528), - [anon_sym_alignas] = ACTIONS(3528), - [anon_sym__Alignas] = ACTIONS(3528), - [sym_primitive_type] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), - [anon_sym_class] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(3528), - [anon_sym_union] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_else] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_case] = ACTIONS(3528), - [anon_sym_default] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_goto] = ACTIONS(3528), - [anon_sym___try] = ACTIONS(3528), - [anon_sym___leave] = ACTIONS(3528), - [anon_sym_not] = ACTIONS(3528), - [anon_sym_compl] = ACTIONS(3528), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_sizeof] = ACTIONS(3528), - [anon_sym___alignof__] = ACTIONS(3528), - [anon_sym___alignof] = ACTIONS(3528), - [anon_sym__alignof] = ACTIONS(3528), - [anon_sym_alignof] = ACTIONS(3528), - [anon_sym__Alignof] = ACTIONS(3528), - [anon_sym_offsetof] = ACTIONS(3528), - [anon_sym__Generic] = ACTIONS(3528), - [anon_sym_typename] = ACTIONS(3528), - [anon_sym_asm] = ACTIONS(3528), - [anon_sym___asm__] = ACTIONS(3528), - [anon_sym___asm] = ACTIONS(3528), - [sym_number_literal] = ACTIONS(3530), - [anon_sym_L_SQUOTE] = ACTIONS(3530), - [anon_sym_u_SQUOTE] = ACTIONS(3530), - [anon_sym_U_SQUOTE] = ACTIONS(3530), - [anon_sym_u8_SQUOTE] = ACTIONS(3530), - [anon_sym_SQUOTE] = ACTIONS(3530), - [anon_sym_L_DQUOTE] = ACTIONS(3530), - [anon_sym_u_DQUOTE] = ACTIONS(3530), - [anon_sym_U_DQUOTE] = ACTIONS(3530), - [anon_sym_u8_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [anon_sym_NULL] = ACTIONS(3528), - [anon_sym_nullptr] = ACTIONS(3528), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3528), - [anon_sym_decltype] = ACTIONS(3528), - [anon_sym_explicit] = ACTIONS(3528), - [anon_sym_export] = ACTIONS(3528), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_import] = ACTIONS(3528), - [anon_sym_template] = ACTIONS(3528), - [anon_sym_operator] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_delete] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_static_assert] = ACTIONS(3528), - [anon_sym_concept] = ACTIONS(3528), - [anon_sym_co_return] = ACTIONS(3528), - [anon_sym_co_yield] = ACTIONS(3528), - [anon_sym_R_DQUOTE] = ACTIONS(3530), - [anon_sym_LR_DQUOTE] = ACTIONS(3530), - [anon_sym_uR_DQUOTE] = ACTIONS(3530), - [anon_sym_UR_DQUOTE] = ACTIONS(3530), - [anon_sym_u8R_DQUOTE] = ACTIONS(3530), - [anon_sym_co_await] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_requires] = ACTIONS(3528), - [anon_sym_CARET_CARET] = ACTIONS(3530), - [anon_sym_LBRACK_COLON] = ACTIONS(3530), - [sym_this] = ACTIONS(3528), + [STATE(665)] = { + [sym_identifier] = ACTIONS(3766), + [aux_sym_preproc_include_token1] = ACTIONS(3766), + [aux_sym_preproc_def_token1] = ACTIONS(3766), + [aux_sym_preproc_if_token1] = ACTIONS(3766), + [aux_sym_preproc_if_token2] = ACTIONS(3766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3766), + [sym_preproc_directive] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_BANG] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(3768), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_SEMI] = ACTIONS(3768), + [anon_sym___extension__] = ACTIONS(3766), + [anon_sym_typedef] = ACTIONS(3766), + [anon_sym_virtual] = ACTIONS(3766), + [anon_sym_extern] = ACTIONS(3766), + [anon_sym___attribute__] = ACTIONS(3766), + [anon_sym___attribute] = ACTIONS(3766), + [anon_sym_using] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3768), + [anon_sym___declspec] = ACTIONS(3766), + [anon_sym___based] = ACTIONS(3766), + [anon_sym___cdecl] = ACTIONS(3766), + [anon_sym___clrcall] = ACTIONS(3766), + [anon_sym___stdcall] = ACTIONS(3766), + [anon_sym___fastcall] = ACTIONS(3766), + [anon_sym___thiscall] = ACTIONS(3766), + [anon_sym___vectorcall] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_signed] = ACTIONS(3766), + [anon_sym_unsigned] = ACTIONS(3766), + [anon_sym_long] = ACTIONS(3766), + [anon_sym_short] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_static] = ACTIONS(3766), + [anon_sym_register] = ACTIONS(3766), + [anon_sym_inline] = ACTIONS(3766), + [anon_sym___inline] = ACTIONS(3766), + [anon_sym___inline__] = ACTIONS(3766), + [anon_sym___forceinline] = ACTIONS(3766), + [anon_sym_thread_local] = ACTIONS(3766), + [anon_sym___thread] = ACTIONS(3766), + [anon_sym_const] = ACTIONS(3766), + [anon_sym_constexpr] = ACTIONS(3766), + [anon_sym_volatile] = ACTIONS(3766), + [anon_sym_restrict] = ACTIONS(3766), + [anon_sym___restrict__] = ACTIONS(3766), + [anon_sym__Atomic] = ACTIONS(3766), + [anon_sym__Noreturn] = ACTIONS(3766), + [anon_sym_noreturn] = ACTIONS(3766), + [anon_sym__Nonnull] = ACTIONS(3766), + [anon_sym_mutable] = ACTIONS(3766), + [anon_sym_constinit] = ACTIONS(3766), + [anon_sym_consteval] = ACTIONS(3766), + [anon_sym_alignas] = ACTIONS(3766), + [anon_sym__Alignas] = ACTIONS(3766), + [sym_primitive_type] = ACTIONS(3766), + [anon_sym_enum] = ACTIONS(3766), + [anon_sym_class] = ACTIONS(3766), + [anon_sym_struct] = ACTIONS(3766), + [anon_sym_union] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_switch] = ACTIONS(3766), + [anon_sym_case] = ACTIONS(3766), + [anon_sym_default] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_break] = ACTIONS(3766), + [anon_sym_continue] = ACTIONS(3766), + [anon_sym_goto] = ACTIONS(3766), + [anon_sym___try] = ACTIONS(3766), + [anon_sym___leave] = ACTIONS(3766), + [anon_sym_not] = ACTIONS(3766), + [anon_sym_compl] = ACTIONS(3766), + [anon_sym_DASH_DASH] = ACTIONS(3768), + [anon_sym_PLUS_PLUS] = ACTIONS(3768), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym___alignof__] = ACTIONS(3766), + [anon_sym___alignof] = ACTIONS(3766), + [anon_sym__alignof] = ACTIONS(3766), + [anon_sym_alignof] = ACTIONS(3766), + [anon_sym__Alignof] = ACTIONS(3766), + [anon_sym_offsetof] = ACTIONS(3766), + [anon_sym__Generic] = ACTIONS(3766), + [anon_sym_typename] = ACTIONS(3766), + [anon_sym_asm] = ACTIONS(3766), + [anon_sym___asm__] = ACTIONS(3766), + [anon_sym___asm] = ACTIONS(3766), + [sym_number_literal] = ACTIONS(3768), + [anon_sym_L_SQUOTE] = ACTIONS(3768), + [anon_sym_u_SQUOTE] = ACTIONS(3768), + [anon_sym_U_SQUOTE] = ACTIONS(3768), + [anon_sym_u8_SQUOTE] = ACTIONS(3768), + [anon_sym_SQUOTE] = ACTIONS(3768), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(3766), + [sym_false] = ACTIONS(3766), + [anon_sym_NULL] = ACTIONS(3766), + [anon_sym_nullptr] = ACTIONS(3766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3766), + [anon_sym_decltype] = ACTIONS(3766), + [anon_sym_explicit] = ACTIONS(3766), + [anon_sym_export] = ACTIONS(3766), + [anon_sym_module] = ACTIONS(3766), + [anon_sym_import] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(3766), + [anon_sym_operator] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_delete] = ACTIONS(3766), + [anon_sym_throw] = ACTIONS(3766), + [anon_sym_namespace] = ACTIONS(3766), + [anon_sym_static_assert] = ACTIONS(3766), + [anon_sym_concept] = ACTIONS(3766), + [anon_sym_co_return] = ACTIONS(3766), + [anon_sym_co_yield] = ACTIONS(3766), + [anon_sym_R_DQUOTE] = ACTIONS(3768), + [anon_sym_LR_DQUOTE] = ACTIONS(3768), + [anon_sym_uR_DQUOTE] = ACTIONS(3768), + [anon_sym_UR_DQUOTE] = ACTIONS(3768), + [anon_sym_u8R_DQUOTE] = ACTIONS(3768), + [anon_sym_co_await] = ACTIONS(3766), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_requires] = ACTIONS(3766), + [anon_sym_CARET_CARET] = ACTIONS(3768), + [anon_sym_LBRACK_COLON] = ACTIONS(3768), + [sym_this] = ACTIONS(3766), }, - [STATE(643)] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token2] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym___attribute] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym__Nonnull] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym__Alignas] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_else] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym___try] = ACTIONS(3384), - [anon_sym___leave] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [anon_sym___asm] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3389), - [anon_sym_L_SQUOTE] = ACTIONS(3389), - [anon_sym_u_SQUOTE] = ACTIONS(3389), - [anon_sym_U_SQUOTE] = ACTIONS(3389), - [anon_sym_u8_SQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_L_DQUOTE] = ACTIONS(3389), - [anon_sym_u_DQUOTE] = ACTIONS(3389), - [anon_sym_U_DQUOTE] = ACTIONS(3389), - [anon_sym_u8_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_export] = ACTIONS(3384), - [anon_sym_module] = ACTIONS(3384), - [anon_sym_import] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3389), - [anon_sym_LR_DQUOTE] = ACTIONS(3389), - [anon_sym_uR_DQUOTE] = ACTIONS(3389), - [anon_sym_UR_DQUOTE] = ACTIONS(3389), - [anon_sym_u8R_DQUOTE] = ACTIONS(3389), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [anon_sym_CARET_CARET] = ACTIONS(3389), - [anon_sym_LBRACK_COLON] = ACTIONS(3389), - [sym_this] = ACTIONS(3384), - }, - [STATE(644)] = { - [sym_identifier] = ACTIONS(3532), - [aux_sym_preproc_include_token1] = ACTIONS(3532), - [aux_sym_preproc_def_token1] = ACTIONS(3532), - [aux_sym_preproc_if_token1] = ACTIONS(3532), - [aux_sym_preproc_if_token2] = ACTIONS(3532), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3532), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3532), - [sym_preproc_directive] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym___extension__] = ACTIONS(3532), - [anon_sym_typedef] = ACTIONS(3532), - [anon_sym_virtual] = ACTIONS(3532), - [anon_sym_extern] = ACTIONS(3532), - [anon_sym___attribute__] = ACTIONS(3532), - [anon_sym___attribute] = ACTIONS(3532), - [anon_sym_using] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), - [anon_sym___declspec] = ACTIONS(3532), - [anon_sym___based] = ACTIONS(3532), - [anon_sym___cdecl] = ACTIONS(3532), - [anon_sym___clrcall] = ACTIONS(3532), - [anon_sym___stdcall] = ACTIONS(3532), - [anon_sym___fastcall] = ACTIONS(3532), - [anon_sym___thiscall] = ACTIONS(3532), - [anon_sym___vectorcall] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_signed] = ACTIONS(3532), - [anon_sym_unsigned] = ACTIONS(3532), - [anon_sym_long] = ACTIONS(3532), - [anon_sym_short] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_register] = ACTIONS(3532), - [anon_sym_inline] = ACTIONS(3532), - [anon_sym___inline] = ACTIONS(3532), - [anon_sym___inline__] = ACTIONS(3532), - [anon_sym___forceinline] = ACTIONS(3532), - [anon_sym_thread_local] = ACTIONS(3532), - [anon_sym___thread] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_constexpr] = ACTIONS(3532), - [anon_sym_volatile] = ACTIONS(3532), - [anon_sym_restrict] = ACTIONS(3532), - [anon_sym___restrict__] = ACTIONS(3532), - [anon_sym__Atomic] = ACTIONS(3532), - [anon_sym__Noreturn] = ACTIONS(3532), - [anon_sym_noreturn] = ACTIONS(3532), - [anon_sym__Nonnull] = ACTIONS(3532), - [anon_sym_mutable] = ACTIONS(3532), - [anon_sym_constinit] = ACTIONS(3532), - [anon_sym_consteval] = ACTIONS(3532), - [anon_sym_alignas] = ACTIONS(3532), - [anon_sym__Alignas] = ACTIONS(3532), - [sym_primitive_type] = ACTIONS(3532), - [anon_sym_enum] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3532), - [anon_sym_struct] = ACTIONS(3532), - [anon_sym_union] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_else] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_case] = ACTIONS(3532), - [anon_sym_default] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_goto] = ACTIONS(3532), - [anon_sym___try] = ACTIONS(3532), - [anon_sym___leave] = ACTIONS(3532), - [anon_sym_not] = ACTIONS(3532), - [anon_sym_compl] = ACTIONS(3532), - [anon_sym_DASH_DASH] = ACTIONS(3534), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_sizeof] = ACTIONS(3532), - [anon_sym___alignof__] = ACTIONS(3532), - [anon_sym___alignof] = ACTIONS(3532), - [anon_sym__alignof] = ACTIONS(3532), - [anon_sym_alignof] = ACTIONS(3532), - [anon_sym__Alignof] = ACTIONS(3532), - [anon_sym_offsetof] = ACTIONS(3532), - [anon_sym__Generic] = ACTIONS(3532), - [anon_sym_typename] = ACTIONS(3532), - [anon_sym_asm] = ACTIONS(3532), - [anon_sym___asm__] = ACTIONS(3532), - [anon_sym___asm] = ACTIONS(3532), - [sym_number_literal] = ACTIONS(3534), - [anon_sym_L_SQUOTE] = ACTIONS(3534), - [anon_sym_u_SQUOTE] = ACTIONS(3534), - [anon_sym_U_SQUOTE] = ACTIONS(3534), - [anon_sym_u8_SQUOTE] = ACTIONS(3534), - [anon_sym_SQUOTE] = ACTIONS(3534), - [anon_sym_L_DQUOTE] = ACTIONS(3534), - [anon_sym_u_DQUOTE] = ACTIONS(3534), - [anon_sym_U_DQUOTE] = ACTIONS(3534), - [anon_sym_u8_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [sym_true] = ACTIONS(3532), - [sym_false] = ACTIONS(3532), - [anon_sym_NULL] = ACTIONS(3532), - [anon_sym_nullptr] = ACTIONS(3532), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3532), - [anon_sym_decltype] = ACTIONS(3532), - [anon_sym_explicit] = ACTIONS(3532), - [anon_sym_export] = ACTIONS(3532), - [anon_sym_module] = ACTIONS(3532), - [anon_sym_import] = ACTIONS(3532), - [anon_sym_template] = ACTIONS(3532), - [anon_sym_operator] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_delete] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_namespace] = ACTIONS(3532), - [anon_sym_static_assert] = ACTIONS(3532), - [anon_sym_concept] = ACTIONS(3532), - [anon_sym_co_return] = ACTIONS(3532), - [anon_sym_co_yield] = ACTIONS(3532), - [anon_sym_R_DQUOTE] = ACTIONS(3534), - [anon_sym_LR_DQUOTE] = ACTIONS(3534), - [anon_sym_uR_DQUOTE] = ACTIONS(3534), - [anon_sym_UR_DQUOTE] = ACTIONS(3534), - [anon_sym_u8R_DQUOTE] = ACTIONS(3534), - [anon_sym_co_await] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_requires] = ACTIONS(3532), - [anon_sym_CARET_CARET] = ACTIONS(3534), - [anon_sym_LBRACK_COLON] = ACTIONS(3534), - [sym_this] = ACTIONS(3532), - }, - [STATE(645)] = { - [sym_expression] = STATE(5919), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_initializer_list] = STATE(5986), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(2384), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [aux_sym_preproc_if_token2] = ACTIONS(2386), - [aux_sym_preproc_else_token1] = ACTIONS(2386), - [aux_sym_preproc_elif_token1] = ACTIONS(2384), - [aux_sym_preproc_elifdef_token1] = ACTIONS(2386), - [aux_sym_preproc_elifdef_token2] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2386), - [anon_sym_GT_GT] = ACTIONS(2386), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(3881), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(646)] = { - [sym_identifier] = ACTIONS(3544), - [aux_sym_preproc_include_token1] = ACTIONS(3544), - [aux_sym_preproc_def_token1] = ACTIONS(3544), - [aux_sym_preproc_if_token1] = ACTIONS(3544), - [aux_sym_preproc_if_token2] = ACTIONS(3544), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3544), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3544), - [sym_preproc_directive] = ACTIONS(3544), - [anon_sym_LPAREN2] = ACTIONS(3546), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_STAR] = ACTIONS(3546), - [anon_sym_AMP_AMP] = ACTIONS(3546), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym___extension__] = ACTIONS(3544), - [anon_sym_typedef] = ACTIONS(3544), - [anon_sym_virtual] = ACTIONS(3544), - [anon_sym_extern] = ACTIONS(3544), - [anon_sym___attribute__] = ACTIONS(3544), - [anon_sym___attribute] = ACTIONS(3544), - [anon_sym_using] = ACTIONS(3544), - [anon_sym_COLON_COLON] = ACTIONS(3546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3546), - [anon_sym___declspec] = ACTIONS(3544), - [anon_sym___based] = ACTIONS(3544), - [anon_sym___cdecl] = ACTIONS(3544), - [anon_sym___clrcall] = ACTIONS(3544), - [anon_sym___stdcall] = ACTIONS(3544), - [anon_sym___fastcall] = ACTIONS(3544), - [anon_sym___thiscall] = ACTIONS(3544), - [anon_sym___vectorcall] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_signed] = ACTIONS(3544), - [anon_sym_unsigned] = ACTIONS(3544), - [anon_sym_long] = ACTIONS(3544), - [anon_sym_short] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_register] = ACTIONS(3544), - [anon_sym_inline] = ACTIONS(3544), - [anon_sym___inline] = ACTIONS(3544), - [anon_sym___inline__] = ACTIONS(3544), - [anon_sym___forceinline] = ACTIONS(3544), - [anon_sym_thread_local] = ACTIONS(3544), - [anon_sym___thread] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_constexpr] = ACTIONS(3544), - [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(3544), - [anon_sym__Alignas] = ACTIONS(3544), - [sym_primitive_type] = ACTIONS(3544), - [anon_sym_enum] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3544), - [anon_sym_struct] = ACTIONS(3544), - [anon_sym_union] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3544), - [anon_sym_else] = ACTIONS(3544), - [anon_sym_switch] = ACTIONS(3544), - [anon_sym_case] = ACTIONS(3544), - [anon_sym_default] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_do] = ACTIONS(3544), - [anon_sym_for] = ACTIONS(3544), - [anon_sym_return] = ACTIONS(3544), - [anon_sym_break] = ACTIONS(3544), - [anon_sym_continue] = ACTIONS(3544), - [anon_sym_goto] = ACTIONS(3544), - [anon_sym___try] = ACTIONS(3544), - [anon_sym___leave] = ACTIONS(3544), - [anon_sym_not] = ACTIONS(3544), - [anon_sym_compl] = ACTIONS(3544), - [anon_sym_DASH_DASH] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_sizeof] = ACTIONS(3544), - [anon_sym___alignof__] = ACTIONS(3544), - [anon_sym___alignof] = ACTIONS(3544), - [anon_sym__alignof] = ACTIONS(3544), - [anon_sym_alignof] = ACTIONS(3544), - [anon_sym__Alignof] = ACTIONS(3544), - [anon_sym_offsetof] = ACTIONS(3544), - [anon_sym__Generic] = ACTIONS(3544), - [anon_sym_typename] = ACTIONS(3544), - [anon_sym_asm] = ACTIONS(3544), - [anon_sym___asm__] = ACTIONS(3544), - [anon_sym___asm] = ACTIONS(3544), - [sym_number_literal] = ACTIONS(3546), - [anon_sym_L_SQUOTE] = ACTIONS(3546), - [anon_sym_u_SQUOTE] = ACTIONS(3546), - [anon_sym_U_SQUOTE] = ACTIONS(3546), - [anon_sym_u8_SQUOTE] = ACTIONS(3546), - [anon_sym_SQUOTE] = ACTIONS(3546), - [anon_sym_L_DQUOTE] = ACTIONS(3546), - [anon_sym_u_DQUOTE] = ACTIONS(3546), - [anon_sym_U_DQUOTE] = ACTIONS(3546), - [anon_sym_u8_DQUOTE] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(3546), - [sym_true] = ACTIONS(3544), - [sym_false] = ACTIONS(3544), - [anon_sym_NULL] = ACTIONS(3544), - [anon_sym_nullptr] = ACTIONS(3544), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3544), - [anon_sym_decltype] = ACTIONS(3544), - [anon_sym_explicit] = ACTIONS(3544), - [anon_sym_export] = ACTIONS(3544), - [anon_sym_module] = ACTIONS(3544), - [anon_sym_import] = ACTIONS(3544), - [anon_sym_template] = ACTIONS(3544), - [anon_sym_operator] = ACTIONS(3544), - [anon_sym_try] = ACTIONS(3544), - [anon_sym_delete] = ACTIONS(3544), - [anon_sym_throw] = ACTIONS(3544), - [anon_sym_namespace] = ACTIONS(3544), - [anon_sym_static_assert] = ACTIONS(3544), - [anon_sym_concept] = ACTIONS(3544), - [anon_sym_co_return] = ACTIONS(3544), - [anon_sym_co_yield] = ACTIONS(3544), - [anon_sym_R_DQUOTE] = ACTIONS(3546), - [anon_sym_LR_DQUOTE] = ACTIONS(3546), - [anon_sym_uR_DQUOTE] = ACTIONS(3546), - [anon_sym_UR_DQUOTE] = ACTIONS(3546), - [anon_sym_u8R_DQUOTE] = ACTIONS(3546), - [anon_sym_co_await] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_requires] = ACTIONS(3544), - [anon_sym_CARET_CARET] = ACTIONS(3546), - [anon_sym_LBRACK_COLON] = ACTIONS(3546), - [sym_this] = ACTIONS(3544), - }, - [STATE(647)] = { - [sym_identifier] = ACTIONS(3540), - [aux_sym_preproc_include_token1] = ACTIONS(3540), - [aux_sym_preproc_def_token1] = ACTIONS(3540), - [aux_sym_preproc_if_token1] = ACTIONS(3540), - [aux_sym_preproc_if_token2] = ACTIONS(3540), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3540), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3540), - [sym_preproc_directive] = ACTIONS(3540), - [anon_sym_LPAREN2] = ACTIONS(3542), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_STAR] = ACTIONS(3542), - [anon_sym_AMP_AMP] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3540), - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym___extension__] = ACTIONS(3540), - [anon_sym_typedef] = ACTIONS(3540), - [anon_sym_virtual] = ACTIONS(3540), - [anon_sym_extern] = ACTIONS(3540), - [anon_sym___attribute__] = ACTIONS(3540), - [anon_sym___attribute] = ACTIONS(3540), - [anon_sym_using] = ACTIONS(3540), - [anon_sym_COLON_COLON] = ACTIONS(3542), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), - [anon_sym___declspec] = ACTIONS(3540), - [anon_sym___based] = ACTIONS(3540), - [anon_sym___cdecl] = ACTIONS(3540), - [anon_sym___clrcall] = ACTIONS(3540), - [anon_sym___stdcall] = ACTIONS(3540), - [anon_sym___fastcall] = ACTIONS(3540), - [anon_sym___thiscall] = ACTIONS(3540), - [anon_sym___vectorcall] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3542), - [anon_sym_signed] = ACTIONS(3540), - [anon_sym_unsigned] = ACTIONS(3540), - [anon_sym_long] = ACTIONS(3540), - [anon_sym_short] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_register] = ACTIONS(3540), - [anon_sym_inline] = ACTIONS(3540), - [anon_sym___inline] = ACTIONS(3540), - [anon_sym___inline__] = ACTIONS(3540), - [anon_sym___forceinline] = ACTIONS(3540), - [anon_sym_thread_local] = ACTIONS(3540), - [anon_sym___thread] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_constexpr] = ACTIONS(3540), - [anon_sym_volatile] = ACTIONS(3540), - [anon_sym_restrict] = ACTIONS(3540), - [anon_sym___restrict__] = ACTIONS(3540), - [anon_sym__Atomic] = ACTIONS(3540), - [anon_sym__Noreturn] = ACTIONS(3540), - [anon_sym_noreturn] = ACTIONS(3540), - [anon_sym__Nonnull] = ACTIONS(3540), - [anon_sym_mutable] = ACTIONS(3540), - [anon_sym_constinit] = ACTIONS(3540), - [anon_sym_consteval] = ACTIONS(3540), - [anon_sym_alignas] = ACTIONS(3540), - [anon_sym__Alignas] = ACTIONS(3540), - [sym_primitive_type] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(3540), - [anon_sym_class] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(3540), - [anon_sym_union] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_else] = ACTIONS(3540), - [anon_sym_switch] = ACTIONS(3540), - [anon_sym_case] = ACTIONS(3540), - [anon_sym_default] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_do] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_goto] = ACTIONS(3540), - [anon_sym___try] = ACTIONS(3540), - [anon_sym___leave] = ACTIONS(3540), - [anon_sym_not] = ACTIONS(3540), - [anon_sym_compl] = ACTIONS(3540), - [anon_sym_DASH_DASH] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_sizeof] = ACTIONS(3540), - [anon_sym___alignof__] = ACTIONS(3540), - [anon_sym___alignof] = ACTIONS(3540), - [anon_sym__alignof] = ACTIONS(3540), - [anon_sym_alignof] = ACTIONS(3540), - [anon_sym__Alignof] = ACTIONS(3540), - [anon_sym_offsetof] = ACTIONS(3540), - [anon_sym__Generic] = ACTIONS(3540), - [anon_sym_typename] = ACTIONS(3540), - [anon_sym_asm] = ACTIONS(3540), - [anon_sym___asm__] = ACTIONS(3540), - [anon_sym___asm] = ACTIONS(3540), - [sym_number_literal] = ACTIONS(3542), - [anon_sym_L_SQUOTE] = ACTIONS(3542), - [anon_sym_u_SQUOTE] = ACTIONS(3542), - [anon_sym_U_SQUOTE] = ACTIONS(3542), - [anon_sym_u8_SQUOTE] = ACTIONS(3542), - [anon_sym_SQUOTE] = ACTIONS(3542), - [anon_sym_L_DQUOTE] = ACTIONS(3542), - [anon_sym_u_DQUOTE] = ACTIONS(3542), - [anon_sym_U_DQUOTE] = ACTIONS(3542), - [anon_sym_u8_DQUOTE] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3542), - [sym_true] = ACTIONS(3540), - [sym_false] = ACTIONS(3540), - [anon_sym_NULL] = ACTIONS(3540), - [anon_sym_nullptr] = ACTIONS(3540), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3540), - [anon_sym_decltype] = ACTIONS(3540), - [anon_sym_explicit] = ACTIONS(3540), - [anon_sym_export] = ACTIONS(3540), - [anon_sym_module] = ACTIONS(3540), - [anon_sym_import] = ACTIONS(3540), - [anon_sym_template] = ACTIONS(3540), - [anon_sym_operator] = ACTIONS(3540), - [anon_sym_try] = ACTIONS(3540), - [anon_sym_delete] = ACTIONS(3540), - [anon_sym_throw] = ACTIONS(3540), - [anon_sym_namespace] = ACTIONS(3540), - [anon_sym_static_assert] = ACTIONS(3540), - [anon_sym_concept] = ACTIONS(3540), - [anon_sym_co_return] = ACTIONS(3540), - [anon_sym_co_yield] = ACTIONS(3540), - [anon_sym_R_DQUOTE] = ACTIONS(3542), - [anon_sym_LR_DQUOTE] = ACTIONS(3542), - [anon_sym_uR_DQUOTE] = ACTIONS(3542), - [anon_sym_UR_DQUOTE] = ACTIONS(3542), - [anon_sym_u8R_DQUOTE] = ACTIONS(3542), - [anon_sym_co_await] = ACTIONS(3540), - [anon_sym_new] = ACTIONS(3540), - [anon_sym_requires] = ACTIONS(3540), - [anon_sym_CARET_CARET] = ACTIONS(3542), - [anon_sym_LBRACK_COLON] = ACTIONS(3542), - [sym_this] = ACTIONS(3540), - }, - [STATE(648)] = { - [ts_builtin_sym_end] = ACTIONS(3562), - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_include_token1] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym___attribute] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym___cdecl] = ACTIONS(3560), - [anon_sym___clrcall] = ACTIONS(3560), - [anon_sym___stdcall] = ACTIONS(3560), - [anon_sym___fastcall] = ACTIONS(3560), - [anon_sym___thiscall] = ACTIONS(3560), - [anon_sym___vectorcall] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym__Nonnull] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym__Alignas] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_else] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym___try] = ACTIONS(3560), - [anon_sym___leave] = ACTIONS(3560), - [anon_sym_not] = ACTIONS(3560), - [anon_sym_compl] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym___alignof__] = ACTIONS(3560), - [anon_sym___alignof] = ACTIONS(3560), - [anon_sym__alignof] = ACTIONS(3560), - [anon_sym_alignof] = ACTIONS(3560), - [anon_sym__Alignof] = ACTIONS(3560), - [anon_sym_offsetof] = ACTIONS(3560), - [anon_sym__Generic] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_asm] = ACTIONS(3560), - [anon_sym___asm__] = ACTIONS(3560), - [anon_sym___asm] = ACTIONS(3560), - [sym_number_literal] = ACTIONS(3562), - [anon_sym_L_SQUOTE] = ACTIONS(3562), - [anon_sym_u_SQUOTE] = ACTIONS(3562), - [anon_sym_U_SQUOTE] = ACTIONS(3562), - [anon_sym_u8_SQUOTE] = ACTIONS(3562), - [anon_sym_SQUOTE] = ACTIONS(3562), - [anon_sym_L_DQUOTE] = ACTIONS(3562), - [anon_sym_u_DQUOTE] = ACTIONS(3562), - [anon_sym_U_DQUOTE] = ACTIONS(3562), - [anon_sym_u8_DQUOTE] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [anon_sym_NULL] = ACTIONS(3560), - [anon_sym_nullptr] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_export] = ACTIONS(3560), - [anon_sym_module] = ACTIONS(3560), - [anon_sym_import] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), - [anon_sym_concept] = ACTIONS(3560), - [anon_sym_co_return] = ACTIONS(3560), - [anon_sym_co_yield] = ACTIONS(3560), - [anon_sym_R_DQUOTE] = ACTIONS(3562), - [anon_sym_LR_DQUOTE] = ACTIONS(3562), - [anon_sym_uR_DQUOTE] = ACTIONS(3562), - [anon_sym_UR_DQUOTE] = ACTIONS(3562), - [anon_sym_u8R_DQUOTE] = ACTIONS(3562), - [anon_sym_co_await] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_requires] = ACTIONS(3560), - [anon_sym_CARET_CARET] = ACTIONS(3562), - [anon_sym_LBRACK_COLON] = ACTIONS(3562), - [sym_this] = ACTIONS(3560), + [STATE(666)] = { + [sym_identifier] = ACTIONS(3770), + [aux_sym_preproc_include_token1] = ACTIONS(3770), + [aux_sym_preproc_def_token1] = ACTIONS(3770), + [aux_sym_preproc_if_token1] = ACTIONS(3770), + [aux_sym_preproc_if_token2] = ACTIONS(3770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3770), + [sym_preproc_directive] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_BANG] = ACTIONS(3772), + [anon_sym_TILDE] = ACTIONS(3772), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_STAR] = ACTIONS(3772), + [anon_sym_AMP_AMP] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_SEMI] = ACTIONS(3772), + [anon_sym___extension__] = ACTIONS(3770), + [anon_sym_typedef] = ACTIONS(3770), + [anon_sym_virtual] = ACTIONS(3770), + [anon_sym_extern] = ACTIONS(3770), + [anon_sym___attribute__] = ACTIONS(3770), + [anon_sym___attribute] = ACTIONS(3770), + [anon_sym_using] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3772), + [anon_sym___declspec] = ACTIONS(3770), + [anon_sym___based] = ACTIONS(3770), + [anon_sym___cdecl] = ACTIONS(3770), + [anon_sym___clrcall] = ACTIONS(3770), + [anon_sym___stdcall] = ACTIONS(3770), + [anon_sym___fastcall] = ACTIONS(3770), + [anon_sym___thiscall] = ACTIONS(3770), + [anon_sym___vectorcall] = ACTIONS(3770), + [anon_sym_LBRACE] = ACTIONS(3772), + [anon_sym_signed] = ACTIONS(3770), + [anon_sym_unsigned] = ACTIONS(3770), + [anon_sym_long] = ACTIONS(3770), + [anon_sym_short] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_static] = ACTIONS(3770), + [anon_sym_register] = ACTIONS(3770), + [anon_sym_inline] = ACTIONS(3770), + [anon_sym___inline] = ACTIONS(3770), + [anon_sym___inline__] = ACTIONS(3770), + [anon_sym___forceinline] = ACTIONS(3770), + [anon_sym_thread_local] = ACTIONS(3770), + [anon_sym___thread] = ACTIONS(3770), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_constexpr] = ACTIONS(3770), + [anon_sym_volatile] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3770), + [anon_sym___restrict__] = ACTIONS(3770), + [anon_sym__Atomic] = ACTIONS(3770), + [anon_sym__Noreturn] = ACTIONS(3770), + [anon_sym_noreturn] = ACTIONS(3770), + [anon_sym__Nonnull] = ACTIONS(3770), + [anon_sym_mutable] = ACTIONS(3770), + [anon_sym_constinit] = ACTIONS(3770), + [anon_sym_consteval] = ACTIONS(3770), + [anon_sym_alignas] = ACTIONS(3770), + [anon_sym__Alignas] = ACTIONS(3770), + [sym_primitive_type] = ACTIONS(3770), + [anon_sym_enum] = ACTIONS(3770), + [anon_sym_class] = ACTIONS(3770), + [anon_sym_struct] = ACTIONS(3770), + [anon_sym_union] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_switch] = ACTIONS(3770), + [anon_sym_case] = ACTIONS(3770), + [anon_sym_default] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_break] = ACTIONS(3770), + [anon_sym_continue] = ACTIONS(3770), + [anon_sym_goto] = ACTIONS(3770), + [anon_sym___try] = ACTIONS(3770), + [anon_sym___leave] = ACTIONS(3770), + [anon_sym_not] = ACTIONS(3770), + [anon_sym_compl] = ACTIONS(3770), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_sizeof] = ACTIONS(3770), + [anon_sym___alignof__] = ACTIONS(3770), + [anon_sym___alignof] = ACTIONS(3770), + [anon_sym__alignof] = ACTIONS(3770), + [anon_sym_alignof] = ACTIONS(3770), + [anon_sym__Alignof] = ACTIONS(3770), + [anon_sym_offsetof] = ACTIONS(3770), + [anon_sym__Generic] = ACTIONS(3770), + [anon_sym_typename] = ACTIONS(3770), + [anon_sym_asm] = ACTIONS(3770), + [anon_sym___asm__] = ACTIONS(3770), + [anon_sym___asm] = ACTIONS(3770), + [sym_number_literal] = ACTIONS(3772), + [anon_sym_L_SQUOTE] = ACTIONS(3772), + [anon_sym_u_SQUOTE] = ACTIONS(3772), + [anon_sym_U_SQUOTE] = ACTIONS(3772), + [anon_sym_u8_SQUOTE] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(3772), + [anon_sym_L_DQUOTE] = ACTIONS(3772), + [anon_sym_u_DQUOTE] = ACTIONS(3772), + [anon_sym_U_DQUOTE] = ACTIONS(3772), + [anon_sym_u8_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE] = ACTIONS(3772), + [sym_true] = ACTIONS(3770), + [sym_false] = ACTIONS(3770), + [anon_sym_NULL] = ACTIONS(3770), + [anon_sym_nullptr] = ACTIONS(3770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3770), + [anon_sym_decltype] = ACTIONS(3770), + [anon_sym_explicit] = ACTIONS(3770), + [anon_sym_export] = ACTIONS(3770), + [anon_sym_module] = ACTIONS(3770), + [anon_sym_import] = ACTIONS(3770), + [anon_sym_template] = ACTIONS(3770), + [anon_sym_operator] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_throw] = ACTIONS(3770), + [anon_sym_namespace] = ACTIONS(3770), + [anon_sym_static_assert] = ACTIONS(3770), + [anon_sym_concept] = ACTIONS(3770), + [anon_sym_co_return] = ACTIONS(3770), + [anon_sym_co_yield] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3770), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_requires] = ACTIONS(3770), + [anon_sym_CARET_CARET] = ACTIONS(3772), + [anon_sym_LBRACK_COLON] = ACTIONS(3772), + [sym_this] = ACTIONS(3770), }, - [STATE(649)] = { - [sym_identifier] = ACTIONS(4096), - [aux_sym_preproc_include_token1] = ACTIONS(4096), - [aux_sym_preproc_def_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token2] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), - [sym_preproc_directive] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4096), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym___extension__] = ACTIONS(4096), - [anon_sym_typedef] = ACTIONS(4096), - [anon_sym_virtual] = ACTIONS(4096), - [anon_sym_extern] = ACTIONS(4096), - [anon_sym___attribute__] = ACTIONS(4096), - [anon_sym___attribute] = ACTIONS(4096), - [anon_sym_using] = ACTIONS(4096), - [anon_sym_COLON_COLON] = ACTIONS(4098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), - [anon_sym___declspec] = ACTIONS(4096), - [anon_sym___based] = ACTIONS(4096), - [anon_sym___cdecl] = ACTIONS(4096), - [anon_sym___clrcall] = ACTIONS(4096), - [anon_sym___stdcall] = ACTIONS(4096), - [anon_sym___fastcall] = ACTIONS(4096), - [anon_sym___thiscall] = ACTIONS(4096), - [anon_sym___vectorcall] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4098), - [anon_sym_signed] = ACTIONS(4096), - [anon_sym_unsigned] = ACTIONS(4096), - [anon_sym_long] = ACTIONS(4096), - [anon_sym_short] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_static] = ACTIONS(4096), - [anon_sym_register] = ACTIONS(4096), - [anon_sym_inline] = ACTIONS(4096), - [anon_sym___inline] = ACTIONS(4096), - [anon_sym___inline__] = ACTIONS(4096), - [anon_sym___forceinline] = ACTIONS(4096), - [anon_sym_thread_local] = ACTIONS(4096), - [anon_sym___thread] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_constexpr] = ACTIONS(4096), - [anon_sym_volatile] = ACTIONS(4096), - [anon_sym_restrict] = ACTIONS(4096), - [anon_sym___restrict__] = ACTIONS(4096), - [anon_sym__Atomic] = ACTIONS(4096), - [anon_sym__Noreturn] = ACTIONS(4096), - [anon_sym_noreturn] = ACTIONS(4096), - [anon_sym__Nonnull] = ACTIONS(4096), - [anon_sym_mutable] = ACTIONS(4096), - [anon_sym_constinit] = ACTIONS(4096), - [anon_sym_consteval] = ACTIONS(4096), - [anon_sym_alignas] = ACTIONS(4096), - [anon_sym__Alignas] = ACTIONS(4096), - [sym_primitive_type] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_class] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_if] = ACTIONS(4096), - [anon_sym_switch] = ACTIONS(4096), - [anon_sym_case] = ACTIONS(4096), - [anon_sym_default] = ACTIONS(4096), - [anon_sym_while] = ACTIONS(4096), - [anon_sym_do] = ACTIONS(4096), - [anon_sym_for] = ACTIONS(4096), - [anon_sym_return] = ACTIONS(4096), - [anon_sym_break] = ACTIONS(4096), - [anon_sym_continue] = ACTIONS(4096), - [anon_sym_goto] = ACTIONS(4096), - [anon_sym___try] = ACTIONS(4096), - [anon_sym___leave] = ACTIONS(4096), - [anon_sym_not] = ACTIONS(4096), - [anon_sym_compl] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4098), - [anon_sym_sizeof] = ACTIONS(4096), - [anon_sym___alignof__] = ACTIONS(4096), - [anon_sym___alignof] = ACTIONS(4096), - [anon_sym__alignof] = ACTIONS(4096), - [anon_sym_alignof] = ACTIONS(4096), - [anon_sym__Alignof] = ACTIONS(4096), - [anon_sym_offsetof] = ACTIONS(4096), - [anon_sym__Generic] = ACTIONS(4096), - [anon_sym_typename] = ACTIONS(4096), - [anon_sym_asm] = ACTIONS(4096), - [anon_sym___asm__] = ACTIONS(4096), - [anon_sym___asm] = ACTIONS(4096), - [sym_number_literal] = ACTIONS(4098), - [anon_sym_L_SQUOTE] = ACTIONS(4098), - [anon_sym_u_SQUOTE] = ACTIONS(4098), - [anon_sym_U_SQUOTE] = ACTIONS(4098), - [anon_sym_u8_SQUOTE] = ACTIONS(4098), - [anon_sym_SQUOTE] = ACTIONS(4098), - [anon_sym_L_DQUOTE] = ACTIONS(4098), - [anon_sym_u_DQUOTE] = ACTIONS(4098), - [anon_sym_U_DQUOTE] = ACTIONS(4098), - [anon_sym_u8_DQUOTE] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(4098), - [sym_true] = ACTIONS(4096), - [sym_false] = ACTIONS(4096), - [anon_sym_NULL] = ACTIONS(4096), - [anon_sym_nullptr] = ACTIONS(4096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_export] = ACTIONS(4096), - [anon_sym_module] = ACTIONS(4096), - [anon_sym_import] = ACTIONS(4096), - [anon_sym_template] = ACTIONS(4096), - [anon_sym_operator] = ACTIONS(4096), - [anon_sym_try] = ACTIONS(4096), - [anon_sym_delete] = ACTIONS(4096), - [anon_sym_throw] = ACTIONS(4096), - [anon_sym_namespace] = ACTIONS(4096), - [anon_sym_static_assert] = ACTIONS(4096), - [anon_sym_concept] = ACTIONS(4096), - [anon_sym_co_return] = ACTIONS(4096), - [anon_sym_co_yield] = ACTIONS(4096), - [anon_sym_R_DQUOTE] = ACTIONS(4098), - [anon_sym_LR_DQUOTE] = ACTIONS(4098), - [anon_sym_uR_DQUOTE] = ACTIONS(4098), - [anon_sym_UR_DQUOTE] = ACTIONS(4098), - [anon_sym_u8R_DQUOTE] = ACTIONS(4098), - [anon_sym_co_await] = ACTIONS(4096), - [anon_sym_new] = ACTIONS(4096), - [anon_sym_requires] = ACTIONS(4096), - [anon_sym_CARET_CARET] = ACTIONS(4098), - [anon_sym_LBRACK_COLON] = ACTIONS(4098), - [sym_this] = ACTIONS(4096), + [STATE(667)] = { + [sym_identifier] = ACTIONS(4122), + [aux_sym_preproc_include_token1] = ACTIONS(4122), + [aux_sym_preproc_def_token1] = ACTIONS(4122), + [aux_sym_preproc_if_token1] = ACTIONS(4122), + [aux_sym_preproc_if_token2] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4122), + [sym_preproc_directive] = ACTIONS(4122), + [anon_sym_LPAREN2] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4124), + [anon_sym_TILDE] = ACTIONS(4124), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym___extension__] = ACTIONS(4122), + [anon_sym_typedef] = ACTIONS(4122), + [anon_sym_virtual] = ACTIONS(4122), + [anon_sym_extern] = ACTIONS(4122), + [anon_sym___attribute__] = ACTIONS(4122), + [anon_sym___attribute] = ACTIONS(4122), + [anon_sym_using] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4124), + [anon_sym___declspec] = ACTIONS(4122), + [anon_sym___based] = ACTIONS(4122), + [anon_sym___cdecl] = ACTIONS(4122), + [anon_sym___clrcall] = ACTIONS(4122), + [anon_sym___stdcall] = ACTIONS(4122), + [anon_sym___fastcall] = ACTIONS(4122), + [anon_sym___thiscall] = ACTIONS(4122), + [anon_sym___vectorcall] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_signed] = ACTIONS(4122), + [anon_sym_unsigned] = ACTIONS(4122), + [anon_sym_long] = ACTIONS(4122), + [anon_sym_short] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_static] = ACTIONS(4122), + [anon_sym_register] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym___inline] = ACTIONS(4122), + [anon_sym___inline__] = ACTIONS(4122), + [anon_sym___forceinline] = ACTIONS(4122), + [anon_sym_thread_local] = ACTIONS(4122), + [anon_sym___thread] = ACTIONS(4122), + [anon_sym_const] = ACTIONS(4122), + [anon_sym_constexpr] = ACTIONS(4122), + [anon_sym_volatile] = ACTIONS(4122), + [anon_sym_restrict] = ACTIONS(4122), + [anon_sym___restrict__] = ACTIONS(4122), + [anon_sym__Atomic] = ACTIONS(4122), + [anon_sym__Noreturn] = ACTIONS(4122), + [anon_sym_noreturn] = ACTIONS(4122), + [anon_sym__Nonnull] = ACTIONS(4122), + [anon_sym_mutable] = ACTIONS(4122), + [anon_sym_constinit] = ACTIONS(4122), + [anon_sym_consteval] = ACTIONS(4122), + [anon_sym_alignas] = ACTIONS(4122), + [anon_sym__Alignas] = ACTIONS(4122), + [sym_primitive_type] = ACTIONS(4122), + [anon_sym_enum] = ACTIONS(4122), + [anon_sym_class] = ACTIONS(4122), + [anon_sym_struct] = ACTIONS(4122), + [anon_sym_union] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4122), + [anon_sym_switch] = ACTIONS(4122), + [anon_sym_case] = ACTIONS(4122), + [anon_sym_default] = ACTIONS(4122), + [anon_sym_while] = ACTIONS(4122), + [anon_sym_do] = ACTIONS(4122), + [anon_sym_for] = ACTIONS(4122), + [anon_sym_return] = ACTIONS(4122), + [anon_sym_break] = ACTIONS(4122), + [anon_sym_continue] = ACTIONS(4122), + [anon_sym_goto] = ACTIONS(4122), + [anon_sym___try] = ACTIONS(4122), + [anon_sym___leave] = ACTIONS(4122), + [anon_sym_not] = ACTIONS(4122), + [anon_sym_compl] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_sizeof] = ACTIONS(4122), + [anon_sym___alignof__] = ACTIONS(4122), + [anon_sym___alignof] = ACTIONS(4122), + [anon_sym__alignof] = ACTIONS(4122), + [anon_sym_alignof] = ACTIONS(4122), + [anon_sym__Alignof] = ACTIONS(4122), + [anon_sym_offsetof] = ACTIONS(4122), + [anon_sym__Generic] = ACTIONS(4122), + [anon_sym_typename] = ACTIONS(4122), + [anon_sym_asm] = ACTIONS(4122), + [anon_sym___asm__] = ACTIONS(4122), + [anon_sym___asm] = ACTIONS(4122), + [sym_number_literal] = ACTIONS(4124), + [anon_sym_L_SQUOTE] = ACTIONS(4124), + [anon_sym_u_SQUOTE] = ACTIONS(4124), + [anon_sym_U_SQUOTE] = ACTIONS(4124), + [anon_sym_u8_SQUOTE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(4124), + [anon_sym_L_DQUOTE] = ACTIONS(4124), + [anon_sym_u_DQUOTE] = ACTIONS(4124), + [anon_sym_U_DQUOTE] = ACTIONS(4124), + [anon_sym_u8_DQUOTE] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4124), + [sym_true] = ACTIONS(4122), + [sym_false] = ACTIONS(4122), + [anon_sym_NULL] = ACTIONS(4122), + [anon_sym_nullptr] = ACTIONS(4122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4122), + [anon_sym_decltype] = ACTIONS(4122), + [anon_sym_explicit] = ACTIONS(4122), + [anon_sym_export] = ACTIONS(4122), + [anon_sym_module] = ACTIONS(4122), + [anon_sym_import] = ACTIONS(4122), + [anon_sym_template] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_try] = ACTIONS(4122), + [anon_sym_delete] = ACTIONS(4122), + [anon_sym_throw] = ACTIONS(4122), + [anon_sym_namespace] = ACTIONS(4122), + [anon_sym_static_assert] = ACTIONS(4122), + [anon_sym_concept] = ACTIONS(4122), + [anon_sym_co_return] = ACTIONS(4122), + [anon_sym_co_yield] = ACTIONS(4122), + [anon_sym_R_DQUOTE] = ACTIONS(4124), + [anon_sym_LR_DQUOTE] = ACTIONS(4124), + [anon_sym_uR_DQUOTE] = ACTIONS(4124), + [anon_sym_UR_DQUOTE] = ACTIONS(4124), + [anon_sym_u8R_DQUOTE] = ACTIONS(4124), + [anon_sym_co_await] = ACTIONS(4122), + [anon_sym_new] = ACTIONS(4122), + [anon_sym_requires] = ACTIONS(4122), + [anon_sym_CARET_CARET] = ACTIONS(4124), + [anon_sym_LBRACK_COLON] = ACTIONS(4124), + [sym_this] = ACTIONS(4122), }, - [STATE(650)] = { - [sym_identifier] = ACTIONS(3925), - [aux_sym_preproc_include_token1] = ACTIONS(3925), - [aux_sym_preproc_def_token1] = ACTIONS(3925), - [aux_sym_preproc_if_token1] = ACTIONS(3925), - [aux_sym_preproc_if_token2] = ACTIONS(3925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3925), - [sym_preproc_directive] = ACTIONS(3925), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_BANG] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_DASH] = ACTIONS(3925), - [anon_sym_PLUS] = ACTIONS(3925), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3925), - [anon_sym_typedef] = ACTIONS(3925), - [anon_sym_virtual] = ACTIONS(3925), - [anon_sym_extern] = ACTIONS(3925), - [anon_sym___attribute__] = ACTIONS(3925), - [anon_sym___attribute] = ACTIONS(3925), - [anon_sym_using] = ACTIONS(3925), - [anon_sym_COLON_COLON] = ACTIONS(3928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3925), - [anon_sym___based] = ACTIONS(3925), - [anon_sym___cdecl] = ACTIONS(3925), - [anon_sym___clrcall] = ACTIONS(3925), - [anon_sym___stdcall] = ACTIONS(3925), - [anon_sym___fastcall] = ACTIONS(3925), - [anon_sym___thiscall] = ACTIONS(3925), - [anon_sym___vectorcall] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_signed] = ACTIONS(3925), - [anon_sym_unsigned] = ACTIONS(3925), - [anon_sym_long] = ACTIONS(3925), - [anon_sym_short] = ACTIONS(3925), - [anon_sym_LBRACK] = ACTIONS(3925), - [anon_sym_static] = ACTIONS(3925), - [anon_sym_register] = ACTIONS(3925), - [anon_sym_inline] = ACTIONS(3925), - [anon_sym___inline] = ACTIONS(3925), - [anon_sym___inline__] = ACTIONS(3925), - [anon_sym___forceinline] = ACTIONS(3925), - [anon_sym_thread_local] = ACTIONS(3925), - [anon_sym___thread] = ACTIONS(3925), - [anon_sym_const] = ACTIONS(3925), - [anon_sym_constexpr] = ACTIONS(3925), - [anon_sym_volatile] = ACTIONS(3925), - [anon_sym_restrict] = ACTIONS(3925), - [anon_sym___restrict__] = ACTIONS(3925), - [anon_sym__Atomic] = ACTIONS(3925), - [anon_sym__Noreturn] = ACTIONS(3925), - [anon_sym_noreturn] = ACTIONS(3925), - [anon_sym__Nonnull] = ACTIONS(3925), - [anon_sym_mutable] = ACTIONS(3925), - [anon_sym_constinit] = ACTIONS(3925), - [anon_sym_consteval] = ACTIONS(3925), - [anon_sym_alignas] = ACTIONS(3925), - [anon_sym__Alignas] = ACTIONS(3925), - [sym_primitive_type] = ACTIONS(3925), - [anon_sym_enum] = ACTIONS(3925), - [anon_sym_class] = ACTIONS(3925), - [anon_sym_struct] = ACTIONS(3925), - [anon_sym_union] = ACTIONS(3925), - [anon_sym_if] = ACTIONS(3925), - [anon_sym_switch] = ACTIONS(3925), - [anon_sym_case] = ACTIONS(3925), - [anon_sym_default] = ACTIONS(3925), - [anon_sym_while] = ACTIONS(3925), - [anon_sym_do] = ACTIONS(3925), - [anon_sym_for] = ACTIONS(3925), - [anon_sym_return] = ACTIONS(3925), - [anon_sym_break] = ACTIONS(3925), - [anon_sym_continue] = ACTIONS(3925), - [anon_sym_goto] = ACTIONS(3925), - [anon_sym___try] = ACTIONS(3925), - [anon_sym___leave] = ACTIONS(3925), - [anon_sym_not] = ACTIONS(3925), - [anon_sym_compl] = ACTIONS(3925), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3925), - [anon_sym___alignof__] = ACTIONS(3925), - [anon_sym___alignof] = ACTIONS(3925), - [anon_sym__alignof] = ACTIONS(3925), - [anon_sym_alignof] = ACTIONS(3925), - [anon_sym__Alignof] = ACTIONS(3925), - [anon_sym_offsetof] = ACTIONS(3925), - [anon_sym__Generic] = ACTIONS(3925), - [anon_sym_typename] = ACTIONS(3925), - [anon_sym_asm] = ACTIONS(3925), - [anon_sym___asm__] = ACTIONS(3925), - [anon_sym___asm] = ACTIONS(3925), - [sym_number_literal] = ACTIONS(3928), - [anon_sym_L_SQUOTE] = ACTIONS(3928), - [anon_sym_u_SQUOTE] = ACTIONS(3928), - [anon_sym_U_SQUOTE] = ACTIONS(3928), - [anon_sym_u8_SQUOTE] = ACTIONS(3928), - [anon_sym_SQUOTE] = ACTIONS(3928), - [anon_sym_L_DQUOTE] = ACTIONS(3928), - [anon_sym_u_DQUOTE] = ACTIONS(3928), - [anon_sym_U_DQUOTE] = ACTIONS(3928), - [anon_sym_u8_DQUOTE] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(3928), - [sym_true] = ACTIONS(3925), - [sym_false] = ACTIONS(3925), - [anon_sym_NULL] = ACTIONS(3925), - [anon_sym_nullptr] = ACTIONS(3925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3925), - [anon_sym_decltype] = ACTIONS(3925), - [anon_sym_explicit] = ACTIONS(3925), - [anon_sym_export] = ACTIONS(3925), - [anon_sym_module] = ACTIONS(3925), - [anon_sym_import] = ACTIONS(3925), - [anon_sym_template] = ACTIONS(3925), - [anon_sym_operator] = ACTIONS(3925), - [anon_sym_try] = ACTIONS(3925), - [anon_sym_delete] = ACTIONS(3925), - [anon_sym_throw] = ACTIONS(3925), - [anon_sym_namespace] = ACTIONS(3925), - [anon_sym_static_assert] = ACTIONS(3925), - [anon_sym_concept] = ACTIONS(3925), - [anon_sym_co_return] = ACTIONS(3925), - [anon_sym_co_yield] = ACTIONS(3925), - [anon_sym_R_DQUOTE] = ACTIONS(3928), - [anon_sym_LR_DQUOTE] = ACTIONS(3928), - [anon_sym_uR_DQUOTE] = ACTIONS(3928), - [anon_sym_UR_DQUOTE] = ACTIONS(3928), - [anon_sym_u8R_DQUOTE] = ACTIONS(3928), - [anon_sym_co_await] = ACTIONS(3925), - [anon_sym_new] = ACTIONS(3925), - [anon_sym_requires] = ACTIONS(3925), - [anon_sym_CARET_CARET] = ACTIONS(3928), - [anon_sym_LBRACK_COLON] = ACTIONS(3928), - [sym_this] = ACTIONS(3925), + [STATE(668)] = { + [sym_identifier] = ACTIONS(4367), + [aux_sym_preproc_include_token1] = ACTIONS(4367), + [aux_sym_preproc_def_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token2] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4367), + [sym_preproc_directive] = ACTIONS(4367), + [anon_sym_LPAREN2] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_AMP_AMP] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4369), + [anon_sym___extension__] = ACTIONS(4367), + [anon_sym_typedef] = ACTIONS(4367), + [anon_sym_virtual] = ACTIONS(4367), + [anon_sym_extern] = ACTIONS(4367), + [anon_sym___attribute__] = ACTIONS(4367), + [anon_sym___attribute] = ACTIONS(4367), + [anon_sym_using] = ACTIONS(4367), + [anon_sym_COLON_COLON] = ACTIONS(4369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4369), + [anon_sym___declspec] = ACTIONS(4367), + [anon_sym___based] = ACTIONS(4367), + [anon_sym___cdecl] = ACTIONS(4367), + [anon_sym___clrcall] = ACTIONS(4367), + [anon_sym___stdcall] = ACTIONS(4367), + [anon_sym___fastcall] = ACTIONS(4367), + [anon_sym___thiscall] = ACTIONS(4367), + [anon_sym___vectorcall] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4369), + [anon_sym_signed] = ACTIONS(4367), + [anon_sym_unsigned] = ACTIONS(4367), + [anon_sym_long] = ACTIONS(4367), + [anon_sym_short] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4367), + [anon_sym_static] = ACTIONS(4367), + [anon_sym_register] = ACTIONS(4367), + [anon_sym_inline] = ACTIONS(4367), + [anon_sym___inline] = ACTIONS(4367), + [anon_sym___inline__] = ACTIONS(4367), + [anon_sym___forceinline] = ACTIONS(4367), + [anon_sym_thread_local] = ACTIONS(4367), + [anon_sym___thread] = ACTIONS(4367), + [anon_sym_const] = ACTIONS(4367), + [anon_sym_constexpr] = ACTIONS(4367), + [anon_sym_volatile] = ACTIONS(4367), + [anon_sym_restrict] = ACTIONS(4367), + [anon_sym___restrict__] = ACTIONS(4367), + [anon_sym__Atomic] = ACTIONS(4367), + [anon_sym__Noreturn] = ACTIONS(4367), + [anon_sym_noreturn] = ACTIONS(4367), + [anon_sym__Nonnull] = ACTIONS(4367), + [anon_sym_mutable] = ACTIONS(4367), + [anon_sym_constinit] = ACTIONS(4367), + [anon_sym_consteval] = ACTIONS(4367), + [anon_sym_alignas] = ACTIONS(4367), + [anon_sym__Alignas] = ACTIONS(4367), + [sym_primitive_type] = ACTIONS(4367), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_class] = ACTIONS(4367), + [anon_sym_struct] = ACTIONS(4367), + [anon_sym_union] = ACTIONS(4367), + [anon_sym_if] = ACTIONS(4367), + [anon_sym_switch] = ACTIONS(4367), + [anon_sym_case] = ACTIONS(4367), + [anon_sym_default] = ACTIONS(4367), + [anon_sym_while] = ACTIONS(4367), + [anon_sym_do] = ACTIONS(4367), + [anon_sym_for] = ACTIONS(4367), + [anon_sym_return] = ACTIONS(4367), + [anon_sym_break] = ACTIONS(4367), + [anon_sym_continue] = ACTIONS(4367), + [anon_sym_goto] = ACTIONS(4367), + [anon_sym___try] = ACTIONS(4367), + [anon_sym___leave] = ACTIONS(4367), + [anon_sym_not] = ACTIONS(4367), + [anon_sym_compl] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_PLUS_PLUS] = ACTIONS(4369), + [anon_sym_sizeof] = ACTIONS(4367), + [anon_sym___alignof__] = ACTIONS(4367), + [anon_sym___alignof] = ACTIONS(4367), + [anon_sym__alignof] = ACTIONS(4367), + [anon_sym_alignof] = ACTIONS(4367), + [anon_sym__Alignof] = ACTIONS(4367), + [anon_sym_offsetof] = ACTIONS(4367), + [anon_sym__Generic] = ACTIONS(4367), + [anon_sym_typename] = ACTIONS(4367), + [anon_sym_asm] = ACTIONS(4367), + [anon_sym___asm__] = ACTIONS(4367), + [anon_sym___asm] = ACTIONS(4367), + [sym_number_literal] = ACTIONS(4369), + [anon_sym_L_SQUOTE] = ACTIONS(4369), + [anon_sym_u_SQUOTE] = ACTIONS(4369), + [anon_sym_U_SQUOTE] = ACTIONS(4369), + [anon_sym_u8_SQUOTE] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4369), + [anon_sym_L_DQUOTE] = ACTIONS(4369), + [anon_sym_u_DQUOTE] = ACTIONS(4369), + [anon_sym_U_DQUOTE] = ACTIONS(4369), + [anon_sym_u8_DQUOTE] = ACTIONS(4369), + [anon_sym_DQUOTE] = ACTIONS(4369), + [sym_true] = ACTIONS(4367), + [sym_false] = ACTIONS(4367), + [anon_sym_NULL] = ACTIONS(4367), + [anon_sym_nullptr] = ACTIONS(4367), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4367), + [anon_sym_decltype] = ACTIONS(4367), + [anon_sym_explicit] = ACTIONS(4367), + [anon_sym_export] = ACTIONS(4367), + [anon_sym_module] = ACTIONS(4367), + [anon_sym_import] = ACTIONS(4367), + [anon_sym_template] = ACTIONS(4367), + [anon_sym_operator] = ACTIONS(4367), + [anon_sym_try] = ACTIONS(4367), + [anon_sym_delete] = ACTIONS(4367), + [anon_sym_throw] = ACTIONS(4367), + [anon_sym_namespace] = ACTIONS(4367), + [anon_sym_static_assert] = ACTIONS(4367), + [anon_sym_concept] = ACTIONS(4367), + [anon_sym_co_return] = ACTIONS(4367), + [anon_sym_co_yield] = ACTIONS(4367), + [anon_sym_R_DQUOTE] = ACTIONS(4369), + [anon_sym_LR_DQUOTE] = ACTIONS(4369), + [anon_sym_uR_DQUOTE] = ACTIONS(4369), + [anon_sym_UR_DQUOTE] = ACTIONS(4369), + [anon_sym_u8R_DQUOTE] = ACTIONS(4369), + [anon_sym_co_await] = ACTIONS(4367), + [anon_sym_new] = ACTIONS(4367), + [anon_sym_requires] = ACTIONS(4367), + [anon_sym_CARET_CARET] = ACTIONS(4369), + [anon_sym_LBRACK_COLON] = ACTIONS(4369), + [sym_this] = ACTIONS(4367), }, - [STATE(651)] = { - [sym_identifier] = ACTIONS(3556), - [aux_sym_preproc_include_token1] = ACTIONS(3556), - [aux_sym_preproc_def_token1] = ACTIONS(3556), - [aux_sym_preproc_if_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3556), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3556), - [sym_preproc_directive] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3556), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym___attribute] = ACTIONS(3556), - [anon_sym_using] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym___based] = ACTIONS(3556), - [anon_sym___cdecl] = ACTIONS(3556), - [anon_sym___clrcall] = ACTIONS(3556), - [anon_sym___stdcall] = ACTIONS(3556), - [anon_sym___fastcall] = ACTIONS(3556), - [anon_sym___thiscall] = ACTIONS(3556), - [anon_sym___vectorcall] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_RBRACE] = ACTIONS(3558), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [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(3556), - [anon_sym__Alignas] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_else] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_case] = ACTIONS(3556), - [anon_sym_default] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym___try] = ACTIONS(3556), - [anon_sym___leave] = ACTIONS(3556), - [anon_sym_not] = ACTIONS(3556), - [anon_sym_compl] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym___alignof__] = ACTIONS(3556), - [anon_sym___alignof] = ACTIONS(3556), - [anon_sym__alignof] = ACTIONS(3556), - [anon_sym_alignof] = ACTIONS(3556), - [anon_sym__Alignof] = ACTIONS(3556), - [anon_sym_offsetof] = ACTIONS(3556), - [anon_sym__Generic] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym___asm__] = ACTIONS(3556), - [anon_sym___asm] = ACTIONS(3556), - [sym_number_literal] = ACTIONS(3558), - [anon_sym_L_SQUOTE] = ACTIONS(3558), - [anon_sym_u_SQUOTE] = ACTIONS(3558), - [anon_sym_U_SQUOTE] = ACTIONS(3558), - [anon_sym_u8_SQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_L_DQUOTE] = ACTIONS(3558), - [anon_sym_u_DQUOTE] = ACTIONS(3558), - [anon_sym_U_DQUOTE] = ACTIONS(3558), - [anon_sym_u8_DQUOTE] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [anon_sym_NULL] = ACTIONS(3556), - [anon_sym_nullptr] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_explicit] = ACTIONS(3556), - [anon_sym_export] = ACTIONS(3556), - [anon_sym_import] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_operator] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_delete] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_namespace] = ACTIONS(3556), - [anon_sym_static_assert] = ACTIONS(3556), - [anon_sym_concept] = ACTIONS(3556), - [anon_sym_co_return] = ACTIONS(3556), - [anon_sym_co_yield] = ACTIONS(3556), - [anon_sym_R_DQUOTE] = ACTIONS(3558), - [anon_sym_LR_DQUOTE] = ACTIONS(3558), - [anon_sym_uR_DQUOTE] = ACTIONS(3558), - [anon_sym_UR_DQUOTE] = ACTIONS(3558), - [anon_sym_u8R_DQUOTE] = ACTIONS(3558), - [anon_sym_co_await] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_requires] = ACTIONS(3556), - [anon_sym_CARET_CARET] = ACTIONS(3558), - [anon_sym_LBRACK_COLON] = ACTIONS(3558), - [sym_this] = ACTIONS(3556), + [STATE(669)] = { + [sym_identifier] = ACTIONS(3854), + [aux_sym_preproc_include_token1] = ACTIONS(3854), + [aux_sym_preproc_def_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token2] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3854), + [sym_preproc_directive] = ACTIONS(3854), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3856), + [anon_sym_TILDE] = ACTIONS(3856), + [anon_sym_DASH] = ACTIONS(3854), + [anon_sym_PLUS] = ACTIONS(3854), + [anon_sym_STAR] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + [anon_sym_SEMI] = ACTIONS(3856), + [anon_sym___extension__] = ACTIONS(3854), + [anon_sym_typedef] = ACTIONS(3854), + [anon_sym_virtual] = ACTIONS(3854), + [anon_sym_extern] = ACTIONS(3854), + [anon_sym___attribute__] = ACTIONS(3854), + [anon_sym___attribute] = ACTIONS(3854), + [anon_sym_using] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3856), + [anon_sym___declspec] = ACTIONS(3854), + [anon_sym___based] = ACTIONS(3854), + [anon_sym___cdecl] = ACTIONS(3854), + [anon_sym___clrcall] = ACTIONS(3854), + [anon_sym___stdcall] = ACTIONS(3854), + [anon_sym___fastcall] = ACTIONS(3854), + [anon_sym___thiscall] = ACTIONS(3854), + [anon_sym___vectorcall] = ACTIONS(3854), + [anon_sym_LBRACE] = ACTIONS(3856), + [anon_sym_signed] = ACTIONS(3854), + [anon_sym_unsigned] = ACTIONS(3854), + [anon_sym_long] = ACTIONS(3854), + [anon_sym_short] = ACTIONS(3854), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_static] = ACTIONS(3854), + [anon_sym_register] = ACTIONS(3854), + [anon_sym_inline] = ACTIONS(3854), + [anon_sym___inline] = ACTIONS(3854), + [anon_sym___inline__] = ACTIONS(3854), + [anon_sym___forceinline] = ACTIONS(3854), + [anon_sym_thread_local] = ACTIONS(3854), + [anon_sym___thread] = ACTIONS(3854), + [anon_sym_const] = ACTIONS(3854), + [anon_sym_constexpr] = ACTIONS(3854), + [anon_sym_volatile] = ACTIONS(3854), + [anon_sym_restrict] = ACTIONS(3854), + [anon_sym___restrict__] = ACTIONS(3854), + [anon_sym__Atomic] = ACTIONS(3854), + [anon_sym__Noreturn] = ACTIONS(3854), + [anon_sym_noreturn] = ACTIONS(3854), + [anon_sym__Nonnull] = ACTIONS(3854), + [anon_sym_mutable] = ACTIONS(3854), + [anon_sym_constinit] = ACTIONS(3854), + [anon_sym_consteval] = ACTIONS(3854), + [anon_sym_alignas] = ACTIONS(3854), + [anon_sym__Alignas] = ACTIONS(3854), + [sym_primitive_type] = ACTIONS(3854), + [anon_sym_enum] = ACTIONS(3854), + [anon_sym_class] = ACTIONS(3854), + [anon_sym_struct] = ACTIONS(3854), + [anon_sym_union] = ACTIONS(3854), + [anon_sym_if] = ACTIONS(3854), + [anon_sym_switch] = ACTIONS(3854), + [anon_sym_case] = ACTIONS(3854), + [anon_sym_default] = ACTIONS(3854), + [anon_sym_while] = ACTIONS(3854), + [anon_sym_do] = ACTIONS(3854), + [anon_sym_for] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(3854), + [anon_sym_break] = ACTIONS(3854), + [anon_sym_continue] = ACTIONS(3854), + [anon_sym_goto] = ACTIONS(3854), + [anon_sym___try] = ACTIONS(3854), + [anon_sym___leave] = ACTIONS(3854), + [anon_sym_not] = ACTIONS(3854), + [anon_sym_compl] = ACTIONS(3854), + [anon_sym_DASH_DASH] = ACTIONS(3856), + [anon_sym_PLUS_PLUS] = ACTIONS(3856), + [anon_sym_sizeof] = ACTIONS(3854), + [anon_sym___alignof__] = ACTIONS(3854), + [anon_sym___alignof] = ACTIONS(3854), + [anon_sym__alignof] = ACTIONS(3854), + [anon_sym_alignof] = ACTIONS(3854), + [anon_sym__Alignof] = ACTIONS(3854), + [anon_sym_offsetof] = ACTIONS(3854), + [anon_sym__Generic] = ACTIONS(3854), + [anon_sym_typename] = ACTIONS(3854), + [anon_sym_asm] = ACTIONS(3854), + [anon_sym___asm__] = ACTIONS(3854), + [anon_sym___asm] = ACTIONS(3854), + [sym_number_literal] = ACTIONS(3856), + [anon_sym_L_SQUOTE] = ACTIONS(3856), + [anon_sym_u_SQUOTE] = ACTIONS(3856), + [anon_sym_U_SQUOTE] = ACTIONS(3856), + [anon_sym_u8_SQUOTE] = ACTIONS(3856), + [anon_sym_SQUOTE] = ACTIONS(3856), + [anon_sym_L_DQUOTE] = ACTIONS(3856), + [anon_sym_u_DQUOTE] = ACTIONS(3856), + [anon_sym_U_DQUOTE] = ACTIONS(3856), + [anon_sym_u8_DQUOTE] = ACTIONS(3856), + [anon_sym_DQUOTE] = ACTIONS(3856), + [sym_true] = ACTIONS(3854), + [sym_false] = ACTIONS(3854), + [anon_sym_NULL] = ACTIONS(3854), + [anon_sym_nullptr] = ACTIONS(3854), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3854), + [anon_sym_decltype] = ACTIONS(3854), + [anon_sym_explicit] = ACTIONS(3854), + [anon_sym_export] = ACTIONS(3854), + [anon_sym_module] = ACTIONS(3854), + [anon_sym_import] = ACTIONS(3854), + [anon_sym_template] = ACTIONS(3854), + [anon_sym_operator] = ACTIONS(3854), + [anon_sym_try] = ACTIONS(3854), + [anon_sym_delete] = ACTIONS(3854), + [anon_sym_throw] = ACTIONS(3854), + [anon_sym_namespace] = ACTIONS(3854), + [anon_sym_static_assert] = ACTIONS(3854), + [anon_sym_concept] = ACTIONS(3854), + [anon_sym_co_return] = ACTIONS(3854), + [anon_sym_co_yield] = ACTIONS(3854), + [anon_sym_R_DQUOTE] = ACTIONS(3856), + [anon_sym_LR_DQUOTE] = ACTIONS(3856), + [anon_sym_uR_DQUOTE] = ACTIONS(3856), + [anon_sym_UR_DQUOTE] = ACTIONS(3856), + [anon_sym_u8R_DQUOTE] = ACTIONS(3856), + [anon_sym_co_await] = ACTIONS(3854), + [anon_sym_new] = ACTIONS(3854), + [anon_sym_requires] = ACTIONS(3854), + [anon_sym_CARET_CARET] = ACTIONS(3856), + [anon_sym_LBRACK_COLON] = ACTIONS(3856), + [sym_this] = ACTIONS(3854), }, - [STATE(652)] = { - [sym_identifier] = ACTIONS(3939), - [aux_sym_preproc_include_token1] = ACTIONS(3939), - [aux_sym_preproc_def_token1] = ACTIONS(3939), - [aux_sym_preproc_if_token1] = ACTIONS(3939), - [aux_sym_preproc_if_token2] = ACTIONS(3939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3939), - [sym_preproc_directive] = ACTIONS(3939), - [anon_sym_LPAREN2] = ACTIONS(3941), - [anon_sym_BANG] = ACTIONS(3941), - [anon_sym_TILDE] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3939), - [anon_sym_PLUS] = ACTIONS(3939), - [anon_sym_STAR] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym___extension__] = ACTIONS(3939), - [anon_sym_typedef] = ACTIONS(3939), - [anon_sym_virtual] = ACTIONS(3939), - [anon_sym_extern] = ACTIONS(3939), - [anon_sym___attribute__] = ACTIONS(3939), - [anon_sym___attribute] = ACTIONS(3939), - [anon_sym_using] = ACTIONS(3939), - [anon_sym_COLON_COLON] = ACTIONS(3941), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3941), - [anon_sym___declspec] = ACTIONS(3939), - [anon_sym___based] = ACTIONS(3939), - [anon_sym___cdecl] = ACTIONS(3939), - [anon_sym___clrcall] = ACTIONS(3939), - [anon_sym___stdcall] = ACTIONS(3939), - [anon_sym___fastcall] = ACTIONS(3939), - [anon_sym___thiscall] = ACTIONS(3939), - [anon_sym___vectorcall] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_signed] = ACTIONS(3939), - [anon_sym_unsigned] = ACTIONS(3939), - [anon_sym_long] = ACTIONS(3939), - [anon_sym_short] = ACTIONS(3939), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_static] = ACTIONS(3939), - [anon_sym_register] = ACTIONS(3939), - [anon_sym_inline] = ACTIONS(3939), - [anon_sym___inline] = ACTIONS(3939), - [anon_sym___inline__] = ACTIONS(3939), - [anon_sym___forceinline] = ACTIONS(3939), - [anon_sym_thread_local] = ACTIONS(3939), - [anon_sym___thread] = ACTIONS(3939), - [anon_sym_const] = ACTIONS(3939), - [anon_sym_constexpr] = ACTIONS(3939), - [anon_sym_volatile] = ACTIONS(3939), - [anon_sym_restrict] = ACTIONS(3939), - [anon_sym___restrict__] = ACTIONS(3939), - [anon_sym__Atomic] = ACTIONS(3939), - [anon_sym__Noreturn] = ACTIONS(3939), - [anon_sym_noreturn] = ACTIONS(3939), - [anon_sym__Nonnull] = ACTIONS(3939), - [anon_sym_mutable] = ACTIONS(3939), - [anon_sym_constinit] = ACTIONS(3939), - [anon_sym_consteval] = ACTIONS(3939), - [anon_sym_alignas] = ACTIONS(3939), - [anon_sym__Alignas] = ACTIONS(3939), - [sym_primitive_type] = ACTIONS(3939), - [anon_sym_enum] = ACTIONS(3939), - [anon_sym_class] = ACTIONS(3939), - [anon_sym_struct] = ACTIONS(3939), - [anon_sym_union] = ACTIONS(3939), - [anon_sym_if] = ACTIONS(3939), - [anon_sym_switch] = ACTIONS(3939), - [anon_sym_case] = ACTIONS(3939), - [anon_sym_default] = ACTIONS(3939), - [anon_sym_while] = ACTIONS(3939), - [anon_sym_do] = ACTIONS(3939), - [anon_sym_for] = ACTIONS(3939), - [anon_sym_return] = ACTIONS(3939), - [anon_sym_break] = ACTIONS(3939), - [anon_sym_continue] = ACTIONS(3939), - [anon_sym_goto] = ACTIONS(3939), - [anon_sym___try] = ACTIONS(3939), - [anon_sym___leave] = ACTIONS(3939), - [anon_sym_not] = ACTIONS(3939), - [anon_sym_compl] = ACTIONS(3939), - [anon_sym_DASH_DASH] = ACTIONS(3941), - [anon_sym_PLUS_PLUS] = ACTIONS(3941), - [anon_sym_sizeof] = ACTIONS(3939), - [anon_sym___alignof__] = ACTIONS(3939), - [anon_sym___alignof] = ACTIONS(3939), - [anon_sym__alignof] = ACTIONS(3939), - [anon_sym_alignof] = ACTIONS(3939), - [anon_sym__Alignof] = ACTIONS(3939), - [anon_sym_offsetof] = ACTIONS(3939), - [anon_sym__Generic] = ACTIONS(3939), - [anon_sym_typename] = ACTIONS(3939), - [anon_sym_asm] = ACTIONS(3939), - [anon_sym___asm__] = ACTIONS(3939), - [anon_sym___asm] = ACTIONS(3939), - [sym_number_literal] = ACTIONS(3941), - [anon_sym_L_SQUOTE] = ACTIONS(3941), - [anon_sym_u_SQUOTE] = ACTIONS(3941), - [anon_sym_U_SQUOTE] = ACTIONS(3941), - [anon_sym_u8_SQUOTE] = ACTIONS(3941), - [anon_sym_SQUOTE] = ACTIONS(3941), - [anon_sym_L_DQUOTE] = ACTIONS(3941), - [anon_sym_u_DQUOTE] = ACTIONS(3941), - [anon_sym_U_DQUOTE] = ACTIONS(3941), - [anon_sym_u8_DQUOTE] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [sym_true] = ACTIONS(3939), - [sym_false] = ACTIONS(3939), - [anon_sym_NULL] = ACTIONS(3939), - [anon_sym_nullptr] = ACTIONS(3939), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3939), - [anon_sym_decltype] = ACTIONS(3939), - [anon_sym_explicit] = ACTIONS(3939), - [anon_sym_export] = ACTIONS(3939), - [anon_sym_module] = ACTIONS(3939), - [anon_sym_import] = ACTIONS(3939), - [anon_sym_template] = ACTIONS(3939), - [anon_sym_operator] = ACTIONS(3939), - [anon_sym_try] = ACTIONS(3939), - [anon_sym_delete] = ACTIONS(3939), - [anon_sym_throw] = ACTIONS(3939), - [anon_sym_namespace] = ACTIONS(3939), - [anon_sym_static_assert] = ACTIONS(3939), - [anon_sym_concept] = ACTIONS(3939), - [anon_sym_co_return] = ACTIONS(3939), - [anon_sym_co_yield] = ACTIONS(3939), - [anon_sym_R_DQUOTE] = ACTIONS(3941), - [anon_sym_LR_DQUOTE] = ACTIONS(3941), - [anon_sym_uR_DQUOTE] = ACTIONS(3941), - [anon_sym_UR_DQUOTE] = ACTIONS(3941), - [anon_sym_u8R_DQUOTE] = ACTIONS(3941), - [anon_sym_co_await] = ACTIONS(3939), - [anon_sym_new] = ACTIONS(3939), - [anon_sym_requires] = ACTIONS(3939), - [anon_sym_CARET_CARET] = ACTIONS(3941), - [anon_sym_LBRACK_COLON] = ACTIONS(3941), - [sym_this] = ACTIONS(3939), + [STATE(670)] = { + [sym_identifier] = ACTIONS(3758), + [aux_sym_preproc_include_token1] = ACTIONS(3758), + [aux_sym_preproc_def_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token2] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3758), + [sym_preproc_directive] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_BANG] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym___extension__] = ACTIONS(3758), + [anon_sym_typedef] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym___attribute] = ACTIONS(3758), + [anon_sym_using] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym___cdecl] = ACTIONS(3758), + [anon_sym___clrcall] = ACTIONS(3758), + [anon_sym___stdcall] = ACTIONS(3758), + [anon_sym___fastcall] = ACTIONS(3758), + [anon_sym___thiscall] = ACTIONS(3758), + [anon_sym___vectorcall] = ACTIONS(3758), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_signed] = ACTIONS(3758), + [anon_sym_unsigned] = ACTIONS(3758), + [anon_sym_long] = ACTIONS(3758), + [anon_sym_short] = ACTIONS(3758), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym___restrict__] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym__Noreturn] = ACTIONS(3758), + [anon_sym_noreturn] = ACTIONS(3758), + [anon_sym__Nonnull] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_alignas] = ACTIONS(3758), + [anon_sym__Alignas] = ACTIONS(3758), + [sym_primitive_type] = ACTIONS(3758), + [anon_sym_enum] = ACTIONS(3758), + [anon_sym_class] = ACTIONS(3758), + [anon_sym_struct] = ACTIONS(3758), + [anon_sym_union] = ACTIONS(3758), + [anon_sym_if] = ACTIONS(3758), + [anon_sym_switch] = ACTIONS(3758), + [anon_sym_case] = ACTIONS(3758), + [anon_sym_default] = ACTIONS(3758), + [anon_sym_while] = ACTIONS(3758), + [anon_sym_do] = ACTIONS(3758), + [anon_sym_for] = ACTIONS(3758), + [anon_sym_return] = ACTIONS(3758), + [anon_sym_break] = ACTIONS(3758), + [anon_sym_continue] = ACTIONS(3758), + [anon_sym_goto] = ACTIONS(3758), + [anon_sym___try] = ACTIONS(3758), + [anon_sym___leave] = ACTIONS(3758), + [anon_sym_not] = ACTIONS(3758), + [anon_sym_compl] = ACTIONS(3758), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3758), + [anon_sym___alignof__] = ACTIONS(3758), + [anon_sym___alignof] = ACTIONS(3758), + [anon_sym__alignof] = ACTIONS(3758), + [anon_sym_alignof] = ACTIONS(3758), + [anon_sym__Alignof] = ACTIONS(3758), + [anon_sym_offsetof] = ACTIONS(3758), + [anon_sym__Generic] = ACTIONS(3758), + [anon_sym_typename] = ACTIONS(3758), + [anon_sym_asm] = ACTIONS(3758), + [anon_sym___asm__] = ACTIONS(3758), + [anon_sym___asm] = ACTIONS(3758), + [sym_number_literal] = ACTIONS(3760), + [anon_sym_L_SQUOTE] = ACTIONS(3760), + [anon_sym_u_SQUOTE] = ACTIONS(3760), + [anon_sym_U_SQUOTE] = ACTIONS(3760), + [anon_sym_u8_SQUOTE] = ACTIONS(3760), + [anon_sym_SQUOTE] = ACTIONS(3760), + [anon_sym_L_DQUOTE] = ACTIONS(3760), + [anon_sym_u_DQUOTE] = ACTIONS(3760), + [anon_sym_U_DQUOTE] = ACTIONS(3760), + [anon_sym_u8_DQUOTE] = ACTIONS(3760), + [anon_sym_DQUOTE] = ACTIONS(3760), + [sym_true] = ACTIONS(3758), + [sym_false] = ACTIONS(3758), + [anon_sym_NULL] = ACTIONS(3758), + [anon_sym_nullptr] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_explicit] = ACTIONS(3758), + [anon_sym_export] = ACTIONS(3758), + [anon_sym_module] = ACTIONS(3758), + [anon_sym_import] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + [anon_sym_try] = ACTIONS(3758), + [anon_sym_delete] = ACTIONS(3758), + [anon_sym_throw] = ACTIONS(3758), + [anon_sym_namespace] = ACTIONS(3758), + [anon_sym_static_assert] = ACTIONS(3758), + [anon_sym_concept] = ACTIONS(3758), + [anon_sym_co_return] = ACTIONS(3758), + [anon_sym_co_yield] = ACTIONS(3758), + [anon_sym_R_DQUOTE] = ACTIONS(3760), + [anon_sym_LR_DQUOTE] = ACTIONS(3760), + [anon_sym_uR_DQUOTE] = ACTIONS(3760), + [anon_sym_UR_DQUOTE] = ACTIONS(3760), + [anon_sym_u8R_DQUOTE] = ACTIONS(3760), + [anon_sym_co_await] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3758), + [anon_sym_requires] = ACTIONS(3758), + [anon_sym_CARET_CARET] = ACTIONS(3760), + [anon_sym_LBRACK_COLON] = ACTIONS(3760), + [sym_this] = ACTIONS(3758), }, - [STATE(653)] = { - [sym_identifier] = ACTIONS(3943), - [aux_sym_preproc_include_token1] = ACTIONS(3943), - [aux_sym_preproc_def_token1] = ACTIONS(3943), - [aux_sym_preproc_if_token1] = ACTIONS(3943), - [aux_sym_preproc_if_token2] = ACTIONS(3943), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3943), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3943), - [sym_preproc_directive] = ACTIONS(3943), - [anon_sym_LPAREN2] = ACTIONS(3945), - [anon_sym_BANG] = ACTIONS(3945), - [anon_sym_TILDE] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym___extension__] = ACTIONS(3943), - [anon_sym_typedef] = 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___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_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_typename] = 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_export] = ACTIONS(3943), - [anon_sym_module] = ACTIONS(3943), - [anon_sym_import] = ACTIONS(3943), - [anon_sym_template] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_delete] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_namespace] = ACTIONS(3943), - [anon_sym_static_assert] = ACTIONS(3943), - [anon_sym_concept] = 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), - [anon_sym_CARET_CARET] = ACTIONS(3945), - [anon_sym_LBRACK_COLON] = ACTIONS(3945), - [sym_this] = ACTIONS(3943), + [STATE(671)] = { + [sym_identifier] = ACTIONS(3909), + [aux_sym_preproc_include_token1] = ACTIONS(3909), + [aux_sym_preproc_def_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token2] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3909), + [sym_preproc_directive] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(3911), + [anon_sym_TILDE] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym___extension__] = ACTIONS(3909), + [anon_sym_typedef] = ACTIONS(3909), + [anon_sym_virtual] = ACTIONS(3909), + [anon_sym_extern] = ACTIONS(3909), + [anon_sym___attribute__] = ACTIONS(3909), + [anon_sym___attribute] = ACTIONS(3909), + [anon_sym_using] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(3911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3911), + [anon_sym___declspec] = ACTIONS(3909), + [anon_sym___based] = ACTIONS(3909), + [anon_sym___cdecl] = ACTIONS(3909), + [anon_sym___clrcall] = ACTIONS(3909), + [anon_sym___stdcall] = ACTIONS(3909), + [anon_sym___fastcall] = ACTIONS(3909), + [anon_sym___thiscall] = ACTIONS(3909), + [anon_sym___vectorcall] = ACTIONS(3909), + [anon_sym_LBRACE] = ACTIONS(3911), + [anon_sym_signed] = ACTIONS(3909), + [anon_sym_unsigned] = ACTIONS(3909), + [anon_sym_long] = ACTIONS(3909), + [anon_sym_short] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_static] = ACTIONS(3909), + [anon_sym_register] = ACTIONS(3909), + [anon_sym_inline] = ACTIONS(3909), + [anon_sym___inline] = ACTIONS(3909), + [anon_sym___inline__] = ACTIONS(3909), + [anon_sym___forceinline] = ACTIONS(3909), + [anon_sym_thread_local] = ACTIONS(3909), + [anon_sym___thread] = ACTIONS(3909), + [anon_sym_const] = ACTIONS(3909), + [anon_sym_constexpr] = ACTIONS(3909), + [anon_sym_volatile] = ACTIONS(3909), + [anon_sym_restrict] = ACTIONS(3909), + [anon_sym___restrict__] = ACTIONS(3909), + [anon_sym__Atomic] = ACTIONS(3909), + [anon_sym__Noreturn] = ACTIONS(3909), + [anon_sym_noreturn] = ACTIONS(3909), + [anon_sym__Nonnull] = ACTIONS(3909), + [anon_sym_mutable] = ACTIONS(3909), + [anon_sym_constinit] = ACTIONS(3909), + [anon_sym_consteval] = ACTIONS(3909), + [anon_sym_alignas] = ACTIONS(3909), + [anon_sym__Alignas] = ACTIONS(3909), + [sym_primitive_type] = ACTIONS(3909), + [anon_sym_enum] = ACTIONS(3909), + [anon_sym_class] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(3909), + [anon_sym_union] = ACTIONS(3909), + [anon_sym_if] = ACTIONS(3909), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_case] = ACTIONS(3909), + [anon_sym_default] = ACTIONS(3909), + [anon_sym_while] = ACTIONS(3909), + [anon_sym_do] = ACTIONS(3909), + [anon_sym_for] = ACTIONS(3909), + [anon_sym_return] = ACTIONS(3909), + [anon_sym_break] = ACTIONS(3909), + [anon_sym_continue] = ACTIONS(3909), + [anon_sym_goto] = ACTIONS(3909), + [anon_sym___try] = ACTIONS(3909), + [anon_sym___leave] = ACTIONS(3909), + [anon_sym_not] = ACTIONS(3909), + [anon_sym_compl] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_sizeof] = ACTIONS(3909), + [anon_sym___alignof__] = ACTIONS(3909), + [anon_sym___alignof] = ACTIONS(3909), + [anon_sym__alignof] = ACTIONS(3909), + [anon_sym_alignof] = ACTIONS(3909), + [anon_sym__Alignof] = ACTIONS(3909), + [anon_sym_offsetof] = ACTIONS(3909), + [anon_sym__Generic] = ACTIONS(3909), + [anon_sym_typename] = ACTIONS(3909), + [anon_sym_asm] = ACTIONS(3909), + [anon_sym___asm__] = ACTIONS(3909), + [anon_sym___asm] = ACTIONS(3909), + [sym_number_literal] = ACTIONS(3911), + [anon_sym_L_SQUOTE] = ACTIONS(3911), + [anon_sym_u_SQUOTE] = ACTIONS(3911), + [anon_sym_U_SQUOTE] = ACTIONS(3911), + [anon_sym_u8_SQUOTE] = ACTIONS(3911), + [anon_sym_SQUOTE] = ACTIONS(3911), + [anon_sym_L_DQUOTE] = ACTIONS(3911), + [anon_sym_u_DQUOTE] = ACTIONS(3911), + [anon_sym_U_DQUOTE] = ACTIONS(3911), + [anon_sym_u8_DQUOTE] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [anon_sym_NULL] = ACTIONS(3909), + [anon_sym_nullptr] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3909), + [anon_sym_decltype] = ACTIONS(3909), + [anon_sym_explicit] = ACTIONS(3909), + [anon_sym_export] = ACTIONS(3909), + [anon_sym_module] = ACTIONS(3909), + [anon_sym_import] = ACTIONS(3909), + [anon_sym_template] = ACTIONS(3909), + [anon_sym_operator] = ACTIONS(3909), + [anon_sym_try] = ACTIONS(3909), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_throw] = ACTIONS(3909), + [anon_sym_namespace] = ACTIONS(3909), + [anon_sym_static_assert] = ACTIONS(3909), + [anon_sym_concept] = ACTIONS(3909), + [anon_sym_co_return] = ACTIONS(3909), + [anon_sym_co_yield] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3909), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3909), + [anon_sym_CARET_CARET] = ACTIONS(3911), + [anon_sym_LBRACK_COLON] = ACTIONS(3911), + [sym_this] = ACTIONS(3909), }, - [STATE(654)] = { - [sym_identifier] = ACTIONS(3984), - [aux_sym_preproc_include_token1] = ACTIONS(3984), - [aux_sym_preproc_def_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token2] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), - [sym_preproc_directive] = ACTIONS(3984), - [anon_sym_LPAREN2] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_TILDE] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3984), - [anon_sym_PLUS] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_SEMI] = ACTIONS(3986), - [anon_sym___extension__] = ACTIONS(3984), - [anon_sym_typedef] = ACTIONS(3984), - [anon_sym_virtual] = ACTIONS(3984), - [anon_sym_extern] = ACTIONS(3984), - [anon_sym___attribute__] = ACTIONS(3984), - [anon_sym___attribute] = ACTIONS(3984), - [anon_sym_using] = ACTIONS(3984), - [anon_sym_COLON_COLON] = ACTIONS(3986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), - [anon_sym___declspec] = ACTIONS(3984), - [anon_sym___based] = ACTIONS(3984), - [anon_sym___cdecl] = ACTIONS(3984), - [anon_sym___clrcall] = ACTIONS(3984), - [anon_sym___stdcall] = ACTIONS(3984), - [anon_sym___fastcall] = ACTIONS(3984), - [anon_sym___thiscall] = ACTIONS(3984), - [anon_sym___vectorcall] = ACTIONS(3984), - [anon_sym_LBRACE] = ACTIONS(3986), - [anon_sym_signed] = ACTIONS(3984), - [anon_sym_unsigned] = ACTIONS(3984), - [anon_sym_long] = ACTIONS(3984), - [anon_sym_short] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_register] = ACTIONS(3984), - [anon_sym_inline] = ACTIONS(3984), - [anon_sym___inline] = ACTIONS(3984), - [anon_sym___inline__] = ACTIONS(3984), - [anon_sym___forceinline] = ACTIONS(3984), - [anon_sym_thread_local] = ACTIONS(3984), - [anon_sym___thread] = ACTIONS(3984), - [anon_sym_const] = ACTIONS(3984), - [anon_sym_constexpr] = ACTIONS(3984), - [anon_sym_volatile] = ACTIONS(3984), - [anon_sym_restrict] = ACTIONS(3984), - [anon_sym___restrict__] = ACTIONS(3984), - [anon_sym__Atomic] = ACTIONS(3984), - [anon_sym__Noreturn] = ACTIONS(3984), - [anon_sym_noreturn] = ACTIONS(3984), - [anon_sym__Nonnull] = ACTIONS(3984), - [anon_sym_mutable] = ACTIONS(3984), - [anon_sym_constinit] = ACTIONS(3984), - [anon_sym_consteval] = ACTIONS(3984), - [anon_sym_alignas] = ACTIONS(3984), - [anon_sym__Alignas] = ACTIONS(3984), - [sym_primitive_type] = ACTIONS(3984), - [anon_sym_enum] = ACTIONS(3984), - [anon_sym_class] = ACTIONS(3984), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3984), - [anon_sym_if] = ACTIONS(3984), - [anon_sym_switch] = ACTIONS(3984), - [anon_sym_case] = ACTIONS(3984), - [anon_sym_default] = ACTIONS(3984), - [anon_sym_while] = ACTIONS(3984), - [anon_sym_do] = ACTIONS(3984), - [anon_sym_for] = ACTIONS(3984), - [anon_sym_return] = ACTIONS(3984), - [anon_sym_break] = ACTIONS(3984), - [anon_sym_continue] = ACTIONS(3984), - [anon_sym_goto] = ACTIONS(3984), - [anon_sym___try] = ACTIONS(3984), - [anon_sym___leave] = ACTIONS(3984), - [anon_sym_not] = ACTIONS(3984), - [anon_sym_compl] = ACTIONS(3984), - [anon_sym_DASH_DASH] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3986), - [anon_sym_sizeof] = ACTIONS(3984), - [anon_sym___alignof__] = ACTIONS(3984), - [anon_sym___alignof] = ACTIONS(3984), - [anon_sym__alignof] = ACTIONS(3984), - [anon_sym_alignof] = ACTIONS(3984), - [anon_sym__Alignof] = ACTIONS(3984), - [anon_sym_offsetof] = ACTIONS(3984), - [anon_sym__Generic] = ACTIONS(3984), - [anon_sym_typename] = ACTIONS(3984), - [anon_sym_asm] = ACTIONS(3984), - [anon_sym___asm__] = ACTIONS(3984), - [anon_sym___asm] = ACTIONS(3984), - [sym_number_literal] = ACTIONS(3986), - [anon_sym_L_SQUOTE] = ACTIONS(3986), - [anon_sym_u_SQUOTE] = ACTIONS(3986), - [anon_sym_U_SQUOTE] = ACTIONS(3986), - [anon_sym_u8_SQUOTE] = ACTIONS(3986), - [anon_sym_SQUOTE] = ACTIONS(3986), - [anon_sym_L_DQUOTE] = ACTIONS(3986), - [anon_sym_u_DQUOTE] = ACTIONS(3986), - [anon_sym_U_DQUOTE] = ACTIONS(3986), - [anon_sym_u8_DQUOTE] = ACTIONS(3986), - [anon_sym_DQUOTE] = ACTIONS(3986), - [sym_true] = ACTIONS(3984), - [sym_false] = ACTIONS(3984), - [anon_sym_NULL] = ACTIONS(3984), - [anon_sym_nullptr] = ACTIONS(3984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3984), - [anon_sym_decltype] = ACTIONS(3984), - [anon_sym_explicit] = ACTIONS(3984), - [anon_sym_export] = ACTIONS(3984), - [anon_sym_module] = ACTIONS(3984), - [anon_sym_import] = ACTIONS(3984), - [anon_sym_template] = ACTIONS(3984), - [anon_sym_operator] = ACTIONS(3984), - [anon_sym_try] = ACTIONS(3984), - [anon_sym_delete] = ACTIONS(3984), - [anon_sym_throw] = ACTIONS(3984), - [anon_sym_namespace] = ACTIONS(3984), - [anon_sym_static_assert] = ACTIONS(3984), - [anon_sym_concept] = ACTIONS(3984), - [anon_sym_co_return] = ACTIONS(3984), - [anon_sym_co_yield] = ACTIONS(3984), - [anon_sym_R_DQUOTE] = ACTIONS(3986), - [anon_sym_LR_DQUOTE] = ACTIONS(3986), - [anon_sym_uR_DQUOTE] = ACTIONS(3986), - [anon_sym_UR_DQUOTE] = ACTIONS(3986), - [anon_sym_u8R_DQUOTE] = ACTIONS(3986), - [anon_sym_co_await] = ACTIONS(3984), - [anon_sym_new] = ACTIONS(3984), - [anon_sym_requires] = ACTIONS(3984), - [anon_sym_CARET_CARET] = ACTIONS(3986), - [anon_sym_LBRACK_COLON] = ACTIONS(3986), - [sym_this] = ACTIONS(3984), + [STATE(672)] = { + [sym_identifier] = ACTIONS(3913), + [aux_sym_preproc_include_token1] = ACTIONS(3913), + [aux_sym_preproc_def_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token2] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3913), + [sym_preproc_directive] = ACTIONS(3913), + [anon_sym_LPAREN2] = ACTIONS(3915), + [anon_sym_BANG] = ACTIONS(3915), + [anon_sym_TILDE] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym___extension__] = ACTIONS(3913), + [anon_sym_typedef] = ACTIONS(3913), + [anon_sym_virtual] = ACTIONS(3913), + [anon_sym_extern] = ACTIONS(3913), + [anon_sym___attribute__] = ACTIONS(3913), + [anon_sym___attribute] = ACTIONS(3913), + [anon_sym_using] = ACTIONS(3913), + [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3915), + [anon_sym___declspec] = ACTIONS(3913), + [anon_sym___based] = ACTIONS(3913), + [anon_sym___cdecl] = ACTIONS(3913), + [anon_sym___clrcall] = ACTIONS(3913), + [anon_sym___stdcall] = ACTIONS(3913), + [anon_sym___fastcall] = ACTIONS(3913), + [anon_sym___thiscall] = ACTIONS(3913), + [anon_sym___vectorcall] = ACTIONS(3913), + [anon_sym_LBRACE] = ACTIONS(3915), + [anon_sym_signed] = ACTIONS(3913), + [anon_sym_unsigned] = ACTIONS(3913), + [anon_sym_long] = ACTIONS(3913), + [anon_sym_short] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(3913), + [anon_sym_static] = ACTIONS(3913), + [anon_sym_register] = ACTIONS(3913), + [anon_sym_inline] = ACTIONS(3913), + [anon_sym___inline] = ACTIONS(3913), + [anon_sym___inline__] = ACTIONS(3913), + [anon_sym___forceinline] = ACTIONS(3913), + [anon_sym_thread_local] = ACTIONS(3913), + [anon_sym___thread] = ACTIONS(3913), + [anon_sym_const] = ACTIONS(3913), + [anon_sym_constexpr] = ACTIONS(3913), + [anon_sym_volatile] = ACTIONS(3913), + [anon_sym_restrict] = ACTIONS(3913), + [anon_sym___restrict__] = ACTIONS(3913), + [anon_sym__Atomic] = ACTIONS(3913), + [anon_sym__Noreturn] = ACTIONS(3913), + [anon_sym_noreturn] = ACTIONS(3913), + [anon_sym__Nonnull] = ACTIONS(3913), + [anon_sym_mutable] = ACTIONS(3913), + [anon_sym_constinit] = ACTIONS(3913), + [anon_sym_consteval] = ACTIONS(3913), + [anon_sym_alignas] = ACTIONS(3913), + [anon_sym__Alignas] = ACTIONS(3913), + [sym_primitive_type] = ACTIONS(3913), + [anon_sym_enum] = ACTIONS(3913), + [anon_sym_class] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(3913), + [anon_sym_union] = ACTIONS(3913), + [anon_sym_if] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_case] = ACTIONS(3913), + [anon_sym_default] = ACTIONS(3913), + [anon_sym_while] = ACTIONS(3913), + [anon_sym_do] = ACTIONS(3913), + [anon_sym_for] = ACTIONS(3913), + [anon_sym_return] = ACTIONS(3913), + [anon_sym_break] = ACTIONS(3913), + [anon_sym_continue] = ACTIONS(3913), + [anon_sym_goto] = ACTIONS(3913), + [anon_sym___try] = ACTIONS(3913), + [anon_sym___leave] = ACTIONS(3913), + [anon_sym_not] = ACTIONS(3913), + [anon_sym_compl] = ACTIONS(3913), + [anon_sym_DASH_DASH] = ACTIONS(3915), + [anon_sym_PLUS_PLUS] = ACTIONS(3915), + [anon_sym_sizeof] = ACTIONS(3913), + [anon_sym___alignof__] = ACTIONS(3913), + [anon_sym___alignof] = ACTIONS(3913), + [anon_sym__alignof] = ACTIONS(3913), + [anon_sym_alignof] = ACTIONS(3913), + [anon_sym__Alignof] = ACTIONS(3913), + [anon_sym_offsetof] = ACTIONS(3913), + [anon_sym__Generic] = ACTIONS(3913), + [anon_sym_typename] = ACTIONS(3913), + [anon_sym_asm] = ACTIONS(3913), + [anon_sym___asm__] = ACTIONS(3913), + [anon_sym___asm] = ACTIONS(3913), + [sym_number_literal] = ACTIONS(3915), + [anon_sym_L_SQUOTE] = ACTIONS(3915), + [anon_sym_u_SQUOTE] = ACTIONS(3915), + [anon_sym_U_SQUOTE] = ACTIONS(3915), + [anon_sym_u8_SQUOTE] = ACTIONS(3915), + [anon_sym_SQUOTE] = ACTIONS(3915), + [anon_sym_L_DQUOTE] = ACTIONS(3915), + [anon_sym_u_DQUOTE] = ACTIONS(3915), + [anon_sym_U_DQUOTE] = ACTIONS(3915), + [anon_sym_u8_DQUOTE] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [sym_true] = ACTIONS(3913), + [sym_false] = ACTIONS(3913), + [anon_sym_NULL] = ACTIONS(3913), + [anon_sym_nullptr] = ACTIONS(3913), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3913), + [anon_sym_decltype] = ACTIONS(3913), + [anon_sym_explicit] = ACTIONS(3913), + [anon_sym_export] = ACTIONS(3913), + [anon_sym_module] = ACTIONS(3913), + [anon_sym_import] = ACTIONS(3913), + [anon_sym_template] = ACTIONS(3913), + [anon_sym_operator] = ACTIONS(3913), + [anon_sym_try] = ACTIONS(3913), + [anon_sym_delete] = ACTIONS(3913), + [anon_sym_throw] = ACTIONS(3913), + [anon_sym_namespace] = ACTIONS(3913), + [anon_sym_static_assert] = ACTIONS(3913), + [anon_sym_concept] = ACTIONS(3913), + [anon_sym_co_return] = ACTIONS(3913), + [anon_sym_co_yield] = ACTIONS(3913), + [anon_sym_R_DQUOTE] = ACTIONS(3915), + [anon_sym_LR_DQUOTE] = ACTIONS(3915), + [anon_sym_uR_DQUOTE] = ACTIONS(3915), + [anon_sym_UR_DQUOTE] = ACTIONS(3915), + [anon_sym_u8R_DQUOTE] = ACTIONS(3915), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3913), + [anon_sym_requires] = ACTIONS(3913), + [anon_sym_CARET_CARET] = ACTIONS(3915), + [anon_sym_LBRACK_COLON] = ACTIONS(3915), + [sym_this] = ACTIONS(3913), }, - [STATE(655)] = { - [sym_identifier] = ACTIONS(3996), - [aux_sym_preproc_include_token1] = ACTIONS(3996), - [aux_sym_preproc_def_token1] = ACTIONS(3996), - [aux_sym_preproc_if_token1] = ACTIONS(3996), - [aux_sym_preproc_if_token2] = ACTIONS(3996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3996), - [sym_preproc_directive] = ACTIONS(3996), - [anon_sym_LPAREN2] = ACTIONS(3998), - [anon_sym_BANG] = ACTIONS(3998), - [anon_sym_TILDE] = ACTIONS(3998), - [anon_sym_DASH] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3996), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(3996), - [anon_sym_SEMI] = ACTIONS(3998), - [anon_sym___extension__] = ACTIONS(3996), - [anon_sym_typedef] = ACTIONS(3996), - [anon_sym_virtual] = ACTIONS(3996), - [anon_sym_extern] = ACTIONS(3996), - [anon_sym___attribute__] = ACTIONS(3996), - [anon_sym___attribute] = ACTIONS(3996), - [anon_sym_using] = ACTIONS(3996), - [anon_sym_COLON_COLON] = ACTIONS(3998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3998), - [anon_sym___declspec] = ACTIONS(3996), - [anon_sym___based] = ACTIONS(3996), - [anon_sym___cdecl] = ACTIONS(3996), - [anon_sym___clrcall] = ACTIONS(3996), - [anon_sym___stdcall] = ACTIONS(3996), - [anon_sym___fastcall] = ACTIONS(3996), - [anon_sym___thiscall] = ACTIONS(3996), - [anon_sym___vectorcall] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3998), - [anon_sym_signed] = ACTIONS(3996), - [anon_sym_unsigned] = ACTIONS(3996), - [anon_sym_long] = ACTIONS(3996), - [anon_sym_short] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3996), - [anon_sym_static] = ACTIONS(3996), - [anon_sym_register] = ACTIONS(3996), - [anon_sym_inline] = ACTIONS(3996), - [anon_sym___inline] = ACTIONS(3996), - [anon_sym___inline__] = ACTIONS(3996), - [anon_sym___forceinline] = ACTIONS(3996), - [anon_sym_thread_local] = ACTIONS(3996), - [anon_sym___thread] = ACTIONS(3996), - [anon_sym_const] = ACTIONS(3996), - [anon_sym_constexpr] = ACTIONS(3996), - [anon_sym_volatile] = ACTIONS(3996), - [anon_sym_restrict] = ACTIONS(3996), - [anon_sym___restrict__] = ACTIONS(3996), - [anon_sym__Atomic] = ACTIONS(3996), - [anon_sym__Noreturn] = ACTIONS(3996), - [anon_sym_noreturn] = ACTIONS(3996), - [anon_sym__Nonnull] = ACTIONS(3996), - [anon_sym_mutable] = ACTIONS(3996), - [anon_sym_constinit] = ACTIONS(3996), - [anon_sym_consteval] = ACTIONS(3996), - [anon_sym_alignas] = ACTIONS(3996), - [anon_sym__Alignas] = ACTIONS(3996), - [sym_primitive_type] = ACTIONS(3996), - [anon_sym_enum] = ACTIONS(3996), - [anon_sym_class] = ACTIONS(3996), - [anon_sym_struct] = ACTIONS(3996), - [anon_sym_union] = ACTIONS(3996), - [anon_sym_if] = ACTIONS(3996), - [anon_sym_switch] = ACTIONS(3996), - [anon_sym_case] = ACTIONS(3996), - [anon_sym_default] = ACTIONS(3996), - [anon_sym_while] = ACTIONS(3996), - [anon_sym_do] = ACTIONS(3996), - [anon_sym_for] = ACTIONS(3996), - [anon_sym_return] = ACTIONS(3996), - [anon_sym_break] = ACTIONS(3996), - [anon_sym_continue] = ACTIONS(3996), - [anon_sym_goto] = ACTIONS(3996), - [anon_sym___try] = ACTIONS(3996), - [anon_sym___leave] = ACTIONS(3996), - [anon_sym_not] = ACTIONS(3996), - [anon_sym_compl] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [anon_sym_PLUS_PLUS] = ACTIONS(3998), - [anon_sym_sizeof] = ACTIONS(3996), - [anon_sym___alignof__] = ACTIONS(3996), - [anon_sym___alignof] = ACTIONS(3996), - [anon_sym__alignof] = ACTIONS(3996), - [anon_sym_alignof] = ACTIONS(3996), - [anon_sym__Alignof] = ACTIONS(3996), - [anon_sym_offsetof] = ACTIONS(3996), - [anon_sym__Generic] = ACTIONS(3996), - [anon_sym_typename] = ACTIONS(3996), - [anon_sym_asm] = ACTIONS(3996), - [anon_sym___asm__] = ACTIONS(3996), - [anon_sym___asm] = ACTIONS(3996), - [sym_number_literal] = ACTIONS(3998), - [anon_sym_L_SQUOTE] = ACTIONS(3998), - [anon_sym_u_SQUOTE] = ACTIONS(3998), - [anon_sym_U_SQUOTE] = ACTIONS(3998), - [anon_sym_u8_SQUOTE] = ACTIONS(3998), - [anon_sym_SQUOTE] = ACTIONS(3998), - [anon_sym_L_DQUOTE] = ACTIONS(3998), - [anon_sym_u_DQUOTE] = ACTIONS(3998), - [anon_sym_U_DQUOTE] = ACTIONS(3998), - [anon_sym_u8_DQUOTE] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [sym_true] = ACTIONS(3996), - [sym_false] = ACTIONS(3996), - [anon_sym_NULL] = ACTIONS(3996), - [anon_sym_nullptr] = ACTIONS(3996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3996), - [anon_sym_decltype] = ACTIONS(3996), - [anon_sym_explicit] = ACTIONS(3996), - [anon_sym_export] = ACTIONS(3996), - [anon_sym_module] = ACTIONS(3996), - [anon_sym_import] = ACTIONS(3996), - [anon_sym_template] = ACTIONS(3996), - [anon_sym_operator] = ACTIONS(3996), - [anon_sym_try] = ACTIONS(3996), - [anon_sym_delete] = ACTIONS(3996), - [anon_sym_throw] = ACTIONS(3996), - [anon_sym_namespace] = ACTIONS(3996), - [anon_sym_static_assert] = ACTIONS(3996), - [anon_sym_concept] = ACTIONS(3996), - [anon_sym_co_return] = ACTIONS(3996), - [anon_sym_co_yield] = ACTIONS(3996), - [anon_sym_R_DQUOTE] = ACTIONS(3998), - [anon_sym_LR_DQUOTE] = ACTIONS(3998), - [anon_sym_uR_DQUOTE] = ACTIONS(3998), - [anon_sym_UR_DQUOTE] = ACTIONS(3998), - [anon_sym_u8R_DQUOTE] = ACTIONS(3998), - [anon_sym_co_await] = ACTIONS(3996), - [anon_sym_new] = ACTIONS(3996), - [anon_sym_requires] = ACTIONS(3996), - [anon_sym_CARET_CARET] = ACTIONS(3998), - [anon_sym_LBRACK_COLON] = ACTIONS(3998), - [sym_this] = ACTIONS(3996), + [STATE(673)] = { + [sym_identifier] = ACTIONS(3562), + [aux_sym_preproc_include_token1] = ACTIONS(3562), + [aux_sym_preproc_def_token1] = ACTIONS(3562), + [aux_sym_preproc_if_token1] = ACTIONS(3562), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3562), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3562), + [sym_preproc_directive] = ACTIONS(3562), + [anon_sym_LPAREN2] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3564), + [anon_sym_AMP_AMP] = ACTIONS(3564), + [anon_sym_AMP] = ACTIONS(3562), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym___extension__] = ACTIONS(3562), + [anon_sym_typedef] = ACTIONS(3562), + [anon_sym_virtual] = ACTIONS(3562), + [anon_sym_extern] = ACTIONS(3562), + [anon_sym___attribute__] = ACTIONS(3562), + [anon_sym___attribute] = ACTIONS(3562), + [anon_sym_using] = ACTIONS(3562), + [anon_sym_COLON_COLON] = ACTIONS(3564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3564), + [anon_sym___declspec] = ACTIONS(3562), + [anon_sym___based] = ACTIONS(3562), + [anon_sym___cdecl] = ACTIONS(3562), + [anon_sym___clrcall] = ACTIONS(3562), + [anon_sym___stdcall] = ACTIONS(3562), + [anon_sym___fastcall] = ACTIONS(3562), + [anon_sym___thiscall] = ACTIONS(3562), + [anon_sym___vectorcall] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_signed] = ACTIONS(3562), + [anon_sym_unsigned] = ACTIONS(3562), + [anon_sym_long] = ACTIONS(3562), + [anon_sym_short] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_register] = ACTIONS(3562), + [anon_sym_inline] = ACTIONS(3562), + [anon_sym___inline] = ACTIONS(3562), + [anon_sym___inline__] = ACTIONS(3562), + [anon_sym___forceinline] = ACTIONS(3562), + [anon_sym_thread_local] = ACTIONS(3562), + [anon_sym___thread] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_constexpr] = ACTIONS(3562), + [anon_sym_volatile] = ACTIONS(3562), + [anon_sym_restrict] = ACTIONS(3562), + [anon_sym___restrict__] = ACTIONS(3562), + [anon_sym__Atomic] = ACTIONS(3562), + [anon_sym__Noreturn] = ACTIONS(3562), + [anon_sym_noreturn] = ACTIONS(3562), + [anon_sym__Nonnull] = ACTIONS(3562), + [anon_sym_mutable] = ACTIONS(3562), + [anon_sym_constinit] = ACTIONS(3562), + [anon_sym_consteval] = ACTIONS(3562), + [anon_sym_alignas] = ACTIONS(3562), + [anon_sym__Alignas] = ACTIONS(3562), + [sym_primitive_type] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_struct] = ACTIONS(3562), + [anon_sym_union] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_else] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_case] = ACTIONS(3562), + [anon_sym_default] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_goto] = ACTIONS(3562), + [anon_sym___try] = ACTIONS(3562), + [anon_sym___leave] = ACTIONS(3562), + [anon_sym_not] = ACTIONS(3562), + [anon_sym_compl] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_sizeof] = ACTIONS(3562), + [anon_sym___alignof__] = ACTIONS(3562), + [anon_sym___alignof] = ACTIONS(3562), + [anon_sym__alignof] = ACTIONS(3562), + [anon_sym_alignof] = ACTIONS(3562), + [anon_sym__Alignof] = ACTIONS(3562), + [anon_sym_offsetof] = ACTIONS(3562), + [anon_sym__Generic] = ACTIONS(3562), + [anon_sym_typename] = ACTIONS(3562), + [anon_sym_asm] = ACTIONS(3562), + [anon_sym___asm__] = ACTIONS(3562), + [anon_sym___asm] = ACTIONS(3562), + [sym_number_literal] = ACTIONS(3564), + [anon_sym_L_SQUOTE] = ACTIONS(3564), + [anon_sym_u_SQUOTE] = ACTIONS(3564), + [anon_sym_U_SQUOTE] = ACTIONS(3564), + [anon_sym_u8_SQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_L_DQUOTE] = ACTIONS(3564), + [anon_sym_u_DQUOTE] = ACTIONS(3564), + [anon_sym_U_DQUOTE] = ACTIONS(3564), + [anon_sym_u8_DQUOTE] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [anon_sym_NULL] = ACTIONS(3562), + [anon_sym_nullptr] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3562), + [anon_sym_decltype] = ACTIONS(3562), + [anon_sym_explicit] = ACTIONS(3562), + [anon_sym_export] = ACTIONS(3562), + [anon_sym_import] = ACTIONS(3562), + [anon_sym_template] = ACTIONS(3562), + [anon_sym_operator] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_namespace] = ACTIONS(3562), + [anon_sym_static_assert] = ACTIONS(3562), + [anon_sym_concept] = ACTIONS(3562), + [anon_sym_co_return] = ACTIONS(3562), + [anon_sym_co_yield] = ACTIONS(3562), + [anon_sym_R_DQUOTE] = ACTIONS(3564), + [anon_sym_LR_DQUOTE] = ACTIONS(3564), + [anon_sym_uR_DQUOTE] = ACTIONS(3564), + [anon_sym_UR_DQUOTE] = ACTIONS(3564), + [anon_sym_u8R_DQUOTE] = ACTIONS(3564), + [anon_sym_co_await] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_requires] = ACTIONS(3562), + [anon_sym_CARET_CARET] = ACTIONS(3564), + [anon_sym_LBRACK_COLON] = ACTIONS(3564), + [sym_this] = ACTIONS(3562), }, - [STATE(656)] = { - [sym_identifier] = ACTIONS(4016), - [aux_sym_preproc_include_token1] = ACTIONS(4016), - [aux_sym_preproc_def_token1] = ACTIONS(4016), - [aux_sym_preproc_if_token1] = ACTIONS(4016), - [aux_sym_preproc_if_token2] = ACTIONS(4016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4016), - [sym_preproc_directive] = ACTIONS(4016), - [anon_sym_LPAREN2] = ACTIONS(4018), - [anon_sym_BANG] = ACTIONS(4018), - [anon_sym_TILDE] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym___extension__] = ACTIONS(4016), - [anon_sym_typedef] = ACTIONS(4016), - [anon_sym_virtual] = ACTIONS(4016), - [anon_sym_extern] = ACTIONS(4016), - [anon_sym___attribute__] = ACTIONS(4016), - [anon_sym___attribute] = ACTIONS(4016), - [anon_sym_using] = ACTIONS(4016), - [anon_sym_COLON_COLON] = ACTIONS(4018), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4018), - [anon_sym___declspec] = ACTIONS(4016), - [anon_sym___based] = ACTIONS(4016), - [anon_sym___cdecl] = ACTIONS(4016), - [anon_sym___clrcall] = ACTIONS(4016), - [anon_sym___stdcall] = ACTIONS(4016), - [anon_sym___fastcall] = ACTIONS(4016), - [anon_sym___thiscall] = ACTIONS(4016), - [anon_sym___vectorcall] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_signed] = ACTIONS(4016), - [anon_sym_unsigned] = ACTIONS(4016), - [anon_sym_long] = ACTIONS(4016), - [anon_sym_short] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_static] = ACTIONS(4016), - [anon_sym_register] = ACTIONS(4016), - [anon_sym_inline] = ACTIONS(4016), - [anon_sym___inline] = ACTIONS(4016), - [anon_sym___inline__] = ACTIONS(4016), - [anon_sym___forceinline] = ACTIONS(4016), - [anon_sym_thread_local] = ACTIONS(4016), - [anon_sym___thread] = ACTIONS(4016), - [anon_sym_const] = ACTIONS(4016), - [anon_sym_constexpr] = ACTIONS(4016), - [anon_sym_volatile] = ACTIONS(4016), - [anon_sym_restrict] = ACTIONS(4016), - [anon_sym___restrict__] = ACTIONS(4016), - [anon_sym__Atomic] = ACTIONS(4016), - [anon_sym__Noreturn] = ACTIONS(4016), - [anon_sym_noreturn] = ACTIONS(4016), - [anon_sym__Nonnull] = ACTIONS(4016), - [anon_sym_mutable] = ACTIONS(4016), - [anon_sym_constinit] = ACTIONS(4016), - [anon_sym_consteval] = ACTIONS(4016), - [anon_sym_alignas] = ACTIONS(4016), - [anon_sym__Alignas] = ACTIONS(4016), - [sym_primitive_type] = ACTIONS(4016), - [anon_sym_enum] = ACTIONS(4016), - [anon_sym_class] = ACTIONS(4016), - [anon_sym_struct] = ACTIONS(4016), - [anon_sym_union] = ACTIONS(4016), - [anon_sym_if] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_case] = ACTIONS(4016), - [anon_sym_default] = ACTIONS(4016), - [anon_sym_while] = ACTIONS(4016), - [anon_sym_do] = ACTIONS(4016), - [anon_sym_for] = ACTIONS(4016), - [anon_sym_return] = ACTIONS(4016), - [anon_sym_break] = ACTIONS(4016), - [anon_sym_continue] = ACTIONS(4016), - [anon_sym_goto] = ACTIONS(4016), - [anon_sym___try] = ACTIONS(4016), - [anon_sym___leave] = ACTIONS(4016), - [anon_sym_not] = ACTIONS(4016), - [anon_sym_compl] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_sizeof] = ACTIONS(4016), - [anon_sym___alignof__] = ACTIONS(4016), - [anon_sym___alignof] = ACTIONS(4016), - [anon_sym__alignof] = ACTIONS(4016), - [anon_sym_alignof] = ACTIONS(4016), - [anon_sym__Alignof] = ACTIONS(4016), - [anon_sym_offsetof] = ACTIONS(4016), - [anon_sym__Generic] = ACTIONS(4016), - [anon_sym_typename] = ACTIONS(4016), - [anon_sym_asm] = ACTIONS(4016), - [anon_sym___asm__] = ACTIONS(4016), - [anon_sym___asm] = ACTIONS(4016), - [sym_number_literal] = ACTIONS(4018), - [anon_sym_L_SQUOTE] = ACTIONS(4018), - [anon_sym_u_SQUOTE] = ACTIONS(4018), - [anon_sym_U_SQUOTE] = ACTIONS(4018), - [anon_sym_u8_SQUOTE] = ACTIONS(4018), - [anon_sym_SQUOTE] = ACTIONS(4018), - [anon_sym_L_DQUOTE] = ACTIONS(4018), - [anon_sym_u_DQUOTE] = ACTIONS(4018), - [anon_sym_U_DQUOTE] = ACTIONS(4018), - [anon_sym_u8_DQUOTE] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [sym_true] = ACTIONS(4016), - [sym_false] = ACTIONS(4016), - [anon_sym_NULL] = ACTIONS(4016), - [anon_sym_nullptr] = ACTIONS(4016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4016), - [anon_sym_decltype] = ACTIONS(4016), - [anon_sym_explicit] = ACTIONS(4016), - [anon_sym_export] = ACTIONS(4016), - [anon_sym_module] = ACTIONS(4016), - [anon_sym_import] = ACTIONS(4016), - [anon_sym_template] = ACTIONS(4016), - [anon_sym_operator] = ACTIONS(4016), - [anon_sym_try] = ACTIONS(4016), - [anon_sym_delete] = ACTIONS(4016), - [anon_sym_throw] = ACTIONS(4016), - [anon_sym_namespace] = ACTIONS(4016), - [anon_sym_static_assert] = ACTIONS(4016), - [anon_sym_concept] = ACTIONS(4016), - [anon_sym_co_return] = ACTIONS(4016), - [anon_sym_co_yield] = ACTIONS(4016), - [anon_sym_R_DQUOTE] = ACTIONS(4018), - [anon_sym_LR_DQUOTE] = ACTIONS(4018), - [anon_sym_uR_DQUOTE] = ACTIONS(4018), - [anon_sym_UR_DQUOTE] = ACTIONS(4018), - [anon_sym_u8R_DQUOTE] = ACTIONS(4018), - [anon_sym_co_await] = ACTIONS(4016), - [anon_sym_new] = ACTIONS(4016), - [anon_sym_requires] = ACTIONS(4016), - [anon_sym_CARET_CARET] = ACTIONS(4018), - [anon_sym_LBRACK_COLON] = ACTIONS(4018), - [sym_this] = ACTIONS(4016), + [STATE(674)] = { + [sym_identifier] = ACTIONS(3548), + [aux_sym_preproc_include_token1] = ACTIONS(3548), + [aux_sym_preproc_def_token1] = ACTIONS(3548), + [aux_sym_preproc_if_token1] = ACTIONS(3548), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3548), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3548), + [sym_preproc_directive] = ACTIONS(3548), + [anon_sym_LPAREN2] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_AMP_AMP] = ACTIONS(3550), + [anon_sym_AMP] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym___extension__] = ACTIONS(3548), + [anon_sym_typedef] = ACTIONS(3548), + [anon_sym_virtual] = ACTIONS(3548), + [anon_sym_extern] = ACTIONS(3548), + [anon_sym___attribute__] = ACTIONS(3548), + [anon_sym___attribute] = ACTIONS(3548), + [anon_sym_using] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3550), + [anon_sym___declspec] = ACTIONS(3548), + [anon_sym___based] = ACTIONS(3548), + [anon_sym___cdecl] = ACTIONS(3548), + [anon_sym___clrcall] = ACTIONS(3548), + [anon_sym___stdcall] = ACTIONS(3548), + [anon_sym___fastcall] = ACTIONS(3548), + [anon_sym___thiscall] = ACTIONS(3548), + [anon_sym___vectorcall] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_signed] = ACTIONS(3548), + [anon_sym_unsigned] = ACTIONS(3548), + [anon_sym_long] = ACTIONS(3548), + [anon_sym_short] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_register] = ACTIONS(3548), + [anon_sym_inline] = ACTIONS(3548), + [anon_sym___inline] = ACTIONS(3548), + [anon_sym___inline__] = ACTIONS(3548), + [anon_sym___forceinline] = ACTIONS(3548), + [anon_sym_thread_local] = ACTIONS(3548), + [anon_sym___thread] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_constexpr] = ACTIONS(3548), + [anon_sym_volatile] = ACTIONS(3548), + [anon_sym_restrict] = ACTIONS(3548), + [anon_sym___restrict__] = ACTIONS(3548), + [anon_sym__Atomic] = ACTIONS(3548), + [anon_sym__Noreturn] = ACTIONS(3548), + [anon_sym_noreturn] = ACTIONS(3548), + [anon_sym__Nonnull] = ACTIONS(3548), + [anon_sym_mutable] = ACTIONS(3548), + [anon_sym_constinit] = ACTIONS(3548), + [anon_sym_consteval] = ACTIONS(3548), + [anon_sym_alignas] = ACTIONS(3548), + [anon_sym__Alignas] = ACTIONS(3548), + [sym_primitive_type] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_struct] = ACTIONS(3548), + [anon_sym_union] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_case] = ACTIONS(3548), + [anon_sym_default] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_goto] = ACTIONS(3548), + [anon_sym___try] = ACTIONS(3548), + [anon_sym___leave] = ACTIONS(3548), + [anon_sym_not] = ACTIONS(3548), + [anon_sym_compl] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_sizeof] = ACTIONS(3548), + [anon_sym___alignof__] = ACTIONS(3548), + [anon_sym___alignof] = ACTIONS(3548), + [anon_sym__alignof] = ACTIONS(3548), + [anon_sym_alignof] = ACTIONS(3548), + [anon_sym__Alignof] = ACTIONS(3548), + [anon_sym_offsetof] = ACTIONS(3548), + [anon_sym__Generic] = ACTIONS(3548), + [anon_sym_typename] = ACTIONS(3548), + [anon_sym_asm] = ACTIONS(3548), + [anon_sym___asm__] = ACTIONS(3548), + [anon_sym___asm] = ACTIONS(3548), + [sym_number_literal] = ACTIONS(3550), + [anon_sym_L_SQUOTE] = ACTIONS(3550), + [anon_sym_u_SQUOTE] = ACTIONS(3550), + [anon_sym_U_SQUOTE] = ACTIONS(3550), + [anon_sym_u8_SQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_L_DQUOTE] = ACTIONS(3550), + [anon_sym_u_DQUOTE] = ACTIONS(3550), + [anon_sym_U_DQUOTE] = ACTIONS(3550), + [anon_sym_u8_DQUOTE] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [anon_sym_NULL] = ACTIONS(3548), + [anon_sym_nullptr] = ACTIONS(3548), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3548), + [anon_sym_decltype] = ACTIONS(3548), + [anon_sym_explicit] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3548), + [anon_sym_operator] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_static_assert] = ACTIONS(3548), + [anon_sym_concept] = ACTIONS(3548), + [anon_sym_co_return] = ACTIONS(3548), + [anon_sym_co_yield] = ACTIONS(3548), + [anon_sym_R_DQUOTE] = ACTIONS(3550), + [anon_sym_LR_DQUOTE] = ACTIONS(3550), + [anon_sym_uR_DQUOTE] = ACTIONS(3550), + [anon_sym_UR_DQUOTE] = ACTIONS(3550), + [anon_sym_u8R_DQUOTE] = ACTIONS(3550), + [anon_sym_co_await] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_requires] = ACTIONS(3548), + [anon_sym_CARET_CARET] = ACTIONS(3550), + [anon_sym_LBRACK_COLON] = ACTIONS(3550), + [sym_this] = ACTIONS(3548), }, - [STATE(657)] = { - [ts_builtin_sym_end] = ACTIONS(3919), + [STATE(675)] = { [sym_identifier] = ACTIONS(3917), [aux_sym_preproc_include_token1] = ACTIONS(3917), [aux_sym_preproc_def_token1] = ACTIONS(3917), - [anon_sym_COMMA] = ACTIONS(3919), [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token2] = ACTIONS(3917), [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), [sym_preproc_directive] = ACTIONS(3917), @@ -153892,7 +156431,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___thiscall] = ACTIONS(3917), [anon_sym___vectorcall] = ACTIONS(3917), [anon_sym_LBRACE] = ACTIONS(3919), - [anon_sym_RBRACE] = ACTIONS(3919), [anon_sym_signed] = ACTIONS(3917), [anon_sym_unsigned] = ACTIONS(3917), [anon_sym_long] = ACTIONS(3917), @@ -153936,6 +156474,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_break] = ACTIONS(3917), [anon_sym_continue] = ACTIONS(3917), [anon_sym_goto] = ACTIONS(3917), + [anon_sym___try] = ACTIONS(3917), + [anon_sym___leave] = ACTIONS(3917), [anon_sym_not] = ACTIONS(3917), [anon_sym_compl] = ACTIONS(3917), [anon_sym_DASH_DASH] = ACTIONS(3919), @@ -153996,6491 +156536,3953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3919), [sym_this] = ACTIONS(3917), }, - [STATE(658)] = { - [sym_identifier] = ACTIONS(4024), - [aux_sym_preproc_include_token1] = ACTIONS(4024), - [aux_sym_preproc_def_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token2] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), - [sym_preproc_directive] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [anon_sym_DASH] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym___extension__] = ACTIONS(4024), - [anon_sym_typedef] = ACTIONS(4024), - [anon_sym_virtual] = ACTIONS(4024), - [anon_sym_extern] = ACTIONS(4024), - [anon_sym___attribute__] = ACTIONS(4024), - [anon_sym___attribute] = ACTIONS(4024), - [anon_sym_using] = ACTIONS(4024), - [anon_sym_COLON_COLON] = ACTIONS(4026), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), - [anon_sym___declspec] = ACTIONS(4024), - [anon_sym___based] = ACTIONS(4024), - [anon_sym___cdecl] = ACTIONS(4024), - [anon_sym___clrcall] = ACTIONS(4024), - [anon_sym___stdcall] = ACTIONS(4024), - [anon_sym___fastcall] = ACTIONS(4024), - [anon_sym___thiscall] = ACTIONS(4024), - [anon_sym___vectorcall] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_signed] = ACTIONS(4024), - [anon_sym_unsigned] = ACTIONS(4024), - [anon_sym_long] = ACTIONS(4024), - [anon_sym_short] = ACTIONS(4024), - [anon_sym_LBRACK] = ACTIONS(4024), - [anon_sym_static] = ACTIONS(4024), - [anon_sym_register] = ACTIONS(4024), - [anon_sym_inline] = ACTIONS(4024), - [anon_sym___inline] = ACTIONS(4024), - [anon_sym___inline__] = ACTIONS(4024), - [anon_sym___forceinline] = ACTIONS(4024), - [anon_sym_thread_local] = ACTIONS(4024), - [anon_sym___thread] = ACTIONS(4024), - [anon_sym_const] = ACTIONS(4024), - [anon_sym_constexpr] = ACTIONS(4024), - [anon_sym_volatile] = ACTIONS(4024), - [anon_sym_restrict] = ACTIONS(4024), - [anon_sym___restrict__] = ACTIONS(4024), - [anon_sym__Atomic] = ACTIONS(4024), - [anon_sym__Noreturn] = ACTIONS(4024), - [anon_sym_noreturn] = ACTIONS(4024), - [anon_sym__Nonnull] = ACTIONS(4024), - [anon_sym_mutable] = ACTIONS(4024), - [anon_sym_constinit] = ACTIONS(4024), - [anon_sym_consteval] = ACTIONS(4024), - [anon_sym_alignas] = ACTIONS(4024), - [anon_sym__Alignas] = ACTIONS(4024), - [sym_primitive_type] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4024), - [anon_sym_class] = ACTIONS(4024), - [anon_sym_struct] = ACTIONS(4024), - [anon_sym_union] = ACTIONS(4024), - [anon_sym_if] = ACTIONS(4024), - [anon_sym_switch] = ACTIONS(4024), - [anon_sym_case] = ACTIONS(4024), - [anon_sym_default] = ACTIONS(4024), - [anon_sym_while] = ACTIONS(4024), - [anon_sym_do] = ACTIONS(4024), - [anon_sym_for] = ACTIONS(4024), - [anon_sym_return] = ACTIONS(4024), - [anon_sym_break] = ACTIONS(4024), - [anon_sym_continue] = ACTIONS(4024), - [anon_sym_goto] = ACTIONS(4024), - [anon_sym___try] = ACTIONS(4024), - [anon_sym___leave] = ACTIONS(4024), - [anon_sym_not] = ACTIONS(4024), - [anon_sym_compl] = ACTIONS(4024), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_sizeof] = ACTIONS(4024), - [anon_sym___alignof__] = ACTIONS(4024), - [anon_sym___alignof] = ACTIONS(4024), - [anon_sym__alignof] = ACTIONS(4024), - [anon_sym_alignof] = ACTIONS(4024), - [anon_sym__Alignof] = ACTIONS(4024), - [anon_sym_offsetof] = ACTIONS(4024), - [anon_sym__Generic] = ACTIONS(4024), - [anon_sym_typename] = ACTIONS(4024), - [anon_sym_asm] = ACTIONS(4024), - [anon_sym___asm__] = ACTIONS(4024), - [anon_sym___asm] = ACTIONS(4024), - [sym_number_literal] = ACTIONS(4026), - [anon_sym_L_SQUOTE] = ACTIONS(4026), - [anon_sym_u_SQUOTE] = ACTIONS(4026), - [anon_sym_U_SQUOTE] = ACTIONS(4026), - [anon_sym_u8_SQUOTE] = ACTIONS(4026), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_L_DQUOTE] = ACTIONS(4026), - [anon_sym_u_DQUOTE] = ACTIONS(4026), - [anon_sym_U_DQUOTE] = ACTIONS(4026), - [anon_sym_u8_DQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [anon_sym_NULL] = ACTIONS(4024), - [anon_sym_nullptr] = ACTIONS(4024), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4024), - [anon_sym_decltype] = ACTIONS(4024), - [anon_sym_explicit] = ACTIONS(4024), - [anon_sym_export] = ACTIONS(4024), - [anon_sym_module] = ACTIONS(4024), - [anon_sym_import] = ACTIONS(4024), - [anon_sym_template] = ACTIONS(4024), - [anon_sym_operator] = ACTIONS(4024), - [anon_sym_try] = ACTIONS(4024), - [anon_sym_delete] = ACTIONS(4024), - [anon_sym_throw] = ACTIONS(4024), - [anon_sym_namespace] = ACTIONS(4024), - [anon_sym_static_assert] = ACTIONS(4024), - [anon_sym_concept] = ACTIONS(4024), - [anon_sym_co_return] = ACTIONS(4024), - [anon_sym_co_yield] = ACTIONS(4024), - [anon_sym_R_DQUOTE] = ACTIONS(4026), - [anon_sym_LR_DQUOTE] = ACTIONS(4026), - [anon_sym_uR_DQUOTE] = ACTIONS(4026), - [anon_sym_UR_DQUOTE] = ACTIONS(4026), - [anon_sym_u8R_DQUOTE] = ACTIONS(4026), - [anon_sym_co_await] = ACTIONS(4024), - [anon_sym_new] = ACTIONS(4024), - [anon_sym_requires] = ACTIONS(4024), - [anon_sym_CARET_CARET] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4026), - [sym_this] = ACTIONS(4024), - }, - [STATE(659)] = { - [sym_identifier] = ACTIONS(4028), - [aux_sym_preproc_include_token1] = ACTIONS(4028), - [aux_sym_preproc_def_token1] = ACTIONS(4028), - [aux_sym_preproc_if_token1] = ACTIONS(4028), - [aux_sym_preproc_if_token2] = ACTIONS(4028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4028), - [sym_preproc_directive] = ACTIONS(4028), - [anon_sym_LPAREN2] = ACTIONS(4030), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4028), - [anon_sym_PLUS] = ACTIONS(4028), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_AMP_AMP] = ACTIONS(4030), - [anon_sym_AMP] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4030), - [anon_sym___extension__] = ACTIONS(4028), - [anon_sym_typedef] = ACTIONS(4028), - [anon_sym_virtual] = ACTIONS(4028), - [anon_sym_extern] = ACTIONS(4028), - [anon_sym___attribute__] = ACTIONS(4028), - [anon_sym___attribute] = ACTIONS(4028), - [anon_sym_using] = ACTIONS(4028), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4030), - [anon_sym___declspec] = ACTIONS(4028), - [anon_sym___based] = ACTIONS(4028), - [anon_sym___cdecl] = ACTIONS(4028), - [anon_sym___clrcall] = ACTIONS(4028), - [anon_sym___stdcall] = ACTIONS(4028), - [anon_sym___fastcall] = ACTIONS(4028), - [anon_sym___thiscall] = ACTIONS(4028), - [anon_sym___vectorcall] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4030), - [anon_sym_signed] = ACTIONS(4028), - [anon_sym_unsigned] = ACTIONS(4028), - [anon_sym_long] = ACTIONS(4028), - [anon_sym_short] = ACTIONS(4028), - [anon_sym_LBRACK] = ACTIONS(4028), - [anon_sym_static] = ACTIONS(4028), - [anon_sym_register] = ACTIONS(4028), - [anon_sym_inline] = ACTIONS(4028), - [anon_sym___inline] = ACTIONS(4028), - [anon_sym___inline__] = ACTIONS(4028), - [anon_sym___forceinline] = ACTIONS(4028), - [anon_sym_thread_local] = ACTIONS(4028), - [anon_sym___thread] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4028), - [anon_sym_constexpr] = ACTIONS(4028), - [anon_sym_volatile] = ACTIONS(4028), - [anon_sym_restrict] = ACTIONS(4028), - [anon_sym___restrict__] = ACTIONS(4028), - [anon_sym__Atomic] = ACTIONS(4028), - [anon_sym__Noreturn] = ACTIONS(4028), - [anon_sym_noreturn] = ACTIONS(4028), - [anon_sym__Nonnull] = ACTIONS(4028), - [anon_sym_mutable] = ACTIONS(4028), - [anon_sym_constinit] = ACTIONS(4028), - [anon_sym_consteval] = ACTIONS(4028), - [anon_sym_alignas] = ACTIONS(4028), - [anon_sym__Alignas] = ACTIONS(4028), - [sym_primitive_type] = ACTIONS(4028), - [anon_sym_enum] = ACTIONS(4028), - [anon_sym_class] = ACTIONS(4028), - [anon_sym_struct] = ACTIONS(4028), - [anon_sym_union] = ACTIONS(4028), - [anon_sym_if] = ACTIONS(4028), - [anon_sym_switch] = ACTIONS(4028), - [anon_sym_case] = ACTIONS(4028), - [anon_sym_default] = ACTIONS(4028), - [anon_sym_while] = ACTIONS(4028), - [anon_sym_do] = ACTIONS(4028), - [anon_sym_for] = ACTIONS(4028), - [anon_sym_return] = ACTIONS(4028), - [anon_sym_break] = ACTIONS(4028), - [anon_sym_continue] = ACTIONS(4028), - [anon_sym_goto] = ACTIONS(4028), - [anon_sym___try] = ACTIONS(4028), - [anon_sym___leave] = ACTIONS(4028), - [anon_sym_not] = ACTIONS(4028), - [anon_sym_compl] = ACTIONS(4028), - [anon_sym_DASH_DASH] = ACTIONS(4030), - [anon_sym_PLUS_PLUS] = ACTIONS(4030), - [anon_sym_sizeof] = ACTIONS(4028), - [anon_sym___alignof__] = ACTIONS(4028), - [anon_sym___alignof] = ACTIONS(4028), - [anon_sym__alignof] = ACTIONS(4028), - [anon_sym_alignof] = ACTIONS(4028), - [anon_sym__Alignof] = ACTIONS(4028), - [anon_sym_offsetof] = ACTIONS(4028), - [anon_sym__Generic] = ACTIONS(4028), - [anon_sym_typename] = ACTIONS(4028), - [anon_sym_asm] = ACTIONS(4028), - [anon_sym___asm__] = ACTIONS(4028), - [anon_sym___asm] = ACTIONS(4028), - [sym_number_literal] = ACTIONS(4030), - [anon_sym_L_SQUOTE] = ACTIONS(4030), - [anon_sym_u_SQUOTE] = ACTIONS(4030), - [anon_sym_U_SQUOTE] = ACTIONS(4030), - [anon_sym_u8_SQUOTE] = ACTIONS(4030), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_L_DQUOTE] = ACTIONS(4030), - [anon_sym_u_DQUOTE] = ACTIONS(4030), - [anon_sym_U_DQUOTE] = ACTIONS(4030), - [anon_sym_u8_DQUOTE] = ACTIONS(4030), - [anon_sym_DQUOTE] = ACTIONS(4030), - [sym_true] = ACTIONS(4028), - [sym_false] = ACTIONS(4028), - [anon_sym_NULL] = ACTIONS(4028), - [anon_sym_nullptr] = ACTIONS(4028), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4028), - [anon_sym_decltype] = ACTIONS(4028), - [anon_sym_explicit] = ACTIONS(4028), - [anon_sym_export] = ACTIONS(4028), - [anon_sym_module] = ACTIONS(4028), - [anon_sym_import] = ACTIONS(4028), - [anon_sym_template] = ACTIONS(4028), - [anon_sym_operator] = ACTIONS(4028), - [anon_sym_try] = ACTIONS(4028), - [anon_sym_delete] = ACTIONS(4028), - [anon_sym_throw] = ACTIONS(4028), - [anon_sym_namespace] = ACTIONS(4028), - [anon_sym_static_assert] = ACTIONS(4028), - [anon_sym_concept] = ACTIONS(4028), - [anon_sym_co_return] = ACTIONS(4028), - [anon_sym_co_yield] = ACTIONS(4028), - [anon_sym_R_DQUOTE] = ACTIONS(4030), - [anon_sym_LR_DQUOTE] = ACTIONS(4030), - [anon_sym_uR_DQUOTE] = ACTIONS(4030), - [anon_sym_UR_DQUOTE] = ACTIONS(4030), - [anon_sym_u8R_DQUOTE] = ACTIONS(4030), - [anon_sym_co_await] = ACTIONS(4028), - [anon_sym_new] = ACTIONS(4028), - [anon_sym_requires] = ACTIONS(4028), - [anon_sym_CARET_CARET] = ACTIONS(4030), - [anon_sym_LBRACK_COLON] = ACTIONS(4030), - [sym_this] = ACTIONS(4028), - }, - [STATE(660)] = { - [sym_identifier] = ACTIONS(4032), - [aux_sym_preproc_include_token1] = ACTIONS(4032), - [aux_sym_preproc_def_token1] = ACTIONS(4032), - [aux_sym_preproc_if_token1] = ACTIONS(4032), - [aux_sym_preproc_if_token2] = ACTIONS(4032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4032), - [sym_preproc_directive] = ACTIONS(4032), - [anon_sym_LPAREN2] = ACTIONS(4034), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_STAR] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4032), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym___extension__] = ACTIONS(4032), - [anon_sym_typedef] = ACTIONS(4032), - [anon_sym_virtual] = ACTIONS(4032), - [anon_sym_extern] = ACTIONS(4032), - [anon_sym___attribute__] = ACTIONS(4032), - [anon_sym___attribute] = ACTIONS(4032), - [anon_sym_using] = ACTIONS(4032), - [anon_sym_COLON_COLON] = ACTIONS(4034), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4034), - [anon_sym___declspec] = ACTIONS(4032), - [anon_sym___based] = ACTIONS(4032), - [anon_sym___cdecl] = ACTIONS(4032), - [anon_sym___clrcall] = ACTIONS(4032), - [anon_sym___stdcall] = ACTIONS(4032), - [anon_sym___fastcall] = ACTIONS(4032), - [anon_sym___thiscall] = ACTIONS(4032), - [anon_sym___vectorcall] = ACTIONS(4032), - [anon_sym_LBRACE] = ACTIONS(4034), - [anon_sym_signed] = ACTIONS(4032), - [anon_sym_unsigned] = ACTIONS(4032), - [anon_sym_long] = ACTIONS(4032), - [anon_sym_short] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_static] = ACTIONS(4032), - [anon_sym_register] = ACTIONS(4032), - [anon_sym_inline] = ACTIONS(4032), - [anon_sym___inline] = ACTIONS(4032), - [anon_sym___inline__] = ACTIONS(4032), - [anon_sym___forceinline] = ACTIONS(4032), - [anon_sym_thread_local] = ACTIONS(4032), - [anon_sym___thread] = ACTIONS(4032), - [anon_sym_const] = ACTIONS(4032), - [anon_sym_constexpr] = ACTIONS(4032), - [anon_sym_volatile] = ACTIONS(4032), - [anon_sym_restrict] = ACTIONS(4032), - [anon_sym___restrict__] = ACTIONS(4032), - [anon_sym__Atomic] = ACTIONS(4032), - [anon_sym__Noreturn] = ACTIONS(4032), - [anon_sym_noreturn] = ACTIONS(4032), - [anon_sym__Nonnull] = ACTIONS(4032), - [anon_sym_mutable] = ACTIONS(4032), - [anon_sym_constinit] = ACTIONS(4032), - [anon_sym_consteval] = ACTIONS(4032), - [anon_sym_alignas] = ACTIONS(4032), - [anon_sym__Alignas] = ACTIONS(4032), - [sym_primitive_type] = ACTIONS(4032), - [anon_sym_enum] = ACTIONS(4032), - [anon_sym_class] = ACTIONS(4032), - [anon_sym_struct] = ACTIONS(4032), - [anon_sym_union] = ACTIONS(4032), - [anon_sym_if] = ACTIONS(4032), - [anon_sym_switch] = ACTIONS(4032), - [anon_sym_case] = ACTIONS(4032), - [anon_sym_default] = ACTIONS(4032), - [anon_sym_while] = ACTIONS(4032), - [anon_sym_do] = ACTIONS(4032), - [anon_sym_for] = ACTIONS(4032), - [anon_sym_return] = ACTIONS(4032), - [anon_sym_break] = ACTIONS(4032), - [anon_sym_continue] = ACTIONS(4032), - [anon_sym_goto] = ACTIONS(4032), - [anon_sym___try] = ACTIONS(4032), - [anon_sym___leave] = ACTIONS(4032), - [anon_sym_not] = ACTIONS(4032), - [anon_sym_compl] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4034), - [anon_sym_PLUS_PLUS] = ACTIONS(4034), - [anon_sym_sizeof] = ACTIONS(4032), - [anon_sym___alignof__] = ACTIONS(4032), - [anon_sym___alignof] = ACTIONS(4032), - [anon_sym__alignof] = ACTIONS(4032), - [anon_sym_alignof] = ACTIONS(4032), - [anon_sym__Alignof] = ACTIONS(4032), - [anon_sym_offsetof] = ACTIONS(4032), - [anon_sym__Generic] = ACTIONS(4032), - [anon_sym_typename] = ACTIONS(4032), - [anon_sym_asm] = ACTIONS(4032), - [anon_sym___asm__] = ACTIONS(4032), - [anon_sym___asm] = ACTIONS(4032), - [sym_number_literal] = ACTIONS(4034), - [anon_sym_L_SQUOTE] = ACTIONS(4034), - [anon_sym_u_SQUOTE] = ACTIONS(4034), - [anon_sym_U_SQUOTE] = ACTIONS(4034), - [anon_sym_u8_SQUOTE] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4034), - [anon_sym_L_DQUOTE] = ACTIONS(4034), - [anon_sym_u_DQUOTE] = ACTIONS(4034), - [anon_sym_U_DQUOTE] = ACTIONS(4034), - [anon_sym_u8_DQUOTE] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4034), - [sym_true] = ACTIONS(4032), - [sym_false] = ACTIONS(4032), - [anon_sym_NULL] = ACTIONS(4032), - [anon_sym_nullptr] = ACTIONS(4032), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4032), - [anon_sym_decltype] = ACTIONS(4032), - [anon_sym_explicit] = ACTIONS(4032), - [anon_sym_export] = ACTIONS(4032), - [anon_sym_module] = ACTIONS(4032), - [anon_sym_import] = ACTIONS(4032), - [anon_sym_template] = ACTIONS(4032), - [anon_sym_operator] = ACTIONS(4032), - [anon_sym_try] = ACTIONS(4032), - [anon_sym_delete] = ACTIONS(4032), - [anon_sym_throw] = ACTIONS(4032), - [anon_sym_namespace] = ACTIONS(4032), - [anon_sym_static_assert] = ACTIONS(4032), - [anon_sym_concept] = ACTIONS(4032), - [anon_sym_co_return] = ACTIONS(4032), - [anon_sym_co_yield] = ACTIONS(4032), - [anon_sym_R_DQUOTE] = ACTIONS(4034), - [anon_sym_LR_DQUOTE] = ACTIONS(4034), - [anon_sym_uR_DQUOTE] = ACTIONS(4034), - [anon_sym_UR_DQUOTE] = ACTIONS(4034), - [anon_sym_u8R_DQUOTE] = ACTIONS(4034), - [anon_sym_co_await] = ACTIONS(4032), - [anon_sym_new] = ACTIONS(4032), - [anon_sym_requires] = ACTIONS(4032), - [anon_sym_CARET_CARET] = ACTIONS(4034), - [anon_sym_LBRACK_COLON] = ACTIONS(4034), - [sym_this] = ACTIONS(4032), - }, - [STATE(661)] = { - [sym_identifier] = ACTIONS(4036), - [aux_sym_preproc_include_token1] = ACTIONS(4036), - [aux_sym_preproc_def_token1] = ACTIONS(4036), - [aux_sym_preproc_if_token1] = ACTIONS(4036), - [aux_sym_preproc_if_token2] = ACTIONS(4036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4036), - [sym_preproc_directive] = ACTIONS(4036), - [anon_sym_LPAREN2] = ACTIONS(4038), - [anon_sym_BANG] = ACTIONS(4038), - [anon_sym_TILDE] = ACTIONS(4038), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4036), - [anon_sym_STAR] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym___extension__] = ACTIONS(4036), - [anon_sym_typedef] = ACTIONS(4036), - [anon_sym_virtual] = ACTIONS(4036), - [anon_sym_extern] = ACTIONS(4036), - [anon_sym___attribute__] = ACTIONS(4036), - [anon_sym___attribute] = ACTIONS(4036), - [anon_sym_using] = ACTIONS(4036), - [anon_sym_COLON_COLON] = ACTIONS(4038), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4038), - [anon_sym___declspec] = ACTIONS(4036), - [anon_sym___based] = ACTIONS(4036), - [anon_sym___cdecl] = ACTIONS(4036), - [anon_sym___clrcall] = ACTIONS(4036), - [anon_sym___stdcall] = ACTIONS(4036), - [anon_sym___fastcall] = ACTIONS(4036), - [anon_sym___thiscall] = ACTIONS(4036), - [anon_sym___vectorcall] = ACTIONS(4036), - [anon_sym_LBRACE] = ACTIONS(4038), - [anon_sym_signed] = ACTIONS(4036), - [anon_sym_unsigned] = ACTIONS(4036), - [anon_sym_long] = ACTIONS(4036), - [anon_sym_short] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_static] = ACTIONS(4036), - [anon_sym_register] = ACTIONS(4036), - [anon_sym_inline] = ACTIONS(4036), - [anon_sym___inline] = ACTIONS(4036), - [anon_sym___inline__] = ACTIONS(4036), - [anon_sym___forceinline] = ACTIONS(4036), - [anon_sym_thread_local] = ACTIONS(4036), - [anon_sym___thread] = ACTIONS(4036), - [anon_sym_const] = ACTIONS(4036), - [anon_sym_constexpr] = ACTIONS(4036), - [anon_sym_volatile] = ACTIONS(4036), - [anon_sym_restrict] = ACTIONS(4036), - [anon_sym___restrict__] = ACTIONS(4036), - [anon_sym__Atomic] = ACTIONS(4036), - [anon_sym__Noreturn] = ACTIONS(4036), - [anon_sym_noreturn] = ACTIONS(4036), - [anon_sym__Nonnull] = ACTIONS(4036), - [anon_sym_mutable] = ACTIONS(4036), - [anon_sym_constinit] = ACTIONS(4036), - [anon_sym_consteval] = ACTIONS(4036), - [anon_sym_alignas] = ACTIONS(4036), - [anon_sym__Alignas] = ACTIONS(4036), - [sym_primitive_type] = ACTIONS(4036), - [anon_sym_enum] = ACTIONS(4036), - [anon_sym_class] = ACTIONS(4036), - [anon_sym_struct] = ACTIONS(4036), - [anon_sym_union] = ACTIONS(4036), - [anon_sym_if] = ACTIONS(4036), - [anon_sym_switch] = ACTIONS(4036), - [anon_sym_case] = ACTIONS(4036), - [anon_sym_default] = ACTIONS(4036), - [anon_sym_while] = ACTIONS(4036), - [anon_sym_do] = ACTIONS(4036), - [anon_sym_for] = ACTIONS(4036), - [anon_sym_return] = ACTIONS(4036), - [anon_sym_break] = ACTIONS(4036), - [anon_sym_continue] = ACTIONS(4036), - [anon_sym_goto] = ACTIONS(4036), - [anon_sym___try] = ACTIONS(4036), - [anon_sym___leave] = ACTIONS(4036), - [anon_sym_not] = ACTIONS(4036), - [anon_sym_compl] = ACTIONS(4036), - [anon_sym_DASH_DASH] = ACTIONS(4038), - [anon_sym_PLUS_PLUS] = ACTIONS(4038), - [anon_sym_sizeof] = ACTIONS(4036), - [anon_sym___alignof__] = ACTIONS(4036), - [anon_sym___alignof] = ACTIONS(4036), - [anon_sym__alignof] = ACTIONS(4036), - [anon_sym_alignof] = ACTIONS(4036), - [anon_sym__Alignof] = ACTIONS(4036), - [anon_sym_offsetof] = ACTIONS(4036), - [anon_sym__Generic] = ACTIONS(4036), - [anon_sym_typename] = ACTIONS(4036), - [anon_sym_asm] = ACTIONS(4036), - [anon_sym___asm__] = ACTIONS(4036), - [anon_sym___asm] = ACTIONS(4036), - [sym_number_literal] = ACTIONS(4038), - [anon_sym_L_SQUOTE] = ACTIONS(4038), - [anon_sym_u_SQUOTE] = ACTIONS(4038), - [anon_sym_U_SQUOTE] = ACTIONS(4038), - [anon_sym_u8_SQUOTE] = ACTIONS(4038), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_L_DQUOTE] = ACTIONS(4038), - [anon_sym_u_DQUOTE] = ACTIONS(4038), - [anon_sym_U_DQUOTE] = ACTIONS(4038), - [anon_sym_u8_DQUOTE] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [sym_true] = ACTIONS(4036), - [sym_false] = ACTIONS(4036), - [anon_sym_NULL] = ACTIONS(4036), - [anon_sym_nullptr] = ACTIONS(4036), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4036), - [anon_sym_decltype] = ACTIONS(4036), - [anon_sym_explicit] = ACTIONS(4036), - [anon_sym_export] = ACTIONS(4036), - [anon_sym_module] = ACTIONS(4036), - [anon_sym_import] = ACTIONS(4036), - [anon_sym_template] = ACTIONS(4036), - [anon_sym_operator] = ACTIONS(4036), - [anon_sym_try] = ACTIONS(4036), - [anon_sym_delete] = ACTIONS(4036), - [anon_sym_throw] = ACTIONS(4036), - [anon_sym_namespace] = ACTIONS(4036), - [anon_sym_static_assert] = ACTIONS(4036), - [anon_sym_concept] = ACTIONS(4036), - [anon_sym_co_return] = ACTIONS(4036), - [anon_sym_co_yield] = ACTIONS(4036), - [anon_sym_R_DQUOTE] = ACTIONS(4038), - [anon_sym_LR_DQUOTE] = ACTIONS(4038), - [anon_sym_uR_DQUOTE] = ACTIONS(4038), - [anon_sym_UR_DQUOTE] = ACTIONS(4038), - [anon_sym_u8R_DQUOTE] = ACTIONS(4038), - [anon_sym_co_await] = ACTIONS(4036), - [anon_sym_new] = ACTIONS(4036), - [anon_sym_requires] = ACTIONS(4036), - [anon_sym_CARET_CARET] = ACTIONS(4038), - [anon_sym_LBRACK_COLON] = ACTIONS(4038), - [sym_this] = ACTIONS(4036), - }, - [STATE(662)] = { - [sym_identifier] = ACTIONS(4040), - [aux_sym_preproc_include_token1] = ACTIONS(4040), - [aux_sym_preproc_def_token1] = ACTIONS(4040), - [aux_sym_preproc_if_token1] = ACTIONS(4040), - [aux_sym_preproc_if_token2] = ACTIONS(4040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4040), - [sym_preproc_directive] = ACTIONS(4040), - [anon_sym_LPAREN2] = ACTIONS(4042), - [anon_sym_BANG] = ACTIONS(4042), - [anon_sym_TILDE] = ACTIONS(4042), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym___extension__] = ACTIONS(4040), - [anon_sym_typedef] = ACTIONS(4040), - [anon_sym_virtual] = ACTIONS(4040), - [anon_sym_extern] = ACTIONS(4040), - [anon_sym___attribute__] = ACTIONS(4040), - [anon_sym___attribute] = ACTIONS(4040), - [anon_sym_using] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4042), - [anon_sym___declspec] = ACTIONS(4040), - [anon_sym___based] = ACTIONS(4040), - [anon_sym___cdecl] = ACTIONS(4040), - [anon_sym___clrcall] = ACTIONS(4040), - [anon_sym___stdcall] = ACTIONS(4040), - [anon_sym___fastcall] = ACTIONS(4040), - [anon_sym___thiscall] = ACTIONS(4040), - [anon_sym___vectorcall] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_signed] = ACTIONS(4040), - [anon_sym_unsigned] = ACTIONS(4040), - [anon_sym_long] = ACTIONS(4040), - [anon_sym_short] = ACTIONS(4040), - [anon_sym_LBRACK] = ACTIONS(4040), - [anon_sym_static] = ACTIONS(4040), - [anon_sym_register] = ACTIONS(4040), - [anon_sym_inline] = ACTIONS(4040), - [anon_sym___inline] = ACTIONS(4040), - [anon_sym___inline__] = ACTIONS(4040), - [anon_sym___forceinline] = ACTIONS(4040), - [anon_sym_thread_local] = ACTIONS(4040), - [anon_sym___thread] = ACTIONS(4040), - [anon_sym_const] = ACTIONS(4040), - [anon_sym_constexpr] = ACTIONS(4040), - [anon_sym_volatile] = ACTIONS(4040), - [anon_sym_restrict] = ACTIONS(4040), - [anon_sym___restrict__] = ACTIONS(4040), - [anon_sym__Atomic] = ACTIONS(4040), - [anon_sym__Noreturn] = ACTIONS(4040), - [anon_sym_noreturn] = ACTIONS(4040), - [anon_sym__Nonnull] = ACTIONS(4040), - [anon_sym_mutable] = ACTIONS(4040), - [anon_sym_constinit] = ACTIONS(4040), - [anon_sym_consteval] = ACTIONS(4040), - [anon_sym_alignas] = ACTIONS(4040), - [anon_sym__Alignas] = ACTIONS(4040), - [sym_primitive_type] = ACTIONS(4040), - [anon_sym_enum] = ACTIONS(4040), - [anon_sym_class] = ACTIONS(4040), - [anon_sym_struct] = ACTIONS(4040), - [anon_sym_union] = ACTIONS(4040), - [anon_sym_if] = ACTIONS(4040), - [anon_sym_switch] = ACTIONS(4040), - [anon_sym_case] = ACTIONS(4040), - [anon_sym_default] = ACTIONS(4040), - [anon_sym_while] = ACTIONS(4040), - [anon_sym_do] = ACTIONS(4040), - [anon_sym_for] = ACTIONS(4040), - [anon_sym_return] = ACTIONS(4040), - [anon_sym_break] = ACTIONS(4040), - [anon_sym_continue] = ACTIONS(4040), - [anon_sym_goto] = ACTIONS(4040), - [anon_sym___try] = ACTIONS(4040), - [anon_sym___leave] = ACTIONS(4040), - [anon_sym_not] = ACTIONS(4040), - [anon_sym_compl] = ACTIONS(4040), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_sizeof] = ACTIONS(4040), - [anon_sym___alignof__] = ACTIONS(4040), - [anon_sym___alignof] = ACTIONS(4040), - [anon_sym__alignof] = ACTIONS(4040), - [anon_sym_alignof] = ACTIONS(4040), - [anon_sym__Alignof] = ACTIONS(4040), - [anon_sym_offsetof] = ACTIONS(4040), - [anon_sym__Generic] = ACTIONS(4040), - [anon_sym_typename] = ACTIONS(4040), - [anon_sym_asm] = ACTIONS(4040), - [anon_sym___asm__] = ACTIONS(4040), - [anon_sym___asm] = ACTIONS(4040), - [sym_number_literal] = ACTIONS(4042), - [anon_sym_L_SQUOTE] = ACTIONS(4042), - [anon_sym_u_SQUOTE] = ACTIONS(4042), - [anon_sym_U_SQUOTE] = ACTIONS(4042), - [anon_sym_u8_SQUOTE] = ACTIONS(4042), - [anon_sym_SQUOTE] = ACTIONS(4042), - [anon_sym_L_DQUOTE] = ACTIONS(4042), - [anon_sym_u_DQUOTE] = ACTIONS(4042), - [anon_sym_U_DQUOTE] = ACTIONS(4042), - [anon_sym_u8_DQUOTE] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4042), - [sym_true] = ACTIONS(4040), - [sym_false] = ACTIONS(4040), - [anon_sym_NULL] = ACTIONS(4040), - [anon_sym_nullptr] = ACTIONS(4040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4040), - [anon_sym_decltype] = ACTIONS(4040), - [anon_sym_explicit] = ACTIONS(4040), - [anon_sym_export] = ACTIONS(4040), - [anon_sym_module] = ACTIONS(4040), - [anon_sym_import] = ACTIONS(4040), - [anon_sym_template] = ACTIONS(4040), - [anon_sym_operator] = ACTIONS(4040), - [anon_sym_try] = ACTIONS(4040), - [anon_sym_delete] = ACTIONS(4040), - [anon_sym_throw] = ACTIONS(4040), - [anon_sym_namespace] = ACTIONS(4040), - [anon_sym_static_assert] = ACTIONS(4040), - [anon_sym_concept] = ACTIONS(4040), - [anon_sym_co_return] = ACTIONS(4040), - [anon_sym_co_yield] = ACTIONS(4040), - [anon_sym_R_DQUOTE] = ACTIONS(4042), - [anon_sym_LR_DQUOTE] = ACTIONS(4042), - [anon_sym_uR_DQUOTE] = ACTIONS(4042), - [anon_sym_UR_DQUOTE] = ACTIONS(4042), - [anon_sym_u8R_DQUOTE] = ACTIONS(4042), - [anon_sym_co_await] = ACTIONS(4040), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_requires] = ACTIONS(4040), - [anon_sym_CARET_CARET] = ACTIONS(4042), - [anon_sym_LBRACK_COLON] = ACTIONS(4042), - [sym_this] = ACTIONS(4040), - }, - [STATE(663)] = { - [sym_identifier] = ACTIONS(4024), - [aux_sym_preproc_include_token1] = ACTIONS(4024), - [aux_sym_preproc_def_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token2] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), - [sym_preproc_directive] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [anon_sym_DASH] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym___extension__] = ACTIONS(4024), - [anon_sym_typedef] = ACTIONS(4024), - [anon_sym_virtual] = ACTIONS(4024), - [anon_sym_extern] = ACTIONS(4024), - [anon_sym___attribute__] = ACTIONS(4024), - [anon_sym___attribute] = ACTIONS(4024), - [anon_sym_using] = ACTIONS(4024), - [anon_sym_COLON_COLON] = ACTIONS(4026), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), - [anon_sym___declspec] = ACTIONS(4024), - [anon_sym___based] = ACTIONS(4024), - [anon_sym___cdecl] = ACTIONS(4024), - [anon_sym___clrcall] = ACTIONS(4024), - [anon_sym___stdcall] = ACTIONS(4024), - [anon_sym___fastcall] = ACTIONS(4024), - [anon_sym___thiscall] = ACTIONS(4024), - [anon_sym___vectorcall] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_signed] = ACTIONS(4024), - [anon_sym_unsigned] = ACTIONS(4024), - [anon_sym_long] = ACTIONS(4024), - [anon_sym_short] = ACTIONS(4024), - [anon_sym_LBRACK] = ACTIONS(4024), - [anon_sym_static] = ACTIONS(4024), - [anon_sym_register] = ACTIONS(4024), - [anon_sym_inline] = ACTIONS(4024), - [anon_sym___inline] = ACTIONS(4024), - [anon_sym___inline__] = ACTIONS(4024), - [anon_sym___forceinline] = ACTIONS(4024), - [anon_sym_thread_local] = ACTIONS(4024), - [anon_sym___thread] = ACTIONS(4024), - [anon_sym_const] = ACTIONS(4024), - [anon_sym_constexpr] = ACTIONS(4024), - [anon_sym_volatile] = ACTIONS(4024), - [anon_sym_restrict] = ACTIONS(4024), - [anon_sym___restrict__] = ACTIONS(4024), - [anon_sym__Atomic] = ACTIONS(4024), - [anon_sym__Noreturn] = ACTIONS(4024), - [anon_sym_noreturn] = ACTIONS(4024), - [anon_sym__Nonnull] = ACTIONS(4024), - [anon_sym_mutable] = ACTIONS(4024), - [anon_sym_constinit] = ACTIONS(4024), - [anon_sym_consteval] = ACTIONS(4024), - [anon_sym_alignas] = ACTIONS(4024), - [anon_sym__Alignas] = ACTIONS(4024), - [sym_primitive_type] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4024), - [anon_sym_class] = ACTIONS(4024), - [anon_sym_struct] = ACTIONS(4024), - [anon_sym_union] = ACTIONS(4024), - [anon_sym_if] = ACTIONS(4024), - [anon_sym_switch] = ACTIONS(4024), - [anon_sym_case] = ACTIONS(4024), - [anon_sym_default] = ACTIONS(4024), - [anon_sym_while] = ACTIONS(4024), - [anon_sym_do] = ACTIONS(4024), - [anon_sym_for] = ACTIONS(4024), - [anon_sym_return] = ACTIONS(4024), - [anon_sym_break] = ACTIONS(4024), - [anon_sym_continue] = ACTIONS(4024), - [anon_sym_goto] = ACTIONS(4024), - [anon_sym___try] = ACTIONS(4024), - [anon_sym___leave] = ACTIONS(4024), - [anon_sym_not] = ACTIONS(4024), - [anon_sym_compl] = ACTIONS(4024), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_sizeof] = ACTIONS(4024), - [anon_sym___alignof__] = ACTIONS(4024), - [anon_sym___alignof] = ACTIONS(4024), - [anon_sym__alignof] = ACTIONS(4024), - [anon_sym_alignof] = ACTIONS(4024), - [anon_sym__Alignof] = ACTIONS(4024), - [anon_sym_offsetof] = ACTIONS(4024), - [anon_sym__Generic] = ACTIONS(4024), - [anon_sym_typename] = ACTIONS(4024), - [anon_sym_asm] = ACTIONS(4024), - [anon_sym___asm__] = ACTIONS(4024), - [anon_sym___asm] = ACTIONS(4024), - [sym_number_literal] = ACTIONS(4026), - [anon_sym_L_SQUOTE] = ACTIONS(4026), - [anon_sym_u_SQUOTE] = ACTIONS(4026), - [anon_sym_U_SQUOTE] = ACTIONS(4026), - [anon_sym_u8_SQUOTE] = ACTIONS(4026), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_L_DQUOTE] = ACTIONS(4026), - [anon_sym_u_DQUOTE] = ACTIONS(4026), - [anon_sym_U_DQUOTE] = ACTIONS(4026), - [anon_sym_u8_DQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [anon_sym_NULL] = ACTIONS(4024), - [anon_sym_nullptr] = ACTIONS(4024), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4024), - [anon_sym_decltype] = ACTIONS(4024), - [anon_sym_explicit] = ACTIONS(4024), - [anon_sym_export] = ACTIONS(4024), - [anon_sym_module] = ACTIONS(4024), - [anon_sym_import] = ACTIONS(4024), - [anon_sym_template] = ACTIONS(4024), - [anon_sym_operator] = ACTIONS(4024), - [anon_sym_try] = ACTIONS(4024), - [anon_sym_delete] = ACTIONS(4024), - [anon_sym_throw] = ACTIONS(4024), - [anon_sym_namespace] = ACTIONS(4024), - [anon_sym_static_assert] = ACTIONS(4024), - [anon_sym_concept] = ACTIONS(4024), - [anon_sym_co_return] = ACTIONS(4024), - [anon_sym_co_yield] = ACTIONS(4024), - [anon_sym_R_DQUOTE] = ACTIONS(4026), - [anon_sym_LR_DQUOTE] = ACTIONS(4026), - [anon_sym_uR_DQUOTE] = ACTIONS(4026), - [anon_sym_UR_DQUOTE] = ACTIONS(4026), - [anon_sym_u8R_DQUOTE] = ACTIONS(4026), - [anon_sym_co_await] = ACTIONS(4024), - [anon_sym_new] = ACTIONS(4024), - [anon_sym_requires] = ACTIONS(4024), - [anon_sym_CARET_CARET] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4026), - [sym_this] = ACTIONS(4024), - }, - [STATE(664)] = { - [sym_identifier] = ACTIONS(4076), - [aux_sym_preproc_include_token1] = ACTIONS(4076), - [aux_sym_preproc_def_token1] = ACTIONS(4076), - [aux_sym_preproc_if_token1] = ACTIONS(4076), - [aux_sym_preproc_if_token2] = ACTIONS(4076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4076), - [sym_preproc_directive] = ACTIONS(4076), - [anon_sym_LPAREN2] = ACTIONS(4078), - [anon_sym_BANG] = ACTIONS(4078), - [anon_sym_TILDE] = ACTIONS(4078), - [anon_sym_DASH] = ACTIONS(4076), - [anon_sym_PLUS] = ACTIONS(4076), - [anon_sym_STAR] = ACTIONS(4078), - [anon_sym_AMP_AMP] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4076), - [anon_sym_SEMI] = ACTIONS(4078), - [anon_sym___extension__] = ACTIONS(4076), - [anon_sym_typedef] = ACTIONS(4076), - [anon_sym_virtual] = ACTIONS(4076), - [anon_sym_extern] = ACTIONS(4076), - [anon_sym___attribute__] = ACTIONS(4076), - [anon_sym___attribute] = ACTIONS(4076), - [anon_sym_using] = ACTIONS(4076), - [anon_sym_COLON_COLON] = ACTIONS(4078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4078), - [anon_sym___declspec] = ACTIONS(4076), - [anon_sym___based] = ACTIONS(4076), - [anon_sym___cdecl] = ACTIONS(4076), - [anon_sym___clrcall] = ACTIONS(4076), - [anon_sym___stdcall] = ACTIONS(4076), - [anon_sym___fastcall] = ACTIONS(4076), - [anon_sym___thiscall] = ACTIONS(4076), - [anon_sym___vectorcall] = ACTIONS(4076), - [anon_sym_LBRACE] = ACTIONS(4078), - [anon_sym_signed] = ACTIONS(4076), - [anon_sym_unsigned] = ACTIONS(4076), - [anon_sym_long] = ACTIONS(4076), - [anon_sym_short] = ACTIONS(4076), - [anon_sym_LBRACK] = ACTIONS(4076), - [anon_sym_static] = ACTIONS(4076), - [anon_sym_register] = ACTIONS(4076), - [anon_sym_inline] = ACTIONS(4076), - [anon_sym___inline] = ACTIONS(4076), - [anon_sym___inline__] = ACTIONS(4076), - [anon_sym___forceinline] = ACTIONS(4076), - [anon_sym_thread_local] = ACTIONS(4076), - [anon_sym___thread] = ACTIONS(4076), - [anon_sym_const] = ACTIONS(4076), - [anon_sym_constexpr] = ACTIONS(4076), - [anon_sym_volatile] = ACTIONS(4076), - [anon_sym_restrict] = ACTIONS(4076), - [anon_sym___restrict__] = ACTIONS(4076), - [anon_sym__Atomic] = ACTIONS(4076), - [anon_sym__Noreturn] = ACTIONS(4076), - [anon_sym_noreturn] = ACTIONS(4076), - [anon_sym__Nonnull] = ACTIONS(4076), - [anon_sym_mutable] = ACTIONS(4076), - [anon_sym_constinit] = ACTIONS(4076), - [anon_sym_consteval] = ACTIONS(4076), - [anon_sym_alignas] = ACTIONS(4076), - [anon_sym__Alignas] = ACTIONS(4076), - [sym_primitive_type] = ACTIONS(4076), - [anon_sym_enum] = ACTIONS(4076), - [anon_sym_class] = ACTIONS(4076), - [anon_sym_struct] = ACTIONS(4076), - [anon_sym_union] = ACTIONS(4076), - [anon_sym_if] = ACTIONS(4076), - [anon_sym_switch] = ACTIONS(4076), - [anon_sym_case] = ACTIONS(4076), - [anon_sym_default] = ACTIONS(4076), - [anon_sym_while] = ACTIONS(4076), - [anon_sym_do] = ACTIONS(4076), - [anon_sym_for] = ACTIONS(4076), - [anon_sym_return] = ACTIONS(4076), - [anon_sym_break] = ACTIONS(4076), - [anon_sym_continue] = ACTIONS(4076), - [anon_sym_goto] = ACTIONS(4076), - [anon_sym___try] = ACTIONS(4076), - [anon_sym___leave] = ACTIONS(4076), - [anon_sym_not] = ACTIONS(4076), - [anon_sym_compl] = ACTIONS(4076), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_sizeof] = ACTIONS(4076), - [anon_sym___alignof__] = ACTIONS(4076), - [anon_sym___alignof] = ACTIONS(4076), - [anon_sym__alignof] = ACTIONS(4076), - [anon_sym_alignof] = ACTIONS(4076), - [anon_sym__Alignof] = ACTIONS(4076), - [anon_sym_offsetof] = ACTIONS(4076), - [anon_sym__Generic] = ACTIONS(4076), - [anon_sym_typename] = ACTIONS(4076), - [anon_sym_asm] = ACTIONS(4076), - [anon_sym___asm__] = ACTIONS(4076), - [anon_sym___asm] = ACTIONS(4076), - [sym_number_literal] = ACTIONS(4078), - [anon_sym_L_SQUOTE] = ACTIONS(4078), - [anon_sym_u_SQUOTE] = ACTIONS(4078), - [anon_sym_U_SQUOTE] = ACTIONS(4078), - [anon_sym_u8_SQUOTE] = ACTIONS(4078), - [anon_sym_SQUOTE] = ACTIONS(4078), - [anon_sym_L_DQUOTE] = ACTIONS(4078), - [anon_sym_u_DQUOTE] = ACTIONS(4078), - [anon_sym_U_DQUOTE] = ACTIONS(4078), - [anon_sym_u8_DQUOTE] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(4078), - [sym_true] = ACTIONS(4076), - [sym_false] = ACTIONS(4076), - [anon_sym_NULL] = ACTIONS(4076), - [anon_sym_nullptr] = ACTIONS(4076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4076), - [anon_sym_decltype] = ACTIONS(4076), - [anon_sym_explicit] = ACTIONS(4076), - [anon_sym_export] = ACTIONS(4076), - [anon_sym_module] = ACTIONS(4076), - [anon_sym_import] = ACTIONS(4076), - [anon_sym_template] = ACTIONS(4076), - [anon_sym_operator] = ACTIONS(4076), - [anon_sym_try] = ACTIONS(4076), - [anon_sym_delete] = ACTIONS(4076), - [anon_sym_throw] = ACTIONS(4076), - [anon_sym_namespace] = ACTIONS(4076), - [anon_sym_static_assert] = ACTIONS(4076), - [anon_sym_concept] = ACTIONS(4076), - [anon_sym_co_return] = ACTIONS(4076), - [anon_sym_co_yield] = ACTIONS(4076), - [anon_sym_R_DQUOTE] = ACTIONS(4078), - [anon_sym_LR_DQUOTE] = ACTIONS(4078), - [anon_sym_uR_DQUOTE] = ACTIONS(4078), - [anon_sym_UR_DQUOTE] = ACTIONS(4078), - [anon_sym_u8R_DQUOTE] = ACTIONS(4078), - [anon_sym_co_await] = ACTIONS(4076), - [anon_sym_new] = ACTIONS(4076), - [anon_sym_requires] = ACTIONS(4076), - [anon_sym_CARET_CARET] = ACTIONS(4078), - [anon_sym_LBRACK_COLON] = ACTIONS(4078), - [sym_this] = ACTIONS(4076), - }, - [STATE(665)] = { - [sym_identifier] = ACTIONS(3684), - [aux_sym_preproc_include_token1] = ACTIONS(3684), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token2] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym___extension__] = ACTIONS(3684), - [anon_sym_typedef] = ACTIONS(3684), - [anon_sym_virtual] = ACTIONS(3684), - [anon_sym_extern] = ACTIONS(3684), - [anon_sym___attribute__] = ACTIONS(3684), - [anon_sym___attribute] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_COLON_COLON] = ACTIONS(3686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), - [anon_sym___declspec] = ACTIONS(3684), - [anon_sym___based] = ACTIONS(3684), - [anon_sym___cdecl] = ACTIONS(3684), - [anon_sym___clrcall] = ACTIONS(3684), - [anon_sym___stdcall] = ACTIONS(3684), - [anon_sym___fastcall] = ACTIONS(3684), - [anon_sym___thiscall] = ACTIONS(3684), - [anon_sym___vectorcall] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_signed] = ACTIONS(3684), - [anon_sym_unsigned] = ACTIONS(3684), - [anon_sym_long] = ACTIONS(3684), - [anon_sym_short] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_register] = ACTIONS(3684), - [anon_sym_inline] = ACTIONS(3684), - [anon_sym___inline] = ACTIONS(3684), - [anon_sym___inline__] = ACTIONS(3684), - [anon_sym___forceinline] = ACTIONS(3684), - [anon_sym_thread_local] = ACTIONS(3684), - [anon_sym___thread] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_constexpr] = ACTIONS(3684), - [anon_sym_volatile] = ACTIONS(3684), - [anon_sym_restrict] = ACTIONS(3684), - [anon_sym___restrict__] = ACTIONS(3684), - [anon_sym__Atomic] = ACTIONS(3684), - [anon_sym__Noreturn] = ACTIONS(3684), - [anon_sym_noreturn] = ACTIONS(3684), - [anon_sym__Nonnull] = ACTIONS(3684), - [anon_sym_mutable] = ACTIONS(3684), - [anon_sym_constinit] = ACTIONS(3684), - [anon_sym_consteval] = ACTIONS(3684), - [anon_sym_alignas] = ACTIONS(3684), - [anon_sym__Alignas] = ACTIONS(3684), - [sym_primitive_type] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_struct] = ACTIONS(3684), - [anon_sym_union] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_case] = ACTIONS(3684), - [anon_sym_default] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_goto] = ACTIONS(3684), - [anon_sym___try] = ACTIONS(3684), - [anon_sym___leave] = ACTIONS(3684), - [anon_sym_not] = ACTIONS(3684), - [anon_sym_compl] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_sizeof] = ACTIONS(3684), - [anon_sym___alignof__] = ACTIONS(3684), - [anon_sym___alignof] = ACTIONS(3684), - [anon_sym__alignof] = ACTIONS(3684), - [anon_sym_alignof] = ACTIONS(3684), - [anon_sym__Alignof] = ACTIONS(3684), - [anon_sym_offsetof] = ACTIONS(3684), - [anon_sym__Generic] = ACTIONS(3684), - [anon_sym_typename] = ACTIONS(3684), - [anon_sym_asm] = ACTIONS(3684), - [anon_sym___asm__] = ACTIONS(3684), - [anon_sym___asm] = ACTIONS(3684), - [sym_number_literal] = ACTIONS(3686), - [anon_sym_L_SQUOTE] = ACTIONS(3686), - [anon_sym_u_SQUOTE] = ACTIONS(3686), - [anon_sym_U_SQUOTE] = ACTIONS(3686), - [anon_sym_u8_SQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_L_DQUOTE] = ACTIONS(3686), - [anon_sym_u_DQUOTE] = ACTIONS(3686), - [anon_sym_U_DQUOTE] = ACTIONS(3686), - [anon_sym_u8_DQUOTE] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [anon_sym_NULL] = ACTIONS(3684), - [anon_sym_nullptr] = ACTIONS(3684), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3684), - [anon_sym_decltype] = ACTIONS(3684), - [anon_sym_explicit] = ACTIONS(3684), - [anon_sym_export] = ACTIONS(3684), - [anon_sym_module] = ACTIONS(3684), - [anon_sym_import] = ACTIONS(3684), - [anon_sym_template] = ACTIONS(3684), - [anon_sym_operator] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_static_assert] = ACTIONS(3684), - [anon_sym_concept] = ACTIONS(3684), - [anon_sym_co_return] = ACTIONS(3684), - [anon_sym_co_yield] = ACTIONS(3684), - [anon_sym_R_DQUOTE] = ACTIONS(3686), - [anon_sym_LR_DQUOTE] = ACTIONS(3686), - [anon_sym_uR_DQUOTE] = ACTIONS(3686), - [anon_sym_UR_DQUOTE] = ACTIONS(3686), - [anon_sym_u8R_DQUOTE] = ACTIONS(3686), - [anon_sym_co_await] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_requires] = ACTIONS(3684), - [anon_sym_CARET_CARET] = ACTIONS(3686), - [anon_sym_LBRACK_COLON] = ACTIONS(3686), - [sym_this] = ACTIONS(3684), - }, - [STATE(666)] = { - [sym_identifier] = ACTIONS(3564), - [aux_sym_preproc_include_token1] = ACTIONS(3564), - [aux_sym_preproc_def_token1] = ACTIONS(3564), - [aux_sym_preproc_if_token1] = ACTIONS(3564), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3564), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3564), - [sym_preproc_directive] = ACTIONS(3564), - [anon_sym_LPAREN2] = ACTIONS(3566), - [anon_sym_BANG] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_AMP_AMP] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3564), - [anon_sym_SEMI] = ACTIONS(3566), - [anon_sym___extension__] = ACTIONS(3564), - [anon_sym_typedef] = ACTIONS(3564), - [anon_sym_virtual] = ACTIONS(3564), - [anon_sym_extern] = ACTIONS(3564), - [anon_sym___attribute__] = ACTIONS(3564), - [anon_sym___attribute] = ACTIONS(3564), - [anon_sym_using] = ACTIONS(3564), - [anon_sym_COLON_COLON] = ACTIONS(3566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3566), - [anon_sym___declspec] = ACTIONS(3564), - [anon_sym___based] = ACTIONS(3564), - [anon_sym___cdecl] = ACTIONS(3564), - [anon_sym___clrcall] = ACTIONS(3564), - [anon_sym___stdcall] = ACTIONS(3564), - [anon_sym___fastcall] = ACTIONS(3564), - [anon_sym___thiscall] = ACTIONS(3564), - [anon_sym___vectorcall] = ACTIONS(3564), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_RBRACE] = ACTIONS(3566), - [anon_sym_signed] = ACTIONS(3564), - [anon_sym_unsigned] = ACTIONS(3564), - [anon_sym_long] = ACTIONS(3564), - [anon_sym_short] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3564), - [anon_sym_static] = ACTIONS(3564), - [anon_sym_register] = ACTIONS(3564), - [anon_sym_inline] = ACTIONS(3564), - [anon_sym___inline] = ACTIONS(3564), - [anon_sym___inline__] = ACTIONS(3564), - [anon_sym___forceinline] = ACTIONS(3564), - [anon_sym_thread_local] = ACTIONS(3564), - [anon_sym___thread] = ACTIONS(3564), - [anon_sym_const] = ACTIONS(3564), - [anon_sym_constexpr] = ACTIONS(3564), - [anon_sym_volatile] = ACTIONS(3564), - [anon_sym_restrict] = ACTIONS(3564), - [anon_sym___restrict__] = ACTIONS(3564), - [anon_sym__Atomic] = ACTIONS(3564), - [anon_sym__Noreturn] = ACTIONS(3564), - [anon_sym_noreturn] = ACTIONS(3564), - [anon_sym__Nonnull] = ACTIONS(3564), - [anon_sym_mutable] = ACTIONS(3564), - [anon_sym_constinit] = ACTIONS(3564), - [anon_sym_consteval] = ACTIONS(3564), - [anon_sym_alignas] = ACTIONS(3564), - [anon_sym__Alignas] = ACTIONS(3564), - [sym_primitive_type] = ACTIONS(3564), - [anon_sym_enum] = ACTIONS(3564), - [anon_sym_class] = ACTIONS(3564), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_union] = ACTIONS(3564), - [anon_sym_if] = ACTIONS(3564), - [anon_sym_else] = ACTIONS(3564), - [anon_sym_switch] = ACTIONS(3564), - [anon_sym_case] = ACTIONS(3564), - [anon_sym_default] = ACTIONS(3564), - [anon_sym_while] = ACTIONS(3564), - [anon_sym_do] = ACTIONS(3564), - [anon_sym_for] = ACTIONS(3564), - [anon_sym_return] = ACTIONS(3564), - [anon_sym_break] = ACTIONS(3564), - [anon_sym_continue] = ACTIONS(3564), - [anon_sym_goto] = ACTIONS(3564), - [anon_sym___try] = ACTIONS(3564), - [anon_sym___leave] = ACTIONS(3564), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3566), - [anon_sym_PLUS_PLUS] = ACTIONS(3566), - [anon_sym_sizeof] = ACTIONS(3564), - [anon_sym___alignof__] = ACTIONS(3564), - [anon_sym___alignof] = ACTIONS(3564), - [anon_sym__alignof] = ACTIONS(3564), - [anon_sym_alignof] = ACTIONS(3564), - [anon_sym__Alignof] = ACTIONS(3564), - [anon_sym_offsetof] = ACTIONS(3564), - [anon_sym__Generic] = ACTIONS(3564), - [anon_sym_typename] = ACTIONS(3564), - [anon_sym_asm] = ACTIONS(3564), - [anon_sym___asm__] = ACTIONS(3564), - [anon_sym___asm] = ACTIONS(3564), - [sym_number_literal] = ACTIONS(3566), - [anon_sym_L_SQUOTE] = ACTIONS(3566), - [anon_sym_u_SQUOTE] = ACTIONS(3566), - [anon_sym_U_SQUOTE] = ACTIONS(3566), - [anon_sym_u8_SQUOTE] = ACTIONS(3566), - [anon_sym_SQUOTE] = ACTIONS(3566), - [anon_sym_L_DQUOTE] = ACTIONS(3566), - [anon_sym_u_DQUOTE] = ACTIONS(3566), - [anon_sym_U_DQUOTE] = ACTIONS(3566), - [anon_sym_u8_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [sym_true] = ACTIONS(3564), - [sym_false] = ACTIONS(3564), - [anon_sym_NULL] = ACTIONS(3564), - [anon_sym_nullptr] = ACTIONS(3564), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3564), - [anon_sym_decltype] = ACTIONS(3564), - [anon_sym_explicit] = ACTIONS(3564), - [anon_sym_export] = ACTIONS(3564), - [anon_sym_import] = ACTIONS(3564), - [anon_sym_template] = ACTIONS(3564), - [anon_sym_operator] = ACTIONS(3564), - [anon_sym_try] = ACTIONS(3564), - [anon_sym_delete] = ACTIONS(3564), - [anon_sym_throw] = ACTIONS(3564), - [anon_sym_namespace] = ACTIONS(3564), - [anon_sym_static_assert] = ACTIONS(3564), - [anon_sym_concept] = ACTIONS(3564), - [anon_sym_co_return] = ACTIONS(3564), - [anon_sym_co_yield] = ACTIONS(3564), - [anon_sym_R_DQUOTE] = ACTIONS(3566), - [anon_sym_LR_DQUOTE] = ACTIONS(3566), - [anon_sym_uR_DQUOTE] = ACTIONS(3566), - [anon_sym_UR_DQUOTE] = ACTIONS(3566), - [anon_sym_u8R_DQUOTE] = ACTIONS(3566), - [anon_sym_co_await] = ACTIONS(3564), - [anon_sym_new] = ACTIONS(3564), - [anon_sym_requires] = ACTIONS(3564), - [anon_sym_CARET_CARET] = ACTIONS(3566), - [anon_sym_LBRACK_COLON] = ACTIONS(3566), - [sym_this] = ACTIONS(3564), - }, - [STATE(667)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_include_token1] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token2] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym___cdecl] = ACTIONS(4080), - [anon_sym___clrcall] = ACTIONS(4080), - [anon_sym___stdcall] = ACTIONS(4080), - [anon_sym___fastcall] = ACTIONS(4080), - [anon_sym___thiscall] = ACTIONS(4080), - [anon_sym___vectorcall] = ACTIONS(4080), - [anon_sym_LBRACE] = ACTIONS(4082), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_if] = ACTIONS(4080), - [anon_sym_switch] = ACTIONS(4080), - [anon_sym_case] = ACTIONS(4080), - [anon_sym_default] = ACTIONS(4080), - [anon_sym_while] = ACTIONS(4080), - [anon_sym_do] = ACTIONS(4080), - [anon_sym_for] = ACTIONS(4080), - [anon_sym_return] = ACTIONS(4080), - [anon_sym_break] = ACTIONS(4080), - [anon_sym_continue] = ACTIONS(4080), - [anon_sym_goto] = ACTIONS(4080), - [anon_sym___try] = ACTIONS(4080), - [anon_sym___leave] = ACTIONS(4080), - [anon_sym_not] = ACTIONS(4080), - [anon_sym_compl] = ACTIONS(4080), - [anon_sym_DASH_DASH] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4082), - [anon_sym_sizeof] = ACTIONS(4080), - [anon_sym___alignof__] = ACTIONS(4080), - [anon_sym___alignof] = ACTIONS(4080), - [anon_sym__alignof] = ACTIONS(4080), - [anon_sym_alignof] = ACTIONS(4080), - [anon_sym__Alignof] = ACTIONS(4080), - [anon_sym_offsetof] = ACTIONS(4080), - [anon_sym__Generic] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [anon_sym_asm] = ACTIONS(4080), - [anon_sym___asm__] = ACTIONS(4080), - [anon_sym___asm] = ACTIONS(4080), - [sym_number_literal] = ACTIONS(4082), - [anon_sym_L_SQUOTE] = ACTIONS(4082), - [anon_sym_u_SQUOTE] = ACTIONS(4082), - [anon_sym_U_SQUOTE] = ACTIONS(4082), - [anon_sym_u8_SQUOTE] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4082), - [anon_sym_L_DQUOTE] = ACTIONS(4082), - [anon_sym_u_DQUOTE] = ACTIONS(4082), - [anon_sym_U_DQUOTE] = ACTIONS(4082), - [anon_sym_u8_DQUOTE] = ACTIONS(4082), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [anon_sym_NULL] = ACTIONS(4080), - [anon_sym_nullptr] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_export] = ACTIONS(4080), - [anon_sym_module] = ACTIONS(4080), - [anon_sym_import] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_try] = ACTIONS(4080), - [anon_sym_delete] = ACTIONS(4080), - [anon_sym_throw] = ACTIONS(4080), - [anon_sym_namespace] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_concept] = ACTIONS(4080), - [anon_sym_co_return] = ACTIONS(4080), - [anon_sym_co_yield] = ACTIONS(4080), - [anon_sym_R_DQUOTE] = ACTIONS(4082), - [anon_sym_LR_DQUOTE] = ACTIONS(4082), - [anon_sym_uR_DQUOTE] = ACTIONS(4082), - [anon_sym_UR_DQUOTE] = ACTIONS(4082), - [anon_sym_u8R_DQUOTE] = ACTIONS(4082), - [anon_sym_co_await] = ACTIONS(4080), - [anon_sym_new] = ACTIONS(4080), - [anon_sym_requires] = ACTIONS(4080), - [anon_sym_CARET_CARET] = ACTIONS(4082), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), - [sym_this] = ACTIONS(4080), - }, - [STATE(668)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_include_token1] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token2] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym___cdecl] = ACTIONS(4080), - [anon_sym___clrcall] = ACTIONS(4080), - [anon_sym___stdcall] = ACTIONS(4080), - [anon_sym___fastcall] = ACTIONS(4080), - [anon_sym___thiscall] = ACTIONS(4080), - [anon_sym___vectorcall] = ACTIONS(4080), - [anon_sym_LBRACE] = ACTIONS(4082), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_if] = ACTIONS(4080), - [anon_sym_switch] = ACTIONS(4080), - [anon_sym_case] = ACTIONS(4080), - [anon_sym_default] = ACTIONS(4080), - [anon_sym_while] = ACTIONS(4080), - [anon_sym_do] = ACTIONS(4080), - [anon_sym_for] = ACTIONS(4080), - [anon_sym_return] = ACTIONS(4080), - [anon_sym_break] = ACTIONS(4080), - [anon_sym_continue] = ACTIONS(4080), - [anon_sym_goto] = ACTIONS(4080), - [anon_sym___try] = ACTIONS(4080), - [anon_sym___leave] = ACTIONS(4080), - [anon_sym_not] = ACTIONS(4080), - [anon_sym_compl] = ACTIONS(4080), - [anon_sym_DASH_DASH] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4082), - [anon_sym_sizeof] = ACTIONS(4080), - [anon_sym___alignof__] = ACTIONS(4080), - [anon_sym___alignof] = ACTIONS(4080), - [anon_sym__alignof] = ACTIONS(4080), - [anon_sym_alignof] = ACTIONS(4080), - [anon_sym__Alignof] = ACTIONS(4080), - [anon_sym_offsetof] = ACTIONS(4080), - [anon_sym__Generic] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [anon_sym_asm] = ACTIONS(4080), - [anon_sym___asm__] = ACTIONS(4080), - [anon_sym___asm] = ACTIONS(4080), - [sym_number_literal] = ACTIONS(4082), - [anon_sym_L_SQUOTE] = ACTIONS(4082), - [anon_sym_u_SQUOTE] = ACTIONS(4082), - [anon_sym_U_SQUOTE] = ACTIONS(4082), - [anon_sym_u8_SQUOTE] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4082), - [anon_sym_L_DQUOTE] = ACTIONS(4082), - [anon_sym_u_DQUOTE] = ACTIONS(4082), - [anon_sym_U_DQUOTE] = ACTIONS(4082), - [anon_sym_u8_DQUOTE] = ACTIONS(4082), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [anon_sym_NULL] = ACTIONS(4080), - [anon_sym_nullptr] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_export] = ACTIONS(4080), - [anon_sym_module] = ACTIONS(4080), - [anon_sym_import] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_try] = ACTIONS(4080), - [anon_sym_delete] = ACTIONS(4080), - [anon_sym_throw] = ACTIONS(4080), - [anon_sym_namespace] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_concept] = ACTIONS(4080), - [anon_sym_co_return] = ACTIONS(4080), - [anon_sym_co_yield] = ACTIONS(4080), - [anon_sym_R_DQUOTE] = ACTIONS(4082), - [anon_sym_LR_DQUOTE] = ACTIONS(4082), - [anon_sym_uR_DQUOTE] = ACTIONS(4082), - [anon_sym_UR_DQUOTE] = ACTIONS(4082), - [anon_sym_u8R_DQUOTE] = ACTIONS(4082), - [anon_sym_co_await] = ACTIONS(4080), - [anon_sym_new] = ACTIONS(4080), - [anon_sym_requires] = ACTIONS(4080), - [anon_sym_CARET_CARET] = ACTIONS(4082), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), - [sym_this] = ACTIONS(4080), - }, - [STATE(669)] = { - [sym_identifier] = ACTIONS(4443), - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token2] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4445), - [anon_sym_TILDE] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_AMP] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym___extension__] = ACTIONS(4443), - [anon_sym_typedef] = ACTIONS(4443), - [anon_sym_virtual] = ACTIONS(4443), - [anon_sym_extern] = ACTIONS(4443), - [anon_sym___attribute__] = ACTIONS(4443), - [anon_sym___attribute] = ACTIONS(4443), - [anon_sym_using] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4445), - [anon_sym___declspec] = ACTIONS(4443), - [anon_sym___based] = ACTIONS(4443), - [anon_sym___cdecl] = ACTIONS(4443), - [anon_sym___clrcall] = ACTIONS(4443), - [anon_sym___stdcall] = ACTIONS(4443), - [anon_sym___fastcall] = ACTIONS(4443), - [anon_sym___thiscall] = ACTIONS(4443), - [anon_sym___vectorcall] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_signed] = ACTIONS(4443), - [anon_sym_unsigned] = ACTIONS(4443), - [anon_sym_long] = ACTIONS(4443), - [anon_sym_short] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4443), - [anon_sym_static] = ACTIONS(4443), - [anon_sym_register] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym___inline] = ACTIONS(4443), - [anon_sym___inline__] = ACTIONS(4443), - [anon_sym___forceinline] = ACTIONS(4443), - [anon_sym_thread_local] = ACTIONS(4443), - [anon_sym___thread] = ACTIONS(4443), - [anon_sym_const] = ACTIONS(4443), - [anon_sym_constexpr] = ACTIONS(4443), - [anon_sym_volatile] = ACTIONS(4443), - [anon_sym_restrict] = ACTIONS(4443), - [anon_sym___restrict__] = ACTIONS(4443), - [anon_sym__Atomic] = ACTIONS(4443), - [anon_sym__Noreturn] = ACTIONS(4443), - [anon_sym_noreturn] = ACTIONS(4443), - [anon_sym__Nonnull] = ACTIONS(4443), - [anon_sym_mutable] = ACTIONS(4443), - [anon_sym_constinit] = ACTIONS(4443), - [anon_sym_consteval] = ACTIONS(4443), - [anon_sym_alignas] = ACTIONS(4443), - [anon_sym__Alignas] = ACTIONS(4443), - [sym_primitive_type] = ACTIONS(4443), - [anon_sym_enum] = ACTIONS(4443), - [anon_sym_class] = ACTIONS(4443), - [anon_sym_struct] = ACTIONS(4443), - [anon_sym_union] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_switch] = ACTIONS(4443), - [anon_sym_case] = ACTIONS(4443), - [anon_sym_default] = ACTIONS(4443), - [anon_sym_while] = ACTIONS(4443), - [anon_sym_do] = ACTIONS(4443), - [anon_sym_for] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_goto] = ACTIONS(4443), - [anon_sym___try] = ACTIONS(4443), - [anon_sym___leave] = ACTIONS(4443), - [anon_sym_not] = ACTIONS(4443), - [anon_sym_compl] = ACTIONS(4443), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_sizeof] = ACTIONS(4443), - [anon_sym___alignof__] = ACTIONS(4443), - [anon_sym___alignof] = ACTIONS(4443), - [anon_sym__alignof] = ACTIONS(4443), - [anon_sym_alignof] = ACTIONS(4443), - [anon_sym__Alignof] = ACTIONS(4443), - [anon_sym_offsetof] = ACTIONS(4443), - [anon_sym__Generic] = ACTIONS(4443), - [anon_sym_typename] = ACTIONS(4443), - [anon_sym_asm] = ACTIONS(4443), - [anon_sym___asm__] = ACTIONS(4443), - [anon_sym___asm] = ACTIONS(4443), - [sym_number_literal] = ACTIONS(4445), - [anon_sym_L_SQUOTE] = ACTIONS(4445), - [anon_sym_u_SQUOTE] = ACTIONS(4445), - [anon_sym_U_SQUOTE] = ACTIONS(4445), - [anon_sym_u8_SQUOTE] = ACTIONS(4445), - [anon_sym_SQUOTE] = ACTIONS(4445), - [anon_sym_L_DQUOTE] = ACTIONS(4445), - [anon_sym_u_DQUOTE] = ACTIONS(4445), - [anon_sym_U_DQUOTE] = ACTIONS(4445), - [anon_sym_u8_DQUOTE] = ACTIONS(4445), - [anon_sym_DQUOTE] = ACTIONS(4445), - [sym_true] = ACTIONS(4443), - [sym_false] = ACTIONS(4443), - [anon_sym_NULL] = ACTIONS(4443), - [anon_sym_nullptr] = ACTIONS(4443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4443), - [anon_sym_decltype] = ACTIONS(4443), - [anon_sym_explicit] = ACTIONS(4443), - [anon_sym_export] = ACTIONS(4443), - [anon_sym_module] = ACTIONS(4443), - [anon_sym_import] = ACTIONS(4443), - [anon_sym_template] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_delete] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_namespace] = ACTIONS(4443), - [anon_sym_static_assert] = ACTIONS(4443), - [anon_sym_concept] = ACTIONS(4443), - [anon_sym_co_return] = ACTIONS(4443), - [anon_sym_co_yield] = ACTIONS(4443), - [anon_sym_R_DQUOTE] = ACTIONS(4445), - [anon_sym_LR_DQUOTE] = ACTIONS(4445), - [anon_sym_uR_DQUOTE] = ACTIONS(4445), - [anon_sym_UR_DQUOTE] = ACTIONS(4445), - [anon_sym_u8R_DQUOTE] = ACTIONS(4445), - [anon_sym_co_await] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4443), - [anon_sym_requires] = ACTIONS(4443), - [anon_sym_CARET_CARET] = ACTIONS(4445), - [anon_sym_LBRACK_COLON] = ACTIONS(4445), - [sym_this] = ACTIONS(4443), - }, - [STATE(670)] = { - [sym_identifier] = ACTIONS(4116), - [aux_sym_preproc_include_token1] = ACTIONS(4116), - [aux_sym_preproc_def_token1] = ACTIONS(4116), - [aux_sym_preproc_if_token1] = ACTIONS(4116), - [aux_sym_preproc_if_token2] = ACTIONS(4116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4116), - [sym_preproc_directive] = ACTIONS(4116), - [anon_sym_LPAREN2] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4118), - [anon_sym_TILDE] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_AMP] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym___extension__] = ACTIONS(4116), - [anon_sym_typedef] = ACTIONS(4116), - [anon_sym_virtual] = ACTIONS(4116), - [anon_sym_extern] = ACTIONS(4116), - [anon_sym___attribute__] = ACTIONS(4116), - [anon_sym___attribute] = ACTIONS(4116), - [anon_sym_using] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4118), - [anon_sym___declspec] = ACTIONS(4116), - [anon_sym___based] = ACTIONS(4116), - [anon_sym___cdecl] = ACTIONS(4116), - [anon_sym___clrcall] = ACTIONS(4116), - [anon_sym___stdcall] = ACTIONS(4116), - [anon_sym___fastcall] = ACTIONS(4116), - [anon_sym___thiscall] = ACTIONS(4116), - [anon_sym___vectorcall] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_signed] = ACTIONS(4116), - [anon_sym_unsigned] = ACTIONS(4116), - [anon_sym_long] = ACTIONS(4116), - [anon_sym_short] = ACTIONS(4116), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_static] = ACTIONS(4116), - [anon_sym_register] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym___inline] = ACTIONS(4116), - [anon_sym___inline__] = ACTIONS(4116), - [anon_sym___forceinline] = ACTIONS(4116), - [anon_sym_thread_local] = ACTIONS(4116), - [anon_sym___thread] = ACTIONS(4116), - [anon_sym_const] = ACTIONS(4116), - [anon_sym_constexpr] = ACTIONS(4116), - [anon_sym_volatile] = ACTIONS(4116), - [anon_sym_restrict] = ACTIONS(4116), - [anon_sym___restrict__] = ACTIONS(4116), - [anon_sym__Atomic] = ACTIONS(4116), - [anon_sym__Noreturn] = ACTIONS(4116), - [anon_sym_noreturn] = ACTIONS(4116), - [anon_sym__Nonnull] = ACTIONS(4116), - [anon_sym_mutable] = ACTIONS(4116), - [anon_sym_constinit] = ACTIONS(4116), - [anon_sym_consteval] = ACTIONS(4116), - [anon_sym_alignas] = ACTIONS(4116), - [anon_sym__Alignas] = ACTIONS(4116), - [sym_primitive_type] = ACTIONS(4116), - [anon_sym_enum] = ACTIONS(4116), - [anon_sym_class] = ACTIONS(4116), - [anon_sym_struct] = ACTIONS(4116), - [anon_sym_union] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_switch] = ACTIONS(4116), - [anon_sym_case] = ACTIONS(4116), - [anon_sym_default] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_do] = ACTIONS(4116), - [anon_sym_for] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_goto] = ACTIONS(4116), - [anon_sym___try] = ACTIONS(4116), - [anon_sym___leave] = ACTIONS(4116), - [anon_sym_not] = ACTIONS(4116), - [anon_sym_compl] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_sizeof] = ACTIONS(4116), - [anon_sym___alignof__] = ACTIONS(4116), - [anon_sym___alignof] = ACTIONS(4116), - [anon_sym__alignof] = ACTIONS(4116), - [anon_sym_alignof] = ACTIONS(4116), - [anon_sym__Alignof] = ACTIONS(4116), - [anon_sym_offsetof] = ACTIONS(4116), - [anon_sym__Generic] = ACTIONS(4116), - [anon_sym_typename] = ACTIONS(4116), - [anon_sym_asm] = ACTIONS(4116), - [anon_sym___asm__] = ACTIONS(4116), - [anon_sym___asm] = ACTIONS(4116), - [sym_number_literal] = ACTIONS(4118), - [anon_sym_L_SQUOTE] = ACTIONS(4118), - [anon_sym_u_SQUOTE] = ACTIONS(4118), - [anon_sym_U_SQUOTE] = ACTIONS(4118), - [anon_sym_u8_SQUOTE] = ACTIONS(4118), - [anon_sym_SQUOTE] = ACTIONS(4118), - [anon_sym_L_DQUOTE] = ACTIONS(4118), - [anon_sym_u_DQUOTE] = ACTIONS(4118), - [anon_sym_U_DQUOTE] = ACTIONS(4118), - [anon_sym_u8_DQUOTE] = ACTIONS(4118), - [anon_sym_DQUOTE] = ACTIONS(4118), - [sym_true] = ACTIONS(4116), - [sym_false] = ACTIONS(4116), - [anon_sym_NULL] = ACTIONS(4116), - [anon_sym_nullptr] = ACTIONS(4116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4116), - [anon_sym_decltype] = ACTIONS(4116), - [anon_sym_explicit] = ACTIONS(4116), - [anon_sym_export] = ACTIONS(4116), - [anon_sym_module] = ACTIONS(4116), - [anon_sym_import] = ACTIONS(4116), - [anon_sym_template] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_delete] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_namespace] = ACTIONS(4116), - [anon_sym_static_assert] = ACTIONS(4116), - [anon_sym_concept] = ACTIONS(4116), - [anon_sym_co_return] = ACTIONS(4116), - [anon_sym_co_yield] = ACTIONS(4116), - [anon_sym_R_DQUOTE] = ACTIONS(4118), - [anon_sym_LR_DQUOTE] = ACTIONS(4118), - [anon_sym_uR_DQUOTE] = ACTIONS(4118), - [anon_sym_UR_DQUOTE] = ACTIONS(4118), - [anon_sym_u8R_DQUOTE] = ACTIONS(4118), - [anon_sym_co_await] = ACTIONS(4116), - [anon_sym_new] = ACTIONS(4116), - [anon_sym_requires] = ACTIONS(4116), - [anon_sym_CARET_CARET] = ACTIONS(4118), - [anon_sym_LBRACK_COLON] = ACTIONS(4118), - [sym_this] = ACTIONS(4116), - }, - [STATE(671)] = { - [sym_identifier] = ACTIONS(4120), - [aux_sym_preproc_include_token1] = ACTIONS(4120), - [aux_sym_preproc_def_token1] = ACTIONS(4120), - [aux_sym_preproc_if_token1] = ACTIONS(4120), - [aux_sym_preproc_if_token2] = ACTIONS(4120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4120), - [sym_preproc_directive] = ACTIONS(4120), - [anon_sym_LPAREN2] = ACTIONS(4122), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_TILDE] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_AMP] = ACTIONS(4120), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym___extension__] = ACTIONS(4120), - [anon_sym_typedef] = ACTIONS(4120), - [anon_sym_virtual] = ACTIONS(4120), - [anon_sym_extern] = ACTIONS(4120), - [anon_sym___attribute__] = ACTIONS(4120), - [anon_sym___attribute] = ACTIONS(4120), - [anon_sym_using] = ACTIONS(4120), - [anon_sym_COLON_COLON] = ACTIONS(4122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4122), - [anon_sym___declspec] = ACTIONS(4120), - [anon_sym___based] = ACTIONS(4120), - [anon_sym___cdecl] = ACTIONS(4120), - [anon_sym___clrcall] = ACTIONS(4120), - [anon_sym___stdcall] = ACTIONS(4120), - [anon_sym___fastcall] = ACTIONS(4120), - [anon_sym___thiscall] = ACTIONS(4120), - [anon_sym___vectorcall] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_signed] = ACTIONS(4120), - [anon_sym_unsigned] = ACTIONS(4120), - [anon_sym_long] = ACTIONS(4120), - [anon_sym_short] = ACTIONS(4120), - [anon_sym_LBRACK] = ACTIONS(4120), - [anon_sym_static] = ACTIONS(4120), - [anon_sym_register] = ACTIONS(4120), - [anon_sym_inline] = ACTIONS(4120), - [anon_sym___inline] = ACTIONS(4120), - [anon_sym___inline__] = ACTIONS(4120), - [anon_sym___forceinline] = ACTIONS(4120), - [anon_sym_thread_local] = ACTIONS(4120), - [anon_sym___thread] = ACTIONS(4120), - [anon_sym_const] = ACTIONS(4120), - [anon_sym_constexpr] = ACTIONS(4120), - [anon_sym_volatile] = ACTIONS(4120), - [anon_sym_restrict] = ACTIONS(4120), - [anon_sym___restrict__] = ACTIONS(4120), - [anon_sym__Atomic] = ACTIONS(4120), - [anon_sym__Noreturn] = ACTIONS(4120), - [anon_sym_noreturn] = ACTIONS(4120), - [anon_sym__Nonnull] = ACTIONS(4120), - [anon_sym_mutable] = ACTIONS(4120), - [anon_sym_constinit] = ACTIONS(4120), - [anon_sym_consteval] = ACTIONS(4120), - [anon_sym_alignas] = ACTIONS(4120), - [anon_sym__Alignas] = ACTIONS(4120), - [sym_primitive_type] = ACTIONS(4120), - [anon_sym_enum] = ACTIONS(4120), - [anon_sym_class] = ACTIONS(4120), - [anon_sym_struct] = ACTIONS(4120), - [anon_sym_union] = ACTIONS(4120), - [anon_sym_if] = ACTIONS(4120), - [anon_sym_switch] = ACTIONS(4120), - [anon_sym_case] = ACTIONS(4120), - [anon_sym_default] = ACTIONS(4120), - [anon_sym_while] = ACTIONS(4120), - [anon_sym_do] = ACTIONS(4120), - [anon_sym_for] = ACTIONS(4120), - [anon_sym_return] = ACTIONS(4120), - [anon_sym_break] = ACTIONS(4120), - [anon_sym_continue] = ACTIONS(4120), - [anon_sym_goto] = ACTIONS(4120), - [anon_sym___try] = ACTIONS(4120), - [anon_sym___leave] = ACTIONS(4120), - [anon_sym_not] = ACTIONS(4120), - [anon_sym_compl] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_sizeof] = ACTIONS(4120), - [anon_sym___alignof__] = ACTIONS(4120), - [anon_sym___alignof] = ACTIONS(4120), - [anon_sym__alignof] = ACTIONS(4120), - [anon_sym_alignof] = ACTIONS(4120), - [anon_sym__Alignof] = ACTIONS(4120), - [anon_sym_offsetof] = ACTIONS(4120), - [anon_sym__Generic] = ACTIONS(4120), - [anon_sym_typename] = ACTIONS(4120), - [anon_sym_asm] = ACTIONS(4120), - [anon_sym___asm__] = ACTIONS(4120), - [anon_sym___asm] = ACTIONS(4120), - [sym_number_literal] = ACTIONS(4122), - [anon_sym_L_SQUOTE] = ACTIONS(4122), - [anon_sym_u_SQUOTE] = ACTIONS(4122), - [anon_sym_U_SQUOTE] = ACTIONS(4122), - [anon_sym_u8_SQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4122), - [anon_sym_L_DQUOTE] = ACTIONS(4122), - [anon_sym_u_DQUOTE] = ACTIONS(4122), - [anon_sym_U_DQUOTE] = ACTIONS(4122), - [anon_sym_u8_DQUOTE] = ACTIONS(4122), - [anon_sym_DQUOTE] = ACTIONS(4122), - [sym_true] = ACTIONS(4120), - [sym_false] = ACTIONS(4120), - [anon_sym_NULL] = ACTIONS(4120), - [anon_sym_nullptr] = ACTIONS(4120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4120), - [anon_sym_decltype] = ACTIONS(4120), - [anon_sym_explicit] = ACTIONS(4120), - [anon_sym_export] = ACTIONS(4120), - [anon_sym_module] = ACTIONS(4120), - [anon_sym_import] = ACTIONS(4120), - [anon_sym_template] = ACTIONS(4120), - [anon_sym_operator] = ACTIONS(4120), - [anon_sym_try] = ACTIONS(4120), - [anon_sym_delete] = ACTIONS(4120), - [anon_sym_throw] = ACTIONS(4120), - [anon_sym_namespace] = ACTIONS(4120), - [anon_sym_static_assert] = ACTIONS(4120), - [anon_sym_concept] = ACTIONS(4120), - [anon_sym_co_return] = ACTIONS(4120), - [anon_sym_co_yield] = ACTIONS(4120), - [anon_sym_R_DQUOTE] = ACTIONS(4122), - [anon_sym_LR_DQUOTE] = ACTIONS(4122), - [anon_sym_uR_DQUOTE] = ACTIONS(4122), - [anon_sym_UR_DQUOTE] = ACTIONS(4122), - [anon_sym_u8R_DQUOTE] = ACTIONS(4122), - [anon_sym_co_await] = ACTIONS(4120), - [anon_sym_new] = ACTIONS(4120), - [anon_sym_requires] = ACTIONS(4120), - [anon_sym_CARET_CARET] = ACTIONS(4122), - [anon_sym_LBRACK_COLON] = ACTIONS(4122), - [sym_this] = ACTIONS(4120), - }, - [STATE(672)] = { - [sym_identifier] = ACTIONS(4124), - [aux_sym_preproc_include_token1] = ACTIONS(4124), - [aux_sym_preproc_def_token1] = ACTIONS(4124), - [aux_sym_preproc_if_token1] = ACTIONS(4124), - [aux_sym_preproc_if_token2] = ACTIONS(4124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4124), - [sym_preproc_directive] = ACTIONS(4124), - [anon_sym_LPAREN2] = ACTIONS(4126), - [anon_sym_BANG] = ACTIONS(4126), - [anon_sym_TILDE] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_SEMI] = ACTIONS(4126), - [anon_sym___extension__] = ACTIONS(4124), - [anon_sym_typedef] = ACTIONS(4124), - [anon_sym_virtual] = ACTIONS(4124), - [anon_sym_extern] = ACTIONS(4124), - [anon_sym___attribute__] = ACTIONS(4124), - [anon_sym___attribute] = ACTIONS(4124), - [anon_sym_using] = ACTIONS(4124), - [anon_sym_COLON_COLON] = ACTIONS(4126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4126), - [anon_sym___declspec] = ACTIONS(4124), - [anon_sym___based] = ACTIONS(4124), - [anon_sym___cdecl] = ACTIONS(4124), - [anon_sym___clrcall] = ACTIONS(4124), - [anon_sym___stdcall] = ACTIONS(4124), - [anon_sym___fastcall] = ACTIONS(4124), - [anon_sym___thiscall] = ACTIONS(4124), - [anon_sym___vectorcall] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_signed] = ACTIONS(4124), - [anon_sym_unsigned] = ACTIONS(4124), - [anon_sym_long] = ACTIONS(4124), - [anon_sym_short] = ACTIONS(4124), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_static] = ACTIONS(4124), - [anon_sym_register] = ACTIONS(4124), - [anon_sym_inline] = ACTIONS(4124), - [anon_sym___inline] = ACTIONS(4124), - [anon_sym___inline__] = ACTIONS(4124), - [anon_sym___forceinline] = ACTIONS(4124), - [anon_sym_thread_local] = ACTIONS(4124), - [anon_sym___thread] = ACTIONS(4124), - [anon_sym_const] = ACTIONS(4124), - [anon_sym_constexpr] = ACTIONS(4124), - [anon_sym_volatile] = ACTIONS(4124), - [anon_sym_restrict] = ACTIONS(4124), - [anon_sym___restrict__] = ACTIONS(4124), - [anon_sym__Atomic] = ACTIONS(4124), - [anon_sym__Noreturn] = ACTIONS(4124), - [anon_sym_noreturn] = ACTIONS(4124), - [anon_sym__Nonnull] = ACTIONS(4124), - [anon_sym_mutable] = ACTIONS(4124), - [anon_sym_constinit] = ACTIONS(4124), - [anon_sym_consteval] = ACTIONS(4124), - [anon_sym_alignas] = ACTIONS(4124), - [anon_sym__Alignas] = ACTIONS(4124), - [sym_primitive_type] = ACTIONS(4124), - [anon_sym_enum] = ACTIONS(4124), - [anon_sym_class] = ACTIONS(4124), - [anon_sym_struct] = ACTIONS(4124), - [anon_sym_union] = ACTIONS(4124), - [anon_sym_if] = ACTIONS(4124), - [anon_sym_switch] = ACTIONS(4124), - [anon_sym_case] = ACTIONS(4124), - [anon_sym_default] = ACTIONS(4124), - [anon_sym_while] = ACTIONS(4124), - [anon_sym_do] = ACTIONS(4124), - [anon_sym_for] = ACTIONS(4124), - [anon_sym_return] = ACTIONS(4124), - [anon_sym_break] = ACTIONS(4124), - [anon_sym_continue] = ACTIONS(4124), - [anon_sym_goto] = ACTIONS(4124), - [anon_sym___try] = ACTIONS(4124), - [anon_sym___leave] = ACTIONS(4124), - [anon_sym_not] = ACTIONS(4124), - [anon_sym_compl] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4124), - [anon_sym___alignof] = ACTIONS(4124), - [anon_sym__alignof] = ACTIONS(4124), - [anon_sym_alignof] = ACTIONS(4124), - [anon_sym__Alignof] = ACTIONS(4124), - [anon_sym_offsetof] = ACTIONS(4124), - [anon_sym__Generic] = ACTIONS(4124), - [anon_sym_typename] = ACTIONS(4124), - [anon_sym_asm] = ACTIONS(4124), - [anon_sym___asm__] = ACTIONS(4124), - [anon_sym___asm] = ACTIONS(4124), - [sym_number_literal] = ACTIONS(4126), - [anon_sym_L_SQUOTE] = ACTIONS(4126), - [anon_sym_u_SQUOTE] = ACTIONS(4126), - [anon_sym_U_SQUOTE] = ACTIONS(4126), - [anon_sym_u8_SQUOTE] = ACTIONS(4126), - [anon_sym_SQUOTE] = ACTIONS(4126), - [anon_sym_L_DQUOTE] = ACTIONS(4126), - [anon_sym_u_DQUOTE] = ACTIONS(4126), - [anon_sym_U_DQUOTE] = ACTIONS(4126), - [anon_sym_u8_DQUOTE] = ACTIONS(4126), - [anon_sym_DQUOTE] = ACTIONS(4126), - [sym_true] = ACTIONS(4124), - [sym_false] = ACTIONS(4124), - [anon_sym_NULL] = ACTIONS(4124), - [anon_sym_nullptr] = ACTIONS(4124), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4124), - [anon_sym_decltype] = ACTIONS(4124), - [anon_sym_explicit] = ACTIONS(4124), - [anon_sym_export] = ACTIONS(4124), - [anon_sym_module] = ACTIONS(4124), - [anon_sym_import] = ACTIONS(4124), - [anon_sym_template] = ACTIONS(4124), - [anon_sym_operator] = ACTIONS(4124), - [anon_sym_try] = ACTIONS(4124), - [anon_sym_delete] = ACTIONS(4124), - [anon_sym_throw] = ACTIONS(4124), - [anon_sym_namespace] = ACTIONS(4124), - [anon_sym_static_assert] = ACTIONS(4124), - [anon_sym_concept] = ACTIONS(4124), - [anon_sym_co_return] = ACTIONS(4124), - [anon_sym_co_yield] = ACTIONS(4124), - [anon_sym_R_DQUOTE] = ACTIONS(4126), - [anon_sym_LR_DQUOTE] = ACTIONS(4126), - [anon_sym_uR_DQUOTE] = ACTIONS(4126), - [anon_sym_UR_DQUOTE] = ACTIONS(4126), - [anon_sym_u8R_DQUOTE] = ACTIONS(4126), - [anon_sym_co_await] = ACTIONS(4124), - [anon_sym_new] = ACTIONS(4124), - [anon_sym_requires] = ACTIONS(4124), - [anon_sym_CARET_CARET] = ACTIONS(4126), - [anon_sym_LBRACK_COLON] = ACTIONS(4126), - [sym_this] = ACTIONS(4124), - }, - [STATE(673)] = { - [sym_identifier] = ACTIONS(4128), - [aux_sym_preproc_include_token1] = ACTIONS(4128), - [aux_sym_preproc_def_token1] = ACTIONS(4128), - [aux_sym_preproc_if_token1] = ACTIONS(4128), - [aux_sym_preproc_if_token2] = ACTIONS(4128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4128), - [sym_preproc_directive] = ACTIONS(4128), - [anon_sym_LPAREN2] = ACTIONS(4130), - [anon_sym_BANG] = ACTIONS(4130), - [anon_sym_TILDE] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4130), - [anon_sym_AMP_AMP] = ACTIONS(4130), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym___extension__] = ACTIONS(4128), - [anon_sym_typedef] = ACTIONS(4128), - [anon_sym_virtual] = ACTIONS(4128), - [anon_sym_extern] = ACTIONS(4128), - [anon_sym___attribute__] = ACTIONS(4128), - [anon_sym___attribute] = ACTIONS(4128), - [anon_sym_using] = ACTIONS(4128), - [anon_sym_COLON_COLON] = ACTIONS(4130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4130), - [anon_sym___declspec] = ACTIONS(4128), - [anon_sym___based] = ACTIONS(4128), - [anon_sym___cdecl] = ACTIONS(4128), - [anon_sym___clrcall] = ACTIONS(4128), - [anon_sym___stdcall] = ACTIONS(4128), - [anon_sym___fastcall] = ACTIONS(4128), - [anon_sym___thiscall] = ACTIONS(4128), - [anon_sym___vectorcall] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4130), - [anon_sym_signed] = ACTIONS(4128), - [anon_sym_unsigned] = ACTIONS(4128), - [anon_sym_long] = ACTIONS(4128), - [anon_sym_short] = ACTIONS(4128), - [anon_sym_LBRACK] = ACTIONS(4128), - [anon_sym_static] = ACTIONS(4128), - [anon_sym_register] = ACTIONS(4128), - [anon_sym_inline] = ACTIONS(4128), - [anon_sym___inline] = ACTIONS(4128), - [anon_sym___inline__] = ACTIONS(4128), - [anon_sym___forceinline] = ACTIONS(4128), - [anon_sym_thread_local] = ACTIONS(4128), - [anon_sym___thread] = ACTIONS(4128), - [anon_sym_const] = ACTIONS(4128), - [anon_sym_constexpr] = ACTIONS(4128), - [anon_sym_volatile] = ACTIONS(4128), - [anon_sym_restrict] = ACTIONS(4128), - [anon_sym___restrict__] = ACTIONS(4128), - [anon_sym__Atomic] = ACTIONS(4128), - [anon_sym__Noreturn] = ACTIONS(4128), - [anon_sym_noreturn] = ACTIONS(4128), - [anon_sym__Nonnull] = ACTIONS(4128), - [anon_sym_mutable] = ACTIONS(4128), - [anon_sym_constinit] = ACTIONS(4128), - [anon_sym_consteval] = ACTIONS(4128), - [anon_sym_alignas] = ACTIONS(4128), - [anon_sym__Alignas] = ACTIONS(4128), - [sym_primitive_type] = ACTIONS(4128), - [anon_sym_enum] = ACTIONS(4128), - [anon_sym_class] = ACTIONS(4128), - [anon_sym_struct] = ACTIONS(4128), - [anon_sym_union] = ACTIONS(4128), - [anon_sym_if] = ACTIONS(4128), - [anon_sym_switch] = ACTIONS(4128), - [anon_sym_case] = ACTIONS(4128), - [anon_sym_default] = ACTIONS(4128), - [anon_sym_while] = ACTIONS(4128), - [anon_sym_do] = ACTIONS(4128), - [anon_sym_for] = ACTIONS(4128), - [anon_sym_return] = ACTIONS(4128), - [anon_sym_break] = ACTIONS(4128), - [anon_sym_continue] = ACTIONS(4128), - [anon_sym_goto] = ACTIONS(4128), - [anon_sym___try] = ACTIONS(4128), - [anon_sym___leave] = ACTIONS(4128), - [anon_sym_not] = ACTIONS(4128), - [anon_sym_compl] = ACTIONS(4128), - [anon_sym_DASH_DASH] = ACTIONS(4130), - [anon_sym_PLUS_PLUS] = ACTIONS(4130), - [anon_sym_sizeof] = ACTIONS(4128), - [anon_sym___alignof__] = ACTIONS(4128), - [anon_sym___alignof] = ACTIONS(4128), - [anon_sym__alignof] = ACTIONS(4128), - [anon_sym_alignof] = ACTIONS(4128), - [anon_sym__Alignof] = ACTIONS(4128), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4128), - [anon_sym_typename] = ACTIONS(4128), - [anon_sym_asm] = ACTIONS(4128), - [anon_sym___asm__] = ACTIONS(4128), - [anon_sym___asm] = ACTIONS(4128), - [sym_number_literal] = ACTIONS(4130), - [anon_sym_L_SQUOTE] = ACTIONS(4130), - [anon_sym_u_SQUOTE] = ACTIONS(4130), - [anon_sym_U_SQUOTE] = ACTIONS(4130), - [anon_sym_u8_SQUOTE] = ACTIONS(4130), - [anon_sym_SQUOTE] = ACTIONS(4130), - [anon_sym_L_DQUOTE] = ACTIONS(4130), - [anon_sym_u_DQUOTE] = ACTIONS(4130), - [anon_sym_U_DQUOTE] = ACTIONS(4130), - [anon_sym_u8_DQUOTE] = ACTIONS(4130), - [anon_sym_DQUOTE] = ACTIONS(4130), - [sym_true] = ACTIONS(4128), - [sym_false] = ACTIONS(4128), - [anon_sym_NULL] = ACTIONS(4128), - [anon_sym_nullptr] = ACTIONS(4128), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4128), - [anon_sym_decltype] = ACTIONS(4128), - [anon_sym_explicit] = ACTIONS(4128), - [anon_sym_export] = ACTIONS(4128), - [anon_sym_module] = ACTIONS(4128), - [anon_sym_import] = ACTIONS(4128), - [anon_sym_template] = ACTIONS(4128), - [anon_sym_operator] = ACTIONS(4128), - [anon_sym_try] = ACTIONS(4128), - [anon_sym_delete] = ACTIONS(4128), - [anon_sym_throw] = ACTIONS(4128), - [anon_sym_namespace] = ACTIONS(4128), - [anon_sym_static_assert] = ACTIONS(4128), - [anon_sym_concept] = ACTIONS(4128), - [anon_sym_co_return] = ACTIONS(4128), - [anon_sym_co_yield] = ACTIONS(4128), - [anon_sym_R_DQUOTE] = ACTIONS(4130), - [anon_sym_LR_DQUOTE] = ACTIONS(4130), - [anon_sym_uR_DQUOTE] = ACTIONS(4130), - [anon_sym_UR_DQUOTE] = ACTIONS(4130), - [anon_sym_u8R_DQUOTE] = ACTIONS(4130), - [anon_sym_co_await] = ACTIONS(4128), - [anon_sym_new] = ACTIONS(4128), - [anon_sym_requires] = ACTIONS(4128), - [anon_sym_CARET_CARET] = ACTIONS(4130), - [anon_sym_LBRACK_COLON] = ACTIONS(4130), - [sym_this] = ACTIONS(4128), - }, - [STATE(674)] = { - [sym_identifier] = ACTIONS(3568), - [aux_sym_preproc_include_token1] = ACTIONS(3568), - [aux_sym_preproc_def_token1] = ACTIONS(3568), - [aux_sym_preproc_if_token1] = ACTIONS(3568), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3568), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3568), - [sym_preproc_directive] = ACTIONS(3568), - [anon_sym_LPAREN2] = ACTIONS(3570), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3570), - [anon_sym_AMP] = ACTIONS(3568), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym___extension__] = ACTIONS(3568), - [anon_sym_typedef] = ACTIONS(3568), - [anon_sym_virtual] = ACTIONS(3568), - [anon_sym_extern] = ACTIONS(3568), - [anon_sym___attribute__] = ACTIONS(3568), - [anon_sym___attribute] = ACTIONS(3568), - [anon_sym_using] = ACTIONS(3568), - [anon_sym_COLON_COLON] = ACTIONS(3570), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3570), - [anon_sym___declspec] = ACTIONS(3568), - [anon_sym___based] = ACTIONS(3568), - [anon_sym___cdecl] = ACTIONS(3568), - [anon_sym___clrcall] = ACTIONS(3568), - [anon_sym___stdcall] = ACTIONS(3568), - [anon_sym___fastcall] = ACTIONS(3568), - [anon_sym___thiscall] = ACTIONS(3568), - [anon_sym___vectorcall] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_RBRACE] = ACTIONS(3570), - [anon_sym_signed] = ACTIONS(3568), - [anon_sym_unsigned] = ACTIONS(3568), - [anon_sym_long] = ACTIONS(3568), - [anon_sym_short] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_register] = ACTIONS(3568), - [anon_sym_inline] = ACTIONS(3568), - [anon_sym___inline] = ACTIONS(3568), - [anon_sym___inline__] = ACTIONS(3568), - [anon_sym___forceinline] = ACTIONS(3568), - [anon_sym_thread_local] = ACTIONS(3568), - [anon_sym___thread] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_constexpr] = ACTIONS(3568), - [anon_sym_volatile] = ACTIONS(3568), - [anon_sym_restrict] = ACTIONS(3568), - [anon_sym___restrict__] = ACTIONS(3568), - [anon_sym__Atomic] = ACTIONS(3568), - [anon_sym__Noreturn] = ACTIONS(3568), - [anon_sym_noreturn] = ACTIONS(3568), - [anon_sym__Nonnull] = ACTIONS(3568), - [anon_sym_mutable] = ACTIONS(3568), - [anon_sym_constinit] = ACTIONS(3568), - [anon_sym_consteval] = ACTIONS(3568), - [anon_sym_alignas] = ACTIONS(3568), - [anon_sym__Alignas] = ACTIONS(3568), - [sym_primitive_type] = ACTIONS(3568), - [anon_sym_enum] = ACTIONS(3568), - [anon_sym_class] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3568), - [anon_sym_union] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_else] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_case] = ACTIONS(3568), - [anon_sym_default] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_goto] = ACTIONS(3568), - [anon_sym___try] = ACTIONS(3568), - [anon_sym___leave] = ACTIONS(3568), - [anon_sym_not] = ACTIONS(3568), - [anon_sym_compl] = ACTIONS(3568), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_sizeof] = ACTIONS(3568), - [anon_sym___alignof__] = ACTIONS(3568), - [anon_sym___alignof] = ACTIONS(3568), - [anon_sym__alignof] = ACTIONS(3568), - [anon_sym_alignof] = ACTIONS(3568), - [anon_sym__Alignof] = ACTIONS(3568), - [anon_sym_offsetof] = ACTIONS(3568), - [anon_sym__Generic] = ACTIONS(3568), - [anon_sym_typename] = ACTIONS(3568), - [anon_sym_asm] = ACTIONS(3568), - [anon_sym___asm__] = ACTIONS(3568), - [anon_sym___asm] = ACTIONS(3568), - [sym_number_literal] = ACTIONS(3570), - [anon_sym_L_SQUOTE] = ACTIONS(3570), - [anon_sym_u_SQUOTE] = ACTIONS(3570), - [anon_sym_U_SQUOTE] = ACTIONS(3570), - [anon_sym_u8_SQUOTE] = ACTIONS(3570), - [anon_sym_SQUOTE] = ACTIONS(3570), - [anon_sym_L_DQUOTE] = ACTIONS(3570), - [anon_sym_u_DQUOTE] = ACTIONS(3570), - [anon_sym_U_DQUOTE] = ACTIONS(3570), - [anon_sym_u8_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [sym_true] = ACTIONS(3568), - [sym_false] = ACTIONS(3568), - [anon_sym_NULL] = ACTIONS(3568), - [anon_sym_nullptr] = ACTIONS(3568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3568), - [anon_sym_decltype] = ACTIONS(3568), - [anon_sym_explicit] = ACTIONS(3568), - [anon_sym_export] = ACTIONS(3568), - [anon_sym_import] = ACTIONS(3568), - [anon_sym_template] = ACTIONS(3568), - [anon_sym_operator] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_delete] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_namespace] = ACTIONS(3568), - [anon_sym_static_assert] = ACTIONS(3568), - [anon_sym_concept] = ACTIONS(3568), - [anon_sym_co_return] = ACTIONS(3568), - [anon_sym_co_yield] = ACTIONS(3568), - [anon_sym_R_DQUOTE] = ACTIONS(3570), - [anon_sym_LR_DQUOTE] = ACTIONS(3570), - [anon_sym_uR_DQUOTE] = ACTIONS(3570), - [anon_sym_UR_DQUOTE] = ACTIONS(3570), - [anon_sym_u8R_DQUOTE] = ACTIONS(3570), - [anon_sym_co_await] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_requires] = ACTIONS(3568), - [anon_sym_CARET_CARET] = ACTIONS(3570), - [anon_sym_LBRACK_COLON] = ACTIONS(3570), - [sym_this] = ACTIONS(3568), - }, - [STATE(675)] = { - [sym_identifier] = ACTIONS(3572), - [aux_sym_preproc_include_token1] = ACTIONS(3572), - [aux_sym_preproc_def_token1] = ACTIONS(3572), - [aux_sym_preproc_if_token1] = ACTIONS(3572), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3572), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3572), - [sym_preproc_directive] = ACTIONS(3572), - [anon_sym_LPAREN2] = ACTIONS(3574), - [anon_sym_BANG] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_STAR] = ACTIONS(3574), - [anon_sym_AMP_AMP] = ACTIONS(3574), - [anon_sym_AMP] = ACTIONS(3572), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym___extension__] = ACTIONS(3572), - [anon_sym_typedef] = ACTIONS(3572), - [anon_sym_virtual] = ACTIONS(3572), - [anon_sym_extern] = ACTIONS(3572), - [anon_sym___attribute__] = ACTIONS(3572), - [anon_sym___attribute] = ACTIONS(3572), - [anon_sym_using] = ACTIONS(3572), - [anon_sym_COLON_COLON] = ACTIONS(3574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3574), - [anon_sym___declspec] = ACTIONS(3572), - [anon_sym___based] = ACTIONS(3572), - [anon_sym___cdecl] = ACTIONS(3572), - [anon_sym___clrcall] = ACTIONS(3572), - [anon_sym___stdcall] = ACTIONS(3572), - [anon_sym___fastcall] = ACTIONS(3572), - [anon_sym___thiscall] = ACTIONS(3572), - [anon_sym___vectorcall] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_RBRACE] = ACTIONS(3574), - [anon_sym_signed] = ACTIONS(3572), - [anon_sym_unsigned] = ACTIONS(3572), - [anon_sym_long] = ACTIONS(3572), - [anon_sym_short] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_register] = ACTIONS(3572), - [anon_sym_inline] = ACTIONS(3572), - [anon_sym___inline] = ACTIONS(3572), - [anon_sym___inline__] = ACTIONS(3572), - [anon_sym___forceinline] = ACTIONS(3572), - [anon_sym_thread_local] = ACTIONS(3572), - [anon_sym___thread] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_constexpr] = ACTIONS(3572), - [anon_sym_volatile] = ACTIONS(3572), - [anon_sym_restrict] = ACTIONS(3572), - [anon_sym___restrict__] = ACTIONS(3572), - [anon_sym__Atomic] = ACTIONS(3572), - [anon_sym__Noreturn] = ACTIONS(3572), - [anon_sym_noreturn] = ACTIONS(3572), - [anon_sym__Nonnull] = ACTIONS(3572), - [anon_sym_mutable] = ACTIONS(3572), - [anon_sym_constinit] = ACTIONS(3572), - [anon_sym_consteval] = ACTIONS(3572), - [anon_sym_alignas] = ACTIONS(3572), - [anon_sym__Alignas] = ACTIONS(3572), - [sym_primitive_type] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_struct] = ACTIONS(3572), - [anon_sym_union] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_case] = ACTIONS(3572), - [anon_sym_default] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_goto] = ACTIONS(3572), - [anon_sym___try] = ACTIONS(3572), - [anon_sym___leave] = ACTIONS(3572), - [anon_sym_not] = ACTIONS(3572), - [anon_sym_compl] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_sizeof] = ACTIONS(3572), - [anon_sym___alignof__] = ACTIONS(3572), - [anon_sym___alignof] = ACTIONS(3572), - [anon_sym__alignof] = ACTIONS(3572), - [anon_sym_alignof] = ACTIONS(3572), - [anon_sym__Alignof] = ACTIONS(3572), - [anon_sym_offsetof] = ACTIONS(3572), - [anon_sym__Generic] = ACTIONS(3572), - [anon_sym_typename] = ACTIONS(3572), - [anon_sym_asm] = ACTIONS(3572), - [anon_sym___asm__] = ACTIONS(3572), - [anon_sym___asm] = ACTIONS(3572), - [sym_number_literal] = ACTIONS(3574), - [anon_sym_L_SQUOTE] = ACTIONS(3574), - [anon_sym_u_SQUOTE] = ACTIONS(3574), - [anon_sym_U_SQUOTE] = ACTIONS(3574), - [anon_sym_u8_SQUOTE] = ACTIONS(3574), - [anon_sym_SQUOTE] = ACTIONS(3574), - [anon_sym_L_DQUOTE] = ACTIONS(3574), - [anon_sym_u_DQUOTE] = ACTIONS(3574), - [anon_sym_U_DQUOTE] = ACTIONS(3574), - [anon_sym_u8_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [anon_sym_NULL] = ACTIONS(3572), - [anon_sym_nullptr] = ACTIONS(3572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3572), - [anon_sym_decltype] = ACTIONS(3572), - [anon_sym_explicit] = ACTIONS(3572), - [anon_sym_export] = ACTIONS(3572), - [anon_sym_import] = ACTIONS(3572), - [anon_sym_template] = ACTIONS(3572), - [anon_sym_operator] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_namespace] = ACTIONS(3572), - [anon_sym_static_assert] = ACTIONS(3572), - [anon_sym_concept] = ACTIONS(3572), - [anon_sym_co_return] = ACTIONS(3572), - [anon_sym_co_yield] = ACTIONS(3572), - [anon_sym_R_DQUOTE] = ACTIONS(3574), - [anon_sym_LR_DQUOTE] = ACTIONS(3574), - [anon_sym_uR_DQUOTE] = ACTIONS(3574), - [anon_sym_UR_DQUOTE] = ACTIONS(3574), - [anon_sym_u8R_DQUOTE] = ACTIONS(3574), - [anon_sym_co_await] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_requires] = ACTIONS(3572), - [anon_sym_CARET_CARET] = ACTIONS(3574), - [anon_sym_LBRACK_COLON] = ACTIONS(3574), - [sym_this] = ACTIONS(3572), - }, [STATE(676)] = { - [sym_identifier] = ACTIONS(3576), - [aux_sym_preproc_include_token1] = ACTIONS(3576), - [aux_sym_preproc_def_token1] = ACTIONS(3576), - [aux_sym_preproc_if_token1] = ACTIONS(3576), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3576), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3576), - [sym_preproc_directive] = ACTIONS(3576), - [anon_sym_LPAREN2] = ACTIONS(3578), - [anon_sym_BANG] = ACTIONS(3578), - [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(3578), - [anon_sym_AMP_AMP] = ACTIONS(3578), - [anon_sym_AMP] = ACTIONS(3576), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym___extension__] = ACTIONS(3576), - [anon_sym_typedef] = ACTIONS(3576), - [anon_sym_virtual] = ACTIONS(3576), - [anon_sym_extern] = ACTIONS(3576), - [anon_sym___attribute__] = ACTIONS(3576), - [anon_sym___attribute] = ACTIONS(3576), - [anon_sym_using] = ACTIONS(3576), - [anon_sym_COLON_COLON] = ACTIONS(3578), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), - [anon_sym___declspec] = ACTIONS(3576), - [anon_sym___based] = ACTIONS(3576), - [anon_sym___cdecl] = ACTIONS(3576), - [anon_sym___clrcall] = ACTIONS(3576), - [anon_sym___stdcall] = ACTIONS(3576), - [anon_sym___fastcall] = ACTIONS(3576), - [anon_sym___thiscall] = ACTIONS(3576), - [anon_sym___vectorcall] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_RBRACE] = ACTIONS(3578), - [anon_sym_signed] = ACTIONS(3576), - [anon_sym_unsigned] = ACTIONS(3576), - [anon_sym_long] = ACTIONS(3576), - [anon_sym_short] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_register] = ACTIONS(3576), - [anon_sym_inline] = ACTIONS(3576), - [anon_sym___inline] = ACTIONS(3576), - [anon_sym___inline__] = ACTIONS(3576), - [anon_sym___forceinline] = ACTIONS(3576), - [anon_sym_thread_local] = ACTIONS(3576), - [anon_sym___thread] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_constexpr] = ACTIONS(3576), - [anon_sym_volatile] = ACTIONS(3576), - [anon_sym_restrict] = ACTIONS(3576), - [anon_sym___restrict__] = ACTIONS(3576), - [anon_sym__Atomic] = ACTIONS(3576), - [anon_sym__Noreturn] = ACTIONS(3576), - [anon_sym_noreturn] = ACTIONS(3576), - [anon_sym__Nonnull] = ACTIONS(3576), - [anon_sym_mutable] = ACTIONS(3576), - [anon_sym_constinit] = ACTIONS(3576), - [anon_sym_consteval] = ACTIONS(3576), - [anon_sym_alignas] = ACTIONS(3576), - [anon_sym__Alignas] = ACTIONS(3576), - [sym_primitive_type] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_struct] = ACTIONS(3576), - [anon_sym_union] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_case] = ACTIONS(3576), - [anon_sym_default] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_goto] = ACTIONS(3576), - [anon_sym___try] = ACTIONS(3576), - [anon_sym___leave] = ACTIONS(3576), - [anon_sym_not] = ACTIONS(3576), - [anon_sym_compl] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_sizeof] = ACTIONS(3576), - [anon_sym___alignof__] = ACTIONS(3576), - [anon_sym___alignof] = ACTIONS(3576), - [anon_sym__alignof] = ACTIONS(3576), - [anon_sym_alignof] = ACTIONS(3576), - [anon_sym__Alignof] = ACTIONS(3576), - [anon_sym_offsetof] = ACTIONS(3576), - [anon_sym__Generic] = ACTIONS(3576), - [anon_sym_typename] = ACTIONS(3576), - [anon_sym_asm] = ACTIONS(3576), - [anon_sym___asm__] = ACTIONS(3576), - [anon_sym___asm] = ACTIONS(3576), - [sym_number_literal] = ACTIONS(3578), - [anon_sym_L_SQUOTE] = ACTIONS(3578), - [anon_sym_u_SQUOTE] = ACTIONS(3578), - [anon_sym_U_SQUOTE] = ACTIONS(3578), - [anon_sym_u8_SQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3578), - [anon_sym_L_DQUOTE] = ACTIONS(3578), - [anon_sym_u_DQUOTE] = ACTIONS(3578), - [anon_sym_U_DQUOTE] = ACTIONS(3578), - [anon_sym_u8_DQUOTE] = ACTIONS(3578), - [anon_sym_DQUOTE] = ACTIONS(3578), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [anon_sym_NULL] = ACTIONS(3576), - [anon_sym_nullptr] = ACTIONS(3576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3576), - [anon_sym_decltype] = ACTIONS(3576), - [anon_sym_explicit] = ACTIONS(3576), - [anon_sym_export] = ACTIONS(3576), - [anon_sym_import] = ACTIONS(3576), - [anon_sym_template] = ACTIONS(3576), - [anon_sym_operator] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_namespace] = ACTIONS(3576), - [anon_sym_static_assert] = ACTIONS(3576), - [anon_sym_concept] = ACTIONS(3576), - [anon_sym_co_return] = ACTIONS(3576), - [anon_sym_co_yield] = ACTIONS(3576), - [anon_sym_R_DQUOTE] = ACTIONS(3578), - [anon_sym_LR_DQUOTE] = ACTIONS(3578), - [anon_sym_uR_DQUOTE] = ACTIONS(3578), - [anon_sym_UR_DQUOTE] = ACTIONS(3578), - [anon_sym_u8R_DQUOTE] = ACTIONS(3578), - [anon_sym_co_await] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_requires] = ACTIONS(3576), - [anon_sym_CARET_CARET] = ACTIONS(3578), - [anon_sym_LBRACK_COLON] = ACTIONS(3578), - [sym_this] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3610), + [aux_sym_preproc_include_token1] = ACTIONS(3610), + [aux_sym_preproc_def_token1] = ACTIONS(3610), + [aux_sym_preproc_if_token1] = ACTIONS(3610), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3610), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3610), + [sym_preproc_directive] = ACTIONS(3610), + [anon_sym_LPAREN2] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_AMP] = ACTIONS(3610), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym___extension__] = ACTIONS(3610), + [anon_sym_typedef] = ACTIONS(3610), + [anon_sym_virtual] = ACTIONS(3610), + [anon_sym_extern] = ACTIONS(3610), + [anon_sym___attribute__] = ACTIONS(3610), + [anon_sym___attribute] = ACTIONS(3610), + [anon_sym_using] = ACTIONS(3610), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3612), + [anon_sym___declspec] = ACTIONS(3610), + [anon_sym___based] = ACTIONS(3610), + [anon_sym___cdecl] = ACTIONS(3610), + [anon_sym___clrcall] = ACTIONS(3610), + [anon_sym___stdcall] = ACTIONS(3610), + [anon_sym___fastcall] = ACTIONS(3610), + [anon_sym___thiscall] = ACTIONS(3610), + [anon_sym___vectorcall] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_signed] = ACTIONS(3610), + [anon_sym_unsigned] = ACTIONS(3610), + [anon_sym_long] = ACTIONS(3610), + [anon_sym_short] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3610), + [anon_sym_static] = ACTIONS(3610), + [anon_sym_register] = ACTIONS(3610), + [anon_sym_inline] = ACTIONS(3610), + [anon_sym___inline] = ACTIONS(3610), + [anon_sym___inline__] = ACTIONS(3610), + [anon_sym___forceinline] = ACTIONS(3610), + [anon_sym_thread_local] = ACTIONS(3610), + [anon_sym___thread] = ACTIONS(3610), + [anon_sym_const] = ACTIONS(3610), + [anon_sym_constexpr] = ACTIONS(3610), + [anon_sym_volatile] = ACTIONS(3610), + [anon_sym_restrict] = ACTIONS(3610), + [anon_sym___restrict__] = ACTIONS(3610), + [anon_sym__Atomic] = ACTIONS(3610), + [anon_sym__Noreturn] = ACTIONS(3610), + [anon_sym_noreturn] = ACTIONS(3610), + [anon_sym__Nonnull] = ACTIONS(3610), + [anon_sym_mutable] = ACTIONS(3610), + [anon_sym_constinit] = ACTIONS(3610), + [anon_sym_consteval] = ACTIONS(3610), + [anon_sym_alignas] = ACTIONS(3610), + [anon_sym__Alignas] = ACTIONS(3610), + [sym_primitive_type] = ACTIONS(3610), + [anon_sym_enum] = ACTIONS(3610), + [anon_sym_class] = ACTIONS(3610), + [anon_sym_struct] = ACTIONS(3610), + [anon_sym_union] = ACTIONS(3610), + [anon_sym_if] = ACTIONS(3610), + [anon_sym_else] = ACTIONS(3610), + [anon_sym_switch] = ACTIONS(3610), + [anon_sym_case] = ACTIONS(3610), + [anon_sym_default] = ACTIONS(3610), + [anon_sym_while] = ACTIONS(3610), + [anon_sym_do] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3610), + [anon_sym_break] = ACTIONS(3610), + [anon_sym_continue] = ACTIONS(3610), + [anon_sym_goto] = ACTIONS(3610), + [anon_sym___try] = ACTIONS(3610), + [anon_sym___leave] = ACTIONS(3610), + [anon_sym_not] = ACTIONS(3610), + [anon_sym_compl] = ACTIONS(3610), + [anon_sym_DASH_DASH] = ACTIONS(3612), + [anon_sym_PLUS_PLUS] = ACTIONS(3612), + [anon_sym_sizeof] = ACTIONS(3610), + [anon_sym___alignof__] = ACTIONS(3610), + [anon_sym___alignof] = ACTIONS(3610), + [anon_sym__alignof] = ACTIONS(3610), + [anon_sym_alignof] = ACTIONS(3610), + [anon_sym__Alignof] = ACTIONS(3610), + [anon_sym_offsetof] = ACTIONS(3610), + [anon_sym__Generic] = ACTIONS(3610), + [anon_sym_typename] = ACTIONS(3610), + [anon_sym_asm] = ACTIONS(3610), + [anon_sym___asm__] = ACTIONS(3610), + [anon_sym___asm] = ACTIONS(3610), + [sym_number_literal] = ACTIONS(3612), + [anon_sym_L_SQUOTE] = ACTIONS(3612), + [anon_sym_u_SQUOTE] = ACTIONS(3612), + [anon_sym_U_SQUOTE] = ACTIONS(3612), + [anon_sym_u8_SQUOTE] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(3612), + [anon_sym_L_DQUOTE] = ACTIONS(3612), + [anon_sym_u_DQUOTE] = ACTIONS(3612), + [anon_sym_U_DQUOTE] = ACTIONS(3612), + [anon_sym_u8_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [sym_true] = ACTIONS(3610), + [sym_false] = ACTIONS(3610), + [anon_sym_NULL] = ACTIONS(3610), + [anon_sym_nullptr] = ACTIONS(3610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3610), + [anon_sym_decltype] = ACTIONS(3610), + [anon_sym_explicit] = ACTIONS(3610), + [anon_sym_export] = ACTIONS(3610), + [anon_sym_import] = ACTIONS(3610), + [anon_sym_template] = ACTIONS(3610), + [anon_sym_operator] = ACTIONS(3610), + [anon_sym_try] = ACTIONS(3610), + [anon_sym_delete] = ACTIONS(3610), + [anon_sym_throw] = ACTIONS(3610), + [anon_sym_namespace] = ACTIONS(3610), + [anon_sym_static_assert] = ACTIONS(3610), + [anon_sym_concept] = ACTIONS(3610), + [anon_sym_co_return] = ACTIONS(3610), + [anon_sym_co_yield] = ACTIONS(3610), + [anon_sym_R_DQUOTE] = ACTIONS(3612), + [anon_sym_LR_DQUOTE] = ACTIONS(3612), + [anon_sym_uR_DQUOTE] = ACTIONS(3612), + [anon_sym_UR_DQUOTE] = ACTIONS(3612), + [anon_sym_u8R_DQUOTE] = ACTIONS(3612), + [anon_sym_co_await] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3610), + [anon_sym_requires] = ACTIONS(3610), + [anon_sym_CARET_CARET] = ACTIONS(3612), + [anon_sym_LBRACK_COLON] = ACTIONS(3612), + [sym_this] = ACTIONS(3610), }, [STATE(677)] = { - [sym_identifier] = ACTIONS(3580), - [aux_sym_preproc_include_token1] = ACTIONS(3580), - [aux_sym_preproc_def_token1] = ACTIONS(3580), - [aux_sym_preproc_if_token1] = ACTIONS(3580), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3580), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3580), - [sym_preproc_directive] = ACTIONS(3580), - [anon_sym_LPAREN2] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3580), - [anon_sym_PLUS] = ACTIONS(3580), - [anon_sym_STAR] = ACTIONS(3582), - [anon_sym_AMP_AMP] = ACTIONS(3582), - [anon_sym_AMP] = ACTIONS(3580), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym___extension__] = ACTIONS(3580), - [anon_sym_typedef] = ACTIONS(3580), - [anon_sym_virtual] = ACTIONS(3580), - [anon_sym_extern] = ACTIONS(3580), - [anon_sym___attribute__] = ACTIONS(3580), - [anon_sym___attribute] = ACTIONS(3580), - [anon_sym_using] = ACTIONS(3580), - [anon_sym_COLON_COLON] = ACTIONS(3582), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), - [anon_sym___declspec] = ACTIONS(3580), - [anon_sym___based] = ACTIONS(3580), - [anon_sym___cdecl] = ACTIONS(3580), - [anon_sym___clrcall] = ACTIONS(3580), - [anon_sym___stdcall] = ACTIONS(3580), - [anon_sym___fastcall] = ACTIONS(3580), - [anon_sym___thiscall] = ACTIONS(3580), - [anon_sym___vectorcall] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_RBRACE] = ACTIONS(3582), - [anon_sym_signed] = ACTIONS(3580), - [anon_sym_unsigned] = ACTIONS(3580), - [anon_sym_long] = ACTIONS(3580), - [anon_sym_short] = ACTIONS(3580), - [anon_sym_LBRACK] = ACTIONS(3580), - [anon_sym_static] = ACTIONS(3580), - [anon_sym_register] = ACTIONS(3580), - [anon_sym_inline] = ACTIONS(3580), - [anon_sym___inline] = ACTIONS(3580), - [anon_sym___inline__] = ACTIONS(3580), - [anon_sym___forceinline] = ACTIONS(3580), - [anon_sym_thread_local] = ACTIONS(3580), - [anon_sym___thread] = ACTIONS(3580), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_constexpr] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_restrict] = ACTIONS(3580), - [anon_sym___restrict__] = ACTIONS(3580), - [anon_sym__Atomic] = ACTIONS(3580), - [anon_sym__Noreturn] = ACTIONS(3580), - [anon_sym_noreturn] = ACTIONS(3580), - [anon_sym__Nonnull] = ACTIONS(3580), - [anon_sym_mutable] = ACTIONS(3580), - [anon_sym_constinit] = ACTIONS(3580), - [anon_sym_consteval] = ACTIONS(3580), - [anon_sym_alignas] = ACTIONS(3580), - [anon_sym__Alignas] = ACTIONS(3580), - [sym_primitive_type] = ACTIONS(3580), - [anon_sym_enum] = ACTIONS(3580), - [anon_sym_class] = ACTIONS(3580), - [anon_sym_struct] = ACTIONS(3580), - [anon_sym_union] = ACTIONS(3580), - [anon_sym_if] = ACTIONS(3580), - [anon_sym_else] = ACTIONS(3580), - [anon_sym_switch] = ACTIONS(3580), - [anon_sym_case] = ACTIONS(3580), - [anon_sym_default] = ACTIONS(3580), - [anon_sym_while] = ACTIONS(3580), - [anon_sym_do] = ACTIONS(3580), - [anon_sym_for] = ACTIONS(3580), - [anon_sym_return] = ACTIONS(3580), - [anon_sym_break] = ACTIONS(3580), - [anon_sym_continue] = ACTIONS(3580), - [anon_sym_goto] = ACTIONS(3580), - [anon_sym___try] = ACTIONS(3580), - [anon_sym___leave] = ACTIONS(3580), - [anon_sym_not] = ACTIONS(3580), - [anon_sym_compl] = ACTIONS(3580), - [anon_sym_DASH_DASH] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_sizeof] = ACTIONS(3580), - [anon_sym___alignof__] = ACTIONS(3580), - [anon_sym___alignof] = ACTIONS(3580), - [anon_sym__alignof] = ACTIONS(3580), - [anon_sym_alignof] = ACTIONS(3580), - [anon_sym__Alignof] = ACTIONS(3580), - [anon_sym_offsetof] = ACTIONS(3580), - [anon_sym__Generic] = ACTIONS(3580), - [anon_sym_typename] = ACTIONS(3580), - [anon_sym_asm] = ACTIONS(3580), - [anon_sym___asm__] = ACTIONS(3580), - [anon_sym___asm] = ACTIONS(3580), - [sym_number_literal] = ACTIONS(3582), - [anon_sym_L_SQUOTE] = ACTIONS(3582), - [anon_sym_u_SQUOTE] = ACTIONS(3582), - [anon_sym_U_SQUOTE] = ACTIONS(3582), - [anon_sym_u8_SQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_L_DQUOTE] = ACTIONS(3582), - [anon_sym_u_DQUOTE] = ACTIONS(3582), - [anon_sym_U_DQUOTE] = ACTIONS(3582), - [anon_sym_u8_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [sym_true] = ACTIONS(3580), - [sym_false] = ACTIONS(3580), - [anon_sym_NULL] = ACTIONS(3580), - [anon_sym_nullptr] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3580), - [anon_sym_decltype] = ACTIONS(3580), - [anon_sym_explicit] = ACTIONS(3580), - [anon_sym_export] = ACTIONS(3580), - [anon_sym_import] = ACTIONS(3580), - [anon_sym_template] = ACTIONS(3580), - [anon_sym_operator] = ACTIONS(3580), - [anon_sym_try] = ACTIONS(3580), - [anon_sym_delete] = ACTIONS(3580), - [anon_sym_throw] = ACTIONS(3580), - [anon_sym_namespace] = ACTIONS(3580), - [anon_sym_static_assert] = ACTIONS(3580), - [anon_sym_concept] = ACTIONS(3580), - [anon_sym_co_return] = ACTIONS(3580), - [anon_sym_co_yield] = ACTIONS(3580), - [anon_sym_R_DQUOTE] = ACTIONS(3582), - [anon_sym_LR_DQUOTE] = ACTIONS(3582), - [anon_sym_uR_DQUOTE] = ACTIONS(3582), - [anon_sym_UR_DQUOTE] = ACTIONS(3582), - [anon_sym_u8R_DQUOTE] = ACTIONS(3582), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3580), - [anon_sym_requires] = ACTIONS(3580), - [anon_sym_CARET_CARET] = ACTIONS(3582), - [anon_sym_LBRACK_COLON] = ACTIONS(3582), - [sym_this] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_include_token1] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token2] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym___cdecl] = ACTIONS(3921), + [anon_sym___clrcall] = ACTIONS(3921), + [anon_sym___stdcall] = ACTIONS(3921), + [anon_sym___fastcall] = ACTIONS(3921), + [anon_sym___thiscall] = ACTIONS(3921), + [anon_sym___vectorcall] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3923), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_switch] = ACTIONS(3921), + [anon_sym_case] = ACTIONS(3921), + [anon_sym_default] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_break] = ACTIONS(3921), + [anon_sym_continue] = ACTIONS(3921), + [anon_sym_goto] = ACTIONS(3921), + [anon_sym___try] = ACTIONS(3921), + [anon_sym___leave] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(3921), + [anon_sym_compl] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3923), + [anon_sym_PLUS_PLUS] = ACTIONS(3923), + [anon_sym_sizeof] = ACTIONS(3921), + [anon_sym___alignof__] = ACTIONS(3921), + [anon_sym___alignof] = ACTIONS(3921), + [anon_sym__alignof] = ACTIONS(3921), + [anon_sym_alignof] = ACTIONS(3921), + [anon_sym__Alignof] = ACTIONS(3921), + [anon_sym_offsetof] = ACTIONS(3921), + [anon_sym__Generic] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [anon_sym_asm] = ACTIONS(3921), + [anon_sym___asm__] = ACTIONS(3921), + [anon_sym___asm] = ACTIONS(3921), + [sym_number_literal] = ACTIONS(3923), + [anon_sym_L_SQUOTE] = ACTIONS(3923), + [anon_sym_u_SQUOTE] = ACTIONS(3923), + [anon_sym_U_SQUOTE] = ACTIONS(3923), + [anon_sym_u8_SQUOTE] = ACTIONS(3923), + [anon_sym_SQUOTE] = ACTIONS(3923), + [anon_sym_L_DQUOTE] = ACTIONS(3923), + [anon_sym_u_DQUOTE] = ACTIONS(3923), + [anon_sym_U_DQUOTE] = ACTIONS(3923), + [anon_sym_u8_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE] = ACTIONS(3923), + [sym_true] = ACTIONS(3921), + [sym_false] = ACTIONS(3921), + [anon_sym_NULL] = ACTIONS(3921), + [anon_sym_nullptr] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_export] = ACTIONS(3921), + [anon_sym_module] = ACTIONS(3921), + [anon_sym_import] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_delete] = ACTIONS(3921), + [anon_sym_throw] = ACTIONS(3921), + [anon_sym_namespace] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_concept] = ACTIONS(3921), + [anon_sym_co_return] = ACTIONS(3921), + [anon_sym_co_yield] = ACTIONS(3921), + [anon_sym_R_DQUOTE] = ACTIONS(3923), + [anon_sym_LR_DQUOTE] = ACTIONS(3923), + [anon_sym_uR_DQUOTE] = ACTIONS(3923), + [anon_sym_UR_DQUOTE] = ACTIONS(3923), + [anon_sym_u8R_DQUOTE] = ACTIONS(3923), + [anon_sym_co_await] = ACTIONS(3921), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_requires] = ACTIONS(3921), + [anon_sym_CARET_CARET] = ACTIONS(3923), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), + [sym_this] = ACTIONS(3921), }, [STATE(678)] = { - [sym_identifier] = ACTIONS(4132), - [aux_sym_preproc_include_token1] = ACTIONS(4132), - [aux_sym_preproc_def_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token2] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), - [sym_preproc_directive] = ACTIONS(4132), - [anon_sym_LPAREN2] = ACTIONS(4134), - [anon_sym_BANG] = ACTIONS(4134), - [anon_sym_TILDE] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym___extension__] = ACTIONS(4132), - [anon_sym_typedef] = ACTIONS(4132), - [anon_sym_virtual] = ACTIONS(4132), - [anon_sym_extern] = ACTIONS(4132), - [anon_sym___attribute__] = ACTIONS(4132), - [anon_sym___attribute] = ACTIONS(4132), - [anon_sym_using] = ACTIONS(4132), - [anon_sym_COLON_COLON] = ACTIONS(4134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), - [anon_sym___declspec] = ACTIONS(4132), - [anon_sym___based] = ACTIONS(4132), - [anon_sym___cdecl] = ACTIONS(4132), - [anon_sym___clrcall] = ACTIONS(4132), - [anon_sym___stdcall] = ACTIONS(4132), - [anon_sym___fastcall] = ACTIONS(4132), - [anon_sym___thiscall] = ACTIONS(4132), - [anon_sym___vectorcall] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4134), - [anon_sym_signed] = ACTIONS(4132), - [anon_sym_unsigned] = ACTIONS(4132), - [anon_sym_long] = ACTIONS(4132), - [anon_sym_short] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_static] = ACTIONS(4132), - [anon_sym_register] = ACTIONS(4132), - [anon_sym_inline] = ACTIONS(4132), - [anon_sym___inline] = ACTIONS(4132), - [anon_sym___inline__] = ACTIONS(4132), - [anon_sym___forceinline] = ACTIONS(4132), - [anon_sym_thread_local] = ACTIONS(4132), - [anon_sym___thread] = ACTIONS(4132), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_constexpr] = ACTIONS(4132), - [anon_sym_volatile] = ACTIONS(4132), - [anon_sym_restrict] = ACTIONS(4132), - [anon_sym___restrict__] = ACTIONS(4132), - [anon_sym__Atomic] = ACTIONS(4132), - [anon_sym__Noreturn] = ACTIONS(4132), - [anon_sym_noreturn] = ACTIONS(4132), - [anon_sym__Nonnull] = ACTIONS(4132), - [anon_sym_mutable] = ACTIONS(4132), - [anon_sym_constinit] = ACTIONS(4132), - [anon_sym_consteval] = ACTIONS(4132), - [anon_sym_alignas] = ACTIONS(4132), - [anon_sym__Alignas] = ACTIONS(4132), - [sym_primitive_type] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_class] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_switch] = ACTIONS(4132), - [anon_sym_case] = ACTIONS(4132), - [anon_sym_default] = ACTIONS(4132), - [anon_sym_while] = ACTIONS(4132), - [anon_sym_do] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym___try] = ACTIONS(4132), - [anon_sym___leave] = ACTIONS(4132), - [anon_sym_not] = ACTIONS(4132), - [anon_sym_compl] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_sizeof] = ACTIONS(4132), - [anon_sym___alignof__] = ACTIONS(4132), - [anon_sym___alignof] = ACTIONS(4132), - [anon_sym__alignof] = ACTIONS(4132), - [anon_sym_alignof] = ACTIONS(4132), - [anon_sym__Alignof] = ACTIONS(4132), - [anon_sym_offsetof] = ACTIONS(4132), - [anon_sym__Generic] = ACTIONS(4132), - [anon_sym_typename] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [anon_sym___asm] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4134), - [anon_sym_u_SQUOTE] = ACTIONS(4134), - [anon_sym_U_SQUOTE] = ACTIONS(4134), - [anon_sym_u8_SQUOTE] = ACTIONS(4134), - [anon_sym_SQUOTE] = ACTIONS(4134), - [anon_sym_L_DQUOTE] = ACTIONS(4134), - [anon_sym_u_DQUOTE] = ACTIONS(4134), - [anon_sym_U_DQUOTE] = ACTIONS(4134), - [anon_sym_u8_DQUOTE] = ACTIONS(4134), - [anon_sym_DQUOTE] = ACTIONS(4134), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [anon_sym_NULL] = ACTIONS(4132), - [anon_sym_nullptr] = ACTIONS(4132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4132), - [anon_sym_decltype] = ACTIONS(4132), - [anon_sym_explicit] = ACTIONS(4132), - [anon_sym_export] = ACTIONS(4132), - [anon_sym_module] = ACTIONS(4132), - [anon_sym_import] = ACTIONS(4132), - [anon_sym_template] = ACTIONS(4132), - [anon_sym_operator] = ACTIONS(4132), - [anon_sym_try] = ACTIONS(4132), - [anon_sym_delete] = ACTIONS(4132), - [anon_sym_throw] = ACTIONS(4132), - [anon_sym_namespace] = ACTIONS(4132), - [anon_sym_static_assert] = ACTIONS(4132), - [anon_sym_concept] = ACTIONS(4132), - [anon_sym_co_return] = ACTIONS(4132), - [anon_sym_co_yield] = ACTIONS(4132), - [anon_sym_R_DQUOTE] = ACTIONS(4134), - [anon_sym_LR_DQUOTE] = ACTIONS(4134), - [anon_sym_uR_DQUOTE] = ACTIONS(4134), - [anon_sym_UR_DQUOTE] = ACTIONS(4134), - [anon_sym_u8R_DQUOTE] = ACTIONS(4134), - [anon_sym_co_await] = ACTIONS(4132), - [anon_sym_new] = ACTIONS(4132), - [anon_sym_requires] = ACTIONS(4132), - [anon_sym_CARET_CARET] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4134), - [sym_this] = ACTIONS(4132), + [sym_identifier] = ACTIONS(3616), + [aux_sym_preproc_include_token1] = ACTIONS(3616), + [aux_sym_preproc_def_token1] = ACTIONS(3616), + [aux_sym_preproc_if_token1] = ACTIONS(3616), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3616), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3616), + [sym_preproc_directive] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_AMP_AMP] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym___extension__] = ACTIONS(3616), + [anon_sym_typedef] = ACTIONS(3616), + [anon_sym_virtual] = ACTIONS(3616), + [anon_sym_extern] = ACTIONS(3616), + [anon_sym___attribute__] = ACTIONS(3616), + [anon_sym___attribute] = ACTIONS(3616), + [anon_sym_using] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3618), + [anon_sym___declspec] = ACTIONS(3616), + [anon_sym___based] = ACTIONS(3616), + [anon_sym___cdecl] = ACTIONS(3616), + [anon_sym___clrcall] = ACTIONS(3616), + [anon_sym___stdcall] = ACTIONS(3616), + [anon_sym___fastcall] = ACTIONS(3616), + [anon_sym___thiscall] = ACTIONS(3616), + [anon_sym___vectorcall] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_RBRACE] = ACTIONS(3618), + [anon_sym_signed] = ACTIONS(3616), + [anon_sym_unsigned] = ACTIONS(3616), + [anon_sym_long] = ACTIONS(3616), + [anon_sym_short] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_register] = ACTIONS(3616), + [anon_sym_inline] = ACTIONS(3616), + [anon_sym___inline] = ACTIONS(3616), + [anon_sym___inline__] = ACTIONS(3616), + [anon_sym___forceinline] = ACTIONS(3616), + [anon_sym_thread_local] = ACTIONS(3616), + [anon_sym___thread] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_constexpr] = ACTIONS(3616), + [anon_sym_volatile] = ACTIONS(3616), + [anon_sym_restrict] = ACTIONS(3616), + [anon_sym___restrict__] = ACTIONS(3616), + [anon_sym__Atomic] = ACTIONS(3616), + [anon_sym__Noreturn] = ACTIONS(3616), + [anon_sym_noreturn] = ACTIONS(3616), + [anon_sym__Nonnull] = ACTIONS(3616), + [anon_sym_mutable] = ACTIONS(3616), + [anon_sym_constinit] = ACTIONS(3616), + [anon_sym_consteval] = ACTIONS(3616), + [anon_sym_alignas] = ACTIONS(3616), + [anon_sym__Alignas] = ACTIONS(3616), + [sym_primitive_type] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3616), + [anon_sym_union] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_case] = ACTIONS(3616), + [anon_sym_default] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_goto] = ACTIONS(3616), + [anon_sym___try] = ACTIONS(3616), + [anon_sym___leave] = ACTIONS(3616), + [anon_sym_not] = ACTIONS(3616), + [anon_sym_compl] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(3616), + [anon_sym___alignof] = ACTIONS(3616), + [anon_sym__alignof] = ACTIONS(3616), + [anon_sym_alignof] = ACTIONS(3616), + [anon_sym__Alignof] = ACTIONS(3616), + [anon_sym_offsetof] = ACTIONS(3616), + [anon_sym__Generic] = ACTIONS(3616), + [anon_sym_typename] = ACTIONS(3616), + [anon_sym_asm] = ACTIONS(3616), + [anon_sym___asm__] = ACTIONS(3616), + [anon_sym___asm] = ACTIONS(3616), + [sym_number_literal] = ACTIONS(3618), + [anon_sym_L_SQUOTE] = ACTIONS(3618), + [anon_sym_u_SQUOTE] = ACTIONS(3618), + [anon_sym_U_SQUOTE] = ACTIONS(3618), + [anon_sym_u8_SQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_L_DQUOTE] = ACTIONS(3618), + [anon_sym_u_DQUOTE] = ACTIONS(3618), + [anon_sym_U_DQUOTE] = ACTIONS(3618), + [anon_sym_u8_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [anon_sym_NULL] = ACTIONS(3616), + [anon_sym_nullptr] = ACTIONS(3616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3616), + [anon_sym_decltype] = ACTIONS(3616), + [anon_sym_explicit] = ACTIONS(3616), + [anon_sym_export] = ACTIONS(3616), + [anon_sym_import] = ACTIONS(3616), + [anon_sym_template] = ACTIONS(3616), + [anon_sym_operator] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_namespace] = ACTIONS(3616), + [anon_sym_static_assert] = ACTIONS(3616), + [anon_sym_concept] = ACTIONS(3616), + [anon_sym_co_return] = ACTIONS(3616), + [anon_sym_co_yield] = ACTIONS(3616), + [anon_sym_R_DQUOTE] = ACTIONS(3618), + [anon_sym_LR_DQUOTE] = ACTIONS(3618), + [anon_sym_uR_DQUOTE] = ACTIONS(3618), + [anon_sym_UR_DQUOTE] = ACTIONS(3618), + [anon_sym_u8R_DQUOTE] = ACTIONS(3618), + [anon_sym_co_await] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_requires] = ACTIONS(3616), + [anon_sym_CARET_CARET] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3618), + [sym_this] = ACTIONS(3616), }, [STATE(679)] = { - [sym_identifier] = ACTIONS(4136), - [aux_sym_preproc_include_token1] = ACTIONS(4136), - [aux_sym_preproc_def_token1] = ACTIONS(4136), - [aux_sym_preproc_if_token1] = ACTIONS(4136), - [aux_sym_preproc_if_token2] = ACTIONS(4136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4136), - [sym_preproc_directive] = ACTIONS(4136), - [anon_sym_LPAREN2] = ACTIONS(4138), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_TILDE] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4138), - [anon_sym_AMP_AMP] = ACTIONS(4138), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_SEMI] = ACTIONS(4138), - [anon_sym___extension__] = ACTIONS(4136), - [anon_sym_typedef] = ACTIONS(4136), - [anon_sym_virtual] = ACTIONS(4136), - [anon_sym_extern] = ACTIONS(4136), - [anon_sym___attribute__] = ACTIONS(4136), - [anon_sym___attribute] = ACTIONS(4136), - [anon_sym_using] = ACTIONS(4136), - [anon_sym_COLON_COLON] = ACTIONS(4138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4138), - [anon_sym___declspec] = ACTIONS(4136), - [anon_sym___based] = ACTIONS(4136), - [anon_sym___cdecl] = ACTIONS(4136), - [anon_sym___clrcall] = ACTIONS(4136), - [anon_sym___stdcall] = ACTIONS(4136), - [anon_sym___fastcall] = ACTIONS(4136), - [anon_sym___thiscall] = ACTIONS(4136), - [anon_sym___vectorcall] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4138), - [anon_sym_signed] = ACTIONS(4136), - [anon_sym_unsigned] = ACTIONS(4136), - [anon_sym_long] = ACTIONS(4136), - [anon_sym_short] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_static] = ACTIONS(4136), - [anon_sym_register] = ACTIONS(4136), - [anon_sym_inline] = ACTIONS(4136), - [anon_sym___inline] = ACTIONS(4136), - [anon_sym___inline__] = ACTIONS(4136), - [anon_sym___forceinline] = ACTIONS(4136), - [anon_sym_thread_local] = ACTIONS(4136), - [anon_sym___thread] = ACTIONS(4136), - [anon_sym_const] = ACTIONS(4136), - [anon_sym_constexpr] = ACTIONS(4136), - [anon_sym_volatile] = ACTIONS(4136), - [anon_sym_restrict] = ACTIONS(4136), - [anon_sym___restrict__] = ACTIONS(4136), - [anon_sym__Atomic] = ACTIONS(4136), - [anon_sym__Noreturn] = ACTIONS(4136), - [anon_sym_noreturn] = ACTIONS(4136), - [anon_sym__Nonnull] = ACTIONS(4136), - [anon_sym_mutable] = ACTIONS(4136), - [anon_sym_constinit] = ACTIONS(4136), - [anon_sym_consteval] = ACTIONS(4136), - [anon_sym_alignas] = ACTIONS(4136), - [anon_sym__Alignas] = ACTIONS(4136), - [sym_primitive_type] = ACTIONS(4136), - [anon_sym_enum] = ACTIONS(4136), - [anon_sym_class] = ACTIONS(4136), - [anon_sym_struct] = ACTIONS(4136), - [anon_sym_union] = ACTIONS(4136), - [anon_sym_if] = ACTIONS(4136), - [anon_sym_switch] = ACTIONS(4136), - [anon_sym_case] = ACTIONS(4136), - [anon_sym_default] = ACTIONS(4136), - [anon_sym_while] = ACTIONS(4136), - [anon_sym_do] = ACTIONS(4136), - [anon_sym_for] = ACTIONS(4136), - [anon_sym_return] = ACTIONS(4136), - [anon_sym_break] = ACTIONS(4136), - [anon_sym_continue] = ACTIONS(4136), - [anon_sym_goto] = ACTIONS(4136), - [anon_sym___try] = ACTIONS(4136), - [anon_sym___leave] = ACTIONS(4136), - [anon_sym_not] = ACTIONS(4136), - [anon_sym_compl] = ACTIONS(4136), - [anon_sym_DASH_DASH] = ACTIONS(4138), - [anon_sym_PLUS_PLUS] = ACTIONS(4138), - [anon_sym_sizeof] = ACTIONS(4136), - [anon_sym___alignof__] = ACTIONS(4136), - [anon_sym___alignof] = ACTIONS(4136), - [anon_sym__alignof] = ACTIONS(4136), - [anon_sym_alignof] = ACTIONS(4136), - [anon_sym__Alignof] = ACTIONS(4136), - [anon_sym_offsetof] = ACTIONS(4136), - [anon_sym__Generic] = ACTIONS(4136), - [anon_sym_typename] = ACTIONS(4136), - [anon_sym_asm] = ACTIONS(4136), - [anon_sym___asm__] = ACTIONS(4136), - [anon_sym___asm] = ACTIONS(4136), - [sym_number_literal] = ACTIONS(4138), - [anon_sym_L_SQUOTE] = ACTIONS(4138), - [anon_sym_u_SQUOTE] = ACTIONS(4138), - [anon_sym_U_SQUOTE] = ACTIONS(4138), - [anon_sym_u8_SQUOTE] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4138), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4136), - [sym_false] = ACTIONS(4136), - [anon_sym_NULL] = ACTIONS(4136), - [anon_sym_nullptr] = ACTIONS(4136), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4136), - [anon_sym_decltype] = ACTIONS(4136), - [anon_sym_explicit] = ACTIONS(4136), - [anon_sym_export] = ACTIONS(4136), - [anon_sym_module] = ACTIONS(4136), - [anon_sym_import] = ACTIONS(4136), - [anon_sym_template] = ACTIONS(4136), - [anon_sym_operator] = ACTIONS(4136), - [anon_sym_try] = ACTIONS(4136), - [anon_sym_delete] = ACTIONS(4136), - [anon_sym_throw] = ACTIONS(4136), - [anon_sym_namespace] = ACTIONS(4136), - [anon_sym_static_assert] = ACTIONS(4136), - [anon_sym_concept] = ACTIONS(4136), - [anon_sym_co_return] = ACTIONS(4136), - [anon_sym_co_yield] = ACTIONS(4136), - [anon_sym_R_DQUOTE] = ACTIONS(4138), - [anon_sym_LR_DQUOTE] = ACTIONS(4138), - [anon_sym_uR_DQUOTE] = ACTIONS(4138), - [anon_sym_UR_DQUOTE] = ACTIONS(4138), - [anon_sym_u8R_DQUOTE] = ACTIONS(4138), - [anon_sym_co_await] = ACTIONS(4136), - [anon_sym_new] = ACTIONS(4136), - [anon_sym_requires] = ACTIONS(4136), - [anon_sym_CARET_CARET] = ACTIONS(4138), - [anon_sym_LBRACK_COLON] = ACTIONS(4138), - [sym_this] = ACTIONS(4136), + [sym_identifier] = ACTIONS(3620), + [aux_sym_preproc_include_token1] = ACTIONS(3620), + [aux_sym_preproc_def_token1] = ACTIONS(3620), + [aux_sym_preproc_if_token1] = ACTIONS(3620), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3620), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3620), + [sym_preproc_directive] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [anon_sym_AMP_AMP] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3620), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym___extension__] = ACTIONS(3620), + [anon_sym_typedef] = ACTIONS(3620), + [anon_sym_virtual] = ACTIONS(3620), + [anon_sym_extern] = ACTIONS(3620), + [anon_sym___attribute__] = ACTIONS(3620), + [anon_sym___attribute] = ACTIONS(3620), + [anon_sym_using] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3622), + [anon_sym___declspec] = ACTIONS(3620), + [anon_sym___based] = ACTIONS(3620), + [anon_sym___cdecl] = ACTIONS(3620), + [anon_sym___clrcall] = ACTIONS(3620), + [anon_sym___stdcall] = ACTIONS(3620), + [anon_sym___fastcall] = ACTIONS(3620), + [anon_sym___thiscall] = ACTIONS(3620), + [anon_sym___vectorcall] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_RBRACE] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3620), + [anon_sym_unsigned] = ACTIONS(3620), + [anon_sym_long] = ACTIONS(3620), + [anon_sym_short] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_register] = ACTIONS(3620), + [anon_sym_inline] = ACTIONS(3620), + [anon_sym___inline] = ACTIONS(3620), + [anon_sym___inline__] = ACTIONS(3620), + [anon_sym___forceinline] = ACTIONS(3620), + [anon_sym_thread_local] = ACTIONS(3620), + [anon_sym___thread] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_constexpr] = ACTIONS(3620), + [anon_sym_volatile] = ACTIONS(3620), + [anon_sym_restrict] = ACTIONS(3620), + [anon_sym___restrict__] = ACTIONS(3620), + [anon_sym__Atomic] = ACTIONS(3620), + [anon_sym__Noreturn] = ACTIONS(3620), + [anon_sym_noreturn] = ACTIONS(3620), + [anon_sym__Nonnull] = ACTIONS(3620), + [anon_sym_mutable] = ACTIONS(3620), + [anon_sym_constinit] = ACTIONS(3620), + [anon_sym_consteval] = ACTIONS(3620), + [anon_sym_alignas] = ACTIONS(3620), + [anon_sym__Alignas] = ACTIONS(3620), + [sym_primitive_type] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_struct] = ACTIONS(3620), + [anon_sym_union] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_else] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_case] = ACTIONS(3620), + [anon_sym_default] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_goto] = ACTIONS(3620), + [anon_sym___try] = ACTIONS(3620), + [anon_sym___leave] = ACTIONS(3620), + [anon_sym_not] = ACTIONS(3620), + [anon_sym_compl] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_sizeof] = ACTIONS(3620), + [anon_sym___alignof__] = ACTIONS(3620), + [anon_sym___alignof] = ACTIONS(3620), + [anon_sym__alignof] = ACTIONS(3620), + [anon_sym_alignof] = ACTIONS(3620), + [anon_sym__Alignof] = ACTIONS(3620), + [anon_sym_offsetof] = ACTIONS(3620), + [anon_sym__Generic] = ACTIONS(3620), + [anon_sym_typename] = ACTIONS(3620), + [anon_sym_asm] = ACTIONS(3620), + [anon_sym___asm__] = ACTIONS(3620), + [anon_sym___asm] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [anon_sym_L_SQUOTE] = ACTIONS(3622), + [anon_sym_u_SQUOTE] = ACTIONS(3622), + [anon_sym_U_SQUOTE] = ACTIONS(3622), + [anon_sym_u8_SQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [anon_sym_NULL] = ACTIONS(3620), + [anon_sym_nullptr] = ACTIONS(3620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3620), + [anon_sym_decltype] = ACTIONS(3620), + [anon_sym_explicit] = ACTIONS(3620), + [anon_sym_export] = ACTIONS(3620), + [anon_sym_import] = ACTIONS(3620), + [anon_sym_template] = ACTIONS(3620), + [anon_sym_operator] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_namespace] = ACTIONS(3620), + [anon_sym_static_assert] = ACTIONS(3620), + [anon_sym_concept] = ACTIONS(3620), + [anon_sym_co_return] = ACTIONS(3620), + [anon_sym_co_yield] = ACTIONS(3620), + [anon_sym_R_DQUOTE] = ACTIONS(3622), + [anon_sym_LR_DQUOTE] = ACTIONS(3622), + [anon_sym_uR_DQUOTE] = ACTIONS(3622), + [anon_sym_UR_DQUOTE] = ACTIONS(3622), + [anon_sym_u8R_DQUOTE] = ACTIONS(3622), + [anon_sym_co_await] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_requires] = ACTIONS(3620), + [anon_sym_CARET_CARET] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3622), + [sym_this] = ACTIONS(3620), }, [STATE(680)] = { - [sym_identifier] = ACTIONS(4140), - [aux_sym_preproc_include_token1] = ACTIONS(4140), - [aux_sym_preproc_def_token1] = ACTIONS(4140), - [aux_sym_preproc_if_token1] = ACTIONS(4140), - [aux_sym_preproc_if_token2] = ACTIONS(4140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4140), - [sym_preproc_directive] = ACTIONS(4140), - [anon_sym_LPAREN2] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4142), - [anon_sym_TILDE] = ACTIONS(4142), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_AMP] = ACTIONS(4140), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym___extension__] = ACTIONS(4140), - [anon_sym_typedef] = ACTIONS(4140), - [anon_sym_virtual] = ACTIONS(4140), - [anon_sym_extern] = ACTIONS(4140), - [anon_sym___attribute__] = ACTIONS(4140), - [anon_sym___attribute] = ACTIONS(4140), - [anon_sym_using] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4142), - [anon_sym___declspec] = ACTIONS(4140), - [anon_sym___based] = ACTIONS(4140), - [anon_sym___cdecl] = ACTIONS(4140), - [anon_sym___clrcall] = ACTIONS(4140), - [anon_sym___stdcall] = ACTIONS(4140), - [anon_sym___fastcall] = ACTIONS(4140), - [anon_sym___thiscall] = ACTIONS(4140), - [anon_sym___vectorcall] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_signed] = ACTIONS(4140), - [anon_sym_unsigned] = ACTIONS(4140), - [anon_sym_long] = ACTIONS(4140), - [anon_sym_short] = ACTIONS(4140), - [anon_sym_LBRACK] = ACTIONS(4140), - [anon_sym_static] = ACTIONS(4140), - [anon_sym_register] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym___inline] = ACTIONS(4140), - [anon_sym___inline__] = ACTIONS(4140), - [anon_sym___forceinline] = ACTIONS(4140), - [anon_sym_thread_local] = ACTIONS(4140), - [anon_sym___thread] = ACTIONS(4140), - [anon_sym_const] = ACTIONS(4140), - [anon_sym_constexpr] = ACTIONS(4140), - [anon_sym_volatile] = ACTIONS(4140), - [anon_sym_restrict] = ACTIONS(4140), - [anon_sym___restrict__] = ACTIONS(4140), - [anon_sym__Atomic] = ACTIONS(4140), - [anon_sym__Noreturn] = ACTIONS(4140), - [anon_sym_noreturn] = ACTIONS(4140), - [anon_sym__Nonnull] = ACTIONS(4140), - [anon_sym_mutable] = ACTIONS(4140), - [anon_sym_constinit] = ACTIONS(4140), - [anon_sym_consteval] = ACTIONS(4140), - [anon_sym_alignas] = ACTIONS(4140), - [anon_sym__Alignas] = ACTIONS(4140), - [sym_primitive_type] = ACTIONS(4140), - [anon_sym_enum] = ACTIONS(4140), - [anon_sym_class] = ACTIONS(4140), - [anon_sym_struct] = ACTIONS(4140), - [anon_sym_union] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_switch] = ACTIONS(4140), - [anon_sym_case] = ACTIONS(4140), - [anon_sym_default] = ACTIONS(4140), - [anon_sym_while] = ACTIONS(4140), - [anon_sym_do] = ACTIONS(4140), - [anon_sym_for] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_goto] = ACTIONS(4140), - [anon_sym___try] = ACTIONS(4140), - [anon_sym___leave] = ACTIONS(4140), - [anon_sym_not] = ACTIONS(4140), - [anon_sym_compl] = ACTIONS(4140), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_sizeof] = ACTIONS(4140), - [anon_sym___alignof__] = ACTIONS(4140), - [anon_sym___alignof] = ACTIONS(4140), - [anon_sym__alignof] = ACTIONS(4140), - [anon_sym_alignof] = ACTIONS(4140), - [anon_sym__Alignof] = ACTIONS(4140), - [anon_sym_offsetof] = ACTIONS(4140), - [anon_sym__Generic] = ACTIONS(4140), - [anon_sym_typename] = ACTIONS(4140), - [anon_sym_asm] = ACTIONS(4140), - [anon_sym___asm__] = ACTIONS(4140), - [anon_sym___asm] = ACTIONS(4140), - [sym_number_literal] = ACTIONS(4142), - [anon_sym_L_SQUOTE] = ACTIONS(4142), - [anon_sym_u_SQUOTE] = ACTIONS(4142), - [anon_sym_U_SQUOTE] = ACTIONS(4142), - [anon_sym_u8_SQUOTE] = ACTIONS(4142), - [anon_sym_SQUOTE] = ACTIONS(4142), - [anon_sym_L_DQUOTE] = ACTIONS(4142), - [anon_sym_u_DQUOTE] = ACTIONS(4142), - [anon_sym_U_DQUOTE] = ACTIONS(4142), - [anon_sym_u8_DQUOTE] = ACTIONS(4142), - [anon_sym_DQUOTE] = ACTIONS(4142), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4140), - [anon_sym_nullptr] = ACTIONS(4140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4140), - [anon_sym_decltype] = ACTIONS(4140), - [anon_sym_explicit] = ACTIONS(4140), - [anon_sym_export] = ACTIONS(4140), - [anon_sym_module] = ACTIONS(4140), - [anon_sym_import] = ACTIONS(4140), - [anon_sym_template] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_delete] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_namespace] = ACTIONS(4140), - [anon_sym_static_assert] = ACTIONS(4140), - [anon_sym_concept] = ACTIONS(4140), - [anon_sym_co_return] = ACTIONS(4140), - [anon_sym_co_yield] = ACTIONS(4140), - [anon_sym_R_DQUOTE] = ACTIONS(4142), - [anon_sym_LR_DQUOTE] = ACTIONS(4142), - [anon_sym_uR_DQUOTE] = ACTIONS(4142), - [anon_sym_UR_DQUOTE] = ACTIONS(4142), - [anon_sym_u8R_DQUOTE] = ACTIONS(4142), - [anon_sym_co_await] = ACTIONS(4140), - [anon_sym_new] = ACTIONS(4140), - [anon_sym_requires] = ACTIONS(4140), - [anon_sym_CARET_CARET] = ACTIONS(4142), - [anon_sym_LBRACK_COLON] = ACTIONS(4142), - [sym_this] = ACTIONS(4140), + [sym_identifier] = ACTIONS(3624), + [aux_sym_preproc_include_token1] = ACTIONS(3624), + [aux_sym_preproc_def_token1] = ACTIONS(3624), + [aux_sym_preproc_if_token1] = ACTIONS(3624), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3624), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3624), + [sym_preproc_directive] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3626), + [anon_sym_AMP_AMP] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3624), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym___extension__] = ACTIONS(3624), + [anon_sym_typedef] = ACTIONS(3624), + [anon_sym_virtual] = ACTIONS(3624), + [anon_sym_extern] = ACTIONS(3624), + [anon_sym___attribute__] = ACTIONS(3624), + [anon_sym___attribute] = ACTIONS(3624), + [anon_sym_using] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3626), + [anon_sym___declspec] = ACTIONS(3624), + [anon_sym___based] = ACTIONS(3624), + [anon_sym___cdecl] = ACTIONS(3624), + [anon_sym___clrcall] = ACTIONS(3624), + [anon_sym___stdcall] = ACTIONS(3624), + [anon_sym___fastcall] = ACTIONS(3624), + [anon_sym___thiscall] = ACTIONS(3624), + [anon_sym___vectorcall] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_RBRACE] = ACTIONS(3626), + [anon_sym_signed] = ACTIONS(3624), + [anon_sym_unsigned] = ACTIONS(3624), + [anon_sym_long] = ACTIONS(3624), + [anon_sym_short] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_register] = ACTIONS(3624), + [anon_sym_inline] = ACTIONS(3624), + [anon_sym___inline] = ACTIONS(3624), + [anon_sym___inline__] = ACTIONS(3624), + [anon_sym___forceinline] = ACTIONS(3624), + [anon_sym_thread_local] = ACTIONS(3624), + [anon_sym___thread] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_constexpr] = ACTIONS(3624), + [anon_sym_volatile] = ACTIONS(3624), + [anon_sym_restrict] = ACTIONS(3624), + [anon_sym___restrict__] = ACTIONS(3624), + [anon_sym__Atomic] = ACTIONS(3624), + [anon_sym__Noreturn] = ACTIONS(3624), + [anon_sym_noreturn] = ACTIONS(3624), + [anon_sym__Nonnull] = ACTIONS(3624), + [anon_sym_mutable] = ACTIONS(3624), + [anon_sym_constinit] = ACTIONS(3624), + [anon_sym_consteval] = ACTIONS(3624), + [anon_sym_alignas] = ACTIONS(3624), + [anon_sym__Alignas] = ACTIONS(3624), + [sym_primitive_type] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_struct] = ACTIONS(3624), + [anon_sym_union] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_case] = ACTIONS(3624), + [anon_sym_default] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_goto] = ACTIONS(3624), + [anon_sym___try] = ACTIONS(3624), + [anon_sym___leave] = ACTIONS(3624), + [anon_sym_not] = ACTIONS(3624), + [anon_sym_compl] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_sizeof] = ACTIONS(3624), + [anon_sym___alignof__] = ACTIONS(3624), + [anon_sym___alignof] = ACTIONS(3624), + [anon_sym__alignof] = ACTIONS(3624), + [anon_sym_alignof] = ACTIONS(3624), + [anon_sym__Alignof] = ACTIONS(3624), + [anon_sym_offsetof] = ACTIONS(3624), + [anon_sym__Generic] = ACTIONS(3624), + [anon_sym_typename] = ACTIONS(3624), + [anon_sym_asm] = ACTIONS(3624), + [anon_sym___asm__] = ACTIONS(3624), + [anon_sym___asm] = ACTIONS(3624), + [sym_number_literal] = ACTIONS(3626), + [anon_sym_L_SQUOTE] = ACTIONS(3626), + [anon_sym_u_SQUOTE] = ACTIONS(3626), + [anon_sym_U_SQUOTE] = ACTIONS(3626), + [anon_sym_u8_SQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_L_DQUOTE] = ACTIONS(3626), + [anon_sym_u_DQUOTE] = ACTIONS(3626), + [anon_sym_U_DQUOTE] = ACTIONS(3626), + [anon_sym_u8_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [anon_sym_NULL] = ACTIONS(3624), + [anon_sym_nullptr] = ACTIONS(3624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3624), + [anon_sym_decltype] = ACTIONS(3624), + [anon_sym_explicit] = ACTIONS(3624), + [anon_sym_export] = ACTIONS(3624), + [anon_sym_import] = ACTIONS(3624), + [anon_sym_template] = ACTIONS(3624), + [anon_sym_operator] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_namespace] = ACTIONS(3624), + [anon_sym_static_assert] = ACTIONS(3624), + [anon_sym_concept] = ACTIONS(3624), + [anon_sym_co_return] = ACTIONS(3624), + [anon_sym_co_yield] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_requires] = ACTIONS(3624), + [anon_sym_CARET_CARET] = ACTIONS(3626), + [anon_sym_LBRACK_COLON] = ACTIONS(3626), + [sym_this] = ACTIONS(3624), }, [STATE(681)] = { - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_include_token1] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token2] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_case] = ACTIONS(4144), - [anon_sym_default] = ACTIONS(4144), - [anon_sym_while] = ACTIONS(4144), - [anon_sym_do] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym___try] = ACTIONS(4144), - [anon_sym___leave] = ACTIONS(4144), - [anon_sym_not] = ACTIONS(4144), - [anon_sym_compl] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_sizeof] = ACTIONS(4144), - [anon_sym___alignof__] = ACTIONS(4144), - [anon_sym___alignof] = ACTIONS(4144), - [anon_sym__alignof] = ACTIONS(4144), - [anon_sym_alignof] = ACTIONS(4144), - [anon_sym__Alignof] = ACTIONS(4144), - [anon_sym_offsetof] = ACTIONS(4144), - [anon_sym__Generic] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym___asm__] = ACTIONS(4144), - [anon_sym___asm] = ACTIONS(4144), - [sym_number_literal] = ACTIONS(4146), - [anon_sym_L_SQUOTE] = ACTIONS(4146), - [anon_sym_u_SQUOTE] = ACTIONS(4146), - [anon_sym_U_SQUOTE] = ACTIONS(4146), - [anon_sym_u8_SQUOTE] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(4146), - [anon_sym_u_DQUOTE] = ACTIONS(4146), - [anon_sym_U_DQUOTE] = ACTIONS(4146), - [anon_sym_u8_DQUOTE] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [anon_sym_NULL] = ACTIONS(4144), - [anon_sym_nullptr] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4144), - [anon_sym_module] = ACTIONS(4144), - [anon_sym_import] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_try] = ACTIONS(4144), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_throw] = ACTIONS(4144), - [anon_sym_namespace] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_concept] = ACTIONS(4144), - [anon_sym_co_return] = ACTIONS(4144), - [anon_sym_co_yield] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4144), - [anon_sym_new] = ACTIONS(4144), - [anon_sym_requires] = ACTIONS(4144), - [anon_sym_CARET_CARET] = ACTIONS(4146), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), - [sym_this] = ACTIONS(4144), + [sym_identifier] = ACTIONS(4044), + [aux_sym_preproc_include_token1] = ACTIONS(4044), + [aux_sym_preproc_def_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token2] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [sym_preproc_directive] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym___extension__] = ACTIONS(4044), + [anon_sym_typedef] = ACTIONS(4044), + [anon_sym_virtual] = ACTIONS(4044), + [anon_sym_extern] = ACTIONS(4044), + [anon_sym___attribute__] = ACTIONS(4044), + [anon_sym___attribute] = ACTIONS(4044), + [anon_sym_using] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), + [anon_sym___declspec] = ACTIONS(4044), + [anon_sym___based] = ACTIONS(4044), + [anon_sym___cdecl] = ACTIONS(4044), + [anon_sym___clrcall] = ACTIONS(4044), + [anon_sym___stdcall] = ACTIONS(4044), + [anon_sym___fastcall] = ACTIONS(4044), + [anon_sym___thiscall] = ACTIONS(4044), + [anon_sym___vectorcall] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_signed] = ACTIONS(4044), + [anon_sym_unsigned] = ACTIONS(4044), + [anon_sym_long] = ACTIONS(4044), + [anon_sym_short] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_register] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym___inline] = ACTIONS(4044), + [anon_sym___inline__] = ACTIONS(4044), + [anon_sym___forceinline] = ACTIONS(4044), + [anon_sym_thread_local] = ACTIONS(4044), + [anon_sym___thread] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_constexpr] = ACTIONS(4044), + [anon_sym_volatile] = ACTIONS(4044), + [anon_sym_restrict] = ACTIONS(4044), + [anon_sym___restrict__] = ACTIONS(4044), + [anon_sym__Atomic] = ACTIONS(4044), + [anon_sym__Noreturn] = ACTIONS(4044), + [anon_sym_noreturn] = ACTIONS(4044), + [anon_sym__Nonnull] = ACTIONS(4044), + [anon_sym_mutable] = ACTIONS(4044), + [anon_sym_constinit] = ACTIONS(4044), + [anon_sym_consteval] = ACTIONS(4044), + [anon_sym_alignas] = ACTIONS(4044), + [anon_sym__Alignas] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_class] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(4044), + [anon_sym_case] = ACTIONS(4044), + [anon_sym_default] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_do] = ACTIONS(4044), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_goto] = ACTIONS(4044), + [anon_sym___try] = ACTIONS(4044), + [anon_sym___leave] = ACTIONS(4044), + [anon_sym_not] = ACTIONS(4044), + [anon_sym_compl] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_sizeof] = ACTIONS(4044), + [anon_sym___alignof__] = ACTIONS(4044), + [anon_sym___alignof] = ACTIONS(4044), + [anon_sym__alignof] = ACTIONS(4044), + [anon_sym_alignof] = ACTIONS(4044), + [anon_sym__Alignof] = ACTIONS(4044), + [anon_sym_offsetof] = ACTIONS(4044), + [anon_sym__Generic] = ACTIONS(4044), + [anon_sym_typename] = ACTIONS(4044), + [anon_sym_asm] = ACTIONS(4044), + [anon_sym___asm__] = ACTIONS(4044), + [anon_sym___asm] = ACTIONS(4044), + [sym_number_literal] = ACTIONS(4046), + [anon_sym_L_SQUOTE] = ACTIONS(4046), + [anon_sym_u_SQUOTE] = ACTIONS(4046), + [anon_sym_U_SQUOTE] = ACTIONS(4046), + [anon_sym_u8_SQUOTE] = ACTIONS(4046), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_L_DQUOTE] = ACTIONS(4046), + [anon_sym_u_DQUOTE] = ACTIONS(4046), + [anon_sym_U_DQUOTE] = ACTIONS(4046), + [anon_sym_u8_DQUOTE] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(4046), + [sym_true] = ACTIONS(4044), + [sym_false] = ACTIONS(4044), + [anon_sym_NULL] = ACTIONS(4044), + [anon_sym_nullptr] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_export] = ACTIONS(4044), + [anon_sym_module] = ACTIONS(4044), + [anon_sym_import] = ACTIONS(4044), + [anon_sym_template] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_delete] = ACTIONS(4044), + [anon_sym_throw] = ACTIONS(4044), + [anon_sym_namespace] = ACTIONS(4044), + [anon_sym_static_assert] = ACTIONS(4044), + [anon_sym_concept] = ACTIONS(4044), + [anon_sym_co_return] = ACTIONS(4044), + [anon_sym_co_yield] = ACTIONS(4044), + [anon_sym_R_DQUOTE] = ACTIONS(4046), + [anon_sym_LR_DQUOTE] = ACTIONS(4046), + [anon_sym_uR_DQUOTE] = ACTIONS(4046), + [anon_sym_UR_DQUOTE] = ACTIONS(4046), + [anon_sym_u8R_DQUOTE] = ACTIONS(4046), + [anon_sym_co_await] = ACTIONS(4044), + [anon_sym_new] = ACTIONS(4044), + [anon_sym_requires] = ACTIONS(4044), + [anon_sym_CARET_CARET] = ACTIONS(4046), + [anon_sym_LBRACK_COLON] = ACTIONS(4046), + [sym_this] = ACTIONS(4044), }, [STATE(682)] = { - [sym_identifier] = ACTIONS(4148), - [aux_sym_preproc_include_token1] = ACTIONS(4148), - [aux_sym_preproc_def_token1] = ACTIONS(4148), - [aux_sym_preproc_if_token1] = ACTIONS(4148), - [aux_sym_preproc_if_token2] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), - [sym_preproc_directive] = ACTIONS(4148), - [anon_sym_LPAREN2] = ACTIONS(4150), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_TILDE] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4148), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_AMP_AMP] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4148), - [anon_sym_SEMI] = ACTIONS(4150), - [anon_sym___extension__] = ACTIONS(4148), - [anon_sym_typedef] = ACTIONS(4148), - [anon_sym_virtual] = ACTIONS(4148), - [anon_sym_extern] = ACTIONS(4148), - [anon_sym___attribute__] = ACTIONS(4148), - [anon_sym___attribute] = ACTIONS(4148), - [anon_sym_using] = ACTIONS(4148), - [anon_sym_COLON_COLON] = ACTIONS(4150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), - [anon_sym___declspec] = ACTIONS(4148), - [anon_sym___based] = ACTIONS(4148), - [anon_sym___cdecl] = ACTIONS(4148), - [anon_sym___clrcall] = ACTIONS(4148), - [anon_sym___stdcall] = ACTIONS(4148), - [anon_sym___fastcall] = ACTIONS(4148), - [anon_sym___thiscall] = ACTIONS(4148), - [anon_sym___vectorcall] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4150), - [anon_sym_signed] = ACTIONS(4148), - [anon_sym_unsigned] = ACTIONS(4148), - [anon_sym_long] = ACTIONS(4148), - [anon_sym_short] = ACTIONS(4148), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_static] = ACTIONS(4148), - [anon_sym_register] = ACTIONS(4148), - [anon_sym_inline] = ACTIONS(4148), - [anon_sym___inline] = ACTIONS(4148), - [anon_sym___inline__] = ACTIONS(4148), - [anon_sym___forceinline] = ACTIONS(4148), - [anon_sym_thread_local] = ACTIONS(4148), - [anon_sym___thread] = ACTIONS(4148), - [anon_sym_const] = ACTIONS(4148), - [anon_sym_constexpr] = ACTIONS(4148), - [anon_sym_volatile] = ACTIONS(4148), - [anon_sym_restrict] = ACTIONS(4148), - [anon_sym___restrict__] = ACTIONS(4148), - [anon_sym__Atomic] = ACTIONS(4148), - [anon_sym__Noreturn] = ACTIONS(4148), - [anon_sym_noreturn] = ACTIONS(4148), - [anon_sym__Nonnull] = ACTIONS(4148), - [anon_sym_mutable] = ACTIONS(4148), - [anon_sym_constinit] = ACTIONS(4148), - [anon_sym_consteval] = ACTIONS(4148), - [anon_sym_alignas] = ACTIONS(4148), - [anon_sym__Alignas] = ACTIONS(4148), - [sym_primitive_type] = ACTIONS(4148), - [anon_sym_enum] = ACTIONS(4148), - [anon_sym_class] = ACTIONS(4148), - [anon_sym_struct] = ACTIONS(4148), - [anon_sym_union] = ACTIONS(4148), - [anon_sym_if] = ACTIONS(4148), - [anon_sym_switch] = ACTIONS(4148), - [anon_sym_case] = ACTIONS(4148), - [anon_sym_default] = ACTIONS(4148), - [anon_sym_while] = ACTIONS(4148), - [anon_sym_do] = ACTIONS(4148), - [anon_sym_for] = ACTIONS(4148), - [anon_sym_return] = ACTIONS(4148), - [anon_sym_break] = ACTIONS(4148), - [anon_sym_continue] = ACTIONS(4148), - [anon_sym_goto] = ACTIONS(4148), - [anon_sym___try] = ACTIONS(4148), - [anon_sym___leave] = ACTIONS(4148), - [anon_sym_not] = ACTIONS(4148), - [anon_sym_compl] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4150), - [anon_sym_PLUS_PLUS] = ACTIONS(4150), - [anon_sym_sizeof] = ACTIONS(4148), - [anon_sym___alignof__] = ACTIONS(4148), - [anon_sym___alignof] = ACTIONS(4148), - [anon_sym__alignof] = ACTIONS(4148), - [anon_sym_alignof] = ACTIONS(4148), - [anon_sym__Alignof] = ACTIONS(4148), - [anon_sym_offsetof] = ACTIONS(4148), - [anon_sym__Generic] = ACTIONS(4148), - [anon_sym_typename] = ACTIONS(4148), - [anon_sym_asm] = ACTIONS(4148), - [anon_sym___asm__] = ACTIONS(4148), - [anon_sym___asm] = ACTIONS(4148), - [sym_number_literal] = ACTIONS(4150), - [anon_sym_L_SQUOTE] = ACTIONS(4150), - [anon_sym_u_SQUOTE] = ACTIONS(4150), - [anon_sym_U_SQUOTE] = ACTIONS(4150), - [anon_sym_u8_SQUOTE] = ACTIONS(4150), - [anon_sym_SQUOTE] = ACTIONS(4150), - [anon_sym_L_DQUOTE] = ACTIONS(4150), - [anon_sym_u_DQUOTE] = ACTIONS(4150), - [anon_sym_U_DQUOTE] = ACTIONS(4150), - [anon_sym_u8_DQUOTE] = ACTIONS(4150), - [anon_sym_DQUOTE] = ACTIONS(4150), - [sym_true] = ACTIONS(4148), - [sym_false] = ACTIONS(4148), - [anon_sym_NULL] = ACTIONS(4148), - [anon_sym_nullptr] = ACTIONS(4148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4148), - [anon_sym_decltype] = ACTIONS(4148), - [anon_sym_explicit] = ACTIONS(4148), - [anon_sym_export] = ACTIONS(4148), - [anon_sym_module] = ACTIONS(4148), - [anon_sym_import] = ACTIONS(4148), - [anon_sym_template] = ACTIONS(4148), - [anon_sym_operator] = ACTIONS(4148), - [anon_sym_try] = ACTIONS(4148), - [anon_sym_delete] = ACTIONS(4148), - [anon_sym_throw] = ACTIONS(4148), - [anon_sym_namespace] = ACTIONS(4148), - [anon_sym_static_assert] = ACTIONS(4148), - [anon_sym_concept] = ACTIONS(4148), - [anon_sym_co_return] = ACTIONS(4148), - [anon_sym_co_yield] = ACTIONS(4148), - [anon_sym_R_DQUOTE] = ACTIONS(4150), - [anon_sym_LR_DQUOTE] = ACTIONS(4150), - [anon_sym_uR_DQUOTE] = ACTIONS(4150), - [anon_sym_UR_DQUOTE] = ACTIONS(4150), - [anon_sym_u8R_DQUOTE] = ACTIONS(4150), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4148), - [anon_sym_requires] = ACTIONS(4148), - [anon_sym_CARET_CARET] = ACTIONS(4150), - [anon_sym_LBRACK_COLON] = ACTIONS(4150), - [sym_this] = ACTIONS(4148), + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_include_token1] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token2] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_BANG] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym___cdecl] = ACTIONS(4048), + [anon_sym___clrcall] = ACTIONS(4048), + [anon_sym___stdcall] = ACTIONS(4048), + [anon_sym___fastcall] = ACTIONS(4048), + [anon_sym___thiscall] = ACTIONS(4048), + [anon_sym___vectorcall] = ACTIONS(4048), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(4048), + [anon_sym_case] = ACTIONS(4048), + [anon_sym_default] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(4048), + [anon_sym_do] = ACTIONS(4048), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_break] = ACTIONS(4048), + [anon_sym_continue] = ACTIONS(4048), + [anon_sym_goto] = ACTIONS(4048), + [anon_sym___try] = ACTIONS(4048), + [anon_sym___leave] = ACTIONS(4048), + [anon_sym_not] = ACTIONS(4048), + [anon_sym_compl] = ACTIONS(4048), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_sizeof] = ACTIONS(4048), + [anon_sym___alignof__] = ACTIONS(4048), + [anon_sym___alignof] = ACTIONS(4048), + [anon_sym__alignof] = ACTIONS(4048), + [anon_sym_alignof] = ACTIONS(4048), + [anon_sym__Alignof] = ACTIONS(4048), + [anon_sym_offsetof] = ACTIONS(4048), + [anon_sym__Generic] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [anon_sym_asm] = ACTIONS(4048), + [anon_sym___asm__] = ACTIONS(4048), + [anon_sym___asm] = ACTIONS(4048), + [sym_number_literal] = ACTIONS(4050), + [anon_sym_L_SQUOTE] = ACTIONS(4050), + [anon_sym_u_SQUOTE] = ACTIONS(4050), + [anon_sym_U_SQUOTE] = ACTIONS(4050), + [anon_sym_u8_SQUOTE] = ACTIONS(4050), + [anon_sym_SQUOTE] = ACTIONS(4050), + [anon_sym_L_DQUOTE] = ACTIONS(4050), + [anon_sym_u_DQUOTE] = ACTIONS(4050), + [anon_sym_U_DQUOTE] = ACTIONS(4050), + [anon_sym_u8_DQUOTE] = ACTIONS(4050), + [anon_sym_DQUOTE] = ACTIONS(4050), + [sym_true] = ACTIONS(4048), + [sym_false] = ACTIONS(4048), + [anon_sym_NULL] = ACTIONS(4048), + [anon_sym_nullptr] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_export] = ACTIONS(4048), + [anon_sym_module] = ACTIONS(4048), + [anon_sym_import] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_try] = ACTIONS(4048), + [anon_sym_delete] = ACTIONS(4048), + [anon_sym_throw] = ACTIONS(4048), + [anon_sym_namespace] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_concept] = ACTIONS(4048), + [anon_sym_co_return] = ACTIONS(4048), + [anon_sym_co_yield] = ACTIONS(4048), + [anon_sym_R_DQUOTE] = ACTIONS(4050), + [anon_sym_LR_DQUOTE] = ACTIONS(4050), + [anon_sym_uR_DQUOTE] = ACTIONS(4050), + [anon_sym_UR_DQUOTE] = ACTIONS(4050), + [anon_sym_u8R_DQUOTE] = ACTIONS(4050), + [anon_sym_co_await] = ACTIONS(4048), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_requires] = ACTIONS(4048), + [anon_sym_CARET_CARET] = ACTIONS(4050), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), }, [STATE(683)] = { - [sym_identifier] = ACTIONS(4132), - [aux_sym_preproc_include_token1] = ACTIONS(4132), - [aux_sym_preproc_def_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token2] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), - [sym_preproc_directive] = ACTIONS(4132), - [anon_sym_LPAREN2] = ACTIONS(4134), - [anon_sym_BANG] = ACTIONS(4134), - [anon_sym_TILDE] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym___extension__] = ACTIONS(4132), - [anon_sym_typedef] = ACTIONS(4132), - [anon_sym_virtual] = ACTIONS(4132), - [anon_sym_extern] = ACTIONS(4132), - [anon_sym___attribute__] = ACTIONS(4132), - [anon_sym___attribute] = ACTIONS(4132), - [anon_sym_using] = ACTIONS(4132), - [anon_sym_COLON_COLON] = ACTIONS(4134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), - [anon_sym___declspec] = ACTIONS(4132), - [anon_sym___based] = ACTIONS(4132), - [anon_sym___cdecl] = ACTIONS(4132), - [anon_sym___clrcall] = ACTIONS(4132), - [anon_sym___stdcall] = ACTIONS(4132), - [anon_sym___fastcall] = ACTIONS(4132), - [anon_sym___thiscall] = ACTIONS(4132), - [anon_sym___vectorcall] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4134), - [anon_sym_signed] = ACTIONS(4132), - [anon_sym_unsigned] = ACTIONS(4132), - [anon_sym_long] = ACTIONS(4132), - [anon_sym_short] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_static] = ACTIONS(4132), - [anon_sym_register] = ACTIONS(4132), - [anon_sym_inline] = ACTIONS(4132), - [anon_sym___inline] = ACTIONS(4132), - [anon_sym___inline__] = ACTIONS(4132), - [anon_sym___forceinline] = ACTIONS(4132), - [anon_sym_thread_local] = ACTIONS(4132), - [anon_sym___thread] = ACTIONS(4132), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_constexpr] = ACTIONS(4132), - [anon_sym_volatile] = ACTIONS(4132), - [anon_sym_restrict] = ACTIONS(4132), - [anon_sym___restrict__] = ACTIONS(4132), - [anon_sym__Atomic] = ACTIONS(4132), - [anon_sym__Noreturn] = ACTIONS(4132), - [anon_sym_noreturn] = ACTIONS(4132), - [anon_sym__Nonnull] = ACTIONS(4132), - [anon_sym_mutable] = ACTIONS(4132), - [anon_sym_constinit] = ACTIONS(4132), - [anon_sym_consteval] = ACTIONS(4132), - [anon_sym_alignas] = ACTIONS(4132), - [anon_sym__Alignas] = ACTIONS(4132), - [sym_primitive_type] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_class] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_switch] = ACTIONS(4132), - [anon_sym_case] = ACTIONS(4132), - [anon_sym_default] = ACTIONS(4132), - [anon_sym_while] = ACTIONS(4132), - [anon_sym_do] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym___try] = ACTIONS(4132), - [anon_sym___leave] = ACTIONS(4132), - [anon_sym_not] = ACTIONS(4132), - [anon_sym_compl] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_sizeof] = ACTIONS(4132), - [anon_sym___alignof__] = ACTIONS(4132), - [anon_sym___alignof] = ACTIONS(4132), - [anon_sym__alignof] = ACTIONS(4132), - [anon_sym_alignof] = ACTIONS(4132), - [anon_sym__Alignof] = ACTIONS(4132), - [anon_sym_offsetof] = ACTIONS(4132), - [anon_sym__Generic] = ACTIONS(4132), - [anon_sym_typename] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [anon_sym___asm] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4134), - [anon_sym_u_SQUOTE] = ACTIONS(4134), - [anon_sym_U_SQUOTE] = ACTIONS(4134), - [anon_sym_u8_SQUOTE] = ACTIONS(4134), - [anon_sym_SQUOTE] = ACTIONS(4134), - [anon_sym_L_DQUOTE] = ACTIONS(4134), - [anon_sym_u_DQUOTE] = ACTIONS(4134), - [anon_sym_U_DQUOTE] = ACTIONS(4134), - [anon_sym_u8_DQUOTE] = ACTIONS(4134), - [anon_sym_DQUOTE] = ACTIONS(4134), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [anon_sym_NULL] = ACTIONS(4132), - [anon_sym_nullptr] = ACTIONS(4132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4132), - [anon_sym_decltype] = ACTIONS(4132), - [anon_sym_explicit] = ACTIONS(4132), - [anon_sym_export] = ACTIONS(4132), - [anon_sym_module] = ACTIONS(4132), - [anon_sym_import] = ACTIONS(4132), - [anon_sym_template] = ACTIONS(4132), - [anon_sym_operator] = ACTIONS(4132), - [anon_sym_try] = ACTIONS(4132), - [anon_sym_delete] = ACTIONS(4132), - [anon_sym_throw] = ACTIONS(4132), - [anon_sym_namespace] = ACTIONS(4132), - [anon_sym_static_assert] = ACTIONS(4132), - [anon_sym_concept] = ACTIONS(4132), - [anon_sym_co_return] = ACTIONS(4132), - [anon_sym_co_yield] = ACTIONS(4132), - [anon_sym_R_DQUOTE] = ACTIONS(4134), - [anon_sym_LR_DQUOTE] = ACTIONS(4134), - [anon_sym_uR_DQUOTE] = ACTIONS(4134), - [anon_sym_UR_DQUOTE] = ACTIONS(4134), - [anon_sym_u8R_DQUOTE] = ACTIONS(4134), - [anon_sym_co_await] = ACTIONS(4132), - [anon_sym_new] = ACTIONS(4132), - [anon_sym_requires] = ACTIONS(4132), - [anon_sym_CARET_CARET] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4134), - [sym_this] = ACTIONS(4132), + [sym_identifier] = ACTIONS(3628), + [aux_sym_preproc_include_token1] = ACTIONS(3628), + [aux_sym_preproc_def_token1] = ACTIONS(3628), + [aux_sym_preproc_if_token1] = ACTIONS(3628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3628), + [sym_preproc_directive] = ACTIONS(3628), + [anon_sym_LPAREN2] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_AMP_AMP] = ACTIONS(3630), + [anon_sym_AMP] = ACTIONS(3628), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym___extension__] = ACTIONS(3628), + [anon_sym_typedef] = ACTIONS(3628), + [anon_sym_virtual] = ACTIONS(3628), + [anon_sym_extern] = ACTIONS(3628), + [anon_sym___attribute__] = ACTIONS(3628), + [anon_sym___attribute] = ACTIONS(3628), + [anon_sym_using] = ACTIONS(3628), + [anon_sym_COLON_COLON] = ACTIONS(3630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3630), + [anon_sym___declspec] = ACTIONS(3628), + [anon_sym___based] = ACTIONS(3628), + [anon_sym___cdecl] = ACTIONS(3628), + [anon_sym___clrcall] = ACTIONS(3628), + [anon_sym___stdcall] = ACTIONS(3628), + [anon_sym___fastcall] = ACTIONS(3628), + [anon_sym___thiscall] = ACTIONS(3628), + [anon_sym___vectorcall] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_RBRACE] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3628), + [anon_sym_unsigned] = ACTIONS(3628), + [anon_sym_long] = ACTIONS(3628), + [anon_sym_short] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_register] = ACTIONS(3628), + [anon_sym_inline] = ACTIONS(3628), + [anon_sym___inline] = ACTIONS(3628), + [anon_sym___inline__] = ACTIONS(3628), + [anon_sym___forceinline] = ACTIONS(3628), + [anon_sym_thread_local] = ACTIONS(3628), + [anon_sym___thread] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_constexpr] = ACTIONS(3628), + [anon_sym_volatile] = ACTIONS(3628), + [anon_sym_restrict] = ACTIONS(3628), + [anon_sym___restrict__] = ACTIONS(3628), + [anon_sym__Atomic] = ACTIONS(3628), + [anon_sym__Noreturn] = ACTIONS(3628), + [anon_sym_noreturn] = ACTIONS(3628), + [anon_sym__Nonnull] = ACTIONS(3628), + [anon_sym_mutable] = ACTIONS(3628), + [anon_sym_constinit] = ACTIONS(3628), + [anon_sym_consteval] = ACTIONS(3628), + [anon_sym_alignas] = ACTIONS(3628), + [anon_sym__Alignas] = ACTIONS(3628), + [sym_primitive_type] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_struct] = ACTIONS(3628), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_else] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_case] = ACTIONS(3628), + [anon_sym_default] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_goto] = ACTIONS(3628), + [anon_sym___try] = ACTIONS(3628), + [anon_sym___leave] = ACTIONS(3628), + [anon_sym_not] = ACTIONS(3628), + [anon_sym_compl] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_sizeof] = ACTIONS(3628), + [anon_sym___alignof__] = ACTIONS(3628), + [anon_sym___alignof] = ACTIONS(3628), + [anon_sym__alignof] = ACTIONS(3628), + [anon_sym_alignof] = ACTIONS(3628), + [anon_sym__Alignof] = ACTIONS(3628), + [anon_sym_offsetof] = ACTIONS(3628), + [anon_sym__Generic] = ACTIONS(3628), + [anon_sym_typename] = ACTIONS(3628), + [anon_sym_asm] = ACTIONS(3628), + [anon_sym___asm__] = ACTIONS(3628), + [anon_sym___asm] = ACTIONS(3628), + [sym_number_literal] = ACTIONS(3630), + [anon_sym_L_SQUOTE] = ACTIONS(3630), + [anon_sym_u_SQUOTE] = ACTIONS(3630), + [anon_sym_U_SQUOTE] = ACTIONS(3630), + [anon_sym_u8_SQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_L_DQUOTE] = ACTIONS(3630), + [anon_sym_u_DQUOTE] = ACTIONS(3630), + [anon_sym_U_DQUOTE] = ACTIONS(3630), + [anon_sym_u8_DQUOTE] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [anon_sym_NULL] = ACTIONS(3628), + [anon_sym_nullptr] = ACTIONS(3628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3628), + [anon_sym_decltype] = ACTIONS(3628), + [anon_sym_explicit] = ACTIONS(3628), + [anon_sym_export] = ACTIONS(3628), + [anon_sym_import] = ACTIONS(3628), + [anon_sym_template] = ACTIONS(3628), + [anon_sym_operator] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_namespace] = ACTIONS(3628), + [anon_sym_static_assert] = ACTIONS(3628), + [anon_sym_concept] = ACTIONS(3628), + [anon_sym_co_return] = ACTIONS(3628), + [anon_sym_co_yield] = ACTIONS(3628), + [anon_sym_R_DQUOTE] = ACTIONS(3630), + [anon_sym_LR_DQUOTE] = ACTIONS(3630), + [anon_sym_uR_DQUOTE] = ACTIONS(3630), + [anon_sym_UR_DQUOTE] = ACTIONS(3630), + [anon_sym_u8R_DQUOTE] = ACTIONS(3630), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_requires] = ACTIONS(3628), + [anon_sym_CARET_CARET] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3630), + [sym_this] = ACTIONS(3628), }, [STATE(684)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym___try] = ACTIONS(4156), - [anon_sym___leave] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_export] = ACTIONS(4156), - [anon_sym_module] = ACTIONS(4156), - [anon_sym_import] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), + [sym_identifier] = ACTIONS(3632), + [aux_sym_preproc_include_token1] = ACTIONS(3632), + [aux_sym_preproc_def_token1] = ACTIONS(3632), + [aux_sym_preproc_if_token1] = ACTIONS(3632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3632), + [sym_preproc_directive] = ACTIONS(3632), + [anon_sym_LPAREN2] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_AMP_AMP] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3632), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym___extension__] = ACTIONS(3632), + [anon_sym_typedef] = ACTIONS(3632), + [anon_sym_virtual] = ACTIONS(3632), + [anon_sym_extern] = ACTIONS(3632), + [anon_sym___attribute__] = ACTIONS(3632), + [anon_sym___attribute] = ACTIONS(3632), + [anon_sym_using] = ACTIONS(3632), + [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3634), + [anon_sym___declspec] = ACTIONS(3632), + [anon_sym___based] = ACTIONS(3632), + [anon_sym___cdecl] = ACTIONS(3632), + [anon_sym___clrcall] = ACTIONS(3632), + [anon_sym___stdcall] = ACTIONS(3632), + [anon_sym___fastcall] = ACTIONS(3632), + [anon_sym___thiscall] = ACTIONS(3632), + [anon_sym___vectorcall] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_RBRACE] = ACTIONS(3634), + [anon_sym_signed] = ACTIONS(3632), + [anon_sym_unsigned] = ACTIONS(3632), + [anon_sym_long] = ACTIONS(3632), + [anon_sym_short] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_register] = ACTIONS(3632), + [anon_sym_inline] = ACTIONS(3632), + [anon_sym___inline] = ACTIONS(3632), + [anon_sym___inline__] = ACTIONS(3632), + [anon_sym___forceinline] = ACTIONS(3632), + [anon_sym_thread_local] = ACTIONS(3632), + [anon_sym___thread] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_constexpr] = ACTIONS(3632), + [anon_sym_volatile] = ACTIONS(3632), + [anon_sym_restrict] = ACTIONS(3632), + [anon_sym___restrict__] = ACTIONS(3632), + [anon_sym__Atomic] = ACTIONS(3632), + [anon_sym__Noreturn] = ACTIONS(3632), + [anon_sym_noreturn] = ACTIONS(3632), + [anon_sym__Nonnull] = ACTIONS(3632), + [anon_sym_mutable] = ACTIONS(3632), + [anon_sym_constinit] = ACTIONS(3632), + [anon_sym_consteval] = ACTIONS(3632), + [anon_sym_alignas] = ACTIONS(3632), + [anon_sym__Alignas] = ACTIONS(3632), + [sym_primitive_type] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_struct] = ACTIONS(3632), + [anon_sym_union] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_else] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_case] = ACTIONS(3632), + [anon_sym_default] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_goto] = ACTIONS(3632), + [anon_sym___try] = ACTIONS(3632), + [anon_sym___leave] = ACTIONS(3632), + [anon_sym_not] = ACTIONS(3632), + [anon_sym_compl] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_sizeof] = ACTIONS(3632), + [anon_sym___alignof__] = ACTIONS(3632), + [anon_sym___alignof] = ACTIONS(3632), + [anon_sym__alignof] = ACTIONS(3632), + [anon_sym_alignof] = ACTIONS(3632), + [anon_sym__Alignof] = ACTIONS(3632), + [anon_sym_offsetof] = ACTIONS(3632), + [anon_sym__Generic] = ACTIONS(3632), + [anon_sym_typename] = ACTIONS(3632), + [anon_sym_asm] = ACTIONS(3632), + [anon_sym___asm__] = ACTIONS(3632), + [anon_sym___asm] = ACTIONS(3632), + [sym_number_literal] = ACTIONS(3634), + [anon_sym_L_SQUOTE] = ACTIONS(3634), + [anon_sym_u_SQUOTE] = ACTIONS(3634), + [anon_sym_U_SQUOTE] = ACTIONS(3634), + [anon_sym_u8_SQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_L_DQUOTE] = ACTIONS(3634), + [anon_sym_u_DQUOTE] = ACTIONS(3634), + [anon_sym_U_DQUOTE] = ACTIONS(3634), + [anon_sym_u8_DQUOTE] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [anon_sym_NULL] = ACTIONS(3632), + [anon_sym_nullptr] = ACTIONS(3632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3632), + [anon_sym_decltype] = ACTIONS(3632), + [anon_sym_explicit] = ACTIONS(3632), + [anon_sym_export] = ACTIONS(3632), + [anon_sym_import] = ACTIONS(3632), + [anon_sym_template] = ACTIONS(3632), + [anon_sym_operator] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_namespace] = ACTIONS(3632), + [anon_sym_static_assert] = ACTIONS(3632), + [anon_sym_concept] = ACTIONS(3632), + [anon_sym_co_return] = ACTIONS(3632), + [anon_sym_co_yield] = ACTIONS(3632), + [anon_sym_R_DQUOTE] = ACTIONS(3634), + [anon_sym_LR_DQUOTE] = ACTIONS(3634), + [anon_sym_uR_DQUOTE] = ACTIONS(3634), + [anon_sym_UR_DQUOTE] = ACTIONS(3634), + [anon_sym_u8R_DQUOTE] = ACTIONS(3634), + [anon_sym_co_await] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_requires] = ACTIONS(3632), + [anon_sym_CARET_CARET] = ACTIONS(3634), + [anon_sym_LBRACK_COLON] = ACTIONS(3634), + [sym_this] = ACTIONS(3632), }, [STATE(685)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym___try] = ACTIONS(4156), - [anon_sym___leave] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_export] = ACTIONS(4156), - [anon_sym_module] = ACTIONS(4156), - [anon_sym_import] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), + [sym_identifier] = ACTIONS(3636), + [aux_sym_preproc_include_token1] = ACTIONS(3636), + [aux_sym_preproc_def_token1] = ACTIONS(3636), + [aux_sym_preproc_if_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3636), + [sym_preproc_directive] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP_AMP] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3636), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_using] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym___based] = ACTIONS(3636), + [anon_sym___cdecl] = ACTIONS(3636), + [anon_sym___clrcall] = ACTIONS(3636), + [anon_sym___stdcall] = ACTIONS(3636), + [anon_sym___fastcall] = ACTIONS(3636), + [anon_sym___thiscall] = ACTIONS(3636), + [anon_sym___vectorcall] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_RBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_case] = ACTIONS(3636), + [anon_sym_default] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym___try] = ACTIONS(3636), + [anon_sym___leave] = ACTIONS(3636), + [anon_sym_not] = ACTIONS(3636), + [anon_sym_compl] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym___alignof__] = ACTIONS(3636), + [anon_sym___alignof] = ACTIONS(3636), + [anon_sym__alignof] = ACTIONS(3636), + [anon_sym_alignof] = ACTIONS(3636), + [anon_sym__Alignof] = ACTIONS(3636), + [anon_sym_offsetof] = ACTIONS(3636), + [anon_sym__Generic] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [anon_sym_asm] = ACTIONS(3636), + [anon_sym___asm__] = ACTIONS(3636), + [anon_sym___asm] = ACTIONS(3636), + [sym_number_literal] = ACTIONS(3638), + [anon_sym_L_SQUOTE] = ACTIONS(3638), + [anon_sym_u_SQUOTE] = ACTIONS(3638), + [anon_sym_U_SQUOTE] = ACTIONS(3638), + [anon_sym_u8_SQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_L_DQUOTE] = ACTIONS(3638), + [anon_sym_u_DQUOTE] = ACTIONS(3638), + [anon_sym_U_DQUOTE] = ACTIONS(3638), + [anon_sym_u8_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_nullptr] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_explicit] = ACTIONS(3636), + [anon_sym_export] = ACTIONS(3636), + [anon_sym_import] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_operator] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_namespace] = ACTIONS(3636), + [anon_sym_static_assert] = ACTIONS(3636), + [anon_sym_concept] = ACTIONS(3636), + [anon_sym_co_return] = ACTIONS(3636), + [anon_sym_co_yield] = ACTIONS(3636), + [anon_sym_R_DQUOTE] = ACTIONS(3638), + [anon_sym_LR_DQUOTE] = ACTIONS(3638), + [anon_sym_uR_DQUOTE] = ACTIONS(3638), + [anon_sym_UR_DQUOTE] = ACTIONS(3638), + [anon_sym_u8R_DQUOTE] = ACTIONS(3638), + [anon_sym_co_await] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_requires] = ACTIONS(3636), + [anon_sym_CARET_CARET] = ACTIONS(3638), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [sym_this] = ACTIONS(3636), }, [STATE(686)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_include_token1] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym___cdecl] = ACTIONS(4160), - [anon_sym___clrcall] = ACTIONS(4160), - [anon_sym___stdcall] = ACTIONS(4160), - [anon_sym___fastcall] = ACTIONS(4160), - [anon_sym___thiscall] = ACTIONS(4160), - [anon_sym___vectorcall] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_case] = ACTIONS(4160), - [anon_sym_default] = ACTIONS(4160), - [anon_sym_while] = ACTIONS(4160), - [anon_sym_do] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym___try] = ACTIONS(4160), - [anon_sym___leave] = ACTIONS(4160), - [anon_sym_not] = ACTIONS(4160), - [anon_sym_compl] = ACTIONS(4160), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_sizeof] = ACTIONS(4160), - [anon_sym___alignof__] = ACTIONS(4160), - [anon_sym___alignof] = ACTIONS(4160), - [anon_sym__alignof] = ACTIONS(4160), - [anon_sym_alignof] = ACTIONS(4160), - [anon_sym__Alignof] = ACTIONS(4160), - [anon_sym_offsetof] = ACTIONS(4160), - [anon_sym__Generic] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym___asm__] = ACTIONS(4160), - [anon_sym___asm] = ACTIONS(4160), - [sym_number_literal] = ACTIONS(4162), - [anon_sym_L_SQUOTE] = ACTIONS(4162), - [anon_sym_u_SQUOTE] = ACTIONS(4162), - [anon_sym_U_SQUOTE] = ACTIONS(4162), - [anon_sym_u8_SQUOTE] = ACTIONS(4162), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_L_DQUOTE] = ACTIONS(4162), - [anon_sym_u_DQUOTE] = ACTIONS(4162), - [anon_sym_U_DQUOTE] = ACTIONS(4162), - [anon_sym_u8_DQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [anon_sym_NULL] = ACTIONS(4160), - [anon_sym_nullptr] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_export] = ACTIONS(4160), - [anon_sym_module] = ACTIONS(4160), - [anon_sym_import] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_try] = ACTIONS(4160), - [anon_sym_delete] = ACTIONS(4160), - [anon_sym_throw] = ACTIONS(4160), - [anon_sym_namespace] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_concept] = ACTIONS(4160), - [anon_sym_co_return] = ACTIONS(4160), - [anon_sym_co_yield] = ACTIONS(4160), - [anon_sym_R_DQUOTE] = ACTIONS(4162), - [anon_sym_LR_DQUOTE] = ACTIONS(4162), - [anon_sym_uR_DQUOTE] = ACTIONS(4162), - [anon_sym_UR_DQUOTE] = ACTIONS(4162), - [anon_sym_u8R_DQUOTE] = ACTIONS(4162), - [anon_sym_co_await] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4160), - [anon_sym_requires] = ACTIONS(4160), - [anon_sym_CARET_CARET] = ACTIONS(4162), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - [sym_this] = ACTIONS(4160), + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), }, [STATE(687)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_include_token1] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym___cdecl] = ACTIONS(4160), - [anon_sym___clrcall] = ACTIONS(4160), - [anon_sym___stdcall] = ACTIONS(4160), - [anon_sym___fastcall] = ACTIONS(4160), - [anon_sym___thiscall] = ACTIONS(4160), - [anon_sym___vectorcall] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_case] = ACTIONS(4160), - [anon_sym_default] = ACTIONS(4160), - [anon_sym_while] = ACTIONS(4160), - [anon_sym_do] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym___try] = ACTIONS(4160), - [anon_sym___leave] = ACTIONS(4160), - [anon_sym_not] = ACTIONS(4160), - [anon_sym_compl] = ACTIONS(4160), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_sizeof] = ACTIONS(4160), - [anon_sym___alignof__] = ACTIONS(4160), - [anon_sym___alignof] = ACTIONS(4160), - [anon_sym__alignof] = ACTIONS(4160), - [anon_sym_alignof] = ACTIONS(4160), - [anon_sym__Alignof] = ACTIONS(4160), - [anon_sym_offsetof] = ACTIONS(4160), - [anon_sym__Generic] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym___asm__] = ACTIONS(4160), - [anon_sym___asm] = ACTIONS(4160), - [sym_number_literal] = ACTIONS(4162), - [anon_sym_L_SQUOTE] = ACTIONS(4162), - [anon_sym_u_SQUOTE] = ACTIONS(4162), - [anon_sym_U_SQUOTE] = ACTIONS(4162), - [anon_sym_u8_SQUOTE] = ACTIONS(4162), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_L_DQUOTE] = ACTIONS(4162), - [anon_sym_u_DQUOTE] = ACTIONS(4162), - [anon_sym_U_DQUOTE] = ACTIONS(4162), - [anon_sym_u8_DQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [anon_sym_NULL] = ACTIONS(4160), - [anon_sym_nullptr] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_export] = ACTIONS(4160), - [anon_sym_module] = ACTIONS(4160), - [anon_sym_import] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_try] = ACTIONS(4160), - [anon_sym_delete] = ACTIONS(4160), - [anon_sym_throw] = ACTIONS(4160), - [anon_sym_namespace] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_concept] = ACTIONS(4160), - [anon_sym_co_return] = ACTIONS(4160), - [anon_sym_co_yield] = ACTIONS(4160), - [anon_sym_R_DQUOTE] = ACTIONS(4162), - [anon_sym_LR_DQUOTE] = ACTIONS(4162), - [anon_sym_uR_DQUOTE] = ACTIONS(4162), - [anon_sym_UR_DQUOTE] = ACTIONS(4162), - [anon_sym_u8R_DQUOTE] = ACTIONS(4162), - [anon_sym_co_await] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4160), - [anon_sym_requires] = ACTIONS(4160), - [anon_sym_CARET_CARET] = ACTIONS(4162), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - [sym_this] = ACTIONS(4160), + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_include_token1] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym___cdecl] = ACTIONS(3640), + [anon_sym___clrcall] = ACTIONS(3640), + [anon_sym___stdcall] = ACTIONS(3640), + [anon_sym___fastcall] = ACTIONS(3640), + [anon_sym___thiscall] = ACTIONS(3640), + [anon_sym___vectorcall] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_case] = ACTIONS(3640), + [anon_sym_default] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_export] = ACTIONS(3640), + [anon_sym_import] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_namespace] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_concept] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), }, [STATE(688)] = { - [sym_identifier] = ACTIONS(4188), - [aux_sym_preproc_include_token1] = ACTIONS(4188), - [aux_sym_preproc_def_token1] = ACTIONS(4188), - [aux_sym_preproc_if_token1] = ACTIONS(4188), - [aux_sym_preproc_if_token2] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), - [sym_preproc_directive] = ACTIONS(4188), - [anon_sym_LPAREN2] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_TILDE] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4188), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4188), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym___extension__] = ACTIONS(4188), - [anon_sym_typedef] = ACTIONS(4188), - [anon_sym_virtual] = ACTIONS(4188), - [anon_sym_extern] = ACTIONS(4188), - [anon_sym___attribute__] = ACTIONS(4188), - [anon_sym___attribute] = ACTIONS(4188), - [anon_sym_using] = ACTIONS(4188), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), - [anon_sym___declspec] = ACTIONS(4188), - [anon_sym___based] = ACTIONS(4188), - [anon_sym___cdecl] = ACTIONS(4188), - [anon_sym___clrcall] = ACTIONS(4188), - [anon_sym___stdcall] = ACTIONS(4188), - [anon_sym___fastcall] = ACTIONS(4188), - [anon_sym___thiscall] = ACTIONS(4188), - [anon_sym___vectorcall] = ACTIONS(4188), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_signed] = ACTIONS(4188), - [anon_sym_unsigned] = ACTIONS(4188), - [anon_sym_long] = ACTIONS(4188), - [anon_sym_short] = ACTIONS(4188), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_static] = ACTIONS(4188), - [anon_sym_register] = ACTIONS(4188), - [anon_sym_inline] = ACTIONS(4188), - [anon_sym___inline] = ACTIONS(4188), - [anon_sym___inline__] = ACTIONS(4188), - [anon_sym___forceinline] = ACTIONS(4188), - [anon_sym_thread_local] = ACTIONS(4188), - [anon_sym___thread] = ACTIONS(4188), - [anon_sym_const] = ACTIONS(4188), - [anon_sym_constexpr] = ACTIONS(4188), - [anon_sym_volatile] = ACTIONS(4188), - [anon_sym_restrict] = ACTIONS(4188), - [anon_sym___restrict__] = ACTIONS(4188), - [anon_sym__Atomic] = ACTIONS(4188), - [anon_sym__Noreturn] = ACTIONS(4188), - [anon_sym_noreturn] = ACTIONS(4188), - [anon_sym__Nonnull] = ACTIONS(4188), - [anon_sym_mutable] = ACTIONS(4188), - [anon_sym_constinit] = ACTIONS(4188), - [anon_sym_consteval] = ACTIONS(4188), - [anon_sym_alignas] = ACTIONS(4188), - [anon_sym__Alignas] = ACTIONS(4188), - [sym_primitive_type] = ACTIONS(4188), - [anon_sym_enum] = ACTIONS(4188), - [anon_sym_class] = ACTIONS(4188), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_union] = ACTIONS(4188), - [anon_sym_if] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_case] = ACTIONS(4188), - [anon_sym_default] = ACTIONS(4188), - [anon_sym_while] = ACTIONS(4188), - [anon_sym_do] = ACTIONS(4188), - [anon_sym_for] = ACTIONS(4188), - [anon_sym_return] = ACTIONS(4188), - [anon_sym_break] = ACTIONS(4188), - [anon_sym_continue] = ACTIONS(4188), - [anon_sym_goto] = ACTIONS(4188), - [anon_sym___try] = ACTIONS(4188), - [anon_sym___leave] = ACTIONS(4188), - [anon_sym_not] = ACTIONS(4188), - [anon_sym_compl] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_sizeof] = ACTIONS(4188), - [anon_sym___alignof__] = ACTIONS(4188), - [anon_sym___alignof] = ACTIONS(4188), - [anon_sym__alignof] = ACTIONS(4188), - [anon_sym_alignof] = ACTIONS(4188), - [anon_sym__Alignof] = ACTIONS(4188), - [anon_sym_offsetof] = ACTIONS(4188), - [anon_sym__Generic] = ACTIONS(4188), - [anon_sym_typename] = ACTIONS(4188), - [anon_sym_asm] = ACTIONS(4188), - [anon_sym___asm__] = ACTIONS(4188), - [anon_sym___asm] = ACTIONS(4188), - [sym_number_literal] = ACTIONS(4190), - [anon_sym_L_SQUOTE] = ACTIONS(4190), - [anon_sym_u_SQUOTE] = ACTIONS(4190), - [anon_sym_U_SQUOTE] = ACTIONS(4190), - [anon_sym_u8_SQUOTE] = ACTIONS(4190), - [anon_sym_SQUOTE] = ACTIONS(4190), - [anon_sym_L_DQUOTE] = ACTIONS(4190), - [anon_sym_u_DQUOTE] = ACTIONS(4190), - [anon_sym_U_DQUOTE] = ACTIONS(4190), - [anon_sym_u8_DQUOTE] = ACTIONS(4190), - [anon_sym_DQUOTE] = ACTIONS(4190), - [sym_true] = ACTIONS(4188), - [sym_false] = ACTIONS(4188), - [anon_sym_NULL] = ACTIONS(4188), - [anon_sym_nullptr] = ACTIONS(4188), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4188), - [anon_sym_decltype] = ACTIONS(4188), - [anon_sym_explicit] = ACTIONS(4188), - [anon_sym_export] = ACTIONS(4188), - [anon_sym_module] = ACTIONS(4188), - [anon_sym_import] = ACTIONS(4188), - [anon_sym_template] = ACTIONS(4188), - [anon_sym_operator] = ACTIONS(4188), - [anon_sym_try] = ACTIONS(4188), - [anon_sym_delete] = ACTIONS(4188), - [anon_sym_throw] = ACTIONS(4188), - [anon_sym_namespace] = ACTIONS(4188), - [anon_sym_static_assert] = ACTIONS(4188), - [anon_sym_concept] = ACTIONS(4188), - [anon_sym_co_return] = ACTIONS(4188), - [anon_sym_co_yield] = ACTIONS(4188), - [anon_sym_R_DQUOTE] = ACTIONS(4190), - [anon_sym_LR_DQUOTE] = ACTIONS(4190), - [anon_sym_uR_DQUOTE] = ACTIONS(4190), - [anon_sym_UR_DQUOTE] = ACTIONS(4190), - [anon_sym_u8R_DQUOTE] = ACTIONS(4190), - [anon_sym_co_await] = ACTIONS(4188), - [anon_sym_new] = ACTIONS(4188), - [anon_sym_requires] = ACTIONS(4188), - [anon_sym_CARET_CARET] = ACTIONS(4190), - [anon_sym_LBRACK_COLON] = ACTIONS(4190), - [sym_this] = ACTIONS(4188), + [sym_identifier] = ACTIONS(4092), + [aux_sym_preproc_include_token1] = ACTIONS(4092), + [aux_sym_preproc_def_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token2] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [sym_preproc_directive] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym___extension__] = ACTIONS(4092), + [anon_sym_typedef] = ACTIONS(4092), + [anon_sym_virtual] = ACTIONS(4092), + [anon_sym_extern] = ACTIONS(4092), + [anon_sym___attribute__] = ACTIONS(4092), + [anon_sym___attribute] = ACTIONS(4092), + [anon_sym_using] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), + [anon_sym___declspec] = ACTIONS(4092), + [anon_sym___based] = ACTIONS(4092), + [anon_sym___cdecl] = ACTIONS(4092), + [anon_sym___clrcall] = ACTIONS(4092), + [anon_sym___stdcall] = ACTIONS(4092), + [anon_sym___fastcall] = ACTIONS(4092), + [anon_sym___thiscall] = ACTIONS(4092), + [anon_sym___vectorcall] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_signed] = ACTIONS(4092), + [anon_sym_unsigned] = ACTIONS(4092), + [anon_sym_long] = ACTIONS(4092), + [anon_sym_short] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_register] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym___inline] = ACTIONS(4092), + [anon_sym___inline__] = ACTIONS(4092), + [anon_sym___forceinline] = ACTIONS(4092), + [anon_sym_thread_local] = ACTIONS(4092), + [anon_sym___thread] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_constexpr] = ACTIONS(4092), + [anon_sym_volatile] = ACTIONS(4092), + [anon_sym_restrict] = ACTIONS(4092), + [anon_sym___restrict__] = ACTIONS(4092), + [anon_sym__Atomic] = ACTIONS(4092), + [anon_sym__Noreturn] = ACTIONS(4092), + [anon_sym_noreturn] = ACTIONS(4092), + [anon_sym__Nonnull] = ACTIONS(4092), + [anon_sym_mutable] = ACTIONS(4092), + [anon_sym_constinit] = ACTIONS(4092), + [anon_sym_consteval] = ACTIONS(4092), + [anon_sym_alignas] = ACTIONS(4092), + [anon_sym__Alignas] = ACTIONS(4092), + [sym_primitive_type] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_class] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(4092), + [anon_sym_case] = ACTIONS(4092), + [anon_sym_default] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_do] = ACTIONS(4092), + [anon_sym_for] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_goto] = ACTIONS(4092), + [anon_sym___try] = ACTIONS(4092), + [anon_sym___leave] = ACTIONS(4092), + [anon_sym_not] = ACTIONS(4092), + [anon_sym_compl] = ACTIONS(4092), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_sizeof] = ACTIONS(4092), + [anon_sym___alignof__] = ACTIONS(4092), + [anon_sym___alignof] = ACTIONS(4092), + [anon_sym__alignof] = ACTIONS(4092), + [anon_sym_alignof] = ACTIONS(4092), + [anon_sym__Alignof] = ACTIONS(4092), + [anon_sym_offsetof] = ACTIONS(4092), + [anon_sym__Generic] = ACTIONS(4092), + [anon_sym_typename] = ACTIONS(4092), + [anon_sym_asm] = ACTIONS(4092), + [anon_sym___asm__] = ACTIONS(4092), + [anon_sym___asm] = ACTIONS(4092), + [sym_number_literal] = ACTIONS(4094), + [anon_sym_L_SQUOTE] = ACTIONS(4094), + [anon_sym_u_SQUOTE] = ACTIONS(4094), + [anon_sym_U_SQUOTE] = ACTIONS(4094), + [anon_sym_u8_SQUOTE] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4094), + [anon_sym_L_DQUOTE] = ACTIONS(4094), + [anon_sym_u_DQUOTE] = ACTIONS(4094), + [anon_sym_U_DQUOTE] = ACTIONS(4094), + [anon_sym_u8_DQUOTE] = ACTIONS(4094), + [anon_sym_DQUOTE] = ACTIONS(4094), + [sym_true] = ACTIONS(4092), + [sym_false] = ACTIONS(4092), + [anon_sym_NULL] = ACTIONS(4092), + [anon_sym_nullptr] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4092), + [anon_sym_decltype] = ACTIONS(4092), + [anon_sym_explicit] = ACTIONS(4092), + [anon_sym_export] = ACTIONS(4092), + [anon_sym_module] = ACTIONS(4092), + [anon_sym_import] = ACTIONS(4092), + [anon_sym_template] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_delete] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_namespace] = ACTIONS(4092), + [anon_sym_static_assert] = ACTIONS(4092), + [anon_sym_concept] = ACTIONS(4092), + [anon_sym_co_return] = ACTIONS(4092), + [anon_sym_co_yield] = ACTIONS(4092), + [anon_sym_R_DQUOTE] = ACTIONS(4094), + [anon_sym_LR_DQUOTE] = ACTIONS(4094), + [anon_sym_uR_DQUOTE] = ACTIONS(4094), + [anon_sym_UR_DQUOTE] = ACTIONS(4094), + [anon_sym_u8R_DQUOTE] = ACTIONS(4094), + [anon_sym_co_await] = ACTIONS(4092), + [anon_sym_new] = ACTIONS(4092), + [anon_sym_requires] = ACTIONS(4092), + [anon_sym_CARET_CARET] = ACTIONS(4094), + [anon_sym_LBRACK_COLON] = ACTIONS(4094), + [sym_this] = ACTIONS(4092), }, [STATE(689)] = { - [sym_identifier] = ACTIONS(4196), - [aux_sym_preproc_include_token1] = ACTIONS(4196), - [aux_sym_preproc_def_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token2] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), - [sym_preproc_directive] = ACTIONS(4196), - [anon_sym_LPAREN2] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4198), - [anon_sym_TILDE] = ACTIONS(4198), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym___extension__] = ACTIONS(4196), - [anon_sym_typedef] = ACTIONS(4196), - [anon_sym_virtual] = ACTIONS(4196), - [anon_sym_extern] = ACTIONS(4196), - [anon_sym___attribute__] = ACTIONS(4196), - [anon_sym___attribute] = ACTIONS(4196), - [anon_sym_using] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), - [anon_sym___declspec] = ACTIONS(4196), - [anon_sym___based] = ACTIONS(4196), - [anon_sym___cdecl] = ACTIONS(4196), - [anon_sym___clrcall] = ACTIONS(4196), - [anon_sym___stdcall] = ACTIONS(4196), - [anon_sym___fastcall] = ACTIONS(4196), - [anon_sym___thiscall] = ACTIONS(4196), - [anon_sym___vectorcall] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_signed] = ACTIONS(4196), - [anon_sym_unsigned] = ACTIONS(4196), - [anon_sym_long] = ACTIONS(4196), - [anon_sym_short] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_static] = ACTIONS(4196), - [anon_sym_register] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym___inline] = ACTIONS(4196), - [anon_sym___inline__] = ACTIONS(4196), - [anon_sym___forceinline] = ACTIONS(4196), - [anon_sym_thread_local] = ACTIONS(4196), - [anon_sym___thread] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_constexpr] = ACTIONS(4196), - [anon_sym_volatile] = ACTIONS(4196), - [anon_sym_restrict] = ACTIONS(4196), - [anon_sym___restrict__] = ACTIONS(4196), - [anon_sym__Atomic] = ACTIONS(4196), - [anon_sym__Noreturn] = ACTIONS(4196), - [anon_sym_noreturn] = ACTIONS(4196), - [anon_sym__Nonnull] = ACTIONS(4196), - [anon_sym_mutable] = ACTIONS(4196), - [anon_sym_constinit] = ACTIONS(4196), - [anon_sym_consteval] = ACTIONS(4196), - [anon_sym_alignas] = ACTIONS(4196), - [anon_sym__Alignas] = ACTIONS(4196), - [sym_primitive_type] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_class] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_switch] = ACTIONS(4196), - [anon_sym_case] = ACTIONS(4196), - [anon_sym_default] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_do] = ACTIONS(4196), - [anon_sym_for] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_goto] = ACTIONS(4196), - [anon_sym___try] = ACTIONS(4196), - [anon_sym___leave] = ACTIONS(4196), - [anon_sym_not] = ACTIONS(4196), - [anon_sym_compl] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_sizeof] = ACTIONS(4196), - [anon_sym___alignof__] = ACTIONS(4196), - [anon_sym___alignof] = ACTIONS(4196), - [anon_sym__alignof] = ACTIONS(4196), - [anon_sym_alignof] = ACTIONS(4196), - [anon_sym__Alignof] = ACTIONS(4196), - [anon_sym_offsetof] = ACTIONS(4196), - [anon_sym__Generic] = ACTIONS(4196), - [anon_sym_typename] = ACTIONS(4196), - [anon_sym_asm] = ACTIONS(4196), - [anon_sym___asm__] = ACTIONS(4196), - [anon_sym___asm] = ACTIONS(4196), - [sym_number_literal] = ACTIONS(4198), - [anon_sym_L_SQUOTE] = ACTIONS(4198), - [anon_sym_u_SQUOTE] = ACTIONS(4198), - [anon_sym_U_SQUOTE] = ACTIONS(4198), - [anon_sym_u8_SQUOTE] = ACTIONS(4198), - [anon_sym_SQUOTE] = ACTIONS(4198), - [anon_sym_L_DQUOTE] = ACTIONS(4198), - [anon_sym_u_DQUOTE] = ACTIONS(4198), - [anon_sym_U_DQUOTE] = ACTIONS(4198), - [anon_sym_u8_DQUOTE] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4198), - [sym_true] = ACTIONS(4196), - [sym_false] = ACTIONS(4196), - [anon_sym_NULL] = ACTIONS(4196), - [anon_sym_nullptr] = ACTIONS(4196), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4196), - [anon_sym_decltype] = ACTIONS(4196), - [anon_sym_explicit] = ACTIONS(4196), - [anon_sym_export] = ACTIONS(4196), - [anon_sym_module] = ACTIONS(4196), - [anon_sym_import] = ACTIONS(4196), - [anon_sym_template] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_delete] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_namespace] = ACTIONS(4196), - [anon_sym_static_assert] = ACTIONS(4196), - [anon_sym_concept] = ACTIONS(4196), - [anon_sym_co_return] = ACTIONS(4196), - [anon_sym_co_yield] = ACTIONS(4196), - [anon_sym_R_DQUOTE] = ACTIONS(4198), - [anon_sym_LR_DQUOTE] = ACTIONS(4198), - [anon_sym_uR_DQUOTE] = ACTIONS(4198), - [anon_sym_UR_DQUOTE] = ACTIONS(4198), - [anon_sym_u8R_DQUOTE] = ACTIONS(4198), - [anon_sym_co_await] = ACTIONS(4196), - [anon_sym_new] = ACTIONS(4196), - [anon_sym_requires] = ACTIONS(4196), - [anon_sym_CARET_CARET] = ACTIONS(4198), - [anon_sym_LBRACK_COLON] = ACTIONS(4198), - [sym_this] = ACTIONS(4196), + [sym_identifier] = ACTIONS(3730), + [aux_sym_preproc_include_token1] = ACTIONS(3730), + [aux_sym_preproc_def_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token2] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3730), + [sym_preproc_directive] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_BANG] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym___extension__] = ACTIONS(3730), + [anon_sym_typedef] = ACTIONS(3730), + [anon_sym_virtual] = ACTIONS(3730), + [anon_sym_extern] = ACTIONS(3730), + [anon_sym___attribute__] = ACTIONS(3730), + [anon_sym___attribute] = ACTIONS(3730), + [anon_sym_using] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3732), + [anon_sym___declspec] = ACTIONS(3730), + [anon_sym___based] = ACTIONS(3730), + [anon_sym___cdecl] = ACTIONS(3730), + [anon_sym___clrcall] = ACTIONS(3730), + [anon_sym___stdcall] = ACTIONS(3730), + [anon_sym___fastcall] = ACTIONS(3730), + [anon_sym___thiscall] = ACTIONS(3730), + [anon_sym___vectorcall] = ACTIONS(3730), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_signed] = ACTIONS(3730), + [anon_sym_unsigned] = ACTIONS(3730), + [anon_sym_long] = ACTIONS(3730), + [anon_sym_short] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_static] = ACTIONS(3730), + [anon_sym_register] = ACTIONS(3730), + [anon_sym_inline] = ACTIONS(3730), + [anon_sym___inline] = ACTIONS(3730), + [anon_sym___inline__] = ACTIONS(3730), + [anon_sym___forceinline] = ACTIONS(3730), + [anon_sym_thread_local] = ACTIONS(3730), + [anon_sym___thread] = ACTIONS(3730), + [anon_sym_const] = ACTIONS(3730), + [anon_sym_constexpr] = ACTIONS(3730), + [anon_sym_volatile] = ACTIONS(3730), + [anon_sym_restrict] = ACTIONS(3730), + [anon_sym___restrict__] = ACTIONS(3730), + [anon_sym__Atomic] = ACTIONS(3730), + [anon_sym__Noreturn] = ACTIONS(3730), + [anon_sym_noreturn] = ACTIONS(3730), + [anon_sym__Nonnull] = ACTIONS(3730), + [anon_sym_mutable] = ACTIONS(3730), + [anon_sym_constinit] = ACTIONS(3730), + [anon_sym_consteval] = ACTIONS(3730), + [anon_sym_alignas] = ACTIONS(3730), + [anon_sym__Alignas] = ACTIONS(3730), + [sym_primitive_type] = ACTIONS(3730), + [anon_sym_enum] = ACTIONS(3730), + [anon_sym_class] = ACTIONS(3730), + [anon_sym_struct] = ACTIONS(3730), + [anon_sym_union] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_switch] = ACTIONS(3730), + [anon_sym_case] = ACTIONS(3730), + [anon_sym_default] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_break] = ACTIONS(3730), + [anon_sym_continue] = ACTIONS(3730), + [anon_sym_goto] = ACTIONS(3730), + [anon_sym___try] = ACTIONS(3730), + [anon_sym___leave] = ACTIONS(3730), + [anon_sym_not] = ACTIONS(3730), + [anon_sym_compl] = ACTIONS(3730), + [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_PLUS_PLUS] = ACTIONS(3732), + [anon_sym_sizeof] = ACTIONS(3730), + [anon_sym___alignof__] = ACTIONS(3730), + [anon_sym___alignof] = ACTIONS(3730), + [anon_sym__alignof] = ACTIONS(3730), + [anon_sym_alignof] = ACTIONS(3730), + [anon_sym__Alignof] = ACTIONS(3730), + [anon_sym_offsetof] = ACTIONS(3730), + [anon_sym__Generic] = ACTIONS(3730), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_asm] = ACTIONS(3730), + [anon_sym___asm__] = ACTIONS(3730), + [anon_sym___asm] = ACTIONS(3730), + [sym_number_literal] = ACTIONS(3732), + [anon_sym_L_SQUOTE] = ACTIONS(3732), + [anon_sym_u_SQUOTE] = ACTIONS(3732), + [anon_sym_U_SQUOTE] = ACTIONS(3732), + [anon_sym_u8_SQUOTE] = ACTIONS(3732), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_L_DQUOTE] = ACTIONS(3732), + [anon_sym_u_DQUOTE] = ACTIONS(3732), + [anon_sym_U_DQUOTE] = ACTIONS(3732), + [anon_sym_u8_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(3732), + [sym_true] = ACTIONS(3730), + [sym_false] = ACTIONS(3730), + [anon_sym_NULL] = ACTIONS(3730), + [anon_sym_nullptr] = ACTIONS(3730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3730), + [anon_sym_decltype] = ACTIONS(3730), + [anon_sym_explicit] = ACTIONS(3730), + [anon_sym_export] = ACTIONS(3730), + [anon_sym_module] = ACTIONS(3730), + [anon_sym_import] = ACTIONS(3730), + [anon_sym_template] = ACTIONS(3730), + [anon_sym_operator] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_delete] = ACTIONS(3730), + [anon_sym_throw] = ACTIONS(3730), + [anon_sym_namespace] = ACTIONS(3730), + [anon_sym_static_assert] = ACTIONS(3730), + [anon_sym_concept] = ACTIONS(3730), + [anon_sym_co_return] = ACTIONS(3730), + [anon_sym_co_yield] = ACTIONS(3730), + [anon_sym_R_DQUOTE] = ACTIONS(3732), + [anon_sym_LR_DQUOTE] = ACTIONS(3732), + [anon_sym_uR_DQUOTE] = ACTIONS(3732), + [anon_sym_UR_DQUOTE] = ACTIONS(3732), + [anon_sym_u8R_DQUOTE] = ACTIONS(3732), + [anon_sym_co_await] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_requires] = ACTIONS(3730), + [anon_sym_CARET_CARET] = ACTIONS(3732), + [anon_sym_LBRACK_COLON] = ACTIONS(3732), + [sym_this] = ACTIONS(3730), }, [STATE(690)] = { - [sym_identifier] = ACTIONS(4200), - [aux_sym_preproc_include_token1] = ACTIONS(4200), - [aux_sym_preproc_def_token1] = ACTIONS(4200), - [aux_sym_preproc_if_token1] = ACTIONS(4200), - [aux_sym_preproc_if_token2] = ACTIONS(4200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4200), - [sym_preproc_directive] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4202), - [anon_sym_TILDE] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_AMP] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym___extension__] = ACTIONS(4200), - [anon_sym_typedef] = ACTIONS(4200), - [anon_sym_virtual] = ACTIONS(4200), - [anon_sym_extern] = ACTIONS(4200), - [anon_sym___attribute__] = ACTIONS(4200), - [anon_sym___attribute] = ACTIONS(4200), - [anon_sym_using] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4202), - [anon_sym___declspec] = ACTIONS(4200), - [anon_sym___based] = ACTIONS(4200), - [anon_sym___cdecl] = ACTIONS(4200), - [anon_sym___clrcall] = ACTIONS(4200), - [anon_sym___stdcall] = ACTIONS(4200), - [anon_sym___fastcall] = ACTIONS(4200), - [anon_sym___thiscall] = ACTIONS(4200), - [anon_sym___vectorcall] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4202), - [anon_sym_signed] = ACTIONS(4200), - [anon_sym_unsigned] = ACTIONS(4200), - [anon_sym_long] = ACTIONS(4200), - [anon_sym_short] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(4200), - [anon_sym_static] = ACTIONS(4200), - [anon_sym_register] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym___inline] = ACTIONS(4200), - [anon_sym___inline__] = ACTIONS(4200), - [anon_sym___forceinline] = ACTIONS(4200), - [anon_sym_thread_local] = ACTIONS(4200), - [anon_sym___thread] = ACTIONS(4200), - [anon_sym_const] = ACTIONS(4200), - [anon_sym_constexpr] = ACTIONS(4200), - [anon_sym_volatile] = ACTIONS(4200), - [anon_sym_restrict] = ACTIONS(4200), - [anon_sym___restrict__] = ACTIONS(4200), - [anon_sym__Atomic] = ACTIONS(4200), - [anon_sym__Noreturn] = ACTIONS(4200), - [anon_sym_noreturn] = ACTIONS(4200), - [anon_sym__Nonnull] = ACTIONS(4200), - [anon_sym_mutable] = ACTIONS(4200), - [anon_sym_constinit] = ACTIONS(4200), - [anon_sym_consteval] = ACTIONS(4200), - [anon_sym_alignas] = ACTIONS(4200), - [anon_sym__Alignas] = ACTIONS(4200), - [sym_primitive_type] = ACTIONS(4200), - [anon_sym_enum] = ACTIONS(4200), - [anon_sym_class] = ACTIONS(4200), - [anon_sym_struct] = ACTIONS(4200), - [anon_sym_union] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_switch] = ACTIONS(4200), - [anon_sym_case] = ACTIONS(4200), - [anon_sym_default] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_do] = ACTIONS(4200), - [anon_sym_for] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_goto] = ACTIONS(4200), - [anon_sym___try] = ACTIONS(4200), - [anon_sym___leave] = ACTIONS(4200), - [anon_sym_not] = ACTIONS(4200), - [anon_sym_compl] = ACTIONS(4200), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_sizeof] = ACTIONS(4200), - [anon_sym___alignof__] = ACTIONS(4200), - [anon_sym___alignof] = ACTIONS(4200), - [anon_sym__alignof] = ACTIONS(4200), - [anon_sym_alignof] = ACTIONS(4200), - [anon_sym__Alignof] = ACTIONS(4200), - [anon_sym_offsetof] = ACTIONS(4200), - [anon_sym__Generic] = ACTIONS(4200), - [anon_sym_typename] = ACTIONS(4200), - [anon_sym_asm] = ACTIONS(4200), - [anon_sym___asm__] = ACTIONS(4200), - [anon_sym___asm] = ACTIONS(4200), - [sym_number_literal] = ACTIONS(4202), - [anon_sym_L_SQUOTE] = ACTIONS(4202), - [anon_sym_u_SQUOTE] = ACTIONS(4202), - [anon_sym_U_SQUOTE] = ACTIONS(4202), - [anon_sym_u8_SQUOTE] = ACTIONS(4202), - [anon_sym_SQUOTE] = ACTIONS(4202), - [anon_sym_L_DQUOTE] = ACTIONS(4202), - [anon_sym_u_DQUOTE] = ACTIONS(4202), - [anon_sym_U_DQUOTE] = ACTIONS(4202), - [anon_sym_u8_DQUOTE] = ACTIONS(4202), - [anon_sym_DQUOTE] = ACTIONS(4202), - [sym_true] = ACTIONS(4200), - [sym_false] = ACTIONS(4200), - [anon_sym_NULL] = ACTIONS(4200), - [anon_sym_nullptr] = ACTIONS(4200), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4200), - [anon_sym_decltype] = ACTIONS(4200), - [anon_sym_explicit] = ACTIONS(4200), - [anon_sym_export] = ACTIONS(4200), - [anon_sym_module] = ACTIONS(4200), - [anon_sym_import] = ACTIONS(4200), - [anon_sym_template] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_delete] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_namespace] = ACTIONS(4200), - [anon_sym_static_assert] = ACTIONS(4200), - [anon_sym_concept] = ACTIONS(4200), - [anon_sym_co_return] = ACTIONS(4200), - [anon_sym_co_yield] = ACTIONS(4200), - [anon_sym_R_DQUOTE] = ACTIONS(4202), - [anon_sym_LR_DQUOTE] = ACTIONS(4202), - [anon_sym_uR_DQUOTE] = ACTIONS(4202), - [anon_sym_UR_DQUOTE] = ACTIONS(4202), - [anon_sym_u8R_DQUOTE] = ACTIONS(4202), - [anon_sym_co_await] = ACTIONS(4200), - [anon_sym_new] = ACTIONS(4200), - [anon_sym_requires] = ACTIONS(4200), - [anon_sym_CARET_CARET] = ACTIONS(4202), - [anon_sym_LBRACK_COLON] = ACTIONS(4202), - [sym_this] = ACTIONS(4200), + [sym_identifier] = ACTIONS(3530), + [aux_sym_preproc_include_token1] = ACTIONS(3530), + [aux_sym_preproc_def_token1] = ACTIONS(3530), + [aux_sym_preproc_if_token1] = ACTIONS(3530), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3530), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3530), + [sym_preproc_directive] = ACTIONS(3530), + [anon_sym_LPAREN2] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_STAR] = ACTIONS(3532), + [anon_sym_AMP_AMP] = ACTIONS(3532), + [anon_sym_AMP] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym___extension__] = ACTIONS(3530), + [anon_sym_typedef] = ACTIONS(3530), + [anon_sym_virtual] = ACTIONS(3530), + [anon_sym_extern] = ACTIONS(3530), + [anon_sym___attribute__] = ACTIONS(3530), + [anon_sym___attribute] = ACTIONS(3530), + [anon_sym_using] = ACTIONS(3530), + [anon_sym_COLON_COLON] = ACTIONS(3532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3532), + [anon_sym___declspec] = ACTIONS(3530), + [anon_sym___based] = ACTIONS(3530), + [anon_sym___cdecl] = ACTIONS(3530), + [anon_sym___clrcall] = ACTIONS(3530), + [anon_sym___stdcall] = ACTIONS(3530), + [anon_sym___fastcall] = ACTIONS(3530), + [anon_sym___thiscall] = ACTIONS(3530), + [anon_sym___vectorcall] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_signed] = ACTIONS(3530), + [anon_sym_unsigned] = ACTIONS(3530), + [anon_sym_long] = ACTIONS(3530), + [anon_sym_short] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_register] = ACTIONS(3530), + [anon_sym_inline] = ACTIONS(3530), + [anon_sym___inline] = ACTIONS(3530), + [anon_sym___inline__] = ACTIONS(3530), + [anon_sym___forceinline] = ACTIONS(3530), + [anon_sym_thread_local] = ACTIONS(3530), + [anon_sym___thread] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_constexpr] = ACTIONS(3530), + [anon_sym_volatile] = ACTIONS(3530), + [anon_sym_restrict] = ACTIONS(3530), + [anon_sym___restrict__] = ACTIONS(3530), + [anon_sym__Atomic] = ACTIONS(3530), + [anon_sym__Noreturn] = ACTIONS(3530), + [anon_sym_noreturn] = ACTIONS(3530), + [anon_sym__Nonnull] = ACTIONS(3530), + [anon_sym_mutable] = ACTIONS(3530), + [anon_sym_constinit] = ACTIONS(3530), + [anon_sym_consteval] = ACTIONS(3530), + [anon_sym_alignas] = ACTIONS(3530), + [anon_sym__Alignas] = ACTIONS(3530), + [sym_primitive_type] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_struct] = ACTIONS(3530), + [anon_sym_union] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_case] = ACTIONS(3530), + [anon_sym_default] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_goto] = ACTIONS(3530), + [anon_sym___try] = ACTIONS(3530), + [anon_sym___leave] = ACTIONS(3530), + [anon_sym_not] = ACTIONS(3530), + [anon_sym_compl] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_sizeof] = ACTIONS(3530), + [anon_sym___alignof__] = ACTIONS(3530), + [anon_sym___alignof] = ACTIONS(3530), + [anon_sym__alignof] = ACTIONS(3530), + [anon_sym_alignof] = ACTIONS(3530), + [anon_sym__Alignof] = ACTIONS(3530), + [anon_sym_offsetof] = ACTIONS(3530), + [anon_sym__Generic] = ACTIONS(3530), + [anon_sym_typename] = ACTIONS(3530), + [anon_sym_asm] = ACTIONS(3530), + [anon_sym___asm__] = ACTIONS(3530), + [anon_sym___asm] = ACTIONS(3530), + [sym_number_literal] = ACTIONS(3532), + [anon_sym_L_SQUOTE] = ACTIONS(3532), + [anon_sym_u_SQUOTE] = ACTIONS(3532), + [anon_sym_U_SQUOTE] = ACTIONS(3532), + [anon_sym_u8_SQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_L_DQUOTE] = ACTIONS(3532), + [anon_sym_u_DQUOTE] = ACTIONS(3532), + [anon_sym_U_DQUOTE] = ACTIONS(3532), + [anon_sym_u8_DQUOTE] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [anon_sym_NULL] = ACTIONS(3530), + [anon_sym_nullptr] = ACTIONS(3530), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3530), + [anon_sym_decltype] = ACTIONS(3530), + [anon_sym_explicit] = ACTIONS(3530), + [anon_sym_export] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_template] = ACTIONS(3530), + [anon_sym_operator] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3530), + [anon_sym_static_assert] = ACTIONS(3530), + [anon_sym_concept] = ACTIONS(3530), + [anon_sym_co_return] = ACTIONS(3530), + [anon_sym_co_yield] = ACTIONS(3530), + [anon_sym_R_DQUOTE] = ACTIONS(3532), + [anon_sym_LR_DQUOTE] = ACTIONS(3532), + [anon_sym_uR_DQUOTE] = ACTIONS(3532), + [anon_sym_UR_DQUOTE] = ACTIONS(3532), + [anon_sym_u8R_DQUOTE] = ACTIONS(3532), + [anon_sym_co_await] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_requires] = ACTIONS(3530), + [anon_sym_CARET_CARET] = ACTIONS(3532), + [anon_sym_LBRACK_COLON] = ACTIONS(3532), + [sym_this] = ACTIONS(3530), }, [STATE(691)] = { - [sym_identifier] = ACTIONS(4204), - [aux_sym_preproc_include_token1] = ACTIONS(4204), - [aux_sym_preproc_def_token1] = ACTIONS(4204), - [aux_sym_preproc_if_token1] = ACTIONS(4204), - [aux_sym_preproc_if_token2] = ACTIONS(4204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4204), - [sym_preproc_directive] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(4206), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_TILDE] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4204), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_AMP_AMP] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(4204), - [anon_sym_SEMI] = ACTIONS(4206), - [anon_sym___extension__] = ACTIONS(4204), - [anon_sym_typedef] = ACTIONS(4204), - [anon_sym_virtual] = ACTIONS(4204), - [anon_sym_extern] = ACTIONS(4204), - [anon_sym___attribute__] = ACTIONS(4204), - [anon_sym___attribute] = ACTIONS(4204), - [anon_sym_using] = ACTIONS(4204), - [anon_sym_COLON_COLON] = ACTIONS(4206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4206), - [anon_sym___declspec] = ACTIONS(4204), - [anon_sym___based] = ACTIONS(4204), - [anon_sym___cdecl] = ACTIONS(4204), - [anon_sym___clrcall] = ACTIONS(4204), - [anon_sym___stdcall] = ACTIONS(4204), - [anon_sym___fastcall] = ACTIONS(4204), - [anon_sym___thiscall] = ACTIONS(4204), - [anon_sym___vectorcall] = ACTIONS(4204), - [anon_sym_LBRACE] = ACTIONS(4206), - [anon_sym_signed] = ACTIONS(4204), - [anon_sym_unsigned] = ACTIONS(4204), - [anon_sym_long] = ACTIONS(4204), - [anon_sym_short] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_static] = ACTIONS(4204), - [anon_sym_register] = ACTIONS(4204), - [anon_sym_inline] = ACTIONS(4204), - [anon_sym___inline] = ACTIONS(4204), - [anon_sym___inline__] = ACTIONS(4204), - [anon_sym___forceinline] = ACTIONS(4204), - [anon_sym_thread_local] = ACTIONS(4204), - [anon_sym___thread] = ACTIONS(4204), - [anon_sym_const] = ACTIONS(4204), - [anon_sym_constexpr] = ACTIONS(4204), - [anon_sym_volatile] = ACTIONS(4204), - [anon_sym_restrict] = ACTIONS(4204), - [anon_sym___restrict__] = ACTIONS(4204), - [anon_sym__Atomic] = ACTIONS(4204), - [anon_sym__Noreturn] = ACTIONS(4204), - [anon_sym_noreturn] = ACTIONS(4204), - [anon_sym__Nonnull] = ACTIONS(4204), - [anon_sym_mutable] = ACTIONS(4204), - [anon_sym_constinit] = ACTIONS(4204), - [anon_sym_consteval] = ACTIONS(4204), - [anon_sym_alignas] = ACTIONS(4204), - [anon_sym__Alignas] = ACTIONS(4204), - [sym_primitive_type] = ACTIONS(4204), - [anon_sym_enum] = ACTIONS(4204), - [anon_sym_class] = ACTIONS(4204), - [anon_sym_struct] = ACTIONS(4204), - [anon_sym_union] = ACTIONS(4204), - [anon_sym_if] = ACTIONS(4204), - [anon_sym_switch] = ACTIONS(4204), - [anon_sym_case] = ACTIONS(4204), - [anon_sym_default] = ACTIONS(4204), - [anon_sym_while] = ACTIONS(4204), - [anon_sym_do] = ACTIONS(4204), - [anon_sym_for] = ACTIONS(4204), - [anon_sym_return] = ACTIONS(4204), - [anon_sym_break] = ACTIONS(4204), - [anon_sym_continue] = ACTIONS(4204), - [anon_sym_goto] = ACTIONS(4204), - [anon_sym___try] = ACTIONS(4204), - [anon_sym___leave] = ACTIONS(4204), - [anon_sym_not] = ACTIONS(4204), - [anon_sym_compl] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4206), - [anon_sym_PLUS_PLUS] = ACTIONS(4206), - [anon_sym_sizeof] = ACTIONS(4204), - [anon_sym___alignof__] = ACTIONS(4204), - [anon_sym___alignof] = ACTIONS(4204), - [anon_sym__alignof] = ACTIONS(4204), - [anon_sym_alignof] = ACTIONS(4204), - [anon_sym__Alignof] = ACTIONS(4204), - [anon_sym_offsetof] = ACTIONS(4204), - [anon_sym__Generic] = ACTIONS(4204), - [anon_sym_typename] = ACTIONS(4204), - [anon_sym_asm] = ACTIONS(4204), - [anon_sym___asm__] = ACTIONS(4204), - [anon_sym___asm] = ACTIONS(4204), - [sym_number_literal] = ACTIONS(4206), - [anon_sym_L_SQUOTE] = ACTIONS(4206), - [anon_sym_u_SQUOTE] = ACTIONS(4206), - [anon_sym_U_SQUOTE] = ACTIONS(4206), - [anon_sym_u8_SQUOTE] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4206), - [anon_sym_L_DQUOTE] = ACTIONS(4206), - [anon_sym_u_DQUOTE] = ACTIONS(4206), - [anon_sym_U_DQUOTE] = ACTIONS(4206), - [anon_sym_u8_DQUOTE] = ACTIONS(4206), - [anon_sym_DQUOTE] = ACTIONS(4206), - [sym_true] = ACTIONS(4204), - [sym_false] = ACTIONS(4204), - [anon_sym_NULL] = ACTIONS(4204), - [anon_sym_nullptr] = ACTIONS(4204), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4204), - [anon_sym_decltype] = ACTIONS(4204), - [anon_sym_explicit] = ACTIONS(4204), - [anon_sym_export] = ACTIONS(4204), - [anon_sym_module] = ACTIONS(4204), - [anon_sym_import] = ACTIONS(4204), - [anon_sym_template] = ACTIONS(4204), - [anon_sym_operator] = ACTIONS(4204), - [anon_sym_try] = ACTIONS(4204), - [anon_sym_delete] = ACTIONS(4204), - [anon_sym_throw] = ACTIONS(4204), - [anon_sym_namespace] = ACTIONS(4204), - [anon_sym_static_assert] = ACTIONS(4204), - [anon_sym_concept] = ACTIONS(4204), - [anon_sym_co_return] = ACTIONS(4204), - [anon_sym_co_yield] = ACTIONS(4204), - [anon_sym_R_DQUOTE] = ACTIONS(4206), - [anon_sym_LR_DQUOTE] = ACTIONS(4206), - [anon_sym_uR_DQUOTE] = ACTIONS(4206), - [anon_sym_UR_DQUOTE] = ACTIONS(4206), - [anon_sym_u8R_DQUOTE] = ACTIONS(4206), - [anon_sym_co_await] = ACTIONS(4204), - [anon_sym_new] = ACTIONS(4204), - [anon_sym_requires] = ACTIONS(4204), - [anon_sym_CARET_CARET] = ACTIONS(4206), - [anon_sym_LBRACK_COLON] = ACTIONS(4206), - [sym_this] = ACTIONS(4204), + [sym_identifier] = ACTIONS(3718), + [aux_sym_preproc_include_token1] = ACTIONS(3718), + [aux_sym_preproc_def_token1] = ACTIONS(3718), + [aux_sym_preproc_if_token1] = ACTIONS(3718), + [aux_sym_preproc_if_token2] = ACTIONS(3718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3718), + [sym_preproc_directive] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_BANG] = ACTIONS(3720), + [anon_sym_TILDE] = ACTIONS(3720), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3720), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym___extension__] = ACTIONS(3718), + [anon_sym_typedef] = ACTIONS(3718), + [anon_sym_virtual] = ACTIONS(3718), + [anon_sym_extern] = ACTIONS(3718), + [anon_sym___attribute__] = ACTIONS(3718), + [anon_sym___attribute] = ACTIONS(3718), + [anon_sym_using] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3720), + [anon_sym___declspec] = ACTIONS(3718), + [anon_sym___based] = ACTIONS(3718), + [anon_sym___cdecl] = ACTIONS(3718), + [anon_sym___clrcall] = ACTIONS(3718), + [anon_sym___stdcall] = ACTIONS(3718), + [anon_sym___fastcall] = ACTIONS(3718), + [anon_sym___thiscall] = ACTIONS(3718), + [anon_sym___vectorcall] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3720), + [anon_sym_signed] = ACTIONS(3718), + [anon_sym_unsigned] = ACTIONS(3718), + [anon_sym_long] = ACTIONS(3718), + [anon_sym_short] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_static] = ACTIONS(3718), + [anon_sym_register] = ACTIONS(3718), + [anon_sym_inline] = ACTIONS(3718), + [anon_sym___inline] = ACTIONS(3718), + [anon_sym___inline__] = ACTIONS(3718), + [anon_sym___forceinline] = ACTIONS(3718), + [anon_sym_thread_local] = ACTIONS(3718), + [anon_sym___thread] = ACTIONS(3718), + [anon_sym_const] = ACTIONS(3718), + [anon_sym_constexpr] = ACTIONS(3718), + [anon_sym_volatile] = ACTIONS(3718), + [anon_sym_restrict] = ACTIONS(3718), + [anon_sym___restrict__] = ACTIONS(3718), + [anon_sym__Atomic] = ACTIONS(3718), + [anon_sym__Noreturn] = ACTIONS(3718), + [anon_sym_noreturn] = ACTIONS(3718), + [anon_sym__Nonnull] = ACTIONS(3718), + [anon_sym_mutable] = ACTIONS(3718), + [anon_sym_constinit] = ACTIONS(3718), + [anon_sym_consteval] = ACTIONS(3718), + [anon_sym_alignas] = ACTIONS(3718), + [anon_sym__Alignas] = ACTIONS(3718), + [sym_primitive_type] = ACTIONS(3718), + [anon_sym_enum] = ACTIONS(3718), + [anon_sym_class] = ACTIONS(3718), + [anon_sym_struct] = ACTIONS(3718), + [anon_sym_union] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_switch] = ACTIONS(3718), + [anon_sym_case] = ACTIONS(3718), + [anon_sym_default] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_break] = ACTIONS(3718), + [anon_sym_continue] = ACTIONS(3718), + [anon_sym_goto] = ACTIONS(3718), + [anon_sym___try] = ACTIONS(3718), + [anon_sym___leave] = ACTIONS(3718), + [anon_sym_not] = ACTIONS(3718), + [anon_sym_compl] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3720), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_sizeof] = ACTIONS(3718), + [anon_sym___alignof__] = ACTIONS(3718), + [anon_sym___alignof] = ACTIONS(3718), + [anon_sym__alignof] = ACTIONS(3718), + [anon_sym_alignof] = ACTIONS(3718), + [anon_sym__Alignof] = ACTIONS(3718), + [anon_sym_offsetof] = ACTIONS(3718), + [anon_sym__Generic] = ACTIONS(3718), + [anon_sym_typename] = ACTIONS(3718), + [anon_sym_asm] = ACTIONS(3718), + [anon_sym___asm__] = ACTIONS(3718), + [anon_sym___asm] = ACTIONS(3718), + [sym_number_literal] = ACTIONS(3720), + [anon_sym_L_SQUOTE] = ACTIONS(3720), + [anon_sym_u_SQUOTE] = ACTIONS(3720), + [anon_sym_U_SQUOTE] = ACTIONS(3720), + [anon_sym_u8_SQUOTE] = ACTIONS(3720), + [anon_sym_SQUOTE] = ACTIONS(3720), + [anon_sym_L_DQUOTE] = ACTIONS(3720), + [anon_sym_u_DQUOTE] = ACTIONS(3720), + [anon_sym_U_DQUOTE] = ACTIONS(3720), + [anon_sym_u8_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE] = ACTIONS(3720), + [sym_true] = ACTIONS(3718), + [sym_false] = ACTIONS(3718), + [anon_sym_NULL] = ACTIONS(3718), + [anon_sym_nullptr] = ACTIONS(3718), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(3718), + [anon_sym_explicit] = ACTIONS(3718), + [anon_sym_export] = ACTIONS(3718), + [anon_sym_module] = ACTIONS(3718), + [anon_sym_import] = ACTIONS(3718), + [anon_sym_template] = ACTIONS(3718), + [anon_sym_operator] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_throw] = ACTIONS(3718), + [anon_sym_namespace] = ACTIONS(3718), + [anon_sym_static_assert] = ACTIONS(3718), + [anon_sym_concept] = ACTIONS(3718), + [anon_sym_co_return] = ACTIONS(3718), + [anon_sym_co_yield] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(3720), + [anon_sym_LR_DQUOTE] = ACTIONS(3720), + [anon_sym_uR_DQUOTE] = ACTIONS(3720), + [anon_sym_UR_DQUOTE] = ACTIONS(3720), + [anon_sym_u8R_DQUOTE] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3718), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_requires] = ACTIONS(3718), + [anon_sym_CARET_CARET] = ACTIONS(3720), + [anon_sym_LBRACK_COLON] = ACTIONS(3720), + [sym_this] = ACTIONS(3718), }, [STATE(692)] = { - [sym_identifier] = ACTIONS(4208), - [aux_sym_preproc_include_token1] = ACTIONS(4208), - [aux_sym_preproc_def_token1] = ACTIONS(4208), - [aux_sym_preproc_if_token1] = ACTIONS(4208), - [aux_sym_preproc_if_token2] = ACTIONS(4208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4208), - [sym_preproc_directive] = ACTIONS(4208), - [anon_sym_LPAREN2] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_TILDE] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym___extension__] = ACTIONS(4208), - [anon_sym_typedef] = ACTIONS(4208), - [anon_sym_virtual] = ACTIONS(4208), - [anon_sym_extern] = ACTIONS(4208), - [anon_sym___attribute__] = ACTIONS(4208), - [anon_sym___attribute] = ACTIONS(4208), - [anon_sym_using] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4210), - [anon_sym___declspec] = ACTIONS(4208), - [anon_sym___based] = ACTIONS(4208), - [anon_sym___cdecl] = ACTIONS(4208), - [anon_sym___clrcall] = ACTIONS(4208), - [anon_sym___stdcall] = ACTIONS(4208), - [anon_sym___fastcall] = ACTIONS(4208), - [anon_sym___thiscall] = ACTIONS(4208), - [anon_sym___vectorcall] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4210), - [anon_sym_signed] = ACTIONS(4208), - [anon_sym_unsigned] = ACTIONS(4208), - [anon_sym_long] = ACTIONS(4208), - [anon_sym_short] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_static] = ACTIONS(4208), - [anon_sym_register] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym___inline] = ACTIONS(4208), - [anon_sym___inline__] = ACTIONS(4208), - [anon_sym___forceinline] = ACTIONS(4208), - [anon_sym_thread_local] = ACTIONS(4208), - [anon_sym___thread] = ACTIONS(4208), - [anon_sym_const] = ACTIONS(4208), - [anon_sym_constexpr] = ACTIONS(4208), - [anon_sym_volatile] = ACTIONS(4208), - [anon_sym_restrict] = ACTIONS(4208), - [anon_sym___restrict__] = ACTIONS(4208), - [anon_sym__Atomic] = ACTIONS(4208), - [anon_sym__Noreturn] = ACTIONS(4208), - [anon_sym_noreturn] = ACTIONS(4208), - [anon_sym__Nonnull] = ACTIONS(4208), - [anon_sym_mutable] = ACTIONS(4208), - [anon_sym_constinit] = ACTIONS(4208), - [anon_sym_consteval] = ACTIONS(4208), - [anon_sym_alignas] = ACTIONS(4208), - [anon_sym__Alignas] = ACTIONS(4208), - [sym_primitive_type] = ACTIONS(4208), - [anon_sym_enum] = ACTIONS(4208), - [anon_sym_class] = ACTIONS(4208), - [anon_sym_struct] = ACTIONS(4208), - [anon_sym_union] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_switch] = ACTIONS(4208), - [anon_sym_case] = ACTIONS(4208), - [anon_sym_default] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_do] = ACTIONS(4208), - [anon_sym_for] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_goto] = ACTIONS(4208), - [anon_sym___try] = ACTIONS(4208), - [anon_sym___leave] = ACTIONS(4208), - [anon_sym_not] = ACTIONS(4208), - [anon_sym_compl] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_sizeof] = ACTIONS(4208), - [anon_sym___alignof__] = ACTIONS(4208), - [anon_sym___alignof] = ACTIONS(4208), - [anon_sym__alignof] = ACTIONS(4208), - [anon_sym_alignof] = ACTIONS(4208), - [anon_sym__Alignof] = ACTIONS(4208), - [anon_sym_offsetof] = ACTIONS(4208), - [anon_sym__Generic] = ACTIONS(4208), - [anon_sym_typename] = ACTIONS(4208), - [anon_sym_asm] = ACTIONS(4208), - [anon_sym___asm__] = ACTIONS(4208), - [anon_sym___asm] = ACTIONS(4208), - [sym_number_literal] = ACTIONS(4210), - [anon_sym_L_SQUOTE] = ACTIONS(4210), - [anon_sym_u_SQUOTE] = ACTIONS(4210), - [anon_sym_U_SQUOTE] = ACTIONS(4210), - [anon_sym_u8_SQUOTE] = ACTIONS(4210), - [anon_sym_SQUOTE] = ACTIONS(4210), - [anon_sym_L_DQUOTE] = ACTIONS(4210), - [anon_sym_u_DQUOTE] = ACTIONS(4210), - [anon_sym_U_DQUOTE] = ACTIONS(4210), - [anon_sym_u8_DQUOTE] = ACTIONS(4210), - [anon_sym_DQUOTE] = ACTIONS(4210), - [sym_true] = ACTIONS(4208), - [sym_false] = ACTIONS(4208), - [anon_sym_NULL] = ACTIONS(4208), - [anon_sym_nullptr] = ACTIONS(4208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4208), - [anon_sym_decltype] = ACTIONS(4208), - [anon_sym_explicit] = ACTIONS(4208), - [anon_sym_export] = ACTIONS(4208), - [anon_sym_module] = ACTIONS(4208), - [anon_sym_import] = ACTIONS(4208), - [anon_sym_template] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_delete] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_namespace] = ACTIONS(4208), - [anon_sym_static_assert] = ACTIONS(4208), - [anon_sym_concept] = ACTIONS(4208), - [anon_sym_co_return] = ACTIONS(4208), - [anon_sym_co_yield] = ACTIONS(4208), - [anon_sym_R_DQUOTE] = ACTIONS(4210), - [anon_sym_LR_DQUOTE] = ACTIONS(4210), - [anon_sym_uR_DQUOTE] = ACTIONS(4210), - [anon_sym_UR_DQUOTE] = ACTIONS(4210), - [anon_sym_u8R_DQUOTE] = ACTIONS(4210), - [anon_sym_co_await] = ACTIONS(4208), - [anon_sym_new] = ACTIONS(4208), - [anon_sym_requires] = ACTIONS(4208), - [anon_sym_CARET_CARET] = ACTIONS(4210), - [anon_sym_LBRACK_COLON] = ACTIONS(4210), - [sym_this] = ACTIONS(4208), + [sym_identifier] = ACTIONS(4239), + [aux_sym_preproc_include_token1] = ACTIONS(4239), + [aux_sym_preproc_def_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token2] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4239), + [sym_preproc_directive] = ACTIONS(4239), + [anon_sym_LPAREN2] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_TILDE] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym___extension__] = ACTIONS(4239), + [anon_sym_typedef] = ACTIONS(4239), + [anon_sym_virtual] = ACTIONS(4239), + [anon_sym_extern] = ACTIONS(4239), + [anon_sym___attribute__] = ACTIONS(4239), + [anon_sym___attribute] = ACTIONS(4239), + [anon_sym_using] = ACTIONS(4239), + [anon_sym_COLON_COLON] = ACTIONS(4241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4241), + [anon_sym___declspec] = ACTIONS(4239), + [anon_sym___based] = ACTIONS(4239), + [anon_sym___cdecl] = ACTIONS(4239), + [anon_sym___clrcall] = ACTIONS(4239), + [anon_sym___stdcall] = ACTIONS(4239), + [anon_sym___fastcall] = ACTIONS(4239), + [anon_sym___thiscall] = ACTIONS(4239), + [anon_sym___vectorcall] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4241), + [anon_sym_signed] = ACTIONS(4239), + [anon_sym_unsigned] = ACTIONS(4239), + [anon_sym_long] = ACTIONS(4239), + [anon_sym_short] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_static] = ACTIONS(4239), + [anon_sym_register] = ACTIONS(4239), + [anon_sym_inline] = ACTIONS(4239), + [anon_sym___inline] = ACTIONS(4239), + [anon_sym___inline__] = ACTIONS(4239), + [anon_sym___forceinline] = ACTIONS(4239), + [anon_sym_thread_local] = ACTIONS(4239), + [anon_sym___thread] = ACTIONS(4239), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_constexpr] = ACTIONS(4239), + [anon_sym_volatile] = ACTIONS(4239), + [anon_sym_restrict] = ACTIONS(4239), + [anon_sym___restrict__] = ACTIONS(4239), + [anon_sym__Atomic] = ACTIONS(4239), + [anon_sym__Noreturn] = ACTIONS(4239), + [anon_sym_noreturn] = ACTIONS(4239), + [anon_sym__Nonnull] = ACTIONS(4239), + [anon_sym_mutable] = ACTIONS(4239), + [anon_sym_constinit] = ACTIONS(4239), + [anon_sym_consteval] = ACTIONS(4239), + [anon_sym_alignas] = ACTIONS(4239), + [anon_sym__Alignas] = ACTIONS(4239), + [sym_primitive_type] = ACTIONS(4239), + [anon_sym_enum] = ACTIONS(4239), + [anon_sym_class] = ACTIONS(4239), + [anon_sym_struct] = ACTIONS(4239), + [anon_sym_union] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(4239), + [anon_sym_switch] = ACTIONS(4239), + [anon_sym_case] = ACTIONS(4239), + [anon_sym_default] = ACTIONS(4239), + [anon_sym_while] = ACTIONS(4239), + [anon_sym_do] = ACTIONS(4239), + [anon_sym_for] = ACTIONS(4239), + [anon_sym_return] = ACTIONS(4239), + [anon_sym_break] = ACTIONS(4239), + [anon_sym_continue] = ACTIONS(4239), + [anon_sym_goto] = ACTIONS(4239), + [anon_sym___try] = ACTIONS(4239), + [anon_sym___leave] = ACTIONS(4239), + [anon_sym_not] = ACTIONS(4239), + [anon_sym_compl] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_PLUS_PLUS] = ACTIONS(4241), + [anon_sym_sizeof] = ACTIONS(4239), + [anon_sym___alignof__] = ACTIONS(4239), + [anon_sym___alignof] = ACTIONS(4239), + [anon_sym__alignof] = ACTIONS(4239), + [anon_sym_alignof] = ACTIONS(4239), + [anon_sym__Alignof] = ACTIONS(4239), + [anon_sym_offsetof] = ACTIONS(4239), + [anon_sym__Generic] = ACTIONS(4239), + [anon_sym_typename] = ACTIONS(4239), + [anon_sym_asm] = ACTIONS(4239), + [anon_sym___asm__] = ACTIONS(4239), + [anon_sym___asm] = ACTIONS(4239), + [sym_number_literal] = ACTIONS(4241), + [anon_sym_L_SQUOTE] = ACTIONS(4241), + [anon_sym_u_SQUOTE] = ACTIONS(4241), + [anon_sym_U_SQUOTE] = ACTIONS(4241), + [anon_sym_u8_SQUOTE] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4241), + [anon_sym_L_DQUOTE] = ACTIONS(4241), + [anon_sym_u_DQUOTE] = ACTIONS(4241), + [anon_sym_U_DQUOTE] = ACTIONS(4241), + [anon_sym_u8_DQUOTE] = ACTIONS(4241), + [anon_sym_DQUOTE] = ACTIONS(4241), + [sym_true] = ACTIONS(4239), + [sym_false] = ACTIONS(4239), + [anon_sym_NULL] = ACTIONS(4239), + [anon_sym_nullptr] = ACTIONS(4239), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4239), + [anon_sym_decltype] = ACTIONS(4239), + [anon_sym_explicit] = ACTIONS(4239), + [anon_sym_export] = ACTIONS(4239), + [anon_sym_module] = ACTIONS(4239), + [anon_sym_import] = ACTIONS(4239), + [anon_sym_template] = ACTIONS(4239), + [anon_sym_operator] = ACTIONS(4239), + [anon_sym_try] = ACTIONS(4239), + [anon_sym_delete] = ACTIONS(4239), + [anon_sym_throw] = ACTIONS(4239), + [anon_sym_namespace] = ACTIONS(4239), + [anon_sym_static_assert] = ACTIONS(4239), + [anon_sym_concept] = ACTIONS(4239), + [anon_sym_co_return] = ACTIONS(4239), + [anon_sym_co_yield] = ACTIONS(4239), + [anon_sym_R_DQUOTE] = ACTIONS(4241), + [anon_sym_LR_DQUOTE] = ACTIONS(4241), + [anon_sym_uR_DQUOTE] = ACTIONS(4241), + [anon_sym_UR_DQUOTE] = ACTIONS(4241), + [anon_sym_u8R_DQUOTE] = ACTIONS(4241), + [anon_sym_co_await] = ACTIONS(4239), + [anon_sym_new] = ACTIONS(4239), + [anon_sym_requires] = ACTIONS(4239), + [anon_sym_CARET_CARET] = ACTIONS(4241), + [anon_sym_LBRACK_COLON] = ACTIONS(4241), + [sym_this] = ACTIONS(4239), }, [STATE(693)] = { - [sym_identifier] = ACTIONS(4212), - [aux_sym_preproc_include_token1] = ACTIONS(4212), - [aux_sym_preproc_def_token1] = ACTIONS(4212), - [aux_sym_preproc_if_token1] = ACTIONS(4212), - [aux_sym_preproc_if_token2] = ACTIONS(4212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4212), - [sym_preproc_directive] = ACTIONS(4212), - [anon_sym_LPAREN2] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_TILDE] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4212), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4212), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym___extension__] = ACTIONS(4212), - [anon_sym_typedef] = ACTIONS(4212), - [anon_sym_virtual] = ACTIONS(4212), - [anon_sym_extern] = ACTIONS(4212), - [anon_sym___attribute__] = ACTIONS(4212), - [anon_sym___attribute] = ACTIONS(4212), - [anon_sym_using] = ACTIONS(4212), - [anon_sym_COLON_COLON] = ACTIONS(4214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4214), - [anon_sym___declspec] = ACTIONS(4212), - [anon_sym___based] = ACTIONS(4212), - [anon_sym___cdecl] = ACTIONS(4212), - [anon_sym___clrcall] = ACTIONS(4212), - [anon_sym___stdcall] = ACTIONS(4212), - [anon_sym___fastcall] = ACTIONS(4212), - [anon_sym___thiscall] = ACTIONS(4212), - [anon_sym___vectorcall] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_signed] = ACTIONS(4212), - [anon_sym_unsigned] = ACTIONS(4212), - [anon_sym_long] = ACTIONS(4212), - [anon_sym_short] = ACTIONS(4212), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_static] = ACTIONS(4212), - [anon_sym_register] = ACTIONS(4212), - [anon_sym_inline] = ACTIONS(4212), - [anon_sym___inline] = ACTIONS(4212), - [anon_sym___inline__] = ACTIONS(4212), - [anon_sym___forceinline] = ACTIONS(4212), - [anon_sym_thread_local] = ACTIONS(4212), - [anon_sym___thread] = ACTIONS(4212), - [anon_sym_const] = ACTIONS(4212), - [anon_sym_constexpr] = ACTIONS(4212), - [anon_sym_volatile] = ACTIONS(4212), - [anon_sym_restrict] = ACTIONS(4212), - [anon_sym___restrict__] = ACTIONS(4212), - [anon_sym__Atomic] = ACTIONS(4212), - [anon_sym__Noreturn] = ACTIONS(4212), - [anon_sym_noreturn] = ACTIONS(4212), - [anon_sym__Nonnull] = ACTIONS(4212), - [anon_sym_mutable] = ACTIONS(4212), - [anon_sym_constinit] = ACTIONS(4212), - [anon_sym_consteval] = ACTIONS(4212), - [anon_sym_alignas] = ACTIONS(4212), - [anon_sym__Alignas] = ACTIONS(4212), - [sym_primitive_type] = ACTIONS(4212), - [anon_sym_enum] = ACTIONS(4212), - [anon_sym_class] = ACTIONS(4212), - [anon_sym_struct] = ACTIONS(4212), - [anon_sym_union] = ACTIONS(4212), - [anon_sym_if] = ACTIONS(4212), - [anon_sym_switch] = ACTIONS(4212), - [anon_sym_case] = ACTIONS(4212), - [anon_sym_default] = ACTIONS(4212), - [anon_sym_while] = ACTIONS(4212), - [anon_sym_do] = ACTIONS(4212), - [anon_sym_for] = ACTIONS(4212), - [anon_sym_return] = ACTIONS(4212), - [anon_sym_break] = ACTIONS(4212), - [anon_sym_continue] = ACTIONS(4212), - [anon_sym_goto] = ACTIONS(4212), - [anon_sym___try] = ACTIONS(4212), - [anon_sym___leave] = ACTIONS(4212), - [anon_sym_not] = ACTIONS(4212), - [anon_sym_compl] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4214), - [anon_sym_sizeof] = ACTIONS(4212), - [anon_sym___alignof__] = ACTIONS(4212), - [anon_sym___alignof] = ACTIONS(4212), - [anon_sym__alignof] = ACTIONS(4212), - [anon_sym_alignof] = ACTIONS(4212), - [anon_sym__Alignof] = ACTIONS(4212), - [anon_sym_offsetof] = ACTIONS(4212), - [anon_sym__Generic] = ACTIONS(4212), - [anon_sym_typename] = ACTIONS(4212), - [anon_sym_asm] = ACTIONS(4212), - [anon_sym___asm__] = ACTIONS(4212), - [anon_sym___asm] = ACTIONS(4212), - [sym_number_literal] = ACTIONS(4214), - [anon_sym_L_SQUOTE] = ACTIONS(4214), - [anon_sym_u_SQUOTE] = ACTIONS(4214), - [anon_sym_U_SQUOTE] = ACTIONS(4214), - [anon_sym_u8_SQUOTE] = ACTIONS(4214), - [anon_sym_SQUOTE] = ACTIONS(4214), - [anon_sym_L_DQUOTE] = ACTIONS(4214), - [anon_sym_u_DQUOTE] = ACTIONS(4214), - [anon_sym_U_DQUOTE] = ACTIONS(4214), - [anon_sym_u8_DQUOTE] = ACTIONS(4214), - [anon_sym_DQUOTE] = ACTIONS(4214), - [sym_true] = ACTIONS(4212), - [sym_false] = ACTIONS(4212), - [anon_sym_NULL] = ACTIONS(4212), - [anon_sym_nullptr] = ACTIONS(4212), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4212), - [anon_sym_decltype] = ACTIONS(4212), - [anon_sym_explicit] = ACTIONS(4212), - [anon_sym_export] = ACTIONS(4212), - [anon_sym_module] = ACTIONS(4212), - [anon_sym_import] = ACTIONS(4212), - [anon_sym_template] = ACTIONS(4212), - [anon_sym_operator] = ACTIONS(4212), - [anon_sym_try] = ACTIONS(4212), - [anon_sym_delete] = ACTIONS(4212), - [anon_sym_throw] = ACTIONS(4212), - [anon_sym_namespace] = ACTIONS(4212), - [anon_sym_static_assert] = ACTIONS(4212), - [anon_sym_concept] = ACTIONS(4212), - [anon_sym_co_return] = ACTIONS(4212), - [anon_sym_co_yield] = ACTIONS(4212), - [anon_sym_R_DQUOTE] = ACTIONS(4214), - [anon_sym_LR_DQUOTE] = ACTIONS(4214), - [anon_sym_uR_DQUOTE] = ACTIONS(4214), - [anon_sym_UR_DQUOTE] = ACTIONS(4214), - [anon_sym_u8R_DQUOTE] = ACTIONS(4214), - [anon_sym_co_await] = ACTIONS(4212), - [anon_sym_new] = ACTIONS(4212), - [anon_sym_requires] = ACTIONS(4212), - [anon_sym_CARET_CARET] = ACTIONS(4214), - [anon_sym_LBRACK_COLON] = ACTIONS(4214), - [sym_this] = ACTIONS(4212), + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_include_token1] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym___cdecl] = ACTIONS(3644), + [anon_sym___clrcall] = ACTIONS(3644), + [anon_sym___stdcall] = ACTIONS(3644), + [anon_sym___fastcall] = ACTIONS(3644), + [anon_sym___thiscall] = ACTIONS(3644), + [anon_sym___vectorcall] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_case] = ACTIONS(3644), + [anon_sym_default] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_goto] = ACTIONS(3644), + [anon_sym___try] = ACTIONS(3644), + [anon_sym___leave] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_compl] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_sizeof] = ACTIONS(3644), + [anon_sym___alignof__] = ACTIONS(3644), + [anon_sym___alignof] = ACTIONS(3644), + [anon_sym__alignof] = ACTIONS(3644), + [anon_sym_alignof] = ACTIONS(3644), + [anon_sym__Alignof] = ACTIONS(3644), + [anon_sym_offsetof] = ACTIONS(3644), + [anon_sym__Generic] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [anon_sym_asm] = ACTIONS(3644), + [anon_sym___asm__] = ACTIONS(3644), + [anon_sym___asm] = ACTIONS(3644), + [sym_number_literal] = ACTIONS(3646), + [anon_sym_L_SQUOTE] = ACTIONS(3646), + [anon_sym_u_SQUOTE] = ACTIONS(3646), + [anon_sym_U_SQUOTE] = ACTIONS(3646), + [anon_sym_u8_SQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_L_DQUOTE] = ACTIONS(3646), + [anon_sym_u_DQUOTE] = ACTIONS(3646), + [anon_sym_U_DQUOTE] = ACTIONS(3646), + [anon_sym_u8_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [anon_sym_NULL] = ACTIONS(3644), + [anon_sym_nullptr] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_export] = ACTIONS(3644), + [anon_sym_import] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_namespace] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_concept] = ACTIONS(3644), + [anon_sym_co_return] = ACTIONS(3644), + [anon_sym_co_yield] = ACTIONS(3644), + [anon_sym_R_DQUOTE] = ACTIONS(3646), + [anon_sym_LR_DQUOTE] = ACTIONS(3646), + [anon_sym_uR_DQUOTE] = ACTIONS(3646), + [anon_sym_UR_DQUOTE] = ACTIONS(3646), + [anon_sym_u8R_DQUOTE] = ACTIONS(3646), + [anon_sym_co_await] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_requires] = ACTIONS(3644), + [anon_sym_CARET_CARET] = ACTIONS(3646), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), }, [STATE(694)] = { - [sym_identifier] = ACTIONS(3588), - [aux_sym_preproc_include_token1] = ACTIONS(3588), - [aux_sym_preproc_def_token1] = ACTIONS(3588), - [aux_sym_preproc_if_token1] = ACTIONS(3588), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3588), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3588), - [sym_preproc_directive] = ACTIONS(3588), - [anon_sym_LPAREN2] = ACTIONS(3590), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_STAR] = ACTIONS(3590), - [anon_sym_AMP_AMP] = ACTIONS(3590), - [anon_sym_AMP] = ACTIONS(3588), - [anon_sym_SEMI] = ACTIONS(3590), - [anon_sym___extension__] = ACTIONS(3588), - [anon_sym_typedef] = ACTIONS(3588), - [anon_sym_virtual] = ACTIONS(3588), - [anon_sym_extern] = ACTIONS(3588), - [anon_sym___attribute__] = ACTIONS(3588), - [anon_sym___attribute] = ACTIONS(3588), - [anon_sym_using] = ACTIONS(3588), - [anon_sym_COLON_COLON] = ACTIONS(3590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), - [anon_sym___declspec] = ACTIONS(3588), - [anon_sym___based] = ACTIONS(3588), - [anon_sym___cdecl] = ACTIONS(3588), - [anon_sym___clrcall] = ACTIONS(3588), - [anon_sym___stdcall] = ACTIONS(3588), - [anon_sym___fastcall] = ACTIONS(3588), - [anon_sym___thiscall] = ACTIONS(3588), - [anon_sym___vectorcall] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_RBRACE] = ACTIONS(3590), - [anon_sym_signed] = ACTIONS(3588), - [anon_sym_unsigned] = ACTIONS(3588), - [anon_sym_long] = ACTIONS(3588), - [anon_sym_short] = ACTIONS(3588), - [anon_sym_LBRACK] = ACTIONS(3588), - [anon_sym_static] = ACTIONS(3588), - [anon_sym_register] = ACTIONS(3588), - [anon_sym_inline] = ACTIONS(3588), - [anon_sym___inline] = ACTIONS(3588), - [anon_sym___inline__] = ACTIONS(3588), - [anon_sym___forceinline] = ACTIONS(3588), - [anon_sym_thread_local] = ACTIONS(3588), - [anon_sym___thread] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_constexpr] = ACTIONS(3588), - [anon_sym_volatile] = ACTIONS(3588), - [anon_sym_restrict] = ACTIONS(3588), - [anon_sym___restrict__] = ACTIONS(3588), - [anon_sym__Atomic] = ACTIONS(3588), - [anon_sym__Noreturn] = ACTIONS(3588), - [anon_sym_noreturn] = ACTIONS(3588), - [anon_sym__Nonnull] = ACTIONS(3588), - [anon_sym_mutable] = ACTIONS(3588), - [anon_sym_constinit] = ACTIONS(3588), - [anon_sym_consteval] = ACTIONS(3588), - [anon_sym_alignas] = ACTIONS(3588), - [anon_sym__Alignas] = ACTIONS(3588), - [sym_primitive_type] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), - [anon_sym_class] = ACTIONS(3588), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_union] = ACTIONS(3588), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_else] = ACTIONS(3588), - [anon_sym_switch] = ACTIONS(3588), - [anon_sym_case] = ACTIONS(3588), - [anon_sym_default] = ACTIONS(3588), - [anon_sym_while] = ACTIONS(3588), - [anon_sym_do] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3588), - [anon_sym_return] = ACTIONS(3588), - [anon_sym_break] = ACTIONS(3588), - [anon_sym_continue] = ACTIONS(3588), - [anon_sym_goto] = ACTIONS(3588), - [anon_sym___try] = ACTIONS(3588), - [anon_sym___leave] = ACTIONS(3588), - [anon_sym_not] = ACTIONS(3588), - [anon_sym_compl] = ACTIONS(3588), - [anon_sym_DASH_DASH] = ACTIONS(3590), - [anon_sym_PLUS_PLUS] = ACTIONS(3590), - [anon_sym_sizeof] = ACTIONS(3588), - [anon_sym___alignof__] = ACTIONS(3588), - [anon_sym___alignof] = ACTIONS(3588), - [anon_sym__alignof] = ACTIONS(3588), - [anon_sym_alignof] = ACTIONS(3588), - [anon_sym__Alignof] = ACTIONS(3588), - [anon_sym_offsetof] = ACTIONS(3588), - [anon_sym__Generic] = ACTIONS(3588), - [anon_sym_typename] = ACTIONS(3588), - [anon_sym_asm] = ACTIONS(3588), - [anon_sym___asm__] = ACTIONS(3588), - [anon_sym___asm] = ACTIONS(3588), - [sym_number_literal] = ACTIONS(3590), - [anon_sym_L_SQUOTE] = ACTIONS(3590), - [anon_sym_u_SQUOTE] = ACTIONS(3590), - [anon_sym_U_SQUOTE] = ACTIONS(3590), - [anon_sym_u8_SQUOTE] = ACTIONS(3590), - [anon_sym_SQUOTE] = ACTIONS(3590), - [anon_sym_L_DQUOTE] = ACTIONS(3590), - [anon_sym_u_DQUOTE] = ACTIONS(3590), - [anon_sym_U_DQUOTE] = ACTIONS(3590), - [anon_sym_u8_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [sym_true] = ACTIONS(3588), - [sym_false] = ACTIONS(3588), - [anon_sym_NULL] = ACTIONS(3588), - [anon_sym_nullptr] = ACTIONS(3588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3588), - [anon_sym_decltype] = ACTIONS(3588), - [anon_sym_explicit] = ACTIONS(3588), - [anon_sym_export] = ACTIONS(3588), - [anon_sym_import] = ACTIONS(3588), - [anon_sym_template] = ACTIONS(3588), - [anon_sym_operator] = ACTIONS(3588), - [anon_sym_try] = ACTIONS(3588), - [anon_sym_delete] = ACTIONS(3588), - [anon_sym_throw] = ACTIONS(3588), - [anon_sym_namespace] = ACTIONS(3588), - [anon_sym_static_assert] = ACTIONS(3588), - [anon_sym_concept] = ACTIONS(3588), - [anon_sym_co_return] = ACTIONS(3588), - [anon_sym_co_yield] = ACTIONS(3588), - [anon_sym_R_DQUOTE] = ACTIONS(3590), - [anon_sym_LR_DQUOTE] = ACTIONS(3590), - [anon_sym_uR_DQUOTE] = ACTIONS(3590), - [anon_sym_UR_DQUOTE] = ACTIONS(3590), - [anon_sym_u8R_DQUOTE] = ACTIONS(3590), - [anon_sym_co_await] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3588), - [anon_sym_requires] = ACTIONS(3588), - [anon_sym_CARET_CARET] = ACTIONS(3590), - [anon_sym_LBRACK_COLON] = ACTIONS(3590), - [sym_this] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3690), + [aux_sym_preproc_include_token1] = ACTIONS(3690), + [aux_sym_preproc_def_token1] = ACTIONS(3690), + [aux_sym_preproc_if_token1] = ACTIONS(3690), + [aux_sym_preproc_if_token2] = ACTIONS(3690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3690), + [sym_preproc_directive] = ACTIONS(3690), + [anon_sym_LPAREN2] = ACTIONS(3692), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym___extension__] = ACTIONS(3690), + [anon_sym_typedef] = ACTIONS(3690), + [anon_sym_virtual] = ACTIONS(3690), + [anon_sym_extern] = ACTIONS(3690), + [anon_sym___attribute__] = ACTIONS(3690), + [anon_sym___attribute] = ACTIONS(3690), + [anon_sym_using] = ACTIONS(3690), + [anon_sym_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3692), + [anon_sym___declspec] = ACTIONS(3690), + [anon_sym___based] = ACTIONS(3690), + [anon_sym___cdecl] = ACTIONS(3690), + [anon_sym___clrcall] = ACTIONS(3690), + [anon_sym___stdcall] = ACTIONS(3690), + [anon_sym___fastcall] = ACTIONS(3690), + [anon_sym___thiscall] = ACTIONS(3690), + [anon_sym___vectorcall] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_signed] = ACTIONS(3690), + [anon_sym_unsigned] = ACTIONS(3690), + [anon_sym_long] = ACTIONS(3690), + [anon_sym_short] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_register] = ACTIONS(3690), + [anon_sym_inline] = ACTIONS(3690), + [anon_sym___inline] = ACTIONS(3690), + [anon_sym___inline__] = ACTIONS(3690), + [anon_sym___forceinline] = ACTIONS(3690), + [anon_sym_thread_local] = ACTIONS(3690), + [anon_sym___thread] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_constexpr] = ACTIONS(3690), + [anon_sym_volatile] = ACTIONS(3690), + [anon_sym_restrict] = ACTIONS(3690), + [anon_sym___restrict__] = ACTIONS(3690), + [anon_sym__Atomic] = ACTIONS(3690), + [anon_sym__Noreturn] = ACTIONS(3690), + [anon_sym_noreturn] = ACTIONS(3690), + [anon_sym__Nonnull] = ACTIONS(3690), + [anon_sym_mutable] = ACTIONS(3690), + [anon_sym_constinit] = ACTIONS(3690), + [anon_sym_consteval] = ACTIONS(3690), + [anon_sym_alignas] = ACTIONS(3690), + [anon_sym__Alignas] = ACTIONS(3690), + [sym_primitive_type] = ACTIONS(3690), + [anon_sym_enum] = ACTIONS(3690), + [anon_sym_class] = ACTIONS(3690), + [anon_sym_struct] = ACTIONS(3690), + [anon_sym_union] = ACTIONS(3690), + [anon_sym_if] = ACTIONS(3690), + [anon_sym_switch] = ACTIONS(3690), + [anon_sym_case] = ACTIONS(3690), + [anon_sym_default] = ACTIONS(3690), + [anon_sym_while] = ACTIONS(3690), + [anon_sym_do] = ACTIONS(3690), + [anon_sym_for] = ACTIONS(3690), + [anon_sym_return] = ACTIONS(3690), + [anon_sym_break] = ACTIONS(3690), + [anon_sym_continue] = ACTIONS(3690), + [anon_sym_goto] = ACTIONS(3690), + [anon_sym___try] = ACTIONS(3690), + [anon_sym___leave] = ACTIONS(3690), + [anon_sym_not] = ACTIONS(3690), + [anon_sym_compl] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_sizeof] = ACTIONS(3690), + [anon_sym___alignof__] = ACTIONS(3690), + [anon_sym___alignof] = ACTIONS(3690), + [anon_sym__alignof] = ACTIONS(3690), + [anon_sym_alignof] = ACTIONS(3690), + [anon_sym__Alignof] = ACTIONS(3690), + [anon_sym_offsetof] = ACTIONS(3690), + [anon_sym__Generic] = ACTIONS(3690), + [anon_sym_typename] = ACTIONS(3690), + [anon_sym_asm] = ACTIONS(3690), + [anon_sym___asm__] = ACTIONS(3690), + [anon_sym___asm] = ACTIONS(3690), + [sym_number_literal] = ACTIONS(3692), + [anon_sym_L_SQUOTE] = ACTIONS(3692), + [anon_sym_u_SQUOTE] = ACTIONS(3692), + [anon_sym_U_SQUOTE] = ACTIONS(3692), + [anon_sym_u8_SQUOTE] = ACTIONS(3692), + [anon_sym_SQUOTE] = ACTIONS(3692), + [anon_sym_L_DQUOTE] = ACTIONS(3692), + [anon_sym_u_DQUOTE] = ACTIONS(3692), + [anon_sym_U_DQUOTE] = ACTIONS(3692), + [anon_sym_u8_DQUOTE] = ACTIONS(3692), + [anon_sym_DQUOTE] = ACTIONS(3692), + [sym_true] = ACTIONS(3690), + [sym_false] = ACTIONS(3690), + [anon_sym_NULL] = ACTIONS(3690), + [anon_sym_nullptr] = ACTIONS(3690), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3690), + [anon_sym_decltype] = ACTIONS(3690), + [anon_sym_explicit] = ACTIONS(3690), + [anon_sym_export] = ACTIONS(3690), + [anon_sym_module] = ACTIONS(3690), + [anon_sym_import] = ACTIONS(3690), + [anon_sym_template] = ACTIONS(3690), + [anon_sym_operator] = ACTIONS(3690), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_delete] = ACTIONS(3690), + [anon_sym_throw] = ACTIONS(3690), + [anon_sym_namespace] = ACTIONS(3690), + [anon_sym_static_assert] = ACTIONS(3690), + [anon_sym_concept] = ACTIONS(3690), + [anon_sym_co_return] = ACTIONS(3690), + [anon_sym_co_yield] = ACTIONS(3690), + [anon_sym_R_DQUOTE] = ACTIONS(3692), + [anon_sym_LR_DQUOTE] = ACTIONS(3692), + [anon_sym_uR_DQUOTE] = ACTIONS(3692), + [anon_sym_UR_DQUOTE] = ACTIONS(3692), + [anon_sym_u8R_DQUOTE] = ACTIONS(3692), + [anon_sym_co_await] = ACTIONS(3690), + [anon_sym_new] = ACTIONS(3690), + [anon_sym_requires] = ACTIONS(3690), + [anon_sym_CARET_CARET] = ACTIONS(3692), + [anon_sym_LBRACK_COLON] = ACTIONS(3692), + [sym_this] = ACTIONS(3690), }, [STATE(695)] = { - [sym_identifier] = ACTIONS(4246), - [aux_sym_preproc_include_token1] = ACTIONS(4246), - [aux_sym_preproc_def_token1] = ACTIONS(4246), - [aux_sym_preproc_if_token1] = ACTIONS(4246), - [aux_sym_preproc_if_token2] = ACTIONS(4246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4246), - [sym_preproc_directive] = ACTIONS(4246), - [anon_sym_LPAREN2] = ACTIONS(4248), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_TILDE] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4246), - [anon_sym_STAR] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4246), - [anon_sym_SEMI] = ACTIONS(4248), - [anon_sym___extension__] = ACTIONS(4246), - [anon_sym_typedef] = ACTIONS(4246), - [anon_sym_virtual] = ACTIONS(4246), - [anon_sym_extern] = ACTIONS(4246), - [anon_sym___attribute__] = ACTIONS(4246), - [anon_sym___attribute] = ACTIONS(4246), - [anon_sym_using] = ACTIONS(4246), - [anon_sym_COLON_COLON] = ACTIONS(4248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4248), - [anon_sym___declspec] = ACTIONS(4246), - [anon_sym___based] = ACTIONS(4246), - [anon_sym___cdecl] = ACTIONS(4246), - [anon_sym___clrcall] = ACTIONS(4246), - [anon_sym___stdcall] = ACTIONS(4246), - [anon_sym___fastcall] = ACTIONS(4246), - [anon_sym___thiscall] = ACTIONS(4246), - [anon_sym___vectorcall] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4248), - [anon_sym_signed] = ACTIONS(4246), - [anon_sym_unsigned] = ACTIONS(4246), - [anon_sym_long] = ACTIONS(4246), - [anon_sym_short] = ACTIONS(4246), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_static] = ACTIONS(4246), - [anon_sym_register] = ACTIONS(4246), - [anon_sym_inline] = ACTIONS(4246), - [anon_sym___inline] = ACTIONS(4246), - [anon_sym___inline__] = ACTIONS(4246), - [anon_sym___forceinline] = ACTIONS(4246), - [anon_sym_thread_local] = ACTIONS(4246), - [anon_sym___thread] = ACTIONS(4246), - [anon_sym_const] = ACTIONS(4246), - [anon_sym_constexpr] = ACTIONS(4246), - [anon_sym_volatile] = ACTIONS(4246), - [anon_sym_restrict] = ACTIONS(4246), - [anon_sym___restrict__] = ACTIONS(4246), - [anon_sym__Atomic] = ACTIONS(4246), - [anon_sym__Noreturn] = ACTIONS(4246), - [anon_sym_noreturn] = ACTIONS(4246), - [anon_sym__Nonnull] = ACTIONS(4246), - [anon_sym_mutable] = ACTIONS(4246), - [anon_sym_constinit] = ACTIONS(4246), - [anon_sym_consteval] = ACTIONS(4246), - [anon_sym_alignas] = ACTIONS(4246), - [anon_sym__Alignas] = ACTIONS(4246), - [sym_primitive_type] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4246), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_struct] = ACTIONS(4246), - [anon_sym_union] = ACTIONS(4246), - [anon_sym_if] = ACTIONS(4246), - [anon_sym_switch] = ACTIONS(4246), - [anon_sym_case] = ACTIONS(4246), - [anon_sym_default] = ACTIONS(4246), - [anon_sym_while] = ACTIONS(4246), - [anon_sym_do] = ACTIONS(4246), - [anon_sym_for] = ACTIONS(4246), - [anon_sym_return] = ACTIONS(4246), - [anon_sym_break] = ACTIONS(4246), - [anon_sym_continue] = ACTIONS(4246), - [anon_sym_goto] = ACTIONS(4246), - [anon_sym___try] = ACTIONS(4246), - [anon_sym___leave] = ACTIONS(4246), - [anon_sym_not] = ACTIONS(4246), - [anon_sym_compl] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4248), - [anon_sym_sizeof] = ACTIONS(4246), - [anon_sym___alignof__] = ACTIONS(4246), - [anon_sym___alignof] = ACTIONS(4246), - [anon_sym__alignof] = ACTIONS(4246), - [anon_sym_alignof] = ACTIONS(4246), - [anon_sym__Alignof] = ACTIONS(4246), - [anon_sym_offsetof] = ACTIONS(4246), - [anon_sym__Generic] = ACTIONS(4246), - [anon_sym_typename] = ACTIONS(4246), - [anon_sym_asm] = ACTIONS(4246), - [anon_sym___asm__] = ACTIONS(4246), - [anon_sym___asm] = ACTIONS(4246), - [sym_number_literal] = ACTIONS(4248), - [anon_sym_L_SQUOTE] = ACTIONS(4248), - [anon_sym_u_SQUOTE] = ACTIONS(4248), - [anon_sym_U_SQUOTE] = ACTIONS(4248), - [anon_sym_u8_SQUOTE] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4248), - [anon_sym_L_DQUOTE] = ACTIONS(4248), - [anon_sym_u_DQUOTE] = ACTIONS(4248), - [anon_sym_U_DQUOTE] = ACTIONS(4248), - [anon_sym_u8_DQUOTE] = ACTIONS(4248), - [anon_sym_DQUOTE] = ACTIONS(4248), - [sym_true] = ACTIONS(4246), - [sym_false] = ACTIONS(4246), - [anon_sym_NULL] = ACTIONS(4246), - [anon_sym_nullptr] = ACTIONS(4246), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4246), - [anon_sym_decltype] = ACTIONS(4246), - [anon_sym_explicit] = ACTIONS(4246), - [anon_sym_export] = ACTIONS(4246), - [anon_sym_module] = ACTIONS(4246), - [anon_sym_import] = ACTIONS(4246), - [anon_sym_template] = ACTIONS(4246), - [anon_sym_operator] = ACTIONS(4246), - [anon_sym_try] = ACTIONS(4246), - [anon_sym_delete] = ACTIONS(4246), - [anon_sym_throw] = ACTIONS(4246), - [anon_sym_namespace] = ACTIONS(4246), - [anon_sym_static_assert] = ACTIONS(4246), - [anon_sym_concept] = ACTIONS(4246), - [anon_sym_co_return] = ACTIONS(4246), - [anon_sym_co_yield] = ACTIONS(4246), - [anon_sym_R_DQUOTE] = ACTIONS(4248), - [anon_sym_LR_DQUOTE] = ACTIONS(4248), - [anon_sym_uR_DQUOTE] = ACTIONS(4248), - [anon_sym_UR_DQUOTE] = ACTIONS(4248), - [anon_sym_u8R_DQUOTE] = ACTIONS(4248), - [anon_sym_co_await] = ACTIONS(4246), - [anon_sym_new] = ACTIONS(4246), - [anon_sym_requires] = ACTIONS(4246), - [anon_sym_CARET_CARET] = ACTIONS(4248), - [anon_sym_LBRACK_COLON] = ACTIONS(4248), - [sym_this] = ACTIONS(4246), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3546), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym___try] = ACTIONS(3168), + [anon_sym___leave] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [anon_sym___asm] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_CARET_CARET] = ACTIONS(3166), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + [sym_this] = ACTIONS(3168), }, [STATE(696)] = { - [sym_identifier] = ACTIONS(4258), - [aux_sym_preproc_include_token1] = ACTIONS(4258), - [aux_sym_preproc_def_token1] = ACTIONS(4258), - [aux_sym_preproc_if_token1] = ACTIONS(4258), - [aux_sym_preproc_if_token2] = ACTIONS(4258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4258), - [sym_preproc_directive] = ACTIONS(4258), - [anon_sym_LPAREN2] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_TILDE] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym___extension__] = ACTIONS(4258), - [anon_sym_typedef] = ACTIONS(4258), - [anon_sym_virtual] = ACTIONS(4258), - [anon_sym_extern] = ACTIONS(4258), - [anon_sym___attribute__] = ACTIONS(4258), - [anon_sym___attribute] = ACTIONS(4258), - [anon_sym_using] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4260), - [anon_sym___declspec] = ACTIONS(4258), - [anon_sym___based] = ACTIONS(4258), - [anon_sym___cdecl] = ACTIONS(4258), - [anon_sym___clrcall] = ACTIONS(4258), - [anon_sym___stdcall] = ACTIONS(4258), - [anon_sym___fastcall] = ACTIONS(4258), - [anon_sym___thiscall] = ACTIONS(4258), - [anon_sym___vectorcall] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_signed] = ACTIONS(4258), - [anon_sym_unsigned] = ACTIONS(4258), - [anon_sym_long] = ACTIONS(4258), - [anon_sym_short] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_static] = ACTIONS(4258), - [anon_sym_register] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym___inline] = ACTIONS(4258), - [anon_sym___inline__] = ACTIONS(4258), - [anon_sym___forceinline] = ACTIONS(4258), - [anon_sym_thread_local] = ACTIONS(4258), - [anon_sym___thread] = ACTIONS(4258), - [anon_sym_const] = ACTIONS(4258), - [anon_sym_constexpr] = ACTIONS(4258), - [anon_sym_volatile] = ACTIONS(4258), - [anon_sym_restrict] = ACTIONS(4258), - [anon_sym___restrict__] = ACTIONS(4258), - [anon_sym__Atomic] = ACTIONS(4258), - [anon_sym__Noreturn] = ACTIONS(4258), - [anon_sym_noreturn] = ACTIONS(4258), - [anon_sym__Nonnull] = ACTIONS(4258), - [anon_sym_mutable] = ACTIONS(4258), - [anon_sym_constinit] = ACTIONS(4258), - [anon_sym_consteval] = ACTIONS(4258), - [anon_sym_alignas] = ACTIONS(4258), - [anon_sym__Alignas] = ACTIONS(4258), - [sym_primitive_type] = ACTIONS(4258), - [anon_sym_enum] = ACTIONS(4258), - [anon_sym_class] = ACTIONS(4258), - [anon_sym_struct] = ACTIONS(4258), - [anon_sym_union] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_switch] = ACTIONS(4258), - [anon_sym_case] = ACTIONS(4258), - [anon_sym_default] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_do] = ACTIONS(4258), - [anon_sym_for] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_goto] = ACTIONS(4258), - [anon_sym___try] = ACTIONS(4258), - [anon_sym___leave] = ACTIONS(4258), - [anon_sym_not] = ACTIONS(4258), - [anon_sym_compl] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_sizeof] = ACTIONS(4258), - [anon_sym___alignof__] = ACTIONS(4258), - [anon_sym___alignof] = ACTIONS(4258), - [anon_sym__alignof] = ACTIONS(4258), - [anon_sym_alignof] = ACTIONS(4258), - [anon_sym__Alignof] = ACTIONS(4258), - [anon_sym_offsetof] = ACTIONS(4258), - [anon_sym__Generic] = ACTIONS(4258), - [anon_sym_typename] = ACTIONS(4258), - [anon_sym_asm] = ACTIONS(4258), - [anon_sym___asm__] = ACTIONS(4258), - [anon_sym___asm] = ACTIONS(4258), - [sym_number_literal] = ACTIONS(4260), - [anon_sym_L_SQUOTE] = ACTIONS(4260), - [anon_sym_u_SQUOTE] = ACTIONS(4260), - [anon_sym_U_SQUOTE] = ACTIONS(4260), - [anon_sym_u8_SQUOTE] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4260), - [anon_sym_L_DQUOTE] = ACTIONS(4260), - [anon_sym_u_DQUOTE] = ACTIONS(4260), - [anon_sym_U_DQUOTE] = ACTIONS(4260), - [anon_sym_u8_DQUOTE] = ACTIONS(4260), - [anon_sym_DQUOTE] = ACTIONS(4260), - [sym_true] = ACTIONS(4258), - [sym_false] = ACTIONS(4258), - [anon_sym_NULL] = ACTIONS(4258), - [anon_sym_nullptr] = ACTIONS(4258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4258), - [anon_sym_decltype] = ACTIONS(4258), - [anon_sym_explicit] = ACTIONS(4258), - [anon_sym_export] = ACTIONS(4258), - [anon_sym_module] = ACTIONS(4258), - [anon_sym_import] = ACTIONS(4258), - [anon_sym_template] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_delete] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_namespace] = ACTIONS(4258), - [anon_sym_static_assert] = ACTIONS(4258), - [anon_sym_concept] = ACTIONS(4258), - [anon_sym_co_return] = ACTIONS(4258), - [anon_sym_co_yield] = ACTIONS(4258), - [anon_sym_R_DQUOTE] = ACTIONS(4260), - [anon_sym_LR_DQUOTE] = ACTIONS(4260), - [anon_sym_uR_DQUOTE] = ACTIONS(4260), - [anon_sym_UR_DQUOTE] = ACTIONS(4260), - [anon_sym_u8R_DQUOTE] = ACTIONS(4260), - [anon_sym_co_await] = ACTIONS(4258), - [anon_sym_new] = ACTIONS(4258), - [anon_sym_requires] = ACTIONS(4258), - [anon_sym_CARET_CARET] = ACTIONS(4260), - [anon_sym_LBRACK_COLON] = ACTIONS(4260), - [sym_this] = ACTIONS(4258), + [sym_identifier] = ACTIONS(3682), + [aux_sym_preproc_include_token1] = ACTIONS(3682), + [aux_sym_preproc_def_token1] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3682), + [aux_sym_preproc_if_token2] = ACTIONS(3682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), + [sym_preproc_directive] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym___extension__] = ACTIONS(3682), + [anon_sym_typedef] = ACTIONS(3682), + [anon_sym_virtual] = ACTIONS(3682), + [anon_sym_extern] = ACTIONS(3682), + [anon_sym___attribute__] = ACTIONS(3682), + [anon_sym___attribute] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3682), + [anon_sym___based] = ACTIONS(3682), + [anon_sym___cdecl] = ACTIONS(3682), + [anon_sym___clrcall] = ACTIONS(3682), + [anon_sym___stdcall] = ACTIONS(3682), + [anon_sym___fastcall] = ACTIONS(3682), + [anon_sym___thiscall] = ACTIONS(3682), + [anon_sym___vectorcall] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_signed] = ACTIONS(3682), + [anon_sym_unsigned] = ACTIONS(3682), + [anon_sym_long] = ACTIONS(3682), + [anon_sym_short] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_register] = ACTIONS(3682), + [anon_sym_inline] = ACTIONS(3682), + [anon_sym___inline] = ACTIONS(3682), + [anon_sym___inline__] = ACTIONS(3682), + [anon_sym___forceinline] = ACTIONS(3682), + [anon_sym_thread_local] = ACTIONS(3682), + [anon_sym___thread] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_constexpr] = ACTIONS(3682), + [anon_sym_volatile] = ACTIONS(3682), + [anon_sym_restrict] = ACTIONS(3682), + [anon_sym___restrict__] = ACTIONS(3682), + [anon_sym__Atomic] = ACTIONS(3682), + [anon_sym__Noreturn] = ACTIONS(3682), + [anon_sym_noreturn] = ACTIONS(3682), + [anon_sym__Nonnull] = ACTIONS(3682), + [anon_sym_mutable] = ACTIONS(3682), + [anon_sym_constinit] = ACTIONS(3682), + [anon_sym_consteval] = ACTIONS(3682), + [anon_sym_alignas] = ACTIONS(3682), + [anon_sym__Alignas] = ACTIONS(3682), + [sym_primitive_type] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_struct] = ACTIONS(3682), + [anon_sym_union] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_case] = ACTIONS(3682), + [anon_sym_default] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_goto] = ACTIONS(3682), + [anon_sym___try] = ACTIONS(3682), + [anon_sym___leave] = ACTIONS(3682), + [anon_sym_not] = ACTIONS(3682), + [anon_sym_compl] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_sizeof] = ACTIONS(3682), + [anon_sym___alignof__] = ACTIONS(3682), + [anon_sym___alignof] = ACTIONS(3682), + [anon_sym__alignof] = ACTIONS(3682), + [anon_sym_alignof] = ACTIONS(3682), + [anon_sym__Alignof] = ACTIONS(3682), + [anon_sym_offsetof] = ACTIONS(3682), + [anon_sym__Generic] = ACTIONS(3682), + [anon_sym_typename] = ACTIONS(3682), + [anon_sym_asm] = ACTIONS(3682), + [anon_sym___asm__] = ACTIONS(3682), + [anon_sym___asm] = ACTIONS(3682), + [sym_number_literal] = ACTIONS(3684), + [anon_sym_L_SQUOTE] = ACTIONS(3684), + [anon_sym_u_SQUOTE] = ACTIONS(3684), + [anon_sym_U_SQUOTE] = ACTIONS(3684), + [anon_sym_u8_SQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_L_DQUOTE] = ACTIONS(3684), + [anon_sym_u_DQUOTE] = ACTIONS(3684), + [anon_sym_U_DQUOTE] = ACTIONS(3684), + [anon_sym_u8_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [anon_sym_NULL] = ACTIONS(3682), + [anon_sym_nullptr] = ACTIONS(3682), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3682), + [anon_sym_decltype] = ACTIONS(3682), + [anon_sym_explicit] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_template] = ACTIONS(3682), + [anon_sym_operator] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3682), + [anon_sym_concept] = ACTIONS(3682), + [anon_sym_co_return] = ACTIONS(3682), + [anon_sym_co_yield] = ACTIONS(3682), + [anon_sym_R_DQUOTE] = ACTIONS(3684), + [anon_sym_LR_DQUOTE] = ACTIONS(3684), + [anon_sym_uR_DQUOTE] = ACTIONS(3684), + [anon_sym_UR_DQUOTE] = ACTIONS(3684), + [anon_sym_u8R_DQUOTE] = ACTIONS(3684), + [anon_sym_co_await] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_requires] = ACTIONS(3682), + [anon_sym_CARET_CARET] = ACTIONS(3684), + [anon_sym_LBRACK_COLON] = ACTIONS(3684), + [sym_this] = ACTIONS(3682), }, [STATE(697)] = { - [sym_identifier] = ACTIONS(4266), - [aux_sym_preproc_include_token1] = ACTIONS(4266), - [aux_sym_preproc_def_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token2] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), - [sym_preproc_directive] = ACTIONS(4266), - [anon_sym_LPAREN2] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym___extension__] = ACTIONS(4266), - [anon_sym_typedef] = ACTIONS(4266), - [anon_sym_virtual] = ACTIONS(4266), - [anon_sym_extern] = ACTIONS(4266), - [anon_sym___attribute__] = ACTIONS(4266), - [anon_sym___attribute] = ACTIONS(4266), - [anon_sym_using] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), - [anon_sym___declspec] = ACTIONS(4266), - [anon_sym___based] = ACTIONS(4266), - [anon_sym___cdecl] = ACTIONS(4266), - [anon_sym___clrcall] = ACTIONS(4266), - [anon_sym___stdcall] = ACTIONS(4266), - [anon_sym___fastcall] = ACTIONS(4266), - [anon_sym___thiscall] = ACTIONS(4266), - [anon_sym___vectorcall] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_signed] = ACTIONS(4266), - [anon_sym_unsigned] = ACTIONS(4266), - [anon_sym_long] = ACTIONS(4266), - [anon_sym_short] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_static] = ACTIONS(4266), - [anon_sym_register] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym___inline] = ACTIONS(4266), - [anon_sym___inline__] = ACTIONS(4266), - [anon_sym___forceinline] = ACTIONS(4266), - [anon_sym_thread_local] = ACTIONS(4266), - [anon_sym___thread] = ACTIONS(4266), - [anon_sym_const] = ACTIONS(4266), - [anon_sym_constexpr] = ACTIONS(4266), - [anon_sym_volatile] = ACTIONS(4266), - [anon_sym_restrict] = ACTIONS(4266), - [anon_sym___restrict__] = ACTIONS(4266), - [anon_sym__Atomic] = ACTIONS(4266), - [anon_sym__Noreturn] = ACTIONS(4266), - [anon_sym_noreturn] = ACTIONS(4266), - [anon_sym__Nonnull] = ACTIONS(4266), - [anon_sym_mutable] = ACTIONS(4266), - [anon_sym_constinit] = ACTIONS(4266), - [anon_sym_consteval] = ACTIONS(4266), - [anon_sym_alignas] = ACTIONS(4266), - [anon_sym__Alignas] = ACTIONS(4266), - [sym_primitive_type] = ACTIONS(4266), - [anon_sym_enum] = ACTIONS(4266), - [anon_sym_class] = ACTIONS(4266), - [anon_sym_struct] = ACTIONS(4266), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_switch] = ACTIONS(4266), - [anon_sym_case] = ACTIONS(4266), - [anon_sym_default] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_do] = ACTIONS(4266), - [anon_sym_for] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_goto] = ACTIONS(4266), - [anon_sym___try] = ACTIONS(4266), - [anon_sym___leave] = ACTIONS(4266), - [anon_sym_not] = ACTIONS(4266), - [anon_sym_compl] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_sizeof] = ACTIONS(4266), - [anon_sym___alignof__] = ACTIONS(4266), - [anon_sym___alignof] = ACTIONS(4266), - [anon_sym__alignof] = ACTIONS(4266), - [anon_sym_alignof] = ACTIONS(4266), - [anon_sym__Alignof] = ACTIONS(4266), - [anon_sym_offsetof] = ACTIONS(4266), - [anon_sym__Generic] = ACTIONS(4266), - [anon_sym_typename] = ACTIONS(4266), - [anon_sym_asm] = ACTIONS(4266), - [anon_sym___asm__] = ACTIONS(4266), - [anon_sym___asm] = ACTIONS(4266), - [sym_number_literal] = ACTIONS(4268), - [anon_sym_L_SQUOTE] = ACTIONS(4268), - [anon_sym_u_SQUOTE] = ACTIONS(4268), - [anon_sym_U_SQUOTE] = ACTIONS(4268), - [anon_sym_u8_SQUOTE] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4268), - [anon_sym_L_DQUOTE] = ACTIONS(4268), - [anon_sym_u_DQUOTE] = ACTIONS(4268), - [anon_sym_U_DQUOTE] = ACTIONS(4268), - [anon_sym_u8_DQUOTE] = ACTIONS(4268), - [anon_sym_DQUOTE] = ACTIONS(4268), - [sym_true] = ACTIONS(4266), - [sym_false] = ACTIONS(4266), - [anon_sym_NULL] = ACTIONS(4266), - [anon_sym_nullptr] = ACTIONS(4266), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4266), - [anon_sym_decltype] = ACTIONS(4266), - [anon_sym_explicit] = ACTIONS(4266), - [anon_sym_export] = ACTIONS(4266), - [anon_sym_module] = ACTIONS(4266), - [anon_sym_import] = ACTIONS(4266), - [anon_sym_template] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_delete] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_namespace] = ACTIONS(4266), - [anon_sym_static_assert] = ACTIONS(4266), - [anon_sym_concept] = ACTIONS(4266), - [anon_sym_co_return] = ACTIONS(4266), - [anon_sym_co_yield] = ACTIONS(4266), - [anon_sym_R_DQUOTE] = ACTIONS(4268), - [anon_sym_LR_DQUOTE] = ACTIONS(4268), - [anon_sym_uR_DQUOTE] = ACTIONS(4268), - [anon_sym_UR_DQUOTE] = ACTIONS(4268), - [anon_sym_u8R_DQUOTE] = ACTIONS(4268), - [anon_sym_co_await] = ACTIONS(4266), - [anon_sym_new] = ACTIONS(4266), - [anon_sym_requires] = ACTIONS(4266), - [anon_sym_CARET_CARET] = ACTIONS(4268), - [anon_sym_LBRACK_COLON] = ACTIONS(4268), - [sym_this] = ACTIONS(4266), + [sym_identifier] = ACTIONS(3694), + [aux_sym_preproc_include_token1] = ACTIONS(3694), + [aux_sym_preproc_def_token1] = ACTIONS(3694), + [aux_sym_preproc_if_token1] = ACTIONS(3694), + [aux_sym_preproc_if_token2] = ACTIONS(3694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3694), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3694), + [sym_preproc_directive] = ACTIONS(3694), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3694), + [anon_sym_typedef] = ACTIONS(3694), + [anon_sym_virtual] = ACTIONS(3694), + [anon_sym_extern] = ACTIONS(3694), + [anon_sym___attribute__] = ACTIONS(3694), + [anon_sym___attribute] = ACTIONS(3694), + [anon_sym_using] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3696), + [anon_sym___declspec] = ACTIONS(3694), + [anon_sym___based] = ACTIONS(3694), + [anon_sym___cdecl] = ACTIONS(3694), + [anon_sym___clrcall] = ACTIONS(3694), + [anon_sym___stdcall] = ACTIONS(3694), + [anon_sym___fastcall] = ACTIONS(3694), + [anon_sym___thiscall] = ACTIONS(3694), + [anon_sym___vectorcall] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_signed] = ACTIONS(3694), + [anon_sym_unsigned] = ACTIONS(3694), + [anon_sym_long] = ACTIONS(3694), + [anon_sym_short] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_static] = ACTIONS(3694), + [anon_sym_register] = ACTIONS(3694), + [anon_sym_inline] = ACTIONS(3694), + [anon_sym___inline] = ACTIONS(3694), + [anon_sym___inline__] = ACTIONS(3694), + [anon_sym___forceinline] = ACTIONS(3694), + [anon_sym_thread_local] = ACTIONS(3694), + [anon_sym___thread] = ACTIONS(3694), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_constexpr] = ACTIONS(3694), + [anon_sym_volatile] = ACTIONS(3694), + [anon_sym_restrict] = ACTIONS(3694), + [anon_sym___restrict__] = ACTIONS(3694), + [anon_sym__Atomic] = ACTIONS(3694), + [anon_sym__Noreturn] = ACTIONS(3694), + [anon_sym_noreturn] = ACTIONS(3694), + [anon_sym__Nonnull] = ACTIONS(3694), + [anon_sym_mutable] = ACTIONS(3694), + [anon_sym_constinit] = ACTIONS(3694), + [anon_sym_consteval] = ACTIONS(3694), + [anon_sym_alignas] = ACTIONS(3694), + [anon_sym__Alignas] = ACTIONS(3694), + [sym_primitive_type] = ACTIONS(3694), + [anon_sym_enum] = ACTIONS(3694), + [anon_sym_class] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(3694), + [anon_sym_union] = ACTIONS(3694), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_case] = ACTIONS(3694), + [anon_sym_default] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3694), + [anon_sym_do] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(3694), + [anon_sym_break] = ACTIONS(3694), + [anon_sym_continue] = ACTIONS(3694), + [anon_sym_goto] = ACTIONS(3694), + [anon_sym___try] = ACTIONS(3694), + [anon_sym___leave] = ACTIONS(3694), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3696), + [anon_sym_sizeof] = ACTIONS(3694), + [anon_sym___alignof__] = ACTIONS(3694), + [anon_sym___alignof] = ACTIONS(3694), + [anon_sym__alignof] = ACTIONS(3694), + [anon_sym_alignof] = ACTIONS(3694), + [anon_sym__Alignof] = ACTIONS(3694), + [anon_sym_offsetof] = ACTIONS(3694), + [anon_sym__Generic] = ACTIONS(3694), + [anon_sym_typename] = ACTIONS(3694), + [anon_sym_asm] = ACTIONS(3694), + [anon_sym___asm__] = ACTIONS(3694), + [anon_sym___asm] = ACTIONS(3694), + [sym_number_literal] = ACTIONS(3696), + [anon_sym_L_SQUOTE] = ACTIONS(3696), + [anon_sym_u_SQUOTE] = ACTIONS(3696), + [anon_sym_U_SQUOTE] = ACTIONS(3696), + [anon_sym_u8_SQUOTE] = ACTIONS(3696), + [anon_sym_SQUOTE] = ACTIONS(3696), + [anon_sym_L_DQUOTE] = ACTIONS(3696), + [anon_sym_u_DQUOTE] = ACTIONS(3696), + [anon_sym_U_DQUOTE] = ACTIONS(3696), + [anon_sym_u8_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [sym_true] = ACTIONS(3694), + [sym_false] = ACTIONS(3694), + [anon_sym_NULL] = ACTIONS(3694), + [anon_sym_nullptr] = ACTIONS(3694), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3694), + [anon_sym_decltype] = ACTIONS(3694), + [anon_sym_explicit] = ACTIONS(3694), + [anon_sym_export] = ACTIONS(3694), + [anon_sym_module] = ACTIONS(3694), + [anon_sym_import] = ACTIONS(3694), + [anon_sym_template] = ACTIONS(3694), + [anon_sym_operator] = ACTIONS(3694), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_delete] = ACTIONS(3694), + [anon_sym_throw] = ACTIONS(3694), + [anon_sym_namespace] = ACTIONS(3694), + [anon_sym_static_assert] = ACTIONS(3694), + [anon_sym_concept] = ACTIONS(3694), + [anon_sym_co_return] = ACTIONS(3694), + [anon_sym_co_yield] = ACTIONS(3694), + [anon_sym_R_DQUOTE] = ACTIONS(3696), + [anon_sym_LR_DQUOTE] = ACTIONS(3696), + [anon_sym_uR_DQUOTE] = ACTIONS(3696), + [anon_sym_UR_DQUOTE] = ACTIONS(3696), + [anon_sym_u8R_DQUOTE] = ACTIONS(3696), + [anon_sym_co_await] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3694), + [anon_sym_requires] = ACTIONS(3694), + [anon_sym_CARET_CARET] = ACTIONS(3696), + [anon_sym_LBRACK_COLON] = ACTIONS(3696), + [sym_this] = ACTIONS(3694), }, [STATE(698)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_include_token1] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token2] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym___cdecl] = ACTIONS(4270), - [anon_sym___clrcall] = ACTIONS(4270), - [anon_sym___stdcall] = ACTIONS(4270), - [anon_sym___fastcall] = ACTIONS(4270), - [anon_sym___thiscall] = ACTIONS(4270), - [anon_sym___vectorcall] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_switch] = ACTIONS(4270), - [anon_sym_case] = ACTIONS(4270), - [anon_sym_default] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_do] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_goto] = ACTIONS(4270), - [anon_sym___try] = ACTIONS(4270), - [anon_sym___leave] = ACTIONS(4270), - [anon_sym_not] = ACTIONS(4270), - [anon_sym_compl] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_sizeof] = ACTIONS(4270), - [anon_sym___alignof__] = ACTIONS(4270), - [anon_sym___alignof] = ACTIONS(4270), - [anon_sym__alignof] = ACTIONS(4270), - [anon_sym_alignof] = ACTIONS(4270), - [anon_sym__Alignof] = ACTIONS(4270), - [anon_sym_offsetof] = ACTIONS(4270), - [anon_sym__Generic] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4270), - [anon_sym___asm__] = ACTIONS(4270), - [anon_sym___asm] = ACTIONS(4270), - [sym_number_literal] = ACTIONS(4272), - [anon_sym_L_SQUOTE] = ACTIONS(4272), - [anon_sym_u_SQUOTE] = ACTIONS(4272), - [anon_sym_U_SQUOTE] = ACTIONS(4272), - [anon_sym_u8_SQUOTE] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4272), - [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(4270), - [sym_false] = ACTIONS(4270), - [anon_sym_NULL] = ACTIONS(4270), - [anon_sym_nullptr] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_export] = ACTIONS(4270), - [anon_sym_module] = ACTIONS(4270), - [anon_sym_import] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_delete] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_namespace] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_concept] = ACTIONS(4270), - [anon_sym_co_return] = ACTIONS(4270), - [anon_sym_co_yield] = ACTIONS(4270), - [anon_sym_R_DQUOTE] = ACTIONS(4272), - [anon_sym_LR_DQUOTE] = ACTIONS(4272), - [anon_sym_uR_DQUOTE] = ACTIONS(4272), - [anon_sym_UR_DQUOTE] = ACTIONS(4272), - [anon_sym_u8R_DQUOTE] = ACTIONS(4272), - [anon_sym_co_await] = ACTIONS(4270), - [anon_sym_new] = ACTIONS(4270), - [anon_sym_requires] = ACTIONS(4270), - [anon_sym_CARET_CARET] = ACTIONS(4272), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - [sym_this] = ACTIONS(4270), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_include_token1] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym___cdecl] = ACTIONS(3534), + [anon_sym___clrcall] = ACTIONS(3534), + [anon_sym___stdcall] = ACTIONS(3534), + [anon_sym___fastcall] = ACTIONS(3534), + [anon_sym___thiscall] = ACTIONS(3534), + [anon_sym___vectorcall] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_else] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_goto] = ACTIONS(3534), + [anon_sym___try] = ACTIONS(3534), + [anon_sym___leave] = ACTIONS(3534), + [anon_sym_not] = ACTIONS(3534), + [anon_sym_compl] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3534), + [anon_sym___alignof__] = ACTIONS(3534), + [anon_sym___alignof] = ACTIONS(3534), + [anon_sym__alignof] = ACTIONS(3534), + [anon_sym_alignof] = ACTIONS(3534), + [anon_sym__Alignof] = ACTIONS(3534), + [anon_sym_offsetof] = ACTIONS(3534), + [anon_sym__Generic] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [anon_sym_asm] = ACTIONS(3534), + [anon_sym___asm__] = ACTIONS(3534), + [anon_sym___asm] = ACTIONS(3534), + [sym_number_literal] = ACTIONS(3536), + [anon_sym_L_SQUOTE] = ACTIONS(3536), + [anon_sym_u_SQUOTE] = ACTIONS(3536), + [anon_sym_U_SQUOTE] = ACTIONS(3536), + [anon_sym_u8_SQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_L_DQUOTE] = ACTIONS(3536), + [anon_sym_u_DQUOTE] = ACTIONS(3536), + [anon_sym_U_DQUOTE] = ACTIONS(3536), + [anon_sym_u8_DQUOTE] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [anon_sym_NULL] = ACTIONS(3534), + [anon_sym_nullptr] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_concept] = ACTIONS(3534), + [anon_sym_co_return] = ACTIONS(3534), + [anon_sym_co_yield] = ACTIONS(3534), + [anon_sym_R_DQUOTE] = ACTIONS(3536), + [anon_sym_LR_DQUOTE] = ACTIONS(3536), + [anon_sym_uR_DQUOTE] = ACTIONS(3536), + [anon_sym_UR_DQUOTE] = ACTIONS(3536), + [anon_sym_u8R_DQUOTE] = ACTIONS(3536), + [anon_sym_co_await] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_requires] = ACTIONS(3534), + [anon_sym_CARET_CARET] = ACTIONS(3536), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + [sym_this] = ACTIONS(3534), }, [STATE(699)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_include_token1] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token2] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym___cdecl] = ACTIONS(4270), - [anon_sym___clrcall] = ACTIONS(4270), - [anon_sym___stdcall] = ACTIONS(4270), - [anon_sym___fastcall] = ACTIONS(4270), - [anon_sym___thiscall] = ACTIONS(4270), - [anon_sym___vectorcall] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_switch] = ACTIONS(4270), - [anon_sym_case] = ACTIONS(4270), - [anon_sym_default] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_do] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_goto] = ACTIONS(4270), - [anon_sym___try] = ACTIONS(4270), - [anon_sym___leave] = ACTIONS(4270), - [anon_sym_not] = ACTIONS(4270), - [anon_sym_compl] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_sizeof] = ACTIONS(4270), - [anon_sym___alignof__] = ACTIONS(4270), - [anon_sym___alignof] = ACTIONS(4270), - [anon_sym__alignof] = ACTIONS(4270), - [anon_sym_alignof] = ACTIONS(4270), - [anon_sym__Alignof] = ACTIONS(4270), - [anon_sym_offsetof] = ACTIONS(4270), - [anon_sym__Generic] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4270), - [anon_sym___asm__] = ACTIONS(4270), - [anon_sym___asm] = ACTIONS(4270), - [sym_number_literal] = ACTIONS(4272), - [anon_sym_L_SQUOTE] = ACTIONS(4272), - [anon_sym_u_SQUOTE] = ACTIONS(4272), - [anon_sym_U_SQUOTE] = ACTIONS(4272), - [anon_sym_u8_SQUOTE] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4272), - [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(4270), - [sym_false] = ACTIONS(4270), - [anon_sym_NULL] = ACTIONS(4270), - [anon_sym_nullptr] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_export] = ACTIONS(4270), - [anon_sym_module] = ACTIONS(4270), - [anon_sym_import] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_delete] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_namespace] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_concept] = ACTIONS(4270), - [anon_sym_co_return] = ACTIONS(4270), - [anon_sym_co_yield] = ACTIONS(4270), - [anon_sym_R_DQUOTE] = ACTIONS(4272), - [anon_sym_LR_DQUOTE] = ACTIONS(4272), - [anon_sym_uR_DQUOTE] = ACTIONS(4272), - [anon_sym_UR_DQUOTE] = ACTIONS(4272), - [anon_sym_u8R_DQUOTE] = ACTIONS(4272), - [anon_sym_co_await] = ACTIONS(4270), - [anon_sym_new] = ACTIONS(4270), - [anon_sym_requires] = ACTIONS(4270), - [anon_sym_CARET_CARET] = ACTIONS(4272), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - [sym_this] = ACTIONS(4270), + [sym_identifier] = ACTIONS(3726), + [aux_sym_preproc_include_token1] = ACTIONS(3726), + [aux_sym_preproc_def_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token2] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3726), + [sym_preproc_directive] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_BANG] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(3726), + [anon_sym_typedef] = ACTIONS(3726), + [anon_sym_virtual] = ACTIONS(3726), + [anon_sym_extern] = ACTIONS(3726), + [anon_sym___attribute__] = ACTIONS(3726), + [anon_sym___attribute] = ACTIONS(3726), + [anon_sym_using] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3728), + [anon_sym___declspec] = ACTIONS(3726), + [anon_sym___based] = ACTIONS(3726), + [anon_sym___cdecl] = ACTIONS(3726), + [anon_sym___clrcall] = ACTIONS(3726), + [anon_sym___stdcall] = ACTIONS(3726), + [anon_sym___fastcall] = ACTIONS(3726), + [anon_sym___thiscall] = ACTIONS(3726), + [anon_sym___vectorcall] = ACTIONS(3726), + [anon_sym_LBRACE] = ACTIONS(3728), + [anon_sym_signed] = ACTIONS(3726), + [anon_sym_unsigned] = ACTIONS(3726), + [anon_sym_long] = ACTIONS(3726), + [anon_sym_short] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_static] = ACTIONS(3726), + [anon_sym_register] = ACTIONS(3726), + [anon_sym_inline] = ACTIONS(3726), + [anon_sym___inline] = ACTIONS(3726), + [anon_sym___inline__] = ACTIONS(3726), + [anon_sym___forceinline] = ACTIONS(3726), + [anon_sym_thread_local] = ACTIONS(3726), + [anon_sym___thread] = ACTIONS(3726), + [anon_sym_const] = ACTIONS(3726), + [anon_sym_constexpr] = ACTIONS(3726), + [anon_sym_volatile] = ACTIONS(3726), + [anon_sym_restrict] = ACTIONS(3726), + [anon_sym___restrict__] = ACTIONS(3726), + [anon_sym__Atomic] = ACTIONS(3726), + [anon_sym__Noreturn] = ACTIONS(3726), + [anon_sym_noreturn] = ACTIONS(3726), + [anon_sym__Nonnull] = ACTIONS(3726), + [anon_sym_mutable] = ACTIONS(3726), + [anon_sym_constinit] = ACTIONS(3726), + [anon_sym_consteval] = ACTIONS(3726), + [anon_sym_alignas] = ACTIONS(3726), + [anon_sym__Alignas] = ACTIONS(3726), + [sym_primitive_type] = ACTIONS(3726), + [anon_sym_enum] = ACTIONS(3726), + [anon_sym_class] = ACTIONS(3726), + [anon_sym_struct] = ACTIONS(3726), + [anon_sym_union] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_switch] = ACTIONS(3726), + [anon_sym_case] = ACTIONS(3726), + [anon_sym_default] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_break] = ACTIONS(3726), + [anon_sym_continue] = ACTIONS(3726), + [anon_sym_goto] = ACTIONS(3726), + [anon_sym___try] = ACTIONS(3726), + [anon_sym___leave] = ACTIONS(3726), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3728), + [anon_sym_PLUS_PLUS] = ACTIONS(3728), + [anon_sym_sizeof] = ACTIONS(3726), + [anon_sym___alignof__] = ACTIONS(3726), + [anon_sym___alignof] = ACTIONS(3726), + [anon_sym__alignof] = ACTIONS(3726), + [anon_sym_alignof] = ACTIONS(3726), + [anon_sym__Alignof] = ACTIONS(3726), + [anon_sym_offsetof] = ACTIONS(3726), + [anon_sym__Generic] = ACTIONS(3726), + [anon_sym_typename] = ACTIONS(3726), + [anon_sym_asm] = ACTIONS(3726), + [anon_sym___asm__] = ACTIONS(3726), + [anon_sym___asm] = ACTIONS(3726), + [sym_number_literal] = ACTIONS(3728), + [anon_sym_L_SQUOTE] = ACTIONS(3728), + [anon_sym_u_SQUOTE] = ACTIONS(3728), + [anon_sym_U_SQUOTE] = ACTIONS(3728), + [anon_sym_u8_SQUOTE] = ACTIONS(3728), + [anon_sym_SQUOTE] = ACTIONS(3728), + [anon_sym_L_DQUOTE] = ACTIONS(3728), + [anon_sym_u_DQUOTE] = ACTIONS(3728), + [anon_sym_U_DQUOTE] = ACTIONS(3728), + [anon_sym_u8_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE] = ACTIONS(3728), + [sym_true] = ACTIONS(3726), + [sym_false] = ACTIONS(3726), + [anon_sym_NULL] = ACTIONS(3726), + [anon_sym_nullptr] = ACTIONS(3726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3726), + [anon_sym_decltype] = ACTIONS(3726), + [anon_sym_explicit] = ACTIONS(3726), + [anon_sym_export] = ACTIONS(3726), + [anon_sym_module] = ACTIONS(3726), + [anon_sym_import] = ACTIONS(3726), + [anon_sym_template] = ACTIONS(3726), + [anon_sym_operator] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_delete] = ACTIONS(3726), + [anon_sym_throw] = ACTIONS(3726), + [anon_sym_namespace] = ACTIONS(3726), + [anon_sym_static_assert] = ACTIONS(3726), + [anon_sym_concept] = ACTIONS(3726), + [anon_sym_co_return] = ACTIONS(3726), + [anon_sym_co_yield] = ACTIONS(3726), + [anon_sym_R_DQUOTE] = ACTIONS(3728), + [anon_sym_LR_DQUOTE] = ACTIONS(3728), + [anon_sym_uR_DQUOTE] = ACTIONS(3728), + [anon_sym_UR_DQUOTE] = ACTIONS(3728), + [anon_sym_u8R_DQUOTE] = ACTIONS(3728), + [anon_sym_co_await] = ACTIONS(3726), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_requires] = ACTIONS(3726), + [anon_sym_CARET_CARET] = ACTIONS(3728), + [anon_sym_LBRACK_COLON] = ACTIONS(3728), + [sym_this] = ACTIONS(3726), }, [STATE(700)] = { - [sym_identifier] = ACTIONS(4286), - [aux_sym_preproc_include_token1] = ACTIONS(4286), - [aux_sym_preproc_def_token1] = ACTIONS(4286), - [aux_sym_preproc_if_token1] = ACTIONS(4286), - [aux_sym_preproc_if_token2] = ACTIONS(4286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4286), - [sym_preproc_directive] = ACTIONS(4286), - [anon_sym_LPAREN2] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_TILDE] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_AMP_AMP] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4288), - [anon_sym___extension__] = ACTIONS(4286), - [anon_sym_typedef] = ACTIONS(4286), - [anon_sym_virtual] = ACTIONS(4286), - [anon_sym_extern] = ACTIONS(4286), - [anon_sym___attribute__] = ACTIONS(4286), - [anon_sym___attribute] = ACTIONS(4286), - [anon_sym_using] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4288), - [anon_sym___declspec] = ACTIONS(4286), - [anon_sym___based] = ACTIONS(4286), - [anon_sym___cdecl] = ACTIONS(4286), - [anon_sym___clrcall] = ACTIONS(4286), - [anon_sym___stdcall] = ACTIONS(4286), - [anon_sym___fastcall] = ACTIONS(4286), - [anon_sym___thiscall] = ACTIONS(4286), - [anon_sym___vectorcall] = ACTIONS(4286), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_signed] = ACTIONS(4286), - [anon_sym_unsigned] = ACTIONS(4286), - [anon_sym_long] = ACTIONS(4286), - [anon_sym_short] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_static] = ACTIONS(4286), - [anon_sym_register] = ACTIONS(4286), - [anon_sym_inline] = ACTIONS(4286), - [anon_sym___inline] = ACTIONS(4286), - [anon_sym___inline__] = ACTIONS(4286), - [anon_sym___forceinline] = ACTIONS(4286), - [anon_sym_thread_local] = ACTIONS(4286), - [anon_sym___thread] = ACTIONS(4286), - [anon_sym_const] = ACTIONS(4286), - [anon_sym_constexpr] = ACTIONS(4286), - [anon_sym_volatile] = ACTIONS(4286), - [anon_sym_restrict] = ACTIONS(4286), - [anon_sym___restrict__] = ACTIONS(4286), - [anon_sym__Atomic] = ACTIONS(4286), - [anon_sym__Noreturn] = ACTIONS(4286), - [anon_sym_noreturn] = ACTIONS(4286), - [anon_sym__Nonnull] = ACTIONS(4286), - [anon_sym_mutable] = ACTIONS(4286), - [anon_sym_constinit] = ACTIONS(4286), - [anon_sym_consteval] = ACTIONS(4286), - [anon_sym_alignas] = ACTIONS(4286), - [anon_sym__Alignas] = ACTIONS(4286), - [sym_primitive_type] = ACTIONS(4286), - [anon_sym_enum] = ACTIONS(4286), - [anon_sym_class] = ACTIONS(4286), - [anon_sym_struct] = ACTIONS(4286), - [anon_sym_union] = ACTIONS(4286), - [anon_sym_if] = ACTIONS(4286), - [anon_sym_switch] = ACTIONS(4286), - [anon_sym_case] = ACTIONS(4286), - [anon_sym_default] = ACTIONS(4286), - [anon_sym_while] = ACTIONS(4286), - [anon_sym_do] = ACTIONS(4286), - [anon_sym_for] = ACTIONS(4286), - [anon_sym_return] = ACTIONS(4286), - [anon_sym_break] = ACTIONS(4286), - [anon_sym_continue] = ACTIONS(4286), - [anon_sym_goto] = ACTIONS(4286), - [anon_sym___try] = ACTIONS(4286), - [anon_sym___leave] = ACTIONS(4286), - [anon_sym_not] = ACTIONS(4286), - [anon_sym_compl] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4288), - [anon_sym_sizeof] = ACTIONS(4286), - [anon_sym___alignof__] = ACTIONS(4286), - [anon_sym___alignof] = ACTIONS(4286), - [anon_sym__alignof] = ACTIONS(4286), - [anon_sym_alignof] = ACTIONS(4286), - [anon_sym__Alignof] = ACTIONS(4286), - [anon_sym_offsetof] = ACTIONS(4286), - [anon_sym__Generic] = ACTIONS(4286), - [anon_sym_typename] = ACTIONS(4286), - [anon_sym_asm] = ACTIONS(4286), - [anon_sym___asm__] = ACTIONS(4286), - [anon_sym___asm] = ACTIONS(4286), - [sym_number_literal] = ACTIONS(4288), - [anon_sym_L_SQUOTE] = ACTIONS(4288), - [anon_sym_u_SQUOTE] = ACTIONS(4288), - [anon_sym_U_SQUOTE] = ACTIONS(4288), - [anon_sym_u8_SQUOTE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(4288), - [anon_sym_L_DQUOTE] = ACTIONS(4288), - [anon_sym_u_DQUOTE] = ACTIONS(4288), - [anon_sym_U_DQUOTE] = ACTIONS(4288), - [anon_sym_u8_DQUOTE] = ACTIONS(4288), - [anon_sym_DQUOTE] = ACTIONS(4288), - [sym_true] = ACTIONS(4286), - [sym_false] = ACTIONS(4286), - [anon_sym_NULL] = ACTIONS(4286), - [anon_sym_nullptr] = ACTIONS(4286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4286), - [anon_sym_decltype] = ACTIONS(4286), - [anon_sym_explicit] = ACTIONS(4286), - [anon_sym_export] = ACTIONS(4286), - [anon_sym_module] = ACTIONS(4286), - [anon_sym_import] = ACTIONS(4286), - [anon_sym_template] = ACTIONS(4286), - [anon_sym_operator] = ACTIONS(4286), - [anon_sym_try] = ACTIONS(4286), - [anon_sym_delete] = ACTIONS(4286), - [anon_sym_throw] = ACTIONS(4286), - [anon_sym_namespace] = ACTIONS(4286), - [anon_sym_static_assert] = ACTIONS(4286), - [anon_sym_concept] = ACTIONS(4286), - [anon_sym_co_return] = ACTIONS(4286), - [anon_sym_co_yield] = ACTIONS(4286), - [anon_sym_R_DQUOTE] = ACTIONS(4288), - [anon_sym_LR_DQUOTE] = ACTIONS(4288), - [anon_sym_uR_DQUOTE] = ACTIONS(4288), - [anon_sym_UR_DQUOTE] = ACTIONS(4288), - [anon_sym_u8R_DQUOTE] = ACTIONS(4288), - [anon_sym_co_await] = ACTIONS(4286), - [anon_sym_new] = ACTIONS(4286), - [anon_sym_requires] = ACTIONS(4286), - [anon_sym_CARET_CARET] = ACTIONS(4288), - [anon_sym_LBRACK_COLON] = ACTIONS(4288), - [sym_this] = ACTIONS(4286), + [ts_builtin_sym_end] = ACTIONS(3166), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [anon_sym_RPAREN] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [anon_sym___asm] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_module] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_CARET_CARET] = ACTIONS(3166), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + [sym_this] = ACTIONS(3168), }, [STATE(701)] = { - [sym_identifier] = ACTIONS(4290), - [aux_sym_preproc_include_token1] = ACTIONS(4290), - [aux_sym_preproc_def_token1] = ACTIONS(4290), - [aux_sym_preproc_if_token1] = ACTIONS(4290), - [aux_sym_preproc_if_token2] = ACTIONS(4290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4290), - [sym_preproc_directive] = ACTIONS(4290), - [anon_sym_LPAREN2] = ACTIONS(4292), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_TILDE] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(4292), - [anon_sym_AMP_AMP] = ACTIONS(4292), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_SEMI] = ACTIONS(4292), - [anon_sym___extension__] = ACTIONS(4290), - [anon_sym_typedef] = ACTIONS(4290), - [anon_sym_virtual] = ACTIONS(4290), - [anon_sym_extern] = ACTIONS(4290), - [anon_sym___attribute__] = ACTIONS(4290), - [anon_sym___attribute] = ACTIONS(4290), - [anon_sym_using] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4292), - [anon_sym___declspec] = ACTIONS(4290), - [anon_sym___based] = ACTIONS(4290), - [anon_sym___cdecl] = ACTIONS(4290), - [anon_sym___clrcall] = ACTIONS(4290), - [anon_sym___stdcall] = ACTIONS(4290), - [anon_sym___fastcall] = ACTIONS(4290), - [anon_sym___thiscall] = ACTIONS(4290), - [anon_sym___vectorcall] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4292), - [anon_sym_signed] = ACTIONS(4290), - [anon_sym_unsigned] = ACTIONS(4290), - [anon_sym_long] = ACTIONS(4290), - [anon_sym_short] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_static] = ACTIONS(4290), - [anon_sym_register] = ACTIONS(4290), - [anon_sym_inline] = ACTIONS(4290), - [anon_sym___inline] = ACTIONS(4290), - [anon_sym___inline__] = ACTIONS(4290), - [anon_sym___forceinline] = ACTIONS(4290), - [anon_sym_thread_local] = ACTIONS(4290), - [anon_sym___thread] = ACTIONS(4290), - [anon_sym_const] = ACTIONS(4290), - [anon_sym_constexpr] = ACTIONS(4290), - [anon_sym_volatile] = ACTIONS(4290), - [anon_sym_restrict] = ACTIONS(4290), - [anon_sym___restrict__] = ACTIONS(4290), - [anon_sym__Atomic] = ACTIONS(4290), - [anon_sym__Noreturn] = ACTIONS(4290), - [anon_sym_noreturn] = ACTIONS(4290), - [anon_sym__Nonnull] = ACTIONS(4290), - [anon_sym_mutable] = ACTIONS(4290), - [anon_sym_constinit] = ACTIONS(4290), - [anon_sym_consteval] = ACTIONS(4290), - [anon_sym_alignas] = ACTIONS(4290), - [anon_sym__Alignas] = ACTIONS(4290), - [sym_primitive_type] = ACTIONS(4290), - [anon_sym_enum] = ACTIONS(4290), - [anon_sym_class] = ACTIONS(4290), - [anon_sym_struct] = ACTIONS(4290), - [anon_sym_union] = ACTIONS(4290), - [anon_sym_if] = ACTIONS(4290), - [anon_sym_switch] = ACTIONS(4290), - [anon_sym_case] = ACTIONS(4290), - [anon_sym_default] = ACTIONS(4290), - [anon_sym_while] = ACTIONS(4290), - [anon_sym_do] = ACTIONS(4290), - [anon_sym_for] = ACTIONS(4290), - [anon_sym_return] = ACTIONS(4290), - [anon_sym_break] = ACTIONS(4290), - [anon_sym_continue] = ACTIONS(4290), - [anon_sym_goto] = ACTIONS(4290), - [anon_sym___try] = ACTIONS(4290), - [anon_sym___leave] = ACTIONS(4290), - [anon_sym_not] = ACTIONS(4290), - [anon_sym_compl] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4292), - [anon_sym_PLUS_PLUS] = ACTIONS(4292), - [anon_sym_sizeof] = ACTIONS(4290), - [anon_sym___alignof__] = ACTIONS(4290), - [anon_sym___alignof] = ACTIONS(4290), - [anon_sym__alignof] = ACTIONS(4290), - [anon_sym_alignof] = ACTIONS(4290), - [anon_sym__Alignof] = ACTIONS(4290), - [anon_sym_offsetof] = ACTIONS(4290), - [anon_sym__Generic] = ACTIONS(4290), - [anon_sym_typename] = ACTIONS(4290), - [anon_sym_asm] = ACTIONS(4290), - [anon_sym___asm__] = ACTIONS(4290), - [anon_sym___asm] = ACTIONS(4290), - [sym_number_literal] = ACTIONS(4292), - [anon_sym_L_SQUOTE] = ACTIONS(4292), - [anon_sym_u_SQUOTE] = ACTIONS(4292), - [anon_sym_U_SQUOTE] = ACTIONS(4292), - [anon_sym_u8_SQUOTE] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4292), - [anon_sym_L_DQUOTE] = ACTIONS(4292), - [anon_sym_u_DQUOTE] = ACTIONS(4292), - [anon_sym_U_DQUOTE] = ACTIONS(4292), - [anon_sym_u8_DQUOTE] = ACTIONS(4292), - [anon_sym_DQUOTE] = ACTIONS(4292), - [sym_true] = ACTIONS(4290), - [sym_false] = ACTIONS(4290), - [anon_sym_NULL] = ACTIONS(4290), - [anon_sym_nullptr] = ACTIONS(4290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4290), - [anon_sym_decltype] = ACTIONS(4290), - [anon_sym_explicit] = ACTIONS(4290), - [anon_sym_export] = ACTIONS(4290), - [anon_sym_module] = ACTIONS(4290), - [anon_sym_import] = ACTIONS(4290), - [anon_sym_template] = ACTIONS(4290), - [anon_sym_operator] = ACTIONS(4290), - [anon_sym_try] = ACTIONS(4290), - [anon_sym_delete] = ACTIONS(4290), - [anon_sym_throw] = ACTIONS(4290), - [anon_sym_namespace] = ACTIONS(4290), - [anon_sym_static_assert] = ACTIONS(4290), - [anon_sym_concept] = ACTIONS(4290), - [anon_sym_co_return] = ACTIONS(4290), - [anon_sym_co_yield] = ACTIONS(4290), - [anon_sym_R_DQUOTE] = ACTIONS(4292), - [anon_sym_LR_DQUOTE] = ACTIONS(4292), - [anon_sym_uR_DQUOTE] = ACTIONS(4292), - [anon_sym_UR_DQUOTE] = ACTIONS(4292), - [anon_sym_u8R_DQUOTE] = ACTIONS(4292), - [anon_sym_co_await] = ACTIONS(4290), - [anon_sym_new] = ACTIONS(4290), - [anon_sym_requires] = ACTIONS(4290), - [anon_sym_CARET_CARET] = ACTIONS(4292), - [anon_sym_LBRACK_COLON] = ACTIONS(4292), - [sym_this] = ACTIONS(4290), + [sym_identifier] = ACTIONS(3656), + [aux_sym_preproc_include_token1] = ACTIONS(3656), + [aux_sym_preproc_def_token1] = ACTIONS(3656), + [aux_sym_preproc_if_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3656), + [sym_preproc_directive] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_AMP_AMP] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3656), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym___extension__] = ACTIONS(3656), + [anon_sym_typedef] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym___attribute__] = ACTIONS(3656), + [anon_sym___attribute] = ACTIONS(3656), + [anon_sym_using] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), + [anon_sym___declspec] = ACTIONS(3656), + [anon_sym___based] = ACTIONS(3656), + [anon_sym___cdecl] = ACTIONS(3656), + [anon_sym___clrcall] = ACTIONS(3656), + [anon_sym___stdcall] = ACTIONS(3656), + [anon_sym___fastcall] = ACTIONS(3656), + [anon_sym___thiscall] = ACTIONS(3656), + [anon_sym___vectorcall] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_RBRACE] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3656), + [anon_sym_unsigned] = ACTIONS(3656), + [anon_sym_long] = ACTIONS(3656), + [anon_sym_short] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_register] = ACTIONS(3656), + [anon_sym_inline] = ACTIONS(3656), + [anon_sym___inline] = ACTIONS(3656), + [anon_sym___inline__] = ACTIONS(3656), + [anon_sym___forceinline] = ACTIONS(3656), + [anon_sym_thread_local] = ACTIONS(3656), + [anon_sym___thread] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_constexpr] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_restrict] = ACTIONS(3656), + [anon_sym___restrict__] = ACTIONS(3656), + [anon_sym__Atomic] = ACTIONS(3656), + [anon_sym__Noreturn] = ACTIONS(3656), + [anon_sym_noreturn] = ACTIONS(3656), + [anon_sym__Nonnull] = ACTIONS(3656), + [anon_sym_mutable] = ACTIONS(3656), + [anon_sym_constinit] = ACTIONS(3656), + [anon_sym_consteval] = ACTIONS(3656), + [anon_sym_alignas] = ACTIONS(3656), + [anon_sym__Alignas] = ACTIONS(3656), + [sym_primitive_type] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_union] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_case] = ACTIONS(3656), + [anon_sym_default] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym___try] = ACTIONS(3656), + [anon_sym___leave] = ACTIONS(3656), + [anon_sym_not] = ACTIONS(3656), + [anon_sym_compl] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym___alignof__] = ACTIONS(3656), + [anon_sym___alignof] = ACTIONS(3656), + [anon_sym__alignof] = ACTIONS(3656), + [anon_sym_alignof] = ACTIONS(3656), + [anon_sym__Alignof] = ACTIONS(3656), + [anon_sym_offsetof] = ACTIONS(3656), + [anon_sym__Generic] = ACTIONS(3656), + [anon_sym_typename] = ACTIONS(3656), + [anon_sym_asm] = ACTIONS(3656), + [anon_sym___asm__] = ACTIONS(3656), + [anon_sym___asm] = ACTIONS(3656), + [sym_number_literal] = ACTIONS(3658), + [anon_sym_L_SQUOTE] = ACTIONS(3658), + [anon_sym_u_SQUOTE] = ACTIONS(3658), + [anon_sym_U_SQUOTE] = ACTIONS(3658), + [anon_sym_u8_SQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_L_DQUOTE] = ACTIONS(3658), + [anon_sym_u_DQUOTE] = ACTIONS(3658), + [anon_sym_U_DQUOTE] = ACTIONS(3658), + [anon_sym_u8_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [anon_sym_NULL] = ACTIONS(3656), + [anon_sym_nullptr] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_explicit] = ACTIONS(3656), + [anon_sym_export] = ACTIONS(3656), + [anon_sym_import] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_operator] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_namespace] = ACTIONS(3656), + [anon_sym_static_assert] = ACTIONS(3656), + [anon_sym_concept] = ACTIONS(3656), + [anon_sym_co_return] = ACTIONS(3656), + [anon_sym_co_yield] = ACTIONS(3656), + [anon_sym_R_DQUOTE] = ACTIONS(3658), + [anon_sym_LR_DQUOTE] = ACTIONS(3658), + [anon_sym_uR_DQUOTE] = ACTIONS(3658), + [anon_sym_UR_DQUOTE] = ACTIONS(3658), + [anon_sym_u8R_DQUOTE] = ACTIONS(3658), + [anon_sym_co_await] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_requires] = ACTIONS(3656), + [anon_sym_CARET_CARET] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + [sym_this] = ACTIONS(3656), }, [STATE(702)] = { - [sym_identifier] = ACTIONS(4294), - [aux_sym_preproc_include_token1] = ACTIONS(4294), - [aux_sym_preproc_def_token1] = ACTIONS(4294), - [aux_sym_preproc_if_token1] = ACTIONS(4294), - [aux_sym_preproc_if_token2] = ACTIONS(4294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4294), - [sym_preproc_directive] = ACTIONS(4294), - [anon_sym_LPAREN2] = ACTIONS(4296), - [anon_sym_BANG] = ACTIONS(4296), - [anon_sym_TILDE] = ACTIONS(4296), - [anon_sym_DASH] = ACTIONS(4294), - [anon_sym_PLUS] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_AMP] = ACTIONS(4294), - [anon_sym_SEMI] = ACTIONS(4296), - [anon_sym___extension__] = ACTIONS(4294), - [anon_sym_typedef] = ACTIONS(4294), - [anon_sym_virtual] = ACTIONS(4294), - [anon_sym_extern] = ACTIONS(4294), - [anon_sym___attribute__] = ACTIONS(4294), - [anon_sym___attribute] = ACTIONS(4294), - [anon_sym_using] = ACTIONS(4294), - [anon_sym_COLON_COLON] = ACTIONS(4296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4296), - [anon_sym___declspec] = ACTIONS(4294), - [anon_sym___based] = ACTIONS(4294), - [anon_sym___cdecl] = ACTIONS(4294), - [anon_sym___clrcall] = ACTIONS(4294), - [anon_sym___stdcall] = ACTIONS(4294), - [anon_sym___fastcall] = ACTIONS(4294), - [anon_sym___thiscall] = ACTIONS(4294), - [anon_sym___vectorcall] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [anon_sym_signed] = ACTIONS(4294), - [anon_sym_unsigned] = ACTIONS(4294), - [anon_sym_long] = ACTIONS(4294), - [anon_sym_short] = ACTIONS(4294), - [anon_sym_LBRACK] = ACTIONS(4294), - [anon_sym_static] = ACTIONS(4294), - [anon_sym_register] = ACTIONS(4294), - [anon_sym_inline] = ACTIONS(4294), - [anon_sym___inline] = ACTIONS(4294), - [anon_sym___inline__] = ACTIONS(4294), - [anon_sym___forceinline] = ACTIONS(4294), - [anon_sym_thread_local] = ACTIONS(4294), - [anon_sym___thread] = ACTIONS(4294), - [anon_sym_const] = ACTIONS(4294), - [anon_sym_constexpr] = ACTIONS(4294), - [anon_sym_volatile] = ACTIONS(4294), - [anon_sym_restrict] = ACTIONS(4294), - [anon_sym___restrict__] = ACTIONS(4294), - [anon_sym__Atomic] = ACTIONS(4294), - [anon_sym__Noreturn] = ACTIONS(4294), - [anon_sym_noreturn] = ACTIONS(4294), - [anon_sym__Nonnull] = ACTIONS(4294), - [anon_sym_mutable] = ACTIONS(4294), - [anon_sym_constinit] = ACTIONS(4294), - [anon_sym_consteval] = ACTIONS(4294), - [anon_sym_alignas] = ACTIONS(4294), - [anon_sym__Alignas] = ACTIONS(4294), - [sym_primitive_type] = ACTIONS(4294), - [anon_sym_enum] = ACTIONS(4294), - [anon_sym_class] = ACTIONS(4294), - [anon_sym_struct] = ACTIONS(4294), - [anon_sym_union] = ACTIONS(4294), - [anon_sym_if] = ACTIONS(4294), - [anon_sym_switch] = ACTIONS(4294), - [anon_sym_case] = ACTIONS(4294), - [anon_sym_default] = ACTIONS(4294), - [anon_sym_while] = ACTIONS(4294), - [anon_sym_do] = ACTIONS(4294), - [anon_sym_for] = ACTIONS(4294), - [anon_sym_return] = ACTIONS(4294), - [anon_sym_break] = ACTIONS(4294), - [anon_sym_continue] = ACTIONS(4294), - [anon_sym_goto] = ACTIONS(4294), - [anon_sym___try] = ACTIONS(4294), - [anon_sym___leave] = ACTIONS(4294), - [anon_sym_not] = ACTIONS(4294), - [anon_sym_compl] = ACTIONS(4294), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_sizeof] = ACTIONS(4294), - [anon_sym___alignof__] = ACTIONS(4294), - [anon_sym___alignof] = ACTIONS(4294), - [anon_sym__alignof] = ACTIONS(4294), - [anon_sym_alignof] = ACTIONS(4294), - [anon_sym__Alignof] = ACTIONS(4294), - [anon_sym_offsetof] = ACTIONS(4294), - [anon_sym__Generic] = ACTIONS(4294), - [anon_sym_typename] = ACTIONS(4294), - [anon_sym_asm] = ACTIONS(4294), - [anon_sym___asm__] = ACTIONS(4294), - [anon_sym___asm] = ACTIONS(4294), - [sym_number_literal] = ACTIONS(4296), - [anon_sym_L_SQUOTE] = ACTIONS(4296), - [anon_sym_u_SQUOTE] = ACTIONS(4296), - [anon_sym_U_SQUOTE] = ACTIONS(4296), - [anon_sym_u8_SQUOTE] = ACTIONS(4296), - [anon_sym_SQUOTE] = ACTIONS(4296), - [anon_sym_L_DQUOTE] = ACTIONS(4296), - [anon_sym_u_DQUOTE] = ACTIONS(4296), - [anon_sym_U_DQUOTE] = ACTIONS(4296), - [anon_sym_u8_DQUOTE] = ACTIONS(4296), - [anon_sym_DQUOTE] = ACTIONS(4296), - [sym_true] = ACTIONS(4294), - [sym_false] = ACTIONS(4294), - [anon_sym_NULL] = ACTIONS(4294), - [anon_sym_nullptr] = ACTIONS(4294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4294), - [anon_sym_decltype] = ACTIONS(4294), - [anon_sym_explicit] = ACTIONS(4294), - [anon_sym_export] = ACTIONS(4294), - [anon_sym_module] = ACTIONS(4294), - [anon_sym_import] = ACTIONS(4294), - [anon_sym_template] = ACTIONS(4294), - [anon_sym_operator] = ACTIONS(4294), - [anon_sym_try] = ACTIONS(4294), - [anon_sym_delete] = ACTIONS(4294), - [anon_sym_throw] = ACTIONS(4294), - [anon_sym_namespace] = ACTIONS(4294), - [anon_sym_static_assert] = ACTIONS(4294), - [anon_sym_concept] = ACTIONS(4294), - [anon_sym_co_return] = ACTIONS(4294), - [anon_sym_co_yield] = ACTIONS(4294), - [anon_sym_R_DQUOTE] = ACTIONS(4296), - [anon_sym_LR_DQUOTE] = ACTIONS(4296), - [anon_sym_uR_DQUOTE] = ACTIONS(4296), - [anon_sym_UR_DQUOTE] = ACTIONS(4296), - [anon_sym_u8R_DQUOTE] = ACTIONS(4296), - [anon_sym_co_await] = ACTIONS(4294), - [anon_sym_new] = ACTIONS(4294), - [anon_sym_requires] = ACTIONS(4294), - [anon_sym_CARET_CARET] = ACTIONS(4296), - [anon_sym_LBRACK_COLON] = ACTIONS(4296), - [sym_this] = ACTIONS(4294), + [sym_identifier] = ACTIONS(3300), + [aux_sym_preproc_include_token1] = ACTIONS(3300), + [aux_sym_preproc_def_token1] = ACTIONS(3300), + [aux_sym_preproc_if_token1] = ACTIONS(3300), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3300), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3300), + [sym_preproc_directive] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym___extension__] = ACTIONS(3300), + [anon_sym_typedef] = ACTIONS(3300), + [anon_sym_virtual] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(3300), + [anon_sym___attribute__] = ACTIONS(3300), + [anon_sym___attribute] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3305), + [anon_sym___declspec] = ACTIONS(3300), + [anon_sym___based] = ACTIONS(3300), + [anon_sym___cdecl] = ACTIONS(3300), + [anon_sym___clrcall] = ACTIONS(3300), + [anon_sym___stdcall] = ACTIONS(3300), + [anon_sym___fastcall] = ACTIONS(3300), + [anon_sym___thiscall] = ACTIONS(3300), + [anon_sym___vectorcall] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_signed] = ACTIONS(3300), + [anon_sym_unsigned] = ACTIONS(3300), + [anon_sym_long] = ACTIONS(3300), + [anon_sym_short] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_register] = ACTIONS(3300), + [anon_sym_inline] = ACTIONS(3300), + [anon_sym___inline] = ACTIONS(3300), + [anon_sym___inline__] = ACTIONS(3300), + [anon_sym___forceinline] = ACTIONS(3300), + [anon_sym_thread_local] = ACTIONS(3300), + [anon_sym___thread] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_constexpr] = ACTIONS(3300), + [anon_sym_volatile] = ACTIONS(3300), + [anon_sym_restrict] = ACTIONS(3300), + [anon_sym___restrict__] = ACTIONS(3300), + [anon_sym__Atomic] = ACTIONS(3300), + [anon_sym__Noreturn] = ACTIONS(3300), + [anon_sym_noreturn] = ACTIONS(3300), + [anon_sym__Nonnull] = ACTIONS(3300), + [anon_sym_mutable] = ACTIONS(3300), + [anon_sym_constinit] = ACTIONS(3300), + [anon_sym_consteval] = ACTIONS(3300), + [anon_sym_alignas] = ACTIONS(3300), + [anon_sym__Alignas] = ACTIONS(3300), + [sym_primitive_type] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_union] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_goto] = ACTIONS(3300), + [anon_sym___try] = ACTIONS(3300), + [anon_sym___leave] = ACTIONS(3300), + [anon_sym_not] = ACTIONS(3300), + [anon_sym_compl] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_sizeof] = ACTIONS(3300), + [anon_sym___alignof__] = ACTIONS(3300), + [anon_sym___alignof] = ACTIONS(3300), + [anon_sym__alignof] = ACTIONS(3300), + [anon_sym_alignof] = ACTIONS(3300), + [anon_sym__Alignof] = ACTIONS(3300), + [anon_sym_offsetof] = ACTIONS(3300), + [anon_sym__Generic] = ACTIONS(3300), + [anon_sym_typename] = ACTIONS(3300), + [anon_sym_asm] = ACTIONS(3300), + [anon_sym___asm__] = ACTIONS(3300), + [anon_sym___asm] = ACTIONS(3300), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3305), + [anon_sym_u_SQUOTE] = ACTIONS(3305), + [anon_sym_U_SQUOTE] = ACTIONS(3305), + [anon_sym_u8_SQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_L_DQUOTE] = ACTIONS(3305), + [anon_sym_u_DQUOTE] = ACTIONS(3305), + [anon_sym_U_DQUOTE] = ACTIONS(3305), + [anon_sym_u8_DQUOTE] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [anon_sym_NULL] = ACTIONS(3300), + [anon_sym_nullptr] = ACTIONS(3300), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3300), + [anon_sym_decltype] = ACTIONS(3300), + [anon_sym_explicit] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_template] = ACTIONS(3300), + [anon_sym_operator] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_static_assert] = ACTIONS(3300), + [anon_sym_concept] = ACTIONS(3300), + [anon_sym_co_return] = ACTIONS(3300), + [anon_sym_co_yield] = ACTIONS(3300), + [anon_sym_R_DQUOTE] = ACTIONS(3305), + [anon_sym_LR_DQUOTE] = ACTIONS(3305), + [anon_sym_uR_DQUOTE] = ACTIONS(3305), + [anon_sym_UR_DQUOTE] = ACTIONS(3305), + [anon_sym_u8R_DQUOTE] = ACTIONS(3305), + [anon_sym_co_await] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_requires] = ACTIONS(3300), + [anon_sym_CARET_CARET] = ACTIONS(3305), + [anon_sym_LBRACK_COLON] = ACTIONS(3305), + [sym_this] = ACTIONS(3300), }, [STATE(703)] = { - [sym_identifier] = ACTIONS(4383), - [aux_sym_preproc_include_token1] = ACTIONS(4383), - [aux_sym_preproc_def_token1] = ACTIONS(4383), - [aux_sym_preproc_if_token1] = ACTIONS(4383), - [aux_sym_preproc_if_token2] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), - [sym_preproc_directive] = ACTIONS(4383), - [anon_sym_LPAREN2] = ACTIONS(4385), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_TILDE] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_AMP_AMP] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(4385), - [anon_sym___extension__] = ACTIONS(4383), - [anon_sym_typedef] = ACTIONS(4383), - [anon_sym_virtual] = ACTIONS(4383), - [anon_sym_extern] = ACTIONS(4383), - [anon_sym___attribute__] = ACTIONS(4383), - [anon_sym___attribute] = ACTIONS(4383), - [anon_sym_using] = ACTIONS(4383), - [anon_sym_COLON_COLON] = ACTIONS(4385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4385), - [anon_sym___declspec] = ACTIONS(4383), - [anon_sym___based] = ACTIONS(4383), - [anon_sym___cdecl] = ACTIONS(4383), - [anon_sym___clrcall] = ACTIONS(4383), - [anon_sym___stdcall] = ACTIONS(4383), - [anon_sym___fastcall] = ACTIONS(4383), - [anon_sym___thiscall] = ACTIONS(4383), - [anon_sym___vectorcall] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4385), - [anon_sym_signed] = ACTIONS(4383), - [anon_sym_unsigned] = ACTIONS(4383), - [anon_sym_long] = ACTIONS(4383), - [anon_sym_short] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_static] = ACTIONS(4383), - [anon_sym_register] = ACTIONS(4383), - [anon_sym_inline] = ACTIONS(4383), - [anon_sym___inline] = ACTIONS(4383), - [anon_sym___inline__] = ACTIONS(4383), - [anon_sym___forceinline] = ACTIONS(4383), - [anon_sym_thread_local] = ACTIONS(4383), - [anon_sym___thread] = ACTIONS(4383), - [anon_sym_const] = ACTIONS(4383), - [anon_sym_constexpr] = ACTIONS(4383), - [anon_sym_volatile] = ACTIONS(4383), - [anon_sym_restrict] = ACTIONS(4383), - [anon_sym___restrict__] = ACTIONS(4383), - [anon_sym__Atomic] = ACTIONS(4383), - [anon_sym__Noreturn] = ACTIONS(4383), - [anon_sym_noreturn] = ACTIONS(4383), - [anon_sym__Nonnull] = ACTIONS(4383), - [anon_sym_mutable] = ACTIONS(4383), - [anon_sym_constinit] = ACTIONS(4383), - [anon_sym_consteval] = ACTIONS(4383), - [anon_sym_alignas] = ACTIONS(4383), - [anon_sym__Alignas] = ACTIONS(4383), - [sym_primitive_type] = ACTIONS(4383), - [anon_sym_enum] = ACTIONS(4383), - [anon_sym_class] = ACTIONS(4383), - [anon_sym_struct] = ACTIONS(4383), - [anon_sym_union] = ACTIONS(4383), - [anon_sym_if] = ACTIONS(4383), - [anon_sym_switch] = ACTIONS(4383), - [anon_sym_case] = ACTIONS(4383), - [anon_sym_default] = ACTIONS(4383), - [anon_sym_while] = ACTIONS(4383), - [anon_sym_do] = ACTIONS(4383), - [anon_sym_for] = ACTIONS(4383), - [anon_sym_return] = ACTIONS(4383), - [anon_sym_break] = ACTIONS(4383), - [anon_sym_continue] = ACTIONS(4383), - [anon_sym_goto] = ACTIONS(4383), - [anon_sym___try] = ACTIONS(4383), - [anon_sym___leave] = ACTIONS(4383), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_compl] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4385), - [anon_sym_PLUS_PLUS] = ACTIONS(4385), - [anon_sym_sizeof] = ACTIONS(4383), - [anon_sym___alignof__] = ACTIONS(4383), - [anon_sym___alignof] = ACTIONS(4383), - [anon_sym__alignof] = ACTIONS(4383), - [anon_sym_alignof] = ACTIONS(4383), - [anon_sym__Alignof] = ACTIONS(4383), - [anon_sym_offsetof] = ACTIONS(4383), - [anon_sym__Generic] = ACTIONS(4383), - [anon_sym_typename] = ACTIONS(4383), - [anon_sym_asm] = ACTIONS(4383), - [anon_sym___asm__] = ACTIONS(4383), - [anon_sym___asm] = ACTIONS(4383), - [sym_number_literal] = ACTIONS(4385), - [anon_sym_L_SQUOTE] = ACTIONS(4385), - [anon_sym_u_SQUOTE] = ACTIONS(4385), - [anon_sym_U_SQUOTE] = ACTIONS(4385), - [anon_sym_u8_SQUOTE] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4385), - [anon_sym_L_DQUOTE] = ACTIONS(4385), - [anon_sym_u_DQUOTE] = ACTIONS(4385), - [anon_sym_U_DQUOTE] = ACTIONS(4385), - [anon_sym_u8_DQUOTE] = ACTIONS(4385), - [anon_sym_DQUOTE] = ACTIONS(4385), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [anon_sym_NULL] = ACTIONS(4383), - [anon_sym_nullptr] = ACTIONS(4383), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4383), - [anon_sym_decltype] = ACTIONS(4383), - [anon_sym_explicit] = ACTIONS(4383), - [anon_sym_export] = ACTIONS(4383), - [anon_sym_module] = ACTIONS(4383), - [anon_sym_import] = ACTIONS(4383), - [anon_sym_template] = ACTIONS(4383), - [anon_sym_operator] = ACTIONS(4383), - [anon_sym_try] = ACTIONS(4383), - [anon_sym_delete] = ACTIONS(4383), - [anon_sym_throw] = ACTIONS(4383), - [anon_sym_namespace] = ACTIONS(4383), - [anon_sym_static_assert] = ACTIONS(4383), - [anon_sym_concept] = ACTIONS(4383), - [anon_sym_co_return] = ACTIONS(4383), - [anon_sym_co_yield] = ACTIONS(4383), - [anon_sym_R_DQUOTE] = ACTIONS(4385), - [anon_sym_LR_DQUOTE] = ACTIONS(4385), - [anon_sym_uR_DQUOTE] = ACTIONS(4385), - [anon_sym_UR_DQUOTE] = ACTIONS(4385), - [anon_sym_u8R_DQUOTE] = ACTIONS(4385), - [anon_sym_co_await] = ACTIONS(4383), - [anon_sym_new] = ACTIONS(4383), - [anon_sym_requires] = ACTIONS(4383), - [anon_sym_CARET_CARET] = ACTIONS(4385), - [anon_sym_LBRACK_COLON] = ACTIONS(4385), - [sym_this] = ACTIONS(4383), + [sym_identifier] = ACTIONS(3698), + [aux_sym_preproc_include_token1] = ACTIONS(3698), + [aux_sym_preproc_def_token1] = ACTIONS(3698), + [aux_sym_preproc_if_token1] = ACTIONS(3698), + [aux_sym_preproc_if_token2] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3698), + [sym_preproc_directive] = ACTIONS(3698), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym___extension__] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym___attribute__] = ACTIONS(3698), + [anon_sym___attribute] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym___declspec] = ACTIONS(3698), + [anon_sym___based] = ACTIONS(3698), + [anon_sym___cdecl] = ACTIONS(3698), + [anon_sym___clrcall] = ACTIONS(3698), + [anon_sym___stdcall] = ACTIONS(3698), + [anon_sym___fastcall] = ACTIONS(3698), + [anon_sym___thiscall] = ACTIONS(3698), + [anon_sym___vectorcall] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_signed] = ACTIONS(3698), + [anon_sym_unsigned] = ACTIONS(3698), + [anon_sym_long] = ACTIONS(3698), + [anon_sym_short] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym___inline] = ACTIONS(3698), + [anon_sym___inline__] = ACTIONS(3698), + [anon_sym___forceinline] = ACTIONS(3698), + [anon_sym_thread_local] = ACTIONS(3698), + [anon_sym___thread] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_restrict] = ACTIONS(3698), + [anon_sym___restrict__] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym__Noreturn] = ACTIONS(3698), + [anon_sym_noreturn] = ACTIONS(3698), + [anon_sym__Nonnull] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_constinit] = ACTIONS(3698), + [anon_sym_consteval] = ACTIONS(3698), + [anon_sym_alignas] = ACTIONS(3698), + [anon_sym__Alignas] = ACTIONS(3698), + [sym_primitive_type] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_struct] = ACTIONS(3698), + [anon_sym_union] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_case] = ACTIONS(3698), + [anon_sym_default] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_goto] = ACTIONS(3698), + [anon_sym___try] = ACTIONS(3698), + [anon_sym___leave] = ACTIONS(3698), + [anon_sym_not] = ACTIONS(3698), + [anon_sym_compl] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_sizeof] = ACTIONS(3698), + [anon_sym___alignof__] = ACTIONS(3698), + [anon_sym___alignof] = ACTIONS(3698), + [anon_sym__alignof] = ACTIONS(3698), + [anon_sym_alignof] = ACTIONS(3698), + [anon_sym__Alignof] = ACTIONS(3698), + [anon_sym_offsetof] = ACTIONS(3698), + [anon_sym__Generic] = ACTIONS(3698), + [anon_sym_typename] = ACTIONS(3698), + [anon_sym_asm] = ACTIONS(3698), + [anon_sym___asm__] = ACTIONS(3698), + [anon_sym___asm] = ACTIONS(3698), + [sym_number_literal] = ACTIONS(3700), + [anon_sym_L_SQUOTE] = ACTIONS(3700), + [anon_sym_u_SQUOTE] = ACTIONS(3700), + [anon_sym_U_SQUOTE] = ACTIONS(3700), + [anon_sym_u8_SQUOTE] = ACTIONS(3700), + [anon_sym_SQUOTE] = ACTIONS(3700), + [anon_sym_L_DQUOTE] = ACTIONS(3700), + [anon_sym_u_DQUOTE] = ACTIONS(3700), + [anon_sym_U_DQUOTE] = ACTIONS(3700), + [anon_sym_u8_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [anon_sym_NULL] = ACTIONS(3698), + [anon_sym_nullptr] = ACTIONS(3698), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(3698), + [anon_sym_explicit] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_module] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_operator] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_static_assert] = ACTIONS(3698), + [anon_sym_concept] = ACTIONS(3698), + [anon_sym_co_return] = ACTIONS(3698), + [anon_sym_co_yield] = ACTIONS(3698), + [anon_sym_R_DQUOTE] = ACTIONS(3700), + [anon_sym_LR_DQUOTE] = ACTIONS(3700), + [anon_sym_uR_DQUOTE] = ACTIONS(3700), + [anon_sym_UR_DQUOTE] = ACTIONS(3700), + [anon_sym_u8R_DQUOTE] = ACTIONS(3700), + [anon_sym_co_await] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_requires] = ACTIONS(3698), + [anon_sym_CARET_CARET] = ACTIONS(3700), + [anon_sym_LBRACK_COLON] = ACTIONS(3700), + [sym_this] = ACTIONS(3698), }, [STATE(704)] = { [sym_identifier] = ACTIONS(3592), @@ -160624,1980 +160626,2685 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_this] = ACTIONS(3592), }, [STATE(705)] = { - [sym_identifier] = ACTIONS(3917), - [aux_sym_preproc_include_token1] = ACTIONS(3917), - [aux_sym_preproc_def_token1] = ACTIONS(3917), - [aux_sym_preproc_if_token1] = ACTIONS(3917), - [aux_sym_preproc_if_token2] = ACTIONS(3917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), - [sym_preproc_directive] = ACTIONS(3917), - [anon_sym_LPAREN2] = ACTIONS(3919), - [anon_sym_BANG] = ACTIONS(3919), - [anon_sym_TILDE] = ACTIONS(3919), - [anon_sym_DASH] = ACTIONS(3917), - [anon_sym_PLUS] = ACTIONS(3917), - [anon_sym_STAR] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_AMP] = ACTIONS(3917), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym___extension__] = ACTIONS(3917), - [anon_sym_typedef] = ACTIONS(3917), - [anon_sym_virtual] = ACTIONS(3917), - [anon_sym_extern] = ACTIONS(3917), - [anon_sym___attribute__] = ACTIONS(3917), - [anon_sym___attribute] = ACTIONS(3917), - [anon_sym_using] = ACTIONS(3917), - [anon_sym_COLON_COLON] = ACTIONS(3919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), - [anon_sym___declspec] = ACTIONS(3917), - [anon_sym___based] = ACTIONS(3917), - [anon_sym___cdecl] = ACTIONS(3917), - [anon_sym___clrcall] = ACTIONS(3917), - [anon_sym___stdcall] = ACTIONS(3917), - [anon_sym___fastcall] = ACTIONS(3917), - [anon_sym___thiscall] = ACTIONS(3917), - [anon_sym___vectorcall] = ACTIONS(3917), - [anon_sym_LBRACE] = ACTIONS(3919), - [anon_sym_signed] = ACTIONS(3917), - [anon_sym_unsigned] = ACTIONS(3917), - [anon_sym_long] = ACTIONS(3917), - [anon_sym_short] = ACTIONS(3917), - [anon_sym_LBRACK] = ACTIONS(3917), - [anon_sym_static] = ACTIONS(3917), - [anon_sym_register] = ACTIONS(3917), - [anon_sym_inline] = ACTIONS(3917), - [anon_sym___inline] = ACTIONS(3917), - [anon_sym___inline__] = ACTIONS(3917), - [anon_sym___forceinline] = ACTIONS(3917), - [anon_sym_thread_local] = ACTIONS(3917), - [anon_sym___thread] = ACTIONS(3917), - [anon_sym_const] = ACTIONS(3917), - [anon_sym_constexpr] = ACTIONS(3917), - [anon_sym_volatile] = ACTIONS(3917), - [anon_sym_restrict] = ACTIONS(3917), - [anon_sym___restrict__] = ACTIONS(3917), - [anon_sym__Atomic] = ACTIONS(3917), - [anon_sym__Noreturn] = ACTIONS(3917), - [anon_sym_noreturn] = ACTIONS(3917), - [anon_sym__Nonnull] = ACTIONS(3917), - [anon_sym_mutable] = ACTIONS(3917), - [anon_sym_constinit] = ACTIONS(3917), - [anon_sym_consteval] = ACTIONS(3917), - [anon_sym_alignas] = ACTIONS(3917), - [anon_sym__Alignas] = ACTIONS(3917), - [sym_primitive_type] = ACTIONS(3917), - [anon_sym_enum] = ACTIONS(3917), - [anon_sym_class] = ACTIONS(3917), - [anon_sym_struct] = ACTIONS(3917), - [anon_sym_union] = ACTIONS(3917), - [anon_sym_if] = ACTIONS(3917), - [anon_sym_switch] = ACTIONS(3917), - [anon_sym_case] = ACTIONS(3917), - [anon_sym_default] = ACTIONS(3917), - [anon_sym_while] = ACTIONS(3917), - [anon_sym_do] = ACTIONS(3917), - [anon_sym_for] = ACTIONS(3917), - [anon_sym_return] = ACTIONS(3917), - [anon_sym_break] = ACTIONS(3917), - [anon_sym_continue] = ACTIONS(3917), - [anon_sym_goto] = ACTIONS(3917), - [anon_sym___try] = ACTIONS(3917), - [anon_sym___leave] = ACTIONS(3917), - [anon_sym_not] = ACTIONS(3917), - [anon_sym_compl] = ACTIONS(3917), - [anon_sym_DASH_DASH] = ACTIONS(3919), - [anon_sym_PLUS_PLUS] = ACTIONS(3919), - [anon_sym_sizeof] = ACTIONS(3917), - [anon_sym___alignof__] = ACTIONS(3917), - [anon_sym___alignof] = ACTIONS(3917), - [anon_sym__alignof] = ACTIONS(3917), - [anon_sym_alignof] = ACTIONS(3917), - [anon_sym__Alignof] = ACTIONS(3917), - [anon_sym_offsetof] = ACTIONS(3917), - [anon_sym__Generic] = ACTIONS(3917), - [anon_sym_typename] = ACTIONS(3917), - [anon_sym_asm] = ACTIONS(3917), - [anon_sym___asm__] = ACTIONS(3917), - [anon_sym___asm] = ACTIONS(3917), - [sym_number_literal] = ACTIONS(3919), - [anon_sym_L_SQUOTE] = ACTIONS(3919), - [anon_sym_u_SQUOTE] = ACTIONS(3919), - [anon_sym_U_SQUOTE] = ACTIONS(3919), - [anon_sym_u8_SQUOTE] = ACTIONS(3919), - [anon_sym_SQUOTE] = ACTIONS(3919), - [anon_sym_L_DQUOTE] = ACTIONS(3919), - [anon_sym_u_DQUOTE] = ACTIONS(3919), - [anon_sym_U_DQUOTE] = ACTIONS(3919), - [anon_sym_u8_DQUOTE] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [sym_true] = ACTIONS(3917), - [sym_false] = ACTIONS(3917), - [anon_sym_NULL] = ACTIONS(3917), - [anon_sym_nullptr] = ACTIONS(3917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3917), - [anon_sym_decltype] = ACTIONS(3917), - [anon_sym_explicit] = ACTIONS(3917), - [anon_sym_export] = ACTIONS(3917), - [anon_sym_module] = ACTIONS(3917), - [anon_sym_import] = ACTIONS(3917), - [anon_sym_template] = ACTIONS(3917), - [anon_sym_operator] = ACTIONS(3917), - [anon_sym_try] = ACTIONS(3917), - [anon_sym_delete] = ACTIONS(3917), - [anon_sym_throw] = ACTIONS(3917), - [anon_sym_namespace] = ACTIONS(3917), - [anon_sym_static_assert] = ACTIONS(3917), - [anon_sym_concept] = ACTIONS(3917), - [anon_sym_co_return] = ACTIONS(3917), - [anon_sym_co_yield] = ACTIONS(3917), - [anon_sym_R_DQUOTE] = ACTIONS(3919), - [anon_sym_LR_DQUOTE] = ACTIONS(3919), - [anon_sym_uR_DQUOTE] = ACTIONS(3919), - [anon_sym_UR_DQUOTE] = ACTIONS(3919), - [anon_sym_u8R_DQUOTE] = ACTIONS(3919), - [anon_sym_co_await] = ACTIONS(3917), - [anon_sym_new] = ACTIONS(3917), - [anon_sym_requires] = ACTIONS(3917), - [anon_sym_CARET_CARET] = ACTIONS(3919), - [anon_sym_LBRACK_COLON] = ACTIONS(3919), - [sym_this] = ACTIONS(3917), + [sym_identifier] = ACTIONS(4126), + [aux_sym_preproc_include_token1] = ACTIONS(4126), + [aux_sym_preproc_def_token1] = ACTIONS(4126), + [aux_sym_preproc_if_token1] = ACTIONS(4126), + [aux_sym_preproc_if_token2] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4126), + [sym_preproc_directive] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4128), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_TILDE] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4126), + [anon_sym_PLUS] = ACTIONS(4126), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_AMP_AMP] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(4128), + [anon_sym___extension__] = ACTIONS(4126), + [anon_sym_typedef] = ACTIONS(4126), + [anon_sym_virtual] = ACTIONS(4126), + [anon_sym_extern] = ACTIONS(4126), + [anon_sym___attribute__] = ACTIONS(4126), + [anon_sym___attribute] = ACTIONS(4126), + [anon_sym_using] = ACTIONS(4126), + [anon_sym_COLON_COLON] = ACTIONS(4128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4128), + [anon_sym___declspec] = ACTIONS(4126), + [anon_sym___based] = ACTIONS(4126), + [anon_sym___cdecl] = ACTIONS(4126), + [anon_sym___clrcall] = ACTIONS(4126), + [anon_sym___stdcall] = ACTIONS(4126), + [anon_sym___fastcall] = ACTIONS(4126), + [anon_sym___thiscall] = ACTIONS(4126), + [anon_sym___vectorcall] = ACTIONS(4126), + [anon_sym_LBRACE] = ACTIONS(4128), + [anon_sym_signed] = ACTIONS(4126), + [anon_sym_unsigned] = ACTIONS(4126), + [anon_sym_long] = ACTIONS(4126), + [anon_sym_short] = ACTIONS(4126), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_static] = ACTIONS(4126), + [anon_sym_register] = ACTIONS(4126), + [anon_sym_inline] = ACTIONS(4126), + [anon_sym___inline] = ACTIONS(4126), + [anon_sym___inline__] = ACTIONS(4126), + [anon_sym___forceinline] = ACTIONS(4126), + [anon_sym_thread_local] = ACTIONS(4126), + [anon_sym___thread] = ACTIONS(4126), + [anon_sym_const] = ACTIONS(4126), + [anon_sym_constexpr] = ACTIONS(4126), + [anon_sym_volatile] = ACTIONS(4126), + [anon_sym_restrict] = ACTIONS(4126), + [anon_sym___restrict__] = ACTIONS(4126), + [anon_sym__Atomic] = ACTIONS(4126), + [anon_sym__Noreturn] = ACTIONS(4126), + [anon_sym_noreturn] = ACTIONS(4126), + [anon_sym__Nonnull] = ACTIONS(4126), + [anon_sym_mutable] = ACTIONS(4126), + [anon_sym_constinit] = ACTIONS(4126), + [anon_sym_consteval] = ACTIONS(4126), + [anon_sym_alignas] = ACTIONS(4126), + [anon_sym__Alignas] = ACTIONS(4126), + [sym_primitive_type] = ACTIONS(4126), + [anon_sym_enum] = ACTIONS(4126), + [anon_sym_class] = ACTIONS(4126), + [anon_sym_struct] = ACTIONS(4126), + [anon_sym_union] = ACTIONS(4126), + [anon_sym_if] = ACTIONS(4126), + [anon_sym_switch] = ACTIONS(4126), + [anon_sym_case] = ACTIONS(4126), + [anon_sym_default] = ACTIONS(4126), + [anon_sym_while] = ACTIONS(4126), + [anon_sym_do] = ACTIONS(4126), + [anon_sym_for] = ACTIONS(4126), + [anon_sym_return] = ACTIONS(4126), + [anon_sym_break] = ACTIONS(4126), + [anon_sym_continue] = ACTIONS(4126), + [anon_sym_goto] = ACTIONS(4126), + [anon_sym___try] = ACTIONS(4126), + [anon_sym___leave] = ACTIONS(4126), + [anon_sym_not] = ACTIONS(4126), + [anon_sym_compl] = ACTIONS(4126), + [anon_sym_DASH_DASH] = ACTIONS(4128), + [anon_sym_PLUS_PLUS] = ACTIONS(4128), + [anon_sym_sizeof] = ACTIONS(4126), + [anon_sym___alignof__] = ACTIONS(4126), + [anon_sym___alignof] = ACTIONS(4126), + [anon_sym__alignof] = ACTIONS(4126), + [anon_sym_alignof] = ACTIONS(4126), + [anon_sym__Alignof] = ACTIONS(4126), + [anon_sym_offsetof] = ACTIONS(4126), + [anon_sym__Generic] = ACTIONS(4126), + [anon_sym_typename] = ACTIONS(4126), + [anon_sym_asm] = ACTIONS(4126), + [anon_sym___asm__] = ACTIONS(4126), + [anon_sym___asm] = ACTIONS(4126), + [sym_number_literal] = ACTIONS(4128), + [anon_sym_L_SQUOTE] = ACTIONS(4128), + [anon_sym_u_SQUOTE] = ACTIONS(4128), + [anon_sym_U_SQUOTE] = ACTIONS(4128), + [anon_sym_u8_SQUOTE] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4128), + [anon_sym_L_DQUOTE] = ACTIONS(4128), + [anon_sym_u_DQUOTE] = ACTIONS(4128), + [anon_sym_U_DQUOTE] = ACTIONS(4128), + [anon_sym_u8_DQUOTE] = ACTIONS(4128), + [anon_sym_DQUOTE] = ACTIONS(4128), + [sym_true] = ACTIONS(4126), + [sym_false] = ACTIONS(4126), + [anon_sym_NULL] = ACTIONS(4126), + [anon_sym_nullptr] = ACTIONS(4126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4126), + [anon_sym_decltype] = ACTIONS(4126), + [anon_sym_explicit] = ACTIONS(4126), + [anon_sym_export] = ACTIONS(4126), + [anon_sym_module] = ACTIONS(4126), + [anon_sym_import] = ACTIONS(4126), + [anon_sym_template] = ACTIONS(4126), + [anon_sym_operator] = ACTIONS(4126), + [anon_sym_try] = ACTIONS(4126), + [anon_sym_delete] = ACTIONS(4126), + [anon_sym_throw] = ACTIONS(4126), + [anon_sym_namespace] = ACTIONS(4126), + [anon_sym_static_assert] = ACTIONS(4126), + [anon_sym_concept] = ACTIONS(4126), + [anon_sym_co_return] = ACTIONS(4126), + [anon_sym_co_yield] = ACTIONS(4126), + [anon_sym_R_DQUOTE] = ACTIONS(4128), + [anon_sym_LR_DQUOTE] = ACTIONS(4128), + [anon_sym_uR_DQUOTE] = ACTIONS(4128), + [anon_sym_UR_DQUOTE] = ACTIONS(4128), + [anon_sym_u8R_DQUOTE] = ACTIONS(4128), + [anon_sym_co_await] = ACTIONS(4126), + [anon_sym_new] = ACTIONS(4126), + [anon_sym_requires] = ACTIONS(4126), + [anon_sym_CARET_CARET] = ACTIONS(4128), + [anon_sym_LBRACK_COLON] = ACTIONS(4128), + [sym_this] = ACTIONS(4126), }, [STATE(706)] = { - [sym_identifier] = ACTIONS(3596), - [aux_sym_preproc_include_token1] = ACTIONS(3596), - [aux_sym_preproc_def_token1] = ACTIONS(3596), - [aux_sym_preproc_if_token1] = ACTIONS(3596), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), - [sym_preproc_directive] = ACTIONS(3596), - [anon_sym_LPAREN2] = ACTIONS(3598), - [anon_sym_BANG] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_AMP_AMP] = ACTIONS(3598), - [anon_sym_AMP] = ACTIONS(3596), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym___extension__] = ACTIONS(3596), - [anon_sym_typedef] = ACTIONS(3596), - [anon_sym_virtual] = ACTIONS(3596), - [anon_sym_extern] = ACTIONS(3596), - [anon_sym___attribute__] = ACTIONS(3596), - [anon_sym___attribute] = ACTIONS(3596), - [anon_sym_using] = ACTIONS(3596), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), - [anon_sym___declspec] = ACTIONS(3596), - [anon_sym___based] = ACTIONS(3596), - [anon_sym___cdecl] = ACTIONS(3596), - [anon_sym___clrcall] = ACTIONS(3596), - [anon_sym___stdcall] = ACTIONS(3596), - [anon_sym___fastcall] = ACTIONS(3596), - [anon_sym___thiscall] = ACTIONS(3596), - [anon_sym___vectorcall] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_RBRACE] = ACTIONS(3598), - [anon_sym_signed] = ACTIONS(3596), - [anon_sym_unsigned] = ACTIONS(3596), - [anon_sym_long] = ACTIONS(3596), - [anon_sym_short] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_register] = ACTIONS(3596), - [anon_sym_inline] = ACTIONS(3596), - [anon_sym___inline] = ACTIONS(3596), - [anon_sym___inline__] = ACTIONS(3596), - [anon_sym___forceinline] = ACTIONS(3596), - [anon_sym_thread_local] = ACTIONS(3596), - [anon_sym___thread] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_constexpr] = ACTIONS(3596), - [anon_sym_volatile] = ACTIONS(3596), - [anon_sym_restrict] = ACTIONS(3596), - [anon_sym___restrict__] = ACTIONS(3596), - [anon_sym__Atomic] = ACTIONS(3596), - [anon_sym__Noreturn] = ACTIONS(3596), - [anon_sym_noreturn] = ACTIONS(3596), - [anon_sym__Nonnull] = ACTIONS(3596), - [anon_sym_mutable] = ACTIONS(3596), - [anon_sym_constinit] = ACTIONS(3596), - [anon_sym_consteval] = ACTIONS(3596), - [anon_sym_alignas] = ACTIONS(3596), - [anon_sym__Alignas] = ACTIONS(3596), - [sym_primitive_type] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_struct] = ACTIONS(3596), - [anon_sym_union] = ACTIONS(3596), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_case] = ACTIONS(3596), - [anon_sym_default] = ACTIONS(3596), - [anon_sym_while] = ACTIONS(3596), - [anon_sym_do] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_goto] = ACTIONS(3596), - [anon_sym___try] = ACTIONS(3596), - [anon_sym___leave] = ACTIONS(3596), - [anon_sym_not] = ACTIONS(3596), - [anon_sym_compl] = ACTIONS(3596), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3596), - [anon_sym___alignof__] = ACTIONS(3596), - [anon_sym___alignof] = ACTIONS(3596), - [anon_sym__alignof] = ACTIONS(3596), - [anon_sym_alignof] = ACTIONS(3596), - [anon_sym__Alignof] = ACTIONS(3596), - [anon_sym_offsetof] = ACTIONS(3596), - [anon_sym__Generic] = ACTIONS(3596), - [anon_sym_typename] = ACTIONS(3596), - [anon_sym_asm] = ACTIONS(3596), - [anon_sym___asm__] = ACTIONS(3596), - [anon_sym___asm] = ACTIONS(3596), - [sym_number_literal] = ACTIONS(3598), - [anon_sym_L_SQUOTE] = ACTIONS(3598), - [anon_sym_u_SQUOTE] = ACTIONS(3598), - [anon_sym_U_SQUOTE] = ACTIONS(3598), - [anon_sym_u8_SQUOTE] = ACTIONS(3598), - [anon_sym_SQUOTE] = ACTIONS(3598), - [anon_sym_L_DQUOTE] = ACTIONS(3598), - [anon_sym_u_DQUOTE] = ACTIONS(3598), - [anon_sym_U_DQUOTE] = ACTIONS(3598), - [anon_sym_u8_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [sym_true] = ACTIONS(3596), - [sym_false] = ACTIONS(3596), - [anon_sym_NULL] = ACTIONS(3596), - [anon_sym_nullptr] = ACTIONS(3596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3596), - [anon_sym_decltype] = ACTIONS(3596), - [anon_sym_explicit] = ACTIONS(3596), - [anon_sym_export] = ACTIONS(3596), - [anon_sym_import] = ACTIONS(3596), - [anon_sym_template] = ACTIONS(3596), - [anon_sym_operator] = ACTIONS(3596), - [anon_sym_try] = ACTIONS(3596), - [anon_sym_delete] = ACTIONS(3596), - [anon_sym_throw] = ACTIONS(3596), - [anon_sym_namespace] = ACTIONS(3596), - [anon_sym_static_assert] = ACTIONS(3596), - [anon_sym_concept] = ACTIONS(3596), - [anon_sym_co_return] = ACTIONS(3596), - [anon_sym_co_yield] = ACTIONS(3596), - [anon_sym_R_DQUOTE] = ACTIONS(3598), - [anon_sym_LR_DQUOTE] = ACTIONS(3598), - [anon_sym_uR_DQUOTE] = ACTIONS(3598), - [anon_sym_UR_DQUOTE] = ACTIONS(3598), - [anon_sym_u8R_DQUOTE] = ACTIONS(3598), - [anon_sym_co_await] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_requires] = ACTIONS(3596), - [anon_sym_CARET_CARET] = ACTIONS(3598), - [anon_sym_LBRACK_COLON] = ACTIONS(3598), - [sym_this] = ACTIONS(3596), + [sym_identifier] = ACTIONS(3648), + [aux_sym_preproc_include_token1] = ACTIONS(3648), + [aux_sym_preproc_def_token1] = ACTIONS(3648), + [aux_sym_preproc_if_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3648), + [sym_preproc_directive] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP_AMP] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3648), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_using] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym___based] = ACTIONS(3648), + [anon_sym___cdecl] = ACTIONS(3648), + [anon_sym___clrcall] = ACTIONS(3648), + [anon_sym___stdcall] = ACTIONS(3648), + [anon_sym___fastcall] = ACTIONS(3648), + [anon_sym___thiscall] = ACTIONS(3648), + [anon_sym___vectorcall] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_case] = ACTIONS(3648), + [anon_sym_default] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym___try] = ACTIONS(3648), + [anon_sym___leave] = ACTIONS(3648), + [anon_sym_not] = ACTIONS(3648), + [anon_sym_compl] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym___alignof__] = ACTIONS(3648), + [anon_sym___alignof] = ACTIONS(3648), + [anon_sym__alignof] = ACTIONS(3648), + [anon_sym_alignof] = ACTIONS(3648), + [anon_sym__Alignof] = ACTIONS(3648), + [anon_sym_offsetof] = ACTIONS(3648), + [anon_sym__Generic] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [anon_sym_asm] = ACTIONS(3648), + [anon_sym___asm__] = ACTIONS(3648), + [anon_sym___asm] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [anon_sym_L_SQUOTE] = ACTIONS(3650), + [anon_sym_u_SQUOTE] = ACTIONS(3650), + [anon_sym_U_SQUOTE] = ACTIONS(3650), + [anon_sym_u8_SQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_L_DQUOTE] = ACTIONS(3650), + [anon_sym_u_DQUOTE] = ACTIONS(3650), + [anon_sym_U_DQUOTE] = ACTIONS(3650), + [anon_sym_u8_DQUOTE] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [anon_sym_NULL] = ACTIONS(3648), + [anon_sym_nullptr] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_explicit] = ACTIONS(3648), + [anon_sym_export] = ACTIONS(3648), + [anon_sym_import] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_operator] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_namespace] = ACTIONS(3648), + [anon_sym_static_assert] = ACTIONS(3648), + [anon_sym_concept] = ACTIONS(3648), + [anon_sym_co_return] = ACTIONS(3648), + [anon_sym_co_yield] = ACTIONS(3648), + [anon_sym_R_DQUOTE] = ACTIONS(3650), + [anon_sym_LR_DQUOTE] = ACTIONS(3650), + [anon_sym_uR_DQUOTE] = ACTIONS(3650), + [anon_sym_UR_DQUOTE] = ACTIONS(3650), + [anon_sym_u8R_DQUOTE] = ACTIONS(3650), + [anon_sym_co_await] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_requires] = ACTIONS(3648), + [anon_sym_CARET_CARET] = ACTIONS(3650), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [sym_this] = ACTIONS(3648), }, [STATE(707)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_include_token1] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym___cdecl] = ACTIONS(3600), - [anon_sym___clrcall] = ACTIONS(3600), - [anon_sym___stdcall] = ACTIONS(3600), - [anon_sym___fastcall] = ACTIONS(3600), - [anon_sym___thiscall] = ACTIONS(3600), - [anon_sym___vectorcall] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_case] = ACTIONS(3600), - [anon_sym_default] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym___try] = ACTIONS(3600), - [anon_sym___leave] = ACTIONS(3600), - [anon_sym_not] = ACTIONS(3600), - [anon_sym_compl] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(3600), - [anon_sym___alignof] = ACTIONS(3600), - [anon_sym__alignof] = ACTIONS(3600), - [anon_sym_alignof] = ACTIONS(3600), - [anon_sym__Alignof] = ACTIONS(3600), - [anon_sym_offsetof] = ACTIONS(3600), - [anon_sym__Generic] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [anon_sym_asm] = ACTIONS(3600), - [anon_sym___asm__] = ACTIONS(3600), - [anon_sym___asm] = ACTIONS(3600), - [sym_number_literal] = ACTIONS(3602), - [anon_sym_L_SQUOTE] = ACTIONS(3602), - [anon_sym_u_SQUOTE] = ACTIONS(3602), - [anon_sym_U_SQUOTE] = ACTIONS(3602), - [anon_sym_u8_SQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_L_DQUOTE] = ACTIONS(3602), - [anon_sym_u_DQUOTE] = ACTIONS(3602), - [anon_sym_U_DQUOTE] = ACTIONS(3602), - [anon_sym_u8_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [anon_sym_NULL] = ACTIONS(3600), - [anon_sym_nullptr] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_export] = ACTIONS(3600), - [anon_sym_import] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_concept] = ACTIONS(3600), - [anon_sym_co_return] = ACTIONS(3600), - [anon_sym_co_yield] = ACTIONS(3600), - [anon_sym_R_DQUOTE] = ACTIONS(3602), - [anon_sym_LR_DQUOTE] = ACTIONS(3602), - [anon_sym_uR_DQUOTE] = ACTIONS(3602), - [anon_sym_UR_DQUOTE] = ACTIONS(3602), - [anon_sym_u8R_DQUOTE] = ACTIONS(3602), - [anon_sym_co_await] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_requires] = ACTIONS(3600), - [anon_sym_CARET_CARET] = ACTIONS(3602), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - [sym_this] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3702), + [aux_sym_preproc_include_token1] = ACTIONS(3702), + [aux_sym_preproc_def_token1] = ACTIONS(3702), + [aux_sym_preproc_if_token1] = ACTIONS(3702), + [aux_sym_preproc_if_token2] = ACTIONS(3702), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3702), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3702), + [sym_preproc_directive] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3704), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_TILDE] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3704), + [anon_sym___extension__] = ACTIONS(3702), + [anon_sym_typedef] = ACTIONS(3702), + [anon_sym_virtual] = ACTIONS(3702), + [anon_sym_extern] = ACTIONS(3702), + [anon_sym___attribute__] = ACTIONS(3702), + [anon_sym___attribute] = ACTIONS(3702), + [anon_sym_using] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3704), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3704), + [anon_sym___declspec] = ACTIONS(3702), + [anon_sym___based] = ACTIONS(3702), + [anon_sym___cdecl] = ACTIONS(3702), + [anon_sym___clrcall] = ACTIONS(3702), + [anon_sym___stdcall] = ACTIONS(3702), + [anon_sym___fastcall] = ACTIONS(3702), + [anon_sym___thiscall] = ACTIONS(3702), + [anon_sym___vectorcall] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3704), + [anon_sym_signed] = ACTIONS(3702), + [anon_sym_unsigned] = ACTIONS(3702), + [anon_sym_long] = ACTIONS(3702), + [anon_sym_short] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_static] = ACTIONS(3702), + [anon_sym_register] = ACTIONS(3702), + [anon_sym_inline] = ACTIONS(3702), + [anon_sym___inline] = ACTIONS(3702), + [anon_sym___inline__] = ACTIONS(3702), + [anon_sym___forceinline] = ACTIONS(3702), + [anon_sym_thread_local] = ACTIONS(3702), + [anon_sym___thread] = ACTIONS(3702), + [anon_sym_const] = ACTIONS(3702), + [anon_sym_constexpr] = ACTIONS(3702), + [anon_sym_volatile] = ACTIONS(3702), + [anon_sym_restrict] = ACTIONS(3702), + [anon_sym___restrict__] = ACTIONS(3702), + [anon_sym__Atomic] = ACTIONS(3702), + [anon_sym__Noreturn] = ACTIONS(3702), + [anon_sym_noreturn] = ACTIONS(3702), + [anon_sym__Nonnull] = ACTIONS(3702), + [anon_sym_mutable] = ACTIONS(3702), + [anon_sym_constinit] = ACTIONS(3702), + [anon_sym_consteval] = ACTIONS(3702), + [anon_sym_alignas] = ACTIONS(3702), + [anon_sym__Alignas] = ACTIONS(3702), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(3702), + [anon_sym_class] = ACTIONS(3702), + [anon_sym_struct] = ACTIONS(3702), + [anon_sym_union] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_case] = ACTIONS(3702), + [anon_sym_default] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_break] = ACTIONS(3702), + [anon_sym_continue] = ACTIONS(3702), + [anon_sym_goto] = ACTIONS(3702), + [anon_sym___try] = ACTIONS(3702), + [anon_sym___leave] = ACTIONS(3702), + [anon_sym_not] = ACTIONS(3702), + [anon_sym_compl] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3704), + [anon_sym_sizeof] = ACTIONS(3702), + [anon_sym___alignof__] = ACTIONS(3702), + [anon_sym___alignof] = ACTIONS(3702), + [anon_sym__alignof] = ACTIONS(3702), + [anon_sym_alignof] = ACTIONS(3702), + [anon_sym__Alignof] = ACTIONS(3702), + [anon_sym_offsetof] = ACTIONS(3702), + [anon_sym__Generic] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3702), + [anon_sym_asm] = ACTIONS(3702), + [anon_sym___asm__] = ACTIONS(3702), + [anon_sym___asm] = ACTIONS(3702), + [sym_number_literal] = ACTIONS(3704), + [anon_sym_L_SQUOTE] = ACTIONS(3704), + [anon_sym_u_SQUOTE] = ACTIONS(3704), + [anon_sym_U_SQUOTE] = ACTIONS(3704), + [anon_sym_u8_SQUOTE] = ACTIONS(3704), + [anon_sym_SQUOTE] = ACTIONS(3704), + [anon_sym_L_DQUOTE] = ACTIONS(3704), + [anon_sym_u_DQUOTE] = ACTIONS(3704), + [anon_sym_U_DQUOTE] = ACTIONS(3704), + [anon_sym_u8_DQUOTE] = ACTIONS(3704), + [anon_sym_DQUOTE] = ACTIONS(3704), + [sym_true] = ACTIONS(3702), + [sym_false] = ACTIONS(3702), + [anon_sym_NULL] = ACTIONS(3702), + [anon_sym_nullptr] = ACTIONS(3702), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3702), + [anon_sym_decltype] = ACTIONS(3702), + [anon_sym_explicit] = ACTIONS(3702), + [anon_sym_export] = ACTIONS(3702), + [anon_sym_module] = ACTIONS(3702), + [anon_sym_import] = ACTIONS(3702), + [anon_sym_template] = ACTIONS(3702), + [anon_sym_operator] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_delete] = ACTIONS(3702), + [anon_sym_throw] = ACTIONS(3702), + [anon_sym_namespace] = ACTIONS(3702), + [anon_sym_static_assert] = ACTIONS(3702), + [anon_sym_concept] = ACTIONS(3702), + [anon_sym_co_return] = ACTIONS(3702), + [anon_sym_co_yield] = ACTIONS(3702), + [anon_sym_R_DQUOTE] = ACTIONS(3704), + [anon_sym_LR_DQUOTE] = ACTIONS(3704), + [anon_sym_uR_DQUOTE] = ACTIONS(3704), + [anon_sym_UR_DQUOTE] = ACTIONS(3704), + [anon_sym_u8R_DQUOTE] = ACTIONS(3704), + [anon_sym_co_await] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_requires] = ACTIONS(3702), + [anon_sym_CARET_CARET] = ACTIONS(3704), + [anon_sym_LBRACK_COLON] = ACTIONS(3704), + [sym_this] = ACTIONS(3702), }, [STATE(708)] = { - [sym_identifier] = ACTIONS(3931), - [aux_sym_preproc_include_token1] = ACTIONS(3931), - [aux_sym_preproc_def_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token2] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), - [sym_preproc_directive] = ACTIONS(3931), - [anon_sym_LPAREN2] = ACTIONS(3933), - [anon_sym_BANG] = ACTIONS(3933), - [anon_sym_TILDE] = ACTIONS(3933), - [anon_sym_DASH] = ACTIONS(3931), - [anon_sym_PLUS] = ACTIONS(3931), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(3931), - [anon_sym_SEMI] = ACTIONS(3933), - [anon_sym___extension__] = ACTIONS(3931), - [anon_sym_typedef] = ACTIONS(3931), - [anon_sym_virtual] = ACTIONS(3931), - [anon_sym_extern] = ACTIONS(3931), - [anon_sym___attribute__] = ACTIONS(3931), - [anon_sym___attribute] = ACTIONS(3931), - [anon_sym_using] = ACTIONS(3931), - [anon_sym_COLON_COLON] = ACTIONS(3933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), - [anon_sym___declspec] = ACTIONS(3931), - [anon_sym___based] = ACTIONS(3931), - [anon_sym___cdecl] = ACTIONS(3931), - [anon_sym___clrcall] = ACTIONS(3931), - [anon_sym___stdcall] = ACTIONS(3931), - [anon_sym___fastcall] = ACTIONS(3931), - [anon_sym___thiscall] = ACTIONS(3931), - [anon_sym___vectorcall] = ACTIONS(3931), - [anon_sym_LBRACE] = ACTIONS(3933), - [anon_sym_signed] = ACTIONS(3931), - [anon_sym_unsigned] = ACTIONS(3931), - [anon_sym_long] = ACTIONS(3931), - [anon_sym_short] = ACTIONS(3931), - [anon_sym_LBRACK] = ACTIONS(3931), - [anon_sym_static] = ACTIONS(3931), - [anon_sym_register] = ACTIONS(3931), - [anon_sym_inline] = ACTIONS(3931), - [anon_sym___inline] = ACTIONS(3931), - [anon_sym___inline__] = ACTIONS(3931), - [anon_sym___forceinline] = ACTIONS(3931), - [anon_sym_thread_local] = ACTIONS(3931), - [anon_sym___thread] = ACTIONS(3931), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_constexpr] = ACTIONS(3931), - [anon_sym_volatile] = ACTIONS(3931), - [anon_sym_restrict] = ACTIONS(3931), - [anon_sym___restrict__] = ACTIONS(3931), - [anon_sym__Atomic] = ACTIONS(3931), - [anon_sym__Noreturn] = ACTIONS(3931), - [anon_sym_noreturn] = ACTIONS(3931), - [anon_sym__Nonnull] = ACTIONS(3931), - [anon_sym_mutable] = ACTIONS(3931), - [anon_sym_constinit] = ACTIONS(3931), - [anon_sym_consteval] = ACTIONS(3931), - [anon_sym_alignas] = ACTIONS(3931), - [anon_sym__Alignas] = ACTIONS(3931), - [sym_primitive_type] = ACTIONS(3931), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3931), - [anon_sym_struct] = ACTIONS(3931), - [anon_sym_union] = ACTIONS(3931), - [anon_sym_if] = ACTIONS(3931), - [anon_sym_switch] = ACTIONS(3931), - [anon_sym_case] = ACTIONS(3931), - [anon_sym_default] = ACTIONS(3931), - [anon_sym_while] = ACTIONS(3931), - [anon_sym_do] = ACTIONS(3931), - [anon_sym_for] = ACTIONS(3931), - [anon_sym_return] = ACTIONS(3931), - [anon_sym_break] = ACTIONS(3931), - [anon_sym_continue] = ACTIONS(3931), - [anon_sym_goto] = ACTIONS(3931), - [anon_sym___try] = ACTIONS(3931), - [anon_sym___leave] = ACTIONS(3931), - [anon_sym_not] = ACTIONS(3931), - [anon_sym_compl] = ACTIONS(3931), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_sizeof] = ACTIONS(3931), - [anon_sym___alignof__] = ACTIONS(3931), - [anon_sym___alignof] = ACTIONS(3931), - [anon_sym__alignof] = ACTIONS(3931), - [anon_sym_alignof] = ACTIONS(3931), - [anon_sym__Alignof] = ACTIONS(3931), - [anon_sym_offsetof] = ACTIONS(3931), - [anon_sym__Generic] = ACTIONS(3931), - [anon_sym_typename] = ACTIONS(3931), - [anon_sym_asm] = ACTIONS(3931), - [anon_sym___asm__] = ACTIONS(3931), - [anon_sym___asm] = ACTIONS(3931), - [sym_number_literal] = ACTIONS(3933), - [anon_sym_L_SQUOTE] = ACTIONS(3933), - [anon_sym_u_SQUOTE] = ACTIONS(3933), - [anon_sym_U_SQUOTE] = ACTIONS(3933), - [anon_sym_u8_SQUOTE] = ACTIONS(3933), - [anon_sym_SQUOTE] = ACTIONS(3933), - [anon_sym_L_DQUOTE] = ACTIONS(3933), - [anon_sym_u_DQUOTE] = ACTIONS(3933), - [anon_sym_U_DQUOTE] = ACTIONS(3933), - [anon_sym_u8_DQUOTE] = ACTIONS(3933), - [anon_sym_DQUOTE] = ACTIONS(3933), - [sym_true] = ACTIONS(3931), - [sym_false] = ACTIONS(3931), - [anon_sym_NULL] = ACTIONS(3931), - [anon_sym_nullptr] = ACTIONS(3931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3931), - [anon_sym_decltype] = ACTIONS(3931), - [anon_sym_explicit] = ACTIONS(3931), - [anon_sym_export] = ACTIONS(3931), - [anon_sym_module] = ACTIONS(3931), - [anon_sym_import] = ACTIONS(3931), - [anon_sym_template] = ACTIONS(3931), - [anon_sym_operator] = ACTIONS(3931), - [anon_sym_try] = ACTIONS(3931), - [anon_sym_delete] = ACTIONS(3931), - [anon_sym_throw] = ACTIONS(3931), - [anon_sym_namespace] = ACTIONS(3931), - [anon_sym_static_assert] = ACTIONS(3931), - [anon_sym_concept] = ACTIONS(3931), - [anon_sym_co_return] = ACTIONS(3931), - [anon_sym_co_yield] = ACTIONS(3931), - [anon_sym_R_DQUOTE] = ACTIONS(3933), - [anon_sym_LR_DQUOTE] = ACTIONS(3933), - [anon_sym_uR_DQUOTE] = ACTIONS(3933), - [anon_sym_UR_DQUOTE] = ACTIONS(3933), - [anon_sym_u8R_DQUOTE] = ACTIONS(3933), - [anon_sym_co_await] = ACTIONS(3931), - [anon_sym_new] = ACTIONS(3931), - [anon_sym_requires] = ACTIONS(3931), - [anon_sym_CARET_CARET] = ACTIONS(3933), - [anon_sym_LBRACK_COLON] = ACTIONS(3933), - [sym_this] = ACTIONS(3931), + [sym_identifier] = ACTIONS(3522), + [aux_sym_preproc_include_token1] = ACTIONS(3522), + [aux_sym_preproc_def_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token1] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3522), + [sym_preproc_directive] = ACTIONS(3522), + [anon_sym_LPAREN2] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3524), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_virtual] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym___attribute__] = ACTIONS(3522), + [anon_sym___attribute] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_COLON_COLON] = ACTIONS(3524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3524), + [anon_sym___declspec] = ACTIONS(3522), + [anon_sym___based] = ACTIONS(3522), + [anon_sym___cdecl] = ACTIONS(3522), + [anon_sym___clrcall] = ACTIONS(3522), + [anon_sym___stdcall] = ACTIONS(3522), + [anon_sym___fastcall] = ACTIONS(3522), + [anon_sym___thiscall] = ACTIONS(3522), + [anon_sym___vectorcall] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_signed] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym___inline] = ACTIONS(3522), + [anon_sym___inline__] = ACTIONS(3522), + [anon_sym___forceinline] = ACTIONS(3522), + [anon_sym_thread_local] = ACTIONS(3522), + [anon_sym___thread] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_constexpr] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym___restrict__] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym__Noreturn] = ACTIONS(3522), + [anon_sym_noreturn] = ACTIONS(3522), + [anon_sym__Nonnull] = ACTIONS(3522), + [anon_sym_mutable] = ACTIONS(3522), + [anon_sym_constinit] = ACTIONS(3522), + [anon_sym_consteval] = ACTIONS(3522), + [anon_sym_alignas] = ACTIONS(3522), + [anon_sym__Alignas] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_goto] = ACTIONS(3522), + [anon_sym___try] = ACTIONS(3522), + [anon_sym___leave] = ACTIONS(3522), + [anon_sym_not] = ACTIONS(3522), + [anon_sym_compl] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_sizeof] = ACTIONS(3522), + [anon_sym___alignof__] = ACTIONS(3522), + [anon_sym___alignof] = ACTIONS(3522), + [anon_sym__alignof] = ACTIONS(3522), + [anon_sym_alignof] = ACTIONS(3522), + [anon_sym__Alignof] = ACTIONS(3522), + [anon_sym_offsetof] = ACTIONS(3522), + [anon_sym__Generic] = ACTIONS(3522), + [anon_sym_typename] = ACTIONS(3522), + [anon_sym_asm] = ACTIONS(3522), + [anon_sym___asm__] = ACTIONS(3522), + [anon_sym___asm] = ACTIONS(3522), + [sym_number_literal] = ACTIONS(3524), + [anon_sym_L_SQUOTE] = ACTIONS(3524), + [anon_sym_u_SQUOTE] = ACTIONS(3524), + [anon_sym_U_SQUOTE] = ACTIONS(3524), + [anon_sym_u8_SQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_L_DQUOTE] = ACTIONS(3524), + [anon_sym_u_DQUOTE] = ACTIONS(3524), + [anon_sym_U_DQUOTE] = ACTIONS(3524), + [anon_sym_u8_DQUOTE] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [anon_sym_NULL] = ACTIONS(3522), + [anon_sym_nullptr] = ACTIONS(3522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3522), + [anon_sym_decltype] = ACTIONS(3522), + [anon_sym_explicit] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_template] = ACTIONS(3522), + [anon_sym_operator] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_static_assert] = ACTIONS(3522), + [anon_sym_concept] = ACTIONS(3522), + [anon_sym_co_return] = ACTIONS(3522), + [anon_sym_co_yield] = ACTIONS(3522), + [anon_sym_R_DQUOTE] = ACTIONS(3524), + [anon_sym_LR_DQUOTE] = ACTIONS(3524), + [anon_sym_uR_DQUOTE] = ACTIONS(3524), + [anon_sym_UR_DQUOTE] = ACTIONS(3524), + [anon_sym_u8R_DQUOTE] = ACTIONS(3524), + [anon_sym_co_await] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_requires] = ACTIONS(3522), + [anon_sym_CARET_CARET] = ACTIONS(3524), + [anon_sym_LBRACK_COLON] = ACTIONS(3524), + [sym_this] = ACTIONS(3522), }, [STATE(709)] = { - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_include_token1] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token2] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym___cdecl] = ACTIONS(3950), - [anon_sym___clrcall] = ACTIONS(3950), - [anon_sym___stdcall] = ACTIONS(3950), - [anon_sym___fastcall] = ACTIONS(3950), - [anon_sym___thiscall] = ACTIONS(3950), - [anon_sym___vectorcall] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3952), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_if] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_case] = ACTIONS(3950), - [anon_sym_default] = ACTIONS(3950), - [anon_sym_while] = ACTIONS(3950), - [anon_sym_do] = ACTIONS(3950), - [anon_sym_for] = ACTIONS(3950), - [anon_sym_return] = ACTIONS(3950), - [anon_sym_break] = ACTIONS(3950), - [anon_sym_continue] = ACTIONS(3950), - [anon_sym_goto] = ACTIONS(3950), - [anon_sym___try] = ACTIONS(3950), - [anon_sym___leave] = ACTIONS(3950), - [anon_sym_not] = ACTIONS(3950), - [anon_sym_compl] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3952), - [anon_sym_sizeof] = ACTIONS(3950), - [anon_sym___alignof__] = ACTIONS(3950), - [anon_sym___alignof] = ACTIONS(3950), - [anon_sym__alignof] = ACTIONS(3950), - [anon_sym_alignof] = ACTIONS(3950), - [anon_sym__Alignof] = ACTIONS(3950), - [anon_sym_offsetof] = ACTIONS(3950), - [anon_sym__Generic] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), - [anon_sym_asm] = ACTIONS(3950), - [anon_sym___asm__] = ACTIONS(3950), - [anon_sym___asm] = ACTIONS(3950), - [sym_number_literal] = ACTIONS(3952), - [anon_sym_L_SQUOTE] = ACTIONS(3952), - [anon_sym_u_SQUOTE] = ACTIONS(3952), - [anon_sym_U_SQUOTE] = ACTIONS(3952), - [anon_sym_u8_SQUOTE] = ACTIONS(3952), - [anon_sym_SQUOTE] = ACTIONS(3952), - [anon_sym_L_DQUOTE] = ACTIONS(3952), - [anon_sym_u_DQUOTE] = ACTIONS(3952), - [anon_sym_U_DQUOTE] = ACTIONS(3952), - [anon_sym_u8_DQUOTE] = ACTIONS(3952), - [anon_sym_DQUOTE] = ACTIONS(3952), - [sym_true] = ACTIONS(3950), - [sym_false] = ACTIONS(3950), - [anon_sym_NULL] = ACTIONS(3950), - [anon_sym_nullptr] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_export] = ACTIONS(3950), - [anon_sym_module] = ACTIONS(3950), - [anon_sym_import] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_try] = ACTIONS(3950), - [anon_sym_delete] = ACTIONS(3950), - [anon_sym_throw] = ACTIONS(3950), - [anon_sym_namespace] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_concept] = ACTIONS(3950), - [anon_sym_co_return] = ACTIONS(3950), - [anon_sym_co_yield] = ACTIONS(3950), - [anon_sym_R_DQUOTE] = ACTIONS(3952), - [anon_sym_LR_DQUOTE] = ACTIONS(3952), - [anon_sym_uR_DQUOTE] = ACTIONS(3952), - [anon_sym_UR_DQUOTE] = ACTIONS(3952), - [anon_sym_u8R_DQUOTE] = ACTIONS(3952), - [anon_sym_co_await] = ACTIONS(3950), - [anon_sym_new] = ACTIONS(3950), - [anon_sym_requires] = ACTIONS(3950), - [anon_sym_CARET_CARET] = ACTIONS(3952), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), - [sym_this] = ACTIONS(3950), + [sym_identifier] = ACTIONS(4293), + [aux_sym_preproc_include_token1] = ACTIONS(4293), + [aux_sym_preproc_def_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token2] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), + [sym_preproc_directive] = ACTIONS(4293), + [anon_sym_LPAREN2] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym___extension__] = ACTIONS(4293), + [anon_sym_typedef] = ACTIONS(4293), + [anon_sym_virtual] = ACTIONS(4293), + [anon_sym_extern] = ACTIONS(4293), + [anon_sym___attribute__] = ACTIONS(4293), + [anon_sym___attribute] = ACTIONS(4293), + [anon_sym_using] = ACTIONS(4293), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4295), + [anon_sym___declspec] = ACTIONS(4293), + [anon_sym___based] = ACTIONS(4293), + [anon_sym___cdecl] = ACTIONS(4293), + [anon_sym___clrcall] = ACTIONS(4293), + [anon_sym___stdcall] = ACTIONS(4293), + [anon_sym___fastcall] = ACTIONS(4293), + [anon_sym___thiscall] = ACTIONS(4293), + [anon_sym___vectorcall] = ACTIONS(4293), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_signed] = ACTIONS(4293), + [anon_sym_unsigned] = ACTIONS(4293), + [anon_sym_long] = ACTIONS(4293), + [anon_sym_short] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_static] = ACTIONS(4293), + [anon_sym_register] = ACTIONS(4293), + [anon_sym_inline] = ACTIONS(4293), + [anon_sym___inline] = ACTIONS(4293), + [anon_sym___inline__] = ACTIONS(4293), + [anon_sym___forceinline] = ACTIONS(4293), + [anon_sym_thread_local] = ACTIONS(4293), + [anon_sym___thread] = ACTIONS(4293), + [anon_sym_const] = ACTIONS(4293), + [anon_sym_constexpr] = ACTIONS(4293), + [anon_sym_volatile] = ACTIONS(4293), + [anon_sym_restrict] = ACTIONS(4293), + [anon_sym___restrict__] = ACTIONS(4293), + [anon_sym__Atomic] = ACTIONS(4293), + [anon_sym__Noreturn] = ACTIONS(4293), + [anon_sym_noreturn] = ACTIONS(4293), + [anon_sym__Nonnull] = ACTIONS(4293), + [anon_sym_mutable] = ACTIONS(4293), + [anon_sym_constinit] = ACTIONS(4293), + [anon_sym_consteval] = ACTIONS(4293), + [anon_sym_alignas] = ACTIONS(4293), + [anon_sym__Alignas] = ACTIONS(4293), + [sym_primitive_type] = ACTIONS(4293), + [anon_sym_enum] = ACTIONS(4293), + [anon_sym_class] = ACTIONS(4293), + [anon_sym_struct] = ACTIONS(4293), + [anon_sym_union] = ACTIONS(4293), + [anon_sym_if] = ACTIONS(4293), + [anon_sym_switch] = ACTIONS(4293), + [anon_sym_case] = ACTIONS(4293), + [anon_sym_default] = ACTIONS(4293), + [anon_sym_while] = ACTIONS(4293), + [anon_sym_do] = ACTIONS(4293), + [anon_sym_for] = ACTIONS(4293), + [anon_sym_return] = ACTIONS(4293), + [anon_sym_break] = ACTIONS(4293), + [anon_sym_continue] = ACTIONS(4293), + [anon_sym_goto] = ACTIONS(4293), + [anon_sym___try] = ACTIONS(4293), + [anon_sym___leave] = ACTIONS(4293), + [anon_sym_not] = ACTIONS(4293), + [anon_sym_compl] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_sizeof] = ACTIONS(4293), + [anon_sym___alignof__] = ACTIONS(4293), + [anon_sym___alignof] = ACTIONS(4293), + [anon_sym__alignof] = ACTIONS(4293), + [anon_sym_alignof] = ACTIONS(4293), + [anon_sym__Alignof] = ACTIONS(4293), + [anon_sym_offsetof] = ACTIONS(4293), + [anon_sym__Generic] = ACTIONS(4293), + [anon_sym_typename] = ACTIONS(4293), + [anon_sym_asm] = ACTIONS(4293), + [anon_sym___asm__] = ACTIONS(4293), + [anon_sym___asm] = ACTIONS(4293), + [sym_number_literal] = ACTIONS(4295), + [anon_sym_L_SQUOTE] = ACTIONS(4295), + [anon_sym_u_SQUOTE] = ACTIONS(4295), + [anon_sym_U_SQUOTE] = ACTIONS(4295), + [anon_sym_u8_SQUOTE] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4295), + [anon_sym_L_DQUOTE] = ACTIONS(4295), + [anon_sym_u_DQUOTE] = ACTIONS(4295), + [anon_sym_U_DQUOTE] = ACTIONS(4295), + [anon_sym_u8_DQUOTE] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4295), + [sym_true] = ACTIONS(4293), + [sym_false] = ACTIONS(4293), + [anon_sym_NULL] = ACTIONS(4293), + [anon_sym_nullptr] = ACTIONS(4293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4293), + [anon_sym_decltype] = ACTIONS(4293), + [anon_sym_explicit] = ACTIONS(4293), + [anon_sym_export] = ACTIONS(4293), + [anon_sym_module] = ACTIONS(4293), + [anon_sym_import] = ACTIONS(4293), + [anon_sym_template] = ACTIONS(4293), + [anon_sym_operator] = ACTIONS(4293), + [anon_sym_try] = ACTIONS(4293), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_throw] = ACTIONS(4293), + [anon_sym_namespace] = ACTIONS(4293), + [anon_sym_static_assert] = ACTIONS(4293), + [anon_sym_concept] = ACTIONS(4293), + [anon_sym_co_return] = ACTIONS(4293), + [anon_sym_co_yield] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(4295), + [anon_sym_LR_DQUOTE] = ACTIONS(4295), + [anon_sym_uR_DQUOTE] = ACTIONS(4295), + [anon_sym_UR_DQUOTE] = ACTIONS(4295), + [anon_sym_u8R_DQUOTE] = ACTIONS(4295), + [anon_sym_co_await] = ACTIONS(4293), + [anon_sym_new] = ACTIONS(4293), + [anon_sym_requires] = ACTIONS(4293), + [anon_sym_CARET_CARET] = ACTIONS(4295), + [anon_sym_LBRACK_COLON] = ACTIONS(4295), + [sym_this] = ACTIONS(4293), }, [STATE(710)] = { - [sym_identifier] = ACTIONS(3962), - [aux_sym_preproc_include_token1] = ACTIONS(3962), - [aux_sym_preproc_def_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token2] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), - [sym_preproc_directive] = ACTIONS(3962), - [anon_sym_LPAREN2] = ACTIONS(3964), - [anon_sym_BANG] = ACTIONS(3964), - [anon_sym_TILDE] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym___extension__] = ACTIONS(3962), - [anon_sym_typedef] = ACTIONS(3962), - [anon_sym_virtual] = ACTIONS(3962), - [anon_sym_extern] = ACTIONS(3962), - [anon_sym___attribute__] = ACTIONS(3962), - [anon_sym___attribute] = ACTIONS(3962), - [anon_sym_using] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), - [anon_sym___declspec] = ACTIONS(3962), - [anon_sym___based] = ACTIONS(3962), - [anon_sym___cdecl] = ACTIONS(3962), - [anon_sym___clrcall] = ACTIONS(3962), - [anon_sym___stdcall] = ACTIONS(3962), - [anon_sym___fastcall] = ACTIONS(3962), - [anon_sym___thiscall] = ACTIONS(3962), - [anon_sym___vectorcall] = ACTIONS(3962), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_signed] = ACTIONS(3962), - [anon_sym_unsigned] = ACTIONS(3962), - [anon_sym_long] = ACTIONS(3962), - [anon_sym_short] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3962), - [anon_sym_register] = ACTIONS(3962), - [anon_sym_inline] = ACTIONS(3962), - [anon_sym___inline] = ACTIONS(3962), - [anon_sym___inline__] = ACTIONS(3962), - [anon_sym___forceinline] = ACTIONS(3962), - [anon_sym_thread_local] = ACTIONS(3962), - [anon_sym___thread] = ACTIONS(3962), - [anon_sym_const] = ACTIONS(3962), - [anon_sym_constexpr] = ACTIONS(3962), - [anon_sym_volatile] = ACTIONS(3962), - [anon_sym_restrict] = ACTIONS(3962), - [anon_sym___restrict__] = ACTIONS(3962), - [anon_sym__Atomic] = ACTIONS(3962), - [anon_sym__Noreturn] = ACTIONS(3962), - [anon_sym_noreturn] = ACTIONS(3962), - [anon_sym__Nonnull] = ACTIONS(3962), - [anon_sym_mutable] = ACTIONS(3962), - [anon_sym_constinit] = ACTIONS(3962), - [anon_sym_consteval] = ACTIONS(3962), - [anon_sym_alignas] = ACTIONS(3962), - [anon_sym__Alignas] = ACTIONS(3962), - [sym_primitive_type] = ACTIONS(3962), - [anon_sym_enum] = ACTIONS(3962), - [anon_sym_class] = ACTIONS(3962), - [anon_sym_struct] = ACTIONS(3962), - [anon_sym_union] = ACTIONS(3962), - [anon_sym_if] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3962), - [anon_sym_case] = ACTIONS(3962), - [anon_sym_default] = ACTIONS(3962), - [anon_sym_while] = ACTIONS(3962), - [anon_sym_do] = ACTIONS(3962), - [anon_sym_for] = ACTIONS(3962), - [anon_sym_return] = ACTIONS(3962), - [anon_sym_break] = ACTIONS(3962), - [anon_sym_continue] = ACTIONS(3962), - [anon_sym_goto] = ACTIONS(3962), - [anon_sym___try] = ACTIONS(3962), - [anon_sym___leave] = ACTIONS(3962), - [anon_sym_not] = ACTIONS(3962), - [anon_sym_compl] = ACTIONS(3962), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_sizeof] = ACTIONS(3962), - [anon_sym___alignof__] = ACTIONS(3962), - [anon_sym___alignof] = ACTIONS(3962), - [anon_sym__alignof] = ACTIONS(3962), - [anon_sym_alignof] = ACTIONS(3962), - [anon_sym__Alignof] = ACTIONS(3962), - [anon_sym_offsetof] = ACTIONS(3962), - [anon_sym__Generic] = ACTIONS(3962), - [anon_sym_typename] = ACTIONS(3962), - [anon_sym_asm] = ACTIONS(3962), - [anon_sym___asm__] = ACTIONS(3962), - [anon_sym___asm] = ACTIONS(3962), - [sym_number_literal] = ACTIONS(3964), - [anon_sym_L_SQUOTE] = ACTIONS(3964), - [anon_sym_u_SQUOTE] = ACTIONS(3964), - [anon_sym_U_SQUOTE] = ACTIONS(3964), - [anon_sym_u8_SQUOTE] = ACTIONS(3964), - [anon_sym_SQUOTE] = ACTIONS(3964), - [anon_sym_L_DQUOTE] = ACTIONS(3964), - [anon_sym_u_DQUOTE] = ACTIONS(3964), - [anon_sym_U_DQUOTE] = ACTIONS(3964), - [anon_sym_u8_DQUOTE] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym_true] = ACTIONS(3962), - [sym_false] = ACTIONS(3962), - [anon_sym_NULL] = ACTIONS(3962), - [anon_sym_nullptr] = ACTIONS(3962), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3962), - [anon_sym_decltype] = ACTIONS(3962), - [anon_sym_explicit] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3962), - [anon_sym_module] = ACTIONS(3962), - [anon_sym_import] = ACTIONS(3962), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(3962), - [anon_sym_try] = ACTIONS(3962), - [anon_sym_delete] = ACTIONS(3962), - [anon_sym_throw] = ACTIONS(3962), - [anon_sym_namespace] = ACTIONS(3962), - [anon_sym_static_assert] = ACTIONS(3962), - [anon_sym_concept] = ACTIONS(3962), - [anon_sym_co_return] = ACTIONS(3962), - [anon_sym_co_yield] = ACTIONS(3962), - [anon_sym_R_DQUOTE] = ACTIONS(3964), - [anon_sym_LR_DQUOTE] = ACTIONS(3964), - [anon_sym_uR_DQUOTE] = ACTIONS(3964), - [anon_sym_UR_DQUOTE] = ACTIONS(3964), - [anon_sym_u8R_DQUOTE] = ACTIONS(3964), - [anon_sym_co_await] = ACTIONS(3962), - [anon_sym_new] = ACTIONS(3962), - [anon_sym_requires] = ACTIONS(3962), - [anon_sym_CARET_CARET] = ACTIONS(3964), - [anon_sym_LBRACK_COLON] = ACTIONS(3964), - [sym_this] = ACTIONS(3962), + [sym_identifier] = ACTIONS(4297), + [aux_sym_preproc_include_token1] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token2] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4299), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_TILDE] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_AMP_AMP] = ACTIONS(4299), + [anon_sym_AMP] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4299), + [anon_sym___extension__] = ACTIONS(4297), + [anon_sym_typedef] = ACTIONS(4297), + [anon_sym_virtual] = ACTIONS(4297), + [anon_sym_extern] = ACTIONS(4297), + [anon_sym___attribute__] = ACTIONS(4297), + [anon_sym___attribute] = ACTIONS(4297), + [anon_sym_using] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), + [anon_sym___declspec] = ACTIONS(4297), + [anon_sym___based] = ACTIONS(4297), + [anon_sym___cdecl] = ACTIONS(4297), + [anon_sym___clrcall] = ACTIONS(4297), + [anon_sym___stdcall] = ACTIONS(4297), + [anon_sym___fastcall] = ACTIONS(4297), + [anon_sym___thiscall] = ACTIONS(4297), + [anon_sym___vectorcall] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4299), + [anon_sym_signed] = ACTIONS(4297), + [anon_sym_unsigned] = ACTIONS(4297), + [anon_sym_long] = ACTIONS(4297), + [anon_sym_short] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_static] = ACTIONS(4297), + [anon_sym_register] = ACTIONS(4297), + [anon_sym_inline] = ACTIONS(4297), + [anon_sym___inline] = ACTIONS(4297), + [anon_sym___inline__] = ACTIONS(4297), + [anon_sym___forceinline] = ACTIONS(4297), + [anon_sym_thread_local] = ACTIONS(4297), + [anon_sym___thread] = ACTIONS(4297), + [anon_sym_const] = ACTIONS(4297), + [anon_sym_constexpr] = ACTIONS(4297), + [anon_sym_volatile] = ACTIONS(4297), + [anon_sym_restrict] = ACTIONS(4297), + [anon_sym___restrict__] = ACTIONS(4297), + [anon_sym__Atomic] = ACTIONS(4297), + [anon_sym__Noreturn] = ACTIONS(4297), + [anon_sym_noreturn] = ACTIONS(4297), + [anon_sym__Nonnull] = ACTIONS(4297), + [anon_sym_mutable] = ACTIONS(4297), + [anon_sym_constinit] = ACTIONS(4297), + [anon_sym_consteval] = ACTIONS(4297), + [anon_sym_alignas] = ACTIONS(4297), + [anon_sym__Alignas] = ACTIONS(4297), + [sym_primitive_type] = ACTIONS(4297), + [anon_sym_enum] = ACTIONS(4297), + [anon_sym_class] = ACTIONS(4297), + [anon_sym_struct] = ACTIONS(4297), + [anon_sym_union] = ACTIONS(4297), + [anon_sym_if] = ACTIONS(4297), + [anon_sym_switch] = ACTIONS(4297), + [anon_sym_case] = ACTIONS(4297), + [anon_sym_default] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_do] = ACTIONS(4297), + [anon_sym_for] = ACTIONS(4297), + [anon_sym_return] = ACTIONS(4297), + [anon_sym_break] = ACTIONS(4297), + [anon_sym_continue] = ACTIONS(4297), + [anon_sym_goto] = ACTIONS(4297), + [anon_sym___try] = ACTIONS(4297), + [anon_sym___leave] = ACTIONS(4297), + [anon_sym_not] = ACTIONS(4297), + [anon_sym_compl] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_PLUS_PLUS] = ACTIONS(4299), + [anon_sym_sizeof] = ACTIONS(4297), + [anon_sym___alignof__] = ACTIONS(4297), + [anon_sym___alignof] = ACTIONS(4297), + [anon_sym__alignof] = ACTIONS(4297), + [anon_sym_alignof] = ACTIONS(4297), + [anon_sym__Alignof] = ACTIONS(4297), + [anon_sym_offsetof] = ACTIONS(4297), + [anon_sym__Generic] = ACTIONS(4297), + [anon_sym_typename] = ACTIONS(4297), + [anon_sym_asm] = ACTIONS(4297), + [anon_sym___asm__] = ACTIONS(4297), + [anon_sym___asm] = ACTIONS(4297), + [sym_number_literal] = ACTIONS(4299), + [anon_sym_L_SQUOTE] = ACTIONS(4299), + [anon_sym_u_SQUOTE] = ACTIONS(4299), + [anon_sym_U_SQUOTE] = ACTIONS(4299), + [anon_sym_u8_SQUOTE] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4299), + [anon_sym_L_DQUOTE] = ACTIONS(4299), + [anon_sym_u_DQUOTE] = ACTIONS(4299), + [anon_sym_U_DQUOTE] = ACTIONS(4299), + [anon_sym_u8_DQUOTE] = ACTIONS(4299), + [anon_sym_DQUOTE] = ACTIONS(4299), + [sym_true] = ACTIONS(4297), + [sym_false] = ACTIONS(4297), + [anon_sym_NULL] = ACTIONS(4297), + [anon_sym_nullptr] = ACTIONS(4297), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4297), + [anon_sym_decltype] = ACTIONS(4297), + [anon_sym_explicit] = ACTIONS(4297), + [anon_sym_export] = ACTIONS(4297), + [anon_sym_module] = ACTIONS(4297), + [anon_sym_import] = ACTIONS(4297), + [anon_sym_template] = ACTIONS(4297), + [anon_sym_operator] = ACTIONS(4297), + [anon_sym_try] = ACTIONS(4297), + [anon_sym_delete] = ACTIONS(4297), + [anon_sym_throw] = ACTIONS(4297), + [anon_sym_namespace] = ACTIONS(4297), + [anon_sym_static_assert] = ACTIONS(4297), + [anon_sym_concept] = ACTIONS(4297), + [anon_sym_co_return] = ACTIONS(4297), + [anon_sym_co_yield] = ACTIONS(4297), + [anon_sym_R_DQUOTE] = ACTIONS(4299), + [anon_sym_LR_DQUOTE] = ACTIONS(4299), + [anon_sym_uR_DQUOTE] = ACTIONS(4299), + [anon_sym_UR_DQUOTE] = ACTIONS(4299), + [anon_sym_u8R_DQUOTE] = ACTIONS(4299), + [anon_sym_co_await] = ACTIONS(4297), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(4297), + [anon_sym_CARET_CARET] = ACTIONS(4299), + [anon_sym_LBRACK_COLON] = ACTIONS(4299), + [sym_this] = ACTIONS(4297), }, [STATE(711)] = { - [sym_identifier] = ACTIONS(3988), - [aux_sym_preproc_include_token1] = ACTIONS(3988), - [aux_sym_preproc_def_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token2] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), - [sym_preproc_directive] = ACTIONS(3988), - [anon_sym_LPAREN2] = ACTIONS(3990), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_TILDE] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3988), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3988), - [anon_sym_SEMI] = ACTIONS(3990), - [anon_sym___extension__] = ACTIONS(3988), - [anon_sym_typedef] = ACTIONS(3988), - [anon_sym_virtual] = ACTIONS(3988), - [anon_sym_extern] = ACTIONS(3988), - [anon_sym___attribute__] = ACTIONS(3988), - [anon_sym___attribute] = ACTIONS(3988), - [anon_sym_using] = ACTIONS(3988), - [anon_sym_COLON_COLON] = ACTIONS(3990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), - [anon_sym___declspec] = ACTIONS(3988), - [anon_sym___based] = ACTIONS(3988), - [anon_sym___cdecl] = ACTIONS(3988), - [anon_sym___clrcall] = ACTIONS(3988), - [anon_sym___stdcall] = ACTIONS(3988), - [anon_sym___fastcall] = ACTIONS(3988), - [anon_sym___thiscall] = ACTIONS(3988), - [anon_sym___vectorcall] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_signed] = ACTIONS(3988), - [anon_sym_unsigned] = ACTIONS(3988), - [anon_sym_long] = ACTIONS(3988), - [anon_sym_short] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_static] = ACTIONS(3988), - [anon_sym_register] = ACTIONS(3988), - [anon_sym_inline] = ACTIONS(3988), - [anon_sym___inline] = ACTIONS(3988), - [anon_sym___inline__] = ACTIONS(3988), - [anon_sym___forceinline] = ACTIONS(3988), - [anon_sym_thread_local] = ACTIONS(3988), - [anon_sym___thread] = ACTIONS(3988), - [anon_sym_const] = ACTIONS(3988), - [anon_sym_constexpr] = ACTIONS(3988), - [anon_sym_volatile] = ACTIONS(3988), - [anon_sym_restrict] = ACTIONS(3988), - [anon_sym___restrict__] = ACTIONS(3988), - [anon_sym__Atomic] = ACTIONS(3988), - [anon_sym__Noreturn] = ACTIONS(3988), - [anon_sym_noreturn] = ACTIONS(3988), - [anon_sym__Nonnull] = ACTIONS(3988), - [anon_sym_mutable] = ACTIONS(3988), - [anon_sym_constinit] = ACTIONS(3988), - [anon_sym_consteval] = ACTIONS(3988), - [anon_sym_alignas] = ACTIONS(3988), - [anon_sym__Alignas] = ACTIONS(3988), - [sym_primitive_type] = ACTIONS(3988), - [anon_sym_enum] = ACTIONS(3988), - [anon_sym_class] = ACTIONS(3988), - [anon_sym_struct] = ACTIONS(3988), - [anon_sym_union] = ACTIONS(3988), - [anon_sym_if] = ACTIONS(3988), - [anon_sym_switch] = ACTIONS(3988), - [anon_sym_case] = ACTIONS(3988), - [anon_sym_default] = ACTIONS(3988), - [anon_sym_while] = ACTIONS(3988), - [anon_sym_do] = ACTIONS(3988), - [anon_sym_for] = ACTIONS(3988), - [anon_sym_return] = ACTIONS(3988), - [anon_sym_break] = ACTIONS(3988), - [anon_sym_continue] = ACTIONS(3988), - [anon_sym_goto] = ACTIONS(3988), - [anon_sym___try] = ACTIONS(3988), - [anon_sym___leave] = ACTIONS(3988), - [anon_sym_not] = ACTIONS(3988), - [anon_sym_compl] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3990), - [anon_sym_sizeof] = ACTIONS(3988), - [anon_sym___alignof__] = ACTIONS(3988), - [anon_sym___alignof] = ACTIONS(3988), - [anon_sym__alignof] = ACTIONS(3988), - [anon_sym_alignof] = ACTIONS(3988), - [anon_sym__Alignof] = ACTIONS(3988), - [anon_sym_offsetof] = ACTIONS(3988), - [anon_sym__Generic] = ACTIONS(3988), - [anon_sym_typename] = ACTIONS(3988), - [anon_sym_asm] = ACTIONS(3988), - [anon_sym___asm__] = ACTIONS(3988), - [anon_sym___asm] = ACTIONS(3988), - [sym_number_literal] = ACTIONS(3990), - [anon_sym_L_SQUOTE] = ACTIONS(3990), - [anon_sym_u_SQUOTE] = ACTIONS(3990), - [anon_sym_U_SQUOTE] = ACTIONS(3990), - [anon_sym_u8_SQUOTE] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3990), - [anon_sym_L_DQUOTE] = ACTIONS(3990), - [anon_sym_u_DQUOTE] = ACTIONS(3990), - [anon_sym_U_DQUOTE] = ACTIONS(3990), - [anon_sym_u8_DQUOTE] = ACTIONS(3990), - [anon_sym_DQUOTE] = ACTIONS(3990), - [sym_true] = ACTIONS(3988), - [sym_false] = ACTIONS(3988), - [anon_sym_NULL] = ACTIONS(3988), - [anon_sym_nullptr] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3988), - [anon_sym_decltype] = ACTIONS(3988), - [anon_sym_explicit] = ACTIONS(3988), - [anon_sym_export] = ACTIONS(3988), - [anon_sym_module] = ACTIONS(3988), - [anon_sym_import] = ACTIONS(3988), - [anon_sym_template] = ACTIONS(3988), - [anon_sym_operator] = ACTIONS(3988), - [anon_sym_try] = ACTIONS(3988), - [anon_sym_delete] = ACTIONS(3988), - [anon_sym_throw] = ACTIONS(3988), - [anon_sym_namespace] = ACTIONS(3988), - [anon_sym_static_assert] = ACTIONS(3988), - [anon_sym_concept] = ACTIONS(3988), - [anon_sym_co_return] = ACTIONS(3988), - [anon_sym_co_yield] = ACTIONS(3988), - [anon_sym_R_DQUOTE] = ACTIONS(3990), - [anon_sym_LR_DQUOTE] = ACTIONS(3990), - [anon_sym_uR_DQUOTE] = ACTIONS(3990), - [anon_sym_UR_DQUOTE] = ACTIONS(3990), - [anon_sym_u8R_DQUOTE] = ACTIONS(3990), - [anon_sym_co_await] = ACTIONS(3988), - [anon_sym_new] = ACTIONS(3988), - [anon_sym_requires] = ACTIONS(3988), - [anon_sym_CARET_CARET] = ACTIONS(3990), - [anon_sym_LBRACK_COLON] = ACTIONS(3990), - [sym_this] = ACTIONS(3988), + [sym_identifier] = ACTIONS(4301), + [aux_sym_preproc_include_token1] = ACTIONS(4301), + [aux_sym_preproc_def_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token2] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4301), + [sym_preproc_directive] = ACTIONS(4301), + [anon_sym_LPAREN2] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4301), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym___extension__] = ACTIONS(4301), + [anon_sym_typedef] = ACTIONS(4301), + [anon_sym_virtual] = ACTIONS(4301), + [anon_sym_extern] = ACTIONS(4301), + [anon_sym___attribute__] = ACTIONS(4301), + [anon_sym___attribute] = ACTIONS(4301), + [anon_sym_using] = ACTIONS(4301), + [anon_sym_COLON_COLON] = ACTIONS(4303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4303), + [anon_sym___declspec] = ACTIONS(4301), + [anon_sym___based] = ACTIONS(4301), + [anon_sym___cdecl] = ACTIONS(4301), + [anon_sym___clrcall] = ACTIONS(4301), + [anon_sym___stdcall] = ACTIONS(4301), + [anon_sym___fastcall] = ACTIONS(4301), + [anon_sym___thiscall] = ACTIONS(4301), + [anon_sym___vectorcall] = ACTIONS(4301), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_signed] = ACTIONS(4301), + [anon_sym_unsigned] = ACTIONS(4301), + [anon_sym_long] = ACTIONS(4301), + [anon_sym_short] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_static] = ACTIONS(4301), + [anon_sym_register] = ACTIONS(4301), + [anon_sym_inline] = ACTIONS(4301), + [anon_sym___inline] = ACTIONS(4301), + [anon_sym___inline__] = ACTIONS(4301), + [anon_sym___forceinline] = ACTIONS(4301), + [anon_sym_thread_local] = ACTIONS(4301), + [anon_sym___thread] = ACTIONS(4301), + [anon_sym_const] = ACTIONS(4301), + [anon_sym_constexpr] = ACTIONS(4301), + [anon_sym_volatile] = ACTIONS(4301), + [anon_sym_restrict] = ACTIONS(4301), + [anon_sym___restrict__] = ACTIONS(4301), + [anon_sym__Atomic] = ACTIONS(4301), + [anon_sym__Noreturn] = ACTIONS(4301), + [anon_sym_noreturn] = ACTIONS(4301), + [anon_sym__Nonnull] = ACTIONS(4301), + [anon_sym_mutable] = ACTIONS(4301), + [anon_sym_constinit] = ACTIONS(4301), + [anon_sym_consteval] = ACTIONS(4301), + [anon_sym_alignas] = ACTIONS(4301), + [anon_sym__Alignas] = ACTIONS(4301), + [sym_primitive_type] = ACTIONS(4301), + [anon_sym_enum] = ACTIONS(4301), + [anon_sym_class] = ACTIONS(4301), + [anon_sym_struct] = ACTIONS(4301), + [anon_sym_union] = ACTIONS(4301), + [anon_sym_if] = ACTIONS(4301), + [anon_sym_switch] = ACTIONS(4301), + [anon_sym_case] = ACTIONS(4301), + [anon_sym_default] = ACTIONS(4301), + [anon_sym_while] = ACTIONS(4301), + [anon_sym_do] = ACTIONS(4301), + [anon_sym_for] = ACTIONS(4301), + [anon_sym_return] = ACTIONS(4301), + [anon_sym_break] = ACTIONS(4301), + [anon_sym_continue] = ACTIONS(4301), + [anon_sym_goto] = ACTIONS(4301), + [anon_sym___try] = ACTIONS(4301), + [anon_sym___leave] = ACTIONS(4301), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4303), + [anon_sym_PLUS_PLUS] = ACTIONS(4303), + [anon_sym_sizeof] = ACTIONS(4301), + [anon_sym___alignof__] = ACTIONS(4301), + [anon_sym___alignof] = ACTIONS(4301), + [anon_sym__alignof] = ACTIONS(4301), + [anon_sym_alignof] = ACTIONS(4301), + [anon_sym__Alignof] = ACTIONS(4301), + [anon_sym_offsetof] = ACTIONS(4301), + [anon_sym__Generic] = ACTIONS(4301), + [anon_sym_typename] = ACTIONS(4301), + [anon_sym_asm] = ACTIONS(4301), + [anon_sym___asm__] = ACTIONS(4301), + [anon_sym___asm] = ACTIONS(4301), + [sym_number_literal] = ACTIONS(4303), + [anon_sym_L_SQUOTE] = ACTIONS(4303), + [anon_sym_u_SQUOTE] = ACTIONS(4303), + [anon_sym_U_SQUOTE] = ACTIONS(4303), + [anon_sym_u8_SQUOTE] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_L_DQUOTE] = ACTIONS(4303), + [anon_sym_u_DQUOTE] = ACTIONS(4303), + [anon_sym_U_DQUOTE] = ACTIONS(4303), + [anon_sym_u8_DQUOTE] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym_true] = ACTIONS(4301), + [sym_false] = ACTIONS(4301), + [anon_sym_NULL] = ACTIONS(4301), + [anon_sym_nullptr] = ACTIONS(4301), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4301), + [anon_sym_decltype] = ACTIONS(4301), + [anon_sym_explicit] = ACTIONS(4301), + [anon_sym_export] = ACTIONS(4301), + [anon_sym_module] = ACTIONS(4301), + [anon_sym_import] = ACTIONS(4301), + [anon_sym_template] = ACTIONS(4301), + [anon_sym_operator] = ACTIONS(4301), + [anon_sym_try] = ACTIONS(4301), + [anon_sym_delete] = ACTIONS(4301), + [anon_sym_throw] = ACTIONS(4301), + [anon_sym_namespace] = ACTIONS(4301), + [anon_sym_static_assert] = ACTIONS(4301), + [anon_sym_concept] = ACTIONS(4301), + [anon_sym_co_return] = ACTIONS(4301), + [anon_sym_co_yield] = ACTIONS(4301), + [anon_sym_R_DQUOTE] = ACTIONS(4303), + [anon_sym_LR_DQUOTE] = ACTIONS(4303), + [anon_sym_uR_DQUOTE] = ACTIONS(4303), + [anon_sym_UR_DQUOTE] = ACTIONS(4303), + [anon_sym_u8R_DQUOTE] = ACTIONS(4303), + [anon_sym_co_await] = ACTIONS(4301), + [anon_sym_new] = ACTIONS(4301), + [anon_sym_requires] = ACTIONS(4301), + [anon_sym_CARET_CARET] = ACTIONS(4303), + [anon_sym_LBRACK_COLON] = ACTIONS(4303), + [sym_this] = ACTIONS(4301), }, [STATE(712)] = { - [sym_identifier] = ACTIONS(3992), - [aux_sym_preproc_include_token1] = ACTIONS(3992), - [aux_sym_preproc_def_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token2] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), - [sym_preproc_directive] = ACTIONS(3992), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_BANG] = ACTIONS(3994), - [anon_sym_TILDE] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(3992), - [anon_sym_STAR] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3992), - [anon_sym_SEMI] = ACTIONS(3994), - [anon_sym___extension__] = ACTIONS(3992), - [anon_sym_typedef] = ACTIONS(3992), - [anon_sym_virtual] = ACTIONS(3992), - [anon_sym_extern] = ACTIONS(3992), - [anon_sym___attribute__] = ACTIONS(3992), - [anon_sym___attribute] = ACTIONS(3992), - [anon_sym_using] = ACTIONS(3992), - [anon_sym_COLON_COLON] = ACTIONS(3994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), - [anon_sym___declspec] = ACTIONS(3992), - [anon_sym___based] = ACTIONS(3992), - [anon_sym___cdecl] = ACTIONS(3992), - [anon_sym___clrcall] = ACTIONS(3992), - [anon_sym___stdcall] = ACTIONS(3992), - [anon_sym___fastcall] = ACTIONS(3992), - [anon_sym___thiscall] = ACTIONS(3992), - [anon_sym___vectorcall] = ACTIONS(3992), - [anon_sym_LBRACE] = ACTIONS(3994), - [anon_sym_signed] = ACTIONS(3992), - [anon_sym_unsigned] = ACTIONS(3992), - [anon_sym_long] = ACTIONS(3992), - [anon_sym_short] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_register] = ACTIONS(3992), - [anon_sym_inline] = ACTIONS(3992), - [anon_sym___inline] = ACTIONS(3992), - [anon_sym___inline__] = ACTIONS(3992), - [anon_sym___forceinline] = ACTIONS(3992), - [anon_sym_thread_local] = ACTIONS(3992), - [anon_sym___thread] = ACTIONS(3992), - [anon_sym_const] = ACTIONS(3992), - [anon_sym_constexpr] = ACTIONS(3992), - [anon_sym_volatile] = ACTIONS(3992), - [anon_sym_restrict] = ACTIONS(3992), - [anon_sym___restrict__] = ACTIONS(3992), - [anon_sym__Atomic] = ACTIONS(3992), - [anon_sym__Noreturn] = ACTIONS(3992), - [anon_sym_noreturn] = ACTIONS(3992), - [anon_sym__Nonnull] = ACTIONS(3992), - [anon_sym_mutable] = ACTIONS(3992), - [anon_sym_constinit] = ACTIONS(3992), - [anon_sym_consteval] = ACTIONS(3992), - [anon_sym_alignas] = ACTIONS(3992), - [anon_sym__Alignas] = ACTIONS(3992), - [sym_primitive_type] = ACTIONS(3992), - [anon_sym_enum] = ACTIONS(3992), - [anon_sym_class] = ACTIONS(3992), - [anon_sym_struct] = ACTIONS(3992), - [anon_sym_union] = ACTIONS(3992), - [anon_sym_if] = ACTIONS(3992), - [anon_sym_switch] = ACTIONS(3992), - [anon_sym_case] = ACTIONS(3992), - [anon_sym_default] = ACTIONS(3992), - [anon_sym_while] = ACTIONS(3992), - [anon_sym_do] = ACTIONS(3992), - [anon_sym_for] = ACTIONS(3992), - [anon_sym_return] = ACTIONS(3992), - [anon_sym_break] = ACTIONS(3992), - [anon_sym_continue] = ACTIONS(3992), - [anon_sym_goto] = ACTIONS(3992), - [anon_sym___try] = ACTIONS(3992), - [anon_sym___leave] = ACTIONS(3992), - [anon_sym_not] = ACTIONS(3992), - [anon_sym_compl] = ACTIONS(3992), - [anon_sym_DASH_DASH] = ACTIONS(3994), - [anon_sym_PLUS_PLUS] = ACTIONS(3994), - [anon_sym_sizeof] = ACTIONS(3992), - [anon_sym___alignof__] = ACTIONS(3992), - [anon_sym___alignof] = ACTIONS(3992), - [anon_sym__alignof] = ACTIONS(3992), - [anon_sym_alignof] = ACTIONS(3992), - [anon_sym__Alignof] = ACTIONS(3992), - [anon_sym_offsetof] = ACTIONS(3992), - [anon_sym__Generic] = ACTIONS(3992), - [anon_sym_typename] = ACTIONS(3992), - [anon_sym_asm] = ACTIONS(3992), - [anon_sym___asm__] = ACTIONS(3992), - [anon_sym___asm] = ACTIONS(3992), - [sym_number_literal] = ACTIONS(3994), - [anon_sym_L_SQUOTE] = ACTIONS(3994), - [anon_sym_u_SQUOTE] = ACTIONS(3994), - [anon_sym_U_SQUOTE] = ACTIONS(3994), - [anon_sym_u8_SQUOTE] = ACTIONS(3994), - [anon_sym_SQUOTE] = ACTIONS(3994), - [anon_sym_L_DQUOTE] = ACTIONS(3994), - [anon_sym_u_DQUOTE] = ACTIONS(3994), - [anon_sym_U_DQUOTE] = ACTIONS(3994), - [anon_sym_u8_DQUOTE] = ACTIONS(3994), - [anon_sym_DQUOTE] = ACTIONS(3994), - [sym_true] = ACTIONS(3992), - [sym_false] = ACTIONS(3992), - [anon_sym_NULL] = ACTIONS(3992), - [anon_sym_nullptr] = ACTIONS(3992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3992), - [anon_sym_decltype] = ACTIONS(3992), - [anon_sym_explicit] = ACTIONS(3992), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_module] = ACTIONS(3992), - [anon_sym_import] = ACTIONS(3992), - [anon_sym_template] = ACTIONS(3992), - [anon_sym_operator] = ACTIONS(3992), - [anon_sym_try] = ACTIONS(3992), - [anon_sym_delete] = ACTIONS(3992), - [anon_sym_throw] = ACTIONS(3992), - [anon_sym_namespace] = ACTIONS(3992), - [anon_sym_static_assert] = ACTIONS(3992), - [anon_sym_concept] = ACTIONS(3992), - [anon_sym_co_return] = ACTIONS(3992), - [anon_sym_co_yield] = ACTIONS(3992), - [anon_sym_R_DQUOTE] = ACTIONS(3994), - [anon_sym_LR_DQUOTE] = ACTIONS(3994), - [anon_sym_uR_DQUOTE] = ACTIONS(3994), - [anon_sym_UR_DQUOTE] = ACTIONS(3994), - [anon_sym_u8R_DQUOTE] = ACTIONS(3994), - [anon_sym_co_await] = ACTIONS(3992), - [anon_sym_new] = ACTIONS(3992), - [anon_sym_requires] = ACTIONS(3992), - [anon_sym_CARET_CARET] = ACTIONS(3994), - [anon_sym_LBRACK_COLON] = ACTIONS(3994), - [sym_this] = ACTIONS(3992), + [sym_identifier] = ACTIONS(4305), + [aux_sym_preproc_include_token1] = ACTIONS(4305), + [aux_sym_preproc_def_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token2] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4305), + [sym_preproc_directive] = ACTIONS(4305), + [anon_sym_LPAREN2] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4305), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_typedef] = ACTIONS(4305), + [anon_sym_virtual] = ACTIONS(4305), + [anon_sym_extern] = ACTIONS(4305), + [anon_sym___attribute__] = ACTIONS(4305), + [anon_sym___attribute] = ACTIONS(4305), + [anon_sym_using] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4307), + [anon_sym___declspec] = ACTIONS(4305), + [anon_sym___based] = ACTIONS(4305), + [anon_sym___cdecl] = ACTIONS(4305), + [anon_sym___clrcall] = ACTIONS(4305), + [anon_sym___stdcall] = ACTIONS(4305), + [anon_sym___fastcall] = ACTIONS(4305), + [anon_sym___thiscall] = ACTIONS(4305), + [anon_sym___vectorcall] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_signed] = ACTIONS(4305), + [anon_sym_unsigned] = ACTIONS(4305), + [anon_sym_long] = ACTIONS(4305), + [anon_sym_short] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_static] = ACTIONS(4305), + [anon_sym_register] = ACTIONS(4305), + [anon_sym_inline] = ACTIONS(4305), + [anon_sym___inline] = ACTIONS(4305), + [anon_sym___inline__] = ACTIONS(4305), + [anon_sym___forceinline] = ACTIONS(4305), + [anon_sym_thread_local] = ACTIONS(4305), + [anon_sym___thread] = ACTIONS(4305), + [anon_sym_const] = ACTIONS(4305), + [anon_sym_constexpr] = ACTIONS(4305), + [anon_sym_volatile] = ACTIONS(4305), + [anon_sym_restrict] = ACTIONS(4305), + [anon_sym___restrict__] = ACTIONS(4305), + [anon_sym__Atomic] = ACTIONS(4305), + [anon_sym__Noreturn] = ACTIONS(4305), + [anon_sym_noreturn] = ACTIONS(4305), + [anon_sym__Nonnull] = ACTIONS(4305), + [anon_sym_mutable] = ACTIONS(4305), + [anon_sym_constinit] = ACTIONS(4305), + [anon_sym_consteval] = ACTIONS(4305), + [anon_sym_alignas] = ACTIONS(4305), + [anon_sym__Alignas] = ACTIONS(4305), + [sym_primitive_type] = ACTIONS(4305), + [anon_sym_enum] = ACTIONS(4305), + [anon_sym_class] = ACTIONS(4305), + [anon_sym_struct] = ACTIONS(4305), + [anon_sym_union] = ACTIONS(4305), + [anon_sym_if] = ACTIONS(4305), + [anon_sym_switch] = ACTIONS(4305), + [anon_sym_case] = ACTIONS(4305), + [anon_sym_default] = ACTIONS(4305), + [anon_sym_while] = ACTIONS(4305), + [anon_sym_do] = ACTIONS(4305), + [anon_sym_for] = ACTIONS(4305), + [anon_sym_return] = ACTIONS(4305), + [anon_sym_break] = ACTIONS(4305), + [anon_sym_continue] = ACTIONS(4305), + [anon_sym_goto] = ACTIONS(4305), + [anon_sym___try] = ACTIONS(4305), + [anon_sym___leave] = ACTIONS(4305), + [anon_sym_not] = ACTIONS(4305), + [anon_sym_compl] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_sizeof] = ACTIONS(4305), + [anon_sym___alignof__] = ACTIONS(4305), + [anon_sym___alignof] = ACTIONS(4305), + [anon_sym__alignof] = ACTIONS(4305), + [anon_sym_alignof] = ACTIONS(4305), + [anon_sym__Alignof] = ACTIONS(4305), + [anon_sym_offsetof] = ACTIONS(4305), + [anon_sym__Generic] = ACTIONS(4305), + [anon_sym_typename] = ACTIONS(4305), + [anon_sym_asm] = ACTIONS(4305), + [anon_sym___asm__] = ACTIONS(4305), + [anon_sym___asm] = ACTIONS(4305), + [sym_number_literal] = ACTIONS(4307), + [anon_sym_L_SQUOTE] = ACTIONS(4307), + [anon_sym_u_SQUOTE] = ACTIONS(4307), + [anon_sym_U_SQUOTE] = ACTIONS(4307), + [anon_sym_u8_SQUOTE] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4307), + [anon_sym_L_DQUOTE] = ACTIONS(4307), + [anon_sym_u_DQUOTE] = ACTIONS(4307), + [anon_sym_U_DQUOTE] = ACTIONS(4307), + [anon_sym_u8_DQUOTE] = ACTIONS(4307), + [anon_sym_DQUOTE] = ACTIONS(4307), + [sym_true] = ACTIONS(4305), + [sym_false] = ACTIONS(4305), + [anon_sym_NULL] = ACTIONS(4305), + [anon_sym_nullptr] = ACTIONS(4305), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4305), + [anon_sym_decltype] = ACTIONS(4305), + [anon_sym_explicit] = ACTIONS(4305), + [anon_sym_export] = ACTIONS(4305), + [anon_sym_module] = ACTIONS(4305), + [anon_sym_import] = ACTIONS(4305), + [anon_sym_template] = ACTIONS(4305), + [anon_sym_operator] = ACTIONS(4305), + [anon_sym_try] = ACTIONS(4305), + [anon_sym_delete] = ACTIONS(4305), + [anon_sym_throw] = ACTIONS(4305), + [anon_sym_namespace] = ACTIONS(4305), + [anon_sym_static_assert] = ACTIONS(4305), + [anon_sym_concept] = ACTIONS(4305), + [anon_sym_co_return] = ACTIONS(4305), + [anon_sym_co_yield] = ACTIONS(4305), + [anon_sym_R_DQUOTE] = ACTIONS(4307), + [anon_sym_LR_DQUOTE] = ACTIONS(4307), + [anon_sym_uR_DQUOTE] = ACTIONS(4307), + [anon_sym_UR_DQUOTE] = ACTIONS(4307), + [anon_sym_u8R_DQUOTE] = ACTIONS(4307), + [anon_sym_co_await] = ACTIONS(4305), + [anon_sym_new] = ACTIONS(4305), + [anon_sym_requires] = ACTIONS(4305), + [anon_sym_CARET_CARET] = ACTIONS(4307), + [anon_sym_LBRACK_COLON] = ACTIONS(4307), + [sym_this] = ACTIONS(4305), }, [STATE(713)] = { - [sym_identifier] = ACTIONS(4000), - [aux_sym_preproc_include_token1] = ACTIONS(4000), - [aux_sym_preproc_def_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token2] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), - [sym_preproc_directive] = ACTIONS(4000), - [anon_sym_LPAREN2] = ACTIONS(4002), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_TILDE] = ACTIONS(4002), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym___extension__] = ACTIONS(4000), - [anon_sym_typedef] = ACTIONS(4000), - [anon_sym_virtual] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym___attribute__] = ACTIONS(4000), - [anon_sym___attribute] = ACTIONS(4000), - [anon_sym_using] = ACTIONS(4000), - [anon_sym_COLON_COLON] = ACTIONS(4002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), - [anon_sym___declspec] = ACTIONS(4000), - [anon_sym___based] = ACTIONS(4000), - [anon_sym___cdecl] = ACTIONS(4000), - [anon_sym___clrcall] = ACTIONS(4000), - [anon_sym___stdcall] = ACTIONS(4000), - [anon_sym___fastcall] = ACTIONS(4000), - [anon_sym___thiscall] = ACTIONS(4000), - [anon_sym___vectorcall] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_signed] = ACTIONS(4000), - [anon_sym_unsigned] = ACTIONS(4000), - [anon_sym_long] = ACTIONS(4000), - [anon_sym_short] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_static] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_inline] = ACTIONS(4000), - [anon_sym___inline] = ACTIONS(4000), - [anon_sym___inline__] = ACTIONS(4000), - [anon_sym___forceinline] = ACTIONS(4000), - [anon_sym_thread_local] = ACTIONS(4000), - [anon_sym___thread] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_constexpr] = ACTIONS(4000), - [anon_sym_volatile] = ACTIONS(4000), - [anon_sym_restrict] = ACTIONS(4000), - [anon_sym___restrict__] = ACTIONS(4000), - [anon_sym__Atomic] = ACTIONS(4000), - [anon_sym__Noreturn] = ACTIONS(4000), - [anon_sym_noreturn] = ACTIONS(4000), - [anon_sym__Nonnull] = ACTIONS(4000), - [anon_sym_mutable] = ACTIONS(4000), - [anon_sym_constinit] = ACTIONS(4000), - [anon_sym_consteval] = ACTIONS(4000), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym__Alignas] = ACTIONS(4000), - [sym_primitive_type] = ACTIONS(4000), - [anon_sym_enum] = ACTIONS(4000), - [anon_sym_class] = ACTIONS(4000), - [anon_sym_struct] = ACTIONS(4000), - [anon_sym_union] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_switch] = ACTIONS(4000), - [anon_sym_case] = ACTIONS(4000), - [anon_sym_default] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_goto] = ACTIONS(4000), - [anon_sym___try] = ACTIONS(4000), - [anon_sym___leave] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_compl] = ACTIONS(4000), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_sizeof] = ACTIONS(4000), - [anon_sym___alignof__] = ACTIONS(4000), - [anon_sym___alignof] = ACTIONS(4000), - [anon_sym__alignof] = ACTIONS(4000), - [anon_sym_alignof] = ACTIONS(4000), - [anon_sym__Alignof] = ACTIONS(4000), - [anon_sym_offsetof] = ACTIONS(4000), - [anon_sym__Generic] = ACTIONS(4000), - [anon_sym_typename] = ACTIONS(4000), - [anon_sym_asm] = ACTIONS(4000), - [anon_sym___asm__] = ACTIONS(4000), - [anon_sym___asm] = ACTIONS(4000), - [sym_number_literal] = ACTIONS(4002), - [anon_sym_L_SQUOTE] = ACTIONS(4002), - [anon_sym_u_SQUOTE] = ACTIONS(4002), - [anon_sym_U_SQUOTE] = ACTIONS(4002), - [anon_sym_u8_SQUOTE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(4002), - [anon_sym_L_DQUOTE] = ACTIONS(4002), - [anon_sym_u_DQUOTE] = ACTIONS(4002), - [anon_sym_U_DQUOTE] = ACTIONS(4002), - [anon_sym_u8_DQUOTE] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [sym_true] = ACTIONS(4000), - [sym_false] = ACTIONS(4000), - [anon_sym_NULL] = ACTIONS(4000), - [anon_sym_nullptr] = ACTIONS(4000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4000), - [anon_sym_decltype] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4000), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_import] = ACTIONS(4000), - [anon_sym_template] = ACTIONS(4000), - [anon_sym_operator] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_delete] = ACTIONS(4000), - [anon_sym_throw] = ACTIONS(4000), - [anon_sym_namespace] = ACTIONS(4000), - [anon_sym_static_assert] = ACTIONS(4000), - [anon_sym_concept] = ACTIONS(4000), - [anon_sym_co_return] = ACTIONS(4000), - [anon_sym_co_yield] = ACTIONS(4000), - [anon_sym_R_DQUOTE] = ACTIONS(4002), - [anon_sym_LR_DQUOTE] = ACTIONS(4002), - [anon_sym_uR_DQUOTE] = ACTIONS(4002), - [anon_sym_UR_DQUOTE] = ACTIONS(4002), - [anon_sym_u8R_DQUOTE] = ACTIONS(4002), - [anon_sym_co_await] = ACTIONS(4000), - [anon_sym_new] = ACTIONS(4000), - [anon_sym_requires] = ACTIONS(4000), - [anon_sym_CARET_CARET] = ACTIONS(4002), - [anon_sym_LBRACK_COLON] = ACTIONS(4002), - [sym_this] = ACTIONS(4000), + [sym_identifier] = ACTIONS(3730), + [aux_sym_preproc_include_token1] = ACTIONS(3730), + [aux_sym_preproc_def_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token2] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3730), + [sym_preproc_directive] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_BANG] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym___extension__] = ACTIONS(3730), + [anon_sym_typedef] = ACTIONS(3730), + [anon_sym_virtual] = ACTIONS(3730), + [anon_sym_extern] = ACTIONS(3730), + [anon_sym___attribute__] = ACTIONS(3730), + [anon_sym___attribute] = ACTIONS(3730), + [anon_sym_using] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3732), + [anon_sym___declspec] = ACTIONS(3730), + [anon_sym___based] = ACTIONS(3730), + [anon_sym___cdecl] = ACTIONS(3730), + [anon_sym___clrcall] = ACTIONS(3730), + [anon_sym___stdcall] = ACTIONS(3730), + [anon_sym___fastcall] = ACTIONS(3730), + [anon_sym___thiscall] = ACTIONS(3730), + [anon_sym___vectorcall] = ACTIONS(3730), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_signed] = ACTIONS(3730), + [anon_sym_unsigned] = ACTIONS(3730), + [anon_sym_long] = ACTIONS(3730), + [anon_sym_short] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_static] = ACTIONS(3730), + [anon_sym_register] = ACTIONS(3730), + [anon_sym_inline] = ACTIONS(3730), + [anon_sym___inline] = ACTIONS(3730), + [anon_sym___inline__] = ACTIONS(3730), + [anon_sym___forceinline] = ACTIONS(3730), + [anon_sym_thread_local] = ACTIONS(3730), + [anon_sym___thread] = ACTIONS(3730), + [anon_sym_const] = ACTIONS(3730), + [anon_sym_constexpr] = ACTIONS(3730), + [anon_sym_volatile] = ACTIONS(3730), + [anon_sym_restrict] = ACTIONS(3730), + [anon_sym___restrict__] = ACTIONS(3730), + [anon_sym__Atomic] = ACTIONS(3730), + [anon_sym__Noreturn] = ACTIONS(3730), + [anon_sym_noreturn] = ACTIONS(3730), + [anon_sym__Nonnull] = ACTIONS(3730), + [anon_sym_mutable] = ACTIONS(3730), + [anon_sym_constinit] = ACTIONS(3730), + [anon_sym_consteval] = ACTIONS(3730), + [anon_sym_alignas] = ACTIONS(3730), + [anon_sym__Alignas] = ACTIONS(3730), + [sym_primitive_type] = ACTIONS(3730), + [anon_sym_enum] = ACTIONS(3730), + [anon_sym_class] = ACTIONS(3730), + [anon_sym_struct] = ACTIONS(3730), + [anon_sym_union] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_switch] = ACTIONS(3730), + [anon_sym_case] = ACTIONS(3730), + [anon_sym_default] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_break] = ACTIONS(3730), + [anon_sym_continue] = ACTIONS(3730), + [anon_sym_goto] = ACTIONS(3730), + [anon_sym___try] = ACTIONS(3730), + [anon_sym___leave] = ACTIONS(3730), + [anon_sym_not] = ACTIONS(3730), + [anon_sym_compl] = ACTIONS(3730), + [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_PLUS_PLUS] = ACTIONS(3732), + [anon_sym_sizeof] = ACTIONS(3730), + [anon_sym___alignof__] = ACTIONS(3730), + [anon_sym___alignof] = ACTIONS(3730), + [anon_sym__alignof] = ACTIONS(3730), + [anon_sym_alignof] = ACTIONS(3730), + [anon_sym__Alignof] = ACTIONS(3730), + [anon_sym_offsetof] = ACTIONS(3730), + [anon_sym__Generic] = ACTIONS(3730), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_asm] = ACTIONS(3730), + [anon_sym___asm__] = ACTIONS(3730), + [anon_sym___asm] = ACTIONS(3730), + [sym_number_literal] = ACTIONS(3732), + [anon_sym_L_SQUOTE] = ACTIONS(3732), + [anon_sym_u_SQUOTE] = ACTIONS(3732), + [anon_sym_U_SQUOTE] = ACTIONS(3732), + [anon_sym_u8_SQUOTE] = ACTIONS(3732), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_L_DQUOTE] = ACTIONS(3732), + [anon_sym_u_DQUOTE] = ACTIONS(3732), + [anon_sym_U_DQUOTE] = ACTIONS(3732), + [anon_sym_u8_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(3732), + [sym_true] = ACTIONS(3730), + [sym_false] = ACTIONS(3730), + [anon_sym_NULL] = ACTIONS(3730), + [anon_sym_nullptr] = ACTIONS(3730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3730), + [anon_sym_decltype] = ACTIONS(3730), + [anon_sym_explicit] = ACTIONS(3730), + [anon_sym_export] = ACTIONS(3730), + [anon_sym_module] = ACTIONS(3730), + [anon_sym_import] = ACTIONS(3730), + [anon_sym_template] = ACTIONS(3730), + [anon_sym_operator] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_delete] = ACTIONS(3730), + [anon_sym_throw] = ACTIONS(3730), + [anon_sym_namespace] = ACTIONS(3730), + [anon_sym_static_assert] = ACTIONS(3730), + [anon_sym_concept] = ACTIONS(3730), + [anon_sym_co_return] = ACTIONS(3730), + [anon_sym_co_yield] = ACTIONS(3730), + [anon_sym_R_DQUOTE] = ACTIONS(3732), + [anon_sym_LR_DQUOTE] = ACTIONS(3732), + [anon_sym_uR_DQUOTE] = ACTIONS(3732), + [anon_sym_UR_DQUOTE] = ACTIONS(3732), + [anon_sym_u8R_DQUOTE] = ACTIONS(3732), + [anon_sym_co_await] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_requires] = ACTIONS(3730), + [anon_sym_CARET_CARET] = ACTIONS(3732), + [anon_sym_LBRACK_COLON] = ACTIONS(3732), + [sym_this] = ACTIONS(3730), }, [STATE(714)] = { - [sym_identifier] = ACTIONS(4004), - [aux_sym_preproc_include_token1] = ACTIONS(4004), - [aux_sym_preproc_def_token1] = ACTIONS(4004), - [aux_sym_preproc_if_token1] = ACTIONS(4004), - [aux_sym_preproc_if_token2] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), - [sym_preproc_directive] = ACTIONS(4004), - [anon_sym_LPAREN2] = ACTIONS(4006), - [anon_sym_BANG] = ACTIONS(4006), - [anon_sym_TILDE] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym___extension__] = ACTIONS(4004), - [anon_sym_typedef] = ACTIONS(4004), - [anon_sym_virtual] = ACTIONS(4004), - [anon_sym_extern] = ACTIONS(4004), - [anon_sym___attribute__] = ACTIONS(4004), - [anon_sym___attribute] = ACTIONS(4004), - [anon_sym_using] = ACTIONS(4004), - [anon_sym_COLON_COLON] = ACTIONS(4006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), - [anon_sym___declspec] = ACTIONS(4004), - [anon_sym___based] = ACTIONS(4004), - [anon_sym___cdecl] = ACTIONS(4004), - [anon_sym___clrcall] = ACTIONS(4004), - [anon_sym___stdcall] = ACTIONS(4004), - [anon_sym___fastcall] = ACTIONS(4004), - [anon_sym___thiscall] = ACTIONS(4004), - [anon_sym___vectorcall] = ACTIONS(4004), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_signed] = ACTIONS(4004), - [anon_sym_unsigned] = ACTIONS(4004), - [anon_sym_long] = ACTIONS(4004), - [anon_sym_short] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(4004), - [anon_sym_static] = ACTIONS(4004), - [anon_sym_register] = ACTIONS(4004), - [anon_sym_inline] = ACTIONS(4004), - [anon_sym___inline] = ACTIONS(4004), - [anon_sym___inline__] = ACTIONS(4004), - [anon_sym___forceinline] = ACTIONS(4004), - [anon_sym_thread_local] = ACTIONS(4004), - [anon_sym___thread] = ACTIONS(4004), - [anon_sym_const] = ACTIONS(4004), - [anon_sym_constexpr] = ACTIONS(4004), - [anon_sym_volatile] = ACTIONS(4004), - [anon_sym_restrict] = ACTIONS(4004), - [anon_sym___restrict__] = ACTIONS(4004), - [anon_sym__Atomic] = ACTIONS(4004), - [anon_sym__Noreturn] = ACTIONS(4004), - [anon_sym_noreturn] = ACTIONS(4004), - [anon_sym__Nonnull] = ACTIONS(4004), - [anon_sym_mutable] = ACTIONS(4004), - [anon_sym_constinit] = ACTIONS(4004), - [anon_sym_consteval] = ACTIONS(4004), - [anon_sym_alignas] = ACTIONS(4004), - [anon_sym__Alignas] = ACTIONS(4004), - [sym_primitive_type] = ACTIONS(4004), - [anon_sym_enum] = ACTIONS(4004), - [anon_sym_class] = ACTIONS(4004), - [anon_sym_struct] = ACTIONS(4004), - [anon_sym_union] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(4004), - [anon_sym_switch] = ACTIONS(4004), - [anon_sym_case] = ACTIONS(4004), - [anon_sym_default] = ACTIONS(4004), - [anon_sym_while] = ACTIONS(4004), - [anon_sym_do] = ACTIONS(4004), - [anon_sym_for] = ACTIONS(4004), - [anon_sym_return] = ACTIONS(4004), - [anon_sym_break] = ACTIONS(4004), - [anon_sym_continue] = ACTIONS(4004), - [anon_sym_goto] = ACTIONS(4004), - [anon_sym___try] = ACTIONS(4004), - [anon_sym___leave] = ACTIONS(4004), - [anon_sym_not] = ACTIONS(4004), - [anon_sym_compl] = ACTIONS(4004), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_sizeof] = ACTIONS(4004), - [anon_sym___alignof__] = ACTIONS(4004), - [anon_sym___alignof] = ACTIONS(4004), - [anon_sym__alignof] = ACTIONS(4004), - [anon_sym_alignof] = ACTIONS(4004), - [anon_sym__Alignof] = ACTIONS(4004), - [anon_sym_offsetof] = ACTIONS(4004), - [anon_sym__Generic] = ACTIONS(4004), - [anon_sym_typename] = ACTIONS(4004), - [anon_sym_asm] = ACTIONS(4004), - [anon_sym___asm__] = ACTIONS(4004), - [anon_sym___asm] = ACTIONS(4004), - [sym_number_literal] = ACTIONS(4006), - [anon_sym_L_SQUOTE] = ACTIONS(4006), - [anon_sym_u_SQUOTE] = ACTIONS(4006), - [anon_sym_U_SQUOTE] = ACTIONS(4006), - [anon_sym_u8_SQUOTE] = ACTIONS(4006), - [anon_sym_SQUOTE] = ACTIONS(4006), - [anon_sym_L_DQUOTE] = ACTIONS(4006), - [anon_sym_u_DQUOTE] = ACTIONS(4006), - [anon_sym_U_DQUOTE] = ACTIONS(4006), - [anon_sym_u8_DQUOTE] = ACTIONS(4006), - [anon_sym_DQUOTE] = ACTIONS(4006), - [sym_true] = ACTIONS(4004), - [sym_false] = ACTIONS(4004), - [anon_sym_NULL] = ACTIONS(4004), - [anon_sym_nullptr] = ACTIONS(4004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4004), - [anon_sym_decltype] = ACTIONS(4004), - [anon_sym_explicit] = ACTIONS(4004), - [anon_sym_export] = ACTIONS(4004), - [anon_sym_module] = ACTIONS(4004), - [anon_sym_import] = ACTIONS(4004), - [anon_sym_template] = ACTIONS(4004), - [anon_sym_operator] = ACTIONS(4004), - [anon_sym_try] = ACTIONS(4004), - [anon_sym_delete] = ACTIONS(4004), - [anon_sym_throw] = ACTIONS(4004), - [anon_sym_namespace] = ACTIONS(4004), - [anon_sym_static_assert] = ACTIONS(4004), - [anon_sym_concept] = ACTIONS(4004), - [anon_sym_co_return] = ACTIONS(4004), - [anon_sym_co_yield] = ACTIONS(4004), - [anon_sym_R_DQUOTE] = ACTIONS(4006), - [anon_sym_LR_DQUOTE] = ACTIONS(4006), - [anon_sym_uR_DQUOTE] = ACTIONS(4006), - [anon_sym_UR_DQUOTE] = ACTIONS(4006), - [anon_sym_u8R_DQUOTE] = ACTIONS(4006), - [anon_sym_co_await] = ACTIONS(4004), - [anon_sym_new] = ACTIONS(4004), - [anon_sym_requires] = ACTIONS(4004), - [anon_sym_CARET_CARET] = ACTIONS(4006), - [anon_sym_LBRACK_COLON] = ACTIONS(4006), - [sym_this] = ACTIONS(4004), + [sym_identifier] = ACTIONS(3734), + [aux_sym_preproc_include_token1] = ACTIONS(3734), + [aux_sym_preproc_def_token1] = ACTIONS(3734), + [aux_sym_preproc_if_token1] = ACTIONS(3734), + [aux_sym_preproc_if_token2] = ACTIONS(3734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3734), + [sym_preproc_directive] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3736), + [anon_sym_TILDE] = ACTIONS(3736), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3736), + [anon_sym___extension__] = ACTIONS(3734), + [anon_sym_typedef] = ACTIONS(3734), + [anon_sym_virtual] = ACTIONS(3734), + [anon_sym_extern] = ACTIONS(3734), + [anon_sym___attribute__] = ACTIONS(3734), + [anon_sym___attribute] = ACTIONS(3734), + [anon_sym_using] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3736), + [anon_sym___declspec] = ACTIONS(3734), + [anon_sym___based] = ACTIONS(3734), + [anon_sym___cdecl] = ACTIONS(3734), + [anon_sym___clrcall] = ACTIONS(3734), + [anon_sym___stdcall] = ACTIONS(3734), + [anon_sym___fastcall] = ACTIONS(3734), + [anon_sym___thiscall] = ACTIONS(3734), + [anon_sym___vectorcall] = ACTIONS(3734), + [anon_sym_LBRACE] = ACTIONS(3736), + [anon_sym_signed] = ACTIONS(3734), + [anon_sym_unsigned] = ACTIONS(3734), + [anon_sym_long] = ACTIONS(3734), + [anon_sym_short] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_static] = ACTIONS(3734), + [anon_sym_register] = ACTIONS(3734), + [anon_sym_inline] = ACTIONS(3734), + [anon_sym___inline] = ACTIONS(3734), + [anon_sym___inline__] = ACTIONS(3734), + [anon_sym___forceinline] = ACTIONS(3734), + [anon_sym_thread_local] = ACTIONS(3734), + [anon_sym___thread] = ACTIONS(3734), + [anon_sym_const] = ACTIONS(3734), + [anon_sym_constexpr] = ACTIONS(3734), + [anon_sym_volatile] = ACTIONS(3734), + [anon_sym_restrict] = ACTIONS(3734), + [anon_sym___restrict__] = ACTIONS(3734), + [anon_sym__Atomic] = ACTIONS(3734), + [anon_sym__Noreturn] = ACTIONS(3734), + [anon_sym_noreturn] = ACTIONS(3734), + [anon_sym__Nonnull] = ACTIONS(3734), + [anon_sym_mutable] = ACTIONS(3734), + [anon_sym_constinit] = ACTIONS(3734), + [anon_sym_consteval] = ACTIONS(3734), + [anon_sym_alignas] = ACTIONS(3734), + [anon_sym__Alignas] = ACTIONS(3734), + [sym_primitive_type] = ACTIONS(3734), + [anon_sym_enum] = ACTIONS(3734), + [anon_sym_class] = ACTIONS(3734), + [anon_sym_struct] = ACTIONS(3734), + [anon_sym_union] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_switch] = ACTIONS(3734), + [anon_sym_case] = ACTIONS(3734), + [anon_sym_default] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_break] = ACTIONS(3734), + [anon_sym_continue] = ACTIONS(3734), + [anon_sym_goto] = ACTIONS(3734), + [anon_sym___try] = ACTIONS(3734), + [anon_sym___leave] = ACTIONS(3734), + [anon_sym_not] = ACTIONS(3734), + [anon_sym_compl] = ACTIONS(3734), + [anon_sym_DASH_DASH] = ACTIONS(3736), + [anon_sym_PLUS_PLUS] = ACTIONS(3736), + [anon_sym_sizeof] = ACTIONS(3734), + [anon_sym___alignof__] = ACTIONS(3734), + [anon_sym___alignof] = ACTIONS(3734), + [anon_sym__alignof] = ACTIONS(3734), + [anon_sym_alignof] = ACTIONS(3734), + [anon_sym__Alignof] = ACTIONS(3734), + [anon_sym_offsetof] = ACTIONS(3734), + [anon_sym__Generic] = ACTIONS(3734), + [anon_sym_typename] = ACTIONS(3734), + [anon_sym_asm] = ACTIONS(3734), + [anon_sym___asm__] = ACTIONS(3734), + [anon_sym___asm] = ACTIONS(3734), + [sym_number_literal] = ACTIONS(3736), + [anon_sym_L_SQUOTE] = ACTIONS(3736), + [anon_sym_u_SQUOTE] = ACTIONS(3736), + [anon_sym_U_SQUOTE] = ACTIONS(3736), + [anon_sym_u8_SQUOTE] = ACTIONS(3736), + [anon_sym_SQUOTE] = ACTIONS(3736), + [anon_sym_L_DQUOTE] = ACTIONS(3736), + [anon_sym_u_DQUOTE] = ACTIONS(3736), + [anon_sym_U_DQUOTE] = ACTIONS(3736), + [anon_sym_u8_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE] = ACTIONS(3736), + [sym_true] = ACTIONS(3734), + [sym_false] = ACTIONS(3734), + [anon_sym_NULL] = ACTIONS(3734), + [anon_sym_nullptr] = ACTIONS(3734), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3734), + [anon_sym_decltype] = ACTIONS(3734), + [anon_sym_explicit] = ACTIONS(3734), + [anon_sym_export] = ACTIONS(3734), + [anon_sym_module] = ACTIONS(3734), + [anon_sym_import] = ACTIONS(3734), + [anon_sym_template] = ACTIONS(3734), + [anon_sym_operator] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_delete] = ACTIONS(3734), + [anon_sym_throw] = ACTIONS(3734), + [anon_sym_namespace] = ACTIONS(3734), + [anon_sym_static_assert] = ACTIONS(3734), + [anon_sym_concept] = ACTIONS(3734), + [anon_sym_co_return] = ACTIONS(3734), + [anon_sym_co_yield] = ACTIONS(3734), + [anon_sym_R_DQUOTE] = ACTIONS(3736), + [anon_sym_LR_DQUOTE] = ACTIONS(3736), + [anon_sym_uR_DQUOTE] = ACTIONS(3736), + [anon_sym_UR_DQUOTE] = ACTIONS(3736), + [anon_sym_u8R_DQUOTE] = ACTIONS(3736), + [anon_sym_co_await] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_requires] = ACTIONS(3734), + [anon_sym_CARET_CARET] = ACTIONS(3736), + [anon_sym_LBRACK_COLON] = ACTIONS(3736), + [sym_this] = ACTIONS(3734), }, [STATE(715)] = { - [sym_identifier] = ACTIONS(4012), - [aux_sym_preproc_include_token1] = ACTIONS(4012), - [aux_sym_preproc_def_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token2] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), - [sym_preproc_directive] = ACTIONS(4012), - [anon_sym_LPAREN2] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4014), - [anon_sym_TILDE] = ACTIONS(4014), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym___extension__] = ACTIONS(4012), - [anon_sym_typedef] = ACTIONS(4012), - [anon_sym_virtual] = ACTIONS(4012), - [anon_sym_extern] = ACTIONS(4012), - [anon_sym___attribute__] = ACTIONS(4012), - [anon_sym___attribute] = ACTIONS(4012), - [anon_sym_using] = ACTIONS(4012), - [anon_sym_COLON_COLON] = ACTIONS(4014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), - [anon_sym___declspec] = ACTIONS(4012), - [anon_sym___based] = ACTIONS(4012), - [anon_sym___cdecl] = ACTIONS(4012), - [anon_sym___clrcall] = ACTIONS(4012), - [anon_sym___stdcall] = ACTIONS(4012), - [anon_sym___fastcall] = ACTIONS(4012), - [anon_sym___thiscall] = ACTIONS(4012), - [anon_sym___vectorcall] = ACTIONS(4012), - [anon_sym_LBRACE] = ACTIONS(4014), - [anon_sym_signed] = ACTIONS(4012), - [anon_sym_unsigned] = ACTIONS(4012), - [anon_sym_long] = ACTIONS(4012), - [anon_sym_short] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4012), - [anon_sym_static] = ACTIONS(4012), - [anon_sym_register] = ACTIONS(4012), - [anon_sym_inline] = ACTIONS(4012), - [anon_sym___inline] = ACTIONS(4012), - [anon_sym___inline__] = ACTIONS(4012), - [anon_sym___forceinline] = ACTIONS(4012), - [anon_sym_thread_local] = ACTIONS(4012), - [anon_sym___thread] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4012), - [anon_sym_constexpr] = ACTIONS(4012), - [anon_sym_volatile] = ACTIONS(4012), - [anon_sym_restrict] = ACTIONS(4012), - [anon_sym___restrict__] = ACTIONS(4012), - [anon_sym__Atomic] = ACTIONS(4012), - [anon_sym__Noreturn] = ACTIONS(4012), - [anon_sym_noreturn] = ACTIONS(4012), - [anon_sym__Nonnull] = ACTIONS(4012), - [anon_sym_mutable] = ACTIONS(4012), - [anon_sym_constinit] = ACTIONS(4012), - [anon_sym_consteval] = ACTIONS(4012), - [anon_sym_alignas] = ACTIONS(4012), - [anon_sym__Alignas] = ACTIONS(4012), - [sym_primitive_type] = ACTIONS(4012), - [anon_sym_enum] = ACTIONS(4012), - [anon_sym_class] = ACTIONS(4012), - [anon_sym_struct] = ACTIONS(4012), - [anon_sym_union] = ACTIONS(4012), - [anon_sym_if] = ACTIONS(4012), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_case] = ACTIONS(4012), - [anon_sym_default] = ACTIONS(4012), - [anon_sym_while] = ACTIONS(4012), - [anon_sym_do] = ACTIONS(4012), - [anon_sym_for] = ACTIONS(4012), - [anon_sym_return] = ACTIONS(4012), - [anon_sym_break] = ACTIONS(4012), - [anon_sym_continue] = ACTIONS(4012), - [anon_sym_goto] = ACTIONS(4012), - [anon_sym___try] = ACTIONS(4012), - [anon_sym___leave] = ACTIONS(4012), - [anon_sym_not] = ACTIONS(4012), - [anon_sym_compl] = ACTIONS(4012), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_sizeof] = ACTIONS(4012), - [anon_sym___alignof__] = ACTIONS(4012), - [anon_sym___alignof] = ACTIONS(4012), - [anon_sym__alignof] = ACTIONS(4012), - [anon_sym_alignof] = ACTIONS(4012), - [anon_sym__Alignof] = ACTIONS(4012), - [anon_sym_offsetof] = ACTIONS(4012), - [anon_sym__Generic] = ACTIONS(4012), - [anon_sym_typename] = ACTIONS(4012), - [anon_sym_asm] = ACTIONS(4012), - [anon_sym___asm__] = ACTIONS(4012), - [anon_sym___asm] = ACTIONS(4012), - [sym_number_literal] = ACTIONS(4014), - [anon_sym_L_SQUOTE] = ACTIONS(4014), - [anon_sym_u_SQUOTE] = ACTIONS(4014), - [anon_sym_U_SQUOTE] = ACTIONS(4014), - [anon_sym_u8_SQUOTE] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(4014), - [anon_sym_L_DQUOTE] = ACTIONS(4014), - [anon_sym_u_DQUOTE] = ACTIONS(4014), - [anon_sym_U_DQUOTE] = ACTIONS(4014), - [anon_sym_u8_DQUOTE] = ACTIONS(4014), - [anon_sym_DQUOTE] = ACTIONS(4014), - [sym_true] = ACTIONS(4012), - [sym_false] = ACTIONS(4012), - [anon_sym_NULL] = ACTIONS(4012), - [anon_sym_nullptr] = ACTIONS(4012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4012), - [anon_sym_decltype] = ACTIONS(4012), - [anon_sym_explicit] = ACTIONS(4012), - [anon_sym_export] = ACTIONS(4012), - [anon_sym_module] = ACTIONS(4012), - [anon_sym_import] = ACTIONS(4012), - [anon_sym_template] = ACTIONS(4012), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_try] = ACTIONS(4012), - [anon_sym_delete] = ACTIONS(4012), - [anon_sym_throw] = ACTIONS(4012), - [anon_sym_namespace] = ACTIONS(4012), - [anon_sym_static_assert] = ACTIONS(4012), - [anon_sym_concept] = ACTIONS(4012), - [anon_sym_co_return] = ACTIONS(4012), - [anon_sym_co_yield] = ACTIONS(4012), - [anon_sym_R_DQUOTE] = ACTIONS(4014), - [anon_sym_LR_DQUOTE] = ACTIONS(4014), - [anon_sym_uR_DQUOTE] = ACTIONS(4014), - [anon_sym_UR_DQUOTE] = ACTIONS(4014), - [anon_sym_u8R_DQUOTE] = ACTIONS(4014), - [anon_sym_co_await] = ACTIONS(4012), - [anon_sym_new] = ACTIONS(4012), - [anon_sym_requires] = ACTIONS(4012), - [anon_sym_CARET_CARET] = ACTIONS(4014), - [anon_sym_LBRACK_COLON] = ACTIONS(4014), - [sym_this] = ACTIONS(4012), + [sym_identifier] = ACTIONS(3738), + [aux_sym_preproc_include_token1] = ACTIONS(3738), + [aux_sym_preproc_def_token1] = ACTIONS(3738), + [aux_sym_preproc_if_token1] = ACTIONS(3738), + [aux_sym_preproc_if_token2] = ACTIONS(3738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3738), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3738), + [sym_preproc_directive] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym___extension__] = ACTIONS(3738), + [anon_sym_typedef] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym___attribute__] = ACTIONS(3738), + [anon_sym___attribute] = ACTIONS(3738), + [anon_sym_using] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3740), + [anon_sym___declspec] = ACTIONS(3738), + [anon_sym___based] = ACTIONS(3738), + [anon_sym___cdecl] = ACTIONS(3738), + [anon_sym___clrcall] = ACTIONS(3738), + [anon_sym___stdcall] = ACTIONS(3738), + [anon_sym___fastcall] = ACTIONS(3738), + [anon_sym___thiscall] = ACTIONS(3738), + [anon_sym___vectorcall] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_signed] = ACTIONS(3738), + [anon_sym_unsigned] = ACTIONS(3738), + [anon_sym_long] = ACTIONS(3738), + [anon_sym_short] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_register] = ACTIONS(3738), + [anon_sym_inline] = ACTIONS(3738), + [anon_sym___inline] = ACTIONS(3738), + [anon_sym___inline__] = ACTIONS(3738), + [anon_sym___forceinline] = ACTIONS(3738), + [anon_sym_thread_local] = ACTIONS(3738), + [anon_sym___thread] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_constexpr] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_restrict] = ACTIONS(3738), + [anon_sym___restrict__] = ACTIONS(3738), + [anon_sym__Atomic] = ACTIONS(3738), + [anon_sym__Noreturn] = ACTIONS(3738), + [anon_sym_noreturn] = ACTIONS(3738), + [anon_sym__Nonnull] = ACTIONS(3738), + [anon_sym_mutable] = ACTIONS(3738), + [anon_sym_constinit] = ACTIONS(3738), + [anon_sym_consteval] = ACTIONS(3738), + [anon_sym_alignas] = ACTIONS(3738), + [anon_sym__Alignas] = ACTIONS(3738), + [sym_primitive_type] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_union] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_switch] = ACTIONS(3738), + [anon_sym_case] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_break] = ACTIONS(3738), + [anon_sym_continue] = ACTIONS(3738), + [anon_sym_goto] = ACTIONS(3738), + [anon_sym___try] = ACTIONS(3738), + [anon_sym___leave] = ACTIONS(3738), + [anon_sym_not] = ACTIONS(3738), + [anon_sym_compl] = ACTIONS(3738), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_sizeof] = ACTIONS(3738), + [anon_sym___alignof__] = ACTIONS(3738), + [anon_sym___alignof] = ACTIONS(3738), + [anon_sym__alignof] = ACTIONS(3738), + [anon_sym_alignof] = ACTIONS(3738), + [anon_sym__Alignof] = ACTIONS(3738), + [anon_sym_offsetof] = ACTIONS(3738), + [anon_sym__Generic] = ACTIONS(3738), + [anon_sym_typename] = ACTIONS(3738), + [anon_sym_asm] = ACTIONS(3738), + [anon_sym___asm__] = ACTIONS(3738), + [anon_sym___asm] = ACTIONS(3738), + [sym_number_literal] = ACTIONS(3740), + [anon_sym_L_SQUOTE] = ACTIONS(3740), + [anon_sym_u_SQUOTE] = ACTIONS(3740), + [anon_sym_U_SQUOTE] = ACTIONS(3740), + [anon_sym_u8_SQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_L_DQUOTE] = ACTIONS(3740), + [anon_sym_u_DQUOTE] = ACTIONS(3740), + [anon_sym_U_DQUOTE] = ACTIONS(3740), + [anon_sym_u8_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [sym_true] = ACTIONS(3738), + [sym_false] = ACTIONS(3738), + [anon_sym_NULL] = ACTIONS(3738), + [anon_sym_nullptr] = ACTIONS(3738), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3738), + [anon_sym_decltype] = ACTIONS(3738), + [anon_sym_explicit] = ACTIONS(3738), + [anon_sym_export] = ACTIONS(3738), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_import] = ACTIONS(3738), + [anon_sym_template] = ACTIONS(3738), + [anon_sym_operator] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_delete] = ACTIONS(3738), + [anon_sym_throw] = ACTIONS(3738), + [anon_sym_namespace] = ACTIONS(3738), + [anon_sym_static_assert] = ACTIONS(3738), + [anon_sym_concept] = ACTIONS(3738), + [anon_sym_co_return] = ACTIONS(3738), + [anon_sym_co_yield] = ACTIONS(3738), + [anon_sym_R_DQUOTE] = ACTIONS(3740), + [anon_sym_LR_DQUOTE] = ACTIONS(3740), + [anon_sym_uR_DQUOTE] = ACTIONS(3740), + [anon_sym_UR_DQUOTE] = ACTIONS(3740), + [anon_sym_u8R_DQUOTE] = ACTIONS(3740), + [anon_sym_co_await] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_requires] = ACTIONS(3738), + [anon_sym_CARET_CARET] = ACTIONS(3740), + [anon_sym_LBRACK_COLON] = ACTIONS(3740), + [sym_this] = ACTIONS(3738), }, [STATE(716)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_include_token1] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym___cdecl] = ACTIONS(3600), - [anon_sym___clrcall] = ACTIONS(3600), - [anon_sym___stdcall] = ACTIONS(3600), - [anon_sym___fastcall] = ACTIONS(3600), - [anon_sym___thiscall] = ACTIONS(3600), - [anon_sym___vectorcall] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_case] = ACTIONS(3600), - [anon_sym_default] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym___try] = ACTIONS(3600), - [anon_sym___leave] = ACTIONS(3600), - [anon_sym_not] = ACTIONS(3600), - [anon_sym_compl] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(3600), - [anon_sym___alignof] = ACTIONS(3600), - [anon_sym__alignof] = ACTIONS(3600), - [anon_sym_alignof] = ACTIONS(3600), - [anon_sym__Alignof] = ACTIONS(3600), - [anon_sym_offsetof] = ACTIONS(3600), - [anon_sym__Generic] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [anon_sym_asm] = ACTIONS(3600), - [anon_sym___asm__] = ACTIONS(3600), - [anon_sym___asm] = ACTIONS(3600), - [sym_number_literal] = ACTIONS(3602), - [anon_sym_L_SQUOTE] = ACTIONS(3602), - [anon_sym_u_SQUOTE] = ACTIONS(3602), - [anon_sym_U_SQUOTE] = ACTIONS(3602), - [anon_sym_u8_SQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_L_DQUOTE] = ACTIONS(3602), - [anon_sym_u_DQUOTE] = ACTIONS(3602), - [anon_sym_U_DQUOTE] = ACTIONS(3602), - [anon_sym_u8_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [anon_sym_NULL] = ACTIONS(3600), - [anon_sym_nullptr] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_export] = ACTIONS(3600), - [anon_sym_import] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_namespace] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_concept] = ACTIONS(3600), - [anon_sym_co_return] = ACTIONS(3600), - [anon_sym_co_yield] = ACTIONS(3600), - [anon_sym_R_DQUOTE] = ACTIONS(3602), - [anon_sym_LR_DQUOTE] = ACTIONS(3602), - [anon_sym_uR_DQUOTE] = ACTIONS(3602), - [anon_sym_UR_DQUOTE] = ACTIONS(3602), - [anon_sym_u8R_DQUOTE] = ACTIONS(3602), - [anon_sym_co_await] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_requires] = ACTIONS(3600), - [anon_sym_CARET_CARET] = ACTIONS(3602), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - [sym_this] = ACTIONS(3600), + [sym_identifier] = ACTIONS(3526), + [aux_sym_preproc_include_token1] = ACTIONS(3526), + [aux_sym_preproc_def_token1] = ACTIONS(3526), + [aux_sym_preproc_if_token1] = ACTIONS(3526), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3526), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3526), + [sym_preproc_directive] = ACTIONS(3526), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_STAR] = ACTIONS(3528), + [anon_sym_AMP_AMP] = ACTIONS(3528), + [anon_sym_AMP] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym___extension__] = ACTIONS(3526), + [anon_sym_typedef] = ACTIONS(3526), + [anon_sym_virtual] = ACTIONS(3526), + [anon_sym_extern] = ACTIONS(3526), + [anon_sym___attribute__] = ACTIONS(3526), + [anon_sym___attribute] = ACTIONS(3526), + [anon_sym_using] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3528), + [anon_sym___declspec] = ACTIONS(3526), + [anon_sym___based] = ACTIONS(3526), + [anon_sym___cdecl] = ACTIONS(3526), + [anon_sym___clrcall] = ACTIONS(3526), + [anon_sym___stdcall] = ACTIONS(3526), + [anon_sym___fastcall] = ACTIONS(3526), + [anon_sym___thiscall] = ACTIONS(3526), + [anon_sym___vectorcall] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_signed] = ACTIONS(3526), + [anon_sym_unsigned] = ACTIONS(3526), + [anon_sym_long] = ACTIONS(3526), + [anon_sym_short] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_register] = ACTIONS(3526), + [anon_sym_inline] = ACTIONS(3526), + [anon_sym___inline] = ACTIONS(3526), + [anon_sym___inline__] = ACTIONS(3526), + [anon_sym___forceinline] = ACTIONS(3526), + [anon_sym_thread_local] = ACTIONS(3526), + [anon_sym___thread] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_constexpr] = ACTIONS(3526), + [anon_sym_volatile] = ACTIONS(3526), + [anon_sym_restrict] = ACTIONS(3526), + [anon_sym___restrict__] = ACTIONS(3526), + [anon_sym__Atomic] = ACTIONS(3526), + [anon_sym__Noreturn] = ACTIONS(3526), + [anon_sym_noreturn] = ACTIONS(3526), + [anon_sym__Nonnull] = ACTIONS(3526), + [anon_sym_mutable] = ACTIONS(3526), + [anon_sym_constinit] = ACTIONS(3526), + [anon_sym_consteval] = ACTIONS(3526), + [anon_sym_alignas] = ACTIONS(3526), + [anon_sym__Alignas] = ACTIONS(3526), + [sym_primitive_type] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_struct] = ACTIONS(3526), + [anon_sym_union] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_else] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_case] = ACTIONS(3526), + [anon_sym_default] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_goto] = ACTIONS(3526), + [anon_sym___try] = ACTIONS(3526), + [anon_sym___leave] = ACTIONS(3526), + [anon_sym_not] = ACTIONS(3526), + [anon_sym_compl] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_sizeof] = ACTIONS(3526), + [anon_sym___alignof__] = ACTIONS(3526), + [anon_sym___alignof] = ACTIONS(3526), + [anon_sym__alignof] = ACTIONS(3526), + [anon_sym_alignof] = ACTIONS(3526), + [anon_sym__Alignof] = ACTIONS(3526), + [anon_sym_offsetof] = ACTIONS(3526), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_typename] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3526), + [anon_sym___asm__] = ACTIONS(3526), + [anon_sym___asm] = ACTIONS(3526), + [sym_number_literal] = ACTIONS(3528), + [anon_sym_L_SQUOTE] = ACTIONS(3528), + [anon_sym_u_SQUOTE] = ACTIONS(3528), + [anon_sym_U_SQUOTE] = ACTIONS(3528), + [anon_sym_u8_SQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_L_DQUOTE] = ACTIONS(3528), + [anon_sym_u_DQUOTE] = ACTIONS(3528), + [anon_sym_U_DQUOTE] = ACTIONS(3528), + [anon_sym_u8_DQUOTE] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [anon_sym_NULL] = ACTIONS(3526), + [anon_sym_nullptr] = ACTIONS(3526), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3526), + [anon_sym_decltype] = ACTIONS(3526), + [anon_sym_explicit] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_template] = ACTIONS(3526), + [anon_sym_operator] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_static_assert] = ACTIONS(3526), + [anon_sym_concept] = ACTIONS(3526), + [anon_sym_co_return] = ACTIONS(3526), + [anon_sym_co_yield] = ACTIONS(3526), + [anon_sym_R_DQUOTE] = ACTIONS(3528), + [anon_sym_LR_DQUOTE] = ACTIONS(3528), + [anon_sym_uR_DQUOTE] = ACTIONS(3528), + [anon_sym_UR_DQUOTE] = ACTIONS(3528), + [anon_sym_u8R_DQUOTE] = ACTIONS(3528), + [anon_sym_co_await] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_requires] = ACTIONS(3526), + [anon_sym_CARET_CARET] = ACTIONS(3528), + [anon_sym_LBRACK_COLON] = ACTIONS(3528), + [sym_this] = ACTIONS(3526), }, [STATE(717)] = { - [sym_identifier] = ACTIONS(4044), - [aux_sym_preproc_include_token1] = ACTIONS(4044), - [aux_sym_preproc_def_token1] = ACTIONS(4044), - [aux_sym_preproc_if_token1] = ACTIONS(4044), - [aux_sym_preproc_if_token2] = ACTIONS(4044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), - [sym_preproc_directive] = ACTIONS(4044), - [anon_sym_LPAREN2] = ACTIONS(4046), - [anon_sym_BANG] = ACTIONS(4046), - [anon_sym_TILDE] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4044), - [anon_sym_STAR] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym___extension__] = ACTIONS(4044), - [anon_sym_typedef] = ACTIONS(4044), - [anon_sym_virtual] = ACTIONS(4044), - [anon_sym_extern] = ACTIONS(4044), - [anon_sym___attribute__] = ACTIONS(4044), - [anon_sym___attribute] = ACTIONS(4044), - [anon_sym_using] = ACTIONS(4044), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), - [anon_sym___declspec] = ACTIONS(4044), - [anon_sym___based] = ACTIONS(4044), - [anon_sym___cdecl] = ACTIONS(4044), - [anon_sym___clrcall] = ACTIONS(4044), - [anon_sym___stdcall] = ACTIONS(4044), - [anon_sym___fastcall] = ACTIONS(4044), - [anon_sym___thiscall] = ACTIONS(4044), - [anon_sym___vectorcall] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4046), - [anon_sym_signed] = ACTIONS(4044), - [anon_sym_unsigned] = ACTIONS(4044), - [anon_sym_long] = ACTIONS(4044), - [anon_sym_short] = ACTIONS(4044), - [anon_sym_LBRACK] = ACTIONS(4044), - [anon_sym_static] = ACTIONS(4044), - [anon_sym_register] = ACTIONS(4044), - [anon_sym_inline] = ACTIONS(4044), - [anon_sym___inline] = ACTIONS(4044), - [anon_sym___inline__] = ACTIONS(4044), - [anon_sym___forceinline] = ACTIONS(4044), - [anon_sym_thread_local] = ACTIONS(4044), - [anon_sym___thread] = ACTIONS(4044), - [anon_sym_const] = ACTIONS(4044), - [anon_sym_constexpr] = ACTIONS(4044), - [anon_sym_volatile] = ACTIONS(4044), - [anon_sym_restrict] = ACTIONS(4044), - [anon_sym___restrict__] = ACTIONS(4044), - [anon_sym__Atomic] = ACTIONS(4044), - [anon_sym__Noreturn] = ACTIONS(4044), - [anon_sym_noreturn] = ACTIONS(4044), - [anon_sym__Nonnull] = ACTIONS(4044), - [anon_sym_mutable] = ACTIONS(4044), - [anon_sym_constinit] = ACTIONS(4044), - [anon_sym_consteval] = ACTIONS(4044), - [anon_sym_alignas] = ACTIONS(4044), - [anon_sym__Alignas] = ACTIONS(4044), - [sym_primitive_type] = ACTIONS(4044), - [anon_sym_enum] = ACTIONS(4044), - [anon_sym_class] = ACTIONS(4044), - [anon_sym_struct] = ACTIONS(4044), - [anon_sym_union] = ACTIONS(4044), - [anon_sym_if] = ACTIONS(4044), - [anon_sym_switch] = ACTIONS(4044), - [anon_sym_case] = ACTIONS(4044), - [anon_sym_default] = ACTIONS(4044), - [anon_sym_while] = ACTIONS(4044), - [anon_sym_do] = ACTIONS(4044), - [anon_sym_for] = ACTIONS(4044), - [anon_sym_return] = ACTIONS(4044), - [anon_sym_break] = ACTIONS(4044), - [anon_sym_continue] = ACTIONS(4044), - [anon_sym_goto] = ACTIONS(4044), - [anon_sym___try] = ACTIONS(4044), - [anon_sym___leave] = ACTIONS(4044), - [anon_sym_not] = ACTIONS(4044), - [anon_sym_compl] = ACTIONS(4044), - [anon_sym_DASH_DASH] = ACTIONS(4046), - [anon_sym_PLUS_PLUS] = ACTIONS(4046), - [anon_sym_sizeof] = ACTIONS(4044), - [anon_sym___alignof__] = ACTIONS(4044), - [anon_sym___alignof] = ACTIONS(4044), - [anon_sym__alignof] = ACTIONS(4044), - [anon_sym_alignof] = ACTIONS(4044), - [anon_sym__Alignof] = ACTIONS(4044), - [anon_sym_offsetof] = ACTIONS(4044), - [anon_sym__Generic] = ACTIONS(4044), - [anon_sym_typename] = ACTIONS(4044), - [anon_sym_asm] = ACTIONS(4044), - [anon_sym___asm__] = ACTIONS(4044), - [anon_sym___asm] = ACTIONS(4044), - [sym_number_literal] = ACTIONS(4046), - [anon_sym_L_SQUOTE] = ACTIONS(4046), - [anon_sym_u_SQUOTE] = ACTIONS(4046), - [anon_sym_U_SQUOTE] = ACTIONS(4046), - [anon_sym_u8_SQUOTE] = ACTIONS(4046), - [anon_sym_SQUOTE] = ACTIONS(4046), - [anon_sym_L_DQUOTE] = ACTIONS(4046), - [anon_sym_u_DQUOTE] = ACTIONS(4046), - [anon_sym_U_DQUOTE] = ACTIONS(4046), - [anon_sym_u8_DQUOTE] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [sym_true] = ACTIONS(4044), - [sym_false] = ACTIONS(4044), - [anon_sym_NULL] = ACTIONS(4044), - [anon_sym_nullptr] = ACTIONS(4044), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4044), - [anon_sym_decltype] = ACTIONS(4044), - [anon_sym_explicit] = ACTIONS(4044), - [anon_sym_export] = ACTIONS(4044), - [anon_sym_module] = ACTIONS(4044), - [anon_sym_import] = ACTIONS(4044), - [anon_sym_template] = ACTIONS(4044), - [anon_sym_operator] = ACTIONS(4044), - [anon_sym_try] = ACTIONS(4044), - [anon_sym_delete] = ACTIONS(4044), - [anon_sym_throw] = ACTIONS(4044), - [anon_sym_namespace] = ACTIONS(4044), - [anon_sym_static_assert] = ACTIONS(4044), - [anon_sym_concept] = ACTIONS(4044), - [anon_sym_co_return] = ACTIONS(4044), - [anon_sym_co_yield] = ACTIONS(4044), - [anon_sym_R_DQUOTE] = ACTIONS(4046), - [anon_sym_LR_DQUOTE] = ACTIONS(4046), - [anon_sym_uR_DQUOTE] = ACTIONS(4046), - [anon_sym_UR_DQUOTE] = ACTIONS(4046), - [anon_sym_u8R_DQUOTE] = ACTIONS(4046), - [anon_sym_co_await] = ACTIONS(4044), - [anon_sym_new] = ACTIONS(4044), - [anon_sym_requires] = ACTIONS(4044), - [anon_sym_CARET_CARET] = ACTIONS(4046), - [anon_sym_LBRACK_COLON] = ACTIONS(4046), - [sym_this] = ACTIONS(4044), + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), }, [STATE(718)] = { - [sym_identifier] = ACTIONS(4084), - [aux_sym_preproc_include_token1] = ACTIONS(4084), - [aux_sym_preproc_def_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token2] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), - [sym_preproc_directive] = ACTIONS(4084), - [anon_sym_LPAREN2] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4086), - [anon_sym_TILDE] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_AMP_AMP] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym___extension__] = ACTIONS(4084), - [anon_sym_typedef] = ACTIONS(4084), - [anon_sym_virtual] = ACTIONS(4084), - [anon_sym_extern] = ACTIONS(4084), - [anon_sym___attribute__] = ACTIONS(4084), - [anon_sym___attribute] = ACTIONS(4084), - [anon_sym_using] = ACTIONS(4084), - [anon_sym_COLON_COLON] = ACTIONS(4086), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), - [anon_sym___declspec] = ACTIONS(4084), - [anon_sym___based] = ACTIONS(4084), - [anon_sym___cdecl] = ACTIONS(4084), - [anon_sym___clrcall] = ACTIONS(4084), - [anon_sym___stdcall] = ACTIONS(4084), - [anon_sym___fastcall] = ACTIONS(4084), - [anon_sym___thiscall] = ACTIONS(4084), - [anon_sym___vectorcall] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4086), - [anon_sym_signed] = ACTIONS(4084), - [anon_sym_unsigned] = ACTIONS(4084), - [anon_sym_long] = ACTIONS(4084), - [anon_sym_short] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_register] = ACTIONS(4084), - [anon_sym_inline] = ACTIONS(4084), - [anon_sym___inline] = ACTIONS(4084), - [anon_sym___inline__] = ACTIONS(4084), - [anon_sym___forceinline] = ACTIONS(4084), - [anon_sym_thread_local] = ACTIONS(4084), - [anon_sym___thread] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_constexpr] = ACTIONS(4084), - [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_restrict] = ACTIONS(4084), - [anon_sym___restrict__] = ACTIONS(4084), - [anon_sym__Atomic] = ACTIONS(4084), - [anon_sym__Noreturn] = ACTIONS(4084), - [anon_sym_noreturn] = ACTIONS(4084), - [anon_sym__Nonnull] = ACTIONS(4084), - [anon_sym_mutable] = ACTIONS(4084), - [anon_sym_constinit] = ACTIONS(4084), - [anon_sym_consteval] = ACTIONS(4084), - [anon_sym_alignas] = ACTIONS(4084), - [anon_sym__Alignas] = ACTIONS(4084), - [sym_primitive_type] = ACTIONS(4084), - [anon_sym_enum] = ACTIONS(4084), - [anon_sym_class] = ACTIONS(4084), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_union] = ACTIONS(4084), - [anon_sym_if] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(4084), - [anon_sym_case] = ACTIONS(4084), - [anon_sym_default] = ACTIONS(4084), - [anon_sym_while] = ACTIONS(4084), - [anon_sym_do] = ACTIONS(4084), - [anon_sym_for] = ACTIONS(4084), - [anon_sym_return] = ACTIONS(4084), - [anon_sym_break] = ACTIONS(4084), - [anon_sym_continue] = ACTIONS(4084), - [anon_sym_goto] = ACTIONS(4084), - [anon_sym___try] = ACTIONS(4084), - [anon_sym___leave] = ACTIONS(4084), - [anon_sym_not] = ACTIONS(4084), - [anon_sym_compl] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4086), - [anon_sym_PLUS_PLUS] = ACTIONS(4086), - [anon_sym_sizeof] = ACTIONS(4084), - [anon_sym___alignof__] = ACTIONS(4084), - [anon_sym___alignof] = ACTIONS(4084), - [anon_sym__alignof] = ACTIONS(4084), - [anon_sym_alignof] = ACTIONS(4084), - [anon_sym__Alignof] = ACTIONS(4084), - [anon_sym_offsetof] = ACTIONS(4084), - [anon_sym__Generic] = ACTIONS(4084), - [anon_sym_typename] = ACTIONS(4084), - [anon_sym_asm] = ACTIONS(4084), - [anon_sym___asm__] = ACTIONS(4084), - [anon_sym___asm] = ACTIONS(4084), - [sym_number_literal] = ACTIONS(4086), - [anon_sym_L_SQUOTE] = ACTIONS(4086), - [anon_sym_u_SQUOTE] = ACTIONS(4086), - [anon_sym_U_SQUOTE] = ACTIONS(4086), - [anon_sym_u8_SQUOTE] = ACTIONS(4086), - [anon_sym_SQUOTE] = ACTIONS(4086), - [anon_sym_L_DQUOTE] = ACTIONS(4086), - [anon_sym_u_DQUOTE] = ACTIONS(4086), - [anon_sym_U_DQUOTE] = ACTIONS(4086), - [anon_sym_u8_DQUOTE] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(4086), - [sym_true] = ACTIONS(4084), - [sym_false] = ACTIONS(4084), - [anon_sym_NULL] = ACTIONS(4084), - [anon_sym_nullptr] = ACTIONS(4084), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4084), - [anon_sym_decltype] = ACTIONS(4084), - [anon_sym_explicit] = ACTIONS(4084), - [anon_sym_export] = ACTIONS(4084), - [anon_sym_module] = ACTIONS(4084), - [anon_sym_import] = ACTIONS(4084), - [anon_sym_template] = ACTIONS(4084), - [anon_sym_operator] = ACTIONS(4084), - [anon_sym_try] = ACTIONS(4084), - [anon_sym_delete] = ACTIONS(4084), - [anon_sym_throw] = ACTIONS(4084), - [anon_sym_namespace] = ACTIONS(4084), - [anon_sym_static_assert] = ACTIONS(4084), - [anon_sym_concept] = ACTIONS(4084), - [anon_sym_co_return] = ACTIONS(4084), - [anon_sym_co_yield] = ACTIONS(4084), - [anon_sym_R_DQUOTE] = ACTIONS(4086), - [anon_sym_LR_DQUOTE] = ACTIONS(4086), - [anon_sym_uR_DQUOTE] = ACTIONS(4086), - [anon_sym_UR_DQUOTE] = ACTIONS(4086), - [anon_sym_u8R_DQUOTE] = ACTIONS(4086), - [anon_sym_co_await] = ACTIONS(4084), - [anon_sym_new] = ACTIONS(4084), - [anon_sym_requires] = ACTIONS(4084), - [anon_sym_CARET_CARET] = ACTIONS(4086), - [anon_sym_LBRACK_COLON] = ACTIONS(4086), - [sym_this] = ACTIONS(4084), + [sym_identifier] = ACTIONS(4309), + [aux_sym_preproc_include_token1] = ACTIONS(4309), + [aux_sym_preproc_def_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token2] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4309), + [sym_preproc_directive] = ACTIONS(4309), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_TILDE] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4309), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_AMP_AMP] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), + [anon_sym_SEMI] = ACTIONS(4311), + [anon_sym___extension__] = ACTIONS(4309), + [anon_sym_typedef] = ACTIONS(4309), + [anon_sym_virtual] = ACTIONS(4309), + [anon_sym_extern] = ACTIONS(4309), + [anon_sym___attribute__] = ACTIONS(4309), + [anon_sym___attribute] = ACTIONS(4309), + [anon_sym_using] = ACTIONS(4309), + [anon_sym_COLON_COLON] = ACTIONS(4311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4311), + [anon_sym___declspec] = ACTIONS(4309), + [anon_sym___based] = ACTIONS(4309), + [anon_sym___cdecl] = ACTIONS(4309), + [anon_sym___clrcall] = ACTIONS(4309), + [anon_sym___stdcall] = ACTIONS(4309), + [anon_sym___fastcall] = ACTIONS(4309), + [anon_sym___thiscall] = ACTIONS(4309), + [anon_sym___vectorcall] = ACTIONS(4309), + [anon_sym_LBRACE] = ACTIONS(4311), + [anon_sym_signed] = ACTIONS(4309), + [anon_sym_unsigned] = ACTIONS(4309), + [anon_sym_long] = ACTIONS(4309), + [anon_sym_short] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_static] = ACTIONS(4309), + [anon_sym_register] = ACTIONS(4309), + [anon_sym_inline] = ACTIONS(4309), + [anon_sym___inline] = ACTIONS(4309), + [anon_sym___inline__] = ACTIONS(4309), + [anon_sym___forceinline] = ACTIONS(4309), + [anon_sym_thread_local] = ACTIONS(4309), + [anon_sym___thread] = ACTIONS(4309), + [anon_sym_const] = ACTIONS(4309), + [anon_sym_constexpr] = ACTIONS(4309), + [anon_sym_volatile] = ACTIONS(4309), + [anon_sym_restrict] = ACTIONS(4309), + [anon_sym___restrict__] = ACTIONS(4309), + [anon_sym__Atomic] = ACTIONS(4309), + [anon_sym__Noreturn] = ACTIONS(4309), + [anon_sym_noreturn] = ACTIONS(4309), + [anon_sym__Nonnull] = ACTIONS(4309), + [anon_sym_mutable] = ACTIONS(4309), + [anon_sym_constinit] = ACTIONS(4309), + [anon_sym_consteval] = ACTIONS(4309), + [anon_sym_alignas] = ACTIONS(4309), + [anon_sym__Alignas] = ACTIONS(4309), + [sym_primitive_type] = ACTIONS(4309), + [anon_sym_enum] = ACTIONS(4309), + [anon_sym_class] = ACTIONS(4309), + [anon_sym_struct] = ACTIONS(4309), + [anon_sym_union] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4309), + [anon_sym_switch] = ACTIONS(4309), + [anon_sym_case] = ACTIONS(4309), + [anon_sym_default] = ACTIONS(4309), + [anon_sym_while] = ACTIONS(4309), + [anon_sym_do] = ACTIONS(4309), + [anon_sym_for] = ACTIONS(4309), + [anon_sym_return] = ACTIONS(4309), + [anon_sym_break] = ACTIONS(4309), + [anon_sym_continue] = ACTIONS(4309), + [anon_sym_goto] = ACTIONS(4309), + [anon_sym___try] = ACTIONS(4309), + [anon_sym___leave] = ACTIONS(4309), + [anon_sym_not] = ACTIONS(4309), + [anon_sym_compl] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4311), + [anon_sym_PLUS_PLUS] = ACTIONS(4311), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(4309), + [anon_sym___alignof] = ACTIONS(4309), + [anon_sym__alignof] = ACTIONS(4309), + [anon_sym_alignof] = ACTIONS(4309), + [anon_sym__Alignof] = ACTIONS(4309), + [anon_sym_offsetof] = ACTIONS(4309), + [anon_sym__Generic] = ACTIONS(4309), + [anon_sym_typename] = ACTIONS(4309), + [anon_sym_asm] = ACTIONS(4309), + [anon_sym___asm__] = ACTIONS(4309), + [anon_sym___asm] = ACTIONS(4309), + [sym_number_literal] = ACTIONS(4311), + [anon_sym_L_SQUOTE] = ACTIONS(4311), + [anon_sym_u_SQUOTE] = ACTIONS(4311), + [anon_sym_U_SQUOTE] = ACTIONS(4311), + [anon_sym_u8_SQUOTE] = ACTIONS(4311), + [anon_sym_SQUOTE] = ACTIONS(4311), + [anon_sym_L_DQUOTE] = ACTIONS(4311), + [anon_sym_u_DQUOTE] = ACTIONS(4311), + [anon_sym_U_DQUOTE] = ACTIONS(4311), + [anon_sym_u8_DQUOTE] = ACTIONS(4311), + [anon_sym_DQUOTE] = ACTIONS(4311), + [sym_true] = ACTIONS(4309), + [sym_false] = ACTIONS(4309), + [anon_sym_NULL] = ACTIONS(4309), + [anon_sym_nullptr] = ACTIONS(4309), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4309), + [anon_sym_decltype] = ACTIONS(4309), + [anon_sym_explicit] = ACTIONS(4309), + [anon_sym_export] = ACTIONS(4309), + [anon_sym_module] = ACTIONS(4309), + [anon_sym_import] = ACTIONS(4309), + [anon_sym_template] = ACTIONS(4309), + [anon_sym_operator] = ACTIONS(4309), + [anon_sym_try] = ACTIONS(4309), + [anon_sym_delete] = ACTIONS(4309), + [anon_sym_throw] = ACTIONS(4309), + [anon_sym_namespace] = ACTIONS(4309), + [anon_sym_static_assert] = ACTIONS(4309), + [anon_sym_concept] = ACTIONS(4309), + [anon_sym_co_return] = ACTIONS(4309), + [anon_sym_co_yield] = ACTIONS(4309), + [anon_sym_R_DQUOTE] = ACTIONS(4311), + [anon_sym_LR_DQUOTE] = ACTIONS(4311), + [anon_sym_uR_DQUOTE] = ACTIONS(4311), + [anon_sym_UR_DQUOTE] = ACTIONS(4311), + [anon_sym_u8R_DQUOTE] = ACTIONS(4311), + [anon_sym_co_await] = ACTIONS(4309), + [anon_sym_new] = ACTIONS(4309), + [anon_sym_requires] = ACTIONS(4309), + [anon_sym_CARET_CARET] = ACTIONS(4311), + [anon_sym_LBRACK_COLON] = ACTIONS(4311), + [sym_this] = ACTIONS(4309), }, [STATE(719)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_include_token1] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym___cdecl] = ACTIONS(3660), + [anon_sym___clrcall] = ACTIONS(3660), + [anon_sym___stdcall] = ACTIONS(3660), + [anon_sym___fastcall] = ACTIONS(3660), + [anon_sym___thiscall] = ACTIONS(3660), + [anon_sym___vectorcall] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_case] = ACTIONS(3660), + [anon_sym_default] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_export] = ACTIONS(3660), + [anon_sym_import] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_namespace] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_concept] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), + }, + [STATE(720)] = { + [sym_identifier] = ACTIONS(3714), + [aux_sym_preproc_include_token1] = ACTIONS(3714), + [aux_sym_preproc_def_token1] = ACTIONS(3714), + [aux_sym_preproc_if_token1] = ACTIONS(3714), + [aux_sym_preproc_if_token2] = ACTIONS(3714), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3714), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3714), + [sym_preproc_directive] = ACTIONS(3714), + [anon_sym_LPAREN2] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3714), + [anon_sym_PLUS] = ACTIONS(3714), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_AMP_AMP] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3714), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym___extension__] = ACTIONS(3714), + [anon_sym_typedef] = ACTIONS(3714), + [anon_sym_virtual] = ACTIONS(3714), + [anon_sym_extern] = ACTIONS(3714), + [anon_sym___attribute__] = ACTIONS(3714), + [anon_sym___attribute] = ACTIONS(3714), + [anon_sym_using] = ACTIONS(3714), + [anon_sym_COLON_COLON] = ACTIONS(3716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3716), + [anon_sym___declspec] = ACTIONS(3714), + [anon_sym___based] = ACTIONS(3714), + [anon_sym___cdecl] = ACTIONS(3714), + [anon_sym___clrcall] = ACTIONS(3714), + [anon_sym___stdcall] = ACTIONS(3714), + [anon_sym___fastcall] = ACTIONS(3714), + [anon_sym___thiscall] = ACTIONS(3714), + [anon_sym___vectorcall] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_signed] = ACTIONS(3714), + [anon_sym_unsigned] = ACTIONS(3714), + [anon_sym_long] = ACTIONS(3714), + [anon_sym_short] = ACTIONS(3714), + [anon_sym_LBRACK] = ACTIONS(3714), + [anon_sym_static] = ACTIONS(3714), + [anon_sym_register] = ACTIONS(3714), + [anon_sym_inline] = ACTIONS(3714), + [anon_sym___inline] = ACTIONS(3714), + [anon_sym___inline__] = ACTIONS(3714), + [anon_sym___forceinline] = ACTIONS(3714), + [anon_sym_thread_local] = ACTIONS(3714), + [anon_sym___thread] = ACTIONS(3714), + [anon_sym_const] = ACTIONS(3714), + [anon_sym_constexpr] = ACTIONS(3714), + [anon_sym_volatile] = ACTIONS(3714), + [anon_sym_restrict] = ACTIONS(3714), + [anon_sym___restrict__] = ACTIONS(3714), + [anon_sym__Atomic] = ACTIONS(3714), + [anon_sym__Noreturn] = ACTIONS(3714), + [anon_sym_noreturn] = ACTIONS(3714), + [anon_sym__Nonnull] = ACTIONS(3714), + [anon_sym_mutable] = ACTIONS(3714), + [anon_sym_constinit] = ACTIONS(3714), + [anon_sym_consteval] = ACTIONS(3714), + [anon_sym_alignas] = ACTIONS(3714), + [anon_sym__Alignas] = ACTIONS(3714), + [sym_primitive_type] = ACTIONS(3714), + [anon_sym_enum] = ACTIONS(3714), + [anon_sym_class] = ACTIONS(3714), + [anon_sym_struct] = ACTIONS(3714), + [anon_sym_union] = ACTIONS(3714), + [anon_sym_if] = ACTIONS(3714), + [anon_sym_switch] = ACTIONS(3714), + [anon_sym_case] = ACTIONS(3714), + [anon_sym_default] = ACTIONS(3714), + [anon_sym_while] = ACTIONS(3714), + [anon_sym_do] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3714), + [anon_sym_return] = ACTIONS(3714), + [anon_sym_break] = ACTIONS(3714), + [anon_sym_continue] = ACTIONS(3714), + [anon_sym_goto] = ACTIONS(3714), + [anon_sym___try] = ACTIONS(3714), + [anon_sym___leave] = ACTIONS(3714), + [anon_sym_not] = ACTIONS(3714), + [anon_sym_compl] = ACTIONS(3714), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(3714), + [anon_sym___alignof] = ACTIONS(3714), + [anon_sym__alignof] = ACTIONS(3714), + [anon_sym_alignof] = ACTIONS(3714), + [anon_sym__Alignof] = ACTIONS(3714), + [anon_sym_offsetof] = ACTIONS(3714), + [anon_sym__Generic] = ACTIONS(3714), + [anon_sym_typename] = ACTIONS(3714), + [anon_sym_asm] = ACTIONS(3714), + [anon_sym___asm__] = ACTIONS(3714), + [anon_sym___asm] = ACTIONS(3714), + [sym_number_literal] = ACTIONS(3716), + [anon_sym_L_SQUOTE] = ACTIONS(3716), + [anon_sym_u_SQUOTE] = ACTIONS(3716), + [anon_sym_U_SQUOTE] = ACTIONS(3716), + [anon_sym_u8_SQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_L_DQUOTE] = ACTIONS(3716), + [anon_sym_u_DQUOTE] = ACTIONS(3716), + [anon_sym_U_DQUOTE] = ACTIONS(3716), + [anon_sym_u8_DQUOTE] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [sym_true] = ACTIONS(3714), + [sym_false] = ACTIONS(3714), + [anon_sym_NULL] = ACTIONS(3714), + [anon_sym_nullptr] = ACTIONS(3714), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3714), + [anon_sym_decltype] = ACTIONS(3714), + [anon_sym_explicit] = ACTIONS(3714), + [anon_sym_export] = ACTIONS(3714), + [anon_sym_module] = ACTIONS(3714), + [anon_sym_import] = ACTIONS(3714), + [anon_sym_template] = ACTIONS(3714), + [anon_sym_operator] = ACTIONS(3714), + [anon_sym_try] = ACTIONS(3714), + [anon_sym_delete] = ACTIONS(3714), + [anon_sym_throw] = ACTIONS(3714), + [anon_sym_namespace] = ACTIONS(3714), + [anon_sym_static_assert] = ACTIONS(3714), + [anon_sym_concept] = ACTIONS(3714), + [anon_sym_co_return] = ACTIONS(3714), + [anon_sym_co_yield] = ACTIONS(3714), + [anon_sym_R_DQUOTE] = ACTIONS(3716), + [anon_sym_LR_DQUOTE] = ACTIONS(3716), + [anon_sym_uR_DQUOTE] = ACTIONS(3716), + [anon_sym_UR_DQUOTE] = ACTIONS(3716), + [anon_sym_u8R_DQUOTE] = ACTIONS(3716), + [anon_sym_co_await] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3714), + [anon_sym_requires] = ACTIONS(3714), + [anon_sym_CARET_CARET] = ACTIONS(3716), + [anon_sym_LBRACK_COLON] = ACTIONS(3716), + [sym_this] = ACTIONS(3714), + }, + [STATE(721)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), + }, + [STATE(722)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_include_token1] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym___cdecl] = ACTIONS(3664), + [anon_sym___clrcall] = ACTIONS(3664), + [anon_sym___stdcall] = ACTIONS(3664), + [anon_sym___fastcall] = ACTIONS(3664), + [anon_sym___thiscall] = ACTIONS(3664), + [anon_sym___vectorcall] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_case] = ACTIONS(3664), + [anon_sym_default] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_export] = ACTIONS(3664), + [anon_sym_import] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_namespace] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_concept] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), + }, + [STATE(723)] = { + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_include_token1] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token2] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_BANG] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym___cdecl] = ACTIONS(3782), + [anon_sym___clrcall] = ACTIONS(3782), + [anon_sym___stdcall] = ACTIONS(3782), + [anon_sym___fastcall] = ACTIONS(3782), + [anon_sym___thiscall] = ACTIONS(3782), + [anon_sym___vectorcall] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3784), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_switch] = ACTIONS(3782), + [anon_sym_case] = ACTIONS(3782), + [anon_sym_default] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_break] = ACTIONS(3782), + [anon_sym_continue] = ACTIONS(3782), + [anon_sym_goto] = ACTIONS(3782), + [anon_sym___try] = ACTIONS(3782), + [anon_sym___leave] = ACTIONS(3782), + [anon_sym_not] = ACTIONS(3782), + [anon_sym_compl] = ACTIONS(3782), + [anon_sym_DASH_DASH] = ACTIONS(3784), + [anon_sym_PLUS_PLUS] = ACTIONS(3784), + [anon_sym_sizeof] = ACTIONS(3782), + [anon_sym___alignof__] = ACTIONS(3782), + [anon_sym___alignof] = ACTIONS(3782), + [anon_sym__alignof] = ACTIONS(3782), + [anon_sym_alignof] = ACTIONS(3782), + [anon_sym__Alignof] = ACTIONS(3782), + [anon_sym_offsetof] = ACTIONS(3782), + [anon_sym__Generic] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [anon_sym_asm] = ACTIONS(3782), + [anon_sym___asm__] = ACTIONS(3782), + [anon_sym___asm] = ACTIONS(3782), + [sym_number_literal] = ACTIONS(3784), + [anon_sym_L_SQUOTE] = ACTIONS(3784), + [anon_sym_u_SQUOTE] = ACTIONS(3784), + [anon_sym_U_SQUOTE] = ACTIONS(3784), + [anon_sym_u8_SQUOTE] = ACTIONS(3784), + [anon_sym_SQUOTE] = ACTIONS(3784), + [anon_sym_L_DQUOTE] = ACTIONS(3784), + [anon_sym_u_DQUOTE] = ACTIONS(3784), + [anon_sym_U_DQUOTE] = ACTIONS(3784), + [anon_sym_u8_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [anon_sym_NULL] = ACTIONS(3782), + [anon_sym_nullptr] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_export] = ACTIONS(3782), + [anon_sym_module] = ACTIONS(3782), + [anon_sym_import] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_delete] = ACTIONS(3782), + [anon_sym_throw] = ACTIONS(3782), + [anon_sym_namespace] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_concept] = ACTIONS(3782), + [anon_sym_co_return] = ACTIONS(3782), + [anon_sym_co_yield] = ACTIONS(3782), + [anon_sym_R_DQUOTE] = ACTIONS(3784), + [anon_sym_LR_DQUOTE] = ACTIONS(3784), + [anon_sym_uR_DQUOTE] = ACTIONS(3784), + [anon_sym_UR_DQUOTE] = ACTIONS(3784), + [anon_sym_u8R_DQUOTE] = ACTIONS(3784), + [anon_sym_co_await] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_requires] = ACTIONS(3782), + [anon_sym_CARET_CARET] = ACTIONS(3784), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), + [sym_this] = ACTIONS(3782), + }, + [STATE(724)] = { [sym_identifier] = ACTIONS(4088), [aux_sym_preproc_include_token1] = ACTIONS(4088), [aux_sym_preproc_def_token1] = ACTIONS(4088), @@ -162738,2404 +163445,4378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4090), [sym_this] = ACTIONS(4088), }, - [STATE(720)] = { - [sym_identifier] = ACTIONS(4092), - [aux_sym_preproc_include_token1] = ACTIONS(4092), - [aux_sym_preproc_def_token1] = ACTIONS(4092), - [aux_sym_preproc_if_token1] = ACTIONS(4092), - [aux_sym_preproc_if_token2] = ACTIONS(4092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), - [sym_preproc_directive] = ACTIONS(4092), - [anon_sym_LPAREN2] = ACTIONS(4094), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_TILDE] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4094), - [anon_sym_AMP_AMP] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_SEMI] = ACTIONS(4094), - [anon_sym___extension__] = ACTIONS(4092), - [anon_sym_typedef] = ACTIONS(4092), - [anon_sym_virtual] = ACTIONS(4092), - [anon_sym_extern] = ACTIONS(4092), - [anon_sym___attribute__] = ACTIONS(4092), - [anon_sym___attribute] = ACTIONS(4092), - [anon_sym_using] = ACTIONS(4092), - [anon_sym_COLON_COLON] = ACTIONS(4094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), - [anon_sym___declspec] = ACTIONS(4092), - [anon_sym___based] = ACTIONS(4092), - [anon_sym___cdecl] = ACTIONS(4092), - [anon_sym___clrcall] = ACTIONS(4092), - [anon_sym___stdcall] = ACTIONS(4092), - [anon_sym___fastcall] = ACTIONS(4092), - [anon_sym___thiscall] = ACTIONS(4092), - [anon_sym___vectorcall] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4094), - [anon_sym_signed] = ACTIONS(4092), - [anon_sym_unsigned] = ACTIONS(4092), - [anon_sym_long] = ACTIONS(4092), - [anon_sym_short] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4092), - [anon_sym_static] = ACTIONS(4092), - [anon_sym_register] = ACTIONS(4092), - [anon_sym_inline] = ACTIONS(4092), - [anon_sym___inline] = ACTIONS(4092), - [anon_sym___inline__] = ACTIONS(4092), - [anon_sym___forceinline] = ACTIONS(4092), - [anon_sym_thread_local] = ACTIONS(4092), - [anon_sym___thread] = ACTIONS(4092), - [anon_sym_const] = ACTIONS(4092), - [anon_sym_constexpr] = ACTIONS(4092), - [anon_sym_volatile] = ACTIONS(4092), - [anon_sym_restrict] = ACTIONS(4092), - [anon_sym___restrict__] = ACTIONS(4092), - [anon_sym__Atomic] = ACTIONS(4092), - [anon_sym__Noreturn] = ACTIONS(4092), - [anon_sym_noreturn] = ACTIONS(4092), - [anon_sym__Nonnull] = ACTIONS(4092), - [anon_sym_mutable] = ACTIONS(4092), - [anon_sym_constinit] = ACTIONS(4092), - [anon_sym_consteval] = ACTIONS(4092), - [anon_sym_alignas] = ACTIONS(4092), - [anon_sym__Alignas] = ACTIONS(4092), - [sym_primitive_type] = ACTIONS(4092), - [anon_sym_enum] = ACTIONS(4092), - [anon_sym_class] = ACTIONS(4092), - [anon_sym_struct] = ACTIONS(4092), - [anon_sym_union] = ACTIONS(4092), - [anon_sym_if] = ACTIONS(4092), - [anon_sym_switch] = ACTIONS(4092), - [anon_sym_case] = ACTIONS(4092), - [anon_sym_default] = ACTIONS(4092), - [anon_sym_while] = ACTIONS(4092), - [anon_sym_do] = ACTIONS(4092), - [anon_sym_for] = ACTIONS(4092), - [anon_sym_return] = ACTIONS(4092), - [anon_sym_break] = ACTIONS(4092), - [anon_sym_continue] = ACTIONS(4092), - [anon_sym_goto] = ACTIONS(4092), - [anon_sym___try] = ACTIONS(4092), - [anon_sym___leave] = ACTIONS(4092), - [anon_sym_not] = ACTIONS(4092), - [anon_sym_compl] = ACTIONS(4092), - [anon_sym_DASH_DASH] = ACTIONS(4094), - [anon_sym_PLUS_PLUS] = ACTIONS(4094), - [anon_sym_sizeof] = ACTIONS(4092), - [anon_sym___alignof__] = ACTIONS(4092), - [anon_sym___alignof] = ACTIONS(4092), - [anon_sym__alignof] = ACTIONS(4092), - [anon_sym_alignof] = ACTIONS(4092), - [anon_sym__Alignof] = ACTIONS(4092), - [anon_sym_offsetof] = ACTIONS(4092), - [anon_sym__Generic] = ACTIONS(4092), - [anon_sym_typename] = ACTIONS(4092), - [anon_sym_asm] = ACTIONS(4092), - [anon_sym___asm__] = ACTIONS(4092), - [anon_sym___asm] = ACTIONS(4092), - [sym_number_literal] = ACTIONS(4094), - [anon_sym_L_SQUOTE] = ACTIONS(4094), - [anon_sym_u_SQUOTE] = ACTIONS(4094), - [anon_sym_U_SQUOTE] = ACTIONS(4094), - [anon_sym_u8_SQUOTE] = ACTIONS(4094), - [anon_sym_SQUOTE] = ACTIONS(4094), - [anon_sym_L_DQUOTE] = ACTIONS(4094), - [anon_sym_u_DQUOTE] = ACTIONS(4094), - [anon_sym_U_DQUOTE] = ACTIONS(4094), - [anon_sym_u8_DQUOTE] = ACTIONS(4094), - [anon_sym_DQUOTE] = ACTIONS(4094), - [sym_true] = ACTIONS(4092), - [sym_false] = ACTIONS(4092), - [anon_sym_NULL] = ACTIONS(4092), - [anon_sym_nullptr] = ACTIONS(4092), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4092), - [anon_sym_decltype] = ACTIONS(4092), - [anon_sym_explicit] = ACTIONS(4092), - [anon_sym_export] = ACTIONS(4092), - [anon_sym_module] = ACTIONS(4092), - [anon_sym_import] = ACTIONS(4092), - [anon_sym_template] = ACTIONS(4092), - [anon_sym_operator] = ACTIONS(4092), - [anon_sym_try] = ACTIONS(4092), - [anon_sym_delete] = ACTIONS(4092), - [anon_sym_throw] = ACTIONS(4092), - [anon_sym_namespace] = ACTIONS(4092), - [anon_sym_static_assert] = ACTIONS(4092), - [anon_sym_concept] = ACTIONS(4092), - [anon_sym_co_return] = ACTIONS(4092), - [anon_sym_co_yield] = ACTIONS(4092), - [anon_sym_R_DQUOTE] = ACTIONS(4094), - [anon_sym_LR_DQUOTE] = ACTIONS(4094), - [anon_sym_uR_DQUOTE] = ACTIONS(4094), - [anon_sym_UR_DQUOTE] = ACTIONS(4094), - [anon_sym_u8R_DQUOTE] = ACTIONS(4094), - [anon_sym_co_await] = ACTIONS(4092), - [anon_sym_new] = ACTIONS(4092), - [anon_sym_requires] = ACTIONS(4092), - [anon_sym_CARET_CARET] = ACTIONS(4094), - [anon_sym_LBRACK_COLON] = ACTIONS(4094), - [sym_this] = ACTIONS(4092), - }, - [STATE(721)] = { - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_include_token1] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token2] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym___cdecl] = ACTIONS(4100), - [anon_sym___clrcall] = ACTIONS(4100), - [anon_sym___stdcall] = ACTIONS(4100), - [anon_sym___fastcall] = ACTIONS(4100), - [anon_sym___thiscall] = ACTIONS(4100), - [anon_sym___vectorcall] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4102), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_if] = ACTIONS(4100), - [anon_sym_switch] = ACTIONS(4100), - [anon_sym_case] = ACTIONS(4100), - [anon_sym_default] = ACTIONS(4100), - [anon_sym_while] = ACTIONS(4100), - [anon_sym_do] = ACTIONS(4100), - [anon_sym_for] = ACTIONS(4100), - [anon_sym_return] = ACTIONS(4100), - [anon_sym_break] = ACTIONS(4100), - [anon_sym_continue] = ACTIONS(4100), - [anon_sym_goto] = ACTIONS(4100), - [anon_sym___try] = ACTIONS(4100), - [anon_sym___leave] = ACTIONS(4100), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4102), - [anon_sym_PLUS_PLUS] = ACTIONS(4102), - [anon_sym_sizeof] = ACTIONS(4100), - [anon_sym___alignof__] = ACTIONS(4100), - [anon_sym___alignof] = ACTIONS(4100), - [anon_sym__alignof] = ACTIONS(4100), - [anon_sym_alignof] = ACTIONS(4100), - [anon_sym__Alignof] = ACTIONS(4100), - [anon_sym_offsetof] = ACTIONS(4100), - [anon_sym__Generic] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), - [anon_sym_asm] = ACTIONS(4100), - [anon_sym___asm__] = ACTIONS(4100), - [anon_sym___asm] = ACTIONS(4100), - [sym_number_literal] = ACTIONS(4102), - [anon_sym_L_SQUOTE] = ACTIONS(4102), - [anon_sym_u_SQUOTE] = ACTIONS(4102), - [anon_sym_U_SQUOTE] = ACTIONS(4102), - [anon_sym_u8_SQUOTE] = ACTIONS(4102), - [anon_sym_SQUOTE] = ACTIONS(4102), - [anon_sym_L_DQUOTE] = ACTIONS(4102), - [anon_sym_u_DQUOTE] = ACTIONS(4102), - [anon_sym_U_DQUOTE] = ACTIONS(4102), - [anon_sym_u8_DQUOTE] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(4102), - [sym_true] = ACTIONS(4100), - [sym_false] = ACTIONS(4100), - [anon_sym_NULL] = ACTIONS(4100), - [anon_sym_nullptr] = ACTIONS(4100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_export] = ACTIONS(4100), - [anon_sym_module] = ACTIONS(4100), - [anon_sym_import] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_try] = ACTIONS(4100), - [anon_sym_delete] = ACTIONS(4100), - [anon_sym_throw] = ACTIONS(4100), - [anon_sym_namespace] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_concept] = ACTIONS(4100), - [anon_sym_co_return] = ACTIONS(4100), - [anon_sym_co_yield] = ACTIONS(4100), - [anon_sym_R_DQUOTE] = ACTIONS(4102), - [anon_sym_LR_DQUOTE] = ACTIONS(4102), - [anon_sym_uR_DQUOTE] = ACTIONS(4102), - [anon_sym_UR_DQUOTE] = ACTIONS(4102), - [anon_sym_u8R_DQUOTE] = ACTIONS(4102), - [anon_sym_co_await] = ACTIONS(4100), - [anon_sym_new] = ACTIONS(4100), - [anon_sym_requires] = ACTIONS(4100), - [anon_sym_CARET_CARET] = ACTIONS(4102), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), - [sym_this] = ACTIONS(4100), - }, - [STATE(722)] = { - [sym_identifier] = ACTIONS(4104), - [aux_sym_preproc_include_token1] = ACTIONS(4104), - [aux_sym_preproc_def_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token2] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), - [sym_preproc_directive] = ACTIONS(4104), - [anon_sym_LPAREN2] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym___extension__] = ACTIONS(4104), - [anon_sym_typedef] = ACTIONS(4104), - [anon_sym_virtual] = ACTIONS(4104), - [anon_sym_extern] = ACTIONS(4104), - [anon_sym___attribute__] = ACTIONS(4104), - [anon_sym___attribute] = ACTIONS(4104), - [anon_sym_using] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), - [anon_sym___declspec] = ACTIONS(4104), - [anon_sym___based] = ACTIONS(4104), - [anon_sym___cdecl] = ACTIONS(4104), - [anon_sym___clrcall] = ACTIONS(4104), - [anon_sym___stdcall] = ACTIONS(4104), - [anon_sym___fastcall] = ACTIONS(4104), - [anon_sym___thiscall] = ACTIONS(4104), - [anon_sym___vectorcall] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_signed] = ACTIONS(4104), - [anon_sym_unsigned] = ACTIONS(4104), - [anon_sym_long] = ACTIONS(4104), - [anon_sym_short] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(4104), - [anon_sym_static] = ACTIONS(4104), - [anon_sym_register] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym___inline] = ACTIONS(4104), - [anon_sym___inline__] = ACTIONS(4104), - [anon_sym___forceinline] = ACTIONS(4104), - [anon_sym_thread_local] = ACTIONS(4104), - [anon_sym___thread] = ACTIONS(4104), - [anon_sym_const] = ACTIONS(4104), - [anon_sym_constexpr] = ACTIONS(4104), - [anon_sym_volatile] = ACTIONS(4104), - [anon_sym_restrict] = ACTIONS(4104), - [anon_sym___restrict__] = ACTIONS(4104), - [anon_sym__Atomic] = ACTIONS(4104), - [anon_sym__Noreturn] = ACTIONS(4104), - [anon_sym_noreturn] = ACTIONS(4104), - [anon_sym__Nonnull] = ACTIONS(4104), - [anon_sym_mutable] = ACTIONS(4104), - [anon_sym_constinit] = ACTIONS(4104), - [anon_sym_consteval] = ACTIONS(4104), - [anon_sym_alignas] = ACTIONS(4104), - [anon_sym__Alignas] = ACTIONS(4104), - [sym_primitive_type] = ACTIONS(4104), - [anon_sym_enum] = ACTIONS(4104), - [anon_sym_class] = ACTIONS(4104), - [anon_sym_struct] = ACTIONS(4104), - [anon_sym_union] = ACTIONS(4104), - [anon_sym_if] = ACTIONS(4104), - [anon_sym_switch] = ACTIONS(4104), - [anon_sym_case] = ACTIONS(4104), - [anon_sym_default] = ACTIONS(4104), - [anon_sym_while] = ACTIONS(4104), - [anon_sym_do] = ACTIONS(4104), - [anon_sym_for] = ACTIONS(4104), - [anon_sym_return] = ACTIONS(4104), - [anon_sym_break] = ACTIONS(4104), - [anon_sym_continue] = ACTIONS(4104), - [anon_sym_goto] = ACTIONS(4104), - [anon_sym___try] = ACTIONS(4104), - [anon_sym___leave] = ACTIONS(4104), - [anon_sym_not] = ACTIONS(4104), - [anon_sym_compl] = ACTIONS(4104), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_sizeof] = ACTIONS(4104), - [anon_sym___alignof__] = ACTIONS(4104), - [anon_sym___alignof] = ACTIONS(4104), - [anon_sym__alignof] = ACTIONS(4104), - [anon_sym_alignof] = ACTIONS(4104), - [anon_sym__Alignof] = ACTIONS(4104), - [anon_sym_offsetof] = ACTIONS(4104), - [anon_sym__Generic] = ACTIONS(4104), - [anon_sym_typename] = ACTIONS(4104), - [anon_sym_asm] = ACTIONS(4104), - [anon_sym___asm__] = ACTIONS(4104), - [anon_sym___asm] = ACTIONS(4104), - [sym_number_literal] = ACTIONS(4106), - [anon_sym_L_SQUOTE] = ACTIONS(4106), - [anon_sym_u_SQUOTE] = ACTIONS(4106), - [anon_sym_U_SQUOTE] = ACTIONS(4106), - [anon_sym_u8_SQUOTE] = ACTIONS(4106), - [anon_sym_SQUOTE] = ACTIONS(4106), - [anon_sym_L_DQUOTE] = ACTIONS(4106), - [anon_sym_u_DQUOTE] = ACTIONS(4106), - [anon_sym_U_DQUOTE] = ACTIONS(4106), - [anon_sym_u8_DQUOTE] = ACTIONS(4106), - [anon_sym_DQUOTE] = ACTIONS(4106), - [sym_true] = ACTIONS(4104), - [sym_false] = ACTIONS(4104), - [anon_sym_NULL] = ACTIONS(4104), - [anon_sym_nullptr] = ACTIONS(4104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4104), - [anon_sym_decltype] = ACTIONS(4104), - [anon_sym_explicit] = ACTIONS(4104), - [anon_sym_export] = ACTIONS(4104), - [anon_sym_module] = ACTIONS(4104), - [anon_sym_import] = ACTIONS(4104), - [anon_sym_template] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_try] = ACTIONS(4104), - [anon_sym_delete] = ACTIONS(4104), - [anon_sym_throw] = ACTIONS(4104), - [anon_sym_namespace] = ACTIONS(4104), - [anon_sym_static_assert] = ACTIONS(4104), - [anon_sym_concept] = ACTIONS(4104), - [anon_sym_co_return] = ACTIONS(4104), - [anon_sym_co_yield] = ACTIONS(4104), - [anon_sym_R_DQUOTE] = ACTIONS(4106), - [anon_sym_LR_DQUOTE] = ACTIONS(4106), - [anon_sym_uR_DQUOTE] = ACTIONS(4106), - [anon_sym_UR_DQUOTE] = ACTIONS(4106), - [anon_sym_u8R_DQUOTE] = ACTIONS(4106), - [anon_sym_co_await] = ACTIONS(4104), - [anon_sym_new] = ACTIONS(4104), - [anon_sym_requires] = ACTIONS(4104), - [anon_sym_CARET_CARET] = ACTIONS(4106), - [anon_sym_LBRACK_COLON] = ACTIONS(4106), - [sym_this] = ACTIONS(4104), - }, - [STATE(723)] = { - [sym_identifier] = ACTIONS(4108), - [aux_sym_preproc_include_token1] = ACTIONS(4108), - [aux_sym_preproc_def_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token2] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_LPAREN2] = ACTIONS(4110), - [anon_sym_BANG] = ACTIONS(4110), - [anon_sym_TILDE] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym___extension__] = ACTIONS(4108), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_virtual] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym___attribute__] = ACTIONS(4108), - [anon_sym___attribute] = ACTIONS(4108), - [anon_sym_using] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), - [anon_sym___declspec] = ACTIONS(4108), - [anon_sym___based] = ACTIONS(4108), - [anon_sym___cdecl] = ACTIONS(4108), - [anon_sym___clrcall] = ACTIONS(4108), - [anon_sym___stdcall] = ACTIONS(4108), - [anon_sym___fastcall] = ACTIONS(4108), - [anon_sym___thiscall] = ACTIONS(4108), - [anon_sym___vectorcall] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_signed] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4108), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym___inline] = ACTIONS(4108), - [anon_sym___inline__] = ACTIONS(4108), - [anon_sym___forceinline] = ACTIONS(4108), - [anon_sym_thread_local] = ACTIONS(4108), - [anon_sym___thread] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym___restrict__] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym__Noreturn] = ACTIONS(4108), - [anon_sym_noreturn] = ACTIONS(4108), - [anon_sym__Nonnull] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_constinit] = ACTIONS(4108), - [anon_sym_consteval] = ACTIONS(4108), - [anon_sym_alignas] = ACTIONS(4108), - [anon_sym__Alignas] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_class] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(4108), - [anon_sym_case] = ACTIONS(4108), - [anon_sym_default] = ACTIONS(4108), - [anon_sym_while] = ACTIONS(4108), - [anon_sym_do] = ACTIONS(4108), - [anon_sym_for] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_goto] = ACTIONS(4108), - [anon_sym___try] = ACTIONS(4108), - [anon_sym___leave] = ACTIONS(4108), - [anon_sym_not] = ACTIONS(4108), - [anon_sym_compl] = ACTIONS(4108), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_sizeof] = ACTIONS(4108), - [anon_sym___alignof__] = ACTIONS(4108), - [anon_sym___alignof] = ACTIONS(4108), - [anon_sym__alignof] = ACTIONS(4108), - [anon_sym_alignof] = ACTIONS(4108), - [anon_sym__Alignof] = ACTIONS(4108), - [anon_sym_offsetof] = ACTIONS(4108), - [anon_sym__Generic] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [anon_sym_asm] = ACTIONS(4108), - [anon_sym___asm__] = ACTIONS(4108), - [anon_sym___asm] = ACTIONS(4108), - [sym_number_literal] = ACTIONS(4110), - [anon_sym_L_SQUOTE] = ACTIONS(4110), - [anon_sym_u_SQUOTE] = ACTIONS(4110), - [anon_sym_U_SQUOTE] = ACTIONS(4110), - [anon_sym_u8_SQUOTE] = ACTIONS(4110), - [anon_sym_SQUOTE] = ACTIONS(4110), - [anon_sym_L_DQUOTE] = ACTIONS(4110), - [anon_sym_u_DQUOTE] = ACTIONS(4110), - [anon_sym_U_DQUOTE] = ACTIONS(4110), - [anon_sym_u8_DQUOTE] = ACTIONS(4110), - [anon_sym_DQUOTE] = ACTIONS(4110), - [sym_true] = ACTIONS(4108), - [sym_false] = ACTIONS(4108), - [anon_sym_NULL] = ACTIONS(4108), - [anon_sym_nullptr] = ACTIONS(4108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4108), - [anon_sym_decltype] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_export] = ACTIONS(4108), - [anon_sym_module] = ACTIONS(4108), - [anon_sym_import] = ACTIONS(4108), - [anon_sym_template] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_try] = ACTIONS(4108), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_throw] = ACTIONS(4108), - [anon_sym_namespace] = ACTIONS(4108), - [anon_sym_static_assert] = ACTIONS(4108), - [anon_sym_concept] = ACTIONS(4108), - [anon_sym_co_return] = ACTIONS(4108), - [anon_sym_co_yield] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(4110), - [anon_sym_LR_DQUOTE] = ACTIONS(4110), - [anon_sym_uR_DQUOTE] = ACTIONS(4110), - [anon_sym_UR_DQUOTE] = ACTIONS(4110), - [anon_sym_u8R_DQUOTE] = ACTIONS(4110), - [anon_sym_co_await] = ACTIONS(4108), - [anon_sym_new] = ACTIONS(4108), - [anon_sym_requires] = ACTIONS(4108), - [anon_sym_CARET_CARET] = ACTIONS(4110), - [anon_sym_LBRACK_COLON] = ACTIONS(4110), - [sym_this] = ACTIONS(4108), - }, - [STATE(724)] = { - [sym_identifier] = ACTIONS(4112), - [aux_sym_preproc_include_token1] = ACTIONS(4112), - [aux_sym_preproc_def_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token2] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), - [sym_preproc_directive] = ACTIONS(4112), - [anon_sym_LPAREN2] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_TILDE] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym___extension__] = ACTIONS(4112), - [anon_sym_typedef] = ACTIONS(4112), - [anon_sym_virtual] = ACTIONS(4112), - [anon_sym_extern] = ACTIONS(4112), - [anon_sym___attribute__] = ACTIONS(4112), - [anon_sym___attribute] = ACTIONS(4112), - [anon_sym_using] = ACTIONS(4112), - [anon_sym_COLON_COLON] = ACTIONS(4114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), - [anon_sym___declspec] = ACTIONS(4112), - [anon_sym___based] = ACTIONS(4112), - [anon_sym___cdecl] = ACTIONS(4112), - [anon_sym___clrcall] = ACTIONS(4112), - [anon_sym___stdcall] = ACTIONS(4112), - [anon_sym___fastcall] = ACTIONS(4112), - [anon_sym___thiscall] = ACTIONS(4112), - [anon_sym___vectorcall] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_signed] = ACTIONS(4112), - [anon_sym_unsigned] = ACTIONS(4112), - [anon_sym_long] = ACTIONS(4112), - [anon_sym_short] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_static] = ACTIONS(4112), - [anon_sym_register] = ACTIONS(4112), - [anon_sym_inline] = ACTIONS(4112), - [anon_sym___inline] = ACTIONS(4112), - [anon_sym___inline__] = ACTIONS(4112), - [anon_sym___forceinline] = ACTIONS(4112), - [anon_sym_thread_local] = ACTIONS(4112), - [anon_sym___thread] = ACTIONS(4112), - [anon_sym_const] = ACTIONS(4112), - [anon_sym_constexpr] = ACTIONS(4112), - [anon_sym_volatile] = ACTIONS(4112), - [anon_sym_restrict] = ACTIONS(4112), - [anon_sym___restrict__] = ACTIONS(4112), - [anon_sym__Atomic] = ACTIONS(4112), - [anon_sym__Noreturn] = ACTIONS(4112), - [anon_sym_noreturn] = ACTIONS(4112), - [anon_sym__Nonnull] = ACTIONS(4112), - [anon_sym_mutable] = ACTIONS(4112), - [anon_sym_constinit] = ACTIONS(4112), - [anon_sym_consteval] = ACTIONS(4112), - [anon_sym_alignas] = ACTIONS(4112), - [anon_sym__Alignas] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(4112), - [anon_sym_enum] = ACTIONS(4112), - [anon_sym_class] = ACTIONS(4112), - [anon_sym_struct] = ACTIONS(4112), - [anon_sym_union] = ACTIONS(4112), - [anon_sym_if] = ACTIONS(4112), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_case] = ACTIONS(4112), - [anon_sym_default] = ACTIONS(4112), - [anon_sym_while] = ACTIONS(4112), - [anon_sym_do] = ACTIONS(4112), - [anon_sym_for] = ACTIONS(4112), - [anon_sym_return] = ACTIONS(4112), - [anon_sym_break] = ACTIONS(4112), - [anon_sym_continue] = ACTIONS(4112), - [anon_sym_goto] = ACTIONS(4112), - [anon_sym___try] = ACTIONS(4112), - [anon_sym___leave] = ACTIONS(4112), - [anon_sym_not] = ACTIONS(4112), - [anon_sym_compl] = ACTIONS(4112), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_PLUS_PLUS] = ACTIONS(4114), - [anon_sym_sizeof] = ACTIONS(4112), - [anon_sym___alignof__] = ACTIONS(4112), - [anon_sym___alignof] = ACTIONS(4112), - [anon_sym__alignof] = ACTIONS(4112), - [anon_sym_alignof] = ACTIONS(4112), - [anon_sym__Alignof] = ACTIONS(4112), - [anon_sym_offsetof] = ACTIONS(4112), - [anon_sym__Generic] = ACTIONS(4112), - [anon_sym_typename] = ACTIONS(4112), - [anon_sym_asm] = ACTIONS(4112), - [anon_sym___asm__] = ACTIONS(4112), - [anon_sym___asm] = ACTIONS(4112), - [sym_number_literal] = ACTIONS(4114), - [anon_sym_L_SQUOTE] = ACTIONS(4114), - [anon_sym_u_SQUOTE] = ACTIONS(4114), - [anon_sym_U_SQUOTE] = ACTIONS(4114), - [anon_sym_u8_SQUOTE] = ACTIONS(4114), - [anon_sym_SQUOTE] = ACTIONS(4114), - [anon_sym_L_DQUOTE] = ACTIONS(4114), - [anon_sym_u_DQUOTE] = ACTIONS(4114), - [anon_sym_U_DQUOTE] = ACTIONS(4114), - [anon_sym_u8_DQUOTE] = ACTIONS(4114), - [anon_sym_DQUOTE] = ACTIONS(4114), - [sym_true] = ACTIONS(4112), - [sym_false] = ACTIONS(4112), - [anon_sym_NULL] = ACTIONS(4112), - [anon_sym_nullptr] = ACTIONS(4112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4112), - [anon_sym_decltype] = ACTIONS(4112), - [anon_sym_explicit] = ACTIONS(4112), - [anon_sym_export] = ACTIONS(4112), - [anon_sym_module] = ACTIONS(4112), - [anon_sym_import] = ACTIONS(4112), - [anon_sym_template] = ACTIONS(4112), - [anon_sym_operator] = ACTIONS(4112), - [anon_sym_try] = ACTIONS(4112), - [anon_sym_delete] = ACTIONS(4112), - [anon_sym_throw] = ACTIONS(4112), - [anon_sym_namespace] = ACTIONS(4112), - [anon_sym_static_assert] = ACTIONS(4112), - [anon_sym_concept] = ACTIONS(4112), - [anon_sym_co_return] = ACTIONS(4112), - [anon_sym_co_yield] = ACTIONS(4112), - [anon_sym_R_DQUOTE] = ACTIONS(4114), - [anon_sym_LR_DQUOTE] = ACTIONS(4114), - [anon_sym_uR_DQUOTE] = ACTIONS(4114), - [anon_sym_UR_DQUOTE] = ACTIONS(4114), - [anon_sym_u8R_DQUOTE] = ACTIONS(4114), - [anon_sym_co_await] = ACTIONS(4112), - [anon_sym_new] = ACTIONS(4112), - [anon_sym_requires] = ACTIONS(4112), - [anon_sym_CARET_CARET] = ACTIONS(4114), - [anon_sym_LBRACK_COLON] = ACTIONS(4114), - [sym_this] = ACTIONS(4112), - }, [STATE(725)] = { - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_include_token1] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token2] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_PLUS] = ACTIONS(4152), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym___cdecl] = ACTIONS(4152), - [anon_sym___clrcall] = ACTIONS(4152), - [anon_sym___stdcall] = ACTIONS(4152), - [anon_sym___fastcall] = ACTIONS(4152), - [anon_sym___thiscall] = ACTIONS(4152), - [anon_sym___vectorcall] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4154), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_if] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(4152), - [anon_sym_case] = ACTIONS(4152), - [anon_sym_default] = ACTIONS(4152), - [anon_sym_while] = ACTIONS(4152), - [anon_sym_do] = ACTIONS(4152), - [anon_sym_for] = ACTIONS(4152), - [anon_sym_return] = ACTIONS(4152), - [anon_sym_break] = ACTIONS(4152), - [anon_sym_continue] = ACTIONS(4152), - [anon_sym_goto] = ACTIONS(4152), - [anon_sym___try] = ACTIONS(4152), - [anon_sym___leave] = ACTIONS(4152), - [anon_sym_not] = ACTIONS(4152), - [anon_sym_compl] = ACTIONS(4152), - [anon_sym_DASH_DASH] = ACTIONS(4154), - [anon_sym_PLUS_PLUS] = ACTIONS(4154), - [anon_sym_sizeof] = ACTIONS(4152), - [anon_sym___alignof__] = ACTIONS(4152), - [anon_sym___alignof] = ACTIONS(4152), - [anon_sym__alignof] = ACTIONS(4152), - [anon_sym_alignof] = ACTIONS(4152), - [anon_sym__Alignof] = ACTIONS(4152), - [anon_sym_offsetof] = ACTIONS(4152), - [anon_sym__Generic] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), - [anon_sym_asm] = ACTIONS(4152), - [anon_sym___asm__] = ACTIONS(4152), - [anon_sym___asm] = ACTIONS(4152), - [sym_number_literal] = ACTIONS(4154), - [anon_sym_L_SQUOTE] = ACTIONS(4154), - [anon_sym_u_SQUOTE] = ACTIONS(4154), - [anon_sym_U_SQUOTE] = ACTIONS(4154), - [anon_sym_u8_SQUOTE] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(4154), - [anon_sym_u_DQUOTE] = ACTIONS(4154), - [anon_sym_U_DQUOTE] = ACTIONS(4154), - [anon_sym_u8_DQUOTE] = ACTIONS(4154), - [anon_sym_DQUOTE] = ACTIONS(4154), - [sym_true] = ACTIONS(4152), - [sym_false] = ACTIONS(4152), - [anon_sym_NULL] = ACTIONS(4152), - [anon_sym_nullptr] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_export] = ACTIONS(4152), - [anon_sym_module] = ACTIONS(4152), - [anon_sym_import] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_try] = ACTIONS(4152), - [anon_sym_delete] = ACTIONS(4152), - [anon_sym_throw] = ACTIONS(4152), - [anon_sym_namespace] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_concept] = ACTIONS(4152), - [anon_sym_co_return] = ACTIONS(4152), - [anon_sym_co_yield] = ACTIONS(4152), - [anon_sym_R_DQUOTE] = ACTIONS(4154), - [anon_sym_LR_DQUOTE] = ACTIONS(4154), - [anon_sym_uR_DQUOTE] = ACTIONS(4154), - [anon_sym_UR_DQUOTE] = ACTIONS(4154), - [anon_sym_u8R_DQUOTE] = ACTIONS(4154), - [anon_sym_co_await] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_requires] = ACTIONS(4152), - [anon_sym_CARET_CARET] = ACTIONS(4154), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), - [sym_this] = ACTIONS(4152), + [sym_identifier] = ACTIONS(4275), + [aux_sym_preproc_include_token1] = ACTIONS(4275), + [aux_sym_preproc_def_token1] = ACTIONS(4275), + [aux_sym_preproc_if_token1] = ACTIONS(4275), + [aux_sym_preproc_if_token2] = ACTIONS(4275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4275), + [sym_preproc_directive] = ACTIONS(4275), + [anon_sym_LPAREN2] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_TILDE] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_AMP] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_typedef] = ACTIONS(4275), + [anon_sym_virtual] = ACTIONS(4275), + [anon_sym_extern] = ACTIONS(4275), + [anon_sym___attribute__] = ACTIONS(4275), + [anon_sym___attribute] = ACTIONS(4275), + [anon_sym_using] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4278), + [anon_sym___declspec] = ACTIONS(4275), + [anon_sym___based] = ACTIONS(4275), + [anon_sym___cdecl] = ACTIONS(4275), + [anon_sym___clrcall] = ACTIONS(4275), + [anon_sym___stdcall] = ACTIONS(4275), + [anon_sym___fastcall] = ACTIONS(4275), + [anon_sym___thiscall] = ACTIONS(4275), + [anon_sym___vectorcall] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_signed] = ACTIONS(4275), + [anon_sym_unsigned] = ACTIONS(4275), + [anon_sym_long] = ACTIONS(4275), + [anon_sym_short] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4275), + [anon_sym_static] = ACTIONS(4275), + [anon_sym_register] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym___inline] = ACTIONS(4275), + [anon_sym___inline__] = ACTIONS(4275), + [anon_sym___forceinline] = ACTIONS(4275), + [anon_sym_thread_local] = ACTIONS(4275), + [anon_sym___thread] = ACTIONS(4275), + [anon_sym_const] = ACTIONS(4275), + [anon_sym_constexpr] = ACTIONS(4275), + [anon_sym_volatile] = ACTIONS(4275), + [anon_sym_restrict] = ACTIONS(4275), + [anon_sym___restrict__] = ACTIONS(4275), + [anon_sym__Atomic] = ACTIONS(4275), + [anon_sym__Noreturn] = ACTIONS(4275), + [anon_sym_noreturn] = ACTIONS(4275), + [anon_sym__Nonnull] = ACTIONS(4275), + [anon_sym_mutable] = ACTIONS(4275), + [anon_sym_constinit] = ACTIONS(4275), + [anon_sym_consteval] = ACTIONS(4275), + [anon_sym_alignas] = ACTIONS(4275), + [anon_sym__Alignas] = ACTIONS(4275), + [sym_primitive_type] = ACTIONS(4275), + [anon_sym_enum] = ACTIONS(4275), + [anon_sym_class] = ACTIONS(4275), + [anon_sym_struct] = ACTIONS(4275), + [anon_sym_union] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_switch] = ACTIONS(4275), + [anon_sym_case] = ACTIONS(4275), + [anon_sym_default] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_do] = ACTIONS(4275), + [anon_sym_for] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_goto] = ACTIONS(4275), + [anon_sym___try] = ACTIONS(4275), + [anon_sym___leave] = ACTIONS(4275), + [anon_sym_not] = ACTIONS(4275), + [anon_sym_compl] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_sizeof] = ACTIONS(4275), + [anon_sym___alignof__] = ACTIONS(4275), + [anon_sym___alignof] = ACTIONS(4275), + [anon_sym__alignof] = ACTIONS(4275), + [anon_sym_alignof] = ACTIONS(4275), + [anon_sym__Alignof] = ACTIONS(4275), + [anon_sym_offsetof] = ACTIONS(4275), + [anon_sym__Generic] = ACTIONS(4275), + [anon_sym_typename] = ACTIONS(4275), + [anon_sym_asm] = ACTIONS(4275), + [anon_sym___asm__] = ACTIONS(4275), + [anon_sym___asm] = ACTIONS(4275), + [sym_number_literal] = ACTIONS(4278), + [anon_sym_L_SQUOTE] = ACTIONS(4278), + [anon_sym_u_SQUOTE] = ACTIONS(4278), + [anon_sym_U_SQUOTE] = ACTIONS(4278), + [anon_sym_u8_SQUOTE] = ACTIONS(4278), + [anon_sym_SQUOTE] = ACTIONS(4278), + [anon_sym_L_DQUOTE] = ACTIONS(4278), + [anon_sym_u_DQUOTE] = ACTIONS(4278), + [anon_sym_U_DQUOTE] = ACTIONS(4278), + [anon_sym_u8_DQUOTE] = ACTIONS(4278), + [anon_sym_DQUOTE] = ACTIONS(4278), + [sym_true] = ACTIONS(4275), + [sym_false] = ACTIONS(4275), + [anon_sym_NULL] = ACTIONS(4275), + [anon_sym_nullptr] = ACTIONS(4275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4275), + [anon_sym_decltype] = ACTIONS(4275), + [anon_sym_explicit] = ACTIONS(4275), + [anon_sym_export] = ACTIONS(4275), + [anon_sym_module] = ACTIONS(4275), + [anon_sym_import] = ACTIONS(4275), + [anon_sym_template] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_delete] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_namespace] = ACTIONS(4275), + [anon_sym_static_assert] = ACTIONS(4275), + [anon_sym_concept] = ACTIONS(4275), + [anon_sym_co_return] = ACTIONS(4275), + [anon_sym_co_yield] = ACTIONS(4275), + [anon_sym_R_DQUOTE] = ACTIONS(4278), + [anon_sym_LR_DQUOTE] = ACTIONS(4278), + [anon_sym_uR_DQUOTE] = ACTIONS(4278), + [anon_sym_UR_DQUOTE] = ACTIONS(4278), + [anon_sym_u8R_DQUOTE] = ACTIONS(4278), + [anon_sym_co_await] = ACTIONS(4275), + [anon_sym_new] = ACTIONS(4275), + [anon_sym_requires] = ACTIONS(4275), + [anon_sym_CARET_CARET] = ACTIONS(4278), + [anon_sym_LBRACK_COLON] = ACTIONS(4278), + [sym_this] = ACTIONS(4275), }, [STATE(726)] = { - [sym_identifier] = ACTIONS(3604), - [aux_sym_preproc_include_token1] = ACTIONS(3604), - [aux_sym_preproc_def_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), - [sym_preproc_directive] = ACTIONS(3604), - [anon_sym_LPAREN2] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(3604), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym___extension__] = ACTIONS(3604), - [anon_sym_typedef] = ACTIONS(3604), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_extern] = ACTIONS(3604), - [anon_sym___attribute__] = ACTIONS(3604), - [anon_sym___attribute] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_COLON_COLON] = ACTIONS(3606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), - [anon_sym___declspec] = ACTIONS(3604), - [anon_sym___based] = ACTIONS(3604), - [anon_sym___cdecl] = ACTIONS(3604), - [anon_sym___clrcall] = ACTIONS(3604), - [anon_sym___stdcall] = ACTIONS(3604), - [anon_sym___fastcall] = ACTIONS(3604), - [anon_sym___thiscall] = ACTIONS(3604), - [anon_sym___vectorcall] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_RBRACE] = ACTIONS(3606), - [anon_sym_signed] = ACTIONS(3604), - [anon_sym_unsigned] = ACTIONS(3604), - [anon_sym_long] = ACTIONS(3604), - [anon_sym_short] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_register] = ACTIONS(3604), - [anon_sym_inline] = ACTIONS(3604), - [anon_sym___inline] = ACTIONS(3604), - [anon_sym___inline__] = ACTIONS(3604), - [anon_sym___forceinline] = ACTIONS(3604), - [anon_sym_thread_local] = ACTIONS(3604), - [anon_sym___thread] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_constexpr] = ACTIONS(3604), - [anon_sym_volatile] = ACTIONS(3604), - [anon_sym_restrict] = ACTIONS(3604), - [anon_sym___restrict__] = ACTIONS(3604), - [anon_sym__Atomic] = ACTIONS(3604), - [anon_sym__Noreturn] = ACTIONS(3604), - [anon_sym_noreturn] = ACTIONS(3604), - [anon_sym__Nonnull] = ACTIONS(3604), - [anon_sym_mutable] = ACTIONS(3604), - [anon_sym_constinit] = ACTIONS(3604), - [anon_sym_consteval] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3604), - [anon_sym__Alignas] = ACTIONS(3604), - [sym_primitive_type] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_union] = ACTIONS(3604), - [anon_sym_if] = ACTIONS(3604), - [anon_sym_else] = ACTIONS(3604), - [anon_sym_switch] = ACTIONS(3604), - [anon_sym_case] = ACTIONS(3604), - [anon_sym_default] = ACTIONS(3604), - [anon_sym_while] = ACTIONS(3604), - [anon_sym_do] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3604), - [anon_sym_return] = ACTIONS(3604), - [anon_sym_break] = ACTIONS(3604), - [anon_sym_continue] = ACTIONS(3604), - [anon_sym_goto] = ACTIONS(3604), - [anon_sym___try] = ACTIONS(3604), - [anon_sym___leave] = ACTIONS(3604), - [anon_sym_not] = ACTIONS(3604), - [anon_sym_compl] = ACTIONS(3604), - [anon_sym_DASH_DASH] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_sizeof] = ACTIONS(3604), - [anon_sym___alignof__] = ACTIONS(3604), - [anon_sym___alignof] = ACTIONS(3604), - [anon_sym__alignof] = ACTIONS(3604), - [anon_sym_alignof] = ACTIONS(3604), - [anon_sym__Alignof] = ACTIONS(3604), - [anon_sym_offsetof] = ACTIONS(3604), - [anon_sym__Generic] = ACTIONS(3604), - [anon_sym_typename] = ACTIONS(3604), - [anon_sym_asm] = ACTIONS(3604), - [anon_sym___asm__] = ACTIONS(3604), - [anon_sym___asm] = ACTIONS(3604), - [sym_number_literal] = ACTIONS(3606), - [anon_sym_L_SQUOTE] = ACTIONS(3606), - [anon_sym_u_SQUOTE] = ACTIONS(3606), - [anon_sym_U_SQUOTE] = ACTIONS(3606), - [anon_sym_u8_SQUOTE] = ACTIONS(3606), - [anon_sym_SQUOTE] = ACTIONS(3606), - [anon_sym_L_DQUOTE] = ACTIONS(3606), - [anon_sym_u_DQUOTE] = ACTIONS(3606), - [anon_sym_U_DQUOTE] = ACTIONS(3606), - [anon_sym_u8_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [sym_true] = ACTIONS(3604), - [sym_false] = ACTIONS(3604), - [anon_sym_NULL] = ACTIONS(3604), - [anon_sym_nullptr] = ACTIONS(3604), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3604), - [anon_sym_decltype] = ACTIONS(3604), - [anon_sym_explicit] = ACTIONS(3604), - [anon_sym_export] = ACTIONS(3604), - [anon_sym_import] = ACTIONS(3604), - [anon_sym_template] = ACTIONS(3604), - [anon_sym_operator] = ACTIONS(3604), - [anon_sym_try] = ACTIONS(3604), - [anon_sym_delete] = ACTIONS(3604), - [anon_sym_throw] = ACTIONS(3604), - [anon_sym_namespace] = ACTIONS(3604), - [anon_sym_static_assert] = ACTIONS(3604), - [anon_sym_concept] = ACTIONS(3604), - [anon_sym_co_return] = ACTIONS(3604), - [anon_sym_co_yield] = ACTIONS(3604), - [anon_sym_R_DQUOTE] = ACTIONS(3606), - [anon_sym_LR_DQUOTE] = ACTIONS(3606), - [anon_sym_uR_DQUOTE] = ACTIONS(3606), - [anon_sym_UR_DQUOTE] = ACTIONS(3606), - [anon_sym_u8R_DQUOTE] = ACTIONS(3606), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3604), - [anon_sym_requires] = ACTIONS(3604), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(3606), - [sym_this] = ACTIONS(3604), + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_include_token1] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token2] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym___cdecl] = ACTIONS(4096), + [anon_sym___clrcall] = ACTIONS(4096), + [anon_sym___stdcall] = ACTIONS(4096), + [anon_sym___fastcall] = ACTIONS(4096), + [anon_sym___thiscall] = ACTIONS(4096), + [anon_sym___vectorcall] = ACTIONS(4096), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_case] = ACTIONS(4096), + [anon_sym_default] = ACTIONS(4096), + [anon_sym_while] = ACTIONS(4096), + [anon_sym_do] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_goto] = ACTIONS(4096), + [anon_sym___try] = ACTIONS(4096), + [anon_sym___leave] = ACTIONS(4096), + [anon_sym_not] = ACTIONS(4096), + [anon_sym_compl] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_sizeof] = ACTIONS(4096), + [anon_sym___alignof__] = ACTIONS(4096), + [anon_sym___alignof] = ACTIONS(4096), + [anon_sym__alignof] = ACTIONS(4096), + [anon_sym_alignof] = ACTIONS(4096), + [anon_sym__Alignof] = ACTIONS(4096), + [anon_sym_offsetof] = ACTIONS(4096), + [anon_sym__Generic] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [anon_sym_asm] = ACTIONS(4096), + [anon_sym___asm__] = ACTIONS(4096), + [anon_sym___asm] = ACTIONS(4096), + [sym_number_literal] = ACTIONS(4098), + [anon_sym_L_SQUOTE] = ACTIONS(4098), + [anon_sym_u_SQUOTE] = ACTIONS(4098), + [anon_sym_U_SQUOTE] = ACTIONS(4098), + [anon_sym_u8_SQUOTE] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_L_DQUOTE] = ACTIONS(4098), + [anon_sym_u_DQUOTE] = ACTIONS(4098), + [anon_sym_U_DQUOTE] = ACTIONS(4098), + [anon_sym_u8_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_true] = ACTIONS(4096), + [sym_false] = ACTIONS(4096), + [anon_sym_NULL] = ACTIONS(4096), + [anon_sym_nullptr] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_export] = ACTIONS(4096), + [anon_sym_module] = ACTIONS(4096), + [anon_sym_import] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_try] = ACTIONS(4096), + [anon_sym_delete] = ACTIONS(4096), + [anon_sym_throw] = ACTIONS(4096), + [anon_sym_namespace] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_concept] = ACTIONS(4096), + [anon_sym_co_return] = ACTIONS(4096), + [anon_sym_co_yield] = ACTIONS(4096), + [anon_sym_R_DQUOTE] = ACTIONS(4098), + [anon_sym_LR_DQUOTE] = ACTIONS(4098), + [anon_sym_uR_DQUOTE] = ACTIONS(4098), + [anon_sym_UR_DQUOTE] = ACTIONS(4098), + [anon_sym_u8R_DQUOTE] = ACTIONS(4098), + [anon_sym_co_await] = ACTIONS(4096), + [anon_sym_new] = ACTIONS(4096), + [anon_sym_requires] = ACTIONS(4096), + [anon_sym_CARET_CARET] = ACTIONS(4098), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_this] = ACTIONS(4096), }, [STATE(727)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_include_token1] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token2] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [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(4166), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = 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), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_switch] = ACTIONS(4164), - [anon_sym_case] = ACTIONS(4164), - [anon_sym_default] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_do] = ACTIONS(4164), - [anon_sym_for] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_goto] = ACTIONS(4164), - [anon_sym___try] = ACTIONS(4164), - [anon_sym___leave] = ACTIONS(4164), - [anon_sym_not] = ACTIONS(4164), - [anon_sym_compl] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_sizeof] = ACTIONS(4164), - [anon_sym___alignof__] = ACTIONS(4164), - [anon_sym___alignof] = ACTIONS(4164), - [anon_sym__alignof] = ACTIONS(4164), - [anon_sym_alignof] = ACTIONS(4164), - [anon_sym__Alignof] = ACTIONS(4164), - [anon_sym_offsetof] = ACTIONS(4164), - [anon_sym__Generic] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [anon_sym_asm] = ACTIONS(4164), - [anon_sym___asm__] = ACTIONS(4164), - [anon_sym___asm] = ACTIONS(4164), - [sym_number_literal] = ACTIONS(4166), - [anon_sym_L_SQUOTE] = ACTIONS(4166), - [anon_sym_u_SQUOTE] = ACTIONS(4166), - [anon_sym_U_SQUOTE] = ACTIONS(4166), - [anon_sym_u8_SQUOTE] = ACTIONS(4166), - [anon_sym_SQUOTE] = ACTIONS(4166), - [anon_sym_L_DQUOTE] = ACTIONS(4166), - [anon_sym_u_DQUOTE] = ACTIONS(4166), - [anon_sym_U_DQUOTE] = ACTIONS(4166), - [anon_sym_u8_DQUOTE] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [sym_true] = ACTIONS(4164), - [sym_false] = ACTIONS(4164), - [anon_sym_NULL] = ACTIONS(4164), - [anon_sym_nullptr] = ACTIONS(4164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_export] = ACTIONS(4164), - [anon_sym_module] = ACTIONS(4164), - [anon_sym_import] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_delete] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_namespace] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_concept] = ACTIONS(4164), - [anon_sym_co_return] = ACTIONS(4164), - [anon_sym_co_yield] = ACTIONS(4164), - [anon_sym_R_DQUOTE] = ACTIONS(4166), - [anon_sym_LR_DQUOTE] = ACTIONS(4166), - [anon_sym_uR_DQUOTE] = ACTIONS(4166), - [anon_sym_UR_DQUOTE] = ACTIONS(4166), - [anon_sym_u8R_DQUOTE] = ACTIONS(4166), - [anon_sym_co_await] = ACTIONS(4164), - [anon_sym_new] = ACTIONS(4164), - [anon_sym_requires] = ACTIONS(4164), - [anon_sym_CARET_CARET] = ACTIONS(4166), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), - [sym_this] = ACTIONS(4164), + [sym_identifier] = ACTIONS(4106), + [aux_sym_preproc_include_token1] = ACTIONS(4106), + [aux_sym_preproc_def_token1] = ACTIONS(4106), + [aux_sym_preproc_if_token1] = ACTIONS(4106), + [aux_sym_preproc_if_token2] = ACTIONS(4106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4106), + [sym_preproc_directive] = ACTIONS(4106), + [anon_sym_LPAREN2] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_TILDE] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym___extension__] = ACTIONS(4106), + [anon_sym_typedef] = ACTIONS(4106), + [anon_sym_virtual] = ACTIONS(4106), + [anon_sym_extern] = ACTIONS(4106), + [anon_sym___attribute__] = ACTIONS(4106), + [anon_sym___attribute] = ACTIONS(4106), + [anon_sym_using] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4108), + [anon_sym___declspec] = ACTIONS(4106), + [anon_sym___based] = ACTIONS(4106), + [anon_sym___cdecl] = ACTIONS(4106), + [anon_sym___clrcall] = ACTIONS(4106), + [anon_sym___stdcall] = ACTIONS(4106), + [anon_sym___fastcall] = ACTIONS(4106), + [anon_sym___thiscall] = ACTIONS(4106), + [anon_sym___vectorcall] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4106), + [anon_sym_unsigned] = ACTIONS(4106), + [anon_sym_long] = ACTIONS(4106), + [anon_sym_short] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_register] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym___inline] = ACTIONS(4106), + [anon_sym___inline__] = ACTIONS(4106), + [anon_sym___forceinline] = ACTIONS(4106), + [anon_sym_thread_local] = ACTIONS(4106), + [anon_sym___thread] = ACTIONS(4106), + [anon_sym_const] = ACTIONS(4106), + [anon_sym_constexpr] = ACTIONS(4106), + [anon_sym_volatile] = ACTIONS(4106), + [anon_sym_restrict] = ACTIONS(4106), + [anon_sym___restrict__] = ACTIONS(4106), + [anon_sym__Atomic] = ACTIONS(4106), + [anon_sym__Noreturn] = ACTIONS(4106), + [anon_sym_noreturn] = ACTIONS(4106), + [anon_sym__Nonnull] = ACTIONS(4106), + [anon_sym_mutable] = ACTIONS(4106), + [anon_sym_constinit] = ACTIONS(4106), + [anon_sym_consteval] = ACTIONS(4106), + [anon_sym_alignas] = ACTIONS(4106), + [anon_sym__Alignas] = ACTIONS(4106), + [sym_primitive_type] = ACTIONS(4106), + [anon_sym_enum] = ACTIONS(4106), + [anon_sym_class] = ACTIONS(4106), + [anon_sym_struct] = ACTIONS(4106), + [anon_sym_union] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_switch] = ACTIONS(4106), + [anon_sym_case] = ACTIONS(4106), + [anon_sym_default] = ACTIONS(4106), + [anon_sym_while] = ACTIONS(4106), + [anon_sym_do] = ACTIONS(4106), + [anon_sym_for] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_goto] = ACTIONS(4106), + [anon_sym___try] = ACTIONS(4106), + [anon_sym___leave] = ACTIONS(4106), + [anon_sym_not] = ACTIONS(4106), + [anon_sym_compl] = ACTIONS(4106), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_sizeof] = ACTIONS(4106), + [anon_sym___alignof__] = ACTIONS(4106), + [anon_sym___alignof] = ACTIONS(4106), + [anon_sym__alignof] = ACTIONS(4106), + [anon_sym_alignof] = ACTIONS(4106), + [anon_sym__Alignof] = ACTIONS(4106), + [anon_sym_offsetof] = ACTIONS(4106), + [anon_sym__Generic] = ACTIONS(4106), + [anon_sym_typename] = ACTIONS(4106), + [anon_sym_asm] = ACTIONS(4106), + [anon_sym___asm__] = ACTIONS(4106), + [anon_sym___asm] = ACTIONS(4106), + [sym_number_literal] = ACTIONS(4108), + [anon_sym_L_SQUOTE] = ACTIONS(4108), + [anon_sym_u_SQUOTE] = ACTIONS(4108), + [anon_sym_U_SQUOTE] = ACTIONS(4108), + [anon_sym_u8_SQUOTE] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4108), + [anon_sym_L_DQUOTE] = ACTIONS(4108), + [anon_sym_u_DQUOTE] = ACTIONS(4108), + [anon_sym_U_DQUOTE] = ACTIONS(4108), + [anon_sym_u8_DQUOTE] = ACTIONS(4108), + [anon_sym_DQUOTE] = ACTIONS(4108), + [sym_true] = ACTIONS(4106), + [sym_false] = ACTIONS(4106), + [anon_sym_NULL] = ACTIONS(4106), + [anon_sym_nullptr] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4106), + [anon_sym_decltype] = ACTIONS(4106), + [anon_sym_explicit] = ACTIONS(4106), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_module] = ACTIONS(4106), + [anon_sym_import] = ACTIONS(4106), + [anon_sym_template] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4106), + [anon_sym_delete] = ACTIONS(4106), + [anon_sym_throw] = ACTIONS(4106), + [anon_sym_namespace] = ACTIONS(4106), + [anon_sym_static_assert] = ACTIONS(4106), + [anon_sym_concept] = ACTIONS(4106), + [anon_sym_co_return] = ACTIONS(4106), + [anon_sym_co_yield] = ACTIONS(4106), + [anon_sym_R_DQUOTE] = ACTIONS(4108), + [anon_sym_LR_DQUOTE] = ACTIONS(4108), + [anon_sym_uR_DQUOTE] = ACTIONS(4108), + [anon_sym_UR_DQUOTE] = ACTIONS(4108), + [anon_sym_u8R_DQUOTE] = ACTIONS(4108), + [anon_sym_co_await] = ACTIONS(4106), + [anon_sym_new] = ACTIONS(4106), + [anon_sym_requires] = ACTIONS(4106), + [anon_sym_CARET_CARET] = ACTIONS(4108), + [anon_sym_LBRACK_COLON] = ACTIONS(4108), + [sym_this] = ACTIONS(4106), }, [STATE(728)] = { - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_include_token1] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token2] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_BANG] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym___cdecl] = ACTIONS(4168), - [anon_sym___clrcall] = ACTIONS(4168), - [anon_sym___stdcall] = ACTIONS(4168), - [anon_sym___fastcall] = ACTIONS(4168), - [anon_sym___thiscall] = ACTIONS(4168), - [anon_sym___vectorcall] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4170), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_if] = ACTIONS(4168), - [anon_sym_switch] = ACTIONS(4168), - [anon_sym_case] = ACTIONS(4168), - [anon_sym_default] = ACTIONS(4168), - [anon_sym_while] = ACTIONS(4168), - [anon_sym_do] = ACTIONS(4168), - [anon_sym_for] = ACTIONS(4168), - [anon_sym_return] = ACTIONS(4168), - [anon_sym_break] = ACTIONS(4168), - [anon_sym_continue] = ACTIONS(4168), - [anon_sym_goto] = ACTIONS(4168), - [anon_sym___try] = ACTIONS(4168), - [anon_sym___leave] = ACTIONS(4168), - [anon_sym_not] = ACTIONS(4168), - [anon_sym_compl] = ACTIONS(4168), - [anon_sym_DASH_DASH] = ACTIONS(4170), - [anon_sym_PLUS_PLUS] = ACTIONS(4170), - [anon_sym_sizeof] = ACTIONS(4168), - [anon_sym___alignof__] = ACTIONS(4168), - [anon_sym___alignof] = ACTIONS(4168), - [anon_sym__alignof] = ACTIONS(4168), - [anon_sym_alignof] = ACTIONS(4168), - [anon_sym__Alignof] = ACTIONS(4168), - [anon_sym_offsetof] = ACTIONS(4168), - [anon_sym__Generic] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), - [anon_sym_asm] = ACTIONS(4168), - [anon_sym___asm__] = ACTIONS(4168), - [anon_sym___asm] = ACTIONS(4168), - [sym_number_literal] = ACTIONS(4170), - [anon_sym_L_SQUOTE] = ACTIONS(4170), - [anon_sym_u_SQUOTE] = ACTIONS(4170), - [anon_sym_U_SQUOTE] = ACTIONS(4170), - [anon_sym_u8_SQUOTE] = ACTIONS(4170), - [anon_sym_SQUOTE] = ACTIONS(4170), - [anon_sym_L_DQUOTE] = ACTIONS(4170), - [anon_sym_u_DQUOTE] = ACTIONS(4170), - [anon_sym_U_DQUOTE] = ACTIONS(4170), - [anon_sym_u8_DQUOTE] = ACTIONS(4170), - [anon_sym_DQUOTE] = ACTIONS(4170), - [sym_true] = ACTIONS(4168), - [sym_false] = ACTIONS(4168), - [anon_sym_NULL] = ACTIONS(4168), - [anon_sym_nullptr] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_export] = ACTIONS(4168), - [anon_sym_module] = ACTIONS(4168), - [anon_sym_import] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_try] = ACTIONS(4168), - [anon_sym_delete] = ACTIONS(4168), - [anon_sym_throw] = ACTIONS(4168), - [anon_sym_namespace] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_concept] = ACTIONS(4168), - [anon_sym_co_return] = ACTIONS(4168), - [anon_sym_co_yield] = ACTIONS(4168), - [anon_sym_R_DQUOTE] = ACTIONS(4170), - [anon_sym_LR_DQUOTE] = ACTIONS(4170), - [anon_sym_uR_DQUOTE] = ACTIONS(4170), - [anon_sym_UR_DQUOTE] = ACTIONS(4170), - [anon_sym_u8R_DQUOTE] = ACTIONS(4170), - [anon_sym_co_await] = ACTIONS(4168), - [anon_sym_new] = ACTIONS(4168), - [anon_sym_requires] = ACTIONS(4168), - [anon_sym_CARET_CARET] = ACTIONS(4170), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), - [sym_this] = ACTIONS(4168), + [sym_identifier] = ACTIONS(4110), + [aux_sym_preproc_include_token1] = ACTIONS(4110), + [aux_sym_preproc_def_token1] = ACTIONS(4110), + [aux_sym_preproc_if_token1] = ACTIONS(4110), + [aux_sym_preproc_if_token2] = ACTIONS(4110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4110), + [sym_preproc_directive] = ACTIONS(4110), + [anon_sym_LPAREN2] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym___extension__] = ACTIONS(4110), + [anon_sym_typedef] = ACTIONS(4110), + [anon_sym_virtual] = ACTIONS(4110), + [anon_sym_extern] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4110), + [anon_sym___attribute] = ACTIONS(4110), + [anon_sym_using] = ACTIONS(4110), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4112), + [anon_sym___declspec] = ACTIONS(4110), + [anon_sym___based] = ACTIONS(4110), + [anon_sym___cdecl] = ACTIONS(4110), + [anon_sym___clrcall] = ACTIONS(4110), + [anon_sym___stdcall] = ACTIONS(4110), + [anon_sym___fastcall] = ACTIONS(4110), + [anon_sym___thiscall] = ACTIONS(4110), + [anon_sym___vectorcall] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_signed] = ACTIONS(4110), + [anon_sym_unsigned] = ACTIONS(4110), + [anon_sym_long] = ACTIONS(4110), + [anon_sym_short] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_static] = ACTIONS(4110), + [anon_sym_register] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym___inline] = ACTIONS(4110), + [anon_sym___inline__] = ACTIONS(4110), + [anon_sym___forceinline] = ACTIONS(4110), + [anon_sym_thread_local] = ACTIONS(4110), + [anon_sym___thread] = ACTIONS(4110), + [anon_sym_const] = ACTIONS(4110), + [anon_sym_constexpr] = ACTIONS(4110), + [anon_sym_volatile] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4110), + [anon_sym___restrict__] = ACTIONS(4110), + [anon_sym__Atomic] = ACTIONS(4110), + [anon_sym__Noreturn] = ACTIONS(4110), + [anon_sym_noreturn] = ACTIONS(4110), + [anon_sym__Nonnull] = ACTIONS(4110), + [anon_sym_mutable] = ACTIONS(4110), + [anon_sym_constinit] = ACTIONS(4110), + [anon_sym_consteval] = ACTIONS(4110), + [anon_sym_alignas] = ACTIONS(4110), + [anon_sym__Alignas] = ACTIONS(4110), + [sym_primitive_type] = ACTIONS(4110), + [anon_sym_enum] = ACTIONS(4110), + [anon_sym_class] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4110), + [anon_sym_if] = ACTIONS(4110), + [anon_sym_switch] = ACTIONS(4110), + [anon_sym_case] = ACTIONS(4110), + [anon_sym_default] = ACTIONS(4110), + [anon_sym_while] = ACTIONS(4110), + [anon_sym_do] = ACTIONS(4110), + [anon_sym_for] = ACTIONS(4110), + [anon_sym_return] = ACTIONS(4110), + [anon_sym_break] = ACTIONS(4110), + [anon_sym_continue] = ACTIONS(4110), + [anon_sym_goto] = ACTIONS(4110), + [anon_sym___try] = ACTIONS(4110), + [anon_sym___leave] = ACTIONS(4110), + [anon_sym_not] = ACTIONS(4110), + [anon_sym_compl] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_sizeof] = ACTIONS(4110), + [anon_sym___alignof__] = ACTIONS(4110), + [anon_sym___alignof] = ACTIONS(4110), + [anon_sym__alignof] = ACTIONS(4110), + [anon_sym_alignof] = ACTIONS(4110), + [anon_sym__Alignof] = ACTIONS(4110), + [anon_sym_offsetof] = ACTIONS(4110), + [anon_sym__Generic] = ACTIONS(4110), + [anon_sym_typename] = ACTIONS(4110), + [anon_sym_asm] = ACTIONS(4110), + [anon_sym___asm__] = ACTIONS(4110), + [anon_sym___asm] = ACTIONS(4110), + [sym_number_literal] = ACTIONS(4112), + [anon_sym_L_SQUOTE] = ACTIONS(4112), + [anon_sym_u_SQUOTE] = ACTIONS(4112), + [anon_sym_U_SQUOTE] = ACTIONS(4112), + [anon_sym_u8_SQUOTE] = ACTIONS(4112), + [anon_sym_SQUOTE] = ACTIONS(4112), + [anon_sym_L_DQUOTE] = ACTIONS(4112), + [anon_sym_u_DQUOTE] = ACTIONS(4112), + [anon_sym_U_DQUOTE] = ACTIONS(4112), + [anon_sym_u8_DQUOTE] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4112), + [sym_true] = ACTIONS(4110), + [sym_false] = ACTIONS(4110), + [anon_sym_NULL] = ACTIONS(4110), + [anon_sym_nullptr] = ACTIONS(4110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4110), + [anon_sym_decltype] = ACTIONS(4110), + [anon_sym_explicit] = ACTIONS(4110), + [anon_sym_export] = ACTIONS(4110), + [anon_sym_module] = ACTIONS(4110), + [anon_sym_import] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(4110), + [anon_sym_operator] = ACTIONS(4110), + [anon_sym_try] = ACTIONS(4110), + [anon_sym_delete] = ACTIONS(4110), + [anon_sym_throw] = ACTIONS(4110), + [anon_sym_namespace] = ACTIONS(4110), + [anon_sym_static_assert] = ACTIONS(4110), + [anon_sym_concept] = ACTIONS(4110), + [anon_sym_co_return] = ACTIONS(4110), + [anon_sym_co_yield] = ACTIONS(4110), + [anon_sym_R_DQUOTE] = ACTIONS(4112), + [anon_sym_LR_DQUOTE] = ACTIONS(4112), + [anon_sym_uR_DQUOTE] = ACTIONS(4112), + [anon_sym_UR_DQUOTE] = ACTIONS(4112), + [anon_sym_u8R_DQUOTE] = ACTIONS(4112), + [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_new] = ACTIONS(4110), + [anon_sym_requires] = ACTIONS(4110), + [anon_sym_CARET_CARET] = ACTIONS(4112), + [anon_sym_LBRACK_COLON] = ACTIONS(4112), + [sym_this] = ACTIONS(4110), }, [STATE(729)] = { - [sym_identifier] = ACTIONS(4172), - [aux_sym_preproc_include_token1] = ACTIONS(4172), - [aux_sym_preproc_def_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token2] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), - [sym_preproc_directive] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_BANG] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4172), - [anon_sym_typedef] = ACTIONS(4172), - [anon_sym_virtual] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(4172), - [anon_sym___attribute] = ACTIONS(4172), - [anon_sym_using] = ACTIONS(4172), - [anon_sym_COLON_COLON] = ACTIONS(4174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), - [anon_sym___declspec] = ACTIONS(4172), - [anon_sym___based] = ACTIONS(4172), - [anon_sym___cdecl] = ACTIONS(4172), - [anon_sym___clrcall] = ACTIONS(4172), - [anon_sym___stdcall] = ACTIONS(4172), - [anon_sym___fastcall] = ACTIONS(4172), - [anon_sym___thiscall] = ACTIONS(4172), - [anon_sym___vectorcall] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4174), - [anon_sym_signed] = ACTIONS(4172), - [anon_sym_unsigned] = ACTIONS(4172), - [anon_sym_long] = ACTIONS(4172), - [anon_sym_short] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_static] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_inline] = ACTIONS(4172), - [anon_sym___inline] = ACTIONS(4172), - [anon_sym___inline__] = ACTIONS(4172), - [anon_sym___forceinline] = ACTIONS(4172), - [anon_sym_thread_local] = ACTIONS(4172), - [anon_sym___thread] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [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), - [sym_primitive_type] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_class] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4172), - [anon_sym_default] = ACTIONS(4172), - [anon_sym_while] = ACTIONS(4172), - [anon_sym_do] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_goto] = ACTIONS(4172), - [anon_sym___try] = ACTIONS(4172), - [anon_sym___leave] = ACTIONS(4172), - [anon_sym_not] = ACTIONS(4172), - [anon_sym_compl] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4174), - [anon_sym_PLUS_PLUS] = ACTIONS(4174), - [anon_sym_sizeof] = ACTIONS(4172), - [anon_sym___alignof__] = ACTIONS(4172), - [anon_sym___alignof] = ACTIONS(4172), - [anon_sym__alignof] = ACTIONS(4172), - [anon_sym_alignof] = ACTIONS(4172), - [anon_sym__Alignof] = ACTIONS(4172), - [anon_sym_offsetof] = ACTIONS(4172), - [anon_sym__Generic] = ACTIONS(4172), - [anon_sym_typename] = ACTIONS(4172), - [anon_sym_asm] = ACTIONS(4172), - [anon_sym___asm__] = ACTIONS(4172), - [anon_sym___asm] = ACTIONS(4172), - [sym_number_literal] = ACTIONS(4174), - [anon_sym_L_SQUOTE] = ACTIONS(4174), - [anon_sym_u_SQUOTE] = ACTIONS(4174), - [anon_sym_U_SQUOTE] = ACTIONS(4174), - [anon_sym_u8_SQUOTE] = ACTIONS(4174), - [anon_sym_SQUOTE] = ACTIONS(4174), - [anon_sym_L_DQUOTE] = ACTIONS(4174), - [anon_sym_u_DQUOTE] = ACTIONS(4174), - [anon_sym_U_DQUOTE] = ACTIONS(4174), - [anon_sym_u8_DQUOTE] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [anon_sym_NULL] = ACTIONS(4172), - [anon_sym_nullptr] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4172), - [anon_sym_decltype] = ACTIONS(4172), - [anon_sym_explicit] = ACTIONS(4172), - [anon_sym_export] = ACTIONS(4172), - [anon_sym_module] = ACTIONS(4172), - [anon_sym_import] = ACTIONS(4172), - [anon_sym_template] = ACTIONS(4172), - [anon_sym_operator] = ACTIONS(4172), - [anon_sym_try] = ACTIONS(4172), - [anon_sym_delete] = ACTIONS(4172), - [anon_sym_throw] = ACTIONS(4172), - [anon_sym_namespace] = ACTIONS(4172), - [anon_sym_static_assert] = ACTIONS(4172), - [anon_sym_concept] = ACTIONS(4172), - [anon_sym_co_return] = ACTIONS(4172), - [anon_sym_co_yield] = ACTIONS(4172), - [anon_sym_R_DQUOTE] = ACTIONS(4174), - [anon_sym_LR_DQUOTE] = ACTIONS(4174), - [anon_sym_uR_DQUOTE] = ACTIONS(4174), - [anon_sym_UR_DQUOTE] = ACTIONS(4174), - [anon_sym_u8R_DQUOTE] = ACTIONS(4174), - [anon_sym_co_await] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_requires] = ACTIONS(4172), - [anon_sym_CARET_CARET] = ACTIONS(4174), - [anon_sym_LBRACK_COLON] = ACTIONS(4174), - [sym_this] = ACTIONS(4172), + [sym_identifier] = ACTIONS(4313), + [aux_sym_preproc_include_token1] = ACTIONS(4313), + [aux_sym_preproc_def_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token2] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), + [sym_preproc_directive] = ACTIONS(4313), + [anon_sym_LPAREN2] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4315), + [anon_sym_TILDE] = ACTIONS(4315), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym___extension__] = ACTIONS(4313), + [anon_sym_typedef] = ACTIONS(4313), + [anon_sym_virtual] = ACTIONS(4313), + [anon_sym_extern] = ACTIONS(4313), + [anon_sym___attribute__] = ACTIONS(4313), + [anon_sym___attribute] = ACTIONS(4313), + [anon_sym_using] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4315), + [anon_sym___declspec] = ACTIONS(4313), + [anon_sym___based] = ACTIONS(4313), + [anon_sym___cdecl] = ACTIONS(4313), + [anon_sym___clrcall] = ACTIONS(4313), + [anon_sym___stdcall] = ACTIONS(4313), + [anon_sym___fastcall] = ACTIONS(4313), + [anon_sym___thiscall] = ACTIONS(4313), + [anon_sym___vectorcall] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_signed] = ACTIONS(4313), + [anon_sym_unsigned] = ACTIONS(4313), + [anon_sym_long] = ACTIONS(4313), + [anon_sym_short] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_static] = ACTIONS(4313), + [anon_sym_register] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym___inline] = ACTIONS(4313), + [anon_sym___inline__] = ACTIONS(4313), + [anon_sym___forceinline] = ACTIONS(4313), + [anon_sym_thread_local] = ACTIONS(4313), + [anon_sym___thread] = ACTIONS(4313), + [anon_sym_const] = ACTIONS(4313), + [anon_sym_constexpr] = ACTIONS(4313), + [anon_sym_volatile] = ACTIONS(4313), + [anon_sym_restrict] = ACTIONS(4313), + [anon_sym___restrict__] = ACTIONS(4313), + [anon_sym__Atomic] = ACTIONS(4313), + [anon_sym__Noreturn] = ACTIONS(4313), + [anon_sym_noreturn] = ACTIONS(4313), + [anon_sym__Nonnull] = ACTIONS(4313), + [anon_sym_mutable] = ACTIONS(4313), + [anon_sym_constinit] = ACTIONS(4313), + [anon_sym_consteval] = ACTIONS(4313), + [anon_sym_alignas] = ACTIONS(4313), + [anon_sym__Alignas] = ACTIONS(4313), + [sym_primitive_type] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_struct] = ACTIONS(4313), + [anon_sym_union] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_switch] = ACTIONS(4313), + [anon_sym_case] = ACTIONS(4313), + [anon_sym_default] = ACTIONS(4313), + [anon_sym_while] = ACTIONS(4313), + [anon_sym_do] = ACTIONS(4313), + [anon_sym_for] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_goto] = ACTIONS(4313), + [anon_sym___try] = ACTIONS(4313), + [anon_sym___leave] = ACTIONS(4313), + [anon_sym_not] = ACTIONS(4313), + [anon_sym_compl] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_sizeof] = ACTIONS(4313), + [anon_sym___alignof__] = ACTIONS(4313), + [anon_sym___alignof] = ACTIONS(4313), + [anon_sym__alignof] = ACTIONS(4313), + [anon_sym_alignof] = ACTIONS(4313), + [anon_sym__Alignof] = ACTIONS(4313), + [anon_sym_offsetof] = ACTIONS(4313), + [anon_sym__Generic] = ACTIONS(4313), + [anon_sym_typename] = ACTIONS(4313), + [anon_sym_asm] = ACTIONS(4313), + [anon_sym___asm__] = ACTIONS(4313), + [anon_sym___asm] = ACTIONS(4313), + [sym_number_literal] = ACTIONS(4315), + [anon_sym_L_SQUOTE] = ACTIONS(4315), + [anon_sym_u_SQUOTE] = ACTIONS(4315), + [anon_sym_U_SQUOTE] = ACTIONS(4315), + [anon_sym_u8_SQUOTE] = ACTIONS(4315), + [anon_sym_SQUOTE] = ACTIONS(4315), + [anon_sym_L_DQUOTE] = ACTIONS(4315), + [anon_sym_u_DQUOTE] = ACTIONS(4315), + [anon_sym_U_DQUOTE] = ACTIONS(4315), + [anon_sym_u8_DQUOTE] = ACTIONS(4315), + [anon_sym_DQUOTE] = ACTIONS(4315), + [sym_true] = ACTIONS(4313), + [sym_false] = ACTIONS(4313), + [anon_sym_NULL] = ACTIONS(4313), + [anon_sym_nullptr] = ACTIONS(4313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4313), + [anon_sym_decltype] = ACTIONS(4313), + [anon_sym_explicit] = ACTIONS(4313), + [anon_sym_export] = ACTIONS(4313), + [anon_sym_module] = ACTIONS(4313), + [anon_sym_import] = ACTIONS(4313), + [anon_sym_template] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_delete] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_namespace] = ACTIONS(4313), + [anon_sym_static_assert] = ACTIONS(4313), + [anon_sym_concept] = ACTIONS(4313), + [anon_sym_co_return] = ACTIONS(4313), + [anon_sym_co_yield] = ACTIONS(4313), + [anon_sym_R_DQUOTE] = ACTIONS(4315), + [anon_sym_LR_DQUOTE] = ACTIONS(4315), + [anon_sym_uR_DQUOTE] = ACTIONS(4315), + [anon_sym_UR_DQUOTE] = ACTIONS(4315), + [anon_sym_u8R_DQUOTE] = ACTIONS(4315), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4313), + [anon_sym_requires] = ACTIONS(4313), + [anon_sym_CARET_CARET] = ACTIONS(4315), + [anon_sym_LBRACK_COLON] = ACTIONS(4315), + [sym_this] = ACTIONS(4313), }, [STATE(730)] = { - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_include_token1] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token2] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_BANG] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_PLUS] = ACTIONS(4176), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym___cdecl] = ACTIONS(4176), - [anon_sym___clrcall] = ACTIONS(4176), - [anon_sym___stdcall] = ACTIONS(4176), - [anon_sym___fastcall] = ACTIONS(4176), - [anon_sym___thiscall] = ACTIONS(4176), - [anon_sym___vectorcall] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4178), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_if] = ACTIONS(4176), - [anon_sym_switch] = ACTIONS(4176), - [anon_sym_case] = ACTIONS(4176), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4176), - [anon_sym_do] = ACTIONS(4176), - [anon_sym_for] = ACTIONS(4176), - [anon_sym_return] = ACTIONS(4176), - [anon_sym_break] = ACTIONS(4176), - [anon_sym_continue] = ACTIONS(4176), - [anon_sym_goto] = ACTIONS(4176), - [anon_sym___try] = ACTIONS(4176), - [anon_sym___leave] = ACTIONS(4176), - [anon_sym_not] = ACTIONS(4176), - [anon_sym_compl] = ACTIONS(4176), - [anon_sym_DASH_DASH] = ACTIONS(4178), - [anon_sym_PLUS_PLUS] = ACTIONS(4178), - [anon_sym_sizeof] = ACTIONS(4176), - [anon_sym___alignof__] = ACTIONS(4176), - [anon_sym___alignof] = ACTIONS(4176), - [anon_sym__alignof] = ACTIONS(4176), - [anon_sym_alignof] = ACTIONS(4176), - [anon_sym__Alignof] = ACTIONS(4176), - [anon_sym_offsetof] = ACTIONS(4176), - [anon_sym__Generic] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [anon_sym_asm] = ACTIONS(4176), - [anon_sym___asm__] = ACTIONS(4176), - [anon_sym___asm] = ACTIONS(4176), - [sym_number_literal] = ACTIONS(4178), - [anon_sym_L_SQUOTE] = ACTIONS(4178), - [anon_sym_u_SQUOTE] = ACTIONS(4178), - [anon_sym_U_SQUOTE] = ACTIONS(4178), - [anon_sym_u8_SQUOTE] = ACTIONS(4178), - [anon_sym_SQUOTE] = ACTIONS(4178), - [anon_sym_L_DQUOTE] = ACTIONS(4178), - [anon_sym_u_DQUOTE] = ACTIONS(4178), - [anon_sym_U_DQUOTE] = ACTIONS(4178), - [anon_sym_u8_DQUOTE] = ACTIONS(4178), - [anon_sym_DQUOTE] = ACTIONS(4178), - [sym_true] = ACTIONS(4176), - [sym_false] = ACTIONS(4176), - [anon_sym_NULL] = ACTIONS(4176), - [anon_sym_nullptr] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_export] = ACTIONS(4176), - [anon_sym_module] = ACTIONS(4176), - [anon_sym_import] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_try] = ACTIONS(4176), - [anon_sym_delete] = ACTIONS(4176), - [anon_sym_throw] = ACTIONS(4176), - [anon_sym_namespace] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_concept] = ACTIONS(4176), - [anon_sym_co_return] = ACTIONS(4176), - [anon_sym_co_yield] = ACTIONS(4176), - [anon_sym_R_DQUOTE] = ACTIONS(4178), - [anon_sym_LR_DQUOTE] = ACTIONS(4178), - [anon_sym_uR_DQUOTE] = ACTIONS(4178), - [anon_sym_UR_DQUOTE] = ACTIONS(4178), - [anon_sym_u8R_DQUOTE] = ACTIONS(4178), - [anon_sym_co_await] = ACTIONS(4176), - [anon_sym_new] = ACTIONS(4176), - [anon_sym_requires] = ACTIONS(4176), - [anon_sym_CARET_CARET] = ACTIONS(4178), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - [sym_this] = ACTIONS(4176), + [sym_identifier] = ACTIONS(4114), + [aux_sym_preproc_include_token1] = ACTIONS(4114), + [aux_sym_preproc_def_token1] = ACTIONS(4114), + [aux_sym_preproc_if_token1] = ACTIONS(4114), + [aux_sym_preproc_if_token2] = ACTIONS(4114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4114), + [sym_preproc_directive] = ACTIONS(4114), + [anon_sym_LPAREN2] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4116), + [anon_sym_TILDE] = ACTIONS(4116), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym___extension__] = ACTIONS(4114), + [anon_sym_typedef] = ACTIONS(4114), + [anon_sym_virtual] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym___attribute__] = ACTIONS(4114), + [anon_sym___attribute] = ACTIONS(4114), + [anon_sym_using] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4116), + [anon_sym___declspec] = ACTIONS(4114), + [anon_sym___based] = ACTIONS(4114), + [anon_sym___cdecl] = ACTIONS(4114), + [anon_sym___clrcall] = ACTIONS(4114), + [anon_sym___stdcall] = ACTIONS(4114), + [anon_sym___fastcall] = ACTIONS(4114), + [anon_sym___thiscall] = ACTIONS(4114), + [anon_sym___vectorcall] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_signed] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [anon_sym_LBRACK] = ACTIONS(4114), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym___inline] = ACTIONS(4114), + [anon_sym___inline__] = ACTIONS(4114), + [anon_sym___forceinline] = ACTIONS(4114), + [anon_sym_thread_local] = ACTIONS(4114), + [anon_sym___thread] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym___restrict__] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym__Noreturn] = ACTIONS(4114), + [anon_sym_noreturn] = ACTIONS(4114), + [anon_sym__Nonnull] = ACTIONS(4114), + [anon_sym_mutable] = ACTIONS(4114), + [anon_sym_constinit] = ACTIONS(4114), + [anon_sym_consteval] = ACTIONS(4114), + [anon_sym_alignas] = ACTIONS(4114), + [anon_sym__Alignas] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_class] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_switch] = ACTIONS(4114), + [anon_sym_case] = ACTIONS(4114), + [anon_sym_default] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_do] = ACTIONS(4114), + [anon_sym_for] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_goto] = ACTIONS(4114), + [anon_sym___try] = ACTIONS(4114), + [anon_sym___leave] = ACTIONS(4114), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_compl] = ACTIONS(4114), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_sizeof] = ACTIONS(4114), + [anon_sym___alignof__] = ACTIONS(4114), + [anon_sym___alignof] = ACTIONS(4114), + [anon_sym__alignof] = ACTIONS(4114), + [anon_sym_alignof] = ACTIONS(4114), + [anon_sym__Alignof] = ACTIONS(4114), + [anon_sym_offsetof] = ACTIONS(4114), + [anon_sym__Generic] = ACTIONS(4114), + [anon_sym_typename] = ACTIONS(4114), + [anon_sym_asm] = ACTIONS(4114), + [anon_sym___asm__] = ACTIONS(4114), + [anon_sym___asm] = ACTIONS(4114), + [sym_number_literal] = ACTIONS(4116), + [anon_sym_L_SQUOTE] = ACTIONS(4116), + [anon_sym_u_SQUOTE] = ACTIONS(4116), + [anon_sym_U_SQUOTE] = ACTIONS(4116), + [anon_sym_u8_SQUOTE] = ACTIONS(4116), + [anon_sym_SQUOTE] = ACTIONS(4116), + [anon_sym_L_DQUOTE] = ACTIONS(4116), + [anon_sym_u_DQUOTE] = ACTIONS(4116), + [anon_sym_U_DQUOTE] = ACTIONS(4116), + [anon_sym_u8_DQUOTE] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(4116), + [sym_true] = ACTIONS(4114), + [sym_false] = ACTIONS(4114), + [anon_sym_NULL] = ACTIONS(4114), + [anon_sym_nullptr] = ACTIONS(4114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4114), + [anon_sym_decltype] = ACTIONS(4114), + [anon_sym_explicit] = ACTIONS(4114), + [anon_sym_export] = ACTIONS(4114), + [anon_sym_module] = ACTIONS(4114), + [anon_sym_import] = ACTIONS(4114), + [anon_sym_template] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_delete] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_namespace] = ACTIONS(4114), + [anon_sym_static_assert] = ACTIONS(4114), + [anon_sym_concept] = ACTIONS(4114), + [anon_sym_co_return] = ACTIONS(4114), + [anon_sym_co_yield] = ACTIONS(4114), + [anon_sym_R_DQUOTE] = ACTIONS(4116), + [anon_sym_LR_DQUOTE] = ACTIONS(4116), + [anon_sym_uR_DQUOTE] = ACTIONS(4116), + [anon_sym_UR_DQUOTE] = ACTIONS(4116), + [anon_sym_u8R_DQUOTE] = ACTIONS(4116), + [anon_sym_co_await] = ACTIONS(4114), + [anon_sym_new] = ACTIONS(4114), + [anon_sym_requires] = ACTIONS(4114), + [anon_sym_CARET_CARET] = ACTIONS(4116), + [anon_sym_LBRACK_COLON] = ACTIONS(4116), + [sym_this] = ACTIONS(4114), }, [STATE(731)] = { - [sym_identifier] = ACTIONS(4180), - [aux_sym_preproc_include_token1] = ACTIONS(4180), - [aux_sym_preproc_def_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token2] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), - [sym_preproc_directive] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(4182), - [anon_sym_BANG] = ACTIONS(4182), - [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_STAR] = ACTIONS(4182), - [anon_sym_AMP_AMP] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym___extension__] = ACTIONS(4180), - [anon_sym_typedef] = ACTIONS(4180), - [anon_sym_virtual] = ACTIONS(4180), - [anon_sym_extern] = ACTIONS(4180), - [anon_sym___attribute__] = ACTIONS(4180), - [anon_sym___attribute] = ACTIONS(4180), - [anon_sym_using] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), - [anon_sym___declspec] = ACTIONS(4180), - [anon_sym___based] = ACTIONS(4180), - [anon_sym___cdecl] = ACTIONS(4180), - [anon_sym___clrcall] = ACTIONS(4180), - [anon_sym___stdcall] = ACTIONS(4180), - [anon_sym___fastcall] = ACTIONS(4180), - [anon_sym___thiscall] = ACTIONS(4180), - [anon_sym___vectorcall] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(4182), - [anon_sym_signed] = ACTIONS(4180), - [anon_sym_unsigned] = ACTIONS(4180), - [anon_sym_long] = ACTIONS(4180), - [anon_sym_short] = ACTIONS(4180), - [anon_sym_LBRACK] = ACTIONS(4180), - [anon_sym_static] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4180), - [anon_sym_inline] = ACTIONS(4180), - [anon_sym___inline] = ACTIONS(4180), - [anon_sym___inline__] = ACTIONS(4180), - [anon_sym___forceinline] = ACTIONS(4180), - [anon_sym_thread_local] = ACTIONS(4180), - [anon_sym___thread] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_constexpr] = ACTIONS(4180), - [anon_sym_volatile] = ACTIONS(4180), - [anon_sym_restrict] = ACTIONS(4180), - [anon_sym___restrict__] = ACTIONS(4180), - [anon_sym__Atomic] = ACTIONS(4180), - [anon_sym__Noreturn] = ACTIONS(4180), - [anon_sym_noreturn] = ACTIONS(4180), - [anon_sym__Nonnull] = ACTIONS(4180), - [anon_sym_mutable] = ACTIONS(4180), - [anon_sym_constinit] = ACTIONS(4180), - [anon_sym_consteval] = ACTIONS(4180), - [anon_sym_alignas] = ACTIONS(4180), - [anon_sym__Alignas] = ACTIONS(4180), - [sym_primitive_type] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_class] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_if] = ACTIONS(4180), - [anon_sym_switch] = ACTIONS(4180), - [anon_sym_case] = ACTIONS(4180), - [anon_sym_default] = ACTIONS(4180), - [anon_sym_while] = ACTIONS(4180), - [anon_sym_do] = ACTIONS(4180), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(4180), - [anon_sym_break] = ACTIONS(4180), - [anon_sym_continue] = ACTIONS(4180), - [anon_sym_goto] = ACTIONS(4180), - [anon_sym___try] = ACTIONS(4180), - [anon_sym___leave] = ACTIONS(4180), - [anon_sym_not] = ACTIONS(4180), - [anon_sym_compl] = ACTIONS(4180), - [anon_sym_DASH_DASH] = ACTIONS(4182), - [anon_sym_PLUS_PLUS] = ACTIONS(4182), - [anon_sym_sizeof] = ACTIONS(4180), - [anon_sym___alignof__] = ACTIONS(4180), - [anon_sym___alignof] = ACTIONS(4180), - [anon_sym__alignof] = ACTIONS(4180), - [anon_sym_alignof] = ACTIONS(4180), - [anon_sym__Alignof] = ACTIONS(4180), - [anon_sym_offsetof] = ACTIONS(4180), - [anon_sym__Generic] = ACTIONS(4180), - [anon_sym_typename] = ACTIONS(4180), - [anon_sym_asm] = ACTIONS(4180), - [anon_sym___asm__] = ACTIONS(4180), - [anon_sym___asm] = ACTIONS(4180), - [sym_number_literal] = ACTIONS(4182), - [anon_sym_L_SQUOTE] = ACTIONS(4182), - [anon_sym_u_SQUOTE] = ACTIONS(4182), - [anon_sym_U_SQUOTE] = ACTIONS(4182), - [anon_sym_u8_SQUOTE] = ACTIONS(4182), - [anon_sym_SQUOTE] = ACTIONS(4182), - [anon_sym_L_DQUOTE] = ACTIONS(4182), - [anon_sym_u_DQUOTE] = ACTIONS(4182), - [anon_sym_U_DQUOTE] = ACTIONS(4182), - [anon_sym_u8_DQUOTE] = ACTIONS(4182), - [anon_sym_DQUOTE] = ACTIONS(4182), - [sym_true] = ACTIONS(4180), - [sym_false] = ACTIONS(4180), - [anon_sym_NULL] = ACTIONS(4180), - [anon_sym_nullptr] = ACTIONS(4180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4180), - [anon_sym_decltype] = ACTIONS(4180), - [anon_sym_explicit] = ACTIONS(4180), - [anon_sym_export] = ACTIONS(4180), - [anon_sym_module] = ACTIONS(4180), - [anon_sym_import] = ACTIONS(4180), - [anon_sym_template] = ACTIONS(4180), - [anon_sym_operator] = ACTIONS(4180), - [anon_sym_try] = ACTIONS(4180), - [anon_sym_delete] = ACTIONS(4180), - [anon_sym_throw] = ACTIONS(4180), - [anon_sym_namespace] = ACTIONS(4180), - [anon_sym_static_assert] = ACTIONS(4180), - [anon_sym_concept] = ACTIONS(4180), - [anon_sym_co_return] = ACTIONS(4180), - [anon_sym_co_yield] = ACTIONS(4180), - [anon_sym_R_DQUOTE] = ACTIONS(4182), - [anon_sym_LR_DQUOTE] = ACTIONS(4182), - [anon_sym_uR_DQUOTE] = ACTIONS(4182), - [anon_sym_UR_DQUOTE] = ACTIONS(4182), - [anon_sym_u8R_DQUOTE] = ACTIONS(4182), - [anon_sym_co_await] = ACTIONS(4180), - [anon_sym_new] = ACTIONS(4180), - [anon_sym_requires] = ACTIONS(4180), - [anon_sym_CARET_CARET] = ACTIONS(4182), - [anon_sym_LBRACK_COLON] = ACTIONS(4182), - [sym_this] = ACTIONS(4180), + [sym_identifier] = ACTIONS(3754), + [aux_sym_preproc_include_token1] = ACTIONS(3754), + [aux_sym_preproc_def_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token2] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3754), + [sym_preproc_directive] = ACTIONS(3754), + [anon_sym_LPAREN2] = ACTIONS(3756), + [anon_sym_BANG] = ACTIONS(3756), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_DASH] = ACTIONS(3754), + [anon_sym_PLUS] = ACTIONS(3754), + [anon_sym_STAR] = ACTIONS(3756), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(3756), + [anon_sym___extension__] = ACTIONS(3754), + [anon_sym_typedef] = ACTIONS(3754), + [anon_sym_virtual] = ACTIONS(3754), + [anon_sym_extern] = ACTIONS(3754), + [anon_sym___attribute__] = ACTIONS(3754), + [anon_sym___attribute] = ACTIONS(3754), + [anon_sym_using] = ACTIONS(3754), + [anon_sym_COLON_COLON] = ACTIONS(3756), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3756), + [anon_sym___declspec] = ACTIONS(3754), + [anon_sym___based] = ACTIONS(3754), + [anon_sym___cdecl] = ACTIONS(3754), + [anon_sym___clrcall] = ACTIONS(3754), + [anon_sym___stdcall] = ACTIONS(3754), + [anon_sym___fastcall] = ACTIONS(3754), + [anon_sym___thiscall] = ACTIONS(3754), + [anon_sym___vectorcall] = ACTIONS(3754), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_signed] = ACTIONS(3754), + [anon_sym_unsigned] = ACTIONS(3754), + [anon_sym_long] = ACTIONS(3754), + [anon_sym_short] = ACTIONS(3754), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_static] = ACTIONS(3754), + [anon_sym_register] = ACTIONS(3754), + [anon_sym_inline] = ACTIONS(3754), + [anon_sym___inline] = ACTIONS(3754), + [anon_sym___inline__] = ACTIONS(3754), + [anon_sym___forceinline] = ACTIONS(3754), + [anon_sym_thread_local] = ACTIONS(3754), + [anon_sym___thread] = ACTIONS(3754), + [anon_sym_const] = ACTIONS(3754), + [anon_sym_constexpr] = ACTIONS(3754), + [anon_sym_volatile] = ACTIONS(3754), + [anon_sym_restrict] = ACTIONS(3754), + [anon_sym___restrict__] = ACTIONS(3754), + [anon_sym__Atomic] = ACTIONS(3754), + [anon_sym__Noreturn] = ACTIONS(3754), + [anon_sym_noreturn] = ACTIONS(3754), + [anon_sym__Nonnull] = ACTIONS(3754), + [anon_sym_mutable] = ACTIONS(3754), + [anon_sym_constinit] = ACTIONS(3754), + [anon_sym_consteval] = ACTIONS(3754), + [anon_sym_alignas] = ACTIONS(3754), + [anon_sym__Alignas] = ACTIONS(3754), + [sym_primitive_type] = ACTIONS(3754), + [anon_sym_enum] = ACTIONS(3754), + [anon_sym_class] = ACTIONS(3754), + [anon_sym_struct] = ACTIONS(3754), + [anon_sym_union] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(3754), + [anon_sym_switch] = ACTIONS(3754), + [anon_sym_case] = ACTIONS(3754), + [anon_sym_default] = ACTIONS(3754), + [anon_sym_while] = ACTIONS(3754), + [anon_sym_do] = ACTIONS(3754), + [anon_sym_for] = ACTIONS(3754), + [anon_sym_return] = ACTIONS(3754), + [anon_sym_break] = ACTIONS(3754), + [anon_sym_continue] = ACTIONS(3754), + [anon_sym_goto] = ACTIONS(3754), + [anon_sym___try] = ACTIONS(3754), + [anon_sym___leave] = ACTIONS(3754), + [anon_sym_not] = ACTIONS(3754), + [anon_sym_compl] = ACTIONS(3754), + [anon_sym_DASH_DASH] = ACTIONS(3756), + [anon_sym_PLUS_PLUS] = ACTIONS(3756), + [anon_sym_sizeof] = ACTIONS(3754), + [anon_sym___alignof__] = ACTIONS(3754), + [anon_sym___alignof] = ACTIONS(3754), + [anon_sym__alignof] = ACTIONS(3754), + [anon_sym_alignof] = ACTIONS(3754), + [anon_sym__Alignof] = ACTIONS(3754), + [anon_sym_offsetof] = ACTIONS(3754), + [anon_sym__Generic] = ACTIONS(3754), + [anon_sym_typename] = ACTIONS(3754), + [anon_sym_asm] = ACTIONS(3754), + [anon_sym___asm__] = ACTIONS(3754), + [anon_sym___asm] = ACTIONS(3754), + [sym_number_literal] = ACTIONS(3756), + [anon_sym_L_SQUOTE] = ACTIONS(3756), + [anon_sym_u_SQUOTE] = ACTIONS(3756), + [anon_sym_U_SQUOTE] = ACTIONS(3756), + [anon_sym_u8_SQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3756), + [anon_sym_L_DQUOTE] = ACTIONS(3756), + [anon_sym_u_DQUOTE] = ACTIONS(3756), + [anon_sym_U_DQUOTE] = ACTIONS(3756), + [anon_sym_u8_DQUOTE] = ACTIONS(3756), + [anon_sym_DQUOTE] = ACTIONS(3756), + [sym_true] = ACTIONS(3754), + [sym_false] = ACTIONS(3754), + [anon_sym_NULL] = ACTIONS(3754), + [anon_sym_nullptr] = ACTIONS(3754), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3754), + [anon_sym_decltype] = ACTIONS(3754), + [anon_sym_explicit] = ACTIONS(3754), + [anon_sym_export] = ACTIONS(3754), + [anon_sym_module] = ACTIONS(3754), + [anon_sym_import] = ACTIONS(3754), + [anon_sym_template] = ACTIONS(3754), + [anon_sym_operator] = ACTIONS(3754), + [anon_sym_try] = ACTIONS(3754), + [anon_sym_delete] = ACTIONS(3754), + [anon_sym_throw] = ACTIONS(3754), + [anon_sym_namespace] = ACTIONS(3754), + [anon_sym_static_assert] = ACTIONS(3754), + [anon_sym_concept] = ACTIONS(3754), + [anon_sym_co_return] = ACTIONS(3754), + [anon_sym_co_yield] = ACTIONS(3754), + [anon_sym_R_DQUOTE] = ACTIONS(3756), + [anon_sym_LR_DQUOTE] = ACTIONS(3756), + [anon_sym_uR_DQUOTE] = ACTIONS(3756), + [anon_sym_UR_DQUOTE] = ACTIONS(3756), + [anon_sym_u8R_DQUOTE] = ACTIONS(3756), + [anon_sym_co_await] = ACTIONS(3754), + [anon_sym_new] = ACTIONS(3754), + [anon_sym_requires] = ACTIONS(3754), + [anon_sym_CARET_CARET] = ACTIONS(3756), + [anon_sym_LBRACK_COLON] = ACTIONS(3756), + [sym_this] = ACTIONS(3754), }, [STATE(732)] = { - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_include_token1] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token2] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym___cdecl] = ACTIONS(4184), - [anon_sym___clrcall] = ACTIONS(4184), - [anon_sym___stdcall] = ACTIONS(4184), - [anon_sym___fastcall] = ACTIONS(4184), - [anon_sym___thiscall] = ACTIONS(4184), - [anon_sym___vectorcall] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(4186), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_if] = ACTIONS(4184), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_case] = ACTIONS(4184), - [anon_sym_default] = ACTIONS(4184), - [anon_sym_while] = ACTIONS(4184), - [anon_sym_do] = ACTIONS(4184), - [anon_sym_for] = ACTIONS(4184), - [anon_sym_return] = ACTIONS(4184), - [anon_sym_break] = ACTIONS(4184), - [anon_sym_continue] = ACTIONS(4184), - [anon_sym_goto] = ACTIONS(4184), - [anon_sym___try] = ACTIONS(4184), - [anon_sym___leave] = ACTIONS(4184), - [anon_sym_not] = ACTIONS(4184), - [anon_sym_compl] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4186), - [anon_sym_sizeof] = ACTIONS(4184), - [anon_sym___alignof__] = ACTIONS(4184), - [anon_sym___alignof] = ACTIONS(4184), - [anon_sym__alignof] = ACTIONS(4184), - [anon_sym_alignof] = ACTIONS(4184), - [anon_sym__Alignof] = ACTIONS(4184), - [anon_sym_offsetof] = ACTIONS(4184), - [anon_sym__Generic] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [anon_sym_asm] = ACTIONS(4184), - [anon_sym___asm__] = ACTIONS(4184), - [anon_sym___asm] = ACTIONS(4184), - [sym_number_literal] = ACTIONS(4186), - [anon_sym_L_SQUOTE] = ACTIONS(4186), - [anon_sym_u_SQUOTE] = ACTIONS(4186), - [anon_sym_U_SQUOTE] = ACTIONS(4186), - [anon_sym_u8_SQUOTE] = ACTIONS(4186), - [anon_sym_SQUOTE] = ACTIONS(4186), - [anon_sym_L_DQUOTE] = ACTIONS(4186), - [anon_sym_u_DQUOTE] = ACTIONS(4186), - [anon_sym_U_DQUOTE] = ACTIONS(4186), - [anon_sym_u8_DQUOTE] = ACTIONS(4186), - [anon_sym_DQUOTE] = ACTIONS(4186), - [sym_true] = ACTIONS(4184), - [sym_false] = ACTIONS(4184), - [anon_sym_NULL] = ACTIONS(4184), - [anon_sym_nullptr] = ACTIONS(4184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_export] = ACTIONS(4184), - [anon_sym_module] = ACTIONS(4184), - [anon_sym_import] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_try] = ACTIONS(4184), - [anon_sym_delete] = ACTIONS(4184), - [anon_sym_throw] = ACTIONS(4184), - [anon_sym_namespace] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_concept] = ACTIONS(4184), - [anon_sym_co_return] = ACTIONS(4184), - [anon_sym_co_yield] = ACTIONS(4184), - [anon_sym_R_DQUOTE] = ACTIONS(4186), - [anon_sym_LR_DQUOTE] = ACTIONS(4186), - [anon_sym_uR_DQUOTE] = ACTIONS(4186), - [anon_sym_UR_DQUOTE] = ACTIONS(4186), - [anon_sym_u8R_DQUOTE] = ACTIONS(4186), - [anon_sym_co_await] = ACTIONS(4184), - [anon_sym_new] = ACTIONS(4184), - [anon_sym_requires] = ACTIONS(4184), - [anon_sym_CARET_CARET] = ACTIONS(4186), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), - [sym_this] = ACTIONS(4184), + [sym_identifier] = ACTIONS(3722), + [aux_sym_preproc_include_token1] = ACTIONS(3722), + [aux_sym_preproc_def_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token2] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3722), + [sym_preproc_directive] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_SEMI] = ACTIONS(3724), + [anon_sym___extension__] = ACTIONS(3722), + [anon_sym_typedef] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym___attribute] = ACTIONS(3722), + [anon_sym_using] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3724), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym___cdecl] = ACTIONS(3722), + [anon_sym___clrcall] = ACTIONS(3722), + [anon_sym___stdcall] = ACTIONS(3722), + [anon_sym___fastcall] = ACTIONS(3722), + [anon_sym___thiscall] = ACTIONS(3722), + [anon_sym___vectorcall] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_signed] = ACTIONS(3722), + [anon_sym_unsigned] = ACTIONS(3722), + [anon_sym_long] = ACTIONS(3722), + [anon_sym_short] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym___inline] = ACTIONS(3722), + [anon_sym___inline__] = ACTIONS(3722), + [anon_sym___forceinline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym___thread] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym___restrict__] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym__Noreturn] = ACTIONS(3722), + [anon_sym_noreturn] = ACTIONS(3722), + [anon_sym__Nonnull] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_alignas] = ACTIONS(3722), + [anon_sym__Alignas] = ACTIONS(3722), + [sym_primitive_type] = ACTIONS(3722), + [anon_sym_enum] = ACTIONS(3722), + [anon_sym_class] = ACTIONS(3722), + [anon_sym_struct] = ACTIONS(3722), + [anon_sym_union] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_switch] = ACTIONS(3722), + [anon_sym_case] = ACTIONS(3722), + [anon_sym_default] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_break] = ACTIONS(3722), + [anon_sym_continue] = ACTIONS(3722), + [anon_sym_goto] = ACTIONS(3722), + [anon_sym___try] = ACTIONS(3722), + [anon_sym___leave] = ACTIONS(3722), + [anon_sym_not] = ACTIONS(3722), + [anon_sym_compl] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3724), + [anon_sym_sizeof] = ACTIONS(3722), + [anon_sym___alignof__] = ACTIONS(3722), + [anon_sym___alignof] = ACTIONS(3722), + [anon_sym__alignof] = ACTIONS(3722), + [anon_sym_alignof] = ACTIONS(3722), + [anon_sym__Alignof] = ACTIONS(3722), + [anon_sym_offsetof] = ACTIONS(3722), + [anon_sym__Generic] = ACTIONS(3722), + [anon_sym_typename] = ACTIONS(3722), + [anon_sym_asm] = ACTIONS(3722), + [anon_sym___asm__] = ACTIONS(3722), + [anon_sym___asm] = ACTIONS(3722), + [sym_number_literal] = ACTIONS(3724), + [anon_sym_L_SQUOTE] = ACTIONS(3724), + [anon_sym_u_SQUOTE] = ACTIONS(3724), + [anon_sym_U_SQUOTE] = ACTIONS(3724), + [anon_sym_u8_SQUOTE] = ACTIONS(3724), + [anon_sym_SQUOTE] = ACTIONS(3724), + [anon_sym_L_DQUOTE] = ACTIONS(3724), + [anon_sym_u_DQUOTE] = ACTIONS(3724), + [anon_sym_U_DQUOTE] = ACTIONS(3724), + [anon_sym_u8_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE] = ACTIONS(3724), + [sym_true] = ACTIONS(3722), + [sym_false] = ACTIONS(3722), + [anon_sym_NULL] = ACTIONS(3722), + [anon_sym_nullptr] = ACTIONS(3722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_explicit] = ACTIONS(3722), + [anon_sym_export] = ACTIONS(3722), + [anon_sym_module] = ACTIONS(3722), + [anon_sym_import] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_delete] = ACTIONS(3722), + [anon_sym_throw] = ACTIONS(3722), + [anon_sym_namespace] = ACTIONS(3722), + [anon_sym_static_assert] = ACTIONS(3722), + [anon_sym_concept] = ACTIONS(3722), + [anon_sym_co_return] = ACTIONS(3722), + [anon_sym_co_yield] = ACTIONS(3722), + [anon_sym_R_DQUOTE] = ACTIONS(3724), + [anon_sym_LR_DQUOTE] = ACTIONS(3724), + [anon_sym_uR_DQUOTE] = ACTIONS(3724), + [anon_sym_UR_DQUOTE] = ACTIONS(3724), + [anon_sym_u8R_DQUOTE] = ACTIONS(3724), + [anon_sym_co_await] = ACTIONS(3722), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_requires] = ACTIONS(3722), + [anon_sym_CARET_CARET] = ACTIONS(3724), + [anon_sym_LBRACK_COLON] = ACTIONS(3724), + [sym_this] = ACTIONS(3722), }, [STATE(733)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3488), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym___try] = ACTIONS(3163), - [anon_sym___leave] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3163), - [anon_sym_compl] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = ACTIONS(3163), - [anon_sym___asm] = ACTIONS(3163), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [anon_sym_CARET_CARET] = ACTIONS(3161), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - [sym_this] = ACTIONS(3163), + [sym_identifier] = ACTIONS(4281), + [aux_sym_preproc_include_token1] = ACTIONS(4281), + [aux_sym_preproc_def_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token2] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4281), + [sym_preproc_directive] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym___extension__] = ACTIONS(4281), + [anon_sym_typedef] = ACTIONS(4281), + [anon_sym_virtual] = ACTIONS(4281), + [anon_sym_extern] = ACTIONS(4281), + [anon_sym___attribute__] = ACTIONS(4281), + [anon_sym___attribute] = ACTIONS(4281), + [anon_sym_using] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4283), + [anon_sym___declspec] = ACTIONS(4281), + [anon_sym___based] = ACTIONS(4281), + [anon_sym___cdecl] = ACTIONS(4281), + [anon_sym___clrcall] = ACTIONS(4281), + [anon_sym___stdcall] = ACTIONS(4281), + [anon_sym___fastcall] = ACTIONS(4281), + [anon_sym___thiscall] = ACTIONS(4281), + [anon_sym___vectorcall] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4283), + [anon_sym_signed] = ACTIONS(4281), + [anon_sym_unsigned] = ACTIONS(4281), + [anon_sym_long] = ACTIONS(4281), + [anon_sym_short] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_static] = ACTIONS(4281), + [anon_sym_register] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym___inline] = ACTIONS(4281), + [anon_sym___inline__] = ACTIONS(4281), + [anon_sym___forceinline] = ACTIONS(4281), + [anon_sym_thread_local] = ACTIONS(4281), + [anon_sym___thread] = ACTIONS(4281), + [anon_sym_const] = ACTIONS(4281), + [anon_sym_constexpr] = ACTIONS(4281), + [anon_sym_volatile] = ACTIONS(4281), + [anon_sym_restrict] = ACTIONS(4281), + [anon_sym___restrict__] = ACTIONS(4281), + [anon_sym__Atomic] = ACTIONS(4281), + [anon_sym__Noreturn] = ACTIONS(4281), + [anon_sym_noreturn] = ACTIONS(4281), + [anon_sym__Nonnull] = ACTIONS(4281), + [anon_sym_mutable] = ACTIONS(4281), + [anon_sym_constinit] = ACTIONS(4281), + [anon_sym_consteval] = ACTIONS(4281), + [anon_sym_alignas] = ACTIONS(4281), + [anon_sym__Alignas] = ACTIONS(4281), + [sym_primitive_type] = ACTIONS(4281), + [anon_sym_enum] = ACTIONS(4281), + [anon_sym_class] = ACTIONS(4281), + [anon_sym_struct] = ACTIONS(4281), + [anon_sym_union] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_switch] = ACTIONS(4281), + [anon_sym_case] = ACTIONS(4281), + [anon_sym_default] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_do] = ACTIONS(4281), + [anon_sym_for] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_goto] = ACTIONS(4281), + [anon_sym___try] = ACTIONS(4281), + [anon_sym___leave] = ACTIONS(4281), + [anon_sym_not] = ACTIONS(4281), + [anon_sym_compl] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_sizeof] = ACTIONS(4281), + [anon_sym___alignof__] = ACTIONS(4281), + [anon_sym___alignof] = ACTIONS(4281), + [anon_sym__alignof] = ACTIONS(4281), + [anon_sym_alignof] = ACTIONS(4281), + [anon_sym__Alignof] = ACTIONS(4281), + [anon_sym_offsetof] = ACTIONS(4281), + [anon_sym__Generic] = ACTIONS(4281), + [anon_sym_typename] = ACTIONS(4281), + [anon_sym_asm] = ACTIONS(4281), + [anon_sym___asm__] = ACTIONS(4281), + [anon_sym___asm] = ACTIONS(4281), + [sym_number_literal] = ACTIONS(4283), + [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(4283), + [anon_sym_u_DQUOTE] = ACTIONS(4283), + [anon_sym_U_DQUOTE] = ACTIONS(4283), + [anon_sym_u8_DQUOTE] = ACTIONS(4283), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym_true] = ACTIONS(4281), + [sym_false] = ACTIONS(4281), + [anon_sym_NULL] = ACTIONS(4281), + [anon_sym_nullptr] = ACTIONS(4281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4281), + [anon_sym_decltype] = ACTIONS(4281), + [anon_sym_explicit] = ACTIONS(4281), + [anon_sym_export] = ACTIONS(4281), + [anon_sym_module] = ACTIONS(4281), + [anon_sym_import] = ACTIONS(4281), + [anon_sym_template] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_delete] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_namespace] = ACTIONS(4281), + [anon_sym_static_assert] = ACTIONS(4281), + [anon_sym_concept] = ACTIONS(4281), + [anon_sym_co_return] = ACTIONS(4281), + [anon_sym_co_yield] = ACTIONS(4281), + [anon_sym_R_DQUOTE] = ACTIONS(4283), + [anon_sym_LR_DQUOTE] = ACTIONS(4283), + [anon_sym_uR_DQUOTE] = ACTIONS(4283), + [anon_sym_UR_DQUOTE] = ACTIONS(4283), + [anon_sym_u8R_DQUOTE] = ACTIONS(4283), + [anon_sym_co_await] = ACTIONS(4281), + [anon_sym_new] = ACTIONS(4281), + [anon_sym_requires] = ACTIONS(4281), + [anon_sym_CARET_CARET] = ACTIONS(4283), + [anon_sym_LBRACK_COLON] = ACTIONS(4283), + [sym_this] = ACTIONS(4281), }, [STATE(734)] = { - [sym_identifier] = ACTIONS(4262), - [aux_sym_preproc_include_token1] = ACTIONS(4262), - [aux_sym_preproc_def_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token2] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), - [sym_preproc_directive] = ACTIONS(4262), - [anon_sym_LPAREN2] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_TILDE] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym___extension__] = ACTIONS(4262), - [anon_sym_typedef] = ACTIONS(4262), - [anon_sym_virtual] = ACTIONS(4262), - [anon_sym_extern] = ACTIONS(4262), - [anon_sym___attribute__] = ACTIONS(4262), - [anon_sym___attribute] = ACTIONS(4262), - [anon_sym_using] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), - [anon_sym___declspec] = ACTIONS(4262), - [anon_sym___based] = ACTIONS(4262), - [anon_sym___cdecl] = ACTIONS(4262), - [anon_sym___clrcall] = ACTIONS(4262), - [anon_sym___stdcall] = ACTIONS(4262), - [anon_sym___fastcall] = ACTIONS(4262), - [anon_sym___thiscall] = ACTIONS(4262), - [anon_sym___vectorcall] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_signed] = ACTIONS(4262), - [anon_sym_unsigned] = ACTIONS(4262), - [anon_sym_long] = ACTIONS(4262), - [anon_sym_short] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_static] = ACTIONS(4262), - [anon_sym_register] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym___inline] = ACTIONS(4262), - [anon_sym___inline__] = ACTIONS(4262), - [anon_sym___forceinline] = ACTIONS(4262), - [anon_sym_thread_local] = ACTIONS(4262), - [anon_sym___thread] = ACTIONS(4262), - [anon_sym_const] = ACTIONS(4262), - [anon_sym_constexpr] = ACTIONS(4262), - [anon_sym_volatile] = ACTIONS(4262), - [anon_sym_restrict] = ACTIONS(4262), - [anon_sym___restrict__] = ACTIONS(4262), - [anon_sym__Atomic] = ACTIONS(4262), - [anon_sym__Noreturn] = ACTIONS(4262), - [anon_sym_noreturn] = ACTIONS(4262), - [anon_sym__Nonnull] = ACTIONS(4262), - [anon_sym_mutable] = ACTIONS(4262), - [anon_sym_constinit] = ACTIONS(4262), - [anon_sym_consteval] = ACTIONS(4262), - [anon_sym_alignas] = ACTIONS(4262), - [anon_sym__Alignas] = ACTIONS(4262), - [sym_primitive_type] = ACTIONS(4262), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_class] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4262), - [anon_sym_union] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_switch] = ACTIONS(4262), - [anon_sym_case] = ACTIONS(4262), - [anon_sym_default] = ACTIONS(4262), - [anon_sym_while] = ACTIONS(4262), - [anon_sym_do] = ACTIONS(4262), - [anon_sym_for] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_goto] = ACTIONS(4262), - [anon_sym___try] = ACTIONS(4262), - [anon_sym___leave] = ACTIONS(4262), - [anon_sym_not] = ACTIONS(4262), - [anon_sym_compl] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_sizeof] = ACTIONS(4262), - [anon_sym___alignof__] = ACTIONS(4262), - [anon_sym___alignof] = ACTIONS(4262), - [anon_sym__alignof] = ACTIONS(4262), - [anon_sym_alignof] = ACTIONS(4262), - [anon_sym__Alignof] = ACTIONS(4262), - [anon_sym_offsetof] = ACTIONS(4262), - [anon_sym__Generic] = ACTIONS(4262), - [anon_sym_typename] = ACTIONS(4262), - [anon_sym_asm] = ACTIONS(4262), - [anon_sym___asm__] = ACTIONS(4262), - [anon_sym___asm] = ACTIONS(4262), - [sym_number_literal] = ACTIONS(4264), - [anon_sym_L_SQUOTE] = ACTIONS(4264), - [anon_sym_u_SQUOTE] = ACTIONS(4264), - [anon_sym_U_SQUOTE] = ACTIONS(4264), - [anon_sym_u8_SQUOTE] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4264), - [anon_sym_L_DQUOTE] = ACTIONS(4264), - [anon_sym_u_DQUOTE] = ACTIONS(4264), - [anon_sym_U_DQUOTE] = ACTIONS(4264), - [anon_sym_u8_DQUOTE] = ACTIONS(4264), - [anon_sym_DQUOTE] = ACTIONS(4264), - [sym_true] = ACTIONS(4262), - [sym_false] = ACTIONS(4262), - [anon_sym_NULL] = ACTIONS(4262), - [anon_sym_nullptr] = ACTIONS(4262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4262), - [anon_sym_decltype] = ACTIONS(4262), - [anon_sym_explicit] = ACTIONS(4262), - [anon_sym_export] = ACTIONS(4262), - [anon_sym_module] = ACTIONS(4262), - [anon_sym_import] = ACTIONS(4262), - [anon_sym_template] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_try] = ACTIONS(4262), - [anon_sym_delete] = ACTIONS(4262), - [anon_sym_throw] = ACTIONS(4262), - [anon_sym_namespace] = ACTIONS(4262), - [anon_sym_static_assert] = ACTIONS(4262), - [anon_sym_concept] = ACTIONS(4262), - [anon_sym_co_return] = ACTIONS(4262), - [anon_sym_co_yield] = ACTIONS(4262), - [anon_sym_R_DQUOTE] = ACTIONS(4264), - [anon_sym_LR_DQUOTE] = ACTIONS(4264), - [anon_sym_uR_DQUOTE] = ACTIONS(4264), - [anon_sym_UR_DQUOTE] = ACTIONS(4264), - [anon_sym_u8R_DQUOTE] = ACTIONS(4264), - [anon_sym_co_await] = ACTIONS(4262), - [anon_sym_new] = ACTIONS(4262), - [anon_sym_requires] = ACTIONS(4262), - [anon_sym_CARET_CARET] = ACTIONS(4264), - [anon_sym_LBRACK_COLON] = ACTIONS(4264), - [sym_this] = ACTIONS(4262), + [sym_identifier] = ACTIONS(4285), + [aux_sym_preproc_include_token1] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token2] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4287), + [anon_sym_TILDE] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4285), + [anon_sym_PLUS] = ACTIONS(4285), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_AMP] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym___extension__] = ACTIONS(4285), + [anon_sym_typedef] = ACTIONS(4285), + [anon_sym_virtual] = ACTIONS(4285), + [anon_sym_extern] = ACTIONS(4285), + [anon_sym___attribute__] = ACTIONS(4285), + [anon_sym___attribute] = ACTIONS(4285), + [anon_sym_using] = ACTIONS(4285), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4287), + [anon_sym___declspec] = ACTIONS(4285), + [anon_sym___based] = ACTIONS(4285), + [anon_sym___cdecl] = ACTIONS(4285), + [anon_sym___clrcall] = ACTIONS(4285), + [anon_sym___stdcall] = ACTIONS(4285), + [anon_sym___fastcall] = ACTIONS(4285), + [anon_sym___thiscall] = ACTIONS(4285), + [anon_sym___vectorcall] = ACTIONS(4285), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_signed] = ACTIONS(4285), + [anon_sym_unsigned] = ACTIONS(4285), + [anon_sym_long] = ACTIONS(4285), + [anon_sym_short] = ACTIONS(4285), + [anon_sym_LBRACK] = ACTIONS(4285), + [anon_sym_static] = ACTIONS(4285), + [anon_sym_register] = ACTIONS(4285), + [anon_sym_inline] = ACTIONS(4285), + [anon_sym___inline] = ACTIONS(4285), + [anon_sym___inline__] = ACTIONS(4285), + [anon_sym___forceinline] = ACTIONS(4285), + [anon_sym_thread_local] = ACTIONS(4285), + [anon_sym___thread] = ACTIONS(4285), + [anon_sym_const] = ACTIONS(4285), + [anon_sym_constexpr] = ACTIONS(4285), + [anon_sym_volatile] = ACTIONS(4285), + [anon_sym_restrict] = ACTIONS(4285), + [anon_sym___restrict__] = ACTIONS(4285), + [anon_sym__Atomic] = ACTIONS(4285), + [anon_sym__Noreturn] = ACTIONS(4285), + [anon_sym_noreturn] = ACTIONS(4285), + [anon_sym__Nonnull] = ACTIONS(4285), + [anon_sym_mutable] = ACTIONS(4285), + [anon_sym_constinit] = ACTIONS(4285), + [anon_sym_consteval] = ACTIONS(4285), + [anon_sym_alignas] = ACTIONS(4285), + [anon_sym__Alignas] = ACTIONS(4285), + [sym_primitive_type] = ACTIONS(4285), + [anon_sym_enum] = ACTIONS(4285), + [anon_sym_class] = ACTIONS(4285), + [anon_sym_struct] = ACTIONS(4285), + [anon_sym_union] = ACTIONS(4285), + [anon_sym_if] = ACTIONS(4285), + [anon_sym_switch] = ACTIONS(4285), + [anon_sym_case] = ACTIONS(4285), + [anon_sym_default] = ACTIONS(4285), + [anon_sym_while] = ACTIONS(4285), + [anon_sym_do] = ACTIONS(4285), + [anon_sym_for] = ACTIONS(4285), + [anon_sym_return] = ACTIONS(4285), + [anon_sym_break] = ACTIONS(4285), + [anon_sym_continue] = ACTIONS(4285), + [anon_sym_goto] = ACTIONS(4285), + [anon_sym___try] = ACTIONS(4285), + [anon_sym___leave] = ACTIONS(4285), + [anon_sym_not] = ACTIONS(4285), + [anon_sym_compl] = ACTIONS(4285), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_sizeof] = ACTIONS(4285), + [anon_sym___alignof__] = ACTIONS(4285), + [anon_sym___alignof] = ACTIONS(4285), + [anon_sym__alignof] = ACTIONS(4285), + [anon_sym_alignof] = ACTIONS(4285), + [anon_sym__Alignof] = ACTIONS(4285), + [anon_sym_offsetof] = ACTIONS(4285), + [anon_sym__Generic] = ACTIONS(4285), + [anon_sym_typename] = ACTIONS(4285), + [anon_sym_asm] = ACTIONS(4285), + [anon_sym___asm__] = ACTIONS(4285), + [anon_sym___asm] = ACTIONS(4285), + [sym_number_literal] = ACTIONS(4287), + [anon_sym_L_SQUOTE] = ACTIONS(4287), + [anon_sym_u_SQUOTE] = ACTIONS(4287), + [anon_sym_U_SQUOTE] = ACTIONS(4287), + [anon_sym_u8_SQUOTE] = ACTIONS(4287), + [anon_sym_SQUOTE] = ACTIONS(4287), + [anon_sym_L_DQUOTE] = ACTIONS(4287), + [anon_sym_u_DQUOTE] = ACTIONS(4287), + [anon_sym_U_DQUOTE] = ACTIONS(4287), + [anon_sym_u8_DQUOTE] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [sym_true] = ACTIONS(4285), + [sym_false] = ACTIONS(4285), + [anon_sym_NULL] = ACTIONS(4285), + [anon_sym_nullptr] = ACTIONS(4285), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4285), + [anon_sym_decltype] = ACTIONS(4285), + [anon_sym_explicit] = ACTIONS(4285), + [anon_sym_export] = ACTIONS(4285), + [anon_sym_module] = ACTIONS(4285), + [anon_sym_import] = ACTIONS(4285), + [anon_sym_template] = ACTIONS(4285), + [anon_sym_operator] = ACTIONS(4285), + [anon_sym_try] = ACTIONS(4285), + [anon_sym_delete] = ACTIONS(4285), + [anon_sym_throw] = ACTIONS(4285), + [anon_sym_namespace] = ACTIONS(4285), + [anon_sym_static_assert] = ACTIONS(4285), + [anon_sym_concept] = ACTIONS(4285), + [anon_sym_co_return] = ACTIONS(4285), + [anon_sym_co_yield] = ACTIONS(4285), + [anon_sym_R_DQUOTE] = ACTIONS(4287), + [anon_sym_LR_DQUOTE] = ACTIONS(4287), + [anon_sym_uR_DQUOTE] = ACTIONS(4287), + [anon_sym_UR_DQUOTE] = ACTIONS(4287), + [anon_sym_u8R_DQUOTE] = ACTIONS(4287), + [anon_sym_co_await] = ACTIONS(4285), + [anon_sym_new] = ACTIONS(4285), + [anon_sym_requires] = ACTIONS(4285), + [anon_sym_CARET_CARET] = ACTIONS(4287), + [anon_sym_LBRACK_COLON] = ACTIONS(4287), + [sym_this] = ACTIONS(4285), }, [STATE(735)] = { - [sym_identifier] = ACTIONS(4274), - [aux_sym_preproc_include_token1] = ACTIONS(4274), - [aux_sym_preproc_def_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token2] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), - [sym_preproc_directive] = ACTIONS(4274), - [anon_sym_LPAREN2] = ACTIONS(4276), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_TILDE] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_AMP_AMP] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4274), - [anon_sym_SEMI] = ACTIONS(4276), - [anon_sym___extension__] = ACTIONS(4274), - [anon_sym_typedef] = ACTIONS(4274), - [anon_sym_virtual] = ACTIONS(4274), - [anon_sym_extern] = ACTIONS(4274), - [anon_sym___attribute__] = ACTIONS(4274), - [anon_sym___attribute] = ACTIONS(4274), - [anon_sym_using] = ACTIONS(4274), - [anon_sym_COLON_COLON] = ACTIONS(4276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), - [anon_sym___declspec] = ACTIONS(4274), - [anon_sym___based] = ACTIONS(4274), - [anon_sym___cdecl] = ACTIONS(4274), - [anon_sym___clrcall] = ACTIONS(4274), - [anon_sym___stdcall] = ACTIONS(4274), - [anon_sym___fastcall] = ACTIONS(4274), - [anon_sym___thiscall] = ACTIONS(4274), - [anon_sym___vectorcall] = ACTIONS(4274), - [anon_sym_LBRACE] = ACTIONS(4276), - [anon_sym_signed] = ACTIONS(4274), - [anon_sym_unsigned] = ACTIONS(4274), - [anon_sym_long] = ACTIONS(4274), - [anon_sym_short] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_static] = ACTIONS(4274), - [anon_sym_register] = ACTIONS(4274), - [anon_sym_inline] = ACTIONS(4274), - [anon_sym___inline] = ACTIONS(4274), - [anon_sym___inline__] = ACTIONS(4274), - [anon_sym___forceinline] = ACTIONS(4274), - [anon_sym_thread_local] = ACTIONS(4274), - [anon_sym___thread] = ACTIONS(4274), - [anon_sym_const] = ACTIONS(4274), - [anon_sym_constexpr] = ACTIONS(4274), - [anon_sym_volatile] = ACTIONS(4274), - [anon_sym_restrict] = ACTIONS(4274), - [anon_sym___restrict__] = ACTIONS(4274), - [anon_sym__Atomic] = ACTIONS(4274), - [anon_sym__Noreturn] = ACTIONS(4274), - [anon_sym_noreturn] = ACTIONS(4274), - [anon_sym__Nonnull] = ACTIONS(4274), - [anon_sym_mutable] = ACTIONS(4274), - [anon_sym_constinit] = ACTIONS(4274), - [anon_sym_consteval] = ACTIONS(4274), - [anon_sym_alignas] = ACTIONS(4274), - [anon_sym__Alignas] = ACTIONS(4274), - [sym_primitive_type] = ACTIONS(4274), - [anon_sym_enum] = ACTIONS(4274), - [anon_sym_class] = ACTIONS(4274), - [anon_sym_struct] = ACTIONS(4274), - [anon_sym_union] = ACTIONS(4274), - [anon_sym_if] = ACTIONS(4274), - [anon_sym_switch] = ACTIONS(4274), - [anon_sym_case] = ACTIONS(4274), - [anon_sym_default] = ACTIONS(4274), - [anon_sym_while] = ACTIONS(4274), - [anon_sym_do] = ACTIONS(4274), - [anon_sym_for] = ACTIONS(4274), - [anon_sym_return] = ACTIONS(4274), - [anon_sym_break] = ACTIONS(4274), - [anon_sym_continue] = ACTIONS(4274), - [anon_sym_goto] = ACTIONS(4274), - [anon_sym___try] = ACTIONS(4274), - [anon_sym___leave] = ACTIONS(4274), - [anon_sym_not] = ACTIONS(4274), - [anon_sym_compl] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4276), - [anon_sym_sizeof] = ACTIONS(4274), - [anon_sym___alignof__] = ACTIONS(4274), - [anon_sym___alignof] = ACTIONS(4274), - [anon_sym__alignof] = ACTIONS(4274), - [anon_sym_alignof] = ACTIONS(4274), - [anon_sym__Alignof] = ACTIONS(4274), - [anon_sym_offsetof] = ACTIONS(4274), - [anon_sym__Generic] = ACTIONS(4274), - [anon_sym_typename] = ACTIONS(4274), - [anon_sym_asm] = ACTIONS(4274), - [anon_sym___asm__] = ACTIONS(4274), - [anon_sym___asm] = ACTIONS(4274), - [sym_number_literal] = ACTIONS(4276), - [anon_sym_L_SQUOTE] = ACTIONS(4276), - [anon_sym_u_SQUOTE] = ACTIONS(4276), - [anon_sym_U_SQUOTE] = ACTIONS(4276), - [anon_sym_u8_SQUOTE] = ACTIONS(4276), - [anon_sym_SQUOTE] = ACTIONS(4276), - [anon_sym_L_DQUOTE] = ACTIONS(4276), - [anon_sym_u_DQUOTE] = ACTIONS(4276), - [anon_sym_U_DQUOTE] = ACTIONS(4276), - [anon_sym_u8_DQUOTE] = ACTIONS(4276), - [anon_sym_DQUOTE] = ACTIONS(4276), - [sym_true] = ACTIONS(4274), - [sym_false] = ACTIONS(4274), - [anon_sym_NULL] = ACTIONS(4274), - [anon_sym_nullptr] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4274), - [anon_sym_decltype] = ACTIONS(4274), - [anon_sym_explicit] = ACTIONS(4274), - [anon_sym_export] = ACTIONS(4274), - [anon_sym_module] = ACTIONS(4274), - [anon_sym_import] = ACTIONS(4274), - [anon_sym_template] = ACTIONS(4274), - [anon_sym_operator] = ACTIONS(4274), - [anon_sym_try] = ACTIONS(4274), - [anon_sym_delete] = ACTIONS(4274), - [anon_sym_throw] = ACTIONS(4274), - [anon_sym_namespace] = ACTIONS(4274), - [anon_sym_static_assert] = ACTIONS(4274), - [anon_sym_concept] = ACTIONS(4274), - [anon_sym_co_return] = ACTIONS(4274), - [anon_sym_co_yield] = ACTIONS(4274), - [anon_sym_R_DQUOTE] = ACTIONS(4276), - [anon_sym_LR_DQUOTE] = ACTIONS(4276), - [anon_sym_uR_DQUOTE] = ACTIONS(4276), - [anon_sym_UR_DQUOTE] = ACTIONS(4276), - [anon_sym_u8R_DQUOTE] = ACTIONS(4276), - [anon_sym_co_await] = ACTIONS(4274), - [anon_sym_new] = ACTIONS(4274), - [anon_sym_requires] = ACTIONS(4274), - [anon_sym_CARET_CARET] = ACTIONS(4276), - [anon_sym_LBRACK_COLON] = ACTIONS(4276), - [sym_this] = ACTIONS(4274), + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_include_token1] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym___cdecl] = ACTIONS(3668), + [anon_sym___clrcall] = ACTIONS(3668), + [anon_sym___stdcall] = ACTIONS(3668), + [anon_sym___fastcall] = ACTIONS(3668), + [anon_sym___thiscall] = ACTIONS(3668), + [anon_sym___vectorcall] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_case] = ACTIONS(3668), + [anon_sym_default] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [anon_sym___asm] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_export] = ACTIONS(3668), + [anon_sym_import] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_namespace] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_concept] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [anon_sym_CARET_CARET] = ACTIONS(3670), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + [sym_this] = ACTIONS(3668), }, [STATE(736)] = { - [sym_identifier] = ACTIONS(4278), - [aux_sym_preproc_include_token1] = ACTIONS(4278), - [aux_sym_preproc_def_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token2] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), - [sym_preproc_directive] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_BANG] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4280), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_AMP] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym___extension__] = ACTIONS(4278), - [anon_sym_typedef] = ACTIONS(4278), - [anon_sym_virtual] = ACTIONS(4278), - [anon_sym_extern] = ACTIONS(4278), - [anon_sym___attribute__] = ACTIONS(4278), - [anon_sym___attribute] = ACTIONS(4278), - [anon_sym_using] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), - [anon_sym___declspec] = ACTIONS(4278), - [anon_sym___based] = ACTIONS(4278), - [anon_sym___cdecl] = ACTIONS(4278), - [anon_sym___clrcall] = ACTIONS(4278), - [anon_sym___stdcall] = ACTIONS(4278), - [anon_sym___fastcall] = ACTIONS(4278), - [anon_sym___thiscall] = ACTIONS(4278), - [anon_sym___vectorcall] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4280), - [anon_sym_signed] = ACTIONS(4278), - [anon_sym_unsigned] = ACTIONS(4278), - [anon_sym_long] = ACTIONS(4278), - [anon_sym_short] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_static] = ACTIONS(4278), - [anon_sym_register] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym___inline] = ACTIONS(4278), - [anon_sym___inline__] = ACTIONS(4278), - [anon_sym___forceinline] = ACTIONS(4278), - [anon_sym_thread_local] = ACTIONS(4278), - [anon_sym___thread] = ACTIONS(4278), - [anon_sym_const] = ACTIONS(4278), - [anon_sym_constexpr] = ACTIONS(4278), - [anon_sym_volatile] = ACTIONS(4278), - [anon_sym_restrict] = ACTIONS(4278), - [anon_sym___restrict__] = ACTIONS(4278), - [anon_sym__Atomic] = ACTIONS(4278), - [anon_sym__Noreturn] = ACTIONS(4278), - [anon_sym_noreturn] = ACTIONS(4278), - [anon_sym__Nonnull] = ACTIONS(4278), - [anon_sym_mutable] = ACTIONS(4278), - [anon_sym_constinit] = ACTIONS(4278), - [anon_sym_consteval] = ACTIONS(4278), - [anon_sym_alignas] = ACTIONS(4278), - [anon_sym__Alignas] = ACTIONS(4278), - [sym_primitive_type] = ACTIONS(4278), - [anon_sym_enum] = ACTIONS(4278), - [anon_sym_class] = ACTIONS(4278), - [anon_sym_struct] = ACTIONS(4278), - [anon_sym_union] = ACTIONS(4278), - [anon_sym_if] = ACTIONS(4278), - [anon_sym_switch] = ACTIONS(4278), - [anon_sym_case] = ACTIONS(4278), - [anon_sym_default] = ACTIONS(4278), - [anon_sym_while] = ACTIONS(4278), - [anon_sym_do] = ACTIONS(4278), - [anon_sym_for] = ACTIONS(4278), - [anon_sym_return] = ACTIONS(4278), - [anon_sym_break] = ACTIONS(4278), - [anon_sym_continue] = ACTIONS(4278), - [anon_sym_goto] = ACTIONS(4278), - [anon_sym___try] = ACTIONS(4278), - [anon_sym___leave] = ACTIONS(4278), - [anon_sym_not] = ACTIONS(4278), - [anon_sym_compl] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4280), - [anon_sym_PLUS_PLUS] = ACTIONS(4280), - [anon_sym_sizeof] = ACTIONS(4278), - [anon_sym___alignof__] = ACTIONS(4278), - [anon_sym___alignof] = ACTIONS(4278), - [anon_sym__alignof] = ACTIONS(4278), - [anon_sym_alignof] = ACTIONS(4278), - [anon_sym__Alignof] = ACTIONS(4278), - [anon_sym_offsetof] = ACTIONS(4278), - [anon_sym__Generic] = ACTIONS(4278), - [anon_sym_typename] = ACTIONS(4278), - [anon_sym_asm] = ACTIONS(4278), - [anon_sym___asm__] = ACTIONS(4278), - [anon_sym___asm] = ACTIONS(4278), - [sym_number_literal] = ACTIONS(4280), - [anon_sym_L_SQUOTE] = ACTIONS(4280), - [anon_sym_u_SQUOTE] = ACTIONS(4280), - [anon_sym_U_SQUOTE] = ACTIONS(4280), - [anon_sym_u8_SQUOTE] = ACTIONS(4280), - [anon_sym_SQUOTE] = ACTIONS(4280), - [anon_sym_L_DQUOTE] = ACTIONS(4280), - [anon_sym_u_DQUOTE] = ACTIONS(4280), - [anon_sym_U_DQUOTE] = ACTIONS(4280), - [anon_sym_u8_DQUOTE] = ACTIONS(4280), - [anon_sym_DQUOTE] = ACTIONS(4280), - [sym_true] = ACTIONS(4278), - [sym_false] = ACTIONS(4278), - [anon_sym_NULL] = ACTIONS(4278), - [anon_sym_nullptr] = ACTIONS(4278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4278), - [anon_sym_decltype] = ACTIONS(4278), - [anon_sym_explicit] = ACTIONS(4278), - [anon_sym_export] = ACTIONS(4278), - [anon_sym_module] = ACTIONS(4278), - [anon_sym_import] = ACTIONS(4278), - [anon_sym_template] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_try] = ACTIONS(4278), - [anon_sym_delete] = ACTIONS(4278), - [anon_sym_throw] = ACTIONS(4278), - [anon_sym_namespace] = ACTIONS(4278), - [anon_sym_static_assert] = ACTIONS(4278), - [anon_sym_concept] = ACTIONS(4278), - [anon_sym_co_return] = ACTIONS(4278), - [anon_sym_co_yield] = ACTIONS(4278), - [anon_sym_R_DQUOTE] = ACTIONS(4280), - [anon_sym_LR_DQUOTE] = ACTIONS(4280), - [anon_sym_uR_DQUOTE] = ACTIONS(4280), - [anon_sym_UR_DQUOTE] = ACTIONS(4280), - [anon_sym_u8R_DQUOTE] = ACTIONS(4280), - [anon_sym_co_await] = ACTIONS(4278), - [anon_sym_new] = ACTIONS(4278), - [anon_sym_requires] = ACTIONS(4278), - [anon_sym_CARET_CARET] = ACTIONS(4280), - [anon_sym_LBRACK_COLON] = ACTIONS(4280), - [sym_this] = ACTIONS(4278), + [sym_identifier] = ACTIONS(3596), + [aux_sym_preproc_include_token1] = ACTIONS(3596), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym___attribute__] = ACTIONS(3596), + [anon_sym___attribute] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym___declspec] = ACTIONS(3596), + [anon_sym___based] = ACTIONS(3596), + [anon_sym___cdecl] = ACTIONS(3596), + [anon_sym___clrcall] = ACTIONS(3596), + [anon_sym___stdcall] = ACTIONS(3596), + [anon_sym___fastcall] = ACTIONS(3596), + [anon_sym___thiscall] = ACTIONS(3596), + [anon_sym___vectorcall] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_RBRACE] = ACTIONS(3598), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym___inline] = ACTIONS(3596), + [anon_sym___inline__] = ACTIONS(3596), + [anon_sym___forceinline] = ACTIONS(3596), + [anon_sym_thread_local] = ACTIONS(3596), + [anon_sym___thread] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_restrict] = ACTIONS(3596), + [anon_sym___restrict__] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [anon_sym__Noreturn] = ACTIONS(3596), + [anon_sym_noreturn] = ACTIONS(3596), + [anon_sym__Nonnull] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [anon_sym_constinit] = ACTIONS(3596), + [anon_sym_consteval] = ACTIONS(3596), + [anon_sym_alignas] = ACTIONS(3596), + [anon_sym__Alignas] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_case] = ACTIONS(3596), + [anon_sym_default] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [anon_sym___try] = ACTIONS(3596), + [anon_sym___leave] = ACTIONS(3596), + [anon_sym_not] = ACTIONS(3596), + [anon_sym_compl] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym___alignof__] = ACTIONS(3596), + [anon_sym___alignof] = ACTIONS(3596), + [anon_sym__alignof] = ACTIONS(3596), + [anon_sym_alignof] = ACTIONS(3596), + [anon_sym__Alignof] = ACTIONS(3596), + [anon_sym_offsetof] = ACTIONS(3596), + [anon_sym__Generic] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [anon_sym_asm] = ACTIONS(3596), + [anon_sym___asm__] = ACTIONS(3596), + [anon_sym___asm] = ACTIONS(3596), + [sym_number_literal] = ACTIONS(3598), + [anon_sym_L_SQUOTE] = ACTIONS(3598), + [anon_sym_u_SQUOTE] = ACTIONS(3598), + [anon_sym_U_SQUOTE] = ACTIONS(3598), + [anon_sym_u8_SQUOTE] = ACTIONS(3598), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_L_DQUOTE] = ACTIONS(3598), + [anon_sym_u_DQUOTE] = ACTIONS(3598), + [anon_sym_U_DQUOTE] = ACTIONS(3598), + [anon_sym_u8_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [anon_sym_NULL] = ACTIONS(3596), + [anon_sym_nullptr] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_export] = ACTIONS(3596), + [anon_sym_import] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_operator] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_namespace] = ACTIONS(3596), + [anon_sym_static_assert] = ACTIONS(3596), + [anon_sym_concept] = ACTIONS(3596), + [anon_sym_co_return] = ACTIONS(3596), + [anon_sym_co_yield] = ACTIONS(3596), + [anon_sym_R_DQUOTE] = ACTIONS(3598), + [anon_sym_LR_DQUOTE] = ACTIONS(3598), + [anon_sym_uR_DQUOTE] = ACTIONS(3598), + [anon_sym_UR_DQUOTE] = ACTIONS(3598), + [anon_sym_u8R_DQUOTE] = ACTIONS(3598), + [anon_sym_co_await] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_requires] = ACTIONS(3596), + [anon_sym_CARET_CARET] = ACTIONS(3598), + [anon_sym_LBRACK_COLON] = ACTIONS(3598), + [sym_this] = ACTIONS(3596), }, [STATE(737)] = { + [sym_identifier] = ACTIONS(4321), + [aux_sym_preproc_include_token1] = ACTIONS(4321), + [aux_sym_preproc_def_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token2] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4321), + [sym_preproc_directive] = ACTIONS(4321), + [anon_sym_LPAREN2] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4323), + [anon_sym_TILDE] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_AMP] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym___extension__] = ACTIONS(4321), + [anon_sym_typedef] = ACTIONS(4321), + [anon_sym_virtual] = ACTIONS(4321), + [anon_sym_extern] = ACTIONS(4321), + [anon_sym___attribute__] = ACTIONS(4321), + [anon_sym___attribute] = ACTIONS(4321), + [anon_sym_using] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4323), + [anon_sym___declspec] = ACTIONS(4321), + [anon_sym___based] = ACTIONS(4321), + [anon_sym___cdecl] = ACTIONS(4321), + [anon_sym___clrcall] = ACTIONS(4321), + [anon_sym___stdcall] = ACTIONS(4321), + [anon_sym___fastcall] = ACTIONS(4321), + [anon_sym___thiscall] = ACTIONS(4321), + [anon_sym___vectorcall] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_signed] = ACTIONS(4321), + [anon_sym_unsigned] = ACTIONS(4321), + [anon_sym_long] = ACTIONS(4321), + [anon_sym_short] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_static] = ACTIONS(4321), + [anon_sym_register] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym___inline] = ACTIONS(4321), + [anon_sym___inline__] = ACTIONS(4321), + [anon_sym___forceinline] = ACTIONS(4321), + [anon_sym_thread_local] = ACTIONS(4321), + [anon_sym___thread] = ACTIONS(4321), + [anon_sym_const] = ACTIONS(4321), + [anon_sym_constexpr] = ACTIONS(4321), + [anon_sym_volatile] = ACTIONS(4321), + [anon_sym_restrict] = ACTIONS(4321), + [anon_sym___restrict__] = ACTIONS(4321), + [anon_sym__Atomic] = ACTIONS(4321), + [anon_sym__Noreturn] = ACTIONS(4321), + [anon_sym_noreturn] = ACTIONS(4321), + [anon_sym__Nonnull] = ACTIONS(4321), + [anon_sym_mutable] = ACTIONS(4321), + [anon_sym_constinit] = ACTIONS(4321), + [anon_sym_consteval] = ACTIONS(4321), + [anon_sym_alignas] = ACTIONS(4321), + [anon_sym__Alignas] = ACTIONS(4321), + [sym_primitive_type] = ACTIONS(4321), + [anon_sym_enum] = ACTIONS(4321), + [anon_sym_class] = ACTIONS(4321), + [anon_sym_struct] = ACTIONS(4321), + [anon_sym_union] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_switch] = ACTIONS(4321), + [anon_sym_case] = ACTIONS(4321), + [anon_sym_default] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_do] = ACTIONS(4321), + [anon_sym_for] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_goto] = ACTIONS(4321), + [anon_sym___try] = ACTIONS(4321), + [anon_sym___leave] = ACTIONS(4321), + [anon_sym_not] = ACTIONS(4321), + [anon_sym_compl] = ACTIONS(4321), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_sizeof] = ACTIONS(4321), + [anon_sym___alignof__] = ACTIONS(4321), + [anon_sym___alignof] = ACTIONS(4321), + [anon_sym__alignof] = ACTIONS(4321), + [anon_sym_alignof] = ACTIONS(4321), + [anon_sym__Alignof] = ACTIONS(4321), + [anon_sym_offsetof] = ACTIONS(4321), + [anon_sym__Generic] = ACTIONS(4321), + [anon_sym_typename] = ACTIONS(4321), + [anon_sym_asm] = ACTIONS(4321), + [anon_sym___asm__] = ACTIONS(4321), + [anon_sym___asm] = ACTIONS(4321), + [sym_number_literal] = ACTIONS(4323), + [anon_sym_L_SQUOTE] = ACTIONS(4323), + [anon_sym_u_SQUOTE] = ACTIONS(4323), + [anon_sym_U_SQUOTE] = ACTIONS(4323), + [anon_sym_u8_SQUOTE] = ACTIONS(4323), + [anon_sym_SQUOTE] = ACTIONS(4323), + [anon_sym_L_DQUOTE] = ACTIONS(4323), + [anon_sym_u_DQUOTE] = ACTIONS(4323), + [anon_sym_U_DQUOTE] = ACTIONS(4323), + [anon_sym_u8_DQUOTE] = ACTIONS(4323), + [anon_sym_DQUOTE] = ACTIONS(4323), + [sym_true] = ACTIONS(4321), + [sym_false] = ACTIONS(4321), + [anon_sym_NULL] = ACTIONS(4321), + [anon_sym_nullptr] = ACTIONS(4321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4321), + [anon_sym_decltype] = ACTIONS(4321), + [anon_sym_explicit] = ACTIONS(4321), + [anon_sym_export] = ACTIONS(4321), + [anon_sym_module] = ACTIONS(4321), + [anon_sym_import] = ACTIONS(4321), + [anon_sym_template] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_delete] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_namespace] = ACTIONS(4321), + [anon_sym_static_assert] = ACTIONS(4321), + [anon_sym_concept] = ACTIONS(4321), + [anon_sym_co_return] = ACTIONS(4321), + [anon_sym_co_yield] = ACTIONS(4321), + [anon_sym_R_DQUOTE] = ACTIONS(4323), + [anon_sym_LR_DQUOTE] = ACTIONS(4323), + [anon_sym_uR_DQUOTE] = ACTIONS(4323), + [anon_sym_UR_DQUOTE] = ACTIONS(4323), + [anon_sym_u8R_DQUOTE] = ACTIONS(4323), + [anon_sym_co_await] = ACTIONS(4321), + [anon_sym_new] = ACTIONS(4321), + [anon_sym_requires] = ACTIONS(4321), + [anon_sym_CARET_CARET] = ACTIONS(4323), + [anon_sym_LBRACK_COLON] = ACTIONS(4323), + [sym_this] = ACTIONS(4321), + }, + [STATE(738)] = { + [sym_identifier] = ACTIONS(3710), + [aux_sym_preproc_include_token1] = ACTIONS(3710), + [aux_sym_preproc_def_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token2] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3710), + [sym_preproc_directive] = ACTIONS(3710), + [anon_sym_LPAREN2] = ACTIONS(3712), + [anon_sym_BANG] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_AMP] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(3712), + [anon_sym___extension__] = ACTIONS(3710), + [anon_sym_typedef] = ACTIONS(3710), + [anon_sym_virtual] = ACTIONS(3710), + [anon_sym_extern] = ACTIONS(3710), + [anon_sym___attribute__] = ACTIONS(3710), + [anon_sym___attribute] = ACTIONS(3710), + [anon_sym_using] = ACTIONS(3710), + [anon_sym_COLON_COLON] = ACTIONS(3712), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3712), + [anon_sym___declspec] = ACTIONS(3710), + [anon_sym___based] = ACTIONS(3710), + [anon_sym___cdecl] = ACTIONS(3710), + [anon_sym___clrcall] = ACTIONS(3710), + [anon_sym___stdcall] = ACTIONS(3710), + [anon_sym___fastcall] = ACTIONS(3710), + [anon_sym___thiscall] = ACTIONS(3710), + [anon_sym___vectorcall] = ACTIONS(3710), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_signed] = ACTIONS(3710), + [anon_sym_unsigned] = ACTIONS(3710), + [anon_sym_long] = ACTIONS(3710), + [anon_sym_short] = ACTIONS(3710), + [anon_sym_LBRACK] = ACTIONS(3710), + [anon_sym_static] = ACTIONS(3710), + [anon_sym_register] = ACTIONS(3710), + [anon_sym_inline] = ACTIONS(3710), + [anon_sym___inline] = ACTIONS(3710), + [anon_sym___inline__] = ACTIONS(3710), + [anon_sym___forceinline] = ACTIONS(3710), + [anon_sym_thread_local] = ACTIONS(3710), + [anon_sym___thread] = ACTIONS(3710), + [anon_sym_const] = ACTIONS(3710), + [anon_sym_constexpr] = ACTIONS(3710), + [anon_sym_volatile] = ACTIONS(3710), + [anon_sym_restrict] = ACTIONS(3710), + [anon_sym___restrict__] = ACTIONS(3710), + [anon_sym__Atomic] = ACTIONS(3710), + [anon_sym__Noreturn] = ACTIONS(3710), + [anon_sym_noreturn] = ACTIONS(3710), + [anon_sym__Nonnull] = ACTIONS(3710), + [anon_sym_mutable] = ACTIONS(3710), + [anon_sym_constinit] = ACTIONS(3710), + [anon_sym_consteval] = ACTIONS(3710), + [anon_sym_alignas] = ACTIONS(3710), + [anon_sym__Alignas] = ACTIONS(3710), + [sym_primitive_type] = ACTIONS(3710), + [anon_sym_enum] = ACTIONS(3710), + [anon_sym_class] = ACTIONS(3710), + [anon_sym_struct] = ACTIONS(3710), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_if] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3710), + [anon_sym_case] = ACTIONS(3710), + [anon_sym_default] = ACTIONS(3710), + [anon_sym_while] = ACTIONS(3710), + [anon_sym_do] = ACTIONS(3710), + [anon_sym_for] = ACTIONS(3710), + [anon_sym_return] = ACTIONS(3710), + [anon_sym_break] = ACTIONS(3710), + [anon_sym_continue] = ACTIONS(3710), + [anon_sym_goto] = ACTIONS(3710), + [anon_sym___try] = ACTIONS(3710), + [anon_sym___leave] = ACTIONS(3710), + [anon_sym_not] = ACTIONS(3710), + [anon_sym_compl] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3710), + [anon_sym___alignof__] = ACTIONS(3710), + [anon_sym___alignof] = ACTIONS(3710), + [anon_sym__alignof] = ACTIONS(3710), + [anon_sym_alignof] = ACTIONS(3710), + [anon_sym__Alignof] = ACTIONS(3710), + [anon_sym_offsetof] = ACTIONS(3710), + [anon_sym__Generic] = ACTIONS(3710), + [anon_sym_typename] = ACTIONS(3710), + [anon_sym_asm] = ACTIONS(3710), + [anon_sym___asm__] = ACTIONS(3710), + [anon_sym___asm] = ACTIONS(3710), + [sym_number_literal] = ACTIONS(3712), + [anon_sym_L_SQUOTE] = ACTIONS(3712), + [anon_sym_u_SQUOTE] = ACTIONS(3712), + [anon_sym_U_SQUOTE] = ACTIONS(3712), + [anon_sym_u8_SQUOTE] = ACTIONS(3712), + [anon_sym_SQUOTE] = ACTIONS(3712), + [anon_sym_L_DQUOTE] = ACTIONS(3712), + [anon_sym_u_DQUOTE] = ACTIONS(3712), + [anon_sym_U_DQUOTE] = ACTIONS(3712), + [anon_sym_u8_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [sym_true] = ACTIONS(3710), + [sym_false] = ACTIONS(3710), + [anon_sym_NULL] = ACTIONS(3710), + [anon_sym_nullptr] = ACTIONS(3710), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3710), + [anon_sym_decltype] = ACTIONS(3710), + [anon_sym_explicit] = ACTIONS(3710), + [anon_sym_export] = ACTIONS(3710), + [anon_sym_module] = ACTIONS(3710), + [anon_sym_import] = ACTIONS(3710), + [anon_sym_template] = ACTIONS(3710), + [anon_sym_operator] = ACTIONS(3710), + [anon_sym_try] = ACTIONS(3710), + [anon_sym_delete] = ACTIONS(3710), + [anon_sym_throw] = ACTIONS(3710), + [anon_sym_namespace] = ACTIONS(3710), + [anon_sym_static_assert] = ACTIONS(3710), + [anon_sym_concept] = ACTIONS(3710), + [anon_sym_co_return] = ACTIONS(3710), + [anon_sym_co_yield] = ACTIONS(3710), + [anon_sym_R_DQUOTE] = ACTIONS(3712), + [anon_sym_LR_DQUOTE] = ACTIONS(3712), + [anon_sym_uR_DQUOTE] = ACTIONS(3712), + [anon_sym_UR_DQUOTE] = ACTIONS(3712), + [anon_sym_u8R_DQUOTE] = ACTIONS(3712), + [anon_sym_co_await] = ACTIONS(3710), + [anon_sym_new] = ACTIONS(3710), + [anon_sym_requires] = ACTIONS(3710), + [anon_sym_CARET_CARET] = ACTIONS(3712), + [anon_sym_LBRACK_COLON] = ACTIONS(3712), + [sym_this] = ACTIONS(3710), + }, + [STATE(739)] = { + [sym_identifier] = ACTIONS(3746), + [aux_sym_preproc_include_token1] = ACTIONS(3746), + [aux_sym_preproc_def_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token2] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3746), + [sym_preproc_directive] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_TILDE] = ACTIONS(3748), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_STAR] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym___extension__] = ACTIONS(3746), + [anon_sym_typedef] = ACTIONS(3746), + [anon_sym_virtual] = ACTIONS(3746), + [anon_sym_extern] = ACTIONS(3746), + [anon_sym___attribute__] = ACTIONS(3746), + [anon_sym___attribute] = ACTIONS(3746), + [anon_sym_using] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3748), + [anon_sym___declspec] = ACTIONS(3746), + [anon_sym___based] = ACTIONS(3746), + [anon_sym___cdecl] = ACTIONS(3746), + [anon_sym___clrcall] = ACTIONS(3746), + [anon_sym___stdcall] = ACTIONS(3746), + [anon_sym___fastcall] = ACTIONS(3746), + [anon_sym___thiscall] = ACTIONS(3746), + [anon_sym___vectorcall] = ACTIONS(3746), + [anon_sym_LBRACE] = ACTIONS(3748), + [anon_sym_signed] = ACTIONS(3746), + [anon_sym_unsigned] = ACTIONS(3746), + [anon_sym_long] = ACTIONS(3746), + [anon_sym_short] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_static] = ACTIONS(3746), + [anon_sym_register] = ACTIONS(3746), + [anon_sym_inline] = ACTIONS(3746), + [anon_sym___inline] = ACTIONS(3746), + [anon_sym___inline__] = ACTIONS(3746), + [anon_sym___forceinline] = ACTIONS(3746), + [anon_sym_thread_local] = ACTIONS(3746), + [anon_sym___thread] = ACTIONS(3746), + [anon_sym_const] = ACTIONS(3746), + [anon_sym_constexpr] = ACTIONS(3746), + [anon_sym_volatile] = ACTIONS(3746), + [anon_sym_restrict] = ACTIONS(3746), + [anon_sym___restrict__] = ACTIONS(3746), + [anon_sym__Atomic] = ACTIONS(3746), + [anon_sym__Noreturn] = ACTIONS(3746), + [anon_sym_noreturn] = ACTIONS(3746), + [anon_sym__Nonnull] = ACTIONS(3746), + [anon_sym_mutable] = ACTIONS(3746), + [anon_sym_constinit] = ACTIONS(3746), + [anon_sym_consteval] = ACTIONS(3746), + [anon_sym_alignas] = ACTIONS(3746), + [anon_sym__Alignas] = ACTIONS(3746), + [sym_primitive_type] = ACTIONS(3746), + [anon_sym_enum] = ACTIONS(3746), + [anon_sym_class] = ACTIONS(3746), + [anon_sym_struct] = ACTIONS(3746), + [anon_sym_union] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_switch] = ACTIONS(3746), + [anon_sym_case] = ACTIONS(3746), + [anon_sym_default] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_break] = ACTIONS(3746), + [anon_sym_continue] = ACTIONS(3746), + [anon_sym_goto] = ACTIONS(3746), + [anon_sym___try] = ACTIONS(3746), + [anon_sym___leave] = ACTIONS(3746), + [anon_sym_not] = ACTIONS(3746), + [anon_sym_compl] = ACTIONS(3746), + [anon_sym_DASH_DASH] = ACTIONS(3748), + [anon_sym_PLUS_PLUS] = ACTIONS(3748), + [anon_sym_sizeof] = ACTIONS(3746), + [anon_sym___alignof__] = ACTIONS(3746), + [anon_sym___alignof] = ACTIONS(3746), + [anon_sym__alignof] = ACTIONS(3746), + [anon_sym_alignof] = ACTIONS(3746), + [anon_sym__Alignof] = ACTIONS(3746), + [anon_sym_offsetof] = ACTIONS(3746), + [anon_sym__Generic] = ACTIONS(3746), + [anon_sym_typename] = ACTIONS(3746), + [anon_sym_asm] = ACTIONS(3746), + [anon_sym___asm__] = ACTIONS(3746), + [anon_sym___asm] = ACTIONS(3746), + [sym_number_literal] = ACTIONS(3748), + [anon_sym_L_SQUOTE] = ACTIONS(3748), + [anon_sym_u_SQUOTE] = ACTIONS(3748), + [anon_sym_U_SQUOTE] = ACTIONS(3748), + [anon_sym_u8_SQUOTE] = ACTIONS(3748), + [anon_sym_SQUOTE] = ACTIONS(3748), + [anon_sym_L_DQUOTE] = ACTIONS(3748), + [anon_sym_u_DQUOTE] = ACTIONS(3748), + [anon_sym_U_DQUOTE] = ACTIONS(3748), + [anon_sym_u8_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [sym_true] = ACTIONS(3746), + [sym_false] = ACTIONS(3746), + [anon_sym_NULL] = ACTIONS(3746), + [anon_sym_nullptr] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3746), + [anon_sym_decltype] = ACTIONS(3746), + [anon_sym_explicit] = ACTIONS(3746), + [anon_sym_export] = ACTIONS(3746), + [anon_sym_module] = ACTIONS(3746), + [anon_sym_import] = ACTIONS(3746), + [anon_sym_template] = ACTIONS(3746), + [anon_sym_operator] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_delete] = ACTIONS(3746), + [anon_sym_throw] = ACTIONS(3746), + [anon_sym_namespace] = ACTIONS(3746), + [anon_sym_static_assert] = ACTIONS(3746), + [anon_sym_concept] = ACTIONS(3746), + [anon_sym_co_return] = ACTIONS(3746), + [anon_sym_co_yield] = ACTIONS(3746), + [anon_sym_R_DQUOTE] = ACTIONS(3748), + [anon_sym_LR_DQUOTE] = ACTIONS(3748), + [anon_sym_uR_DQUOTE] = ACTIONS(3748), + [anon_sym_UR_DQUOTE] = ACTIONS(3748), + [anon_sym_u8R_DQUOTE] = ACTIONS(3748), + [anon_sym_co_await] = ACTIONS(3746), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_requires] = ACTIONS(3746), + [anon_sym_CARET_CARET] = ACTIONS(3748), + [anon_sym_LBRACK_COLON] = ACTIONS(3748), + [sym_this] = ACTIONS(3746), + }, + [STATE(740)] = { + [sym_identifier] = ACTIONS(3750), + [aux_sym_preproc_include_token1] = ACTIONS(3750), + [aux_sym_preproc_def_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token2] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3750), + [sym_preproc_directive] = ACTIONS(3750), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_BANG] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3750), + [anon_sym_PLUS] = ACTIONS(3750), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym___extension__] = ACTIONS(3750), + [anon_sym_typedef] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym___attribute] = ACTIONS(3750), + [anon_sym_using] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym___cdecl] = ACTIONS(3750), + [anon_sym___clrcall] = ACTIONS(3750), + [anon_sym___stdcall] = ACTIONS(3750), + [anon_sym___fastcall] = ACTIONS(3750), + [anon_sym___thiscall] = ACTIONS(3750), + [anon_sym___vectorcall] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_signed] = ACTIONS(3750), + [anon_sym_unsigned] = ACTIONS(3750), + [anon_sym_long] = ACTIONS(3750), + [anon_sym_short] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym___inline] = ACTIONS(3750), + [anon_sym___inline__] = ACTIONS(3750), + [anon_sym___forceinline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym___thread] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym___restrict__] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym__Noreturn] = ACTIONS(3750), + [anon_sym_noreturn] = ACTIONS(3750), + [anon_sym__Nonnull] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_alignas] = ACTIONS(3750), + [anon_sym__Alignas] = ACTIONS(3750), + [sym_primitive_type] = ACTIONS(3750), + [anon_sym_enum] = ACTIONS(3750), + [anon_sym_class] = ACTIONS(3750), + [anon_sym_struct] = ACTIONS(3750), + [anon_sym_union] = ACTIONS(3750), + [anon_sym_if] = ACTIONS(3750), + [anon_sym_switch] = ACTIONS(3750), + [anon_sym_case] = ACTIONS(3750), + [anon_sym_default] = ACTIONS(3750), + [anon_sym_while] = ACTIONS(3750), + [anon_sym_do] = ACTIONS(3750), + [anon_sym_for] = ACTIONS(3750), + [anon_sym_return] = ACTIONS(3750), + [anon_sym_break] = ACTIONS(3750), + [anon_sym_continue] = ACTIONS(3750), + [anon_sym_goto] = ACTIONS(3750), + [anon_sym___try] = ACTIONS(3750), + [anon_sym___leave] = ACTIONS(3750), + [anon_sym_not] = ACTIONS(3750), + [anon_sym_compl] = ACTIONS(3750), + [anon_sym_DASH_DASH] = ACTIONS(3752), + [anon_sym_PLUS_PLUS] = ACTIONS(3752), + [anon_sym_sizeof] = ACTIONS(3750), + [anon_sym___alignof__] = ACTIONS(3750), + [anon_sym___alignof] = ACTIONS(3750), + [anon_sym__alignof] = ACTIONS(3750), + [anon_sym_alignof] = ACTIONS(3750), + [anon_sym__Alignof] = ACTIONS(3750), + [anon_sym_offsetof] = ACTIONS(3750), + [anon_sym__Generic] = ACTIONS(3750), + [anon_sym_typename] = ACTIONS(3750), + [anon_sym_asm] = ACTIONS(3750), + [anon_sym___asm__] = ACTIONS(3750), + [anon_sym___asm] = ACTIONS(3750), + [sym_number_literal] = ACTIONS(3752), + [anon_sym_L_SQUOTE] = ACTIONS(3752), + [anon_sym_u_SQUOTE] = ACTIONS(3752), + [anon_sym_U_SQUOTE] = ACTIONS(3752), + [anon_sym_u8_SQUOTE] = ACTIONS(3752), + [anon_sym_SQUOTE] = ACTIONS(3752), + [anon_sym_L_DQUOTE] = ACTIONS(3752), + [anon_sym_u_DQUOTE] = ACTIONS(3752), + [anon_sym_U_DQUOTE] = ACTIONS(3752), + [anon_sym_u8_DQUOTE] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3752), + [sym_true] = ACTIONS(3750), + [sym_false] = ACTIONS(3750), + [anon_sym_NULL] = ACTIONS(3750), + [anon_sym_nullptr] = ACTIONS(3750), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_export] = ACTIONS(3750), + [anon_sym_module] = ACTIONS(3750), + [anon_sym_import] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + [anon_sym_try] = ACTIONS(3750), + [anon_sym_delete] = ACTIONS(3750), + [anon_sym_throw] = ACTIONS(3750), + [anon_sym_namespace] = ACTIONS(3750), + [anon_sym_static_assert] = ACTIONS(3750), + [anon_sym_concept] = ACTIONS(3750), + [anon_sym_co_return] = ACTIONS(3750), + [anon_sym_co_yield] = ACTIONS(3750), + [anon_sym_R_DQUOTE] = ACTIONS(3752), + [anon_sym_LR_DQUOTE] = ACTIONS(3752), + [anon_sym_uR_DQUOTE] = ACTIONS(3752), + [anon_sym_UR_DQUOTE] = ACTIONS(3752), + [anon_sym_u8R_DQUOTE] = ACTIONS(3752), + [anon_sym_co_await] = ACTIONS(3750), + [anon_sym_new] = ACTIONS(3750), + [anon_sym_requires] = ACTIONS(3750), + [anon_sym_CARET_CARET] = ACTIONS(3752), + [anon_sym_LBRACK_COLON] = ACTIONS(3752), + [sym_this] = ACTIONS(3750), + }, + [STATE(741)] = { + [sym_identifier] = ACTIONS(4118), + [aux_sym_preproc_include_token1] = ACTIONS(4118), + [aux_sym_preproc_def_token1] = ACTIONS(4118), + [aux_sym_preproc_if_token1] = ACTIONS(4118), + [aux_sym_preproc_if_token2] = ACTIONS(4118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4118), + [sym_preproc_directive] = ACTIONS(4118), + [anon_sym_LPAREN2] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_TILDE] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_AMP_AMP] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym___extension__] = ACTIONS(4118), + [anon_sym_typedef] = ACTIONS(4118), + [anon_sym_virtual] = ACTIONS(4118), + [anon_sym_extern] = ACTIONS(4118), + [anon_sym___attribute__] = ACTIONS(4118), + [anon_sym___attribute] = ACTIONS(4118), + [anon_sym_using] = ACTIONS(4118), + [anon_sym_COLON_COLON] = ACTIONS(4120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4120), + [anon_sym___declspec] = ACTIONS(4118), + [anon_sym___based] = ACTIONS(4118), + [anon_sym___cdecl] = ACTIONS(4118), + [anon_sym___clrcall] = ACTIONS(4118), + [anon_sym___stdcall] = ACTIONS(4118), + [anon_sym___fastcall] = ACTIONS(4118), + [anon_sym___thiscall] = ACTIONS(4118), + [anon_sym___vectorcall] = ACTIONS(4118), + [anon_sym_LBRACE] = ACTIONS(4120), + [anon_sym_signed] = ACTIONS(4118), + [anon_sym_unsigned] = ACTIONS(4118), + [anon_sym_long] = ACTIONS(4118), + [anon_sym_short] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_static] = ACTIONS(4118), + [anon_sym_register] = ACTIONS(4118), + [anon_sym_inline] = ACTIONS(4118), + [anon_sym___inline] = ACTIONS(4118), + [anon_sym___inline__] = ACTIONS(4118), + [anon_sym___forceinline] = ACTIONS(4118), + [anon_sym_thread_local] = ACTIONS(4118), + [anon_sym___thread] = ACTIONS(4118), + [anon_sym_const] = ACTIONS(4118), + [anon_sym_constexpr] = ACTIONS(4118), + [anon_sym_volatile] = ACTIONS(4118), + [anon_sym_restrict] = ACTIONS(4118), + [anon_sym___restrict__] = ACTIONS(4118), + [anon_sym__Atomic] = ACTIONS(4118), + [anon_sym__Noreturn] = ACTIONS(4118), + [anon_sym_noreturn] = ACTIONS(4118), + [anon_sym__Nonnull] = ACTIONS(4118), + [anon_sym_mutable] = ACTIONS(4118), + [anon_sym_constinit] = ACTIONS(4118), + [anon_sym_consteval] = ACTIONS(4118), + [anon_sym_alignas] = ACTIONS(4118), + [anon_sym__Alignas] = ACTIONS(4118), + [sym_primitive_type] = ACTIONS(4118), + [anon_sym_enum] = ACTIONS(4118), + [anon_sym_class] = ACTIONS(4118), + [anon_sym_struct] = ACTIONS(4118), + [anon_sym_union] = ACTIONS(4118), + [anon_sym_if] = ACTIONS(4118), + [anon_sym_switch] = ACTIONS(4118), + [anon_sym_case] = ACTIONS(4118), + [anon_sym_default] = ACTIONS(4118), + [anon_sym_while] = ACTIONS(4118), + [anon_sym_do] = ACTIONS(4118), + [anon_sym_for] = ACTIONS(4118), + [anon_sym_return] = ACTIONS(4118), + [anon_sym_break] = ACTIONS(4118), + [anon_sym_continue] = ACTIONS(4118), + [anon_sym_goto] = ACTIONS(4118), + [anon_sym___try] = ACTIONS(4118), + [anon_sym___leave] = ACTIONS(4118), + [anon_sym_not] = ACTIONS(4118), + [anon_sym_compl] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_PLUS_PLUS] = ACTIONS(4120), + [anon_sym_sizeof] = ACTIONS(4118), + [anon_sym___alignof__] = ACTIONS(4118), + [anon_sym___alignof] = ACTIONS(4118), + [anon_sym__alignof] = ACTIONS(4118), + [anon_sym_alignof] = ACTIONS(4118), + [anon_sym__Alignof] = ACTIONS(4118), + [anon_sym_offsetof] = ACTIONS(4118), + [anon_sym__Generic] = ACTIONS(4118), + [anon_sym_typename] = ACTIONS(4118), + [anon_sym_asm] = ACTIONS(4118), + [anon_sym___asm__] = ACTIONS(4118), + [anon_sym___asm] = ACTIONS(4118), + [sym_number_literal] = ACTIONS(4120), + [anon_sym_L_SQUOTE] = ACTIONS(4120), + [anon_sym_u_SQUOTE] = ACTIONS(4120), + [anon_sym_U_SQUOTE] = ACTIONS(4120), + [anon_sym_u8_SQUOTE] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4120), + [anon_sym_L_DQUOTE] = ACTIONS(4120), + [anon_sym_u_DQUOTE] = ACTIONS(4120), + [anon_sym_U_DQUOTE] = ACTIONS(4120), + [anon_sym_u8_DQUOTE] = ACTIONS(4120), + [anon_sym_DQUOTE] = ACTIONS(4120), + [sym_true] = ACTIONS(4118), + [sym_false] = ACTIONS(4118), + [anon_sym_NULL] = ACTIONS(4118), + [anon_sym_nullptr] = ACTIONS(4118), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4118), + [anon_sym_decltype] = ACTIONS(4118), + [anon_sym_explicit] = ACTIONS(4118), + [anon_sym_export] = ACTIONS(4118), + [anon_sym_module] = ACTIONS(4118), + [anon_sym_import] = ACTIONS(4118), + [anon_sym_template] = ACTIONS(4118), + [anon_sym_operator] = ACTIONS(4118), + [anon_sym_try] = ACTIONS(4118), + [anon_sym_delete] = ACTIONS(4118), + [anon_sym_throw] = ACTIONS(4118), + [anon_sym_namespace] = ACTIONS(4118), + [anon_sym_static_assert] = ACTIONS(4118), + [anon_sym_concept] = ACTIONS(4118), + [anon_sym_co_return] = ACTIONS(4118), + [anon_sym_co_yield] = ACTIONS(4118), + [anon_sym_R_DQUOTE] = ACTIONS(4120), + [anon_sym_LR_DQUOTE] = ACTIONS(4120), + [anon_sym_uR_DQUOTE] = ACTIONS(4120), + [anon_sym_UR_DQUOTE] = ACTIONS(4120), + [anon_sym_u8R_DQUOTE] = ACTIONS(4120), + [anon_sym_co_await] = ACTIONS(4118), + [anon_sym_new] = ACTIONS(4118), + [anon_sym_requires] = ACTIONS(4118), + [anon_sym_CARET_CARET] = ACTIONS(4120), + [anon_sym_LBRACK_COLON] = ACTIONS(4120), + [sym_this] = ACTIONS(4118), + }, + [STATE(742)] = { + [sym_identifier] = ACTIONS(4219), + [aux_sym_preproc_include_token1] = ACTIONS(4219), + [aux_sym_preproc_def_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token2] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4219), + [sym_preproc_directive] = ACTIONS(4219), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym___extension__] = ACTIONS(4219), + [anon_sym_typedef] = ACTIONS(4219), + [anon_sym_virtual] = ACTIONS(4219), + [anon_sym_extern] = ACTIONS(4219), + [anon_sym___attribute__] = ACTIONS(4219), + [anon_sym___attribute] = ACTIONS(4219), + [anon_sym_using] = ACTIONS(4219), + [anon_sym_COLON_COLON] = ACTIONS(4221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4221), + [anon_sym___declspec] = ACTIONS(4219), + [anon_sym___based] = ACTIONS(4219), + [anon_sym___cdecl] = ACTIONS(4219), + [anon_sym___clrcall] = ACTIONS(4219), + [anon_sym___stdcall] = ACTIONS(4219), + [anon_sym___fastcall] = ACTIONS(4219), + [anon_sym___thiscall] = ACTIONS(4219), + [anon_sym___vectorcall] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4221), + [anon_sym_signed] = ACTIONS(4219), + [anon_sym_unsigned] = ACTIONS(4219), + [anon_sym_long] = ACTIONS(4219), + [anon_sym_short] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_static] = ACTIONS(4219), + [anon_sym_register] = ACTIONS(4219), + [anon_sym_inline] = ACTIONS(4219), + [anon_sym___inline] = ACTIONS(4219), + [anon_sym___inline__] = ACTIONS(4219), + [anon_sym___forceinline] = ACTIONS(4219), + [anon_sym_thread_local] = ACTIONS(4219), + [anon_sym___thread] = ACTIONS(4219), + [anon_sym_const] = ACTIONS(4219), + [anon_sym_constexpr] = ACTIONS(4219), + [anon_sym_volatile] = ACTIONS(4219), + [anon_sym_restrict] = ACTIONS(4219), + [anon_sym___restrict__] = ACTIONS(4219), + [anon_sym__Atomic] = ACTIONS(4219), + [anon_sym__Noreturn] = ACTIONS(4219), + [anon_sym_noreturn] = ACTIONS(4219), + [anon_sym__Nonnull] = ACTIONS(4219), + [anon_sym_mutable] = ACTIONS(4219), + [anon_sym_constinit] = ACTIONS(4219), + [anon_sym_consteval] = ACTIONS(4219), + [anon_sym_alignas] = ACTIONS(4219), + [anon_sym__Alignas] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(4219), + [anon_sym_enum] = ACTIONS(4219), + [anon_sym_class] = ACTIONS(4219), + [anon_sym_struct] = ACTIONS(4219), + [anon_sym_union] = ACTIONS(4219), + [anon_sym_if] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_case] = ACTIONS(4219), + [anon_sym_default] = ACTIONS(4219), + [anon_sym_while] = ACTIONS(4219), + [anon_sym_do] = ACTIONS(4219), + [anon_sym_for] = ACTIONS(4219), + [anon_sym_return] = ACTIONS(4219), + [anon_sym_break] = ACTIONS(4219), + [anon_sym_continue] = ACTIONS(4219), + [anon_sym_goto] = ACTIONS(4219), + [anon_sym___try] = ACTIONS(4219), + [anon_sym___leave] = ACTIONS(4219), + [anon_sym_not] = ACTIONS(4219), + [anon_sym_compl] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_sizeof] = ACTIONS(4219), + [anon_sym___alignof__] = ACTIONS(4219), + [anon_sym___alignof] = ACTIONS(4219), + [anon_sym__alignof] = ACTIONS(4219), + [anon_sym_alignof] = ACTIONS(4219), + [anon_sym__Alignof] = ACTIONS(4219), + [anon_sym_offsetof] = ACTIONS(4219), + [anon_sym__Generic] = ACTIONS(4219), + [anon_sym_typename] = ACTIONS(4219), + [anon_sym_asm] = ACTIONS(4219), + [anon_sym___asm__] = ACTIONS(4219), + [anon_sym___asm] = ACTIONS(4219), + [sym_number_literal] = ACTIONS(4221), + [anon_sym_L_SQUOTE] = ACTIONS(4221), + [anon_sym_u_SQUOTE] = ACTIONS(4221), + [anon_sym_U_SQUOTE] = ACTIONS(4221), + [anon_sym_u8_SQUOTE] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_L_DQUOTE] = ACTIONS(4221), + [anon_sym_u_DQUOTE] = ACTIONS(4221), + [anon_sym_U_DQUOTE] = ACTIONS(4221), + [anon_sym_u8_DQUOTE] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4221), + [sym_true] = ACTIONS(4219), + [sym_false] = ACTIONS(4219), + [anon_sym_NULL] = ACTIONS(4219), + [anon_sym_nullptr] = ACTIONS(4219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4219), + [anon_sym_decltype] = ACTIONS(4219), + [anon_sym_explicit] = ACTIONS(4219), + [anon_sym_export] = ACTIONS(4219), + [anon_sym_module] = ACTIONS(4219), + [anon_sym_import] = ACTIONS(4219), + [anon_sym_template] = ACTIONS(4219), + [anon_sym_operator] = ACTIONS(4219), + [anon_sym_try] = ACTIONS(4219), + [anon_sym_delete] = ACTIONS(4219), + [anon_sym_throw] = ACTIONS(4219), + [anon_sym_namespace] = ACTIONS(4219), + [anon_sym_static_assert] = ACTIONS(4219), + [anon_sym_concept] = ACTIONS(4219), + [anon_sym_co_return] = ACTIONS(4219), + [anon_sym_co_yield] = ACTIONS(4219), + [anon_sym_R_DQUOTE] = ACTIONS(4221), + [anon_sym_LR_DQUOTE] = ACTIONS(4221), + [anon_sym_uR_DQUOTE] = ACTIONS(4221), + [anon_sym_UR_DQUOTE] = ACTIONS(4221), + [anon_sym_u8R_DQUOTE] = ACTIONS(4221), + [anon_sym_co_await] = ACTIONS(4219), + [anon_sym_new] = ACTIONS(4219), + [anon_sym_requires] = ACTIONS(4219), + [anon_sym_CARET_CARET] = ACTIONS(4221), + [anon_sym_LBRACK_COLON] = ACTIONS(4221), + [sym_this] = ACTIONS(4219), + }, + [STATE(743)] = { + [sym_identifier] = ACTIONS(4223), + [aux_sym_preproc_include_token1] = ACTIONS(4223), + [aux_sym_preproc_def_token1] = ACTIONS(4223), + [aux_sym_preproc_if_token1] = ACTIONS(4223), + [aux_sym_preproc_if_token2] = ACTIONS(4223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4223), + [sym_preproc_directive] = ACTIONS(4223), + [anon_sym_LPAREN2] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4225), + [anon_sym_TILDE] = ACTIONS(4225), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym___extension__] = ACTIONS(4223), + [anon_sym_typedef] = ACTIONS(4223), + [anon_sym_virtual] = ACTIONS(4223), + [anon_sym_extern] = ACTIONS(4223), + [anon_sym___attribute__] = ACTIONS(4223), + [anon_sym___attribute] = ACTIONS(4223), + [anon_sym_using] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4225), + [anon_sym___declspec] = ACTIONS(4223), + [anon_sym___based] = ACTIONS(4223), + [anon_sym___cdecl] = ACTIONS(4223), + [anon_sym___clrcall] = ACTIONS(4223), + [anon_sym___stdcall] = ACTIONS(4223), + [anon_sym___fastcall] = ACTIONS(4223), + [anon_sym___thiscall] = ACTIONS(4223), + [anon_sym___vectorcall] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_signed] = ACTIONS(4223), + [anon_sym_unsigned] = ACTIONS(4223), + [anon_sym_long] = ACTIONS(4223), + [anon_sym_short] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_static] = ACTIONS(4223), + [anon_sym_register] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym___inline] = ACTIONS(4223), + [anon_sym___inline__] = ACTIONS(4223), + [anon_sym___forceinline] = ACTIONS(4223), + [anon_sym_thread_local] = ACTIONS(4223), + [anon_sym___thread] = ACTIONS(4223), + [anon_sym_const] = ACTIONS(4223), + [anon_sym_constexpr] = ACTIONS(4223), + [anon_sym_volatile] = ACTIONS(4223), + [anon_sym_restrict] = ACTIONS(4223), + [anon_sym___restrict__] = ACTIONS(4223), + [anon_sym__Atomic] = ACTIONS(4223), + [anon_sym__Noreturn] = ACTIONS(4223), + [anon_sym_noreturn] = ACTIONS(4223), + [anon_sym__Nonnull] = ACTIONS(4223), + [anon_sym_mutable] = ACTIONS(4223), + [anon_sym_constinit] = ACTIONS(4223), + [anon_sym_consteval] = ACTIONS(4223), + [anon_sym_alignas] = ACTIONS(4223), + [anon_sym__Alignas] = ACTIONS(4223), + [sym_primitive_type] = ACTIONS(4223), + [anon_sym_enum] = ACTIONS(4223), + [anon_sym_class] = ACTIONS(4223), + [anon_sym_struct] = ACTIONS(4223), + [anon_sym_union] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_switch] = ACTIONS(4223), + [anon_sym_case] = ACTIONS(4223), + [anon_sym_default] = ACTIONS(4223), + [anon_sym_while] = ACTIONS(4223), + [anon_sym_do] = ACTIONS(4223), + [anon_sym_for] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_goto] = ACTIONS(4223), + [anon_sym___try] = ACTIONS(4223), + [anon_sym___leave] = ACTIONS(4223), + [anon_sym_not] = ACTIONS(4223), + [anon_sym_compl] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_sizeof] = ACTIONS(4223), + [anon_sym___alignof__] = ACTIONS(4223), + [anon_sym___alignof] = ACTIONS(4223), + [anon_sym__alignof] = ACTIONS(4223), + [anon_sym_alignof] = ACTIONS(4223), + [anon_sym__Alignof] = ACTIONS(4223), + [anon_sym_offsetof] = ACTIONS(4223), + [anon_sym__Generic] = ACTIONS(4223), + [anon_sym_typename] = ACTIONS(4223), + [anon_sym_asm] = ACTIONS(4223), + [anon_sym___asm__] = ACTIONS(4223), + [anon_sym___asm] = ACTIONS(4223), + [sym_number_literal] = ACTIONS(4225), + [anon_sym_L_SQUOTE] = ACTIONS(4225), + [anon_sym_u_SQUOTE] = ACTIONS(4225), + [anon_sym_U_SQUOTE] = ACTIONS(4225), + [anon_sym_u8_SQUOTE] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4225), + [anon_sym_L_DQUOTE] = ACTIONS(4225), + [anon_sym_u_DQUOTE] = ACTIONS(4225), + [anon_sym_U_DQUOTE] = ACTIONS(4225), + [anon_sym_u8_DQUOTE] = ACTIONS(4225), + [anon_sym_DQUOTE] = ACTIONS(4225), + [sym_true] = ACTIONS(4223), + [sym_false] = ACTIONS(4223), + [anon_sym_NULL] = ACTIONS(4223), + [anon_sym_nullptr] = ACTIONS(4223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4223), + [anon_sym_decltype] = ACTIONS(4223), + [anon_sym_explicit] = ACTIONS(4223), + [anon_sym_export] = ACTIONS(4223), + [anon_sym_module] = ACTIONS(4223), + [anon_sym_import] = ACTIONS(4223), + [anon_sym_template] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_delete] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_namespace] = ACTIONS(4223), + [anon_sym_static_assert] = ACTIONS(4223), + [anon_sym_concept] = ACTIONS(4223), + [anon_sym_co_return] = ACTIONS(4223), + [anon_sym_co_yield] = ACTIONS(4223), + [anon_sym_R_DQUOTE] = ACTIONS(4225), + [anon_sym_LR_DQUOTE] = ACTIONS(4225), + [anon_sym_uR_DQUOTE] = ACTIONS(4225), + [anon_sym_UR_DQUOTE] = ACTIONS(4225), + [anon_sym_u8R_DQUOTE] = ACTIONS(4225), + [anon_sym_co_await] = ACTIONS(4223), + [anon_sym_new] = ACTIONS(4223), + [anon_sym_requires] = ACTIONS(4223), + [anon_sym_CARET_CARET] = ACTIONS(4225), + [anon_sym_LBRACK_COLON] = ACTIONS(4225), + [sym_this] = ACTIONS(4223), + }, + [STATE(744)] = { + [sym_identifier] = ACTIONS(4227), + [aux_sym_preproc_include_token1] = ACTIONS(4227), + [aux_sym_preproc_def_token1] = ACTIONS(4227), + [aux_sym_preproc_if_token1] = ACTIONS(4227), + [aux_sym_preproc_if_token2] = ACTIONS(4227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4227), + [sym_preproc_directive] = ACTIONS(4227), + [anon_sym_LPAREN2] = ACTIONS(4229), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4229), + [anon_sym_AMP_AMP] = ACTIONS(4229), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4229), + [anon_sym___extension__] = ACTIONS(4227), + [anon_sym_typedef] = ACTIONS(4227), + [anon_sym_virtual] = ACTIONS(4227), + [anon_sym_extern] = ACTIONS(4227), + [anon_sym___attribute__] = ACTIONS(4227), + [anon_sym___attribute] = ACTIONS(4227), + [anon_sym_using] = ACTIONS(4227), + [anon_sym_COLON_COLON] = ACTIONS(4229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4229), + [anon_sym___declspec] = ACTIONS(4227), + [anon_sym___based] = ACTIONS(4227), + [anon_sym___cdecl] = ACTIONS(4227), + [anon_sym___clrcall] = ACTIONS(4227), + [anon_sym___stdcall] = ACTIONS(4227), + [anon_sym___fastcall] = ACTIONS(4227), + [anon_sym___thiscall] = ACTIONS(4227), + [anon_sym___vectorcall] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_signed] = ACTIONS(4227), + [anon_sym_unsigned] = ACTIONS(4227), + [anon_sym_long] = ACTIONS(4227), + [anon_sym_short] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4227), + [anon_sym_static] = ACTIONS(4227), + [anon_sym_register] = ACTIONS(4227), + [anon_sym_inline] = ACTIONS(4227), + [anon_sym___inline] = ACTIONS(4227), + [anon_sym___inline__] = ACTIONS(4227), + [anon_sym___forceinline] = ACTIONS(4227), + [anon_sym_thread_local] = ACTIONS(4227), + [anon_sym___thread] = ACTIONS(4227), + [anon_sym_const] = ACTIONS(4227), + [anon_sym_constexpr] = ACTIONS(4227), + [anon_sym_volatile] = ACTIONS(4227), + [anon_sym_restrict] = ACTIONS(4227), + [anon_sym___restrict__] = ACTIONS(4227), + [anon_sym__Atomic] = ACTIONS(4227), + [anon_sym__Noreturn] = ACTIONS(4227), + [anon_sym_noreturn] = ACTIONS(4227), + [anon_sym__Nonnull] = ACTIONS(4227), + [anon_sym_mutable] = ACTIONS(4227), + [anon_sym_constinit] = ACTIONS(4227), + [anon_sym_consteval] = ACTIONS(4227), + [anon_sym_alignas] = ACTIONS(4227), + [anon_sym__Alignas] = ACTIONS(4227), + [sym_primitive_type] = ACTIONS(4227), + [anon_sym_enum] = ACTIONS(4227), + [anon_sym_class] = ACTIONS(4227), + [anon_sym_struct] = ACTIONS(4227), + [anon_sym_union] = ACTIONS(4227), + [anon_sym_if] = ACTIONS(4227), + [anon_sym_switch] = ACTIONS(4227), + [anon_sym_case] = ACTIONS(4227), + [anon_sym_default] = ACTIONS(4227), + [anon_sym_while] = ACTIONS(4227), + [anon_sym_do] = ACTIONS(4227), + [anon_sym_for] = ACTIONS(4227), + [anon_sym_return] = ACTIONS(4227), + [anon_sym_break] = ACTIONS(4227), + [anon_sym_continue] = ACTIONS(4227), + [anon_sym_goto] = ACTIONS(4227), + [anon_sym___try] = ACTIONS(4227), + [anon_sym___leave] = ACTIONS(4227), + [anon_sym_not] = ACTIONS(4227), + [anon_sym_compl] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_PLUS_PLUS] = ACTIONS(4229), + [anon_sym_sizeof] = ACTIONS(4227), + [anon_sym___alignof__] = ACTIONS(4227), + [anon_sym___alignof] = ACTIONS(4227), + [anon_sym__alignof] = ACTIONS(4227), + [anon_sym_alignof] = ACTIONS(4227), + [anon_sym__Alignof] = ACTIONS(4227), + [anon_sym_offsetof] = ACTIONS(4227), + [anon_sym__Generic] = ACTIONS(4227), + [anon_sym_typename] = ACTIONS(4227), + [anon_sym_asm] = ACTIONS(4227), + [anon_sym___asm__] = ACTIONS(4227), + [anon_sym___asm] = ACTIONS(4227), + [sym_number_literal] = ACTIONS(4229), + [anon_sym_L_SQUOTE] = ACTIONS(4229), + [anon_sym_u_SQUOTE] = ACTIONS(4229), + [anon_sym_U_SQUOTE] = ACTIONS(4229), + [anon_sym_u8_SQUOTE] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4229), + [anon_sym_L_DQUOTE] = ACTIONS(4229), + [anon_sym_u_DQUOTE] = ACTIONS(4229), + [anon_sym_U_DQUOTE] = ACTIONS(4229), + [anon_sym_u8_DQUOTE] = ACTIONS(4229), + [anon_sym_DQUOTE] = ACTIONS(4229), + [sym_true] = ACTIONS(4227), + [sym_false] = ACTIONS(4227), + [anon_sym_NULL] = ACTIONS(4227), + [anon_sym_nullptr] = ACTIONS(4227), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4227), + [anon_sym_decltype] = ACTIONS(4227), + [anon_sym_explicit] = ACTIONS(4227), + [anon_sym_export] = ACTIONS(4227), + [anon_sym_module] = ACTIONS(4227), + [anon_sym_import] = ACTIONS(4227), + [anon_sym_template] = ACTIONS(4227), + [anon_sym_operator] = ACTIONS(4227), + [anon_sym_try] = ACTIONS(4227), + [anon_sym_delete] = ACTIONS(4227), + [anon_sym_throw] = ACTIONS(4227), + [anon_sym_namespace] = ACTIONS(4227), + [anon_sym_static_assert] = ACTIONS(4227), + [anon_sym_concept] = ACTIONS(4227), + [anon_sym_co_return] = ACTIONS(4227), + [anon_sym_co_yield] = ACTIONS(4227), + [anon_sym_R_DQUOTE] = ACTIONS(4229), + [anon_sym_LR_DQUOTE] = ACTIONS(4229), + [anon_sym_uR_DQUOTE] = ACTIONS(4229), + [anon_sym_UR_DQUOTE] = ACTIONS(4229), + [anon_sym_u8R_DQUOTE] = ACTIONS(4229), + [anon_sym_co_await] = ACTIONS(4227), + [anon_sym_new] = ACTIONS(4227), + [anon_sym_requires] = ACTIONS(4227), + [anon_sym_CARET_CARET] = ACTIONS(4229), + [anon_sym_LBRACK_COLON] = ACTIONS(4229), + [sym_this] = ACTIONS(4227), + }, + [STATE(745)] = { + [sym_identifier] = ACTIONS(4231), + [aux_sym_preproc_include_token1] = ACTIONS(4231), + [aux_sym_preproc_def_token1] = ACTIONS(4231), + [aux_sym_preproc_if_token1] = ACTIONS(4231), + [aux_sym_preproc_if_token2] = ACTIONS(4231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4231), + [sym_preproc_directive] = ACTIONS(4231), + [anon_sym_LPAREN2] = ACTIONS(4233), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_TILDE] = ACTIONS(4233), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_AMP_AMP] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym___extension__] = ACTIONS(4231), + [anon_sym_typedef] = ACTIONS(4231), + [anon_sym_virtual] = ACTIONS(4231), + [anon_sym_extern] = ACTIONS(4231), + [anon_sym___attribute__] = ACTIONS(4231), + [anon_sym___attribute] = ACTIONS(4231), + [anon_sym_using] = ACTIONS(4231), + [anon_sym_COLON_COLON] = ACTIONS(4233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4233), + [anon_sym___declspec] = ACTIONS(4231), + [anon_sym___based] = ACTIONS(4231), + [anon_sym___cdecl] = ACTIONS(4231), + [anon_sym___clrcall] = ACTIONS(4231), + [anon_sym___stdcall] = ACTIONS(4231), + [anon_sym___fastcall] = ACTIONS(4231), + [anon_sym___thiscall] = ACTIONS(4231), + [anon_sym___vectorcall] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4233), + [anon_sym_signed] = ACTIONS(4231), + [anon_sym_unsigned] = ACTIONS(4231), + [anon_sym_long] = ACTIONS(4231), + [anon_sym_short] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_static] = ACTIONS(4231), + [anon_sym_register] = ACTIONS(4231), + [anon_sym_inline] = ACTIONS(4231), + [anon_sym___inline] = ACTIONS(4231), + [anon_sym___inline__] = ACTIONS(4231), + [anon_sym___forceinline] = ACTIONS(4231), + [anon_sym_thread_local] = ACTIONS(4231), + [anon_sym___thread] = ACTIONS(4231), + [anon_sym_const] = ACTIONS(4231), + [anon_sym_constexpr] = ACTIONS(4231), + [anon_sym_volatile] = ACTIONS(4231), + [anon_sym_restrict] = ACTIONS(4231), + [anon_sym___restrict__] = ACTIONS(4231), + [anon_sym__Atomic] = ACTIONS(4231), + [anon_sym__Noreturn] = ACTIONS(4231), + [anon_sym_noreturn] = ACTIONS(4231), + [anon_sym__Nonnull] = ACTIONS(4231), + [anon_sym_mutable] = ACTIONS(4231), + [anon_sym_constinit] = ACTIONS(4231), + [anon_sym_consteval] = ACTIONS(4231), + [anon_sym_alignas] = ACTIONS(4231), + [anon_sym__Alignas] = ACTIONS(4231), + [sym_primitive_type] = ACTIONS(4231), + [anon_sym_enum] = ACTIONS(4231), + [anon_sym_class] = ACTIONS(4231), + [anon_sym_struct] = ACTIONS(4231), + [anon_sym_union] = ACTIONS(4231), + [anon_sym_if] = ACTIONS(4231), + [anon_sym_switch] = ACTIONS(4231), + [anon_sym_case] = ACTIONS(4231), + [anon_sym_default] = ACTIONS(4231), + [anon_sym_while] = ACTIONS(4231), + [anon_sym_do] = ACTIONS(4231), + [anon_sym_for] = ACTIONS(4231), + [anon_sym_return] = ACTIONS(4231), + [anon_sym_break] = ACTIONS(4231), + [anon_sym_continue] = ACTIONS(4231), + [anon_sym_goto] = ACTIONS(4231), + [anon_sym___try] = ACTIONS(4231), + [anon_sym___leave] = ACTIONS(4231), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_compl] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_PLUS_PLUS] = ACTIONS(4233), + [anon_sym_sizeof] = ACTIONS(4231), + [anon_sym___alignof__] = ACTIONS(4231), + [anon_sym___alignof] = ACTIONS(4231), + [anon_sym__alignof] = ACTIONS(4231), + [anon_sym_alignof] = ACTIONS(4231), + [anon_sym__Alignof] = ACTIONS(4231), + [anon_sym_offsetof] = ACTIONS(4231), + [anon_sym__Generic] = ACTIONS(4231), + [anon_sym_typename] = ACTIONS(4231), + [anon_sym_asm] = ACTIONS(4231), + [anon_sym___asm__] = ACTIONS(4231), + [anon_sym___asm] = ACTIONS(4231), + [sym_number_literal] = ACTIONS(4233), + [anon_sym_L_SQUOTE] = ACTIONS(4233), + [anon_sym_u_SQUOTE] = ACTIONS(4233), + [anon_sym_U_SQUOTE] = ACTIONS(4233), + [anon_sym_u8_SQUOTE] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4233), + [anon_sym_L_DQUOTE] = ACTIONS(4233), + [anon_sym_u_DQUOTE] = ACTIONS(4233), + [anon_sym_U_DQUOTE] = ACTIONS(4233), + [anon_sym_u8_DQUOTE] = ACTIONS(4233), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym_true] = ACTIONS(4231), + [sym_false] = ACTIONS(4231), + [anon_sym_NULL] = ACTIONS(4231), + [anon_sym_nullptr] = ACTIONS(4231), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4231), + [anon_sym_decltype] = ACTIONS(4231), + [anon_sym_explicit] = ACTIONS(4231), + [anon_sym_export] = ACTIONS(4231), + [anon_sym_module] = ACTIONS(4231), + [anon_sym_import] = ACTIONS(4231), + [anon_sym_template] = ACTIONS(4231), + [anon_sym_operator] = ACTIONS(4231), + [anon_sym_try] = ACTIONS(4231), + [anon_sym_delete] = ACTIONS(4231), + [anon_sym_throw] = ACTIONS(4231), + [anon_sym_namespace] = ACTIONS(4231), + [anon_sym_static_assert] = ACTIONS(4231), + [anon_sym_concept] = ACTIONS(4231), + [anon_sym_co_return] = ACTIONS(4231), + [anon_sym_co_yield] = ACTIONS(4231), + [anon_sym_R_DQUOTE] = ACTIONS(4233), + [anon_sym_LR_DQUOTE] = ACTIONS(4233), + [anon_sym_uR_DQUOTE] = ACTIONS(4233), + [anon_sym_UR_DQUOTE] = ACTIONS(4233), + [anon_sym_u8R_DQUOTE] = ACTIONS(4233), + [anon_sym_co_await] = ACTIONS(4231), + [anon_sym_new] = ACTIONS(4231), + [anon_sym_requires] = ACTIONS(4231), + [anon_sym_CARET_CARET] = ACTIONS(4233), + [anon_sym_LBRACK_COLON] = ACTIONS(4233), + [sym_this] = ACTIONS(4231), + }, + [STATE(746)] = { + [sym_identifier] = ACTIONS(4235), + [aux_sym_preproc_include_token1] = ACTIONS(4235), + [aux_sym_preproc_def_token1] = ACTIONS(4235), + [aux_sym_preproc_if_token1] = ACTIONS(4235), + [aux_sym_preproc_if_token2] = ACTIONS(4235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4235), + [sym_preproc_directive] = ACTIONS(4235), + [anon_sym_LPAREN2] = ACTIONS(4237), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_TILDE] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4237), + [anon_sym_AMP_AMP] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4237), + [anon_sym___extension__] = ACTIONS(4235), + [anon_sym_typedef] = ACTIONS(4235), + [anon_sym_virtual] = ACTIONS(4235), + [anon_sym_extern] = ACTIONS(4235), + [anon_sym___attribute__] = ACTIONS(4235), + [anon_sym___attribute] = ACTIONS(4235), + [anon_sym_using] = ACTIONS(4235), + [anon_sym_COLON_COLON] = ACTIONS(4237), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4237), + [anon_sym___declspec] = ACTIONS(4235), + [anon_sym___based] = ACTIONS(4235), + [anon_sym___cdecl] = ACTIONS(4235), + [anon_sym___clrcall] = ACTIONS(4235), + [anon_sym___stdcall] = ACTIONS(4235), + [anon_sym___fastcall] = ACTIONS(4235), + [anon_sym___thiscall] = ACTIONS(4235), + [anon_sym___vectorcall] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4237), + [anon_sym_signed] = ACTIONS(4235), + [anon_sym_unsigned] = ACTIONS(4235), + [anon_sym_long] = ACTIONS(4235), + [anon_sym_short] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4235), + [anon_sym_static] = ACTIONS(4235), + [anon_sym_register] = ACTIONS(4235), + [anon_sym_inline] = ACTIONS(4235), + [anon_sym___inline] = ACTIONS(4235), + [anon_sym___inline__] = ACTIONS(4235), + [anon_sym___forceinline] = ACTIONS(4235), + [anon_sym_thread_local] = ACTIONS(4235), + [anon_sym___thread] = ACTIONS(4235), + [anon_sym_const] = ACTIONS(4235), + [anon_sym_constexpr] = ACTIONS(4235), + [anon_sym_volatile] = ACTIONS(4235), + [anon_sym_restrict] = ACTIONS(4235), + [anon_sym___restrict__] = ACTIONS(4235), + [anon_sym__Atomic] = ACTIONS(4235), + [anon_sym__Noreturn] = ACTIONS(4235), + [anon_sym_noreturn] = ACTIONS(4235), + [anon_sym__Nonnull] = ACTIONS(4235), + [anon_sym_mutable] = ACTIONS(4235), + [anon_sym_constinit] = ACTIONS(4235), + [anon_sym_consteval] = ACTIONS(4235), + [anon_sym_alignas] = ACTIONS(4235), + [anon_sym__Alignas] = ACTIONS(4235), + [sym_primitive_type] = ACTIONS(4235), + [anon_sym_enum] = ACTIONS(4235), + [anon_sym_class] = ACTIONS(4235), + [anon_sym_struct] = ACTIONS(4235), + [anon_sym_union] = ACTIONS(4235), + [anon_sym_if] = ACTIONS(4235), + [anon_sym_switch] = ACTIONS(4235), + [anon_sym_case] = ACTIONS(4235), + [anon_sym_default] = ACTIONS(4235), + [anon_sym_while] = ACTIONS(4235), + [anon_sym_do] = ACTIONS(4235), + [anon_sym_for] = ACTIONS(4235), + [anon_sym_return] = ACTIONS(4235), + [anon_sym_break] = ACTIONS(4235), + [anon_sym_continue] = ACTIONS(4235), + [anon_sym_goto] = ACTIONS(4235), + [anon_sym___try] = ACTIONS(4235), + [anon_sym___leave] = ACTIONS(4235), + [anon_sym_not] = ACTIONS(4235), + [anon_sym_compl] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_PLUS_PLUS] = ACTIONS(4237), + [anon_sym_sizeof] = ACTIONS(4235), + [anon_sym___alignof__] = ACTIONS(4235), + [anon_sym___alignof] = ACTIONS(4235), + [anon_sym__alignof] = ACTIONS(4235), + [anon_sym_alignof] = ACTIONS(4235), + [anon_sym__Alignof] = ACTIONS(4235), + [anon_sym_offsetof] = ACTIONS(4235), + [anon_sym__Generic] = ACTIONS(4235), + [anon_sym_typename] = ACTIONS(4235), + [anon_sym_asm] = ACTIONS(4235), + [anon_sym___asm__] = ACTIONS(4235), + [anon_sym___asm] = ACTIONS(4235), + [sym_number_literal] = ACTIONS(4237), + [anon_sym_L_SQUOTE] = ACTIONS(4237), + [anon_sym_u_SQUOTE] = ACTIONS(4237), + [anon_sym_U_SQUOTE] = ACTIONS(4237), + [anon_sym_u8_SQUOTE] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4237), + [anon_sym_L_DQUOTE] = ACTIONS(4237), + [anon_sym_u_DQUOTE] = ACTIONS(4237), + [anon_sym_U_DQUOTE] = ACTIONS(4237), + [anon_sym_u8_DQUOTE] = ACTIONS(4237), + [anon_sym_DQUOTE] = ACTIONS(4237), + [sym_true] = ACTIONS(4235), + [sym_false] = ACTIONS(4235), + [anon_sym_NULL] = ACTIONS(4235), + [anon_sym_nullptr] = ACTIONS(4235), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4235), + [anon_sym_decltype] = ACTIONS(4235), + [anon_sym_explicit] = ACTIONS(4235), + [anon_sym_export] = ACTIONS(4235), + [anon_sym_module] = ACTIONS(4235), + [anon_sym_import] = ACTIONS(4235), + [anon_sym_template] = ACTIONS(4235), + [anon_sym_operator] = ACTIONS(4235), + [anon_sym_try] = ACTIONS(4235), + [anon_sym_delete] = ACTIONS(4235), + [anon_sym_throw] = ACTIONS(4235), + [anon_sym_namespace] = ACTIONS(4235), + [anon_sym_static_assert] = ACTIONS(4235), + [anon_sym_concept] = ACTIONS(4235), + [anon_sym_co_return] = ACTIONS(4235), + [anon_sym_co_yield] = ACTIONS(4235), + [anon_sym_R_DQUOTE] = ACTIONS(4237), + [anon_sym_LR_DQUOTE] = ACTIONS(4237), + [anon_sym_uR_DQUOTE] = ACTIONS(4237), + [anon_sym_UR_DQUOTE] = ACTIONS(4237), + [anon_sym_u8R_DQUOTE] = ACTIONS(4237), + [anon_sym_co_await] = ACTIONS(4235), + [anon_sym_new] = ACTIONS(4235), + [anon_sym_requires] = ACTIONS(4235), + [anon_sym_CARET_CARET] = ACTIONS(4237), + [anon_sym_LBRACK_COLON] = ACTIONS(4237), + [sym_this] = ACTIONS(4235), + }, + [STATE(747)] = { + [sym_expression] = STATE(5842), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(5943), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_RPAREN] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(25), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(2384), + [anon_sym_LBRACK] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [anon_sym_COLON_RBRACK] = ACTIONS(2384), + [sym_this] = ACTIONS(237), + }, + [STATE(748)] = { + [sym_identifier] = ACTIONS(4219), + [aux_sym_preproc_include_token1] = ACTIONS(4219), + [aux_sym_preproc_def_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token2] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4219), + [sym_preproc_directive] = ACTIONS(4219), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym___extension__] = ACTIONS(4219), + [anon_sym_typedef] = ACTIONS(4219), + [anon_sym_virtual] = ACTIONS(4219), + [anon_sym_extern] = ACTIONS(4219), + [anon_sym___attribute__] = ACTIONS(4219), + [anon_sym___attribute] = ACTIONS(4219), + [anon_sym_using] = ACTIONS(4219), + [anon_sym_COLON_COLON] = ACTIONS(4221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4221), + [anon_sym___declspec] = ACTIONS(4219), + [anon_sym___based] = ACTIONS(4219), + [anon_sym___cdecl] = ACTIONS(4219), + [anon_sym___clrcall] = ACTIONS(4219), + [anon_sym___stdcall] = ACTIONS(4219), + [anon_sym___fastcall] = ACTIONS(4219), + [anon_sym___thiscall] = ACTIONS(4219), + [anon_sym___vectorcall] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4221), + [anon_sym_signed] = ACTIONS(4219), + [anon_sym_unsigned] = ACTIONS(4219), + [anon_sym_long] = ACTIONS(4219), + [anon_sym_short] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_static] = ACTIONS(4219), + [anon_sym_register] = ACTIONS(4219), + [anon_sym_inline] = ACTIONS(4219), + [anon_sym___inline] = ACTIONS(4219), + [anon_sym___inline__] = ACTIONS(4219), + [anon_sym___forceinline] = ACTIONS(4219), + [anon_sym_thread_local] = ACTIONS(4219), + [anon_sym___thread] = ACTIONS(4219), + [anon_sym_const] = ACTIONS(4219), + [anon_sym_constexpr] = ACTIONS(4219), + [anon_sym_volatile] = ACTIONS(4219), + [anon_sym_restrict] = ACTIONS(4219), + [anon_sym___restrict__] = ACTIONS(4219), + [anon_sym__Atomic] = ACTIONS(4219), + [anon_sym__Noreturn] = ACTIONS(4219), + [anon_sym_noreturn] = ACTIONS(4219), + [anon_sym__Nonnull] = ACTIONS(4219), + [anon_sym_mutable] = ACTIONS(4219), + [anon_sym_constinit] = ACTIONS(4219), + [anon_sym_consteval] = ACTIONS(4219), + [anon_sym_alignas] = ACTIONS(4219), + [anon_sym__Alignas] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(4219), + [anon_sym_enum] = ACTIONS(4219), + [anon_sym_class] = ACTIONS(4219), + [anon_sym_struct] = ACTIONS(4219), + [anon_sym_union] = ACTIONS(4219), + [anon_sym_if] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_case] = ACTIONS(4219), + [anon_sym_default] = ACTIONS(4219), + [anon_sym_while] = ACTIONS(4219), + [anon_sym_do] = ACTIONS(4219), + [anon_sym_for] = ACTIONS(4219), + [anon_sym_return] = ACTIONS(4219), + [anon_sym_break] = ACTIONS(4219), + [anon_sym_continue] = ACTIONS(4219), + [anon_sym_goto] = ACTIONS(4219), + [anon_sym___try] = ACTIONS(4219), + [anon_sym___leave] = ACTIONS(4219), + [anon_sym_not] = ACTIONS(4219), + [anon_sym_compl] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_sizeof] = ACTIONS(4219), + [anon_sym___alignof__] = ACTIONS(4219), + [anon_sym___alignof] = ACTIONS(4219), + [anon_sym__alignof] = ACTIONS(4219), + [anon_sym_alignof] = ACTIONS(4219), + [anon_sym__Alignof] = ACTIONS(4219), + [anon_sym_offsetof] = ACTIONS(4219), + [anon_sym__Generic] = ACTIONS(4219), + [anon_sym_typename] = ACTIONS(4219), + [anon_sym_asm] = ACTIONS(4219), + [anon_sym___asm__] = ACTIONS(4219), + [anon_sym___asm] = ACTIONS(4219), + [sym_number_literal] = ACTIONS(4221), + [anon_sym_L_SQUOTE] = ACTIONS(4221), + [anon_sym_u_SQUOTE] = ACTIONS(4221), + [anon_sym_U_SQUOTE] = ACTIONS(4221), + [anon_sym_u8_SQUOTE] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_L_DQUOTE] = ACTIONS(4221), + [anon_sym_u_DQUOTE] = ACTIONS(4221), + [anon_sym_U_DQUOTE] = ACTIONS(4221), + [anon_sym_u8_DQUOTE] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4221), + [sym_true] = ACTIONS(4219), + [sym_false] = ACTIONS(4219), + [anon_sym_NULL] = ACTIONS(4219), + [anon_sym_nullptr] = ACTIONS(4219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4219), + [anon_sym_decltype] = ACTIONS(4219), + [anon_sym_explicit] = ACTIONS(4219), + [anon_sym_export] = ACTIONS(4219), + [anon_sym_module] = ACTIONS(4219), + [anon_sym_import] = ACTIONS(4219), + [anon_sym_template] = ACTIONS(4219), + [anon_sym_operator] = ACTIONS(4219), + [anon_sym_try] = ACTIONS(4219), + [anon_sym_delete] = ACTIONS(4219), + [anon_sym_throw] = ACTIONS(4219), + [anon_sym_namespace] = ACTIONS(4219), + [anon_sym_static_assert] = ACTIONS(4219), + [anon_sym_concept] = ACTIONS(4219), + [anon_sym_co_return] = ACTIONS(4219), + [anon_sym_co_yield] = ACTIONS(4219), + [anon_sym_R_DQUOTE] = ACTIONS(4221), + [anon_sym_LR_DQUOTE] = ACTIONS(4221), + [anon_sym_uR_DQUOTE] = ACTIONS(4221), + [anon_sym_UR_DQUOTE] = ACTIONS(4221), + [anon_sym_u8R_DQUOTE] = ACTIONS(4221), + [anon_sym_co_await] = ACTIONS(4219), + [anon_sym_new] = ACTIONS(4219), + [anon_sym_requires] = ACTIONS(4219), + [anon_sym_CARET_CARET] = ACTIONS(4221), + [anon_sym_LBRACK_COLON] = ACTIONS(4221), + [sym_this] = ACTIONS(4219), + }, + [STATE(749)] = { + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym___cdecl] = ACTIONS(4271), + [anon_sym___clrcall] = ACTIONS(4271), + [anon_sym___stdcall] = ACTIONS(4271), + [anon_sym___fastcall] = ACTIONS(4271), + [anon_sym___thiscall] = ACTIONS(4271), + [anon_sym___vectorcall] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_switch] = ACTIONS(4271), + [anon_sym_case] = ACTIONS(4271), + [anon_sym_default] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_do] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_goto] = ACTIONS(4271), + [anon_sym___try] = ACTIONS(4271), + [anon_sym___leave] = ACTIONS(4271), + [anon_sym_not] = ACTIONS(4271), + [anon_sym_compl] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_sizeof] = ACTIONS(4271), + [anon_sym___alignof__] = ACTIONS(4271), + [anon_sym___alignof] = ACTIONS(4271), + [anon_sym__alignof] = ACTIONS(4271), + [anon_sym_alignof] = ACTIONS(4271), + [anon_sym__Alignof] = ACTIONS(4271), + [anon_sym_offsetof] = ACTIONS(4271), + [anon_sym__Generic] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [anon_sym_asm] = ACTIONS(4271), + [anon_sym___asm__] = ACTIONS(4271), + [anon_sym___asm] = ACTIONS(4271), + [sym_number_literal] = ACTIONS(4273), + [anon_sym_L_SQUOTE] = ACTIONS(4273), + [anon_sym_u_SQUOTE] = ACTIONS(4273), + [anon_sym_U_SQUOTE] = ACTIONS(4273), + [anon_sym_u8_SQUOTE] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4273), + [anon_sym_L_DQUOTE] = ACTIONS(4273), + [anon_sym_u_DQUOTE] = ACTIONS(4273), + [anon_sym_U_DQUOTE] = ACTIONS(4273), + [anon_sym_u8_DQUOTE] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(4273), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [anon_sym_NULL] = ACTIONS(4271), + [anon_sym_nullptr] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_export] = ACTIONS(4271), + [anon_sym_module] = ACTIONS(4271), + [anon_sym_import] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_delete] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_namespace] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_concept] = ACTIONS(4271), + [anon_sym_co_return] = ACTIONS(4271), + [anon_sym_co_yield] = ACTIONS(4271), + [anon_sym_R_DQUOTE] = ACTIONS(4273), + [anon_sym_LR_DQUOTE] = ACTIONS(4273), + [anon_sym_uR_DQUOTE] = ACTIONS(4273), + [anon_sym_UR_DQUOTE] = ACTIONS(4273), + [anon_sym_u8R_DQUOTE] = ACTIONS(4273), + [anon_sym_co_await] = ACTIONS(4271), + [anon_sym_new] = ACTIONS(4271), + [anon_sym_requires] = ACTIONS(4271), + [anon_sym_CARET_CARET] = ACTIONS(4273), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), + [sym_this] = ACTIONS(4271), + }, + [STATE(750)] = { + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym___cdecl] = ACTIONS(4271), + [anon_sym___clrcall] = ACTIONS(4271), + [anon_sym___stdcall] = ACTIONS(4271), + [anon_sym___fastcall] = ACTIONS(4271), + [anon_sym___thiscall] = ACTIONS(4271), + [anon_sym___vectorcall] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_switch] = ACTIONS(4271), + [anon_sym_case] = ACTIONS(4271), + [anon_sym_default] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_do] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_goto] = ACTIONS(4271), + [anon_sym___try] = ACTIONS(4271), + [anon_sym___leave] = ACTIONS(4271), + [anon_sym_not] = ACTIONS(4271), + [anon_sym_compl] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_sizeof] = ACTIONS(4271), + [anon_sym___alignof__] = ACTIONS(4271), + [anon_sym___alignof] = ACTIONS(4271), + [anon_sym__alignof] = ACTIONS(4271), + [anon_sym_alignof] = ACTIONS(4271), + [anon_sym__Alignof] = ACTIONS(4271), + [anon_sym_offsetof] = ACTIONS(4271), + [anon_sym__Generic] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [anon_sym_asm] = ACTIONS(4271), + [anon_sym___asm__] = ACTIONS(4271), + [anon_sym___asm] = ACTIONS(4271), + [sym_number_literal] = ACTIONS(4273), + [anon_sym_L_SQUOTE] = ACTIONS(4273), + [anon_sym_u_SQUOTE] = ACTIONS(4273), + [anon_sym_U_SQUOTE] = ACTIONS(4273), + [anon_sym_u8_SQUOTE] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4273), + [anon_sym_L_DQUOTE] = ACTIONS(4273), + [anon_sym_u_DQUOTE] = ACTIONS(4273), + [anon_sym_U_DQUOTE] = ACTIONS(4273), + [anon_sym_u8_DQUOTE] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(4273), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [anon_sym_NULL] = ACTIONS(4271), + [anon_sym_nullptr] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_export] = ACTIONS(4271), + [anon_sym_module] = ACTIONS(4271), + [anon_sym_import] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_delete] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_namespace] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_concept] = ACTIONS(4271), + [anon_sym_co_return] = ACTIONS(4271), + [anon_sym_co_yield] = ACTIONS(4271), + [anon_sym_R_DQUOTE] = ACTIONS(4273), + [anon_sym_LR_DQUOTE] = ACTIONS(4273), + [anon_sym_uR_DQUOTE] = ACTIONS(4273), + [anon_sym_UR_DQUOTE] = ACTIONS(4273), + [anon_sym_u8R_DQUOTE] = ACTIONS(4273), + [anon_sym_co_await] = ACTIONS(4271), + [anon_sym_new] = ACTIONS(4271), + [anon_sym_requires] = ACTIONS(4271), + [anon_sym_CARET_CARET] = ACTIONS(4273), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), + [sym_this] = ACTIONS(4271), + }, + [STATE(751)] = { + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token2] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym___cdecl] = ACTIONS(4289), + [anon_sym___clrcall] = ACTIONS(4289), + [anon_sym___stdcall] = ACTIONS(4289), + [anon_sym___fastcall] = ACTIONS(4289), + [anon_sym___thiscall] = ACTIONS(4289), + [anon_sym___vectorcall] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_switch] = ACTIONS(4289), + [anon_sym_case] = ACTIONS(4289), + [anon_sym_default] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_do] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_goto] = ACTIONS(4289), + [anon_sym___try] = ACTIONS(4289), + [anon_sym___leave] = ACTIONS(4289), + [anon_sym_not] = ACTIONS(4289), + [anon_sym_compl] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_sizeof] = ACTIONS(4289), + [anon_sym___alignof__] = ACTIONS(4289), + [anon_sym___alignof] = ACTIONS(4289), + [anon_sym__alignof] = ACTIONS(4289), + [anon_sym_alignof] = ACTIONS(4289), + [anon_sym__Alignof] = ACTIONS(4289), + [anon_sym_offsetof] = ACTIONS(4289), + [anon_sym__Generic] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [anon_sym_asm] = ACTIONS(4289), + [anon_sym___asm__] = ACTIONS(4289), + [anon_sym___asm] = ACTIONS(4289), + [sym_number_literal] = ACTIONS(4291), + [anon_sym_L_SQUOTE] = ACTIONS(4291), + [anon_sym_u_SQUOTE] = ACTIONS(4291), + [anon_sym_U_SQUOTE] = ACTIONS(4291), + [anon_sym_u8_SQUOTE] = ACTIONS(4291), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_L_DQUOTE] = ACTIONS(4291), + [anon_sym_u_DQUOTE] = ACTIONS(4291), + [anon_sym_U_DQUOTE] = ACTIONS(4291), + [anon_sym_u8_DQUOTE] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [sym_true] = ACTIONS(4289), + [sym_false] = ACTIONS(4289), + [anon_sym_NULL] = ACTIONS(4289), + [anon_sym_nullptr] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_export] = ACTIONS(4289), + [anon_sym_module] = ACTIONS(4289), + [anon_sym_import] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_delete] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_namespace] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_concept] = ACTIONS(4289), + [anon_sym_co_return] = ACTIONS(4289), + [anon_sym_co_yield] = ACTIONS(4289), + [anon_sym_R_DQUOTE] = ACTIONS(4291), + [anon_sym_LR_DQUOTE] = ACTIONS(4291), + [anon_sym_uR_DQUOTE] = ACTIONS(4291), + [anon_sym_UR_DQUOTE] = ACTIONS(4291), + [anon_sym_u8R_DQUOTE] = ACTIONS(4291), + [anon_sym_co_await] = ACTIONS(4289), + [anon_sym_new] = ACTIONS(4289), + [anon_sym_requires] = ACTIONS(4289), + [anon_sym_CARET_CARET] = ACTIONS(4291), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), + [sym_this] = ACTIONS(4289), + }, + [STATE(752)] = { + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token2] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym___cdecl] = ACTIONS(4289), + [anon_sym___clrcall] = ACTIONS(4289), + [anon_sym___stdcall] = ACTIONS(4289), + [anon_sym___fastcall] = ACTIONS(4289), + [anon_sym___thiscall] = ACTIONS(4289), + [anon_sym___vectorcall] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_switch] = ACTIONS(4289), + [anon_sym_case] = ACTIONS(4289), + [anon_sym_default] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_do] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_goto] = ACTIONS(4289), + [anon_sym___try] = ACTIONS(4289), + [anon_sym___leave] = ACTIONS(4289), + [anon_sym_not] = ACTIONS(4289), + [anon_sym_compl] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_sizeof] = ACTIONS(4289), + [anon_sym___alignof__] = ACTIONS(4289), + [anon_sym___alignof] = ACTIONS(4289), + [anon_sym__alignof] = ACTIONS(4289), + [anon_sym_alignof] = ACTIONS(4289), + [anon_sym__Alignof] = ACTIONS(4289), + [anon_sym_offsetof] = ACTIONS(4289), + [anon_sym__Generic] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [anon_sym_asm] = ACTIONS(4289), + [anon_sym___asm__] = ACTIONS(4289), + [anon_sym___asm] = ACTIONS(4289), + [sym_number_literal] = ACTIONS(4291), + [anon_sym_L_SQUOTE] = ACTIONS(4291), + [anon_sym_u_SQUOTE] = ACTIONS(4291), + [anon_sym_U_SQUOTE] = ACTIONS(4291), + [anon_sym_u8_SQUOTE] = ACTIONS(4291), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_L_DQUOTE] = ACTIONS(4291), + [anon_sym_u_DQUOTE] = ACTIONS(4291), + [anon_sym_U_DQUOTE] = ACTIONS(4291), + [anon_sym_u8_DQUOTE] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [sym_true] = ACTIONS(4289), + [sym_false] = ACTIONS(4289), + [anon_sym_NULL] = ACTIONS(4289), + [anon_sym_nullptr] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_export] = ACTIONS(4289), + [anon_sym_module] = ACTIONS(4289), + [anon_sym_import] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_delete] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_namespace] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_concept] = ACTIONS(4289), + [anon_sym_co_return] = ACTIONS(4289), + [anon_sym_co_yield] = ACTIONS(4289), + [anon_sym_R_DQUOTE] = ACTIONS(4291), + [anon_sym_LR_DQUOTE] = ACTIONS(4291), + [anon_sym_uR_DQUOTE] = ACTIONS(4291), + [anon_sym_UR_DQUOTE] = ACTIONS(4291), + [anon_sym_u8R_DQUOTE] = ACTIONS(4291), + [anon_sym_co_await] = ACTIONS(4289), + [anon_sym_new] = ACTIONS(4289), + [anon_sym_requires] = ACTIONS(4289), + [anon_sym_CARET_CARET] = ACTIONS(4291), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), + [sym_this] = ACTIONS(4289), + }, + [STATE(753)] = { + [sym_identifier] = ACTIONS(4325), + [aux_sym_preproc_include_token1] = ACTIONS(4325), + [aux_sym_preproc_def_token1] = ACTIONS(4325), + [aux_sym_preproc_if_token1] = ACTIONS(4325), + [aux_sym_preproc_if_token2] = ACTIONS(4325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4325), + [sym_preproc_directive] = ACTIONS(4325), + [anon_sym_LPAREN2] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_TILDE] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_AMP] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym___extension__] = ACTIONS(4325), + [anon_sym_typedef] = ACTIONS(4325), + [anon_sym_virtual] = ACTIONS(4325), + [anon_sym_extern] = ACTIONS(4325), + [anon_sym___attribute__] = ACTIONS(4325), + [anon_sym___attribute] = ACTIONS(4325), + [anon_sym_using] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4327), + [anon_sym___declspec] = ACTIONS(4325), + [anon_sym___based] = ACTIONS(4325), + [anon_sym___cdecl] = ACTIONS(4325), + [anon_sym___clrcall] = ACTIONS(4325), + [anon_sym___stdcall] = ACTIONS(4325), + [anon_sym___fastcall] = ACTIONS(4325), + [anon_sym___thiscall] = ACTIONS(4325), + [anon_sym___vectorcall] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4327), + [anon_sym_signed] = ACTIONS(4325), + [anon_sym_unsigned] = ACTIONS(4325), + [anon_sym_long] = ACTIONS(4325), + [anon_sym_short] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_static] = ACTIONS(4325), + [anon_sym_register] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym___inline] = ACTIONS(4325), + [anon_sym___inline__] = ACTIONS(4325), + [anon_sym___forceinline] = ACTIONS(4325), + [anon_sym_thread_local] = ACTIONS(4325), + [anon_sym___thread] = ACTIONS(4325), + [anon_sym_const] = ACTIONS(4325), + [anon_sym_constexpr] = ACTIONS(4325), + [anon_sym_volatile] = ACTIONS(4325), + [anon_sym_restrict] = ACTIONS(4325), + [anon_sym___restrict__] = ACTIONS(4325), + [anon_sym__Atomic] = ACTIONS(4325), + [anon_sym__Noreturn] = ACTIONS(4325), + [anon_sym_noreturn] = ACTIONS(4325), + [anon_sym__Nonnull] = ACTIONS(4325), + [anon_sym_mutable] = ACTIONS(4325), + [anon_sym_constinit] = ACTIONS(4325), + [anon_sym_consteval] = ACTIONS(4325), + [anon_sym_alignas] = ACTIONS(4325), + [anon_sym__Alignas] = ACTIONS(4325), + [sym_primitive_type] = ACTIONS(4325), + [anon_sym_enum] = ACTIONS(4325), + [anon_sym_class] = ACTIONS(4325), + [anon_sym_struct] = ACTIONS(4325), + [anon_sym_union] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_switch] = ACTIONS(4325), + [anon_sym_case] = ACTIONS(4325), + [anon_sym_default] = ACTIONS(4325), + [anon_sym_while] = ACTIONS(4325), + [anon_sym_do] = ACTIONS(4325), + [anon_sym_for] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_goto] = ACTIONS(4325), + [anon_sym___try] = ACTIONS(4325), + [anon_sym___leave] = ACTIONS(4325), + [anon_sym_not] = ACTIONS(4325), + [anon_sym_compl] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_sizeof] = ACTIONS(4325), + [anon_sym___alignof__] = ACTIONS(4325), + [anon_sym___alignof] = ACTIONS(4325), + [anon_sym__alignof] = ACTIONS(4325), + [anon_sym_alignof] = ACTIONS(4325), + [anon_sym__Alignof] = ACTIONS(4325), + [anon_sym_offsetof] = ACTIONS(4325), + [anon_sym__Generic] = ACTIONS(4325), + [anon_sym_typename] = ACTIONS(4325), + [anon_sym_asm] = ACTIONS(4325), + [anon_sym___asm__] = ACTIONS(4325), + [anon_sym___asm] = ACTIONS(4325), + [sym_number_literal] = ACTIONS(4327), + [anon_sym_L_SQUOTE] = ACTIONS(4327), + [anon_sym_u_SQUOTE] = ACTIONS(4327), + [anon_sym_U_SQUOTE] = ACTIONS(4327), + [anon_sym_u8_SQUOTE] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4327), + [anon_sym_L_DQUOTE] = ACTIONS(4327), + [anon_sym_u_DQUOTE] = ACTIONS(4327), + [anon_sym_U_DQUOTE] = ACTIONS(4327), + [anon_sym_u8_DQUOTE] = ACTIONS(4327), + [anon_sym_DQUOTE] = ACTIONS(4327), + [sym_true] = ACTIONS(4325), + [sym_false] = ACTIONS(4325), + [anon_sym_NULL] = ACTIONS(4325), + [anon_sym_nullptr] = ACTIONS(4325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4325), + [anon_sym_decltype] = ACTIONS(4325), + [anon_sym_explicit] = ACTIONS(4325), + [anon_sym_export] = ACTIONS(4325), + [anon_sym_module] = ACTIONS(4325), + [anon_sym_import] = ACTIONS(4325), + [anon_sym_template] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_delete] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_namespace] = ACTIONS(4325), + [anon_sym_static_assert] = ACTIONS(4325), + [anon_sym_concept] = ACTIONS(4325), + [anon_sym_co_return] = ACTIONS(4325), + [anon_sym_co_yield] = ACTIONS(4325), + [anon_sym_R_DQUOTE] = ACTIONS(4327), + [anon_sym_LR_DQUOTE] = ACTIONS(4327), + [anon_sym_uR_DQUOTE] = ACTIONS(4327), + [anon_sym_UR_DQUOTE] = ACTIONS(4327), + [anon_sym_u8R_DQUOTE] = ACTIONS(4327), + [anon_sym_co_await] = ACTIONS(4325), + [anon_sym_new] = ACTIONS(4325), + [anon_sym_requires] = ACTIONS(4325), + [anon_sym_CARET_CARET] = ACTIONS(4327), + [anon_sym_LBRACK_COLON] = ACTIONS(4327), + [sym_this] = ACTIONS(4325), + }, + [STATE(754)] = { + [sym_identifier] = ACTIONS(4371), + [aux_sym_preproc_include_token1] = ACTIONS(4371), + [aux_sym_preproc_def_token1] = ACTIONS(4371), + [aux_sym_preproc_if_token1] = ACTIONS(4371), + [aux_sym_preproc_if_token2] = ACTIONS(4371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4371), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4371), + [sym_preproc_directive] = ACTIONS(4371), + [anon_sym_LPAREN2] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4373), + [anon_sym_AMP_AMP] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4371), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym___extension__] = ACTIONS(4371), + [anon_sym_typedef] = ACTIONS(4371), + [anon_sym_virtual] = ACTIONS(4371), + [anon_sym_extern] = ACTIONS(4371), + [anon_sym___attribute__] = ACTIONS(4371), + [anon_sym___attribute] = ACTIONS(4371), + [anon_sym_using] = ACTIONS(4371), + [anon_sym_COLON_COLON] = ACTIONS(4373), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4373), + [anon_sym___declspec] = ACTIONS(4371), + [anon_sym___based] = ACTIONS(4371), + [anon_sym___cdecl] = ACTIONS(4371), + [anon_sym___clrcall] = ACTIONS(4371), + [anon_sym___stdcall] = ACTIONS(4371), + [anon_sym___fastcall] = ACTIONS(4371), + [anon_sym___thiscall] = ACTIONS(4371), + [anon_sym___vectorcall] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_signed] = ACTIONS(4371), + [anon_sym_unsigned] = ACTIONS(4371), + [anon_sym_long] = ACTIONS(4371), + [anon_sym_short] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_static] = ACTIONS(4371), + [anon_sym_register] = ACTIONS(4371), + [anon_sym_inline] = ACTIONS(4371), + [anon_sym___inline] = ACTIONS(4371), + [anon_sym___inline__] = ACTIONS(4371), + [anon_sym___forceinline] = ACTIONS(4371), + [anon_sym_thread_local] = ACTIONS(4371), + [anon_sym___thread] = ACTIONS(4371), + [anon_sym_const] = ACTIONS(4371), + [anon_sym_constexpr] = ACTIONS(4371), + [anon_sym_volatile] = ACTIONS(4371), + [anon_sym_restrict] = ACTIONS(4371), + [anon_sym___restrict__] = ACTIONS(4371), + [anon_sym__Atomic] = ACTIONS(4371), + [anon_sym__Noreturn] = ACTIONS(4371), + [anon_sym_noreturn] = ACTIONS(4371), + [anon_sym__Nonnull] = ACTIONS(4371), + [anon_sym_mutable] = ACTIONS(4371), + [anon_sym_constinit] = ACTIONS(4371), + [anon_sym_consteval] = ACTIONS(4371), + [anon_sym_alignas] = ACTIONS(4371), + [anon_sym__Alignas] = ACTIONS(4371), + [sym_primitive_type] = ACTIONS(4371), + [anon_sym_enum] = ACTIONS(4371), + [anon_sym_class] = ACTIONS(4371), + [anon_sym_struct] = ACTIONS(4371), + [anon_sym_union] = ACTIONS(4371), + [anon_sym_if] = ACTIONS(4371), + [anon_sym_switch] = ACTIONS(4371), + [anon_sym_case] = ACTIONS(4371), + [anon_sym_default] = ACTIONS(4371), + [anon_sym_while] = ACTIONS(4371), + [anon_sym_do] = ACTIONS(4371), + [anon_sym_for] = ACTIONS(4371), + [anon_sym_return] = ACTIONS(4371), + [anon_sym_break] = ACTIONS(4371), + [anon_sym_continue] = ACTIONS(4371), + [anon_sym_goto] = ACTIONS(4371), + [anon_sym___try] = ACTIONS(4371), + [anon_sym___leave] = ACTIONS(4371), + [anon_sym_not] = ACTIONS(4371), + [anon_sym_compl] = ACTIONS(4371), + [anon_sym_DASH_DASH] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4373), + [anon_sym_sizeof] = ACTIONS(4371), + [anon_sym___alignof__] = ACTIONS(4371), + [anon_sym___alignof] = ACTIONS(4371), + [anon_sym__alignof] = ACTIONS(4371), + [anon_sym_alignof] = ACTIONS(4371), + [anon_sym__Alignof] = ACTIONS(4371), + [anon_sym_offsetof] = ACTIONS(4371), + [anon_sym__Generic] = ACTIONS(4371), + [anon_sym_typename] = ACTIONS(4371), + [anon_sym_asm] = ACTIONS(4371), + [anon_sym___asm__] = ACTIONS(4371), + [anon_sym___asm] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4373), + [anon_sym_L_SQUOTE] = ACTIONS(4373), + [anon_sym_u_SQUOTE] = ACTIONS(4373), + [anon_sym_U_SQUOTE] = ACTIONS(4373), + [anon_sym_u8_SQUOTE] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_L_DQUOTE] = ACTIONS(4373), + [anon_sym_u_DQUOTE] = ACTIONS(4373), + [anon_sym_U_DQUOTE] = ACTIONS(4373), + [anon_sym_u8_DQUOTE] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [sym_true] = ACTIONS(4371), + [sym_false] = ACTIONS(4371), + [anon_sym_NULL] = ACTIONS(4371), + [anon_sym_nullptr] = ACTIONS(4371), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4371), + [anon_sym_decltype] = ACTIONS(4371), + [anon_sym_explicit] = ACTIONS(4371), + [anon_sym_export] = ACTIONS(4371), + [anon_sym_module] = ACTIONS(4371), + [anon_sym_import] = ACTIONS(4371), + [anon_sym_template] = ACTIONS(4371), + [anon_sym_operator] = ACTIONS(4371), + [anon_sym_try] = ACTIONS(4371), + [anon_sym_delete] = ACTIONS(4371), + [anon_sym_throw] = ACTIONS(4371), + [anon_sym_namespace] = ACTIONS(4371), + [anon_sym_static_assert] = ACTIONS(4371), + [anon_sym_concept] = ACTIONS(4371), + [anon_sym_co_return] = ACTIONS(4371), + [anon_sym_co_yield] = ACTIONS(4371), + [anon_sym_R_DQUOTE] = ACTIONS(4373), + [anon_sym_LR_DQUOTE] = ACTIONS(4373), + [anon_sym_uR_DQUOTE] = ACTIONS(4373), + [anon_sym_UR_DQUOTE] = ACTIONS(4373), + [anon_sym_u8R_DQUOTE] = ACTIONS(4373), + [anon_sym_co_await] = ACTIONS(4371), + [anon_sym_new] = ACTIONS(4371), + [anon_sym_requires] = ACTIONS(4371), + [anon_sym_CARET_CARET] = ACTIONS(4373), + [anon_sym_LBRACK_COLON] = ACTIONS(4373), + [sym_this] = ACTIONS(4371), + }, + [STATE(755)] = { + [sym_identifier] = ACTIONS(4375), + [aux_sym_preproc_include_token1] = ACTIONS(4375), + [aux_sym_preproc_def_token1] = ACTIONS(4375), + [aux_sym_preproc_if_token1] = ACTIONS(4375), + [aux_sym_preproc_if_token2] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4375), + [sym_preproc_directive] = ACTIONS(4375), + [anon_sym_LPAREN2] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4377), + [anon_sym_TILDE] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym___extension__] = ACTIONS(4375), + [anon_sym_typedef] = ACTIONS(4375), + [anon_sym_virtual] = ACTIONS(4375), + [anon_sym_extern] = ACTIONS(4375), + [anon_sym___attribute__] = ACTIONS(4375), + [anon_sym___attribute] = ACTIONS(4375), + [anon_sym_using] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4377), + [anon_sym___declspec] = ACTIONS(4375), + [anon_sym___based] = ACTIONS(4375), + [anon_sym___cdecl] = ACTIONS(4375), + [anon_sym___clrcall] = ACTIONS(4375), + [anon_sym___stdcall] = ACTIONS(4375), + [anon_sym___fastcall] = ACTIONS(4375), + [anon_sym___thiscall] = ACTIONS(4375), + [anon_sym___vectorcall] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_signed] = ACTIONS(4375), + [anon_sym_unsigned] = ACTIONS(4375), + [anon_sym_long] = ACTIONS(4375), + [anon_sym_short] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_static] = ACTIONS(4375), + [anon_sym_register] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym___inline] = ACTIONS(4375), + [anon_sym___inline__] = ACTIONS(4375), + [anon_sym___forceinline] = ACTIONS(4375), + [anon_sym_thread_local] = ACTIONS(4375), + [anon_sym___thread] = ACTIONS(4375), + [anon_sym_const] = ACTIONS(4375), + [anon_sym_constexpr] = ACTIONS(4375), + [anon_sym_volatile] = ACTIONS(4375), + [anon_sym_restrict] = ACTIONS(4375), + [anon_sym___restrict__] = ACTIONS(4375), + [anon_sym__Atomic] = ACTIONS(4375), + [anon_sym__Noreturn] = ACTIONS(4375), + [anon_sym_noreturn] = ACTIONS(4375), + [anon_sym__Nonnull] = ACTIONS(4375), + [anon_sym_mutable] = ACTIONS(4375), + [anon_sym_constinit] = ACTIONS(4375), + [anon_sym_consteval] = ACTIONS(4375), + [anon_sym_alignas] = ACTIONS(4375), + [anon_sym__Alignas] = ACTIONS(4375), + [sym_primitive_type] = ACTIONS(4375), + [anon_sym_enum] = ACTIONS(4375), + [anon_sym_class] = ACTIONS(4375), + [anon_sym_struct] = ACTIONS(4375), + [anon_sym_union] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_switch] = ACTIONS(4375), + [anon_sym_case] = ACTIONS(4375), + [anon_sym_default] = ACTIONS(4375), + [anon_sym_while] = ACTIONS(4375), + [anon_sym_do] = ACTIONS(4375), + [anon_sym_for] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_goto] = ACTIONS(4375), + [anon_sym___try] = ACTIONS(4375), + [anon_sym___leave] = ACTIONS(4375), + [anon_sym_not] = ACTIONS(4375), + [anon_sym_compl] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_sizeof] = ACTIONS(4375), + [anon_sym___alignof__] = ACTIONS(4375), + [anon_sym___alignof] = ACTIONS(4375), + [anon_sym__alignof] = ACTIONS(4375), + [anon_sym_alignof] = ACTIONS(4375), + [anon_sym__Alignof] = ACTIONS(4375), + [anon_sym_offsetof] = ACTIONS(4375), + [anon_sym__Generic] = ACTIONS(4375), + [anon_sym_typename] = ACTIONS(4375), + [anon_sym_asm] = ACTIONS(4375), + [anon_sym___asm__] = ACTIONS(4375), + [anon_sym___asm] = ACTIONS(4375), + [sym_number_literal] = ACTIONS(4377), + [anon_sym_L_SQUOTE] = ACTIONS(4377), + [anon_sym_u_SQUOTE] = ACTIONS(4377), + [anon_sym_U_SQUOTE] = ACTIONS(4377), + [anon_sym_u8_SQUOTE] = ACTIONS(4377), + [anon_sym_SQUOTE] = ACTIONS(4377), + [anon_sym_L_DQUOTE] = ACTIONS(4377), + [anon_sym_u_DQUOTE] = ACTIONS(4377), + [anon_sym_U_DQUOTE] = ACTIONS(4377), + [anon_sym_u8_DQUOTE] = ACTIONS(4377), + [anon_sym_DQUOTE] = ACTIONS(4377), + [sym_true] = ACTIONS(4375), + [sym_false] = ACTIONS(4375), + [anon_sym_NULL] = ACTIONS(4375), + [anon_sym_nullptr] = ACTIONS(4375), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4375), + [anon_sym_decltype] = ACTIONS(4375), + [anon_sym_explicit] = ACTIONS(4375), + [anon_sym_export] = ACTIONS(4375), + [anon_sym_module] = ACTIONS(4375), + [anon_sym_import] = ACTIONS(4375), + [anon_sym_template] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_delete] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_namespace] = ACTIONS(4375), + [anon_sym_static_assert] = ACTIONS(4375), + [anon_sym_concept] = ACTIONS(4375), + [anon_sym_co_return] = ACTIONS(4375), + [anon_sym_co_yield] = ACTIONS(4375), + [anon_sym_R_DQUOTE] = ACTIONS(4377), + [anon_sym_LR_DQUOTE] = ACTIONS(4377), + [anon_sym_uR_DQUOTE] = ACTIONS(4377), + [anon_sym_UR_DQUOTE] = ACTIONS(4377), + [anon_sym_u8R_DQUOTE] = ACTIONS(4377), + [anon_sym_co_await] = ACTIONS(4375), + [anon_sym_new] = ACTIONS(4375), + [anon_sym_requires] = ACTIONS(4375), + [anon_sym_CARET_CARET] = ACTIONS(4377), + [anon_sym_LBRACK_COLON] = ACTIONS(4377), + [sym_this] = ACTIONS(4375), + }, + [STATE(756)] = { [sym_identifier] = ACTIONS(4387), [aux_sym_preproc_include_token1] = ACTIONS(4387), [aux_sym_preproc_def_token1] = ACTIONS(4387), @@ -165276,10690 +167957,8290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4389), [sym_this] = ACTIONS(4387), }, - [STATE(738)] = { - [sym_identifier] = ACTIONS(3921), - [aux_sym_preproc_include_token1] = ACTIONS(3921), - [aux_sym_preproc_def_token1] = ACTIONS(3921), - [aux_sym_preproc_if_token1] = ACTIONS(3921), - [aux_sym_preproc_if_token2] = ACTIONS(3921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), - [sym_preproc_directive] = ACTIONS(3921), - [anon_sym_LPAREN2] = ACTIONS(3923), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_TILDE] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3921), - [anon_sym_SEMI] = ACTIONS(3923), - [anon_sym___extension__] = ACTIONS(3921), - [anon_sym_typedef] = ACTIONS(3921), - [anon_sym_virtual] = ACTIONS(3921), - [anon_sym_extern] = ACTIONS(3921), - [anon_sym___attribute__] = ACTIONS(3921), - [anon_sym___attribute] = ACTIONS(3921), - [anon_sym_using] = ACTIONS(3921), - [anon_sym_COLON_COLON] = ACTIONS(3923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), - [anon_sym___declspec] = ACTIONS(3921), - [anon_sym___based] = ACTIONS(3921), - [anon_sym___cdecl] = ACTIONS(3921), - [anon_sym___clrcall] = ACTIONS(3921), - [anon_sym___stdcall] = ACTIONS(3921), - [anon_sym___fastcall] = ACTIONS(3921), - [anon_sym___thiscall] = ACTIONS(3921), - [anon_sym___vectorcall] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3923), - [anon_sym_signed] = ACTIONS(3921), - [anon_sym_unsigned] = ACTIONS(3921), - [anon_sym_long] = ACTIONS(3921), - [anon_sym_short] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_static] = ACTIONS(3921), - [anon_sym_register] = ACTIONS(3921), - [anon_sym_inline] = ACTIONS(3921), - [anon_sym___inline] = ACTIONS(3921), - [anon_sym___inline__] = ACTIONS(3921), - [anon_sym___forceinline] = ACTIONS(3921), - [anon_sym_thread_local] = ACTIONS(3921), - [anon_sym___thread] = ACTIONS(3921), - [anon_sym_const] = ACTIONS(3921), - [anon_sym_constexpr] = ACTIONS(3921), - [anon_sym_volatile] = ACTIONS(3921), - [anon_sym_restrict] = ACTIONS(3921), - [anon_sym___restrict__] = ACTIONS(3921), - [anon_sym__Atomic] = ACTIONS(3921), - [anon_sym__Noreturn] = ACTIONS(3921), - [anon_sym_noreturn] = ACTIONS(3921), - [anon_sym__Nonnull] = ACTIONS(3921), - [anon_sym_mutable] = ACTIONS(3921), - [anon_sym_constinit] = ACTIONS(3921), - [anon_sym_consteval] = ACTIONS(3921), - [anon_sym_alignas] = ACTIONS(3921), - [anon_sym__Alignas] = ACTIONS(3921), - [sym_primitive_type] = ACTIONS(3921), - [anon_sym_enum] = ACTIONS(3921), - [anon_sym_class] = ACTIONS(3921), - [anon_sym_struct] = ACTIONS(3921), - [anon_sym_union] = ACTIONS(3921), - [anon_sym_if] = ACTIONS(3921), - [anon_sym_switch] = ACTIONS(3921), - [anon_sym_case] = ACTIONS(3921), - [anon_sym_default] = ACTIONS(3921), - [anon_sym_while] = ACTIONS(3921), - [anon_sym_do] = ACTIONS(3921), - [anon_sym_for] = ACTIONS(3921), - [anon_sym_return] = ACTIONS(3921), - [anon_sym_break] = ACTIONS(3921), - [anon_sym_continue] = ACTIONS(3921), - [anon_sym_goto] = ACTIONS(3921), - [anon_sym___try] = ACTIONS(3921), - [anon_sym___leave] = ACTIONS(3921), - [anon_sym_not] = ACTIONS(3921), - [anon_sym_compl] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3923), - [anon_sym_sizeof] = ACTIONS(3921), - [anon_sym___alignof__] = ACTIONS(3921), - [anon_sym___alignof] = ACTIONS(3921), - [anon_sym__alignof] = ACTIONS(3921), - [anon_sym_alignof] = ACTIONS(3921), - [anon_sym__Alignof] = ACTIONS(3921), - [anon_sym_offsetof] = ACTIONS(3921), - [anon_sym__Generic] = ACTIONS(3921), - [anon_sym_typename] = ACTIONS(3921), - [anon_sym_asm] = ACTIONS(3921), - [anon_sym___asm__] = ACTIONS(3921), - [anon_sym___asm] = ACTIONS(3921), - [sym_number_literal] = ACTIONS(3923), - [anon_sym_L_SQUOTE] = ACTIONS(3923), - [anon_sym_u_SQUOTE] = ACTIONS(3923), - [anon_sym_U_SQUOTE] = ACTIONS(3923), - [anon_sym_u8_SQUOTE] = ACTIONS(3923), - [anon_sym_SQUOTE] = ACTIONS(3923), - [anon_sym_L_DQUOTE] = ACTIONS(3923), - [anon_sym_u_DQUOTE] = ACTIONS(3923), - [anon_sym_U_DQUOTE] = ACTIONS(3923), - [anon_sym_u8_DQUOTE] = ACTIONS(3923), - [anon_sym_DQUOTE] = ACTIONS(3923), - [sym_true] = ACTIONS(3921), - [sym_false] = ACTIONS(3921), - [anon_sym_NULL] = ACTIONS(3921), - [anon_sym_nullptr] = ACTIONS(3921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3921), - [anon_sym_decltype] = ACTIONS(3921), - [anon_sym_explicit] = ACTIONS(3921), - [anon_sym_export] = ACTIONS(3921), - [anon_sym_module] = ACTIONS(3921), - [anon_sym_import] = ACTIONS(3921), - [anon_sym_template] = ACTIONS(3921), - [anon_sym_operator] = ACTIONS(3921), - [anon_sym_try] = ACTIONS(3921), - [anon_sym_delete] = ACTIONS(3921), - [anon_sym_throw] = ACTIONS(3921), - [anon_sym_namespace] = ACTIONS(3921), - [anon_sym_static_assert] = ACTIONS(3921), - [anon_sym_concept] = ACTIONS(3921), - [anon_sym_co_return] = ACTIONS(3921), - [anon_sym_co_yield] = ACTIONS(3921), - [anon_sym_R_DQUOTE] = ACTIONS(3923), - [anon_sym_LR_DQUOTE] = ACTIONS(3923), - [anon_sym_uR_DQUOTE] = ACTIONS(3923), - [anon_sym_UR_DQUOTE] = ACTIONS(3923), - [anon_sym_u8R_DQUOTE] = ACTIONS(3923), - [anon_sym_co_await] = ACTIONS(3921), - [anon_sym_new] = ACTIONS(3921), - [anon_sym_requires] = ACTIONS(3921), - [anon_sym_CARET_CARET] = ACTIONS(3923), - [anon_sym_LBRACK_COLON] = ACTIONS(3923), - [sym_this] = ACTIONS(3921), + [STATE(757)] = { + [sym_identifier] = ACTIONS(4391), + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token2] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_TILDE] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [anon_sym___extension__] = ACTIONS(4391), + [anon_sym_typedef] = ACTIONS(4391), + [anon_sym_virtual] = ACTIONS(4391), + [anon_sym_extern] = ACTIONS(4391), + [anon_sym___attribute__] = ACTIONS(4391), + [anon_sym___attribute] = ACTIONS(4391), + [anon_sym_using] = ACTIONS(4391), + [anon_sym_COLON_COLON] = ACTIONS(4393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4393), + [anon_sym___declspec] = ACTIONS(4391), + [anon_sym___based] = ACTIONS(4391), + [anon_sym___cdecl] = ACTIONS(4391), + [anon_sym___clrcall] = ACTIONS(4391), + [anon_sym___stdcall] = ACTIONS(4391), + [anon_sym___fastcall] = ACTIONS(4391), + [anon_sym___thiscall] = ACTIONS(4391), + [anon_sym___vectorcall] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_signed] = ACTIONS(4391), + [anon_sym_unsigned] = ACTIONS(4391), + [anon_sym_long] = ACTIONS(4391), + [anon_sym_short] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_static] = ACTIONS(4391), + [anon_sym_register] = ACTIONS(4391), + [anon_sym_inline] = ACTIONS(4391), + [anon_sym___inline] = ACTIONS(4391), + [anon_sym___inline__] = ACTIONS(4391), + [anon_sym___forceinline] = ACTIONS(4391), + [anon_sym_thread_local] = ACTIONS(4391), + [anon_sym___thread] = ACTIONS(4391), + [anon_sym_const] = ACTIONS(4391), + [anon_sym_constexpr] = ACTIONS(4391), + [anon_sym_volatile] = ACTIONS(4391), + [anon_sym_restrict] = ACTIONS(4391), + [anon_sym___restrict__] = ACTIONS(4391), + [anon_sym__Atomic] = ACTIONS(4391), + [anon_sym__Noreturn] = ACTIONS(4391), + [anon_sym_noreturn] = ACTIONS(4391), + [anon_sym__Nonnull] = ACTIONS(4391), + [anon_sym_mutable] = ACTIONS(4391), + [anon_sym_constinit] = ACTIONS(4391), + [anon_sym_consteval] = ACTIONS(4391), + [anon_sym_alignas] = ACTIONS(4391), + [anon_sym__Alignas] = ACTIONS(4391), + [sym_primitive_type] = ACTIONS(4391), + [anon_sym_enum] = ACTIONS(4391), + [anon_sym_class] = ACTIONS(4391), + [anon_sym_struct] = ACTIONS(4391), + [anon_sym_union] = ACTIONS(4391), + [anon_sym_if] = ACTIONS(4391), + [anon_sym_switch] = ACTIONS(4391), + [anon_sym_case] = ACTIONS(4391), + [anon_sym_default] = ACTIONS(4391), + [anon_sym_while] = ACTIONS(4391), + [anon_sym_do] = ACTIONS(4391), + [anon_sym_for] = ACTIONS(4391), + [anon_sym_return] = ACTIONS(4391), + [anon_sym_break] = ACTIONS(4391), + [anon_sym_continue] = ACTIONS(4391), + [anon_sym_goto] = ACTIONS(4391), + [anon_sym___try] = ACTIONS(4391), + [anon_sym___leave] = ACTIONS(4391), + [anon_sym_not] = ACTIONS(4391), + [anon_sym_compl] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_PLUS_PLUS] = ACTIONS(4393), + [anon_sym_sizeof] = ACTIONS(4391), + [anon_sym___alignof__] = ACTIONS(4391), + [anon_sym___alignof] = ACTIONS(4391), + [anon_sym__alignof] = ACTIONS(4391), + [anon_sym_alignof] = ACTIONS(4391), + [anon_sym__Alignof] = ACTIONS(4391), + [anon_sym_offsetof] = ACTIONS(4391), + [anon_sym__Generic] = ACTIONS(4391), + [anon_sym_typename] = ACTIONS(4391), + [anon_sym_asm] = ACTIONS(4391), + [anon_sym___asm__] = ACTIONS(4391), + [anon_sym___asm] = ACTIONS(4391), + [sym_number_literal] = ACTIONS(4393), + [anon_sym_L_SQUOTE] = ACTIONS(4393), + [anon_sym_u_SQUOTE] = ACTIONS(4393), + [anon_sym_U_SQUOTE] = ACTIONS(4393), + [anon_sym_u8_SQUOTE] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4393), + [anon_sym_L_DQUOTE] = ACTIONS(4393), + [anon_sym_u_DQUOTE] = ACTIONS(4393), + [anon_sym_U_DQUOTE] = ACTIONS(4393), + [anon_sym_u8_DQUOTE] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(4393), + [sym_true] = ACTIONS(4391), + [sym_false] = ACTIONS(4391), + [anon_sym_NULL] = ACTIONS(4391), + [anon_sym_nullptr] = ACTIONS(4391), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4391), + [anon_sym_decltype] = ACTIONS(4391), + [anon_sym_explicit] = ACTIONS(4391), + [anon_sym_export] = ACTIONS(4391), + [anon_sym_module] = ACTIONS(4391), + [anon_sym_import] = ACTIONS(4391), + [anon_sym_template] = ACTIONS(4391), + [anon_sym_operator] = ACTIONS(4391), + [anon_sym_try] = ACTIONS(4391), + [anon_sym_delete] = ACTIONS(4391), + [anon_sym_throw] = ACTIONS(4391), + [anon_sym_namespace] = ACTIONS(4391), + [anon_sym_static_assert] = ACTIONS(4391), + [anon_sym_concept] = ACTIONS(4391), + [anon_sym_co_return] = ACTIONS(4391), + [anon_sym_co_yield] = ACTIONS(4391), + [anon_sym_R_DQUOTE] = ACTIONS(4393), + [anon_sym_LR_DQUOTE] = ACTIONS(4393), + [anon_sym_uR_DQUOTE] = ACTIONS(4393), + [anon_sym_UR_DQUOTE] = ACTIONS(4393), + [anon_sym_u8R_DQUOTE] = ACTIONS(4393), + [anon_sym_co_await] = ACTIONS(4391), + [anon_sym_new] = ACTIONS(4391), + [anon_sym_requires] = ACTIONS(4391), + [anon_sym_CARET_CARET] = ACTIONS(4393), + [anon_sym_LBRACK_COLON] = ACTIONS(4393), + [sym_this] = ACTIONS(4391), }, - [STATE(739)] = { - [sym_identifier] = ACTIONS(3935), - [aux_sym_preproc_include_token1] = ACTIONS(3935), - [aux_sym_preproc_def_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token2] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), - [sym_preproc_directive] = ACTIONS(3935), - [anon_sym_LPAREN2] = ACTIONS(3937), - [anon_sym_BANG] = ACTIONS(3937), - [anon_sym_TILDE] = ACTIONS(3937), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3937), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_SEMI] = ACTIONS(3937), - [anon_sym___extension__] = ACTIONS(3935), - [anon_sym_typedef] = ACTIONS(3935), - [anon_sym_virtual] = ACTIONS(3935), - [anon_sym_extern] = ACTIONS(3935), - [anon_sym___attribute__] = ACTIONS(3935), - [anon_sym___attribute] = ACTIONS(3935), - [anon_sym_using] = ACTIONS(3935), - [anon_sym_COLON_COLON] = ACTIONS(3937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), - [anon_sym___declspec] = ACTIONS(3935), - [anon_sym___based] = ACTIONS(3935), - [anon_sym___cdecl] = ACTIONS(3935), - [anon_sym___clrcall] = ACTIONS(3935), - [anon_sym___stdcall] = ACTIONS(3935), - [anon_sym___fastcall] = ACTIONS(3935), - [anon_sym___thiscall] = ACTIONS(3935), - [anon_sym___vectorcall] = ACTIONS(3935), - [anon_sym_LBRACE] = ACTIONS(3937), - [anon_sym_signed] = ACTIONS(3935), - [anon_sym_unsigned] = ACTIONS(3935), - [anon_sym_long] = ACTIONS(3935), - [anon_sym_short] = ACTIONS(3935), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_static] = ACTIONS(3935), - [anon_sym_register] = ACTIONS(3935), - [anon_sym_inline] = ACTIONS(3935), - [anon_sym___inline] = ACTIONS(3935), - [anon_sym___inline__] = ACTIONS(3935), - [anon_sym___forceinline] = ACTIONS(3935), - [anon_sym_thread_local] = ACTIONS(3935), - [anon_sym___thread] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_constexpr] = ACTIONS(3935), - [anon_sym_volatile] = ACTIONS(3935), - [anon_sym_restrict] = ACTIONS(3935), - [anon_sym___restrict__] = ACTIONS(3935), - [anon_sym__Atomic] = ACTIONS(3935), - [anon_sym__Noreturn] = ACTIONS(3935), - [anon_sym_noreturn] = ACTIONS(3935), - [anon_sym__Nonnull] = ACTIONS(3935), - [anon_sym_mutable] = ACTIONS(3935), - [anon_sym_constinit] = ACTIONS(3935), - [anon_sym_consteval] = ACTIONS(3935), - [anon_sym_alignas] = ACTIONS(3935), - [anon_sym__Alignas] = ACTIONS(3935), - [sym_primitive_type] = ACTIONS(3935), - [anon_sym_enum] = ACTIONS(3935), - [anon_sym_class] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3935), - [anon_sym_if] = ACTIONS(3935), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_case] = ACTIONS(3935), - [anon_sym_default] = ACTIONS(3935), - [anon_sym_while] = ACTIONS(3935), - [anon_sym_do] = ACTIONS(3935), - [anon_sym_for] = ACTIONS(3935), - [anon_sym_return] = ACTIONS(3935), - [anon_sym_break] = ACTIONS(3935), - [anon_sym_continue] = ACTIONS(3935), - [anon_sym_goto] = ACTIONS(3935), - [anon_sym___try] = ACTIONS(3935), - [anon_sym___leave] = ACTIONS(3935), - [anon_sym_not] = ACTIONS(3935), - [anon_sym_compl] = ACTIONS(3935), - [anon_sym_DASH_DASH] = ACTIONS(3937), - [anon_sym_PLUS_PLUS] = ACTIONS(3937), - [anon_sym_sizeof] = ACTIONS(3935), - [anon_sym___alignof__] = ACTIONS(3935), - [anon_sym___alignof] = ACTIONS(3935), - [anon_sym__alignof] = ACTIONS(3935), - [anon_sym_alignof] = ACTIONS(3935), - [anon_sym__Alignof] = ACTIONS(3935), - [anon_sym_offsetof] = ACTIONS(3935), - [anon_sym__Generic] = ACTIONS(3935), - [anon_sym_typename] = ACTIONS(3935), - [anon_sym_asm] = ACTIONS(3935), - [anon_sym___asm__] = ACTIONS(3935), - [anon_sym___asm] = ACTIONS(3935), - [sym_number_literal] = ACTIONS(3937), - [anon_sym_L_SQUOTE] = ACTIONS(3937), - [anon_sym_u_SQUOTE] = ACTIONS(3937), - [anon_sym_U_SQUOTE] = ACTIONS(3937), - [anon_sym_u8_SQUOTE] = ACTIONS(3937), - [anon_sym_SQUOTE] = ACTIONS(3937), - [anon_sym_L_DQUOTE] = ACTIONS(3937), - [anon_sym_u_DQUOTE] = ACTIONS(3937), - [anon_sym_U_DQUOTE] = ACTIONS(3937), - [anon_sym_u8_DQUOTE] = ACTIONS(3937), - [anon_sym_DQUOTE] = ACTIONS(3937), - [sym_true] = ACTIONS(3935), - [sym_false] = ACTIONS(3935), - [anon_sym_NULL] = ACTIONS(3935), - [anon_sym_nullptr] = ACTIONS(3935), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3935), - [anon_sym_decltype] = ACTIONS(3935), - [anon_sym_explicit] = ACTIONS(3935), - [anon_sym_export] = ACTIONS(3935), - [anon_sym_module] = ACTIONS(3935), - [anon_sym_import] = ACTIONS(3935), - [anon_sym_template] = ACTIONS(3935), - [anon_sym_operator] = ACTIONS(3935), - [anon_sym_try] = ACTIONS(3935), - [anon_sym_delete] = ACTIONS(3935), - [anon_sym_throw] = ACTIONS(3935), - [anon_sym_namespace] = ACTIONS(3935), - [anon_sym_static_assert] = ACTIONS(3935), - [anon_sym_concept] = ACTIONS(3935), - [anon_sym_co_return] = ACTIONS(3935), - [anon_sym_co_yield] = ACTIONS(3935), - [anon_sym_R_DQUOTE] = ACTIONS(3937), - [anon_sym_LR_DQUOTE] = ACTIONS(3937), - [anon_sym_uR_DQUOTE] = ACTIONS(3937), - [anon_sym_UR_DQUOTE] = ACTIONS(3937), - [anon_sym_u8R_DQUOTE] = ACTIONS(3937), - [anon_sym_co_await] = ACTIONS(3935), - [anon_sym_new] = ACTIONS(3935), - [anon_sym_requires] = ACTIONS(3935), - [anon_sym_CARET_CARET] = ACTIONS(3937), - [anon_sym_LBRACK_COLON] = ACTIONS(3937), - [sym_this] = ACTIONS(3935), + [STATE(758)] = { + [sym_identifier] = ACTIONS(3778), + [aux_sym_preproc_include_token1] = ACTIONS(3778), + [aux_sym_preproc_def_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token2] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3778), + [sym_preproc_directive] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_TILDE] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_AMP_AMP] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym___extension__] = ACTIONS(3778), + [anon_sym_typedef] = ACTIONS(3778), + [anon_sym_virtual] = ACTIONS(3778), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym___attribute__] = ACTIONS(3778), + [anon_sym___attribute] = ACTIONS(3778), + [anon_sym_using] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3780), + [anon_sym___declspec] = ACTIONS(3778), + [anon_sym___based] = ACTIONS(3778), + [anon_sym___cdecl] = ACTIONS(3778), + [anon_sym___clrcall] = ACTIONS(3778), + [anon_sym___stdcall] = ACTIONS(3778), + [anon_sym___fastcall] = ACTIONS(3778), + [anon_sym___thiscall] = ACTIONS(3778), + [anon_sym___vectorcall] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3780), + [anon_sym_signed] = ACTIONS(3778), + [anon_sym_unsigned] = ACTIONS(3778), + [anon_sym_long] = ACTIONS(3778), + [anon_sym_short] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym___inline] = ACTIONS(3778), + [anon_sym___inline__] = ACTIONS(3778), + [anon_sym___forceinline] = ACTIONS(3778), + [anon_sym_thread_local] = ACTIONS(3778), + [anon_sym___thread] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym___restrict__] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym__Noreturn] = ACTIONS(3778), + [anon_sym_noreturn] = ACTIONS(3778), + [anon_sym__Nonnull] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_constinit] = ACTIONS(3778), + [anon_sym_consteval] = ACTIONS(3778), + [anon_sym_alignas] = ACTIONS(3778), + [anon_sym__Alignas] = ACTIONS(3778), + [sym_primitive_type] = ACTIONS(3778), + [anon_sym_enum] = ACTIONS(3778), + [anon_sym_class] = ACTIONS(3778), + [anon_sym_struct] = ACTIONS(3778), + [anon_sym_union] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_switch] = ACTIONS(3778), + [anon_sym_case] = ACTIONS(3778), + [anon_sym_default] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_break] = ACTIONS(3778), + [anon_sym_continue] = ACTIONS(3778), + [anon_sym_goto] = ACTIONS(3778), + [anon_sym___try] = ACTIONS(3778), + [anon_sym___leave] = ACTIONS(3778), + [anon_sym_not] = ACTIONS(3778), + [anon_sym_compl] = ACTIONS(3778), + [anon_sym_DASH_DASH] = ACTIONS(3780), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_sizeof] = ACTIONS(3778), + [anon_sym___alignof__] = ACTIONS(3778), + [anon_sym___alignof] = ACTIONS(3778), + [anon_sym__alignof] = ACTIONS(3778), + [anon_sym_alignof] = ACTIONS(3778), + [anon_sym__Alignof] = ACTIONS(3778), + [anon_sym_offsetof] = ACTIONS(3778), + [anon_sym__Generic] = ACTIONS(3778), + [anon_sym_typename] = ACTIONS(3778), + [anon_sym_asm] = ACTIONS(3778), + [anon_sym___asm__] = ACTIONS(3778), + [anon_sym___asm] = ACTIONS(3778), + [sym_number_literal] = ACTIONS(3780), + [anon_sym_L_SQUOTE] = ACTIONS(3780), + [anon_sym_u_SQUOTE] = ACTIONS(3780), + [anon_sym_U_SQUOTE] = ACTIONS(3780), + [anon_sym_u8_SQUOTE] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_L_DQUOTE] = ACTIONS(3780), + [anon_sym_u_DQUOTE] = ACTIONS(3780), + [anon_sym_U_DQUOTE] = ACTIONS(3780), + [anon_sym_u8_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [sym_true] = ACTIONS(3778), + [sym_false] = ACTIONS(3778), + [anon_sym_NULL] = ACTIONS(3778), + [anon_sym_nullptr] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3778), + [anon_sym_decltype] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_export] = ACTIONS(3778), + [anon_sym_module] = ACTIONS(3778), + [anon_sym_import] = ACTIONS(3778), + [anon_sym_template] = ACTIONS(3778), + [anon_sym_operator] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_delete] = ACTIONS(3778), + [anon_sym_throw] = ACTIONS(3778), + [anon_sym_namespace] = ACTIONS(3778), + [anon_sym_static_assert] = ACTIONS(3778), + [anon_sym_concept] = ACTIONS(3778), + [anon_sym_co_return] = ACTIONS(3778), + [anon_sym_co_yield] = ACTIONS(3778), + [anon_sym_R_DQUOTE] = ACTIONS(3780), + [anon_sym_LR_DQUOTE] = ACTIONS(3780), + [anon_sym_uR_DQUOTE] = ACTIONS(3780), + [anon_sym_UR_DQUOTE] = ACTIONS(3780), + [anon_sym_u8R_DQUOTE] = ACTIONS(3780), + [anon_sym_co_await] = ACTIONS(3778), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_requires] = ACTIONS(3778), + [anon_sym_CARET_CARET] = ACTIONS(3780), + [anon_sym_LBRACK_COLON] = ACTIONS(3780), + [sym_this] = ACTIONS(3778), }, - [STATE(740)] = { - [sym_identifier] = ACTIONS(3954), - [aux_sym_preproc_include_token1] = ACTIONS(3954), - [aux_sym_preproc_def_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token2] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), - [sym_preproc_directive] = ACTIONS(3954), - [anon_sym_LPAREN2] = ACTIONS(3956), - [anon_sym_BANG] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym___extension__] = ACTIONS(3954), - [anon_sym_typedef] = ACTIONS(3954), - [anon_sym_virtual] = ACTIONS(3954), - [anon_sym_extern] = ACTIONS(3954), - [anon_sym___attribute__] = ACTIONS(3954), - [anon_sym___attribute] = ACTIONS(3954), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_COLON_COLON] = ACTIONS(3956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), - [anon_sym___declspec] = ACTIONS(3954), - [anon_sym___based] = ACTIONS(3954), - [anon_sym___cdecl] = ACTIONS(3954), - [anon_sym___clrcall] = ACTIONS(3954), - [anon_sym___stdcall] = ACTIONS(3954), - [anon_sym___fastcall] = ACTIONS(3954), - [anon_sym___thiscall] = ACTIONS(3954), - [anon_sym___vectorcall] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3956), - [anon_sym_signed] = ACTIONS(3954), - [anon_sym_unsigned] = ACTIONS(3954), - [anon_sym_long] = ACTIONS(3954), - [anon_sym_short] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3954), - [anon_sym_register] = ACTIONS(3954), - [anon_sym_inline] = ACTIONS(3954), - [anon_sym___inline] = ACTIONS(3954), - [anon_sym___inline__] = ACTIONS(3954), - [anon_sym___forceinline] = ACTIONS(3954), - [anon_sym_thread_local] = ACTIONS(3954), - [anon_sym___thread] = ACTIONS(3954), - [anon_sym_const] = ACTIONS(3954), - [anon_sym_constexpr] = ACTIONS(3954), - [anon_sym_volatile] = ACTIONS(3954), - [anon_sym_restrict] = ACTIONS(3954), - [anon_sym___restrict__] = ACTIONS(3954), - [anon_sym__Atomic] = ACTIONS(3954), - [anon_sym__Noreturn] = ACTIONS(3954), - [anon_sym_noreturn] = ACTIONS(3954), - [anon_sym__Nonnull] = ACTIONS(3954), - [anon_sym_mutable] = ACTIONS(3954), - [anon_sym_constinit] = ACTIONS(3954), - [anon_sym_consteval] = ACTIONS(3954), - [anon_sym_alignas] = ACTIONS(3954), - [anon_sym__Alignas] = ACTIONS(3954), - [sym_primitive_type] = ACTIONS(3954), - [anon_sym_enum] = ACTIONS(3954), - [anon_sym_class] = ACTIONS(3954), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3954), - [anon_sym_if] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_case] = ACTIONS(3954), - [anon_sym_default] = ACTIONS(3954), - [anon_sym_while] = ACTIONS(3954), - [anon_sym_do] = ACTIONS(3954), - [anon_sym_for] = ACTIONS(3954), - [anon_sym_return] = ACTIONS(3954), - [anon_sym_break] = ACTIONS(3954), - [anon_sym_continue] = ACTIONS(3954), - [anon_sym_goto] = ACTIONS(3954), - [anon_sym___try] = ACTIONS(3954), - [anon_sym___leave] = ACTIONS(3954), - [anon_sym_not] = ACTIONS(3954), - [anon_sym_compl] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3956), - [anon_sym_PLUS_PLUS] = ACTIONS(3956), - [anon_sym_sizeof] = ACTIONS(3954), - [anon_sym___alignof__] = ACTIONS(3954), - [anon_sym___alignof] = ACTIONS(3954), - [anon_sym__alignof] = ACTIONS(3954), - [anon_sym_alignof] = ACTIONS(3954), - [anon_sym__Alignof] = ACTIONS(3954), - [anon_sym_offsetof] = ACTIONS(3954), - [anon_sym__Generic] = ACTIONS(3954), - [anon_sym_typename] = ACTIONS(3954), - [anon_sym_asm] = ACTIONS(3954), - [anon_sym___asm__] = ACTIONS(3954), - [anon_sym___asm] = ACTIONS(3954), - [sym_number_literal] = ACTIONS(3956), - [anon_sym_L_SQUOTE] = ACTIONS(3956), - [anon_sym_u_SQUOTE] = ACTIONS(3956), - [anon_sym_U_SQUOTE] = ACTIONS(3956), - [anon_sym_u8_SQUOTE] = ACTIONS(3956), - [anon_sym_SQUOTE] = ACTIONS(3956), - [anon_sym_L_DQUOTE] = ACTIONS(3956), - [anon_sym_u_DQUOTE] = ACTIONS(3956), - [anon_sym_U_DQUOTE] = ACTIONS(3956), - [anon_sym_u8_DQUOTE] = ACTIONS(3956), - [anon_sym_DQUOTE] = ACTIONS(3956), - [sym_true] = ACTIONS(3954), - [sym_false] = ACTIONS(3954), - [anon_sym_NULL] = ACTIONS(3954), - [anon_sym_nullptr] = ACTIONS(3954), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3954), - [anon_sym_decltype] = ACTIONS(3954), - [anon_sym_explicit] = ACTIONS(3954), - [anon_sym_export] = ACTIONS(3954), - [anon_sym_module] = ACTIONS(3954), - [anon_sym_import] = ACTIONS(3954), - [anon_sym_template] = ACTIONS(3954), - [anon_sym_operator] = ACTIONS(3954), - [anon_sym_try] = ACTIONS(3954), - [anon_sym_delete] = ACTIONS(3954), - [anon_sym_throw] = ACTIONS(3954), - [anon_sym_namespace] = ACTIONS(3954), - [anon_sym_static_assert] = ACTIONS(3954), - [anon_sym_concept] = ACTIONS(3954), - [anon_sym_co_return] = ACTIONS(3954), - [anon_sym_co_yield] = ACTIONS(3954), - [anon_sym_R_DQUOTE] = ACTIONS(3956), - [anon_sym_LR_DQUOTE] = ACTIONS(3956), - [anon_sym_uR_DQUOTE] = ACTIONS(3956), - [anon_sym_UR_DQUOTE] = ACTIONS(3956), - [anon_sym_u8R_DQUOTE] = ACTIONS(3956), - [anon_sym_co_await] = ACTIONS(3954), - [anon_sym_new] = ACTIONS(3954), - [anon_sym_requires] = ACTIONS(3954), - [anon_sym_CARET_CARET] = ACTIONS(3956), - [anon_sym_LBRACK_COLON] = ACTIONS(3956), - [sym_this] = ACTIONS(3954), + [STATE(759)] = { + [sym_identifier] = ACTIONS(3686), + [aux_sym_preproc_include_token1] = ACTIONS(3686), + [aux_sym_preproc_def_token1] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3686), + [aux_sym_preproc_if_token2] = ACTIONS(3686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3686), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3686), + [sym_preproc_directive] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3688), + [anon_sym_BANG] = ACTIONS(3688), + [anon_sym_TILDE] = ACTIONS(3688), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_AMP_AMP] = ACTIONS(3688), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3688), + [anon_sym___extension__] = ACTIONS(3686), + [anon_sym_typedef] = ACTIONS(3686), + [anon_sym_virtual] = ACTIONS(3686), + [anon_sym_extern] = ACTIONS(3686), + [anon_sym___attribute__] = ACTIONS(3686), + [anon_sym___attribute] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3688), + [anon_sym___declspec] = ACTIONS(3686), + [anon_sym___based] = ACTIONS(3686), + [anon_sym___cdecl] = ACTIONS(3686), + [anon_sym___clrcall] = ACTIONS(3686), + [anon_sym___stdcall] = ACTIONS(3686), + [anon_sym___fastcall] = ACTIONS(3686), + [anon_sym___thiscall] = ACTIONS(3686), + [anon_sym___vectorcall] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3688), + [anon_sym_signed] = ACTIONS(3686), + [anon_sym_unsigned] = ACTIONS(3686), + [anon_sym_long] = ACTIONS(3686), + [anon_sym_short] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_register] = ACTIONS(3686), + [anon_sym_inline] = ACTIONS(3686), + [anon_sym___inline] = ACTIONS(3686), + [anon_sym___inline__] = ACTIONS(3686), + [anon_sym___forceinline] = ACTIONS(3686), + [anon_sym_thread_local] = ACTIONS(3686), + [anon_sym___thread] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_constexpr] = ACTIONS(3686), + [anon_sym_volatile] = ACTIONS(3686), + [anon_sym_restrict] = ACTIONS(3686), + [anon_sym___restrict__] = ACTIONS(3686), + [anon_sym__Atomic] = ACTIONS(3686), + [anon_sym__Noreturn] = ACTIONS(3686), + [anon_sym_noreturn] = ACTIONS(3686), + [anon_sym__Nonnull] = ACTIONS(3686), + [anon_sym_mutable] = ACTIONS(3686), + [anon_sym_constinit] = ACTIONS(3686), + [anon_sym_consteval] = ACTIONS(3686), + [anon_sym_alignas] = ACTIONS(3686), + [anon_sym__Alignas] = ACTIONS(3686), + [sym_primitive_type] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_struct] = ACTIONS(3686), + [anon_sym_union] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_case] = ACTIONS(3686), + [anon_sym_default] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_goto] = ACTIONS(3686), + [anon_sym___try] = ACTIONS(3686), + [anon_sym___leave] = ACTIONS(3686), + [anon_sym_not] = ACTIONS(3686), + [anon_sym_compl] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3688), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_sizeof] = ACTIONS(3686), + [anon_sym___alignof__] = ACTIONS(3686), + [anon_sym___alignof] = ACTIONS(3686), + [anon_sym__alignof] = ACTIONS(3686), + [anon_sym_alignof] = ACTIONS(3686), + [anon_sym__Alignof] = ACTIONS(3686), + [anon_sym_offsetof] = ACTIONS(3686), + [anon_sym__Generic] = ACTIONS(3686), + [anon_sym_typename] = ACTIONS(3686), + [anon_sym_asm] = ACTIONS(3686), + [anon_sym___asm__] = ACTIONS(3686), + [anon_sym___asm] = ACTIONS(3686), + [sym_number_literal] = ACTIONS(3688), + [anon_sym_L_SQUOTE] = ACTIONS(3688), + [anon_sym_u_SQUOTE] = ACTIONS(3688), + [anon_sym_U_SQUOTE] = ACTIONS(3688), + [anon_sym_u8_SQUOTE] = ACTIONS(3688), + [anon_sym_SQUOTE] = ACTIONS(3688), + [anon_sym_L_DQUOTE] = ACTIONS(3688), + [anon_sym_u_DQUOTE] = ACTIONS(3688), + [anon_sym_U_DQUOTE] = ACTIONS(3688), + [anon_sym_u8_DQUOTE] = ACTIONS(3688), + [anon_sym_DQUOTE] = ACTIONS(3688), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [anon_sym_NULL] = ACTIONS(3686), + [anon_sym_nullptr] = ACTIONS(3686), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3686), + [anon_sym_decltype] = ACTIONS(3686), + [anon_sym_explicit] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_template] = ACTIONS(3686), + [anon_sym_operator] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_static_assert] = ACTIONS(3686), + [anon_sym_concept] = ACTIONS(3686), + [anon_sym_co_return] = ACTIONS(3686), + [anon_sym_co_yield] = ACTIONS(3686), + [anon_sym_R_DQUOTE] = ACTIONS(3688), + [anon_sym_LR_DQUOTE] = ACTIONS(3688), + [anon_sym_uR_DQUOTE] = ACTIONS(3688), + [anon_sym_UR_DQUOTE] = ACTIONS(3688), + [anon_sym_u8R_DQUOTE] = ACTIONS(3688), + [anon_sym_co_await] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_requires] = ACTIONS(3686), + [anon_sym_CARET_CARET] = ACTIONS(3688), + [anon_sym_LBRACK_COLON] = ACTIONS(3688), + [sym_this] = ACTIONS(3686), }, - [STATE(741)] = { - [sym_identifier] = ACTIONS(3958), - [aux_sym_preproc_include_token1] = ACTIONS(3958), - [aux_sym_preproc_def_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token2] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), - [sym_preproc_directive] = ACTIONS(3958), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_BANG] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3958), - [anon_sym_PLUS] = ACTIONS(3958), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_typedef] = ACTIONS(3958), - [anon_sym_virtual] = ACTIONS(3958), - [anon_sym_extern] = ACTIONS(3958), - [anon_sym___attribute__] = ACTIONS(3958), - [anon_sym___attribute] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), - [anon_sym___declspec] = ACTIONS(3958), - [anon_sym___based] = ACTIONS(3958), - [anon_sym___cdecl] = ACTIONS(3958), - [anon_sym___clrcall] = ACTIONS(3958), - [anon_sym___stdcall] = ACTIONS(3958), - [anon_sym___fastcall] = ACTIONS(3958), - [anon_sym___thiscall] = ACTIONS(3958), - [anon_sym___vectorcall] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_signed] = ACTIONS(3958), - [anon_sym_unsigned] = ACTIONS(3958), - [anon_sym_long] = ACTIONS(3958), - [anon_sym_short] = ACTIONS(3958), - [anon_sym_LBRACK] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3958), - [anon_sym_register] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym___inline] = ACTIONS(3958), - [anon_sym___inline__] = ACTIONS(3958), - [anon_sym___forceinline] = ACTIONS(3958), - [anon_sym_thread_local] = ACTIONS(3958), - [anon_sym___thread] = ACTIONS(3958), - [anon_sym_const] = ACTIONS(3958), - [anon_sym_constexpr] = ACTIONS(3958), - [anon_sym_volatile] = ACTIONS(3958), - [anon_sym_restrict] = ACTIONS(3958), - [anon_sym___restrict__] = ACTIONS(3958), - [anon_sym__Atomic] = ACTIONS(3958), - [anon_sym__Noreturn] = ACTIONS(3958), - [anon_sym_noreturn] = ACTIONS(3958), - [anon_sym__Nonnull] = ACTIONS(3958), - [anon_sym_mutable] = ACTIONS(3958), - [anon_sym_constinit] = ACTIONS(3958), - [anon_sym_consteval] = ACTIONS(3958), - [anon_sym_alignas] = ACTIONS(3958), - [anon_sym__Alignas] = ACTIONS(3958), - [sym_primitive_type] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_union] = ACTIONS(3958), - [anon_sym_if] = ACTIONS(3958), - [anon_sym_switch] = ACTIONS(3958), - [anon_sym_case] = ACTIONS(3958), - [anon_sym_default] = ACTIONS(3958), - [anon_sym_while] = ACTIONS(3958), - [anon_sym_do] = ACTIONS(3958), - [anon_sym_for] = ACTIONS(3958), - [anon_sym_return] = ACTIONS(3958), - [anon_sym_break] = ACTIONS(3958), - [anon_sym_continue] = ACTIONS(3958), - [anon_sym_goto] = ACTIONS(3958), - [anon_sym___try] = ACTIONS(3958), - [anon_sym___leave] = ACTIONS(3958), - [anon_sym_not] = ACTIONS(3958), - [anon_sym_compl] = ACTIONS(3958), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_PLUS_PLUS] = ACTIONS(3960), - [anon_sym_sizeof] = ACTIONS(3958), - [anon_sym___alignof__] = ACTIONS(3958), - [anon_sym___alignof] = ACTIONS(3958), - [anon_sym__alignof] = ACTIONS(3958), - [anon_sym_alignof] = ACTIONS(3958), - [anon_sym__Alignof] = ACTIONS(3958), - [anon_sym_offsetof] = ACTIONS(3958), - [anon_sym__Generic] = ACTIONS(3958), - [anon_sym_typename] = ACTIONS(3958), - [anon_sym_asm] = ACTIONS(3958), - [anon_sym___asm__] = ACTIONS(3958), - [anon_sym___asm] = ACTIONS(3958), - [sym_number_literal] = ACTIONS(3960), - [anon_sym_L_SQUOTE] = ACTIONS(3960), - [anon_sym_u_SQUOTE] = ACTIONS(3960), - [anon_sym_U_SQUOTE] = ACTIONS(3960), - [anon_sym_u8_SQUOTE] = ACTIONS(3960), - [anon_sym_SQUOTE] = ACTIONS(3960), - [anon_sym_L_DQUOTE] = ACTIONS(3960), - [anon_sym_u_DQUOTE] = ACTIONS(3960), - [anon_sym_U_DQUOTE] = ACTIONS(3960), - [anon_sym_u8_DQUOTE] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [anon_sym_NULL] = ACTIONS(3958), - [anon_sym_nullptr] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3958), - [anon_sym_decltype] = ACTIONS(3958), - [anon_sym_explicit] = ACTIONS(3958), - [anon_sym_export] = ACTIONS(3958), - [anon_sym_module] = ACTIONS(3958), - [anon_sym_import] = ACTIONS(3958), - [anon_sym_template] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_try] = ACTIONS(3958), - [anon_sym_delete] = ACTIONS(3958), - [anon_sym_throw] = ACTIONS(3958), - [anon_sym_namespace] = ACTIONS(3958), - [anon_sym_static_assert] = ACTIONS(3958), - [anon_sym_concept] = ACTIONS(3958), - [anon_sym_co_return] = ACTIONS(3958), - [anon_sym_co_yield] = ACTIONS(3958), - [anon_sym_R_DQUOTE] = ACTIONS(3960), - [anon_sym_LR_DQUOTE] = ACTIONS(3960), - [anon_sym_uR_DQUOTE] = ACTIONS(3960), - [anon_sym_UR_DQUOTE] = ACTIONS(3960), - [anon_sym_u8R_DQUOTE] = ACTIONS(3960), - [anon_sym_co_await] = ACTIONS(3958), - [anon_sym_new] = ACTIONS(3958), - [anon_sym_requires] = ACTIONS(3958), - [anon_sym_CARET_CARET] = ACTIONS(3960), - [anon_sym_LBRACK_COLON] = ACTIONS(3960), - [sym_this] = ACTIONS(3958), + [STATE(760)] = { + [sym_identifier] = ACTIONS(3490), + [aux_sym_preproc_include_token1] = ACTIONS(3490), + [aux_sym_preproc_def_token1] = ACTIONS(3490), + [aux_sym_preproc_if_token1] = ACTIONS(3490), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3490), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3490), + [sym_preproc_directive] = ACTIONS(3490), + [anon_sym_LPAREN2] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP_AMP] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3490), + [anon_sym_typedef] = ACTIONS(3490), + [anon_sym_virtual] = ACTIONS(3490), + [anon_sym_extern] = ACTIONS(3490), + [anon_sym___attribute__] = ACTIONS(3490), + [anon_sym___attribute] = ACTIONS(3490), + [anon_sym_using] = ACTIONS(3490), + [anon_sym_COLON_COLON] = ACTIONS(3492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3492), + [anon_sym___declspec] = ACTIONS(3490), + [anon_sym___based] = ACTIONS(3490), + [anon_sym___cdecl] = ACTIONS(3490), + [anon_sym___clrcall] = ACTIONS(3490), + [anon_sym___stdcall] = ACTIONS(3490), + [anon_sym___fastcall] = ACTIONS(3490), + [anon_sym___thiscall] = ACTIONS(3490), + [anon_sym___vectorcall] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_signed] = ACTIONS(3490), + [anon_sym_unsigned] = ACTIONS(3490), + [anon_sym_long] = ACTIONS(3490), + [anon_sym_short] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_register] = ACTIONS(3490), + [anon_sym_inline] = ACTIONS(3490), + [anon_sym___inline] = ACTIONS(3490), + [anon_sym___inline__] = ACTIONS(3490), + [anon_sym___forceinline] = ACTIONS(3490), + [anon_sym_thread_local] = ACTIONS(3490), + [anon_sym___thread] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_constexpr] = ACTIONS(3490), + [anon_sym_volatile] = ACTIONS(3490), + [anon_sym_restrict] = ACTIONS(3490), + [anon_sym___restrict__] = ACTIONS(3490), + [anon_sym__Atomic] = ACTIONS(3490), + [anon_sym__Noreturn] = ACTIONS(3490), + [anon_sym_noreturn] = ACTIONS(3490), + [anon_sym__Nonnull] = ACTIONS(3490), + [anon_sym_mutable] = ACTIONS(3490), + [anon_sym_constinit] = ACTIONS(3490), + [anon_sym_consteval] = ACTIONS(3490), + [anon_sym_alignas] = ACTIONS(3490), + [anon_sym__Alignas] = ACTIONS(3490), + [sym_primitive_type] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_struct] = ACTIONS(3490), + [anon_sym_union] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_case] = ACTIONS(3490), + [anon_sym_default] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_goto] = ACTIONS(3490), + [anon_sym___try] = ACTIONS(3490), + [anon_sym___leave] = ACTIONS(3490), + [anon_sym_not] = ACTIONS(3490), + [anon_sym_compl] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_sizeof] = ACTIONS(3490), + [anon_sym___alignof__] = ACTIONS(3490), + [anon_sym___alignof] = ACTIONS(3490), + [anon_sym__alignof] = ACTIONS(3490), + [anon_sym_alignof] = ACTIONS(3490), + [anon_sym__Alignof] = ACTIONS(3490), + [anon_sym_offsetof] = ACTIONS(3490), + [anon_sym__Generic] = ACTIONS(3490), + [anon_sym_typename] = ACTIONS(3490), + [anon_sym_asm] = ACTIONS(3490), + [anon_sym___asm__] = ACTIONS(3490), + [anon_sym___asm] = ACTIONS(3490), + [sym_number_literal] = ACTIONS(3492), + [anon_sym_L_SQUOTE] = ACTIONS(3492), + [anon_sym_u_SQUOTE] = ACTIONS(3492), + [anon_sym_U_SQUOTE] = ACTIONS(3492), + [anon_sym_u8_SQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_L_DQUOTE] = ACTIONS(3492), + [anon_sym_u_DQUOTE] = ACTIONS(3492), + [anon_sym_U_DQUOTE] = ACTIONS(3492), + [anon_sym_u8_DQUOTE] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [anon_sym_NULL] = ACTIONS(3490), + [anon_sym_nullptr] = ACTIONS(3490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3490), + [anon_sym_decltype] = ACTIONS(3490), + [anon_sym_explicit] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_template] = ACTIONS(3490), + [anon_sym_operator] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_static_assert] = ACTIONS(3490), + [anon_sym_concept] = ACTIONS(3490), + [anon_sym_co_return] = ACTIONS(3490), + [anon_sym_co_yield] = ACTIONS(3490), + [anon_sym_R_DQUOTE] = ACTIONS(3492), + [anon_sym_LR_DQUOTE] = ACTIONS(3492), + [anon_sym_uR_DQUOTE] = ACTIONS(3492), + [anon_sym_UR_DQUOTE] = ACTIONS(3492), + [anon_sym_u8R_DQUOTE] = ACTIONS(3492), + [anon_sym_co_await] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_requires] = ACTIONS(3490), + [anon_sym_CARET_CARET] = ACTIONS(3492), + [anon_sym_LBRACK_COLON] = ACTIONS(3492), + [sym_this] = ACTIONS(3490), }, - [STATE(742)] = { - [sym_identifier] = ACTIONS(4020), - [aux_sym_preproc_include_token1] = ACTIONS(4020), - [aux_sym_preproc_def_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token2] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), - [sym_preproc_directive] = ACTIONS(4020), - [anon_sym_LPAREN2] = ACTIONS(4022), - [anon_sym_BANG] = ACTIONS(4022), - [anon_sym_TILDE] = ACTIONS(4022), - [anon_sym_DASH] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4020), - [anon_sym_STAR] = ACTIONS(4022), - [anon_sym_AMP_AMP] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_SEMI] = ACTIONS(4022), - [anon_sym___extension__] = ACTIONS(4020), - [anon_sym_typedef] = ACTIONS(4020), - [anon_sym_virtual] = ACTIONS(4020), - [anon_sym_extern] = ACTIONS(4020), - [anon_sym___attribute__] = ACTIONS(4020), - [anon_sym___attribute] = ACTIONS(4020), - [anon_sym_using] = ACTIONS(4020), - [anon_sym_COLON_COLON] = ACTIONS(4022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), - [anon_sym___declspec] = ACTIONS(4020), - [anon_sym___based] = ACTIONS(4020), - [anon_sym___cdecl] = ACTIONS(4020), - [anon_sym___clrcall] = ACTIONS(4020), - [anon_sym___stdcall] = ACTIONS(4020), - [anon_sym___fastcall] = ACTIONS(4020), - [anon_sym___thiscall] = ACTIONS(4020), - [anon_sym___vectorcall] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_signed] = ACTIONS(4020), - [anon_sym_unsigned] = ACTIONS(4020), - [anon_sym_long] = ACTIONS(4020), - [anon_sym_short] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_static] = ACTIONS(4020), - [anon_sym_register] = ACTIONS(4020), - [anon_sym_inline] = ACTIONS(4020), - [anon_sym___inline] = ACTIONS(4020), - [anon_sym___inline__] = ACTIONS(4020), - [anon_sym___forceinline] = ACTIONS(4020), - [anon_sym_thread_local] = ACTIONS(4020), - [anon_sym___thread] = ACTIONS(4020), - [anon_sym_const] = ACTIONS(4020), - [anon_sym_constexpr] = ACTIONS(4020), - [anon_sym_volatile] = ACTIONS(4020), - [anon_sym_restrict] = ACTIONS(4020), - [anon_sym___restrict__] = ACTIONS(4020), - [anon_sym__Atomic] = ACTIONS(4020), - [anon_sym__Noreturn] = ACTIONS(4020), - [anon_sym_noreturn] = ACTIONS(4020), - [anon_sym__Nonnull] = ACTIONS(4020), - [anon_sym_mutable] = ACTIONS(4020), - [anon_sym_constinit] = ACTIONS(4020), - [anon_sym_consteval] = ACTIONS(4020), - [anon_sym_alignas] = ACTIONS(4020), - [anon_sym__Alignas] = ACTIONS(4020), - [sym_primitive_type] = ACTIONS(4020), - [anon_sym_enum] = ACTIONS(4020), - [anon_sym_class] = ACTIONS(4020), - [anon_sym_struct] = ACTIONS(4020), - [anon_sym_union] = ACTIONS(4020), - [anon_sym_if] = ACTIONS(4020), - [anon_sym_switch] = ACTIONS(4020), - [anon_sym_case] = ACTIONS(4020), - [anon_sym_default] = ACTIONS(4020), - [anon_sym_while] = ACTIONS(4020), - [anon_sym_do] = ACTIONS(4020), - [anon_sym_for] = ACTIONS(4020), - [anon_sym_return] = ACTIONS(4020), - [anon_sym_break] = ACTIONS(4020), - [anon_sym_continue] = ACTIONS(4020), - [anon_sym_goto] = ACTIONS(4020), - [anon_sym___try] = ACTIONS(4020), - [anon_sym___leave] = ACTIONS(4020), - [anon_sym_not] = ACTIONS(4020), - [anon_sym_compl] = ACTIONS(4020), - [anon_sym_DASH_DASH] = ACTIONS(4022), - [anon_sym_PLUS_PLUS] = ACTIONS(4022), - [anon_sym_sizeof] = ACTIONS(4020), - [anon_sym___alignof__] = ACTIONS(4020), - [anon_sym___alignof] = ACTIONS(4020), - [anon_sym__alignof] = ACTIONS(4020), - [anon_sym_alignof] = ACTIONS(4020), - [anon_sym__Alignof] = ACTIONS(4020), - [anon_sym_offsetof] = ACTIONS(4020), - [anon_sym__Generic] = ACTIONS(4020), - [anon_sym_typename] = ACTIONS(4020), - [anon_sym_asm] = ACTIONS(4020), - [anon_sym___asm__] = ACTIONS(4020), - [anon_sym___asm] = ACTIONS(4020), - [sym_number_literal] = ACTIONS(4022), - [anon_sym_L_SQUOTE] = ACTIONS(4022), - [anon_sym_u_SQUOTE] = ACTIONS(4022), - [anon_sym_U_SQUOTE] = ACTIONS(4022), - [anon_sym_u8_SQUOTE] = ACTIONS(4022), - [anon_sym_SQUOTE] = ACTIONS(4022), - [anon_sym_L_DQUOTE] = ACTIONS(4022), - [anon_sym_u_DQUOTE] = ACTIONS(4022), - [anon_sym_U_DQUOTE] = ACTIONS(4022), - [anon_sym_u8_DQUOTE] = ACTIONS(4022), - [anon_sym_DQUOTE] = ACTIONS(4022), - [sym_true] = ACTIONS(4020), - [sym_false] = ACTIONS(4020), - [anon_sym_NULL] = ACTIONS(4020), - [anon_sym_nullptr] = ACTIONS(4020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4020), - [anon_sym_decltype] = ACTIONS(4020), - [anon_sym_explicit] = ACTIONS(4020), - [anon_sym_export] = ACTIONS(4020), - [anon_sym_module] = ACTIONS(4020), - [anon_sym_import] = ACTIONS(4020), - [anon_sym_template] = ACTIONS(4020), - [anon_sym_operator] = ACTIONS(4020), - [anon_sym_try] = ACTIONS(4020), - [anon_sym_delete] = ACTIONS(4020), - [anon_sym_throw] = ACTIONS(4020), - [anon_sym_namespace] = ACTIONS(4020), - [anon_sym_static_assert] = ACTIONS(4020), - [anon_sym_concept] = ACTIONS(4020), - [anon_sym_co_return] = ACTIONS(4020), - [anon_sym_co_yield] = ACTIONS(4020), - [anon_sym_R_DQUOTE] = ACTIONS(4022), - [anon_sym_LR_DQUOTE] = ACTIONS(4022), - [anon_sym_uR_DQUOTE] = ACTIONS(4022), - [anon_sym_UR_DQUOTE] = ACTIONS(4022), - [anon_sym_u8R_DQUOTE] = ACTIONS(4022), - [anon_sym_co_await] = ACTIONS(4020), - [anon_sym_new] = ACTIONS(4020), - [anon_sym_requires] = ACTIONS(4020), - [anon_sym_CARET_CARET] = ACTIONS(4022), - [anon_sym_LBRACK_COLON] = ACTIONS(4022), - [sym_this] = ACTIONS(4020), - }, - [STATE(743)] = { - [sym_identifier] = ACTIONS(4048), - [aux_sym_preproc_include_token1] = ACTIONS(4048), - [aux_sym_preproc_def_token1] = ACTIONS(4048), - [aux_sym_preproc_if_token1] = ACTIONS(4048), - [aux_sym_preproc_if_token2] = ACTIONS(4048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), - [sym_preproc_directive] = ACTIONS(4048), - [anon_sym_LPAREN2] = ACTIONS(4050), - [anon_sym_BANG] = ACTIONS(4050), - [anon_sym_TILDE] = ACTIONS(4050), - [anon_sym_DASH] = ACTIONS(4048), - [anon_sym_PLUS] = ACTIONS(4048), - [anon_sym_STAR] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_SEMI] = ACTIONS(4050), - [anon_sym___extension__] = ACTIONS(4048), - [anon_sym_typedef] = ACTIONS(4048), - [anon_sym_virtual] = ACTIONS(4048), - [anon_sym_extern] = ACTIONS(4048), - [anon_sym___attribute__] = ACTIONS(4048), - [anon_sym___attribute] = ACTIONS(4048), - [anon_sym_using] = ACTIONS(4048), - [anon_sym_COLON_COLON] = ACTIONS(4050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), - [anon_sym___declspec] = ACTIONS(4048), - [anon_sym___based] = ACTIONS(4048), - [anon_sym___cdecl] = ACTIONS(4048), - [anon_sym___clrcall] = ACTIONS(4048), - [anon_sym___stdcall] = ACTIONS(4048), - [anon_sym___fastcall] = ACTIONS(4048), - [anon_sym___thiscall] = ACTIONS(4048), - [anon_sym___vectorcall] = ACTIONS(4048), - [anon_sym_LBRACE] = ACTIONS(4050), - [anon_sym_signed] = ACTIONS(4048), - [anon_sym_unsigned] = ACTIONS(4048), - [anon_sym_long] = ACTIONS(4048), - [anon_sym_short] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(4048), - [anon_sym_static] = ACTIONS(4048), - [anon_sym_register] = ACTIONS(4048), - [anon_sym_inline] = ACTIONS(4048), - [anon_sym___inline] = ACTIONS(4048), - [anon_sym___inline__] = ACTIONS(4048), - [anon_sym___forceinline] = ACTIONS(4048), - [anon_sym_thread_local] = ACTIONS(4048), - [anon_sym___thread] = ACTIONS(4048), - [anon_sym_const] = ACTIONS(4048), - [anon_sym_constexpr] = ACTIONS(4048), - [anon_sym_volatile] = ACTIONS(4048), - [anon_sym_restrict] = ACTIONS(4048), - [anon_sym___restrict__] = ACTIONS(4048), - [anon_sym__Atomic] = ACTIONS(4048), - [anon_sym__Noreturn] = ACTIONS(4048), - [anon_sym_noreturn] = ACTIONS(4048), - [anon_sym__Nonnull] = ACTIONS(4048), - [anon_sym_mutable] = ACTIONS(4048), - [anon_sym_constinit] = ACTIONS(4048), - [anon_sym_consteval] = ACTIONS(4048), - [anon_sym_alignas] = ACTIONS(4048), - [anon_sym__Alignas] = ACTIONS(4048), - [sym_primitive_type] = ACTIONS(4048), - [anon_sym_enum] = ACTIONS(4048), - [anon_sym_class] = ACTIONS(4048), - [anon_sym_struct] = ACTIONS(4048), - [anon_sym_union] = ACTIONS(4048), - [anon_sym_if] = ACTIONS(4048), - [anon_sym_switch] = ACTIONS(4048), - [anon_sym_case] = ACTIONS(4048), - [anon_sym_default] = ACTIONS(4048), - [anon_sym_while] = ACTIONS(4048), - [anon_sym_do] = ACTIONS(4048), - [anon_sym_for] = ACTIONS(4048), - [anon_sym_return] = ACTIONS(4048), - [anon_sym_break] = ACTIONS(4048), - [anon_sym_continue] = ACTIONS(4048), - [anon_sym_goto] = ACTIONS(4048), - [anon_sym___try] = ACTIONS(4048), - [anon_sym___leave] = ACTIONS(4048), - [anon_sym_not] = ACTIONS(4048), - [anon_sym_compl] = ACTIONS(4048), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_sizeof] = ACTIONS(4048), - [anon_sym___alignof__] = ACTIONS(4048), - [anon_sym___alignof] = ACTIONS(4048), - [anon_sym__alignof] = ACTIONS(4048), - [anon_sym_alignof] = ACTIONS(4048), - [anon_sym__Alignof] = ACTIONS(4048), - [anon_sym_offsetof] = ACTIONS(4048), - [anon_sym__Generic] = ACTIONS(4048), - [anon_sym_typename] = ACTIONS(4048), - [anon_sym_asm] = ACTIONS(4048), - [anon_sym___asm__] = ACTIONS(4048), - [anon_sym___asm] = ACTIONS(4048), - [sym_number_literal] = ACTIONS(4050), - [anon_sym_L_SQUOTE] = ACTIONS(4050), - [anon_sym_u_SQUOTE] = ACTIONS(4050), - [anon_sym_U_SQUOTE] = ACTIONS(4050), - [anon_sym_u8_SQUOTE] = ACTIONS(4050), - [anon_sym_SQUOTE] = ACTIONS(4050), - [anon_sym_L_DQUOTE] = ACTIONS(4050), - [anon_sym_u_DQUOTE] = ACTIONS(4050), - [anon_sym_U_DQUOTE] = ACTIONS(4050), - [anon_sym_u8_DQUOTE] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [sym_true] = ACTIONS(4048), - [sym_false] = ACTIONS(4048), - [anon_sym_NULL] = ACTIONS(4048), - [anon_sym_nullptr] = ACTIONS(4048), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4048), - [anon_sym_decltype] = ACTIONS(4048), - [anon_sym_explicit] = ACTIONS(4048), - [anon_sym_export] = ACTIONS(4048), - [anon_sym_module] = ACTIONS(4048), - [anon_sym_import] = ACTIONS(4048), - [anon_sym_template] = ACTIONS(4048), - [anon_sym_operator] = ACTIONS(4048), - [anon_sym_try] = ACTIONS(4048), - [anon_sym_delete] = ACTIONS(4048), - [anon_sym_throw] = ACTIONS(4048), - [anon_sym_namespace] = ACTIONS(4048), - [anon_sym_static_assert] = ACTIONS(4048), - [anon_sym_concept] = ACTIONS(4048), - [anon_sym_co_return] = ACTIONS(4048), - [anon_sym_co_yield] = ACTIONS(4048), - [anon_sym_R_DQUOTE] = ACTIONS(4050), - [anon_sym_LR_DQUOTE] = ACTIONS(4050), - [anon_sym_uR_DQUOTE] = ACTIONS(4050), - [anon_sym_UR_DQUOTE] = ACTIONS(4050), - [anon_sym_u8R_DQUOTE] = ACTIONS(4050), - [anon_sym_co_await] = ACTIONS(4048), - [anon_sym_new] = ACTIONS(4048), - [anon_sym_requires] = ACTIONS(4048), - [anon_sym_CARET_CARET] = ACTIONS(4050), - [anon_sym_LBRACK_COLON] = ACTIONS(4050), - [sym_this] = ACTIONS(4048), - }, - [STATE(744)] = { - [ts_builtin_sym_end] = ACTIONS(3161), - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [anon_sym_RPAREN] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3163), - [anon_sym_compl] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = ACTIONS(3163), - [anon_sym___asm] = ACTIONS(3163), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [anon_sym_CARET_CARET] = ACTIONS(3161), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - [sym_this] = ACTIONS(3163), - }, - [STATE(745)] = { - [sym_identifier] = ACTIONS(3614), - [aux_sym_preproc_include_token1] = ACTIONS(3614), - [aux_sym_preproc_def_token1] = ACTIONS(3614), - [aux_sym_preproc_if_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3614), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3614), - [sym_preproc_directive] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3614), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym___attribute] = ACTIONS(3614), - [anon_sym_using] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym___based] = ACTIONS(3614), - [anon_sym___cdecl] = ACTIONS(3614), - [anon_sym___clrcall] = ACTIONS(3614), - [anon_sym___stdcall] = ACTIONS(3614), - [anon_sym___fastcall] = ACTIONS(3614), - [anon_sym___thiscall] = ACTIONS(3614), - [anon_sym___vectorcall] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_RBRACE] = ACTIONS(3616), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym__Nonnull] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym__Alignas] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_else] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_case] = ACTIONS(3614), - [anon_sym_default] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_goto] = ACTIONS(3614), - [anon_sym___try] = ACTIONS(3614), - [anon_sym___leave] = ACTIONS(3614), - [anon_sym_not] = ACTIONS(3614), - [anon_sym_compl] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3614), - [anon_sym___alignof__] = ACTIONS(3614), - [anon_sym___alignof] = ACTIONS(3614), - [anon_sym__alignof] = ACTIONS(3614), - [anon_sym_alignof] = ACTIONS(3614), - [anon_sym__Alignof] = ACTIONS(3614), - [anon_sym_offsetof] = ACTIONS(3614), - [anon_sym__Generic] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_asm] = ACTIONS(3614), - [anon_sym___asm__] = ACTIONS(3614), - [anon_sym___asm] = ACTIONS(3614), - [sym_number_literal] = ACTIONS(3616), - [anon_sym_L_SQUOTE] = ACTIONS(3616), - [anon_sym_u_SQUOTE] = ACTIONS(3616), - [anon_sym_U_SQUOTE] = ACTIONS(3616), - [anon_sym_u8_SQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_L_DQUOTE] = ACTIONS(3616), - [anon_sym_u_DQUOTE] = ACTIONS(3616), - [anon_sym_U_DQUOTE] = ACTIONS(3616), - [anon_sym_u8_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [anon_sym_NULL] = ACTIONS(3614), - [anon_sym_nullptr] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_explicit] = ACTIONS(3614), - [anon_sym_export] = ACTIONS(3614), - [anon_sym_import] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_operator] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_namespace] = ACTIONS(3614), - [anon_sym_static_assert] = ACTIONS(3614), - [anon_sym_concept] = ACTIONS(3614), - [anon_sym_co_return] = ACTIONS(3614), - [anon_sym_co_yield] = ACTIONS(3614), - [anon_sym_R_DQUOTE] = ACTIONS(3616), - [anon_sym_LR_DQUOTE] = ACTIONS(3616), - [anon_sym_uR_DQUOTE] = ACTIONS(3616), - [anon_sym_UR_DQUOTE] = ACTIONS(3616), - [anon_sym_u8R_DQUOTE] = ACTIONS(3616), - [anon_sym_co_await] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_requires] = ACTIONS(3614), - [anon_sym_CARET_CARET] = ACTIONS(3616), - [anon_sym_LBRACK_COLON] = ACTIONS(3616), - [sym_this] = ACTIONS(3614), - }, - [STATE(746)] = { - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_include_token1] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token2] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4192), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym___cdecl] = ACTIONS(4192), - [anon_sym___clrcall] = ACTIONS(4192), - [anon_sym___stdcall] = ACTIONS(4192), - [anon_sym___fastcall] = ACTIONS(4192), - [anon_sym___thiscall] = ACTIONS(4192), - [anon_sym___vectorcall] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4194), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_if] = ACTIONS(4192), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_case] = ACTIONS(4192), - [anon_sym_default] = ACTIONS(4192), - [anon_sym_while] = ACTIONS(4192), - [anon_sym_do] = ACTIONS(4192), - [anon_sym_for] = ACTIONS(4192), - [anon_sym_return] = ACTIONS(4192), - [anon_sym_break] = ACTIONS(4192), - [anon_sym_continue] = ACTIONS(4192), - [anon_sym_goto] = ACTIONS(4192), - [anon_sym___try] = ACTIONS(4192), - [anon_sym___leave] = ACTIONS(4192), - [anon_sym_not] = ACTIONS(4192), - [anon_sym_compl] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4194), - [anon_sym_sizeof] = ACTIONS(4192), - [anon_sym___alignof__] = ACTIONS(4192), - [anon_sym___alignof] = ACTIONS(4192), - [anon_sym__alignof] = ACTIONS(4192), - [anon_sym_alignof] = ACTIONS(4192), - [anon_sym__Alignof] = ACTIONS(4192), - [anon_sym_offsetof] = ACTIONS(4192), - [anon_sym__Generic] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [anon_sym_asm] = ACTIONS(4192), - [anon_sym___asm__] = ACTIONS(4192), - [anon_sym___asm] = ACTIONS(4192), - [sym_number_literal] = ACTIONS(4194), - [anon_sym_L_SQUOTE] = ACTIONS(4194), - [anon_sym_u_SQUOTE] = ACTIONS(4194), - [anon_sym_U_SQUOTE] = ACTIONS(4194), - [anon_sym_u8_SQUOTE] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4194), - [anon_sym_L_DQUOTE] = ACTIONS(4194), - [anon_sym_u_DQUOTE] = ACTIONS(4194), - [anon_sym_U_DQUOTE] = ACTIONS(4194), - [anon_sym_u8_DQUOTE] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [sym_true] = ACTIONS(4192), - [sym_false] = ACTIONS(4192), - [anon_sym_NULL] = ACTIONS(4192), - [anon_sym_nullptr] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_export] = ACTIONS(4192), - [anon_sym_module] = ACTIONS(4192), - [anon_sym_import] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_try] = ACTIONS(4192), - [anon_sym_delete] = ACTIONS(4192), - [anon_sym_throw] = ACTIONS(4192), - [anon_sym_namespace] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_concept] = ACTIONS(4192), - [anon_sym_co_return] = ACTIONS(4192), - [anon_sym_co_yield] = ACTIONS(4192), - [anon_sym_R_DQUOTE] = ACTIONS(4194), - [anon_sym_LR_DQUOTE] = ACTIONS(4194), - [anon_sym_uR_DQUOTE] = ACTIONS(4194), - [anon_sym_UR_DQUOTE] = ACTIONS(4194), - [anon_sym_u8R_DQUOTE] = ACTIONS(4194), - [anon_sym_co_await] = ACTIONS(4192), - [anon_sym_new] = ACTIONS(4192), - [anon_sym_requires] = ACTIONS(4192), - [anon_sym_CARET_CARET] = ACTIONS(4194), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - [sym_this] = ACTIONS(4192), - }, - [STATE(747)] = { - [sym_identifier] = ACTIONS(4282), - [aux_sym_preproc_include_token1] = ACTIONS(4282), - [aux_sym_preproc_def_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token2] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), - [sym_preproc_directive] = ACTIONS(4282), - [anon_sym_LPAREN2] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4282), - [anon_sym_PLUS] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(4284), - [anon_sym_AMP_AMP] = ACTIONS(4284), - [anon_sym_AMP] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4284), - [anon_sym___extension__] = ACTIONS(4282), - [anon_sym_typedef] = ACTIONS(4282), - [anon_sym_virtual] = ACTIONS(4282), - [anon_sym_extern] = ACTIONS(4282), - [anon_sym___attribute__] = ACTIONS(4282), - [anon_sym___attribute] = ACTIONS(4282), - [anon_sym_using] = ACTIONS(4282), - [anon_sym_COLON_COLON] = ACTIONS(4284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4282), - [anon_sym___based] = ACTIONS(4282), - [anon_sym___cdecl] = ACTIONS(4282), - [anon_sym___clrcall] = ACTIONS(4282), - [anon_sym___stdcall] = ACTIONS(4282), - [anon_sym___fastcall] = ACTIONS(4282), - [anon_sym___thiscall] = ACTIONS(4282), - [anon_sym___vectorcall] = ACTIONS(4282), - [anon_sym_LBRACE] = ACTIONS(4284), - [anon_sym_signed] = ACTIONS(4282), - [anon_sym_unsigned] = ACTIONS(4282), - [anon_sym_long] = ACTIONS(4282), - [anon_sym_short] = ACTIONS(4282), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_static] = ACTIONS(4282), - [anon_sym_register] = ACTIONS(4282), - [anon_sym_inline] = ACTIONS(4282), - [anon_sym___inline] = ACTIONS(4282), - [anon_sym___inline__] = ACTIONS(4282), - [anon_sym___forceinline] = ACTIONS(4282), - [anon_sym_thread_local] = ACTIONS(4282), - [anon_sym___thread] = ACTIONS(4282), - [anon_sym_const] = ACTIONS(4282), - [anon_sym_constexpr] = ACTIONS(4282), - [anon_sym_volatile] = ACTIONS(4282), - [anon_sym_restrict] = ACTIONS(4282), - [anon_sym___restrict__] = ACTIONS(4282), - [anon_sym__Atomic] = ACTIONS(4282), - [anon_sym__Noreturn] = ACTIONS(4282), - [anon_sym_noreturn] = ACTIONS(4282), - [anon_sym__Nonnull] = ACTIONS(4282), - [anon_sym_mutable] = ACTIONS(4282), - [anon_sym_constinit] = ACTIONS(4282), - [anon_sym_consteval] = ACTIONS(4282), - [anon_sym_alignas] = ACTIONS(4282), - [anon_sym__Alignas] = ACTIONS(4282), - [sym_primitive_type] = ACTIONS(4282), - [anon_sym_enum] = ACTIONS(4282), - [anon_sym_class] = ACTIONS(4282), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_union] = ACTIONS(4282), - [anon_sym_if] = ACTIONS(4282), - [anon_sym_switch] = ACTIONS(4282), - [anon_sym_case] = ACTIONS(4282), - [anon_sym_default] = ACTIONS(4282), - [anon_sym_while] = ACTIONS(4282), - [anon_sym_do] = ACTIONS(4282), - [anon_sym_for] = ACTIONS(4282), - [anon_sym_return] = ACTIONS(4282), - [anon_sym_break] = ACTIONS(4282), - [anon_sym_continue] = ACTIONS(4282), - [anon_sym_goto] = ACTIONS(4282), - [anon_sym___try] = ACTIONS(4282), - [anon_sym___leave] = ACTIONS(4282), - [anon_sym_not] = ACTIONS(4282), - [anon_sym_compl] = ACTIONS(4282), - [anon_sym_DASH_DASH] = ACTIONS(4284), - [anon_sym_PLUS_PLUS] = ACTIONS(4284), - [anon_sym_sizeof] = ACTIONS(4282), - [anon_sym___alignof__] = ACTIONS(4282), - [anon_sym___alignof] = ACTIONS(4282), - [anon_sym__alignof] = ACTIONS(4282), - [anon_sym_alignof] = ACTIONS(4282), - [anon_sym__Alignof] = ACTIONS(4282), - [anon_sym_offsetof] = ACTIONS(4282), - [anon_sym__Generic] = ACTIONS(4282), - [anon_sym_typename] = ACTIONS(4282), - [anon_sym_asm] = ACTIONS(4282), - [anon_sym___asm__] = ACTIONS(4282), - [anon_sym___asm] = ACTIONS(4282), - [sym_number_literal] = ACTIONS(4284), - [anon_sym_L_SQUOTE] = ACTIONS(4284), - [anon_sym_u_SQUOTE] = ACTIONS(4284), - [anon_sym_U_SQUOTE] = ACTIONS(4284), - [anon_sym_u8_SQUOTE] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4284), - [anon_sym_L_DQUOTE] = ACTIONS(4284), - [anon_sym_u_DQUOTE] = ACTIONS(4284), - [anon_sym_U_DQUOTE] = ACTIONS(4284), - [anon_sym_u8_DQUOTE] = ACTIONS(4284), - [anon_sym_DQUOTE] = ACTIONS(4284), - [sym_true] = ACTIONS(4282), - [sym_false] = ACTIONS(4282), - [anon_sym_NULL] = ACTIONS(4282), - [anon_sym_nullptr] = ACTIONS(4282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4282), - [anon_sym_decltype] = ACTIONS(4282), - [anon_sym_explicit] = ACTIONS(4282), - [anon_sym_export] = ACTIONS(4282), - [anon_sym_module] = ACTIONS(4282), - [anon_sym_import] = ACTIONS(4282), - [anon_sym_template] = ACTIONS(4282), - [anon_sym_operator] = ACTIONS(4282), - [anon_sym_try] = ACTIONS(4282), - [anon_sym_delete] = ACTIONS(4282), - [anon_sym_throw] = ACTIONS(4282), - [anon_sym_namespace] = ACTIONS(4282), - [anon_sym_static_assert] = ACTIONS(4282), - [anon_sym_concept] = ACTIONS(4282), - [anon_sym_co_return] = ACTIONS(4282), - [anon_sym_co_yield] = ACTIONS(4282), - [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(4282), - [anon_sym_new] = ACTIONS(4282), - [anon_sym_requires] = ACTIONS(4282), - [anon_sym_CARET_CARET] = ACTIONS(4284), - [anon_sym_LBRACK_COLON] = ACTIONS(4284), - [sym_this] = ACTIONS(4282), - }, - [STATE(748)] = { - [sym_identifier] = ACTIONS(3608), - [aux_sym_preproc_include_token1] = ACTIONS(3608), - [aux_sym_preproc_def_token1] = ACTIONS(3608), - [aux_sym_preproc_if_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3608), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3608), - [sym_preproc_directive] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP_AMP] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_using] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym___based] = ACTIONS(3608), - [anon_sym___cdecl] = ACTIONS(3608), - [anon_sym___clrcall] = ACTIONS(3608), - [anon_sym___stdcall] = ACTIONS(3608), - [anon_sym___fastcall] = ACTIONS(3608), - [anon_sym___thiscall] = ACTIONS(3608), - [anon_sym___vectorcall] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_RBRACE] = ACTIONS(3610), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_else] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_case] = ACTIONS(3608), - [anon_sym_default] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_goto] = ACTIONS(3608), - [anon_sym___try] = ACTIONS(3608), - [anon_sym___leave] = ACTIONS(3608), - [anon_sym_not] = ACTIONS(3608), - [anon_sym_compl] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_sizeof] = ACTIONS(3608), - [anon_sym___alignof__] = ACTIONS(3608), - [anon_sym___alignof] = ACTIONS(3608), - [anon_sym__alignof] = ACTIONS(3608), - [anon_sym_alignof] = ACTIONS(3608), - [anon_sym__Alignof] = ACTIONS(3608), - [anon_sym_offsetof] = ACTIONS(3608), - [anon_sym__Generic] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [anon_sym_asm] = ACTIONS(3608), - [anon_sym___asm__] = ACTIONS(3608), - [anon_sym___asm] = ACTIONS(3608), - [sym_number_literal] = ACTIONS(3610), - [anon_sym_L_SQUOTE] = ACTIONS(3610), - [anon_sym_u_SQUOTE] = ACTIONS(3610), - [anon_sym_U_SQUOTE] = ACTIONS(3610), - [anon_sym_u8_SQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_L_DQUOTE] = ACTIONS(3610), - [anon_sym_u_DQUOTE] = ACTIONS(3610), - [anon_sym_U_DQUOTE] = ACTIONS(3610), - [anon_sym_u8_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [anon_sym_NULL] = ACTIONS(3608), - [anon_sym_nullptr] = ACTIONS(3608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_explicit] = ACTIONS(3608), - [anon_sym_export] = ACTIONS(3608), - [anon_sym_import] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_operator] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_namespace] = ACTIONS(3608), - [anon_sym_static_assert] = ACTIONS(3608), - [anon_sym_concept] = ACTIONS(3608), - [anon_sym_co_return] = ACTIONS(3608), - [anon_sym_co_yield] = ACTIONS(3608), - [anon_sym_R_DQUOTE] = ACTIONS(3610), - [anon_sym_LR_DQUOTE] = ACTIONS(3610), - [anon_sym_uR_DQUOTE] = ACTIONS(3610), - [anon_sym_UR_DQUOTE] = ACTIONS(3610), - [anon_sym_u8R_DQUOTE] = ACTIONS(3610), - [anon_sym_co_await] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_requires] = ACTIONS(3608), - [anon_sym_CARET_CARET] = ACTIONS(3610), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - [sym_this] = ACTIONS(3608), - }, - [STATE(749)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), - }, - [STATE(750)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_include_token1] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym___cdecl] = ACTIONS(3618), - [anon_sym___clrcall] = ACTIONS(3618), - [anon_sym___stdcall] = ACTIONS(3618), - [anon_sym___fastcall] = ACTIONS(3618), - [anon_sym___thiscall] = ACTIONS(3618), - [anon_sym___vectorcall] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_case] = ACTIONS(3618), - [anon_sym_default] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_export] = ACTIONS(3618), - [anon_sym_import] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_namespace] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_concept] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), - }, - [STATE(751)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(752)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_include_token1] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym___cdecl] = ACTIONS(3622), - [anon_sym___clrcall] = ACTIONS(3622), - [anon_sym___stdcall] = ACTIONS(3622), - [anon_sym___fastcall] = ACTIONS(3622), - [anon_sym___thiscall] = ACTIONS(3622), - [anon_sym___vectorcall] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_RBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_case] = ACTIONS(3622), - [anon_sym_default] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_export] = ACTIONS(3622), - [anon_sym_import] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_namespace] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_concept] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(753)] = { - [ts_builtin_sym_end] = ACTIONS(4006), - [sym_identifier] = ACTIONS(4004), - [aux_sym_preproc_include_token1] = ACTIONS(4004), - [aux_sym_preproc_def_token1] = ACTIONS(4004), - [anon_sym_COMMA] = ACTIONS(4006), - [aux_sym_preproc_if_token1] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), - [sym_preproc_directive] = ACTIONS(4004), - [anon_sym_LPAREN2] = ACTIONS(4006), - [anon_sym_BANG] = ACTIONS(4006), - [anon_sym_TILDE] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym___extension__] = ACTIONS(4004), - [anon_sym_typedef] = ACTIONS(4004), - [anon_sym_virtual] = ACTIONS(4004), - [anon_sym_extern] = ACTIONS(4004), - [anon_sym___attribute__] = ACTIONS(4004), - [anon_sym___attribute] = ACTIONS(4004), - [anon_sym_using] = ACTIONS(4004), - [anon_sym_COLON_COLON] = ACTIONS(4006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), - [anon_sym___declspec] = ACTIONS(4004), - [anon_sym___based] = ACTIONS(4004), - [anon_sym___cdecl] = ACTIONS(4004), - [anon_sym___clrcall] = ACTIONS(4004), - [anon_sym___stdcall] = ACTIONS(4004), - [anon_sym___fastcall] = ACTIONS(4004), - [anon_sym___thiscall] = ACTIONS(4004), - [anon_sym___vectorcall] = ACTIONS(4004), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_signed] = ACTIONS(4004), - [anon_sym_unsigned] = ACTIONS(4004), - [anon_sym_long] = ACTIONS(4004), - [anon_sym_short] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(4004), - [anon_sym_static] = ACTIONS(4004), - [anon_sym_register] = ACTIONS(4004), - [anon_sym_inline] = ACTIONS(4004), - [anon_sym___inline] = ACTIONS(4004), - [anon_sym___inline__] = ACTIONS(4004), - [anon_sym___forceinline] = ACTIONS(4004), - [anon_sym_thread_local] = ACTIONS(4004), - [anon_sym___thread] = ACTIONS(4004), - [anon_sym_const] = ACTIONS(4004), - [anon_sym_constexpr] = ACTIONS(4004), - [anon_sym_volatile] = ACTIONS(4004), - [anon_sym_restrict] = ACTIONS(4004), - [anon_sym___restrict__] = ACTIONS(4004), - [anon_sym__Atomic] = ACTIONS(4004), - [anon_sym__Noreturn] = ACTIONS(4004), - [anon_sym_noreturn] = ACTIONS(4004), - [anon_sym__Nonnull] = ACTIONS(4004), - [anon_sym_mutable] = ACTIONS(4004), - [anon_sym_constinit] = ACTIONS(4004), - [anon_sym_consteval] = ACTIONS(4004), - [anon_sym_alignas] = ACTIONS(4004), - [anon_sym__Alignas] = ACTIONS(4004), - [sym_primitive_type] = ACTIONS(4004), - [anon_sym_enum] = ACTIONS(4004), - [anon_sym_class] = ACTIONS(4004), - [anon_sym_struct] = ACTIONS(4004), - [anon_sym_union] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(4004), - [anon_sym_switch] = ACTIONS(4004), - [anon_sym_case] = ACTIONS(4004), - [anon_sym_default] = ACTIONS(4004), - [anon_sym_while] = ACTIONS(4004), - [anon_sym_do] = ACTIONS(4004), - [anon_sym_for] = ACTIONS(4004), - [anon_sym_return] = ACTIONS(4004), - [anon_sym_break] = ACTIONS(4004), - [anon_sym_continue] = ACTIONS(4004), - [anon_sym_goto] = ACTIONS(4004), - [anon_sym_not] = ACTIONS(4004), - [anon_sym_compl] = ACTIONS(4004), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_sizeof] = ACTIONS(4004), - [anon_sym___alignof__] = ACTIONS(4004), - [anon_sym___alignof] = ACTIONS(4004), - [anon_sym__alignof] = ACTIONS(4004), - [anon_sym_alignof] = ACTIONS(4004), - [anon_sym__Alignof] = ACTIONS(4004), - [anon_sym_offsetof] = ACTIONS(4004), - [anon_sym__Generic] = ACTIONS(4004), - [anon_sym_typename] = ACTIONS(4004), - [anon_sym_asm] = ACTIONS(4004), - [anon_sym___asm__] = ACTIONS(4004), - [anon_sym___asm] = ACTIONS(4004), - [sym_number_literal] = ACTIONS(4006), - [anon_sym_L_SQUOTE] = ACTIONS(4006), - [anon_sym_u_SQUOTE] = ACTIONS(4006), - [anon_sym_U_SQUOTE] = ACTIONS(4006), - [anon_sym_u8_SQUOTE] = ACTIONS(4006), - [anon_sym_SQUOTE] = ACTIONS(4006), - [anon_sym_L_DQUOTE] = ACTIONS(4006), - [anon_sym_u_DQUOTE] = ACTIONS(4006), - [anon_sym_U_DQUOTE] = ACTIONS(4006), - [anon_sym_u8_DQUOTE] = ACTIONS(4006), - [anon_sym_DQUOTE] = ACTIONS(4006), - [sym_true] = ACTIONS(4004), - [sym_false] = ACTIONS(4004), - [anon_sym_NULL] = ACTIONS(4004), - [anon_sym_nullptr] = ACTIONS(4004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4004), - [anon_sym_decltype] = ACTIONS(4004), - [anon_sym_explicit] = ACTIONS(4004), - [anon_sym_export] = ACTIONS(4004), - [anon_sym_module] = ACTIONS(4004), - [anon_sym_import] = ACTIONS(4004), - [anon_sym_template] = ACTIONS(4004), - [anon_sym_operator] = ACTIONS(4004), - [anon_sym_try] = ACTIONS(4004), - [anon_sym_delete] = ACTIONS(4004), - [anon_sym_throw] = ACTIONS(4004), - [anon_sym_namespace] = ACTIONS(4004), - [anon_sym_static_assert] = ACTIONS(4004), - [anon_sym_concept] = ACTIONS(4004), - [anon_sym_co_return] = ACTIONS(4004), - [anon_sym_co_yield] = ACTIONS(4004), - [anon_sym_R_DQUOTE] = ACTIONS(4006), - [anon_sym_LR_DQUOTE] = ACTIONS(4006), - [anon_sym_uR_DQUOTE] = ACTIONS(4006), - [anon_sym_UR_DQUOTE] = ACTIONS(4006), - [anon_sym_u8R_DQUOTE] = ACTIONS(4006), - [anon_sym_co_await] = ACTIONS(4004), - [anon_sym_new] = ACTIONS(4004), - [anon_sym_requires] = ACTIONS(4004), - [anon_sym_CARET_CARET] = ACTIONS(4006), - [anon_sym_LBRACK_COLON] = ACTIONS(4006), - [sym_this] = ACTIONS(4004), - }, - [STATE(754)] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_include_token1] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym___cdecl] = ACTIONS(3626), - [anon_sym___clrcall] = ACTIONS(3626), - [anon_sym___stdcall] = ACTIONS(3626), - [anon_sym___fastcall] = ACTIONS(3626), - [anon_sym___thiscall] = ACTIONS(3626), - [anon_sym___vectorcall] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_case] = ACTIONS(3626), - [anon_sym_default] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [anon_sym___asm] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_export] = ACTIONS(3626), - [anon_sym_import] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_namespace] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_concept] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [anon_sym_CARET_CARET] = ACTIONS(3628), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), - [sym_this] = ACTIONS(3626), - }, - [STATE(755)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_include_token1] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym___cdecl] = ACTIONS(3630), - [anon_sym___clrcall] = ACTIONS(3630), - [anon_sym___stdcall] = ACTIONS(3630), - [anon_sym___fastcall] = ACTIONS(3630), - [anon_sym___thiscall] = ACTIONS(3630), - [anon_sym___vectorcall] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_case] = ACTIONS(3630), - [anon_sym_default] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_export] = ACTIONS(3630), - [anon_sym_import] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_namespace] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_concept] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), - }, - [STATE(756)] = { - [sym_identifier] = ACTIONS(3638), - [aux_sym_preproc_include_token1] = ACTIONS(3638), - [aux_sym_preproc_def_token1] = ACTIONS(3638), - [aux_sym_preproc_if_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3638), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3638), - [sym_preproc_directive] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP_AMP] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3638), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym___attribute] = ACTIONS(3638), - [anon_sym_using] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym___based] = ACTIONS(3638), - [anon_sym___cdecl] = ACTIONS(3638), - [anon_sym___clrcall] = ACTIONS(3638), - [anon_sym___stdcall] = ACTIONS(3638), - [anon_sym___fastcall] = ACTIONS(3638), - [anon_sym___thiscall] = ACTIONS(3638), - [anon_sym___vectorcall] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_RBRACE] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym__Nonnull] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym__Alignas] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_else] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_case] = ACTIONS(3638), - [anon_sym_default] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_goto] = ACTIONS(3638), - [anon_sym___try] = ACTIONS(3638), - [anon_sym___leave] = ACTIONS(3638), - [anon_sym_not] = ACTIONS(3638), - [anon_sym_compl] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3638), - [anon_sym___alignof__] = ACTIONS(3638), - [anon_sym___alignof] = ACTIONS(3638), - [anon_sym__alignof] = ACTIONS(3638), - [anon_sym_alignof] = ACTIONS(3638), - [anon_sym__Alignof] = ACTIONS(3638), - [anon_sym_offsetof] = ACTIONS(3638), - [anon_sym__Generic] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_asm] = ACTIONS(3638), - [anon_sym___asm__] = ACTIONS(3638), - [anon_sym___asm] = ACTIONS(3638), - [sym_number_literal] = ACTIONS(3640), - [anon_sym_L_SQUOTE] = ACTIONS(3640), - [anon_sym_u_SQUOTE] = ACTIONS(3640), - [anon_sym_U_SQUOTE] = ACTIONS(3640), - [anon_sym_u8_SQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_L_DQUOTE] = ACTIONS(3640), - [anon_sym_u_DQUOTE] = ACTIONS(3640), - [anon_sym_U_DQUOTE] = ACTIONS(3640), - [anon_sym_u8_DQUOTE] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [anon_sym_NULL] = ACTIONS(3638), - [anon_sym_nullptr] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_explicit] = ACTIONS(3638), - [anon_sym_export] = ACTIONS(3638), - [anon_sym_import] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_operator] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_namespace] = ACTIONS(3638), - [anon_sym_static_assert] = ACTIONS(3638), - [anon_sym_concept] = ACTIONS(3638), - [anon_sym_co_return] = ACTIONS(3638), - [anon_sym_co_yield] = ACTIONS(3638), - [anon_sym_R_DQUOTE] = ACTIONS(3640), - [anon_sym_LR_DQUOTE] = ACTIONS(3640), - [anon_sym_uR_DQUOTE] = ACTIONS(3640), - [anon_sym_UR_DQUOTE] = ACTIONS(3640), - [anon_sym_u8R_DQUOTE] = ACTIONS(3640), - [anon_sym_co_await] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_requires] = ACTIONS(3638), - [anon_sym_CARET_CARET] = ACTIONS(3640), - [anon_sym_LBRACK_COLON] = ACTIONS(3640), - [sym_this] = ACTIONS(3638), - }, - [STATE(757)] = { - [sym_identifier] = ACTIONS(3642), - [aux_sym_preproc_include_token1] = ACTIONS(3642), - [aux_sym_preproc_def_token1] = ACTIONS(3642), - [aux_sym_preproc_if_token1] = ACTIONS(3642), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3642), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3642), - [sym_preproc_directive] = ACTIONS(3642), - [anon_sym_LPAREN2] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_AMP_AMP] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3642), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym___extension__] = ACTIONS(3642), - [anon_sym_typedef] = ACTIONS(3642), - [anon_sym_virtual] = ACTIONS(3642), - [anon_sym_extern] = ACTIONS(3642), - [anon_sym___attribute__] = ACTIONS(3642), - [anon_sym___attribute] = ACTIONS(3642), - [anon_sym_using] = ACTIONS(3642), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3644), - [anon_sym___declspec] = ACTIONS(3642), - [anon_sym___based] = ACTIONS(3642), - [anon_sym___cdecl] = ACTIONS(3642), - [anon_sym___clrcall] = ACTIONS(3642), - [anon_sym___stdcall] = ACTIONS(3642), - [anon_sym___fastcall] = ACTIONS(3642), - [anon_sym___thiscall] = ACTIONS(3642), - [anon_sym___vectorcall] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3644), - [anon_sym_RBRACE] = ACTIONS(3644), - [anon_sym_signed] = ACTIONS(3642), - [anon_sym_unsigned] = ACTIONS(3642), - [anon_sym_long] = ACTIONS(3642), - [anon_sym_short] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_static] = ACTIONS(3642), - [anon_sym_register] = ACTIONS(3642), - [anon_sym_inline] = ACTIONS(3642), - [anon_sym___inline] = ACTIONS(3642), - [anon_sym___inline__] = ACTIONS(3642), - [anon_sym___forceinline] = ACTIONS(3642), - [anon_sym_thread_local] = ACTIONS(3642), - [anon_sym___thread] = ACTIONS(3642), - [anon_sym_const] = ACTIONS(3642), - [anon_sym_constexpr] = ACTIONS(3642), - [anon_sym_volatile] = ACTIONS(3642), - [anon_sym_restrict] = ACTIONS(3642), - [anon_sym___restrict__] = ACTIONS(3642), - [anon_sym__Atomic] = ACTIONS(3642), - [anon_sym__Noreturn] = ACTIONS(3642), - [anon_sym_noreturn] = ACTIONS(3642), - [anon_sym__Nonnull] = ACTIONS(3642), - [anon_sym_mutable] = ACTIONS(3642), - [anon_sym_constinit] = ACTIONS(3642), - [anon_sym_consteval] = ACTIONS(3642), - [anon_sym_alignas] = ACTIONS(3642), - [anon_sym__Alignas] = ACTIONS(3642), - [sym_primitive_type] = ACTIONS(3642), - [anon_sym_enum] = ACTIONS(3642), - [anon_sym_class] = ACTIONS(3642), - [anon_sym_struct] = ACTIONS(3642), - [anon_sym_union] = ACTIONS(3642), - [anon_sym_if] = ACTIONS(3642), - [anon_sym_else] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_case] = ACTIONS(3642), - [anon_sym_default] = ACTIONS(3642), - [anon_sym_while] = ACTIONS(3642), - [anon_sym_do] = ACTIONS(3642), - [anon_sym_for] = ACTIONS(3642), - [anon_sym_return] = ACTIONS(3642), - [anon_sym_break] = ACTIONS(3642), - [anon_sym_continue] = ACTIONS(3642), - [anon_sym_goto] = ACTIONS(3642), - [anon_sym___try] = ACTIONS(3642), - [anon_sym___leave] = ACTIONS(3642), - [anon_sym_not] = ACTIONS(3642), - [anon_sym_compl] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3644), - [anon_sym_sizeof] = ACTIONS(3642), - [anon_sym___alignof__] = ACTIONS(3642), - [anon_sym___alignof] = ACTIONS(3642), - [anon_sym__alignof] = ACTIONS(3642), - [anon_sym_alignof] = ACTIONS(3642), - [anon_sym__Alignof] = ACTIONS(3642), - [anon_sym_offsetof] = ACTIONS(3642), - [anon_sym__Generic] = ACTIONS(3642), - [anon_sym_typename] = ACTIONS(3642), - [anon_sym_asm] = ACTIONS(3642), - [anon_sym___asm__] = ACTIONS(3642), - [anon_sym___asm] = ACTIONS(3642), - [sym_number_literal] = ACTIONS(3644), - [anon_sym_L_SQUOTE] = ACTIONS(3644), - [anon_sym_u_SQUOTE] = ACTIONS(3644), - [anon_sym_U_SQUOTE] = ACTIONS(3644), - [anon_sym_u8_SQUOTE] = ACTIONS(3644), - [anon_sym_SQUOTE] = ACTIONS(3644), - [anon_sym_L_DQUOTE] = ACTIONS(3644), - [anon_sym_u_DQUOTE] = ACTIONS(3644), - [anon_sym_U_DQUOTE] = ACTIONS(3644), - [anon_sym_u8_DQUOTE] = ACTIONS(3644), - [anon_sym_DQUOTE] = ACTIONS(3644), - [sym_true] = ACTIONS(3642), - [sym_false] = ACTIONS(3642), - [anon_sym_NULL] = ACTIONS(3642), - [anon_sym_nullptr] = ACTIONS(3642), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3642), - [anon_sym_decltype] = ACTIONS(3642), - [anon_sym_explicit] = ACTIONS(3642), - [anon_sym_export] = ACTIONS(3642), - [anon_sym_import] = ACTIONS(3642), - [anon_sym_template] = ACTIONS(3642), - [anon_sym_operator] = ACTIONS(3642), - [anon_sym_try] = ACTIONS(3642), - [anon_sym_delete] = ACTIONS(3642), - [anon_sym_throw] = ACTIONS(3642), - [anon_sym_namespace] = ACTIONS(3642), - [anon_sym_static_assert] = ACTIONS(3642), - [anon_sym_concept] = ACTIONS(3642), - [anon_sym_co_return] = ACTIONS(3642), - [anon_sym_co_yield] = ACTIONS(3642), - [anon_sym_R_DQUOTE] = ACTIONS(3644), - [anon_sym_LR_DQUOTE] = ACTIONS(3644), - [anon_sym_uR_DQUOTE] = ACTIONS(3644), - [anon_sym_UR_DQUOTE] = ACTIONS(3644), - [anon_sym_u8R_DQUOTE] = ACTIONS(3644), - [anon_sym_co_await] = ACTIONS(3642), - [anon_sym_new] = ACTIONS(3642), - [anon_sym_requires] = ACTIONS(3642), - [anon_sym_CARET_CARET] = ACTIONS(3644), - [anon_sym_LBRACK_COLON] = ACTIONS(3644), - [sym_this] = ACTIONS(3642), - }, - [STATE(758)] = { - [sym_identifier] = ACTIONS(3646), - [aux_sym_preproc_include_token1] = ACTIONS(3646), - [aux_sym_preproc_def_token1] = ACTIONS(3646), - [aux_sym_preproc_if_token1] = ACTIONS(3646), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3646), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3646), - [sym_preproc_directive] = ACTIONS(3646), - [anon_sym_LPAREN2] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_STAR] = ACTIONS(3648), - [anon_sym_AMP_AMP] = ACTIONS(3648), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym___extension__] = ACTIONS(3646), - [anon_sym_typedef] = ACTIONS(3646), - [anon_sym_virtual] = ACTIONS(3646), - [anon_sym_extern] = ACTIONS(3646), - [anon_sym___attribute__] = ACTIONS(3646), - [anon_sym___attribute] = ACTIONS(3646), - [anon_sym_using] = ACTIONS(3646), - [anon_sym_COLON_COLON] = ACTIONS(3648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3648), - [anon_sym___declspec] = ACTIONS(3646), - [anon_sym___based] = ACTIONS(3646), - [anon_sym___cdecl] = ACTIONS(3646), - [anon_sym___clrcall] = ACTIONS(3646), - [anon_sym___stdcall] = ACTIONS(3646), - [anon_sym___fastcall] = ACTIONS(3646), - [anon_sym___thiscall] = ACTIONS(3646), - [anon_sym___vectorcall] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_RBRACE] = ACTIONS(3648), - [anon_sym_signed] = ACTIONS(3646), - [anon_sym_unsigned] = ACTIONS(3646), - [anon_sym_long] = ACTIONS(3646), - [anon_sym_short] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_register] = ACTIONS(3646), - [anon_sym_inline] = ACTIONS(3646), - [anon_sym___inline] = ACTIONS(3646), - [anon_sym___inline__] = ACTIONS(3646), - [anon_sym___forceinline] = ACTIONS(3646), - [anon_sym_thread_local] = ACTIONS(3646), - [anon_sym___thread] = ACTIONS(3646), - [anon_sym_const] = ACTIONS(3646), - [anon_sym_constexpr] = ACTIONS(3646), - [anon_sym_volatile] = ACTIONS(3646), - [anon_sym_restrict] = ACTIONS(3646), - [anon_sym___restrict__] = ACTIONS(3646), - [anon_sym__Atomic] = ACTIONS(3646), - [anon_sym__Noreturn] = ACTIONS(3646), - [anon_sym_noreturn] = ACTIONS(3646), - [anon_sym__Nonnull] = ACTIONS(3646), - [anon_sym_mutable] = ACTIONS(3646), - [anon_sym_constinit] = ACTIONS(3646), - [anon_sym_consteval] = ACTIONS(3646), - [anon_sym_alignas] = ACTIONS(3646), - [anon_sym__Alignas] = ACTIONS(3646), - [sym_primitive_type] = ACTIONS(3646), - [anon_sym_enum] = ACTIONS(3646), - [anon_sym_class] = ACTIONS(3646), - [anon_sym_struct] = ACTIONS(3646), - [anon_sym_union] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_else] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_case] = ACTIONS(3646), - [anon_sym_default] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_goto] = ACTIONS(3646), - [anon_sym___try] = ACTIONS(3646), - [anon_sym___leave] = ACTIONS(3646), - [anon_sym_not] = ACTIONS(3646), - [anon_sym_compl] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_sizeof] = ACTIONS(3646), - [anon_sym___alignof__] = ACTIONS(3646), - [anon_sym___alignof] = ACTIONS(3646), - [anon_sym__alignof] = ACTIONS(3646), - [anon_sym_alignof] = ACTIONS(3646), - [anon_sym__Alignof] = ACTIONS(3646), - [anon_sym_offsetof] = ACTIONS(3646), - [anon_sym__Generic] = ACTIONS(3646), - [anon_sym_typename] = ACTIONS(3646), - [anon_sym_asm] = ACTIONS(3646), - [anon_sym___asm__] = ACTIONS(3646), - [anon_sym___asm] = ACTIONS(3646), - [sym_number_literal] = ACTIONS(3648), - [anon_sym_L_SQUOTE] = ACTIONS(3648), - [anon_sym_u_SQUOTE] = ACTIONS(3648), - [anon_sym_U_SQUOTE] = ACTIONS(3648), - [anon_sym_u8_SQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [anon_sym_L_DQUOTE] = ACTIONS(3648), - [anon_sym_u_DQUOTE] = ACTIONS(3648), - [anon_sym_U_DQUOTE] = ACTIONS(3648), - [anon_sym_u8_DQUOTE] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [sym_true] = ACTIONS(3646), - [sym_false] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_nullptr] = ACTIONS(3646), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3646), - [anon_sym_decltype] = ACTIONS(3646), - [anon_sym_explicit] = ACTIONS(3646), - [anon_sym_export] = ACTIONS(3646), - [anon_sym_import] = ACTIONS(3646), - [anon_sym_template] = ACTIONS(3646), - [anon_sym_operator] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_delete] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_namespace] = ACTIONS(3646), - [anon_sym_static_assert] = ACTIONS(3646), - [anon_sym_concept] = ACTIONS(3646), - [anon_sym_co_return] = ACTIONS(3646), - [anon_sym_co_yield] = ACTIONS(3646), - [anon_sym_R_DQUOTE] = ACTIONS(3648), - [anon_sym_LR_DQUOTE] = ACTIONS(3648), - [anon_sym_uR_DQUOTE] = ACTIONS(3648), - [anon_sym_UR_DQUOTE] = ACTIONS(3648), - [anon_sym_u8R_DQUOTE] = ACTIONS(3648), - [anon_sym_co_await] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_requires] = ACTIONS(3646), - [anon_sym_CARET_CARET] = ACTIONS(3648), - [anon_sym_LBRACK_COLON] = ACTIONS(3648), - [sym_this] = ACTIONS(3646), - }, - [STATE(759)] = { - [sym_identifier] = ACTIONS(3650), - [aux_sym_preproc_include_token1] = ACTIONS(3650), - [aux_sym_preproc_def_token1] = ACTIONS(3650), - [aux_sym_preproc_if_token1] = ACTIONS(3650), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3650), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3650), - [sym_preproc_directive] = ACTIONS(3650), - [anon_sym_LPAREN2] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_AMP] = ACTIONS(3650), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym___extension__] = ACTIONS(3650), - [anon_sym_typedef] = ACTIONS(3650), - [anon_sym_virtual] = ACTIONS(3650), - [anon_sym_extern] = ACTIONS(3650), - [anon_sym___attribute__] = ACTIONS(3650), - [anon_sym___attribute] = ACTIONS(3650), - [anon_sym_using] = ACTIONS(3650), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3652), - [anon_sym___declspec] = ACTIONS(3650), - [anon_sym___based] = ACTIONS(3650), - [anon_sym___cdecl] = ACTIONS(3650), - [anon_sym___clrcall] = ACTIONS(3650), - [anon_sym___stdcall] = ACTIONS(3650), - [anon_sym___fastcall] = ACTIONS(3650), - [anon_sym___thiscall] = ACTIONS(3650), - [anon_sym___vectorcall] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_signed] = ACTIONS(3650), - [anon_sym_unsigned] = ACTIONS(3650), - [anon_sym_long] = ACTIONS(3650), - [anon_sym_short] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_register] = ACTIONS(3650), - [anon_sym_inline] = ACTIONS(3650), - [anon_sym___inline] = ACTIONS(3650), - [anon_sym___inline__] = ACTIONS(3650), - [anon_sym___forceinline] = ACTIONS(3650), - [anon_sym_thread_local] = ACTIONS(3650), - [anon_sym___thread] = ACTIONS(3650), - [anon_sym_const] = ACTIONS(3650), - [anon_sym_constexpr] = ACTIONS(3650), - [anon_sym_volatile] = ACTIONS(3650), - [anon_sym_restrict] = ACTIONS(3650), - [anon_sym___restrict__] = ACTIONS(3650), - [anon_sym__Atomic] = ACTIONS(3650), - [anon_sym__Noreturn] = ACTIONS(3650), - [anon_sym_noreturn] = ACTIONS(3650), - [anon_sym__Nonnull] = ACTIONS(3650), - [anon_sym_mutable] = ACTIONS(3650), - [anon_sym_constinit] = ACTIONS(3650), - [anon_sym_consteval] = ACTIONS(3650), - [anon_sym_alignas] = ACTIONS(3650), - [anon_sym__Alignas] = ACTIONS(3650), - [sym_primitive_type] = ACTIONS(3650), - [anon_sym_enum] = ACTIONS(3650), - [anon_sym_class] = ACTIONS(3650), - [anon_sym_struct] = ACTIONS(3650), - [anon_sym_union] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_case] = ACTIONS(3650), - [anon_sym_default] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_goto] = ACTIONS(3650), - [anon_sym___try] = ACTIONS(3650), - [anon_sym___leave] = ACTIONS(3650), - [anon_sym_not] = ACTIONS(3650), - [anon_sym_compl] = ACTIONS(3650), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_sizeof] = ACTIONS(3650), - [anon_sym___alignof__] = ACTIONS(3650), - [anon_sym___alignof] = ACTIONS(3650), - [anon_sym__alignof] = ACTIONS(3650), - [anon_sym_alignof] = ACTIONS(3650), - [anon_sym__Alignof] = ACTIONS(3650), - [anon_sym_offsetof] = ACTIONS(3650), - [anon_sym__Generic] = ACTIONS(3650), - [anon_sym_typename] = ACTIONS(3650), - [anon_sym_asm] = ACTIONS(3650), - [anon_sym___asm__] = ACTIONS(3650), - [anon_sym___asm] = ACTIONS(3650), - [sym_number_literal] = ACTIONS(3652), - [anon_sym_L_SQUOTE] = ACTIONS(3652), - [anon_sym_u_SQUOTE] = ACTIONS(3652), - [anon_sym_U_SQUOTE] = ACTIONS(3652), - [anon_sym_u8_SQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [anon_sym_L_DQUOTE] = ACTIONS(3652), - [anon_sym_u_DQUOTE] = ACTIONS(3652), - [anon_sym_U_DQUOTE] = ACTIONS(3652), - [anon_sym_u8_DQUOTE] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [sym_true] = ACTIONS(3650), - [sym_false] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_nullptr] = ACTIONS(3650), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3650), - [anon_sym_decltype] = ACTIONS(3650), - [anon_sym_explicit] = ACTIONS(3650), - [anon_sym_export] = ACTIONS(3650), - [anon_sym_import] = ACTIONS(3650), - [anon_sym_template] = ACTIONS(3650), - [anon_sym_operator] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_delete] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_namespace] = ACTIONS(3650), - [anon_sym_static_assert] = ACTIONS(3650), - [anon_sym_concept] = ACTIONS(3650), - [anon_sym_co_return] = ACTIONS(3650), - [anon_sym_co_yield] = ACTIONS(3650), - [anon_sym_R_DQUOTE] = ACTIONS(3652), - [anon_sym_LR_DQUOTE] = ACTIONS(3652), - [anon_sym_uR_DQUOTE] = ACTIONS(3652), - [anon_sym_UR_DQUOTE] = ACTIONS(3652), - [anon_sym_u8R_DQUOTE] = ACTIONS(3652), - [anon_sym_co_await] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_requires] = ACTIONS(3650), - [anon_sym_CARET_CARET] = ACTIONS(3652), - [anon_sym_LBRACK_COLON] = ACTIONS(3652), - [sym_this] = ACTIONS(3650), - }, - [STATE(760)] = { - [sym_identifier] = ACTIONS(3654), - [aux_sym_preproc_include_token1] = ACTIONS(3654), - [aux_sym_preproc_def_token1] = ACTIONS(3654), - [aux_sym_preproc_if_token1] = ACTIONS(3654), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3654), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3654), - [sym_preproc_directive] = ACTIONS(3654), - [anon_sym_LPAREN2] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3656), - [anon_sym_TILDE] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_AMP_AMP] = ACTIONS(3656), - [anon_sym_AMP] = ACTIONS(3654), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym___extension__] = ACTIONS(3654), - [anon_sym_typedef] = ACTIONS(3654), - [anon_sym_virtual] = ACTIONS(3654), - [anon_sym_extern] = ACTIONS(3654), - [anon_sym___attribute__] = ACTIONS(3654), - [anon_sym___attribute] = ACTIONS(3654), - [anon_sym_using] = ACTIONS(3654), - [anon_sym_COLON_COLON] = ACTIONS(3656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3656), - [anon_sym___declspec] = ACTIONS(3654), - [anon_sym___based] = ACTIONS(3654), - [anon_sym___cdecl] = ACTIONS(3654), - [anon_sym___clrcall] = ACTIONS(3654), - [anon_sym___stdcall] = ACTIONS(3654), - [anon_sym___fastcall] = ACTIONS(3654), - [anon_sym___thiscall] = ACTIONS(3654), - [anon_sym___vectorcall] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_signed] = ACTIONS(3654), - [anon_sym_unsigned] = ACTIONS(3654), - [anon_sym_long] = ACTIONS(3654), - [anon_sym_short] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_register] = ACTIONS(3654), - [anon_sym_inline] = ACTIONS(3654), - [anon_sym___inline] = ACTIONS(3654), - [anon_sym___inline__] = ACTIONS(3654), - [anon_sym___forceinline] = ACTIONS(3654), - [anon_sym_thread_local] = ACTIONS(3654), - [anon_sym___thread] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_constexpr] = ACTIONS(3654), - [anon_sym_volatile] = ACTIONS(3654), - [anon_sym_restrict] = ACTIONS(3654), - [anon_sym___restrict__] = ACTIONS(3654), - [anon_sym__Atomic] = ACTIONS(3654), - [anon_sym__Noreturn] = ACTIONS(3654), - [anon_sym_noreturn] = ACTIONS(3654), - [anon_sym__Nonnull] = ACTIONS(3654), - [anon_sym_mutable] = ACTIONS(3654), - [anon_sym_constinit] = ACTIONS(3654), - [anon_sym_consteval] = ACTIONS(3654), - [anon_sym_alignas] = ACTIONS(3654), - [anon_sym__Alignas] = ACTIONS(3654), - [sym_primitive_type] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_struct] = ACTIONS(3654), - [anon_sym_union] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_case] = ACTIONS(3654), - [anon_sym_default] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_goto] = ACTIONS(3654), - [anon_sym___try] = ACTIONS(3654), - [anon_sym___leave] = ACTIONS(3654), - [anon_sym_not] = ACTIONS(3654), - [anon_sym_compl] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_sizeof] = ACTIONS(3654), - [anon_sym___alignof__] = ACTIONS(3654), - [anon_sym___alignof] = ACTIONS(3654), - [anon_sym__alignof] = ACTIONS(3654), - [anon_sym_alignof] = ACTIONS(3654), - [anon_sym__Alignof] = ACTIONS(3654), - [anon_sym_offsetof] = ACTIONS(3654), - [anon_sym__Generic] = ACTIONS(3654), - [anon_sym_typename] = ACTIONS(3654), - [anon_sym_asm] = ACTIONS(3654), - [anon_sym___asm__] = ACTIONS(3654), - [anon_sym___asm] = ACTIONS(3654), - [sym_number_literal] = ACTIONS(3656), - [anon_sym_L_SQUOTE] = ACTIONS(3656), - [anon_sym_u_SQUOTE] = ACTIONS(3656), - [anon_sym_U_SQUOTE] = ACTIONS(3656), - [anon_sym_u8_SQUOTE] = ACTIONS(3656), - [anon_sym_SQUOTE] = ACTIONS(3656), - [anon_sym_L_DQUOTE] = ACTIONS(3656), - [anon_sym_u_DQUOTE] = ACTIONS(3656), - [anon_sym_U_DQUOTE] = ACTIONS(3656), - [anon_sym_u8_DQUOTE] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(3656), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [anon_sym_NULL] = ACTIONS(3654), - [anon_sym_nullptr] = ACTIONS(3654), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3654), - [anon_sym_decltype] = ACTIONS(3654), - [anon_sym_explicit] = ACTIONS(3654), - [anon_sym_export] = ACTIONS(3654), - [anon_sym_import] = ACTIONS(3654), - [anon_sym_template] = ACTIONS(3654), - [anon_sym_operator] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_namespace] = ACTIONS(3654), - [anon_sym_static_assert] = ACTIONS(3654), - [anon_sym_concept] = ACTIONS(3654), - [anon_sym_co_return] = ACTIONS(3654), - [anon_sym_co_yield] = ACTIONS(3654), - [anon_sym_R_DQUOTE] = ACTIONS(3656), - [anon_sym_LR_DQUOTE] = ACTIONS(3656), - [anon_sym_uR_DQUOTE] = ACTIONS(3656), - [anon_sym_UR_DQUOTE] = ACTIONS(3656), - [anon_sym_u8R_DQUOTE] = ACTIONS(3656), - [anon_sym_co_await] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_requires] = ACTIONS(3654), - [anon_sym_CARET_CARET] = ACTIONS(3656), - [anon_sym_LBRACK_COLON] = ACTIONS(3656), - [sym_this] = ACTIONS(3654), - }, - [STATE(761)] = { - [sym_identifier] = ACTIONS(3658), - [aux_sym_preproc_include_token1] = ACTIONS(3658), - [aux_sym_preproc_def_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token1] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), - [sym_preproc_directive] = ACTIONS(3658), - [anon_sym_LPAREN2] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym___extension__] = ACTIONS(3658), - [anon_sym_typedef] = ACTIONS(3658), - [anon_sym_virtual] = ACTIONS(3658), - [anon_sym_extern] = ACTIONS(3658), - [anon_sym___attribute__] = ACTIONS(3658), - [anon_sym___attribute] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), - [anon_sym___declspec] = ACTIONS(3658), - [anon_sym___based] = ACTIONS(3658), - [anon_sym___cdecl] = ACTIONS(3658), - [anon_sym___clrcall] = ACTIONS(3658), - [anon_sym___stdcall] = ACTIONS(3658), - [anon_sym___fastcall] = ACTIONS(3658), - [anon_sym___thiscall] = ACTIONS(3658), - [anon_sym___vectorcall] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_signed] = ACTIONS(3658), - [anon_sym_unsigned] = ACTIONS(3658), - [anon_sym_long] = ACTIONS(3658), - [anon_sym_short] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_register] = ACTIONS(3658), - [anon_sym_inline] = ACTIONS(3658), - [anon_sym___inline] = ACTIONS(3658), - [anon_sym___inline__] = ACTIONS(3658), - [anon_sym___forceinline] = ACTIONS(3658), - [anon_sym_thread_local] = ACTIONS(3658), - [anon_sym___thread] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_constexpr] = ACTIONS(3658), - [anon_sym_volatile] = ACTIONS(3658), - [anon_sym_restrict] = ACTIONS(3658), - [anon_sym___restrict__] = ACTIONS(3658), - [anon_sym__Atomic] = ACTIONS(3658), - [anon_sym__Noreturn] = ACTIONS(3658), - [anon_sym_noreturn] = ACTIONS(3658), - [anon_sym__Nonnull] = ACTIONS(3658), - [anon_sym_mutable] = ACTIONS(3658), - [anon_sym_constinit] = ACTIONS(3658), - [anon_sym_consteval] = ACTIONS(3658), - [anon_sym_alignas] = ACTIONS(3658), - [anon_sym__Alignas] = ACTIONS(3658), - [sym_primitive_type] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3658), - [anon_sym_union] = ACTIONS(3658), - [anon_sym_if] = ACTIONS(3658), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_case] = ACTIONS(3658), - [anon_sym_default] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_for] = ACTIONS(3658), - [anon_sym_return] = ACTIONS(3658), - [anon_sym_break] = ACTIONS(3658), - [anon_sym_continue] = ACTIONS(3658), - [anon_sym_goto] = ACTIONS(3658), - [anon_sym___try] = ACTIONS(3658), - [anon_sym___leave] = ACTIONS(3658), - [anon_sym_not] = ACTIONS(3658), - [anon_sym_compl] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_sizeof] = ACTIONS(3658), - [anon_sym___alignof__] = ACTIONS(3658), - [anon_sym___alignof] = ACTIONS(3658), - [anon_sym__alignof] = ACTIONS(3658), - [anon_sym_alignof] = ACTIONS(3658), - [anon_sym__Alignof] = ACTIONS(3658), - [anon_sym_offsetof] = ACTIONS(3658), - [anon_sym__Generic] = ACTIONS(3658), - [anon_sym_typename] = ACTIONS(3658), - [anon_sym_asm] = ACTIONS(3658), - [anon_sym___asm__] = ACTIONS(3658), - [anon_sym___asm] = ACTIONS(3658), - [sym_number_literal] = ACTIONS(3660), - [anon_sym_L_SQUOTE] = ACTIONS(3660), - [anon_sym_u_SQUOTE] = ACTIONS(3660), - [anon_sym_U_SQUOTE] = ACTIONS(3660), - [anon_sym_u8_SQUOTE] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_L_DQUOTE] = ACTIONS(3660), - [anon_sym_u_DQUOTE] = ACTIONS(3660), - [anon_sym_U_DQUOTE] = ACTIONS(3660), - [anon_sym_u8_DQUOTE] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [sym_true] = ACTIONS(3658), - [sym_false] = ACTIONS(3658), - [anon_sym_NULL] = ACTIONS(3658), - [anon_sym_nullptr] = ACTIONS(3658), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3658), - [anon_sym_decltype] = ACTIONS(3658), - [anon_sym_explicit] = ACTIONS(3658), - [anon_sym_export] = ACTIONS(3658), - [anon_sym_import] = ACTIONS(3658), - [anon_sym_template] = ACTIONS(3658), - [anon_sym_operator] = ACTIONS(3658), - [anon_sym_try] = ACTIONS(3658), - [anon_sym_delete] = ACTIONS(3658), - [anon_sym_throw] = ACTIONS(3658), - [anon_sym_namespace] = ACTIONS(3658), - [anon_sym_static_assert] = ACTIONS(3658), - [anon_sym_concept] = ACTIONS(3658), - [anon_sym_co_return] = ACTIONS(3658), - [anon_sym_co_yield] = ACTIONS(3658), - [anon_sym_R_DQUOTE] = ACTIONS(3660), - [anon_sym_LR_DQUOTE] = ACTIONS(3660), - [anon_sym_uR_DQUOTE] = ACTIONS(3660), - [anon_sym_UR_DQUOTE] = ACTIONS(3660), - [anon_sym_u8R_DQUOTE] = ACTIONS(3660), - [anon_sym_co_await] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_requires] = ACTIONS(3658), - [anon_sym_CARET_CARET] = ACTIONS(3660), - [anon_sym_LBRACK_COLON] = ACTIONS(3660), - [sym_this] = ACTIONS(3658), + [STATE(761)] = { + [sym_identifier] = ACTIONS(3494), + [aux_sym_preproc_include_token1] = ACTIONS(3494), + [aux_sym_preproc_def_token1] = ACTIONS(3494), + [aux_sym_preproc_if_token1] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3494), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3494), + [sym_preproc_directive] = ACTIONS(3494), + [anon_sym_LPAREN2] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_AMP_AMP] = ACTIONS(3496), + [anon_sym_AMP] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym___extension__] = ACTIONS(3494), + [anon_sym_typedef] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym___attribute__] = ACTIONS(3494), + [anon_sym___attribute] = ACTIONS(3494), + [anon_sym_using] = ACTIONS(3494), + [anon_sym_COLON_COLON] = ACTIONS(3496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3496), + [anon_sym___declspec] = ACTIONS(3494), + [anon_sym___based] = ACTIONS(3494), + [anon_sym___cdecl] = ACTIONS(3494), + [anon_sym___clrcall] = ACTIONS(3494), + [anon_sym___stdcall] = ACTIONS(3494), + [anon_sym___fastcall] = ACTIONS(3494), + [anon_sym___thiscall] = ACTIONS(3494), + [anon_sym___vectorcall] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_signed] = ACTIONS(3494), + [anon_sym_unsigned] = ACTIONS(3494), + [anon_sym_long] = ACTIONS(3494), + [anon_sym_short] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_register] = ACTIONS(3494), + [anon_sym_inline] = ACTIONS(3494), + [anon_sym___inline] = ACTIONS(3494), + [anon_sym___inline__] = ACTIONS(3494), + [anon_sym___forceinline] = ACTIONS(3494), + [anon_sym_thread_local] = ACTIONS(3494), + [anon_sym___thread] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_constexpr] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_restrict] = ACTIONS(3494), + [anon_sym___restrict__] = ACTIONS(3494), + [anon_sym__Atomic] = ACTIONS(3494), + [anon_sym__Noreturn] = ACTIONS(3494), + [anon_sym_noreturn] = ACTIONS(3494), + [anon_sym__Nonnull] = ACTIONS(3494), + [anon_sym_mutable] = ACTIONS(3494), + [anon_sym_constinit] = ACTIONS(3494), + [anon_sym_consteval] = ACTIONS(3494), + [anon_sym_alignas] = ACTIONS(3494), + [anon_sym__Alignas] = ACTIONS(3494), + [sym_primitive_type] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_union] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_else] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_case] = ACTIONS(3494), + [anon_sym_default] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_goto] = ACTIONS(3494), + [anon_sym___try] = ACTIONS(3494), + [anon_sym___leave] = ACTIONS(3494), + [anon_sym_not] = ACTIONS(3494), + [anon_sym_compl] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_sizeof] = ACTIONS(3494), + [anon_sym___alignof__] = ACTIONS(3494), + [anon_sym___alignof] = ACTIONS(3494), + [anon_sym__alignof] = ACTIONS(3494), + [anon_sym_alignof] = ACTIONS(3494), + [anon_sym__Alignof] = ACTIONS(3494), + [anon_sym_offsetof] = ACTIONS(3494), + [anon_sym__Generic] = ACTIONS(3494), + [anon_sym_typename] = ACTIONS(3494), + [anon_sym_asm] = ACTIONS(3494), + [anon_sym___asm__] = ACTIONS(3494), + [anon_sym___asm] = ACTIONS(3494), + [sym_number_literal] = ACTIONS(3496), + [anon_sym_L_SQUOTE] = ACTIONS(3496), + [anon_sym_u_SQUOTE] = ACTIONS(3496), + [anon_sym_U_SQUOTE] = ACTIONS(3496), + [anon_sym_u8_SQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_L_DQUOTE] = ACTIONS(3496), + [anon_sym_u_DQUOTE] = ACTIONS(3496), + [anon_sym_U_DQUOTE] = ACTIONS(3496), + [anon_sym_u8_DQUOTE] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [anon_sym_NULL] = ACTIONS(3494), + [anon_sym_nullptr] = ACTIONS(3494), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3494), + [anon_sym_decltype] = ACTIONS(3494), + [anon_sym_explicit] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_template] = ACTIONS(3494), + [anon_sym_operator] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_static_assert] = ACTIONS(3494), + [anon_sym_concept] = ACTIONS(3494), + [anon_sym_co_return] = ACTIONS(3494), + [anon_sym_co_yield] = ACTIONS(3494), + [anon_sym_R_DQUOTE] = ACTIONS(3496), + [anon_sym_LR_DQUOTE] = ACTIONS(3496), + [anon_sym_uR_DQUOTE] = ACTIONS(3496), + [anon_sym_UR_DQUOTE] = ACTIONS(3496), + [anon_sym_u8R_DQUOTE] = ACTIONS(3496), + [anon_sym_co_await] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_requires] = ACTIONS(3494), + [anon_sym_CARET_CARET] = ACTIONS(3496), + [anon_sym_LBRACK_COLON] = ACTIONS(3496), + [sym_this] = ACTIONS(3494), }, [STATE(762)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_include_token1] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym___cdecl] = ACTIONS(3662), - [anon_sym___clrcall] = ACTIONS(3662), - [anon_sym___stdcall] = ACTIONS(3662), - [anon_sym___fastcall] = ACTIONS(3662), - [anon_sym___thiscall] = ACTIONS(3662), - [anon_sym___vectorcall] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_goto] = ACTIONS(3662), - [anon_sym___try] = ACTIONS(3662), - [anon_sym___leave] = ACTIONS(3662), - [anon_sym_not] = ACTIONS(3662), - [anon_sym_compl] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_sizeof] = ACTIONS(3662), - [anon_sym___alignof__] = ACTIONS(3662), - [anon_sym___alignof] = ACTIONS(3662), - [anon_sym__alignof] = ACTIONS(3662), - [anon_sym_alignof] = ACTIONS(3662), - [anon_sym__Alignof] = ACTIONS(3662), - [anon_sym_offsetof] = ACTIONS(3662), - [anon_sym__Generic] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [anon_sym_asm] = ACTIONS(3662), - [anon_sym___asm__] = ACTIONS(3662), - [anon_sym___asm] = ACTIONS(3662), - [sym_number_literal] = ACTIONS(3664), - [anon_sym_L_SQUOTE] = ACTIONS(3664), - [anon_sym_u_SQUOTE] = ACTIONS(3664), - [anon_sym_U_SQUOTE] = ACTIONS(3664), - [anon_sym_u8_SQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_L_DQUOTE] = ACTIONS(3664), - [anon_sym_u_DQUOTE] = ACTIONS(3664), - [anon_sym_U_DQUOTE] = ACTIONS(3664), - [anon_sym_u8_DQUOTE] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [anon_sym_NULL] = ACTIONS(3662), - [anon_sym_nullptr] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_concept] = ACTIONS(3662), - [anon_sym_co_return] = ACTIONS(3662), - [anon_sym_co_yield] = ACTIONS(3662), - [anon_sym_R_DQUOTE] = ACTIONS(3664), - [anon_sym_LR_DQUOTE] = ACTIONS(3664), - [anon_sym_uR_DQUOTE] = ACTIONS(3664), - [anon_sym_UR_DQUOTE] = ACTIONS(3664), - [anon_sym_u8R_DQUOTE] = ACTIONS(3664), - [anon_sym_co_await] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3662), - [anon_sym_CARET_CARET] = ACTIONS(3664), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - [sym_this] = ACTIONS(3662), + [sym_identifier] = ACTIONS(3498), + [aux_sym_preproc_include_token1] = ACTIONS(3498), + [aux_sym_preproc_def_token1] = ACTIONS(3498), + [aux_sym_preproc_if_token1] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3498), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3498), + [sym_preproc_directive] = ACTIONS(3498), + [anon_sym_LPAREN2] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3500), + [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym___extension__] = ACTIONS(3498), + [anon_sym_typedef] = ACTIONS(3498), + [anon_sym_virtual] = ACTIONS(3498), + [anon_sym_extern] = ACTIONS(3498), + [anon_sym___attribute__] = ACTIONS(3498), + [anon_sym___attribute] = ACTIONS(3498), + [anon_sym_using] = ACTIONS(3498), + [anon_sym_COLON_COLON] = ACTIONS(3500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3500), + [anon_sym___declspec] = ACTIONS(3498), + [anon_sym___based] = ACTIONS(3498), + [anon_sym___cdecl] = ACTIONS(3498), + [anon_sym___clrcall] = ACTIONS(3498), + [anon_sym___stdcall] = ACTIONS(3498), + [anon_sym___fastcall] = ACTIONS(3498), + [anon_sym___thiscall] = ACTIONS(3498), + [anon_sym___vectorcall] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_signed] = ACTIONS(3498), + [anon_sym_unsigned] = ACTIONS(3498), + [anon_sym_long] = ACTIONS(3498), + [anon_sym_short] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_register] = ACTIONS(3498), + [anon_sym_inline] = ACTIONS(3498), + [anon_sym___inline] = ACTIONS(3498), + [anon_sym___inline__] = ACTIONS(3498), + [anon_sym___forceinline] = ACTIONS(3498), + [anon_sym_thread_local] = ACTIONS(3498), + [anon_sym___thread] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_constexpr] = ACTIONS(3498), + [anon_sym_volatile] = ACTIONS(3498), + [anon_sym_restrict] = ACTIONS(3498), + [anon_sym___restrict__] = ACTIONS(3498), + [anon_sym__Atomic] = ACTIONS(3498), + [anon_sym__Noreturn] = ACTIONS(3498), + [anon_sym_noreturn] = ACTIONS(3498), + [anon_sym__Nonnull] = ACTIONS(3498), + [anon_sym_mutable] = ACTIONS(3498), + [anon_sym_constinit] = ACTIONS(3498), + [anon_sym_consteval] = ACTIONS(3498), + [anon_sym_alignas] = ACTIONS(3498), + [anon_sym__Alignas] = ACTIONS(3498), + [sym_primitive_type] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_struct] = ACTIONS(3498), + [anon_sym_union] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_else] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_case] = ACTIONS(3498), + [anon_sym_default] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_goto] = ACTIONS(3498), + [anon_sym___try] = ACTIONS(3498), + [anon_sym___leave] = ACTIONS(3498), + [anon_sym_not] = ACTIONS(3498), + [anon_sym_compl] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_sizeof] = ACTIONS(3498), + [anon_sym___alignof__] = ACTIONS(3498), + [anon_sym___alignof] = ACTIONS(3498), + [anon_sym__alignof] = ACTIONS(3498), + [anon_sym_alignof] = ACTIONS(3498), + [anon_sym__Alignof] = ACTIONS(3498), + [anon_sym_offsetof] = ACTIONS(3498), + [anon_sym__Generic] = ACTIONS(3498), + [anon_sym_typename] = ACTIONS(3498), + [anon_sym_asm] = ACTIONS(3498), + [anon_sym___asm__] = ACTIONS(3498), + [anon_sym___asm] = ACTIONS(3498), + [sym_number_literal] = ACTIONS(3500), + [anon_sym_L_SQUOTE] = ACTIONS(3500), + [anon_sym_u_SQUOTE] = ACTIONS(3500), + [anon_sym_U_SQUOTE] = ACTIONS(3500), + [anon_sym_u8_SQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_L_DQUOTE] = ACTIONS(3500), + [anon_sym_u_DQUOTE] = ACTIONS(3500), + [anon_sym_U_DQUOTE] = ACTIONS(3500), + [anon_sym_u8_DQUOTE] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [anon_sym_NULL] = ACTIONS(3498), + [anon_sym_nullptr] = ACTIONS(3498), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3498), + [anon_sym_decltype] = ACTIONS(3498), + [anon_sym_explicit] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_template] = ACTIONS(3498), + [anon_sym_operator] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_static_assert] = ACTIONS(3498), + [anon_sym_concept] = ACTIONS(3498), + [anon_sym_co_return] = ACTIONS(3498), + [anon_sym_co_yield] = ACTIONS(3498), + [anon_sym_R_DQUOTE] = ACTIONS(3500), + [anon_sym_LR_DQUOTE] = ACTIONS(3500), + [anon_sym_uR_DQUOTE] = ACTIONS(3500), + [anon_sym_UR_DQUOTE] = ACTIONS(3500), + [anon_sym_u8R_DQUOTE] = ACTIONS(3500), + [anon_sym_co_await] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_requires] = ACTIONS(3498), + [anon_sym_CARET_CARET] = ACTIONS(3500), + [anon_sym_LBRACK_COLON] = ACTIONS(3500), + [sym_this] = ACTIONS(3498), }, [STATE(763)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_include_token1] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym___cdecl] = ACTIONS(3662), - [anon_sym___clrcall] = ACTIONS(3662), - [anon_sym___stdcall] = ACTIONS(3662), - [anon_sym___fastcall] = ACTIONS(3662), - [anon_sym___thiscall] = ACTIONS(3662), - [anon_sym___vectorcall] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_case] = ACTIONS(3662), - [anon_sym_default] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_goto] = ACTIONS(3662), - [anon_sym___try] = ACTIONS(3662), - [anon_sym___leave] = ACTIONS(3662), - [anon_sym_not] = ACTIONS(3662), - [anon_sym_compl] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_sizeof] = ACTIONS(3662), - [anon_sym___alignof__] = ACTIONS(3662), - [anon_sym___alignof] = ACTIONS(3662), - [anon_sym__alignof] = ACTIONS(3662), - [anon_sym_alignof] = ACTIONS(3662), - [anon_sym__Alignof] = ACTIONS(3662), - [anon_sym_offsetof] = ACTIONS(3662), - [anon_sym__Generic] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [anon_sym_asm] = ACTIONS(3662), - [anon_sym___asm__] = ACTIONS(3662), - [anon_sym___asm] = ACTIONS(3662), - [sym_number_literal] = ACTIONS(3664), - [anon_sym_L_SQUOTE] = ACTIONS(3664), - [anon_sym_u_SQUOTE] = ACTIONS(3664), - [anon_sym_U_SQUOTE] = ACTIONS(3664), - [anon_sym_u8_SQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_L_DQUOTE] = ACTIONS(3664), - [anon_sym_u_DQUOTE] = ACTIONS(3664), - [anon_sym_U_DQUOTE] = ACTIONS(3664), - [anon_sym_u8_DQUOTE] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [anon_sym_NULL] = ACTIONS(3662), - [anon_sym_nullptr] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_export] = ACTIONS(3662), - [anon_sym_import] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_namespace] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_concept] = ACTIONS(3662), - [anon_sym_co_return] = ACTIONS(3662), - [anon_sym_co_yield] = ACTIONS(3662), - [anon_sym_R_DQUOTE] = ACTIONS(3664), - [anon_sym_LR_DQUOTE] = ACTIONS(3664), - [anon_sym_uR_DQUOTE] = ACTIONS(3664), - [anon_sym_UR_DQUOTE] = ACTIONS(3664), - [anon_sym_u8R_DQUOTE] = ACTIONS(3664), - [anon_sym_co_await] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3662), - [anon_sym_CARET_CARET] = ACTIONS(3664), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - [sym_this] = ACTIONS(3662), + [sym_identifier] = ACTIONS(4267), + [aux_sym_preproc_include_token1] = ACTIONS(4267), + [aux_sym_preproc_def_token1] = ACTIONS(4267), + [aux_sym_preproc_if_token1] = ACTIONS(4267), + [aux_sym_preproc_if_token2] = ACTIONS(4267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), + [sym_preproc_directive] = ACTIONS(4267), + [anon_sym_LPAREN2] = ACTIONS(4269), + [anon_sym_BANG] = ACTIONS(4269), + [anon_sym_TILDE] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym___extension__] = ACTIONS(4267), + [anon_sym_typedef] = ACTIONS(4267), + [anon_sym_virtual] = ACTIONS(4267), + [anon_sym_extern] = ACTIONS(4267), + [anon_sym___attribute__] = ACTIONS(4267), + [anon_sym___attribute] = ACTIONS(4267), + [anon_sym_using] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4269), + [anon_sym___declspec] = ACTIONS(4267), + [anon_sym___based] = ACTIONS(4267), + [anon_sym___cdecl] = ACTIONS(4267), + [anon_sym___clrcall] = ACTIONS(4267), + [anon_sym___stdcall] = ACTIONS(4267), + [anon_sym___fastcall] = ACTIONS(4267), + [anon_sym___thiscall] = ACTIONS(4267), + [anon_sym___vectorcall] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_signed] = ACTIONS(4267), + [anon_sym_unsigned] = ACTIONS(4267), + [anon_sym_long] = ACTIONS(4267), + [anon_sym_short] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_static] = ACTIONS(4267), + [anon_sym_register] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym___inline] = ACTIONS(4267), + [anon_sym___inline__] = ACTIONS(4267), + [anon_sym___forceinline] = ACTIONS(4267), + [anon_sym_thread_local] = ACTIONS(4267), + [anon_sym___thread] = ACTIONS(4267), + [anon_sym_const] = ACTIONS(4267), + [anon_sym_constexpr] = ACTIONS(4267), + [anon_sym_volatile] = ACTIONS(4267), + [anon_sym_restrict] = ACTIONS(4267), + [anon_sym___restrict__] = ACTIONS(4267), + [anon_sym__Atomic] = ACTIONS(4267), + [anon_sym__Noreturn] = ACTIONS(4267), + [anon_sym_noreturn] = ACTIONS(4267), + [anon_sym__Nonnull] = ACTIONS(4267), + [anon_sym_mutable] = ACTIONS(4267), + [anon_sym_constinit] = ACTIONS(4267), + [anon_sym_consteval] = ACTIONS(4267), + [anon_sym_alignas] = ACTIONS(4267), + [anon_sym__Alignas] = ACTIONS(4267), + [sym_primitive_type] = ACTIONS(4267), + [anon_sym_enum] = ACTIONS(4267), + [anon_sym_class] = ACTIONS(4267), + [anon_sym_struct] = ACTIONS(4267), + [anon_sym_union] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_switch] = ACTIONS(4267), + [anon_sym_case] = ACTIONS(4267), + [anon_sym_default] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_do] = ACTIONS(4267), + [anon_sym_for] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_goto] = ACTIONS(4267), + [anon_sym___try] = ACTIONS(4267), + [anon_sym___leave] = ACTIONS(4267), + [anon_sym_not] = ACTIONS(4267), + [anon_sym_compl] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_sizeof] = ACTIONS(4267), + [anon_sym___alignof__] = ACTIONS(4267), + [anon_sym___alignof] = ACTIONS(4267), + [anon_sym__alignof] = ACTIONS(4267), + [anon_sym_alignof] = ACTIONS(4267), + [anon_sym__Alignof] = ACTIONS(4267), + [anon_sym_offsetof] = ACTIONS(4267), + [anon_sym__Generic] = ACTIONS(4267), + [anon_sym_typename] = ACTIONS(4267), + [anon_sym_asm] = ACTIONS(4267), + [anon_sym___asm__] = ACTIONS(4267), + [anon_sym___asm] = ACTIONS(4267), + [sym_number_literal] = ACTIONS(4269), + [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(4269), + [anon_sym_u_DQUOTE] = ACTIONS(4269), + [anon_sym_U_DQUOTE] = ACTIONS(4269), + [anon_sym_u8_DQUOTE] = ACTIONS(4269), + [anon_sym_DQUOTE] = ACTIONS(4269), + [sym_true] = ACTIONS(4267), + [sym_false] = ACTIONS(4267), + [anon_sym_NULL] = ACTIONS(4267), + [anon_sym_nullptr] = ACTIONS(4267), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4267), + [anon_sym_decltype] = ACTIONS(4267), + [anon_sym_explicit] = ACTIONS(4267), + [anon_sym_export] = ACTIONS(4267), + [anon_sym_module] = ACTIONS(4267), + [anon_sym_import] = ACTIONS(4267), + [anon_sym_template] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_delete] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_namespace] = ACTIONS(4267), + [anon_sym_static_assert] = ACTIONS(4267), + [anon_sym_concept] = ACTIONS(4267), + [anon_sym_co_return] = ACTIONS(4267), + [anon_sym_co_yield] = ACTIONS(4267), + [anon_sym_R_DQUOTE] = ACTIONS(4269), + [anon_sym_LR_DQUOTE] = ACTIONS(4269), + [anon_sym_uR_DQUOTE] = ACTIONS(4269), + [anon_sym_UR_DQUOTE] = ACTIONS(4269), + [anon_sym_u8R_DQUOTE] = ACTIONS(4269), + [anon_sym_co_await] = ACTIONS(4267), + [anon_sym_new] = ACTIONS(4267), + [anon_sym_requires] = ACTIONS(4267), + [anon_sym_CARET_CARET] = ACTIONS(4269), + [anon_sym_LBRACK_COLON] = ACTIONS(4269), + [sym_this] = ACTIONS(4267), }, [STATE(764)] = { - [sym_identifier] = ACTIONS(3666), - [aux_sym_preproc_include_token1] = ACTIONS(3666), - [aux_sym_preproc_def_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token1] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), - [sym_preproc_directive] = ACTIONS(3666), - [anon_sym_LPAREN2] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym___extension__] = ACTIONS(3666), - [anon_sym_typedef] = ACTIONS(3666), - [anon_sym_virtual] = ACTIONS(3666), - [anon_sym_extern] = ACTIONS(3666), - [anon_sym___attribute__] = ACTIONS(3666), - [anon_sym___attribute] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_COLON_COLON] = ACTIONS(3668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), - [anon_sym___declspec] = ACTIONS(3666), - [anon_sym___based] = ACTIONS(3666), - [anon_sym___cdecl] = ACTIONS(3666), - [anon_sym___clrcall] = ACTIONS(3666), - [anon_sym___stdcall] = ACTIONS(3666), - [anon_sym___fastcall] = ACTIONS(3666), - [anon_sym___thiscall] = ACTIONS(3666), - [anon_sym___vectorcall] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_signed] = ACTIONS(3666), - [anon_sym_unsigned] = ACTIONS(3666), - [anon_sym_long] = ACTIONS(3666), - [anon_sym_short] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_register] = ACTIONS(3666), - [anon_sym_inline] = ACTIONS(3666), - [anon_sym___inline] = ACTIONS(3666), - [anon_sym___inline__] = ACTIONS(3666), - [anon_sym___forceinline] = ACTIONS(3666), - [anon_sym_thread_local] = ACTIONS(3666), - [anon_sym___thread] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_constexpr] = ACTIONS(3666), - [anon_sym_volatile] = ACTIONS(3666), - [anon_sym_restrict] = ACTIONS(3666), - [anon_sym___restrict__] = ACTIONS(3666), - [anon_sym__Atomic] = ACTIONS(3666), - [anon_sym__Noreturn] = ACTIONS(3666), - [anon_sym_noreturn] = ACTIONS(3666), - [anon_sym__Nonnull] = ACTIONS(3666), - [anon_sym_mutable] = ACTIONS(3666), - [anon_sym_constinit] = ACTIONS(3666), - [anon_sym_consteval] = ACTIONS(3666), - [anon_sym_alignas] = ACTIONS(3666), - [anon_sym__Alignas] = ACTIONS(3666), - [sym_primitive_type] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_union] = ACTIONS(3666), - [anon_sym_if] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_case] = ACTIONS(3666), - [anon_sym_default] = ACTIONS(3666), - [anon_sym_while] = ACTIONS(3666), - [anon_sym_do] = ACTIONS(3666), - [anon_sym_for] = ACTIONS(3666), - [anon_sym_return] = ACTIONS(3666), - [anon_sym_break] = ACTIONS(3666), - [anon_sym_continue] = ACTIONS(3666), - [anon_sym_goto] = ACTIONS(3666), - [anon_sym___try] = ACTIONS(3666), - [anon_sym___leave] = ACTIONS(3666), - [anon_sym_not] = ACTIONS(3666), - [anon_sym_compl] = ACTIONS(3666), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_sizeof] = ACTIONS(3666), - [anon_sym___alignof__] = ACTIONS(3666), - [anon_sym___alignof] = ACTIONS(3666), - [anon_sym__alignof] = ACTIONS(3666), - [anon_sym_alignof] = ACTIONS(3666), - [anon_sym__Alignof] = ACTIONS(3666), - [anon_sym_offsetof] = ACTIONS(3666), - [anon_sym__Generic] = ACTIONS(3666), - [anon_sym_typename] = ACTIONS(3666), - [anon_sym_asm] = ACTIONS(3666), - [anon_sym___asm__] = ACTIONS(3666), - [anon_sym___asm] = ACTIONS(3666), - [sym_number_literal] = ACTIONS(3668), - [anon_sym_L_SQUOTE] = ACTIONS(3668), - [anon_sym_u_SQUOTE] = ACTIONS(3668), - [anon_sym_U_SQUOTE] = ACTIONS(3668), - [anon_sym_u8_SQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3668), - [anon_sym_L_DQUOTE] = ACTIONS(3668), - [anon_sym_u_DQUOTE] = ACTIONS(3668), - [anon_sym_U_DQUOTE] = ACTIONS(3668), - [anon_sym_u8_DQUOTE] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(3668), - [sym_true] = ACTIONS(3666), - [sym_false] = ACTIONS(3666), - [anon_sym_NULL] = ACTIONS(3666), - [anon_sym_nullptr] = ACTIONS(3666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3666), - [anon_sym_decltype] = ACTIONS(3666), - [anon_sym_explicit] = ACTIONS(3666), - [anon_sym_export] = ACTIONS(3666), - [anon_sym_import] = ACTIONS(3666), - [anon_sym_template] = ACTIONS(3666), - [anon_sym_operator] = ACTIONS(3666), - [anon_sym_try] = ACTIONS(3666), - [anon_sym_delete] = ACTIONS(3666), - [anon_sym_throw] = ACTIONS(3666), - [anon_sym_namespace] = ACTIONS(3666), - [anon_sym_static_assert] = ACTIONS(3666), - [anon_sym_concept] = ACTIONS(3666), - [anon_sym_co_return] = ACTIONS(3666), - [anon_sym_co_yield] = ACTIONS(3666), - [anon_sym_R_DQUOTE] = ACTIONS(3668), - [anon_sym_LR_DQUOTE] = ACTIONS(3668), - [anon_sym_uR_DQUOTE] = ACTIONS(3668), - [anon_sym_UR_DQUOTE] = ACTIONS(3668), - [anon_sym_u8R_DQUOTE] = ACTIONS(3668), - [anon_sym_co_await] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_requires] = ACTIONS(3666), - [anon_sym_CARET_CARET] = ACTIONS(3668), - [anon_sym_LBRACK_COLON] = ACTIONS(3668), - [sym_this] = ACTIONS(3666), + [sym_identifier] = ACTIONS(3506), + [aux_sym_preproc_include_token1] = ACTIONS(3506), + [aux_sym_preproc_def_token1] = ACTIONS(3506), + [aux_sym_preproc_if_token1] = ACTIONS(3506), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3506), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3506), + [sym_preproc_directive] = ACTIONS(3506), + [anon_sym_LPAREN2] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_STAR] = ACTIONS(3508), + [anon_sym_AMP_AMP] = ACTIONS(3508), + [anon_sym_AMP] = ACTIONS(3506), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym___extension__] = ACTIONS(3506), + [anon_sym_typedef] = ACTIONS(3506), + [anon_sym_virtual] = ACTIONS(3506), + [anon_sym_extern] = ACTIONS(3506), + [anon_sym___attribute__] = ACTIONS(3506), + [anon_sym___attribute] = ACTIONS(3506), + [anon_sym_using] = ACTIONS(3506), + [anon_sym_COLON_COLON] = ACTIONS(3508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3508), + [anon_sym___declspec] = ACTIONS(3506), + [anon_sym___based] = ACTIONS(3506), + [anon_sym___cdecl] = ACTIONS(3506), + [anon_sym___clrcall] = ACTIONS(3506), + [anon_sym___stdcall] = ACTIONS(3506), + [anon_sym___fastcall] = ACTIONS(3506), + [anon_sym___thiscall] = ACTIONS(3506), + [anon_sym___vectorcall] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_RBRACE] = ACTIONS(3508), + [anon_sym_signed] = ACTIONS(3506), + [anon_sym_unsigned] = ACTIONS(3506), + [anon_sym_long] = ACTIONS(3506), + [anon_sym_short] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_register] = ACTIONS(3506), + [anon_sym_inline] = ACTIONS(3506), + [anon_sym___inline] = ACTIONS(3506), + [anon_sym___inline__] = ACTIONS(3506), + [anon_sym___forceinline] = ACTIONS(3506), + [anon_sym_thread_local] = ACTIONS(3506), + [anon_sym___thread] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3506), + [anon_sym_constexpr] = ACTIONS(3506), + [anon_sym_volatile] = ACTIONS(3506), + [anon_sym_restrict] = ACTIONS(3506), + [anon_sym___restrict__] = ACTIONS(3506), + [anon_sym__Atomic] = ACTIONS(3506), + [anon_sym__Noreturn] = ACTIONS(3506), + [anon_sym_noreturn] = ACTIONS(3506), + [anon_sym__Nonnull] = ACTIONS(3506), + [anon_sym_mutable] = ACTIONS(3506), + [anon_sym_constinit] = ACTIONS(3506), + [anon_sym_consteval] = ACTIONS(3506), + [anon_sym_alignas] = ACTIONS(3506), + [anon_sym__Alignas] = ACTIONS(3506), + [sym_primitive_type] = ACTIONS(3506), + [anon_sym_enum] = ACTIONS(3506), + [anon_sym_class] = ACTIONS(3506), + [anon_sym_struct] = ACTIONS(3506), + [anon_sym_union] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_else] = ACTIONS(3506), + [anon_sym_switch] = ACTIONS(3506), + [anon_sym_case] = ACTIONS(3506), + [anon_sym_default] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_do] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_goto] = ACTIONS(3506), + [anon_sym___try] = ACTIONS(3506), + [anon_sym___leave] = ACTIONS(3506), + [anon_sym_not] = ACTIONS(3506), + [anon_sym_compl] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3508), + [anon_sym_sizeof] = ACTIONS(3506), + [anon_sym___alignof__] = ACTIONS(3506), + [anon_sym___alignof] = ACTIONS(3506), + [anon_sym__alignof] = ACTIONS(3506), + [anon_sym_alignof] = ACTIONS(3506), + [anon_sym__Alignof] = ACTIONS(3506), + [anon_sym_offsetof] = ACTIONS(3506), + [anon_sym__Generic] = ACTIONS(3506), + [anon_sym_typename] = ACTIONS(3506), + [anon_sym_asm] = ACTIONS(3506), + [anon_sym___asm__] = ACTIONS(3506), + [anon_sym___asm] = ACTIONS(3506), + [sym_number_literal] = ACTIONS(3508), + [anon_sym_L_SQUOTE] = ACTIONS(3508), + [anon_sym_u_SQUOTE] = ACTIONS(3508), + [anon_sym_U_SQUOTE] = ACTIONS(3508), + [anon_sym_u8_SQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3508), + [anon_sym_L_DQUOTE] = ACTIONS(3508), + [anon_sym_u_DQUOTE] = ACTIONS(3508), + [anon_sym_U_DQUOTE] = ACTIONS(3508), + [anon_sym_u8_DQUOTE] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [anon_sym_NULL] = ACTIONS(3506), + [anon_sym_nullptr] = ACTIONS(3506), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3506), + [anon_sym_decltype] = ACTIONS(3506), + [anon_sym_explicit] = ACTIONS(3506), + [anon_sym_export] = ACTIONS(3506), + [anon_sym_import] = ACTIONS(3506), + [anon_sym_template] = ACTIONS(3506), + [anon_sym_operator] = ACTIONS(3506), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_delete] = ACTIONS(3506), + [anon_sym_throw] = ACTIONS(3506), + [anon_sym_namespace] = ACTIONS(3506), + [anon_sym_static_assert] = ACTIONS(3506), + [anon_sym_concept] = ACTIONS(3506), + [anon_sym_co_return] = ACTIONS(3506), + [anon_sym_co_yield] = ACTIONS(3506), + [anon_sym_R_DQUOTE] = ACTIONS(3508), + [anon_sym_LR_DQUOTE] = ACTIONS(3508), + [anon_sym_uR_DQUOTE] = ACTIONS(3508), + [anon_sym_UR_DQUOTE] = ACTIONS(3508), + [anon_sym_u8R_DQUOTE] = ACTIONS(3508), + [anon_sym_co_await] = ACTIONS(3506), + [anon_sym_new] = ACTIONS(3506), + [anon_sym_requires] = ACTIONS(3506), + [anon_sym_CARET_CARET] = ACTIONS(3508), + [anon_sym_LBRACK_COLON] = ACTIONS(3508), + [sym_this] = ACTIONS(3506), }, [STATE(765)] = { - [sym_identifier] = ACTIONS(3674), - [aux_sym_preproc_include_token1] = ACTIONS(3674), - [aux_sym_preproc_def_token1] = ACTIONS(3674), - [aux_sym_preproc_if_token1] = ACTIONS(3674), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3674), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3674), - [sym_preproc_directive] = ACTIONS(3674), - [anon_sym_LPAREN2] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3676), - [anon_sym_TILDE] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_AMP_AMP] = ACTIONS(3676), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym___extension__] = ACTIONS(3674), - [anon_sym_typedef] = ACTIONS(3674), - [anon_sym_virtual] = ACTIONS(3674), - [anon_sym_extern] = ACTIONS(3674), - [anon_sym___attribute__] = ACTIONS(3674), - [anon_sym___attribute] = ACTIONS(3674), - [anon_sym_using] = ACTIONS(3674), - [anon_sym_COLON_COLON] = ACTIONS(3676), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3676), - [anon_sym___declspec] = ACTIONS(3674), - [anon_sym___based] = ACTIONS(3674), - [anon_sym___cdecl] = ACTIONS(3674), - [anon_sym___clrcall] = ACTIONS(3674), - [anon_sym___stdcall] = ACTIONS(3674), - [anon_sym___fastcall] = ACTIONS(3674), - [anon_sym___thiscall] = ACTIONS(3674), - [anon_sym___vectorcall] = ACTIONS(3674), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_RBRACE] = ACTIONS(3676), - [anon_sym_signed] = ACTIONS(3674), - [anon_sym_unsigned] = ACTIONS(3674), - [anon_sym_long] = ACTIONS(3674), - [anon_sym_short] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_static] = ACTIONS(3674), - [anon_sym_register] = ACTIONS(3674), - [anon_sym_inline] = ACTIONS(3674), - [anon_sym___inline] = ACTIONS(3674), - [anon_sym___inline__] = ACTIONS(3674), - [anon_sym___forceinline] = ACTIONS(3674), - [anon_sym_thread_local] = ACTIONS(3674), - [anon_sym___thread] = ACTIONS(3674), - [anon_sym_const] = ACTIONS(3674), - [anon_sym_constexpr] = ACTIONS(3674), - [anon_sym_volatile] = ACTIONS(3674), - [anon_sym_restrict] = ACTIONS(3674), - [anon_sym___restrict__] = ACTIONS(3674), - [anon_sym__Atomic] = ACTIONS(3674), - [anon_sym__Noreturn] = ACTIONS(3674), - [anon_sym_noreturn] = ACTIONS(3674), - [anon_sym__Nonnull] = ACTIONS(3674), - [anon_sym_mutable] = ACTIONS(3674), - [anon_sym_constinit] = ACTIONS(3674), - [anon_sym_consteval] = ACTIONS(3674), - [anon_sym_alignas] = ACTIONS(3674), - [anon_sym__Alignas] = ACTIONS(3674), - [sym_primitive_type] = ACTIONS(3674), - [anon_sym_enum] = ACTIONS(3674), - [anon_sym_class] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(3674), - [anon_sym_union] = ACTIONS(3674), - [anon_sym_if] = ACTIONS(3674), - [anon_sym_else] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_case] = ACTIONS(3674), - [anon_sym_default] = ACTIONS(3674), - [anon_sym_while] = ACTIONS(3674), - [anon_sym_do] = ACTIONS(3674), - [anon_sym_for] = ACTIONS(3674), - [anon_sym_return] = ACTIONS(3674), - [anon_sym_break] = ACTIONS(3674), - [anon_sym_continue] = ACTIONS(3674), - [anon_sym_goto] = ACTIONS(3674), - [anon_sym___try] = ACTIONS(3674), - [anon_sym___leave] = ACTIONS(3674), - [anon_sym_not] = ACTIONS(3674), - [anon_sym_compl] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_sizeof] = ACTIONS(3674), - [anon_sym___alignof__] = ACTIONS(3674), - [anon_sym___alignof] = ACTIONS(3674), - [anon_sym__alignof] = ACTIONS(3674), - [anon_sym_alignof] = ACTIONS(3674), - [anon_sym__Alignof] = ACTIONS(3674), - [anon_sym_offsetof] = ACTIONS(3674), - [anon_sym__Generic] = ACTIONS(3674), - [anon_sym_typename] = ACTIONS(3674), - [anon_sym_asm] = ACTIONS(3674), - [anon_sym___asm__] = ACTIONS(3674), - [anon_sym___asm] = ACTIONS(3674), - [sym_number_literal] = ACTIONS(3676), - [anon_sym_L_SQUOTE] = ACTIONS(3676), - [anon_sym_u_SQUOTE] = ACTIONS(3676), - [anon_sym_U_SQUOTE] = ACTIONS(3676), - [anon_sym_u8_SQUOTE] = ACTIONS(3676), - [anon_sym_SQUOTE] = ACTIONS(3676), - [anon_sym_L_DQUOTE] = ACTIONS(3676), - [anon_sym_u_DQUOTE] = ACTIONS(3676), - [anon_sym_U_DQUOTE] = ACTIONS(3676), - [anon_sym_u8_DQUOTE] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(3676), - [sym_true] = ACTIONS(3674), - [sym_false] = ACTIONS(3674), - [anon_sym_NULL] = ACTIONS(3674), - [anon_sym_nullptr] = ACTIONS(3674), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3674), - [anon_sym_decltype] = ACTIONS(3674), - [anon_sym_explicit] = ACTIONS(3674), - [anon_sym_export] = ACTIONS(3674), - [anon_sym_import] = ACTIONS(3674), - [anon_sym_template] = ACTIONS(3674), - [anon_sym_operator] = ACTIONS(3674), - [anon_sym_try] = ACTIONS(3674), - [anon_sym_delete] = ACTIONS(3674), - [anon_sym_throw] = ACTIONS(3674), - [anon_sym_namespace] = ACTIONS(3674), - [anon_sym_static_assert] = ACTIONS(3674), - [anon_sym_concept] = ACTIONS(3674), - [anon_sym_co_return] = ACTIONS(3674), - [anon_sym_co_yield] = ACTIONS(3674), - [anon_sym_R_DQUOTE] = ACTIONS(3676), - [anon_sym_LR_DQUOTE] = ACTIONS(3676), - [anon_sym_uR_DQUOTE] = ACTIONS(3676), - [anon_sym_UR_DQUOTE] = ACTIONS(3676), - [anon_sym_u8R_DQUOTE] = ACTIONS(3676), - [anon_sym_co_await] = ACTIONS(3674), - [anon_sym_new] = ACTIONS(3674), - [anon_sym_requires] = ACTIONS(3674), - [anon_sym_CARET_CARET] = ACTIONS(3676), - [anon_sym_LBRACK_COLON] = ACTIONS(3676), - [sym_this] = ACTIONS(3674), + [sym_identifier] = ACTIONS(3842), + [aux_sym_preproc_include_token1] = ACTIONS(3842), + [aux_sym_preproc_def_token1] = ACTIONS(3842), + [aux_sym_preproc_if_token1] = ACTIONS(3842), + [aux_sym_preproc_if_token2] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3842), + [sym_preproc_directive] = ACTIONS(3842), + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_BANG] = ACTIONS(3844), + [anon_sym_TILDE] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3842), + [anon_sym_PLUS] = ACTIONS(3842), + [anon_sym_STAR] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym___extension__] = ACTIONS(3842), + [anon_sym_typedef] = ACTIONS(3842), + [anon_sym_virtual] = ACTIONS(3842), + [anon_sym_extern] = ACTIONS(3842), + [anon_sym___attribute__] = ACTIONS(3842), + [anon_sym___attribute] = ACTIONS(3842), + [anon_sym_using] = ACTIONS(3842), + [anon_sym_COLON_COLON] = ACTIONS(3844), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3844), + [anon_sym___declspec] = ACTIONS(3842), + [anon_sym___based] = ACTIONS(3842), + [anon_sym___cdecl] = ACTIONS(3842), + [anon_sym___clrcall] = ACTIONS(3842), + [anon_sym___stdcall] = ACTIONS(3842), + [anon_sym___fastcall] = ACTIONS(3842), + [anon_sym___thiscall] = ACTIONS(3842), + [anon_sym___vectorcall] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3844), + [anon_sym_signed] = ACTIONS(3842), + [anon_sym_unsigned] = ACTIONS(3842), + [anon_sym_long] = ACTIONS(3842), + [anon_sym_short] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_static] = ACTIONS(3842), + [anon_sym_register] = ACTIONS(3842), + [anon_sym_inline] = ACTIONS(3842), + [anon_sym___inline] = ACTIONS(3842), + [anon_sym___inline__] = ACTIONS(3842), + [anon_sym___forceinline] = ACTIONS(3842), + [anon_sym_thread_local] = ACTIONS(3842), + [anon_sym___thread] = ACTIONS(3842), + [anon_sym_const] = ACTIONS(3842), + [anon_sym_constexpr] = ACTIONS(3842), + [anon_sym_volatile] = ACTIONS(3842), + [anon_sym_restrict] = ACTIONS(3842), + [anon_sym___restrict__] = ACTIONS(3842), + [anon_sym__Atomic] = ACTIONS(3842), + [anon_sym__Noreturn] = ACTIONS(3842), + [anon_sym_noreturn] = ACTIONS(3842), + [anon_sym__Nonnull] = ACTIONS(3842), + [anon_sym_mutable] = ACTIONS(3842), + [anon_sym_constinit] = ACTIONS(3842), + [anon_sym_consteval] = ACTIONS(3842), + [anon_sym_alignas] = ACTIONS(3842), + [anon_sym__Alignas] = ACTIONS(3842), + [sym_primitive_type] = ACTIONS(3842), + [anon_sym_enum] = ACTIONS(3842), + [anon_sym_class] = ACTIONS(3842), + [anon_sym_struct] = ACTIONS(3842), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_if] = ACTIONS(3842), + [anon_sym_switch] = ACTIONS(3842), + [anon_sym_case] = ACTIONS(3842), + [anon_sym_default] = ACTIONS(3842), + [anon_sym_while] = ACTIONS(3842), + [anon_sym_do] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3842), + [anon_sym_return] = ACTIONS(3842), + [anon_sym_break] = ACTIONS(3842), + [anon_sym_continue] = ACTIONS(3842), + [anon_sym_goto] = ACTIONS(3842), + [anon_sym___try] = ACTIONS(3842), + [anon_sym___leave] = ACTIONS(3842), + [anon_sym_not] = ACTIONS(3842), + [anon_sym_compl] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(3842), + [anon_sym___alignof__] = ACTIONS(3842), + [anon_sym___alignof] = ACTIONS(3842), + [anon_sym__alignof] = ACTIONS(3842), + [anon_sym_alignof] = ACTIONS(3842), + [anon_sym__Alignof] = ACTIONS(3842), + [anon_sym_offsetof] = ACTIONS(3842), + [anon_sym__Generic] = ACTIONS(3842), + [anon_sym_typename] = ACTIONS(3842), + [anon_sym_asm] = ACTIONS(3842), + [anon_sym___asm__] = ACTIONS(3842), + [anon_sym___asm] = ACTIONS(3842), + [sym_number_literal] = ACTIONS(3844), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3844), + [anon_sym_u_DQUOTE] = ACTIONS(3844), + [anon_sym_U_DQUOTE] = ACTIONS(3844), + [anon_sym_u8_DQUOTE] = ACTIONS(3844), + [anon_sym_DQUOTE] = ACTIONS(3844), + [sym_true] = ACTIONS(3842), + [sym_false] = ACTIONS(3842), + [anon_sym_NULL] = ACTIONS(3842), + [anon_sym_nullptr] = ACTIONS(3842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3842), + [anon_sym_decltype] = ACTIONS(3842), + [anon_sym_explicit] = ACTIONS(3842), + [anon_sym_export] = ACTIONS(3842), + [anon_sym_module] = ACTIONS(3842), + [anon_sym_import] = ACTIONS(3842), + [anon_sym_template] = ACTIONS(3842), + [anon_sym_operator] = ACTIONS(3842), + [anon_sym_try] = ACTIONS(3842), + [anon_sym_delete] = ACTIONS(3842), + [anon_sym_throw] = ACTIONS(3842), + [anon_sym_namespace] = ACTIONS(3842), + [anon_sym_static_assert] = ACTIONS(3842), + [anon_sym_concept] = ACTIONS(3842), + [anon_sym_co_return] = ACTIONS(3842), + [anon_sym_co_yield] = ACTIONS(3842), + [anon_sym_R_DQUOTE] = ACTIONS(3844), + [anon_sym_LR_DQUOTE] = ACTIONS(3844), + [anon_sym_uR_DQUOTE] = ACTIONS(3844), + [anon_sym_UR_DQUOTE] = ACTIONS(3844), + [anon_sym_u8R_DQUOTE] = ACTIONS(3844), + [anon_sym_co_await] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3842), + [anon_sym_requires] = ACTIONS(3842), + [anon_sym_CARET_CARET] = ACTIONS(3844), + [anon_sym_LBRACK_COLON] = ACTIONS(3844), + [sym_this] = ACTIONS(3842), }, [STATE(766)] = { - [sym_identifier] = ACTIONS(3678), - [aux_sym_preproc_include_token1] = ACTIONS(3678), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), - [sym_preproc_directive] = ACTIONS(3678), - [anon_sym_LPAREN2] = ACTIONS(3680), - [anon_sym_BANG] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_DASH] = ACTIONS(3678), - [anon_sym_PLUS] = ACTIONS(3678), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3678), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym___extension__] = ACTIONS(3678), - [anon_sym_typedef] = ACTIONS(3678), - [anon_sym_virtual] = ACTIONS(3678), - [anon_sym_extern] = ACTIONS(3678), - [anon_sym___attribute__] = ACTIONS(3678), - [anon_sym___attribute] = ACTIONS(3678), - [anon_sym_using] = ACTIONS(3678), - [anon_sym_COLON_COLON] = ACTIONS(3680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), - [anon_sym___declspec] = ACTIONS(3678), - [anon_sym___based] = ACTIONS(3678), - [anon_sym___cdecl] = ACTIONS(3678), - [anon_sym___clrcall] = ACTIONS(3678), - [anon_sym___stdcall] = ACTIONS(3678), - [anon_sym___fastcall] = ACTIONS(3678), - [anon_sym___thiscall] = ACTIONS(3678), - [anon_sym___vectorcall] = ACTIONS(3678), - [anon_sym_LBRACE] = ACTIONS(3680), - [anon_sym_RBRACE] = ACTIONS(3680), - [anon_sym_signed] = ACTIONS(3678), - [anon_sym_unsigned] = ACTIONS(3678), - [anon_sym_long] = ACTIONS(3678), - [anon_sym_short] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_register] = ACTIONS(3678), - [anon_sym_inline] = ACTIONS(3678), - [anon_sym___inline] = ACTIONS(3678), - [anon_sym___inline__] = ACTIONS(3678), - [anon_sym___forceinline] = ACTIONS(3678), - [anon_sym_thread_local] = ACTIONS(3678), - [anon_sym___thread] = ACTIONS(3678), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_constexpr] = ACTIONS(3678), - [anon_sym_volatile] = ACTIONS(3678), - [anon_sym_restrict] = ACTIONS(3678), - [anon_sym___restrict__] = ACTIONS(3678), - [anon_sym__Atomic] = ACTIONS(3678), - [anon_sym__Noreturn] = ACTIONS(3678), - [anon_sym_noreturn] = ACTIONS(3678), - [anon_sym__Nonnull] = ACTIONS(3678), - [anon_sym_mutable] = ACTIONS(3678), - [anon_sym_constinit] = ACTIONS(3678), - [anon_sym_consteval] = ACTIONS(3678), - [anon_sym_alignas] = ACTIONS(3678), - [anon_sym__Alignas] = ACTIONS(3678), - [sym_primitive_type] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_struct] = ACTIONS(3678), - [anon_sym_union] = ACTIONS(3678), - [anon_sym_if] = ACTIONS(3678), - [anon_sym_else] = ACTIONS(3678), - [anon_sym_switch] = ACTIONS(3678), - [anon_sym_case] = ACTIONS(3678), - [anon_sym_default] = ACTIONS(3678), - [anon_sym_while] = ACTIONS(3678), - [anon_sym_do] = ACTIONS(3678), - [anon_sym_for] = ACTIONS(3678), - [anon_sym_return] = ACTIONS(3678), - [anon_sym_break] = ACTIONS(3678), - [anon_sym_continue] = ACTIONS(3678), - [anon_sym_goto] = ACTIONS(3678), - [anon_sym___try] = ACTIONS(3678), - [anon_sym___leave] = ACTIONS(3678), - [anon_sym_not] = ACTIONS(3678), - [anon_sym_compl] = ACTIONS(3678), - [anon_sym_DASH_DASH] = ACTIONS(3680), - [anon_sym_PLUS_PLUS] = ACTIONS(3680), - [anon_sym_sizeof] = ACTIONS(3678), - [anon_sym___alignof__] = ACTIONS(3678), - [anon_sym___alignof] = ACTIONS(3678), - [anon_sym__alignof] = ACTIONS(3678), - [anon_sym_alignof] = ACTIONS(3678), - [anon_sym__Alignof] = ACTIONS(3678), - [anon_sym_offsetof] = ACTIONS(3678), - [anon_sym__Generic] = ACTIONS(3678), - [anon_sym_typename] = ACTIONS(3678), - [anon_sym_asm] = ACTIONS(3678), - [anon_sym___asm__] = ACTIONS(3678), - [anon_sym___asm] = ACTIONS(3678), - [sym_number_literal] = ACTIONS(3680), - [anon_sym_L_SQUOTE] = ACTIONS(3680), - [anon_sym_u_SQUOTE] = ACTIONS(3680), - [anon_sym_U_SQUOTE] = ACTIONS(3680), - [anon_sym_u8_SQUOTE] = ACTIONS(3680), - [anon_sym_SQUOTE] = ACTIONS(3680), - [anon_sym_L_DQUOTE] = ACTIONS(3680), - [anon_sym_u_DQUOTE] = ACTIONS(3680), - [anon_sym_U_DQUOTE] = ACTIONS(3680), - [anon_sym_u8_DQUOTE] = ACTIONS(3680), - [anon_sym_DQUOTE] = ACTIONS(3680), - [sym_true] = ACTIONS(3678), - [sym_false] = ACTIONS(3678), - [anon_sym_NULL] = ACTIONS(3678), - [anon_sym_nullptr] = ACTIONS(3678), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3678), - [anon_sym_decltype] = ACTIONS(3678), - [anon_sym_explicit] = ACTIONS(3678), - [anon_sym_export] = ACTIONS(3678), - [anon_sym_import] = ACTIONS(3678), - [anon_sym_template] = ACTIONS(3678), - [anon_sym_operator] = ACTIONS(3678), - [anon_sym_try] = ACTIONS(3678), - [anon_sym_delete] = ACTIONS(3678), - [anon_sym_throw] = ACTIONS(3678), - [anon_sym_namespace] = ACTIONS(3678), - [anon_sym_static_assert] = ACTIONS(3678), - [anon_sym_concept] = ACTIONS(3678), - [anon_sym_co_return] = ACTIONS(3678), - [anon_sym_co_yield] = ACTIONS(3678), - [anon_sym_R_DQUOTE] = ACTIONS(3680), - [anon_sym_LR_DQUOTE] = ACTIONS(3680), - [anon_sym_uR_DQUOTE] = ACTIONS(3680), - [anon_sym_UR_DQUOTE] = ACTIONS(3680), - [anon_sym_u8R_DQUOTE] = ACTIONS(3680), - [anon_sym_co_await] = ACTIONS(3678), - [anon_sym_new] = ACTIONS(3678), - [anon_sym_requires] = ACTIONS(3678), - [anon_sym_CARET_CARET] = ACTIONS(3680), - [anon_sym_LBRACK_COLON] = ACTIONS(3680), - [sym_this] = ACTIONS(3678), + [sym_identifier] = ACTIONS(3822), + [aux_sym_preproc_include_token1] = ACTIONS(3822), + [aux_sym_preproc_def_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token2] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3822), + [sym_preproc_directive] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3824), + [anon_sym___extension__] = ACTIONS(3822), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_virtual] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym___attribute__] = ACTIONS(3822), + [anon_sym___attribute] = ACTIONS(3822), + [anon_sym_using] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3824), + [anon_sym___declspec] = ACTIONS(3822), + [anon_sym___based] = ACTIONS(3822), + [anon_sym___cdecl] = ACTIONS(3822), + [anon_sym___clrcall] = ACTIONS(3822), + [anon_sym___stdcall] = ACTIONS(3822), + [anon_sym___fastcall] = ACTIONS(3822), + [anon_sym___thiscall] = ACTIONS(3822), + [anon_sym___vectorcall] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3824), + [anon_sym_signed] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3822), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_inline] = ACTIONS(3822), + [anon_sym___inline] = ACTIONS(3822), + [anon_sym___inline__] = ACTIONS(3822), + [anon_sym___forceinline] = ACTIONS(3822), + [anon_sym_thread_local] = ACTIONS(3822), + [anon_sym___thread] = ACTIONS(3822), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_constexpr] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym___restrict__] = ACTIONS(3822), + [anon_sym__Atomic] = ACTIONS(3822), + [anon_sym__Noreturn] = ACTIONS(3822), + [anon_sym_noreturn] = ACTIONS(3822), + [anon_sym__Nonnull] = ACTIONS(3822), + [anon_sym_mutable] = ACTIONS(3822), + [anon_sym_constinit] = ACTIONS(3822), + [anon_sym_consteval] = ACTIONS(3822), + [anon_sym_alignas] = ACTIONS(3822), + [anon_sym__Alignas] = ACTIONS(3822), + [sym_primitive_type] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_class] = ACTIONS(3822), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_if] = ACTIONS(3822), + [anon_sym_switch] = ACTIONS(3822), + [anon_sym_case] = ACTIONS(3822), + [anon_sym_default] = ACTIONS(3822), + [anon_sym_while] = ACTIONS(3822), + [anon_sym_do] = ACTIONS(3822), + [anon_sym_for] = ACTIONS(3822), + [anon_sym_return] = ACTIONS(3822), + [anon_sym_break] = ACTIONS(3822), + [anon_sym_continue] = ACTIONS(3822), + [anon_sym_goto] = ACTIONS(3822), + [anon_sym___try] = ACTIONS(3822), + [anon_sym___leave] = ACTIONS(3822), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(3824), + [anon_sym_PLUS_PLUS] = ACTIONS(3824), + [anon_sym_sizeof] = ACTIONS(3822), + [anon_sym___alignof__] = ACTIONS(3822), + [anon_sym___alignof] = ACTIONS(3822), + [anon_sym__alignof] = ACTIONS(3822), + [anon_sym_alignof] = ACTIONS(3822), + [anon_sym__Alignof] = ACTIONS(3822), + [anon_sym_offsetof] = ACTIONS(3822), + [anon_sym__Generic] = ACTIONS(3822), + [anon_sym_typename] = ACTIONS(3822), + [anon_sym_asm] = ACTIONS(3822), + [anon_sym___asm__] = ACTIONS(3822), + [anon_sym___asm] = ACTIONS(3822), + [sym_number_literal] = ACTIONS(3824), + [anon_sym_L_SQUOTE] = ACTIONS(3824), + [anon_sym_u_SQUOTE] = ACTIONS(3824), + [anon_sym_U_SQUOTE] = ACTIONS(3824), + [anon_sym_u8_SQUOTE] = ACTIONS(3824), + [anon_sym_SQUOTE] = ACTIONS(3824), + [anon_sym_L_DQUOTE] = ACTIONS(3824), + [anon_sym_u_DQUOTE] = ACTIONS(3824), + [anon_sym_U_DQUOTE] = ACTIONS(3824), + [anon_sym_u8_DQUOTE] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(3824), + [sym_true] = ACTIONS(3822), + [sym_false] = ACTIONS(3822), + [anon_sym_NULL] = ACTIONS(3822), + [anon_sym_nullptr] = ACTIONS(3822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3822), + [anon_sym_decltype] = ACTIONS(3822), + [anon_sym_explicit] = ACTIONS(3822), + [anon_sym_export] = ACTIONS(3822), + [anon_sym_module] = ACTIONS(3822), + [anon_sym_import] = ACTIONS(3822), + [anon_sym_template] = ACTIONS(3822), + [anon_sym_operator] = ACTIONS(3822), + [anon_sym_try] = ACTIONS(3822), + [anon_sym_delete] = ACTIONS(3822), + [anon_sym_throw] = ACTIONS(3822), + [anon_sym_namespace] = ACTIONS(3822), + [anon_sym_static_assert] = ACTIONS(3822), + [anon_sym_concept] = ACTIONS(3822), + [anon_sym_co_return] = ACTIONS(3822), + [anon_sym_co_yield] = ACTIONS(3822), + [anon_sym_R_DQUOTE] = ACTIONS(3824), + [anon_sym_LR_DQUOTE] = ACTIONS(3824), + [anon_sym_uR_DQUOTE] = ACTIONS(3824), + [anon_sym_UR_DQUOTE] = ACTIONS(3824), + [anon_sym_u8R_DQUOTE] = ACTIONS(3824), + [anon_sym_co_await] = ACTIONS(3822), + [anon_sym_new] = ACTIONS(3822), + [anon_sym_requires] = ACTIONS(3822), + [anon_sym_CARET_CARET] = ACTIONS(3824), + [anon_sym_LBRACK_COLON] = ACTIONS(3824), + [sym_this] = ACTIONS(3822), }, [STATE(767)] = { - [sym_expression] = STATE(5919), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(5986), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2386), - [anon_sym_GT_GT] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_LBRACK] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [anon_sym_COLON_RBRACK] = ACTIONS(2386), - [sym_this] = ACTIONS(237), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_include_token1] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym___try] = ACTIONS(3168), + [anon_sym___leave] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [anon_sym___asm] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_CARET_CARET] = ACTIONS(3166), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + [sym_this] = ACTIONS(3168), }, [STATE(768)] = { - [sym_identifier] = ACTIONS(3384), - [aux_sym_preproc_include_token1] = ACTIONS(3384), - [aux_sym_preproc_def_token1] = ACTIONS(3384), - [aux_sym_preproc_if_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3384), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3384), - [sym_preproc_directive] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym___attribute] = ACTIONS(3384), - [anon_sym_using] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym___based] = ACTIONS(3384), - [anon_sym___cdecl] = ACTIONS(3384), - [anon_sym___clrcall] = ACTIONS(3384), - [anon_sym___stdcall] = ACTIONS(3384), - [anon_sym___fastcall] = ACTIONS(3384), - [anon_sym___thiscall] = ACTIONS(3384), - [anon_sym___vectorcall] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym__Nonnull] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym__Alignas] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_else] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym___try] = ACTIONS(3384), - [anon_sym___leave] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [anon_sym___asm] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3389), - [anon_sym_L_SQUOTE] = ACTIONS(3389), - [anon_sym_u_SQUOTE] = ACTIONS(3389), - [anon_sym_U_SQUOTE] = ACTIONS(3389), - [anon_sym_u8_SQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_L_DQUOTE] = ACTIONS(3389), - [anon_sym_u_DQUOTE] = ACTIONS(3389), - [anon_sym_U_DQUOTE] = ACTIONS(3389), - [anon_sym_u8_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_explicit] = ACTIONS(3384), - [anon_sym_export] = ACTIONS(3384), - [anon_sym_import] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_operator] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_static_assert] = ACTIONS(3384), - [anon_sym_concept] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3389), - [anon_sym_LR_DQUOTE] = ACTIONS(3389), - [anon_sym_uR_DQUOTE] = ACTIONS(3389), - [anon_sym_UR_DQUOTE] = ACTIONS(3389), - [anon_sym_u8R_DQUOTE] = ACTIONS(3389), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [anon_sym_CARET_CARET] = ACTIONS(3389), - [anon_sym_LBRACK_COLON] = ACTIONS(3389), - [sym_this] = ACTIONS(3384), + [sym_identifier] = ACTIONS(4102), + [aux_sym_preproc_include_token1] = ACTIONS(4102), + [aux_sym_preproc_def_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token2] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4102), + [sym_preproc_directive] = ACTIONS(4102), + [anon_sym_LPAREN2] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_TILDE] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym___extension__] = ACTIONS(4102), + [anon_sym_typedef] = ACTIONS(4102), + [anon_sym_virtual] = ACTIONS(4102), + [anon_sym_extern] = ACTIONS(4102), + [anon_sym___attribute__] = ACTIONS(4102), + [anon_sym___attribute] = ACTIONS(4102), + [anon_sym_using] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4104), + [anon_sym___declspec] = ACTIONS(4102), + [anon_sym___based] = ACTIONS(4102), + [anon_sym___cdecl] = ACTIONS(4102), + [anon_sym___clrcall] = ACTIONS(4102), + [anon_sym___stdcall] = ACTIONS(4102), + [anon_sym___fastcall] = ACTIONS(4102), + [anon_sym___thiscall] = ACTIONS(4102), + [anon_sym___vectorcall] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_signed] = ACTIONS(4102), + [anon_sym_unsigned] = ACTIONS(4102), + [anon_sym_long] = ACTIONS(4102), + [anon_sym_short] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_static] = ACTIONS(4102), + [anon_sym_register] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym___inline] = ACTIONS(4102), + [anon_sym___inline__] = ACTIONS(4102), + [anon_sym___forceinline] = ACTIONS(4102), + [anon_sym_thread_local] = ACTIONS(4102), + [anon_sym___thread] = ACTIONS(4102), + [anon_sym_const] = ACTIONS(4102), + [anon_sym_constexpr] = ACTIONS(4102), + [anon_sym_volatile] = ACTIONS(4102), + [anon_sym_restrict] = ACTIONS(4102), + [anon_sym___restrict__] = ACTIONS(4102), + [anon_sym__Atomic] = ACTIONS(4102), + [anon_sym__Noreturn] = ACTIONS(4102), + [anon_sym_noreturn] = ACTIONS(4102), + [anon_sym__Nonnull] = ACTIONS(4102), + [anon_sym_mutable] = ACTIONS(4102), + [anon_sym_constinit] = ACTIONS(4102), + [anon_sym_consteval] = ACTIONS(4102), + [anon_sym_alignas] = ACTIONS(4102), + [anon_sym__Alignas] = ACTIONS(4102), + [sym_primitive_type] = ACTIONS(4102), + [anon_sym_enum] = ACTIONS(4102), + [anon_sym_class] = ACTIONS(4102), + [anon_sym_struct] = ACTIONS(4102), + [anon_sym_union] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_switch] = ACTIONS(4102), + [anon_sym_case] = ACTIONS(4102), + [anon_sym_default] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_do] = ACTIONS(4102), + [anon_sym_for] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_goto] = ACTIONS(4102), + [anon_sym___try] = ACTIONS(4102), + [anon_sym___leave] = ACTIONS(4102), + [anon_sym_not] = ACTIONS(4102), + [anon_sym_compl] = ACTIONS(4102), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_sizeof] = ACTIONS(4102), + [anon_sym___alignof__] = ACTIONS(4102), + [anon_sym___alignof] = ACTIONS(4102), + [anon_sym__alignof] = ACTIONS(4102), + [anon_sym_alignof] = ACTIONS(4102), + [anon_sym__Alignof] = ACTIONS(4102), + [anon_sym_offsetof] = ACTIONS(4102), + [anon_sym__Generic] = ACTIONS(4102), + [anon_sym_typename] = ACTIONS(4102), + [anon_sym_asm] = ACTIONS(4102), + [anon_sym___asm__] = ACTIONS(4102), + [anon_sym___asm] = ACTIONS(4102), + [sym_number_literal] = ACTIONS(4104), + [anon_sym_L_SQUOTE] = ACTIONS(4104), + [anon_sym_u_SQUOTE] = ACTIONS(4104), + [anon_sym_U_SQUOTE] = ACTIONS(4104), + [anon_sym_u8_SQUOTE] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4104), + [anon_sym_L_DQUOTE] = ACTIONS(4104), + [anon_sym_u_DQUOTE] = ACTIONS(4104), + [anon_sym_U_DQUOTE] = ACTIONS(4104), + [anon_sym_u8_DQUOTE] = ACTIONS(4104), + [anon_sym_DQUOTE] = ACTIONS(4104), + [sym_true] = ACTIONS(4102), + [sym_false] = ACTIONS(4102), + [anon_sym_NULL] = ACTIONS(4102), + [anon_sym_nullptr] = ACTIONS(4102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4102), + [anon_sym_decltype] = ACTIONS(4102), + [anon_sym_explicit] = ACTIONS(4102), + [anon_sym_export] = ACTIONS(4102), + [anon_sym_module] = ACTIONS(4102), + [anon_sym_import] = ACTIONS(4102), + [anon_sym_template] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_delete] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_namespace] = ACTIONS(4102), + [anon_sym_static_assert] = ACTIONS(4102), + [anon_sym_concept] = ACTIONS(4102), + [anon_sym_co_return] = ACTIONS(4102), + [anon_sym_co_yield] = ACTIONS(4102), + [anon_sym_R_DQUOTE] = ACTIONS(4104), + [anon_sym_LR_DQUOTE] = ACTIONS(4104), + [anon_sym_uR_DQUOTE] = ACTIONS(4104), + [anon_sym_UR_DQUOTE] = ACTIONS(4104), + [anon_sym_u8R_DQUOTE] = ACTIONS(4104), + [anon_sym_co_await] = ACTIONS(4102), + [anon_sym_new] = ACTIONS(4102), + [anon_sym_requires] = ACTIONS(4102), + [anon_sym_CARET_CARET] = ACTIONS(4104), + [anon_sym_LBRACK_COLON] = ACTIONS(4104), + [sym_this] = ACTIONS(4102), }, [STATE(769)] = { - [sym_identifier] = ACTIONS(3560), - [aux_sym_preproc_include_token1] = ACTIONS(3560), - [aux_sym_preproc_def_token1] = ACTIONS(3560), - [aux_sym_preproc_if_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3560), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3560), - [sym_preproc_directive] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP_AMP] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym___attribute] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym___based] = ACTIONS(3560), - [anon_sym___cdecl] = ACTIONS(3560), - [anon_sym___clrcall] = ACTIONS(3560), - [anon_sym___stdcall] = ACTIONS(3560), - [anon_sym___fastcall] = ACTIONS(3560), - [anon_sym___thiscall] = ACTIONS(3560), - [anon_sym___vectorcall] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_RBRACE] = ACTIONS(3562), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym__Nonnull] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym__Alignas] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_else] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_case] = ACTIONS(3560), - [anon_sym_default] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym___try] = ACTIONS(3560), - [anon_sym___leave] = ACTIONS(3560), - [anon_sym_not] = ACTIONS(3560), - [anon_sym_compl] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym___alignof__] = ACTIONS(3560), - [anon_sym___alignof] = ACTIONS(3560), - [anon_sym__alignof] = ACTIONS(3560), - [anon_sym_alignof] = ACTIONS(3560), - [anon_sym__Alignof] = ACTIONS(3560), - [anon_sym_offsetof] = ACTIONS(3560), - [anon_sym__Generic] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_asm] = ACTIONS(3560), - [anon_sym___asm__] = ACTIONS(3560), - [anon_sym___asm] = ACTIONS(3560), - [sym_number_literal] = ACTIONS(3562), - [anon_sym_L_SQUOTE] = ACTIONS(3562), - [anon_sym_u_SQUOTE] = ACTIONS(3562), - [anon_sym_U_SQUOTE] = ACTIONS(3562), - [anon_sym_u8_SQUOTE] = ACTIONS(3562), - [anon_sym_SQUOTE] = ACTIONS(3562), - [anon_sym_L_DQUOTE] = ACTIONS(3562), - [anon_sym_u_DQUOTE] = ACTIONS(3562), - [anon_sym_U_DQUOTE] = ACTIONS(3562), - [anon_sym_u8_DQUOTE] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [anon_sym_NULL] = ACTIONS(3560), - [anon_sym_nullptr] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_export] = ACTIONS(3560), - [anon_sym_import] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_operator] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_namespace] = ACTIONS(3560), - [anon_sym_static_assert] = ACTIONS(3560), - [anon_sym_concept] = ACTIONS(3560), - [anon_sym_co_return] = ACTIONS(3560), - [anon_sym_co_yield] = ACTIONS(3560), - [anon_sym_R_DQUOTE] = ACTIONS(3562), - [anon_sym_LR_DQUOTE] = ACTIONS(3562), - [anon_sym_uR_DQUOTE] = ACTIONS(3562), - [anon_sym_UR_DQUOTE] = ACTIONS(3562), - [anon_sym_u8R_DQUOTE] = ACTIONS(3562), - [anon_sym_co_await] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_requires] = ACTIONS(3560), - [anon_sym_CARET_CARET] = ACTIONS(3562), - [anon_sym_LBRACK_COLON] = ACTIONS(3562), - [sym_this] = ACTIONS(3560), + [sym_identifier] = ACTIONS(3858), + [aux_sym_preproc_include_token1] = ACTIONS(3858), + [aux_sym_preproc_def_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token2] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3858), + [sym_preproc_directive] = ACTIONS(3858), + [anon_sym_LPAREN2] = ACTIONS(3860), + [anon_sym_BANG] = ACTIONS(3860), + [anon_sym_TILDE] = ACTIONS(3860), + [anon_sym_DASH] = ACTIONS(3858), + [anon_sym_PLUS] = ACTIONS(3858), + [anon_sym_STAR] = ACTIONS(3860), + [anon_sym_AMP_AMP] = ACTIONS(3860), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym___extension__] = ACTIONS(3858), + [anon_sym_typedef] = ACTIONS(3858), + [anon_sym_virtual] = ACTIONS(3858), + [anon_sym_extern] = ACTIONS(3858), + [anon_sym___attribute__] = ACTIONS(3858), + [anon_sym___attribute] = ACTIONS(3858), + [anon_sym_using] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3860), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), + [anon_sym___declspec] = ACTIONS(3858), + [anon_sym___based] = ACTIONS(3858), + [anon_sym___cdecl] = ACTIONS(3858), + [anon_sym___clrcall] = ACTIONS(3858), + [anon_sym___stdcall] = ACTIONS(3858), + [anon_sym___fastcall] = ACTIONS(3858), + [anon_sym___thiscall] = ACTIONS(3858), + [anon_sym___vectorcall] = ACTIONS(3858), + [anon_sym_LBRACE] = ACTIONS(3860), + [anon_sym_signed] = ACTIONS(3858), + [anon_sym_unsigned] = ACTIONS(3858), + [anon_sym_long] = ACTIONS(3858), + [anon_sym_short] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3858), + [anon_sym_static] = ACTIONS(3858), + [anon_sym_register] = ACTIONS(3858), + [anon_sym_inline] = ACTIONS(3858), + [anon_sym___inline] = ACTIONS(3858), + [anon_sym___inline__] = ACTIONS(3858), + [anon_sym___forceinline] = ACTIONS(3858), + [anon_sym_thread_local] = ACTIONS(3858), + [anon_sym___thread] = ACTIONS(3858), + [anon_sym_const] = ACTIONS(3858), + [anon_sym_constexpr] = ACTIONS(3858), + [anon_sym_volatile] = ACTIONS(3858), + [anon_sym_restrict] = ACTIONS(3858), + [anon_sym___restrict__] = ACTIONS(3858), + [anon_sym__Atomic] = ACTIONS(3858), + [anon_sym__Noreturn] = ACTIONS(3858), + [anon_sym_noreturn] = ACTIONS(3858), + [anon_sym__Nonnull] = ACTIONS(3858), + [anon_sym_mutable] = ACTIONS(3858), + [anon_sym_constinit] = ACTIONS(3858), + [anon_sym_consteval] = ACTIONS(3858), + [anon_sym_alignas] = ACTIONS(3858), + [anon_sym__Alignas] = ACTIONS(3858), + [sym_primitive_type] = ACTIONS(3858), + [anon_sym_enum] = ACTIONS(3858), + [anon_sym_class] = ACTIONS(3858), + [anon_sym_struct] = ACTIONS(3858), + [anon_sym_union] = ACTIONS(3858), + [anon_sym_if] = ACTIONS(3858), + [anon_sym_switch] = ACTIONS(3858), + [anon_sym_case] = ACTIONS(3858), + [anon_sym_default] = ACTIONS(3858), + [anon_sym_while] = ACTIONS(3858), + [anon_sym_do] = ACTIONS(3858), + [anon_sym_for] = ACTIONS(3858), + [anon_sym_return] = ACTIONS(3858), + [anon_sym_break] = ACTIONS(3858), + [anon_sym_continue] = ACTIONS(3858), + [anon_sym_goto] = ACTIONS(3858), + [anon_sym___try] = ACTIONS(3858), + [anon_sym___leave] = ACTIONS(3858), + [anon_sym_not] = ACTIONS(3858), + [anon_sym_compl] = ACTIONS(3858), + [anon_sym_DASH_DASH] = ACTIONS(3860), + [anon_sym_PLUS_PLUS] = ACTIONS(3860), + [anon_sym_sizeof] = ACTIONS(3858), + [anon_sym___alignof__] = ACTIONS(3858), + [anon_sym___alignof] = ACTIONS(3858), + [anon_sym__alignof] = ACTIONS(3858), + [anon_sym_alignof] = ACTIONS(3858), + [anon_sym__Alignof] = ACTIONS(3858), + [anon_sym_offsetof] = ACTIONS(3858), + [anon_sym__Generic] = ACTIONS(3858), + [anon_sym_typename] = ACTIONS(3858), + [anon_sym_asm] = ACTIONS(3858), + [anon_sym___asm__] = ACTIONS(3858), + [anon_sym___asm] = ACTIONS(3858), + [sym_number_literal] = ACTIONS(3860), + [anon_sym_L_SQUOTE] = ACTIONS(3860), + [anon_sym_u_SQUOTE] = ACTIONS(3860), + [anon_sym_U_SQUOTE] = ACTIONS(3860), + [anon_sym_u8_SQUOTE] = ACTIONS(3860), + [anon_sym_SQUOTE] = ACTIONS(3860), + [anon_sym_L_DQUOTE] = ACTIONS(3860), + [anon_sym_u_DQUOTE] = ACTIONS(3860), + [anon_sym_U_DQUOTE] = ACTIONS(3860), + [anon_sym_u8_DQUOTE] = ACTIONS(3860), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym_true] = ACTIONS(3858), + [sym_false] = ACTIONS(3858), + [anon_sym_NULL] = ACTIONS(3858), + [anon_sym_nullptr] = ACTIONS(3858), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3858), + [anon_sym_decltype] = ACTIONS(3858), + [anon_sym_explicit] = ACTIONS(3858), + [anon_sym_export] = ACTIONS(3858), + [anon_sym_module] = ACTIONS(3858), + [anon_sym_import] = ACTIONS(3858), + [anon_sym_template] = ACTIONS(3858), + [anon_sym_operator] = ACTIONS(3858), + [anon_sym_try] = ACTIONS(3858), + [anon_sym_delete] = ACTIONS(3858), + [anon_sym_throw] = ACTIONS(3858), + [anon_sym_namespace] = ACTIONS(3858), + [anon_sym_static_assert] = ACTIONS(3858), + [anon_sym_concept] = ACTIONS(3858), + [anon_sym_co_return] = ACTIONS(3858), + [anon_sym_co_yield] = ACTIONS(3858), + [anon_sym_R_DQUOTE] = ACTIONS(3860), + [anon_sym_LR_DQUOTE] = ACTIONS(3860), + [anon_sym_uR_DQUOTE] = ACTIONS(3860), + [anon_sym_UR_DQUOTE] = ACTIONS(3860), + [anon_sym_u8R_DQUOTE] = ACTIONS(3860), + [anon_sym_co_await] = ACTIONS(3858), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3858), + [anon_sym_CARET_CARET] = ACTIONS(3860), + [anon_sym_LBRACK_COLON] = ACTIONS(3860), + [sym_this] = ACTIONS(3858), }, [STATE(770)] = { - [sym_identifier] = ACTIONS(3310), - [aux_sym_preproc_include_token1] = ACTIONS(3310), - [aux_sym_preproc_def_token1] = ACTIONS(3310), - [aux_sym_preproc_if_token1] = ACTIONS(3310), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3310), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3310), - [sym_preproc_directive] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3310), - [anon_sym_PLUS] = ACTIONS(3310), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3310), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym___extension__] = ACTIONS(3310), - [anon_sym_typedef] = ACTIONS(3310), - [anon_sym_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_using] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), - [anon_sym___declspec] = ACTIONS(3310), - [anon_sym___based] = ACTIONS(3310), - [anon_sym___cdecl] = ACTIONS(3310), - [anon_sym___clrcall] = ACTIONS(3310), - [anon_sym___stdcall] = ACTIONS(3310), - [anon_sym___fastcall] = ACTIONS(3310), - [anon_sym___thiscall] = ACTIONS(3310), - [anon_sym___vectorcall] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_signed] = ACTIONS(3310), - [anon_sym_unsigned] = ACTIONS(3310), - [anon_sym_long] = ACTIONS(3310), - [anon_sym_short] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3310), - [anon_sym_register] = ACTIONS(3310), - [anon_sym_inline] = ACTIONS(3310), - [anon_sym___inline] = ACTIONS(3310), - [anon_sym___inline__] = ACTIONS(3310), - [anon_sym___forceinline] = ACTIONS(3310), - [anon_sym_thread_local] = ACTIONS(3310), - [anon_sym___thread] = ACTIONS(3310), - [anon_sym_const] = ACTIONS(3310), - [anon_sym_constexpr] = ACTIONS(3310), - [anon_sym_volatile] = ACTIONS(3310), - [anon_sym_restrict] = ACTIONS(3310), - [anon_sym___restrict__] = ACTIONS(3310), - [anon_sym__Atomic] = ACTIONS(3310), - [anon_sym__Noreturn] = ACTIONS(3310), - [anon_sym_noreturn] = ACTIONS(3310), - [anon_sym__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_else] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3310), - [anon_sym_case] = ACTIONS(3310), - [anon_sym_default] = ACTIONS(3310), - [anon_sym_while] = ACTIONS(3310), - [anon_sym_do] = ACTIONS(3310), - [anon_sym_for] = ACTIONS(3310), - [anon_sym_return] = ACTIONS(3310), - [anon_sym_break] = ACTIONS(3310), - [anon_sym_continue] = ACTIONS(3310), - [anon_sym_goto] = ACTIONS(3310), - [anon_sym___try] = ACTIONS(3310), - [anon_sym___leave] = ACTIONS(3310), - [anon_sym_not] = ACTIONS(3310), - [anon_sym_compl] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_sizeof] = ACTIONS(3310), - [anon_sym___alignof__] = ACTIONS(3310), - [anon_sym___alignof] = ACTIONS(3310), - [anon_sym__alignof] = ACTIONS(3310), - [anon_sym_alignof] = ACTIONS(3310), - [anon_sym__Alignof] = ACTIONS(3310), - [anon_sym_offsetof] = ACTIONS(3310), - [anon_sym__Generic] = ACTIONS(3310), - [anon_sym_typename] = ACTIONS(3310), - [anon_sym_asm] = ACTIONS(3310), - [anon_sym___asm__] = ACTIONS(3310), - [anon_sym___asm] = ACTIONS(3310), - [sym_number_literal] = ACTIONS(3315), - [anon_sym_L_SQUOTE] = ACTIONS(3315), - [anon_sym_u_SQUOTE] = ACTIONS(3315), - [anon_sym_U_SQUOTE] = ACTIONS(3315), - [anon_sym_u8_SQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_L_DQUOTE] = ACTIONS(3315), - [anon_sym_u_DQUOTE] = ACTIONS(3315), - [anon_sym_U_DQUOTE] = ACTIONS(3315), - [anon_sym_u8_DQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [anon_sym_NULL] = ACTIONS(3310), - [anon_sym_nullptr] = ACTIONS(3310), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3310), - [anon_sym_decltype] = ACTIONS(3310), - [anon_sym_explicit] = ACTIONS(3310), - [anon_sym_export] = ACTIONS(3310), - [anon_sym_import] = ACTIONS(3310), - [anon_sym_template] = ACTIONS(3310), - [anon_sym_operator] = ACTIONS(3310), - [anon_sym_try] = ACTIONS(3310), - [anon_sym_delete] = ACTIONS(3310), - [anon_sym_throw] = ACTIONS(3310), - [anon_sym_namespace] = ACTIONS(3310), - [anon_sym_static_assert] = ACTIONS(3310), - [anon_sym_concept] = ACTIONS(3310), - [anon_sym_co_return] = ACTIONS(3310), - [anon_sym_co_yield] = ACTIONS(3310), - [anon_sym_R_DQUOTE] = ACTIONS(3315), - [anon_sym_LR_DQUOTE] = ACTIONS(3315), - [anon_sym_uR_DQUOTE] = ACTIONS(3315), - [anon_sym_UR_DQUOTE] = ACTIONS(3315), - [anon_sym_u8R_DQUOTE] = ACTIONS(3315), - [anon_sym_co_await] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3310), - [anon_sym_requires] = ACTIONS(3310), - [anon_sym_CARET_CARET] = ACTIONS(3315), - [anon_sym_LBRACK_COLON] = ACTIONS(3315), - [sym_this] = ACTIONS(3310), + [sym_identifier] = ACTIONS(3862), + [aux_sym_preproc_include_token1] = ACTIONS(3862), + [aux_sym_preproc_def_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token2] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3862), + [sym_preproc_directive] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(3864), + [anon_sym_BANG] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3864), + [anon_sym_DASH] = ACTIONS(3862), + [anon_sym_PLUS] = ACTIONS(3862), + [anon_sym_STAR] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym___extension__] = ACTIONS(3862), + [anon_sym_typedef] = ACTIONS(3862), + [anon_sym_virtual] = ACTIONS(3862), + [anon_sym_extern] = ACTIONS(3862), + [anon_sym___attribute__] = ACTIONS(3862), + [anon_sym___attribute] = ACTIONS(3862), + [anon_sym_using] = ACTIONS(3862), + [anon_sym_COLON_COLON] = ACTIONS(3864), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), + [anon_sym___declspec] = ACTIONS(3862), + [anon_sym___based] = ACTIONS(3862), + [anon_sym___cdecl] = ACTIONS(3862), + [anon_sym___clrcall] = ACTIONS(3862), + [anon_sym___stdcall] = ACTIONS(3862), + [anon_sym___fastcall] = ACTIONS(3862), + [anon_sym___thiscall] = ACTIONS(3862), + [anon_sym___vectorcall] = ACTIONS(3862), + [anon_sym_LBRACE] = ACTIONS(3864), + [anon_sym_signed] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3862), + [anon_sym_long] = ACTIONS(3862), + [anon_sym_short] = ACTIONS(3862), + [anon_sym_LBRACK] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3862), + [anon_sym_register] = ACTIONS(3862), + [anon_sym_inline] = ACTIONS(3862), + [anon_sym___inline] = ACTIONS(3862), + [anon_sym___inline__] = ACTIONS(3862), + [anon_sym___forceinline] = ACTIONS(3862), + [anon_sym_thread_local] = ACTIONS(3862), + [anon_sym___thread] = ACTIONS(3862), + [anon_sym_const] = ACTIONS(3862), + [anon_sym_constexpr] = ACTIONS(3862), + [anon_sym_volatile] = ACTIONS(3862), + [anon_sym_restrict] = ACTIONS(3862), + [anon_sym___restrict__] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3862), + [anon_sym__Noreturn] = ACTIONS(3862), + [anon_sym_noreturn] = ACTIONS(3862), + [anon_sym__Nonnull] = ACTIONS(3862), + [anon_sym_mutable] = ACTIONS(3862), + [anon_sym_constinit] = ACTIONS(3862), + [anon_sym_consteval] = ACTIONS(3862), + [anon_sym_alignas] = ACTIONS(3862), + [anon_sym__Alignas] = ACTIONS(3862), + [sym_primitive_type] = ACTIONS(3862), + [anon_sym_enum] = ACTIONS(3862), + [anon_sym_class] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3862), + [anon_sym_union] = ACTIONS(3862), + [anon_sym_if] = ACTIONS(3862), + [anon_sym_switch] = ACTIONS(3862), + [anon_sym_case] = ACTIONS(3862), + [anon_sym_default] = ACTIONS(3862), + [anon_sym_while] = ACTIONS(3862), + [anon_sym_do] = ACTIONS(3862), + [anon_sym_for] = ACTIONS(3862), + [anon_sym_return] = ACTIONS(3862), + [anon_sym_break] = ACTIONS(3862), + [anon_sym_continue] = ACTIONS(3862), + [anon_sym_goto] = ACTIONS(3862), + [anon_sym___try] = ACTIONS(3862), + [anon_sym___leave] = ACTIONS(3862), + [anon_sym_not] = ACTIONS(3862), + [anon_sym_compl] = ACTIONS(3862), + [anon_sym_DASH_DASH] = ACTIONS(3864), + [anon_sym_PLUS_PLUS] = ACTIONS(3864), + [anon_sym_sizeof] = ACTIONS(3862), + [anon_sym___alignof__] = ACTIONS(3862), + [anon_sym___alignof] = ACTIONS(3862), + [anon_sym__alignof] = ACTIONS(3862), + [anon_sym_alignof] = ACTIONS(3862), + [anon_sym__Alignof] = ACTIONS(3862), + [anon_sym_offsetof] = ACTIONS(3862), + [anon_sym__Generic] = ACTIONS(3862), + [anon_sym_typename] = ACTIONS(3862), + [anon_sym_asm] = ACTIONS(3862), + [anon_sym___asm__] = ACTIONS(3862), + [anon_sym___asm] = ACTIONS(3862), + [sym_number_literal] = ACTIONS(3864), + [anon_sym_L_SQUOTE] = ACTIONS(3864), + [anon_sym_u_SQUOTE] = ACTIONS(3864), + [anon_sym_U_SQUOTE] = ACTIONS(3864), + [anon_sym_u8_SQUOTE] = ACTIONS(3864), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_L_DQUOTE] = ACTIONS(3864), + [anon_sym_u_DQUOTE] = ACTIONS(3864), + [anon_sym_U_DQUOTE] = ACTIONS(3864), + [anon_sym_u8_DQUOTE] = ACTIONS(3864), + [anon_sym_DQUOTE] = ACTIONS(3864), + [sym_true] = ACTIONS(3862), + [sym_false] = ACTIONS(3862), + [anon_sym_NULL] = ACTIONS(3862), + [anon_sym_nullptr] = ACTIONS(3862), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3862), + [anon_sym_decltype] = ACTIONS(3862), + [anon_sym_explicit] = ACTIONS(3862), + [anon_sym_export] = ACTIONS(3862), + [anon_sym_module] = ACTIONS(3862), + [anon_sym_import] = ACTIONS(3862), + [anon_sym_template] = ACTIONS(3862), + [anon_sym_operator] = ACTIONS(3862), + [anon_sym_try] = ACTIONS(3862), + [anon_sym_delete] = ACTIONS(3862), + [anon_sym_throw] = ACTIONS(3862), + [anon_sym_namespace] = ACTIONS(3862), + [anon_sym_static_assert] = ACTIONS(3862), + [anon_sym_concept] = ACTIONS(3862), + [anon_sym_co_return] = ACTIONS(3862), + [anon_sym_co_yield] = ACTIONS(3862), + [anon_sym_R_DQUOTE] = ACTIONS(3864), + [anon_sym_LR_DQUOTE] = ACTIONS(3864), + [anon_sym_uR_DQUOTE] = ACTIONS(3864), + [anon_sym_UR_DQUOTE] = ACTIONS(3864), + [anon_sym_u8R_DQUOTE] = ACTIONS(3864), + [anon_sym_co_await] = ACTIONS(3862), + [anon_sym_new] = ACTIONS(3862), + [anon_sym_requires] = ACTIONS(3862), + [anon_sym_CARET_CARET] = ACTIONS(3864), + [anon_sym_LBRACK_COLON] = ACTIONS(3864), + [sym_this] = ACTIONS(3862), }, [STATE(771)] = { - [sym_identifier] = ACTIONS(3634), - [aux_sym_preproc_include_token1] = ACTIONS(3634), - [aux_sym_preproc_def_token1] = ACTIONS(3634), - [aux_sym_preproc_if_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3634), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3634), - [sym_preproc_directive] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3634), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym___attribute] = ACTIONS(3634), - [anon_sym_using] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym___based] = ACTIONS(3634), - [anon_sym___cdecl] = ACTIONS(3634), - [anon_sym___clrcall] = ACTIONS(3634), - [anon_sym___stdcall] = ACTIONS(3634), - [anon_sym___fastcall] = ACTIONS(3634), - [anon_sym___thiscall] = ACTIONS(3634), - [anon_sym___vectorcall] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_RBRACE] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym__Nonnull] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym__Alignas] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_else] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_case] = ACTIONS(3634), - [anon_sym_default] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_goto] = ACTIONS(3634), - [anon_sym___try] = ACTIONS(3634), - [anon_sym___leave] = ACTIONS(3634), - [anon_sym_not] = ACTIONS(3634), - [anon_sym_compl] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3634), - [anon_sym___alignof__] = ACTIONS(3634), - [anon_sym___alignof] = ACTIONS(3634), - [anon_sym__alignof] = ACTIONS(3634), - [anon_sym_alignof] = ACTIONS(3634), - [anon_sym__Alignof] = ACTIONS(3634), - [anon_sym_offsetof] = ACTIONS(3634), - [anon_sym__Generic] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_asm] = ACTIONS(3634), - [anon_sym___asm__] = ACTIONS(3634), - [anon_sym___asm] = ACTIONS(3634), - [sym_number_literal] = ACTIONS(3636), - [anon_sym_L_SQUOTE] = ACTIONS(3636), - [anon_sym_u_SQUOTE] = ACTIONS(3636), - [anon_sym_U_SQUOTE] = ACTIONS(3636), - [anon_sym_u8_SQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_L_DQUOTE] = ACTIONS(3636), - [anon_sym_u_DQUOTE] = ACTIONS(3636), - [anon_sym_U_DQUOTE] = ACTIONS(3636), - [anon_sym_u8_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [anon_sym_NULL] = ACTIONS(3634), - [anon_sym_nullptr] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_explicit] = ACTIONS(3634), - [anon_sym_export] = ACTIONS(3634), - [anon_sym_import] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_operator] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_namespace] = ACTIONS(3634), - [anon_sym_static_assert] = ACTIONS(3634), - [anon_sym_concept] = ACTIONS(3634), - [anon_sym_co_return] = ACTIONS(3634), - [anon_sym_co_yield] = ACTIONS(3634), - [anon_sym_R_DQUOTE] = ACTIONS(3636), - [anon_sym_LR_DQUOTE] = ACTIONS(3636), - [anon_sym_uR_DQUOTE] = ACTIONS(3636), - [anon_sym_UR_DQUOTE] = ACTIONS(3636), - [anon_sym_u8R_DQUOTE] = ACTIONS(3636), - [anon_sym_co_await] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_requires] = ACTIONS(3634), - [anon_sym_CARET_CARET] = ACTIONS(3636), - [anon_sym_LBRACK_COLON] = ACTIONS(3636), - [sym_this] = ACTIONS(3634), + [sym_identifier] = ACTIONS(3869), + [aux_sym_preproc_include_token1] = ACTIONS(3869), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token2] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3869), + [sym_preproc_directive] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_TILDE] = ACTIONS(3871), + [anon_sym_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3869), + [anon_sym_STAR] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym___extension__] = ACTIONS(3869), + [anon_sym_typedef] = ACTIONS(3869), + [anon_sym_virtual] = ACTIONS(3869), + [anon_sym_extern] = ACTIONS(3869), + [anon_sym___attribute__] = ACTIONS(3869), + [anon_sym___attribute] = ACTIONS(3869), + [anon_sym_using] = ACTIONS(3869), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3871), + [anon_sym___declspec] = ACTIONS(3869), + [anon_sym___based] = ACTIONS(3869), + [anon_sym___cdecl] = ACTIONS(3869), + [anon_sym___clrcall] = ACTIONS(3869), + [anon_sym___stdcall] = ACTIONS(3869), + [anon_sym___fastcall] = ACTIONS(3869), + [anon_sym___thiscall] = ACTIONS(3869), + [anon_sym___vectorcall] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_signed] = ACTIONS(3869), + [anon_sym_unsigned] = ACTIONS(3869), + [anon_sym_long] = ACTIONS(3869), + [anon_sym_short] = ACTIONS(3869), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_static] = ACTIONS(3869), + [anon_sym_register] = ACTIONS(3869), + [anon_sym_inline] = ACTIONS(3869), + [anon_sym___inline] = ACTIONS(3869), + [anon_sym___inline__] = ACTIONS(3869), + [anon_sym___forceinline] = ACTIONS(3869), + [anon_sym_thread_local] = ACTIONS(3869), + [anon_sym___thread] = ACTIONS(3869), + [anon_sym_const] = ACTIONS(3869), + [anon_sym_constexpr] = ACTIONS(3869), + [anon_sym_volatile] = ACTIONS(3869), + [anon_sym_restrict] = ACTIONS(3869), + [anon_sym___restrict__] = ACTIONS(3869), + [anon_sym__Atomic] = ACTIONS(3869), + [anon_sym__Noreturn] = ACTIONS(3869), + [anon_sym_noreturn] = ACTIONS(3869), + [anon_sym__Nonnull] = ACTIONS(3869), + [anon_sym_mutable] = ACTIONS(3869), + [anon_sym_constinit] = ACTIONS(3869), + [anon_sym_consteval] = ACTIONS(3869), + [anon_sym_alignas] = ACTIONS(3869), + [anon_sym__Alignas] = ACTIONS(3869), + [sym_primitive_type] = ACTIONS(3869), + [anon_sym_enum] = ACTIONS(3869), + [anon_sym_class] = ACTIONS(3869), + [anon_sym_struct] = ACTIONS(3869), + [anon_sym_union] = ACTIONS(3869), + [anon_sym_if] = ACTIONS(3869), + [anon_sym_switch] = ACTIONS(3869), + [anon_sym_case] = ACTIONS(3869), + [anon_sym_default] = ACTIONS(3869), + [anon_sym_while] = ACTIONS(3869), + [anon_sym_do] = ACTIONS(3869), + [anon_sym_for] = ACTIONS(3869), + [anon_sym_return] = ACTIONS(3869), + [anon_sym_break] = ACTIONS(3869), + [anon_sym_continue] = ACTIONS(3869), + [anon_sym_goto] = ACTIONS(3869), + [anon_sym___try] = ACTIONS(3869), + [anon_sym___leave] = ACTIONS(3869), + [anon_sym_not] = ACTIONS(3869), + [anon_sym_compl] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_sizeof] = ACTIONS(3869), + [anon_sym___alignof__] = ACTIONS(3869), + [anon_sym___alignof] = ACTIONS(3869), + [anon_sym__alignof] = ACTIONS(3869), + [anon_sym_alignof] = ACTIONS(3869), + [anon_sym__Alignof] = ACTIONS(3869), + [anon_sym_offsetof] = ACTIONS(3869), + [anon_sym__Generic] = ACTIONS(3869), + [anon_sym_typename] = ACTIONS(3869), + [anon_sym_asm] = ACTIONS(3869), + [anon_sym___asm__] = ACTIONS(3869), + [anon_sym___asm] = ACTIONS(3869), + [sym_number_literal] = ACTIONS(3871), + [anon_sym_L_SQUOTE] = ACTIONS(3871), + [anon_sym_u_SQUOTE] = ACTIONS(3871), + [anon_sym_U_SQUOTE] = ACTIONS(3871), + [anon_sym_u8_SQUOTE] = ACTIONS(3871), + [anon_sym_SQUOTE] = ACTIONS(3871), + [anon_sym_L_DQUOTE] = ACTIONS(3871), + [anon_sym_u_DQUOTE] = ACTIONS(3871), + [anon_sym_U_DQUOTE] = ACTIONS(3871), + [anon_sym_u8_DQUOTE] = ACTIONS(3871), + [anon_sym_DQUOTE] = ACTIONS(3871), + [sym_true] = ACTIONS(3869), + [sym_false] = ACTIONS(3869), + [anon_sym_NULL] = ACTIONS(3869), + [anon_sym_nullptr] = ACTIONS(3869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3869), + [anon_sym_decltype] = ACTIONS(3869), + [anon_sym_explicit] = ACTIONS(3869), + [anon_sym_export] = ACTIONS(3869), + [anon_sym_module] = ACTIONS(3869), + [anon_sym_import] = ACTIONS(3869), + [anon_sym_template] = ACTIONS(3869), + [anon_sym_operator] = ACTIONS(3869), + [anon_sym_try] = ACTIONS(3869), + [anon_sym_delete] = ACTIONS(3869), + [anon_sym_throw] = ACTIONS(3869), + [anon_sym_namespace] = ACTIONS(3869), + [anon_sym_static_assert] = ACTIONS(3869), + [anon_sym_concept] = ACTIONS(3869), + [anon_sym_co_return] = ACTIONS(3869), + [anon_sym_co_yield] = ACTIONS(3869), + [anon_sym_R_DQUOTE] = ACTIONS(3871), + [anon_sym_LR_DQUOTE] = ACTIONS(3871), + [anon_sym_uR_DQUOTE] = ACTIONS(3871), + [anon_sym_UR_DQUOTE] = ACTIONS(3871), + [anon_sym_u8R_DQUOTE] = ACTIONS(3871), + [anon_sym_co_await] = ACTIONS(3869), + [anon_sym_new] = ACTIONS(3869), + [anon_sym_requires] = ACTIONS(3869), + [anon_sym_CARET_CARET] = ACTIONS(3871), + [anon_sym_LBRACK_COLON] = ACTIONS(3871), + [sym_this] = ACTIONS(3869), }, [STATE(772)] = { - [sym_identifier] = ACTIONS(3520), - [aux_sym_preproc_include_token1] = ACTIONS(3520), - [aux_sym_preproc_def_token1] = ACTIONS(3520), - [aux_sym_preproc_if_token1] = ACTIONS(3520), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3520), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3520), - [sym_preproc_directive] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_AMP_AMP] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym___extension__] = ACTIONS(3520), - [anon_sym_typedef] = ACTIONS(3520), - [anon_sym_virtual] = ACTIONS(3520), - [anon_sym_extern] = ACTIONS(3520), - [anon_sym___attribute__] = ACTIONS(3520), - [anon_sym___attribute] = ACTIONS(3520), - [anon_sym_using] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3522), - [anon_sym___declspec] = ACTIONS(3520), - [anon_sym___based] = ACTIONS(3520), - [anon_sym___cdecl] = ACTIONS(3520), - [anon_sym___clrcall] = ACTIONS(3520), - [anon_sym___stdcall] = ACTIONS(3520), - [anon_sym___fastcall] = ACTIONS(3520), - [anon_sym___thiscall] = ACTIONS(3520), - [anon_sym___vectorcall] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_RBRACE] = ACTIONS(3522), - [anon_sym_signed] = ACTIONS(3520), - [anon_sym_unsigned] = ACTIONS(3520), - [anon_sym_long] = ACTIONS(3520), - [anon_sym_short] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_register] = ACTIONS(3520), - [anon_sym_inline] = ACTIONS(3520), - [anon_sym___inline] = ACTIONS(3520), - [anon_sym___inline__] = ACTIONS(3520), - [anon_sym___forceinline] = ACTIONS(3520), - [anon_sym_thread_local] = ACTIONS(3520), - [anon_sym___thread] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_constexpr] = ACTIONS(3520), - [anon_sym_volatile] = ACTIONS(3520), - [anon_sym_restrict] = ACTIONS(3520), - [anon_sym___restrict__] = ACTIONS(3520), - [anon_sym__Atomic] = ACTIONS(3520), - [anon_sym__Noreturn] = ACTIONS(3520), - [anon_sym_noreturn] = ACTIONS(3520), - [anon_sym__Nonnull] = ACTIONS(3520), - [anon_sym_mutable] = ACTIONS(3520), - [anon_sym_constinit] = ACTIONS(3520), - [anon_sym_consteval] = ACTIONS(3520), - [anon_sym_alignas] = ACTIONS(3520), - [anon_sym__Alignas] = ACTIONS(3520), - [sym_primitive_type] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), - [anon_sym_class] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(3520), - [anon_sym_union] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_else] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_case] = ACTIONS(3520), - [anon_sym_default] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_goto] = ACTIONS(3520), - [anon_sym___try] = ACTIONS(3520), - [anon_sym___leave] = ACTIONS(3520), - [anon_sym_not] = ACTIONS(3520), - [anon_sym_compl] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_sizeof] = ACTIONS(3520), - [anon_sym___alignof__] = ACTIONS(3520), - [anon_sym___alignof] = ACTIONS(3520), - [anon_sym__alignof] = ACTIONS(3520), - [anon_sym_alignof] = ACTIONS(3520), - [anon_sym__Alignof] = ACTIONS(3520), - [anon_sym_offsetof] = ACTIONS(3520), - [anon_sym__Generic] = ACTIONS(3520), - [anon_sym_typename] = ACTIONS(3520), - [anon_sym_asm] = ACTIONS(3520), - [anon_sym___asm__] = ACTIONS(3520), - [anon_sym___asm] = ACTIONS(3520), - [sym_number_literal] = ACTIONS(3522), - [anon_sym_L_SQUOTE] = ACTIONS(3522), - [anon_sym_u_SQUOTE] = ACTIONS(3522), - [anon_sym_U_SQUOTE] = ACTIONS(3522), - [anon_sym_u8_SQUOTE] = ACTIONS(3522), - [anon_sym_SQUOTE] = ACTIONS(3522), - [anon_sym_L_DQUOTE] = ACTIONS(3522), - [anon_sym_u_DQUOTE] = ACTIONS(3522), - [anon_sym_U_DQUOTE] = ACTIONS(3522), - [anon_sym_u8_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [sym_true] = ACTIONS(3520), - [sym_false] = ACTIONS(3520), - [anon_sym_NULL] = ACTIONS(3520), - [anon_sym_nullptr] = ACTIONS(3520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3520), - [anon_sym_decltype] = ACTIONS(3520), - [anon_sym_explicit] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3520), - [anon_sym_import] = ACTIONS(3520), - [anon_sym_template] = ACTIONS(3520), - [anon_sym_operator] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_delete] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_namespace] = ACTIONS(3520), - [anon_sym_static_assert] = ACTIONS(3520), - [anon_sym_concept] = ACTIONS(3520), - [anon_sym_co_return] = ACTIONS(3520), - [anon_sym_co_yield] = ACTIONS(3520), - [anon_sym_R_DQUOTE] = ACTIONS(3522), - [anon_sym_LR_DQUOTE] = ACTIONS(3522), - [anon_sym_uR_DQUOTE] = ACTIONS(3522), - [anon_sym_UR_DQUOTE] = ACTIONS(3522), - [anon_sym_u8R_DQUOTE] = ACTIONS(3522), - [anon_sym_co_await] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_requires] = ACTIONS(3520), - [anon_sym_CARET_CARET] = ACTIONS(3522), - [anon_sym_LBRACK_COLON] = ACTIONS(3522), - [sym_this] = ACTIONS(3520), + [sym_identifier] = ACTIONS(4317), + [aux_sym_preproc_include_token1] = ACTIONS(4317), + [aux_sym_preproc_def_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token2] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4317), + [sym_preproc_directive] = ACTIONS(4317), + [anon_sym_LPAREN2] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4319), + [anon_sym_TILDE] = ACTIONS(4319), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym___extension__] = ACTIONS(4317), + [anon_sym_typedef] = ACTIONS(4317), + [anon_sym_virtual] = ACTIONS(4317), + [anon_sym_extern] = ACTIONS(4317), + [anon_sym___attribute__] = ACTIONS(4317), + [anon_sym___attribute] = ACTIONS(4317), + [anon_sym_using] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4319), + [anon_sym___declspec] = ACTIONS(4317), + [anon_sym___based] = ACTIONS(4317), + [anon_sym___cdecl] = ACTIONS(4317), + [anon_sym___clrcall] = ACTIONS(4317), + [anon_sym___stdcall] = ACTIONS(4317), + [anon_sym___fastcall] = ACTIONS(4317), + [anon_sym___thiscall] = ACTIONS(4317), + [anon_sym___vectorcall] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_signed] = ACTIONS(4317), + [anon_sym_unsigned] = ACTIONS(4317), + [anon_sym_long] = ACTIONS(4317), + [anon_sym_short] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [anon_sym_static] = ACTIONS(4317), + [anon_sym_register] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym___inline] = ACTIONS(4317), + [anon_sym___inline__] = ACTIONS(4317), + [anon_sym___forceinline] = ACTIONS(4317), + [anon_sym_thread_local] = ACTIONS(4317), + [anon_sym___thread] = ACTIONS(4317), + [anon_sym_const] = ACTIONS(4317), + [anon_sym_constexpr] = ACTIONS(4317), + [anon_sym_volatile] = ACTIONS(4317), + [anon_sym_restrict] = ACTIONS(4317), + [anon_sym___restrict__] = ACTIONS(4317), + [anon_sym__Atomic] = ACTIONS(4317), + [anon_sym__Noreturn] = ACTIONS(4317), + [anon_sym_noreturn] = ACTIONS(4317), + [anon_sym__Nonnull] = ACTIONS(4317), + [anon_sym_mutable] = ACTIONS(4317), + [anon_sym_constinit] = ACTIONS(4317), + [anon_sym_consteval] = ACTIONS(4317), + [anon_sym_alignas] = ACTIONS(4317), + [anon_sym__Alignas] = ACTIONS(4317), + [sym_primitive_type] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_class] = ACTIONS(4317), + [anon_sym_struct] = ACTIONS(4317), + [anon_sym_union] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_switch] = ACTIONS(4317), + [anon_sym_case] = ACTIONS(4317), + [anon_sym_default] = ACTIONS(4317), + [anon_sym_while] = ACTIONS(4317), + [anon_sym_do] = ACTIONS(4317), + [anon_sym_for] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_goto] = ACTIONS(4317), + [anon_sym___try] = ACTIONS(4317), + [anon_sym___leave] = ACTIONS(4317), + [anon_sym_not] = ACTIONS(4317), + [anon_sym_compl] = ACTIONS(4317), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_sizeof] = ACTIONS(4317), + [anon_sym___alignof__] = ACTIONS(4317), + [anon_sym___alignof] = ACTIONS(4317), + [anon_sym__alignof] = ACTIONS(4317), + [anon_sym_alignof] = ACTIONS(4317), + [anon_sym__Alignof] = ACTIONS(4317), + [anon_sym_offsetof] = ACTIONS(4317), + [anon_sym__Generic] = ACTIONS(4317), + [anon_sym_typename] = ACTIONS(4317), + [anon_sym_asm] = ACTIONS(4317), + [anon_sym___asm__] = ACTIONS(4317), + [anon_sym___asm] = ACTIONS(4317), + [sym_number_literal] = ACTIONS(4319), + [anon_sym_L_SQUOTE] = ACTIONS(4319), + [anon_sym_u_SQUOTE] = ACTIONS(4319), + [anon_sym_U_SQUOTE] = ACTIONS(4319), + [anon_sym_u8_SQUOTE] = ACTIONS(4319), + [anon_sym_SQUOTE] = ACTIONS(4319), + [anon_sym_L_DQUOTE] = ACTIONS(4319), + [anon_sym_u_DQUOTE] = ACTIONS(4319), + [anon_sym_U_DQUOTE] = ACTIONS(4319), + [anon_sym_u8_DQUOTE] = ACTIONS(4319), + [anon_sym_DQUOTE] = ACTIONS(4319), + [sym_true] = ACTIONS(4317), + [sym_false] = ACTIONS(4317), + [anon_sym_NULL] = ACTIONS(4317), + [anon_sym_nullptr] = ACTIONS(4317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4317), + [anon_sym_decltype] = ACTIONS(4317), + [anon_sym_explicit] = ACTIONS(4317), + [anon_sym_export] = ACTIONS(4317), + [anon_sym_module] = ACTIONS(4317), + [anon_sym_import] = ACTIONS(4317), + [anon_sym_template] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_delete] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_namespace] = ACTIONS(4317), + [anon_sym_static_assert] = ACTIONS(4317), + [anon_sym_concept] = ACTIONS(4317), + [anon_sym_co_return] = ACTIONS(4317), + [anon_sym_co_yield] = ACTIONS(4317), + [anon_sym_R_DQUOTE] = ACTIONS(4319), + [anon_sym_LR_DQUOTE] = ACTIONS(4319), + [anon_sym_uR_DQUOTE] = ACTIONS(4319), + [anon_sym_UR_DQUOTE] = ACTIONS(4319), + [anon_sym_u8R_DQUOTE] = ACTIONS(4319), + [anon_sym_co_await] = ACTIONS(4317), + [anon_sym_new] = ACTIONS(4317), + [anon_sym_requires] = ACTIONS(4317), + [anon_sym_CARET_CARET] = ACTIONS(4319), + [anon_sym_LBRACK_COLON] = ACTIONS(4319), + [sym_this] = ACTIONS(4317), }, [STATE(773)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_include_token1] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym___try] = ACTIONS(3163), - [anon_sym___leave] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3163), - [anon_sym_compl] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = ACTIONS(3163), - [anon_sym___asm] = ACTIONS(3163), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [anon_sym_CARET_CARET] = ACTIONS(3161), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - [sym_this] = ACTIONS(3163), + [sym_identifier] = ACTIONS(3514), + [aux_sym_preproc_include_token1] = ACTIONS(3514), + [aux_sym_preproc_def_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token1] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3514), + [sym_preproc_directive] = ACTIONS(3514), + [anon_sym_LPAREN2] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym___extension__] = ACTIONS(3514), + [anon_sym_typedef] = ACTIONS(3514), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3514), + [anon_sym___attribute__] = ACTIONS(3514), + [anon_sym___attribute] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_COLON_COLON] = ACTIONS(3516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3514), + [anon_sym___based] = ACTIONS(3514), + [anon_sym___cdecl] = ACTIONS(3514), + [anon_sym___clrcall] = ACTIONS(3514), + [anon_sym___stdcall] = ACTIONS(3514), + [anon_sym___fastcall] = ACTIONS(3514), + [anon_sym___thiscall] = ACTIONS(3514), + [anon_sym___vectorcall] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_signed] = ACTIONS(3514), + [anon_sym_unsigned] = ACTIONS(3514), + [anon_sym_long] = ACTIONS(3514), + [anon_sym_short] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_register] = ACTIONS(3514), + [anon_sym_inline] = ACTIONS(3514), + [anon_sym___inline] = ACTIONS(3514), + [anon_sym___inline__] = ACTIONS(3514), + [anon_sym___forceinline] = ACTIONS(3514), + [anon_sym_thread_local] = ACTIONS(3514), + [anon_sym___thread] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_constexpr] = ACTIONS(3514), + [anon_sym_volatile] = ACTIONS(3514), + [anon_sym_restrict] = ACTIONS(3514), + [anon_sym___restrict__] = ACTIONS(3514), + [anon_sym__Atomic] = ACTIONS(3514), + [anon_sym__Noreturn] = ACTIONS(3514), + [anon_sym_noreturn] = ACTIONS(3514), + [anon_sym__Nonnull] = ACTIONS(3514), + [anon_sym_mutable] = ACTIONS(3514), + [anon_sym_constinit] = ACTIONS(3514), + [anon_sym_consteval] = ACTIONS(3514), + [anon_sym_alignas] = ACTIONS(3514), + [anon_sym__Alignas] = ACTIONS(3514), + [sym_primitive_type] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_struct] = ACTIONS(3514), + [anon_sym_union] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_else] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_case] = ACTIONS(3514), + [anon_sym_default] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_goto] = ACTIONS(3514), + [anon_sym___try] = ACTIONS(3514), + [anon_sym___leave] = ACTIONS(3514), + [anon_sym_not] = ACTIONS(3514), + [anon_sym_compl] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_sizeof] = ACTIONS(3514), + [anon_sym___alignof__] = ACTIONS(3514), + [anon_sym___alignof] = ACTIONS(3514), + [anon_sym__alignof] = ACTIONS(3514), + [anon_sym_alignof] = ACTIONS(3514), + [anon_sym__Alignof] = ACTIONS(3514), + [anon_sym_offsetof] = ACTIONS(3514), + [anon_sym__Generic] = ACTIONS(3514), + [anon_sym_typename] = ACTIONS(3514), + [anon_sym_asm] = ACTIONS(3514), + [anon_sym___asm__] = ACTIONS(3514), + [anon_sym___asm] = ACTIONS(3514), + [sym_number_literal] = ACTIONS(3516), + [anon_sym_L_SQUOTE] = ACTIONS(3516), + [anon_sym_u_SQUOTE] = ACTIONS(3516), + [anon_sym_U_SQUOTE] = ACTIONS(3516), + [anon_sym_u8_SQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_L_DQUOTE] = ACTIONS(3516), + [anon_sym_u_DQUOTE] = ACTIONS(3516), + [anon_sym_U_DQUOTE] = ACTIONS(3516), + [anon_sym_u8_DQUOTE] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [anon_sym_NULL] = ACTIONS(3514), + [anon_sym_nullptr] = ACTIONS(3514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3514), + [anon_sym_decltype] = ACTIONS(3514), + [anon_sym_explicit] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_template] = ACTIONS(3514), + [anon_sym_operator] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_static_assert] = ACTIONS(3514), + [anon_sym_concept] = ACTIONS(3514), + [anon_sym_co_return] = ACTIONS(3514), + [anon_sym_co_yield] = ACTIONS(3514), + [anon_sym_R_DQUOTE] = ACTIONS(3516), + [anon_sym_LR_DQUOTE] = ACTIONS(3516), + [anon_sym_uR_DQUOTE] = ACTIONS(3516), + [anon_sym_UR_DQUOTE] = ACTIONS(3516), + [anon_sym_u8R_DQUOTE] = ACTIONS(3516), + [anon_sym_co_await] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_requires] = ACTIONS(3514), + [anon_sym_CARET_CARET] = ACTIONS(3516), + [anon_sym_LBRACK_COLON] = ACTIONS(3516), + [sym_this] = ACTIONS(3514), }, [STATE(774)] = { - [sym_identifier] = ACTIONS(3670), - [aux_sym_preproc_include_token1] = ACTIONS(3670), - [aux_sym_preproc_def_token1] = ACTIONS(3670), - [aux_sym_preproc_if_token1] = ACTIONS(3670), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3670), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3670), - [sym_preproc_directive] = ACTIONS(3670), - [anon_sym_LPAREN2] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(3672), - [anon_sym_TILDE] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym___extension__] = ACTIONS(3670), - [anon_sym_typedef] = ACTIONS(3670), - [anon_sym_virtual] = ACTIONS(3670), - [anon_sym_extern] = ACTIONS(3670), - [anon_sym___attribute__] = ACTIONS(3670), - [anon_sym___attribute] = ACTIONS(3670), - [anon_sym_using] = ACTIONS(3670), - [anon_sym_COLON_COLON] = ACTIONS(3672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3672), - [anon_sym___declspec] = ACTIONS(3670), - [anon_sym___based] = ACTIONS(3670), - [anon_sym___cdecl] = ACTIONS(3670), - [anon_sym___clrcall] = ACTIONS(3670), - [anon_sym___stdcall] = ACTIONS(3670), - [anon_sym___fastcall] = ACTIONS(3670), - [anon_sym___thiscall] = ACTIONS(3670), - [anon_sym___vectorcall] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_signed] = ACTIONS(3670), - [anon_sym_unsigned] = ACTIONS(3670), - [anon_sym_long] = ACTIONS(3670), - [anon_sym_short] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3670), - [anon_sym_static] = ACTIONS(3670), - [anon_sym_register] = ACTIONS(3670), - [anon_sym_inline] = ACTIONS(3670), - [anon_sym___inline] = ACTIONS(3670), - [anon_sym___inline__] = ACTIONS(3670), - [anon_sym___forceinline] = ACTIONS(3670), - [anon_sym_thread_local] = ACTIONS(3670), - [anon_sym___thread] = ACTIONS(3670), - [anon_sym_const] = ACTIONS(3670), - [anon_sym_constexpr] = ACTIONS(3670), - [anon_sym_volatile] = ACTIONS(3670), - [anon_sym_restrict] = ACTIONS(3670), - [anon_sym___restrict__] = ACTIONS(3670), - [anon_sym__Atomic] = ACTIONS(3670), - [anon_sym__Noreturn] = ACTIONS(3670), - [anon_sym_noreturn] = ACTIONS(3670), - [anon_sym__Nonnull] = ACTIONS(3670), - [anon_sym_mutable] = ACTIONS(3670), - [anon_sym_constinit] = ACTIONS(3670), - [anon_sym_consteval] = ACTIONS(3670), - [anon_sym_alignas] = ACTIONS(3670), - [anon_sym__Alignas] = ACTIONS(3670), - [sym_primitive_type] = ACTIONS(3670), - [anon_sym_enum] = ACTIONS(3670), - [anon_sym_class] = ACTIONS(3670), - [anon_sym_struct] = ACTIONS(3670), - [anon_sym_union] = ACTIONS(3670), - [anon_sym_if] = ACTIONS(3670), - [anon_sym_else] = ACTIONS(3670), - [anon_sym_switch] = ACTIONS(3670), - [anon_sym_case] = ACTIONS(3670), - [anon_sym_default] = ACTIONS(3670), - [anon_sym_while] = ACTIONS(3670), - [anon_sym_do] = ACTIONS(3670), - [anon_sym_for] = ACTIONS(3670), - [anon_sym_return] = ACTIONS(3670), - [anon_sym_break] = ACTIONS(3670), - [anon_sym_continue] = ACTIONS(3670), - [anon_sym_goto] = ACTIONS(3670), - [anon_sym___try] = ACTIONS(3670), - [anon_sym___leave] = ACTIONS(3670), - [anon_sym_not] = ACTIONS(3670), - [anon_sym_compl] = ACTIONS(3670), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_sizeof] = ACTIONS(3670), - [anon_sym___alignof__] = ACTIONS(3670), - [anon_sym___alignof] = ACTIONS(3670), - [anon_sym__alignof] = ACTIONS(3670), - [anon_sym_alignof] = ACTIONS(3670), - [anon_sym__Alignof] = ACTIONS(3670), - [anon_sym_offsetof] = ACTIONS(3670), - [anon_sym__Generic] = ACTIONS(3670), - [anon_sym_typename] = ACTIONS(3670), - [anon_sym_asm] = ACTIONS(3670), - [anon_sym___asm__] = ACTIONS(3670), - [anon_sym___asm] = ACTIONS(3670), - [sym_number_literal] = ACTIONS(3672), - [anon_sym_L_SQUOTE] = ACTIONS(3672), - [anon_sym_u_SQUOTE] = ACTIONS(3672), - [anon_sym_U_SQUOTE] = ACTIONS(3672), - [anon_sym_u8_SQUOTE] = ACTIONS(3672), - [anon_sym_SQUOTE] = ACTIONS(3672), - [anon_sym_L_DQUOTE] = ACTIONS(3672), - [anon_sym_u_DQUOTE] = ACTIONS(3672), - [anon_sym_U_DQUOTE] = ACTIONS(3672), - [anon_sym_u8_DQUOTE] = ACTIONS(3672), - [anon_sym_DQUOTE] = ACTIONS(3672), - [sym_true] = ACTIONS(3670), - [sym_false] = ACTIONS(3670), - [anon_sym_NULL] = ACTIONS(3670), - [anon_sym_nullptr] = ACTIONS(3670), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3670), - [anon_sym_decltype] = ACTIONS(3670), - [anon_sym_explicit] = ACTIONS(3670), - [anon_sym_export] = ACTIONS(3670), - [anon_sym_import] = ACTIONS(3670), - [anon_sym_template] = ACTIONS(3670), - [anon_sym_operator] = ACTIONS(3670), - [anon_sym_try] = ACTIONS(3670), - [anon_sym_delete] = ACTIONS(3670), - [anon_sym_throw] = ACTIONS(3670), - [anon_sym_namespace] = ACTIONS(3670), - [anon_sym_static_assert] = ACTIONS(3670), - [anon_sym_concept] = ACTIONS(3670), - [anon_sym_co_return] = ACTIONS(3670), - [anon_sym_co_yield] = ACTIONS(3670), - [anon_sym_R_DQUOTE] = ACTIONS(3672), - [anon_sym_LR_DQUOTE] = ACTIONS(3672), - [anon_sym_uR_DQUOTE] = ACTIONS(3672), - [anon_sym_UR_DQUOTE] = ACTIONS(3672), - [anon_sym_u8R_DQUOTE] = ACTIONS(3672), - [anon_sym_co_await] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3670), - [anon_sym_requires] = ACTIONS(3670), - [anon_sym_CARET_CARET] = ACTIONS(3672), - [anon_sym_LBRACK_COLON] = ACTIONS(3672), - [sym_this] = ACTIONS(3670), + [sym_identifier] = ACTIONS(3873), + [aux_sym_preproc_include_token1] = ACTIONS(3873), + [aux_sym_preproc_def_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token2] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3875), + [anon_sym_BANG] = ACTIONS(3875), + [anon_sym_TILDE] = ACTIONS(3875), + [anon_sym_DASH] = ACTIONS(3873), + [anon_sym_PLUS] = ACTIONS(3873), + [anon_sym_STAR] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym___extension__] = ACTIONS(3873), + [anon_sym_typedef] = ACTIONS(3873), + [anon_sym_virtual] = ACTIONS(3873), + [anon_sym_extern] = ACTIONS(3873), + [anon_sym___attribute__] = ACTIONS(3873), + [anon_sym___attribute] = ACTIONS(3873), + [anon_sym_using] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3875), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), + [anon_sym___declspec] = ACTIONS(3873), + [anon_sym___based] = ACTIONS(3873), + [anon_sym___cdecl] = ACTIONS(3873), + [anon_sym___clrcall] = ACTIONS(3873), + [anon_sym___stdcall] = ACTIONS(3873), + [anon_sym___fastcall] = ACTIONS(3873), + [anon_sym___thiscall] = ACTIONS(3873), + [anon_sym___vectorcall] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3875), + [anon_sym_signed] = ACTIONS(3873), + [anon_sym_unsigned] = ACTIONS(3873), + [anon_sym_long] = ACTIONS(3873), + [anon_sym_short] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3873), + [anon_sym_static] = ACTIONS(3873), + [anon_sym_register] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym___inline] = ACTIONS(3873), + [anon_sym___inline__] = ACTIONS(3873), + [anon_sym___forceinline] = ACTIONS(3873), + [anon_sym_thread_local] = ACTIONS(3873), + [anon_sym___thread] = ACTIONS(3873), + [anon_sym_const] = ACTIONS(3873), + [anon_sym_constexpr] = ACTIONS(3873), + [anon_sym_volatile] = ACTIONS(3873), + [anon_sym_restrict] = ACTIONS(3873), + [anon_sym___restrict__] = ACTIONS(3873), + [anon_sym__Atomic] = ACTIONS(3873), + [anon_sym__Noreturn] = ACTIONS(3873), + [anon_sym_noreturn] = ACTIONS(3873), + [anon_sym__Nonnull] = ACTIONS(3873), + [anon_sym_mutable] = ACTIONS(3873), + [anon_sym_constinit] = ACTIONS(3873), + [anon_sym_consteval] = ACTIONS(3873), + [anon_sym_alignas] = ACTIONS(3873), + [anon_sym__Alignas] = ACTIONS(3873), + [sym_primitive_type] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3873), + [anon_sym_union] = ACTIONS(3873), + [anon_sym_if] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3873), + [anon_sym_case] = ACTIONS(3873), + [anon_sym_default] = ACTIONS(3873), + [anon_sym_while] = ACTIONS(3873), + [anon_sym_do] = ACTIONS(3873), + [anon_sym_for] = ACTIONS(3873), + [anon_sym_return] = ACTIONS(3873), + [anon_sym_break] = ACTIONS(3873), + [anon_sym_continue] = ACTIONS(3873), + [anon_sym_goto] = ACTIONS(3873), + [anon_sym___try] = ACTIONS(3873), + [anon_sym___leave] = ACTIONS(3873), + [anon_sym_not] = ACTIONS(3873), + [anon_sym_compl] = ACTIONS(3873), + [anon_sym_DASH_DASH] = ACTIONS(3875), + [anon_sym_PLUS_PLUS] = ACTIONS(3875), + [anon_sym_sizeof] = ACTIONS(3873), + [anon_sym___alignof__] = ACTIONS(3873), + [anon_sym___alignof] = ACTIONS(3873), + [anon_sym__alignof] = ACTIONS(3873), + [anon_sym_alignof] = ACTIONS(3873), + [anon_sym__Alignof] = ACTIONS(3873), + [anon_sym_offsetof] = ACTIONS(3873), + [anon_sym__Generic] = ACTIONS(3873), + [anon_sym_typename] = ACTIONS(3873), + [anon_sym_asm] = ACTIONS(3873), + [anon_sym___asm__] = ACTIONS(3873), + [anon_sym___asm] = ACTIONS(3873), + [sym_number_literal] = ACTIONS(3875), + [anon_sym_L_SQUOTE] = ACTIONS(3875), + [anon_sym_u_SQUOTE] = ACTIONS(3875), + [anon_sym_U_SQUOTE] = ACTIONS(3875), + [anon_sym_u8_SQUOTE] = ACTIONS(3875), + [anon_sym_SQUOTE] = ACTIONS(3875), + [anon_sym_L_DQUOTE] = ACTIONS(3875), + [anon_sym_u_DQUOTE] = ACTIONS(3875), + [anon_sym_U_DQUOTE] = ACTIONS(3875), + [anon_sym_u8_DQUOTE] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [sym_true] = ACTIONS(3873), + [sym_false] = ACTIONS(3873), + [anon_sym_NULL] = ACTIONS(3873), + [anon_sym_nullptr] = ACTIONS(3873), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3873), + [anon_sym_decltype] = ACTIONS(3873), + [anon_sym_explicit] = ACTIONS(3873), + [anon_sym_export] = ACTIONS(3873), + [anon_sym_module] = ACTIONS(3873), + [anon_sym_import] = ACTIONS(3873), + [anon_sym_template] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_try] = ACTIONS(3873), + [anon_sym_delete] = ACTIONS(3873), + [anon_sym_throw] = ACTIONS(3873), + [anon_sym_namespace] = ACTIONS(3873), + [anon_sym_static_assert] = ACTIONS(3873), + [anon_sym_concept] = ACTIONS(3873), + [anon_sym_co_return] = ACTIONS(3873), + [anon_sym_co_yield] = ACTIONS(3873), + [anon_sym_R_DQUOTE] = ACTIONS(3875), + [anon_sym_LR_DQUOTE] = ACTIONS(3875), + [anon_sym_uR_DQUOTE] = ACTIONS(3875), + [anon_sym_UR_DQUOTE] = ACTIONS(3875), + [anon_sym_u8R_DQUOTE] = ACTIONS(3875), + [anon_sym_co_await] = ACTIONS(3873), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(3873), + [anon_sym_CARET_CARET] = ACTIONS(3875), + [anon_sym_LBRACK_COLON] = ACTIONS(3875), + [sym_this] = ACTIONS(3873), }, [STATE(775)] = { - [sym_identifier] = ACTIONS(3524), - [aux_sym_preproc_include_token1] = ACTIONS(3524), - [aux_sym_preproc_def_token1] = ACTIONS(3524), - [aux_sym_preproc_if_token1] = ACTIONS(3524), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3524), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3524), - [sym_preproc_directive] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_AMP_AMP] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym___extension__] = ACTIONS(3524), - [anon_sym_typedef] = ACTIONS(3524), - [anon_sym_virtual] = ACTIONS(3524), - [anon_sym_extern] = ACTIONS(3524), - [anon_sym___attribute__] = ACTIONS(3524), - [anon_sym___attribute] = ACTIONS(3524), - [anon_sym_using] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3526), - [anon_sym___declspec] = ACTIONS(3524), - [anon_sym___based] = ACTIONS(3524), - [anon_sym___cdecl] = ACTIONS(3524), - [anon_sym___clrcall] = ACTIONS(3524), - [anon_sym___stdcall] = ACTIONS(3524), - [anon_sym___fastcall] = ACTIONS(3524), - [anon_sym___thiscall] = ACTIONS(3524), - [anon_sym___vectorcall] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_RBRACE] = ACTIONS(3526), - [anon_sym_signed] = ACTIONS(3524), - [anon_sym_unsigned] = ACTIONS(3524), - [anon_sym_long] = ACTIONS(3524), - [anon_sym_short] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_register] = ACTIONS(3524), - [anon_sym_inline] = ACTIONS(3524), - [anon_sym___inline] = ACTIONS(3524), - [anon_sym___inline__] = ACTIONS(3524), - [anon_sym___forceinline] = ACTIONS(3524), - [anon_sym_thread_local] = ACTIONS(3524), - [anon_sym___thread] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_constexpr] = ACTIONS(3524), - [anon_sym_volatile] = ACTIONS(3524), - [anon_sym_restrict] = ACTIONS(3524), - [anon_sym___restrict__] = ACTIONS(3524), - [anon_sym__Atomic] = ACTIONS(3524), - [anon_sym__Noreturn] = ACTIONS(3524), - [anon_sym_noreturn] = ACTIONS(3524), - [anon_sym__Nonnull] = ACTIONS(3524), - [anon_sym_mutable] = ACTIONS(3524), - [anon_sym_constinit] = ACTIONS(3524), - [anon_sym_consteval] = ACTIONS(3524), - [anon_sym_alignas] = ACTIONS(3524), - [anon_sym__Alignas] = ACTIONS(3524), - [sym_primitive_type] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_struct] = ACTIONS(3524), - [anon_sym_union] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_goto] = ACTIONS(3524), - [anon_sym___try] = ACTIONS(3524), - [anon_sym___leave] = ACTIONS(3524), - [anon_sym_not] = ACTIONS(3524), - [anon_sym_compl] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_sizeof] = ACTIONS(3524), - [anon_sym___alignof__] = ACTIONS(3524), - [anon_sym___alignof] = ACTIONS(3524), - [anon_sym__alignof] = ACTIONS(3524), - [anon_sym_alignof] = ACTIONS(3524), - [anon_sym__Alignof] = ACTIONS(3524), - [anon_sym_offsetof] = ACTIONS(3524), - [anon_sym__Generic] = ACTIONS(3524), - [anon_sym_typename] = ACTIONS(3524), - [anon_sym_asm] = ACTIONS(3524), - [anon_sym___asm__] = ACTIONS(3524), - [anon_sym___asm] = ACTIONS(3524), - [sym_number_literal] = ACTIONS(3526), - [anon_sym_L_SQUOTE] = ACTIONS(3526), - [anon_sym_u_SQUOTE] = ACTIONS(3526), - [anon_sym_U_SQUOTE] = ACTIONS(3526), - [anon_sym_u8_SQUOTE] = ACTIONS(3526), - [anon_sym_SQUOTE] = ACTIONS(3526), - [anon_sym_L_DQUOTE] = ACTIONS(3526), - [anon_sym_u_DQUOTE] = ACTIONS(3526), - [anon_sym_U_DQUOTE] = ACTIONS(3526), - [anon_sym_u8_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [anon_sym_NULL] = ACTIONS(3524), - [anon_sym_nullptr] = ACTIONS(3524), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3524), - [anon_sym_decltype] = ACTIONS(3524), - [anon_sym_explicit] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_template] = ACTIONS(3524), - [anon_sym_operator] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_static_assert] = ACTIONS(3524), - [anon_sym_concept] = ACTIONS(3524), - [anon_sym_co_return] = ACTIONS(3524), - [anon_sym_co_yield] = ACTIONS(3524), - [anon_sym_R_DQUOTE] = ACTIONS(3526), - [anon_sym_LR_DQUOTE] = ACTIONS(3526), - [anon_sym_uR_DQUOTE] = ACTIONS(3526), - [anon_sym_UR_DQUOTE] = ACTIONS(3526), - [anon_sym_u8R_DQUOTE] = ACTIONS(3526), - [anon_sym_co_await] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_requires] = ACTIONS(3524), - [anon_sym_CARET_CARET] = ACTIONS(3526), - [anon_sym_LBRACK_COLON] = ACTIONS(3526), - [sym_this] = ACTIONS(3524), + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_include_token1] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym___cdecl] = ACTIONS(3518), + [anon_sym___clrcall] = ACTIONS(3518), + [anon_sym___stdcall] = ACTIONS(3518), + [anon_sym___fastcall] = ACTIONS(3518), + [anon_sym___thiscall] = ACTIONS(3518), + [anon_sym___vectorcall] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym___try] = ACTIONS(3518), + [anon_sym___leave] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(3518), + [anon_sym_compl] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [anon_sym___alignof__] = ACTIONS(3518), + [anon_sym___alignof] = ACTIONS(3518), + [anon_sym__alignof] = ACTIONS(3518), + [anon_sym_alignof] = ACTIONS(3518), + [anon_sym__Alignof] = ACTIONS(3518), + [anon_sym_offsetof] = ACTIONS(3518), + [anon_sym__Generic] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [anon_sym_asm] = ACTIONS(3518), + [anon_sym___asm__] = ACTIONS(3518), + [anon_sym___asm] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [anon_sym_L_SQUOTE] = ACTIONS(3520), + [anon_sym_u_SQUOTE] = ACTIONS(3520), + [anon_sym_U_SQUOTE] = ACTIONS(3520), + [anon_sym_u8_SQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_L_DQUOTE] = ACTIONS(3520), + [anon_sym_u_DQUOTE] = ACTIONS(3520), + [anon_sym_U_DQUOTE] = ACTIONS(3520), + [anon_sym_u8_DQUOTE] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [anon_sym_NULL] = ACTIONS(3518), + [anon_sym_nullptr] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_concept] = ACTIONS(3518), + [anon_sym_co_return] = ACTIONS(3518), + [anon_sym_co_yield] = ACTIONS(3518), + [anon_sym_R_DQUOTE] = ACTIONS(3520), + [anon_sym_LR_DQUOTE] = ACTIONS(3520), + [anon_sym_uR_DQUOTE] = ACTIONS(3520), + [anon_sym_UR_DQUOTE] = ACTIONS(3520), + [anon_sym_u8R_DQUOTE] = ACTIONS(3520), + [anon_sym_co_await] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_requires] = ACTIONS(3518), + [anon_sym_CARET_CARET] = ACTIONS(3520), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + [sym_this] = ACTIONS(3518), }, [STATE(776)] = { - [sym_identifier] = ACTIONS(3528), - [aux_sym_preproc_include_token1] = ACTIONS(3528), - [aux_sym_preproc_def_token1] = ACTIONS(3528), - [aux_sym_preproc_if_token1] = ACTIONS(3528), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3528), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3528), - [sym_preproc_directive] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_AMP_AMP] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym___extension__] = ACTIONS(3528), - [anon_sym_typedef] = ACTIONS(3528), - [anon_sym_virtual] = ACTIONS(3528), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym___attribute__] = ACTIONS(3528), - [anon_sym___attribute] = ACTIONS(3528), - [anon_sym_using] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3530), - [anon_sym___declspec] = ACTIONS(3528), - [anon_sym___based] = ACTIONS(3528), - [anon_sym___cdecl] = ACTIONS(3528), - [anon_sym___clrcall] = ACTIONS(3528), - [anon_sym___stdcall] = ACTIONS(3528), - [anon_sym___fastcall] = ACTIONS(3528), - [anon_sym___thiscall] = ACTIONS(3528), - [anon_sym___vectorcall] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_RBRACE] = ACTIONS(3530), - [anon_sym_signed] = ACTIONS(3528), - [anon_sym_unsigned] = ACTIONS(3528), - [anon_sym_long] = ACTIONS(3528), - [anon_sym_short] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_register] = ACTIONS(3528), - [anon_sym_inline] = ACTIONS(3528), - [anon_sym___inline] = ACTIONS(3528), - [anon_sym___inline__] = ACTIONS(3528), - [anon_sym___forceinline] = ACTIONS(3528), - [anon_sym_thread_local] = ACTIONS(3528), - [anon_sym___thread] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_constexpr] = ACTIONS(3528), - [anon_sym_volatile] = ACTIONS(3528), - [anon_sym_restrict] = ACTIONS(3528), - [anon_sym___restrict__] = ACTIONS(3528), - [anon_sym__Atomic] = ACTIONS(3528), - [anon_sym__Noreturn] = ACTIONS(3528), - [anon_sym_noreturn] = ACTIONS(3528), - [anon_sym__Nonnull] = ACTIONS(3528), - [anon_sym_mutable] = ACTIONS(3528), - [anon_sym_constinit] = ACTIONS(3528), - [anon_sym_consteval] = ACTIONS(3528), - [anon_sym_alignas] = ACTIONS(3528), - [anon_sym__Alignas] = ACTIONS(3528), - [sym_primitive_type] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), - [anon_sym_class] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(3528), - [anon_sym_union] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_else] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_case] = ACTIONS(3528), - [anon_sym_default] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_goto] = ACTIONS(3528), - [anon_sym___try] = ACTIONS(3528), - [anon_sym___leave] = ACTIONS(3528), - [anon_sym_not] = ACTIONS(3528), - [anon_sym_compl] = ACTIONS(3528), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_sizeof] = ACTIONS(3528), - [anon_sym___alignof__] = ACTIONS(3528), - [anon_sym___alignof] = ACTIONS(3528), - [anon_sym__alignof] = ACTIONS(3528), - [anon_sym_alignof] = ACTIONS(3528), - [anon_sym__Alignof] = ACTIONS(3528), - [anon_sym_offsetof] = ACTIONS(3528), - [anon_sym__Generic] = ACTIONS(3528), - [anon_sym_typename] = ACTIONS(3528), - [anon_sym_asm] = ACTIONS(3528), - [anon_sym___asm__] = ACTIONS(3528), - [anon_sym___asm] = ACTIONS(3528), - [sym_number_literal] = ACTIONS(3530), - [anon_sym_L_SQUOTE] = ACTIONS(3530), - [anon_sym_u_SQUOTE] = ACTIONS(3530), - [anon_sym_U_SQUOTE] = ACTIONS(3530), - [anon_sym_u8_SQUOTE] = ACTIONS(3530), - [anon_sym_SQUOTE] = ACTIONS(3530), - [anon_sym_L_DQUOTE] = ACTIONS(3530), - [anon_sym_u_DQUOTE] = ACTIONS(3530), - [anon_sym_U_DQUOTE] = ACTIONS(3530), - [anon_sym_u8_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [anon_sym_NULL] = ACTIONS(3528), - [anon_sym_nullptr] = ACTIONS(3528), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3528), - [anon_sym_decltype] = ACTIONS(3528), - [anon_sym_explicit] = ACTIONS(3528), - [anon_sym_export] = ACTIONS(3528), - [anon_sym_import] = ACTIONS(3528), - [anon_sym_template] = ACTIONS(3528), - [anon_sym_operator] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_delete] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_static_assert] = ACTIONS(3528), - [anon_sym_concept] = ACTIONS(3528), - [anon_sym_co_return] = ACTIONS(3528), - [anon_sym_co_yield] = ACTIONS(3528), - [anon_sym_R_DQUOTE] = ACTIONS(3530), - [anon_sym_LR_DQUOTE] = ACTIONS(3530), - [anon_sym_uR_DQUOTE] = ACTIONS(3530), - [anon_sym_UR_DQUOTE] = ACTIONS(3530), - [anon_sym_u8R_DQUOTE] = ACTIONS(3530), - [anon_sym_co_await] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_requires] = ACTIONS(3528), - [anon_sym_CARET_CARET] = ACTIONS(3530), - [anon_sym_LBRACK_COLON] = ACTIONS(3530), - [sym_this] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3877), + [aux_sym_preproc_include_token1] = ACTIONS(3877), + [aux_sym_preproc_def_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token2] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3877), + [sym_preproc_directive] = ACTIONS(3877), + [anon_sym_LPAREN2] = ACTIONS(3879), + [anon_sym_BANG] = ACTIONS(3879), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_PLUS] = ACTIONS(3877), + [anon_sym_STAR] = ACTIONS(3879), + [anon_sym_AMP_AMP] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_SEMI] = ACTIONS(3879), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_typedef] = ACTIONS(3877), + [anon_sym_virtual] = ACTIONS(3877), + [anon_sym_extern] = ACTIONS(3877), + [anon_sym___attribute__] = ACTIONS(3877), + [anon_sym___attribute] = ACTIONS(3877), + [anon_sym_using] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3879), + [anon_sym___declspec] = ACTIONS(3877), + [anon_sym___based] = ACTIONS(3877), + [anon_sym___cdecl] = ACTIONS(3877), + [anon_sym___clrcall] = ACTIONS(3877), + [anon_sym___stdcall] = ACTIONS(3877), + [anon_sym___fastcall] = ACTIONS(3877), + [anon_sym___thiscall] = ACTIONS(3877), + [anon_sym___vectorcall] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_signed] = ACTIONS(3877), + [anon_sym_unsigned] = ACTIONS(3877), + [anon_sym_long] = ACTIONS(3877), + [anon_sym_short] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_static] = ACTIONS(3877), + [anon_sym_register] = ACTIONS(3877), + [anon_sym_inline] = ACTIONS(3877), + [anon_sym___inline] = ACTIONS(3877), + [anon_sym___inline__] = ACTIONS(3877), + [anon_sym___forceinline] = ACTIONS(3877), + [anon_sym_thread_local] = ACTIONS(3877), + [anon_sym___thread] = ACTIONS(3877), + [anon_sym_const] = ACTIONS(3877), + [anon_sym_constexpr] = ACTIONS(3877), + [anon_sym_volatile] = ACTIONS(3877), + [anon_sym_restrict] = ACTIONS(3877), + [anon_sym___restrict__] = ACTIONS(3877), + [anon_sym__Atomic] = ACTIONS(3877), + [anon_sym__Noreturn] = ACTIONS(3877), + [anon_sym_noreturn] = ACTIONS(3877), + [anon_sym__Nonnull] = ACTIONS(3877), + [anon_sym_mutable] = ACTIONS(3877), + [anon_sym_constinit] = ACTIONS(3877), + [anon_sym_consteval] = ACTIONS(3877), + [anon_sym_alignas] = ACTIONS(3877), + [anon_sym__Alignas] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(3877), + [anon_sym_enum] = ACTIONS(3877), + [anon_sym_class] = ACTIONS(3877), + [anon_sym_struct] = ACTIONS(3877), + [anon_sym_union] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(3877), + [anon_sym_switch] = ACTIONS(3877), + [anon_sym_case] = ACTIONS(3877), + [anon_sym_default] = ACTIONS(3877), + [anon_sym_while] = ACTIONS(3877), + [anon_sym_do] = ACTIONS(3877), + [anon_sym_for] = ACTIONS(3877), + [anon_sym_return] = ACTIONS(3877), + [anon_sym_break] = ACTIONS(3877), + [anon_sym_continue] = ACTIONS(3877), + [anon_sym_goto] = ACTIONS(3877), + [anon_sym___try] = ACTIONS(3877), + [anon_sym___leave] = ACTIONS(3877), + [anon_sym_not] = ACTIONS(3877), + [anon_sym_compl] = ACTIONS(3877), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3877), + [anon_sym___alignof__] = ACTIONS(3877), + [anon_sym___alignof] = ACTIONS(3877), + [anon_sym__alignof] = ACTIONS(3877), + [anon_sym_alignof] = ACTIONS(3877), + [anon_sym__Alignof] = ACTIONS(3877), + [anon_sym_offsetof] = ACTIONS(3877), + [anon_sym__Generic] = ACTIONS(3877), + [anon_sym_typename] = ACTIONS(3877), + [anon_sym_asm] = ACTIONS(3877), + [anon_sym___asm__] = ACTIONS(3877), + [anon_sym___asm] = ACTIONS(3877), + [sym_number_literal] = ACTIONS(3879), + [anon_sym_L_SQUOTE] = ACTIONS(3879), + [anon_sym_u_SQUOTE] = ACTIONS(3879), + [anon_sym_U_SQUOTE] = ACTIONS(3879), + [anon_sym_u8_SQUOTE] = ACTIONS(3879), + [anon_sym_SQUOTE] = ACTIONS(3879), + [anon_sym_L_DQUOTE] = ACTIONS(3879), + [anon_sym_u_DQUOTE] = ACTIONS(3879), + [anon_sym_U_DQUOTE] = ACTIONS(3879), + [anon_sym_u8_DQUOTE] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3879), + [sym_true] = ACTIONS(3877), + [sym_false] = ACTIONS(3877), + [anon_sym_NULL] = ACTIONS(3877), + [anon_sym_nullptr] = ACTIONS(3877), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3877), + [anon_sym_decltype] = ACTIONS(3877), + [anon_sym_explicit] = ACTIONS(3877), + [anon_sym_export] = ACTIONS(3877), + [anon_sym_module] = ACTIONS(3877), + [anon_sym_import] = ACTIONS(3877), + [anon_sym_template] = ACTIONS(3877), + [anon_sym_operator] = ACTIONS(3877), + [anon_sym_try] = ACTIONS(3877), + [anon_sym_delete] = ACTIONS(3877), + [anon_sym_throw] = ACTIONS(3877), + [anon_sym_namespace] = ACTIONS(3877), + [anon_sym_static_assert] = ACTIONS(3877), + [anon_sym_concept] = ACTIONS(3877), + [anon_sym_co_return] = ACTIONS(3877), + [anon_sym_co_yield] = ACTIONS(3877), + [anon_sym_R_DQUOTE] = ACTIONS(3879), + [anon_sym_LR_DQUOTE] = ACTIONS(3879), + [anon_sym_uR_DQUOTE] = ACTIONS(3879), + [anon_sym_UR_DQUOTE] = ACTIONS(3879), + [anon_sym_u8R_DQUOTE] = ACTIONS(3879), + [anon_sym_co_await] = ACTIONS(3877), + [anon_sym_new] = ACTIONS(3877), + [anon_sym_requires] = ACTIONS(3877), + [anon_sym_CARET_CARET] = ACTIONS(3879), + [anon_sym_LBRACK_COLON] = ACTIONS(3879), + [sym_this] = ACTIONS(3877), }, [STATE(777)] = { - [sym_identifier] = ACTIONS(3532), - [aux_sym_preproc_include_token1] = ACTIONS(3532), - [aux_sym_preproc_def_token1] = ACTIONS(3532), - [aux_sym_preproc_if_token1] = ACTIONS(3532), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3532), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3532), - [sym_preproc_directive] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(3534), - [anon_sym_AMP_AMP] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3532), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym___extension__] = ACTIONS(3532), - [anon_sym_typedef] = ACTIONS(3532), - [anon_sym_virtual] = ACTIONS(3532), - [anon_sym_extern] = ACTIONS(3532), - [anon_sym___attribute__] = ACTIONS(3532), - [anon_sym___attribute] = ACTIONS(3532), - [anon_sym_using] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), - [anon_sym___declspec] = ACTIONS(3532), - [anon_sym___based] = ACTIONS(3532), - [anon_sym___cdecl] = ACTIONS(3532), - [anon_sym___clrcall] = ACTIONS(3532), - [anon_sym___stdcall] = ACTIONS(3532), - [anon_sym___fastcall] = ACTIONS(3532), - [anon_sym___thiscall] = ACTIONS(3532), - [anon_sym___vectorcall] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_RBRACE] = ACTIONS(3534), - [anon_sym_signed] = ACTIONS(3532), - [anon_sym_unsigned] = ACTIONS(3532), - [anon_sym_long] = ACTIONS(3532), - [anon_sym_short] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_register] = ACTIONS(3532), - [anon_sym_inline] = ACTIONS(3532), - [anon_sym___inline] = ACTIONS(3532), - [anon_sym___inline__] = ACTIONS(3532), - [anon_sym___forceinline] = ACTIONS(3532), - [anon_sym_thread_local] = ACTIONS(3532), - [anon_sym___thread] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_constexpr] = ACTIONS(3532), - [anon_sym_volatile] = ACTIONS(3532), - [anon_sym_restrict] = ACTIONS(3532), - [anon_sym___restrict__] = ACTIONS(3532), - [anon_sym__Atomic] = ACTIONS(3532), - [anon_sym__Noreturn] = ACTIONS(3532), - [anon_sym_noreturn] = ACTIONS(3532), - [anon_sym__Nonnull] = ACTIONS(3532), - [anon_sym_mutable] = ACTIONS(3532), - [anon_sym_constinit] = ACTIONS(3532), - [anon_sym_consteval] = ACTIONS(3532), - [anon_sym_alignas] = ACTIONS(3532), - [anon_sym__Alignas] = ACTIONS(3532), - [sym_primitive_type] = ACTIONS(3532), - [anon_sym_enum] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3532), - [anon_sym_struct] = ACTIONS(3532), - [anon_sym_union] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_else] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_case] = ACTIONS(3532), - [anon_sym_default] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_goto] = ACTIONS(3532), - [anon_sym___try] = ACTIONS(3532), - [anon_sym___leave] = ACTIONS(3532), - [anon_sym_not] = ACTIONS(3532), - [anon_sym_compl] = ACTIONS(3532), - [anon_sym_DASH_DASH] = ACTIONS(3534), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_sizeof] = ACTIONS(3532), - [anon_sym___alignof__] = ACTIONS(3532), - [anon_sym___alignof] = ACTIONS(3532), - [anon_sym__alignof] = ACTIONS(3532), - [anon_sym_alignof] = ACTIONS(3532), - [anon_sym__Alignof] = ACTIONS(3532), - [anon_sym_offsetof] = ACTIONS(3532), - [anon_sym__Generic] = ACTIONS(3532), - [anon_sym_typename] = ACTIONS(3532), - [anon_sym_asm] = ACTIONS(3532), - [anon_sym___asm__] = ACTIONS(3532), - [anon_sym___asm] = ACTIONS(3532), - [sym_number_literal] = ACTIONS(3534), - [anon_sym_L_SQUOTE] = ACTIONS(3534), - [anon_sym_u_SQUOTE] = ACTIONS(3534), - [anon_sym_U_SQUOTE] = ACTIONS(3534), - [anon_sym_u8_SQUOTE] = ACTIONS(3534), - [anon_sym_SQUOTE] = ACTIONS(3534), - [anon_sym_L_DQUOTE] = ACTIONS(3534), - [anon_sym_u_DQUOTE] = ACTIONS(3534), - [anon_sym_U_DQUOTE] = ACTIONS(3534), - [anon_sym_u8_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [sym_true] = ACTIONS(3532), - [sym_false] = ACTIONS(3532), - [anon_sym_NULL] = ACTIONS(3532), - [anon_sym_nullptr] = ACTIONS(3532), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3532), - [anon_sym_decltype] = ACTIONS(3532), - [anon_sym_explicit] = ACTIONS(3532), - [anon_sym_export] = ACTIONS(3532), - [anon_sym_import] = ACTIONS(3532), - [anon_sym_template] = ACTIONS(3532), - [anon_sym_operator] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_delete] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_namespace] = ACTIONS(3532), - [anon_sym_static_assert] = ACTIONS(3532), - [anon_sym_concept] = ACTIONS(3532), - [anon_sym_co_return] = ACTIONS(3532), - [anon_sym_co_yield] = ACTIONS(3532), - [anon_sym_R_DQUOTE] = ACTIONS(3534), - [anon_sym_LR_DQUOTE] = ACTIONS(3534), - [anon_sym_uR_DQUOTE] = ACTIONS(3534), - [anon_sym_UR_DQUOTE] = ACTIONS(3534), - [anon_sym_u8R_DQUOTE] = ACTIONS(3534), - [anon_sym_co_await] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_requires] = ACTIONS(3532), - [anon_sym_CARET_CARET] = ACTIONS(3534), - [anon_sym_LBRACK_COLON] = ACTIONS(3534), - [sym_this] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3881), + [aux_sym_preproc_include_token1] = ACTIONS(3881), + [aux_sym_preproc_def_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token2] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3881), + [sym_preproc_directive] = ACTIONS(3881), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_BANG] = ACTIONS(3883), + [anon_sym_TILDE] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_SEMI] = ACTIONS(3883), + [anon_sym___extension__] = ACTIONS(3881), + [anon_sym_typedef] = ACTIONS(3881), + [anon_sym_virtual] = ACTIONS(3881), + [anon_sym_extern] = ACTIONS(3881), + [anon_sym___attribute__] = ACTIONS(3881), + [anon_sym___attribute] = ACTIONS(3881), + [anon_sym_using] = ACTIONS(3881), + [anon_sym_COLON_COLON] = ACTIONS(3883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3883), + [anon_sym___declspec] = ACTIONS(3881), + [anon_sym___based] = ACTIONS(3881), + [anon_sym___cdecl] = ACTIONS(3881), + [anon_sym___clrcall] = ACTIONS(3881), + [anon_sym___stdcall] = ACTIONS(3881), + [anon_sym___fastcall] = ACTIONS(3881), + [anon_sym___thiscall] = ACTIONS(3881), + [anon_sym___vectorcall] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3883), + [anon_sym_signed] = ACTIONS(3881), + [anon_sym_unsigned] = ACTIONS(3881), + [anon_sym_long] = ACTIONS(3881), + [anon_sym_short] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_static] = ACTIONS(3881), + [anon_sym_register] = ACTIONS(3881), + [anon_sym_inline] = ACTIONS(3881), + [anon_sym___inline] = ACTIONS(3881), + [anon_sym___inline__] = ACTIONS(3881), + [anon_sym___forceinline] = ACTIONS(3881), + [anon_sym_thread_local] = ACTIONS(3881), + [anon_sym___thread] = ACTIONS(3881), + [anon_sym_const] = ACTIONS(3881), + [anon_sym_constexpr] = ACTIONS(3881), + [anon_sym_volatile] = ACTIONS(3881), + [anon_sym_restrict] = ACTIONS(3881), + [anon_sym___restrict__] = ACTIONS(3881), + [anon_sym__Atomic] = ACTIONS(3881), + [anon_sym__Noreturn] = ACTIONS(3881), + [anon_sym_noreturn] = ACTIONS(3881), + [anon_sym__Nonnull] = ACTIONS(3881), + [anon_sym_mutable] = ACTIONS(3881), + [anon_sym_constinit] = ACTIONS(3881), + [anon_sym_consteval] = ACTIONS(3881), + [anon_sym_alignas] = ACTIONS(3881), + [anon_sym__Alignas] = ACTIONS(3881), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_enum] = ACTIONS(3881), + [anon_sym_class] = ACTIONS(3881), + [anon_sym_struct] = ACTIONS(3881), + [anon_sym_union] = ACTIONS(3881), + [anon_sym_if] = ACTIONS(3881), + [anon_sym_switch] = ACTIONS(3881), + [anon_sym_case] = ACTIONS(3881), + [anon_sym_default] = ACTIONS(3881), + [anon_sym_while] = ACTIONS(3881), + [anon_sym_do] = ACTIONS(3881), + [anon_sym_for] = ACTIONS(3881), + [anon_sym_return] = ACTIONS(3881), + [anon_sym_break] = ACTIONS(3881), + [anon_sym_continue] = ACTIONS(3881), + [anon_sym_goto] = ACTIONS(3881), + [anon_sym___try] = ACTIONS(3881), + [anon_sym___leave] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3881), + [anon_sym_compl] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(3883), + [anon_sym_PLUS_PLUS] = ACTIONS(3883), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(3881), + [anon_sym___alignof] = ACTIONS(3881), + [anon_sym__alignof] = ACTIONS(3881), + [anon_sym_alignof] = ACTIONS(3881), + [anon_sym__Alignof] = ACTIONS(3881), + [anon_sym_offsetof] = ACTIONS(3881), + [anon_sym__Generic] = ACTIONS(3881), + [anon_sym_typename] = ACTIONS(3881), + [anon_sym_asm] = ACTIONS(3881), + [anon_sym___asm__] = ACTIONS(3881), + [anon_sym___asm] = ACTIONS(3881), + [sym_number_literal] = ACTIONS(3883), + [anon_sym_L_SQUOTE] = ACTIONS(3883), + [anon_sym_u_SQUOTE] = ACTIONS(3883), + [anon_sym_U_SQUOTE] = ACTIONS(3883), + [anon_sym_u8_SQUOTE] = ACTIONS(3883), + [anon_sym_SQUOTE] = ACTIONS(3883), + [anon_sym_L_DQUOTE] = ACTIONS(3883), + [anon_sym_u_DQUOTE] = ACTIONS(3883), + [anon_sym_U_DQUOTE] = ACTIONS(3883), + [anon_sym_u8_DQUOTE] = ACTIONS(3883), + [anon_sym_DQUOTE] = ACTIONS(3883), + [sym_true] = ACTIONS(3881), + [sym_false] = ACTIONS(3881), + [anon_sym_NULL] = ACTIONS(3881), + [anon_sym_nullptr] = ACTIONS(3881), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3881), + [anon_sym_decltype] = ACTIONS(3881), + [anon_sym_explicit] = ACTIONS(3881), + [anon_sym_export] = ACTIONS(3881), + [anon_sym_module] = ACTIONS(3881), + [anon_sym_import] = ACTIONS(3881), + [anon_sym_template] = ACTIONS(3881), + [anon_sym_operator] = ACTIONS(3881), + [anon_sym_try] = ACTIONS(3881), + [anon_sym_delete] = ACTIONS(3881), + [anon_sym_throw] = ACTIONS(3881), + [anon_sym_namespace] = ACTIONS(3881), + [anon_sym_static_assert] = ACTIONS(3881), + [anon_sym_concept] = ACTIONS(3881), + [anon_sym_co_return] = ACTIONS(3881), + [anon_sym_co_yield] = ACTIONS(3881), + [anon_sym_R_DQUOTE] = ACTIONS(3883), + [anon_sym_LR_DQUOTE] = ACTIONS(3883), + [anon_sym_uR_DQUOTE] = ACTIONS(3883), + [anon_sym_UR_DQUOTE] = ACTIONS(3883), + [anon_sym_u8R_DQUOTE] = ACTIONS(3883), + [anon_sym_co_await] = ACTIONS(3881), + [anon_sym_new] = ACTIONS(3881), + [anon_sym_requires] = ACTIONS(3881), + [anon_sym_CARET_CARET] = ACTIONS(3883), + [anon_sym_LBRACK_COLON] = ACTIONS(3883), + [sym_this] = ACTIONS(3881), }, [STATE(778)] = { - [sym_identifier] = ACTIONS(3540), - [aux_sym_preproc_include_token1] = ACTIONS(3540), - [aux_sym_preproc_def_token1] = ACTIONS(3540), - [aux_sym_preproc_if_token1] = ACTIONS(3540), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3540), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3540), - [sym_preproc_directive] = ACTIONS(3540), - [anon_sym_LPAREN2] = ACTIONS(3542), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_STAR] = ACTIONS(3542), - [anon_sym_AMP_AMP] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3540), - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym___extension__] = ACTIONS(3540), - [anon_sym_typedef] = ACTIONS(3540), - [anon_sym_virtual] = ACTIONS(3540), - [anon_sym_extern] = ACTIONS(3540), - [anon_sym___attribute__] = ACTIONS(3540), - [anon_sym___attribute] = ACTIONS(3540), - [anon_sym_using] = ACTIONS(3540), - [anon_sym_COLON_COLON] = ACTIONS(3542), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), - [anon_sym___declspec] = ACTIONS(3540), - [anon_sym___based] = ACTIONS(3540), - [anon_sym___cdecl] = ACTIONS(3540), - [anon_sym___clrcall] = ACTIONS(3540), - [anon_sym___stdcall] = ACTIONS(3540), - [anon_sym___fastcall] = ACTIONS(3540), - [anon_sym___thiscall] = ACTIONS(3540), - [anon_sym___vectorcall] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3542), - [anon_sym_RBRACE] = ACTIONS(3542), - [anon_sym_signed] = ACTIONS(3540), - [anon_sym_unsigned] = ACTIONS(3540), - [anon_sym_long] = ACTIONS(3540), - [anon_sym_short] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_register] = ACTIONS(3540), - [anon_sym_inline] = ACTIONS(3540), - [anon_sym___inline] = ACTIONS(3540), - [anon_sym___inline__] = ACTIONS(3540), - [anon_sym___forceinline] = ACTIONS(3540), - [anon_sym_thread_local] = ACTIONS(3540), - [anon_sym___thread] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_constexpr] = ACTIONS(3540), - [anon_sym_volatile] = ACTIONS(3540), - [anon_sym_restrict] = ACTIONS(3540), - [anon_sym___restrict__] = ACTIONS(3540), - [anon_sym__Atomic] = ACTIONS(3540), - [anon_sym__Noreturn] = ACTIONS(3540), - [anon_sym_noreturn] = ACTIONS(3540), - [anon_sym__Nonnull] = ACTIONS(3540), - [anon_sym_mutable] = ACTIONS(3540), - [anon_sym_constinit] = ACTIONS(3540), - [anon_sym_consteval] = ACTIONS(3540), - [anon_sym_alignas] = ACTIONS(3540), - [anon_sym__Alignas] = ACTIONS(3540), - [sym_primitive_type] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(3540), - [anon_sym_class] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(3540), - [anon_sym_union] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_else] = ACTIONS(3540), - [anon_sym_switch] = ACTIONS(3540), - [anon_sym_case] = ACTIONS(3540), - [anon_sym_default] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_do] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_goto] = ACTIONS(3540), - [anon_sym___try] = ACTIONS(3540), - [anon_sym___leave] = ACTIONS(3540), - [anon_sym_not] = ACTIONS(3540), - [anon_sym_compl] = ACTIONS(3540), - [anon_sym_DASH_DASH] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_sizeof] = ACTIONS(3540), - [anon_sym___alignof__] = ACTIONS(3540), - [anon_sym___alignof] = ACTIONS(3540), - [anon_sym__alignof] = ACTIONS(3540), - [anon_sym_alignof] = ACTIONS(3540), - [anon_sym__Alignof] = ACTIONS(3540), - [anon_sym_offsetof] = ACTIONS(3540), - [anon_sym__Generic] = ACTIONS(3540), - [anon_sym_typename] = ACTIONS(3540), - [anon_sym_asm] = ACTIONS(3540), - [anon_sym___asm__] = ACTIONS(3540), - [anon_sym___asm] = ACTIONS(3540), - [sym_number_literal] = ACTIONS(3542), - [anon_sym_L_SQUOTE] = ACTIONS(3542), - [anon_sym_u_SQUOTE] = ACTIONS(3542), - [anon_sym_U_SQUOTE] = ACTIONS(3542), - [anon_sym_u8_SQUOTE] = ACTIONS(3542), - [anon_sym_SQUOTE] = ACTIONS(3542), - [anon_sym_L_DQUOTE] = ACTIONS(3542), - [anon_sym_u_DQUOTE] = ACTIONS(3542), - [anon_sym_U_DQUOTE] = ACTIONS(3542), - [anon_sym_u8_DQUOTE] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3542), - [sym_true] = ACTIONS(3540), - [sym_false] = ACTIONS(3540), - [anon_sym_NULL] = ACTIONS(3540), - [anon_sym_nullptr] = ACTIONS(3540), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3540), - [anon_sym_decltype] = ACTIONS(3540), - [anon_sym_explicit] = ACTIONS(3540), - [anon_sym_export] = ACTIONS(3540), - [anon_sym_import] = ACTIONS(3540), - [anon_sym_template] = ACTIONS(3540), - [anon_sym_operator] = ACTIONS(3540), - [anon_sym_try] = ACTIONS(3540), - [anon_sym_delete] = ACTIONS(3540), - [anon_sym_throw] = ACTIONS(3540), - [anon_sym_namespace] = ACTIONS(3540), - [anon_sym_static_assert] = ACTIONS(3540), - [anon_sym_concept] = ACTIONS(3540), - [anon_sym_co_return] = ACTIONS(3540), - [anon_sym_co_yield] = ACTIONS(3540), - [anon_sym_R_DQUOTE] = ACTIONS(3542), - [anon_sym_LR_DQUOTE] = ACTIONS(3542), - [anon_sym_uR_DQUOTE] = ACTIONS(3542), - [anon_sym_UR_DQUOTE] = ACTIONS(3542), - [anon_sym_u8R_DQUOTE] = ACTIONS(3542), - [anon_sym_co_await] = ACTIONS(3540), - [anon_sym_new] = ACTIONS(3540), - [anon_sym_requires] = ACTIONS(3540), - [anon_sym_CARET_CARET] = ACTIONS(3542), - [anon_sym_LBRACK_COLON] = ACTIONS(3542), - [sym_this] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_include_token1] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym___cdecl] = ACTIONS(3518), + [anon_sym___clrcall] = ACTIONS(3518), + [anon_sym___stdcall] = ACTIONS(3518), + [anon_sym___fastcall] = ACTIONS(3518), + [anon_sym___thiscall] = ACTIONS(3518), + [anon_sym___vectorcall] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym___try] = ACTIONS(3518), + [anon_sym___leave] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(3518), + [anon_sym_compl] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [anon_sym___alignof__] = ACTIONS(3518), + [anon_sym___alignof] = ACTIONS(3518), + [anon_sym__alignof] = ACTIONS(3518), + [anon_sym_alignof] = ACTIONS(3518), + [anon_sym__Alignof] = ACTIONS(3518), + [anon_sym_offsetof] = ACTIONS(3518), + [anon_sym__Generic] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [anon_sym_asm] = ACTIONS(3518), + [anon_sym___asm__] = ACTIONS(3518), + [anon_sym___asm] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [anon_sym_L_SQUOTE] = ACTIONS(3520), + [anon_sym_u_SQUOTE] = ACTIONS(3520), + [anon_sym_U_SQUOTE] = ACTIONS(3520), + [anon_sym_u8_SQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_L_DQUOTE] = ACTIONS(3520), + [anon_sym_u_DQUOTE] = ACTIONS(3520), + [anon_sym_U_DQUOTE] = ACTIONS(3520), + [anon_sym_u8_DQUOTE] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [anon_sym_NULL] = ACTIONS(3518), + [anon_sym_nullptr] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_concept] = ACTIONS(3518), + [anon_sym_co_return] = ACTIONS(3518), + [anon_sym_co_yield] = ACTIONS(3518), + [anon_sym_R_DQUOTE] = ACTIONS(3520), + [anon_sym_LR_DQUOTE] = ACTIONS(3520), + [anon_sym_uR_DQUOTE] = ACTIONS(3520), + [anon_sym_UR_DQUOTE] = ACTIONS(3520), + [anon_sym_u8R_DQUOTE] = ACTIONS(3520), + [anon_sym_co_await] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_requires] = ACTIONS(3518), + [anon_sym_CARET_CARET] = ACTIONS(3520), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + [sym_this] = ACTIONS(3518), }, [STATE(779)] = { - [sym_identifier] = ACTIONS(3544), - [aux_sym_preproc_include_token1] = ACTIONS(3544), - [aux_sym_preproc_def_token1] = ACTIONS(3544), - [aux_sym_preproc_if_token1] = ACTIONS(3544), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3544), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3544), - [sym_preproc_directive] = ACTIONS(3544), - [anon_sym_LPAREN2] = ACTIONS(3546), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_STAR] = ACTIONS(3546), - [anon_sym_AMP_AMP] = ACTIONS(3546), - [anon_sym_AMP] = ACTIONS(3544), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym___extension__] = ACTIONS(3544), - [anon_sym_typedef] = ACTIONS(3544), - [anon_sym_virtual] = ACTIONS(3544), - [anon_sym_extern] = ACTIONS(3544), - [anon_sym___attribute__] = ACTIONS(3544), - [anon_sym___attribute] = ACTIONS(3544), - [anon_sym_using] = ACTIONS(3544), - [anon_sym_COLON_COLON] = ACTIONS(3546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3546), - [anon_sym___declspec] = ACTIONS(3544), - [anon_sym___based] = ACTIONS(3544), - [anon_sym___cdecl] = ACTIONS(3544), - [anon_sym___clrcall] = ACTIONS(3544), - [anon_sym___stdcall] = ACTIONS(3544), - [anon_sym___fastcall] = ACTIONS(3544), - [anon_sym___thiscall] = ACTIONS(3544), - [anon_sym___vectorcall] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_RBRACE] = ACTIONS(3546), - [anon_sym_signed] = ACTIONS(3544), - [anon_sym_unsigned] = ACTIONS(3544), - [anon_sym_long] = ACTIONS(3544), - [anon_sym_short] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_register] = ACTIONS(3544), - [anon_sym_inline] = ACTIONS(3544), - [anon_sym___inline] = ACTIONS(3544), - [anon_sym___inline__] = ACTIONS(3544), - [anon_sym___forceinline] = ACTIONS(3544), - [anon_sym_thread_local] = ACTIONS(3544), - [anon_sym___thread] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_constexpr] = ACTIONS(3544), - [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(3544), - [anon_sym__Alignas] = ACTIONS(3544), - [sym_primitive_type] = ACTIONS(3544), - [anon_sym_enum] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3544), - [anon_sym_struct] = ACTIONS(3544), - [anon_sym_union] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3544), - [anon_sym_else] = ACTIONS(3544), - [anon_sym_switch] = ACTIONS(3544), - [anon_sym_case] = ACTIONS(3544), - [anon_sym_default] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_do] = ACTIONS(3544), - [anon_sym_for] = ACTIONS(3544), - [anon_sym_return] = ACTIONS(3544), - [anon_sym_break] = ACTIONS(3544), - [anon_sym_continue] = ACTIONS(3544), - [anon_sym_goto] = ACTIONS(3544), - [anon_sym___try] = ACTIONS(3544), - [anon_sym___leave] = ACTIONS(3544), - [anon_sym_not] = ACTIONS(3544), - [anon_sym_compl] = ACTIONS(3544), - [anon_sym_DASH_DASH] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_sizeof] = ACTIONS(3544), - [anon_sym___alignof__] = ACTIONS(3544), - [anon_sym___alignof] = ACTIONS(3544), - [anon_sym__alignof] = ACTIONS(3544), - [anon_sym_alignof] = ACTIONS(3544), - [anon_sym__Alignof] = ACTIONS(3544), - [anon_sym_offsetof] = ACTIONS(3544), - [anon_sym__Generic] = ACTIONS(3544), - [anon_sym_typename] = ACTIONS(3544), - [anon_sym_asm] = ACTIONS(3544), - [anon_sym___asm__] = ACTIONS(3544), - [anon_sym___asm] = ACTIONS(3544), - [sym_number_literal] = ACTIONS(3546), - [anon_sym_L_SQUOTE] = ACTIONS(3546), - [anon_sym_u_SQUOTE] = ACTIONS(3546), - [anon_sym_U_SQUOTE] = ACTIONS(3546), - [anon_sym_u8_SQUOTE] = ACTIONS(3546), - [anon_sym_SQUOTE] = ACTIONS(3546), - [anon_sym_L_DQUOTE] = ACTIONS(3546), - [anon_sym_u_DQUOTE] = ACTIONS(3546), - [anon_sym_U_DQUOTE] = ACTIONS(3546), - [anon_sym_u8_DQUOTE] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(3546), - [sym_true] = ACTIONS(3544), - [sym_false] = ACTIONS(3544), - [anon_sym_NULL] = ACTIONS(3544), - [anon_sym_nullptr] = ACTIONS(3544), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3544), - [anon_sym_decltype] = ACTIONS(3544), - [anon_sym_explicit] = ACTIONS(3544), - [anon_sym_export] = ACTIONS(3544), - [anon_sym_import] = ACTIONS(3544), - [anon_sym_template] = ACTIONS(3544), - [anon_sym_operator] = ACTIONS(3544), - [anon_sym_try] = ACTIONS(3544), - [anon_sym_delete] = ACTIONS(3544), - [anon_sym_throw] = ACTIONS(3544), - [anon_sym_namespace] = ACTIONS(3544), - [anon_sym_static_assert] = ACTIONS(3544), - [anon_sym_concept] = ACTIONS(3544), - [anon_sym_co_return] = ACTIONS(3544), - [anon_sym_co_yield] = ACTIONS(3544), - [anon_sym_R_DQUOTE] = ACTIONS(3546), - [anon_sym_LR_DQUOTE] = ACTIONS(3546), - [anon_sym_uR_DQUOTE] = ACTIONS(3546), - [anon_sym_UR_DQUOTE] = ACTIONS(3546), - [anon_sym_u8R_DQUOTE] = ACTIONS(3546), - [anon_sym_co_await] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_requires] = ACTIONS(3544), - [anon_sym_CARET_CARET] = ACTIONS(3546), - [anon_sym_LBRACK_COLON] = ACTIONS(3546), - [sym_this] = ACTIONS(3544), + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_include_token1] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token2] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_BANG] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym___cdecl] = ACTIONS(3782), + [anon_sym___clrcall] = ACTIONS(3782), + [anon_sym___stdcall] = ACTIONS(3782), + [anon_sym___fastcall] = ACTIONS(3782), + [anon_sym___thiscall] = ACTIONS(3782), + [anon_sym___vectorcall] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3784), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_switch] = ACTIONS(3782), + [anon_sym_case] = ACTIONS(3782), + [anon_sym_default] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_break] = ACTIONS(3782), + [anon_sym_continue] = ACTIONS(3782), + [anon_sym_goto] = ACTIONS(3782), + [anon_sym___try] = ACTIONS(3782), + [anon_sym___leave] = ACTIONS(3782), + [anon_sym_not] = ACTIONS(3782), + [anon_sym_compl] = ACTIONS(3782), + [anon_sym_DASH_DASH] = ACTIONS(3784), + [anon_sym_PLUS_PLUS] = ACTIONS(3784), + [anon_sym_sizeof] = ACTIONS(3782), + [anon_sym___alignof__] = ACTIONS(3782), + [anon_sym___alignof] = ACTIONS(3782), + [anon_sym__alignof] = ACTIONS(3782), + [anon_sym_alignof] = ACTIONS(3782), + [anon_sym__Alignof] = ACTIONS(3782), + [anon_sym_offsetof] = ACTIONS(3782), + [anon_sym__Generic] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [anon_sym_asm] = ACTIONS(3782), + [anon_sym___asm__] = ACTIONS(3782), + [anon_sym___asm] = ACTIONS(3782), + [sym_number_literal] = ACTIONS(3784), + [anon_sym_L_SQUOTE] = ACTIONS(3784), + [anon_sym_u_SQUOTE] = ACTIONS(3784), + [anon_sym_U_SQUOTE] = ACTIONS(3784), + [anon_sym_u8_SQUOTE] = ACTIONS(3784), + [anon_sym_SQUOTE] = ACTIONS(3784), + [anon_sym_L_DQUOTE] = ACTIONS(3784), + [anon_sym_u_DQUOTE] = ACTIONS(3784), + [anon_sym_U_DQUOTE] = ACTIONS(3784), + [anon_sym_u8_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [anon_sym_NULL] = ACTIONS(3782), + [anon_sym_nullptr] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_export] = ACTIONS(3782), + [anon_sym_module] = ACTIONS(3782), + [anon_sym_import] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_delete] = ACTIONS(3782), + [anon_sym_throw] = ACTIONS(3782), + [anon_sym_namespace] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_concept] = ACTIONS(3782), + [anon_sym_co_return] = ACTIONS(3782), + [anon_sym_co_yield] = ACTIONS(3782), + [anon_sym_R_DQUOTE] = ACTIONS(3784), + [anon_sym_LR_DQUOTE] = ACTIONS(3784), + [anon_sym_uR_DQUOTE] = ACTIONS(3784), + [anon_sym_UR_DQUOTE] = ACTIONS(3784), + [anon_sym_u8R_DQUOTE] = ACTIONS(3784), + [anon_sym_co_await] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_requires] = ACTIONS(3782), + [anon_sym_CARET_CARET] = ACTIONS(3784), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), + [sym_this] = ACTIONS(3782), }, [STATE(780)] = { - [sym_identifier] = ACTIONS(4008), - [aux_sym_preproc_include_token1] = ACTIONS(4008), - [aux_sym_preproc_def_token1] = ACTIONS(4008), - [aux_sym_preproc_if_token1] = ACTIONS(4008), - [aux_sym_preproc_if_token2] = ACTIONS(4008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4008), - [sym_preproc_directive] = ACTIONS(4008), - [anon_sym_LPAREN2] = ACTIONS(4010), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_TILDE] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym___extension__] = ACTIONS(4008), - [anon_sym_typedef] = ACTIONS(4008), - [anon_sym_virtual] = ACTIONS(4008), - [anon_sym_extern] = ACTIONS(4008), - [anon_sym___attribute__] = ACTIONS(4008), - [anon_sym___attribute] = ACTIONS(4008), - [anon_sym_using] = ACTIONS(4008), - [anon_sym_COLON_COLON] = ACTIONS(4010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4010), - [anon_sym___declspec] = ACTIONS(4008), - [anon_sym___based] = ACTIONS(4008), - [anon_sym___cdecl] = ACTIONS(4008), - [anon_sym___clrcall] = ACTIONS(4008), - [anon_sym___stdcall] = ACTIONS(4008), - [anon_sym___fastcall] = ACTIONS(4008), - [anon_sym___thiscall] = ACTIONS(4008), - [anon_sym___vectorcall] = ACTIONS(4008), - [anon_sym_LBRACE] = ACTIONS(4010), - [anon_sym_signed] = ACTIONS(4008), - [anon_sym_unsigned] = ACTIONS(4008), - [anon_sym_long] = ACTIONS(4008), - [anon_sym_short] = ACTIONS(4008), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_static] = ACTIONS(4008), - [anon_sym_register] = ACTIONS(4008), - [anon_sym_inline] = ACTIONS(4008), - [anon_sym___inline] = ACTIONS(4008), - [anon_sym___inline__] = ACTIONS(4008), - [anon_sym___forceinline] = ACTIONS(4008), - [anon_sym_thread_local] = ACTIONS(4008), - [anon_sym___thread] = ACTIONS(4008), - [anon_sym_const] = ACTIONS(4008), - [anon_sym_constexpr] = ACTIONS(4008), - [anon_sym_volatile] = ACTIONS(4008), - [anon_sym_restrict] = ACTIONS(4008), - [anon_sym___restrict__] = ACTIONS(4008), - [anon_sym__Atomic] = ACTIONS(4008), - [anon_sym__Noreturn] = ACTIONS(4008), - [anon_sym_noreturn] = ACTIONS(4008), - [anon_sym__Nonnull] = ACTIONS(4008), - [anon_sym_mutable] = ACTIONS(4008), - [anon_sym_constinit] = ACTIONS(4008), - [anon_sym_consteval] = ACTIONS(4008), - [anon_sym_alignas] = ACTIONS(4008), - [anon_sym__Alignas] = ACTIONS(4008), - [sym_primitive_type] = ACTIONS(4008), - [anon_sym_enum] = ACTIONS(4008), - [anon_sym_class] = ACTIONS(4008), - [anon_sym_struct] = ACTIONS(4008), - [anon_sym_union] = ACTIONS(4008), - [anon_sym_if] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4008), - [anon_sym_case] = ACTIONS(4008), - [anon_sym_default] = ACTIONS(4008), - [anon_sym_while] = ACTIONS(4008), - [anon_sym_do] = ACTIONS(4008), - [anon_sym_for] = ACTIONS(4008), - [anon_sym_return] = ACTIONS(4008), - [anon_sym_break] = ACTIONS(4008), - [anon_sym_continue] = ACTIONS(4008), - [anon_sym_goto] = ACTIONS(4008), - [anon_sym___try] = ACTIONS(4008), - [anon_sym___leave] = ACTIONS(4008), - [anon_sym_not] = ACTIONS(4008), - [anon_sym_compl] = ACTIONS(4008), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_sizeof] = ACTIONS(4008), - [anon_sym___alignof__] = ACTIONS(4008), - [anon_sym___alignof] = ACTIONS(4008), - [anon_sym__alignof] = ACTIONS(4008), - [anon_sym_alignof] = ACTIONS(4008), - [anon_sym__Alignof] = ACTIONS(4008), - [anon_sym_offsetof] = ACTIONS(4008), - [anon_sym__Generic] = ACTIONS(4008), - [anon_sym_typename] = ACTIONS(4008), - [anon_sym_asm] = ACTIONS(4008), - [anon_sym___asm__] = ACTIONS(4008), - [anon_sym___asm] = ACTIONS(4008), - [sym_number_literal] = ACTIONS(4010), - [anon_sym_L_SQUOTE] = ACTIONS(4010), - [anon_sym_u_SQUOTE] = ACTIONS(4010), - [anon_sym_U_SQUOTE] = ACTIONS(4010), - [anon_sym_u8_SQUOTE] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4010), - [anon_sym_L_DQUOTE] = ACTIONS(4010), - [anon_sym_u_DQUOTE] = ACTIONS(4010), - [anon_sym_U_DQUOTE] = ACTIONS(4010), - [anon_sym_u8_DQUOTE] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [sym_true] = ACTIONS(4008), - [sym_false] = ACTIONS(4008), - [anon_sym_NULL] = ACTIONS(4008), - [anon_sym_nullptr] = ACTIONS(4008), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4008), - [anon_sym_decltype] = ACTIONS(4008), - [anon_sym_explicit] = ACTIONS(4008), - [anon_sym_export] = ACTIONS(4008), - [anon_sym_module] = ACTIONS(4008), - [anon_sym_import] = ACTIONS(4008), - [anon_sym_template] = ACTIONS(4008), - [anon_sym_operator] = ACTIONS(4008), - [anon_sym_try] = ACTIONS(4008), - [anon_sym_delete] = ACTIONS(4008), - [anon_sym_throw] = ACTIONS(4008), - [anon_sym_namespace] = ACTIONS(4008), - [anon_sym_static_assert] = ACTIONS(4008), - [anon_sym_concept] = ACTIONS(4008), - [anon_sym_co_return] = ACTIONS(4008), - [anon_sym_co_yield] = ACTIONS(4008), - [anon_sym_R_DQUOTE] = ACTIONS(4010), - [anon_sym_LR_DQUOTE] = ACTIONS(4010), - [anon_sym_uR_DQUOTE] = ACTIONS(4010), - [anon_sym_UR_DQUOTE] = ACTIONS(4010), - [anon_sym_u8R_DQUOTE] = ACTIONS(4010), - [anon_sym_co_await] = ACTIONS(4008), - [anon_sym_new] = ACTIONS(4008), - [anon_sym_requires] = ACTIONS(4008), - [anon_sym_CARET_CARET] = ACTIONS(4010), - [anon_sym_LBRACK_COLON] = ACTIONS(4010), - [sym_this] = ACTIONS(4008), + [sym_identifier] = ACTIONS(3714), + [aux_sym_preproc_include_token1] = ACTIONS(3714), + [aux_sym_preproc_def_token1] = ACTIONS(3714), + [aux_sym_preproc_if_token1] = ACTIONS(3714), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3714), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3714), + [sym_preproc_directive] = ACTIONS(3714), + [anon_sym_LPAREN2] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3714), + [anon_sym_PLUS] = ACTIONS(3714), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_AMP_AMP] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3714), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym___extension__] = ACTIONS(3714), + [anon_sym_typedef] = ACTIONS(3714), + [anon_sym_virtual] = ACTIONS(3714), + [anon_sym_extern] = ACTIONS(3714), + [anon_sym___attribute__] = ACTIONS(3714), + [anon_sym___attribute] = ACTIONS(3714), + [anon_sym_using] = ACTIONS(3714), + [anon_sym_COLON_COLON] = ACTIONS(3716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3716), + [anon_sym___declspec] = ACTIONS(3714), + [anon_sym___based] = ACTIONS(3714), + [anon_sym___cdecl] = ACTIONS(3714), + [anon_sym___clrcall] = ACTIONS(3714), + [anon_sym___stdcall] = ACTIONS(3714), + [anon_sym___fastcall] = ACTIONS(3714), + [anon_sym___thiscall] = ACTIONS(3714), + [anon_sym___vectorcall] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_RBRACE] = ACTIONS(3716), + [anon_sym_signed] = ACTIONS(3714), + [anon_sym_unsigned] = ACTIONS(3714), + [anon_sym_long] = ACTIONS(3714), + [anon_sym_short] = ACTIONS(3714), + [anon_sym_LBRACK] = ACTIONS(3714), + [anon_sym_static] = ACTIONS(3714), + [anon_sym_register] = ACTIONS(3714), + [anon_sym_inline] = ACTIONS(3714), + [anon_sym___inline] = ACTIONS(3714), + [anon_sym___inline__] = ACTIONS(3714), + [anon_sym___forceinline] = ACTIONS(3714), + [anon_sym_thread_local] = ACTIONS(3714), + [anon_sym___thread] = ACTIONS(3714), + [anon_sym_const] = ACTIONS(3714), + [anon_sym_constexpr] = ACTIONS(3714), + [anon_sym_volatile] = ACTIONS(3714), + [anon_sym_restrict] = ACTIONS(3714), + [anon_sym___restrict__] = ACTIONS(3714), + [anon_sym__Atomic] = ACTIONS(3714), + [anon_sym__Noreturn] = ACTIONS(3714), + [anon_sym_noreturn] = ACTIONS(3714), + [anon_sym__Nonnull] = ACTIONS(3714), + [anon_sym_mutable] = ACTIONS(3714), + [anon_sym_constinit] = ACTIONS(3714), + [anon_sym_consteval] = ACTIONS(3714), + [anon_sym_alignas] = ACTIONS(3714), + [anon_sym__Alignas] = ACTIONS(3714), + [sym_primitive_type] = ACTIONS(3714), + [anon_sym_enum] = ACTIONS(3714), + [anon_sym_class] = ACTIONS(3714), + [anon_sym_struct] = ACTIONS(3714), + [anon_sym_union] = ACTIONS(3714), + [anon_sym_if] = ACTIONS(3714), + [anon_sym_switch] = ACTIONS(3714), + [anon_sym_case] = ACTIONS(3714), + [anon_sym_default] = ACTIONS(3714), + [anon_sym_while] = ACTIONS(3714), + [anon_sym_do] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3714), + [anon_sym_return] = ACTIONS(3714), + [anon_sym_break] = ACTIONS(3714), + [anon_sym_continue] = ACTIONS(3714), + [anon_sym_goto] = ACTIONS(3714), + [anon_sym___try] = ACTIONS(3714), + [anon_sym___leave] = ACTIONS(3714), + [anon_sym_not] = ACTIONS(3714), + [anon_sym_compl] = ACTIONS(3714), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(3714), + [anon_sym___alignof] = ACTIONS(3714), + [anon_sym__alignof] = ACTIONS(3714), + [anon_sym_alignof] = ACTIONS(3714), + [anon_sym__Alignof] = ACTIONS(3714), + [anon_sym_offsetof] = ACTIONS(3714), + [anon_sym__Generic] = ACTIONS(3714), + [anon_sym_typename] = ACTIONS(3714), + [anon_sym_asm] = ACTIONS(3714), + [anon_sym___asm__] = ACTIONS(3714), + [anon_sym___asm] = ACTIONS(3714), + [sym_number_literal] = ACTIONS(3716), + [anon_sym_L_SQUOTE] = ACTIONS(3716), + [anon_sym_u_SQUOTE] = ACTIONS(3716), + [anon_sym_U_SQUOTE] = ACTIONS(3716), + [anon_sym_u8_SQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_L_DQUOTE] = ACTIONS(3716), + [anon_sym_u_DQUOTE] = ACTIONS(3716), + [anon_sym_U_DQUOTE] = ACTIONS(3716), + [anon_sym_u8_DQUOTE] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [sym_true] = ACTIONS(3714), + [sym_false] = ACTIONS(3714), + [anon_sym_NULL] = ACTIONS(3714), + [anon_sym_nullptr] = ACTIONS(3714), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3714), + [anon_sym_decltype] = ACTIONS(3714), + [anon_sym_explicit] = ACTIONS(3714), + [anon_sym_export] = ACTIONS(3714), + [anon_sym_import] = ACTIONS(3714), + [anon_sym_template] = ACTIONS(3714), + [anon_sym_operator] = ACTIONS(3714), + [anon_sym_try] = ACTIONS(3714), + [anon_sym_delete] = ACTIONS(3714), + [anon_sym_throw] = ACTIONS(3714), + [anon_sym_namespace] = ACTIONS(3714), + [anon_sym_static_assert] = ACTIONS(3714), + [anon_sym_concept] = ACTIONS(3714), + [anon_sym_co_return] = ACTIONS(3714), + [anon_sym_co_yield] = ACTIONS(3714), + [anon_sym_R_DQUOTE] = ACTIONS(3716), + [anon_sym_LR_DQUOTE] = ACTIONS(3716), + [anon_sym_uR_DQUOTE] = ACTIONS(3716), + [anon_sym_UR_DQUOTE] = ACTIONS(3716), + [anon_sym_u8R_DQUOTE] = ACTIONS(3716), + [anon_sym_co_await] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3714), + [anon_sym_requires] = ACTIONS(3714), + [anon_sym_CARET_CARET] = ACTIONS(3716), + [anon_sym_LBRACK_COLON] = ACTIONS(3716), + [sym_this] = ACTIONS(3714), }, [STATE(781)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_include_token1] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym___cdecl] = ACTIONS(4270), - [anon_sym___clrcall] = ACTIONS(4270), - [anon_sym___stdcall] = ACTIONS(4270), - [anon_sym___fastcall] = ACTIONS(4270), - [anon_sym___thiscall] = ACTIONS(4270), - [anon_sym___vectorcall] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_switch] = ACTIONS(4270), - [anon_sym_case] = ACTIONS(4270), - [anon_sym_default] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_do] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_goto] = ACTIONS(4270), - [anon_sym___try] = ACTIONS(4270), - [anon_sym___leave] = ACTIONS(4270), - [anon_sym_not] = ACTIONS(4270), - [anon_sym_compl] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_sizeof] = ACTIONS(4270), - [anon_sym___alignof__] = ACTIONS(4270), - [anon_sym___alignof] = ACTIONS(4270), - [anon_sym__alignof] = ACTIONS(4270), - [anon_sym_alignof] = ACTIONS(4270), - [anon_sym__Alignof] = ACTIONS(4270), - [anon_sym_offsetof] = ACTIONS(4270), - [anon_sym__Generic] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4270), - [anon_sym___asm__] = ACTIONS(4270), - [anon_sym___asm] = ACTIONS(4270), - [sym_number_literal] = ACTIONS(4272), - [anon_sym_L_SQUOTE] = ACTIONS(4272), - [anon_sym_u_SQUOTE] = ACTIONS(4272), - [anon_sym_U_SQUOTE] = ACTIONS(4272), - [anon_sym_u8_SQUOTE] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4272), - [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(4270), - [sym_false] = ACTIONS(4270), - [anon_sym_NULL] = ACTIONS(4270), - [anon_sym_nullptr] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_export] = ACTIONS(4270), - [anon_sym_import] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_delete] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_namespace] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_concept] = ACTIONS(4270), - [anon_sym_co_return] = ACTIONS(4270), - [anon_sym_co_yield] = ACTIONS(4270), - [anon_sym_R_DQUOTE] = ACTIONS(4272), - [anon_sym_LR_DQUOTE] = ACTIONS(4272), - [anon_sym_uR_DQUOTE] = ACTIONS(4272), - [anon_sym_UR_DQUOTE] = ACTIONS(4272), - [anon_sym_u8R_DQUOTE] = ACTIONS(4272), - [anon_sym_co_await] = ACTIONS(4270), - [anon_sym_new] = ACTIONS(4270), - [anon_sym_requires] = ACTIONS(4270), - [anon_sym_CARET_CARET] = ACTIONS(4272), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - [sym_this] = ACTIONS(4270), + [sym_identifier] = ACTIONS(4219), + [aux_sym_preproc_include_token1] = ACTIONS(4219), + [aux_sym_preproc_def_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4219), + [sym_preproc_directive] = ACTIONS(4219), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym___extension__] = ACTIONS(4219), + [anon_sym_typedef] = ACTIONS(4219), + [anon_sym_virtual] = ACTIONS(4219), + [anon_sym_extern] = ACTIONS(4219), + [anon_sym___attribute__] = ACTIONS(4219), + [anon_sym___attribute] = ACTIONS(4219), + [anon_sym_using] = ACTIONS(4219), + [anon_sym_COLON_COLON] = ACTIONS(4221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4221), + [anon_sym___declspec] = ACTIONS(4219), + [anon_sym___based] = ACTIONS(4219), + [anon_sym___cdecl] = ACTIONS(4219), + [anon_sym___clrcall] = ACTIONS(4219), + [anon_sym___stdcall] = ACTIONS(4219), + [anon_sym___fastcall] = ACTIONS(4219), + [anon_sym___thiscall] = ACTIONS(4219), + [anon_sym___vectorcall] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4221), + [anon_sym_RBRACE] = ACTIONS(4221), + [anon_sym_signed] = ACTIONS(4219), + [anon_sym_unsigned] = ACTIONS(4219), + [anon_sym_long] = ACTIONS(4219), + [anon_sym_short] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_static] = ACTIONS(4219), + [anon_sym_register] = ACTIONS(4219), + [anon_sym_inline] = ACTIONS(4219), + [anon_sym___inline] = ACTIONS(4219), + [anon_sym___inline__] = ACTIONS(4219), + [anon_sym___forceinline] = ACTIONS(4219), + [anon_sym_thread_local] = ACTIONS(4219), + [anon_sym___thread] = ACTIONS(4219), + [anon_sym_const] = ACTIONS(4219), + [anon_sym_constexpr] = ACTIONS(4219), + [anon_sym_volatile] = ACTIONS(4219), + [anon_sym_restrict] = ACTIONS(4219), + [anon_sym___restrict__] = ACTIONS(4219), + [anon_sym__Atomic] = ACTIONS(4219), + [anon_sym__Noreturn] = ACTIONS(4219), + [anon_sym_noreturn] = ACTIONS(4219), + [anon_sym__Nonnull] = ACTIONS(4219), + [anon_sym_mutable] = ACTIONS(4219), + [anon_sym_constinit] = ACTIONS(4219), + [anon_sym_consteval] = ACTIONS(4219), + [anon_sym_alignas] = ACTIONS(4219), + [anon_sym__Alignas] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(4219), + [anon_sym_enum] = ACTIONS(4219), + [anon_sym_class] = ACTIONS(4219), + [anon_sym_struct] = ACTIONS(4219), + [anon_sym_union] = ACTIONS(4219), + [anon_sym_if] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_case] = ACTIONS(4219), + [anon_sym_default] = ACTIONS(4219), + [anon_sym_while] = ACTIONS(4219), + [anon_sym_do] = ACTIONS(4219), + [anon_sym_for] = ACTIONS(4219), + [anon_sym_return] = ACTIONS(4219), + [anon_sym_break] = ACTIONS(4219), + [anon_sym_continue] = ACTIONS(4219), + [anon_sym_goto] = ACTIONS(4219), + [anon_sym___try] = ACTIONS(4219), + [anon_sym___leave] = ACTIONS(4219), + [anon_sym_not] = ACTIONS(4219), + [anon_sym_compl] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_sizeof] = ACTIONS(4219), + [anon_sym___alignof__] = ACTIONS(4219), + [anon_sym___alignof] = ACTIONS(4219), + [anon_sym__alignof] = ACTIONS(4219), + [anon_sym_alignof] = ACTIONS(4219), + [anon_sym__Alignof] = ACTIONS(4219), + [anon_sym_offsetof] = ACTIONS(4219), + [anon_sym__Generic] = ACTIONS(4219), + [anon_sym_typename] = ACTIONS(4219), + [anon_sym_asm] = ACTIONS(4219), + [anon_sym___asm__] = ACTIONS(4219), + [anon_sym___asm] = ACTIONS(4219), + [sym_number_literal] = ACTIONS(4221), + [anon_sym_L_SQUOTE] = ACTIONS(4221), + [anon_sym_u_SQUOTE] = ACTIONS(4221), + [anon_sym_U_SQUOTE] = ACTIONS(4221), + [anon_sym_u8_SQUOTE] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_L_DQUOTE] = ACTIONS(4221), + [anon_sym_u_DQUOTE] = ACTIONS(4221), + [anon_sym_U_DQUOTE] = ACTIONS(4221), + [anon_sym_u8_DQUOTE] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4221), + [sym_true] = ACTIONS(4219), + [sym_false] = ACTIONS(4219), + [anon_sym_NULL] = ACTIONS(4219), + [anon_sym_nullptr] = ACTIONS(4219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4219), + [anon_sym_decltype] = ACTIONS(4219), + [anon_sym_explicit] = ACTIONS(4219), + [anon_sym_export] = ACTIONS(4219), + [anon_sym_import] = ACTIONS(4219), + [anon_sym_template] = ACTIONS(4219), + [anon_sym_operator] = ACTIONS(4219), + [anon_sym_try] = ACTIONS(4219), + [anon_sym_delete] = ACTIONS(4219), + [anon_sym_throw] = ACTIONS(4219), + [anon_sym_namespace] = ACTIONS(4219), + [anon_sym_static_assert] = ACTIONS(4219), + [anon_sym_concept] = ACTIONS(4219), + [anon_sym_co_return] = ACTIONS(4219), + [anon_sym_co_yield] = ACTIONS(4219), + [anon_sym_R_DQUOTE] = ACTIONS(4221), + [anon_sym_LR_DQUOTE] = ACTIONS(4221), + [anon_sym_uR_DQUOTE] = ACTIONS(4221), + [anon_sym_UR_DQUOTE] = ACTIONS(4221), + [anon_sym_u8R_DQUOTE] = ACTIONS(4221), + [anon_sym_co_await] = ACTIONS(4219), + [anon_sym_new] = ACTIONS(4219), + [anon_sym_requires] = ACTIONS(4219), + [anon_sym_CARET_CARET] = ACTIONS(4221), + [anon_sym_LBRACK_COLON] = ACTIONS(4221), + [sym_this] = ACTIONS(4219), }, [STATE(782)] = { - [sym_identifier] = ACTIONS(3962), - [aux_sym_preproc_include_token1] = ACTIONS(3962), - [aux_sym_preproc_def_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), - [sym_preproc_directive] = ACTIONS(3962), - [anon_sym_LPAREN2] = ACTIONS(3964), - [anon_sym_BANG] = ACTIONS(3964), - [anon_sym_TILDE] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym___extension__] = ACTIONS(3962), - [anon_sym_typedef] = ACTIONS(3962), - [anon_sym_virtual] = ACTIONS(3962), - [anon_sym_extern] = ACTIONS(3962), - [anon_sym___attribute__] = ACTIONS(3962), - [anon_sym___attribute] = ACTIONS(3962), - [anon_sym_using] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), - [anon_sym___declspec] = ACTIONS(3962), - [anon_sym___based] = ACTIONS(3962), - [anon_sym___cdecl] = ACTIONS(3962), - [anon_sym___clrcall] = ACTIONS(3962), - [anon_sym___stdcall] = ACTIONS(3962), - [anon_sym___fastcall] = ACTIONS(3962), - [anon_sym___thiscall] = ACTIONS(3962), - [anon_sym___vectorcall] = ACTIONS(3962), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_signed] = ACTIONS(3962), - [anon_sym_unsigned] = ACTIONS(3962), - [anon_sym_long] = ACTIONS(3962), - [anon_sym_short] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3962), - [anon_sym_register] = ACTIONS(3962), - [anon_sym_inline] = ACTIONS(3962), - [anon_sym___inline] = ACTIONS(3962), - [anon_sym___inline__] = ACTIONS(3962), - [anon_sym___forceinline] = ACTIONS(3962), - [anon_sym_thread_local] = ACTIONS(3962), - [anon_sym___thread] = ACTIONS(3962), - [anon_sym_const] = ACTIONS(3962), - [anon_sym_constexpr] = ACTIONS(3962), - [anon_sym_volatile] = ACTIONS(3962), - [anon_sym_restrict] = ACTIONS(3962), - [anon_sym___restrict__] = ACTIONS(3962), - [anon_sym__Atomic] = ACTIONS(3962), - [anon_sym__Noreturn] = ACTIONS(3962), - [anon_sym_noreturn] = ACTIONS(3962), - [anon_sym__Nonnull] = ACTIONS(3962), - [anon_sym_mutable] = ACTIONS(3962), - [anon_sym_constinit] = ACTIONS(3962), - [anon_sym_consteval] = ACTIONS(3962), - [anon_sym_alignas] = ACTIONS(3962), - [anon_sym__Alignas] = ACTIONS(3962), - [sym_primitive_type] = ACTIONS(3962), - [anon_sym_enum] = ACTIONS(3962), - [anon_sym_class] = ACTIONS(3962), - [anon_sym_struct] = ACTIONS(3962), - [anon_sym_union] = ACTIONS(3962), - [anon_sym_if] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3962), - [anon_sym_case] = ACTIONS(3962), - [anon_sym_default] = ACTIONS(3962), - [anon_sym_while] = ACTIONS(3962), - [anon_sym_do] = ACTIONS(3962), - [anon_sym_for] = ACTIONS(3962), - [anon_sym_return] = ACTIONS(3962), - [anon_sym_break] = ACTIONS(3962), - [anon_sym_continue] = ACTIONS(3962), - [anon_sym_goto] = ACTIONS(3962), - [anon_sym___try] = ACTIONS(3962), - [anon_sym___leave] = ACTIONS(3962), - [anon_sym_not] = ACTIONS(3962), - [anon_sym_compl] = ACTIONS(3962), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_sizeof] = ACTIONS(3962), - [anon_sym___alignof__] = ACTIONS(3962), - [anon_sym___alignof] = ACTIONS(3962), - [anon_sym__alignof] = ACTIONS(3962), - [anon_sym_alignof] = ACTIONS(3962), - [anon_sym__Alignof] = ACTIONS(3962), - [anon_sym_offsetof] = ACTIONS(3962), - [anon_sym__Generic] = ACTIONS(3962), - [anon_sym_typename] = ACTIONS(3962), - [anon_sym_asm] = ACTIONS(3962), - [anon_sym___asm__] = ACTIONS(3962), - [anon_sym___asm] = ACTIONS(3962), - [sym_number_literal] = ACTIONS(3964), - [anon_sym_L_SQUOTE] = ACTIONS(3964), - [anon_sym_u_SQUOTE] = ACTIONS(3964), - [anon_sym_U_SQUOTE] = ACTIONS(3964), - [anon_sym_u8_SQUOTE] = ACTIONS(3964), - [anon_sym_SQUOTE] = ACTIONS(3964), - [anon_sym_L_DQUOTE] = ACTIONS(3964), - [anon_sym_u_DQUOTE] = ACTIONS(3964), - [anon_sym_U_DQUOTE] = ACTIONS(3964), - [anon_sym_u8_DQUOTE] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym_true] = ACTIONS(3962), - [sym_false] = ACTIONS(3962), - [anon_sym_NULL] = ACTIONS(3962), - [anon_sym_nullptr] = ACTIONS(3962), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3962), - [anon_sym_decltype] = ACTIONS(3962), - [anon_sym_explicit] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3962), - [anon_sym_import] = ACTIONS(3962), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(3962), - [anon_sym_try] = ACTIONS(3962), - [anon_sym_delete] = ACTIONS(3962), - [anon_sym_throw] = ACTIONS(3962), - [anon_sym_namespace] = ACTIONS(3962), - [anon_sym_static_assert] = ACTIONS(3962), - [anon_sym_concept] = ACTIONS(3962), - [anon_sym_co_return] = ACTIONS(3962), - [anon_sym_co_yield] = ACTIONS(3962), - [anon_sym_R_DQUOTE] = ACTIONS(3964), - [anon_sym_LR_DQUOTE] = ACTIONS(3964), - [anon_sym_uR_DQUOTE] = ACTIONS(3964), - [anon_sym_UR_DQUOTE] = ACTIONS(3964), - [anon_sym_u8R_DQUOTE] = ACTIONS(3964), - [anon_sym_co_await] = ACTIONS(3962), - [anon_sym_new] = ACTIONS(3962), - [anon_sym_requires] = ACTIONS(3962), - [anon_sym_CARET_CARET] = ACTIONS(3964), - [anon_sym_LBRACK_COLON] = ACTIONS(3964), - [sym_this] = ACTIONS(3962), + [sym_identifier] = ACTIONS(3690), + [aux_sym_preproc_include_token1] = ACTIONS(3690), + [aux_sym_preproc_def_token1] = ACTIONS(3690), + [aux_sym_preproc_if_token1] = ACTIONS(3690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3690), + [sym_preproc_directive] = ACTIONS(3690), + [anon_sym_LPAREN2] = ACTIONS(3692), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym___extension__] = ACTIONS(3690), + [anon_sym_typedef] = ACTIONS(3690), + [anon_sym_virtual] = ACTIONS(3690), + [anon_sym_extern] = ACTIONS(3690), + [anon_sym___attribute__] = ACTIONS(3690), + [anon_sym___attribute] = ACTIONS(3690), + [anon_sym_using] = ACTIONS(3690), + [anon_sym_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3692), + [anon_sym___declspec] = ACTIONS(3690), + [anon_sym___based] = ACTIONS(3690), + [anon_sym___cdecl] = ACTIONS(3690), + [anon_sym___clrcall] = ACTIONS(3690), + [anon_sym___stdcall] = ACTIONS(3690), + [anon_sym___fastcall] = ACTIONS(3690), + [anon_sym___thiscall] = ACTIONS(3690), + [anon_sym___vectorcall] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_RBRACE] = ACTIONS(3692), + [anon_sym_signed] = ACTIONS(3690), + [anon_sym_unsigned] = ACTIONS(3690), + [anon_sym_long] = ACTIONS(3690), + [anon_sym_short] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_register] = ACTIONS(3690), + [anon_sym_inline] = ACTIONS(3690), + [anon_sym___inline] = ACTIONS(3690), + [anon_sym___inline__] = ACTIONS(3690), + [anon_sym___forceinline] = ACTIONS(3690), + [anon_sym_thread_local] = ACTIONS(3690), + [anon_sym___thread] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_constexpr] = ACTIONS(3690), + [anon_sym_volatile] = ACTIONS(3690), + [anon_sym_restrict] = ACTIONS(3690), + [anon_sym___restrict__] = ACTIONS(3690), + [anon_sym__Atomic] = ACTIONS(3690), + [anon_sym__Noreturn] = ACTIONS(3690), + [anon_sym_noreturn] = ACTIONS(3690), + [anon_sym__Nonnull] = ACTIONS(3690), + [anon_sym_mutable] = ACTIONS(3690), + [anon_sym_constinit] = ACTIONS(3690), + [anon_sym_consteval] = ACTIONS(3690), + [anon_sym_alignas] = ACTIONS(3690), + [anon_sym__Alignas] = ACTIONS(3690), + [sym_primitive_type] = ACTIONS(3690), + [anon_sym_enum] = ACTIONS(3690), + [anon_sym_class] = ACTIONS(3690), + [anon_sym_struct] = ACTIONS(3690), + [anon_sym_union] = ACTIONS(3690), + [anon_sym_if] = ACTIONS(3690), + [anon_sym_switch] = ACTIONS(3690), + [anon_sym_case] = ACTIONS(3690), + [anon_sym_default] = ACTIONS(3690), + [anon_sym_while] = ACTIONS(3690), + [anon_sym_do] = ACTIONS(3690), + [anon_sym_for] = ACTIONS(3690), + [anon_sym_return] = ACTIONS(3690), + [anon_sym_break] = ACTIONS(3690), + [anon_sym_continue] = ACTIONS(3690), + [anon_sym_goto] = ACTIONS(3690), + [anon_sym___try] = ACTIONS(3690), + [anon_sym___leave] = ACTIONS(3690), + [anon_sym_not] = ACTIONS(3690), + [anon_sym_compl] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_sizeof] = ACTIONS(3690), + [anon_sym___alignof__] = ACTIONS(3690), + [anon_sym___alignof] = ACTIONS(3690), + [anon_sym__alignof] = ACTIONS(3690), + [anon_sym_alignof] = ACTIONS(3690), + [anon_sym__Alignof] = ACTIONS(3690), + [anon_sym_offsetof] = ACTIONS(3690), + [anon_sym__Generic] = ACTIONS(3690), + [anon_sym_typename] = ACTIONS(3690), + [anon_sym_asm] = ACTIONS(3690), + [anon_sym___asm__] = ACTIONS(3690), + [anon_sym___asm] = ACTIONS(3690), + [sym_number_literal] = ACTIONS(3692), + [anon_sym_L_SQUOTE] = ACTIONS(3692), + [anon_sym_u_SQUOTE] = ACTIONS(3692), + [anon_sym_U_SQUOTE] = ACTIONS(3692), + [anon_sym_u8_SQUOTE] = ACTIONS(3692), + [anon_sym_SQUOTE] = ACTIONS(3692), + [anon_sym_L_DQUOTE] = ACTIONS(3692), + [anon_sym_u_DQUOTE] = ACTIONS(3692), + [anon_sym_U_DQUOTE] = ACTIONS(3692), + [anon_sym_u8_DQUOTE] = ACTIONS(3692), + [anon_sym_DQUOTE] = ACTIONS(3692), + [sym_true] = ACTIONS(3690), + [sym_false] = ACTIONS(3690), + [anon_sym_NULL] = ACTIONS(3690), + [anon_sym_nullptr] = ACTIONS(3690), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3690), + [anon_sym_decltype] = ACTIONS(3690), + [anon_sym_explicit] = ACTIONS(3690), + [anon_sym_export] = ACTIONS(3690), + [anon_sym_import] = ACTIONS(3690), + [anon_sym_template] = ACTIONS(3690), + [anon_sym_operator] = ACTIONS(3690), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_delete] = ACTIONS(3690), + [anon_sym_throw] = ACTIONS(3690), + [anon_sym_namespace] = ACTIONS(3690), + [anon_sym_static_assert] = ACTIONS(3690), + [anon_sym_concept] = ACTIONS(3690), + [anon_sym_co_return] = ACTIONS(3690), + [anon_sym_co_yield] = ACTIONS(3690), + [anon_sym_R_DQUOTE] = ACTIONS(3692), + [anon_sym_LR_DQUOTE] = ACTIONS(3692), + [anon_sym_uR_DQUOTE] = ACTIONS(3692), + [anon_sym_UR_DQUOTE] = ACTIONS(3692), + [anon_sym_u8R_DQUOTE] = ACTIONS(3692), + [anon_sym_co_await] = ACTIONS(3690), + [anon_sym_new] = ACTIONS(3690), + [anon_sym_requires] = ACTIONS(3690), + [anon_sym_CARET_CARET] = ACTIONS(3692), + [anon_sym_LBRACK_COLON] = ACTIONS(3692), + [sym_this] = ACTIONS(3690), }, [STATE(783)] = { - [sym_identifier] = ACTIONS(3684), - [aux_sym_preproc_include_token1] = ACTIONS(3684), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym___extension__] = ACTIONS(3684), - [anon_sym_typedef] = ACTIONS(3684), - [anon_sym_virtual] = ACTIONS(3684), - [anon_sym_extern] = ACTIONS(3684), - [anon_sym___attribute__] = ACTIONS(3684), - [anon_sym___attribute] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_COLON_COLON] = ACTIONS(3686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), - [anon_sym___declspec] = ACTIONS(3684), - [anon_sym___based] = ACTIONS(3684), - [anon_sym___cdecl] = ACTIONS(3684), - [anon_sym___clrcall] = ACTIONS(3684), - [anon_sym___stdcall] = ACTIONS(3684), - [anon_sym___fastcall] = ACTIONS(3684), - [anon_sym___thiscall] = ACTIONS(3684), - [anon_sym___vectorcall] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_signed] = ACTIONS(3684), - [anon_sym_unsigned] = ACTIONS(3684), - [anon_sym_long] = ACTIONS(3684), - [anon_sym_short] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_register] = ACTIONS(3684), - [anon_sym_inline] = ACTIONS(3684), - [anon_sym___inline] = ACTIONS(3684), - [anon_sym___inline__] = ACTIONS(3684), - [anon_sym___forceinline] = ACTIONS(3684), - [anon_sym_thread_local] = ACTIONS(3684), - [anon_sym___thread] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_constexpr] = ACTIONS(3684), - [anon_sym_volatile] = ACTIONS(3684), - [anon_sym_restrict] = ACTIONS(3684), - [anon_sym___restrict__] = ACTIONS(3684), - [anon_sym__Atomic] = ACTIONS(3684), - [anon_sym__Noreturn] = ACTIONS(3684), - [anon_sym_noreturn] = ACTIONS(3684), - [anon_sym__Nonnull] = ACTIONS(3684), - [anon_sym_mutable] = ACTIONS(3684), - [anon_sym_constinit] = ACTIONS(3684), - [anon_sym_consteval] = ACTIONS(3684), - [anon_sym_alignas] = ACTIONS(3684), - [anon_sym__Alignas] = ACTIONS(3684), - [sym_primitive_type] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_struct] = ACTIONS(3684), - [anon_sym_union] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_case] = ACTIONS(3684), - [anon_sym_default] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_goto] = ACTIONS(3684), - [anon_sym___try] = ACTIONS(3684), - [anon_sym___leave] = ACTIONS(3684), - [anon_sym_not] = ACTIONS(3684), - [anon_sym_compl] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_sizeof] = ACTIONS(3684), - [anon_sym___alignof__] = ACTIONS(3684), - [anon_sym___alignof] = ACTIONS(3684), - [anon_sym__alignof] = ACTIONS(3684), - [anon_sym_alignof] = ACTIONS(3684), - [anon_sym__Alignof] = ACTIONS(3684), - [anon_sym_offsetof] = ACTIONS(3684), - [anon_sym__Generic] = ACTIONS(3684), - [anon_sym_typename] = ACTIONS(3684), - [anon_sym_asm] = ACTIONS(3684), - [anon_sym___asm__] = ACTIONS(3684), - [anon_sym___asm] = ACTIONS(3684), - [sym_number_literal] = ACTIONS(3686), - [anon_sym_L_SQUOTE] = ACTIONS(3686), - [anon_sym_u_SQUOTE] = ACTIONS(3686), - [anon_sym_U_SQUOTE] = ACTIONS(3686), - [anon_sym_u8_SQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_L_DQUOTE] = ACTIONS(3686), - [anon_sym_u_DQUOTE] = ACTIONS(3686), - [anon_sym_U_DQUOTE] = ACTIONS(3686), - [anon_sym_u8_DQUOTE] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [anon_sym_NULL] = ACTIONS(3684), - [anon_sym_nullptr] = ACTIONS(3684), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3684), - [anon_sym_decltype] = ACTIONS(3684), - [anon_sym_explicit] = ACTIONS(3684), - [anon_sym_export] = ACTIONS(3684), - [anon_sym_import] = ACTIONS(3684), - [anon_sym_template] = ACTIONS(3684), - [anon_sym_operator] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_static_assert] = ACTIONS(3684), - [anon_sym_concept] = ACTIONS(3684), - [anon_sym_co_return] = ACTIONS(3684), - [anon_sym_co_yield] = ACTIONS(3684), - [anon_sym_R_DQUOTE] = ACTIONS(3686), - [anon_sym_LR_DQUOTE] = ACTIONS(3686), - [anon_sym_uR_DQUOTE] = ACTIONS(3686), - [anon_sym_UR_DQUOTE] = ACTIONS(3686), - [anon_sym_u8R_DQUOTE] = ACTIONS(3686), - [anon_sym_co_await] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_requires] = ACTIONS(3684), - [anon_sym_CARET_CARET] = ACTIONS(3686), - [anon_sym_LBRACK_COLON] = ACTIONS(3686), - [sym_this] = ACTIONS(3684), + [sym_identifier] = ACTIONS(3694), + [aux_sym_preproc_include_token1] = ACTIONS(3694), + [aux_sym_preproc_def_token1] = ACTIONS(3694), + [aux_sym_preproc_if_token1] = ACTIONS(3694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3694), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3694), + [sym_preproc_directive] = ACTIONS(3694), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3694), + [anon_sym_typedef] = ACTIONS(3694), + [anon_sym_virtual] = ACTIONS(3694), + [anon_sym_extern] = ACTIONS(3694), + [anon_sym___attribute__] = ACTIONS(3694), + [anon_sym___attribute] = ACTIONS(3694), + [anon_sym_using] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3696), + [anon_sym___declspec] = ACTIONS(3694), + [anon_sym___based] = ACTIONS(3694), + [anon_sym___cdecl] = ACTIONS(3694), + [anon_sym___clrcall] = ACTIONS(3694), + [anon_sym___stdcall] = ACTIONS(3694), + [anon_sym___fastcall] = ACTIONS(3694), + [anon_sym___thiscall] = ACTIONS(3694), + [anon_sym___vectorcall] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_signed] = ACTIONS(3694), + [anon_sym_unsigned] = ACTIONS(3694), + [anon_sym_long] = ACTIONS(3694), + [anon_sym_short] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_static] = ACTIONS(3694), + [anon_sym_register] = ACTIONS(3694), + [anon_sym_inline] = ACTIONS(3694), + [anon_sym___inline] = ACTIONS(3694), + [anon_sym___inline__] = ACTIONS(3694), + [anon_sym___forceinline] = ACTIONS(3694), + [anon_sym_thread_local] = ACTIONS(3694), + [anon_sym___thread] = ACTIONS(3694), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_constexpr] = ACTIONS(3694), + [anon_sym_volatile] = ACTIONS(3694), + [anon_sym_restrict] = ACTIONS(3694), + [anon_sym___restrict__] = ACTIONS(3694), + [anon_sym__Atomic] = ACTIONS(3694), + [anon_sym__Noreturn] = ACTIONS(3694), + [anon_sym_noreturn] = ACTIONS(3694), + [anon_sym__Nonnull] = ACTIONS(3694), + [anon_sym_mutable] = ACTIONS(3694), + [anon_sym_constinit] = ACTIONS(3694), + [anon_sym_consteval] = ACTIONS(3694), + [anon_sym_alignas] = ACTIONS(3694), + [anon_sym__Alignas] = ACTIONS(3694), + [sym_primitive_type] = ACTIONS(3694), + [anon_sym_enum] = ACTIONS(3694), + [anon_sym_class] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(3694), + [anon_sym_union] = ACTIONS(3694), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_case] = ACTIONS(3694), + [anon_sym_default] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3694), + [anon_sym_do] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(3694), + [anon_sym_break] = ACTIONS(3694), + [anon_sym_continue] = ACTIONS(3694), + [anon_sym_goto] = ACTIONS(3694), + [anon_sym___try] = ACTIONS(3694), + [anon_sym___leave] = ACTIONS(3694), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3696), + [anon_sym_sizeof] = ACTIONS(3694), + [anon_sym___alignof__] = ACTIONS(3694), + [anon_sym___alignof] = ACTIONS(3694), + [anon_sym__alignof] = ACTIONS(3694), + [anon_sym_alignof] = ACTIONS(3694), + [anon_sym__Alignof] = ACTIONS(3694), + [anon_sym_offsetof] = ACTIONS(3694), + [anon_sym__Generic] = ACTIONS(3694), + [anon_sym_typename] = ACTIONS(3694), + [anon_sym_asm] = ACTIONS(3694), + [anon_sym___asm__] = ACTIONS(3694), + [anon_sym___asm] = ACTIONS(3694), + [sym_number_literal] = ACTIONS(3696), + [anon_sym_L_SQUOTE] = ACTIONS(3696), + [anon_sym_u_SQUOTE] = ACTIONS(3696), + [anon_sym_U_SQUOTE] = ACTIONS(3696), + [anon_sym_u8_SQUOTE] = ACTIONS(3696), + [anon_sym_SQUOTE] = ACTIONS(3696), + [anon_sym_L_DQUOTE] = ACTIONS(3696), + [anon_sym_u_DQUOTE] = ACTIONS(3696), + [anon_sym_U_DQUOTE] = ACTIONS(3696), + [anon_sym_u8_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [sym_true] = ACTIONS(3694), + [sym_false] = ACTIONS(3694), + [anon_sym_NULL] = ACTIONS(3694), + [anon_sym_nullptr] = ACTIONS(3694), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3694), + [anon_sym_decltype] = ACTIONS(3694), + [anon_sym_explicit] = ACTIONS(3694), + [anon_sym_export] = ACTIONS(3694), + [anon_sym_import] = ACTIONS(3694), + [anon_sym_template] = ACTIONS(3694), + [anon_sym_operator] = ACTIONS(3694), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_delete] = ACTIONS(3694), + [anon_sym_throw] = ACTIONS(3694), + [anon_sym_namespace] = ACTIONS(3694), + [anon_sym_static_assert] = ACTIONS(3694), + [anon_sym_concept] = ACTIONS(3694), + [anon_sym_co_return] = ACTIONS(3694), + [anon_sym_co_yield] = ACTIONS(3694), + [anon_sym_R_DQUOTE] = ACTIONS(3696), + [anon_sym_LR_DQUOTE] = ACTIONS(3696), + [anon_sym_uR_DQUOTE] = ACTIONS(3696), + [anon_sym_UR_DQUOTE] = ACTIONS(3696), + [anon_sym_u8R_DQUOTE] = ACTIONS(3696), + [anon_sym_co_await] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3694), + [anon_sym_requires] = ACTIONS(3694), + [anon_sym_CARET_CARET] = ACTIONS(3696), + [anon_sym_LBRACK_COLON] = ACTIONS(3696), + [sym_this] = ACTIONS(3694), }, [STATE(784)] = { - [sym_identifier] = ACTIONS(4136), - [aux_sym_preproc_include_token1] = ACTIONS(4136), - [aux_sym_preproc_def_token1] = ACTIONS(4136), - [aux_sym_preproc_if_token1] = ACTIONS(4136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4136), - [sym_preproc_directive] = ACTIONS(4136), - [anon_sym_LPAREN2] = ACTIONS(4138), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_TILDE] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4138), - [anon_sym_AMP_AMP] = ACTIONS(4138), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_SEMI] = ACTIONS(4138), - [anon_sym___extension__] = ACTIONS(4136), - [anon_sym_typedef] = ACTIONS(4136), - [anon_sym_virtual] = ACTIONS(4136), - [anon_sym_extern] = ACTIONS(4136), - [anon_sym___attribute__] = ACTIONS(4136), - [anon_sym___attribute] = ACTIONS(4136), - [anon_sym_using] = ACTIONS(4136), - [anon_sym_COLON_COLON] = ACTIONS(4138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4138), - [anon_sym___declspec] = ACTIONS(4136), - [anon_sym___based] = ACTIONS(4136), - [anon_sym___cdecl] = ACTIONS(4136), - [anon_sym___clrcall] = ACTIONS(4136), - [anon_sym___stdcall] = ACTIONS(4136), - [anon_sym___fastcall] = ACTIONS(4136), - [anon_sym___thiscall] = ACTIONS(4136), - [anon_sym___vectorcall] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4138), - [anon_sym_RBRACE] = ACTIONS(4138), - [anon_sym_signed] = ACTIONS(4136), - [anon_sym_unsigned] = ACTIONS(4136), - [anon_sym_long] = ACTIONS(4136), - [anon_sym_short] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_static] = ACTIONS(4136), - [anon_sym_register] = ACTIONS(4136), - [anon_sym_inline] = ACTIONS(4136), - [anon_sym___inline] = ACTIONS(4136), - [anon_sym___inline__] = ACTIONS(4136), - [anon_sym___forceinline] = ACTIONS(4136), - [anon_sym_thread_local] = ACTIONS(4136), - [anon_sym___thread] = ACTIONS(4136), - [anon_sym_const] = ACTIONS(4136), - [anon_sym_constexpr] = ACTIONS(4136), - [anon_sym_volatile] = ACTIONS(4136), - [anon_sym_restrict] = ACTIONS(4136), - [anon_sym___restrict__] = ACTIONS(4136), - [anon_sym__Atomic] = ACTIONS(4136), - [anon_sym__Noreturn] = ACTIONS(4136), - [anon_sym_noreturn] = ACTIONS(4136), - [anon_sym__Nonnull] = ACTIONS(4136), - [anon_sym_mutable] = ACTIONS(4136), - [anon_sym_constinit] = ACTIONS(4136), - [anon_sym_consteval] = ACTIONS(4136), - [anon_sym_alignas] = ACTIONS(4136), - [anon_sym__Alignas] = ACTIONS(4136), - [sym_primitive_type] = ACTIONS(4136), - [anon_sym_enum] = ACTIONS(4136), - [anon_sym_class] = ACTIONS(4136), - [anon_sym_struct] = ACTIONS(4136), - [anon_sym_union] = ACTIONS(4136), - [anon_sym_if] = ACTIONS(4136), - [anon_sym_switch] = ACTIONS(4136), - [anon_sym_case] = ACTIONS(4136), - [anon_sym_default] = ACTIONS(4136), - [anon_sym_while] = ACTIONS(4136), - [anon_sym_do] = ACTIONS(4136), - [anon_sym_for] = ACTIONS(4136), - [anon_sym_return] = ACTIONS(4136), - [anon_sym_break] = ACTIONS(4136), - [anon_sym_continue] = ACTIONS(4136), - [anon_sym_goto] = ACTIONS(4136), - [anon_sym___try] = ACTIONS(4136), - [anon_sym___leave] = ACTIONS(4136), - [anon_sym_not] = ACTIONS(4136), - [anon_sym_compl] = ACTIONS(4136), - [anon_sym_DASH_DASH] = ACTIONS(4138), - [anon_sym_PLUS_PLUS] = ACTIONS(4138), - [anon_sym_sizeof] = ACTIONS(4136), - [anon_sym___alignof__] = ACTIONS(4136), - [anon_sym___alignof] = ACTIONS(4136), - [anon_sym__alignof] = ACTIONS(4136), - [anon_sym_alignof] = ACTIONS(4136), - [anon_sym__Alignof] = ACTIONS(4136), - [anon_sym_offsetof] = ACTIONS(4136), - [anon_sym__Generic] = ACTIONS(4136), - [anon_sym_typename] = ACTIONS(4136), - [anon_sym_asm] = ACTIONS(4136), - [anon_sym___asm__] = ACTIONS(4136), - [anon_sym___asm] = ACTIONS(4136), - [sym_number_literal] = ACTIONS(4138), - [anon_sym_L_SQUOTE] = ACTIONS(4138), - [anon_sym_u_SQUOTE] = ACTIONS(4138), - [anon_sym_U_SQUOTE] = ACTIONS(4138), - [anon_sym_u8_SQUOTE] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4138), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4136), - [sym_false] = ACTIONS(4136), - [anon_sym_NULL] = ACTIONS(4136), - [anon_sym_nullptr] = ACTIONS(4136), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4136), - [anon_sym_decltype] = ACTIONS(4136), - [anon_sym_explicit] = ACTIONS(4136), - [anon_sym_export] = ACTIONS(4136), - [anon_sym_import] = ACTIONS(4136), - [anon_sym_template] = ACTIONS(4136), - [anon_sym_operator] = ACTIONS(4136), - [anon_sym_try] = ACTIONS(4136), - [anon_sym_delete] = ACTIONS(4136), - [anon_sym_throw] = ACTIONS(4136), - [anon_sym_namespace] = ACTIONS(4136), - [anon_sym_static_assert] = ACTIONS(4136), - [anon_sym_concept] = ACTIONS(4136), - [anon_sym_co_return] = ACTIONS(4136), - [anon_sym_co_yield] = ACTIONS(4136), - [anon_sym_R_DQUOTE] = ACTIONS(4138), - [anon_sym_LR_DQUOTE] = ACTIONS(4138), - [anon_sym_uR_DQUOTE] = ACTIONS(4138), - [anon_sym_UR_DQUOTE] = ACTIONS(4138), - [anon_sym_u8R_DQUOTE] = ACTIONS(4138), - [anon_sym_co_await] = ACTIONS(4136), - [anon_sym_new] = ACTIONS(4136), - [anon_sym_requires] = ACTIONS(4136), - [anon_sym_CARET_CARET] = ACTIONS(4138), - [anon_sym_LBRACK_COLON] = ACTIONS(4138), - [sym_this] = ACTIONS(4136), + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym___cdecl] = ACTIONS(4271), + [anon_sym___clrcall] = ACTIONS(4271), + [anon_sym___stdcall] = ACTIONS(4271), + [anon_sym___fastcall] = ACTIONS(4271), + [anon_sym___thiscall] = ACTIONS(4271), + [anon_sym___vectorcall] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_switch] = ACTIONS(4271), + [anon_sym_case] = ACTIONS(4271), + [anon_sym_default] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_do] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_goto] = ACTIONS(4271), + [anon_sym___try] = ACTIONS(4271), + [anon_sym___leave] = ACTIONS(4271), + [anon_sym_not] = ACTIONS(4271), + [anon_sym_compl] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_sizeof] = ACTIONS(4271), + [anon_sym___alignof__] = ACTIONS(4271), + [anon_sym___alignof] = ACTIONS(4271), + [anon_sym__alignof] = ACTIONS(4271), + [anon_sym_alignof] = ACTIONS(4271), + [anon_sym__Alignof] = ACTIONS(4271), + [anon_sym_offsetof] = ACTIONS(4271), + [anon_sym__Generic] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [anon_sym_asm] = ACTIONS(4271), + [anon_sym___asm__] = ACTIONS(4271), + [anon_sym___asm] = ACTIONS(4271), + [sym_number_literal] = ACTIONS(4273), + [anon_sym_L_SQUOTE] = ACTIONS(4273), + [anon_sym_u_SQUOTE] = ACTIONS(4273), + [anon_sym_U_SQUOTE] = ACTIONS(4273), + [anon_sym_u8_SQUOTE] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4273), + [anon_sym_L_DQUOTE] = ACTIONS(4273), + [anon_sym_u_DQUOTE] = ACTIONS(4273), + [anon_sym_U_DQUOTE] = ACTIONS(4273), + [anon_sym_u8_DQUOTE] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(4273), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [anon_sym_NULL] = ACTIONS(4271), + [anon_sym_nullptr] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_export] = ACTIONS(4271), + [anon_sym_import] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_delete] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_namespace] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_concept] = ACTIONS(4271), + [anon_sym_co_return] = ACTIONS(4271), + [anon_sym_co_yield] = ACTIONS(4271), + [anon_sym_R_DQUOTE] = ACTIONS(4273), + [anon_sym_LR_DQUOTE] = ACTIONS(4273), + [anon_sym_uR_DQUOTE] = ACTIONS(4273), + [anon_sym_UR_DQUOTE] = ACTIONS(4273), + [anon_sym_u8R_DQUOTE] = ACTIONS(4273), + [anon_sym_co_await] = ACTIONS(4271), + [anon_sym_new] = ACTIONS(4271), + [anon_sym_requires] = ACTIONS(4271), + [anon_sym_CARET_CARET] = ACTIONS(4273), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), + [sym_this] = ACTIONS(4271), }, [STATE(785)] = { - [sym_identifier] = ACTIONS(4140), - [aux_sym_preproc_include_token1] = ACTIONS(4140), - [aux_sym_preproc_def_token1] = ACTIONS(4140), - [aux_sym_preproc_if_token1] = ACTIONS(4140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4140), - [sym_preproc_directive] = ACTIONS(4140), - [anon_sym_LPAREN2] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4142), - [anon_sym_TILDE] = ACTIONS(4142), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_AMP] = ACTIONS(4140), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym___extension__] = ACTIONS(4140), - [anon_sym_typedef] = ACTIONS(4140), - [anon_sym_virtual] = ACTIONS(4140), - [anon_sym_extern] = ACTIONS(4140), - [anon_sym___attribute__] = ACTIONS(4140), - [anon_sym___attribute] = ACTIONS(4140), - [anon_sym_using] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4142), - [anon_sym___declspec] = ACTIONS(4140), - [anon_sym___based] = ACTIONS(4140), - [anon_sym___cdecl] = ACTIONS(4140), - [anon_sym___clrcall] = ACTIONS(4140), - [anon_sym___stdcall] = ACTIONS(4140), - [anon_sym___fastcall] = ACTIONS(4140), - [anon_sym___thiscall] = ACTIONS(4140), - [anon_sym___vectorcall] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_RBRACE] = ACTIONS(4142), - [anon_sym_signed] = ACTIONS(4140), - [anon_sym_unsigned] = ACTIONS(4140), - [anon_sym_long] = ACTIONS(4140), - [anon_sym_short] = ACTIONS(4140), - [anon_sym_LBRACK] = ACTIONS(4140), - [anon_sym_static] = ACTIONS(4140), - [anon_sym_register] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym___inline] = ACTIONS(4140), - [anon_sym___inline__] = ACTIONS(4140), - [anon_sym___forceinline] = ACTIONS(4140), - [anon_sym_thread_local] = ACTIONS(4140), - [anon_sym___thread] = ACTIONS(4140), - [anon_sym_const] = ACTIONS(4140), - [anon_sym_constexpr] = ACTIONS(4140), - [anon_sym_volatile] = ACTIONS(4140), - [anon_sym_restrict] = ACTIONS(4140), - [anon_sym___restrict__] = ACTIONS(4140), - [anon_sym__Atomic] = ACTIONS(4140), - [anon_sym__Noreturn] = ACTIONS(4140), - [anon_sym_noreturn] = ACTIONS(4140), - [anon_sym__Nonnull] = ACTIONS(4140), - [anon_sym_mutable] = ACTIONS(4140), - [anon_sym_constinit] = ACTIONS(4140), - [anon_sym_consteval] = ACTIONS(4140), - [anon_sym_alignas] = ACTIONS(4140), - [anon_sym__Alignas] = ACTIONS(4140), - [sym_primitive_type] = ACTIONS(4140), - [anon_sym_enum] = ACTIONS(4140), - [anon_sym_class] = ACTIONS(4140), - [anon_sym_struct] = ACTIONS(4140), - [anon_sym_union] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_switch] = ACTIONS(4140), - [anon_sym_case] = ACTIONS(4140), - [anon_sym_default] = ACTIONS(4140), - [anon_sym_while] = ACTIONS(4140), - [anon_sym_do] = ACTIONS(4140), - [anon_sym_for] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_goto] = ACTIONS(4140), - [anon_sym___try] = ACTIONS(4140), - [anon_sym___leave] = ACTIONS(4140), - [anon_sym_not] = ACTIONS(4140), - [anon_sym_compl] = ACTIONS(4140), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_sizeof] = ACTIONS(4140), - [anon_sym___alignof__] = ACTIONS(4140), - [anon_sym___alignof] = ACTIONS(4140), - [anon_sym__alignof] = ACTIONS(4140), - [anon_sym_alignof] = ACTIONS(4140), - [anon_sym__Alignof] = ACTIONS(4140), - [anon_sym_offsetof] = ACTIONS(4140), - [anon_sym__Generic] = ACTIONS(4140), - [anon_sym_typename] = ACTIONS(4140), - [anon_sym_asm] = ACTIONS(4140), - [anon_sym___asm__] = ACTIONS(4140), - [anon_sym___asm] = ACTIONS(4140), - [sym_number_literal] = ACTIONS(4142), - [anon_sym_L_SQUOTE] = ACTIONS(4142), - [anon_sym_u_SQUOTE] = ACTIONS(4142), - [anon_sym_U_SQUOTE] = ACTIONS(4142), - [anon_sym_u8_SQUOTE] = ACTIONS(4142), - [anon_sym_SQUOTE] = ACTIONS(4142), - [anon_sym_L_DQUOTE] = ACTIONS(4142), - [anon_sym_u_DQUOTE] = ACTIONS(4142), - [anon_sym_U_DQUOTE] = ACTIONS(4142), - [anon_sym_u8_DQUOTE] = ACTIONS(4142), - [anon_sym_DQUOTE] = ACTIONS(4142), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4140), - [anon_sym_nullptr] = ACTIONS(4140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4140), - [anon_sym_decltype] = ACTIONS(4140), - [anon_sym_explicit] = ACTIONS(4140), - [anon_sym_export] = ACTIONS(4140), - [anon_sym_import] = ACTIONS(4140), - [anon_sym_template] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_delete] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_namespace] = ACTIONS(4140), - [anon_sym_static_assert] = ACTIONS(4140), - [anon_sym_concept] = ACTIONS(4140), - [anon_sym_co_return] = ACTIONS(4140), - [anon_sym_co_yield] = ACTIONS(4140), - [anon_sym_R_DQUOTE] = ACTIONS(4142), - [anon_sym_LR_DQUOTE] = ACTIONS(4142), - [anon_sym_uR_DQUOTE] = ACTIONS(4142), - [anon_sym_UR_DQUOTE] = ACTIONS(4142), - [anon_sym_u8R_DQUOTE] = ACTIONS(4142), - [anon_sym_co_await] = ACTIONS(4140), - [anon_sym_new] = ACTIONS(4140), - [anon_sym_requires] = ACTIONS(4140), - [anon_sym_CARET_CARET] = ACTIONS(4142), - [anon_sym_LBRACK_COLON] = ACTIONS(4142), - [sym_this] = ACTIONS(4140), + [sym_identifier] = ACTIONS(3698), + [aux_sym_preproc_include_token1] = ACTIONS(3698), + [aux_sym_preproc_def_token1] = ACTIONS(3698), + [aux_sym_preproc_if_token1] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3698), + [sym_preproc_directive] = ACTIONS(3698), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym___extension__] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym___attribute__] = ACTIONS(3698), + [anon_sym___attribute] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym___declspec] = ACTIONS(3698), + [anon_sym___based] = ACTIONS(3698), + [anon_sym___cdecl] = ACTIONS(3698), + [anon_sym___clrcall] = ACTIONS(3698), + [anon_sym___stdcall] = ACTIONS(3698), + [anon_sym___fastcall] = ACTIONS(3698), + [anon_sym___thiscall] = ACTIONS(3698), + [anon_sym___vectorcall] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_RBRACE] = ACTIONS(3700), + [anon_sym_signed] = ACTIONS(3698), + [anon_sym_unsigned] = ACTIONS(3698), + [anon_sym_long] = ACTIONS(3698), + [anon_sym_short] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym___inline] = ACTIONS(3698), + [anon_sym___inline__] = ACTIONS(3698), + [anon_sym___forceinline] = ACTIONS(3698), + [anon_sym_thread_local] = ACTIONS(3698), + [anon_sym___thread] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_restrict] = ACTIONS(3698), + [anon_sym___restrict__] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym__Noreturn] = ACTIONS(3698), + [anon_sym_noreturn] = ACTIONS(3698), + [anon_sym__Nonnull] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_constinit] = ACTIONS(3698), + [anon_sym_consteval] = ACTIONS(3698), + [anon_sym_alignas] = ACTIONS(3698), + [anon_sym__Alignas] = ACTIONS(3698), + [sym_primitive_type] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_struct] = ACTIONS(3698), + [anon_sym_union] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_case] = ACTIONS(3698), + [anon_sym_default] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_goto] = ACTIONS(3698), + [anon_sym___try] = ACTIONS(3698), + [anon_sym___leave] = ACTIONS(3698), + [anon_sym_not] = ACTIONS(3698), + [anon_sym_compl] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_sizeof] = ACTIONS(3698), + [anon_sym___alignof__] = ACTIONS(3698), + [anon_sym___alignof] = ACTIONS(3698), + [anon_sym__alignof] = ACTIONS(3698), + [anon_sym_alignof] = ACTIONS(3698), + [anon_sym__Alignof] = ACTIONS(3698), + [anon_sym_offsetof] = ACTIONS(3698), + [anon_sym__Generic] = ACTIONS(3698), + [anon_sym_typename] = ACTIONS(3698), + [anon_sym_asm] = ACTIONS(3698), + [anon_sym___asm__] = ACTIONS(3698), + [anon_sym___asm] = ACTIONS(3698), + [sym_number_literal] = ACTIONS(3700), + [anon_sym_L_SQUOTE] = ACTIONS(3700), + [anon_sym_u_SQUOTE] = ACTIONS(3700), + [anon_sym_U_SQUOTE] = ACTIONS(3700), + [anon_sym_u8_SQUOTE] = ACTIONS(3700), + [anon_sym_SQUOTE] = ACTIONS(3700), + [anon_sym_L_DQUOTE] = ACTIONS(3700), + [anon_sym_u_DQUOTE] = ACTIONS(3700), + [anon_sym_U_DQUOTE] = ACTIONS(3700), + [anon_sym_u8_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [anon_sym_NULL] = ACTIONS(3698), + [anon_sym_nullptr] = ACTIONS(3698), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(3698), + [anon_sym_explicit] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_operator] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_static_assert] = ACTIONS(3698), + [anon_sym_concept] = ACTIONS(3698), + [anon_sym_co_return] = ACTIONS(3698), + [anon_sym_co_yield] = ACTIONS(3698), + [anon_sym_R_DQUOTE] = ACTIONS(3700), + [anon_sym_LR_DQUOTE] = ACTIONS(3700), + [anon_sym_uR_DQUOTE] = ACTIONS(3700), + [anon_sym_UR_DQUOTE] = ACTIONS(3700), + [anon_sym_u8R_DQUOTE] = ACTIONS(3700), + [anon_sym_co_await] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_requires] = ACTIONS(3698), + [anon_sym_CARET_CARET] = ACTIONS(3700), + [anon_sym_LBRACK_COLON] = ACTIONS(3700), + [sym_this] = ACTIONS(3698), }, [STATE(786)] = { - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_include_token1] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_RBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_case] = ACTIONS(4144), - [anon_sym_default] = ACTIONS(4144), - [anon_sym_while] = ACTIONS(4144), - [anon_sym_do] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym___try] = ACTIONS(4144), - [anon_sym___leave] = ACTIONS(4144), - [anon_sym_not] = ACTIONS(4144), - [anon_sym_compl] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_sizeof] = ACTIONS(4144), - [anon_sym___alignof__] = ACTIONS(4144), - [anon_sym___alignof] = ACTIONS(4144), - [anon_sym__alignof] = ACTIONS(4144), - [anon_sym_alignof] = ACTIONS(4144), - [anon_sym__Alignof] = ACTIONS(4144), - [anon_sym_offsetof] = ACTIONS(4144), - [anon_sym__Generic] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym___asm__] = ACTIONS(4144), - [anon_sym___asm] = ACTIONS(4144), - [sym_number_literal] = ACTIONS(4146), - [anon_sym_L_SQUOTE] = ACTIONS(4146), - [anon_sym_u_SQUOTE] = ACTIONS(4146), - [anon_sym_U_SQUOTE] = ACTIONS(4146), - [anon_sym_u8_SQUOTE] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(4146), - [anon_sym_u_DQUOTE] = ACTIONS(4146), - [anon_sym_U_DQUOTE] = ACTIONS(4146), - [anon_sym_u8_DQUOTE] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [anon_sym_NULL] = ACTIONS(4144), - [anon_sym_nullptr] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4144), - [anon_sym_import] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_try] = ACTIONS(4144), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_throw] = ACTIONS(4144), - [anon_sym_namespace] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_concept] = ACTIONS(4144), - [anon_sym_co_return] = ACTIONS(4144), - [anon_sym_co_yield] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4144), - [anon_sym_new] = ACTIONS(4144), - [anon_sym_requires] = ACTIONS(4144), - [anon_sym_CARET_CARET] = ACTIONS(4146), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), - [sym_this] = ACTIONS(4144), + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym___cdecl] = ACTIONS(4271), + [anon_sym___clrcall] = ACTIONS(4271), + [anon_sym___stdcall] = ACTIONS(4271), + [anon_sym___fastcall] = ACTIONS(4271), + [anon_sym___thiscall] = ACTIONS(4271), + [anon_sym___vectorcall] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_switch] = ACTIONS(4271), + [anon_sym_case] = ACTIONS(4271), + [anon_sym_default] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_do] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_goto] = ACTIONS(4271), + [anon_sym___try] = ACTIONS(4271), + [anon_sym___leave] = ACTIONS(4271), + [anon_sym_not] = ACTIONS(4271), + [anon_sym_compl] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_sizeof] = ACTIONS(4271), + [anon_sym___alignof__] = ACTIONS(4271), + [anon_sym___alignof] = ACTIONS(4271), + [anon_sym__alignof] = ACTIONS(4271), + [anon_sym_alignof] = ACTIONS(4271), + [anon_sym__Alignof] = ACTIONS(4271), + [anon_sym_offsetof] = ACTIONS(4271), + [anon_sym__Generic] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [anon_sym_asm] = ACTIONS(4271), + [anon_sym___asm__] = ACTIONS(4271), + [anon_sym___asm] = ACTIONS(4271), + [sym_number_literal] = ACTIONS(4273), + [anon_sym_L_SQUOTE] = ACTIONS(4273), + [anon_sym_u_SQUOTE] = ACTIONS(4273), + [anon_sym_U_SQUOTE] = ACTIONS(4273), + [anon_sym_u8_SQUOTE] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4273), + [anon_sym_L_DQUOTE] = ACTIONS(4273), + [anon_sym_u_DQUOTE] = ACTIONS(4273), + [anon_sym_U_DQUOTE] = ACTIONS(4273), + [anon_sym_u8_DQUOTE] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(4273), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [anon_sym_NULL] = ACTIONS(4271), + [anon_sym_nullptr] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_export] = ACTIONS(4271), + [anon_sym_import] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_delete] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_namespace] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_concept] = ACTIONS(4271), + [anon_sym_co_return] = ACTIONS(4271), + [anon_sym_co_yield] = ACTIONS(4271), + [anon_sym_R_DQUOTE] = ACTIONS(4273), + [anon_sym_LR_DQUOTE] = ACTIONS(4273), + [anon_sym_uR_DQUOTE] = ACTIONS(4273), + [anon_sym_UR_DQUOTE] = ACTIONS(4273), + [anon_sym_u8R_DQUOTE] = ACTIONS(4273), + [anon_sym_co_await] = ACTIONS(4271), + [anon_sym_new] = ACTIONS(4271), + [anon_sym_requires] = ACTIONS(4271), + [anon_sym_CARET_CARET] = ACTIONS(4273), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), + [sym_this] = ACTIONS(4271), }, [STATE(787)] = { - [sym_identifier] = ACTIONS(4148), - [aux_sym_preproc_include_token1] = ACTIONS(4148), - [aux_sym_preproc_def_token1] = ACTIONS(4148), - [aux_sym_preproc_if_token1] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), - [sym_preproc_directive] = ACTIONS(4148), - [anon_sym_LPAREN2] = ACTIONS(4150), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_TILDE] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4148), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_AMP_AMP] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4148), - [anon_sym_SEMI] = ACTIONS(4150), - [anon_sym___extension__] = ACTIONS(4148), - [anon_sym_typedef] = ACTIONS(4148), - [anon_sym_virtual] = ACTIONS(4148), - [anon_sym_extern] = ACTIONS(4148), - [anon_sym___attribute__] = ACTIONS(4148), - [anon_sym___attribute] = ACTIONS(4148), - [anon_sym_using] = ACTIONS(4148), - [anon_sym_COLON_COLON] = ACTIONS(4150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), - [anon_sym___declspec] = ACTIONS(4148), - [anon_sym___based] = ACTIONS(4148), - [anon_sym___cdecl] = ACTIONS(4148), - [anon_sym___clrcall] = ACTIONS(4148), - [anon_sym___stdcall] = ACTIONS(4148), - [anon_sym___fastcall] = ACTIONS(4148), - [anon_sym___thiscall] = ACTIONS(4148), - [anon_sym___vectorcall] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4150), - [anon_sym_RBRACE] = ACTIONS(4150), - [anon_sym_signed] = ACTIONS(4148), - [anon_sym_unsigned] = ACTIONS(4148), - [anon_sym_long] = ACTIONS(4148), - [anon_sym_short] = ACTIONS(4148), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_static] = ACTIONS(4148), - [anon_sym_register] = ACTIONS(4148), - [anon_sym_inline] = ACTIONS(4148), - [anon_sym___inline] = ACTIONS(4148), - [anon_sym___inline__] = ACTIONS(4148), - [anon_sym___forceinline] = ACTIONS(4148), - [anon_sym_thread_local] = ACTIONS(4148), - [anon_sym___thread] = ACTIONS(4148), - [anon_sym_const] = ACTIONS(4148), - [anon_sym_constexpr] = ACTIONS(4148), - [anon_sym_volatile] = ACTIONS(4148), - [anon_sym_restrict] = ACTIONS(4148), - [anon_sym___restrict__] = ACTIONS(4148), - [anon_sym__Atomic] = ACTIONS(4148), - [anon_sym__Noreturn] = ACTIONS(4148), - [anon_sym_noreturn] = ACTIONS(4148), - [anon_sym__Nonnull] = ACTIONS(4148), - [anon_sym_mutable] = ACTIONS(4148), - [anon_sym_constinit] = ACTIONS(4148), - [anon_sym_consteval] = ACTIONS(4148), - [anon_sym_alignas] = ACTIONS(4148), - [anon_sym__Alignas] = ACTIONS(4148), - [sym_primitive_type] = ACTIONS(4148), - [anon_sym_enum] = ACTIONS(4148), - [anon_sym_class] = ACTIONS(4148), - [anon_sym_struct] = ACTIONS(4148), - [anon_sym_union] = ACTIONS(4148), - [anon_sym_if] = ACTIONS(4148), - [anon_sym_switch] = ACTIONS(4148), - [anon_sym_case] = ACTIONS(4148), - [anon_sym_default] = ACTIONS(4148), - [anon_sym_while] = ACTIONS(4148), - [anon_sym_do] = ACTIONS(4148), - [anon_sym_for] = ACTIONS(4148), - [anon_sym_return] = ACTIONS(4148), - [anon_sym_break] = ACTIONS(4148), - [anon_sym_continue] = ACTIONS(4148), - [anon_sym_goto] = ACTIONS(4148), - [anon_sym___try] = ACTIONS(4148), - [anon_sym___leave] = ACTIONS(4148), - [anon_sym_not] = ACTIONS(4148), - [anon_sym_compl] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4150), - [anon_sym_PLUS_PLUS] = ACTIONS(4150), - [anon_sym_sizeof] = ACTIONS(4148), - [anon_sym___alignof__] = ACTIONS(4148), - [anon_sym___alignof] = ACTIONS(4148), - [anon_sym__alignof] = ACTIONS(4148), - [anon_sym_alignof] = ACTIONS(4148), - [anon_sym__Alignof] = ACTIONS(4148), - [anon_sym_offsetof] = ACTIONS(4148), - [anon_sym__Generic] = ACTIONS(4148), - [anon_sym_typename] = ACTIONS(4148), - [anon_sym_asm] = ACTIONS(4148), - [anon_sym___asm__] = ACTIONS(4148), - [anon_sym___asm] = ACTIONS(4148), - [sym_number_literal] = ACTIONS(4150), - [anon_sym_L_SQUOTE] = ACTIONS(4150), - [anon_sym_u_SQUOTE] = ACTIONS(4150), - [anon_sym_U_SQUOTE] = ACTIONS(4150), - [anon_sym_u8_SQUOTE] = ACTIONS(4150), - [anon_sym_SQUOTE] = ACTIONS(4150), - [anon_sym_L_DQUOTE] = ACTIONS(4150), - [anon_sym_u_DQUOTE] = ACTIONS(4150), - [anon_sym_U_DQUOTE] = ACTIONS(4150), - [anon_sym_u8_DQUOTE] = ACTIONS(4150), - [anon_sym_DQUOTE] = ACTIONS(4150), - [sym_true] = ACTIONS(4148), - [sym_false] = ACTIONS(4148), - [anon_sym_NULL] = ACTIONS(4148), - [anon_sym_nullptr] = ACTIONS(4148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4148), - [anon_sym_decltype] = ACTIONS(4148), - [anon_sym_explicit] = ACTIONS(4148), - [anon_sym_export] = ACTIONS(4148), - [anon_sym_import] = ACTIONS(4148), - [anon_sym_template] = ACTIONS(4148), - [anon_sym_operator] = ACTIONS(4148), - [anon_sym_try] = ACTIONS(4148), - [anon_sym_delete] = ACTIONS(4148), - [anon_sym_throw] = ACTIONS(4148), - [anon_sym_namespace] = ACTIONS(4148), - [anon_sym_static_assert] = ACTIONS(4148), - [anon_sym_concept] = ACTIONS(4148), - [anon_sym_co_return] = ACTIONS(4148), - [anon_sym_co_yield] = ACTIONS(4148), - [anon_sym_R_DQUOTE] = ACTIONS(4150), - [anon_sym_LR_DQUOTE] = ACTIONS(4150), - [anon_sym_uR_DQUOTE] = ACTIONS(4150), - [anon_sym_UR_DQUOTE] = ACTIONS(4150), - [anon_sym_u8R_DQUOTE] = ACTIONS(4150), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4148), - [anon_sym_requires] = ACTIONS(4148), - [anon_sym_CARET_CARET] = ACTIONS(4150), - [anon_sym_LBRACK_COLON] = ACTIONS(4150), - [sym_this] = ACTIONS(4148), + [sym_identifier] = ACTIONS(3702), + [aux_sym_preproc_include_token1] = ACTIONS(3702), + [aux_sym_preproc_def_token1] = ACTIONS(3702), + [aux_sym_preproc_if_token1] = ACTIONS(3702), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3702), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3702), + [sym_preproc_directive] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3704), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_TILDE] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3704), + [anon_sym___extension__] = ACTIONS(3702), + [anon_sym_typedef] = ACTIONS(3702), + [anon_sym_virtual] = ACTIONS(3702), + [anon_sym_extern] = ACTIONS(3702), + [anon_sym___attribute__] = ACTIONS(3702), + [anon_sym___attribute] = ACTIONS(3702), + [anon_sym_using] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3704), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3704), + [anon_sym___declspec] = ACTIONS(3702), + [anon_sym___based] = ACTIONS(3702), + [anon_sym___cdecl] = ACTIONS(3702), + [anon_sym___clrcall] = ACTIONS(3702), + [anon_sym___stdcall] = ACTIONS(3702), + [anon_sym___fastcall] = ACTIONS(3702), + [anon_sym___thiscall] = ACTIONS(3702), + [anon_sym___vectorcall] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3704), + [anon_sym_RBRACE] = ACTIONS(3704), + [anon_sym_signed] = ACTIONS(3702), + [anon_sym_unsigned] = ACTIONS(3702), + [anon_sym_long] = ACTIONS(3702), + [anon_sym_short] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_static] = ACTIONS(3702), + [anon_sym_register] = ACTIONS(3702), + [anon_sym_inline] = ACTIONS(3702), + [anon_sym___inline] = ACTIONS(3702), + [anon_sym___inline__] = ACTIONS(3702), + [anon_sym___forceinline] = ACTIONS(3702), + [anon_sym_thread_local] = ACTIONS(3702), + [anon_sym___thread] = ACTIONS(3702), + [anon_sym_const] = ACTIONS(3702), + [anon_sym_constexpr] = ACTIONS(3702), + [anon_sym_volatile] = ACTIONS(3702), + [anon_sym_restrict] = ACTIONS(3702), + [anon_sym___restrict__] = ACTIONS(3702), + [anon_sym__Atomic] = ACTIONS(3702), + [anon_sym__Noreturn] = ACTIONS(3702), + [anon_sym_noreturn] = ACTIONS(3702), + [anon_sym__Nonnull] = ACTIONS(3702), + [anon_sym_mutable] = ACTIONS(3702), + [anon_sym_constinit] = ACTIONS(3702), + [anon_sym_consteval] = ACTIONS(3702), + [anon_sym_alignas] = ACTIONS(3702), + [anon_sym__Alignas] = ACTIONS(3702), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(3702), + [anon_sym_class] = ACTIONS(3702), + [anon_sym_struct] = ACTIONS(3702), + [anon_sym_union] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_case] = ACTIONS(3702), + [anon_sym_default] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_break] = ACTIONS(3702), + [anon_sym_continue] = ACTIONS(3702), + [anon_sym_goto] = ACTIONS(3702), + [anon_sym___try] = ACTIONS(3702), + [anon_sym___leave] = ACTIONS(3702), + [anon_sym_not] = ACTIONS(3702), + [anon_sym_compl] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3704), + [anon_sym_sizeof] = ACTIONS(3702), + [anon_sym___alignof__] = ACTIONS(3702), + [anon_sym___alignof] = ACTIONS(3702), + [anon_sym__alignof] = ACTIONS(3702), + [anon_sym_alignof] = ACTIONS(3702), + [anon_sym__Alignof] = ACTIONS(3702), + [anon_sym_offsetof] = ACTIONS(3702), + [anon_sym__Generic] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3702), + [anon_sym_asm] = ACTIONS(3702), + [anon_sym___asm__] = ACTIONS(3702), + [anon_sym___asm] = ACTIONS(3702), + [sym_number_literal] = ACTIONS(3704), + [anon_sym_L_SQUOTE] = ACTIONS(3704), + [anon_sym_u_SQUOTE] = ACTIONS(3704), + [anon_sym_U_SQUOTE] = ACTIONS(3704), + [anon_sym_u8_SQUOTE] = ACTIONS(3704), + [anon_sym_SQUOTE] = ACTIONS(3704), + [anon_sym_L_DQUOTE] = ACTIONS(3704), + [anon_sym_u_DQUOTE] = ACTIONS(3704), + [anon_sym_U_DQUOTE] = ACTIONS(3704), + [anon_sym_u8_DQUOTE] = ACTIONS(3704), + [anon_sym_DQUOTE] = ACTIONS(3704), + [sym_true] = ACTIONS(3702), + [sym_false] = ACTIONS(3702), + [anon_sym_NULL] = ACTIONS(3702), + [anon_sym_nullptr] = ACTIONS(3702), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3702), + [anon_sym_decltype] = ACTIONS(3702), + [anon_sym_explicit] = ACTIONS(3702), + [anon_sym_export] = ACTIONS(3702), + [anon_sym_import] = ACTIONS(3702), + [anon_sym_template] = ACTIONS(3702), + [anon_sym_operator] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_delete] = ACTIONS(3702), + [anon_sym_throw] = ACTIONS(3702), + [anon_sym_namespace] = ACTIONS(3702), + [anon_sym_static_assert] = ACTIONS(3702), + [anon_sym_concept] = ACTIONS(3702), + [anon_sym_co_return] = ACTIONS(3702), + [anon_sym_co_yield] = ACTIONS(3702), + [anon_sym_R_DQUOTE] = ACTIONS(3704), + [anon_sym_LR_DQUOTE] = ACTIONS(3704), + [anon_sym_uR_DQUOTE] = ACTIONS(3704), + [anon_sym_UR_DQUOTE] = ACTIONS(3704), + [anon_sym_u8R_DQUOTE] = ACTIONS(3704), + [anon_sym_co_await] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_requires] = ACTIONS(3702), + [anon_sym_CARET_CARET] = ACTIONS(3704), + [anon_sym_LBRACK_COLON] = ACTIONS(3704), + [sym_this] = ACTIONS(3702), }, [STATE(788)] = { - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_include_token1] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_PLUS] = ACTIONS(4152), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym___cdecl] = ACTIONS(4152), - [anon_sym___clrcall] = ACTIONS(4152), - [anon_sym___stdcall] = ACTIONS(4152), - [anon_sym___fastcall] = ACTIONS(4152), - [anon_sym___thiscall] = ACTIONS(4152), - [anon_sym___vectorcall] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4154), - [anon_sym_RBRACE] = ACTIONS(4154), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_if] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(4152), - [anon_sym_case] = ACTIONS(4152), - [anon_sym_default] = ACTIONS(4152), - [anon_sym_while] = ACTIONS(4152), - [anon_sym_do] = ACTIONS(4152), - [anon_sym_for] = ACTIONS(4152), - [anon_sym_return] = ACTIONS(4152), - [anon_sym_break] = ACTIONS(4152), - [anon_sym_continue] = ACTIONS(4152), - [anon_sym_goto] = ACTIONS(4152), - [anon_sym___try] = ACTIONS(4152), - [anon_sym___leave] = ACTIONS(4152), - [anon_sym_not] = ACTIONS(4152), - [anon_sym_compl] = ACTIONS(4152), - [anon_sym_DASH_DASH] = ACTIONS(4154), - [anon_sym_PLUS_PLUS] = ACTIONS(4154), - [anon_sym_sizeof] = ACTIONS(4152), - [anon_sym___alignof__] = ACTIONS(4152), - [anon_sym___alignof] = ACTIONS(4152), - [anon_sym__alignof] = ACTIONS(4152), - [anon_sym_alignof] = ACTIONS(4152), - [anon_sym__Alignof] = ACTIONS(4152), - [anon_sym_offsetof] = ACTIONS(4152), - [anon_sym__Generic] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), - [anon_sym_asm] = ACTIONS(4152), - [anon_sym___asm__] = ACTIONS(4152), - [anon_sym___asm] = ACTIONS(4152), - [sym_number_literal] = ACTIONS(4154), - [anon_sym_L_SQUOTE] = ACTIONS(4154), - [anon_sym_u_SQUOTE] = ACTIONS(4154), - [anon_sym_U_SQUOTE] = ACTIONS(4154), - [anon_sym_u8_SQUOTE] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(4154), - [anon_sym_u_DQUOTE] = ACTIONS(4154), - [anon_sym_U_DQUOTE] = ACTIONS(4154), - [anon_sym_u8_DQUOTE] = ACTIONS(4154), - [anon_sym_DQUOTE] = ACTIONS(4154), - [sym_true] = ACTIONS(4152), - [sym_false] = ACTIONS(4152), - [anon_sym_NULL] = ACTIONS(4152), - [anon_sym_nullptr] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_export] = ACTIONS(4152), - [anon_sym_import] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_try] = ACTIONS(4152), - [anon_sym_delete] = ACTIONS(4152), - [anon_sym_throw] = ACTIONS(4152), - [anon_sym_namespace] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_concept] = ACTIONS(4152), - [anon_sym_co_return] = ACTIONS(4152), - [anon_sym_co_yield] = ACTIONS(4152), - [anon_sym_R_DQUOTE] = ACTIONS(4154), - [anon_sym_LR_DQUOTE] = ACTIONS(4154), - [anon_sym_uR_DQUOTE] = ACTIONS(4154), - [anon_sym_UR_DQUOTE] = ACTIONS(4154), - [anon_sym_u8R_DQUOTE] = ACTIONS(4154), - [anon_sym_co_await] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_requires] = ACTIONS(4152), - [anon_sym_CARET_CARET] = ACTIONS(4154), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), - [sym_this] = ACTIONS(4152), + [sym_identifier] = ACTIONS(3706), + [aux_sym_preproc_include_token1] = ACTIONS(3706), + [aux_sym_preproc_def_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token1] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3706), + [sym_preproc_directive] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym___extension__] = ACTIONS(3706), + [anon_sym_typedef] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym___attribute] = ACTIONS(3706), + [anon_sym_using] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym___cdecl] = ACTIONS(3706), + [anon_sym___clrcall] = ACTIONS(3706), + [anon_sym___stdcall] = ACTIONS(3706), + [anon_sym___fastcall] = ACTIONS(3706), + [anon_sym___thiscall] = ACTIONS(3706), + [anon_sym___vectorcall] = ACTIONS(3706), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_RBRACE] = ACTIONS(3708), + [anon_sym_signed] = ACTIONS(3706), + [anon_sym_unsigned] = ACTIONS(3706), + [anon_sym_long] = ACTIONS(3706), + [anon_sym_short] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym___inline] = ACTIONS(3706), + [anon_sym___inline__] = ACTIONS(3706), + [anon_sym___forceinline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym___thread] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym___restrict__] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym__Noreturn] = ACTIONS(3706), + [anon_sym_noreturn] = ACTIONS(3706), + [anon_sym__Nonnull] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_alignas] = ACTIONS(3706), + [anon_sym__Alignas] = ACTIONS(3706), + [sym_primitive_type] = ACTIONS(3706), + [anon_sym_enum] = ACTIONS(3706), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3706), + [anon_sym_union] = ACTIONS(3706), + [anon_sym_if] = ACTIONS(3706), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_case] = ACTIONS(3706), + [anon_sym_default] = ACTIONS(3706), + [anon_sym_while] = ACTIONS(3706), + [anon_sym_do] = ACTIONS(3706), + [anon_sym_for] = ACTIONS(3706), + [anon_sym_return] = ACTIONS(3706), + [anon_sym_break] = ACTIONS(3706), + [anon_sym_continue] = ACTIONS(3706), + [anon_sym_goto] = ACTIONS(3706), + [anon_sym___try] = ACTIONS(3706), + [anon_sym___leave] = ACTIONS(3706), + [anon_sym_not] = ACTIONS(3706), + [anon_sym_compl] = ACTIONS(3706), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_sizeof] = ACTIONS(3706), + [anon_sym___alignof__] = ACTIONS(3706), + [anon_sym___alignof] = ACTIONS(3706), + [anon_sym__alignof] = ACTIONS(3706), + [anon_sym_alignof] = ACTIONS(3706), + [anon_sym__Alignof] = ACTIONS(3706), + [anon_sym_offsetof] = ACTIONS(3706), + [anon_sym__Generic] = ACTIONS(3706), + [anon_sym_typename] = ACTIONS(3706), + [anon_sym_asm] = ACTIONS(3706), + [anon_sym___asm__] = ACTIONS(3706), + [anon_sym___asm] = ACTIONS(3706), + [sym_number_literal] = ACTIONS(3708), + [anon_sym_L_SQUOTE] = ACTIONS(3708), + [anon_sym_u_SQUOTE] = ACTIONS(3708), + [anon_sym_U_SQUOTE] = ACTIONS(3708), + [anon_sym_u8_SQUOTE] = ACTIONS(3708), + [anon_sym_SQUOTE] = ACTIONS(3708), + [anon_sym_L_DQUOTE] = ACTIONS(3708), + [anon_sym_u_DQUOTE] = ACTIONS(3708), + [anon_sym_U_DQUOTE] = ACTIONS(3708), + [anon_sym_u8_DQUOTE] = ACTIONS(3708), + [anon_sym_DQUOTE] = ACTIONS(3708), + [sym_true] = ACTIONS(3706), + [sym_false] = ACTIONS(3706), + [anon_sym_NULL] = ACTIONS(3706), + [anon_sym_nullptr] = ACTIONS(3706), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_explicit] = ACTIONS(3706), + [anon_sym_export] = ACTIONS(3706), + [anon_sym_import] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + [anon_sym_try] = ACTIONS(3706), + [anon_sym_delete] = ACTIONS(3706), + [anon_sym_throw] = ACTIONS(3706), + [anon_sym_namespace] = ACTIONS(3706), + [anon_sym_static_assert] = ACTIONS(3706), + [anon_sym_concept] = ACTIONS(3706), + [anon_sym_co_return] = ACTIONS(3706), + [anon_sym_co_yield] = ACTIONS(3706), + [anon_sym_R_DQUOTE] = ACTIONS(3708), + [anon_sym_LR_DQUOTE] = ACTIONS(3708), + [anon_sym_uR_DQUOTE] = ACTIONS(3708), + [anon_sym_UR_DQUOTE] = ACTIONS(3708), + [anon_sym_u8R_DQUOTE] = ACTIONS(3708), + [anon_sym_co_await] = ACTIONS(3706), + [anon_sym_new] = ACTIONS(3706), + [anon_sym_requires] = ACTIONS(3706), + [anon_sym_CARET_CARET] = ACTIONS(3708), + [anon_sym_LBRACK_COLON] = ACTIONS(3708), + [sym_this] = ACTIONS(3706), }, [STATE(789)] = { - [sym_identifier] = ACTIONS(4132), - [aux_sym_preproc_include_token1] = ACTIONS(4132), - [aux_sym_preproc_def_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), - [sym_preproc_directive] = ACTIONS(4132), - [anon_sym_LPAREN2] = ACTIONS(4134), - [anon_sym_BANG] = ACTIONS(4134), - [anon_sym_TILDE] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym___extension__] = ACTIONS(4132), - [anon_sym_typedef] = ACTIONS(4132), - [anon_sym_virtual] = ACTIONS(4132), - [anon_sym_extern] = ACTIONS(4132), - [anon_sym___attribute__] = ACTIONS(4132), - [anon_sym___attribute] = ACTIONS(4132), - [anon_sym_using] = ACTIONS(4132), - [anon_sym_COLON_COLON] = ACTIONS(4134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), - [anon_sym___declspec] = ACTIONS(4132), - [anon_sym___based] = ACTIONS(4132), - [anon_sym___cdecl] = ACTIONS(4132), - [anon_sym___clrcall] = ACTIONS(4132), - [anon_sym___stdcall] = ACTIONS(4132), - [anon_sym___fastcall] = ACTIONS(4132), - [anon_sym___thiscall] = ACTIONS(4132), - [anon_sym___vectorcall] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4134), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_signed] = ACTIONS(4132), - [anon_sym_unsigned] = ACTIONS(4132), - [anon_sym_long] = ACTIONS(4132), - [anon_sym_short] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_static] = ACTIONS(4132), - [anon_sym_register] = ACTIONS(4132), - [anon_sym_inline] = ACTIONS(4132), - [anon_sym___inline] = ACTIONS(4132), - [anon_sym___inline__] = ACTIONS(4132), - [anon_sym___forceinline] = ACTIONS(4132), - [anon_sym_thread_local] = ACTIONS(4132), - [anon_sym___thread] = ACTIONS(4132), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_constexpr] = ACTIONS(4132), - [anon_sym_volatile] = ACTIONS(4132), - [anon_sym_restrict] = ACTIONS(4132), - [anon_sym___restrict__] = ACTIONS(4132), - [anon_sym__Atomic] = ACTIONS(4132), - [anon_sym__Noreturn] = ACTIONS(4132), - [anon_sym_noreturn] = ACTIONS(4132), - [anon_sym__Nonnull] = ACTIONS(4132), - [anon_sym_mutable] = ACTIONS(4132), - [anon_sym_constinit] = ACTIONS(4132), - [anon_sym_consteval] = ACTIONS(4132), - [anon_sym_alignas] = ACTIONS(4132), - [anon_sym__Alignas] = ACTIONS(4132), - [sym_primitive_type] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_class] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_switch] = ACTIONS(4132), - [anon_sym_case] = ACTIONS(4132), - [anon_sym_default] = ACTIONS(4132), - [anon_sym_while] = ACTIONS(4132), - [anon_sym_do] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym___try] = ACTIONS(4132), - [anon_sym___leave] = ACTIONS(4132), - [anon_sym_not] = ACTIONS(4132), - [anon_sym_compl] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_sizeof] = ACTIONS(4132), - [anon_sym___alignof__] = ACTIONS(4132), - [anon_sym___alignof] = ACTIONS(4132), - [anon_sym__alignof] = ACTIONS(4132), - [anon_sym_alignof] = ACTIONS(4132), - [anon_sym__Alignof] = ACTIONS(4132), - [anon_sym_offsetof] = ACTIONS(4132), - [anon_sym__Generic] = ACTIONS(4132), - [anon_sym_typename] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [anon_sym___asm] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4134), - [anon_sym_u_SQUOTE] = ACTIONS(4134), - [anon_sym_U_SQUOTE] = ACTIONS(4134), - [anon_sym_u8_SQUOTE] = ACTIONS(4134), - [anon_sym_SQUOTE] = ACTIONS(4134), - [anon_sym_L_DQUOTE] = ACTIONS(4134), - [anon_sym_u_DQUOTE] = ACTIONS(4134), - [anon_sym_U_DQUOTE] = ACTIONS(4134), - [anon_sym_u8_DQUOTE] = ACTIONS(4134), - [anon_sym_DQUOTE] = ACTIONS(4134), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [anon_sym_NULL] = ACTIONS(4132), - [anon_sym_nullptr] = ACTIONS(4132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4132), - [anon_sym_decltype] = ACTIONS(4132), - [anon_sym_explicit] = ACTIONS(4132), - [anon_sym_export] = ACTIONS(4132), - [anon_sym_import] = ACTIONS(4132), - [anon_sym_template] = ACTIONS(4132), - [anon_sym_operator] = ACTIONS(4132), - [anon_sym_try] = ACTIONS(4132), - [anon_sym_delete] = ACTIONS(4132), - [anon_sym_throw] = ACTIONS(4132), - [anon_sym_namespace] = ACTIONS(4132), - [anon_sym_static_assert] = ACTIONS(4132), - [anon_sym_concept] = ACTIONS(4132), - [anon_sym_co_return] = ACTIONS(4132), - [anon_sym_co_yield] = ACTIONS(4132), - [anon_sym_R_DQUOTE] = ACTIONS(4134), - [anon_sym_LR_DQUOTE] = ACTIONS(4134), - [anon_sym_uR_DQUOTE] = ACTIONS(4134), - [anon_sym_UR_DQUOTE] = ACTIONS(4134), - [anon_sym_u8R_DQUOTE] = ACTIONS(4134), - [anon_sym_co_await] = ACTIONS(4132), - [anon_sym_new] = ACTIONS(4132), - [anon_sym_requires] = ACTIONS(4132), - [anon_sym_CARET_CARET] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4134), - [sym_this] = ACTIONS(4132), + [sym_identifier] = ACTIONS(4321), + [aux_sym_preproc_include_token1] = ACTIONS(4321), + [aux_sym_preproc_def_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token1] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4321), + [sym_preproc_directive] = ACTIONS(4321), + [anon_sym_LPAREN2] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4323), + [anon_sym_TILDE] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_AMP] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym___extension__] = ACTIONS(4321), + [anon_sym_typedef] = ACTIONS(4321), + [anon_sym_virtual] = ACTIONS(4321), + [anon_sym_extern] = ACTIONS(4321), + [anon_sym___attribute__] = ACTIONS(4321), + [anon_sym___attribute] = ACTIONS(4321), + [anon_sym_using] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4323), + [anon_sym___declspec] = ACTIONS(4321), + [anon_sym___based] = ACTIONS(4321), + [anon_sym___cdecl] = ACTIONS(4321), + [anon_sym___clrcall] = ACTIONS(4321), + [anon_sym___stdcall] = ACTIONS(4321), + [anon_sym___fastcall] = ACTIONS(4321), + [anon_sym___thiscall] = ACTIONS(4321), + [anon_sym___vectorcall] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_signed] = ACTIONS(4321), + [anon_sym_unsigned] = ACTIONS(4321), + [anon_sym_long] = ACTIONS(4321), + [anon_sym_short] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_static] = ACTIONS(4321), + [anon_sym_register] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym___inline] = ACTIONS(4321), + [anon_sym___inline__] = ACTIONS(4321), + [anon_sym___forceinline] = ACTIONS(4321), + [anon_sym_thread_local] = ACTIONS(4321), + [anon_sym___thread] = ACTIONS(4321), + [anon_sym_const] = ACTIONS(4321), + [anon_sym_constexpr] = ACTIONS(4321), + [anon_sym_volatile] = ACTIONS(4321), + [anon_sym_restrict] = ACTIONS(4321), + [anon_sym___restrict__] = ACTIONS(4321), + [anon_sym__Atomic] = ACTIONS(4321), + [anon_sym__Noreturn] = ACTIONS(4321), + [anon_sym_noreturn] = ACTIONS(4321), + [anon_sym__Nonnull] = ACTIONS(4321), + [anon_sym_mutable] = ACTIONS(4321), + [anon_sym_constinit] = ACTIONS(4321), + [anon_sym_consteval] = ACTIONS(4321), + [anon_sym_alignas] = ACTIONS(4321), + [anon_sym__Alignas] = ACTIONS(4321), + [sym_primitive_type] = ACTIONS(4321), + [anon_sym_enum] = ACTIONS(4321), + [anon_sym_class] = ACTIONS(4321), + [anon_sym_struct] = ACTIONS(4321), + [anon_sym_union] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_switch] = ACTIONS(4321), + [anon_sym_case] = ACTIONS(4321), + [anon_sym_default] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_do] = ACTIONS(4321), + [anon_sym_for] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_goto] = ACTIONS(4321), + [anon_sym___try] = ACTIONS(4321), + [anon_sym___leave] = ACTIONS(4321), + [anon_sym_not] = ACTIONS(4321), + [anon_sym_compl] = ACTIONS(4321), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_sizeof] = ACTIONS(4321), + [anon_sym___alignof__] = ACTIONS(4321), + [anon_sym___alignof] = ACTIONS(4321), + [anon_sym__alignof] = ACTIONS(4321), + [anon_sym_alignof] = ACTIONS(4321), + [anon_sym__Alignof] = ACTIONS(4321), + [anon_sym_offsetof] = ACTIONS(4321), + [anon_sym__Generic] = ACTIONS(4321), + [anon_sym_typename] = ACTIONS(4321), + [anon_sym_asm] = ACTIONS(4321), + [anon_sym___asm__] = ACTIONS(4321), + [anon_sym___asm] = ACTIONS(4321), + [sym_number_literal] = ACTIONS(4323), + [anon_sym_L_SQUOTE] = ACTIONS(4323), + [anon_sym_u_SQUOTE] = ACTIONS(4323), + [anon_sym_U_SQUOTE] = ACTIONS(4323), + [anon_sym_u8_SQUOTE] = ACTIONS(4323), + [anon_sym_SQUOTE] = ACTIONS(4323), + [anon_sym_L_DQUOTE] = ACTIONS(4323), + [anon_sym_u_DQUOTE] = ACTIONS(4323), + [anon_sym_U_DQUOTE] = ACTIONS(4323), + [anon_sym_u8_DQUOTE] = ACTIONS(4323), + [anon_sym_DQUOTE] = ACTIONS(4323), + [sym_true] = ACTIONS(4321), + [sym_false] = ACTIONS(4321), + [anon_sym_NULL] = ACTIONS(4321), + [anon_sym_nullptr] = ACTIONS(4321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4321), + [anon_sym_decltype] = ACTIONS(4321), + [anon_sym_explicit] = ACTIONS(4321), + [anon_sym_export] = ACTIONS(4321), + [anon_sym_import] = ACTIONS(4321), + [anon_sym_template] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_delete] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_namespace] = ACTIONS(4321), + [anon_sym_static_assert] = ACTIONS(4321), + [anon_sym_concept] = ACTIONS(4321), + [anon_sym_co_return] = ACTIONS(4321), + [anon_sym_co_yield] = ACTIONS(4321), + [anon_sym_R_DQUOTE] = ACTIONS(4323), + [anon_sym_LR_DQUOTE] = ACTIONS(4323), + [anon_sym_uR_DQUOTE] = ACTIONS(4323), + [anon_sym_UR_DQUOTE] = ACTIONS(4323), + [anon_sym_u8R_DQUOTE] = ACTIONS(4323), + [anon_sym_co_await] = ACTIONS(4321), + [anon_sym_new] = ACTIONS(4321), + [anon_sym_requires] = ACTIONS(4321), + [anon_sym_CARET_CARET] = ACTIONS(4323), + [anon_sym_LBRACK_COLON] = ACTIONS(4323), + [sym_this] = ACTIONS(4321), }, [STATE(790)] = { - [sym_identifier] = ACTIONS(3992), - [aux_sym_preproc_include_token1] = ACTIONS(3992), - [aux_sym_preproc_def_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token1] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), - [sym_preproc_directive] = ACTIONS(3992), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_BANG] = ACTIONS(3994), - [anon_sym_TILDE] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(3992), - [anon_sym_STAR] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3992), - [anon_sym_SEMI] = ACTIONS(3994), - [anon_sym___extension__] = ACTIONS(3992), - [anon_sym_typedef] = ACTIONS(3992), - [anon_sym_virtual] = ACTIONS(3992), - [anon_sym_extern] = ACTIONS(3992), - [anon_sym___attribute__] = ACTIONS(3992), - [anon_sym___attribute] = ACTIONS(3992), - [anon_sym_using] = ACTIONS(3992), - [anon_sym_COLON_COLON] = ACTIONS(3994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), - [anon_sym___declspec] = ACTIONS(3992), - [anon_sym___based] = ACTIONS(3992), - [anon_sym___cdecl] = ACTIONS(3992), - [anon_sym___clrcall] = ACTIONS(3992), - [anon_sym___stdcall] = ACTIONS(3992), - [anon_sym___fastcall] = ACTIONS(3992), - [anon_sym___thiscall] = ACTIONS(3992), - [anon_sym___vectorcall] = ACTIONS(3992), - [anon_sym_LBRACE] = ACTIONS(3994), - [anon_sym_RBRACE] = ACTIONS(3994), - [anon_sym_signed] = ACTIONS(3992), - [anon_sym_unsigned] = ACTIONS(3992), - [anon_sym_long] = ACTIONS(3992), - [anon_sym_short] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_register] = ACTIONS(3992), - [anon_sym_inline] = ACTIONS(3992), - [anon_sym___inline] = ACTIONS(3992), - [anon_sym___inline__] = ACTIONS(3992), - [anon_sym___forceinline] = ACTIONS(3992), - [anon_sym_thread_local] = ACTIONS(3992), - [anon_sym___thread] = ACTIONS(3992), - [anon_sym_const] = ACTIONS(3992), - [anon_sym_constexpr] = ACTIONS(3992), - [anon_sym_volatile] = ACTIONS(3992), - [anon_sym_restrict] = ACTIONS(3992), - [anon_sym___restrict__] = ACTIONS(3992), - [anon_sym__Atomic] = ACTIONS(3992), - [anon_sym__Noreturn] = ACTIONS(3992), - [anon_sym_noreturn] = ACTIONS(3992), - [anon_sym__Nonnull] = ACTIONS(3992), - [anon_sym_mutable] = ACTIONS(3992), - [anon_sym_constinit] = ACTIONS(3992), - [anon_sym_consteval] = ACTIONS(3992), - [anon_sym_alignas] = ACTIONS(3992), - [anon_sym__Alignas] = ACTIONS(3992), - [sym_primitive_type] = ACTIONS(3992), - [anon_sym_enum] = ACTIONS(3992), - [anon_sym_class] = ACTIONS(3992), - [anon_sym_struct] = ACTIONS(3992), - [anon_sym_union] = ACTIONS(3992), - [anon_sym_if] = ACTIONS(3992), - [anon_sym_switch] = ACTIONS(3992), - [anon_sym_case] = ACTIONS(3992), - [anon_sym_default] = ACTIONS(3992), - [anon_sym_while] = ACTIONS(3992), - [anon_sym_do] = ACTIONS(3992), - [anon_sym_for] = ACTIONS(3992), - [anon_sym_return] = ACTIONS(3992), - [anon_sym_break] = ACTIONS(3992), - [anon_sym_continue] = ACTIONS(3992), - [anon_sym_goto] = ACTIONS(3992), - [anon_sym___try] = ACTIONS(3992), - [anon_sym___leave] = ACTIONS(3992), - [anon_sym_not] = ACTIONS(3992), - [anon_sym_compl] = ACTIONS(3992), - [anon_sym_DASH_DASH] = ACTIONS(3994), - [anon_sym_PLUS_PLUS] = ACTIONS(3994), - [anon_sym_sizeof] = ACTIONS(3992), - [anon_sym___alignof__] = ACTIONS(3992), - [anon_sym___alignof] = ACTIONS(3992), - [anon_sym__alignof] = ACTIONS(3992), - [anon_sym_alignof] = ACTIONS(3992), - [anon_sym__Alignof] = ACTIONS(3992), - [anon_sym_offsetof] = ACTIONS(3992), - [anon_sym__Generic] = ACTIONS(3992), - [anon_sym_typename] = ACTIONS(3992), - [anon_sym_asm] = ACTIONS(3992), - [anon_sym___asm__] = ACTIONS(3992), - [anon_sym___asm] = ACTIONS(3992), - [sym_number_literal] = ACTIONS(3994), - [anon_sym_L_SQUOTE] = ACTIONS(3994), - [anon_sym_u_SQUOTE] = ACTIONS(3994), - [anon_sym_U_SQUOTE] = ACTIONS(3994), - [anon_sym_u8_SQUOTE] = ACTIONS(3994), - [anon_sym_SQUOTE] = ACTIONS(3994), - [anon_sym_L_DQUOTE] = ACTIONS(3994), - [anon_sym_u_DQUOTE] = ACTIONS(3994), - [anon_sym_U_DQUOTE] = ACTIONS(3994), - [anon_sym_u8_DQUOTE] = ACTIONS(3994), - [anon_sym_DQUOTE] = ACTIONS(3994), - [sym_true] = ACTIONS(3992), - [sym_false] = ACTIONS(3992), - [anon_sym_NULL] = ACTIONS(3992), - [anon_sym_nullptr] = ACTIONS(3992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3992), - [anon_sym_decltype] = ACTIONS(3992), - [anon_sym_explicit] = ACTIONS(3992), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_import] = ACTIONS(3992), - [anon_sym_template] = ACTIONS(3992), - [anon_sym_operator] = ACTIONS(3992), - [anon_sym_try] = ACTIONS(3992), - [anon_sym_delete] = ACTIONS(3992), - [anon_sym_throw] = ACTIONS(3992), - [anon_sym_namespace] = ACTIONS(3992), - [anon_sym_static_assert] = ACTIONS(3992), - [anon_sym_concept] = ACTIONS(3992), - [anon_sym_co_return] = ACTIONS(3992), - [anon_sym_co_yield] = ACTIONS(3992), - [anon_sym_R_DQUOTE] = ACTIONS(3994), - [anon_sym_LR_DQUOTE] = ACTIONS(3994), - [anon_sym_uR_DQUOTE] = ACTIONS(3994), - [anon_sym_UR_DQUOTE] = ACTIONS(3994), - [anon_sym_u8R_DQUOTE] = ACTIONS(3994), - [anon_sym_co_await] = ACTIONS(3992), - [anon_sym_new] = ACTIONS(3992), - [anon_sym_requires] = ACTIONS(3992), - [anon_sym_CARET_CARET] = ACTIONS(3994), - [anon_sym_LBRACK_COLON] = ACTIONS(3994), - [sym_this] = ACTIONS(3992), + [sym_identifier] = ACTIONS(3710), + [aux_sym_preproc_include_token1] = ACTIONS(3710), + [aux_sym_preproc_def_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token1] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3710), + [sym_preproc_directive] = ACTIONS(3710), + [anon_sym_LPAREN2] = ACTIONS(3712), + [anon_sym_BANG] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_AMP] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(3712), + [anon_sym___extension__] = ACTIONS(3710), + [anon_sym_typedef] = ACTIONS(3710), + [anon_sym_virtual] = ACTIONS(3710), + [anon_sym_extern] = ACTIONS(3710), + [anon_sym___attribute__] = ACTIONS(3710), + [anon_sym___attribute] = ACTIONS(3710), + [anon_sym_using] = ACTIONS(3710), + [anon_sym_COLON_COLON] = ACTIONS(3712), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3712), + [anon_sym___declspec] = ACTIONS(3710), + [anon_sym___based] = ACTIONS(3710), + [anon_sym___cdecl] = ACTIONS(3710), + [anon_sym___clrcall] = ACTIONS(3710), + [anon_sym___stdcall] = ACTIONS(3710), + [anon_sym___fastcall] = ACTIONS(3710), + [anon_sym___thiscall] = ACTIONS(3710), + [anon_sym___vectorcall] = ACTIONS(3710), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_RBRACE] = ACTIONS(3712), + [anon_sym_signed] = ACTIONS(3710), + [anon_sym_unsigned] = ACTIONS(3710), + [anon_sym_long] = ACTIONS(3710), + [anon_sym_short] = ACTIONS(3710), + [anon_sym_LBRACK] = ACTIONS(3710), + [anon_sym_static] = ACTIONS(3710), + [anon_sym_register] = ACTIONS(3710), + [anon_sym_inline] = ACTIONS(3710), + [anon_sym___inline] = ACTIONS(3710), + [anon_sym___inline__] = ACTIONS(3710), + [anon_sym___forceinline] = ACTIONS(3710), + [anon_sym_thread_local] = ACTIONS(3710), + [anon_sym___thread] = ACTIONS(3710), + [anon_sym_const] = ACTIONS(3710), + [anon_sym_constexpr] = ACTIONS(3710), + [anon_sym_volatile] = ACTIONS(3710), + [anon_sym_restrict] = ACTIONS(3710), + [anon_sym___restrict__] = ACTIONS(3710), + [anon_sym__Atomic] = ACTIONS(3710), + [anon_sym__Noreturn] = ACTIONS(3710), + [anon_sym_noreturn] = ACTIONS(3710), + [anon_sym__Nonnull] = ACTIONS(3710), + [anon_sym_mutable] = ACTIONS(3710), + [anon_sym_constinit] = ACTIONS(3710), + [anon_sym_consteval] = ACTIONS(3710), + [anon_sym_alignas] = ACTIONS(3710), + [anon_sym__Alignas] = ACTIONS(3710), + [sym_primitive_type] = ACTIONS(3710), + [anon_sym_enum] = ACTIONS(3710), + [anon_sym_class] = ACTIONS(3710), + [anon_sym_struct] = ACTIONS(3710), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_if] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3710), + [anon_sym_case] = ACTIONS(3710), + [anon_sym_default] = ACTIONS(3710), + [anon_sym_while] = ACTIONS(3710), + [anon_sym_do] = ACTIONS(3710), + [anon_sym_for] = ACTIONS(3710), + [anon_sym_return] = ACTIONS(3710), + [anon_sym_break] = ACTIONS(3710), + [anon_sym_continue] = ACTIONS(3710), + [anon_sym_goto] = ACTIONS(3710), + [anon_sym___try] = ACTIONS(3710), + [anon_sym___leave] = ACTIONS(3710), + [anon_sym_not] = ACTIONS(3710), + [anon_sym_compl] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3710), + [anon_sym___alignof__] = ACTIONS(3710), + [anon_sym___alignof] = ACTIONS(3710), + [anon_sym__alignof] = ACTIONS(3710), + [anon_sym_alignof] = ACTIONS(3710), + [anon_sym__Alignof] = ACTIONS(3710), + [anon_sym_offsetof] = ACTIONS(3710), + [anon_sym__Generic] = ACTIONS(3710), + [anon_sym_typename] = ACTIONS(3710), + [anon_sym_asm] = ACTIONS(3710), + [anon_sym___asm__] = ACTIONS(3710), + [anon_sym___asm] = ACTIONS(3710), + [sym_number_literal] = ACTIONS(3712), + [anon_sym_L_SQUOTE] = ACTIONS(3712), + [anon_sym_u_SQUOTE] = ACTIONS(3712), + [anon_sym_U_SQUOTE] = ACTIONS(3712), + [anon_sym_u8_SQUOTE] = ACTIONS(3712), + [anon_sym_SQUOTE] = ACTIONS(3712), + [anon_sym_L_DQUOTE] = ACTIONS(3712), + [anon_sym_u_DQUOTE] = ACTIONS(3712), + [anon_sym_U_DQUOTE] = ACTIONS(3712), + [anon_sym_u8_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [sym_true] = ACTIONS(3710), + [sym_false] = ACTIONS(3710), + [anon_sym_NULL] = ACTIONS(3710), + [anon_sym_nullptr] = ACTIONS(3710), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3710), + [anon_sym_decltype] = ACTIONS(3710), + [anon_sym_explicit] = ACTIONS(3710), + [anon_sym_export] = ACTIONS(3710), + [anon_sym_import] = ACTIONS(3710), + [anon_sym_template] = ACTIONS(3710), + [anon_sym_operator] = ACTIONS(3710), + [anon_sym_try] = ACTIONS(3710), + [anon_sym_delete] = ACTIONS(3710), + [anon_sym_throw] = ACTIONS(3710), + [anon_sym_namespace] = ACTIONS(3710), + [anon_sym_static_assert] = ACTIONS(3710), + [anon_sym_concept] = ACTIONS(3710), + [anon_sym_co_return] = ACTIONS(3710), + [anon_sym_co_yield] = ACTIONS(3710), + [anon_sym_R_DQUOTE] = ACTIONS(3712), + [anon_sym_LR_DQUOTE] = ACTIONS(3712), + [anon_sym_uR_DQUOTE] = ACTIONS(3712), + [anon_sym_UR_DQUOTE] = ACTIONS(3712), + [anon_sym_u8R_DQUOTE] = ACTIONS(3712), + [anon_sym_co_await] = ACTIONS(3710), + [anon_sym_new] = ACTIONS(3710), + [anon_sym_requires] = ACTIONS(3710), + [anon_sym_CARET_CARET] = ACTIONS(3712), + [anon_sym_LBRACK_COLON] = ACTIONS(3712), + [sym_this] = ACTIONS(3710), }, [STATE(791)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym___try] = ACTIONS(4156), - [anon_sym___leave] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_export] = ACTIONS(4156), - [anon_sym_import] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), + [sym_identifier] = ACTIONS(3730), + [aux_sym_preproc_include_token1] = ACTIONS(3730), + [aux_sym_preproc_def_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3730), + [sym_preproc_directive] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_BANG] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym___extension__] = ACTIONS(3730), + [anon_sym_typedef] = ACTIONS(3730), + [anon_sym_virtual] = ACTIONS(3730), + [anon_sym_extern] = ACTIONS(3730), + [anon_sym___attribute__] = ACTIONS(3730), + [anon_sym___attribute] = ACTIONS(3730), + [anon_sym_using] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3732), + [anon_sym___declspec] = ACTIONS(3730), + [anon_sym___based] = ACTIONS(3730), + [anon_sym___cdecl] = ACTIONS(3730), + [anon_sym___clrcall] = ACTIONS(3730), + [anon_sym___stdcall] = ACTIONS(3730), + [anon_sym___fastcall] = ACTIONS(3730), + [anon_sym___thiscall] = ACTIONS(3730), + [anon_sym___vectorcall] = ACTIONS(3730), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_RBRACE] = ACTIONS(3732), + [anon_sym_signed] = ACTIONS(3730), + [anon_sym_unsigned] = ACTIONS(3730), + [anon_sym_long] = ACTIONS(3730), + [anon_sym_short] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_static] = ACTIONS(3730), + [anon_sym_register] = ACTIONS(3730), + [anon_sym_inline] = ACTIONS(3730), + [anon_sym___inline] = ACTIONS(3730), + [anon_sym___inline__] = ACTIONS(3730), + [anon_sym___forceinline] = ACTIONS(3730), + [anon_sym_thread_local] = ACTIONS(3730), + [anon_sym___thread] = ACTIONS(3730), + [anon_sym_const] = ACTIONS(3730), + [anon_sym_constexpr] = ACTIONS(3730), + [anon_sym_volatile] = ACTIONS(3730), + [anon_sym_restrict] = ACTIONS(3730), + [anon_sym___restrict__] = ACTIONS(3730), + [anon_sym__Atomic] = ACTIONS(3730), + [anon_sym__Noreturn] = ACTIONS(3730), + [anon_sym_noreturn] = ACTIONS(3730), + [anon_sym__Nonnull] = ACTIONS(3730), + [anon_sym_mutable] = ACTIONS(3730), + [anon_sym_constinit] = ACTIONS(3730), + [anon_sym_consteval] = ACTIONS(3730), + [anon_sym_alignas] = ACTIONS(3730), + [anon_sym__Alignas] = ACTIONS(3730), + [sym_primitive_type] = ACTIONS(3730), + [anon_sym_enum] = ACTIONS(3730), + [anon_sym_class] = ACTIONS(3730), + [anon_sym_struct] = ACTIONS(3730), + [anon_sym_union] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_switch] = ACTIONS(3730), + [anon_sym_case] = ACTIONS(3730), + [anon_sym_default] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_break] = ACTIONS(3730), + [anon_sym_continue] = ACTIONS(3730), + [anon_sym_goto] = ACTIONS(3730), + [anon_sym___try] = ACTIONS(3730), + [anon_sym___leave] = ACTIONS(3730), + [anon_sym_not] = ACTIONS(3730), + [anon_sym_compl] = ACTIONS(3730), + [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_PLUS_PLUS] = ACTIONS(3732), + [anon_sym_sizeof] = ACTIONS(3730), + [anon_sym___alignof__] = ACTIONS(3730), + [anon_sym___alignof] = ACTIONS(3730), + [anon_sym__alignof] = ACTIONS(3730), + [anon_sym_alignof] = ACTIONS(3730), + [anon_sym__Alignof] = ACTIONS(3730), + [anon_sym_offsetof] = ACTIONS(3730), + [anon_sym__Generic] = ACTIONS(3730), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_asm] = ACTIONS(3730), + [anon_sym___asm__] = ACTIONS(3730), + [anon_sym___asm] = ACTIONS(3730), + [sym_number_literal] = ACTIONS(3732), + [anon_sym_L_SQUOTE] = ACTIONS(3732), + [anon_sym_u_SQUOTE] = ACTIONS(3732), + [anon_sym_U_SQUOTE] = ACTIONS(3732), + [anon_sym_u8_SQUOTE] = ACTIONS(3732), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_L_DQUOTE] = ACTIONS(3732), + [anon_sym_u_DQUOTE] = ACTIONS(3732), + [anon_sym_U_DQUOTE] = ACTIONS(3732), + [anon_sym_u8_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(3732), + [sym_true] = ACTIONS(3730), + [sym_false] = ACTIONS(3730), + [anon_sym_NULL] = ACTIONS(3730), + [anon_sym_nullptr] = ACTIONS(3730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3730), + [anon_sym_decltype] = ACTIONS(3730), + [anon_sym_explicit] = ACTIONS(3730), + [anon_sym_export] = ACTIONS(3730), + [anon_sym_import] = ACTIONS(3730), + [anon_sym_template] = ACTIONS(3730), + [anon_sym_operator] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_delete] = ACTIONS(3730), + [anon_sym_throw] = ACTIONS(3730), + [anon_sym_namespace] = ACTIONS(3730), + [anon_sym_static_assert] = ACTIONS(3730), + [anon_sym_concept] = ACTIONS(3730), + [anon_sym_co_return] = ACTIONS(3730), + [anon_sym_co_yield] = ACTIONS(3730), + [anon_sym_R_DQUOTE] = ACTIONS(3732), + [anon_sym_LR_DQUOTE] = ACTIONS(3732), + [anon_sym_uR_DQUOTE] = ACTIONS(3732), + [anon_sym_UR_DQUOTE] = ACTIONS(3732), + [anon_sym_u8R_DQUOTE] = ACTIONS(3732), + [anon_sym_co_await] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_requires] = ACTIONS(3730), + [anon_sym_CARET_CARET] = ACTIONS(3732), + [anon_sym_LBRACK_COLON] = ACTIONS(3732), + [sym_this] = ACTIONS(3730), }, [STATE(792)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym___try] = ACTIONS(4156), - [anon_sym___leave] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_export] = ACTIONS(4156), - [anon_sym_import] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym___cdecl] = ACTIONS(4289), + [anon_sym___clrcall] = ACTIONS(4289), + [anon_sym___stdcall] = ACTIONS(4289), + [anon_sym___fastcall] = ACTIONS(4289), + [anon_sym___thiscall] = ACTIONS(4289), + [anon_sym___vectorcall] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_RBRACE] = ACTIONS(4291), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_switch] = ACTIONS(4289), + [anon_sym_case] = ACTIONS(4289), + [anon_sym_default] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_do] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_goto] = ACTIONS(4289), + [anon_sym___try] = ACTIONS(4289), + [anon_sym___leave] = ACTIONS(4289), + [anon_sym_not] = ACTIONS(4289), + [anon_sym_compl] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_sizeof] = ACTIONS(4289), + [anon_sym___alignof__] = ACTIONS(4289), + [anon_sym___alignof] = ACTIONS(4289), + [anon_sym__alignof] = ACTIONS(4289), + [anon_sym_alignof] = ACTIONS(4289), + [anon_sym__Alignof] = ACTIONS(4289), + [anon_sym_offsetof] = ACTIONS(4289), + [anon_sym__Generic] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [anon_sym_asm] = ACTIONS(4289), + [anon_sym___asm__] = ACTIONS(4289), + [anon_sym___asm] = ACTIONS(4289), + [sym_number_literal] = ACTIONS(4291), + [anon_sym_L_SQUOTE] = ACTIONS(4291), + [anon_sym_u_SQUOTE] = ACTIONS(4291), + [anon_sym_U_SQUOTE] = ACTIONS(4291), + [anon_sym_u8_SQUOTE] = ACTIONS(4291), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_L_DQUOTE] = ACTIONS(4291), + [anon_sym_u_DQUOTE] = ACTIONS(4291), + [anon_sym_U_DQUOTE] = ACTIONS(4291), + [anon_sym_u8_DQUOTE] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [sym_true] = ACTIONS(4289), + [sym_false] = ACTIONS(4289), + [anon_sym_NULL] = ACTIONS(4289), + [anon_sym_nullptr] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_export] = ACTIONS(4289), + [anon_sym_import] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_delete] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_namespace] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_concept] = ACTIONS(4289), + [anon_sym_co_return] = ACTIONS(4289), + [anon_sym_co_yield] = ACTIONS(4289), + [anon_sym_R_DQUOTE] = ACTIONS(4291), + [anon_sym_LR_DQUOTE] = ACTIONS(4291), + [anon_sym_uR_DQUOTE] = ACTIONS(4291), + [anon_sym_UR_DQUOTE] = ACTIONS(4291), + [anon_sym_u8R_DQUOTE] = ACTIONS(4291), + [anon_sym_co_await] = ACTIONS(4289), + [anon_sym_new] = ACTIONS(4289), + [anon_sym_requires] = ACTIONS(4289), + [anon_sym_CARET_CARET] = ACTIONS(4291), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), + [sym_this] = ACTIONS(4289), }, [STATE(793)] = { - [sym_identifier] = ACTIONS(4028), - [aux_sym_preproc_include_token1] = ACTIONS(4028), - [aux_sym_preproc_def_token1] = ACTIONS(4028), - [aux_sym_preproc_if_token1] = ACTIONS(4028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4028), - [sym_preproc_directive] = ACTIONS(4028), - [anon_sym_LPAREN2] = ACTIONS(4030), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4028), - [anon_sym_PLUS] = ACTIONS(4028), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_AMP_AMP] = ACTIONS(4030), - [anon_sym_AMP] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4030), - [anon_sym___extension__] = ACTIONS(4028), - [anon_sym_typedef] = ACTIONS(4028), - [anon_sym_virtual] = ACTIONS(4028), - [anon_sym_extern] = ACTIONS(4028), - [anon_sym___attribute__] = ACTIONS(4028), - [anon_sym___attribute] = ACTIONS(4028), - [anon_sym_using] = ACTIONS(4028), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4030), - [anon_sym___declspec] = ACTIONS(4028), - [anon_sym___based] = ACTIONS(4028), - [anon_sym___cdecl] = ACTIONS(4028), - [anon_sym___clrcall] = ACTIONS(4028), - [anon_sym___stdcall] = ACTIONS(4028), - [anon_sym___fastcall] = ACTIONS(4028), - [anon_sym___thiscall] = ACTIONS(4028), - [anon_sym___vectorcall] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4030), - [anon_sym_RBRACE] = ACTIONS(4030), - [anon_sym_signed] = ACTIONS(4028), - [anon_sym_unsigned] = ACTIONS(4028), - [anon_sym_long] = ACTIONS(4028), - [anon_sym_short] = ACTIONS(4028), - [anon_sym_LBRACK] = ACTIONS(4028), - [anon_sym_static] = ACTIONS(4028), - [anon_sym_register] = ACTIONS(4028), - [anon_sym_inline] = ACTIONS(4028), - [anon_sym___inline] = ACTIONS(4028), - [anon_sym___inline__] = ACTIONS(4028), - [anon_sym___forceinline] = ACTIONS(4028), - [anon_sym_thread_local] = ACTIONS(4028), - [anon_sym___thread] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4028), - [anon_sym_constexpr] = ACTIONS(4028), - [anon_sym_volatile] = ACTIONS(4028), - [anon_sym_restrict] = ACTIONS(4028), - [anon_sym___restrict__] = ACTIONS(4028), - [anon_sym__Atomic] = ACTIONS(4028), - [anon_sym__Noreturn] = ACTIONS(4028), - [anon_sym_noreturn] = ACTIONS(4028), - [anon_sym__Nonnull] = ACTIONS(4028), - [anon_sym_mutable] = ACTIONS(4028), - [anon_sym_constinit] = ACTIONS(4028), - [anon_sym_consteval] = ACTIONS(4028), - [anon_sym_alignas] = ACTIONS(4028), - [anon_sym__Alignas] = ACTIONS(4028), - [sym_primitive_type] = ACTIONS(4028), - [anon_sym_enum] = ACTIONS(4028), - [anon_sym_class] = ACTIONS(4028), - [anon_sym_struct] = ACTIONS(4028), - [anon_sym_union] = ACTIONS(4028), - [anon_sym_if] = ACTIONS(4028), - [anon_sym_switch] = ACTIONS(4028), - [anon_sym_case] = ACTIONS(4028), - [anon_sym_default] = ACTIONS(4028), - [anon_sym_while] = ACTIONS(4028), - [anon_sym_do] = ACTIONS(4028), - [anon_sym_for] = ACTIONS(4028), - [anon_sym_return] = ACTIONS(4028), - [anon_sym_break] = ACTIONS(4028), - [anon_sym_continue] = ACTIONS(4028), - [anon_sym_goto] = ACTIONS(4028), - [anon_sym___try] = ACTIONS(4028), - [anon_sym___leave] = ACTIONS(4028), - [anon_sym_not] = ACTIONS(4028), - [anon_sym_compl] = ACTIONS(4028), - [anon_sym_DASH_DASH] = ACTIONS(4030), - [anon_sym_PLUS_PLUS] = ACTIONS(4030), - [anon_sym_sizeof] = ACTIONS(4028), - [anon_sym___alignof__] = ACTIONS(4028), - [anon_sym___alignof] = ACTIONS(4028), - [anon_sym__alignof] = ACTIONS(4028), - [anon_sym_alignof] = ACTIONS(4028), - [anon_sym__Alignof] = ACTIONS(4028), - [anon_sym_offsetof] = ACTIONS(4028), - [anon_sym__Generic] = ACTIONS(4028), - [anon_sym_typename] = ACTIONS(4028), - [anon_sym_asm] = ACTIONS(4028), - [anon_sym___asm__] = ACTIONS(4028), - [anon_sym___asm] = ACTIONS(4028), - [sym_number_literal] = ACTIONS(4030), - [anon_sym_L_SQUOTE] = ACTIONS(4030), - [anon_sym_u_SQUOTE] = ACTIONS(4030), - [anon_sym_U_SQUOTE] = ACTIONS(4030), - [anon_sym_u8_SQUOTE] = ACTIONS(4030), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_L_DQUOTE] = ACTIONS(4030), - [anon_sym_u_DQUOTE] = ACTIONS(4030), - [anon_sym_U_DQUOTE] = ACTIONS(4030), - [anon_sym_u8_DQUOTE] = ACTIONS(4030), - [anon_sym_DQUOTE] = ACTIONS(4030), - [sym_true] = ACTIONS(4028), - [sym_false] = ACTIONS(4028), - [anon_sym_NULL] = ACTIONS(4028), - [anon_sym_nullptr] = ACTIONS(4028), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4028), - [anon_sym_decltype] = ACTIONS(4028), - [anon_sym_explicit] = ACTIONS(4028), - [anon_sym_export] = ACTIONS(4028), - [anon_sym_import] = ACTIONS(4028), - [anon_sym_template] = ACTIONS(4028), - [anon_sym_operator] = ACTIONS(4028), - [anon_sym_try] = ACTIONS(4028), - [anon_sym_delete] = ACTIONS(4028), - [anon_sym_throw] = ACTIONS(4028), - [anon_sym_namespace] = ACTIONS(4028), - [anon_sym_static_assert] = ACTIONS(4028), - [anon_sym_concept] = ACTIONS(4028), - [anon_sym_co_return] = ACTIONS(4028), - [anon_sym_co_yield] = ACTIONS(4028), - [anon_sym_R_DQUOTE] = ACTIONS(4030), - [anon_sym_LR_DQUOTE] = ACTIONS(4030), - [anon_sym_uR_DQUOTE] = ACTIONS(4030), - [anon_sym_UR_DQUOTE] = ACTIONS(4030), - [anon_sym_u8R_DQUOTE] = ACTIONS(4030), - [anon_sym_co_await] = ACTIONS(4028), - [anon_sym_new] = ACTIONS(4028), - [anon_sym_requires] = ACTIONS(4028), - [anon_sym_CARET_CARET] = ACTIONS(4030), - [anon_sym_LBRACK_COLON] = ACTIONS(4030), - [sym_this] = ACTIONS(4028), + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym___cdecl] = ACTIONS(4289), + [anon_sym___clrcall] = ACTIONS(4289), + [anon_sym___stdcall] = ACTIONS(4289), + [anon_sym___fastcall] = ACTIONS(4289), + [anon_sym___thiscall] = ACTIONS(4289), + [anon_sym___vectorcall] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_RBRACE] = ACTIONS(4291), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_switch] = ACTIONS(4289), + [anon_sym_case] = ACTIONS(4289), + [anon_sym_default] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_do] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_goto] = ACTIONS(4289), + [anon_sym___try] = ACTIONS(4289), + [anon_sym___leave] = ACTIONS(4289), + [anon_sym_not] = ACTIONS(4289), + [anon_sym_compl] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_sizeof] = ACTIONS(4289), + [anon_sym___alignof__] = ACTIONS(4289), + [anon_sym___alignof] = ACTIONS(4289), + [anon_sym__alignof] = ACTIONS(4289), + [anon_sym_alignof] = ACTIONS(4289), + [anon_sym__Alignof] = ACTIONS(4289), + [anon_sym_offsetof] = ACTIONS(4289), + [anon_sym__Generic] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [anon_sym_asm] = ACTIONS(4289), + [anon_sym___asm__] = ACTIONS(4289), + [anon_sym___asm] = ACTIONS(4289), + [sym_number_literal] = ACTIONS(4291), + [anon_sym_L_SQUOTE] = ACTIONS(4291), + [anon_sym_u_SQUOTE] = ACTIONS(4291), + [anon_sym_U_SQUOTE] = ACTIONS(4291), + [anon_sym_u8_SQUOTE] = ACTIONS(4291), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_L_DQUOTE] = ACTIONS(4291), + [anon_sym_u_DQUOTE] = ACTIONS(4291), + [anon_sym_U_DQUOTE] = ACTIONS(4291), + [anon_sym_u8_DQUOTE] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [sym_true] = ACTIONS(4289), + [sym_false] = ACTIONS(4289), + [anon_sym_NULL] = ACTIONS(4289), + [anon_sym_nullptr] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_export] = ACTIONS(4289), + [anon_sym_import] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_delete] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_namespace] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_concept] = ACTIONS(4289), + [anon_sym_co_return] = ACTIONS(4289), + [anon_sym_co_yield] = ACTIONS(4289), + [anon_sym_R_DQUOTE] = ACTIONS(4291), + [anon_sym_LR_DQUOTE] = ACTIONS(4291), + [anon_sym_uR_DQUOTE] = ACTIONS(4291), + [anon_sym_UR_DQUOTE] = ACTIONS(4291), + [anon_sym_u8R_DQUOTE] = ACTIONS(4291), + [anon_sym_co_await] = ACTIONS(4289), + [anon_sym_new] = ACTIONS(4289), + [anon_sym_requires] = ACTIONS(4289), + [anon_sym_CARET_CARET] = ACTIONS(4291), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), + [sym_this] = ACTIONS(4289), }, [STATE(794)] = { - [sym_identifier] = ACTIONS(4104), - [aux_sym_preproc_include_token1] = ACTIONS(4104), - [aux_sym_preproc_def_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token1] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), - [sym_preproc_directive] = ACTIONS(4104), - [anon_sym_LPAREN2] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym___extension__] = ACTIONS(4104), - [anon_sym_typedef] = ACTIONS(4104), - [anon_sym_virtual] = ACTIONS(4104), - [anon_sym_extern] = ACTIONS(4104), - [anon_sym___attribute__] = ACTIONS(4104), - [anon_sym___attribute] = ACTIONS(4104), - [anon_sym_using] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), - [anon_sym___declspec] = ACTIONS(4104), - [anon_sym___based] = ACTIONS(4104), - [anon_sym___cdecl] = ACTIONS(4104), - [anon_sym___clrcall] = ACTIONS(4104), - [anon_sym___stdcall] = ACTIONS(4104), - [anon_sym___fastcall] = ACTIONS(4104), - [anon_sym___thiscall] = ACTIONS(4104), - [anon_sym___vectorcall] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_signed] = ACTIONS(4104), - [anon_sym_unsigned] = ACTIONS(4104), - [anon_sym_long] = ACTIONS(4104), - [anon_sym_short] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(4104), - [anon_sym_static] = ACTIONS(4104), - [anon_sym_register] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym___inline] = ACTIONS(4104), - [anon_sym___inline__] = ACTIONS(4104), - [anon_sym___forceinline] = ACTIONS(4104), - [anon_sym_thread_local] = ACTIONS(4104), - [anon_sym___thread] = ACTIONS(4104), - [anon_sym_const] = ACTIONS(4104), - [anon_sym_constexpr] = ACTIONS(4104), - [anon_sym_volatile] = ACTIONS(4104), - [anon_sym_restrict] = ACTIONS(4104), - [anon_sym___restrict__] = ACTIONS(4104), - [anon_sym__Atomic] = ACTIONS(4104), - [anon_sym__Noreturn] = ACTIONS(4104), - [anon_sym_noreturn] = ACTIONS(4104), - [anon_sym__Nonnull] = ACTIONS(4104), - [anon_sym_mutable] = ACTIONS(4104), - [anon_sym_constinit] = ACTIONS(4104), - [anon_sym_consteval] = ACTIONS(4104), - [anon_sym_alignas] = ACTIONS(4104), - [anon_sym__Alignas] = ACTIONS(4104), - [sym_primitive_type] = ACTIONS(4104), - [anon_sym_enum] = ACTIONS(4104), - [anon_sym_class] = ACTIONS(4104), - [anon_sym_struct] = ACTIONS(4104), - [anon_sym_union] = ACTIONS(4104), - [anon_sym_if] = ACTIONS(4104), - [anon_sym_switch] = ACTIONS(4104), - [anon_sym_case] = ACTIONS(4104), - [anon_sym_default] = ACTIONS(4104), - [anon_sym_while] = ACTIONS(4104), - [anon_sym_do] = ACTIONS(4104), - [anon_sym_for] = ACTIONS(4104), - [anon_sym_return] = ACTIONS(4104), - [anon_sym_break] = ACTIONS(4104), - [anon_sym_continue] = ACTIONS(4104), - [anon_sym_goto] = ACTIONS(4104), - [anon_sym___try] = ACTIONS(4104), - [anon_sym___leave] = ACTIONS(4104), - [anon_sym_not] = ACTIONS(4104), - [anon_sym_compl] = ACTIONS(4104), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_sizeof] = ACTIONS(4104), - [anon_sym___alignof__] = ACTIONS(4104), - [anon_sym___alignof] = ACTIONS(4104), - [anon_sym__alignof] = ACTIONS(4104), - [anon_sym_alignof] = ACTIONS(4104), - [anon_sym__Alignof] = ACTIONS(4104), - [anon_sym_offsetof] = ACTIONS(4104), - [anon_sym__Generic] = ACTIONS(4104), - [anon_sym_typename] = ACTIONS(4104), - [anon_sym_asm] = ACTIONS(4104), - [anon_sym___asm__] = ACTIONS(4104), - [anon_sym___asm] = ACTIONS(4104), - [sym_number_literal] = ACTIONS(4106), - [anon_sym_L_SQUOTE] = ACTIONS(4106), - [anon_sym_u_SQUOTE] = ACTIONS(4106), - [anon_sym_U_SQUOTE] = ACTIONS(4106), - [anon_sym_u8_SQUOTE] = ACTIONS(4106), - [anon_sym_SQUOTE] = ACTIONS(4106), - [anon_sym_L_DQUOTE] = ACTIONS(4106), - [anon_sym_u_DQUOTE] = ACTIONS(4106), - [anon_sym_U_DQUOTE] = ACTIONS(4106), - [anon_sym_u8_DQUOTE] = ACTIONS(4106), - [anon_sym_DQUOTE] = ACTIONS(4106), - [sym_true] = ACTIONS(4104), - [sym_false] = ACTIONS(4104), - [anon_sym_NULL] = ACTIONS(4104), - [anon_sym_nullptr] = ACTIONS(4104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4104), - [anon_sym_decltype] = ACTIONS(4104), - [anon_sym_explicit] = ACTIONS(4104), - [anon_sym_export] = ACTIONS(4104), - [anon_sym_import] = ACTIONS(4104), - [anon_sym_template] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_try] = ACTIONS(4104), - [anon_sym_delete] = ACTIONS(4104), - [anon_sym_throw] = ACTIONS(4104), - [anon_sym_namespace] = ACTIONS(4104), - [anon_sym_static_assert] = ACTIONS(4104), - [anon_sym_concept] = ACTIONS(4104), - [anon_sym_co_return] = ACTIONS(4104), - [anon_sym_co_yield] = ACTIONS(4104), - [anon_sym_R_DQUOTE] = ACTIONS(4106), - [anon_sym_LR_DQUOTE] = ACTIONS(4106), - [anon_sym_uR_DQUOTE] = ACTIONS(4106), - [anon_sym_UR_DQUOTE] = ACTIONS(4106), - [anon_sym_u8R_DQUOTE] = ACTIONS(4106), - [anon_sym_co_await] = ACTIONS(4104), - [anon_sym_new] = ACTIONS(4104), - [anon_sym_requires] = ACTIONS(4104), - [anon_sym_CARET_CARET] = ACTIONS(4106), - [anon_sym_LBRACK_COLON] = ACTIONS(4106), - [sym_this] = ACTIONS(4104), + [sym_identifier] = ACTIONS(3734), + [aux_sym_preproc_include_token1] = ACTIONS(3734), + [aux_sym_preproc_def_token1] = ACTIONS(3734), + [aux_sym_preproc_if_token1] = ACTIONS(3734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3734), + [sym_preproc_directive] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3736), + [anon_sym_TILDE] = ACTIONS(3736), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3736), + [anon_sym___extension__] = ACTIONS(3734), + [anon_sym_typedef] = ACTIONS(3734), + [anon_sym_virtual] = ACTIONS(3734), + [anon_sym_extern] = ACTIONS(3734), + [anon_sym___attribute__] = ACTIONS(3734), + [anon_sym___attribute] = ACTIONS(3734), + [anon_sym_using] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3736), + [anon_sym___declspec] = ACTIONS(3734), + [anon_sym___based] = ACTIONS(3734), + [anon_sym___cdecl] = ACTIONS(3734), + [anon_sym___clrcall] = ACTIONS(3734), + [anon_sym___stdcall] = ACTIONS(3734), + [anon_sym___fastcall] = ACTIONS(3734), + [anon_sym___thiscall] = ACTIONS(3734), + [anon_sym___vectorcall] = ACTIONS(3734), + [anon_sym_LBRACE] = ACTIONS(3736), + [anon_sym_RBRACE] = ACTIONS(3736), + [anon_sym_signed] = ACTIONS(3734), + [anon_sym_unsigned] = ACTIONS(3734), + [anon_sym_long] = ACTIONS(3734), + [anon_sym_short] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_static] = ACTIONS(3734), + [anon_sym_register] = ACTIONS(3734), + [anon_sym_inline] = ACTIONS(3734), + [anon_sym___inline] = ACTIONS(3734), + [anon_sym___inline__] = ACTIONS(3734), + [anon_sym___forceinline] = ACTIONS(3734), + [anon_sym_thread_local] = ACTIONS(3734), + [anon_sym___thread] = ACTIONS(3734), + [anon_sym_const] = ACTIONS(3734), + [anon_sym_constexpr] = ACTIONS(3734), + [anon_sym_volatile] = ACTIONS(3734), + [anon_sym_restrict] = ACTIONS(3734), + [anon_sym___restrict__] = ACTIONS(3734), + [anon_sym__Atomic] = ACTIONS(3734), + [anon_sym__Noreturn] = ACTIONS(3734), + [anon_sym_noreturn] = ACTIONS(3734), + [anon_sym__Nonnull] = ACTIONS(3734), + [anon_sym_mutable] = ACTIONS(3734), + [anon_sym_constinit] = ACTIONS(3734), + [anon_sym_consteval] = ACTIONS(3734), + [anon_sym_alignas] = ACTIONS(3734), + [anon_sym__Alignas] = ACTIONS(3734), + [sym_primitive_type] = ACTIONS(3734), + [anon_sym_enum] = ACTIONS(3734), + [anon_sym_class] = ACTIONS(3734), + [anon_sym_struct] = ACTIONS(3734), + [anon_sym_union] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_switch] = ACTIONS(3734), + [anon_sym_case] = ACTIONS(3734), + [anon_sym_default] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_break] = ACTIONS(3734), + [anon_sym_continue] = ACTIONS(3734), + [anon_sym_goto] = ACTIONS(3734), + [anon_sym___try] = ACTIONS(3734), + [anon_sym___leave] = ACTIONS(3734), + [anon_sym_not] = ACTIONS(3734), + [anon_sym_compl] = ACTIONS(3734), + [anon_sym_DASH_DASH] = ACTIONS(3736), + [anon_sym_PLUS_PLUS] = ACTIONS(3736), + [anon_sym_sizeof] = ACTIONS(3734), + [anon_sym___alignof__] = ACTIONS(3734), + [anon_sym___alignof] = ACTIONS(3734), + [anon_sym__alignof] = ACTIONS(3734), + [anon_sym_alignof] = ACTIONS(3734), + [anon_sym__Alignof] = ACTIONS(3734), + [anon_sym_offsetof] = ACTIONS(3734), + [anon_sym__Generic] = ACTIONS(3734), + [anon_sym_typename] = ACTIONS(3734), + [anon_sym_asm] = ACTIONS(3734), + [anon_sym___asm__] = ACTIONS(3734), + [anon_sym___asm] = ACTIONS(3734), + [sym_number_literal] = ACTIONS(3736), + [anon_sym_L_SQUOTE] = ACTIONS(3736), + [anon_sym_u_SQUOTE] = ACTIONS(3736), + [anon_sym_U_SQUOTE] = ACTIONS(3736), + [anon_sym_u8_SQUOTE] = ACTIONS(3736), + [anon_sym_SQUOTE] = ACTIONS(3736), + [anon_sym_L_DQUOTE] = ACTIONS(3736), + [anon_sym_u_DQUOTE] = ACTIONS(3736), + [anon_sym_U_DQUOTE] = ACTIONS(3736), + [anon_sym_u8_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE] = ACTIONS(3736), + [sym_true] = ACTIONS(3734), + [sym_false] = ACTIONS(3734), + [anon_sym_NULL] = ACTIONS(3734), + [anon_sym_nullptr] = ACTIONS(3734), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3734), + [anon_sym_decltype] = ACTIONS(3734), + [anon_sym_explicit] = ACTIONS(3734), + [anon_sym_export] = ACTIONS(3734), + [anon_sym_import] = ACTIONS(3734), + [anon_sym_template] = ACTIONS(3734), + [anon_sym_operator] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_delete] = ACTIONS(3734), + [anon_sym_throw] = ACTIONS(3734), + [anon_sym_namespace] = ACTIONS(3734), + [anon_sym_static_assert] = ACTIONS(3734), + [anon_sym_concept] = ACTIONS(3734), + [anon_sym_co_return] = ACTIONS(3734), + [anon_sym_co_yield] = ACTIONS(3734), + [anon_sym_R_DQUOTE] = ACTIONS(3736), + [anon_sym_LR_DQUOTE] = ACTIONS(3736), + [anon_sym_uR_DQUOTE] = ACTIONS(3736), + [anon_sym_UR_DQUOTE] = ACTIONS(3736), + [anon_sym_u8R_DQUOTE] = ACTIONS(3736), + [anon_sym_co_await] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_requires] = ACTIONS(3734), + [anon_sym_CARET_CARET] = ACTIONS(3736), + [anon_sym_LBRACK_COLON] = ACTIONS(3736), + [sym_this] = ACTIONS(3734), }, [STATE(795)] = { - [sym_identifier] = ACTIONS(4108), - [aux_sym_preproc_include_token1] = ACTIONS(4108), - [aux_sym_preproc_def_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token1] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_LPAREN2] = ACTIONS(4110), - [anon_sym_BANG] = ACTIONS(4110), - [anon_sym_TILDE] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym___extension__] = ACTIONS(4108), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_virtual] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym___attribute__] = ACTIONS(4108), - [anon_sym___attribute] = ACTIONS(4108), - [anon_sym_using] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), - [anon_sym___declspec] = ACTIONS(4108), - [anon_sym___based] = ACTIONS(4108), - [anon_sym___cdecl] = ACTIONS(4108), - [anon_sym___clrcall] = ACTIONS(4108), - [anon_sym___stdcall] = ACTIONS(4108), - [anon_sym___fastcall] = ACTIONS(4108), - [anon_sym___thiscall] = ACTIONS(4108), - [anon_sym___vectorcall] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_signed] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4108), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym___inline] = ACTIONS(4108), - [anon_sym___inline__] = ACTIONS(4108), - [anon_sym___forceinline] = ACTIONS(4108), - [anon_sym_thread_local] = ACTIONS(4108), - [anon_sym___thread] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym___restrict__] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym__Noreturn] = ACTIONS(4108), - [anon_sym_noreturn] = ACTIONS(4108), - [anon_sym__Nonnull] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_constinit] = ACTIONS(4108), - [anon_sym_consteval] = ACTIONS(4108), - [anon_sym_alignas] = ACTIONS(4108), - [anon_sym__Alignas] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_class] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(4108), - [anon_sym_case] = ACTIONS(4108), - [anon_sym_default] = ACTIONS(4108), - [anon_sym_while] = ACTIONS(4108), - [anon_sym_do] = ACTIONS(4108), - [anon_sym_for] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_goto] = ACTIONS(4108), - [anon_sym___try] = ACTIONS(4108), - [anon_sym___leave] = ACTIONS(4108), - [anon_sym_not] = ACTIONS(4108), - [anon_sym_compl] = ACTIONS(4108), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_sizeof] = ACTIONS(4108), - [anon_sym___alignof__] = ACTIONS(4108), - [anon_sym___alignof] = ACTIONS(4108), - [anon_sym__alignof] = ACTIONS(4108), - [anon_sym_alignof] = ACTIONS(4108), - [anon_sym__Alignof] = ACTIONS(4108), - [anon_sym_offsetof] = ACTIONS(4108), - [anon_sym__Generic] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [anon_sym_asm] = ACTIONS(4108), - [anon_sym___asm__] = ACTIONS(4108), - [anon_sym___asm] = ACTIONS(4108), - [sym_number_literal] = ACTIONS(4110), - [anon_sym_L_SQUOTE] = ACTIONS(4110), - [anon_sym_u_SQUOTE] = ACTIONS(4110), - [anon_sym_U_SQUOTE] = ACTIONS(4110), - [anon_sym_u8_SQUOTE] = ACTIONS(4110), - [anon_sym_SQUOTE] = ACTIONS(4110), - [anon_sym_L_DQUOTE] = ACTIONS(4110), - [anon_sym_u_DQUOTE] = ACTIONS(4110), - [anon_sym_U_DQUOTE] = ACTIONS(4110), - [anon_sym_u8_DQUOTE] = ACTIONS(4110), - [anon_sym_DQUOTE] = ACTIONS(4110), - [sym_true] = ACTIONS(4108), - [sym_false] = ACTIONS(4108), - [anon_sym_NULL] = ACTIONS(4108), - [anon_sym_nullptr] = ACTIONS(4108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4108), - [anon_sym_decltype] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_export] = ACTIONS(4108), - [anon_sym_import] = ACTIONS(4108), - [anon_sym_template] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_try] = ACTIONS(4108), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_throw] = ACTIONS(4108), - [anon_sym_namespace] = ACTIONS(4108), - [anon_sym_static_assert] = ACTIONS(4108), - [anon_sym_concept] = ACTIONS(4108), - [anon_sym_co_return] = ACTIONS(4108), - [anon_sym_co_yield] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(4110), - [anon_sym_LR_DQUOTE] = ACTIONS(4110), - [anon_sym_uR_DQUOTE] = ACTIONS(4110), - [anon_sym_UR_DQUOTE] = ACTIONS(4110), - [anon_sym_u8R_DQUOTE] = ACTIONS(4110), - [anon_sym_co_await] = ACTIONS(4108), - [anon_sym_new] = ACTIONS(4108), - [anon_sym_requires] = ACTIONS(4108), - [anon_sym_CARET_CARET] = ACTIONS(4110), - [anon_sym_LBRACK_COLON] = ACTIONS(4110), - [sym_this] = ACTIONS(4108), + [sym_identifier] = ACTIONS(3738), + [aux_sym_preproc_include_token1] = ACTIONS(3738), + [aux_sym_preproc_def_token1] = ACTIONS(3738), + [aux_sym_preproc_if_token1] = ACTIONS(3738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3738), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3738), + [sym_preproc_directive] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym___extension__] = ACTIONS(3738), + [anon_sym_typedef] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym___attribute__] = ACTIONS(3738), + [anon_sym___attribute] = ACTIONS(3738), + [anon_sym_using] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3740), + [anon_sym___declspec] = ACTIONS(3738), + [anon_sym___based] = ACTIONS(3738), + [anon_sym___cdecl] = ACTIONS(3738), + [anon_sym___clrcall] = ACTIONS(3738), + [anon_sym___stdcall] = ACTIONS(3738), + [anon_sym___fastcall] = ACTIONS(3738), + [anon_sym___thiscall] = ACTIONS(3738), + [anon_sym___vectorcall] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_RBRACE] = ACTIONS(3740), + [anon_sym_signed] = ACTIONS(3738), + [anon_sym_unsigned] = ACTIONS(3738), + [anon_sym_long] = ACTIONS(3738), + [anon_sym_short] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_register] = ACTIONS(3738), + [anon_sym_inline] = ACTIONS(3738), + [anon_sym___inline] = ACTIONS(3738), + [anon_sym___inline__] = ACTIONS(3738), + [anon_sym___forceinline] = ACTIONS(3738), + [anon_sym_thread_local] = ACTIONS(3738), + [anon_sym___thread] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_constexpr] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_restrict] = ACTIONS(3738), + [anon_sym___restrict__] = ACTIONS(3738), + [anon_sym__Atomic] = ACTIONS(3738), + [anon_sym__Noreturn] = ACTIONS(3738), + [anon_sym_noreturn] = ACTIONS(3738), + [anon_sym__Nonnull] = ACTIONS(3738), + [anon_sym_mutable] = ACTIONS(3738), + [anon_sym_constinit] = ACTIONS(3738), + [anon_sym_consteval] = ACTIONS(3738), + [anon_sym_alignas] = ACTIONS(3738), + [anon_sym__Alignas] = ACTIONS(3738), + [sym_primitive_type] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_union] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_switch] = ACTIONS(3738), + [anon_sym_case] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_break] = ACTIONS(3738), + [anon_sym_continue] = ACTIONS(3738), + [anon_sym_goto] = ACTIONS(3738), + [anon_sym___try] = ACTIONS(3738), + [anon_sym___leave] = ACTIONS(3738), + [anon_sym_not] = ACTIONS(3738), + [anon_sym_compl] = ACTIONS(3738), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_sizeof] = ACTIONS(3738), + [anon_sym___alignof__] = ACTIONS(3738), + [anon_sym___alignof] = ACTIONS(3738), + [anon_sym__alignof] = ACTIONS(3738), + [anon_sym_alignof] = ACTIONS(3738), + [anon_sym__Alignof] = ACTIONS(3738), + [anon_sym_offsetof] = ACTIONS(3738), + [anon_sym__Generic] = ACTIONS(3738), + [anon_sym_typename] = ACTIONS(3738), + [anon_sym_asm] = ACTIONS(3738), + [anon_sym___asm__] = ACTIONS(3738), + [anon_sym___asm] = ACTIONS(3738), + [sym_number_literal] = ACTIONS(3740), + [anon_sym_L_SQUOTE] = ACTIONS(3740), + [anon_sym_u_SQUOTE] = ACTIONS(3740), + [anon_sym_U_SQUOTE] = ACTIONS(3740), + [anon_sym_u8_SQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_L_DQUOTE] = ACTIONS(3740), + [anon_sym_u_DQUOTE] = ACTIONS(3740), + [anon_sym_U_DQUOTE] = ACTIONS(3740), + [anon_sym_u8_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [sym_true] = ACTIONS(3738), + [sym_false] = ACTIONS(3738), + [anon_sym_NULL] = ACTIONS(3738), + [anon_sym_nullptr] = ACTIONS(3738), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3738), + [anon_sym_decltype] = ACTIONS(3738), + [anon_sym_explicit] = ACTIONS(3738), + [anon_sym_export] = ACTIONS(3738), + [anon_sym_import] = ACTIONS(3738), + [anon_sym_template] = ACTIONS(3738), + [anon_sym_operator] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_delete] = ACTIONS(3738), + [anon_sym_throw] = ACTIONS(3738), + [anon_sym_namespace] = ACTIONS(3738), + [anon_sym_static_assert] = ACTIONS(3738), + [anon_sym_concept] = ACTIONS(3738), + [anon_sym_co_return] = ACTIONS(3738), + [anon_sym_co_yield] = ACTIONS(3738), + [anon_sym_R_DQUOTE] = ACTIONS(3740), + [anon_sym_LR_DQUOTE] = ACTIONS(3740), + [anon_sym_uR_DQUOTE] = ACTIONS(3740), + [anon_sym_UR_DQUOTE] = ACTIONS(3740), + [anon_sym_u8R_DQUOTE] = ACTIONS(3740), + [anon_sym_co_await] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_requires] = ACTIONS(3738), + [anon_sym_CARET_CARET] = ACTIONS(3740), + [anon_sym_LBRACK_COLON] = ACTIONS(3740), + [sym_this] = ACTIONS(3738), }, [STATE(796)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_include_token1] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym___cdecl] = ACTIONS(4160), - [anon_sym___clrcall] = ACTIONS(4160), - [anon_sym___stdcall] = ACTIONS(4160), - [anon_sym___fastcall] = ACTIONS(4160), - [anon_sym___thiscall] = ACTIONS(4160), - [anon_sym___vectorcall] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_case] = ACTIONS(4160), - [anon_sym_default] = ACTIONS(4160), - [anon_sym_while] = ACTIONS(4160), - [anon_sym_do] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym___try] = ACTIONS(4160), - [anon_sym___leave] = ACTIONS(4160), - [anon_sym_not] = ACTIONS(4160), - [anon_sym_compl] = ACTIONS(4160), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_sizeof] = ACTIONS(4160), - [anon_sym___alignof__] = ACTIONS(4160), - [anon_sym___alignof] = ACTIONS(4160), - [anon_sym__alignof] = ACTIONS(4160), - [anon_sym_alignof] = ACTIONS(4160), - [anon_sym__Alignof] = ACTIONS(4160), - [anon_sym_offsetof] = ACTIONS(4160), - [anon_sym__Generic] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym___asm__] = ACTIONS(4160), - [anon_sym___asm] = ACTIONS(4160), - [sym_number_literal] = ACTIONS(4162), - [anon_sym_L_SQUOTE] = ACTIONS(4162), - [anon_sym_u_SQUOTE] = ACTIONS(4162), - [anon_sym_U_SQUOTE] = ACTIONS(4162), - [anon_sym_u8_SQUOTE] = ACTIONS(4162), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_L_DQUOTE] = ACTIONS(4162), - [anon_sym_u_DQUOTE] = ACTIONS(4162), - [anon_sym_U_DQUOTE] = ACTIONS(4162), - [anon_sym_u8_DQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [anon_sym_NULL] = ACTIONS(4160), - [anon_sym_nullptr] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_export] = ACTIONS(4160), - [anon_sym_import] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_try] = ACTIONS(4160), - [anon_sym_delete] = ACTIONS(4160), - [anon_sym_throw] = ACTIONS(4160), - [anon_sym_namespace] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_concept] = ACTIONS(4160), - [anon_sym_co_return] = ACTIONS(4160), - [anon_sym_co_yield] = ACTIONS(4160), - [anon_sym_R_DQUOTE] = ACTIONS(4162), - [anon_sym_LR_DQUOTE] = ACTIONS(4162), - [anon_sym_uR_DQUOTE] = ACTIONS(4162), - [anon_sym_UR_DQUOTE] = ACTIONS(4162), - [anon_sym_u8R_DQUOTE] = ACTIONS(4162), - [anon_sym_co_await] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4160), - [anon_sym_requires] = ACTIONS(4160), - [anon_sym_CARET_CARET] = ACTIONS(4162), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - [sym_this] = ACTIONS(4160), + [sym_identifier] = ACTIONS(3754), + [aux_sym_preproc_include_token1] = ACTIONS(3754), + [aux_sym_preproc_def_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token1] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3754), + [sym_preproc_directive] = ACTIONS(3754), + [anon_sym_LPAREN2] = ACTIONS(3756), + [anon_sym_BANG] = ACTIONS(3756), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_DASH] = ACTIONS(3754), + [anon_sym_PLUS] = ACTIONS(3754), + [anon_sym_STAR] = ACTIONS(3756), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(3756), + [anon_sym___extension__] = ACTIONS(3754), + [anon_sym_typedef] = ACTIONS(3754), + [anon_sym_virtual] = ACTIONS(3754), + [anon_sym_extern] = ACTIONS(3754), + [anon_sym___attribute__] = ACTIONS(3754), + [anon_sym___attribute] = ACTIONS(3754), + [anon_sym_using] = ACTIONS(3754), + [anon_sym_COLON_COLON] = ACTIONS(3756), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3756), + [anon_sym___declspec] = ACTIONS(3754), + [anon_sym___based] = ACTIONS(3754), + [anon_sym___cdecl] = ACTIONS(3754), + [anon_sym___clrcall] = ACTIONS(3754), + [anon_sym___stdcall] = ACTIONS(3754), + [anon_sym___fastcall] = ACTIONS(3754), + [anon_sym___thiscall] = ACTIONS(3754), + [anon_sym___vectorcall] = ACTIONS(3754), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_RBRACE] = ACTIONS(3756), + [anon_sym_signed] = ACTIONS(3754), + [anon_sym_unsigned] = ACTIONS(3754), + [anon_sym_long] = ACTIONS(3754), + [anon_sym_short] = ACTIONS(3754), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_static] = ACTIONS(3754), + [anon_sym_register] = ACTIONS(3754), + [anon_sym_inline] = ACTIONS(3754), + [anon_sym___inline] = ACTIONS(3754), + [anon_sym___inline__] = ACTIONS(3754), + [anon_sym___forceinline] = ACTIONS(3754), + [anon_sym_thread_local] = ACTIONS(3754), + [anon_sym___thread] = ACTIONS(3754), + [anon_sym_const] = ACTIONS(3754), + [anon_sym_constexpr] = ACTIONS(3754), + [anon_sym_volatile] = ACTIONS(3754), + [anon_sym_restrict] = ACTIONS(3754), + [anon_sym___restrict__] = ACTIONS(3754), + [anon_sym__Atomic] = ACTIONS(3754), + [anon_sym__Noreturn] = ACTIONS(3754), + [anon_sym_noreturn] = ACTIONS(3754), + [anon_sym__Nonnull] = ACTIONS(3754), + [anon_sym_mutable] = ACTIONS(3754), + [anon_sym_constinit] = ACTIONS(3754), + [anon_sym_consteval] = ACTIONS(3754), + [anon_sym_alignas] = ACTIONS(3754), + [anon_sym__Alignas] = ACTIONS(3754), + [sym_primitive_type] = ACTIONS(3754), + [anon_sym_enum] = ACTIONS(3754), + [anon_sym_class] = ACTIONS(3754), + [anon_sym_struct] = ACTIONS(3754), + [anon_sym_union] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(3754), + [anon_sym_switch] = ACTIONS(3754), + [anon_sym_case] = ACTIONS(3754), + [anon_sym_default] = ACTIONS(3754), + [anon_sym_while] = ACTIONS(3754), + [anon_sym_do] = ACTIONS(3754), + [anon_sym_for] = ACTIONS(3754), + [anon_sym_return] = ACTIONS(3754), + [anon_sym_break] = ACTIONS(3754), + [anon_sym_continue] = ACTIONS(3754), + [anon_sym_goto] = ACTIONS(3754), + [anon_sym___try] = ACTIONS(3754), + [anon_sym___leave] = ACTIONS(3754), + [anon_sym_not] = ACTIONS(3754), + [anon_sym_compl] = ACTIONS(3754), + [anon_sym_DASH_DASH] = ACTIONS(3756), + [anon_sym_PLUS_PLUS] = ACTIONS(3756), + [anon_sym_sizeof] = ACTIONS(3754), + [anon_sym___alignof__] = ACTIONS(3754), + [anon_sym___alignof] = ACTIONS(3754), + [anon_sym__alignof] = ACTIONS(3754), + [anon_sym_alignof] = ACTIONS(3754), + [anon_sym__Alignof] = ACTIONS(3754), + [anon_sym_offsetof] = ACTIONS(3754), + [anon_sym__Generic] = ACTIONS(3754), + [anon_sym_typename] = ACTIONS(3754), + [anon_sym_asm] = ACTIONS(3754), + [anon_sym___asm__] = ACTIONS(3754), + [anon_sym___asm] = ACTIONS(3754), + [sym_number_literal] = ACTIONS(3756), + [anon_sym_L_SQUOTE] = ACTIONS(3756), + [anon_sym_u_SQUOTE] = ACTIONS(3756), + [anon_sym_U_SQUOTE] = ACTIONS(3756), + [anon_sym_u8_SQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3756), + [anon_sym_L_DQUOTE] = ACTIONS(3756), + [anon_sym_u_DQUOTE] = ACTIONS(3756), + [anon_sym_U_DQUOTE] = ACTIONS(3756), + [anon_sym_u8_DQUOTE] = ACTIONS(3756), + [anon_sym_DQUOTE] = ACTIONS(3756), + [sym_true] = ACTIONS(3754), + [sym_false] = ACTIONS(3754), + [anon_sym_NULL] = ACTIONS(3754), + [anon_sym_nullptr] = ACTIONS(3754), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3754), + [anon_sym_decltype] = ACTIONS(3754), + [anon_sym_explicit] = ACTIONS(3754), + [anon_sym_export] = ACTIONS(3754), + [anon_sym_import] = ACTIONS(3754), + [anon_sym_template] = ACTIONS(3754), + [anon_sym_operator] = ACTIONS(3754), + [anon_sym_try] = ACTIONS(3754), + [anon_sym_delete] = ACTIONS(3754), + [anon_sym_throw] = ACTIONS(3754), + [anon_sym_namespace] = ACTIONS(3754), + [anon_sym_static_assert] = ACTIONS(3754), + [anon_sym_concept] = ACTIONS(3754), + [anon_sym_co_return] = ACTIONS(3754), + [anon_sym_co_yield] = ACTIONS(3754), + [anon_sym_R_DQUOTE] = ACTIONS(3756), + [anon_sym_LR_DQUOTE] = ACTIONS(3756), + [anon_sym_uR_DQUOTE] = ACTIONS(3756), + [anon_sym_UR_DQUOTE] = ACTIONS(3756), + [anon_sym_u8R_DQUOTE] = ACTIONS(3756), + [anon_sym_co_await] = ACTIONS(3754), + [anon_sym_new] = ACTIONS(3754), + [anon_sym_requires] = ACTIONS(3754), + [anon_sym_CARET_CARET] = ACTIONS(3756), + [anon_sym_LBRACK_COLON] = ACTIONS(3756), + [sym_this] = ACTIONS(3754), }, [STATE(797)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_include_token1] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym___cdecl] = ACTIONS(4160), - [anon_sym___clrcall] = ACTIONS(4160), - [anon_sym___stdcall] = ACTIONS(4160), - [anon_sym___fastcall] = ACTIONS(4160), - [anon_sym___thiscall] = ACTIONS(4160), - [anon_sym___vectorcall] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_case] = ACTIONS(4160), - [anon_sym_default] = ACTIONS(4160), - [anon_sym_while] = ACTIONS(4160), - [anon_sym_do] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym___try] = ACTIONS(4160), - [anon_sym___leave] = ACTIONS(4160), - [anon_sym_not] = ACTIONS(4160), - [anon_sym_compl] = ACTIONS(4160), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_sizeof] = ACTIONS(4160), - [anon_sym___alignof__] = ACTIONS(4160), - [anon_sym___alignof] = ACTIONS(4160), - [anon_sym__alignof] = ACTIONS(4160), - [anon_sym_alignof] = ACTIONS(4160), - [anon_sym__Alignof] = ACTIONS(4160), - [anon_sym_offsetof] = ACTIONS(4160), - [anon_sym__Generic] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym___asm__] = ACTIONS(4160), - [anon_sym___asm] = ACTIONS(4160), - [sym_number_literal] = ACTIONS(4162), - [anon_sym_L_SQUOTE] = ACTIONS(4162), - [anon_sym_u_SQUOTE] = ACTIONS(4162), - [anon_sym_U_SQUOTE] = ACTIONS(4162), - [anon_sym_u8_SQUOTE] = ACTIONS(4162), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_L_DQUOTE] = ACTIONS(4162), - [anon_sym_u_DQUOTE] = ACTIONS(4162), - [anon_sym_U_DQUOTE] = ACTIONS(4162), - [anon_sym_u8_DQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [anon_sym_NULL] = ACTIONS(4160), - [anon_sym_nullptr] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_export] = ACTIONS(4160), - [anon_sym_import] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_try] = ACTIONS(4160), - [anon_sym_delete] = ACTIONS(4160), - [anon_sym_throw] = ACTIONS(4160), - [anon_sym_namespace] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_concept] = ACTIONS(4160), - [anon_sym_co_return] = ACTIONS(4160), - [anon_sym_co_yield] = ACTIONS(4160), - [anon_sym_R_DQUOTE] = ACTIONS(4162), - [anon_sym_LR_DQUOTE] = ACTIONS(4162), - [anon_sym_uR_DQUOTE] = ACTIONS(4162), - [anon_sym_UR_DQUOTE] = ACTIONS(4162), - [anon_sym_u8R_DQUOTE] = ACTIONS(4162), - [anon_sym_co_await] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4160), - [anon_sym_requires] = ACTIONS(4160), - [anon_sym_CARET_CARET] = ACTIONS(4162), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - [sym_this] = ACTIONS(4160), + [sym_identifier] = ACTIONS(4293), + [aux_sym_preproc_include_token1] = ACTIONS(4293), + [aux_sym_preproc_def_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token1] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), + [sym_preproc_directive] = ACTIONS(4293), + [anon_sym_LPAREN2] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym___extension__] = ACTIONS(4293), + [anon_sym_typedef] = ACTIONS(4293), + [anon_sym_virtual] = ACTIONS(4293), + [anon_sym_extern] = ACTIONS(4293), + [anon_sym___attribute__] = ACTIONS(4293), + [anon_sym___attribute] = ACTIONS(4293), + [anon_sym_using] = ACTIONS(4293), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4295), + [anon_sym___declspec] = ACTIONS(4293), + [anon_sym___based] = ACTIONS(4293), + [anon_sym___cdecl] = ACTIONS(4293), + [anon_sym___clrcall] = ACTIONS(4293), + [anon_sym___stdcall] = ACTIONS(4293), + [anon_sym___fastcall] = ACTIONS(4293), + [anon_sym___thiscall] = ACTIONS(4293), + [anon_sym___vectorcall] = ACTIONS(4293), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_signed] = ACTIONS(4293), + [anon_sym_unsigned] = ACTIONS(4293), + [anon_sym_long] = ACTIONS(4293), + [anon_sym_short] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_static] = ACTIONS(4293), + [anon_sym_register] = ACTIONS(4293), + [anon_sym_inline] = ACTIONS(4293), + [anon_sym___inline] = ACTIONS(4293), + [anon_sym___inline__] = ACTIONS(4293), + [anon_sym___forceinline] = ACTIONS(4293), + [anon_sym_thread_local] = ACTIONS(4293), + [anon_sym___thread] = ACTIONS(4293), + [anon_sym_const] = ACTIONS(4293), + [anon_sym_constexpr] = ACTIONS(4293), + [anon_sym_volatile] = ACTIONS(4293), + [anon_sym_restrict] = ACTIONS(4293), + [anon_sym___restrict__] = ACTIONS(4293), + [anon_sym__Atomic] = ACTIONS(4293), + [anon_sym__Noreturn] = ACTIONS(4293), + [anon_sym_noreturn] = ACTIONS(4293), + [anon_sym__Nonnull] = ACTIONS(4293), + [anon_sym_mutable] = ACTIONS(4293), + [anon_sym_constinit] = ACTIONS(4293), + [anon_sym_consteval] = ACTIONS(4293), + [anon_sym_alignas] = ACTIONS(4293), + [anon_sym__Alignas] = ACTIONS(4293), + [sym_primitive_type] = ACTIONS(4293), + [anon_sym_enum] = ACTIONS(4293), + [anon_sym_class] = ACTIONS(4293), + [anon_sym_struct] = ACTIONS(4293), + [anon_sym_union] = ACTIONS(4293), + [anon_sym_if] = ACTIONS(4293), + [anon_sym_switch] = ACTIONS(4293), + [anon_sym_case] = ACTIONS(4293), + [anon_sym_default] = ACTIONS(4293), + [anon_sym_while] = ACTIONS(4293), + [anon_sym_do] = ACTIONS(4293), + [anon_sym_for] = ACTIONS(4293), + [anon_sym_return] = ACTIONS(4293), + [anon_sym_break] = ACTIONS(4293), + [anon_sym_continue] = ACTIONS(4293), + [anon_sym_goto] = ACTIONS(4293), + [anon_sym___try] = ACTIONS(4293), + [anon_sym___leave] = ACTIONS(4293), + [anon_sym_not] = ACTIONS(4293), + [anon_sym_compl] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_sizeof] = ACTIONS(4293), + [anon_sym___alignof__] = ACTIONS(4293), + [anon_sym___alignof] = ACTIONS(4293), + [anon_sym__alignof] = ACTIONS(4293), + [anon_sym_alignof] = ACTIONS(4293), + [anon_sym__Alignof] = ACTIONS(4293), + [anon_sym_offsetof] = ACTIONS(4293), + [anon_sym__Generic] = ACTIONS(4293), + [anon_sym_typename] = ACTIONS(4293), + [anon_sym_asm] = ACTIONS(4293), + [anon_sym___asm__] = ACTIONS(4293), + [anon_sym___asm] = ACTIONS(4293), + [sym_number_literal] = ACTIONS(4295), + [anon_sym_L_SQUOTE] = ACTIONS(4295), + [anon_sym_u_SQUOTE] = ACTIONS(4295), + [anon_sym_U_SQUOTE] = ACTIONS(4295), + [anon_sym_u8_SQUOTE] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4295), + [anon_sym_L_DQUOTE] = ACTIONS(4295), + [anon_sym_u_DQUOTE] = ACTIONS(4295), + [anon_sym_U_DQUOTE] = ACTIONS(4295), + [anon_sym_u8_DQUOTE] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4295), + [sym_true] = ACTIONS(4293), + [sym_false] = ACTIONS(4293), + [anon_sym_NULL] = ACTIONS(4293), + [anon_sym_nullptr] = ACTIONS(4293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4293), + [anon_sym_decltype] = ACTIONS(4293), + [anon_sym_explicit] = ACTIONS(4293), + [anon_sym_export] = ACTIONS(4293), + [anon_sym_import] = ACTIONS(4293), + [anon_sym_template] = ACTIONS(4293), + [anon_sym_operator] = ACTIONS(4293), + [anon_sym_try] = ACTIONS(4293), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_throw] = ACTIONS(4293), + [anon_sym_namespace] = ACTIONS(4293), + [anon_sym_static_assert] = ACTIONS(4293), + [anon_sym_concept] = ACTIONS(4293), + [anon_sym_co_return] = ACTIONS(4293), + [anon_sym_co_yield] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(4295), + [anon_sym_LR_DQUOTE] = ACTIONS(4295), + [anon_sym_uR_DQUOTE] = ACTIONS(4295), + [anon_sym_UR_DQUOTE] = ACTIONS(4295), + [anon_sym_u8R_DQUOTE] = ACTIONS(4295), + [anon_sym_co_await] = ACTIONS(4293), + [anon_sym_new] = ACTIONS(4293), + [anon_sym_requires] = ACTIONS(4293), + [anon_sym_CARET_CARET] = ACTIONS(4295), + [anon_sym_LBRACK_COLON] = ACTIONS(4295), + [sym_this] = ACTIONS(4293), }, [STATE(798)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_include_token1] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [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(4166), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = 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), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_switch] = ACTIONS(4164), - [anon_sym_case] = ACTIONS(4164), - [anon_sym_default] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_do] = ACTIONS(4164), - [anon_sym_for] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_goto] = ACTIONS(4164), - [anon_sym___try] = ACTIONS(4164), - [anon_sym___leave] = ACTIONS(4164), - [anon_sym_not] = ACTIONS(4164), - [anon_sym_compl] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_sizeof] = ACTIONS(4164), - [anon_sym___alignof__] = ACTIONS(4164), - [anon_sym___alignof] = ACTIONS(4164), - [anon_sym__alignof] = ACTIONS(4164), - [anon_sym_alignof] = ACTIONS(4164), - [anon_sym__Alignof] = ACTIONS(4164), - [anon_sym_offsetof] = ACTIONS(4164), - [anon_sym__Generic] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [anon_sym_asm] = ACTIONS(4164), - [anon_sym___asm__] = ACTIONS(4164), - [anon_sym___asm] = ACTIONS(4164), - [sym_number_literal] = ACTIONS(4166), - [anon_sym_L_SQUOTE] = ACTIONS(4166), - [anon_sym_u_SQUOTE] = ACTIONS(4166), - [anon_sym_U_SQUOTE] = ACTIONS(4166), - [anon_sym_u8_SQUOTE] = ACTIONS(4166), - [anon_sym_SQUOTE] = ACTIONS(4166), - [anon_sym_L_DQUOTE] = ACTIONS(4166), - [anon_sym_u_DQUOTE] = ACTIONS(4166), - [anon_sym_U_DQUOTE] = ACTIONS(4166), - [anon_sym_u8_DQUOTE] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [sym_true] = ACTIONS(4164), - [sym_false] = ACTIONS(4164), - [anon_sym_NULL] = ACTIONS(4164), - [anon_sym_nullptr] = ACTIONS(4164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_export] = ACTIONS(4164), - [anon_sym_import] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_delete] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_namespace] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_concept] = ACTIONS(4164), - [anon_sym_co_return] = ACTIONS(4164), - [anon_sym_co_yield] = ACTIONS(4164), - [anon_sym_R_DQUOTE] = ACTIONS(4166), - [anon_sym_LR_DQUOTE] = ACTIONS(4166), - [anon_sym_uR_DQUOTE] = ACTIONS(4166), - [anon_sym_UR_DQUOTE] = ACTIONS(4166), - [anon_sym_u8R_DQUOTE] = ACTIONS(4166), - [anon_sym_co_await] = ACTIONS(4164), - [anon_sym_new] = ACTIONS(4164), - [anon_sym_requires] = ACTIONS(4164), - [anon_sym_CARET_CARET] = ACTIONS(4166), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), - [sym_this] = ACTIONS(4164), + [sym_identifier] = ACTIONS(3822), + [aux_sym_preproc_include_token1] = ACTIONS(3822), + [aux_sym_preproc_def_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token1] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3822), + [sym_preproc_directive] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3824), + [anon_sym___extension__] = ACTIONS(3822), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_virtual] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym___attribute__] = ACTIONS(3822), + [anon_sym___attribute] = ACTIONS(3822), + [anon_sym_using] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3824), + [anon_sym___declspec] = ACTIONS(3822), + [anon_sym___based] = ACTIONS(3822), + [anon_sym___cdecl] = ACTIONS(3822), + [anon_sym___clrcall] = ACTIONS(3822), + [anon_sym___stdcall] = ACTIONS(3822), + [anon_sym___fastcall] = ACTIONS(3822), + [anon_sym___thiscall] = ACTIONS(3822), + [anon_sym___vectorcall] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3824), + [anon_sym_RBRACE] = ACTIONS(3824), + [anon_sym_signed] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3822), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_inline] = ACTIONS(3822), + [anon_sym___inline] = ACTIONS(3822), + [anon_sym___inline__] = ACTIONS(3822), + [anon_sym___forceinline] = ACTIONS(3822), + [anon_sym_thread_local] = ACTIONS(3822), + [anon_sym___thread] = ACTIONS(3822), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_constexpr] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym___restrict__] = ACTIONS(3822), + [anon_sym__Atomic] = ACTIONS(3822), + [anon_sym__Noreturn] = ACTIONS(3822), + [anon_sym_noreturn] = ACTIONS(3822), + [anon_sym__Nonnull] = ACTIONS(3822), + [anon_sym_mutable] = ACTIONS(3822), + [anon_sym_constinit] = ACTIONS(3822), + [anon_sym_consteval] = ACTIONS(3822), + [anon_sym_alignas] = ACTIONS(3822), + [anon_sym__Alignas] = ACTIONS(3822), + [sym_primitive_type] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_class] = ACTIONS(3822), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_if] = ACTIONS(3822), + [anon_sym_switch] = ACTIONS(3822), + [anon_sym_case] = ACTIONS(3822), + [anon_sym_default] = ACTIONS(3822), + [anon_sym_while] = ACTIONS(3822), + [anon_sym_do] = ACTIONS(3822), + [anon_sym_for] = ACTIONS(3822), + [anon_sym_return] = ACTIONS(3822), + [anon_sym_break] = ACTIONS(3822), + [anon_sym_continue] = ACTIONS(3822), + [anon_sym_goto] = ACTIONS(3822), + [anon_sym___try] = ACTIONS(3822), + [anon_sym___leave] = ACTIONS(3822), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(3824), + [anon_sym_PLUS_PLUS] = ACTIONS(3824), + [anon_sym_sizeof] = ACTIONS(3822), + [anon_sym___alignof__] = ACTIONS(3822), + [anon_sym___alignof] = ACTIONS(3822), + [anon_sym__alignof] = ACTIONS(3822), + [anon_sym_alignof] = ACTIONS(3822), + [anon_sym__Alignof] = ACTIONS(3822), + [anon_sym_offsetof] = ACTIONS(3822), + [anon_sym__Generic] = ACTIONS(3822), + [anon_sym_typename] = ACTIONS(3822), + [anon_sym_asm] = ACTIONS(3822), + [anon_sym___asm__] = ACTIONS(3822), + [anon_sym___asm] = ACTIONS(3822), + [sym_number_literal] = ACTIONS(3824), + [anon_sym_L_SQUOTE] = ACTIONS(3824), + [anon_sym_u_SQUOTE] = ACTIONS(3824), + [anon_sym_U_SQUOTE] = ACTIONS(3824), + [anon_sym_u8_SQUOTE] = ACTIONS(3824), + [anon_sym_SQUOTE] = ACTIONS(3824), + [anon_sym_L_DQUOTE] = ACTIONS(3824), + [anon_sym_u_DQUOTE] = ACTIONS(3824), + [anon_sym_U_DQUOTE] = ACTIONS(3824), + [anon_sym_u8_DQUOTE] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(3824), + [sym_true] = ACTIONS(3822), + [sym_false] = ACTIONS(3822), + [anon_sym_NULL] = ACTIONS(3822), + [anon_sym_nullptr] = ACTIONS(3822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3822), + [anon_sym_decltype] = ACTIONS(3822), + [anon_sym_explicit] = ACTIONS(3822), + [anon_sym_export] = ACTIONS(3822), + [anon_sym_import] = ACTIONS(3822), + [anon_sym_template] = ACTIONS(3822), + [anon_sym_operator] = ACTIONS(3822), + [anon_sym_try] = ACTIONS(3822), + [anon_sym_delete] = ACTIONS(3822), + [anon_sym_throw] = ACTIONS(3822), + [anon_sym_namespace] = ACTIONS(3822), + [anon_sym_static_assert] = ACTIONS(3822), + [anon_sym_concept] = ACTIONS(3822), + [anon_sym_co_return] = ACTIONS(3822), + [anon_sym_co_yield] = ACTIONS(3822), + [anon_sym_R_DQUOTE] = ACTIONS(3824), + [anon_sym_LR_DQUOTE] = ACTIONS(3824), + [anon_sym_uR_DQUOTE] = ACTIONS(3824), + [anon_sym_UR_DQUOTE] = ACTIONS(3824), + [anon_sym_u8R_DQUOTE] = ACTIONS(3824), + [anon_sym_co_await] = ACTIONS(3822), + [anon_sym_new] = ACTIONS(3822), + [anon_sym_requires] = ACTIONS(3822), + [anon_sym_CARET_CARET] = ACTIONS(3824), + [anon_sym_LBRACK_COLON] = ACTIONS(3824), + [sym_this] = ACTIONS(3822), }, [STATE(799)] = { - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_include_token1] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_BANG] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym___cdecl] = ACTIONS(4168), - [anon_sym___clrcall] = ACTIONS(4168), - [anon_sym___stdcall] = ACTIONS(4168), - [anon_sym___fastcall] = ACTIONS(4168), - [anon_sym___thiscall] = ACTIONS(4168), - [anon_sym___vectorcall] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4170), - [anon_sym_RBRACE] = ACTIONS(4170), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_if] = ACTIONS(4168), - [anon_sym_switch] = ACTIONS(4168), - [anon_sym_case] = ACTIONS(4168), - [anon_sym_default] = ACTIONS(4168), - [anon_sym_while] = ACTIONS(4168), - [anon_sym_do] = ACTIONS(4168), - [anon_sym_for] = ACTIONS(4168), - [anon_sym_return] = ACTIONS(4168), - [anon_sym_break] = ACTIONS(4168), - [anon_sym_continue] = ACTIONS(4168), - [anon_sym_goto] = ACTIONS(4168), - [anon_sym___try] = ACTIONS(4168), - [anon_sym___leave] = ACTIONS(4168), - [anon_sym_not] = ACTIONS(4168), - [anon_sym_compl] = ACTIONS(4168), - [anon_sym_DASH_DASH] = ACTIONS(4170), - [anon_sym_PLUS_PLUS] = ACTIONS(4170), - [anon_sym_sizeof] = ACTIONS(4168), - [anon_sym___alignof__] = ACTIONS(4168), - [anon_sym___alignof] = ACTIONS(4168), - [anon_sym__alignof] = ACTIONS(4168), - [anon_sym_alignof] = ACTIONS(4168), - [anon_sym__Alignof] = ACTIONS(4168), - [anon_sym_offsetof] = ACTIONS(4168), - [anon_sym__Generic] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), - [anon_sym_asm] = ACTIONS(4168), - [anon_sym___asm__] = ACTIONS(4168), - [anon_sym___asm] = ACTIONS(4168), - [sym_number_literal] = ACTIONS(4170), - [anon_sym_L_SQUOTE] = ACTIONS(4170), - [anon_sym_u_SQUOTE] = ACTIONS(4170), - [anon_sym_U_SQUOTE] = ACTIONS(4170), - [anon_sym_u8_SQUOTE] = ACTIONS(4170), - [anon_sym_SQUOTE] = ACTIONS(4170), - [anon_sym_L_DQUOTE] = ACTIONS(4170), - [anon_sym_u_DQUOTE] = ACTIONS(4170), - [anon_sym_U_DQUOTE] = ACTIONS(4170), - [anon_sym_u8_DQUOTE] = ACTIONS(4170), - [anon_sym_DQUOTE] = ACTIONS(4170), - [sym_true] = ACTIONS(4168), - [sym_false] = ACTIONS(4168), - [anon_sym_NULL] = ACTIONS(4168), - [anon_sym_nullptr] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_export] = ACTIONS(4168), - [anon_sym_import] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_try] = ACTIONS(4168), - [anon_sym_delete] = ACTIONS(4168), - [anon_sym_throw] = ACTIONS(4168), - [anon_sym_namespace] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_concept] = ACTIONS(4168), - [anon_sym_co_return] = ACTIONS(4168), - [anon_sym_co_yield] = ACTIONS(4168), - [anon_sym_R_DQUOTE] = ACTIONS(4170), - [anon_sym_LR_DQUOTE] = ACTIONS(4170), - [anon_sym_uR_DQUOTE] = ACTIONS(4170), - [anon_sym_UR_DQUOTE] = ACTIONS(4170), - [anon_sym_u8R_DQUOTE] = ACTIONS(4170), - [anon_sym_co_await] = ACTIONS(4168), - [anon_sym_new] = ACTIONS(4168), - [anon_sym_requires] = ACTIONS(4168), - [anon_sym_CARET_CARET] = ACTIONS(4170), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), - [sym_this] = ACTIONS(4168), + [sym_identifier] = ACTIONS(4297), + [aux_sym_preproc_include_token1] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4299), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_TILDE] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_AMP_AMP] = ACTIONS(4299), + [anon_sym_AMP] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4299), + [anon_sym___extension__] = ACTIONS(4297), + [anon_sym_typedef] = ACTIONS(4297), + [anon_sym_virtual] = ACTIONS(4297), + [anon_sym_extern] = ACTIONS(4297), + [anon_sym___attribute__] = ACTIONS(4297), + [anon_sym___attribute] = ACTIONS(4297), + [anon_sym_using] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), + [anon_sym___declspec] = ACTIONS(4297), + [anon_sym___based] = ACTIONS(4297), + [anon_sym___cdecl] = ACTIONS(4297), + [anon_sym___clrcall] = ACTIONS(4297), + [anon_sym___stdcall] = ACTIONS(4297), + [anon_sym___fastcall] = ACTIONS(4297), + [anon_sym___thiscall] = ACTIONS(4297), + [anon_sym___vectorcall] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4299), + [anon_sym_RBRACE] = ACTIONS(4299), + [anon_sym_signed] = ACTIONS(4297), + [anon_sym_unsigned] = ACTIONS(4297), + [anon_sym_long] = ACTIONS(4297), + [anon_sym_short] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_static] = ACTIONS(4297), + [anon_sym_register] = ACTIONS(4297), + [anon_sym_inline] = ACTIONS(4297), + [anon_sym___inline] = ACTIONS(4297), + [anon_sym___inline__] = ACTIONS(4297), + [anon_sym___forceinline] = ACTIONS(4297), + [anon_sym_thread_local] = ACTIONS(4297), + [anon_sym___thread] = ACTIONS(4297), + [anon_sym_const] = ACTIONS(4297), + [anon_sym_constexpr] = ACTIONS(4297), + [anon_sym_volatile] = ACTIONS(4297), + [anon_sym_restrict] = ACTIONS(4297), + [anon_sym___restrict__] = ACTIONS(4297), + [anon_sym__Atomic] = ACTIONS(4297), + [anon_sym__Noreturn] = ACTIONS(4297), + [anon_sym_noreturn] = ACTIONS(4297), + [anon_sym__Nonnull] = ACTIONS(4297), + [anon_sym_mutable] = ACTIONS(4297), + [anon_sym_constinit] = ACTIONS(4297), + [anon_sym_consteval] = ACTIONS(4297), + [anon_sym_alignas] = ACTIONS(4297), + [anon_sym__Alignas] = ACTIONS(4297), + [sym_primitive_type] = ACTIONS(4297), + [anon_sym_enum] = ACTIONS(4297), + [anon_sym_class] = ACTIONS(4297), + [anon_sym_struct] = ACTIONS(4297), + [anon_sym_union] = ACTIONS(4297), + [anon_sym_if] = ACTIONS(4297), + [anon_sym_switch] = ACTIONS(4297), + [anon_sym_case] = ACTIONS(4297), + [anon_sym_default] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_do] = ACTIONS(4297), + [anon_sym_for] = ACTIONS(4297), + [anon_sym_return] = ACTIONS(4297), + [anon_sym_break] = ACTIONS(4297), + [anon_sym_continue] = ACTIONS(4297), + [anon_sym_goto] = ACTIONS(4297), + [anon_sym___try] = ACTIONS(4297), + [anon_sym___leave] = ACTIONS(4297), + [anon_sym_not] = ACTIONS(4297), + [anon_sym_compl] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_PLUS_PLUS] = ACTIONS(4299), + [anon_sym_sizeof] = ACTIONS(4297), + [anon_sym___alignof__] = ACTIONS(4297), + [anon_sym___alignof] = ACTIONS(4297), + [anon_sym__alignof] = ACTIONS(4297), + [anon_sym_alignof] = ACTIONS(4297), + [anon_sym__Alignof] = ACTIONS(4297), + [anon_sym_offsetof] = ACTIONS(4297), + [anon_sym__Generic] = ACTIONS(4297), + [anon_sym_typename] = ACTIONS(4297), + [anon_sym_asm] = ACTIONS(4297), + [anon_sym___asm__] = ACTIONS(4297), + [anon_sym___asm] = ACTIONS(4297), + [sym_number_literal] = ACTIONS(4299), + [anon_sym_L_SQUOTE] = ACTIONS(4299), + [anon_sym_u_SQUOTE] = ACTIONS(4299), + [anon_sym_U_SQUOTE] = ACTIONS(4299), + [anon_sym_u8_SQUOTE] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4299), + [anon_sym_L_DQUOTE] = ACTIONS(4299), + [anon_sym_u_DQUOTE] = ACTIONS(4299), + [anon_sym_U_DQUOTE] = ACTIONS(4299), + [anon_sym_u8_DQUOTE] = ACTIONS(4299), + [anon_sym_DQUOTE] = ACTIONS(4299), + [sym_true] = ACTIONS(4297), + [sym_false] = ACTIONS(4297), + [anon_sym_NULL] = ACTIONS(4297), + [anon_sym_nullptr] = ACTIONS(4297), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4297), + [anon_sym_decltype] = ACTIONS(4297), + [anon_sym_explicit] = ACTIONS(4297), + [anon_sym_export] = ACTIONS(4297), + [anon_sym_import] = ACTIONS(4297), + [anon_sym_template] = ACTIONS(4297), + [anon_sym_operator] = ACTIONS(4297), + [anon_sym_try] = ACTIONS(4297), + [anon_sym_delete] = ACTIONS(4297), + [anon_sym_throw] = ACTIONS(4297), + [anon_sym_namespace] = ACTIONS(4297), + [anon_sym_static_assert] = ACTIONS(4297), + [anon_sym_concept] = ACTIONS(4297), + [anon_sym_co_return] = ACTIONS(4297), + [anon_sym_co_yield] = ACTIONS(4297), + [anon_sym_R_DQUOTE] = ACTIONS(4299), + [anon_sym_LR_DQUOTE] = ACTIONS(4299), + [anon_sym_uR_DQUOTE] = ACTIONS(4299), + [anon_sym_UR_DQUOTE] = ACTIONS(4299), + [anon_sym_u8R_DQUOTE] = ACTIONS(4299), + [anon_sym_co_await] = ACTIONS(4297), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(4297), + [anon_sym_CARET_CARET] = ACTIONS(4299), + [anon_sym_LBRACK_COLON] = ACTIONS(4299), + [sym_this] = ACTIONS(4297), }, [STATE(800)] = { - [sym_identifier] = ACTIONS(4172), - [aux_sym_preproc_include_token1] = ACTIONS(4172), - [aux_sym_preproc_def_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), - [sym_preproc_directive] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_BANG] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4172), - [anon_sym_typedef] = ACTIONS(4172), - [anon_sym_virtual] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(4172), - [anon_sym___attribute] = ACTIONS(4172), - [anon_sym_using] = ACTIONS(4172), - [anon_sym_COLON_COLON] = ACTIONS(4174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), - [anon_sym___declspec] = ACTIONS(4172), - [anon_sym___based] = ACTIONS(4172), - [anon_sym___cdecl] = ACTIONS(4172), - [anon_sym___clrcall] = ACTIONS(4172), - [anon_sym___stdcall] = ACTIONS(4172), - [anon_sym___fastcall] = ACTIONS(4172), - [anon_sym___thiscall] = ACTIONS(4172), - [anon_sym___vectorcall] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4174), - [anon_sym_RBRACE] = ACTIONS(4174), - [anon_sym_signed] = ACTIONS(4172), - [anon_sym_unsigned] = ACTIONS(4172), - [anon_sym_long] = ACTIONS(4172), - [anon_sym_short] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_static] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_inline] = ACTIONS(4172), - [anon_sym___inline] = ACTIONS(4172), - [anon_sym___inline__] = ACTIONS(4172), - [anon_sym___forceinline] = ACTIONS(4172), - [anon_sym_thread_local] = ACTIONS(4172), - [anon_sym___thread] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [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), - [sym_primitive_type] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_class] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4172), - [anon_sym_default] = ACTIONS(4172), - [anon_sym_while] = ACTIONS(4172), - [anon_sym_do] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_goto] = ACTIONS(4172), - [anon_sym___try] = ACTIONS(4172), - [anon_sym___leave] = ACTIONS(4172), - [anon_sym_not] = ACTIONS(4172), - [anon_sym_compl] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4174), - [anon_sym_PLUS_PLUS] = ACTIONS(4174), - [anon_sym_sizeof] = ACTIONS(4172), - [anon_sym___alignof__] = ACTIONS(4172), - [anon_sym___alignof] = ACTIONS(4172), - [anon_sym__alignof] = ACTIONS(4172), - [anon_sym_alignof] = ACTIONS(4172), - [anon_sym__Alignof] = ACTIONS(4172), - [anon_sym_offsetof] = ACTIONS(4172), - [anon_sym__Generic] = ACTIONS(4172), - [anon_sym_typename] = ACTIONS(4172), - [anon_sym_asm] = ACTIONS(4172), - [anon_sym___asm__] = ACTIONS(4172), - [anon_sym___asm] = ACTIONS(4172), - [sym_number_literal] = ACTIONS(4174), - [anon_sym_L_SQUOTE] = ACTIONS(4174), - [anon_sym_u_SQUOTE] = ACTIONS(4174), - [anon_sym_U_SQUOTE] = ACTIONS(4174), - [anon_sym_u8_SQUOTE] = ACTIONS(4174), - [anon_sym_SQUOTE] = ACTIONS(4174), - [anon_sym_L_DQUOTE] = ACTIONS(4174), - [anon_sym_u_DQUOTE] = ACTIONS(4174), - [anon_sym_U_DQUOTE] = ACTIONS(4174), - [anon_sym_u8_DQUOTE] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [anon_sym_NULL] = ACTIONS(4172), - [anon_sym_nullptr] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4172), - [anon_sym_decltype] = ACTIONS(4172), - [anon_sym_explicit] = ACTIONS(4172), - [anon_sym_export] = ACTIONS(4172), - [anon_sym_import] = ACTIONS(4172), - [anon_sym_template] = ACTIONS(4172), - [anon_sym_operator] = ACTIONS(4172), - [anon_sym_try] = ACTIONS(4172), - [anon_sym_delete] = ACTIONS(4172), - [anon_sym_throw] = ACTIONS(4172), - [anon_sym_namespace] = ACTIONS(4172), - [anon_sym_static_assert] = ACTIONS(4172), - [anon_sym_concept] = ACTIONS(4172), - [anon_sym_co_return] = ACTIONS(4172), - [anon_sym_co_yield] = ACTIONS(4172), - [anon_sym_R_DQUOTE] = ACTIONS(4174), - [anon_sym_LR_DQUOTE] = ACTIONS(4174), - [anon_sym_uR_DQUOTE] = ACTIONS(4174), - [anon_sym_UR_DQUOTE] = ACTIONS(4174), - [anon_sym_u8R_DQUOTE] = ACTIONS(4174), - [anon_sym_co_await] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_requires] = ACTIONS(4172), - [anon_sym_CARET_CARET] = ACTIONS(4174), - [anon_sym_LBRACK_COLON] = ACTIONS(4174), - [sym_this] = ACTIONS(4172), + [sym_identifier] = ACTIONS(4371), + [aux_sym_preproc_include_token1] = ACTIONS(4371), + [aux_sym_preproc_def_token1] = ACTIONS(4371), + [aux_sym_preproc_if_token1] = ACTIONS(4371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4371), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4371), + [sym_preproc_directive] = ACTIONS(4371), + [anon_sym_LPAREN2] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4373), + [anon_sym_AMP_AMP] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4371), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym___extension__] = ACTIONS(4371), + [anon_sym_typedef] = ACTIONS(4371), + [anon_sym_virtual] = ACTIONS(4371), + [anon_sym_extern] = ACTIONS(4371), + [anon_sym___attribute__] = ACTIONS(4371), + [anon_sym___attribute] = ACTIONS(4371), + [anon_sym_using] = ACTIONS(4371), + [anon_sym_COLON_COLON] = ACTIONS(4373), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4373), + [anon_sym___declspec] = ACTIONS(4371), + [anon_sym___based] = ACTIONS(4371), + [anon_sym___cdecl] = ACTIONS(4371), + [anon_sym___clrcall] = ACTIONS(4371), + [anon_sym___stdcall] = ACTIONS(4371), + [anon_sym___fastcall] = ACTIONS(4371), + [anon_sym___thiscall] = ACTIONS(4371), + [anon_sym___vectorcall] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_RBRACE] = ACTIONS(4373), + [anon_sym_signed] = ACTIONS(4371), + [anon_sym_unsigned] = ACTIONS(4371), + [anon_sym_long] = ACTIONS(4371), + [anon_sym_short] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_static] = ACTIONS(4371), + [anon_sym_register] = ACTIONS(4371), + [anon_sym_inline] = ACTIONS(4371), + [anon_sym___inline] = ACTIONS(4371), + [anon_sym___inline__] = ACTIONS(4371), + [anon_sym___forceinline] = ACTIONS(4371), + [anon_sym_thread_local] = ACTIONS(4371), + [anon_sym___thread] = ACTIONS(4371), + [anon_sym_const] = ACTIONS(4371), + [anon_sym_constexpr] = ACTIONS(4371), + [anon_sym_volatile] = ACTIONS(4371), + [anon_sym_restrict] = ACTIONS(4371), + [anon_sym___restrict__] = ACTIONS(4371), + [anon_sym__Atomic] = ACTIONS(4371), + [anon_sym__Noreturn] = ACTIONS(4371), + [anon_sym_noreturn] = ACTIONS(4371), + [anon_sym__Nonnull] = ACTIONS(4371), + [anon_sym_mutable] = ACTIONS(4371), + [anon_sym_constinit] = ACTIONS(4371), + [anon_sym_consteval] = ACTIONS(4371), + [anon_sym_alignas] = ACTIONS(4371), + [anon_sym__Alignas] = ACTIONS(4371), + [sym_primitive_type] = ACTIONS(4371), + [anon_sym_enum] = ACTIONS(4371), + [anon_sym_class] = ACTIONS(4371), + [anon_sym_struct] = ACTIONS(4371), + [anon_sym_union] = ACTIONS(4371), + [anon_sym_if] = ACTIONS(4371), + [anon_sym_switch] = ACTIONS(4371), + [anon_sym_case] = ACTIONS(4371), + [anon_sym_default] = ACTIONS(4371), + [anon_sym_while] = ACTIONS(4371), + [anon_sym_do] = ACTIONS(4371), + [anon_sym_for] = ACTIONS(4371), + [anon_sym_return] = ACTIONS(4371), + [anon_sym_break] = ACTIONS(4371), + [anon_sym_continue] = ACTIONS(4371), + [anon_sym_goto] = ACTIONS(4371), + [anon_sym___try] = ACTIONS(4371), + [anon_sym___leave] = ACTIONS(4371), + [anon_sym_not] = ACTIONS(4371), + [anon_sym_compl] = ACTIONS(4371), + [anon_sym_DASH_DASH] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4373), + [anon_sym_sizeof] = ACTIONS(4371), + [anon_sym___alignof__] = ACTIONS(4371), + [anon_sym___alignof] = ACTIONS(4371), + [anon_sym__alignof] = ACTIONS(4371), + [anon_sym_alignof] = ACTIONS(4371), + [anon_sym__Alignof] = ACTIONS(4371), + [anon_sym_offsetof] = ACTIONS(4371), + [anon_sym__Generic] = ACTIONS(4371), + [anon_sym_typename] = ACTIONS(4371), + [anon_sym_asm] = ACTIONS(4371), + [anon_sym___asm__] = ACTIONS(4371), + [anon_sym___asm] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4373), + [anon_sym_L_SQUOTE] = ACTIONS(4373), + [anon_sym_u_SQUOTE] = ACTIONS(4373), + [anon_sym_U_SQUOTE] = ACTIONS(4373), + [anon_sym_u8_SQUOTE] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_L_DQUOTE] = ACTIONS(4373), + [anon_sym_u_DQUOTE] = ACTIONS(4373), + [anon_sym_U_DQUOTE] = ACTIONS(4373), + [anon_sym_u8_DQUOTE] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [sym_true] = ACTIONS(4371), + [sym_false] = ACTIONS(4371), + [anon_sym_NULL] = ACTIONS(4371), + [anon_sym_nullptr] = ACTIONS(4371), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4371), + [anon_sym_decltype] = ACTIONS(4371), + [anon_sym_explicit] = ACTIONS(4371), + [anon_sym_export] = ACTIONS(4371), + [anon_sym_import] = ACTIONS(4371), + [anon_sym_template] = ACTIONS(4371), + [anon_sym_operator] = ACTIONS(4371), + [anon_sym_try] = ACTIONS(4371), + [anon_sym_delete] = ACTIONS(4371), + [anon_sym_throw] = ACTIONS(4371), + [anon_sym_namespace] = ACTIONS(4371), + [anon_sym_static_assert] = ACTIONS(4371), + [anon_sym_concept] = ACTIONS(4371), + [anon_sym_co_return] = ACTIONS(4371), + [anon_sym_co_yield] = ACTIONS(4371), + [anon_sym_R_DQUOTE] = ACTIONS(4373), + [anon_sym_LR_DQUOTE] = ACTIONS(4373), + [anon_sym_uR_DQUOTE] = ACTIONS(4373), + [anon_sym_UR_DQUOTE] = ACTIONS(4373), + [anon_sym_u8R_DQUOTE] = ACTIONS(4373), + [anon_sym_co_await] = ACTIONS(4371), + [anon_sym_new] = ACTIONS(4371), + [anon_sym_requires] = ACTIONS(4371), + [anon_sym_CARET_CARET] = ACTIONS(4373), + [anon_sym_LBRACK_COLON] = ACTIONS(4373), + [sym_this] = ACTIONS(4371), }, [STATE(801)] = { - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_include_token1] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_BANG] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_PLUS] = ACTIONS(4176), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym___cdecl] = ACTIONS(4176), - [anon_sym___clrcall] = ACTIONS(4176), - [anon_sym___stdcall] = ACTIONS(4176), - [anon_sym___fastcall] = ACTIONS(4176), - [anon_sym___thiscall] = ACTIONS(4176), - [anon_sym___vectorcall] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4178), - [anon_sym_RBRACE] = ACTIONS(4178), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_if] = ACTIONS(4176), - [anon_sym_switch] = ACTIONS(4176), - [anon_sym_case] = ACTIONS(4176), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4176), - [anon_sym_do] = ACTIONS(4176), - [anon_sym_for] = ACTIONS(4176), - [anon_sym_return] = ACTIONS(4176), - [anon_sym_break] = ACTIONS(4176), - [anon_sym_continue] = ACTIONS(4176), - [anon_sym_goto] = ACTIONS(4176), - [anon_sym___try] = ACTIONS(4176), - [anon_sym___leave] = ACTIONS(4176), - [anon_sym_not] = ACTIONS(4176), - [anon_sym_compl] = ACTIONS(4176), - [anon_sym_DASH_DASH] = ACTIONS(4178), - [anon_sym_PLUS_PLUS] = ACTIONS(4178), - [anon_sym_sizeof] = ACTIONS(4176), - [anon_sym___alignof__] = ACTIONS(4176), - [anon_sym___alignof] = ACTIONS(4176), - [anon_sym__alignof] = ACTIONS(4176), - [anon_sym_alignof] = ACTIONS(4176), - [anon_sym__Alignof] = ACTIONS(4176), - [anon_sym_offsetof] = ACTIONS(4176), - [anon_sym__Generic] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [anon_sym_asm] = ACTIONS(4176), - [anon_sym___asm__] = ACTIONS(4176), - [anon_sym___asm] = ACTIONS(4176), - [sym_number_literal] = ACTIONS(4178), - [anon_sym_L_SQUOTE] = ACTIONS(4178), - [anon_sym_u_SQUOTE] = ACTIONS(4178), - [anon_sym_U_SQUOTE] = ACTIONS(4178), - [anon_sym_u8_SQUOTE] = ACTIONS(4178), - [anon_sym_SQUOTE] = ACTIONS(4178), - [anon_sym_L_DQUOTE] = ACTIONS(4178), - [anon_sym_u_DQUOTE] = ACTIONS(4178), - [anon_sym_U_DQUOTE] = ACTIONS(4178), - [anon_sym_u8_DQUOTE] = ACTIONS(4178), - [anon_sym_DQUOTE] = ACTIONS(4178), - [sym_true] = ACTIONS(4176), - [sym_false] = ACTIONS(4176), - [anon_sym_NULL] = ACTIONS(4176), - [anon_sym_nullptr] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_export] = ACTIONS(4176), - [anon_sym_import] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_try] = ACTIONS(4176), - [anon_sym_delete] = ACTIONS(4176), - [anon_sym_throw] = ACTIONS(4176), - [anon_sym_namespace] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_concept] = ACTIONS(4176), - [anon_sym_co_return] = ACTIONS(4176), - [anon_sym_co_yield] = ACTIONS(4176), - [anon_sym_R_DQUOTE] = ACTIONS(4178), - [anon_sym_LR_DQUOTE] = ACTIONS(4178), - [anon_sym_uR_DQUOTE] = ACTIONS(4178), - [anon_sym_UR_DQUOTE] = ACTIONS(4178), - [anon_sym_u8R_DQUOTE] = ACTIONS(4178), - [anon_sym_co_await] = ACTIONS(4176), - [anon_sym_new] = ACTIONS(4176), - [anon_sym_requires] = ACTIONS(4176), - [anon_sym_CARET_CARET] = ACTIONS(4178), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - [sym_this] = ACTIONS(4176), + [sym_identifier] = ACTIONS(4301), + [aux_sym_preproc_include_token1] = ACTIONS(4301), + [aux_sym_preproc_def_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token1] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4301), + [sym_preproc_directive] = ACTIONS(4301), + [anon_sym_LPAREN2] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4301), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym___extension__] = ACTIONS(4301), + [anon_sym_typedef] = ACTIONS(4301), + [anon_sym_virtual] = ACTIONS(4301), + [anon_sym_extern] = ACTIONS(4301), + [anon_sym___attribute__] = ACTIONS(4301), + [anon_sym___attribute] = ACTIONS(4301), + [anon_sym_using] = ACTIONS(4301), + [anon_sym_COLON_COLON] = ACTIONS(4303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4303), + [anon_sym___declspec] = ACTIONS(4301), + [anon_sym___based] = ACTIONS(4301), + [anon_sym___cdecl] = ACTIONS(4301), + [anon_sym___clrcall] = ACTIONS(4301), + [anon_sym___stdcall] = ACTIONS(4301), + [anon_sym___fastcall] = ACTIONS(4301), + [anon_sym___thiscall] = ACTIONS(4301), + [anon_sym___vectorcall] = ACTIONS(4301), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_RBRACE] = ACTIONS(4303), + [anon_sym_signed] = ACTIONS(4301), + [anon_sym_unsigned] = ACTIONS(4301), + [anon_sym_long] = ACTIONS(4301), + [anon_sym_short] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_static] = ACTIONS(4301), + [anon_sym_register] = ACTIONS(4301), + [anon_sym_inline] = ACTIONS(4301), + [anon_sym___inline] = ACTIONS(4301), + [anon_sym___inline__] = ACTIONS(4301), + [anon_sym___forceinline] = ACTIONS(4301), + [anon_sym_thread_local] = ACTIONS(4301), + [anon_sym___thread] = ACTIONS(4301), + [anon_sym_const] = ACTIONS(4301), + [anon_sym_constexpr] = ACTIONS(4301), + [anon_sym_volatile] = ACTIONS(4301), + [anon_sym_restrict] = ACTIONS(4301), + [anon_sym___restrict__] = ACTIONS(4301), + [anon_sym__Atomic] = ACTIONS(4301), + [anon_sym__Noreturn] = ACTIONS(4301), + [anon_sym_noreturn] = ACTIONS(4301), + [anon_sym__Nonnull] = ACTIONS(4301), + [anon_sym_mutable] = ACTIONS(4301), + [anon_sym_constinit] = ACTIONS(4301), + [anon_sym_consteval] = ACTIONS(4301), + [anon_sym_alignas] = ACTIONS(4301), + [anon_sym__Alignas] = ACTIONS(4301), + [sym_primitive_type] = ACTIONS(4301), + [anon_sym_enum] = ACTIONS(4301), + [anon_sym_class] = ACTIONS(4301), + [anon_sym_struct] = ACTIONS(4301), + [anon_sym_union] = ACTIONS(4301), + [anon_sym_if] = ACTIONS(4301), + [anon_sym_switch] = ACTIONS(4301), + [anon_sym_case] = ACTIONS(4301), + [anon_sym_default] = ACTIONS(4301), + [anon_sym_while] = ACTIONS(4301), + [anon_sym_do] = ACTIONS(4301), + [anon_sym_for] = ACTIONS(4301), + [anon_sym_return] = ACTIONS(4301), + [anon_sym_break] = ACTIONS(4301), + [anon_sym_continue] = ACTIONS(4301), + [anon_sym_goto] = ACTIONS(4301), + [anon_sym___try] = ACTIONS(4301), + [anon_sym___leave] = ACTIONS(4301), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4303), + [anon_sym_PLUS_PLUS] = ACTIONS(4303), + [anon_sym_sizeof] = ACTIONS(4301), + [anon_sym___alignof__] = ACTIONS(4301), + [anon_sym___alignof] = ACTIONS(4301), + [anon_sym__alignof] = ACTIONS(4301), + [anon_sym_alignof] = ACTIONS(4301), + [anon_sym__Alignof] = ACTIONS(4301), + [anon_sym_offsetof] = ACTIONS(4301), + [anon_sym__Generic] = ACTIONS(4301), + [anon_sym_typename] = ACTIONS(4301), + [anon_sym_asm] = ACTIONS(4301), + [anon_sym___asm__] = ACTIONS(4301), + [anon_sym___asm] = ACTIONS(4301), + [sym_number_literal] = ACTIONS(4303), + [anon_sym_L_SQUOTE] = ACTIONS(4303), + [anon_sym_u_SQUOTE] = ACTIONS(4303), + [anon_sym_U_SQUOTE] = ACTIONS(4303), + [anon_sym_u8_SQUOTE] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_L_DQUOTE] = ACTIONS(4303), + [anon_sym_u_DQUOTE] = ACTIONS(4303), + [anon_sym_U_DQUOTE] = ACTIONS(4303), + [anon_sym_u8_DQUOTE] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym_true] = ACTIONS(4301), + [sym_false] = ACTIONS(4301), + [anon_sym_NULL] = ACTIONS(4301), + [anon_sym_nullptr] = ACTIONS(4301), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4301), + [anon_sym_decltype] = ACTIONS(4301), + [anon_sym_explicit] = ACTIONS(4301), + [anon_sym_export] = ACTIONS(4301), + [anon_sym_import] = ACTIONS(4301), + [anon_sym_template] = ACTIONS(4301), + [anon_sym_operator] = ACTIONS(4301), + [anon_sym_try] = ACTIONS(4301), + [anon_sym_delete] = ACTIONS(4301), + [anon_sym_throw] = ACTIONS(4301), + [anon_sym_namespace] = ACTIONS(4301), + [anon_sym_static_assert] = ACTIONS(4301), + [anon_sym_concept] = ACTIONS(4301), + [anon_sym_co_return] = ACTIONS(4301), + [anon_sym_co_yield] = ACTIONS(4301), + [anon_sym_R_DQUOTE] = ACTIONS(4303), + [anon_sym_LR_DQUOTE] = ACTIONS(4303), + [anon_sym_uR_DQUOTE] = ACTIONS(4303), + [anon_sym_UR_DQUOTE] = ACTIONS(4303), + [anon_sym_u8R_DQUOTE] = ACTIONS(4303), + [anon_sym_co_await] = ACTIONS(4301), + [anon_sym_new] = ACTIONS(4301), + [anon_sym_requires] = ACTIONS(4301), + [anon_sym_CARET_CARET] = ACTIONS(4303), + [anon_sym_LBRACK_COLON] = ACTIONS(4303), + [sym_this] = ACTIONS(4301), }, [STATE(802)] = { - [sym_identifier] = ACTIONS(4180), - [aux_sym_preproc_include_token1] = ACTIONS(4180), - [aux_sym_preproc_def_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), - [sym_preproc_directive] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(4182), - [anon_sym_BANG] = ACTIONS(4182), - [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_STAR] = ACTIONS(4182), - [anon_sym_AMP_AMP] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym___extension__] = ACTIONS(4180), - [anon_sym_typedef] = ACTIONS(4180), - [anon_sym_virtual] = ACTIONS(4180), - [anon_sym_extern] = ACTIONS(4180), - [anon_sym___attribute__] = ACTIONS(4180), - [anon_sym___attribute] = ACTIONS(4180), - [anon_sym_using] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), - [anon_sym___declspec] = ACTIONS(4180), - [anon_sym___based] = ACTIONS(4180), - [anon_sym___cdecl] = ACTIONS(4180), - [anon_sym___clrcall] = ACTIONS(4180), - [anon_sym___stdcall] = ACTIONS(4180), - [anon_sym___fastcall] = ACTIONS(4180), - [anon_sym___thiscall] = ACTIONS(4180), - [anon_sym___vectorcall] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(4182), - [anon_sym_RBRACE] = ACTIONS(4182), - [anon_sym_signed] = ACTIONS(4180), - [anon_sym_unsigned] = ACTIONS(4180), - [anon_sym_long] = ACTIONS(4180), - [anon_sym_short] = ACTIONS(4180), - [anon_sym_LBRACK] = ACTIONS(4180), - [anon_sym_static] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4180), - [anon_sym_inline] = ACTIONS(4180), - [anon_sym___inline] = ACTIONS(4180), - [anon_sym___inline__] = ACTIONS(4180), - [anon_sym___forceinline] = ACTIONS(4180), - [anon_sym_thread_local] = ACTIONS(4180), - [anon_sym___thread] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_constexpr] = ACTIONS(4180), - [anon_sym_volatile] = ACTIONS(4180), - [anon_sym_restrict] = ACTIONS(4180), - [anon_sym___restrict__] = ACTIONS(4180), - [anon_sym__Atomic] = ACTIONS(4180), - [anon_sym__Noreturn] = ACTIONS(4180), - [anon_sym_noreturn] = ACTIONS(4180), - [anon_sym__Nonnull] = ACTIONS(4180), - [anon_sym_mutable] = ACTIONS(4180), - [anon_sym_constinit] = ACTIONS(4180), - [anon_sym_consteval] = ACTIONS(4180), - [anon_sym_alignas] = ACTIONS(4180), - [anon_sym__Alignas] = ACTIONS(4180), - [sym_primitive_type] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_class] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_if] = ACTIONS(4180), - [anon_sym_switch] = ACTIONS(4180), - [anon_sym_case] = ACTIONS(4180), - [anon_sym_default] = ACTIONS(4180), - [anon_sym_while] = ACTIONS(4180), - [anon_sym_do] = ACTIONS(4180), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(4180), - [anon_sym_break] = ACTIONS(4180), - [anon_sym_continue] = ACTIONS(4180), - [anon_sym_goto] = ACTIONS(4180), - [anon_sym___try] = ACTIONS(4180), - [anon_sym___leave] = ACTIONS(4180), - [anon_sym_not] = ACTIONS(4180), - [anon_sym_compl] = ACTIONS(4180), - [anon_sym_DASH_DASH] = ACTIONS(4182), - [anon_sym_PLUS_PLUS] = ACTIONS(4182), - [anon_sym_sizeof] = ACTIONS(4180), - [anon_sym___alignof__] = ACTIONS(4180), - [anon_sym___alignof] = ACTIONS(4180), - [anon_sym__alignof] = ACTIONS(4180), - [anon_sym_alignof] = ACTIONS(4180), - [anon_sym__Alignof] = ACTIONS(4180), - [anon_sym_offsetof] = ACTIONS(4180), - [anon_sym__Generic] = ACTIONS(4180), - [anon_sym_typename] = ACTIONS(4180), - [anon_sym_asm] = ACTIONS(4180), - [anon_sym___asm__] = ACTIONS(4180), - [anon_sym___asm] = ACTIONS(4180), - [sym_number_literal] = ACTIONS(4182), - [anon_sym_L_SQUOTE] = ACTIONS(4182), - [anon_sym_u_SQUOTE] = ACTIONS(4182), - [anon_sym_U_SQUOTE] = ACTIONS(4182), - [anon_sym_u8_SQUOTE] = ACTIONS(4182), - [anon_sym_SQUOTE] = ACTIONS(4182), - [anon_sym_L_DQUOTE] = ACTIONS(4182), - [anon_sym_u_DQUOTE] = ACTIONS(4182), - [anon_sym_U_DQUOTE] = ACTIONS(4182), - [anon_sym_u8_DQUOTE] = ACTIONS(4182), - [anon_sym_DQUOTE] = ACTIONS(4182), - [sym_true] = ACTIONS(4180), - [sym_false] = ACTIONS(4180), - [anon_sym_NULL] = ACTIONS(4180), - [anon_sym_nullptr] = ACTIONS(4180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4180), - [anon_sym_decltype] = ACTIONS(4180), - [anon_sym_explicit] = ACTIONS(4180), - [anon_sym_export] = ACTIONS(4180), - [anon_sym_import] = ACTIONS(4180), - [anon_sym_template] = ACTIONS(4180), - [anon_sym_operator] = ACTIONS(4180), - [anon_sym_try] = ACTIONS(4180), - [anon_sym_delete] = ACTIONS(4180), - [anon_sym_throw] = ACTIONS(4180), - [anon_sym_namespace] = ACTIONS(4180), - [anon_sym_static_assert] = ACTIONS(4180), - [anon_sym_concept] = ACTIONS(4180), - [anon_sym_co_return] = ACTIONS(4180), - [anon_sym_co_yield] = ACTIONS(4180), - [anon_sym_R_DQUOTE] = ACTIONS(4182), - [anon_sym_LR_DQUOTE] = ACTIONS(4182), - [anon_sym_uR_DQUOTE] = ACTIONS(4182), - [anon_sym_UR_DQUOTE] = ACTIONS(4182), - [anon_sym_u8R_DQUOTE] = ACTIONS(4182), - [anon_sym_co_await] = ACTIONS(4180), - [anon_sym_new] = ACTIONS(4180), - [anon_sym_requires] = ACTIONS(4180), - [anon_sym_CARET_CARET] = ACTIONS(4182), - [anon_sym_LBRACK_COLON] = ACTIONS(4182), - [sym_this] = ACTIONS(4180), + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_include_token1] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_BANG] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym___cdecl] = ACTIONS(3782), + [anon_sym___clrcall] = ACTIONS(3782), + [anon_sym___stdcall] = ACTIONS(3782), + [anon_sym___fastcall] = ACTIONS(3782), + [anon_sym___thiscall] = ACTIONS(3782), + [anon_sym___vectorcall] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3784), + [anon_sym_RBRACE] = ACTIONS(3784), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_switch] = ACTIONS(3782), + [anon_sym_case] = ACTIONS(3782), + [anon_sym_default] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_break] = ACTIONS(3782), + [anon_sym_continue] = ACTIONS(3782), + [anon_sym_goto] = ACTIONS(3782), + [anon_sym___try] = ACTIONS(3782), + [anon_sym___leave] = ACTIONS(3782), + [anon_sym_not] = ACTIONS(3782), + [anon_sym_compl] = ACTIONS(3782), + [anon_sym_DASH_DASH] = ACTIONS(3784), + [anon_sym_PLUS_PLUS] = ACTIONS(3784), + [anon_sym_sizeof] = ACTIONS(3782), + [anon_sym___alignof__] = ACTIONS(3782), + [anon_sym___alignof] = ACTIONS(3782), + [anon_sym__alignof] = ACTIONS(3782), + [anon_sym_alignof] = ACTIONS(3782), + [anon_sym__Alignof] = ACTIONS(3782), + [anon_sym_offsetof] = ACTIONS(3782), + [anon_sym__Generic] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [anon_sym_asm] = ACTIONS(3782), + [anon_sym___asm__] = ACTIONS(3782), + [anon_sym___asm] = ACTIONS(3782), + [sym_number_literal] = ACTIONS(3784), + [anon_sym_L_SQUOTE] = ACTIONS(3784), + [anon_sym_u_SQUOTE] = ACTIONS(3784), + [anon_sym_U_SQUOTE] = ACTIONS(3784), + [anon_sym_u8_SQUOTE] = ACTIONS(3784), + [anon_sym_SQUOTE] = ACTIONS(3784), + [anon_sym_L_DQUOTE] = ACTIONS(3784), + [anon_sym_u_DQUOTE] = ACTIONS(3784), + [anon_sym_U_DQUOTE] = ACTIONS(3784), + [anon_sym_u8_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [anon_sym_NULL] = ACTIONS(3782), + [anon_sym_nullptr] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_export] = ACTIONS(3782), + [anon_sym_import] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_delete] = ACTIONS(3782), + [anon_sym_throw] = ACTIONS(3782), + [anon_sym_namespace] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_concept] = ACTIONS(3782), + [anon_sym_co_return] = ACTIONS(3782), + [anon_sym_co_yield] = ACTIONS(3782), + [anon_sym_R_DQUOTE] = ACTIONS(3784), + [anon_sym_LR_DQUOTE] = ACTIONS(3784), + [anon_sym_uR_DQUOTE] = ACTIONS(3784), + [anon_sym_UR_DQUOTE] = ACTIONS(3784), + [anon_sym_u8R_DQUOTE] = ACTIONS(3784), + [anon_sym_co_await] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_requires] = ACTIONS(3782), + [anon_sym_CARET_CARET] = ACTIONS(3784), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), + [sym_this] = ACTIONS(3782), }, [STATE(803)] = { - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_include_token1] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym___cdecl] = ACTIONS(4184), - [anon_sym___clrcall] = ACTIONS(4184), - [anon_sym___stdcall] = ACTIONS(4184), - [anon_sym___fastcall] = ACTIONS(4184), - [anon_sym___thiscall] = ACTIONS(4184), - [anon_sym___vectorcall] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(4186), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_if] = ACTIONS(4184), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_case] = ACTIONS(4184), - [anon_sym_default] = ACTIONS(4184), - [anon_sym_while] = ACTIONS(4184), - [anon_sym_do] = ACTIONS(4184), - [anon_sym_for] = ACTIONS(4184), - [anon_sym_return] = ACTIONS(4184), - [anon_sym_break] = ACTIONS(4184), - [anon_sym_continue] = ACTIONS(4184), - [anon_sym_goto] = ACTIONS(4184), - [anon_sym___try] = ACTIONS(4184), - [anon_sym___leave] = ACTIONS(4184), - [anon_sym_not] = ACTIONS(4184), - [anon_sym_compl] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4186), - [anon_sym_sizeof] = ACTIONS(4184), - [anon_sym___alignof__] = ACTIONS(4184), - [anon_sym___alignof] = ACTIONS(4184), - [anon_sym__alignof] = ACTIONS(4184), - [anon_sym_alignof] = ACTIONS(4184), - [anon_sym__Alignof] = ACTIONS(4184), - [anon_sym_offsetof] = ACTIONS(4184), - [anon_sym__Generic] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [anon_sym_asm] = ACTIONS(4184), - [anon_sym___asm__] = ACTIONS(4184), - [anon_sym___asm] = ACTIONS(4184), - [sym_number_literal] = ACTIONS(4186), - [anon_sym_L_SQUOTE] = ACTIONS(4186), - [anon_sym_u_SQUOTE] = ACTIONS(4186), - [anon_sym_U_SQUOTE] = ACTIONS(4186), - [anon_sym_u8_SQUOTE] = ACTIONS(4186), - [anon_sym_SQUOTE] = ACTIONS(4186), - [anon_sym_L_DQUOTE] = ACTIONS(4186), - [anon_sym_u_DQUOTE] = ACTIONS(4186), - [anon_sym_U_DQUOTE] = ACTIONS(4186), - [anon_sym_u8_DQUOTE] = ACTIONS(4186), - [anon_sym_DQUOTE] = ACTIONS(4186), - [sym_true] = ACTIONS(4184), - [sym_false] = ACTIONS(4184), - [anon_sym_NULL] = ACTIONS(4184), - [anon_sym_nullptr] = ACTIONS(4184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_export] = ACTIONS(4184), - [anon_sym_import] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_try] = ACTIONS(4184), - [anon_sym_delete] = ACTIONS(4184), - [anon_sym_throw] = ACTIONS(4184), - [anon_sym_namespace] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_concept] = ACTIONS(4184), - [anon_sym_co_return] = ACTIONS(4184), - [anon_sym_co_yield] = ACTIONS(4184), - [anon_sym_R_DQUOTE] = ACTIONS(4186), - [anon_sym_LR_DQUOTE] = ACTIONS(4186), - [anon_sym_uR_DQUOTE] = ACTIONS(4186), - [anon_sym_UR_DQUOTE] = ACTIONS(4186), - [anon_sym_u8R_DQUOTE] = ACTIONS(4186), - [anon_sym_co_await] = ACTIONS(4184), - [anon_sym_new] = ACTIONS(4184), - [anon_sym_requires] = ACTIONS(4184), - [anon_sym_CARET_CARET] = ACTIONS(4186), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), - [sym_this] = ACTIONS(4184), + [sym_identifier] = ACTIONS(4305), + [aux_sym_preproc_include_token1] = ACTIONS(4305), + [aux_sym_preproc_def_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token1] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4305), + [sym_preproc_directive] = ACTIONS(4305), + [anon_sym_LPAREN2] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4305), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_typedef] = ACTIONS(4305), + [anon_sym_virtual] = ACTIONS(4305), + [anon_sym_extern] = ACTIONS(4305), + [anon_sym___attribute__] = ACTIONS(4305), + [anon_sym___attribute] = ACTIONS(4305), + [anon_sym_using] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4307), + [anon_sym___declspec] = ACTIONS(4305), + [anon_sym___based] = ACTIONS(4305), + [anon_sym___cdecl] = ACTIONS(4305), + [anon_sym___clrcall] = ACTIONS(4305), + [anon_sym___stdcall] = ACTIONS(4305), + [anon_sym___fastcall] = ACTIONS(4305), + [anon_sym___thiscall] = ACTIONS(4305), + [anon_sym___vectorcall] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_signed] = ACTIONS(4305), + [anon_sym_unsigned] = ACTIONS(4305), + [anon_sym_long] = ACTIONS(4305), + [anon_sym_short] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_static] = ACTIONS(4305), + [anon_sym_register] = ACTIONS(4305), + [anon_sym_inline] = ACTIONS(4305), + [anon_sym___inline] = ACTIONS(4305), + [anon_sym___inline__] = ACTIONS(4305), + [anon_sym___forceinline] = ACTIONS(4305), + [anon_sym_thread_local] = ACTIONS(4305), + [anon_sym___thread] = ACTIONS(4305), + [anon_sym_const] = ACTIONS(4305), + [anon_sym_constexpr] = ACTIONS(4305), + [anon_sym_volatile] = ACTIONS(4305), + [anon_sym_restrict] = ACTIONS(4305), + [anon_sym___restrict__] = ACTIONS(4305), + [anon_sym__Atomic] = ACTIONS(4305), + [anon_sym__Noreturn] = ACTIONS(4305), + [anon_sym_noreturn] = ACTIONS(4305), + [anon_sym__Nonnull] = ACTIONS(4305), + [anon_sym_mutable] = ACTIONS(4305), + [anon_sym_constinit] = ACTIONS(4305), + [anon_sym_consteval] = ACTIONS(4305), + [anon_sym_alignas] = ACTIONS(4305), + [anon_sym__Alignas] = ACTIONS(4305), + [sym_primitive_type] = ACTIONS(4305), + [anon_sym_enum] = ACTIONS(4305), + [anon_sym_class] = ACTIONS(4305), + [anon_sym_struct] = ACTIONS(4305), + [anon_sym_union] = ACTIONS(4305), + [anon_sym_if] = ACTIONS(4305), + [anon_sym_switch] = ACTIONS(4305), + [anon_sym_case] = ACTIONS(4305), + [anon_sym_default] = ACTIONS(4305), + [anon_sym_while] = ACTIONS(4305), + [anon_sym_do] = ACTIONS(4305), + [anon_sym_for] = ACTIONS(4305), + [anon_sym_return] = ACTIONS(4305), + [anon_sym_break] = ACTIONS(4305), + [anon_sym_continue] = ACTIONS(4305), + [anon_sym_goto] = ACTIONS(4305), + [anon_sym___try] = ACTIONS(4305), + [anon_sym___leave] = ACTIONS(4305), + [anon_sym_not] = ACTIONS(4305), + [anon_sym_compl] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_sizeof] = ACTIONS(4305), + [anon_sym___alignof__] = ACTIONS(4305), + [anon_sym___alignof] = ACTIONS(4305), + [anon_sym__alignof] = ACTIONS(4305), + [anon_sym_alignof] = ACTIONS(4305), + [anon_sym__Alignof] = ACTIONS(4305), + [anon_sym_offsetof] = ACTIONS(4305), + [anon_sym__Generic] = ACTIONS(4305), + [anon_sym_typename] = ACTIONS(4305), + [anon_sym_asm] = ACTIONS(4305), + [anon_sym___asm__] = ACTIONS(4305), + [anon_sym___asm] = ACTIONS(4305), + [sym_number_literal] = ACTIONS(4307), + [anon_sym_L_SQUOTE] = ACTIONS(4307), + [anon_sym_u_SQUOTE] = ACTIONS(4307), + [anon_sym_U_SQUOTE] = ACTIONS(4307), + [anon_sym_u8_SQUOTE] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4307), + [anon_sym_L_DQUOTE] = ACTIONS(4307), + [anon_sym_u_DQUOTE] = ACTIONS(4307), + [anon_sym_U_DQUOTE] = ACTIONS(4307), + [anon_sym_u8_DQUOTE] = ACTIONS(4307), + [anon_sym_DQUOTE] = ACTIONS(4307), + [sym_true] = ACTIONS(4305), + [sym_false] = ACTIONS(4305), + [anon_sym_NULL] = ACTIONS(4305), + [anon_sym_nullptr] = ACTIONS(4305), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4305), + [anon_sym_decltype] = ACTIONS(4305), + [anon_sym_explicit] = ACTIONS(4305), + [anon_sym_export] = ACTIONS(4305), + [anon_sym_import] = ACTIONS(4305), + [anon_sym_template] = ACTIONS(4305), + [anon_sym_operator] = ACTIONS(4305), + [anon_sym_try] = ACTIONS(4305), + [anon_sym_delete] = ACTIONS(4305), + [anon_sym_throw] = ACTIONS(4305), + [anon_sym_namespace] = ACTIONS(4305), + [anon_sym_static_assert] = ACTIONS(4305), + [anon_sym_concept] = ACTIONS(4305), + [anon_sym_co_return] = ACTIONS(4305), + [anon_sym_co_yield] = ACTIONS(4305), + [anon_sym_R_DQUOTE] = ACTIONS(4307), + [anon_sym_LR_DQUOTE] = ACTIONS(4307), + [anon_sym_uR_DQUOTE] = ACTIONS(4307), + [anon_sym_UR_DQUOTE] = ACTIONS(4307), + [anon_sym_u8R_DQUOTE] = ACTIONS(4307), + [anon_sym_co_await] = ACTIONS(4305), + [anon_sym_new] = ACTIONS(4305), + [anon_sym_requires] = ACTIONS(4305), + [anon_sym_CARET_CARET] = ACTIONS(4307), + [anon_sym_LBRACK_COLON] = ACTIONS(4307), + [sym_this] = ACTIONS(4305), }, [STATE(804)] = { - [sym_identifier] = ACTIONS(4032), - [aux_sym_preproc_include_token1] = ACTIONS(4032), - [aux_sym_preproc_def_token1] = ACTIONS(4032), - [aux_sym_preproc_if_token1] = ACTIONS(4032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4032), - [sym_preproc_directive] = ACTIONS(4032), - [anon_sym_LPAREN2] = ACTIONS(4034), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_STAR] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4032), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym___extension__] = ACTIONS(4032), - [anon_sym_typedef] = ACTIONS(4032), - [anon_sym_virtual] = ACTIONS(4032), - [anon_sym_extern] = ACTIONS(4032), - [anon_sym___attribute__] = ACTIONS(4032), - [anon_sym___attribute] = ACTIONS(4032), - [anon_sym_using] = ACTIONS(4032), - [anon_sym_COLON_COLON] = ACTIONS(4034), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4034), - [anon_sym___declspec] = ACTIONS(4032), - [anon_sym___based] = ACTIONS(4032), - [anon_sym___cdecl] = ACTIONS(4032), - [anon_sym___clrcall] = ACTIONS(4032), - [anon_sym___stdcall] = ACTIONS(4032), - [anon_sym___fastcall] = ACTIONS(4032), - [anon_sym___thiscall] = ACTIONS(4032), - [anon_sym___vectorcall] = ACTIONS(4032), - [anon_sym_LBRACE] = ACTIONS(4034), - [anon_sym_RBRACE] = ACTIONS(4034), - [anon_sym_signed] = ACTIONS(4032), - [anon_sym_unsigned] = ACTIONS(4032), - [anon_sym_long] = ACTIONS(4032), - [anon_sym_short] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_static] = ACTIONS(4032), - [anon_sym_register] = ACTIONS(4032), - [anon_sym_inline] = ACTIONS(4032), - [anon_sym___inline] = ACTIONS(4032), - [anon_sym___inline__] = ACTIONS(4032), - [anon_sym___forceinline] = ACTIONS(4032), - [anon_sym_thread_local] = ACTIONS(4032), - [anon_sym___thread] = ACTIONS(4032), - [anon_sym_const] = ACTIONS(4032), - [anon_sym_constexpr] = ACTIONS(4032), - [anon_sym_volatile] = ACTIONS(4032), - [anon_sym_restrict] = ACTIONS(4032), - [anon_sym___restrict__] = ACTIONS(4032), - [anon_sym__Atomic] = ACTIONS(4032), - [anon_sym__Noreturn] = ACTIONS(4032), - [anon_sym_noreturn] = ACTIONS(4032), - [anon_sym__Nonnull] = ACTIONS(4032), - [anon_sym_mutable] = ACTIONS(4032), - [anon_sym_constinit] = ACTIONS(4032), - [anon_sym_consteval] = ACTIONS(4032), - [anon_sym_alignas] = ACTIONS(4032), - [anon_sym__Alignas] = ACTIONS(4032), - [sym_primitive_type] = ACTIONS(4032), - [anon_sym_enum] = ACTIONS(4032), - [anon_sym_class] = ACTIONS(4032), - [anon_sym_struct] = ACTIONS(4032), - [anon_sym_union] = ACTIONS(4032), - [anon_sym_if] = ACTIONS(4032), - [anon_sym_switch] = ACTIONS(4032), - [anon_sym_case] = ACTIONS(4032), - [anon_sym_default] = ACTIONS(4032), - [anon_sym_while] = ACTIONS(4032), - [anon_sym_do] = ACTIONS(4032), - [anon_sym_for] = ACTIONS(4032), - [anon_sym_return] = ACTIONS(4032), - [anon_sym_break] = ACTIONS(4032), - [anon_sym_continue] = ACTIONS(4032), - [anon_sym_goto] = ACTIONS(4032), - [anon_sym___try] = ACTIONS(4032), - [anon_sym___leave] = ACTIONS(4032), - [anon_sym_not] = ACTIONS(4032), - [anon_sym_compl] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4034), - [anon_sym_PLUS_PLUS] = ACTIONS(4034), - [anon_sym_sizeof] = ACTIONS(4032), - [anon_sym___alignof__] = ACTIONS(4032), - [anon_sym___alignof] = ACTIONS(4032), - [anon_sym__alignof] = ACTIONS(4032), - [anon_sym_alignof] = ACTIONS(4032), - [anon_sym__Alignof] = ACTIONS(4032), - [anon_sym_offsetof] = ACTIONS(4032), - [anon_sym__Generic] = ACTIONS(4032), - [anon_sym_typename] = ACTIONS(4032), - [anon_sym_asm] = ACTIONS(4032), - [anon_sym___asm__] = ACTIONS(4032), - [anon_sym___asm] = ACTIONS(4032), - [sym_number_literal] = ACTIONS(4034), - [anon_sym_L_SQUOTE] = ACTIONS(4034), - [anon_sym_u_SQUOTE] = ACTIONS(4034), - [anon_sym_U_SQUOTE] = ACTIONS(4034), - [anon_sym_u8_SQUOTE] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4034), - [anon_sym_L_DQUOTE] = ACTIONS(4034), - [anon_sym_u_DQUOTE] = ACTIONS(4034), - [anon_sym_U_DQUOTE] = ACTIONS(4034), - [anon_sym_u8_DQUOTE] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4034), - [sym_true] = ACTIONS(4032), - [sym_false] = ACTIONS(4032), - [anon_sym_NULL] = ACTIONS(4032), - [anon_sym_nullptr] = ACTIONS(4032), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4032), - [anon_sym_decltype] = ACTIONS(4032), - [anon_sym_explicit] = ACTIONS(4032), - [anon_sym_export] = ACTIONS(4032), - [anon_sym_import] = ACTIONS(4032), - [anon_sym_template] = ACTIONS(4032), - [anon_sym_operator] = ACTIONS(4032), - [anon_sym_try] = ACTIONS(4032), - [anon_sym_delete] = ACTIONS(4032), - [anon_sym_throw] = ACTIONS(4032), - [anon_sym_namespace] = ACTIONS(4032), - [anon_sym_static_assert] = ACTIONS(4032), - [anon_sym_concept] = ACTIONS(4032), - [anon_sym_co_return] = ACTIONS(4032), - [anon_sym_co_yield] = ACTIONS(4032), - [anon_sym_R_DQUOTE] = ACTIONS(4034), - [anon_sym_LR_DQUOTE] = ACTIONS(4034), - [anon_sym_uR_DQUOTE] = ACTIONS(4034), - [anon_sym_UR_DQUOTE] = ACTIONS(4034), - [anon_sym_u8R_DQUOTE] = ACTIONS(4034), - [anon_sym_co_await] = ACTIONS(4032), - [anon_sym_new] = ACTIONS(4032), - [anon_sym_requires] = ACTIONS(4032), - [anon_sym_CARET_CARET] = ACTIONS(4034), - [anon_sym_LBRACK_COLON] = ACTIONS(4034), - [sym_this] = ACTIONS(4032), + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_include_token1] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_BANG] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym___cdecl] = ACTIONS(3782), + [anon_sym___clrcall] = ACTIONS(3782), + [anon_sym___stdcall] = ACTIONS(3782), + [anon_sym___fastcall] = ACTIONS(3782), + [anon_sym___thiscall] = ACTIONS(3782), + [anon_sym___vectorcall] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3784), + [anon_sym_RBRACE] = ACTIONS(3784), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_switch] = ACTIONS(3782), + [anon_sym_case] = ACTIONS(3782), + [anon_sym_default] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_break] = ACTIONS(3782), + [anon_sym_continue] = ACTIONS(3782), + [anon_sym_goto] = ACTIONS(3782), + [anon_sym___try] = ACTIONS(3782), + [anon_sym___leave] = ACTIONS(3782), + [anon_sym_not] = ACTIONS(3782), + [anon_sym_compl] = ACTIONS(3782), + [anon_sym_DASH_DASH] = ACTIONS(3784), + [anon_sym_PLUS_PLUS] = ACTIONS(3784), + [anon_sym_sizeof] = ACTIONS(3782), + [anon_sym___alignof__] = ACTIONS(3782), + [anon_sym___alignof] = ACTIONS(3782), + [anon_sym__alignof] = ACTIONS(3782), + [anon_sym_alignof] = ACTIONS(3782), + [anon_sym__Alignof] = ACTIONS(3782), + [anon_sym_offsetof] = ACTIONS(3782), + [anon_sym__Generic] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [anon_sym_asm] = ACTIONS(3782), + [anon_sym___asm__] = ACTIONS(3782), + [anon_sym___asm] = ACTIONS(3782), + [sym_number_literal] = ACTIONS(3784), + [anon_sym_L_SQUOTE] = ACTIONS(3784), + [anon_sym_u_SQUOTE] = ACTIONS(3784), + [anon_sym_U_SQUOTE] = ACTIONS(3784), + [anon_sym_u8_SQUOTE] = ACTIONS(3784), + [anon_sym_SQUOTE] = ACTIONS(3784), + [anon_sym_L_DQUOTE] = ACTIONS(3784), + [anon_sym_u_DQUOTE] = ACTIONS(3784), + [anon_sym_U_DQUOTE] = ACTIONS(3784), + [anon_sym_u8_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [anon_sym_NULL] = ACTIONS(3782), + [anon_sym_nullptr] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_export] = ACTIONS(3782), + [anon_sym_import] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_delete] = ACTIONS(3782), + [anon_sym_throw] = ACTIONS(3782), + [anon_sym_namespace] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_concept] = ACTIONS(3782), + [anon_sym_co_return] = ACTIONS(3782), + [anon_sym_co_yield] = ACTIONS(3782), + [anon_sym_R_DQUOTE] = ACTIONS(3784), + [anon_sym_LR_DQUOTE] = ACTIONS(3784), + [anon_sym_uR_DQUOTE] = ACTIONS(3784), + [anon_sym_UR_DQUOTE] = ACTIONS(3784), + [anon_sym_u8R_DQUOTE] = ACTIONS(3784), + [anon_sym_co_await] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_requires] = ACTIONS(3782), + [anon_sym_CARET_CARET] = ACTIONS(3784), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), + [sym_this] = ACTIONS(3782), }, [STATE(805)] = { - [sym_identifier] = ACTIONS(4036), - [aux_sym_preproc_include_token1] = ACTIONS(4036), - [aux_sym_preproc_def_token1] = ACTIONS(4036), - [aux_sym_preproc_if_token1] = ACTIONS(4036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4036), - [sym_preproc_directive] = ACTIONS(4036), - [anon_sym_LPAREN2] = ACTIONS(4038), - [anon_sym_BANG] = ACTIONS(4038), - [anon_sym_TILDE] = ACTIONS(4038), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4036), - [anon_sym_STAR] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym___extension__] = ACTIONS(4036), - [anon_sym_typedef] = ACTIONS(4036), - [anon_sym_virtual] = ACTIONS(4036), - [anon_sym_extern] = ACTIONS(4036), - [anon_sym___attribute__] = ACTIONS(4036), - [anon_sym___attribute] = ACTIONS(4036), - [anon_sym_using] = ACTIONS(4036), - [anon_sym_COLON_COLON] = ACTIONS(4038), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4038), - [anon_sym___declspec] = ACTIONS(4036), - [anon_sym___based] = ACTIONS(4036), - [anon_sym___cdecl] = ACTIONS(4036), - [anon_sym___clrcall] = ACTIONS(4036), - [anon_sym___stdcall] = ACTIONS(4036), - [anon_sym___fastcall] = ACTIONS(4036), - [anon_sym___thiscall] = ACTIONS(4036), - [anon_sym___vectorcall] = ACTIONS(4036), - [anon_sym_LBRACE] = ACTIONS(4038), - [anon_sym_RBRACE] = ACTIONS(4038), - [anon_sym_signed] = ACTIONS(4036), - [anon_sym_unsigned] = ACTIONS(4036), - [anon_sym_long] = ACTIONS(4036), - [anon_sym_short] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_static] = ACTIONS(4036), - [anon_sym_register] = ACTIONS(4036), - [anon_sym_inline] = ACTIONS(4036), - [anon_sym___inline] = ACTIONS(4036), - [anon_sym___inline__] = ACTIONS(4036), - [anon_sym___forceinline] = ACTIONS(4036), - [anon_sym_thread_local] = ACTIONS(4036), - [anon_sym___thread] = ACTIONS(4036), - [anon_sym_const] = ACTIONS(4036), - [anon_sym_constexpr] = ACTIONS(4036), - [anon_sym_volatile] = ACTIONS(4036), - [anon_sym_restrict] = ACTIONS(4036), - [anon_sym___restrict__] = ACTIONS(4036), - [anon_sym__Atomic] = ACTIONS(4036), - [anon_sym__Noreturn] = ACTIONS(4036), - [anon_sym_noreturn] = ACTIONS(4036), - [anon_sym__Nonnull] = ACTIONS(4036), - [anon_sym_mutable] = ACTIONS(4036), - [anon_sym_constinit] = ACTIONS(4036), - [anon_sym_consteval] = ACTIONS(4036), - [anon_sym_alignas] = ACTIONS(4036), - [anon_sym__Alignas] = ACTIONS(4036), - [sym_primitive_type] = ACTIONS(4036), - [anon_sym_enum] = ACTIONS(4036), - [anon_sym_class] = ACTIONS(4036), - [anon_sym_struct] = ACTIONS(4036), - [anon_sym_union] = ACTIONS(4036), - [anon_sym_if] = ACTIONS(4036), - [anon_sym_switch] = ACTIONS(4036), - [anon_sym_case] = ACTIONS(4036), - [anon_sym_default] = ACTIONS(4036), - [anon_sym_while] = ACTIONS(4036), - [anon_sym_do] = ACTIONS(4036), - [anon_sym_for] = ACTIONS(4036), - [anon_sym_return] = ACTIONS(4036), - [anon_sym_break] = ACTIONS(4036), - [anon_sym_continue] = ACTIONS(4036), - [anon_sym_goto] = ACTIONS(4036), - [anon_sym___try] = ACTIONS(4036), - [anon_sym___leave] = ACTIONS(4036), - [anon_sym_not] = ACTIONS(4036), - [anon_sym_compl] = ACTIONS(4036), - [anon_sym_DASH_DASH] = ACTIONS(4038), - [anon_sym_PLUS_PLUS] = ACTIONS(4038), - [anon_sym_sizeof] = ACTIONS(4036), - [anon_sym___alignof__] = ACTIONS(4036), - [anon_sym___alignof] = ACTIONS(4036), - [anon_sym__alignof] = ACTIONS(4036), - [anon_sym_alignof] = ACTIONS(4036), - [anon_sym__Alignof] = ACTIONS(4036), - [anon_sym_offsetof] = ACTIONS(4036), - [anon_sym__Generic] = ACTIONS(4036), - [anon_sym_typename] = ACTIONS(4036), - [anon_sym_asm] = ACTIONS(4036), - [anon_sym___asm__] = ACTIONS(4036), - [anon_sym___asm] = ACTIONS(4036), - [sym_number_literal] = ACTIONS(4038), - [anon_sym_L_SQUOTE] = ACTIONS(4038), - [anon_sym_u_SQUOTE] = ACTIONS(4038), - [anon_sym_U_SQUOTE] = ACTIONS(4038), - [anon_sym_u8_SQUOTE] = ACTIONS(4038), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_L_DQUOTE] = ACTIONS(4038), - [anon_sym_u_DQUOTE] = ACTIONS(4038), - [anon_sym_U_DQUOTE] = ACTIONS(4038), - [anon_sym_u8_DQUOTE] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [sym_true] = ACTIONS(4036), - [sym_false] = ACTIONS(4036), - [anon_sym_NULL] = ACTIONS(4036), - [anon_sym_nullptr] = ACTIONS(4036), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4036), - [anon_sym_decltype] = ACTIONS(4036), - [anon_sym_explicit] = ACTIONS(4036), - [anon_sym_export] = ACTIONS(4036), - [anon_sym_import] = ACTIONS(4036), - [anon_sym_template] = ACTIONS(4036), - [anon_sym_operator] = ACTIONS(4036), - [anon_sym_try] = ACTIONS(4036), - [anon_sym_delete] = ACTIONS(4036), - [anon_sym_throw] = ACTIONS(4036), - [anon_sym_namespace] = ACTIONS(4036), - [anon_sym_static_assert] = ACTIONS(4036), - [anon_sym_concept] = ACTIONS(4036), - [anon_sym_co_return] = ACTIONS(4036), - [anon_sym_co_yield] = ACTIONS(4036), - [anon_sym_R_DQUOTE] = ACTIONS(4038), - [anon_sym_LR_DQUOTE] = ACTIONS(4038), - [anon_sym_uR_DQUOTE] = ACTIONS(4038), - [anon_sym_UR_DQUOTE] = ACTIONS(4038), - [anon_sym_u8R_DQUOTE] = ACTIONS(4038), - [anon_sym_co_await] = ACTIONS(4036), - [anon_sym_new] = ACTIONS(4036), - [anon_sym_requires] = ACTIONS(4036), - [anon_sym_CARET_CARET] = ACTIONS(4038), - [anon_sym_LBRACK_COLON] = ACTIONS(4038), - [sym_this] = ACTIONS(4036), + [sym_identifier] = ACTIONS(4309), + [aux_sym_preproc_include_token1] = ACTIONS(4309), + [aux_sym_preproc_def_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4309), + [sym_preproc_directive] = ACTIONS(4309), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_TILDE] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4309), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_AMP_AMP] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), + [anon_sym_SEMI] = ACTIONS(4311), + [anon_sym___extension__] = ACTIONS(4309), + [anon_sym_typedef] = ACTIONS(4309), + [anon_sym_virtual] = ACTIONS(4309), + [anon_sym_extern] = ACTIONS(4309), + [anon_sym___attribute__] = ACTIONS(4309), + [anon_sym___attribute] = ACTIONS(4309), + [anon_sym_using] = ACTIONS(4309), + [anon_sym_COLON_COLON] = ACTIONS(4311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4311), + [anon_sym___declspec] = ACTIONS(4309), + [anon_sym___based] = ACTIONS(4309), + [anon_sym___cdecl] = ACTIONS(4309), + [anon_sym___clrcall] = ACTIONS(4309), + [anon_sym___stdcall] = ACTIONS(4309), + [anon_sym___fastcall] = ACTIONS(4309), + [anon_sym___thiscall] = ACTIONS(4309), + [anon_sym___vectorcall] = ACTIONS(4309), + [anon_sym_LBRACE] = ACTIONS(4311), + [anon_sym_RBRACE] = ACTIONS(4311), + [anon_sym_signed] = ACTIONS(4309), + [anon_sym_unsigned] = ACTIONS(4309), + [anon_sym_long] = ACTIONS(4309), + [anon_sym_short] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_static] = ACTIONS(4309), + [anon_sym_register] = ACTIONS(4309), + [anon_sym_inline] = ACTIONS(4309), + [anon_sym___inline] = ACTIONS(4309), + [anon_sym___inline__] = ACTIONS(4309), + [anon_sym___forceinline] = ACTIONS(4309), + [anon_sym_thread_local] = ACTIONS(4309), + [anon_sym___thread] = ACTIONS(4309), + [anon_sym_const] = ACTIONS(4309), + [anon_sym_constexpr] = ACTIONS(4309), + [anon_sym_volatile] = ACTIONS(4309), + [anon_sym_restrict] = ACTIONS(4309), + [anon_sym___restrict__] = ACTIONS(4309), + [anon_sym__Atomic] = ACTIONS(4309), + [anon_sym__Noreturn] = ACTIONS(4309), + [anon_sym_noreturn] = ACTIONS(4309), + [anon_sym__Nonnull] = ACTIONS(4309), + [anon_sym_mutable] = ACTIONS(4309), + [anon_sym_constinit] = ACTIONS(4309), + [anon_sym_consteval] = ACTIONS(4309), + [anon_sym_alignas] = ACTIONS(4309), + [anon_sym__Alignas] = ACTIONS(4309), + [sym_primitive_type] = ACTIONS(4309), + [anon_sym_enum] = ACTIONS(4309), + [anon_sym_class] = ACTIONS(4309), + [anon_sym_struct] = ACTIONS(4309), + [anon_sym_union] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4309), + [anon_sym_switch] = ACTIONS(4309), + [anon_sym_case] = ACTIONS(4309), + [anon_sym_default] = ACTIONS(4309), + [anon_sym_while] = ACTIONS(4309), + [anon_sym_do] = ACTIONS(4309), + [anon_sym_for] = ACTIONS(4309), + [anon_sym_return] = ACTIONS(4309), + [anon_sym_break] = ACTIONS(4309), + [anon_sym_continue] = ACTIONS(4309), + [anon_sym_goto] = ACTIONS(4309), + [anon_sym___try] = ACTIONS(4309), + [anon_sym___leave] = ACTIONS(4309), + [anon_sym_not] = ACTIONS(4309), + [anon_sym_compl] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4311), + [anon_sym_PLUS_PLUS] = ACTIONS(4311), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(4309), + [anon_sym___alignof] = ACTIONS(4309), + [anon_sym__alignof] = ACTIONS(4309), + [anon_sym_alignof] = ACTIONS(4309), + [anon_sym__Alignof] = ACTIONS(4309), + [anon_sym_offsetof] = ACTIONS(4309), + [anon_sym__Generic] = ACTIONS(4309), + [anon_sym_typename] = ACTIONS(4309), + [anon_sym_asm] = ACTIONS(4309), + [anon_sym___asm__] = ACTIONS(4309), + [anon_sym___asm] = ACTIONS(4309), + [sym_number_literal] = ACTIONS(4311), + [anon_sym_L_SQUOTE] = ACTIONS(4311), + [anon_sym_u_SQUOTE] = ACTIONS(4311), + [anon_sym_U_SQUOTE] = ACTIONS(4311), + [anon_sym_u8_SQUOTE] = ACTIONS(4311), + [anon_sym_SQUOTE] = ACTIONS(4311), + [anon_sym_L_DQUOTE] = ACTIONS(4311), + [anon_sym_u_DQUOTE] = ACTIONS(4311), + [anon_sym_U_DQUOTE] = ACTIONS(4311), + [anon_sym_u8_DQUOTE] = ACTIONS(4311), + [anon_sym_DQUOTE] = ACTIONS(4311), + [sym_true] = ACTIONS(4309), + [sym_false] = ACTIONS(4309), + [anon_sym_NULL] = ACTIONS(4309), + [anon_sym_nullptr] = ACTIONS(4309), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4309), + [anon_sym_decltype] = ACTIONS(4309), + [anon_sym_explicit] = ACTIONS(4309), + [anon_sym_export] = ACTIONS(4309), + [anon_sym_import] = ACTIONS(4309), + [anon_sym_template] = ACTIONS(4309), + [anon_sym_operator] = ACTIONS(4309), + [anon_sym_try] = ACTIONS(4309), + [anon_sym_delete] = ACTIONS(4309), + [anon_sym_throw] = ACTIONS(4309), + [anon_sym_namespace] = ACTIONS(4309), + [anon_sym_static_assert] = ACTIONS(4309), + [anon_sym_concept] = ACTIONS(4309), + [anon_sym_co_return] = ACTIONS(4309), + [anon_sym_co_yield] = ACTIONS(4309), + [anon_sym_R_DQUOTE] = ACTIONS(4311), + [anon_sym_LR_DQUOTE] = ACTIONS(4311), + [anon_sym_uR_DQUOTE] = ACTIONS(4311), + [anon_sym_UR_DQUOTE] = ACTIONS(4311), + [anon_sym_u8R_DQUOTE] = ACTIONS(4311), + [anon_sym_co_await] = ACTIONS(4309), + [anon_sym_new] = ACTIONS(4309), + [anon_sym_requires] = ACTIONS(4309), + [anon_sym_CARET_CARET] = ACTIONS(4311), + [anon_sym_LBRACK_COLON] = ACTIONS(4311), + [sym_this] = ACTIONS(4309), }, [STATE(806)] = { - [sym_identifier] = ACTIONS(4443), - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4445), - [anon_sym_TILDE] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_AMP] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym___extension__] = ACTIONS(4443), - [anon_sym_typedef] = ACTIONS(4443), - [anon_sym_virtual] = ACTIONS(4443), - [anon_sym_extern] = ACTIONS(4443), - [anon_sym___attribute__] = ACTIONS(4443), - [anon_sym___attribute] = ACTIONS(4443), - [anon_sym_using] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4445), - [anon_sym___declspec] = ACTIONS(4443), - [anon_sym___based] = ACTIONS(4443), - [anon_sym___cdecl] = ACTIONS(4443), - [anon_sym___clrcall] = ACTIONS(4443), - [anon_sym___stdcall] = ACTIONS(4443), - [anon_sym___fastcall] = ACTIONS(4443), - [anon_sym___thiscall] = ACTIONS(4443), - [anon_sym___vectorcall] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_RBRACE] = ACTIONS(4445), - [anon_sym_signed] = ACTIONS(4443), - [anon_sym_unsigned] = ACTIONS(4443), - [anon_sym_long] = ACTIONS(4443), - [anon_sym_short] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4443), - [anon_sym_static] = ACTIONS(4443), - [anon_sym_register] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym___inline] = ACTIONS(4443), - [anon_sym___inline__] = ACTIONS(4443), - [anon_sym___forceinline] = ACTIONS(4443), - [anon_sym_thread_local] = ACTIONS(4443), - [anon_sym___thread] = ACTIONS(4443), - [anon_sym_const] = ACTIONS(4443), - [anon_sym_constexpr] = ACTIONS(4443), - [anon_sym_volatile] = ACTIONS(4443), - [anon_sym_restrict] = ACTIONS(4443), - [anon_sym___restrict__] = ACTIONS(4443), - [anon_sym__Atomic] = ACTIONS(4443), - [anon_sym__Noreturn] = ACTIONS(4443), - [anon_sym_noreturn] = ACTIONS(4443), - [anon_sym__Nonnull] = ACTIONS(4443), - [anon_sym_mutable] = ACTIONS(4443), - [anon_sym_constinit] = ACTIONS(4443), - [anon_sym_consteval] = ACTIONS(4443), - [anon_sym_alignas] = ACTIONS(4443), - [anon_sym__Alignas] = ACTIONS(4443), - [sym_primitive_type] = ACTIONS(4443), - [anon_sym_enum] = ACTIONS(4443), - [anon_sym_class] = ACTIONS(4443), - [anon_sym_struct] = ACTIONS(4443), - [anon_sym_union] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_switch] = ACTIONS(4443), - [anon_sym_case] = ACTIONS(4443), - [anon_sym_default] = ACTIONS(4443), - [anon_sym_while] = ACTIONS(4443), - [anon_sym_do] = ACTIONS(4443), - [anon_sym_for] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_goto] = ACTIONS(4443), - [anon_sym___try] = ACTIONS(4443), - [anon_sym___leave] = ACTIONS(4443), - [anon_sym_not] = ACTIONS(4443), - [anon_sym_compl] = ACTIONS(4443), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_sizeof] = ACTIONS(4443), - [anon_sym___alignof__] = ACTIONS(4443), - [anon_sym___alignof] = ACTIONS(4443), - [anon_sym__alignof] = ACTIONS(4443), - [anon_sym_alignof] = ACTIONS(4443), - [anon_sym__Alignof] = ACTIONS(4443), - [anon_sym_offsetof] = ACTIONS(4443), - [anon_sym__Generic] = ACTIONS(4443), - [anon_sym_typename] = ACTIONS(4443), - [anon_sym_asm] = ACTIONS(4443), - [anon_sym___asm__] = ACTIONS(4443), - [anon_sym___asm] = ACTIONS(4443), - [sym_number_literal] = ACTIONS(4445), - [anon_sym_L_SQUOTE] = ACTIONS(4445), - [anon_sym_u_SQUOTE] = ACTIONS(4445), - [anon_sym_U_SQUOTE] = ACTIONS(4445), - [anon_sym_u8_SQUOTE] = ACTIONS(4445), - [anon_sym_SQUOTE] = ACTIONS(4445), - [anon_sym_L_DQUOTE] = ACTIONS(4445), - [anon_sym_u_DQUOTE] = ACTIONS(4445), - [anon_sym_U_DQUOTE] = ACTIONS(4445), - [anon_sym_u8_DQUOTE] = ACTIONS(4445), - [anon_sym_DQUOTE] = ACTIONS(4445), - [sym_true] = ACTIONS(4443), - [sym_false] = ACTIONS(4443), - [anon_sym_NULL] = ACTIONS(4443), - [anon_sym_nullptr] = ACTIONS(4443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4443), - [anon_sym_decltype] = ACTIONS(4443), - [anon_sym_explicit] = ACTIONS(4443), - [anon_sym_export] = ACTIONS(4443), - [anon_sym_import] = ACTIONS(4443), - [anon_sym_template] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_delete] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_namespace] = ACTIONS(4443), - [anon_sym_static_assert] = ACTIONS(4443), - [anon_sym_concept] = ACTIONS(4443), - [anon_sym_co_return] = ACTIONS(4443), - [anon_sym_co_yield] = ACTIONS(4443), - [anon_sym_R_DQUOTE] = ACTIONS(4445), - [anon_sym_LR_DQUOTE] = ACTIONS(4445), - [anon_sym_uR_DQUOTE] = ACTIONS(4445), - [anon_sym_UR_DQUOTE] = ACTIONS(4445), - [anon_sym_u8R_DQUOTE] = ACTIONS(4445), - [anon_sym_co_await] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4443), - [anon_sym_requires] = ACTIONS(4443), - [anon_sym_CARET_CARET] = ACTIONS(4445), - [anon_sym_LBRACK_COLON] = ACTIONS(4445), - [sym_this] = ACTIONS(4443), + [sym_identifier] = ACTIONS(4313), + [aux_sym_preproc_include_token1] = ACTIONS(4313), + [aux_sym_preproc_def_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token1] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), + [sym_preproc_directive] = ACTIONS(4313), + [anon_sym_LPAREN2] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4315), + [anon_sym_TILDE] = ACTIONS(4315), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym___extension__] = ACTIONS(4313), + [anon_sym_typedef] = ACTIONS(4313), + [anon_sym_virtual] = ACTIONS(4313), + [anon_sym_extern] = ACTIONS(4313), + [anon_sym___attribute__] = ACTIONS(4313), + [anon_sym___attribute] = ACTIONS(4313), + [anon_sym_using] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4315), + [anon_sym___declspec] = ACTIONS(4313), + [anon_sym___based] = ACTIONS(4313), + [anon_sym___cdecl] = ACTIONS(4313), + [anon_sym___clrcall] = ACTIONS(4313), + [anon_sym___stdcall] = ACTIONS(4313), + [anon_sym___fastcall] = ACTIONS(4313), + [anon_sym___thiscall] = ACTIONS(4313), + [anon_sym___vectorcall] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_signed] = ACTIONS(4313), + [anon_sym_unsigned] = ACTIONS(4313), + [anon_sym_long] = ACTIONS(4313), + [anon_sym_short] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_static] = ACTIONS(4313), + [anon_sym_register] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym___inline] = ACTIONS(4313), + [anon_sym___inline__] = ACTIONS(4313), + [anon_sym___forceinline] = ACTIONS(4313), + [anon_sym_thread_local] = ACTIONS(4313), + [anon_sym___thread] = ACTIONS(4313), + [anon_sym_const] = ACTIONS(4313), + [anon_sym_constexpr] = ACTIONS(4313), + [anon_sym_volatile] = ACTIONS(4313), + [anon_sym_restrict] = ACTIONS(4313), + [anon_sym___restrict__] = ACTIONS(4313), + [anon_sym__Atomic] = ACTIONS(4313), + [anon_sym__Noreturn] = ACTIONS(4313), + [anon_sym_noreturn] = ACTIONS(4313), + [anon_sym__Nonnull] = ACTIONS(4313), + [anon_sym_mutable] = ACTIONS(4313), + [anon_sym_constinit] = ACTIONS(4313), + [anon_sym_consteval] = ACTIONS(4313), + [anon_sym_alignas] = ACTIONS(4313), + [anon_sym__Alignas] = ACTIONS(4313), + [sym_primitive_type] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_struct] = ACTIONS(4313), + [anon_sym_union] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_switch] = ACTIONS(4313), + [anon_sym_case] = ACTIONS(4313), + [anon_sym_default] = ACTIONS(4313), + [anon_sym_while] = ACTIONS(4313), + [anon_sym_do] = ACTIONS(4313), + [anon_sym_for] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_goto] = ACTIONS(4313), + [anon_sym___try] = ACTIONS(4313), + [anon_sym___leave] = ACTIONS(4313), + [anon_sym_not] = ACTIONS(4313), + [anon_sym_compl] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_sizeof] = ACTIONS(4313), + [anon_sym___alignof__] = ACTIONS(4313), + [anon_sym___alignof] = ACTIONS(4313), + [anon_sym__alignof] = ACTIONS(4313), + [anon_sym_alignof] = ACTIONS(4313), + [anon_sym__Alignof] = ACTIONS(4313), + [anon_sym_offsetof] = ACTIONS(4313), + [anon_sym__Generic] = ACTIONS(4313), + [anon_sym_typename] = ACTIONS(4313), + [anon_sym_asm] = ACTIONS(4313), + [anon_sym___asm__] = ACTIONS(4313), + [anon_sym___asm] = ACTIONS(4313), + [sym_number_literal] = ACTIONS(4315), + [anon_sym_L_SQUOTE] = ACTIONS(4315), + [anon_sym_u_SQUOTE] = ACTIONS(4315), + [anon_sym_U_SQUOTE] = ACTIONS(4315), + [anon_sym_u8_SQUOTE] = ACTIONS(4315), + [anon_sym_SQUOTE] = ACTIONS(4315), + [anon_sym_L_DQUOTE] = ACTIONS(4315), + [anon_sym_u_DQUOTE] = ACTIONS(4315), + [anon_sym_U_DQUOTE] = ACTIONS(4315), + [anon_sym_u8_DQUOTE] = ACTIONS(4315), + [anon_sym_DQUOTE] = ACTIONS(4315), + [sym_true] = ACTIONS(4313), + [sym_false] = ACTIONS(4313), + [anon_sym_NULL] = ACTIONS(4313), + [anon_sym_nullptr] = ACTIONS(4313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4313), + [anon_sym_decltype] = ACTIONS(4313), + [anon_sym_explicit] = ACTIONS(4313), + [anon_sym_export] = ACTIONS(4313), + [anon_sym_import] = ACTIONS(4313), + [anon_sym_template] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_delete] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_namespace] = ACTIONS(4313), + [anon_sym_static_assert] = ACTIONS(4313), + [anon_sym_concept] = ACTIONS(4313), + [anon_sym_co_return] = ACTIONS(4313), + [anon_sym_co_yield] = ACTIONS(4313), + [anon_sym_R_DQUOTE] = ACTIONS(4315), + [anon_sym_LR_DQUOTE] = ACTIONS(4315), + [anon_sym_uR_DQUOTE] = ACTIONS(4315), + [anon_sym_UR_DQUOTE] = ACTIONS(4315), + [anon_sym_u8R_DQUOTE] = ACTIONS(4315), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4313), + [anon_sym_requires] = ACTIONS(4313), + [anon_sym_CARET_CARET] = ACTIONS(4315), + [anon_sym_LBRACK_COLON] = ACTIONS(4315), + [sym_this] = ACTIONS(4313), }, [STATE(807)] = { - [sym_identifier] = ACTIONS(4188), - [aux_sym_preproc_include_token1] = ACTIONS(4188), - [aux_sym_preproc_def_token1] = ACTIONS(4188), - [aux_sym_preproc_if_token1] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), - [sym_preproc_directive] = ACTIONS(4188), - [anon_sym_LPAREN2] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_TILDE] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4188), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4188), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym___extension__] = ACTIONS(4188), - [anon_sym_typedef] = ACTIONS(4188), - [anon_sym_virtual] = ACTIONS(4188), - [anon_sym_extern] = ACTIONS(4188), - [anon_sym___attribute__] = ACTIONS(4188), - [anon_sym___attribute] = ACTIONS(4188), - [anon_sym_using] = ACTIONS(4188), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), - [anon_sym___declspec] = ACTIONS(4188), - [anon_sym___based] = ACTIONS(4188), - [anon_sym___cdecl] = ACTIONS(4188), - [anon_sym___clrcall] = ACTIONS(4188), - [anon_sym___stdcall] = ACTIONS(4188), - [anon_sym___fastcall] = ACTIONS(4188), - [anon_sym___thiscall] = ACTIONS(4188), - [anon_sym___vectorcall] = ACTIONS(4188), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_RBRACE] = ACTIONS(4190), - [anon_sym_signed] = ACTIONS(4188), - [anon_sym_unsigned] = ACTIONS(4188), - [anon_sym_long] = ACTIONS(4188), - [anon_sym_short] = ACTIONS(4188), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_static] = ACTIONS(4188), - [anon_sym_register] = ACTIONS(4188), - [anon_sym_inline] = ACTIONS(4188), - [anon_sym___inline] = ACTIONS(4188), - [anon_sym___inline__] = ACTIONS(4188), - [anon_sym___forceinline] = ACTIONS(4188), - [anon_sym_thread_local] = ACTIONS(4188), - [anon_sym___thread] = ACTIONS(4188), - [anon_sym_const] = ACTIONS(4188), - [anon_sym_constexpr] = ACTIONS(4188), - [anon_sym_volatile] = ACTIONS(4188), - [anon_sym_restrict] = ACTIONS(4188), - [anon_sym___restrict__] = ACTIONS(4188), - [anon_sym__Atomic] = ACTIONS(4188), - [anon_sym__Noreturn] = ACTIONS(4188), - [anon_sym_noreturn] = ACTIONS(4188), - [anon_sym__Nonnull] = ACTIONS(4188), - [anon_sym_mutable] = ACTIONS(4188), - [anon_sym_constinit] = ACTIONS(4188), - [anon_sym_consteval] = ACTIONS(4188), - [anon_sym_alignas] = ACTIONS(4188), - [anon_sym__Alignas] = ACTIONS(4188), - [sym_primitive_type] = ACTIONS(4188), - [anon_sym_enum] = ACTIONS(4188), - [anon_sym_class] = ACTIONS(4188), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_union] = ACTIONS(4188), - [anon_sym_if] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_case] = ACTIONS(4188), - [anon_sym_default] = ACTIONS(4188), - [anon_sym_while] = ACTIONS(4188), - [anon_sym_do] = ACTIONS(4188), - [anon_sym_for] = ACTIONS(4188), - [anon_sym_return] = ACTIONS(4188), - [anon_sym_break] = ACTIONS(4188), - [anon_sym_continue] = ACTIONS(4188), - [anon_sym_goto] = ACTIONS(4188), - [anon_sym___try] = ACTIONS(4188), - [anon_sym___leave] = ACTIONS(4188), - [anon_sym_not] = ACTIONS(4188), - [anon_sym_compl] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_sizeof] = ACTIONS(4188), - [anon_sym___alignof__] = ACTIONS(4188), - [anon_sym___alignof] = ACTIONS(4188), - [anon_sym__alignof] = ACTIONS(4188), - [anon_sym_alignof] = ACTIONS(4188), - [anon_sym__Alignof] = ACTIONS(4188), - [anon_sym_offsetof] = ACTIONS(4188), - [anon_sym__Generic] = ACTIONS(4188), - [anon_sym_typename] = ACTIONS(4188), - [anon_sym_asm] = ACTIONS(4188), - [anon_sym___asm__] = ACTIONS(4188), - [anon_sym___asm] = ACTIONS(4188), - [sym_number_literal] = ACTIONS(4190), - [anon_sym_L_SQUOTE] = ACTIONS(4190), - [anon_sym_u_SQUOTE] = ACTIONS(4190), - [anon_sym_U_SQUOTE] = ACTIONS(4190), - [anon_sym_u8_SQUOTE] = ACTIONS(4190), - [anon_sym_SQUOTE] = ACTIONS(4190), - [anon_sym_L_DQUOTE] = ACTIONS(4190), - [anon_sym_u_DQUOTE] = ACTIONS(4190), - [anon_sym_U_DQUOTE] = ACTIONS(4190), - [anon_sym_u8_DQUOTE] = ACTIONS(4190), - [anon_sym_DQUOTE] = ACTIONS(4190), - [sym_true] = ACTIONS(4188), - [sym_false] = ACTIONS(4188), - [anon_sym_NULL] = ACTIONS(4188), - [anon_sym_nullptr] = ACTIONS(4188), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4188), - [anon_sym_decltype] = ACTIONS(4188), - [anon_sym_explicit] = ACTIONS(4188), - [anon_sym_export] = ACTIONS(4188), - [anon_sym_import] = ACTIONS(4188), - [anon_sym_template] = ACTIONS(4188), - [anon_sym_operator] = ACTIONS(4188), - [anon_sym_try] = ACTIONS(4188), - [anon_sym_delete] = ACTIONS(4188), - [anon_sym_throw] = ACTIONS(4188), - [anon_sym_namespace] = ACTIONS(4188), - [anon_sym_static_assert] = ACTIONS(4188), - [anon_sym_concept] = ACTIONS(4188), - [anon_sym_co_return] = ACTIONS(4188), - [anon_sym_co_yield] = ACTIONS(4188), - [anon_sym_R_DQUOTE] = ACTIONS(4190), - [anon_sym_LR_DQUOTE] = ACTIONS(4190), - [anon_sym_uR_DQUOTE] = ACTIONS(4190), - [anon_sym_UR_DQUOTE] = ACTIONS(4190), - [anon_sym_u8R_DQUOTE] = ACTIONS(4190), - [anon_sym_co_await] = ACTIONS(4188), - [anon_sym_new] = ACTIONS(4188), - [anon_sym_requires] = ACTIONS(4188), - [anon_sym_CARET_CARET] = ACTIONS(4190), - [anon_sym_LBRACK_COLON] = ACTIONS(4190), - [sym_this] = ACTIONS(4188), + [sym_identifier] = ACTIONS(3774), + [aux_sym_preproc_include_token1] = ACTIONS(3774), + [aux_sym_preproc_def_token1] = ACTIONS(3774), + [aux_sym_preproc_if_token1] = ACTIONS(3774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3774), + [sym_preproc_directive] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_BANG] = ACTIONS(3776), + [anon_sym_TILDE] = ACTIONS(3776), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(3776), + [anon_sym_AMP_AMP] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym___extension__] = ACTIONS(3774), + [anon_sym_typedef] = ACTIONS(3774), + [anon_sym_virtual] = ACTIONS(3774), + [anon_sym_extern] = ACTIONS(3774), + [anon_sym___attribute__] = ACTIONS(3774), + [anon_sym___attribute] = ACTIONS(3774), + [anon_sym_using] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3776), + [anon_sym___declspec] = ACTIONS(3774), + [anon_sym___based] = ACTIONS(3774), + [anon_sym___cdecl] = ACTIONS(3774), + [anon_sym___clrcall] = ACTIONS(3774), + [anon_sym___stdcall] = ACTIONS(3774), + [anon_sym___fastcall] = ACTIONS(3774), + [anon_sym___thiscall] = ACTIONS(3774), + [anon_sym___vectorcall] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_RBRACE] = ACTIONS(3776), + [anon_sym_signed] = ACTIONS(3774), + [anon_sym_unsigned] = ACTIONS(3774), + [anon_sym_long] = ACTIONS(3774), + [anon_sym_short] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_static] = ACTIONS(3774), + [anon_sym_register] = ACTIONS(3774), + [anon_sym_inline] = ACTIONS(3774), + [anon_sym___inline] = ACTIONS(3774), + [anon_sym___inline__] = ACTIONS(3774), + [anon_sym___forceinline] = ACTIONS(3774), + [anon_sym_thread_local] = ACTIONS(3774), + [anon_sym___thread] = ACTIONS(3774), + [anon_sym_const] = ACTIONS(3774), + [anon_sym_constexpr] = ACTIONS(3774), + [anon_sym_volatile] = ACTIONS(3774), + [anon_sym_restrict] = ACTIONS(3774), + [anon_sym___restrict__] = ACTIONS(3774), + [anon_sym__Atomic] = ACTIONS(3774), + [anon_sym__Noreturn] = ACTIONS(3774), + [anon_sym_noreturn] = ACTIONS(3774), + [anon_sym__Nonnull] = ACTIONS(3774), + [anon_sym_mutable] = ACTIONS(3774), + [anon_sym_constinit] = ACTIONS(3774), + [anon_sym_consteval] = ACTIONS(3774), + [anon_sym_alignas] = ACTIONS(3774), + [anon_sym__Alignas] = ACTIONS(3774), + [sym_primitive_type] = ACTIONS(3774), + [anon_sym_enum] = ACTIONS(3774), + [anon_sym_class] = ACTIONS(3774), + [anon_sym_struct] = ACTIONS(3774), + [anon_sym_union] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_switch] = ACTIONS(3774), + [anon_sym_case] = ACTIONS(3774), + [anon_sym_default] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_break] = ACTIONS(3774), + [anon_sym_continue] = ACTIONS(3774), + [anon_sym_goto] = ACTIONS(3774), + [anon_sym___try] = ACTIONS(3774), + [anon_sym___leave] = ACTIONS(3774), + [anon_sym_not] = ACTIONS(3774), + [anon_sym_compl] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3776), + [anon_sym_PLUS_PLUS] = ACTIONS(3776), + [anon_sym_sizeof] = ACTIONS(3774), + [anon_sym___alignof__] = ACTIONS(3774), + [anon_sym___alignof] = ACTIONS(3774), + [anon_sym__alignof] = ACTIONS(3774), + [anon_sym_alignof] = ACTIONS(3774), + [anon_sym__Alignof] = ACTIONS(3774), + [anon_sym_offsetof] = ACTIONS(3774), + [anon_sym__Generic] = ACTIONS(3774), + [anon_sym_typename] = ACTIONS(3774), + [anon_sym_asm] = ACTIONS(3774), + [anon_sym___asm__] = ACTIONS(3774), + [anon_sym___asm] = ACTIONS(3774), + [sym_number_literal] = ACTIONS(3776), + [anon_sym_L_SQUOTE] = ACTIONS(3776), + [anon_sym_u_SQUOTE] = ACTIONS(3776), + [anon_sym_U_SQUOTE] = ACTIONS(3776), + [anon_sym_u8_SQUOTE] = ACTIONS(3776), + [anon_sym_SQUOTE] = ACTIONS(3776), + [anon_sym_L_DQUOTE] = ACTIONS(3776), + [anon_sym_u_DQUOTE] = ACTIONS(3776), + [anon_sym_U_DQUOTE] = ACTIONS(3776), + [anon_sym_u8_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE] = ACTIONS(3776), + [sym_true] = ACTIONS(3774), + [sym_false] = ACTIONS(3774), + [anon_sym_NULL] = ACTIONS(3774), + [anon_sym_nullptr] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(3774), + [anon_sym_explicit] = ACTIONS(3774), + [anon_sym_export] = ACTIONS(3774), + [anon_sym_import] = ACTIONS(3774), + [anon_sym_template] = ACTIONS(3774), + [anon_sym_operator] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_throw] = ACTIONS(3774), + [anon_sym_namespace] = ACTIONS(3774), + [anon_sym_static_assert] = ACTIONS(3774), + [anon_sym_concept] = ACTIONS(3774), + [anon_sym_co_return] = ACTIONS(3774), + [anon_sym_co_yield] = ACTIONS(3774), + [anon_sym_R_DQUOTE] = ACTIONS(3776), + [anon_sym_LR_DQUOTE] = ACTIONS(3776), + [anon_sym_uR_DQUOTE] = ACTIONS(3776), + [anon_sym_UR_DQUOTE] = ACTIONS(3776), + [anon_sym_u8R_DQUOTE] = ACTIONS(3776), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_requires] = ACTIONS(3774), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(3776), + [sym_this] = ACTIONS(3774), }, [STATE(808)] = { - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_include_token1] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4192), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym___cdecl] = ACTIONS(4192), - [anon_sym___clrcall] = ACTIONS(4192), - [anon_sym___stdcall] = ACTIONS(4192), - [anon_sym___fastcall] = ACTIONS(4192), - [anon_sym___thiscall] = ACTIONS(4192), - [anon_sym___vectorcall] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4194), - [anon_sym_RBRACE] = ACTIONS(4194), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_if] = ACTIONS(4192), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_case] = ACTIONS(4192), - [anon_sym_default] = ACTIONS(4192), - [anon_sym_while] = ACTIONS(4192), - [anon_sym_do] = ACTIONS(4192), - [anon_sym_for] = ACTIONS(4192), - [anon_sym_return] = ACTIONS(4192), - [anon_sym_break] = ACTIONS(4192), - [anon_sym_continue] = ACTIONS(4192), - [anon_sym_goto] = ACTIONS(4192), - [anon_sym___try] = ACTIONS(4192), - [anon_sym___leave] = ACTIONS(4192), - [anon_sym_not] = ACTIONS(4192), - [anon_sym_compl] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4194), - [anon_sym_sizeof] = ACTIONS(4192), - [anon_sym___alignof__] = ACTIONS(4192), - [anon_sym___alignof] = ACTIONS(4192), - [anon_sym__alignof] = ACTIONS(4192), - [anon_sym_alignof] = ACTIONS(4192), - [anon_sym__Alignof] = ACTIONS(4192), - [anon_sym_offsetof] = ACTIONS(4192), - [anon_sym__Generic] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [anon_sym_asm] = ACTIONS(4192), - [anon_sym___asm__] = ACTIONS(4192), - [anon_sym___asm] = ACTIONS(4192), - [sym_number_literal] = ACTIONS(4194), - [anon_sym_L_SQUOTE] = ACTIONS(4194), - [anon_sym_u_SQUOTE] = ACTIONS(4194), - [anon_sym_U_SQUOTE] = ACTIONS(4194), - [anon_sym_u8_SQUOTE] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4194), - [anon_sym_L_DQUOTE] = ACTIONS(4194), - [anon_sym_u_DQUOTE] = ACTIONS(4194), - [anon_sym_U_DQUOTE] = ACTIONS(4194), - [anon_sym_u8_DQUOTE] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [sym_true] = ACTIONS(4192), - [sym_false] = ACTIONS(4192), - [anon_sym_NULL] = ACTIONS(4192), - [anon_sym_nullptr] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_export] = ACTIONS(4192), - [anon_sym_import] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_try] = ACTIONS(4192), - [anon_sym_delete] = ACTIONS(4192), - [anon_sym_throw] = ACTIONS(4192), - [anon_sym_namespace] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_concept] = ACTIONS(4192), - [anon_sym_co_return] = ACTIONS(4192), - [anon_sym_co_yield] = ACTIONS(4192), - [anon_sym_R_DQUOTE] = ACTIONS(4194), - [anon_sym_LR_DQUOTE] = ACTIONS(4194), - [anon_sym_uR_DQUOTE] = ACTIONS(4194), - [anon_sym_UR_DQUOTE] = ACTIONS(4194), - [anon_sym_u8R_DQUOTE] = ACTIONS(4194), - [anon_sym_co_await] = ACTIONS(4192), - [anon_sym_new] = ACTIONS(4192), - [anon_sym_requires] = ACTIONS(4192), - [anon_sym_CARET_CARET] = ACTIONS(4194), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - [sym_this] = ACTIONS(4192), + [sym_identifier] = ACTIONS(3778), + [aux_sym_preproc_include_token1] = ACTIONS(3778), + [aux_sym_preproc_def_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token1] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3778), + [sym_preproc_directive] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_TILDE] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_AMP_AMP] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym___extension__] = ACTIONS(3778), + [anon_sym_typedef] = ACTIONS(3778), + [anon_sym_virtual] = ACTIONS(3778), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym___attribute__] = ACTIONS(3778), + [anon_sym___attribute] = ACTIONS(3778), + [anon_sym_using] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3780), + [anon_sym___declspec] = ACTIONS(3778), + [anon_sym___based] = ACTIONS(3778), + [anon_sym___cdecl] = ACTIONS(3778), + [anon_sym___clrcall] = ACTIONS(3778), + [anon_sym___stdcall] = ACTIONS(3778), + [anon_sym___fastcall] = ACTIONS(3778), + [anon_sym___thiscall] = ACTIONS(3778), + [anon_sym___vectorcall] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3780), + [anon_sym_RBRACE] = ACTIONS(3780), + [anon_sym_signed] = ACTIONS(3778), + [anon_sym_unsigned] = ACTIONS(3778), + [anon_sym_long] = ACTIONS(3778), + [anon_sym_short] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym___inline] = ACTIONS(3778), + [anon_sym___inline__] = ACTIONS(3778), + [anon_sym___forceinline] = ACTIONS(3778), + [anon_sym_thread_local] = ACTIONS(3778), + [anon_sym___thread] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym___restrict__] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym__Noreturn] = ACTIONS(3778), + [anon_sym_noreturn] = ACTIONS(3778), + [anon_sym__Nonnull] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_constinit] = ACTIONS(3778), + [anon_sym_consteval] = ACTIONS(3778), + [anon_sym_alignas] = ACTIONS(3778), + [anon_sym__Alignas] = ACTIONS(3778), + [sym_primitive_type] = ACTIONS(3778), + [anon_sym_enum] = ACTIONS(3778), + [anon_sym_class] = ACTIONS(3778), + [anon_sym_struct] = ACTIONS(3778), + [anon_sym_union] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_switch] = ACTIONS(3778), + [anon_sym_case] = ACTIONS(3778), + [anon_sym_default] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_break] = ACTIONS(3778), + [anon_sym_continue] = ACTIONS(3778), + [anon_sym_goto] = ACTIONS(3778), + [anon_sym___try] = ACTIONS(3778), + [anon_sym___leave] = ACTIONS(3778), + [anon_sym_not] = ACTIONS(3778), + [anon_sym_compl] = ACTIONS(3778), + [anon_sym_DASH_DASH] = ACTIONS(3780), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_sizeof] = ACTIONS(3778), + [anon_sym___alignof__] = ACTIONS(3778), + [anon_sym___alignof] = ACTIONS(3778), + [anon_sym__alignof] = ACTIONS(3778), + [anon_sym_alignof] = ACTIONS(3778), + [anon_sym__Alignof] = ACTIONS(3778), + [anon_sym_offsetof] = ACTIONS(3778), + [anon_sym__Generic] = ACTIONS(3778), + [anon_sym_typename] = ACTIONS(3778), + [anon_sym_asm] = ACTIONS(3778), + [anon_sym___asm__] = ACTIONS(3778), + [anon_sym___asm] = ACTIONS(3778), + [sym_number_literal] = ACTIONS(3780), + [anon_sym_L_SQUOTE] = ACTIONS(3780), + [anon_sym_u_SQUOTE] = ACTIONS(3780), + [anon_sym_U_SQUOTE] = ACTIONS(3780), + [anon_sym_u8_SQUOTE] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_L_DQUOTE] = ACTIONS(3780), + [anon_sym_u_DQUOTE] = ACTIONS(3780), + [anon_sym_U_DQUOTE] = ACTIONS(3780), + [anon_sym_u8_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [sym_true] = ACTIONS(3778), + [sym_false] = ACTIONS(3778), + [anon_sym_NULL] = ACTIONS(3778), + [anon_sym_nullptr] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3778), + [anon_sym_decltype] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_export] = ACTIONS(3778), + [anon_sym_import] = ACTIONS(3778), + [anon_sym_template] = ACTIONS(3778), + [anon_sym_operator] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_delete] = ACTIONS(3778), + [anon_sym_throw] = ACTIONS(3778), + [anon_sym_namespace] = ACTIONS(3778), + [anon_sym_static_assert] = ACTIONS(3778), + [anon_sym_concept] = ACTIONS(3778), + [anon_sym_co_return] = ACTIONS(3778), + [anon_sym_co_yield] = ACTIONS(3778), + [anon_sym_R_DQUOTE] = ACTIONS(3780), + [anon_sym_LR_DQUOTE] = ACTIONS(3780), + [anon_sym_uR_DQUOTE] = ACTIONS(3780), + [anon_sym_UR_DQUOTE] = ACTIONS(3780), + [anon_sym_u8R_DQUOTE] = ACTIONS(3780), + [anon_sym_co_await] = ACTIONS(3778), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_requires] = ACTIONS(3778), + [anon_sym_CARET_CARET] = ACTIONS(3780), + [anon_sym_LBRACK_COLON] = ACTIONS(3780), + [sym_this] = ACTIONS(3778), }, [STATE(809)] = { - [sym_identifier] = ACTIONS(4208), - [aux_sym_preproc_include_token1] = ACTIONS(4208), - [aux_sym_preproc_def_token1] = ACTIONS(4208), - [aux_sym_preproc_if_token1] = ACTIONS(4208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4208), - [sym_preproc_directive] = ACTIONS(4208), - [anon_sym_LPAREN2] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_TILDE] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym___extension__] = ACTIONS(4208), - [anon_sym_typedef] = ACTIONS(4208), - [anon_sym_virtual] = ACTIONS(4208), - [anon_sym_extern] = ACTIONS(4208), - [anon_sym___attribute__] = ACTIONS(4208), - [anon_sym___attribute] = ACTIONS(4208), - [anon_sym_using] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4210), - [anon_sym___declspec] = ACTIONS(4208), - [anon_sym___based] = ACTIONS(4208), - [anon_sym___cdecl] = ACTIONS(4208), - [anon_sym___clrcall] = ACTIONS(4208), - [anon_sym___stdcall] = ACTIONS(4208), - [anon_sym___fastcall] = ACTIONS(4208), - [anon_sym___thiscall] = ACTIONS(4208), - [anon_sym___vectorcall] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4210), - [anon_sym_RBRACE] = ACTIONS(4210), - [anon_sym_signed] = ACTIONS(4208), - [anon_sym_unsigned] = ACTIONS(4208), - [anon_sym_long] = ACTIONS(4208), - [anon_sym_short] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_static] = ACTIONS(4208), - [anon_sym_register] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym___inline] = ACTIONS(4208), - [anon_sym___inline__] = ACTIONS(4208), - [anon_sym___forceinline] = ACTIONS(4208), - [anon_sym_thread_local] = ACTIONS(4208), - [anon_sym___thread] = ACTIONS(4208), - [anon_sym_const] = ACTIONS(4208), - [anon_sym_constexpr] = ACTIONS(4208), - [anon_sym_volatile] = ACTIONS(4208), - [anon_sym_restrict] = ACTIONS(4208), - [anon_sym___restrict__] = ACTIONS(4208), - [anon_sym__Atomic] = ACTIONS(4208), - [anon_sym__Noreturn] = ACTIONS(4208), - [anon_sym_noreturn] = ACTIONS(4208), - [anon_sym__Nonnull] = ACTIONS(4208), - [anon_sym_mutable] = ACTIONS(4208), - [anon_sym_constinit] = ACTIONS(4208), - [anon_sym_consteval] = ACTIONS(4208), - [anon_sym_alignas] = ACTIONS(4208), - [anon_sym__Alignas] = ACTIONS(4208), - [sym_primitive_type] = ACTIONS(4208), - [anon_sym_enum] = ACTIONS(4208), - [anon_sym_class] = ACTIONS(4208), - [anon_sym_struct] = ACTIONS(4208), - [anon_sym_union] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_switch] = ACTIONS(4208), - [anon_sym_case] = ACTIONS(4208), - [anon_sym_default] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_do] = ACTIONS(4208), - [anon_sym_for] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_goto] = ACTIONS(4208), - [anon_sym___try] = ACTIONS(4208), - [anon_sym___leave] = ACTIONS(4208), - [anon_sym_not] = ACTIONS(4208), - [anon_sym_compl] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_sizeof] = ACTIONS(4208), - [anon_sym___alignof__] = ACTIONS(4208), - [anon_sym___alignof] = ACTIONS(4208), - [anon_sym__alignof] = ACTIONS(4208), - [anon_sym_alignof] = ACTIONS(4208), - [anon_sym__Alignof] = ACTIONS(4208), - [anon_sym_offsetof] = ACTIONS(4208), - [anon_sym__Generic] = ACTIONS(4208), - [anon_sym_typename] = ACTIONS(4208), - [anon_sym_asm] = ACTIONS(4208), - [anon_sym___asm__] = ACTIONS(4208), - [anon_sym___asm] = ACTIONS(4208), - [sym_number_literal] = ACTIONS(4210), - [anon_sym_L_SQUOTE] = ACTIONS(4210), - [anon_sym_u_SQUOTE] = ACTIONS(4210), - [anon_sym_U_SQUOTE] = ACTIONS(4210), - [anon_sym_u8_SQUOTE] = ACTIONS(4210), - [anon_sym_SQUOTE] = ACTIONS(4210), - [anon_sym_L_DQUOTE] = ACTIONS(4210), - [anon_sym_u_DQUOTE] = ACTIONS(4210), - [anon_sym_U_DQUOTE] = ACTIONS(4210), - [anon_sym_u8_DQUOTE] = ACTIONS(4210), - [anon_sym_DQUOTE] = ACTIONS(4210), - [sym_true] = ACTIONS(4208), - [sym_false] = ACTIONS(4208), - [anon_sym_NULL] = ACTIONS(4208), - [anon_sym_nullptr] = ACTIONS(4208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4208), - [anon_sym_decltype] = ACTIONS(4208), - [anon_sym_explicit] = ACTIONS(4208), - [anon_sym_export] = ACTIONS(4208), - [anon_sym_import] = ACTIONS(4208), - [anon_sym_template] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_delete] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_namespace] = ACTIONS(4208), - [anon_sym_static_assert] = ACTIONS(4208), - [anon_sym_concept] = ACTIONS(4208), - [anon_sym_co_return] = ACTIONS(4208), - [anon_sym_co_yield] = ACTIONS(4208), - [anon_sym_R_DQUOTE] = ACTIONS(4210), - [anon_sym_LR_DQUOTE] = ACTIONS(4210), - [anon_sym_uR_DQUOTE] = ACTIONS(4210), - [anon_sym_UR_DQUOTE] = ACTIONS(4210), - [anon_sym_u8R_DQUOTE] = ACTIONS(4210), - [anon_sym_co_await] = ACTIONS(4208), - [anon_sym_new] = ACTIONS(4208), - [anon_sym_requires] = ACTIONS(4208), - [anon_sym_CARET_CARET] = ACTIONS(4210), - [anon_sym_LBRACK_COLON] = ACTIONS(4210), - [sym_this] = ACTIONS(4208), + [sym_identifier] = ACTIONS(3854), + [aux_sym_preproc_include_token1] = ACTIONS(3854), + [aux_sym_preproc_def_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token1] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3854), + [sym_preproc_directive] = ACTIONS(3854), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3856), + [anon_sym_TILDE] = ACTIONS(3856), + [anon_sym_DASH] = ACTIONS(3854), + [anon_sym_PLUS] = ACTIONS(3854), + [anon_sym_STAR] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + [anon_sym_SEMI] = ACTIONS(3856), + [anon_sym___extension__] = ACTIONS(3854), + [anon_sym_typedef] = ACTIONS(3854), + [anon_sym_virtual] = ACTIONS(3854), + [anon_sym_extern] = ACTIONS(3854), + [anon_sym___attribute__] = ACTIONS(3854), + [anon_sym___attribute] = ACTIONS(3854), + [anon_sym_using] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3856), + [anon_sym___declspec] = ACTIONS(3854), + [anon_sym___based] = ACTIONS(3854), + [anon_sym___cdecl] = ACTIONS(3854), + [anon_sym___clrcall] = ACTIONS(3854), + [anon_sym___stdcall] = ACTIONS(3854), + [anon_sym___fastcall] = ACTIONS(3854), + [anon_sym___thiscall] = ACTIONS(3854), + [anon_sym___vectorcall] = ACTIONS(3854), + [anon_sym_LBRACE] = ACTIONS(3856), + [anon_sym_RBRACE] = ACTIONS(3856), + [anon_sym_signed] = ACTIONS(3854), + [anon_sym_unsigned] = ACTIONS(3854), + [anon_sym_long] = ACTIONS(3854), + [anon_sym_short] = ACTIONS(3854), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_static] = ACTIONS(3854), + [anon_sym_register] = ACTIONS(3854), + [anon_sym_inline] = ACTIONS(3854), + [anon_sym___inline] = ACTIONS(3854), + [anon_sym___inline__] = ACTIONS(3854), + [anon_sym___forceinline] = ACTIONS(3854), + [anon_sym_thread_local] = ACTIONS(3854), + [anon_sym___thread] = ACTIONS(3854), + [anon_sym_const] = ACTIONS(3854), + [anon_sym_constexpr] = ACTIONS(3854), + [anon_sym_volatile] = ACTIONS(3854), + [anon_sym_restrict] = ACTIONS(3854), + [anon_sym___restrict__] = ACTIONS(3854), + [anon_sym__Atomic] = ACTIONS(3854), + [anon_sym__Noreturn] = ACTIONS(3854), + [anon_sym_noreturn] = ACTIONS(3854), + [anon_sym__Nonnull] = ACTIONS(3854), + [anon_sym_mutable] = ACTIONS(3854), + [anon_sym_constinit] = ACTIONS(3854), + [anon_sym_consteval] = ACTIONS(3854), + [anon_sym_alignas] = ACTIONS(3854), + [anon_sym__Alignas] = ACTIONS(3854), + [sym_primitive_type] = ACTIONS(3854), + [anon_sym_enum] = ACTIONS(3854), + [anon_sym_class] = ACTIONS(3854), + [anon_sym_struct] = ACTIONS(3854), + [anon_sym_union] = ACTIONS(3854), + [anon_sym_if] = ACTIONS(3854), + [anon_sym_switch] = ACTIONS(3854), + [anon_sym_case] = ACTIONS(3854), + [anon_sym_default] = ACTIONS(3854), + [anon_sym_while] = ACTIONS(3854), + [anon_sym_do] = ACTIONS(3854), + [anon_sym_for] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(3854), + [anon_sym_break] = ACTIONS(3854), + [anon_sym_continue] = ACTIONS(3854), + [anon_sym_goto] = ACTIONS(3854), + [anon_sym___try] = ACTIONS(3854), + [anon_sym___leave] = ACTIONS(3854), + [anon_sym_not] = ACTIONS(3854), + [anon_sym_compl] = ACTIONS(3854), + [anon_sym_DASH_DASH] = ACTIONS(3856), + [anon_sym_PLUS_PLUS] = ACTIONS(3856), + [anon_sym_sizeof] = ACTIONS(3854), + [anon_sym___alignof__] = ACTIONS(3854), + [anon_sym___alignof] = ACTIONS(3854), + [anon_sym__alignof] = ACTIONS(3854), + [anon_sym_alignof] = ACTIONS(3854), + [anon_sym__Alignof] = ACTIONS(3854), + [anon_sym_offsetof] = ACTIONS(3854), + [anon_sym__Generic] = ACTIONS(3854), + [anon_sym_typename] = ACTIONS(3854), + [anon_sym_asm] = ACTIONS(3854), + [anon_sym___asm__] = ACTIONS(3854), + [anon_sym___asm] = ACTIONS(3854), + [sym_number_literal] = ACTIONS(3856), + [anon_sym_L_SQUOTE] = ACTIONS(3856), + [anon_sym_u_SQUOTE] = ACTIONS(3856), + [anon_sym_U_SQUOTE] = ACTIONS(3856), + [anon_sym_u8_SQUOTE] = ACTIONS(3856), + [anon_sym_SQUOTE] = ACTIONS(3856), + [anon_sym_L_DQUOTE] = ACTIONS(3856), + [anon_sym_u_DQUOTE] = ACTIONS(3856), + [anon_sym_U_DQUOTE] = ACTIONS(3856), + [anon_sym_u8_DQUOTE] = ACTIONS(3856), + [anon_sym_DQUOTE] = ACTIONS(3856), + [sym_true] = ACTIONS(3854), + [sym_false] = ACTIONS(3854), + [anon_sym_NULL] = ACTIONS(3854), + [anon_sym_nullptr] = ACTIONS(3854), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3854), + [anon_sym_decltype] = ACTIONS(3854), + [anon_sym_explicit] = ACTIONS(3854), + [anon_sym_export] = ACTIONS(3854), + [anon_sym_import] = ACTIONS(3854), + [anon_sym_template] = ACTIONS(3854), + [anon_sym_operator] = ACTIONS(3854), + [anon_sym_try] = ACTIONS(3854), + [anon_sym_delete] = ACTIONS(3854), + [anon_sym_throw] = ACTIONS(3854), + [anon_sym_namespace] = ACTIONS(3854), + [anon_sym_static_assert] = ACTIONS(3854), + [anon_sym_concept] = ACTIONS(3854), + [anon_sym_co_return] = ACTIONS(3854), + [anon_sym_co_yield] = ACTIONS(3854), + [anon_sym_R_DQUOTE] = ACTIONS(3856), + [anon_sym_LR_DQUOTE] = ACTIONS(3856), + [anon_sym_uR_DQUOTE] = ACTIONS(3856), + [anon_sym_UR_DQUOTE] = ACTIONS(3856), + [anon_sym_u8R_DQUOTE] = ACTIONS(3856), + [anon_sym_co_await] = ACTIONS(3854), + [anon_sym_new] = ACTIONS(3854), + [anon_sym_requires] = ACTIONS(3854), + [anon_sym_CARET_CARET] = ACTIONS(3856), + [anon_sym_LBRACK_COLON] = ACTIONS(3856), + [sym_this] = ACTIONS(3854), }, [STATE(810)] = { - [sym_identifier] = ACTIONS(4212), - [aux_sym_preproc_include_token1] = ACTIONS(4212), - [aux_sym_preproc_def_token1] = ACTIONS(4212), - [aux_sym_preproc_if_token1] = ACTIONS(4212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4212), - [sym_preproc_directive] = ACTIONS(4212), - [anon_sym_LPAREN2] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_TILDE] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4212), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4212), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym___extension__] = ACTIONS(4212), - [anon_sym_typedef] = ACTIONS(4212), - [anon_sym_virtual] = ACTIONS(4212), - [anon_sym_extern] = ACTIONS(4212), - [anon_sym___attribute__] = ACTIONS(4212), - [anon_sym___attribute] = ACTIONS(4212), - [anon_sym_using] = ACTIONS(4212), - [anon_sym_COLON_COLON] = ACTIONS(4214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4214), - [anon_sym___declspec] = ACTIONS(4212), - [anon_sym___based] = ACTIONS(4212), - [anon_sym___cdecl] = ACTIONS(4212), - [anon_sym___clrcall] = ACTIONS(4212), - [anon_sym___stdcall] = ACTIONS(4212), - [anon_sym___fastcall] = ACTIONS(4212), - [anon_sym___thiscall] = ACTIONS(4212), - [anon_sym___vectorcall] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4214), - [anon_sym_signed] = ACTIONS(4212), - [anon_sym_unsigned] = ACTIONS(4212), - [anon_sym_long] = ACTIONS(4212), - [anon_sym_short] = ACTIONS(4212), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_static] = ACTIONS(4212), - [anon_sym_register] = ACTIONS(4212), - [anon_sym_inline] = ACTIONS(4212), - [anon_sym___inline] = ACTIONS(4212), - [anon_sym___inline__] = ACTIONS(4212), - [anon_sym___forceinline] = ACTIONS(4212), - [anon_sym_thread_local] = ACTIONS(4212), - [anon_sym___thread] = ACTIONS(4212), - [anon_sym_const] = ACTIONS(4212), - [anon_sym_constexpr] = ACTIONS(4212), - [anon_sym_volatile] = ACTIONS(4212), - [anon_sym_restrict] = ACTIONS(4212), - [anon_sym___restrict__] = ACTIONS(4212), - [anon_sym__Atomic] = ACTIONS(4212), - [anon_sym__Noreturn] = ACTIONS(4212), - [anon_sym_noreturn] = ACTIONS(4212), - [anon_sym__Nonnull] = ACTIONS(4212), - [anon_sym_mutable] = ACTIONS(4212), - [anon_sym_constinit] = ACTIONS(4212), - [anon_sym_consteval] = ACTIONS(4212), - [anon_sym_alignas] = ACTIONS(4212), - [anon_sym__Alignas] = ACTIONS(4212), - [sym_primitive_type] = ACTIONS(4212), - [anon_sym_enum] = ACTIONS(4212), - [anon_sym_class] = ACTIONS(4212), - [anon_sym_struct] = ACTIONS(4212), - [anon_sym_union] = ACTIONS(4212), - [anon_sym_if] = ACTIONS(4212), - [anon_sym_switch] = ACTIONS(4212), - [anon_sym_case] = ACTIONS(4212), - [anon_sym_default] = ACTIONS(4212), - [anon_sym_while] = ACTIONS(4212), - [anon_sym_do] = ACTIONS(4212), - [anon_sym_for] = ACTIONS(4212), - [anon_sym_return] = ACTIONS(4212), - [anon_sym_break] = ACTIONS(4212), - [anon_sym_continue] = ACTIONS(4212), - [anon_sym_goto] = ACTIONS(4212), - [anon_sym___try] = ACTIONS(4212), - [anon_sym___leave] = ACTIONS(4212), - [anon_sym_not] = ACTIONS(4212), - [anon_sym_compl] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4214), - [anon_sym_sizeof] = ACTIONS(4212), - [anon_sym___alignof__] = ACTIONS(4212), - [anon_sym___alignof] = ACTIONS(4212), - [anon_sym__alignof] = ACTIONS(4212), - [anon_sym_alignof] = ACTIONS(4212), - [anon_sym__Alignof] = ACTIONS(4212), - [anon_sym_offsetof] = ACTIONS(4212), - [anon_sym__Generic] = ACTIONS(4212), - [anon_sym_typename] = ACTIONS(4212), - [anon_sym_asm] = ACTIONS(4212), - [anon_sym___asm__] = ACTIONS(4212), - [anon_sym___asm] = ACTIONS(4212), - [sym_number_literal] = ACTIONS(4214), - [anon_sym_L_SQUOTE] = ACTIONS(4214), - [anon_sym_u_SQUOTE] = ACTIONS(4214), - [anon_sym_U_SQUOTE] = ACTIONS(4214), - [anon_sym_u8_SQUOTE] = ACTIONS(4214), - [anon_sym_SQUOTE] = ACTIONS(4214), - [anon_sym_L_DQUOTE] = ACTIONS(4214), - [anon_sym_u_DQUOTE] = ACTIONS(4214), - [anon_sym_U_DQUOTE] = ACTIONS(4214), - [anon_sym_u8_DQUOTE] = ACTIONS(4214), - [anon_sym_DQUOTE] = ACTIONS(4214), - [sym_true] = ACTIONS(4212), - [sym_false] = ACTIONS(4212), - [anon_sym_NULL] = ACTIONS(4212), - [anon_sym_nullptr] = ACTIONS(4212), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4212), - [anon_sym_decltype] = ACTIONS(4212), - [anon_sym_explicit] = ACTIONS(4212), - [anon_sym_export] = ACTIONS(4212), - [anon_sym_import] = ACTIONS(4212), - [anon_sym_template] = ACTIONS(4212), - [anon_sym_operator] = ACTIONS(4212), - [anon_sym_try] = ACTIONS(4212), - [anon_sym_delete] = ACTIONS(4212), - [anon_sym_throw] = ACTIONS(4212), - [anon_sym_namespace] = ACTIONS(4212), - [anon_sym_static_assert] = ACTIONS(4212), - [anon_sym_concept] = ACTIONS(4212), - [anon_sym_co_return] = ACTIONS(4212), - [anon_sym_co_yield] = ACTIONS(4212), - [anon_sym_R_DQUOTE] = ACTIONS(4214), - [anon_sym_LR_DQUOTE] = ACTIONS(4214), - [anon_sym_uR_DQUOTE] = ACTIONS(4214), - [anon_sym_UR_DQUOTE] = ACTIONS(4214), - [anon_sym_u8R_DQUOTE] = ACTIONS(4214), - [anon_sym_co_await] = ACTIONS(4212), - [anon_sym_new] = ACTIONS(4212), - [anon_sym_requires] = ACTIONS(4212), - [anon_sym_CARET_CARET] = ACTIONS(4214), - [anon_sym_LBRACK_COLON] = ACTIONS(4214), - [sym_this] = ACTIONS(4212), + [sym_identifier] = ACTIONS(3909), + [aux_sym_preproc_include_token1] = ACTIONS(3909), + [aux_sym_preproc_def_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token1] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3909), + [sym_preproc_directive] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(3911), + [anon_sym_TILDE] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym___extension__] = ACTIONS(3909), + [anon_sym_typedef] = ACTIONS(3909), + [anon_sym_virtual] = ACTIONS(3909), + [anon_sym_extern] = ACTIONS(3909), + [anon_sym___attribute__] = ACTIONS(3909), + [anon_sym___attribute] = ACTIONS(3909), + [anon_sym_using] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(3911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3911), + [anon_sym___declspec] = ACTIONS(3909), + [anon_sym___based] = ACTIONS(3909), + [anon_sym___cdecl] = ACTIONS(3909), + [anon_sym___clrcall] = ACTIONS(3909), + [anon_sym___stdcall] = ACTIONS(3909), + [anon_sym___fastcall] = ACTIONS(3909), + [anon_sym___thiscall] = ACTIONS(3909), + [anon_sym___vectorcall] = ACTIONS(3909), + [anon_sym_LBRACE] = ACTIONS(3911), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_signed] = ACTIONS(3909), + [anon_sym_unsigned] = ACTIONS(3909), + [anon_sym_long] = ACTIONS(3909), + [anon_sym_short] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_static] = ACTIONS(3909), + [anon_sym_register] = ACTIONS(3909), + [anon_sym_inline] = ACTIONS(3909), + [anon_sym___inline] = ACTIONS(3909), + [anon_sym___inline__] = ACTIONS(3909), + [anon_sym___forceinline] = ACTIONS(3909), + [anon_sym_thread_local] = ACTIONS(3909), + [anon_sym___thread] = ACTIONS(3909), + [anon_sym_const] = ACTIONS(3909), + [anon_sym_constexpr] = ACTIONS(3909), + [anon_sym_volatile] = ACTIONS(3909), + [anon_sym_restrict] = ACTIONS(3909), + [anon_sym___restrict__] = ACTIONS(3909), + [anon_sym__Atomic] = ACTIONS(3909), + [anon_sym__Noreturn] = ACTIONS(3909), + [anon_sym_noreturn] = ACTIONS(3909), + [anon_sym__Nonnull] = ACTIONS(3909), + [anon_sym_mutable] = ACTIONS(3909), + [anon_sym_constinit] = ACTIONS(3909), + [anon_sym_consteval] = ACTIONS(3909), + [anon_sym_alignas] = ACTIONS(3909), + [anon_sym__Alignas] = ACTIONS(3909), + [sym_primitive_type] = ACTIONS(3909), + [anon_sym_enum] = ACTIONS(3909), + [anon_sym_class] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(3909), + [anon_sym_union] = ACTIONS(3909), + [anon_sym_if] = ACTIONS(3909), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_case] = ACTIONS(3909), + [anon_sym_default] = ACTIONS(3909), + [anon_sym_while] = ACTIONS(3909), + [anon_sym_do] = ACTIONS(3909), + [anon_sym_for] = ACTIONS(3909), + [anon_sym_return] = ACTIONS(3909), + [anon_sym_break] = ACTIONS(3909), + [anon_sym_continue] = ACTIONS(3909), + [anon_sym_goto] = ACTIONS(3909), + [anon_sym___try] = ACTIONS(3909), + [anon_sym___leave] = ACTIONS(3909), + [anon_sym_not] = ACTIONS(3909), + [anon_sym_compl] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_sizeof] = ACTIONS(3909), + [anon_sym___alignof__] = ACTIONS(3909), + [anon_sym___alignof] = ACTIONS(3909), + [anon_sym__alignof] = ACTIONS(3909), + [anon_sym_alignof] = ACTIONS(3909), + [anon_sym__Alignof] = ACTIONS(3909), + [anon_sym_offsetof] = ACTIONS(3909), + [anon_sym__Generic] = ACTIONS(3909), + [anon_sym_typename] = ACTIONS(3909), + [anon_sym_asm] = ACTIONS(3909), + [anon_sym___asm__] = ACTIONS(3909), + [anon_sym___asm] = ACTIONS(3909), + [sym_number_literal] = ACTIONS(3911), + [anon_sym_L_SQUOTE] = ACTIONS(3911), + [anon_sym_u_SQUOTE] = ACTIONS(3911), + [anon_sym_U_SQUOTE] = ACTIONS(3911), + [anon_sym_u8_SQUOTE] = ACTIONS(3911), + [anon_sym_SQUOTE] = ACTIONS(3911), + [anon_sym_L_DQUOTE] = ACTIONS(3911), + [anon_sym_u_DQUOTE] = ACTIONS(3911), + [anon_sym_U_DQUOTE] = ACTIONS(3911), + [anon_sym_u8_DQUOTE] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [anon_sym_NULL] = ACTIONS(3909), + [anon_sym_nullptr] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3909), + [anon_sym_decltype] = ACTIONS(3909), + [anon_sym_explicit] = ACTIONS(3909), + [anon_sym_export] = ACTIONS(3909), + [anon_sym_import] = ACTIONS(3909), + [anon_sym_template] = ACTIONS(3909), + [anon_sym_operator] = ACTIONS(3909), + [anon_sym_try] = ACTIONS(3909), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_throw] = ACTIONS(3909), + [anon_sym_namespace] = ACTIONS(3909), + [anon_sym_static_assert] = ACTIONS(3909), + [anon_sym_concept] = ACTIONS(3909), + [anon_sym_co_return] = ACTIONS(3909), + [anon_sym_co_yield] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3909), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3909), + [anon_sym_CARET_CARET] = ACTIONS(3911), + [anon_sym_LBRACK_COLON] = ACTIONS(3911), + [sym_this] = ACTIONS(3909), }, [STATE(811)] = { - [sym_identifier] = ACTIONS(4112), - [aux_sym_preproc_include_token1] = ACTIONS(4112), - [aux_sym_preproc_def_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token1] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), - [sym_preproc_directive] = ACTIONS(4112), - [anon_sym_LPAREN2] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_TILDE] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym___extension__] = ACTIONS(4112), - [anon_sym_typedef] = ACTIONS(4112), - [anon_sym_virtual] = ACTIONS(4112), - [anon_sym_extern] = ACTIONS(4112), - [anon_sym___attribute__] = ACTIONS(4112), - [anon_sym___attribute] = ACTIONS(4112), - [anon_sym_using] = ACTIONS(4112), - [anon_sym_COLON_COLON] = ACTIONS(4114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), - [anon_sym___declspec] = ACTIONS(4112), - [anon_sym___based] = ACTIONS(4112), - [anon_sym___cdecl] = ACTIONS(4112), - [anon_sym___clrcall] = ACTIONS(4112), - [anon_sym___stdcall] = ACTIONS(4112), - [anon_sym___fastcall] = ACTIONS(4112), - [anon_sym___thiscall] = ACTIONS(4112), - [anon_sym___vectorcall] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_RBRACE] = ACTIONS(4114), - [anon_sym_signed] = ACTIONS(4112), - [anon_sym_unsigned] = ACTIONS(4112), - [anon_sym_long] = ACTIONS(4112), - [anon_sym_short] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_static] = ACTIONS(4112), - [anon_sym_register] = ACTIONS(4112), - [anon_sym_inline] = ACTIONS(4112), - [anon_sym___inline] = ACTIONS(4112), - [anon_sym___inline__] = ACTIONS(4112), - [anon_sym___forceinline] = ACTIONS(4112), - [anon_sym_thread_local] = ACTIONS(4112), - [anon_sym___thread] = ACTIONS(4112), - [anon_sym_const] = ACTIONS(4112), - [anon_sym_constexpr] = ACTIONS(4112), - [anon_sym_volatile] = ACTIONS(4112), - [anon_sym_restrict] = ACTIONS(4112), - [anon_sym___restrict__] = ACTIONS(4112), - [anon_sym__Atomic] = ACTIONS(4112), - [anon_sym__Noreturn] = ACTIONS(4112), - [anon_sym_noreturn] = ACTIONS(4112), - [anon_sym__Nonnull] = ACTIONS(4112), - [anon_sym_mutable] = ACTIONS(4112), - [anon_sym_constinit] = ACTIONS(4112), - [anon_sym_consteval] = ACTIONS(4112), - [anon_sym_alignas] = ACTIONS(4112), - [anon_sym__Alignas] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(4112), - [anon_sym_enum] = ACTIONS(4112), - [anon_sym_class] = ACTIONS(4112), - [anon_sym_struct] = ACTIONS(4112), - [anon_sym_union] = ACTIONS(4112), - [anon_sym_if] = ACTIONS(4112), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_case] = ACTIONS(4112), - [anon_sym_default] = ACTIONS(4112), - [anon_sym_while] = ACTIONS(4112), - [anon_sym_do] = ACTIONS(4112), - [anon_sym_for] = ACTIONS(4112), - [anon_sym_return] = ACTIONS(4112), - [anon_sym_break] = ACTIONS(4112), - [anon_sym_continue] = ACTIONS(4112), - [anon_sym_goto] = ACTIONS(4112), - [anon_sym___try] = ACTIONS(4112), - [anon_sym___leave] = ACTIONS(4112), - [anon_sym_not] = ACTIONS(4112), - [anon_sym_compl] = ACTIONS(4112), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_PLUS_PLUS] = ACTIONS(4114), - [anon_sym_sizeof] = ACTIONS(4112), - [anon_sym___alignof__] = ACTIONS(4112), - [anon_sym___alignof] = ACTIONS(4112), - [anon_sym__alignof] = ACTIONS(4112), - [anon_sym_alignof] = ACTIONS(4112), - [anon_sym__Alignof] = ACTIONS(4112), - [anon_sym_offsetof] = ACTIONS(4112), - [anon_sym__Generic] = ACTIONS(4112), - [anon_sym_typename] = ACTIONS(4112), - [anon_sym_asm] = ACTIONS(4112), - [anon_sym___asm__] = ACTIONS(4112), - [anon_sym___asm] = ACTIONS(4112), - [sym_number_literal] = ACTIONS(4114), - [anon_sym_L_SQUOTE] = ACTIONS(4114), - [anon_sym_u_SQUOTE] = ACTIONS(4114), - [anon_sym_U_SQUOTE] = ACTIONS(4114), - [anon_sym_u8_SQUOTE] = ACTIONS(4114), - [anon_sym_SQUOTE] = ACTIONS(4114), - [anon_sym_L_DQUOTE] = ACTIONS(4114), - [anon_sym_u_DQUOTE] = ACTIONS(4114), - [anon_sym_U_DQUOTE] = ACTIONS(4114), - [anon_sym_u8_DQUOTE] = ACTIONS(4114), - [anon_sym_DQUOTE] = ACTIONS(4114), - [sym_true] = ACTIONS(4112), - [sym_false] = ACTIONS(4112), - [anon_sym_NULL] = ACTIONS(4112), - [anon_sym_nullptr] = ACTIONS(4112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4112), - [anon_sym_decltype] = ACTIONS(4112), - [anon_sym_explicit] = ACTIONS(4112), - [anon_sym_export] = ACTIONS(4112), - [anon_sym_import] = ACTIONS(4112), - [anon_sym_template] = ACTIONS(4112), - [anon_sym_operator] = ACTIONS(4112), - [anon_sym_try] = ACTIONS(4112), - [anon_sym_delete] = ACTIONS(4112), - [anon_sym_throw] = ACTIONS(4112), - [anon_sym_namespace] = ACTIONS(4112), - [anon_sym_static_assert] = ACTIONS(4112), - [anon_sym_concept] = ACTIONS(4112), - [anon_sym_co_return] = ACTIONS(4112), - [anon_sym_co_yield] = ACTIONS(4112), - [anon_sym_R_DQUOTE] = ACTIONS(4114), - [anon_sym_LR_DQUOTE] = ACTIONS(4114), - [anon_sym_uR_DQUOTE] = ACTIONS(4114), - [anon_sym_UR_DQUOTE] = ACTIONS(4114), - [anon_sym_u8R_DQUOTE] = ACTIONS(4114), - [anon_sym_co_await] = ACTIONS(4112), - [anon_sym_new] = ACTIONS(4112), - [anon_sym_requires] = ACTIONS(4112), - [anon_sym_CARET_CARET] = ACTIONS(4114), - [anon_sym_LBRACK_COLON] = ACTIONS(4114), - [sym_this] = ACTIONS(4112), + [sym_identifier] = ACTIONS(3913), + [aux_sym_preproc_include_token1] = ACTIONS(3913), + [aux_sym_preproc_def_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token1] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3913), + [sym_preproc_directive] = ACTIONS(3913), + [anon_sym_LPAREN2] = ACTIONS(3915), + [anon_sym_BANG] = ACTIONS(3915), + [anon_sym_TILDE] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym___extension__] = ACTIONS(3913), + [anon_sym_typedef] = ACTIONS(3913), + [anon_sym_virtual] = ACTIONS(3913), + [anon_sym_extern] = ACTIONS(3913), + [anon_sym___attribute__] = ACTIONS(3913), + [anon_sym___attribute] = ACTIONS(3913), + [anon_sym_using] = ACTIONS(3913), + [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3915), + [anon_sym___declspec] = ACTIONS(3913), + [anon_sym___based] = ACTIONS(3913), + [anon_sym___cdecl] = ACTIONS(3913), + [anon_sym___clrcall] = ACTIONS(3913), + [anon_sym___stdcall] = ACTIONS(3913), + [anon_sym___fastcall] = ACTIONS(3913), + [anon_sym___thiscall] = ACTIONS(3913), + [anon_sym___vectorcall] = ACTIONS(3913), + [anon_sym_LBRACE] = ACTIONS(3915), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_signed] = ACTIONS(3913), + [anon_sym_unsigned] = ACTIONS(3913), + [anon_sym_long] = ACTIONS(3913), + [anon_sym_short] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(3913), + [anon_sym_static] = ACTIONS(3913), + [anon_sym_register] = ACTIONS(3913), + [anon_sym_inline] = ACTIONS(3913), + [anon_sym___inline] = ACTIONS(3913), + [anon_sym___inline__] = ACTIONS(3913), + [anon_sym___forceinline] = ACTIONS(3913), + [anon_sym_thread_local] = ACTIONS(3913), + [anon_sym___thread] = ACTIONS(3913), + [anon_sym_const] = ACTIONS(3913), + [anon_sym_constexpr] = ACTIONS(3913), + [anon_sym_volatile] = ACTIONS(3913), + [anon_sym_restrict] = ACTIONS(3913), + [anon_sym___restrict__] = ACTIONS(3913), + [anon_sym__Atomic] = ACTIONS(3913), + [anon_sym__Noreturn] = ACTIONS(3913), + [anon_sym_noreturn] = ACTIONS(3913), + [anon_sym__Nonnull] = ACTIONS(3913), + [anon_sym_mutable] = ACTIONS(3913), + [anon_sym_constinit] = ACTIONS(3913), + [anon_sym_consteval] = ACTIONS(3913), + [anon_sym_alignas] = ACTIONS(3913), + [anon_sym__Alignas] = ACTIONS(3913), + [sym_primitive_type] = ACTIONS(3913), + [anon_sym_enum] = ACTIONS(3913), + [anon_sym_class] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(3913), + [anon_sym_union] = ACTIONS(3913), + [anon_sym_if] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_case] = ACTIONS(3913), + [anon_sym_default] = ACTIONS(3913), + [anon_sym_while] = ACTIONS(3913), + [anon_sym_do] = ACTIONS(3913), + [anon_sym_for] = ACTIONS(3913), + [anon_sym_return] = ACTIONS(3913), + [anon_sym_break] = ACTIONS(3913), + [anon_sym_continue] = ACTIONS(3913), + [anon_sym_goto] = ACTIONS(3913), + [anon_sym___try] = ACTIONS(3913), + [anon_sym___leave] = ACTIONS(3913), + [anon_sym_not] = ACTIONS(3913), + [anon_sym_compl] = ACTIONS(3913), + [anon_sym_DASH_DASH] = ACTIONS(3915), + [anon_sym_PLUS_PLUS] = ACTIONS(3915), + [anon_sym_sizeof] = ACTIONS(3913), + [anon_sym___alignof__] = ACTIONS(3913), + [anon_sym___alignof] = ACTIONS(3913), + [anon_sym__alignof] = ACTIONS(3913), + [anon_sym_alignof] = ACTIONS(3913), + [anon_sym__Alignof] = ACTIONS(3913), + [anon_sym_offsetof] = ACTIONS(3913), + [anon_sym__Generic] = ACTIONS(3913), + [anon_sym_typename] = ACTIONS(3913), + [anon_sym_asm] = ACTIONS(3913), + [anon_sym___asm__] = ACTIONS(3913), + [anon_sym___asm] = ACTIONS(3913), + [sym_number_literal] = ACTIONS(3915), + [anon_sym_L_SQUOTE] = ACTIONS(3915), + [anon_sym_u_SQUOTE] = ACTIONS(3915), + [anon_sym_U_SQUOTE] = ACTIONS(3915), + [anon_sym_u8_SQUOTE] = ACTIONS(3915), + [anon_sym_SQUOTE] = ACTIONS(3915), + [anon_sym_L_DQUOTE] = ACTIONS(3915), + [anon_sym_u_DQUOTE] = ACTIONS(3915), + [anon_sym_U_DQUOTE] = ACTIONS(3915), + [anon_sym_u8_DQUOTE] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [sym_true] = ACTIONS(3913), + [sym_false] = ACTIONS(3913), + [anon_sym_NULL] = ACTIONS(3913), + [anon_sym_nullptr] = ACTIONS(3913), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3913), + [anon_sym_decltype] = ACTIONS(3913), + [anon_sym_explicit] = ACTIONS(3913), + [anon_sym_export] = ACTIONS(3913), + [anon_sym_import] = ACTIONS(3913), + [anon_sym_template] = ACTIONS(3913), + [anon_sym_operator] = ACTIONS(3913), + [anon_sym_try] = ACTIONS(3913), + [anon_sym_delete] = ACTIONS(3913), + [anon_sym_throw] = ACTIONS(3913), + [anon_sym_namespace] = ACTIONS(3913), + [anon_sym_static_assert] = ACTIONS(3913), + [anon_sym_concept] = ACTIONS(3913), + [anon_sym_co_return] = ACTIONS(3913), + [anon_sym_co_yield] = ACTIONS(3913), + [anon_sym_R_DQUOTE] = ACTIONS(3915), + [anon_sym_LR_DQUOTE] = ACTIONS(3915), + [anon_sym_uR_DQUOTE] = ACTIONS(3915), + [anon_sym_UR_DQUOTE] = ACTIONS(3915), + [anon_sym_u8R_DQUOTE] = ACTIONS(3915), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3913), + [anon_sym_requires] = ACTIONS(3913), + [anon_sym_CARET_CARET] = ACTIONS(3915), + [anon_sym_LBRACK_COLON] = ACTIONS(3915), + [sym_this] = ACTIONS(3913), }, [STATE(812)] = { - [sym_identifier] = ACTIONS(4040), - [aux_sym_preproc_include_token1] = ACTIONS(4040), - [aux_sym_preproc_def_token1] = ACTIONS(4040), - [aux_sym_preproc_if_token1] = ACTIONS(4040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4040), - [sym_preproc_directive] = ACTIONS(4040), - [anon_sym_LPAREN2] = ACTIONS(4042), - [anon_sym_BANG] = ACTIONS(4042), - [anon_sym_TILDE] = ACTIONS(4042), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym___extension__] = ACTIONS(4040), - [anon_sym_typedef] = ACTIONS(4040), - [anon_sym_virtual] = ACTIONS(4040), - [anon_sym_extern] = ACTIONS(4040), - [anon_sym___attribute__] = ACTIONS(4040), - [anon_sym___attribute] = ACTIONS(4040), - [anon_sym_using] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4042), - [anon_sym___declspec] = ACTIONS(4040), - [anon_sym___based] = ACTIONS(4040), - [anon_sym___cdecl] = ACTIONS(4040), - [anon_sym___clrcall] = ACTIONS(4040), - [anon_sym___stdcall] = ACTIONS(4040), - [anon_sym___fastcall] = ACTIONS(4040), - [anon_sym___thiscall] = ACTIONS(4040), - [anon_sym___vectorcall] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_RBRACE] = ACTIONS(4042), - [anon_sym_signed] = ACTIONS(4040), - [anon_sym_unsigned] = ACTIONS(4040), - [anon_sym_long] = ACTIONS(4040), - [anon_sym_short] = ACTIONS(4040), - [anon_sym_LBRACK] = ACTIONS(4040), - [anon_sym_static] = ACTIONS(4040), - [anon_sym_register] = ACTIONS(4040), - [anon_sym_inline] = ACTIONS(4040), - [anon_sym___inline] = ACTIONS(4040), - [anon_sym___inline__] = ACTIONS(4040), - [anon_sym___forceinline] = ACTIONS(4040), - [anon_sym_thread_local] = ACTIONS(4040), - [anon_sym___thread] = ACTIONS(4040), - [anon_sym_const] = ACTIONS(4040), - [anon_sym_constexpr] = ACTIONS(4040), - [anon_sym_volatile] = ACTIONS(4040), - [anon_sym_restrict] = ACTIONS(4040), - [anon_sym___restrict__] = ACTIONS(4040), - [anon_sym__Atomic] = ACTIONS(4040), - [anon_sym__Noreturn] = ACTIONS(4040), - [anon_sym_noreturn] = ACTIONS(4040), - [anon_sym__Nonnull] = ACTIONS(4040), - [anon_sym_mutable] = ACTIONS(4040), - [anon_sym_constinit] = ACTIONS(4040), - [anon_sym_consteval] = ACTIONS(4040), - [anon_sym_alignas] = ACTIONS(4040), - [anon_sym__Alignas] = ACTIONS(4040), - [sym_primitive_type] = ACTIONS(4040), - [anon_sym_enum] = ACTIONS(4040), - [anon_sym_class] = ACTIONS(4040), - [anon_sym_struct] = ACTIONS(4040), - [anon_sym_union] = ACTIONS(4040), - [anon_sym_if] = ACTIONS(4040), - [anon_sym_switch] = ACTIONS(4040), - [anon_sym_case] = ACTIONS(4040), - [anon_sym_default] = ACTIONS(4040), - [anon_sym_while] = ACTIONS(4040), - [anon_sym_do] = ACTIONS(4040), - [anon_sym_for] = ACTIONS(4040), - [anon_sym_return] = ACTIONS(4040), - [anon_sym_break] = ACTIONS(4040), - [anon_sym_continue] = ACTIONS(4040), - [anon_sym_goto] = ACTIONS(4040), - [anon_sym___try] = ACTIONS(4040), - [anon_sym___leave] = ACTIONS(4040), - [anon_sym_not] = ACTIONS(4040), - [anon_sym_compl] = ACTIONS(4040), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_sizeof] = ACTIONS(4040), - [anon_sym___alignof__] = ACTIONS(4040), - [anon_sym___alignof] = ACTIONS(4040), - [anon_sym__alignof] = ACTIONS(4040), - [anon_sym_alignof] = ACTIONS(4040), - [anon_sym__Alignof] = ACTIONS(4040), - [anon_sym_offsetof] = ACTIONS(4040), - [anon_sym__Generic] = ACTIONS(4040), - [anon_sym_typename] = ACTIONS(4040), - [anon_sym_asm] = ACTIONS(4040), - [anon_sym___asm__] = ACTIONS(4040), - [anon_sym___asm] = ACTIONS(4040), - [sym_number_literal] = ACTIONS(4042), - [anon_sym_L_SQUOTE] = ACTIONS(4042), - [anon_sym_u_SQUOTE] = ACTIONS(4042), - [anon_sym_U_SQUOTE] = ACTIONS(4042), - [anon_sym_u8_SQUOTE] = ACTIONS(4042), - [anon_sym_SQUOTE] = ACTIONS(4042), - [anon_sym_L_DQUOTE] = ACTIONS(4042), - [anon_sym_u_DQUOTE] = ACTIONS(4042), - [anon_sym_U_DQUOTE] = ACTIONS(4042), - [anon_sym_u8_DQUOTE] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4042), - [sym_true] = ACTIONS(4040), - [sym_false] = ACTIONS(4040), - [anon_sym_NULL] = ACTIONS(4040), - [anon_sym_nullptr] = ACTIONS(4040), + [sym_identifier] = ACTIONS(3917), + [aux_sym_preproc_include_token1] = ACTIONS(3917), + [aux_sym_preproc_def_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), + [sym_preproc_directive] = ACTIONS(3917), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_BANG] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_PLUS] = ACTIONS(3917), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_typedef] = ACTIONS(3917), + [anon_sym_virtual] = ACTIONS(3917), + [anon_sym_extern] = ACTIONS(3917), + [anon_sym___attribute__] = ACTIONS(3917), + [anon_sym___attribute] = ACTIONS(3917), + [anon_sym_using] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(3919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), + [anon_sym___declspec] = ACTIONS(3917), + [anon_sym___based] = ACTIONS(3917), + [anon_sym___cdecl] = ACTIONS(3917), + [anon_sym___clrcall] = ACTIONS(3917), + [anon_sym___stdcall] = ACTIONS(3917), + [anon_sym___fastcall] = ACTIONS(3917), + [anon_sym___thiscall] = ACTIONS(3917), + [anon_sym___vectorcall] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_RBRACE] = ACTIONS(3919), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(3917), + [anon_sym_register] = ACTIONS(3917), + [anon_sym_inline] = ACTIONS(3917), + [anon_sym___inline] = ACTIONS(3917), + [anon_sym___inline__] = ACTIONS(3917), + [anon_sym___forceinline] = ACTIONS(3917), + [anon_sym_thread_local] = ACTIONS(3917), + [anon_sym___thread] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_constexpr] = ACTIONS(3917), + [anon_sym_volatile] = ACTIONS(3917), + [anon_sym_restrict] = ACTIONS(3917), + [anon_sym___restrict__] = ACTIONS(3917), + [anon_sym__Atomic] = ACTIONS(3917), + [anon_sym__Noreturn] = ACTIONS(3917), + [anon_sym_noreturn] = ACTIONS(3917), + [anon_sym__Nonnull] = ACTIONS(3917), + [anon_sym_mutable] = ACTIONS(3917), + [anon_sym_constinit] = ACTIONS(3917), + [anon_sym_consteval] = ACTIONS(3917), + [anon_sym_alignas] = ACTIONS(3917), + [anon_sym__Alignas] = ACTIONS(3917), + [sym_primitive_type] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_if] = ACTIONS(3917), + [anon_sym_switch] = ACTIONS(3917), + [anon_sym_case] = ACTIONS(3917), + [anon_sym_default] = ACTIONS(3917), + [anon_sym_while] = ACTIONS(3917), + [anon_sym_do] = ACTIONS(3917), + [anon_sym_for] = ACTIONS(3917), + [anon_sym_return] = ACTIONS(3917), + [anon_sym_break] = ACTIONS(3917), + [anon_sym_continue] = ACTIONS(3917), + [anon_sym_goto] = ACTIONS(3917), + [anon_sym___try] = ACTIONS(3917), + [anon_sym___leave] = ACTIONS(3917), + [anon_sym_not] = ACTIONS(3917), + [anon_sym_compl] = ACTIONS(3917), + [anon_sym_DASH_DASH] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(3919), + [anon_sym_sizeof] = ACTIONS(3917), + [anon_sym___alignof__] = ACTIONS(3917), + [anon_sym___alignof] = ACTIONS(3917), + [anon_sym__alignof] = ACTIONS(3917), + [anon_sym_alignof] = ACTIONS(3917), + [anon_sym__Alignof] = ACTIONS(3917), + [anon_sym_offsetof] = ACTIONS(3917), + [anon_sym__Generic] = ACTIONS(3917), + [anon_sym_typename] = ACTIONS(3917), + [anon_sym_asm] = ACTIONS(3917), + [anon_sym___asm__] = ACTIONS(3917), + [anon_sym___asm] = ACTIONS(3917), + [sym_number_literal] = ACTIONS(3919), + [anon_sym_L_SQUOTE] = ACTIONS(3919), + [anon_sym_u_SQUOTE] = ACTIONS(3919), + [anon_sym_U_SQUOTE] = ACTIONS(3919), + [anon_sym_u8_SQUOTE] = ACTIONS(3919), + [anon_sym_SQUOTE] = ACTIONS(3919), + [anon_sym_L_DQUOTE] = ACTIONS(3919), + [anon_sym_u_DQUOTE] = ACTIONS(3919), + [anon_sym_U_DQUOTE] = ACTIONS(3919), + [anon_sym_u8_DQUOTE] = ACTIONS(3919), + [anon_sym_DQUOTE] = ACTIONS(3919), + [sym_true] = ACTIONS(3917), + [sym_false] = ACTIONS(3917), + [anon_sym_NULL] = ACTIONS(3917), + [anon_sym_nullptr] = ACTIONS(3917), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4040), - [anon_sym_decltype] = ACTIONS(4040), - [anon_sym_explicit] = ACTIONS(4040), - [anon_sym_export] = ACTIONS(4040), - [anon_sym_import] = ACTIONS(4040), - [anon_sym_template] = ACTIONS(4040), - [anon_sym_operator] = ACTIONS(4040), - [anon_sym_try] = ACTIONS(4040), - [anon_sym_delete] = ACTIONS(4040), - [anon_sym_throw] = ACTIONS(4040), - [anon_sym_namespace] = ACTIONS(4040), - [anon_sym_static_assert] = ACTIONS(4040), - [anon_sym_concept] = ACTIONS(4040), - [anon_sym_co_return] = ACTIONS(4040), - [anon_sym_co_yield] = ACTIONS(4040), - [anon_sym_R_DQUOTE] = ACTIONS(4042), - [anon_sym_LR_DQUOTE] = ACTIONS(4042), - [anon_sym_uR_DQUOTE] = ACTIONS(4042), - [anon_sym_UR_DQUOTE] = ACTIONS(4042), - [anon_sym_u8R_DQUOTE] = ACTIONS(4042), - [anon_sym_co_await] = ACTIONS(4040), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_requires] = ACTIONS(4040), - [anon_sym_CARET_CARET] = ACTIONS(4042), - [anon_sym_LBRACK_COLON] = ACTIONS(4042), - [sym_this] = ACTIONS(4040), + [sym_auto] = ACTIONS(3917), + [anon_sym_decltype] = ACTIONS(3917), + [anon_sym_explicit] = ACTIONS(3917), + [anon_sym_export] = ACTIONS(3917), + [anon_sym_import] = ACTIONS(3917), + [anon_sym_template] = ACTIONS(3917), + [anon_sym_operator] = ACTIONS(3917), + [anon_sym_try] = ACTIONS(3917), + [anon_sym_delete] = ACTIONS(3917), + [anon_sym_throw] = ACTIONS(3917), + [anon_sym_namespace] = ACTIONS(3917), + [anon_sym_static_assert] = ACTIONS(3917), + [anon_sym_concept] = ACTIONS(3917), + [anon_sym_co_return] = ACTIONS(3917), + [anon_sym_co_yield] = ACTIONS(3917), + [anon_sym_R_DQUOTE] = ACTIONS(3919), + [anon_sym_LR_DQUOTE] = ACTIONS(3919), + [anon_sym_uR_DQUOTE] = ACTIONS(3919), + [anon_sym_UR_DQUOTE] = ACTIONS(3919), + [anon_sym_u8R_DQUOTE] = ACTIONS(3919), + [anon_sym_co_await] = ACTIONS(3917), + [anon_sym_new] = ACTIONS(3917), + [anon_sym_requires] = ACTIONS(3917), + [anon_sym_CARET_CARET] = ACTIONS(3919), + [anon_sym_LBRACK_COLON] = ACTIONS(3919), + [sym_this] = ACTIONS(3917), }, [STATE(813)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_include_token1] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym___cdecl] = ACTIONS(4080), - [anon_sym___clrcall] = ACTIONS(4080), - [anon_sym___stdcall] = ACTIONS(4080), - [anon_sym___fastcall] = ACTIONS(4080), - [anon_sym___thiscall] = ACTIONS(4080), - [anon_sym___vectorcall] = ACTIONS(4080), - [anon_sym_LBRACE] = ACTIONS(4082), - [anon_sym_RBRACE] = ACTIONS(4082), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_if] = ACTIONS(4080), - [anon_sym_switch] = ACTIONS(4080), - [anon_sym_case] = ACTIONS(4080), - [anon_sym_default] = ACTIONS(4080), - [anon_sym_while] = ACTIONS(4080), - [anon_sym_do] = ACTIONS(4080), - [anon_sym_for] = ACTIONS(4080), - [anon_sym_return] = ACTIONS(4080), - [anon_sym_break] = ACTIONS(4080), - [anon_sym_continue] = ACTIONS(4080), - [anon_sym_goto] = ACTIONS(4080), - [anon_sym___try] = ACTIONS(4080), - [anon_sym___leave] = ACTIONS(4080), - [anon_sym_not] = ACTIONS(4080), - [anon_sym_compl] = ACTIONS(4080), - [anon_sym_DASH_DASH] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4082), - [anon_sym_sizeof] = ACTIONS(4080), - [anon_sym___alignof__] = ACTIONS(4080), - [anon_sym___alignof] = ACTIONS(4080), - [anon_sym__alignof] = ACTIONS(4080), - [anon_sym_alignof] = ACTIONS(4080), - [anon_sym__Alignof] = ACTIONS(4080), - [anon_sym_offsetof] = ACTIONS(4080), - [anon_sym__Generic] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [anon_sym_asm] = ACTIONS(4080), - [anon_sym___asm__] = ACTIONS(4080), - [anon_sym___asm] = ACTIONS(4080), - [sym_number_literal] = ACTIONS(4082), - [anon_sym_L_SQUOTE] = ACTIONS(4082), - [anon_sym_u_SQUOTE] = ACTIONS(4082), - [anon_sym_U_SQUOTE] = ACTIONS(4082), - [anon_sym_u8_SQUOTE] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4082), - [anon_sym_L_DQUOTE] = ACTIONS(4082), - [anon_sym_u_DQUOTE] = ACTIONS(4082), - [anon_sym_U_DQUOTE] = ACTIONS(4082), - [anon_sym_u8_DQUOTE] = ACTIONS(4082), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [anon_sym_NULL] = ACTIONS(4080), - [anon_sym_nullptr] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_export] = ACTIONS(4080), - [anon_sym_import] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_try] = ACTIONS(4080), - [anon_sym_delete] = ACTIONS(4080), - [anon_sym_throw] = ACTIONS(4080), - [anon_sym_namespace] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_concept] = ACTIONS(4080), - [anon_sym_co_return] = ACTIONS(4080), - [anon_sym_co_yield] = ACTIONS(4080), - [anon_sym_R_DQUOTE] = ACTIONS(4082), - [anon_sym_LR_DQUOTE] = ACTIONS(4082), - [anon_sym_uR_DQUOTE] = ACTIONS(4082), - [anon_sym_UR_DQUOTE] = ACTIONS(4082), - [anon_sym_u8R_DQUOTE] = ACTIONS(4082), - [anon_sym_co_await] = ACTIONS(4080), - [anon_sym_new] = ACTIONS(4080), - [anon_sym_requires] = ACTIONS(4080), - [anon_sym_CARET_CARET] = ACTIONS(4082), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), - [sym_this] = ACTIONS(4080), + [sym_identifier] = ACTIONS(4325), + [aux_sym_preproc_include_token1] = ACTIONS(4325), + [aux_sym_preproc_def_token1] = ACTIONS(4325), + [aux_sym_preproc_if_token1] = ACTIONS(4325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4325), + [sym_preproc_directive] = ACTIONS(4325), + [anon_sym_LPAREN2] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_TILDE] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_AMP] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym___extension__] = ACTIONS(4325), + [anon_sym_typedef] = ACTIONS(4325), + [anon_sym_virtual] = ACTIONS(4325), + [anon_sym_extern] = ACTIONS(4325), + [anon_sym___attribute__] = ACTIONS(4325), + [anon_sym___attribute] = ACTIONS(4325), + [anon_sym_using] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4327), + [anon_sym___declspec] = ACTIONS(4325), + [anon_sym___based] = ACTIONS(4325), + [anon_sym___cdecl] = ACTIONS(4325), + [anon_sym___clrcall] = ACTIONS(4325), + [anon_sym___stdcall] = ACTIONS(4325), + [anon_sym___fastcall] = ACTIONS(4325), + [anon_sym___thiscall] = ACTIONS(4325), + [anon_sym___vectorcall] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4327), + [anon_sym_RBRACE] = ACTIONS(4327), + [anon_sym_signed] = ACTIONS(4325), + [anon_sym_unsigned] = ACTIONS(4325), + [anon_sym_long] = ACTIONS(4325), + [anon_sym_short] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_static] = ACTIONS(4325), + [anon_sym_register] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym___inline] = ACTIONS(4325), + [anon_sym___inline__] = ACTIONS(4325), + [anon_sym___forceinline] = ACTIONS(4325), + [anon_sym_thread_local] = ACTIONS(4325), + [anon_sym___thread] = ACTIONS(4325), + [anon_sym_const] = ACTIONS(4325), + [anon_sym_constexpr] = ACTIONS(4325), + [anon_sym_volatile] = ACTIONS(4325), + [anon_sym_restrict] = ACTIONS(4325), + [anon_sym___restrict__] = ACTIONS(4325), + [anon_sym__Atomic] = ACTIONS(4325), + [anon_sym__Noreturn] = ACTIONS(4325), + [anon_sym_noreturn] = ACTIONS(4325), + [anon_sym__Nonnull] = ACTIONS(4325), + [anon_sym_mutable] = ACTIONS(4325), + [anon_sym_constinit] = ACTIONS(4325), + [anon_sym_consteval] = ACTIONS(4325), + [anon_sym_alignas] = ACTIONS(4325), + [anon_sym__Alignas] = ACTIONS(4325), + [sym_primitive_type] = ACTIONS(4325), + [anon_sym_enum] = ACTIONS(4325), + [anon_sym_class] = ACTIONS(4325), + [anon_sym_struct] = ACTIONS(4325), + [anon_sym_union] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_switch] = ACTIONS(4325), + [anon_sym_case] = ACTIONS(4325), + [anon_sym_default] = ACTIONS(4325), + [anon_sym_while] = ACTIONS(4325), + [anon_sym_do] = ACTIONS(4325), + [anon_sym_for] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_goto] = ACTIONS(4325), + [anon_sym___try] = ACTIONS(4325), + [anon_sym___leave] = ACTIONS(4325), + [anon_sym_not] = ACTIONS(4325), + [anon_sym_compl] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_sizeof] = ACTIONS(4325), + [anon_sym___alignof__] = ACTIONS(4325), + [anon_sym___alignof] = ACTIONS(4325), + [anon_sym__alignof] = ACTIONS(4325), + [anon_sym_alignof] = ACTIONS(4325), + [anon_sym__Alignof] = ACTIONS(4325), + [anon_sym_offsetof] = ACTIONS(4325), + [anon_sym__Generic] = ACTIONS(4325), + [anon_sym_typename] = ACTIONS(4325), + [anon_sym_asm] = ACTIONS(4325), + [anon_sym___asm__] = ACTIONS(4325), + [anon_sym___asm] = ACTIONS(4325), + [sym_number_literal] = ACTIONS(4327), + [anon_sym_L_SQUOTE] = ACTIONS(4327), + [anon_sym_u_SQUOTE] = ACTIONS(4327), + [anon_sym_U_SQUOTE] = ACTIONS(4327), + [anon_sym_u8_SQUOTE] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4327), + [anon_sym_L_DQUOTE] = ACTIONS(4327), + [anon_sym_u_DQUOTE] = ACTIONS(4327), + [anon_sym_U_DQUOTE] = ACTIONS(4327), + [anon_sym_u8_DQUOTE] = ACTIONS(4327), + [anon_sym_DQUOTE] = ACTIONS(4327), + [sym_true] = ACTIONS(4325), + [sym_false] = ACTIONS(4325), + [anon_sym_NULL] = ACTIONS(4325), + [anon_sym_nullptr] = ACTIONS(4325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4325), + [anon_sym_decltype] = ACTIONS(4325), + [anon_sym_explicit] = ACTIONS(4325), + [anon_sym_export] = ACTIONS(4325), + [anon_sym_import] = ACTIONS(4325), + [anon_sym_template] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_delete] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_namespace] = ACTIONS(4325), + [anon_sym_static_assert] = ACTIONS(4325), + [anon_sym_concept] = ACTIONS(4325), + [anon_sym_co_return] = ACTIONS(4325), + [anon_sym_co_yield] = ACTIONS(4325), + [anon_sym_R_DQUOTE] = ACTIONS(4327), + [anon_sym_LR_DQUOTE] = ACTIONS(4327), + [anon_sym_uR_DQUOTE] = ACTIONS(4327), + [anon_sym_UR_DQUOTE] = ACTIONS(4327), + [anon_sym_u8R_DQUOTE] = ACTIONS(4327), + [anon_sym_co_await] = ACTIONS(4325), + [anon_sym_new] = ACTIONS(4325), + [anon_sym_requires] = ACTIONS(4325), + [anon_sym_CARET_CARET] = ACTIONS(4327), + [anon_sym_LBRACK_COLON] = ACTIONS(4327), + [sym_this] = ACTIONS(4325), }, [STATE(814)] = { + [sym_identifier] = ACTIONS(4367), + [aux_sym_preproc_include_token1] = ACTIONS(4367), + [aux_sym_preproc_def_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token1] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4367), + [sym_preproc_directive] = ACTIONS(4367), + [anon_sym_LPAREN2] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_AMP_AMP] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4369), + [anon_sym___extension__] = ACTIONS(4367), + [anon_sym_typedef] = ACTIONS(4367), + [anon_sym_virtual] = ACTIONS(4367), + [anon_sym_extern] = ACTIONS(4367), + [anon_sym___attribute__] = ACTIONS(4367), + [anon_sym___attribute] = ACTIONS(4367), + [anon_sym_using] = ACTIONS(4367), + [anon_sym_COLON_COLON] = ACTIONS(4369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4369), + [anon_sym___declspec] = ACTIONS(4367), + [anon_sym___based] = ACTIONS(4367), + [anon_sym___cdecl] = ACTIONS(4367), + [anon_sym___clrcall] = ACTIONS(4367), + [anon_sym___stdcall] = ACTIONS(4367), + [anon_sym___fastcall] = ACTIONS(4367), + [anon_sym___thiscall] = ACTIONS(4367), + [anon_sym___vectorcall] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4369), + [anon_sym_RBRACE] = ACTIONS(4369), + [anon_sym_signed] = ACTIONS(4367), + [anon_sym_unsigned] = ACTIONS(4367), + [anon_sym_long] = ACTIONS(4367), + [anon_sym_short] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4367), + [anon_sym_static] = ACTIONS(4367), + [anon_sym_register] = ACTIONS(4367), + [anon_sym_inline] = ACTIONS(4367), + [anon_sym___inline] = ACTIONS(4367), + [anon_sym___inline__] = ACTIONS(4367), + [anon_sym___forceinline] = ACTIONS(4367), + [anon_sym_thread_local] = ACTIONS(4367), + [anon_sym___thread] = ACTIONS(4367), + [anon_sym_const] = ACTIONS(4367), + [anon_sym_constexpr] = ACTIONS(4367), + [anon_sym_volatile] = ACTIONS(4367), + [anon_sym_restrict] = ACTIONS(4367), + [anon_sym___restrict__] = ACTIONS(4367), + [anon_sym__Atomic] = ACTIONS(4367), + [anon_sym__Noreturn] = ACTIONS(4367), + [anon_sym_noreturn] = ACTIONS(4367), + [anon_sym__Nonnull] = ACTIONS(4367), + [anon_sym_mutable] = ACTIONS(4367), + [anon_sym_constinit] = ACTIONS(4367), + [anon_sym_consteval] = ACTIONS(4367), + [anon_sym_alignas] = ACTIONS(4367), + [anon_sym__Alignas] = ACTIONS(4367), + [sym_primitive_type] = ACTIONS(4367), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_class] = ACTIONS(4367), + [anon_sym_struct] = ACTIONS(4367), + [anon_sym_union] = ACTIONS(4367), + [anon_sym_if] = ACTIONS(4367), + [anon_sym_switch] = ACTIONS(4367), + [anon_sym_case] = ACTIONS(4367), + [anon_sym_default] = ACTIONS(4367), + [anon_sym_while] = ACTIONS(4367), + [anon_sym_do] = ACTIONS(4367), + [anon_sym_for] = ACTIONS(4367), + [anon_sym_return] = ACTIONS(4367), + [anon_sym_break] = ACTIONS(4367), + [anon_sym_continue] = ACTIONS(4367), + [anon_sym_goto] = ACTIONS(4367), + [anon_sym___try] = ACTIONS(4367), + [anon_sym___leave] = ACTIONS(4367), + [anon_sym_not] = ACTIONS(4367), + [anon_sym_compl] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_PLUS_PLUS] = ACTIONS(4369), + [anon_sym_sizeof] = ACTIONS(4367), + [anon_sym___alignof__] = ACTIONS(4367), + [anon_sym___alignof] = ACTIONS(4367), + [anon_sym__alignof] = ACTIONS(4367), + [anon_sym_alignof] = ACTIONS(4367), + [anon_sym__Alignof] = ACTIONS(4367), + [anon_sym_offsetof] = ACTIONS(4367), + [anon_sym__Generic] = ACTIONS(4367), + [anon_sym_typename] = ACTIONS(4367), + [anon_sym_asm] = ACTIONS(4367), + [anon_sym___asm__] = ACTIONS(4367), + [anon_sym___asm] = ACTIONS(4367), + [sym_number_literal] = ACTIONS(4369), + [anon_sym_L_SQUOTE] = ACTIONS(4369), + [anon_sym_u_SQUOTE] = ACTIONS(4369), + [anon_sym_U_SQUOTE] = ACTIONS(4369), + [anon_sym_u8_SQUOTE] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4369), + [anon_sym_L_DQUOTE] = ACTIONS(4369), + [anon_sym_u_DQUOTE] = ACTIONS(4369), + [anon_sym_U_DQUOTE] = ACTIONS(4369), + [anon_sym_u8_DQUOTE] = ACTIONS(4369), + [anon_sym_DQUOTE] = ACTIONS(4369), + [sym_true] = ACTIONS(4367), + [sym_false] = ACTIONS(4367), + [anon_sym_NULL] = ACTIONS(4367), + [anon_sym_nullptr] = ACTIONS(4367), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4367), + [anon_sym_decltype] = ACTIONS(4367), + [anon_sym_explicit] = ACTIONS(4367), + [anon_sym_export] = ACTIONS(4367), + [anon_sym_import] = ACTIONS(4367), + [anon_sym_template] = ACTIONS(4367), + [anon_sym_operator] = ACTIONS(4367), + [anon_sym_try] = ACTIONS(4367), + [anon_sym_delete] = ACTIONS(4367), + [anon_sym_throw] = ACTIONS(4367), + [anon_sym_namespace] = ACTIONS(4367), + [anon_sym_static_assert] = ACTIONS(4367), + [anon_sym_concept] = ACTIONS(4367), + [anon_sym_co_return] = ACTIONS(4367), + [anon_sym_co_yield] = ACTIONS(4367), + [anon_sym_R_DQUOTE] = ACTIONS(4369), + [anon_sym_LR_DQUOTE] = ACTIONS(4369), + [anon_sym_uR_DQUOTE] = ACTIONS(4369), + [anon_sym_UR_DQUOTE] = ACTIONS(4369), + [anon_sym_u8R_DQUOTE] = ACTIONS(4369), + [anon_sym_co_await] = ACTIONS(4367), + [anon_sym_new] = ACTIONS(4367), + [anon_sym_requires] = ACTIONS(4367), + [anon_sym_CARET_CARET] = ACTIONS(4369), + [anon_sym_LBRACK_COLON] = ACTIONS(4369), + [sym_this] = ACTIONS(4367), + }, + [STATE(815)] = { + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_include_token1] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_BANG] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym___cdecl] = ACTIONS(3921), + [anon_sym___clrcall] = ACTIONS(3921), + [anon_sym___stdcall] = ACTIONS(3921), + [anon_sym___fastcall] = ACTIONS(3921), + [anon_sym___thiscall] = ACTIONS(3921), + [anon_sym___vectorcall] = ACTIONS(3921), + [anon_sym_LBRACE] = ACTIONS(3923), + [anon_sym_RBRACE] = ACTIONS(3923), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_if] = ACTIONS(3921), + [anon_sym_switch] = ACTIONS(3921), + [anon_sym_case] = ACTIONS(3921), + [anon_sym_default] = ACTIONS(3921), + [anon_sym_while] = ACTIONS(3921), + [anon_sym_do] = ACTIONS(3921), + [anon_sym_for] = ACTIONS(3921), + [anon_sym_return] = ACTIONS(3921), + [anon_sym_break] = ACTIONS(3921), + [anon_sym_continue] = ACTIONS(3921), + [anon_sym_goto] = ACTIONS(3921), + [anon_sym___try] = ACTIONS(3921), + [anon_sym___leave] = ACTIONS(3921), + [anon_sym_not] = ACTIONS(3921), + [anon_sym_compl] = ACTIONS(3921), + [anon_sym_DASH_DASH] = ACTIONS(3923), + [anon_sym_PLUS_PLUS] = ACTIONS(3923), + [anon_sym_sizeof] = ACTIONS(3921), + [anon_sym___alignof__] = ACTIONS(3921), + [anon_sym___alignof] = ACTIONS(3921), + [anon_sym__alignof] = ACTIONS(3921), + [anon_sym_alignof] = ACTIONS(3921), + [anon_sym__Alignof] = ACTIONS(3921), + [anon_sym_offsetof] = ACTIONS(3921), + [anon_sym__Generic] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [anon_sym_asm] = ACTIONS(3921), + [anon_sym___asm__] = ACTIONS(3921), + [anon_sym___asm] = ACTIONS(3921), + [sym_number_literal] = ACTIONS(3923), + [anon_sym_L_SQUOTE] = ACTIONS(3923), + [anon_sym_u_SQUOTE] = ACTIONS(3923), + [anon_sym_U_SQUOTE] = ACTIONS(3923), + [anon_sym_u8_SQUOTE] = ACTIONS(3923), + [anon_sym_SQUOTE] = ACTIONS(3923), + [anon_sym_L_DQUOTE] = ACTIONS(3923), + [anon_sym_u_DQUOTE] = ACTIONS(3923), + [anon_sym_U_DQUOTE] = ACTIONS(3923), + [anon_sym_u8_DQUOTE] = ACTIONS(3923), + [anon_sym_DQUOTE] = ACTIONS(3923), + [sym_true] = ACTIONS(3921), + [sym_false] = ACTIONS(3921), + [anon_sym_NULL] = ACTIONS(3921), + [anon_sym_nullptr] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_export] = ACTIONS(3921), + [anon_sym_import] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_try] = ACTIONS(3921), + [anon_sym_delete] = ACTIONS(3921), + [anon_sym_throw] = ACTIONS(3921), + [anon_sym_namespace] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_concept] = ACTIONS(3921), + [anon_sym_co_return] = ACTIONS(3921), + [anon_sym_co_yield] = ACTIONS(3921), + [anon_sym_R_DQUOTE] = ACTIONS(3923), + [anon_sym_LR_DQUOTE] = ACTIONS(3923), + [anon_sym_uR_DQUOTE] = ACTIONS(3923), + [anon_sym_UR_DQUOTE] = ACTIONS(3923), + [anon_sym_u8R_DQUOTE] = ACTIONS(3923), + [anon_sym_co_await] = ACTIONS(3921), + [anon_sym_new] = ACTIONS(3921), + [anon_sym_requires] = ACTIONS(3921), + [anon_sym_CARET_CARET] = ACTIONS(3923), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), + [sym_this] = ACTIONS(3921), + }, + [STATE(816)] = { [sym_identifier] = ACTIONS(4044), [aux_sym_preproc_include_token1] = ACTIONS(4044), [aux_sym_preproc_def_token1] = ACTIONS(4044), @@ -176099,3787 +176380,847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4046), [sym_this] = ACTIONS(4044), }, - [STATE(815)] = { - [sym_identifier] = ACTIONS(4004), - [aux_sym_preproc_include_token1] = ACTIONS(4004), - [aux_sym_preproc_def_token1] = ACTIONS(4004), - [aux_sym_preproc_if_token1] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), - [sym_preproc_directive] = ACTIONS(4004), - [anon_sym_LPAREN2] = ACTIONS(4006), - [anon_sym_BANG] = ACTIONS(4006), - [anon_sym_TILDE] = ACTIONS(4006), - [anon_sym_DASH] = ACTIONS(4004), - [anon_sym_PLUS] = ACTIONS(4004), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym___extension__] = ACTIONS(4004), - [anon_sym_typedef] = ACTIONS(4004), - [anon_sym_virtual] = ACTIONS(4004), - [anon_sym_extern] = ACTIONS(4004), - [anon_sym___attribute__] = ACTIONS(4004), - [anon_sym___attribute] = ACTIONS(4004), - [anon_sym_using] = ACTIONS(4004), - [anon_sym_COLON_COLON] = ACTIONS(4006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), - [anon_sym___declspec] = ACTIONS(4004), - [anon_sym___based] = ACTIONS(4004), - [anon_sym___cdecl] = ACTIONS(4004), - [anon_sym___clrcall] = ACTIONS(4004), - [anon_sym___stdcall] = ACTIONS(4004), - [anon_sym___fastcall] = ACTIONS(4004), - [anon_sym___thiscall] = ACTIONS(4004), - [anon_sym___vectorcall] = ACTIONS(4004), - [anon_sym_LBRACE] = ACTIONS(4006), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_signed] = ACTIONS(4004), - [anon_sym_unsigned] = ACTIONS(4004), - [anon_sym_long] = ACTIONS(4004), - [anon_sym_short] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(4004), - [anon_sym_static] = ACTIONS(4004), - [anon_sym_register] = ACTIONS(4004), - [anon_sym_inline] = ACTIONS(4004), - [anon_sym___inline] = ACTIONS(4004), - [anon_sym___inline__] = ACTIONS(4004), - [anon_sym___forceinline] = ACTIONS(4004), - [anon_sym_thread_local] = ACTIONS(4004), - [anon_sym___thread] = ACTIONS(4004), - [anon_sym_const] = ACTIONS(4004), - [anon_sym_constexpr] = ACTIONS(4004), - [anon_sym_volatile] = ACTIONS(4004), - [anon_sym_restrict] = ACTIONS(4004), - [anon_sym___restrict__] = ACTIONS(4004), - [anon_sym__Atomic] = ACTIONS(4004), - [anon_sym__Noreturn] = ACTIONS(4004), - [anon_sym_noreturn] = ACTIONS(4004), - [anon_sym__Nonnull] = ACTIONS(4004), - [anon_sym_mutable] = ACTIONS(4004), - [anon_sym_constinit] = ACTIONS(4004), - [anon_sym_consteval] = ACTIONS(4004), - [anon_sym_alignas] = ACTIONS(4004), - [anon_sym__Alignas] = ACTIONS(4004), - [sym_primitive_type] = ACTIONS(4004), - [anon_sym_enum] = ACTIONS(4004), - [anon_sym_class] = ACTIONS(4004), - [anon_sym_struct] = ACTIONS(4004), - [anon_sym_union] = ACTIONS(4004), - [anon_sym_if] = ACTIONS(4004), - [anon_sym_switch] = ACTIONS(4004), - [anon_sym_case] = ACTIONS(4004), - [anon_sym_default] = ACTIONS(4004), - [anon_sym_while] = ACTIONS(4004), - [anon_sym_do] = ACTIONS(4004), - [anon_sym_for] = ACTIONS(4004), - [anon_sym_return] = ACTIONS(4004), - [anon_sym_break] = ACTIONS(4004), - [anon_sym_continue] = ACTIONS(4004), - [anon_sym_goto] = ACTIONS(4004), - [anon_sym___try] = ACTIONS(4004), - [anon_sym___leave] = ACTIONS(4004), - [anon_sym_not] = ACTIONS(4004), - [anon_sym_compl] = ACTIONS(4004), - [anon_sym_DASH_DASH] = ACTIONS(4006), - [anon_sym_PLUS_PLUS] = ACTIONS(4006), - [anon_sym_sizeof] = ACTIONS(4004), - [anon_sym___alignof__] = ACTIONS(4004), - [anon_sym___alignof] = ACTIONS(4004), - [anon_sym__alignof] = ACTIONS(4004), - [anon_sym_alignof] = ACTIONS(4004), - [anon_sym__Alignof] = ACTIONS(4004), - [anon_sym_offsetof] = ACTIONS(4004), - [anon_sym__Generic] = ACTIONS(4004), - [anon_sym_typename] = ACTIONS(4004), - [anon_sym_asm] = ACTIONS(4004), - [anon_sym___asm__] = ACTIONS(4004), - [anon_sym___asm] = ACTIONS(4004), - [sym_number_literal] = ACTIONS(4006), - [anon_sym_L_SQUOTE] = ACTIONS(4006), - [anon_sym_u_SQUOTE] = ACTIONS(4006), - [anon_sym_U_SQUOTE] = ACTIONS(4006), - [anon_sym_u8_SQUOTE] = ACTIONS(4006), - [anon_sym_SQUOTE] = ACTIONS(4006), - [anon_sym_L_DQUOTE] = ACTIONS(4006), - [anon_sym_u_DQUOTE] = ACTIONS(4006), - [anon_sym_U_DQUOTE] = ACTIONS(4006), - [anon_sym_u8_DQUOTE] = ACTIONS(4006), - [anon_sym_DQUOTE] = ACTIONS(4006), - [sym_true] = ACTIONS(4004), - [sym_false] = ACTIONS(4004), - [anon_sym_NULL] = ACTIONS(4004), - [anon_sym_nullptr] = ACTIONS(4004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4004), - [anon_sym_decltype] = ACTIONS(4004), - [anon_sym_explicit] = ACTIONS(4004), - [anon_sym_export] = ACTIONS(4004), - [anon_sym_import] = ACTIONS(4004), - [anon_sym_template] = ACTIONS(4004), - [anon_sym_operator] = ACTIONS(4004), - [anon_sym_try] = ACTIONS(4004), - [anon_sym_delete] = ACTIONS(4004), - [anon_sym_throw] = ACTIONS(4004), - [anon_sym_namespace] = ACTIONS(4004), - [anon_sym_static_assert] = ACTIONS(4004), - [anon_sym_concept] = ACTIONS(4004), - [anon_sym_co_return] = ACTIONS(4004), - [anon_sym_co_yield] = ACTIONS(4004), - [anon_sym_R_DQUOTE] = ACTIONS(4006), - [anon_sym_LR_DQUOTE] = ACTIONS(4006), - [anon_sym_uR_DQUOTE] = ACTIONS(4006), - [anon_sym_UR_DQUOTE] = ACTIONS(4006), - [anon_sym_u8R_DQUOTE] = ACTIONS(4006), - [anon_sym_co_await] = ACTIONS(4004), - [anon_sym_new] = ACTIONS(4004), - [anon_sym_requires] = ACTIONS(4004), - [anon_sym_CARET_CARET] = ACTIONS(4006), - [anon_sym_LBRACK_COLON] = ACTIONS(4006), - [sym_this] = ACTIONS(4004), - }, - [STATE(816)] = { - [sym_identifier] = ACTIONS(4246), - [aux_sym_preproc_include_token1] = ACTIONS(4246), - [aux_sym_preproc_def_token1] = ACTIONS(4246), - [aux_sym_preproc_if_token1] = ACTIONS(4246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4246), - [sym_preproc_directive] = ACTIONS(4246), - [anon_sym_LPAREN2] = ACTIONS(4248), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_TILDE] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4246), - [anon_sym_STAR] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4246), - [anon_sym_SEMI] = ACTIONS(4248), - [anon_sym___extension__] = ACTIONS(4246), - [anon_sym_typedef] = ACTIONS(4246), - [anon_sym_virtual] = ACTIONS(4246), - [anon_sym_extern] = ACTIONS(4246), - [anon_sym___attribute__] = ACTIONS(4246), - [anon_sym___attribute] = ACTIONS(4246), - [anon_sym_using] = ACTIONS(4246), - [anon_sym_COLON_COLON] = ACTIONS(4248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4248), - [anon_sym___declspec] = ACTIONS(4246), - [anon_sym___based] = ACTIONS(4246), - [anon_sym___cdecl] = ACTIONS(4246), - [anon_sym___clrcall] = ACTIONS(4246), - [anon_sym___stdcall] = ACTIONS(4246), - [anon_sym___fastcall] = ACTIONS(4246), - [anon_sym___thiscall] = ACTIONS(4246), - [anon_sym___vectorcall] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4248), - [anon_sym_RBRACE] = ACTIONS(4248), - [anon_sym_signed] = ACTIONS(4246), - [anon_sym_unsigned] = ACTIONS(4246), - [anon_sym_long] = ACTIONS(4246), - [anon_sym_short] = ACTIONS(4246), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_static] = ACTIONS(4246), - [anon_sym_register] = ACTIONS(4246), - [anon_sym_inline] = ACTIONS(4246), - [anon_sym___inline] = ACTIONS(4246), - [anon_sym___inline__] = ACTIONS(4246), - [anon_sym___forceinline] = ACTIONS(4246), - [anon_sym_thread_local] = ACTIONS(4246), - [anon_sym___thread] = ACTIONS(4246), - [anon_sym_const] = ACTIONS(4246), - [anon_sym_constexpr] = ACTIONS(4246), - [anon_sym_volatile] = ACTIONS(4246), - [anon_sym_restrict] = ACTIONS(4246), - [anon_sym___restrict__] = ACTIONS(4246), - [anon_sym__Atomic] = ACTIONS(4246), - [anon_sym__Noreturn] = ACTIONS(4246), - [anon_sym_noreturn] = ACTIONS(4246), - [anon_sym__Nonnull] = ACTIONS(4246), - [anon_sym_mutable] = ACTIONS(4246), - [anon_sym_constinit] = ACTIONS(4246), - [anon_sym_consteval] = ACTIONS(4246), - [anon_sym_alignas] = ACTIONS(4246), - [anon_sym__Alignas] = ACTIONS(4246), - [sym_primitive_type] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4246), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_struct] = ACTIONS(4246), - [anon_sym_union] = ACTIONS(4246), - [anon_sym_if] = ACTIONS(4246), - [anon_sym_switch] = ACTIONS(4246), - [anon_sym_case] = ACTIONS(4246), - [anon_sym_default] = ACTIONS(4246), - [anon_sym_while] = ACTIONS(4246), - [anon_sym_do] = ACTIONS(4246), - [anon_sym_for] = ACTIONS(4246), - [anon_sym_return] = ACTIONS(4246), - [anon_sym_break] = ACTIONS(4246), - [anon_sym_continue] = ACTIONS(4246), - [anon_sym_goto] = ACTIONS(4246), - [anon_sym___try] = ACTIONS(4246), - [anon_sym___leave] = ACTIONS(4246), - [anon_sym_not] = ACTIONS(4246), - [anon_sym_compl] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4248), - [anon_sym_sizeof] = ACTIONS(4246), - [anon_sym___alignof__] = ACTIONS(4246), - [anon_sym___alignof] = ACTIONS(4246), - [anon_sym__alignof] = ACTIONS(4246), - [anon_sym_alignof] = ACTIONS(4246), - [anon_sym__Alignof] = ACTIONS(4246), - [anon_sym_offsetof] = ACTIONS(4246), - [anon_sym__Generic] = ACTIONS(4246), - [anon_sym_typename] = ACTIONS(4246), - [anon_sym_asm] = ACTIONS(4246), - [anon_sym___asm__] = ACTIONS(4246), - [anon_sym___asm] = ACTIONS(4246), - [sym_number_literal] = ACTIONS(4248), - [anon_sym_L_SQUOTE] = ACTIONS(4248), - [anon_sym_u_SQUOTE] = ACTIONS(4248), - [anon_sym_U_SQUOTE] = ACTIONS(4248), - [anon_sym_u8_SQUOTE] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4248), - [anon_sym_L_DQUOTE] = ACTIONS(4248), - [anon_sym_u_DQUOTE] = ACTIONS(4248), - [anon_sym_U_DQUOTE] = ACTIONS(4248), - [anon_sym_u8_DQUOTE] = ACTIONS(4248), - [anon_sym_DQUOTE] = ACTIONS(4248), - [sym_true] = ACTIONS(4246), - [sym_false] = ACTIONS(4246), - [anon_sym_NULL] = ACTIONS(4246), - [anon_sym_nullptr] = ACTIONS(4246), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4246), - [anon_sym_decltype] = ACTIONS(4246), - [anon_sym_explicit] = ACTIONS(4246), - [anon_sym_export] = ACTIONS(4246), - [anon_sym_import] = ACTIONS(4246), - [anon_sym_template] = ACTIONS(4246), - [anon_sym_operator] = ACTIONS(4246), - [anon_sym_try] = ACTIONS(4246), - [anon_sym_delete] = ACTIONS(4246), - [anon_sym_throw] = ACTIONS(4246), - [anon_sym_namespace] = ACTIONS(4246), - [anon_sym_static_assert] = ACTIONS(4246), - [anon_sym_concept] = ACTIONS(4246), - [anon_sym_co_return] = ACTIONS(4246), - [anon_sym_co_yield] = ACTIONS(4246), - [anon_sym_R_DQUOTE] = ACTIONS(4248), - [anon_sym_LR_DQUOTE] = ACTIONS(4248), - [anon_sym_uR_DQUOTE] = ACTIONS(4248), - [anon_sym_UR_DQUOTE] = ACTIONS(4248), - [anon_sym_u8R_DQUOTE] = ACTIONS(4248), - [anon_sym_co_await] = ACTIONS(4246), - [anon_sym_new] = ACTIONS(4246), - [anon_sym_requires] = ACTIONS(4246), - [anon_sym_CARET_CARET] = ACTIONS(4248), - [anon_sym_LBRACK_COLON] = ACTIONS(4248), - [sym_this] = ACTIONS(4246), - }, [STATE(817)] = { - [sym_identifier] = ACTIONS(4258), - [aux_sym_preproc_include_token1] = ACTIONS(4258), - [aux_sym_preproc_def_token1] = ACTIONS(4258), - [aux_sym_preproc_if_token1] = ACTIONS(4258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4258), - [sym_preproc_directive] = ACTIONS(4258), - [anon_sym_LPAREN2] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_TILDE] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym___extension__] = ACTIONS(4258), - [anon_sym_typedef] = ACTIONS(4258), - [anon_sym_virtual] = ACTIONS(4258), - [anon_sym_extern] = ACTIONS(4258), - [anon_sym___attribute__] = ACTIONS(4258), - [anon_sym___attribute] = ACTIONS(4258), - [anon_sym_using] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4260), - [anon_sym___declspec] = ACTIONS(4258), - [anon_sym___based] = ACTIONS(4258), - [anon_sym___cdecl] = ACTIONS(4258), - [anon_sym___clrcall] = ACTIONS(4258), - [anon_sym___stdcall] = ACTIONS(4258), - [anon_sym___fastcall] = ACTIONS(4258), - [anon_sym___thiscall] = ACTIONS(4258), - [anon_sym___vectorcall] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_signed] = ACTIONS(4258), - [anon_sym_unsigned] = ACTIONS(4258), - [anon_sym_long] = ACTIONS(4258), - [anon_sym_short] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_static] = ACTIONS(4258), - [anon_sym_register] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym___inline] = ACTIONS(4258), - [anon_sym___inline__] = ACTIONS(4258), - [anon_sym___forceinline] = ACTIONS(4258), - [anon_sym_thread_local] = ACTIONS(4258), - [anon_sym___thread] = ACTIONS(4258), - [anon_sym_const] = ACTIONS(4258), - [anon_sym_constexpr] = ACTIONS(4258), - [anon_sym_volatile] = ACTIONS(4258), - [anon_sym_restrict] = ACTIONS(4258), - [anon_sym___restrict__] = ACTIONS(4258), - [anon_sym__Atomic] = ACTIONS(4258), - [anon_sym__Noreturn] = ACTIONS(4258), - [anon_sym_noreturn] = ACTIONS(4258), - [anon_sym__Nonnull] = ACTIONS(4258), - [anon_sym_mutable] = ACTIONS(4258), - [anon_sym_constinit] = ACTIONS(4258), - [anon_sym_consteval] = ACTIONS(4258), - [anon_sym_alignas] = ACTIONS(4258), - [anon_sym__Alignas] = ACTIONS(4258), - [sym_primitive_type] = ACTIONS(4258), - [anon_sym_enum] = ACTIONS(4258), - [anon_sym_class] = ACTIONS(4258), - [anon_sym_struct] = ACTIONS(4258), - [anon_sym_union] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_switch] = ACTIONS(4258), - [anon_sym_case] = ACTIONS(4258), - [anon_sym_default] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_do] = ACTIONS(4258), - [anon_sym_for] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_goto] = ACTIONS(4258), - [anon_sym___try] = ACTIONS(4258), - [anon_sym___leave] = ACTIONS(4258), - [anon_sym_not] = ACTIONS(4258), - [anon_sym_compl] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_sizeof] = ACTIONS(4258), - [anon_sym___alignof__] = ACTIONS(4258), - [anon_sym___alignof] = ACTIONS(4258), - [anon_sym__alignof] = ACTIONS(4258), - [anon_sym_alignof] = ACTIONS(4258), - [anon_sym__Alignof] = ACTIONS(4258), - [anon_sym_offsetof] = ACTIONS(4258), - [anon_sym__Generic] = ACTIONS(4258), - [anon_sym_typename] = ACTIONS(4258), - [anon_sym_asm] = ACTIONS(4258), - [anon_sym___asm__] = ACTIONS(4258), - [anon_sym___asm] = ACTIONS(4258), - [sym_number_literal] = ACTIONS(4260), - [anon_sym_L_SQUOTE] = ACTIONS(4260), - [anon_sym_u_SQUOTE] = ACTIONS(4260), - [anon_sym_U_SQUOTE] = ACTIONS(4260), - [anon_sym_u8_SQUOTE] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4260), - [anon_sym_L_DQUOTE] = ACTIONS(4260), - [anon_sym_u_DQUOTE] = ACTIONS(4260), - [anon_sym_U_DQUOTE] = ACTIONS(4260), - [anon_sym_u8_DQUOTE] = ACTIONS(4260), - [anon_sym_DQUOTE] = ACTIONS(4260), - [sym_true] = ACTIONS(4258), - [sym_false] = ACTIONS(4258), - [anon_sym_NULL] = ACTIONS(4258), - [anon_sym_nullptr] = ACTIONS(4258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4258), - [anon_sym_decltype] = ACTIONS(4258), - [anon_sym_explicit] = ACTIONS(4258), - [anon_sym_export] = ACTIONS(4258), - [anon_sym_import] = ACTIONS(4258), - [anon_sym_template] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_delete] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_namespace] = ACTIONS(4258), - [anon_sym_static_assert] = ACTIONS(4258), - [anon_sym_concept] = ACTIONS(4258), - [anon_sym_co_return] = ACTIONS(4258), - [anon_sym_co_yield] = ACTIONS(4258), - [anon_sym_R_DQUOTE] = ACTIONS(4260), - [anon_sym_LR_DQUOTE] = ACTIONS(4260), - [anon_sym_uR_DQUOTE] = ACTIONS(4260), - [anon_sym_UR_DQUOTE] = ACTIONS(4260), - [anon_sym_u8R_DQUOTE] = ACTIONS(4260), - [anon_sym_co_await] = ACTIONS(4258), - [anon_sym_new] = ACTIONS(4258), - [anon_sym_requires] = ACTIONS(4258), - [anon_sym_CARET_CARET] = ACTIONS(4260), - [anon_sym_LBRACK_COLON] = ACTIONS(4260), - [sym_this] = ACTIONS(4258), + [sym_identifier] = ACTIONS(3762), + [aux_sym_preproc_include_token1] = ACTIONS(3762), + [aux_sym_preproc_def_token1] = ACTIONS(3762), + [aux_sym_preproc_if_token1] = ACTIONS(3762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3762), + [sym_preproc_directive] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_BANG] = ACTIONS(3764), + [anon_sym_TILDE] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_STAR] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym___extension__] = ACTIONS(3762), + [anon_sym_typedef] = ACTIONS(3762), + [anon_sym_virtual] = ACTIONS(3762), + [anon_sym_extern] = ACTIONS(3762), + [anon_sym___attribute__] = ACTIONS(3762), + [anon_sym___attribute] = ACTIONS(3762), + [anon_sym_using] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), + [anon_sym___declspec] = ACTIONS(3762), + [anon_sym___based] = ACTIONS(3762), + [anon_sym___cdecl] = ACTIONS(3762), + [anon_sym___clrcall] = ACTIONS(3762), + [anon_sym___stdcall] = ACTIONS(3762), + [anon_sym___fastcall] = ACTIONS(3762), + [anon_sym___thiscall] = ACTIONS(3762), + [anon_sym___vectorcall] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_RBRACE] = ACTIONS(3764), + [anon_sym_signed] = ACTIONS(3762), + [anon_sym_unsigned] = ACTIONS(3762), + [anon_sym_long] = ACTIONS(3762), + [anon_sym_short] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_static] = ACTIONS(3762), + [anon_sym_register] = ACTIONS(3762), + [anon_sym_inline] = ACTIONS(3762), + [anon_sym___inline] = ACTIONS(3762), + [anon_sym___inline__] = ACTIONS(3762), + [anon_sym___forceinline] = ACTIONS(3762), + [anon_sym_thread_local] = ACTIONS(3762), + [anon_sym___thread] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym___restrict__] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym__Noreturn] = ACTIONS(3762), + [anon_sym_noreturn] = ACTIONS(3762), + [anon_sym__Nonnull] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_constinit] = ACTIONS(3762), + [anon_sym_consteval] = ACTIONS(3762), + [anon_sym_alignas] = ACTIONS(3762), + [anon_sym__Alignas] = ACTIONS(3762), + [sym_primitive_type] = ACTIONS(3762), + [anon_sym_enum] = ACTIONS(3762), + [anon_sym_class] = ACTIONS(3762), + [anon_sym_struct] = ACTIONS(3762), + [anon_sym_union] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_switch] = ACTIONS(3762), + [anon_sym_case] = ACTIONS(3762), + [anon_sym_default] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_break] = ACTIONS(3762), + [anon_sym_continue] = ACTIONS(3762), + [anon_sym_goto] = ACTIONS(3762), + [anon_sym___try] = ACTIONS(3762), + [anon_sym___leave] = ACTIONS(3762), + [anon_sym_not] = ACTIONS(3762), + [anon_sym_compl] = ACTIONS(3762), + [anon_sym_DASH_DASH] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3764), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(3762), + [anon_sym___alignof] = ACTIONS(3762), + [anon_sym__alignof] = ACTIONS(3762), + [anon_sym_alignof] = ACTIONS(3762), + [anon_sym__Alignof] = ACTIONS(3762), + [anon_sym_offsetof] = ACTIONS(3762), + [anon_sym__Generic] = ACTIONS(3762), + [anon_sym_typename] = ACTIONS(3762), + [anon_sym_asm] = ACTIONS(3762), + [anon_sym___asm__] = ACTIONS(3762), + [anon_sym___asm] = ACTIONS(3762), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3764), + [anon_sym_u_SQUOTE] = ACTIONS(3764), + [anon_sym_U_SQUOTE] = ACTIONS(3764), + [anon_sym_u8_SQUOTE] = ACTIONS(3764), + [anon_sym_SQUOTE] = ACTIONS(3764), + [anon_sym_L_DQUOTE] = ACTIONS(3764), + [anon_sym_u_DQUOTE] = ACTIONS(3764), + [anon_sym_U_DQUOTE] = ACTIONS(3764), + [anon_sym_u8_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE] = ACTIONS(3764), + [sym_true] = ACTIONS(3762), + [sym_false] = ACTIONS(3762), + [anon_sym_NULL] = ACTIONS(3762), + [anon_sym_nullptr] = ACTIONS(3762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3762), + [anon_sym_decltype] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_export] = ACTIONS(3762), + [anon_sym_import] = ACTIONS(3762), + [anon_sym_template] = ACTIONS(3762), + [anon_sym_operator] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_delete] = ACTIONS(3762), + [anon_sym_throw] = ACTIONS(3762), + [anon_sym_namespace] = ACTIONS(3762), + [anon_sym_static_assert] = ACTIONS(3762), + [anon_sym_concept] = ACTIONS(3762), + [anon_sym_co_return] = ACTIONS(3762), + [anon_sym_co_yield] = ACTIONS(3762), + [anon_sym_R_DQUOTE] = ACTIONS(3764), + [anon_sym_LR_DQUOTE] = ACTIONS(3764), + [anon_sym_uR_DQUOTE] = ACTIONS(3764), + [anon_sym_UR_DQUOTE] = ACTIONS(3764), + [anon_sym_u8R_DQUOTE] = ACTIONS(3764), + [anon_sym_co_await] = ACTIONS(3762), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_requires] = ACTIONS(3762), + [anon_sym_CARET_CARET] = ACTIONS(3764), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), + [sym_this] = ACTIONS(3762), }, [STATE(818)] = { - [sym_identifier] = ACTIONS(4262), - [aux_sym_preproc_include_token1] = ACTIONS(4262), - [aux_sym_preproc_def_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token1] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), - [sym_preproc_directive] = ACTIONS(4262), - [anon_sym_LPAREN2] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_TILDE] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym___extension__] = ACTIONS(4262), - [anon_sym_typedef] = ACTIONS(4262), - [anon_sym_virtual] = ACTIONS(4262), - [anon_sym_extern] = ACTIONS(4262), - [anon_sym___attribute__] = ACTIONS(4262), - [anon_sym___attribute] = ACTIONS(4262), - [anon_sym_using] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), - [anon_sym___declspec] = ACTIONS(4262), - [anon_sym___based] = ACTIONS(4262), - [anon_sym___cdecl] = ACTIONS(4262), - [anon_sym___clrcall] = ACTIONS(4262), - [anon_sym___stdcall] = ACTIONS(4262), - [anon_sym___fastcall] = ACTIONS(4262), - [anon_sym___thiscall] = ACTIONS(4262), - [anon_sym___vectorcall] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_signed] = ACTIONS(4262), - [anon_sym_unsigned] = ACTIONS(4262), - [anon_sym_long] = ACTIONS(4262), - [anon_sym_short] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_static] = ACTIONS(4262), - [anon_sym_register] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym___inline] = ACTIONS(4262), - [anon_sym___inline__] = ACTIONS(4262), - [anon_sym___forceinline] = ACTIONS(4262), - [anon_sym_thread_local] = ACTIONS(4262), - [anon_sym___thread] = ACTIONS(4262), - [anon_sym_const] = ACTIONS(4262), - [anon_sym_constexpr] = ACTIONS(4262), - [anon_sym_volatile] = ACTIONS(4262), - [anon_sym_restrict] = ACTIONS(4262), - [anon_sym___restrict__] = ACTIONS(4262), - [anon_sym__Atomic] = ACTIONS(4262), - [anon_sym__Noreturn] = ACTIONS(4262), - [anon_sym_noreturn] = ACTIONS(4262), - [anon_sym__Nonnull] = ACTIONS(4262), - [anon_sym_mutable] = ACTIONS(4262), - [anon_sym_constinit] = ACTIONS(4262), - [anon_sym_consteval] = ACTIONS(4262), - [anon_sym_alignas] = ACTIONS(4262), - [anon_sym__Alignas] = ACTIONS(4262), - [sym_primitive_type] = ACTIONS(4262), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_class] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4262), - [anon_sym_union] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_switch] = ACTIONS(4262), - [anon_sym_case] = ACTIONS(4262), - [anon_sym_default] = ACTIONS(4262), - [anon_sym_while] = ACTIONS(4262), - [anon_sym_do] = ACTIONS(4262), - [anon_sym_for] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_goto] = ACTIONS(4262), - [anon_sym___try] = ACTIONS(4262), - [anon_sym___leave] = ACTIONS(4262), - [anon_sym_not] = ACTIONS(4262), - [anon_sym_compl] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_sizeof] = ACTIONS(4262), - [anon_sym___alignof__] = ACTIONS(4262), - [anon_sym___alignof] = ACTIONS(4262), - [anon_sym__alignof] = ACTIONS(4262), - [anon_sym_alignof] = ACTIONS(4262), - [anon_sym__Alignof] = ACTIONS(4262), - [anon_sym_offsetof] = ACTIONS(4262), - [anon_sym__Generic] = ACTIONS(4262), - [anon_sym_typename] = ACTIONS(4262), - [anon_sym_asm] = ACTIONS(4262), - [anon_sym___asm__] = ACTIONS(4262), - [anon_sym___asm] = ACTIONS(4262), - [sym_number_literal] = ACTIONS(4264), - [anon_sym_L_SQUOTE] = ACTIONS(4264), - [anon_sym_u_SQUOTE] = ACTIONS(4264), - [anon_sym_U_SQUOTE] = ACTIONS(4264), - [anon_sym_u8_SQUOTE] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4264), - [anon_sym_L_DQUOTE] = ACTIONS(4264), - [anon_sym_u_DQUOTE] = ACTIONS(4264), - [anon_sym_U_DQUOTE] = ACTIONS(4264), - [anon_sym_u8_DQUOTE] = ACTIONS(4264), - [anon_sym_DQUOTE] = ACTIONS(4264), - [sym_true] = ACTIONS(4262), - [sym_false] = ACTIONS(4262), - [anon_sym_NULL] = ACTIONS(4262), - [anon_sym_nullptr] = ACTIONS(4262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4262), - [anon_sym_decltype] = ACTIONS(4262), - [anon_sym_explicit] = ACTIONS(4262), - [anon_sym_export] = ACTIONS(4262), - [anon_sym_import] = ACTIONS(4262), - [anon_sym_template] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_try] = ACTIONS(4262), - [anon_sym_delete] = ACTIONS(4262), - [anon_sym_throw] = ACTIONS(4262), - [anon_sym_namespace] = ACTIONS(4262), - [anon_sym_static_assert] = ACTIONS(4262), - [anon_sym_concept] = ACTIONS(4262), - [anon_sym_co_return] = ACTIONS(4262), - [anon_sym_co_yield] = ACTIONS(4262), - [anon_sym_R_DQUOTE] = ACTIONS(4264), - [anon_sym_LR_DQUOTE] = ACTIONS(4264), - [anon_sym_uR_DQUOTE] = ACTIONS(4264), - [anon_sym_UR_DQUOTE] = ACTIONS(4264), - [anon_sym_u8R_DQUOTE] = ACTIONS(4264), - [anon_sym_co_await] = ACTIONS(4262), - [anon_sym_new] = ACTIONS(4262), - [anon_sym_requires] = ACTIONS(4262), - [anon_sym_CARET_CARET] = ACTIONS(4264), - [anon_sym_LBRACK_COLON] = ACTIONS(4264), - [sym_this] = ACTIONS(4262), + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_include_token1] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_BANG] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym___cdecl] = ACTIONS(4048), + [anon_sym___clrcall] = ACTIONS(4048), + [anon_sym___stdcall] = ACTIONS(4048), + [anon_sym___fastcall] = ACTIONS(4048), + [anon_sym___thiscall] = ACTIONS(4048), + [anon_sym___vectorcall] = ACTIONS(4048), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(4048), + [anon_sym_case] = ACTIONS(4048), + [anon_sym_default] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(4048), + [anon_sym_do] = ACTIONS(4048), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_break] = ACTIONS(4048), + [anon_sym_continue] = ACTIONS(4048), + [anon_sym_goto] = ACTIONS(4048), + [anon_sym___try] = ACTIONS(4048), + [anon_sym___leave] = ACTIONS(4048), + [anon_sym_not] = ACTIONS(4048), + [anon_sym_compl] = ACTIONS(4048), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_sizeof] = ACTIONS(4048), + [anon_sym___alignof__] = ACTIONS(4048), + [anon_sym___alignof] = ACTIONS(4048), + [anon_sym__alignof] = ACTIONS(4048), + [anon_sym_alignof] = ACTIONS(4048), + [anon_sym__Alignof] = ACTIONS(4048), + [anon_sym_offsetof] = ACTIONS(4048), + [anon_sym__Generic] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [anon_sym_asm] = ACTIONS(4048), + [anon_sym___asm__] = ACTIONS(4048), + [anon_sym___asm] = ACTIONS(4048), + [sym_number_literal] = ACTIONS(4050), + [anon_sym_L_SQUOTE] = ACTIONS(4050), + [anon_sym_u_SQUOTE] = ACTIONS(4050), + [anon_sym_U_SQUOTE] = ACTIONS(4050), + [anon_sym_u8_SQUOTE] = ACTIONS(4050), + [anon_sym_SQUOTE] = ACTIONS(4050), + [anon_sym_L_DQUOTE] = ACTIONS(4050), + [anon_sym_u_DQUOTE] = ACTIONS(4050), + [anon_sym_U_DQUOTE] = ACTIONS(4050), + [anon_sym_u8_DQUOTE] = ACTIONS(4050), + [anon_sym_DQUOTE] = ACTIONS(4050), + [sym_true] = ACTIONS(4048), + [sym_false] = ACTIONS(4048), + [anon_sym_NULL] = ACTIONS(4048), + [anon_sym_nullptr] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_export] = ACTIONS(4048), + [anon_sym_import] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_try] = ACTIONS(4048), + [anon_sym_delete] = ACTIONS(4048), + [anon_sym_throw] = ACTIONS(4048), + [anon_sym_namespace] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_concept] = ACTIONS(4048), + [anon_sym_co_return] = ACTIONS(4048), + [anon_sym_co_yield] = ACTIONS(4048), + [anon_sym_R_DQUOTE] = ACTIONS(4050), + [anon_sym_LR_DQUOTE] = ACTIONS(4050), + [anon_sym_uR_DQUOTE] = ACTIONS(4050), + [anon_sym_UR_DQUOTE] = ACTIONS(4050), + [anon_sym_u8R_DQUOTE] = ACTIONS(4050), + [anon_sym_co_await] = ACTIONS(4048), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_requires] = ACTIONS(4048), + [anon_sym_CARET_CARET] = ACTIONS(4050), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), }, [STATE(819)] = { - [sym_identifier] = ACTIONS(4266), - [aux_sym_preproc_include_token1] = ACTIONS(4266), - [aux_sym_preproc_def_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token1] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), - [sym_preproc_directive] = ACTIONS(4266), - [anon_sym_LPAREN2] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym___extension__] = ACTIONS(4266), - [anon_sym_typedef] = ACTIONS(4266), - [anon_sym_virtual] = ACTIONS(4266), - [anon_sym_extern] = ACTIONS(4266), - [anon_sym___attribute__] = ACTIONS(4266), - [anon_sym___attribute] = ACTIONS(4266), - [anon_sym_using] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), - [anon_sym___declspec] = ACTIONS(4266), - [anon_sym___based] = ACTIONS(4266), - [anon_sym___cdecl] = ACTIONS(4266), - [anon_sym___clrcall] = ACTIONS(4266), - [anon_sym___stdcall] = ACTIONS(4266), - [anon_sym___fastcall] = ACTIONS(4266), - [anon_sym___thiscall] = ACTIONS(4266), - [anon_sym___vectorcall] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_signed] = ACTIONS(4266), - [anon_sym_unsigned] = ACTIONS(4266), - [anon_sym_long] = ACTIONS(4266), - [anon_sym_short] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_static] = ACTIONS(4266), - [anon_sym_register] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym___inline] = ACTIONS(4266), - [anon_sym___inline__] = ACTIONS(4266), - [anon_sym___forceinline] = ACTIONS(4266), - [anon_sym_thread_local] = ACTIONS(4266), - [anon_sym___thread] = ACTIONS(4266), - [anon_sym_const] = ACTIONS(4266), - [anon_sym_constexpr] = ACTIONS(4266), - [anon_sym_volatile] = ACTIONS(4266), - [anon_sym_restrict] = ACTIONS(4266), - [anon_sym___restrict__] = ACTIONS(4266), - [anon_sym__Atomic] = ACTIONS(4266), - [anon_sym__Noreturn] = ACTIONS(4266), - [anon_sym_noreturn] = ACTIONS(4266), - [anon_sym__Nonnull] = ACTIONS(4266), - [anon_sym_mutable] = ACTIONS(4266), - [anon_sym_constinit] = ACTIONS(4266), - [anon_sym_consteval] = ACTIONS(4266), - [anon_sym_alignas] = ACTIONS(4266), - [anon_sym__Alignas] = ACTIONS(4266), - [sym_primitive_type] = ACTIONS(4266), - [anon_sym_enum] = ACTIONS(4266), - [anon_sym_class] = ACTIONS(4266), - [anon_sym_struct] = ACTIONS(4266), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_switch] = ACTIONS(4266), - [anon_sym_case] = ACTIONS(4266), - [anon_sym_default] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_do] = ACTIONS(4266), - [anon_sym_for] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_goto] = ACTIONS(4266), - [anon_sym___try] = ACTIONS(4266), - [anon_sym___leave] = ACTIONS(4266), - [anon_sym_not] = ACTIONS(4266), - [anon_sym_compl] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_sizeof] = ACTIONS(4266), - [anon_sym___alignof__] = ACTIONS(4266), - [anon_sym___alignof] = ACTIONS(4266), - [anon_sym__alignof] = ACTIONS(4266), - [anon_sym_alignof] = ACTIONS(4266), - [anon_sym__Alignof] = ACTIONS(4266), - [anon_sym_offsetof] = ACTIONS(4266), - [anon_sym__Generic] = ACTIONS(4266), - [anon_sym_typename] = ACTIONS(4266), - [anon_sym_asm] = ACTIONS(4266), - [anon_sym___asm__] = ACTIONS(4266), - [anon_sym___asm] = ACTIONS(4266), - [sym_number_literal] = ACTIONS(4268), - [anon_sym_L_SQUOTE] = ACTIONS(4268), - [anon_sym_u_SQUOTE] = ACTIONS(4268), - [anon_sym_U_SQUOTE] = ACTIONS(4268), - [anon_sym_u8_SQUOTE] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4268), - [anon_sym_L_DQUOTE] = ACTIONS(4268), - [anon_sym_u_DQUOTE] = ACTIONS(4268), - [anon_sym_U_DQUOTE] = ACTIONS(4268), - [anon_sym_u8_DQUOTE] = ACTIONS(4268), - [anon_sym_DQUOTE] = ACTIONS(4268), - [sym_true] = ACTIONS(4266), - [sym_false] = ACTIONS(4266), - [anon_sym_NULL] = ACTIONS(4266), - [anon_sym_nullptr] = ACTIONS(4266), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4266), - [anon_sym_decltype] = ACTIONS(4266), - [anon_sym_explicit] = ACTIONS(4266), - [anon_sym_export] = ACTIONS(4266), - [anon_sym_import] = ACTIONS(4266), - [anon_sym_template] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_delete] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_namespace] = ACTIONS(4266), - [anon_sym_static_assert] = ACTIONS(4266), - [anon_sym_concept] = ACTIONS(4266), - [anon_sym_co_return] = ACTIONS(4266), - [anon_sym_co_yield] = ACTIONS(4266), - [anon_sym_R_DQUOTE] = ACTIONS(4268), - [anon_sym_LR_DQUOTE] = ACTIONS(4268), - [anon_sym_uR_DQUOTE] = ACTIONS(4268), - [anon_sym_UR_DQUOTE] = ACTIONS(4268), - [anon_sym_u8R_DQUOTE] = ACTIONS(4268), - [anon_sym_co_await] = ACTIONS(4266), - [anon_sym_new] = ACTIONS(4266), - [anon_sym_requires] = ACTIONS(4266), - [anon_sym_CARET_CARET] = ACTIONS(4268), - [anon_sym_LBRACK_COLON] = ACTIONS(4268), - [sym_this] = ACTIONS(4266), + [sym_identifier] = ACTIONS(3842), + [aux_sym_preproc_include_token1] = ACTIONS(3842), + [aux_sym_preproc_def_token1] = ACTIONS(3842), + [aux_sym_preproc_if_token1] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3842), + [sym_preproc_directive] = ACTIONS(3842), + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_BANG] = ACTIONS(3844), + [anon_sym_TILDE] = ACTIONS(3844), + [anon_sym_DASH] = ACTIONS(3842), + [anon_sym_PLUS] = ACTIONS(3842), + [anon_sym_STAR] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym___extension__] = ACTIONS(3842), + [anon_sym_typedef] = ACTIONS(3842), + [anon_sym_virtual] = ACTIONS(3842), + [anon_sym_extern] = ACTIONS(3842), + [anon_sym___attribute__] = ACTIONS(3842), + [anon_sym___attribute] = ACTIONS(3842), + [anon_sym_using] = ACTIONS(3842), + [anon_sym_COLON_COLON] = ACTIONS(3844), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3844), + [anon_sym___declspec] = ACTIONS(3842), + [anon_sym___based] = ACTIONS(3842), + [anon_sym___cdecl] = ACTIONS(3842), + [anon_sym___clrcall] = ACTIONS(3842), + [anon_sym___stdcall] = ACTIONS(3842), + [anon_sym___fastcall] = ACTIONS(3842), + [anon_sym___thiscall] = ACTIONS(3842), + [anon_sym___vectorcall] = ACTIONS(3842), + [anon_sym_LBRACE] = ACTIONS(3844), + [anon_sym_RBRACE] = ACTIONS(3844), + [anon_sym_signed] = ACTIONS(3842), + [anon_sym_unsigned] = ACTIONS(3842), + [anon_sym_long] = ACTIONS(3842), + [anon_sym_short] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_static] = ACTIONS(3842), + [anon_sym_register] = ACTIONS(3842), + [anon_sym_inline] = ACTIONS(3842), + [anon_sym___inline] = ACTIONS(3842), + [anon_sym___inline__] = ACTIONS(3842), + [anon_sym___forceinline] = ACTIONS(3842), + [anon_sym_thread_local] = ACTIONS(3842), + [anon_sym___thread] = ACTIONS(3842), + [anon_sym_const] = ACTIONS(3842), + [anon_sym_constexpr] = ACTIONS(3842), + [anon_sym_volatile] = ACTIONS(3842), + [anon_sym_restrict] = ACTIONS(3842), + [anon_sym___restrict__] = ACTIONS(3842), + [anon_sym__Atomic] = ACTIONS(3842), + [anon_sym__Noreturn] = ACTIONS(3842), + [anon_sym_noreturn] = ACTIONS(3842), + [anon_sym__Nonnull] = ACTIONS(3842), + [anon_sym_mutable] = ACTIONS(3842), + [anon_sym_constinit] = ACTIONS(3842), + [anon_sym_consteval] = ACTIONS(3842), + [anon_sym_alignas] = ACTIONS(3842), + [anon_sym__Alignas] = ACTIONS(3842), + [sym_primitive_type] = ACTIONS(3842), + [anon_sym_enum] = ACTIONS(3842), + [anon_sym_class] = ACTIONS(3842), + [anon_sym_struct] = ACTIONS(3842), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_if] = ACTIONS(3842), + [anon_sym_switch] = ACTIONS(3842), + [anon_sym_case] = ACTIONS(3842), + [anon_sym_default] = ACTIONS(3842), + [anon_sym_while] = ACTIONS(3842), + [anon_sym_do] = ACTIONS(3842), + [anon_sym_for] = ACTIONS(3842), + [anon_sym_return] = ACTIONS(3842), + [anon_sym_break] = ACTIONS(3842), + [anon_sym_continue] = ACTIONS(3842), + [anon_sym_goto] = ACTIONS(3842), + [anon_sym___try] = ACTIONS(3842), + [anon_sym___leave] = ACTIONS(3842), + [anon_sym_not] = ACTIONS(3842), + [anon_sym_compl] = ACTIONS(3842), + [anon_sym_DASH_DASH] = ACTIONS(3844), + [anon_sym_PLUS_PLUS] = ACTIONS(3844), + [anon_sym_sizeof] = ACTIONS(3842), + [anon_sym___alignof__] = ACTIONS(3842), + [anon_sym___alignof] = ACTIONS(3842), + [anon_sym__alignof] = ACTIONS(3842), + [anon_sym_alignof] = ACTIONS(3842), + [anon_sym__Alignof] = ACTIONS(3842), + [anon_sym_offsetof] = ACTIONS(3842), + [anon_sym__Generic] = ACTIONS(3842), + [anon_sym_typename] = ACTIONS(3842), + [anon_sym_asm] = ACTIONS(3842), + [anon_sym___asm__] = ACTIONS(3842), + [anon_sym___asm] = ACTIONS(3842), + [sym_number_literal] = ACTIONS(3844), + [anon_sym_L_SQUOTE] = ACTIONS(3844), + [anon_sym_u_SQUOTE] = ACTIONS(3844), + [anon_sym_U_SQUOTE] = ACTIONS(3844), + [anon_sym_u8_SQUOTE] = ACTIONS(3844), + [anon_sym_SQUOTE] = ACTIONS(3844), + [anon_sym_L_DQUOTE] = ACTIONS(3844), + [anon_sym_u_DQUOTE] = ACTIONS(3844), + [anon_sym_U_DQUOTE] = ACTIONS(3844), + [anon_sym_u8_DQUOTE] = ACTIONS(3844), + [anon_sym_DQUOTE] = ACTIONS(3844), + [sym_true] = ACTIONS(3842), + [sym_false] = ACTIONS(3842), + [anon_sym_NULL] = ACTIONS(3842), + [anon_sym_nullptr] = ACTIONS(3842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3842), + [anon_sym_decltype] = ACTIONS(3842), + [anon_sym_explicit] = ACTIONS(3842), + [anon_sym_export] = ACTIONS(3842), + [anon_sym_import] = ACTIONS(3842), + [anon_sym_template] = ACTIONS(3842), + [anon_sym_operator] = ACTIONS(3842), + [anon_sym_try] = ACTIONS(3842), + [anon_sym_delete] = ACTIONS(3842), + [anon_sym_throw] = ACTIONS(3842), + [anon_sym_namespace] = ACTIONS(3842), + [anon_sym_static_assert] = ACTIONS(3842), + [anon_sym_concept] = ACTIONS(3842), + [anon_sym_co_return] = ACTIONS(3842), + [anon_sym_co_yield] = ACTIONS(3842), + [anon_sym_R_DQUOTE] = ACTIONS(3844), + [anon_sym_LR_DQUOTE] = ACTIONS(3844), + [anon_sym_uR_DQUOTE] = ACTIONS(3844), + [anon_sym_UR_DQUOTE] = ACTIONS(3844), + [anon_sym_u8R_DQUOTE] = ACTIONS(3844), + [anon_sym_co_await] = ACTIONS(3842), + [anon_sym_new] = ACTIONS(3842), + [anon_sym_requires] = ACTIONS(3842), + [anon_sym_CARET_CARET] = ACTIONS(3844), + [anon_sym_LBRACK_COLON] = ACTIONS(3844), + [sym_this] = ACTIONS(3842), }, [STATE(820)] = { - [sym_identifier] = ACTIONS(4008), - [aux_sym_preproc_include_token1] = ACTIONS(4008), - [aux_sym_preproc_def_token1] = ACTIONS(4008), - [aux_sym_preproc_if_token1] = ACTIONS(4008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4008), - [sym_preproc_directive] = ACTIONS(4008), - [anon_sym_LPAREN2] = ACTIONS(4010), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_TILDE] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym___extension__] = ACTIONS(4008), - [anon_sym_typedef] = ACTIONS(4008), - [anon_sym_virtual] = ACTIONS(4008), - [anon_sym_extern] = ACTIONS(4008), - [anon_sym___attribute__] = ACTIONS(4008), - [anon_sym___attribute] = ACTIONS(4008), - [anon_sym_using] = ACTIONS(4008), - [anon_sym_COLON_COLON] = ACTIONS(4010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4010), - [anon_sym___declspec] = ACTIONS(4008), - [anon_sym___based] = ACTIONS(4008), - [anon_sym___cdecl] = ACTIONS(4008), - [anon_sym___clrcall] = ACTIONS(4008), - [anon_sym___stdcall] = ACTIONS(4008), - [anon_sym___fastcall] = ACTIONS(4008), - [anon_sym___thiscall] = ACTIONS(4008), - [anon_sym___vectorcall] = ACTIONS(4008), - [anon_sym_LBRACE] = ACTIONS(4010), - [anon_sym_RBRACE] = ACTIONS(4010), - [anon_sym_signed] = ACTIONS(4008), - [anon_sym_unsigned] = ACTIONS(4008), - [anon_sym_long] = ACTIONS(4008), - [anon_sym_short] = ACTIONS(4008), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_static] = ACTIONS(4008), - [anon_sym_register] = ACTIONS(4008), - [anon_sym_inline] = ACTIONS(4008), - [anon_sym___inline] = ACTIONS(4008), - [anon_sym___inline__] = ACTIONS(4008), - [anon_sym___forceinline] = ACTIONS(4008), - [anon_sym_thread_local] = ACTIONS(4008), - [anon_sym___thread] = ACTIONS(4008), - [anon_sym_const] = ACTIONS(4008), - [anon_sym_constexpr] = ACTIONS(4008), - [anon_sym_volatile] = ACTIONS(4008), - [anon_sym_restrict] = ACTIONS(4008), - [anon_sym___restrict__] = ACTIONS(4008), - [anon_sym__Atomic] = ACTIONS(4008), - [anon_sym__Noreturn] = ACTIONS(4008), - [anon_sym_noreturn] = ACTIONS(4008), - [anon_sym__Nonnull] = ACTIONS(4008), - [anon_sym_mutable] = ACTIONS(4008), - [anon_sym_constinit] = ACTIONS(4008), - [anon_sym_consteval] = ACTIONS(4008), - [anon_sym_alignas] = ACTIONS(4008), - [anon_sym__Alignas] = ACTIONS(4008), - [sym_primitive_type] = ACTIONS(4008), - [anon_sym_enum] = ACTIONS(4008), - [anon_sym_class] = ACTIONS(4008), - [anon_sym_struct] = ACTIONS(4008), - [anon_sym_union] = ACTIONS(4008), - [anon_sym_if] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4008), - [anon_sym_case] = ACTIONS(4008), - [anon_sym_default] = ACTIONS(4008), - [anon_sym_while] = ACTIONS(4008), - [anon_sym_do] = ACTIONS(4008), - [anon_sym_for] = ACTIONS(4008), - [anon_sym_return] = ACTIONS(4008), - [anon_sym_break] = ACTIONS(4008), - [anon_sym_continue] = ACTIONS(4008), - [anon_sym_goto] = ACTIONS(4008), - [anon_sym___try] = ACTIONS(4008), - [anon_sym___leave] = ACTIONS(4008), - [anon_sym_not] = ACTIONS(4008), - [anon_sym_compl] = ACTIONS(4008), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_sizeof] = ACTIONS(4008), - [anon_sym___alignof__] = ACTIONS(4008), - [anon_sym___alignof] = ACTIONS(4008), - [anon_sym__alignof] = ACTIONS(4008), - [anon_sym_alignof] = ACTIONS(4008), - [anon_sym__Alignof] = ACTIONS(4008), - [anon_sym_offsetof] = ACTIONS(4008), - [anon_sym__Generic] = ACTIONS(4008), - [anon_sym_typename] = ACTIONS(4008), - [anon_sym_asm] = ACTIONS(4008), - [anon_sym___asm__] = ACTIONS(4008), - [anon_sym___asm] = ACTIONS(4008), - [sym_number_literal] = ACTIONS(4010), - [anon_sym_L_SQUOTE] = ACTIONS(4010), - [anon_sym_u_SQUOTE] = ACTIONS(4010), - [anon_sym_U_SQUOTE] = ACTIONS(4010), - [anon_sym_u8_SQUOTE] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4010), - [anon_sym_L_DQUOTE] = ACTIONS(4010), - [anon_sym_u_DQUOTE] = ACTIONS(4010), - [anon_sym_U_DQUOTE] = ACTIONS(4010), - [anon_sym_u8_DQUOTE] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [sym_true] = ACTIONS(4008), - [sym_false] = ACTIONS(4008), - [anon_sym_NULL] = ACTIONS(4008), - [anon_sym_nullptr] = ACTIONS(4008), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4008), - [anon_sym_decltype] = ACTIONS(4008), - [anon_sym_explicit] = ACTIONS(4008), - [anon_sym_export] = ACTIONS(4008), - [anon_sym_import] = ACTIONS(4008), - [anon_sym_template] = ACTIONS(4008), - [anon_sym_operator] = ACTIONS(4008), - [anon_sym_try] = ACTIONS(4008), - [anon_sym_delete] = ACTIONS(4008), - [anon_sym_throw] = ACTIONS(4008), - [anon_sym_namespace] = ACTIONS(4008), - [anon_sym_static_assert] = ACTIONS(4008), - [anon_sym_concept] = ACTIONS(4008), - [anon_sym_co_return] = ACTIONS(4008), - [anon_sym_co_yield] = ACTIONS(4008), - [anon_sym_R_DQUOTE] = ACTIONS(4010), - [anon_sym_LR_DQUOTE] = ACTIONS(4010), - [anon_sym_uR_DQUOTE] = ACTIONS(4010), - [anon_sym_UR_DQUOTE] = ACTIONS(4010), - [anon_sym_u8R_DQUOTE] = ACTIONS(4010), - [anon_sym_co_await] = ACTIONS(4008), - [anon_sym_new] = ACTIONS(4008), - [anon_sym_requires] = ACTIONS(4008), - [anon_sym_CARET_CARET] = ACTIONS(4010), - [anon_sym_LBRACK_COLON] = ACTIONS(4010), - [sym_this] = ACTIONS(4008), + [sym_identifier] = ACTIONS(4052), + [aux_sym_preproc_include_token1] = ACTIONS(4052), + [aux_sym_preproc_def_token1] = ACTIONS(4052), + [aux_sym_preproc_if_token1] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4052), + [sym_preproc_directive] = ACTIONS(4052), + [anon_sym_LPAREN2] = ACTIONS(4054), + [anon_sym_BANG] = ACTIONS(4054), + [anon_sym_TILDE] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_AMP_AMP] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym___extension__] = ACTIONS(4052), + [anon_sym_typedef] = ACTIONS(4052), + [anon_sym_virtual] = ACTIONS(4052), + [anon_sym_extern] = ACTIONS(4052), + [anon_sym___attribute__] = ACTIONS(4052), + [anon_sym___attribute] = ACTIONS(4052), + [anon_sym_using] = ACTIONS(4052), + [anon_sym_COLON_COLON] = ACTIONS(4054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4054), + [anon_sym___declspec] = ACTIONS(4052), + [anon_sym___based] = ACTIONS(4052), + [anon_sym___cdecl] = ACTIONS(4052), + [anon_sym___clrcall] = ACTIONS(4052), + [anon_sym___stdcall] = ACTIONS(4052), + [anon_sym___fastcall] = ACTIONS(4052), + [anon_sym___thiscall] = ACTIONS(4052), + [anon_sym___vectorcall] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_RBRACE] = ACTIONS(4054), + [anon_sym_signed] = ACTIONS(4052), + [anon_sym_unsigned] = ACTIONS(4052), + [anon_sym_long] = ACTIONS(4052), + [anon_sym_short] = ACTIONS(4052), + [anon_sym_LBRACK] = ACTIONS(4052), + [anon_sym_static] = ACTIONS(4052), + [anon_sym_register] = ACTIONS(4052), + [anon_sym_inline] = ACTIONS(4052), + [anon_sym___inline] = ACTIONS(4052), + [anon_sym___inline__] = ACTIONS(4052), + [anon_sym___forceinline] = ACTIONS(4052), + [anon_sym_thread_local] = ACTIONS(4052), + [anon_sym___thread] = ACTIONS(4052), + [anon_sym_const] = ACTIONS(4052), + [anon_sym_constexpr] = ACTIONS(4052), + [anon_sym_volatile] = ACTIONS(4052), + [anon_sym_restrict] = ACTIONS(4052), + [anon_sym___restrict__] = ACTIONS(4052), + [anon_sym__Atomic] = ACTIONS(4052), + [anon_sym__Noreturn] = ACTIONS(4052), + [anon_sym_noreturn] = ACTIONS(4052), + [anon_sym__Nonnull] = ACTIONS(4052), + [anon_sym_mutable] = ACTIONS(4052), + [anon_sym_constinit] = ACTIONS(4052), + [anon_sym_consteval] = ACTIONS(4052), + [anon_sym_alignas] = ACTIONS(4052), + [anon_sym__Alignas] = ACTIONS(4052), + [sym_primitive_type] = ACTIONS(4052), + [anon_sym_enum] = ACTIONS(4052), + [anon_sym_class] = ACTIONS(4052), + [anon_sym_struct] = ACTIONS(4052), + [anon_sym_union] = ACTIONS(4052), + [anon_sym_if] = ACTIONS(4052), + [anon_sym_switch] = ACTIONS(4052), + [anon_sym_case] = ACTIONS(4052), + [anon_sym_default] = ACTIONS(4052), + [anon_sym_while] = ACTIONS(4052), + [anon_sym_do] = ACTIONS(4052), + [anon_sym_for] = ACTIONS(4052), + [anon_sym_return] = ACTIONS(4052), + [anon_sym_break] = ACTIONS(4052), + [anon_sym_continue] = ACTIONS(4052), + [anon_sym_goto] = ACTIONS(4052), + [anon_sym___try] = ACTIONS(4052), + [anon_sym___leave] = ACTIONS(4052), + [anon_sym_not] = ACTIONS(4052), + [anon_sym_compl] = ACTIONS(4052), + [anon_sym_DASH_DASH] = ACTIONS(4054), + [anon_sym_PLUS_PLUS] = ACTIONS(4054), + [anon_sym_sizeof] = ACTIONS(4052), + [anon_sym___alignof__] = ACTIONS(4052), + [anon_sym___alignof] = ACTIONS(4052), + [anon_sym__alignof] = ACTIONS(4052), + [anon_sym_alignof] = ACTIONS(4052), + [anon_sym__Alignof] = ACTIONS(4052), + [anon_sym_offsetof] = ACTIONS(4052), + [anon_sym__Generic] = ACTIONS(4052), + [anon_sym_typename] = ACTIONS(4052), + [anon_sym_asm] = ACTIONS(4052), + [anon_sym___asm__] = ACTIONS(4052), + [anon_sym___asm] = ACTIONS(4052), + [sym_number_literal] = ACTIONS(4054), + [anon_sym_L_SQUOTE] = ACTIONS(4054), + [anon_sym_u_SQUOTE] = ACTIONS(4054), + [anon_sym_U_SQUOTE] = ACTIONS(4054), + [anon_sym_u8_SQUOTE] = ACTIONS(4054), + [anon_sym_SQUOTE] = ACTIONS(4054), + [anon_sym_L_DQUOTE] = ACTIONS(4054), + [anon_sym_u_DQUOTE] = ACTIONS(4054), + [anon_sym_U_DQUOTE] = ACTIONS(4054), + [anon_sym_u8_DQUOTE] = ACTIONS(4054), + [anon_sym_DQUOTE] = ACTIONS(4054), + [sym_true] = ACTIONS(4052), + [sym_false] = ACTIONS(4052), + [anon_sym_NULL] = ACTIONS(4052), + [anon_sym_nullptr] = ACTIONS(4052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4052), + [anon_sym_decltype] = ACTIONS(4052), + [anon_sym_explicit] = ACTIONS(4052), + [anon_sym_export] = ACTIONS(4052), + [anon_sym_import] = ACTIONS(4052), + [anon_sym_template] = ACTIONS(4052), + [anon_sym_operator] = ACTIONS(4052), + [anon_sym_try] = ACTIONS(4052), + [anon_sym_delete] = ACTIONS(4052), + [anon_sym_throw] = ACTIONS(4052), + [anon_sym_namespace] = ACTIONS(4052), + [anon_sym_static_assert] = ACTIONS(4052), + [anon_sym_concept] = ACTIONS(4052), + [anon_sym_co_return] = ACTIONS(4052), + [anon_sym_co_yield] = ACTIONS(4052), + [anon_sym_R_DQUOTE] = ACTIONS(4054), + [anon_sym_LR_DQUOTE] = ACTIONS(4054), + [anon_sym_uR_DQUOTE] = ACTIONS(4054), + [anon_sym_UR_DQUOTE] = ACTIONS(4054), + [anon_sym_u8R_DQUOTE] = ACTIONS(4054), + [anon_sym_co_await] = ACTIONS(4052), + [anon_sym_new] = ACTIONS(4052), + [anon_sym_requires] = ACTIONS(4052), + [anon_sym_CARET_CARET] = ACTIONS(4054), + [anon_sym_LBRACK_COLON] = ACTIONS(4054), + [sym_this] = ACTIONS(4052), }, [STATE(821)] = { - [sym_identifier] = ACTIONS(4012), - [aux_sym_preproc_include_token1] = ACTIONS(4012), - [aux_sym_preproc_def_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token1] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), - [sym_preproc_directive] = ACTIONS(4012), - [anon_sym_LPAREN2] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4014), - [anon_sym_TILDE] = ACTIONS(4014), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym___extension__] = ACTIONS(4012), - [anon_sym_typedef] = ACTIONS(4012), - [anon_sym_virtual] = ACTIONS(4012), - [anon_sym_extern] = ACTIONS(4012), - [anon_sym___attribute__] = ACTIONS(4012), - [anon_sym___attribute] = ACTIONS(4012), - [anon_sym_using] = ACTIONS(4012), - [anon_sym_COLON_COLON] = ACTIONS(4014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), - [anon_sym___declspec] = ACTIONS(4012), - [anon_sym___based] = ACTIONS(4012), - [anon_sym___cdecl] = ACTIONS(4012), - [anon_sym___clrcall] = ACTIONS(4012), - [anon_sym___stdcall] = ACTIONS(4012), - [anon_sym___fastcall] = ACTIONS(4012), - [anon_sym___thiscall] = ACTIONS(4012), - [anon_sym___vectorcall] = ACTIONS(4012), - [anon_sym_LBRACE] = ACTIONS(4014), - [anon_sym_RBRACE] = ACTIONS(4014), - [anon_sym_signed] = ACTIONS(4012), - [anon_sym_unsigned] = ACTIONS(4012), - [anon_sym_long] = ACTIONS(4012), - [anon_sym_short] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4012), - [anon_sym_static] = ACTIONS(4012), - [anon_sym_register] = ACTIONS(4012), - [anon_sym_inline] = ACTIONS(4012), - [anon_sym___inline] = ACTIONS(4012), - [anon_sym___inline__] = ACTIONS(4012), - [anon_sym___forceinline] = ACTIONS(4012), - [anon_sym_thread_local] = ACTIONS(4012), - [anon_sym___thread] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4012), - [anon_sym_constexpr] = ACTIONS(4012), - [anon_sym_volatile] = ACTIONS(4012), - [anon_sym_restrict] = ACTIONS(4012), - [anon_sym___restrict__] = ACTIONS(4012), - [anon_sym__Atomic] = ACTIONS(4012), - [anon_sym__Noreturn] = ACTIONS(4012), - [anon_sym_noreturn] = ACTIONS(4012), - [anon_sym__Nonnull] = ACTIONS(4012), - [anon_sym_mutable] = ACTIONS(4012), - [anon_sym_constinit] = ACTIONS(4012), - [anon_sym_consteval] = ACTIONS(4012), - [anon_sym_alignas] = ACTIONS(4012), - [anon_sym__Alignas] = ACTIONS(4012), - [sym_primitive_type] = ACTIONS(4012), - [anon_sym_enum] = ACTIONS(4012), - [anon_sym_class] = ACTIONS(4012), - [anon_sym_struct] = ACTIONS(4012), - [anon_sym_union] = ACTIONS(4012), - [anon_sym_if] = ACTIONS(4012), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_case] = ACTIONS(4012), - [anon_sym_default] = ACTIONS(4012), - [anon_sym_while] = ACTIONS(4012), - [anon_sym_do] = ACTIONS(4012), - [anon_sym_for] = ACTIONS(4012), - [anon_sym_return] = ACTIONS(4012), - [anon_sym_break] = ACTIONS(4012), - [anon_sym_continue] = ACTIONS(4012), - [anon_sym_goto] = ACTIONS(4012), - [anon_sym___try] = ACTIONS(4012), - [anon_sym___leave] = ACTIONS(4012), - [anon_sym_not] = ACTIONS(4012), - [anon_sym_compl] = ACTIONS(4012), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_sizeof] = ACTIONS(4012), - [anon_sym___alignof__] = ACTIONS(4012), - [anon_sym___alignof] = ACTIONS(4012), - [anon_sym__alignof] = ACTIONS(4012), - [anon_sym_alignof] = ACTIONS(4012), - [anon_sym__Alignof] = ACTIONS(4012), - [anon_sym_offsetof] = ACTIONS(4012), - [anon_sym__Generic] = ACTIONS(4012), - [anon_sym_typename] = ACTIONS(4012), - [anon_sym_asm] = ACTIONS(4012), - [anon_sym___asm__] = ACTIONS(4012), - [anon_sym___asm] = ACTIONS(4012), - [sym_number_literal] = ACTIONS(4014), - [anon_sym_L_SQUOTE] = ACTIONS(4014), - [anon_sym_u_SQUOTE] = ACTIONS(4014), - [anon_sym_U_SQUOTE] = ACTIONS(4014), - [anon_sym_u8_SQUOTE] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(4014), - [anon_sym_L_DQUOTE] = ACTIONS(4014), - [anon_sym_u_DQUOTE] = ACTIONS(4014), - [anon_sym_U_DQUOTE] = ACTIONS(4014), - [anon_sym_u8_DQUOTE] = ACTIONS(4014), - [anon_sym_DQUOTE] = ACTIONS(4014), - [sym_true] = ACTIONS(4012), - [sym_false] = ACTIONS(4012), - [anon_sym_NULL] = ACTIONS(4012), - [anon_sym_nullptr] = ACTIONS(4012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4012), - [anon_sym_decltype] = ACTIONS(4012), - [anon_sym_explicit] = ACTIONS(4012), - [anon_sym_export] = ACTIONS(4012), - [anon_sym_import] = ACTIONS(4012), - [anon_sym_template] = ACTIONS(4012), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_try] = ACTIONS(4012), - [anon_sym_delete] = ACTIONS(4012), - [anon_sym_throw] = ACTIONS(4012), - [anon_sym_namespace] = ACTIONS(4012), - [anon_sym_static_assert] = ACTIONS(4012), - [anon_sym_concept] = ACTIONS(4012), - [anon_sym_co_return] = ACTIONS(4012), - [anon_sym_co_yield] = ACTIONS(4012), - [anon_sym_R_DQUOTE] = ACTIONS(4014), - [anon_sym_LR_DQUOTE] = ACTIONS(4014), - [anon_sym_uR_DQUOTE] = ACTIONS(4014), - [anon_sym_UR_DQUOTE] = ACTIONS(4014), - [anon_sym_u8R_DQUOTE] = ACTIONS(4014), - [anon_sym_co_await] = ACTIONS(4012), - [anon_sym_new] = ACTIONS(4012), - [anon_sym_requires] = ACTIONS(4012), - [anon_sym_CARET_CARET] = ACTIONS(4014), - [anon_sym_LBRACK_COLON] = ACTIONS(4014), - [sym_this] = ACTIONS(4012), + [sym_identifier] = ACTIONS(4275), + [aux_sym_preproc_include_token1] = ACTIONS(4275), + [aux_sym_preproc_def_token1] = ACTIONS(4275), + [aux_sym_preproc_if_token1] = ACTIONS(4275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4275), + [sym_preproc_directive] = ACTIONS(4275), + [anon_sym_LPAREN2] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_TILDE] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_AMP] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_typedef] = ACTIONS(4275), + [anon_sym_virtual] = ACTIONS(4275), + [anon_sym_extern] = ACTIONS(4275), + [anon_sym___attribute__] = ACTIONS(4275), + [anon_sym___attribute] = ACTIONS(4275), + [anon_sym_using] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4278), + [anon_sym___declspec] = ACTIONS(4275), + [anon_sym___based] = ACTIONS(4275), + [anon_sym___cdecl] = ACTIONS(4275), + [anon_sym___clrcall] = ACTIONS(4275), + [anon_sym___stdcall] = ACTIONS(4275), + [anon_sym___fastcall] = ACTIONS(4275), + [anon_sym___thiscall] = ACTIONS(4275), + [anon_sym___vectorcall] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_RBRACE] = ACTIONS(4278), + [anon_sym_signed] = ACTIONS(4275), + [anon_sym_unsigned] = ACTIONS(4275), + [anon_sym_long] = ACTIONS(4275), + [anon_sym_short] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4275), + [anon_sym_static] = ACTIONS(4275), + [anon_sym_register] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym___inline] = ACTIONS(4275), + [anon_sym___inline__] = ACTIONS(4275), + [anon_sym___forceinline] = ACTIONS(4275), + [anon_sym_thread_local] = ACTIONS(4275), + [anon_sym___thread] = ACTIONS(4275), + [anon_sym_const] = ACTIONS(4275), + [anon_sym_constexpr] = ACTIONS(4275), + [anon_sym_volatile] = ACTIONS(4275), + [anon_sym_restrict] = ACTIONS(4275), + [anon_sym___restrict__] = ACTIONS(4275), + [anon_sym__Atomic] = ACTIONS(4275), + [anon_sym__Noreturn] = ACTIONS(4275), + [anon_sym_noreturn] = ACTIONS(4275), + [anon_sym__Nonnull] = ACTIONS(4275), + [anon_sym_mutable] = ACTIONS(4275), + [anon_sym_constinit] = ACTIONS(4275), + [anon_sym_consteval] = ACTIONS(4275), + [anon_sym_alignas] = ACTIONS(4275), + [anon_sym__Alignas] = ACTIONS(4275), + [sym_primitive_type] = ACTIONS(4275), + [anon_sym_enum] = ACTIONS(4275), + [anon_sym_class] = ACTIONS(4275), + [anon_sym_struct] = ACTIONS(4275), + [anon_sym_union] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_switch] = ACTIONS(4275), + [anon_sym_case] = ACTIONS(4275), + [anon_sym_default] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_do] = ACTIONS(4275), + [anon_sym_for] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_goto] = ACTIONS(4275), + [anon_sym___try] = ACTIONS(4275), + [anon_sym___leave] = ACTIONS(4275), + [anon_sym_not] = ACTIONS(4275), + [anon_sym_compl] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_sizeof] = ACTIONS(4275), + [anon_sym___alignof__] = ACTIONS(4275), + [anon_sym___alignof] = ACTIONS(4275), + [anon_sym__alignof] = ACTIONS(4275), + [anon_sym_alignof] = ACTIONS(4275), + [anon_sym__Alignof] = ACTIONS(4275), + [anon_sym_offsetof] = ACTIONS(4275), + [anon_sym__Generic] = ACTIONS(4275), + [anon_sym_typename] = ACTIONS(4275), + [anon_sym_asm] = ACTIONS(4275), + [anon_sym___asm__] = ACTIONS(4275), + [anon_sym___asm] = ACTIONS(4275), + [sym_number_literal] = ACTIONS(4278), + [anon_sym_L_SQUOTE] = ACTIONS(4278), + [anon_sym_u_SQUOTE] = ACTIONS(4278), + [anon_sym_U_SQUOTE] = ACTIONS(4278), + [anon_sym_u8_SQUOTE] = ACTIONS(4278), + [anon_sym_SQUOTE] = ACTIONS(4278), + [anon_sym_L_DQUOTE] = ACTIONS(4278), + [anon_sym_u_DQUOTE] = ACTIONS(4278), + [anon_sym_U_DQUOTE] = ACTIONS(4278), + [anon_sym_u8_DQUOTE] = ACTIONS(4278), + [anon_sym_DQUOTE] = ACTIONS(4278), + [sym_true] = ACTIONS(4275), + [sym_false] = ACTIONS(4275), + [anon_sym_NULL] = ACTIONS(4275), + [anon_sym_nullptr] = ACTIONS(4275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4275), + [anon_sym_decltype] = ACTIONS(4275), + [anon_sym_explicit] = ACTIONS(4275), + [anon_sym_export] = ACTIONS(4275), + [anon_sym_import] = ACTIONS(4275), + [anon_sym_template] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_delete] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_namespace] = ACTIONS(4275), + [anon_sym_static_assert] = ACTIONS(4275), + [anon_sym_concept] = ACTIONS(4275), + [anon_sym_co_return] = ACTIONS(4275), + [anon_sym_co_yield] = ACTIONS(4275), + [anon_sym_R_DQUOTE] = ACTIONS(4278), + [anon_sym_LR_DQUOTE] = ACTIONS(4278), + [anon_sym_uR_DQUOTE] = ACTIONS(4278), + [anon_sym_UR_DQUOTE] = ACTIONS(4278), + [anon_sym_u8R_DQUOTE] = ACTIONS(4278), + [anon_sym_co_await] = ACTIONS(4275), + [anon_sym_new] = ACTIONS(4275), + [anon_sym_requires] = ACTIONS(4275), + [anon_sym_CARET_CARET] = ACTIONS(4278), + [anon_sym_LBRACK_COLON] = ACTIONS(4278), + [sym_this] = ACTIONS(4275), }, [STATE(822)] = { - [sym_identifier] = ACTIONS(3996), - [aux_sym_preproc_include_token1] = ACTIONS(3996), - [aux_sym_preproc_def_token1] = ACTIONS(3996), - [aux_sym_preproc_if_token1] = ACTIONS(3996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3996), - [sym_preproc_directive] = ACTIONS(3996), - [anon_sym_LPAREN2] = ACTIONS(3998), - [anon_sym_BANG] = ACTIONS(3998), - [anon_sym_TILDE] = ACTIONS(3998), - [anon_sym_DASH] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3996), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(3996), - [anon_sym_SEMI] = ACTIONS(3998), - [anon_sym___extension__] = ACTIONS(3996), - [anon_sym_typedef] = ACTIONS(3996), - [anon_sym_virtual] = ACTIONS(3996), - [anon_sym_extern] = ACTIONS(3996), - [anon_sym___attribute__] = ACTIONS(3996), - [anon_sym___attribute] = ACTIONS(3996), - [anon_sym_using] = ACTIONS(3996), - [anon_sym_COLON_COLON] = ACTIONS(3998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3998), - [anon_sym___declspec] = ACTIONS(3996), - [anon_sym___based] = ACTIONS(3996), - [anon_sym___cdecl] = ACTIONS(3996), - [anon_sym___clrcall] = ACTIONS(3996), - [anon_sym___stdcall] = ACTIONS(3996), - [anon_sym___fastcall] = ACTIONS(3996), - [anon_sym___thiscall] = ACTIONS(3996), - [anon_sym___vectorcall] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3998), - [anon_sym_RBRACE] = ACTIONS(3998), - [anon_sym_signed] = ACTIONS(3996), - [anon_sym_unsigned] = ACTIONS(3996), - [anon_sym_long] = ACTIONS(3996), - [anon_sym_short] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3996), - [anon_sym_static] = ACTIONS(3996), - [anon_sym_register] = ACTIONS(3996), - [anon_sym_inline] = ACTIONS(3996), - [anon_sym___inline] = ACTIONS(3996), - [anon_sym___inline__] = ACTIONS(3996), - [anon_sym___forceinline] = ACTIONS(3996), - [anon_sym_thread_local] = ACTIONS(3996), - [anon_sym___thread] = ACTIONS(3996), - [anon_sym_const] = ACTIONS(3996), - [anon_sym_constexpr] = ACTIONS(3996), - [anon_sym_volatile] = ACTIONS(3996), - [anon_sym_restrict] = ACTIONS(3996), - [anon_sym___restrict__] = ACTIONS(3996), - [anon_sym__Atomic] = ACTIONS(3996), - [anon_sym__Noreturn] = ACTIONS(3996), - [anon_sym_noreturn] = ACTIONS(3996), - [anon_sym__Nonnull] = ACTIONS(3996), - [anon_sym_mutable] = ACTIONS(3996), - [anon_sym_constinit] = ACTIONS(3996), - [anon_sym_consteval] = ACTIONS(3996), - [anon_sym_alignas] = ACTIONS(3996), - [anon_sym__Alignas] = ACTIONS(3996), - [sym_primitive_type] = ACTIONS(3996), - [anon_sym_enum] = ACTIONS(3996), - [anon_sym_class] = ACTIONS(3996), - [anon_sym_struct] = ACTIONS(3996), - [anon_sym_union] = ACTIONS(3996), - [anon_sym_if] = ACTIONS(3996), - [anon_sym_switch] = ACTIONS(3996), - [anon_sym_case] = ACTIONS(3996), - [anon_sym_default] = ACTIONS(3996), - [anon_sym_while] = ACTIONS(3996), - [anon_sym_do] = ACTIONS(3996), - [anon_sym_for] = ACTIONS(3996), - [anon_sym_return] = ACTIONS(3996), - [anon_sym_break] = ACTIONS(3996), - [anon_sym_continue] = ACTIONS(3996), - [anon_sym_goto] = ACTIONS(3996), - [anon_sym___try] = ACTIONS(3996), - [anon_sym___leave] = ACTIONS(3996), - [anon_sym_not] = ACTIONS(3996), - [anon_sym_compl] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [anon_sym_PLUS_PLUS] = ACTIONS(3998), - [anon_sym_sizeof] = ACTIONS(3996), - [anon_sym___alignof__] = ACTIONS(3996), - [anon_sym___alignof] = ACTIONS(3996), - [anon_sym__alignof] = ACTIONS(3996), - [anon_sym_alignof] = ACTIONS(3996), - [anon_sym__Alignof] = ACTIONS(3996), - [anon_sym_offsetof] = ACTIONS(3996), - [anon_sym__Generic] = ACTIONS(3996), - [anon_sym_typename] = ACTIONS(3996), - [anon_sym_asm] = ACTIONS(3996), - [anon_sym___asm__] = ACTIONS(3996), - [anon_sym___asm] = ACTIONS(3996), - [sym_number_literal] = ACTIONS(3998), - [anon_sym_L_SQUOTE] = ACTIONS(3998), - [anon_sym_u_SQUOTE] = ACTIONS(3998), - [anon_sym_U_SQUOTE] = ACTIONS(3998), - [anon_sym_u8_SQUOTE] = ACTIONS(3998), - [anon_sym_SQUOTE] = ACTIONS(3998), - [anon_sym_L_DQUOTE] = ACTIONS(3998), - [anon_sym_u_DQUOTE] = ACTIONS(3998), - [anon_sym_U_DQUOTE] = ACTIONS(3998), - [anon_sym_u8_DQUOTE] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [sym_true] = ACTIONS(3996), - [sym_false] = ACTIONS(3996), - [anon_sym_NULL] = ACTIONS(3996), - [anon_sym_nullptr] = ACTIONS(3996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3996), - [anon_sym_decltype] = ACTIONS(3996), - [anon_sym_explicit] = ACTIONS(3996), - [anon_sym_export] = ACTIONS(3996), - [anon_sym_import] = ACTIONS(3996), - [anon_sym_template] = ACTIONS(3996), - [anon_sym_operator] = ACTIONS(3996), - [anon_sym_try] = ACTIONS(3996), - [anon_sym_delete] = ACTIONS(3996), - [anon_sym_throw] = ACTIONS(3996), - [anon_sym_namespace] = ACTIONS(3996), - [anon_sym_static_assert] = ACTIONS(3996), - [anon_sym_concept] = ACTIONS(3996), - [anon_sym_co_return] = ACTIONS(3996), - [anon_sym_co_yield] = ACTIONS(3996), - [anon_sym_R_DQUOTE] = ACTIONS(3998), - [anon_sym_LR_DQUOTE] = ACTIONS(3998), - [anon_sym_uR_DQUOTE] = ACTIONS(3998), - [anon_sym_UR_DQUOTE] = ACTIONS(3998), - [anon_sym_u8R_DQUOTE] = ACTIONS(3998), - [anon_sym_co_await] = ACTIONS(3996), - [anon_sym_new] = ACTIONS(3996), - [anon_sym_requires] = ACTIONS(3996), - [anon_sym_CARET_CARET] = ACTIONS(3998), - [anon_sym_LBRACK_COLON] = ACTIONS(3998), - [sym_this] = ACTIONS(3996), + [sym_identifier] = ACTIONS(4102), + [aux_sym_preproc_include_token1] = ACTIONS(4102), + [aux_sym_preproc_def_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token1] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4102), + [sym_preproc_directive] = ACTIONS(4102), + [anon_sym_LPAREN2] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_TILDE] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym___extension__] = ACTIONS(4102), + [anon_sym_typedef] = ACTIONS(4102), + [anon_sym_virtual] = ACTIONS(4102), + [anon_sym_extern] = ACTIONS(4102), + [anon_sym___attribute__] = ACTIONS(4102), + [anon_sym___attribute] = ACTIONS(4102), + [anon_sym_using] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4104), + [anon_sym___declspec] = ACTIONS(4102), + [anon_sym___based] = ACTIONS(4102), + [anon_sym___cdecl] = ACTIONS(4102), + [anon_sym___clrcall] = ACTIONS(4102), + [anon_sym___stdcall] = ACTIONS(4102), + [anon_sym___fastcall] = ACTIONS(4102), + [anon_sym___thiscall] = ACTIONS(4102), + [anon_sym___vectorcall] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_signed] = ACTIONS(4102), + [anon_sym_unsigned] = ACTIONS(4102), + [anon_sym_long] = ACTIONS(4102), + [anon_sym_short] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_static] = ACTIONS(4102), + [anon_sym_register] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym___inline] = ACTIONS(4102), + [anon_sym___inline__] = ACTIONS(4102), + [anon_sym___forceinline] = ACTIONS(4102), + [anon_sym_thread_local] = ACTIONS(4102), + [anon_sym___thread] = ACTIONS(4102), + [anon_sym_const] = ACTIONS(4102), + [anon_sym_constexpr] = ACTIONS(4102), + [anon_sym_volatile] = ACTIONS(4102), + [anon_sym_restrict] = ACTIONS(4102), + [anon_sym___restrict__] = ACTIONS(4102), + [anon_sym__Atomic] = ACTIONS(4102), + [anon_sym__Noreturn] = ACTIONS(4102), + [anon_sym_noreturn] = ACTIONS(4102), + [anon_sym__Nonnull] = ACTIONS(4102), + [anon_sym_mutable] = ACTIONS(4102), + [anon_sym_constinit] = ACTIONS(4102), + [anon_sym_consteval] = ACTIONS(4102), + [anon_sym_alignas] = ACTIONS(4102), + [anon_sym__Alignas] = ACTIONS(4102), + [sym_primitive_type] = ACTIONS(4102), + [anon_sym_enum] = ACTIONS(4102), + [anon_sym_class] = ACTIONS(4102), + [anon_sym_struct] = ACTIONS(4102), + [anon_sym_union] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_switch] = ACTIONS(4102), + [anon_sym_case] = ACTIONS(4102), + [anon_sym_default] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_do] = ACTIONS(4102), + [anon_sym_for] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_goto] = ACTIONS(4102), + [anon_sym___try] = ACTIONS(4102), + [anon_sym___leave] = ACTIONS(4102), + [anon_sym_not] = ACTIONS(4102), + [anon_sym_compl] = ACTIONS(4102), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_sizeof] = ACTIONS(4102), + [anon_sym___alignof__] = ACTIONS(4102), + [anon_sym___alignof] = ACTIONS(4102), + [anon_sym__alignof] = ACTIONS(4102), + [anon_sym_alignof] = ACTIONS(4102), + [anon_sym__Alignof] = ACTIONS(4102), + [anon_sym_offsetof] = ACTIONS(4102), + [anon_sym__Generic] = ACTIONS(4102), + [anon_sym_typename] = ACTIONS(4102), + [anon_sym_asm] = ACTIONS(4102), + [anon_sym___asm__] = ACTIONS(4102), + [anon_sym___asm] = ACTIONS(4102), + [sym_number_literal] = ACTIONS(4104), + [anon_sym_L_SQUOTE] = ACTIONS(4104), + [anon_sym_u_SQUOTE] = ACTIONS(4104), + [anon_sym_U_SQUOTE] = ACTIONS(4104), + [anon_sym_u8_SQUOTE] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4104), + [anon_sym_L_DQUOTE] = ACTIONS(4104), + [anon_sym_u_DQUOTE] = ACTIONS(4104), + [anon_sym_U_DQUOTE] = ACTIONS(4104), + [anon_sym_u8_DQUOTE] = ACTIONS(4104), + [anon_sym_DQUOTE] = ACTIONS(4104), + [sym_true] = ACTIONS(4102), + [sym_false] = ACTIONS(4102), + [anon_sym_NULL] = ACTIONS(4102), + [anon_sym_nullptr] = ACTIONS(4102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4102), + [anon_sym_decltype] = ACTIONS(4102), + [anon_sym_explicit] = ACTIONS(4102), + [anon_sym_export] = ACTIONS(4102), + [anon_sym_import] = ACTIONS(4102), + [anon_sym_template] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_delete] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_namespace] = ACTIONS(4102), + [anon_sym_static_assert] = ACTIONS(4102), + [anon_sym_concept] = ACTIONS(4102), + [anon_sym_co_return] = ACTIONS(4102), + [anon_sym_co_yield] = ACTIONS(4102), + [anon_sym_R_DQUOTE] = ACTIONS(4104), + [anon_sym_LR_DQUOTE] = ACTIONS(4104), + [anon_sym_uR_DQUOTE] = ACTIONS(4104), + [anon_sym_UR_DQUOTE] = ACTIONS(4104), + [anon_sym_u8R_DQUOTE] = ACTIONS(4104), + [anon_sym_co_await] = ACTIONS(4102), + [anon_sym_new] = ACTIONS(4102), + [anon_sym_requires] = ACTIONS(4102), + [anon_sym_CARET_CARET] = ACTIONS(4104), + [anon_sym_LBRACK_COLON] = ACTIONS(4104), + [sym_this] = ACTIONS(4102), }, [STATE(823)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_include_token1] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym___cdecl] = ACTIONS(4270), - [anon_sym___clrcall] = ACTIONS(4270), - [anon_sym___stdcall] = ACTIONS(4270), - [anon_sym___fastcall] = ACTIONS(4270), - [anon_sym___thiscall] = ACTIONS(4270), - [anon_sym___vectorcall] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_switch] = ACTIONS(4270), - [anon_sym_case] = ACTIONS(4270), - [anon_sym_default] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_do] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_goto] = ACTIONS(4270), - [anon_sym___try] = ACTIONS(4270), - [anon_sym___leave] = ACTIONS(4270), - [anon_sym_not] = ACTIONS(4270), - [anon_sym_compl] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_sizeof] = ACTIONS(4270), - [anon_sym___alignof__] = ACTIONS(4270), - [anon_sym___alignof] = ACTIONS(4270), - [anon_sym__alignof] = ACTIONS(4270), - [anon_sym_alignof] = ACTIONS(4270), - [anon_sym__Alignof] = ACTIONS(4270), - [anon_sym_offsetof] = ACTIONS(4270), - [anon_sym__Generic] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4270), - [anon_sym___asm__] = ACTIONS(4270), - [anon_sym___asm] = ACTIONS(4270), - [sym_number_literal] = ACTIONS(4272), - [anon_sym_L_SQUOTE] = ACTIONS(4272), - [anon_sym_u_SQUOTE] = ACTIONS(4272), - [anon_sym_U_SQUOTE] = ACTIONS(4272), - [anon_sym_u8_SQUOTE] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4272), - [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(4270), - [sym_false] = ACTIONS(4270), - [anon_sym_NULL] = ACTIONS(4270), - [anon_sym_nullptr] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_export] = ACTIONS(4270), - [anon_sym_import] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_delete] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_namespace] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_concept] = ACTIONS(4270), - [anon_sym_co_return] = ACTIONS(4270), - [anon_sym_co_yield] = ACTIONS(4270), - [anon_sym_R_DQUOTE] = ACTIONS(4272), - [anon_sym_LR_DQUOTE] = ACTIONS(4272), - [anon_sym_uR_DQUOTE] = ACTIONS(4272), - [anon_sym_UR_DQUOTE] = ACTIONS(4272), - [anon_sym_u8R_DQUOTE] = ACTIONS(4272), - [anon_sym_co_await] = ACTIONS(4270), - [anon_sym_new] = ACTIONS(4270), - [anon_sym_requires] = ACTIONS(4270), - [anon_sym_CARET_CARET] = ACTIONS(4272), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - [sym_this] = ACTIONS(4270), - }, - [STATE(824)] = { - [sym_identifier] = ACTIONS(4132), - [aux_sym_preproc_include_token1] = ACTIONS(4132), - [aux_sym_preproc_def_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), - [sym_preproc_directive] = ACTIONS(4132), - [anon_sym_LPAREN2] = ACTIONS(4134), - [anon_sym_BANG] = ACTIONS(4134), - [anon_sym_TILDE] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym___extension__] = ACTIONS(4132), - [anon_sym_typedef] = ACTIONS(4132), - [anon_sym_virtual] = ACTIONS(4132), - [anon_sym_extern] = ACTIONS(4132), - [anon_sym___attribute__] = ACTIONS(4132), - [anon_sym___attribute] = ACTIONS(4132), - [anon_sym_using] = ACTIONS(4132), - [anon_sym_COLON_COLON] = ACTIONS(4134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), - [anon_sym___declspec] = ACTIONS(4132), - [anon_sym___based] = ACTIONS(4132), - [anon_sym___cdecl] = ACTIONS(4132), - [anon_sym___clrcall] = ACTIONS(4132), - [anon_sym___stdcall] = ACTIONS(4132), - [anon_sym___fastcall] = ACTIONS(4132), - [anon_sym___thiscall] = ACTIONS(4132), - [anon_sym___vectorcall] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4134), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_signed] = ACTIONS(4132), - [anon_sym_unsigned] = ACTIONS(4132), - [anon_sym_long] = ACTIONS(4132), - [anon_sym_short] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_static] = ACTIONS(4132), - [anon_sym_register] = ACTIONS(4132), - [anon_sym_inline] = ACTIONS(4132), - [anon_sym___inline] = ACTIONS(4132), - [anon_sym___inline__] = ACTIONS(4132), - [anon_sym___forceinline] = ACTIONS(4132), - [anon_sym_thread_local] = ACTIONS(4132), - [anon_sym___thread] = ACTIONS(4132), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_constexpr] = ACTIONS(4132), - [anon_sym_volatile] = ACTIONS(4132), - [anon_sym_restrict] = ACTIONS(4132), - [anon_sym___restrict__] = ACTIONS(4132), - [anon_sym__Atomic] = ACTIONS(4132), - [anon_sym__Noreturn] = ACTIONS(4132), - [anon_sym_noreturn] = ACTIONS(4132), - [anon_sym__Nonnull] = ACTIONS(4132), - [anon_sym_mutable] = ACTIONS(4132), - [anon_sym_constinit] = ACTIONS(4132), - [anon_sym_consteval] = ACTIONS(4132), - [anon_sym_alignas] = ACTIONS(4132), - [anon_sym__Alignas] = ACTIONS(4132), - [sym_primitive_type] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_class] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_switch] = ACTIONS(4132), - [anon_sym_case] = ACTIONS(4132), - [anon_sym_default] = ACTIONS(4132), - [anon_sym_while] = ACTIONS(4132), - [anon_sym_do] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym___try] = ACTIONS(4132), - [anon_sym___leave] = ACTIONS(4132), - [anon_sym_not] = ACTIONS(4132), - [anon_sym_compl] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_sizeof] = ACTIONS(4132), - [anon_sym___alignof__] = ACTIONS(4132), - [anon_sym___alignof] = ACTIONS(4132), - [anon_sym__alignof] = ACTIONS(4132), - [anon_sym_alignof] = ACTIONS(4132), - [anon_sym__Alignof] = ACTIONS(4132), - [anon_sym_offsetof] = ACTIONS(4132), - [anon_sym__Generic] = ACTIONS(4132), - [anon_sym_typename] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [anon_sym___asm] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4134), - [anon_sym_u_SQUOTE] = ACTIONS(4134), - [anon_sym_U_SQUOTE] = ACTIONS(4134), - [anon_sym_u8_SQUOTE] = ACTIONS(4134), - [anon_sym_SQUOTE] = ACTIONS(4134), - [anon_sym_L_DQUOTE] = ACTIONS(4134), - [anon_sym_u_DQUOTE] = ACTIONS(4134), - [anon_sym_U_DQUOTE] = ACTIONS(4134), - [anon_sym_u8_DQUOTE] = ACTIONS(4134), - [anon_sym_DQUOTE] = ACTIONS(4134), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [anon_sym_NULL] = ACTIONS(4132), - [anon_sym_nullptr] = ACTIONS(4132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4132), - [anon_sym_decltype] = ACTIONS(4132), - [anon_sym_explicit] = ACTIONS(4132), - [anon_sym_export] = ACTIONS(4132), - [anon_sym_import] = ACTIONS(4132), - [anon_sym_template] = ACTIONS(4132), - [anon_sym_operator] = ACTIONS(4132), - [anon_sym_try] = ACTIONS(4132), - [anon_sym_delete] = ACTIONS(4132), - [anon_sym_throw] = ACTIONS(4132), - [anon_sym_namespace] = ACTIONS(4132), - [anon_sym_static_assert] = ACTIONS(4132), - [anon_sym_concept] = ACTIONS(4132), - [anon_sym_co_return] = ACTIONS(4132), - [anon_sym_co_yield] = ACTIONS(4132), - [anon_sym_R_DQUOTE] = ACTIONS(4134), - [anon_sym_LR_DQUOTE] = ACTIONS(4134), - [anon_sym_uR_DQUOTE] = ACTIONS(4134), - [anon_sym_UR_DQUOTE] = ACTIONS(4134), - [anon_sym_u8R_DQUOTE] = ACTIONS(4134), - [anon_sym_co_await] = ACTIONS(4132), - [anon_sym_new] = ACTIONS(4132), - [anon_sym_requires] = ACTIONS(4132), - [anon_sym_CARET_CARET] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4134), - [sym_this] = ACTIONS(4132), - }, - [STATE(825)] = { - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_include_token1] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym___cdecl] = ACTIONS(4100), - [anon_sym___clrcall] = ACTIONS(4100), - [anon_sym___stdcall] = ACTIONS(4100), - [anon_sym___fastcall] = ACTIONS(4100), - [anon_sym___thiscall] = ACTIONS(4100), - [anon_sym___vectorcall] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4102), - [anon_sym_RBRACE] = ACTIONS(4102), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_if] = ACTIONS(4100), - [anon_sym_switch] = ACTIONS(4100), - [anon_sym_case] = ACTIONS(4100), - [anon_sym_default] = ACTIONS(4100), - [anon_sym_while] = ACTIONS(4100), - [anon_sym_do] = ACTIONS(4100), - [anon_sym_for] = ACTIONS(4100), - [anon_sym_return] = ACTIONS(4100), - [anon_sym_break] = ACTIONS(4100), - [anon_sym_continue] = ACTIONS(4100), - [anon_sym_goto] = ACTIONS(4100), - [anon_sym___try] = ACTIONS(4100), - [anon_sym___leave] = ACTIONS(4100), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4102), - [anon_sym_PLUS_PLUS] = ACTIONS(4102), - [anon_sym_sizeof] = ACTIONS(4100), - [anon_sym___alignof__] = ACTIONS(4100), - [anon_sym___alignof] = ACTIONS(4100), - [anon_sym__alignof] = ACTIONS(4100), - [anon_sym_alignof] = ACTIONS(4100), - [anon_sym__Alignof] = ACTIONS(4100), - [anon_sym_offsetof] = ACTIONS(4100), - [anon_sym__Generic] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), - [anon_sym_asm] = ACTIONS(4100), - [anon_sym___asm__] = ACTIONS(4100), - [anon_sym___asm] = ACTIONS(4100), - [sym_number_literal] = ACTIONS(4102), - [anon_sym_L_SQUOTE] = ACTIONS(4102), - [anon_sym_u_SQUOTE] = ACTIONS(4102), - [anon_sym_U_SQUOTE] = ACTIONS(4102), - [anon_sym_u8_SQUOTE] = ACTIONS(4102), - [anon_sym_SQUOTE] = ACTIONS(4102), - [anon_sym_L_DQUOTE] = ACTIONS(4102), - [anon_sym_u_DQUOTE] = ACTIONS(4102), - [anon_sym_U_DQUOTE] = ACTIONS(4102), - [anon_sym_u8_DQUOTE] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(4102), - [sym_true] = ACTIONS(4100), - [sym_false] = ACTIONS(4100), - [anon_sym_NULL] = ACTIONS(4100), - [anon_sym_nullptr] = ACTIONS(4100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_export] = ACTIONS(4100), - [anon_sym_import] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_try] = ACTIONS(4100), - [anon_sym_delete] = ACTIONS(4100), - [anon_sym_throw] = ACTIONS(4100), - [anon_sym_namespace] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_concept] = ACTIONS(4100), - [anon_sym_co_return] = ACTIONS(4100), - [anon_sym_co_yield] = ACTIONS(4100), - [anon_sym_R_DQUOTE] = ACTIONS(4102), - [anon_sym_LR_DQUOTE] = ACTIONS(4102), - [anon_sym_uR_DQUOTE] = ACTIONS(4102), - [anon_sym_UR_DQUOTE] = ACTIONS(4102), - [anon_sym_u8R_DQUOTE] = ACTIONS(4102), - [anon_sym_co_await] = ACTIONS(4100), - [anon_sym_new] = ACTIONS(4100), - [anon_sym_requires] = ACTIONS(4100), - [anon_sym_CARET_CARET] = ACTIONS(4102), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), - [sym_this] = ACTIONS(4100), - }, - [STATE(826)] = { - [sym_identifier] = ACTIONS(4278), - [aux_sym_preproc_include_token1] = ACTIONS(4278), - [aux_sym_preproc_def_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token1] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), - [sym_preproc_directive] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_BANG] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4280), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_AMP] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym___extension__] = ACTIONS(4278), - [anon_sym_typedef] = ACTIONS(4278), - [anon_sym_virtual] = ACTIONS(4278), - [anon_sym_extern] = ACTIONS(4278), - [anon_sym___attribute__] = ACTIONS(4278), - [anon_sym___attribute] = ACTIONS(4278), - [anon_sym_using] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), - [anon_sym___declspec] = ACTIONS(4278), - [anon_sym___based] = ACTIONS(4278), - [anon_sym___cdecl] = ACTIONS(4278), - [anon_sym___clrcall] = ACTIONS(4278), - [anon_sym___stdcall] = ACTIONS(4278), - [anon_sym___fastcall] = ACTIONS(4278), - [anon_sym___thiscall] = ACTIONS(4278), - [anon_sym___vectorcall] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4280), - [anon_sym_RBRACE] = ACTIONS(4280), - [anon_sym_signed] = ACTIONS(4278), - [anon_sym_unsigned] = ACTIONS(4278), - [anon_sym_long] = ACTIONS(4278), - [anon_sym_short] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_static] = ACTIONS(4278), - [anon_sym_register] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym___inline] = ACTIONS(4278), - [anon_sym___inline__] = ACTIONS(4278), - [anon_sym___forceinline] = ACTIONS(4278), - [anon_sym_thread_local] = ACTIONS(4278), - [anon_sym___thread] = ACTIONS(4278), - [anon_sym_const] = ACTIONS(4278), - [anon_sym_constexpr] = ACTIONS(4278), - [anon_sym_volatile] = ACTIONS(4278), - [anon_sym_restrict] = ACTIONS(4278), - [anon_sym___restrict__] = ACTIONS(4278), - [anon_sym__Atomic] = ACTIONS(4278), - [anon_sym__Noreturn] = ACTIONS(4278), - [anon_sym_noreturn] = ACTIONS(4278), - [anon_sym__Nonnull] = ACTIONS(4278), - [anon_sym_mutable] = ACTIONS(4278), - [anon_sym_constinit] = ACTIONS(4278), - [anon_sym_consteval] = ACTIONS(4278), - [anon_sym_alignas] = ACTIONS(4278), - [anon_sym__Alignas] = ACTIONS(4278), - [sym_primitive_type] = ACTIONS(4278), - [anon_sym_enum] = ACTIONS(4278), - [anon_sym_class] = ACTIONS(4278), - [anon_sym_struct] = ACTIONS(4278), - [anon_sym_union] = ACTIONS(4278), - [anon_sym_if] = ACTIONS(4278), - [anon_sym_switch] = ACTIONS(4278), - [anon_sym_case] = ACTIONS(4278), - [anon_sym_default] = ACTIONS(4278), - [anon_sym_while] = ACTIONS(4278), - [anon_sym_do] = ACTIONS(4278), - [anon_sym_for] = ACTIONS(4278), - [anon_sym_return] = ACTIONS(4278), - [anon_sym_break] = ACTIONS(4278), - [anon_sym_continue] = ACTIONS(4278), - [anon_sym_goto] = ACTIONS(4278), - [anon_sym___try] = ACTIONS(4278), - [anon_sym___leave] = ACTIONS(4278), - [anon_sym_not] = ACTIONS(4278), - [anon_sym_compl] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4280), - [anon_sym_PLUS_PLUS] = ACTIONS(4280), - [anon_sym_sizeof] = ACTIONS(4278), - [anon_sym___alignof__] = ACTIONS(4278), - [anon_sym___alignof] = ACTIONS(4278), - [anon_sym__alignof] = ACTIONS(4278), - [anon_sym_alignof] = ACTIONS(4278), - [anon_sym__Alignof] = ACTIONS(4278), - [anon_sym_offsetof] = ACTIONS(4278), - [anon_sym__Generic] = ACTIONS(4278), - [anon_sym_typename] = ACTIONS(4278), - [anon_sym_asm] = ACTIONS(4278), - [anon_sym___asm__] = ACTIONS(4278), - [anon_sym___asm] = ACTIONS(4278), - [sym_number_literal] = ACTIONS(4280), - [anon_sym_L_SQUOTE] = ACTIONS(4280), - [anon_sym_u_SQUOTE] = ACTIONS(4280), - [anon_sym_U_SQUOTE] = ACTIONS(4280), - [anon_sym_u8_SQUOTE] = ACTIONS(4280), - [anon_sym_SQUOTE] = ACTIONS(4280), - [anon_sym_L_DQUOTE] = ACTIONS(4280), - [anon_sym_u_DQUOTE] = ACTIONS(4280), - [anon_sym_U_DQUOTE] = ACTIONS(4280), - [anon_sym_u8_DQUOTE] = ACTIONS(4280), - [anon_sym_DQUOTE] = ACTIONS(4280), - [sym_true] = ACTIONS(4278), - [sym_false] = ACTIONS(4278), - [anon_sym_NULL] = ACTIONS(4278), - [anon_sym_nullptr] = ACTIONS(4278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4278), - [anon_sym_decltype] = ACTIONS(4278), - [anon_sym_explicit] = ACTIONS(4278), - [anon_sym_export] = ACTIONS(4278), - [anon_sym_import] = ACTIONS(4278), - [anon_sym_template] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_try] = ACTIONS(4278), - [anon_sym_delete] = ACTIONS(4278), - [anon_sym_throw] = ACTIONS(4278), - [anon_sym_namespace] = ACTIONS(4278), - [anon_sym_static_assert] = ACTIONS(4278), - [anon_sym_concept] = ACTIONS(4278), - [anon_sym_co_return] = ACTIONS(4278), - [anon_sym_co_yield] = ACTIONS(4278), - [anon_sym_R_DQUOTE] = ACTIONS(4280), - [anon_sym_LR_DQUOTE] = ACTIONS(4280), - [anon_sym_uR_DQUOTE] = ACTIONS(4280), - [anon_sym_UR_DQUOTE] = ACTIONS(4280), - [anon_sym_u8R_DQUOTE] = ACTIONS(4280), - [anon_sym_co_await] = ACTIONS(4278), - [anon_sym_new] = ACTIONS(4278), - [anon_sym_requires] = ACTIONS(4278), - [anon_sym_CARET_CARET] = ACTIONS(4280), - [anon_sym_LBRACK_COLON] = ACTIONS(4280), - [sym_this] = ACTIONS(4278), - }, - [STATE(827)] = { - [sym_identifier] = ACTIONS(4016), - [aux_sym_preproc_include_token1] = ACTIONS(4016), - [aux_sym_preproc_def_token1] = ACTIONS(4016), - [aux_sym_preproc_if_token1] = ACTIONS(4016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4016), - [sym_preproc_directive] = ACTIONS(4016), - [anon_sym_LPAREN2] = ACTIONS(4018), - [anon_sym_BANG] = ACTIONS(4018), - [anon_sym_TILDE] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym___extension__] = ACTIONS(4016), - [anon_sym_typedef] = ACTIONS(4016), - [anon_sym_virtual] = ACTIONS(4016), - [anon_sym_extern] = ACTIONS(4016), - [anon_sym___attribute__] = ACTIONS(4016), - [anon_sym___attribute] = ACTIONS(4016), - [anon_sym_using] = ACTIONS(4016), - [anon_sym_COLON_COLON] = ACTIONS(4018), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4018), - [anon_sym___declspec] = ACTIONS(4016), - [anon_sym___based] = ACTIONS(4016), - [anon_sym___cdecl] = ACTIONS(4016), - [anon_sym___clrcall] = ACTIONS(4016), - [anon_sym___stdcall] = ACTIONS(4016), - [anon_sym___fastcall] = ACTIONS(4016), - [anon_sym___thiscall] = ACTIONS(4016), - [anon_sym___vectorcall] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_RBRACE] = ACTIONS(4018), - [anon_sym_signed] = ACTIONS(4016), - [anon_sym_unsigned] = ACTIONS(4016), - [anon_sym_long] = ACTIONS(4016), - [anon_sym_short] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_static] = ACTIONS(4016), - [anon_sym_register] = ACTIONS(4016), - [anon_sym_inline] = ACTIONS(4016), - [anon_sym___inline] = ACTIONS(4016), - [anon_sym___inline__] = ACTIONS(4016), - [anon_sym___forceinline] = ACTIONS(4016), - [anon_sym_thread_local] = ACTIONS(4016), - [anon_sym___thread] = ACTIONS(4016), - [anon_sym_const] = ACTIONS(4016), - [anon_sym_constexpr] = ACTIONS(4016), - [anon_sym_volatile] = ACTIONS(4016), - [anon_sym_restrict] = ACTIONS(4016), - [anon_sym___restrict__] = ACTIONS(4016), - [anon_sym__Atomic] = ACTIONS(4016), - [anon_sym__Noreturn] = ACTIONS(4016), - [anon_sym_noreturn] = ACTIONS(4016), - [anon_sym__Nonnull] = ACTIONS(4016), - [anon_sym_mutable] = ACTIONS(4016), - [anon_sym_constinit] = ACTIONS(4016), - [anon_sym_consteval] = ACTIONS(4016), - [anon_sym_alignas] = ACTIONS(4016), - [anon_sym__Alignas] = ACTIONS(4016), - [sym_primitive_type] = ACTIONS(4016), - [anon_sym_enum] = ACTIONS(4016), - [anon_sym_class] = ACTIONS(4016), - [anon_sym_struct] = ACTIONS(4016), - [anon_sym_union] = ACTIONS(4016), - [anon_sym_if] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_case] = ACTIONS(4016), - [anon_sym_default] = ACTIONS(4016), - [anon_sym_while] = ACTIONS(4016), - [anon_sym_do] = ACTIONS(4016), - [anon_sym_for] = ACTIONS(4016), - [anon_sym_return] = ACTIONS(4016), - [anon_sym_break] = ACTIONS(4016), - [anon_sym_continue] = ACTIONS(4016), - [anon_sym_goto] = ACTIONS(4016), - [anon_sym___try] = ACTIONS(4016), - [anon_sym___leave] = ACTIONS(4016), - [anon_sym_not] = ACTIONS(4016), - [anon_sym_compl] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_sizeof] = ACTIONS(4016), - [anon_sym___alignof__] = ACTIONS(4016), - [anon_sym___alignof] = ACTIONS(4016), - [anon_sym__alignof] = ACTIONS(4016), - [anon_sym_alignof] = ACTIONS(4016), - [anon_sym__Alignof] = ACTIONS(4016), - [anon_sym_offsetof] = ACTIONS(4016), - [anon_sym__Generic] = ACTIONS(4016), - [anon_sym_typename] = ACTIONS(4016), - [anon_sym_asm] = ACTIONS(4016), - [anon_sym___asm__] = ACTIONS(4016), - [anon_sym___asm] = ACTIONS(4016), - [sym_number_literal] = ACTIONS(4018), - [anon_sym_L_SQUOTE] = ACTIONS(4018), - [anon_sym_u_SQUOTE] = ACTIONS(4018), - [anon_sym_U_SQUOTE] = ACTIONS(4018), - [anon_sym_u8_SQUOTE] = ACTIONS(4018), - [anon_sym_SQUOTE] = ACTIONS(4018), - [anon_sym_L_DQUOTE] = ACTIONS(4018), - [anon_sym_u_DQUOTE] = ACTIONS(4018), - [anon_sym_U_DQUOTE] = ACTIONS(4018), - [anon_sym_u8_DQUOTE] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [sym_true] = ACTIONS(4016), - [sym_false] = ACTIONS(4016), - [anon_sym_NULL] = ACTIONS(4016), - [anon_sym_nullptr] = ACTIONS(4016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4016), - [anon_sym_decltype] = ACTIONS(4016), - [anon_sym_explicit] = ACTIONS(4016), - [anon_sym_export] = ACTIONS(4016), - [anon_sym_import] = ACTIONS(4016), - [anon_sym_template] = ACTIONS(4016), - [anon_sym_operator] = ACTIONS(4016), - [anon_sym_try] = ACTIONS(4016), - [anon_sym_delete] = ACTIONS(4016), - [anon_sym_throw] = ACTIONS(4016), - [anon_sym_namespace] = ACTIONS(4016), - [anon_sym_static_assert] = ACTIONS(4016), - [anon_sym_concept] = ACTIONS(4016), - [anon_sym_co_return] = ACTIONS(4016), - [anon_sym_co_yield] = ACTIONS(4016), - [anon_sym_R_DQUOTE] = ACTIONS(4018), - [anon_sym_LR_DQUOTE] = ACTIONS(4018), - [anon_sym_uR_DQUOTE] = ACTIONS(4018), - [anon_sym_UR_DQUOTE] = ACTIONS(4018), - [anon_sym_u8R_DQUOTE] = ACTIONS(4018), - [anon_sym_co_await] = ACTIONS(4016), - [anon_sym_new] = ACTIONS(4016), - [anon_sym_requires] = ACTIONS(4016), - [anon_sym_CARET_CARET] = ACTIONS(4018), - [anon_sym_LBRACK_COLON] = ACTIONS(4018), - [sym_this] = ACTIONS(4016), - }, - [STATE(828)] = { - [sym_identifier] = ACTIONS(4282), - [aux_sym_preproc_include_token1] = ACTIONS(4282), - [aux_sym_preproc_def_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token1] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), - [sym_preproc_directive] = ACTIONS(4282), - [anon_sym_LPAREN2] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4282), - [anon_sym_PLUS] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(4284), - [anon_sym_AMP_AMP] = ACTIONS(4284), - [anon_sym_AMP] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4284), - [anon_sym___extension__] = ACTIONS(4282), - [anon_sym_typedef] = ACTIONS(4282), - [anon_sym_virtual] = ACTIONS(4282), - [anon_sym_extern] = ACTIONS(4282), - [anon_sym___attribute__] = ACTIONS(4282), - [anon_sym___attribute] = ACTIONS(4282), - [anon_sym_using] = ACTIONS(4282), - [anon_sym_COLON_COLON] = ACTIONS(4284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4282), - [anon_sym___based] = ACTIONS(4282), - [anon_sym___cdecl] = ACTIONS(4282), - [anon_sym___clrcall] = ACTIONS(4282), - [anon_sym___stdcall] = ACTIONS(4282), - [anon_sym___fastcall] = ACTIONS(4282), - [anon_sym___thiscall] = ACTIONS(4282), - [anon_sym___vectorcall] = ACTIONS(4282), - [anon_sym_LBRACE] = ACTIONS(4284), - [anon_sym_RBRACE] = ACTIONS(4284), - [anon_sym_signed] = ACTIONS(4282), - [anon_sym_unsigned] = ACTIONS(4282), - [anon_sym_long] = ACTIONS(4282), - [anon_sym_short] = ACTIONS(4282), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_static] = ACTIONS(4282), - [anon_sym_register] = ACTIONS(4282), - [anon_sym_inline] = ACTIONS(4282), - [anon_sym___inline] = ACTIONS(4282), - [anon_sym___inline__] = ACTIONS(4282), - [anon_sym___forceinline] = ACTIONS(4282), - [anon_sym_thread_local] = ACTIONS(4282), - [anon_sym___thread] = ACTIONS(4282), - [anon_sym_const] = ACTIONS(4282), - [anon_sym_constexpr] = ACTIONS(4282), - [anon_sym_volatile] = ACTIONS(4282), - [anon_sym_restrict] = ACTIONS(4282), - [anon_sym___restrict__] = ACTIONS(4282), - [anon_sym__Atomic] = ACTIONS(4282), - [anon_sym__Noreturn] = ACTIONS(4282), - [anon_sym_noreturn] = ACTIONS(4282), - [anon_sym__Nonnull] = ACTIONS(4282), - [anon_sym_mutable] = ACTIONS(4282), - [anon_sym_constinit] = ACTIONS(4282), - [anon_sym_consteval] = ACTIONS(4282), - [anon_sym_alignas] = ACTIONS(4282), - [anon_sym__Alignas] = ACTIONS(4282), - [sym_primitive_type] = ACTIONS(4282), - [anon_sym_enum] = ACTIONS(4282), - [anon_sym_class] = ACTIONS(4282), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_union] = ACTIONS(4282), - [anon_sym_if] = ACTIONS(4282), - [anon_sym_switch] = ACTIONS(4282), - [anon_sym_case] = ACTIONS(4282), - [anon_sym_default] = ACTIONS(4282), - [anon_sym_while] = ACTIONS(4282), - [anon_sym_do] = ACTIONS(4282), - [anon_sym_for] = ACTIONS(4282), - [anon_sym_return] = ACTIONS(4282), - [anon_sym_break] = ACTIONS(4282), - [anon_sym_continue] = ACTIONS(4282), - [anon_sym_goto] = ACTIONS(4282), - [anon_sym___try] = ACTIONS(4282), - [anon_sym___leave] = ACTIONS(4282), - [anon_sym_not] = ACTIONS(4282), - [anon_sym_compl] = ACTIONS(4282), - [anon_sym_DASH_DASH] = ACTIONS(4284), - [anon_sym_PLUS_PLUS] = ACTIONS(4284), - [anon_sym_sizeof] = ACTIONS(4282), - [anon_sym___alignof__] = ACTIONS(4282), - [anon_sym___alignof] = ACTIONS(4282), - [anon_sym__alignof] = ACTIONS(4282), - [anon_sym_alignof] = ACTIONS(4282), - [anon_sym__Alignof] = ACTIONS(4282), - [anon_sym_offsetof] = ACTIONS(4282), - [anon_sym__Generic] = ACTIONS(4282), - [anon_sym_typename] = ACTIONS(4282), - [anon_sym_asm] = ACTIONS(4282), - [anon_sym___asm__] = ACTIONS(4282), - [anon_sym___asm] = ACTIONS(4282), - [sym_number_literal] = ACTIONS(4284), - [anon_sym_L_SQUOTE] = ACTIONS(4284), - [anon_sym_u_SQUOTE] = ACTIONS(4284), - [anon_sym_U_SQUOTE] = ACTIONS(4284), - [anon_sym_u8_SQUOTE] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4284), - [anon_sym_L_DQUOTE] = ACTIONS(4284), - [anon_sym_u_DQUOTE] = ACTIONS(4284), - [anon_sym_U_DQUOTE] = ACTIONS(4284), - [anon_sym_u8_DQUOTE] = ACTIONS(4284), - [anon_sym_DQUOTE] = ACTIONS(4284), - [sym_true] = ACTIONS(4282), - [sym_false] = ACTIONS(4282), - [anon_sym_NULL] = ACTIONS(4282), - [anon_sym_nullptr] = ACTIONS(4282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4282), - [anon_sym_decltype] = ACTIONS(4282), - [anon_sym_explicit] = ACTIONS(4282), - [anon_sym_export] = ACTIONS(4282), - [anon_sym_import] = ACTIONS(4282), - [anon_sym_template] = ACTIONS(4282), - [anon_sym_operator] = ACTIONS(4282), - [anon_sym_try] = ACTIONS(4282), - [anon_sym_delete] = ACTIONS(4282), - [anon_sym_throw] = ACTIONS(4282), - [anon_sym_namespace] = ACTIONS(4282), - [anon_sym_static_assert] = ACTIONS(4282), - [anon_sym_concept] = ACTIONS(4282), - [anon_sym_co_return] = ACTIONS(4282), - [anon_sym_co_yield] = ACTIONS(4282), - [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(4282), - [anon_sym_new] = ACTIONS(4282), - [anon_sym_requires] = ACTIONS(4282), - [anon_sym_CARET_CARET] = ACTIONS(4284), - [anon_sym_LBRACK_COLON] = ACTIONS(4284), - [sym_this] = ACTIONS(4282), - }, - [STATE(829)] = { - [sym_identifier] = ACTIONS(4120), - [aux_sym_preproc_include_token1] = ACTIONS(4120), - [aux_sym_preproc_def_token1] = ACTIONS(4120), - [aux_sym_preproc_if_token1] = ACTIONS(4120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4120), - [sym_preproc_directive] = ACTIONS(4120), - [anon_sym_LPAREN2] = ACTIONS(4122), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_TILDE] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_AMP] = ACTIONS(4120), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym___extension__] = ACTIONS(4120), - [anon_sym_typedef] = ACTIONS(4120), - [anon_sym_virtual] = ACTIONS(4120), - [anon_sym_extern] = ACTIONS(4120), - [anon_sym___attribute__] = ACTIONS(4120), - [anon_sym___attribute] = ACTIONS(4120), - [anon_sym_using] = ACTIONS(4120), - [anon_sym_COLON_COLON] = ACTIONS(4122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4122), - [anon_sym___declspec] = ACTIONS(4120), - [anon_sym___based] = ACTIONS(4120), - [anon_sym___cdecl] = ACTIONS(4120), - [anon_sym___clrcall] = ACTIONS(4120), - [anon_sym___stdcall] = ACTIONS(4120), - [anon_sym___fastcall] = ACTIONS(4120), - [anon_sym___thiscall] = ACTIONS(4120), - [anon_sym___vectorcall] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_RBRACE] = ACTIONS(4122), - [anon_sym_signed] = ACTIONS(4120), - [anon_sym_unsigned] = ACTIONS(4120), - [anon_sym_long] = ACTIONS(4120), - [anon_sym_short] = ACTIONS(4120), - [anon_sym_LBRACK] = ACTIONS(4120), - [anon_sym_static] = ACTIONS(4120), - [anon_sym_register] = ACTIONS(4120), - [anon_sym_inline] = ACTIONS(4120), - [anon_sym___inline] = ACTIONS(4120), - [anon_sym___inline__] = ACTIONS(4120), - [anon_sym___forceinline] = ACTIONS(4120), - [anon_sym_thread_local] = ACTIONS(4120), - [anon_sym___thread] = ACTIONS(4120), - [anon_sym_const] = ACTIONS(4120), - [anon_sym_constexpr] = ACTIONS(4120), - [anon_sym_volatile] = ACTIONS(4120), - [anon_sym_restrict] = ACTIONS(4120), - [anon_sym___restrict__] = ACTIONS(4120), - [anon_sym__Atomic] = ACTIONS(4120), - [anon_sym__Noreturn] = ACTIONS(4120), - [anon_sym_noreturn] = ACTIONS(4120), - [anon_sym__Nonnull] = ACTIONS(4120), - [anon_sym_mutable] = ACTIONS(4120), - [anon_sym_constinit] = ACTIONS(4120), - [anon_sym_consteval] = ACTIONS(4120), - [anon_sym_alignas] = ACTIONS(4120), - [anon_sym__Alignas] = ACTIONS(4120), - [sym_primitive_type] = ACTIONS(4120), - [anon_sym_enum] = ACTIONS(4120), - [anon_sym_class] = ACTIONS(4120), - [anon_sym_struct] = ACTIONS(4120), - [anon_sym_union] = ACTIONS(4120), - [anon_sym_if] = ACTIONS(4120), - [anon_sym_switch] = ACTIONS(4120), - [anon_sym_case] = ACTIONS(4120), - [anon_sym_default] = ACTIONS(4120), - [anon_sym_while] = ACTIONS(4120), - [anon_sym_do] = ACTIONS(4120), - [anon_sym_for] = ACTIONS(4120), - [anon_sym_return] = ACTIONS(4120), - [anon_sym_break] = ACTIONS(4120), - [anon_sym_continue] = ACTIONS(4120), - [anon_sym_goto] = ACTIONS(4120), - [anon_sym___try] = ACTIONS(4120), - [anon_sym___leave] = ACTIONS(4120), - [anon_sym_not] = ACTIONS(4120), - [anon_sym_compl] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_sizeof] = ACTIONS(4120), - [anon_sym___alignof__] = ACTIONS(4120), - [anon_sym___alignof] = ACTIONS(4120), - [anon_sym__alignof] = ACTIONS(4120), - [anon_sym_alignof] = ACTIONS(4120), - [anon_sym__Alignof] = ACTIONS(4120), - [anon_sym_offsetof] = ACTIONS(4120), - [anon_sym__Generic] = ACTIONS(4120), - [anon_sym_typename] = ACTIONS(4120), - [anon_sym_asm] = ACTIONS(4120), - [anon_sym___asm__] = ACTIONS(4120), - [anon_sym___asm] = ACTIONS(4120), - [sym_number_literal] = ACTIONS(4122), - [anon_sym_L_SQUOTE] = ACTIONS(4122), - [anon_sym_u_SQUOTE] = ACTIONS(4122), - [anon_sym_U_SQUOTE] = ACTIONS(4122), - [anon_sym_u8_SQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4122), - [anon_sym_L_DQUOTE] = ACTIONS(4122), - [anon_sym_u_DQUOTE] = ACTIONS(4122), - [anon_sym_U_DQUOTE] = ACTIONS(4122), - [anon_sym_u8_DQUOTE] = ACTIONS(4122), - [anon_sym_DQUOTE] = ACTIONS(4122), - [sym_true] = ACTIONS(4120), - [sym_false] = ACTIONS(4120), - [anon_sym_NULL] = ACTIONS(4120), - [anon_sym_nullptr] = ACTIONS(4120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4120), - [anon_sym_decltype] = ACTIONS(4120), - [anon_sym_explicit] = ACTIONS(4120), - [anon_sym_export] = ACTIONS(4120), - [anon_sym_import] = ACTIONS(4120), - [anon_sym_template] = ACTIONS(4120), - [anon_sym_operator] = ACTIONS(4120), - [anon_sym_try] = ACTIONS(4120), - [anon_sym_delete] = ACTIONS(4120), - [anon_sym_throw] = ACTIONS(4120), - [anon_sym_namespace] = ACTIONS(4120), - [anon_sym_static_assert] = ACTIONS(4120), - [anon_sym_concept] = ACTIONS(4120), - [anon_sym_co_return] = ACTIONS(4120), - [anon_sym_co_yield] = ACTIONS(4120), - [anon_sym_R_DQUOTE] = ACTIONS(4122), - [anon_sym_LR_DQUOTE] = ACTIONS(4122), - [anon_sym_uR_DQUOTE] = ACTIONS(4122), - [anon_sym_UR_DQUOTE] = ACTIONS(4122), - [anon_sym_u8R_DQUOTE] = ACTIONS(4122), - [anon_sym_co_await] = ACTIONS(4120), - [anon_sym_new] = ACTIONS(4120), - [anon_sym_requires] = ACTIONS(4120), - [anon_sym_CARET_CARET] = ACTIONS(4122), - [anon_sym_LBRACK_COLON] = ACTIONS(4122), - [sym_this] = ACTIONS(4120), - }, - [STATE(830)] = { - [sym_identifier] = ACTIONS(4124), - [aux_sym_preproc_include_token1] = ACTIONS(4124), - [aux_sym_preproc_def_token1] = ACTIONS(4124), - [aux_sym_preproc_if_token1] = ACTIONS(4124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4124), - [sym_preproc_directive] = ACTIONS(4124), - [anon_sym_LPAREN2] = ACTIONS(4126), - [anon_sym_BANG] = ACTIONS(4126), - [anon_sym_TILDE] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_SEMI] = ACTIONS(4126), - [anon_sym___extension__] = ACTIONS(4124), - [anon_sym_typedef] = ACTIONS(4124), - [anon_sym_virtual] = ACTIONS(4124), - [anon_sym_extern] = ACTIONS(4124), - [anon_sym___attribute__] = ACTIONS(4124), - [anon_sym___attribute] = ACTIONS(4124), - [anon_sym_using] = ACTIONS(4124), - [anon_sym_COLON_COLON] = ACTIONS(4126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4126), - [anon_sym___declspec] = ACTIONS(4124), - [anon_sym___based] = ACTIONS(4124), - [anon_sym___cdecl] = ACTIONS(4124), - [anon_sym___clrcall] = ACTIONS(4124), - [anon_sym___stdcall] = ACTIONS(4124), - [anon_sym___fastcall] = ACTIONS(4124), - [anon_sym___thiscall] = ACTIONS(4124), - [anon_sym___vectorcall] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_RBRACE] = ACTIONS(4126), - [anon_sym_signed] = ACTIONS(4124), - [anon_sym_unsigned] = ACTIONS(4124), - [anon_sym_long] = ACTIONS(4124), - [anon_sym_short] = ACTIONS(4124), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_static] = ACTIONS(4124), - [anon_sym_register] = ACTIONS(4124), - [anon_sym_inline] = ACTIONS(4124), - [anon_sym___inline] = ACTIONS(4124), - [anon_sym___inline__] = ACTIONS(4124), - [anon_sym___forceinline] = ACTIONS(4124), - [anon_sym_thread_local] = ACTIONS(4124), - [anon_sym___thread] = ACTIONS(4124), - [anon_sym_const] = ACTIONS(4124), - [anon_sym_constexpr] = ACTIONS(4124), - [anon_sym_volatile] = ACTIONS(4124), - [anon_sym_restrict] = ACTIONS(4124), - [anon_sym___restrict__] = ACTIONS(4124), - [anon_sym__Atomic] = ACTIONS(4124), - [anon_sym__Noreturn] = ACTIONS(4124), - [anon_sym_noreturn] = ACTIONS(4124), - [anon_sym__Nonnull] = ACTIONS(4124), - [anon_sym_mutable] = ACTIONS(4124), - [anon_sym_constinit] = ACTIONS(4124), - [anon_sym_consteval] = ACTIONS(4124), - [anon_sym_alignas] = ACTIONS(4124), - [anon_sym__Alignas] = ACTIONS(4124), - [sym_primitive_type] = ACTIONS(4124), - [anon_sym_enum] = ACTIONS(4124), - [anon_sym_class] = ACTIONS(4124), - [anon_sym_struct] = ACTIONS(4124), - [anon_sym_union] = ACTIONS(4124), - [anon_sym_if] = ACTIONS(4124), - [anon_sym_switch] = ACTIONS(4124), - [anon_sym_case] = ACTIONS(4124), - [anon_sym_default] = ACTIONS(4124), - [anon_sym_while] = ACTIONS(4124), - [anon_sym_do] = ACTIONS(4124), - [anon_sym_for] = ACTIONS(4124), - [anon_sym_return] = ACTIONS(4124), - [anon_sym_break] = ACTIONS(4124), - [anon_sym_continue] = ACTIONS(4124), - [anon_sym_goto] = ACTIONS(4124), - [anon_sym___try] = ACTIONS(4124), - [anon_sym___leave] = ACTIONS(4124), - [anon_sym_not] = ACTIONS(4124), - [anon_sym_compl] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4124), - [anon_sym___alignof] = ACTIONS(4124), - [anon_sym__alignof] = ACTIONS(4124), - [anon_sym_alignof] = ACTIONS(4124), - [anon_sym__Alignof] = ACTIONS(4124), - [anon_sym_offsetof] = ACTIONS(4124), - [anon_sym__Generic] = ACTIONS(4124), - [anon_sym_typename] = ACTIONS(4124), - [anon_sym_asm] = ACTIONS(4124), - [anon_sym___asm__] = ACTIONS(4124), - [anon_sym___asm] = ACTIONS(4124), - [sym_number_literal] = ACTIONS(4126), - [anon_sym_L_SQUOTE] = ACTIONS(4126), - [anon_sym_u_SQUOTE] = ACTIONS(4126), - [anon_sym_U_SQUOTE] = ACTIONS(4126), - [anon_sym_u8_SQUOTE] = ACTIONS(4126), - [anon_sym_SQUOTE] = ACTIONS(4126), - [anon_sym_L_DQUOTE] = ACTIONS(4126), - [anon_sym_u_DQUOTE] = ACTIONS(4126), - [anon_sym_U_DQUOTE] = ACTIONS(4126), - [anon_sym_u8_DQUOTE] = ACTIONS(4126), - [anon_sym_DQUOTE] = ACTIONS(4126), - [sym_true] = ACTIONS(4124), - [sym_false] = ACTIONS(4124), - [anon_sym_NULL] = ACTIONS(4124), - [anon_sym_nullptr] = ACTIONS(4124), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4124), - [anon_sym_decltype] = ACTIONS(4124), - [anon_sym_explicit] = ACTIONS(4124), - [anon_sym_export] = ACTIONS(4124), - [anon_sym_import] = ACTIONS(4124), - [anon_sym_template] = ACTIONS(4124), - [anon_sym_operator] = ACTIONS(4124), - [anon_sym_try] = ACTIONS(4124), - [anon_sym_delete] = ACTIONS(4124), - [anon_sym_throw] = ACTIONS(4124), - [anon_sym_namespace] = ACTIONS(4124), - [anon_sym_static_assert] = ACTIONS(4124), - [anon_sym_concept] = ACTIONS(4124), - [anon_sym_co_return] = ACTIONS(4124), - [anon_sym_co_yield] = ACTIONS(4124), - [anon_sym_R_DQUOTE] = ACTIONS(4126), - [anon_sym_LR_DQUOTE] = ACTIONS(4126), - [anon_sym_uR_DQUOTE] = ACTIONS(4126), - [anon_sym_UR_DQUOTE] = ACTIONS(4126), - [anon_sym_u8R_DQUOTE] = ACTIONS(4126), - [anon_sym_co_await] = ACTIONS(4124), - [anon_sym_new] = ACTIONS(4124), - [anon_sym_requires] = ACTIONS(4124), - [anon_sym_CARET_CARET] = ACTIONS(4126), - [anon_sym_LBRACK_COLON] = ACTIONS(4126), - [sym_this] = ACTIONS(4124), - }, - [STATE(831)] = { - [sym_identifier] = ACTIONS(4387), - [aux_sym_preproc_include_token1] = ACTIONS(4387), - [aux_sym_preproc_def_token1] = ACTIONS(4387), - [aux_sym_preproc_if_token1] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), - [sym_preproc_directive] = ACTIONS(4387), - [anon_sym_LPAREN2] = ACTIONS(4389), - [anon_sym_BANG] = ACTIONS(4389), - [anon_sym_TILDE] = ACTIONS(4389), - [anon_sym_DASH] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4387), - [anon_sym_STAR] = ACTIONS(4389), - [anon_sym_AMP_AMP] = ACTIONS(4389), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_SEMI] = ACTIONS(4389), - [anon_sym___extension__] = ACTIONS(4387), - [anon_sym_typedef] = ACTIONS(4387), - [anon_sym_virtual] = ACTIONS(4387), - [anon_sym_extern] = ACTIONS(4387), - [anon_sym___attribute__] = ACTIONS(4387), - [anon_sym___attribute] = ACTIONS(4387), - [anon_sym_using] = ACTIONS(4387), - [anon_sym_COLON_COLON] = ACTIONS(4389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), - [anon_sym___declspec] = ACTIONS(4387), - [anon_sym___based] = ACTIONS(4387), - [anon_sym___cdecl] = ACTIONS(4387), - [anon_sym___clrcall] = ACTIONS(4387), - [anon_sym___stdcall] = ACTIONS(4387), - [anon_sym___fastcall] = ACTIONS(4387), - [anon_sym___thiscall] = ACTIONS(4387), - [anon_sym___vectorcall] = ACTIONS(4387), - [anon_sym_LBRACE] = ACTIONS(4389), - [anon_sym_RBRACE] = ACTIONS(4389), - [anon_sym_signed] = ACTIONS(4387), - [anon_sym_unsigned] = ACTIONS(4387), - [anon_sym_long] = ACTIONS(4387), - [anon_sym_short] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_static] = ACTIONS(4387), - [anon_sym_register] = ACTIONS(4387), - [anon_sym_inline] = ACTIONS(4387), - [anon_sym___inline] = ACTIONS(4387), - [anon_sym___inline__] = ACTIONS(4387), - [anon_sym___forceinline] = ACTIONS(4387), - [anon_sym_thread_local] = ACTIONS(4387), - [anon_sym___thread] = ACTIONS(4387), - [anon_sym_const] = ACTIONS(4387), - [anon_sym_constexpr] = ACTIONS(4387), - [anon_sym_volatile] = ACTIONS(4387), - [anon_sym_restrict] = ACTIONS(4387), - [anon_sym___restrict__] = ACTIONS(4387), - [anon_sym__Atomic] = ACTIONS(4387), - [anon_sym__Noreturn] = ACTIONS(4387), - [anon_sym_noreturn] = ACTIONS(4387), - [anon_sym__Nonnull] = ACTIONS(4387), - [anon_sym_mutable] = ACTIONS(4387), - [anon_sym_constinit] = ACTIONS(4387), - [anon_sym_consteval] = ACTIONS(4387), - [anon_sym_alignas] = ACTIONS(4387), - [anon_sym__Alignas] = ACTIONS(4387), - [sym_primitive_type] = ACTIONS(4387), - [anon_sym_enum] = ACTIONS(4387), - [anon_sym_class] = ACTIONS(4387), - [anon_sym_struct] = ACTIONS(4387), - [anon_sym_union] = ACTIONS(4387), - [anon_sym_if] = ACTIONS(4387), - [anon_sym_switch] = ACTIONS(4387), - [anon_sym_case] = ACTIONS(4387), - [anon_sym_default] = ACTIONS(4387), - [anon_sym_while] = ACTIONS(4387), - [anon_sym_do] = ACTIONS(4387), - [anon_sym_for] = ACTIONS(4387), - [anon_sym_return] = ACTIONS(4387), - [anon_sym_break] = ACTIONS(4387), - [anon_sym_continue] = ACTIONS(4387), - [anon_sym_goto] = ACTIONS(4387), - [anon_sym___try] = ACTIONS(4387), - [anon_sym___leave] = ACTIONS(4387), - [anon_sym_not] = ACTIONS(4387), - [anon_sym_compl] = ACTIONS(4387), - [anon_sym_DASH_DASH] = ACTIONS(4389), - [anon_sym_PLUS_PLUS] = ACTIONS(4389), - [anon_sym_sizeof] = ACTIONS(4387), - [anon_sym___alignof__] = ACTIONS(4387), - [anon_sym___alignof] = ACTIONS(4387), - [anon_sym__alignof] = ACTIONS(4387), - [anon_sym_alignof] = ACTIONS(4387), - [anon_sym__Alignof] = ACTIONS(4387), - [anon_sym_offsetof] = ACTIONS(4387), - [anon_sym__Generic] = ACTIONS(4387), - [anon_sym_typename] = ACTIONS(4387), - [anon_sym_asm] = ACTIONS(4387), - [anon_sym___asm__] = ACTIONS(4387), - [anon_sym___asm] = ACTIONS(4387), - [sym_number_literal] = ACTIONS(4389), - [anon_sym_L_SQUOTE] = ACTIONS(4389), - [anon_sym_u_SQUOTE] = ACTIONS(4389), - [anon_sym_U_SQUOTE] = ACTIONS(4389), - [anon_sym_u8_SQUOTE] = ACTIONS(4389), - [anon_sym_SQUOTE] = ACTIONS(4389), - [anon_sym_L_DQUOTE] = ACTIONS(4389), - [anon_sym_u_DQUOTE] = ACTIONS(4389), - [anon_sym_U_DQUOTE] = ACTIONS(4389), - [anon_sym_u8_DQUOTE] = ACTIONS(4389), - [anon_sym_DQUOTE] = ACTIONS(4389), - [sym_true] = ACTIONS(4387), - [sym_false] = ACTIONS(4387), - [anon_sym_NULL] = ACTIONS(4387), - [anon_sym_nullptr] = ACTIONS(4387), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4387), - [anon_sym_decltype] = ACTIONS(4387), - [anon_sym_explicit] = ACTIONS(4387), - [anon_sym_export] = ACTIONS(4387), - [anon_sym_import] = ACTIONS(4387), - [anon_sym_template] = ACTIONS(4387), - [anon_sym_operator] = ACTIONS(4387), - [anon_sym_try] = ACTIONS(4387), - [anon_sym_delete] = ACTIONS(4387), - [anon_sym_throw] = ACTIONS(4387), - [anon_sym_namespace] = ACTIONS(4387), - [anon_sym_static_assert] = ACTIONS(4387), - [anon_sym_concept] = ACTIONS(4387), - [anon_sym_co_return] = ACTIONS(4387), - [anon_sym_co_yield] = ACTIONS(4387), - [anon_sym_R_DQUOTE] = ACTIONS(4389), - [anon_sym_LR_DQUOTE] = ACTIONS(4389), - [anon_sym_uR_DQUOTE] = ACTIONS(4389), - [anon_sym_UR_DQUOTE] = ACTIONS(4389), - [anon_sym_u8R_DQUOTE] = ACTIONS(4389), - [anon_sym_co_await] = ACTIONS(4387), - [anon_sym_new] = ACTIONS(4387), - [anon_sym_requires] = ACTIONS(4387), - [anon_sym_CARET_CARET] = ACTIONS(4389), - [anon_sym_LBRACK_COLON] = ACTIONS(4389), - [sym_this] = ACTIONS(4387), - }, - [STATE(832)] = { - [sym_identifier] = ACTIONS(4024), - [aux_sym_preproc_include_token1] = ACTIONS(4024), - [aux_sym_preproc_def_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), - [sym_preproc_directive] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [anon_sym_DASH] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym___extension__] = ACTIONS(4024), - [anon_sym_typedef] = ACTIONS(4024), - [anon_sym_virtual] = ACTIONS(4024), - [anon_sym_extern] = ACTIONS(4024), - [anon_sym___attribute__] = ACTIONS(4024), - [anon_sym___attribute] = ACTIONS(4024), - [anon_sym_using] = ACTIONS(4024), - [anon_sym_COLON_COLON] = ACTIONS(4026), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), - [anon_sym___declspec] = ACTIONS(4024), - [anon_sym___based] = ACTIONS(4024), - [anon_sym___cdecl] = ACTIONS(4024), - [anon_sym___clrcall] = ACTIONS(4024), - [anon_sym___stdcall] = ACTIONS(4024), - [anon_sym___fastcall] = ACTIONS(4024), - [anon_sym___thiscall] = ACTIONS(4024), - [anon_sym___vectorcall] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_RBRACE] = ACTIONS(4026), - [anon_sym_signed] = ACTIONS(4024), - [anon_sym_unsigned] = ACTIONS(4024), - [anon_sym_long] = ACTIONS(4024), - [anon_sym_short] = ACTIONS(4024), - [anon_sym_LBRACK] = ACTIONS(4024), - [anon_sym_static] = ACTIONS(4024), - [anon_sym_register] = ACTIONS(4024), - [anon_sym_inline] = ACTIONS(4024), - [anon_sym___inline] = ACTIONS(4024), - [anon_sym___inline__] = ACTIONS(4024), - [anon_sym___forceinline] = ACTIONS(4024), - [anon_sym_thread_local] = ACTIONS(4024), - [anon_sym___thread] = ACTIONS(4024), - [anon_sym_const] = ACTIONS(4024), - [anon_sym_constexpr] = ACTIONS(4024), - [anon_sym_volatile] = ACTIONS(4024), - [anon_sym_restrict] = ACTIONS(4024), - [anon_sym___restrict__] = ACTIONS(4024), - [anon_sym__Atomic] = ACTIONS(4024), - [anon_sym__Noreturn] = ACTIONS(4024), - [anon_sym_noreturn] = ACTIONS(4024), - [anon_sym__Nonnull] = ACTIONS(4024), - [anon_sym_mutable] = ACTIONS(4024), - [anon_sym_constinit] = ACTIONS(4024), - [anon_sym_consteval] = ACTIONS(4024), - [anon_sym_alignas] = ACTIONS(4024), - [anon_sym__Alignas] = ACTIONS(4024), - [sym_primitive_type] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4024), - [anon_sym_class] = ACTIONS(4024), - [anon_sym_struct] = ACTIONS(4024), - [anon_sym_union] = ACTIONS(4024), - [anon_sym_if] = ACTIONS(4024), - [anon_sym_switch] = ACTIONS(4024), - [anon_sym_case] = ACTIONS(4024), - [anon_sym_default] = ACTIONS(4024), - [anon_sym_while] = ACTIONS(4024), - [anon_sym_do] = ACTIONS(4024), - [anon_sym_for] = ACTIONS(4024), - [anon_sym_return] = ACTIONS(4024), - [anon_sym_break] = ACTIONS(4024), - [anon_sym_continue] = ACTIONS(4024), - [anon_sym_goto] = ACTIONS(4024), - [anon_sym___try] = ACTIONS(4024), - [anon_sym___leave] = ACTIONS(4024), - [anon_sym_not] = ACTIONS(4024), - [anon_sym_compl] = ACTIONS(4024), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_sizeof] = ACTIONS(4024), - [anon_sym___alignof__] = ACTIONS(4024), - [anon_sym___alignof] = ACTIONS(4024), - [anon_sym__alignof] = ACTIONS(4024), - [anon_sym_alignof] = ACTIONS(4024), - [anon_sym__Alignof] = ACTIONS(4024), - [anon_sym_offsetof] = ACTIONS(4024), - [anon_sym__Generic] = ACTIONS(4024), - [anon_sym_typename] = ACTIONS(4024), - [anon_sym_asm] = ACTIONS(4024), - [anon_sym___asm__] = ACTIONS(4024), - [anon_sym___asm] = ACTIONS(4024), - [sym_number_literal] = ACTIONS(4026), - [anon_sym_L_SQUOTE] = ACTIONS(4026), - [anon_sym_u_SQUOTE] = ACTIONS(4026), - [anon_sym_U_SQUOTE] = ACTIONS(4026), - [anon_sym_u8_SQUOTE] = ACTIONS(4026), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_L_DQUOTE] = ACTIONS(4026), - [anon_sym_u_DQUOTE] = ACTIONS(4026), - [anon_sym_U_DQUOTE] = ACTIONS(4026), - [anon_sym_u8_DQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [anon_sym_NULL] = ACTIONS(4024), - [anon_sym_nullptr] = ACTIONS(4024), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4024), - [anon_sym_decltype] = ACTIONS(4024), - [anon_sym_explicit] = ACTIONS(4024), - [anon_sym_export] = ACTIONS(4024), - [anon_sym_import] = ACTIONS(4024), - [anon_sym_template] = ACTIONS(4024), - [anon_sym_operator] = ACTIONS(4024), - [anon_sym_try] = ACTIONS(4024), - [anon_sym_delete] = ACTIONS(4024), - [anon_sym_throw] = ACTIONS(4024), - [anon_sym_namespace] = ACTIONS(4024), - [anon_sym_static_assert] = ACTIONS(4024), - [anon_sym_concept] = ACTIONS(4024), - [anon_sym_co_return] = ACTIONS(4024), - [anon_sym_co_yield] = ACTIONS(4024), - [anon_sym_R_DQUOTE] = ACTIONS(4026), - [anon_sym_LR_DQUOTE] = ACTIONS(4026), - [anon_sym_uR_DQUOTE] = ACTIONS(4026), - [anon_sym_UR_DQUOTE] = ACTIONS(4026), - [anon_sym_u8R_DQUOTE] = ACTIONS(4026), - [anon_sym_co_await] = ACTIONS(4024), - [anon_sym_new] = ACTIONS(4024), - [anon_sym_requires] = ACTIONS(4024), - [anon_sym_CARET_CARET] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4026), - [sym_this] = ACTIONS(4024), - }, - [STATE(833)] = { - [sym_expression] = STATE(5919), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_initializer_list] = STATE(5986), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(3752), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2386), - [anon_sym_GT_GT] = ACTIONS(2386), - [anon_sym_SEMI] = ACTIONS(2386), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym___attribute__] = ACTIONS(2384), - [anon_sym___attribute] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(834)] = { - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_include_token1] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym___cdecl] = ACTIONS(3950), - [anon_sym___clrcall] = ACTIONS(3950), - [anon_sym___stdcall] = ACTIONS(3950), - [anon_sym___fastcall] = ACTIONS(3950), - [anon_sym___thiscall] = ACTIONS(3950), - [anon_sym___vectorcall] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3952), - [anon_sym_RBRACE] = ACTIONS(3952), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_if] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_case] = ACTIONS(3950), - [anon_sym_default] = ACTIONS(3950), - [anon_sym_while] = ACTIONS(3950), - [anon_sym_do] = ACTIONS(3950), - [anon_sym_for] = ACTIONS(3950), - [anon_sym_return] = ACTIONS(3950), - [anon_sym_break] = ACTIONS(3950), - [anon_sym_continue] = ACTIONS(3950), - [anon_sym_goto] = ACTIONS(3950), - [anon_sym___try] = ACTIONS(3950), - [anon_sym___leave] = ACTIONS(3950), - [anon_sym_not] = ACTIONS(3950), - [anon_sym_compl] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3952), - [anon_sym_sizeof] = ACTIONS(3950), - [anon_sym___alignof__] = ACTIONS(3950), - [anon_sym___alignof] = ACTIONS(3950), - [anon_sym__alignof] = ACTIONS(3950), - [anon_sym_alignof] = ACTIONS(3950), - [anon_sym__Alignof] = ACTIONS(3950), - [anon_sym_offsetof] = ACTIONS(3950), - [anon_sym__Generic] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), - [anon_sym_asm] = ACTIONS(3950), - [anon_sym___asm__] = ACTIONS(3950), - [anon_sym___asm] = ACTIONS(3950), - [sym_number_literal] = ACTIONS(3952), - [anon_sym_L_SQUOTE] = ACTIONS(3952), - [anon_sym_u_SQUOTE] = ACTIONS(3952), - [anon_sym_U_SQUOTE] = ACTIONS(3952), - [anon_sym_u8_SQUOTE] = ACTIONS(3952), - [anon_sym_SQUOTE] = ACTIONS(3952), - [anon_sym_L_DQUOTE] = ACTIONS(3952), - [anon_sym_u_DQUOTE] = ACTIONS(3952), - [anon_sym_U_DQUOTE] = ACTIONS(3952), - [anon_sym_u8_DQUOTE] = ACTIONS(3952), - [anon_sym_DQUOTE] = ACTIONS(3952), - [sym_true] = ACTIONS(3950), - [sym_false] = ACTIONS(3950), - [anon_sym_NULL] = ACTIONS(3950), - [anon_sym_nullptr] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_export] = ACTIONS(3950), - [anon_sym_import] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_try] = ACTIONS(3950), - [anon_sym_delete] = ACTIONS(3950), - [anon_sym_throw] = ACTIONS(3950), - [anon_sym_namespace] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_concept] = ACTIONS(3950), - [anon_sym_co_return] = ACTIONS(3950), - [anon_sym_co_yield] = ACTIONS(3950), - [anon_sym_R_DQUOTE] = ACTIONS(3952), - [anon_sym_LR_DQUOTE] = ACTIONS(3952), - [anon_sym_uR_DQUOTE] = ACTIONS(3952), - [anon_sym_UR_DQUOTE] = ACTIONS(3952), - [anon_sym_u8R_DQUOTE] = ACTIONS(3952), - [anon_sym_co_await] = ACTIONS(3950), - [anon_sym_new] = ACTIONS(3950), - [anon_sym_requires] = ACTIONS(3950), - [anon_sym_CARET_CARET] = ACTIONS(3952), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), - [sym_this] = ACTIONS(3950), - }, - [STATE(835)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_include_token1] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym___cdecl] = ACTIONS(4080), - [anon_sym___clrcall] = ACTIONS(4080), - [anon_sym___stdcall] = ACTIONS(4080), - [anon_sym___fastcall] = ACTIONS(4080), - [anon_sym___thiscall] = ACTIONS(4080), - [anon_sym___vectorcall] = ACTIONS(4080), - [anon_sym_LBRACE] = ACTIONS(4082), - [anon_sym_RBRACE] = ACTIONS(4082), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_if] = ACTIONS(4080), - [anon_sym_switch] = ACTIONS(4080), - [anon_sym_case] = ACTIONS(4080), - [anon_sym_default] = ACTIONS(4080), - [anon_sym_while] = ACTIONS(4080), - [anon_sym_do] = ACTIONS(4080), - [anon_sym_for] = ACTIONS(4080), - [anon_sym_return] = ACTIONS(4080), - [anon_sym_break] = ACTIONS(4080), - [anon_sym_continue] = ACTIONS(4080), - [anon_sym_goto] = ACTIONS(4080), - [anon_sym___try] = ACTIONS(4080), - [anon_sym___leave] = ACTIONS(4080), - [anon_sym_not] = ACTIONS(4080), - [anon_sym_compl] = ACTIONS(4080), - [anon_sym_DASH_DASH] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4082), - [anon_sym_sizeof] = ACTIONS(4080), - [anon_sym___alignof__] = ACTIONS(4080), - [anon_sym___alignof] = ACTIONS(4080), - [anon_sym__alignof] = ACTIONS(4080), - [anon_sym_alignof] = ACTIONS(4080), - [anon_sym__Alignof] = ACTIONS(4080), - [anon_sym_offsetof] = ACTIONS(4080), - [anon_sym__Generic] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [anon_sym_asm] = ACTIONS(4080), - [anon_sym___asm__] = ACTIONS(4080), - [anon_sym___asm] = ACTIONS(4080), - [sym_number_literal] = ACTIONS(4082), - [anon_sym_L_SQUOTE] = ACTIONS(4082), - [anon_sym_u_SQUOTE] = ACTIONS(4082), - [anon_sym_U_SQUOTE] = ACTIONS(4082), - [anon_sym_u8_SQUOTE] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4082), - [anon_sym_L_DQUOTE] = ACTIONS(4082), - [anon_sym_u_DQUOTE] = ACTIONS(4082), - [anon_sym_U_DQUOTE] = ACTIONS(4082), - [anon_sym_u8_DQUOTE] = ACTIONS(4082), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [anon_sym_NULL] = ACTIONS(4080), - [anon_sym_nullptr] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_export] = ACTIONS(4080), - [anon_sym_import] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_try] = ACTIONS(4080), - [anon_sym_delete] = ACTIONS(4080), - [anon_sym_throw] = ACTIONS(4080), - [anon_sym_namespace] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_concept] = ACTIONS(4080), - [anon_sym_co_return] = ACTIONS(4080), - [anon_sym_co_yield] = ACTIONS(4080), - [anon_sym_R_DQUOTE] = ACTIONS(4082), - [anon_sym_LR_DQUOTE] = ACTIONS(4082), - [anon_sym_uR_DQUOTE] = ACTIONS(4082), - [anon_sym_UR_DQUOTE] = ACTIONS(4082), - [anon_sym_u8R_DQUOTE] = ACTIONS(4082), - [anon_sym_co_await] = ACTIONS(4080), - [anon_sym_new] = ACTIONS(4080), - [anon_sym_requires] = ACTIONS(4080), - [anon_sym_CARET_CARET] = ACTIONS(4082), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), - [sym_this] = ACTIONS(4080), - }, - [STATE(836)] = { - [sym_identifier] = ACTIONS(4128), - [aux_sym_preproc_include_token1] = ACTIONS(4128), - [aux_sym_preproc_def_token1] = ACTIONS(4128), - [aux_sym_preproc_if_token1] = ACTIONS(4128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4128), - [sym_preproc_directive] = ACTIONS(4128), - [anon_sym_LPAREN2] = ACTIONS(4130), - [anon_sym_BANG] = ACTIONS(4130), - [anon_sym_TILDE] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4130), - [anon_sym_AMP_AMP] = ACTIONS(4130), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym___extension__] = ACTIONS(4128), - [anon_sym_typedef] = ACTIONS(4128), - [anon_sym_virtual] = ACTIONS(4128), - [anon_sym_extern] = ACTIONS(4128), - [anon_sym___attribute__] = ACTIONS(4128), - [anon_sym___attribute] = ACTIONS(4128), - [anon_sym_using] = ACTIONS(4128), - [anon_sym_COLON_COLON] = ACTIONS(4130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4130), - [anon_sym___declspec] = ACTIONS(4128), - [anon_sym___based] = ACTIONS(4128), - [anon_sym___cdecl] = ACTIONS(4128), - [anon_sym___clrcall] = ACTIONS(4128), - [anon_sym___stdcall] = ACTIONS(4128), - [anon_sym___fastcall] = ACTIONS(4128), - [anon_sym___thiscall] = ACTIONS(4128), - [anon_sym___vectorcall] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4130), - [anon_sym_RBRACE] = ACTIONS(4130), - [anon_sym_signed] = ACTIONS(4128), - [anon_sym_unsigned] = ACTIONS(4128), - [anon_sym_long] = ACTIONS(4128), - [anon_sym_short] = ACTIONS(4128), - [anon_sym_LBRACK] = ACTIONS(4128), - [anon_sym_static] = ACTIONS(4128), - [anon_sym_register] = ACTIONS(4128), - [anon_sym_inline] = ACTIONS(4128), - [anon_sym___inline] = ACTIONS(4128), - [anon_sym___inline__] = ACTIONS(4128), - [anon_sym___forceinline] = ACTIONS(4128), - [anon_sym_thread_local] = ACTIONS(4128), - [anon_sym___thread] = ACTIONS(4128), - [anon_sym_const] = ACTIONS(4128), - [anon_sym_constexpr] = ACTIONS(4128), - [anon_sym_volatile] = ACTIONS(4128), - [anon_sym_restrict] = ACTIONS(4128), - [anon_sym___restrict__] = ACTIONS(4128), - [anon_sym__Atomic] = ACTIONS(4128), - [anon_sym__Noreturn] = ACTIONS(4128), - [anon_sym_noreturn] = ACTIONS(4128), - [anon_sym__Nonnull] = ACTIONS(4128), - [anon_sym_mutable] = ACTIONS(4128), - [anon_sym_constinit] = ACTIONS(4128), - [anon_sym_consteval] = ACTIONS(4128), - [anon_sym_alignas] = ACTIONS(4128), - [anon_sym__Alignas] = ACTIONS(4128), - [sym_primitive_type] = ACTIONS(4128), - [anon_sym_enum] = ACTIONS(4128), - [anon_sym_class] = ACTIONS(4128), - [anon_sym_struct] = ACTIONS(4128), - [anon_sym_union] = ACTIONS(4128), - [anon_sym_if] = ACTIONS(4128), - [anon_sym_switch] = ACTIONS(4128), - [anon_sym_case] = ACTIONS(4128), - [anon_sym_default] = ACTIONS(4128), - [anon_sym_while] = ACTIONS(4128), - [anon_sym_do] = ACTIONS(4128), - [anon_sym_for] = ACTIONS(4128), - [anon_sym_return] = ACTIONS(4128), - [anon_sym_break] = ACTIONS(4128), - [anon_sym_continue] = ACTIONS(4128), - [anon_sym_goto] = ACTIONS(4128), - [anon_sym___try] = ACTIONS(4128), - [anon_sym___leave] = ACTIONS(4128), - [anon_sym_not] = ACTIONS(4128), - [anon_sym_compl] = ACTIONS(4128), - [anon_sym_DASH_DASH] = ACTIONS(4130), - [anon_sym_PLUS_PLUS] = ACTIONS(4130), - [anon_sym_sizeof] = ACTIONS(4128), - [anon_sym___alignof__] = ACTIONS(4128), - [anon_sym___alignof] = ACTIONS(4128), - [anon_sym__alignof] = ACTIONS(4128), - [anon_sym_alignof] = ACTIONS(4128), - [anon_sym__Alignof] = ACTIONS(4128), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4128), - [anon_sym_typename] = ACTIONS(4128), - [anon_sym_asm] = ACTIONS(4128), - [anon_sym___asm__] = ACTIONS(4128), - [anon_sym___asm] = ACTIONS(4128), - [sym_number_literal] = ACTIONS(4130), - [anon_sym_L_SQUOTE] = ACTIONS(4130), - [anon_sym_u_SQUOTE] = ACTIONS(4130), - [anon_sym_U_SQUOTE] = ACTIONS(4130), - [anon_sym_u8_SQUOTE] = ACTIONS(4130), - [anon_sym_SQUOTE] = ACTIONS(4130), - [anon_sym_L_DQUOTE] = ACTIONS(4130), - [anon_sym_u_DQUOTE] = ACTIONS(4130), - [anon_sym_U_DQUOTE] = ACTIONS(4130), - [anon_sym_u8_DQUOTE] = ACTIONS(4130), - [anon_sym_DQUOTE] = ACTIONS(4130), - [sym_true] = ACTIONS(4128), - [sym_false] = ACTIONS(4128), - [anon_sym_NULL] = ACTIONS(4128), - [anon_sym_nullptr] = ACTIONS(4128), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4128), - [anon_sym_decltype] = ACTIONS(4128), - [anon_sym_explicit] = ACTIONS(4128), - [anon_sym_export] = ACTIONS(4128), - [anon_sym_import] = ACTIONS(4128), - [anon_sym_template] = ACTIONS(4128), - [anon_sym_operator] = ACTIONS(4128), - [anon_sym_try] = ACTIONS(4128), - [anon_sym_delete] = ACTIONS(4128), - [anon_sym_throw] = ACTIONS(4128), - [anon_sym_namespace] = ACTIONS(4128), - [anon_sym_static_assert] = ACTIONS(4128), - [anon_sym_concept] = ACTIONS(4128), - [anon_sym_co_return] = ACTIONS(4128), - [anon_sym_co_yield] = ACTIONS(4128), - [anon_sym_R_DQUOTE] = ACTIONS(4130), - [anon_sym_LR_DQUOTE] = ACTIONS(4130), - [anon_sym_uR_DQUOTE] = ACTIONS(4130), - [anon_sym_UR_DQUOTE] = ACTIONS(4130), - [anon_sym_u8R_DQUOTE] = ACTIONS(4130), - [anon_sym_co_await] = ACTIONS(4128), - [anon_sym_new] = ACTIONS(4128), - [anon_sym_requires] = ACTIONS(4128), - [anon_sym_CARET_CARET] = ACTIONS(4130), - [anon_sym_LBRACK_COLON] = ACTIONS(4130), - [sym_this] = ACTIONS(4128), - }, - [STATE(837)] = { - [sym_identifier] = ACTIONS(3984), - [aux_sym_preproc_include_token1] = ACTIONS(3984), - [aux_sym_preproc_def_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token1] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), - [sym_preproc_directive] = ACTIONS(3984), - [anon_sym_LPAREN2] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_TILDE] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3984), - [anon_sym_PLUS] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_SEMI] = ACTIONS(3986), - [anon_sym___extension__] = ACTIONS(3984), - [anon_sym_typedef] = ACTIONS(3984), - [anon_sym_virtual] = ACTIONS(3984), - [anon_sym_extern] = ACTIONS(3984), - [anon_sym___attribute__] = ACTIONS(3984), - [anon_sym___attribute] = ACTIONS(3984), - [anon_sym_using] = ACTIONS(3984), - [anon_sym_COLON_COLON] = ACTIONS(3986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), - [anon_sym___declspec] = ACTIONS(3984), - [anon_sym___based] = ACTIONS(3984), - [anon_sym___cdecl] = ACTIONS(3984), - [anon_sym___clrcall] = ACTIONS(3984), - [anon_sym___stdcall] = ACTIONS(3984), - [anon_sym___fastcall] = ACTIONS(3984), - [anon_sym___thiscall] = ACTIONS(3984), - [anon_sym___vectorcall] = ACTIONS(3984), - [anon_sym_LBRACE] = ACTIONS(3986), - [anon_sym_RBRACE] = ACTIONS(3986), - [anon_sym_signed] = ACTIONS(3984), - [anon_sym_unsigned] = ACTIONS(3984), - [anon_sym_long] = ACTIONS(3984), - [anon_sym_short] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_register] = ACTIONS(3984), - [anon_sym_inline] = ACTIONS(3984), - [anon_sym___inline] = ACTIONS(3984), - [anon_sym___inline__] = ACTIONS(3984), - [anon_sym___forceinline] = ACTIONS(3984), - [anon_sym_thread_local] = ACTIONS(3984), - [anon_sym___thread] = ACTIONS(3984), - [anon_sym_const] = ACTIONS(3984), - [anon_sym_constexpr] = ACTIONS(3984), - [anon_sym_volatile] = ACTIONS(3984), - [anon_sym_restrict] = ACTIONS(3984), - [anon_sym___restrict__] = ACTIONS(3984), - [anon_sym__Atomic] = ACTIONS(3984), - [anon_sym__Noreturn] = ACTIONS(3984), - [anon_sym_noreturn] = ACTIONS(3984), - [anon_sym__Nonnull] = ACTIONS(3984), - [anon_sym_mutable] = ACTIONS(3984), - [anon_sym_constinit] = ACTIONS(3984), - [anon_sym_consteval] = ACTIONS(3984), - [anon_sym_alignas] = ACTIONS(3984), - [anon_sym__Alignas] = ACTIONS(3984), - [sym_primitive_type] = ACTIONS(3984), - [anon_sym_enum] = ACTIONS(3984), - [anon_sym_class] = ACTIONS(3984), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3984), - [anon_sym_if] = ACTIONS(3984), - [anon_sym_switch] = ACTIONS(3984), - [anon_sym_case] = ACTIONS(3984), - [anon_sym_default] = ACTIONS(3984), - [anon_sym_while] = ACTIONS(3984), - [anon_sym_do] = ACTIONS(3984), - [anon_sym_for] = ACTIONS(3984), - [anon_sym_return] = ACTIONS(3984), - [anon_sym_break] = ACTIONS(3984), - [anon_sym_continue] = ACTIONS(3984), - [anon_sym_goto] = ACTIONS(3984), - [anon_sym___try] = ACTIONS(3984), - [anon_sym___leave] = ACTIONS(3984), - [anon_sym_not] = ACTIONS(3984), - [anon_sym_compl] = ACTIONS(3984), - [anon_sym_DASH_DASH] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3986), - [anon_sym_sizeof] = ACTIONS(3984), - [anon_sym___alignof__] = ACTIONS(3984), - [anon_sym___alignof] = ACTIONS(3984), - [anon_sym__alignof] = ACTIONS(3984), - [anon_sym_alignof] = ACTIONS(3984), - [anon_sym__Alignof] = ACTIONS(3984), - [anon_sym_offsetof] = ACTIONS(3984), - [anon_sym__Generic] = ACTIONS(3984), - [anon_sym_typename] = ACTIONS(3984), - [anon_sym_asm] = ACTIONS(3984), - [anon_sym___asm__] = ACTIONS(3984), - [anon_sym___asm] = ACTIONS(3984), - [sym_number_literal] = ACTIONS(3986), - [anon_sym_L_SQUOTE] = ACTIONS(3986), - [anon_sym_u_SQUOTE] = ACTIONS(3986), - [anon_sym_U_SQUOTE] = ACTIONS(3986), - [anon_sym_u8_SQUOTE] = ACTIONS(3986), - [anon_sym_SQUOTE] = ACTIONS(3986), - [anon_sym_L_DQUOTE] = ACTIONS(3986), - [anon_sym_u_DQUOTE] = ACTIONS(3986), - [anon_sym_U_DQUOTE] = ACTIONS(3986), - [anon_sym_u8_DQUOTE] = ACTIONS(3986), - [anon_sym_DQUOTE] = ACTIONS(3986), - [sym_true] = ACTIONS(3984), - [sym_false] = ACTIONS(3984), - [anon_sym_NULL] = ACTIONS(3984), - [anon_sym_nullptr] = ACTIONS(3984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3984), - [anon_sym_decltype] = ACTIONS(3984), - [anon_sym_explicit] = ACTIONS(3984), - [anon_sym_export] = ACTIONS(3984), - [anon_sym_import] = ACTIONS(3984), - [anon_sym_template] = ACTIONS(3984), - [anon_sym_operator] = ACTIONS(3984), - [anon_sym_try] = ACTIONS(3984), - [anon_sym_delete] = ACTIONS(3984), - [anon_sym_throw] = ACTIONS(3984), - [anon_sym_namespace] = ACTIONS(3984), - [anon_sym_static_assert] = ACTIONS(3984), - [anon_sym_concept] = ACTIONS(3984), - [anon_sym_co_return] = ACTIONS(3984), - [anon_sym_co_yield] = ACTIONS(3984), - [anon_sym_R_DQUOTE] = ACTIONS(3986), - [anon_sym_LR_DQUOTE] = ACTIONS(3986), - [anon_sym_uR_DQUOTE] = ACTIONS(3986), - [anon_sym_UR_DQUOTE] = ACTIONS(3986), - [anon_sym_u8R_DQUOTE] = ACTIONS(3986), - [anon_sym_co_await] = ACTIONS(3984), - [anon_sym_new] = ACTIONS(3984), - [anon_sym_requires] = ACTIONS(3984), - [anon_sym_CARET_CARET] = ACTIONS(3986), - [anon_sym_LBRACK_COLON] = ACTIONS(3986), - [sym_this] = ACTIONS(3984), - }, - [STATE(838)] = { - [sym_identifier] = ACTIONS(4196), - [aux_sym_preproc_include_token1] = ACTIONS(4196), - [aux_sym_preproc_def_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), - [sym_preproc_directive] = ACTIONS(4196), - [anon_sym_LPAREN2] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4198), - [anon_sym_TILDE] = ACTIONS(4198), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym___extension__] = ACTIONS(4196), - [anon_sym_typedef] = ACTIONS(4196), - [anon_sym_virtual] = ACTIONS(4196), - [anon_sym_extern] = ACTIONS(4196), - [anon_sym___attribute__] = ACTIONS(4196), - [anon_sym___attribute] = ACTIONS(4196), - [anon_sym_using] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), - [anon_sym___declspec] = ACTIONS(4196), - [anon_sym___based] = ACTIONS(4196), - [anon_sym___cdecl] = ACTIONS(4196), - [anon_sym___clrcall] = ACTIONS(4196), - [anon_sym___stdcall] = ACTIONS(4196), - [anon_sym___fastcall] = ACTIONS(4196), - [anon_sym___thiscall] = ACTIONS(4196), - [anon_sym___vectorcall] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_RBRACE] = ACTIONS(4198), - [anon_sym_signed] = ACTIONS(4196), - [anon_sym_unsigned] = ACTIONS(4196), - [anon_sym_long] = ACTIONS(4196), - [anon_sym_short] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_static] = ACTIONS(4196), - [anon_sym_register] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym___inline] = ACTIONS(4196), - [anon_sym___inline__] = ACTIONS(4196), - [anon_sym___forceinline] = ACTIONS(4196), - [anon_sym_thread_local] = ACTIONS(4196), - [anon_sym___thread] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_constexpr] = ACTIONS(4196), - [anon_sym_volatile] = ACTIONS(4196), - [anon_sym_restrict] = ACTIONS(4196), - [anon_sym___restrict__] = ACTIONS(4196), - [anon_sym__Atomic] = ACTIONS(4196), - [anon_sym__Noreturn] = ACTIONS(4196), - [anon_sym_noreturn] = ACTIONS(4196), - [anon_sym__Nonnull] = ACTIONS(4196), - [anon_sym_mutable] = ACTIONS(4196), - [anon_sym_constinit] = ACTIONS(4196), - [anon_sym_consteval] = ACTIONS(4196), - [anon_sym_alignas] = ACTIONS(4196), - [anon_sym__Alignas] = ACTIONS(4196), - [sym_primitive_type] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_class] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_switch] = ACTIONS(4196), - [anon_sym_case] = ACTIONS(4196), - [anon_sym_default] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_do] = ACTIONS(4196), - [anon_sym_for] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_goto] = ACTIONS(4196), - [anon_sym___try] = ACTIONS(4196), - [anon_sym___leave] = ACTIONS(4196), - [anon_sym_not] = ACTIONS(4196), - [anon_sym_compl] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_sizeof] = ACTIONS(4196), - [anon_sym___alignof__] = ACTIONS(4196), - [anon_sym___alignof] = ACTIONS(4196), - [anon_sym__alignof] = ACTIONS(4196), - [anon_sym_alignof] = ACTIONS(4196), - [anon_sym__Alignof] = ACTIONS(4196), - [anon_sym_offsetof] = ACTIONS(4196), - [anon_sym__Generic] = ACTIONS(4196), - [anon_sym_typename] = ACTIONS(4196), - [anon_sym_asm] = ACTIONS(4196), - [anon_sym___asm__] = ACTIONS(4196), - [anon_sym___asm] = ACTIONS(4196), - [sym_number_literal] = ACTIONS(4198), - [anon_sym_L_SQUOTE] = ACTIONS(4198), - [anon_sym_u_SQUOTE] = ACTIONS(4198), - [anon_sym_U_SQUOTE] = ACTIONS(4198), - [anon_sym_u8_SQUOTE] = ACTIONS(4198), - [anon_sym_SQUOTE] = ACTIONS(4198), - [anon_sym_L_DQUOTE] = ACTIONS(4198), - [anon_sym_u_DQUOTE] = ACTIONS(4198), - [anon_sym_U_DQUOTE] = ACTIONS(4198), - [anon_sym_u8_DQUOTE] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4198), - [sym_true] = ACTIONS(4196), - [sym_false] = ACTIONS(4196), - [anon_sym_NULL] = ACTIONS(4196), - [anon_sym_nullptr] = ACTIONS(4196), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4196), - [anon_sym_decltype] = ACTIONS(4196), - [anon_sym_explicit] = ACTIONS(4196), - [anon_sym_export] = ACTIONS(4196), - [anon_sym_import] = ACTIONS(4196), - [anon_sym_template] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_delete] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_namespace] = ACTIONS(4196), - [anon_sym_static_assert] = ACTIONS(4196), - [anon_sym_concept] = ACTIONS(4196), - [anon_sym_co_return] = ACTIONS(4196), - [anon_sym_co_yield] = ACTIONS(4196), - [anon_sym_R_DQUOTE] = ACTIONS(4198), - [anon_sym_LR_DQUOTE] = ACTIONS(4198), - [anon_sym_uR_DQUOTE] = ACTIONS(4198), - [anon_sym_UR_DQUOTE] = ACTIONS(4198), - [anon_sym_u8R_DQUOTE] = ACTIONS(4198), - [anon_sym_co_await] = ACTIONS(4196), - [anon_sym_new] = ACTIONS(4196), - [anon_sym_requires] = ACTIONS(4196), - [anon_sym_CARET_CARET] = ACTIONS(4198), - [anon_sym_LBRACK_COLON] = ACTIONS(4198), - [sym_this] = ACTIONS(4196), - }, - [STATE(839)] = { - [sym_identifier] = ACTIONS(4200), - [aux_sym_preproc_include_token1] = ACTIONS(4200), - [aux_sym_preproc_def_token1] = ACTIONS(4200), - [aux_sym_preproc_if_token1] = ACTIONS(4200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4200), - [sym_preproc_directive] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4202), - [anon_sym_TILDE] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_AMP] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym___extension__] = ACTIONS(4200), - [anon_sym_typedef] = ACTIONS(4200), - [anon_sym_virtual] = ACTIONS(4200), - [anon_sym_extern] = ACTIONS(4200), - [anon_sym___attribute__] = ACTIONS(4200), - [anon_sym___attribute] = ACTIONS(4200), - [anon_sym_using] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4202), - [anon_sym___declspec] = ACTIONS(4200), - [anon_sym___based] = ACTIONS(4200), - [anon_sym___cdecl] = ACTIONS(4200), - [anon_sym___clrcall] = ACTIONS(4200), - [anon_sym___stdcall] = ACTIONS(4200), - [anon_sym___fastcall] = ACTIONS(4200), - [anon_sym___thiscall] = ACTIONS(4200), - [anon_sym___vectorcall] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4202), - [anon_sym_RBRACE] = ACTIONS(4202), - [anon_sym_signed] = ACTIONS(4200), - [anon_sym_unsigned] = ACTIONS(4200), - [anon_sym_long] = ACTIONS(4200), - [anon_sym_short] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(4200), - [anon_sym_static] = ACTIONS(4200), - [anon_sym_register] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym___inline] = ACTIONS(4200), - [anon_sym___inline__] = ACTIONS(4200), - [anon_sym___forceinline] = ACTIONS(4200), - [anon_sym_thread_local] = ACTIONS(4200), - [anon_sym___thread] = ACTIONS(4200), - [anon_sym_const] = ACTIONS(4200), - [anon_sym_constexpr] = ACTIONS(4200), - [anon_sym_volatile] = ACTIONS(4200), - [anon_sym_restrict] = ACTIONS(4200), - [anon_sym___restrict__] = ACTIONS(4200), - [anon_sym__Atomic] = ACTIONS(4200), - [anon_sym__Noreturn] = ACTIONS(4200), - [anon_sym_noreturn] = ACTIONS(4200), - [anon_sym__Nonnull] = ACTIONS(4200), - [anon_sym_mutable] = ACTIONS(4200), - [anon_sym_constinit] = ACTIONS(4200), - [anon_sym_consteval] = ACTIONS(4200), - [anon_sym_alignas] = ACTIONS(4200), - [anon_sym__Alignas] = ACTIONS(4200), - [sym_primitive_type] = ACTIONS(4200), - [anon_sym_enum] = ACTIONS(4200), - [anon_sym_class] = ACTIONS(4200), - [anon_sym_struct] = ACTIONS(4200), - [anon_sym_union] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_switch] = ACTIONS(4200), - [anon_sym_case] = ACTIONS(4200), - [anon_sym_default] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_do] = ACTIONS(4200), - [anon_sym_for] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_goto] = ACTIONS(4200), - [anon_sym___try] = ACTIONS(4200), - [anon_sym___leave] = ACTIONS(4200), - [anon_sym_not] = ACTIONS(4200), - [anon_sym_compl] = ACTIONS(4200), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_sizeof] = ACTIONS(4200), - [anon_sym___alignof__] = ACTIONS(4200), - [anon_sym___alignof] = ACTIONS(4200), - [anon_sym__alignof] = ACTIONS(4200), - [anon_sym_alignof] = ACTIONS(4200), - [anon_sym__Alignof] = ACTIONS(4200), - [anon_sym_offsetof] = ACTIONS(4200), - [anon_sym__Generic] = ACTIONS(4200), - [anon_sym_typename] = ACTIONS(4200), - [anon_sym_asm] = ACTIONS(4200), - [anon_sym___asm__] = ACTIONS(4200), - [anon_sym___asm] = ACTIONS(4200), - [sym_number_literal] = ACTIONS(4202), - [anon_sym_L_SQUOTE] = ACTIONS(4202), - [anon_sym_u_SQUOTE] = ACTIONS(4202), - [anon_sym_U_SQUOTE] = ACTIONS(4202), - [anon_sym_u8_SQUOTE] = ACTIONS(4202), - [anon_sym_SQUOTE] = ACTIONS(4202), - [anon_sym_L_DQUOTE] = ACTIONS(4202), - [anon_sym_u_DQUOTE] = ACTIONS(4202), - [anon_sym_U_DQUOTE] = ACTIONS(4202), - [anon_sym_u8_DQUOTE] = ACTIONS(4202), - [anon_sym_DQUOTE] = ACTIONS(4202), - [sym_true] = ACTIONS(4200), - [sym_false] = ACTIONS(4200), - [anon_sym_NULL] = ACTIONS(4200), - [anon_sym_nullptr] = ACTIONS(4200), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4200), - [anon_sym_decltype] = ACTIONS(4200), - [anon_sym_explicit] = ACTIONS(4200), - [anon_sym_export] = ACTIONS(4200), - [anon_sym_import] = ACTIONS(4200), - [anon_sym_template] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_delete] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_namespace] = ACTIONS(4200), - [anon_sym_static_assert] = ACTIONS(4200), - [anon_sym_concept] = ACTIONS(4200), - [anon_sym_co_return] = ACTIONS(4200), - [anon_sym_co_yield] = ACTIONS(4200), - [anon_sym_R_DQUOTE] = ACTIONS(4202), - [anon_sym_LR_DQUOTE] = ACTIONS(4202), - [anon_sym_uR_DQUOTE] = ACTIONS(4202), - [anon_sym_UR_DQUOTE] = ACTIONS(4202), - [anon_sym_u8R_DQUOTE] = ACTIONS(4202), - [anon_sym_co_await] = ACTIONS(4200), - [anon_sym_new] = ACTIONS(4200), - [anon_sym_requires] = ACTIONS(4200), - [anon_sym_CARET_CARET] = ACTIONS(4202), - [anon_sym_LBRACK_COLON] = ACTIONS(4202), - [sym_this] = ACTIONS(4200), - }, - [STATE(840)] = { - [sym_identifier] = ACTIONS(4204), - [aux_sym_preproc_include_token1] = ACTIONS(4204), - [aux_sym_preproc_def_token1] = ACTIONS(4204), - [aux_sym_preproc_if_token1] = ACTIONS(4204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4204), - [sym_preproc_directive] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(4206), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_TILDE] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4204), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_AMP_AMP] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(4204), - [anon_sym_SEMI] = ACTIONS(4206), - [anon_sym___extension__] = ACTIONS(4204), - [anon_sym_typedef] = ACTIONS(4204), - [anon_sym_virtual] = ACTIONS(4204), - [anon_sym_extern] = ACTIONS(4204), - [anon_sym___attribute__] = ACTIONS(4204), - [anon_sym___attribute] = ACTIONS(4204), - [anon_sym_using] = ACTIONS(4204), - [anon_sym_COLON_COLON] = ACTIONS(4206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4206), - [anon_sym___declspec] = ACTIONS(4204), - [anon_sym___based] = ACTIONS(4204), - [anon_sym___cdecl] = ACTIONS(4204), - [anon_sym___clrcall] = ACTIONS(4204), - [anon_sym___stdcall] = ACTIONS(4204), - [anon_sym___fastcall] = ACTIONS(4204), - [anon_sym___thiscall] = ACTIONS(4204), - [anon_sym___vectorcall] = ACTIONS(4204), - [anon_sym_LBRACE] = ACTIONS(4206), - [anon_sym_RBRACE] = ACTIONS(4206), - [anon_sym_signed] = ACTIONS(4204), - [anon_sym_unsigned] = ACTIONS(4204), - [anon_sym_long] = ACTIONS(4204), - [anon_sym_short] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_static] = ACTIONS(4204), - [anon_sym_register] = ACTIONS(4204), - [anon_sym_inline] = ACTIONS(4204), - [anon_sym___inline] = ACTIONS(4204), - [anon_sym___inline__] = ACTIONS(4204), - [anon_sym___forceinline] = ACTIONS(4204), - [anon_sym_thread_local] = ACTIONS(4204), - [anon_sym___thread] = ACTIONS(4204), - [anon_sym_const] = ACTIONS(4204), - [anon_sym_constexpr] = ACTIONS(4204), - [anon_sym_volatile] = ACTIONS(4204), - [anon_sym_restrict] = ACTIONS(4204), - [anon_sym___restrict__] = ACTIONS(4204), - [anon_sym__Atomic] = ACTIONS(4204), - [anon_sym__Noreturn] = ACTIONS(4204), - [anon_sym_noreturn] = ACTIONS(4204), - [anon_sym__Nonnull] = ACTIONS(4204), - [anon_sym_mutable] = ACTIONS(4204), - [anon_sym_constinit] = ACTIONS(4204), - [anon_sym_consteval] = ACTIONS(4204), - [anon_sym_alignas] = ACTIONS(4204), - [anon_sym__Alignas] = ACTIONS(4204), - [sym_primitive_type] = ACTIONS(4204), - [anon_sym_enum] = ACTIONS(4204), - [anon_sym_class] = ACTIONS(4204), - [anon_sym_struct] = ACTIONS(4204), - [anon_sym_union] = ACTIONS(4204), - [anon_sym_if] = ACTIONS(4204), - [anon_sym_switch] = ACTIONS(4204), - [anon_sym_case] = ACTIONS(4204), - [anon_sym_default] = ACTIONS(4204), - [anon_sym_while] = ACTIONS(4204), - [anon_sym_do] = ACTIONS(4204), - [anon_sym_for] = ACTIONS(4204), - [anon_sym_return] = ACTIONS(4204), - [anon_sym_break] = ACTIONS(4204), - [anon_sym_continue] = ACTIONS(4204), - [anon_sym_goto] = ACTIONS(4204), - [anon_sym___try] = ACTIONS(4204), - [anon_sym___leave] = ACTIONS(4204), - [anon_sym_not] = ACTIONS(4204), - [anon_sym_compl] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4206), - [anon_sym_PLUS_PLUS] = ACTIONS(4206), - [anon_sym_sizeof] = ACTIONS(4204), - [anon_sym___alignof__] = ACTIONS(4204), - [anon_sym___alignof] = ACTIONS(4204), - [anon_sym__alignof] = ACTIONS(4204), - [anon_sym_alignof] = ACTIONS(4204), - [anon_sym__Alignof] = ACTIONS(4204), - [anon_sym_offsetof] = ACTIONS(4204), - [anon_sym__Generic] = ACTIONS(4204), - [anon_sym_typename] = ACTIONS(4204), - [anon_sym_asm] = ACTIONS(4204), - [anon_sym___asm__] = ACTIONS(4204), - [anon_sym___asm] = ACTIONS(4204), - [sym_number_literal] = ACTIONS(4206), - [anon_sym_L_SQUOTE] = ACTIONS(4206), - [anon_sym_u_SQUOTE] = ACTIONS(4206), - [anon_sym_U_SQUOTE] = ACTIONS(4206), - [anon_sym_u8_SQUOTE] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4206), - [anon_sym_L_DQUOTE] = ACTIONS(4206), - [anon_sym_u_DQUOTE] = ACTIONS(4206), - [anon_sym_U_DQUOTE] = ACTIONS(4206), - [anon_sym_u8_DQUOTE] = ACTIONS(4206), - [anon_sym_DQUOTE] = ACTIONS(4206), - [sym_true] = ACTIONS(4204), - [sym_false] = ACTIONS(4204), - [anon_sym_NULL] = ACTIONS(4204), - [anon_sym_nullptr] = ACTIONS(4204), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4204), - [anon_sym_decltype] = ACTIONS(4204), - [anon_sym_explicit] = ACTIONS(4204), - [anon_sym_export] = ACTIONS(4204), - [anon_sym_import] = ACTIONS(4204), - [anon_sym_template] = ACTIONS(4204), - [anon_sym_operator] = ACTIONS(4204), - [anon_sym_try] = ACTIONS(4204), - [anon_sym_delete] = ACTIONS(4204), - [anon_sym_throw] = ACTIONS(4204), - [anon_sym_namespace] = ACTIONS(4204), - [anon_sym_static_assert] = ACTIONS(4204), - [anon_sym_concept] = ACTIONS(4204), - [anon_sym_co_return] = ACTIONS(4204), - [anon_sym_co_yield] = ACTIONS(4204), - [anon_sym_R_DQUOTE] = ACTIONS(4206), - [anon_sym_LR_DQUOTE] = ACTIONS(4206), - [anon_sym_uR_DQUOTE] = ACTIONS(4206), - [anon_sym_UR_DQUOTE] = ACTIONS(4206), - [anon_sym_u8R_DQUOTE] = ACTIONS(4206), - [anon_sym_co_await] = ACTIONS(4204), - [anon_sym_new] = ACTIONS(4204), - [anon_sym_requires] = ACTIONS(4204), - [anon_sym_CARET_CARET] = ACTIONS(4206), - [anon_sym_LBRACK_COLON] = ACTIONS(4206), - [sym_this] = ACTIONS(4204), - }, - [STATE(841)] = { - [sym_identifier] = ACTIONS(4084), - [aux_sym_preproc_include_token1] = ACTIONS(4084), - [aux_sym_preproc_def_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token1] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), - [sym_preproc_directive] = ACTIONS(4084), - [anon_sym_LPAREN2] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4086), - [anon_sym_TILDE] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_AMP_AMP] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym___extension__] = ACTIONS(4084), - [anon_sym_typedef] = ACTIONS(4084), - [anon_sym_virtual] = ACTIONS(4084), - [anon_sym_extern] = ACTIONS(4084), - [anon_sym___attribute__] = ACTIONS(4084), - [anon_sym___attribute] = ACTIONS(4084), - [anon_sym_using] = ACTIONS(4084), - [anon_sym_COLON_COLON] = ACTIONS(4086), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), - [anon_sym___declspec] = ACTIONS(4084), - [anon_sym___based] = ACTIONS(4084), - [anon_sym___cdecl] = ACTIONS(4084), - [anon_sym___clrcall] = ACTIONS(4084), - [anon_sym___stdcall] = ACTIONS(4084), - [anon_sym___fastcall] = ACTIONS(4084), - [anon_sym___thiscall] = ACTIONS(4084), - [anon_sym___vectorcall] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4086), - [anon_sym_RBRACE] = ACTIONS(4086), - [anon_sym_signed] = ACTIONS(4084), - [anon_sym_unsigned] = ACTIONS(4084), - [anon_sym_long] = ACTIONS(4084), - [anon_sym_short] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_register] = ACTIONS(4084), - [anon_sym_inline] = ACTIONS(4084), - [anon_sym___inline] = ACTIONS(4084), - [anon_sym___inline__] = ACTIONS(4084), - [anon_sym___forceinline] = ACTIONS(4084), - [anon_sym_thread_local] = ACTIONS(4084), - [anon_sym___thread] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_constexpr] = ACTIONS(4084), - [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_restrict] = ACTIONS(4084), - [anon_sym___restrict__] = ACTIONS(4084), - [anon_sym__Atomic] = ACTIONS(4084), - [anon_sym__Noreturn] = ACTIONS(4084), - [anon_sym_noreturn] = ACTIONS(4084), - [anon_sym__Nonnull] = ACTIONS(4084), - [anon_sym_mutable] = ACTIONS(4084), - [anon_sym_constinit] = ACTIONS(4084), - [anon_sym_consteval] = ACTIONS(4084), - [anon_sym_alignas] = ACTIONS(4084), - [anon_sym__Alignas] = ACTIONS(4084), - [sym_primitive_type] = ACTIONS(4084), - [anon_sym_enum] = ACTIONS(4084), - [anon_sym_class] = ACTIONS(4084), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_union] = ACTIONS(4084), - [anon_sym_if] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(4084), - [anon_sym_case] = ACTIONS(4084), - [anon_sym_default] = ACTIONS(4084), - [anon_sym_while] = ACTIONS(4084), - [anon_sym_do] = ACTIONS(4084), - [anon_sym_for] = ACTIONS(4084), - [anon_sym_return] = ACTIONS(4084), - [anon_sym_break] = ACTIONS(4084), - [anon_sym_continue] = ACTIONS(4084), - [anon_sym_goto] = ACTIONS(4084), - [anon_sym___try] = ACTIONS(4084), - [anon_sym___leave] = ACTIONS(4084), - [anon_sym_not] = ACTIONS(4084), - [anon_sym_compl] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4086), - [anon_sym_PLUS_PLUS] = ACTIONS(4086), - [anon_sym_sizeof] = ACTIONS(4084), - [anon_sym___alignof__] = ACTIONS(4084), - [anon_sym___alignof] = ACTIONS(4084), - [anon_sym__alignof] = ACTIONS(4084), - [anon_sym_alignof] = ACTIONS(4084), - [anon_sym__Alignof] = ACTIONS(4084), - [anon_sym_offsetof] = ACTIONS(4084), - [anon_sym__Generic] = ACTIONS(4084), - [anon_sym_typename] = ACTIONS(4084), - [anon_sym_asm] = ACTIONS(4084), - [anon_sym___asm__] = ACTIONS(4084), - [anon_sym___asm] = ACTIONS(4084), - [sym_number_literal] = ACTIONS(4086), - [anon_sym_L_SQUOTE] = ACTIONS(4086), - [anon_sym_u_SQUOTE] = ACTIONS(4086), - [anon_sym_U_SQUOTE] = ACTIONS(4086), - [anon_sym_u8_SQUOTE] = ACTIONS(4086), - [anon_sym_SQUOTE] = ACTIONS(4086), - [anon_sym_L_DQUOTE] = ACTIONS(4086), - [anon_sym_u_DQUOTE] = ACTIONS(4086), - [anon_sym_U_DQUOTE] = ACTIONS(4086), - [anon_sym_u8_DQUOTE] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(4086), - [sym_true] = ACTIONS(4084), - [sym_false] = ACTIONS(4084), - [anon_sym_NULL] = ACTIONS(4084), - [anon_sym_nullptr] = ACTIONS(4084), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4084), - [anon_sym_decltype] = ACTIONS(4084), - [anon_sym_explicit] = ACTIONS(4084), - [anon_sym_export] = ACTIONS(4084), - [anon_sym_import] = ACTIONS(4084), - [anon_sym_template] = ACTIONS(4084), - [anon_sym_operator] = ACTIONS(4084), - [anon_sym_try] = ACTIONS(4084), - [anon_sym_delete] = ACTIONS(4084), - [anon_sym_throw] = ACTIONS(4084), - [anon_sym_namespace] = ACTIONS(4084), - [anon_sym_static_assert] = ACTIONS(4084), - [anon_sym_concept] = ACTIONS(4084), - [anon_sym_co_return] = ACTIONS(4084), - [anon_sym_co_yield] = ACTIONS(4084), - [anon_sym_R_DQUOTE] = ACTIONS(4086), - [anon_sym_LR_DQUOTE] = ACTIONS(4086), - [anon_sym_uR_DQUOTE] = ACTIONS(4086), - [anon_sym_UR_DQUOTE] = ACTIONS(4086), - [anon_sym_u8R_DQUOTE] = ACTIONS(4086), - [anon_sym_co_await] = ACTIONS(4084), - [anon_sym_new] = ACTIONS(4084), - [anon_sym_requires] = ACTIONS(4084), - [anon_sym_CARET_CARET] = ACTIONS(4086), - [anon_sym_LBRACK_COLON] = ACTIONS(4086), - [sym_this] = ACTIONS(4084), - }, - [STATE(842)] = { [sym_identifier] = ACTIONS(4088), [aux_sym_preproc_include_token1] = ACTIONS(4088), [aux_sym_preproc_def_token1] = ACTIONS(4088), @@ -180019,987 +177360,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4090), [sym_this] = ACTIONS(4088), }, - [STATE(843)] = { - [sym_identifier] = ACTIONS(3925), - [aux_sym_preproc_include_token1] = ACTIONS(3925), - [aux_sym_preproc_def_token1] = ACTIONS(3925), - [aux_sym_preproc_if_token1] = ACTIONS(3925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3925), - [sym_preproc_directive] = ACTIONS(3925), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_BANG] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_DASH] = ACTIONS(3925), - [anon_sym_PLUS] = ACTIONS(3925), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3925), - [anon_sym_typedef] = ACTIONS(3925), - [anon_sym_virtual] = ACTIONS(3925), - [anon_sym_extern] = ACTIONS(3925), - [anon_sym___attribute__] = ACTIONS(3925), - [anon_sym___attribute] = ACTIONS(3925), - [anon_sym_using] = ACTIONS(3925), - [anon_sym_COLON_COLON] = ACTIONS(3928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3925), - [anon_sym___based] = ACTIONS(3925), - [anon_sym___cdecl] = ACTIONS(3925), - [anon_sym___clrcall] = ACTIONS(3925), - [anon_sym___stdcall] = ACTIONS(3925), - [anon_sym___fastcall] = ACTIONS(3925), - [anon_sym___thiscall] = ACTIONS(3925), - [anon_sym___vectorcall] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_RBRACE] = ACTIONS(3928), - [anon_sym_signed] = ACTIONS(3925), - [anon_sym_unsigned] = ACTIONS(3925), - [anon_sym_long] = ACTIONS(3925), - [anon_sym_short] = ACTIONS(3925), - [anon_sym_LBRACK] = ACTIONS(3925), - [anon_sym_static] = ACTIONS(3925), - [anon_sym_register] = ACTIONS(3925), - [anon_sym_inline] = ACTIONS(3925), - [anon_sym___inline] = ACTIONS(3925), - [anon_sym___inline__] = ACTIONS(3925), - [anon_sym___forceinline] = ACTIONS(3925), - [anon_sym_thread_local] = ACTIONS(3925), - [anon_sym___thread] = ACTIONS(3925), - [anon_sym_const] = ACTIONS(3925), - [anon_sym_constexpr] = ACTIONS(3925), - [anon_sym_volatile] = ACTIONS(3925), - [anon_sym_restrict] = ACTIONS(3925), - [anon_sym___restrict__] = ACTIONS(3925), - [anon_sym__Atomic] = ACTIONS(3925), - [anon_sym__Noreturn] = ACTIONS(3925), - [anon_sym_noreturn] = ACTIONS(3925), - [anon_sym__Nonnull] = ACTIONS(3925), - [anon_sym_mutable] = ACTIONS(3925), - [anon_sym_constinit] = ACTIONS(3925), - [anon_sym_consteval] = ACTIONS(3925), - [anon_sym_alignas] = ACTIONS(3925), - [anon_sym__Alignas] = ACTIONS(3925), - [sym_primitive_type] = ACTIONS(3925), - [anon_sym_enum] = ACTIONS(3925), - [anon_sym_class] = ACTIONS(3925), - [anon_sym_struct] = ACTIONS(3925), - [anon_sym_union] = ACTIONS(3925), - [anon_sym_if] = ACTIONS(3925), - [anon_sym_switch] = ACTIONS(3925), - [anon_sym_case] = ACTIONS(3925), - [anon_sym_default] = ACTIONS(3925), - [anon_sym_while] = ACTIONS(3925), - [anon_sym_do] = ACTIONS(3925), - [anon_sym_for] = ACTIONS(3925), - [anon_sym_return] = ACTIONS(3925), - [anon_sym_break] = ACTIONS(3925), - [anon_sym_continue] = ACTIONS(3925), - [anon_sym_goto] = ACTIONS(3925), - [anon_sym___try] = ACTIONS(3925), - [anon_sym___leave] = ACTIONS(3925), - [anon_sym_not] = ACTIONS(3925), - [anon_sym_compl] = ACTIONS(3925), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3925), - [anon_sym___alignof__] = ACTIONS(3925), - [anon_sym___alignof] = ACTIONS(3925), - [anon_sym__alignof] = ACTIONS(3925), - [anon_sym_alignof] = ACTIONS(3925), - [anon_sym__Alignof] = ACTIONS(3925), - [anon_sym_offsetof] = ACTIONS(3925), - [anon_sym__Generic] = ACTIONS(3925), - [anon_sym_typename] = ACTIONS(3925), - [anon_sym_asm] = ACTIONS(3925), - [anon_sym___asm__] = ACTIONS(3925), - [anon_sym___asm] = ACTIONS(3925), - [sym_number_literal] = ACTIONS(3928), - [anon_sym_L_SQUOTE] = ACTIONS(3928), - [anon_sym_u_SQUOTE] = ACTIONS(3928), - [anon_sym_U_SQUOTE] = ACTIONS(3928), - [anon_sym_u8_SQUOTE] = ACTIONS(3928), - [anon_sym_SQUOTE] = ACTIONS(3928), - [anon_sym_L_DQUOTE] = ACTIONS(3928), - [anon_sym_u_DQUOTE] = ACTIONS(3928), - [anon_sym_U_DQUOTE] = ACTIONS(3928), - [anon_sym_u8_DQUOTE] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(3928), - [sym_true] = ACTIONS(3925), - [sym_false] = ACTIONS(3925), - [anon_sym_NULL] = ACTIONS(3925), - [anon_sym_nullptr] = ACTIONS(3925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3925), - [anon_sym_decltype] = ACTIONS(3925), - [anon_sym_explicit] = ACTIONS(3925), - [anon_sym_export] = ACTIONS(3925), - [anon_sym_import] = ACTIONS(3925), - [anon_sym_template] = ACTIONS(3925), - [anon_sym_operator] = ACTIONS(3925), - [anon_sym_try] = ACTIONS(3925), - [anon_sym_delete] = ACTIONS(3925), - [anon_sym_throw] = ACTIONS(3925), - [anon_sym_namespace] = ACTIONS(3925), - [anon_sym_static_assert] = ACTIONS(3925), - [anon_sym_concept] = ACTIONS(3925), - [anon_sym_co_return] = ACTIONS(3925), - [anon_sym_co_yield] = ACTIONS(3925), - [anon_sym_R_DQUOTE] = ACTIONS(3928), - [anon_sym_LR_DQUOTE] = ACTIONS(3928), - [anon_sym_uR_DQUOTE] = ACTIONS(3928), - [anon_sym_UR_DQUOTE] = ACTIONS(3928), - [anon_sym_u8R_DQUOTE] = ACTIONS(3928), - [anon_sym_co_await] = ACTIONS(3925), - [anon_sym_new] = ACTIONS(3925), - [anon_sym_requires] = ACTIONS(3925), - [anon_sym_CARET_CARET] = ACTIONS(3928), - [anon_sym_LBRACK_COLON] = ACTIONS(3928), - [sym_this] = ACTIONS(3925), - }, - [STATE(844)] = { - [sym_identifier] = ACTIONS(4000), - [aux_sym_preproc_include_token1] = ACTIONS(4000), - [aux_sym_preproc_def_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token1] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), - [sym_preproc_directive] = ACTIONS(4000), - [anon_sym_LPAREN2] = ACTIONS(4002), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_TILDE] = ACTIONS(4002), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym___extension__] = ACTIONS(4000), - [anon_sym_typedef] = ACTIONS(4000), - [anon_sym_virtual] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym___attribute__] = ACTIONS(4000), - [anon_sym___attribute] = ACTIONS(4000), - [anon_sym_using] = ACTIONS(4000), - [anon_sym_COLON_COLON] = ACTIONS(4002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), - [anon_sym___declspec] = ACTIONS(4000), - [anon_sym___based] = ACTIONS(4000), - [anon_sym___cdecl] = ACTIONS(4000), - [anon_sym___clrcall] = ACTIONS(4000), - [anon_sym___stdcall] = ACTIONS(4000), - [anon_sym___fastcall] = ACTIONS(4000), - [anon_sym___thiscall] = ACTIONS(4000), - [anon_sym___vectorcall] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_RBRACE] = ACTIONS(4002), - [anon_sym_signed] = ACTIONS(4000), - [anon_sym_unsigned] = ACTIONS(4000), - [anon_sym_long] = ACTIONS(4000), - [anon_sym_short] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_static] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_inline] = ACTIONS(4000), - [anon_sym___inline] = ACTIONS(4000), - [anon_sym___inline__] = ACTIONS(4000), - [anon_sym___forceinline] = ACTIONS(4000), - [anon_sym_thread_local] = ACTIONS(4000), - [anon_sym___thread] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_constexpr] = ACTIONS(4000), - [anon_sym_volatile] = ACTIONS(4000), - [anon_sym_restrict] = ACTIONS(4000), - [anon_sym___restrict__] = ACTIONS(4000), - [anon_sym__Atomic] = ACTIONS(4000), - [anon_sym__Noreturn] = ACTIONS(4000), - [anon_sym_noreturn] = ACTIONS(4000), - [anon_sym__Nonnull] = ACTIONS(4000), - [anon_sym_mutable] = ACTIONS(4000), - [anon_sym_constinit] = ACTIONS(4000), - [anon_sym_consteval] = ACTIONS(4000), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym__Alignas] = ACTIONS(4000), - [sym_primitive_type] = ACTIONS(4000), - [anon_sym_enum] = ACTIONS(4000), - [anon_sym_class] = ACTIONS(4000), - [anon_sym_struct] = ACTIONS(4000), - [anon_sym_union] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_switch] = ACTIONS(4000), - [anon_sym_case] = ACTIONS(4000), - [anon_sym_default] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_goto] = ACTIONS(4000), - [anon_sym___try] = ACTIONS(4000), - [anon_sym___leave] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_compl] = ACTIONS(4000), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_sizeof] = ACTIONS(4000), - [anon_sym___alignof__] = ACTIONS(4000), - [anon_sym___alignof] = ACTIONS(4000), - [anon_sym__alignof] = ACTIONS(4000), - [anon_sym_alignof] = ACTIONS(4000), - [anon_sym__Alignof] = ACTIONS(4000), - [anon_sym_offsetof] = ACTIONS(4000), - [anon_sym__Generic] = ACTIONS(4000), - [anon_sym_typename] = ACTIONS(4000), - [anon_sym_asm] = ACTIONS(4000), - [anon_sym___asm__] = ACTIONS(4000), - [anon_sym___asm] = ACTIONS(4000), - [sym_number_literal] = ACTIONS(4002), - [anon_sym_L_SQUOTE] = ACTIONS(4002), - [anon_sym_u_SQUOTE] = ACTIONS(4002), - [anon_sym_U_SQUOTE] = ACTIONS(4002), - [anon_sym_u8_SQUOTE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(4002), - [anon_sym_L_DQUOTE] = ACTIONS(4002), - [anon_sym_u_DQUOTE] = ACTIONS(4002), - [anon_sym_U_DQUOTE] = ACTIONS(4002), - [anon_sym_u8_DQUOTE] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [sym_true] = ACTIONS(4000), - [sym_false] = ACTIONS(4000), - [anon_sym_NULL] = ACTIONS(4000), - [anon_sym_nullptr] = ACTIONS(4000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4000), - [anon_sym_decltype] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4000), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_import] = ACTIONS(4000), - [anon_sym_template] = ACTIONS(4000), - [anon_sym_operator] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_delete] = ACTIONS(4000), - [anon_sym_throw] = ACTIONS(4000), - [anon_sym_namespace] = ACTIONS(4000), - [anon_sym_static_assert] = ACTIONS(4000), - [anon_sym_concept] = ACTIONS(4000), - [anon_sym_co_return] = ACTIONS(4000), - [anon_sym_co_yield] = ACTIONS(4000), - [anon_sym_R_DQUOTE] = ACTIONS(4002), - [anon_sym_LR_DQUOTE] = ACTIONS(4002), - [anon_sym_uR_DQUOTE] = ACTIONS(4002), - [anon_sym_UR_DQUOTE] = ACTIONS(4002), - [anon_sym_u8R_DQUOTE] = ACTIONS(4002), - [anon_sym_co_await] = ACTIONS(4000), - [anon_sym_new] = ACTIONS(4000), - [anon_sym_requires] = ACTIONS(4000), - [anon_sym_CARET_CARET] = ACTIONS(4002), - [anon_sym_LBRACK_COLON] = ACTIONS(4002), - [sym_this] = ACTIONS(4000), - }, - [STATE(845)] = { - [sym_identifier] = ACTIONS(3921), - [aux_sym_preproc_include_token1] = ACTIONS(3921), - [aux_sym_preproc_def_token1] = ACTIONS(3921), - [aux_sym_preproc_if_token1] = ACTIONS(3921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), - [sym_preproc_directive] = ACTIONS(3921), - [anon_sym_LPAREN2] = ACTIONS(3923), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_TILDE] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3921), - [anon_sym_PLUS] = ACTIONS(3921), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3921), - [anon_sym_SEMI] = ACTIONS(3923), - [anon_sym___extension__] = ACTIONS(3921), - [anon_sym_typedef] = ACTIONS(3921), - [anon_sym_virtual] = ACTIONS(3921), - [anon_sym_extern] = ACTIONS(3921), - [anon_sym___attribute__] = ACTIONS(3921), - [anon_sym___attribute] = ACTIONS(3921), - [anon_sym_using] = ACTIONS(3921), - [anon_sym_COLON_COLON] = ACTIONS(3923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), - [anon_sym___declspec] = ACTIONS(3921), - [anon_sym___based] = ACTIONS(3921), - [anon_sym___cdecl] = ACTIONS(3921), - [anon_sym___clrcall] = ACTIONS(3921), - [anon_sym___stdcall] = ACTIONS(3921), - [anon_sym___fastcall] = ACTIONS(3921), - [anon_sym___thiscall] = ACTIONS(3921), - [anon_sym___vectorcall] = ACTIONS(3921), - [anon_sym_LBRACE] = ACTIONS(3923), - [anon_sym_RBRACE] = ACTIONS(3923), - [anon_sym_signed] = ACTIONS(3921), - [anon_sym_unsigned] = ACTIONS(3921), - [anon_sym_long] = ACTIONS(3921), - [anon_sym_short] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_static] = ACTIONS(3921), - [anon_sym_register] = ACTIONS(3921), - [anon_sym_inline] = ACTIONS(3921), - [anon_sym___inline] = ACTIONS(3921), - [anon_sym___inline__] = ACTIONS(3921), - [anon_sym___forceinline] = ACTIONS(3921), - [anon_sym_thread_local] = ACTIONS(3921), - [anon_sym___thread] = ACTIONS(3921), - [anon_sym_const] = ACTIONS(3921), - [anon_sym_constexpr] = ACTIONS(3921), - [anon_sym_volatile] = ACTIONS(3921), - [anon_sym_restrict] = ACTIONS(3921), - [anon_sym___restrict__] = ACTIONS(3921), - [anon_sym__Atomic] = ACTIONS(3921), - [anon_sym__Noreturn] = ACTIONS(3921), - [anon_sym_noreturn] = ACTIONS(3921), - [anon_sym__Nonnull] = ACTIONS(3921), - [anon_sym_mutable] = ACTIONS(3921), - [anon_sym_constinit] = ACTIONS(3921), - [anon_sym_consteval] = ACTIONS(3921), - [anon_sym_alignas] = ACTIONS(3921), - [anon_sym__Alignas] = ACTIONS(3921), - [sym_primitive_type] = ACTIONS(3921), - [anon_sym_enum] = ACTIONS(3921), - [anon_sym_class] = ACTIONS(3921), - [anon_sym_struct] = ACTIONS(3921), - [anon_sym_union] = ACTIONS(3921), - [anon_sym_if] = ACTIONS(3921), - [anon_sym_switch] = ACTIONS(3921), - [anon_sym_case] = ACTIONS(3921), - [anon_sym_default] = ACTIONS(3921), - [anon_sym_while] = ACTIONS(3921), - [anon_sym_do] = ACTIONS(3921), - [anon_sym_for] = ACTIONS(3921), - [anon_sym_return] = ACTIONS(3921), - [anon_sym_break] = ACTIONS(3921), - [anon_sym_continue] = ACTIONS(3921), - [anon_sym_goto] = ACTIONS(3921), - [anon_sym___try] = ACTIONS(3921), - [anon_sym___leave] = ACTIONS(3921), - [anon_sym_not] = ACTIONS(3921), - [anon_sym_compl] = ACTIONS(3921), - [anon_sym_DASH_DASH] = ACTIONS(3923), - [anon_sym_PLUS_PLUS] = ACTIONS(3923), - [anon_sym_sizeof] = ACTIONS(3921), - [anon_sym___alignof__] = ACTIONS(3921), - [anon_sym___alignof] = ACTIONS(3921), - [anon_sym__alignof] = ACTIONS(3921), - [anon_sym_alignof] = ACTIONS(3921), - [anon_sym__Alignof] = ACTIONS(3921), - [anon_sym_offsetof] = ACTIONS(3921), - [anon_sym__Generic] = ACTIONS(3921), - [anon_sym_typename] = ACTIONS(3921), - [anon_sym_asm] = ACTIONS(3921), - [anon_sym___asm__] = ACTIONS(3921), - [anon_sym___asm] = ACTIONS(3921), - [sym_number_literal] = ACTIONS(3923), - [anon_sym_L_SQUOTE] = ACTIONS(3923), - [anon_sym_u_SQUOTE] = ACTIONS(3923), - [anon_sym_U_SQUOTE] = ACTIONS(3923), - [anon_sym_u8_SQUOTE] = ACTIONS(3923), - [anon_sym_SQUOTE] = ACTIONS(3923), - [anon_sym_L_DQUOTE] = ACTIONS(3923), - [anon_sym_u_DQUOTE] = ACTIONS(3923), - [anon_sym_U_DQUOTE] = ACTIONS(3923), - [anon_sym_u8_DQUOTE] = ACTIONS(3923), - [anon_sym_DQUOTE] = ACTIONS(3923), - [sym_true] = ACTIONS(3921), - [sym_false] = ACTIONS(3921), - [anon_sym_NULL] = ACTIONS(3921), - [anon_sym_nullptr] = ACTIONS(3921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3921), - [anon_sym_decltype] = ACTIONS(3921), - [anon_sym_explicit] = ACTIONS(3921), - [anon_sym_export] = ACTIONS(3921), - [anon_sym_import] = ACTIONS(3921), - [anon_sym_template] = ACTIONS(3921), - [anon_sym_operator] = ACTIONS(3921), - [anon_sym_try] = ACTIONS(3921), - [anon_sym_delete] = ACTIONS(3921), - [anon_sym_throw] = ACTIONS(3921), - [anon_sym_namespace] = ACTIONS(3921), - [anon_sym_static_assert] = ACTIONS(3921), - [anon_sym_concept] = ACTIONS(3921), - [anon_sym_co_return] = ACTIONS(3921), - [anon_sym_co_yield] = ACTIONS(3921), - [anon_sym_R_DQUOTE] = ACTIONS(3923), - [anon_sym_LR_DQUOTE] = ACTIONS(3923), - [anon_sym_uR_DQUOTE] = ACTIONS(3923), - [anon_sym_UR_DQUOTE] = ACTIONS(3923), - [anon_sym_u8R_DQUOTE] = ACTIONS(3923), - [anon_sym_co_await] = ACTIONS(3921), - [anon_sym_new] = ACTIONS(3921), - [anon_sym_requires] = ACTIONS(3921), - [anon_sym_CARET_CARET] = ACTIONS(3923), - [anon_sym_LBRACK_COLON] = ACTIONS(3923), - [sym_this] = ACTIONS(3921), - }, - [STATE(846)] = { - [sym_identifier] = ACTIONS(3935), - [aux_sym_preproc_include_token1] = ACTIONS(3935), - [aux_sym_preproc_def_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token1] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), - [sym_preproc_directive] = ACTIONS(3935), - [anon_sym_LPAREN2] = ACTIONS(3937), - [anon_sym_BANG] = ACTIONS(3937), - [anon_sym_TILDE] = ACTIONS(3937), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3937), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_SEMI] = ACTIONS(3937), - [anon_sym___extension__] = ACTIONS(3935), - [anon_sym_typedef] = ACTIONS(3935), - [anon_sym_virtual] = ACTIONS(3935), - [anon_sym_extern] = ACTIONS(3935), - [anon_sym___attribute__] = ACTIONS(3935), - [anon_sym___attribute] = ACTIONS(3935), - [anon_sym_using] = ACTIONS(3935), - [anon_sym_COLON_COLON] = ACTIONS(3937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), - [anon_sym___declspec] = ACTIONS(3935), - [anon_sym___based] = ACTIONS(3935), - [anon_sym___cdecl] = ACTIONS(3935), - [anon_sym___clrcall] = ACTIONS(3935), - [anon_sym___stdcall] = ACTIONS(3935), - [anon_sym___fastcall] = ACTIONS(3935), - [anon_sym___thiscall] = ACTIONS(3935), - [anon_sym___vectorcall] = ACTIONS(3935), - [anon_sym_LBRACE] = ACTIONS(3937), - [anon_sym_RBRACE] = ACTIONS(3937), - [anon_sym_signed] = ACTIONS(3935), - [anon_sym_unsigned] = ACTIONS(3935), - [anon_sym_long] = ACTIONS(3935), - [anon_sym_short] = ACTIONS(3935), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_static] = ACTIONS(3935), - [anon_sym_register] = ACTIONS(3935), - [anon_sym_inline] = ACTIONS(3935), - [anon_sym___inline] = ACTIONS(3935), - [anon_sym___inline__] = ACTIONS(3935), - [anon_sym___forceinline] = ACTIONS(3935), - [anon_sym_thread_local] = ACTIONS(3935), - [anon_sym___thread] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_constexpr] = ACTIONS(3935), - [anon_sym_volatile] = ACTIONS(3935), - [anon_sym_restrict] = ACTIONS(3935), - [anon_sym___restrict__] = ACTIONS(3935), - [anon_sym__Atomic] = ACTIONS(3935), - [anon_sym__Noreturn] = ACTIONS(3935), - [anon_sym_noreturn] = ACTIONS(3935), - [anon_sym__Nonnull] = ACTIONS(3935), - [anon_sym_mutable] = ACTIONS(3935), - [anon_sym_constinit] = ACTIONS(3935), - [anon_sym_consteval] = ACTIONS(3935), - [anon_sym_alignas] = ACTIONS(3935), - [anon_sym__Alignas] = ACTIONS(3935), - [sym_primitive_type] = ACTIONS(3935), - [anon_sym_enum] = ACTIONS(3935), - [anon_sym_class] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3935), - [anon_sym_if] = ACTIONS(3935), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_case] = ACTIONS(3935), - [anon_sym_default] = ACTIONS(3935), - [anon_sym_while] = ACTIONS(3935), - [anon_sym_do] = ACTIONS(3935), - [anon_sym_for] = ACTIONS(3935), - [anon_sym_return] = ACTIONS(3935), - [anon_sym_break] = ACTIONS(3935), - [anon_sym_continue] = ACTIONS(3935), - [anon_sym_goto] = ACTIONS(3935), - [anon_sym___try] = ACTIONS(3935), - [anon_sym___leave] = ACTIONS(3935), - [anon_sym_not] = ACTIONS(3935), - [anon_sym_compl] = ACTIONS(3935), - [anon_sym_DASH_DASH] = ACTIONS(3937), - [anon_sym_PLUS_PLUS] = ACTIONS(3937), - [anon_sym_sizeof] = ACTIONS(3935), - [anon_sym___alignof__] = ACTIONS(3935), - [anon_sym___alignof] = ACTIONS(3935), - [anon_sym__alignof] = ACTIONS(3935), - [anon_sym_alignof] = ACTIONS(3935), - [anon_sym__Alignof] = ACTIONS(3935), - [anon_sym_offsetof] = ACTIONS(3935), - [anon_sym__Generic] = ACTIONS(3935), - [anon_sym_typename] = ACTIONS(3935), - [anon_sym_asm] = ACTIONS(3935), - [anon_sym___asm__] = ACTIONS(3935), - [anon_sym___asm] = ACTIONS(3935), - [sym_number_literal] = ACTIONS(3937), - [anon_sym_L_SQUOTE] = ACTIONS(3937), - [anon_sym_u_SQUOTE] = ACTIONS(3937), - [anon_sym_U_SQUOTE] = ACTIONS(3937), - [anon_sym_u8_SQUOTE] = ACTIONS(3937), - [anon_sym_SQUOTE] = ACTIONS(3937), - [anon_sym_L_DQUOTE] = ACTIONS(3937), - [anon_sym_u_DQUOTE] = ACTIONS(3937), - [anon_sym_U_DQUOTE] = ACTIONS(3937), - [anon_sym_u8_DQUOTE] = ACTIONS(3937), - [anon_sym_DQUOTE] = ACTIONS(3937), - [sym_true] = ACTIONS(3935), - [sym_false] = ACTIONS(3935), - [anon_sym_NULL] = ACTIONS(3935), - [anon_sym_nullptr] = ACTIONS(3935), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3935), - [anon_sym_decltype] = ACTIONS(3935), - [anon_sym_explicit] = ACTIONS(3935), - [anon_sym_export] = ACTIONS(3935), - [anon_sym_import] = ACTIONS(3935), - [anon_sym_template] = ACTIONS(3935), - [anon_sym_operator] = ACTIONS(3935), - [anon_sym_try] = ACTIONS(3935), - [anon_sym_delete] = ACTIONS(3935), - [anon_sym_throw] = ACTIONS(3935), - [anon_sym_namespace] = ACTIONS(3935), - [anon_sym_static_assert] = ACTIONS(3935), - [anon_sym_concept] = ACTIONS(3935), - [anon_sym_co_return] = ACTIONS(3935), - [anon_sym_co_yield] = ACTIONS(3935), - [anon_sym_R_DQUOTE] = ACTIONS(3937), - [anon_sym_LR_DQUOTE] = ACTIONS(3937), - [anon_sym_uR_DQUOTE] = ACTIONS(3937), - [anon_sym_UR_DQUOTE] = ACTIONS(3937), - [anon_sym_u8R_DQUOTE] = ACTIONS(3937), - [anon_sym_co_await] = ACTIONS(3935), - [anon_sym_new] = ACTIONS(3935), - [anon_sym_requires] = ACTIONS(3935), - [anon_sym_CARET_CARET] = ACTIONS(3937), - [anon_sym_LBRACK_COLON] = ACTIONS(3937), - [sym_this] = ACTIONS(3935), - }, - [STATE(847)] = { - [sym_identifier] = ACTIONS(4286), - [aux_sym_preproc_include_token1] = ACTIONS(4286), - [aux_sym_preproc_def_token1] = ACTIONS(4286), - [aux_sym_preproc_if_token1] = ACTIONS(4286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4286), - [sym_preproc_directive] = ACTIONS(4286), - [anon_sym_LPAREN2] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_TILDE] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_AMP_AMP] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4288), - [anon_sym___extension__] = ACTIONS(4286), - [anon_sym_typedef] = ACTIONS(4286), - [anon_sym_virtual] = ACTIONS(4286), - [anon_sym_extern] = ACTIONS(4286), - [anon_sym___attribute__] = ACTIONS(4286), - [anon_sym___attribute] = ACTIONS(4286), - [anon_sym_using] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4288), - [anon_sym___declspec] = ACTIONS(4286), - [anon_sym___based] = ACTIONS(4286), - [anon_sym___cdecl] = ACTIONS(4286), - [anon_sym___clrcall] = ACTIONS(4286), - [anon_sym___stdcall] = ACTIONS(4286), - [anon_sym___fastcall] = ACTIONS(4286), - [anon_sym___thiscall] = ACTIONS(4286), - [anon_sym___vectorcall] = ACTIONS(4286), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_RBRACE] = ACTIONS(4288), - [anon_sym_signed] = ACTIONS(4286), - [anon_sym_unsigned] = ACTIONS(4286), - [anon_sym_long] = ACTIONS(4286), - [anon_sym_short] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_static] = ACTIONS(4286), - [anon_sym_register] = ACTIONS(4286), - [anon_sym_inline] = ACTIONS(4286), - [anon_sym___inline] = ACTIONS(4286), - [anon_sym___inline__] = ACTIONS(4286), - [anon_sym___forceinline] = ACTIONS(4286), - [anon_sym_thread_local] = ACTIONS(4286), - [anon_sym___thread] = ACTIONS(4286), - [anon_sym_const] = ACTIONS(4286), - [anon_sym_constexpr] = ACTIONS(4286), - [anon_sym_volatile] = ACTIONS(4286), - [anon_sym_restrict] = ACTIONS(4286), - [anon_sym___restrict__] = ACTIONS(4286), - [anon_sym__Atomic] = ACTIONS(4286), - [anon_sym__Noreturn] = ACTIONS(4286), - [anon_sym_noreturn] = ACTIONS(4286), - [anon_sym__Nonnull] = ACTIONS(4286), - [anon_sym_mutable] = ACTIONS(4286), - [anon_sym_constinit] = ACTIONS(4286), - [anon_sym_consteval] = ACTIONS(4286), - [anon_sym_alignas] = ACTIONS(4286), - [anon_sym__Alignas] = ACTIONS(4286), - [sym_primitive_type] = ACTIONS(4286), - [anon_sym_enum] = ACTIONS(4286), - [anon_sym_class] = ACTIONS(4286), - [anon_sym_struct] = ACTIONS(4286), - [anon_sym_union] = ACTIONS(4286), - [anon_sym_if] = ACTIONS(4286), - [anon_sym_switch] = ACTIONS(4286), - [anon_sym_case] = ACTIONS(4286), - [anon_sym_default] = ACTIONS(4286), - [anon_sym_while] = ACTIONS(4286), - [anon_sym_do] = ACTIONS(4286), - [anon_sym_for] = ACTIONS(4286), - [anon_sym_return] = ACTIONS(4286), - [anon_sym_break] = ACTIONS(4286), - [anon_sym_continue] = ACTIONS(4286), - [anon_sym_goto] = ACTIONS(4286), - [anon_sym___try] = ACTIONS(4286), - [anon_sym___leave] = ACTIONS(4286), - [anon_sym_not] = ACTIONS(4286), - [anon_sym_compl] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4288), - [anon_sym_sizeof] = ACTIONS(4286), - [anon_sym___alignof__] = ACTIONS(4286), - [anon_sym___alignof] = ACTIONS(4286), - [anon_sym__alignof] = ACTIONS(4286), - [anon_sym_alignof] = ACTIONS(4286), - [anon_sym__Alignof] = ACTIONS(4286), - [anon_sym_offsetof] = ACTIONS(4286), - [anon_sym__Generic] = ACTIONS(4286), - [anon_sym_typename] = ACTIONS(4286), - [anon_sym_asm] = ACTIONS(4286), - [anon_sym___asm__] = ACTIONS(4286), - [anon_sym___asm] = ACTIONS(4286), - [sym_number_literal] = ACTIONS(4288), - [anon_sym_L_SQUOTE] = ACTIONS(4288), - [anon_sym_u_SQUOTE] = ACTIONS(4288), - [anon_sym_U_SQUOTE] = ACTIONS(4288), - [anon_sym_u8_SQUOTE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(4288), - [anon_sym_L_DQUOTE] = ACTIONS(4288), - [anon_sym_u_DQUOTE] = ACTIONS(4288), - [anon_sym_U_DQUOTE] = ACTIONS(4288), - [anon_sym_u8_DQUOTE] = ACTIONS(4288), - [anon_sym_DQUOTE] = ACTIONS(4288), - [sym_true] = ACTIONS(4286), - [sym_false] = ACTIONS(4286), - [anon_sym_NULL] = ACTIONS(4286), - [anon_sym_nullptr] = ACTIONS(4286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4286), - [anon_sym_decltype] = ACTIONS(4286), - [anon_sym_explicit] = ACTIONS(4286), - [anon_sym_export] = ACTIONS(4286), - [anon_sym_import] = ACTIONS(4286), - [anon_sym_template] = ACTIONS(4286), - [anon_sym_operator] = ACTIONS(4286), - [anon_sym_try] = ACTIONS(4286), - [anon_sym_delete] = ACTIONS(4286), - [anon_sym_throw] = ACTIONS(4286), - [anon_sym_namespace] = ACTIONS(4286), - [anon_sym_static_assert] = ACTIONS(4286), - [anon_sym_concept] = ACTIONS(4286), - [anon_sym_co_return] = ACTIONS(4286), - [anon_sym_co_yield] = ACTIONS(4286), - [anon_sym_R_DQUOTE] = ACTIONS(4288), - [anon_sym_LR_DQUOTE] = ACTIONS(4288), - [anon_sym_uR_DQUOTE] = ACTIONS(4288), - [anon_sym_UR_DQUOTE] = ACTIONS(4288), - [anon_sym_u8R_DQUOTE] = ACTIONS(4288), - [anon_sym_co_await] = ACTIONS(4286), - [anon_sym_new] = ACTIONS(4286), - [anon_sym_requires] = ACTIONS(4286), - [anon_sym_CARET_CARET] = ACTIONS(4288), - [anon_sym_LBRACK_COLON] = ACTIONS(4288), - [sym_this] = ACTIONS(4286), - }, - [STATE(848)] = { - [sym_identifier] = ACTIONS(4290), - [aux_sym_preproc_include_token1] = ACTIONS(4290), - [aux_sym_preproc_def_token1] = ACTIONS(4290), - [aux_sym_preproc_if_token1] = ACTIONS(4290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4290), - [sym_preproc_directive] = ACTIONS(4290), - [anon_sym_LPAREN2] = ACTIONS(4292), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_TILDE] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(4292), - [anon_sym_AMP_AMP] = ACTIONS(4292), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_SEMI] = ACTIONS(4292), - [anon_sym___extension__] = ACTIONS(4290), - [anon_sym_typedef] = ACTIONS(4290), - [anon_sym_virtual] = ACTIONS(4290), - [anon_sym_extern] = ACTIONS(4290), - [anon_sym___attribute__] = ACTIONS(4290), - [anon_sym___attribute] = ACTIONS(4290), - [anon_sym_using] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4292), - [anon_sym___declspec] = ACTIONS(4290), - [anon_sym___based] = ACTIONS(4290), - [anon_sym___cdecl] = ACTIONS(4290), - [anon_sym___clrcall] = ACTIONS(4290), - [anon_sym___stdcall] = ACTIONS(4290), - [anon_sym___fastcall] = ACTIONS(4290), - [anon_sym___thiscall] = ACTIONS(4290), - [anon_sym___vectorcall] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4292), - [anon_sym_RBRACE] = ACTIONS(4292), - [anon_sym_signed] = ACTIONS(4290), - [anon_sym_unsigned] = ACTIONS(4290), - [anon_sym_long] = ACTIONS(4290), - [anon_sym_short] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_static] = ACTIONS(4290), - [anon_sym_register] = ACTIONS(4290), - [anon_sym_inline] = ACTIONS(4290), - [anon_sym___inline] = ACTIONS(4290), - [anon_sym___inline__] = ACTIONS(4290), - [anon_sym___forceinline] = ACTIONS(4290), - [anon_sym_thread_local] = ACTIONS(4290), - [anon_sym___thread] = ACTIONS(4290), - [anon_sym_const] = ACTIONS(4290), - [anon_sym_constexpr] = ACTIONS(4290), - [anon_sym_volatile] = ACTIONS(4290), - [anon_sym_restrict] = ACTIONS(4290), - [anon_sym___restrict__] = ACTIONS(4290), - [anon_sym__Atomic] = ACTIONS(4290), - [anon_sym__Noreturn] = ACTIONS(4290), - [anon_sym_noreturn] = ACTIONS(4290), - [anon_sym__Nonnull] = ACTIONS(4290), - [anon_sym_mutable] = ACTIONS(4290), - [anon_sym_constinit] = ACTIONS(4290), - [anon_sym_consteval] = ACTIONS(4290), - [anon_sym_alignas] = ACTIONS(4290), - [anon_sym__Alignas] = ACTIONS(4290), - [sym_primitive_type] = ACTIONS(4290), - [anon_sym_enum] = ACTIONS(4290), - [anon_sym_class] = ACTIONS(4290), - [anon_sym_struct] = ACTIONS(4290), - [anon_sym_union] = ACTIONS(4290), - [anon_sym_if] = ACTIONS(4290), - [anon_sym_switch] = ACTIONS(4290), - [anon_sym_case] = ACTIONS(4290), - [anon_sym_default] = ACTIONS(4290), - [anon_sym_while] = ACTIONS(4290), - [anon_sym_do] = ACTIONS(4290), - [anon_sym_for] = ACTIONS(4290), - [anon_sym_return] = ACTIONS(4290), - [anon_sym_break] = ACTIONS(4290), - [anon_sym_continue] = ACTIONS(4290), - [anon_sym_goto] = ACTIONS(4290), - [anon_sym___try] = ACTIONS(4290), - [anon_sym___leave] = ACTIONS(4290), - [anon_sym_not] = ACTIONS(4290), - [anon_sym_compl] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4292), - [anon_sym_PLUS_PLUS] = ACTIONS(4292), - [anon_sym_sizeof] = ACTIONS(4290), - [anon_sym___alignof__] = ACTIONS(4290), - [anon_sym___alignof] = ACTIONS(4290), - [anon_sym__alignof] = ACTIONS(4290), - [anon_sym_alignof] = ACTIONS(4290), - [anon_sym__Alignof] = ACTIONS(4290), - [anon_sym_offsetof] = ACTIONS(4290), - [anon_sym__Generic] = ACTIONS(4290), - [anon_sym_typename] = ACTIONS(4290), - [anon_sym_asm] = ACTIONS(4290), - [anon_sym___asm__] = ACTIONS(4290), - [anon_sym___asm] = ACTIONS(4290), - [sym_number_literal] = ACTIONS(4292), - [anon_sym_L_SQUOTE] = ACTIONS(4292), - [anon_sym_u_SQUOTE] = ACTIONS(4292), - [anon_sym_U_SQUOTE] = ACTIONS(4292), - [anon_sym_u8_SQUOTE] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4292), - [anon_sym_L_DQUOTE] = ACTIONS(4292), - [anon_sym_u_DQUOTE] = ACTIONS(4292), - [anon_sym_U_DQUOTE] = ACTIONS(4292), - [anon_sym_u8_DQUOTE] = ACTIONS(4292), - [anon_sym_DQUOTE] = ACTIONS(4292), - [sym_true] = ACTIONS(4290), - [sym_false] = ACTIONS(4290), - [anon_sym_NULL] = ACTIONS(4290), - [anon_sym_nullptr] = ACTIONS(4290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4290), - [anon_sym_decltype] = ACTIONS(4290), - [anon_sym_explicit] = ACTIONS(4290), - [anon_sym_export] = ACTIONS(4290), - [anon_sym_import] = ACTIONS(4290), - [anon_sym_template] = ACTIONS(4290), - [anon_sym_operator] = ACTIONS(4290), - [anon_sym_try] = ACTIONS(4290), - [anon_sym_delete] = ACTIONS(4290), - [anon_sym_throw] = ACTIONS(4290), - [anon_sym_namespace] = ACTIONS(4290), - [anon_sym_static_assert] = ACTIONS(4290), - [anon_sym_concept] = ACTIONS(4290), - [anon_sym_co_return] = ACTIONS(4290), - [anon_sym_co_yield] = ACTIONS(4290), - [anon_sym_R_DQUOTE] = ACTIONS(4292), - [anon_sym_LR_DQUOTE] = ACTIONS(4292), - [anon_sym_uR_DQUOTE] = ACTIONS(4292), - [anon_sym_UR_DQUOTE] = ACTIONS(4292), - [anon_sym_u8R_DQUOTE] = ACTIONS(4292), - [anon_sym_co_await] = ACTIONS(4290), - [anon_sym_new] = ACTIONS(4290), - [anon_sym_requires] = ACTIONS(4290), - [anon_sym_CARET_CARET] = ACTIONS(4292), - [anon_sym_LBRACK_COLON] = ACTIONS(4292), - [sym_this] = ACTIONS(4290), - }, - [STATE(849)] = { - [sym_identifier] = ACTIONS(4294), - [aux_sym_preproc_include_token1] = ACTIONS(4294), - [aux_sym_preproc_def_token1] = ACTIONS(4294), - [aux_sym_preproc_if_token1] = ACTIONS(4294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4294), - [sym_preproc_directive] = ACTIONS(4294), - [anon_sym_LPAREN2] = ACTIONS(4296), - [anon_sym_BANG] = ACTIONS(4296), - [anon_sym_TILDE] = ACTIONS(4296), - [anon_sym_DASH] = ACTIONS(4294), - [anon_sym_PLUS] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_AMP] = ACTIONS(4294), - [anon_sym_SEMI] = ACTIONS(4296), - [anon_sym___extension__] = ACTIONS(4294), - [anon_sym_typedef] = ACTIONS(4294), - [anon_sym_virtual] = ACTIONS(4294), - [anon_sym_extern] = ACTIONS(4294), - [anon_sym___attribute__] = ACTIONS(4294), - [anon_sym___attribute] = ACTIONS(4294), - [anon_sym_using] = ACTIONS(4294), - [anon_sym_COLON_COLON] = ACTIONS(4296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4296), - [anon_sym___declspec] = ACTIONS(4294), - [anon_sym___based] = ACTIONS(4294), - [anon_sym___cdecl] = ACTIONS(4294), - [anon_sym___clrcall] = ACTIONS(4294), - [anon_sym___stdcall] = ACTIONS(4294), - [anon_sym___fastcall] = ACTIONS(4294), - [anon_sym___thiscall] = ACTIONS(4294), - [anon_sym___vectorcall] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [anon_sym_RBRACE] = ACTIONS(4296), - [anon_sym_signed] = ACTIONS(4294), - [anon_sym_unsigned] = ACTIONS(4294), - [anon_sym_long] = ACTIONS(4294), - [anon_sym_short] = ACTIONS(4294), - [anon_sym_LBRACK] = ACTIONS(4294), - [anon_sym_static] = ACTIONS(4294), - [anon_sym_register] = ACTIONS(4294), - [anon_sym_inline] = ACTIONS(4294), - [anon_sym___inline] = ACTIONS(4294), - [anon_sym___inline__] = ACTIONS(4294), - [anon_sym___forceinline] = ACTIONS(4294), - [anon_sym_thread_local] = ACTIONS(4294), - [anon_sym___thread] = ACTIONS(4294), - [anon_sym_const] = ACTIONS(4294), - [anon_sym_constexpr] = ACTIONS(4294), - [anon_sym_volatile] = ACTIONS(4294), - [anon_sym_restrict] = ACTIONS(4294), - [anon_sym___restrict__] = ACTIONS(4294), - [anon_sym__Atomic] = ACTIONS(4294), - [anon_sym__Noreturn] = ACTIONS(4294), - [anon_sym_noreturn] = ACTIONS(4294), - [anon_sym__Nonnull] = ACTIONS(4294), - [anon_sym_mutable] = ACTIONS(4294), - [anon_sym_constinit] = ACTIONS(4294), - [anon_sym_consteval] = ACTIONS(4294), - [anon_sym_alignas] = ACTIONS(4294), - [anon_sym__Alignas] = ACTIONS(4294), - [sym_primitive_type] = ACTIONS(4294), - [anon_sym_enum] = ACTIONS(4294), - [anon_sym_class] = ACTIONS(4294), - [anon_sym_struct] = ACTIONS(4294), - [anon_sym_union] = ACTIONS(4294), - [anon_sym_if] = ACTIONS(4294), - [anon_sym_switch] = ACTIONS(4294), - [anon_sym_case] = ACTIONS(4294), - [anon_sym_default] = ACTIONS(4294), - [anon_sym_while] = ACTIONS(4294), - [anon_sym_do] = ACTIONS(4294), - [anon_sym_for] = ACTIONS(4294), - [anon_sym_return] = ACTIONS(4294), - [anon_sym_break] = ACTIONS(4294), - [anon_sym_continue] = ACTIONS(4294), - [anon_sym_goto] = ACTIONS(4294), - [anon_sym___try] = ACTIONS(4294), - [anon_sym___leave] = ACTIONS(4294), - [anon_sym_not] = ACTIONS(4294), - [anon_sym_compl] = ACTIONS(4294), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_sizeof] = ACTIONS(4294), - [anon_sym___alignof__] = ACTIONS(4294), - [anon_sym___alignof] = ACTIONS(4294), - [anon_sym__alignof] = ACTIONS(4294), - [anon_sym_alignof] = ACTIONS(4294), - [anon_sym__Alignof] = ACTIONS(4294), - [anon_sym_offsetof] = ACTIONS(4294), - [anon_sym__Generic] = ACTIONS(4294), - [anon_sym_typename] = ACTIONS(4294), - [anon_sym_asm] = ACTIONS(4294), - [anon_sym___asm__] = ACTIONS(4294), - [anon_sym___asm] = ACTIONS(4294), - [sym_number_literal] = ACTIONS(4296), - [anon_sym_L_SQUOTE] = ACTIONS(4296), - [anon_sym_u_SQUOTE] = ACTIONS(4296), - [anon_sym_U_SQUOTE] = ACTIONS(4296), - [anon_sym_u8_SQUOTE] = ACTIONS(4296), - [anon_sym_SQUOTE] = ACTIONS(4296), - [anon_sym_L_DQUOTE] = ACTIONS(4296), - [anon_sym_u_DQUOTE] = ACTIONS(4296), - [anon_sym_U_DQUOTE] = ACTIONS(4296), - [anon_sym_u8_DQUOTE] = ACTIONS(4296), - [anon_sym_DQUOTE] = ACTIONS(4296), - [sym_true] = ACTIONS(4294), - [sym_false] = ACTIONS(4294), - [anon_sym_NULL] = ACTIONS(4294), - [anon_sym_nullptr] = ACTIONS(4294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4294), - [anon_sym_decltype] = ACTIONS(4294), - [anon_sym_explicit] = ACTIONS(4294), - [anon_sym_export] = ACTIONS(4294), - [anon_sym_import] = ACTIONS(4294), - [anon_sym_template] = ACTIONS(4294), - [anon_sym_operator] = ACTIONS(4294), - [anon_sym_try] = ACTIONS(4294), - [anon_sym_delete] = ACTIONS(4294), - [anon_sym_throw] = ACTIONS(4294), - [anon_sym_namespace] = ACTIONS(4294), - [anon_sym_static_assert] = ACTIONS(4294), - [anon_sym_concept] = ACTIONS(4294), - [anon_sym_co_return] = ACTIONS(4294), - [anon_sym_co_yield] = ACTIONS(4294), - [anon_sym_R_DQUOTE] = ACTIONS(4296), - [anon_sym_LR_DQUOTE] = ACTIONS(4296), - [anon_sym_uR_DQUOTE] = ACTIONS(4296), - [anon_sym_UR_DQUOTE] = ACTIONS(4296), - [anon_sym_u8R_DQUOTE] = ACTIONS(4296), - [anon_sym_co_await] = ACTIONS(4294), - [anon_sym_new] = ACTIONS(4294), - [anon_sym_requires] = ACTIONS(4294), - [anon_sym_CARET_CARET] = ACTIONS(4296), - [anon_sym_LBRACK_COLON] = ACTIONS(4296), - [sym_this] = ACTIONS(4294), + [STATE(824)] = { + [sym_identifier] = ACTIONS(4317), + [aux_sym_preproc_include_token1] = ACTIONS(4317), + [aux_sym_preproc_def_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token1] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4317), + [sym_preproc_directive] = ACTIONS(4317), + [anon_sym_LPAREN2] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4319), + [anon_sym_TILDE] = ACTIONS(4319), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym___extension__] = ACTIONS(4317), + [anon_sym_typedef] = ACTIONS(4317), + [anon_sym_virtual] = ACTIONS(4317), + [anon_sym_extern] = ACTIONS(4317), + [anon_sym___attribute__] = ACTIONS(4317), + [anon_sym___attribute] = ACTIONS(4317), + [anon_sym_using] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4319), + [anon_sym___declspec] = ACTIONS(4317), + [anon_sym___based] = ACTIONS(4317), + [anon_sym___cdecl] = ACTIONS(4317), + [anon_sym___clrcall] = ACTIONS(4317), + [anon_sym___stdcall] = ACTIONS(4317), + [anon_sym___fastcall] = ACTIONS(4317), + [anon_sym___thiscall] = ACTIONS(4317), + [anon_sym___vectorcall] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_signed] = ACTIONS(4317), + [anon_sym_unsigned] = ACTIONS(4317), + [anon_sym_long] = ACTIONS(4317), + [anon_sym_short] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [anon_sym_static] = ACTIONS(4317), + [anon_sym_register] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym___inline] = ACTIONS(4317), + [anon_sym___inline__] = ACTIONS(4317), + [anon_sym___forceinline] = ACTIONS(4317), + [anon_sym_thread_local] = ACTIONS(4317), + [anon_sym___thread] = ACTIONS(4317), + [anon_sym_const] = ACTIONS(4317), + [anon_sym_constexpr] = ACTIONS(4317), + [anon_sym_volatile] = ACTIONS(4317), + [anon_sym_restrict] = ACTIONS(4317), + [anon_sym___restrict__] = ACTIONS(4317), + [anon_sym__Atomic] = ACTIONS(4317), + [anon_sym__Noreturn] = ACTIONS(4317), + [anon_sym_noreturn] = ACTIONS(4317), + [anon_sym__Nonnull] = ACTIONS(4317), + [anon_sym_mutable] = ACTIONS(4317), + [anon_sym_constinit] = ACTIONS(4317), + [anon_sym_consteval] = ACTIONS(4317), + [anon_sym_alignas] = ACTIONS(4317), + [anon_sym__Alignas] = ACTIONS(4317), + [sym_primitive_type] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_class] = ACTIONS(4317), + [anon_sym_struct] = ACTIONS(4317), + [anon_sym_union] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_switch] = ACTIONS(4317), + [anon_sym_case] = ACTIONS(4317), + [anon_sym_default] = ACTIONS(4317), + [anon_sym_while] = ACTIONS(4317), + [anon_sym_do] = ACTIONS(4317), + [anon_sym_for] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_goto] = ACTIONS(4317), + [anon_sym___try] = ACTIONS(4317), + [anon_sym___leave] = ACTIONS(4317), + [anon_sym_not] = ACTIONS(4317), + [anon_sym_compl] = ACTIONS(4317), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_sizeof] = ACTIONS(4317), + [anon_sym___alignof__] = ACTIONS(4317), + [anon_sym___alignof] = ACTIONS(4317), + [anon_sym__alignof] = ACTIONS(4317), + [anon_sym_alignof] = ACTIONS(4317), + [anon_sym__Alignof] = ACTIONS(4317), + [anon_sym_offsetof] = ACTIONS(4317), + [anon_sym__Generic] = ACTIONS(4317), + [anon_sym_typename] = ACTIONS(4317), + [anon_sym_asm] = ACTIONS(4317), + [anon_sym___asm__] = ACTIONS(4317), + [anon_sym___asm] = ACTIONS(4317), + [sym_number_literal] = ACTIONS(4319), + [anon_sym_L_SQUOTE] = ACTIONS(4319), + [anon_sym_u_SQUOTE] = ACTIONS(4319), + [anon_sym_U_SQUOTE] = ACTIONS(4319), + [anon_sym_u8_SQUOTE] = ACTIONS(4319), + [anon_sym_SQUOTE] = ACTIONS(4319), + [anon_sym_L_DQUOTE] = ACTIONS(4319), + [anon_sym_u_DQUOTE] = ACTIONS(4319), + [anon_sym_U_DQUOTE] = ACTIONS(4319), + [anon_sym_u8_DQUOTE] = ACTIONS(4319), + [anon_sym_DQUOTE] = ACTIONS(4319), + [sym_true] = ACTIONS(4317), + [sym_false] = ACTIONS(4317), + [anon_sym_NULL] = ACTIONS(4317), + [anon_sym_nullptr] = ACTIONS(4317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4317), + [anon_sym_decltype] = ACTIONS(4317), + [anon_sym_explicit] = ACTIONS(4317), + [anon_sym_export] = ACTIONS(4317), + [anon_sym_import] = ACTIONS(4317), + [anon_sym_template] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_delete] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_namespace] = ACTIONS(4317), + [anon_sym_static_assert] = ACTIONS(4317), + [anon_sym_concept] = ACTIONS(4317), + [anon_sym_co_return] = ACTIONS(4317), + [anon_sym_co_yield] = ACTIONS(4317), + [anon_sym_R_DQUOTE] = ACTIONS(4319), + [anon_sym_LR_DQUOTE] = ACTIONS(4319), + [anon_sym_uR_DQUOTE] = ACTIONS(4319), + [anon_sym_UR_DQUOTE] = ACTIONS(4319), + [anon_sym_u8R_DQUOTE] = ACTIONS(4319), + [anon_sym_co_await] = ACTIONS(4317), + [anon_sym_new] = ACTIONS(4317), + [anon_sym_requires] = ACTIONS(4317), + [anon_sym_CARET_CARET] = ACTIONS(4319), + [anon_sym_LBRACK_COLON] = ACTIONS(4319), + [sym_this] = ACTIONS(4317), }, - [STATE(850)] = { + [STATE(825)] = { [sym_identifier] = ACTIONS(4092), [aux_sym_preproc_include_token1] = ACTIONS(4092), [aux_sym_preproc_def_token1] = ACTIONS(4092), @@ -181139,707 +177640,1967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4094), [sym_this] = ACTIONS(4092), }, - [STATE(851)] = { - [sym_identifier] = ACTIONS(4383), - [aux_sym_preproc_include_token1] = ACTIONS(4383), - [aux_sym_preproc_def_token1] = ACTIONS(4383), - [aux_sym_preproc_if_token1] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), - [sym_preproc_directive] = ACTIONS(4383), - [anon_sym_LPAREN2] = ACTIONS(4385), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_TILDE] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_AMP_AMP] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(4385), - [anon_sym___extension__] = ACTIONS(4383), - [anon_sym_typedef] = ACTIONS(4383), - [anon_sym_virtual] = ACTIONS(4383), - [anon_sym_extern] = ACTIONS(4383), - [anon_sym___attribute__] = ACTIONS(4383), - [anon_sym___attribute] = ACTIONS(4383), - [anon_sym_using] = ACTIONS(4383), - [anon_sym_COLON_COLON] = ACTIONS(4385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4385), - [anon_sym___declspec] = ACTIONS(4383), - [anon_sym___based] = ACTIONS(4383), - [anon_sym___cdecl] = ACTIONS(4383), - [anon_sym___clrcall] = ACTIONS(4383), - [anon_sym___stdcall] = ACTIONS(4383), - [anon_sym___fastcall] = ACTIONS(4383), - [anon_sym___thiscall] = ACTIONS(4383), - [anon_sym___vectorcall] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4385), - [anon_sym_RBRACE] = ACTIONS(4385), - [anon_sym_signed] = ACTIONS(4383), - [anon_sym_unsigned] = ACTIONS(4383), - [anon_sym_long] = ACTIONS(4383), - [anon_sym_short] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_static] = ACTIONS(4383), - [anon_sym_register] = ACTIONS(4383), - [anon_sym_inline] = ACTIONS(4383), - [anon_sym___inline] = ACTIONS(4383), - [anon_sym___inline__] = ACTIONS(4383), - [anon_sym___forceinline] = ACTIONS(4383), - [anon_sym_thread_local] = ACTIONS(4383), - [anon_sym___thread] = ACTIONS(4383), - [anon_sym_const] = ACTIONS(4383), - [anon_sym_constexpr] = ACTIONS(4383), - [anon_sym_volatile] = ACTIONS(4383), - [anon_sym_restrict] = ACTIONS(4383), - [anon_sym___restrict__] = ACTIONS(4383), - [anon_sym__Atomic] = ACTIONS(4383), - [anon_sym__Noreturn] = ACTIONS(4383), - [anon_sym_noreturn] = ACTIONS(4383), - [anon_sym__Nonnull] = ACTIONS(4383), - [anon_sym_mutable] = ACTIONS(4383), - [anon_sym_constinit] = ACTIONS(4383), - [anon_sym_consteval] = ACTIONS(4383), - [anon_sym_alignas] = ACTIONS(4383), - [anon_sym__Alignas] = ACTIONS(4383), - [sym_primitive_type] = ACTIONS(4383), - [anon_sym_enum] = ACTIONS(4383), - [anon_sym_class] = ACTIONS(4383), - [anon_sym_struct] = ACTIONS(4383), - [anon_sym_union] = ACTIONS(4383), - [anon_sym_if] = ACTIONS(4383), - [anon_sym_switch] = ACTIONS(4383), - [anon_sym_case] = ACTIONS(4383), - [anon_sym_default] = ACTIONS(4383), - [anon_sym_while] = ACTIONS(4383), - [anon_sym_do] = ACTIONS(4383), - [anon_sym_for] = ACTIONS(4383), - [anon_sym_return] = ACTIONS(4383), - [anon_sym_break] = ACTIONS(4383), - [anon_sym_continue] = ACTIONS(4383), - [anon_sym_goto] = ACTIONS(4383), - [anon_sym___try] = ACTIONS(4383), - [anon_sym___leave] = ACTIONS(4383), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_compl] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4385), - [anon_sym_PLUS_PLUS] = ACTIONS(4385), - [anon_sym_sizeof] = ACTIONS(4383), - [anon_sym___alignof__] = ACTIONS(4383), - [anon_sym___alignof] = ACTIONS(4383), - [anon_sym__alignof] = ACTIONS(4383), - [anon_sym_alignof] = ACTIONS(4383), - [anon_sym__Alignof] = ACTIONS(4383), - [anon_sym_offsetof] = ACTIONS(4383), - [anon_sym__Generic] = ACTIONS(4383), - [anon_sym_typename] = ACTIONS(4383), - [anon_sym_asm] = ACTIONS(4383), - [anon_sym___asm__] = ACTIONS(4383), - [anon_sym___asm] = ACTIONS(4383), - [sym_number_literal] = ACTIONS(4385), - [anon_sym_L_SQUOTE] = ACTIONS(4385), - [anon_sym_u_SQUOTE] = ACTIONS(4385), - [anon_sym_U_SQUOTE] = ACTIONS(4385), - [anon_sym_u8_SQUOTE] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4385), - [anon_sym_L_DQUOTE] = ACTIONS(4385), - [anon_sym_u_DQUOTE] = ACTIONS(4385), - [anon_sym_U_DQUOTE] = ACTIONS(4385), - [anon_sym_u8_DQUOTE] = ACTIONS(4385), - [anon_sym_DQUOTE] = ACTIONS(4385), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [anon_sym_NULL] = ACTIONS(4383), - [anon_sym_nullptr] = ACTIONS(4383), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4383), - [anon_sym_decltype] = ACTIONS(4383), - [anon_sym_explicit] = ACTIONS(4383), - [anon_sym_export] = ACTIONS(4383), - [anon_sym_import] = ACTIONS(4383), - [anon_sym_template] = ACTIONS(4383), - [anon_sym_operator] = ACTIONS(4383), - [anon_sym_try] = ACTIONS(4383), - [anon_sym_delete] = ACTIONS(4383), - [anon_sym_throw] = ACTIONS(4383), - [anon_sym_namespace] = ACTIONS(4383), - [anon_sym_static_assert] = ACTIONS(4383), - [anon_sym_concept] = ACTIONS(4383), - [anon_sym_co_return] = ACTIONS(4383), - [anon_sym_co_yield] = ACTIONS(4383), - [anon_sym_R_DQUOTE] = ACTIONS(4385), - [anon_sym_LR_DQUOTE] = ACTIONS(4385), - [anon_sym_uR_DQUOTE] = ACTIONS(4385), - [anon_sym_UR_DQUOTE] = ACTIONS(4385), - [anon_sym_u8R_DQUOTE] = ACTIONS(4385), - [anon_sym_co_await] = ACTIONS(4383), - [anon_sym_new] = ACTIONS(4383), - [anon_sym_requires] = ACTIONS(4383), - [anon_sym_CARET_CARET] = ACTIONS(4385), - [anon_sym_LBRACK_COLON] = ACTIONS(4385), - [sym_this] = ACTIONS(4383), + [STATE(826)] = { + [sym_identifier] = ACTIONS(3750), + [aux_sym_preproc_include_token1] = ACTIONS(3750), + [aux_sym_preproc_def_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token1] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3750), + [sym_preproc_directive] = ACTIONS(3750), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_BANG] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3750), + [anon_sym_PLUS] = ACTIONS(3750), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym___extension__] = ACTIONS(3750), + [anon_sym_typedef] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym___attribute] = ACTIONS(3750), + [anon_sym_using] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym___cdecl] = ACTIONS(3750), + [anon_sym___clrcall] = ACTIONS(3750), + [anon_sym___stdcall] = ACTIONS(3750), + [anon_sym___fastcall] = ACTIONS(3750), + [anon_sym___thiscall] = ACTIONS(3750), + [anon_sym___vectorcall] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_RBRACE] = ACTIONS(3752), + [anon_sym_signed] = ACTIONS(3750), + [anon_sym_unsigned] = ACTIONS(3750), + [anon_sym_long] = ACTIONS(3750), + [anon_sym_short] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym___inline] = ACTIONS(3750), + [anon_sym___inline__] = ACTIONS(3750), + [anon_sym___forceinline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym___thread] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym___restrict__] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym__Noreturn] = ACTIONS(3750), + [anon_sym_noreturn] = ACTIONS(3750), + [anon_sym__Nonnull] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_alignas] = ACTIONS(3750), + [anon_sym__Alignas] = ACTIONS(3750), + [sym_primitive_type] = ACTIONS(3750), + [anon_sym_enum] = ACTIONS(3750), + [anon_sym_class] = ACTIONS(3750), + [anon_sym_struct] = ACTIONS(3750), + [anon_sym_union] = ACTIONS(3750), + [anon_sym_if] = ACTIONS(3750), + [anon_sym_switch] = ACTIONS(3750), + [anon_sym_case] = ACTIONS(3750), + [anon_sym_default] = ACTIONS(3750), + [anon_sym_while] = ACTIONS(3750), + [anon_sym_do] = ACTIONS(3750), + [anon_sym_for] = ACTIONS(3750), + [anon_sym_return] = ACTIONS(3750), + [anon_sym_break] = ACTIONS(3750), + [anon_sym_continue] = ACTIONS(3750), + [anon_sym_goto] = ACTIONS(3750), + [anon_sym___try] = ACTIONS(3750), + [anon_sym___leave] = ACTIONS(3750), + [anon_sym_not] = ACTIONS(3750), + [anon_sym_compl] = ACTIONS(3750), + [anon_sym_DASH_DASH] = ACTIONS(3752), + [anon_sym_PLUS_PLUS] = ACTIONS(3752), + [anon_sym_sizeof] = ACTIONS(3750), + [anon_sym___alignof__] = ACTIONS(3750), + [anon_sym___alignof] = ACTIONS(3750), + [anon_sym__alignof] = ACTIONS(3750), + [anon_sym_alignof] = ACTIONS(3750), + [anon_sym__Alignof] = ACTIONS(3750), + [anon_sym_offsetof] = ACTIONS(3750), + [anon_sym__Generic] = ACTIONS(3750), + [anon_sym_typename] = ACTIONS(3750), + [anon_sym_asm] = ACTIONS(3750), + [anon_sym___asm__] = ACTIONS(3750), + [anon_sym___asm] = ACTIONS(3750), + [sym_number_literal] = ACTIONS(3752), + [anon_sym_L_SQUOTE] = ACTIONS(3752), + [anon_sym_u_SQUOTE] = ACTIONS(3752), + [anon_sym_U_SQUOTE] = ACTIONS(3752), + [anon_sym_u8_SQUOTE] = ACTIONS(3752), + [anon_sym_SQUOTE] = ACTIONS(3752), + [anon_sym_L_DQUOTE] = ACTIONS(3752), + [anon_sym_u_DQUOTE] = ACTIONS(3752), + [anon_sym_U_DQUOTE] = ACTIONS(3752), + [anon_sym_u8_DQUOTE] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3752), + [sym_true] = ACTIONS(3750), + [sym_false] = ACTIONS(3750), + [anon_sym_NULL] = ACTIONS(3750), + [anon_sym_nullptr] = ACTIONS(3750), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_export] = ACTIONS(3750), + [anon_sym_import] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + [anon_sym_try] = ACTIONS(3750), + [anon_sym_delete] = ACTIONS(3750), + [anon_sym_throw] = ACTIONS(3750), + [anon_sym_namespace] = ACTIONS(3750), + [anon_sym_static_assert] = ACTIONS(3750), + [anon_sym_concept] = ACTIONS(3750), + [anon_sym_co_return] = ACTIONS(3750), + [anon_sym_co_yield] = ACTIONS(3750), + [anon_sym_R_DQUOTE] = ACTIONS(3752), + [anon_sym_LR_DQUOTE] = ACTIONS(3752), + [anon_sym_uR_DQUOTE] = ACTIONS(3752), + [anon_sym_UR_DQUOTE] = ACTIONS(3752), + [anon_sym_u8R_DQUOTE] = ACTIONS(3752), + [anon_sym_co_await] = ACTIONS(3750), + [anon_sym_new] = ACTIONS(3750), + [anon_sym_requires] = ACTIONS(3750), + [anon_sym_CARET_CARET] = ACTIONS(3752), + [anon_sym_LBRACK_COLON] = ACTIONS(3752), + [sym_this] = ACTIONS(3750), }, - [STATE(852)] = { - [sym_identifier] = ACTIONS(3954), - [aux_sym_preproc_include_token1] = ACTIONS(3954), - [aux_sym_preproc_def_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), - [sym_preproc_directive] = ACTIONS(3954), - [anon_sym_LPAREN2] = ACTIONS(3956), - [anon_sym_BANG] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym___extension__] = ACTIONS(3954), - [anon_sym_typedef] = ACTIONS(3954), - [anon_sym_virtual] = ACTIONS(3954), - [anon_sym_extern] = ACTIONS(3954), - [anon_sym___attribute__] = ACTIONS(3954), - [anon_sym___attribute] = ACTIONS(3954), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_COLON_COLON] = ACTIONS(3956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), - [anon_sym___declspec] = ACTIONS(3954), - [anon_sym___based] = ACTIONS(3954), - [anon_sym___cdecl] = ACTIONS(3954), - [anon_sym___clrcall] = ACTIONS(3954), - [anon_sym___stdcall] = ACTIONS(3954), - [anon_sym___fastcall] = ACTIONS(3954), - [anon_sym___thiscall] = ACTIONS(3954), - [anon_sym___vectorcall] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3956), - [anon_sym_RBRACE] = ACTIONS(3956), - [anon_sym_signed] = ACTIONS(3954), - [anon_sym_unsigned] = ACTIONS(3954), - [anon_sym_long] = ACTIONS(3954), - [anon_sym_short] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3954), - [anon_sym_register] = ACTIONS(3954), - [anon_sym_inline] = ACTIONS(3954), - [anon_sym___inline] = ACTIONS(3954), - [anon_sym___inline__] = ACTIONS(3954), - [anon_sym___forceinline] = ACTIONS(3954), - [anon_sym_thread_local] = ACTIONS(3954), - [anon_sym___thread] = ACTIONS(3954), - [anon_sym_const] = ACTIONS(3954), - [anon_sym_constexpr] = ACTIONS(3954), - [anon_sym_volatile] = ACTIONS(3954), - [anon_sym_restrict] = ACTIONS(3954), - [anon_sym___restrict__] = ACTIONS(3954), - [anon_sym__Atomic] = ACTIONS(3954), - [anon_sym__Noreturn] = ACTIONS(3954), - [anon_sym_noreturn] = ACTIONS(3954), - [anon_sym__Nonnull] = ACTIONS(3954), - [anon_sym_mutable] = ACTIONS(3954), - [anon_sym_constinit] = ACTIONS(3954), - [anon_sym_consteval] = ACTIONS(3954), - [anon_sym_alignas] = ACTIONS(3954), - [anon_sym__Alignas] = ACTIONS(3954), - [sym_primitive_type] = ACTIONS(3954), - [anon_sym_enum] = ACTIONS(3954), - [anon_sym_class] = ACTIONS(3954), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3954), - [anon_sym_if] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_case] = ACTIONS(3954), - [anon_sym_default] = ACTIONS(3954), - [anon_sym_while] = ACTIONS(3954), - [anon_sym_do] = ACTIONS(3954), - [anon_sym_for] = ACTIONS(3954), - [anon_sym_return] = ACTIONS(3954), - [anon_sym_break] = ACTIONS(3954), - [anon_sym_continue] = ACTIONS(3954), - [anon_sym_goto] = ACTIONS(3954), - [anon_sym___try] = ACTIONS(3954), - [anon_sym___leave] = ACTIONS(3954), - [anon_sym_not] = ACTIONS(3954), - [anon_sym_compl] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3956), - [anon_sym_PLUS_PLUS] = ACTIONS(3956), - [anon_sym_sizeof] = ACTIONS(3954), - [anon_sym___alignof__] = ACTIONS(3954), - [anon_sym___alignof] = ACTIONS(3954), - [anon_sym__alignof] = ACTIONS(3954), - [anon_sym_alignof] = ACTIONS(3954), - [anon_sym__Alignof] = ACTIONS(3954), - [anon_sym_offsetof] = ACTIONS(3954), - [anon_sym__Generic] = ACTIONS(3954), - [anon_sym_typename] = ACTIONS(3954), - [anon_sym_asm] = ACTIONS(3954), - [anon_sym___asm__] = ACTIONS(3954), - [anon_sym___asm] = ACTIONS(3954), - [sym_number_literal] = ACTIONS(3956), - [anon_sym_L_SQUOTE] = ACTIONS(3956), - [anon_sym_u_SQUOTE] = ACTIONS(3956), - [anon_sym_U_SQUOTE] = ACTIONS(3956), - [anon_sym_u8_SQUOTE] = ACTIONS(3956), - [anon_sym_SQUOTE] = ACTIONS(3956), - [anon_sym_L_DQUOTE] = ACTIONS(3956), - [anon_sym_u_DQUOTE] = ACTIONS(3956), - [anon_sym_U_DQUOTE] = ACTIONS(3956), - [anon_sym_u8_DQUOTE] = ACTIONS(3956), - [anon_sym_DQUOTE] = ACTIONS(3956), - [sym_true] = ACTIONS(3954), - [sym_false] = ACTIONS(3954), - [anon_sym_NULL] = ACTIONS(3954), - [anon_sym_nullptr] = ACTIONS(3954), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3954), - [anon_sym_decltype] = ACTIONS(3954), - [anon_sym_explicit] = ACTIONS(3954), - [anon_sym_export] = ACTIONS(3954), - [anon_sym_import] = ACTIONS(3954), - [anon_sym_template] = ACTIONS(3954), - [anon_sym_operator] = ACTIONS(3954), - [anon_sym_try] = ACTIONS(3954), - [anon_sym_delete] = ACTIONS(3954), - [anon_sym_throw] = ACTIONS(3954), - [anon_sym_namespace] = ACTIONS(3954), - [anon_sym_static_assert] = ACTIONS(3954), - [anon_sym_concept] = ACTIONS(3954), - [anon_sym_co_return] = ACTIONS(3954), - [anon_sym_co_yield] = ACTIONS(3954), - [anon_sym_R_DQUOTE] = ACTIONS(3956), - [anon_sym_LR_DQUOTE] = ACTIONS(3956), - [anon_sym_uR_DQUOTE] = ACTIONS(3956), - [anon_sym_UR_DQUOTE] = ACTIONS(3956), - [anon_sym_u8R_DQUOTE] = ACTIONS(3956), - [anon_sym_co_await] = ACTIONS(3954), - [anon_sym_new] = ACTIONS(3954), - [anon_sym_requires] = ACTIONS(3954), - [anon_sym_CARET_CARET] = ACTIONS(3956), - [anon_sym_LBRACK_COLON] = ACTIONS(3956), - [sym_this] = ACTIONS(3954), + [STATE(827)] = { + [sym_expression] = STATE(5842), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_initializer_list] = STATE(5943), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym_SEMI] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym___attribute__] = ACTIONS(2382), + [anon_sym___attribute] = ACTIONS(2382), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, - [STATE(853)] = { - [sym_identifier] = ACTIONS(3958), - [aux_sym_preproc_include_token1] = ACTIONS(3958), - [aux_sym_preproc_def_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), - [sym_preproc_directive] = ACTIONS(3958), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_BANG] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3958), - [anon_sym_PLUS] = ACTIONS(3958), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_typedef] = ACTIONS(3958), - [anon_sym_virtual] = ACTIONS(3958), - [anon_sym_extern] = ACTIONS(3958), - [anon_sym___attribute__] = ACTIONS(3958), - [anon_sym___attribute] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), - [anon_sym___declspec] = ACTIONS(3958), - [anon_sym___based] = ACTIONS(3958), - [anon_sym___cdecl] = ACTIONS(3958), - [anon_sym___clrcall] = ACTIONS(3958), - [anon_sym___stdcall] = ACTIONS(3958), - [anon_sym___fastcall] = ACTIONS(3958), - [anon_sym___thiscall] = ACTIONS(3958), - [anon_sym___vectorcall] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_RBRACE] = ACTIONS(3960), - [anon_sym_signed] = ACTIONS(3958), - [anon_sym_unsigned] = ACTIONS(3958), - [anon_sym_long] = ACTIONS(3958), - [anon_sym_short] = ACTIONS(3958), - [anon_sym_LBRACK] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3958), - [anon_sym_register] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym___inline] = ACTIONS(3958), - [anon_sym___inline__] = ACTIONS(3958), - [anon_sym___forceinline] = ACTIONS(3958), - [anon_sym_thread_local] = ACTIONS(3958), - [anon_sym___thread] = ACTIONS(3958), - [anon_sym_const] = ACTIONS(3958), - [anon_sym_constexpr] = ACTIONS(3958), - [anon_sym_volatile] = ACTIONS(3958), - [anon_sym_restrict] = ACTIONS(3958), - [anon_sym___restrict__] = ACTIONS(3958), - [anon_sym__Atomic] = ACTIONS(3958), - [anon_sym__Noreturn] = ACTIONS(3958), - [anon_sym_noreturn] = ACTIONS(3958), - [anon_sym__Nonnull] = ACTIONS(3958), - [anon_sym_mutable] = ACTIONS(3958), - [anon_sym_constinit] = ACTIONS(3958), - [anon_sym_consteval] = ACTIONS(3958), - [anon_sym_alignas] = ACTIONS(3958), - [anon_sym__Alignas] = ACTIONS(3958), - [sym_primitive_type] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_union] = ACTIONS(3958), - [anon_sym_if] = ACTIONS(3958), - [anon_sym_switch] = ACTIONS(3958), - [anon_sym_case] = ACTIONS(3958), - [anon_sym_default] = ACTIONS(3958), - [anon_sym_while] = ACTIONS(3958), - [anon_sym_do] = ACTIONS(3958), - [anon_sym_for] = ACTIONS(3958), - [anon_sym_return] = ACTIONS(3958), - [anon_sym_break] = ACTIONS(3958), - [anon_sym_continue] = ACTIONS(3958), - [anon_sym_goto] = ACTIONS(3958), - [anon_sym___try] = ACTIONS(3958), - [anon_sym___leave] = ACTIONS(3958), - [anon_sym_not] = ACTIONS(3958), - [anon_sym_compl] = ACTIONS(3958), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_PLUS_PLUS] = ACTIONS(3960), - [anon_sym_sizeof] = ACTIONS(3958), - [anon_sym___alignof__] = ACTIONS(3958), - [anon_sym___alignof] = ACTIONS(3958), - [anon_sym__alignof] = ACTIONS(3958), - [anon_sym_alignof] = ACTIONS(3958), - [anon_sym__Alignof] = ACTIONS(3958), - [anon_sym_offsetof] = ACTIONS(3958), - [anon_sym__Generic] = ACTIONS(3958), - [anon_sym_typename] = ACTIONS(3958), - [anon_sym_asm] = ACTIONS(3958), - [anon_sym___asm__] = ACTIONS(3958), - [anon_sym___asm] = ACTIONS(3958), - [sym_number_literal] = ACTIONS(3960), - [anon_sym_L_SQUOTE] = ACTIONS(3960), - [anon_sym_u_SQUOTE] = ACTIONS(3960), - [anon_sym_U_SQUOTE] = ACTIONS(3960), - [anon_sym_u8_SQUOTE] = ACTIONS(3960), - [anon_sym_SQUOTE] = ACTIONS(3960), - [anon_sym_L_DQUOTE] = ACTIONS(3960), - [anon_sym_u_DQUOTE] = ACTIONS(3960), - [anon_sym_U_DQUOTE] = ACTIONS(3960), - [anon_sym_u8_DQUOTE] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [anon_sym_NULL] = ACTIONS(3958), - [anon_sym_nullptr] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3958), - [anon_sym_decltype] = ACTIONS(3958), - [anon_sym_explicit] = ACTIONS(3958), - [anon_sym_export] = ACTIONS(3958), - [anon_sym_import] = ACTIONS(3958), - [anon_sym_template] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_try] = ACTIONS(3958), - [anon_sym_delete] = ACTIONS(3958), - [anon_sym_throw] = ACTIONS(3958), - [anon_sym_namespace] = ACTIONS(3958), - [anon_sym_static_assert] = ACTIONS(3958), - [anon_sym_concept] = ACTIONS(3958), - [anon_sym_co_return] = ACTIONS(3958), - [anon_sym_co_yield] = ACTIONS(3958), - [anon_sym_R_DQUOTE] = ACTIONS(3960), - [anon_sym_LR_DQUOTE] = ACTIONS(3960), - [anon_sym_uR_DQUOTE] = ACTIONS(3960), - [anon_sym_UR_DQUOTE] = ACTIONS(3960), - [anon_sym_u8R_DQUOTE] = ACTIONS(3960), - [anon_sym_co_await] = ACTIONS(3958), - [anon_sym_new] = ACTIONS(3958), - [anon_sym_requires] = ACTIONS(3958), - [anon_sym_CARET_CARET] = ACTIONS(3960), - [anon_sym_LBRACK_COLON] = ACTIONS(3960), - [sym_this] = ACTIONS(3958), + [STATE(828)] = { + [sym_identifier] = ACTIONS(4106), + [aux_sym_preproc_include_token1] = ACTIONS(4106), + [aux_sym_preproc_def_token1] = ACTIONS(4106), + [aux_sym_preproc_if_token1] = ACTIONS(4106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4106), + [sym_preproc_directive] = ACTIONS(4106), + [anon_sym_LPAREN2] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_TILDE] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym___extension__] = ACTIONS(4106), + [anon_sym_typedef] = ACTIONS(4106), + [anon_sym_virtual] = ACTIONS(4106), + [anon_sym_extern] = ACTIONS(4106), + [anon_sym___attribute__] = ACTIONS(4106), + [anon_sym___attribute] = ACTIONS(4106), + [anon_sym_using] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4108), + [anon_sym___declspec] = ACTIONS(4106), + [anon_sym___based] = ACTIONS(4106), + [anon_sym___cdecl] = ACTIONS(4106), + [anon_sym___clrcall] = ACTIONS(4106), + [anon_sym___stdcall] = ACTIONS(4106), + [anon_sym___fastcall] = ACTIONS(4106), + [anon_sym___thiscall] = ACTIONS(4106), + [anon_sym___vectorcall] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_RBRACE] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4106), + [anon_sym_unsigned] = ACTIONS(4106), + [anon_sym_long] = ACTIONS(4106), + [anon_sym_short] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_register] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym___inline] = ACTIONS(4106), + [anon_sym___inline__] = ACTIONS(4106), + [anon_sym___forceinline] = ACTIONS(4106), + [anon_sym_thread_local] = ACTIONS(4106), + [anon_sym___thread] = ACTIONS(4106), + [anon_sym_const] = ACTIONS(4106), + [anon_sym_constexpr] = ACTIONS(4106), + [anon_sym_volatile] = ACTIONS(4106), + [anon_sym_restrict] = ACTIONS(4106), + [anon_sym___restrict__] = ACTIONS(4106), + [anon_sym__Atomic] = ACTIONS(4106), + [anon_sym__Noreturn] = ACTIONS(4106), + [anon_sym_noreturn] = ACTIONS(4106), + [anon_sym__Nonnull] = ACTIONS(4106), + [anon_sym_mutable] = ACTIONS(4106), + [anon_sym_constinit] = ACTIONS(4106), + [anon_sym_consteval] = ACTIONS(4106), + [anon_sym_alignas] = ACTIONS(4106), + [anon_sym__Alignas] = ACTIONS(4106), + [sym_primitive_type] = ACTIONS(4106), + [anon_sym_enum] = ACTIONS(4106), + [anon_sym_class] = ACTIONS(4106), + [anon_sym_struct] = ACTIONS(4106), + [anon_sym_union] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_switch] = ACTIONS(4106), + [anon_sym_case] = ACTIONS(4106), + [anon_sym_default] = ACTIONS(4106), + [anon_sym_while] = ACTIONS(4106), + [anon_sym_do] = ACTIONS(4106), + [anon_sym_for] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_goto] = ACTIONS(4106), + [anon_sym___try] = ACTIONS(4106), + [anon_sym___leave] = ACTIONS(4106), + [anon_sym_not] = ACTIONS(4106), + [anon_sym_compl] = ACTIONS(4106), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_sizeof] = ACTIONS(4106), + [anon_sym___alignof__] = ACTIONS(4106), + [anon_sym___alignof] = ACTIONS(4106), + [anon_sym__alignof] = ACTIONS(4106), + [anon_sym_alignof] = ACTIONS(4106), + [anon_sym__Alignof] = ACTIONS(4106), + [anon_sym_offsetof] = ACTIONS(4106), + [anon_sym__Generic] = ACTIONS(4106), + [anon_sym_typename] = ACTIONS(4106), + [anon_sym_asm] = ACTIONS(4106), + [anon_sym___asm__] = ACTIONS(4106), + [anon_sym___asm] = ACTIONS(4106), + [sym_number_literal] = ACTIONS(4108), + [anon_sym_L_SQUOTE] = ACTIONS(4108), + [anon_sym_u_SQUOTE] = ACTIONS(4108), + [anon_sym_U_SQUOTE] = ACTIONS(4108), + [anon_sym_u8_SQUOTE] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4108), + [anon_sym_L_DQUOTE] = ACTIONS(4108), + [anon_sym_u_DQUOTE] = ACTIONS(4108), + [anon_sym_U_DQUOTE] = ACTIONS(4108), + [anon_sym_u8_DQUOTE] = ACTIONS(4108), + [anon_sym_DQUOTE] = ACTIONS(4108), + [sym_true] = ACTIONS(4106), + [sym_false] = ACTIONS(4106), + [anon_sym_NULL] = ACTIONS(4106), + [anon_sym_nullptr] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4106), + [anon_sym_decltype] = ACTIONS(4106), + [anon_sym_explicit] = ACTIONS(4106), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_import] = ACTIONS(4106), + [anon_sym_template] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4106), + [anon_sym_delete] = ACTIONS(4106), + [anon_sym_throw] = ACTIONS(4106), + [anon_sym_namespace] = ACTIONS(4106), + [anon_sym_static_assert] = ACTIONS(4106), + [anon_sym_concept] = ACTIONS(4106), + [anon_sym_co_return] = ACTIONS(4106), + [anon_sym_co_yield] = ACTIONS(4106), + [anon_sym_R_DQUOTE] = ACTIONS(4108), + [anon_sym_LR_DQUOTE] = ACTIONS(4108), + [anon_sym_uR_DQUOTE] = ACTIONS(4108), + [anon_sym_UR_DQUOTE] = ACTIONS(4108), + [anon_sym_u8R_DQUOTE] = ACTIONS(4108), + [anon_sym_co_await] = ACTIONS(4106), + [anon_sym_new] = ACTIONS(4106), + [anon_sym_requires] = ACTIONS(4106), + [anon_sym_CARET_CARET] = ACTIONS(4108), + [anon_sym_LBRACK_COLON] = ACTIONS(4108), + [sym_this] = ACTIONS(4106), }, - [STATE(854)] = { - [sym_identifier] = ACTIONS(3917), - [aux_sym_preproc_include_token1] = ACTIONS(3917), - [aux_sym_preproc_def_token1] = ACTIONS(3917), - [aux_sym_preproc_if_token1] = ACTIONS(3917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), - [sym_preproc_directive] = ACTIONS(3917), - [anon_sym_LPAREN2] = ACTIONS(3919), - [anon_sym_BANG] = ACTIONS(3919), - [anon_sym_TILDE] = ACTIONS(3919), - [anon_sym_DASH] = ACTIONS(3917), - [anon_sym_PLUS] = ACTIONS(3917), - [anon_sym_STAR] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_AMP] = ACTIONS(3917), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym___extension__] = ACTIONS(3917), - [anon_sym_typedef] = ACTIONS(3917), - [anon_sym_virtual] = ACTIONS(3917), - [anon_sym_extern] = ACTIONS(3917), - [anon_sym___attribute__] = ACTIONS(3917), - [anon_sym___attribute] = ACTIONS(3917), - [anon_sym_using] = ACTIONS(3917), - [anon_sym_COLON_COLON] = ACTIONS(3919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), - [anon_sym___declspec] = ACTIONS(3917), - [anon_sym___based] = ACTIONS(3917), - [anon_sym___cdecl] = ACTIONS(3917), - [anon_sym___clrcall] = ACTIONS(3917), - [anon_sym___stdcall] = ACTIONS(3917), - [anon_sym___fastcall] = ACTIONS(3917), - [anon_sym___thiscall] = ACTIONS(3917), - [anon_sym___vectorcall] = ACTIONS(3917), - [anon_sym_LBRACE] = ACTIONS(3919), - [anon_sym_RBRACE] = ACTIONS(3919), - [anon_sym_signed] = ACTIONS(3917), - [anon_sym_unsigned] = ACTIONS(3917), - [anon_sym_long] = ACTIONS(3917), - [anon_sym_short] = ACTIONS(3917), - [anon_sym_LBRACK] = ACTIONS(3917), - [anon_sym_static] = ACTIONS(3917), - [anon_sym_register] = ACTIONS(3917), - [anon_sym_inline] = ACTIONS(3917), - [anon_sym___inline] = ACTIONS(3917), - [anon_sym___inline__] = ACTIONS(3917), - [anon_sym___forceinline] = ACTIONS(3917), - [anon_sym_thread_local] = ACTIONS(3917), - [anon_sym___thread] = ACTIONS(3917), - [anon_sym_const] = ACTIONS(3917), - [anon_sym_constexpr] = ACTIONS(3917), - [anon_sym_volatile] = ACTIONS(3917), - [anon_sym_restrict] = ACTIONS(3917), - [anon_sym___restrict__] = ACTIONS(3917), - [anon_sym__Atomic] = ACTIONS(3917), - [anon_sym__Noreturn] = ACTIONS(3917), - [anon_sym_noreturn] = ACTIONS(3917), - [anon_sym__Nonnull] = ACTIONS(3917), - [anon_sym_mutable] = ACTIONS(3917), - [anon_sym_constinit] = ACTIONS(3917), - [anon_sym_consteval] = ACTIONS(3917), - [anon_sym_alignas] = ACTIONS(3917), - [anon_sym__Alignas] = ACTIONS(3917), - [sym_primitive_type] = ACTIONS(3917), - [anon_sym_enum] = ACTIONS(3917), - [anon_sym_class] = ACTIONS(3917), - [anon_sym_struct] = ACTIONS(3917), - [anon_sym_union] = ACTIONS(3917), - [anon_sym_if] = ACTIONS(3917), - [anon_sym_switch] = ACTIONS(3917), - [anon_sym_case] = ACTIONS(3917), - [anon_sym_default] = ACTIONS(3917), - [anon_sym_while] = ACTIONS(3917), - [anon_sym_do] = ACTIONS(3917), - [anon_sym_for] = ACTIONS(3917), - [anon_sym_return] = ACTIONS(3917), - [anon_sym_break] = ACTIONS(3917), - [anon_sym_continue] = ACTIONS(3917), - [anon_sym_goto] = ACTIONS(3917), - [anon_sym___try] = ACTIONS(3917), - [anon_sym___leave] = ACTIONS(3917), - [anon_sym_not] = ACTIONS(3917), - [anon_sym_compl] = ACTIONS(3917), - [anon_sym_DASH_DASH] = ACTIONS(3919), - [anon_sym_PLUS_PLUS] = ACTIONS(3919), - [anon_sym_sizeof] = ACTIONS(3917), - [anon_sym___alignof__] = ACTIONS(3917), - [anon_sym___alignof] = ACTIONS(3917), - [anon_sym__alignof] = ACTIONS(3917), - [anon_sym_alignof] = ACTIONS(3917), - [anon_sym__Alignof] = ACTIONS(3917), - [anon_sym_offsetof] = ACTIONS(3917), - [anon_sym__Generic] = ACTIONS(3917), - [anon_sym_typename] = ACTIONS(3917), - [anon_sym_asm] = ACTIONS(3917), - [anon_sym___asm__] = ACTIONS(3917), - [anon_sym___asm] = ACTIONS(3917), - [sym_number_literal] = ACTIONS(3919), - [anon_sym_L_SQUOTE] = ACTIONS(3919), - [anon_sym_u_SQUOTE] = ACTIONS(3919), - [anon_sym_U_SQUOTE] = ACTIONS(3919), - [anon_sym_u8_SQUOTE] = ACTIONS(3919), - [anon_sym_SQUOTE] = ACTIONS(3919), - [anon_sym_L_DQUOTE] = ACTIONS(3919), - [anon_sym_u_DQUOTE] = ACTIONS(3919), - [anon_sym_U_DQUOTE] = ACTIONS(3919), - [anon_sym_u8_DQUOTE] = ACTIONS(3919), - [anon_sym_DQUOTE] = ACTIONS(3919), - [sym_true] = ACTIONS(3917), - [sym_false] = ACTIONS(3917), - [anon_sym_NULL] = ACTIONS(3917), - [anon_sym_nullptr] = ACTIONS(3917), + [STATE(829)] = { + [sym_identifier] = ACTIONS(4110), + [aux_sym_preproc_include_token1] = ACTIONS(4110), + [aux_sym_preproc_def_token1] = ACTIONS(4110), + [aux_sym_preproc_if_token1] = ACTIONS(4110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4110), + [sym_preproc_directive] = ACTIONS(4110), + [anon_sym_LPAREN2] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym___extension__] = ACTIONS(4110), + [anon_sym_typedef] = ACTIONS(4110), + [anon_sym_virtual] = ACTIONS(4110), + [anon_sym_extern] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4110), + [anon_sym___attribute] = ACTIONS(4110), + [anon_sym_using] = ACTIONS(4110), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4112), + [anon_sym___declspec] = ACTIONS(4110), + [anon_sym___based] = ACTIONS(4110), + [anon_sym___cdecl] = ACTIONS(4110), + [anon_sym___clrcall] = ACTIONS(4110), + [anon_sym___stdcall] = ACTIONS(4110), + [anon_sym___fastcall] = ACTIONS(4110), + [anon_sym___thiscall] = ACTIONS(4110), + [anon_sym___vectorcall] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_signed] = ACTIONS(4110), + [anon_sym_unsigned] = ACTIONS(4110), + [anon_sym_long] = ACTIONS(4110), + [anon_sym_short] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_static] = ACTIONS(4110), + [anon_sym_register] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym___inline] = ACTIONS(4110), + [anon_sym___inline__] = ACTIONS(4110), + [anon_sym___forceinline] = ACTIONS(4110), + [anon_sym_thread_local] = ACTIONS(4110), + [anon_sym___thread] = ACTIONS(4110), + [anon_sym_const] = ACTIONS(4110), + [anon_sym_constexpr] = ACTIONS(4110), + [anon_sym_volatile] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4110), + [anon_sym___restrict__] = ACTIONS(4110), + [anon_sym__Atomic] = ACTIONS(4110), + [anon_sym__Noreturn] = ACTIONS(4110), + [anon_sym_noreturn] = ACTIONS(4110), + [anon_sym__Nonnull] = ACTIONS(4110), + [anon_sym_mutable] = ACTIONS(4110), + [anon_sym_constinit] = ACTIONS(4110), + [anon_sym_consteval] = ACTIONS(4110), + [anon_sym_alignas] = ACTIONS(4110), + [anon_sym__Alignas] = ACTIONS(4110), + [sym_primitive_type] = ACTIONS(4110), + [anon_sym_enum] = ACTIONS(4110), + [anon_sym_class] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4110), + [anon_sym_if] = ACTIONS(4110), + [anon_sym_switch] = ACTIONS(4110), + [anon_sym_case] = ACTIONS(4110), + [anon_sym_default] = ACTIONS(4110), + [anon_sym_while] = ACTIONS(4110), + [anon_sym_do] = ACTIONS(4110), + [anon_sym_for] = ACTIONS(4110), + [anon_sym_return] = ACTIONS(4110), + [anon_sym_break] = ACTIONS(4110), + [anon_sym_continue] = ACTIONS(4110), + [anon_sym_goto] = ACTIONS(4110), + [anon_sym___try] = ACTIONS(4110), + [anon_sym___leave] = ACTIONS(4110), + [anon_sym_not] = ACTIONS(4110), + [anon_sym_compl] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_sizeof] = ACTIONS(4110), + [anon_sym___alignof__] = ACTIONS(4110), + [anon_sym___alignof] = ACTIONS(4110), + [anon_sym__alignof] = ACTIONS(4110), + [anon_sym_alignof] = ACTIONS(4110), + [anon_sym__Alignof] = ACTIONS(4110), + [anon_sym_offsetof] = ACTIONS(4110), + [anon_sym__Generic] = ACTIONS(4110), + [anon_sym_typename] = ACTIONS(4110), + [anon_sym_asm] = ACTIONS(4110), + [anon_sym___asm__] = ACTIONS(4110), + [anon_sym___asm] = ACTIONS(4110), + [sym_number_literal] = ACTIONS(4112), + [anon_sym_L_SQUOTE] = ACTIONS(4112), + [anon_sym_u_SQUOTE] = ACTIONS(4112), + [anon_sym_U_SQUOTE] = ACTIONS(4112), + [anon_sym_u8_SQUOTE] = ACTIONS(4112), + [anon_sym_SQUOTE] = ACTIONS(4112), + [anon_sym_L_DQUOTE] = ACTIONS(4112), + [anon_sym_u_DQUOTE] = ACTIONS(4112), + [anon_sym_U_DQUOTE] = ACTIONS(4112), + [anon_sym_u8_DQUOTE] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4112), + [sym_true] = ACTIONS(4110), + [sym_false] = ACTIONS(4110), + [anon_sym_NULL] = ACTIONS(4110), + [anon_sym_nullptr] = ACTIONS(4110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4110), + [anon_sym_decltype] = ACTIONS(4110), + [anon_sym_explicit] = ACTIONS(4110), + [anon_sym_export] = ACTIONS(4110), + [anon_sym_import] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(4110), + [anon_sym_operator] = ACTIONS(4110), + [anon_sym_try] = ACTIONS(4110), + [anon_sym_delete] = ACTIONS(4110), + [anon_sym_throw] = ACTIONS(4110), + [anon_sym_namespace] = ACTIONS(4110), + [anon_sym_static_assert] = ACTIONS(4110), + [anon_sym_concept] = ACTIONS(4110), + [anon_sym_co_return] = ACTIONS(4110), + [anon_sym_co_yield] = ACTIONS(4110), + [anon_sym_R_DQUOTE] = ACTIONS(4112), + [anon_sym_LR_DQUOTE] = ACTIONS(4112), + [anon_sym_uR_DQUOTE] = ACTIONS(4112), + [anon_sym_UR_DQUOTE] = ACTIONS(4112), + [anon_sym_u8R_DQUOTE] = ACTIONS(4112), + [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_new] = ACTIONS(4110), + [anon_sym_requires] = ACTIONS(4110), + [anon_sym_CARET_CARET] = ACTIONS(4112), + [anon_sym_LBRACK_COLON] = ACTIONS(4112), + [sym_this] = ACTIONS(4110), + }, + [STATE(830)] = { + [sym_identifier] = ACTIONS(4114), + [aux_sym_preproc_include_token1] = ACTIONS(4114), + [aux_sym_preproc_def_token1] = ACTIONS(4114), + [aux_sym_preproc_if_token1] = ACTIONS(4114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4114), + [sym_preproc_directive] = ACTIONS(4114), + [anon_sym_LPAREN2] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4116), + [anon_sym_TILDE] = ACTIONS(4116), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym___extension__] = ACTIONS(4114), + [anon_sym_typedef] = ACTIONS(4114), + [anon_sym_virtual] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym___attribute__] = ACTIONS(4114), + [anon_sym___attribute] = ACTIONS(4114), + [anon_sym_using] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4116), + [anon_sym___declspec] = ACTIONS(4114), + [anon_sym___based] = ACTIONS(4114), + [anon_sym___cdecl] = ACTIONS(4114), + [anon_sym___clrcall] = ACTIONS(4114), + [anon_sym___stdcall] = ACTIONS(4114), + [anon_sym___fastcall] = ACTIONS(4114), + [anon_sym___thiscall] = ACTIONS(4114), + [anon_sym___vectorcall] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_RBRACE] = ACTIONS(4116), + [anon_sym_signed] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [anon_sym_LBRACK] = ACTIONS(4114), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym___inline] = ACTIONS(4114), + [anon_sym___inline__] = ACTIONS(4114), + [anon_sym___forceinline] = ACTIONS(4114), + [anon_sym_thread_local] = ACTIONS(4114), + [anon_sym___thread] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym___restrict__] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym__Noreturn] = ACTIONS(4114), + [anon_sym_noreturn] = ACTIONS(4114), + [anon_sym__Nonnull] = ACTIONS(4114), + [anon_sym_mutable] = ACTIONS(4114), + [anon_sym_constinit] = ACTIONS(4114), + [anon_sym_consteval] = ACTIONS(4114), + [anon_sym_alignas] = ACTIONS(4114), + [anon_sym__Alignas] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_class] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_switch] = ACTIONS(4114), + [anon_sym_case] = ACTIONS(4114), + [anon_sym_default] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_do] = ACTIONS(4114), + [anon_sym_for] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_goto] = ACTIONS(4114), + [anon_sym___try] = ACTIONS(4114), + [anon_sym___leave] = ACTIONS(4114), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_compl] = ACTIONS(4114), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_sizeof] = ACTIONS(4114), + [anon_sym___alignof__] = ACTIONS(4114), + [anon_sym___alignof] = ACTIONS(4114), + [anon_sym__alignof] = ACTIONS(4114), + [anon_sym_alignof] = ACTIONS(4114), + [anon_sym__Alignof] = ACTIONS(4114), + [anon_sym_offsetof] = ACTIONS(4114), + [anon_sym__Generic] = ACTIONS(4114), + [anon_sym_typename] = ACTIONS(4114), + [anon_sym_asm] = ACTIONS(4114), + [anon_sym___asm__] = ACTIONS(4114), + [anon_sym___asm] = ACTIONS(4114), + [sym_number_literal] = ACTIONS(4116), + [anon_sym_L_SQUOTE] = ACTIONS(4116), + [anon_sym_u_SQUOTE] = ACTIONS(4116), + [anon_sym_U_SQUOTE] = ACTIONS(4116), + [anon_sym_u8_SQUOTE] = ACTIONS(4116), + [anon_sym_SQUOTE] = ACTIONS(4116), + [anon_sym_L_DQUOTE] = ACTIONS(4116), + [anon_sym_u_DQUOTE] = ACTIONS(4116), + [anon_sym_U_DQUOTE] = ACTIONS(4116), + [anon_sym_u8_DQUOTE] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(4116), + [sym_true] = ACTIONS(4114), + [sym_false] = ACTIONS(4114), + [anon_sym_NULL] = ACTIONS(4114), + [anon_sym_nullptr] = ACTIONS(4114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4114), + [anon_sym_decltype] = ACTIONS(4114), + [anon_sym_explicit] = ACTIONS(4114), + [anon_sym_export] = ACTIONS(4114), + [anon_sym_import] = ACTIONS(4114), + [anon_sym_template] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_delete] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_namespace] = ACTIONS(4114), + [anon_sym_static_assert] = ACTIONS(4114), + [anon_sym_concept] = ACTIONS(4114), + [anon_sym_co_return] = ACTIONS(4114), + [anon_sym_co_yield] = ACTIONS(4114), + [anon_sym_R_DQUOTE] = ACTIONS(4116), + [anon_sym_LR_DQUOTE] = ACTIONS(4116), + [anon_sym_uR_DQUOTE] = ACTIONS(4116), + [anon_sym_UR_DQUOTE] = ACTIONS(4116), + [anon_sym_u8R_DQUOTE] = ACTIONS(4116), + [anon_sym_co_await] = ACTIONS(4114), + [anon_sym_new] = ACTIONS(4114), + [anon_sym_requires] = ACTIONS(4114), + [anon_sym_CARET_CARET] = ACTIONS(4116), + [anon_sym_LBRACK_COLON] = ACTIONS(4116), + [sym_this] = ACTIONS(4114), + }, + [STATE(831)] = { + [sym_identifier] = ACTIONS(3873), + [aux_sym_preproc_include_token1] = ACTIONS(3873), + [aux_sym_preproc_def_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3875), + [anon_sym_BANG] = ACTIONS(3875), + [anon_sym_TILDE] = ACTIONS(3875), + [anon_sym_DASH] = ACTIONS(3873), + [anon_sym_PLUS] = ACTIONS(3873), + [anon_sym_STAR] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym___extension__] = ACTIONS(3873), + [anon_sym_typedef] = ACTIONS(3873), + [anon_sym_virtual] = ACTIONS(3873), + [anon_sym_extern] = ACTIONS(3873), + [anon_sym___attribute__] = ACTIONS(3873), + [anon_sym___attribute] = ACTIONS(3873), + [anon_sym_using] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3875), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), + [anon_sym___declspec] = ACTIONS(3873), + [anon_sym___based] = ACTIONS(3873), + [anon_sym___cdecl] = ACTIONS(3873), + [anon_sym___clrcall] = ACTIONS(3873), + [anon_sym___stdcall] = ACTIONS(3873), + [anon_sym___fastcall] = ACTIONS(3873), + [anon_sym___thiscall] = ACTIONS(3873), + [anon_sym___vectorcall] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3875), + [anon_sym_RBRACE] = ACTIONS(3875), + [anon_sym_signed] = ACTIONS(3873), + [anon_sym_unsigned] = ACTIONS(3873), + [anon_sym_long] = ACTIONS(3873), + [anon_sym_short] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3873), + [anon_sym_static] = ACTIONS(3873), + [anon_sym_register] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym___inline] = ACTIONS(3873), + [anon_sym___inline__] = ACTIONS(3873), + [anon_sym___forceinline] = ACTIONS(3873), + [anon_sym_thread_local] = ACTIONS(3873), + [anon_sym___thread] = ACTIONS(3873), + [anon_sym_const] = ACTIONS(3873), + [anon_sym_constexpr] = ACTIONS(3873), + [anon_sym_volatile] = ACTIONS(3873), + [anon_sym_restrict] = ACTIONS(3873), + [anon_sym___restrict__] = ACTIONS(3873), + [anon_sym__Atomic] = ACTIONS(3873), + [anon_sym__Noreturn] = ACTIONS(3873), + [anon_sym_noreturn] = ACTIONS(3873), + [anon_sym__Nonnull] = ACTIONS(3873), + [anon_sym_mutable] = ACTIONS(3873), + [anon_sym_constinit] = ACTIONS(3873), + [anon_sym_consteval] = ACTIONS(3873), + [anon_sym_alignas] = ACTIONS(3873), + [anon_sym__Alignas] = ACTIONS(3873), + [sym_primitive_type] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3873), + [anon_sym_union] = ACTIONS(3873), + [anon_sym_if] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3873), + [anon_sym_case] = ACTIONS(3873), + [anon_sym_default] = ACTIONS(3873), + [anon_sym_while] = ACTIONS(3873), + [anon_sym_do] = ACTIONS(3873), + [anon_sym_for] = ACTIONS(3873), + [anon_sym_return] = ACTIONS(3873), + [anon_sym_break] = ACTIONS(3873), + [anon_sym_continue] = ACTIONS(3873), + [anon_sym_goto] = ACTIONS(3873), + [anon_sym___try] = ACTIONS(3873), + [anon_sym___leave] = ACTIONS(3873), + [anon_sym_not] = ACTIONS(3873), + [anon_sym_compl] = ACTIONS(3873), + [anon_sym_DASH_DASH] = ACTIONS(3875), + [anon_sym_PLUS_PLUS] = ACTIONS(3875), + [anon_sym_sizeof] = ACTIONS(3873), + [anon_sym___alignof__] = ACTIONS(3873), + [anon_sym___alignof] = ACTIONS(3873), + [anon_sym__alignof] = ACTIONS(3873), + [anon_sym_alignof] = ACTIONS(3873), + [anon_sym__Alignof] = ACTIONS(3873), + [anon_sym_offsetof] = ACTIONS(3873), + [anon_sym__Generic] = ACTIONS(3873), + [anon_sym_typename] = ACTIONS(3873), + [anon_sym_asm] = ACTIONS(3873), + [anon_sym___asm__] = ACTIONS(3873), + [anon_sym___asm] = ACTIONS(3873), + [sym_number_literal] = ACTIONS(3875), + [anon_sym_L_SQUOTE] = ACTIONS(3875), + [anon_sym_u_SQUOTE] = ACTIONS(3875), + [anon_sym_U_SQUOTE] = ACTIONS(3875), + [anon_sym_u8_SQUOTE] = ACTIONS(3875), + [anon_sym_SQUOTE] = ACTIONS(3875), + [anon_sym_L_DQUOTE] = ACTIONS(3875), + [anon_sym_u_DQUOTE] = ACTIONS(3875), + [anon_sym_U_DQUOTE] = ACTIONS(3875), + [anon_sym_u8_DQUOTE] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [sym_true] = ACTIONS(3873), + [sym_false] = ACTIONS(3873), + [anon_sym_NULL] = ACTIONS(3873), + [anon_sym_nullptr] = ACTIONS(3873), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3873), + [anon_sym_decltype] = ACTIONS(3873), + [anon_sym_explicit] = ACTIONS(3873), + [anon_sym_export] = ACTIONS(3873), + [anon_sym_import] = ACTIONS(3873), + [anon_sym_template] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_try] = ACTIONS(3873), + [anon_sym_delete] = ACTIONS(3873), + [anon_sym_throw] = ACTIONS(3873), + [anon_sym_namespace] = ACTIONS(3873), + [anon_sym_static_assert] = ACTIONS(3873), + [anon_sym_concept] = ACTIONS(3873), + [anon_sym_co_return] = ACTIONS(3873), + [anon_sym_co_yield] = ACTIONS(3873), + [anon_sym_R_DQUOTE] = ACTIONS(3875), + [anon_sym_LR_DQUOTE] = ACTIONS(3875), + [anon_sym_uR_DQUOTE] = ACTIONS(3875), + [anon_sym_UR_DQUOTE] = ACTIONS(3875), + [anon_sym_u8R_DQUOTE] = ACTIONS(3875), + [anon_sym_co_await] = ACTIONS(3873), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(3873), + [anon_sym_CARET_CARET] = ACTIONS(3875), + [anon_sym_LBRACK_COLON] = ACTIONS(3875), + [sym_this] = ACTIONS(3873), + }, + [STATE(832)] = { + [sym_identifier] = ACTIONS(3770), + [aux_sym_preproc_include_token1] = ACTIONS(3770), + [aux_sym_preproc_def_token1] = ACTIONS(3770), + [aux_sym_preproc_if_token1] = ACTIONS(3770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3770), + [sym_preproc_directive] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_BANG] = ACTIONS(3772), + [anon_sym_TILDE] = ACTIONS(3772), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_STAR] = ACTIONS(3772), + [anon_sym_AMP_AMP] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_SEMI] = ACTIONS(3772), + [anon_sym___extension__] = ACTIONS(3770), + [anon_sym_typedef] = ACTIONS(3770), + [anon_sym_virtual] = ACTIONS(3770), + [anon_sym_extern] = ACTIONS(3770), + [anon_sym___attribute__] = ACTIONS(3770), + [anon_sym___attribute] = ACTIONS(3770), + [anon_sym_using] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3772), + [anon_sym___declspec] = ACTIONS(3770), + [anon_sym___based] = ACTIONS(3770), + [anon_sym___cdecl] = ACTIONS(3770), + [anon_sym___clrcall] = ACTIONS(3770), + [anon_sym___stdcall] = ACTIONS(3770), + [anon_sym___fastcall] = ACTIONS(3770), + [anon_sym___thiscall] = ACTIONS(3770), + [anon_sym___vectorcall] = ACTIONS(3770), + [anon_sym_LBRACE] = ACTIONS(3772), + [anon_sym_RBRACE] = ACTIONS(3772), + [anon_sym_signed] = ACTIONS(3770), + [anon_sym_unsigned] = ACTIONS(3770), + [anon_sym_long] = ACTIONS(3770), + [anon_sym_short] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_static] = ACTIONS(3770), + [anon_sym_register] = ACTIONS(3770), + [anon_sym_inline] = ACTIONS(3770), + [anon_sym___inline] = ACTIONS(3770), + [anon_sym___inline__] = ACTIONS(3770), + [anon_sym___forceinline] = ACTIONS(3770), + [anon_sym_thread_local] = ACTIONS(3770), + [anon_sym___thread] = ACTIONS(3770), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_constexpr] = ACTIONS(3770), + [anon_sym_volatile] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3770), + [anon_sym___restrict__] = ACTIONS(3770), + [anon_sym__Atomic] = ACTIONS(3770), + [anon_sym__Noreturn] = ACTIONS(3770), + [anon_sym_noreturn] = ACTIONS(3770), + [anon_sym__Nonnull] = ACTIONS(3770), + [anon_sym_mutable] = ACTIONS(3770), + [anon_sym_constinit] = ACTIONS(3770), + [anon_sym_consteval] = ACTIONS(3770), + [anon_sym_alignas] = ACTIONS(3770), + [anon_sym__Alignas] = ACTIONS(3770), + [sym_primitive_type] = ACTIONS(3770), + [anon_sym_enum] = ACTIONS(3770), + [anon_sym_class] = ACTIONS(3770), + [anon_sym_struct] = ACTIONS(3770), + [anon_sym_union] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_switch] = ACTIONS(3770), + [anon_sym_case] = ACTIONS(3770), + [anon_sym_default] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_break] = ACTIONS(3770), + [anon_sym_continue] = ACTIONS(3770), + [anon_sym_goto] = ACTIONS(3770), + [anon_sym___try] = ACTIONS(3770), + [anon_sym___leave] = ACTIONS(3770), + [anon_sym_not] = ACTIONS(3770), + [anon_sym_compl] = ACTIONS(3770), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_sizeof] = ACTIONS(3770), + [anon_sym___alignof__] = ACTIONS(3770), + [anon_sym___alignof] = ACTIONS(3770), + [anon_sym__alignof] = ACTIONS(3770), + [anon_sym_alignof] = ACTIONS(3770), + [anon_sym__Alignof] = ACTIONS(3770), + [anon_sym_offsetof] = ACTIONS(3770), + [anon_sym__Generic] = ACTIONS(3770), + [anon_sym_typename] = ACTIONS(3770), + [anon_sym_asm] = ACTIONS(3770), + [anon_sym___asm__] = ACTIONS(3770), + [anon_sym___asm] = ACTIONS(3770), + [sym_number_literal] = ACTIONS(3772), + [anon_sym_L_SQUOTE] = ACTIONS(3772), + [anon_sym_u_SQUOTE] = ACTIONS(3772), + [anon_sym_U_SQUOTE] = ACTIONS(3772), + [anon_sym_u8_SQUOTE] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(3772), + [anon_sym_L_DQUOTE] = ACTIONS(3772), + [anon_sym_u_DQUOTE] = ACTIONS(3772), + [anon_sym_U_DQUOTE] = ACTIONS(3772), + [anon_sym_u8_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE] = ACTIONS(3772), + [sym_true] = ACTIONS(3770), + [sym_false] = ACTIONS(3770), + [anon_sym_NULL] = ACTIONS(3770), + [anon_sym_nullptr] = ACTIONS(3770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3770), + [anon_sym_decltype] = ACTIONS(3770), + [anon_sym_explicit] = ACTIONS(3770), + [anon_sym_export] = ACTIONS(3770), + [anon_sym_import] = ACTIONS(3770), + [anon_sym_template] = ACTIONS(3770), + [anon_sym_operator] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_throw] = ACTIONS(3770), + [anon_sym_namespace] = ACTIONS(3770), + [anon_sym_static_assert] = ACTIONS(3770), + [anon_sym_concept] = ACTIONS(3770), + [anon_sym_co_return] = ACTIONS(3770), + [anon_sym_co_yield] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3770), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_requires] = ACTIONS(3770), + [anon_sym_CARET_CARET] = ACTIONS(3772), + [anon_sym_LBRACK_COLON] = ACTIONS(3772), + [sym_this] = ACTIONS(3770), + }, + [STATE(833)] = { + [sym_identifier] = ACTIONS(4375), + [aux_sym_preproc_include_token1] = ACTIONS(4375), + [aux_sym_preproc_def_token1] = ACTIONS(4375), + [aux_sym_preproc_if_token1] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4375), + [sym_preproc_directive] = ACTIONS(4375), + [anon_sym_LPAREN2] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4377), + [anon_sym_TILDE] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym___extension__] = ACTIONS(4375), + [anon_sym_typedef] = ACTIONS(4375), + [anon_sym_virtual] = ACTIONS(4375), + [anon_sym_extern] = ACTIONS(4375), + [anon_sym___attribute__] = ACTIONS(4375), + [anon_sym___attribute] = ACTIONS(4375), + [anon_sym_using] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4377), + [anon_sym___declspec] = ACTIONS(4375), + [anon_sym___based] = ACTIONS(4375), + [anon_sym___cdecl] = ACTIONS(4375), + [anon_sym___clrcall] = ACTIONS(4375), + [anon_sym___stdcall] = ACTIONS(4375), + [anon_sym___fastcall] = ACTIONS(4375), + [anon_sym___thiscall] = ACTIONS(4375), + [anon_sym___vectorcall] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_RBRACE] = ACTIONS(4377), + [anon_sym_signed] = ACTIONS(4375), + [anon_sym_unsigned] = ACTIONS(4375), + [anon_sym_long] = ACTIONS(4375), + [anon_sym_short] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_static] = ACTIONS(4375), + [anon_sym_register] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym___inline] = ACTIONS(4375), + [anon_sym___inline__] = ACTIONS(4375), + [anon_sym___forceinline] = ACTIONS(4375), + [anon_sym_thread_local] = ACTIONS(4375), + [anon_sym___thread] = ACTIONS(4375), + [anon_sym_const] = ACTIONS(4375), + [anon_sym_constexpr] = ACTIONS(4375), + [anon_sym_volatile] = ACTIONS(4375), + [anon_sym_restrict] = ACTIONS(4375), + [anon_sym___restrict__] = ACTIONS(4375), + [anon_sym__Atomic] = ACTIONS(4375), + [anon_sym__Noreturn] = ACTIONS(4375), + [anon_sym_noreturn] = ACTIONS(4375), + [anon_sym__Nonnull] = ACTIONS(4375), + [anon_sym_mutable] = ACTIONS(4375), + [anon_sym_constinit] = ACTIONS(4375), + [anon_sym_consteval] = ACTIONS(4375), + [anon_sym_alignas] = ACTIONS(4375), + [anon_sym__Alignas] = ACTIONS(4375), + [sym_primitive_type] = ACTIONS(4375), + [anon_sym_enum] = ACTIONS(4375), + [anon_sym_class] = ACTIONS(4375), + [anon_sym_struct] = ACTIONS(4375), + [anon_sym_union] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_switch] = ACTIONS(4375), + [anon_sym_case] = ACTIONS(4375), + [anon_sym_default] = ACTIONS(4375), + [anon_sym_while] = ACTIONS(4375), + [anon_sym_do] = ACTIONS(4375), + [anon_sym_for] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_goto] = ACTIONS(4375), + [anon_sym___try] = ACTIONS(4375), + [anon_sym___leave] = ACTIONS(4375), + [anon_sym_not] = ACTIONS(4375), + [anon_sym_compl] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_sizeof] = ACTIONS(4375), + [anon_sym___alignof__] = ACTIONS(4375), + [anon_sym___alignof] = ACTIONS(4375), + [anon_sym__alignof] = ACTIONS(4375), + [anon_sym_alignof] = ACTIONS(4375), + [anon_sym__Alignof] = ACTIONS(4375), + [anon_sym_offsetof] = ACTIONS(4375), + [anon_sym__Generic] = ACTIONS(4375), + [anon_sym_typename] = ACTIONS(4375), + [anon_sym_asm] = ACTIONS(4375), + [anon_sym___asm__] = ACTIONS(4375), + [anon_sym___asm] = ACTIONS(4375), + [sym_number_literal] = ACTIONS(4377), + [anon_sym_L_SQUOTE] = ACTIONS(4377), + [anon_sym_u_SQUOTE] = ACTIONS(4377), + [anon_sym_U_SQUOTE] = ACTIONS(4377), + [anon_sym_u8_SQUOTE] = ACTIONS(4377), + [anon_sym_SQUOTE] = ACTIONS(4377), + [anon_sym_L_DQUOTE] = ACTIONS(4377), + [anon_sym_u_DQUOTE] = ACTIONS(4377), + [anon_sym_U_DQUOTE] = ACTIONS(4377), + [anon_sym_u8_DQUOTE] = ACTIONS(4377), + [anon_sym_DQUOTE] = ACTIONS(4377), + [sym_true] = ACTIONS(4375), + [sym_false] = ACTIONS(4375), + [anon_sym_NULL] = ACTIONS(4375), + [anon_sym_nullptr] = ACTIONS(4375), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4375), + [anon_sym_decltype] = ACTIONS(4375), + [anon_sym_explicit] = ACTIONS(4375), + [anon_sym_export] = ACTIONS(4375), + [anon_sym_import] = ACTIONS(4375), + [anon_sym_template] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_delete] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_namespace] = ACTIONS(4375), + [anon_sym_static_assert] = ACTIONS(4375), + [anon_sym_concept] = ACTIONS(4375), + [anon_sym_co_return] = ACTIONS(4375), + [anon_sym_co_yield] = ACTIONS(4375), + [anon_sym_R_DQUOTE] = ACTIONS(4377), + [anon_sym_LR_DQUOTE] = ACTIONS(4377), + [anon_sym_uR_DQUOTE] = ACTIONS(4377), + [anon_sym_UR_DQUOTE] = ACTIONS(4377), + [anon_sym_u8R_DQUOTE] = ACTIONS(4377), + [anon_sym_co_await] = ACTIONS(4375), + [anon_sym_new] = ACTIONS(4375), + [anon_sym_requires] = ACTIONS(4375), + [anon_sym_CARET_CARET] = ACTIONS(4377), + [anon_sym_LBRACK_COLON] = ACTIONS(4377), + [sym_this] = ACTIONS(4375), + }, + [STATE(834)] = { + [sym_identifier] = ACTIONS(3758), + [aux_sym_preproc_include_token1] = ACTIONS(3758), + [aux_sym_preproc_def_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token1] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3758), + [sym_preproc_directive] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_BANG] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym___extension__] = ACTIONS(3758), + [anon_sym_typedef] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym___attribute] = ACTIONS(3758), + [anon_sym_using] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym___cdecl] = ACTIONS(3758), + [anon_sym___clrcall] = ACTIONS(3758), + [anon_sym___stdcall] = ACTIONS(3758), + [anon_sym___fastcall] = ACTIONS(3758), + [anon_sym___thiscall] = ACTIONS(3758), + [anon_sym___vectorcall] = ACTIONS(3758), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_RBRACE] = ACTIONS(3760), + [anon_sym_signed] = ACTIONS(3758), + [anon_sym_unsigned] = ACTIONS(3758), + [anon_sym_long] = ACTIONS(3758), + [anon_sym_short] = ACTIONS(3758), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym___restrict__] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym__Noreturn] = ACTIONS(3758), + [anon_sym_noreturn] = ACTIONS(3758), + [anon_sym__Nonnull] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_alignas] = ACTIONS(3758), + [anon_sym__Alignas] = ACTIONS(3758), + [sym_primitive_type] = ACTIONS(3758), + [anon_sym_enum] = ACTIONS(3758), + [anon_sym_class] = ACTIONS(3758), + [anon_sym_struct] = ACTIONS(3758), + [anon_sym_union] = ACTIONS(3758), + [anon_sym_if] = ACTIONS(3758), + [anon_sym_switch] = ACTIONS(3758), + [anon_sym_case] = ACTIONS(3758), + [anon_sym_default] = ACTIONS(3758), + [anon_sym_while] = ACTIONS(3758), + [anon_sym_do] = ACTIONS(3758), + [anon_sym_for] = ACTIONS(3758), + [anon_sym_return] = ACTIONS(3758), + [anon_sym_break] = ACTIONS(3758), + [anon_sym_continue] = ACTIONS(3758), + [anon_sym_goto] = ACTIONS(3758), + [anon_sym___try] = ACTIONS(3758), + [anon_sym___leave] = ACTIONS(3758), + [anon_sym_not] = ACTIONS(3758), + [anon_sym_compl] = ACTIONS(3758), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3758), + [anon_sym___alignof__] = ACTIONS(3758), + [anon_sym___alignof] = ACTIONS(3758), + [anon_sym__alignof] = ACTIONS(3758), + [anon_sym_alignof] = ACTIONS(3758), + [anon_sym__Alignof] = ACTIONS(3758), + [anon_sym_offsetof] = ACTIONS(3758), + [anon_sym__Generic] = ACTIONS(3758), + [anon_sym_typename] = ACTIONS(3758), + [anon_sym_asm] = ACTIONS(3758), + [anon_sym___asm__] = ACTIONS(3758), + [anon_sym___asm] = ACTIONS(3758), + [sym_number_literal] = ACTIONS(3760), + [anon_sym_L_SQUOTE] = ACTIONS(3760), + [anon_sym_u_SQUOTE] = ACTIONS(3760), + [anon_sym_U_SQUOTE] = ACTIONS(3760), + [anon_sym_u8_SQUOTE] = ACTIONS(3760), + [anon_sym_SQUOTE] = ACTIONS(3760), + [anon_sym_L_DQUOTE] = ACTIONS(3760), + [anon_sym_u_DQUOTE] = ACTIONS(3760), + [anon_sym_U_DQUOTE] = ACTIONS(3760), + [anon_sym_u8_DQUOTE] = ACTIONS(3760), + [anon_sym_DQUOTE] = ACTIONS(3760), + [sym_true] = ACTIONS(3758), + [sym_false] = ACTIONS(3758), + [anon_sym_NULL] = ACTIONS(3758), + [anon_sym_nullptr] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_explicit] = ACTIONS(3758), + [anon_sym_export] = ACTIONS(3758), + [anon_sym_import] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + [anon_sym_try] = ACTIONS(3758), + [anon_sym_delete] = ACTIONS(3758), + [anon_sym_throw] = ACTIONS(3758), + [anon_sym_namespace] = ACTIONS(3758), + [anon_sym_static_assert] = ACTIONS(3758), + [anon_sym_concept] = ACTIONS(3758), + [anon_sym_co_return] = ACTIONS(3758), + [anon_sym_co_yield] = ACTIONS(3758), + [anon_sym_R_DQUOTE] = ACTIONS(3760), + [anon_sym_LR_DQUOTE] = ACTIONS(3760), + [anon_sym_uR_DQUOTE] = ACTIONS(3760), + [anon_sym_UR_DQUOTE] = ACTIONS(3760), + [anon_sym_u8R_DQUOTE] = ACTIONS(3760), + [anon_sym_co_await] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3758), + [anon_sym_requires] = ACTIONS(3758), + [anon_sym_CARET_CARET] = ACTIONS(3760), + [anon_sym_LBRACK_COLON] = ACTIONS(3760), + [sym_this] = ACTIONS(3758), + }, + [STATE(835)] = { + [sym_identifier] = ACTIONS(3858), + [aux_sym_preproc_include_token1] = ACTIONS(3858), + [aux_sym_preproc_def_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3858), + [sym_preproc_directive] = ACTIONS(3858), + [anon_sym_LPAREN2] = ACTIONS(3860), + [anon_sym_BANG] = ACTIONS(3860), + [anon_sym_TILDE] = ACTIONS(3860), + [anon_sym_DASH] = ACTIONS(3858), + [anon_sym_PLUS] = ACTIONS(3858), + [anon_sym_STAR] = ACTIONS(3860), + [anon_sym_AMP_AMP] = ACTIONS(3860), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym___extension__] = ACTIONS(3858), + [anon_sym_typedef] = ACTIONS(3858), + [anon_sym_virtual] = ACTIONS(3858), + [anon_sym_extern] = ACTIONS(3858), + [anon_sym___attribute__] = ACTIONS(3858), + [anon_sym___attribute] = ACTIONS(3858), + [anon_sym_using] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3860), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), + [anon_sym___declspec] = ACTIONS(3858), + [anon_sym___based] = ACTIONS(3858), + [anon_sym___cdecl] = ACTIONS(3858), + [anon_sym___clrcall] = ACTIONS(3858), + [anon_sym___stdcall] = ACTIONS(3858), + [anon_sym___fastcall] = ACTIONS(3858), + [anon_sym___thiscall] = ACTIONS(3858), + [anon_sym___vectorcall] = ACTIONS(3858), + [anon_sym_LBRACE] = ACTIONS(3860), + [anon_sym_RBRACE] = ACTIONS(3860), + [anon_sym_signed] = ACTIONS(3858), + [anon_sym_unsigned] = ACTIONS(3858), + [anon_sym_long] = ACTIONS(3858), + [anon_sym_short] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3858), + [anon_sym_static] = ACTIONS(3858), + [anon_sym_register] = ACTIONS(3858), + [anon_sym_inline] = ACTIONS(3858), + [anon_sym___inline] = ACTIONS(3858), + [anon_sym___inline__] = ACTIONS(3858), + [anon_sym___forceinline] = ACTIONS(3858), + [anon_sym_thread_local] = ACTIONS(3858), + [anon_sym___thread] = ACTIONS(3858), + [anon_sym_const] = ACTIONS(3858), + [anon_sym_constexpr] = ACTIONS(3858), + [anon_sym_volatile] = ACTIONS(3858), + [anon_sym_restrict] = ACTIONS(3858), + [anon_sym___restrict__] = ACTIONS(3858), + [anon_sym__Atomic] = ACTIONS(3858), + [anon_sym__Noreturn] = ACTIONS(3858), + [anon_sym_noreturn] = ACTIONS(3858), + [anon_sym__Nonnull] = ACTIONS(3858), + [anon_sym_mutable] = ACTIONS(3858), + [anon_sym_constinit] = ACTIONS(3858), + [anon_sym_consteval] = ACTIONS(3858), + [anon_sym_alignas] = ACTIONS(3858), + [anon_sym__Alignas] = ACTIONS(3858), + [sym_primitive_type] = ACTIONS(3858), + [anon_sym_enum] = ACTIONS(3858), + [anon_sym_class] = ACTIONS(3858), + [anon_sym_struct] = ACTIONS(3858), + [anon_sym_union] = ACTIONS(3858), + [anon_sym_if] = ACTIONS(3858), + [anon_sym_switch] = ACTIONS(3858), + [anon_sym_case] = ACTIONS(3858), + [anon_sym_default] = ACTIONS(3858), + [anon_sym_while] = ACTIONS(3858), + [anon_sym_do] = ACTIONS(3858), + [anon_sym_for] = ACTIONS(3858), + [anon_sym_return] = ACTIONS(3858), + [anon_sym_break] = ACTIONS(3858), + [anon_sym_continue] = ACTIONS(3858), + [anon_sym_goto] = ACTIONS(3858), + [anon_sym___try] = ACTIONS(3858), + [anon_sym___leave] = ACTIONS(3858), + [anon_sym_not] = ACTIONS(3858), + [anon_sym_compl] = ACTIONS(3858), + [anon_sym_DASH_DASH] = ACTIONS(3860), + [anon_sym_PLUS_PLUS] = ACTIONS(3860), + [anon_sym_sizeof] = ACTIONS(3858), + [anon_sym___alignof__] = ACTIONS(3858), + [anon_sym___alignof] = ACTIONS(3858), + [anon_sym__alignof] = ACTIONS(3858), + [anon_sym_alignof] = ACTIONS(3858), + [anon_sym__Alignof] = ACTIONS(3858), + [anon_sym_offsetof] = ACTIONS(3858), + [anon_sym__Generic] = ACTIONS(3858), + [anon_sym_typename] = ACTIONS(3858), + [anon_sym_asm] = ACTIONS(3858), + [anon_sym___asm__] = ACTIONS(3858), + [anon_sym___asm] = ACTIONS(3858), + [sym_number_literal] = ACTIONS(3860), + [anon_sym_L_SQUOTE] = ACTIONS(3860), + [anon_sym_u_SQUOTE] = ACTIONS(3860), + [anon_sym_U_SQUOTE] = ACTIONS(3860), + [anon_sym_u8_SQUOTE] = ACTIONS(3860), + [anon_sym_SQUOTE] = ACTIONS(3860), + [anon_sym_L_DQUOTE] = ACTIONS(3860), + [anon_sym_u_DQUOTE] = ACTIONS(3860), + [anon_sym_U_DQUOTE] = ACTIONS(3860), + [anon_sym_u8_DQUOTE] = ACTIONS(3860), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym_true] = ACTIONS(3858), + [sym_false] = ACTIONS(3858), + [anon_sym_NULL] = ACTIONS(3858), + [anon_sym_nullptr] = ACTIONS(3858), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3858), + [anon_sym_decltype] = ACTIONS(3858), + [anon_sym_explicit] = ACTIONS(3858), + [anon_sym_export] = ACTIONS(3858), + [anon_sym_import] = ACTIONS(3858), + [anon_sym_template] = ACTIONS(3858), + [anon_sym_operator] = ACTIONS(3858), + [anon_sym_try] = ACTIONS(3858), + [anon_sym_delete] = ACTIONS(3858), + [anon_sym_throw] = ACTIONS(3858), + [anon_sym_namespace] = ACTIONS(3858), + [anon_sym_static_assert] = ACTIONS(3858), + [anon_sym_concept] = ACTIONS(3858), + [anon_sym_co_return] = ACTIONS(3858), + [anon_sym_co_yield] = ACTIONS(3858), + [anon_sym_R_DQUOTE] = ACTIONS(3860), + [anon_sym_LR_DQUOTE] = ACTIONS(3860), + [anon_sym_uR_DQUOTE] = ACTIONS(3860), + [anon_sym_UR_DQUOTE] = ACTIONS(3860), + [anon_sym_u8R_DQUOTE] = ACTIONS(3860), + [anon_sym_co_await] = ACTIONS(3858), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3858), + [anon_sym_CARET_CARET] = ACTIONS(3860), + [anon_sym_LBRACK_COLON] = ACTIONS(3860), + [sym_this] = ACTIONS(3858), + }, + [STATE(836)] = { + [sym_identifier] = ACTIONS(4387), + [aux_sym_preproc_include_token1] = ACTIONS(4387), + [aux_sym_preproc_def_token1] = ACTIONS(4387), + [aux_sym_preproc_if_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), + [sym_preproc_directive] = ACTIONS(4387), + [anon_sym_LPAREN2] = ACTIONS(4389), + [anon_sym_BANG] = ACTIONS(4389), + [anon_sym_TILDE] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4387), + [anon_sym_STAR] = ACTIONS(4389), + [anon_sym_AMP_AMP] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_SEMI] = ACTIONS(4389), + [anon_sym___extension__] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4387), + [anon_sym_virtual] = ACTIONS(4387), + [anon_sym_extern] = ACTIONS(4387), + [anon_sym___attribute__] = ACTIONS(4387), + [anon_sym___attribute] = ACTIONS(4387), + [anon_sym_using] = ACTIONS(4387), + [anon_sym_COLON_COLON] = ACTIONS(4389), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), + [anon_sym___declspec] = ACTIONS(4387), + [anon_sym___based] = ACTIONS(4387), + [anon_sym___cdecl] = ACTIONS(4387), + [anon_sym___clrcall] = ACTIONS(4387), + [anon_sym___stdcall] = ACTIONS(4387), + [anon_sym___fastcall] = ACTIONS(4387), + [anon_sym___thiscall] = ACTIONS(4387), + [anon_sym___vectorcall] = ACTIONS(4387), + [anon_sym_LBRACE] = ACTIONS(4389), + [anon_sym_RBRACE] = ACTIONS(4389), + [anon_sym_signed] = ACTIONS(4387), + [anon_sym_unsigned] = ACTIONS(4387), + [anon_sym_long] = ACTIONS(4387), + [anon_sym_short] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4387), + [anon_sym_register] = ACTIONS(4387), + [anon_sym_inline] = ACTIONS(4387), + [anon_sym___inline] = ACTIONS(4387), + [anon_sym___inline__] = ACTIONS(4387), + [anon_sym___forceinline] = ACTIONS(4387), + [anon_sym_thread_local] = ACTIONS(4387), + [anon_sym___thread] = ACTIONS(4387), + [anon_sym_const] = ACTIONS(4387), + [anon_sym_constexpr] = ACTIONS(4387), + [anon_sym_volatile] = ACTIONS(4387), + [anon_sym_restrict] = ACTIONS(4387), + [anon_sym___restrict__] = ACTIONS(4387), + [anon_sym__Atomic] = ACTIONS(4387), + [anon_sym__Noreturn] = ACTIONS(4387), + [anon_sym_noreturn] = ACTIONS(4387), + [anon_sym__Nonnull] = ACTIONS(4387), + [anon_sym_mutable] = ACTIONS(4387), + [anon_sym_constinit] = ACTIONS(4387), + [anon_sym_consteval] = ACTIONS(4387), + [anon_sym_alignas] = ACTIONS(4387), + [anon_sym__Alignas] = ACTIONS(4387), + [sym_primitive_type] = ACTIONS(4387), + [anon_sym_enum] = ACTIONS(4387), + [anon_sym_class] = ACTIONS(4387), + [anon_sym_struct] = ACTIONS(4387), + [anon_sym_union] = ACTIONS(4387), + [anon_sym_if] = ACTIONS(4387), + [anon_sym_switch] = ACTIONS(4387), + [anon_sym_case] = ACTIONS(4387), + [anon_sym_default] = ACTIONS(4387), + [anon_sym_while] = ACTIONS(4387), + [anon_sym_do] = ACTIONS(4387), + [anon_sym_for] = ACTIONS(4387), + [anon_sym_return] = ACTIONS(4387), + [anon_sym_break] = ACTIONS(4387), + [anon_sym_continue] = ACTIONS(4387), + [anon_sym_goto] = ACTIONS(4387), + [anon_sym___try] = ACTIONS(4387), + [anon_sym___leave] = ACTIONS(4387), + [anon_sym_not] = ACTIONS(4387), + [anon_sym_compl] = ACTIONS(4387), + [anon_sym_DASH_DASH] = ACTIONS(4389), + [anon_sym_PLUS_PLUS] = ACTIONS(4389), + [anon_sym_sizeof] = ACTIONS(4387), + [anon_sym___alignof__] = ACTIONS(4387), + [anon_sym___alignof] = ACTIONS(4387), + [anon_sym__alignof] = ACTIONS(4387), + [anon_sym_alignof] = ACTIONS(4387), + [anon_sym__Alignof] = ACTIONS(4387), + [anon_sym_offsetof] = ACTIONS(4387), + [anon_sym__Generic] = ACTIONS(4387), + [anon_sym_typename] = ACTIONS(4387), + [anon_sym_asm] = ACTIONS(4387), + [anon_sym___asm__] = ACTIONS(4387), + [anon_sym___asm] = ACTIONS(4387), + [sym_number_literal] = ACTIONS(4389), + [anon_sym_L_SQUOTE] = ACTIONS(4389), + [anon_sym_u_SQUOTE] = ACTIONS(4389), + [anon_sym_U_SQUOTE] = ACTIONS(4389), + [anon_sym_u8_SQUOTE] = ACTIONS(4389), + [anon_sym_SQUOTE] = ACTIONS(4389), + [anon_sym_L_DQUOTE] = ACTIONS(4389), + [anon_sym_u_DQUOTE] = ACTIONS(4389), + [anon_sym_U_DQUOTE] = ACTIONS(4389), + [anon_sym_u8_DQUOTE] = ACTIONS(4389), + [anon_sym_DQUOTE] = ACTIONS(4389), + [sym_true] = ACTIONS(4387), + [sym_false] = ACTIONS(4387), + [anon_sym_NULL] = ACTIONS(4387), + [anon_sym_nullptr] = ACTIONS(4387), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3917), - [anon_sym_decltype] = ACTIONS(3917), - [anon_sym_explicit] = ACTIONS(3917), - [anon_sym_export] = ACTIONS(3917), - [anon_sym_import] = ACTIONS(3917), - [anon_sym_template] = ACTIONS(3917), - [anon_sym_operator] = ACTIONS(3917), - [anon_sym_try] = ACTIONS(3917), - [anon_sym_delete] = ACTIONS(3917), - [anon_sym_throw] = ACTIONS(3917), - [anon_sym_namespace] = ACTIONS(3917), - [anon_sym_static_assert] = ACTIONS(3917), - [anon_sym_concept] = ACTIONS(3917), - [anon_sym_co_return] = ACTIONS(3917), - [anon_sym_co_yield] = ACTIONS(3917), - [anon_sym_R_DQUOTE] = ACTIONS(3919), - [anon_sym_LR_DQUOTE] = ACTIONS(3919), - [anon_sym_uR_DQUOTE] = ACTIONS(3919), - [anon_sym_UR_DQUOTE] = ACTIONS(3919), - [anon_sym_u8R_DQUOTE] = ACTIONS(3919), - [anon_sym_co_await] = ACTIONS(3917), - [anon_sym_new] = ACTIONS(3917), - [anon_sym_requires] = ACTIONS(3917), - [anon_sym_CARET_CARET] = ACTIONS(3919), - [anon_sym_LBRACK_COLON] = ACTIONS(3919), - [sym_this] = ACTIONS(3917), + [sym_auto] = ACTIONS(4387), + [anon_sym_decltype] = ACTIONS(4387), + [anon_sym_explicit] = ACTIONS(4387), + [anon_sym_export] = ACTIONS(4387), + [anon_sym_import] = ACTIONS(4387), + [anon_sym_template] = ACTIONS(4387), + [anon_sym_operator] = ACTIONS(4387), + [anon_sym_try] = ACTIONS(4387), + [anon_sym_delete] = ACTIONS(4387), + [anon_sym_throw] = ACTIONS(4387), + [anon_sym_namespace] = ACTIONS(4387), + [anon_sym_static_assert] = ACTIONS(4387), + [anon_sym_concept] = ACTIONS(4387), + [anon_sym_co_return] = ACTIONS(4387), + [anon_sym_co_yield] = ACTIONS(4387), + [anon_sym_R_DQUOTE] = ACTIONS(4389), + [anon_sym_LR_DQUOTE] = ACTIONS(4389), + [anon_sym_uR_DQUOTE] = ACTIONS(4389), + [anon_sym_UR_DQUOTE] = ACTIONS(4389), + [anon_sym_u8R_DQUOTE] = ACTIONS(4389), + [anon_sym_co_await] = ACTIONS(4387), + [anon_sym_new] = ACTIONS(4387), + [anon_sym_requires] = ACTIONS(4387), + [anon_sym_CARET_CARET] = ACTIONS(4389), + [anon_sym_LBRACK_COLON] = ACTIONS(4389), + [sym_this] = ACTIONS(4387), }, - [STATE(855)] = { - [sym_identifier] = ACTIONS(3931), - [aux_sym_preproc_include_token1] = ACTIONS(3931), - [aux_sym_preproc_def_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token1] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), - [sym_preproc_directive] = ACTIONS(3931), - [anon_sym_LPAREN2] = ACTIONS(3933), - [anon_sym_BANG] = ACTIONS(3933), - [anon_sym_TILDE] = ACTIONS(3933), - [anon_sym_DASH] = ACTIONS(3931), - [anon_sym_PLUS] = ACTIONS(3931), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(3931), - [anon_sym_SEMI] = ACTIONS(3933), - [anon_sym___extension__] = ACTIONS(3931), - [anon_sym_typedef] = ACTIONS(3931), - [anon_sym_virtual] = ACTIONS(3931), - [anon_sym_extern] = ACTIONS(3931), - [anon_sym___attribute__] = ACTIONS(3931), - [anon_sym___attribute] = ACTIONS(3931), - [anon_sym_using] = ACTIONS(3931), - [anon_sym_COLON_COLON] = ACTIONS(3933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), - [anon_sym___declspec] = ACTIONS(3931), - [anon_sym___based] = ACTIONS(3931), - [anon_sym___cdecl] = ACTIONS(3931), - [anon_sym___clrcall] = ACTIONS(3931), - [anon_sym___stdcall] = ACTIONS(3931), - [anon_sym___fastcall] = ACTIONS(3931), - [anon_sym___thiscall] = ACTIONS(3931), - [anon_sym___vectorcall] = ACTIONS(3931), - [anon_sym_LBRACE] = ACTIONS(3933), - [anon_sym_RBRACE] = ACTIONS(3933), - [anon_sym_signed] = ACTIONS(3931), - [anon_sym_unsigned] = ACTIONS(3931), - [anon_sym_long] = ACTIONS(3931), - [anon_sym_short] = ACTIONS(3931), - [anon_sym_LBRACK] = ACTIONS(3931), - [anon_sym_static] = ACTIONS(3931), - [anon_sym_register] = ACTIONS(3931), - [anon_sym_inline] = ACTIONS(3931), - [anon_sym___inline] = ACTIONS(3931), - [anon_sym___inline__] = ACTIONS(3931), - [anon_sym___forceinline] = ACTIONS(3931), - [anon_sym_thread_local] = ACTIONS(3931), - [anon_sym___thread] = ACTIONS(3931), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_constexpr] = ACTIONS(3931), - [anon_sym_volatile] = ACTIONS(3931), - [anon_sym_restrict] = ACTIONS(3931), - [anon_sym___restrict__] = ACTIONS(3931), - [anon_sym__Atomic] = ACTIONS(3931), - [anon_sym__Noreturn] = ACTIONS(3931), - [anon_sym_noreturn] = ACTIONS(3931), - [anon_sym__Nonnull] = ACTIONS(3931), - [anon_sym_mutable] = ACTIONS(3931), - [anon_sym_constinit] = ACTIONS(3931), - [anon_sym_consteval] = ACTIONS(3931), - [anon_sym_alignas] = ACTIONS(3931), - [anon_sym__Alignas] = ACTIONS(3931), - [sym_primitive_type] = ACTIONS(3931), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3931), - [anon_sym_struct] = ACTIONS(3931), - [anon_sym_union] = ACTIONS(3931), - [anon_sym_if] = ACTIONS(3931), - [anon_sym_switch] = ACTIONS(3931), - [anon_sym_case] = ACTIONS(3931), - [anon_sym_default] = ACTIONS(3931), - [anon_sym_while] = ACTIONS(3931), - [anon_sym_do] = ACTIONS(3931), - [anon_sym_for] = ACTIONS(3931), - [anon_sym_return] = ACTIONS(3931), - [anon_sym_break] = ACTIONS(3931), - [anon_sym_continue] = ACTIONS(3931), - [anon_sym_goto] = ACTIONS(3931), - [anon_sym___try] = ACTIONS(3931), - [anon_sym___leave] = ACTIONS(3931), - [anon_sym_not] = ACTIONS(3931), - [anon_sym_compl] = ACTIONS(3931), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_sizeof] = ACTIONS(3931), - [anon_sym___alignof__] = ACTIONS(3931), - [anon_sym___alignof] = ACTIONS(3931), - [anon_sym__alignof] = ACTIONS(3931), - [anon_sym_alignof] = ACTIONS(3931), - [anon_sym__Alignof] = ACTIONS(3931), - [anon_sym_offsetof] = ACTIONS(3931), - [anon_sym__Generic] = ACTIONS(3931), - [anon_sym_typename] = ACTIONS(3931), - [anon_sym_asm] = ACTIONS(3931), - [anon_sym___asm__] = ACTIONS(3931), - [anon_sym___asm] = ACTIONS(3931), - [sym_number_literal] = ACTIONS(3933), - [anon_sym_L_SQUOTE] = ACTIONS(3933), - [anon_sym_u_SQUOTE] = ACTIONS(3933), - [anon_sym_U_SQUOTE] = ACTIONS(3933), - [anon_sym_u8_SQUOTE] = ACTIONS(3933), - [anon_sym_SQUOTE] = ACTIONS(3933), - [anon_sym_L_DQUOTE] = ACTIONS(3933), - [anon_sym_u_DQUOTE] = ACTIONS(3933), - [anon_sym_U_DQUOTE] = ACTIONS(3933), - [anon_sym_u8_DQUOTE] = ACTIONS(3933), - [anon_sym_DQUOTE] = ACTIONS(3933), - [sym_true] = ACTIONS(3931), - [sym_false] = ACTIONS(3931), - [anon_sym_NULL] = ACTIONS(3931), - [anon_sym_nullptr] = ACTIONS(3931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3931), - [anon_sym_decltype] = ACTIONS(3931), - [anon_sym_explicit] = ACTIONS(3931), - [anon_sym_export] = ACTIONS(3931), - [anon_sym_import] = ACTIONS(3931), - [anon_sym_template] = ACTIONS(3931), - [anon_sym_operator] = ACTIONS(3931), - [anon_sym_try] = ACTIONS(3931), - [anon_sym_delete] = ACTIONS(3931), - [anon_sym_throw] = ACTIONS(3931), - [anon_sym_namespace] = ACTIONS(3931), - [anon_sym_static_assert] = ACTIONS(3931), - [anon_sym_concept] = ACTIONS(3931), - [anon_sym_co_return] = ACTIONS(3931), - [anon_sym_co_yield] = ACTIONS(3931), - [anon_sym_R_DQUOTE] = ACTIONS(3933), - [anon_sym_LR_DQUOTE] = ACTIONS(3933), - [anon_sym_uR_DQUOTE] = ACTIONS(3933), - [anon_sym_UR_DQUOTE] = ACTIONS(3933), - [anon_sym_u8R_DQUOTE] = ACTIONS(3933), - [anon_sym_co_await] = ACTIONS(3931), - [anon_sym_new] = ACTIONS(3931), - [anon_sym_requires] = ACTIONS(3931), - [anon_sym_CARET_CARET] = ACTIONS(3933), - [anon_sym_LBRACK_COLON] = ACTIONS(3933), - [sym_this] = ACTIONS(3931), + [STATE(837)] = { + [sym_identifier] = ACTIONS(4391), + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_TILDE] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [anon_sym___extension__] = ACTIONS(4391), + [anon_sym_typedef] = ACTIONS(4391), + [anon_sym_virtual] = ACTIONS(4391), + [anon_sym_extern] = ACTIONS(4391), + [anon_sym___attribute__] = ACTIONS(4391), + [anon_sym___attribute] = ACTIONS(4391), + [anon_sym_using] = ACTIONS(4391), + [anon_sym_COLON_COLON] = ACTIONS(4393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4393), + [anon_sym___declspec] = ACTIONS(4391), + [anon_sym___based] = ACTIONS(4391), + [anon_sym___cdecl] = ACTIONS(4391), + [anon_sym___clrcall] = ACTIONS(4391), + [anon_sym___stdcall] = ACTIONS(4391), + [anon_sym___fastcall] = ACTIONS(4391), + [anon_sym___thiscall] = ACTIONS(4391), + [anon_sym___vectorcall] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_RBRACE] = ACTIONS(4393), + [anon_sym_signed] = ACTIONS(4391), + [anon_sym_unsigned] = ACTIONS(4391), + [anon_sym_long] = ACTIONS(4391), + [anon_sym_short] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_static] = ACTIONS(4391), + [anon_sym_register] = ACTIONS(4391), + [anon_sym_inline] = ACTIONS(4391), + [anon_sym___inline] = ACTIONS(4391), + [anon_sym___inline__] = ACTIONS(4391), + [anon_sym___forceinline] = ACTIONS(4391), + [anon_sym_thread_local] = ACTIONS(4391), + [anon_sym___thread] = ACTIONS(4391), + [anon_sym_const] = ACTIONS(4391), + [anon_sym_constexpr] = ACTIONS(4391), + [anon_sym_volatile] = ACTIONS(4391), + [anon_sym_restrict] = ACTIONS(4391), + [anon_sym___restrict__] = ACTIONS(4391), + [anon_sym__Atomic] = ACTIONS(4391), + [anon_sym__Noreturn] = ACTIONS(4391), + [anon_sym_noreturn] = ACTIONS(4391), + [anon_sym__Nonnull] = ACTIONS(4391), + [anon_sym_mutable] = ACTIONS(4391), + [anon_sym_constinit] = ACTIONS(4391), + [anon_sym_consteval] = ACTIONS(4391), + [anon_sym_alignas] = ACTIONS(4391), + [anon_sym__Alignas] = ACTIONS(4391), + [sym_primitive_type] = ACTIONS(4391), + [anon_sym_enum] = ACTIONS(4391), + [anon_sym_class] = ACTIONS(4391), + [anon_sym_struct] = ACTIONS(4391), + [anon_sym_union] = ACTIONS(4391), + [anon_sym_if] = ACTIONS(4391), + [anon_sym_switch] = ACTIONS(4391), + [anon_sym_case] = ACTIONS(4391), + [anon_sym_default] = ACTIONS(4391), + [anon_sym_while] = ACTIONS(4391), + [anon_sym_do] = ACTIONS(4391), + [anon_sym_for] = ACTIONS(4391), + [anon_sym_return] = ACTIONS(4391), + [anon_sym_break] = ACTIONS(4391), + [anon_sym_continue] = ACTIONS(4391), + [anon_sym_goto] = ACTIONS(4391), + [anon_sym___try] = ACTIONS(4391), + [anon_sym___leave] = ACTIONS(4391), + [anon_sym_not] = ACTIONS(4391), + [anon_sym_compl] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_PLUS_PLUS] = ACTIONS(4393), + [anon_sym_sizeof] = ACTIONS(4391), + [anon_sym___alignof__] = ACTIONS(4391), + [anon_sym___alignof] = ACTIONS(4391), + [anon_sym__alignof] = ACTIONS(4391), + [anon_sym_alignof] = ACTIONS(4391), + [anon_sym__Alignof] = ACTIONS(4391), + [anon_sym_offsetof] = ACTIONS(4391), + [anon_sym__Generic] = ACTIONS(4391), + [anon_sym_typename] = ACTIONS(4391), + [anon_sym_asm] = ACTIONS(4391), + [anon_sym___asm__] = ACTIONS(4391), + [anon_sym___asm] = ACTIONS(4391), + [sym_number_literal] = ACTIONS(4393), + [anon_sym_L_SQUOTE] = ACTIONS(4393), + [anon_sym_u_SQUOTE] = ACTIONS(4393), + [anon_sym_U_SQUOTE] = ACTIONS(4393), + [anon_sym_u8_SQUOTE] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4393), + [anon_sym_L_DQUOTE] = ACTIONS(4393), + [anon_sym_u_DQUOTE] = ACTIONS(4393), + [anon_sym_U_DQUOTE] = ACTIONS(4393), + [anon_sym_u8_DQUOTE] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(4393), + [sym_true] = ACTIONS(4391), + [sym_false] = ACTIONS(4391), + [anon_sym_NULL] = ACTIONS(4391), + [anon_sym_nullptr] = ACTIONS(4391), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4391), + [anon_sym_decltype] = ACTIONS(4391), + [anon_sym_explicit] = ACTIONS(4391), + [anon_sym_export] = ACTIONS(4391), + [anon_sym_import] = ACTIONS(4391), + [anon_sym_template] = ACTIONS(4391), + [anon_sym_operator] = ACTIONS(4391), + [anon_sym_try] = ACTIONS(4391), + [anon_sym_delete] = ACTIONS(4391), + [anon_sym_throw] = ACTIONS(4391), + [anon_sym_namespace] = ACTIONS(4391), + [anon_sym_static_assert] = ACTIONS(4391), + [anon_sym_concept] = ACTIONS(4391), + [anon_sym_co_return] = ACTIONS(4391), + [anon_sym_co_yield] = ACTIONS(4391), + [anon_sym_R_DQUOTE] = ACTIONS(4393), + [anon_sym_LR_DQUOTE] = ACTIONS(4393), + [anon_sym_uR_DQUOTE] = ACTIONS(4393), + [anon_sym_UR_DQUOTE] = ACTIONS(4393), + [anon_sym_u8R_DQUOTE] = ACTIONS(4393), + [anon_sym_co_await] = ACTIONS(4391), + [anon_sym_new] = ACTIONS(4391), + [anon_sym_requires] = ACTIONS(4391), + [anon_sym_CARET_CARET] = ACTIONS(4393), + [anon_sym_LBRACK_COLON] = ACTIONS(4393), + [sym_this] = ACTIONS(4391), }, - [STATE(856)] = { + [STATE(838)] = { + [sym_identifier] = ACTIONS(3686), + [aux_sym_preproc_include_token1] = ACTIONS(3686), + [aux_sym_preproc_def_token1] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3686), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3686), + [sym_preproc_directive] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3688), + [anon_sym_BANG] = ACTIONS(3688), + [anon_sym_TILDE] = ACTIONS(3688), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_AMP_AMP] = ACTIONS(3688), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3688), + [anon_sym___extension__] = ACTIONS(3686), + [anon_sym_typedef] = ACTIONS(3686), + [anon_sym_virtual] = ACTIONS(3686), + [anon_sym_extern] = ACTIONS(3686), + [anon_sym___attribute__] = ACTIONS(3686), + [anon_sym___attribute] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3688), + [anon_sym___declspec] = ACTIONS(3686), + [anon_sym___based] = ACTIONS(3686), + [anon_sym___cdecl] = ACTIONS(3686), + [anon_sym___clrcall] = ACTIONS(3686), + [anon_sym___stdcall] = ACTIONS(3686), + [anon_sym___fastcall] = ACTIONS(3686), + [anon_sym___thiscall] = ACTIONS(3686), + [anon_sym___vectorcall] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3688), + [anon_sym_RBRACE] = ACTIONS(3688), + [anon_sym_signed] = ACTIONS(3686), + [anon_sym_unsigned] = ACTIONS(3686), + [anon_sym_long] = ACTIONS(3686), + [anon_sym_short] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_register] = ACTIONS(3686), + [anon_sym_inline] = ACTIONS(3686), + [anon_sym___inline] = ACTIONS(3686), + [anon_sym___inline__] = ACTIONS(3686), + [anon_sym___forceinline] = ACTIONS(3686), + [anon_sym_thread_local] = ACTIONS(3686), + [anon_sym___thread] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_constexpr] = ACTIONS(3686), + [anon_sym_volatile] = ACTIONS(3686), + [anon_sym_restrict] = ACTIONS(3686), + [anon_sym___restrict__] = ACTIONS(3686), + [anon_sym__Atomic] = ACTIONS(3686), + [anon_sym__Noreturn] = ACTIONS(3686), + [anon_sym_noreturn] = ACTIONS(3686), + [anon_sym__Nonnull] = ACTIONS(3686), + [anon_sym_mutable] = ACTIONS(3686), + [anon_sym_constinit] = ACTIONS(3686), + [anon_sym_consteval] = ACTIONS(3686), + [anon_sym_alignas] = ACTIONS(3686), + [anon_sym__Alignas] = ACTIONS(3686), + [sym_primitive_type] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_struct] = ACTIONS(3686), + [anon_sym_union] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_case] = ACTIONS(3686), + [anon_sym_default] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_goto] = ACTIONS(3686), + [anon_sym___try] = ACTIONS(3686), + [anon_sym___leave] = ACTIONS(3686), + [anon_sym_not] = ACTIONS(3686), + [anon_sym_compl] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3688), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_sizeof] = ACTIONS(3686), + [anon_sym___alignof__] = ACTIONS(3686), + [anon_sym___alignof] = ACTIONS(3686), + [anon_sym__alignof] = ACTIONS(3686), + [anon_sym_alignof] = ACTIONS(3686), + [anon_sym__Alignof] = ACTIONS(3686), + [anon_sym_offsetof] = ACTIONS(3686), + [anon_sym__Generic] = ACTIONS(3686), + [anon_sym_typename] = ACTIONS(3686), + [anon_sym_asm] = ACTIONS(3686), + [anon_sym___asm__] = ACTIONS(3686), + [anon_sym___asm] = ACTIONS(3686), + [sym_number_literal] = ACTIONS(3688), + [anon_sym_L_SQUOTE] = ACTIONS(3688), + [anon_sym_u_SQUOTE] = ACTIONS(3688), + [anon_sym_U_SQUOTE] = ACTIONS(3688), + [anon_sym_u8_SQUOTE] = ACTIONS(3688), + [anon_sym_SQUOTE] = ACTIONS(3688), + [anon_sym_L_DQUOTE] = ACTIONS(3688), + [anon_sym_u_DQUOTE] = ACTIONS(3688), + [anon_sym_U_DQUOTE] = ACTIONS(3688), + [anon_sym_u8_DQUOTE] = ACTIONS(3688), + [anon_sym_DQUOTE] = ACTIONS(3688), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [anon_sym_NULL] = ACTIONS(3686), + [anon_sym_nullptr] = ACTIONS(3686), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3686), + [anon_sym_decltype] = ACTIONS(3686), + [anon_sym_explicit] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_template] = ACTIONS(3686), + [anon_sym_operator] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_static_assert] = ACTIONS(3686), + [anon_sym_concept] = ACTIONS(3686), + [anon_sym_co_return] = ACTIONS(3686), + [anon_sym_co_yield] = ACTIONS(3686), + [anon_sym_R_DQUOTE] = ACTIONS(3688), + [anon_sym_LR_DQUOTE] = ACTIONS(3688), + [anon_sym_uR_DQUOTE] = ACTIONS(3688), + [anon_sym_UR_DQUOTE] = ACTIONS(3688), + [anon_sym_u8R_DQUOTE] = ACTIONS(3688), + [anon_sym_co_await] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_requires] = ACTIONS(3686), + [anon_sym_CARET_CARET] = ACTIONS(3688), + [anon_sym_LBRACK_COLON] = ACTIONS(3688), + [sym_this] = ACTIONS(3686), + }, + [STATE(839)] = { + [sym_identifier] = ACTIONS(4122), + [aux_sym_preproc_include_token1] = ACTIONS(4122), + [aux_sym_preproc_def_token1] = ACTIONS(4122), + [aux_sym_preproc_if_token1] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4122), + [sym_preproc_directive] = ACTIONS(4122), + [anon_sym_LPAREN2] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4124), + [anon_sym_TILDE] = ACTIONS(4124), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym___extension__] = ACTIONS(4122), + [anon_sym_typedef] = ACTIONS(4122), + [anon_sym_virtual] = ACTIONS(4122), + [anon_sym_extern] = ACTIONS(4122), + [anon_sym___attribute__] = ACTIONS(4122), + [anon_sym___attribute] = ACTIONS(4122), + [anon_sym_using] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4124), + [anon_sym___declspec] = ACTIONS(4122), + [anon_sym___based] = ACTIONS(4122), + [anon_sym___cdecl] = ACTIONS(4122), + [anon_sym___clrcall] = ACTIONS(4122), + [anon_sym___stdcall] = ACTIONS(4122), + [anon_sym___fastcall] = ACTIONS(4122), + [anon_sym___thiscall] = ACTIONS(4122), + [anon_sym___vectorcall] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_RBRACE] = ACTIONS(4124), + [anon_sym_signed] = ACTIONS(4122), + [anon_sym_unsigned] = ACTIONS(4122), + [anon_sym_long] = ACTIONS(4122), + [anon_sym_short] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_static] = ACTIONS(4122), + [anon_sym_register] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym___inline] = ACTIONS(4122), + [anon_sym___inline__] = ACTIONS(4122), + [anon_sym___forceinline] = ACTIONS(4122), + [anon_sym_thread_local] = ACTIONS(4122), + [anon_sym___thread] = ACTIONS(4122), + [anon_sym_const] = ACTIONS(4122), + [anon_sym_constexpr] = ACTIONS(4122), + [anon_sym_volatile] = ACTIONS(4122), + [anon_sym_restrict] = ACTIONS(4122), + [anon_sym___restrict__] = ACTIONS(4122), + [anon_sym__Atomic] = ACTIONS(4122), + [anon_sym__Noreturn] = ACTIONS(4122), + [anon_sym_noreturn] = ACTIONS(4122), + [anon_sym__Nonnull] = ACTIONS(4122), + [anon_sym_mutable] = ACTIONS(4122), + [anon_sym_constinit] = ACTIONS(4122), + [anon_sym_consteval] = ACTIONS(4122), + [anon_sym_alignas] = ACTIONS(4122), + [anon_sym__Alignas] = ACTIONS(4122), + [sym_primitive_type] = ACTIONS(4122), + [anon_sym_enum] = ACTIONS(4122), + [anon_sym_class] = ACTIONS(4122), + [anon_sym_struct] = ACTIONS(4122), + [anon_sym_union] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4122), + [anon_sym_switch] = ACTIONS(4122), + [anon_sym_case] = ACTIONS(4122), + [anon_sym_default] = ACTIONS(4122), + [anon_sym_while] = ACTIONS(4122), + [anon_sym_do] = ACTIONS(4122), + [anon_sym_for] = ACTIONS(4122), + [anon_sym_return] = ACTIONS(4122), + [anon_sym_break] = ACTIONS(4122), + [anon_sym_continue] = ACTIONS(4122), + [anon_sym_goto] = ACTIONS(4122), + [anon_sym___try] = ACTIONS(4122), + [anon_sym___leave] = ACTIONS(4122), + [anon_sym_not] = ACTIONS(4122), + [anon_sym_compl] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_sizeof] = ACTIONS(4122), + [anon_sym___alignof__] = ACTIONS(4122), + [anon_sym___alignof] = ACTIONS(4122), + [anon_sym__alignof] = ACTIONS(4122), + [anon_sym_alignof] = ACTIONS(4122), + [anon_sym__Alignof] = ACTIONS(4122), + [anon_sym_offsetof] = ACTIONS(4122), + [anon_sym__Generic] = ACTIONS(4122), + [anon_sym_typename] = ACTIONS(4122), + [anon_sym_asm] = ACTIONS(4122), + [anon_sym___asm__] = ACTIONS(4122), + [anon_sym___asm] = ACTIONS(4122), + [sym_number_literal] = ACTIONS(4124), + [anon_sym_L_SQUOTE] = ACTIONS(4124), + [anon_sym_u_SQUOTE] = ACTIONS(4124), + [anon_sym_U_SQUOTE] = ACTIONS(4124), + [anon_sym_u8_SQUOTE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(4124), + [anon_sym_L_DQUOTE] = ACTIONS(4124), + [anon_sym_u_DQUOTE] = ACTIONS(4124), + [anon_sym_U_DQUOTE] = ACTIONS(4124), + [anon_sym_u8_DQUOTE] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4124), + [sym_true] = ACTIONS(4122), + [sym_false] = ACTIONS(4122), + [anon_sym_NULL] = ACTIONS(4122), + [anon_sym_nullptr] = ACTIONS(4122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4122), + [anon_sym_decltype] = ACTIONS(4122), + [anon_sym_explicit] = ACTIONS(4122), + [anon_sym_export] = ACTIONS(4122), + [anon_sym_import] = ACTIONS(4122), + [anon_sym_template] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_try] = ACTIONS(4122), + [anon_sym_delete] = ACTIONS(4122), + [anon_sym_throw] = ACTIONS(4122), + [anon_sym_namespace] = ACTIONS(4122), + [anon_sym_static_assert] = ACTIONS(4122), + [anon_sym_concept] = ACTIONS(4122), + [anon_sym_co_return] = ACTIONS(4122), + [anon_sym_co_yield] = ACTIONS(4122), + [anon_sym_R_DQUOTE] = ACTIONS(4124), + [anon_sym_LR_DQUOTE] = ACTIONS(4124), + [anon_sym_uR_DQUOTE] = ACTIONS(4124), + [anon_sym_UR_DQUOTE] = ACTIONS(4124), + [anon_sym_u8R_DQUOTE] = ACTIONS(4124), + [anon_sym_co_await] = ACTIONS(4122), + [anon_sym_new] = ACTIONS(4122), + [anon_sym_requires] = ACTIONS(4122), + [anon_sym_CARET_CARET] = ACTIONS(4124), + [anon_sym_LBRACK_COLON] = ACTIONS(4124), + [sym_this] = ACTIONS(4122), + }, + [STATE(840)] = { [sym_identifier] = ACTIONS(4096), [aux_sym_preproc_include_token1] = ACTIONS(4096), [aux_sym_preproc_def_token1] = ACTIONS(4096), @@ -181979,1920 +179740,6383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4098), [sym_this] = ACTIONS(4096), }, + [STATE(841)] = { + [sym_identifier] = ACTIONS(3746), + [aux_sym_preproc_include_token1] = ACTIONS(3746), + [aux_sym_preproc_def_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token1] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3746), + [sym_preproc_directive] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_TILDE] = ACTIONS(3748), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_STAR] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym___extension__] = ACTIONS(3746), + [anon_sym_typedef] = ACTIONS(3746), + [anon_sym_virtual] = ACTIONS(3746), + [anon_sym_extern] = ACTIONS(3746), + [anon_sym___attribute__] = ACTIONS(3746), + [anon_sym___attribute] = ACTIONS(3746), + [anon_sym_using] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3748), + [anon_sym___declspec] = ACTIONS(3746), + [anon_sym___based] = ACTIONS(3746), + [anon_sym___cdecl] = ACTIONS(3746), + [anon_sym___clrcall] = ACTIONS(3746), + [anon_sym___stdcall] = ACTIONS(3746), + [anon_sym___fastcall] = ACTIONS(3746), + [anon_sym___thiscall] = ACTIONS(3746), + [anon_sym___vectorcall] = ACTIONS(3746), + [anon_sym_LBRACE] = ACTIONS(3748), + [anon_sym_RBRACE] = ACTIONS(3748), + [anon_sym_signed] = ACTIONS(3746), + [anon_sym_unsigned] = ACTIONS(3746), + [anon_sym_long] = ACTIONS(3746), + [anon_sym_short] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_static] = ACTIONS(3746), + [anon_sym_register] = ACTIONS(3746), + [anon_sym_inline] = ACTIONS(3746), + [anon_sym___inline] = ACTIONS(3746), + [anon_sym___inline__] = ACTIONS(3746), + [anon_sym___forceinline] = ACTIONS(3746), + [anon_sym_thread_local] = ACTIONS(3746), + [anon_sym___thread] = ACTIONS(3746), + [anon_sym_const] = ACTIONS(3746), + [anon_sym_constexpr] = ACTIONS(3746), + [anon_sym_volatile] = ACTIONS(3746), + [anon_sym_restrict] = ACTIONS(3746), + [anon_sym___restrict__] = ACTIONS(3746), + [anon_sym__Atomic] = ACTIONS(3746), + [anon_sym__Noreturn] = ACTIONS(3746), + [anon_sym_noreturn] = ACTIONS(3746), + [anon_sym__Nonnull] = ACTIONS(3746), + [anon_sym_mutable] = ACTIONS(3746), + [anon_sym_constinit] = ACTIONS(3746), + [anon_sym_consteval] = ACTIONS(3746), + [anon_sym_alignas] = ACTIONS(3746), + [anon_sym__Alignas] = ACTIONS(3746), + [sym_primitive_type] = ACTIONS(3746), + [anon_sym_enum] = ACTIONS(3746), + [anon_sym_class] = ACTIONS(3746), + [anon_sym_struct] = ACTIONS(3746), + [anon_sym_union] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_switch] = ACTIONS(3746), + [anon_sym_case] = ACTIONS(3746), + [anon_sym_default] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_break] = ACTIONS(3746), + [anon_sym_continue] = ACTIONS(3746), + [anon_sym_goto] = ACTIONS(3746), + [anon_sym___try] = ACTIONS(3746), + [anon_sym___leave] = ACTIONS(3746), + [anon_sym_not] = ACTIONS(3746), + [anon_sym_compl] = ACTIONS(3746), + [anon_sym_DASH_DASH] = ACTIONS(3748), + [anon_sym_PLUS_PLUS] = ACTIONS(3748), + [anon_sym_sizeof] = ACTIONS(3746), + [anon_sym___alignof__] = ACTIONS(3746), + [anon_sym___alignof] = ACTIONS(3746), + [anon_sym__alignof] = ACTIONS(3746), + [anon_sym_alignof] = ACTIONS(3746), + [anon_sym__Alignof] = ACTIONS(3746), + [anon_sym_offsetof] = ACTIONS(3746), + [anon_sym__Generic] = ACTIONS(3746), + [anon_sym_typename] = ACTIONS(3746), + [anon_sym_asm] = ACTIONS(3746), + [anon_sym___asm__] = ACTIONS(3746), + [anon_sym___asm] = ACTIONS(3746), + [sym_number_literal] = ACTIONS(3748), + [anon_sym_L_SQUOTE] = ACTIONS(3748), + [anon_sym_u_SQUOTE] = ACTIONS(3748), + [anon_sym_U_SQUOTE] = ACTIONS(3748), + [anon_sym_u8_SQUOTE] = ACTIONS(3748), + [anon_sym_SQUOTE] = ACTIONS(3748), + [anon_sym_L_DQUOTE] = ACTIONS(3748), + [anon_sym_u_DQUOTE] = ACTIONS(3748), + [anon_sym_U_DQUOTE] = ACTIONS(3748), + [anon_sym_u8_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [sym_true] = ACTIONS(3746), + [sym_false] = ACTIONS(3746), + [anon_sym_NULL] = ACTIONS(3746), + [anon_sym_nullptr] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3746), + [anon_sym_decltype] = ACTIONS(3746), + [anon_sym_explicit] = ACTIONS(3746), + [anon_sym_export] = ACTIONS(3746), + [anon_sym_import] = ACTIONS(3746), + [anon_sym_template] = ACTIONS(3746), + [anon_sym_operator] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_delete] = ACTIONS(3746), + [anon_sym_throw] = ACTIONS(3746), + [anon_sym_namespace] = ACTIONS(3746), + [anon_sym_static_assert] = ACTIONS(3746), + [anon_sym_concept] = ACTIONS(3746), + [anon_sym_co_return] = ACTIONS(3746), + [anon_sym_co_yield] = ACTIONS(3746), + [anon_sym_R_DQUOTE] = ACTIONS(3748), + [anon_sym_LR_DQUOTE] = ACTIONS(3748), + [anon_sym_uR_DQUOTE] = ACTIONS(3748), + [anon_sym_UR_DQUOTE] = ACTIONS(3748), + [anon_sym_u8R_DQUOTE] = ACTIONS(3748), + [anon_sym_co_await] = ACTIONS(3746), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_requires] = ACTIONS(3746), + [anon_sym_CARET_CARET] = ACTIONS(3748), + [anon_sym_LBRACK_COLON] = ACTIONS(3748), + [sym_this] = ACTIONS(3746), + }, + [STATE(842)] = { + [sym_identifier] = ACTIONS(4126), + [aux_sym_preproc_include_token1] = ACTIONS(4126), + [aux_sym_preproc_def_token1] = ACTIONS(4126), + [aux_sym_preproc_if_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4126), + [sym_preproc_directive] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4128), + [anon_sym_BANG] = ACTIONS(4128), + [anon_sym_TILDE] = ACTIONS(4128), + [anon_sym_DASH] = ACTIONS(4126), + [anon_sym_PLUS] = ACTIONS(4126), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_AMP_AMP] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(4128), + [anon_sym___extension__] = ACTIONS(4126), + [anon_sym_typedef] = ACTIONS(4126), + [anon_sym_virtual] = ACTIONS(4126), + [anon_sym_extern] = ACTIONS(4126), + [anon_sym___attribute__] = ACTIONS(4126), + [anon_sym___attribute] = ACTIONS(4126), + [anon_sym_using] = ACTIONS(4126), + [anon_sym_COLON_COLON] = ACTIONS(4128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4128), + [anon_sym___declspec] = ACTIONS(4126), + [anon_sym___based] = ACTIONS(4126), + [anon_sym___cdecl] = ACTIONS(4126), + [anon_sym___clrcall] = ACTIONS(4126), + [anon_sym___stdcall] = ACTIONS(4126), + [anon_sym___fastcall] = ACTIONS(4126), + [anon_sym___thiscall] = ACTIONS(4126), + [anon_sym___vectorcall] = ACTIONS(4126), + [anon_sym_LBRACE] = ACTIONS(4128), + [anon_sym_RBRACE] = ACTIONS(4128), + [anon_sym_signed] = ACTIONS(4126), + [anon_sym_unsigned] = ACTIONS(4126), + [anon_sym_long] = ACTIONS(4126), + [anon_sym_short] = ACTIONS(4126), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_static] = ACTIONS(4126), + [anon_sym_register] = ACTIONS(4126), + [anon_sym_inline] = ACTIONS(4126), + [anon_sym___inline] = ACTIONS(4126), + [anon_sym___inline__] = ACTIONS(4126), + [anon_sym___forceinline] = ACTIONS(4126), + [anon_sym_thread_local] = ACTIONS(4126), + [anon_sym___thread] = ACTIONS(4126), + [anon_sym_const] = ACTIONS(4126), + [anon_sym_constexpr] = ACTIONS(4126), + [anon_sym_volatile] = ACTIONS(4126), + [anon_sym_restrict] = ACTIONS(4126), + [anon_sym___restrict__] = ACTIONS(4126), + [anon_sym__Atomic] = ACTIONS(4126), + [anon_sym__Noreturn] = ACTIONS(4126), + [anon_sym_noreturn] = ACTIONS(4126), + [anon_sym__Nonnull] = ACTIONS(4126), + [anon_sym_mutable] = ACTIONS(4126), + [anon_sym_constinit] = ACTIONS(4126), + [anon_sym_consteval] = ACTIONS(4126), + [anon_sym_alignas] = ACTIONS(4126), + [anon_sym__Alignas] = ACTIONS(4126), + [sym_primitive_type] = ACTIONS(4126), + [anon_sym_enum] = ACTIONS(4126), + [anon_sym_class] = ACTIONS(4126), + [anon_sym_struct] = ACTIONS(4126), + [anon_sym_union] = ACTIONS(4126), + [anon_sym_if] = ACTIONS(4126), + [anon_sym_switch] = ACTIONS(4126), + [anon_sym_case] = ACTIONS(4126), + [anon_sym_default] = ACTIONS(4126), + [anon_sym_while] = ACTIONS(4126), + [anon_sym_do] = ACTIONS(4126), + [anon_sym_for] = ACTIONS(4126), + [anon_sym_return] = ACTIONS(4126), + [anon_sym_break] = ACTIONS(4126), + [anon_sym_continue] = ACTIONS(4126), + [anon_sym_goto] = ACTIONS(4126), + [anon_sym___try] = ACTIONS(4126), + [anon_sym___leave] = ACTIONS(4126), + [anon_sym_not] = ACTIONS(4126), + [anon_sym_compl] = ACTIONS(4126), + [anon_sym_DASH_DASH] = ACTIONS(4128), + [anon_sym_PLUS_PLUS] = ACTIONS(4128), + [anon_sym_sizeof] = ACTIONS(4126), + [anon_sym___alignof__] = ACTIONS(4126), + [anon_sym___alignof] = ACTIONS(4126), + [anon_sym__alignof] = ACTIONS(4126), + [anon_sym_alignof] = ACTIONS(4126), + [anon_sym__Alignof] = ACTIONS(4126), + [anon_sym_offsetof] = ACTIONS(4126), + [anon_sym__Generic] = ACTIONS(4126), + [anon_sym_typename] = ACTIONS(4126), + [anon_sym_asm] = ACTIONS(4126), + [anon_sym___asm__] = ACTIONS(4126), + [anon_sym___asm] = ACTIONS(4126), + [sym_number_literal] = ACTIONS(4128), + [anon_sym_L_SQUOTE] = ACTIONS(4128), + [anon_sym_u_SQUOTE] = ACTIONS(4128), + [anon_sym_U_SQUOTE] = ACTIONS(4128), + [anon_sym_u8_SQUOTE] = ACTIONS(4128), + [anon_sym_SQUOTE] = ACTIONS(4128), + [anon_sym_L_DQUOTE] = ACTIONS(4128), + [anon_sym_u_DQUOTE] = ACTIONS(4128), + [anon_sym_U_DQUOTE] = ACTIONS(4128), + [anon_sym_u8_DQUOTE] = ACTIONS(4128), + [anon_sym_DQUOTE] = ACTIONS(4128), + [sym_true] = ACTIONS(4126), + [sym_false] = ACTIONS(4126), + [anon_sym_NULL] = ACTIONS(4126), + [anon_sym_nullptr] = ACTIONS(4126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4126), + [anon_sym_decltype] = ACTIONS(4126), + [anon_sym_explicit] = ACTIONS(4126), + [anon_sym_export] = ACTIONS(4126), + [anon_sym_import] = ACTIONS(4126), + [anon_sym_template] = ACTIONS(4126), + [anon_sym_operator] = ACTIONS(4126), + [anon_sym_try] = ACTIONS(4126), + [anon_sym_delete] = ACTIONS(4126), + [anon_sym_throw] = ACTIONS(4126), + [anon_sym_namespace] = ACTIONS(4126), + [anon_sym_static_assert] = ACTIONS(4126), + [anon_sym_concept] = ACTIONS(4126), + [anon_sym_co_return] = ACTIONS(4126), + [anon_sym_co_yield] = ACTIONS(4126), + [anon_sym_R_DQUOTE] = ACTIONS(4128), + [anon_sym_LR_DQUOTE] = ACTIONS(4128), + [anon_sym_uR_DQUOTE] = ACTIONS(4128), + [anon_sym_UR_DQUOTE] = ACTIONS(4128), + [anon_sym_u8R_DQUOTE] = ACTIONS(4128), + [anon_sym_co_await] = ACTIONS(4126), + [anon_sym_new] = ACTIONS(4126), + [anon_sym_requires] = ACTIONS(4126), + [anon_sym_CARET_CARET] = ACTIONS(4128), + [anon_sym_LBRACK_COLON] = ACTIONS(4128), + [sym_this] = ACTIONS(4126), + }, + [STATE(843)] = { + [sym_identifier] = ACTIONS(4118), + [aux_sym_preproc_include_token1] = ACTIONS(4118), + [aux_sym_preproc_def_token1] = ACTIONS(4118), + [aux_sym_preproc_if_token1] = ACTIONS(4118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4118), + [sym_preproc_directive] = ACTIONS(4118), + [anon_sym_LPAREN2] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_TILDE] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_AMP_AMP] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym___extension__] = ACTIONS(4118), + [anon_sym_typedef] = ACTIONS(4118), + [anon_sym_virtual] = ACTIONS(4118), + [anon_sym_extern] = ACTIONS(4118), + [anon_sym___attribute__] = ACTIONS(4118), + [anon_sym___attribute] = ACTIONS(4118), + [anon_sym_using] = ACTIONS(4118), + [anon_sym_COLON_COLON] = ACTIONS(4120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4120), + [anon_sym___declspec] = ACTIONS(4118), + [anon_sym___based] = ACTIONS(4118), + [anon_sym___cdecl] = ACTIONS(4118), + [anon_sym___clrcall] = ACTIONS(4118), + [anon_sym___stdcall] = ACTIONS(4118), + [anon_sym___fastcall] = ACTIONS(4118), + [anon_sym___thiscall] = ACTIONS(4118), + [anon_sym___vectorcall] = ACTIONS(4118), + [anon_sym_LBRACE] = ACTIONS(4120), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_signed] = ACTIONS(4118), + [anon_sym_unsigned] = ACTIONS(4118), + [anon_sym_long] = ACTIONS(4118), + [anon_sym_short] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_static] = ACTIONS(4118), + [anon_sym_register] = ACTIONS(4118), + [anon_sym_inline] = ACTIONS(4118), + [anon_sym___inline] = ACTIONS(4118), + [anon_sym___inline__] = ACTIONS(4118), + [anon_sym___forceinline] = ACTIONS(4118), + [anon_sym_thread_local] = ACTIONS(4118), + [anon_sym___thread] = ACTIONS(4118), + [anon_sym_const] = ACTIONS(4118), + [anon_sym_constexpr] = ACTIONS(4118), + [anon_sym_volatile] = ACTIONS(4118), + [anon_sym_restrict] = ACTIONS(4118), + [anon_sym___restrict__] = ACTIONS(4118), + [anon_sym__Atomic] = ACTIONS(4118), + [anon_sym__Noreturn] = ACTIONS(4118), + [anon_sym_noreturn] = ACTIONS(4118), + [anon_sym__Nonnull] = ACTIONS(4118), + [anon_sym_mutable] = ACTIONS(4118), + [anon_sym_constinit] = ACTIONS(4118), + [anon_sym_consteval] = ACTIONS(4118), + [anon_sym_alignas] = ACTIONS(4118), + [anon_sym__Alignas] = ACTIONS(4118), + [sym_primitive_type] = ACTIONS(4118), + [anon_sym_enum] = ACTIONS(4118), + [anon_sym_class] = ACTIONS(4118), + [anon_sym_struct] = ACTIONS(4118), + [anon_sym_union] = ACTIONS(4118), + [anon_sym_if] = ACTIONS(4118), + [anon_sym_switch] = ACTIONS(4118), + [anon_sym_case] = ACTIONS(4118), + [anon_sym_default] = ACTIONS(4118), + [anon_sym_while] = ACTIONS(4118), + [anon_sym_do] = ACTIONS(4118), + [anon_sym_for] = ACTIONS(4118), + [anon_sym_return] = ACTIONS(4118), + [anon_sym_break] = ACTIONS(4118), + [anon_sym_continue] = ACTIONS(4118), + [anon_sym_goto] = ACTIONS(4118), + [anon_sym___try] = ACTIONS(4118), + [anon_sym___leave] = ACTIONS(4118), + [anon_sym_not] = ACTIONS(4118), + [anon_sym_compl] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_PLUS_PLUS] = ACTIONS(4120), + [anon_sym_sizeof] = ACTIONS(4118), + [anon_sym___alignof__] = ACTIONS(4118), + [anon_sym___alignof] = ACTIONS(4118), + [anon_sym__alignof] = ACTIONS(4118), + [anon_sym_alignof] = ACTIONS(4118), + [anon_sym__Alignof] = ACTIONS(4118), + [anon_sym_offsetof] = ACTIONS(4118), + [anon_sym__Generic] = ACTIONS(4118), + [anon_sym_typename] = ACTIONS(4118), + [anon_sym_asm] = ACTIONS(4118), + [anon_sym___asm__] = ACTIONS(4118), + [anon_sym___asm] = ACTIONS(4118), + [sym_number_literal] = ACTIONS(4120), + [anon_sym_L_SQUOTE] = ACTIONS(4120), + [anon_sym_u_SQUOTE] = ACTIONS(4120), + [anon_sym_U_SQUOTE] = ACTIONS(4120), + [anon_sym_u8_SQUOTE] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4120), + [anon_sym_L_DQUOTE] = ACTIONS(4120), + [anon_sym_u_DQUOTE] = ACTIONS(4120), + [anon_sym_U_DQUOTE] = ACTIONS(4120), + [anon_sym_u8_DQUOTE] = ACTIONS(4120), + [anon_sym_DQUOTE] = ACTIONS(4120), + [sym_true] = ACTIONS(4118), + [sym_false] = ACTIONS(4118), + [anon_sym_NULL] = ACTIONS(4118), + [anon_sym_nullptr] = ACTIONS(4118), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4118), + [anon_sym_decltype] = ACTIONS(4118), + [anon_sym_explicit] = ACTIONS(4118), + [anon_sym_export] = ACTIONS(4118), + [anon_sym_import] = ACTIONS(4118), + [anon_sym_template] = ACTIONS(4118), + [anon_sym_operator] = ACTIONS(4118), + [anon_sym_try] = ACTIONS(4118), + [anon_sym_delete] = ACTIONS(4118), + [anon_sym_throw] = ACTIONS(4118), + [anon_sym_namespace] = ACTIONS(4118), + [anon_sym_static_assert] = ACTIONS(4118), + [anon_sym_concept] = ACTIONS(4118), + [anon_sym_co_return] = ACTIONS(4118), + [anon_sym_co_yield] = ACTIONS(4118), + [anon_sym_R_DQUOTE] = ACTIONS(4120), + [anon_sym_LR_DQUOTE] = ACTIONS(4120), + [anon_sym_uR_DQUOTE] = ACTIONS(4120), + [anon_sym_UR_DQUOTE] = ACTIONS(4120), + [anon_sym_u8R_DQUOTE] = ACTIONS(4120), + [anon_sym_co_await] = ACTIONS(4118), + [anon_sym_new] = ACTIONS(4118), + [anon_sym_requires] = ACTIONS(4118), + [anon_sym_CARET_CARET] = ACTIONS(4120), + [anon_sym_LBRACK_COLON] = ACTIONS(4120), + [sym_this] = ACTIONS(4118), + }, + [STATE(844)] = { + [sym_identifier] = ACTIONS(3881), + [aux_sym_preproc_include_token1] = ACTIONS(3881), + [aux_sym_preproc_def_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token1] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3881), + [sym_preproc_directive] = ACTIONS(3881), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_BANG] = ACTIONS(3883), + [anon_sym_TILDE] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_SEMI] = ACTIONS(3883), + [anon_sym___extension__] = ACTIONS(3881), + [anon_sym_typedef] = ACTIONS(3881), + [anon_sym_virtual] = ACTIONS(3881), + [anon_sym_extern] = ACTIONS(3881), + [anon_sym___attribute__] = ACTIONS(3881), + [anon_sym___attribute] = ACTIONS(3881), + [anon_sym_using] = ACTIONS(3881), + [anon_sym_COLON_COLON] = ACTIONS(3883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3883), + [anon_sym___declspec] = ACTIONS(3881), + [anon_sym___based] = ACTIONS(3881), + [anon_sym___cdecl] = ACTIONS(3881), + [anon_sym___clrcall] = ACTIONS(3881), + [anon_sym___stdcall] = ACTIONS(3881), + [anon_sym___fastcall] = ACTIONS(3881), + [anon_sym___thiscall] = ACTIONS(3881), + [anon_sym___vectorcall] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3883), + [anon_sym_RBRACE] = ACTIONS(3883), + [anon_sym_signed] = ACTIONS(3881), + [anon_sym_unsigned] = ACTIONS(3881), + [anon_sym_long] = ACTIONS(3881), + [anon_sym_short] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_static] = ACTIONS(3881), + [anon_sym_register] = ACTIONS(3881), + [anon_sym_inline] = ACTIONS(3881), + [anon_sym___inline] = ACTIONS(3881), + [anon_sym___inline__] = ACTIONS(3881), + [anon_sym___forceinline] = ACTIONS(3881), + [anon_sym_thread_local] = ACTIONS(3881), + [anon_sym___thread] = ACTIONS(3881), + [anon_sym_const] = ACTIONS(3881), + [anon_sym_constexpr] = ACTIONS(3881), + [anon_sym_volatile] = ACTIONS(3881), + [anon_sym_restrict] = ACTIONS(3881), + [anon_sym___restrict__] = ACTIONS(3881), + [anon_sym__Atomic] = ACTIONS(3881), + [anon_sym__Noreturn] = ACTIONS(3881), + [anon_sym_noreturn] = ACTIONS(3881), + [anon_sym__Nonnull] = ACTIONS(3881), + [anon_sym_mutable] = ACTIONS(3881), + [anon_sym_constinit] = ACTIONS(3881), + [anon_sym_consteval] = ACTIONS(3881), + [anon_sym_alignas] = ACTIONS(3881), + [anon_sym__Alignas] = ACTIONS(3881), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_enum] = ACTIONS(3881), + [anon_sym_class] = ACTIONS(3881), + [anon_sym_struct] = ACTIONS(3881), + [anon_sym_union] = ACTIONS(3881), + [anon_sym_if] = ACTIONS(3881), + [anon_sym_switch] = ACTIONS(3881), + [anon_sym_case] = ACTIONS(3881), + [anon_sym_default] = ACTIONS(3881), + [anon_sym_while] = ACTIONS(3881), + [anon_sym_do] = ACTIONS(3881), + [anon_sym_for] = ACTIONS(3881), + [anon_sym_return] = ACTIONS(3881), + [anon_sym_break] = ACTIONS(3881), + [anon_sym_continue] = ACTIONS(3881), + [anon_sym_goto] = ACTIONS(3881), + [anon_sym___try] = ACTIONS(3881), + [anon_sym___leave] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3881), + [anon_sym_compl] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(3883), + [anon_sym_PLUS_PLUS] = ACTIONS(3883), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(3881), + [anon_sym___alignof] = ACTIONS(3881), + [anon_sym__alignof] = ACTIONS(3881), + [anon_sym_alignof] = ACTIONS(3881), + [anon_sym__Alignof] = ACTIONS(3881), + [anon_sym_offsetof] = ACTIONS(3881), + [anon_sym__Generic] = ACTIONS(3881), + [anon_sym_typename] = ACTIONS(3881), + [anon_sym_asm] = ACTIONS(3881), + [anon_sym___asm__] = ACTIONS(3881), + [anon_sym___asm] = ACTIONS(3881), + [sym_number_literal] = ACTIONS(3883), + [anon_sym_L_SQUOTE] = ACTIONS(3883), + [anon_sym_u_SQUOTE] = ACTIONS(3883), + [anon_sym_U_SQUOTE] = ACTIONS(3883), + [anon_sym_u8_SQUOTE] = ACTIONS(3883), + [anon_sym_SQUOTE] = ACTIONS(3883), + [anon_sym_L_DQUOTE] = ACTIONS(3883), + [anon_sym_u_DQUOTE] = ACTIONS(3883), + [anon_sym_U_DQUOTE] = ACTIONS(3883), + [anon_sym_u8_DQUOTE] = ACTIONS(3883), + [anon_sym_DQUOTE] = ACTIONS(3883), + [sym_true] = ACTIONS(3881), + [sym_false] = ACTIONS(3881), + [anon_sym_NULL] = ACTIONS(3881), + [anon_sym_nullptr] = ACTIONS(3881), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3881), + [anon_sym_decltype] = ACTIONS(3881), + [anon_sym_explicit] = ACTIONS(3881), + [anon_sym_export] = ACTIONS(3881), + [anon_sym_import] = ACTIONS(3881), + [anon_sym_template] = ACTIONS(3881), + [anon_sym_operator] = ACTIONS(3881), + [anon_sym_try] = ACTIONS(3881), + [anon_sym_delete] = ACTIONS(3881), + [anon_sym_throw] = ACTIONS(3881), + [anon_sym_namespace] = ACTIONS(3881), + [anon_sym_static_assert] = ACTIONS(3881), + [anon_sym_concept] = ACTIONS(3881), + [anon_sym_co_return] = ACTIONS(3881), + [anon_sym_co_yield] = ACTIONS(3881), + [anon_sym_R_DQUOTE] = ACTIONS(3883), + [anon_sym_LR_DQUOTE] = ACTIONS(3883), + [anon_sym_uR_DQUOTE] = ACTIONS(3883), + [anon_sym_UR_DQUOTE] = ACTIONS(3883), + [anon_sym_u8R_DQUOTE] = ACTIONS(3883), + [anon_sym_co_await] = ACTIONS(3881), + [anon_sym_new] = ACTIONS(3881), + [anon_sym_requires] = ACTIONS(3881), + [anon_sym_CARET_CARET] = ACTIONS(3883), + [anon_sym_LBRACK_COLON] = ACTIONS(3883), + [sym_this] = ACTIONS(3881), + }, + [STATE(845)] = { + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_include_token1] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym___cdecl] = ACTIONS(3742), + [anon_sym___clrcall] = ACTIONS(3742), + [anon_sym___stdcall] = ACTIONS(3742), + [anon_sym___fastcall] = ACTIONS(3742), + [anon_sym___thiscall] = ACTIONS(3742), + [anon_sym___vectorcall] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_RBRACE] = ACTIONS(3744), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_switch] = ACTIONS(3742), + [anon_sym_case] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_goto] = ACTIONS(3742), + [anon_sym___try] = ACTIONS(3742), + [anon_sym___leave] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(3742), + [anon_sym_compl] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3742), + [anon_sym___alignof__] = ACTIONS(3742), + [anon_sym___alignof] = ACTIONS(3742), + [anon_sym__alignof] = ACTIONS(3742), + [anon_sym_alignof] = ACTIONS(3742), + [anon_sym__Alignof] = ACTIONS(3742), + [anon_sym_offsetof] = ACTIONS(3742), + [anon_sym__Generic] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [anon_sym_asm] = ACTIONS(3742), + [anon_sym___asm__] = ACTIONS(3742), + [anon_sym___asm] = ACTIONS(3742), + [sym_number_literal] = ACTIONS(3744), + [anon_sym_L_SQUOTE] = ACTIONS(3744), + [anon_sym_u_SQUOTE] = ACTIONS(3744), + [anon_sym_U_SQUOTE] = ACTIONS(3744), + [anon_sym_u8_SQUOTE] = ACTIONS(3744), + [anon_sym_SQUOTE] = ACTIONS(3744), + [anon_sym_L_DQUOTE] = ACTIONS(3744), + [anon_sym_u_DQUOTE] = ACTIONS(3744), + [anon_sym_U_DQUOTE] = ACTIONS(3744), + [anon_sym_u8_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [anon_sym_NULL] = ACTIONS(3742), + [anon_sym_nullptr] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_export] = ACTIONS(3742), + [anon_sym_import] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_delete] = ACTIONS(3742), + [anon_sym_throw] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_concept] = ACTIONS(3742), + [anon_sym_co_return] = ACTIONS(3742), + [anon_sym_co_yield] = ACTIONS(3742), + [anon_sym_R_DQUOTE] = ACTIONS(3744), + [anon_sym_LR_DQUOTE] = ACTIONS(3744), + [anon_sym_uR_DQUOTE] = ACTIONS(3744), + [anon_sym_UR_DQUOTE] = ACTIONS(3744), + [anon_sym_u8R_DQUOTE] = ACTIONS(3744), + [anon_sym_co_await] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_requires] = ACTIONS(3742), + [anon_sym_CARET_CARET] = ACTIONS(3744), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + [sym_this] = ACTIONS(3742), + }, + [STATE(846)] = { + [sym_identifier] = ACTIONS(4219), + [aux_sym_preproc_include_token1] = ACTIONS(4219), + [aux_sym_preproc_def_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4219), + [sym_preproc_directive] = ACTIONS(4219), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym___extension__] = ACTIONS(4219), + [anon_sym_typedef] = ACTIONS(4219), + [anon_sym_virtual] = ACTIONS(4219), + [anon_sym_extern] = ACTIONS(4219), + [anon_sym___attribute__] = ACTIONS(4219), + [anon_sym___attribute] = ACTIONS(4219), + [anon_sym_using] = ACTIONS(4219), + [anon_sym_COLON_COLON] = ACTIONS(4221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4221), + [anon_sym___declspec] = ACTIONS(4219), + [anon_sym___based] = ACTIONS(4219), + [anon_sym___cdecl] = ACTIONS(4219), + [anon_sym___clrcall] = ACTIONS(4219), + [anon_sym___stdcall] = ACTIONS(4219), + [anon_sym___fastcall] = ACTIONS(4219), + [anon_sym___thiscall] = ACTIONS(4219), + [anon_sym___vectorcall] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4221), + [anon_sym_RBRACE] = ACTIONS(4221), + [anon_sym_signed] = ACTIONS(4219), + [anon_sym_unsigned] = ACTIONS(4219), + [anon_sym_long] = ACTIONS(4219), + [anon_sym_short] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_static] = ACTIONS(4219), + [anon_sym_register] = ACTIONS(4219), + [anon_sym_inline] = ACTIONS(4219), + [anon_sym___inline] = ACTIONS(4219), + [anon_sym___inline__] = ACTIONS(4219), + [anon_sym___forceinline] = ACTIONS(4219), + [anon_sym_thread_local] = ACTIONS(4219), + [anon_sym___thread] = ACTIONS(4219), + [anon_sym_const] = ACTIONS(4219), + [anon_sym_constexpr] = ACTIONS(4219), + [anon_sym_volatile] = ACTIONS(4219), + [anon_sym_restrict] = ACTIONS(4219), + [anon_sym___restrict__] = ACTIONS(4219), + [anon_sym__Atomic] = ACTIONS(4219), + [anon_sym__Noreturn] = ACTIONS(4219), + [anon_sym_noreturn] = ACTIONS(4219), + [anon_sym__Nonnull] = ACTIONS(4219), + [anon_sym_mutable] = ACTIONS(4219), + [anon_sym_constinit] = ACTIONS(4219), + [anon_sym_consteval] = ACTIONS(4219), + [anon_sym_alignas] = ACTIONS(4219), + [anon_sym__Alignas] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(4219), + [anon_sym_enum] = ACTIONS(4219), + [anon_sym_class] = ACTIONS(4219), + [anon_sym_struct] = ACTIONS(4219), + [anon_sym_union] = ACTIONS(4219), + [anon_sym_if] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_case] = ACTIONS(4219), + [anon_sym_default] = ACTIONS(4219), + [anon_sym_while] = ACTIONS(4219), + [anon_sym_do] = ACTIONS(4219), + [anon_sym_for] = ACTIONS(4219), + [anon_sym_return] = ACTIONS(4219), + [anon_sym_break] = ACTIONS(4219), + [anon_sym_continue] = ACTIONS(4219), + [anon_sym_goto] = ACTIONS(4219), + [anon_sym___try] = ACTIONS(4219), + [anon_sym___leave] = ACTIONS(4219), + [anon_sym_not] = ACTIONS(4219), + [anon_sym_compl] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_sizeof] = ACTIONS(4219), + [anon_sym___alignof__] = ACTIONS(4219), + [anon_sym___alignof] = ACTIONS(4219), + [anon_sym__alignof] = ACTIONS(4219), + [anon_sym_alignof] = ACTIONS(4219), + [anon_sym__Alignof] = ACTIONS(4219), + [anon_sym_offsetof] = ACTIONS(4219), + [anon_sym__Generic] = ACTIONS(4219), + [anon_sym_typename] = ACTIONS(4219), + [anon_sym_asm] = ACTIONS(4219), + [anon_sym___asm__] = ACTIONS(4219), + [anon_sym___asm] = ACTIONS(4219), + [sym_number_literal] = ACTIONS(4221), + [anon_sym_L_SQUOTE] = ACTIONS(4221), + [anon_sym_u_SQUOTE] = ACTIONS(4221), + [anon_sym_U_SQUOTE] = ACTIONS(4221), + [anon_sym_u8_SQUOTE] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_L_DQUOTE] = ACTIONS(4221), + [anon_sym_u_DQUOTE] = ACTIONS(4221), + [anon_sym_U_DQUOTE] = ACTIONS(4221), + [anon_sym_u8_DQUOTE] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4221), + [sym_true] = ACTIONS(4219), + [sym_false] = ACTIONS(4219), + [anon_sym_NULL] = ACTIONS(4219), + [anon_sym_nullptr] = ACTIONS(4219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4219), + [anon_sym_decltype] = ACTIONS(4219), + [anon_sym_explicit] = ACTIONS(4219), + [anon_sym_export] = ACTIONS(4219), + [anon_sym_import] = ACTIONS(4219), + [anon_sym_template] = ACTIONS(4219), + [anon_sym_operator] = ACTIONS(4219), + [anon_sym_try] = ACTIONS(4219), + [anon_sym_delete] = ACTIONS(4219), + [anon_sym_throw] = ACTIONS(4219), + [anon_sym_namespace] = ACTIONS(4219), + [anon_sym_static_assert] = ACTIONS(4219), + [anon_sym_concept] = ACTIONS(4219), + [anon_sym_co_return] = ACTIONS(4219), + [anon_sym_co_yield] = ACTIONS(4219), + [anon_sym_R_DQUOTE] = ACTIONS(4221), + [anon_sym_LR_DQUOTE] = ACTIONS(4221), + [anon_sym_uR_DQUOTE] = ACTIONS(4221), + [anon_sym_UR_DQUOTE] = ACTIONS(4221), + [anon_sym_u8R_DQUOTE] = ACTIONS(4221), + [anon_sym_co_await] = ACTIONS(4219), + [anon_sym_new] = ACTIONS(4219), + [anon_sym_requires] = ACTIONS(4219), + [anon_sym_CARET_CARET] = ACTIONS(4221), + [anon_sym_LBRACK_COLON] = ACTIONS(4221), + [sym_this] = ACTIONS(4219), + }, + [STATE(847)] = { + [sym_identifier] = ACTIONS(3877), + [aux_sym_preproc_include_token1] = ACTIONS(3877), + [aux_sym_preproc_def_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token1] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3877), + [sym_preproc_directive] = ACTIONS(3877), + [anon_sym_LPAREN2] = ACTIONS(3879), + [anon_sym_BANG] = ACTIONS(3879), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_PLUS] = ACTIONS(3877), + [anon_sym_STAR] = ACTIONS(3879), + [anon_sym_AMP_AMP] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_SEMI] = ACTIONS(3879), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_typedef] = ACTIONS(3877), + [anon_sym_virtual] = ACTIONS(3877), + [anon_sym_extern] = ACTIONS(3877), + [anon_sym___attribute__] = ACTIONS(3877), + [anon_sym___attribute] = ACTIONS(3877), + [anon_sym_using] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3879), + [anon_sym___declspec] = ACTIONS(3877), + [anon_sym___based] = ACTIONS(3877), + [anon_sym___cdecl] = ACTIONS(3877), + [anon_sym___clrcall] = ACTIONS(3877), + [anon_sym___stdcall] = ACTIONS(3877), + [anon_sym___fastcall] = ACTIONS(3877), + [anon_sym___thiscall] = ACTIONS(3877), + [anon_sym___vectorcall] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_signed] = ACTIONS(3877), + [anon_sym_unsigned] = ACTIONS(3877), + [anon_sym_long] = ACTIONS(3877), + [anon_sym_short] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_static] = ACTIONS(3877), + [anon_sym_register] = ACTIONS(3877), + [anon_sym_inline] = ACTIONS(3877), + [anon_sym___inline] = ACTIONS(3877), + [anon_sym___inline__] = ACTIONS(3877), + [anon_sym___forceinline] = ACTIONS(3877), + [anon_sym_thread_local] = ACTIONS(3877), + [anon_sym___thread] = ACTIONS(3877), + [anon_sym_const] = ACTIONS(3877), + [anon_sym_constexpr] = ACTIONS(3877), + [anon_sym_volatile] = ACTIONS(3877), + [anon_sym_restrict] = ACTIONS(3877), + [anon_sym___restrict__] = ACTIONS(3877), + [anon_sym__Atomic] = ACTIONS(3877), + [anon_sym__Noreturn] = ACTIONS(3877), + [anon_sym_noreturn] = ACTIONS(3877), + [anon_sym__Nonnull] = ACTIONS(3877), + [anon_sym_mutable] = ACTIONS(3877), + [anon_sym_constinit] = ACTIONS(3877), + [anon_sym_consteval] = ACTIONS(3877), + [anon_sym_alignas] = ACTIONS(3877), + [anon_sym__Alignas] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(3877), + [anon_sym_enum] = ACTIONS(3877), + [anon_sym_class] = ACTIONS(3877), + [anon_sym_struct] = ACTIONS(3877), + [anon_sym_union] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(3877), + [anon_sym_switch] = ACTIONS(3877), + [anon_sym_case] = ACTIONS(3877), + [anon_sym_default] = ACTIONS(3877), + [anon_sym_while] = ACTIONS(3877), + [anon_sym_do] = ACTIONS(3877), + [anon_sym_for] = ACTIONS(3877), + [anon_sym_return] = ACTIONS(3877), + [anon_sym_break] = ACTIONS(3877), + [anon_sym_continue] = ACTIONS(3877), + [anon_sym_goto] = ACTIONS(3877), + [anon_sym___try] = ACTIONS(3877), + [anon_sym___leave] = ACTIONS(3877), + [anon_sym_not] = ACTIONS(3877), + [anon_sym_compl] = ACTIONS(3877), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3877), + [anon_sym___alignof__] = ACTIONS(3877), + [anon_sym___alignof] = ACTIONS(3877), + [anon_sym__alignof] = ACTIONS(3877), + [anon_sym_alignof] = ACTIONS(3877), + [anon_sym__Alignof] = ACTIONS(3877), + [anon_sym_offsetof] = ACTIONS(3877), + [anon_sym__Generic] = ACTIONS(3877), + [anon_sym_typename] = ACTIONS(3877), + [anon_sym_asm] = ACTIONS(3877), + [anon_sym___asm__] = ACTIONS(3877), + [anon_sym___asm] = ACTIONS(3877), + [sym_number_literal] = ACTIONS(3879), + [anon_sym_L_SQUOTE] = ACTIONS(3879), + [anon_sym_u_SQUOTE] = ACTIONS(3879), + [anon_sym_U_SQUOTE] = ACTIONS(3879), + [anon_sym_u8_SQUOTE] = ACTIONS(3879), + [anon_sym_SQUOTE] = ACTIONS(3879), + [anon_sym_L_DQUOTE] = ACTIONS(3879), + [anon_sym_u_DQUOTE] = ACTIONS(3879), + [anon_sym_U_DQUOTE] = ACTIONS(3879), + [anon_sym_u8_DQUOTE] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3879), + [sym_true] = ACTIONS(3877), + [sym_false] = ACTIONS(3877), + [anon_sym_NULL] = ACTIONS(3877), + [anon_sym_nullptr] = ACTIONS(3877), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3877), + [anon_sym_decltype] = ACTIONS(3877), + [anon_sym_explicit] = ACTIONS(3877), + [anon_sym_export] = ACTIONS(3877), + [anon_sym_import] = ACTIONS(3877), + [anon_sym_template] = ACTIONS(3877), + [anon_sym_operator] = ACTIONS(3877), + [anon_sym_try] = ACTIONS(3877), + [anon_sym_delete] = ACTIONS(3877), + [anon_sym_throw] = ACTIONS(3877), + [anon_sym_namespace] = ACTIONS(3877), + [anon_sym_static_assert] = ACTIONS(3877), + [anon_sym_concept] = ACTIONS(3877), + [anon_sym_co_return] = ACTIONS(3877), + [anon_sym_co_yield] = ACTIONS(3877), + [anon_sym_R_DQUOTE] = ACTIONS(3879), + [anon_sym_LR_DQUOTE] = ACTIONS(3879), + [anon_sym_uR_DQUOTE] = ACTIONS(3879), + [anon_sym_UR_DQUOTE] = ACTIONS(3879), + [anon_sym_u8R_DQUOTE] = ACTIONS(3879), + [anon_sym_co_await] = ACTIONS(3877), + [anon_sym_new] = ACTIONS(3877), + [anon_sym_requires] = ACTIONS(3877), + [anon_sym_CARET_CARET] = ACTIONS(3879), + [anon_sym_LBRACK_COLON] = ACTIONS(3879), + [sym_this] = ACTIONS(3877), + }, + [STATE(848)] = { + [sym_identifier] = ACTIONS(3682), + [aux_sym_preproc_include_token1] = ACTIONS(3682), + [aux_sym_preproc_def_token1] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), + [sym_preproc_directive] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym___extension__] = ACTIONS(3682), + [anon_sym_typedef] = ACTIONS(3682), + [anon_sym_virtual] = ACTIONS(3682), + [anon_sym_extern] = ACTIONS(3682), + [anon_sym___attribute__] = ACTIONS(3682), + [anon_sym___attribute] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3682), + [anon_sym___based] = ACTIONS(3682), + [anon_sym___cdecl] = ACTIONS(3682), + [anon_sym___clrcall] = ACTIONS(3682), + [anon_sym___stdcall] = ACTIONS(3682), + [anon_sym___fastcall] = ACTIONS(3682), + [anon_sym___thiscall] = ACTIONS(3682), + [anon_sym___vectorcall] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_signed] = ACTIONS(3682), + [anon_sym_unsigned] = ACTIONS(3682), + [anon_sym_long] = ACTIONS(3682), + [anon_sym_short] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_register] = ACTIONS(3682), + [anon_sym_inline] = ACTIONS(3682), + [anon_sym___inline] = ACTIONS(3682), + [anon_sym___inline__] = ACTIONS(3682), + [anon_sym___forceinline] = ACTIONS(3682), + [anon_sym_thread_local] = ACTIONS(3682), + [anon_sym___thread] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_constexpr] = ACTIONS(3682), + [anon_sym_volatile] = ACTIONS(3682), + [anon_sym_restrict] = ACTIONS(3682), + [anon_sym___restrict__] = ACTIONS(3682), + [anon_sym__Atomic] = ACTIONS(3682), + [anon_sym__Noreturn] = ACTIONS(3682), + [anon_sym_noreturn] = ACTIONS(3682), + [anon_sym__Nonnull] = ACTIONS(3682), + [anon_sym_mutable] = ACTIONS(3682), + [anon_sym_constinit] = ACTIONS(3682), + [anon_sym_consteval] = ACTIONS(3682), + [anon_sym_alignas] = ACTIONS(3682), + [anon_sym__Alignas] = ACTIONS(3682), + [sym_primitive_type] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_struct] = ACTIONS(3682), + [anon_sym_union] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_case] = ACTIONS(3682), + [anon_sym_default] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_goto] = ACTIONS(3682), + [anon_sym___try] = ACTIONS(3682), + [anon_sym___leave] = ACTIONS(3682), + [anon_sym_not] = ACTIONS(3682), + [anon_sym_compl] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_sizeof] = ACTIONS(3682), + [anon_sym___alignof__] = ACTIONS(3682), + [anon_sym___alignof] = ACTIONS(3682), + [anon_sym__alignof] = ACTIONS(3682), + [anon_sym_alignof] = ACTIONS(3682), + [anon_sym__Alignof] = ACTIONS(3682), + [anon_sym_offsetof] = ACTIONS(3682), + [anon_sym__Generic] = ACTIONS(3682), + [anon_sym_typename] = ACTIONS(3682), + [anon_sym_asm] = ACTIONS(3682), + [anon_sym___asm__] = ACTIONS(3682), + [anon_sym___asm] = ACTIONS(3682), + [sym_number_literal] = ACTIONS(3684), + [anon_sym_L_SQUOTE] = ACTIONS(3684), + [anon_sym_u_SQUOTE] = ACTIONS(3684), + [anon_sym_U_SQUOTE] = ACTIONS(3684), + [anon_sym_u8_SQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_L_DQUOTE] = ACTIONS(3684), + [anon_sym_u_DQUOTE] = ACTIONS(3684), + [anon_sym_U_DQUOTE] = ACTIONS(3684), + [anon_sym_u8_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [anon_sym_NULL] = ACTIONS(3682), + [anon_sym_nullptr] = ACTIONS(3682), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3682), + [anon_sym_decltype] = ACTIONS(3682), + [anon_sym_explicit] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_template] = ACTIONS(3682), + [anon_sym_operator] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3682), + [anon_sym_concept] = ACTIONS(3682), + [anon_sym_co_return] = ACTIONS(3682), + [anon_sym_co_yield] = ACTIONS(3682), + [anon_sym_R_DQUOTE] = ACTIONS(3684), + [anon_sym_LR_DQUOTE] = ACTIONS(3684), + [anon_sym_uR_DQUOTE] = ACTIONS(3684), + [anon_sym_UR_DQUOTE] = ACTIONS(3684), + [anon_sym_u8R_DQUOTE] = ACTIONS(3684), + [anon_sym_co_await] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_requires] = ACTIONS(3682), + [anon_sym_CARET_CARET] = ACTIONS(3684), + [anon_sym_LBRACK_COLON] = ACTIONS(3684), + [sym_this] = ACTIONS(3682), + }, + [STATE(849)] = { + [sym_identifier] = ACTIONS(3862), + [aux_sym_preproc_include_token1] = ACTIONS(3862), + [aux_sym_preproc_def_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token1] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3862), + [sym_preproc_directive] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(3864), + [anon_sym_BANG] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3864), + [anon_sym_DASH] = ACTIONS(3862), + [anon_sym_PLUS] = ACTIONS(3862), + [anon_sym_STAR] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym___extension__] = ACTIONS(3862), + [anon_sym_typedef] = ACTIONS(3862), + [anon_sym_virtual] = ACTIONS(3862), + [anon_sym_extern] = ACTIONS(3862), + [anon_sym___attribute__] = ACTIONS(3862), + [anon_sym___attribute] = ACTIONS(3862), + [anon_sym_using] = ACTIONS(3862), + [anon_sym_COLON_COLON] = ACTIONS(3864), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), + [anon_sym___declspec] = ACTIONS(3862), + [anon_sym___based] = ACTIONS(3862), + [anon_sym___cdecl] = ACTIONS(3862), + [anon_sym___clrcall] = ACTIONS(3862), + [anon_sym___stdcall] = ACTIONS(3862), + [anon_sym___fastcall] = ACTIONS(3862), + [anon_sym___thiscall] = ACTIONS(3862), + [anon_sym___vectorcall] = ACTIONS(3862), + [anon_sym_LBRACE] = ACTIONS(3864), + [anon_sym_RBRACE] = ACTIONS(3864), + [anon_sym_signed] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3862), + [anon_sym_long] = ACTIONS(3862), + [anon_sym_short] = ACTIONS(3862), + [anon_sym_LBRACK] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3862), + [anon_sym_register] = ACTIONS(3862), + [anon_sym_inline] = ACTIONS(3862), + [anon_sym___inline] = ACTIONS(3862), + [anon_sym___inline__] = ACTIONS(3862), + [anon_sym___forceinline] = ACTIONS(3862), + [anon_sym_thread_local] = ACTIONS(3862), + [anon_sym___thread] = ACTIONS(3862), + [anon_sym_const] = ACTIONS(3862), + [anon_sym_constexpr] = ACTIONS(3862), + [anon_sym_volatile] = ACTIONS(3862), + [anon_sym_restrict] = ACTIONS(3862), + [anon_sym___restrict__] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3862), + [anon_sym__Noreturn] = ACTIONS(3862), + [anon_sym_noreturn] = ACTIONS(3862), + [anon_sym__Nonnull] = ACTIONS(3862), + [anon_sym_mutable] = ACTIONS(3862), + [anon_sym_constinit] = ACTIONS(3862), + [anon_sym_consteval] = ACTIONS(3862), + [anon_sym_alignas] = ACTIONS(3862), + [anon_sym__Alignas] = ACTIONS(3862), + [sym_primitive_type] = ACTIONS(3862), + [anon_sym_enum] = ACTIONS(3862), + [anon_sym_class] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3862), + [anon_sym_union] = ACTIONS(3862), + [anon_sym_if] = ACTIONS(3862), + [anon_sym_switch] = ACTIONS(3862), + [anon_sym_case] = ACTIONS(3862), + [anon_sym_default] = ACTIONS(3862), + [anon_sym_while] = ACTIONS(3862), + [anon_sym_do] = ACTIONS(3862), + [anon_sym_for] = ACTIONS(3862), + [anon_sym_return] = ACTIONS(3862), + [anon_sym_break] = ACTIONS(3862), + [anon_sym_continue] = ACTIONS(3862), + [anon_sym_goto] = ACTIONS(3862), + [anon_sym___try] = ACTIONS(3862), + [anon_sym___leave] = ACTIONS(3862), + [anon_sym_not] = ACTIONS(3862), + [anon_sym_compl] = ACTIONS(3862), + [anon_sym_DASH_DASH] = ACTIONS(3864), + [anon_sym_PLUS_PLUS] = ACTIONS(3864), + [anon_sym_sizeof] = ACTIONS(3862), + [anon_sym___alignof__] = ACTIONS(3862), + [anon_sym___alignof] = ACTIONS(3862), + [anon_sym__alignof] = ACTIONS(3862), + [anon_sym_alignof] = ACTIONS(3862), + [anon_sym__Alignof] = ACTIONS(3862), + [anon_sym_offsetof] = ACTIONS(3862), + [anon_sym__Generic] = ACTIONS(3862), + [anon_sym_typename] = ACTIONS(3862), + [anon_sym_asm] = ACTIONS(3862), + [anon_sym___asm__] = ACTIONS(3862), + [anon_sym___asm] = ACTIONS(3862), + [sym_number_literal] = ACTIONS(3864), + [anon_sym_L_SQUOTE] = ACTIONS(3864), + [anon_sym_u_SQUOTE] = ACTIONS(3864), + [anon_sym_U_SQUOTE] = ACTIONS(3864), + [anon_sym_u8_SQUOTE] = ACTIONS(3864), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_L_DQUOTE] = ACTIONS(3864), + [anon_sym_u_DQUOTE] = ACTIONS(3864), + [anon_sym_U_DQUOTE] = ACTIONS(3864), + [anon_sym_u8_DQUOTE] = ACTIONS(3864), + [anon_sym_DQUOTE] = ACTIONS(3864), + [sym_true] = ACTIONS(3862), + [sym_false] = ACTIONS(3862), + [anon_sym_NULL] = ACTIONS(3862), + [anon_sym_nullptr] = ACTIONS(3862), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3862), + [anon_sym_decltype] = ACTIONS(3862), + [anon_sym_explicit] = ACTIONS(3862), + [anon_sym_export] = ACTIONS(3862), + [anon_sym_import] = ACTIONS(3862), + [anon_sym_template] = ACTIONS(3862), + [anon_sym_operator] = ACTIONS(3862), + [anon_sym_try] = ACTIONS(3862), + [anon_sym_delete] = ACTIONS(3862), + [anon_sym_throw] = ACTIONS(3862), + [anon_sym_namespace] = ACTIONS(3862), + [anon_sym_static_assert] = ACTIONS(3862), + [anon_sym_concept] = ACTIONS(3862), + [anon_sym_co_return] = ACTIONS(3862), + [anon_sym_co_yield] = ACTIONS(3862), + [anon_sym_R_DQUOTE] = ACTIONS(3864), + [anon_sym_LR_DQUOTE] = ACTIONS(3864), + [anon_sym_uR_DQUOTE] = ACTIONS(3864), + [anon_sym_UR_DQUOTE] = ACTIONS(3864), + [anon_sym_u8R_DQUOTE] = ACTIONS(3864), + [anon_sym_co_await] = ACTIONS(3862), + [anon_sym_new] = ACTIONS(3862), + [anon_sym_requires] = ACTIONS(3862), + [anon_sym_CARET_CARET] = ACTIONS(3864), + [anon_sym_LBRACK_COLON] = ACTIONS(3864), + [sym_this] = ACTIONS(3862), + }, + [STATE(850)] = { + [sym_identifier] = ACTIONS(4267), + [aux_sym_preproc_include_token1] = ACTIONS(4267), + [aux_sym_preproc_def_token1] = ACTIONS(4267), + [aux_sym_preproc_if_token1] = ACTIONS(4267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), + [sym_preproc_directive] = ACTIONS(4267), + [anon_sym_LPAREN2] = ACTIONS(4269), + [anon_sym_BANG] = ACTIONS(4269), + [anon_sym_TILDE] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym___extension__] = ACTIONS(4267), + [anon_sym_typedef] = ACTIONS(4267), + [anon_sym_virtual] = ACTIONS(4267), + [anon_sym_extern] = ACTIONS(4267), + [anon_sym___attribute__] = ACTIONS(4267), + [anon_sym___attribute] = ACTIONS(4267), + [anon_sym_using] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4269), + [anon_sym___declspec] = ACTIONS(4267), + [anon_sym___based] = ACTIONS(4267), + [anon_sym___cdecl] = ACTIONS(4267), + [anon_sym___clrcall] = ACTIONS(4267), + [anon_sym___stdcall] = ACTIONS(4267), + [anon_sym___fastcall] = ACTIONS(4267), + [anon_sym___thiscall] = ACTIONS(4267), + [anon_sym___vectorcall] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_RBRACE] = ACTIONS(4269), + [anon_sym_signed] = ACTIONS(4267), + [anon_sym_unsigned] = ACTIONS(4267), + [anon_sym_long] = ACTIONS(4267), + [anon_sym_short] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_static] = ACTIONS(4267), + [anon_sym_register] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym___inline] = ACTIONS(4267), + [anon_sym___inline__] = ACTIONS(4267), + [anon_sym___forceinline] = ACTIONS(4267), + [anon_sym_thread_local] = ACTIONS(4267), + [anon_sym___thread] = ACTIONS(4267), + [anon_sym_const] = ACTIONS(4267), + [anon_sym_constexpr] = ACTIONS(4267), + [anon_sym_volatile] = ACTIONS(4267), + [anon_sym_restrict] = ACTIONS(4267), + [anon_sym___restrict__] = ACTIONS(4267), + [anon_sym__Atomic] = ACTIONS(4267), + [anon_sym__Noreturn] = ACTIONS(4267), + [anon_sym_noreturn] = ACTIONS(4267), + [anon_sym__Nonnull] = ACTIONS(4267), + [anon_sym_mutable] = ACTIONS(4267), + [anon_sym_constinit] = ACTIONS(4267), + [anon_sym_consteval] = ACTIONS(4267), + [anon_sym_alignas] = ACTIONS(4267), + [anon_sym__Alignas] = ACTIONS(4267), + [sym_primitive_type] = ACTIONS(4267), + [anon_sym_enum] = ACTIONS(4267), + [anon_sym_class] = ACTIONS(4267), + [anon_sym_struct] = ACTIONS(4267), + [anon_sym_union] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_switch] = ACTIONS(4267), + [anon_sym_case] = ACTIONS(4267), + [anon_sym_default] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_do] = ACTIONS(4267), + [anon_sym_for] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_goto] = ACTIONS(4267), + [anon_sym___try] = ACTIONS(4267), + [anon_sym___leave] = ACTIONS(4267), + [anon_sym_not] = ACTIONS(4267), + [anon_sym_compl] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_sizeof] = ACTIONS(4267), + [anon_sym___alignof__] = ACTIONS(4267), + [anon_sym___alignof] = ACTIONS(4267), + [anon_sym__alignof] = ACTIONS(4267), + [anon_sym_alignof] = ACTIONS(4267), + [anon_sym__Alignof] = ACTIONS(4267), + [anon_sym_offsetof] = ACTIONS(4267), + [anon_sym__Generic] = ACTIONS(4267), + [anon_sym_typename] = ACTIONS(4267), + [anon_sym_asm] = ACTIONS(4267), + [anon_sym___asm__] = ACTIONS(4267), + [anon_sym___asm] = ACTIONS(4267), + [sym_number_literal] = ACTIONS(4269), + [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(4269), + [anon_sym_u_DQUOTE] = ACTIONS(4269), + [anon_sym_U_DQUOTE] = ACTIONS(4269), + [anon_sym_u8_DQUOTE] = ACTIONS(4269), + [anon_sym_DQUOTE] = ACTIONS(4269), + [sym_true] = ACTIONS(4267), + [sym_false] = ACTIONS(4267), + [anon_sym_NULL] = ACTIONS(4267), + [anon_sym_nullptr] = ACTIONS(4267), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4267), + [anon_sym_decltype] = ACTIONS(4267), + [anon_sym_explicit] = ACTIONS(4267), + [anon_sym_export] = ACTIONS(4267), + [anon_sym_import] = ACTIONS(4267), + [anon_sym_template] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_delete] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_namespace] = ACTIONS(4267), + [anon_sym_static_assert] = ACTIONS(4267), + [anon_sym_concept] = ACTIONS(4267), + [anon_sym_co_return] = ACTIONS(4267), + [anon_sym_co_yield] = ACTIONS(4267), + [anon_sym_R_DQUOTE] = ACTIONS(4269), + [anon_sym_LR_DQUOTE] = ACTIONS(4269), + [anon_sym_uR_DQUOTE] = ACTIONS(4269), + [anon_sym_UR_DQUOTE] = ACTIONS(4269), + [anon_sym_u8R_DQUOTE] = ACTIONS(4269), + [anon_sym_co_await] = ACTIONS(4267), + [anon_sym_new] = ACTIONS(4267), + [anon_sym_requires] = ACTIONS(4267), + [anon_sym_CARET_CARET] = ACTIONS(4269), + [anon_sym_LBRACK_COLON] = ACTIONS(4269), + [sym_this] = ACTIONS(4267), + }, + [STATE(851)] = { + [sym_identifier] = ACTIONS(3869), + [aux_sym_preproc_include_token1] = ACTIONS(3869), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3869), + [sym_preproc_directive] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_TILDE] = ACTIONS(3871), + [anon_sym_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3869), + [anon_sym_STAR] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym___extension__] = ACTIONS(3869), + [anon_sym_typedef] = ACTIONS(3869), + [anon_sym_virtual] = ACTIONS(3869), + [anon_sym_extern] = ACTIONS(3869), + [anon_sym___attribute__] = ACTIONS(3869), + [anon_sym___attribute] = ACTIONS(3869), + [anon_sym_using] = ACTIONS(3869), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3871), + [anon_sym___declspec] = ACTIONS(3869), + [anon_sym___based] = ACTIONS(3869), + [anon_sym___cdecl] = ACTIONS(3869), + [anon_sym___clrcall] = ACTIONS(3869), + [anon_sym___stdcall] = ACTIONS(3869), + [anon_sym___fastcall] = ACTIONS(3869), + [anon_sym___thiscall] = ACTIONS(3869), + [anon_sym___vectorcall] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_signed] = ACTIONS(3869), + [anon_sym_unsigned] = ACTIONS(3869), + [anon_sym_long] = ACTIONS(3869), + [anon_sym_short] = ACTIONS(3869), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_static] = ACTIONS(3869), + [anon_sym_register] = ACTIONS(3869), + [anon_sym_inline] = ACTIONS(3869), + [anon_sym___inline] = ACTIONS(3869), + [anon_sym___inline__] = ACTIONS(3869), + [anon_sym___forceinline] = ACTIONS(3869), + [anon_sym_thread_local] = ACTIONS(3869), + [anon_sym___thread] = ACTIONS(3869), + [anon_sym_const] = ACTIONS(3869), + [anon_sym_constexpr] = ACTIONS(3869), + [anon_sym_volatile] = ACTIONS(3869), + [anon_sym_restrict] = ACTIONS(3869), + [anon_sym___restrict__] = ACTIONS(3869), + [anon_sym__Atomic] = ACTIONS(3869), + [anon_sym__Noreturn] = ACTIONS(3869), + [anon_sym_noreturn] = ACTIONS(3869), + [anon_sym__Nonnull] = ACTIONS(3869), + [anon_sym_mutable] = ACTIONS(3869), + [anon_sym_constinit] = ACTIONS(3869), + [anon_sym_consteval] = ACTIONS(3869), + [anon_sym_alignas] = ACTIONS(3869), + [anon_sym__Alignas] = ACTIONS(3869), + [sym_primitive_type] = ACTIONS(3869), + [anon_sym_enum] = ACTIONS(3869), + [anon_sym_class] = ACTIONS(3869), + [anon_sym_struct] = ACTIONS(3869), + [anon_sym_union] = ACTIONS(3869), + [anon_sym_if] = ACTIONS(3869), + [anon_sym_switch] = ACTIONS(3869), + [anon_sym_case] = ACTIONS(3869), + [anon_sym_default] = ACTIONS(3869), + [anon_sym_while] = ACTIONS(3869), + [anon_sym_do] = ACTIONS(3869), + [anon_sym_for] = ACTIONS(3869), + [anon_sym_return] = ACTIONS(3869), + [anon_sym_break] = ACTIONS(3869), + [anon_sym_continue] = ACTIONS(3869), + [anon_sym_goto] = ACTIONS(3869), + [anon_sym___try] = ACTIONS(3869), + [anon_sym___leave] = ACTIONS(3869), + [anon_sym_not] = ACTIONS(3869), + [anon_sym_compl] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_sizeof] = ACTIONS(3869), + [anon_sym___alignof__] = ACTIONS(3869), + [anon_sym___alignof] = ACTIONS(3869), + [anon_sym__alignof] = ACTIONS(3869), + [anon_sym_alignof] = ACTIONS(3869), + [anon_sym__Alignof] = ACTIONS(3869), + [anon_sym_offsetof] = ACTIONS(3869), + [anon_sym__Generic] = ACTIONS(3869), + [anon_sym_typename] = ACTIONS(3869), + [anon_sym_asm] = ACTIONS(3869), + [anon_sym___asm__] = ACTIONS(3869), + [anon_sym___asm] = ACTIONS(3869), + [sym_number_literal] = ACTIONS(3871), + [anon_sym_L_SQUOTE] = ACTIONS(3871), + [anon_sym_u_SQUOTE] = ACTIONS(3871), + [anon_sym_U_SQUOTE] = ACTIONS(3871), + [anon_sym_u8_SQUOTE] = ACTIONS(3871), + [anon_sym_SQUOTE] = ACTIONS(3871), + [anon_sym_L_DQUOTE] = ACTIONS(3871), + [anon_sym_u_DQUOTE] = ACTIONS(3871), + [anon_sym_U_DQUOTE] = ACTIONS(3871), + [anon_sym_u8_DQUOTE] = ACTIONS(3871), + [anon_sym_DQUOTE] = ACTIONS(3871), + [sym_true] = ACTIONS(3869), + [sym_false] = ACTIONS(3869), + [anon_sym_NULL] = ACTIONS(3869), + [anon_sym_nullptr] = ACTIONS(3869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3869), + [anon_sym_decltype] = ACTIONS(3869), + [anon_sym_explicit] = ACTIONS(3869), + [anon_sym_export] = ACTIONS(3869), + [anon_sym_import] = ACTIONS(3869), + [anon_sym_template] = ACTIONS(3869), + [anon_sym_operator] = ACTIONS(3869), + [anon_sym_try] = ACTIONS(3869), + [anon_sym_delete] = ACTIONS(3869), + [anon_sym_throw] = ACTIONS(3869), + [anon_sym_namespace] = ACTIONS(3869), + [anon_sym_static_assert] = ACTIONS(3869), + [anon_sym_concept] = ACTIONS(3869), + [anon_sym_co_return] = ACTIONS(3869), + [anon_sym_co_yield] = ACTIONS(3869), + [anon_sym_R_DQUOTE] = ACTIONS(3871), + [anon_sym_LR_DQUOTE] = ACTIONS(3871), + [anon_sym_uR_DQUOTE] = ACTIONS(3871), + [anon_sym_UR_DQUOTE] = ACTIONS(3871), + [anon_sym_u8R_DQUOTE] = ACTIONS(3871), + [anon_sym_co_await] = ACTIONS(3869), + [anon_sym_new] = ACTIONS(3869), + [anon_sym_requires] = ACTIONS(3869), + [anon_sym_CARET_CARET] = ACTIONS(3871), + [anon_sym_LBRACK_COLON] = ACTIONS(3871), + [sym_this] = ACTIONS(3869), + }, + [STATE(852)] = { + [sym_identifier] = ACTIONS(4223), + [aux_sym_preproc_include_token1] = ACTIONS(4223), + [aux_sym_preproc_def_token1] = ACTIONS(4223), + [aux_sym_preproc_if_token1] = ACTIONS(4223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4223), + [sym_preproc_directive] = ACTIONS(4223), + [anon_sym_LPAREN2] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4225), + [anon_sym_TILDE] = ACTIONS(4225), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym___extension__] = ACTIONS(4223), + [anon_sym_typedef] = ACTIONS(4223), + [anon_sym_virtual] = ACTIONS(4223), + [anon_sym_extern] = ACTIONS(4223), + [anon_sym___attribute__] = ACTIONS(4223), + [anon_sym___attribute] = ACTIONS(4223), + [anon_sym_using] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4225), + [anon_sym___declspec] = ACTIONS(4223), + [anon_sym___based] = ACTIONS(4223), + [anon_sym___cdecl] = ACTIONS(4223), + [anon_sym___clrcall] = ACTIONS(4223), + [anon_sym___stdcall] = ACTIONS(4223), + [anon_sym___fastcall] = ACTIONS(4223), + [anon_sym___thiscall] = ACTIONS(4223), + [anon_sym___vectorcall] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_RBRACE] = ACTIONS(4225), + [anon_sym_signed] = ACTIONS(4223), + [anon_sym_unsigned] = ACTIONS(4223), + [anon_sym_long] = ACTIONS(4223), + [anon_sym_short] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_static] = ACTIONS(4223), + [anon_sym_register] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym___inline] = ACTIONS(4223), + [anon_sym___inline__] = ACTIONS(4223), + [anon_sym___forceinline] = ACTIONS(4223), + [anon_sym_thread_local] = ACTIONS(4223), + [anon_sym___thread] = ACTIONS(4223), + [anon_sym_const] = ACTIONS(4223), + [anon_sym_constexpr] = ACTIONS(4223), + [anon_sym_volatile] = ACTIONS(4223), + [anon_sym_restrict] = ACTIONS(4223), + [anon_sym___restrict__] = ACTIONS(4223), + [anon_sym__Atomic] = ACTIONS(4223), + [anon_sym__Noreturn] = ACTIONS(4223), + [anon_sym_noreturn] = ACTIONS(4223), + [anon_sym__Nonnull] = ACTIONS(4223), + [anon_sym_mutable] = ACTIONS(4223), + [anon_sym_constinit] = ACTIONS(4223), + [anon_sym_consteval] = ACTIONS(4223), + [anon_sym_alignas] = ACTIONS(4223), + [anon_sym__Alignas] = ACTIONS(4223), + [sym_primitive_type] = ACTIONS(4223), + [anon_sym_enum] = ACTIONS(4223), + [anon_sym_class] = ACTIONS(4223), + [anon_sym_struct] = ACTIONS(4223), + [anon_sym_union] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_switch] = ACTIONS(4223), + [anon_sym_case] = ACTIONS(4223), + [anon_sym_default] = ACTIONS(4223), + [anon_sym_while] = ACTIONS(4223), + [anon_sym_do] = ACTIONS(4223), + [anon_sym_for] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_goto] = ACTIONS(4223), + [anon_sym___try] = ACTIONS(4223), + [anon_sym___leave] = ACTIONS(4223), + [anon_sym_not] = ACTIONS(4223), + [anon_sym_compl] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_sizeof] = ACTIONS(4223), + [anon_sym___alignof__] = ACTIONS(4223), + [anon_sym___alignof] = ACTIONS(4223), + [anon_sym__alignof] = ACTIONS(4223), + [anon_sym_alignof] = ACTIONS(4223), + [anon_sym__Alignof] = ACTIONS(4223), + [anon_sym_offsetof] = ACTIONS(4223), + [anon_sym__Generic] = ACTIONS(4223), + [anon_sym_typename] = ACTIONS(4223), + [anon_sym_asm] = ACTIONS(4223), + [anon_sym___asm__] = ACTIONS(4223), + [anon_sym___asm] = ACTIONS(4223), + [sym_number_literal] = ACTIONS(4225), + [anon_sym_L_SQUOTE] = ACTIONS(4225), + [anon_sym_u_SQUOTE] = ACTIONS(4225), + [anon_sym_U_SQUOTE] = ACTIONS(4225), + [anon_sym_u8_SQUOTE] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4225), + [anon_sym_L_DQUOTE] = ACTIONS(4225), + [anon_sym_u_DQUOTE] = ACTIONS(4225), + [anon_sym_U_DQUOTE] = ACTIONS(4225), + [anon_sym_u8_DQUOTE] = ACTIONS(4225), + [anon_sym_DQUOTE] = ACTIONS(4225), + [sym_true] = ACTIONS(4223), + [sym_false] = ACTIONS(4223), + [anon_sym_NULL] = ACTIONS(4223), + [anon_sym_nullptr] = ACTIONS(4223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4223), + [anon_sym_decltype] = ACTIONS(4223), + [anon_sym_explicit] = ACTIONS(4223), + [anon_sym_export] = ACTIONS(4223), + [anon_sym_import] = ACTIONS(4223), + [anon_sym_template] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_delete] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_namespace] = ACTIONS(4223), + [anon_sym_static_assert] = ACTIONS(4223), + [anon_sym_concept] = ACTIONS(4223), + [anon_sym_co_return] = ACTIONS(4223), + [anon_sym_co_yield] = ACTIONS(4223), + [anon_sym_R_DQUOTE] = ACTIONS(4225), + [anon_sym_LR_DQUOTE] = ACTIONS(4225), + [anon_sym_uR_DQUOTE] = ACTIONS(4225), + [anon_sym_UR_DQUOTE] = ACTIONS(4225), + [anon_sym_u8R_DQUOTE] = ACTIONS(4225), + [anon_sym_co_await] = ACTIONS(4223), + [anon_sym_new] = ACTIONS(4223), + [anon_sym_requires] = ACTIONS(4223), + [anon_sym_CARET_CARET] = ACTIONS(4225), + [anon_sym_LBRACK_COLON] = ACTIONS(4225), + [sym_this] = ACTIONS(4223), + }, + [STATE(853)] = { + [sym_identifier] = ACTIONS(3718), + [aux_sym_preproc_include_token1] = ACTIONS(3718), + [aux_sym_preproc_def_token1] = ACTIONS(3718), + [aux_sym_preproc_if_token1] = ACTIONS(3718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3718), + [sym_preproc_directive] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_BANG] = ACTIONS(3720), + [anon_sym_TILDE] = ACTIONS(3720), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3720), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym___extension__] = ACTIONS(3718), + [anon_sym_typedef] = ACTIONS(3718), + [anon_sym_virtual] = ACTIONS(3718), + [anon_sym_extern] = ACTIONS(3718), + [anon_sym___attribute__] = ACTIONS(3718), + [anon_sym___attribute] = ACTIONS(3718), + [anon_sym_using] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3720), + [anon_sym___declspec] = ACTIONS(3718), + [anon_sym___based] = ACTIONS(3718), + [anon_sym___cdecl] = ACTIONS(3718), + [anon_sym___clrcall] = ACTIONS(3718), + [anon_sym___stdcall] = ACTIONS(3718), + [anon_sym___fastcall] = ACTIONS(3718), + [anon_sym___thiscall] = ACTIONS(3718), + [anon_sym___vectorcall] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3720), + [anon_sym_RBRACE] = ACTIONS(3720), + [anon_sym_signed] = ACTIONS(3718), + [anon_sym_unsigned] = ACTIONS(3718), + [anon_sym_long] = ACTIONS(3718), + [anon_sym_short] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_static] = ACTIONS(3718), + [anon_sym_register] = ACTIONS(3718), + [anon_sym_inline] = ACTIONS(3718), + [anon_sym___inline] = ACTIONS(3718), + [anon_sym___inline__] = ACTIONS(3718), + [anon_sym___forceinline] = ACTIONS(3718), + [anon_sym_thread_local] = ACTIONS(3718), + [anon_sym___thread] = ACTIONS(3718), + [anon_sym_const] = ACTIONS(3718), + [anon_sym_constexpr] = ACTIONS(3718), + [anon_sym_volatile] = ACTIONS(3718), + [anon_sym_restrict] = ACTIONS(3718), + [anon_sym___restrict__] = ACTIONS(3718), + [anon_sym__Atomic] = ACTIONS(3718), + [anon_sym__Noreturn] = ACTIONS(3718), + [anon_sym_noreturn] = ACTIONS(3718), + [anon_sym__Nonnull] = ACTIONS(3718), + [anon_sym_mutable] = ACTIONS(3718), + [anon_sym_constinit] = ACTIONS(3718), + [anon_sym_consteval] = ACTIONS(3718), + [anon_sym_alignas] = ACTIONS(3718), + [anon_sym__Alignas] = ACTIONS(3718), + [sym_primitive_type] = ACTIONS(3718), + [anon_sym_enum] = ACTIONS(3718), + [anon_sym_class] = ACTIONS(3718), + [anon_sym_struct] = ACTIONS(3718), + [anon_sym_union] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_switch] = ACTIONS(3718), + [anon_sym_case] = ACTIONS(3718), + [anon_sym_default] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_break] = ACTIONS(3718), + [anon_sym_continue] = ACTIONS(3718), + [anon_sym_goto] = ACTIONS(3718), + [anon_sym___try] = ACTIONS(3718), + [anon_sym___leave] = ACTIONS(3718), + [anon_sym_not] = ACTIONS(3718), + [anon_sym_compl] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3720), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_sizeof] = ACTIONS(3718), + [anon_sym___alignof__] = ACTIONS(3718), + [anon_sym___alignof] = ACTIONS(3718), + [anon_sym__alignof] = ACTIONS(3718), + [anon_sym_alignof] = ACTIONS(3718), + [anon_sym__Alignof] = ACTIONS(3718), + [anon_sym_offsetof] = ACTIONS(3718), + [anon_sym__Generic] = ACTIONS(3718), + [anon_sym_typename] = ACTIONS(3718), + [anon_sym_asm] = ACTIONS(3718), + [anon_sym___asm__] = ACTIONS(3718), + [anon_sym___asm] = ACTIONS(3718), + [sym_number_literal] = ACTIONS(3720), + [anon_sym_L_SQUOTE] = ACTIONS(3720), + [anon_sym_u_SQUOTE] = ACTIONS(3720), + [anon_sym_U_SQUOTE] = ACTIONS(3720), + [anon_sym_u8_SQUOTE] = ACTIONS(3720), + [anon_sym_SQUOTE] = ACTIONS(3720), + [anon_sym_L_DQUOTE] = ACTIONS(3720), + [anon_sym_u_DQUOTE] = ACTIONS(3720), + [anon_sym_U_DQUOTE] = ACTIONS(3720), + [anon_sym_u8_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE] = ACTIONS(3720), + [sym_true] = ACTIONS(3718), + [sym_false] = ACTIONS(3718), + [anon_sym_NULL] = ACTIONS(3718), + [anon_sym_nullptr] = ACTIONS(3718), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(3718), + [anon_sym_explicit] = ACTIONS(3718), + [anon_sym_export] = ACTIONS(3718), + [anon_sym_import] = ACTIONS(3718), + [anon_sym_template] = ACTIONS(3718), + [anon_sym_operator] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_throw] = ACTIONS(3718), + [anon_sym_namespace] = ACTIONS(3718), + [anon_sym_static_assert] = ACTIONS(3718), + [anon_sym_concept] = ACTIONS(3718), + [anon_sym_co_return] = ACTIONS(3718), + [anon_sym_co_yield] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(3720), + [anon_sym_LR_DQUOTE] = ACTIONS(3720), + [anon_sym_uR_DQUOTE] = ACTIONS(3720), + [anon_sym_UR_DQUOTE] = ACTIONS(3720), + [anon_sym_u8R_DQUOTE] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3718), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_requires] = ACTIONS(3718), + [anon_sym_CARET_CARET] = ACTIONS(3720), + [anon_sym_LBRACK_COLON] = ACTIONS(3720), + [sym_this] = ACTIONS(3718), + }, + [STATE(854)] = { + [sym_identifier] = ACTIONS(3722), + [aux_sym_preproc_include_token1] = ACTIONS(3722), + [aux_sym_preproc_def_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token1] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3722), + [sym_preproc_directive] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_SEMI] = ACTIONS(3724), + [anon_sym___extension__] = ACTIONS(3722), + [anon_sym_typedef] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym___attribute] = ACTIONS(3722), + [anon_sym_using] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3724), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym___cdecl] = ACTIONS(3722), + [anon_sym___clrcall] = ACTIONS(3722), + [anon_sym___stdcall] = ACTIONS(3722), + [anon_sym___fastcall] = ACTIONS(3722), + [anon_sym___thiscall] = ACTIONS(3722), + [anon_sym___vectorcall] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_RBRACE] = ACTIONS(3724), + [anon_sym_signed] = ACTIONS(3722), + [anon_sym_unsigned] = ACTIONS(3722), + [anon_sym_long] = ACTIONS(3722), + [anon_sym_short] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym___inline] = ACTIONS(3722), + [anon_sym___inline__] = ACTIONS(3722), + [anon_sym___forceinline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym___thread] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym___restrict__] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym__Noreturn] = ACTIONS(3722), + [anon_sym_noreturn] = ACTIONS(3722), + [anon_sym__Nonnull] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_alignas] = ACTIONS(3722), + [anon_sym__Alignas] = ACTIONS(3722), + [sym_primitive_type] = ACTIONS(3722), + [anon_sym_enum] = ACTIONS(3722), + [anon_sym_class] = ACTIONS(3722), + [anon_sym_struct] = ACTIONS(3722), + [anon_sym_union] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_switch] = ACTIONS(3722), + [anon_sym_case] = ACTIONS(3722), + [anon_sym_default] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_break] = ACTIONS(3722), + [anon_sym_continue] = ACTIONS(3722), + [anon_sym_goto] = ACTIONS(3722), + [anon_sym___try] = ACTIONS(3722), + [anon_sym___leave] = ACTIONS(3722), + [anon_sym_not] = ACTIONS(3722), + [anon_sym_compl] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3724), + [anon_sym_sizeof] = ACTIONS(3722), + [anon_sym___alignof__] = ACTIONS(3722), + [anon_sym___alignof] = ACTIONS(3722), + [anon_sym__alignof] = ACTIONS(3722), + [anon_sym_alignof] = ACTIONS(3722), + [anon_sym__Alignof] = ACTIONS(3722), + [anon_sym_offsetof] = ACTIONS(3722), + [anon_sym__Generic] = ACTIONS(3722), + [anon_sym_typename] = ACTIONS(3722), + [anon_sym_asm] = ACTIONS(3722), + [anon_sym___asm__] = ACTIONS(3722), + [anon_sym___asm] = ACTIONS(3722), + [sym_number_literal] = ACTIONS(3724), + [anon_sym_L_SQUOTE] = ACTIONS(3724), + [anon_sym_u_SQUOTE] = ACTIONS(3724), + [anon_sym_U_SQUOTE] = ACTIONS(3724), + [anon_sym_u8_SQUOTE] = ACTIONS(3724), + [anon_sym_SQUOTE] = ACTIONS(3724), + [anon_sym_L_DQUOTE] = ACTIONS(3724), + [anon_sym_u_DQUOTE] = ACTIONS(3724), + [anon_sym_U_DQUOTE] = ACTIONS(3724), + [anon_sym_u8_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE] = ACTIONS(3724), + [sym_true] = ACTIONS(3722), + [sym_false] = ACTIONS(3722), + [anon_sym_NULL] = ACTIONS(3722), + [anon_sym_nullptr] = ACTIONS(3722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_explicit] = ACTIONS(3722), + [anon_sym_export] = ACTIONS(3722), + [anon_sym_import] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_delete] = ACTIONS(3722), + [anon_sym_throw] = ACTIONS(3722), + [anon_sym_namespace] = ACTIONS(3722), + [anon_sym_static_assert] = ACTIONS(3722), + [anon_sym_concept] = ACTIONS(3722), + [anon_sym_co_return] = ACTIONS(3722), + [anon_sym_co_yield] = ACTIONS(3722), + [anon_sym_R_DQUOTE] = ACTIONS(3724), + [anon_sym_LR_DQUOTE] = ACTIONS(3724), + [anon_sym_uR_DQUOTE] = ACTIONS(3724), + [anon_sym_UR_DQUOTE] = ACTIONS(3724), + [anon_sym_u8R_DQUOTE] = ACTIONS(3724), + [anon_sym_co_await] = ACTIONS(3722), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_requires] = ACTIONS(3722), + [anon_sym_CARET_CARET] = ACTIONS(3724), + [anon_sym_LBRACK_COLON] = ACTIONS(3724), + [sym_this] = ACTIONS(3722), + }, + [STATE(855)] = { + [sym_identifier] = ACTIONS(4281), + [aux_sym_preproc_include_token1] = ACTIONS(4281), + [aux_sym_preproc_def_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token1] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4281), + [sym_preproc_directive] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym___extension__] = ACTIONS(4281), + [anon_sym_typedef] = ACTIONS(4281), + [anon_sym_virtual] = ACTIONS(4281), + [anon_sym_extern] = ACTIONS(4281), + [anon_sym___attribute__] = ACTIONS(4281), + [anon_sym___attribute] = ACTIONS(4281), + [anon_sym_using] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4283), + [anon_sym___declspec] = ACTIONS(4281), + [anon_sym___based] = ACTIONS(4281), + [anon_sym___cdecl] = ACTIONS(4281), + [anon_sym___clrcall] = ACTIONS(4281), + [anon_sym___stdcall] = ACTIONS(4281), + [anon_sym___fastcall] = ACTIONS(4281), + [anon_sym___thiscall] = ACTIONS(4281), + [anon_sym___vectorcall] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4283), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_signed] = ACTIONS(4281), + [anon_sym_unsigned] = ACTIONS(4281), + [anon_sym_long] = ACTIONS(4281), + [anon_sym_short] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_static] = ACTIONS(4281), + [anon_sym_register] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym___inline] = ACTIONS(4281), + [anon_sym___inline__] = ACTIONS(4281), + [anon_sym___forceinline] = ACTIONS(4281), + [anon_sym_thread_local] = ACTIONS(4281), + [anon_sym___thread] = ACTIONS(4281), + [anon_sym_const] = ACTIONS(4281), + [anon_sym_constexpr] = ACTIONS(4281), + [anon_sym_volatile] = ACTIONS(4281), + [anon_sym_restrict] = ACTIONS(4281), + [anon_sym___restrict__] = ACTIONS(4281), + [anon_sym__Atomic] = ACTIONS(4281), + [anon_sym__Noreturn] = ACTIONS(4281), + [anon_sym_noreturn] = ACTIONS(4281), + [anon_sym__Nonnull] = ACTIONS(4281), + [anon_sym_mutable] = ACTIONS(4281), + [anon_sym_constinit] = ACTIONS(4281), + [anon_sym_consteval] = ACTIONS(4281), + [anon_sym_alignas] = ACTIONS(4281), + [anon_sym__Alignas] = ACTIONS(4281), + [sym_primitive_type] = ACTIONS(4281), + [anon_sym_enum] = ACTIONS(4281), + [anon_sym_class] = ACTIONS(4281), + [anon_sym_struct] = ACTIONS(4281), + [anon_sym_union] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_switch] = ACTIONS(4281), + [anon_sym_case] = ACTIONS(4281), + [anon_sym_default] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_do] = ACTIONS(4281), + [anon_sym_for] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_goto] = ACTIONS(4281), + [anon_sym___try] = ACTIONS(4281), + [anon_sym___leave] = ACTIONS(4281), + [anon_sym_not] = ACTIONS(4281), + [anon_sym_compl] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_sizeof] = ACTIONS(4281), + [anon_sym___alignof__] = ACTIONS(4281), + [anon_sym___alignof] = ACTIONS(4281), + [anon_sym__alignof] = ACTIONS(4281), + [anon_sym_alignof] = ACTIONS(4281), + [anon_sym__Alignof] = ACTIONS(4281), + [anon_sym_offsetof] = ACTIONS(4281), + [anon_sym__Generic] = ACTIONS(4281), + [anon_sym_typename] = ACTIONS(4281), + [anon_sym_asm] = ACTIONS(4281), + [anon_sym___asm__] = ACTIONS(4281), + [anon_sym___asm] = ACTIONS(4281), + [sym_number_literal] = ACTIONS(4283), + [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(4283), + [anon_sym_u_DQUOTE] = ACTIONS(4283), + [anon_sym_U_DQUOTE] = ACTIONS(4283), + [anon_sym_u8_DQUOTE] = ACTIONS(4283), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym_true] = ACTIONS(4281), + [sym_false] = ACTIONS(4281), + [anon_sym_NULL] = ACTIONS(4281), + [anon_sym_nullptr] = ACTIONS(4281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4281), + [anon_sym_decltype] = ACTIONS(4281), + [anon_sym_explicit] = ACTIONS(4281), + [anon_sym_export] = ACTIONS(4281), + [anon_sym_import] = ACTIONS(4281), + [anon_sym_template] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_delete] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_namespace] = ACTIONS(4281), + [anon_sym_static_assert] = ACTIONS(4281), + [anon_sym_concept] = ACTIONS(4281), + [anon_sym_co_return] = ACTIONS(4281), + [anon_sym_co_yield] = ACTIONS(4281), + [anon_sym_R_DQUOTE] = ACTIONS(4283), + [anon_sym_LR_DQUOTE] = ACTIONS(4283), + [anon_sym_uR_DQUOTE] = ACTIONS(4283), + [anon_sym_UR_DQUOTE] = ACTIONS(4283), + [anon_sym_u8R_DQUOTE] = ACTIONS(4283), + [anon_sym_co_await] = ACTIONS(4281), + [anon_sym_new] = ACTIONS(4281), + [anon_sym_requires] = ACTIONS(4281), + [anon_sym_CARET_CARET] = ACTIONS(4283), + [anon_sym_LBRACK_COLON] = ACTIONS(4283), + [sym_this] = ACTIONS(4281), + }, + [STATE(856)] = { + [sym_identifier] = ACTIONS(3726), + [aux_sym_preproc_include_token1] = ACTIONS(3726), + [aux_sym_preproc_def_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token1] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3726), + [sym_preproc_directive] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_BANG] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(3726), + [anon_sym_typedef] = ACTIONS(3726), + [anon_sym_virtual] = ACTIONS(3726), + [anon_sym_extern] = ACTIONS(3726), + [anon_sym___attribute__] = ACTIONS(3726), + [anon_sym___attribute] = ACTIONS(3726), + [anon_sym_using] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3728), + [anon_sym___declspec] = ACTIONS(3726), + [anon_sym___based] = ACTIONS(3726), + [anon_sym___cdecl] = ACTIONS(3726), + [anon_sym___clrcall] = ACTIONS(3726), + [anon_sym___stdcall] = ACTIONS(3726), + [anon_sym___fastcall] = ACTIONS(3726), + [anon_sym___thiscall] = ACTIONS(3726), + [anon_sym___vectorcall] = ACTIONS(3726), + [anon_sym_LBRACE] = ACTIONS(3728), + [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_signed] = ACTIONS(3726), + [anon_sym_unsigned] = ACTIONS(3726), + [anon_sym_long] = ACTIONS(3726), + [anon_sym_short] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_static] = ACTIONS(3726), + [anon_sym_register] = ACTIONS(3726), + [anon_sym_inline] = ACTIONS(3726), + [anon_sym___inline] = ACTIONS(3726), + [anon_sym___inline__] = ACTIONS(3726), + [anon_sym___forceinline] = ACTIONS(3726), + [anon_sym_thread_local] = ACTIONS(3726), + [anon_sym___thread] = ACTIONS(3726), + [anon_sym_const] = ACTIONS(3726), + [anon_sym_constexpr] = ACTIONS(3726), + [anon_sym_volatile] = ACTIONS(3726), + [anon_sym_restrict] = ACTIONS(3726), + [anon_sym___restrict__] = ACTIONS(3726), + [anon_sym__Atomic] = ACTIONS(3726), + [anon_sym__Noreturn] = ACTIONS(3726), + [anon_sym_noreturn] = ACTIONS(3726), + [anon_sym__Nonnull] = ACTIONS(3726), + [anon_sym_mutable] = ACTIONS(3726), + [anon_sym_constinit] = ACTIONS(3726), + [anon_sym_consteval] = ACTIONS(3726), + [anon_sym_alignas] = ACTIONS(3726), + [anon_sym__Alignas] = ACTIONS(3726), + [sym_primitive_type] = ACTIONS(3726), + [anon_sym_enum] = ACTIONS(3726), + [anon_sym_class] = ACTIONS(3726), + [anon_sym_struct] = ACTIONS(3726), + [anon_sym_union] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_switch] = ACTIONS(3726), + [anon_sym_case] = ACTIONS(3726), + [anon_sym_default] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_break] = ACTIONS(3726), + [anon_sym_continue] = ACTIONS(3726), + [anon_sym_goto] = ACTIONS(3726), + [anon_sym___try] = ACTIONS(3726), + [anon_sym___leave] = ACTIONS(3726), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3728), + [anon_sym_PLUS_PLUS] = ACTIONS(3728), + [anon_sym_sizeof] = ACTIONS(3726), + [anon_sym___alignof__] = ACTIONS(3726), + [anon_sym___alignof] = ACTIONS(3726), + [anon_sym__alignof] = ACTIONS(3726), + [anon_sym_alignof] = ACTIONS(3726), + [anon_sym__Alignof] = ACTIONS(3726), + [anon_sym_offsetof] = ACTIONS(3726), + [anon_sym__Generic] = ACTIONS(3726), + [anon_sym_typename] = ACTIONS(3726), + [anon_sym_asm] = ACTIONS(3726), + [anon_sym___asm__] = ACTIONS(3726), + [anon_sym___asm] = ACTIONS(3726), + [sym_number_literal] = ACTIONS(3728), + [anon_sym_L_SQUOTE] = ACTIONS(3728), + [anon_sym_u_SQUOTE] = ACTIONS(3728), + [anon_sym_U_SQUOTE] = ACTIONS(3728), + [anon_sym_u8_SQUOTE] = ACTIONS(3728), + [anon_sym_SQUOTE] = ACTIONS(3728), + [anon_sym_L_DQUOTE] = ACTIONS(3728), + [anon_sym_u_DQUOTE] = ACTIONS(3728), + [anon_sym_U_DQUOTE] = ACTIONS(3728), + [anon_sym_u8_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE] = ACTIONS(3728), + [sym_true] = ACTIONS(3726), + [sym_false] = ACTIONS(3726), + [anon_sym_NULL] = ACTIONS(3726), + [anon_sym_nullptr] = ACTIONS(3726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3726), + [anon_sym_decltype] = ACTIONS(3726), + [anon_sym_explicit] = ACTIONS(3726), + [anon_sym_export] = ACTIONS(3726), + [anon_sym_import] = ACTIONS(3726), + [anon_sym_template] = ACTIONS(3726), + [anon_sym_operator] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_delete] = ACTIONS(3726), + [anon_sym_throw] = ACTIONS(3726), + [anon_sym_namespace] = ACTIONS(3726), + [anon_sym_static_assert] = ACTIONS(3726), + [anon_sym_concept] = ACTIONS(3726), + [anon_sym_co_return] = ACTIONS(3726), + [anon_sym_co_yield] = ACTIONS(3726), + [anon_sym_R_DQUOTE] = ACTIONS(3728), + [anon_sym_LR_DQUOTE] = ACTIONS(3728), + [anon_sym_uR_DQUOTE] = ACTIONS(3728), + [anon_sym_UR_DQUOTE] = ACTIONS(3728), + [anon_sym_u8R_DQUOTE] = ACTIONS(3728), + [anon_sym_co_await] = ACTIONS(3726), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_requires] = ACTIONS(3726), + [anon_sym_CARET_CARET] = ACTIONS(3728), + [anon_sym_LBRACK_COLON] = ACTIONS(3728), + [sym_this] = ACTIONS(3726), + }, [STATE(857)] = { - [sym_identifier] = ACTIONS(3988), - [aux_sym_preproc_include_token1] = ACTIONS(3988), - [aux_sym_preproc_def_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token1] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), - [sym_preproc_directive] = ACTIONS(3988), - [anon_sym_LPAREN2] = ACTIONS(3990), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_TILDE] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3988), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3988), - [anon_sym_SEMI] = ACTIONS(3990), - [anon_sym___extension__] = ACTIONS(3988), - [anon_sym_typedef] = ACTIONS(3988), - [anon_sym_virtual] = ACTIONS(3988), - [anon_sym_extern] = ACTIONS(3988), - [anon_sym___attribute__] = ACTIONS(3988), - [anon_sym___attribute] = ACTIONS(3988), - [anon_sym_using] = ACTIONS(3988), - [anon_sym_COLON_COLON] = ACTIONS(3990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), - [anon_sym___declspec] = ACTIONS(3988), - [anon_sym___based] = ACTIONS(3988), - [anon_sym___cdecl] = ACTIONS(3988), - [anon_sym___clrcall] = ACTIONS(3988), - [anon_sym___stdcall] = ACTIONS(3988), - [anon_sym___fastcall] = ACTIONS(3988), - [anon_sym___thiscall] = ACTIONS(3988), - [anon_sym___vectorcall] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_RBRACE] = ACTIONS(3990), - [anon_sym_signed] = ACTIONS(3988), - [anon_sym_unsigned] = ACTIONS(3988), - [anon_sym_long] = ACTIONS(3988), - [anon_sym_short] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_static] = ACTIONS(3988), - [anon_sym_register] = ACTIONS(3988), - [anon_sym_inline] = ACTIONS(3988), - [anon_sym___inline] = ACTIONS(3988), - [anon_sym___inline__] = ACTIONS(3988), - [anon_sym___forceinline] = ACTIONS(3988), - [anon_sym_thread_local] = ACTIONS(3988), - [anon_sym___thread] = ACTIONS(3988), - [anon_sym_const] = ACTIONS(3988), - [anon_sym_constexpr] = ACTIONS(3988), - [anon_sym_volatile] = ACTIONS(3988), - [anon_sym_restrict] = ACTIONS(3988), - [anon_sym___restrict__] = ACTIONS(3988), - [anon_sym__Atomic] = ACTIONS(3988), - [anon_sym__Noreturn] = ACTIONS(3988), - [anon_sym_noreturn] = ACTIONS(3988), - [anon_sym__Nonnull] = ACTIONS(3988), - [anon_sym_mutable] = ACTIONS(3988), - [anon_sym_constinit] = ACTIONS(3988), - [anon_sym_consteval] = ACTIONS(3988), - [anon_sym_alignas] = ACTIONS(3988), - [anon_sym__Alignas] = ACTIONS(3988), - [sym_primitive_type] = ACTIONS(3988), - [anon_sym_enum] = ACTIONS(3988), - [anon_sym_class] = ACTIONS(3988), - [anon_sym_struct] = ACTIONS(3988), - [anon_sym_union] = ACTIONS(3988), - [anon_sym_if] = ACTIONS(3988), - [anon_sym_switch] = ACTIONS(3988), - [anon_sym_case] = ACTIONS(3988), - [anon_sym_default] = ACTIONS(3988), - [anon_sym_while] = ACTIONS(3988), - [anon_sym_do] = ACTIONS(3988), - [anon_sym_for] = ACTIONS(3988), - [anon_sym_return] = ACTIONS(3988), - [anon_sym_break] = ACTIONS(3988), - [anon_sym_continue] = ACTIONS(3988), - [anon_sym_goto] = ACTIONS(3988), - [anon_sym___try] = ACTIONS(3988), - [anon_sym___leave] = ACTIONS(3988), - [anon_sym_not] = ACTIONS(3988), - [anon_sym_compl] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3990), - [anon_sym_sizeof] = ACTIONS(3988), - [anon_sym___alignof__] = ACTIONS(3988), - [anon_sym___alignof] = ACTIONS(3988), - [anon_sym__alignof] = ACTIONS(3988), - [anon_sym_alignof] = ACTIONS(3988), - [anon_sym__Alignof] = ACTIONS(3988), - [anon_sym_offsetof] = ACTIONS(3988), - [anon_sym__Generic] = ACTIONS(3988), - [anon_sym_typename] = ACTIONS(3988), - [anon_sym_asm] = ACTIONS(3988), - [anon_sym___asm__] = ACTIONS(3988), - [anon_sym___asm] = ACTIONS(3988), - [sym_number_literal] = ACTIONS(3990), - [anon_sym_L_SQUOTE] = ACTIONS(3990), - [anon_sym_u_SQUOTE] = ACTIONS(3990), - [anon_sym_U_SQUOTE] = ACTIONS(3990), - [anon_sym_u8_SQUOTE] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3990), - [anon_sym_L_DQUOTE] = ACTIONS(3990), - [anon_sym_u_DQUOTE] = ACTIONS(3990), - [anon_sym_U_DQUOTE] = ACTIONS(3990), - [anon_sym_u8_DQUOTE] = ACTIONS(3990), - [anon_sym_DQUOTE] = ACTIONS(3990), - [sym_true] = ACTIONS(3988), - [sym_false] = ACTIONS(3988), - [anon_sym_NULL] = ACTIONS(3988), - [anon_sym_nullptr] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3988), - [anon_sym_decltype] = ACTIONS(3988), - [anon_sym_explicit] = ACTIONS(3988), - [anon_sym_export] = ACTIONS(3988), - [anon_sym_import] = ACTIONS(3988), - [anon_sym_template] = ACTIONS(3988), - [anon_sym_operator] = ACTIONS(3988), - [anon_sym_try] = ACTIONS(3988), - [anon_sym_delete] = ACTIONS(3988), - [anon_sym_throw] = ACTIONS(3988), - [anon_sym_namespace] = ACTIONS(3988), - [anon_sym_static_assert] = ACTIONS(3988), - [anon_sym_concept] = ACTIONS(3988), - [anon_sym_co_return] = ACTIONS(3988), - [anon_sym_co_yield] = ACTIONS(3988), - [anon_sym_R_DQUOTE] = ACTIONS(3990), - [anon_sym_LR_DQUOTE] = ACTIONS(3990), - [anon_sym_uR_DQUOTE] = ACTIONS(3990), - [anon_sym_UR_DQUOTE] = ACTIONS(3990), - [anon_sym_u8R_DQUOTE] = ACTIONS(3990), - [anon_sym_co_await] = ACTIONS(3988), - [anon_sym_new] = ACTIONS(3988), - [anon_sym_requires] = ACTIONS(3988), - [anon_sym_CARET_CARET] = ACTIONS(3990), - [anon_sym_LBRACK_COLON] = ACTIONS(3990), - [sym_this] = ACTIONS(3988), + [sym_identifier] = ACTIONS(4227), + [aux_sym_preproc_include_token1] = ACTIONS(4227), + [aux_sym_preproc_def_token1] = ACTIONS(4227), + [aux_sym_preproc_if_token1] = ACTIONS(4227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4227), + [sym_preproc_directive] = ACTIONS(4227), + [anon_sym_LPAREN2] = ACTIONS(4229), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4229), + [anon_sym_AMP_AMP] = ACTIONS(4229), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4229), + [anon_sym___extension__] = ACTIONS(4227), + [anon_sym_typedef] = ACTIONS(4227), + [anon_sym_virtual] = ACTIONS(4227), + [anon_sym_extern] = ACTIONS(4227), + [anon_sym___attribute__] = ACTIONS(4227), + [anon_sym___attribute] = ACTIONS(4227), + [anon_sym_using] = ACTIONS(4227), + [anon_sym_COLON_COLON] = ACTIONS(4229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4229), + [anon_sym___declspec] = ACTIONS(4227), + [anon_sym___based] = ACTIONS(4227), + [anon_sym___cdecl] = ACTIONS(4227), + [anon_sym___clrcall] = ACTIONS(4227), + [anon_sym___stdcall] = ACTIONS(4227), + [anon_sym___fastcall] = ACTIONS(4227), + [anon_sym___thiscall] = ACTIONS(4227), + [anon_sym___vectorcall] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_RBRACE] = ACTIONS(4229), + [anon_sym_signed] = ACTIONS(4227), + [anon_sym_unsigned] = ACTIONS(4227), + [anon_sym_long] = ACTIONS(4227), + [anon_sym_short] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4227), + [anon_sym_static] = ACTIONS(4227), + [anon_sym_register] = ACTIONS(4227), + [anon_sym_inline] = ACTIONS(4227), + [anon_sym___inline] = ACTIONS(4227), + [anon_sym___inline__] = ACTIONS(4227), + [anon_sym___forceinline] = ACTIONS(4227), + [anon_sym_thread_local] = ACTIONS(4227), + [anon_sym___thread] = ACTIONS(4227), + [anon_sym_const] = ACTIONS(4227), + [anon_sym_constexpr] = ACTIONS(4227), + [anon_sym_volatile] = ACTIONS(4227), + [anon_sym_restrict] = ACTIONS(4227), + [anon_sym___restrict__] = ACTIONS(4227), + [anon_sym__Atomic] = ACTIONS(4227), + [anon_sym__Noreturn] = ACTIONS(4227), + [anon_sym_noreturn] = ACTIONS(4227), + [anon_sym__Nonnull] = ACTIONS(4227), + [anon_sym_mutable] = ACTIONS(4227), + [anon_sym_constinit] = ACTIONS(4227), + [anon_sym_consteval] = ACTIONS(4227), + [anon_sym_alignas] = ACTIONS(4227), + [anon_sym__Alignas] = ACTIONS(4227), + [sym_primitive_type] = ACTIONS(4227), + [anon_sym_enum] = ACTIONS(4227), + [anon_sym_class] = ACTIONS(4227), + [anon_sym_struct] = ACTIONS(4227), + [anon_sym_union] = ACTIONS(4227), + [anon_sym_if] = ACTIONS(4227), + [anon_sym_switch] = ACTIONS(4227), + [anon_sym_case] = ACTIONS(4227), + [anon_sym_default] = ACTIONS(4227), + [anon_sym_while] = ACTIONS(4227), + [anon_sym_do] = ACTIONS(4227), + [anon_sym_for] = ACTIONS(4227), + [anon_sym_return] = ACTIONS(4227), + [anon_sym_break] = ACTIONS(4227), + [anon_sym_continue] = ACTIONS(4227), + [anon_sym_goto] = ACTIONS(4227), + [anon_sym___try] = ACTIONS(4227), + [anon_sym___leave] = ACTIONS(4227), + [anon_sym_not] = ACTIONS(4227), + [anon_sym_compl] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_PLUS_PLUS] = ACTIONS(4229), + [anon_sym_sizeof] = ACTIONS(4227), + [anon_sym___alignof__] = ACTIONS(4227), + [anon_sym___alignof] = ACTIONS(4227), + [anon_sym__alignof] = ACTIONS(4227), + [anon_sym_alignof] = ACTIONS(4227), + [anon_sym__Alignof] = ACTIONS(4227), + [anon_sym_offsetof] = ACTIONS(4227), + [anon_sym__Generic] = ACTIONS(4227), + [anon_sym_typename] = ACTIONS(4227), + [anon_sym_asm] = ACTIONS(4227), + [anon_sym___asm__] = ACTIONS(4227), + [anon_sym___asm] = ACTIONS(4227), + [sym_number_literal] = ACTIONS(4229), + [anon_sym_L_SQUOTE] = ACTIONS(4229), + [anon_sym_u_SQUOTE] = ACTIONS(4229), + [anon_sym_U_SQUOTE] = ACTIONS(4229), + [anon_sym_u8_SQUOTE] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4229), + [anon_sym_L_DQUOTE] = ACTIONS(4229), + [anon_sym_u_DQUOTE] = ACTIONS(4229), + [anon_sym_U_DQUOTE] = ACTIONS(4229), + [anon_sym_u8_DQUOTE] = ACTIONS(4229), + [anon_sym_DQUOTE] = ACTIONS(4229), + [sym_true] = ACTIONS(4227), + [sym_false] = ACTIONS(4227), + [anon_sym_NULL] = ACTIONS(4227), + [anon_sym_nullptr] = ACTIONS(4227), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4227), + [anon_sym_decltype] = ACTIONS(4227), + [anon_sym_explicit] = ACTIONS(4227), + [anon_sym_export] = ACTIONS(4227), + [anon_sym_import] = ACTIONS(4227), + [anon_sym_template] = ACTIONS(4227), + [anon_sym_operator] = ACTIONS(4227), + [anon_sym_try] = ACTIONS(4227), + [anon_sym_delete] = ACTIONS(4227), + [anon_sym_throw] = ACTIONS(4227), + [anon_sym_namespace] = ACTIONS(4227), + [anon_sym_static_assert] = ACTIONS(4227), + [anon_sym_concept] = ACTIONS(4227), + [anon_sym_co_return] = ACTIONS(4227), + [anon_sym_co_yield] = ACTIONS(4227), + [anon_sym_R_DQUOTE] = ACTIONS(4229), + [anon_sym_LR_DQUOTE] = ACTIONS(4229), + [anon_sym_uR_DQUOTE] = ACTIONS(4229), + [anon_sym_UR_DQUOTE] = ACTIONS(4229), + [anon_sym_u8R_DQUOTE] = ACTIONS(4229), + [anon_sym_co_await] = ACTIONS(4227), + [anon_sym_new] = ACTIONS(4227), + [anon_sym_requires] = ACTIONS(4227), + [anon_sym_CARET_CARET] = ACTIONS(4229), + [anon_sym_LBRACK_COLON] = ACTIONS(4229), + [sym_this] = ACTIONS(4227), }, [STATE(858)] = { - [sym_identifier] = ACTIONS(4024), - [aux_sym_preproc_include_token1] = ACTIONS(4024), - [aux_sym_preproc_def_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), - [sym_preproc_directive] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [anon_sym_DASH] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym___extension__] = ACTIONS(4024), - [anon_sym_typedef] = ACTIONS(4024), - [anon_sym_virtual] = ACTIONS(4024), - [anon_sym_extern] = ACTIONS(4024), - [anon_sym___attribute__] = ACTIONS(4024), - [anon_sym___attribute] = ACTIONS(4024), - [anon_sym_using] = ACTIONS(4024), - [anon_sym_COLON_COLON] = ACTIONS(4026), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), - [anon_sym___declspec] = ACTIONS(4024), - [anon_sym___based] = ACTIONS(4024), - [anon_sym___cdecl] = ACTIONS(4024), - [anon_sym___clrcall] = ACTIONS(4024), - [anon_sym___stdcall] = ACTIONS(4024), - [anon_sym___fastcall] = ACTIONS(4024), - [anon_sym___thiscall] = ACTIONS(4024), - [anon_sym___vectorcall] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_RBRACE] = ACTIONS(4026), - [anon_sym_signed] = ACTIONS(4024), - [anon_sym_unsigned] = ACTIONS(4024), - [anon_sym_long] = ACTIONS(4024), - [anon_sym_short] = ACTIONS(4024), - [anon_sym_LBRACK] = ACTIONS(4024), - [anon_sym_static] = ACTIONS(4024), - [anon_sym_register] = ACTIONS(4024), - [anon_sym_inline] = ACTIONS(4024), - [anon_sym___inline] = ACTIONS(4024), - [anon_sym___inline__] = ACTIONS(4024), - [anon_sym___forceinline] = ACTIONS(4024), - [anon_sym_thread_local] = ACTIONS(4024), - [anon_sym___thread] = ACTIONS(4024), - [anon_sym_const] = ACTIONS(4024), - [anon_sym_constexpr] = ACTIONS(4024), - [anon_sym_volatile] = ACTIONS(4024), - [anon_sym_restrict] = ACTIONS(4024), - [anon_sym___restrict__] = ACTIONS(4024), - [anon_sym__Atomic] = ACTIONS(4024), - [anon_sym__Noreturn] = ACTIONS(4024), - [anon_sym_noreturn] = ACTIONS(4024), - [anon_sym__Nonnull] = ACTIONS(4024), - [anon_sym_mutable] = ACTIONS(4024), - [anon_sym_constinit] = ACTIONS(4024), - [anon_sym_consteval] = ACTIONS(4024), - [anon_sym_alignas] = ACTIONS(4024), - [anon_sym__Alignas] = ACTIONS(4024), - [sym_primitive_type] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4024), - [anon_sym_class] = ACTIONS(4024), - [anon_sym_struct] = ACTIONS(4024), - [anon_sym_union] = ACTIONS(4024), - [anon_sym_if] = ACTIONS(4024), - [anon_sym_switch] = ACTIONS(4024), - [anon_sym_case] = ACTIONS(4024), - [anon_sym_default] = ACTIONS(4024), - [anon_sym_while] = ACTIONS(4024), - [anon_sym_do] = ACTIONS(4024), - [anon_sym_for] = ACTIONS(4024), - [anon_sym_return] = ACTIONS(4024), - [anon_sym_break] = ACTIONS(4024), - [anon_sym_continue] = ACTIONS(4024), - [anon_sym_goto] = ACTIONS(4024), - [anon_sym___try] = ACTIONS(4024), - [anon_sym___leave] = ACTIONS(4024), - [anon_sym_not] = ACTIONS(4024), - [anon_sym_compl] = ACTIONS(4024), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_sizeof] = ACTIONS(4024), - [anon_sym___alignof__] = ACTIONS(4024), - [anon_sym___alignof] = ACTIONS(4024), - [anon_sym__alignof] = ACTIONS(4024), - [anon_sym_alignof] = ACTIONS(4024), - [anon_sym__Alignof] = ACTIONS(4024), - [anon_sym_offsetof] = ACTIONS(4024), - [anon_sym__Generic] = ACTIONS(4024), - [anon_sym_typename] = ACTIONS(4024), - [anon_sym_asm] = ACTIONS(4024), - [anon_sym___asm__] = ACTIONS(4024), - [anon_sym___asm] = ACTIONS(4024), - [sym_number_literal] = ACTIONS(4026), - [anon_sym_L_SQUOTE] = ACTIONS(4026), - [anon_sym_u_SQUOTE] = ACTIONS(4026), - [anon_sym_U_SQUOTE] = ACTIONS(4026), - [anon_sym_u8_SQUOTE] = ACTIONS(4026), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_L_DQUOTE] = ACTIONS(4026), - [anon_sym_u_DQUOTE] = ACTIONS(4026), - [anon_sym_U_DQUOTE] = ACTIONS(4026), - [anon_sym_u8_DQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [anon_sym_NULL] = ACTIONS(4024), - [anon_sym_nullptr] = ACTIONS(4024), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4024), - [anon_sym_decltype] = ACTIONS(4024), - [anon_sym_explicit] = ACTIONS(4024), - [anon_sym_export] = ACTIONS(4024), - [anon_sym_import] = ACTIONS(4024), - [anon_sym_template] = ACTIONS(4024), - [anon_sym_operator] = ACTIONS(4024), - [anon_sym_try] = ACTIONS(4024), - [anon_sym_delete] = ACTIONS(4024), - [anon_sym_throw] = ACTIONS(4024), - [anon_sym_namespace] = ACTIONS(4024), - [anon_sym_static_assert] = ACTIONS(4024), - [anon_sym_concept] = ACTIONS(4024), - [anon_sym_co_return] = ACTIONS(4024), - [anon_sym_co_yield] = ACTIONS(4024), - [anon_sym_R_DQUOTE] = ACTIONS(4026), - [anon_sym_LR_DQUOTE] = ACTIONS(4026), - [anon_sym_uR_DQUOTE] = ACTIONS(4026), - [anon_sym_UR_DQUOTE] = ACTIONS(4026), - [anon_sym_u8R_DQUOTE] = ACTIONS(4026), - [anon_sym_co_await] = ACTIONS(4024), - [anon_sym_new] = ACTIONS(4024), - [anon_sym_requires] = ACTIONS(4024), - [anon_sym_CARET_CARET] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4026), - [sym_this] = ACTIONS(4024), + [sym_identifier] = ACTIONS(4231), + [aux_sym_preproc_include_token1] = ACTIONS(4231), + [aux_sym_preproc_def_token1] = ACTIONS(4231), + [aux_sym_preproc_if_token1] = ACTIONS(4231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4231), + [sym_preproc_directive] = ACTIONS(4231), + [anon_sym_LPAREN2] = ACTIONS(4233), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_TILDE] = ACTIONS(4233), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_AMP_AMP] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym___extension__] = ACTIONS(4231), + [anon_sym_typedef] = ACTIONS(4231), + [anon_sym_virtual] = ACTIONS(4231), + [anon_sym_extern] = ACTIONS(4231), + [anon_sym___attribute__] = ACTIONS(4231), + [anon_sym___attribute] = ACTIONS(4231), + [anon_sym_using] = ACTIONS(4231), + [anon_sym_COLON_COLON] = ACTIONS(4233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4233), + [anon_sym___declspec] = ACTIONS(4231), + [anon_sym___based] = ACTIONS(4231), + [anon_sym___cdecl] = ACTIONS(4231), + [anon_sym___clrcall] = ACTIONS(4231), + [anon_sym___stdcall] = ACTIONS(4231), + [anon_sym___fastcall] = ACTIONS(4231), + [anon_sym___thiscall] = ACTIONS(4231), + [anon_sym___vectorcall] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4233), + [anon_sym_RBRACE] = ACTIONS(4233), + [anon_sym_signed] = ACTIONS(4231), + [anon_sym_unsigned] = ACTIONS(4231), + [anon_sym_long] = ACTIONS(4231), + [anon_sym_short] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_static] = ACTIONS(4231), + [anon_sym_register] = ACTIONS(4231), + [anon_sym_inline] = ACTIONS(4231), + [anon_sym___inline] = ACTIONS(4231), + [anon_sym___inline__] = ACTIONS(4231), + [anon_sym___forceinline] = ACTIONS(4231), + [anon_sym_thread_local] = ACTIONS(4231), + [anon_sym___thread] = ACTIONS(4231), + [anon_sym_const] = ACTIONS(4231), + [anon_sym_constexpr] = ACTIONS(4231), + [anon_sym_volatile] = ACTIONS(4231), + [anon_sym_restrict] = ACTIONS(4231), + [anon_sym___restrict__] = ACTIONS(4231), + [anon_sym__Atomic] = ACTIONS(4231), + [anon_sym__Noreturn] = ACTIONS(4231), + [anon_sym_noreturn] = ACTIONS(4231), + [anon_sym__Nonnull] = ACTIONS(4231), + [anon_sym_mutable] = ACTIONS(4231), + [anon_sym_constinit] = ACTIONS(4231), + [anon_sym_consteval] = ACTIONS(4231), + [anon_sym_alignas] = ACTIONS(4231), + [anon_sym__Alignas] = ACTIONS(4231), + [sym_primitive_type] = ACTIONS(4231), + [anon_sym_enum] = ACTIONS(4231), + [anon_sym_class] = ACTIONS(4231), + [anon_sym_struct] = ACTIONS(4231), + [anon_sym_union] = ACTIONS(4231), + [anon_sym_if] = ACTIONS(4231), + [anon_sym_switch] = ACTIONS(4231), + [anon_sym_case] = ACTIONS(4231), + [anon_sym_default] = ACTIONS(4231), + [anon_sym_while] = ACTIONS(4231), + [anon_sym_do] = ACTIONS(4231), + [anon_sym_for] = ACTIONS(4231), + [anon_sym_return] = ACTIONS(4231), + [anon_sym_break] = ACTIONS(4231), + [anon_sym_continue] = ACTIONS(4231), + [anon_sym_goto] = ACTIONS(4231), + [anon_sym___try] = ACTIONS(4231), + [anon_sym___leave] = ACTIONS(4231), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_compl] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_PLUS_PLUS] = ACTIONS(4233), + [anon_sym_sizeof] = ACTIONS(4231), + [anon_sym___alignof__] = ACTIONS(4231), + [anon_sym___alignof] = ACTIONS(4231), + [anon_sym__alignof] = ACTIONS(4231), + [anon_sym_alignof] = ACTIONS(4231), + [anon_sym__Alignof] = ACTIONS(4231), + [anon_sym_offsetof] = ACTIONS(4231), + [anon_sym__Generic] = ACTIONS(4231), + [anon_sym_typename] = ACTIONS(4231), + [anon_sym_asm] = ACTIONS(4231), + [anon_sym___asm__] = ACTIONS(4231), + [anon_sym___asm] = ACTIONS(4231), + [sym_number_literal] = ACTIONS(4233), + [anon_sym_L_SQUOTE] = ACTIONS(4233), + [anon_sym_u_SQUOTE] = ACTIONS(4233), + [anon_sym_U_SQUOTE] = ACTIONS(4233), + [anon_sym_u8_SQUOTE] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4233), + [anon_sym_L_DQUOTE] = ACTIONS(4233), + [anon_sym_u_DQUOTE] = ACTIONS(4233), + [anon_sym_U_DQUOTE] = ACTIONS(4233), + [anon_sym_u8_DQUOTE] = ACTIONS(4233), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym_true] = ACTIONS(4231), + [sym_false] = ACTIONS(4231), + [anon_sym_NULL] = ACTIONS(4231), + [anon_sym_nullptr] = ACTIONS(4231), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4231), + [anon_sym_decltype] = ACTIONS(4231), + [anon_sym_explicit] = ACTIONS(4231), + [anon_sym_export] = ACTIONS(4231), + [anon_sym_import] = ACTIONS(4231), + [anon_sym_template] = ACTIONS(4231), + [anon_sym_operator] = ACTIONS(4231), + [anon_sym_try] = ACTIONS(4231), + [anon_sym_delete] = ACTIONS(4231), + [anon_sym_throw] = ACTIONS(4231), + [anon_sym_namespace] = ACTIONS(4231), + [anon_sym_static_assert] = ACTIONS(4231), + [anon_sym_concept] = ACTIONS(4231), + [anon_sym_co_return] = ACTIONS(4231), + [anon_sym_co_yield] = ACTIONS(4231), + [anon_sym_R_DQUOTE] = ACTIONS(4233), + [anon_sym_LR_DQUOTE] = ACTIONS(4233), + [anon_sym_uR_DQUOTE] = ACTIONS(4233), + [anon_sym_UR_DQUOTE] = ACTIONS(4233), + [anon_sym_u8R_DQUOTE] = ACTIONS(4233), + [anon_sym_co_await] = ACTIONS(4231), + [anon_sym_new] = ACTIONS(4231), + [anon_sym_requires] = ACTIONS(4231), + [anon_sym_CARET_CARET] = ACTIONS(4233), + [anon_sym_LBRACK_COLON] = ACTIONS(4233), + [sym_this] = ACTIONS(4231), }, [STATE(859)] = { - [sym_identifier] = ACTIONS(4020), - [aux_sym_preproc_include_token1] = ACTIONS(4020), - [aux_sym_preproc_def_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token1] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), - [sym_preproc_directive] = ACTIONS(4020), - [anon_sym_LPAREN2] = ACTIONS(4022), - [anon_sym_BANG] = ACTIONS(4022), - [anon_sym_TILDE] = ACTIONS(4022), - [anon_sym_DASH] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4020), - [anon_sym_STAR] = ACTIONS(4022), - [anon_sym_AMP_AMP] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_SEMI] = ACTIONS(4022), - [anon_sym___extension__] = ACTIONS(4020), - [anon_sym_typedef] = ACTIONS(4020), - [anon_sym_virtual] = ACTIONS(4020), - [anon_sym_extern] = ACTIONS(4020), - [anon_sym___attribute__] = ACTIONS(4020), - [anon_sym___attribute] = ACTIONS(4020), - [anon_sym_using] = ACTIONS(4020), - [anon_sym_COLON_COLON] = ACTIONS(4022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), - [anon_sym___declspec] = ACTIONS(4020), - [anon_sym___based] = ACTIONS(4020), - [anon_sym___cdecl] = ACTIONS(4020), - [anon_sym___clrcall] = ACTIONS(4020), - [anon_sym___stdcall] = ACTIONS(4020), - [anon_sym___fastcall] = ACTIONS(4020), - [anon_sym___thiscall] = ACTIONS(4020), - [anon_sym___vectorcall] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_RBRACE] = ACTIONS(4022), - [anon_sym_signed] = ACTIONS(4020), - [anon_sym_unsigned] = ACTIONS(4020), - [anon_sym_long] = ACTIONS(4020), - [anon_sym_short] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_static] = ACTIONS(4020), - [anon_sym_register] = ACTIONS(4020), - [anon_sym_inline] = ACTIONS(4020), - [anon_sym___inline] = ACTIONS(4020), - [anon_sym___inline__] = ACTIONS(4020), - [anon_sym___forceinline] = ACTIONS(4020), - [anon_sym_thread_local] = ACTIONS(4020), - [anon_sym___thread] = ACTIONS(4020), - [anon_sym_const] = ACTIONS(4020), - [anon_sym_constexpr] = ACTIONS(4020), - [anon_sym_volatile] = ACTIONS(4020), - [anon_sym_restrict] = ACTIONS(4020), - [anon_sym___restrict__] = ACTIONS(4020), - [anon_sym__Atomic] = ACTIONS(4020), - [anon_sym__Noreturn] = ACTIONS(4020), - [anon_sym_noreturn] = ACTIONS(4020), - [anon_sym__Nonnull] = ACTIONS(4020), - [anon_sym_mutable] = ACTIONS(4020), - [anon_sym_constinit] = ACTIONS(4020), - [anon_sym_consteval] = ACTIONS(4020), - [anon_sym_alignas] = ACTIONS(4020), - [anon_sym__Alignas] = ACTIONS(4020), - [sym_primitive_type] = ACTIONS(4020), - [anon_sym_enum] = ACTIONS(4020), - [anon_sym_class] = ACTIONS(4020), - [anon_sym_struct] = ACTIONS(4020), - [anon_sym_union] = ACTIONS(4020), - [anon_sym_if] = ACTIONS(4020), - [anon_sym_switch] = ACTIONS(4020), - [anon_sym_case] = ACTIONS(4020), - [anon_sym_default] = ACTIONS(4020), - [anon_sym_while] = ACTIONS(4020), - [anon_sym_do] = ACTIONS(4020), - [anon_sym_for] = ACTIONS(4020), - [anon_sym_return] = ACTIONS(4020), - [anon_sym_break] = ACTIONS(4020), - [anon_sym_continue] = ACTIONS(4020), - [anon_sym_goto] = ACTIONS(4020), - [anon_sym___try] = ACTIONS(4020), - [anon_sym___leave] = ACTIONS(4020), - [anon_sym_not] = ACTIONS(4020), - [anon_sym_compl] = ACTIONS(4020), - [anon_sym_DASH_DASH] = ACTIONS(4022), - [anon_sym_PLUS_PLUS] = ACTIONS(4022), - [anon_sym_sizeof] = ACTIONS(4020), - [anon_sym___alignof__] = ACTIONS(4020), - [anon_sym___alignof] = ACTIONS(4020), - [anon_sym__alignof] = ACTIONS(4020), - [anon_sym_alignof] = ACTIONS(4020), - [anon_sym__Alignof] = ACTIONS(4020), - [anon_sym_offsetof] = ACTIONS(4020), - [anon_sym__Generic] = ACTIONS(4020), - [anon_sym_typename] = ACTIONS(4020), - [anon_sym_asm] = ACTIONS(4020), - [anon_sym___asm__] = ACTIONS(4020), - [anon_sym___asm] = ACTIONS(4020), - [sym_number_literal] = ACTIONS(4022), - [anon_sym_L_SQUOTE] = ACTIONS(4022), - [anon_sym_u_SQUOTE] = ACTIONS(4022), - [anon_sym_U_SQUOTE] = ACTIONS(4022), - [anon_sym_u8_SQUOTE] = ACTIONS(4022), - [anon_sym_SQUOTE] = ACTIONS(4022), - [anon_sym_L_DQUOTE] = ACTIONS(4022), - [anon_sym_u_DQUOTE] = ACTIONS(4022), - [anon_sym_U_DQUOTE] = ACTIONS(4022), - [anon_sym_u8_DQUOTE] = ACTIONS(4022), - [anon_sym_DQUOTE] = ACTIONS(4022), - [sym_true] = ACTIONS(4020), - [sym_false] = ACTIONS(4020), - [anon_sym_NULL] = ACTIONS(4020), - [anon_sym_nullptr] = ACTIONS(4020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4020), - [anon_sym_decltype] = ACTIONS(4020), - [anon_sym_explicit] = ACTIONS(4020), - [anon_sym_export] = ACTIONS(4020), - [anon_sym_import] = ACTIONS(4020), - [anon_sym_template] = ACTIONS(4020), - [anon_sym_operator] = ACTIONS(4020), - [anon_sym_try] = ACTIONS(4020), - [anon_sym_delete] = ACTIONS(4020), - [anon_sym_throw] = ACTIONS(4020), - [anon_sym_namespace] = ACTIONS(4020), - [anon_sym_static_assert] = ACTIONS(4020), - [anon_sym_concept] = ACTIONS(4020), - [anon_sym_co_return] = ACTIONS(4020), - [anon_sym_co_yield] = ACTIONS(4020), - [anon_sym_R_DQUOTE] = ACTIONS(4022), - [anon_sym_LR_DQUOTE] = ACTIONS(4022), - [anon_sym_uR_DQUOTE] = ACTIONS(4022), - [anon_sym_UR_DQUOTE] = ACTIONS(4022), - [anon_sym_u8R_DQUOTE] = ACTIONS(4022), - [anon_sym_co_await] = ACTIONS(4020), - [anon_sym_new] = ACTIONS(4020), - [anon_sym_requires] = ACTIONS(4020), - [anon_sym_CARET_CARET] = ACTIONS(4022), - [anon_sym_LBRACK_COLON] = ACTIONS(4022), - [sym_this] = ACTIONS(4020), + [sym_identifier] = ACTIONS(4285), + [aux_sym_preproc_include_token1] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4287), + [anon_sym_TILDE] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4285), + [anon_sym_PLUS] = ACTIONS(4285), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_AMP] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym___extension__] = ACTIONS(4285), + [anon_sym_typedef] = ACTIONS(4285), + [anon_sym_virtual] = ACTIONS(4285), + [anon_sym_extern] = ACTIONS(4285), + [anon_sym___attribute__] = ACTIONS(4285), + [anon_sym___attribute] = ACTIONS(4285), + [anon_sym_using] = ACTIONS(4285), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4287), + [anon_sym___declspec] = ACTIONS(4285), + [anon_sym___based] = ACTIONS(4285), + [anon_sym___cdecl] = ACTIONS(4285), + [anon_sym___clrcall] = ACTIONS(4285), + [anon_sym___stdcall] = ACTIONS(4285), + [anon_sym___fastcall] = ACTIONS(4285), + [anon_sym___thiscall] = ACTIONS(4285), + [anon_sym___vectorcall] = ACTIONS(4285), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_signed] = ACTIONS(4285), + [anon_sym_unsigned] = ACTIONS(4285), + [anon_sym_long] = ACTIONS(4285), + [anon_sym_short] = ACTIONS(4285), + [anon_sym_LBRACK] = ACTIONS(4285), + [anon_sym_static] = ACTIONS(4285), + [anon_sym_register] = ACTIONS(4285), + [anon_sym_inline] = ACTIONS(4285), + [anon_sym___inline] = ACTIONS(4285), + [anon_sym___inline__] = ACTIONS(4285), + [anon_sym___forceinline] = ACTIONS(4285), + [anon_sym_thread_local] = ACTIONS(4285), + [anon_sym___thread] = ACTIONS(4285), + [anon_sym_const] = ACTIONS(4285), + [anon_sym_constexpr] = ACTIONS(4285), + [anon_sym_volatile] = ACTIONS(4285), + [anon_sym_restrict] = ACTIONS(4285), + [anon_sym___restrict__] = ACTIONS(4285), + [anon_sym__Atomic] = ACTIONS(4285), + [anon_sym__Noreturn] = ACTIONS(4285), + [anon_sym_noreturn] = ACTIONS(4285), + [anon_sym__Nonnull] = ACTIONS(4285), + [anon_sym_mutable] = ACTIONS(4285), + [anon_sym_constinit] = ACTIONS(4285), + [anon_sym_consteval] = ACTIONS(4285), + [anon_sym_alignas] = ACTIONS(4285), + [anon_sym__Alignas] = ACTIONS(4285), + [sym_primitive_type] = ACTIONS(4285), + [anon_sym_enum] = ACTIONS(4285), + [anon_sym_class] = ACTIONS(4285), + [anon_sym_struct] = ACTIONS(4285), + [anon_sym_union] = ACTIONS(4285), + [anon_sym_if] = ACTIONS(4285), + [anon_sym_switch] = ACTIONS(4285), + [anon_sym_case] = ACTIONS(4285), + [anon_sym_default] = ACTIONS(4285), + [anon_sym_while] = ACTIONS(4285), + [anon_sym_do] = ACTIONS(4285), + [anon_sym_for] = ACTIONS(4285), + [anon_sym_return] = ACTIONS(4285), + [anon_sym_break] = ACTIONS(4285), + [anon_sym_continue] = ACTIONS(4285), + [anon_sym_goto] = ACTIONS(4285), + [anon_sym___try] = ACTIONS(4285), + [anon_sym___leave] = ACTIONS(4285), + [anon_sym_not] = ACTIONS(4285), + [anon_sym_compl] = ACTIONS(4285), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_sizeof] = ACTIONS(4285), + [anon_sym___alignof__] = ACTIONS(4285), + [anon_sym___alignof] = ACTIONS(4285), + [anon_sym__alignof] = ACTIONS(4285), + [anon_sym_alignof] = ACTIONS(4285), + [anon_sym__Alignof] = ACTIONS(4285), + [anon_sym_offsetof] = ACTIONS(4285), + [anon_sym__Generic] = ACTIONS(4285), + [anon_sym_typename] = ACTIONS(4285), + [anon_sym_asm] = ACTIONS(4285), + [anon_sym___asm__] = ACTIONS(4285), + [anon_sym___asm] = ACTIONS(4285), + [sym_number_literal] = ACTIONS(4287), + [anon_sym_L_SQUOTE] = ACTIONS(4287), + [anon_sym_u_SQUOTE] = ACTIONS(4287), + [anon_sym_U_SQUOTE] = ACTIONS(4287), + [anon_sym_u8_SQUOTE] = ACTIONS(4287), + [anon_sym_SQUOTE] = ACTIONS(4287), + [anon_sym_L_DQUOTE] = ACTIONS(4287), + [anon_sym_u_DQUOTE] = ACTIONS(4287), + [anon_sym_U_DQUOTE] = ACTIONS(4287), + [anon_sym_u8_DQUOTE] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [sym_true] = ACTIONS(4285), + [sym_false] = ACTIONS(4285), + [anon_sym_NULL] = ACTIONS(4285), + [anon_sym_nullptr] = ACTIONS(4285), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4285), + [anon_sym_decltype] = ACTIONS(4285), + [anon_sym_explicit] = ACTIONS(4285), + [anon_sym_export] = ACTIONS(4285), + [anon_sym_import] = ACTIONS(4285), + [anon_sym_template] = ACTIONS(4285), + [anon_sym_operator] = ACTIONS(4285), + [anon_sym_try] = ACTIONS(4285), + [anon_sym_delete] = ACTIONS(4285), + [anon_sym_throw] = ACTIONS(4285), + [anon_sym_namespace] = ACTIONS(4285), + [anon_sym_static_assert] = ACTIONS(4285), + [anon_sym_concept] = ACTIONS(4285), + [anon_sym_co_return] = ACTIONS(4285), + [anon_sym_co_yield] = ACTIONS(4285), + [anon_sym_R_DQUOTE] = ACTIONS(4287), + [anon_sym_LR_DQUOTE] = ACTIONS(4287), + [anon_sym_uR_DQUOTE] = ACTIONS(4287), + [anon_sym_UR_DQUOTE] = ACTIONS(4287), + [anon_sym_u8R_DQUOTE] = ACTIONS(4287), + [anon_sym_co_await] = ACTIONS(4285), + [anon_sym_new] = ACTIONS(4285), + [anon_sym_requires] = ACTIONS(4285), + [anon_sym_CARET_CARET] = ACTIONS(4287), + [anon_sym_LBRACK_COLON] = ACTIONS(4287), + [sym_this] = ACTIONS(4285), }, [STATE(860)] = { - [sym_identifier] = ACTIONS(3939), - [aux_sym_preproc_include_token1] = ACTIONS(3939), - [aux_sym_preproc_def_token1] = ACTIONS(3939), - [aux_sym_preproc_if_token1] = ACTIONS(3939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3939), - [sym_preproc_directive] = ACTIONS(3939), - [anon_sym_LPAREN2] = ACTIONS(3941), - [anon_sym_BANG] = ACTIONS(3941), - [anon_sym_TILDE] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3939), - [anon_sym_PLUS] = ACTIONS(3939), - [anon_sym_STAR] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym___extension__] = ACTIONS(3939), - [anon_sym_typedef] = ACTIONS(3939), - [anon_sym_virtual] = ACTIONS(3939), - [anon_sym_extern] = ACTIONS(3939), - [anon_sym___attribute__] = ACTIONS(3939), - [anon_sym___attribute] = ACTIONS(3939), - [anon_sym_using] = ACTIONS(3939), - [anon_sym_COLON_COLON] = ACTIONS(3941), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3941), - [anon_sym___declspec] = ACTIONS(3939), - [anon_sym___based] = ACTIONS(3939), - [anon_sym___cdecl] = ACTIONS(3939), - [anon_sym___clrcall] = ACTIONS(3939), - [anon_sym___stdcall] = ACTIONS(3939), - [anon_sym___fastcall] = ACTIONS(3939), - [anon_sym___thiscall] = ACTIONS(3939), - [anon_sym___vectorcall] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_RBRACE] = ACTIONS(3941), - [anon_sym_signed] = ACTIONS(3939), - [anon_sym_unsigned] = ACTIONS(3939), - [anon_sym_long] = ACTIONS(3939), - [anon_sym_short] = ACTIONS(3939), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_static] = ACTIONS(3939), - [anon_sym_register] = ACTIONS(3939), - [anon_sym_inline] = ACTIONS(3939), - [anon_sym___inline] = ACTIONS(3939), - [anon_sym___inline__] = ACTIONS(3939), - [anon_sym___forceinline] = ACTIONS(3939), - [anon_sym_thread_local] = ACTIONS(3939), - [anon_sym___thread] = ACTIONS(3939), - [anon_sym_const] = ACTIONS(3939), - [anon_sym_constexpr] = ACTIONS(3939), - [anon_sym_volatile] = ACTIONS(3939), - [anon_sym_restrict] = ACTIONS(3939), - [anon_sym___restrict__] = ACTIONS(3939), - [anon_sym__Atomic] = ACTIONS(3939), - [anon_sym__Noreturn] = ACTIONS(3939), - [anon_sym_noreturn] = ACTIONS(3939), - [anon_sym__Nonnull] = ACTIONS(3939), - [anon_sym_mutable] = ACTIONS(3939), - [anon_sym_constinit] = ACTIONS(3939), - [anon_sym_consteval] = ACTIONS(3939), - [anon_sym_alignas] = ACTIONS(3939), - [anon_sym__Alignas] = ACTIONS(3939), - [sym_primitive_type] = ACTIONS(3939), - [anon_sym_enum] = ACTIONS(3939), - [anon_sym_class] = ACTIONS(3939), - [anon_sym_struct] = ACTIONS(3939), - [anon_sym_union] = ACTIONS(3939), - [anon_sym_if] = ACTIONS(3939), - [anon_sym_switch] = ACTIONS(3939), - [anon_sym_case] = ACTIONS(3939), - [anon_sym_default] = ACTIONS(3939), - [anon_sym_while] = ACTIONS(3939), - [anon_sym_do] = ACTIONS(3939), - [anon_sym_for] = ACTIONS(3939), - [anon_sym_return] = ACTIONS(3939), - [anon_sym_break] = ACTIONS(3939), - [anon_sym_continue] = ACTIONS(3939), - [anon_sym_goto] = ACTIONS(3939), - [anon_sym___try] = ACTIONS(3939), - [anon_sym___leave] = ACTIONS(3939), - [anon_sym_not] = ACTIONS(3939), - [anon_sym_compl] = ACTIONS(3939), - [anon_sym_DASH_DASH] = ACTIONS(3941), - [anon_sym_PLUS_PLUS] = ACTIONS(3941), - [anon_sym_sizeof] = ACTIONS(3939), - [anon_sym___alignof__] = ACTIONS(3939), - [anon_sym___alignof] = ACTIONS(3939), - [anon_sym__alignof] = ACTIONS(3939), - [anon_sym_alignof] = ACTIONS(3939), - [anon_sym__Alignof] = ACTIONS(3939), - [anon_sym_offsetof] = ACTIONS(3939), - [anon_sym__Generic] = ACTIONS(3939), - [anon_sym_typename] = ACTIONS(3939), - [anon_sym_asm] = ACTIONS(3939), - [anon_sym___asm__] = ACTIONS(3939), - [anon_sym___asm] = ACTIONS(3939), - [sym_number_literal] = ACTIONS(3941), - [anon_sym_L_SQUOTE] = ACTIONS(3941), - [anon_sym_u_SQUOTE] = ACTIONS(3941), - [anon_sym_U_SQUOTE] = ACTIONS(3941), - [anon_sym_u8_SQUOTE] = ACTIONS(3941), - [anon_sym_SQUOTE] = ACTIONS(3941), - [anon_sym_L_DQUOTE] = ACTIONS(3941), - [anon_sym_u_DQUOTE] = ACTIONS(3941), - [anon_sym_U_DQUOTE] = ACTIONS(3941), - [anon_sym_u8_DQUOTE] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [sym_true] = ACTIONS(3939), - [sym_false] = ACTIONS(3939), - [anon_sym_NULL] = ACTIONS(3939), - [anon_sym_nullptr] = ACTIONS(3939), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3939), - [anon_sym_decltype] = ACTIONS(3939), - [anon_sym_explicit] = ACTIONS(3939), - [anon_sym_export] = ACTIONS(3939), - [anon_sym_import] = ACTIONS(3939), - [anon_sym_template] = ACTIONS(3939), - [anon_sym_operator] = ACTIONS(3939), - [anon_sym_try] = ACTIONS(3939), - [anon_sym_delete] = ACTIONS(3939), - [anon_sym_throw] = ACTIONS(3939), - [anon_sym_namespace] = ACTIONS(3939), - [anon_sym_static_assert] = ACTIONS(3939), - [anon_sym_concept] = ACTIONS(3939), - [anon_sym_co_return] = ACTIONS(3939), - [anon_sym_co_yield] = ACTIONS(3939), - [anon_sym_R_DQUOTE] = ACTIONS(3941), - [anon_sym_LR_DQUOTE] = ACTIONS(3941), - [anon_sym_uR_DQUOTE] = ACTIONS(3941), - [anon_sym_UR_DQUOTE] = ACTIONS(3941), - [anon_sym_u8R_DQUOTE] = ACTIONS(3941), - [anon_sym_co_await] = ACTIONS(3939), - [anon_sym_new] = ACTIONS(3939), - [anon_sym_requires] = ACTIONS(3939), - [anon_sym_CARET_CARET] = ACTIONS(3941), - [anon_sym_LBRACK_COLON] = ACTIONS(3941), - [sym_this] = ACTIONS(3939), + [sym_identifier] = ACTIONS(4235), + [aux_sym_preproc_include_token1] = ACTIONS(4235), + [aux_sym_preproc_def_token1] = ACTIONS(4235), + [aux_sym_preproc_if_token1] = ACTIONS(4235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4235), + [sym_preproc_directive] = ACTIONS(4235), + [anon_sym_LPAREN2] = ACTIONS(4237), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_TILDE] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4237), + [anon_sym_AMP_AMP] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4237), + [anon_sym___extension__] = ACTIONS(4235), + [anon_sym_typedef] = ACTIONS(4235), + [anon_sym_virtual] = ACTIONS(4235), + [anon_sym_extern] = ACTIONS(4235), + [anon_sym___attribute__] = ACTIONS(4235), + [anon_sym___attribute] = ACTIONS(4235), + [anon_sym_using] = ACTIONS(4235), + [anon_sym_COLON_COLON] = ACTIONS(4237), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4237), + [anon_sym___declspec] = ACTIONS(4235), + [anon_sym___based] = ACTIONS(4235), + [anon_sym___cdecl] = ACTIONS(4235), + [anon_sym___clrcall] = ACTIONS(4235), + [anon_sym___stdcall] = ACTIONS(4235), + [anon_sym___fastcall] = ACTIONS(4235), + [anon_sym___thiscall] = ACTIONS(4235), + [anon_sym___vectorcall] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4237), + [anon_sym_RBRACE] = ACTIONS(4237), + [anon_sym_signed] = ACTIONS(4235), + [anon_sym_unsigned] = ACTIONS(4235), + [anon_sym_long] = ACTIONS(4235), + [anon_sym_short] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4235), + [anon_sym_static] = ACTIONS(4235), + [anon_sym_register] = ACTIONS(4235), + [anon_sym_inline] = ACTIONS(4235), + [anon_sym___inline] = ACTIONS(4235), + [anon_sym___inline__] = ACTIONS(4235), + [anon_sym___forceinline] = ACTIONS(4235), + [anon_sym_thread_local] = ACTIONS(4235), + [anon_sym___thread] = ACTIONS(4235), + [anon_sym_const] = ACTIONS(4235), + [anon_sym_constexpr] = ACTIONS(4235), + [anon_sym_volatile] = ACTIONS(4235), + [anon_sym_restrict] = ACTIONS(4235), + [anon_sym___restrict__] = ACTIONS(4235), + [anon_sym__Atomic] = ACTIONS(4235), + [anon_sym__Noreturn] = ACTIONS(4235), + [anon_sym_noreturn] = ACTIONS(4235), + [anon_sym__Nonnull] = ACTIONS(4235), + [anon_sym_mutable] = ACTIONS(4235), + [anon_sym_constinit] = ACTIONS(4235), + [anon_sym_consteval] = ACTIONS(4235), + [anon_sym_alignas] = ACTIONS(4235), + [anon_sym__Alignas] = ACTIONS(4235), + [sym_primitive_type] = ACTIONS(4235), + [anon_sym_enum] = ACTIONS(4235), + [anon_sym_class] = ACTIONS(4235), + [anon_sym_struct] = ACTIONS(4235), + [anon_sym_union] = ACTIONS(4235), + [anon_sym_if] = ACTIONS(4235), + [anon_sym_switch] = ACTIONS(4235), + [anon_sym_case] = ACTIONS(4235), + [anon_sym_default] = ACTIONS(4235), + [anon_sym_while] = ACTIONS(4235), + [anon_sym_do] = ACTIONS(4235), + [anon_sym_for] = ACTIONS(4235), + [anon_sym_return] = ACTIONS(4235), + [anon_sym_break] = ACTIONS(4235), + [anon_sym_continue] = ACTIONS(4235), + [anon_sym_goto] = ACTIONS(4235), + [anon_sym___try] = ACTIONS(4235), + [anon_sym___leave] = ACTIONS(4235), + [anon_sym_not] = ACTIONS(4235), + [anon_sym_compl] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_PLUS_PLUS] = ACTIONS(4237), + [anon_sym_sizeof] = ACTIONS(4235), + [anon_sym___alignof__] = ACTIONS(4235), + [anon_sym___alignof] = ACTIONS(4235), + [anon_sym__alignof] = ACTIONS(4235), + [anon_sym_alignof] = ACTIONS(4235), + [anon_sym__Alignof] = ACTIONS(4235), + [anon_sym_offsetof] = ACTIONS(4235), + [anon_sym__Generic] = ACTIONS(4235), + [anon_sym_typename] = ACTIONS(4235), + [anon_sym_asm] = ACTIONS(4235), + [anon_sym___asm__] = ACTIONS(4235), + [anon_sym___asm] = ACTIONS(4235), + [sym_number_literal] = ACTIONS(4237), + [anon_sym_L_SQUOTE] = ACTIONS(4237), + [anon_sym_u_SQUOTE] = ACTIONS(4237), + [anon_sym_U_SQUOTE] = ACTIONS(4237), + [anon_sym_u8_SQUOTE] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4237), + [anon_sym_L_DQUOTE] = ACTIONS(4237), + [anon_sym_u_DQUOTE] = ACTIONS(4237), + [anon_sym_U_DQUOTE] = ACTIONS(4237), + [anon_sym_u8_DQUOTE] = ACTIONS(4237), + [anon_sym_DQUOTE] = ACTIONS(4237), + [sym_true] = ACTIONS(4235), + [sym_false] = ACTIONS(4235), + [anon_sym_NULL] = ACTIONS(4235), + [anon_sym_nullptr] = ACTIONS(4235), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4235), + [anon_sym_decltype] = ACTIONS(4235), + [anon_sym_explicit] = ACTIONS(4235), + [anon_sym_export] = ACTIONS(4235), + [anon_sym_import] = ACTIONS(4235), + [anon_sym_template] = ACTIONS(4235), + [anon_sym_operator] = ACTIONS(4235), + [anon_sym_try] = ACTIONS(4235), + [anon_sym_delete] = ACTIONS(4235), + [anon_sym_throw] = ACTIONS(4235), + [anon_sym_namespace] = ACTIONS(4235), + [anon_sym_static_assert] = ACTIONS(4235), + [anon_sym_concept] = ACTIONS(4235), + [anon_sym_co_return] = ACTIONS(4235), + [anon_sym_co_yield] = ACTIONS(4235), + [anon_sym_R_DQUOTE] = ACTIONS(4237), + [anon_sym_LR_DQUOTE] = ACTIONS(4237), + [anon_sym_uR_DQUOTE] = ACTIONS(4237), + [anon_sym_UR_DQUOTE] = ACTIONS(4237), + [anon_sym_u8R_DQUOTE] = ACTIONS(4237), + [anon_sym_co_await] = ACTIONS(4235), + [anon_sym_new] = ACTIONS(4235), + [anon_sym_requires] = ACTIONS(4235), + [anon_sym_CARET_CARET] = ACTIONS(4237), + [anon_sym_LBRACK_COLON] = ACTIONS(4237), + [sym_this] = ACTIONS(4235), }, [STATE(861)] = { - [sym_identifier] = ACTIONS(4076), - [aux_sym_preproc_include_token1] = ACTIONS(4076), - [aux_sym_preproc_def_token1] = ACTIONS(4076), - [aux_sym_preproc_if_token1] = ACTIONS(4076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4076), - [sym_preproc_directive] = ACTIONS(4076), - [anon_sym_LPAREN2] = ACTIONS(4078), - [anon_sym_BANG] = ACTIONS(4078), - [anon_sym_TILDE] = ACTIONS(4078), - [anon_sym_DASH] = ACTIONS(4076), - [anon_sym_PLUS] = ACTIONS(4076), - [anon_sym_STAR] = ACTIONS(4078), - [anon_sym_AMP_AMP] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4076), - [anon_sym_SEMI] = ACTIONS(4078), - [anon_sym___extension__] = ACTIONS(4076), - [anon_sym_typedef] = ACTIONS(4076), - [anon_sym_virtual] = ACTIONS(4076), - [anon_sym_extern] = ACTIONS(4076), - [anon_sym___attribute__] = ACTIONS(4076), - [anon_sym___attribute] = ACTIONS(4076), - [anon_sym_using] = ACTIONS(4076), - [anon_sym_COLON_COLON] = ACTIONS(4078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4078), - [anon_sym___declspec] = ACTIONS(4076), - [anon_sym___based] = ACTIONS(4076), - [anon_sym___cdecl] = ACTIONS(4076), - [anon_sym___clrcall] = ACTIONS(4076), - [anon_sym___stdcall] = ACTIONS(4076), - [anon_sym___fastcall] = ACTIONS(4076), - [anon_sym___thiscall] = ACTIONS(4076), - [anon_sym___vectorcall] = ACTIONS(4076), - [anon_sym_LBRACE] = ACTIONS(4078), - [anon_sym_RBRACE] = ACTIONS(4078), - [anon_sym_signed] = ACTIONS(4076), - [anon_sym_unsigned] = ACTIONS(4076), - [anon_sym_long] = ACTIONS(4076), - [anon_sym_short] = ACTIONS(4076), - [anon_sym_LBRACK] = ACTIONS(4076), - [anon_sym_static] = ACTIONS(4076), - [anon_sym_register] = ACTIONS(4076), - [anon_sym_inline] = ACTIONS(4076), - [anon_sym___inline] = ACTIONS(4076), - [anon_sym___inline__] = ACTIONS(4076), - [anon_sym___forceinline] = ACTIONS(4076), - [anon_sym_thread_local] = ACTIONS(4076), - [anon_sym___thread] = ACTIONS(4076), - [anon_sym_const] = ACTIONS(4076), - [anon_sym_constexpr] = ACTIONS(4076), - [anon_sym_volatile] = ACTIONS(4076), - [anon_sym_restrict] = ACTIONS(4076), - [anon_sym___restrict__] = ACTIONS(4076), - [anon_sym__Atomic] = ACTIONS(4076), - [anon_sym__Noreturn] = ACTIONS(4076), - [anon_sym_noreturn] = ACTIONS(4076), - [anon_sym__Nonnull] = ACTIONS(4076), - [anon_sym_mutable] = ACTIONS(4076), - [anon_sym_constinit] = ACTIONS(4076), - [anon_sym_consteval] = ACTIONS(4076), - [anon_sym_alignas] = ACTIONS(4076), - [anon_sym__Alignas] = ACTIONS(4076), - [sym_primitive_type] = ACTIONS(4076), - [anon_sym_enum] = ACTIONS(4076), - [anon_sym_class] = ACTIONS(4076), - [anon_sym_struct] = ACTIONS(4076), - [anon_sym_union] = ACTIONS(4076), - [anon_sym_if] = ACTIONS(4076), - [anon_sym_switch] = ACTIONS(4076), - [anon_sym_case] = ACTIONS(4076), - [anon_sym_default] = ACTIONS(4076), - [anon_sym_while] = ACTIONS(4076), - [anon_sym_do] = ACTIONS(4076), - [anon_sym_for] = ACTIONS(4076), - [anon_sym_return] = ACTIONS(4076), - [anon_sym_break] = ACTIONS(4076), - [anon_sym_continue] = ACTIONS(4076), - [anon_sym_goto] = ACTIONS(4076), - [anon_sym___try] = ACTIONS(4076), - [anon_sym___leave] = ACTIONS(4076), - [anon_sym_not] = ACTIONS(4076), - [anon_sym_compl] = ACTIONS(4076), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_sizeof] = ACTIONS(4076), - [anon_sym___alignof__] = ACTIONS(4076), - [anon_sym___alignof] = ACTIONS(4076), - [anon_sym__alignof] = ACTIONS(4076), - [anon_sym_alignof] = ACTIONS(4076), - [anon_sym__Alignof] = ACTIONS(4076), - [anon_sym_offsetof] = ACTIONS(4076), - [anon_sym__Generic] = ACTIONS(4076), - [anon_sym_typename] = ACTIONS(4076), - [anon_sym_asm] = ACTIONS(4076), - [anon_sym___asm__] = ACTIONS(4076), - [anon_sym___asm] = ACTIONS(4076), - [sym_number_literal] = ACTIONS(4078), - [anon_sym_L_SQUOTE] = ACTIONS(4078), - [anon_sym_u_SQUOTE] = ACTIONS(4078), - [anon_sym_U_SQUOTE] = ACTIONS(4078), - [anon_sym_u8_SQUOTE] = ACTIONS(4078), - [anon_sym_SQUOTE] = ACTIONS(4078), - [anon_sym_L_DQUOTE] = ACTIONS(4078), - [anon_sym_u_DQUOTE] = ACTIONS(4078), - [anon_sym_U_DQUOTE] = ACTIONS(4078), - [anon_sym_u8_DQUOTE] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(4078), - [sym_true] = ACTIONS(4076), - [sym_false] = ACTIONS(4076), - [anon_sym_NULL] = ACTIONS(4076), - [anon_sym_nullptr] = ACTIONS(4076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4076), - [anon_sym_decltype] = ACTIONS(4076), - [anon_sym_explicit] = ACTIONS(4076), - [anon_sym_export] = ACTIONS(4076), - [anon_sym_import] = ACTIONS(4076), - [anon_sym_template] = ACTIONS(4076), - [anon_sym_operator] = ACTIONS(4076), - [anon_sym_try] = ACTIONS(4076), - [anon_sym_delete] = ACTIONS(4076), - [anon_sym_throw] = ACTIONS(4076), - [anon_sym_namespace] = ACTIONS(4076), - [anon_sym_static_assert] = ACTIONS(4076), - [anon_sym_concept] = ACTIONS(4076), - [anon_sym_co_return] = ACTIONS(4076), - [anon_sym_co_yield] = ACTIONS(4076), - [anon_sym_R_DQUOTE] = ACTIONS(4078), - [anon_sym_LR_DQUOTE] = ACTIONS(4078), - [anon_sym_uR_DQUOTE] = ACTIONS(4078), - [anon_sym_UR_DQUOTE] = ACTIONS(4078), - [anon_sym_u8R_DQUOTE] = ACTIONS(4078), - [anon_sym_co_await] = ACTIONS(4076), - [anon_sym_new] = ACTIONS(4076), - [anon_sym_requires] = ACTIONS(4076), - [anon_sym_CARET_CARET] = ACTIONS(4078), - [anon_sym_LBRACK_COLON] = ACTIONS(4078), - [sym_this] = ACTIONS(4076), + [sym_identifier] = ACTIONS(4239), + [aux_sym_preproc_include_token1] = ACTIONS(4239), + [aux_sym_preproc_def_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token1] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4239), + [sym_preproc_directive] = ACTIONS(4239), + [anon_sym_LPAREN2] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_TILDE] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym___extension__] = ACTIONS(4239), + [anon_sym_typedef] = ACTIONS(4239), + [anon_sym_virtual] = ACTIONS(4239), + [anon_sym_extern] = ACTIONS(4239), + [anon_sym___attribute__] = ACTIONS(4239), + [anon_sym___attribute] = ACTIONS(4239), + [anon_sym_using] = ACTIONS(4239), + [anon_sym_COLON_COLON] = ACTIONS(4241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4241), + [anon_sym___declspec] = ACTIONS(4239), + [anon_sym___based] = ACTIONS(4239), + [anon_sym___cdecl] = ACTIONS(4239), + [anon_sym___clrcall] = ACTIONS(4239), + [anon_sym___stdcall] = ACTIONS(4239), + [anon_sym___fastcall] = ACTIONS(4239), + [anon_sym___thiscall] = ACTIONS(4239), + [anon_sym___vectorcall] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4241), + [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym_signed] = ACTIONS(4239), + [anon_sym_unsigned] = ACTIONS(4239), + [anon_sym_long] = ACTIONS(4239), + [anon_sym_short] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_static] = ACTIONS(4239), + [anon_sym_register] = ACTIONS(4239), + [anon_sym_inline] = ACTIONS(4239), + [anon_sym___inline] = ACTIONS(4239), + [anon_sym___inline__] = ACTIONS(4239), + [anon_sym___forceinline] = ACTIONS(4239), + [anon_sym_thread_local] = ACTIONS(4239), + [anon_sym___thread] = ACTIONS(4239), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_constexpr] = ACTIONS(4239), + [anon_sym_volatile] = ACTIONS(4239), + [anon_sym_restrict] = ACTIONS(4239), + [anon_sym___restrict__] = ACTIONS(4239), + [anon_sym__Atomic] = ACTIONS(4239), + [anon_sym__Noreturn] = ACTIONS(4239), + [anon_sym_noreturn] = ACTIONS(4239), + [anon_sym__Nonnull] = ACTIONS(4239), + [anon_sym_mutable] = ACTIONS(4239), + [anon_sym_constinit] = ACTIONS(4239), + [anon_sym_consteval] = ACTIONS(4239), + [anon_sym_alignas] = ACTIONS(4239), + [anon_sym__Alignas] = ACTIONS(4239), + [sym_primitive_type] = ACTIONS(4239), + [anon_sym_enum] = ACTIONS(4239), + [anon_sym_class] = ACTIONS(4239), + [anon_sym_struct] = ACTIONS(4239), + [anon_sym_union] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(4239), + [anon_sym_switch] = ACTIONS(4239), + [anon_sym_case] = ACTIONS(4239), + [anon_sym_default] = ACTIONS(4239), + [anon_sym_while] = ACTIONS(4239), + [anon_sym_do] = ACTIONS(4239), + [anon_sym_for] = ACTIONS(4239), + [anon_sym_return] = ACTIONS(4239), + [anon_sym_break] = ACTIONS(4239), + [anon_sym_continue] = ACTIONS(4239), + [anon_sym_goto] = ACTIONS(4239), + [anon_sym___try] = ACTIONS(4239), + [anon_sym___leave] = ACTIONS(4239), + [anon_sym_not] = ACTIONS(4239), + [anon_sym_compl] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_PLUS_PLUS] = ACTIONS(4241), + [anon_sym_sizeof] = ACTIONS(4239), + [anon_sym___alignof__] = ACTIONS(4239), + [anon_sym___alignof] = ACTIONS(4239), + [anon_sym__alignof] = ACTIONS(4239), + [anon_sym_alignof] = ACTIONS(4239), + [anon_sym__Alignof] = ACTIONS(4239), + [anon_sym_offsetof] = ACTIONS(4239), + [anon_sym__Generic] = ACTIONS(4239), + [anon_sym_typename] = ACTIONS(4239), + [anon_sym_asm] = ACTIONS(4239), + [anon_sym___asm__] = ACTIONS(4239), + [anon_sym___asm] = ACTIONS(4239), + [sym_number_literal] = ACTIONS(4241), + [anon_sym_L_SQUOTE] = ACTIONS(4241), + [anon_sym_u_SQUOTE] = ACTIONS(4241), + [anon_sym_U_SQUOTE] = ACTIONS(4241), + [anon_sym_u8_SQUOTE] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4241), + [anon_sym_L_DQUOTE] = ACTIONS(4241), + [anon_sym_u_DQUOTE] = ACTIONS(4241), + [anon_sym_U_DQUOTE] = ACTIONS(4241), + [anon_sym_u8_DQUOTE] = ACTIONS(4241), + [anon_sym_DQUOTE] = ACTIONS(4241), + [sym_true] = ACTIONS(4239), + [sym_false] = ACTIONS(4239), + [anon_sym_NULL] = ACTIONS(4239), + [anon_sym_nullptr] = ACTIONS(4239), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4239), + [anon_sym_decltype] = ACTIONS(4239), + [anon_sym_explicit] = ACTIONS(4239), + [anon_sym_export] = ACTIONS(4239), + [anon_sym_import] = ACTIONS(4239), + [anon_sym_template] = ACTIONS(4239), + [anon_sym_operator] = ACTIONS(4239), + [anon_sym_try] = ACTIONS(4239), + [anon_sym_delete] = ACTIONS(4239), + [anon_sym_throw] = ACTIONS(4239), + [anon_sym_namespace] = ACTIONS(4239), + [anon_sym_static_assert] = ACTIONS(4239), + [anon_sym_concept] = ACTIONS(4239), + [anon_sym_co_return] = ACTIONS(4239), + [anon_sym_co_yield] = ACTIONS(4239), + [anon_sym_R_DQUOTE] = ACTIONS(4241), + [anon_sym_LR_DQUOTE] = ACTIONS(4241), + [anon_sym_uR_DQUOTE] = ACTIONS(4241), + [anon_sym_UR_DQUOTE] = ACTIONS(4241), + [anon_sym_u8R_DQUOTE] = ACTIONS(4241), + [anon_sym_co_await] = ACTIONS(4239), + [anon_sym_new] = ACTIONS(4239), + [anon_sym_requires] = ACTIONS(4239), + [anon_sym_CARET_CARET] = ACTIONS(4241), + [anon_sym_LBRACK_COLON] = ACTIONS(4241), + [sym_this] = ACTIONS(4239), }, [STATE(862)] = { - [sym_identifier] = ACTIONS(4048), - [aux_sym_preproc_include_token1] = ACTIONS(4048), - [aux_sym_preproc_def_token1] = ACTIONS(4048), - [aux_sym_preproc_if_token1] = ACTIONS(4048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), - [sym_preproc_directive] = ACTIONS(4048), - [anon_sym_LPAREN2] = ACTIONS(4050), - [anon_sym_BANG] = ACTIONS(4050), - [anon_sym_TILDE] = ACTIONS(4050), - [anon_sym_DASH] = ACTIONS(4048), - [anon_sym_PLUS] = ACTIONS(4048), - [anon_sym_STAR] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_SEMI] = ACTIONS(4050), - [anon_sym___extension__] = ACTIONS(4048), - [anon_sym_typedef] = ACTIONS(4048), - [anon_sym_virtual] = ACTIONS(4048), - [anon_sym_extern] = ACTIONS(4048), - [anon_sym___attribute__] = ACTIONS(4048), - [anon_sym___attribute] = ACTIONS(4048), - [anon_sym_using] = ACTIONS(4048), - [anon_sym_COLON_COLON] = ACTIONS(4050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), - [anon_sym___declspec] = ACTIONS(4048), - [anon_sym___based] = ACTIONS(4048), - [anon_sym___cdecl] = ACTIONS(4048), - [anon_sym___clrcall] = ACTIONS(4048), - [anon_sym___stdcall] = ACTIONS(4048), - [anon_sym___fastcall] = ACTIONS(4048), - [anon_sym___thiscall] = ACTIONS(4048), - [anon_sym___vectorcall] = ACTIONS(4048), - [anon_sym_LBRACE] = ACTIONS(4050), - [anon_sym_RBRACE] = ACTIONS(4050), - [anon_sym_signed] = ACTIONS(4048), - [anon_sym_unsigned] = ACTIONS(4048), - [anon_sym_long] = ACTIONS(4048), - [anon_sym_short] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(4048), - [anon_sym_static] = ACTIONS(4048), - [anon_sym_register] = ACTIONS(4048), - [anon_sym_inline] = ACTIONS(4048), - [anon_sym___inline] = ACTIONS(4048), - [anon_sym___inline__] = ACTIONS(4048), - [anon_sym___forceinline] = ACTIONS(4048), - [anon_sym_thread_local] = ACTIONS(4048), - [anon_sym___thread] = ACTIONS(4048), - [anon_sym_const] = ACTIONS(4048), - [anon_sym_constexpr] = ACTIONS(4048), - [anon_sym_volatile] = ACTIONS(4048), - [anon_sym_restrict] = ACTIONS(4048), - [anon_sym___restrict__] = ACTIONS(4048), - [anon_sym__Atomic] = ACTIONS(4048), - [anon_sym__Noreturn] = ACTIONS(4048), - [anon_sym_noreturn] = ACTIONS(4048), - [anon_sym__Nonnull] = ACTIONS(4048), - [anon_sym_mutable] = ACTIONS(4048), - [anon_sym_constinit] = ACTIONS(4048), - [anon_sym_consteval] = ACTIONS(4048), - [anon_sym_alignas] = ACTIONS(4048), - [anon_sym__Alignas] = ACTIONS(4048), - [sym_primitive_type] = ACTIONS(4048), - [anon_sym_enum] = ACTIONS(4048), - [anon_sym_class] = ACTIONS(4048), - [anon_sym_struct] = ACTIONS(4048), - [anon_sym_union] = ACTIONS(4048), - [anon_sym_if] = ACTIONS(4048), - [anon_sym_switch] = ACTIONS(4048), - [anon_sym_case] = ACTIONS(4048), - [anon_sym_default] = ACTIONS(4048), - [anon_sym_while] = ACTIONS(4048), - [anon_sym_do] = ACTIONS(4048), - [anon_sym_for] = ACTIONS(4048), - [anon_sym_return] = ACTIONS(4048), - [anon_sym_break] = ACTIONS(4048), - [anon_sym_continue] = ACTIONS(4048), - [anon_sym_goto] = ACTIONS(4048), - [anon_sym___try] = ACTIONS(4048), - [anon_sym___leave] = ACTIONS(4048), - [anon_sym_not] = ACTIONS(4048), - [anon_sym_compl] = ACTIONS(4048), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_sizeof] = ACTIONS(4048), - [anon_sym___alignof__] = ACTIONS(4048), - [anon_sym___alignof] = ACTIONS(4048), - [anon_sym__alignof] = ACTIONS(4048), - [anon_sym_alignof] = ACTIONS(4048), - [anon_sym__Alignof] = ACTIONS(4048), - [anon_sym_offsetof] = ACTIONS(4048), - [anon_sym__Generic] = ACTIONS(4048), - [anon_sym_typename] = ACTIONS(4048), - [anon_sym_asm] = ACTIONS(4048), - [anon_sym___asm__] = ACTIONS(4048), - [anon_sym___asm] = ACTIONS(4048), - [sym_number_literal] = ACTIONS(4050), - [anon_sym_L_SQUOTE] = ACTIONS(4050), - [anon_sym_u_SQUOTE] = ACTIONS(4050), - [anon_sym_U_SQUOTE] = ACTIONS(4050), - [anon_sym_u8_SQUOTE] = ACTIONS(4050), - [anon_sym_SQUOTE] = ACTIONS(4050), - [anon_sym_L_DQUOTE] = ACTIONS(4050), - [anon_sym_u_DQUOTE] = ACTIONS(4050), - [anon_sym_U_DQUOTE] = ACTIONS(4050), - [anon_sym_u8_DQUOTE] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [sym_true] = ACTIONS(4048), - [sym_false] = ACTIONS(4048), - [anon_sym_NULL] = ACTIONS(4048), - [anon_sym_nullptr] = ACTIONS(4048), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4048), - [anon_sym_decltype] = ACTIONS(4048), - [anon_sym_explicit] = ACTIONS(4048), - [anon_sym_export] = ACTIONS(4048), - [anon_sym_import] = ACTIONS(4048), - [anon_sym_template] = ACTIONS(4048), - [anon_sym_operator] = ACTIONS(4048), - [anon_sym_try] = ACTIONS(4048), - [anon_sym_delete] = ACTIONS(4048), - [anon_sym_throw] = ACTIONS(4048), - [anon_sym_namespace] = ACTIONS(4048), - [anon_sym_static_assert] = ACTIONS(4048), - [anon_sym_concept] = ACTIONS(4048), - [anon_sym_co_return] = ACTIONS(4048), - [anon_sym_co_yield] = ACTIONS(4048), - [anon_sym_R_DQUOTE] = ACTIONS(4050), - [anon_sym_LR_DQUOTE] = ACTIONS(4050), - [anon_sym_uR_DQUOTE] = ACTIONS(4050), - [anon_sym_UR_DQUOTE] = ACTIONS(4050), - [anon_sym_u8R_DQUOTE] = ACTIONS(4050), - [anon_sym_co_await] = ACTIONS(4048), - [anon_sym_new] = ACTIONS(4048), - [anon_sym_requires] = ACTIONS(4048), - [anon_sym_CARET_CARET] = ACTIONS(4050), - [anon_sym_LBRACK_COLON] = ACTIONS(4050), - [sym_this] = ACTIONS(4048), + [sym_identifier] = ACTIONS(3730), + [aux_sym_preproc_include_token1] = ACTIONS(3730), + [aux_sym_preproc_def_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3730), + [sym_preproc_directive] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_BANG] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym___extension__] = ACTIONS(3730), + [anon_sym_typedef] = ACTIONS(3730), + [anon_sym_virtual] = ACTIONS(3730), + [anon_sym_extern] = ACTIONS(3730), + [anon_sym___attribute__] = ACTIONS(3730), + [anon_sym___attribute] = ACTIONS(3730), + [anon_sym_using] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3732), + [anon_sym___declspec] = ACTIONS(3730), + [anon_sym___based] = ACTIONS(3730), + [anon_sym___cdecl] = ACTIONS(3730), + [anon_sym___clrcall] = ACTIONS(3730), + [anon_sym___stdcall] = ACTIONS(3730), + [anon_sym___fastcall] = ACTIONS(3730), + [anon_sym___thiscall] = ACTIONS(3730), + [anon_sym___vectorcall] = ACTIONS(3730), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_RBRACE] = ACTIONS(3732), + [anon_sym_signed] = ACTIONS(3730), + [anon_sym_unsigned] = ACTIONS(3730), + [anon_sym_long] = ACTIONS(3730), + [anon_sym_short] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_static] = ACTIONS(3730), + [anon_sym_register] = ACTIONS(3730), + [anon_sym_inline] = ACTIONS(3730), + [anon_sym___inline] = ACTIONS(3730), + [anon_sym___inline__] = ACTIONS(3730), + [anon_sym___forceinline] = ACTIONS(3730), + [anon_sym_thread_local] = ACTIONS(3730), + [anon_sym___thread] = ACTIONS(3730), + [anon_sym_const] = ACTIONS(3730), + [anon_sym_constexpr] = ACTIONS(3730), + [anon_sym_volatile] = ACTIONS(3730), + [anon_sym_restrict] = ACTIONS(3730), + [anon_sym___restrict__] = ACTIONS(3730), + [anon_sym__Atomic] = ACTIONS(3730), + [anon_sym__Noreturn] = ACTIONS(3730), + [anon_sym_noreturn] = ACTIONS(3730), + [anon_sym__Nonnull] = ACTIONS(3730), + [anon_sym_mutable] = ACTIONS(3730), + [anon_sym_constinit] = ACTIONS(3730), + [anon_sym_consteval] = ACTIONS(3730), + [anon_sym_alignas] = ACTIONS(3730), + [anon_sym__Alignas] = ACTIONS(3730), + [sym_primitive_type] = ACTIONS(3730), + [anon_sym_enum] = ACTIONS(3730), + [anon_sym_class] = ACTIONS(3730), + [anon_sym_struct] = ACTIONS(3730), + [anon_sym_union] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_switch] = ACTIONS(3730), + [anon_sym_case] = ACTIONS(3730), + [anon_sym_default] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_break] = ACTIONS(3730), + [anon_sym_continue] = ACTIONS(3730), + [anon_sym_goto] = ACTIONS(3730), + [anon_sym___try] = ACTIONS(3730), + [anon_sym___leave] = ACTIONS(3730), + [anon_sym_not] = ACTIONS(3730), + [anon_sym_compl] = ACTIONS(3730), + [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_PLUS_PLUS] = ACTIONS(3732), + [anon_sym_sizeof] = ACTIONS(3730), + [anon_sym___alignof__] = ACTIONS(3730), + [anon_sym___alignof] = ACTIONS(3730), + [anon_sym__alignof] = ACTIONS(3730), + [anon_sym_alignof] = ACTIONS(3730), + [anon_sym__Alignof] = ACTIONS(3730), + [anon_sym_offsetof] = ACTIONS(3730), + [anon_sym__Generic] = ACTIONS(3730), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_asm] = ACTIONS(3730), + [anon_sym___asm__] = ACTIONS(3730), + [anon_sym___asm] = ACTIONS(3730), + [sym_number_literal] = ACTIONS(3732), + [anon_sym_L_SQUOTE] = ACTIONS(3732), + [anon_sym_u_SQUOTE] = ACTIONS(3732), + [anon_sym_U_SQUOTE] = ACTIONS(3732), + [anon_sym_u8_SQUOTE] = ACTIONS(3732), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_L_DQUOTE] = ACTIONS(3732), + [anon_sym_u_DQUOTE] = ACTIONS(3732), + [anon_sym_U_DQUOTE] = ACTIONS(3732), + [anon_sym_u8_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(3732), + [sym_true] = ACTIONS(3730), + [sym_false] = ACTIONS(3730), + [anon_sym_NULL] = ACTIONS(3730), + [anon_sym_nullptr] = ACTIONS(3730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3730), + [anon_sym_decltype] = ACTIONS(3730), + [anon_sym_explicit] = ACTIONS(3730), + [anon_sym_export] = ACTIONS(3730), + [anon_sym_import] = ACTIONS(3730), + [anon_sym_template] = ACTIONS(3730), + [anon_sym_operator] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_delete] = ACTIONS(3730), + [anon_sym_throw] = ACTIONS(3730), + [anon_sym_namespace] = ACTIONS(3730), + [anon_sym_static_assert] = ACTIONS(3730), + [anon_sym_concept] = ACTIONS(3730), + [anon_sym_co_return] = ACTIONS(3730), + [anon_sym_co_yield] = ACTIONS(3730), + [anon_sym_R_DQUOTE] = ACTIONS(3732), + [anon_sym_LR_DQUOTE] = ACTIONS(3732), + [anon_sym_uR_DQUOTE] = ACTIONS(3732), + [anon_sym_UR_DQUOTE] = ACTIONS(3732), + [anon_sym_u8R_DQUOTE] = ACTIONS(3732), + [anon_sym_co_await] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_requires] = ACTIONS(3730), + [anon_sym_CARET_CARET] = ACTIONS(3732), + [anon_sym_LBRACK_COLON] = ACTIONS(3732), + [sym_this] = ACTIONS(3730), }, [STATE(863)] = { - [sym_identifier] = ACTIONS(3943), - [aux_sym_preproc_include_token1] = ACTIONS(3943), - [aux_sym_preproc_def_token1] = ACTIONS(3943), - [aux_sym_preproc_if_token1] = ACTIONS(3943), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3943), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3943), - [sym_preproc_directive] = ACTIONS(3943), - [anon_sym_LPAREN2] = ACTIONS(3945), - [anon_sym_BANG] = ACTIONS(3945), - [anon_sym_TILDE] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym___extension__] = ACTIONS(3943), - [anon_sym_typedef] = 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___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_RBRACE] = 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_typename] = 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_export] = ACTIONS(3943), - [anon_sym_import] = ACTIONS(3943), - [anon_sym_template] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_delete] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_namespace] = ACTIONS(3943), - [anon_sym_static_assert] = ACTIONS(3943), - [anon_sym_concept] = 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), - [anon_sym_CARET_CARET] = ACTIONS(3945), - [anon_sym_LBRACK_COLON] = ACTIONS(3945), - [sym_this] = ACTIONS(3943), + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_include_token1] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym___cdecl] = ACTIONS(3742), + [anon_sym___clrcall] = ACTIONS(3742), + [anon_sym___stdcall] = ACTIONS(3742), + [anon_sym___fastcall] = ACTIONS(3742), + [anon_sym___thiscall] = ACTIONS(3742), + [anon_sym___vectorcall] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_RBRACE] = ACTIONS(3744), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_switch] = ACTIONS(3742), + [anon_sym_case] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_goto] = ACTIONS(3742), + [anon_sym___try] = ACTIONS(3742), + [anon_sym___leave] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(3742), + [anon_sym_compl] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3742), + [anon_sym___alignof__] = ACTIONS(3742), + [anon_sym___alignof] = ACTIONS(3742), + [anon_sym__alignof] = ACTIONS(3742), + [anon_sym_alignof] = ACTIONS(3742), + [anon_sym__Alignof] = ACTIONS(3742), + [anon_sym_offsetof] = ACTIONS(3742), + [anon_sym__Generic] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [anon_sym_asm] = ACTIONS(3742), + [anon_sym___asm__] = ACTIONS(3742), + [anon_sym___asm] = ACTIONS(3742), + [sym_number_literal] = ACTIONS(3744), + [anon_sym_L_SQUOTE] = ACTIONS(3744), + [anon_sym_u_SQUOTE] = ACTIONS(3744), + [anon_sym_U_SQUOTE] = ACTIONS(3744), + [anon_sym_u8_SQUOTE] = ACTIONS(3744), + [anon_sym_SQUOTE] = ACTIONS(3744), + [anon_sym_L_DQUOTE] = ACTIONS(3744), + [anon_sym_u_DQUOTE] = ACTIONS(3744), + [anon_sym_U_DQUOTE] = ACTIONS(3744), + [anon_sym_u8_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [anon_sym_NULL] = ACTIONS(3742), + [anon_sym_nullptr] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_export] = ACTIONS(3742), + [anon_sym_import] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_delete] = ACTIONS(3742), + [anon_sym_throw] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_concept] = ACTIONS(3742), + [anon_sym_co_return] = ACTIONS(3742), + [anon_sym_co_yield] = ACTIONS(3742), + [anon_sym_R_DQUOTE] = ACTIONS(3744), + [anon_sym_LR_DQUOTE] = ACTIONS(3744), + [anon_sym_uR_DQUOTE] = ACTIONS(3744), + [anon_sym_UR_DQUOTE] = ACTIONS(3744), + [anon_sym_u8R_DQUOTE] = ACTIONS(3744), + [anon_sym_co_await] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_requires] = ACTIONS(3742), + [anon_sym_CARET_CARET] = ACTIONS(3744), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + [sym_this] = ACTIONS(3742), }, [STATE(864)] = { - [sym_identifier] = ACTIONS(4116), - [aux_sym_preproc_include_token1] = ACTIONS(4116), - [aux_sym_preproc_def_token1] = ACTIONS(4116), - [aux_sym_preproc_if_token1] = ACTIONS(4116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4116), - [sym_preproc_directive] = ACTIONS(4116), - [anon_sym_LPAREN2] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4118), - [anon_sym_TILDE] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_AMP] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym___extension__] = ACTIONS(4116), - [anon_sym_typedef] = ACTIONS(4116), - [anon_sym_virtual] = ACTIONS(4116), - [anon_sym_extern] = ACTIONS(4116), - [anon_sym___attribute__] = ACTIONS(4116), - [anon_sym___attribute] = ACTIONS(4116), - [anon_sym_using] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4118), - [anon_sym___declspec] = ACTIONS(4116), - [anon_sym___based] = ACTIONS(4116), - [anon_sym___cdecl] = ACTIONS(4116), - [anon_sym___clrcall] = ACTIONS(4116), - [anon_sym___stdcall] = ACTIONS(4116), - [anon_sym___fastcall] = ACTIONS(4116), - [anon_sym___thiscall] = ACTIONS(4116), - [anon_sym___vectorcall] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_RBRACE] = ACTIONS(4118), - [anon_sym_signed] = ACTIONS(4116), - [anon_sym_unsigned] = ACTIONS(4116), - [anon_sym_long] = ACTIONS(4116), - [anon_sym_short] = ACTIONS(4116), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_static] = ACTIONS(4116), - [anon_sym_register] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym___inline] = ACTIONS(4116), - [anon_sym___inline__] = ACTIONS(4116), - [anon_sym___forceinline] = ACTIONS(4116), - [anon_sym_thread_local] = ACTIONS(4116), - [anon_sym___thread] = ACTIONS(4116), - [anon_sym_const] = ACTIONS(4116), - [anon_sym_constexpr] = ACTIONS(4116), - [anon_sym_volatile] = ACTIONS(4116), - [anon_sym_restrict] = ACTIONS(4116), - [anon_sym___restrict__] = ACTIONS(4116), - [anon_sym__Atomic] = ACTIONS(4116), - [anon_sym__Noreturn] = ACTIONS(4116), - [anon_sym_noreturn] = ACTIONS(4116), - [anon_sym__Nonnull] = ACTIONS(4116), - [anon_sym_mutable] = ACTIONS(4116), - [anon_sym_constinit] = ACTIONS(4116), - [anon_sym_consteval] = ACTIONS(4116), - [anon_sym_alignas] = ACTIONS(4116), - [anon_sym__Alignas] = ACTIONS(4116), - [sym_primitive_type] = ACTIONS(4116), - [anon_sym_enum] = ACTIONS(4116), - [anon_sym_class] = ACTIONS(4116), - [anon_sym_struct] = ACTIONS(4116), - [anon_sym_union] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_switch] = ACTIONS(4116), - [anon_sym_case] = ACTIONS(4116), - [anon_sym_default] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_do] = ACTIONS(4116), - [anon_sym_for] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_goto] = ACTIONS(4116), - [anon_sym___try] = ACTIONS(4116), - [anon_sym___leave] = ACTIONS(4116), - [anon_sym_not] = ACTIONS(4116), - [anon_sym_compl] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_sizeof] = ACTIONS(4116), - [anon_sym___alignof__] = ACTIONS(4116), - [anon_sym___alignof] = ACTIONS(4116), - [anon_sym__alignof] = ACTIONS(4116), - [anon_sym_alignof] = ACTIONS(4116), - [anon_sym__Alignof] = ACTIONS(4116), - [anon_sym_offsetof] = ACTIONS(4116), - [anon_sym__Generic] = ACTIONS(4116), - [anon_sym_typename] = ACTIONS(4116), - [anon_sym_asm] = ACTIONS(4116), - [anon_sym___asm__] = ACTIONS(4116), - [anon_sym___asm] = ACTIONS(4116), - [sym_number_literal] = ACTIONS(4118), - [anon_sym_L_SQUOTE] = ACTIONS(4118), - [anon_sym_u_SQUOTE] = ACTIONS(4118), - [anon_sym_U_SQUOTE] = ACTIONS(4118), - [anon_sym_u8_SQUOTE] = ACTIONS(4118), - [anon_sym_SQUOTE] = ACTIONS(4118), - [anon_sym_L_DQUOTE] = ACTIONS(4118), - [anon_sym_u_DQUOTE] = ACTIONS(4118), - [anon_sym_U_DQUOTE] = ACTIONS(4118), - [anon_sym_u8_DQUOTE] = ACTIONS(4118), - [anon_sym_DQUOTE] = ACTIONS(4118), - [sym_true] = ACTIONS(4116), - [sym_false] = ACTIONS(4116), - [anon_sym_NULL] = ACTIONS(4116), - [anon_sym_nullptr] = ACTIONS(4116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4116), - [anon_sym_decltype] = ACTIONS(4116), - [anon_sym_explicit] = ACTIONS(4116), - [anon_sym_export] = ACTIONS(4116), - [anon_sym_import] = ACTIONS(4116), - [anon_sym_template] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_delete] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_namespace] = ACTIONS(4116), - [anon_sym_static_assert] = ACTIONS(4116), - [anon_sym_concept] = ACTIONS(4116), - [anon_sym_co_return] = ACTIONS(4116), - [anon_sym_co_yield] = ACTIONS(4116), - [anon_sym_R_DQUOTE] = ACTIONS(4118), - [anon_sym_LR_DQUOTE] = ACTIONS(4118), - [anon_sym_uR_DQUOTE] = ACTIONS(4118), - [anon_sym_UR_DQUOTE] = ACTIONS(4118), - [anon_sym_u8R_DQUOTE] = ACTIONS(4118), - [anon_sym_co_await] = ACTIONS(4116), - [anon_sym_new] = ACTIONS(4116), - [anon_sym_requires] = ACTIONS(4116), - [anon_sym_CARET_CARET] = ACTIONS(4118), - [anon_sym_LBRACK_COLON] = ACTIONS(4118), - [sym_this] = ACTIONS(4116), + [sym_identifier] = ACTIONS(3766), + [aux_sym_preproc_include_token1] = ACTIONS(3766), + [aux_sym_preproc_def_token1] = ACTIONS(3766), + [aux_sym_preproc_if_token1] = ACTIONS(3766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3766), + [sym_preproc_directive] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_BANG] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(3768), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_SEMI] = ACTIONS(3768), + [anon_sym___extension__] = ACTIONS(3766), + [anon_sym_typedef] = ACTIONS(3766), + [anon_sym_virtual] = ACTIONS(3766), + [anon_sym_extern] = ACTIONS(3766), + [anon_sym___attribute__] = ACTIONS(3766), + [anon_sym___attribute] = ACTIONS(3766), + [anon_sym_using] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3768), + [anon_sym___declspec] = ACTIONS(3766), + [anon_sym___based] = ACTIONS(3766), + [anon_sym___cdecl] = ACTIONS(3766), + [anon_sym___clrcall] = ACTIONS(3766), + [anon_sym___stdcall] = ACTIONS(3766), + [anon_sym___fastcall] = ACTIONS(3766), + [anon_sym___thiscall] = ACTIONS(3766), + [anon_sym___vectorcall] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_RBRACE] = ACTIONS(3768), + [anon_sym_signed] = ACTIONS(3766), + [anon_sym_unsigned] = ACTIONS(3766), + [anon_sym_long] = ACTIONS(3766), + [anon_sym_short] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_static] = ACTIONS(3766), + [anon_sym_register] = ACTIONS(3766), + [anon_sym_inline] = ACTIONS(3766), + [anon_sym___inline] = ACTIONS(3766), + [anon_sym___inline__] = ACTIONS(3766), + [anon_sym___forceinline] = ACTIONS(3766), + [anon_sym_thread_local] = ACTIONS(3766), + [anon_sym___thread] = ACTIONS(3766), + [anon_sym_const] = ACTIONS(3766), + [anon_sym_constexpr] = ACTIONS(3766), + [anon_sym_volatile] = ACTIONS(3766), + [anon_sym_restrict] = ACTIONS(3766), + [anon_sym___restrict__] = ACTIONS(3766), + [anon_sym__Atomic] = ACTIONS(3766), + [anon_sym__Noreturn] = ACTIONS(3766), + [anon_sym_noreturn] = ACTIONS(3766), + [anon_sym__Nonnull] = ACTIONS(3766), + [anon_sym_mutable] = ACTIONS(3766), + [anon_sym_constinit] = ACTIONS(3766), + [anon_sym_consteval] = ACTIONS(3766), + [anon_sym_alignas] = ACTIONS(3766), + [anon_sym__Alignas] = ACTIONS(3766), + [sym_primitive_type] = ACTIONS(3766), + [anon_sym_enum] = ACTIONS(3766), + [anon_sym_class] = ACTIONS(3766), + [anon_sym_struct] = ACTIONS(3766), + [anon_sym_union] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_switch] = ACTIONS(3766), + [anon_sym_case] = ACTIONS(3766), + [anon_sym_default] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_break] = ACTIONS(3766), + [anon_sym_continue] = ACTIONS(3766), + [anon_sym_goto] = ACTIONS(3766), + [anon_sym___try] = ACTIONS(3766), + [anon_sym___leave] = ACTIONS(3766), + [anon_sym_not] = ACTIONS(3766), + [anon_sym_compl] = ACTIONS(3766), + [anon_sym_DASH_DASH] = ACTIONS(3768), + [anon_sym_PLUS_PLUS] = ACTIONS(3768), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym___alignof__] = ACTIONS(3766), + [anon_sym___alignof] = ACTIONS(3766), + [anon_sym__alignof] = ACTIONS(3766), + [anon_sym_alignof] = ACTIONS(3766), + [anon_sym__Alignof] = ACTIONS(3766), + [anon_sym_offsetof] = ACTIONS(3766), + [anon_sym__Generic] = ACTIONS(3766), + [anon_sym_typename] = ACTIONS(3766), + [anon_sym_asm] = ACTIONS(3766), + [anon_sym___asm__] = ACTIONS(3766), + [anon_sym___asm] = ACTIONS(3766), + [sym_number_literal] = ACTIONS(3768), + [anon_sym_L_SQUOTE] = ACTIONS(3768), + [anon_sym_u_SQUOTE] = ACTIONS(3768), + [anon_sym_U_SQUOTE] = ACTIONS(3768), + [anon_sym_u8_SQUOTE] = ACTIONS(3768), + [anon_sym_SQUOTE] = ACTIONS(3768), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(3766), + [sym_false] = ACTIONS(3766), + [anon_sym_NULL] = ACTIONS(3766), + [anon_sym_nullptr] = ACTIONS(3766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3766), + [anon_sym_decltype] = ACTIONS(3766), + [anon_sym_explicit] = ACTIONS(3766), + [anon_sym_export] = ACTIONS(3766), + [anon_sym_import] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(3766), + [anon_sym_operator] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_delete] = ACTIONS(3766), + [anon_sym_throw] = ACTIONS(3766), + [anon_sym_namespace] = ACTIONS(3766), + [anon_sym_static_assert] = ACTIONS(3766), + [anon_sym_concept] = ACTIONS(3766), + [anon_sym_co_return] = ACTIONS(3766), + [anon_sym_co_yield] = ACTIONS(3766), + [anon_sym_R_DQUOTE] = ACTIONS(3768), + [anon_sym_LR_DQUOTE] = ACTIONS(3768), + [anon_sym_uR_DQUOTE] = ACTIONS(3768), + [anon_sym_UR_DQUOTE] = ACTIONS(3768), + [anon_sym_u8R_DQUOTE] = ACTIONS(3768), + [anon_sym_co_await] = ACTIONS(3766), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_requires] = ACTIONS(3766), + [anon_sym_CARET_CARET] = ACTIONS(3768), + [anon_sym_LBRACK_COLON] = ACTIONS(3768), + [sym_this] = ACTIONS(3766), }, [STATE(865)] = { - [sym_identifier] = ACTIONS(4274), - [aux_sym_preproc_include_token1] = ACTIONS(4274), - [aux_sym_preproc_def_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), - [sym_preproc_directive] = ACTIONS(4274), - [anon_sym_LPAREN2] = ACTIONS(4276), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_TILDE] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_AMP_AMP] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4274), - [anon_sym_SEMI] = ACTIONS(4276), - [anon_sym___extension__] = ACTIONS(4274), - [anon_sym_typedef] = ACTIONS(4274), - [anon_sym_virtual] = ACTIONS(4274), - [anon_sym_extern] = ACTIONS(4274), - [anon_sym___attribute__] = ACTIONS(4274), - [anon_sym___attribute] = ACTIONS(4274), - [anon_sym_using] = ACTIONS(4274), - [anon_sym_COLON_COLON] = ACTIONS(4276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), - [anon_sym___declspec] = ACTIONS(4274), - [anon_sym___based] = ACTIONS(4274), - [anon_sym___cdecl] = ACTIONS(4274), - [anon_sym___clrcall] = ACTIONS(4274), - [anon_sym___stdcall] = ACTIONS(4274), - [anon_sym___fastcall] = ACTIONS(4274), - [anon_sym___thiscall] = ACTIONS(4274), - [anon_sym___vectorcall] = ACTIONS(4274), - [anon_sym_LBRACE] = ACTIONS(4276), - [anon_sym_RBRACE] = ACTIONS(4276), - [anon_sym_signed] = ACTIONS(4274), - [anon_sym_unsigned] = ACTIONS(4274), - [anon_sym_long] = ACTIONS(4274), - [anon_sym_short] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_static] = ACTIONS(4274), - [anon_sym_register] = ACTIONS(4274), - [anon_sym_inline] = ACTIONS(4274), - [anon_sym___inline] = ACTIONS(4274), - [anon_sym___inline__] = ACTIONS(4274), - [anon_sym___forceinline] = ACTIONS(4274), - [anon_sym_thread_local] = ACTIONS(4274), - [anon_sym___thread] = ACTIONS(4274), - [anon_sym_const] = ACTIONS(4274), - [anon_sym_constexpr] = ACTIONS(4274), - [anon_sym_volatile] = ACTIONS(4274), - [anon_sym_restrict] = ACTIONS(4274), - [anon_sym___restrict__] = ACTIONS(4274), - [anon_sym__Atomic] = ACTIONS(4274), - [anon_sym__Noreturn] = ACTIONS(4274), - [anon_sym_noreturn] = ACTIONS(4274), - [anon_sym__Nonnull] = ACTIONS(4274), - [anon_sym_mutable] = ACTIONS(4274), - [anon_sym_constinit] = ACTIONS(4274), - [anon_sym_consteval] = ACTIONS(4274), - [anon_sym_alignas] = ACTIONS(4274), - [anon_sym__Alignas] = ACTIONS(4274), - [sym_primitive_type] = ACTIONS(4274), - [anon_sym_enum] = ACTIONS(4274), - [anon_sym_class] = ACTIONS(4274), - [anon_sym_struct] = ACTIONS(4274), - [anon_sym_union] = ACTIONS(4274), - [anon_sym_if] = ACTIONS(4274), - [anon_sym_switch] = ACTIONS(4274), - [anon_sym_case] = ACTIONS(4274), - [anon_sym_default] = ACTIONS(4274), - [anon_sym_while] = ACTIONS(4274), - [anon_sym_do] = ACTIONS(4274), - [anon_sym_for] = ACTIONS(4274), - [anon_sym_return] = ACTIONS(4274), - [anon_sym_break] = ACTIONS(4274), - [anon_sym_continue] = ACTIONS(4274), - [anon_sym_goto] = ACTIONS(4274), - [anon_sym___try] = ACTIONS(4274), - [anon_sym___leave] = ACTIONS(4274), - [anon_sym_not] = ACTIONS(4274), - [anon_sym_compl] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4276), - [anon_sym_sizeof] = ACTIONS(4274), - [anon_sym___alignof__] = ACTIONS(4274), - [anon_sym___alignof] = ACTIONS(4274), - [anon_sym__alignof] = ACTIONS(4274), - [anon_sym_alignof] = ACTIONS(4274), - [anon_sym__Alignof] = ACTIONS(4274), - [anon_sym_offsetof] = ACTIONS(4274), - [anon_sym__Generic] = ACTIONS(4274), - [anon_sym_typename] = ACTIONS(4274), - [anon_sym_asm] = ACTIONS(4274), - [anon_sym___asm__] = ACTIONS(4274), - [anon_sym___asm] = ACTIONS(4274), - [sym_number_literal] = ACTIONS(4276), - [anon_sym_L_SQUOTE] = ACTIONS(4276), - [anon_sym_u_SQUOTE] = ACTIONS(4276), - [anon_sym_U_SQUOTE] = ACTIONS(4276), - [anon_sym_u8_SQUOTE] = ACTIONS(4276), - [anon_sym_SQUOTE] = ACTIONS(4276), - [anon_sym_L_DQUOTE] = ACTIONS(4276), - [anon_sym_u_DQUOTE] = ACTIONS(4276), - [anon_sym_U_DQUOTE] = ACTIONS(4276), - [anon_sym_u8_DQUOTE] = ACTIONS(4276), - [anon_sym_DQUOTE] = ACTIONS(4276), - [sym_true] = ACTIONS(4274), - [sym_false] = ACTIONS(4274), - [anon_sym_NULL] = ACTIONS(4274), - [anon_sym_nullptr] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4274), - [anon_sym_decltype] = ACTIONS(4274), - [anon_sym_explicit] = ACTIONS(4274), - [anon_sym_export] = ACTIONS(4274), - [anon_sym_import] = ACTIONS(4274), - [anon_sym_template] = ACTIONS(4274), - [anon_sym_operator] = ACTIONS(4274), - [anon_sym_try] = ACTIONS(4274), - [anon_sym_delete] = ACTIONS(4274), - [anon_sym_throw] = ACTIONS(4274), - [anon_sym_namespace] = ACTIONS(4274), - [anon_sym_static_assert] = ACTIONS(4274), - [anon_sym_concept] = ACTIONS(4274), - [anon_sym_co_return] = ACTIONS(4274), - [anon_sym_co_yield] = ACTIONS(4274), - [anon_sym_R_DQUOTE] = ACTIONS(4276), - [anon_sym_LR_DQUOTE] = ACTIONS(4276), - [anon_sym_uR_DQUOTE] = ACTIONS(4276), - [anon_sym_UR_DQUOTE] = ACTIONS(4276), - [anon_sym_u8R_DQUOTE] = ACTIONS(4276), - [anon_sym_co_await] = ACTIONS(4274), - [anon_sym_new] = ACTIONS(4274), - [anon_sym_requires] = ACTIONS(4274), - [anon_sym_CARET_CARET] = ACTIONS(4276), - [anon_sym_LBRACK_COLON] = ACTIONS(4276), - [sym_this] = ACTIONS(4274), + [ts_builtin_sym_end] = ACTIONS(3915), + [sym_identifier] = ACTIONS(3913), + [aux_sym_preproc_include_token1] = ACTIONS(3913), + [aux_sym_preproc_def_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token1] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3913), + [sym_preproc_directive] = ACTIONS(3913), + [anon_sym_LPAREN2] = ACTIONS(3915), + [anon_sym_BANG] = ACTIONS(3915), + [anon_sym_TILDE] = ACTIONS(3915), + [anon_sym_DASH] = ACTIONS(3913), + [anon_sym_PLUS] = ACTIONS(3913), + [anon_sym_STAR] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym___extension__] = ACTIONS(3913), + [anon_sym_typedef] = ACTIONS(3913), + [anon_sym_virtual] = ACTIONS(3913), + [anon_sym_extern] = ACTIONS(3913), + [anon_sym___attribute__] = ACTIONS(3913), + [anon_sym___attribute] = ACTIONS(3913), + [anon_sym_using] = ACTIONS(3913), + [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3915), + [anon_sym___declspec] = ACTIONS(3913), + [anon_sym___based] = ACTIONS(3913), + [anon_sym___cdecl] = ACTIONS(3913), + [anon_sym___clrcall] = ACTIONS(3913), + [anon_sym___stdcall] = ACTIONS(3913), + [anon_sym___fastcall] = ACTIONS(3913), + [anon_sym___thiscall] = ACTIONS(3913), + [anon_sym___vectorcall] = ACTIONS(3913), + [anon_sym_LBRACE] = ACTIONS(3915), + [anon_sym_signed] = ACTIONS(3913), + [anon_sym_unsigned] = ACTIONS(3913), + [anon_sym_long] = ACTIONS(3913), + [anon_sym_short] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(3913), + [anon_sym_static] = ACTIONS(3913), + [anon_sym_register] = ACTIONS(3913), + [anon_sym_inline] = ACTIONS(3913), + [anon_sym___inline] = ACTIONS(3913), + [anon_sym___inline__] = ACTIONS(3913), + [anon_sym___forceinline] = ACTIONS(3913), + [anon_sym_thread_local] = ACTIONS(3913), + [anon_sym___thread] = ACTIONS(3913), + [anon_sym_const] = ACTIONS(3913), + [anon_sym_constexpr] = ACTIONS(3913), + [anon_sym_volatile] = ACTIONS(3913), + [anon_sym_restrict] = ACTIONS(3913), + [anon_sym___restrict__] = ACTIONS(3913), + [anon_sym__Atomic] = ACTIONS(3913), + [anon_sym__Noreturn] = ACTIONS(3913), + [anon_sym_noreturn] = ACTIONS(3913), + [anon_sym__Nonnull] = ACTIONS(3913), + [anon_sym_mutable] = ACTIONS(3913), + [anon_sym_constinit] = ACTIONS(3913), + [anon_sym_consteval] = ACTIONS(3913), + [anon_sym_alignas] = ACTIONS(3913), + [anon_sym__Alignas] = ACTIONS(3913), + [sym_primitive_type] = ACTIONS(3913), + [anon_sym_enum] = ACTIONS(3913), + [anon_sym_class] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(3913), + [anon_sym_union] = ACTIONS(3913), + [anon_sym_if] = ACTIONS(3913), + [anon_sym_switch] = ACTIONS(3913), + [anon_sym_case] = ACTIONS(3913), + [anon_sym_default] = ACTIONS(3913), + [anon_sym_while] = ACTIONS(3913), + [anon_sym_do] = ACTIONS(3913), + [anon_sym_for] = ACTIONS(3913), + [anon_sym_return] = ACTIONS(3913), + [anon_sym_break] = ACTIONS(3913), + [anon_sym_continue] = ACTIONS(3913), + [anon_sym_goto] = ACTIONS(3913), + [anon_sym_not] = ACTIONS(3913), + [anon_sym_compl] = ACTIONS(3913), + [anon_sym_DASH_DASH] = ACTIONS(3915), + [anon_sym_PLUS_PLUS] = ACTIONS(3915), + [anon_sym_sizeof] = ACTIONS(3913), + [anon_sym___alignof__] = ACTIONS(3913), + [anon_sym___alignof] = ACTIONS(3913), + [anon_sym__alignof] = ACTIONS(3913), + [anon_sym_alignof] = ACTIONS(3913), + [anon_sym__Alignof] = ACTIONS(3913), + [anon_sym_offsetof] = ACTIONS(3913), + [anon_sym__Generic] = ACTIONS(3913), + [anon_sym_typename] = ACTIONS(3913), + [anon_sym_asm] = ACTIONS(3913), + [anon_sym___asm__] = ACTIONS(3913), + [anon_sym___asm] = ACTIONS(3913), + [sym_number_literal] = ACTIONS(3915), + [anon_sym_L_SQUOTE] = ACTIONS(3915), + [anon_sym_u_SQUOTE] = ACTIONS(3915), + [anon_sym_U_SQUOTE] = ACTIONS(3915), + [anon_sym_u8_SQUOTE] = ACTIONS(3915), + [anon_sym_SQUOTE] = ACTIONS(3915), + [anon_sym_L_DQUOTE] = ACTIONS(3915), + [anon_sym_u_DQUOTE] = ACTIONS(3915), + [anon_sym_U_DQUOTE] = ACTIONS(3915), + [anon_sym_u8_DQUOTE] = ACTIONS(3915), + [anon_sym_DQUOTE] = ACTIONS(3915), + [sym_true] = ACTIONS(3913), + [sym_false] = ACTIONS(3913), + [anon_sym_NULL] = ACTIONS(3913), + [anon_sym_nullptr] = ACTIONS(3913), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3913), + [anon_sym_decltype] = ACTIONS(3913), + [anon_sym_explicit] = ACTIONS(3913), + [anon_sym_export] = ACTIONS(3913), + [anon_sym_module] = ACTIONS(3913), + [anon_sym_import] = ACTIONS(3913), + [anon_sym_template] = ACTIONS(3913), + [anon_sym_operator] = ACTIONS(3913), + [anon_sym_try] = ACTIONS(3913), + [anon_sym_delete] = ACTIONS(3913), + [anon_sym_throw] = ACTIONS(3913), + [anon_sym_namespace] = ACTIONS(3913), + [anon_sym_static_assert] = ACTIONS(3913), + [anon_sym_concept] = ACTIONS(3913), + [anon_sym_co_return] = ACTIONS(3913), + [anon_sym_co_yield] = ACTIONS(3913), + [anon_sym_R_DQUOTE] = ACTIONS(3915), + [anon_sym_LR_DQUOTE] = ACTIONS(3915), + [anon_sym_uR_DQUOTE] = ACTIONS(3915), + [anon_sym_UR_DQUOTE] = ACTIONS(3915), + [anon_sym_u8R_DQUOTE] = ACTIONS(3915), + [anon_sym_co_await] = ACTIONS(3913), + [anon_sym_new] = ACTIONS(3913), + [anon_sym_requires] = ACTIONS(3913), + [anon_sym_CARET_CARET] = ACTIONS(3915), + [anon_sym_LBRACK_COLON] = ACTIONS(3915), + [sym_this] = ACTIONS(3913), }, [STATE(866)] = { - [ts_builtin_sym_end] = ACTIONS(4468), - [sym_identifier] = ACTIONS(4466), - [aux_sym_preproc_include_token1] = ACTIONS(4466), - [aux_sym_preproc_def_token1] = ACTIONS(4466), - [aux_sym_preproc_if_token1] = ACTIONS(4466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4466), - [sym_preproc_directive] = ACTIONS(4466), - [anon_sym_LPAREN2] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_TILDE] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_AMP] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym___extension__] = ACTIONS(4466), - [anon_sym_typedef] = ACTIONS(4466), - [anon_sym_virtual] = ACTIONS(4466), - [anon_sym_extern] = ACTIONS(4466), - [anon_sym___attribute__] = ACTIONS(4466), - [anon_sym___attribute] = ACTIONS(4466), - [anon_sym_using] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4468), - [anon_sym___declspec] = ACTIONS(4466), - [anon_sym___based] = ACTIONS(4466), - [anon_sym___cdecl] = ACTIONS(4466), - [anon_sym___clrcall] = ACTIONS(4466), - [anon_sym___stdcall] = ACTIONS(4466), - [anon_sym___fastcall] = ACTIONS(4466), - [anon_sym___thiscall] = ACTIONS(4466), - [anon_sym___vectorcall] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4468), - [anon_sym_signed] = ACTIONS(4466), - [anon_sym_unsigned] = ACTIONS(4466), - [anon_sym_long] = ACTIONS(4466), - [anon_sym_short] = ACTIONS(4466), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_static] = ACTIONS(4466), - [anon_sym_register] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym___inline] = ACTIONS(4466), - [anon_sym___inline__] = ACTIONS(4466), - [anon_sym___forceinline] = ACTIONS(4466), - [anon_sym_thread_local] = ACTIONS(4466), - [anon_sym___thread] = ACTIONS(4466), - [anon_sym_const] = ACTIONS(4466), - [anon_sym_constexpr] = ACTIONS(4466), - [anon_sym_volatile] = ACTIONS(4466), - [anon_sym_restrict] = ACTIONS(4466), - [anon_sym___restrict__] = ACTIONS(4466), - [anon_sym__Atomic] = ACTIONS(4466), - [anon_sym__Noreturn] = ACTIONS(4466), - [anon_sym_noreturn] = ACTIONS(4466), - [anon_sym__Nonnull] = ACTIONS(4466), - [anon_sym_mutable] = ACTIONS(4466), - [anon_sym_constinit] = ACTIONS(4466), - [anon_sym_consteval] = ACTIONS(4466), - [anon_sym_alignas] = ACTIONS(4466), - [anon_sym__Alignas] = ACTIONS(4466), - [sym_primitive_type] = ACTIONS(4466), - [anon_sym_enum] = ACTIONS(4466), - [anon_sym_class] = ACTIONS(4466), - [anon_sym_struct] = ACTIONS(4466), - [anon_sym_union] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4466), - [anon_sym_case] = ACTIONS(4466), - [anon_sym_default] = ACTIONS(4466), - [anon_sym_while] = ACTIONS(4466), - [anon_sym_do] = ACTIONS(4466), - [anon_sym_for] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_goto] = ACTIONS(4466), - [anon_sym_not] = ACTIONS(4466), - [anon_sym_compl] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_sizeof] = ACTIONS(4466), - [anon_sym___alignof__] = ACTIONS(4466), - [anon_sym___alignof] = ACTIONS(4466), - [anon_sym__alignof] = ACTIONS(4466), - [anon_sym_alignof] = ACTIONS(4466), - [anon_sym__Alignof] = ACTIONS(4466), - [anon_sym_offsetof] = ACTIONS(4466), - [anon_sym__Generic] = ACTIONS(4466), - [anon_sym_typename] = ACTIONS(4466), - [anon_sym_asm] = ACTIONS(4466), - [anon_sym___asm__] = ACTIONS(4466), - [anon_sym___asm] = ACTIONS(4466), - [sym_number_literal] = ACTIONS(4468), - [anon_sym_L_SQUOTE] = ACTIONS(4468), - [anon_sym_u_SQUOTE] = ACTIONS(4468), - [anon_sym_U_SQUOTE] = ACTIONS(4468), - [anon_sym_u8_SQUOTE] = ACTIONS(4468), - [anon_sym_SQUOTE] = ACTIONS(4468), - [anon_sym_L_DQUOTE] = ACTIONS(4468), - [anon_sym_u_DQUOTE] = ACTIONS(4468), - [anon_sym_U_DQUOTE] = ACTIONS(4468), - [anon_sym_u8_DQUOTE] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4468), - [sym_true] = ACTIONS(4466), - [sym_false] = ACTIONS(4466), - [anon_sym_NULL] = ACTIONS(4466), - [anon_sym_nullptr] = ACTIONS(4466), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4466), - [anon_sym_decltype] = ACTIONS(4466), - [anon_sym_explicit] = ACTIONS(4466), - [anon_sym_export] = ACTIONS(4466), - [anon_sym_module] = ACTIONS(4466), - [anon_sym_import] = ACTIONS(4466), - [anon_sym_template] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_delete] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_namespace] = ACTIONS(4466), - [anon_sym_static_assert] = ACTIONS(4466), - [anon_sym_concept] = ACTIONS(4466), - [anon_sym_co_return] = ACTIONS(4466), - [anon_sym_co_yield] = ACTIONS(4466), - [anon_sym_R_DQUOTE] = ACTIONS(4468), - [anon_sym_LR_DQUOTE] = ACTIONS(4468), - [anon_sym_uR_DQUOTE] = ACTIONS(4468), - [anon_sym_UR_DQUOTE] = ACTIONS(4468), - [anon_sym_u8R_DQUOTE] = ACTIONS(4468), - [anon_sym_co_await] = ACTIONS(4466), - [anon_sym_new] = ACTIONS(4466), - [anon_sym_requires] = ACTIONS(4466), - [anon_sym_CARET_CARET] = ACTIONS(4468), - [anon_sym_LBRACK_COLON] = ACTIONS(4468), - [sym_this] = ACTIONS(4466), + [ts_builtin_sym_end] = ACTIONS(4662), + [sym_identifier] = ACTIONS(4660), + [aux_sym_preproc_include_token1] = ACTIONS(4660), + [aux_sym_preproc_def_token1] = ACTIONS(4660), + [aux_sym_preproc_if_token1] = ACTIONS(4660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4660), + [sym_preproc_directive] = ACTIONS(4660), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_TILDE] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_AMP] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym___extension__] = ACTIONS(4660), + [anon_sym_typedef] = ACTIONS(4660), + [anon_sym_virtual] = ACTIONS(4660), + [anon_sym_extern] = ACTIONS(4660), + [anon_sym___attribute__] = ACTIONS(4660), + [anon_sym___attribute] = ACTIONS(4660), + [anon_sym_using] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4662), + [anon_sym___declspec] = ACTIONS(4660), + [anon_sym___based] = ACTIONS(4660), + [anon_sym___cdecl] = ACTIONS(4660), + [anon_sym___clrcall] = ACTIONS(4660), + [anon_sym___stdcall] = ACTIONS(4660), + [anon_sym___fastcall] = ACTIONS(4660), + [anon_sym___thiscall] = ACTIONS(4660), + [anon_sym___vectorcall] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_signed] = ACTIONS(4660), + [anon_sym_unsigned] = ACTIONS(4660), + [anon_sym_long] = ACTIONS(4660), + [anon_sym_short] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4660), + [anon_sym_static] = ACTIONS(4660), + [anon_sym_register] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym___inline] = ACTIONS(4660), + [anon_sym___inline__] = ACTIONS(4660), + [anon_sym___forceinline] = ACTIONS(4660), + [anon_sym_thread_local] = ACTIONS(4660), + [anon_sym___thread] = ACTIONS(4660), + [anon_sym_const] = ACTIONS(4660), + [anon_sym_constexpr] = ACTIONS(4660), + [anon_sym_volatile] = ACTIONS(4660), + [anon_sym_restrict] = ACTIONS(4660), + [anon_sym___restrict__] = ACTIONS(4660), + [anon_sym__Atomic] = ACTIONS(4660), + [anon_sym__Noreturn] = ACTIONS(4660), + [anon_sym_noreturn] = ACTIONS(4660), + [anon_sym__Nonnull] = ACTIONS(4660), + [anon_sym_mutable] = ACTIONS(4660), + [anon_sym_constinit] = ACTIONS(4660), + [anon_sym_consteval] = ACTIONS(4660), + [anon_sym_alignas] = ACTIONS(4660), + [anon_sym__Alignas] = ACTIONS(4660), + [sym_primitive_type] = ACTIONS(4660), + [anon_sym_enum] = ACTIONS(4660), + [anon_sym_class] = ACTIONS(4660), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_union] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_switch] = ACTIONS(4660), + [anon_sym_case] = ACTIONS(4660), + [anon_sym_default] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_do] = ACTIONS(4660), + [anon_sym_for] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_goto] = ACTIONS(4660), + [anon_sym_not] = ACTIONS(4660), + [anon_sym_compl] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_sizeof] = ACTIONS(4660), + [anon_sym___alignof__] = ACTIONS(4660), + [anon_sym___alignof] = ACTIONS(4660), + [anon_sym__alignof] = ACTIONS(4660), + [anon_sym_alignof] = ACTIONS(4660), + [anon_sym__Alignof] = ACTIONS(4660), + [anon_sym_offsetof] = ACTIONS(4660), + [anon_sym__Generic] = ACTIONS(4660), + [anon_sym_typename] = ACTIONS(4660), + [anon_sym_asm] = ACTIONS(4660), + [anon_sym___asm__] = ACTIONS(4660), + [anon_sym___asm] = ACTIONS(4660), + [sym_number_literal] = ACTIONS(4662), + [anon_sym_L_SQUOTE] = ACTIONS(4662), + [anon_sym_u_SQUOTE] = ACTIONS(4662), + [anon_sym_U_SQUOTE] = ACTIONS(4662), + [anon_sym_u8_SQUOTE] = ACTIONS(4662), + [anon_sym_SQUOTE] = ACTIONS(4662), + [anon_sym_L_DQUOTE] = ACTIONS(4662), + [anon_sym_u_DQUOTE] = ACTIONS(4662), + [anon_sym_U_DQUOTE] = ACTIONS(4662), + [anon_sym_u8_DQUOTE] = ACTIONS(4662), + [anon_sym_DQUOTE] = ACTIONS(4662), + [sym_true] = ACTIONS(4660), + [sym_false] = ACTIONS(4660), + [anon_sym_NULL] = ACTIONS(4660), + [anon_sym_nullptr] = ACTIONS(4660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4660), + [anon_sym_decltype] = ACTIONS(4660), + [anon_sym_explicit] = ACTIONS(4660), + [anon_sym_export] = ACTIONS(4660), + [anon_sym_module] = ACTIONS(4660), + [anon_sym_import] = ACTIONS(4660), + [anon_sym_template] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_delete] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_namespace] = ACTIONS(4660), + [anon_sym_static_assert] = ACTIONS(4660), + [anon_sym_concept] = ACTIONS(4660), + [anon_sym_co_return] = ACTIONS(4660), + [anon_sym_co_yield] = ACTIONS(4660), + [anon_sym_R_DQUOTE] = ACTIONS(4662), + [anon_sym_LR_DQUOTE] = ACTIONS(4662), + [anon_sym_uR_DQUOTE] = ACTIONS(4662), + [anon_sym_UR_DQUOTE] = ACTIONS(4662), + [anon_sym_u8R_DQUOTE] = ACTIONS(4662), + [anon_sym_co_await] = ACTIONS(4660), + [anon_sym_new] = ACTIONS(4660), + [anon_sym_requires] = ACTIONS(4660), + [anon_sym_CARET_CARET] = ACTIONS(4662), + [anon_sym_LBRACK_COLON] = ACTIONS(4662), + [sym_this] = ACTIONS(4660), }, [STATE(867)] = { - [ts_builtin_sym_end] = ACTIONS(4122), - [sym_identifier] = ACTIONS(4120), - [aux_sym_preproc_include_token1] = ACTIONS(4120), - [aux_sym_preproc_def_token1] = ACTIONS(4120), - [aux_sym_preproc_if_token1] = ACTIONS(4120), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4120), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4120), - [sym_preproc_directive] = ACTIONS(4120), - [anon_sym_LPAREN2] = ACTIONS(4122), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_TILDE] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4120), - [anon_sym_PLUS] = ACTIONS(4120), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_AMP_AMP] = ACTIONS(4122), - [anon_sym_AMP] = ACTIONS(4120), - [anon_sym_SEMI] = ACTIONS(4122), - [anon_sym___extension__] = ACTIONS(4120), - [anon_sym_typedef] = ACTIONS(4120), - [anon_sym_virtual] = ACTIONS(4120), - [anon_sym_extern] = ACTIONS(4120), - [anon_sym___attribute__] = ACTIONS(4120), - [anon_sym___attribute] = ACTIONS(4120), - [anon_sym_using] = ACTIONS(4120), - [anon_sym_COLON_COLON] = ACTIONS(4122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4122), - [anon_sym___declspec] = ACTIONS(4120), - [anon_sym___based] = ACTIONS(4120), - [anon_sym___cdecl] = ACTIONS(4120), - [anon_sym___clrcall] = ACTIONS(4120), - [anon_sym___stdcall] = ACTIONS(4120), - [anon_sym___fastcall] = ACTIONS(4120), - [anon_sym___thiscall] = ACTIONS(4120), - [anon_sym___vectorcall] = ACTIONS(4120), - [anon_sym_LBRACE] = ACTIONS(4122), - [anon_sym_signed] = ACTIONS(4120), - [anon_sym_unsigned] = ACTIONS(4120), - [anon_sym_long] = ACTIONS(4120), - [anon_sym_short] = ACTIONS(4120), - [anon_sym_LBRACK] = ACTIONS(4120), - [anon_sym_static] = ACTIONS(4120), - [anon_sym_register] = ACTIONS(4120), - [anon_sym_inline] = ACTIONS(4120), - [anon_sym___inline] = ACTIONS(4120), - [anon_sym___inline__] = ACTIONS(4120), - [anon_sym___forceinline] = ACTIONS(4120), - [anon_sym_thread_local] = ACTIONS(4120), - [anon_sym___thread] = ACTIONS(4120), - [anon_sym_const] = ACTIONS(4120), - [anon_sym_constexpr] = ACTIONS(4120), - [anon_sym_volatile] = ACTIONS(4120), - [anon_sym_restrict] = ACTIONS(4120), - [anon_sym___restrict__] = ACTIONS(4120), - [anon_sym__Atomic] = ACTIONS(4120), - [anon_sym__Noreturn] = ACTIONS(4120), - [anon_sym_noreturn] = ACTIONS(4120), - [anon_sym__Nonnull] = ACTIONS(4120), - [anon_sym_mutable] = ACTIONS(4120), - [anon_sym_constinit] = ACTIONS(4120), - [anon_sym_consteval] = ACTIONS(4120), - [anon_sym_alignas] = ACTIONS(4120), - [anon_sym__Alignas] = ACTIONS(4120), - [sym_primitive_type] = ACTIONS(4120), - [anon_sym_enum] = ACTIONS(4120), - [anon_sym_class] = ACTIONS(4120), - [anon_sym_struct] = ACTIONS(4120), - [anon_sym_union] = ACTIONS(4120), - [anon_sym_if] = ACTIONS(4120), - [anon_sym_switch] = ACTIONS(4120), - [anon_sym_case] = ACTIONS(4120), - [anon_sym_default] = ACTIONS(4120), - [anon_sym_while] = ACTIONS(4120), - [anon_sym_do] = ACTIONS(4120), - [anon_sym_for] = ACTIONS(4120), - [anon_sym_return] = ACTIONS(4120), - [anon_sym_break] = ACTIONS(4120), - [anon_sym_continue] = ACTIONS(4120), - [anon_sym_goto] = ACTIONS(4120), - [anon_sym_not] = ACTIONS(4120), - [anon_sym_compl] = ACTIONS(4120), - [anon_sym_DASH_DASH] = ACTIONS(4122), - [anon_sym_PLUS_PLUS] = ACTIONS(4122), - [anon_sym_sizeof] = ACTIONS(4120), - [anon_sym___alignof__] = ACTIONS(4120), - [anon_sym___alignof] = ACTIONS(4120), - [anon_sym__alignof] = ACTIONS(4120), - [anon_sym_alignof] = ACTIONS(4120), - [anon_sym__Alignof] = ACTIONS(4120), - [anon_sym_offsetof] = ACTIONS(4120), - [anon_sym__Generic] = ACTIONS(4120), - [anon_sym_typename] = ACTIONS(4120), - [anon_sym_asm] = ACTIONS(4120), - [anon_sym___asm__] = ACTIONS(4120), - [anon_sym___asm] = ACTIONS(4120), - [sym_number_literal] = ACTIONS(4122), - [anon_sym_L_SQUOTE] = ACTIONS(4122), - [anon_sym_u_SQUOTE] = ACTIONS(4122), - [anon_sym_U_SQUOTE] = ACTIONS(4122), - [anon_sym_u8_SQUOTE] = ACTIONS(4122), - [anon_sym_SQUOTE] = ACTIONS(4122), - [anon_sym_L_DQUOTE] = ACTIONS(4122), - [anon_sym_u_DQUOTE] = ACTIONS(4122), - [anon_sym_U_DQUOTE] = ACTIONS(4122), - [anon_sym_u8_DQUOTE] = ACTIONS(4122), - [anon_sym_DQUOTE] = ACTIONS(4122), - [sym_true] = ACTIONS(4120), - [sym_false] = ACTIONS(4120), - [anon_sym_NULL] = ACTIONS(4120), - [anon_sym_nullptr] = ACTIONS(4120), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4120), - [anon_sym_decltype] = ACTIONS(4120), - [anon_sym_explicit] = ACTIONS(4120), - [anon_sym_export] = ACTIONS(4120), - [anon_sym_module] = ACTIONS(4120), - [anon_sym_import] = ACTIONS(4120), - [anon_sym_template] = ACTIONS(4120), - [anon_sym_operator] = ACTIONS(4120), - [anon_sym_try] = ACTIONS(4120), - [anon_sym_delete] = ACTIONS(4120), - [anon_sym_throw] = ACTIONS(4120), - [anon_sym_namespace] = ACTIONS(4120), - [anon_sym_static_assert] = ACTIONS(4120), - [anon_sym_concept] = ACTIONS(4120), - [anon_sym_co_return] = ACTIONS(4120), - [anon_sym_co_yield] = ACTIONS(4120), - [anon_sym_R_DQUOTE] = ACTIONS(4122), - [anon_sym_LR_DQUOTE] = ACTIONS(4122), - [anon_sym_uR_DQUOTE] = ACTIONS(4122), - [anon_sym_UR_DQUOTE] = ACTIONS(4122), - [anon_sym_u8R_DQUOTE] = ACTIONS(4122), - [anon_sym_co_await] = ACTIONS(4120), - [anon_sym_new] = ACTIONS(4120), - [anon_sym_requires] = ACTIONS(4120), - [anon_sym_CARET_CARET] = ACTIONS(4122), - [anon_sym_LBRACK_COLON] = ACTIONS(4122), - [sym_this] = ACTIONS(4120), + [ts_builtin_sym_end] = ACTIONS(3684), + [sym_identifier] = ACTIONS(3682), + [aux_sym_preproc_include_token1] = ACTIONS(3682), + [aux_sym_preproc_def_token1] = ACTIONS(3682), + [aux_sym_preproc_if_token1] = ACTIONS(3682), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3682), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3682), + [sym_preproc_directive] = ACTIONS(3682), + [anon_sym_LPAREN2] = ACTIONS(3684), + [anon_sym_BANG] = ACTIONS(3684), + [anon_sym_TILDE] = ACTIONS(3684), + [anon_sym_DASH] = ACTIONS(3682), + [anon_sym_PLUS] = ACTIONS(3682), + [anon_sym_STAR] = ACTIONS(3684), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_SEMI] = ACTIONS(3684), + [anon_sym___extension__] = ACTIONS(3682), + [anon_sym_typedef] = ACTIONS(3682), + [anon_sym_virtual] = ACTIONS(3682), + [anon_sym_extern] = ACTIONS(3682), + [anon_sym___attribute__] = ACTIONS(3682), + [anon_sym___attribute] = ACTIONS(3682), + [anon_sym_using] = ACTIONS(3682), + [anon_sym_COLON_COLON] = ACTIONS(3684), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3684), + [anon_sym___declspec] = ACTIONS(3682), + [anon_sym___based] = ACTIONS(3682), + [anon_sym___cdecl] = ACTIONS(3682), + [anon_sym___clrcall] = ACTIONS(3682), + [anon_sym___stdcall] = ACTIONS(3682), + [anon_sym___fastcall] = ACTIONS(3682), + [anon_sym___thiscall] = ACTIONS(3682), + [anon_sym___vectorcall] = ACTIONS(3682), + [anon_sym_LBRACE] = ACTIONS(3684), + [anon_sym_signed] = ACTIONS(3682), + [anon_sym_unsigned] = ACTIONS(3682), + [anon_sym_long] = ACTIONS(3682), + [anon_sym_short] = ACTIONS(3682), + [anon_sym_LBRACK] = ACTIONS(3682), + [anon_sym_static] = ACTIONS(3682), + [anon_sym_register] = ACTIONS(3682), + [anon_sym_inline] = ACTIONS(3682), + [anon_sym___inline] = ACTIONS(3682), + [anon_sym___inline__] = ACTIONS(3682), + [anon_sym___forceinline] = ACTIONS(3682), + [anon_sym_thread_local] = ACTIONS(3682), + [anon_sym___thread] = ACTIONS(3682), + [anon_sym_const] = ACTIONS(3682), + [anon_sym_constexpr] = ACTIONS(3682), + [anon_sym_volatile] = ACTIONS(3682), + [anon_sym_restrict] = ACTIONS(3682), + [anon_sym___restrict__] = ACTIONS(3682), + [anon_sym__Atomic] = ACTIONS(3682), + [anon_sym__Noreturn] = ACTIONS(3682), + [anon_sym_noreturn] = ACTIONS(3682), + [anon_sym__Nonnull] = ACTIONS(3682), + [anon_sym_mutable] = ACTIONS(3682), + [anon_sym_constinit] = ACTIONS(3682), + [anon_sym_consteval] = ACTIONS(3682), + [anon_sym_alignas] = ACTIONS(3682), + [anon_sym__Alignas] = ACTIONS(3682), + [sym_primitive_type] = ACTIONS(3682), + [anon_sym_enum] = ACTIONS(3682), + [anon_sym_class] = ACTIONS(3682), + [anon_sym_struct] = ACTIONS(3682), + [anon_sym_union] = ACTIONS(3682), + [anon_sym_if] = ACTIONS(3682), + [anon_sym_switch] = ACTIONS(3682), + [anon_sym_case] = ACTIONS(3682), + [anon_sym_default] = ACTIONS(3682), + [anon_sym_while] = ACTIONS(3682), + [anon_sym_do] = ACTIONS(3682), + [anon_sym_for] = ACTIONS(3682), + [anon_sym_return] = ACTIONS(3682), + [anon_sym_break] = ACTIONS(3682), + [anon_sym_continue] = ACTIONS(3682), + [anon_sym_goto] = ACTIONS(3682), + [anon_sym_not] = ACTIONS(3682), + [anon_sym_compl] = ACTIONS(3682), + [anon_sym_DASH_DASH] = ACTIONS(3684), + [anon_sym_PLUS_PLUS] = ACTIONS(3684), + [anon_sym_sizeof] = ACTIONS(3682), + [anon_sym___alignof__] = ACTIONS(3682), + [anon_sym___alignof] = ACTIONS(3682), + [anon_sym__alignof] = ACTIONS(3682), + [anon_sym_alignof] = ACTIONS(3682), + [anon_sym__Alignof] = ACTIONS(3682), + [anon_sym_offsetof] = ACTIONS(3682), + [anon_sym__Generic] = ACTIONS(3682), + [anon_sym_typename] = ACTIONS(3682), + [anon_sym_asm] = ACTIONS(3682), + [anon_sym___asm__] = ACTIONS(3682), + [anon_sym___asm] = ACTIONS(3682), + [sym_number_literal] = ACTIONS(3684), + [anon_sym_L_SQUOTE] = ACTIONS(3684), + [anon_sym_u_SQUOTE] = ACTIONS(3684), + [anon_sym_U_SQUOTE] = ACTIONS(3684), + [anon_sym_u8_SQUOTE] = ACTIONS(3684), + [anon_sym_SQUOTE] = ACTIONS(3684), + [anon_sym_L_DQUOTE] = ACTIONS(3684), + [anon_sym_u_DQUOTE] = ACTIONS(3684), + [anon_sym_U_DQUOTE] = ACTIONS(3684), + [anon_sym_u8_DQUOTE] = ACTIONS(3684), + [anon_sym_DQUOTE] = ACTIONS(3684), + [sym_true] = ACTIONS(3682), + [sym_false] = ACTIONS(3682), + [anon_sym_NULL] = ACTIONS(3682), + [anon_sym_nullptr] = ACTIONS(3682), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3682), + [anon_sym_decltype] = ACTIONS(3682), + [anon_sym_explicit] = ACTIONS(3682), + [anon_sym_export] = ACTIONS(3682), + [anon_sym_module] = ACTIONS(3682), + [anon_sym_import] = ACTIONS(3682), + [anon_sym_template] = ACTIONS(3682), + [anon_sym_operator] = ACTIONS(3682), + [anon_sym_try] = ACTIONS(3682), + [anon_sym_delete] = ACTIONS(3682), + [anon_sym_throw] = ACTIONS(3682), + [anon_sym_namespace] = ACTIONS(3682), + [anon_sym_static_assert] = ACTIONS(3682), + [anon_sym_concept] = ACTIONS(3682), + [anon_sym_co_return] = ACTIONS(3682), + [anon_sym_co_yield] = ACTIONS(3682), + [anon_sym_R_DQUOTE] = ACTIONS(3684), + [anon_sym_LR_DQUOTE] = ACTIONS(3684), + [anon_sym_uR_DQUOTE] = ACTIONS(3684), + [anon_sym_UR_DQUOTE] = ACTIONS(3684), + [anon_sym_u8R_DQUOTE] = ACTIONS(3684), + [anon_sym_co_await] = ACTIONS(3682), + [anon_sym_new] = ACTIONS(3682), + [anon_sym_requires] = ACTIONS(3682), + [anon_sym_CARET_CARET] = ACTIONS(3684), + [anon_sym_LBRACK_COLON] = ACTIONS(3684), + [sym_this] = ACTIONS(3682), }, [STATE(868)] = { - [ts_builtin_sym_end] = ACTIONS(4126), - [sym_identifier] = ACTIONS(4124), - [aux_sym_preproc_include_token1] = ACTIONS(4124), - [aux_sym_preproc_def_token1] = ACTIONS(4124), - [aux_sym_preproc_if_token1] = ACTIONS(4124), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4124), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4124), - [sym_preproc_directive] = ACTIONS(4124), - [anon_sym_LPAREN2] = ACTIONS(4126), - [anon_sym_BANG] = ACTIONS(4126), - [anon_sym_TILDE] = ACTIONS(4126), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_PLUS] = ACTIONS(4124), - [anon_sym_STAR] = ACTIONS(4126), - [anon_sym_AMP_AMP] = ACTIONS(4126), - [anon_sym_AMP] = ACTIONS(4124), - [anon_sym_SEMI] = ACTIONS(4126), - [anon_sym___extension__] = ACTIONS(4124), - [anon_sym_typedef] = ACTIONS(4124), - [anon_sym_virtual] = ACTIONS(4124), - [anon_sym_extern] = ACTIONS(4124), - [anon_sym___attribute__] = ACTIONS(4124), - [anon_sym___attribute] = ACTIONS(4124), - [anon_sym_using] = ACTIONS(4124), - [anon_sym_COLON_COLON] = ACTIONS(4126), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4126), - [anon_sym___declspec] = ACTIONS(4124), - [anon_sym___based] = ACTIONS(4124), - [anon_sym___cdecl] = ACTIONS(4124), - [anon_sym___clrcall] = ACTIONS(4124), - [anon_sym___stdcall] = ACTIONS(4124), - [anon_sym___fastcall] = ACTIONS(4124), - [anon_sym___thiscall] = ACTIONS(4124), - [anon_sym___vectorcall] = ACTIONS(4124), - [anon_sym_LBRACE] = ACTIONS(4126), - [anon_sym_signed] = ACTIONS(4124), - [anon_sym_unsigned] = ACTIONS(4124), - [anon_sym_long] = ACTIONS(4124), - [anon_sym_short] = ACTIONS(4124), - [anon_sym_LBRACK] = ACTIONS(4124), - [anon_sym_static] = ACTIONS(4124), - [anon_sym_register] = ACTIONS(4124), - [anon_sym_inline] = ACTIONS(4124), - [anon_sym___inline] = ACTIONS(4124), - [anon_sym___inline__] = ACTIONS(4124), - [anon_sym___forceinline] = ACTIONS(4124), - [anon_sym_thread_local] = ACTIONS(4124), - [anon_sym___thread] = ACTIONS(4124), - [anon_sym_const] = ACTIONS(4124), - [anon_sym_constexpr] = ACTIONS(4124), - [anon_sym_volatile] = ACTIONS(4124), - [anon_sym_restrict] = ACTIONS(4124), - [anon_sym___restrict__] = ACTIONS(4124), - [anon_sym__Atomic] = ACTIONS(4124), - [anon_sym__Noreturn] = ACTIONS(4124), - [anon_sym_noreturn] = ACTIONS(4124), - [anon_sym__Nonnull] = ACTIONS(4124), - [anon_sym_mutable] = ACTIONS(4124), - [anon_sym_constinit] = ACTIONS(4124), - [anon_sym_consteval] = ACTIONS(4124), - [anon_sym_alignas] = ACTIONS(4124), - [anon_sym__Alignas] = ACTIONS(4124), - [sym_primitive_type] = ACTIONS(4124), - [anon_sym_enum] = ACTIONS(4124), - [anon_sym_class] = ACTIONS(4124), - [anon_sym_struct] = ACTIONS(4124), - [anon_sym_union] = ACTIONS(4124), - [anon_sym_if] = ACTIONS(4124), - [anon_sym_switch] = ACTIONS(4124), - [anon_sym_case] = ACTIONS(4124), - [anon_sym_default] = ACTIONS(4124), - [anon_sym_while] = ACTIONS(4124), - [anon_sym_do] = ACTIONS(4124), - [anon_sym_for] = ACTIONS(4124), - [anon_sym_return] = ACTIONS(4124), - [anon_sym_break] = ACTIONS(4124), - [anon_sym_continue] = ACTIONS(4124), - [anon_sym_goto] = ACTIONS(4124), - [anon_sym_not] = ACTIONS(4124), - [anon_sym_compl] = ACTIONS(4124), - [anon_sym_DASH_DASH] = ACTIONS(4126), - [anon_sym_PLUS_PLUS] = ACTIONS(4126), - [anon_sym_sizeof] = ACTIONS(4124), - [anon_sym___alignof__] = ACTIONS(4124), - [anon_sym___alignof] = ACTIONS(4124), - [anon_sym__alignof] = ACTIONS(4124), - [anon_sym_alignof] = ACTIONS(4124), - [anon_sym__Alignof] = ACTIONS(4124), - [anon_sym_offsetof] = ACTIONS(4124), - [anon_sym__Generic] = ACTIONS(4124), - [anon_sym_typename] = ACTIONS(4124), - [anon_sym_asm] = ACTIONS(4124), - [anon_sym___asm__] = ACTIONS(4124), - [anon_sym___asm] = ACTIONS(4124), - [sym_number_literal] = ACTIONS(4126), - [anon_sym_L_SQUOTE] = ACTIONS(4126), - [anon_sym_u_SQUOTE] = ACTIONS(4126), - [anon_sym_U_SQUOTE] = ACTIONS(4126), - [anon_sym_u8_SQUOTE] = ACTIONS(4126), - [anon_sym_SQUOTE] = ACTIONS(4126), - [anon_sym_L_DQUOTE] = ACTIONS(4126), - [anon_sym_u_DQUOTE] = ACTIONS(4126), - [anon_sym_U_DQUOTE] = ACTIONS(4126), - [anon_sym_u8_DQUOTE] = ACTIONS(4126), - [anon_sym_DQUOTE] = ACTIONS(4126), - [sym_true] = ACTIONS(4124), - [sym_false] = ACTIONS(4124), - [anon_sym_NULL] = ACTIONS(4124), - [anon_sym_nullptr] = ACTIONS(4124), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4124), - [anon_sym_decltype] = ACTIONS(4124), - [anon_sym_explicit] = ACTIONS(4124), - [anon_sym_export] = ACTIONS(4124), - [anon_sym_module] = ACTIONS(4124), - [anon_sym_import] = ACTIONS(4124), - [anon_sym_template] = ACTIONS(4124), - [anon_sym_operator] = ACTIONS(4124), - [anon_sym_try] = ACTIONS(4124), - [anon_sym_delete] = ACTIONS(4124), - [anon_sym_throw] = ACTIONS(4124), - [anon_sym_namespace] = ACTIONS(4124), - [anon_sym_static_assert] = ACTIONS(4124), - [anon_sym_concept] = ACTIONS(4124), - [anon_sym_co_return] = ACTIONS(4124), - [anon_sym_co_yield] = ACTIONS(4124), - [anon_sym_R_DQUOTE] = ACTIONS(4126), - [anon_sym_LR_DQUOTE] = ACTIONS(4126), - [anon_sym_uR_DQUOTE] = ACTIONS(4126), - [anon_sym_UR_DQUOTE] = ACTIONS(4126), - [anon_sym_u8R_DQUOTE] = ACTIONS(4126), - [anon_sym_co_await] = ACTIONS(4124), - [anon_sym_new] = ACTIONS(4124), - [anon_sym_requires] = ACTIONS(4124), - [anon_sym_CARET_CARET] = ACTIONS(4126), - [anon_sym_LBRACK_COLON] = ACTIONS(4126), - [sym_this] = ACTIONS(4124), + [ts_builtin_sym_end] = ACTIONS(3883), + [sym_identifier] = ACTIONS(3881), + [aux_sym_preproc_include_token1] = ACTIONS(3881), + [aux_sym_preproc_def_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token1] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3881), + [sym_preproc_directive] = ACTIONS(3881), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_BANG] = ACTIONS(3883), + [anon_sym_TILDE] = ACTIONS(3883), + [anon_sym_DASH] = ACTIONS(3881), + [anon_sym_PLUS] = ACTIONS(3881), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_SEMI] = ACTIONS(3883), + [anon_sym___extension__] = ACTIONS(3881), + [anon_sym_typedef] = ACTIONS(3881), + [anon_sym_virtual] = ACTIONS(3881), + [anon_sym_extern] = ACTIONS(3881), + [anon_sym___attribute__] = ACTIONS(3881), + [anon_sym___attribute] = ACTIONS(3881), + [anon_sym_using] = ACTIONS(3881), + [anon_sym_COLON_COLON] = ACTIONS(3883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3883), + [anon_sym___declspec] = ACTIONS(3881), + [anon_sym___based] = ACTIONS(3881), + [anon_sym___cdecl] = ACTIONS(3881), + [anon_sym___clrcall] = ACTIONS(3881), + [anon_sym___stdcall] = ACTIONS(3881), + [anon_sym___fastcall] = ACTIONS(3881), + [anon_sym___thiscall] = ACTIONS(3881), + [anon_sym___vectorcall] = ACTIONS(3881), + [anon_sym_LBRACE] = ACTIONS(3883), + [anon_sym_signed] = ACTIONS(3881), + [anon_sym_unsigned] = ACTIONS(3881), + [anon_sym_long] = ACTIONS(3881), + [anon_sym_short] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_static] = ACTIONS(3881), + [anon_sym_register] = ACTIONS(3881), + [anon_sym_inline] = ACTIONS(3881), + [anon_sym___inline] = ACTIONS(3881), + [anon_sym___inline__] = ACTIONS(3881), + [anon_sym___forceinline] = ACTIONS(3881), + [anon_sym_thread_local] = ACTIONS(3881), + [anon_sym___thread] = ACTIONS(3881), + [anon_sym_const] = ACTIONS(3881), + [anon_sym_constexpr] = ACTIONS(3881), + [anon_sym_volatile] = ACTIONS(3881), + [anon_sym_restrict] = ACTIONS(3881), + [anon_sym___restrict__] = ACTIONS(3881), + [anon_sym__Atomic] = ACTIONS(3881), + [anon_sym__Noreturn] = ACTIONS(3881), + [anon_sym_noreturn] = ACTIONS(3881), + [anon_sym__Nonnull] = ACTIONS(3881), + [anon_sym_mutable] = ACTIONS(3881), + [anon_sym_constinit] = ACTIONS(3881), + [anon_sym_consteval] = ACTIONS(3881), + [anon_sym_alignas] = ACTIONS(3881), + [anon_sym__Alignas] = ACTIONS(3881), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_enum] = ACTIONS(3881), + [anon_sym_class] = ACTIONS(3881), + [anon_sym_struct] = ACTIONS(3881), + [anon_sym_union] = ACTIONS(3881), + [anon_sym_if] = ACTIONS(3881), + [anon_sym_switch] = ACTIONS(3881), + [anon_sym_case] = ACTIONS(3881), + [anon_sym_default] = ACTIONS(3881), + [anon_sym_while] = ACTIONS(3881), + [anon_sym_do] = ACTIONS(3881), + [anon_sym_for] = ACTIONS(3881), + [anon_sym_return] = ACTIONS(3881), + [anon_sym_break] = ACTIONS(3881), + [anon_sym_continue] = ACTIONS(3881), + [anon_sym_goto] = ACTIONS(3881), + [anon_sym_not] = ACTIONS(3881), + [anon_sym_compl] = ACTIONS(3881), + [anon_sym_DASH_DASH] = ACTIONS(3883), + [anon_sym_PLUS_PLUS] = ACTIONS(3883), + [anon_sym_sizeof] = ACTIONS(3881), + [anon_sym___alignof__] = ACTIONS(3881), + [anon_sym___alignof] = ACTIONS(3881), + [anon_sym__alignof] = ACTIONS(3881), + [anon_sym_alignof] = ACTIONS(3881), + [anon_sym__Alignof] = ACTIONS(3881), + [anon_sym_offsetof] = ACTIONS(3881), + [anon_sym__Generic] = ACTIONS(3881), + [anon_sym_typename] = ACTIONS(3881), + [anon_sym_asm] = ACTIONS(3881), + [anon_sym___asm__] = ACTIONS(3881), + [anon_sym___asm] = ACTIONS(3881), + [sym_number_literal] = ACTIONS(3883), + [anon_sym_L_SQUOTE] = ACTIONS(3883), + [anon_sym_u_SQUOTE] = ACTIONS(3883), + [anon_sym_U_SQUOTE] = ACTIONS(3883), + [anon_sym_u8_SQUOTE] = ACTIONS(3883), + [anon_sym_SQUOTE] = ACTIONS(3883), + [anon_sym_L_DQUOTE] = ACTIONS(3883), + [anon_sym_u_DQUOTE] = ACTIONS(3883), + [anon_sym_U_DQUOTE] = ACTIONS(3883), + [anon_sym_u8_DQUOTE] = ACTIONS(3883), + [anon_sym_DQUOTE] = ACTIONS(3883), + [sym_true] = ACTIONS(3881), + [sym_false] = ACTIONS(3881), + [anon_sym_NULL] = ACTIONS(3881), + [anon_sym_nullptr] = ACTIONS(3881), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3881), + [anon_sym_decltype] = ACTIONS(3881), + [anon_sym_explicit] = ACTIONS(3881), + [anon_sym_export] = ACTIONS(3881), + [anon_sym_module] = ACTIONS(3881), + [anon_sym_import] = ACTIONS(3881), + [anon_sym_template] = ACTIONS(3881), + [anon_sym_operator] = ACTIONS(3881), + [anon_sym_try] = ACTIONS(3881), + [anon_sym_delete] = ACTIONS(3881), + [anon_sym_throw] = ACTIONS(3881), + [anon_sym_namespace] = ACTIONS(3881), + [anon_sym_static_assert] = ACTIONS(3881), + [anon_sym_concept] = ACTIONS(3881), + [anon_sym_co_return] = ACTIONS(3881), + [anon_sym_co_yield] = ACTIONS(3881), + [anon_sym_R_DQUOTE] = ACTIONS(3883), + [anon_sym_LR_DQUOTE] = ACTIONS(3883), + [anon_sym_uR_DQUOTE] = ACTIONS(3883), + [anon_sym_UR_DQUOTE] = ACTIONS(3883), + [anon_sym_u8R_DQUOTE] = ACTIONS(3883), + [anon_sym_co_await] = ACTIONS(3881), + [anon_sym_new] = ACTIONS(3881), + [anon_sym_requires] = ACTIONS(3881), + [anon_sym_CARET_CARET] = ACTIONS(3883), + [anon_sym_LBRACK_COLON] = ACTIONS(3883), + [sym_this] = ACTIONS(3881), }, [STATE(869)] = { - [ts_builtin_sym_end] = ACTIONS(3998), - [sym_identifier] = ACTIONS(3996), - [aux_sym_preproc_include_token1] = ACTIONS(3996), - [aux_sym_preproc_def_token1] = ACTIONS(3996), - [aux_sym_preproc_if_token1] = ACTIONS(3996), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3996), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3996), - [sym_preproc_directive] = ACTIONS(3996), - [anon_sym_LPAREN2] = ACTIONS(3998), - [anon_sym_BANG] = ACTIONS(3998), - [anon_sym_TILDE] = ACTIONS(3998), - [anon_sym_DASH] = ACTIONS(3996), - [anon_sym_PLUS] = ACTIONS(3996), - [anon_sym_STAR] = ACTIONS(3998), - [anon_sym_AMP_AMP] = ACTIONS(3998), - [anon_sym_AMP] = ACTIONS(3996), - [anon_sym_SEMI] = ACTIONS(3998), - [anon_sym___extension__] = ACTIONS(3996), - [anon_sym_typedef] = ACTIONS(3996), - [anon_sym_virtual] = ACTIONS(3996), - [anon_sym_extern] = ACTIONS(3996), - [anon_sym___attribute__] = ACTIONS(3996), - [anon_sym___attribute] = ACTIONS(3996), - [anon_sym_using] = ACTIONS(3996), - [anon_sym_COLON_COLON] = ACTIONS(3998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3998), - [anon_sym___declspec] = ACTIONS(3996), - [anon_sym___based] = ACTIONS(3996), - [anon_sym___cdecl] = ACTIONS(3996), - [anon_sym___clrcall] = ACTIONS(3996), - [anon_sym___stdcall] = ACTIONS(3996), - [anon_sym___fastcall] = ACTIONS(3996), - [anon_sym___thiscall] = ACTIONS(3996), - [anon_sym___vectorcall] = ACTIONS(3996), - [anon_sym_LBRACE] = ACTIONS(3998), - [anon_sym_signed] = ACTIONS(3996), - [anon_sym_unsigned] = ACTIONS(3996), - [anon_sym_long] = ACTIONS(3996), - [anon_sym_short] = ACTIONS(3996), - [anon_sym_LBRACK] = ACTIONS(3996), - [anon_sym_static] = ACTIONS(3996), - [anon_sym_register] = ACTIONS(3996), - [anon_sym_inline] = ACTIONS(3996), - [anon_sym___inline] = ACTIONS(3996), - [anon_sym___inline__] = ACTIONS(3996), - [anon_sym___forceinline] = ACTIONS(3996), - [anon_sym_thread_local] = ACTIONS(3996), - [anon_sym___thread] = ACTIONS(3996), - [anon_sym_const] = ACTIONS(3996), - [anon_sym_constexpr] = ACTIONS(3996), - [anon_sym_volatile] = ACTIONS(3996), - [anon_sym_restrict] = ACTIONS(3996), - [anon_sym___restrict__] = ACTIONS(3996), - [anon_sym__Atomic] = ACTIONS(3996), - [anon_sym__Noreturn] = ACTIONS(3996), - [anon_sym_noreturn] = ACTIONS(3996), - [anon_sym__Nonnull] = ACTIONS(3996), - [anon_sym_mutable] = ACTIONS(3996), - [anon_sym_constinit] = ACTIONS(3996), - [anon_sym_consteval] = ACTIONS(3996), - [anon_sym_alignas] = ACTIONS(3996), - [anon_sym__Alignas] = ACTIONS(3996), - [sym_primitive_type] = ACTIONS(3996), - [anon_sym_enum] = ACTIONS(3996), - [anon_sym_class] = ACTIONS(3996), - [anon_sym_struct] = ACTIONS(3996), - [anon_sym_union] = ACTIONS(3996), - [anon_sym_if] = ACTIONS(3996), - [anon_sym_switch] = ACTIONS(3996), - [anon_sym_case] = ACTIONS(3996), - [anon_sym_default] = ACTIONS(3996), - [anon_sym_while] = ACTIONS(3996), - [anon_sym_do] = ACTIONS(3996), - [anon_sym_for] = ACTIONS(3996), - [anon_sym_return] = ACTIONS(3996), - [anon_sym_break] = ACTIONS(3996), - [anon_sym_continue] = ACTIONS(3996), - [anon_sym_goto] = ACTIONS(3996), - [anon_sym_not] = ACTIONS(3996), - [anon_sym_compl] = ACTIONS(3996), - [anon_sym_DASH_DASH] = ACTIONS(3998), - [anon_sym_PLUS_PLUS] = ACTIONS(3998), - [anon_sym_sizeof] = ACTIONS(3996), - [anon_sym___alignof__] = ACTIONS(3996), - [anon_sym___alignof] = ACTIONS(3996), - [anon_sym__alignof] = ACTIONS(3996), - [anon_sym_alignof] = ACTIONS(3996), - [anon_sym__Alignof] = ACTIONS(3996), - [anon_sym_offsetof] = ACTIONS(3996), - [anon_sym__Generic] = ACTIONS(3996), - [anon_sym_typename] = ACTIONS(3996), - [anon_sym_asm] = ACTIONS(3996), - [anon_sym___asm__] = ACTIONS(3996), - [anon_sym___asm] = ACTIONS(3996), - [sym_number_literal] = ACTIONS(3998), - [anon_sym_L_SQUOTE] = ACTIONS(3998), - [anon_sym_u_SQUOTE] = ACTIONS(3998), - [anon_sym_U_SQUOTE] = ACTIONS(3998), - [anon_sym_u8_SQUOTE] = ACTIONS(3998), - [anon_sym_SQUOTE] = ACTIONS(3998), - [anon_sym_L_DQUOTE] = ACTIONS(3998), - [anon_sym_u_DQUOTE] = ACTIONS(3998), - [anon_sym_U_DQUOTE] = ACTIONS(3998), - [anon_sym_u8_DQUOTE] = ACTIONS(3998), - [anon_sym_DQUOTE] = ACTIONS(3998), - [sym_true] = ACTIONS(3996), - [sym_false] = ACTIONS(3996), - [anon_sym_NULL] = ACTIONS(3996), - [anon_sym_nullptr] = ACTIONS(3996), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3996), - [anon_sym_decltype] = ACTIONS(3996), - [anon_sym_explicit] = ACTIONS(3996), - [anon_sym_export] = ACTIONS(3996), - [anon_sym_module] = ACTIONS(3996), - [anon_sym_import] = ACTIONS(3996), - [anon_sym_template] = ACTIONS(3996), - [anon_sym_operator] = ACTIONS(3996), - [anon_sym_try] = ACTIONS(3996), - [anon_sym_delete] = ACTIONS(3996), - [anon_sym_throw] = ACTIONS(3996), - [anon_sym_namespace] = ACTIONS(3996), - [anon_sym_static_assert] = ACTIONS(3996), - [anon_sym_concept] = ACTIONS(3996), - [anon_sym_co_return] = ACTIONS(3996), - [anon_sym_co_yield] = ACTIONS(3996), - [anon_sym_R_DQUOTE] = ACTIONS(3998), - [anon_sym_LR_DQUOTE] = ACTIONS(3998), - [anon_sym_uR_DQUOTE] = ACTIONS(3998), - [anon_sym_UR_DQUOTE] = ACTIONS(3998), - [anon_sym_u8R_DQUOTE] = ACTIONS(3998), - [anon_sym_co_await] = ACTIONS(3996), - [anon_sym_new] = ACTIONS(3996), - [anon_sym_requires] = ACTIONS(3996), - [anon_sym_CARET_CARET] = ACTIONS(3998), - [anon_sym_LBRACK_COLON] = ACTIONS(3998), - [sym_this] = ACTIONS(3996), + [ts_builtin_sym_end] = ACTIONS(3716), + [sym_identifier] = ACTIONS(3714), + [aux_sym_preproc_include_token1] = ACTIONS(3714), + [aux_sym_preproc_def_token1] = ACTIONS(3714), + [aux_sym_preproc_if_token1] = ACTIONS(3714), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3714), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3714), + [sym_preproc_directive] = ACTIONS(3714), + [anon_sym_LPAREN2] = ACTIONS(3716), + [anon_sym_BANG] = ACTIONS(3716), + [anon_sym_TILDE] = ACTIONS(3716), + [anon_sym_DASH] = ACTIONS(3714), + [anon_sym_PLUS] = ACTIONS(3714), + [anon_sym_STAR] = ACTIONS(3716), + [anon_sym_AMP_AMP] = ACTIONS(3716), + [anon_sym_AMP] = ACTIONS(3714), + [anon_sym_SEMI] = ACTIONS(3716), + [anon_sym___extension__] = ACTIONS(3714), + [anon_sym_typedef] = ACTIONS(3714), + [anon_sym_virtual] = ACTIONS(3714), + [anon_sym_extern] = ACTIONS(3714), + [anon_sym___attribute__] = ACTIONS(3714), + [anon_sym___attribute] = ACTIONS(3714), + [anon_sym_using] = ACTIONS(3714), + [anon_sym_COLON_COLON] = ACTIONS(3716), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3716), + [anon_sym___declspec] = ACTIONS(3714), + [anon_sym___based] = ACTIONS(3714), + [anon_sym___cdecl] = ACTIONS(3714), + [anon_sym___clrcall] = ACTIONS(3714), + [anon_sym___stdcall] = ACTIONS(3714), + [anon_sym___fastcall] = ACTIONS(3714), + [anon_sym___thiscall] = ACTIONS(3714), + [anon_sym___vectorcall] = ACTIONS(3714), + [anon_sym_LBRACE] = ACTIONS(3716), + [anon_sym_signed] = ACTIONS(3714), + [anon_sym_unsigned] = ACTIONS(3714), + [anon_sym_long] = ACTIONS(3714), + [anon_sym_short] = ACTIONS(3714), + [anon_sym_LBRACK] = ACTIONS(3714), + [anon_sym_static] = ACTIONS(3714), + [anon_sym_register] = ACTIONS(3714), + [anon_sym_inline] = ACTIONS(3714), + [anon_sym___inline] = ACTIONS(3714), + [anon_sym___inline__] = ACTIONS(3714), + [anon_sym___forceinline] = ACTIONS(3714), + [anon_sym_thread_local] = ACTIONS(3714), + [anon_sym___thread] = ACTIONS(3714), + [anon_sym_const] = ACTIONS(3714), + [anon_sym_constexpr] = ACTIONS(3714), + [anon_sym_volatile] = ACTIONS(3714), + [anon_sym_restrict] = ACTIONS(3714), + [anon_sym___restrict__] = ACTIONS(3714), + [anon_sym__Atomic] = ACTIONS(3714), + [anon_sym__Noreturn] = ACTIONS(3714), + [anon_sym_noreturn] = ACTIONS(3714), + [anon_sym__Nonnull] = ACTIONS(3714), + [anon_sym_mutable] = ACTIONS(3714), + [anon_sym_constinit] = ACTIONS(3714), + [anon_sym_consteval] = ACTIONS(3714), + [anon_sym_alignas] = ACTIONS(3714), + [anon_sym__Alignas] = ACTIONS(3714), + [sym_primitive_type] = ACTIONS(3714), + [anon_sym_enum] = ACTIONS(3714), + [anon_sym_class] = ACTIONS(3714), + [anon_sym_struct] = ACTIONS(3714), + [anon_sym_union] = ACTIONS(3714), + [anon_sym_if] = ACTIONS(3714), + [anon_sym_switch] = ACTIONS(3714), + [anon_sym_case] = ACTIONS(3714), + [anon_sym_default] = ACTIONS(3714), + [anon_sym_while] = ACTIONS(3714), + [anon_sym_do] = ACTIONS(3714), + [anon_sym_for] = ACTIONS(3714), + [anon_sym_return] = ACTIONS(3714), + [anon_sym_break] = ACTIONS(3714), + [anon_sym_continue] = ACTIONS(3714), + [anon_sym_goto] = ACTIONS(3714), + [anon_sym_not] = ACTIONS(3714), + [anon_sym_compl] = ACTIONS(3714), + [anon_sym_DASH_DASH] = ACTIONS(3716), + [anon_sym_PLUS_PLUS] = ACTIONS(3716), + [anon_sym_sizeof] = ACTIONS(3714), + [anon_sym___alignof__] = ACTIONS(3714), + [anon_sym___alignof] = ACTIONS(3714), + [anon_sym__alignof] = ACTIONS(3714), + [anon_sym_alignof] = ACTIONS(3714), + [anon_sym__Alignof] = ACTIONS(3714), + [anon_sym_offsetof] = ACTIONS(3714), + [anon_sym__Generic] = ACTIONS(3714), + [anon_sym_typename] = ACTIONS(3714), + [anon_sym_asm] = ACTIONS(3714), + [anon_sym___asm__] = ACTIONS(3714), + [anon_sym___asm] = ACTIONS(3714), + [sym_number_literal] = ACTIONS(3716), + [anon_sym_L_SQUOTE] = ACTIONS(3716), + [anon_sym_u_SQUOTE] = ACTIONS(3716), + [anon_sym_U_SQUOTE] = ACTIONS(3716), + [anon_sym_u8_SQUOTE] = ACTIONS(3716), + [anon_sym_SQUOTE] = ACTIONS(3716), + [anon_sym_L_DQUOTE] = ACTIONS(3716), + [anon_sym_u_DQUOTE] = ACTIONS(3716), + [anon_sym_U_DQUOTE] = ACTIONS(3716), + [anon_sym_u8_DQUOTE] = ACTIONS(3716), + [anon_sym_DQUOTE] = ACTIONS(3716), + [sym_true] = ACTIONS(3714), + [sym_false] = ACTIONS(3714), + [anon_sym_NULL] = ACTIONS(3714), + [anon_sym_nullptr] = ACTIONS(3714), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3714), + [anon_sym_decltype] = ACTIONS(3714), + [anon_sym_explicit] = ACTIONS(3714), + [anon_sym_export] = ACTIONS(3714), + [anon_sym_module] = ACTIONS(3714), + [anon_sym_import] = ACTIONS(3714), + [anon_sym_template] = ACTIONS(3714), + [anon_sym_operator] = ACTIONS(3714), + [anon_sym_try] = ACTIONS(3714), + [anon_sym_delete] = ACTIONS(3714), + [anon_sym_throw] = ACTIONS(3714), + [anon_sym_namespace] = ACTIONS(3714), + [anon_sym_static_assert] = ACTIONS(3714), + [anon_sym_concept] = ACTIONS(3714), + [anon_sym_co_return] = ACTIONS(3714), + [anon_sym_co_yield] = ACTIONS(3714), + [anon_sym_R_DQUOTE] = ACTIONS(3716), + [anon_sym_LR_DQUOTE] = ACTIONS(3716), + [anon_sym_uR_DQUOTE] = ACTIONS(3716), + [anon_sym_UR_DQUOTE] = ACTIONS(3716), + [anon_sym_u8R_DQUOTE] = ACTIONS(3716), + [anon_sym_co_await] = ACTIONS(3714), + [anon_sym_new] = ACTIONS(3714), + [anon_sym_requires] = ACTIONS(3714), + [anon_sym_CARET_CARET] = ACTIONS(3716), + [anon_sym_LBRACK_COLON] = ACTIONS(3716), + [sym_this] = ACTIONS(3714), }, [STATE(870)] = { - [sym_preproc_def] = STATE(872), - [sym_preproc_function_def] = STATE(872), - [sym_preproc_call] = STATE(872), - [sym_preproc_if_in_field_declaration_list] = STATE(872), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(872), - [sym_type_definition] = STATE(872), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(872), - [sym_field_declaration] = STATE(872), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(872), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(872), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(872), - [sym_operator_cast_declaration] = STATE(872), - [sym_constructor_or_destructor_definition] = STATE(872), - [sym_constructor_or_destructor_declaration] = STATE(872), - [sym_friend_declaration] = STATE(872), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(872), - [sym_alias_declaration] = STATE(872), - [sym_static_assert_declaration] = STATE(872), - [sym_consteval_block_declaration] = STATE(872), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(872), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_identifier] = ACTIONS(4460), + [aux_sym_preproc_include_token1] = ACTIONS(4460), + [aux_sym_preproc_def_token1] = ACTIONS(4460), + [aux_sym_preproc_if_token1] = ACTIONS(4460), + [aux_sym_preproc_if_token2] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4460), + [sym_preproc_directive] = ACTIONS(4460), + [anon_sym_LPAREN2] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4460), + [anon_sym_PLUS] = ACTIONS(4460), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_AMP] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym___extension__] = ACTIONS(4460), + [anon_sym_typedef] = ACTIONS(4460), + [anon_sym_virtual] = ACTIONS(4460), + [anon_sym_extern] = ACTIONS(4460), + [anon_sym___attribute__] = ACTIONS(4460), + [anon_sym___attribute] = ACTIONS(4460), + [anon_sym_using] = ACTIONS(4460), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), + [anon_sym___declspec] = ACTIONS(4460), + [anon_sym___based] = ACTIONS(4460), + [anon_sym___cdecl] = ACTIONS(4460), + [anon_sym___clrcall] = ACTIONS(4460), + [anon_sym___stdcall] = ACTIONS(4460), + [anon_sym___fastcall] = ACTIONS(4460), + [anon_sym___thiscall] = ACTIONS(4460), + [anon_sym___vectorcall] = ACTIONS(4460), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_signed] = ACTIONS(4460), + [anon_sym_unsigned] = ACTIONS(4460), + [anon_sym_long] = ACTIONS(4460), + [anon_sym_short] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4460), + [anon_sym_static] = ACTIONS(4460), + [anon_sym_register] = ACTIONS(4460), + [anon_sym_inline] = ACTIONS(4460), + [anon_sym___inline] = ACTIONS(4460), + [anon_sym___inline__] = ACTIONS(4460), + [anon_sym___forceinline] = ACTIONS(4460), + [anon_sym_thread_local] = ACTIONS(4460), + [anon_sym___thread] = ACTIONS(4460), + [anon_sym_const] = ACTIONS(4460), + [anon_sym_constexpr] = ACTIONS(4460), + [anon_sym_volatile] = ACTIONS(4460), + [anon_sym_restrict] = ACTIONS(4460), + [anon_sym___restrict__] = ACTIONS(4460), + [anon_sym__Atomic] = ACTIONS(4460), + [anon_sym__Noreturn] = ACTIONS(4460), + [anon_sym_noreturn] = ACTIONS(4460), + [anon_sym__Nonnull] = ACTIONS(4460), + [anon_sym_mutable] = ACTIONS(4460), + [anon_sym_constinit] = ACTIONS(4460), + [anon_sym_consteval] = ACTIONS(4460), + [anon_sym_alignas] = ACTIONS(4460), + [anon_sym__Alignas] = ACTIONS(4460), + [sym_primitive_type] = ACTIONS(4460), + [anon_sym_enum] = ACTIONS(4460), + [anon_sym_class] = ACTIONS(4460), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_union] = ACTIONS(4460), + [anon_sym_if] = ACTIONS(4460), + [anon_sym_switch] = ACTIONS(4460), + [anon_sym_case] = ACTIONS(4460), + [anon_sym_default] = ACTIONS(4460), + [anon_sym_while] = ACTIONS(4460), + [anon_sym_do] = ACTIONS(4460), + [anon_sym_for] = ACTIONS(4460), + [anon_sym_return] = ACTIONS(4460), + [anon_sym_break] = ACTIONS(4460), + [anon_sym_continue] = ACTIONS(4460), + [anon_sym_goto] = ACTIONS(4460), + [anon_sym_not] = ACTIONS(4460), + [anon_sym_compl] = ACTIONS(4460), + [anon_sym_DASH_DASH] = ACTIONS(4462), + [anon_sym_PLUS_PLUS] = ACTIONS(4462), + [anon_sym_sizeof] = ACTIONS(4460), + [anon_sym___alignof__] = ACTIONS(4460), + [anon_sym___alignof] = ACTIONS(4460), + [anon_sym__alignof] = ACTIONS(4460), + [anon_sym_alignof] = ACTIONS(4460), + [anon_sym__Alignof] = ACTIONS(4460), + [anon_sym_offsetof] = ACTIONS(4460), + [anon_sym__Generic] = ACTIONS(4460), + [anon_sym_typename] = ACTIONS(4460), + [anon_sym_asm] = ACTIONS(4460), + [anon_sym___asm__] = ACTIONS(4460), + [anon_sym___asm] = ACTIONS(4460), + [sym_number_literal] = ACTIONS(4462), + [anon_sym_L_SQUOTE] = ACTIONS(4462), + [anon_sym_u_SQUOTE] = ACTIONS(4462), + [anon_sym_U_SQUOTE] = ACTIONS(4462), + [anon_sym_u8_SQUOTE] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4462), + [anon_sym_L_DQUOTE] = ACTIONS(4462), + [anon_sym_u_DQUOTE] = ACTIONS(4462), + [anon_sym_U_DQUOTE] = ACTIONS(4462), + [anon_sym_u8_DQUOTE] = ACTIONS(4462), + [anon_sym_DQUOTE] = ACTIONS(4462), + [sym_true] = ACTIONS(4460), + [sym_false] = ACTIONS(4460), + [anon_sym_NULL] = ACTIONS(4460), + [anon_sym_nullptr] = ACTIONS(4460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4460), + [anon_sym_decltype] = ACTIONS(4460), + [anon_sym_explicit] = ACTIONS(4460), + [anon_sym_export] = ACTIONS(4460), + [anon_sym_module] = ACTIONS(4460), + [anon_sym_import] = ACTIONS(4460), + [anon_sym_template] = ACTIONS(4460), + [anon_sym_operator] = ACTIONS(4460), + [anon_sym_try] = ACTIONS(4460), + [anon_sym_delete] = ACTIONS(4460), + [anon_sym_throw] = ACTIONS(4460), + [anon_sym_namespace] = ACTIONS(4460), + [anon_sym_static_assert] = ACTIONS(4460), + [anon_sym_concept] = ACTIONS(4460), + [anon_sym_co_return] = ACTIONS(4460), + [anon_sym_co_yield] = ACTIONS(4460), + [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(4460), + [anon_sym_new] = ACTIONS(4460), + [anon_sym_requires] = ACTIONS(4460), + [anon_sym_CARET_CARET] = ACTIONS(4462), + [anon_sym_LBRACK_COLON] = ACTIONS(4462), + [sym_this] = ACTIONS(4460), + }, + [STATE(871)] = { + [ts_builtin_sym_end] = ACTIONS(3720), + [sym_identifier] = ACTIONS(3718), + [aux_sym_preproc_include_token1] = ACTIONS(3718), + [aux_sym_preproc_def_token1] = ACTIONS(3718), + [aux_sym_preproc_if_token1] = ACTIONS(3718), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3718), + [sym_preproc_directive] = ACTIONS(3718), + [anon_sym_LPAREN2] = ACTIONS(3720), + [anon_sym_BANG] = ACTIONS(3720), + [anon_sym_TILDE] = ACTIONS(3720), + [anon_sym_DASH] = ACTIONS(3718), + [anon_sym_PLUS] = ACTIONS(3718), + [anon_sym_STAR] = ACTIONS(3720), + [anon_sym_AMP_AMP] = ACTIONS(3720), + [anon_sym_AMP] = ACTIONS(3718), + [anon_sym_SEMI] = ACTIONS(3720), + [anon_sym___extension__] = ACTIONS(3718), + [anon_sym_typedef] = ACTIONS(3718), + [anon_sym_virtual] = ACTIONS(3718), + [anon_sym_extern] = ACTIONS(3718), + [anon_sym___attribute__] = ACTIONS(3718), + [anon_sym___attribute] = ACTIONS(3718), + [anon_sym_using] = ACTIONS(3718), + [anon_sym_COLON_COLON] = ACTIONS(3720), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3720), + [anon_sym___declspec] = ACTIONS(3718), + [anon_sym___based] = ACTIONS(3718), + [anon_sym___cdecl] = ACTIONS(3718), + [anon_sym___clrcall] = ACTIONS(3718), + [anon_sym___stdcall] = ACTIONS(3718), + [anon_sym___fastcall] = ACTIONS(3718), + [anon_sym___thiscall] = ACTIONS(3718), + [anon_sym___vectorcall] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3720), + [anon_sym_signed] = ACTIONS(3718), + [anon_sym_unsigned] = ACTIONS(3718), + [anon_sym_long] = ACTIONS(3718), + [anon_sym_short] = ACTIONS(3718), + [anon_sym_LBRACK] = ACTIONS(3718), + [anon_sym_static] = ACTIONS(3718), + [anon_sym_register] = ACTIONS(3718), + [anon_sym_inline] = ACTIONS(3718), + [anon_sym___inline] = ACTIONS(3718), + [anon_sym___inline__] = ACTIONS(3718), + [anon_sym___forceinline] = ACTIONS(3718), + [anon_sym_thread_local] = ACTIONS(3718), + [anon_sym___thread] = ACTIONS(3718), + [anon_sym_const] = ACTIONS(3718), + [anon_sym_constexpr] = ACTIONS(3718), + [anon_sym_volatile] = ACTIONS(3718), + [anon_sym_restrict] = ACTIONS(3718), + [anon_sym___restrict__] = ACTIONS(3718), + [anon_sym__Atomic] = ACTIONS(3718), + [anon_sym__Noreturn] = ACTIONS(3718), + [anon_sym_noreturn] = ACTIONS(3718), + [anon_sym__Nonnull] = ACTIONS(3718), + [anon_sym_mutable] = ACTIONS(3718), + [anon_sym_constinit] = ACTIONS(3718), + [anon_sym_consteval] = ACTIONS(3718), + [anon_sym_alignas] = ACTIONS(3718), + [anon_sym__Alignas] = ACTIONS(3718), + [sym_primitive_type] = ACTIONS(3718), + [anon_sym_enum] = ACTIONS(3718), + [anon_sym_class] = ACTIONS(3718), + [anon_sym_struct] = ACTIONS(3718), + [anon_sym_union] = ACTIONS(3718), + [anon_sym_if] = ACTIONS(3718), + [anon_sym_switch] = ACTIONS(3718), + [anon_sym_case] = ACTIONS(3718), + [anon_sym_default] = ACTIONS(3718), + [anon_sym_while] = ACTIONS(3718), + [anon_sym_do] = ACTIONS(3718), + [anon_sym_for] = ACTIONS(3718), + [anon_sym_return] = ACTIONS(3718), + [anon_sym_break] = ACTIONS(3718), + [anon_sym_continue] = ACTIONS(3718), + [anon_sym_goto] = ACTIONS(3718), + [anon_sym_not] = ACTIONS(3718), + [anon_sym_compl] = ACTIONS(3718), + [anon_sym_DASH_DASH] = ACTIONS(3720), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_sizeof] = ACTIONS(3718), + [anon_sym___alignof__] = ACTIONS(3718), + [anon_sym___alignof] = ACTIONS(3718), + [anon_sym__alignof] = ACTIONS(3718), + [anon_sym_alignof] = ACTIONS(3718), + [anon_sym__Alignof] = ACTIONS(3718), + [anon_sym_offsetof] = ACTIONS(3718), + [anon_sym__Generic] = ACTIONS(3718), + [anon_sym_typename] = ACTIONS(3718), + [anon_sym_asm] = ACTIONS(3718), + [anon_sym___asm__] = ACTIONS(3718), + [anon_sym___asm] = ACTIONS(3718), + [sym_number_literal] = ACTIONS(3720), + [anon_sym_L_SQUOTE] = ACTIONS(3720), + [anon_sym_u_SQUOTE] = ACTIONS(3720), + [anon_sym_U_SQUOTE] = ACTIONS(3720), + [anon_sym_u8_SQUOTE] = ACTIONS(3720), + [anon_sym_SQUOTE] = ACTIONS(3720), + [anon_sym_L_DQUOTE] = ACTIONS(3720), + [anon_sym_u_DQUOTE] = ACTIONS(3720), + [anon_sym_U_DQUOTE] = ACTIONS(3720), + [anon_sym_u8_DQUOTE] = ACTIONS(3720), + [anon_sym_DQUOTE] = ACTIONS(3720), + [sym_true] = ACTIONS(3718), + [sym_false] = ACTIONS(3718), + [anon_sym_NULL] = ACTIONS(3718), + [anon_sym_nullptr] = ACTIONS(3718), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(3718), + [anon_sym_explicit] = ACTIONS(3718), + [anon_sym_export] = ACTIONS(3718), + [anon_sym_module] = ACTIONS(3718), + [anon_sym_import] = ACTIONS(3718), + [anon_sym_template] = ACTIONS(3718), + [anon_sym_operator] = ACTIONS(3718), + [anon_sym_try] = ACTIONS(3718), + [anon_sym_delete] = ACTIONS(3718), + [anon_sym_throw] = ACTIONS(3718), + [anon_sym_namespace] = ACTIONS(3718), + [anon_sym_static_assert] = ACTIONS(3718), + [anon_sym_concept] = ACTIONS(3718), + [anon_sym_co_return] = ACTIONS(3718), + [anon_sym_co_yield] = ACTIONS(3718), + [anon_sym_R_DQUOTE] = ACTIONS(3720), + [anon_sym_LR_DQUOTE] = ACTIONS(3720), + [anon_sym_uR_DQUOTE] = ACTIONS(3720), + [anon_sym_UR_DQUOTE] = ACTIONS(3720), + [anon_sym_u8R_DQUOTE] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3718), + [anon_sym_new] = ACTIONS(3718), + [anon_sym_requires] = ACTIONS(3718), + [anon_sym_CARET_CARET] = ACTIONS(3720), + [anon_sym_LBRACK_COLON] = ACTIONS(3720), + [sym_this] = ACTIONS(3718), + }, + [STATE(872)] = { + [sym_identifier] = ACTIONS(4464), + [aux_sym_preproc_include_token1] = ACTIONS(4464), + [aux_sym_preproc_def_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token2] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4464), + [sym_preproc_directive] = ACTIONS(4464), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_TILDE] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4467), + [anon_sym___extension__] = ACTIONS(4464), + [anon_sym_typedef] = ACTIONS(4464), + [anon_sym_virtual] = ACTIONS(4464), + [anon_sym_extern] = ACTIONS(4464), + [anon_sym___attribute__] = ACTIONS(4464), + [anon_sym___attribute] = ACTIONS(4464), + [anon_sym_using] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4467), + [anon_sym___declspec] = ACTIONS(4464), + [anon_sym___based] = ACTIONS(4464), + [anon_sym___cdecl] = ACTIONS(4464), + [anon_sym___clrcall] = ACTIONS(4464), + [anon_sym___stdcall] = ACTIONS(4464), + [anon_sym___fastcall] = ACTIONS(4464), + [anon_sym___thiscall] = ACTIONS(4464), + [anon_sym___vectorcall] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_signed] = ACTIONS(4464), + [anon_sym_unsigned] = ACTIONS(4464), + [anon_sym_long] = ACTIONS(4464), + [anon_sym_short] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_static] = ACTIONS(4464), + [anon_sym_register] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym___inline] = ACTIONS(4464), + [anon_sym___inline__] = ACTIONS(4464), + [anon_sym___forceinline] = ACTIONS(4464), + [anon_sym_thread_local] = ACTIONS(4464), + [anon_sym___thread] = ACTIONS(4464), + [anon_sym_const] = ACTIONS(4464), + [anon_sym_constexpr] = ACTIONS(4464), + [anon_sym_volatile] = ACTIONS(4464), + [anon_sym_restrict] = ACTIONS(4464), + [anon_sym___restrict__] = ACTIONS(4464), + [anon_sym__Atomic] = ACTIONS(4464), + [anon_sym__Noreturn] = ACTIONS(4464), + [anon_sym_noreturn] = ACTIONS(4464), + [anon_sym__Nonnull] = ACTIONS(4464), + [anon_sym_mutable] = ACTIONS(4464), + [anon_sym_constinit] = ACTIONS(4464), + [anon_sym_consteval] = ACTIONS(4464), + [anon_sym_alignas] = ACTIONS(4464), + [anon_sym__Alignas] = ACTIONS(4464), + [sym_primitive_type] = ACTIONS(4464), + [anon_sym_enum] = ACTIONS(4464), + [anon_sym_class] = ACTIONS(4464), + [anon_sym_struct] = ACTIONS(4464), + [anon_sym_union] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_switch] = ACTIONS(4464), + [anon_sym_case] = ACTIONS(4464), + [anon_sym_default] = ACTIONS(4464), + [anon_sym_while] = ACTIONS(4464), + [anon_sym_do] = ACTIONS(4464), + [anon_sym_for] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_break] = ACTIONS(4464), + [anon_sym_continue] = ACTIONS(4464), + [anon_sym_goto] = ACTIONS(4464), + [anon_sym_not] = ACTIONS(4464), + [anon_sym_compl] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4467), + [anon_sym_PLUS_PLUS] = ACTIONS(4467), + [anon_sym_sizeof] = ACTIONS(4464), + [anon_sym___alignof__] = ACTIONS(4464), + [anon_sym___alignof] = ACTIONS(4464), + [anon_sym__alignof] = ACTIONS(4464), + [anon_sym_alignof] = ACTIONS(4464), + [anon_sym__Alignof] = ACTIONS(4464), + [anon_sym_offsetof] = ACTIONS(4464), + [anon_sym__Generic] = ACTIONS(4464), + [anon_sym_typename] = ACTIONS(4464), + [anon_sym_asm] = ACTIONS(4464), + [anon_sym___asm__] = ACTIONS(4464), + [anon_sym___asm] = ACTIONS(4464), + [sym_number_literal] = ACTIONS(4467), + [anon_sym_L_SQUOTE] = ACTIONS(4467), + [anon_sym_u_SQUOTE] = ACTIONS(4467), + [anon_sym_U_SQUOTE] = ACTIONS(4467), + [anon_sym_u8_SQUOTE] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4467), + [anon_sym_L_DQUOTE] = ACTIONS(4467), + [anon_sym_u_DQUOTE] = ACTIONS(4467), + [anon_sym_U_DQUOTE] = ACTIONS(4467), + [anon_sym_u8_DQUOTE] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4467), + [sym_true] = ACTIONS(4464), + [sym_false] = ACTIONS(4464), + [anon_sym_NULL] = ACTIONS(4464), + [anon_sym_nullptr] = ACTIONS(4464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4464), + [anon_sym_decltype] = ACTIONS(4464), + [anon_sym_explicit] = ACTIONS(4464), + [anon_sym_export] = ACTIONS(4464), + [anon_sym_module] = ACTIONS(4464), + [anon_sym_import] = ACTIONS(4464), + [anon_sym_template] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_delete] = ACTIONS(4464), + [anon_sym_throw] = ACTIONS(4464), + [anon_sym_namespace] = ACTIONS(4464), + [anon_sym_static_assert] = ACTIONS(4464), + [anon_sym_concept] = ACTIONS(4464), + [anon_sym_co_return] = ACTIONS(4464), + [anon_sym_co_yield] = ACTIONS(4464), + [anon_sym_R_DQUOTE] = ACTIONS(4467), + [anon_sym_LR_DQUOTE] = ACTIONS(4467), + [anon_sym_uR_DQUOTE] = ACTIONS(4467), + [anon_sym_UR_DQUOTE] = ACTIONS(4467), + [anon_sym_u8R_DQUOTE] = ACTIONS(4467), + [anon_sym_co_await] = ACTIONS(4464), + [anon_sym_new] = ACTIONS(4464), + [anon_sym_requires] = ACTIONS(4464), + [anon_sym_CARET_CARET] = ACTIONS(4467), + [anon_sym_LBRACK_COLON] = ACTIONS(4467), + [sym_this] = ACTIONS(4464), + }, + [STATE(873)] = { + [ts_builtin_sym_end] = ACTIONS(3724), + [sym_identifier] = ACTIONS(3722), + [aux_sym_preproc_include_token1] = ACTIONS(3722), + [aux_sym_preproc_def_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token1] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3722), + [sym_preproc_directive] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_BANG] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_DASH] = ACTIONS(3722), + [anon_sym_PLUS] = ACTIONS(3722), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_SEMI] = ACTIONS(3724), + [anon_sym___extension__] = ACTIONS(3722), + [anon_sym_typedef] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym___attribute] = ACTIONS(3722), + [anon_sym_using] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3724), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym___cdecl] = ACTIONS(3722), + [anon_sym___clrcall] = ACTIONS(3722), + [anon_sym___stdcall] = ACTIONS(3722), + [anon_sym___fastcall] = ACTIONS(3722), + [anon_sym___thiscall] = ACTIONS(3722), + [anon_sym___vectorcall] = ACTIONS(3722), + [anon_sym_LBRACE] = ACTIONS(3724), + [anon_sym_signed] = ACTIONS(3722), + [anon_sym_unsigned] = ACTIONS(3722), + [anon_sym_long] = ACTIONS(3722), + [anon_sym_short] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym___inline] = ACTIONS(3722), + [anon_sym___inline__] = ACTIONS(3722), + [anon_sym___forceinline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym___thread] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym___restrict__] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym__Noreturn] = ACTIONS(3722), + [anon_sym_noreturn] = ACTIONS(3722), + [anon_sym__Nonnull] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_alignas] = ACTIONS(3722), + [anon_sym__Alignas] = ACTIONS(3722), + [sym_primitive_type] = ACTIONS(3722), + [anon_sym_enum] = ACTIONS(3722), + [anon_sym_class] = ACTIONS(3722), + [anon_sym_struct] = ACTIONS(3722), + [anon_sym_union] = ACTIONS(3722), + [anon_sym_if] = ACTIONS(3722), + [anon_sym_switch] = ACTIONS(3722), + [anon_sym_case] = ACTIONS(3722), + [anon_sym_default] = ACTIONS(3722), + [anon_sym_while] = ACTIONS(3722), + [anon_sym_do] = ACTIONS(3722), + [anon_sym_for] = ACTIONS(3722), + [anon_sym_return] = ACTIONS(3722), + [anon_sym_break] = ACTIONS(3722), + [anon_sym_continue] = ACTIONS(3722), + [anon_sym_goto] = ACTIONS(3722), + [anon_sym_not] = ACTIONS(3722), + [anon_sym_compl] = ACTIONS(3722), + [anon_sym_DASH_DASH] = ACTIONS(3724), + [anon_sym_PLUS_PLUS] = ACTIONS(3724), + [anon_sym_sizeof] = ACTIONS(3722), + [anon_sym___alignof__] = ACTIONS(3722), + [anon_sym___alignof] = ACTIONS(3722), + [anon_sym__alignof] = ACTIONS(3722), + [anon_sym_alignof] = ACTIONS(3722), + [anon_sym__Alignof] = ACTIONS(3722), + [anon_sym_offsetof] = ACTIONS(3722), + [anon_sym__Generic] = ACTIONS(3722), + [anon_sym_typename] = ACTIONS(3722), + [anon_sym_asm] = ACTIONS(3722), + [anon_sym___asm__] = ACTIONS(3722), + [anon_sym___asm] = ACTIONS(3722), + [sym_number_literal] = ACTIONS(3724), + [anon_sym_L_SQUOTE] = ACTIONS(3724), + [anon_sym_u_SQUOTE] = ACTIONS(3724), + [anon_sym_U_SQUOTE] = ACTIONS(3724), + [anon_sym_u8_SQUOTE] = ACTIONS(3724), + [anon_sym_SQUOTE] = ACTIONS(3724), + [anon_sym_L_DQUOTE] = ACTIONS(3724), + [anon_sym_u_DQUOTE] = ACTIONS(3724), + [anon_sym_U_DQUOTE] = ACTIONS(3724), + [anon_sym_u8_DQUOTE] = ACTIONS(3724), + [anon_sym_DQUOTE] = ACTIONS(3724), + [sym_true] = ACTIONS(3722), + [sym_false] = ACTIONS(3722), + [anon_sym_NULL] = ACTIONS(3722), + [anon_sym_nullptr] = ACTIONS(3722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_explicit] = ACTIONS(3722), + [anon_sym_export] = ACTIONS(3722), + [anon_sym_module] = ACTIONS(3722), + [anon_sym_import] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + [anon_sym_try] = ACTIONS(3722), + [anon_sym_delete] = ACTIONS(3722), + [anon_sym_throw] = ACTIONS(3722), + [anon_sym_namespace] = ACTIONS(3722), + [anon_sym_static_assert] = ACTIONS(3722), + [anon_sym_concept] = ACTIONS(3722), + [anon_sym_co_return] = ACTIONS(3722), + [anon_sym_co_yield] = ACTIONS(3722), + [anon_sym_R_DQUOTE] = ACTIONS(3724), + [anon_sym_LR_DQUOTE] = ACTIONS(3724), + [anon_sym_uR_DQUOTE] = ACTIONS(3724), + [anon_sym_UR_DQUOTE] = ACTIONS(3724), + [anon_sym_u8R_DQUOTE] = ACTIONS(3724), + [anon_sym_co_await] = ACTIONS(3722), + [anon_sym_new] = ACTIONS(3722), + [anon_sym_requires] = ACTIONS(3722), + [anon_sym_CARET_CARET] = ACTIONS(3724), + [anon_sym_LBRACK_COLON] = ACTIONS(3724), + [sym_this] = ACTIONS(3722), + }, + [STATE(874)] = { + [ts_builtin_sym_end] = ACTIONS(3728), + [sym_identifier] = ACTIONS(3726), + [aux_sym_preproc_include_token1] = ACTIONS(3726), + [aux_sym_preproc_def_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token1] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3726), + [sym_preproc_directive] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_BANG] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [anon_sym_DASH] = ACTIONS(3726), + [anon_sym_PLUS] = ACTIONS(3726), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(3726), + [anon_sym_typedef] = ACTIONS(3726), + [anon_sym_virtual] = ACTIONS(3726), + [anon_sym_extern] = ACTIONS(3726), + [anon_sym___attribute__] = ACTIONS(3726), + [anon_sym___attribute] = ACTIONS(3726), + [anon_sym_using] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3728), + [anon_sym___declspec] = ACTIONS(3726), + [anon_sym___based] = ACTIONS(3726), + [anon_sym___cdecl] = ACTIONS(3726), + [anon_sym___clrcall] = ACTIONS(3726), + [anon_sym___stdcall] = ACTIONS(3726), + [anon_sym___fastcall] = ACTIONS(3726), + [anon_sym___thiscall] = ACTIONS(3726), + [anon_sym___vectorcall] = ACTIONS(3726), + [anon_sym_LBRACE] = ACTIONS(3728), + [anon_sym_signed] = ACTIONS(3726), + [anon_sym_unsigned] = ACTIONS(3726), + [anon_sym_long] = ACTIONS(3726), + [anon_sym_short] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_static] = ACTIONS(3726), + [anon_sym_register] = ACTIONS(3726), + [anon_sym_inline] = ACTIONS(3726), + [anon_sym___inline] = ACTIONS(3726), + [anon_sym___inline__] = ACTIONS(3726), + [anon_sym___forceinline] = ACTIONS(3726), + [anon_sym_thread_local] = ACTIONS(3726), + [anon_sym___thread] = ACTIONS(3726), + [anon_sym_const] = ACTIONS(3726), + [anon_sym_constexpr] = ACTIONS(3726), + [anon_sym_volatile] = ACTIONS(3726), + [anon_sym_restrict] = ACTIONS(3726), + [anon_sym___restrict__] = ACTIONS(3726), + [anon_sym__Atomic] = ACTIONS(3726), + [anon_sym__Noreturn] = ACTIONS(3726), + [anon_sym_noreturn] = ACTIONS(3726), + [anon_sym__Nonnull] = ACTIONS(3726), + [anon_sym_mutable] = ACTIONS(3726), + [anon_sym_constinit] = ACTIONS(3726), + [anon_sym_consteval] = ACTIONS(3726), + [anon_sym_alignas] = ACTIONS(3726), + [anon_sym__Alignas] = ACTIONS(3726), + [sym_primitive_type] = ACTIONS(3726), + [anon_sym_enum] = ACTIONS(3726), + [anon_sym_class] = ACTIONS(3726), + [anon_sym_struct] = ACTIONS(3726), + [anon_sym_union] = ACTIONS(3726), + [anon_sym_if] = ACTIONS(3726), + [anon_sym_switch] = ACTIONS(3726), + [anon_sym_case] = ACTIONS(3726), + [anon_sym_default] = ACTIONS(3726), + [anon_sym_while] = ACTIONS(3726), + [anon_sym_do] = ACTIONS(3726), + [anon_sym_for] = ACTIONS(3726), + [anon_sym_return] = ACTIONS(3726), + [anon_sym_break] = ACTIONS(3726), + [anon_sym_continue] = ACTIONS(3726), + [anon_sym_goto] = ACTIONS(3726), + [anon_sym_not] = ACTIONS(3726), + [anon_sym_compl] = ACTIONS(3726), + [anon_sym_DASH_DASH] = ACTIONS(3728), + [anon_sym_PLUS_PLUS] = ACTIONS(3728), + [anon_sym_sizeof] = ACTIONS(3726), + [anon_sym___alignof__] = ACTIONS(3726), + [anon_sym___alignof] = ACTIONS(3726), + [anon_sym__alignof] = ACTIONS(3726), + [anon_sym_alignof] = ACTIONS(3726), + [anon_sym__Alignof] = ACTIONS(3726), + [anon_sym_offsetof] = ACTIONS(3726), + [anon_sym__Generic] = ACTIONS(3726), + [anon_sym_typename] = ACTIONS(3726), + [anon_sym_asm] = ACTIONS(3726), + [anon_sym___asm__] = ACTIONS(3726), + [anon_sym___asm] = ACTIONS(3726), + [sym_number_literal] = ACTIONS(3728), + [anon_sym_L_SQUOTE] = ACTIONS(3728), + [anon_sym_u_SQUOTE] = ACTIONS(3728), + [anon_sym_U_SQUOTE] = ACTIONS(3728), + [anon_sym_u8_SQUOTE] = ACTIONS(3728), + [anon_sym_SQUOTE] = ACTIONS(3728), + [anon_sym_L_DQUOTE] = ACTIONS(3728), + [anon_sym_u_DQUOTE] = ACTIONS(3728), + [anon_sym_U_DQUOTE] = ACTIONS(3728), + [anon_sym_u8_DQUOTE] = ACTIONS(3728), + [anon_sym_DQUOTE] = ACTIONS(3728), + [sym_true] = ACTIONS(3726), + [sym_false] = ACTIONS(3726), + [anon_sym_NULL] = ACTIONS(3726), + [anon_sym_nullptr] = ACTIONS(3726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3726), + [anon_sym_decltype] = ACTIONS(3726), + [anon_sym_explicit] = ACTIONS(3726), + [anon_sym_export] = ACTIONS(3726), + [anon_sym_module] = ACTIONS(3726), + [anon_sym_import] = ACTIONS(3726), + [anon_sym_template] = ACTIONS(3726), + [anon_sym_operator] = ACTIONS(3726), + [anon_sym_try] = ACTIONS(3726), + [anon_sym_delete] = ACTIONS(3726), + [anon_sym_throw] = ACTIONS(3726), + [anon_sym_namespace] = ACTIONS(3726), + [anon_sym_static_assert] = ACTIONS(3726), + [anon_sym_concept] = ACTIONS(3726), + [anon_sym_co_return] = ACTIONS(3726), + [anon_sym_co_yield] = ACTIONS(3726), + [anon_sym_R_DQUOTE] = ACTIONS(3728), + [anon_sym_LR_DQUOTE] = ACTIONS(3728), + [anon_sym_uR_DQUOTE] = ACTIONS(3728), + [anon_sym_UR_DQUOTE] = ACTIONS(3728), + [anon_sym_u8R_DQUOTE] = ACTIONS(3728), + [anon_sym_co_await] = ACTIONS(3726), + [anon_sym_new] = ACTIONS(3726), + [anon_sym_requires] = ACTIONS(3726), + [anon_sym_CARET_CARET] = ACTIONS(3728), + [anon_sym_LBRACK_COLON] = ACTIONS(3728), + [sym_this] = ACTIONS(3726), + }, + [STATE(875)] = { + [ts_builtin_sym_end] = ACTIONS(4472), + [sym_identifier] = ACTIONS(4470), + [aux_sym_preproc_include_token1] = ACTIONS(4470), + [aux_sym_preproc_def_token1] = ACTIONS(4470), + [aux_sym_preproc_if_token1] = ACTIONS(4470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4470), + [sym_preproc_directive] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_AMP] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4472), + [anon_sym___extension__] = ACTIONS(4470), + [anon_sym_typedef] = ACTIONS(4470), + [anon_sym_virtual] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4470), + [anon_sym___attribute__] = ACTIONS(4470), + [anon_sym___attribute] = ACTIONS(4470), + [anon_sym_using] = ACTIONS(4470), + [anon_sym_COLON_COLON] = ACTIONS(4472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4472), + [anon_sym___declspec] = ACTIONS(4470), + [anon_sym___based] = ACTIONS(4470), + [anon_sym___cdecl] = ACTIONS(4470), + [anon_sym___clrcall] = ACTIONS(4470), + [anon_sym___stdcall] = ACTIONS(4470), + [anon_sym___fastcall] = ACTIONS(4470), + [anon_sym___thiscall] = ACTIONS(4470), + [anon_sym___vectorcall] = ACTIONS(4470), + [anon_sym_LBRACE] = ACTIONS(4472), + [anon_sym_signed] = ACTIONS(4470), + [anon_sym_unsigned] = ACTIONS(4470), + [anon_sym_long] = ACTIONS(4470), + [anon_sym_short] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_static] = ACTIONS(4470), + [anon_sym_register] = ACTIONS(4470), + [anon_sym_inline] = ACTIONS(4470), + [anon_sym___inline] = ACTIONS(4470), + [anon_sym___inline__] = ACTIONS(4470), + [anon_sym___forceinline] = ACTIONS(4470), + [anon_sym_thread_local] = ACTIONS(4470), + [anon_sym___thread] = ACTIONS(4470), + [anon_sym_const] = ACTIONS(4470), + [anon_sym_constexpr] = ACTIONS(4470), + [anon_sym_volatile] = ACTIONS(4470), + [anon_sym_restrict] = ACTIONS(4470), + [anon_sym___restrict__] = ACTIONS(4470), + [anon_sym__Atomic] = ACTIONS(4470), + [anon_sym__Noreturn] = ACTIONS(4470), + [anon_sym_noreturn] = ACTIONS(4470), + [anon_sym__Nonnull] = ACTIONS(4470), + [anon_sym_mutable] = ACTIONS(4470), + [anon_sym_constinit] = ACTIONS(4470), + [anon_sym_consteval] = ACTIONS(4470), + [anon_sym_alignas] = ACTIONS(4470), + [anon_sym__Alignas] = ACTIONS(4470), + [sym_primitive_type] = ACTIONS(4470), + [anon_sym_enum] = ACTIONS(4470), + [anon_sym_class] = ACTIONS(4470), + [anon_sym_struct] = ACTIONS(4470), + [anon_sym_union] = ACTIONS(4470), + [anon_sym_if] = ACTIONS(4470), + [anon_sym_switch] = ACTIONS(4470), + [anon_sym_case] = ACTIONS(4470), + [anon_sym_default] = ACTIONS(4470), + [anon_sym_while] = ACTIONS(4470), + [anon_sym_do] = ACTIONS(4470), + [anon_sym_for] = ACTIONS(4470), + [anon_sym_return] = ACTIONS(4470), + [anon_sym_break] = ACTIONS(4470), + [anon_sym_continue] = ACTIONS(4470), + [anon_sym_goto] = ACTIONS(4470), + [anon_sym_not] = ACTIONS(4470), + [anon_sym_compl] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(4472), + [anon_sym_PLUS_PLUS] = ACTIONS(4472), + [anon_sym_sizeof] = ACTIONS(4470), + [anon_sym___alignof__] = ACTIONS(4470), + [anon_sym___alignof] = ACTIONS(4470), + [anon_sym__alignof] = ACTIONS(4470), + [anon_sym_alignof] = ACTIONS(4470), + [anon_sym__Alignof] = ACTIONS(4470), + [anon_sym_offsetof] = ACTIONS(4470), + [anon_sym__Generic] = ACTIONS(4470), + [anon_sym_typename] = ACTIONS(4470), + [anon_sym_asm] = ACTIONS(4470), + [anon_sym___asm__] = ACTIONS(4470), + [anon_sym___asm] = ACTIONS(4470), + [sym_number_literal] = ACTIONS(4472), + [anon_sym_L_SQUOTE] = ACTIONS(4472), + [anon_sym_u_SQUOTE] = ACTIONS(4472), + [anon_sym_U_SQUOTE] = ACTIONS(4472), + [anon_sym_u8_SQUOTE] = ACTIONS(4472), + [anon_sym_SQUOTE] = ACTIONS(4472), + [anon_sym_L_DQUOTE] = ACTIONS(4472), + [anon_sym_u_DQUOTE] = ACTIONS(4472), + [anon_sym_U_DQUOTE] = ACTIONS(4472), + [anon_sym_u8_DQUOTE] = ACTIONS(4472), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_true] = ACTIONS(4470), + [sym_false] = ACTIONS(4470), + [anon_sym_NULL] = ACTIONS(4470), + [anon_sym_nullptr] = ACTIONS(4470), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4470), + [anon_sym_decltype] = ACTIONS(4470), + [anon_sym_explicit] = ACTIONS(4470), + [anon_sym_export] = ACTIONS(4470), + [anon_sym_module] = ACTIONS(4470), + [anon_sym_import] = ACTIONS(4470), + [anon_sym_template] = ACTIONS(4470), + [anon_sym_operator] = ACTIONS(4470), + [anon_sym_try] = ACTIONS(4470), + [anon_sym_delete] = ACTIONS(4470), + [anon_sym_throw] = ACTIONS(4470), + [anon_sym_namespace] = ACTIONS(4470), + [anon_sym_static_assert] = ACTIONS(4470), + [anon_sym_concept] = ACTIONS(4470), + [anon_sym_co_return] = ACTIONS(4470), + [anon_sym_co_yield] = ACTIONS(4470), + [anon_sym_R_DQUOTE] = ACTIONS(4472), + [anon_sym_LR_DQUOTE] = ACTIONS(4472), + [anon_sym_uR_DQUOTE] = ACTIONS(4472), + [anon_sym_UR_DQUOTE] = ACTIONS(4472), + [anon_sym_u8R_DQUOTE] = ACTIONS(4472), + [anon_sym_co_await] = ACTIONS(4470), + [anon_sym_new] = ACTIONS(4470), + [anon_sym_requires] = ACTIONS(4470), + [anon_sym_CARET_CARET] = ACTIONS(4472), + [anon_sym_LBRACK_COLON] = ACTIONS(4472), + [sym_this] = ACTIONS(4470), + }, + [STATE(876)] = { + [ts_builtin_sym_end] = ACTIONS(3744), + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_include_token1] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym___cdecl] = ACTIONS(3742), + [anon_sym___clrcall] = ACTIONS(3742), + [anon_sym___stdcall] = ACTIONS(3742), + [anon_sym___fastcall] = ACTIONS(3742), + [anon_sym___thiscall] = ACTIONS(3742), + [anon_sym___vectorcall] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_switch] = ACTIONS(3742), + [anon_sym_case] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_goto] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(3742), + [anon_sym_compl] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3742), + [anon_sym___alignof__] = ACTIONS(3742), + [anon_sym___alignof] = ACTIONS(3742), + [anon_sym__alignof] = ACTIONS(3742), + [anon_sym_alignof] = ACTIONS(3742), + [anon_sym__Alignof] = ACTIONS(3742), + [anon_sym_offsetof] = ACTIONS(3742), + [anon_sym__Generic] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [anon_sym_asm] = ACTIONS(3742), + [anon_sym___asm__] = ACTIONS(3742), + [anon_sym___asm] = ACTIONS(3742), + [sym_number_literal] = ACTIONS(3744), + [anon_sym_L_SQUOTE] = ACTIONS(3744), + [anon_sym_u_SQUOTE] = ACTIONS(3744), + [anon_sym_U_SQUOTE] = ACTIONS(3744), + [anon_sym_u8_SQUOTE] = ACTIONS(3744), + [anon_sym_SQUOTE] = ACTIONS(3744), + [anon_sym_L_DQUOTE] = ACTIONS(3744), + [anon_sym_u_DQUOTE] = ACTIONS(3744), + [anon_sym_U_DQUOTE] = ACTIONS(3744), + [anon_sym_u8_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [anon_sym_NULL] = ACTIONS(3742), + [anon_sym_nullptr] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_export] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_import] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_delete] = ACTIONS(3742), + [anon_sym_throw] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_concept] = ACTIONS(3742), + [anon_sym_co_return] = ACTIONS(3742), + [anon_sym_co_yield] = ACTIONS(3742), + [anon_sym_R_DQUOTE] = ACTIONS(3744), + [anon_sym_LR_DQUOTE] = ACTIONS(3744), + [anon_sym_uR_DQUOTE] = ACTIONS(3744), + [anon_sym_UR_DQUOTE] = ACTIONS(3744), + [anon_sym_u8R_DQUOTE] = ACTIONS(3744), + [anon_sym_co_await] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_requires] = ACTIONS(3742), + [anon_sym_CARET_CARET] = ACTIONS(3744), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + [sym_this] = ACTIONS(3742), + }, + [STATE(877)] = { + [ts_builtin_sym_end] = ACTIONS(3744), + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_include_token1] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_BANG] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_DASH] = ACTIONS(3742), + [anon_sym_PLUS] = ACTIONS(3742), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym___cdecl] = ACTIONS(3742), + [anon_sym___clrcall] = ACTIONS(3742), + [anon_sym___stdcall] = ACTIONS(3742), + [anon_sym___fastcall] = ACTIONS(3742), + [anon_sym___thiscall] = ACTIONS(3742), + [anon_sym___vectorcall] = ACTIONS(3742), + [anon_sym_LBRACE] = ACTIONS(3744), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_if] = ACTIONS(3742), + [anon_sym_switch] = ACTIONS(3742), + [anon_sym_case] = ACTIONS(3742), + [anon_sym_default] = ACTIONS(3742), + [anon_sym_while] = ACTIONS(3742), + [anon_sym_do] = ACTIONS(3742), + [anon_sym_for] = ACTIONS(3742), + [anon_sym_return] = ACTIONS(3742), + [anon_sym_break] = ACTIONS(3742), + [anon_sym_continue] = ACTIONS(3742), + [anon_sym_goto] = ACTIONS(3742), + [anon_sym_not] = ACTIONS(3742), + [anon_sym_compl] = ACTIONS(3742), + [anon_sym_DASH_DASH] = ACTIONS(3744), + [anon_sym_PLUS_PLUS] = ACTIONS(3744), + [anon_sym_sizeof] = ACTIONS(3742), + [anon_sym___alignof__] = ACTIONS(3742), + [anon_sym___alignof] = ACTIONS(3742), + [anon_sym__alignof] = ACTIONS(3742), + [anon_sym_alignof] = ACTIONS(3742), + [anon_sym__Alignof] = ACTIONS(3742), + [anon_sym_offsetof] = ACTIONS(3742), + [anon_sym__Generic] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [anon_sym_asm] = ACTIONS(3742), + [anon_sym___asm__] = ACTIONS(3742), + [anon_sym___asm] = ACTIONS(3742), + [sym_number_literal] = ACTIONS(3744), + [anon_sym_L_SQUOTE] = ACTIONS(3744), + [anon_sym_u_SQUOTE] = ACTIONS(3744), + [anon_sym_U_SQUOTE] = ACTIONS(3744), + [anon_sym_u8_SQUOTE] = ACTIONS(3744), + [anon_sym_SQUOTE] = ACTIONS(3744), + [anon_sym_L_DQUOTE] = ACTIONS(3744), + [anon_sym_u_DQUOTE] = ACTIONS(3744), + [anon_sym_U_DQUOTE] = ACTIONS(3744), + [anon_sym_u8_DQUOTE] = ACTIONS(3744), + [anon_sym_DQUOTE] = ACTIONS(3744), + [sym_true] = ACTIONS(3742), + [sym_false] = ACTIONS(3742), + [anon_sym_NULL] = ACTIONS(3742), + [anon_sym_nullptr] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_export] = ACTIONS(3742), + [anon_sym_module] = ACTIONS(3742), + [anon_sym_import] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_try] = ACTIONS(3742), + [anon_sym_delete] = ACTIONS(3742), + [anon_sym_throw] = ACTIONS(3742), + [anon_sym_namespace] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_concept] = ACTIONS(3742), + [anon_sym_co_return] = ACTIONS(3742), + [anon_sym_co_yield] = ACTIONS(3742), + [anon_sym_R_DQUOTE] = ACTIONS(3744), + [anon_sym_LR_DQUOTE] = ACTIONS(3744), + [anon_sym_uR_DQUOTE] = ACTIONS(3744), + [anon_sym_UR_DQUOTE] = ACTIONS(3744), + [anon_sym_u8R_DQUOTE] = ACTIONS(3744), + [anon_sym_co_await] = ACTIONS(3742), + [anon_sym_new] = ACTIONS(3742), + [anon_sym_requires] = ACTIONS(3742), + [anon_sym_CARET_CARET] = ACTIONS(3744), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + [sym_this] = ACTIONS(3742), + }, + [STATE(878)] = { + [ts_builtin_sym_end] = ACTIONS(3748), + [sym_identifier] = ACTIONS(3746), + [aux_sym_preproc_include_token1] = ACTIONS(3746), + [aux_sym_preproc_def_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token1] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3746), + [sym_preproc_directive] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_BANG] = ACTIONS(3748), + [anon_sym_TILDE] = ACTIONS(3748), + [anon_sym_DASH] = ACTIONS(3746), + [anon_sym_PLUS] = ACTIONS(3746), + [anon_sym_STAR] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym___extension__] = ACTIONS(3746), + [anon_sym_typedef] = ACTIONS(3746), + [anon_sym_virtual] = ACTIONS(3746), + [anon_sym_extern] = ACTIONS(3746), + [anon_sym___attribute__] = ACTIONS(3746), + [anon_sym___attribute] = ACTIONS(3746), + [anon_sym_using] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3748), + [anon_sym___declspec] = ACTIONS(3746), + [anon_sym___based] = ACTIONS(3746), + [anon_sym___cdecl] = ACTIONS(3746), + [anon_sym___clrcall] = ACTIONS(3746), + [anon_sym___stdcall] = ACTIONS(3746), + [anon_sym___fastcall] = ACTIONS(3746), + [anon_sym___thiscall] = ACTIONS(3746), + [anon_sym___vectorcall] = ACTIONS(3746), + [anon_sym_LBRACE] = ACTIONS(3748), + [anon_sym_signed] = ACTIONS(3746), + [anon_sym_unsigned] = ACTIONS(3746), + [anon_sym_long] = ACTIONS(3746), + [anon_sym_short] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_static] = ACTIONS(3746), + [anon_sym_register] = ACTIONS(3746), + [anon_sym_inline] = ACTIONS(3746), + [anon_sym___inline] = ACTIONS(3746), + [anon_sym___inline__] = ACTIONS(3746), + [anon_sym___forceinline] = ACTIONS(3746), + [anon_sym_thread_local] = ACTIONS(3746), + [anon_sym___thread] = ACTIONS(3746), + [anon_sym_const] = ACTIONS(3746), + [anon_sym_constexpr] = ACTIONS(3746), + [anon_sym_volatile] = ACTIONS(3746), + [anon_sym_restrict] = ACTIONS(3746), + [anon_sym___restrict__] = ACTIONS(3746), + [anon_sym__Atomic] = ACTIONS(3746), + [anon_sym__Noreturn] = ACTIONS(3746), + [anon_sym_noreturn] = ACTIONS(3746), + [anon_sym__Nonnull] = ACTIONS(3746), + [anon_sym_mutable] = ACTIONS(3746), + [anon_sym_constinit] = ACTIONS(3746), + [anon_sym_consteval] = ACTIONS(3746), + [anon_sym_alignas] = ACTIONS(3746), + [anon_sym__Alignas] = ACTIONS(3746), + [sym_primitive_type] = ACTIONS(3746), + [anon_sym_enum] = ACTIONS(3746), + [anon_sym_class] = ACTIONS(3746), + [anon_sym_struct] = ACTIONS(3746), + [anon_sym_union] = ACTIONS(3746), + [anon_sym_if] = ACTIONS(3746), + [anon_sym_switch] = ACTIONS(3746), + [anon_sym_case] = ACTIONS(3746), + [anon_sym_default] = ACTIONS(3746), + [anon_sym_while] = ACTIONS(3746), + [anon_sym_do] = ACTIONS(3746), + [anon_sym_for] = ACTIONS(3746), + [anon_sym_return] = ACTIONS(3746), + [anon_sym_break] = ACTIONS(3746), + [anon_sym_continue] = ACTIONS(3746), + [anon_sym_goto] = ACTIONS(3746), + [anon_sym_not] = ACTIONS(3746), + [anon_sym_compl] = ACTIONS(3746), + [anon_sym_DASH_DASH] = ACTIONS(3748), + [anon_sym_PLUS_PLUS] = ACTIONS(3748), + [anon_sym_sizeof] = ACTIONS(3746), + [anon_sym___alignof__] = ACTIONS(3746), + [anon_sym___alignof] = ACTIONS(3746), + [anon_sym__alignof] = ACTIONS(3746), + [anon_sym_alignof] = ACTIONS(3746), + [anon_sym__Alignof] = ACTIONS(3746), + [anon_sym_offsetof] = ACTIONS(3746), + [anon_sym__Generic] = ACTIONS(3746), + [anon_sym_typename] = ACTIONS(3746), + [anon_sym_asm] = ACTIONS(3746), + [anon_sym___asm__] = ACTIONS(3746), + [anon_sym___asm] = ACTIONS(3746), + [sym_number_literal] = ACTIONS(3748), + [anon_sym_L_SQUOTE] = ACTIONS(3748), + [anon_sym_u_SQUOTE] = ACTIONS(3748), + [anon_sym_U_SQUOTE] = ACTIONS(3748), + [anon_sym_u8_SQUOTE] = ACTIONS(3748), + [anon_sym_SQUOTE] = ACTIONS(3748), + [anon_sym_L_DQUOTE] = ACTIONS(3748), + [anon_sym_u_DQUOTE] = ACTIONS(3748), + [anon_sym_U_DQUOTE] = ACTIONS(3748), + [anon_sym_u8_DQUOTE] = ACTIONS(3748), + [anon_sym_DQUOTE] = ACTIONS(3748), + [sym_true] = ACTIONS(3746), + [sym_false] = ACTIONS(3746), + [anon_sym_NULL] = ACTIONS(3746), + [anon_sym_nullptr] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3746), + [anon_sym_decltype] = ACTIONS(3746), + [anon_sym_explicit] = ACTIONS(3746), + [anon_sym_export] = ACTIONS(3746), + [anon_sym_module] = ACTIONS(3746), + [anon_sym_import] = ACTIONS(3746), + [anon_sym_template] = ACTIONS(3746), + [anon_sym_operator] = ACTIONS(3746), + [anon_sym_try] = ACTIONS(3746), + [anon_sym_delete] = ACTIONS(3746), + [anon_sym_throw] = ACTIONS(3746), + [anon_sym_namespace] = ACTIONS(3746), + [anon_sym_static_assert] = ACTIONS(3746), + [anon_sym_concept] = ACTIONS(3746), + [anon_sym_co_return] = ACTIONS(3746), + [anon_sym_co_yield] = ACTIONS(3746), + [anon_sym_R_DQUOTE] = ACTIONS(3748), + [anon_sym_LR_DQUOTE] = ACTIONS(3748), + [anon_sym_uR_DQUOTE] = ACTIONS(3748), + [anon_sym_UR_DQUOTE] = ACTIONS(3748), + [anon_sym_u8R_DQUOTE] = ACTIONS(3748), + [anon_sym_co_await] = ACTIONS(3746), + [anon_sym_new] = ACTIONS(3746), + [anon_sym_requires] = ACTIONS(3746), + [anon_sym_CARET_CARET] = ACTIONS(3748), + [anon_sym_LBRACK_COLON] = ACTIONS(3748), + [sym_this] = ACTIONS(3746), + }, + [STATE(879)] = { + [ts_builtin_sym_end] = ACTIONS(3752), + [sym_identifier] = ACTIONS(3750), + [aux_sym_preproc_include_token1] = ACTIONS(3750), + [aux_sym_preproc_def_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token1] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3750), + [sym_preproc_directive] = ACTIONS(3750), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_BANG] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_DASH] = ACTIONS(3750), + [anon_sym_PLUS] = ACTIONS(3750), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym___extension__] = ACTIONS(3750), + [anon_sym_typedef] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym___attribute] = ACTIONS(3750), + [anon_sym_using] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym___cdecl] = ACTIONS(3750), + [anon_sym___clrcall] = ACTIONS(3750), + [anon_sym___stdcall] = ACTIONS(3750), + [anon_sym___fastcall] = ACTIONS(3750), + [anon_sym___thiscall] = ACTIONS(3750), + [anon_sym___vectorcall] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_signed] = ACTIONS(3750), + [anon_sym_unsigned] = ACTIONS(3750), + [anon_sym_long] = ACTIONS(3750), + [anon_sym_short] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym___inline] = ACTIONS(3750), + [anon_sym___inline__] = ACTIONS(3750), + [anon_sym___forceinline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym___thread] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym___restrict__] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym__Noreturn] = ACTIONS(3750), + [anon_sym_noreturn] = ACTIONS(3750), + [anon_sym__Nonnull] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_alignas] = ACTIONS(3750), + [anon_sym__Alignas] = ACTIONS(3750), + [sym_primitive_type] = ACTIONS(3750), + [anon_sym_enum] = ACTIONS(3750), + [anon_sym_class] = ACTIONS(3750), + [anon_sym_struct] = ACTIONS(3750), + [anon_sym_union] = ACTIONS(3750), + [anon_sym_if] = ACTIONS(3750), + [anon_sym_switch] = ACTIONS(3750), + [anon_sym_case] = ACTIONS(3750), + [anon_sym_default] = ACTIONS(3750), + [anon_sym_while] = ACTIONS(3750), + [anon_sym_do] = ACTIONS(3750), + [anon_sym_for] = ACTIONS(3750), + [anon_sym_return] = ACTIONS(3750), + [anon_sym_break] = ACTIONS(3750), + [anon_sym_continue] = ACTIONS(3750), + [anon_sym_goto] = ACTIONS(3750), + [anon_sym_not] = ACTIONS(3750), + [anon_sym_compl] = ACTIONS(3750), + [anon_sym_DASH_DASH] = ACTIONS(3752), + [anon_sym_PLUS_PLUS] = ACTIONS(3752), + [anon_sym_sizeof] = ACTIONS(3750), + [anon_sym___alignof__] = ACTIONS(3750), + [anon_sym___alignof] = ACTIONS(3750), + [anon_sym__alignof] = ACTIONS(3750), + [anon_sym_alignof] = ACTIONS(3750), + [anon_sym__Alignof] = ACTIONS(3750), + [anon_sym_offsetof] = ACTIONS(3750), + [anon_sym__Generic] = ACTIONS(3750), + [anon_sym_typename] = ACTIONS(3750), + [anon_sym_asm] = ACTIONS(3750), + [anon_sym___asm__] = ACTIONS(3750), + [anon_sym___asm] = ACTIONS(3750), + [sym_number_literal] = ACTIONS(3752), + [anon_sym_L_SQUOTE] = ACTIONS(3752), + [anon_sym_u_SQUOTE] = ACTIONS(3752), + [anon_sym_U_SQUOTE] = ACTIONS(3752), + [anon_sym_u8_SQUOTE] = ACTIONS(3752), + [anon_sym_SQUOTE] = ACTIONS(3752), + [anon_sym_L_DQUOTE] = ACTIONS(3752), + [anon_sym_u_DQUOTE] = ACTIONS(3752), + [anon_sym_U_DQUOTE] = ACTIONS(3752), + [anon_sym_u8_DQUOTE] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3752), + [sym_true] = ACTIONS(3750), + [sym_false] = ACTIONS(3750), + [anon_sym_NULL] = ACTIONS(3750), + [anon_sym_nullptr] = ACTIONS(3750), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_export] = ACTIONS(3750), + [anon_sym_module] = ACTIONS(3750), + [anon_sym_import] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + [anon_sym_try] = ACTIONS(3750), + [anon_sym_delete] = ACTIONS(3750), + [anon_sym_throw] = ACTIONS(3750), + [anon_sym_namespace] = ACTIONS(3750), + [anon_sym_static_assert] = ACTIONS(3750), + [anon_sym_concept] = ACTIONS(3750), + [anon_sym_co_return] = ACTIONS(3750), + [anon_sym_co_yield] = ACTIONS(3750), + [anon_sym_R_DQUOTE] = ACTIONS(3752), + [anon_sym_LR_DQUOTE] = ACTIONS(3752), + [anon_sym_uR_DQUOTE] = ACTIONS(3752), + [anon_sym_UR_DQUOTE] = ACTIONS(3752), + [anon_sym_u8R_DQUOTE] = ACTIONS(3752), + [anon_sym_co_await] = ACTIONS(3750), + [anon_sym_new] = ACTIONS(3750), + [anon_sym_requires] = ACTIONS(3750), + [anon_sym_CARET_CARET] = ACTIONS(3752), + [anon_sym_LBRACK_COLON] = ACTIONS(3752), + [sym_this] = ACTIONS(3750), + }, + [STATE(880)] = { + [sym_identifier] = ACTIONS(4470), + [aux_sym_preproc_include_token1] = ACTIONS(4470), + [aux_sym_preproc_def_token1] = ACTIONS(4470), + [aux_sym_preproc_if_token1] = ACTIONS(4470), + [aux_sym_preproc_if_token2] = ACTIONS(4470), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4470), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4470), + [sym_preproc_directive] = ACTIONS(4470), + [anon_sym_LPAREN2] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4470), + [anon_sym_PLUS] = ACTIONS(4470), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_AMP_AMP] = ACTIONS(4472), + [anon_sym_AMP] = ACTIONS(4470), + [anon_sym_SEMI] = ACTIONS(4472), + [anon_sym___extension__] = ACTIONS(4470), + [anon_sym_typedef] = ACTIONS(4470), + [anon_sym_virtual] = ACTIONS(4470), + [anon_sym_extern] = ACTIONS(4470), + [anon_sym___attribute__] = ACTIONS(4470), + [anon_sym___attribute] = ACTIONS(4470), + [anon_sym_using] = ACTIONS(4470), + [anon_sym_COLON_COLON] = ACTIONS(4472), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4472), + [anon_sym___declspec] = ACTIONS(4470), + [anon_sym___based] = ACTIONS(4470), + [anon_sym___cdecl] = ACTIONS(4470), + [anon_sym___clrcall] = ACTIONS(4470), + [anon_sym___stdcall] = ACTIONS(4470), + [anon_sym___fastcall] = ACTIONS(4470), + [anon_sym___thiscall] = ACTIONS(4470), + [anon_sym___vectorcall] = ACTIONS(4470), + [anon_sym_LBRACE] = ACTIONS(4472), + [anon_sym_signed] = ACTIONS(4470), + [anon_sym_unsigned] = ACTIONS(4470), + [anon_sym_long] = ACTIONS(4470), + [anon_sym_short] = ACTIONS(4470), + [anon_sym_LBRACK] = ACTIONS(4470), + [anon_sym_static] = ACTIONS(4470), + [anon_sym_register] = ACTIONS(4470), + [anon_sym_inline] = ACTIONS(4470), + [anon_sym___inline] = ACTIONS(4470), + [anon_sym___inline__] = ACTIONS(4470), + [anon_sym___forceinline] = ACTIONS(4470), + [anon_sym_thread_local] = ACTIONS(4470), + [anon_sym___thread] = ACTIONS(4470), + [anon_sym_const] = ACTIONS(4470), + [anon_sym_constexpr] = ACTIONS(4470), + [anon_sym_volatile] = ACTIONS(4470), + [anon_sym_restrict] = ACTIONS(4470), + [anon_sym___restrict__] = ACTIONS(4470), + [anon_sym__Atomic] = ACTIONS(4470), + [anon_sym__Noreturn] = ACTIONS(4470), + [anon_sym_noreturn] = ACTIONS(4470), + [anon_sym__Nonnull] = ACTIONS(4470), + [anon_sym_mutable] = ACTIONS(4470), + [anon_sym_constinit] = ACTIONS(4470), + [anon_sym_consteval] = ACTIONS(4470), + [anon_sym_alignas] = ACTIONS(4470), + [anon_sym__Alignas] = ACTIONS(4470), + [sym_primitive_type] = ACTIONS(4470), + [anon_sym_enum] = ACTIONS(4470), + [anon_sym_class] = ACTIONS(4470), + [anon_sym_struct] = ACTIONS(4470), + [anon_sym_union] = ACTIONS(4470), + [anon_sym_if] = ACTIONS(4470), + [anon_sym_switch] = ACTIONS(4470), + [anon_sym_case] = ACTIONS(4470), + [anon_sym_default] = ACTIONS(4470), + [anon_sym_while] = ACTIONS(4470), + [anon_sym_do] = ACTIONS(4470), + [anon_sym_for] = ACTIONS(4470), + [anon_sym_return] = ACTIONS(4470), + [anon_sym_break] = ACTIONS(4470), + [anon_sym_continue] = ACTIONS(4470), + [anon_sym_goto] = ACTIONS(4470), + [anon_sym_not] = ACTIONS(4470), + [anon_sym_compl] = ACTIONS(4470), + [anon_sym_DASH_DASH] = ACTIONS(4472), + [anon_sym_PLUS_PLUS] = ACTIONS(4472), + [anon_sym_sizeof] = ACTIONS(4470), + [anon_sym___alignof__] = ACTIONS(4470), + [anon_sym___alignof] = ACTIONS(4470), + [anon_sym__alignof] = ACTIONS(4470), + [anon_sym_alignof] = ACTIONS(4470), + [anon_sym__Alignof] = ACTIONS(4470), + [anon_sym_offsetof] = ACTIONS(4470), + [anon_sym__Generic] = ACTIONS(4470), + [anon_sym_typename] = ACTIONS(4470), + [anon_sym_asm] = ACTIONS(4470), + [anon_sym___asm__] = ACTIONS(4470), + [anon_sym___asm] = ACTIONS(4470), + [sym_number_literal] = ACTIONS(4472), + [anon_sym_L_SQUOTE] = ACTIONS(4472), + [anon_sym_u_SQUOTE] = ACTIONS(4472), + [anon_sym_U_SQUOTE] = ACTIONS(4472), + [anon_sym_u8_SQUOTE] = ACTIONS(4472), + [anon_sym_SQUOTE] = ACTIONS(4472), + [anon_sym_L_DQUOTE] = ACTIONS(4472), + [anon_sym_u_DQUOTE] = ACTIONS(4472), + [anon_sym_U_DQUOTE] = ACTIONS(4472), + [anon_sym_u8_DQUOTE] = ACTIONS(4472), + [anon_sym_DQUOTE] = ACTIONS(4472), + [sym_true] = ACTIONS(4470), + [sym_false] = ACTIONS(4470), + [anon_sym_NULL] = ACTIONS(4470), + [anon_sym_nullptr] = ACTIONS(4470), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4470), + [anon_sym_decltype] = ACTIONS(4470), + [anon_sym_explicit] = ACTIONS(4470), + [anon_sym_export] = ACTIONS(4470), + [anon_sym_module] = ACTIONS(4470), + [anon_sym_import] = ACTIONS(4470), + [anon_sym_template] = ACTIONS(4470), + [anon_sym_operator] = ACTIONS(4470), + [anon_sym_try] = ACTIONS(4470), + [anon_sym_delete] = ACTIONS(4470), + [anon_sym_throw] = ACTIONS(4470), + [anon_sym_namespace] = ACTIONS(4470), + [anon_sym_static_assert] = ACTIONS(4470), + [anon_sym_concept] = ACTIONS(4470), + [anon_sym_co_return] = ACTIONS(4470), + [anon_sym_co_yield] = ACTIONS(4470), + [anon_sym_R_DQUOTE] = ACTIONS(4472), + [anon_sym_LR_DQUOTE] = ACTIONS(4472), + [anon_sym_uR_DQUOTE] = ACTIONS(4472), + [anon_sym_UR_DQUOTE] = ACTIONS(4472), + [anon_sym_u8R_DQUOTE] = ACTIONS(4472), + [anon_sym_co_await] = ACTIONS(4470), + [anon_sym_new] = ACTIONS(4470), + [anon_sym_requires] = ACTIONS(4470), + [anon_sym_CARET_CARET] = ACTIONS(4472), + [anon_sym_LBRACK_COLON] = ACTIONS(4472), + [sym_this] = ACTIONS(4470), + }, + [STATE(881)] = { + [ts_builtin_sym_end] = ACTIONS(4458), + [sym_identifier] = ACTIONS(4456), + [aux_sym_preproc_include_token1] = ACTIONS(4456), + [aux_sym_preproc_def_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token1] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4456), + [sym_preproc_directive] = ACTIONS(4456), + [anon_sym_LPAREN2] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym___extension__] = ACTIONS(4456), + [anon_sym_typedef] = ACTIONS(4456), + [anon_sym_virtual] = ACTIONS(4456), + [anon_sym_extern] = ACTIONS(4456), + [anon_sym___attribute__] = ACTIONS(4456), + [anon_sym___attribute] = ACTIONS(4456), + [anon_sym_using] = ACTIONS(4456), + [anon_sym_COLON_COLON] = ACTIONS(4458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4458), + [anon_sym___declspec] = ACTIONS(4456), + [anon_sym___based] = ACTIONS(4456), + [anon_sym___cdecl] = ACTIONS(4456), + [anon_sym___clrcall] = ACTIONS(4456), + [anon_sym___stdcall] = ACTIONS(4456), + [anon_sym___fastcall] = ACTIONS(4456), + [anon_sym___thiscall] = ACTIONS(4456), + [anon_sym___vectorcall] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_signed] = ACTIONS(4456), + [anon_sym_unsigned] = ACTIONS(4456), + [anon_sym_long] = ACTIONS(4456), + [anon_sym_short] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_static] = ACTIONS(4456), + [anon_sym_register] = ACTIONS(4456), + [anon_sym_inline] = ACTIONS(4456), + [anon_sym___inline] = ACTIONS(4456), + [anon_sym___inline__] = ACTIONS(4456), + [anon_sym___forceinline] = ACTIONS(4456), + [anon_sym_thread_local] = ACTIONS(4456), + [anon_sym___thread] = ACTIONS(4456), + [anon_sym_const] = ACTIONS(4456), + [anon_sym_constexpr] = ACTIONS(4456), + [anon_sym_volatile] = ACTIONS(4456), + [anon_sym_restrict] = ACTIONS(4456), + [anon_sym___restrict__] = ACTIONS(4456), + [anon_sym__Atomic] = ACTIONS(4456), + [anon_sym__Noreturn] = ACTIONS(4456), + [anon_sym_noreturn] = ACTIONS(4456), + [anon_sym__Nonnull] = ACTIONS(4456), + [anon_sym_mutable] = ACTIONS(4456), + [anon_sym_constinit] = ACTIONS(4456), + [anon_sym_consteval] = ACTIONS(4456), + [anon_sym_alignas] = ACTIONS(4456), + [anon_sym__Alignas] = ACTIONS(4456), + [sym_primitive_type] = ACTIONS(4456), + [anon_sym_enum] = ACTIONS(4456), + [anon_sym_class] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4456), + [anon_sym_union] = ACTIONS(4456), + [anon_sym_if] = ACTIONS(4456), + [anon_sym_switch] = ACTIONS(4456), + [anon_sym_case] = ACTIONS(4456), + [anon_sym_default] = ACTIONS(4456), + [anon_sym_while] = ACTIONS(4456), + [anon_sym_do] = ACTIONS(4456), + [anon_sym_for] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4456), + [anon_sym_break] = ACTIONS(4456), + [anon_sym_continue] = ACTIONS(4456), + [anon_sym_goto] = ACTIONS(4456), + [anon_sym_not] = ACTIONS(4456), + [anon_sym_compl] = ACTIONS(4456), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_sizeof] = ACTIONS(4456), + [anon_sym___alignof__] = ACTIONS(4456), + [anon_sym___alignof] = ACTIONS(4456), + [anon_sym__alignof] = ACTIONS(4456), + [anon_sym_alignof] = ACTIONS(4456), + [anon_sym__Alignof] = ACTIONS(4456), + [anon_sym_offsetof] = ACTIONS(4456), + [anon_sym__Generic] = ACTIONS(4456), + [anon_sym_typename] = ACTIONS(4456), + [anon_sym_asm] = ACTIONS(4456), + [anon_sym___asm__] = ACTIONS(4456), + [anon_sym___asm] = ACTIONS(4456), + [sym_number_literal] = ACTIONS(4458), + [anon_sym_L_SQUOTE] = ACTIONS(4458), + [anon_sym_u_SQUOTE] = ACTIONS(4458), + [anon_sym_U_SQUOTE] = ACTIONS(4458), + [anon_sym_u8_SQUOTE] = ACTIONS(4458), + [anon_sym_SQUOTE] = ACTIONS(4458), + [anon_sym_L_DQUOTE] = ACTIONS(4458), + [anon_sym_u_DQUOTE] = ACTIONS(4458), + [anon_sym_U_DQUOTE] = ACTIONS(4458), + [anon_sym_u8_DQUOTE] = ACTIONS(4458), + [anon_sym_DQUOTE] = ACTIONS(4458), + [sym_true] = ACTIONS(4456), + [sym_false] = ACTIONS(4456), + [anon_sym_NULL] = ACTIONS(4456), + [anon_sym_nullptr] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4456), + [anon_sym_decltype] = ACTIONS(4456), + [anon_sym_explicit] = ACTIONS(4456), + [anon_sym_export] = ACTIONS(4456), + [anon_sym_module] = ACTIONS(4456), + [anon_sym_import] = ACTIONS(4456), + [anon_sym_template] = ACTIONS(4456), + [anon_sym_operator] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4456), + [anon_sym_delete] = ACTIONS(4456), + [anon_sym_throw] = ACTIONS(4456), + [anon_sym_namespace] = ACTIONS(4456), + [anon_sym_static_assert] = ACTIONS(4456), + [anon_sym_concept] = ACTIONS(4456), + [anon_sym_co_return] = ACTIONS(4456), + [anon_sym_co_yield] = ACTIONS(4456), + [anon_sym_R_DQUOTE] = ACTIONS(4458), + [anon_sym_LR_DQUOTE] = ACTIONS(4458), + [anon_sym_uR_DQUOTE] = ACTIONS(4458), + [anon_sym_UR_DQUOTE] = ACTIONS(4458), + [anon_sym_u8R_DQUOTE] = ACTIONS(4458), + [anon_sym_co_await] = ACTIONS(4456), + [anon_sym_new] = ACTIONS(4456), + [anon_sym_requires] = ACTIONS(4456), + [anon_sym_CARET_CARET] = ACTIONS(4458), + [anon_sym_LBRACK_COLON] = ACTIONS(4458), + [sym_this] = ACTIONS(4456), + }, + [STATE(882)] = { + [sym_identifier] = ACTIONS(4474), + [aux_sym_preproc_include_token1] = ACTIONS(4474), + [aux_sym_preproc_def_token1] = ACTIONS(4474), + [aux_sym_preproc_if_token1] = ACTIONS(4474), + [aux_sym_preproc_if_token2] = ACTIONS(4474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4474), + [sym_preproc_directive] = ACTIONS(4474), + [anon_sym_LPAREN2] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4476), + [anon_sym___extension__] = ACTIONS(4474), + [anon_sym_typedef] = ACTIONS(4474), + [anon_sym_virtual] = ACTIONS(4474), + [anon_sym_extern] = ACTIONS(4474), + [anon_sym___attribute__] = ACTIONS(4474), + [anon_sym___attribute] = ACTIONS(4474), + [anon_sym_using] = ACTIONS(4474), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4476), + [anon_sym___declspec] = ACTIONS(4474), + [anon_sym___based] = ACTIONS(4474), + [anon_sym___cdecl] = ACTIONS(4474), + [anon_sym___clrcall] = ACTIONS(4474), + [anon_sym___stdcall] = ACTIONS(4474), + [anon_sym___fastcall] = ACTIONS(4474), + [anon_sym___thiscall] = ACTIONS(4474), + [anon_sym___vectorcall] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4476), + [anon_sym_signed] = ACTIONS(4474), + [anon_sym_unsigned] = ACTIONS(4474), + [anon_sym_long] = ACTIONS(4474), + [anon_sym_short] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_static] = ACTIONS(4474), + [anon_sym_register] = ACTIONS(4474), + [anon_sym_inline] = ACTIONS(4474), + [anon_sym___inline] = ACTIONS(4474), + [anon_sym___inline__] = ACTIONS(4474), + [anon_sym___forceinline] = ACTIONS(4474), + [anon_sym_thread_local] = ACTIONS(4474), + [anon_sym___thread] = ACTIONS(4474), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_constexpr] = ACTIONS(4474), + [anon_sym_volatile] = ACTIONS(4474), + [anon_sym_restrict] = ACTIONS(4474), + [anon_sym___restrict__] = ACTIONS(4474), + [anon_sym__Atomic] = ACTIONS(4474), + [anon_sym__Noreturn] = ACTIONS(4474), + [anon_sym_noreturn] = ACTIONS(4474), + [anon_sym__Nonnull] = ACTIONS(4474), + [anon_sym_mutable] = ACTIONS(4474), + [anon_sym_constinit] = ACTIONS(4474), + [anon_sym_consteval] = ACTIONS(4474), + [anon_sym_alignas] = ACTIONS(4474), + [anon_sym__Alignas] = ACTIONS(4474), + [sym_primitive_type] = ACTIONS(4474), + [anon_sym_enum] = ACTIONS(4474), + [anon_sym_class] = ACTIONS(4474), + [anon_sym_struct] = ACTIONS(4474), + [anon_sym_union] = ACTIONS(4474), + [anon_sym_if] = ACTIONS(4474), + [anon_sym_switch] = ACTIONS(4474), + [anon_sym_case] = ACTIONS(4474), + [anon_sym_default] = ACTIONS(4474), + [anon_sym_while] = ACTIONS(4474), + [anon_sym_do] = ACTIONS(4474), + [anon_sym_for] = ACTIONS(4474), + [anon_sym_return] = ACTIONS(4474), + [anon_sym_break] = ACTIONS(4474), + [anon_sym_continue] = ACTIONS(4474), + [anon_sym_goto] = ACTIONS(4474), + [anon_sym_not] = ACTIONS(4474), + [anon_sym_compl] = ACTIONS(4474), + [anon_sym_DASH_DASH] = ACTIONS(4476), + [anon_sym_PLUS_PLUS] = ACTIONS(4476), + [anon_sym_sizeof] = ACTIONS(4474), + [anon_sym___alignof__] = ACTIONS(4474), + [anon_sym___alignof] = ACTIONS(4474), + [anon_sym__alignof] = ACTIONS(4474), + [anon_sym_alignof] = ACTIONS(4474), + [anon_sym__Alignof] = ACTIONS(4474), + [anon_sym_offsetof] = ACTIONS(4474), + [anon_sym__Generic] = ACTIONS(4474), + [anon_sym_typename] = ACTIONS(4474), + [anon_sym_asm] = ACTIONS(4474), + [anon_sym___asm__] = ACTIONS(4474), + [anon_sym___asm] = ACTIONS(4474), + [sym_number_literal] = ACTIONS(4476), + [anon_sym_L_SQUOTE] = ACTIONS(4476), + [anon_sym_u_SQUOTE] = ACTIONS(4476), + [anon_sym_U_SQUOTE] = ACTIONS(4476), + [anon_sym_u8_SQUOTE] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4476), + [anon_sym_L_DQUOTE] = ACTIONS(4476), + [anon_sym_u_DQUOTE] = ACTIONS(4476), + [anon_sym_U_DQUOTE] = ACTIONS(4476), + [anon_sym_u8_DQUOTE] = ACTIONS(4476), + [anon_sym_DQUOTE] = ACTIONS(4476), + [sym_true] = ACTIONS(4474), + [sym_false] = ACTIONS(4474), + [anon_sym_NULL] = ACTIONS(4474), + [anon_sym_nullptr] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4474), + [anon_sym_decltype] = ACTIONS(4474), + [anon_sym_explicit] = ACTIONS(4474), + [anon_sym_export] = ACTIONS(4474), + [anon_sym_module] = ACTIONS(4474), + [anon_sym_import] = ACTIONS(4474), + [anon_sym_template] = ACTIONS(4474), + [anon_sym_operator] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4474), + [anon_sym_delete] = ACTIONS(4474), + [anon_sym_throw] = ACTIONS(4474), + [anon_sym_namespace] = ACTIONS(4474), + [anon_sym_static_assert] = ACTIONS(4474), + [anon_sym_concept] = ACTIONS(4474), + [anon_sym_co_return] = ACTIONS(4474), + [anon_sym_co_yield] = ACTIONS(4474), + [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(4474), + [anon_sym_new] = ACTIONS(4474), + [anon_sym_requires] = ACTIONS(4474), + [anon_sym_CARET_CARET] = ACTIONS(4476), + [anon_sym_LBRACK_COLON] = ACTIONS(4476), + [sym_this] = ACTIONS(4474), + }, + [STATE(883)] = { + [ts_builtin_sym_end] = ACTIONS(4467), + [sym_identifier] = ACTIONS(4464), + [aux_sym_preproc_include_token1] = ACTIONS(4464), + [aux_sym_preproc_def_token1] = ACTIONS(4464), + [aux_sym_preproc_if_token1] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4464), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4464), + [sym_preproc_directive] = ACTIONS(4464), + [anon_sym_LPAREN2] = ACTIONS(4467), + [anon_sym_BANG] = ACTIONS(4467), + [anon_sym_TILDE] = ACTIONS(4467), + [anon_sym_DASH] = ACTIONS(4464), + [anon_sym_PLUS] = ACTIONS(4464), + [anon_sym_STAR] = ACTIONS(4467), + [anon_sym_AMP_AMP] = ACTIONS(4467), + [anon_sym_AMP] = ACTIONS(4464), + [anon_sym_SEMI] = ACTIONS(4467), + [anon_sym___extension__] = ACTIONS(4464), + [anon_sym_typedef] = ACTIONS(4464), + [anon_sym_virtual] = ACTIONS(4464), + [anon_sym_extern] = ACTIONS(4464), + [anon_sym___attribute__] = ACTIONS(4464), + [anon_sym___attribute] = ACTIONS(4464), + [anon_sym_using] = ACTIONS(4464), + [anon_sym_COLON_COLON] = ACTIONS(4467), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4467), + [anon_sym___declspec] = ACTIONS(4464), + [anon_sym___based] = ACTIONS(4464), + [anon_sym___cdecl] = ACTIONS(4464), + [anon_sym___clrcall] = ACTIONS(4464), + [anon_sym___stdcall] = ACTIONS(4464), + [anon_sym___fastcall] = ACTIONS(4464), + [anon_sym___thiscall] = ACTIONS(4464), + [anon_sym___vectorcall] = ACTIONS(4464), + [anon_sym_LBRACE] = ACTIONS(4467), + [anon_sym_signed] = ACTIONS(4464), + [anon_sym_unsigned] = ACTIONS(4464), + [anon_sym_long] = ACTIONS(4464), + [anon_sym_short] = ACTIONS(4464), + [anon_sym_LBRACK] = ACTIONS(4464), + [anon_sym_static] = ACTIONS(4464), + [anon_sym_register] = ACTIONS(4464), + [anon_sym_inline] = ACTIONS(4464), + [anon_sym___inline] = ACTIONS(4464), + [anon_sym___inline__] = ACTIONS(4464), + [anon_sym___forceinline] = ACTIONS(4464), + [anon_sym_thread_local] = ACTIONS(4464), + [anon_sym___thread] = ACTIONS(4464), + [anon_sym_const] = ACTIONS(4464), + [anon_sym_constexpr] = ACTIONS(4464), + [anon_sym_volatile] = ACTIONS(4464), + [anon_sym_restrict] = ACTIONS(4464), + [anon_sym___restrict__] = ACTIONS(4464), + [anon_sym__Atomic] = ACTIONS(4464), + [anon_sym__Noreturn] = ACTIONS(4464), + [anon_sym_noreturn] = ACTIONS(4464), + [anon_sym__Nonnull] = ACTIONS(4464), + [anon_sym_mutable] = ACTIONS(4464), + [anon_sym_constinit] = ACTIONS(4464), + [anon_sym_consteval] = ACTIONS(4464), + [anon_sym_alignas] = ACTIONS(4464), + [anon_sym__Alignas] = ACTIONS(4464), + [sym_primitive_type] = ACTIONS(4464), + [anon_sym_enum] = ACTIONS(4464), + [anon_sym_class] = ACTIONS(4464), + [anon_sym_struct] = ACTIONS(4464), + [anon_sym_union] = ACTIONS(4464), + [anon_sym_if] = ACTIONS(4464), + [anon_sym_switch] = ACTIONS(4464), + [anon_sym_case] = ACTIONS(4464), + [anon_sym_default] = ACTIONS(4464), + [anon_sym_while] = ACTIONS(4464), + [anon_sym_do] = ACTIONS(4464), + [anon_sym_for] = ACTIONS(4464), + [anon_sym_return] = ACTIONS(4464), + [anon_sym_break] = ACTIONS(4464), + [anon_sym_continue] = ACTIONS(4464), + [anon_sym_goto] = ACTIONS(4464), + [anon_sym_not] = ACTIONS(4464), + [anon_sym_compl] = ACTIONS(4464), + [anon_sym_DASH_DASH] = ACTIONS(4467), + [anon_sym_PLUS_PLUS] = ACTIONS(4467), + [anon_sym_sizeof] = ACTIONS(4464), + [anon_sym___alignof__] = ACTIONS(4464), + [anon_sym___alignof] = ACTIONS(4464), + [anon_sym__alignof] = ACTIONS(4464), + [anon_sym_alignof] = ACTIONS(4464), + [anon_sym__Alignof] = ACTIONS(4464), + [anon_sym_offsetof] = ACTIONS(4464), + [anon_sym__Generic] = ACTIONS(4464), + [anon_sym_typename] = ACTIONS(4464), + [anon_sym_asm] = ACTIONS(4464), + [anon_sym___asm__] = ACTIONS(4464), + [anon_sym___asm] = ACTIONS(4464), + [sym_number_literal] = ACTIONS(4467), + [anon_sym_L_SQUOTE] = ACTIONS(4467), + [anon_sym_u_SQUOTE] = ACTIONS(4467), + [anon_sym_U_SQUOTE] = ACTIONS(4467), + [anon_sym_u8_SQUOTE] = ACTIONS(4467), + [anon_sym_SQUOTE] = ACTIONS(4467), + [anon_sym_L_DQUOTE] = ACTIONS(4467), + [anon_sym_u_DQUOTE] = ACTIONS(4467), + [anon_sym_U_DQUOTE] = ACTIONS(4467), + [anon_sym_u8_DQUOTE] = ACTIONS(4467), + [anon_sym_DQUOTE] = ACTIONS(4467), + [sym_true] = ACTIONS(4464), + [sym_false] = ACTIONS(4464), + [anon_sym_NULL] = ACTIONS(4464), + [anon_sym_nullptr] = ACTIONS(4464), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4464), + [anon_sym_decltype] = ACTIONS(4464), + [anon_sym_explicit] = ACTIONS(4464), + [anon_sym_export] = ACTIONS(4464), + [anon_sym_module] = ACTIONS(4464), + [anon_sym_import] = ACTIONS(4464), + [anon_sym_template] = ACTIONS(4464), + [anon_sym_operator] = ACTIONS(4464), + [anon_sym_try] = ACTIONS(4464), + [anon_sym_delete] = ACTIONS(4464), + [anon_sym_throw] = ACTIONS(4464), + [anon_sym_namespace] = ACTIONS(4464), + [anon_sym_static_assert] = ACTIONS(4464), + [anon_sym_concept] = ACTIONS(4464), + [anon_sym_co_return] = ACTIONS(4464), + [anon_sym_co_yield] = ACTIONS(4464), + [anon_sym_R_DQUOTE] = ACTIONS(4467), + [anon_sym_LR_DQUOTE] = ACTIONS(4467), + [anon_sym_uR_DQUOTE] = ACTIONS(4467), + [anon_sym_UR_DQUOTE] = ACTIONS(4467), + [anon_sym_u8R_DQUOTE] = ACTIONS(4467), + [anon_sym_co_await] = ACTIONS(4464), + [anon_sym_new] = ACTIONS(4464), + [anon_sym_requires] = ACTIONS(4464), + [anon_sym_CARET_CARET] = ACTIONS(4467), + [anon_sym_LBRACK_COLON] = ACTIONS(4467), + [sym_this] = ACTIONS(4464), + }, + [STATE(884)] = { + [ts_builtin_sym_end] = ACTIONS(3760), + [sym_identifier] = ACTIONS(3758), + [aux_sym_preproc_include_token1] = ACTIONS(3758), + [aux_sym_preproc_def_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token1] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3758), + [sym_preproc_directive] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_BANG] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym___extension__] = ACTIONS(3758), + [anon_sym_typedef] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym___attribute] = ACTIONS(3758), + [anon_sym_using] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym___cdecl] = ACTIONS(3758), + [anon_sym___clrcall] = ACTIONS(3758), + [anon_sym___stdcall] = ACTIONS(3758), + [anon_sym___fastcall] = ACTIONS(3758), + [anon_sym___thiscall] = ACTIONS(3758), + [anon_sym___vectorcall] = ACTIONS(3758), + [anon_sym_LBRACE] = ACTIONS(3760), + [anon_sym_signed] = ACTIONS(3758), + [anon_sym_unsigned] = ACTIONS(3758), + [anon_sym_long] = ACTIONS(3758), + [anon_sym_short] = ACTIONS(3758), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym___restrict__] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym__Noreturn] = ACTIONS(3758), + [anon_sym_noreturn] = ACTIONS(3758), + [anon_sym__Nonnull] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_alignas] = ACTIONS(3758), + [anon_sym__Alignas] = ACTIONS(3758), + [sym_primitive_type] = ACTIONS(3758), + [anon_sym_enum] = ACTIONS(3758), + [anon_sym_class] = ACTIONS(3758), + [anon_sym_struct] = ACTIONS(3758), + [anon_sym_union] = ACTIONS(3758), + [anon_sym_if] = ACTIONS(3758), + [anon_sym_switch] = ACTIONS(3758), + [anon_sym_case] = ACTIONS(3758), + [anon_sym_default] = ACTIONS(3758), + [anon_sym_while] = ACTIONS(3758), + [anon_sym_do] = ACTIONS(3758), + [anon_sym_for] = ACTIONS(3758), + [anon_sym_return] = ACTIONS(3758), + [anon_sym_break] = ACTIONS(3758), + [anon_sym_continue] = ACTIONS(3758), + [anon_sym_goto] = ACTIONS(3758), + [anon_sym_not] = ACTIONS(3758), + [anon_sym_compl] = ACTIONS(3758), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3758), + [anon_sym___alignof__] = ACTIONS(3758), + [anon_sym___alignof] = ACTIONS(3758), + [anon_sym__alignof] = ACTIONS(3758), + [anon_sym_alignof] = ACTIONS(3758), + [anon_sym__Alignof] = ACTIONS(3758), + [anon_sym_offsetof] = ACTIONS(3758), + [anon_sym__Generic] = ACTIONS(3758), + [anon_sym_typename] = ACTIONS(3758), + [anon_sym_asm] = ACTIONS(3758), + [anon_sym___asm__] = ACTIONS(3758), + [anon_sym___asm] = ACTIONS(3758), + [sym_number_literal] = ACTIONS(3760), + [anon_sym_L_SQUOTE] = ACTIONS(3760), + [anon_sym_u_SQUOTE] = ACTIONS(3760), + [anon_sym_U_SQUOTE] = ACTIONS(3760), + [anon_sym_u8_SQUOTE] = ACTIONS(3760), + [anon_sym_SQUOTE] = ACTIONS(3760), + [anon_sym_L_DQUOTE] = ACTIONS(3760), + [anon_sym_u_DQUOTE] = ACTIONS(3760), + [anon_sym_U_DQUOTE] = ACTIONS(3760), + [anon_sym_u8_DQUOTE] = ACTIONS(3760), + [anon_sym_DQUOTE] = ACTIONS(3760), + [sym_true] = ACTIONS(3758), + [sym_false] = ACTIONS(3758), + [anon_sym_NULL] = ACTIONS(3758), + [anon_sym_nullptr] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_explicit] = ACTIONS(3758), + [anon_sym_export] = ACTIONS(3758), + [anon_sym_module] = ACTIONS(3758), + [anon_sym_import] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + [anon_sym_try] = ACTIONS(3758), + [anon_sym_delete] = ACTIONS(3758), + [anon_sym_throw] = ACTIONS(3758), + [anon_sym_namespace] = ACTIONS(3758), + [anon_sym_static_assert] = ACTIONS(3758), + [anon_sym_concept] = ACTIONS(3758), + [anon_sym_co_return] = ACTIONS(3758), + [anon_sym_co_yield] = ACTIONS(3758), + [anon_sym_R_DQUOTE] = ACTIONS(3760), + [anon_sym_LR_DQUOTE] = ACTIONS(3760), + [anon_sym_uR_DQUOTE] = ACTIONS(3760), + [anon_sym_UR_DQUOTE] = ACTIONS(3760), + [anon_sym_u8R_DQUOTE] = ACTIONS(3760), + [anon_sym_co_await] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3758), + [anon_sym_requires] = ACTIONS(3758), + [anon_sym_CARET_CARET] = ACTIONS(3760), + [anon_sym_LBRACK_COLON] = ACTIONS(3760), + [sym_this] = ACTIONS(3758), + }, + [STATE(885)] = { + [ts_builtin_sym_end] = ACTIONS(4124), + [sym_identifier] = ACTIONS(4122), + [aux_sym_preproc_include_token1] = ACTIONS(4122), + [aux_sym_preproc_def_token1] = ACTIONS(4122), + [aux_sym_preproc_if_token1] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4122), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4122), + [sym_preproc_directive] = ACTIONS(4122), + [anon_sym_LPAREN2] = ACTIONS(4124), + [anon_sym_BANG] = ACTIONS(4124), + [anon_sym_TILDE] = ACTIONS(4124), + [anon_sym_DASH] = ACTIONS(4122), + [anon_sym_PLUS] = ACTIONS(4122), + [anon_sym_STAR] = ACTIONS(4124), + [anon_sym_AMP_AMP] = ACTIONS(4124), + [anon_sym_AMP] = ACTIONS(4122), + [anon_sym_SEMI] = ACTIONS(4124), + [anon_sym___extension__] = ACTIONS(4122), + [anon_sym_typedef] = ACTIONS(4122), + [anon_sym_virtual] = ACTIONS(4122), + [anon_sym_extern] = ACTIONS(4122), + [anon_sym___attribute__] = ACTIONS(4122), + [anon_sym___attribute] = ACTIONS(4122), + [anon_sym_using] = ACTIONS(4122), + [anon_sym_COLON_COLON] = ACTIONS(4124), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4124), + [anon_sym___declspec] = ACTIONS(4122), + [anon_sym___based] = ACTIONS(4122), + [anon_sym___cdecl] = ACTIONS(4122), + [anon_sym___clrcall] = ACTIONS(4122), + [anon_sym___stdcall] = ACTIONS(4122), + [anon_sym___fastcall] = ACTIONS(4122), + [anon_sym___thiscall] = ACTIONS(4122), + [anon_sym___vectorcall] = ACTIONS(4122), + [anon_sym_LBRACE] = ACTIONS(4124), + [anon_sym_signed] = ACTIONS(4122), + [anon_sym_unsigned] = ACTIONS(4122), + [anon_sym_long] = ACTIONS(4122), + [anon_sym_short] = ACTIONS(4122), + [anon_sym_LBRACK] = ACTIONS(4122), + [anon_sym_static] = ACTIONS(4122), + [anon_sym_register] = ACTIONS(4122), + [anon_sym_inline] = ACTIONS(4122), + [anon_sym___inline] = ACTIONS(4122), + [anon_sym___inline__] = ACTIONS(4122), + [anon_sym___forceinline] = ACTIONS(4122), + [anon_sym_thread_local] = ACTIONS(4122), + [anon_sym___thread] = ACTIONS(4122), + [anon_sym_const] = ACTIONS(4122), + [anon_sym_constexpr] = ACTIONS(4122), + [anon_sym_volatile] = ACTIONS(4122), + [anon_sym_restrict] = ACTIONS(4122), + [anon_sym___restrict__] = ACTIONS(4122), + [anon_sym__Atomic] = ACTIONS(4122), + [anon_sym__Noreturn] = ACTIONS(4122), + [anon_sym_noreturn] = ACTIONS(4122), + [anon_sym__Nonnull] = ACTIONS(4122), + [anon_sym_mutable] = ACTIONS(4122), + [anon_sym_constinit] = ACTIONS(4122), + [anon_sym_consteval] = ACTIONS(4122), + [anon_sym_alignas] = ACTIONS(4122), + [anon_sym__Alignas] = ACTIONS(4122), + [sym_primitive_type] = ACTIONS(4122), + [anon_sym_enum] = ACTIONS(4122), + [anon_sym_class] = ACTIONS(4122), + [anon_sym_struct] = ACTIONS(4122), + [anon_sym_union] = ACTIONS(4122), + [anon_sym_if] = ACTIONS(4122), + [anon_sym_switch] = ACTIONS(4122), + [anon_sym_case] = ACTIONS(4122), + [anon_sym_default] = ACTIONS(4122), + [anon_sym_while] = ACTIONS(4122), + [anon_sym_do] = ACTIONS(4122), + [anon_sym_for] = ACTIONS(4122), + [anon_sym_return] = ACTIONS(4122), + [anon_sym_break] = ACTIONS(4122), + [anon_sym_continue] = ACTIONS(4122), + [anon_sym_goto] = ACTIONS(4122), + [anon_sym_not] = ACTIONS(4122), + [anon_sym_compl] = ACTIONS(4122), + [anon_sym_DASH_DASH] = ACTIONS(4124), + [anon_sym_PLUS_PLUS] = ACTIONS(4124), + [anon_sym_sizeof] = ACTIONS(4122), + [anon_sym___alignof__] = ACTIONS(4122), + [anon_sym___alignof] = ACTIONS(4122), + [anon_sym__alignof] = ACTIONS(4122), + [anon_sym_alignof] = ACTIONS(4122), + [anon_sym__Alignof] = ACTIONS(4122), + [anon_sym_offsetof] = ACTIONS(4122), + [anon_sym__Generic] = ACTIONS(4122), + [anon_sym_typename] = ACTIONS(4122), + [anon_sym_asm] = ACTIONS(4122), + [anon_sym___asm__] = ACTIONS(4122), + [anon_sym___asm] = ACTIONS(4122), + [sym_number_literal] = ACTIONS(4124), + [anon_sym_L_SQUOTE] = ACTIONS(4124), + [anon_sym_u_SQUOTE] = ACTIONS(4124), + [anon_sym_U_SQUOTE] = ACTIONS(4124), + [anon_sym_u8_SQUOTE] = ACTIONS(4124), + [anon_sym_SQUOTE] = ACTIONS(4124), + [anon_sym_L_DQUOTE] = ACTIONS(4124), + [anon_sym_u_DQUOTE] = ACTIONS(4124), + [anon_sym_U_DQUOTE] = ACTIONS(4124), + [anon_sym_u8_DQUOTE] = ACTIONS(4124), + [anon_sym_DQUOTE] = ACTIONS(4124), + [sym_true] = ACTIONS(4122), + [sym_false] = ACTIONS(4122), + [anon_sym_NULL] = ACTIONS(4122), + [anon_sym_nullptr] = ACTIONS(4122), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4122), + [anon_sym_decltype] = ACTIONS(4122), + [anon_sym_explicit] = ACTIONS(4122), + [anon_sym_export] = ACTIONS(4122), + [anon_sym_module] = ACTIONS(4122), + [anon_sym_import] = ACTIONS(4122), + [anon_sym_template] = ACTIONS(4122), + [anon_sym_operator] = ACTIONS(4122), + [anon_sym_try] = ACTIONS(4122), + [anon_sym_delete] = ACTIONS(4122), + [anon_sym_throw] = ACTIONS(4122), + [anon_sym_namespace] = ACTIONS(4122), + [anon_sym_static_assert] = ACTIONS(4122), + [anon_sym_concept] = ACTIONS(4122), + [anon_sym_co_return] = ACTIONS(4122), + [anon_sym_co_yield] = ACTIONS(4122), + [anon_sym_R_DQUOTE] = ACTIONS(4124), + [anon_sym_LR_DQUOTE] = ACTIONS(4124), + [anon_sym_uR_DQUOTE] = ACTIONS(4124), + [anon_sym_UR_DQUOTE] = ACTIONS(4124), + [anon_sym_u8R_DQUOTE] = ACTIONS(4124), + [anon_sym_co_await] = ACTIONS(4122), + [anon_sym_new] = ACTIONS(4122), + [anon_sym_requires] = ACTIONS(4122), + [anon_sym_CARET_CARET] = ACTIONS(4124), + [anon_sym_LBRACK_COLON] = ACTIONS(4124), + [sym_this] = ACTIONS(4122), + }, + [STATE(886)] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4694), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4702), + [anon_sym_RBRACE] = ACTIONS(4700), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -183902,7 +186126,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -183912,265 +186136,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(871)] = { - [ts_builtin_sym_end] = ACTIONS(4130), - [sym_identifier] = ACTIONS(4128), - [aux_sym_preproc_include_token1] = ACTIONS(4128), - [aux_sym_preproc_def_token1] = ACTIONS(4128), - [aux_sym_preproc_if_token1] = ACTIONS(4128), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4128), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4128), - [sym_preproc_directive] = ACTIONS(4128), - [anon_sym_LPAREN2] = ACTIONS(4130), - [anon_sym_BANG] = ACTIONS(4130), - [anon_sym_TILDE] = ACTIONS(4130), - [anon_sym_DASH] = ACTIONS(4128), - [anon_sym_PLUS] = ACTIONS(4128), - [anon_sym_STAR] = ACTIONS(4130), - [anon_sym_AMP_AMP] = ACTIONS(4130), - [anon_sym_AMP] = ACTIONS(4128), - [anon_sym_SEMI] = ACTIONS(4130), - [anon_sym___extension__] = ACTIONS(4128), - [anon_sym_typedef] = ACTIONS(4128), - [anon_sym_virtual] = ACTIONS(4128), - [anon_sym_extern] = ACTIONS(4128), - [anon_sym___attribute__] = ACTIONS(4128), - [anon_sym___attribute] = ACTIONS(4128), - [anon_sym_using] = ACTIONS(4128), - [anon_sym_COLON_COLON] = ACTIONS(4130), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4130), - [anon_sym___declspec] = ACTIONS(4128), - [anon_sym___based] = ACTIONS(4128), - [anon_sym___cdecl] = ACTIONS(4128), - [anon_sym___clrcall] = ACTIONS(4128), - [anon_sym___stdcall] = ACTIONS(4128), - [anon_sym___fastcall] = ACTIONS(4128), - [anon_sym___thiscall] = ACTIONS(4128), - [anon_sym___vectorcall] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4130), - [anon_sym_signed] = ACTIONS(4128), - [anon_sym_unsigned] = ACTIONS(4128), - [anon_sym_long] = ACTIONS(4128), - [anon_sym_short] = ACTIONS(4128), - [anon_sym_LBRACK] = ACTIONS(4128), - [anon_sym_static] = ACTIONS(4128), - [anon_sym_register] = ACTIONS(4128), - [anon_sym_inline] = ACTIONS(4128), - [anon_sym___inline] = ACTIONS(4128), - [anon_sym___inline__] = ACTIONS(4128), - [anon_sym___forceinline] = ACTIONS(4128), - [anon_sym_thread_local] = ACTIONS(4128), - [anon_sym___thread] = ACTIONS(4128), - [anon_sym_const] = ACTIONS(4128), - [anon_sym_constexpr] = ACTIONS(4128), - [anon_sym_volatile] = ACTIONS(4128), - [anon_sym_restrict] = ACTIONS(4128), - [anon_sym___restrict__] = ACTIONS(4128), - [anon_sym__Atomic] = ACTIONS(4128), - [anon_sym__Noreturn] = ACTIONS(4128), - [anon_sym_noreturn] = ACTIONS(4128), - [anon_sym__Nonnull] = ACTIONS(4128), - [anon_sym_mutable] = ACTIONS(4128), - [anon_sym_constinit] = ACTIONS(4128), - [anon_sym_consteval] = ACTIONS(4128), - [anon_sym_alignas] = ACTIONS(4128), - [anon_sym__Alignas] = ACTIONS(4128), - [sym_primitive_type] = ACTIONS(4128), - [anon_sym_enum] = ACTIONS(4128), - [anon_sym_class] = ACTIONS(4128), - [anon_sym_struct] = ACTIONS(4128), - [anon_sym_union] = ACTIONS(4128), - [anon_sym_if] = ACTIONS(4128), - [anon_sym_switch] = ACTIONS(4128), - [anon_sym_case] = ACTIONS(4128), - [anon_sym_default] = ACTIONS(4128), - [anon_sym_while] = ACTIONS(4128), - [anon_sym_do] = ACTIONS(4128), - [anon_sym_for] = ACTIONS(4128), - [anon_sym_return] = ACTIONS(4128), - [anon_sym_break] = ACTIONS(4128), - [anon_sym_continue] = ACTIONS(4128), - [anon_sym_goto] = ACTIONS(4128), - [anon_sym_not] = ACTIONS(4128), - [anon_sym_compl] = ACTIONS(4128), - [anon_sym_DASH_DASH] = ACTIONS(4130), - [anon_sym_PLUS_PLUS] = ACTIONS(4130), - [anon_sym_sizeof] = ACTIONS(4128), - [anon_sym___alignof__] = ACTIONS(4128), - [anon_sym___alignof] = ACTIONS(4128), - [anon_sym__alignof] = ACTIONS(4128), - [anon_sym_alignof] = ACTIONS(4128), - [anon_sym__Alignof] = ACTIONS(4128), - [anon_sym_offsetof] = ACTIONS(4128), - [anon_sym__Generic] = ACTIONS(4128), - [anon_sym_typename] = ACTIONS(4128), - [anon_sym_asm] = ACTIONS(4128), - [anon_sym___asm__] = ACTIONS(4128), - [anon_sym___asm] = ACTIONS(4128), - [sym_number_literal] = ACTIONS(4130), - [anon_sym_L_SQUOTE] = ACTIONS(4130), - [anon_sym_u_SQUOTE] = ACTIONS(4130), - [anon_sym_U_SQUOTE] = ACTIONS(4130), - [anon_sym_u8_SQUOTE] = ACTIONS(4130), - [anon_sym_SQUOTE] = ACTIONS(4130), - [anon_sym_L_DQUOTE] = ACTIONS(4130), - [anon_sym_u_DQUOTE] = ACTIONS(4130), - [anon_sym_U_DQUOTE] = ACTIONS(4130), - [anon_sym_u8_DQUOTE] = ACTIONS(4130), - [anon_sym_DQUOTE] = ACTIONS(4130), - [sym_true] = ACTIONS(4128), - [sym_false] = ACTIONS(4128), - [anon_sym_NULL] = ACTIONS(4128), - [anon_sym_nullptr] = ACTIONS(4128), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4128), - [anon_sym_decltype] = ACTIONS(4128), - [anon_sym_explicit] = ACTIONS(4128), - [anon_sym_export] = ACTIONS(4128), - [anon_sym_module] = ACTIONS(4128), - [anon_sym_import] = ACTIONS(4128), - [anon_sym_template] = ACTIONS(4128), - [anon_sym_operator] = ACTIONS(4128), - [anon_sym_try] = ACTIONS(4128), - [anon_sym_delete] = ACTIONS(4128), - [anon_sym_throw] = ACTIONS(4128), - [anon_sym_namespace] = ACTIONS(4128), - [anon_sym_static_assert] = ACTIONS(4128), - [anon_sym_concept] = ACTIONS(4128), - [anon_sym_co_return] = ACTIONS(4128), - [anon_sym_co_yield] = ACTIONS(4128), - [anon_sym_R_DQUOTE] = ACTIONS(4130), - [anon_sym_LR_DQUOTE] = ACTIONS(4130), - [anon_sym_uR_DQUOTE] = ACTIONS(4130), - [anon_sym_UR_DQUOTE] = ACTIONS(4130), - [anon_sym_u8R_DQUOTE] = ACTIONS(4130), - [anon_sym_co_await] = ACTIONS(4128), - [anon_sym_new] = ACTIONS(4128), - [anon_sym_requires] = ACTIONS(4128), - [anon_sym_CARET_CARET] = ACTIONS(4130), - [anon_sym_LBRACK_COLON] = ACTIONS(4130), - [sym_this] = ACTIONS(4128), + [STATE(887)] = { + [ts_builtin_sym_end] = ACTIONS(3756), + [sym_identifier] = ACTIONS(3754), + [aux_sym_preproc_include_token1] = ACTIONS(3754), + [aux_sym_preproc_def_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token1] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3754), + [sym_preproc_directive] = ACTIONS(3754), + [anon_sym_LPAREN2] = ACTIONS(3756), + [anon_sym_BANG] = ACTIONS(3756), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_DASH] = ACTIONS(3754), + [anon_sym_PLUS] = ACTIONS(3754), + [anon_sym_STAR] = ACTIONS(3756), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(3756), + [anon_sym___extension__] = ACTIONS(3754), + [anon_sym_typedef] = ACTIONS(3754), + [anon_sym_virtual] = ACTIONS(3754), + [anon_sym_extern] = ACTIONS(3754), + [anon_sym___attribute__] = ACTIONS(3754), + [anon_sym___attribute] = ACTIONS(3754), + [anon_sym_using] = ACTIONS(3754), + [anon_sym_COLON_COLON] = ACTIONS(3756), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3756), + [anon_sym___declspec] = ACTIONS(3754), + [anon_sym___based] = ACTIONS(3754), + [anon_sym___cdecl] = ACTIONS(3754), + [anon_sym___clrcall] = ACTIONS(3754), + [anon_sym___stdcall] = ACTIONS(3754), + [anon_sym___fastcall] = ACTIONS(3754), + [anon_sym___thiscall] = ACTIONS(3754), + [anon_sym___vectorcall] = ACTIONS(3754), + [anon_sym_LBRACE] = ACTIONS(3756), + [anon_sym_signed] = ACTIONS(3754), + [anon_sym_unsigned] = ACTIONS(3754), + [anon_sym_long] = ACTIONS(3754), + [anon_sym_short] = ACTIONS(3754), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_static] = ACTIONS(3754), + [anon_sym_register] = ACTIONS(3754), + [anon_sym_inline] = ACTIONS(3754), + [anon_sym___inline] = ACTIONS(3754), + [anon_sym___inline__] = ACTIONS(3754), + [anon_sym___forceinline] = ACTIONS(3754), + [anon_sym_thread_local] = ACTIONS(3754), + [anon_sym___thread] = ACTIONS(3754), + [anon_sym_const] = ACTIONS(3754), + [anon_sym_constexpr] = ACTIONS(3754), + [anon_sym_volatile] = ACTIONS(3754), + [anon_sym_restrict] = ACTIONS(3754), + [anon_sym___restrict__] = ACTIONS(3754), + [anon_sym__Atomic] = ACTIONS(3754), + [anon_sym__Noreturn] = ACTIONS(3754), + [anon_sym_noreturn] = ACTIONS(3754), + [anon_sym__Nonnull] = ACTIONS(3754), + [anon_sym_mutable] = ACTIONS(3754), + [anon_sym_constinit] = ACTIONS(3754), + [anon_sym_consteval] = ACTIONS(3754), + [anon_sym_alignas] = ACTIONS(3754), + [anon_sym__Alignas] = ACTIONS(3754), + [sym_primitive_type] = ACTIONS(3754), + [anon_sym_enum] = ACTIONS(3754), + [anon_sym_class] = ACTIONS(3754), + [anon_sym_struct] = ACTIONS(3754), + [anon_sym_union] = ACTIONS(3754), + [anon_sym_if] = ACTIONS(3754), + [anon_sym_switch] = ACTIONS(3754), + [anon_sym_case] = ACTIONS(3754), + [anon_sym_default] = ACTIONS(3754), + [anon_sym_while] = ACTIONS(3754), + [anon_sym_do] = ACTIONS(3754), + [anon_sym_for] = ACTIONS(3754), + [anon_sym_return] = ACTIONS(3754), + [anon_sym_break] = ACTIONS(3754), + [anon_sym_continue] = ACTIONS(3754), + [anon_sym_goto] = ACTIONS(3754), + [anon_sym_not] = ACTIONS(3754), + [anon_sym_compl] = ACTIONS(3754), + [anon_sym_DASH_DASH] = ACTIONS(3756), + [anon_sym_PLUS_PLUS] = ACTIONS(3756), + [anon_sym_sizeof] = ACTIONS(3754), + [anon_sym___alignof__] = ACTIONS(3754), + [anon_sym___alignof] = ACTIONS(3754), + [anon_sym__alignof] = ACTIONS(3754), + [anon_sym_alignof] = ACTIONS(3754), + [anon_sym__Alignof] = ACTIONS(3754), + [anon_sym_offsetof] = ACTIONS(3754), + [anon_sym__Generic] = ACTIONS(3754), + [anon_sym_typename] = ACTIONS(3754), + [anon_sym_asm] = ACTIONS(3754), + [anon_sym___asm__] = ACTIONS(3754), + [anon_sym___asm] = ACTIONS(3754), + [sym_number_literal] = ACTIONS(3756), + [anon_sym_L_SQUOTE] = ACTIONS(3756), + [anon_sym_u_SQUOTE] = ACTIONS(3756), + [anon_sym_U_SQUOTE] = ACTIONS(3756), + [anon_sym_u8_SQUOTE] = ACTIONS(3756), + [anon_sym_SQUOTE] = ACTIONS(3756), + [anon_sym_L_DQUOTE] = ACTIONS(3756), + [anon_sym_u_DQUOTE] = ACTIONS(3756), + [anon_sym_U_DQUOTE] = ACTIONS(3756), + [anon_sym_u8_DQUOTE] = ACTIONS(3756), + [anon_sym_DQUOTE] = ACTIONS(3756), + [sym_true] = ACTIONS(3754), + [sym_false] = ACTIONS(3754), + [anon_sym_NULL] = ACTIONS(3754), + [anon_sym_nullptr] = ACTIONS(3754), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3754), + [anon_sym_decltype] = ACTIONS(3754), + [anon_sym_explicit] = ACTIONS(3754), + [anon_sym_export] = ACTIONS(3754), + [anon_sym_module] = ACTIONS(3754), + [anon_sym_import] = ACTIONS(3754), + [anon_sym_template] = ACTIONS(3754), + [anon_sym_operator] = ACTIONS(3754), + [anon_sym_try] = ACTIONS(3754), + [anon_sym_delete] = ACTIONS(3754), + [anon_sym_throw] = ACTIONS(3754), + [anon_sym_namespace] = ACTIONS(3754), + [anon_sym_static_assert] = ACTIONS(3754), + [anon_sym_concept] = ACTIONS(3754), + [anon_sym_co_return] = ACTIONS(3754), + [anon_sym_co_yield] = ACTIONS(3754), + [anon_sym_R_DQUOTE] = ACTIONS(3756), + [anon_sym_LR_DQUOTE] = ACTIONS(3756), + [anon_sym_uR_DQUOTE] = ACTIONS(3756), + [anon_sym_UR_DQUOTE] = ACTIONS(3756), + [anon_sym_u8R_DQUOTE] = ACTIONS(3756), + [anon_sym_co_await] = ACTIONS(3754), + [anon_sym_new] = ACTIONS(3754), + [anon_sym_requires] = ACTIONS(3754), + [anon_sym_CARET_CARET] = ACTIONS(3756), + [anon_sym_LBRACK_COLON] = ACTIONS(3756), + [sym_this] = ACTIONS(3754), }, - [STATE(872)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(888)] = { + [sym_identifier] = ACTIONS(4478), + [aux_sym_preproc_include_token1] = ACTIONS(4478), + [aux_sym_preproc_def_token1] = ACTIONS(4478), + [aux_sym_preproc_if_token1] = ACTIONS(4478), + [aux_sym_preproc_if_token2] = ACTIONS(4478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4478), + [sym_preproc_directive] = ACTIONS(4478), + [anon_sym_LPAREN2] = ACTIONS(4480), + [anon_sym_BANG] = ACTIONS(4480), + [anon_sym_TILDE] = ACTIONS(4480), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4478), + [anon_sym_STAR] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_AMP] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym___extension__] = ACTIONS(4478), + [anon_sym_typedef] = ACTIONS(4478), + [anon_sym_virtual] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym___attribute__] = ACTIONS(4478), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_using] = ACTIONS(4478), + [anon_sym_COLON_COLON] = ACTIONS(4480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4480), + [anon_sym___declspec] = ACTIONS(4478), + [anon_sym___based] = ACTIONS(4478), + [anon_sym___cdecl] = ACTIONS(4478), + [anon_sym___clrcall] = ACTIONS(4478), + [anon_sym___stdcall] = ACTIONS(4478), + [anon_sym___fastcall] = ACTIONS(4478), + [anon_sym___thiscall] = ACTIONS(4478), + [anon_sym___vectorcall] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(4480), + [anon_sym_signed] = ACTIONS(4478), + [anon_sym_unsigned] = ACTIONS(4478), + [anon_sym_long] = ACTIONS(4478), + [anon_sym_short] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_static] = ACTIONS(4478), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_inline] = ACTIONS(4478), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4478), + [anon_sym___forceinline] = ACTIONS(4478), + [anon_sym_thread_local] = ACTIONS(4478), + [anon_sym___thread] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4478), + [anon_sym_volatile] = ACTIONS(4478), + [anon_sym_restrict] = ACTIONS(4478), + [anon_sym___restrict__] = ACTIONS(4478), + [anon_sym__Atomic] = ACTIONS(4478), + [anon_sym__Noreturn] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4478), + [anon_sym__Nonnull] = ACTIONS(4478), + [anon_sym_mutable] = ACTIONS(4478), + [anon_sym_constinit] = ACTIONS(4478), + [anon_sym_consteval] = ACTIONS(4478), + [anon_sym_alignas] = ACTIONS(4478), + [anon_sym__Alignas] = ACTIONS(4478), + [sym_primitive_type] = ACTIONS(4478), + [anon_sym_enum] = ACTIONS(4478), + [anon_sym_class] = ACTIONS(4478), + [anon_sym_struct] = ACTIONS(4478), + [anon_sym_union] = ACTIONS(4478), + [anon_sym_if] = ACTIONS(4478), + [anon_sym_switch] = ACTIONS(4478), + [anon_sym_case] = ACTIONS(4478), + [anon_sym_default] = ACTIONS(4478), + [anon_sym_while] = ACTIONS(4478), + [anon_sym_do] = ACTIONS(4478), + [anon_sym_for] = ACTIONS(4478), + [anon_sym_return] = ACTIONS(4478), + [anon_sym_break] = ACTIONS(4478), + [anon_sym_continue] = ACTIONS(4478), + [anon_sym_goto] = ACTIONS(4478), + [anon_sym_not] = ACTIONS(4478), + [anon_sym_compl] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4480), + [anon_sym_PLUS_PLUS] = ACTIONS(4480), + [anon_sym_sizeof] = ACTIONS(4478), + [anon_sym___alignof__] = ACTIONS(4478), + [anon_sym___alignof] = ACTIONS(4478), + [anon_sym__alignof] = ACTIONS(4478), + [anon_sym_alignof] = ACTIONS(4478), + [anon_sym__Alignof] = ACTIONS(4478), + [anon_sym_offsetof] = ACTIONS(4478), + [anon_sym__Generic] = ACTIONS(4478), + [anon_sym_typename] = ACTIONS(4478), + [anon_sym_asm] = ACTIONS(4478), + [anon_sym___asm__] = ACTIONS(4478), + [anon_sym___asm] = ACTIONS(4478), + [sym_number_literal] = ACTIONS(4480), + [anon_sym_L_SQUOTE] = ACTIONS(4480), + [anon_sym_u_SQUOTE] = ACTIONS(4480), + [anon_sym_U_SQUOTE] = ACTIONS(4480), + [anon_sym_u8_SQUOTE] = ACTIONS(4480), + [anon_sym_SQUOTE] = ACTIONS(4480), + [anon_sym_L_DQUOTE] = ACTIONS(4480), + [anon_sym_u_DQUOTE] = ACTIONS(4480), + [anon_sym_U_DQUOTE] = ACTIONS(4480), + [anon_sym_u8_DQUOTE] = ACTIONS(4480), + [anon_sym_DQUOTE] = ACTIONS(4480), + [sym_true] = ACTIONS(4478), + [sym_false] = ACTIONS(4478), + [anon_sym_NULL] = ACTIONS(4478), + [anon_sym_nullptr] = ACTIONS(4478), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4478), + [anon_sym_decltype] = ACTIONS(4478), + [anon_sym_explicit] = ACTIONS(4478), + [anon_sym_export] = ACTIONS(4478), + [anon_sym_module] = ACTIONS(4478), + [anon_sym_import] = ACTIONS(4478), + [anon_sym_template] = ACTIONS(4478), + [anon_sym_operator] = ACTIONS(4478), + [anon_sym_try] = ACTIONS(4478), + [anon_sym_delete] = ACTIONS(4478), + [anon_sym_throw] = ACTIONS(4478), + [anon_sym_namespace] = ACTIONS(4478), + [anon_sym_static_assert] = ACTIONS(4478), + [anon_sym_concept] = ACTIONS(4478), + [anon_sym_co_return] = ACTIONS(4478), + [anon_sym_co_yield] = ACTIONS(4478), + [anon_sym_R_DQUOTE] = ACTIONS(4480), + [anon_sym_LR_DQUOTE] = ACTIONS(4480), + [anon_sym_uR_DQUOTE] = ACTIONS(4480), + [anon_sym_UR_DQUOTE] = ACTIONS(4480), + [anon_sym_u8R_DQUOTE] = ACTIONS(4480), + [anon_sym_co_await] = ACTIONS(4478), + [anon_sym_new] = ACTIONS(4478), + [anon_sym_requires] = ACTIONS(4478), + [anon_sym_CARET_CARET] = ACTIONS(4480), + [anon_sym_LBRACK_COLON] = ACTIONS(4480), + [sym_this] = ACTIONS(4478), + }, + [STATE(889)] = { + [ts_builtin_sym_end] = ACTIONS(4120), + [sym_identifier] = ACTIONS(4118), + [aux_sym_preproc_include_token1] = ACTIONS(4118), + [aux_sym_preproc_def_token1] = ACTIONS(4118), + [aux_sym_preproc_if_token1] = ACTIONS(4118), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4118), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4118), + [sym_preproc_directive] = ACTIONS(4118), + [anon_sym_LPAREN2] = ACTIONS(4120), + [anon_sym_BANG] = ACTIONS(4120), + [anon_sym_TILDE] = ACTIONS(4120), + [anon_sym_DASH] = ACTIONS(4118), + [anon_sym_PLUS] = ACTIONS(4118), + [anon_sym_STAR] = ACTIONS(4120), + [anon_sym_AMP_AMP] = ACTIONS(4120), + [anon_sym_AMP] = ACTIONS(4118), + [anon_sym_SEMI] = ACTIONS(4120), + [anon_sym___extension__] = ACTIONS(4118), + [anon_sym_typedef] = ACTIONS(4118), + [anon_sym_virtual] = ACTIONS(4118), + [anon_sym_extern] = ACTIONS(4118), + [anon_sym___attribute__] = ACTIONS(4118), + [anon_sym___attribute] = ACTIONS(4118), + [anon_sym_using] = ACTIONS(4118), + [anon_sym_COLON_COLON] = ACTIONS(4120), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4120), + [anon_sym___declspec] = ACTIONS(4118), + [anon_sym___based] = ACTIONS(4118), + [anon_sym___cdecl] = ACTIONS(4118), + [anon_sym___clrcall] = ACTIONS(4118), + [anon_sym___stdcall] = ACTIONS(4118), + [anon_sym___fastcall] = ACTIONS(4118), + [anon_sym___thiscall] = ACTIONS(4118), + [anon_sym___vectorcall] = ACTIONS(4118), + [anon_sym_LBRACE] = ACTIONS(4120), + [anon_sym_signed] = ACTIONS(4118), + [anon_sym_unsigned] = ACTIONS(4118), + [anon_sym_long] = ACTIONS(4118), + [anon_sym_short] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_static] = ACTIONS(4118), + [anon_sym_register] = ACTIONS(4118), + [anon_sym_inline] = ACTIONS(4118), + [anon_sym___inline] = ACTIONS(4118), + [anon_sym___inline__] = ACTIONS(4118), + [anon_sym___forceinline] = ACTIONS(4118), + [anon_sym_thread_local] = ACTIONS(4118), + [anon_sym___thread] = ACTIONS(4118), + [anon_sym_const] = ACTIONS(4118), + [anon_sym_constexpr] = ACTIONS(4118), + [anon_sym_volatile] = ACTIONS(4118), + [anon_sym_restrict] = ACTIONS(4118), + [anon_sym___restrict__] = ACTIONS(4118), + [anon_sym__Atomic] = ACTIONS(4118), + [anon_sym__Noreturn] = ACTIONS(4118), + [anon_sym_noreturn] = ACTIONS(4118), + [anon_sym__Nonnull] = ACTIONS(4118), + [anon_sym_mutable] = ACTIONS(4118), + [anon_sym_constinit] = ACTIONS(4118), + [anon_sym_consteval] = ACTIONS(4118), + [anon_sym_alignas] = ACTIONS(4118), + [anon_sym__Alignas] = ACTIONS(4118), + [sym_primitive_type] = ACTIONS(4118), + [anon_sym_enum] = ACTIONS(4118), + [anon_sym_class] = ACTIONS(4118), + [anon_sym_struct] = ACTIONS(4118), + [anon_sym_union] = ACTIONS(4118), + [anon_sym_if] = ACTIONS(4118), + [anon_sym_switch] = ACTIONS(4118), + [anon_sym_case] = ACTIONS(4118), + [anon_sym_default] = ACTIONS(4118), + [anon_sym_while] = ACTIONS(4118), + [anon_sym_do] = ACTIONS(4118), + [anon_sym_for] = ACTIONS(4118), + [anon_sym_return] = ACTIONS(4118), + [anon_sym_break] = ACTIONS(4118), + [anon_sym_continue] = ACTIONS(4118), + [anon_sym_goto] = ACTIONS(4118), + [anon_sym_not] = ACTIONS(4118), + [anon_sym_compl] = ACTIONS(4118), + [anon_sym_DASH_DASH] = ACTIONS(4120), + [anon_sym_PLUS_PLUS] = ACTIONS(4120), + [anon_sym_sizeof] = ACTIONS(4118), + [anon_sym___alignof__] = ACTIONS(4118), + [anon_sym___alignof] = ACTIONS(4118), + [anon_sym__alignof] = ACTIONS(4118), + [anon_sym_alignof] = ACTIONS(4118), + [anon_sym__Alignof] = ACTIONS(4118), + [anon_sym_offsetof] = ACTIONS(4118), + [anon_sym__Generic] = ACTIONS(4118), + [anon_sym_typename] = ACTIONS(4118), + [anon_sym_asm] = ACTIONS(4118), + [anon_sym___asm__] = ACTIONS(4118), + [anon_sym___asm] = ACTIONS(4118), + [sym_number_literal] = ACTIONS(4120), + [anon_sym_L_SQUOTE] = ACTIONS(4120), + [anon_sym_u_SQUOTE] = ACTIONS(4120), + [anon_sym_U_SQUOTE] = ACTIONS(4120), + [anon_sym_u8_SQUOTE] = ACTIONS(4120), + [anon_sym_SQUOTE] = ACTIONS(4120), + [anon_sym_L_DQUOTE] = ACTIONS(4120), + [anon_sym_u_DQUOTE] = ACTIONS(4120), + [anon_sym_U_DQUOTE] = ACTIONS(4120), + [anon_sym_u8_DQUOTE] = ACTIONS(4120), + [anon_sym_DQUOTE] = ACTIONS(4120), + [sym_true] = ACTIONS(4118), + [sym_false] = ACTIONS(4118), + [anon_sym_NULL] = ACTIONS(4118), + [anon_sym_nullptr] = ACTIONS(4118), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4118), + [anon_sym_decltype] = ACTIONS(4118), + [anon_sym_explicit] = ACTIONS(4118), + [anon_sym_export] = ACTIONS(4118), + [anon_sym_module] = ACTIONS(4118), + [anon_sym_import] = ACTIONS(4118), + [anon_sym_template] = ACTIONS(4118), + [anon_sym_operator] = ACTIONS(4118), + [anon_sym_try] = ACTIONS(4118), + [anon_sym_delete] = ACTIONS(4118), + [anon_sym_throw] = ACTIONS(4118), + [anon_sym_namespace] = ACTIONS(4118), + [anon_sym_static_assert] = ACTIONS(4118), + [anon_sym_concept] = ACTIONS(4118), + [anon_sym_co_return] = ACTIONS(4118), + [anon_sym_co_yield] = ACTIONS(4118), + [anon_sym_R_DQUOTE] = ACTIONS(4120), + [anon_sym_LR_DQUOTE] = ACTIONS(4120), + [anon_sym_uR_DQUOTE] = ACTIONS(4120), + [anon_sym_UR_DQUOTE] = ACTIONS(4120), + [anon_sym_u8R_DQUOTE] = ACTIONS(4120), + [anon_sym_co_await] = ACTIONS(4118), + [anon_sym_new] = ACTIONS(4118), + [anon_sym_requires] = ACTIONS(4118), + [anon_sym_CARET_CARET] = ACTIONS(4120), + [anon_sym_LBRACK_COLON] = ACTIONS(4120), + [sym_this] = ACTIONS(4118), + }, + [STATE(890)] = { + [sym_preproc_def] = STATE(921), + [sym_preproc_function_def] = STATE(921), + [sym_preproc_call] = STATE(921), + [sym_preproc_if_in_field_declaration_list] = STATE(921), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(921), + [sym_type_definition] = STATE(921), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8105), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(921), + [sym_field_declaration] = STATE(921), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2509), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(921), + [sym_operator_cast] = STATE(9179), + [sym_inline_method_definition] = STATE(921), + [sym__constructor_specifiers] = STATE(2509), + [sym_operator_cast_definition] = STATE(921), + [sym_operator_cast_declaration] = STATE(921), + [sym_constructor_or_destructor_definition] = STATE(921), + [sym_constructor_or_destructor_declaration] = STATE(921), + [sym_friend_declaration] = STATE(921), + [sym_access_specifier] = STATE(11275), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(921), + [sym_alias_declaration] = STATE(921), + [sym_static_assert_declaration] = STATE(921), + [sym_consteval_block_declaration] = STATE(921), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9179), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(921), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9657), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2509), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4712), + [aux_sym_preproc_if_token1] = ACTIONS(4714), + [aux_sym_preproc_if_token2] = ACTIONS(4716), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4718), + [sym_preproc_directive] = ACTIONS(4720), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym___extension__] = ACTIONS(4724), + [anon_sym_typedef] = ACTIONS(4726), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4716), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -184180,7 +186682,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(4704), + [anon_sym_constexpr] = ACTIONS(4730), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -184190,3184 +186692,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4732), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4734), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4738), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(873)] = { - [ts_builtin_sym_end] = ACTIONS(4002), - [sym_identifier] = ACTIONS(4000), - [aux_sym_preproc_include_token1] = ACTIONS(4000), - [aux_sym_preproc_def_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token1] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), - [sym_preproc_directive] = ACTIONS(4000), - [anon_sym_LPAREN2] = ACTIONS(4002), - [anon_sym_BANG] = ACTIONS(4002), - [anon_sym_TILDE] = ACTIONS(4002), - [anon_sym_DASH] = ACTIONS(4000), - [anon_sym_PLUS] = ACTIONS(4000), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym___extension__] = ACTIONS(4000), - [anon_sym_typedef] = ACTIONS(4000), - [anon_sym_virtual] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym___attribute__] = ACTIONS(4000), - [anon_sym___attribute] = ACTIONS(4000), - [anon_sym_using] = ACTIONS(4000), - [anon_sym_COLON_COLON] = ACTIONS(4002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), - [anon_sym___declspec] = ACTIONS(4000), - [anon_sym___based] = ACTIONS(4000), - [anon_sym___cdecl] = ACTIONS(4000), - [anon_sym___clrcall] = ACTIONS(4000), - [anon_sym___stdcall] = ACTIONS(4000), - [anon_sym___fastcall] = ACTIONS(4000), - [anon_sym___thiscall] = ACTIONS(4000), - [anon_sym___vectorcall] = ACTIONS(4000), - [anon_sym_LBRACE] = ACTIONS(4002), - [anon_sym_signed] = ACTIONS(4000), - [anon_sym_unsigned] = ACTIONS(4000), - [anon_sym_long] = ACTIONS(4000), - [anon_sym_short] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_static] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_inline] = ACTIONS(4000), - [anon_sym___inline] = ACTIONS(4000), - [anon_sym___inline__] = ACTIONS(4000), - [anon_sym___forceinline] = ACTIONS(4000), - [anon_sym_thread_local] = ACTIONS(4000), - [anon_sym___thread] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_constexpr] = ACTIONS(4000), - [anon_sym_volatile] = ACTIONS(4000), - [anon_sym_restrict] = ACTIONS(4000), - [anon_sym___restrict__] = ACTIONS(4000), - [anon_sym__Atomic] = ACTIONS(4000), - [anon_sym__Noreturn] = ACTIONS(4000), - [anon_sym_noreturn] = ACTIONS(4000), - [anon_sym__Nonnull] = ACTIONS(4000), - [anon_sym_mutable] = ACTIONS(4000), - [anon_sym_constinit] = ACTIONS(4000), - [anon_sym_consteval] = ACTIONS(4000), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym__Alignas] = ACTIONS(4000), - [sym_primitive_type] = ACTIONS(4000), - [anon_sym_enum] = ACTIONS(4000), - [anon_sym_class] = ACTIONS(4000), - [anon_sym_struct] = ACTIONS(4000), - [anon_sym_union] = ACTIONS(4000), - [anon_sym_if] = ACTIONS(4000), - [anon_sym_switch] = ACTIONS(4000), - [anon_sym_case] = ACTIONS(4000), - [anon_sym_default] = ACTIONS(4000), - [anon_sym_while] = ACTIONS(4000), - [anon_sym_do] = ACTIONS(4000), - [anon_sym_for] = ACTIONS(4000), - [anon_sym_return] = ACTIONS(4000), - [anon_sym_break] = ACTIONS(4000), - [anon_sym_continue] = ACTIONS(4000), - [anon_sym_goto] = ACTIONS(4000), - [anon_sym_not] = ACTIONS(4000), - [anon_sym_compl] = ACTIONS(4000), - [anon_sym_DASH_DASH] = ACTIONS(4002), - [anon_sym_PLUS_PLUS] = ACTIONS(4002), - [anon_sym_sizeof] = ACTIONS(4000), - [anon_sym___alignof__] = ACTIONS(4000), - [anon_sym___alignof] = ACTIONS(4000), - [anon_sym__alignof] = ACTIONS(4000), - [anon_sym_alignof] = ACTIONS(4000), - [anon_sym__Alignof] = ACTIONS(4000), - [anon_sym_offsetof] = ACTIONS(4000), - [anon_sym__Generic] = ACTIONS(4000), - [anon_sym_typename] = ACTIONS(4000), - [anon_sym_asm] = ACTIONS(4000), - [anon_sym___asm__] = ACTIONS(4000), - [anon_sym___asm] = ACTIONS(4000), - [sym_number_literal] = ACTIONS(4002), - [anon_sym_L_SQUOTE] = ACTIONS(4002), - [anon_sym_u_SQUOTE] = ACTIONS(4002), - [anon_sym_U_SQUOTE] = ACTIONS(4002), - [anon_sym_u8_SQUOTE] = ACTIONS(4002), - [anon_sym_SQUOTE] = ACTIONS(4002), - [anon_sym_L_DQUOTE] = ACTIONS(4002), - [anon_sym_u_DQUOTE] = ACTIONS(4002), - [anon_sym_U_DQUOTE] = ACTIONS(4002), - [anon_sym_u8_DQUOTE] = ACTIONS(4002), - [anon_sym_DQUOTE] = ACTIONS(4002), - [sym_true] = ACTIONS(4000), - [sym_false] = ACTIONS(4000), - [anon_sym_NULL] = ACTIONS(4000), - [anon_sym_nullptr] = ACTIONS(4000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4000), - [anon_sym_decltype] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4000), - [anon_sym_export] = ACTIONS(4000), - [anon_sym_module] = ACTIONS(4000), - [anon_sym_import] = ACTIONS(4000), - [anon_sym_template] = ACTIONS(4000), - [anon_sym_operator] = ACTIONS(4000), - [anon_sym_try] = ACTIONS(4000), - [anon_sym_delete] = ACTIONS(4000), - [anon_sym_throw] = ACTIONS(4000), - [anon_sym_namespace] = ACTIONS(4000), - [anon_sym_static_assert] = ACTIONS(4000), - [anon_sym_concept] = ACTIONS(4000), - [anon_sym_co_return] = ACTIONS(4000), - [anon_sym_co_yield] = ACTIONS(4000), - [anon_sym_R_DQUOTE] = ACTIONS(4002), - [anon_sym_LR_DQUOTE] = ACTIONS(4002), - [anon_sym_uR_DQUOTE] = ACTIONS(4002), - [anon_sym_UR_DQUOTE] = ACTIONS(4002), - [anon_sym_u8R_DQUOTE] = ACTIONS(4002), - [anon_sym_co_await] = ACTIONS(4000), - [anon_sym_new] = ACTIONS(4000), - [anon_sym_requires] = ACTIONS(4000), - [anon_sym_CARET_CARET] = ACTIONS(4002), - [anon_sym_LBRACK_COLON] = ACTIONS(4002), - [sym_this] = ACTIONS(4000), - }, - [STATE(874)] = { - [ts_builtin_sym_end] = ACTIONS(4094), - [sym_identifier] = ACTIONS(4092), - [aux_sym_preproc_include_token1] = ACTIONS(4092), - [aux_sym_preproc_def_token1] = ACTIONS(4092), - [aux_sym_preproc_if_token1] = ACTIONS(4092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), - [sym_preproc_directive] = ACTIONS(4092), - [anon_sym_LPAREN2] = ACTIONS(4094), - [anon_sym_BANG] = ACTIONS(4094), - [anon_sym_TILDE] = ACTIONS(4094), - [anon_sym_DASH] = ACTIONS(4092), - [anon_sym_PLUS] = ACTIONS(4092), - [anon_sym_STAR] = ACTIONS(4094), - [anon_sym_AMP_AMP] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_SEMI] = ACTIONS(4094), - [anon_sym___extension__] = ACTIONS(4092), - [anon_sym_typedef] = ACTIONS(4092), - [anon_sym_virtual] = ACTIONS(4092), - [anon_sym_extern] = ACTIONS(4092), - [anon_sym___attribute__] = ACTIONS(4092), - [anon_sym___attribute] = ACTIONS(4092), - [anon_sym_using] = ACTIONS(4092), - [anon_sym_COLON_COLON] = ACTIONS(4094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), - [anon_sym___declspec] = ACTIONS(4092), - [anon_sym___based] = ACTIONS(4092), - [anon_sym___cdecl] = ACTIONS(4092), - [anon_sym___clrcall] = ACTIONS(4092), - [anon_sym___stdcall] = ACTIONS(4092), - [anon_sym___fastcall] = ACTIONS(4092), - [anon_sym___thiscall] = ACTIONS(4092), - [anon_sym___vectorcall] = ACTIONS(4092), - [anon_sym_LBRACE] = ACTIONS(4094), - [anon_sym_signed] = ACTIONS(4092), - [anon_sym_unsigned] = ACTIONS(4092), - [anon_sym_long] = ACTIONS(4092), - [anon_sym_short] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4092), - [anon_sym_static] = ACTIONS(4092), - [anon_sym_register] = ACTIONS(4092), - [anon_sym_inline] = ACTIONS(4092), - [anon_sym___inline] = ACTIONS(4092), - [anon_sym___inline__] = ACTIONS(4092), - [anon_sym___forceinline] = ACTIONS(4092), - [anon_sym_thread_local] = ACTIONS(4092), - [anon_sym___thread] = ACTIONS(4092), - [anon_sym_const] = ACTIONS(4092), - [anon_sym_constexpr] = ACTIONS(4092), - [anon_sym_volatile] = ACTIONS(4092), - [anon_sym_restrict] = ACTIONS(4092), - [anon_sym___restrict__] = ACTIONS(4092), - [anon_sym__Atomic] = ACTIONS(4092), - [anon_sym__Noreturn] = ACTIONS(4092), - [anon_sym_noreturn] = ACTIONS(4092), - [anon_sym__Nonnull] = ACTIONS(4092), - [anon_sym_mutable] = ACTIONS(4092), - [anon_sym_constinit] = ACTIONS(4092), - [anon_sym_consteval] = ACTIONS(4092), - [anon_sym_alignas] = ACTIONS(4092), - [anon_sym__Alignas] = ACTIONS(4092), - [sym_primitive_type] = ACTIONS(4092), - [anon_sym_enum] = ACTIONS(4092), - [anon_sym_class] = ACTIONS(4092), - [anon_sym_struct] = ACTIONS(4092), - [anon_sym_union] = ACTIONS(4092), - [anon_sym_if] = ACTIONS(4092), - [anon_sym_switch] = ACTIONS(4092), - [anon_sym_case] = ACTIONS(4092), - [anon_sym_default] = ACTIONS(4092), - [anon_sym_while] = ACTIONS(4092), - [anon_sym_do] = ACTIONS(4092), - [anon_sym_for] = ACTIONS(4092), - [anon_sym_return] = ACTIONS(4092), - [anon_sym_break] = ACTIONS(4092), - [anon_sym_continue] = ACTIONS(4092), - [anon_sym_goto] = ACTIONS(4092), - [anon_sym_not] = ACTIONS(4092), - [anon_sym_compl] = ACTIONS(4092), - [anon_sym_DASH_DASH] = ACTIONS(4094), - [anon_sym_PLUS_PLUS] = ACTIONS(4094), - [anon_sym_sizeof] = ACTIONS(4092), - [anon_sym___alignof__] = ACTIONS(4092), - [anon_sym___alignof] = ACTIONS(4092), - [anon_sym__alignof] = ACTIONS(4092), - [anon_sym_alignof] = ACTIONS(4092), - [anon_sym__Alignof] = ACTIONS(4092), - [anon_sym_offsetof] = ACTIONS(4092), - [anon_sym__Generic] = ACTIONS(4092), - [anon_sym_typename] = ACTIONS(4092), - [anon_sym_asm] = ACTIONS(4092), - [anon_sym___asm__] = ACTIONS(4092), - [anon_sym___asm] = ACTIONS(4092), - [sym_number_literal] = ACTIONS(4094), - [anon_sym_L_SQUOTE] = ACTIONS(4094), - [anon_sym_u_SQUOTE] = ACTIONS(4094), - [anon_sym_U_SQUOTE] = ACTIONS(4094), - [anon_sym_u8_SQUOTE] = ACTIONS(4094), - [anon_sym_SQUOTE] = ACTIONS(4094), - [anon_sym_L_DQUOTE] = ACTIONS(4094), - [anon_sym_u_DQUOTE] = ACTIONS(4094), - [anon_sym_U_DQUOTE] = ACTIONS(4094), - [anon_sym_u8_DQUOTE] = ACTIONS(4094), - [anon_sym_DQUOTE] = ACTIONS(4094), - [sym_true] = ACTIONS(4092), - [sym_false] = ACTIONS(4092), - [anon_sym_NULL] = ACTIONS(4092), - [anon_sym_nullptr] = ACTIONS(4092), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4092), - [anon_sym_decltype] = ACTIONS(4092), - [anon_sym_explicit] = ACTIONS(4092), - [anon_sym_export] = ACTIONS(4092), - [anon_sym_module] = ACTIONS(4092), - [anon_sym_import] = ACTIONS(4092), - [anon_sym_template] = ACTIONS(4092), - [anon_sym_operator] = ACTIONS(4092), - [anon_sym_try] = ACTIONS(4092), - [anon_sym_delete] = ACTIONS(4092), - [anon_sym_throw] = ACTIONS(4092), - [anon_sym_namespace] = ACTIONS(4092), - [anon_sym_static_assert] = ACTIONS(4092), - [anon_sym_concept] = ACTIONS(4092), - [anon_sym_co_return] = ACTIONS(4092), - [anon_sym_co_yield] = ACTIONS(4092), - [anon_sym_R_DQUOTE] = ACTIONS(4094), - [anon_sym_LR_DQUOTE] = ACTIONS(4094), - [anon_sym_uR_DQUOTE] = ACTIONS(4094), - [anon_sym_UR_DQUOTE] = ACTIONS(4094), - [anon_sym_u8R_DQUOTE] = ACTIONS(4094), - [anon_sym_co_await] = ACTIONS(4092), - [anon_sym_new] = ACTIONS(4092), - [anon_sym_requires] = ACTIONS(4092), - [anon_sym_CARET_CARET] = ACTIONS(4094), - [anon_sym_LBRACK_COLON] = ACTIONS(4094), - [sym_this] = ACTIONS(4092), - }, - [STATE(875)] = { - [ts_builtin_sym_end] = ACTIONS(4445), - [sym_identifier] = ACTIONS(4443), - [aux_sym_preproc_include_token1] = ACTIONS(4443), - [aux_sym_preproc_def_token1] = ACTIONS(4443), - [aux_sym_preproc_if_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4443), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4443), - [sym_preproc_directive] = ACTIONS(4443), - [anon_sym_LPAREN2] = ACTIONS(4445), - [anon_sym_BANG] = ACTIONS(4445), - [anon_sym_TILDE] = ACTIONS(4445), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4445), - [anon_sym_AMP_AMP] = ACTIONS(4445), - [anon_sym_AMP] = ACTIONS(4443), - [anon_sym_SEMI] = ACTIONS(4445), - [anon_sym___extension__] = ACTIONS(4443), - [anon_sym_typedef] = ACTIONS(4443), - [anon_sym_virtual] = ACTIONS(4443), - [anon_sym_extern] = ACTIONS(4443), - [anon_sym___attribute__] = ACTIONS(4443), - [anon_sym___attribute] = ACTIONS(4443), - [anon_sym_using] = ACTIONS(4443), - [anon_sym_COLON_COLON] = ACTIONS(4445), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4445), - [anon_sym___declspec] = ACTIONS(4443), - [anon_sym___based] = ACTIONS(4443), - [anon_sym___cdecl] = ACTIONS(4443), - [anon_sym___clrcall] = ACTIONS(4443), - [anon_sym___stdcall] = ACTIONS(4443), - [anon_sym___fastcall] = ACTIONS(4443), - [anon_sym___thiscall] = ACTIONS(4443), - [anon_sym___vectorcall] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(4445), - [anon_sym_signed] = ACTIONS(4443), - [anon_sym_unsigned] = ACTIONS(4443), - [anon_sym_long] = ACTIONS(4443), - [anon_sym_short] = ACTIONS(4443), - [anon_sym_LBRACK] = ACTIONS(4443), - [anon_sym_static] = ACTIONS(4443), - [anon_sym_register] = ACTIONS(4443), - [anon_sym_inline] = ACTIONS(4443), - [anon_sym___inline] = ACTIONS(4443), - [anon_sym___inline__] = ACTIONS(4443), - [anon_sym___forceinline] = ACTIONS(4443), - [anon_sym_thread_local] = ACTIONS(4443), - [anon_sym___thread] = ACTIONS(4443), - [anon_sym_const] = ACTIONS(4443), - [anon_sym_constexpr] = ACTIONS(4443), - [anon_sym_volatile] = ACTIONS(4443), - [anon_sym_restrict] = ACTIONS(4443), - [anon_sym___restrict__] = ACTIONS(4443), - [anon_sym__Atomic] = ACTIONS(4443), - [anon_sym__Noreturn] = ACTIONS(4443), - [anon_sym_noreturn] = ACTIONS(4443), - [anon_sym__Nonnull] = ACTIONS(4443), - [anon_sym_mutable] = ACTIONS(4443), - [anon_sym_constinit] = ACTIONS(4443), - [anon_sym_consteval] = ACTIONS(4443), - [anon_sym_alignas] = ACTIONS(4443), - [anon_sym__Alignas] = ACTIONS(4443), - [sym_primitive_type] = ACTIONS(4443), - [anon_sym_enum] = ACTIONS(4443), - [anon_sym_class] = ACTIONS(4443), - [anon_sym_struct] = ACTIONS(4443), - [anon_sym_union] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_switch] = ACTIONS(4443), - [anon_sym_case] = ACTIONS(4443), - [anon_sym_default] = ACTIONS(4443), - [anon_sym_while] = ACTIONS(4443), - [anon_sym_do] = ACTIONS(4443), - [anon_sym_for] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_goto] = ACTIONS(4443), - [anon_sym_not] = ACTIONS(4443), - [anon_sym_compl] = ACTIONS(4443), - [anon_sym_DASH_DASH] = ACTIONS(4445), - [anon_sym_PLUS_PLUS] = ACTIONS(4445), - [anon_sym_sizeof] = ACTIONS(4443), - [anon_sym___alignof__] = ACTIONS(4443), - [anon_sym___alignof] = ACTIONS(4443), - [anon_sym__alignof] = ACTIONS(4443), - [anon_sym_alignof] = ACTIONS(4443), - [anon_sym__Alignof] = ACTIONS(4443), - [anon_sym_offsetof] = ACTIONS(4443), - [anon_sym__Generic] = ACTIONS(4443), - [anon_sym_typename] = ACTIONS(4443), - [anon_sym_asm] = ACTIONS(4443), - [anon_sym___asm__] = ACTIONS(4443), - [anon_sym___asm] = ACTIONS(4443), - [sym_number_literal] = ACTIONS(4445), - [anon_sym_L_SQUOTE] = ACTIONS(4445), - [anon_sym_u_SQUOTE] = ACTIONS(4445), - [anon_sym_U_SQUOTE] = ACTIONS(4445), - [anon_sym_u8_SQUOTE] = ACTIONS(4445), - [anon_sym_SQUOTE] = ACTIONS(4445), - [anon_sym_L_DQUOTE] = ACTIONS(4445), - [anon_sym_u_DQUOTE] = ACTIONS(4445), - [anon_sym_U_DQUOTE] = ACTIONS(4445), - [anon_sym_u8_DQUOTE] = ACTIONS(4445), - [anon_sym_DQUOTE] = ACTIONS(4445), - [sym_true] = ACTIONS(4443), - [sym_false] = ACTIONS(4443), - [anon_sym_NULL] = ACTIONS(4443), - [anon_sym_nullptr] = ACTIONS(4443), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4443), - [anon_sym_decltype] = ACTIONS(4443), - [anon_sym_explicit] = ACTIONS(4443), - [anon_sym_export] = ACTIONS(4443), - [anon_sym_module] = ACTIONS(4443), - [anon_sym_import] = ACTIONS(4443), - [anon_sym_template] = ACTIONS(4443), - [anon_sym_operator] = ACTIONS(4443), - [anon_sym_try] = ACTIONS(4443), - [anon_sym_delete] = ACTIONS(4443), - [anon_sym_throw] = ACTIONS(4443), - [anon_sym_namespace] = ACTIONS(4443), - [anon_sym_static_assert] = ACTIONS(4443), - [anon_sym_concept] = ACTIONS(4443), - [anon_sym_co_return] = ACTIONS(4443), - [anon_sym_co_yield] = ACTIONS(4443), - [anon_sym_R_DQUOTE] = ACTIONS(4445), - [anon_sym_LR_DQUOTE] = ACTIONS(4445), - [anon_sym_uR_DQUOTE] = ACTIONS(4445), - [anon_sym_UR_DQUOTE] = ACTIONS(4445), - [anon_sym_u8R_DQUOTE] = ACTIONS(4445), - [anon_sym_co_await] = ACTIONS(4443), - [anon_sym_new] = ACTIONS(4443), - [anon_sym_requires] = ACTIONS(4443), - [anon_sym_CARET_CARET] = ACTIONS(4445), - [anon_sym_LBRACK_COLON] = ACTIONS(4445), - [sym_this] = ACTIONS(4443), - }, - [STATE(876)] = { - [ts_builtin_sym_end] = ACTIONS(4198), - [sym_identifier] = ACTIONS(4196), - [aux_sym_preproc_include_token1] = ACTIONS(4196), - [aux_sym_preproc_def_token1] = ACTIONS(4196), - [aux_sym_preproc_if_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4196), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4196), - [sym_preproc_directive] = ACTIONS(4196), - [anon_sym_LPAREN2] = ACTIONS(4198), - [anon_sym_BANG] = ACTIONS(4198), - [anon_sym_TILDE] = ACTIONS(4198), - [anon_sym_DASH] = ACTIONS(4196), - [anon_sym_PLUS] = ACTIONS(4196), - [anon_sym_STAR] = ACTIONS(4198), - [anon_sym_AMP_AMP] = ACTIONS(4198), - [anon_sym_AMP] = ACTIONS(4196), - [anon_sym_SEMI] = ACTIONS(4198), - [anon_sym___extension__] = ACTIONS(4196), - [anon_sym_typedef] = ACTIONS(4196), - [anon_sym_virtual] = ACTIONS(4196), - [anon_sym_extern] = ACTIONS(4196), - [anon_sym___attribute__] = ACTIONS(4196), - [anon_sym___attribute] = ACTIONS(4196), - [anon_sym_using] = ACTIONS(4196), - [anon_sym_COLON_COLON] = ACTIONS(4198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4198), - [anon_sym___declspec] = ACTIONS(4196), - [anon_sym___based] = ACTIONS(4196), - [anon_sym___cdecl] = ACTIONS(4196), - [anon_sym___clrcall] = ACTIONS(4196), - [anon_sym___stdcall] = ACTIONS(4196), - [anon_sym___fastcall] = ACTIONS(4196), - [anon_sym___thiscall] = ACTIONS(4196), - [anon_sym___vectorcall] = ACTIONS(4196), - [anon_sym_LBRACE] = ACTIONS(4198), - [anon_sym_signed] = ACTIONS(4196), - [anon_sym_unsigned] = ACTIONS(4196), - [anon_sym_long] = ACTIONS(4196), - [anon_sym_short] = ACTIONS(4196), - [anon_sym_LBRACK] = ACTIONS(4196), - [anon_sym_static] = ACTIONS(4196), - [anon_sym_register] = ACTIONS(4196), - [anon_sym_inline] = ACTIONS(4196), - [anon_sym___inline] = ACTIONS(4196), - [anon_sym___inline__] = ACTIONS(4196), - [anon_sym___forceinline] = ACTIONS(4196), - [anon_sym_thread_local] = ACTIONS(4196), - [anon_sym___thread] = ACTIONS(4196), - [anon_sym_const] = ACTIONS(4196), - [anon_sym_constexpr] = ACTIONS(4196), - [anon_sym_volatile] = ACTIONS(4196), - [anon_sym_restrict] = ACTIONS(4196), - [anon_sym___restrict__] = ACTIONS(4196), - [anon_sym__Atomic] = ACTIONS(4196), - [anon_sym__Noreturn] = ACTIONS(4196), - [anon_sym_noreturn] = ACTIONS(4196), - [anon_sym__Nonnull] = ACTIONS(4196), - [anon_sym_mutable] = ACTIONS(4196), - [anon_sym_constinit] = ACTIONS(4196), - [anon_sym_consteval] = ACTIONS(4196), - [anon_sym_alignas] = ACTIONS(4196), - [anon_sym__Alignas] = ACTIONS(4196), - [sym_primitive_type] = ACTIONS(4196), - [anon_sym_enum] = ACTIONS(4196), - [anon_sym_class] = ACTIONS(4196), - [anon_sym_struct] = ACTIONS(4196), - [anon_sym_union] = ACTIONS(4196), - [anon_sym_if] = ACTIONS(4196), - [anon_sym_switch] = ACTIONS(4196), - [anon_sym_case] = ACTIONS(4196), - [anon_sym_default] = ACTIONS(4196), - [anon_sym_while] = ACTIONS(4196), - [anon_sym_do] = ACTIONS(4196), - [anon_sym_for] = ACTIONS(4196), - [anon_sym_return] = ACTIONS(4196), - [anon_sym_break] = ACTIONS(4196), - [anon_sym_continue] = ACTIONS(4196), - [anon_sym_goto] = ACTIONS(4196), - [anon_sym_not] = ACTIONS(4196), - [anon_sym_compl] = ACTIONS(4196), - [anon_sym_DASH_DASH] = ACTIONS(4198), - [anon_sym_PLUS_PLUS] = ACTIONS(4198), - [anon_sym_sizeof] = ACTIONS(4196), - [anon_sym___alignof__] = ACTIONS(4196), - [anon_sym___alignof] = ACTIONS(4196), - [anon_sym__alignof] = ACTIONS(4196), - [anon_sym_alignof] = ACTIONS(4196), - [anon_sym__Alignof] = ACTIONS(4196), - [anon_sym_offsetof] = ACTIONS(4196), - [anon_sym__Generic] = ACTIONS(4196), - [anon_sym_typename] = ACTIONS(4196), - [anon_sym_asm] = ACTIONS(4196), - [anon_sym___asm__] = ACTIONS(4196), - [anon_sym___asm] = ACTIONS(4196), - [sym_number_literal] = ACTIONS(4198), - [anon_sym_L_SQUOTE] = ACTIONS(4198), - [anon_sym_u_SQUOTE] = ACTIONS(4198), - [anon_sym_U_SQUOTE] = ACTIONS(4198), - [anon_sym_u8_SQUOTE] = ACTIONS(4198), - [anon_sym_SQUOTE] = ACTIONS(4198), - [anon_sym_L_DQUOTE] = ACTIONS(4198), - [anon_sym_u_DQUOTE] = ACTIONS(4198), - [anon_sym_U_DQUOTE] = ACTIONS(4198), - [anon_sym_u8_DQUOTE] = ACTIONS(4198), - [anon_sym_DQUOTE] = ACTIONS(4198), - [sym_true] = ACTIONS(4196), - [sym_false] = ACTIONS(4196), - [anon_sym_NULL] = ACTIONS(4196), - [anon_sym_nullptr] = ACTIONS(4196), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4196), - [anon_sym_decltype] = ACTIONS(4196), - [anon_sym_explicit] = ACTIONS(4196), - [anon_sym_export] = ACTIONS(4196), - [anon_sym_module] = ACTIONS(4196), - [anon_sym_import] = ACTIONS(4196), - [anon_sym_template] = ACTIONS(4196), - [anon_sym_operator] = ACTIONS(4196), - [anon_sym_try] = ACTIONS(4196), - [anon_sym_delete] = ACTIONS(4196), - [anon_sym_throw] = ACTIONS(4196), - [anon_sym_namespace] = ACTIONS(4196), - [anon_sym_static_assert] = ACTIONS(4196), - [anon_sym_concept] = ACTIONS(4196), - [anon_sym_co_return] = ACTIONS(4196), - [anon_sym_co_yield] = ACTIONS(4196), - [anon_sym_R_DQUOTE] = ACTIONS(4198), - [anon_sym_LR_DQUOTE] = ACTIONS(4198), - [anon_sym_uR_DQUOTE] = ACTIONS(4198), - [anon_sym_UR_DQUOTE] = ACTIONS(4198), - [anon_sym_u8R_DQUOTE] = ACTIONS(4198), - [anon_sym_co_await] = ACTIONS(4196), - [anon_sym_new] = ACTIONS(4196), - [anon_sym_requires] = ACTIONS(4196), - [anon_sym_CARET_CARET] = ACTIONS(4198), - [anon_sym_LBRACK_COLON] = ACTIONS(4198), - [sym_this] = ACTIONS(4196), - }, - [STATE(877)] = { - [ts_builtin_sym_end] = ACTIONS(4202), - [sym_identifier] = ACTIONS(4200), - [aux_sym_preproc_include_token1] = ACTIONS(4200), - [aux_sym_preproc_def_token1] = ACTIONS(4200), - [aux_sym_preproc_if_token1] = ACTIONS(4200), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4200), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4200), - [sym_preproc_directive] = ACTIONS(4200), - [anon_sym_LPAREN2] = ACTIONS(4202), - [anon_sym_BANG] = ACTIONS(4202), - [anon_sym_TILDE] = ACTIONS(4202), - [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_PLUS] = ACTIONS(4200), - [anon_sym_STAR] = ACTIONS(4202), - [anon_sym_AMP_AMP] = ACTIONS(4202), - [anon_sym_AMP] = ACTIONS(4200), - [anon_sym_SEMI] = ACTIONS(4202), - [anon_sym___extension__] = ACTIONS(4200), - [anon_sym_typedef] = ACTIONS(4200), - [anon_sym_virtual] = ACTIONS(4200), - [anon_sym_extern] = ACTIONS(4200), - [anon_sym___attribute__] = ACTIONS(4200), - [anon_sym___attribute] = ACTIONS(4200), - [anon_sym_using] = ACTIONS(4200), - [anon_sym_COLON_COLON] = ACTIONS(4202), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4202), - [anon_sym___declspec] = ACTIONS(4200), - [anon_sym___based] = ACTIONS(4200), - [anon_sym___cdecl] = ACTIONS(4200), - [anon_sym___clrcall] = ACTIONS(4200), - [anon_sym___stdcall] = ACTIONS(4200), - [anon_sym___fastcall] = ACTIONS(4200), - [anon_sym___thiscall] = ACTIONS(4200), - [anon_sym___vectorcall] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4202), - [anon_sym_signed] = ACTIONS(4200), - [anon_sym_unsigned] = ACTIONS(4200), - [anon_sym_long] = ACTIONS(4200), - [anon_sym_short] = ACTIONS(4200), - [anon_sym_LBRACK] = ACTIONS(4200), - [anon_sym_static] = ACTIONS(4200), - [anon_sym_register] = ACTIONS(4200), - [anon_sym_inline] = ACTIONS(4200), - [anon_sym___inline] = ACTIONS(4200), - [anon_sym___inline__] = ACTIONS(4200), - [anon_sym___forceinline] = ACTIONS(4200), - [anon_sym_thread_local] = ACTIONS(4200), - [anon_sym___thread] = ACTIONS(4200), - [anon_sym_const] = ACTIONS(4200), - [anon_sym_constexpr] = ACTIONS(4200), - [anon_sym_volatile] = ACTIONS(4200), - [anon_sym_restrict] = ACTIONS(4200), - [anon_sym___restrict__] = ACTIONS(4200), - [anon_sym__Atomic] = ACTIONS(4200), - [anon_sym__Noreturn] = ACTIONS(4200), - [anon_sym_noreturn] = ACTIONS(4200), - [anon_sym__Nonnull] = ACTIONS(4200), - [anon_sym_mutable] = ACTIONS(4200), - [anon_sym_constinit] = ACTIONS(4200), - [anon_sym_consteval] = ACTIONS(4200), - [anon_sym_alignas] = ACTIONS(4200), - [anon_sym__Alignas] = ACTIONS(4200), - [sym_primitive_type] = ACTIONS(4200), - [anon_sym_enum] = ACTIONS(4200), - [anon_sym_class] = ACTIONS(4200), - [anon_sym_struct] = ACTIONS(4200), - [anon_sym_union] = ACTIONS(4200), - [anon_sym_if] = ACTIONS(4200), - [anon_sym_switch] = ACTIONS(4200), - [anon_sym_case] = ACTIONS(4200), - [anon_sym_default] = ACTIONS(4200), - [anon_sym_while] = ACTIONS(4200), - [anon_sym_do] = ACTIONS(4200), - [anon_sym_for] = ACTIONS(4200), - [anon_sym_return] = ACTIONS(4200), - [anon_sym_break] = ACTIONS(4200), - [anon_sym_continue] = ACTIONS(4200), - [anon_sym_goto] = ACTIONS(4200), - [anon_sym_not] = ACTIONS(4200), - [anon_sym_compl] = ACTIONS(4200), - [anon_sym_DASH_DASH] = ACTIONS(4202), - [anon_sym_PLUS_PLUS] = ACTIONS(4202), - [anon_sym_sizeof] = ACTIONS(4200), - [anon_sym___alignof__] = ACTIONS(4200), - [anon_sym___alignof] = ACTIONS(4200), - [anon_sym__alignof] = ACTIONS(4200), - [anon_sym_alignof] = ACTIONS(4200), - [anon_sym__Alignof] = ACTIONS(4200), - [anon_sym_offsetof] = ACTIONS(4200), - [anon_sym__Generic] = ACTIONS(4200), - [anon_sym_typename] = ACTIONS(4200), - [anon_sym_asm] = ACTIONS(4200), - [anon_sym___asm__] = ACTIONS(4200), - [anon_sym___asm] = ACTIONS(4200), - [sym_number_literal] = ACTIONS(4202), - [anon_sym_L_SQUOTE] = ACTIONS(4202), - [anon_sym_u_SQUOTE] = ACTIONS(4202), - [anon_sym_U_SQUOTE] = ACTIONS(4202), - [anon_sym_u8_SQUOTE] = ACTIONS(4202), - [anon_sym_SQUOTE] = ACTIONS(4202), - [anon_sym_L_DQUOTE] = ACTIONS(4202), - [anon_sym_u_DQUOTE] = ACTIONS(4202), - [anon_sym_U_DQUOTE] = ACTIONS(4202), - [anon_sym_u8_DQUOTE] = ACTIONS(4202), - [anon_sym_DQUOTE] = ACTIONS(4202), - [sym_true] = ACTIONS(4200), - [sym_false] = ACTIONS(4200), - [anon_sym_NULL] = ACTIONS(4200), - [anon_sym_nullptr] = ACTIONS(4200), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4200), - [anon_sym_decltype] = ACTIONS(4200), - [anon_sym_explicit] = ACTIONS(4200), - [anon_sym_export] = ACTIONS(4200), - [anon_sym_module] = ACTIONS(4200), - [anon_sym_import] = ACTIONS(4200), - [anon_sym_template] = ACTIONS(4200), - [anon_sym_operator] = ACTIONS(4200), - [anon_sym_try] = ACTIONS(4200), - [anon_sym_delete] = ACTIONS(4200), - [anon_sym_throw] = ACTIONS(4200), - [anon_sym_namespace] = ACTIONS(4200), - [anon_sym_static_assert] = ACTIONS(4200), - [anon_sym_concept] = ACTIONS(4200), - [anon_sym_co_return] = ACTIONS(4200), - [anon_sym_co_yield] = ACTIONS(4200), - [anon_sym_R_DQUOTE] = ACTIONS(4202), - [anon_sym_LR_DQUOTE] = ACTIONS(4202), - [anon_sym_uR_DQUOTE] = ACTIONS(4202), - [anon_sym_UR_DQUOTE] = ACTIONS(4202), - [anon_sym_u8R_DQUOTE] = ACTIONS(4202), - [anon_sym_co_await] = ACTIONS(4200), - [anon_sym_new] = ACTIONS(4200), - [anon_sym_requires] = ACTIONS(4200), - [anon_sym_CARET_CARET] = ACTIONS(4202), - [anon_sym_LBRACK_COLON] = ACTIONS(4202), - [sym_this] = ACTIONS(4200), - }, - [STATE(878)] = { - [ts_builtin_sym_end] = ACTIONS(4206), - [sym_identifier] = ACTIONS(4204), - [aux_sym_preproc_include_token1] = ACTIONS(4204), - [aux_sym_preproc_def_token1] = ACTIONS(4204), - [aux_sym_preproc_if_token1] = ACTIONS(4204), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4204), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4204), - [sym_preproc_directive] = ACTIONS(4204), - [anon_sym_LPAREN2] = ACTIONS(4206), - [anon_sym_BANG] = ACTIONS(4206), - [anon_sym_TILDE] = ACTIONS(4206), - [anon_sym_DASH] = ACTIONS(4204), - [anon_sym_PLUS] = ACTIONS(4204), - [anon_sym_STAR] = ACTIONS(4206), - [anon_sym_AMP_AMP] = ACTIONS(4206), - [anon_sym_AMP] = ACTIONS(4204), - [anon_sym_SEMI] = ACTIONS(4206), - [anon_sym___extension__] = ACTIONS(4204), - [anon_sym_typedef] = ACTIONS(4204), - [anon_sym_virtual] = ACTIONS(4204), - [anon_sym_extern] = ACTIONS(4204), - [anon_sym___attribute__] = ACTIONS(4204), - [anon_sym___attribute] = ACTIONS(4204), - [anon_sym_using] = ACTIONS(4204), - [anon_sym_COLON_COLON] = ACTIONS(4206), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4206), - [anon_sym___declspec] = ACTIONS(4204), - [anon_sym___based] = ACTIONS(4204), - [anon_sym___cdecl] = ACTIONS(4204), - [anon_sym___clrcall] = ACTIONS(4204), - [anon_sym___stdcall] = ACTIONS(4204), - [anon_sym___fastcall] = ACTIONS(4204), - [anon_sym___thiscall] = ACTIONS(4204), - [anon_sym___vectorcall] = ACTIONS(4204), - [anon_sym_LBRACE] = ACTIONS(4206), - [anon_sym_signed] = ACTIONS(4204), - [anon_sym_unsigned] = ACTIONS(4204), - [anon_sym_long] = ACTIONS(4204), - [anon_sym_short] = ACTIONS(4204), - [anon_sym_LBRACK] = ACTIONS(4204), - [anon_sym_static] = ACTIONS(4204), - [anon_sym_register] = ACTIONS(4204), - [anon_sym_inline] = ACTIONS(4204), - [anon_sym___inline] = ACTIONS(4204), - [anon_sym___inline__] = ACTIONS(4204), - [anon_sym___forceinline] = ACTIONS(4204), - [anon_sym_thread_local] = ACTIONS(4204), - [anon_sym___thread] = ACTIONS(4204), - [anon_sym_const] = ACTIONS(4204), - [anon_sym_constexpr] = ACTIONS(4204), - [anon_sym_volatile] = ACTIONS(4204), - [anon_sym_restrict] = ACTIONS(4204), - [anon_sym___restrict__] = ACTIONS(4204), - [anon_sym__Atomic] = ACTIONS(4204), - [anon_sym__Noreturn] = ACTIONS(4204), - [anon_sym_noreturn] = ACTIONS(4204), - [anon_sym__Nonnull] = ACTIONS(4204), - [anon_sym_mutable] = ACTIONS(4204), - [anon_sym_constinit] = ACTIONS(4204), - [anon_sym_consteval] = ACTIONS(4204), - [anon_sym_alignas] = ACTIONS(4204), - [anon_sym__Alignas] = ACTIONS(4204), - [sym_primitive_type] = ACTIONS(4204), - [anon_sym_enum] = ACTIONS(4204), - [anon_sym_class] = ACTIONS(4204), - [anon_sym_struct] = ACTIONS(4204), - [anon_sym_union] = ACTIONS(4204), - [anon_sym_if] = ACTIONS(4204), - [anon_sym_switch] = ACTIONS(4204), - [anon_sym_case] = ACTIONS(4204), - [anon_sym_default] = ACTIONS(4204), - [anon_sym_while] = ACTIONS(4204), - [anon_sym_do] = ACTIONS(4204), - [anon_sym_for] = ACTIONS(4204), - [anon_sym_return] = ACTIONS(4204), - [anon_sym_break] = ACTIONS(4204), - [anon_sym_continue] = ACTIONS(4204), - [anon_sym_goto] = ACTIONS(4204), - [anon_sym_not] = ACTIONS(4204), - [anon_sym_compl] = ACTIONS(4204), - [anon_sym_DASH_DASH] = ACTIONS(4206), - [anon_sym_PLUS_PLUS] = ACTIONS(4206), - [anon_sym_sizeof] = ACTIONS(4204), - [anon_sym___alignof__] = ACTIONS(4204), - [anon_sym___alignof] = ACTIONS(4204), - [anon_sym__alignof] = ACTIONS(4204), - [anon_sym_alignof] = ACTIONS(4204), - [anon_sym__Alignof] = ACTIONS(4204), - [anon_sym_offsetof] = ACTIONS(4204), - [anon_sym__Generic] = ACTIONS(4204), - [anon_sym_typename] = ACTIONS(4204), - [anon_sym_asm] = ACTIONS(4204), - [anon_sym___asm__] = ACTIONS(4204), - [anon_sym___asm] = ACTIONS(4204), - [sym_number_literal] = ACTIONS(4206), - [anon_sym_L_SQUOTE] = ACTIONS(4206), - [anon_sym_u_SQUOTE] = ACTIONS(4206), - [anon_sym_U_SQUOTE] = ACTIONS(4206), - [anon_sym_u8_SQUOTE] = ACTIONS(4206), - [anon_sym_SQUOTE] = ACTIONS(4206), - [anon_sym_L_DQUOTE] = ACTIONS(4206), - [anon_sym_u_DQUOTE] = ACTIONS(4206), - [anon_sym_U_DQUOTE] = ACTIONS(4206), - [anon_sym_u8_DQUOTE] = ACTIONS(4206), - [anon_sym_DQUOTE] = ACTIONS(4206), - [sym_true] = ACTIONS(4204), - [sym_false] = ACTIONS(4204), - [anon_sym_NULL] = ACTIONS(4204), - [anon_sym_nullptr] = ACTIONS(4204), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4204), - [anon_sym_decltype] = ACTIONS(4204), - [anon_sym_explicit] = ACTIONS(4204), - [anon_sym_export] = ACTIONS(4204), - [anon_sym_module] = ACTIONS(4204), - [anon_sym_import] = ACTIONS(4204), - [anon_sym_template] = ACTIONS(4204), - [anon_sym_operator] = ACTIONS(4204), - [anon_sym_try] = ACTIONS(4204), - [anon_sym_delete] = ACTIONS(4204), - [anon_sym_throw] = ACTIONS(4204), - [anon_sym_namespace] = ACTIONS(4204), - [anon_sym_static_assert] = ACTIONS(4204), - [anon_sym_concept] = ACTIONS(4204), - [anon_sym_co_return] = ACTIONS(4204), - [anon_sym_co_yield] = ACTIONS(4204), - [anon_sym_R_DQUOTE] = ACTIONS(4206), - [anon_sym_LR_DQUOTE] = ACTIONS(4206), - [anon_sym_uR_DQUOTE] = ACTIONS(4206), - [anon_sym_UR_DQUOTE] = ACTIONS(4206), - [anon_sym_u8R_DQUOTE] = ACTIONS(4206), - [anon_sym_co_await] = ACTIONS(4204), - [anon_sym_new] = ACTIONS(4204), - [anon_sym_requires] = ACTIONS(4204), - [anon_sym_CARET_CARET] = ACTIONS(4206), - [anon_sym_LBRACK_COLON] = ACTIONS(4206), - [sym_this] = ACTIONS(4204), - }, - [STATE(879)] = { - [ts_builtin_sym_end] = ACTIONS(4540), - [sym_identifier] = ACTIONS(4538), - [aux_sym_preproc_include_token1] = ACTIONS(4538), - [aux_sym_preproc_def_token1] = ACTIONS(4538), - [aux_sym_preproc_if_token1] = ACTIONS(4538), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4538), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4538), - [sym_preproc_directive] = ACTIONS(4538), - [anon_sym_LPAREN2] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_TILDE] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_SEMI] = ACTIONS(4540), - [anon_sym___extension__] = ACTIONS(4538), - [anon_sym_typedef] = ACTIONS(4538), - [anon_sym_virtual] = ACTIONS(4538), - [anon_sym_extern] = ACTIONS(4538), - [anon_sym___attribute__] = ACTIONS(4538), - [anon_sym___attribute] = ACTIONS(4538), - [anon_sym_using] = ACTIONS(4538), - [anon_sym_COLON_COLON] = ACTIONS(4540), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4540), - [anon_sym___declspec] = ACTIONS(4538), - [anon_sym___based] = ACTIONS(4538), - [anon_sym___cdecl] = ACTIONS(4538), - [anon_sym___clrcall] = ACTIONS(4538), - [anon_sym___stdcall] = ACTIONS(4538), - [anon_sym___fastcall] = ACTIONS(4538), - [anon_sym___thiscall] = ACTIONS(4538), - [anon_sym___vectorcall] = ACTIONS(4538), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_signed] = ACTIONS(4538), - [anon_sym_unsigned] = ACTIONS(4538), - [anon_sym_long] = ACTIONS(4538), - [anon_sym_short] = ACTIONS(4538), - [anon_sym_LBRACK] = ACTIONS(4538), - [anon_sym_static] = ACTIONS(4538), - [anon_sym_register] = ACTIONS(4538), - [anon_sym_inline] = ACTIONS(4538), - [anon_sym___inline] = ACTIONS(4538), - [anon_sym___inline__] = ACTIONS(4538), - [anon_sym___forceinline] = ACTIONS(4538), - [anon_sym_thread_local] = ACTIONS(4538), - [anon_sym___thread] = ACTIONS(4538), - [anon_sym_const] = ACTIONS(4538), - [anon_sym_constexpr] = ACTIONS(4538), - [anon_sym_volatile] = ACTIONS(4538), - [anon_sym_restrict] = ACTIONS(4538), - [anon_sym___restrict__] = ACTIONS(4538), - [anon_sym__Atomic] = ACTIONS(4538), - [anon_sym__Noreturn] = ACTIONS(4538), - [anon_sym_noreturn] = ACTIONS(4538), - [anon_sym__Nonnull] = ACTIONS(4538), - [anon_sym_mutable] = ACTIONS(4538), - [anon_sym_constinit] = ACTIONS(4538), - [anon_sym_consteval] = ACTIONS(4538), - [anon_sym_alignas] = ACTIONS(4538), - [anon_sym__Alignas] = ACTIONS(4538), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_enum] = ACTIONS(4538), - [anon_sym_class] = ACTIONS(4538), - [anon_sym_struct] = ACTIONS(4538), - [anon_sym_union] = ACTIONS(4538), - [anon_sym_if] = ACTIONS(4538), - [anon_sym_switch] = ACTIONS(4538), - [anon_sym_case] = ACTIONS(4538), - [anon_sym_default] = ACTIONS(4538), - [anon_sym_while] = ACTIONS(4538), - [anon_sym_do] = ACTIONS(4538), - [anon_sym_for] = ACTIONS(4538), - [anon_sym_return] = ACTIONS(4538), - [anon_sym_break] = ACTIONS(4538), - [anon_sym_continue] = ACTIONS(4538), - [anon_sym_goto] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(4538), - [anon_sym_compl] = ACTIONS(4538), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_sizeof] = ACTIONS(4538), - [anon_sym___alignof__] = ACTIONS(4538), - [anon_sym___alignof] = ACTIONS(4538), - [anon_sym__alignof] = ACTIONS(4538), - [anon_sym_alignof] = ACTIONS(4538), - [anon_sym__Alignof] = ACTIONS(4538), - [anon_sym_offsetof] = ACTIONS(4538), - [anon_sym__Generic] = ACTIONS(4538), - [anon_sym_typename] = ACTIONS(4538), - [anon_sym_asm] = ACTIONS(4538), - [anon_sym___asm__] = ACTIONS(4538), - [anon_sym___asm] = ACTIONS(4538), - [sym_number_literal] = ACTIONS(4540), - [anon_sym_L_SQUOTE] = ACTIONS(4540), - [anon_sym_u_SQUOTE] = ACTIONS(4540), - [anon_sym_U_SQUOTE] = ACTIONS(4540), - [anon_sym_u8_SQUOTE] = ACTIONS(4540), - [anon_sym_SQUOTE] = ACTIONS(4540), - [anon_sym_L_DQUOTE] = ACTIONS(4540), - [anon_sym_u_DQUOTE] = ACTIONS(4540), - [anon_sym_U_DQUOTE] = ACTIONS(4540), - [anon_sym_u8_DQUOTE] = ACTIONS(4540), - [anon_sym_DQUOTE] = ACTIONS(4540), - [sym_true] = ACTIONS(4538), - [sym_false] = ACTIONS(4538), - [anon_sym_NULL] = ACTIONS(4538), - [anon_sym_nullptr] = ACTIONS(4538), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4538), - [anon_sym_decltype] = ACTIONS(4538), - [anon_sym_explicit] = ACTIONS(4538), - [anon_sym_export] = ACTIONS(4538), - [anon_sym_module] = ACTIONS(4538), - [anon_sym_import] = ACTIONS(4538), - [anon_sym_template] = ACTIONS(4538), - [anon_sym_operator] = ACTIONS(4538), - [anon_sym_try] = ACTIONS(4538), - [anon_sym_delete] = ACTIONS(4538), - [anon_sym_throw] = ACTIONS(4538), - [anon_sym_namespace] = ACTIONS(4538), - [anon_sym_static_assert] = ACTIONS(4538), - [anon_sym_concept] = ACTIONS(4538), - [anon_sym_co_return] = ACTIONS(4538), - [anon_sym_co_yield] = ACTIONS(4538), - [anon_sym_R_DQUOTE] = ACTIONS(4540), - [anon_sym_LR_DQUOTE] = ACTIONS(4540), - [anon_sym_uR_DQUOTE] = ACTIONS(4540), - [anon_sym_UR_DQUOTE] = ACTIONS(4540), - [anon_sym_u8R_DQUOTE] = ACTIONS(4540), - [anon_sym_co_await] = ACTIONS(4538), - [anon_sym_new] = ACTIONS(4538), - [anon_sym_requires] = ACTIONS(4538), - [anon_sym_CARET_CARET] = ACTIONS(4540), - [anon_sym_LBRACK_COLON] = ACTIONS(4540), - [sym_this] = ACTIONS(4538), - }, - [STATE(880)] = { - [ts_builtin_sym_end] = ACTIONS(4098), - [sym_identifier] = ACTIONS(4096), - [aux_sym_preproc_include_token1] = ACTIONS(4096), - [aux_sym_preproc_def_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), - [sym_preproc_directive] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(4098), - [anon_sym_BANG] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_DASH] = ACTIONS(4096), - [anon_sym_PLUS] = ACTIONS(4096), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym___extension__] = ACTIONS(4096), - [anon_sym_typedef] = ACTIONS(4096), - [anon_sym_virtual] = ACTIONS(4096), - [anon_sym_extern] = ACTIONS(4096), - [anon_sym___attribute__] = ACTIONS(4096), - [anon_sym___attribute] = ACTIONS(4096), - [anon_sym_using] = ACTIONS(4096), - [anon_sym_COLON_COLON] = ACTIONS(4098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), - [anon_sym___declspec] = ACTIONS(4096), - [anon_sym___based] = ACTIONS(4096), - [anon_sym___cdecl] = ACTIONS(4096), - [anon_sym___clrcall] = ACTIONS(4096), - [anon_sym___stdcall] = ACTIONS(4096), - [anon_sym___fastcall] = ACTIONS(4096), - [anon_sym___thiscall] = ACTIONS(4096), - [anon_sym___vectorcall] = ACTIONS(4096), - [anon_sym_LBRACE] = ACTIONS(4098), - [anon_sym_signed] = ACTIONS(4096), - [anon_sym_unsigned] = ACTIONS(4096), - [anon_sym_long] = ACTIONS(4096), - [anon_sym_short] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_static] = ACTIONS(4096), - [anon_sym_register] = ACTIONS(4096), - [anon_sym_inline] = ACTIONS(4096), - [anon_sym___inline] = ACTIONS(4096), - [anon_sym___inline__] = ACTIONS(4096), - [anon_sym___forceinline] = ACTIONS(4096), - [anon_sym_thread_local] = ACTIONS(4096), - [anon_sym___thread] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_constexpr] = ACTIONS(4096), - [anon_sym_volatile] = ACTIONS(4096), - [anon_sym_restrict] = ACTIONS(4096), - [anon_sym___restrict__] = ACTIONS(4096), - [anon_sym__Atomic] = ACTIONS(4096), - [anon_sym__Noreturn] = ACTIONS(4096), - [anon_sym_noreturn] = ACTIONS(4096), - [anon_sym__Nonnull] = ACTIONS(4096), - [anon_sym_mutable] = ACTIONS(4096), - [anon_sym_constinit] = ACTIONS(4096), - [anon_sym_consteval] = ACTIONS(4096), - [anon_sym_alignas] = ACTIONS(4096), - [anon_sym__Alignas] = ACTIONS(4096), - [sym_primitive_type] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_class] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_if] = ACTIONS(4096), - [anon_sym_switch] = ACTIONS(4096), - [anon_sym_case] = ACTIONS(4096), - [anon_sym_default] = ACTIONS(4096), - [anon_sym_while] = ACTIONS(4096), - [anon_sym_do] = ACTIONS(4096), - [anon_sym_for] = ACTIONS(4096), - [anon_sym_return] = ACTIONS(4096), - [anon_sym_break] = ACTIONS(4096), - [anon_sym_continue] = ACTIONS(4096), - [anon_sym_goto] = ACTIONS(4096), - [anon_sym_not] = ACTIONS(4096), - [anon_sym_compl] = ACTIONS(4096), - [anon_sym_DASH_DASH] = ACTIONS(4098), - [anon_sym_PLUS_PLUS] = ACTIONS(4098), - [anon_sym_sizeof] = ACTIONS(4096), - [anon_sym___alignof__] = ACTIONS(4096), - [anon_sym___alignof] = ACTIONS(4096), - [anon_sym__alignof] = ACTIONS(4096), - [anon_sym_alignof] = ACTIONS(4096), - [anon_sym__Alignof] = ACTIONS(4096), - [anon_sym_offsetof] = ACTIONS(4096), - [anon_sym__Generic] = ACTIONS(4096), - [anon_sym_typename] = ACTIONS(4096), - [anon_sym_asm] = ACTIONS(4096), - [anon_sym___asm__] = ACTIONS(4096), - [anon_sym___asm] = ACTIONS(4096), - [sym_number_literal] = ACTIONS(4098), - [anon_sym_L_SQUOTE] = ACTIONS(4098), - [anon_sym_u_SQUOTE] = ACTIONS(4098), - [anon_sym_U_SQUOTE] = ACTIONS(4098), - [anon_sym_u8_SQUOTE] = ACTIONS(4098), - [anon_sym_SQUOTE] = ACTIONS(4098), - [anon_sym_L_DQUOTE] = ACTIONS(4098), - [anon_sym_u_DQUOTE] = ACTIONS(4098), - [anon_sym_U_DQUOTE] = ACTIONS(4098), - [anon_sym_u8_DQUOTE] = ACTIONS(4098), - [anon_sym_DQUOTE] = ACTIONS(4098), - [sym_true] = ACTIONS(4096), - [sym_false] = ACTIONS(4096), - [anon_sym_NULL] = ACTIONS(4096), - [anon_sym_nullptr] = ACTIONS(4096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_export] = ACTIONS(4096), - [anon_sym_module] = ACTIONS(4096), - [anon_sym_import] = ACTIONS(4096), - [anon_sym_template] = ACTIONS(4096), - [anon_sym_operator] = ACTIONS(4096), - [anon_sym_try] = ACTIONS(4096), - [anon_sym_delete] = ACTIONS(4096), - [anon_sym_throw] = ACTIONS(4096), - [anon_sym_namespace] = ACTIONS(4096), - [anon_sym_static_assert] = ACTIONS(4096), - [anon_sym_concept] = ACTIONS(4096), - [anon_sym_co_return] = ACTIONS(4096), - [anon_sym_co_yield] = ACTIONS(4096), - [anon_sym_R_DQUOTE] = ACTIONS(4098), - [anon_sym_LR_DQUOTE] = ACTIONS(4098), - [anon_sym_uR_DQUOTE] = ACTIONS(4098), - [anon_sym_UR_DQUOTE] = ACTIONS(4098), - [anon_sym_u8R_DQUOTE] = ACTIONS(4098), - [anon_sym_co_await] = ACTIONS(4096), - [anon_sym_new] = ACTIONS(4096), - [anon_sym_requires] = ACTIONS(4096), - [anon_sym_CARET_CARET] = ACTIONS(4098), - [anon_sym_LBRACK_COLON] = ACTIONS(4098), - [sym_this] = ACTIONS(4096), - }, - [STATE(881)] = { - [ts_builtin_sym_end] = ACTIONS(3956), - [sym_identifier] = ACTIONS(3954), - [aux_sym_preproc_include_token1] = ACTIONS(3954), - [aux_sym_preproc_def_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), - [sym_preproc_directive] = ACTIONS(3954), - [anon_sym_LPAREN2] = ACTIONS(3956), - [anon_sym_BANG] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_DASH] = ACTIONS(3954), - [anon_sym_PLUS] = ACTIONS(3954), - [anon_sym_STAR] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym___extension__] = ACTIONS(3954), - [anon_sym_typedef] = ACTIONS(3954), - [anon_sym_virtual] = ACTIONS(3954), - [anon_sym_extern] = ACTIONS(3954), - [anon_sym___attribute__] = ACTIONS(3954), - [anon_sym___attribute] = ACTIONS(3954), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_COLON_COLON] = ACTIONS(3956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), - [anon_sym___declspec] = ACTIONS(3954), - [anon_sym___based] = ACTIONS(3954), - [anon_sym___cdecl] = ACTIONS(3954), - [anon_sym___clrcall] = ACTIONS(3954), - [anon_sym___stdcall] = ACTIONS(3954), - [anon_sym___fastcall] = ACTIONS(3954), - [anon_sym___thiscall] = ACTIONS(3954), - [anon_sym___vectorcall] = ACTIONS(3954), - [anon_sym_LBRACE] = ACTIONS(3956), - [anon_sym_signed] = ACTIONS(3954), - [anon_sym_unsigned] = ACTIONS(3954), - [anon_sym_long] = ACTIONS(3954), - [anon_sym_short] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3954), - [anon_sym_register] = ACTIONS(3954), - [anon_sym_inline] = ACTIONS(3954), - [anon_sym___inline] = ACTIONS(3954), - [anon_sym___inline__] = ACTIONS(3954), - [anon_sym___forceinline] = ACTIONS(3954), - [anon_sym_thread_local] = ACTIONS(3954), - [anon_sym___thread] = ACTIONS(3954), - [anon_sym_const] = ACTIONS(3954), - [anon_sym_constexpr] = ACTIONS(3954), - [anon_sym_volatile] = ACTIONS(3954), - [anon_sym_restrict] = ACTIONS(3954), - [anon_sym___restrict__] = ACTIONS(3954), - [anon_sym__Atomic] = ACTIONS(3954), - [anon_sym__Noreturn] = ACTIONS(3954), - [anon_sym_noreturn] = ACTIONS(3954), - [anon_sym__Nonnull] = ACTIONS(3954), - [anon_sym_mutable] = ACTIONS(3954), - [anon_sym_constinit] = ACTIONS(3954), - [anon_sym_consteval] = ACTIONS(3954), - [anon_sym_alignas] = ACTIONS(3954), - [anon_sym__Alignas] = ACTIONS(3954), - [sym_primitive_type] = ACTIONS(3954), - [anon_sym_enum] = ACTIONS(3954), - [anon_sym_class] = ACTIONS(3954), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3954), - [anon_sym_if] = ACTIONS(3954), - [anon_sym_switch] = ACTIONS(3954), - [anon_sym_case] = ACTIONS(3954), - [anon_sym_default] = ACTIONS(3954), - [anon_sym_while] = ACTIONS(3954), - [anon_sym_do] = ACTIONS(3954), - [anon_sym_for] = ACTIONS(3954), - [anon_sym_return] = ACTIONS(3954), - [anon_sym_break] = ACTIONS(3954), - [anon_sym_continue] = ACTIONS(3954), - [anon_sym_goto] = ACTIONS(3954), - [anon_sym_not] = ACTIONS(3954), - [anon_sym_compl] = ACTIONS(3954), - [anon_sym_DASH_DASH] = ACTIONS(3956), - [anon_sym_PLUS_PLUS] = ACTIONS(3956), - [anon_sym_sizeof] = ACTIONS(3954), - [anon_sym___alignof__] = ACTIONS(3954), - [anon_sym___alignof] = ACTIONS(3954), - [anon_sym__alignof] = ACTIONS(3954), - [anon_sym_alignof] = ACTIONS(3954), - [anon_sym__Alignof] = ACTIONS(3954), - [anon_sym_offsetof] = ACTIONS(3954), - [anon_sym__Generic] = ACTIONS(3954), - [anon_sym_typename] = ACTIONS(3954), - [anon_sym_asm] = ACTIONS(3954), - [anon_sym___asm__] = ACTIONS(3954), - [anon_sym___asm] = ACTIONS(3954), - [sym_number_literal] = ACTIONS(3956), - [anon_sym_L_SQUOTE] = ACTIONS(3956), - [anon_sym_u_SQUOTE] = ACTIONS(3956), - [anon_sym_U_SQUOTE] = ACTIONS(3956), - [anon_sym_u8_SQUOTE] = ACTIONS(3956), - [anon_sym_SQUOTE] = ACTIONS(3956), - [anon_sym_L_DQUOTE] = ACTIONS(3956), - [anon_sym_u_DQUOTE] = ACTIONS(3956), - [anon_sym_U_DQUOTE] = ACTIONS(3956), - [anon_sym_u8_DQUOTE] = ACTIONS(3956), - [anon_sym_DQUOTE] = ACTIONS(3956), - [sym_true] = ACTIONS(3954), - [sym_false] = ACTIONS(3954), - [anon_sym_NULL] = ACTIONS(3954), - [anon_sym_nullptr] = ACTIONS(3954), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3954), - [anon_sym_decltype] = ACTIONS(3954), - [anon_sym_explicit] = ACTIONS(3954), - [anon_sym_export] = ACTIONS(3954), - [anon_sym_module] = ACTIONS(3954), - [anon_sym_import] = ACTIONS(3954), - [anon_sym_template] = ACTIONS(3954), - [anon_sym_operator] = ACTIONS(3954), - [anon_sym_try] = ACTIONS(3954), - [anon_sym_delete] = ACTIONS(3954), - [anon_sym_throw] = ACTIONS(3954), - [anon_sym_namespace] = ACTIONS(3954), - [anon_sym_static_assert] = ACTIONS(3954), - [anon_sym_concept] = ACTIONS(3954), - [anon_sym_co_return] = ACTIONS(3954), - [anon_sym_co_yield] = ACTIONS(3954), - [anon_sym_R_DQUOTE] = ACTIONS(3956), - [anon_sym_LR_DQUOTE] = ACTIONS(3956), - [anon_sym_uR_DQUOTE] = ACTIONS(3956), - [anon_sym_UR_DQUOTE] = ACTIONS(3956), - [anon_sym_u8R_DQUOTE] = ACTIONS(3956), - [anon_sym_co_await] = ACTIONS(3954), - [anon_sym_new] = ACTIONS(3954), - [anon_sym_requires] = ACTIONS(3954), - [anon_sym_CARET_CARET] = ACTIONS(3956), - [anon_sym_LBRACK_COLON] = ACTIONS(3956), - [sym_this] = ACTIONS(3954), - }, - [STATE(882)] = { - [ts_builtin_sym_end] = ACTIONS(3960), - [sym_identifier] = ACTIONS(3958), - [aux_sym_preproc_include_token1] = ACTIONS(3958), - [aux_sym_preproc_def_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), - [sym_preproc_directive] = ACTIONS(3958), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_BANG] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_DASH] = ACTIONS(3958), - [anon_sym_PLUS] = ACTIONS(3958), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_typedef] = ACTIONS(3958), - [anon_sym_virtual] = ACTIONS(3958), - [anon_sym_extern] = ACTIONS(3958), - [anon_sym___attribute__] = ACTIONS(3958), - [anon_sym___attribute] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), - [anon_sym___declspec] = ACTIONS(3958), - [anon_sym___based] = ACTIONS(3958), - [anon_sym___cdecl] = ACTIONS(3958), - [anon_sym___clrcall] = ACTIONS(3958), - [anon_sym___stdcall] = ACTIONS(3958), - [anon_sym___fastcall] = ACTIONS(3958), - [anon_sym___thiscall] = ACTIONS(3958), - [anon_sym___vectorcall] = ACTIONS(3958), - [anon_sym_LBRACE] = ACTIONS(3960), - [anon_sym_signed] = ACTIONS(3958), - [anon_sym_unsigned] = ACTIONS(3958), - [anon_sym_long] = ACTIONS(3958), - [anon_sym_short] = ACTIONS(3958), - [anon_sym_LBRACK] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3958), - [anon_sym_register] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym___inline] = ACTIONS(3958), - [anon_sym___inline__] = ACTIONS(3958), - [anon_sym___forceinline] = ACTIONS(3958), - [anon_sym_thread_local] = ACTIONS(3958), - [anon_sym___thread] = ACTIONS(3958), - [anon_sym_const] = ACTIONS(3958), - [anon_sym_constexpr] = ACTIONS(3958), - [anon_sym_volatile] = ACTIONS(3958), - [anon_sym_restrict] = ACTIONS(3958), - [anon_sym___restrict__] = ACTIONS(3958), - [anon_sym__Atomic] = ACTIONS(3958), - [anon_sym__Noreturn] = ACTIONS(3958), - [anon_sym_noreturn] = ACTIONS(3958), - [anon_sym__Nonnull] = ACTIONS(3958), - [anon_sym_mutable] = ACTIONS(3958), - [anon_sym_constinit] = ACTIONS(3958), - [anon_sym_consteval] = ACTIONS(3958), - [anon_sym_alignas] = ACTIONS(3958), - [anon_sym__Alignas] = ACTIONS(3958), - [sym_primitive_type] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_union] = ACTIONS(3958), - [anon_sym_if] = ACTIONS(3958), - [anon_sym_switch] = ACTIONS(3958), - [anon_sym_case] = ACTIONS(3958), - [anon_sym_default] = ACTIONS(3958), - [anon_sym_while] = ACTIONS(3958), - [anon_sym_do] = ACTIONS(3958), - [anon_sym_for] = ACTIONS(3958), - [anon_sym_return] = ACTIONS(3958), - [anon_sym_break] = ACTIONS(3958), - [anon_sym_continue] = ACTIONS(3958), - [anon_sym_goto] = ACTIONS(3958), - [anon_sym_not] = ACTIONS(3958), - [anon_sym_compl] = ACTIONS(3958), - [anon_sym_DASH_DASH] = ACTIONS(3960), - [anon_sym_PLUS_PLUS] = ACTIONS(3960), - [anon_sym_sizeof] = ACTIONS(3958), - [anon_sym___alignof__] = ACTIONS(3958), - [anon_sym___alignof] = ACTIONS(3958), - [anon_sym__alignof] = ACTIONS(3958), - [anon_sym_alignof] = ACTIONS(3958), - [anon_sym__Alignof] = ACTIONS(3958), - [anon_sym_offsetof] = ACTIONS(3958), - [anon_sym__Generic] = ACTIONS(3958), - [anon_sym_typename] = ACTIONS(3958), - [anon_sym_asm] = ACTIONS(3958), - [anon_sym___asm__] = ACTIONS(3958), - [anon_sym___asm] = ACTIONS(3958), - [sym_number_literal] = ACTIONS(3960), - [anon_sym_L_SQUOTE] = ACTIONS(3960), - [anon_sym_u_SQUOTE] = ACTIONS(3960), - [anon_sym_U_SQUOTE] = ACTIONS(3960), - [anon_sym_u8_SQUOTE] = ACTIONS(3960), - [anon_sym_SQUOTE] = ACTIONS(3960), - [anon_sym_L_DQUOTE] = ACTIONS(3960), - [anon_sym_u_DQUOTE] = ACTIONS(3960), - [anon_sym_U_DQUOTE] = ACTIONS(3960), - [anon_sym_u8_DQUOTE] = ACTIONS(3960), - [anon_sym_DQUOTE] = ACTIONS(3960), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [anon_sym_NULL] = ACTIONS(3958), - [anon_sym_nullptr] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3958), - [anon_sym_decltype] = ACTIONS(3958), - [anon_sym_explicit] = ACTIONS(3958), - [anon_sym_export] = ACTIONS(3958), - [anon_sym_module] = ACTIONS(3958), - [anon_sym_import] = ACTIONS(3958), - [anon_sym_template] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_try] = ACTIONS(3958), - [anon_sym_delete] = ACTIONS(3958), - [anon_sym_throw] = ACTIONS(3958), - [anon_sym_namespace] = ACTIONS(3958), - [anon_sym_static_assert] = ACTIONS(3958), - [anon_sym_concept] = ACTIONS(3958), - [anon_sym_co_return] = ACTIONS(3958), - [anon_sym_co_yield] = ACTIONS(3958), - [anon_sym_R_DQUOTE] = ACTIONS(3960), - [anon_sym_LR_DQUOTE] = ACTIONS(3960), - [anon_sym_uR_DQUOTE] = ACTIONS(3960), - [anon_sym_UR_DQUOTE] = ACTIONS(3960), - [anon_sym_u8R_DQUOTE] = ACTIONS(3960), - [anon_sym_co_await] = ACTIONS(3958), - [anon_sym_new] = ACTIONS(3958), - [anon_sym_requires] = ACTIONS(3958), - [anon_sym_CARET_CARET] = ACTIONS(3960), - [anon_sym_LBRACK_COLON] = ACTIONS(3960), - [sym_this] = ACTIONS(3958), - }, - [STATE(883)] = { - [ts_builtin_sym_end] = ACTIONS(4102), - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_include_token1] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_BANG] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_DASH] = ACTIONS(4100), - [anon_sym_PLUS] = ACTIONS(4100), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym___cdecl] = ACTIONS(4100), - [anon_sym___clrcall] = ACTIONS(4100), - [anon_sym___stdcall] = ACTIONS(4100), - [anon_sym___fastcall] = ACTIONS(4100), - [anon_sym___thiscall] = ACTIONS(4100), - [anon_sym___vectorcall] = ACTIONS(4100), - [anon_sym_LBRACE] = ACTIONS(4102), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_if] = ACTIONS(4100), - [anon_sym_switch] = ACTIONS(4100), - [anon_sym_case] = ACTIONS(4100), - [anon_sym_default] = ACTIONS(4100), - [anon_sym_while] = ACTIONS(4100), - [anon_sym_do] = ACTIONS(4100), - [anon_sym_for] = ACTIONS(4100), - [anon_sym_return] = ACTIONS(4100), - [anon_sym_break] = ACTIONS(4100), - [anon_sym_continue] = ACTIONS(4100), - [anon_sym_goto] = ACTIONS(4100), - [anon_sym_not] = ACTIONS(4100), - [anon_sym_compl] = ACTIONS(4100), - [anon_sym_DASH_DASH] = ACTIONS(4102), - [anon_sym_PLUS_PLUS] = ACTIONS(4102), - [anon_sym_sizeof] = ACTIONS(4100), - [anon_sym___alignof__] = ACTIONS(4100), - [anon_sym___alignof] = ACTIONS(4100), - [anon_sym__alignof] = ACTIONS(4100), - [anon_sym_alignof] = ACTIONS(4100), - [anon_sym__Alignof] = ACTIONS(4100), - [anon_sym_offsetof] = ACTIONS(4100), - [anon_sym__Generic] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), - [anon_sym_asm] = ACTIONS(4100), - [anon_sym___asm__] = ACTIONS(4100), - [anon_sym___asm] = ACTIONS(4100), - [sym_number_literal] = ACTIONS(4102), - [anon_sym_L_SQUOTE] = ACTIONS(4102), - [anon_sym_u_SQUOTE] = ACTIONS(4102), - [anon_sym_U_SQUOTE] = ACTIONS(4102), - [anon_sym_u8_SQUOTE] = ACTIONS(4102), - [anon_sym_SQUOTE] = ACTIONS(4102), - [anon_sym_L_DQUOTE] = ACTIONS(4102), - [anon_sym_u_DQUOTE] = ACTIONS(4102), - [anon_sym_U_DQUOTE] = ACTIONS(4102), - [anon_sym_u8_DQUOTE] = ACTIONS(4102), - [anon_sym_DQUOTE] = ACTIONS(4102), - [sym_true] = ACTIONS(4100), - [sym_false] = ACTIONS(4100), - [anon_sym_NULL] = ACTIONS(4100), - [anon_sym_nullptr] = ACTIONS(4100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_export] = ACTIONS(4100), - [anon_sym_module] = ACTIONS(4100), - [anon_sym_import] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_try] = ACTIONS(4100), - [anon_sym_delete] = ACTIONS(4100), - [anon_sym_throw] = ACTIONS(4100), - [anon_sym_namespace] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_concept] = ACTIONS(4100), - [anon_sym_co_return] = ACTIONS(4100), - [anon_sym_co_yield] = ACTIONS(4100), - [anon_sym_R_DQUOTE] = ACTIONS(4102), - [anon_sym_LR_DQUOTE] = ACTIONS(4102), - [anon_sym_uR_DQUOTE] = ACTIONS(4102), - [anon_sym_UR_DQUOTE] = ACTIONS(4102), - [anon_sym_u8R_DQUOTE] = ACTIONS(4102), - [anon_sym_co_await] = ACTIONS(4100), - [anon_sym_new] = ACTIONS(4100), - [anon_sym_requires] = ACTIONS(4100), - [anon_sym_CARET_CARET] = ACTIONS(4102), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), - [sym_this] = ACTIONS(4100), - }, - [STATE(884)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(4542), - [aux_sym_preproc_def_token1] = ACTIONS(4718), - [aux_sym_preproc_if_token1] = ACTIONS(4721), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4724), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4724), - [sym_preproc_directive] = ACTIONS(4727), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_TILDE] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4730), - [anon_sym___extension__] = ACTIONS(4733), - [anon_sym_typedef] = ACTIONS(4736), - [anon_sym_virtual] = ACTIONS(4583), - [anon_sym_extern] = ACTIONS(4586), - [anon_sym___attribute__] = ACTIONS(4589), - [anon_sym___attribute] = ACTIONS(4589), - [anon_sym_using] = ACTIONS(4739), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4598), - [anon_sym___declspec] = ACTIONS(4601), - [anon_sym___based] = ACTIONS(4604), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_signed] = ACTIONS(4607), - [anon_sym_unsigned] = ACTIONS(4607), - [anon_sym_long] = ACTIONS(4607), - [anon_sym_short] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4610), - [anon_sym_static] = ACTIONS(4586), - [anon_sym_register] = ACTIONS(4586), - [anon_sym_inline] = ACTIONS(4586), - [anon_sym___inline] = ACTIONS(4586), - [anon_sym___inline__] = ACTIONS(4586), - [anon_sym___forceinline] = ACTIONS(4586), - [anon_sym_thread_local] = ACTIONS(4586), - [anon_sym___thread] = ACTIONS(4586), - [anon_sym_const] = ACTIONS(4613), - [anon_sym_constexpr] = ACTIONS(4744), - [anon_sym_volatile] = ACTIONS(4613), - [anon_sym_restrict] = ACTIONS(4613), - [anon_sym___restrict__] = ACTIONS(4613), - [anon_sym__Atomic] = ACTIONS(4613), - [anon_sym__Noreturn] = ACTIONS(4613), - [anon_sym_noreturn] = ACTIONS(4613), - [anon_sym__Nonnull] = ACTIONS(4613), - [anon_sym_mutable] = ACTIONS(4613), - [anon_sym_constinit] = ACTIONS(4613), - [anon_sym_consteval] = ACTIONS(4747), - [anon_sym_alignas] = ACTIONS(4622), - [anon_sym__Alignas] = ACTIONS(4622), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4628), - [anon_sym_class] = ACTIONS(4631), - [anon_sym_struct] = ACTIONS(4634), - [anon_sym_union] = ACTIONS(4637), - [anon_sym_typename] = ACTIONS(4640), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4643), - [anon_sym_decltype] = ACTIONS(4646), - [anon_sym_explicit] = ACTIONS(4649), - [anon_sym_private] = ACTIONS(4652), - [anon_sym_template] = ACTIONS(4750), - [anon_sym_operator] = ACTIONS(4658), - [anon_sym_friend] = ACTIONS(4753), - [anon_sym_public] = ACTIONS(4652), - [anon_sym_protected] = ACTIONS(4652), - [anon_sym_static_assert] = ACTIONS(4756), - [anon_sym_LBRACK_COLON] = ACTIONS(4667), - }, - [STATE(885)] = { - [ts_builtin_sym_end] = ACTIONS(4536), - [sym_identifier] = ACTIONS(4534), - [aux_sym_preproc_include_token1] = ACTIONS(4534), - [aux_sym_preproc_def_token1] = ACTIONS(4534), - [aux_sym_preproc_if_token1] = ACTIONS(4534), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4534), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4534), - [sym_preproc_directive] = ACTIONS(4534), - [anon_sym_LPAREN2] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4536), - [anon_sym_TILDE] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym___extension__] = ACTIONS(4534), - [anon_sym_typedef] = ACTIONS(4534), - [anon_sym_virtual] = ACTIONS(4534), - [anon_sym_extern] = ACTIONS(4534), - [anon_sym___attribute__] = ACTIONS(4534), - [anon_sym___attribute] = ACTIONS(4534), - [anon_sym_using] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4536), - [anon_sym___declspec] = ACTIONS(4534), - [anon_sym___based] = ACTIONS(4534), - [anon_sym___cdecl] = ACTIONS(4534), - [anon_sym___clrcall] = ACTIONS(4534), - [anon_sym___stdcall] = ACTIONS(4534), - [anon_sym___fastcall] = ACTIONS(4534), - [anon_sym___thiscall] = ACTIONS(4534), - [anon_sym___vectorcall] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_signed] = ACTIONS(4534), - [anon_sym_unsigned] = ACTIONS(4534), - [anon_sym_long] = ACTIONS(4534), - [anon_sym_short] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(4534), - [anon_sym_static] = ACTIONS(4534), - [anon_sym_register] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym___inline] = ACTIONS(4534), - [anon_sym___inline__] = ACTIONS(4534), - [anon_sym___forceinline] = ACTIONS(4534), - [anon_sym_thread_local] = ACTIONS(4534), - [anon_sym___thread] = ACTIONS(4534), - [anon_sym_const] = ACTIONS(4534), - [anon_sym_constexpr] = ACTIONS(4534), - [anon_sym_volatile] = ACTIONS(4534), - [anon_sym_restrict] = ACTIONS(4534), - [anon_sym___restrict__] = ACTIONS(4534), - [anon_sym__Atomic] = ACTIONS(4534), - [anon_sym__Noreturn] = ACTIONS(4534), - [anon_sym_noreturn] = ACTIONS(4534), - [anon_sym__Nonnull] = ACTIONS(4534), - [anon_sym_mutable] = ACTIONS(4534), - [anon_sym_constinit] = ACTIONS(4534), - [anon_sym_consteval] = ACTIONS(4534), - [anon_sym_alignas] = ACTIONS(4534), - [anon_sym__Alignas] = ACTIONS(4534), - [sym_primitive_type] = ACTIONS(4534), - [anon_sym_enum] = ACTIONS(4534), - [anon_sym_class] = ACTIONS(4534), - [anon_sym_struct] = ACTIONS(4534), - [anon_sym_union] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_switch] = ACTIONS(4534), - [anon_sym_case] = ACTIONS(4534), - [anon_sym_default] = ACTIONS(4534), - [anon_sym_while] = ACTIONS(4534), - [anon_sym_do] = ACTIONS(4534), - [anon_sym_for] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_goto] = ACTIONS(4534), - [anon_sym_not] = ACTIONS(4534), - [anon_sym_compl] = ACTIONS(4534), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_sizeof] = ACTIONS(4534), - [anon_sym___alignof__] = ACTIONS(4534), - [anon_sym___alignof] = ACTIONS(4534), - [anon_sym__alignof] = ACTIONS(4534), - [anon_sym_alignof] = ACTIONS(4534), - [anon_sym__Alignof] = ACTIONS(4534), - [anon_sym_offsetof] = ACTIONS(4534), - [anon_sym__Generic] = ACTIONS(4534), - [anon_sym_typename] = ACTIONS(4534), - [anon_sym_asm] = ACTIONS(4534), - [anon_sym___asm__] = ACTIONS(4534), - [anon_sym___asm] = ACTIONS(4534), - [sym_number_literal] = ACTIONS(4536), - [anon_sym_L_SQUOTE] = ACTIONS(4536), - [anon_sym_u_SQUOTE] = ACTIONS(4536), - [anon_sym_U_SQUOTE] = ACTIONS(4536), - [anon_sym_u8_SQUOTE] = ACTIONS(4536), - [anon_sym_SQUOTE] = ACTIONS(4536), - [anon_sym_L_DQUOTE] = ACTIONS(4536), - [anon_sym_u_DQUOTE] = ACTIONS(4536), - [anon_sym_U_DQUOTE] = ACTIONS(4536), - [anon_sym_u8_DQUOTE] = ACTIONS(4536), - [anon_sym_DQUOTE] = ACTIONS(4536), - [sym_true] = ACTIONS(4534), - [sym_false] = ACTIONS(4534), - [anon_sym_NULL] = ACTIONS(4534), - [anon_sym_nullptr] = ACTIONS(4534), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4534), - [anon_sym_decltype] = ACTIONS(4534), - [anon_sym_explicit] = ACTIONS(4534), - [anon_sym_export] = ACTIONS(4534), - [anon_sym_module] = ACTIONS(4534), - [anon_sym_import] = ACTIONS(4534), - [anon_sym_template] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_delete] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_namespace] = ACTIONS(4534), - [anon_sym_static_assert] = ACTIONS(4534), - [anon_sym_concept] = ACTIONS(4534), - [anon_sym_co_return] = ACTIONS(4534), - [anon_sym_co_yield] = ACTIONS(4534), - [anon_sym_R_DQUOTE] = ACTIONS(4536), - [anon_sym_LR_DQUOTE] = ACTIONS(4536), - [anon_sym_uR_DQUOTE] = ACTIONS(4536), - [anon_sym_UR_DQUOTE] = ACTIONS(4536), - [anon_sym_u8R_DQUOTE] = ACTIONS(4536), - [anon_sym_co_await] = ACTIONS(4534), - [anon_sym_new] = ACTIONS(4534), - [anon_sym_requires] = ACTIONS(4534), - [anon_sym_CARET_CARET] = ACTIONS(4536), - [anon_sym_LBRACK_COLON] = ACTIONS(4536), - [sym_this] = ACTIONS(4534), - }, - [STATE(886)] = { - [sym_preproc_def] = STATE(895), - [sym_preproc_function_def] = STATE(895), - [sym_preproc_call] = STATE(895), - [sym_preproc_if_in_field_declaration_list] = STATE(895), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(895), - [sym_type_definition] = STATE(895), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(895), - [sym_field_declaration] = STATE(895), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(895), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(895), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(895), - [sym_operator_cast_declaration] = STATE(895), - [sym_constructor_or_destructor_definition] = STATE(895), - [sym_constructor_or_destructor_declaration] = STATE(895), - [sym_friend_declaration] = STATE(895), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(895), - [sym_alias_declaration] = STATE(895), - [sym_static_assert_declaration] = STATE(895), - [sym_consteval_block_declaration] = STATE(895), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(895), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4759), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4761), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), - [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(4704), - [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(4706), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(887)] = { - [ts_builtin_sym_end] = ACTIONS(4118), - [sym_identifier] = ACTIONS(4116), - [aux_sym_preproc_include_token1] = ACTIONS(4116), - [aux_sym_preproc_def_token1] = ACTIONS(4116), - [aux_sym_preproc_if_token1] = ACTIONS(4116), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4116), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4116), - [sym_preproc_directive] = ACTIONS(4116), - [anon_sym_LPAREN2] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4118), - [anon_sym_TILDE] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4116), - [anon_sym_PLUS] = ACTIONS(4116), - [anon_sym_STAR] = ACTIONS(4118), - [anon_sym_AMP_AMP] = ACTIONS(4118), - [anon_sym_AMP] = ACTIONS(4116), - [anon_sym_SEMI] = ACTIONS(4118), - [anon_sym___extension__] = ACTIONS(4116), - [anon_sym_typedef] = ACTIONS(4116), - [anon_sym_virtual] = ACTIONS(4116), - [anon_sym_extern] = ACTIONS(4116), - [anon_sym___attribute__] = ACTIONS(4116), - [anon_sym___attribute] = ACTIONS(4116), - [anon_sym_using] = ACTIONS(4116), - [anon_sym_COLON_COLON] = ACTIONS(4118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4118), - [anon_sym___declspec] = ACTIONS(4116), - [anon_sym___based] = ACTIONS(4116), - [anon_sym___cdecl] = ACTIONS(4116), - [anon_sym___clrcall] = ACTIONS(4116), - [anon_sym___stdcall] = ACTIONS(4116), - [anon_sym___fastcall] = ACTIONS(4116), - [anon_sym___thiscall] = ACTIONS(4116), - [anon_sym___vectorcall] = ACTIONS(4116), - [anon_sym_LBRACE] = ACTIONS(4118), - [anon_sym_signed] = ACTIONS(4116), - [anon_sym_unsigned] = ACTIONS(4116), - [anon_sym_long] = ACTIONS(4116), - [anon_sym_short] = ACTIONS(4116), - [anon_sym_LBRACK] = ACTIONS(4116), - [anon_sym_static] = ACTIONS(4116), - [anon_sym_register] = ACTIONS(4116), - [anon_sym_inline] = ACTIONS(4116), - [anon_sym___inline] = ACTIONS(4116), - [anon_sym___inline__] = ACTIONS(4116), - [anon_sym___forceinline] = ACTIONS(4116), - [anon_sym_thread_local] = ACTIONS(4116), - [anon_sym___thread] = ACTIONS(4116), - [anon_sym_const] = ACTIONS(4116), - [anon_sym_constexpr] = ACTIONS(4116), - [anon_sym_volatile] = ACTIONS(4116), - [anon_sym_restrict] = ACTIONS(4116), - [anon_sym___restrict__] = ACTIONS(4116), - [anon_sym__Atomic] = ACTIONS(4116), - [anon_sym__Noreturn] = ACTIONS(4116), - [anon_sym_noreturn] = ACTIONS(4116), - [anon_sym__Nonnull] = ACTIONS(4116), - [anon_sym_mutable] = ACTIONS(4116), - [anon_sym_constinit] = ACTIONS(4116), - [anon_sym_consteval] = ACTIONS(4116), - [anon_sym_alignas] = ACTIONS(4116), - [anon_sym__Alignas] = ACTIONS(4116), - [sym_primitive_type] = ACTIONS(4116), - [anon_sym_enum] = ACTIONS(4116), - [anon_sym_class] = ACTIONS(4116), - [anon_sym_struct] = ACTIONS(4116), - [anon_sym_union] = ACTIONS(4116), - [anon_sym_if] = ACTIONS(4116), - [anon_sym_switch] = ACTIONS(4116), - [anon_sym_case] = ACTIONS(4116), - [anon_sym_default] = ACTIONS(4116), - [anon_sym_while] = ACTIONS(4116), - [anon_sym_do] = ACTIONS(4116), - [anon_sym_for] = ACTIONS(4116), - [anon_sym_return] = ACTIONS(4116), - [anon_sym_break] = ACTIONS(4116), - [anon_sym_continue] = ACTIONS(4116), - [anon_sym_goto] = ACTIONS(4116), - [anon_sym_not] = ACTIONS(4116), - [anon_sym_compl] = ACTIONS(4116), - [anon_sym_DASH_DASH] = ACTIONS(4118), - [anon_sym_PLUS_PLUS] = ACTIONS(4118), - [anon_sym_sizeof] = ACTIONS(4116), - [anon_sym___alignof__] = ACTIONS(4116), - [anon_sym___alignof] = ACTIONS(4116), - [anon_sym__alignof] = ACTIONS(4116), - [anon_sym_alignof] = ACTIONS(4116), - [anon_sym__Alignof] = ACTIONS(4116), - [anon_sym_offsetof] = ACTIONS(4116), - [anon_sym__Generic] = ACTIONS(4116), - [anon_sym_typename] = ACTIONS(4116), - [anon_sym_asm] = ACTIONS(4116), - [anon_sym___asm__] = ACTIONS(4116), - [anon_sym___asm] = ACTIONS(4116), - [sym_number_literal] = ACTIONS(4118), - [anon_sym_L_SQUOTE] = ACTIONS(4118), - [anon_sym_u_SQUOTE] = ACTIONS(4118), - [anon_sym_U_SQUOTE] = ACTIONS(4118), - [anon_sym_u8_SQUOTE] = ACTIONS(4118), - [anon_sym_SQUOTE] = ACTIONS(4118), - [anon_sym_L_DQUOTE] = ACTIONS(4118), - [anon_sym_u_DQUOTE] = ACTIONS(4118), - [anon_sym_U_DQUOTE] = ACTIONS(4118), - [anon_sym_u8_DQUOTE] = ACTIONS(4118), - [anon_sym_DQUOTE] = ACTIONS(4118), - [sym_true] = ACTIONS(4116), - [sym_false] = ACTIONS(4116), - [anon_sym_NULL] = ACTIONS(4116), - [anon_sym_nullptr] = ACTIONS(4116), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4116), - [anon_sym_decltype] = ACTIONS(4116), - [anon_sym_explicit] = ACTIONS(4116), - [anon_sym_export] = ACTIONS(4116), - [anon_sym_module] = ACTIONS(4116), - [anon_sym_import] = ACTIONS(4116), - [anon_sym_template] = ACTIONS(4116), - [anon_sym_operator] = ACTIONS(4116), - [anon_sym_try] = ACTIONS(4116), - [anon_sym_delete] = ACTIONS(4116), - [anon_sym_throw] = ACTIONS(4116), - [anon_sym_namespace] = ACTIONS(4116), - [anon_sym_static_assert] = ACTIONS(4116), - [anon_sym_concept] = ACTIONS(4116), - [anon_sym_co_return] = ACTIONS(4116), - [anon_sym_co_yield] = ACTIONS(4116), - [anon_sym_R_DQUOTE] = ACTIONS(4118), - [anon_sym_LR_DQUOTE] = ACTIONS(4118), - [anon_sym_uR_DQUOTE] = ACTIONS(4118), - [anon_sym_UR_DQUOTE] = ACTIONS(4118), - [anon_sym_u8R_DQUOTE] = ACTIONS(4118), - [anon_sym_co_await] = ACTIONS(4116), - [anon_sym_new] = ACTIONS(4116), - [anon_sym_requires] = ACTIONS(4116), - [anon_sym_CARET_CARET] = ACTIONS(4118), - [anon_sym_LBRACK_COLON] = ACTIONS(4118), - [sym_this] = ACTIONS(4116), - }, - [STATE(888)] = { - [ts_builtin_sym_end] = ACTIONS(4288), - [sym_identifier] = ACTIONS(4286), - [aux_sym_preproc_include_token1] = ACTIONS(4286), - [aux_sym_preproc_def_token1] = ACTIONS(4286), - [aux_sym_preproc_if_token1] = ACTIONS(4286), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4286), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4286), - [sym_preproc_directive] = ACTIONS(4286), - [anon_sym_LPAREN2] = ACTIONS(4288), - [anon_sym_BANG] = ACTIONS(4288), - [anon_sym_TILDE] = ACTIONS(4288), - [anon_sym_DASH] = ACTIONS(4286), - [anon_sym_PLUS] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4288), - [anon_sym_AMP_AMP] = ACTIONS(4288), - [anon_sym_AMP] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4288), - [anon_sym___extension__] = ACTIONS(4286), - [anon_sym_typedef] = ACTIONS(4286), - [anon_sym_virtual] = ACTIONS(4286), - [anon_sym_extern] = ACTIONS(4286), - [anon_sym___attribute__] = ACTIONS(4286), - [anon_sym___attribute] = ACTIONS(4286), - [anon_sym_using] = ACTIONS(4286), - [anon_sym_COLON_COLON] = ACTIONS(4288), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4288), - [anon_sym___declspec] = ACTIONS(4286), - [anon_sym___based] = ACTIONS(4286), - [anon_sym___cdecl] = ACTIONS(4286), - [anon_sym___clrcall] = ACTIONS(4286), - [anon_sym___stdcall] = ACTIONS(4286), - [anon_sym___fastcall] = ACTIONS(4286), - [anon_sym___thiscall] = ACTIONS(4286), - [anon_sym___vectorcall] = ACTIONS(4286), - [anon_sym_LBRACE] = ACTIONS(4288), - [anon_sym_signed] = ACTIONS(4286), - [anon_sym_unsigned] = ACTIONS(4286), - [anon_sym_long] = ACTIONS(4286), - [anon_sym_short] = ACTIONS(4286), - [anon_sym_LBRACK] = ACTIONS(4286), - [anon_sym_static] = ACTIONS(4286), - [anon_sym_register] = ACTIONS(4286), - [anon_sym_inline] = ACTIONS(4286), - [anon_sym___inline] = ACTIONS(4286), - [anon_sym___inline__] = ACTIONS(4286), - [anon_sym___forceinline] = ACTIONS(4286), - [anon_sym_thread_local] = ACTIONS(4286), - [anon_sym___thread] = ACTIONS(4286), - [anon_sym_const] = ACTIONS(4286), - [anon_sym_constexpr] = ACTIONS(4286), - [anon_sym_volatile] = ACTIONS(4286), - [anon_sym_restrict] = ACTIONS(4286), - [anon_sym___restrict__] = ACTIONS(4286), - [anon_sym__Atomic] = ACTIONS(4286), - [anon_sym__Noreturn] = ACTIONS(4286), - [anon_sym_noreturn] = ACTIONS(4286), - [anon_sym__Nonnull] = ACTIONS(4286), - [anon_sym_mutable] = ACTIONS(4286), - [anon_sym_constinit] = ACTIONS(4286), - [anon_sym_consteval] = ACTIONS(4286), - [anon_sym_alignas] = ACTIONS(4286), - [anon_sym__Alignas] = ACTIONS(4286), - [sym_primitive_type] = ACTIONS(4286), - [anon_sym_enum] = ACTIONS(4286), - [anon_sym_class] = ACTIONS(4286), - [anon_sym_struct] = ACTIONS(4286), - [anon_sym_union] = ACTIONS(4286), - [anon_sym_if] = ACTIONS(4286), - [anon_sym_switch] = ACTIONS(4286), - [anon_sym_case] = ACTIONS(4286), - [anon_sym_default] = ACTIONS(4286), - [anon_sym_while] = ACTIONS(4286), - [anon_sym_do] = ACTIONS(4286), - [anon_sym_for] = ACTIONS(4286), - [anon_sym_return] = ACTIONS(4286), - [anon_sym_break] = ACTIONS(4286), - [anon_sym_continue] = ACTIONS(4286), - [anon_sym_goto] = ACTIONS(4286), - [anon_sym_not] = ACTIONS(4286), - [anon_sym_compl] = ACTIONS(4286), - [anon_sym_DASH_DASH] = ACTIONS(4288), - [anon_sym_PLUS_PLUS] = ACTIONS(4288), - [anon_sym_sizeof] = ACTIONS(4286), - [anon_sym___alignof__] = ACTIONS(4286), - [anon_sym___alignof] = ACTIONS(4286), - [anon_sym__alignof] = ACTIONS(4286), - [anon_sym_alignof] = ACTIONS(4286), - [anon_sym__Alignof] = ACTIONS(4286), - [anon_sym_offsetof] = ACTIONS(4286), - [anon_sym__Generic] = ACTIONS(4286), - [anon_sym_typename] = ACTIONS(4286), - [anon_sym_asm] = ACTIONS(4286), - [anon_sym___asm__] = ACTIONS(4286), - [anon_sym___asm] = ACTIONS(4286), - [sym_number_literal] = ACTIONS(4288), - [anon_sym_L_SQUOTE] = ACTIONS(4288), - [anon_sym_u_SQUOTE] = ACTIONS(4288), - [anon_sym_U_SQUOTE] = ACTIONS(4288), - [anon_sym_u8_SQUOTE] = ACTIONS(4288), - [anon_sym_SQUOTE] = ACTIONS(4288), - [anon_sym_L_DQUOTE] = ACTIONS(4288), - [anon_sym_u_DQUOTE] = ACTIONS(4288), - [anon_sym_U_DQUOTE] = ACTIONS(4288), - [anon_sym_u8_DQUOTE] = ACTIONS(4288), - [anon_sym_DQUOTE] = ACTIONS(4288), - [sym_true] = ACTIONS(4286), - [sym_false] = ACTIONS(4286), - [anon_sym_NULL] = ACTIONS(4286), - [anon_sym_nullptr] = ACTIONS(4286), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4286), - [anon_sym_decltype] = ACTIONS(4286), - [anon_sym_explicit] = ACTIONS(4286), - [anon_sym_export] = ACTIONS(4286), - [anon_sym_module] = ACTIONS(4286), - [anon_sym_import] = ACTIONS(4286), - [anon_sym_template] = ACTIONS(4286), - [anon_sym_operator] = ACTIONS(4286), - [anon_sym_try] = ACTIONS(4286), - [anon_sym_delete] = ACTIONS(4286), - [anon_sym_throw] = ACTIONS(4286), - [anon_sym_namespace] = ACTIONS(4286), - [anon_sym_static_assert] = ACTIONS(4286), - [anon_sym_concept] = ACTIONS(4286), - [anon_sym_co_return] = ACTIONS(4286), - [anon_sym_co_yield] = ACTIONS(4286), - [anon_sym_R_DQUOTE] = ACTIONS(4288), - [anon_sym_LR_DQUOTE] = ACTIONS(4288), - [anon_sym_uR_DQUOTE] = ACTIONS(4288), - [anon_sym_UR_DQUOTE] = ACTIONS(4288), - [anon_sym_u8R_DQUOTE] = ACTIONS(4288), - [anon_sym_co_await] = ACTIONS(4286), - [anon_sym_new] = ACTIONS(4286), - [anon_sym_requires] = ACTIONS(4286), - [anon_sym_CARET_CARET] = ACTIONS(4288), - [anon_sym_LBRACK_COLON] = ACTIONS(4288), - [sym_this] = ACTIONS(4286), - }, - [STATE(889)] = { - [ts_builtin_sym_end] = ACTIONS(4292), - [sym_identifier] = ACTIONS(4290), - [aux_sym_preproc_include_token1] = ACTIONS(4290), - [aux_sym_preproc_def_token1] = ACTIONS(4290), - [aux_sym_preproc_if_token1] = ACTIONS(4290), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4290), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4290), - [sym_preproc_directive] = ACTIONS(4290), - [anon_sym_LPAREN2] = ACTIONS(4292), - [anon_sym_BANG] = ACTIONS(4292), - [anon_sym_TILDE] = ACTIONS(4292), - [anon_sym_DASH] = ACTIONS(4290), - [anon_sym_PLUS] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(4292), - [anon_sym_AMP_AMP] = ACTIONS(4292), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_SEMI] = ACTIONS(4292), - [anon_sym___extension__] = ACTIONS(4290), - [anon_sym_typedef] = ACTIONS(4290), - [anon_sym_virtual] = ACTIONS(4290), - [anon_sym_extern] = ACTIONS(4290), - [anon_sym___attribute__] = ACTIONS(4290), - [anon_sym___attribute] = ACTIONS(4290), - [anon_sym_using] = ACTIONS(4290), - [anon_sym_COLON_COLON] = ACTIONS(4292), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4292), - [anon_sym___declspec] = ACTIONS(4290), - [anon_sym___based] = ACTIONS(4290), - [anon_sym___cdecl] = ACTIONS(4290), - [anon_sym___clrcall] = ACTIONS(4290), - [anon_sym___stdcall] = ACTIONS(4290), - [anon_sym___fastcall] = ACTIONS(4290), - [anon_sym___thiscall] = ACTIONS(4290), - [anon_sym___vectorcall] = ACTIONS(4290), - [anon_sym_LBRACE] = ACTIONS(4292), - [anon_sym_signed] = ACTIONS(4290), - [anon_sym_unsigned] = ACTIONS(4290), - [anon_sym_long] = ACTIONS(4290), - [anon_sym_short] = ACTIONS(4290), - [anon_sym_LBRACK] = ACTIONS(4290), - [anon_sym_static] = ACTIONS(4290), - [anon_sym_register] = ACTIONS(4290), - [anon_sym_inline] = ACTIONS(4290), - [anon_sym___inline] = ACTIONS(4290), - [anon_sym___inline__] = ACTIONS(4290), - [anon_sym___forceinline] = ACTIONS(4290), - [anon_sym_thread_local] = ACTIONS(4290), - [anon_sym___thread] = ACTIONS(4290), - [anon_sym_const] = ACTIONS(4290), - [anon_sym_constexpr] = ACTIONS(4290), - [anon_sym_volatile] = ACTIONS(4290), - [anon_sym_restrict] = ACTIONS(4290), - [anon_sym___restrict__] = ACTIONS(4290), - [anon_sym__Atomic] = ACTIONS(4290), - [anon_sym__Noreturn] = ACTIONS(4290), - [anon_sym_noreturn] = ACTIONS(4290), - [anon_sym__Nonnull] = ACTIONS(4290), - [anon_sym_mutable] = ACTIONS(4290), - [anon_sym_constinit] = ACTIONS(4290), - [anon_sym_consteval] = ACTIONS(4290), - [anon_sym_alignas] = ACTIONS(4290), - [anon_sym__Alignas] = ACTIONS(4290), - [sym_primitive_type] = ACTIONS(4290), - [anon_sym_enum] = ACTIONS(4290), - [anon_sym_class] = ACTIONS(4290), - [anon_sym_struct] = ACTIONS(4290), - [anon_sym_union] = ACTIONS(4290), - [anon_sym_if] = ACTIONS(4290), - [anon_sym_switch] = ACTIONS(4290), - [anon_sym_case] = ACTIONS(4290), - [anon_sym_default] = ACTIONS(4290), - [anon_sym_while] = ACTIONS(4290), - [anon_sym_do] = ACTIONS(4290), - [anon_sym_for] = ACTIONS(4290), - [anon_sym_return] = ACTIONS(4290), - [anon_sym_break] = ACTIONS(4290), - [anon_sym_continue] = ACTIONS(4290), - [anon_sym_goto] = ACTIONS(4290), - [anon_sym_not] = ACTIONS(4290), - [anon_sym_compl] = ACTIONS(4290), - [anon_sym_DASH_DASH] = ACTIONS(4292), - [anon_sym_PLUS_PLUS] = ACTIONS(4292), - [anon_sym_sizeof] = ACTIONS(4290), - [anon_sym___alignof__] = ACTIONS(4290), - [anon_sym___alignof] = ACTIONS(4290), - [anon_sym__alignof] = ACTIONS(4290), - [anon_sym_alignof] = ACTIONS(4290), - [anon_sym__Alignof] = ACTIONS(4290), - [anon_sym_offsetof] = ACTIONS(4290), - [anon_sym__Generic] = ACTIONS(4290), - [anon_sym_typename] = ACTIONS(4290), - [anon_sym_asm] = ACTIONS(4290), - [anon_sym___asm__] = ACTIONS(4290), - [anon_sym___asm] = ACTIONS(4290), - [sym_number_literal] = ACTIONS(4292), - [anon_sym_L_SQUOTE] = ACTIONS(4292), - [anon_sym_u_SQUOTE] = ACTIONS(4292), - [anon_sym_U_SQUOTE] = ACTIONS(4292), - [anon_sym_u8_SQUOTE] = ACTIONS(4292), - [anon_sym_SQUOTE] = ACTIONS(4292), - [anon_sym_L_DQUOTE] = ACTIONS(4292), - [anon_sym_u_DQUOTE] = ACTIONS(4292), - [anon_sym_U_DQUOTE] = ACTIONS(4292), - [anon_sym_u8_DQUOTE] = ACTIONS(4292), - [anon_sym_DQUOTE] = ACTIONS(4292), - [sym_true] = ACTIONS(4290), - [sym_false] = ACTIONS(4290), - [anon_sym_NULL] = ACTIONS(4290), - [anon_sym_nullptr] = ACTIONS(4290), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4290), - [anon_sym_decltype] = ACTIONS(4290), - [anon_sym_explicit] = ACTIONS(4290), - [anon_sym_export] = ACTIONS(4290), - [anon_sym_module] = ACTIONS(4290), - [anon_sym_import] = ACTIONS(4290), - [anon_sym_template] = ACTIONS(4290), - [anon_sym_operator] = ACTIONS(4290), - [anon_sym_try] = ACTIONS(4290), - [anon_sym_delete] = ACTIONS(4290), - [anon_sym_throw] = ACTIONS(4290), - [anon_sym_namespace] = ACTIONS(4290), - [anon_sym_static_assert] = ACTIONS(4290), - [anon_sym_concept] = ACTIONS(4290), - [anon_sym_co_return] = ACTIONS(4290), - [anon_sym_co_yield] = ACTIONS(4290), - [anon_sym_R_DQUOTE] = ACTIONS(4292), - [anon_sym_LR_DQUOTE] = ACTIONS(4292), - [anon_sym_uR_DQUOTE] = ACTIONS(4292), - [anon_sym_UR_DQUOTE] = ACTIONS(4292), - [anon_sym_u8R_DQUOTE] = ACTIONS(4292), - [anon_sym_co_await] = ACTIONS(4290), - [anon_sym_new] = ACTIONS(4290), - [anon_sym_requires] = ACTIONS(4290), - [anon_sym_CARET_CARET] = ACTIONS(4292), - [anon_sym_LBRACK_COLON] = ACTIONS(4292), - [sym_this] = ACTIONS(4290), - }, - [STATE(890)] = { - [ts_builtin_sym_end] = ACTIONS(4296), - [sym_identifier] = ACTIONS(4294), - [aux_sym_preproc_include_token1] = ACTIONS(4294), - [aux_sym_preproc_def_token1] = ACTIONS(4294), - [aux_sym_preproc_if_token1] = ACTIONS(4294), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4294), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4294), - [sym_preproc_directive] = ACTIONS(4294), - [anon_sym_LPAREN2] = ACTIONS(4296), - [anon_sym_BANG] = ACTIONS(4296), - [anon_sym_TILDE] = ACTIONS(4296), - [anon_sym_DASH] = ACTIONS(4294), - [anon_sym_PLUS] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(4296), - [anon_sym_AMP_AMP] = ACTIONS(4296), - [anon_sym_AMP] = ACTIONS(4294), - [anon_sym_SEMI] = ACTIONS(4296), - [anon_sym___extension__] = ACTIONS(4294), - [anon_sym_typedef] = ACTIONS(4294), - [anon_sym_virtual] = ACTIONS(4294), - [anon_sym_extern] = ACTIONS(4294), - [anon_sym___attribute__] = ACTIONS(4294), - [anon_sym___attribute] = ACTIONS(4294), - [anon_sym_using] = ACTIONS(4294), - [anon_sym_COLON_COLON] = ACTIONS(4296), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4296), - [anon_sym___declspec] = ACTIONS(4294), - [anon_sym___based] = ACTIONS(4294), - [anon_sym___cdecl] = ACTIONS(4294), - [anon_sym___clrcall] = ACTIONS(4294), - [anon_sym___stdcall] = ACTIONS(4294), - [anon_sym___fastcall] = ACTIONS(4294), - [anon_sym___thiscall] = ACTIONS(4294), - [anon_sym___vectorcall] = ACTIONS(4294), - [anon_sym_LBRACE] = ACTIONS(4296), - [anon_sym_signed] = ACTIONS(4294), - [anon_sym_unsigned] = ACTIONS(4294), - [anon_sym_long] = ACTIONS(4294), - [anon_sym_short] = ACTIONS(4294), - [anon_sym_LBRACK] = ACTIONS(4294), - [anon_sym_static] = ACTIONS(4294), - [anon_sym_register] = ACTIONS(4294), - [anon_sym_inline] = ACTIONS(4294), - [anon_sym___inline] = ACTIONS(4294), - [anon_sym___inline__] = ACTIONS(4294), - [anon_sym___forceinline] = ACTIONS(4294), - [anon_sym_thread_local] = ACTIONS(4294), - [anon_sym___thread] = ACTIONS(4294), - [anon_sym_const] = ACTIONS(4294), - [anon_sym_constexpr] = ACTIONS(4294), - [anon_sym_volatile] = ACTIONS(4294), - [anon_sym_restrict] = ACTIONS(4294), - [anon_sym___restrict__] = ACTIONS(4294), - [anon_sym__Atomic] = ACTIONS(4294), - [anon_sym__Noreturn] = ACTIONS(4294), - [anon_sym_noreturn] = ACTIONS(4294), - [anon_sym__Nonnull] = ACTIONS(4294), - [anon_sym_mutable] = ACTIONS(4294), - [anon_sym_constinit] = ACTIONS(4294), - [anon_sym_consteval] = ACTIONS(4294), - [anon_sym_alignas] = ACTIONS(4294), - [anon_sym__Alignas] = ACTIONS(4294), - [sym_primitive_type] = ACTIONS(4294), - [anon_sym_enum] = ACTIONS(4294), - [anon_sym_class] = ACTIONS(4294), - [anon_sym_struct] = ACTIONS(4294), - [anon_sym_union] = ACTIONS(4294), - [anon_sym_if] = ACTIONS(4294), - [anon_sym_switch] = ACTIONS(4294), - [anon_sym_case] = ACTIONS(4294), - [anon_sym_default] = ACTIONS(4294), - [anon_sym_while] = ACTIONS(4294), - [anon_sym_do] = ACTIONS(4294), - [anon_sym_for] = ACTIONS(4294), - [anon_sym_return] = ACTIONS(4294), - [anon_sym_break] = ACTIONS(4294), - [anon_sym_continue] = ACTIONS(4294), - [anon_sym_goto] = ACTIONS(4294), - [anon_sym_not] = ACTIONS(4294), - [anon_sym_compl] = ACTIONS(4294), - [anon_sym_DASH_DASH] = ACTIONS(4296), - [anon_sym_PLUS_PLUS] = ACTIONS(4296), - [anon_sym_sizeof] = ACTIONS(4294), - [anon_sym___alignof__] = ACTIONS(4294), - [anon_sym___alignof] = ACTIONS(4294), - [anon_sym__alignof] = ACTIONS(4294), - [anon_sym_alignof] = ACTIONS(4294), - [anon_sym__Alignof] = ACTIONS(4294), - [anon_sym_offsetof] = ACTIONS(4294), - [anon_sym__Generic] = ACTIONS(4294), - [anon_sym_typename] = ACTIONS(4294), - [anon_sym_asm] = ACTIONS(4294), - [anon_sym___asm__] = ACTIONS(4294), - [anon_sym___asm] = ACTIONS(4294), - [sym_number_literal] = ACTIONS(4296), - [anon_sym_L_SQUOTE] = ACTIONS(4296), - [anon_sym_u_SQUOTE] = ACTIONS(4296), - [anon_sym_U_SQUOTE] = ACTIONS(4296), - [anon_sym_u8_SQUOTE] = ACTIONS(4296), - [anon_sym_SQUOTE] = ACTIONS(4296), - [anon_sym_L_DQUOTE] = ACTIONS(4296), - [anon_sym_u_DQUOTE] = ACTIONS(4296), - [anon_sym_U_DQUOTE] = ACTIONS(4296), - [anon_sym_u8_DQUOTE] = ACTIONS(4296), - [anon_sym_DQUOTE] = ACTIONS(4296), - [sym_true] = ACTIONS(4294), - [sym_false] = ACTIONS(4294), - [anon_sym_NULL] = ACTIONS(4294), - [anon_sym_nullptr] = ACTIONS(4294), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4294), - [anon_sym_decltype] = ACTIONS(4294), - [anon_sym_explicit] = ACTIONS(4294), - [anon_sym_export] = ACTIONS(4294), - [anon_sym_module] = ACTIONS(4294), - [anon_sym_import] = ACTIONS(4294), - [anon_sym_template] = ACTIONS(4294), - [anon_sym_operator] = ACTIONS(4294), - [anon_sym_try] = ACTIONS(4294), - [anon_sym_delete] = ACTIONS(4294), - [anon_sym_throw] = ACTIONS(4294), - [anon_sym_namespace] = ACTIONS(4294), - [anon_sym_static_assert] = ACTIONS(4294), - [anon_sym_concept] = ACTIONS(4294), - [anon_sym_co_return] = ACTIONS(4294), - [anon_sym_co_yield] = ACTIONS(4294), - [anon_sym_R_DQUOTE] = ACTIONS(4296), - [anon_sym_LR_DQUOTE] = ACTIONS(4296), - [anon_sym_uR_DQUOTE] = ACTIONS(4296), - [anon_sym_UR_DQUOTE] = ACTIONS(4296), - [anon_sym_u8R_DQUOTE] = ACTIONS(4296), - [anon_sym_co_await] = ACTIONS(4294), - [anon_sym_new] = ACTIONS(4294), - [anon_sym_requires] = ACTIONS(4294), - [anon_sym_CARET_CARET] = ACTIONS(4296), - [anon_sym_LBRACK_COLON] = ACTIONS(4296), - [sym_this] = ACTIONS(4294), - }, - [STATE(891)] = { - [ts_builtin_sym_end] = ACTIONS(4022), - [sym_identifier] = ACTIONS(4020), - [aux_sym_preproc_include_token1] = ACTIONS(4020), - [aux_sym_preproc_def_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token1] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), - [sym_preproc_directive] = ACTIONS(4020), - [anon_sym_LPAREN2] = ACTIONS(4022), - [anon_sym_BANG] = ACTIONS(4022), - [anon_sym_TILDE] = ACTIONS(4022), - [anon_sym_DASH] = ACTIONS(4020), - [anon_sym_PLUS] = ACTIONS(4020), - [anon_sym_STAR] = ACTIONS(4022), - [anon_sym_AMP_AMP] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_SEMI] = ACTIONS(4022), - [anon_sym___extension__] = ACTIONS(4020), - [anon_sym_typedef] = ACTIONS(4020), - [anon_sym_virtual] = ACTIONS(4020), - [anon_sym_extern] = ACTIONS(4020), - [anon_sym___attribute__] = ACTIONS(4020), - [anon_sym___attribute] = ACTIONS(4020), - [anon_sym_using] = ACTIONS(4020), - [anon_sym_COLON_COLON] = ACTIONS(4022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), - [anon_sym___declspec] = ACTIONS(4020), - [anon_sym___based] = ACTIONS(4020), - [anon_sym___cdecl] = ACTIONS(4020), - [anon_sym___clrcall] = ACTIONS(4020), - [anon_sym___stdcall] = ACTIONS(4020), - [anon_sym___fastcall] = ACTIONS(4020), - [anon_sym___thiscall] = ACTIONS(4020), - [anon_sym___vectorcall] = ACTIONS(4020), - [anon_sym_LBRACE] = ACTIONS(4022), - [anon_sym_signed] = ACTIONS(4020), - [anon_sym_unsigned] = ACTIONS(4020), - [anon_sym_long] = ACTIONS(4020), - [anon_sym_short] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_static] = ACTIONS(4020), - [anon_sym_register] = ACTIONS(4020), - [anon_sym_inline] = ACTIONS(4020), - [anon_sym___inline] = ACTIONS(4020), - [anon_sym___inline__] = ACTIONS(4020), - [anon_sym___forceinline] = ACTIONS(4020), - [anon_sym_thread_local] = ACTIONS(4020), - [anon_sym___thread] = ACTIONS(4020), - [anon_sym_const] = ACTIONS(4020), - [anon_sym_constexpr] = ACTIONS(4020), - [anon_sym_volatile] = ACTIONS(4020), - [anon_sym_restrict] = ACTIONS(4020), - [anon_sym___restrict__] = ACTIONS(4020), - [anon_sym__Atomic] = ACTIONS(4020), - [anon_sym__Noreturn] = ACTIONS(4020), - [anon_sym_noreturn] = ACTIONS(4020), - [anon_sym__Nonnull] = ACTIONS(4020), - [anon_sym_mutable] = ACTIONS(4020), - [anon_sym_constinit] = ACTIONS(4020), - [anon_sym_consteval] = ACTIONS(4020), - [anon_sym_alignas] = ACTIONS(4020), - [anon_sym__Alignas] = ACTIONS(4020), - [sym_primitive_type] = ACTIONS(4020), - [anon_sym_enum] = ACTIONS(4020), - [anon_sym_class] = ACTIONS(4020), - [anon_sym_struct] = ACTIONS(4020), - [anon_sym_union] = ACTIONS(4020), - [anon_sym_if] = ACTIONS(4020), - [anon_sym_switch] = ACTIONS(4020), - [anon_sym_case] = ACTIONS(4020), - [anon_sym_default] = ACTIONS(4020), - [anon_sym_while] = ACTIONS(4020), - [anon_sym_do] = ACTIONS(4020), - [anon_sym_for] = ACTIONS(4020), - [anon_sym_return] = ACTIONS(4020), - [anon_sym_break] = ACTIONS(4020), - [anon_sym_continue] = ACTIONS(4020), - [anon_sym_goto] = ACTIONS(4020), - [anon_sym_not] = ACTIONS(4020), - [anon_sym_compl] = ACTIONS(4020), - [anon_sym_DASH_DASH] = ACTIONS(4022), - [anon_sym_PLUS_PLUS] = ACTIONS(4022), - [anon_sym_sizeof] = ACTIONS(4020), - [anon_sym___alignof__] = ACTIONS(4020), - [anon_sym___alignof] = ACTIONS(4020), - [anon_sym__alignof] = ACTIONS(4020), - [anon_sym_alignof] = ACTIONS(4020), - [anon_sym__Alignof] = ACTIONS(4020), - [anon_sym_offsetof] = ACTIONS(4020), - [anon_sym__Generic] = ACTIONS(4020), - [anon_sym_typename] = ACTIONS(4020), - [anon_sym_asm] = ACTIONS(4020), - [anon_sym___asm__] = ACTIONS(4020), - [anon_sym___asm] = ACTIONS(4020), - [sym_number_literal] = ACTIONS(4022), - [anon_sym_L_SQUOTE] = ACTIONS(4022), - [anon_sym_u_SQUOTE] = ACTIONS(4022), - [anon_sym_U_SQUOTE] = ACTIONS(4022), - [anon_sym_u8_SQUOTE] = ACTIONS(4022), - [anon_sym_SQUOTE] = ACTIONS(4022), - [anon_sym_L_DQUOTE] = ACTIONS(4022), - [anon_sym_u_DQUOTE] = ACTIONS(4022), - [anon_sym_U_DQUOTE] = ACTIONS(4022), - [anon_sym_u8_DQUOTE] = ACTIONS(4022), - [anon_sym_DQUOTE] = ACTIONS(4022), - [sym_true] = ACTIONS(4020), - [sym_false] = ACTIONS(4020), - [anon_sym_NULL] = ACTIONS(4020), - [anon_sym_nullptr] = ACTIONS(4020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4020), - [anon_sym_decltype] = ACTIONS(4020), - [anon_sym_explicit] = ACTIONS(4020), - [anon_sym_export] = ACTIONS(4020), - [anon_sym_module] = ACTIONS(4020), - [anon_sym_import] = ACTIONS(4020), - [anon_sym_template] = ACTIONS(4020), - [anon_sym_operator] = ACTIONS(4020), - [anon_sym_try] = ACTIONS(4020), - [anon_sym_delete] = ACTIONS(4020), - [anon_sym_throw] = ACTIONS(4020), - [anon_sym_namespace] = ACTIONS(4020), - [anon_sym_static_assert] = ACTIONS(4020), - [anon_sym_concept] = ACTIONS(4020), - [anon_sym_co_return] = ACTIONS(4020), - [anon_sym_co_yield] = ACTIONS(4020), - [anon_sym_R_DQUOTE] = ACTIONS(4022), - [anon_sym_LR_DQUOTE] = ACTIONS(4022), - [anon_sym_uR_DQUOTE] = ACTIONS(4022), - [anon_sym_UR_DQUOTE] = ACTIONS(4022), - [anon_sym_u8R_DQUOTE] = ACTIONS(4022), - [anon_sym_co_await] = ACTIONS(4020), - [anon_sym_new] = ACTIONS(4020), - [anon_sym_requires] = ACTIONS(4020), - [anon_sym_CARET_CARET] = ACTIONS(4022), - [anon_sym_LBRACK_COLON] = ACTIONS(4022), - [sym_this] = ACTIONS(4020), + [STATE(891)] = { + [ts_builtin_sym_end] = ACTIONS(4476), + [sym_identifier] = ACTIONS(4474), + [aux_sym_preproc_include_token1] = ACTIONS(4474), + [aux_sym_preproc_def_token1] = ACTIONS(4474), + [aux_sym_preproc_if_token1] = ACTIONS(4474), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4474), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4474), + [sym_preproc_directive] = ACTIONS(4474), + [anon_sym_LPAREN2] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4474), + [anon_sym_PLUS] = ACTIONS(4474), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_AMP_AMP] = ACTIONS(4476), + [anon_sym_AMP] = ACTIONS(4474), + [anon_sym_SEMI] = ACTIONS(4476), + [anon_sym___extension__] = ACTIONS(4474), + [anon_sym_typedef] = ACTIONS(4474), + [anon_sym_virtual] = ACTIONS(4474), + [anon_sym_extern] = ACTIONS(4474), + [anon_sym___attribute__] = ACTIONS(4474), + [anon_sym___attribute] = ACTIONS(4474), + [anon_sym_using] = ACTIONS(4474), + [anon_sym_COLON_COLON] = ACTIONS(4476), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4476), + [anon_sym___declspec] = ACTIONS(4474), + [anon_sym___based] = ACTIONS(4474), + [anon_sym___cdecl] = ACTIONS(4474), + [anon_sym___clrcall] = ACTIONS(4474), + [anon_sym___stdcall] = ACTIONS(4474), + [anon_sym___fastcall] = ACTIONS(4474), + [anon_sym___thiscall] = ACTIONS(4474), + [anon_sym___vectorcall] = ACTIONS(4474), + [anon_sym_LBRACE] = ACTIONS(4476), + [anon_sym_signed] = ACTIONS(4474), + [anon_sym_unsigned] = ACTIONS(4474), + [anon_sym_long] = ACTIONS(4474), + [anon_sym_short] = ACTIONS(4474), + [anon_sym_LBRACK] = ACTIONS(4474), + [anon_sym_static] = ACTIONS(4474), + [anon_sym_register] = ACTIONS(4474), + [anon_sym_inline] = ACTIONS(4474), + [anon_sym___inline] = ACTIONS(4474), + [anon_sym___inline__] = ACTIONS(4474), + [anon_sym___forceinline] = ACTIONS(4474), + [anon_sym_thread_local] = ACTIONS(4474), + [anon_sym___thread] = ACTIONS(4474), + [anon_sym_const] = ACTIONS(4474), + [anon_sym_constexpr] = ACTIONS(4474), + [anon_sym_volatile] = ACTIONS(4474), + [anon_sym_restrict] = ACTIONS(4474), + [anon_sym___restrict__] = ACTIONS(4474), + [anon_sym__Atomic] = ACTIONS(4474), + [anon_sym__Noreturn] = ACTIONS(4474), + [anon_sym_noreturn] = ACTIONS(4474), + [anon_sym__Nonnull] = ACTIONS(4474), + [anon_sym_mutable] = ACTIONS(4474), + [anon_sym_constinit] = ACTIONS(4474), + [anon_sym_consteval] = ACTIONS(4474), + [anon_sym_alignas] = ACTIONS(4474), + [anon_sym__Alignas] = ACTIONS(4474), + [sym_primitive_type] = ACTIONS(4474), + [anon_sym_enum] = ACTIONS(4474), + [anon_sym_class] = ACTIONS(4474), + [anon_sym_struct] = ACTIONS(4474), + [anon_sym_union] = ACTIONS(4474), + [anon_sym_if] = ACTIONS(4474), + [anon_sym_switch] = ACTIONS(4474), + [anon_sym_case] = ACTIONS(4474), + [anon_sym_default] = ACTIONS(4474), + [anon_sym_while] = ACTIONS(4474), + [anon_sym_do] = ACTIONS(4474), + [anon_sym_for] = ACTIONS(4474), + [anon_sym_return] = ACTIONS(4474), + [anon_sym_break] = ACTIONS(4474), + [anon_sym_continue] = ACTIONS(4474), + [anon_sym_goto] = ACTIONS(4474), + [anon_sym_not] = ACTIONS(4474), + [anon_sym_compl] = ACTIONS(4474), + [anon_sym_DASH_DASH] = ACTIONS(4476), + [anon_sym_PLUS_PLUS] = ACTIONS(4476), + [anon_sym_sizeof] = ACTIONS(4474), + [anon_sym___alignof__] = ACTIONS(4474), + [anon_sym___alignof] = ACTIONS(4474), + [anon_sym__alignof] = ACTIONS(4474), + [anon_sym_alignof] = ACTIONS(4474), + [anon_sym__Alignof] = ACTIONS(4474), + [anon_sym_offsetof] = ACTIONS(4474), + [anon_sym__Generic] = ACTIONS(4474), + [anon_sym_typename] = ACTIONS(4474), + [anon_sym_asm] = ACTIONS(4474), + [anon_sym___asm__] = ACTIONS(4474), + [anon_sym___asm] = ACTIONS(4474), + [sym_number_literal] = ACTIONS(4476), + [anon_sym_L_SQUOTE] = ACTIONS(4476), + [anon_sym_u_SQUOTE] = ACTIONS(4476), + [anon_sym_U_SQUOTE] = ACTIONS(4476), + [anon_sym_u8_SQUOTE] = ACTIONS(4476), + [anon_sym_SQUOTE] = ACTIONS(4476), + [anon_sym_L_DQUOTE] = ACTIONS(4476), + [anon_sym_u_DQUOTE] = ACTIONS(4476), + [anon_sym_U_DQUOTE] = ACTIONS(4476), + [anon_sym_u8_DQUOTE] = ACTIONS(4476), + [anon_sym_DQUOTE] = ACTIONS(4476), + [sym_true] = ACTIONS(4474), + [sym_false] = ACTIONS(4474), + [anon_sym_NULL] = ACTIONS(4474), + [anon_sym_nullptr] = ACTIONS(4474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4474), + [anon_sym_decltype] = ACTIONS(4474), + [anon_sym_explicit] = ACTIONS(4474), + [anon_sym_export] = ACTIONS(4474), + [anon_sym_module] = ACTIONS(4474), + [anon_sym_import] = ACTIONS(4474), + [anon_sym_template] = ACTIONS(4474), + [anon_sym_operator] = ACTIONS(4474), + [anon_sym_try] = ACTIONS(4474), + [anon_sym_delete] = ACTIONS(4474), + [anon_sym_throw] = ACTIONS(4474), + [anon_sym_namespace] = ACTIONS(4474), + [anon_sym_static_assert] = ACTIONS(4474), + [anon_sym_concept] = ACTIONS(4474), + [anon_sym_co_return] = ACTIONS(4474), + [anon_sym_co_yield] = ACTIONS(4474), + [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(4474), + [anon_sym_new] = ACTIONS(4474), + [anon_sym_requires] = ACTIONS(4474), + [anon_sym_CARET_CARET] = ACTIONS(4476), + [anon_sym_LBRACK_COLON] = ACTIONS(4476), + [sym_this] = ACTIONS(4474), }, [STATE(892)] = { - [ts_builtin_sym_end] = ACTIONS(4114), - [sym_identifier] = ACTIONS(4112), - [aux_sym_preproc_include_token1] = ACTIONS(4112), - [aux_sym_preproc_def_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token1] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), - [sym_preproc_directive] = ACTIONS(4112), - [anon_sym_LPAREN2] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_TILDE] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4112), - [anon_sym_PLUS] = ACTIONS(4112), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym___extension__] = ACTIONS(4112), - [anon_sym_typedef] = ACTIONS(4112), - [anon_sym_virtual] = ACTIONS(4112), - [anon_sym_extern] = ACTIONS(4112), - [anon_sym___attribute__] = ACTIONS(4112), - [anon_sym___attribute] = ACTIONS(4112), - [anon_sym_using] = ACTIONS(4112), - [anon_sym_COLON_COLON] = ACTIONS(4114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), - [anon_sym___declspec] = ACTIONS(4112), - [anon_sym___based] = ACTIONS(4112), - [anon_sym___cdecl] = ACTIONS(4112), - [anon_sym___clrcall] = ACTIONS(4112), - [anon_sym___stdcall] = ACTIONS(4112), - [anon_sym___fastcall] = ACTIONS(4112), - [anon_sym___thiscall] = ACTIONS(4112), - [anon_sym___vectorcall] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(4114), - [anon_sym_signed] = ACTIONS(4112), - [anon_sym_unsigned] = ACTIONS(4112), - [anon_sym_long] = ACTIONS(4112), - [anon_sym_short] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_static] = ACTIONS(4112), - [anon_sym_register] = ACTIONS(4112), - [anon_sym_inline] = ACTIONS(4112), - [anon_sym___inline] = ACTIONS(4112), - [anon_sym___inline__] = ACTIONS(4112), - [anon_sym___forceinline] = ACTIONS(4112), - [anon_sym_thread_local] = ACTIONS(4112), - [anon_sym___thread] = ACTIONS(4112), - [anon_sym_const] = ACTIONS(4112), - [anon_sym_constexpr] = ACTIONS(4112), - [anon_sym_volatile] = ACTIONS(4112), - [anon_sym_restrict] = ACTIONS(4112), - [anon_sym___restrict__] = ACTIONS(4112), - [anon_sym__Atomic] = ACTIONS(4112), - [anon_sym__Noreturn] = ACTIONS(4112), - [anon_sym_noreturn] = ACTIONS(4112), - [anon_sym__Nonnull] = ACTIONS(4112), - [anon_sym_mutable] = ACTIONS(4112), - [anon_sym_constinit] = ACTIONS(4112), - [anon_sym_consteval] = ACTIONS(4112), - [anon_sym_alignas] = ACTIONS(4112), - [anon_sym__Alignas] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(4112), - [anon_sym_enum] = ACTIONS(4112), - [anon_sym_class] = ACTIONS(4112), - [anon_sym_struct] = ACTIONS(4112), - [anon_sym_union] = ACTIONS(4112), - [anon_sym_if] = ACTIONS(4112), - [anon_sym_switch] = ACTIONS(4112), - [anon_sym_case] = ACTIONS(4112), - [anon_sym_default] = ACTIONS(4112), - [anon_sym_while] = ACTIONS(4112), - [anon_sym_do] = ACTIONS(4112), - [anon_sym_for] = ACTIONS(4112), - [anon_sym_return] = ACTIONS(4112), - [anon_sym_break] = ACTIONS(4112), - [anon_sym_continue] = ACTIONS(4112), - [anon_sym_goto] = ACTIONS(4112), - [anon_sym_not] = ACTIONS(4112), - [anon_sym_compl] = ACTIONS(4112), - [anon_sym_DASH_DASH] = ACTIONS(4114), - [anon_sym_PLUS_PLUS] = ACTIONS(4114), - [anon_sym_sizeof] = ACTIONS(4112), - [anon_sym___alignof__] = ACTIONS(4112), - [anon_sym___alignof] = ACTIONS(4112), - [anon_sym__alignof] = ACTIONS(4112), - [anon_sym_alignof] = ACTIONS(4112), - [anon_sym__Alignof] = ACTIONS(4112), - [anon_sym_offsetof] = ACTIONS(4112), - [anon_sym__Generic] = ACTIONS(4112), - [anon_sym_typename] = ACTIONS(4112), - [anon_sym_asm] = ACTIONS(4112), - [anon_sym___asm__] = ACTIONS(4112), - [anon_sym___asm] = ACTIONS(4112), - [sym_number_literal] = ACTIONS(4114), - [anon_sym_L_SQUOTE] = ACTIONS(4114), - [anon_sym_u_SQUOTE] = ACTIONS(4114), - [anon_sym_U_SQUOTE] = ACTIONS(4114), - [anon_sym_u8_SQUOTE] = ACTIONS(4114), - [anon_sym_SQUOTE] = ACTIONS(4114), - [anon_sym_L_DQUOTE] = ACTIONS(4114), - [anon_sym_u_DQUOTE] = ACTIONS(4114), - [anon_sym_U_DQUOTE] = ACTIONS(4114), - [anon_sym_u8_DQUOTE] = ACTIONS(4114), - [anon_sym_DQUOTE] = ACTIONS(4114), - [sym_true] = ACTIONS(4112), - [sym_false] = ACTIONS(4112), - [anon_sym_NULL] = ACTIONS(4112), - [anon_sym_nullptr] = ACTIONS(4112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4112), - [anon_sym_decltype] = ACTIONS(4112), - [anon_sym_explicit] = ACTIONS(4112), - [anon_sym_export] = ACTIONS(4112), - [anon_sym_module] = ACTIONS(4112), - [anon_sym_import] = ACTIONS(4112), - [anon_sym_template] = ACTIONS(4112), - [anon_sym_operator] = ACTIONS(4112), - [anon_sym_try] = ACTIONS(4112), - [anon_sym_delete] = ACTIONS(4112), - [anon_sym_throw] = ACTIONS(4112), - [anon_sym_namespace] = ACTIONS(4112), - [anon_sym_static_assert] = ACTIONS(4112), - [anon_sym_concept] = ACTIONS(4112), - [anon_sym_co_return] = ACTIONS(4112), - [anon_sym_co_yield] = ACTIONS(4112), - [anon_sym_R_DQUOTE] = ACTIONS(4114), - [anon_sym_LR_DQUOTE] = ACTIONS(4114), - [anon_sym_uR_DQUOTE] = ACTIONS(4114), - [anon_sym_UR_DQUOTE] = ACTIONS(4114), - [anon_sym_u8R_DQUOTE] = ACTIONS(4114), - [anon_sym_co_await] = ACTIONS(4112), - [anon_sym_new] = ACTIONS(4112), - [anon_sym_requires] = ACTIONS(4112), - [anon_sym_CARET_CARET] = ACTIONS(4114), - [anon_sym_LBRACK_COLON] = ACTIONS(4114), - [sym_this] = ACTIONS(4112), + [ts_builtin_sym_end] = ACTIONS(4666), + [sym_identifier] = ACTIONS(4664), + [aux_sym_preproc_include_token1] = ACTIONS(4664), + [aux_sym_preproc_def_token1] = ACTIONS(4664), + [aux_sym_preproc_if_token1] = ACTIONS(4664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4664), + [sym_preproc_directive] = ACTIONS(4664), + [anon_sym_LPAREN2] = ACTIONS(4666), + [anon_sym_BANG] = ACTIONS(4666), + [anon_sym_TILDE] = ACTIONS(4666), + [anon_sym_DASH] = ACTIONS(4664), + [anon_sym_PLUS] = ACTIONS(4664), + [anon_sym_STAR] = ACTIONS(4666), + [anon_sym_AMP_AMP] = ACTIONS(4666), + [anon_sym_AMP] = ACTIONS(4664), + [anon_sym_SEMI] = ACTIONS(4666), + [anon_sym___extension__] = ACTIONS(4664), + [anon_sym_typedef] = ACTIONS(4664), + [anon_sym_virtual] = ACTIONS(4664), + [anon_sym_extern] = ACTIONS(4664), + [anon_sym___attribute__] = ACTIONS(4664), + [anon_sym___attribute] = ACTIONS(4664), + [anon_sym_using] = ACTIONS(4664), + [anon_sym_COLON_COLON] = ACTIONS(4666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4666), + [anon_sym___declspec] = ACTIONS(4664), + [anon_sym___based] = ACTIONS(4664), + [anon_sym___cdecl] = ACTIONS(4664), + [anon_sym___clrcall] = ACTIONS(4664), + [anon_sym___stdcall] = ACTIONS(4664), + [anon_sym___fastcall] = ACTIONS(4664), + [anon_sym___thiscall] = ACTIONS(4664), + [anon_sym___vectorcall] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4666), + [anon_sym_signed] = ACTIONS(4664), + [anon_sym_unsigned] = ACTIONS(4664), + [anon_sym_long] = ACTIONS(4664), + [anon_sym_short] = ACTIONS(4664), + [anon_sym_LBRACK] = ACTIONS(4664), + [anon_sym_static] = ACTIONS(4664), + [anon_sym_register] = ACTIONS(4664), + [anon_sym_inline] = ACTIONS(4664), + [anon_sym___inline] = ACTIONS(4664), + [anon_sym___inline__] = ACTIONS(4664), + [anon_sym___forceinline] = ACTIONS(4664), + [anon_sym_thread_local] = ACTIONS(4664), + [anon_sym___thread] = ACTIONS(4664), + [anon_sym_const] = ACTIONS(4664), + [anon_sym_constexpr] = ACTIONS(4664), + [anon_sym_volatile] = ACTIONS(4664), + [anon_sym_restrict] = ACTIONS(4664), + [anon_sym___restrict__] = ACTIONS(4664), + [anon_sym__Atomic] = ACTIONS(4664), + [anon_sym__Noreturn] = ACTIONS(4664), + [anon_sym_noreturn] = ACTIONS(4664), + [anon_sym__Nonnull] = ACTIONS(4664), + [anon_sym_mutable] = ACTIONS(4664), + [anon_sym_constinit] = ACTIONS(4664), + [anon_sym_consteval] = ACTIONS(4664), + [anon_sym_alignas] = ACTIONS(4664), + [anon_sym__Alignas] = ACTIONS(4664), + [sym_primitive_type] = ACTIONS(4664), + [anon_sym_enum] = ACTIONS(4664), + [anon_sym_class] = ACTIONS(4664), + [anon_sym_struct] = ACTIONS(4664), + [anon_sym_union] = ACTIONS(4664), + [anon_sym_if] = ACTIONS(4664), + [anon_sym_switch] = ACTIONS(4664), + [anon_sym_case] = ACTIONS(4664), + [anon_sym_default] = ACTIONS(4664), + [anon_sym_while] = ACTIONS(4664), + [anon_sym_do] = ACTIONS(4664), + [anon_sym_for] = ACTIONS(4664), + [anon_sym_return] = ACTIONS(4664), + [anon_sym_break] = ACTIONS(4664), + [anon_sym_continue] = ACTIONS(4664), + [anon_sym_goto] = ACTIONS(4664), + [anon_sym_not] = ACTIONS(4664), + [anon_sym_compl] = ACTIONS(4664), + [anon_sym_DASH_DASH] = ACTIONS(4666), + [anon_sym_PLUS_PLUS] = ACTIONS(4666), + [anon_sym_sizeof] = ACTIONS(4664), + [anon_sym___alignof__] = ACTIONS(4664), + [anon_sym___alignof] = ACTIONS(4664), + [anon_sym__alignof] = ACTIONS(4664), + [anon_sym_alignof] = ACTIONS(4664), + [anon_sym__Alignof] = ACTIONS(4664), + [anon_sym_offsetof] = ACTIONS(4664), + [anon_sym__Generic] = ACTIONS(4664), + [anon_sym_typename] = ACTIONS(4664), + [anon_sym_asm] = ACTIONS(4664), + [anon_sym___asm__] = ACTIONS(4664), + [anon_sym___asm] = ACTIONS(4664), + [sym_number_literal] = ACTIONS(4666), + [anon_sym_L_SQUOTE] = ACTIONS(4666), + [anon_sym_u_SQUOTE] = ACTIONS(4666), + [anon_sym_U_SQUOTE] = ACTIONS(4666), + [anon_sym_u8_SQUOTE] = ACTIONS(4666), + [anon_sym_SQUOTE] = ACTIONS(4666), + [anon_sym_L_DQUOTE] = ACTIONS(4666), + [anon_sym_u_DQUOTE] = ACTIONS(4666), + [anon_sym_U_DQUOTE] = ACTIONS(4666), + [anon_sym_u8_DQUOTE] = ACTIONS(4666), + [anon_sym_DQUOTE] = ACTIONS(4666), + [sym_true] = ACTIONS(4664), + [sym_false] = ACTIONS(4664), + [anon_sym_NULL] = ACTIONS(4664), + [anon_sym_nullptr] = ACTIONS(4664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4664), + [anon_sym_decltype] = ACTIONS(4664), + [anon_sym_explicit] = ACTIONS(4664), + [anon_sym_export] = ACTIONS(4664), + [anon_sym_module] = ACTIONS(4664), + [anon_sym_import] = ACTIONS(4664), + [anon_sym_template] = ACTIONS(4664), + [anon_sym_operator] = ACTIONS(4664), + [anon_sym_try] = ACTIONS(4664), + [anon_sym_delete] = ACTIONS(4664), + [anon_sym_throw] = ACTIONS(4664), + [anon_sym_namespace] = ACTIONS(4664), + [anon_sym_static_assert] = ACTIONS(4664), + [anon_sym_concept] = ACTIONS(4664), + [anon_sym_co_return] = ACTIONS(4664), + [anon_sym_co_yield] = ACTIONS(4664), + [anon_sym_R_DQUOTE] = ACTIONS(4666), + [anon_sym_LR_DQUOTE] = ACTIONS(4666), + [anon_sym_uR_DQUOTE] = ACTIONS(4666), + [anon_sym_UR_DQUOTE] = ACTIONS(4666), + [anon_sym_u8R_DQUOTE] = ACTIONS(4666), + [anon_sym_co_await] = ACTIONS(4664), + [anon_sym_new] = ACTIONS(4664), + [anon_sym_requires] = ACTIONS(4664), + [anon_sym_CARET_CARET] = ACTIONS(4666), + [anon_sym_LBRACK_COLON] = ACTIONS(4666), + [sym_this] = ACTIONS(4664), }, [STATE(893)] = { - [ts_builtin_sym_end] = ACTIONS(4385), - [sym_identifier] = ACTIONS(4383), - [aux_sym_preproc_include_token1] = ACTIONS(4383), - [aux_sym_preproc_def_token1] = ACTIONS(4383), - [aux_sym_preproc_if_token1] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4383), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4383), - [sym_preproc_directive] = ACTIONS(4383), - [anon_sym_LPAREN2] = ACTIONS(4385), - [anon_sym_BANG] = ACTIONS(4385), - [anon_sym_TILDE] = ACTIONS(4385), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_STAR] = ACTIONS(4385), - [anon_sym_AMP_AMP] = ACTIONS(4385), - [anon_sym_AMP] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(4385), - [anon_sym___extension__] = ACTIONS(4383), - [anon_sym_typedef] = ACTIONS(4383), - [anon_sym_virtual] = ACTIONS(4383), - [anon_sym_extern] = ACTIONS(4383), - [anon_sym___attribute__] = ACTIONS(4383), - [anon_sym___attribute] = ACTIONS(4383), - [anon_sym_using] = ACTIONS(4383), - [anon_sym_COLON_COLON] = ACTIONS(4385), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4385), - [anon_sym___declspec] = ACTIONS(4383), - [anon_sym___based] = ACTIONS(4383), - [anon_sym___cdecl] = ACTIONS(4383), - [anon_sym___clrcall] = ACTIONS(4383), - [anon_sym___stdcall] = ACTIONS(4383), - [anon_sym___fastcall] = ACTIONS(4383), - [anon_sym___thiscall] = ACTIONS(4383), - [anon_sym___vectorcall] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4385), - [anon_sym_signed] = ACTIONS(4383), - [anon_sym_unsigned] = ACTIONS(4383), - [anon_sym_long] = ACTIONS(4383), - [anon_sym_short] = ACTIONS(4383), - [anon_sym_LBRACK] = ACTIONS(4383), - [anon_sym_static] = ACTIONS(4383), - [anon_sym_register] = ACTIONS(4383), - [anon_sym_inline] = ACTIONS(4383), - [anon_sym___inline] = ACTIONS(4383), - [anon_sym___inline__] = ACTIONS(4383), - [anon_sym___forceinline] = ACTIONS(4383), - [anon_sym_thread_local] = ACTIONS(4383), - [anon_sym___thread] = ACTIONS(4383), - [anon_sym_const] = ACTIONS(4383), - [anon_sym_constexpr] = ACTIONS(4383), - [anon_sym_volatile] = ACTIONS(4383), - [anon_sym_restrict] = ACTIONS(4383), - [anon_sym___restrict__] = ACTIONS(4383), - [anon_sym__Atomic] = ACTIONS(4383), - [anon_sym__Noreturn] = ACTIONS(4383), - [anon_sym_noreturn] = ACTIONS(4383), - [anon_sym__Nonnull] = ACTIONS(4383), - [anon_sym_mutable] = ACTIONS(4383), - [anon_sym_constinit] = ACTIONS(4383), - [anon_sym_consteval] = ACTIONS(4383), - [anon_sym_alignas] = ACTIONS(4383), - [anon_sym__Alignas] = ACTIONS(4383), - [sym_primitive_type] = ACTIONS(4383), - [anon_sym_enum] = ACTIONS(4383), - [anon_sym_class] = ACTIONS(4383), - [anon_sym_struct] = ACTIONS(4383), - [anon_sym_union] = ACTIONS(4383), - [anon_sym_if] = ACTIONS(4383), - [anon_sym_switch] = ACTIONS(4383), - [anon_sym_case] = ACTIONS(4383), - [anon_sym_default] = ACTIONS(4383), - [anon_sym_while] = ACTIONS(4383), - [anon_sym_do] = ACTIONS(4383), - [anon_sym_for] = ACTIONS(4383), - [anon_sym_return] = ACTIONS(4383), - [anon_sym_break] = ACTIONS(4383), - [anon_sym_continue] = ACTIONS(4383), - [anon_sym_goto] = ACTIONS(4383), - [anon_sym_not] = ACTIONS(4383), - [anon_sym_compl] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4385), - [anon_sym_PLUS_PLUS] = ACTIONS(4385), - [anon_sym_sizeof] = ACTIONS(4383), - [anon_sym___alignof__] = ACTIONS(4383), - [anon_sym___alignof] = ACTIONS(4383), - [anon_sym__alignof] = ACTIONS(4383), - [anon_sym_alignof] = ACTIONS(4383), - [anon_sym__Alignof] = ACTIONS(4383), - [anon_sym_offsetof] = ACTIONS(4383), - [anon_sym__Generic] = ACTIONS(4383), - [anon_sym_typename] = ACTIONS(4383), - [anon_sym_asm] = ACTIONS(4383), - [anon_sym___asm__] = ACTIONS(4383), - [anon_sym___asm] = ACTIONS(4383), - [sym_number_literal] = ACTIONS(4385), - [anon_sym_L_SQUOTE] = ACTIONS(4385), - [anon_sym_u_SQUOTE] = ACTIONS(4385), - [anon_sym_U_SQUOTE] = ACTIONS(4385), - [anon_sym_u8_SQUOTE] = ACTIONS(4385), - [anon_sym_SQUOTE] = ACTIONS(4385), - [anon_sym_L_DQUOTE] = ACTIONS(4385), - [anon_sym_u_DQUOTE] = ACTIONS(4385), - [anon_sym_U_DQUOTE] = ACTIONS(4385), - [anon_sym_u8_DQUOTE] = ACTIONS(4385), - [anon_sym_DQUOTE] = ACTIONS(4385), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [anon_sym_NULL] = ACTIONS(4383), - [anon_sym_nullptr] = ACTIONS(4383), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4383), - [anon_sym_decltype] = ACTIONS(4383), - [anon_sym_explicit] = ACTIONS(4383), - [anon_sym_export] = ACTIONS(4383), - [anon_sym_module] = ACTIONS(4383), - [anon_sym_import] = ACTIONS(4383), - [anon_sym_template] = ACTIONS(4383), - [anon_sym_operator] = ACTIONS(4383), - [anon_sym_try] = ACTIONS(4383), - [anon_sym_delete] = ACTIONS(4383), - [anon_sym_throw] = ACTIONS(4383), - [anon_sym_namespace] = ACTIONS(4383), - [anon_sym_static_assert] = ACTIONS(4383), - [anon_sym_concept] = ACTIONS(4383), - [anon_sym_co_return] = ACTIONS(4383), - [anon_sym_co_yield] = ACTIONS(4383), - [anon_sym_R_DQUOTE] = ACTIONS(4385), - [anon_sym_LR_DQUOTE] = ACTIONS(4385), - [anon_sym_uR_DQUOTE] = ACTIONS(4385), - [anon_sym_UR_DQUOTE] = ACTIONS(4385), - [anon_sym_u8R_DQUOTE] = ACTIONS(4385), - [anon_sym_co_await] = ACTIONS(4383), - [anon_sym_new] = ACTIONS(4383), - [anon_sym_requires] = ACTIONS(4383), - [anon_sym_CARET_CARET] = ACTIONS(4385), - [anon_sym_LBRACK_COLON] = ACTIONS(4385), - [sym_this] = ACTIONS(4383), + [ts_builtin_sym_end] = ACTIONS(4269), + [sym_identifier] = ACTIONS(4267), + [aux_sym_preproc_include_token1] = ACTIONS(4267), + [aux_sym_preproc_def_token1] = ACTIONS(4267), + [aux_sym_preproc_if_token1] = ACTIONS(4267), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4267), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4267), + [sym_preproc_directive] = ACTIONS(4267), + [anon_sym_LPAREN2] = ACTIONS(4269), + [anon_sym_BANG] = ACTIONS(4269), + [anon_sym_TILDE] = ACTIONS(4269), + [anon_sym_DASH] = ACTIONS(4267), + [anon_sym_PLUS] = ACTIONS(4267), + [anon_sym_STAR] = ACTIONS(4269), + [anon_sym_AMP_AMP] = ACTIONS(4269), + [anon_sym_AMP] = ACTIONS(4267), + [anon_sym_SEMI] = ACTIONS(4269), + [anon_sym___extension__] = ACTIONS(4267), + [anon_sym_typedef] = ACTIONS(4267), + [anon_sym_virtual] = ACTIONS(4267), + [anon_sym_extern] = ACTIONS(4267), + [anon_sym___attribute__] = ACTIONS(4267), + [anon_sym___attribute] = ACTIONS(4267), + [anon_sym_using] = ACTIONS(4267), + [anon_sym_COLON_COLON] = ACTIONS(4269), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4269), + [anon_sym___declspec] = ACTIONS(4267), + [anon_sym___based] = ACTIONS(4267), + [anon_sym___cdecl] = ACTIONS(4267), + [anon_sym___clrcall] = ACTIONS(4267), + [anon_sym___stdcall] = ACTIONS(4267), + [anon_sym___fastcall] = ACTIONS(4267), + [anon_sym___thiscall] = ACTIONS(4267), + [anon_sym___vectorcall] = ACTIONS(4267), + [anon_sym_LBRACE] = ACTIONS(4269), + [anon_sym_signed] = ACTIONS(4267), + [anon_sym_unsigned] = ACTIONS(4267), + [anon_sym_long] = ACTIONS(4267), + [anon_sym_short] = ACTIONS(4267), + [anon_sym_LBRACK] = ACTIONS(4267), + [anon_sym_static] = ACTIONS(4267), + [anon_sym_register] = ACTIONS(4267), + [anon_sym_inline] = ACTIONS(4267), + [anon_sym___inline] = ACTIONS(4267), + [anon_sym___inline__] = ACTIONS(4267), + [anon_sym___forceinline] = ACTIONS(4267), + [anon_sym_thread_local] = ACTIONS(4267), + [anon_sym___thread] = ACTIONS(4267), + [anon_sym_const] = ACTIONS(4267), + [anon_sym_constexpr] = ACTIONS(4267), + [anon_sym_volatile] = ACTIONS(4267), + [anon_sym_restrict] = ACTIONS(4267), + [anon_sym___restrict__] = ACTIONS(4267), + [anon_sym__Atomic] = ACTIONS(4267), + [anon_sym__Noreturn] = ACTIONS(4267), + [anon_sym_noreturn] = ACTIONS(4267), + [anon_sym__Nonnull] = ACTIONS(4267), + [anon_sym_mutable] = ACTIONS(4267), + [anon_sym_constinit] = ACTIONS(4267), + [anon_sym_consteval] = ACTIONS(4267), + [anon_sym_alignas] = ACTIONS(4267), + [anon_sym__Alignas] = ACTIONS(4267), + [sym_primitive_type] = ACTIONS(4267), + [anon_sym_enum] = ACTIONS(4267), + [anon_sym_class] = ACTIONS(4267), + [anon_sym_struct] = ACTIONS(4267), + [anon_sym_union] = ACTIONS(4267), + [anon_sym_if] = ACTIONS(4267), + [anon_sym_switch] = ACTIONS(4267), + [anon_sym_case] = ACTIONS(4267), + [anon_sym_default] = ACTIONS(4267), + [anon_sym_while] = ACTIONS(4267), + [anon_sym_do] = ACTIONS(4267), + [anon_sym_for] = ACTIONS(4267), + [anon_sym_return] = ACTIONS(4267), + [anon_sym_break] = ACTIONS(4267), + [anon_sym_continue] = ACTIONS(4267), + [anon_sym_goto] = ACTIONS(4267), + [anon_sym_not] = ACTIONS(4267), + [anon_sym_compl] = ACTIONS(4267), + [anon_sym_DASH_DASH] = ACTIONS(4269), + [anon_sym_PLUS_PLUS] = ACTIONS(4269), + [anon_sym_sizeof] = ACTIONS(4267), + [anon_sym___alignof__] = ACTIONS(4267), + [anon_sym___alignof] = ACTIONS(4267), + [anon_sym__alignof] = ACTIONS(4267), + [anon_sym_alignof] = ACTIONS(4267), + [anon_sym__Alignof] = ACTIONS(4267), + [anon_sym_offsetof] = ACTIONS(4267), + [anon_sym__Generic] = ACTIONS(4267), + [anon_sym_typename] = ACTIONS(4267), + [anon_sym_asm] = ACTIONS(4267), + [anon_sym___asm__] = ACTIONS(4267), + [anon_sym___asm] = ACTIONS(4267), + [sym_number_literal] = ACTIONS(4269), + [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(4269), + [anon_sym_u_DQUOTE] = ACTIONS(4269), + [anon_sym_U_DQUOTE] = ACTIONS(4269), + [anon_sym_u8_DQUOTE] = ACTIONS(4269), + [anon_sym_DQUOTE] = ACTIONS(4269), + [sym_true] = ACTIONS(4267), + [sym_false] = ACTIONS(4267), + [anon_sym_NULL] = ACTIONS(4267), + [anon_sym_nullptr] = ACTIONS(4267), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4267), + [anon_sym_decltype] = ACTIONS(4267), + [anon_sym_explicit] = ACTIONS(4267), + [anon_sym_export] = ACTIONS(4267), + [anon_sym_module] = ACTIONS(4267), + [anon_sym_import] = ACTIONS(4267), + [anon_sym_template] = ACTIONS(4267), + [anon_sym_operator] = ACTIONS(4267), + [anon_sym_try] = ACTIONS(4267), + [anon_sym_delete] = ACTIONS(4267), + [anon_sym_throw] = ACTIONS(4267), + [anon_sym_namespace] = ACTIONS(4267), + [anon_sym_static_assert] = ACTIONS(4267), + [anon_sym_concept] = ACTIONS(4267), + [anon_sym_co_return] = ACTIONS(4267), + [anon_sym_co_yield] = ACTIONS(4267), + [anon_sym_R_DQUOTE] = ACTIONS(4269), + [anon_sym_LR_DQUOTE] = ACTIONS(4269), + [anon_sym_uR_DQUOTE] = ACTIONS(4269), + [anon_sym_UR_DQUOTE] = ACTIONS(4269), + [anon_sym_u8R_DQUOTE] = ACTIONS(4269), + [anon_sym_co_await] = ACTIONS(4267), + [anon_sym_new] = ACTIONS(4267), + [anon_sym_requires] = ACTIONS(4267), + [anon_sym_CARET_CARET] = ACTIONS(4269), + [anon_sym_LBRACK_COLON] = ACTIONS(4269), + [sym_this] = ACTIONS(4267), }, [STATE(894)] = { - [ts_builtin_sym_end] = ACTIONS(4050), - [sym_identifier] = ACTIONS(4048), - [aux_sym_preproc_include_token1] = ACTIONS(4048), - [aux_sym_preproc_def_token1] = ACTIONS(4048), - [aux_sym_preproc_if_token1] = ACTIONS(4048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), - [sym_preproc_directive] = ACTIONS(4048), - [anon_sym_LPAREN2] = ACTIONS(4050), - [anon_sym_BANG] = ACTIONS(4050), - [anon_sym_TILDE] = ACTIONS(4050), - [anon_sym_DASH] = ACTIONS(4048), - [anon_sym_PLUS] = ACTIONS(4048), - [anon_sym_STAR] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_SEMI] = ACTIONS(4050), - [anon_sym___extension__] = ACTIONS(4048), - [anon_sym_typedef] = ACTIONS(4048), - [anon_sym_virtual] = ACTIONS(4048), - [anon_sym_extern] = ACTIONS(4048), - [anon_sym___attribute__] = ACTIONS(4048), - [anon_sym___attribute] = ACTIONS(4048), - [anon_sym_using] = ACTIONS(4048), - [anon_sym_COLON_COLON] = ACTIONS(4050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), - [anon_sym___declspec] = ACTIONS(4048), - [anon_sym___based] = ACTIONS(4048), - [anon_sym___cdecl] = ACTIONS(4048), - [anon_sym___clrcall] = ACTIONS(4048), - [anon_sym___stdcall] = ACTIONS(4048), - [anon_sym___fastcall] = ACTIONS(4048), - [anon_sym___thiscall] = ACTIONS(4048), - [anon_sym___vectorcall] = ACTIONS(4048), - [anon_sym_LBRACE] = ACTIONS(4050), - [anon_sym_signed] = ACTIONS(4048), - [anon_sym_unsigned] = ACTIONS(4048), - [anon_sym_long] = ACTIONS(4048), - [anon_sym_short] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(4048), - [anon_sym_static] = ACTIONS(4048), - [anon_sym_register] = ACTIONS(4048), - [anon_sym_inline] = ACTIONS(4048), - [anon_sym___inline] = ACTIONS(4048), - [anon_sym___inline__] = ACTIONS(4048), - [anon_sym___forceinline] = ACTIONS(4048), - [anon_sym_thread_local] = ACTIONS(4048), - [anon_sym___thread] = ACTIONS(4048), - [anon_sym_const] = ACTIONS(4048), - [anon_sym_constexpr] = ACTIONS(4048), - [anon_sym_volatile] = ACTIONS(4048), - [anon_sym_restrict] = ACTIONS(4048), - [anon_sym___restrict__] = ACTIONS(4048), - [anon_sym__Atomic] = ACTIONS(4048), - [anon_sym__Noreturn] = ACTIONS(4048), - [anon_sym_noreturn] = ACTIONS(4048), - [anon_sym__Nonnull] = ACTIONS(4048), - [anon_sym_mutable] = ACTIONS(4048), - [anon_sym_constinit] = ACTIONS(4048), - [anon_sym_consteval] = ACTIONS(4048), - [anon_sym_alignas] = ACTIONS(4048), - [anon_sym__Alignas] = ACTIONS(4048), - [sym_primitive_type] = ACTIONS(4048), - [anon_sym_enum] = ACTIONS(4048), - [anon_sym_class] = ACTIONS(4048), - [anon_sym_struct] = ACTIONS(4048), - [anon_sym_union] = ACTIONS(4048), - [anon_sym_if] = ACTIONS(4048), - [anon_sym_switch] = ACTIONS(4048), - [anon_sym_case] = ACTIONS(4048), - [anon_sym_default] = ACTIONS(4048), - [anon_sym_while] = ACTIONS(4048), - [anon_sym_do] = ACTIONS(4048), - [anon_sym_for] = ACTIONS(4048), - [anon_sym_return] = ACTIONS(4048), - [anon_sym_break] = ACTIONS(4048), - [anon_sym_continue] = ACTIONS(4048), - [anon_sym_goto] = ACTIONS(4048), - [anon_sym_not] = ACTIONS(4048), - [anon_sym_compl] = ACTIONS(4048), - [anon_sym_DASH_DASH] = ACTIONS(4050), - [anon_sym_PLUS_PLUS] = ACTIONS(4050), - [anon_sym_sizeof] = ACTIONS(4048), - [anon_sym___alignof__] = ACTIONS(4048), - [anon_sym___alignof] = ACTIONS(4048), - [anon_sym__alignof] = ACTIONS(4048), - [anon_sym_alignof] = ACTIONS(4048), - [anon_sym__Alignof] = ACTIONS(4048), - [anon_sym_offsetof] = ACTIONS(4048), - [anon_sym__Generic] = ACTIONS(4048), - [anon_sym_typename] = ACTIONS(4048), - [anon_sym_asm] = ACTIONS(4048), - [anon_sym___asm__] = ACTIONS(4048), - [anon_sym___asm] = ACTIONS(4048), - [sym_number_literal] = ACTIONS(4050), - [anon_sym_L_SQUOTE] = ACTIONS(4050), - [anon_sym_u_SQUOTE] = ACTIONS(4050), - [anon_sym_U_SQUOTE] = ACTIONS(4050), - [anon_sym_u8_SQUOTE] = ACTIONS(4050), - [anon_sym_SQUOTE] = ACTIONS(4050), - [anon_sym_L_DQUOTE] = ACTIONS(4050), - [anon_sym_u_DQUOTE] = ACTIONS(4050), - [anon_sym_U_DQUOTE] = ACTIONS(4050), - [anon_sym_u8_DQUOTE] = ACTIONS(4050), - [anon_sym_DQUOTE] = ACTIONS(4050), - [sym_true] = ACTIONS(4048), - [sym_false] = ACTIONS(4048), - [anon_sym_NULL] = ACTIONS(4048), - [anon_sym_nullptr] = ACTIONS(4048), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4048), - [anon_sym_decltype] = ACTIONS(4048), - [anon_sym_explicit] = ACTIONS(4048), - [anon_sym_export] = ACTIONS(4048), - [anon_sym_module] = ACTIONS(4048), - [anon_sym_import] = ACTIONS(4048), - [anon_sym_template] = ACTIONS(4048), - [anon_sym_operator] = ACTIONS(4048), - [anon_sym_try] = ACTIONS(4048), - [anon_sym_delete] = ACTIONS(4048), - [anon_sym_throw] = ACTIONS(4048), - [anon_sym_namespace] = ACTIONS(4048), - [anon_sym_static_assert] = ACTIONS(4048), - [anon_sym_concept] = ACTIONS(4048), - [anon_sym_co_return] = ACTIONS(4048), - [anon_sym_co_yield] = ACTIONS(4048), - [anon_sym_R_DQUOTE] = ACTIONS(4050), - [anon_sym_LR_DQUOTE] = ACTIONS(4050), - [anon_sym_uR_DQUOTE] = ACTIONS(4050), - [anon_sym_UR_DQUOTE] = ACTIONS(4050), - [anon_sym_u8R_DQUOTE] = ACTIONS(4050), - [anon_sym_co_await] = ACTIONS(4048), - [anon_sym_new] = ACTIONS(4048), - [anon_sym_requires] = ACTIONS(4048), - [anon_sym_CARET_CARET] = ACTIONS(4050), - [anon_sym_LBRACK_COLON] = ACTIONS(4050), - [sym_this] = ACTIONS(4048), - }, - [STATE(895)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_preproc_def] = STATE(886), + [sym_preproc_function_def] = STATE(886), + [sym_preproc_call] = STATE(886), + [sym_preproc_if_in_field_declaration_list] = STATE(886), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(886), + [sym_type_definition] = STATE(886), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(886), + [sym_field_declaration] = STATE(886), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(886), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(886), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(886), + [sym_operator_cast_declaration] = STATE(886), + [sym_constructor_or_destructor_definition] = STATE(886), + [sym_constructor_or_destructor_declaration] = STATE(886), + [sym_friend_declaration] = STATE(886), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(886), + [sym_alias_declaration] = STATE(886), + [sym_static_assert_declaration] = STATE(886), + [sym_consteval_block_declaration] = STATE(886), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(886), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4740), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4763), + [anon_sym_RBRACE] = ACTIONS(4742), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -187377,7 +187238,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -187387,1794 +187248,1794 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(895)] = { + [sym_identifier] = ACTIONS(4484), + [aux_sym_preproc_include_token1] = ACTIONS(4484), + [aux_sym_preproc_def_token1] = ACTIONS(4484), + [aux_sym_preproc_if_token1] = ACTIONS(4484), + [aux_sym_preproc_if_token2] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4484), + [sym_preproc_directive] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_TILDE] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym___extension__] = ACTIONS(4484), + [anon_sym_typedef] = ACTIONS(4484), + [anon_sym_virtual] = ACTIONS(4484), + [anon_sym_extern] = ACTIONS(4484), + [anon_sym___attribute__] = ACTIONS(4484), + [anon_sym___attribute] = ACTIONS(4484), + [anon_sym_using] = ACTIONS(4484), + [anon_sym_COLON_COLON] = ACTIONS(4486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4486), + [anon_sym___declspec] = ACTIONS(4484), + [anon_sym___based] = ACTIONS(4484), + [anon_sym___cdecl] = ACTIONS(4484), + [anon_sym___clrcall] = ACTIONS(4484), + [anon_sym___stdcall] = ACTIONS(4484), + [anon_sym___fastcall] = ACTIONS(4484), + [anon_sym___thiscall] = ACTIONS(4484), + [anon_sym___vectorcall] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4486), + [anon_sym_signed] = ACTIONS(4484), + [anon_sym_unsigned] = ACTIONS(4484), + [anon_sym_long] = ACTIONS(4484), + [anon_sym_short] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_static] = ACTIONS(4484), + [anon_sym_register] = ACTIONS(4484), + [anon_sym_inline] = ACTIONS(4484), + [anon_sym___inline] = ACTIONS(4484), + [anon_sym___inline__] = ACTIONS(4484), + [anon_sym___forceinline] = ACTIONS(4484), + [anon_sym_thread_local] = ACTIONS(4484), + [anon_sym___thread] = ACTIONS(4484), + [anon_sym_const] = ACTIONS(4484), + [anon_sym_constexpr] = ACTIONS(4484), + [anon_sym_volatile] = ACTIONS(4484), + [anon_sym_restrict] = ACTIONS(4484), + [anon_sym___restrict__] = ACTIONS(4484), + [anon_sym__Atomic] = ACTIONS(4484), + [anon_sym__Noreturn] = ACTIONS(4484), + [anon_sym_noreturn] = ACTIONS(4484), + [anon_sym__Nonnull] = ACTIONS(4484), + [anon_sym_mutable] = ACTIONS(4484), + [anon_sym_constinit] = ACTIONS(4484), + [anon_sym_consteval] = ACTIONS(4484), + [anon_sym_alignas] = ACTIONS(4484), + [anon_sym__Alignas] = ACTIONS(4484), + [sym_primitive_type] = ACTIONS(4484), + [anon_sym_enum] = ACTIONS(4484), + [anon_sym_class] = ACTIONS(4484), + [anon_sym_struct] = ACTIONS(4484), + [anon_sym_union] = ACTIONS(4484), + [anon_sym_if] = ACTIONS(4484), + [anon_sym_switch] = ACTIONS(4484), + [anon_sym_case] = ACTIONS(4484), + [anon_sym_default] = ACTIONS(4484), + [anon_sym_while] = ACTIONS(4484), + [anon_sym_do] = ACTIONS(4484), + [anon_sym_for] = ACTIONS(4484), + [anon_sym_return] = ACTIONS(4484), + [anon_sym_break] = ACTIONS(4484), + [anon_sym_continue] = ACTIONS(4484), + [anon_sym_goto] = ACTIONS(4484), + [anon_sym_not] = ACTIONS(4484), + [anon_sym_compl] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4486), + [anon_sym_PLUS_PLUS] = ACTIONS(4486), + [anon_sym_sizeof] = ACTIONS(4484), + [anon_sym___alignof__] = ACTIONS(4484), + [anon_sym___alignof] = ACTIONS(4484), + [anon_sym__alignof] = ACTIONS(4484), + [anon_sym_alignof] = ACTIONS(4484), + [anon_sym__Alignof] = ACTIONS(4484), + [anon_sym_offsetof] = ACTIONS(4484), + [anon_sym__Generic] = ACTIONS(4484), + [anon_sym_typename] = ACTIONS(4484), + [anon_sym_asm] = ACTIONS(4484), + [anon_sym___asm__] = ACTIONS(4484), + [anon_sym___asm] = ACTIONS(4484), + [sym_number_literal] = ACTIONS(4486), + [anon_sym_L_SQUOTE] = ACTIONS(4486), + [anon_sym_u_SQUOTE] = ACTIONS(4486), + [anon_sym_U_SQUOTE] = ACTIONS(4486), + [anon_sym_u8_SQUOTE] = ACTIONS(4486), + [anon_sym_SQUOTE] = ACTIONS(4486), + [anon_sym_L_DQUOTE] = ACTIONS(4486), + [anon_sym_u_DQUOTE] = ACTIONS(4486), + [anon_sym_U_DQUOTE] = ACTIONS(4486), + [anon_sym_u8_DQUOTE] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym_true] = ACTIONS(4484), + [sym_false] = ACTIONS(4484), + [anon_sym_NULL] = ACTIONS(4484), + [anon_sym_nullptr] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4484), + [anon_sym_decltype] = ACTIONS(4484), + [anon_sym_explicit] = ACTIONS(4484), + [anon_sym_export] = ACTIONS(4484), + [anon_sym_module] = ACTIONS(4484), + [anon_sym_import] = ACTIONS(4484), + [anon_sym_template] = ACTIONS(4484), + [anon_sym_operator] = ACTIONS(4484), + [anon_sym_try] = ACTIONS(4484), + [anon_sym_delete] = ACTIONS(4484), + [anon_sym_throw] = ACTIONS(4484), + [anon_sym_namespace] = ACTIONS(4484), + [anon_sym_static_assert] = ACTIONS(4484), + [anon_sym_concept] = ACTIONS(4484), + [anon_sym_co_return] = ACTIONS(4484), + [anon_sym_co_yield] = ACTIONS(4484), + [anon_sym_R_DQUOTE] = ACTIONS(4486), + [anon_sym_LR_DQUOTE] = ACTIONS(4486), + [anon_sym_uR_DQUOTE] = ACTIONS(4486), + [anon_sym_UR_DQUOTE] = ACTIONS(4486), + [anon_sym_u8R_DQUOTE] = ACTIONS(4486), + [anon_sym_co_await] = ACTIONS(4484), + [anon_sym_new] = ACTIONS(4484), + [anon_sym_requires] = ACTIONS(4484), + [anon_sym_CARET_CARET] = ACTIONS(4486), + [anon_sym_LBRACK_COLON] = ACTIONS(4486), + [sym_this] = ACTIONS(4484), }, [STATE(896)] = { - [sym_identifier] = ACTIONS(4522), - [aux_sym_preproc_include_token1] = ACTIONS(4522), - [aux_sym_preproc_def_token1] = ACTIONS(4522), - [aux_sym_preproc_if_token1] = ACTIONS(4522), - [aux_sym_preproc_if_token2] = ACTIONS(4522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4522), - [sym_preproc_directive] = ACTIONS(4522), - [anon_sym_LPAREN2] = ACTIONS(4524), - [anon_sym_BANG] = ACTIONS(4524), - [anon_sym_TILDE] = ACTIONS(4524), - [anon_sym_DASH] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4522), - [anon_sym_STAR] = ACTIONS(4524), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_AMP] = ACTIONS(4522), - [anon_sym_SEMI] = ACTIONS(4524), - [anon_sym___extension__] = ACTIONS(4522), - [anon_sym_typedef] = ACTIONS(4522), - [anon_sym_virtual] = ACTIONS(4522), - [anon_sym_extern] = ACTIONS(4522), - [anon_sym___attribute__] = ACTIONS(4522), - [anon_sym___attribute] = ACTIONS(4522), - [anon_sym_using] = ACTIONS(4522), - [anon_sym_COLON_COLON] = ACTIONS(4524), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4524), - [anon_sym___declspec] = ACTIONS(4522), - [anon_sym___based] = ACTIONS(4522), - [anon_sym___cdecl] = ACTIONS(4522), - [anon_sym___clrcall] = ACTIONS(4522), - [anon_sym___stdcall] = ACTIONS(4522), - [anon_sym___fastcall] = ACTIONS(4522), - [anon_sym___thiscall] = ACTIONS(4522), - [anon_sym___vectorcall] = ACTIONS(4522), - [anon_sym_LBRACE] = ACTIONS(4524), - [anon_sym_signed] = ACTIONS(4522), - [anon_sym_unsigned] = ACTIONS(4522), - [anon_sym_long] = ACTIONS(4522), - [anon_sym_short] = ACTIONS(4522), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_static] = ACTIONS(4522), - [anon_sym_register] = ACTIONS(4522), - [anon_sym_inline] = ACTIONS(4522), - [anon_sym___inline] = ACTIONS(4522), - [anon_sym___inline__] = ACTIONS(4522), - [anon_sym___forceinline] = ACTIONS(4522), - [anon_sym_thread_local] = ACTIONS(4522), - [anon_sym___thread] = ACTIONS(4522), - [anon_sym_const] = ACTIONS(4522), - [anon_sym_constexpr] = ACTIONS(4522), - [anon_sym_volatile] = ACTIONS(4522), - [anon_sym_restrict] = ACTIONS(4522), - [anon_sym___restrict__] = ACTIONS(4522), - [anon_sym__Atomic] = ACTIONS(4522), - [anon_sym__Noreturn] = ACTIONS(4522), - [anon_sym_noreturn] = ACTIONS(4522), - [anon_sym__Nonnull] = ACTIONS(4522), - [anon_sym_mutable] = ACTIONS(4522), - [anon_sym_constinit] = ACTIONS(4522), - [anon_sym_consteval] = ACTIONS(4522), - [anon_sym_alignas] = ACTIONS(4522), - [anon_sym__Alignas] = ACTIONS(4522), - [sym_primitive_type] = ACTIONS(4522), - [anon_sym_enum] = ACTIONS(4522), - [anon_sym_class] = ACTIONS(4522), - [anon_sym_struct] = ACTIONS(4522), - [anon_sym_union] = ACTIONS(4522), - [anon_sym_if] = ACTIONS(4522), - [anon_sym_switch] = ACTIONS(4522), - [anon_sym_case] = ACTIONS(4522), - [anon_sym_default] = ACTIONS(4522), - [anon_sym_while] = ACTIONS(4522), - [anon_sym_do] = ACTIONS(4522), - [anon_sym_for] = ACTIONS(4522), - [anon_sym_return] = ACTIONS(4522), - [anon_sym_break] = ACTIONS(4522), - [anon_sym_continue] = ACTIONS(4522), - [anon_sym_goto] = ACTIONS(4522), - [anon_sym_not] = ACTIONS(4522), - [anon_sym_compl] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4524), - [anon_sym_PLUS_PLUS] = ACTIONS(4524), - [anon_sym_sizeof] = ACTIONS(4522), - [anon_sym___alignof__] = ACTIONS(4522), - [anon_sym___alignof] = ACTIONS(4522), - [anon_sym__alignof] = ACTIONS(4522), - [anon_sym_alignof] = ACTIONS(4522), - [anon_sym__Alignof] = ACTIONS(4522), - [anon_sym_offsetof] = ACTIONS(4522), - [anon_sym__Generic] = ACTIONS(4522), - [anon_sym_typename] = ACTIONS(4522), - [anon_sym_asm] = ACTIONS(4522), - [anon_sym___asm__] = ACTIONS(4522), - [anon_sym___asm] = ACTIONS(4522), - [sym_number_literal] = ACTIONS(4524), - [anon_sym_L_SQUOTE] = ACTIONS(4524), - [anon_sym_u_SQUOTE] = ACTIONS(4524), - [anon_sym_U_SQUOTE] = ACTIONS(4524), - [anon_sym_u8_SQUOTE] = ACTIONS(4524), - [anon_sym_SQUOTE] = ACTIONS(4524), - [anon_sym_L_DQUOTE] = ACTIONS(4524), - [anon_sym_u_DQUOTE] = ACTIONS(4524), - [anon_sym_U_DQUOTE] = ACTIONS(4524), - [anon_sym_u8_DQUOTE] = ACTIONS(4524), - [anon_sym_DQUOTE] = ACTIONS(4524), - [sym_true] = ACTIONS(4522), - [sym_false] = ACTIONS(4522), - [anon_sym_NULL] = ACTIONS(4522), - [anon_sym_nullptr] = ACTIONS(4522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4522), - [anon_sym_decltype] = ACTIONS(4522), - [anon_sym_explicit] = ACTIONS(4522), - [anon_sym_export] = ACTIONS(4522), - [anon_sym_module] = ACTIONS(4522), - [anon_sym_import] = ACTIONS(4522), - [anon_sym_template] = ACTIONS(4522), - [anon_sym_operator] = ACTIONS(4522), - [anon_sym_try] = ACTIONS(4522), - [anon_sym_delete] = ACTIONS(4522), - [anon_sym_throw] = ACTIONS(4522), - [anon_sym_namespace] = ACTIONS(4522), - [anon_sym_static_assert] = ACTIONS(4522), - [anon_sym_concept] = ACTIONS(4522), - [anon_sym_co_return] = ACTIONS(4522), - [anon_sym_co_yield] = ACTIONS(4522), - [anon_sym_R_DQUOTE] = ACTIONS(4524), - [anon_sym_LR_DQUOTE] = ACTIONS(4524), - [anon_sym_uR_DQUOTE] = ACTIONS(4524), - [anon_sym_UR_DQUOTE] = ACTIONS(4524), - [anon_sym_u8R_DQUOTE] = ACTIONS(4524), - [anon_sym_co_await] = ACTIONS(4522), - [anon_sym_new] = ACTIONS(4522), - [anon_sym_requires] = ACTIONS(4522), - [anon_sym_CARET_CARET] = ACTIONS(4524), - [anon_sym_LBRACK_COLON] = ACTIONS(4524), - [sym_this] = ACTIONS(4522), + [ts_builtin_sym_end] = ACTIONS(3824), + [sym_identifier] = ACTIONS(3822), + [aux_sym_preproc_include_token1] = ACTIONS(3822), + [aux_sym_preproc_def_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token1] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3822), + [sym_preproc_directive] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_BANG] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_DASH] = ACTIONS(3822), + [anon_sym_PLUS] = ACTIONS(3822), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3824), + [anon_sym___extension__] = ACTIONS(3822), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_virtual] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym___attribute__] = ACTIONS(3822), + [anon_sym___attribute] = ACTIONS(3822), + [anon_sym_using] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3824), + [anon_sym___declspec] = ACTIONS(3822), + [anon_sym___based] = ACTIONS(3822), + [anon_sym___cdecl] = ACTIONS(3822), + [anon_sym___clrcall] = ACTIONS(3822), + [anon_sym___stdcall] = ACTIONS(3822), + [anon_sym___fastcall] = ACTIONS(3822), + [anon_sym___thiscall] = ACTIONS(3822), + [anon_sym___vectorcall] = ACTIONS(3822), + [anon_sym_LBRACE] = ACTIONS(3824), + [anon_sym_signed] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3822), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_inline] = ACTIONS(3822), + [anon_sym___inline] = ACTIONS(3822), + [anon_sym___inline__] = ACTIONS(3822), + [anon_sym___forceinline] = ACTIONS(3822), + [anon_sym_thread_local] = ACTIONS(3822), + [anon_sym___thread] = ACTIONS(3822), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_constexpr] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym___restrict__] = ACTIONS(3822), + [anon_sym__Atomic] = ACTIONS(3822), + [anon_sym__Noreturn] = ACTIONS(3822), + [anon_sym_noreturn] = ACTIONS(3822), + [anon_sym__Nonnull] = ACTIONS(3822), + [anon_sym_mutable] = ACTIONS(3822), + [anon_sym_constinit] = ACTIONS(3822), + [anon_sym_consteval] = ACTIONS(3822), + [anon_sym_alignas] = ACTIONS(3822), + [anon_sym__Alignas] = ACTIONS(3822), + [sym_primitive_type] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_class] = ACTIONS(3822), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_if] = ACTIONS(3822), + [anon_sym_switch] = ACTIONS(3822), + [anon_sym_case] = ACTIONS(3822), + [anon_sym_default] = ACTIONS(3822), + [anon_sym_while] = ACTIONS(3822), + [anon_sym_do] = ACTIONS(3822), + [anon_sym_for] = ACTIONS(3822), + [anon_sym_return] = ACTIONS(3822), + [anon_sym_break] = ACTIONS(3822), + [anon_sym_continue] = ACTIONS(3822), + [anon_sym_goto] = ACTIONS(3822), + [anon_sym_not] = ACTIONS(3822), + [anon_sym_compl] = ACTIONS(3822), + [anon_sym_DASH_DASH] = ACTIONS(3824), + [anon_sym_PLUS_PLUS] = ACTIONS(3824), + [anon_sym_sizeof] = ACTIONS(3822), + [anon_sym___alignof__] = ACTIONS(3822), + [anon_sym___alignof] = ACTIONS(3822), + [anon_sym__alignof] = ACTIONS(3822), + [anon_sym_alignof] = ACTIONS(3822), + [anon_sym__Alignof] = ACTIONS(3822), + [anon_sym_offsetof] = ACTIONS(3822), + [anon_sym__Generic] = ACTIONS(3822), + [anon_sym_typename] = ACTIONS(3822), + [anon_sym_asm] = ACTIONS(3822), + [anon_sym___asm__] = ACTIONS(3822), + [anon_sym___asm] = ACTIONS(3822), + [sym_number_literal] = ACTIONS(3824), + [anon_sym_L_SQUOTE] = ACTIONS(3824), + [anon_sym_u_SQUOTE] = ACTIONS(3824), + [anon_sym_U_SQUOTE] = ACTIONS(3824), + [anon_sym_u8_SQUOTE] = ACTIONS(3824), + [anon_sym_SQUOTE] = ACTIONS(3824), + [anon_sym_L_DQUOTE] = ACTIONS(3824), + [anon_sym_u_DQUOTE] = ACTIONS(3824), + [anon_sym_U_DQUOTE] = ACTIONS(3824), + [anon_sym_u8_DQUOTE] = ACTIONS(3824), + [anon_sym_DQUOTE] = ACTIONS(3824), + [sym_true] = ACTIONS(3822), + [sym_false] = ACTIONS(3822), + [anon_sym_NULL] = ACTIONS(3822), + [anon_sym_nullptr] = ACTIONS(3822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3822), + [anon_sym_decltype] = ACTIONS(3822), + [anon_sym_explicit] = ACTIONS(3822), + [anon_sym_export] = ACTIONS(3822), + [anon_sym_module] = ACTIONS(3822), + [anon_sym_import] = ACTIONS(3822), + [anon_sym_template] = ACTIONS(3822), + [anon_sym_operator] = ACTIONS(3822), + [anon_sym_try] = ACTIONS(3822), + [anon_sym_delete] = ACTIONS(3822), + [anon_sym_throw] = ACTIONS(3822), + [anon_sym_namespace] = ACTIONS(3822), + [anon_sym_static_assert] = ACTIONS(3822), + [anon_sym_concept] = ACTIONS(3822), + [anon_sym_co_return] = ACTIONS(3822), + [anon_sym_co_yield] = ACTIONS(3822), + [anon_sym_R_DQUOTE] = ACTIONS(3824), + [anon_sym_LR_DQUOTE] = ACTIONS(3824), + [anon_sym_uR_DQUOTE] = ACTIONS(3824), + [anon_sym_UR_DQUOTE] = ACTIONS(3824), + [anon_sym_u8R_DQUOTE] = ACTIONS(3824), + [anon_sym_co_await] = ACTIONS(3822), + [anon_sym_new] = ACTIONS(3822), + [anon_sym_requires] = ACTIONS(3822), + [anon_sym_CARET_CARET] = ACTIONS(3824), + [anon_sym_LBRACK_COLON] = ACTIONS(3824), + [sym_this] = ACTIONS(3822), }, [STATE(897)] = { - [sym_identifier] = ACTIONS(4504), - [aux_sym_preproc_include_token1] = ACTIONS(4504), - [aux_sym_preproc_def_token1] = ACTIONS(4504), - [aux_sym_preproc_if_token1] = ACTIONS(4504), - [aux_sym_preproc_if_token2] = ACTIONS(4504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4504), - [sym_preproc_directive] = ACTIONS(4504), - [anon_sym_LPAREN2] = ACTIONS(4507), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_TILDE] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP_AMP] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(4504), - [anon_sym_typedef] = ACTIONS(4504), - [anon_sym_virtual] = ACTIONS(4504), - [anon_sym_extern] = ACTIONS(4504), - [anon_sym___attribute__] = ACTIONS(4504), - [anon_sym___attribute] = ACTIONS(4504), - [anon_sym_using] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4507), - [anon_sym___declspec] = ACTIONS(4504), - [anon_sym___based] = ACTIONS(4504), - [anon_sym___cdecl] = ACTIONS(4504), - [anon_sym___clrcall] = ACTIONS(4504), - [anon_sym___stdcall] = ACTIONS(4504), - [anon_sym___fastcall] = ACTIONS(4504), - [anon_sym___thiscall] = ACTIONS(4504), - [anon_sym___vectorcall] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4507), - [anon_sym_signed] = ACTIONS(4504), - [anon_sym_unsigned] = ACTIONS(4504), - [anon_sym_long] = ACTIONS(4504), - [anon_sym_short] = ACTIONS(4504), - [anon_sym_LBRACK] = ACTIONS(4504), - [anon_sym_static] = ACTIONS(4504), - [anon_sym_register] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym___inline] = ACTIONS(4504), - [anon_sym___inline__] = ACTIONS(4504), - [anon_sym___forceinline] = ACTIONS(4504), - [anon_sym_thread_local] = ACTIONS(4504), - [anon_sym___thread] = ACTIONS(4504), - [anon_sym_const] = ACTIONS(4504), - [anon_sym_constexpr] = ACTIONS(4504), - [anon_sym_volatile] = ACTIONS(4504), - [anon_sym_restrict] = ACTIONS(4504), - [anon_sym___restrict__] = ACTIONS(4504), - [anon_sym__Atomic] = ACTIONS(4504), - [anon_sym__Noreturn] = ACTIONS(4504), - [anon_sym_noreturn] = ACTIONS(4504), - [anon_sym__Nonnull] = ACTIONS(4504), - [anon_sym_mutable] = ACTIONS(4504), - [anon_sym_constinit] = ACTIONS(4504), - [anon_sym_consteval] = ACTIONS(4504), - [anon_sym_alignas] = ACTIONS(4504), - [anon_sym__Alignas] = ACTIONS(4504), - [sym_primitive_type] = ACTIONS(4504), - [anon_sym_enum] = ACTIONS(4504), - [anon_sym_class] = ACTIONS(4504), - [anon_sym_struct] = ACTIONS(4504), - [anon_sym_union] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_switch] = ACTIONS(4504), - [anon_sym_case] = ACTIONS(4504), - [anon_sym_default] = ACTIONS(4504), - [anon_sym_while] = ACTIONS(4504), - [anon_sym_do] = ACTIONS(4504), - [anon_sym_for] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_goto] = ACTIONS(4504), - [anon_sym_not] = ACTIONS(4504), - [anon_sym_compl] = ACTIONS(4504), - [anon_sym_DASH_DASH] = ACTIONS(4507), - [anon_sym_PLUS_PLUS] = ACTIONS(4507), - [anon_sym_sizeof] = ACTIONS(4504), - [anon_sym___alignof__] = ACTIONS(4504), - [anon_sym___alignof] = ACTIONS(4504), - [anon_sym__alignof] = ACTIONS(4504), - [anon_sym_alignof] = ACTIONS(4504), - [anon_sym__Alignof] = ACTIONS(4504), - [anon_sym_offsetof] = ACTIONS(4504), - [anon_sym__Generic] = ACTIONS(4504), - [anon_sym_typename] = ACTIONS(4504), - [anon_sym_asm] = ACTIONS(4504), - [anon_sym___asm__] = ACTIONS(4504), - [anon_sym___asm] = ACTIONS(4504), - [sym_number_literal] = ACTIONS(4507), - [anon_sym_L_SQUOTE] = ACTIONS(4507), - [anon_sym_u_SQUOTE] = ACTIONS(4507), - [anon_sym_U_SQUOTE] = ACTIONS(4507), - [anon_sym_u8_SQUOTE] = ACTIONS(4507), - [anon_sym_SQUOTE] = ACTIONS(4507), - [anon_sym_L_DQUOTE] = ACTIONS(4507), - [anon_sym_u_DQUOTE] = ACTIONS(4507), - [anon_sym_U_DQUOTE] = ACTIONS(4507), - [anon_sym_u8_DQUOTE] = ACTIONS(4507), - [anon_sym_DQUOTE] = ACTIONS(4507), - [sym_true] = ACTIONS(4504), - [sym_false] = ACTIONS(4504), - [anon_sym_NULL] = ACTIONS(4504), - [anon_sym_nullptr] = ACTIONS(4504), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4504), - [anon_sym_decltype] = ACTIONS(4504), - [anon_sym_explicit] = ACTIONS(4504), - [anon_sym_export] = ACTIONS(4504), - [anon_sym_module] = ACTIONS(4504), - [anon_sym_import] = ACTIONS(4504), - [anon_sym_template] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_delete] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_namespace] = ACTIONS(4504), - [anon_sym_static_assert] = ACTIONS(4504), - [anon_sym_concept] = ACTIONS(4504), - [anon_sym_co_return] = ACTIONS(4504), - [anon_sym_co_yield] = ACTIONS(4504), - [anon_sym_R_DQUOTE] = ACTIONS(4507), - [anon_sym_LR_DQUOTE] = ACTIONS(4507), - [anon_sym_uR_DQUOTE] = ACTIONS(4507), - [anon_sym_UR_DQUOTE] = ACTIONS(4507), - [anon_sym_u8R_DQUOTE] = ACTIONS(4507), - [anon_sym_co_await] = ACTIONS(4504), - [anon_sym_new] = ACTIONS(4504), - [anon_sym_requires] = ACTIONS(4504), - [anon_sym_CARET_CARET] = ACTIONS(4507), - [anon_sym_LBRACK_COLON] = ACTIONS(4507), - [sym_this] = ACTIONS(4504), + [ts_builtin_sym_end] = ACTIONS(3732), + [sym_identifier] = ACTIONS(3730), + [aux_sym_preproc_include_token1] = ACTIONS(3730), + [aux_sym_preproc_def_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3730), + [sym_preproc_directive] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_BANG] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym___extension__] = ACTIONS(3730), + [anon_sym_typedef] = ACTIONS(3730), + [anon_sym_virtual] = ACTIONS(3730), + [anon_sym_extern] = ACTIONS(3730), + [anon_sym___attribute__] = ACTIONS(3730), + [anon_sym___attribute] = ACTIONS(3730), + [anon_sym_using] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3732), + [anon_sym___declspec] = ACTIONS(3730), + [anon_sym___based] = ACTIONS(3730), + [anon_sym___cdecl] = ACTIONS(3730), + [anon_sym___clrcall] = ACTIONS(3730), + [anon_sym___stdcall] = ACTIONS(3730), + [anon_sym___fastcall] = ACTIONS(3730), + [anon_sym___thiscall] = ACTIONS(3730), + [anon_sym___vectorcall] = ACTIONS(3730), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_signed] = ACTIONS(3730), + [anon_sym_unsigned] = ACTIONS(3730), + [anon_sym_long] = ACTIONS(3730), + [anon_sym_short] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_static] = ACTIONS(3730), + [anon_sym_register] = ACTIONS(3730), + [anon_sym_inline] = ACTIONS(3730), + [anon_sym___inline] = ACTIONS(3730), + [anon_sym___inline__] = ACTIONS(3730), + [anon_sym___forceinline] = ACTIONS(3730), + [anon_sym_thread_local] = ACTIONS(3730), + [anon_sym___thread] = ACTIONS(3730), + [anon_sym_const] = ACTIONS(3730), + [anon_sym_constexpr] = ACTIONS(3730), + [anon_sym_volatile] = ACTIONS(3730), + [anon_sym_restrict] = ACTIONS(3730), + [anon_sym___restrict__] = ACTIONS(3730), + [anon_sym__Atomic] = ACTIONS(3730), + [anon_sym__Noreturn] = ACTIONS(3730), + [anon_sym_noreturn] = ACTIONS(3730), + [anon_sym__Nonnull] = ACTIONS(3730), + [anon_sym_mutable] = ACTIONS(3730), + [anon_sym_constinit] = ACTIONS(3730), + [anon_sym_consteval] = ACTIONS(3730), + [anon_sym_alignas] = ACTIONS(3730), + [anon_sym__Alignas] = ACTIONS(3730), + [sym_primitive_type] = ACTIONS(3730), + [anon_sym_enum] = ACTIONS(3730), + [anon_sym_class] = ACTIONS(3730), + [anon_sym_struct] = ACTIONS(3730), + [anon_sym_union] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_switch] = ACTIONS(3730), + [anon_sym_case] = ACTIONS(3730), + [anon_sym_default] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_break] = ACTIONS(3730), + [anon_sym_continue] = ACTIONS(3730), + [anon_sym_goto] = ACTIONS(3730), + [anon_sym_not] = ACTIONS(3730), + [anon_sym_compl] = ACTIONS(3730), + [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_PLUS_PLUS] = ACTIONS(3732), + [anon_sym_sizeof] = ACTIONS(3730), + [anon_sym___alignof__] = ACTIONS(3730), + [anon_sym___alignof] = ACTIONS(3730), + [anon_sym__alignof] = ACTIONS(3730), + [anon_sym_alignof] = ACTIONS(3730), + [anon_sym__Alignof] = ACTIONS(3730), + [anon_sym_offsetof] = ACTIONS(3730), + [anon_sym__Generic] = ACTIONS(3730), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_asm] = ACTIONS(3730), + [anon_sym___asm__] = ACTIONS(3730), + [anon_sym___asm] = ACTIONS(3730), + [sym_number_literal] = ACTIONS(3732), + [anon_sym_L_SQUOTE] = ACTIONS(3732), + [anon_sym_u_SQUOTE] = ACTIONS(3732), + [anon_sym_U_SQUOTE] = ACTIONS(3732), + [anon_sym_u8_SQUOTE] = ACTIONS(3732), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_L_DQUOTE] = ACTIONS(3732), + [anon_sym_u_DQUOTE] = ACTIONS(3732), + [anon_sym_U_DQUOTE] = ACTIONS(3732), + [anon_sym_u8_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(3732), + [sym_true] = ACTIONS(3730), + [sym_false] = ACTIONS(3730), + [anon_sym_NULL] = ACTIONS(3730), + [anon_sym_nullptr] = ACTIONS(3730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3730), + [anon_sym_decltype] = ACTIONS(3730), + [anon_sym_explicit] = ACTIONS(3730), + [anon_sym_export] = ACTIONS(3730), + [anon_sym_module] = ACTIONS(3730), + [anon_sym_import] = ACTIONS(3730), + [anon_sym_template] = ACTIONS(3730), + [anon_sym_operator] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_delete] = ACTIONS(3730), + [anon_sym_throw] = ACTIONS(3730), + [anon_sym_namespace] = ACTIONS(3730), + [anon_sym_static_assert] = ACTIONS(3730), + [anon_sym_concept] = ACTIONS(3730), + [anon_sym_co_return] = ACTIONS(3730), + [anon_sym_co_yield] = ACTIONS(3730), + [anon_sym_R_DQUOTE] = ACTIONS(3732), + [anon_sym_LR_DQUOTE] = ACTIONS(3732), + [anon_sym_uR_DQUOTE] = ACTIONS(3732), + [anon_sym_UR_DQUOTE] = ACTIONS(3732), + [anon_sym_u8R_DQUOTE] = ACTIONS(3732), + [anon_sym_co_await] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_requires] = ACTIONS(3730), + [anon_sym_CARET_CARET] = ACTIONS(3732), + [anon_sym_LBRACK_COLON] = ACTIONS(3732), + [sym_this] = ACTIONS(3730), }, [STATE(898)] = { - [ts_builtin_sym_end] = ACTIONS(4134), - [sym_identifier] = ACTIONS(4132), - [aux_sym_preproc_include_token1] = ACTIONS(4132), - [aux_sym_preproc_def_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), - [sym_preproc_directive] = ACTIONS(4132), - [anon_sym_LPAREN2] = ACTIONS(4134), - [anon_sym_BANG] = ACTIONS(4134), - [anon_sym_TILDE] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym___extension__] = ACTIONS(4132), - [anon_sym_typedef] = ACTIONS(4132), - [anon_sym_virtual] = ACTIONS(4132), - [anon_sym_extern] = ACTIONS(4132), - [anon_sym___attribute__] = ACTIONS(4132), - [anon_sym___attribute] = ACTIONS(4132), - [anon_sym_using] = ACTIONS(4132), - [anon_sym_COLON_COLON] = ACTIONS(4134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), - [anon_sym___declspec] = ACTIONS(4132), - [anon_sym___based] = ACTIONS(4132), - [anon_sym___cdecl] = ACTIONS(4132), - [anon_sym___clrcall] = ACTIONS(4132), - [anon_sym___stdcall] = ACTIONS(4132), - [anon_sym___fastcall] = ACTIONS(4132), - [anon_sym___thiscall] = ACTIONS(4132), - [anon_sym___vectorcall] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4134), - [anon_sym_signed] = ACTIONS(4132), - [anon_sym_unsigned] = ACTIONS(4132), - [anon_sym_long] = ACTIONS(4132), - [anon_sym_short] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_static] = ACTIONS(4132), - [anon_sym_register] = ACTIONS(4132), - [anon_sym_inline] = ACTIONS(4132), - [anon_sym___inline] = ACTIONS(4132), - [anon_sym___inline__] = ACTIONS(4132), - [anon_sym___forceinline] = ACTIONS(4132), - [anon_sym_thread_local] = ACTIONS(4132), - [anon_sym___thread] = ACTIONS(4132), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_constexpr] = ACTIONS(4132), - [anon_sym_volatile] = ACTIONS(4132), - [anon_sym_restrict] = ACTIONS(4132), - [anon_sym___restrict__] = ACTIONS(4132), - [anon_sym__Atomic] = ACTIONS(4132), - [anon_sym__Noreturn] = ACTIONS(4132), - [anon_sym_noreturn] = ACTIONS(4132), - [anon_sym__Nonnull] = ACTIONS(4132), - [anon_sym_mutable] = ACTIONS(4132), - [anon_sym_constinit] = ACTIONS(4132), - [anon_sym_consteval] = ACTIONS(4132), - [anon_sym_alignas] = ACTIONS(4132), - [anon_sym__Alignas] = ACTIONS(4132), - [sym_primitive_type] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_class] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_switch] = ACTIONS(4132), - [anon_sym_case] = ACTIONS(4132), - [anon_sym_default] = ACTIONS(4132), - [anon_sym_while] = ACTIONS(4132), - [anon_sym_do] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym_not] = ACTIONS(4132), - [anon_sym_compl] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_sizeof] = ACTIONS(4132), - [anon_sym___alignof__] = ACTIONS(4132), - [anon_sym___alignof] = ACTIONS(4132), - [anon_sym__alignof] = ACTIONS(4132), - [anon_sym_alignof] = ACTIONS(4132), - [anon_sym__Alignof] = ACTIONS(4132), - [anon_sym_offsetof] = ACTIONS(4132), - [anon_sym__Generic] = ACTIONS(4132), - [anon_sym_typename] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [anon_sym___asm] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4134), - [anon_sym_u_SQUOTE] = ACTIONS(4134), - [anon_sym_U_SQUOTE] = ACTIONS(4134), - [anon_sym_u8_SQUOTE] = ACTIONS(4134), - [anon_sym_SQUOTE] = ACTIONS(4134), - [anon_sym_L_DQUOTE] = ACTIONS(4134), - [anon_sym_u_DQUOTE] = ACTIONS(4134), - [anon_sym_U_DQUOTE] = ACTIONS(4134), - [anon_sym_u8_DQUOTE] = ACTIONS(4134), - [anon_sym_DQUOTE] = ACTIONS(4134), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [anon_sym_NULL] = ACTIONS(4132), - [anon_sym_nullptr] = ACTIONS(4132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4132), - [anon_sym_decltype] = ACTIONS(4132), - [anon_sym_explicit] = ACTIONS(4132), - [anon_sym_export] = ACTIONS(4132), - [anon_sym_module] = ACTIONS(4132), - [anon_sym_import] = ACTIONS(4132), - [anon_sym_template] = ACTIONS(4132), - [anon_sym_operator] = ACTIONS(4132), - [anon_sym_try] = ACTIONS(4132), - [anon_sym_delete] = ACTIONS(4132), - [anon_sym_throw] = ACTIONS(4132), - [anon_sym_namespace] = ACTIONS(4132), - [anon_sym_static_assert] = ACTIONS(4132), - [anon_sym_concept] = ACTIONS(4132), - [anon_sym_co_return] = ACTIONS(4132), - [anon_sym_co_yield] = ACTIONS(4132), - [anon_sym_R_DQUOTE] = ACTIONS(4134), - [anon_sym_LR_DQUOTE] = ACTIONS(4134), - [anon_sym_uR_DQUOTE] = ACTIONS(4134), - [anon_sym_UR_DQUOTE] = ACTIONS(4134), - [anon_sym_u8R_DQUOTE] = ACTIONS(4134), - [anon_sym_co_await] = ACTIONS(4132), - [anon_sym_new] = ACTIONS(4132), - [anon_sym_requires] = ACTIONS(4132), - [anon_sym_CARET_CARET] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4134), - [sym_this] = ACTIONS(4132), + [ts_builtin_sym_end] = ACTIONS(4283), + [sym_identifier] = ACTIONS(4281), + [aux_sym_preproc_include_token1] = ACTIONS(4281), + [aux_sym_preproc_def_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token1] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4281), + [sym_preproc_directive] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4283), + [anon_sym_BANG] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_DASH] = ACTIONS(4281), + [anon_sym_PLUS] = ACTIONS(4281), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym___extension__] = ACTIONS(4281), + [anon_sym_typedef] = ACTIONS(4281), + [anon_sym_virtual] = ACTIONS(4281), + [anon_sym_extern] = ACTIONS(4281), + [anon_sym___attribute__] = ACTIONS(4281), + [anon_sym___attribute] = ACTIONS(4281), + [anon_sym_using] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4283), + [anon_sym___declspec] = ACTIONS(4281), + [anon_sym___based] = ACTIONS(4281), + [anon_sym___cdecl] = ACTIONS(4281), + [anon_sym___clrcall] = ACTIONS(4281), + [anon_sym___stdcall] = ACTIONS(4281), + [anon_sym___fastcall] = ACTIONS(4281), + [anon_sym___thiscall] = ACTIONS(4281), + [anon_sym___vectorcall] = ACTIONS(4281), + [anon_sym_LBRACE] = ACTIONS(4283), + [anon_sym_signed] = ACTIONS(4281), + [anon_sym_unsigned] = ACTIONS(4281), + [anon_sym_long] = ACTIONS(4281), + [anon_sym_short] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_static] = ACTIONS(4281), + [anon_sym_register] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym___inline] = ACTIONS(4281), + [anon_sym___inline__] = ACTIONS(4281), + [anon_sym___forceinline] = ACTIONS(4281), + [anon_sym_thread_local] = ACTIONS(4281), + [anon_sym___thread] = ACTIONS(4281), + [anon_sym_const] = ACTIONS(4281), + [anon_sym_constexpr] = ACTIONS(4281), + [anon_sym_volatile] = ACTIONS(4281), + [anon_sym_restrict] = ACTIONS(4281), + [anon_sym___restrict__] = ACTIONS(4281), + [anon_sym__Atomic] = ACTIONS(4281), + [anon_sym__Noreturn] = ACTIONS(4281), + [anon_sym_noreturn] = ACTIONS(4281), + [anon_sym__Nonnull] = ACTIONS(4281), + [anon_sym_mutable] = ACTIONS(4281), + [anon_sym_constinit] = ACTIONS(4281), + [anon_sym_consteval] = ACTIONS(4281), + [anon_sym_alignas] = ACTIONS(4281), + [anon_sym__Alignas] = ACTIONS(4281), + [sym_primitive_type] = ACTIONS(4281), + [anon_sym_enum] = ACTIONS(4281), + [anon_sym_class] = ACTIONS(4281), + [anon_sym_struct] = ACTIONS(4281), + [anon_sym_union] = ACTIONS(4281), + [anon_sym_if] = ACTIONS(4281), + [anon_sym_switch] = ACTIONS(4281), + [anon_sym_case] = ACTIONS(4281), + [anon_sym_default] = ACTIONS(4281), + [anon_sym_while] = ACTIONS(4281), + [anon_sym_do] = ACTIONS(4281), + [anon_sym_for] = ACTIONS(4281), + [anon_sym_return] = ACTIONS(4281), + [anon_sym_break] = ACTIONS(4281), + [anon_sym_continue] = ACTIONS(4281), + [anon_sym_goto] = ACTIONS(4281), + [anon_sym_not] = ACTIONS(4281), + [anon_sym_compl] = ACTIONS(4281), + [anon_sym_DASH_DASH] = ACTIONS(4283), + [anon_sym_PLUS_PLUS] = ACTIONS(4283), + [anon_sym_sizeof] = ACTIONS(4281), + [anon_sym___alignof__] = ACTIONS(4281), + [anon_sym___alignof] = ACTIONS(4281), + [anon_sym__alignof] = ACTIONS(4281), + [anon_sym_alignof] = ACTIONS(4281), + [anon_sym__Alignof] = ACTIONS(4281), + [anon_sym_offsetof] = ACTIONS(4281), + [anon_sym__Generic] = ACTIONS(4281), + [anon_sym_typename] = ACTIONS(4281), + [anon_sym_asm] = ACTIONS(4281), + [anon_sym___asm__] = ACTIONS(4281), + [anon_sym___asm] = ACTIONS(4281), + [sym_number_literal] = ACTIONS(4283), + [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(4283), + [anon_sym_u_DQUOTE] = ACTIONS(4283), + [anon_sym_U_DQUOTE] = ACTIONS(4283), + [anon_sym_u8_DQUOTE] = ACTIONS(4283), + [anon_sym_DQUOTE] = ACTIONS(4283), + [sym_true] = ACTIONS(4281), + [sym_false] = ACTIONS(4281), + [anon_sym_NULL] = ACTIONS(4281), + [anon_sym_nullptr] = ACTIONS(4281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4281), + [anon_sym_decltype] = ACTIONS(4281), + [anon_sym_explicit] = ACTIONS(4281), + [anon_sym_export] = ACTIONS(4281), + [anon_sym_module] = ACTIONS(4281), + [anon_sym_import] = ACTIONS(4281), + [anon_sym_template] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_try] = ACTIONS(4281), + [anon_sym_delete] = ACTIONS(4281), + [anon_sym_throw] = ACTIONS(4281), + [anon_sym_namespace] = ACTIONS(4281), + [anon_sym_static_assert] = ACTIONS(4281), + [anon_sym_concept] = ACTIONS(4281), + [anon_sym_co_return] = ACTIONS(4281), + [anon_sym_co_yield] = ACTIONS(4281), + [anon_sym_R_DQUOTE] = ACTIONS(4283), + [anon_sym_LR_DQUOTE] = ACTIONS(4283), + [anon_sym_uR_DQUOTE] = ACTIONS(4283), + [anon_sym_UR_DQUOTE] = ACTIONS(4283), + [anon_sym_u8R_DQUOTE] = ACTIONS(4283), + [anon_sym_co_await] = ACTIONS(4281), + [anon_sym_new] = ACTIONS(4281), + [anon_sym_requires] = ACTIONS(4281), + [anon_sym_CARET_CARET] = ACTIONS(4283), + [anon_sym_LBRACK_COLON] = ACTIONS(4283), + [sym_this] = ACTIONS(4281), }, [STATE(899)] = { - [ts_builtin_sym_end] = ACTIONS(4106), - [sym_identifier] = ACTIONS(4104), - [aux_sym_preproc_include_token1] = ACTIONS(4104), - [aux_sym_preproc_def_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token1] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), - [sym_preproc_directive] = ACTIONS(4104), - [anon_sym_LPAREN2] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_DASH] = ACTIONS(4104), - [anon_sym_PLUS] = ACTIONS(4104), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym___extension__] = ACTIONS(4104), - [anon_sym_typedef] = ACTIONS(4104), - [anon_sym_virtual] = ACTIONS(4104), - [anon_sym_extern] = ACTIONS(4104), - [anon_sym___attribute__] = ACTIONS(4104), - [anon_sym___attribute] = ACTIONS(4104), - [anon_sym_using] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), - [anon_sym___declspec] = ACTIONS(4104), - [anon_sym___based] = ACTIONS(4104), - [anon_sym___cdecl] = ACTIONS(4104), - [anon_sym___clrcall] = ACTIONS(4104), - [anon_sym___stdcall] = ACTIONS(4104), - [anon_sym___fastcall] = ACTIONS(4104), - [anon_sym___thiscall] = ACTIONS(4104), - [anon_sym___vectorcall] = ACTIONS(4104), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_signed] = ACTIONS(4104), - [anon_sym_unsigned] = ACTIONS(4104), - [anon_sym_long] = ACTIONS(4104), - [anon_sym_short] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(4104), - [anon_sym_static] = ACTIONS(4104), - [anon_sym_register] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym___inline] = ACTIONS(4104), - [anon_sym___inline__] = ACTIONS(4104), - [anon_sym___forceinline] = ACTIONS(4104), - [anon_sym_thread_local] = ACTIONS(4104), - [anon_sym___thread] = ACTIONS(4104), - [anon_sym_const] = ACTIONS(4104), - [anon_sym_constexpr] = ACTIONS(4104), - [anon_sym_volatile] = ACTIONS(4104), - [anon_sym_restrict] = ACTIONS(4104), - [anon_sym___restrict__] = ACTIONS(4104), - [anon_sym__Atomic] = ACTIONS(4104), - [anon_sym__Noreturn] = ACTIONS(4104), - [anon_sym_noreturn] = ACTIONS(4104), - [anon_sym__Nonnull] = ACTIONS(4104), - [anon_sym_mutable] = ACTIONS(4104), - [anon_sym_constinit] = ACTIONS(4104), - [anon_sym_consteval] = ACTIONS(4104), - [anon_sym_alignas] = ACTIONS(4104), - [anon_sym__Alignas] = ACTIONS(4104), - [sym_primitive_type] = ACTIONS(4104), - [anon_sym_enum] = ACTIONS(4104), - [anon_sym_class] = ACTIONS(4104), - [anon_sym_struct] = ACTIONS(4104), - [anon_sym_union] = ACTIONS(4104), - [anon_sym_if] = ACTIONS(4104), - [anon_sym_switch] = ACTIONS(4104), - [anon_sym_case] = ACTIONS(4104), - [anon_sym_default] = ACTIONS(4104), - [anon_sym_while] = ACTIONS(4104), - [anon_sym_do] = ACTIONS(4104), - [anon_sym_for] = ACTIONS(4104), - [anon_sym_return] = ACTIONS(4104), - [anon_sym_break] = ACTIONS(4104), - [anon_sym_continue] = ACTIONS(4104), - [anon_sym_goto] = ACTIONS(4104), - [anon_sym_not] = ACTIONS(4104), - [anon_sym_compl] = ACTIONS(4104), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_sizeof] = ACTIONS(4104), - [anon_sym___alignof__] = ACTIONS(4104), - [anon_sym___alignof] = ACTIONS(4104), - [anon_sym__alignof] = ACTIONS(4104), - [anon_sym_alignof] = ACTIONS(4104), - [anon_sym__Alignof] = ACTIONS(4104), - [anon_sym_offsetof] = ACTIONS(4104), - [anon_sym__Generic] = ACTIONS(4104), - [anon_sym_typename] = ACTIONS(4104), - [anon_sym_asm] = ACTIONS(4104), - [anon_sym___asm__] = ACTIONS(4104), - [anon_sym___asm] = ACTIONS(4104), - [sym_number_literal] = ACTIONS(4106), - [anon_sym_L_SQUOTE] = ACTIONS(4106), - [anon_sym_u_SQUOTE] = ACTIONS(4106), - [anon_sym_U_SQUOTE] = ACTIONS(4106), - [anon_sym_u8_SQUOTE] = ACTIONS(4106), - [anon_sym_SQUOTE] = ACTIONS(4106), - [anon_sym_L_DQUOTE] = ACTIONS(4106), - [anon_sym_u_DQUOTE] = ACTIONS(4106), - [anon_sym_U_DQUOTE] = ACTIONS(4106), - [anon_sym_u8_DQUOTE] = ACTIONS(4106), - [anon_sym_DQUOTE] = ACTIONS(4106), - [sym_true] = ACTIONS(4104), - [sym_false] = ACTIONS(4104), - [anon_sym_NULL] = ACTIONS(4104), - [anon_sym_nullptr] = ACTIONS(4104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4104), - [anon_sym_decltype] = ACTIONS(4104), - [anon_sym_explicit] = ACTIONS(4104), - [anon_sym_export] = ACTIONS(4104), - [anon_sym_module] = ACTIONS(4104), - [anon_sym_import] = ACTIONS(4104), - [anon_sym_template] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_try] = ACTIONS(4104), - [anon_sym_delete] = ACTIONS(4104), - [anon_sym_throw] = ACTIONS(4104), - [anon_sym_namespace] = ACTIONS(4104), - [anon_sym_static_assert] = ACTIONS(4104), - [anon_sym_concept] = ACTIONS(4104), - [anon_sym_co_return] = ACTIONS(4104), - [anon_sym_co_yield] = ACTIONS(4104), - [anon_sym_R_DQUOTE] = ACTIONS(4106), - [anon_sym_LR_DQUOTE] = ACTIONS(4106), - [anon_sym_uR_DQUOTE] = ACTIONS(4106), - [anon_sym_UR_DQUOTE] = ACTIONS(4106), - [anon_sym_u8R_DQUOTE] = ACTIONS(4106), - [anon_sym_co_await] = ACTIONS(4104), - [anon_sym_new] = ACTIONS(4104), - [anon_sym_requires] = ACTIONS(4104), - [anon_sym_CARET_CARET] = ACTIONS(4106), - [anon_sym_LBRACK_COLON] = ACTIONS(4106), - [sym_this] = ACTIONS(4104), + [ts_builtin_sym_end] = ACTIONS(4486), + [sym_identifier] = ACTIONS(4484), + [aux_sym_preproc_include_token1] = ACTIONS(4484), + [aux_sym_preproc_def_token1] = ACTIONS(4484), + [aux_sym_preproc_if_token1] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4484), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4484), + [sym_preproc_directive] = ACTIONS(4484), + [anon_sym_LPAREN2] = ACTIONS(4486), + [anon_sym_BANG] = ACTIONS(4486), + [anon_sym_TILDE] = ACTIONS(4486), + [anon_sym_DASH] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4486), + [anon_sym_AMP_AMP] = ACTIONS(4486), + [anon_sym_AMP] = ACTIONS(4484), + [anon_sym_SEMI] = ACTIONS(4486), + [anon_sym___extension__] = ACTIONS(4484), + [anon_sym_typedef] = ACTIONS(4484), + [anon_sym_virtual] = ACTIONS(4484), + [anon_sym_extern] = ACTIONS(4484), + [anon_sym___attribute__] = ACTIONS(4484), + [anon_sym___attribute] = ACTIONS(4484), + [anon_sym_using] = ACTIONS(4484), + [anon_sym_COLON_COLON] = ACTIONS(4486), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4486), + [anon_sym___declspec] = ACTIONS(4484), + [anon_sym___based] = ACTIONS(4484), + [anon_sym___cdecl] = ACTIONS(4484), + [anon_sym___clrcall] = ACTIONS(4484), + [anon_sym___stdcall] = ACTIONS(4484), + [anon_sym___fastcall] = ACTIONS(4484), + [anon_sym___thiscall] = ACTIONS(4484), + [anon_sym___vectorcall] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4486), + [anon_sym_signed] = ACTIONS(4484), + [anon_sym_unsigned] = ACTIONS(4484), + [anon_sym_long] = ACTIONS(4484), + [anon_sym_short] = ACTIONS(4484), + [anon_sym_LBRACK] = ACTIONS(4484), + [anon_sym_static] = ACTIONS(4484), + [anon_sym_register] = ACTIONS(4484), + [anon_sym_inline] = ACTIONS(4484), + [anon_sym___inline] = ACTIONS(4484), + [anon_sym___inline__] = ACTIONS(4484), + [anon_sym___forceinline] = ACTIONS(4484), + [anon_sym_thread_local] = ACTIONS(4484), + [anon_sym___thread] = ACTIONS(4484), + [anon_sym_const] = ACTIONS(4484), + [anon_sym_constexpr] = ACTIONS(4484), + [anon_sym_volatile] = ACTIONS(4484), + [anon_sym_restrict] = ACTIONS(4484), + [anon_sym___restrict__] = ACTIONS(4484), + [anon_sym__Atomic] = ACTIONS(4484), + [anon_sym__Noreturn] = ACTIONS(4484), + [anon_sym_noreturn] = ACTIONS(4484), + [anon_sym__Nonnull] = ACTIONS(4484), + [anon_sym_mutable] = ACTIONS(4484), + [anon_sym_constinit] = ACTIONS(4484), + [anon_sym_consteval] = ACTIONS(4484), + [anon_sym_alignas] = ACTIONS(4484), + [anon_sym__Alignas] = ACTIONS(4484), + [sym_primitive_type] = ACTIONS(4484), + [anon_sym_enum] = ACTIONS(4484), + [anon_sym_class] = ACTIONS(4484), + [anon_sym_struct] = ACTIONS(4484), + [anon_sym_union] = ACTIONS(4484), + [anon_sym_if] = ACTIONS(4484), + [anon_sym_switch] = ACTIONS(4484), + [anon_sym_case] = ACTIONS(4484), + [anon_sym_default] = ACTIONS(4484), + [anon_sym_while] = ACTIONS(4484), + [anon_sym_do] = ACTIONS(4484), + [anon_sym_for] = ACTIONS(4484), + [anon_sym_return] = ACTIONS(4484), + [anon_sym_break] = ACTIONS(4484), + [anon_sym_continue] = ACTIONS(4484), + [anon_sym_goto] = ACTIONS(4484), + [anon_sym_not] = ACTIONS(4484), + [anon_sym_compl] = ACTIONS(4484), + [anon_sym_DASH_DASH] = ACTIONS(4486), + [anon_sym_PLUS_PLUS] = ACTIONS(4486), + [anon_sym_sizeof] = ACTIONS(4484), + [anon_sym___alignof__] = ACTIONS(4484), + [anon_sym___alignof] = ACTIONS(4484), + [anon_sym__alignof] = ACTIONS(4484), + [anon_sym_alignof] = ACTIONS(4484), + [anon_sym__Alignof] = ACTIONS(4484), + [anon_sym_offsetof] = ACTIONS(4484), + [anon_sym__Generic] = ACTIONS(4484), + [anon_sym_typename] = ACTIONS(4484), + [anon_sym_asm] = ACTIONS(4484), + [anon_sym___asm__] = ACTIONS(4484), + [anon_sym___asm] = ACTIONS(4484), + [sym_number_literal] = ACTIONS(4486), + [anon_sym_L_SQUOTE] = ACTIONS(4486), + [anon_sym_u_SQUOTE] = ACTIONS(4486), + [anon_sym_U_SQUOTE] = ACTIONS(4486), + [anon_sym_u8_SQUOTE] = ACTIONS(4486), + [anon_sym_SQUOTE] = ACTIONS(4486), + [anon_sym_L_DQUOTE] = ACTIONS(4486), + [anon_sym_u_DQUOTE] = ACTIONS(4486), + [anon_sym_U_DQUOTE] = ACTIONS(4486), + [anon_sym_u8_DQUOTE] = ACTIONS(4486), + [anon_sym_DQUOTE] = ACTIONS(4486), + [sym_true] = ACTIONS(4484), + [sym_false] = ACTIONS(4484), + [anon_sym_NULL] = ACTIONS(4484), + [anon_sym_nullptr] = ACTIONS(4484), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4484), + [anon_sym_decltype] = ACTIONS(4484), + [anon_sym_explicit] = ACTIONS(4484), + [anon_sym_export] = ACTIONS(4484), + [anon_sym_module] = ACTIONS(4484), + [anon_sym_import] = ACTIONS(4484), + [anon_sym_template] = ACTIONS(4484), + [anon_sym_operator] = ACTIONS(4484), + [anon_sym_try] = ACTIONS(4484), + [anon_sym_delete] = ACTIONS(4484), + [anon_sym_throw] = ACTIONS(4484), + [anon_sym_namespace] = ACTIONS(4484), + [anon_sym_static_assert] = ACTIONS(4484), + [anon_sym_concept] = ACTIONS(4484), + [anon_sym_co_return] = ACTIONS(4484), + [anon_sym_co_yield] = ACTIONS(4484), + [anon_sym_R_DQUOTE] = ACTIONS(4486), + [anon_sym_LR_DQUOTE] = ACTIONS(4486), + [anon_sym_uR_DQUOTE] = ACTIONS(4486), + [anon_sym_UR_DQUOTE] = ACTIONS(4486), + [anon_sym_u8R_DQUOTE] = ACTIONS(4486), + [anon_sym_co_await] = ACTIONS(4484), + [anon_sym_new] = ACTIONS(4484), + [anon_sym_requires] = ACTIONS(4484), + [anon_sym_CARET_CARET] = ACTIONS(4486), + [anon_sym_LBRACK_COLON] = ACTIONS(4486), + [sym_this] = ACTIONS(4484), }, [STATE(900)] = { - [ts_builtin_sym_end] = ACTIONS(4456), - [sym_identifier] = ACTIONS(4454), - [aux_sym_preproc_include_token1] = ACTIONS(4454), - [aux_sym_preproc_def_token1] = ACTIONS(4454), - [aux_sym_preproc_if_token1] = ACTIONS(4454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4454), - [sym_preproc_directive] = ACTIONS(4454), - [anon_sym_LPAREN2] = ACTIONS(4456), - [anon_sym_BANG] = ACTIONS(4456), - [anon_sym_TILDE] = ACTIONS(4456), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4456), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4454), - [anon_sym_SEMI] = ACTIONS(4456), - [anon_sym___extension__] = ACTIONS(4454), - [anon_sym_typedef] = ACTIONS(4454), - [anon_sym_virtual] = ACTIONS(4454), - [anon_sym_extern] = ACTIONS(4454), - [anon_sym___attribute__] = ACTIONS(4454), - [anon_sym___attribute] = ACTIONS(4454), - [anon_sym_using] = ACTIONS(4454), - [anon_sym_COLON_COLON] = ACTIONS(4456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4456), - [anon_sym___declspec] = ACTIONS(4454), - [anon_sym___based] = ACTIONS(4454), - [anon_sym___cdecl] = ACTIONS(4454), - [anon_sym___clrcall] = ACTIONS(4454), - [anon_sym___stdcall] = ACTIONS(4454), - [anon_sym___fastcall] = ACTIONS(4454), - [anon_sym___thiscall] = ACTIONS(4454), - [anon_sym___vectorcall] = ACTIONS(4454), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_signed] = ACTIONS(4454), - [anon_sym_unsigned] = ACTIONS(4454), - [anon_sym_long] = ACTIONS(4454), - [anon_sym_short] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_static] = ACTIONS(4454), - [anon_sym_register] = ACTIONS(4454), - [anon_sym_inline] = ACTIONS(4454), - [anon_sym___inline] = ACTIONS(4454), - [anon_sym___inline__] = ACTIONS(4454), - [anon_sym___forceinline] = ACTIONS(4454), - [anon_sym_thread_local] = ACTIONS(4454), - [anon_sym___thread] = ACTIONS(4454), - [anon_sym_const] = ACTIONS(4454), - [anon_sym_constexpr] = ACTIONS(4454), - [anon_sym_volatile] = ACTIONS(4454), - [anon_sym_restrict] = ACTIONS(4454), - [anon_sym___restrict__] = ACTIONS(4454), - [anon_sym__Atomic] = ACTIONS(4454), - [anon_sym__Noreturn] = ACTIONS(4454), - [anon_sym_noreturn] = ACTIONS(4454), - [anon_sym__Nonnull] = ACTIONS(4454), - [anon_sym_mutable] = ACTIONS(4454), - [anon_sym_constinit] = ACTIONS(4454), - [anon_sym_consteval] = ACTIONS(4454), - [anon_sym_alignas] = ACTIONS(4454), - [anon_sym__Alignas] = ACTIONS(4454), - [sym_primitive_type] = ACTIONS(4454), - [anon_sym_enum] = ACTIONS(4454), - [anon_sym_class] = ACTIONS(4454), - [anon_sym_struct] = ACTIONS(4454), - [anon_sym_union] = ACTIONS(4454), - [anon_sym_if] = ACTIONS(4454), - [anon_sym_switch] = ACTIONS(4454), - [anon_sym_case] = ACTIONS(4454), - [anon_sym_default] = ACTIONS(4454), - [anon_sym_while] = ACTIONS(4454), - [anon_sym_do] = ACTIONS(4454), - [anon_sym_for] = ACTIONS(4454), - [anon_sym_return] = ACTIONS(4454), - [anon_sym_break] = ACTIONS(4454), - [anon_sym_continue] = ACTIONS(4454), - [anon_sym_goto] = ACTIONS(4454), - [anon_sym_not] = ACTIONS(4454), - [anon_sym_compl] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_sizeof] = ACTIONS(4454), - [anon_sym___alignof__] = ACTIONS(4454), - [anon_sym___alignof] = ACTIONS(4454), - [anon_sym__alignof] = ACTIONS(4454), - [anon_sym_alignof] = ACTIONS(4454), - [anon_sym__Alignof] = ACTIONS(4454), - [anon_sym_offsetof] = ACTIONS(4454), - [anon_sym__Generic] = ACTIONS(4454), - [anon_sym_typename] = ACTIONS(4454), - [anon_sym_asm] = ACTIONS(4454), - [anon_sym___asm__] = ACTIONS(4454), - [anon_sym___asm] = ACTIONS(4454), - [sym_number_literal] = ACTIONS(4456), - [anon_sym_L_SQUOTE] = ACTIONS(4456), - [anon_sym_u_SQUOTE] = ACTIONS(4456), - [anon_sym_U_SQUOTE] = ACTIONS(4456), - [anon_sym_u8_SQUOTE] = ACTIONS(4456), - [anon_sym_SQUOTE] = ACTIONS(4456), - [anon_sym_L_DQUOTE] = ACTIONS(4456), - [anon_sym_u_DQUOTE] = ACTIONS(4456), - [anon_sym_U_DQUOTE] = ACTIONS(4456), - [anon_sym_u8_DQUOTE] = ACTIONS(4456), - [anon_sym_DQUOTE] = ACTIONS(4456), - [sym_true] = ACTIONS(4454), - [sym_false] = ACTIONS(4454), - [anon_sym_NULL] = ACTIONS(4454), - [anon_sym_nullptr] = ACTIONS(4454), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4454), - [anon_sym_decltype] = ACTIONS(4454), - [anon_sym_explicit] = ACTIONS(4454), - [anon_sym_export] = ACTIONS(4454), - [anon_sym_module] = ACTIONS(4454), - [anon_sym_import] = ACTIONS(4454), - [anon_sym_template] = ACTIONS(4454), - [anon_sym_operator] = ACTIONS(4454), - [anon_sym_try] = ACTIONS(4454), - [anon_sym_delete] = ACTIONS(4454), - [anon_sym_throw] = ACTIONS(4454), - [anon_sym_namespace] = ACTIONS(4454), - [anon_sym_static_assert] = ACTIONS(4454), - [anon_sym_concept] = ACTIONS(4454), - [anon_sym_co_return] = ACTIONS(4454), - [anon_sym_co_yield] = ACTIONS(4454), - [anon_sym_R_DQUOTE] = ACTIONS(4456), - [anon_sym_LR_DQUOTE] = ACTIONS(4456), - [anon_sym_uR_DQUOTE] = ACTIONS(4456), - [anon_sym_UR_DQUOTE] = ACTIONS(4456), - [anon_sym_u8R_DQUOTE] = ACTIONS(4456), - [anon_sym_co_await] = ACTIONS(4454), - [anon_sym_new] = ACTIONS(4454), - [anon_sym_requires] = ACTIONS(4454), - [anon_sym_CARET_CARET] = ACTIONS(4456), - [anon_sym_LBRACK_COLON] = ACTIONS(4456), - [sym_this] = ACTIONS(4454), + [ts_builtin_sym_end] = ACTIONS(3692), + [sym_identifier] = ACTIONS(3690), + [aux_sym_preproc_include_token1] = ACTIONS(3690), + [aux_sym_preproc_def_token1] = ACTIONS(3690), + [aux_sym_preproc_if_token1] = ACTIONS(3690), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3690), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3690), + [sym_preproc_directive] = ACTIONS(3690), + [anon_sym_LPAREN2] = ACTIONS(3692), + [anon_sym_BANG] = ACTIONS(3692), + [anon_sym_TILDE] = ACTIONS(3692), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_PLUS] = ACTIONS(3690), + [anon_sym_STAR] = ACTIONS(3692), + [anon_sym_AMP_AMP] = ACTIONS(3692), + [anon_sym_AMP] = ACTIONS(3690), + [anon_sym_SEMI] = ACTIONS(3692), + [anon_sym___extension__] = ACTIONS(3690), + [anon_sym_typedef] = ACTIONS(3690), + [anon_sym_virtual] = ACTIONS(3690), + [anon_sym_extern] = ACTIONS(3690), + [anon_sym___attribute__] = ACTIONS(3690), + [anon_sym___attribute] = ACTIONS(3690), + [anon_sym_using] = ACTIONS(3690), + [anon_sym_COLON_COLON] = ACTIONS(3692), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3692), + [anon_sym___declspec] = ACTIONS(3690), + [anon_sym___based] = ACTIONS(3690), + [anon_sym___cdecl] = ACTIONS(3690), + [anon_sym___clrcall] = ACTIONS(3690), + [anon_sym___stdcall] = ACTIONS(3690), + [anon_sym___fastcall] = ACTIONS(3690), + [anon_sym___thiscall] = ACTIONS(3690), + [anon_sym___vectorcall] = ACTIONS(3690), + [anon_sym_LBRACE] = ACTIONS(3692), + [anon_sym_signed] = ACTIONS(3690), + [anon_sym_unsigned] = ACTIONS(3690), + [anon_sym_long] = ACTIONS(3690), + [anon_sym_short] = ACTIONS(3690), + [anon_sym_LBRACK] = ACTIONS(3690), + [anon_sym_static] = ACTIONS(3690), + [anon_sym_register] = ACTIONS(3690), + [anon_sym_inline] = ACTIONS(3690), + [anon_sym___inline] = ACTIONS(3690), + [anon_sym___inline__] = ACTIONS(3690), + [anon_sym___forceinline] = ACTIONS(3690), + [anon_sym_thread_local] = ACTIONS(3690), + [anon_sym___thread] = ACTIONS(3690), + [anon_sym_const] = ACTIONS(3690), + [anon_sym_constexpr] = ACTIONS(3690), + [anon_sym_volatile] = ACTIONS(3690), + [anon_sym_restrict] = ACTIONS(3690), + [anon_sym___restrict__] = ACTIONS(3690), + [anon_sym__Atomic] = ACTIONS(3690), + [anon_sym__Noreturn] = ACTIONS(3690), + [anon_sym_noreturn] = ACTIONS(3690), + [anon_sym__Nonnull] = ACTIONS(3690), + [anon_sym_mutable] = ACTIONS(3690), + [anon_sym_constinit] = ACTIONS(3690), + [anon_sym_consteval] = ACTIONS(3690), + [anon_sym_alignas] = ACTIONS(3690), + [anon_sym__Alignas] = ACTIONS(3690), + [sym_primitive_type] = ACTIONS(3690), + [anon_sym_enum] = ACTIONS(3690), + [anon_sym_class] = ACTIONS(3690), + [anon_sym_struct] = ACTIONS(3690), + [anon_sym_union] = ACTIONS(3690), + [anon_sym_if] = ACTIONS(3690), + [anon_sym_switch] = ACTIONS(3690), + [anon_sym_case] = ACTIONS(3690), + [anon_sym_default] = ACTIONS(3690), + [anon_sym_while] = ACTIONS(3690), + [anon_sym_do] = ACTIONS(3690), + [anon_sym_for] = ACTIONS(3690), + [anon_sym_return] = ACTIONS(3690), + [anon_sym_break] = ACTIONS(3690), + [anon_sym_continue] = ACTIONS(3690), + [anon_sym_goto] = ACTIONS(3690), + [anon_sym_not] = ACTIONS(3690), + [anon_sym_compl] = ACTIONS(3690), + [anon_sym_DASH_DASH] = ACTIONS(3692), + [anon_sym_PLUS_PLUS] = ACTIONS(3692), + [anon_sym_sizeof] = ACTIONS(3690), + [anon_sym___alignof__] = ACTIONS(3690), + [anon_sym___alignof] = ACTIONS(3690), + [anon_sym__alignof] = ACTIONS(3690), + [anon_sym_alignof] = ACTIONS(3690), + [anon_sym__Alignof] = ACTIONS(3690), + [anon_sym_offsetof] = ACTIONS(3690), + [anon_sym__Generic] = ACTIONS(3690), + [anon_sym_typename] = ACTIONS(3690), + [anon_sym_asm] = ACTIONS(3690), + [anon_sym___asm__] = ACTIONS(3690), + [anon_sym___asm] = ACTIONS(3690), + [sym_number_literal] = ACTIONS(3692), + [anon_sym_L_SQUOTE] = ACTIONS(3692), + [anon_sym_u_SQUOTE] = ACTIONS(3692), + [anon_sym_U_SQUOTE] = ACTIONS(3692), + [anon_sym_u8_SQUOTE] = ACTIONS(3692), + [anon_sym_SQUOTE] = ACTIONS(3692), + [anon_sym_L_DQUOTE] = ACTIONS(3692), + [anon_sym_u_DQUOTE] = ACTIONS(3692), + [anon_sym_U_DQUOTE] = ACTIONS(3692), + [anon_sym_u8_DQUOTE] = ACTIONS(3692), + [anon_sym_DQUOTE] = ACTIONS(3692), + [sym_true] = ACTIONS(3690), + [sym_false] = ACTIONS(3690), + [anon_sym_NULL] = ACTIONS(3690), + [anon_sym_nullptr] = ACTIONS(3690), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3690), + [anon_sym_decltype] = ACTIONS(3690), + [anon_sym_explicit] = ACTIONS(3690), + [anon_sym_export] = ACTIONS(3690), + [anon_sym_module] = ACTIONS(3690), + [anon_sym_import] = ACTIONS(3690), + [anon_sym_template] = ACTIONS(3690), + [anon_sym_operator] = ACTIONS(3690), + [anon_sym_try] = ACTIONS(3690), + [anon_sym_delete] = ACTIONS(3690), + [anon_sym_throw] = ACTIONS(3690), + [anon_sym_namespace] = ACTIONS(3690), + [anon_sym_static_assert] = ACTIONS(3690), + [anon_sym_concept] = ACTIONS(3690), + [anon_sym_co_return] = ACTIONS(3690), + [anon_sym_co_yield] = ACTIONS(3690), + [anon_sym_R_DQUOTE] = ACTIONS(3692), + [anon_sym_LR_DQUOTE] = ACTIONS(3692), + [anon_sym_uR_DQUOTE] = ACTIONS(3692), + [anon_sym_UR_DQUOTE] = ACTIONS(3692), + [anon_sym_u8R_DQUOTE] = ACTIONS(3692), + [anon_sym_co_await] = ACTIONS(3690), + [anon_sym_new] = ACTIONS(3690), + [anon_sym_requires] = ACTIONS(3690), + [anon_sym_CARET_CARET] = ACTIONS(3692), + [anon_sym_LBRACK_COLON] = ACTIONS(3692), + [sym_this] = ACTIONS(3690), }, [STATE(901)] = { - [ts_builtin_sym_end] = ACTIONS(4460), - [sym_identifier] = ACTIONS(4458), - [aux_sym_preproc_include_token1] = ACTIONS(4458), - [aux_sym_preproc_def_token1] = ACTIONS(4458), - [aux_sym_preproc_if_token1] = ACTIONS(4458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4458), - [sym_preproc_directive] = ACTIONS(4458), - [anon_sym_LPAREN2] = ACTIONS(4460), - [anon_sym_BANG] = ACTIONS(4460), - [anon_sym_TILDE] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_AMP] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym___extension__] = ACTIONS(4458), - [anon_sym_typedef] = ACTIONS(4458), - [anon_sym_virtual] = ACTIONS(4458), - [anon_sym_extern] = ACTIONS(4458), - [anon_sym___attribute__] = ACTIONS(4458), - [anon_sym___attribute] = ACTIONS(4458), - [anon_sym_using] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4460), - [anon_sym___declspec] = ACTIONS(4458), - [anon_sym___based] = ACTIONS(4458), - [anon_sym___cdecl] = ACTIONS(4458), - [anon_sym___clrcall] = ACTIONS(4458), - [anon_sym___stdcall] = ACTIONS(4458), - [anon_sym___fastcall] = ACTIONS(4458), - [anon_sym___thiscall] = ACTIONS(4458), - [anon_sym___vectorcall] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_signed] = ACTIONS(4458), - [anon_sym_unsigned] = ACTIONS(4458), - [anon_sym_long] = ACTIONS(4458), - [anon_sym_short] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4458), - [anon_sym_static] = ACTIONS(4458), - [anon_sym_register] = ACTIONS(4458), - [anon_sym_inline] = ACTIONS(4458), - [anon_sym___inline] = ACTIONS(4458), - [anon_sym___inline__] = ACTIONS(4458), - [anon_sym___forceinline] = ACTIONS(4458), - [anon_sym_thread_local] = ACTIONS(4458), - [anon_sym___thread] = ACTIONS(4458), - [anon_sym_const] = ACTIONS(4458), - [anon_sym_constexpr] = ACTIONS(4458), - [anon_sym_volatile] = ACTIONS(4458), - [anon_sym_restrict] = ACTIONS(4458), - [anon_sym___restrict__] = ACTIONS(4458), - [anon_sym__Atomic] = ACTIONS(4458), - [anon_sym__Noreturn] = ACTIONS(4458), - [anon_sym_noreturn] = ACTIONS(4458), - [anon_sym__Nonnull] = ACTIONS(4458), - [anon_sym_mutable] = ACTIONS(4458), - [anon_sym_constinit] = ACTIONS(4458), - [anon_sym_consteval] = ACTIONS(4458), - [anon_sym_alignas] = ACTIONS(4458), - [anon_sym__Alignas] = ACTIONS(4458), - [sym_primitive_type] = ACTIONS(4458), - [anon_sym_enum] = ACTIONS(4458), - [anon_sym_class] = ACTIONS(4458), - [anon_sym_struct] = ACTIONS(4458), - [anon_sym_union] = ACTIONS(4458), - [anon_sym_if] = ACTIONS(4458), - [anon_sym_switch] = ACTIONS(4458), - [anon_sym_case] = ACTIONS(4458), - [anon_sym_default] = ACTIONS(4458), - [anon_sym_while] = ACTIONS(4458), - [anon_sym_do] = ACTIONS(4458), - [anon_sym_for] = ACTIONS(4458), - [anon_sym_return] = ACTIONS(4458), - [anon_sym_break] = ACTIONS(4458), - [anon_sym_continue] = ACTIONS(4458), - [anon_sym_goto] = ACTIONS(4458), - [anon_sym_not] = ACTIONS(4458), - [anon_sym_compl] = ACTIONS(4458), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_sizeof] = ACTIONS(4458), - [anon_sym___alignof__] = ACTIONS(4458), - [anon_sym___alignof] = ACTIONS(4458), - [anon_sym__alignof] = ACTIONS(4458), - [anon_sym_alignof] = ACTIONS(4458), - [anon_sym__Alignof] = ACTIONS(4458), - [anon_sym_offsetof] = ACTIONS(4458), - [anon_sym__Generic] = ACTIONS(4458), - [anon_sym_typename] = ACTIONS(4458), - [anon_sym_asm] = ACTIONS(4458), - [anon_sym___asm__] = ACTIONS(4458), - [anon_sym___asm] = ACTIONS(4458), - [sym_number_literal] = ACTIONS(4460), - [anon_sym_L_SQUOTE] = ACTIONS(4460), - [anon_sym_u_SQUOTE] = ACTIONS(4460), - [anon_sym_U_SQUOTE] = ACTIONS(4460), - [anon_sym_u8_SQUOTE] = ACTIONS(4460), - [anon_sym_SQUOTE] = ACTIONS(4460), - [anon_sym_L_DQUOTE] = ACTIONS(4460), - [anon_sym_u_DQUOTE] = ACTIONS(4460), - [anon_sym_U_DQUOTE] = ACTIONS(4460), - [anon_sym_u8_DQUOTE] = ACTIONS(4460), - [anon_sym_DQUOTE] = ACTIONS(4460), - [sym_true] = ACTIONS(4458), - [sym_false] = ACTIONS(4458), - [anon_sym_NULL] = ACTIONS(4458), - [anon_sym_nullptr] = ACTIONS(4458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4458), - [anon_sym_decltype] = ACTIONS(4458), - [anon_sym_explicit] = ACTIONS(4458), - [anon_sym_export] = ACTIONS(4458), - [anon_sym_module] = ACTIONS(4458), - [anon_sym_import] = ACTIONS(4458), - [anon_sym_template] = ACTIONS(4458), - [anon_sym_operator] = ACTIONS(4458), - [anon_sym_try] = ACTIONS(4458), - [anon_sym_delete] = ACTIONS(4458), - [anon_sym_throw] = ACTIONS(4458), - [anon_sym_namespace] = ACTIONS(4458), - [anon_sym_static_assert] = ACTIONS(4458), - [anon_sym_concept] = ACTIONS(4458), - [anon_sym_co_return] = ACTIONS(4458), - [anon_sym_co_yield] = ACTIONS(4458), - [anon_sym_R_DQUOTE] = ACTIONS(4460), - [anon_sym_LR_DQUOTE] = ACTIONS(4460), - [anon_sym_uR_DQUOTE] = ACTIONS(4460), - [anon_sym_UR_DQUOTE] = ACTIONS(4460), - [anon_sym_u8R_DQUOTE] = ACTIONS(4460), - [anon_sym_co_await] = ACTIONS(4458), - [anon_sym_new] = ACTIONS(4458), - [anon_sym_requires] = ACTIONS(4458), - [anon_sym_CARET_CARET] = ACTIONS(4460), - [anon_sym_LBRACK_COLON] = ACTIONS(4460), - [sym_this] = ACTIONS(4458), + [ts_builtin_sym_end] = ACTIONS(3696), + [sym_identifier] = ACTIONS(3694), + [aux_sym_preproc_include_token1] = ACTIONS(3694), + [aux_sym_preproc_def_token1] = ACTIONS(3694), + [aux_sym_preproc_if_token1] = ACTIONS(3694), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3694), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3694), + [sym_preproc_directive] = ACTIONS(3694), + [anon_sym_LPAREN2] = ACTIONS(3696), + [anon_sym_BANG] = ACTIONS(3696), + [anon_sym_TILDE] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3694), + [anon_sym_PLUS] = ACTIONS(3694), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(3694), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym___extension__] = ACTIONS(3694), + [anon_sym_typedef] = ACTIONS(3694), + [anon_sym_virtual] = ACTIONS(3694), + [anon_sym_extern] = ACTIONS(3694), + [anon_sym___attribute__] = ACTIONS(3694), + [anon_sym___attribute] = ACTIONS(3694), + [anon_sym_using] = ACTIONS(3694), + [anon_sym_COLON_COLON] = ACTIONS(3696), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3696), + [anon_sym___declspec] = ACTIONS(3694), + [anon_sym___based] = ACTIONS(3694), + [anon_sym___cdecl] = ACTIONS(3694), + [anon_sym___clrcall] = ACTIONS(3694), + [anon_sym___stdcall] = ACTIONS(3694), + [anon_sym___fastcall] = ACTIONS(3694), + [anon_sym___thiscall] = ACTIONS(3694), + [anon_sym___vectorcall] = ACTIONS(3694), + [anon_sym_LBRACE] = ACTIONS(3696), + [anon_sym_signed] = ACTIONS(3694), + [anon_sym_unsigned] = ACTIONS(3694), + [anon_sym_long] = ACTIONS(3694), + [anon_sym_short] = ACTIONS(3694), + [anon_sym_LBRACK] = ACTIONS(3694), + [anon_sym_static] = ACTIONS(3694), + [anon_sym_register] = ACTIONS(3694), + [anon_sym_inline] = ACTIONS(3694), + [anon_sym___inline] = ACTIONS(3694), + [anon_sym___inline__] = ACTIONS(3694), + [anon_sym___forceinline] = ACTIONS(3694), + [anon_sym_thread_local] = ACTIONS(3694), + [anon_sym___thread] = ACTIONS(3694), + [anon_sym_const] = ACTIONS(3694), + [anon_sym_constexpr] = ACTIONS(3694), + [anon_sym_volatile] = ACTIONS(3694), + [anon_sym_restrict] = ACTIONS(3694), + [anon_sym___restrict__] = ACTIONS(3694), + [anon_sym__Atomic] = ACTIONS(3694), + [anon_sym__Noreturn] = ACTIONS(3694), + [anon_sym_noreturn] = ACTIONS(3694), + [anon_sym__Nonnull] = ACTIONS(3694), + [anon_sym_mutable] = ACTIONS(3694), + [anon_sym_constinit] = ACTIONS(3694), + [anon_sym_consteval] = ACTIONS(3694), + [anon_sym_alignas] = ACTIONS(3694), + [anon_sym__Alignas] = ACTIONS(3694), + [sym_primitive_type] = ACTIONS(3694), + [anon_sym_enum] = ACTIONS(3694), + [anon_sym_class] = ACTIONS(3694), + [anon_sym_struct] = ACTIONS(3694), + [anon_sym_union] = ACTIONS(3694), + [anon_sym_if] = ACTIONS(3694), + [anon_sym_switch] = ACTIONS(3694), + [anon_sym_case] = ACTIONS(3694), + [anon_sym_default] = ACTIONS(3694), + [anon_sym_while] = ACTIONS(3694), + [anon_sym_do] = ACTIONS(3694), + [anon_sym_for] = ACTIONS(3694), + [anon_sym_return] = ACTIONS(3694), + [anon_sym_break] = ACTIONS(3694), + [anon_sym_continue] = ACTIONS(3694), + [anon_sym_goto] = ACTIONS(3694), + [anon_sym_not] = ACTIONS(3694), + [anon_sym_compl] = ACTIONS(3694), + [anon_sym_DASH_DASH] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3696), + [anon_sym_sizeof] = ACTIONS(3694), + [anon_sym___alignof__] = ACTIONS(3694), + [anon_sym___alignof] = ACTIONS(3694), + [anon_sym__alignof] = ACTIONS(3694), + [anon_sym_alignof] = ACTIONS(3694), + [anon_sym__Alignof] = ACTIONS(3694), + [anon_sym_offsetof] = ACTIONS(3694), + [anon_sym__Generic] = ACTIONS(3694), + [anon_sym_typename] = ACTIONS(3694), + [anon_sym_asm] = ACTIONS(3694), + [anon_sym___asm__] = ACTIONS(3694), + [anon_sym___asm] = ACTIONS(3694), + [sym_number_literal] = ACTIONS(3696), + [anon_sym_L_SQUOTE] = ACTIONS(3696), + [anon_sym_u_SQUOTE] = ACTIONS(3696), + [anon_sym_U_SQUOTE] = ACTIONS(3696), + [anon_sym_u8_SQUOTE] = ACTIONS(3696), + [anon_sym_SQUOTE] = ACTIONS(3696), + [anon_sym_L_DQUOTE] = ACTIONS(3696), + [anon_sym_u_DQUOTE] = ACTIONS(3696), + [anon_sym_U_DQUOTE] = ACTIONS(3696), + [anon_sym_u8_DQUOTE] = ACTIONS(3696), + [anon_sym_DQUOTE] = ACTIONS(3696), + [sym_true] = ACTIONS(3694), + [sym_false] = ACTIONS(3694), + [anon_sym_NULL] = ACTIONS(3694), + [anon_sym_nullptr] = ACTIONS(3694), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3694), + [anon_sym_decltype] = ACTIONS(3694), + [anon_sym_explicit] = ACTIONS(3694), + [anon_sym_export] = ACTIONS(3694), + [anon_sym_module] = ACTIONS(3694), + [anon_sym_import] = ACTIONS(3694), + [anon_sym_template] = ACTIONS(3694), + [anon_sym_operator] = ACTIONS(3694), + [anon_sym_try] = ACTIONS(3694), + [anon_sym_delete] = ACTIONS(3694), + [anon_sym_throw] = ACTIONS(3694), + [anon_sym_namespace] = ACTIONS(3694), + [anon_sym_static_assert] = ACTIONS(3694), + [anon_sym_concept] = ACTIONS(3694), + [anon_sym_co_return] = ACTIONS(3694), + [anon_sym_co_yield] = ACTIONS(3694), + [anon_sym_R_DQUOTE] = ACTIONS(3696), + [anon_sym_LR_DQUOTE] = ACTIONS(3696), + [anon_sym_uR_DQUOTE] = ACTIONS(3696), + [anon_sym_UR_DQUOTE] = ACTIONS(3696), + [anon_sym_u8R_DQUOTE] = ACTIONS(3696), + [anon_sym_co_await] = ACTIONS(3694), + [anon_sym_new] = ACTIONS(3694), + [anon_sym_requires] = ACTIONS(3694), + [anon_sym_CARET_CARET] = ACTIONS(3696), + [anon_sym_LBRACK_COLON] = ACTIONS(3696), + [sym_this] = ACTIONS(3694), }, [STATE(902)] = { - [ts_builtin_sym_end] = ACTIONS(4464), - [sym_identifier] = ACTIONS(4462), - [aux_sym_preproc_include_token1] = ACTIONS(4462), - [aux_sym_preproc_def_token1] = ACTIONS(4462), - [aux_sym_preproc_if_token1] = ACTIONS(4462), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4462), - [sym_preproc_directive] = ACTIONS(4462), - [anon_sym_LPAREN2] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4464), - [anon_sym_TILDE] = ACTIONS(4464), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_PLUS] = ACTIONS(4462), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_AMP_AMP] = ACTIONS(4464), - [anon_sym_AMP] = ACTIONS(4462), - [anon_sym_SEMI] = ACTIONS(4464), - [anon_sym___extension__] = ACTIONS(4462), - [anon_sym_typedef] = ACTIONS(4462), - [anon_sym_virtual] = ACTIONS(4462), - [anon_sym_extern] = ACTIONS(4462), - [anon_sym___attribute__] = ACTIONS(4462), - [anon_sym___attribute] = ACTIONS(4462), - [anon_sym_using] = ACTIONS(4462), - [anon_sym_COLON_COLON] = ACTIONS(4464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), - [anon_sym___declspec] = ACTIONS(4462), - [anon_sym___based] = ACTIONS(4462), - [anon_sym___cdecl] = ACTIONS(4462), - [anon_sym___clrcall] = ACTIONS(4462), - [anon_sym___stdcall] = ACTIONS(4462), - [anon_sym___fastcall] = ACTIONS(4462), - [anon_sym___thiscall] = ACTIONS(4462), - [anon_sym___vectorcall] = ACTIONS(4462), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_signed] = ACTIONS(4462), - [anon_sym_unsigned] = ACTIONS(4462), - [anon_sym_long] = ACTIONS(4462), - [anon_sym_short] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_static] = ACTIONS(4462), - [anon_sym_register] = ACTIONS(4462), - [anon_sym_inline] = ACTIONS(4462), - [anon_sym___inline] = ACTIONS(4462), - [anon_sym___inline__] = ACTIONS(4462), - [anon_sym___forceinline] = ACTIONS(4462), - [anon_sym_thread_local] = ACTIONS(4462), - [anon_sym___thread] = ACTIONS(4462), - [anon_sym_const] = ACTIONS(4462), - [anon_sym_constexpr] = ACTIONS(4462), - [anon_sym_volatile] = ACTIONS(4462), - [anon_sym_restrict] = ACTIONS(4462), - [anon_sym___restrict__] = ACTIONS(4462), - [anon_sym__Atomic] = ACTIONS(4462), - [anon_sym__Noreturn] = ACTIONS(4462), - [anon_sym_noreturn] = ACTIONS(4462), - [anon_sym__Nonnull] = ACTIONS(4462), - [anon_sym_mutable] = ACTIONS(4462), - [anon_sym_constinit] = ACTIONS(4462), - [anon_sym_consteval] = ACTIONS(4462), - [anon_sym_alignas] = ACTIONS(4462), - [anon_sym__Alignas] = ACTIONS(4462), - [sym_primitive_type] = ACTIONS(4462), - [anon_sym_enum] = ACTIONS(4462), - [anon_sym_class] = ACTIONS(4462), - [anon_sym_struct] = ACTIONS(4462), - [anon_sym_union] = ACTIONS(4462), - [anon_sym_if] = ACTIONS(4462), - [anon_sym_switch] = ACTIONS(4462), - [anon_sym_case] = ACTIONS(4462), - [anon_sym_default] = ACTIONS(4462), - [anon_sym_while] = ACTIONS(4462), - [anon_sym_do] = ACTIONS(4462), - [anon_sym_for] = ACTIONS(4462), - [anon_sym_return] = ACTIONS(4462), - [anon_sym_break] = ACTIONS(4462), - [anon_sym_continue] = ACTIONS(4462), - [anon_sym_goto] = ACTIONS(4462), - [anon_sym_not] = ACTIONS(4462), - [anon_sym_compl] = ACTIONS(4462), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_sizeof] = ACTIONS(4462), - [anon_sym___alignof__] = ACTIONS(4462), - [anon_sym___alignof] = ACTIONS(4462), - [anon_sym__alignof] = ACTIONS(4462), - [anon_sym_alignof] = ACTIONS(4462), - [anon_sym__Alignof] = ACTIONS(4462), - [anon_sym_offsetof] = ACTIONS(4462), - [anon_sym__Generic] = ACTIONS(4462), - [anon_sym_typename] = ACTIONS(4462), - [anon_sym_asm] = ACTIONS(4462), - [anon_sym___asm__] = ACTIONS(4462), - [anon_sym___asm] = ACTIONS(4462), - [sym_number_literal] = ACTIONS(4464), - [anon_sym_L_SQUOTE] = ACTIONS(4464), - [anon_sym_u_SQUOTE] = ACTIONS(4464), - [anon_sym_U_SQUOTE] = ACTIONS(4464), - [anon_sym_u8_SQUOTE] = ACTIONS(4464), - [anon_sym_SQUOTE] = ACTIONS(4464), - [anon_sym_L_DQUOTE] = ACTIONS(4464), - [anon_sym_u_DQUOTE] = ACTIONS(4464), - [anon_sym_U_DQUOTE] = ACTIONS(4464), - [anon_sym_u8_DQUOTE] = ACTIONS(4464), - [anon_sym_DQUOTE] = ACTIONS(4464), - [sym_true] = ACTIONS(4462), - [sym_false] = ACTIONS(4462), - [anon_sym_NULL] = ACTIONS(4462), - [anon_sym_nullptr] = ACTIONS(4462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4462), - [anon_sym_decltype] = ACTIONS(4462), - [anon_sym_explicit] = ACTIONS(4462), - [anon_sym_export] = ACTIONS(4462), - [anon_sym_module] = ACTIONS(4462), - [anon_sym_import] = ACTIONS(4462), - [anon_sym_template] = ACTIONS(4462), - [anon_sym_operator] = ACTIONS(4462), - [anon_sym_try] = ACTIONS(4462), - [anon_sym_delete] = ACTIONS(4462), - [anon_sym_throw] = ACTIONS(4462), - [anon_sym_namespace] = ACTIONS(4462), - [anon_sym_static_assert] = ACTIONS(4462), - [anon_sym_concept] = ACTIONS(4462), - [anon_sym_co_return] = ACTIONS(4462), - [anon_sym_co_yield] = ACTIONS(4462), - [anon_sym_R_DQUOTE] = ACTIONS(4464), - [anon_sym_LR_DQUOTE] = ACTIONS(4464), - [anon_sym_uR_DQUOTE] = ACTIONS(4464), - [anon_sym_UR_DQUOTE] = ACTIONS(4464), - [anon_sym_u8R_DQUOTE] = ACTIONS(4464), - [anon_sym_co_await] = ACTIONS(4462), - [anon_sym_new] = ACTIONS(4462), - [anon_sym_requires] = ACTIONS(4462), - [anon_sym_CARET_CARET] = ACTIONS(4464), - [anon_sym_LBRACK_COLON] = ACTIONS(4464), - [sym_this] = ACTIONS(4462), + [ts_builtin_sym_end] = ACTIONS(3700), + [sym_identifier] = ACTIONS(3698), + [aux_sym_preproc_include_token1] = ACTIONS(3698), + [aux_sym_preproc_def_token1] = ACTIONS(3698), + [aux_sym_preproc_if_token1] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3698), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3698), + [sym_preproc_directive] = ACTIONS(3698), + [anon_sym_LPAREN2] = ACTIONS(3700), + [anon_sym_BANG] = ACTIONS(3700), + [anon_sym_TILDE] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3698), + [anon_sym_STAR] = ACTIONS(3700), + [anon_sym_AMP_AMP] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3698), + [anon_sym_SEMI] = ACTIONS(3700), + [anon_sym___extension__] = ACTIONS(3698), + [anon_sym_typedef] = ACTIONS(3698), + [anon_sym_virtual] = ACTIONS(3698), + [anon_sym_extern] = ACTIONS(3698), + [anon_sym___attribute__] = ACTIONS(3698), + [anon_sym___attribute] = ACTIONS(3698), + [anon_sym_using] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3700), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3700), + [anon_sym___declspec] = ACTIONS(3698), + [anon_sym___based] = ACTIONS(3698), + [anon_sym___cdecl] = ACTIONS(3698), + [anon_sym___clrcall] = ACTIONS(3698), + [anon_sym___stdcall] = ACTIONS(3698), + [anon_sym___fastcall] = ACTIONS(3698), + [anon_sym___thiscall] = ACTIONS(3698), + [anon_sym___vectorcall] = ACTIONS(3698), + [anon_sym_LBRACE] = ACTIONS(3700), + [anon_sym_signed] = ACTIONS(3698), + [anon_sym_unsigned] = ACTIONS(3698), + [anon_sym_long] = ACTIONS(3698), + [anon_sym_short] = ACTIONS(3698), + [anon_sym_LBRACK] = ACTIONS(3698), + [anon_sym_static] = ACTIONS(3698), + [anon_sym_register] = ACTIONS(3698), + [anon_sym_inline] = ACTIONS(3698), + [anon_sym___inline] = ACTIONS(3698), + [anon_sym___inline__] = ACTIONS(3698), + [anon_sym___forceinline] = ACTIONS(3698), + [anon_sym_thread_local] = ACTIONS(3698), + [anon_sym___thread] = ACTIONS(3698), + [anon_sym_const] = ACTIONS(3698), + [anon_sym_constexpr] = ACTIONS(3698), + [anon_sym_volatile] = ACTIONS(3698), + [anon_sym_restrict] = ACTIONS(3698), + [anon_sym___restrict__] = ACTIONS(3698), + [anon_sym__Atomic] = ACTIONS(3698), + [anon_sym__Noreturn] = ACTIONS(3698), + [anon_sym_noreturn] = ACTIONS(3698), + [anon_sym__Nonnull] = ACTIONS(3698), + [anon_sym_mutable] = ACTIONS(3698), + [anon_sym_constinit] = ACTIONS(3698), + [anon_sym_consteval] = ACTIONS(3698), + [anon_sym_alignas] = ACTIONS(3698), + [anon_sym__Alignas] = ACTIONS(3698), + [sym_primitive_type] = ACTIONS(3698), + [anon_sym_enum] = ACTIONS(3698), + [anon_sym_class] = ACTIONS(3698), + [anon_sym_struct] = ACTIONS(3698), + [anon_sym_union] = ACTIONS(3698), + [anon_sym_if] = ACTIONS(3698), + [anon_sym_switch] = ACTIONS(3698), + [anon_sym_case] = ACTIONS(3698), + [anon_sym_default] = ACTIONS(3698), + [anon_sym_while] = ACTIONS(3698), + [anon_sym_do] = ACTIONS(3698), + [anon_sym_for] = ACTIONS(3698), + [anon_sym_return] = ACTIONS(3698), + [anon_sym_break] = ACTIONS(3698), + [anon_sym_continue] = ACTIONS(3698), + [anon_sym_goto] = ACTIONS(3698), + [anon_sym_not] = ACTIONS(3698), + [anon_sym_compl] = ACTIONS(3698), + [anon_sym_DASH_DASH] = ACTIONS(3700), + [anon_sym_PLUS_PLUS] = ACTIONS(3700), + [anon_sym_sizeof] = ACTIONS(3698), + [anon_sym___alignof__] = ACTIONS(3698), + [anon_sym___alignof] = ACTIONS(3698), + [anon_sym__alignof] = ACTIONS(3698), + [anon_sym_alignof] = ACTIONS(3698), + [anon_sym__Alignof] = ACTIONS(3698), + [anon_sym_offsetof] = ACTIONS(3698), + [anon_sym__Generic] = ACTIONS(3698), + [anon_sym_typename] = ACTIONS(3698), + [anon_sym_asm] = ACTIONS(3698), + [anon_sym___asm__] = ACTIONS(3698), + [anon_sym___asm] = ACTIONS(3698), + [sym_number_literal] = ACTIONS(3700), + [anon_sym_L_SQUOTE] = ACTIONS(3700), + [anon_sym_u_SQUOTE] = ACTIONS(3700), + [anon_sym_U_SQUOTE] = ACTIONS(3700), + [anon_sym_u8_SQUOTE] = ACTIONS(3700), + [anon_sym_SQUOTE] = ACTIONS(3700), + [anon_sym_L_DQUOTE] = ACTIONS(3700), + [anon_sym_u_DQUOTE] = ACTIONS(3700), + [anon_sym_U_DQUOTE] = ACTIONS(3700), + [anon_sym_u8_DQUOTE] = ACTIONS(3700), + [anon_sym_DQUOTE] = ACTIONS(3700), + [sym_true] = ACTIONS(3698), + [sym_false] = ACTIONS(3698), + [anon_sym_NULL] = ACTIONS(3698), + [anon_sym_nullptr] = ACTIONS(3698), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3698), + [anon_sym_decltype] = ACTIONS(3698), + [anon_sym_explicit] = ACTIONS(3698), + [anon_sym_export] = ACTIONS(3698), + [anon_sym_module] = ACTIONS(3698), + [anon_sym_import] = ACTIONS(3698), + [anon_sym_template] = ACTIONS(3698), + [anon_sym_operator] = ACTIONS(3698), + [anon_sym_try] = ACTIONS(3698), + [anon_sym_delete] = ACTIONS(3698), + [anon_sym_throw] = ACTIONS(3698), + [anon_sym_namespace] = ACTIONS(3698), + [anon_sym_static_assert] = ACTIONS(3698), + [anon_sym_concept] = ACTIONS(3698), + [anon_sym_co_return] = ACTIONS(3698), + [anon_sym_co_yield] = ACTIONS(3698), + [anon_sym_R_DQUOTE] = ACTIONS(3700), + [anon_sym_LR_DQUOTE] = ACTIONS(3700), + [anon_sym_uR_DQUOTE] = ACTIONS(3700), + [anon_sym_UR_DQUOTE] = ACTIONS(3700), + [anon_sym_u8R_DQUOTE] = ACTIONS(3700), + [anon_sym_co_await] = ACTIONS(3698), + [anon_sym_new] = ACTIONS(3698), + [anon_sym_requires] = ACTIONS(3698), + [anon_sym_CARET_CARET] = ACTIONS(3700), + [anon_sym_LBRACK_COLON] = ACTIONS(3700), + [sym_this] = ACTIONS(3698), }, [STATE(903)] = { - [ts_builtin_sym_end] = ACTIONS(4138), - [sym_identifier] = ACTIONS(4136), - [aux_sym_preproc_include_token1] = ACTIONS(4136), - [aux_sym_preproc_def_token1] = ACTIONS(4136), - [aux_sym_preproc_if_token1] = ACTIONS(4136), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4136), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4136), - [sym_preproc_directive] = ACTIONS(4136), - [anon_sym_LPAREN2] = ACTIONS(4138), - [anon_sym_BANG] = ACTIONS(4138), - [anon_sym_TILDE] = ACTIONS(4138), - [anon_sym_DASH] = ACTIONS(4136), - [anon_sym_PLUS] = ACTIONS(4136), - [anon_sym_STAR] = ACTIONS(4138), - [anon_sym_AMP_AMP] = ACTIONS(4138), - [anon_sym_AMP] = ACTIONS(4136), - [anon_sym_SEMI] = ACTIONS(4138), - [anon_sym___extension__] = ACTIONS(4136), - [anon_sym_typedef] = ACTIONS(4136), - [anon_sym_virtual] = ACTIONS(4136), - [anon_sym_extern] = ACTIONS(4136), - [anon_sym___attribute__] = ACTIONS(4136), - [anon_sym___attribute] = ACTIONS(4136), - [anon_sym_using] = ACTIONS(4136), - [anon_sym_COLON_COLON] = ACTIONS(4138), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4138), - [anon_sym___declspec] = ACTIONS(4136), - [anon_sym___based] = ACTIONS(4136), - [anon_sym___cdecl] = ACTIONS(4136), - [anon_sym___clrcall] = ACTIONS(4136), - [anon_sym___stdcall] = ACTIONS(4136), - [anon_sym___fastcall] = ACTIONS(4136), - [anon_sym___thiscall] = ACTIONS(4136), - [anon_sym___vectorcall] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4138), - [anon_sym_signed] = ACTIONS(4136), - [anon_sym_unsigned] = ACTIONS(4136), - [anon_sym_long] = ACTIONS(4136), - [anon_sym_short] = ACTIONS(4136), - [anon_sym_LBRACK] = ACTIONS(4136), - [anon_sym_static] = ACTIONS(4136), - [anon_sym_register] = ACTIONS(4136), - [anon_sym_inline] = ACTIONS(4136), - [anon_sym___inline] = ACTIONS(4136), - [anon_sym___inline__] = ACTIONS(4136), - [anon_sym___forceinline] = ACTIONS(4136), - [anon_sym_thread_local] = ACTIONS(4136), - [anon_sym___thread] = ACTIONS(4136), - [anon_sym_const] = ACTIONS(4136), - [anon_sym_constexpr] = ACTIONS(4136), - [anon_sym_volatile] = ACTIONS(4136), - [anon_sym_restrict] = ACTIONS(4136), - [anon_sym___restrict__] = ACTIONS(4136), - [anon_sym__Atomic] = ACTIONS(4136), - [anon_sym__Noreturn] = ACTIONS(4136), - [anon_sym_noreturn] = ACTIONS(4136), - [anon_sym__Nonnull] = ACTIONS(4136), - [anon_sym_mutable] = ACTIONS(4136), - [anon_sym_constinit] = ACTIONS(4136), - [anon_sym_consteval] = ACTIONS(4136), - [anon_sym_alignas] = ACTIONS(4136), - [anon_sym__Alignas] = ACTIONS(4136), - [sym_primitive_type] = ACTIONS(4136), - [anon_sym_enum] = ACTIONS(4136), - [anon_sym_class] = ACTIONS(4136), - [anon_sym_struct] = ACTIONS(4136), - [anon_sym_union] = ACTIONS(4136), - [anon_sym_if] = ACTIONS(4136), - [anon_sym_switch] = ACTIONS(4136), - [anon_sym_case] = ACTIONS(4136), - [anon_sym_default] = ACTIONS(4136), - [anon_sym_while] = ACTIONS(4136), - [anon_sym_do] = ACTIONS(4136), - [anon_sym_for] = ACTIONS(4136), - [anon_sym_return] = ACTIONS(4136), - [anon_sym_break] = ACTIONS(4136), - [anon_sym_continue] = ACTIONS(4136), - [anon_sym_goto] = ACTIONS(4136), - [anon_sym_not] = ACTIONS(4136), - [anon_sym_compl] = ACTIONS(4136), - [anon_sym_DASH_DASH] = ACTIONS(4138), - [anon_sym_PLUS_PLUS] = ACTIONS(4138), - [anon_sym_sizeof] = ACTIONS(4136), - [anon_sym___alignof__] = ACTIONS(4136), - [anon_sym___alignof] = ACTIONS(4136), - [anon_sym__alignof] = ACTIONS(4136), - [anon_sym_alignof] = ACTIONS(4136), - [anon_sym__Alignof] = ACTIONS(4136), - [anon_sym_offsetof] = ACTIONS(4136), - [anon_sym__Generic] = ACTIONS(4136), - [anon_sym_typename] = ACTIONS(4136), - [anon_sym_asm] = ACTIONS(4136), - [anon_sym___asm__] = ACTIONS(4136), - [anon_sym___asm] = ACTIONS(4136), - [sym_number_literal] = ACTIONS(4138), - [anon_sym_L_SQUOTE] = ACTIONS(4138), - [anon_sym_u_SQUOTE] = ACTIONS(4138), - [anon_sym_U_SQUOTE] = ACTIONS(4138), - [anon_sym_u8_SQUOTE] = ACTIONS(4138), - [anon_sym_SQUOTE] = ACTIONS(4138), - [anon_sym_L_DQUOTE] = ACTIONS(4138), - [anon_sym_u_DQUOTE] = ACTIONS(4138), - [anon_sym_U_DQUOTE] = ACTIONS(4138), - [anon_sym_u8_DQUOTE] = ACTIONS(4138), - [anon_sym_DQUOTE] = ACTIONS(4138), - [sym_true] = ACTIONS(4136), - [sym_false] = ACTIONS(4136), - [anon_sym_NULL] = ACTIONS(4136), - [anon_sym_nullptr] = ACTIONS(4136), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4136), - [anon_sym_decltype] = ACTIONS(4136), - [anon_sym_explicit] = ACTIONS(4136), - [anon_sym_export] = ACTIONS(4136), - [anon_sym_module] = ACTIONS(4136), - [anon_sym_import] = ACTIONS(4136), - [anon_sym_template] = ACTIONS(4136), - [anon_sym_operator] = ACTIONS(4136), - [anon_sym_try] = ACTIONS(4136), - [anon_sym_delete] = ACTIONS(4136), - [anon_sym_throw] = ACTIONS(4136), - [anon_sym_namespace] = ACTIONS(4136), - [anon_sym_static_assert] = ACTIONS(4136), - [anon_sym_concept] = ACTIONS(4136), - [anon_sym_co_return] = ACTIONS(4136), - [anon_sym_co_yield] = ACTIONS(4136), - [anon_sym_R_DQUOTE] = ACTIONS(4138), - [anon_sym_LR_DQUOTE] = ACTIONS(4138), - [anon_sym_uR_DQUOTE] = ACTIONS(4138), - [anon_sym_UR_DQUOTE] = ACTIONS(4138), - [anon_sym_u8R_DQUOTE] = ACTIONS(4138), - [anon_sym_co_await] = ACTIONS(4136), - [anon_sym_new] = ACTIONS(4136), - [anon_sym_requires] = ACTIONS(4136), - [anon_sym_CARET_CARET] = ACTIONS(4138), - [anon_sym_LBRACK_COLON] = ACTIONS(4138), - [sym_this] = ACTIONS(4136), + [ts_builtin_sym_end] = ACTIONS(4287), + [sym_identifier] = ACTIONS(4285), + [aux_sym_preproc_include_token1] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4287), + [anon_sym_BANG] = ACTIONS(4287), + [anon_sym_TILDE] = ACTIONS(4287), + [anon_sym_DASH] = ACTIONS(4285), + [anon_sym_PLUS] = ACTIONS(4285), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_AMP] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym___extension__] = ACTIONS(4285), + [anon_sym_typedef] = ACTIONS(4285), + [anon_sym_virtual] = ACTIONS(4285), + [anon_sym_extern] = ACTIONS(4285), + [anon_sym___attribute__] = ACTIONS(4285), + [anon_sym___attribute] = ACTIONS(4285), + [anon_sym_using] = ACTIONS(4285), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4287), + [anon_sym___declspec] = ACTIONS(4285), + [anon_sym___based] = ACTIONS(4285), + [anon_sym___cdecl] = ACTIONS(4285), + [anon_sym___clrcall] = ACTIONS(4285), + [anon_sym___stdcall] = ACTIONS(4285), + [anon_sym___fastcall] = ACTIONS(4285), + [anon_sym___thiscall] = ACTIONS(4285), + [anon_sym___vectorcall] = ACTIONS(4285), + [anon_sym_LBRACE] = ACTIONS(4287), + [anon_sym_signed] = ACTIONS(4285), + [anon_sym_unsigned] = ACTIONS(4285), + [anon_sym_long] = ACTIONS(4285), + [anon_sym_short] = ACTIONS(4285), + [anon_sym_LBRACK] = ACTIONS(4285), + [anon_sym_static] = ACTIONS(4285), + [anon_sym_register] = ACTIONS(4285), + [anon_sym_inline] = ACTIONS(4285), + [anon_sym___inline] = ACTIONS(4285), + [anon_sym___inline__] = ACTIONS(4285), + [anon_sym___forceinline] = ACTIONS(4285), + [anon_sym_thread_local] = ACTIONS(4285), + [anon_sym___thread] = ACTIONS(4285), + [anon_sym_const] = ACTIONS(4285), + [anon_sym_constexpr] = ACTIONS(4285), + [anon_sym_volatile] = ACTIONS(4285), + [anon_sym_restrict] = ACTIONS(4285), + [anon_sym___restrict__] = ACTIONS(4285), + [anon_sym__Atomic] = ACTIONS(4285), + [anon_sym__Noreturn] = ACTIONS(4285), + [anon_sym_noreturn] = ACTIONS(4285), + [anon_sym__Nonnull] = ACTIONS(4285), + [anon_sym_mutable] = ACTIONS(4285), + [anon_sym_constinit] = ACTIONS(4285), + [anon_sym_consteval] = ACTIONS(4285), + [anon_sym_alignas] = ACTIONS(4285), + [anon_sym__Alignas] = ACTIONS(4285), + [sym_primitive_type] = ACTIONS(4285), + [anon_sym_enum] = ACTIONS(4285), + [anon_sym_class] = ACTIONS(4285), + [anon_sym_struct] = ACTIONS(4285), + [anon_sym_union] = ACTIONS(4285), + [anon_sym_if] = ACTIONS(4285), + [anon_sym_switch] = ACTIONS(4285), + [anon_sym_case] = ACTIONS(4285), + [anon_sym_default] = ACTIONS(4285), + [anon_sym_while] = ACTIONS(4285), + [anon_sym_do] = ACTIONS(4285), + [anon_sym_for] = ACTIONS(4285), + [anon_sym_return] = ACTIONS(4285), + [anon_sym_break] = ACTIONS(4285), + [anon_sym_continue] = ACTIONS(4285), + [anon_sym_goto] = ACTIONS(4285), + [anon_sym_not] = ACTIONS(4285), + [anon_sym_compl] = ACTIONS(4285), + [anon_sym_DASH_DASH] = ACTIONS(4287), + [anon_sym_PLUS_PLUS] = ACTIONS(4287), + [anon_sym_sizeof] = ACTIONS(4285), + [anon_sym___alignof__] = ACTIONS(4285), + [anon_sym___alignof] = ACTIONS(4285), + [anon_sym__alignof] = ACTIONS(4285), + [anon_sym_alignof] = ACTIONS(4285), + [anon_sym__Alignof] = ACTIONS(4285), + [anon_sym_offsetof] = ACTIONS(4285), + [anon_sym__Generic] = ACTIONS(4285), + [anon_sym_typename] = ACTIONS(4285), + [anon_sym_asm] = ACTIONS(4285), + [anon_sym___asm__] = ACTIONS(4285), + [anon_sym___asm] = ACTIONS(4285), + [sym_number_literal] = ACTIONS(4287), + [anon_sym_L_SQUOTE] = ACTIONS(4287), + [anon_sym_u_SQUOTE] = ACTIONS(4287), + [anon_sym_U_SQUOTE] = ACTIONS(4287), + [anon_sym_u8_SQUOTE] = ACTIONS(4287), + [anon_sym_SQUOTE] = ACTIONS(4287), + [anon_sym_L_DQUOTE] = ACTIONS(4287), + [anon_sym_u_DQUOTE] = ACTIONS(4287), + [anon_sym_U_DQUOTE] = ACTIONS(4287), + [anon_sym_u8_DQUOTE] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4287), + [sym_true] = ACTIONS(4285), + [sym_false] = ACTIONS(4285), + [anon_sym_NULL] = ACTIONS(4285), + [anon_sym_nullptr] = ACTIONS(4285), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4285), + [anon_sym_decltype] = ACTIONS(4285), + [anon_sym_explicit] = ACTIONS(4285), + [anon_sym_export] = ACTIONS(4285), + [anon_sym_module] = ACTIONS(4285), + [anon_sym_import] = ACTIONS(4285), + [anon_sym_template] = ACTIONS(4285), + [anon_sym_operator] = ACTIONS(4285), + [anon_sym_try] = ACTIONS(4285), + [anon_sym_delete] = ACTIONS(4285), + [anon_sym_throw] = ACTIONS(4285), + [anon_sym_namespace] = ACTIONS(4285), + [anon_sym_static_assert] = ACTIONS(4285), + [anon_sym_concept] = ACTIONS(4285), + [anon_sym_co_return] = ACTIONS(4285), + [anon_sym_co_yield] = ACTIONS(4285), + [anon_sym_R_DQUOTE] = ACTIONS(4287), + [anon_sym_LR_DQUOTE] = ACTIONS(4287), + [anon_sym_uR_DQUOTE] = ACTIONS(4287), + [anon_sym_UR_DQUOTE] = ACTIONS(4287), + [anon_sym_u8R_DQUOTE] = ACTIONS(4287), + [anon_sym_co_await] = ACTIONS(4285), + [anon_sym_new] = ACTIONS(4285), + [anon_sym_requires] = ACTIONS(4285), + [anon_sym_CARET_CARET] = ACTIONS(4287), + [anon_sym_LBRACK_COLON] = ACTIONS(4287), + [sym_this] = ACTIONS(4285), }, [STATE(904)] = { - [ts_builtin_sym_end] = ACTIONS(4142), - [sym_identifier] = ACTIONS(4140), - [aux_sym_preproc_include_token1] = ACTIONS(4140), - [aux_sym_preproc_def_token1] = ACTIONS(4140), - [aux_sym_preproc_if_token1] = ACTIONS(4140), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4140), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4140), - [sym_preproc_directive] = ACTIONS(4140), - [anon_sym_LPAREN2] = ACTIONS(4142), - [anon_sym_BANG] = ACTIONS(4142), - [anon_sym_TILDE] = ACTIONS(4142), - [anon_sym_DASH] = ACTIONS(4140), - [anon_sym_PLUS] = ACTIONS(4140), - [anon_sym_STAR] = ACTIONS(4142), - [anon_sym_AMP_AMP] = ACTIONS(4142), - [anon_sym_AMP] = ACTIONS(4140), - [anon_sym_SEMI] = ACTIONS(4142), - [anon_sym___extension__] = ACTIONS(4140), - [anon_sym_typedef] = ACTIONS(4140), - [anon_sym_virtual] = ACTIONS(4140), - [anon_sym_extern] = ACTIONS(4140), - [anon_sym___attribute__] = ACTIONS(4140), - [anon_sym___attribute] = ACTIONS(4140), - [anon_sym_using] = ACTIONS(4140), - [anon_sym_COLON_COLON] = ACTIONS(4142), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4142), - [anon_sym___declspec] = ACTIONS(4140), - [anon_sym___based] = ACTIONS(4140), - [anon_sym___cdecl] = ACTIONS(4140), - [anon_sym___clrcall] = ACTIONS(4140), - [anon_sym___stdcall] = ACTIONS(4140), - [anon_sym___fastcall] = ACTIONS(4140), - [anon_sym___thiscall] = ACTIONS(4140), - [anon_sym___vectorcall] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4142), - [anon_sym_signed] = ACTIONS(4140), - [anon_sym_unsigned] = ACTIONS(4140), - [anon_sym_long] = ACTIONS(4140), - [anon_sym_short] = ACTIONS(4140), - [anon_sym_LBRACK] = ACTIONS(4140), - [anon_sym_static] = ACTIONS(4140), - [anon_sym_register] = ACTIONS(4140), - [anon_sym_inline] = ACTIONS(4140), - [anon_sym___inline] = ACTIONS(4140), - [anon_sym___inline__] = ACTIONS(4140), - [anon_sym___forceinline] = ACTIONS(4140), - [anon_sym_thread_local] = ACTIONS(4140), - [anon_sym___thread] = ACTIONS(4140), - [anon_sym_const] = ACTIONS(4140), - [anon_sym_constexpr] = ACTIONS(4140), - [anon_sym_volatile] = ACTIONS(4140), - [anon_sym_restrict] = ACTIONS(4140), - [anon_sym___restrict__] = ACTIONS(4140), - [anon_sym__Atomic] = ACTIONS(4140), - [anon_sym__Noreturn] = ACTIONS(4140), - [anon_sym_noreturn] = ACTIONS(4140), - [anon_sym__Nonnull] = ACTIONS(4140), - [anon_sym_mutable] = ACTIONS(4140), - [anon_sym_constinit] = ACTIONS(4140), - [anon_sym_consteval] = ACTIONS(4140), - [anon_sym_alignas] = ACTIONS(4140), - [anon_sym__Alignas] = ACTIONS(4140), - [sym_primitive_type] = ACTIONS(4140), - [anon_sym_enum] = ACTIONS(4140), - [anon_sym_class] = ACTIONS(4140), - [anon_sym_struct] = ACTIONS(4140), - [anon_sym_union] = ACTIONS(4140), - [anon_sym_if] = ACTIONS(4140), - [anon_sym_switch] = ACTIONS(4140), - [anon_sym_case] = ACTIONS(4140), - [anon_sym_default] = ACTIONS(4140), - [anon_sym_while] = ACTIONS(4140), - [anon_sym_do] = ACTIONS(4140), - [anon_sym_for] = ACTIONS(4140), - [anon_sym_return] = ACTIONS(4140), - [anon_sym_break] = ACTIONS(4140), - [anon_sym_continue] = ACTIONS(4140), - [anon_sym_goto] = ACTIONS(4140), - [anon_sym_not] = ACTIONS(4140), - [anon_sym_compl] = ACTIONS(4140), - [anon_sym_DASH_DASH] = ACTIONS(4142), - [anon_sym_PLUS_PLUS] = ACTIONS(4142), - [anon_sym_sizeof] = ACTIONS(4140), - [anon_sym___alignof__] = ACTIONS(4140), - [anon_sym___alignof] = ACTIONS(4140), - [anon_sym__alignof] = ACTIONS(4140), - [anon_sym_alignof] = ACTIONS(4140), - [anon_sym__Alignof] = ACTIONS(4140), - [anon_sym_offsetof] = ACTIONS(4140), - [anon_sym__Generic] = ACTIONS(4140), - [anon_sym_typename] = ACTIONS(4140), - [anon_sym_asm] = ACTIONS(4140), - [anon_sym___asm__] = ACTIONS(4140), - [anon_sym___asm] = ACTIONS(4140), - [sym_number_literal] = ACTIONS(4142), - [anon_sym_L_SQUOTE] = ACTIONS(4142), - [anon_sym_u_SQUOTE] = ACTIONS(4142), - [anon_sym_U_SQUOTE] = ACTIONS(4142), - [anon_sym_u8_SQUOTE] = ACTIONS(4142), - [anon_sym_SQUOTE] = ACTIONS(4142), - [anon_sym_L_DQUOTE] = ACTIONS(4142), - [anon_sym_u_DQUOTE] = ACTIONS(4142), - [anon_sym_U_DQUOTE] = ACTIONS(4142), - [anon_sym_u8_DQUOTE] = ACTIONS(4142), - [anon_sym_DQUOTE] = ACTIONS(4142), - [sym_true] = ACTIONS(4140), - [sym_false] = ACTIONS(4140), - [anon_sym_NULL] = ACTIONS(4140), - [anon_sym_nullptr] = ACTIONS(4140), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4140), - [anon_sym_decltype] = ACTIONS(4140), - [anon_sym_explicit] = ACTIONS(4140), - [anon_sym_export] = ACTIONS(4140), - [anon_sym_module] = ACTIONS(4140), - [anon_sym_import] = ACTIONS(4140), - [anon_sym_template] = ACTIONS(4140), - [anon_sym_operator] = ACTIONS(4140), - [anon_sym_try] = ACTIONS(4140), - [anon_sym_delete] = ACTIONS(4140), - [anon_sym_throw] = ACTIONS(4140), - [anon_sym_namespace] = ACTIONS(4140), - [anon_sym_static_assert] = ACTIONS(4140), - [anon_sym_concept] = ACTIONS(4140), - [anon_sym_co_return] = ACTIONS(4140), - [anon_sym_co_yield] = ACTIONS(4140), - [anon_sym_R_DQUOTE] = ACTIONS(4142), - [anon_sym_LR_DQUOTE] = ACTIONS(4142), - [anon_sym_uR_DQUOTE] = ACTIONS(4142), - [anon_sym_UR_DQUOTE] = ACTIONS(4142), - [anon_sym_u8R_DQUOTE] = ACTIONS(4142), - [anon_sym_co_await] = ACTIONS(4140), - [anon_sym_new] = ACTIONS(4140), - [anon_sym_requires] = ACTIONS(4140), - [anon_sym_CARET_CARET] = ACTIONS(4142), - [anon_sym_LBRACK_COLON] = ACTIONS(4142), - [sym_this] = ACTIONS(4140), + [ts_builtin_sym_end] = ACTIONS(3704), + [sym_identifier] = ACTIONS(3702), + [aux_sym_preproc_include_token1] = ACTIONS(3702), + [aux_sym_preproc_def_token1] = ACTIONS(3702), + [aux_sym_preproc_if_token1] = ACTIONS(3702), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3702), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3702), + [sym_preproc_directive] = ACTIONS(3702), + [anon_sym_LPAREN2] = ACTIONS(3704), + [anon_sym_BANG] = ACTIONS(3704), + [anon_sym_TILDE] = ACTIONS(3704), + [anon_sym_DASH] = ACTIONS(3702), + [anon_sym_PLUS] = ACTIONS(3702), + [anon_sym_STAR] = ACTIONS(3704), + [anon_sym_AMP_AMP] = ACTIONS(3704), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_SEMI] = ACTIONS(3704), + [anon_sym___extension__] = ACTIONS(3702), + [anon_sym_typedef] = ACTIONS(3702), + [anon_sym_virtual] = ACTIONS(3702), + [anon_sym_extern] = ACTIONS(3702), + [anon_sym___attribute__] = ACTIONS(3702), + [anon_sym___attribute] = ACTIONS(3702), + [anon_sym_using] = ACTIONS(3702), + [anon_sym_COLON_COLON] = ACTIONS(3704), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3704), + [anon_sym___declspec] = ACTIONS(3702), + [anon_sym___based] = ACTIONS(3702), + [anon_sym___cdecl] = ACTIONS(3702), + [anon_sym___clrcall] = ACTIONS(3702), + [anon_sym___stdcall] = ACTIONS(3702), + [anon_sym___fastcall] = ACTIONS(3702), + [anon_sym___thiscall] = ACTIONS(3702), + [anon_sym___vectorcall] = ACTIONS(3702), + [anon_sym_LBRACE] = ACTIONS(3704), + [anon_sym_signed] = ACTIONS(3702), + [anon_sym_unsigned] = ACTIONS(3702), + [anon_sym_long] = ACTIONS(3702), + [anon_sym_short] = ACTIONS(3702), + [anon_sym_LBRACK] = ACTIONS(3702), + [anon_sym_static] = ACTIONS(3702), + [anon_sym_register] = ACTIONS(3702), + [anon_sym_inline] = ACTIONS(3702), + [anon_sym___inline] = ACTIONS(3702), + [anon_sym___inline__] = ACTIONS(3702), + [anon_sym___forceinline] = ACTIONS(3702), + [anon_sym_thread_local] = ACTIONS(3702), + [anon_sym___thread] = ACTIONS(3702), + [anon_sym_const] = ACTIONS(3702), + [anon_sym_constexpr] = ACTIONS(3702), + [anon_sym_volatile] = ACTIONS(3702), + [anon_sym_restrict] = ACTIONS(3702), + [anon_sym___restrict__] = ACTIONS(3702), + [anon_sym__Atomic] = ACTIONS(3702), + [anon_sym__Noreturn] = ACTIONS(3702), + [anon_sym_noreturn] = ACTIONS(3702), + [anon_sym__Nonnull] = ACTIONS(3702), + [anon_sym_mutable] = ACTIONS(3702), + [anon_sym_constinit] = ACTIONS(3702), + [anon_sym_consteval] = ACTIONS(3702), + [anon_sym_alignas] = ACTIONS(3702), + [anon_sym__Alignas] = ACTIONS(3702), + [sym_primitive_type] = ACTIONS(3702), + [anon_sym_enum] = ACTIONS(3702), + [anon_sym_class] = ACTIONS(3702), + [anon_sym_struct] = ACTIONS(3702), + [anon_sym_union] = ACTIONS(3702), + [anon_sym_if] = ACTIONS(3702), + [anon_sym_switch] = ACTIONS(3702), + [anon_sym_case] = ACTIONS(3702), + [anon_sym_default] = ACTIONS(3702), + [anon_sym_while] = ACTIONS(3702), + [anon_sym_do] = ACTIONS(3702), + [anon_sym_for] = ACTIONS(3702), + [anon_sym_return] = ACTIONS(3702), + [anon_sym_break] = ACTIONS(3702), + [anon_sym_continue] = ACTIONS(3702), + [anon_sym_goto] = ACTIONS(3702), + [anon_sym_not] = ACTIONS(3702), + [anon_sym_compl] = ACTIONS(3702), + [anon_sym_DASH_DASH] = ACTIONS(3704), + [anon_sym_PLUS_PLUS] = ACTIONS(3704), + [anon_sym_sizeof] = ACTIONS(3702), + [anon_sym___alignof__] = ACTIONS(3702), + [anon_sym___alignof] = ACTIONS(3702), + [anon_sym__alignof] = ACTIONS(3702), + [anon_sym_alignof] = ACTIONS(3702), + [anon_sym__Alignof] = ACTIONS(3702), + [anon_sym_offsetof] = ACTIONS(3702), + [anon_sym__Generic] = ACTIONS(3702), + [anon_sym_typename] = ACTIONS(3702), + [anon_sym_asm] = ACTIONS(3702), + [anon_sym___asm__] = ACTIONS(3702), + [anon_sym___asm] = ACTIONS(3702), + [sym_number_literal] = ACTIONS(3704), + [anon_sym_L_SQUOTE] = ACTIONS(3704), + [anon_sym_u_SQUOTE] = ACTIONS(3704), + [anon_sym_U_SQUOTE] = ACTIONS(3704), + [anon_sym_u8_SQUOTE] = ACTIONS(3704), + [anon_sym_SQUOTE] = ACTIONS(3704), + [anon_sym_L_DQUOTE] = ACTIONS(3704), + [anon_sym_u_DQUOTE] = ACTIONS(3704), + [anon_sym_U_DQUOTE] = ACTIONS(3704), + [anon_sym_u8_DQUOTE] = ACTIONS(3704), + [anon_sym_DQUOTE] = ACTIONS(3704), + [sym_true] = ACTIONS(3702), + [sym_false] = ACTIONS(3702), + [anon_sym_NULL] = ACTIONS(3702), + [anon_sym_nullptr] = ACTIONS(3702), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3702), + [anon_sym_decltype] = ACTIONS(3702), + [anon_sym_explicit] = ACTIONS(3702), + [anon_sym_export] = ACTIONS(3702), + [anon_sym_module] = ACTIONS(3702), + [anon_sym_import] = ACTIONS(3702), + [anon_sym_template] = ACTIONS(3702), + [anon_sym_operator] = ACTIONS(3702), + [anon_sym_try] = ACTIONS(3702), + [anon_sym_delete] = ACTIONS(3702), + [anon_sym_throw] = ACTIONS(3702), + [anon_sym_namespace] = ACTIONS(3702), + [anon_sym_static_assert] = ACTIONS(3702), + [anon_sym_concept] = ACTIONS(3702), + [anon_sym_co_return] = ACTIONS(3702), + [anon_sym_co_yield] = ACTIONS(3702), + [anon_sym_R_DQUOTE] = ACTIONS(3704), + [anon_sym_LR_DQUOTE] = ACTIONS(3704), + [anon_sym_uR_DQUOTE] = ACTIONS(3704), + [anon_sym_UR_DQUOTE] = ACTIONS(3704), + [anon_sym_u8R_DQUOTE] = ACTIONS(3704), + [anon_sym_co_await] = ACTIONS(3702), + [anon_sym_new] = ACTIONS(3702), + [anon_sym_requires] = ACTIONS(3702), + [anon_sym_CARET_CARET] = ACTIONS(3704), + [anon_sym_LBRACK_COLON] = ACTIONS(3704), + [sym_this] = ACTIONS(3702), }, [STATE(905)] = { - [ts_builtin_sym_end] = ACTIONS(4146), - [sym_identifier] = ACTIONS(4144), - [aux_sym_preproc_include_token1] = ACTIONS(4144), - [aux_sym_preproc_def_token1] = ACTIONS(4144), - [aux_sym_preproc_if_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4144), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4144), - [sym_preproc_directive] = ACTIONS(4144), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_BANG] = ACTIONS(4146), - [anon_sym_TILDE] = ACTIONS(4146), - [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_PLUS] = ACTIONS(4144), - [anon_sym_STAR] = ACTIONS(4146), - [anon_sym_AMP_AMP] = ACTIONS(4146), - [anon_sym_AMP] = ACTIONS(4144), - [anon_sym_SEMI] = ACTIONS(4146), - [anon_sym___extension__] = ACTIONS(4144), - [anon_sym_typedef] = ACTIONS(4144), - [anon_sym_virtual] = ACTIONS(4144), - [anon_sym_extern] = ACTIONS(4144), - [anon_sym___attribute__] = ACTIONS(4144), - [anon_sym___attribute] = ACTIONS(4144), - [anon_sym_using] = ACTIONS(4144), - [anon_sym_COLON_COLON] = ACTIONS(4146), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4146), - [anon_sym___declspec] = ACTIONS(4144), - [anon_sym___based] = ACTIONS(4144), - [anon_sym___cdecl] = ACTIONS(4144), - [anon_sym___clrcall] = ACTIONS(4144), - [anon_sym___stdcall] = ACTIONS(4144), - [anon_sym___fastcall] = ACTIONS(4144), - [anon_sym___thiscall] = ACTIONS(4144), - [anon_sym___vectorcall] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4146), - [anon_sym_signed] = ACTIONS(4144), - [anon_sym_unsigned] = ACTIONS(4144), - [anon_sym_long] = ACTIONS(4144), - [anon_sym_short] = ACTIONS(4144), - [anon_sym_LBRACK] = ACTIONS(4144), - [anon_sym_static] = ACTIONS(4144), - [anon_sym_register] = ACTIONS(4144), - [anon_sym_inline] = ACTIONS(4144), - [anon_sym___inline] = ACTIONS(4144), - [anon_sym___inline__] = ACTIONS(4144), - [anon_sym___forceinline] = ACTIONS(4144), - [anon_sym_thread_local] = ACTIONS(4144), - [anon_sym___thread] = ACTIONS(4144), - [anon_sym_const] = ACTIONS(4144), - [anon_sym_constexpr] = ACTIONS(4144), - [anon_sym_volatile] = ACTIONS(4144), - [anon_sym_restrict] = ACTIONS(4144), - [anon_sym___restrict__] = ACTIONS(4144), - [anon_sym__Atomic] = ACTIONS(4144), - [anon_sym__Noreturn] = ACTIONS(4144), - [anon_sym_noreturn] = ACTIONS(4144), - [anon_sym__Nonnull] = ACTIONS(4144), - [anon_sym_mutable] = ACTIONS(4144), - [anon_sym_constinit] = ACTIONS(4144), - [anon_sym_consteval] = ACTIONS(4144), - [anon_sym_alignas] = ACTIONS(4144), - [anon_sym__Alignas] = ACTIONS(4144), - [sym_primitive_type] = ACTIONS(4144), - [anon_sym_enum] = ACTIONS(4144), - [anon_sym_class] = ACTIONS(4144), - [anon_sym_struct] = ACTIONS(4144), - [anon_sym_union] = ACTIONS(4144), - [anon_sym_if] = ACTIONS(4144), - [anon_sym_switch] = ACTIONS(4144), - [anon_sym_case] = ACTIONS(4144), - [anon_sym_default] = ACTIONS(4144), - [anon_sym_while] = ACTIONS(4144), - [anon_sym_do] = ACTIONS(4144), - [anon_sym_for] = ACTIONS(4144), - [anon_sym_return] = ACTIONS(4144), - [anon_sym_break] = ACTIONS(4144), - [anon_sym_continue] = ACTIONS(4144), - [anon_sym_goto] = ACTIONS(4144), - [anon_sym_not] = ACTIONS(4144), - [anon_sym_compl] = ACTIONS(4144), - [anon_sym_DASH_DASH] = ACTIONS(4146), - [anon_sym_PLUS_PLUS] = ACTIONS(4146), - [anon_sym_sizeof] = ACTIONS(4144), - [anon_sym___alignof__] = ACTIONS(4144), - [anon_sym___alignof] = ACTIONS(4144), - [anon_sym__alignof] = ACTIONS(4144), - [anon_sym_alignof] = ACTIONS(4144), - [anon_sym__Alignof] = ACTIONS(4144), - [anon_sym_offsetof] = ACTIONS(4144), - [anon_sym__Generic] = ACTIONS(4144), - [anon_sym_typename] = ACTIONS(4144), - [anon_sym_asm] = ACTIONS(4144), - [anon_sym___asm__] = ACTIONS(4144), - [anon_sym___asm] = ACTIONS(4144), - [sym_number_literal] = ACTIONS(4146), - [anon_sym_L_SQUOTE] = ACTIONS(4146), - [anon_sym_u_SQUOTE] = ACTIONS(4146), - [anon_sym_U_SQUOTE] = ACTIONS(4146), - [anon_sym_u8_SQUOTE] = ACTIONS(4146), - [anon_sym_SQUOTE] = ACTIONS(4146), - [anon_sym_L_DQUOTE] = ACTIONS(4146), - [anon_sym_u_DQUOTE] = ACTIONS(4146), - [anon_sym_U_DQUOTE] = ACTIONS(4146), - [anon_sym_u8_DQUOTE] = ACTIONS(4146), - [anon_sym_DQUOTE] = ACTIONS(4146), - [sym_true] = ACTIONS(4144), - [sym_false] = ACTIONS(4144), - [anon_sym_NULL] = ACTIONS(4144), - [anon_sym_nullptr] = ACTIONS(4144), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4144), - [anon_sym_decltype] = ACTIONS(4144), - [anon_sym_explicit] = ACTIONS(4144), - [anon_sym_export] = ACTIONS(4144), - [anon_sym_module] = ACTIONS(4144), - [anon_sym_import] = ACTIONS(4144), - [anon_sym_template] = ACTIONS(4144), - [anon_sym_operator] = ACTIONS(4144), - [anon_sym_try] = ACTIONS(4144), - [anon_sym_delete] = ACTIONS(4144), - [anon_sym_throw] = ACTIONS(4144), - [anon_sym_namespace] = ACTIONS(4144), - [anon_sym_static_assert] = ACTIONS(4144), - [anon_sym_concept] = ACTIONS(4144), - [anon_sym_co_return] = ACTIONS(4144), - [anon_sym_co_yield] = ACTIONS(4144), - [anon_sym_R_DQUOTE] = ACTIONS(4146), - [anon_sym_LR_DQUOTE] = ACTIONS(4146), - [anon_sym_uR_DQUOTE] = ACTIONS(4146), - [anon_sym_UR_DQUOTE] = ACTIONS(4146), - [anon_sym_u8R_DQUOTE] = ACTIONS(4146), - [anon_sym_co_await] = ACTIONS(4144), - [anon_sym_new] = ACTIONS(4144), - [anon_sym_requires] = ACTIONS(4144), - [anon_sym_CARET_CARET] = ACTIONS(4146), - [anon_sym_LBRACK_COLON] = ACTIONS(4146), - [sym_this] = ACTIONS(4144), + [ts_builtin_sym_end] = ACTIONS(4278), + [sym_identifier] = ACTIONS(4275), + [aux_sym_preproc_include_token1] = ACTIONS(4275), + [aux_sym_preproc_def_token1] = ACTIONS(4275), + [aux_sym_preproc_if_token1] = ACTIONS(4275), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4275), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4275), + [sym_preproc_directive] = ACTIONS(4275), + [anon_sym_LPAREN2] = ACTIONS(4278), + [anon_sym_BANG] = ACTIONS(4278), + [anon_sym_TILDE] = ACTIONS(4278), + [anon_sym_DASH] = ACTIONS(4275), + [anon_sym_PLUS] = ACTIONS(4275), + [anon_sym_STAR] = ACTIONS(4278), + [anon_sym_AMP_AMP] = ACTIONS(4278), + [anon_sym_AMP] = ACTIONS(4275), + [anon_sym_SEMI] = ACTIONS(4278), + [anon_sym___extension__] = ACTIONS(4275), + [anon_sym_typedef] = ACTIONS(4275), + [anon_sym_virtual] = ACTIONS(4275), + [anon_sym_extern] = ACTIONS(4275), + [anon_sym___attribute__] = ACTIONS(4275), + [anon_sym___attribute] = ACTIONS(4275), + [anon_sym_using] = ACTIONS(4275), + [anon_sym_COLON_COLON] = ACTIONS(4278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4278), + [anon_sym___declspec] = ACTIONS(4275), + [anon_sym___based] = ACTIONS(4275), + [anon_sym___cdecl] = ACTIONS(4275), + [anon_sym___clrcall] = ACTIONS(4275), + [anon_sym___stdcall] = ACTIONS(4275), + [anon_sym___fastcall] = ACTIONS(4275), + [anon_sym___thiscall] = ACTIONS(4275), + [anon_sym___vectorcall] = ACTIONS(4275), + [anon_sym_LBRACE] = ACTIONS(4278), + [anon_sym_signed] = ACTIONS(4275), + [anon_sym_unsigned] = ACTIONS(4275), + [anon_sym_long] = ACTIONS(4275), + [anon_sym_short] = ACTIONS(4275), + [anon_sym_LBRACK] = ACTIONS(4275), + [anon_sym_static] = ACTIONS(4275), + [anon_sym_register] = ACTIONS(4275), + [anon_sym_inline] = ACTIONS(4275), + [anon_sym___inline] = ACTIONS(4275), + [anon_sym___inline__] = ACTIONS(4275), + [anon_sym___forceinline] = ACTIONS(4275), + [anon_sym_thread_local] = ACTIONS(4275), + [anon_sym___thread] = ACTIONS(4275), + [anon_sym_const] = ACTIONS(4275), + [anon_sym_constexpr] = ACTIONS(4275), + [anon_sym_volatile] = ACTIONS(4275), + [anon_sym_restrict] = ACTIONS(4275), + [anon_sym___restrict__] = ACTIONS(4275), + [anon_sym__Atomic] = ACTIONS(4275), + [anon_sym__Noreturn] = ACTIONS(4275), + [anon_sym_noreturn] = ACTIONS(4275), + [anon_sym__Nonnull] = ACTIONS(4275), + [anon_sym_mutable] = ACTIONS(4275), + [anon_sym_constinit] = ACTIONS(4275), + [anon_sym_consteval] = ACTIONS(4275), + [anon_sym_alignas] = ACTIONS(4275), + [anon_sym__Alignas] = ACTIONS(4275), + [sym_primitive_type] = ACTIONS(4275), + [anon_sym_enum] = ACTIONS(4275), + [anon_sym_class] = ACTIONS(4275), + [anon_sym_struct] = ACTIONS(4275), + [anon_sym_union] = ACTIONS(4275), + [anon_sym_if] = ACTIONS(4275), + [anon_sym_switch] = ACTIONS(4275), + [anon_sym_case] = ACTIONS(4275), + [anon_sym_default] = ACTIONS(4275), + [anon_sym_while] = ACTIONS(4275), + [anon_sym_do] = ACTIONS(4275), + [anon_sym_for] = ACTIONS(4275), + [anon_sym_return] = ACTIONS(4275), + [anon_sym_break] = ACTIONS(4275), + [anon_sym_continue] = ACTIONS(4275), + [anon_sym_goto] = ACTIONS(4275), + [anon_sym_not] = ACTIONS(4275), + [anon_sym_compl] = ACTIONS(4275), + [anon_sym_DASH_DASH] = ACTIONS(4278), + [anon_sym_PLUS_PLUS] = ACTIONS(4278), + [anon_sym_sizeof] = ACTIONS(4275), + [anon_sym___alignof__] = ACTIONS(4275), + [anon_sym___alignof] = ACTIONS(4275), + [anon_sym__alignof] = ACTIONS(4275), + [anon_sym_alignof] = ACTIONS(4275), + [anon_sym__Alignof] = ACTIONS(4275), + [anon_sym_offsetof] = ACTIONS(4275), + [anon_sym__Generic] = ACTIONS(4275), + [anon_sym_typename] = ACTIONS(4275), + [anon_sym_asm] = ACTIONS(4275), + [anon_sym___asm__] = ACTIONS(4275), + [anon_sym___asm] = ACTIONS(4275), + [sym_number_literal] = ACTIONS(4278), + [anon_sym_L_SQUOTE] = ACTIONS(4278), + [anon_sym_u_SQUOTE] = ACTIONS(4278), + [anon_sym_U_SQUOTE] = ACTIONS(4278), + [anon_sym_u8_SQUOTE] = ACTIONS(4278), + [anon_sym_SQUOTE] = ACTIONS(4278), + [anon_sym_L_DQUOTE] = ACTIONS(4278), + [anon_sym_u_DQUOTE] = ACTIONS(4278), + [anon_sym_U_DQUOTE] = ACTIONS(4278), + [anon_sym_u8_DQUOTE] = ACTIONS(4278), + [anon_sym_DQUOTE] = ACTIONS(4278), + [sym_true] = ACTIONS(4275), + [sym_false] = ACTIONS(4275), + [anon_sym_NULL] = ACTIONS(4275), + [anon_sym_nullptr] = ACTIONS(4275), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4275), + [anon_sym_decltype] = ACTIONS(4275), + [anon_sym_explicit] = ACTIONS(4275), + [anon_sym_export] = ACTIONS(4275), + [anon_sym_module] = ACTIONS(4275), + [anon_sym_import] = ACTIONS(4275), + [anon_sym_template] = ACTIONS(4275), + [anon_sym_operator] = ACTIONS(4275), + [anon_sym_try] = ACTIONS(4275), + [anon_sym_delete] = ACTIONS(4275), + [anon_sym_throw] = ACTIONS(4275), + [anon_sym_namespace] = ACTIONS(4275), + [anon_sym_static_assert] = ACTIONS(4275), + [anon_sym_concept] = ACTIONS(4275), + [anon_sym_co_return] = ACTIONS(4275), + [anon_sym_co_yield] = ACTIONS(4275), + [anon_sym_R_DQUOTE] = ACTIONS(4278), + [anon_sym_LR_DQUOTE] = ACTIONS(4278), + [anon_sym_uR_DQUOTE] = ACTIONS(4278), + [anon_sym_UR_DQUOTE] = ACTIONS(4278), + [anon_sym_u8R_DQUOTE] = ACTIONS(4278), + [anon_sym_co_await] = ACTIONS(4275), + [anon_sym_new] = ACTIONS(4275), + [anon_sym_requires] = ACTIONS(4275), + [anon_sym_CARET_CARET] = ACTIONS(4278), + [anon_sym_LBRACK_COLON] = ACTIONS(4278), + [sym_this] = ACTIONS(4275), }, [STATE(906)] = { - [sym_identifier] = ACTIONS(4510), - [aux_sym_preproc_include_token1] = ACTIONS(4510), - [aux_sym_preproc_def_token1] = ACTIONS(4510), - [aux_sym_preproc_if_token1] = ACTIONS(4510), - [aux_sym_preproc_if_token2] = ACTIONS(4510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4510), - [sym_preproc_directive] = ACTIONS(4510), - [anon_sym_LPAREN2] = ACTIONS(4512), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_TILDE] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4510), - [anon_sym_STAR] = ACTIONS(4512), - [anon_sym_AMP_AMP] = ACTIONS(4512), - [anon_sym_AMP] = ACTIONS(4510), - [anon_sym_SEMI] = ACTIONS(4512), - [anon_sym___extension__] = ACTIONS(4510), - [anon_sym_typedef] = ACTIONS(4510), - [anon_sym_virtual] = ACTIONS(4510), - [anon_sym_extern] = ACTIONS(4510), - [anon_sym___attribute__] = ACTIONS(4510), - [anon_sym___attribute] = ACTIONS(4510), - [anon_sym_using] = ACTIONS(4510), - [anon_sym_COLON_COLON] = ACTIONS(4512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4512), - [anon_sym___declspec] = ACTIONS(4510), - [anon_sym___based] = ACTIONS(4510), - [anon_sym___cdecl] = ACTIONS(4510), - [anon_sym___clrcall] = ACTIONS(4510), - [anon_sym___stdcall] = ACTIONS(4510), - [anon_sym___fastcall] = ACTIONS(4510), - [anon_sym___thiscall] = ACTIONS(4510), - [anon_sym___vectorcall] = ACTIONS(4510), - [anon_sym_LBRACE] = ACTIONS(4512), - [anon_sym_signed] = ACTIONS(4510), - [anon_sym_unsigned] = ACTIONS(4510), - [anon_sym_long] = ACTIONS(4510), - [anon_sym_short] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_static] = ACTIONS(4510), - [anon_sym_register] = ACTIONS(4510), - [anon_sym_inline] = ACTIONS(4510), - [anon_sym___inline] = ACTIONS(4510), - [anon_sym___inline__] = ACTIONS(4510), - [anon_sym___forceinline] = ACTIONS(4510), - [anon_sym_thread_local] = ACTIONS(4510), - [anon_sym___thread] = ACTIONS(4510), - [anon_sym_const] = ACTIONS(4510), - [anon_sym_constexpr] = ACTIONS(4510), - [anon_sym_volatile] = ACTIONS(4510), - [anon_sym_restrict] = ACTIONS(4510), - [anon_sym___restrict__] = ACTIONS(4510), - [anon_sym__Atomic] = ACTIONS(4510), - [anon_sym__Noreturn] = ACTIONS(4510), - [anon_sym_noreturn] = ACTIONS(4510), - [anon_sym__Nonnull] = ACTIONS(4510), - [anon_sym_mutable] = ACTIONS(4510), - [anon_sym_constinit] = ACTIONS(4510), - [anon_sym_consteval] = ACTIONS(4510), - [anon_sym_alignas] = ACTIONS(4510), - [anon_sym__Alignas] = ACTIONS(4510), - [sym_primitive_type] = ACTIONS(4510), - [anon_sym_enum] = ACTIONS(4510), - [anon_sym_class] = ACTIONS(4510), - [anon_sym_struct] = ACTIONS(4510), - [anon_sym_union] = ACTIONS(4510), - [anon_sym_if] = ACTIONS(4510), - [anon_sym_switch] = ACTIONS(4510), - [anon_sym_case] = ACTIONS(4510), - [anon_sym_default] = ACTIONS(4510), - [anon_sym_while] = ACTIONS(4510), - [anon_sym_do] = ACTIONS(4510), - [anon_sym_for] = ACTIONS(4510), - [anon_sym_return] = ACTIONS(4510), - [anon_sym_break] = ACTIONS(4510), - [anon_sym_continue] = ACTIONS(4510), - [anon_sym_goto] = ACTIONS(4510), - [anon_sym_not] = ACTIONS(4510), - [anon_sym_compl] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4512), - [anon_sym_PLUS_PLUS] = ACTIONS(4512), - [anon_sym_sizeof] = ACTIONS(4510), - [anon_sym___alignof__] = ACTIONS(4510), - [anon_sym___alignof] = ACTIONS(4510), - [anon_sym__alignof] = ACTIONS(4510), - [anon_sym_alignof] = ACTIONS(4510), - [anon_sym__Alignof] = ACTIONS(4510), - [anon_sym_offsetof] = ACTIONS(4510), - [anon_sym__Generic] = ACTIONS(4510), - [anon_sym_typename] = ACTIONS(4510), - [anon_sym_asm] = ACTIONS(4510), - [anon_sym___asm__] = ACTIONS(4510), - [anon_sym___asm] = ACTIONS(4510), - [sym_number_literal] = ACTIONS(4512), - [anon_sym_L_SQUOTE] = ACTIONS(4512), - [anon_sym_u_SQUOTE] = ACTIONS(4512), - [anon_sym_U_SQUOTE] = ACTIONS(4512), - [anon_sym_u8_SQUOTE] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4512), - [anon_sym_L_DQUOTE] = ACTIONS(4512), - [anon_sym_u_DQUOTE] = ACTIONS(4512), - [anon_sym_U_DQUOTE] = ACTIONS(4512), - [anon_sym_u8_DQUOTE] = ACTIONS(4512), - [anon_sym_DQUOTE] = ACTIONS(4512), - [sym_true] = ACTIONS(4510), - [sym_false] = ACTIONS(4510), - [anon_sym_NULL] = ACTIONS(4510), - [anon_sym_nullptr] = ACTIONS(4510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4510), - [anon_sym_decltype] = ACTIONS(4510), - [anon_sym_explicit] = ACTIONS(4510), - [anon_sym_export] = ACTIONS(4510), - [anon_sym_module] = ACTIONS(4510), - [anon_sym_import] = ACTIONS(4510), - [anon_sym_template] = ACTIONS(4510), - [anon_sym_operator] = ACTIONS(4510), - [anon_sym_try] = ACTIONS(4510), - [anon_sym_delete] = ACTIONS(4510), - [anon_sym_throw] = ACTIONS(4510), - [anon_sym_namespace] = ACTIONS(4510), - [anon_sym_static_assert] = ACTIONS(4510), - [anon_sym_concept] = ACTIONS(4510), - [anon_sym_co_return] = ACTIONS(4510), - [anon_sym_co_yield] = ACTIONS(4510), - [anon_sym_R_DQUOTE] = ACTIONS(4512), - [anon_sym_LR_DQUOTE] = ACTIONS(4512), - [anon_sym_uR_DQUOTE] = ACTIONS(4512), - [anon_sym_UR_DQUOTE] = ACTIONS(4512), - [anon_sym_u8R_DQUOTE] = ACTIONS(4512), - [anon_sym_co_await] = ACTIONS(4510), - [anon_sym_new] = ACTIONS(4510), - [anon_sym_requires] = ACTIONS(4510), - [anon_sym_CARET_CARET] = ACTIONS(4512), - [anon_sym_LBRACK_COLON] = ACTIONS(4512), - [sym_this] = ACTIONS(4510), + [ts_builtin_sym_end] = ACTIONS(3708), + [sym_identifier] = ACTIONS(3706), + [aux_sym_preproc_include_token1] = ACTIONS(3706), + [aux_sym_preproc_def_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token1] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3706), + [sym_preproc_directive] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), + [anon_sym_PLUS] = ACTIONS(3706), + [anon_sym_STAR] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym___extension__] = ACTIONS(3706), + [anon_sym_typedef] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym___attribute] = ACTIONS(3706), + [anon_sym_using] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym___cdecl] = ACTIONS(3706), + [anon_sym___clrcall] = ACTIONS(3706), + [anon_sym___stdcall] = ACTIONS(3706), + [anon_sym___fastcall] = ACTIONS(3706), + [anon_sym___thiscall] = ACTIONS(3706), + [anon_sym___vectorcall] = ACTIONS(3706), + [anon_sym_LBRACE] = ACTIONS(3708), + [anon_sym_signed] = ACTIONS(3706), + [anon_sym_unsigned] = ACTIONS(3706), + [anon_sym_long] = ACTIONS(3706), + [anon_sym_short] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym___inline] = ACTIONS(3706), + [anon_sym___inline__] = ACTIONS(3706), + [anon_sym___forceinline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym___thread] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym___restrict__] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym__Noreturn] = ACTIONS(3706), + [anon_sym_noreturn] = ACTIONS(3706), + [anon_sym__Nonnull] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_alignas] = ACTIONS(3706), + [anon_sym__Alignas] = ACTIONS(3706), + [sym_primitive_type] = ACTIONS(3706), + [anon_sym_enum] = ACTIONS(3706), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3706), + [anon_sym_union] = ACTIONS(3706), + [anon_sym_if] = ACTIONS(3706), + [anon_sym_switch] = ACTIONS(3706), + [anon_sym_case] = ACTIONS(3706), + [anon_sym_default] = ACTIONS(3706), + [anon_sym_while] = ACTIONS(3706), + [anon_sym_do] = ACTIONS(3706), + [anon_sym_for] = ACTIONS(3706), + [anon_sym_return] = ACTIONS(3706), + [anon_sym_break] = ACTIONS(3706), + [anon_sym_continue] = ACTIONS(3706), + [anon_sym_goto] = ACTIONS(3706), + [anon_sym_not] = ACTIONS(3706), + [anon_sym_compl] = ACTIONS(3706), + [anon_sym_DASH_DASH] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3708), + [anon_sym_sizeof] = ACTIONS(3706), + [anon_sym___alignof__] = ACTIONS(3706), + [anon_sym___alignof] = ACTIONS(3706), + [anon_sym__alignof] = ACTIONS(3706), + [anon_sym_alignof] = ACTIONS(3706), + [anon_sym__Alignof] = ACTIONS(3706), + [anon_sym_offsetof] = ACTIONS(3706), + [anon_sym__Generic] = ACTIONS(3706), + [anon_sym_typename] = ACTIONS(3706), + [anon_sym_asm] = ACTIONS(3706), + [anon_sym___asm__] = ACTIONS(3706), + [anon_sym___asm] = ACTIONS(3706), + [sym_number_literal] = ACTIONS(3708), + [anon_sym_L_SQUOTE] = ACTIONS(3708), + [anon_sym_u_SQUOTE] = ACTIONS(3708), + [anon_sym_U_SQUOTE] = ACTIONS(3708), + [anon_sym_u8_SQUOTE] = ACTIONS(3708), + [anon_sym_SQUOTE] = ACTIONS(3708), + [anon_sym_L_DQUOTE] = ACTIONS(3708), + [anon_sym_u_DQUOTE] = ACTIONS(3708), + [anon_sym_U_DQUOTE] = ACTIONS(3708), + [anon_sym_u8_DQUOTE] = ACTIONS(3708), + [anon_sym_DQUOTE] = ACTIONS(3708), + [sym_true] = ACTIONS(3706), + [sym_false] = ACTIONS(3706), + [anon_sym_NULL] = ACTIONS(3706), + [anon_sym_nullptr] = ACTIONS(3706), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_explicit] = ACTIONS(3706), + [anon_sym_export] = ACTIONS(3706), + [anon_sym_module] = ACTIONS(3706), + [anon_sym_import] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + [anon_sym_try] = ACTIONS(3706), + [anon_sym_delete] = ACTIONS(3706), + [anon_sym_throw] = ACTIONS(3706), + [anon_sym_namespace] = ACTIONS(3706), + [anon_sym_static_assert] = ACTIONS(3706), + [anon_sym_concept] = ACTIONS(3706), + [anon_sym_co_return] = ACTIONS(3706), + [anon_sym_co_yield] = ACTIONS(3706), + [anon_sym_R_DQUOTE] = ACTIONS(3708), + [anon_sym_LR_DQUOTE] = ACTIONS(3708), + [anon_sym_uR_DQUOTE] = ACTIONS(3708), + [anon_sym_UR_DQUOTE] = ACTIONS(3708), + [anon_sym_u8R_DQUOTE] = ACTIONS(3708), + [anon_sym_co_await] = ACTIONS(3706), + [anon_sym_new] = ACTIONS(3706), + [anon_sym_requires] = ACTIONS(3706), + [anon_sym_CARET_CARET] = ACTIONS(3708), + [anon_sym_LBRACK_COLON] = ACTIONS(3708), + [sym_this] = ACTIONS(3706), }, [STATE(907)] = { - [sym_identifier] = ACTIONS(4514), - [aux_sym_preproc_include_token1] = ACTIONS(4514), - [aux_sym_preproc_def_token1] = ACTIONS(4514), - [aux_sym_preproc_if_token1] = ACTIONS(4514), - [aux_sym_preproc_if_token2] = ACTIONS(4514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4514), - [sym_preproc_directive] = ACTIONS(4514), - [anon_sym_LPAREN2] = ACTIONS(4516), - [anon_sym_BANG] = ACTIONS(4516), - [anon_sym_TILDE] = ACTIONS(4516), - [anon_sym_DASH] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4514), - [anon_sym_STAR] = ACTIONS(4516), - [anon_sym_AMP_AMP] = ACTIONS(4516), - [anon_sym_AMP] = ACTIONS(4514), - [anon_sym_SEMI] = ACTIONS(4516), - [anon_sym___extension__] = ACTIONS(4514), - [anon_sym_typedef] = ACTIONS(4514), - [anon_sym_virtual] = ACTIONS(4514), - [anon_sym_extern] = ACTIONS(4514), - [anon_sym___attribute__] = ACTIONS(4514), - [anon_sym___attribute] = ACTIONS(4514), - [anon_sym_using] = ACTIONS(4514), - [anon_sym_COLON_COLON] = ACTIONS(4516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4516), - [anon_sym___declspec] = ACTIONS(4514), - [anon_sym___based] = ACTIONS(4514), - [anon_sym___cdecl] = ACTIONS(4514), - [anon_sym___clrcall] = ACTIONS(4514), - [anon_sym___stdcall] = ACTIONS(4514), - [anon_sym___fastcall] = ACTIONS(4514), - [anon_sym___thiscall] = ACTIONS(4514), - [anon_sym___vectorcall] = ACTIONS(4514), - [anon_sym_LBRACE] = ACTIONS(4516), - [anon_sym_signed] = ACTIONS(4514), - [anon_sym_unsigned] = ACTIONS(4514), - [anon_sym_long] = ACTIONS(4514), - [anon_sym_short] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_static] = ACTIONS(4514), - [anon_sym_register] = ACTIONS(4514), - [anon_sym_inline] = ACTIONS(4514), - [anon_sym___inline] = ACTIONS(4514), - [anon_sym___inline__] = ACTIONS(4514), - [anon_sym___forceinline] = ACTIONS(4514), - [anon_sym_thread_local] = ACTIONS(4514), - [anon_sym___thread] = ACTIONS(4514), - [anon_sym_const] = ACTIONS(4514), - [anon_sym_constexpr] = ACTIONS(4514), - [anon_sym_volatile] = ACTIONS(4514), - [anon_sym_restrict] = ACTIONS(4514), - [anon_sym___restrict__] = ACTIONS(4514), - [anon_sym__Atomic] = ACTIONS(4514), - [anon_sym__Noreturn] = ACTIONS(4514), - [anon_sym_noreturn] = ACTIONS(4514), - [anon_sym__Nonnull] = ACTIONS(4514), - [anon_sym_mutable] = ACTIONS(4514), - [anon_sym_constinit] = ACTIONS(4514), - [anon_sym_consteval] = ACTIONS(4514), - [anon_sym_alignas] = ACTIONS(4514), - [anon_sym__Alignas] = ACTIONS(4514), - [sym_primitive_type] = ACTIONS(4514), - [anon_sym_enum] = ACTIONS(4514), - [anon_sym_class] = ACTIONS(4514), - [anon_sym_struct] = ACTIONS(4514), - [anon_sym_union] = ACTIONS(4514), - [anon_sym_if] = ACTIONS(4514), - [anon_sym_switch] = ACTIONS(4514), - [anon_sym_case] = ACTIONS(4514), - [anon_sym_default] = ACTIONS(4514), - [anon_sym_while] = ACTIONS(4514), - [anon_sym_do] = ACTIONS(4514), - [anon_sym_for] = ACTIONS(4514), - [anon_sym_return] = ACTIONS(4514), - [anon_sym_break] = ACTIONS(4514), - [anon_sym_continue] = ACTIONS(4514), - [anon_sym_goto] = ACTIONS(4514), - [anon_sym_not] = ACTIONS(4514), - [anon_sym_compl] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4516), - [anon_sym_PLUS_PLUS] = ACTIONS(4516), - [anon_sym_sizeof] = ACTIONS(4514), - [anon_sym___alignof__] = ACTIONS(4514), - [anon_sym___alignof] = ACTIONS(4514), - [anon_sym__alignof] = ACTIONS(4514), - [anon_sym_alignof] = ACTIONS(4514), - [anon_sym__Alignof] = ACTIONS(4514), - [anon_sym_offsetof] = ACTIONS(4514), - [anon_sym__Generic] = ACTIONS(4514), - [anon_sym_typename] = ACTIONS(4514), - [anon_sym_asm] = ACTIONS(4514), - [anon_sym___asm__] = ACTIONS(4514), - [anon_sym___asm] = ACTIONS(4514), - [sym_number_literal] = ACTIONS(4516), - [anon_sym_L_SQUOTE] = ACTIONS(4516), - [anon_sym_u_SQUOTE] = ACTIONS(4516), - [anon_sym_U_SQUOTE] = ACTIONS(4516), - [anon_sym_u8_SQUOTE] = ACTIONS(4516), - [anon_sym_SQUOTE] = ACTIONS(4516), - [anon_sym_L_DQUOTE] = ACTIONS(4516), - [anon_sym_u_DQUOTE] = ACTIONS(4516), - [anon_sym_U_DQUOTE] = ACTIONS(4516), - [anon_sym_u8_DQUOTE] = ACTIONS(4516), - [anon_sym_DQUOTE] = ACTIONS(4516), - [sym_true] = ACTIONS(4514), - [sym_false] = ACTIONS(4514), - [anon_sym_NULL] = ACTIONS(4514), - [anon_sym_nullptr] = ACTIONS(4514), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4514), - [anon_sym_decltype] = ACTIONS(4514), - [anon_sym_explicit] = ACTIONS(4514), - [anon_sym_export] = ACTIONS(4514), - [anon_sym_module] = ACTIONS(4514), - [anon_sym_import] = ACTIONS(4514), - [anon_sym_template] = ACTIONS(4514), - [anon_sym_operator] = ACTIONS(4514), - [anon_sym_try] = ACTIONS(4514), - [anon_sym_delete] = ACTIONS(4514), - [anon_sym_throw] = ACTIONS(4514), - [anon_sym_namespace] = ACTIONS(4514), - [anon_sym_static_assert] = ACTIONS(4514), - [anon_sym_concept] = ACTIONS(4514), - [anon_sym_co_return] = ACTIONS(4514), - [anon_sym_co_yield] = ACTIONS(4514), - [anon_sym_R_DQUOTE] = ACTIONS(4516), - [anon_sym_LR_DQUOTE] = ACTIONS(4516), - [anon_sym_uR_DQUOTE] = ACTIONS(4516), - [anon_sym_UR_DQUOTE] = ACTIONS(4516), - [anon_sym_u8R_DQUOTE] = ACTIONS(4516), - [anon_sym_co_await] = ACTIONS(4514), - [anon_sym_new] = ACTIONS(4514), - [anon_sym_requires] = ACTIONS(4514), - [anon_sym_CARET_CARET] = ACTIONS(4516), - [anon_sym_LBRACK_COLON] = ACTIONS(4516), - [sym_this] = ACTIONS(4514), - }, - [STATE(908)] = { - [sym_preproc_def] = STATE(914), - [sym_preproc_function_def] = STATE(914), - [sym_preproc_call] = STATE(914), - [sym_preproc_if_in_field_declaration_list] = STATE(914), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(914), - [sym_type_definition] = STATE(914), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(914), - [sym_field_declaration] = STATE(914), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(914), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(914), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(914), - [sym_operator_cast_declaration] = STATE(914), - [sym_constructor_or_destructor_definition] = STATE(914), - [sym_constructor_or_destructor_declaration] = STATE(914), - [sym_friend_declaration] = STATE(914), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(914), - [sym_alias_declaration] = STATE(914), - [sym_static_assert_declaration] = STATE(914), - [sym_consteval_block_declaration] = STATE(914), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(914), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_preproc_def] = STATE(916), + [sym_preproc_function_def] = STATE(916), + [sym_preproc_call] = STATE(916), + [sym_preproc_if_in_field_declaration_list] = STATE(916), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(916), + [sym_type_definition] = STATE(916), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(916), + [sym_field_declaration] = STATE(916), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(916), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(916), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(916), + [sym_operator_cast_declaration] = STATE(916), + [sym_constructor_or_destructor_definition] = STATE(916), + [sym_constructor_or_destructor_declaration] = STATE(916), + [sym_friend_declaration] = STATE(916), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(916), + [sym_alias_declaration] = STATE(916), + [sym_static_assert_declaration] = STATE(916), + [sym_consteval_block_declaration] = STATE(916), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(916), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4765), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4744), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4767), + [anon_sym_RBRACE] = ACTIONS(4746), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -189184,7 +189045,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -189194,2906 +189055,1238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(908)] = { + [ts_builtin_sym_end] = ACTIONS(4319), + [sym_identifier] = ACTIONS(4317), + [aux_sym_preproc_include_token1] = ACTIONS(4317), + [aux_sym_preproc_def_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token1] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4317), + [sym_preproc_directive] = ACTIONS(4317), + [anon_sym_LPAREN2] = ACTIONS(4319), + [anon_sym_BANG] = ACTIONS(4319), + [anon_sym_TILDE] = ACTIONS(4319), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_STAR] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym___extension__] = ACTIONS(4317), + [anon_sym_typedef] = ACTIONS(4317), + [anon_sym_virtual] = ACTIONS(4317), + [anon_sym_extern] = ACTIONS(4317), + [anon_sym___attribute__] = ACTIONS(4317), + [anon_sym___attribute] = ACTIONS(4317), + [anon_sym_using] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4319), + [anon_sym___declspec] = ACTIONS(4317), + [anon_sym___based] = ACTIONS(4317), + [anon_sym___cdecl] = ACTIONS(4317), + [anon_sym___clrcall] = ACTIONS(4317), + [anon_sym___stdcall] = ACTIONS(4317), + [anon_sym___fastcall] = ACTIONS(4317), + [anon_sym___thiscall] = ACTIONS(4317), + [anon_sym___vectorcall] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_signed] = ACTIONS(4317), + [anon_sym_unsigned] = ACTIONS(4317), + [anon_sym_long] = ACTIONS(4317), + [anon_sym_short] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [anon_sym_static] = ACTIONS(4317), + [anon_sym_register] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym___inline] = ACTIONS(4317), + [anon_sym___inline__] = ACTIONS(4317), + [anon_sym___forceinline] = ACTIONS(4317), + [anon_sym_thread_local] = ACTIONS(4317), + [anon_sym___thread] = ACTIONS(4317), + [anon_sym_const] = ACTIONS(4317), + [anon_sym_constexpr] = ACTIONS(4317), + [anon_sym_volatile] = ACTIONS(4317), + [anon_sym_restrict] = ACTIONS(4317), + [anon_sym___restrict__] = ACTIONS(4317), + [anon_sym__Atomic] = ACTIONS(4317), + [anon_sym__Noreturn] = ACTIONS(4317), + [anon_sym_noreturn] = ACTIONS(4317), + [anon_sym__Nonnull] = ACTIONS(4317), + [anon_sym_mutable] = ACTIONS(4317), + [anon_sym_constinit] = ACTIONS(4317), + [anon_sym_consteval] = ACTIONS(4317), + [anon_sym_alignas] = ACTIONS(4317), + [anon_sym__Alignas] = ACTIONS(4317), + [sym_primitive_type] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_class] = ACTIONS(4317), + [anon_sym_struct] = ACTIONS(4317), + [anon_sym_union] = ACTIONS(4317), + [anon_sym_if] = ACTIONS(4317), + [anon_sym_switch] = ACTIONS(4317), + [anon_sym_case] = ACTIONS(4317), + [anon_sym_default] = ACTIONS(4317), + [anon_sym_while] = ACTIONS(4317), + [anon_sym_do] = ACTIONS(4317), + [anon_sym_for] = ACTIONS(4317), + [anon_sym_return] = ACTIONS(4317), + [anon_sym_break] = ACTIONS(4317), + [anon_sym_continue] = ACTIONS(4317), + [anon_sym_goto] = ACTIONS(4317), + [anon_sym_not] = ACTIONS(4317), + [anon_sym_compl] = ACTIONS(4317), + [anon_sym_DASH_DASH] = ACTIONS(4319), + [anon_sym_PLUS_PLUS] = ACTIONS(4319), + [anon_sym_sizeof] = ACTIONS(4317), + [anon_sym___alignof__] = ACTIONS(4317), + [anon_sym___alignof] = ACTIONS(4317), + [anon_sym__alignof] = ACTIONS(4317), + [anon_sym_alignof] = ACTIONS(4317), + [anon_sym__Alignof] = ACTIONS(4317), + [anon_sym_offsetof] = ACTIONS(4317), + [anon_sym__Generic] = ACTIONS(4317), + [anon_sym_typename] = ACTIONS(4317), + [anon_sym_asm] = ACTIONS(4317), + [anon_sym___asm__] = ACTIONS(4317), + [anon_sym___asm] = ACTIONS(4317), + [sym_number_literal] = ACTIONS(4319), + [anon_sym_L_SQUOTE] = ACTIONS(4319), + [anon_sym_u_SQUOTE] = ACTIONS(4319), + [anon_sym_U_SQUOTE] = ACTIONS(4319), + [anon_sym_u8_SQUOTE] = ACTIONS(4319), + [anon_sym_SQUOTE] = ACTIONS(4319), + [anon_sym_L_DQUOTE] = ACTIONS(4319), + [anon_sym_u_DQUOTE] = ACTIONS(4319), + [anon_sym_U_DQUOTE] = ACTIONS(4319), + [anon_sym_u8_DQUOTE] = ACTIONS(4319), + [anon_sym_DQUOTE] = ACTIONS(4319), + [sym_true] = ACTIONS(4317), + [sym_false] = ACTIONS(4317), + [anon_sym_NULL] = ACTIONS(4317), + [anon_sym_nullptr] = ACTIONS(4317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4317), + [anon_sym_decltype] = ACTIONS(4317), + [anon_sym_explicit] = ACTIONS(4317), + [anon_sym_export] = ACTIONS(4317), + [anon_sym_module] = ACTIONS(4317), + [anon_sym_import] = ACTIONS(4317), + [anon_sym_template] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_try] = ACTIONS(4317), + [anon_sym_delete] = ACTIONS(4317), + [anon_sym_throw] = ACTIONS(4317), + [anon_sym_namespace] = ACTIONS(4317), + [anon_sym_static_assert] = ACTIONS(4317), + [anon_sym_concept] = ACTIONS(4317), + [anon_sym_co_return] = ACTIONS(4317), + [anon_sym_co_yield] = ACTIONS(4317), + [anon_sym_R_DQUOTE] = ACTIONS(4319), + [anon_sym_LR_DQUOTE] = ACTIONS(4319), + [anon_sym_uR_DQUOTE] = ACTIONS(4319), + [anon_sym_UR_DQUOTE] = ACTIONS(4319), + [anon_sym_u8R_DQUOTE] = ACTIONS(4319), + [anon_sym_co_await] = ACTIONS(4317), + [anon_sym_new] = ACTIONS(4317), + [anon_sym_requires] = ACTIONS(4317), + [anon_sym_CARET_CARET] = ACTIONS(4319), + [anon_sym_LBRACK_COLON] = ACTIONS(4319), + [sym_this] = ACTIONS(4317), }, [STATE(909)] = { - [ts_builtin_sym_end] = ACTIONS(4150), - [sym_identifier] = ACTIONS(4148), - [aux_sym_preproc_include_token1] = ACTIONS(4148), - [aux_sym_preproc_def_token1] = ACTIONS(4148), - [aux_sym_preproc_if_token1] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4148), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4148), - [sym_preproc_directive] = ACTIONS(4148), - [anon_sym_LPAREN2] = ACTIONS(4150), - [anon_sym_BANG] = ACTIONS(4150), - [anon_sym_TILDE] = ACTIONS(4150), - [anon_sym_DASH] = ACTIONS(4148), - [anon_sym_PLUS] = ACTIONS(4148), - [anon_sym_STAR] = ACTIONS(4150), - [anon_sym_AMP_AMP] = ACTIONS(4150), - [anon_sym_AMP] = ACTIONS(4148), - [anon_sym_SEMI] = ACTIONS(4150), - [anon_sym___extension__] = ACTIONS(4148), - [anon_sym_typedef] = ACTIONS(4148), - [anon_sym_virtual] = ACTIONS(4148), - [anon_sym_extern] = ACTIONS(4148), - [anon_sym___attribute__] = ACTIONS(4148), - [anon_sym___attribute] = ACTIONS(4148), - [anon_sym_using] = ACTIONS(4148), - [anon_sym_COLON_COLON] = ACTIONS(4150), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4150), - [anon_sym___declspec] = ACTIONS(4148), - [anon_sym___based] = ACTIONS(4148), - [anon_sym___cdecl] = ACTIONS(4148), - [anon_sym___clrcall] = ACTIONS(4148), - [anon_sym___stdcall] = ACTIONS(4148), - [anon_sym___fastcall] = ACTIONS(4148), - [anon_sym___thiscall] = ACTIONS(4148), - [anon_sym___vectorcall] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4150), - [anon_sym_signed] = ACTIONS(4148), - [anon_sym_unsigned] = ACTIONS(4148), - [anon_sym_long] = ACTIONS(4148), - [anon_sym_short] = ACTIONS(4148), - [anon_sym_LBRACK] = ACTIONS(4148), - [anon_sym_static] = ACTIONS(4148), - [anon_sym_register] = ACTIONS(4148), - [anon_sym_inline] = ACTIONS(4148), - [anon_sym___inline] = ACTIONS(4148), - [anon_sym___inline__] = ACTIONS(4148), - [anon_sym___forceinline] = ACTIONS(4148), - [anon_sym_thread_local] = ACTIONS(4148), - [anon_sym___thread] = ACTIONS(4148), - [anon_sym_const] = ACTIONS(4148), - [anon_sym_constexpr] = ACTIONS(4148), - [anon_sym_volatile] = ACTIONS(4148), - [anon_sym_restrict] = ACTIONS(4148), - [anon_sym___restrict__] = ACTIONS(4148), - [anon_sym__Atomic] = ACTIONS(4148), - [anon_sym__Noreturn] = ACTIONS(4148), - [anon_sym_noreturn] = ACTIONS(4148), - [anon_sym__Nonnull] = ACTIONS(4148), - [anon_sym_mutable] = ACTIONS(4148), - [anon_sym_constinit] = ACTIONS(4148), - [anon_sym_consteval] = ACTIONS(4148), - [anon_sym_alignas] = ACTIONS(4148), - [anon_sym__Alignas] = ACTIONS(4148), - [sym_primitive_type] = ACTIONS(4148), - [anon_sym_enum] = ACTIONS(4148), - [anon_sym_class] = ACTIONS(4148), - [anon_sym_struct] = ACTIONS(4148), - [anon_sym_union] = ACTIONS(4148), - [anon_sym_if] = ACTIONS(4148), - [anon_sym_switch] = ACTIONS(4148), - [anon_sym_case] = ACTIONS(4148), - [anon_sym_default] = ACTIONS(4148), - [anon_sym_while] = ACTIONS(4148), - [anon_sym_do] = ACTIONS(4148), - [anon_sym_for] = ACTIONS(4148), - [anon_sym_return] = ACTIONS(4148), - [anon_sym_break] = ACTIONS(4148), - [anon_sym_continue] = ACTIONS(4148), - [anon_sym_goto] = ACTIONS(4148), - [anon_sym_not] = ACTIONS(4148), - [anon_sym_compl] = ACTIONS(4148), - [anon_sym_DASH_DASH] = ACTIONS(4150), - [anon_sym_PLUS_PLUS] = ACTIONS(4150), - [anon_sym_sizeof] = ACTIONS(4148), - [anon_sym___alignof__] = ACTIONS(4148), - [anon_sym___alignof] = ACTIONS(4148), - [anon_sym__alignof] = ACTIONS(4148), - [anon_sym_alignof] = ACTIONS(4148), - [anon_sym__Alignof] = ACTIONS(4148), - [anon_sym_offsetof] = ACTIONS(4148), - [anon_sym__Generic] = ACTIONS(4148), - [anon_sym_typename] = ACTIONS(4148), - [anon_sym_asm] = ACTIONS(4148), - [anon_sym___asm__] = ACTIONS(4148), - [anon_sym___asm] = ACTIONS(4148), - [sym_number_literal] = ACTIONS(4150), - [anon_sym_L_SQUOTE] = ACTIONS(4150), - [anon_sym_u_SQUOTE] = ACTIONS(4150), - [anon_sym_U_SQUOTE] = ACTIONS(4150), - [anon_sym_u8_SQUOTE] = ACTIONS(4150), - [anon_sym_SQUOTE] = ACTIONS(4150), - [anon_sym_L_DQUOTE] = ACTIONS(4150), - [anon_sym_u_DQUOTE] = ACTIONS(4150), - [anon_sym_U_DQUOTE] = ACTIONS(4150), - [anon_sym_u8_DQUOTE] = ACTIONS(4150), - [anon_sym_DQUOTE] = ACTIONS(4150), - [sym_true] = ACTIONS(4148), - [sym_false] = ACTIONS(4148), - [anon_sym_NULL] = ACTIONS(4148), - [anon_sym_nullptr] = ACTIONS(4148), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4148), - [anon_sym_decltype] = ACTIONS(4148), - [anon_sym_explicit] = ACTIONS(4148), - [anon_sym_export] = ACTIONS(4148), - [anon_sym_module] = ACTIONS(4148), - [anon_sym_import] = ACTIONS(4148), - [anon_sym_template] = ACTIONS(4148), - [anon_sym_operator] = ACTIONS(4148), - [anon_sym_try] = ACTIONS(4148), - [anon_sym_delete] = ACTIONS(4148), - [anon_sym_throw] = ACTIONS(4148), - [anon_sym_namespace] = ACTIONS(4148), - [anon_sym_static_assert] = ACTIONS(4148), - [anon_sym_concept] = ACTIONS(4148), - [anon_sym_co_return] = ACTIONS(4148), - [anon_sym_co_yield] = ACTIONS(4148), - [anon_sym_R_DQUOTE] = ACTIONS(4150), - [anon_sym_LR_DQUOTE] = ACTIONS(4150), - [anon_sym_uR_DQUOTE] = ACTIONS(4150), - [anon_sym_UR_DQUOTE] = ACTIONS(4150), - [anon_sym_u8R_DQUOTE] = ACTIONS(4150), - [anon_sym_co_await] = ACTIONS(4148), - [anon_sym_new] = ACTIONS(4148), - [anon_sym_requires] = ACTIONS(4148), - [anon_sym_CARET_CARET] = ACTIONS(4150), - [anon_sym_LBRACK_COLON] = ACTIONS(4150), - [sym_this] = ACTIONS(4148), + [ts_builtin_sym_end] = ACTIONS(3732), + [sym_identifier] = ACTIONS(3730), + [aux_sym_preproc_include_token1] = ACTIONS(3730), + [aux_sym_preproc_def_token1] = ACTIONS(3730), + [aux_sym_preproc_if_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3730), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3730), + [sym_preproc_directive] = ACTIONS(3730), + [anon_sym_LPAREN2] = ACTIONS(3732), + [anon_sym_BANG] = ACTIONS(3732), + [anon_sym_TILDE] = ACTIONS(3732), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_PLUS] = ACTIONS(3730), + [anon_sym_STAR] = ACTIONS(3732), + [anon_sym_AMP_AMP] = ACTIONS(3732), + [anon_sym_AMP] = ACTIONS(3730), + [anon_sym_SEMI] = ACTIONS(3732), + [anon_sym___extension__] = ACTIONS(3730), + [anon_sym_typedef] = ACTIONS(3730), + [anon_sym_virtual] = ACTIONS(3730), + [anon_sym_extern] = ACTIONS(3730), + [anon_sym___attribute__] = ACTIONS(3730), + [anon_sym___attribute] = ACTIONS(3730), + [anon_sym_using] = ACTIONS(3730), + [anon_sym_COLON_COLON] = ACTIONS(3732), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3732), + [anon_sym___declspec] = ACTIONS(3730), + [anon_sym___based] = ACTIONS(3730), + [anon_sym___cdecl] = ACTIONS(3730), + [anon_sym___clrcall] = ACTIONS(3730), + [anon_sym___stdcall] = ACTIONS(3730), + [anon_sym___fastcall] = ACTIONS(3730), + [anon_sym___thiscall] = ACTIONS(3730), + [anon_sym___vectorcall] = ACTIONS(3730), + [anon_sym_LBRACE] = ACTIONS(3732), + [anon_sym_signed] = ACTIONS(3730), + [anon_sym_unsigned] = ACTIONS(3730), + [anon_sym_long] = ACTIONS(3730), + [anon_sym_short] = ACTIONS(3730), + [anon_sym_LBRACK] = ACTIONS(3730), + [anon_sym_static] = ACTIONS(3730), + [anon_sym_register] = ACTIONS(3730), + [anon_sym_inline] = ACTIONS(3730), + [anon_sym___inline] = ACTIONS(3730), + [anon_sym___inline__] = ACTIONS(3730), + [anon_sym___forceinline] = ACTIONS(3730), + [anon_sym_thread_local] = ACTIONS(3730), + [anon_sym___thread] = ACTIONS(3730), + [anon_sym_const] = ACTIONS(3730), + [anon_sym_constexpr] = ACTIONS(3730), + [anon_sym_volatile] = ACTIONS(3730), + [anon_sym_restrict] = ACTIONS(3730), + [anon_sym___restrict__] = ACTIONS(3730), + [anon_sym__Atomic] = ACTIONS(3730), + [anon_sym__Noreturn] = ACTIONS(3730), + [anon_sym_noreturn] = ACTIONS(3730), + [anon_sym__Nonnull] = ACTIONS(3730), + [anon_sym_mutable] = ACTIONS(3730), + [anon_sym_constinit] = ACTIONS(3730), + [anon_sym_consteval] = ACTIONS(3730), + [anon_sym_alignas] = ACTIONS(3730), + [anon_sym__Alignas] = ACTIONS(3730), + [sym_primitive_type] = ACTIONS(3730), + [anon_sym_enum] = ACTIONS(3730), + [anon_sym_class] = ACTIONS(3730), + [anon_sym_struct] = ACTIONS(3730), + [anon_sym_union] = ACTIONS(3730), + [anon_sym_if] = ACTIONS(3730), + [anon_sym_switch] = ACTIONS(3730), + [anon_sym_case] = ACTIONS(3730), + [anon_sym_default] = ACTIONS(3730), + [anon_sym_while] = ACTIONS(3730), + [anon_sym_do] = ACTIONS(3730), + [anon_sym_for] = ACTIONS(3730), + [anon_sym_return] = ACTIONS(3730), + [anon_sym_break] = ACTIONS(3730), + [anon_sym_continue] = ACTIONS(3730), + [anon_sym_goto] = ACTIONS(3730), + [anon_sym_not] = ACTIONS(3730), + [anon_sym_compl] = ACTIONS(3730), + [anon_sym_DASH_DASH] = ACTIONS(3732), + [anon_sym_PLUS_PLUS] = ACTIONS(3732), + [anon_sym_sizeof] = ACTIONS(3730), + [anon_sym___alignof__] = ACTIONS(3730), + [anon_sym___alignof] = ACTIONS(3730), + [anon_sym__alignof] = ACTIONS(3730), + [anon_sym_alignof] = ACTIONS(3730), + [anon_sym__Alignof] = ACTIONS(3730), + [anon_sym_offsetof] = ACTIONS(3730), + [anon_sym__Generic] = ACTIONS(3730), + [anon_sym_typename] = ACTIONS(3730), + [anon_sym_asm] = ACTIONS(3730), + [anon_sym___asm__] = ACTIONS(3730), + [anon_sym___asm] = ACTIONS(3730), + [sym_number_literal] = ACTIONS(3732), + [anon_sym_L_SQUOTE] = ACTIONS(3732), + [anon_sym_u_SQUOTE] = ACTIONS(3732), + [anon_sym_U_SQUOTE] = ACTIONS(3732), + [anon_sym_u8_SQUOTE] = ACTIONS(3732), + [anon_sym_SQUOTE] = ACTIONS(3732), + [anon_sym_L_DQUOTE] = ACTIONS(3732), + [anon_sym_u_DQUOTE] = ACTIONS(3732), + [anon_sym_U_DQUOTE] = ACTIONS(3732), + [anon_sym_u8_DQUOTE] = ACTIONS(3732), + [anon_sym_DQUOTE] = ACTIONS(3732), + [sym_true] = ACTIONS(3730), + [sym_false] = ACTIONS(3730), + [anon_sym_NULL] = ACTIONS(3730), + [anon_sym_nullptr] = ACTIONS(3730), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3730), + [anon_sym_decltype] = ACTIONS(3730), + [anon_sym_explicit] = ACTIONS(3730), + [anon_sym_export] = ACTIONS(3730), + [anon_sym_module] = ACTIONS(3730), + [anon_sym_import] = ACTIONS(3730), + [anon_sym_template] = ACTIONS(3730), + [anon_sym_operator] = ACTIONS(3730), + [anon_sym_try] = ACTIONS(3730), + [anon_sym_delete] = ACTIONS(3730), + [anon_sym_throw] = ACTIONS(3730), + [anon_sym_namespace] = ACTIONS(3730), + [anon_sym_static_assert] = ACTIONS(3730), + [anon_sym_concept] = ACTIONS(3730), + [anon_sym_co_return] = ACTIONS(3730), + [anon_sym_co_yield] = ACTIONS(3730), + [anon_sym_R_DQUOTE] = ACTIONS(3732), + [anon_sym_LR_DQUOTE] = ACTIONS(3732), + [anon_sym_uR_DQUOTE] = ACTIONS(3732), + [anon_sym_UR_DQUOTE] = ACTIONS(3732), + [anon_sym_u8R_DQUOTE] = ACTIONS(3732), + [anon_sym_co_await] = ACTIONS(3730), + [anon_sym_new] = ACTIONS(3730), + [anon_sym_requires] = ACTIONS(3730), + [anon_sym_CARET_CARET] = ACTIONS(3732), + [anon_sym_LBRACK_COLON] = ACTIONS(3732), + [sym_this] = ACTIONS(3730), }, [STATE(910)] = { - [ts_builtin_sym_end] = ACTIONS(4154), - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_include_token1] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_BANG] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_DASH] = ACTIONS(4152), - [anon_sym_PLUS] = ACTIONS(4152), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym___cdecl] = ACTIONS(4152), - [anon_sym___clrcall] = ACTIONS(4152), - [anon_sym___stdcall] = ACTIONS(4152), - [anon_sym___fastcall] = ACTIONS(4152), - [anon_sym___thiscall] = ACTIONS(4152), - [anon_sym___vectorcall] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4154), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_if] = ACTIONS(4152), - [anon_sym_switch] = ACTIONS(4152), - [anon_sym_case] = ACTIONS(4152), - [anon_sym_default] = ACTIONS(4152), - [anon_sym_while] = ACTIONS(4152), - [anon_sym_do] = ACTIONS(4152), - [anon_sym_for] = ACTIONS(4152), - [anon_sym_return] = ACTIONS(4152), - [anon_sym_break] = ACTIONS(4152), - [anon_sym_continue] = ACTIONS(4152), - [anon_sym_goto] = ACTIONS(4152), - [anon_sym_not] = ACTIONS(4152), - [anon_sym_compl] = ACTIONS(4152), - [anon_sym_DASH_DASH] = ACTIONS(4154), - [anon_sym_PLUS_PLUS] = ACTIONS(4154), - [anon_sym_sizeof] = ACTIONS(4152), - [anon_sym___alignof__] = ACTIONS(4152), - [anon_sym___alignof] = ACTIONS(4152), - [anon_sym__alignof] = ACTIONS(4152), - [anon_sym_alignof] = ACTIONS(4152), - [anon_sym__Alignof] = ACTIONS(4152), - [anon_sym_offsetof] = ACTIONS(4152), - [anon_sym__Generic] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), - [anon_sym_asm] = ACTIONS(4152), - [anon_sym___asm__] = ACTIONS(4152), - [anon_sym___asm] = ACTIONS(4152), - [sym_number_literal] = ACTIONS(4154), - [anon_sym_L_SQUOTE] = ACTIONS(4154), - [anon_sym_u_SQUOTE] = ACTIONS(4154), - [anon_sym_U_SQUOTE] = ACTIONS(4154), - [anon_sym_u8_SQUOTE] = ACTIONS(4154), - [anon_sym_SQUOTE] = ACTIONS(4154), - [anon_sym_L_DQUOTE] = ACTIONS(4154), - [anon_sym_u_DQUOTE] = ACTIONS(4154), - [anon_sym_U_DQUOTE] = ACTIONS(4154), - [anon_sym_u8_DQUOTE] = ACTIONS(4154), - [anon_sym_DQUOTE] = ACTIONS(4154), - [sym_true] = ACTIONS(4152), - [sym_false] = ACTIONS(4152), - [anon_sym_NULL] = ACTIONS(4152), - [anon_sym_nullptr] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_export] = ACTIONS(4152), - [anon_sym_module] = ACTIONS(4152), - [anon_sym_import] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_try] = ACTIONS(4152), - [anon_sym_delete] = ACTIONS(4152), - [anon_sym_throw] = ACTIONS(4152), - [anon_sym_namespace] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_concept] = ACTIONS(4152), - [anon_sym_co_return] = ACTIONS(4152), - [anon_sym_co_yield] = ACTIONS(4152), - [anon_sym_R_DQUOTE] = ACTIONS(4154), - [anon_sym_LR_DQUOTE] = ACTIONS(4154), - [anon_sym_uR_DQUOTE] = ACTIONS(4154), - [anon_sym_UR_DQUOTE] = ACTIONS(4154), - [anon_sym_u8R_DQUOTE] = ACTIONS(4154), - [anon_sym_co_await] = ACTIONS(4152), - [anon_sym_new] = ACTIONS(4152), - [anon_sym_requires] = ACTIONS(4152), - [anon_sym_CARET_CARET] = ACTIONS(4154), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), - [sym_this] = ACTIONS(4152), + [sym_identifier] = ACTIONS(4488), + [aux_sym_preproc_include_token1] = ACTIONS(4488), + [aux_sym_preproc_def_token1] = ACTIONS(4488), + [aux_sym_preproc_if_token1] = ACTIONS(4488), + [aux_sym_preproc_if_token2] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4488), + [sym_preproc_directive] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_AMP_AMP] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(4488), + [anon_sym_SEMI] = ACTIONS(4490), + [anon_sym___extension__] = ACTIONS(4488), + [anon_sym_typedef] = ACTIONS(4488), + [anon_sym_virtual] = ACTIONS(4488), + [anon_sym_extern] = ACTIONS(4488), + [anon_sym___attribute__] = ACTIONS(4488), + [anon_sym___attribute] = ACTIONS(4488), + [anon_sym_using] = ACTIONS(4488), + [anon_sym_COLON_COLON] = ACTIONS(4490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4490), + [anon_sym___declspec] = ACTIONS(4488), + [anon_sym___based] = ACTIONS(4488), + [anon_sym___cdecl] = ACTIONS(4488), + [anon_sym___clrcall] = ACTIONS(4488), + [anon_sym___stdcall] = ACTIONS(4488), + [anon_sym___fastcall] = ACTIONS(4488), + [anon_sym___thiscall] = ACTIONS(4488), + [anon_sym___vectorcall] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_signed] = ACTIONS(4488), + [anon_sym_unsigned] = ACTIONS(4488), + [anon_sym_long] = ACTIONS(4488), + [anon_sym_short] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_static] = ACTIONS(4488), + [anon_sym_register] = ACTIONS(4488), + [anon_sym_inline] = ACTIONS(4488), + [anon_sym___inline] = ACTIONS(4488), + [anon_sym___inline__] = ACTIONS(4488), + [anon_sym___forceinline] = ACTIONS(4488), + [anon_sym_thread_local] = ACTIONS(4488), + [anon_sym___thread] = ACTIONS(4488), + [anon_sym_const] = ACTIONS(4488), + [anon_sym_constexpr] = ACTIONS(4488), + [anon_sym_volatile] = ACTIONS(4488), + [anon_sym_restrict] = ACTIONS(4488), + [anon_sym___restrict__] = ACTIONS(4488), + [anon_sym__Atomic] = ACTIONS(4488), + [anon_sym__Noreturn] = ACTIONS(4488), + [anon_sym_noreturn] = ACTIONS(4488), + [anon_sym__Nonnull] = ACTIONS(4488), + [anon_sym_mutable] = ACTIONS(4488), + [anon_sym_constinit] = ACTIONS(4488), + [anon_sym_consteval] = ACTIONS(4488), + [anon_sym_alignas] = ACTIONS(4488), + [anon_sym__Alignas] = ACTIONS(4488), + [sym_primitive_type] = ACTIONS(4488), + [anon_sym_enum] = ACTIONS(4488), + [anon_sym_class] = ACTIONS(4488), + [anon_sym_struct] = ACTIONS(4488), + [anon_sym_union] = ACTIONS(4488), + [anon_sym_if] = ACTIONS(4488), + [anon_sym_switch] = ACTIONS(4488), + [anon_sym_case] = ACTIONS(4488), + [anon_sym_default] = ACTIONS(4488), + [anon_sym_while] = ACTIONS(4488), + [anon_sym_do] = ACTIONS(4488), + [anon_sym_for] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4488), + [anon_sym_break] = ACTIONS(4488), + [anon_sym_continue] = ACTIONS(4488), + [anon_sym_goto] = ACTIONS(4488), + [anon_sym_not] = ACTIONS(4488), + [anon_sym_compl] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4490), + [anon_sym_PLUS_PLUS] = ACTIONS(4490), + [anon_sym_sizeof] = ACTIONS(4488), + [anon_sym___alignof__] = ACTIONS(4488), + [anon_sym___alignof] = ACTIONS(4488), + [anon_sym__alignof] = ACTIONS(4488), + [anon_sym_alignof] = ACTIONS(4488), + [anon_sym__Alignof] = ACTIONS(4488), + [anon_sym_offsetof] = ACTIONS(4488), + [anon_sym__Generic] = ACTIONS(4488), + [anon_sym_typename] = ACTIONS(4488), + [anon_sym_asm] = ACTIONS(4488), + [anon_sym___asm__] = ACTIONS(4488), + [anon_sym___asm] = ACTIONS(4488), + [sym_number_literal] = ACTIONS(4490), + [anon_sym_L_SQUOTE] = ACTIONS(4490), + [anon_sym_u_SQUOTE] = ACTIONS(4490), + [anon_sym_U_SQUOTE] = ACTIONS(4490), + [anon_sym_u8_SQUOTE] = ACTIONS(4490), + [anon_sym_SQUOTE] = ACTIONS(4490), + [anon_sym_L_DQUOTE] = ACTIONS(4490), + [anon_sym_u_DQUOTE] = ACTIONS(4490), + [anon_sym_U_DQUOTE] = ACTIONS(4490), + [anon_sym_u8_DQUOTE] = ACTIONS(4490), + [anon_sym_DQUOTE] = ACTIONS(4490), + [sym_true] = ACTIONS(4488), + [sym_false] = ACTIONS(4488), + [anon_sym_NULL] = ACTIONS(4488), + [anon_sym_nullptr] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4488), + [anon_sym_decltype] = ACTIONS(4488), + [anon_sym_explicit] = ACTIONS(4488), + [anon_sym_export] = ACTIONS(4488), + [anon_sym_module] = ACTIONS(4488), + [anon_sym_import] = ACTIONS(4488), + [anon_sym_template] = ACTIONS(4488), + [anon_sym_operator] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4488), + [anon_sym_delete] = ACTIONS(4488), + [anon_sym_throw] = ACTIONS(4488), + [anon_sym_namespace] = ACTIONS(4488), + [anon_sym_static_assert] = ACTIONS(4488), + [anon_sym_concept] = ACTIONS(4488), + [anon_sym_co_return] = ACTIONS(4488), + [anon_sym_co_yield] = ACTIONS(4488), + [anon_sym_R_DQUOTE] = ACTIONS(4490), + [anon_sym_LR_DQUOTE] = ACTIONS(4490), + [anon_sym_uR_DQUOTE] = ACTIONS(4490), + [anon_sym_UR_DQUOTE] = ACTIONS(4490), + [anon_sym_u8R_DQUOTE] = ACTIONS(4490), + [anon_sym_co_await] = ACTIONS(4488), + [anon_sym_new] = ACTIONS(4488), + [anon_sym_requires] = ACTIONS(4488), + [anon_sym_CARET_CARET] = ACTIONS(4490), + [anon_sym_LBRACK_COLON] = ACTIONS(4490), + [sym_this] = ACTIONS(4488), }, [STATE(911)] = { - [ts_builtin_sym_end] = ACTIONS(4134), - [sym_identifier] = ACTIONS(4132), - [aux_sym_preproc_include_token1] = ACTIONS(4132), - [aux_sym_preproc_def_token1] = ACTIONS(4132), - [aux_sym_preproc_if_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4132), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4132), - [sym_preproc_directive] = ACTIONS(4132), - [anon_sym_LPAREN2] = ACTIONS(4134), - [anon_sym_BANG] = ACTIONS(4134), - [anon_sym_TILDE] = ACTIONS(4134), - [anon_sym_DASH] = ACTIONS(4132), - [anon_sym_PLUS] = ACTIONS(4132), - [anon_sym_STAR] = ACTIONS(4134), - [anon_sym_AMP_AMP] = ACTIONS(4134), - [anon_sym_AMP] = ACTIONS(4132), - [anon_sym_SEMI] = ACTIONS(4134), - [anon_sym___extension__] = ACTIONS(4132), - [anon_sym_typedef] = ACTIONS(4132), - [anon_sym_virtual] = ACTIONS(4132), - [anon_sym_extern] = ACTIONS(4132), - [anon_sym___attribute__] = ACTIONS(4132), - [anon_sym___attribute] = ACTIONS(4132), - [anon_sym_using] = ACTIONS(4132), - [anon_sym_COLON_COLON] = ACTIONS(4134), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4134), - [anon_sym___declspec] = ACTIONS(4132), - [anon_sym___based] = ACTIONS(4132), - [anon_sym___cdecl] = ACTIONS(4132), - [anon_sym___clrcall] = ACTIONS(4132), - [anon_sym___stdcall] = ACTIONS(4132), - [anon_sym___fastcall] = ACTIONS(4132), - [anon_sym___thiscall] = ACTIONS(4132), - [anon_sym___vectorcall] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4134), - [anon_sym_signed] = ACTIONS(4132), - [anon_sym_unsigned] = ACTIONS(4132), - [anon_sym_long] = ACTIONS(4132), - [anon_sym_short] = ACTIONS(4132), - [anon_sym_LBRACK] = ACTIONS(4132), - [anon_sym_static] = ACTIONS(4132), - [anon_sym_register] = ACTIONS(4132), - [anon_sym_inline] = ACTIONS(4132), - [anon_sym___inline] = ACTIONS(4132), - [anon_sym___inline__] = ACTIONS(4132), - [anon_sym___forceinline] = ACTIONS(4132), - [anon_sym_thread_local] = ACTIONS(4132), - [anon_sym___thread] = ACTIONS(4132), - [anon_sym_const] = ACTIONS(4132), - [anon_sym_constexpr] = ACTIONS(4132), - [anon_sym_volatile] = ACTIONS(4132), - [anon_sym_restrict] = ACTIONS(4132), - [anon_sym___restrict__] = ACTIONS(4132), - [anon_sym__Atomic] = ACTIONS(4132), - [anon_sym__Noreturn] = ACTIONS(4132), - [anon_sym_noreturn] = ACTIONS(4132), - [anon_sym__Nonnull] = ACTIONS(4132), - [anon_sym_mutable] = ACTIONS(4132), - [anon_sym_constinit] = ACTIONS(4132), - [anon_sym_consteval] = ACTIONS(4132), - [anon_sym_alignas] = ACTIONS(4132), - [anon_sym__Alignas] = ACTIONS(4132), - [sym_primitive_type] = ACTIONS(4132), - [anon_sym_enum] = ACTIONS(4132), - [anon_sym_class] = ACTIONS(4132), - [anon_sym_struct] = ACTIONS(4132), - [anon_sym_union] = ACTIONS(4132), - [anon_sym_if] = ACTIONS(4132), - [anon_sym_switch] = ACTIONS(4132), - [anon_sym_case] = ACTIONS(4132), - [anon_sym_default] = ACTIONS(4132), - [anon_sym_while] = ACTIONS(4132), - [anon_sym_do] = ACTIONS(4132), - [anon_sym_for] = ACTIONS(4132), - [anon_sym_return] = ACTIONS(4132), - [anon_sym_break] = ACTIONS(4132), - [anon_sym_continue] = ACTIONS(4132), - [anon_sym_goto] = ACTIONS(4132), - [anon_sym_not] = ACTIONS(4132), - [anon_sym_compl] = ACTIONS(4132), - [anon_sym_DASH_DASH] = ACTIONS(4134), - [anon_sym_PLUS_PLUS] = ACTIONS(4134), - [anon_sym_sizeof] = ACTIONS(4132), - [anon_sym___alignof__] = ACTIONS(4132), - [anon_sym___alignof] = ACTIONS(4132), - [anon_sym__alignof] = ACTIONS(4132), - [anon_sym_alignof] = ACTIONS(4132), - [anon_sym__Alignof] = ACTIONS(4132), - [anon_sym_offsetof] = ACTIONS(4132), - [anon_sym__Generic] = ACTIONS(4132), - [anon_sym_typename] = ACTIONS(4132), - [anon_sym_asm] = ACTIONS(4132), - [anon_sym___asm__] = ACTIONS(4132), - [anon_sym___asm] = ACTIONS(4132), - [sym_number_literal] = ACTIONS(4134), - [anon_sym_L_SQUOTE] = ACTIONS(4134), - [anon_sym_u_SQUOTE] = ACTIONS(4134), - [anon_sym_U_SQUOTE] = ACTIONS(4134), - [anon_sym_u8_SQUOTE] = ACTIONS(4134), - [anon_sym_SQUOTE] = ACTIONS(4134), - [anon_sym_L_DQUOTE] = ACTIONS(4134), - [anon_sym_u_DQUOTE] = ACTIONS(4134), - [anon_sym_U_DQUOTE] = ACTIONS(4134), - [anon_sym_u8_DQUOTE] = ACTIONS(4134), - [anon_sym_DQUOTE] = ACTIONS(4134), - [sym_true] = ACTIONS(4132), - [sym_false] = ACTIONS(4132), - [anon_sym_NULL] = ACTIONS(4132), - [anon_sym_nullptr] = ACTIONS(4132), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4132), - [anon_sym_decltype] = ACTIONS(4132), - [anon_sym_explicit] = ACTIONS(4132), - [anon_sym_export] = ACTIONS(4132), - [anon_sym_module] = ACTIONS(4132), - [anon_sym_import] = ACTIONS(4132), - [anon_sym_template] = ACTIONS(4132), - [anon_sym_operator] = ACTIONS(4132), - [anon_sym_try] = ACTIONS(4132), - [anon_sym_delete] = ACTIONS(4132), - [anon_sym_throw] = ACTIONS(4132), - [anon_sym_namespace] = ACTIONS(4132), - [anon_sym_static_assert] = ACTIONS(4132), - [anon_sym_concept] = ACTIONS(4132), - [anon_sym_co_return] = ACTIONS(4132), - [anon_sym_co_yield] = ACTIONS(4132), - [anon_sym_R_DQUOTE] = ACTIONS(4134), - [anon_sym_LR_DQUOTE] = ACTIONS(4134), - [anon_sym_uR_DQUOTE] = ACTIONS(4134), - [anon_sym_UR_DQUOTE] = ACTIONS(4134), - [anon_sym_u8R_DQUOTE] = ACTIONS(4134), - [anon_sym_co_await] = ACTIONS(4132), - [anon_sym_new] = ACTIONS(4132), - [anon_sym_requires] = ACTIONS(4132), - [anon_sym_CARET_CARET] = ACTIONS(4134), - [anon_sym_LBRACK_COLON] = ACTIONS(4134), - [sym_this] = ACTIONS(4132), - }, - [STATE(912)] = { - [ts_builtin_sym_end] = ACTIONS(4158), - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_export] = ACTIONS(4156), - [anon_sym_module] = ACTIONS(4156), - [anon_sym_import] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), - }, - [STATE(913)] = { - [ts_builtin_sym_end] = ACTIONS(4158), - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_include_token1] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_BANG] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_DASH] = ACTIONS(4156), - [anon_sym_PLUS] = ACTIONS(4156), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym___cdecl] = ACTIONS(4156), - [anon_sym___clrcall] = ACTIONS(4156), - [anon_sym___stdcall] = ACTIONS(4156), - [anon_sym___fastcall] = ACTIONS(4156), - [anon_sym___thiscall] = ACTIONS(4156), - [anon_sym___vectorcall] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_if] = ACTIONS(4156), - [anon_sym_switch] = ACTIONS(4156), - [anon_sym_case] = ACTIONS(4156), - [anon_sym_default] = ACTIONS(4156), - [anon_sym_while] = ACTIONS(4156), - [anon_sym_do] = ACTIONS(4156), - [anon_sym_for] = ACTIONS(4156), - [anon_sym_return] = ACTIONS(4156), - [anon_sym_break] = ACTIONS(4156), - [anon_sym_continue] = ACTIONS(4156), - [anon_sym_goto] = ACTIONS(4156), - [anon_sym_not] = ACTIONS(4156), - [anon_sym_compl] = ACTIONS(4156), - [anon_sym_DASH_DASH] = ACTIONS(4158), - [anon_sym_PLUS_PLUS] = ACTIONS(4158), - [anon_sym_sizeof] = ACTIONS(4156), - [anon_sym___alignof__] = ACTIONS(4156), - [anon_sym___alignof] = ACTIONS(4156), - [anon_sym__alignof] = ACTIONS(4156), - [anon_sym_alignof] = ACTIONS(4156), - [anon_sym__Alignof] = ACTIONS(4156), - [anon_sym_offsetof] = ACTIONS(4156), - [anon_sym__Generic] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [anon_sym_asm] = ACTIONS(4156), - [anon_sym___asm__] = ACTIONS(4156), - [anon_sym___asm] = ACTIONS(4156), - [sym_number_literal] = ACTIONS(4158), - [anon_sym_L_SQUOTE] = ACTIONS(4158), - [anon_sym_u_SQUOTE] = ACTIONS(4158), - [anon_sym_U_SQUOTE] = ACTIONS(4158), - [anon_sym_u8_SQUOTE] = ACTIONS(4158), - [anon_sym_SQUOTE] = ACTIONS(4158), - [anon_sym_L_DQUOTE] = ACTIONS(4158), - [anon_sym_u_DQUOTE] = ACTIONS(4158), - [anon_sym_U_DQUOTE] = ACTIONS(4158), - [anon_sym_u8_DQUOTE] = ACTIONS(4158), - [anon_sym_DQUOTE] = ACTIONS(4158), - [sym_true] = ACTIONS(4156), - [sym_false] = ACTIONS(4156), - [anon_sym_NULL] = ACTIONS(4156), - [anon_sym_nullptr] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_export] = ACTIONS(4156), - [anon_sym_module] = ACTIONS(4156), - [anon_sym_import] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_try] = ACTIONS(4156), - [anon_sym_delete] = ACTIONS(4156), - [anon_sym_throw] = ACTIONS(4156), - [anon_sym_namespace] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_concept] = ACTIONS(4156), - [anon_sym_co_return] = ACTIONS(4156), - [anon_sym_co_yield] = ACTIONS(4156), - [anon_sym_R_DQUOTE] = ACTIONS(4158), - [anon_sym_LR_DQUOTE] = ACTIONS(4158), - [anon_sym_uR_DQUOTE] = ACTIONS(4158), - [anon_sym_UR_DQUOTE] = ACTIONS(4158), - [anon_sym_u8R_DQUOTE] = ACTIONS(4158), - [anon_sym_co_await] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4156), - [anon_sym_requires] = ACTIONS(4156), - [anon_sym_CARET_CARET] = ACTIONS(4158), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - [sym_this] = ACTIONS(4156), - }, - [STATE(914)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4769), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), - [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(4704), - [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(4706), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_identifier] = ACTIONS(4492), + [aux_sym_preproc_include_token1] = ACTIONS(4492), + [aux_sym_preproc_def_token1] = ACTIONS(4492), + [aux_sym_preproc_if_token1] = ACTIONS(4492), + [aux_sym_preproc_if_token2] = ACTIONS(4492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4492), + [sym_preproc_directive] = ACTIONS(4492), + [anon_sym_LPAREN2] = ACTIONS(4494), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_PLUS] = ACTIONS(4492), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_AMP_AMP] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4492), + [anon_sym_SEMI] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(4492), + [anon_sym_typedef] = ACTIONS(4492), + [anon_sym_virtual] = ACTIONS(4492), + [anon_sym_extern] = ACTIONS(4492), + [anon_sym___attribute__] = ACTIONS(4492), + [anon_sym___attribute] = ACTIONS(4492), + [anon_sym_using] = ACTIONS(4492), + [anon_sym_COLON_COLON] = ACTIONS(4494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4494), + [anon_sym___declspec] = ACTIONS(4492), + [anon_sym___based] = ACTIONS(4492), + [anon_sym___cdecl] = ACTIONS(4492), + [anon_sym___clrcall] = ACTIONS(4492), + [anon_sym___stdcall] = ACTIONS(4492), + [anon_sym___fastcall] = ACTIONS(4492), + [anon_sym___thiscall] = ACTIONS(4492), + [anon_sym___vectorcall] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_signed] = ACTIONS(4492), + [anon_sym_unsigned] = ACTIONS(4492), + [anon_sym_long] = ACTIONS(4492), + [anon_sym_short] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_static] = ACTIONS(4492), + [anon_sym_register] = ACTIONS(4492), + [anon_sym_inline] = ACTIONS(4492), + [anon_sym___inline] = ACTIONS(4492), + [anon_sym___inline__] = ACTIONS(4492), + [anon_sym___forceinline] = ACTIONS(4492), + [anon_sym_thread_local] = ACTIONS(4492), + [anon_sym___thread] = ACTIONS(4492), + [anon_sym_const] = ACTIONS(4492), + [anon_sym_constexpr] = ACTIONS(4492), + [anon_sym_volatile] = ACTIONS(4492), + [anon_sym_restrict] = ACTIONS(4492), + [anon_sym___restrict__] = ACTIONS(4492), + [anon_sym__Atomic] = ACTIONS(4492), + [anon_sym__Noreturn] = ACTIONS(4492), + [anon_sym_noreturn] = ACTIONS(4492), + [anon_sym__Nonnull] = ACTIONS(4492), + [anon_sym_mutable] = ACTIONS(4492), + [anon_sym_constinit] = ACTIONS(4492), + [anon_sym_consteval] = ACTIONS(4492), + [anon_sym_alignas] = ACTIONS(4492), + [anon_sym__Alignas] = ACTIONS(4492), + [sym_primitive_type] = ACTIONS(4492), + [anon_sym_enum] = ACTIONS(4492), + [anon_sym_class] = ACTIONS(4492), + [anon_sym_struct] = ACTIONS(4492), + [anon_sym_union] = ACTIONS(4492), + [anon_sym_if] = ACTIONS(4492), + [anon_sym_switch] = ACTIONS(4492), + [anon_sym_case] = ACTIONS(4492), + [anon_sym_default] = ACTIONS(4492), + [anon_sym_while] = ACTIONS(4492), + [anon_sym_do] = ACTIONS(4492), + [anon_sym_for] = ACTIONS(4492), + [anon_sym_return] = ACTIONS(4492), + [anon_sym_break] = ACTIONS(4492), + [anon_sym_continue] = ACTIONS(4492), + [anon_sym_goto] = ACTIONS(4492), + [anon_sym_not] = ACTIONS(4492), + [anon_sym_compl] = ACTIONS(4492), + [anon_sym_DASH_DASH] = ACTIONS(4494), + [anon_sym_PLUS_PLUS] = ACTIONS(4494), + [anon_sym_sizeof] = ACTIONS(4492), + [anon_sym___alignof__] = ACTIONS(4492), + [anon_sym___alignof] = ACTIONS(4492), + [anon_sym__alignof] = ACTIONS(4492), + [anon_sym_alignof] = ACTIONS(4492), + [anon_sym__Alignof] = ACTIONS(4492), + [anon_sym_offsetof] = ACTIONS(4492), + [anon_sym__Generic] = ACTIONS(4492), + [anon_sym_typename] = ACTIONS(4492), + [anon_sym_asm] = ACTIONS(4492), + [anon_sym___asm__] = ACTIONS(4492), + [anon_sym___asm] = ACTIONS(4492), + [sym_number_literal] = ACTIONS(4494), + [anon_sym_L_SQUOTE] = ACTIONS(4494), + [anon_sym_u_SQUOTE] = ACTIONS(4494), + [anon_sym_U_SQUOTE] = ACTIONS(4494), + [anon_sym_u8_SQUOTE] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4494), + [anon_sym_L_DQUOTE] = ACTIONS(4494), + [anon_sym_u_DQUOTE] = ACTIONS(4494), + [anon_sym_U_DQUOTE] = ACTIONS(4494), + [anon_sym_u8_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym_true] = ACTIONS(4492), + [sym_false] = ACTIONS(4492), + [anon_sym_NULL] = ACTIONS(4492), + [anon_sym_nullptr] = ACTIONS(4492), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(915)] = { - [ts_builtin_sym_end] = ACTIONS(4010), - [sym_identifier] = ACTIONS(4008), - [aux_sym_preproc_include_token1] = ACTIONS(4008), - [aux_sym_preproc_def_token1] = ACTIONS(4008), - [aux_sym_preproc_if_token1] = ACTIONS(4008), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4008), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4008), - [sym_preproc_directive] = ACTIONS(4008), - [anon_sym_LPAREN2] = ACTIONS(4010), - [anon_sym_BANG] = ACTIONS(4010), - [anon_sym_TILDE] = ACTIONS(4010), - [anon_sym_DASH] = ACTIONS(4008), - [anon_sym_PLUS] = ACTIONS(4008), - [anon_sym_STAR] = ACTIONS(4010), - [anon_sym_AMP_AMP] = ACTIONS(4010), - [anon_sym_AMP] = ACTIONS(4008), - [anon_sym_SEMI] = ACTIONS(4010), - [anon_sym___extension__] = ACTIONS(4008), - [anon_sym_typedef] = ACTIONS(4008), - [anon_sym_virtual] = ACTIONS(4008), - [anon_sym_extern] = ACTIONS(4008), - [anon_sym___attribute__] = ACTIONS(4008), - [anon_sym___attribute] = ACTIONS(4008), - [anon_sym_using] = ACTIONS(4008), - [anon_sym_COLON_COLON] = ACTIONS(4010), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4010), - [anon_sym___declspec] = ACTIONS(4008), - [anon_sym___based] = ACTIONS(4008), - [anon_sym___cdecl] = ACTIONS(4008), - [anon_sym___clrcall] = ACTIONS(4008), - [anon_sym___stdcall] = ACTIONS(4008), - [anon_sym___fastcall] = ACTIONS(4008), - [anon_sym___thiscall] = ACTIONS(4008), - [anon_sym___vectorcall] = ACTIONS(4008), - [anon_sym_LBRACE] = ACTIONS(4010), - [anon_sym_signed] = ACTIONS(4008), - [anon_sym_unsigned] = ACTIONS(4008), - [anon_sym_long] = ACTIONS(4008), - [anon_sym_short] = ACTIONS(4008), - [anon_sym_LBRACK] = ACTIONS(4008), - [anon_sym_static] = ACTIONS(4008), - [anon_sym_register] = ACTIONS(4008), - [anon_sym_inline] = ACTIONS(4008), - [anon_sym___inline] = ACTIONS(4008), - [anon_sym___inline__] = ACTIONS(4008), - [anon_sym___forceinline] = ACTIONS(4008), - [anon_sym_thread_local] = ACTIONS(4008), - [anon_sym___thread] = ACTIONS(4008), - [anon_sym_const] = ACTIONS(4008), - [anon_sym_constexpr] = ACTIONS(4008), - [anon_sym_volatile] = ACTIONS(4008), - [anon_sym_restrict] = ACTIONS(4008), - [anon_sym___restrict__] = ACTIONS(4008), - [anon_sym__Atomic] = ACTIONS(4008), - [anon_sym__Noreturn] = ACTIONS(4008), - [anon_sym_noreturn] = ACTIONS(4008), - [anon_sym__Nonnull] = ACTIONS(4008), - [anon_sym_mutable] = ACTIONS(4008), - [anon_sym_constinit] = ACTIONS(4008), - [anon_sym_consteval] = ACTIONS(4008), - [anon_sym_alignas] = ACTIONS(4008), - [anon_sym__Alignas] = ACTIONS(4008), - [sym_primitive_type] = ACTIONS(4008), - [anon_sym_enum] = ACTIONS(4008), - [anon_sym_class] = ACTIONS(4008), - [anon_sym_struct] = ACTIONS(4008), - [anon_sym_union] = ACTIONS(4008), - [anon_sym_if] = ACTIONS(4008), - [anon_sym_switch] = ACTIONS(4008), - [anon_sym_case] = ACTIONS(4008), - [anon_sym_default] = ACTIONS(4008), - [anon_sym_while] = ACTIONS(4008), - [anon_sym_do] = ACTIONS(4008), - [anon_sym_for] = ACTIONS(4008), - [anon_sym_return] = ACTIONS(4008), - [anon_sym_break] = ACTIONS(4008), - [anon_sym_continue] = ACTIONS(4008), - [anon_sym_goto] = ACTIONS(4008), - [anon_sym_not] = ACTIONS(4008), - [anon_sym_compl] = ACTIONS(4008), - [anon_sym_DASH_DASH] = ACTIONS(4010), - [anon_sym_PLUS_PLUS] = ACTIONS(4010), - [anon_sym_sizeof] = ACTIONS(4008), - [anon_sym___alignof__] = ACTIONS(4008), - [anon_sym___alignof] = ACTIONS(4008), - [anon_sym__alignof] = ACTIONS(4008), - [anon_sym_alignof] = ACTIONS(4008), - [anon_sym__Alignof] = ACTIONS(4008), - [anon_sym_offsetof] = ACTIONS(4008), - [anon_sym__Generic] = ACTIONS(4008), - [anon_sym_typename] = ACTIONS(4008), - [anon_sym_asm] = ACTIONS(4008), - [anon_sym___asm__] = ACTIONS(4008), - [anon_sym___asm] = ACTIONS(4008), - [sym_number_literal] = ACTIONS(4010), - [anon_sym_L_SQUOTE] = ACTIONS(4010), - [anon_sym_u_SQUOTE] = ACTIONS(4010), - [anon_sym_U_SQUOTE] = ACTIONS(4010), - [anon_sym_u8_SQUOTE] = ACTIONS(4010), - [anon_sym_SQUOTE] = ACTIONS(4010), - [anon_sym_L_DQUOTE] = ACTIONS(4010), - [anon_sym_u_DQUOTE] = ACTIONS(4010), - [anon_sym_U_DQUOTE] = ACTIONS(4010), - [anon_sym_u8_DQUOTE] = ACTIONS(4010), - [anon_sym_DQUOTE] = ACTIONS(4010), - [sym_true] = ACTIONS(4008), - [sym_false] = ACTIONS(4008), - [anon_sym_NULL] = ACTIONS(4008), - [anon_sym_nullptr] = ACTIONS(4008), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4008), - [anon_sym_decltype] = ACTIONS(4008), - [anon_sym_explicit] = ACTIONS(4008), - [anon_sym_export] = ACTIONS(4008), - [anon_sym_module] = ACTIONS(4008), - [anon_sym_import] = ACTIONS(4008), - [anon_sym_template] = ACTIONS(4008), - [anon_sym_operator] = ACTIONS(4008), - [anon_sym_try] = ACTIONS(4008), - [anon_sym_delete] = ACTIONS(4008), - [anon_sym_throw] = ACTIONS(4008), - [anon_sym_namespace] = ACTIONS(4008), - [anon_sym_static_assert] = ACTIONS(4008), - [anon_sym_concept] = ACTIONS(4008), - [anon_sym_co_return] = ACTIONS(4008), - [anon_sym_co_yield] = ACTIONS(4008), - [anon_sym_R_DQUOTE] = ACTIONS(4010), - [anon_sym_LR_DQUOTE] = ACTIONS(4010), - [anon_sym_uR_DQUOTE] = ACTIONS(4010), - [anon_sym_UR_DQUOTE] = ACTIONS(4010), - [anon_sym_u8R_DQUOTE] = ACTIONS(4010), - [anon_sym_co_await] = ACTIONS(4008), - [anon_sym_new] = ACTIONS(4008), - [anon_sym_requires] = ACTIONS(4008), - [anon_sym_CARET_CARET] = ACTIONS(4010), - [anon_sym_LBRACK_COLON] = ACTIONS(4010), - [sym_this] = ACTIONS(4008), - }, - [STATE(916)] = { - [sym_identifier] = ACTIONS(4518), - [aux_sym_preproc_include_token1] = ACTIONS(4518), - [aux_sym_preproc_def_token1] = ACTIONS(4518), - [aux_sym_preproc_if_token1] = ACTIONS(4518), - [aux_sym_preproc_if_token2] = ACTIONS(4518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4518), - [sym_preproc_directive] = ACTIONS(4518), - [anon_sym_LPAREN2] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_TILDE] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_AMP] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym___extension__] = ACTIONS(4518), - [anon_sym_typedef] = ACTIONS(4518), - [anon_sym_virtual] = ACTIONS(4518), - [anon_sym_extern] = ACTIONS(4518), - [anon_sym___attribute__] = ACTIONS(4518), - [anon_sym___attribute] = ACTIONS(4518), - [anon_sym_using] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4520), - [anon_sym___declspec] = ACTIONS(4518), - [anon_sym___based] = ACTIONS(4518), - [anon_sym___cdecl] = ACTIONS(4518), - [anon_sym___clrcall] = ACTIONS(4518), - [anon_sym___stdcall] = ACTIONS(4518), - [anon_sym___fastcall] = ACTIONS(4518), - [anon_sym___thiscall] = ACTIONS(4518), - [anon_sym___vectorcall] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4520), - [anon_sym_signed] = ACTIONS(4518), - [anon_sym_unsigned] = ACTIONS(4518), - [anon_sym_long] = ACTIONS(4518), - [anon_sym_short] = ACTIONS(4518), - [anon_sym_LBRACK] = ACTIONS(4518), - [anon_sym_static] = ACTIONS(4518), - [anon_sym_register] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym___inline] = ACTIONS(4518), - [anon_sym___inline__] = ACTIONS(4518), - [anon_sym___forceinline] = ACTIONS(4518), - [anon_sym_thread_local] = ACTIONS(4518), - [anon_sym___thread] = ACTIONS(4518), - [anon_sym_const] = ACTIONS(4518), - [anon_sym_constexpr] = ACTIONS(4518), - [anon_sym_volatile] = ACTIONS(4518), - [anon_sym_restrict] = ACTIONS(4518), - [anon_sym___restrict__] = ACTIONS(4518), - [anon_sym__Atomic] = ACTIONS(4518), - [anon_sym__Noreturn] = ACTIONS(4518), - [anon_sym_noreturn] = ACTIONS(4518), - [anon_sym__Nonnull] = ACTIONS(4518), - [anon_sym_mutable] = ACTIONS(4518), - [anon_sym_constinit] = ACTIONS(4518), - [anon_sym_consteval] = ACTIONS(4518), - [anon_sym_alignas] = ACTIONS(4518), - [anon_sym__Alignas] = ACTIONS(4518), - [sym_primitive_type] = ACTIONS(4518), - [anon_sym_enum] = ACTIONS(4518), - [anon_sym_class] = ACTIONS(4518), - [anon_sym_struct] = ACTIONS(4518), - [anon_sym_union] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_switch] = ACTIONS(4518), - [anon_sym_case] = ACTIONS(4518), - [anon_sym_default] = ACTIONS(4518), - [anon_sym_while] = ACTIONS(4518), - [anon_sym_do] = ACTIONS(4518), - [anon_sym_for] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_goto] = ACTIONS(4518), - [anon_sym_not] = ACTIONS(4518), - [anon_sym_compl] = ACTIONS(4518), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_sizeof] = ACTIONS(4518), - [anon_sym___alignof__] = ACTIONS(4518), - [anon_sym___alignof] = ACTIONS(4518), - [anon_sym__alignof] = ACTIONS(4518), - [anon_sym_alignof] = ACTIONS(4518), - [anon_sym__Alignof] = ACTIONS(4518), - [anon_sym_offsetof] = ACTIONS(4518), - [anon_sym__Generic] = ACTIONS(4518), - [anon_sym_typename] = ACTIONS(4518), - [anon_sym_asm] = ACTIONS(4518), - [anon_sym___asm__] = ACTIONS(4518), - [anon_sym___asm] = ACTIONS(4518), - [sym_number_literal] = ACTIONS(4520), - [anon_sym_L_SQUOTE] = ACTIONS(4520), - [anon_sym_u_SQUOTE] = ACTIONS(4520), - [anon_sym_U_SQUOTE] = ACTIONS(4520), - [anon_sym_u8_SQUOTE] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4520), - [anon_sym_L_DQUOTE] = ACTIONS(4520), - [anon_sym_u_DQUOTE] = ACTIONS(4520), - [anon_sym_U_DQUOTE] = ACTIONS(4520), - [anon_sym_u8_DQUOTE] = ACTIONS(4520), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym_true] = ACTIONS(4518), - [sym_false] = ACTIONS(4518), - [anon_sym_NULL] = ACTIONS(4518), - [anon_sym_nullptr] = ACTIONS(4518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4518), - [anon_sym_decltype] = ACTIONS(4518), - [anon_sym_explicit] = ACTIONS(4518), - [anon_sym_export] = ACTIONS(4518), - [anon_sym_module] = ACTIONS(4518), - [anon_sym_import] = ACTIONS(4518), - [anon_sym_template] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_delete] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_namespace] = ACTIONS(4518), - [anon_sym_static_assert] = ACTIONS(4518), - [anon_sym_concept] = ACTIONS(4518), - [anon_sym_co_return] = ACTIONS(4518), - [anon_sym_co_yield] = ACTIONS(4518), - [anon_sym_R_DQUOTE] = ACTIONS(4520), - [anon_sym_LR_DQUOTE] = ACTIONS(4520), - [anon_sym_uR_DQUOTE] = ACTIONS(4520), - [anon_sym_UR_DQUOTE] = ACTIONS(4520), - [anon_sym_u8R_DQUOTE] = ACTIONS(4520), - [anon_sym_co_await] = ACTIONS(4518), - [anon_sym_new] = ACTIONS(4518), - [anon_sym_requires] = ACTIONS(4518), - [anon_sym_CARET_CARET] = ACTIONS(4520), - [anon_sym_LBRACK_COLON] = ACTIONS(4520), - [sym_this] = ACTIONS(4518), - }, - [STATE(917)] = { - [ts_builtin_sym_end] = ACTIONS(4014), - [sym_identifier] = ACTIONS(4012), - [aux_sym_preproc_include_token1] = ACTIONS(4012), - [aux_sym_preproc_def_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token1] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), - [sym_preproc_directive] = ACTIONS(4012), - [anon_sym_LPAREN2] = ACTIONS(4014), - [anon_sym_BANG] = ACTIONS(4014), - [anon_sym_TILDE] = ACTIONS(4014), - [anon_sym_DASH] = ACTIONS(4012), - [anon_sym_PLUS] = ACTIONS(4012), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym___extension__] = ACTIONS(4012), - [anon_sym_typedef] = ACTIONS(4012), - [anon_sym_virtual] = ACTIONS(4012), - [anon_sym_extern] = ACTIONS(4012), - [anon_sym___attribute__] = ACTIONS(4012), - [anon_sym___attribute] = ACTIONS(4012), - [anon_sym_using] = ACTIONS(4012), - [anon_sym_COLON_COLON] = ACTIONS(4014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), - [anon_sym___declspec] = ACTIONS(4012), - [anon_sym___based] = ACTIONS(4012), - [anon_sym___cdecl] = ACTIONS(4012), - [anon_sym___clrcall] = ACTIONS(4012), - [anon_sym___stdcall] = ACTIONS(4012), - [anon_sym___fastcall] = ACTIONS(4012), - [anon_sym___thiscall] = ACTIONS(4012), - [anon_sym___vectorcall] = ACTIONS(4012), - [anon_sym_LBRACE] = ACTIONS(4014), - [anon_sym_signed] = ACTIONS(4012), - [anon_sym_unsigned] = ACTIONS(4012), - [anon_sym_long] = ACTIONS(4012), - [anon_sym_short] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4012), - [anon_sym_static] = ACTIONS(4012), - [anon_sym_register] = ACTIONS(4012), - [anon_sym_inline] = ACTIONS(4012), - [anon_sym___inline] = ACTIONS(4012), - [anon_sym___inline__] = ACTIONS(4012), - [anon_sym___forceinline] = ACTIONS(4012), - [anon_sym_thread_local] = ACTIONS(4012), - [anon_sym___thread] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4012), - [anon_sym_constexpr] = ACTIONS(4012), - [anon_sym_volatile] = ACTIONS(4012), - [anon_sym_restrict] = ACTIONS(4012), - [anon_sym___restrict__] = ACTIONS(4012), - [anon_sym__Atomic] = ACTIONS(4012), - [anon_sym__Noreturn] = ACTIONS(4012), - [anon_sym_noreturn] = ACTIONS(4012), - [anon_sym__Nonnull] = ACTIONS(4012), - [anon_sym_mutable] = ACTIONS(4012), - [anon_sym_constinit] = ACTIONS(4012), - [anon_sym_consteval] = ACTIONS(4012), - [anon_sym_alignas] = ACTIONS(4012), - [anon_sym__Alignas] = ACTIONS(4012), - [sym_primitive_type] = ACTIONS(4012), - [anon_sym_enum] = ACTIONS(4012), - [anon_sym_class] = ACTIONS(4012), - [anon_sym_struct] = ACTIONS(4012), - [anon_sym_union] = ACTIONS(4012), - [anon_sym_if] = ACTIONS(4012), - [anon_sym_switch] = ACTIONS(4012), - [anon_sym_case] = ACTIONS(4012), - [anon_sym_default] = ACTIONS(4012), - [anon_sym_while] = ACTIONS(4012), - [anon_sym_do] = ACTIONS(4012), - [anon_sym_for] = ACTIONS(4012), - [anon_sym_return] = ACTIONS(4012), - [anon_sym_break] = ACTIONS(4012), - [anon_sym_continue] = ACTIONS(4012), - [anon_sym_goto] = ACTIONS(4012), - [anon_sym_not] = ACTIONS(4012), - [anon_sym_compl] = ACTIONS(4012), - [anon_sym_DASH_DASH] = ACTIONS(4014), - [anon_sym_PLUS_PLUS] = ACTIONS(4014), - [anon_sym_sizeof] = ACTIONS(4012), - [anon_sym___alignof__] = ACTIONS(4012), - [anon_sym___alignof] = ACTIONS(4012), - [anon_sym__alignof] = ACTIONS(4012), - [anon_sym_alignof] = ACTIONS(4012), - [anon_sym__Alignof] = ACTIONS(4012), - [anon_sym_offsetof] = ACTIONS(4012), - [anon_sym__Generic] = ACTIONS(4012), - [anon_sym_typename] = ACTIONS(4012), - [anon_sym_asm] = ACTIONS(4012), - [anon_sym___asm__] = ACTIONS(4012), - [anon_sym___asm] = ACTIONS(4012), - [sym_number_literal] = ACTIONS(4014), - [anon_sym_L_SQUOTE] = ACTIONS(4014), - [anon_sym_u_SQUOTE] = ACTIONS(4014), - [anon_sym_U_SQUOTE] = ACTIONS(4014), - [anon_sym_u8_SQUOTE] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(4014), - [anon_sym_L_DQUOTE] = ACTIONS(4014), - [anon_sym_u_DQUOTE] = ACTIONS(4014), - [anon_sym_U_DQUOTE] = ACTIONS(4014), - [anon_sym_u8_DQUOTE] = ACTIONS(4014), - [anon_sym_DQUOTE] = ACTIONS(4014), - [sym_true] = ACTIONS(4012), - [sym_false] = ACTIONS(4012), - [anon_sym_NULL] = ACTIONS(4012), - [anon_sym_nullptr] = ACTIONS(4012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4012), - [anon_sym_decltype] = ACTIONS(4012), - [anon_sym_explicit] = ACTIONS(4012), - [anon_sym_export] = ACTIONS(4012), - [anon_sym_module] = ACTIONS(4012), - [anon_sym_import] = ACTIONS(4012), - [anon_sym_template] = ACTIONS(4012), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_try] = ACTIONS(4012), - [anon_sym_delete] = ACTIONS(4012), - [anon_sym_throw] = ACTIONS(4012), - [anon_sym_namespace] = ACTIONS(4012), - [anon_sym_static_assert] = ACTIONS(4012), - [anon_sym_concept] = ACTIONS(4012), - [anon_sym_co_return] = ACTIONS(4012), - [anon_sym_co_yield] = ACTIONS(4012), - [anon_sym_R_DQUOTE] = ACTIONS(4014), - [anon_sym_LR_DQUOTE] = ACTIONS(4014), - [anon_sym_uR_DQUOTE] = ACTIONS(4014), - [anon_sym_UR_DQUOTE] = ACTIONS(4014), - [anon_sym_u8R_DQUOTE] = ACTIONS(4014), - [anon_sym_co_await] = ACTIONS(4012), - [anon_sym_new] = ACTIONS(4012), - [anon_sym_requires] = ACTIONS(4012), - [anon_sym_CARET_CARET] = ACTIONS(4014), - [anon_sym_LBRACK_COLON] = ACTIONS(4014), - [sym_this] = ACTIONS(4012), - }, - [STATE(918)] = { - [ts_builtin_sym_end] = ACTIONS(4162), - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_include_token1] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym___cdecl] = ACTIONS(4160), - [anon_sym___clrcall] = ACTIONS(4160), - [anon_sym___stdcall] = ACTIONS(4160), - [anon_sym___fastcall] = ACTIONS(4160), - [anon_sym___thiscall] = ACTIONS(4160), - [anon_sym___vectorcall] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_case] = ACTIONS(4160), - [anon_sym_default] = ACTIONS(4160), - [anon_sym_while] = ACTIONS(4160), - [anon_sym_do] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym_not] = ACTIONS(4160), - [anon_sym_compl] = ACTIONS(4160), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_sizeof] = ACTIONS(4160), - [anon_sym___alignof__] = ACTIONS(4160), - [anon_sym___alignof] = ACTIONS(4160), - [anon_sym__alignof] = ACTIONS(4160), - [anon_sym_alignof] = ACTIONS(4160), - [anon_sym__Alignof] = ACTIONS(4160), - [anon_sym_offsetof] = ACTIONS(4160), - [anon_sym__Generic] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym___asm__] = ACTIONS(4160), - [anon_sym___asm] = ACTIONS(4160), - [sym_number_literal] = ACTIONS(4162), - [anon_sym_L_SQUOTE] = ACTIONS(4162), - [anon_sym_u_SQUOTE] = ACTIONS(4162), - [anon_sym_U_SQUOTE] = ACTIONS(4162), - [anon_sym_u8_SQUOTE] = ACTIONS(4162), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_L_DQUOTE] = ACTIONS(4162), - [anon_sym_u_DQUOTE] = ACTIONS(4162), - [anon_sym_U_DQUOTE] = ACTIONS(4162), - [anon_sym_u8_DQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [anon_sym_NULL] = ACTIONS(4160), - [anon_sym_nullptr] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_export] = ACTIONS(4160), - [anon_sym_module] = ACTIONS(4160), - [anon_sym_import] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_try] = ACTIONS(4160), - [anon_sym_delete] = ACTIONS(4160), - [anon_sym_throw] = ACTIONS(4160), - [anon_sym_namespace] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_concept] = ACTIONS(4160), - [anon_sym_co_return] = ACTIONS(4160), - [anon_sym_co_yield] = ACTIONS(4160), - [anon_sym_R_DQUOTE] = ACTIONS(4162), - [anon_sym_LR_DQUOTE] = ACTIONS(4162), - [anon_sym_uR_DQUOTE] = ACTIONS(4162), - [anon_sym_UR_DQUOTE] = ACTIONS(4162), - [anon_sym_u8R_DQUOTE] = ACTIONS(4162), - [anon_sym_co_await] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4160), - [anon_sym_requires] = ACTIONS(4160), - [anon_sym_CARET_CARET] = ACTIONS(4162), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - [sym_this] = ACTIONS(4160), - }, - [STATE(919)] = { - [ts_builtin_sym_end] = ACTIONS(4162), - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_include_token1] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_BANG] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_DASH] = ACTIONS(4160), - [anon_sym_PLUS] = ACTIONS(4160), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym___cdecl] = ACTIONS(4160), - [anon_sym___clrcall] = ACTIONS(4160), - [anon_sym___stdcall] = ACTIONS(4160), - [anon_sym___fastcall] = ACTIONS(4160), - [anon_sym___thiscall] = ACTIONS(4160), - [anon_sym___vectorcall] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_if] = ACTIONS(4160), - [anon_sym_switch] = ACTIONS(4160), - [anon_sym_case] = ACTIONS(4160), - [anon_sym_default] = ACTIONS(4160), - [anon_sym_while] = ACTIONS(4160), - [anon_sym_do] = ACTIONS(4160), - [anon_sym_for] = ACTIONS(4160), - [anon_sym_return] = ACTIONS(4160), - [anon_sym_break] = ACTIONS(4160), - [anon_sym_continue] = ACTIONS(4160), - [anon_sym_goto] = ACTIONS(4160), - [anon_sym_not] = ACTIONS(4160), - [anon_sym_compl] = ACTIONS(4160), - [anon_sym_DASH_DASH] = ACTIONS(4162), - [anon_sym_PLUS_PLUS] = ACTIONS(4162), - [anon_sym_sizeof] = ACTIONS(4160), - [anon_sym___alignof__] = ACTIONS(4160), - [anon_sym___alignof] = ACTIONS(4160), - [anon_sym__alignof] = ACTIONS(4160), - [anon_sym_alignof] = ACTIONS(4160), - [anon_sym__Alignof] = ACTIONS(4160), - [anon_sym_offsetof] = ACTIONS(4160), - [anon_sym__Generic] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [anon_sym_asm] = ACTIONS(4160), - [anon_sym___asm__] = ACTIONS(4160), - [anon_sym___asm] = ACTIONS(4160), - [sym_number_literal] = ACTIONS(4162), - [anon_sym_L_SQUOTE] = ACTIONS(4162), - [anon_sym_u_SQUOTE] = ACTIONS(4162), - [anon_sym_U_SQUOTE] = ACTIONS(4162), - [anon_sym_u8_SQUOTE] = ACTIONS(4162), - [anon_sym_SQUOTE] = ACTIONS(4162), - [anon_sym_L_DQUOTE] = ACTIONS(4162), - [anon_sym_u_DQUOTE] = ACTIONS(4162), - [anon_sym_U_DQUOTE] = ACTIONS(4162), - [anon_sym_u8_DQUOTE] = ACTIONS(4162), - [anon_sym_DQUOTE] = ACTIONS(4162), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [anon_sym_NULL] = ACTIONS(4160), - [anon_sym_nullptr] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_export] = ACTIONS(4160), - [anon_sym_module] = ACTIONS(4160), - [anon_sym_import] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_try] = ACTIONS(4160), - [anon_sym_delete] = ACTIONS(4160), - [anon_sym_throw] = ACTIONS(4160), - [anon_sym_namespace] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_concept] = ACTIONS(4160), - [anon_sym_co_return] = ACTIONS(4160), - [anon_sym_co_yield] = ACTIONS(4160), - [anon_sym_R_DQUOTE] = ACTIONS(4162), - [anon_sym_LR_DQUOTE] = ACTIONS(4162), - [anon_sym_uR_DQUOTE] = ACTIONS(4162), - [anon_sym_UR_DQUOTE] = ACTIONS(4162), - [anon_sym_u8R_DQUOTE] = ACTIONS(4162), - [anon_sym_co_await] = ACTIONS(4160), - [anon_sym_new] = ACTIONS(4160), - [anon_sym_requires] = ACTIONS(4160), - [anon_sym_CARET_CARET] = ACTIONS(4162), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - [sym_this] = ACTIONS(4160), - }, - [STATE(920)] = { - [ts_builtin_sym_end] = ACTIONS(4110), - [sym_identifier] = ACTIONS(4108), - [aux_sym_preproc_include_token1] = ACTIONS(4108), - [aux_sym_preproc_def_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token1] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_LPAREN2] = ACTIONS(4110), - [anon_sym_BANG] = ACTIONS(4110), - [anon_sym_TILDE] = ACTIONS(4110), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym___extension__] = ACTIONS(4108), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_virtual] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym___attribute__] = ACTIONS(4108), - [anon_sym___attribute] = ACTIONS(4108), - [anon_sym_using] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), - [anon_sym___declspec] = ACTIONS(4108), - [anon_sym___based] = ACTIONS(4108), - [anon_sym___cdecl] = ACTIONS(4108), - [anon_sym___clrcall] = ACTIONS(4108), - [anon_sym___stdcall] = ACTIONS(4108), - [anon_sym___fastcall] = ACTIONS(4108), - [anon_sym___thiscall] = ACTIONS(4108), - [anon_sym___vectorcall] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4110), - [anon_sym_signed] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4108), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym___inline] = ACTIONS(4108), - [anon_sym___inline__] = ACTIONS(4108), - [anon_sym___forceinline] = ACTIONS(4108), - [anon_sym_thread_local] = ACTIONS(4108), - [anon_sym___thread] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym___restrict__] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym__Noreturn] = ACTIONS(4108), - [anon_sym_noreturn] = ACTIONS(4108), - [anon_sym__Nonnull] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_constinit] = ACTIONS(4108), - [anon_sym_consteval] = ACTIONS(4108), - [anon_sym_alignas] = ACTIONS(4108), - [anon_sym__Alignas] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_class] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(4108), - [anon_sym_case] = ACTIONS(4108), - [anon_sym_default] = ACTIONS(4108), - [anon_sym_while] = ACTIONS(4108), - [anon_sym_do] = ACTIONS(4108), - [anon_sym_for] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_goto] = ACTIONS(4108), - [anon_sym_not] = ACTIONS(4108), - [anon_sym_compl] = ACTIONS(4108), - [anon_sym_DASH_DASH] = ACTIONS(4110), - [anon_sym_PLUS_PLUS] = ACTIONS(4110), - [anon_sym_sizeof] = ACTIONS(4108), - [anon_sym___alignof__] = ACTIONS(4108), - [anon_sym___alignof] = ACTIONS(4108), - [anon_sym__alignof] = ACTIONS(4108), - [anon_sym_alignof] = ACTIONS(4108), - [anon_sym__Alignof] = ACTIONS(4108), - [anon_sym_offsetof] = ACTIONS(4108), - [anon_sym__Generic] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [anon_sym_asm] = ACTIONS(4108), - [anon_sym___asm__] = ACTIONS(4108), - [anon_sym___asm] = ACTIONS(4108), - [sym_number_literal] = ACTIONS(4110), - [anon_sym_L_SQUOTE] = ACTIONS(4110), - [anon_sym_u_SQUOTE] = ACTIONS(4110), - [anon_sym_U_SQUOTE] = ACTIONS(4110), - [anon_sym_u8_SQUOTE] = ACTIONS(4110), - [anon_sym_SQUOTE] = ACTIONS(4110), - [anon_sym_L_DQUOTE] = ACTIONS(4110), - [anon_sym_u_DQUOTE] = ACTIONS(4110), - [anon_sym_U_DQUOTE] = ACTIONS(4110), - [anon_sym_u8_DQUOTE] = ACTIONS(4110), - [anon_sym_DQUOTE] = ACTIONS(4110), - [sym_true] = ACTIONS(4108), - [sym_false] = ACTIONS(4108), - [anon_sym_NULL] = ACTIONS(4108), - [anon_sym_nullptr] = ACTIONS(4108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4108), - [anon_sym_decltype] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_export] = ACTIONS(4108), - [anon_sym_module] = ACTIONS(4108), - [anon_sym_import] = ACTIONS(4108), - [anon_sym_template] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_try] = ACTIONS(4108), - [anon_sym_delete] = ACTIONS(4108), - [anon_sym_throw] = ACTIONS(4108), - [anon_sym_namespace] = ACTIONS(4108), - [anon_sym_static_assert] = ACTIONS(4108), - [anon_sym_concept] = ACTIONS(4108), - [anon_sym_co_return] = ACTIONS(4108), - [anon_sym_co_yield] = ACTIONS(4108), - [anon_sym_R_DQUOTE] = ACTIONS(4110), - [anon_sym_LR_DQUOTE] = ACTIONS(4110), - [anon_sym_uR_DQUOTE] = ACTIONS(4110), - [anon_sym_UR_DQUOTE] = ACTIONS(4110), - [anon_sym_u8R_DQUOTE] = ACTIONS(4110), - [anon_sym_co_await] = ACTIONS(4108), - [anon_sym_new] = ACTIONS(4108), - [anon_sym_requires] = ACTIONS(4108), - [anon_sym_CARET_CARET] = ACTIONS(4110), - [anon_sym_LBRACK_COLON] = ACTIONS(4110), - [sym_this] = ACTIONS(4108), - }, - [STATE(921)] = { - [ts_builtin_sym_end] = ACTIONS(4166), - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_include_token1] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_BANG] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_DASH] = ACTIONS(4164), - [anon_sym_PLUS] = ACTIONS(4164), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [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(4166), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = 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), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_if] = ACTIONS(4164), - [anon_sym_switch] = ACTIONS(4164), - [anon_sym_case] = ACTIONS(4164), - [anon_sym_default] = ACTIONS(4164), - [anon_sym_while] = ACTIONS(4164), - [anon_sym_do] = ACTIONS(4164), - [anon_sym_for] = ACTIONS(4164), - [anon_sym_return] = ACTIONS(4164), - [anon_sym_break] = ACTIONS(4164), - [anon_sym_continue] = ACTIONS(4164), - [anon_sym_goto] = ACTIONS(4164), - [anon_sym_not] = ACTIONS(4164), - [anon_sym_compl] = ACTIONS(4164), - [anon_sym_DASH_DASH] = ACTIONS(4166), - [anon_sym_PLUS_PLUS] = ACTIONS(4166), - [anon_sym_sizeof] = ACTIONS(4164), - [anon_sym___alignof__] = ACTIONS(4164), - [anon_sym___alignof] = ACTIONS(4164), - [anon_sym__alignof] = ACTIONS(4164), - [anon_sym_alignof] = ACTIONS(4164), - [anon_sym__Alignof] = ACTIONS(4164), - [anon_sym_offsetof] = ACTIONS(4164), - [anon_sym__Generic] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [anon_sym_asm] = ACTIONS(4164), - [anon_sym___asm__] = ACTIONS(4164), - [anon_sym___asm] = ACTIONS(4164), - [sym_number_literal] = ACTIONS(4166), - [anon_sym_L_SQUOTE] = ACTIONS(4166), - [anon_sym_u_SQUOTE] = ACTIONS(4166), - [anon_sym_U_SQUOTE] = ACTIONS(4166), - [anon_sym_u8_SQUOTE] = ACTIONS(4166), - [anon_sym_SQUOTE] = ACTIONS(4166), - [anon_sym_L_DQUOTE] = ACTIONS(4166), - [anon_sym_u_DQUOTE] = ACTIONS(4166), - [anon_sym_U_DQUOTE] = ACTIONS(4166), - [anon_sym_u8_DQUOTE] = ACTIONS(4166), - [anon_sym_DQUOTE] = ACTIONS(4166), - [sym_true] = ACTIONS(4164), - [sym_false] = ACTIONS(4164), - [anon_sym_NULL] = ACTIONS(4164), - [anon_sym_nullptr] = ACTIONS(4164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_export] = ACTIONS(4164), - [anon_sym_module] = ACTIONS(4164), - [anon_sym_import] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_try] = ACTIONS(4164), - [anon_sym_delete] = ACTIONS(4164), - [anon_sym_throw] = ACTIONS(4164), - [anon_sym_namespace] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_concept] = ACTIONS(4164), - [anon_sym_co_return] = ACTIONS(4164), - [anon_sym_co_yield] = ACTIONS(4164), - [anon_sym_R_DQUOTE] = ACTIONS(4166), - [anon_sym_LR_DQUOTE] = ACTIONS(4166), - [anon_sym_uR_DQUOTE] = ACTIONS(4166), - [anon_sym_UR_DQUOTE] = ACTIONS(4166), - [anon_sym_u8R_DQUOTE] = ACTIONS(4166), - [anon_sym_co_await] = ACTIONS(4164), - [anon_sym_new] = ACTIONS(4164), - [anon_sym_requires] = ACTIONS(4164), - [anon_sym_CARET_CARET] = ACTIONS(4166), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), - [sym_this] = ACTIONS(4164), - }, - [STATE(922)] = { - [ts_builtin_sym_end] = ACTIONS(4170), - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_include_token1] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_BANG] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_DASH] = ACTIONS(4168), - [anon_sym_PLUS] = ACTIONS(4168), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym___cdecl] = ACTIONS(4168), - [anon_sym___clrcall] = ACTIONS(4168), - [anon_sym___stdcall] = ACTIONS(4168), - [anon_sym___fastcall] = ACTIONS(4168), - [anon_sym___thiscall] = ACTIONS(4168), - [anon_sym___vectorcall] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4170), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_if] = ACTIONS(4168), - [anon_sym_switch] = ACTIONS(4168), - [anon_sym_case] = ACTIONS(4168), - [anon_sym_default] = ACTIONS(4168), - [anon_sym_while] = ACTIONS(4168), - [anon_sym_do] = ACTIONS(4168), - [anon_sym_for] = ACTIONS(4168), - [anon_sym_return] = ACTIONS(4168), - [anon_sym_break] = ACTIONS(4168), - [anon_sym_continue] = ACTIONS(4168), - [anon_sym_goto] = ACTIONS(4168), - [anon_sym_not] = ACTIONS(4168), - [anon_sym_compl] = ACTIONS(4168), - [anon_sym_DASH_DASH] = ACTIONS(4170), - [anon_sym_PLUS_PLUS] = ACTIONS(4170), - [anon_sym_sizeof] = ACTIONS(4168), - [anon_sym___alignof__] = ACTIONS(4168), - [anon_sym___alignof] = ACTIONS(4168), - [anon_sym__alignof] = ACTIONS(4168), - [anon_sym_alignof] = ACTIONS(4168), - [anon_sym__Alignof] = ACTIONS(4168), - [anon_sym_offsetof] = ACTIONS(4168), - [anon_sym__Generic] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), - [anon_sym_asm] = ACTIONS(4168), - [anon_sym___asm__] = ACTIONS(4168), - [anon_sym___asm] = ACTIONS(4168), - [sym_number_literal] = ACTIONS(4170), - [anon_sym_L_SQUOTE] = ACTIONS(4170), - [anon_sym_u_SQUOTE] = ACTIONS(4170), - [anon_sym_U_SQUOTE] = ACTIONS(4170), - [anon_sym_u8_SQUOTE] = ACTIONS(4170), - [anon_sym_SQUOTE] = ACTIONS(4170), - [anon_sym_L_DQUOTE] = ACTIONS(4170), - [anon_sym_u_DQUOTE] = ACTIONS(4170), - [anon_sym_U_DQUOTE] = ACTIONS(4170), - [anon_sym_u8_DQUOTE] = ACTIONS(4170), - [anon_sym_DQUOTE] = ACTIONS(4170), - [sym_true] = ACTIONS(4168), - [sym_false] = ACTIONS(4168), - [anon_sym_NULL] = ACTIONS(4168), - [anon_sym_nullptr] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_export] = ACTIONS(4168), - [anon_sym_module] = ACTIONS(4168), - [anon_sym_import] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_try] = ACTIONS(4168), - [anon_sym_delete] = ACTIONS(4168), - [anon_sym_throw] = ACTIONS(4168), - [anon_sym_namespace] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_concept] = ACTIONS(4168), - [anon_sym_co_return] = ACTIONS(4168), - [anon_sym_co_yield] = ACTIONS(4168), - [anon_sym_R_DQUOTE] = ACTIONS(4170), - [anon_sym_LR_DQUOTE] = ACTIONS(4170), - [anon_sym_uR_DQUOTE] = ACTIONS(4170), - [anon_sym_UR_DQUOTE] = ACTIONS(4170), - [anon_sym_u8R_DQUOTE] = ACTIONS(4170), - [anon_sym_co_await] = ACTIONS(4168), - [anon_sym_new] = ACTIONS(4168), - [anon_sym_requires] = ACTIONS(4168), - [anon_sym_CARET_CARET] = ACTIONS(4170), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), - [sym_this] = ACTIONS(4168), - }, - [STATE(923)] = { - [ts_builtin_sym_end] = ACTIONS(4174), - [sym_identifier] = ACTIONS(4172), - [aux_sym_preproc_include_token1] = ACTIONS(4172), - [aux_sym_preproc_def_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), - [sym_preproc_directive] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_BANG] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_DASH] = ACTIONS(4172), - [anon_sym_PLUS] = ACTIONS(4172), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4172), - [anon_sym_typedef] = ACTIONS(4172), - [anon_sym_virtual] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(4172), - [anon_sym___attribute] = ACTIONS(4172), - [anon_sym_using] = ACTIONS(4172), - [anon_sym_COLON_COLON] = ACTIONS(4174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), - [anon_sym___declspec] = ACTIONS(4172), - [anon_sym___based] = ACTIONS(4172), - [anon_sym___cdecl] = ACTIONS(4172), - [anon_sym___clrcall] = ACTIONS(4172), - [anon_sym___stdcall] = ACTIONS(4172), - [anon_sym___fastcall] = ACTIONS(4172), - [anon_sym___thiscall] = ACTIONS(4172), - [anon_sym___vectorcall] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4174), - [anon_sym_signed] = ACTIONS(4172), - [anon_sym_unsigned] = ACTIONS(4172), - [anon_sym_long] = ACTIONS(4172), - [anon_sym_short] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_static] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_inline] = ACTIONS(4172), - [anon_sym___inline] = ACTIONS(4172), - [anon_sym___inline__] = ACTIONS(4172), - [anon_sym___forceinline] = ACTIONS(4172), - [anon_sym_thread_local] = ACTIONS(4172), - [anon_sym___thread] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [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), - [sym_primitive_type] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_class] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_if] = ACTIONS(4172), - [anon_sym_switch] = ACTIONS(4172), - [anon_sym_case] = ACTIONS(4172), - [anon_sym_default] = ACTIONS(4172), - [anon_sym_while] = ACTIONS(4172), - [anon_sym_do] = ACTIONS(4172), - [anon_sym_for] = ACTIONS(4172), - [anon_sym_return] = ACTIONS(4172), - [anon_sym_break] = ACTIONS(4172), - [anon_sym_continue] = ACTIONS(4172), - [anon_sym_goto] = ACTIONS(4172), - [anon_sym_not] = ACTIONS(4172), - [anon_sym_compl] = ACTIONS(4172), - [anon_sym_DASH_DASH] = ACTIONS(4174), - [anon_sym_PLUS_PLUS] = ACTIONS(4174), - [anon_sym_sizeof] = ACTIONS(4172), - [anon_sym___alignof__] = ACTIONS(4172), - [anon_sym___alignof] = ACTIONS(4172), - [anon_sym__alignof] = ACTIONS(4172), - [anon_sym_alignof] = ACTIONS(4172), - [anon_sym__Alignof] = ACTIONS(4172), - [anon_sym_offsetof] = ACTIONS(4172), - [anon_sym__Generic] = ACTIONS(4172), - [anon_sym_typename] = ACTIONS(4172), - [anon_sym_asm] = ACTIONS(4172), - [anon_sym___asm__] = ACTIONS(4172), - [anon_sym___asm] = ACTIONS(4172), - [sym_number_literal] = ACTIONS(4174), - [anon_sym_L_SQUOTE] = ACTIONS(4174), - [anon_sym_u_SQUOTE] = ACTIONS(4174), - [anon_sym_U_SQUOTE] = ACTIONS(4174), - [anon_sym_u8_SQUOTE] = ACTIONS(4174), - [anon_sym_SQUOTE] = ACTIONS(4174), - [anon_sym_L_DQUOTE] = ACTIONS(4174), - [anon_sym_u_DQUOTE] = ACTIONS(4174), - [anon_sym_U_DQUOTE] = ACTIONS(4174), - [anon_sym_u8_DQUOTE] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(4174), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [anon_sym_NULL] = ACTIONS(4172), - [anon_sym_nullptr] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4172), - [anon_sym_decltype] = ACTIONS(4172), - [anon_sym_explicit] = ACTIONS(4172), - [anon_sym_export] = ACTIONS(4172), - [anon_sym_module] = ACTIONS(4172), - [anon_sym_import] = ACTIONS(4172), - [anon_sym_template] = ACTIONS(4172), - [anon_sym_operator] = ACTIONS(4172), - [anon_sym_try] = ACTIONS(4172), - [anon_sym_delete] = ACTIONS(4172), - [anon_sym_throw] = ACTIONS(4172), - [anon_sym_namespace] = ACTIONS(4172), - [anon_sym_static_assert] = ACTIONS(4172), - [anon_sym_concept] = ACTIONS(4172), - [anon_sym_co_return] = ACTIONS(4172), - [anon_sym_co_yield] = ACTIONS(4172), - [anon_sym_R_DQUOTE] = ACTIONS(4174), - [anon_sym_LR_DQUOTE] = ACTIONS(4174), - [anon_sym_uR_DQUOTE] = ACTIONS(4174), - [anon_sym_UR_DQUOTE] = ACTIONS(4174), - [anon_sym_u8R_DQUOTE] = ACTIONS(4174), - [anon_sym_co_await] = ACTIONS(4172), - [anon_sym_new] = ACTIONS(4172), - [anon_sym_requires] = ACTIONS(4172), - [anon_sym_CARET_CARET] = ACTIONS(4174), - [anon_sym_LBRACK_COLON] = ACTIONS(4174), - [sym_this] = ACTIONS(4172), + [sym_auto] = ACTIONS(4492), + [anon_sym_decltype] = ACTIONS(4492), + [anon_sym_explicit] = ACTIONS(4492), + [anon_sym_export] = ACTIONS(4492), + [anon_sym_module] = ACTIONS(4492), + [anon_sym_import] = ACTIONS(4492), + [anon_sym_template] = ACTIONS(4492), + [anon_sym_operator] = ACTIONS(4492), + [anon_sym_try] = ACTIONS(4492), + [anon_sym_delete] = ACTIONS(4492), + [anon_sym_throw] = ACTIONS(4492), + [anon_sym_namespace] = ACTIONS(4492), + [anon_sym_static_assert] = ACTIONS(4492), + [anon_sym_concept] = ACTIONS(4492), + [anon_sym_co_return] = ACTIONS(4492), + [anon_sym_co_yield] = ACTIONS(4492), + [anon_sym_R_DQUOTE] = ACTIONS(4494), + [anon_sym_LR_DQUOTE] = ACTIONS(4494), + [anon_sym_uR_DQUOTE] = ACTIONS(4494), + [anon_sym_UR_DQUOTE] = ACTIONS(4494), + [anon_sym_u8R_DQUOTE] = ACTIONS(4494), + [anon_sym_co_await] = ACTIONS(4492), + [anon_sym_new] = ACTIONS(4492), + [anon_sym_requires] = ACTIONS(4492), + [anon_sym_CARET_CARET] = ACTIONS(4494), + [anon_sym_LBRACK_COLON] = ACTIONS(4494), + [sym_this] = ACTIONS(4492), }, - [STATE(924)] = { - [sym_preproc_def] = STATE(929), - [sym_preproc_function_def] = STATE(929), - [sym_preproc_call] = STATE(929), - [sym_preproc_if_in_field_declaration_list] = STATE(929), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(929), - [sym_type_definition] = STATE(929), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(929), - [sym_field_declaration] = STATE(929), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(929), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(929), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(929), - [sym_operator_cast_declaration] = STATE(929), - [sym_constructor_or_destructor_definition] = STATE(929), - [sym_constructor_or_destructor_declaration] = STATE(929), - [sym_friend_declaration] = STATE(929), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(929), - [sym_alias_declaration] = STATE(929), - [sym_static_assert_declaration] = STATE(929), - [sym_consteval_block_declaration] = STATE(929), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(929), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4771), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4773), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), - [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(4704), - [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(4706), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [STATE(912)] = { + [sym_identifier] = ACTIONS(4496), + [aux_sym_preproc_include_token1] = ACTIONS(4496), + [aux_sym_preproc_def_token1] = ACTIONS(4496), + [aux_sym_preproc_if_token1] = ACTIONS(4496), + [aux_sym_preproc_if_token2] = ACTIONS(4496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4496), + [sym_preproc_directive] = ACTIONS(4496), + [anon_sym_LPAREN2] = ACTIONS(4498), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_TILDE] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_AMP_AMP] = ACTIONS(4498), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_SEMI] = ACTIONS(4498), + [anon_sym___extension__] = ACTIONS(4496), + [anon_sym_typedef] = ACTIONS(4496), + [anon_sym_virtual] = ACTIONS(4496), + [anon_sym_extern] = ACTIONS(4496), + [anon_sym___attribute__] = ACTIONS(4496), + [anon_sym___attribute] = ACTIONS(4496), + [anon_sym_using] = ACTIONS(4496), + [anon_sym_COLON_COLON] = ACTIONS(4498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4498), + [anon_sym___declspec] = ACTIONS(4496), + [anon_sym___based] = ACTIONS(4496), + [anon_sym___cdecl] = ACTIONS(4496), + [anon_sym___clrcall] = ACTIONS(4496), + [anon_sym___stdcall] = ACTIONS(4496), + [anon_sym___fastcall] = ACTIONS(4496), + [anon_sym___thiscall] = ACTIONS(4496), + [anon_sym___vectorcall] = ACTIONS(4496), + [anon_sym_LBRACE] = ACTIONS(4498), + [anon_sym_signed] = ACTIONS(4496), + [anon_sym_unsigned] = ACTIONS(4496), + [anon_sym_long] = ACTIONS(4496), + [anon_sym_short] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_static] = ACTIONS(4496), + [anon_sym_register] = ACTIONS(4496), + [anon_sym_inline] = ACTIONS(4496), + [anon_sym___inline] = ACTIONS(4496), + [anon_sym___inline__] = ACTIONS(4496), + [anon_sym___forceinline] = ACTIONS(4496), + [anon_sym_thread_local] = ACTIONS(4496), + [anon_sym___thread] = ACTIONS(4496), + [anon_sym_const] = ACTIONS(4496), + [anon_sym_constexpr] = ACTIONS(4496), + [anon_sym_volatile] = ACTIONS(4496), + [anon_sym_restrict] = ACTIONS(4496), + [anon_sym___restrict__] = ACTIONS(4496), + [anon_sym__Atomic] = ACTIONS(4496), + [anon_sym__Noreturn] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym__Nonnull] = ACTIONS(4496), + [anon_sym_mutable] = ACTIONS(4496), + [anon_sym_constinit] = ACTIONS(4496), + [anon_sym_consteval] = ACTIONS(4496), + [anon_sym_alignas] = ACTIONS(4496), + [anon_sym__Alignas] = ACTIONS(4496), + [sym_primitive_type] = ACTIONS(4496), + [anon_sym_enum] = ACTIONS(4496), + [anon_sym_class] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_union] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_switch] = ACTIONS(4496), + [anon_sym_case] = ACTIONS(4496), + [anon_sym_default] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_do] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_goto] = ACTIONS(4496), + [anon_sym_not] = ACTIONS(4496), + [anon_sym_compl] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), + [anon_sym_sizeof] = ACTIONS(4496), + [anon_sym___alignof__] = ACTIONS(4496), + [anon_sym___alignof] = ACTIONS(4496), + [anon_sym__alignof] = ACTIONS(4496), + [anon_sym_alignof] = ACTIONS(4496), + [anon_sym__Alignof] = ACTIONS(4496), + [anon_sym_offsetof] = ACTIONS(4496), + [anon_sym__Generic] = ACTIONS(4496), + [anon_sym_typename] = ACTIONS(4496), + [anon_sym_asm] = ACTIONS(4496), + [anon_sym___asm__] = ACTIONS(4496), + [anon_sym___asm] = ACTIONS(4496), + [sym_number_literal] = ACTIONS(4498), + [anon_sym_L_SQUOTE] = ACTIONS(4498), + [anon_sym_u_SQUOTE] = ACTIONS(4498), + [anon_sym_U_SQUOTE] = ACTIONS(4498), + [anon_sym_u8_SQUOTE] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4498), + [anon_sym_L_DQUOTE] = ACTIONS(4498), + [anon_sym_u_DQUOTE] = ACTIONS(4498), + [anon_sym_U_DQUOTE] = ACTIONS(4498), + [anon_sym_u8_DQUOTE] = ACTIONS(4498), + [anon_sym_DQUOTE] = ACTIONS(4498), + [sym_true] = ACTIONS(4496), + [sym_false] = ACTIONS(4496), + [anon_sym_NULL] = ACTIONS(4496), + [anon_sym_nullptr] = ACTIONS(4496), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(925)] = { - [ts_builtin_sym_end] = ACTIONS(4178), - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_include_token1] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_BANG] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_PLUS] = ACTIONS(4176), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym___cdecl] = ACTIONS(4176), - [anon_sym___clrcall] = ACTIONS(4176), - [anon_sym___stdcall] = ACTIONS(4176), - [anon_sym___fastcall] = ACTIONS(4176), - [anon_sym___thiscall] = ACTIONS(4176), - [anon_sym___vectorcall] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4178), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_if] = ACTIONS(4176), - [anon_sym_switch] = ACTIONS(4176), - [anon_sym_case] = ACTIONS(4176), - [anon_sym_default] = ACTIONS(4176), - [anon_sym_while] = ACTIONS(4176), - [anon_sym_do] = ACTIONS(4176), - [anon_sym_for] = ACTIONS(4176), - [anon_sym_return] = ACTIONS(4176), - [anon_sym_break] = ACTIONS(4176), - [anon_sym_continue] = ACTIONS(4176), - [anon_sym_goto] = ACTIONS(4176), - [anon_sym_not] = ACTIONS(4176), - [anon_sym_compl] = ACTIONS(4176), - [anon_sym_DASH_DASH] = ACTIONS(4178), - [anon_sym_PLUS_PLUS] = ACTIONS(4178), - [anon_sym_sizeof] = ACTIONS(4176), - [anon_sym___alignof__] = ACTIONS(4176), - [anon_sym___alignof] = ACTIONS(4176), - [anon_sym__alignof] = ACTIONS(4176), - [anon_sym_alignof] = ACTIONS(4176), - [anon_sym__Alignof] = ACTIONS(4176), - [anon_sym_offsetof] = ACTIONS(4176), - [anon_sym__Generic] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [anon_sym_asm] = ACTIONS(4176), - [anon_sym___asm__] = ACTIONS(4176), - [anon_sym___asm] = ACTIONS(4176), - [sym_number_literal] = ACTIONS(4178), - [anon_sym_L_SQUOTE] = ACTIONS(4178), - [anon_sym_u_SQUOTE] = ACTIONS(4178), - [anon_sym_U_SQUOTE] = ACTIONS(4178), - [anon_sym_u8_SQUOTE] = ACTIONS(4178), - [anon_sym_SQUOTE] = ACTIONS(4178), - [anon_sym_L_DQUOTE] = ACTIONS(4178), - [anon_sym_u_DQUOTE] = ACTIONS(4178), - [anon_sym_U_DQUOTE] = ACTIONS(4178), - [anon_sym_u8_DQUOTE] = ACTIONS(4178), - [anon_sym_DQUOTE] = ACTIONS(4178), - [sym_true] = ACTIONS(4176), - [sym_false] = ACTIONS(4176), - [anon_sym_NULL] = ACTIONS(4176), - [anon_sym_nullptr] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_export] = ACTIONS(4176), - [anon_sym_module] = ACTIONS(4176), - [anon_sym_import] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_try] = ACTIONS(4176), - [anon_sym_delete] = ACTIONS(4176), - [anon_sym_throw] = ACTIONS(4176), - [anon_sym_namespace] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_concept] = ACTIONS(4176), - [anon_sym_co_return] = ACTIONS(4176), - [anon_sym_co_yield] = ACTIONS(4176), - [anon_sym_R_DQUOTE] = ACTIONS(4178), - [anon_sym_LR_DQUOTE] = ACTIONS(4178), - [anon_sym_uR_DQUOTE] = ACTIONS(4178), - [anon_sym_UR_DQUOTE] = ACTIONS(4178), - [anon_sym_u8R_DQUOTE] = ACTIONS(4178), - [anon_sym_co_await] = ACTIONS(4176), - [anon_sym_new] = ACTIONS(4176), - [anon_sym_requires] = ACTIONS(4176), - [anon_sym_CARET_CARET] = ACTIONS(4178), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - [sym_this] = ACTIONS(4176), + [sym_auto] = ACTIONS(4496), + [anon_sym_decltype] = ACTIONS(4496), + [anon_sym_explicit] = ACTIONS(4496), + [anon_sym_export] = ACTIONS(4496), + [anon_sym_module] = ACTIONS(4496), + [anon_sym_import] = ACTIONS(4496), + [anon_sym_template] = ACTIONS(4496), + [anon_sym_operator] = ACTIONS(4496), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_delete] = ACTIONS(4496), + [anon_sym_throw] = ACTIONS(4496), + [anon_sym_namespace] = ACTIONS(4496), + [anon_sym_static_assert] = ACTIONS(4496), + [anon_sym_concept] = ACTIONS(4496), + [anon_sym_co_return] = ACTIONS(4496), + [anon_sym_co_yield] = ACTIONS(4496), + [anon_sym_R_DQUOTE] = ACTIONS(4498), + [anon_sym_LR_DQUOTE] = ACTIONS(4498), + [anon_sym_uR_DQUOTE] = ACTIONS(4498), + [anon_sym_UR_DQUOTE] = ACTIONS(4498), + [anon_sym_u8R_DQUOTE] = ACTIONS(4498), + [anon_sym_co_await] = ACTIONS(4496), + [anon_sym_new] = ACTIONS(4496), + [anon_sym_requires] = ACTIONS(4496), + [anon_sym_CARET_CARET] = ACTIONS(4498), + [anon_sym_LBRACK_COLON] = ACTIONS(4498), + [sym_this] = ACTIONS(4496), }, - [STATE(926)] = { - [ts_builtin_sym_end] = ACTIONS(4182), - [sym_identifier] = ACTIONS(4180), - [aux_sym_preproc_include_token1] = ACTIONS(4180), - [aux_sym_preproc_def_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), - [sym_preproc_directive] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(4182), - [anon_sym_BANG] = ACTIONS(4182), - [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_DASH] = ACTIONS(4180), - [anon_sym_PLUS] = ACTIONS(4180), - [anon_sym_STAR] = ACTIONS(4182), - [anon_sym_AMP_AMP] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym___extension__] = ACTIONS(4180), - [anon_sym_typedef] = ACTIONS(4180), - [anon_sym_virtual] = ACTIONS(4180), - [anon_sym_extern] = ACTIONS(4180), - [anon_sym___attribute__] = ACTIONS(4180), - [anon_sym___attribute] = ACTIONS(4180), - [anon_sym_using] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), - [anon_sym___declspec] = ACTIONS(4180), - [anon_sym___based] = ACTIONS(4180), - [anon_sym___cdecl] = ACTIONS(4180), - [anon_sym___clrcall] = ACTIONS(4180), - [anon_sym___stdcall] = ACTIONS(4180), - [anon_sym___fastcall] = ACTIONS(4180), - [anon_sym___thiscall] = ACTIONS(4180), - [anon_sym___vectorcall] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(4182), - [anon_sym_signed] = ACTIONS(4180), - [anon_sym_unsigned] = ACTIONS(4180), - [anon_sym_long] = ACTIONS(4180), - [anon_sym_short] = ACTIONS(4180), - [anon_sym_LBRACK] = ACTIONS(4180), - [anon_sym_static] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4180), - [anon_sym_inline] = ACTIONS(4180), - [anon_sym___inline] = ACTIONS(4180), - [anon_sym___inline__] = ACTIONS(4180), - [anon_sym___forceinline] = ACTIONS(4180), - [anon_sym_thread_local] = ACTIONS(4180), - [anon_sym___thread] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_constexpr] = ACTIONS(4180), - [anon_sym_volatile] = ACTIONS(4180), - [anon_sym_restrict] = ACTIONS(4180), - [anon_sym___restrict__] = ACTIONS(4180), - [anon_sym__Atomic] = ACTIONS(4180), - [anon_sym__Noreturn] = ACTIONS(4180), - [anon_sym_noreturn] = ACTIONS(4180), - [anon_sym__Nonnull] = ACTIONS(4180), - [anon_sym_mutable] = ACTIONS(4180), - [anon_sym_constinit] = ACTIONS(4180), - [anon_sym_consteval] = ACTIONS(4180), - [anon_sym_alignas] = ACTIONS(4180), - [anon_sym__Alignas] = ACTIONS(4180), - [sym_primitive_type] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_class] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_if] = ACTIONS(4180), - [anon_sym_switch] = ACTIONS(4180), - [anon_sym_case] = ACTIONS(4180), - [anon_sym_default] = ACTIONS(4180), - [anon_sym_while] = ACTIONS(4180), - [anon_sym_do] = ACTIONS(4180), - [anon_sym_for] = ACTIONS(4180), - [anon_sym_return] = ACTIONS(4180), - [anon_sym_break] = ACTIONS(4180), - [anon_sym_continue] = ACTIONS(4180), - [anon_sym_goto] = ACTIONS(4180), - [anon_sym_not] = ACTIONS(4180), - [anon_sym_compl] = ACTIONS(4180), - [anon_sym_DASH_DASH] = ACTIONS(4182), - [anon_sym_PLUS_PLUS] = ACTIONS(4182), - [anon_sym_sizeof] = ACTIONS(4180), - [anon_sym___alignof__] = ACTIONS(4180), - [anon_sym___alignof] = ACTIONS(4180), - [anon_sym__alignof] = ACTIONS(4180), - [anon_sym_alignof] = ACTIONS(4180), - [anon_sym__Alignof] = ACTIONS(4180), - [anon_sym_offsetof] = ACTIONS(4180), - [anon_sym__Generic] = ACTIONS(4180), - [anon_sym_typename] = ACTIONS(4180), - [anon_sym_asm] = ACTIONS(4180), - [anon_sym___asm__] = ACTIONS(4180), - [anon_sym___asm] = ACTIONS(4180), - [sym_number_literal] = ACTIONS(4182), - [anon_sym_L_SQUOTE] = ACTIONS(4182), - [anon_sym_u_SQUOTE] = ACTIONS(4182), - [anon_sym_U_SQUOTE] = ACTIONS(4182), - [anon_sym_u8_SQUOTE] = ACTIONS(4182), - [anon_sym_SQUOTE] = ACTIONS(4182), - [anon_sym_L_DQUOTE] = ACTIONS(4182), - [anon_sym_u_DQUOTE] = ACTIONS(4182), - [anon_sym_U_DQUOTE] = ACTIONS(4182), - [anon_sym_u8_DQUOTE] = ACTIONS(4182), - [anon_sym_DQUOTE] = ACTIONS(4182), - [sym_true] = ACTIONS(4180), - [sym_false] = ACTIONS(4180), - [anon_sym_NULL] = ACTIONS(4180), - [anon_sym_nullptr] = ACTIONS(4180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4180), - [anon_sym_decltype] = ACTIONS(4180), - [anon_sym_explicit] = ACTIONS(4180), - [anon_sym_export] = ACTIONS(4180), - [anon_sym_module] = ACTIONS(4180), - [anon_sym_import] = ACTIONS(4180), - [anon_sym_template] = ACTIONS(4180), - [anon_sym_operator] = ACTIONS(4180), - [anon_sym_try] = ACTIONS(4180), - [anon_sym_delete] = ACTIONS(4180), - [anon_sym_throw] = ACTIONS(4180), - [anon_sym_namespace] = ACTIONS(4180), - [anon_sym_static_assert] = ACTIONS(4180), - [anon_sym_concept] = ACTIONS(4180), - [anon_sym_co_return] = ACTIONS(4180), - [anon_sym_co_yield] = ACTIONS(4180), - [anon_sym_R_DQUOTE] = ACTIONS(4182), - [anon_sym_LR_DQUOTE] = ACTIONS(4182), - [anon_sym_uR_DQUOTE] = ACTIONS(4182), - [anon_sym_UR_DQUOTE] = ACTIONS(4182), - [anon_sym_u8R_DQUOTE] = ACTIONS(4182), - [anon_sym_co_await] = ACTIONS(4180), - [anon_sym_new] = ACTIONS(4180), - [anon_sym_requires] = ACTIONS(4180), - [anon_sym_CARET_CARET] = ACTIONS(4182), - [anon_sym_LBRACK_COLON] = ACTIONS(4182), - [sym_this] = ACTIONS(4180), + [STATE(913)] = { + [ts_builtin_sym_end] = ACTIONS(3736), + [sym_identifier] = ACTIONS(3734), + [aux_sym_preproc_include_token1] = ACTIONS(3734), + [aux_sym_preproc_def_token1] = ACTIONS(3734), + [aux_sym_preproc_if_token1] = ACTIONS(3734), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3734), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3734), + [sym_preproc_directive] = ACTIONS(3734), + [anon_sym_LPAREN2] = ACTIONS(3736), + [anon_sym_BANG] = ACTIONS(3736), + [anon_sym_TILDE] = ACTIONS(3736), + [anon_sym_DASH] = ACTIONS(3734), + [anon_sym_PLUS] = ACTIONS(3734), + [anon_sym_STAR] = ACTIONS(3736), + [anon_sym_AMP_AMP] = ACTIONS(3736), + [anon_sym_AMP] = ACTIONS(3734), + [anon_sym_SEMI] = ACTIONS(3736), + [anon_sym___extension__] = ACTIONS(3734), + [anon_sym_typedef] = ACTIONS(3734), + [anon_sym_virtual] = ACTIONS(3734), + [anon_sym_extern] = ACTIONS(3734), + [anon_sym___attribute__] = ACTIONS(3734), + [anon_sym___attribute] = ACTIONS(3734), + [anon_sym_using] = ACTIONS(3734), + [anon_sym_COLON_COLON] = ACTIONS(3736), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3736), + [anon_sym___declspec] = ACTIONS(3734), + [anon_sym___based] = ACTIONS(3734), + [anon_sym___cdecl] = ACTIONS(3734), + [anon_sym___clrcall] = ACTIONS(3734), + [anon_sym___stdcall] = ACTIONS(3734), + [anon_sym___fastcall] = ACTIONS(3734), + [anon_sym___thiscall] = ACTIONS(3734), + [anon_sym___vectorcall] = ACTIONS(3734), + [anon_sym_LBRACE] = ACTIONS(3736), + [anon_sym_signed] = ACTIONS(3734), + [anon_sym_unsigned] = ACTIONS(3734), + [anon_sym_long] = ACTIONS(3734), + [anon_sym_short] = ACTIONS(3734), + [anon_sym_LBRACK] = ACTIONS(3734), + [anon_sym_static] = ACTIONS(3734), + [anon_sym_register] = ACTIONS(3734), + [anon_sym_inline] = ACTIONS(3734), + [anon_sym___inline] = ACTIONS(3734), + [anon_sym___inline__] = ACTIONS(3734), + [anon_sym___forceinline] = ACTIONS(3734), + [anon_sym_thread_local] = ACTIONS(3734), + [anon_sym___thread] = ACTIONS(3734), + [anon_sym_const] = ACTIONS(3734), + [anon_sym_constexpr] = ACTIONS(3734), + [anon_sym_volatile] = ACTIONS(3734), + [anon_sym_restrict] = ACTIONS(3734), + [anon_sym___restrict__] = ACTIONS(3734), + [anon_sym__Atomic] = ACTIONS(3734), + [anon_sym__Noreturn] = ACTIONS(3734), + [anon_sym_noreturn] = ACTIONS(3734), + [anon_sym__Nonnull] = ACTIONS(3734), + [anon_sym_mutable] = ACTIONS(3734), + [anon_sym_constinit] = ACTIONS(3734), + [anon_sym_consteval] = ACTIONS(3734), + [anon_sym_alignas] = ACTIONS(3734), + [anon_sym__Alignas] = ACTIONS(3734), + [sym_primitive_type] = ACTIONS(3734), + [anon_sym_enum] = ACTIONS(3734), + [anon_sym_class] = ACTIONS(3734), + [anon_sym_struct] = ACTIONS(3734), + [anon_sym_union] = ACTIONS(3734), + [anon_sym_if] = ACTIONS(3734), + [anon_sym_switch] = ACTIONS(3734), + [anon_sym_case] = ACTIONS(3734), + [anon_sym_default] = ACTIONS(3734), + [anon_sym_while] = ACTIONS(3734), + [anon_sym_do] = ACTIONS(3734), + [anon_sym_for] = ACTIONS(3734), + [anon_sym_return] = ACTIONS(3734), + [anon_sym_break] = ACTIONS(3734), + [anon_sym_continue] = ACTIONS(3734), + [anon_sym_goto] = ACTIONS(3734), + [anon_sym_not] = ACTIONS(3734), + [anon_sym_compl] = ACTIONS(3734), + [anon_sym_DASH_DASH] = ACTIONS(3736), + [anon_sym_PLUS_PLUS] = ACTIONS(3736), + [anon_sym_sizeof] = ACTIONS(3734), + [anon_sym___alignof__] = ACTIONS(3734), + [anon_sym___alignof] = ACTIONS(3734), + [anon_sym__alignof] = ACTIONS(3734), + [anon_sym_alignof] = ACTIONS(3734), + [anon_sym__Alignof] = ACTIONS(3734), + [anon_sym_offsetof] = ACTIONS(3734), + [anon_sym__Generic] = ACTIONS(3734), + [anon_sym_typename] = ACTIONS(3734), + [anon_sym_asm] = ACTIONS(3734), + [anon_sym___asm__] = ACTIONS(3734), + [anon_sym___asm] = ACTIONS(3734), + [sym_number_literal] = ACTIONS(3736), + [anon_sym_L_SQUOTE] = ACTIONS(3736), + [anon_sym_u_SQUOTE] = ACTIONS(3736), + [anon_sym_U_SQUOTE] = ACTIONS(3736), + [anon_sym_u8_SQUOTE] = ACTIONS(3736), + [anon_sym_SQUOTE] = ACTIONS(3736), + [anon_sym_L_DQUOTE] = ACTIONS(3736), + [anon_sym_u_DQUOTE] = ACTIONS(3736), + [anon_sym_U_DQUOTE] = ACTIONS(3736), + [anon_sym_u8_DQUOTE] = ACTIONS(3736), + [anon_sym_DQUOTE] = ACTIONS(3736), + [sym_true] = ACTIONS(3734), + [sym_false] = ACTIONS(3734), + [anon_sym_NULL] = ACTIONS(3734), + [anon_sym_nullptr] = ACTIONS(3734), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3734), + [anon_sym_decltype] = ACTIONS(3734), + [anon_sym_explicit] = ACTIONS(3734), + [anon_sym_export] = ACTIONS(3734), + [anon_sym_module] = ACTIONS(3734), + [anon_sym_import] = ACTIONS(3734), + [anon_sym_template] = ACTIONS(3734), + [anon_sym_operator] = ACTIONS(3734), + [anon_sym_try] = ACTIONS(3734), + [anon_sym_delete] = ACTIONS(3734), + [anon_sym_throw] = ACTIONS(3734), + [anon_sym_namespace] = ACTIONS(3734), + [anon_sym_static_assert] = ACTIONS(3734), + [anon_sym_concept] = ACTIONS(3734), + [anon_sym_co_return] = ACTIONS(3734), + [anon_sym_co_yield] = ACTIONS(3734), + [anon_sym_R_DQUOTE] = ACTIONS(3736), + [anon_sym_LR_DQUOTE] = ACTIONS(3736), + [anon_sym_uR_DQUOTE] = ACTIONS(3736), + [anon_sym_UR_DQUOTE] = ACTIONS(3736), + [anon_sym_u8R_DQUOTE] = ACTIONS(3736), + [anon_sym_co_await] = ACTIONS(3734), + [anon_sym_new] = ACTIONS(3734), + [anon_sym_requires] = ACTIONS(3734), + [anon_sym_CARET_CARET] = ACTIONS(3736), + [anon_sym_LBRACK_COLON] = ACTIONS(3736), + [sym_this] = ACTIONS(3734), }, - [STATE(927)] = { - [ts_builtin_sym_end] = ACTIONS(4186), - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_include_token1] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_BANG] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_DASH] = ACTIONS(4184), - [anon_sym_PLUS] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym___cdecl] = ACTIONS(4184), - [anon_sym___clrcall] = ACTIONS(4184), - [anon_sym___stdcall] = ACTIONS(4184), - [anon_sym___fastcall] = ACTIONS(4184), - [anon_sym___thiscall] = ACTIONS(4184), - [anon_sym___vectorcall] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(4186), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_if] = ACTIONS(4184), - [anon_sym_switch] = ACTIONS(4184), - [anon_sym_case] = ACTIONS(4184), - [anon_sym_default] = ACTIONS(4184), - [anon_sym_while] = ACTIONS(4184), - [anon_sym_do] = ACTIONS(4184), - [anon_sym_for] = ACTIONS(4184), - [anon_sym_return] = ACTIONS(4184), - [anon_sym_break] = ACTIONS(4184), - [anon_sym_continue] = ACTIONS(4184), - [anon_sym_goto] = ACTIONS(4184), - [anon_sym_not] = ACTIONS(4184), - [anon_sym_compl] = ACTIONS(4184), - [anon_sym_DASH_DASH] = ACTIONS(4186), - [anon_sym_PLUS_PLUS] = ACTIONS(4186), - [anon_sym_sizeof] = ACTIONS(4184), - [anon_sym___alignof__] = ACTIONS(4184), - [anon_sym___alignof] = ACTIONS(4184), - [anon_sym__alignof] = ACTIONS(4184), - [anon_sym_alignof] = ACTIONS(4184), - [anon_sym__Alignof] = ACTIONS(4184), - [anon_sym_offsetof] = ACTIONS(4184), - [anon_sym__Generic] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [anon_sym_asm] = ACTIONS(4184), - [anon_sym___asm__] = ACTIONS(4184), - [anon_sym___asm] = ACTIONS(4184), - [sym_number_literal] = ACTIONS(4186), - [anon_sym_L_SQUOTE] = ACTIONS(4186), - [anon_sym_u_SQUOTE] = ACTIONS(4186), - [anon_sym_U_SQUOTE] = ACTIONS(4186), - [anon_sym_u8_SQUOTE] = ACTIONS(4186), - [anon_sym_SQUOTE] = ACTIONS(4186), - [anon_sym_L_DQUOTE] = ACTIONS(4186), - [anon_sym_u_DQUOTE] = ACTIONS(4186), - [anon_sym_U_DQUOTE] = ACTIONS(4186), - [anon_sym_u8_DQUOTE] = ACTIONS(4186), - [anon_sym_DQUOTE] = ACTIONS(4186), - [sym_true] = ACTIONS(4184), - [sym_false] = ACTIONS(4184), - [anon_sym_NULL] = ACTIONS(4184), - [anon_sym_nullptr] = ACTIONS(4184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_export] = ACTIONS(4184), - [anon_sym_module] = ACTIONS(4184), - [anon_sym_import] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_try] = ACTIONS(4184), - [anon_sym_delete] = ACTIONS(4184), - [anon_sym_throw] = ACTIONS(4184), - [anon_sym_namespace] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_concept] = ACTIONS(4184), - [anon_sym_co_return] = ACTIONS(4184), - [anon_sym_co_yield] = ACTIONS(4184), - [anon_sym_R_DQUOTE] = ACTIONS(4186), - [anon_sym_LR_DQUOTE] = ACTIONS(4186), - [anon_sym_uR_DQUOTE] = ACTIONS(4186), - [anon_sym_UR_DQUOTE] = ACTIONS(4186), - [anon_sym_u8R_DQUOTE] = ACTIONS(4186), - [anon_sym_co_await] = ACTIONS(4184), - [anon_sym_new] = ACTIONS(4184), - [anon_sym_requires] = ACTIONS(4184), - [anon_sym_CARET_CARET] = ACTIONS(4186), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), - [sym_this] = ACTIONS(4184), + [STATE(914)] = { + [ts_builtin_sym_end] = ACTIONS(3740), + [sym_identifier] = ACTIONS(3738), + [aux_sym_preproc_include_token1] = ACTIONS(3738), + [aux_sym_preproc_def_token1] = ACTIONS(3738), + [aux_sym_preproc_if_token1] = ACTIONS(3738), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3738), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3738), + [sym_preproc_directive] = ACTIONS(3738), + [anon_sym_LPAREN2] = ACTIONS(3740), + [anon_sym_BANG] = ACTIONS(3740), + [anon_sym_TILDE] = ACTIONS(3740), + [anon_sym_DASH] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(3738), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_AMP_AMP] = ACTIONS(3740), + [anon_sym_AMP] = ACTIONS(3738), + [anon_sym_SEMI] = ACTIONS(3740), + [anon_sym___extension__] = ACTIONS(3738), + [anon_sym_typedef] = ACTIONS(3738), + [anon_sym_virtual] = ACTIONS(3738), + [anon_sym_extern] = ACTIONS(3738), + [anon_sym___attribute__] = ACTIONS(3738), + [anon_sym___attribute] = ACTIONS(3738), + [anon_sym_using] = ACTIONS(3738), + [anon_sym_COLON_COLON] = ACTIONS(3740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3740), + [anon_sym___declspec] = ACTIONS(3738), + [anon_sym___based] = ACTIONS(3738), + [anon_sym___cdecl] = ACTIONS(3738), + [anon_sym___clrcall] = ACTIONS(3738), + [anon_sym___stdcall] = ACTIONS(3738), + [anon_sym___fastcall] = ACTIONS(3738), + [anon_sym___thiscall] = ACTIONS(3738), + [anon_sym___vectorcall] = ACTIONS(3738), + [anon_sym_LBRACE] = ACTIONS(3740), + [anon_sym_signed] = ACTIONS(3738), + [anon_sym_unsigned] = ACTIONS(3738), + [anon_sym_long] = ACTIONS(3738), + [anon_sym_short] = ACTIONS(3738), + [anon_sym_LBRACK] = ACTIONS(3738), + [anon_sym_static] = ACTIONS(3738), + [anon_sym_register] = ACTIONS(3738), + [anon_sym_inline] = ACTIONS(3738), + [anon_sym___inline] = ACTIONS(3738), + [anon_sym___inline__] = ACTIONS(3738), + [anon_sym___forceinline] = ACTIONS(3738), + [anon_sym_thread_local] = ACTIONS(3738), + [anon_sym___thread] = ACTIONS(3738), + [anon_sym_const] = ACTIONS(3738), + [anon_sym_constexpr] = ACTIONS(3738), + [anon_sym_volatile] = ACTIONS(3738), + [anon_sym_restrict] = ACTIONS(3738), + [anon_sym___restrict__] = ACTIONS(3738), + [anon_sym__Atomic] = ACTIONS(3738), + [anon_sym__Noreturn] = ACTIONS(3738), + [anon_sym_noreturn] = ACTIONS(3738), + [anon_sym__Nonnull] = ACTIONS(3738), + [anon_sym_mutable] = ACTIONS(3738), + [anon_sym_constinit] = ACTIONS(3738), + [anon_sym_consteval] = ACTIONS(3738), + [anon_sym_alignas] = ACTIONS(3738), + [anon_sym__Alignas] = ACTIONS(3738), + [sym_primitive_type] = ACTIONS(3738), + [anon_sym_enum] = ACTIONS(3738), + [anon_sym_class] = ACTIONS(3738), + [anon_sym_struct] = ACTIONS(3738), + [anon_sym_union] = ACTIONS(3738), + [anon_sym_if] = ACTIONS(3738), + [anon_sym_switch] = ACTIONS(3738), + [anon_sym_case] = ACTIONS(3738), + [anon_sym_default] = ACTIONS(3738), + [anon_sym_while] = ACTIONS(3738), + [anon_sym_do] = ACTIONS(3738), + [anon_sym_for] = ACTIONS(3738), + [anon_sym_return] = ACTIONS(3738), + [anon_sym_break] = ACTIONS(3738), + [anon_sym_continue] = ACTIONS(3738), + [anon_sym_goto] = ACTIONS(3738), + [anon_sym_not] = ACTIONS(3738), + [anon_sym_compl] = ACTIONS(3738), + [anon_sym_DASH_DASH] = ACTIONS(3740), + [anon_sym_PLUS_PLUS] = ACTIONS(3740), + [anon_sym_sizeof] = ACTIONS(3738), + [anon_sym___alignof__] = ACTIONS(3738), + [anon_sym___alignof] = ACTIONS(3738), + [anon_sym__alignof] = ACTIONS(3738), + [anon_sym_alignof] = ACTIONS(3738), + [anon_sym__Alignof] = ACTIONS(3738), + [anon_sym_offsetof] = ACTIONS(3738), + [anon_sym__Generic] = ACTIONS(3738), + [anon_sym_typename] = ACTIONS(3738), + [anon_sym_asm] = ACTIONS(3738), + [anon_sym___asm__] = ACTIONS(3738), + [anon_sym___asm] = ACTIONS(3738), + [sym_number_literal] = ACTIONS(3740), + [anon_sym_L_SQUOTE] = ACTIONS(3740), + [anon_sym_u_SQUOTE] = ACTIONS(3740), + [anon_sym_U_SQUOTE] = ACTIONS(3740), + [anon_sym_u8_SQUOTE] = ACTIONS(3740), + [anon_sym_SQUOTE] = ACTIONS(3740), + [anon_sym_L_DQUOTE] = ACTIONS(3740), + [anon_sym_u_DQUOTE] = ACTIONS(3740), + [anon_sym_U_DQUOTE] = ACTIONS(3740), + [anon_sym_u8_DQUOTE] = ACTIONS(3740), + [anon_sym_DQUOTE] = ACTIONS(3740), + [sym_true] = ACTIONS(3738), + [sym_false] = ACTIONS(3738), + [anon_sym_NULL] = ACTIONS(3738), + [anon_sym_nullptr] = ACTIONS(3738), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3738), + [anon_sym_decltype] = ACTIONS(3738), + [anon_sym_explicit] = ACTIONS(3738), + [anon_sym_export] = ACTIONS(3738), + [anon_sym_module] = ACTIONS(3738), + [anon_sym_import] = ACTIONS(3738), + [anon_sym_template] = ACTIONS(3738), + [anon_sym_operator] = ACTIONS(3738), + [anon_sym_try] = ACTIONS(3738), + [anon_sym_delete] = ACTIONS(3738), + [anon_sym_throw] = ACTIONS(3738), + [anon_sym_namespace] = ACTIONS(3738), + [anon_sym_static_assert] = ACTIONS(3738), + [anon_sym_concept] = ACTIONS(3738), + [anon_sym_co_return] = ACTIONS(3738), + [anon_sym_co_yield] = ACTIONS(3738), + [anon_sym_R_DQUOTE] = ACTIONS(3740), + [anon_sym_LR_DQUOTE] = ACTIONS(3740), + [anon_sym_uR_DQUOTE] = ACTIONS(3740), + [anon_sym_UR_DQUOTE] = ACTIONS(3740), + [anon_sym_u8R_DQUOTE] = ACTIONS(3740), + [anon_sym_co_await] = ACTIONS(3738), + [anon_sym_new] = ACTIONS(3738), + [anon_sym_requires] = ACTIONS(3738), + [anon_sym_CARET_CARET] = ACTIONS(3740), + [anon_sym_LBRACK_COLON] = ACTIONS(3740), + [sym_this] = ACTIONS(3738), }, - [STATE(928)] = { - [ts_builtin_sym_end] = ACTIONS(4474), - [sym_identifier] = ACTIONS(4472), - [aux_sym_preproc_include_token1] = ACTIONS(4472), - [aux_sym_preproc_def_token1] = ACTIONS(4472), - [aux_sym_preproc_if_token1] = ACTIONS(4472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), - [sym_preproc_directive] = ACTIONS(4472), - [anon_sym_LPAREN2] = ACTIONS(4474), - [anon_sym_BANG] = ACTIONS(4474), - [anon_sym_TILDE] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4472), - [anon_sym_STAR] = ACTIONS(4474), - [anon_sym_AMP_AMP] = ACTIONS(4474), - [anon_sym_AMP] = ACTIONS(4472), - [anon_sym_SEMI] = ACTIONS(4474), - [anon_sym___extension__] = ACTIONS(4472), - [anon_sym_typedef] = ACTIONS(4472), - [anon_sym_virtual] = ACTIONS(4472), - [anon_sym_extern] = ACTIONS(4472), - [anon_sym___attribute__] = ACTIONS(4472), - [anon_sym___attribute] = ACTIONS(4472), - [anon_sym_using] = ACTIONS(4472), - [anon_sym_COLON_COLON] = ACTIONS(4474), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4474), - [anon_sym___declspec] = ACTIONS(4472), - [anon_sym___based] = ACTIONS(4472), - [anon_sym___cdecl] = ACTIONS(4472), - [anon_sym___clrcall] = ACTIONS(4472), - [anon_sym___stdcall] = ACTIONS(4472), - [anon_sym___fastcall] = ACTIONS(4472), - [anon_sym___thiscall] = ACTIONS(4472), - [anon_sym___vectorcall] = ACTIONS(4472), - [anon_sym_LBRACE] = ACTIONS(4474), - [anon_sym_signed] = ACTIONS(4472), - [anon_sym_unsigned] = ACTIONS(4472), - [anon_sym_long] = ACTIONS(4472), - [anon_sym_short] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_static] = ACTIONS(4472), - [anon_sym_register] = ACTIONS(4472), - [anon_sym_inline] = ACTIONS(4472), - [anon_sym___inline] = ACTIONS(4472), - [anon_sym___inline__] = ACTIONS(4472), - [anon_sym___forceinline] = ACTIONS(4472), - [anon_sym_thread_local] = ACTIONS(4472), - [anon_sym___thread] = ACTIONS(4472), - [anon_sym_const] = ACTIONS(4472), - [anon_sym_constexpr] = ACTIONS(4472), - [anon_sym_volatile] = ACTIONS(4472), - [anon_sym_restrict] = ACTIONS(4472), - [anon_sym___restrict__] = ACTIONS(4472), - [anon_sym__Atomic] = ACTIONS(4472), - [anon_sym__Noreturn] = ACTIONS(4472), - [anon_sym_noreturn] = ACTIONS(4472), - [anon_sym__Nonnull] = ACTIONS(4472), - [anon_sym_mutable] = ACTIONS(4472), - [anon_sym_constinit] = ACTIONS(4472), - [anon_sym_consteval] = ACTIONS(4472), - [anon_sym_alignas] = ACTIONS(4472), - [anon_sym__Alignas] = ACTIONS(4472), - [sym_primitive_type] = ACTIONS(4472), - [anon_sym_enum] = ACTIONS(4472), - [anon_sym_class] = ACTIONS(4472), - [anon_sym_struct] = ACTIONS(4472), - [anon_sym_union] = ACTIONS(4472), - [anon_sym_if] = ACTIONS(4472), - [anon_sym_switch] = ACTIONS(4472), - [anon_sym_case] = ACTIONS(4472), - [anon_sym_default] = ACTIONS(4472), - [anon_sym_while] = ACTIONS(4472), - [anon_sym_do] = ACTIONS(4472), - [anon_sym_for] = ACTIONS(4472), - [anon_sym_return] = ACTIONS(4472), - [anon_sym_break] = ACTIONS(4472), - [anon_sym_continue] = ACTIONS(4472), - [anon_sym_goto] = ACTIONS(4472), - [anon_sym_not] = ACTIONS(4472), - [anon_sym_compl] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4474), - [anon_sym_PLUS_PLUS] = ACTIONS(4474), - [anon_sym_sizeof] = ACTIONS(4472), - [anon_sym___alignof__] = ACTIONS(4472), - [anon_sym___alignof] = ACTIONS(4472), - [anon_sym__alignof] = ACTIONS(4472), - [anon_sym_alignof] = ACTIONS(4472), - [anon_sym__Alignof] = ACTIONS(4472), - [anon_sym_offsetof] = ACTIONS(4472), - [anon_sym__Generic] = ACTIONS(4472), - [anon_sym_typename] = ACTIONS(4472), - [anon_sym_asm] = ACTIONS(4472), - [anon_sym___asm__] = ACTIONS(4472), - [anon_sym___asm] = ACTIONS(4472), - [sym_number_literal] = ACTIONS(4474), - [anon_sym_L_SQUOTE] = ACTIONS(4474), - [anon_sym_u_SQUOTE] = ACTIONS(4474), - [anon_sym_U_SQUOTE] = ACTIONS(4474), - [anon_sym_u8_SQUOTE] = ACTIONS(4474), - [anon_sym_SQUOTE] = ACTIONS(4474), - [anon_sym_L_DQUOTE] = ACTIONS(4474), - [anon_sym_u_DQUOTE] = ACTIONS(4474), - [anon_sym_U_DQUOTE] = ACTIONS(4474), - [anon_sym_u8_DQUOTE] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(4474), - [sym_true] = ACTIONS(4472), - [sym_false] = ACTIONS(4472), - [anon_sym_NULL] = ACTIONS(4472), - [anon_sym_nullptr] = ACTIONS(4472), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4472), - [anon_sym_decltype] = ACTIONS(4472), - [anon_sym_explicit] = ACTIONS(4472), - [anon_sym_export] = ACTIONS(4472), - [anon_sym_module] = ACTIONS(4472), - [anon_sym_import] = ACTIONS(4472), - [anon_sym_template] = ACTIONS(4472), - [anon_sym_operator] = ACTIONS(4472), - [anon_sym_try] = ACTIONS(4472), - [anon_sym_delete] = ACTIONS(4472), - [anon_sym_throw] = ACTIONS(4472), - [anon_sym_namespace] = ACTIONS(4472), - [anon_sym_static_assert] = ACTIONS(4472), - [anon_sym_concept] = ACTIONS(4472), - [anon_sym_co_return] = ACTIONS(4472), - [anon_sym_co_yield] = ACTIONS(4472), - [anon_sym_R_DQUOTE] = ACTIONS(4474), - [anon_sym_LR_DQUOTE] = ACTIONS(4474), - [anon_sym_uR_DQUOTE] = ACTIONS(4474), - [anon_sym_UR_DQUOTE] = ACTIONS(4474), - [anon_sym_u8R_DQUOTE] = ACTIONS(4474), - [anon_sym_co_await] = ACTIONS(4472), - [anon_sym_new] = ACTIONS(4472), - [anon_sym_requires] = ACTIONS(4472), - [anon_sym_CARET_CARET] = ACTIONS(4474), - [anon_sym_LBRACK_COLON] = ACTIONS(4474), - [sym_this] = ACTIONS(4472), + [STATE(915)] = { + [ts_builtin_sym_end] = ACTIONS(4323), + [sym_identifier] = ACTIONS(4321), + [aux_sym_preproc_include_token1] = ACTIONS(4321), + [aux_sym_preproc_def_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token1] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4321), + [sym_preproc_directive] = ACTIONS(4321), + [anon_sym_LPAREN2] = ACTIONS(4323), + [anon_sym_BANG] = ACTIONS(4323), + [anon_sym_TILDE] = ACTIONS(4323), + [anon_sym_DASH] = ACTIONS(4321), + [anon_sym_PLUS] = ACTIONS(4321), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_AMP] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym___extension__] = ACTIONS(4321), + [anon_sym_typedef] = ACTIONS(4321), + [anon_sym_virtual] = ACTIONS(4321), + [anon_sym_extern] = ACTIONS(4321), + [anon_sym___attribute__] = ACTIONS(4321), + [anon_sym___attribute] = ACTIONS(4321), + [anon_sym_using] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4323), + [anon_sym___declspec] = ACTIONS(4321), + [anon_sym___based] = ACTIONS(4321), + [anon_sym___cdecl] = ACTIONS(4321), + [anon_sym___clrcall] = ACTIONS(4321), + [anon_sym___stdcall] = ACTIONS(4321), + [anon_sym___fastcall] = ACTIONS(4321), + [anon_sym___thiscall] = ACTIONS(4321), + [anon_sym___vectorcall] = ACTIONS(4321), + [anon_sym_LBRACE] = ACTIONS(4323), + [anon_sym_signed] = ACTIONS(4321), + [anon_sym_unsigned] = ACTIONS(4321), + [anon_sym_long] = ACTIONS(4321), + [anon_sym_short] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_static] = ACTIONS(4321), + [anon_sym_register] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym___inline] = ACTIONS(4321), + [anon_sym___inline__] = ACTIONS(4321), + [anon_sym___forceinline] = ACTIONS(4321), + [anon_sym_thread_local] = ACTIONS(4321), + [anon_sym___thread] = ACTIONS(4321), + [anon_sym_const] = ACTIONS(4321), + [anon_sym_constexpr] = ACTIONS(4321), + [anon_sym_volatile] = ACTIONS(4321), + [anon_sym_restrict] = ACTIONS(4321), + [anon_sym___restrict__] = ACTIONS(4321), + [anon_sym__Atomic] = ACTIONS(4321), + [anon_sym__Noreturn] = ACTIONS(4321), + [anon_sym_noreturn] = ACTIONS(4321), + [anon_sym__Nonnull] = ACTIONS(4321), + [anon_sym_mutable] = ACTIONS(4321), + [anon_sym_constinit] = ACTIONS(4321), + [anon_sym_consteval] = ACTIONS(4321), + [anon_sym_alignas] = ACTIONS(4321), + [anon_sym__Alignas] = ACTIONS(4321), + [sym_primitive_type] = ACTIONS(4321), + [anon_sym_enum] = ACTIONS(4321), + [anon_sym_class] = ACTIONS(4321), + [anon_sym_struct] = ACTIONS(4321), + [anon_sym_union] = ACTIONS(4321), + [anon_sym_if] = ACTIONS(4321), + [anon_sym_switch] = ACTIONS(4321), + [anon_sym_case] = ACTIONS(4321), + [anon_sym_default] = ACTIONS(4321), + [anon_sym_while] = ACTIONS(4321), + [anon_sym_do] = ACTIONS(4321), + [anon_sym_for] = ACTIONS(4321), + [anon_sym_return] = ACTIONS(4321), + [anon_sym_break] = ACTIONS(4321), + [anon_sym_continue] = ACTIONS(4321), + [anon_sym_goto] = ACTIONS(4321), + [anon_sym_not] = ACTIONS(4321), + [anon_sym_compl] = ACTIONS(4321), + [anon_sym_DASH_DASH] = ACTIONS(4323), + [anon_sym_PLUS_PLUS] = ACTIONS(4323), + [anon_sym_sizeof] = ACTIONS(4321), + [anon_sym___alignof__] = ACTIONS(4321), + [anon_sym___alignof] = ACTIONS(4321), + [anon_sym__alignof] = ACTIONS(4321), + [anon_sym_alignof] = ACTIONS(4321), + [anon_sym__Alignof] = ACTIONS(4321), + [anon_sym_offsetof] = ACTIONS(4321), + [anon_sym__Generic] = ACTIONS(4321), + [anon_sym_typename] = ACTIONS(4321), + [anon_sym_asm] = ACTIONS(4321), + [anon_sym___asm__] = ACTIONS(4321), + [anon_sym___asm] = ACTIONS(4321), + [sym_number_literal] = ACTIONS(4323), + [anon_sym_L_SQUOTE] = ACTIONS(4323), + [anon_sym_u_SQUOTE] = ACTIONS(4323), + [anon_sym_U_SQUOTE] = ACTIONS(4323), + [anon_sym_u8_SQUOTE] = ACTIONS(4323), + [anon_sym_SQUOTE] = ACTIONS(4323), + [anon_sym_L_DQUOTE] = ACTIONS(4323), + [anon_sym_u_DQUOTE] = ACTIONS(4323), + [anon_sym_U_DQUOTE] = ACTIONS(4323), + [anon_sym_u8_DQUOTE] = ACTIONS(4323), + [anon_sym_DQUOTE] = ACTIONS(4323), + [sym_true] = ACTIONS(4321), + [sym_false] = ACTIONS(4321), + [anon_sym_NULL] = ACTIONS(4321), + [anon_sym_nullptr] = ACTIONS(4321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4321), + [anon_sym_decltype] = ACTIONS(4321), + [anon_sym_explicit] = ACTIONS(4321), + [anon_sym_export] = ACTIONS(4321), + [anon_sym_module] = ACTIONS(4321), + [anon_sym_import] = ACTIONS(4321), + [anon_sym_template] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_try] = ACTIONS(4321), + [anon_sym_delete] = ACTIONS(4321), + [anon_sym_throw] = ACTIONS(4321), + [anon_sym_namespace] = ACTIONS(4321), + [anon_sym_static_assert] = ACTIONS(4321), + [anon_sym_concept] = ACTIONS(4321), + [anon_sym_co_return] = ACTIONS(4321), + [anon_sym_co_yield] = ACTIONS(4321), + [anon_sym_R_DQUOTE] = ACTIONS(4323), + [anon_sym_LR_DQUOTE] = ACTIONS(4323), + [anon_sym_uR_DQUOTE] = ACTIONS(4323), + [anon_sym_UR_DQUOTE] = ACTIONS(4323), + [anon_sym_u8R_DQUOTE] = ACTIONS(4323), + [anon_sym_co_await] = ACTIONS(4321), + [anon_sym_new] = ACTIONS(4321), + [anon_sym_requires] = ACTIONS(4321), + [anon_sym_CARET_CARET] = ACTIONS(4323), + [anon_sym_LBRACK_COLON] = ACTIONS(4323), + [sym_this] = ACTIONS(4321), }, - [STATE(929)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(916)] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4775), + [anon_sym_RBRACE] = ACTIONS(4748), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -192103,7 +190296,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -192113,446 +190306,1975 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(930)] = { - [ts_builtin_sym_end] = ACTIONS(4478), - [sym_identifier] = ACTIONS(4476), - [aux_sym_preproc_include_token1] = ACTIONS(4476), - [aux_sym_preproc_def_token1] = ACTIONS(4476), - [aux_sym_preproc_if_token1] = ACTIONS(4476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4476), - [sym_preproc_directive] = ACTIONS(4476), - [anon_sym_LPAREN2] = ACTIONS(4478), - [anon_sym_BANG] = ACTIONS(4478), - [anon_sym_TILDE] = ACTIONS(4478), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_AMP_AMP] = ACTIONS(4478), - [anon_sym_AMP] = ACTIONS(4476), - [anon_sym_SEMI] = ACTIONS(4478), - [anon_sym___extension__] = ACTIONS(4476), - [anon_sym_typedef] = ACTIONS(4476), - [anon_sym_virtual] = ACTIONS(4476), - [anon_sym_extern] = ACTIONS(4476), - [anon_sym___attribute__] = ACTIONS(4476), - [anon_sym___attribute] = ACTIONS(4476), - [anon_sym_using] = ACTIONS(4476), - [anon_sym_COLON_COLON] = ACTIONS(4478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), - [anon_sym___declspec] = ACTIONS(4476), - [anon_sym___based] = ACTIONS(4476), - [anon_sym___cdecl] = ACTIONS(4476), - [anon_sym___clrcall] = ACTIONS(4476), - [anon_sym___stdcall] = ACTIONS(4476), - [anon_sym___fastcall] = ACTIONS(4476), - [anon_sym___thiscall] = ACTIONS(4476), - [anon_sym___vectorcall] = ACTIONS(4476), - [anon_sym_LBRACE] = ACTIONS(4478), - [anon_sym_signed] = ACTIONS(4476), - [anon_sym_unsigned] = ACTIONS(4476), - [anon_sym_long] = ACTIONS(4476), - [anon_sym_short] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_static] = ACTIONS(4476), - [anon_sym_register] = ACTIONS(4476), - [anon_sym_inline] = ACTIONS(4476), - [anon_sym___inline] = ACTIONS(4476), - [anon_sym___inline__] = ACTIONS(4476), - [anon_sym___forceinline] = ACTIONS(4476), - [anon_sym_thread_local] = ACTIONS(4476), - [anon_sym___thread] = ACTIONS(4476), - [anon_sym_const] = ACTIONS(4476), - [anon_sym_constexpr] = ACTIONS(4476), - [anon_sym_volatile] = ACTIONS(4476), - [anon_sym_restrict] = ACTIONS(4476), - [anon_sym___restrict__] = ACTIONS(4476), - [anon_sym__Atomic] = ACTIONS(4476), - [anon_sym__Noreturn] = ACTIONS(4476), - [anon_sym_noreturn] = ACTIONS(4476), - [anon_sym__Nonnull] = ACTIONS(4476), - [anon_sym_mutable] = ACTIONS(4476), - [anon_sym_constinit] = ACTIONS(4476), - [anon_sym_consteval] = ACTIONS(4476), - [anon_sym_alignas] = ACTIONS(4476), - [anon_sym__Alignas] = ACTIONS(4476), - [sym_primitive_type] = ACTIONS(4476), - [anon_sym_enum] = ACTIONS(4476), - [anon_sym_class] = ACTIONS(4476), - [anon_sym_struct] = ACTIONS(4476), - [anon_sym_union] = ACTIONS(4476), - [anon_sym_if] = ACTIONS(4476), - [anon_sym_switch] = ACTIONS(4476), - [anon_sym_case] = ACTIONS(4476), - [anon_sym_default] = ACTIONS(4476), - [anon_sym_while] = ACTIONS(4476), - [anon_sym_do] = ACTIONS(4476), - [anon_sym_for] = ACTIONS(4476), - [anon_sym_return] = ACTIONS(4476), - [anon_sym_break] = ACTIONS(4476), - [anon_sym_continue] = ACTIONS(4476), - [anon_sym_goto] = ACTIONS(4476), - [anon_sym_not] = ACTIONS(4476), - [anon_sym_compl] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4478), - [anon_sym_sizeof] = ACTIONS(4476), - [anon_sym___alignof__] = ACTIONS(4476), - [anon_sym___alignof] = ACTIONS(4476), - [anon_sym__alignof] = ACTIONS(4476), - [anon_sym_alignof] = ACTIONS(4476), - [anon_sym__Alignof] = ACTIONS(4476), - [anon_sym_offsetof] = ACTIONS(4476), - [anon_sym__Generic] = ACTIONS(4476), - [anon_sym_typename] = ACTIONS(4476), - [anon_sym_asm] = ACTIONS(4476), - [anon_sym___asm__] = ACTIONS(4476), - [anon_sym___asm] = ACTIONS(4476), - [sym_number_literal] = ACTIONS(4478), - [anon_sym_L_SQUOTE] = ACTIONS(4478), - [anon_sym_u_SQUOTE] = ACTIONS(4478), - [anon_sym_U_SQUOTE] = ACTIONS(4478), - [anon_sym_u8_SQUOTE] = ACTIONS(4478), - [anon_sym_SQUOTE] = ACTIONS(4478), - [anon_sym_L_DQUOTE] = ACTIONS(4478), - [anon_sym_u_DQUOTE] = ACTIONS(4478), - [anon_sym_U_DQUOTE] = ACTIONS(4478), - [anon_sym_u8_DQUOTE] = ACTIONS(4478), - [anon_sym_DQUOTE] = ACTIONS(4478), - [sym_true] = ACTIONS(4476), - [sym_false] = ACTIONS(4476), - [anon_sym_NULL] = ACTIONS(4476), - [anon_sym_nullptr] = ACTIONS(4476), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4476), - [anon_sym_decltype] = ACTIONS(4476), - [anon_sym_explicit] = ACTIONS(4476), - [anon_sym_export] = ACTIONS(4476), - [anon_sym_module] = ACTIONS(4476), - [anon_sym_import] = ACTIONS(4476), - [anon_sym_template] = ACTIONS(4476), - [anon_sym_operator] = ACTIONS(4476), - [anon_sym_try] = ACTIONS(4476), - [anon_sym_delete] = ACTIONS(4476), - [anon_sym_throw] = ACTIONS(4476), - [anon_sym_namespace] = ACTIONS(4476), - [anon_sym_static_assert] = ACTIONS(4476), - [anon_sym_concept] = ACTIONS(4476), - [anon_sym_co_return] = ACTIONS(4476), - [anon_sym_co_yield] = ACTIONS(4476), - [anon_sym_R_DQUOTE] = ACTIONS(4478), - [anon_sym_LR_DQUOTE] = ACTIONS(4478), - [anon_sym_uR_DQUOTE] = ACTIONS(4478), - [anon_sym_UR_DQUOTE] = ACTIONS(4478), - [anon_sym_u8R_DQUOTE] = ACTIONS(4478), - [anon_sym_co_await] = ACTIONS(4476), - [anon_sym_new] = ACTIONS(4476), - [anon_sym_requires] = ACTIONS(4476), - [anon_sym_CARET_CARET] = ACTIONS(4478), - [anon_sym_LBRACK_COLON] = ACTIONS(4478), - [sym_this] = ACTIONS(4476), + [STATE(917)] = { + [ts_builtin_sym_end] = ACTIONS(3712), + [sym_identifier] = ACTIONS(3710), + [aux_sym_preproc_include_token1] = ACTIONS(3710), + [aux_sym_preproc_def_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token1] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3710), + [sym_preproc_directive] = ACTIONS(3710), + [anon_sym_LPAREN2] = ACTIONS(3712), + [anon_sym_BANG] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3712), + [anon_sym_DASH] = ACTIONS(3710), + [anon_sym_PLUS] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_AMP] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(3712), + [anon_sym___extension__] = ACTIONS(3710), + [anon_sym_typedef] = ACTIONS(3710), + [anon_sym_virtual] = ACTIONS(3710), + [anon_sym_extern] = ACTIONS(3710), + [anon_sym___attribute__] = ACTIONS(3710), + [anon_sym___attribute] = ACTIONS(3710), + [anon_sym_using] = ACTIONS(3710), + [anon_sym_COLON_COLON] = ACTIONS(3712), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3712), + [anon_sym___declspec] = ACTIONS(3710), + [anon_sym___based] = ACTIONS(3710), + [anon_sym___cdecl] = ACTIONS(3710), + [anon_sym___clrcall] = ACTIONS(3710), + [anon_sym___stdcall] = ACTIONS(3710), + [anon_sym___fastcall] = ACTIONS(3710), + [anon_sym___thiscall] = ACTIONS(3710), + [anon_sym___vectorcall] = ACTIONS(3710), + [anon_sym_LBRACE] = ACTIONS(3712), + [anon_sym_signed] = ACTIONS(3710), + [anon_sym_unsigned] = ACTIONS(3710), + [anon_sym_long] = ACTIONS(3710), + [anon_sym_short] = ACTIONS(3710), + [anon_sym_LBRACK] = ACTIONS(3710), + [anon_sym_static] = ACTIONS(3710), + [anon_sym_register] = ACTIONS(3710), + [anon_sym_inline] = ACTIONS(3710), + [anon_sym___inline] = ACTIONS(3710), + [anon_sym___inline__] = ACTIONS(3710), + [anon_sym___forceinline] = ACTIONS(3710), + [anon_sym_thread_local] = ACTIONS(3710), + [anon_sym___thread] = ACTIONS(3710), + [anon_sym_const] = ACTIONS(3710), + [anon_sym_constexpr] = ACTIONS(3710), + [anon_sym_volatile] = ACTIONS(3710), + [anon_sym_restrict] = ACTIONS(3710), + [anon_sym___restrict__] = ACTIONS(3710), + [anon_sym__Atomic] = ACTIONS(3710), + [anon_sym__Noreturn] = ACTIONS(3710), + [anon_sym_noreturn] = ACTIONS(3710), + [anon_sym__Nonnull] = ACTIONS(3710), + [anon_sym_mutable] = ACTIONS(3710), + [anon_sym_constinit] = ACTIONS(3710), + [anon_sym_consteval] = ACTIONS(3710), + [anon_sym_alignas] = ACTIONS(3710), + [anon_sym__Alignas] = ACTIONS(3710), + [sym_primitive_type] = ACTIONS(3710), + [anon_sym_enum] = ACTIONS(3710), + [anon_sym_class] = ACTIONS(3710), + [anon_sym_struct] = ACTIONS(3710), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_if] = ACTIONS(3710), + [anon_sym_switch] = ACTIONS(3710), + [anon_sym_case] = ACTIONS(3710), + [anon_sym_default] = ACTIONS(3710), + [anon_sym_while] = ACTIONS(3710), + [anon_sym_do] = ACTIONS(3710), + [anon_sym_for] = ACTIONS(3710), + [anon_sym_return] = ACTIONS(3710), + [anon_sym_break] = ACTIONS(3710), + [anon_sym_continue] = ACTIONS(3710), + [anon_sym_goto] = ACTIONS(3710), + [anon_sym_not] = ACTIONS(3710), + [anon_sym_compl] = ACTIONS(3710), + [anon_sym_DASH_DASH] = ACTIONS(3712), + [anon_sym_PLUS_PLUS] = ACTIONS(3712), + [anon_sym_sizeof] = ACTIONS(3710), + [anon_sym___alignof__] = ACTIONS(3710), + [anon_sym___alignof] = ACTIONS(3710), + [anon_sym__alignof] = ACTIONS(3710), + [anon_sym_alignof] = ACTIONS(3710), + [anon_sym__Alignof] = ACTIONS(3710), + [anon_sym_offsetof] = ACTIONS(3710), + [anon_sym__Generic] = ACTIONS(3710), + [anon_sym_typename] = ACTIONS(3710), + [anon_sym_asm] = ACTIONS(3710), + [anon_sym___asm__] = ACTIONS(3710), + [anon_sym___asm] = ACTIONS(3710), + [sym_number_literal] = ACTIONS(3712), + [anon_sym_L_SQUOTE] = ACTIONS(3712), + [anon_sym_u_SQUOTE] = ACTIONS(3712), + [anon_sym_U_SQUOTE] = ACTIONS(3712), + [anon_sym_u8_SQUOTE] = ACTIONS(3712), + [anon_sym_SQUOTE] = ACTIONS(3712), + [anon_sym_L_DQUOTE] = ACTIONS(3712), + [anon_sym_u_DQUOTE] = ACTIONS(3712), + [anon_sym_U_DQUOTE] = ACTIONS(3712), + [anon_sym_u8_DQUOTE] = ACTIONS(3712), + [anon_sym_DQUOTE] = ACTIONS(3712), + [sym_true] = ACTIONS(3710), + [sym_false] = ACTIONS(3710), + [anon_sym_NULL] = ACTIONS(3710), + [anon_sym_nullptr] = ACTIONS(3710), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3710), + [anon_sym_decltype] = ACTIONS(3710), + [anon_sym_explicit] = ACTIONS(3710), + [anon_sym_export] = ACTIONS(3710), + [anon_sym_module] = ACTIONS(3710), + [anon_sym_import] = ACTIONS(3710), + [anon_sym_template] = ACTIONS(3710), + [anon_sym_operator] = ACTIONS(3710), + [anon_sym_try] = ACTIONS(3710), + [anon_sym_delete] = ACTIONS(3710), + [anon_sym_throw] = ACTIONS(3710), + [anon_sym_namespace] = ACTIONS(3710), + [anon_sym_static_assert] = ACTIONS(3710), + [anon_sym_concept] = ACTIONS(3710), + [anon_sym_co_return] = ACTIONS(3710), + [anon_sym_co_yield] = ACTIONS(3710), + [anon_sym_R_DQUOTE] = ACTIONS(3712), + [anon_sym_LR_DQUOTE] = ACTIONS(3712), + [anon_sym_uR_DQUOTE] = ACTIONS(3712), + [anon_sym_UR_DQUOTE] = ACTIONS(3712), + [anon_sym_u8R_DQUOTE] = ACTIONS(3712), + [anon_sym_co_await] = ACTIONS(3710), + [anon_sym_new] = ACTIONS(3710), + [anon_sym_requires] = ACTIONS(3710), + [anon_sym_CARET_CARET] = ACTIONS(3712), + [anon_sym_LBRACK_COLON] = ACTIONS(3712), + [sym_this] = ACTIONS(3710), }, - [STATE(931)] = { - [sym_identifier] = ACTIONS(4526), - [aux_sym_preproc_include_token1] = ACTIONS(4526), - [aux_sym_preproc_def_token1] = ACTIONS(4526), - [aux_sym_preproc_if_token1] = ACTIONS(4526), - [aux_sym_preproc_if_token2] = ACTIONS(4526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4526), - [sym_preproc_directive] = ACTIONS(4526), - [anon_sym_LPAREN2] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_TILDE] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4526), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4526), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym___extension__] = ACTIONS(4526), - [anon_sym_typedef] = ACTIONS(4526), - [anon_sym_virtual] = ACTIONS(4526), - [anon_sym_extern] = ACTIONS(4526), - [anon_sym___attribute__] = ACTIONS(4526), - [anon_sym___attribute] = ACTIONS(4526), - [anon_sym_using] = ACTIONS(4526), - [anon_sym_COLON_COLON] = ACTIONS(4528), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4528), - [anon_sym___declspec] = ACTIONS(4526), - [anon_sym___based] = ACTIONS(4526), - [anon_sym___cdecl] = ACTIONS(4526), - [anon_sym___clrcall] = ACTIONS(4526), - [anon_sym___stdcall] = ACTIONS(4526), - [anon_sym___fastcall] = ACTIONS(4526), - [anon_sym___thiscall] = ACTIONS(4526), - [anon_sym___vectorcall] = ACTIONS(4526), - [anon_sym_LBRACE] = ACTIONS(4528), - [anon_sym_signed] = ACTIONS(4526), - [anon_sym_unsigned] = ACTIONS(4526), - [anon_sym_long] = ACTIONS(4526), - [anon_sym_short] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_static] = ACTIONS(4526), - [anon_sym_register] = ACTIONS(4526), - [anon_sym_inline] = ACTIONS(4526), - [anon_sym___inline] = ACTIONS(4526), - [anon_sym___inline__] = ACTIONS(4526), - [anon_sym___forceinline] = ACTIONS(4526), - [anon_sym_thread_local] = ACTIONS(4526), - [anon_sym___thread] = ACTIONS(4526), - [anon_sym_const] = ACTIONS(4526), - [anon_sym_constexpr] = ACTIONS(4526), - [anon_sym_volatile] = ACTIONS(4526), - [anon_sym_restrict] = ACTIONS(4526), - [anon_sym___restrict__] = ACTIONS(4526), - [anon_sym__Atomic] = ACTIONS(4526), - [anon_sym__Noreturn] = ACTIONS(4526), - [anon_sym_noreturn] = ACTIONS(4526), - [anon_sym__Nonnull] = ACTIONS(4526), - [anon_sym_mutable] = ACTIONS(4526), - [anon_sym_constinit] = ACTIONS(4526), - [anon_sym_consteval] = ACTIONS(4526), - [anon_sym_alignas] = ACTIONS(4526), - [anon_sym__Alignas] = ACTIONS(4526), - [sym_primitive_type] = ACTIONS(4526), - [anon_sym_enum] = ACTIONS(4526), - [anon_sym_class] = ACTIONS(4526), - [anon_sym_struct] = ACTIONS(4526), - [anon_sym_union] = ACTIONS(4526), - [anon_sym_if] = ACTIONS(4526), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_case] = ACTIONS(4526), - [anon_sym_default] = ACTIONS(4526), - [anon_sym_while] = ACTIONS(4526), - [anon_sym_do] = ACTIONS(4526), - [anon_sym_for] = ACTIONS(4526), - [anon_sym_return] = ACTIONS(4526), - [anon_sym_break] = ACTIONS(4526), - [anon_sym_continue] = ACTIONS(4526), - [anon_sym_goto] = ACTIONS(4526), - [anon_sym_not] = ACTIONS(4526), - [anon_sym_compl] = ACTIONS(4526), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_PLUS_PLUS] = ACTIONS(4528), - [anon_sym_sizeof] = ACTIONS(4526), - [anon_sym___alignof__] = ACTIONS(4526), - [anon_sym___alignof] = ACTIONS(4526), - [anon_sym__alignof] = ACTIONS(4526), - [anon_sym_alignof] = ACTIONS(4526), - [anon_sym__Alignof] = ACTIONS(4526), - [anon_sym_offsetof] = ACTIONS(4526), - [anon_sym__Generic] = ACTIONS(4526), - [anon_sym_typename] = ACTIONS(4526), - [anon_sym_asm] = ACTIONS(4526), - [anon_sym___asm__] = ACTIONS(4526), - [anon_sym___asm] = ACTIONS(4526), - [sym_number_literal] = ACTIONS(4528), - [anon_sym_L_SQUOTE] = ACTIONS(4528), - [anon_sym_u_SQUOTE] = ACTIONS(4528), - [anon_sym_U_SQUOTE] = ACTIONS(4528), - [anon_sym_u8_SQUOTE] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4528), - [anon_sym_L_DQUOTE] = ACTIONS(4528), - [anon_sym_u_DQUOTE] = ACTIONS(4528), - [anon_sym_U_DQUOTE] = ACTIONS(4528), - [anon_sym_u8_DQUOTE] = ACTIONS(4528), - [anon_sym_DQUOTE] = ACTIONS(4528), - [sym_true] = ACTIONS(4526), - [sym_false] = ACTIONS(4526), - [anon_sym_NULL] = ACTIONS(4526), - [anon_sym_nullptr] = ACTIONS(4526), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4526), - [anon_sym_decltype] = ACTIONS(4526), - [anon_sym_explicit] = ACTIONS(4526), - [anon_sym_export] = ACTIONS(4526), - [anon_sym_module] = ACTIONS(4526), - [anon_sym_import] = ACTIONS(4526), - [anon_sym_template] = ACTIONS(4526), - [anon_sym_operator] = ACTIONS(4526), - [anon_sym_try] = ACTIONS(4526), - [anon_sym_delete] = ACTIONS(4526), - [anon_sym_throw] = ACTIONS(4526), - [anon_sym_namespace] = ACTIONS(4526), - [anon_sym_static_assert] = ACTIONS(4526), - [anon_sym_concept] = ACTIONS(4526), - [anon_sym_co_return] = ACTIONS(4526), - [anon_sym_co_yield] = ACTIONS(4526), - [anon_sym_R_DQUOTE] = ACTIONS(4528), - [anon_sym_LR_DQUOTE] = ACTIONS(4528), - [anon_sym_uR_DQUOTE] = ACTIONS(4528), - [anon_sym_UR_DQUOTE] = ACTIONS(4528), - [anon_sym_u8R_DQUOTE] = ACTIONS(4528), - [anon_sym_co_await] = ACTIONS(4526), - [anon_sym_new] = ACTIONS(4526), - [anon_sym_requires] = ACTIONS(4526), - [anon_sym_CARET_CARET] = ACTIONS(4528), - [anon_sym_LBRACK_COLON] = ACTIONS(4528), - [sym_this] = ACTIONS(4526), + [STATE(918)] = { + [ts_builtin_sym_end] = ACTIONS(4462), + [sym_identifier] = ACTIONS(4460), + [aux_sym_preproc_include_token1] = ACTIONS(4460), + [aux_sym_preproc_def_token1] = ACTIONS(4460), + [aux_sym_preproc_if_token1] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4460), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4460), + [sym_preproc_directive] = ACTIONS(4460), + [anon_sym_LPAREN2] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4460), + [anon_sym_PLUS] = ACTIONS(4460), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_AMP_AMP] = ACTIONS(4462), + [anon_sym_AMP] = ACTIONS(4460), + [anon_sym_SEMI] = ACTIONS(4462), + [anon_sym___extension__] = ACTIONS(4460), + [anon_sym_typedef] = ACTIONS(4460), + [anon_sym_virtual] = ACTIONS(4460), + [anon_sym_extern] = ACTIONS(4460), + [anon_sym___attribute__] = ACTIONS(4460), + [anon_sym___attribute] = ACTIONS(4460), + [anon_sym_using] = ACTIONS(4460), + [anon_sym_COLON_COLON] = ACTIONS(4462), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4462), + [anon_sym___declspec] = ACTIONS(4460), + [anon_sym___based] = ACTIONS(4460), + [anon_sym___cdecl] = ACTIONS(4460), + [anon_sym___clrcall] = ACTIONS(4460), + [anon_sym___stdcall] = ACTIONS(4460), + [anon_sym___fastcall] = ACTIONS(4460), + [anon_sym___thiscall] = ACTIONS(4460), + [anon_sym___vectorcall] = ACTIONS(4460), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_signed] = ACTIONS(4460), + [anon_sym_unsigned] = ACTIONS(4460), + [anon_sym_long] = ACTIONS(4460), + [anon_sym_short] = ACTIONS(4460), + [anon_sym_LBRACK] = ACTIONS(4460), + [anon_sym_static] = ACTIONS(4460), + [anon_sym_register] = ACTIONS(4460), + [anon_sym_inline] = ACTIONS(4460), + [anon_sym___inline] = ACTIONS(4460), + [anon_sym___inline__] = ACTIONS(4460), + [anon_sym___forceinline] = ACTIONS(4460), + [anon_sym_thread_local] = ACTIONS(4460), + [anon_sym___thread] = ACTIONS(4460), + [anon_sym_const] = ACTIONS(4460), + [anon_sym_constexpr] = ACTIONS(4460), + [anon_sym_volatile] = ACTIONS(4460), + [anon_sym_restrict] = ACTIONS(4460), + [anon_sym___restrict__] = ACTIONS(4460), + [anon_sym__Atomic] = ACTIONS(4460), + [anon_sym__Noreturn] = ACTIONS(4460), + [anon_sym_noreturn] = ACTIONS(4460), + [anon_sym__Nonnull] = ACTIONS(4460), + [anon_sym_mutable] = ACTIONS(4460), + [anon_sym_constinit] = ACTIONS(4460), + [anon_sym_consteval] = ACTIONS(4460), + [anon_sym_alignas] = ACTIONS(4460), + [anon_sym__Alignas] = ACTIONS(4460), + [sym_primitive_type] = ACTIONS(4460), + [anon_sym_enum] = ACTIONS(4460), + [anon_sym_class] = ACTIONS(4460), + [anon_sym_struct] = ACTIONS(4460), + [anon_sym_union] = ACTIONS(4460), + [anon_sym_if] = ACTIONS(4460), + [anon_sym_switch] = ACTIONS(4460), + [anon_sym_case] = ACTIONS(4460), + [anon_sym_default] = ACTIONS(4460), + [anon_sym_while] = ACTIONS(4460), + [anon_sym_do] = ACTIONS(4460), + [anon_sym_for] = ACTIONS(4460), + [anon_sym_return] = ACTIONS(4460), + [anon_sym_break] = ACTIONS(4460), + [anon_sym_continue] = ACTIONS(4460), + [anon_sym_goto] = ACTIONS(4460), + [anon_sym_not] = ACTIONS(4460), + [anon_sym_compl] = ACTIONS(4460), + [anon_sym_DASH_DASH] = ACTIONS(4462), + [anon_sym_PLUS_PLUS] = ACTIONS(4462), + [anon_sym_sizeof] = ACTIONS(4460), + [anon_sym___alignof__] = ACTIONS(4460), + [anon_sym___alignof] = ACTIONS(4460), + [anon_sym__alignof] = ACTIONS(4460), + [anon_sym_alignof] = ACTIONS(4460), + [anon_sym__Alignof] = ACTIONS(4460), + [anon_sym_offsetof] = ACTIONS(4460), + [anon_sym__Generic] = ACTIONS(4460), + [anon_sym_typename] = ACTIONS(4460), + [anon_sym_asm] = ACTIONS(4460), + [anon_sym___asm__] = ACTIONS(4460), + [anon_sym___asm] = ACTIONS(4460), + [sym_number_literal] = ACTIONS(4462), + [anon_sym_L_SQUOTE] = ACTIONS(4462), + [anon_sym_u_SQUOTE] = ACTIONS(4462), + [anon_sym_U_SQUOTE] = ACTIONS(4462), + [anon_sym_u8_SQUOTE] = ACTIONS(4462), + [anon_sym_SQUOTE] = ACTIONS(4462), + [anon_sym_L_DQUOTE] = ACTIONS(4462), + [anon_sym_u_DQUOTE] = ACTIONS(4462), + [anon_sym_U_DQUOTE] = ACTIONS(4462), + [anon_sym_u8_DQUOTE] = ACTIONS(4462), + [anon_sym_DQUOTE] = ACTIONS(4462), + [sym_true] = ACTIONS(4460), + [sym_false] = ACTIONS(4460), + [anon_sym_NULL] = ACTIONS(4460), + [anon_sym_nullptr] = ACTIONS(4460), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4460), + [anon_sym_decltype] = ACTIONS(4460), + [anon_sym_explicit] = ACTIONS(4460), + [anon_sym_export] = ACTIONS(4460), + [anon_sym_module] = ACTIONS(4460), + [anon_sym_import] = ACTIONS(4460), + [anon_sym_template] = ACTIONS(4460), + [anon_sym_operator] = ACTIONS(4460), + [anon_sym_try] = ACTIONS(4460), + [anon_sym_delete] = ACTIONS(4460), + [anon_sym_throw] = ACTIONS(4460), + [anon_sym_namespace] = ACTIONS(4460), + [anon_sym_static_assert] = ACTIONS(4460), + [anon_sym_concept] = ACTIONS(4460), + [anon_sym_co_return] = ACTIONS(4460), + [anon_sym_co_yield] = ACTIONS(4460), + [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(4460), + [anon_sym_new] = ACTIONS(4460), + [anon_sym_requires] = ACTIONS(4460), + [anon_sym_CARET_CARET] = ACTIONS(4462), + [anon_sym_LBRACK_COLON] = ACTIONS(4462), + [sym_this] = ACTIONS(4460), }, - [STATE(932)] = { - [sym_preproc_def] = STATE(935), - [sym_preproc_function_def] = STATE(935), - [sym_preproc_call] = STATE(935), - [sym_preproc_if_in_field_declaration_list] = STATE(935), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(935), - [sym_type_definition] = STATE(935), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(935), - [sym_field_declaration] = STATE(935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(935), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(935), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(935), - [sym_operator_cast_declaration] = STATE(935), - [sym_constructor_or_destructor_definition] = STATE(935), - [sym_constructor_or_destructor_declaration] = STATE(935), - [sym_friend_declaration] = STATE(935), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(935), - [sym_alias_declaration] = STATE(935), - [sym_static_assert_declaration] = STATE(935), - [sym_consteval_block_declaration] = STATE(935), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(935), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4777), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4779), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), - [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(4704), - [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(4706), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [STATE(919)] = { + [ts_builtin_sym_end] = ACTIONS(3784), + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_include_token1] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_BANG] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym___cdecl] = ACTIONS(3782), + [anon_sym___clrcall] = ACTIONS(3782), + [anon_sym___stdcall] = ACTIONS(3782), + [anon_sym___fastcall] = ACTIONS(3782), + [anon_sym___thiscall] = ACTIONS(3782), + [anon_sym___vectorcall] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3784), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_switch] = ACTIONS(3782), + [anon_sym_case] = ACTIONS(3782), + [anon_sym_default] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_break] = ACTIONS(3782), + [anon_sym_continue] = ACTIONS(3782), + [anon_sym_goto] = ACTIONS(3782), + [anon_sym_not] = ACTIONS(3782), + [anon_sym_compl] = ACTIONS(3782), + [anon_sym_DASH_DASH] = ACTIONS(3784), + [anon_sym_PLUS_PLUS] = ACTIONS(3784), + [anon_sym_sizeof] = ACTIONS(3782), + [anon_sym___alignof__] = ACTIONS(3782), + [anon_sym___alignof] = ACTIONS(3782), + [anon_sym__alignof] = ACTIONS(3782), + [anon_sym_alignof] = ACTIONS(3782), + [anon_sym__Alignof] = ACTIONS(3782), + [anon_sym_offsetof] = ACTIONS(3782), + [anon_sym__Generic] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [anon_sym_asm] = ACTIONS(3782), + [anon_sym___asm__] = ACTIONS(3782), + [anon_sym___asm] = ACTIONS(3782), + [sym_number_literal] = ACTIONS(3784), + [anon_sym_L_SQUOTE] = ACTIONS(3784), + [anon_sym_u_SQUOTE] = ACTIONS(3784), + [anon_sym_U_SQUOTE] = ACTIONS(3784), + [anon_sym_u8_SQUOTE] = ACTIONS(3784), + [anon_sym_SQUOTE] = ACTIONS(3784), + [anon_sym_L_DQUOTE] = ACTIONS(3784), + [anon_sym_u_DQUOTE] = ACTIONS(3784), + [anon_sym_U_DQUOTE] = ACTIONS(3784), + [anon_sym_u8_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [anon_sym_NULL] = ACTIONS(3782), + [anon_sym_nullptr] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_export] = ACTIONS(3782), + [anon_sym_module] = ACTIONS(3782), + [anon_sym_import] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_delete] = ACTIONS(3782), + [anon_sym_throw] = ACTIONS(3782), + [anon_sym_namespace] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_concept] = ACTIONS(3782), + [anon_sym_co_return] = ACTIONS(3782), + [anon_sym_co_yield] = ACTIONS(3782), + [anon_sym_R_DQUOTE] = ACTIONS(3784), + [anon_sym_LR_DQUOTE] = ACTIONS(3784), + [anon_sym_uR_DQUOTE] = ACTIONS(3784), + [anon_sym_UR_DQUOTE] = ACTIONS(3784), + [anon_sym_u8R_DQUOTE] = ACTIONS(3784), + [anon_sym_co_await] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_requires] = ACTIONS(3782), + [anon_sym_CARET_CARET] = ACTIONS(3784), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), + [sym_this] = ACTIONS(3782), + }, + [STATE(920)] = { + [ts_builtin_sym_end] = ACTIONS(3784), + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_include_token1] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_BANG] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3782), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym___cdecl] = ACTIONS(3782), + [anon_sym___clrcall] = ACTIONS(3782), + [anon_sym___stdcall] = ACTIONS(3782), + [anon_sym___fastcall] = ACTIONS(3782), + [anon_sym___thiscall] = ACTIONS(3782), + [anon_sym___vectorcall] = ACTIONS(3782), + [anon_sym_LBRACE] = ACTIONS(3784), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_switch] = ACTIONS(3782), + [anon_sym_case] = ACTIONS(3782), + [anon_sym_default] = ACTIONS(3782), + [anon_sym_while] = ACTIONS(3782), + [anon_sym_do] = ACTIONS(3782), + [anon_sym_for] = ACTIONS(3782), + [anon_sym_return] = ACTIONS(3782), + [anon_sym_break] = ACTIONS(3782), + [anon_sym_continue] = ACTIONS(3782), + [anon_sym_goto] = ACTIONS(3782), + [anon_sym_not] = ACTIONS(3782), + [anon_sym_compl] = ACTIONS(3782), + [anon_sym_DASH_DASH] = ACTIONS(3784), + [anon_sym_PLUS_PLUS] = ACTIONS(3784), + [anon_sym_sizeof] = ACTIONS(3782), + [anon_sym___alignof__] = ACTIONS(3782), + [anon_sym___alignof] = ACTIONS(3782), + [anon_sym__alignof] = ACTIONS(3782), + [anon_sym_alignof] = ACTIONS(3782), + [anon_sym__Alignof] = ACTIONS(3782), + [anon_sym_offsetof] = ACTIONS(3782), + [anon_sym__Generic] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [anon_sym_asm] = ACTIONS(3782), + [anon_sym___asm__] = ACTIONS(3782), + [anon_sym___asm] = ACTIONS(3782), + [sym_number_literal] = ACTIONS(3784), + [anon_sym_L_SQUOTE] = ACTIONS(3784), + [anon_sym_u_SQUOTE] = ACTIONS(3784), + [anon_sym_U_SQUOTE] = ACTIONS(3784), + [anon_sym_u8_SQUOTE] = ACTIONS(3784), + [anon_sym_SQUOTE] = ACTIONS(3784), + [anon_sym_L_DQUOTE] = ACTIONS(3784), + [anon_sym_u_DQUOTE] = ACTIONS(3784), + [anon_sym_U_DQUOTE] = ACTIONS(3784), + [anon_sym_u8_DQUOTE] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3784), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [anon_sym_NULL] = ACTIONS(3782), + [anon_sym_nullptr] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_export] = ACTIONS(3782), + [anon_sym_module] = ACTIONS(3782), + [anon_sym_import] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_try] = ACTIONS(3782), + [anon_sym_delete] = ACTIONS(3782), + [anon_sym_throw] = ACTIONS(3782), + [anon_sym_namespace] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_concept] = ACTIONS(3782), + [anon_sym_co_return] = ACTIONS(3782), + [anon_sym_co_yield] = ACTIONS(3782), + [anon_sym_R_DQUOTE] = ACTIONS(3784), + [anon_sym_LR_DQUOTE] = ACTIONS(3784), + [anon_sym_uR_DQUOTE] = ACTIONS(3784), + [anon_sym_UR_DQUOTE] = ACTIONS(3784), + [anon_sym_u8R_DQUOTE] = ACTIONS(3784), + [anon_sym_co_await] = ACTIONS(3782), + [anon_sym_new] = ACTIONS(3782), + [anon_sym_requires] = ACTIONS(3782), + [anon_sym_CARET_CARET] = ACTIONS(3784), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), + [sym_this] = ACTIONS(3782), + }, + [STATE(921)] = { + [sym_preproc_def] = STATE(921), + [sym_preproc_function_def] = STATE(921), + [sym_preproc_call] = STATE(921), + [sym_preproc_if_in_field_declaration_list] = STATE(921), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(921), + [sym_type_definition] = STATE(921), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8105), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(921), + [sym_field_declaration] = STATE(921), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2509), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(921), + [sym_operator_cast] = STATE(9179), + [sym_inline_method_definition] = STATE(921), + [sym__constructor_specifiers] = STATE(2509), + [sym_operator_cast_definition] = STATE(921), + [sym_operator_cast_declaration] = STATE(921), + [sym_constructor_or_destructor_definition] = STATE(921), + [sym_constructor_or_destructor_declaration] = STATE(921), + [sym_friend_declaration] = STATE(921), + [sym_access_specifier] = STATE(11275), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(921), + [sym_alias_declaration] = STATE(921), + [sym_static_assert_declaration] = STATE(921), + [sym_consteval_block_declaration] = STATE(921), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9179), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(921), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9657), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2509), + [sym_identifier] = ACTIONS(4500), + [aux_sym_preproc_def_token1] = ACTIONS(4750), + [aux_sym_preproc_if_token1] = ACTIONS(4753), + [aux_sym_preproc_if_token2] = ACTIONS(4509), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4756), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4756), + [sym_preproc_directive] = ACTIONS(4759), + [anon_sym_LPAREN2] = ACTIONS(4517), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_AMP_AMP] = ACTIONS(4526), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4762), + [anon_sym___extension__] = ACTIONS(4765), + [anon_sym_typedef] = ACTIONS(4768), + [anon_sym_virtual] = ACTIONS(4541), + [anon_sym_extern] = ACTIONS(4544), + [anon_sym___attribute__] = ACTIONS(4547), + [anon_sym___attribute] = ACTIONS(4547), + [anon_sym_using] = ACTIONS(4771), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4556), + [anon_sym___declspec] = ACTIONS(4559), + [anon_sym___based] = ACTIONS(4562), + [anon_sym_signed] = ACTIONS(4565), + [anon_sym_unsigned] = ACTIONS(4565), + [anon_sym_long] = ACTIONS(4565), + [anon_sym_short] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_static] = ACTIONS(4544), + [anon_sym_register] = ACTIONS(4544), + [anon_sym_inline] = ACTIONS(4544), + [anon_sym___inline] = ACTIONS(4544), + [anon_sym___inline__] = ACTIONS(4544), + [anon_sym___forceinline] = ACTIONS(4544), + [anon_sym_thread_local] = ACTIONS(4544), + [anon_sym___thread] = ACTIONS(4544), + [anon_sym_const] = ACTIONS(4571), + [anon_sym_constexpr] = ACTIONS(4774), + [anon_sym_volatile] = ACTIONS(4571), + [anon_sym_restrict] = ACTIONS(4571), + [anon_sym___restrict__] = ACTIONS(4571), + [anon_sym__Atomic] = ACTIONS(4571), + [anon_sym__Noreturn] = ACTIONS(4571), + [anon_sym_noreturn] = ACTIONS(4571), + [anon_sym__Nonnull] = ACTIONS(4571), + [anon_sym_mutable] = ACTIONS(4571), + [anon_sym_constinit] = ACTIONS(4571), + [anon_sym_consteval] = ACTIONS(4777), + [anon_sym_alignas] = ACTIONS(4580), + [anon_sym__Alignas] = ACTIONS(4580), + [sym_primitive_type] = ACTIONS(4583), + [anon_sym_enum] = ACTIONS(4586), + [anon_sym_class] = ACTIONS(4589), + [anon_sym_struct] = ACTIONS(4592), + [anon_sym_union] = ACTIONS(4595), + [anon_sym_typename] = ACTIONS(4598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4601), + [anon_sym_decltype] = ACTIONS(4604), + [anon_sym_explicit] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4610), + [anon_sym_template] = ACTIONS(4780), + [anon_sym_operator] = ACTIONS(4616), + [anon_sym_friend] = ACTIONS(4783), + [anon_sym_public] = ACTIONS(4610), + [anon_sym_protected] = ACTIONS(4610), + [anon_sym_static_assert] = ACTIONS(4786), + [anon_sym_LBRACK_COLON] = ACTIONS(4625), + }, + [STATE(922)] = { + [ts_builtin_sym_end] = ACTIONS(3856), + [sym_identifier] = ACTIONS(3854), + [aux_sym_preproc_include_token1] = ACTIONS(3854), + [aux_sym_preproc_def_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token1] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3854), + [sym_preproc_directive] = ACTIONS(3854), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_BANG] = ACTIONS(3856), + [anon_sym_TILDE] = ACTIONS(3856), + [anon_sym_DASH] = ACTIONS(3854), + [anon_sym_PLUS] = ACTIONS(3854), + [anon_sym_STAR] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + [anon_sym_SEMI] = ACTIONS(3856), + [anon_sym___extension__] = ACTIONS(3854), + [anon_sym_typedef] = ACTIONS(3854), + [anon_sym_virtual] = ACTIONS(3854), + [anon_sym_extern] = ACTIONS(3854), + [anon_sym___attribute__] = ACTIONS(3854), + [anon_sym___attribute] = ACTIONS(3854), + [anon_sym_using] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3856), + [anon_sym___declspec] = ACTIONS(3854), + [anon_sym___based] = ACTIONS(3854), + [anon_sym___cdecl] = ACTIONS(3854), + [anon_sym___clrcall] = ACTIONS(3854), + [anon_sym___stdcall] = ACTIONS(3854), + [anon_sym___fastcall] = ACTIONS(3854), + [anon_sym___thiscall] = ACTIONS(3854), + [anon_sym___vectorcall] = ACTIONS(3854), + [anon_sym_LBRACE] = ACTIONS(3856), + [anon_sym_signed] = ACTIONS(3854), + [anon_sym_unsigned] = ACTIONS(3854), + [anon_sym_long] = ACTIONS(3854), + [anon_sym_short] = ACTIONS(3854), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_static] = ACTIONS(3854), + [anon_sym_register] = ACTIONS(3854), + [anon_sym_inline] = ACTIONS(3854), + [anon_sym___inline] = ACTIONS(3854), + [anon_sym___inline__] = ACTIONS(3854), + [anon_sym___forceinline] = ACTIONS(3854), + [anon_sym_thread_local] = ACTIONS(3854), + [anon_sym___thread] = ACTIONS(3854), + [anon_sym_const] = ACTIONS(3854), + [anon_sym_constexpr] = ACTIONS(3854), + [anon_sym_volatile] = ACTIONS(3854), + [anon_sym_restrict] = ACTIONS(3854), + [anon_sym___restrict__] = ACTIONS(3854), + [anon_sym__Atomic] = ACTIONS(3854), + [anon_sym__Noreturn] = ACTIONS(3854), + [anon_sym_noreturn] = ACTIONS(3854), + [anon_sym__Nonnull] = ACTIONS(3854), + [anon_sym_mutable] = ACTIONS(3854), + [anon_sym_constinit] = ACTIONS(3854), + [anon_sym_consteval] = ACTIONS(3854), + [anon_sym_alignas] = ACTIONS(3854), + [anon_sym__Alignas] = ACTIONS(3854), + [sym_primitive_type] = ACTIONS(3854), + [anon_sym_enum] = ACTIONS(3854), + [anon_sym_class] = ACTIONS(3854), + [anon_sym_struct] = ACTIONS(3854), + [anon_sym_union] = ACTIONS(3854), + [anon_sym_if] = ACTIONS(3854), + [anon_sym_switch] = ACTIONS(3854), + [anon_sym_case] = ACTIONS(3854), + [anon_sym_default] = ACTIONS(3854), + [anon_sym_while] = ACTIONS(3854), + [anon_sym_do] = ACTIONS(3854), + [anon_sym_for] = ACTIONS(3854), + [anon_sym_return] = ACTIONS(3854), + [anon_sym_break] = ACTIONS(3854), + [anon_sym_continue] = ACTIONS(3854), + [anon_sym_goto] = ACTIONS(3854), + [anon_sym_not] = ACTIONS(3854), + [anon_sym_compl] = ACTIONS(3854), + [anon_sym_DASH_DASH] = ACTIONS(3856), + [anon_sym_PLUS_PLUS] = ACTIONS(3856), + [anon_sym_sizeof] = ACTIONS(3854), + [anon_sym___alignof__] = ACTIONS(3854), + [anon_sym___alignof] = ACTIONS(3854), + [anon_sym__alignof] = ACTIONS(3854), + [anon_sym_alignof] = ACTIONS(3854), + [anon_sym__Alignof] = ACTIONS(3854), + [anon_sym_offsetof] = ACTIONS(3854), + [anon_sym__Generic] = ACTIONS(3854), + [anon_sym_typename] = ACTIONS(3854), + [anon_sym_asm] = ACTIONS(3854), + [anon_sym___asm__] = ACTIONS(3854), + [anon_sym___asm] = ACTIONS(3854), + [sym_number_literal] = ACTIONS(3856), + [anon_sym_L_SQUOTE] = ACTIONS(3856), + [anon_sym_u_SQUOTE] = ACTIONS(3856), + [anon_sym_U_SQUOTE] = ACTIONS(3856), + [anon_sym_u8_SQUOTE] = ACTIONS(3856), + [anon_sym_SQUOTE] = ACTIONS(3856), + [anon_sym_L_DQUOTE] = ACTIONS(3856), + [anon_sym_u_DQUOTE] = ACTIONS(3856), + [anon_sym_U_DQUOTE] = ACTIONS(3856), + [anon_sym_u8_DQUOTE] = ACTIONS(3856), + [anon_sym_DQUOTE] = ACTIONS(3856), + [sym_true] = ACTIONS(3854), + [sym_false] = ACTIONS(3854), + [anon_sym_NULL] = ACTIONS(3854), + [anon_sym_nullptr] = ACTIONS(3854), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3854), + [anon_sym_decltype] = ACTIONS(3854), + [anon_sym_explicit] = ACTIONS(3854), + [anon_sym_export] = ACTIONS(3854), + [anon_sym_module] = ACTIONS(3854), + [anon_sym_import] = ACTIONS(3854), + [anon_sym_template] = ACTIONS(3854), + [anon_sym_operator] = ACTIONS(3854), + [anon_sym_try] = ACTIONS(3854), + [anon_sym_delete] = ACTIONS(3854), + [anon_sym_throw] = ACTIONS(3854), + [anon_sym_namespace] = ACTIONS(3854), + [anon_sym_static_assert] = ACTIONS(3854), + [anon_sym_concept] = ACTIONS(3854), + [anon_sym_co_return] = ACTIONS(3854), + [anon_sym_co_yield] = ACTIONS(3854), + [anon_sym_R_DQUOTE] = ACTIONS(3856), + [anon_sym_LR_DQUOTE] = ACTIONS(3856), + [anon_sym_uR_DQUOTE] = ACTIONS(3856), + [anon_sym_UR_DQUOTE] = ACTIONS(3856), + [anon_sym_u8R_DQUOTE] = ACTIONS(3856), + [anon_sym_co_await] = ACTIONS(3854), + [anon_sym_new] = ACTIONS(3854), + [anon_sym_requires] = ACTIONS(3854), + [anon_sym_CARET_CARET] = ACTIONS(3856), + [anon_sym_LBRACK_COLON] = ACTIONS(3856), + [sym_this] = ACTIONS(3854), + }, + [STATE(923)] = { + [ts_builtin_sym_end] = ACTIONS(3776), + [sym_identifier] = ACTIONS(3774), + [aux_sym_preproc_include_token1] = ACTIONS(3774), + [aux_sym_preproc_def_token1] = ACTIONS(3774), + [aux_sym_preproc_if_token1] = ACTIONS(3774), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3774), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3774), + [sym_preproc_directive] = ACTIONS(3774), + [anon_sym_LPAREN2] = ACTIONS(3776), + [anon_sym_BANG] = ACTIONS(3776), + [anon_sym_TILDE] = ACTIONS(3776), + [anon_sym_DASH] = ACTIONS(3774), + [anon_sym_PLUS] = ACTIONS(3774), + [anon_sym_STAR] = ACTIONS(3776), + [anon_sym_AMP_AMP] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3774), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym___extension__] = ACTIONS(3774), + [anon_sym_typedef] = ACTIONS(3774), + [anon_sym_virtual] = ACTIONS(3774), + [anon_sym_extern] = ACTIONS(3774), + [anon_sym___attribute__] = ACTIONS(3774), + [anon_sym___attribute] = ACTIONS(3774), + [anon_sym_using] = ACTIONS(3774), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3776), + [anon_sym___declspec] = ACTIONS(3774), + [anon_sym___based] = ACTIONS(3774), + [anon_sym___cdecl] = ACTIONS(3774), + [anon_sym___clrcall] = ACTIONS(3774), + [anon_sym___stdcall] = ACTIONS(3774), + [anon_sym___fastcall] = ACTIONS(3774), + [anon_sym___thiscall] = ACTIONS(3774), + [anon_sym___vectorcall] = ACTIONS(3774), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_signed] = ACTIONS(3774), + [anon_sym_unsigned] = ACTIONS(3774), + [anon_sym_long] = ACTIONS(3774), + [anon_sym_short] = ACTIONS(3774), + [anon_sym_LBRACK] = ACTIONS(3774), + [anon_sym_static] = ACTIONS(3774), + [anon_sym_register] = ACTIONS(3774), + [anon_sym_inline] = ACTIONS(3774), + [anon_sym___inline] = ACTIONS(3774), + [anon_sym___inline__] = ACTIONS(3774), + [anon_sym___forceinline] = ACTIONS(3774), + [anon_sym_thread_local] = ACTIONS(3774), + [anon_sym___thread] = ACTIONS(3774), + [anon_sym_const] = ACTIONS(3774), + [anon_sym_constexpr] = ACTIONS(3774), + [anon_sym_volatile] = ACTIONS(3774), + [anon_sym_restrict] = ACTIONS(3774), + [anon_sym___restrict__] = ACTIONS(3774), + [anon_sym__Atomic] = ACTIONS(3774), + [anon_sym__Noreturn] = ACTIONS(3774), + [anon_sym_noreturn] = ACTIONS(3774), + [anon_sym__Nonnull] = ACTIONS(3774), + [anon_sym_mutable] = ACTIONS(3774), + [anon_sym_constinit] = ACTIONS(3774), + [anon_sym_consteval] = ACTIONS(3774), + [anon_sym_alignas] = ACTIONS(3774), + [anon_sym__Alignas] = ACTIONS(3774), + [sym_primitive_type] = ACTIONS(3774), + [anon_sym_enum] = ACTIONS(3774), + [anon_sym_class] = ACTIONS(3774), + [anon_sym_struct] = ACTIONS(3774), + [anon_sym_union] = ACTIONS(3774), + [anon_sym_if] = ACTIONS(3774), + [anon_sym_switch] = ACTIONS(3774), + [anon_sym_case] = ACTIONS(3774), + [anon_sym_default] = ACTIONS(3774), + [anon_sym_while] = ACTIONS(3774), + [anon_sym_do] = ACTIONS(3774), + [anon_sym_for] = ACTIONS(3774), + [anon_sym_return] = ACTIONS(3774), + [anon_sym_break] = ACTIONS(3774), + [anon_sym_continue] = ACTIONS(3774), + [anon_sym_goto] = ACTIONS(3774), + [anon_sym_not] = ACTIONS(3774), + [anon_sym_compl] = ACTIONS(3774), + [anon_sym_DASH_DASH] = ACTIONS(3776), + [anon_sym_PLUS_PLUS] = ACTIONS(3776), + [anon_sym_sizeof] = ACTIONS(3774), + [anon_sym___alignof__] = ACTIONS(3774), + [anon_sym___alignof] = ACTIONS(3774), + [anon_sym__alignof] = ACTIONS(3774), + [anon_sym_alignof] = ACTIONS(3774), + [anon_sym__Alignof] = ACTIONS(3774), + [anon_sym_offsetof] = ACTIONS(3774), + [anon_sym__Generic] = ACTIONS(3774), + [anon_sym_typename] = ACTIONS(3774), + [anon_sym_asm] = ACTIONS(3774), + [anon_sym___asm__] = ACTIONS(3774), + [anon_sym___asm] = ACTIONS(3774), + [sym_number_literal] = ACTIONS(3776), + [anon_sym_L_SQUOTE] = ACTIONS(3776), + [anon_sym_u_SQUOTE] = ACTIONS(3776), + [anon_sym_U_SQUOTE] = ACTIONS(3776), + [anon_sym_u8_SQUOTE] = ACTIONS(3776), + [anon_sym_SQUOTE] = ACTIONS(3776), + [anon_sym_L_DQUOTE] = ACTIONS(3776), + [anon_sym_u_DQUOTE] = ACTIONS(3776), + [anon_sym_U_DQUOTE] = ACTIONS(3776), + [anon_sym_u8_DQUOTE] = ACTIONS(3776), + [anon_sym_DQUOTE] = ACTIONS(3776), + [sym_true] = ACTIONS(3774), + [sym_false] = ACTIONS(3774), + [anon_sym_NULL] = ACTIONS(3774), + [anon_sym_nullptr] = ACTIONS(3774), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(3774), + [anon_sym_explicit] = ACTIONS(3774), + [anon_sym_export] = ACTIONS(3774), + [anon_sym_module] = ACTIONS(3774), + [anon_sym_import] = ACTIONS(3774), + [anon_sym_template] = ACTIONS(3774), + [anon_sym_operator] = ACTIONS(3774), + [anon_sym_try] = ACTIONS(3774), + [anon_sym_delete] = ACTIONS(3774), + [anon_sym_throw] = ACTIONS(3774), + [anon_sym_namespace] = ACTIONS(3774), + [anon_sym_static_assert] = ACTIONS(3774), + [anon_sym_concept] = ACTIONS(3774), + [anon_sym_co_return] = ACTIONS(3774), + [anon_sym_co_yield] = ACTIONS(3774), + [anon_sym_R_DQUOTE] = ACTIONS(3776), + [anon_sym_LR_DQUOTE] = ACTIONS(3776), + [anon_sym_uR_DQUOTE] = ACTIONS(3776), + [anon_sym_UR_DQUOTE] = ACTIONS(3776), + [anon_sym_u8R_DQUOTE] = ACTIONS(3776), + [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_new] = ACTIONS(3774), + [anon_sym_requires] = ACTIONS(3774), + [anon_sym_CARET_CARET] = ACTIONS(3776), + [anon_sym_LBRACK_COLON] = ACTIONS(3776), + [sym_this] = ACTIONS(3774), + }, + [STATE(924)] = { + [ts_builtin_sym_end] = ACTIONS(3911), + [sym_identifier] = ACTIONS(3909), + [aux_sym_preproc_include_token1] = ACTIONS(3909), + [aux_sym_preproc_def_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token1] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3909), + [sym_preproc_directive] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_BANG] = ACTIONS(3911), + [anon_sym_TILDE] = ACTIONS(3911), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_PLUS] = ACTIONS(3909), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym___extension__] = ACTIONS(3909), + [anon_sym_typedef] = ACTIONS(3909), + [anon_sym_virtual] = ACTIONS(3909), + [anon_sym_extern] = ACTIONS(3909), + [anon_sym___attribute__] = ACTIONS(3909), + [anon_sym___attribute] = ACTIONS(3909), + [anon_sym_using] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(3911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3911), + [anon_sym___declspec] = ACTIONS(3909), + [anon_sym___based] = ACTIONS(3909), + [anon_sym___cdecl] = ACTIONS(3909), + [anon_sym___clrcall] = ACTIONS(3909), + [anon_sym___stdcall] = ACTIONS(3909), + [anon_sym___fastcall] = ACTIONS(3909), + [anon_sym___thiscall] = ACTIONS(3909), + [anon_sym___vectorcall] = ACTIONS(3909), + [anon_sym_LBRACE] = ACTIONS(3911), + [anon_sym_signed] = ACTIONS(3909), + [anon_sym_unsigned] = ACTIONS(3909), + [anon_sym_long] = ACTIONS(3909), + [anon_sym_short] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_static] = ACTIONS(3909), + [anon_sym_register] = ACTIONS(3909), + [anon_sym_inline] = ACTIONS(3909), + [anon_sym___inline] = ACTIONS(3909), + [anon_sym___inline__] = ACTIONS(3909), + [anon_sym___forceinline] = ACTIONS(3909), + [anon_sym_thread_local] = ACTIONS(3909), + [anon_sym___thread] = ACTIONS(3909), + [anon_sym_const] = ACTIONS(3909), + [anon_sym_constexpr] = ACTIONS(3909), + [anon_sym_volatile] = ACTIONS(3909), + [anon_sym_restrict] = ACTIONS(3909), + [anon_sym___restrict__] = ACTIONS(3909), + [anon_sym__Atomic] = ACTIONS(3909), + [anon_sym__Noreturn] = ACTIONS(3909), + [anon_sym_noreturn] = ACTIONS(3909), + [anon_sym__Nonnull] = ACTIONS(3909), + [anon_sym_mutable] = ACTIONS(3909), + [anon_sym_constinit] = ACTIONS(3909), + [anon_sym_consteval] = ACTIONS(3909), + [anon_sym_alignas] = ACTIONS(3909), + [anon_sym__Alignas] = ACTIONS(3909), + [sym_primitive_type] = ACTIONS(3909), + [anon_sym_enum] = ACTIONS(3909), + [anon_sym_class] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(3909), + [anon_sym_union] = ACTIONS(3909), + [anon_sym_if] = ACTIONS(3909), + [anon_sym_switch] = ACTIONS(3909), + [anon_sym_case] = ACTIONS(3909), + [anon_sym_default] = ACTIONS(3909), + [anon_sym_while] = ACTIONS(3909), + [anon_sym_do] = ACTIONS(3909), + [anon_sym_for] = ACTIONS(3909), + [anon_sym_return] = ACTIONS(3909), + [anon_sym_break] = ACTIONS(3909), + [anon_sym_continue] = ACTIONS(3909), + [anon_sym_goto] = ACTIONS(3909), + [anon_sym_not] = ACTIONS(3909), + [anon_sym_compl] = ACTIONS(3909), + [anon_sym_DASH_DASH] = ACTIONS(3911), + [anon_sym_PLUS_PLUS] = ACTIONS(3911), + [anon_sym_sizeof] = ACTIONS(3909), + [anon_sym___alignof__] = ACTIONS(3909), + [anon_sym___alignof] = ACTIONS(3909), + [anon_sym__alignof] = ACTIONS(3909), + [anon_sym_alignof] = ACTIONS(3909), + [anon_sym__Alignof] = ACTIONS(3909), + [anon_sym_offsetof] = ACTIONS(3909), + [anon_sym__Generic] = ACTIONS(3909), + [anon_sym_typename] = ACTIONS(3909), + [anon_sym_asm] = ACTIONS(3909), + [anon_sym___asm__] = ACTIONS(3909), + [anon_sym___asm] = ACTIONS(3909), + [sym_number_literal] = ACTIONS(3911), + [anon_sym_L_SQUOTE] = ACTIONS(3911), + [anon_sym_u_SQUOTE] = ACTIONS(3911), + [anon_sym_U_SQUOTE] = ACTIONS(3911), + [anon_sym_u8_SQUOTE] = ACTIONS(3911), + [anon_sym_SQUOTE] = ACTIONS(3911), + [anon_sym_L_DQUOTE] = ACTIONS(3911), + [anon_sym_u_DQUOTE] = ACTIONS(3911), + [anon_sym_U_DQUOTE] = ACTIONS(3911), + [anon_sym_u8_DQUOTE] = ACTIONS(3911), + [anon_sym_DQUOTE] = ACTIONS(3911), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [anon_sym_NULL] = ACTIONS(3909), + [anon_sym_nullptr] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3909), + [anon_sym_decltype] = ACTIONS(3909), + [anon_sym_explicit] = ACTIONS(3909), + [anon_sym_export] = ACTIONS(3909), + [anon_sym_module] = ACTIONS(3909), + [anon_sym_import] = ACTIONS(3909), + [anon_sym_template] = ACTIONS(3909), + [anon_sym_operator] = ACTIONS(3909), + [anon_sym_try] = ACTIONS(3909), + [anon_sym_delete] = ACTIONS(3909), + [anon_sym_throw] = ACTIONS(3909), + [anon_sym_namespace] = ACTIONS(3909), + [anon_sym_static_assert] = ACTIONS(3909), + [anon_sym_concept] = ACTIONS(3909), + [anon_sym_co_return] = ACTIONS(3909), + [anon_sym_co_yield] = ACTIONS(3909), + [anon_sym_R_DQUOTE] = ACTIONS(3911), + [anon_sym_LR_DQUOTE] = ACTIONS(3911), + [anon_sym_uR_DQUOTE] = ACTIONS(3911), + [anon_sym_UR_DQUOTE] = ACTIONS(3911), + [anon_sym_u8R_DQUOTE] = ACTIONS(3911), + [anon_sym_co_await] = ACTIONS(3909), + [anon_sym_new] = ACTIONS(3909), + [anon_sym_requires] = ACTIONS(3909), + [anon_sym_CARET_CARET] = ACTIONS(3911), + [anon_sym_LBRACK_COLON] = ACTIONS(3911), + [sym_this] = ACTIONS(3909), + }, + [STATE(925)] = { + [sym_identifier] = ACTIONS(4628), + [aux_sym_preproc_include_token1] = ACTIONS(4628), + [aux_sym_preproc_def_token1] = ACTIONS(4628), + [aux_sym_preproc_if_token1] = ACTIONS(4628), + [aux_sym_preproc_if_token2] = ACTIONS(4628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4628), + [sym_preproc_directive] = ACTIONS(4628), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(4630), + [anon_sym_TILDE] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4628), + [anon_sym_PLUS] = ACTIONS(4628), + [anon_sym_STAR] = ACTIONS(4630), + [anon_sym_AMP_AMP] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_SEMI] = ACTIONS(4630), + [anon_sym___extension__] = ACTIONS(4628), + [anon_sym_typedef] = ACTIONS(4628), + [anon_sym_virtual] = ACTIONS(4628), + [anon_sym_extern] = ACTIONS(4628), + [anon_sym___attribute__] = ACTIONS(4628), + [anon_sym___attribute] = ACTIONS(4628), + [anon_sym_using] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(4630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4630), + [anon_sym___declspec] = ACTIONS(4628), + [anon_sym___based] = ACTIONS(4628), + [anon_sym___cdecl] = ACTIONS(4628), + [anon_sym___clrcall] = ACTIONS(4628), + [anon_sym___stdcall] = ACTIONS(4628), + [anon_sym___fastcall] = ACTIONS(4628), + [anon_sym___thiscall] = ACTIONS(4628), + [anon_sym___vectorcall] = ACTIONS(4628), + [anon_sym_LBRACE] = ACTIONS(4630), + [anon_sym_signed] = ACTIONS(4628), + [anon_sym_unsigned] = ACTIONS(4628), + [anon_sym_long] = ACTIONS(4628), + [anon_sym_short] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_static] = ACTIONS(4628), + [anon_sym_register] = ACTIONS(4628), + [anon_sym_inline] = ACTIONS(4628), + [anon_sym___inline] = ACTIONS(4628), + [anon_sym___inline__] = ACTIONS(4628), + [anon_sym___forceinline] = ACTIONS(4628), + [anon_sym_thread_local] = ACTIONS(4628), + [anon_sym___thread] = ACTIONS(4628), + [anon_sym_const] = ACTIONS(4628), + [anon_sym_constexpr] = ACTIONS(4628), + [anon_sym_volatile] = ACTIONS(4628), + [anon_sym_restrict] = ACTIONS(4628), + [anon_sym___restrict__] = ACTIONS(4628), + [anon_sym__Atomic] = ACTIONS(4628), + [anon_sym__Noreturn] = ACTIONS(4628), + [anon_sym_noreturn] = ACTIONS(4628), + [anon_sym__Nonnull] = ACTIONS(4628), + [anon_sym_mutable] = ACTIONS(4628), + [anon_sym_constinit] = ACTIONS(4628), + [anon_sym_consteval] = ACTIONS(4628), + [anon_sym_alignas] = ACTIONS(4628), + [anon_sym__Alignas] = ACTIONS(4628), + [sym_primitive_type] = ACTIONS(4628), + [anon_sym_enum] = ACTIONS(4628), + [anon_sym_class] = ACTIONS(4628), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_union] = ACTIONS(4628), + [anon_sym_if] = ACTIONS(4628), + [anon_sym_switch] = ACTIONS(4628), + [anon_sym_case] = ACTIONS(4628), + [anon_sym_default] = ACTIONS(4628), + [anon_sym_while] = ACTIONS(4628), + [anon_sym_do] = ACTIONS(4628), + [anon_sym_for] = ACTIONS(4628), + [anon_sym_return] = ACTIONS(4628), + [anon_sym_break] = ACTIONS(4628), + [anon_sym_continue] = ACTIONS(4628), + [anon_sym_goto] = ACTIONS(4628), + [anon_sym_not] = ACTIONS(4628), + [anon_sym_compl] = ACTIONS(4628), + [anon_sym_DASH_DASH] = ACTIONS(4630), + [anon_sym_PLUS_PLUS] = ACTIONS(4630), + [anon_sym_sizeof] = ACTIONS(4628), + [anon_sym___alignof__] = ACTIONS(4628), + [anon_sym___alignof] = ACTIONS(4628), + [anon_sym__alignof] = ACTIONS(4628), + [anon_sym_alignof] = ACTIONS(4628), + [anon_sym__Alignof] = ACTIONS(4628), + [anon_sym_offsetof] = ACTIONS(4628), + [anon_sym__Generic] = ACTIONS(4628), + [anon_sym_typename] = ACTIONS(4628), + [anon_sym_asm] = ACTIONS(4628), + [anon_sym___asm__] = ACTIONS(4628), + [anon_sym___asm] = ACTIONS(4628), + [sym_number_literal] = ACTIONS(4630), + [anon_sym_L_SQUOTE] = ACTIONS(4630), + [anon_sym_u_SQUOTE] = ACTIONS(4630), + [anon_sym_U_SQUOTE] = ACTIONS(4630), + [anon_sym_u8_SQUOTE] = ACTIONS(4630), + [anon_sym_SQUOTE] = ACTIONS(4630), + [anon_sym_L_DQUOTE] = ACTIONS(4630), + [anon_sym_u_DQUOTE] = ACTIONS(4630), + [anon_sym_U_DQUOTE] = ACTIONS(4630), + [anon_sym_u8_DQUOTE] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(4630), + [sym_true] = ACTIONS(4628), + [sym_false] = ACTIONS(4628), + [anon_sym_NULL] = ACTIONS(4628), + [anon_sym_nullptr] = ACTIONS(4628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4628), + [anon_sym_decltype] = ACTIONS(4628), + [anon_sym_explicit] = ACTIONS(4628), + [anon_sym_export] = ACTIONS(4628), + [anon_sym_module] = ACTIONS(4628), + [anon_sym_import] = ACTIONS(4628), + [anon_sym_template] = ACTIONS(4628), + [anon_sym_operator] = ACTIONS(4628), + [anon_sym_try] = ACTIONS(4628), + [anon_sym_delete] = ACTIONS(4628), + [anon_sym_throw] = ACTIONS(4628), + [anon_sym_namespace] = ACTIONS(4628), + [anon_sym_static_assert] = ACTIONS(4628), + [anon_sym_concept] = ACTIONS(4628), + [anon_sym_co_return] = ACTIONS(4628), + [anon_sym_co_yield] = ACTIONS(4628), + [anon_sym_R_DQUOTE] = ACTIONS(4630), + [anon_sym_LR_DQUOTE] = ACTIONS(4630), + [anon_sym_uR_DQUOTE] = ACTIONS(4630), + [anon_sym_UR_DQUOTE] = ACTIONS(4630), + [anon_sym_u8R_DQUOTE] = ACTIONS(4630), + [anon_sym_co_await] = ACTIONS(4628), + [anon_sym_new] = ACTIONS(4628), + [anon_sym_requires] = ACTIONS(4628), + [anon_sym_CARET_CARET] = ACTIONS(4630), + [anon_sym_LBRACK_COLON] = ACTIONS(4630), + [sym_this] = ACTIONS(4628), + }, + [STATE(926)] = { + [sym_identifier] = ACTIONS(4632), + [aux_sym_preproc_include_token1] = ACTIONS(4632), + [aux_sym_preproc_def_token1] = ACTIONS(4632), + [aux_sym_preproc_if_token1] = ACTIONS(4632), + [aux_sym_preproc_if_token2] = ACTIONS(4632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4632), + [sym_preproc_directive] = ACTIONS(4632), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4634), + [anon_sym_TILDE] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym___extension__] = ACTIONS(4632), + [anon_sym_typedef] = ACTIONS(4632), + [anon_sym_virtual] = ACTIONS(4632), + [anon_sym_extern] = ACTIONS(4632), + [anon_sym___attribute__] = ACTIONS(4632), + [anon_sym___attribute] = ACTIONS(4632), + [anon_sym_using] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4634), + [anon_sym___declspec] = ACTIONS(4632), + [anon_sym___based] = ACTIONS(4632), + [anon_sym___cdecl] = ACTIONS(4632), + [anon_sym___clrcall] = ACTIONS(4632), + [anon_sym___stdcall] = ACTIONS(4632), + [anon_sym___fastcall] = ACTIONS(4632), + [anon_sym___thiscall] = ACTIONS(4632), + [anon_sym___vectorcall] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_signed] = ACTIONS(4632), + [anon_sym_unsigned] = ACTIONS(4632), + [anon_sym_long] = ACTIONS(4632), + [anon_sym_short] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_static] = ACTIONS(4632), + [anon_sym_register] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym___inline] = ACTIONS(4632), + [anon_sym___inline__] = ACTIONS(4632), + [anon_sym___forceinline] = ACTIONS(4632), + [anon_sym_thread_local] = ACTIONS(4632), + [anon_sym___thread] = ACTIONS(4632), + [anon_sym_const] = ACTIONS(4632), + [anon_sym_constexpr] = ACTIONS(4632), + [anon_sym_volatile] = ACTIONS(4632), + [anon_sym_restrict] = ACTIONS(4632), + [anon_sym___restrict__] = ACTIONS(4632), + [anon_sym__Atomic] = ACTIONS(4632), + [anon_sym__Noreturn] = ACTIONS(4632), + [anon_sym_noreturn] = ACTIONS(4632), + [anon_sym__Nonnull] = ACTIONS(4632), + [anon_sym_mutable] = ACTIONS(4632), + [anon_sym_constinit] = ACTIONS(4632), + [anon_sym_consteval] = ACTIONS(4632), + [anon_sym_alignas] = ACTIONS(4632), + [anon_sym__Alignas] = ACTIONS(4632), + [sym_primitive_type] = ACTIONS(4632), + [anon_sym_enum] = ACTIONS(4632), + [anon_sym_class] = ACTIONS(4632), + [anon_sym_struct] = ACTIONS(4632), + [anon_sym_union] = ACTIONS(4632), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_switch] = ACTIONS(4632), + [anon_sym_case] = ACTIONS(4632), + [anon_sym_default] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_do] = ACTIONS(4632), + [anon_sym_for] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_goto] = ACTIONS(4632), + [anon_sym_not] = ACTIONS(4632), + [anon_sym_compl] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_sizeof] = ACTIONS(4632), + [anon_sym___alignof__] = ACTIONS(4632), + [anon_sym___alignof] = ACTIONS(4632), + [anon_sym__alignof] = ACTIONS(4632), + [anon_sym_alignof] = ACTIONS(4632), + [anon_sym__Alignof] = ACTIONS(4632), + [anon_sym_offsetof] = ACTIONS(4632), + [anon_sym__Generic] = ACTIONS(4632), + [anon_sym_typename] = ACTIONS(4632), + [anon_sym_asm] = ACTIONS(4632), + [anon_sym___asm__] = ACTIONS(4632), + [anon_sym___asm] = ACTIONS(4632), + [sym_number_literal] = ACTIONS(4634), + [anon_sym_L_SQUOTE] = ACTIONS(4634), + [anon_sym_u_SQUOTE] = ACTIONS(4634), + [anon_sym_U_SQUOTE] = ACTIONS(4634), + [anon_sym_u8_SQUOTE] = ACTIONS(4634), + [anon_sym_SQUOTE] = ACTIONS(4634), + [anon_sym_L_DQUOTE] = ACTIONS(4634), + [anon_sym_u_DQUOTE] = ACTIONS(4634), + [anon_sym_U_DQUOTE] = ACTIONS(4634), + [anon_sym_u8_DQUOTE] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4634), + [sym_true] = ACTIONS(4632), + [sym_false] = ACTIONS(4632), + [anon_sym_NULL] = ACTIONS(4632), + [anon_sym_nullptr] = ACTIONS(4632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4632), + [anon_sym_decltype] = ACTIONS(4632), + [anon_sym_explicit] = ACTIONS(4632), + [anon_sym_export] = ACTIONS(4632), + [anon_sym_module] = ACTIONS(4632), + [anon_sym_import] = ACTIONS(4632), + [anon_sym_template] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_delete] = ACTIONS(4632), + [anon_sym_throw] = ACTIONS(4632), + [anon_sym_namespace] = ACTIONS(4632), + [anon_sym_static_assert] = ACTIONS(4632), + [anon_sym_concept] = ACTIONS(4632), + [anon_sym_co_return] = ACTIONS(4632), + [anon_sym_co_yield] = ACTIONS(4632), + [anon_sym_R_DQUOTE] = ACTIONS(4634), + [anon_sym_LR_DQUOTE] = ACTIONS(4634), + [anon_sym_uR_DQUOTE] = ACTIONS(4634), + [anon_sym_UR_DQUOTE] = ACTIONS(4634), + [anon_sym_u8R_DQUOTE] = ACTIONS(4634), + [anon_sym_co_await] = ACTIONS(4632), + [anon_sym_new] = ACTIONS(4632), + [anon_sym_requires] = ACTIONS(4632), + [anon_sym_CARET_CARET] = ACTIONS(4634), + [anon_sym_LBRACK_COLON] = ACTIONS(4634), + [sym_this] = ACTIONS(4632), + }, + [STATE(927)] = { + [sym_identifier] = ACTIONS(4636), + [aux_sym_preproc_include_token1] = ACTIONS(4636), + [aux_sym_preproc_def_token1] = ACTIONS(4636), + [aux_sym_preproc_if_token1] = ACTIONS(4636), + [aux_sym_preproc_if_token2] = ACTIONS(4636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4636), + [sym_preproc_directive] = ACTIONS(4636), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(4638), + [anon_sym_TILDE] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_PLUS] = ACTIONS(4636), + [anon_sym_STAR] = ACTIONS(4638), + [anon_sym_AMP_AMP] = ACTIONS(4638), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_SEMI] = ACTIONS(4638), + [anon_sym___extension__] = ACTIONS(4636), + [anon_sym_typedef] = ACTIONS(4636), + [anon_sym_virtual] = ACTIONS(4636), + [anon_sym_extern] = ACTIONS(4636), + [anon_sym___attribute__] = ACTIONS(4636), + [anon_sym___attribute] = ACTIONS(4636), + [anon_sym_using] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(4638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4638), + [anon_sym___declspec] = ACTIONS(4636), + [anon_sym___based] = ACTIONS(4636), + [anon_sym___cdecl] = ACTIONS(4636), + [anon_sym___clrcall] = ACTIONS(4636), + [anon_sym___stdcall] = ACTIONS(4636), + [anon_sym___fastcall] = ACTIONS(4636), + [anon_sym___thiscall] = ACTIONS(4636), + [anon_sym___vectorcall] = ACTIONS(4636), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_signed] = ACTIONS(4636), + [anon_sym_unsigned] = ACTIONS(4636), + [anon_sym_long] = ACTIONS(4636), + [anon_sym_short] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4636), + [anon_sym_static] = ACTIONS(4636), + [anon_sym_register] = ACTIONS(4636), + [anon_sym_inline] = ACTIONS(4636), + [anon_sym___inline] = ACTIONS(4636), + [anon_sym___inline__] = ACTIONS(4636), + [anon_sym___forceinline] = ACTIONS(4636), + [anon_sym_thread_local] = ACTIONS(4636), + [anon_sym___thread] = ACTIONS(4636), + [anon_sym_const] = ACTIONS(4636), + [anon_sym_constexpr] = ACTIONS(4636), + [anon_sym_volatile] = ACTIONS(4636), + [anon_sym_restrict] = ACTIONS(4636), + [anon_sym___restrict__] = ACTIONS(4636), + [anon_sym__Atomic] = ACTIONS(4636), + [anon_sym__Noreturn] = ACTIONS(4636), + [anon_sym_noreturn] = ACTIONS(4636), + [anon_sym__Nonnull] = ACTIONS(4636), + [anon_sym_mutable] = ACTIONS(4636), + [anon_sym_constinit] = ACTIONS(4636), + [anon_sym_consteval] = ACTIONS(4636), + [anon_sym_alignas] = ACTIONS(4636), + [anon_sym__Alignas] = ACTIONS(4636), + [sym_primitive_type] = ACTIONS(4636), + [anon_sym_enum] = ACTIONS(4636), + [anon_sym_class] = ACTIONS(4636), + [anon_sym_struct] = ACTIONS(4636), + [anon_sym_union] = ACTIONS(4636), + [anon_sym_if] = ACTIONS(4636), + [anon_sym_switch] = ACTIONS(4636), + [anon_sym_case] = ACTIONS(4636), + [anon_sym_default] = ACTIONS(4636), + [anon_sym_while] = ACTIONS(4636), + [anon_sym_do] = ACTIONS(4636), + [anon_sym_for] = ACTIONS(4636), + [anon_sym_return] = ACTIONS(4636), + [anon_sym_break] = ACTIONS(4636), + [anon_sym_continue] = ACTIONS(4636), + [anon_sym_goto] = ACTIONS(4636), + [anon_sym_not] = ACTIONS(4636), + [anon_sym_compl] = ACTIONS(4636), + [anon_sym_DASH_DASH] = ACTIONS(4638), + [anon_sym_PLUS_PLUS] = ACTIONS(4638), + [anon_sym_sizeof] = ACTIONS(4636), + [anon_sym___alignof__] = ACTIONS(4636), + [anon_sym___alignof] = ACTIONS(4636), + [anon_sym__alignof] = ACTIONS(4636), + [anon_sym_alignof] = ACTIONS(4636), + [anon_sym__Alignof] = ACTIONS(4636), + [anon_sym_offsetof] = ACTIONS(4636), + [anon_sym__Generic] = ACTIONS(4636), + [anon_sym_typename] = ACTIONS(4636), + [anon_sym_asm] = ACTIONS(4636), + [anon_sym___asm__] = ACTIONS(4636), + [anon_sym___asm] = ACTIONS(4636), + [sym_number_literal] = ACTIONS(4638), + [anon_sym_L_SQUOTE] = ACTIONS(4638), + [anon_sym_u_SQUOTE] = ACTIONS(4638), + [anon_sym_U_SQUOTE] = ACTIONS(4638), + [anon_sym_u8_SQUOTE] = ACTIONS(4638), + [anon_sym_SQUOTE] = ACTIONS(4638), + [anon_sym_L_DQUOTE] = ACTIONS(4638), + [anon_sym_u_DQUOTE] = ACTIONS(4638), + [anon_sym_U_DQUOTE] = ACTIONS(4638), + [anon_sym_u8_DQUOTE] = ACTIONS(4638), + [anon_sym_DQUOTE] = ACTIONS(4638), + [sym_true] = ACTIONS(4636), + [sym_false] = ACTIONS(4636), + [anon_sym_NULL] = ACTIONS(4636), + [anon_sym_nullptr] = ACTIONS(4636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4636), + [anon_sym_decltype] = ACTIONS(4636), + [anon_sym_explicit] = ACTIONS(4636), + [anon_sym_export] = ACTIONS(4636), + [anon_sym_module] = ACTIONS(4636), + [anon_sym_import] = ACTIONS(4636), + [anon_sym_template] = ACTIONS(4636), + [anon_sym_operator] = ACTIONS(4636), + [anon_sym_try] = ACTIONS(4636), + [anon_sym_delete] = ACTIONS(4636), + [anon_sym_throw] = ACTIONS(4636), + [anon_sym_namespace] = ACTIONS(4636), + [anon_sym_static_assert] = ACTIONS(4636), + [anon_sym_concept] = ACTIONS(4636), + [anon_sym_co_return] = ACTIONS(4636), + [anon_sym_co_yield] = ACTIONS(4636), + [anon_sym_R_DQUOTE] = ACTIONS(4638), + [anon_sym_LR_DQUOTE] = ACTIONS(4638), + [anon_sym_uR_DQUOTE] = ACTIONS(4638), + [anon_sym_UR_DQUOTE] = ACTIONS(4638), + [anon_sym_u8R_DQUOTE] = ACTIONS(4638), + [anon_sym_co_await] = ACTIONS(4636), + [anon_sym_new] = ACTIONS(4636), + [anon_sym_requires] = ACTIONS(4636), + [anon_sym_CARET_CARET] = ACTIONS(4638), + [anon_sym_LBRACK_COLON] = ACTIONS(4638), + [sym_this] = ACTIONS(4636), + }, + [STATE(928)] = { + [sym_identifier] = ACTIONS(4640), + [aux_sym_preproc_include_token1] = ACTIONS(4640), + [aux_sym_preproc_def_token1] = ACTIONS(4640), + [aux_sym_preproc_if_token1] = ACTIONS(4640), + [aux_sym_preproc_if_token2] = ACTIONS(4640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4640), + [sym_preproc_directive] = ACTIONS(4640), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_AMP_AMP] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4640), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym___extension__] = ACTIONS(4640), + [anon_sym_typedef] = ACTIONS(4640), + [anon_sym_virtual] = ACTIONS(4640), + [anon_sym_extern] = ACTIONS(4640), + [anon_sym___attribute__] = ACTIONS(4640), + [anon_sym___attribute] = ACTIONS(4640), + [anon_sym_using] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4642), + [anon_sym___declspec] = ACTIONS(4640), + [anon_sym___based] = ACTIONS(4640), + [anon_sym___cdecl] = ACTIONS(4640), + [anon_sym___clrcall] = ACTIONS(4640), + [anon_sym___stdcall] = ACTIONS(4640), + [anon_sym___fastcall] = ACTIONS(4640), + [anon_sym___thiscall] = ACTIONS(4640), + [anon_sym___vectorcall] = ACTIONS(4640), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_signed] = ACTIONS(4640), + [anon_sym_unsigned] = ACTIONS(4640), + [anon_sym_long] = ACTIONS(4640), + [anon_sym_short] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_static] = ACTIONS(4640), + [anon_sym_register] = ACTIONS(4640), + [anon_sym_inline] = ACTIONS(4640), + [anon_sym___inline] = ACTIONS(4640), + [anon_sym___inline__] = ACTIONS(4640), + [anon_sym___forceinline] = ACTIONS(4640), + [anon_sym_thread_local] = ACTIONS(4640), + [anon_sym___thread] = ACTIONS(4640), + [anon_sym_const] = ACTIONS(4640), + [anon_sym_constexpr] = ACTIONS(4640), + [anon_sym_volatile] = ACTIONS(4640), + [anon_sym_restrict] = ACTIONS(4640), + [anon_sym___restrict__] = ACTIONS(4640), + [anon_sym__Atomic] = ACTIONS(4640), + [anon_sym__Noreturn] = ACTIONS(4640), + [anon_sym_noreturn] = ACTIONS(4640), + [anon_sym__Nonnull] = ACTIONS(4640), + [anon_sym_mutable] = ACTIONS(4640), + [anon_sym_constinit] = ACTIONS(4640), + [anon_sym_consteval] = ACTIONS(4640), + [anon_sym_alignas] = ACTIONS(4640), + [anon_sym__Alignas] = ACTIONS(4640), + [sym_primitive_type] = ACTIONS(4640), + [anon_sym_enum] = ACTIONS(4640), + [anon_sym_class] = ACTIONS(4640), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_union] = ACTIONS(4640), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_switch] = ACTIONS(4640), + [anon_sym_case] = ACTIONS(4640), + [anon_sym_default] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_do] = ACTIONS(4640), + [anon_sym_for] = ACTIONS(4640), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_goto] = ACTIONS(4640), + [anon_sym_not] = ACTIONS(4640), + [anon_sym_compl] = ACTIONS(4640), + [anon_sym_DASH_DASH] = ACTIONS(4642), + [anon_sym_PLUS_PLUS] = ACTIONS(4642), + [anon_sym_sizeof] = ACTIONS(4640), + [anon_sym___alignof__] = ACTIONS(4640), + [anon_sym___alignof] = ACTIONS(4640), + [anon_sym__alignof] = ACTIONS(4640), + [anon_sym_alignof] = ACTIONS(4640), + [anon_sym__Alignof] = ACTIONS(4640), + [anon_sym_offsetof] = ACTIONS(4640), + [anon_sym__Generic] = ACTIONS(4640), + [anon_sym_typename] = ACTIONS(4640), + [anon_sym_asm] = ACTIONS(4640), + [anon_sym___asm__] = ACTIONS(4640), + [anon_sym___asm] = ACTIONS(4640), + [sym_number_literal] = ACTIONS(4642), + [anon_sym_L_SQUOTE] = ACTIONS(4642), + [anon_sym_u_SQUOTE] = ACTIONS(4642), + [anon_sym_U_SQUOTE] = ACTIONS(4642), + [anon_sym_u8_SQUOTE] = ACTIONS(4642), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_L_DQUOTE] = ACTIONS(4642), + [anon_sym_u_DQUOTE] = ACTIONS(4642), + [anon_sym_U_DQUOTE] = ACTIONS(4642), + [anon_sym_u8_DQUOTE] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [sym_true] = ACTIONS(4640), + [sym_false] = ACTIONS(4640), + [anon_sym_NULL] = ACTIONS(4640), + [anon_sym_nullptr] = ACTIONS(4640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4640), + [anon_sym_decltype] = ACTIONS(4640), + [anon_sym_explicit] = ACTIONS(4640), + [anon_sym_export] = ACTIONS(4640), + [anon_sym_module] = ACTIONS(4640), + [anon_sym_import] = ACTIONS(4640), + [anon_sym_template] = ACTIONS(4640), + [anon_sym_operator] = ACTIONS(4640), + [anon_sym_try] = ACTIONS(4640), + [anon_sym_delete] = ACTIONS(4640), + [anon_sym_throw] = ACTIONS(4640), + [anon_sym_namespace] = ACTIONS(4640), + [anon_sym_static_assert] = ACTIONS(4640), + [anon_sym_concept] = ACTIONS(4640), + [anon_sym_co_return] = ACTIONS(4640), + [anon_sym_co_yield] = ACTIONS(4640), + [anon_sym_R_DQUOTE] = ACTIONS(4642), + [anon_sym_LR_DQUOTE] = ACTIONS(4642), + [anon_sym_uR_DQUOTE] = ACTIONS(4642), + [anon_sym_UR_DQUOTE] = ACTIONS(4642), + [anon_sym_u8R_DQUOTE] = ACTIONS(4642), + [anon_sym_co_await] = ACTIONS(4640), + [anon_sym_new] = ACTIONS(4640), + [anon_sym_requires] = ACTIONS(4640), + [anon_sym_CARET_CARET] = ACTIONS(4642), + [anon_sym_LBRACK_COLON] = ACTIONS(4642), + [sym_this] = ACTIONS(4640), + }, + [STATE(929)] = { + [ts_builtin_sym_end] = ACTIONS(3780), + [sym_identifier] = ACTIONS(3778), + [aux_sym_preproc_include_token1] = ACTIONS(3778), + [aux_sym_preproc_def_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token1] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3778), + [sym_preproc_directive] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_BANG] = ACTIONS(3780), + [anon_sym_TILDE] = ACTIONS(3780), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_AMP_AMP] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym___extension__] = ACTIONS(3778), + [anon_sym_typedef] = ACTIONS(3778), + [anon_sym_virtual] = ACTIONS(3778), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym___attribute__] = ACTIONS(3778), + [anon_sym___attribute] = ACTIONS(3778), + [anon_sym_using] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3780), + [anon_sym___declspec] = ACTIONS(3778), + [anon_sym___based] = ACTIONS(3778), + [anon_sym___cdecl] = ACTIONS(3778), + [anon_sym___clrcall] = ACTIONS(3778), + [anon_sym___stdcall] = ACTIONS(3778), + [anon_sym___fastcall] = ACTIONS(3778), + [anon_sym___thiscall] = ACTIONS(3778), + [anon_sym___vectorcall] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3780), + [anon_sym_signed] = ACTIONS(3778), + [anon_sym_unsigned] = ACTIONS(3778), + [anon_sym_long] = ACTIONS(3778), + [anon_sym_short] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym___inline] = ACTIONS(3778), + [anon_sym___inline__] = ACTIONS(3778), + [anon_sym___forceinline] = ACTIONS(3778), + [anon_sym_thread_local] = ACTIONS(3778), + [anon_sym___thread] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym___restrict__] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym__Noreturn] = ACTIONS(3778), + [anon_sym_noreturn] = ACTIONS(3778), + [anon_sym__Nonnull] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_constinit] = ACTIONS(3778), + [anon_sym_consteval] = ACTIONS(3778), + [anon_sym_alignas] = ACTIONS(3778), + [anon_sym__Alignas] = ACTIONS(3778), + [sym_primitive_type] = ACTIONS(3778), + [anon_sym_enum] = ACTIONS(3778), + [anon_sym_class] = ACTIONS(3778), + [anon_sym_struct] = ACTIONS(3778), + [anon_sym_union] = ACTIONS(3778), + [anon_sym_if] = ACTIONS(3778), + [anon_sym_switch] = ACTIONS(3778), + [anon_sym_case] = ACTIONS(3778), + [anon_sym_default] = ACTIONS(3778), + [anon_sym_while] = ACTIONS(3778), + [anon_sym_do] = ACTIONS(3778), + [anon_sym_for] = ACTIONS(3778), + [anon_sym_return] = ACTIONS(3778), + [anon_sym_break] = ACTIONS(3778), + [anon_sym_continue] = ACTIONS(3778), + [anon_sym_goto] = ACTIONS(3778), + [anon_sym_not] = ACTIONS(3778), + [anon_sym_compl] = ACTIONS(3778), + [anon_sym_DASH_DASH] = ACTIONS(3780), + [anon_sym_PLUS_PLUS] = ACTIONS(3780), + [anon_sym_sizeof] = ACTIONS(3778), + [anon_sym___alignof__] = ACTIONS(3778), + [anon_sym___alignof] = ACTIONS(3778), + [anon_sym__alignof] = ACTIONS(3778), + [anon_sym_alignof] = ACTIONS(3778), + [anon_sym__Alignof] = ACTIONS(3778), + [anon_sym_offsetof] = ACTIONS(3778), + [anon_sym__Generic] = ACTIONS(3778), + [anon_sym_typename] = ACTIONS(3778), + [anon_sym_asm] = ACTIONS(3778), + [anon_sym___asm__] = ACTIONS(3778), + [anon_sym___asm] = ACTIONS(3778), + [sym_number_literal] = ACTIONS(3780), + [anon_sym_L_SQUOTE] = ACTIONS(3780), + [anon_sym_u_SQUOTE] = ACTIONS(3780), + [anon_sym_U_SQUOTE] = ACTIONS(3780), + [anon_sym_u8_SQUOTE] = ACTIONS(3780), + [anon_sym_SQUOTE] = ACTIONS(3780), + [anon_sym_L_DQUOTE] = ACTIONS(3780), + [anon_sym_u_DQUOTE] = ACTIONS(3780), + [anon_sym_U_DQUOTE] = ACTIONS(3780), + [anon_sym_u8_DQUOTE] = ACTIONS(3780), + [anon_sym_DQUOTE] = ACTIONS(3780), + [sym_true] = ACTIONS(3778), + [sym_false] = ACTIONS(3778), + [anon_sym_NULL] = ACTIONS(3778), + [anon_sym_nullptr] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3778), + [anon_sym_decltype] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_export] = ACTIONS(3778), + [anon_sym_module] = ACTIONS(3778), + [anon_sym_import] = ACTIONS(3778), + [anon_sym_template] = ACTIONS(3778), + [anon_sym_operator] = ACTIONS(3778), + [anon_sym_try] = ACTIONS(3778), + [anon_sym_delete] = ACTIONS(3778), + [anon_sym_throw] = ACTIONS(3778), + [anon_sym_namespace] = ACTIONS(3778), + [anon_sym_static_assert] = ACTIONS(3778), + [anon_sym_concept] = ACTIONS(3778), + [anon_sym_co_return] = ACTIONS(3778), + [anon_sym_co_yield] = ACTIONS(3778), + [anon_sym_R_DQUOTE] = ACTIONS(3780), + [anon_sym_LR_DQUOTE] = ACTIONS(3780), + [anon_sym_uR_DQUOTE] = ACTIONS(3780), + [anon_sym_UR_DQUOTE] = ACTIONS(3780), + [anon_sym_u8R_DQUOTE] = ACTIONS(3780), + [anon_sym_co_await] = ACTIONS(3778), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_requires] = ACTIONS(3778), + [anon_sym_CARET_CARET] = ACTIONS(3780), + [anon_sym_LBRACK_COLON] = ACTIONS(3780), + [sym_this] = ACTIONS(3778), + }, + [STATE(930)] = { + [ts_builtin_sym_end] = ACTIONS(3919), + [sym_identifier] = ACTIONS(3917), + [aux_sym_preproc_include_token1] = ACTIONS(3917), + [aux_sym_preproc_def_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), + [sym_preproc_directive] = ACTIONS(3917), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_BANG] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3919), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_PLUS] = ACTIONS(3917), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_typedef] = ACTIONS(3917), + [anon_sym_virtual] = ACTIONS(3917), + [anon_sym_extern] = ACTIONS(3917), + [anon_sym___attribute__] = ACTIONS(3917), + [anon_sym___attribute] = ACTIONS(3917), + [anon_sym_using] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(3919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), + [anon_sym___declspec] = ACTIONS(3917), + [anon_sym___based] = ACTIONS(3917), + [anon_sym___cdecl] = ACTIONS(3917), + [anon_sym___clrcall] = ACTIONS(3917), + [anon_sym___stdcall] = ACTIONS(3917), + [anon_sym___fastcall] = ACTIONS(3917), + [anon_sym___thiscall] = ACTIONS(3917), + [anon_sym___vectorcall] = ACTIONS(3917), + [anon_sym_LBRACE] = ACTIONS(3919), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(3917), + [anon_sym_register] = ACTIONS(3917), + [anon_sym_inline] = ACTIONS(3917), + [anon_sym___inline] = ACTIONS(3917), + [anon_sym___inline__] = ACTIONS(3917), + [anon_sym___forceinline] = ACTIONS(3917), + [anon_sym_thread_local] = ACTIONS(3917), + [anon_sym___thread] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_constexpr] = ACTIONS(3917), + [anon_sym_volatile] = ACTIONS(3917), + [anon_sym_restrict] = ACTIONS(3917), + [anon_sym___restrict__] = ACTIONS(3917), + [anon_sym__Atomic] = ACTIONS(3917), + [anon_sym__Noreturn] = ACTIONS(3917), + [anon_sym_noreturn] = ACTIONS(3917), + [anon_sym__Nonnull] = ACTIONS(3917), + [anon_sym_mutable] = ACTIONS(3917), + [anon_sym_constinit] = ACTIONS(3917), + [anon_sym_consteval] = ACTIONS(3917), + [anon_sym_alignas] = ACTIONS(3917), + [anon_sym__Alignas] = ACTIONS(3917), + [sym_primitive_type] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_if] = ACTIONS(3917), + [anon_sym_switch] = ACTIONS(3917), + [anon_sym_case] = ACTIONS(3917), + [anon_sym_default] = ACTIONS(3917), + [anon_sym_while] = ACTIONS(3917), + [anon_sym_do] = ACTIONS(3917), + [anon_sym_for] = ACTIONS(3917), + [anon_sym_return] = ACTIONS(3917), + [anon_sym_break] = ACTIONS(3917), + [anon_sym_continue] = ACTIONS(3917), + [anon_sym_goto] = ACTIONS(3917), + [anon_sym_not] = ACTIONS(3917), + [anon_sym_compl] = ACTIONS(3917), + [anon_sym_DASH_DASH] = ACTIONS(3919), + [anon_sym_PLUS_PLUS] = ACTIONS(3919), + [anon_sym_sizeof] = ACTIONS(3917), + [anon_sym___alignof__] = ACTIONS(3917), + [anon_sym___alignof] = ACTIONS(3917), + [anon_sym__alignof] = ACTIONS(3917), + [anon_sym_alignof] = ACTIONS(3917), + [anon_sym__Alignof] = ACTIONS(3917), + [anon_sym_offsetof] = ACTIONS(3917), + [anon_sym__Generic] = ACTIONS(3917), + [anon_sym_typename] = ACTIONS(3917), + [anon_sym_asm] = ACTIONS(3917), + [anon_sym___asm__] = ACTIONS(3917), + [anon_sym___asm] = ACTIONS(3917), + [sym_number_literal] = ACTIONS(3919), + [anon_sym_L_SQUOTE] = ACTIONS(3919), + [anon_sym_u_SQUOTE] = ACTIONS(3919), + [anon_sym_U_SQUOTE] = ACTIONS(3919), + [anon_sym_u8_SQUOTE] = ACTIONS(3919), + [anon_sym_SQUOTE] = ACTIONS(3919), + [anon_sym_L_DQUOTE] = ACTIONS(3919), + [anon_sym_u_DQUOTE] = ACTIONS(3919), + [anon_sym_U_DQUOTE] = ACTIONS(3919), + [anon_sym_u8_DQUOTE] = ACTIONS(3919), + [anon_sym_DQUOTE] = ACTIONS(3919), + [sym_true] = ACTIONS(3917), + [sym_false] = ACTIONS(3917), + [anon_sym_NULL] = ACTIONS(3917), + [anon_sym_nullptr] = ACTIONS(3917), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_auto] = ACTIONS(3917), + [anon_sym_decltype] = ACTIONS(3917), + [anon_sym_explicit] = ACTIONS(3917), + [anon_sym_export] = ACTIONS(3917), + [anon_sym_module] = ACTIONS(3917), + [anon_sym_import] = ACTIONS(3917), + [anon_sym_template] = ACTIONS(3917), + [anon_sym_operator] = ACTIONS(3917), + [anon_sym_try] = ACTIONS(3917), + [anon_sym_delete] = ACTIONS(3917), + [anon_sym_throw] = ACTIONS(3917), + [anon_sym_namespace] = ACTIONS(3917), + [anon_sym_static_assert] = ACTIONS(3917), + [anon_sym_concept] = ACTIONS(3917), + [anon_sym_co_return] = ACTIONS(3917), + [anon_sym_co_yield] = ACTIONS(3917), + [anon_sym_R_DQUOTE] = ACTIONS(3919), + [anon_sym_LR_DQUOTE] = ACTIONS(3919), + [anon_sym_uR_DQUOTE] = ACTIONS(3919), + [anon_sym_UR_DQUOTE] = ACTIONS(3919), + [anon_sym_u8R_DQUOTE] = ACTIONS(3919), + [anon_sym_co_await] = ACTIONS(3917), + [anon_sym_new] = ACTIONS(3917), + [anon_sym_requires] = ACTIONS(3917), + [anon_sym_CARET_CARET] = ACTIONS(3919), + [anon_sym_LBRACK_COLON] = ACTIONS(3919), + [sym_this] = ACTIONS(3917), }, - [STATE(933)] = { + [STATE(931)] = { [ts_builtin_sym_end] = ACTIONS(3923), [sym_identifier] = ACTIONS(3921), [aux_sym_preproc_include_token1] = ACTIONS(3921), @@ -192691,243 +192413,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3923), [sym_this] = ACTIONS(3921), }, - [STATE(934)] = { - [ts_builtin_sym_end] = ACTIONS(4482), - [sym_identifier] = ACTIONS(4480), - [aux_sym_preproc_include_token1] = ACTIONS(4480), - [aux_sym_preproc_def_token1] = ACTIONS(4480), - [aux_sym_preproc_if_token1] = ACTIONS(4480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4480), - [sym_preproc_directive] = ACTIONS(4480), - [anon_sym_LPAREN2] = ACTIONS(4482), - [anon_sym_BANG] = ACTIONS(4482), - [anon_sym_TILDE] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4480), - [anon_sym_PLUS] = ACTIONS(4480), - [anon_sym_STAR] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4482), - [anon_sym_AMP] = ACTIONS(4480), - [anon_sym_SEMI] = ACTIONS(4482), - [anon_sym___extension__] = ACTIONS(4480), - [anon_sym_typedef] = ACTIONS(4480), - [anon_sym_virtual] = ACTIONS(4480), - [anon_sym_extern] = ACTIONS(4480), - [anon_sym___attribute__] = ACTIONS(4480), - [anon_sym___attribute] = ACTIONS(4480), - [anon_sym_using] = ACTIONS(4480), - [anon_sym_COLON_COLON] = ACTIONS(4482), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4482), - [anon_sym___declspec] = ACTIONS(4480), - [anon_sym___based] = ACTIONS(4480), - [anon_sym___cdecl] = ACTIONS(4480), - [anon_sym___clrcall] = ACTIONS(4480), - [anon_sym___stdcall] = ACTIONS(4480), - [anon_sym___fastcall] = ACTIONS(4480), - [anon_sym___thiscall] = ACTIONS(4480), - [anon_sym___vectorcall] = ACTIONS(4480), - [anon_sym_LBRACE] = ACTIONS(4482), - [anon_sym_signed] = ACTIONS(4480), - [anon_sym_unsigned] = ACTIONS(4480), - [anon_sym_long] = ACTIONS(4480), - [anon_sym_short] = ACTIONS(4480), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_static] = ACTIONS(4480), - [anon_sym_register] = ACTIONS(4480), - [anon_sym_inline] = ACTIONS(4480), - [anon_sym___inline] = ACTIONS(4480), - [anon_sym___inline__] = ACTIONS(4480), - [anon_sym___forceinline] = ACTIONS(4480), - [anon_sym_thread_local] = ACTIONS(4480), - [anon_sym___thread] = ACTIONS(4480), - [anon_sym_const] = ACTIONS(4480), - [anon_sym_constexpr] = ACTIONS(4480), - [anon_sym_volatile] = ACTIONS(4480), - [anon_sym_restrict] = ACTIONS(4480), - [anon_sym___restrict__] = ACTIONS(4480), - [anon_sym__Atomic] = ACTIONS(4480), - [anon_sym__Noreturn] = ACTIONS(4480), - [anon_sym_noreturn] = ACTIONS(4480), - [anon_sym__Nonnull] = ACTIONS(4480), - [anon_sym_mutable] = ACTIONS(4480), - [anon_sym_constinit] = ACTIONS(4480), - [anon_sym_consteval] = ACTIONS(4480), - [anon_sym_alignas] = ACTIONS(4480), - [anon_sym__Alignas] = ACTIONS(4480), - [sym_primitive_type] = ACTIONS(4480), - [anon_sym_enum] = ACTIONS(4480), - [anon_sym_class] = ACTIONS(4480), - [anon_sym_struct] = ACTIONS(4480), - [anon_sym_union] = ACTIONS(4480), - [anon_sym_if] = ACTIONS(4480), - [anon_sym_switch] = ACTIONS(4480), - [anon_sym_case] = ACTIONS(4480), - [anon_sym_default] = ACTIONS(4480), - [anon_sym_while] = ACTIONS(4480), - [anon_sym_do] = ACTIONS(4480), - [anon_sym_for] = ACTIONS(4480), - [anon_sym_return] = ACTIONS(4480), - [anon_sym_break] = ACTIONS(4480), - [anon_sym_continue] = ACTIONS(4480), - [anon_sym_goto] = ACTIONS(4480), - [anon_sym_not] = ACTIONS(4480), - [anon_sym_compl] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4482), - [anon_sym_PLUS_PLUS] = ACTIONS(4482), - [anon_sym_sizeof] = ACTIONS(4480), - [anon_sym___alignof__] = ACTIONS(4480), - [anon_sym___alignof] = ACTIONS(4480), - [anon_sym__alignof] = ACTIONS(4480), - [anon_sym_alignof] = ACTIONS(4480), - [anon_sym__Alignof] = ACTIONS(4480), - [anon_sym_offsetof] = ACTIONS(4480), - [anon_sym__Generic] = ACTIONS(4480), - [anon_sym_typename] = ACTIONS(4480), - [anon_sym_asm] = ACTIONS(4480), - [anon_sym___asm__] = ACTIONS(4480), - [anon_sym___asm] = ACTIONS(4480), - [sym_number_literal] = ACTIONS(4482), - [anon_sym_L_SQUOTE] = ACTIONS(4482), - [anon_sym_u_SQUOTE] = ACTIONS(4482), - [anon_sym_U_SQUOTE] = ACTIONS(4482), - [anon_sym_u8_SQUOTE] = ACTIONS(4482), - [anon_sym_SQUOTE] = ACTIONS(4482), - [anon_sym_L_DQUOTE] = ACTIONS(4482), - [anon_sym_u_DQUOTE] = ACTIONS(4482), - [anon_sym_U_DQUOTE] = ACTIONS(4482), - [anon_sym_u8_DQUOTE] = ACTIONS(4482), - [anon_sym_DQUOTE] = ACTIONS(4482), - [sym_true] = ACTIONS(4480), - [sym_false] = ACTIONS(4480), - [anon_sym_NULL] = ACTIONS(4480), - [anon_sym_nullptr] = ACTIONS(4480), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4480), - [anon_sym_decltype] = ACTIONS(4480), - [anon_sym_explicit] = ACTIONS(4480), - [anon_sym_export] = ACTIONS(4480), - [anon_sym_module] = ACTIONS(4480), - [anon_sym_import] = ACTIONS(4480), - [anon_sym_template] = ACTIONS(4480), - [anon_sym_operator] = ACTIONS(4480), - [anon_sym_try] = ACTIONS(4480), - [anon_sym_delete] = ACTIONS(4480), - [anon_sym_throw] = ACTIONS(4480), - [anon_sym_namespace] = ACTIONS(4480), - [anon_sym_static_assert] = ACTIONS(4480), - [anon_sym_concept] = ACTIONS(4480), - [anon_sym_co_return] = ACTIONS(4480), - [anon_sym_co_yield] = ACTIONS(4480), - [anon_sym_R_DQUOTE] = ACTIONS(4482), - [anon_sym_LR_DQUOTE] = ACTIONS(4482), - [anon_sym_uR_DQUOTE] = ACTIONS(4482), - [anon_sym_UR_DQUOTE] = ACTIONS(4482), - [anon_sym_u8R_DQUOTE] = ACTIONS(4482), - [anon_sym_co_await] = ACTIONS(4480), - [anon_sym_new] = ACTIONS(4480), - [anon_sym_requires] = ACTIONS(4480), - [anon_sym_CARET_CARET] = ACTIONS(4482), - [anon_sym_LBRACK_COLON] = ACTIONS(4482), - [sym_this] = ACTIONS(4480), - }, - [STATE(935)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(932)] = { + [sym_preproc_def] = STATE(936), + [sym_preproc_function_def] = STATE(936), + [sym_preproc_call] = STATE(936), + [sym_preproc_if_in_field_declaration_list] = STATE(936), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(936), + [sym_type_definition] = STATE(936), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(936), + [sym_field_declaration] = STATE(936), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(936), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(936), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(936), + [sym_operator_cast_declaration] = STATE(936), + [sym_constructor_or_destructor_definition] = STATE(936), + [sym_constructor_or_destructor_declaration] = STATE(936), + [sym_friend_declaration] = STATE(936), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(936), + [sym_alias_declaration] = STATE(936), + [sym_static_assert_declaration] = STATE(936), + [sym_consteval_block_declaration] = STATE(936), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(936), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4789), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_RBRACE] = ACTIONS(4791), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -192937,7 +192520,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -192947,126 +192530,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(933)] = { + [sym_identifier] = ACTIONS(4644), + [aux_sym_preproc_include_token1] = ACTIONS(4644), + [aux_sym_preproc_def_token1] = ACTIONS(4644), + [aux_sym_preproc_if_token1] = ACTIONS(4644), + [aux_sym_preproc_if_token2] = ACTIONS(4644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4644), + [sym_preproc_directive] = ACTIONS(4644), + [anon_sym_LPAREN2] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4646), + [anon_sym_TILDE] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym___extension__] = ACTIONS(4644), + [anon_sym_typedef] = ACTIONS(4644), + [anon_sym_virtual] = ACTIONS(4644), + [anon_sym_extern] = ACTIONS(4644), + [anon_sym___attribute__] = ACTIONS(4644), + [anon_sym___attribute] = ACTIONS(4644), + [anon_sym_using] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4646), + [anon_sym___declspec] = ACTIONS(4644), + [anon_sym___based] = ACTIONS(4644), + [anon_sym___cdecl] = ACTIONS(4644), + [anon_sym___clrcall] = ACTIONS(4644), + [anon_sym___stdcall] = ACTIONS(4644), + [anon_sym___fastcall] = ACTIONS(4644), + [anon_sym___thiscall] = ACTIONS(4644), + [anon_sym___vectorcall] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_signed] = ACTIONS(4644), + [anon_sym_unsigned] = ACTIONS(4644), + [anon_sym_long] = ACTIONS(4644), + [anon_sym_short] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_static] = ACTIONS(4644), + [anon_sym_register] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym___inline] = ACTIONS(4644), + [anon_sym___inline__] = ACTIONS(4644), + [anon_sym___forceinline] = ACTIONS(4644), + [anon_sym_thread_local] = ACTIONS(4644), + [anon_sym___thread] = ACTIONS(4644), + [anon_sym_const] = ACTIONS(4644), + [anon_sym_constexpr] = ACTIONS(4644), + [anon_sym_volatile] = ACTIONS(4644), + [anon_sym_restrict] = ACTIONS(4644), + [anon_sym___restrict__] = ACTIONS(4644), + [anon_sym__Atomic] = ACTIONS(4644), + [anon_sym__Noreturn] = ACTIONS(4644), + [anon_sym_noreturn] = ACTIONS(4644), + [anon_sym__Nonnull] = ACTIONS(4644), + [anon_sym_mutable] = ACTIONS(4644), + [anon_sym_constinit] = ACTIONS(4644), + [anon_sym_consteval] = ACTIONS(4644), + [anon_sym_alignas] = ACTIONS(4644), + [anon_sym__Alignas] = ACTIONS(4644), + [sym_primitive_type] = ACTIONS(4644), + [anon_sym_enum] = ACTIONS(4644), + [anon_sym_class] = ACTIONS(4644), + [anon_sym_struct] = ACTIONS(4644), + [anon_sym_union] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_switch] = ACTIONS(4644), + [anon_sym_case] = ACTIONS(4644), + [anon_sym_default] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_do] = ACTIONS(4644), + [anon_sym_for] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_goto] = ACTIONS(4644), + [anon_sym_not] = ACTIONS(4644), + [anon_sym_compl] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_sizeof] = ACTIONS(4644), + [anon_sym___alignof__] = ACTIONS(4644), + [anon_sym___alignof] = ACTIONS(4644), + [anon_sym__alignof] = ACTIONS(4644), + [anon_sym_alignof] = ACTIONS(4644), + [anon_sym__Alignof] = ACTIONS(4644), + [anon_sym_offsetof] = ACTIONS(4644), + [anon_sym__Generic] = ACTIONS(4644), + [anon_sym_typename] = ACTIONS(4644), + [anon_sym_asm] = ACTIONS(4644), + [anon_sym___asm__] = ACTIONS(4644), + [anon_sym___asm] = ACTIONS(4644), + [sym_number_literal] = ACTIONS(4646), + [anon_sym_L_SQUOTE] = ACTIONS(4646), + [anon_sym_u_SQUOTE] = ACTIONS(4646), + [anon_sym_U_SQUOTE] = ACTIONS(4646), + [anon_sym_u8_SQUOTE] = ACTIONS(4646), + [anon_sym_SQUOTE] = ACTIONS(4646), + [anon_sym_L_DQUOTE] = ACTIONS(4646), + [anon_sym_u_DQUOTE] = ACTIONS(4646), + [anon_sym_U_DQUOTE] = ACTIONS(4646), + [anon_sym_u8_DQUOTE] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(4646), + [sym_true] = ACTIONS(4644), + [sym_false] = ACTIONS(4644), + [anon_sym_NULL] = ACTIONS(4644), + [anon_sym_nullptr] = ACTIONS(4644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4644), + [anon_sym_decltype] = ACTIONS(4644), + [anon_sym_explicit] = ACTIONS(4644), + [anon_sym_export] = ACTIONS(4644), + [anon_sym_module] = ACTIONS(4644), + [anon_sym_import] = ACTIONS(4644), + [anon_sym_template] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_delete] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_namespace] = ACTIONS(4644), + [anon_sym_static_assert] = ACTIONS(4644), + [anon_sym_concept] = ACTIONS(4644), + [anon_sym_co_return] = ACTIONS(4644), + [anon_sym_co_yield] = ACTIONS(4644), + [anon_sym_R_DQUOTE] = ACTIONS(4646), + [anon_sym_LR_DQUOTE] = ACTIONS(4646), + [anon_sym_uR_DQUOTE] = ACTIONS(4646), + [anon_sym_UR_DQUOTE] = ACTIONS(4646), + [anon_sym_u8R_DQUOTE] = ACTIONS(4646), + [anon_sym_co_await] = ACTIONS(4644), + [anon_sym_new] = ACTIONS(4644), + [anon_sym_requires] = ACTIONS(4644), + [anon_sym_CARET_CARET] = ACTIONS(4646), + [anon_sym_LBRACK_COLON] = ACTIONS(4646), + [sym_this] = ACTIONS(4644), + }, + [STATE(934)] = { + [sym_identifier] = ACTIONS(4648), + [aux_sym_preproc_include_token1] = ACTIONS(4648), + [aux_sym_preproc_def_token1] = ACTIONS(4648), + [aux_sym_preproc_if_token1] = ACTIONS(4648), + [aux_sym_preproc_if_token2] = ACTIONS(4648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4648), + [sym_preproc_directive] = ACTIONS(4648), + [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_BANG] = ACTIONS(4650), + [anon_sym_TILDE] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4650), + [anon_sym_AMP_AMP] = ACTIONS(4650), + [anon_sym_AMP] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym___extension__] = ACTIONS(4648), + [anon_sym_typedef] = ACTIONS(4648), + [anon_sym_virtual] = ACTIONS(4648), + [anon_sym_extern] = ACTIONS(4648), + [anon_sym___attribute__] = ACTIONS(4648), + [anon_sym___attribute] = ACTIONS(4648), + [anon_sym_using] = ACTIONS(4648), + [anon_sym_COLON_COLON] = ACTIONS(4650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4650), + [anon_sym___declspec] = ACTIONS(4648), + [anon_sym___based] = ACTIONS(4648), + [anon_sym___cdecl] = ACTIONS(4648), + [anon_sym___clrcall] = ACTIONS(4648), + [anon_sym___stdcall] = ACTIONS(4648), + [anon_sym___fastcall] = ACTIONS(4648), + [anon_sym___thiscall] = ACTIONS(4648), + [anon_sym___vectorcall] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_signed] = ACTIONS(4648), + [anon_sym_unsigned] = ACTIONS(4648), + [anon_sym_long] = ACTIONS(4648), + [anon_sym_short] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_static] = ACTIONS(4648), + [anon_sym_register] = ACTIONS(4648), + [anon_sym_inline] = ACTIONS(4648), + [anon_sym___inline] = ACTIONS(4648), + [anon_sym___inline__] = ACTIONS(4648), + [anon_sym___forceinline] = ACTIONS(4648), + [anon_sym_thread_local] = ACTIONS(4648), + [anon_sym___thread] = ACTIONS(4648), + [anon_sym_const] = ACTIONS(4648), + [anon_sym_constexpr] = ACTIONS(4648), + [anon_sym_volatile] = ACTIONS(4648), + [anon_sym_restrict] = ACTIONS(4648), + [anon_sym___restrict__] = ACTIONS(4648), + [anon_sym__Atomic] = ACTIONS(4648), + [anon_sym__Noreturn] = ACTIONS(4648), + [anon_sym_noreturn] = ACTIONS(4648), + [anon_sym__Nonnull] = ACTIONS(4648), + [anon_sym_mutable] = ACTIONS(4648), + [anon_sym_constinit] = ACTIONS(4648), + [anon_sym_consteval] = ACTIONS(4648), + [anon_sym_alignas] = ACTIONS(4648), + [anon_sym__Alignas] = ACTIONS(4648), + [sym_primitive_type] = ACTIONS(4648), + [anon_sym_enum] = ACTIONS(4648), + [anon_sym_class] = ACTIONS(4648), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_union] = ACTIONS(4648), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_switch] = ACTIONS(4648), + [anon_sym_case] = ACTIONS(4648), + [anon_sym_default] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_do] = ACTIONS(4648), + [anon_sym_for] = ACTIONS(4648), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_goto] = ACTIONS(4648), + [anon_sym_not] = ACTIONS(4648), + [anon_sym_compl] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_PLUS_PLUS] = ACTIONS(4650), + [anon_sym_sizeof] = ACTIONS(4648), + [anon_sym___alignof__] = ACTIONS(4648), + [anon_sym___alignof] = ACTIONS(4648), + [anon_sym__alignof] = ACTIONS(4648), + [anon_sym_alignof] = ACTIONS(4648), + [anon_sym__Alignof] = ACTIONS(4648), + [anon_sym_offsetof] = ACTIONS(4648), + [anon_sym__Generic] = ACTIONS(4648), + [anon_sym_typename] = ACTIONS(4648), + [anon_sym_asm] = ACTIONS(4648), + [anon_sym___asm__] = ACTIONS(4648), + [anon_sym___asm] = ACTIONS(4648), + [sym_number_literal] = ACTIONS(4650), + [anon_sym_L_SQUOTE] = ACTIONS(4650), + [anon_sym_u_SQUOTE] = ACTIONS(4650), + [anon_sym_U_SQUOTE] = ACTIONS(4650), + [anon_sym_u8_SQUOTE] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4650), + [anon_sym_L_DQUOTE] = ACTIONS(4650), + [anon_sym_u_DQUOTE] = ACTIONS(4650), + [anon_sym_U_DQUOTE] = ACTIONS(4650), + [anon_sym_u8_DQUOTE] = ACTIONS(4650), + [anon_sym_DQUOTE] = ACTIONS(4650), + [sym_true] = ACTIONS(4648), + [sym_false] = ACTIONS(4648), + [anon_sym_NULL] = ACTIONS(4648), + [anon_sym_nullptr] = ACTIONS(4648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4648), + [anon_sym_decltype] = ACTIONS(4648), + [anon_sym_explicit] = ACTIONS(4648), + [anon_sym_export] = ACTIONS(4648), + [anon_sym_module] = ACTIONS(4648), + [anon_sym_import] = ACTIONS(4648), + [anon_sym_template] = ACTIONS(4648), + [anon_sym_operator] = ACTIONS(4648), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_delete] = ACTIONS(4648), + [anon_sym_throw] = ACTIONS(4648), + [anon_sym_namespace] = ACTIONS(4648), + [anon_sym_static_assert] = ACTIONS(4648), + [anon_sym_concept] = ACTIONS(4648), + [anon_sym_co_return] = ACTIONS(4648), + [anon_sym_co_yield] = ACTIONS(4648), + [anon_sym_R_DQUOTE] = ACTIONS(4650), + [anon_sym_LR_DQUOTE] = ACTIONS(4650), + [anon_sym_uR_DQUOTE] = ACTIONS(4650), + [anon_sym_UR_DQUOTE] = ACTIONS(4650), + [anon_sym_u8R_DQUOTE] = ACTIONS(4650), + [anon_sym_co_await] = ACTIONS(4648), + [anon_sym_new] = ACTIONS(4648), + [anon_sym_requires] = ACTIONS(4648), + [anon_sym_CARET_CARET] = ACTIONS(4650), + [anon_sym_LBRACK_COLON] = ACTIONS(4650), + [sym_this] = ACTIONS(4648), + }, + [STATE(935)] = { + [sym_identifier] = ACTIONS(4652), + [aux_sym_preproc_include_token1] = ACTIONS(4652), + [aux_sym_preproc_def_token1] = ACTIONS(4652), + [aux_sym_preproc_if_token1] = ACTIONS(4652), + [aux_sym_preproc_if_token2] = ACTIONS(4652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4652), + [sym_preproc_directive] = ACTIONS(4652), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4654), + [anon_sym_TILDE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_AMP] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym___extension__] = ACTIONS(4652), + [anon_sym_typedef] = ACTIONS(4652), + [anon_sym_virtual] = ACTIONS(4652), + [anon_sym_extern] = ACTIONS(4652), + [anon_sym___attribute__] = ACTIONS(4652), + [anon_sym___attribute] = ACTIONS(4652), + [anon_sym_using] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4654), + [anon_sym___declspec] = ACTIONS(4652), + [anon_sym___based] = ACTIONS(4652), + [anon_sym___cdecl] = ACTIONS(4652), + [anon_sym___clrcall] = ACTIONS(4652), + [anon_sym___stdcall] = ACTIONS(4652), + [anon_sym___fastcall] = ACTIONS(4652), + [anon_sym___thiscall] = ACTIONS(4652), + [anon_sym___vectorcall] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_signed] = ACTIONS(4652), + [anon_sym_unsigned] = ACTIONS(4652), + [anon_sym_long] = ACTIONS(4652), + [anon_sym_short] = ACTIONS(4652), + [anon_sym_LBRACK] = ACTIONS(4652), + [anon_sym_static] = ACTIONS(4652), + [anon_sym_register] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym___inline] = ACTIONS(4652), + [anon_sym___inline__] = ACTIONS(4652), + [anon_sym___forceinline] = ACTIONS(4652), + [anon_sym_thread_local] = ACTIONS(4652), + [anon_sym___thread] = ACTIONS(4652), + [anon_sym_const] = ACTIONS(4652), + [anon_sym_constexpr] = ACTIONS(4652), + [anon_sym_volatile] = ACTIONS(4652), + [anon_sym_restrict] = ACTIONS(4652), + [anon_sym___restrict__] = ACTIONS(4652), + [anon_sym__Atomic] = ACTIONS(4652), + [anon_sym__Noreturn] = ACTIONS(4652), + [anon_sym_noreturn] = ACTIONS(4652), + [anon_sym__Nonnull] = ACTIONS(4652), + [anon_sym_mutable] = ACTIONS(4652), + [anon_sym_constinit] = ACTIONS(4652), + [anon_sym_consteval] = ACTIONS(4652), + [anon_sym_alignas] = ACTIONS(4652), + [anon_sym__Alignas] = ACTIONS(4652), + [sym_primitive_type] = ACTIONS(4652), + [anon_sym_enum] = ACTIONS(4652), + [anon_sym_class] = ACTIONS(4652), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_union] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_switch] = ACTIONS(4652), + [anon_sym_case] = ACTIONS(4652), + [anon_sym_default] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_do] = ACTIONS(4652), + [anon_sym_for] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_goto] = ACTIONS(4652), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_compl] = ACTIONS(4652), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_sizeof] = ACTIONS(4652), + [anon_sym___alignof__] = ACTIONS(4652), + [anon_sym___alignof] = ACTIONS(4652), + [anon_sym__alignof] = ACTIONS(4652), + [anon_sym_alignof] = ACTIONS(4652), + [anon_sym__Alignof] = ACTIONS(4652), + [anon_sym_offsetof] = ACTIONS(4652), + [anon_sym__Generic] = ACTIONS(4652), + [anon_sym_typename] = ACTIONS(4652), + [anon_sym_asm] = ACTIONS(4652), + [anon_sym___asm__] = ACTIONS(4652), + [anon_sym___asm] = ACTIONS(4652), + [sym_number_literal] = ACTIONS(4654), + [anon_sym_L_SQUOTE] = ACTIONS(4654), + [anon_sym_u_SQUOTE] = ACTIONS(4654), + [anon_sym_U_SQUOTE] = ACTIONS(4654), + [anon_sym_u8_SQUOTE] = ACTIONS(4654), + [anon_sym_SQUOTE] = ACTIONS(4654), + [anon_sym_L_DQUOTE] = ACTIONS(4654), + [anon_sym_u_DQUOTE] = ACTIONS(4654), + [anon_sym_U_DQUOTE] = ACTIONS(4654), + [anon_sym_u8_DQUOTE] = ACTIONS(4654), + [anon_sym_DQUOTE] = ACTIONS(4654), + [sym_true] = ACTIONS(4652), + [sym_false] = ACTIONS(4652), + [anon_sym_NULL] = ACTIONS(4652), + [anon_sym_nullptr] = ACTIONS(4652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4652), + [anon_sym_decltype] = ACTIONS(4652), + [anon_sym_explicit] = ACTIONS(4652), + [anon_sym_export] = ACTIONS(4652), + [anon_sym_module] = ACTIONS(4652), + [anon_sym_import] = ACTIONS(4652), + [anon_sym_template] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_delete] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_namespace] = ACTIONS(4652), + [anon_sym_static_assert] = ACTIONS(4652), + [anon_sym_concept] = ACTIONS(4652), + [anon_sym_co_return] = ACTIONS(4652), + [anon_sym_co_yield] = ACTIONS(4652), + [anon_sym_R_DQUOTE] = ACTIONS(4654), + [anon_sym_LR_DQUOTE] = ACTIONS(4654), + [anon_sym_uR_DQUOTE] = ACTIONS(4654), + [anon_sym_UR_DQUOTE] = ACTIONS(4654), + [anon_sym_u8R_DQUOTE] = ACTIONS(4654), + [anon_sym_co_await] = ACTIONS(4652), + [anon_sym_new] = ACTIONS(4652), + [anon_sym_requires] = ACTIONS(4652), + [anon_sym_CARET_CARET] = ACTIONS(4654), + [anon_sym_LBRACK_COLON] = ACTIONS(4654), + [sym_this] = ACTIONS(4652), }, [STATE(936)] = { - [sym_preproc_def] = STATE(940), - [sym_preproc_function_def] = STATE(940), - [sym_preproc_call] = STATE(940), - [sym_preproc_if_in_field_declaration_list] = STATE(940), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(940), - [sym_type_definition] = STATE(940), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(940), - [sym_field_declaration] = STATE(940), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(940), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(940), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(940), - [sym_operator_cast_declaration] = STATE(940), - [sym_constructor_or_destructor_definition] = STATE(940), - [sym_constructor_or_destructor_declaration] = STATE(940), - [sym_friend_declaration] = STATE(940), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(940), - [sym_alias_declaration] = STATE(940), - [sym_static_assert_declaration] = STATE(940), - [sym_consteval_block_declaration] = STATE(940), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(940), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4783), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4785), + [anon_sym_RBRACE] = ACTIONS(4793), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -193076,7 +193076,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -193086,821 +193086,1655 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(937)] = { - [ts_builtin_sym_end] = ACTIONS(4190), - [sym_identifier] = ACTIONS(4188), - [aux_sym_preproc_include_token1] = ACTIONS(4188), - [aux_sym_preproc_def_token1] = ACTIONS(4188), - [aux_sym_preproc_if_token1] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4188), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4188), - [sym_preproc_directive] = ACTIONS(4188), - [anon_sym_LPAREN2] = ACTIONS(4190), - [anon_sym_BANG] = ACTIONS(4190), - [anon_sym_TILDE] = ACTIONS(4190), - [anon_sym_DASH] = ACTIONS(4188), - [anon_sym_PLUS] = ACTIONS(4188), - [anon_sym_STAR] = ACTIONS(4190), - [anon_sym_AMP_AMP] = ACTIONS(4190), - [anon_sym_AMP] = ACTIONS(4188), - [anon_sym_SEMI] = ACTIONS(4190), - [anon_sym___extension__] = ACTIONS(4188), - [anon_sym_typedef] = ACTIONS(4188), - [anon_sym_virtual] = ACTIONS(4188), - [anon_sym_extern] = ACTIONS(4188), - [anon_sym___attribute__] = ACTIONS(4188), - [anon_sym___attribute] = ACTIONS(4188), - [anon_sym_using] = ACTIONS(4188), - [anon_sym_COLON_COLON] = ACTIONS(4190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4190), - [anon_sym___declspec] = ACTIONS(4188), - [anon_sym___based] = ACTIONS(4188), - [anon_sym___cdecl] = ACTIONS(4188), - [anon_sym___clrcall] = ACTIONS(4188), - [anon_sym___stdcall] = ACTIONS(4188), - [anon_sym___fastcall] = ACTIONS(4188), - [anon_sym___thiscall] = ACTIONS(4188), - [anon_sym___vectorcall] = ACTIONS(4188), - [anon_sym_LBRACE] = ACTIONS(4190), - [anon_sym_signed] = ACTIONS(4188), - [anon_sym_unsigned] = ACTIONS(4188), - [anon_sym_long] = ACTIONS(4188), - [anon_sym_short] = ACTIONS(4188), - [anon_sym_LBRACK] = ACTIONS(4188), - [anon_sym_static] = ACTIONS(4188), - [anon_sym_register] = ACTIONS(4188), - [anon_sym_inline] = ACTIONS(4188), - [anon_sym___inline] = ACTIONS(4188), - [anon_sym___inline__] = ACTIONS(4188), - [anon_sym___forceinline] = ACTIONS(4188), - [anon_sym_thread_local] = ACTIONS(4188), - [anon_sym___thread] = ACTIONS(4188), - [anon_sym_const] = ACTIONS(4188), - [anon_sym_constexpr] = ACTIONS(4188), - [anon_sym_volatile] = ACTIONS(4188), - [anon_sym_restrict] = ACTIONS(4188), - [anon_sym___restrict__] = ACTIONS(4188), - [anon_sym__Atomic] = ACTIONS(4188), - [anon_sym__Noreturn] = ACTIONS(4188), - [anon_sym_noreturn] = ACTIONS(4188), - [anon_sym__Nonnull] = ACTIONS(4188), - [anon_sym_mutable] = ACTIONS(4188), - [anon_sym_constinit] = ACTIONS(4188), - [anon_sym_consteval] = ACTIONS(4188), - [anon_sym_alignas] = ACTIONS(4188), - [anon_sym__Alignas] = ACTIONS(4188), - [sym_primitive_type] = ACTIONS(4188), - [anon_sym_enum] = ACTIONS(4188), - [anon_sym_class] = ACTIONS(4188), - [anon_sym_struct] = ACTIONS(4188), - [anon_sym_union] = ACTIONS(4188), - [anon_sym_if] = ACTIONS(4188), - [anon_sym_switch] = ACTIONS(4188), - [anon_sym_case] = ACTIONS(4188), - [anon_sym_default] = ACTIONS(4188), - [anon_sym_while] = ACTIONS(4188), - [anon_sym_do] = ACTIONS(4188), - [anon_sym_for] = ACTIONS(4188), - [anon_sym_return] = ACTIONS(4188), - [anon_sym_break] = ACTIONS(4188), - [anon_sym_continue] = ACTIONS(4188), - [anon_sym_goto] = ACTIONS(4188), - [anon_sym_not] = ACTIONS(4188), - [anon_sym_compl] = ACTIONS(4188), - [anon_sym_DASH_DASH] = ACTIONS(4190), - [anon_sym_PLUS_PLUS] = ACTIONS(4190), - [anon_sym_sizeof] = ACTIONS(4188), - [anon_sym___alignof__] = ACTIONS(4188), - [anon_sym___alignof] = ACTIONS(4188), - [anon_sym__alignof] = ACTIONS(4188), - [anon_sym_alignof] = ACTIONS(4188), - [anon_sym__Alignof] = ACTIONS(4188), - [anon_sym_offsetof] = ACTIONS(4188), - [anon_sym__Generic] = ACTIONS(4188), - [anon_sym_typename] = ACTIONS(4188), - [anon_sym_asm] = ACTIONS(4188), - [anon_sym___asm__] = ACTIONS(4188), - [anon_sym___asm] = ACTIONS(4188), - [sym_number_literal] = ACTIONS(4190), - [anon_sym_L_SQUOTE] = ACTIONS(4190), - [anon_sym_u_SQUOTE] = ACTIONS(4190), - [anon_sym_U_SQUOTE] = ACTIONS(4190), - [anon_sym_u8_SQUOTE] = ACTIONS(4190), - [anon_sym_SQUOTE] = ACTIONS(4190), - [anon_sym_L_DQUOTE] = ACTIONS(4190), - [anon_sym_u_DQUOTE] = ACTIONS(4190), - [anon_sym_U_DQUOTE] = ACTIONS(4190), - [anon_sym_u8_DQUOTE] = ACTIONS(4190), - [anon_sym_DQUOTE] = ACTIONS(4190), - [sym_true] = ACTIONS(4188), - [sym_false] = ACTIONS(4188), - [anon_sym_NULL] = ACTIONS(4188), - [anon_sym_nullptr] = ACTIONS(4188), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4188), - [anon_sym_decltype] = ACTIONS(4188), - [anon_sym_explicit] = ACTIONS(4188), - [anon_sym_export] = ACTIONS(4188), - [anon_sym_module] = ACTIONS(4188), - [anon_sym_import] = ACTIONS(4188), - [anon_sym_template] = ACTIONS(4188), - [anon_sym_operator] = ACTIONS(4188), - [anon_sym_try] = ACTIONS(4188), - [anon_sym_delete] = ACTIONS(4188), - [anon_sym_throw] = ACTIONS(4188), - [anon_sym_namespace] = ACTIONS(4188), - [anon_sym_static_assert] = ACTIONS(4188), - [anon_sym_concept] = ACTIONS(4188), - [anon_sym_co_return] = ACTIONS(4188), - [anon_sym_co_yield] = ACTIONS(4188), - [anon_sym_R_DQUOTE] = ACTIONS(4190), - [anon_sym_LR_DQUOTE] = ACTIONS(4190), - [anon_sym_uR_DQUOTE] = ACTIONS(4190), - [anon_sym_UR_DQUOTE] = ACTIONS(4190), - [anon_sym_u8R_DQUOTE] = ACTIONS(4190), - [anon_sym_co_await] = ACTIONS(4188), - [anon_sym_new] = ACTIONS(4188), - [anon_sym_requires] = ACTIONS(4188), - [anon_sym_CARET_CARET] = ACTIONS(4190), - [anon_sym_LBRACK_COLON] = ACTIONS(4190), - [sym_this] = ACTIONS(4188), + [ts_builtin_sym_end] = ACTIONS(4046), + [sym_identifier] = ACTIONS(4044), + [aux_sym_preproc_include_token1] = ACTIONS(4044), + [aux_sym_preproc_def_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [sym_preproc_directive] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_BANG] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_DASH] = ACTIONS(4044), + [anon_sym_PLUS] = ACTIONS(4044), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym___extension__] = ACTIONS(4044), + [anon_sym_typedef] = ACTIONS(4044), + [anon_sym_virtual] = ACTIONS(4044), + [anon_sym_extern] = ACTIONS(4044), + [anon_sym___attribute__] = ACTIONS(4044), + [anon_sym___attribute] = ACTIONS(4044), + [anon_sym_using] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), + [anon_sym___declspec] = ACTIONS(4044), + [anon_sym___based] = ACTIONS(4044), + [anon_sym___cdecl] = ACTIONS(4044), + [anon_sym___clrcall] = ACTIONS(4044), + [anon_sym___stdcall] = ACTIONS(4044), + [anon_sym___fastcall] = ACTIONS(4044), + [anon_sym___thiscall] = ACTIONS(4044), + [anon_sym___vectorcall] = ACTIONS(4044), + [anon_sym_LBRACE] = ACTIONS(4046), + [anon_sym_signed] = ACTIONS(4044), + [anon_sym_unsigned] = ACTIONS(4044), + [anon_sym_long] = ACTIONS(4044), + [anon_sym_short] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_register] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym___inline] = ACTIONS(4044), + [anon_sym___inline__] = ACTIONS(4044), + [anon_sym___forceinline] = ACTIONS(4044), + [anon_sym_thread_local] = ACTIONS(4044), + [anon_sym___thread] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_constexpr] = ACTIONS(4044), + [anon_sym_volatile] = ACTIONS(4044), + [anon_sym_restrict] = ACTIONS(4044), + [anon_sym___restrict__] = ACTIONS(4044), + [anon_sym__Atomic] = ACTIONS(4044), + [anon_sym__Noreturn] = ACTIONS(4044), + [anon_sym_noreturn] = ACTIONS(4044), + [anon_sym__Nonnull] = ACTIONS(4044), + [anon_sym_mutable] = ACTIONS(4044), + [anon_sym_constinit] = ACTIONS(4044), + [anon_sym_consteval] = ACTIONS(4044), + [anon_sym_alignas] = ACTIONS(4044), + [anon_sym__Alignas] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_class] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_if] = ACTIONS(4044), + [anon_sym_switch] = ACTIONS(4044), + [anon_sym_case] = ACTIONS(4044), + [anon_sym_default] = ACTIONS(4044), + [anon_sym_while] = ACTIONS(4044), + [anon_sym_do] = ACTIONS(4044), + [anon_sym_for] = ACTIONS(4044), + [anon_sym_return] = ACTIONS(4044), + [anon_sym_break] = ACTIONS(4044), + [anon_sym_continue] = ACTIONS(4044), + [anon_sym_goto] = ACTIONS(4044), + [anon_sym_not] = ACTIONS(4044), + [anon_sym_compl] = ACTIONS(4044), + [anon_sym_DASH_DASH] = ACTIONS(4046), + [anon_sym_PLUS_PLUS] = ACTIONS(4046), + [anon_sym_sizeof] = ACTIONS(4044), + [anon_sym___alignof__] = ACTIONS(4044), + [anon_sym___alignof] = ACTIONS(4044), + [anon_sym__alignof] = ACTIONS(4044), + [anon_sym_alignof] = ACTIONS(4044), + [anon_sym__Alignof] = ACTIONS(4044), + [anon_sym_offsetof] = ACTIONS(4044), + [anon_sym__Generic] = ACTIONS(4044), + [anon_sym_typename] = ACTIONS(4044), + [anon_sym_asm] = ACTIONS(4044), + [anon_sym___asm__] = ACTIONS(4044), + [anon_sym___asm] = ACTIONS(4044), + [sym_number_literal] = ACTIONS(4046), + [anon_sym_L_SQUOTE] = ACTIONS(4046), + [anon_sym_u_SQUOTE] = ACTIONS(4046), + [anon_sym_U_SQUOTE] = ACTIONS(4046), + [anon_sym_u8_SQUOTE] = ACTIONS(4046), + [anon_sym_SQUOTE] = ACTIONS(4046), + [anon_sym_L_DQUOTE] = ACTIONS(4046), + [anon_sym_u_DQUOTE] = ACTIONS(4046), + [anon_sym_U_DQUOTE] = ACTIONS(4046), + [anon_sym_u8_DQUOTE] = ACTIONS(4046), + [anon_sym_DQUOTE] = ACTIONS(4046), + [sym_true] = ACTIONS(4044), + [sym_false] = ACTIONS(4044), + [anon_sym_NULL] = ACTIONS(4044), + [anon_sym_nullptr] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_export] = ACTIONS(4044), + [anon_sym_module] = ACTIONS(4044), + [anon_sym_import] = ACTIONS(4044), + [anon_sym_template] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_try] = ACTIONS(4044), + [anon_sym_delete] = ACTIONS(4044), + [anon_sym_throw] = ACTIONS(4044), + [anon_sym_namespace] = ACTIONS(4044), + [anon_sym_static_assert] = ACTIONS(4044), + [anon_sym_concept] = ACTIONS(4044), + [anon_sym_co_return] = ACTIONS(4044), + [anon_sym_co_yield] = ACTIONS(4044), + [anon_sym_R_DQUOTE] = ACTIONS(4046), + [anon_sym_LR_DQUOTE] = ACTIONS(4046), + [anon_sym_uR_DQUOTE] = ACTIONS(4046), + [anon_sym_UR_DQUOTE] = ACTIONS(4046), + [anon_sym_u8R_DQUOTE] = ACTIONS(4046), + [anon_sym_co_await] = ACTIONS(4044), + [anon_sym_new] = ACTIONS(4044), + [anon_sym_requires] = ACTIONS(4044), + [anon_sym_CARET_CARET] = ACTIONS(4046), + [anon_sym_LBRACK_COLON] = ACTIONS(4046), + [sym_this] = ACTIONS(4044), }, [STATE(938)] = { - [ts_builtin_sym_end] = ACTIONS(4194), - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_include_token1] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4192), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym___cdecl] = ACTIONS(4192), - [anon_sym___clrcall] = ACTIONS(4192), - [anon_sym___stdcall] = ACTIONS(4192), - [anon_sym___fastcall] = ACTIONS(4192), - [anon_sym___thiscall] = ACTIONS(4192), - [anon_sym___vectorcall] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4194), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_if] = ACTIONS(4192), - [anon_sym_switch] = ACTIONS(4192), - [anon_sym_case] = ACTIONS(4192), - [anon_sym_default] = ACTIONS(4192), - [anon_sym_while] = ACTIONS(4192), - [anon_sym_do] = ACTIONS(4192), - [anon_sym_for] = ACTIONS(4192), - [anon_sym_return] = ACTIONS(4192), - [anon_sym_break] = ACTIONS(4192), - [anon_sym_continue] = ACTIONS(4192), - [anon_sym_goto] = ACTIONS(4192), - [anon_sym_not] = ACTIONS(4192), - [anon_sym_compl] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4194), - [anon_sym_sizeof] = ACTIONS(4192), - [anon_sym___alignof__] = ACTIONS(4192), - [anon_sym___alignof] = ACTIONS(4192), - [anon_sym__alignof] = ACTIONS(4192), - [anon_sym_alignof] = ACTIONS(4192), - [anon_sym__Alignof] = ACTIONS(4192), - [anon_sym_offsetof] = ACTIONS(4192), - [anon_sym__Generic] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [anon_sym_asm] = ACTIONS(4192), - [anon_sym___asm__] = ACTIONS(4192), - [anon_sym___asm] = ACTIONS(4192), - [sym_number_literal] = ACTIONS(4194), - [anon_sym_L_SQUOTE] = ACTIONS(4194), - [anon_sym_u_SQUOTE] = ACTIONS(4194), - [anon_sym_U_SQUOTE] = ACTIONS(4194), - [anon_sym_u8_SQUOTE] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4194), - [anon_sym_L_DQUOTE] = ACTIONS(4194), - [anon_sym_u_DQUOTE] = ACTIONS(4194), - [anon_sym_U_DQUOTE] = ACTIONS(4194), - [anon_sym_u8_DQUOTE] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [sym_true] = ACTIONS(4192), - [sym_false] = ACTIONS(4192), - [anon_sym_NULL] = ACTIONS(4192), - [anon_sym_nullptr] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_export] = ACTIONS(4192), - [anon_sym_module] = ACTIONS(4192), - [anon_sym_import] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_try] = ACTIONS(4192), - [anon_sym_delete] = ACTIONS(4192), - [anon_sym_throw] = ACTIONS(4192), - [anon_sym_namespace] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_concept] = ACTIONS(4192), - [anon_sym_co_return] = ACTIONS(4192), - [anon_sym_co_yield] = ACTIONS(4192), - [anon_sym_R_DQUOTE] = ACTIONS(4194), - [anon_sym_LR_DQUOTE] = ACTIONS(4194), - [anon_sym_uR_DQUOTE] = ACTIONS(4194), - [anon_sym_UR_DQUOTE] = ACTIONS(4194), - [anon_sym_u8R_DQUOTE] = ACTIONS(4194), - [anon_sym_co_await] = ACTIONS(4192), - [anon_sym_new] = ACTIONS(4192), - [anon_sym_requires] = ACTIONS(4192), - [anon_sym_CARET_CARET] = ACTIONS(4194), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - [sym_this] = ACTIONS(4192), + [ts_builtin_sym_end] = ACTIONS(4050), + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_include_token1] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_BANG] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_DASH] = ACTIONS(4048), + [anon_sym_PLUS] = ACTIONS(4048), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym___cdecl] = ACTIONS(4048), + [anon_sym___clrcall] = ACTIONS(4048), + [anon_sym___stdcall] = ACTIONS(4048), + [anon_sym___fastcall] = ACTIONS(4048), + [anon_sym___thiscall] = ACTIONS(4048), + [anon_sym___vectorcall] = ACTIONS(4048), + [anon_sym_LBRACE] = ACTIONS(4050), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_if] = ACTIONS(4048), + [anon_sym_switch] = ACTIONS(4048), + [anon_sym_case] = ACTIONS(4048), + [anon_sym_default] = ACTIONS(4048), + [anon_sym_while] = ACTIONS(4048), + [anon_sym_do] = ACTIONS(4048), + [anon_sym_for] = ACTIONS(4048), + [anon_sym_return] = ACTIONS(4048), + [anon_sym_break] = ACTIONS(4048), + [anon_sym_continue] = ACTIONS(4048), + [anon_sym_goto] = ACTIONS(4048), + [anon_sym_not] = ACTIONS(4048), + [anon_sym_compl] = ACTIONS(4048), + [anon_sym_DASH_DASH] = ACTIONS(4050), + [anon_sym_PLUS_PLUS] = ACTIONS(4050), + [anon_sym_sizeof] = ACTIONS(4048), + [anon_sym___alignof__] = ACTIONS(4048), + [anon_sym___alignof] = ACTIONS(4048), + [anon_sym__alignof] = ACTIONS(4048), + [anon_sym_alignof] = ACTIONS(4048), + [anon_sym__Alignof] = ACTIONS(4048), + [anon_sym_offsetof] = ACTIONS(4048), + [anon_sym__Generic] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [anon_sym_asm] = ACTIONS(4048), + [anon_sym___asm__] = ACTIONS(4048), + [anon_sym___asm] = ACTIONS(4048), + [sym_number_literal] = ACTIONS(4050), + [anon_sym_L_SQUOTE] = ACTIONS(4050), + [anon_sym_u_SQUOTE] = ACTIONS(4050), + [anon_sym_U_SQUOTE] = ACTIONS(4050), + [anon_sym_u8_SQUOTE] = ACTIONS(4050), + [anon_sym_SQUOTE] = ACTIONS(4050), + [anon_sym_L_DQUOTE] = ACTIONS(4050), + [anon_sym_u_DQUOTE] = ACTIONS(4050), + [anon_sym_U_DQUOTE] = ACTIONS(4050), + [anon_sym_u8_DQUOTE] = ACTIONS(4050), + [anon_sym_DQUOTE] = ACTIONS(4050), + [sym_true] = ACTIONS(4048), + [sym_false] = ACTIONS(4048), + [anon_sym_NULL] = ACTIONS(4048), + [anon_sym_nullptr] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_export] = ACTIONS(4048), + [anon_sym_module] = ACTIONS(4048), + [anon_sym_import] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_try] = ACTIONS(4048), + [anon_sym_delete] = ACTIONS(4048), + [anon_sym_throw] = ACTIONS(4048), + [anon_sym_namespace] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_concept] = ACTIONS(4048), + [anon_sym_co_return] = ACTIONS(4048), + [anon_sym_co_yield] = ACTIONS(4048), + [anon_sym_R_DQUOTE] = ACTIONS(4050), + [anon_sym_LR_DQUOTE] = ACTIONS(4050), + [anon_sym_uR_DQUOTE] = ACTIONS(4050), + [anon_sym_UR_DQUOTE] = ACTIONS(4050), + [anon_sym_u8R_DQUOTE] = ACTIONS(4050), + [anon_sym_co_await] = ACTIONS(4048), + [anon_sym_new] = ACTIONS(4048), + [anon_sym_requires] = ACTIONS(4048), + [anon_sym_CARET_CARET] = ACTIONS(4050), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), + [sym_this] = ACTIONS(4048), }, [STATE(939)] = { - [ts_builtin_sym_end] = ACTIONS(4018), - [sym_identifier] = ACTIONS(4016), - [aux_sym_preproc_include_token1] = ACTIONS(4016), - [aux_sym_preproc_def_token1] = ACTIONS(4016), - [aux_sym_preproc_if_token1] = ACTIONS(4016), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4016), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4016), - [sym_preproc_directive] = ACTIONS(4016), - [anon_sym_LPAREN2] = ACTIONS(4018), - [anon_sym_BANG] = ACTIONS(4018), - [anon_sym_TILDE] = ACTIONS(4018), - [anon_sym_DASH] = ACTIONS(4016), - [anon_sym_PLUS] = ACTIONS(4016), - [anon_sym_STAR] = ACTIONS(4018), - [anon_sym_AMP_AMP] = ACTIONS(4018), - [anon_sym_AMP] = ACTIONS(4016), - [anon_sym_SEMI] = ACTIONS(4018), - [anon_sym___extension__] = ACTIONS(4016), - [anon_sym_typedef] = ACTIONS(4016), - [anon_sym_virtual] = ACTIONS(4016), - [anon_sym_extern] = ACTIONS(4016), - [anon_sym___attribute__] = ACTIONS(4016), - [anon_sym___attribute] = ACTIONS(4016), - [anon_sym_using] = ACTIONS(4016), - [anon_sym_COLON_COLON] = ACTIONS(4018), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4018), - [anon_sym___declspec] = ACTIONS(4016), - [anon_sym___based] = ACTIONS(4016), - [anon_sym___cdecl] = ACTIONS(4016), - [anon_sym___clrcall] = ACTIONS(4016), - [anon_sym___stdcall] = ACTIONS(4016), - [anon_sym___fastcall] = ACTIONS(4016), - [anon_sym___thiscall] = ACTIONS(4016), - [anon_sym___vectorcall] = ACTIONS(4016), - [anon_sym_LBRACE] = ACTIONS(4018), - [anon_sym_signed] = ACTIONS(4016), - [anon_sym_unsigned] = ACTIONS(4016), - [anon_sym_long] = ACTIONS(4016), - [anon_sym_short] = ACTIONS(4016), - [anon_sym_LBRACK] = ACTIONS(4016), - [anon_sym_static] = ACTIONS(4016), - [anon_sym_register] = ACTIONS(4016), - [anon_sym_inline] = ACTIONS(4016), - [anon_sym___inline] = ACTIONS(4016), - [anon_sym___inline__] = ACTIONS(4016), - [anon_sym___forceinline] = ACTIONS(4016), - [anon_sym_thread_local] = ACTIONS(4016), - [anon_sym___thread] = ACTIONS(4016), - [anon_sym_const] = ACTIONS(4016), - [anon_sym_constexpr] = ACTIONS(4016), - [anon_sym_volatile] = ACTIONS(4016), - [anon_sym_restrict] = ACTIONS(4016), - [anon_sym___restrict__] = ACTIONS(4016), - [anon_sym__Atomic] = ACTIONS(4016), - [anon_sym__Noreturn] = ACTIONS(4016), - [anon_sym_noreturn] = ACTIONS(4016), - [anon_sym__Nonnull] = ACTIONS(4016), - [anon_sym_mutable] = ACTIONS(4016), - [anon_sym_constinit] = ACTIONS(4016), - [anon_sym_consteval] = ACTIONS(4016), - [anon_sym_alignas] = ACTIONS(4016), - [anon_sym__Alignas] = ACTIONS(4016), - [sym_primitive_type] = ACTIONS(4016), - [anon_sym_enum] = ACTIONS(4016), - [anon_sym_class] = ACTIONS(4016), - [anon_sym_struct] = ACTIONS(4016), - [anon_sym_union] = ACTIONS(4016), - [anon_sym_if] = ACTIONS(4016), - [anon_sym_switch] = ACTIONS(4016), - [anon_sym_case] = ACTIONS(4016), - [anon_sym_default] = ACTIONS(4016), - [anon_sym_while] = ACTIONS(4016), - [anon_sym_do] = ACTIONS(4016), - [anon_sym_for] = ACTIONS(4016), - [anon_sym_return] = ACTIONS(4016), - [anon_sym_break] = ACTIONS(4016), - [anon_sym_continue] = ACTIONS(4016), - [anon_sym_goto] = ACTIONS(4016), - [anon_sym_not] = ACTIONS(4016), - [anon_sym_compl] = ACTIONS(4016), - [anon_sym_DASH_DASH] = ACTIONS(4018), - [anon_sym_PLUS_PLUS] = ACTIONS(4018), - [anon_sym_sizeof] = ACTIONS(4016), - [anon_sym___alignof__] = ACTIONS(4016), - [anon_sym___alignof] = ACTIONS(4016), - [anon_sym__alignof] = ACTIONS(4016), - [anon_sym_alignof] = ACTIONS(4016), - [anon_sym__Alignof] = ACTIONS(4016), - [anon_sym_offsetof] = ACTIONS(4016), - [anon_sym__Generic] = ACTIONS(4016), - [anon_sym_typename] = ACTIONS(4016), - [anon_sym_asm] = ACTIONS(4016), - [anon_sym___asm__] = ACTIONS(4016), - [anon_sym___asm] = ACTIONS(4016), - [sym_number_literal] = ACTIONS(4018), - [anon_sym_L_SQUOTE] = ACTIONS(4018), - [anon_sym_u_SQUOTE] = ACTIONS(4018), - [anon_sym_U_SQUOTE] = ACTIONS(4018), - [anon_sym_u8_SQUOTE] = ACTIONS(4018), - [anon_sym_SQUOTE] = ACTIONS(4018), - [anon_sym_L_DQUOTE] = ACTIONS(4018), - [anon_sym_u_DQUOTE] = ACTIONS(4018), - [anon_sym_U_DQUOTE] = ACTIONS(4018), - [anon_sym_u8_DQUOTE] = ACTIONS(4018), - [anon_sym_DQUOTE] = ACTIONS(4018), - [sym_true] = ACTIONS(4016), - [sym_false] = ACTIONS(4016), - [anon_sym_NULL] = ACTIONS(4016), - [anon_sym_nullptr] = ACTIONS(4016), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4016), - [anon_sym_decltype] = ACTIONS(4016), - [anon_sym_explicit] = ACTIONS(4016), - [anon_sym_export] = ACTIONS(4016), - [anon_sym_module] = ACTIONS(4016), - [anon_sym_import] = ACTIONS(4016), - [anon_sym_template] = ACTIONS(4016), - [anon_sym_operator] = ACTIONS(4016), - [anon_sym_try] = ACTIONS(4016), - [anon_sym_delete] = ACTIONS(4016), - [anon_sym_throw] = ACTIONS(4016), - [anon_sym_namespace] = ACTIONS(4016), - [anon_sym_static_assert] = ACTIONS(4016), - [anon_sym_concept] = ACTIONS(4016), - [anon_sym_co_return] = ACTIONS(4016), - [anon_sym_co_yield] = ACTIONS(4016), - [anon_sym_R_DQUOTE] = ACTIONS(4018), - [anon_sym_LR_DQUOTE] = ACTIONS(4018), - [anon_sym_uR_DQUOTE] = ACTIONS(4018), - [anon_sym_UR_DQUOTE] = ACTIONS(4018), - [anon_sym_u8R_DQUOTE] = ACTIONS(4018), - [anon_sym_co_await] = ACTIONS(4016), - [anon_sym_new] = ACTIONS(4016), - [anon_sym_requires] = ACTIONS(4016), - [anon_sym_CARET_CARET] = ACTIONS(4018), - [anon_sym_LBRACK_COLON] = ACTIONS(4018), - [sym_this] = ACTIONS(4016), + [ts_builtin_sym_end] = ACTIONS(4490), + [sym_identifier] = ACTIONS(4488), + [aux_sym_preproc_include_token1] = ACTIONS(4488), + [aux_sym_preproc_def_token1] = ACTIONS(4488), + [aux_sym_preproc_if_token1] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4488), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4488), + [sym_preproc_directive] = ACTIONS(4488), + [anon_sym_LPAREN2] = ACTIONS(4490), + [anon_sym_BANG] = ACTIONS(4490), + [anon_sym_TILDE] = ACTIONS(4490), + [anon_sym_DASH] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4490), + [anon_sym_AMP_AMP] = ACTIONS(4490), + [anon_sym_AMP] = ACTIONS(4488), + [anon_sym_SEMI] = ACTIONS(4490), + [anon_sym___extension__] = ACTIONS(4488), + [anon_sym_typedef] = ACTIONS(4488), + [anon_sym_virtual] = ACTIONS(4488), + [anon_sym_extern] = ACTIONS(4488), + [anon_sym___attribute__] = ACTIONS(4488), + [anon_sym___attribute] = ACTIONS(4488), + [anon_sym_using] = ACTIONS(4488), + [anon_sym_COLON_COLON] = ACTIONS(4490), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4490), + [anon_sym___declspec] = ACTIONS(4488), + [anon_sym___based] = ACTIONS(4488), + [anon_sym___cdecl] = ACTIONS(4488), + [anon_sym___clrcall] = ACTIONS(4488), + [anon_sym___stdcall] = ACTIONS(4488), + [anon_sym___fastcall] = ACTIONS(4488), + [anon_sym___thiscall] = ACTIONS(4488), + [anon_sym___vectorcall] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4490), + [anon_sym_signed] = ACTIONS(4488), + [anon_sym_unsigned] = ACTIONS(4488), + [anon_sym_long] = ACTIONS(4488), + [anon_sym_short] = ACTIONS(4488), + [anon_sym_LBRACK] = ACTIONS(4488), + [anon_sym_static] = ACTIONS(4488), + [anon_sym_register] = ACTIONS(4488), + [anon_sym_inline] = ACTIONS(4488), + [anon_sym___inline] = ACTIONS(4488), + [anon_sym___inline__] = ACTIONS(4488), + [anon_sym___forceinline] = ACTIONS(4488), + [anon_sym_thread_local] = ACTIONS(4488), + [anon_sym___thread] = ACTIONS(4488), + [anon_sym_const] = ACTIONS(4488), + [anon_sym_constexpr] = ACTIONS(4488), + [anon_sym_volatile] = ACTIONS(4488), + [anon_sym_restrict] = ACTIONS(4488), + [anon_sym___restrict__] = ACTIONS(4488), + [anon_sym__Atomic] = ACTIONS(4488), + [anon_sym__Noreturn] = ACTIONS(4488), + [anon_sym_noreturn] = ACTIONS(4488), + [anon_sym__Nonnull] = ACTIONS(4488), + [anon_sym_mutable] = ACTIONS(4488), + [anon_sym_constinit] = ACTIONS(4488), + [anon_sym_consteval] = ACTIONS(4488), + [anon_sym_alignas] = ACTIONS(4488), + [anon_sym__Alignas] = ACTIONS(4488), + [sym_primitive_type] = ACTIONS(4488), + [anon_sym_enum] = ACTIONS(4488), + [anon_sym_class] = ACTIONS(4488), + [anon_sym_struct] = ACTIONS(4488), + [anon_sym_union] = ACTIONS(4488), + [anon_sym_if] = ACTIONS(4488), + [anon_sym_switch] = ACTIONS(4488), + [anon_sym_case] = ACTIONS(4488), + [anon_sym_default] = ACTIONS(4488), + [anon_sym_while] = ACTIONS(4488), + [anon_sym_do] = ACTIONS(4488), + [anon_sym_for] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4488), + [anon_sym_break] = ACTIONS(4488), + [anon_sym_continue] = ACTIONS(4488), + [anon_sym_goto] = ACTIONS(4488), + [anon_sym_not] = ACTIONS(4488), + [anon_sym_compl] = ACTIONS(4488), + [anon_sym_DASH_DASH] = ACTIONS(4490), + [anon_sym_PLUS_PLUS] = ACTIONS(4490), + [anon_sym_sizeof] = ACTIONS(4488), + [anon_sym___alignof__] = ACTIONS(4488), + [anon_sym___alignof] = ACTIONS(4488), + [anon_sym__alignof] = ACTIONS(4488), + [anon_sym_alignof] = ACTIONS(4488), + [anon_sym__Alignof] = ACTIONS(4488), + [anon_sym_offsetof] = ACTIONS(4488), + [anon_sym__Generic] = ACTIONS(4488), + [anon_sym_typename] = ACTIONS(4488), + [anon_sym_asm] = ACTIONS(4488), + [anon_sym___asm__] = ACTIONS(4488), + [anon_sym___asm] = ACTIONS(4488), + [sym_number_literal] = ACTIONS(4490), + [anon_sym_L_SQUOTE] = ACTIONS(4490), + [anon_sym_u_SQUOTE] = ACTIONS(4490), + [anon_sym_U_SQUOTE] = ACTIONS(4490), + [anon_sym_u8_SQUOTE] = ACTIONS(4490), + [anon_sym_SQUOTE] = ACTIONS(4490), + [anon_sym_L_DQUOTE] = ACTIONS(4490), + [anon_sym_u_DQUOTE] = ACTIONS(4490), + [anon_sym_U_DQUOTE] = ACTIONS(4490), + [anon_sym_u8_DQUOTE] = ACTIONS(4490), + [anon_sym_DQUOTE] = ACTIONS(4490), + [sym_true] = ACTIONS(4488), + [sym_false] = ACTIONS(4488), + [anon_sym_NULL] = ACTIONS(4488), + [anon_sym_nullptr] = ACTIONS(4488), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4488), + [anon_sym_decltype] = ACTIONS(4488), + [anon_sym_explicit] = ACTIONS(4488), + [anon_sym_export] = ACTIONS(4488), + [anon_sym_module] = ACTIONS(4488), + [anon_sym_import] = ACTIONS(4488), + [anon_sym_template] = ACTIONS(4488), + [anon_sym_operator] = ACTIONS(4488), + [anon_sym_try] = ACTIONS(4488), + [anon_sym_delete] = ACTIONS(4488), + [anon_sym_throw] = ACTIONS(4488), + [anon_sym_namespace] = ACTIONS(4488), + [anon_sym_static_assert] = ACTIONS(4488), + [anon_sym_concept] = ACTIONS(4488), + [anon_sym_co_return] = ACTIONS(4488), + [anon_sym_co_yield] = ACTIONS(4488), + [anon_sym_R_DQUOTE] = ACTIONS(4490), + [anon_sym_LR_DQUOTE] = ACTIONS(4490), + [anon_sym_uR_DQUOTE] = ACTIONS(4490), + [anon_sym_UR_DQUOTE] = ACTIONS(4490), + [anon_sym_u8R_DQUOTE] = ACTIONS(4490), + [anon_sym_co_await] = ACTIONS(4488), + [anon_sym_new] = ACTIONS(4488), + [anon_sym_requires] = ACTIONS(4488), + [anon_sym_CARET_CARET] = ACTIONS(4490), + [anon_sym_LBRACK_COLON] = ACTIONS(4490), + [sym_this] = ACTIONS(4488), }, [STATE(940)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4787), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), - [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(4704), - [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(4706), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [ts_builtin_sym_end] = ACTIONS(4480), + [sym_identifier] = ACTIONS(4478), + [aux_sym_preproc_include_token1] = ACTIONS(4478), + [aux_sym_preproc_def_token1] = ACTIONS(4478), + [aux_sym_preproc_if_token1] = ACTIONS(4478), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4478), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4478), + [sym_preproc_directive] = ACTIONS(4478), + [anon_sym_LPAREN2] = ACTIONS(4480), + [anon_sym_BANG] = ACTIONS(4480), + [anon_sym_TILDE] = ACTIONS(4480), + [anon_sym_DASH] = ACTIONS(4478), + [anon_sym_PLUS] = ACTIONS(4478), + [anon_sym_STAR] = ACTIONS(4480), + [anon_sym_AMP_AMP] = ACTIONS(4480), + [anon_sym_AMP] = ACTIONS(4478), + [anon_sym_SEMI] = ACTIONS(4480), + [anon_sym___extension__] = ACTIONS(4478), + [anon_sym_typedef] = ACTIONS(4478), + [anon_sym_virtual] = ACTIONS(4478), + [anon_sym_extern] = ACTIONS(4478), + [anon_sym___attribute__] = ACTIONS(4478), + [anon_sym___attribute] = ACTIONS(4478), + [anon_sym_using] = ACTIONS(4478), + [anon_sym_COLON_COLON] = ACTIONS(4480), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4480), + [anon_sym___declspec] = ACTIONS(4478), + [anon_sym___based] = ACTIONS(4478), + [anon_sym___cdecl] = ACTIONS(4478), + [anon_sym___clrcall] = ACTIONS(4478), + [anon_sym___stdcall] = ACTIONS(4478), + [anon_sym___fastcall] = ACTIONS(4478), + [anon_sym___thiscall] = ACTIONS(4478), + [anon_sym___vectorcall] = ACTIONS(4478), + [anon_sym_LBRACE] = ACTIONS(4480), + [anon_sym_signed] = ACTIONS(4478), + [anon_sym_unsigned] = ACTIONS(4478), + [anon_sym_long] = ACTIONS(4478), + [anon_sym_short] = ACTIONS(4478), + [anon_sym_LBRACK] = ACTIONS(4478), + [anon_sym_static] = ACTIONS(4478), + [anon_sym_register] = ACTIONS(4478), + [anon_sym_inline] = ACTIONS(4478), + [anon_sym___inline] = ACTIONS(4478), + [anon_sym___inline__] = ACTIONS(4478), + [anon_sym___forceinline] = ACTIONS(4478), + [anon_sym_thread_local] = ACTIONS(4478), + [anon_sym___thread] = ACTIONS(4478), + [anon_sym_const] = ACTIONS(4478), + [anon_sym_constexpr] = ACTIONS(4478), + [anon_sym_volatile] = ACTIONS(4478), + [anon_sym_restrict] = ACTIONS(4478), + [anon_sym___restrict__] = ACTIONS(4478), + [anon_sym__Atomic] = ACTIONS(4478), + [anon_sym__Noreturn] = ACTIONS(4478), + [anon_sym_noreturn] = ACTIONS(4478), + [anon_sym__Nonnull] = ACTIONS(4478), + [anon_sym_mutable] = ACTIONS(4478), + [anon_sym_constinit] = ACTIONS(4478), + [anon_sym_consteval] = ACTIONS(4478), + [anon_sym_alignas] = ACTIONS(4478), + [anon_sym__Alignas] = ACTIONS(4478), + [sym_primitive_type] = ACTIONS(4478), + [anon_sym_enum] = ACTIONS(4478), + [anon_sym_class] = ACTIONS(4478), + [anon_sym_struct] = ACTIONS(4478), + [anon_sym_union] = ACTIONS(4478), + [anon_sym_if] = ACTIONS(4478), + [anon_sym_switch] = ACTIONS(4478), + [anon_sym_case] = ACTIONS(4478), + [anon_sym_default] = ACTIONS(4478), + [anon_sym_while] = ACTIONS(4478), + [anon_sym_do] = ACTIONS(4478), + [anon_sym_for] = ACTIONS(4478), + [anon_sym_return] = ACTIONS(4478), + [anon_sym_break] = ACTIONS(4478), + [anon_sym_continue] = ACTIONS(4478), + [anon_sym_goto] = ACTIONS(4478), + [anon_sym_not] = ACTIONS(4478), + [anon_sym_compl] = ACTIONS(4478), + [anon_sym_DASH_DASH] = ACTIONS(4480), + [anon_sym_PLUS_PLUS] = ACTIONS(4480), + [anon_sym_sizeof] = ACTIONS(4478), + [anon_sym___alignof__] = ACTIONS(4478), + [anon_sym___alignof] = ACTIONS(4478), + [anon_sym__alignof] = ACTIONS(4478), + [anon_sym_alignof] = ACTIONS(4478), + [anon_sym__Alignof] = ACTIONS(4478), + [anon_sym_offsetof] = ACTIONS(4478), + [anon_sym__Generic] = ACTIONS(4478), + [anon_sym_typename] = ACTIONS(4478), + [anon_sym_asm] = ACTIONS(4478), + [anon_sym___asm__] = ACTIONS(4478), + [anon_sym___asm] = ACTIONS(4478), + [sym_number_literal] = ACTIONS(4480), + [anon_sym_L_SQUOTE] = ACTIONS(4480), + [anon_sym_u_SQUOTE] = ACTIONS(4480), + [anon_sym_U_SQUOTE] = ACTIONS(4480), + [anon_sym_u8_SQUOTE] = ACTIONS(4480), + [anon_sym_SQUOTE] = ACTIONS(4480), + [anon_sym_L_DQUOTE] = ACTIONS(4480), + [anon_sym_u_DQUOTE] = ACTIONS(4480), + [anon_sym_U_DQUOTE] = ACTIONS(4480), + [anon_sym_u8_DQUOTE] = ACTIONS(4480), + [anon_sym_DQUOTE] = ACTIONS(4480), + [sym_true] = ACTIONS(4478), + [sym_false] = ACTIONS(4478), + [anon_sym_NULL] = ACTIONS(4478), + [anon_sym_nullptr] = ACTIONS(4478), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4478), + [anon_sym_decltype] = ACTIONS(4478), + [anon_sym_explicit] = ACTIONS(4478), + [anon_sym_export] = ACTIONS(4478), + [anon_sym_module] = ACTIONS(4478), + [anon_sym_import] = ACTIONS(4478), + [anon_sym_template] = ACTIONS(4478), + [anon_sym_operator] = ACTIONS(4478), + [anon_sym_try] = ACTIONS(4478), + [anon_sym_delete] = ACTIONS(4478), + [anon_sym_throw] = ACTIONS(4478), + [anon_sym_namespace] = ACTIONS(4478), + [anon_sym_static_assert] = ACTIONS(4478), + [anon_sym_concept] = ACTIONS(4478), + [anon_sym_co_return] = ACTIONS(4478), + [anon_sym_co_yield] = ACTIONS(4478), + [anon_sym_R_DQUOTE] = ACTIONS(4480), + [anon_sym_LR_DQUOTE] = ACTIONS(4480), + [anon_sym_uR_DQUOTE] = ACTIONS(4480), + [anon_sym_UR_DQUOTE] = ACTIONS(4480), + [anon_sym_u8R_DQUOTE] = ACTIONS(4480), + [anon_sym_co_await] = ACTIONS(4478), + [anon_sym_new] = ACTIONS(4478), + [anon_sym_requires] = ACTIONS(4478), + [anon_sym_CARET_CARET] = ACTIONS(4480), + [anon_sym_LBRACK_COLON] = ACTIONS(4480), + [sym_this] = ACTIONS(4478), }, [STATE(941)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4789), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), - [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(4704), - [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(4706), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [ts_builtin_sym_end] = ACTIONS(4494), + [sym_identifier] = ACTIONS(4492), + [aux_sym_preproc_include_token1] = ACTIONS(4492), + [aux_sym_preproc_def_token1] = ACTIONS(4492), + [aux_sym_preproc_if_token1] = ACTIONS(4492), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4492), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4492), + [sym_preproc_directive] = ACTIONS(4492), + [anon_sym_LPAREN2] = ACTIONS(4494), + [anon_sym_BANG] = ACTIONS(4494), + [anon_sym_TILDE] = ACTIONS(4494), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_PLUS] = ACTIONS(4492), + [anon_sym_STAR] = ACTIONS(4494), + [anon_sym_AMP_AMP] = ACTIONS(4494), + [anon_sym_AMP] = ACTIONS(4492), + [anon_sym_SEMI] = ACTIONS(4494), + [anon_sym___extension__] = ACTIONS(4492), + [anon_sym_typedef] = ACTIONS(4492), + [anon_sym_virtual] = ACTIONS(4492), + [anon_sym_extern] = ACTIONS(4492), + [anon_sym___attribute__] = ACTIONS(4492), + [anon_sym___attribute] = ACTIONS(4492), + [anon_sym_using] = ACTIONS(4492), + [anon_sym_COLON_COLON] = ACTIONS(4494), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4494), + [anon_sym___declspec] = ACTIONS(4492), + [anon_sym___based] = ACTIONS(4492), + [anon_sym___cdecl] = ACTIONS(4492), + [anon_sym___clrcall] = ACTIONS(4492), + [anon_sym___stdcall] = ACTIONS(4492), + [anon_sym___fastcall] = ACTIONS(4492), + [anon_sym___thiscall] = ACTIONS(4492), + [anon_sym___vectorcall] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4494), + [anon_sym_signed] = ACTIONS(4492), + [anon_sym_unsigned] = ACTIONS(4492), + [anon_sym_long] = ACTIONS(4492), + [anon_sym_short] = ACTIONS(4492), + [anon_sym_LBRACK] = ACTIONS(4492), + [anon_sym_static] = ACTIONS(4492), + [anon_sym_register] = ACTIONS(4492), + [anon_sym_inline] = ACTIONS(4492), + [anon_sym___inline] = ACTIONS(4492), + [anon_sym___inline__] = ACTIONS(4492), + [anon_sym___forceinline] = ACTIONS(4492), + [anon_sym_thread_local] = ACTIONS(4492), + [anon_sym___thread] = ACTIONS(4492), + [anon_sym_const] = ACTIONS(4492), + [anon_sym_constexpr] = ACTIONS(4492), + [anon_sym_volatile] = ACTIONS(4492), + [anon_sym_restrict] = ACTIONS(4492), + [anon_sym___restrict__] = ACTIONS(4492), + [anon_sym__Atomic] = ACTIONS(4492), + [anon_sym__Noreturn] = ACTIONS(4492), + [anon_sym_noreturn] = ACTIONS(4492), + [anon_sym__Nonnull] = ACTIONS(4492), + [anon_sym_mutable] = ACTIONS(4492), + [anon_sym_constinit] = ACTIONS(4492), + [anon_sym_consteval] = ACTIONS(4492), + [anon_sym_alignas] = ACTIONS(4492), + [anon_sym__Alignas] = ACTIONS(4492), + [sym_primitive_type] = ACTIONS(4492), + [anon_sym_enum] = ACTIONS(4492), + [anon_sym_class] = ACTIONS(4492), + [anon_sym_struct] = ACTIONS(4492), + [anon_sym_union] = ACTIONS(4492), + [anon_sym_if] = ACTIONS(4492), + [anon_sym_switch] = ACTIONS(4492), + [anon_sym_case] = ACTIONS(4492), + [anon_sym_default] = ACTIONS(4492), + [anon_sym_while] = ACTIONS(4492), + [anon_sym_do] = ACTIONS(4492), + [anon_sym_for] = ACTIONS(4492), + [anon_sym_return] = ACTIONS(4492), + [anon_sym_break] = ACTIONS(4492), + [anon_sym_continue] = ACTIONS(4492), + [anon_sym_goto] = ACTIONS(4492), + [anon_sym_not] = ACTIONS(4492), + [anon_sym_compl] = ACTIONS(4492), + [anon_sym_DASH_DASH] = ACTIONS(4494), + [anon_sym_PLUS_PLUS] = ACTIONS(4494), + [anon_sym_sizeof] = ACTIONS(4492), + [anon_sym___alignof__] = ACTIONS(4492), + [anon_sym___alignof] = ACTIONS(4492), + [anon_sym__alignof] = ACTIONS(4492), + [anon_sym_alignof] = ACTIONS(4492), + [anon_sym__Alignof] = ACTIONS(4492), + [anon_sym_offsetof] = ACTIONS(4492), + [anon_sym__Generic] = ACTIONS(4492), + [anon_sym_typename] = ACTIONS(4492), + [anon_sym_asm] = ACTIONS(4492), + [anon_sym___asm__] = ACTIONS(4492), + [anon_sym___asm] = ACTIONS(4492), + [sym_number_literal] = ACTIONS(4494), + [anon_sym_L_SQUOTE] = ACTIONS(4494), + [anon_sym_u_SQUOTE] = ACTIONS(4494), + [anon_sym_U_SQUOTE] = ACTIONS(4494), + [anon_sym_u8_SQUOTE] = ACTIONS(4494), + [anon_sym_SQUOTE] = ACTIONS(4494), + [anon_sym_L_DQUOTE] = ACTIONS(4494), + [anon_sym_u_DQUOTE] = ACTIONS(4494), + [anon_sym_U_DQUOTE] = ACTIONS(4494), + [anon_sym_u8_DQUOTE] = ACTIONS(4494), + [anon_sym_DQUOTE] = ACTIONS(4494), + [sym_true] = ACTIONS(4492), + [sym_false] = ACTIONS(4492), + [anon_sym_NULL] = ACTIONS(4492), + [anon_sym_nullptr] = ACTIONS(4492), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_auto] = ACTIONS(4492), + [anon_sym_decltype] = ACTIONS(4492), + [anon_sym_explicit] = ACTIONS(4492), + [anon_sym_export] = ACTIONS(4492), + [anon_sym_module] = ACTIONS(4492), + [anon_sym_import] = ACTIONS(4492), + [anon_sym_template] = ACTIONS(4492), + [anon_sym_operator] = ACTIONS(4492), + [anon_sym_try] = ACTIONS(4492), + [anon_sym_delete] = ACTIONS(4492), + [anon_sym_throw] = ACTIONS(4492), + [anon_sym_namespace] = ACTIONS(4492), + [anon_sym_static_assert] = ACTIONS(4492), + [anon_sym_concept] = ACTIONS(4492), + [anon_sym_co_return] = ACTIONS(4492), + [anon_sym_co_yield] = ACTIONS(4492), + [anon_sym_R_DQUOTE] = ACTIONS(4494), + [anon_sym_LR_DQUOTE] = ACTIONS(4494), + [anon_sym_uR_DQUOTE] = ACTIONS(4494), + [anon_sym_UR_DQUOTE] = ACTIONS(4494), + [anon_sym_u8R_DQUOTE] = ACTIONS(4494), + [anon_sym_co_await] = ACTIONS(4492), + [anon_sym_new] = ACTIONS(4492), + [anon_sym_requires] = ACTIONS(4492), + [anon_sym_CARET_CARET] = ACTIONS(4494), + [anon_sym_LBRACK_COLON] = ACTIONS(4494), + [sym_this] = ACTIONS(4492), }, [STATE(942)] = { - [sym_preproc_def] = STATE(1015), - [sym_preproc_function_def] = STATE(1015), - [sym_preproc_call] = STATE(1015), - [sym_preproc_if_in_field_declaration_list] = STATE(1015), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(1015), - [sym_type_definition] = STATE(1015), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(1015), - [sym_field_declaration] = STATE(1015), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(1015), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(1015), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(1015), - [sym_operator_cast_declaration] = STATE(1015), - [sym_constructor_or_destructor_definition] = STATE(1015), - [sym_constructor_or_destructor_declaration] = STATE(1015), - [sym_friend_declaration] = STATE(1015), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(1015), - [sym_alias_declaration] = STATE(1015), - [sym_static_assert_declaration] = STATE(1015), - [sym_consteval_block_declaration] = STATE(1015), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1015), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4791), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_virtual] = ACTIONS(39), + [ts_builtin_sym_end] = ACTIONS(4498), + [sym_identifier] = ACTIONS(4496), + [aux_sym_preproc_include_token1] = ACTIONS(4496), + [aux_sym_preproc_def_token1] = ACTIONS(4496), + [aux_sym_preproc_if_token1] = ACTIONS(4496), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4496), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4496), + [sym_preproc_directive] = ACTIONS(4496), + [anon_sym_LPAREN2] = ACTIONS(4498), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_TILDE] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_AMP_AMP] = ACTIONS(4498), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_SEMI] = ACTIONS(4498), + [anon_sym___extension__] = ACTIONS(4496), + [anon_sym_typedef] = ACTIONS(4496), + [anon_sym_virtual] = ACTIONS(4496), + [anon_sym_extern] = ACTIONS(4496), + [anon_sym___attribute__] = ACTIONS(4496), + [anon_sym___attribute] = ACTIONS(4496), + [anon_sym_using] = ACTIONS(4496), + [anon_sym_COLON_COLON] = ACTIONS(4498), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4498), + [anon_sym___declspec] = ACTIONS(4496), + [anon_sym___based] = ACTIONS(4496), + [anon_sym___cdecl] = ACTIONS(4496), + [anon_sym___clrcall] = ACTIONS(4496), + [anon_sym___stdcall] = ACTIONS(4496), + [anon_sym___fastcall] = ACTIONS(4496), + [anon_sym___thiscall] = ACTIONS(4496), + [anon_sym___vectorcall] = ACTIONS(4496), + [anon_sym_LBRACE] = ACTIONS(4498), + [anon_sym_signed] = ACTIONS(4496), + [anon_sym_unsigned] = ACTIONS(4496), + [anon_sym_long] = ACTIONS(4496), + [anon_sym_short] = ACTIONS(4496), + [anon_sym_LBRACK] = ACTIONS(4496), + [anon_sym_static] = ACTIONS(4496), + [anon_sym_register] = ACTIONS(4496), + [anon_sym_inline] = ACTIONS(4496), + [anon_sym___inline] = ACTIONS(4496), + [anon_sym___inline__] = ACTIONS(4496), + [anon_sym___forceinline] = ACTIONS(4496), + [anon_sym_thread_local] = ACTIONS(4496), + [anon_sym___thread] = ACTIONS(4496), + [anon_sym_const] = ACTIONS(4496), + [anon_sym_constexpr] = ACTIONS(4496), + [anon_sym_volatile] = ACTIONS(4496), + [anon_sym_restrict] = ACTIONS(4496), + [anon_sym___restrict__] = ACTIONS(4496), + [anon_sym__Atomic] = ACTIONS(4496), + [anon_sym__Noreturn] = ACTIONS(4496), + [anon_sym_noreturn] = ACTIONS(4496), + [anon_sym__Nonnull] = ACTIONS(4496), + [anon_sym_mutable] = ACTIONS(4496), + [anon_sym_constinit] = ACTIONS(4496), + [anon_sym_consteval] = ACTIONS(4496), + [anon_sym_alignas] = ACTIONS(4496), + [anon_sym__Alignas] = ACTIONS(4496), + [sym_primitive_type] = ACTIONS(4496), + [anon_sym_enum] = ACTIONS(4496), + [anon_sym_class] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_union] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_switch] = ACTIONS(4496), + [anon_sym_case] = ACTIONS(4496), + [anon_sym_default] = ACTIONS(4496), + [anon_sym_while] = ACTIONS(4496), + [anon_sym_do] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_goto] = ACTIONS(4496), + [anon_sym_not] = ACTIONS(4496), + [anon_sym_compl] = ACTIONS(4496), + [anon_sym_DASH_DASH] = ACTIONS(4498), + [anon_sym_PLUS_PLUS] = ACTIONS(4498), + [anon_sym_sizeof] = ACTIONS(4496), + [anon_sym___alignof__] = ACTIONS(4496), + [anon_sym___alignof] = ACTIONS(4496), + [anon_sym__alignof] = ACTIONS(4496), + [anon_sym_alignof] = ACTIONS(4496), + [anon_sym__Alignof] = ACTIONS(4496), + [anon_sym_offsetof] = ACTIONS(4496), + [anon_sym__Generic] = ACTIONS(4496), + [anon_sym_typename] = ACTIONS(4496), + [anon_sym_asm] = ACTIONS(4496), + [anon_sym___asm__] = ACTIONS(4496), + [anon_sym___asm] = ACTIONS(4496), + [sym_number_literal] = ACTIONS(4498), + [anon_sym_L_SQUOTE] = ACTIONS(4498), + [anon_sym_u_SQUOTE] = ACTIONS(4498), + [anon_sym_U_SQUOTE] = ACTIONS(4498), + [anon_sym_u8_SQUOTE] = ACTIONS(4498), + [anon_sym_SQUOTE] = ACTIONS(4498), + [anon_sym_L_DQUOTE] = ACTIONS(4498), + [anon_sym_u_DQUOTE] = ACTIONS(4498), + [anon_sym_U_DQUOTE] = ACTIONS(4498), + [anon_sym_u8_DQUOTE] = ACTIONS(4498), + [anon_sym_DQUOTE] = ACTIONS(4498), + [sym_true] = ACTIONS(4496), + [sym_false] = ACTIONS(4496), + [anon_sym_NULL] = ACTIONS(4496), + [anon_sym_nullptr] = ACTIONS(4496), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4496), + [anon_sym_decltype] = ACTIONS(4496), + [anon_sym_explicit] = ACTIONS(4496), + [anon_sym_export] = ACTIONS(4496), + [anon_sym_module] = ACTIONS(4496), + [anon_sym_import] = ACTIONS(4496), + [anon_sym_template] = ACTIONS(4496), + [anon_sym_operator] = ACTIONS(4496), + [anon_sym_try] = ACTIONS(4496), + [anon_sym_delete] = ACTIONS(4496), + [anon_sym_throw] = ACTIONS(4496), + [anon_sym_namespace] = ACTIONS(4496), + [anon_sym_static_assert] = ACTIONS(4496), + [anon_sym_concept] = ACTIONS(4496), + [anon_sym_co_return] = ACTIONS(4496), + [anon_sym_co_yield] = ACTIONS(4496), + [anon_sym_R_DQUOTE] = ACTIONS(4498), + [anon_sym_LR_DQUOTE] = ACTIONS(4498), + [anon_sym_uR_DQUOTE] = ACTIONS(4498), + [anon_sym_UR_DQUOTE] = ACTIONS(4498), + [anon_sym_u8R_DQUOTE] = ACTIONS(4498), + [anon_sym_co_await] = ACTIONS(4496), + [anon_sym_new] = ACTIONS(4496), + [anon_sym_requires] = ACTIONS(4496), + [anon_sym_CARET_CARET] = ACTIONS(4498), + [anon_sym_LBRACK_COLON] = ACTIONS(4498), + [sym_this] = ACTIONS(4496), + }, + [STATE(943)] = { + [sym_identifier] = ACTIONS(4450), + [aux_sym_preproc_include_token1] = ACTIONS(4450), + [aux_sym_preproc_def_token1] = ACTIONS(4450), + [aux_sym_preproc_if_token1] = ACTIONS(4450), + [aux_sym_preproc_if_token2] = ACTIONS(4450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4450), + [sym_preproc_directive] = ACTIONS(4450), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_TILDE] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4452), + [anon_sym_AMP_AMP] = ACTIONS(4452), + [anon_sym_AMP] = ACTIONS(4450), + [anon_sym_SEMI] = ACTIONS(4452), + [anon_sym___extension__] = ACTIONS(4450), + [anon_sym_typedef] = ACTIONS(4450), + [anon_sym_virtual] = ACTIONS(4450), + [anon_sym_extern] = ACTIONS(4450), + [anon_sym___attribute__] = ACTIONS(4450), + [anon_sym___attribute] = ACTIONS(4450), + [anon_sym_using] = ACTIONS(4450), + [anon_sym_COLON_COLON] = ACTIONS(4452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4452), + [anon_sym___declspec] = ACTIONS(4450), + [anon_sym___based] = ACTIONS(4450), + [anon_sym___cdecl] = ACTIONS(4450), + [anon_sym___clrcall] = ACTIONS(4450), + [anon_sym___stdcall] = ACTIONS(4450), + [anon_sym___fastcall] = ACTIONS(4450), + [anon_sym___thiscall] = ACTIONS(4450), + [anon_sym___vectorcall] = ACTIONS(4450), + [anon_sym_LBRACE] = ACTIONS(4452), + [anon_sym_signed] = ACTIONS(4450), + [anon_sym_unsigned] = ACTIONS(4450), + [anon_sym_long] = ACTIONS(4450), + [anon_sym_short] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_static] = ACTIONS(4450), + [anon_sym_register] = ACTIONS(4450), + [anon_sym_inline] = ACTIONS(4450), + [anon_sym___inline] = ACTIONS(4450), + [anon_sym___inline__] = ACTIONS(4450), + [anon_sym___forceinline] = ACTIONS(4450), + [anon_sym_thread_local] = ACTIONS(4450), + [anon_sym___thread] = ACTIONS(4450), + [anon_sym_const] = ACTIONS(4450), + [anon_sym_constexpr] = ACTIONS(4450), + [anon_sym_volatile] = ACTIONS(4450), + [anon_sym_restrict] = ACTIONS(4450), + [anon_sym___restrict__] = ACTIONS(4450), + [anon_sym__Atomic] = ACTIONS(4450), + [anon_sym__Noreturn] = ACTIONS(4450), + [anon_sym_noreturn] = ACTIONS(4450), + [anon_sym__Nonnull] = ACTIONS(4450), + [anon_sym_mutable] = ACTIONS(4450), + [anon_sym_constinit] = ACTIONS(4450), + [anon_sym_consteval] = ACTIONS(4450), + [anon_sym_alignas] = ACTIONS(4450), + [anon_sym__Alignas] = ACTIONS(4450), + [sym_primitive_type] = ACTIONS(4450), + [anon_sym_enum] = ACTIONS(4450), + [anon_sym_class] = ACTIONS(4450), + [anon_sym_struct] = ACTIONS(4450), + [anon_sym_union] = ACTIONS(4450), + [anon_sym_if] = ACTIONS(4450), + [anon_sym_switch] = ACTIONS(4450), + [anon_sym_case] = ACTIONS(4450), + [anon_sym_default] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4450), + [anon_sym_do] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(4450), + [anon_sym_return] = ACTIONS(4450), + [anon_sym_break] = ACTIONS(4450), + [anon_sym_continue] = ACTIONS(4450), + [anon_sym_goto] = ACTIONS(4450), + [anon_sym_not] = ACTIONS(4450), + [anon_sym_compl] = ACTIONS(4450), + [anon_sym_DASH_DASH] = ACTIONS(4452), + [anon_sym_PLUS_PLUS] = ACTIONS(4452), + [anon_sym_sizeof] = ACTIONS(4450), + [anon_sym___alignof__] = ACTIONS(4450), + [anon_sym___alignof] = ACTIONS(4450), + [anon_sym__alignof] = ACTIONS(4450), + [anon_sym_alignof] = ACTIONS(4450), + [anon_sym__Alignof] = ACTIONS(4450), + [anon_sym_offsetof] = ACTIONS(4450), + [anon_sym__Generic] = ACTIONS(4450), + [anon_sym_typename] = ACTIONS(4450), + [anon_sym_asm] = ACTIONS(4450), + [anon_sym___asm__] = ACTIONS(4450), + [anon_sym___asm] = ACTIONS(4450), + [sym_number_literal] = ACTIONS(4452), + [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(4452), + [anon_sym_u_DQUOTE] = ACTIONS(4452), + [anon_sym_U_DQUOTE] = ACTIONS(4452), + [anon_sym_u8_DQUOTE] = ACTIONS(4452), + [anon_sym_DQUOTE] = ACTIONS(4452), + [sym_true] = ACTIONS(4450), + [sym_false] = ACTIONS(4450), + [anon_sym_NULL] = ACTIONS(4450), + [anon_sym_nullptr] = ACTIONS(4450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4450), + [anon_sym_decltype] = ACTIONS(4450), + [anon_sym_explicit] = ACTIONS(4450), + [anon_sym_export] = ACTIONS(4450), + [anon_sym_module] = ACTIONS(4450), + [anon_sym_import] = ACTIONS(4450), + [anon_sym_template] = ACTIONS(4450), + [anon_sym_operator] = ACTIONS(4450), + [anon_sym_try] = ACTIONS(4450), + [anon_sym_delete] = ACTIONS(4450), + [anon_sym_throw] = ACTIONS(4450), + [anon_sym_namespace] = ACTIONS(4450), + [anon_sym_static_assert] = ACTIONS(4450), + [anon_sym_concept] = ACTIONS(4450), + [anon_sym_co_return] = ACTIONS(4450), + [anon_sym_co_yield] = ACTIONS(4450), + [anon_sym_R_DQUOTE] = ACTIONS(4452), + [anon_sym_LR_DQUOTE] = ACTIONS(4452), + [anon_sym_uR_DQUOTE] = ACTIONS(4452), + [anon_sym_UR_DQUOTE] = ACTIONS(4452), + [anon_sym_u8R_DQUOTE] = ACTIONS(4452), + [anon_sym_co_await] = ACTIONS(4450), + [anon_sym_new] = ACTIONS(4450), + [anon_sym_requires] = ACTIONS(4450), + [anon_sym_CARET_CARET] = ACTIONS(4452), + [anon_sym_LBRACK_COLON] = ACTIONS(4452), + [sym_this] = ACTIONS(4450), + }, + [STATE(944)] = { + [sym_identifier] = ACTIONS(4656), + [aux_sym_preproc_include_token1] = ACTIONS(4656), + [aux_sym_preproc_def_token1] = ACTIONS(4656), + [aux_sym_preproc_if_token1] = ACTIONS(4656), + [aux_sym_preproc_if_token2] = ACTIONS(4656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4656), + [sym_preproc_directive] = ACTIONS(4656), + [anon_sym_LPAREN2] = ACTIONS(4658), + [anon_sym_BANG] = ACTIONS(4658), + [anon_sym_TILDE] = ACTIONS(4658), + [anon_sym_DASH] = ACTIONS(4656), + [anon_sym_PLUS] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4658), + [anon_sym_AMP_AMP] = ACTIONS(4658), + [anon_sym_AMP] = ACTIONS(4656), + [anon_sym_SEMI] = ACTIONS(4658), + [anon_sym___extension__] = ACTIONS(4656), + [anon_sym_typedef] = ACTIONS(4656), + [anon_sym_virtual] = ACTIONS(4656), + [anon_sym_extern] = ACTIONS(4656), + [anon_sym___attribute__] = ACTIONS(4656), + [anon_sym___attribute] = ACTIONS(4656), + [anon_sym_using] = ACTIONS(4656), + [anon_sym_COLON_COLON] = ACTIONS(4658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4658), + [anon_sym___declspec] = ACTIONS(4656), + [anon_sym___based] = ACTIONS(4656), + [anon_sym___cdecl] = ACTIONS(4656), + [anon_sym___clrcall] = ACTIONS(4656), + [anon_sym___stdcall] = ACTIONS(4656), + [anon_sym___fastcall] = ACTIONS(4656), + [anon_sym___thiscall] = ACTIONS(4656), + [anon_sym___vectorcall] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4658), + [anon_sym_signed] = ACTIONS(4656), + [anon_sym_unsigned] = ACTIONS(4656), + [anon_sym_long] = ACTIONS(4656), + [anon_sym_short] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_static] = ACTIONS(4656), + [anon_sym_register] = ACTIONS(4656), + [anon_sym_inline] = ACTIONS(4656), + [anon_sym___inline] = ACTIONS(4656), + [anon_sym___inline__] = ACTIONS(4656), + [anon_sym___forceinline] = ACTIONS(4656), + [anon_sym_thread_local] = ACTIONS(4656), + [anon_sym___thread] = ACTIONS(4656), + [anon_sym_const] = ACTIONS(4656), + [anon_sym_constexpr] = ACTIONS(4656), + [anon_sym_volatile] = ACTIONS(4656), + [anon_sym_restrict] = ACTIONS(4656), + [anon_sym___restrict__] = ACTIONS(4656), + [anon_sym__Atomic] = ACTIONS(4656), + [anon_sym__Noreturn] = ACTIONS(4656), + [anon_sym_noreturn] = ACTIONS(4656), + [anon_sym__Nonnull] = ACTIONS(4656), + [anon_sym_mutable] = ACTIONS(4656), + [anon_sym_constinit] = ACTIONS(4656), + [anon_sym_consteval] = ACTIONS(4656), + [anon_sym_alignas] = ACTIONS(4656), + [anon_sym__Alignas] = ACTIONS(4656), + [sym_primitive_type] = ACTIONS(4656), + [anon_sym_enum] = ACTIONS(4656), + [anon_sym_class] = ACTIONS(4656), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_union] = ACTIONS(4656), + [anon_sym_if] = ACTIONS(4656), + [anon_sym_switch] = ACTIONS(4656), + [anon_sym_case] = ACTIONS(4656), + [anon_sym_default] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_do] = ACTIONS(4656), + [anon_sym_for] = ACTIONS(4656), + [anon_sym_return] = ACTIONS(4656), + [anon_sym_break] = ACTIONS(4656), + [anon_sym_continue] = ACTIONS(4656), + [anon_sym_goto] = ACTIONS(4656), + [anon_sym_not] = ACTIONS(4656), + [anon_sym_compl] = ACTIONS(4656), + [anon_sym_DASH_DASH] = ACTIONS(4658), + [anon_sym_PLUS_PLUS] = ACTIONS(4658), + [anon_sym_sizeof] = ACTIONS(4656), + [anon_sym___alignof__] = ACTIONS(4656), + [anon_sym___alignof] = ACTIONS(4656), + [anon_sym__alignof] = ACTIONS(4656), + [anon_sym_alignof] = ACTIONS(4656), + [anon_sym__Alignof] = ACTIONS(4656), + [anon_sym_offsetof] = ACTIONS(4656), + [anon_sym__Generic] = ACTIONS(4656), + [anon_sym_typename] = ACTIONS(4656), + [anon_sym_asm] = ACTIONS(4656), + [anon_sym___asm__] = ACTIONS(4656), + [anon_sym___asm] = ACTIONS(4656), + [sym_number_literal] = ACTIONS(4658), + [anon_sym_L_SQUOTE] = ACTIONS(4658), + [anon_sym_u_SQUOTE] = ACTIONS(4658), + [anon_sym_U_SQUOTE] = ACTIONS(4658), + [anon_sym_u8_SQUOTE] = ACTIONS(4658), + [anon_sym_SQUOTE] = ACTIONS(4658), + [anon_sym_L_DQUOTE] = ACTIONS(4658), + [anon_sym_u_DQUOTE] = ACTIONS(4658), + [anon_sym_U_DQUOTE] = ACTIONS(4658), + [anon_sym_u8_DQUOTE] = ACTIONS(4658), + [anon_sym_DQUOTE] = ACTIONS(4658), + [sym_true] = ACTIONS(4656), + [sym_false] = ACTIONS(4656), + [anon_sym_NULL] = ACTIONS(4656), + [anon_sym_nullptr] = ACTIONS(4656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4656), + [anon_sym_decltype] = ACTIONS(4656), + [anon_sym_explicit] = ACTIONS(4656), + [anon_sym_export] = ACTIONS(4656), + [anon_sym_module] = ACTIONS(4656), + [anon_sym_import] = ACTIONS(4656), + [anon_sym_template] = ACTIONS(4656), + [anon_sym_operator] = ACTIONS(4656), + [anon_sym_try] = ACTIONS(4656), + [anon_sym_delete] = ACTIONS(4656), + [anon_sym_throw] = ACTIONS(4656), + [anon_sym_namespace] = ACTIONS(4656), + [anon_sym_static_assert] = ACTIONS(4656), + [anon_sym_concept] = ACTIONS(4656), + [anon_sym_co_return] = ACTIONS(4656), + [anon_sym_co_yield] = ACTIONS(4656), + [anon_sym_R_DQUOTE] = ACTIONS(4658), + [anon_sym_LR_DQUOTE] = ACTIONS(4658), + [anon_sym_uR_DQUOTE] = ACTIONS(4658), + [anon_sym_UR_DQUOTE] = ACTIONS(4658), + [anon_sym_u8R_DQUOTE] = ACTIONS(4658), + [anon_sym_co_await] = ACTIONS(4656), + [anon_sym_new] = ACTIONS(4656), + [anon_sym_requires] = ACTIONS(4656), + [anon_sym_CARET_CARET] = ACTIONS(4658), + [anon_sym_LBRACK_COLON] = ACTIONS(4658), + [sym_this] = ACTIONS(4656), + }, + [STATE(945)] = { + [sym_identifier] = ACTIONS(4660), + [aux_sym_preproc_include_token1] = ACTIONS(4660), + [aux_sym_preproc_def_token1] = ACTIONS(4660), + [aux_sym_preproc_if_token1] = ACTIONS(4660), + [aux_sym_preproc_if_token2] = ACTIONS(4660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4660), + [sym_preproc_directive] = ACTIONS(4660), + [anon_sym_LPAREN2] = ACTIONS(4662), + [anon_sym_BANG] = ACTIONS(4662), + [anon_sym_TILDE] = ACTIONS(4662), + [anon_sym_DASH] = ACTIONS(4660), + [anon_sym_PLUS] = ACTIONS(4660), + [anon_sym_STAR] = ACTIONS(4662), + [anon_sym_AMP_AMP] = ACTIONS(4662), + [anon_sym_AMP] = ACTIONS(4660), + [anon_sym_SEMI] = ACTIONS(4662), + [anon_sym___extension__] = ACTIONS(4660), + [anon_sym_typedef] = ACTIONS(4660), + [anon_sym_virtual] = ACTIONS(4660), + [anon_sym_extern] = ACTIONS(4660), + [anon_sym___attribute__] = ACTIONS(4660), + [anon_sym___attribute] = ACTIONS(4660), + [anon_sym_using] = ACTIONS(4660), + [anon_sym_COLON_COLON] = ACTIONS(4662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4662), + [anon_sym___declspec] = ACTIONS(4660), + [anon_sym___based] = ACTIONS(4660), + [anon_sym___cdecl] = ACTIONS(4660), + [anon_sym___clrcall] = ACTIONS(4660), + [anon_sym___stdcall] = ACTIONS(4660), + [anon_sym___fastcall] = ACTIONS(4660), + [anon_sym___thiscall] = ACTIONS(4660), + [anon_sym___vectorcall] = ACTIONS(4660), + [anon_sym_LBRACE] = ACTIONS(4662), + [anon_sym_signed] = ACTIONS(4660), + [anon_sym_unsigned] = ACTIONS(4660), + [anon_sym_long] = ACTIONS(4660), + [anon_sym_short] = ACTIONS(4660), + [anon_sym_LBRACK] = ACTIONS(4660), + [anon_sym_static] = ACTIONS(4660), + [anon_sym_register] = ACTIONS(4660), + [anon_sym_inline] = ACTIONS(4660), + [anon_sym___inline] = ACTIONS(4660), + [anon_sym___inline__] = ACTIONS(4660), + [anon_sym___forceinline] = ACTIONS(4660), + [anon_sym_thread_local] = ACTIONS(4660), + [anon_sym___thread] = ACTIONS(4660), + [anon_sym_const] = ACTIONS(4660), + [anon_sym_constexpr] = ACTIONS(4660), + [anon_sym_volatile] = ACTIONS(4660), + [anon_sym_restrict] = ACTIONS(4660), + [anon_sym___restrict__] = ACTIONS(4660), + [anon_sym__Atomic] = ACTIONS(4660), + [anon_sym__Noreturn] = ACTIONS(4660), + [anon_sym_noreturn] = ACTIONS(4660), + [anon_sym__Nonnull] = ACTIONS(4660), + [anon_sym_mutable] = ACTIONS(4660), + [anon_sym_constinit] = ACTIONS(4660), + [anon_sym_consteval] = ACTIONS(4660), + [anon_sym_alignas] = ACTIONS(4660), + [anon_sym__Alignas] = ACTIONS(4660), + [sym_primitive_type] = ACTIONS(4660), + [anon_sym_enum] = ACTIONS(4660), + [anon_sym_class] = ACTIONS(4660), + [anon_sym_struct] = ACTIONS(4660), + [anon_sym_union] = ACTIONS(4660), + [anon_sym_if] = ACTIONS(4660), + [anon_sym_switch] = ACTIONS(4660), + [anon_sym_case] = ACTIONS(4660), + [anon_sym_default] = ACTIONS(4660), + [anon_sym_while] = ACTIONS(4660), + [anon_sym_do] = ACTIONS(4660), + [anon_sym_for] = ACTIONS(4660), + [anon_sym_return] = ACTIONS(4660), + [anon_sym_break] = ACTIONS(4660), + [anon_sym_continue] = ACTIONS(4660), + [anon_sym_goto] = ACTIONS(4660), + [anon_sym_not] = ACTIONS(4660), + [anon_sym_compl] = ACTIONS(4660), + [anon_sym_DASH_DASH] = ACTIONS(4662), + [anon_sym_PLUS_PLUS] = ACTIONS(4662), + [anon_sym_sizeof] = ACTIONS(4660), + [anon_sym___alignof__] = ACTIONS(4660), + [anon_sym___alignof] = ACTIONS(4660), + [anon_sym__alignof] = ACTIONS(4660), + [anon_sym_alignof] = ACTIONS(4660), + [anon_sym__Alignof] = ACTIONS(4660), + [anon_sym_offsetof] = ACTIONS(4660), + [anon_sym__Generic] = ACTIONS(4660), + [anon_sym_typename] = ACTIONS(4660), + [anon_sym_asm] = ACTIONS(4660), + [anon_sym___asm__] = ACTIONS(4660), + [anon_sym___asm] = ACTIONS(4660), + [sym_number_literal] = ACTIONS(4662), + [anon_sym_L_SQUOTE] = ACTIONS(4662), + [anon_sym_u_SQUOTE] = ACTIONS(4662), + [anon_sym_U_SQUOTE] = ACTIONS(4662), + [anon_sym_u8_SQUOTE] = ACTIONS(4662), + [anon_sym_SQUOTE] = ACTIONS(4662), + [anon_sym_L_DQUOTE] = ACTIONS(4662), + [anon_sym_u_DQUOTE] = ACTIONS(4662), + [anon_sym_U_DQUOTE] = ACTIONS(4662), + [anon_sym_u8_DQUOTE] = ACTIONS(4662), + [anon_sym_DQUOTE] = ACTIONS(4662), + [sym_true] = ACTIONS(4660), + [sym_false] = ACTIONS(4660), + [anon_sym_NULL] = ACTIONS(4660), + [anon_sym_nullptr] = ACTIONS(4660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4660), + [anon_sym_decltype] = ACTIONS(4660), + [anon_sym_explicit] = ACTIONS(4660), + [anon_sym_export] = ACTIONS(4660), + [anon_sym_module] = ACTIONS(4660), + [anon_sym_import] = ACTIONS(4660), + [anon_sym_template] = ACTIONS(4660), + [anon_sym_operator] = ACTIONS(4660), + [anon_sym_try] = ACTIONS(4660), + [anon_sym_delete] = ACTIONS(4660), + [anon_sym_throw] = ACTIONS(4660), + [anon_sym_namespace] = ACTIONS(4660), + [anon_sym_static_assert] = ACTIONS(4660), + [anon_sym_concept] = ACTIONS(4660), + [anon_sym_co_return] = ACTIONS(4660), + [anon_sym_co_yield] = ACTIONS(4660), + [anon_sym_R_DQUOTE] = ACTIONS(4662), + [anon_sym_LR_DQUOTE] = ACTIONS(4662), + [anon_sym_uR_DQUOTE] = ACTIONS(4662), + [anon_sym_UR_DQUOTE] = ACTIONS(4662), + [anon_sym_u8R_DQUOTE] = ACTIONS(4662), + [anon_sym_co_await] = ACTIONS(4660), + [anon_sym_new] = ACTIONS(4660), + [anon_sym_requires] = ACTIONS(4660), + [anon_sym_CARET_CARET] = ACTIONS(4662), + [anon_sym_LBRACK_COLON] = ACTIONS(4662), + [sym_this] = ACTIONS(4660), + }, + [STATE(946)] = { + [ts_builtin_sym_end] = ACTIONS(4090), + [sym_identifier] = ACTIONS(4088), + [aux_sym_preproc_include_token1] = ACTIONS(4088), + [aux_sym_preproc_def_token1] = ACTIONS(4088), + [aux_sym_preproc_if_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), + [sym_preproc_directive] = ACTIONS(4088), + [anon_sym_LPAREN2] = ACTIONS(4090), + [anon_sym_BANG] = ACTIONS(4090), + [anon_sym_TILDE] = ACTIONS(4090), + [anon_sym_DASH] = ACTIONS(4088), + [anon_sym_PLUS] = ACTIONS(4088), + [anon_sym_STAR] = ACTIONS(4090), + [anon_sym_AMP_AMP] = ACTIONS(4090), + [anon_sym_AMP] = ACTIONS(4088), + [anon_sym_SEMI] = ACTIONS(4090), + [anon_sym___extension__] = ACTIONS(4088), + [anon_sym_typedef] = ACTIONS(4088), + [anon_sym_virtual] = ACTIONS(4088), + [anon_sym_extern] = ACTIONS(4088), + [anon_sym___attribute__] = ACTIONS(4088), + [anon_sym___attribute] = ACTIONS(4088), + [anon_sym_using] = ACTIONS(4088), + [anon_sym_COLON_COLON] = ACTIONS(4090), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), + [anon_sym___declspec] = ACTIONS(4088), + [anon_sym___based] = ACTIONS(4088), + [anon_sym___cdecl] = ACTIONS(4088), + [anon_sym___clrcall] = ACTIONS(4088), + [anon_sym___stdcall] = ACTIONS(4088), + [anon_sym___fastcall] = ACTIONS(4088), + [anon_sym___thiscall] = ACTIONS(4088), + [anon_sym___vectorcall] = ACTIONS(4088), + [anon_sym_LBRACE] = ACTIONS(4090), + [anon_sym_signed] = ACTIONS(4088), + [anon_sym_unsigned] = ACTIONS(4088), + [anon_sym_long] = ACTIONS(4088), + [anon_sym_short] = ACTIONS(4088), + [anon_sym_LBRACK] = ACTIONS(4088), + [anon_sym_static] = ACTIONS(4088), + [anon_sym_register] = ACTIONS(4088), + [anon_sym_inline] = ACTIONS(4088), + [anon_sym___inline] = ACTIONS(4088), + [anon_sym___inline__] = ACTIONS(4088), + [anon_sym___forceinline] = ACTIONS(4088), + [anon_sym_thread_local] = ACTIONS(4088), + [anon_sym___thread] = ACTIONS(4088), + [anon_sym_const] = ACTIONS(4088), + [anon_sym_constexpr] = ACTIONS(4088), + [anon_sym_volatile] = ACTIONS(4088), + [anon_sym_restrict] = ACTIONS(4088), + [anon_sym___restrict__] = ACTIONS(4088), + [anon_sym__Atomic] = ACTIONS(4088), + [anon_sym__Noreturn] = ACTIONS(4088), + [anon_sym_noreturn] = ACTIONS(4088), + [anon_sym__Nonnull] = ACTIONS(4088), + [anon_sym_mutable] = ACTIONS(4088), + [anon_sym_constinit] = ACTIONS(4088), + [anon_sym_consteval] = ACTIONS(4088), + [anon_sym_alignas] = ACTIONS(4088), + [anon_sym__Alignas] = ACTIONS(4088), + [sym_primitive_type] = ACTIONS(4088), + [anon_sym_enum] = ACTIONS(4088), + [anon_sym_class] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(4088), + [anon_sym_union] = ACTIONS(4088), + [anon_sym_if] = ACTIONS(4088), + [anon_sym_switch] = ACTIONS(4088), + [anon_sym_case] = ACTIONS(4088), + [anon_sym_default] = ACTIONS(4088), + [anon_sym_while] = ACTIONS(4088), + [anon_sym_do] = ACTIONS(4088), + [anon_sym_for] = ACTIONS(4088), + [anon_sym_return] = ACTIONS(4088), + [anon_sym_break] = ACTIONS(4088), + [anon_sym_continue] = ACTIONS(4088), + [anon_sym_goto] = ACTIONS(4088), + [anon_sym_not] = ACTIONS(4088), + [anon_sym_compl] = ACTIONS(4088), + [anon_sym_DASH_DASH] = ACTIONS(4090), + [anon_sym_PLUS_PLUS] = ACTIONS(4090), + [anon_sym_sizeof] = ACTIONS(4088), + [anon_sym___alignof__] = ACTIONS(4088), + [anon_sym___alignof] = ACTIONS(4088), + [anon_sym__alignof] = ACTIONS(4088), + [anon_sym_alignof] = ACTIONS(4088), + [anon_sym__Alignof] = ACTIONS(4088), + [anon_sym_offsetof] = ACTIONS(4088), + [anon_sym__Generic] = ACTIONS(4088), + [anon_sym_typename] = ACTIONS(4088), + [anon_sym_asm] = ACTIONS(4088), + [anon_sym___asm__] = ACTIONS(4088), + [anon_sym___asm] = ACTIONS(4088), + [sym_number_literal] = ACTIONS(4090), + [anon_sym_L_SQUOTE] = ACTIONS(4090), + [anon_sym_u_SQUOTE] = ACTIONS(4090), + [anon_sym_U_SQUOTE] = ACTIONS(4090), + [anon_sym_u8_SQUOTE] = ACTIONS(4090), + [anon_sym_SQUOTE] = ACTIONS(4090), + [anon_sym_L_DQUOTE] = ACTIONS(4090), + [anon_sym_u_DQUOTE] = ACTIONS(4090), + [anon_sym_U_DQUOTE] = ACTIONS(4090), + [anon_sym_u8_DQUOTE] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(4090), + [sym_true] = ACTIONS(4088), + [sym_false] = ACTIONS(4088), + [anon_sym_NULL] = ACTIONS(4088), + [anon_sym_nullptr] = ACTIONS(4088), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4088), + [anon_sym_decltype] = ACTIONS(4088), + [anon_sym_explicit] = ACTIONS(4088), + [anon_sym_export] = ACTIONS(4088), + [anon_sym_module] = ACTIONS(4088), + [anon_sym_import] = ACTIONS(4088), + [anon_sym_template] = ACTIONS(4088), + [anon_sym_operator] = ACTIONS(4088), + [anon_sym_try] = ACTIONS(4088), + [anon_sym_delete] = ACTIONS(4088), + [anon_sym_throw] = ACTIONS(4088), + [anon_sym_namespace] = ACTIONS(4088), + [anon_sym_static_assert] = ACTIONS(4088), + [anon_sym_concept] = ACTIONS(4088), + [anon_sym_co_return] = ACTIONS(4088), + [anon_sym_co_yield] = ACTIONS(4088), + [anon_sym_R_DQUOTE] = ACTIONS(4090), + [anon_sym_LR_DQUOTE] = ACTIONS(4090), + [anon_sym_uR_DQUOTE] = ACTIONS(4090), + [anon_sym_UR_DQUOTE] = ACTIONS(4090), + [anon_sym_u8R_DQUOTE] = ACTIONS(4090), + [anon_sym_co_await] = ACTIONS(4088), + [anon_sym_new] = ACTIONS(4088), + [anon_sym_requires] = ACTIONS(4088), + [anon_sym_CARET_CARET] = ACTIONS(4090), + [anon_sym_LBRACK_COLON] = ACTIONS(4090), + [sym_this] = ACTIONS(4088), + }, + [STATE(947)] = { + [ts_builtin_sym_end] = ACTIONS(4094), + [sym_identifier] = ACTIONS(4092), + [aux_sym_preproc_include_token1] = ACTIONS(4092), + [aux_sym_preproc_def_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [sym_preproc_directive] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4094), + [anon_sym_BANG] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_DASH] = ACTIONS(4092), + [anon_sym_PLUS] = ACTIONS(4092), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym___extension__] = ACTIONS(4092), + [anon_sym_typedef] = ACTIONS(4092), + [anon_sym_virtual] = ACTIONS(4092), + [anon_sym_extern] = ACTIONS(4092), + [anon_sym___attribute__] = ACTIONS(4092), + [anon_sym___attribute] = ACTIONS(4092), + [anon_sym_using] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), + [anon_sym___declspec] = ACTIONS(4092), + [anon_sym___based] = ACTIONS(4092), + [anon_sym___cdecl] = ACTIONS(4092), + [anon_sym___clrcall] = ACTIONS(4092), + [anon_sym___stdcall] = ACTIONS(4092), + [anon_sym___fastcall] = ACTIONS(4092), + [anon_sym___thiscall] = ACTIONS(4092), + [anon_sym___vectorcall] = ACTIONS(4092), + [anon_sym_LBRACE] = ACTIONS(4094), + [anon_sym_signed] = ACTIONS(4092), + [anon_sym_unsigned] = ACTIONS(4092), + [anon_sym_long] = ACTIONS(4092), + [anon_sym_short] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_register] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym___inline] = ACTIONS(4092), + [anon_sym___inline__] = ACTIONS(4092), + [anon_sym___forceinline] = ACTIONS(4092), + [anon_sym_thread_local] = ACTIONS(4092), + [anon_sym___thread] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_constexpr] = ACTIONS(4092), + [anon_sym_volatile] = ACTIONS(4092), + [anon_sym_restrict] = ACTIONS(4092), + [anon_sym___restrict__] = ACTIONS(4092), + [anon_sym__Atomic] = ACTIONS(4092), + [anon_sym__Noreturn] = ACTIONS(4092), + [anon_sym_noreturn] = ACTIONS(4092), + [anon_sym__Nonnull] = ACTIONS(4092), + [anon_sym_mutable] = ACTIONS(4092), + [anon_sym_constinit] = ACTIONS(4092), + [anon_sym_consteval] = ACTIONS(4092), + [anon_sym_alignas] = ACTIONS(4092), + [anon_sym__Alignas] = ACTIONS(4092), + [sym_primitive_type] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_class] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_if] = ACTIONS(4092), + [anon_sym_switch] = ACTIONS(4092), + [anon_sym_case] = ACTIONS(4092), + [anon_sym_default] = ACTIONS(4092), + [anon_sym_while] = ACTIONS(4092), + [anon_sym_do] = ACTIONS(4092), + [anon_sym_for] = ACTIONS(4092), + [anon_sym_return] = ACTIONS(4092), + [anon_sym_break] = ACTIONS(4092), + [anon_sym_continue] = ACTIONS(4092), + [anon_sym_goto] = ACTIONS(4092), + [anon_sym_not] = ACTIONS(4092), + [anon_sym_compl] = ACTIONS(4092), + [anon_sym_DASH_DASH] = ACTIONS(4094), + [anon_sym_PLUS_PLUS] = ACTIONS(4094), + [anon_sym_sizeof] = ACTIONS(4092), + [anon_sym___alignof__] = ACTIONS(4092), + [anon_sym___alignof] = ACTIONS(4092), + [anon_sym__alignof] = ACTIONS(4092), + [anon_sym_alignof] = ACTIONS(4092), + [anon_sym__Alignof] = ACTIONS(4092), + [anon_sym_offsetof] = ACTIONS(4092), + [anon_sym__Generic] = ACTIONS(4092), + [anon_sym_typename] = ACTIONS(4092), + [anon_sym_asm] = ACTIONS(4092), + [anon_sym___asm__] = ACTIONS(4092), + [anon_sym___asm] = ACTIONS(4092), + [sym_number_literal] = ACTIONS(4094), + [anon_sym_L_SQUOTE] = ACTIONS(4094), + [anon_sym_u_SQUOTE] = ACTIONS(4094), + [anon_sym_U_SQUOTE] = ACTIONS(4094), + [anon_sym_u8_SQUOTE] = ACTIONS(4094), + [anon_sym_SQUOTE] = ACTIONS(4094), + [anon_sym_L_DQUOTE] = ACTIONS(4094), + [anon_sym_u_DQUOTE] = ACTIONS(4094), + [anon_sym_U_DQUOTE] = ACTIONS(4094), + [anon_sym_u8_DQUOTE] = ACTIONS(4094), + [anon_sym_DQUOTE] = ACTIONS(4094), + [sym_true] = ACTIONS(4092), + [sym_false] = ACTIONS(4092), + [anon_sym_NULL] = ACTIONS(4092), + [anon_sym_nullptr] = ACTIONS(4092), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4092), + [anon_sym_decltype] = ACTIONS(4092), + [anon_sym_explicit] = ACTIONS(4092), + [anon_sym_export] = ACTIONS(4092), + [anon_sym_module] = ACTIONS(4092), + [anon_sym_import] = ACTIONS(4092), + [anon_sym_template] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_try] = ACTIONS(4092), + [anon_sym_delete] = ACTIONS(4092), + [anon_sym_throw] = ACTIONS(4092), + [anon_sym_namespace] = ACTIONS(4092), + [anon_sym_static_assert] = ACTIONS(4092), + [anon_sym_concept] = ACTIONS(4092), + [anon_sym_co_return] = ACTIONS(4092), + [anon_sym_co_yield] = ACTIONS(4092), + [anon_sym_R_DQUOTE] = ACTIONS(4094), + [anon_sym_LR_DQUOTE] = ACTIONS(4094), + [anon_sym_uR_DQUOTE] = ACTIONS(4094), + [anon_sym_UR_DQUOTE] = ACTIONS(4094), + [anon_sym_u8R_DQUOTE] = ACTIONS(4094), + [anon_sym_co_await] = ACTIONS(4092), + [anon_sym_new] = ACTIONS(4092), + [anon_sym_requires] = ACTIONS(4092), + [anon_sym_CARET_CARET] = ACTIONS(4094), + [anon_sym_LBRACK_COLON] = ACTIONS(4094), + [sym_this] = ACTIONS(4092), + }, + [STATE(948)] = { + [sym_preproc_def] = STATE(950), + [sym_preproc_function_def] = STATE(950), + [sym_preproc_call] = STATE(950), + [sym_preproc_if_in_field_declaration_list] = STATE(950), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(950), + [sym_type_definition] = STATE(950), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(950), + [sym_field_declaration] = STATE(950), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(950), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(950), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(950), + [sym_operator_cast_declaration] = STATE(950), + [sym_constructor_or_destructor_definition] = STATE(950), + [sym_constructor_or_destructor_declaration] = STATE(950), + [sym_friend_declaration] = STATE(950), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(950), + [sym_alias_declaration] = STATE(950), + [sym_static_assert_declaration] = STATE(950), + [sym_consteval_block_declaration] = STATE(950), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(950), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4795), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), + [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4793), + [anon_sym_RBRACE] = ACTIONS(4797), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -193910,7 +194744,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -193920,682 +194754,1099 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(943)] = { - [ts_builtin_sym_end] = ACTIONS(4512), - [sym_identifier] = ACTIONS(4510), - [aux_sym_preproc_include_token1] = ACTIONS(4510), - [aux_sym_preproc_def_token1] = ACTIONS(4510), - [aux_sym_preproc_if_token1] = ACTIONS(4510), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4510), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4510), - [sym_preproc_directive] = ACTIONS(4510), - [anon_sym_LPAREN2] = ACTIONS(4512), - [anon_sym_BANG] = ACTIONS(4512), - [anon_sym_TILDE] = ACTIONS(4512), - [anon_sym_DASH] = ACTIONS(4510), - [anon_sym_PLUS] = ACTIONS(4510), - [anon_sym_STAR] = ACTIONS(4512), - [anon_sym_AMP_AMP] = ACTIONS(4512), - [anon_sym_AMP] = ACTIONS(4510), - [anon_sym_SEMI] = ACTIONS(4512), - [anon_sym___extension__] = ACTIONS(4510), - [anon_sym_typedef] = ACTIONS(4510), - [anon_sym_virtual] = ACTIONS(4510), - [anon_sym_extern] = ACTIONS(4510), - [anon_sym___attribute__] = ACTIONS(4510), - [anon_sym___attribute] = ACTIONS(4510), - [anon_sym_using] = ACTIONS(4510), - [anon_sym_COLON_COLON] = ACTIONS(4512), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4512), - [anon_sym___declspec] = ACTIONS(4510), - [anon_sym___based] = ACTIONS(4510), - [anon_sym___cdecl] = ACTIONS(4510), - [anon_sym___clrcall] = ACTIONS(4510), - [anon_sym___stdcall] = ACTIONS(4510), - [anon_sym___fastcall] = ACTIONS(4510), - [anon_sym___thiscall] = ACTIONS(4510), - [anon_sym___vectorcall] = ACTIONS(4510), - [anon_sym_LBRACE] = ACTIONS(4512), - [anon_sym_signed] = ACTIONS(4510), - [anon_sym_unsigned] = ACTIONS(4510), - [anon_sym_long] = ACTIONS(4510), - [anon_sym_short] = ACTIONS(4510), - [anon_sym_LBRACK] = ACTIONS(4510), - [anon_sym_static] = ACTIONS(4510), - [anon_sym_register] = ACTIONS(4510), - [anon_sym_inline] = ACTIONS(4510), - [anon_sym___inline] = ACTIONS(4510), - [anon_sym___inline__] = ACTIONS(4510), - [anon_sym___forceinline] = ACTIONS(4510), - [anon_sym_thread_local] = ACTIONS(4510), - [anon_sym___thread] = ACTIONS(4510), - [anon_sym_const] = ACTIONS(4510), - [anon_sym_constexpr] = ACTIONS(4510), - [anon_sym_volatile] = ACTIONS(4510), - [anon_sym_restrict] = ACTIONS(4510), - [anon_sym___restrict__] = ACTIONS(4510), - [anon_sym__Atomic] = ACTIONS(4510), - [anon_sym__Noreturn] = ACTIONS(4510), - [anon_sym_noreturn] = ACTIONS(4510), - [anon_sym__Nonnull] = ACTIONS(4510), - [anon_sym_mutable] = ACTIONS(4510), - [anon_sym_constinit] = ACTIONS(4510), - [anon_sym_consteval] = ACTIONS(4510), - [anon_sym_alignas] = ACTIONS(4510), - [anon_sym__Alignas] = ACTIONS(4510), - [sym_primitive_type] = ACTIONS(4510), - [anon_sym_enum] = ACTIONS(4510), - [anon_sym_class] = ACTIONS(4510), - [anon_sym_struct] = ACTIONS(4510), - [anon_sym_union] = ACTIONS(4510), - [anon_sym_if] = ACTIONS(4510), - [anon_sym_switch] = ACTIONS(4510), - [anon_sym_case] = ACTIONS(4510), - [anon_sym_default] = ACTIONS(4510), - [anon_sym_while] = ACTIONS(4510), - [anon_sym_do] = ACTIONS(4510), - [anon_sym_for] = ACTIONS(4510), - [anon_sym_return] = ACTIONS(4510), - [anon_sym_break] = ACTIONS(4510), - [anon_sym_continue] = ACTIONS(4510), - [anon_sym_goto] = ACTIONS(4510), - [anon_sym_not] = ACTIONS(4510), - [anon_sym_compl] = ACTIONS(4510), - [anon_sym_DASH_DASH] = ACTIONS(4512), - [anon_sym_PLUS_PLUS] = ACTIONS(4512), - [anon_sym_sizeof] = ACTIONS(4510), - [anon_sym___alignof__] = ACTIONS(4510), - [anon_sym___alignof] = ACTIONS(4510), - [anon_sym__alignof] = ACTIONS(4510), - [anon_sym_alignof] = ACTIONS(4510), - [anon_sym__Alignof] = ACTIONS(4510), - [anon_sym_offsetof] = ACTIONS(4510), - [anon_sym__Generic] = ACTIONS(4510), - [anon_sym_typename] = ACTIONS(4510), - [anon_sym_asm] = ACTIONS(4510), - [anon_sym___asm__] = ACTIONS(4510), - [anon_sym___asm] = ACTIONS(4510), - [sym_number_literal] = ACTIONS(4512), - [anon_sym_L_SQUOTE] = ACTIONS(4512), - [anon_sym_u_SQUOTE] = ACTIONS(4512), - [anon_sym_U_SQUOTE] = ACTIONS(4512), - [anon_sym_u8_SQUOTE] = ACTIONS(4512), - [anon_sym_SQUOTE] = ACTIONS(4512), - [anon_sym_L_DQUOTE] = ACTIONS(4512), - [anon_sym_u_DQUOTE] = ACTIONS(4512), - [anon_sym_U_DQUOTE] = ACTIONS(4512), - [anon_sym_u8_DQUOTE] = ACTIONS(4512), - [anon_sym_DQUOTE] = ACTIONS(4512), - [sym_true] = ACTIONS(4510), - [sym_false] = ACTIONS(4510), - [anon_sym_NULL] = ACTIONS(4510), - [anon_sym_nullptr] = ACTIONS(4510), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4510), - [anon_sym_decltype] = ACTIONS(4510), - [anon_sym_explicit] = ACTIONS(4510), - [anon_sym_export] = ACTIONS(4510), - [anon_sym_module] = ACTIONS(4510), - [anon_sym_import] = ACTIONS(4510), - [anon_sym_template] = ACTIONS(4510), - [anon_sym_operator] = ACTIONS(4510), - [anon_sym_try] = ACTIONS(4510), - [anon_sym_delete] = ACTIONS(4510), - [anon_sym_throw] = ACTIONS(4510), - [anon_sym_namespace] = ACTIONS(4510), - [anon_sym_static_assert] = ACTIONS(4510), - [anon_sym_concept] = ACTIONS(4510), - [anon_sym_co_return] = ACTIONS(4510), - [anon_sym_co_yield] = ACTIONS(4510), - [anon_sym_R_DQUOTE] = ACTIONS(4512), - [anon_sym_LR_DQUOTE] = ACTIONS(4512), - [anon_sym_uR_DQUOTE] = ACTIONS(4512), - [anon_sym_UR_DQUOTE] = ACTIONS(4512), - [anon_sym_u8R_DQUOTE] = ACTIONS(4512), - [anon_sym_co_await] = ACTIONS(4510), - [anon_sym_new] = ACTIONS(4510), - [anon_sym_requires] = ACTIONS(4510), - [anon_sym_CARET_CARET] = ACTIONS(4512), - [anon_sym_LBRACK_COLON] = ACTIONS(4512), - [sym_this] = ACTIONS(4510), + [STATE(949)] = { + [sym_identifier] = ACTIONS(4456), + [aux_sym_preproc_include_token1] = ACTIONS(4456), + [aux_sym_preproc_def_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token1] = ACTIONS(4456), + [aux_sym_preproc_if_token2] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4456), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4456), + [sym_preproc_directive] = ACTIONS(4456), + [anon_sym_LPAREN2] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_DASH] = ACTIONS(4456), + [anon_sym_PLUS] = ACTIONS(4456), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_AMP_AMP] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4456), + [anon_sym_SEMI] = ACTIONS(4458), + [anon_sym___extension__] = ACTIONS(4456), + [anon_sym_typedef] = ACTIONS(4456), + [anon_sym_virtual] = ACTIONS(4456), + [anon_sym_extern] = ACTIONS(4456), + [anon_sym___attribute__] = ACTIONS(4456), + [anon_sym___attribute] = ACTIONS(4456), + [anon_sym_using] = ACTIONS(4456), + [anon_sym_COLON_COLON] = ACTIONS(4458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4458), + [anon_sym___declspec] = ACTIONS(4456), + [anon_sym___based] = ACTIONS(4456), + [anon_sym___cdecl] = ACTIONS(4456), + [anon_sym___clrcall] = ACTIONS(4456), + [anon_sym___stdcall] = ACTIONS(4456), + [anon_sym___fastcall] = ACTIONS(4456), + [anon_sym___thiscall] = ACTIONS(4456), + [anon_sym___vectorcall] = ACTIONS(4456), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_signed] = ACTIONS(4456), + [anon_sym_unsigned] = ACTIONS(4456), + [anon_sym_long] = ACTIONS(4456), + [anon_sym_short] = ACTIONS(4456), + [anon_sym_LBRACK] = ACTIONS(4456), + [anon_sym_static] = ACTIONS(4456), + [anon_sym_register] = ACTIONS(4456), + [anon_sym_inline] = ACTIONS(4456), + [anon_sym___inline] = ACTIONS(4456), + [anon_sym___inline__] = ACTIONS(4456), + [anon_sym___forceinline] = ACTIONS(4456), + [anon_sym_thread_local] = ACTIONS(4456), + [anon_sym___thread] = ACTIONS(4456), + [anon_sym_const] = ACTIONS(4456), + [anon_sym_constexpr] = ACTIONS(4456), + [anon_sym_volatile] = ACTIONS(4456), + [anon_sym_restrict] = ACTIONS(4456), + [anon_sym___restrict__] = ACTIONS(4456), + [anon_sym__Atomic] = ACTIONS(4456), + [anon_sym__Noreturn] = ACTIONS(4456), + [anon_sym_noreturn] = ACTIONS(4456), + [anon_sym__Nonnull] = ACTIONS(4456), + [anon_sym_mutable] = ACTIONS(4456), + [anon_sym_constinit] = ACTIONS(4456), + [anon_sym_consteval] = ACTIONS(4456), + [anon_sym_alignas] = ACTIONS(4456), + [anon_sym__Alignas] = ACTIONS(4456), + [sym_primitive_type] = ACTIONS(4456), + [anon_sym_enum] = ACTIONS(4456), + [anon_sym_class] = ACTIONS(4456), + [anon_sym_struct] = ACTIONS(4456), + [anon_sym_union] = ACTIONS(4456), + [anon_sym_if] = ACTIONS(4456), + [anon_sym_switch] = ACTIONS(4456), + [anon_sym_case] = ACTIONS(4456), + [anon_sym_default] = ACTIONS(4456), + [anon_sym_while] = ACTIONS(4456), + [anon_sym_do] = ACTIONS(4456), + [anon_sym_for] = ACTIONS(4456), + [anon_sym_return] = ACTIONS(4456), + [anon_sym_break] = ACTIONS(4456), + [anon_sym_continue] = ACTIONS(4456), + [anon_sym_goto] = ACTIONS(4456), + [anon_sym_not] = ACTIONS(4456), + [anon_sym_compl] = ACTIONS(4456), + [anon_sym_DASH_DASH] = ACTIONS(4458), + [anon_sym_PLUS_PLUS] = ACTIONS(4458), + [anon_sym_sizeof] = ACTIONS(4456), + [anon_sym___alignof__] = ACTIONS(4456), + [anon_sym___alignof] = ACTIONS(4456), + [anon_sym__alignof] = ACTIONS(4456), + [anon_sym_alignof] = ACTIONS(4456), + [anon_sym__Alignof] = ACTIONS(4456), + [anon_sym_offsetof] = ACTIONS(4456), + [anon_sym__Generic] = ACTIONS(4456), + [anon_sym_typename] = ACTIONS(4456), + [anon_sym_asm] = ACTIONS(4456), + [anon_sym___asm__] = ACTIONS(4456), + [anon_sym___asm] = ACTIONS(4456), + [sym_number_literal] = ACTIONS(4458), + [anon_sym_L_SQUOTE] = ACTIONS(4458), + [anon_sym_u_SQUOTE] = ACTIONS(4458), + [anon_sym_U_SQUOTE] = ACTIONS(4458), + [anon_sym_u8_SQUOTE] = ACTIONS(4458), + [anon_sym_SQUOTE] = ACTIONS(4458), + [anon_sym_L_DQUOTE] = ACTIONS(4458), + [anon_sym_u_DQUOTE] = ACTIONS(4458), + [anon_sym_U_DQUOTE] = ACTIONS(4458), + [anon_sym_u8_DQUOTE] = ACTIONS(4458), + [anon_sym_DQUOTE] = ACTIONS(4458), + [sym_true] = ACTIONS(4456), + [sym_false] = ACTIONS(4456), + [anon_sym_NULL] = ACTIONS(4456), + [anon_sym_nullptr] = ACTIONS(4456), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4456), + [anon_sym_decltype] = ACTIONS(4456), + [anon_sym_explicit] = ACTIONS(4456), + [anon_sym_export] = ACTIONS(4456), + [anon_sym_module] = ACTIONS(4456), + [anon_sym_import] = ACTIONS(4456), + [anon_sym_template] = ACTIONS(4456), + [anon_sym_operator] = ACTIONS(4456), + [anon_sym_try] = ACTIONS(4456), + [anon_sym_delete] = ACTIONS(4456), + [anon_sym_throw] = ACTIONS(4456), + [anon_sym_namespace] = ACTIONS(4456), + [anon_sym_static_assert] = ACTIONS(4456), + [anon_sym_concept] = ACTIONS(4456), + [anon_sym_co_return] = ACTIONS(4456), + [anon_sym_co_yield] = ACTIONS(4456), + [anon_sym_R_DQUOTE] = ACTIONS(4458), + [anon_sym_LR_DQUOTE] = ACTIONS(4458), + [anon_sym_uR_DQUOTE] = ACTIONS(4458), + [anon_sym_UR_DQUOTE] = ACTIONS(4458), + [anon_sym_u8R_DQUOTE] = ACTIONS(4458), + [anon_sym_co_await] = ACTIONS(4456), + [anon_sym_new] = ACTIONS(4456), + [anon_sym_requires] = ACTIONS(4456), + [anon_sym_CARET_CARET] = ACTIONS(4458), + [anon_sym_LBRACK_COLON] = ACTIONS(4458), + [sym_this] = ACTIONS(4456), }, - [STATE(944)] = { - [ts_builtin_sym_end] = ACTIONS(3937), - [sym_identifier] = ACTIONS(3935), - [aux_sym_preproc_include_token1] = ACTIONS(3935), - [aux_sym_preproc_def_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token1] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), - [sym_preproc_directive] = ACTIONS(3935), - [anon_sym_LPAREN2] = ACTIONS(3937), - [anon_sym_BANG] = ACTIONS(3937), - [anon_sym_TILDE] = ACTIONS(3937), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3937), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_SEMI] = ACTIONS(3937), - [anon_sym___extension__] = ACTIONS(3935), - [anon_sym_typedef] = ACTIONS(3935), - [anon_sym_virtual] = ACTIONS(3935), - [anon_sym_extern] = ACTIONS(3935), - [anon_sym___attribute__] = ACTIONS(3935), - [anon_sym___attribute] = ACTIONS(3935), - [anon_sym_using] = ACTIONS(3935), - [anon_sym_COLON_COLON] = ACTIONS(3937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), - [anon_sym___declspec] = ACTIONS(3935), - [anon_sym___based] = ACTIONS(3935), - [anon_sym___cdecl] = ACTIONS(3935), - [anon_sym___clrcall] = ACTIONS(3935), - [anon_sym___stdcall] = ACTIONS(3935), - [anon_sym___fastcall] = ACTIONS(3935), - [anon_sym___thiscall] = ACTIONS(3935), - [anon_sym___vectorcall] = ACTIONS(3935), - [anon_sym_LBRACE] = ACTIONS(3937), - [anon_sym_signed] = ACTIONS(3935), - [anon_sym_unsigned] = ACTIONS(3935), - [anon_sym_long] = ACTIONS(3935), - [anon_sym_short] = ACTIONS(3935), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_static] = ACTIONS(3935), - [anon_sym_register] = ACTIONS(3935), - [anon_sym_inline] = ACTIONS(3935), - [anon_sym___inline] = ACTIONS(3935), - [anon_sym___inline__] = ACTIONS(3935), - [anon_sym___forceinline] = ACTIONS(3935), - [anon_sym_thread_local] = ACTIONS(3935), - [anon_sym___thread] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_constexpr] = ACTIONS(3935), - [anon_sym_volatile] = ACTIONS(3935), - [anon_sym_restrict] = ACTIONS(3935), - [anon_sym___restrict__] = ACTIONS(3935), - [anon_sym__Atomic] = ACTIONS(3935), - [anon_sym__Noreturn] = ACTIONS(3935), - [anon_sym_noreturn] = ACTIONS(3935), - [anon_sym__Nonnull] = ACTIONS(3935), - [anon_sym_mutable] = ACTIONS(3935), - [anon_sym_constinit] = ACTIONS(3935), - [anon_sym_consteval] = ACTIONS(3935), - [anon_sym_alignas] = ACTIONS(3935), - [anon_sym__Alignas] = ACTIONS(3935), - [sym_primitive_type] = ACTIONS(3935), - [anon_sym_enum] = ACTIONS(3935), - [anon_sym_class] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3935), - [anon_sym_if] = ACTIONS(3935), - [anon_sym_switch] = ACTIONS(3935), - [anon_sym_case] = ACTIONS(3935), - [anon_sym_default] = ACTIONS(3935), - [anon_sym_while] = ACTIONS(3935), - [anon_sym_do] = ACTIONS(3935), - [anon_sym_for] = ACTIONS(3935), - [anon_sym_return] = ACTIONS(3935), - [anon_sym_break] = ACTIONS(3935), - [anon_sym_continue] = ACTIONS(3935), - [anon_sym_goto] = ACTIONS(3935), - [anon_sym_not] = ACTIONS(3935), - [anon_sym_compl] = ACTIONS(3935), - [anon_sym_DASH_DASH] = ACTIONS(3937), - [anon_sym_PLUS_PLUS] = ACTIONS(3937), - [anon_sym_sizeof] = ACTIONS(3935), - [anon_sym___alignof__] = ACTIONS(3935), - [anon_sym___alignof] = ACTIONS(3935), - [anon_sym__alignof] = ACTIONS(3935), - [anon_sym_alignof] = ACTIONS(3935), - [anon_sym__Alignof] = ACTIONS(3935), - [anon_sym_offsetof] = ACTIONS(3935), - [anon_sym__Generic] = ACTIONS(3935), - [anon_sym_typename] = ACTIONS(3935), - [anon_sym_asm] = ACTIONS(3935), - [anon_sym___asm__] = ACTIONS(3935), - [anon_sym___asm] = ACTIONS(3935), - [sym_number_literal] = ACTIONS(3937), - [anon_sym_L_SQUOTE] = ACTIONS(3937), - [anon_sym_u_SQUOTE] = ACTIONS(3937), - [anon_sym_U_SQUOTE] = ACTIONS(3937), - [anon_sym_u8_SQUOTE] = ACTIONS(3937), - [anon_sym_SQUOTE] = ACTIONS(3937), - [anon_sym_L_DQUOTE] = ACTIONS(3937), - [anon_sym_u_DQUOTE] = ACTIONS(3937), - [anon_sym_U_DQUOTE] = ACTIONS(3937), - [anon_sym_u8_DQUOTE] = ACTIONS(3937), - [anon_sym_DQUOTE] = ACTIONS(3937), - [sym_true] = ACTIONS(3935), - [sym_false] = ACTIONS(3935), - [anon_sym_NULL] = ACTIONS(3935), - [anon_sym_nullptr] = ACTIONS(3935), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3935), - [anon_sym_decltype] = ACTIONS(3935), - [anon_sym_explicit] = ACTIONS(3935), - [anon_sym_export] = ACTIONS(3935), - [anon_sym_module] = ACTIONS(3935), - [anon_sym_import] = ACTIONS(3935), - [anon_sym_template] = ACTIONS(3935), - [anon_sym_operator] = ACTIONS(3935), - [anon_sym_try] = ACTIONS(3935), - [anon_sym_delete] = ACTIONS(3935), - [anon_sym_throw] = ACTIONS(3935), - [anon_sym_namespace] = ACTIONS(3935), - [anon_sym_static_assert] = ACTIONS(3935), - [anon_sym_concept] = ACTIONS(3935), - [anon_sym_co_return] = ACTIONS(3935), - [anon_sym_co_yield] = ACTIONS(3935), - [anon_sym_R_DQUOTE] = ACTIONS(3937), - [anon_sym_LR_DQUOTE] = ACTIONS(3937), - [anon_sym_uR_DQUOTE] = ACTIONS(3937), - [anon_sym_UR_DQUOTE] = ACTIONS(3937), - [anon_sym_u8R_DQUOTE] = ACTIONS(3937), - [anon_sym_co_await] = ACTIONS(3935), - [anon_sym_new] = ACTIONS(3935), - [anon_sym_requires] = ACTIONS(3935), - [anon_sym_CARET_CARET] = ACTIONS(3937), - [anon_sym_LBRACK_COLON] = ACTIONS(3937), - [sym_this] = ACTIONS(3935), + [STATE(950)] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4799), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3458), + [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(4702), + [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(4704), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(945)] = { - [ts_builtin_sym_end] = ACTIONS(4210), - [sym_identifier] = ACTIONS(4208), - [aux_sym_preproc_include_token1] = ACTIONS(4208), - [aux_sym_preproc_def_token1] = ACTIONS(4208), - [aux_sym_preproc_if_token1] = ACTIONS(4208), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4208), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4208), - [sym_preproc_directive] = ACTIONS(4208), - [anon_sym_LPAREN2] = ACTIONS(4210), - [anon_sym_BANG] = ACTIONS(4210), - [anon_sym_TILDE] = ACTIONS(4210), - [anon_sym_DASH] = ACTIONS(4208), - [anon_sym_PLUS] = ACTIONS(4208), - [anon_sym_STAR] = ACTIONS(4210), - [anon_sym_AMP_AMP] = ACTIONS(4210), - [anon_sym_AMP] = ACTIONS(4208), - [anon_sym_SEMI] = ACTIONS(4210), - [anon_sym___extension__] = ACTIONS(4208), - [anon_sym_typedef] = ACTIONS(4208), - [anon_sym_virtual] = ACTIONS(4208), - [anon_sym_extern] = ACTIONS(4208), - [anon_sym___attribute__] = ACTIONS(4208), - [anon_sym___attribute] = ACTIONS(4208), - [anon_sym_using] = ACTIONS(4208), - [anon_sym_COLON_COLON] = ACTIONS(4210), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4210), - [anon_sym___declspec] = ACTIONS(4208), - [anon_sym___based] = ACTIONS(4208), - [anon_sym___cdecl] = ACTIONS(4208), - [anon_sym___clrcall] = ACTIONS(4208), - [anon_sym___stdcall] = ACTIONS(4208), - [anon_sym___fastcall] = ACTIONS(4208), - [anon_sym___thiscall] = ACTIONS(4208), - [anon_sym___vectorcall] = ACTIONS(4208), - [anon_sym_LBRACE] = ACTIONS(4210), - [anon_sym_signed] = ACTIONS(4208), - [anon_sym_unsigned] = ACTIONS(4208), - [anon_sym_long] = ACTIONS(4208), - [anon_sym_short] = ACTIONS(4208), - [anon_sym_LBRACK] = ACTIONS(4208), - [anon_sym_static] = ACTIONS(4208), - [anon_sym_register] = ACTIONS(4208), - [anon_sym_inline] = ACTIONS(4208), - [anon_sym___inline] = ACTIONS(4208), - [anon_sym___inline__] = ACTIONS(4208), - [anon_sym___forceinline] = ACTIONS(4208), - [anon_sym_thread_local] = ACTIONS(4208), - [anon_sym___thread] = ACTIONS(4208), - [anon_sym_const] = ACTIONS(4208), - [anon_sym_constexpr] = ACTIONS(4208), - [anon_sym_volatile] = ACTIONS(4208), - [anon_sym_restrict] = ACTIONS(4208), - [anon_sym___restrict__] = ACTIONS(4208), - [anon_sym__Atomic] = ACTIONS(4208), - [anon_sym__Noreturn] = ACTIONS(4208), - [anon_sym_noreturn] = ACTIONS(4208), - [anon_sym__Nonnull] = ACTIONS(4208), - [anon_sym_mutable] = ACTIONS(4208), - [anon_sym_constinit] = ACTIONS(4208), - [anon_sym_consteval] = ACTIONS(4208), - [anon_sym_alignas] = ACTIONS(4208), - [anon_sym__Alignas] = ACTIONS(4208), - [sym_primitive_type] = ACTIONS(4208), - [anon_sym_enum] = ACTIONS(4208), - [anon_sym_class] = ACTIONS(4208), - [anon_sym_struct] = ACTIONS(4208), - [anon_sym_union] = ACTIONS(4208), - [anon_sym_if] = ACTIONS(4208), - [anon_sym_switch] = ACTIONS(4208), - [anon_sym_case] = ACTIONS(4208), - [anon_sym_default] = ACTIONS(4208), - [anon_sym_while] = ACTIONS(4208), - [anon_sym_do] = ACTIONS(4208), - [anon_sym_for] = ACTIONS(4208), - [anon_sym_return] = ACTIONS(4208), - [anon_sym_break] = ACTIONS(4208), - [anon_sym_continue] = ACTIONS(4208), - [anon_sym_goto] = ACTIONS(4208), - [anon_sym_not] = ACTIONS(4208), - [anon_sym_compl] = ACTIONS(4208), - [anon_sym_DASH_DASH] = ACTIONS(4210), - [anon_sym_PLUS_PLUS] = ACTIONS(4210), - [anon_sym_sizeof] = ACTIONS(4208), - [anon_sym___alignof__] = ACTIONS(4208), - [anon_sym___alignof] = ACTIONS(4208), - [anon_sym__alignof] = ACTIONS(4208), - [anon_sym_alignof] = ACTIONS(4208), - [anon_sym__Alignof] = ACTIONS(4208), - [anon_sym_offsetof] = ACTIONS(4208), - [anon_sym__Generic] = ACTIONS(4208), - [anon_sym_typename] = ACTIONS(4208), - [anon_sym_asm] = ACTIONS(4208), - [anon_sym___asm__] = ACTIONS(4208), - [anon_sym___asm] = ACTIONS(4208), - [sym_number_literal] = ACTIONS(4210), - [anon_sym_L_SQUOTE] = ACTIONS(4210), - [anon_sym_u_SQUOTE] = ACTIONS(4210), - [anon_sym_U_SQUOTE] = ACTIONS(4210), - [anon_sym_u8_SQUOTE] = ACTIONS(4210), - [anon_sym_SQUOTE] = ACTIONS(4210), - [anon_sym_L_DQUOTE] = ACTIONS(4210), - [anon_sym_u_DQUOTE] = ACTIONS(4210), - [anon_sym_U_DQUOTE] = ACTIONS(4210), - [anon_sym_u8_DQUOTE] = ACTIONS(4210), - [anon_sym_DQUOTE] = ACTIONS(4210), - [sym_true] = ACTIONS(4208), - [sym_false] = ACTIONS(4208), - [anon_sym_NULL] = ACTIONS(4208), - [anon_sym_nullptr] = ACTIONS(4208), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4208), - [anon_sym_decltype] = ACTIONS(4208), - [anon_sym_explicit] = ACTIONS(4208), - [anon_sym_export] = ACTIONS(4208), - [anon_sym_module] = ACTIONS(4208), - [anon_sym_import] = ACTIONS(4208), - [anon_sym_template] = ACTIONS(4208), - [anon_sym_operator] = ACTIONS(4208), - [anon_sym_try] = ACTIONS(4208), - [anon_sym_delete] = ACTIONS(4208), - [anon_sym_throw] = ACTIONS(4208), - [anon_sym_namespace] = ACTIONS(4208), - [anon_sym_static_assert] = ACTIONS(4208), - [anon_sym_concept] = ACTIONS(4208), - [anon_sym_co_return] = ACTIONS(4208), - [anon_sym_co_yield] = ACTIONS(4208), - [anon_sym_R_DQUOTE] = ACTIONS(4210), - [anon_sym_LR_DQUOTE] = ACTIONS(4210), - [anon_sym_uR_DQUOTE] = ACTIONS(4210), - [anon_sym_UR_DQUOTE] = ACTIONS(4210), - [anon_sym_u8R_DQUOTE] = ACTIONS(4210), - [anon_sym_co_await] = ACTIONS(4208), - [anon_sym_new] = ACTIONS(4208), - [anon_sym_requires] = ACTIONS(4208), - [anon_sym_CARET_CARET] = ACTIONS(4210), - [anon_sym_LBRACK_COLON] = ACTIONS(4210), - [sym_this] = ACTIONS(4208), + [STATE(951)] = { + [ts_builtin_sym_end] = ACTIONS(4108), + [sym_identifier] = ACTIONS(4106), + [aux_sym_preproc_include_token1] = ACTIONS(4106), + [aux_sym_preproc_def_token1] = ACTIONS(4106), + [aux_sym_preproc_if_token1] = ACTIONS(4106), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4106), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4106), + [sym_preproc_directive] = ACTIONS(4106), + [anon_sym_LPAREN2] = ACTIONS(4108), + [anon_sym_BANG] = ACTIONS(4108), + [anon_sym_TILDE] = ACTIONS(4108), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4108), + [anon_sym_AMP_AMP] = ACTIONS(4108), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_SEMI] = ACTIONS(4108), + [anon_sym___extension__] = ACTIONS(4106), + [anon_sym_typedef] = ACTIONS(4106), + [anon_sym_virtual] = ACTIONS(4106), + [anon_sym_extern] = ACTIONS(4106), + [anon_sym___attribute__] = ACTIONS(4106), + [anon_sym___attribute] = ACTIONS(4106), + [anon_sym_using] = ACTIONS(4106), + [anon_sym_COLON_COLON] = ACTIONS(4108), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4108), + [anon_sym___declspec] = ACTIONS(4106), + [anon_sym___based] = ACTIONS(4106), + [anon_sym___cdecl] = ACTIONS(4106), + [anon_sym___clrcall] = ACTIONS(4106), + [anon_sym___stdcall] = ACTIONS(4106), + [anon_sym___fastcall] = ACTIONS(4106), + [anon_sym___thiscall] = ACTIONS(4106), + [anon_sym___vectorcall] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4108), + [anon_sym_signed] = ACTIONS(4106), + [anon_sym_unsigned] = ACTIONS(4106), + [anon_sym_long] = ACTIONS(4106), + [anon_sym_short] = ACTIONS(4106), + [anon_sym_LBRACK] = ACTIONS(4106), + [anon_sym_static] = ACTIONS(4106), + [anon_sym_register] = ACTIONS(4106), + [anon_sym_inline] = ACTIONS(4106), + [anon_sym___inline] = ACTIONS(4106), + [anon_sym___inline__] = ACTIONS(4106), + [anon_sym___forceinline] = ACTIONS(4106), + [anon_sym_thread_local] = ACTIONS(4106), + [anon_sym___thread] = ACTIONS(4106), + [anon_sym_const] = ACTIONS(4106), + [anon_sym_constexpr] = ACTIONS(4106), + [anon_sym_volatile] = ACTIONS(4106), + [anon_sym_restrict] = ACTIONS(4106), + [anon_sym___restrict__] = ACTIONS(4106), + [anon_sym__Atomic] = ACTIONS(4106), + [anon_sym__Noreturn] = ACTIONS(4106), + [anon_sym_noreturn] = ACTIONS(4106), + [anon_sym__Nonnull] = ACTIONS(4106), + [anon_sym_mutable] = ACTIONS(4106), + [anon_sym_constinit] = ACTIONS(4106), + [anon_sym_consteval] = ACTIONS(4106), + [anon_sym_alignas] = ACTIONS(4106), + [anon_sym__Alignas] = ACTIONS(4106), + [sym_primitive_type] = ACTIONS(4106), + [anon_sym_enum] = ACTIONS(4106), + [anon_sym_class] = ACTIONS(4106), + [anon_sym_struct] = ACTIONS(4106), + [anon_sym_union] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_switch] = ACTIONS(4106), + [anon_sym_case] = ACTIONS(4106), + [anon_sym_default] = ACTIONS(4106), + [anon_sym_while] = ACTIONS(4106), + [anon_sym_do] = ACTIONS(4106), + [anon_sym_for] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_goto] = ACTIONS(4106), + [anon_sym_not] = ACTIONS(4106), + [anon_sym_compl] = ACTIONS(4106), + [anon_sym_DASH_DASH] = ACTIONS(4108), + [anon_sym_PLUS_PLUS] = ACTIONS(4108), + [anon_sym_sizeof] = ACTIONS(4106), + [anon_sym___alignof__] = ACTIONS(4106), + [anon_sym___alignof] = ACTIONS(4106), + [anon_sym__alignof] = ACTIONS(4106), + [anon_sym_alignof] = ACTIONS(4106), + [anon_sym__Alignof] = ACTIONS(4106), + [anon_sym_offsetof] = ACTIONS(4106), + [anon_sym__Generic] = ACTIONS(4106), + [anon_sym_typename] = ACTIONS(4106), + [anon_sym_asm] = ACTIONS(4106), + [anon_sym___asm__] = ACTIONS(4106), + [anon_sym___asm] = ACTIONS(4106), + [sym_number_literal] = ACTIONS(4108), + [anon_sym_L_SQUOTE] = ACTIONS(4108), + [anon_sym_u_SQUOTE] = ACTIONS(4108), + [anon_sym_U_SQUOTE] = ACTIONS(4108), + [anon_sym_u8_SQUOTE] = ACTIONS(4108), + [anon_sym_SQUOTE] = ACTIONS(4108), + [anon_sym_L_DQUOTE] = ACTIONS(4108), + [anon_sym_u_DQUOTE] = ACTIONS(4108), + [anon_sym_U_DQUOTE] = ACTIONS(4108), + [anon_sym_u8_DQUOTE] = ACTIONS(4108), + [anon_sym_DQUOTE] = ACTIONS(4108), + [sym_true] = ACTIONS(4106), + [sym_false] = ACTIONS(4106), + [anon_sym_NULL] = ACTIONS(4106), + [anon_sym_nullptr] = ACTIONS(4106), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4106), + [anon_sym_decltype] = ACTIONS(4106), + [anon_sym_explicit] = ACTIONS(4106), + [anon_sym_export] = ACTIONS(4106), + [anon_sym_module] = ACTIONS(4106), + [anon_sym_import] = ACTIONS(4106), + [anon_sym_template] = ACTIONS(4106), + [anon_sym_operator] = ACTIONS(4106), + [anon_sym_try] = ACTIONS(4106), + [anon_sym_delete] = ACTIONS(4106), + [anon_sym_throw] = ACTIONS(4106), + [anon_sym_namespace] = ACTIONS(4106), + [anon_sym_static_assert] = ACTIONS(4106), + [anon_sym_concept] = ACTIONS(4106), + [anon_sym_co_return] = ACTIONS(4106), + [anon_sym_co_yield] = ACTIONS(4106), + [anon_sym_R_DQUOTE] = ACTIONS(4108), + [anon_sym_LR_DQUOTE] = ACTIONS(4108), + [anon_sym_uR_DQUOTE] = ACTIONS(4108), + [anon_sym_UR_DQUOTE] = ACTIONS(4108), + [anon_sym_u8R_DQUOTE] = ACTIONS(4108), + [anon_sym_co_await] = ACTIONS(4106), + [anon_sym_new] = ACTIONS(4106), + [anon_sym_requires] = ACTIONS(4106), + [anon_sym_CARET_CARET] = ACTIONS(4108), + [anon_sym_LBRACK_COLON] = ACTIONS(4108), + [sym_this] = ACTIONS(4106), }, - [STATE(946)] = { - [ts_builtin_sym_end] = ACTIONS(4214), - [sym_identifier] = ACTIONS(4212), - [aux_sym_preproc_include_token1] = ACTIONS(4212), - [aux_sym_preproc_def_token1] = ACTIONS(4212), - [aux_sym_preproc_if_token1] = ACTIONS(4212), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4212), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4212), - [sym_preproc_directive] = ACTIONS(4212), - [anon_sym_LPAREN2] = ACTIONS(4214), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_TILDE] = ACTIONS(4214), - [anon_sym_DASH] = ACTIONS(4212), - [anon_sym_PLUS] = ACTIONS(4212), - [anon_sym_STAR] = ACTIONS(4214), - [anon_sym_AMP_AMP] = ACTIONS(4214), - [anon_sym_AMP] = ACTIONS(4212), - [anon_sym_SEMI] = ACTIONS(4214), - [anon_sym___extension__] = ACTIONS(4212), - [anon_sym_typedef] = ACTIONS(4212), - [anon_sym_virtual] = ACTIONS(4212), - [anon_sym_extern] = ACTIONS(4212), - [anon_sym___attribute__] = ACTIONS(4212), - [anon_sym___attribute] = ACTIONS(4212), - [anon_sym_using] = ACTIONS(4212), - [anon_sym_COLON_COLON] = ACTIONS(4214), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4214), - [anon_sym___declspec] = ACTIONS(4212), - [anon_sym___based] = ACTIONS(4212), - [anon_sym___cdecl] = ACTIONS(4212), - [anon_sym___clrcall] = ACTIONS(4212), - [anon_sym___stdcall] = ACTIONS(4212), - [anon_sym___fastcall] = ACTIONS(4212), - [anon_sym___thiscall] = ACTIONS(4212), - [anon_sym___vectorcall] = ACTIONS(4212), - [anon_sym_LBRACE] = ACTIONS(4214), - [anon_sym_signed] = ACTIONS(4212), - [anon_sym_unsigned] = ACTIONS(4212), - [anon_sym_long] = ACTIONS(4212), - [anon_sym_short] = ACTIONS(4212), - [anon_sym_LBRACK] = ACTIONS(4212), - [anon_sym_static] = ACTIONS(4212), - [anon_sym_register] = ACTIONS(4212), - [anon_sym_inline] = ACTIONS(4212), - [anon_sym___inline] = ACTIONS(4212), - [anon_sym___inline__] = ACTIONS(4212), - [anon_sym___forceinline] = ACTIONS(4212), - [anon_sym_thread_local] = ACTIONS(4212), - [anon_sym___thread] = ACTIONS(4212), - [anon_sym_const] = ACTIONS(4212), - [anon_sym_constexpr] = ACTIONS(4212), - [anon_sym_volatile] = ACTIONS(4212), - [anon_sym_restrict] = ACTIONS(4212), - [anon_sym___restrict__] = ACTIONS(4212), - [anon_sym__Atomic] = ACTIONS(4212), - [anon_sym__Noreturn] = ACTIONS(4212), - [anon_sym_noreturn] = ACTIONS(4212), - [anon_sym__Nonnull] = ACTIONS(4212), - [anon_sym_mutable] = ACTIONS(4212), - [anon_sym_constinit] = ACTIONS(4212), - [anon_sym_consteval] = ACTIONS(4212), - [anon_sym_alignas] = ACTIONS(4212), - [anon_sym__Alignas] = ACTIONS(4212), - [sym_primitive_type] = ACTIONS(4212), - [anon_sym_enum] = ACTIONS(4212), - [anon_sym_class] = ACTIONS(4212), - [anon_sym_struct] = ACTIONS(4212), - [anon_sym_union] = ACTIONS(4212), - [anon_sym_if] = ACTIONS(4212), - [anon_sym_switch] = ACTIONS(4212), - [anon_sym_case] = ACTIONS(4212), - [anon_sym_default] = ACTIONS(4212), - [anon_sym_while] = ACTIONS(4212), - [anon_sym_do] = ACTIONS(4212), - [anon_sym_for] = ACTIONS(4212), - [anon_sym_return] = ACTIONS(4212), - [anon_sym_break] = ACTIONS(4212), - [anon_sym_continue] = ACTIONS(4212), - [anon_sym_goto] = ACTIONS(4212), - [anon_sym_not] = ACTIONS(4212), - [anon_sym_compl] = ACTIONS(4212), - [anon_sym_DASH_DASH] = ACTIONS(4214), - [anon_sym_PLUS_PLUS] = ACTIONS(4214), - [anon_sym_sizeof] = ACTIONS(4212), - [anon_sym___alignof__] = ACTIONS(4212), - [anon_sym___alignof] = ACTIONS(4212), - [anon_sym__alignof] = ACTIONS(4212), - [anon_sym_alignof] = ACTIONS(4212), - [anon_sym__Alignof] = ACTIONS(4212), - [anon_sym_offsetof] = ACTIONS(4212), - [anon_sym__Generic] = ACTIONS(4212), - [anon_sym_typename] = ACTIONS(4212), - [anon_sym_asm] = ACTIONS(4212), - [anon_sym___asm__] = ACTIONS(4212), - [anon_sym___asm] = ACTIONS(4212), - [sym_number_literal] = ACTIONS(4214), - [anon_sym_L_SQUOTE] = ACTIONS(4214), - [anon_sym_u_SQUOTE] = ACTIONS(4214), - [anon_sym_U_SQUOTE] = ACTIONS(4214), - [anon_sym_u8_SQUOTE] = ACTIONS(4214), - [anon_sym_SQUOTE] = ACTIONS(4214), - [anon_sym_L_DQUOTE] = ACTIONS(4214), - [anon_sym_u_DQUOTE] = ACTIONS(4214), - [anon_sym_U_DQUOTE] = ACTIONS(4214), - [anon_sym_u8_DQUOTE] = ACTIONS(4214), - [anon_sym_DQUOTE] = ACTIONS(4214), - [sym_true] = ACTIONS(4212), - [sym_false] = ACTIONS(4212), - [anon_sym_NULL] = ACTIONS(4212), - [anon_sym_nullptr] = ACTIONS(4212), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4212), - [anon_sym_decltype] = ACTIONS(4212), - [anon_sym_explicit] = ACTIONS(4212), - [anon_sym_export] = ACTIONS(4212), - [anon_sym_module] = ACTIONS(4212), - [anon_sym_import] = ACTIONS(4212), - [anon_sym_template] = ACTIONS(4212), - [anon_sym_operator] = ACTIONS(4212), - [anon_sym_try] = ACTIONS(4212), - [anon_sym_delete] = ACTIONS(4212), - [anon_sym_throw] = ACTIONS(4212), - [anon_sym_namespace] = ACTIONS(4212), - [anon_sym_static_assert] = ACTIONS(4212), - [anon_sym_concept] = ACTIONS(4212), - [anon_sym_co_return] = ACTIONS(4212), - [anon_sym_co_yield] = ACTIONS(4212), - [anon_sym_R_DQUOTE] = ACTIONS(4214), - [anon_sym_LR_DQUOTE] = ACTIONS(4214), - [anon_sym_uR_DQUOTE] = ACTIONS(4214), - [anon_sym_UR_DQUOTE] = ACTIONS(4214), - [anon_sym_u8R_DQUOTE] = ACTIONS(4214), - [anon_sym_co_await] = ACTIONS(4212), - [anon_sym_new] = ACTIONS(4212), - [anon_sym_requires] = ACTIONS(4212), - [anon_sym_CARET_CARET] = ACTIONS(4214), - [anon_sym_LBRACK_COLON] = ACTIONS(4214), - [sym_this] = ACTIONS(4212), + [STATE(952)] = { + [ts_builtin_sym_end] = ACTIONS(4112), + [sym_identifier] = ACTIONS(4110), + [aux_sym_preproc_include_token1] = ACTIONS(4110), + [aux_sym_preproc_def_token1] = ACTIONS(4110), + [aux_sym_preproc_if_token1] = ACTIONS(4110), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4110), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4110), + [sym_preproc_directive] = ACTIONS(4110), + [anon_sym_LPAREN2] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [anon_sym_DASH] = ACTIONS(4110), + [anon_sym_PLUS] = ACTIONS(4110), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_AMP] = ACTIONS(4110), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym___extension__] = ACTIONS(4110), + [anon_sym_typedef] = ACTIONS(4110), + [anon_sym_virtual] = ACTIONS(4110), + [anon_sym_extern] = ACTIONS(4110), + [anon_sym___attribute__] = ACTIONS(4110), + [anon_sym___attribute] = ACTIONS(4110), + [anon_sym_using] = ACTIONS(4110), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4112), + [anon_sym___declspec] = ACTIONS(4110), + [anon_sym___based] = ACTIONS(4110), + [anon_sym___cdecl] = ACTIONS(4110), + [anon_sym___clrcall] = ACTIONS(4110), + [anon_sym___stdcall] = ACTIONS(4110), + [anon_sym___fastcall] = ACTIONS(4110), + [anon_sym___thiscall] = ACTIONS(4110), + [anon_sym___vectorcall] = ACTIONS(4110), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_signed] = ACTIONS(4110), + [anon_sym_unsigned] = ACTIONS(4110), + [anon_sym_long] = ACTIONS(4110), + [anon_sym_short] = ACTIONS(4110), + [anon_sym_LBRACK] = ACTIONS(4110), + [anon_sym_static] = ACTIONS(4110), + [anon_sym_register] = ACTIONS(4110), + [anon_sym_inline] = ACTIONS(4110), + [anon_sym___inline] = ACTIONS(4110), + [anon_sym___inline__] = ACTIONS(4110), + [anon_sym___forceinline] = ACTIONS(4110), + [anon_sym_thread_local] = ACTIONS(4110), + [anon_sym___thread] = ACTIONS(4110), + [anon_sym_const] = ACTIONS(4110), + [anon_sym_constexpr] = ACTIONS(4110), + [anon_sym_volatile] = ACTIONS(4110), + [anon_sym_restrict] = ACTIONS(4110), + [anon_sym___restrict__] = ACTIONS(4110), + [anon_sym__Atomic] = ACTIONS(4110), + [anon_sym__Noreturn] = ACTIONS(4110), + [anon_sym_noreturn] = ACTIONS(4110), + [anon_sym__Nonnull] = ACTIONS(4110), + [anon_sym_mutable] = ACTIONS(4110), + [anon_sym_constinit] = ACTIONS(4110), + [anon_sym_consteval] = ACTIONS(4110), + [anon_sym_alignas] = ACTIONS(4110), + [anon_sym__Alignas] = ACTIONS(4110), + [sym_primitive_type] = ACTIONS(4110), + [anon_sym_enum] = ACTIONS(4110), + [anon_sym_class] = ACTIONS(4110), + [anon_sym_struct] = ACTIONS(4110), + [anon_sym_union] = ACTIONS(4110), + [anon_sym_if] = ACTIONS(4110), + [anon_sym_switch] = ACTIONS(4110), + [anon_sym_case] = ACTIONS(4110), + [anon_sym_default] = ACTIONS(4110), + [anon_sym_while] = ACTIONS(4110), + [anon_sym_do] = ACTIONS(4110), + [anon_sym_for] = ACTIONS(4110), + [anon_sym_return] = ACTIONS(4110), + [anon_sym_break] = ACTIONS(4110), + [anon_sym_continue] = ACTIONS(4110), + [anon_sym_goto] = ACTIONS(4110), + [anon_sym_not] = ACTIONS(4110), + [anon_sym_compl] = ACTIONS(4110), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_sizeof] = ACTIONS(4110), + [anon_sym___alignof__] = ACTIONS(4110), + [anon_sym___alignof] = ACTIONS(4110), + [anon_sym__alignof] = ACTIONS(4110), + [anon_sym_alignof] = ACTIONS(4110), + [anon_sym__Alignof] = ACTIONS(4110), + [anon_sym_offsetof] = ACTIONS(4110), + [anon_sym__Generic] = ACTIONS(4110), + [anon_sym_typename] = ACTIONS(4110), + [anon_sym_asm] = ACTIONS(4110), + [anon_sym___asm__] = ACTIONS(4110), + [anon_sym___asm] = ACTIONS(4110), + [sym_number_literal] = ACTIONS(4112), + [anon_sym_L_SQUOTE] = ACTIONS(4112), + [anon_sym_u_SQUOTE] = ACTIONS(4112), + [anon_sym_U_SQUOTE] = ACTIONS(4112), + [anon_sym_u8_SQUOTE] = ACTIONS(4112), + [anon_sym_SQUOTE] = ACTIONS(4112), + [anon_sym_L_DQUOTE] = ACTIONS(4112), + [anon_sym_u_DQUOTE] = ACTIONS(4112), + [anon_sym_U_DQUOTE] = ACTIONS(4112), + [anon_sym_u8_DQUOTE] = ACTIONS(4112), + [anon_sym_DQUOTE] = ACTIONS(4112), + [sym_true] = ACTIONS(4110), + [sym_false] = ACTIONS(4110), + [anon_sym_NULL] = ACTIONS(4110), + [anon_sym_nullptr] = ACTIONS(4110), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4110), + [anon_sym_decltype] = ACTIONS(4110), + [anon_sym_explicit] = ACTIONS(4110), + [anon_sym_export] = ACTIONS(4110), + [anon_sym_module] = ACTIONS(4110), + [anon_sym_import] = ACTIONS(4110), + [anon_sym_template] = ACTIONS(4110), + [anon_sym_operator] = ACTIONS(4110), + [anon_sym_try] = ACTIONS(4110), + [anon_sym_delete] = ACTIONS(4110), + [anon_sym_throw] = ACTIONS(4110), + [anon_sym_namespace] = ACTIONS(4110), + [anon_sym_static_assert] = ACTIONS(4110), + [anon_sym_concept] = ACTIONS(4110), + [anon_sym_co_return] = ACTIONS(4110), + [anon_sym_co_yield] = ACTIONS(4110), + [anon_sym_R_DQUOTE] = ACTIONS(4112), + [anon_sym_LR_DQUOTE] = ACTIONS(4112), + [anon_sym_uR_DQUOTE] = ACTIONS(4112), + [anon_sym_UR_DQUOTE] = ACTIONS(4112), + [anon_sym_u8R_DQUOTE] = ACTIONS(4112), + [anon_sym_co_await] = ACTIONS(4110), + [anon_sym_new] = ACTIONS(4110), + [anon_sym_requires] = ACTIONS(4110), + [anon_sym_CARET_CARET] = ACTIONS(4112), + [anon_sym_LBRACK_COLON] = ACTIONS(4112), + [sym_this] = ACTIONS(4110), }, - [STATE(947)] = { - [sym_preproc_def] = STATE(948), - [sym_preproc_function_def] = STATE(948), - [sym_preproc_call] = STATE(948), - [sym_preproc_if_in_field_declaration_list] = STATE(948), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(948), - [sym_type_definition] = STATE(948), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(948), - [sym_field_declaration] = STATE(948), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(948), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(948), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(948), - [sym_operator_cast_declaration] = STATE(948), - [sym_constructor_or_destructor_definition] = STATE(948), - [sym_constructor_or_destructor_declaration] = STATE(948), - [sym_friend_declaration] = STATE(948), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(948), - [sym_alias_declaration] = STATE(948), - [sym_static_assert_declaration] = STATE(948), - [sym_consteval_block_declaration] = STATE(948), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(948), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(953)] = { + [ts_builtin_sym_end] = ACTIONS(4104), + [sym_identifier] = ACTIONS(4102), + [aux_sym_preproc_include_token1] = ACTIONS(4102), + [aux_sym_preproc_def_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token1] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4102), + [sym_preproc_directive] = ACTIONS(4102), + [anon_sym_LPAREN2] = ACTIONS(4104), + [anon_sym_BANG] = ACTIONS(4104), + [anon_sym_TILDE] = ACTIONS(4104), + [anon_sym_DASH] = ACTIONS(4102), + [anon_sym_PLUS] = ACTIONS(4102), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym___extension__] = ACTIONS(4102), + [anon_sym_typedef] = ACTIONS(4102), + [anon_sym_virtual] = ACTIONS(4102), + [anon_sym_extern] = ACTIONS(4102), + [anon_sym___attribute__] = ACTIONS(4102), + [anon_sym___attribute] = ACTIONS(4102), + [anon_sym_using] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4104), + [anon_sym___declspec] = ACTIONS(4102), + [anon_sym___based] = ACTIONS(4102), + [anon_sym___cdecl] = ACTIONS(4102), + [anon_sym___clrcall] = ACTIONS(4102), + [anon_sym___stdcall] = ACTIONS(4102), + [anon_sym___fastcall] = ACTIONS(4102), + [anon_sym___thiscall] = ACTIONS(4102), + [anon_sym___vectorcall] = ACTIONS(4102), + [anon_sym_LBRACE] = ACTIONS(4104), + [anon_sym_signed] = ACTIONS(4102), + [anon_sym_unsigned] = ACTIONS(4102), + [anon_sym_long] = ACTIONS(4102), + [anon_sym_short] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_static] = ACTIONS(4102), + [anon_sym_register] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym___inline] = ACTIONS(4102), + [anon_sym___inline__] = ACTIONS(4102), + [anon_sym___forceinline] = ACTIONS(4102), + [anon_sym_thread_local] = ACTIONS(4102), + [anon_sym___thread] = ACTIONS(4102), + [anon_sym_const] = ACTIONS(4102), + [anon_sym_constexpr] = ACTIONS(4102), + [anon_sym_volatile] = ACTIONS(4102), + [anon_sym_restrict] = ACTIONS(4102), + [anon_sym___restrict__] = ACTIONS(4102), + [anon_sym__Atomic] = ACTIONS(4102), + [anon_sym__Noreturn] = ACTIONS(4102), + [anon_sym_noreturn] = ACTIONS(4102), + [anon_sym__Nonnull] = ACTIONS(4102), + [anon_sym_mutable] = ACTIONS(4102), + [anon_sym_constinit] = ACTIONS(4102), + [anon_sym_consteval] = ACTIONS(4102), + [anon_sym_alignas] = ACTIONS(4102), + [anon_sym__Alignas] = ACTIONS(4102), + [sym_primitive_type] = ACTIONS(4102), + [anon_sym_enum] = ACTIONS(4102), + [anon_sym_class] = ACTIONS(4102), + [anon_sym_struct] = ACTIONS(4102), + [anon_sym_union] = ACTIONS(4102), + [anon_sym_if] = ACTIONS(4102), + [anon_sym_switch] = ACTIONS(4102), + [anon_sym_case] = ACTIONS(4102), + [anon_sym_default] = ACTIONS(4102), + [anon_sym_while] = ACTIONS(4102), + [anon_sym_do] = ACTIONS(4102), + [anon_sym_for] = ACTIONS(4102), + [anon_sym_return] = ACTIONS(4102), + [anon_sym_break] = ACTIONS(4102), + [anon_sym_continue] = ACTIONS(4102), + [anon_sym_goto] = ACTIONS(4102), + [anon_sym_not] = ACTIONS(4102), + [anon_sym_compl] = ACTIONS(4102), + [anon_sym_DASH_DASH] = ACTIONS(4104), + [anon_sym_PLUS_PLUS] = ACTIONS(4104), + [anon_sym_sizeof] = ACTIONS(4102), + [anon_sym___alignof__] = ACTIONS(4102), + [anon_sym___alignof] = ACTIONS(4102), + [anon_sym__alignof] = ACTIONS(4102), + [anon_sym_alignof] = ACTIONS(4102), + [anon_sym__Alignof] = ACTIONS(4102), + [anon_sym_offsetof] = ACTIONS(4102), + [anon_sym__Generic] = ACTIONS(4102), + [anon_sym_typename] = ACTIONS(4102), + [anon_sym_asm] = ACTIONS(4102), + [anon_sym___asm__] = ACTIONS(4102), + [anon_sym___asm] = ACTIONS(4102), + [sym_number_literal] = ACTIONS(4104), + [anon_sym_L_SQUOTE] = ACTIONS(4104), + [anon_sym_u_SQUOTE] = ACTIONS(4104), + [anon_sym_U_SQUOTE] = ACTIONS(4104), + [anon_sym_u8_SQUOTE] = ACTIONS(4104), + [anon_sym_SQUOTE] = ACTIONS(4104), + [anon_sym_L_DQUOTE] = ACTIONS(4104), + [anon_sym_u_DQUOTE] = ACTIONS(4104), + [anon_sym_U_DQUOTE] = ACTIONS(4104), + [anon_sym_u8_DQUOTE] = ACTIONS(4104), + [anon_sym_DQUOTE] = ACTIONS(4104), + [sym_true] = ACTIONS(4102), + [sym_false] = ACTIONS(4102), + [anon_sym_NULL] = ACTIONS(4102), + [anon_sym_nullptr] = ACTIONS(4102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4102), + [anon_sym_decltype] = ACTIONS(4102), + [anon_sym_explicit] = ACTIONS(4102), + [anon_sym_export] = ACTIONS(4102), + [anon_sym_module] = ACTIONS(4102), + [anon_sym_import] = ACTIONS(4102), + [anon_sym_template] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_try] = ACTIONS(4102), + [anon_sym_delete] = ACTIONS(4102), + [anon_sym_throw] = ACTIONS(4102), + [anon_sym_namespace] = ACTIONS(4102), + [anon_sym_static_assert] = ACTIONS(4102), + [anon_sym_concept] = ACTIONS(4102), + [anon_sym_co_return] = ACTIONS(4102), + [anon_sym_co_yield] = ACTIONS(4102), + [anon_sym_R_DQUOTE] = ACTIONS(4104), + [anon_sym_LR_DQUOTE] = ACTIONS(4104), + [anon_sym_uR_DQUOTE] = ACTIONS(4104), + [anon_sym_UR_DQUOTE] = ACTIONS(4104), + [anon_sym_u8R_DQUOTE] = ACTIONS(4104), + [anon_sym_co_await] = ACTIONS(4102), + [anon_sym_new] = ACTIONS(4102), + [anon_sym_requires] = ACTIONS(4102), + [anon_sym_CARET_CARET] = ACTIONS(4104), + [anon_sym_LBRACK_COLON] = ACTIONS(4104), + [sym_this] = ACTIONS(4102), + }, + [STATE(954)] = { + [sym_identifier] = ACTIONS(4664), + [aux_sym_preproc_include_token1] = ACTIONS(4664), + [aux_sym_preproc_def_token1] = ACTIONS(4664), + [aux_sym_preproc_if_token1] = ACTIONS(4664), + [aux_sym_preproc_if_token2] = ACTIONS(4664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4664), + [sym_preproc_directive] = ACTIONS(4664), + [anon_sym_LPAREN2] = ACTIONS(4666), + [anon_sym_BANG] = ACTIONS(4666), + [anon_sym_TILDE] = ACTIONS(4666), + [anon_sym_DASH] = ACTIONS(4664), + [anon_sym_PLUS] = ACTIONS(4664), + [anon_sym_STAR] = ACTIONS(4666), + [anon_sym_AMP_AMP] = ACTIONS(4666), + [anon_sym_AMP] = ACTIONS(4664), + [anon_sym_SEMI] = ACTIONS(4666), + [anon_sym___extension__] = ACTIONS(4664), + [anon_sym_typedef] = ACTIONS(4664), + [anon_sym_virtual] = ACTIONS(4664), + [anon_sym_extern] = ACTIONS(4664), + [anon_sym___attribute__] = ACTIONS(4664), + [anon_sym___attribute] = ACTIONS(4664), + [anon_sym_using] = ACTIONS(4664), + [anon_sym_COLON_COLON] = ACTIONS(4666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4666), + [anon_sym___declspec] = ACTIONS(4664), + [anon_sym___based] = ACTIONS(4664), + [anon_sym___cdecl] = ACTIONS(4664), + [anon_sym___clrcall] = ACTIONS(4664), + [anon_sym___stdcall] = ACTIONS(4664), + [anon_sym___fastcall] = ACTIONS(4664), + [anon_sym___thiscall] = ACTIONS(4664), + [anon_sym___vectorcall] = ACTIONS(4664), + [anon_sym_LBRACE] = ACTIONS(4666), + [anon_sym_signed] = ACTIONS(4664), + [anon_sym_unsigned] = ACTIONS(4664), + [anon_sym_long] = ACTIONS(4664), + [anon_sym_short] = ACTIONS(4664), + [anon_sym_LBRACK] = ACTIONS(4664), + [anon_sym_static] = ACTIONS(4664), + [anon_sym_register] = ACTIONS(4664), + [anon_sym_inline] = ACTIONS(4664), + [anon_sym___inline] = ACTIONS(4664), + [anon_sym___inline__] = ACTIONS(4664), + [anon_sym___forceinline] = ACTIONS(4664), + [anon_sym_thread_local] = ACTIONS(4664), + [anon_sym___thread] = ACTIONS(4664), + [anon_sym_const] = ACTIONS(4664), + [anon_sym_constexpr] = ACTIONS(4664), + [anon_sym_volatile] = ACTIONS(4664), + [anon_sym_restrict] = ACTIONS(4664), + [anon_sym___restrict__] = ACTIONS(4664), + [anon_sym__Atomic] = ACTIONS(4664), + [anon_sym__Noreturn] = ACTIONS(4664), + [anon_sym_noreturn] = ACTIONS(4664), + [anon_sym__Nonnull] = ACTIONS(4664), + [anon_sym_mutable] = ACTIONS(4664), + [anon_sym_constinit] = ACTIONS(4664), + [anon_sym_consteval] = ACTIONS(4664), + [anon_sym_alignas] = ACTIONS(4664), + [anon_sym__Alignas] = ACTIONS(4664), + [sym_primitive_type] = ACTIONS(4664), + [anon_sym_enum] = ACTIONS(4664), + [anon_sym_class] = ACTIONS(4664), + [anon_sym_struct] = ACTIONS(4664), + [anon_sym_union] = ACTIONS(4664), + [anon_sym_if] = ACTIONS(4664), + [anon_sym_switch] = ACTIONS(4664), + [anon_sym_case] = ACTIONS(4664), + [anon_sym_default] = ACTIONS(4664), + [anon_sym_while] = ACTIONS(4664), + [anon_sym_do] = ACTIONS(4664), + [anon_sym_for] = ACTIONS(4664), + [anon_sym_return] = ACTIONS(4664), + [anon_sym_break] = ACTIONS(4664), + [anon_sym_continue] = ACTIONS(4664), + [anon_sym_goto] = ACTIONS(4664), + [anon_sym_not] = ACTIONS(4664), + [anon_sym_compl] = ACTIONS(4664), + [anon_sym_DASH_DASH] = ACTIONS(4666), + [anon_sym_PLUS_PLUS] = ACTIONS(4666), + [anon_sym_sizeof] = ACTIONS(4664), + [anon_sym___alignof__] = ACTIONS(4664), + [anon_sym___alignof] = ACTIONS(4664), + [anon_sym__alignof] = ACTIONS(4664), + [anon_sym_alignof] = ACTIONS(4664), + [anon_sym__Alignof] = ACTIONS(4664), + [anon_sym_offsetof] = ACTIONS(4664), + [anon_sym__Generic] = ACTIONS(4664), + [anon_sym_typename] = ACTIONS(4664), + [anon_sym_asm] = ACTIONS(4664), + [anon_sym___asm__] = ACTIONS(4664), + [anon_sym___asm] = ACTIONS(4664), + [sym_number_literal] = ACTIONS(4666), + [anon_sym_L_SQUOTE] = ACTIONS(4666), + [anon_sym_u_SQUOTE] = ACTIONS(4666), + [anon_sym_U_SQUOTE] = ACTIONS(4666), + [anon_sym_u8_SQUOTE] = ACTIONS(4666), + [anon_sym_SQUOTE] = ACTIONS(4666), + [anon_sym_L_DQUOTE] = ACTIONS(4666), + [anon_sym_u_DQUOTE] = ACTIONS(4666), + [anon_sym_U_DQUOTE] = ACTIONS(4666), + [anon_sym_u8_DQUOTE] = ACTIONS(4666), + [anon_sym_DQUOTE] = ACTIONS(4666), + [sym_true] = ACTIONS(4664), + [sym_false] = ACTIONS(4664), + [anon_sym_NULL] = ACTIONS(4664), + [anon_sym_nullptr] = ACTIONS(4664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4664), + [anon_sym_decltype] = ACTIONS(4664), + [anon_sym_explicit] = ACTIONS(4664), + [anon_sym_export] = ACTIONS(4664), + [anon_sym_module] = ACTIONS(4664), + [anon_sym_import] = ACTIONS(4664), + [anon_sym_template] = ACTIONS(4664), + [anon_sym_operator] = ACTIONS(4664), + [anon_sym_try] = ACTIONS(4664), + [anon_sym_delete] = ACTIONS(4664), + [anon_sym_throw] = ACTIONS(4664), + [anon_sym_namespace] = ACTIONS(4664), + [anon_sym_static_assert] = ACTIONS(4664), + [anon_sym_concept] = ACTIONS(4664), + [anon_sym_co_return] = ACTIONS(4664), + [anon_sym_co_yield] = ACTIONS(4664), + [anon_sym_R_DQUOTE] = ACTIONS(4666), + [anon_sym_LR_DQUOTE] = ACTIONS(4666), + [anon_sym_uR_DQUOTE] = ACTIONS(4666), + [anon_sym_UR_DQUOTE] = ACTIONS(4666), + [anon_sym_u8R_DQUOTE] = ACTIONS(4666), + [anon_sym_co_await] = ACTIONS(4664), + [anon_sym_new] = ACTIONS(4664), + [anon_sym_requires] = ACTIONS(4664), + [anon_sym_CARET_CARET] = ACTIONS(4666), + [anon_sym_LBRACK_COLON] = ACTIONS(4666), + [sym_this] = ACTIONS(4664), + }, + [STATE(955)] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(4500), + [aux_sym_preproc_def_token1] = ACTIONS(4801), + [aux_sym_preproc_if_token1] = ACTIONS(4804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4807), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4807), + [sym_preproc_directive] = ACTIONS(4810), + [anon_sym_LPAREN2] = ACTIONS(4517), + [anon_sym_TILDE] = ACTIONS(4520), + [anon_sym_STAR] = ACTIONS(4523), + [anon_sym_AMP_AMP] = ACTIONS(4526), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_SEMI] = ACTIONS(4813), + [anon_sym___extension__] = ACTIONS(4816), + [anon_sym_typedef] = ACTIONS(4819), + [anon_sym_virtual] = ACTIONS(4541), + [anon_sym_extern] = ACTIONS(4544), + [anon_sym___attribute__] = ACTIONS(4547), + [anon_sym___attribute] = ACTIONS(4547), + [anon_sym_using] = ACTIONS(4822), + [anon_sym_COLON_COLON] = ACTIONS(4553), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4556), + [anon_sym___declspec] = ACTIONS(4559), + [anon_sym___based] = ACTIONS(4562), + [anon_sym_RBRACE] = ACTIONS(4825), + [anon_sym_signed] = ACTIONS(4565), + [anon_sym_unsigned] = ACTIONS(4565), + [anon_sym_long] = ACTIONS(4565), + [anon_sym_short] = ACTIONS(4565), + [anon_sym_LBRACK] = ACTIONS(4568), + [anon_sym_static] = ACTIONS(4544), + [anon_sym_register] = ACTIONS(4544), + [anon_sym_inline] = ACTIONS(4544), + [anon_sym___inline] = ACTIONS(4544), + [anon_sym___inline__] = ACTIONS(4544), + [anon_sym___forceinline] = ACTIONS(4544), + [anon_sym_thread_local] = ACTIONS(4544), + [anon_sym___thread] = ACTIONS(4544), + [anon_sym_const] = ACTIONS(4571), + [anon_sym_constexpr] = ACTIONS(4827), + [anon_sym_volatile] = ACTIONS(4571), + [anon_sym_restrict] = ACTIONS(4571), + [anon_sym___restrict__] = ACTIONS(4571), + [anon_sym__Atomic] = ACTIONS(4571), + [anon_sym__Noreturn] = ACTIONS(4571), + [anon_sym_noreturn] = ACTIONS(4571), + [anon_sym__Nonnull] = ACTIONS(4571), + [anon_sym_mutable] = ACTIONS(4571), + [anon_sym_constinit] = ACTIONS(4571), + [anon_sym_consteval] = ACTIONS(4830), + [anon_sym_alignas] = ACTIONS(4580), + [anon_sym__Alignas] = ACTIONS(4580), + [sym_primitive_type] = ACTIONS(4583), + [anon_sym_enum] = ACTIONS(4586), + [anon_sym_class] = ACTIONS(4589), + [anon_sym_struct] = ACTIONS(4592), + [anon_sym_union] = ACTIONS(4595), + [anon_sym_typename] = ACTIONS(4598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4601), + [anon_sym_decltype] = ACTIONS(4604), + [anon_sym_explicit] = ACTIONS(4607), + [anon_sym_private] = ACTIONS(4610), + [anon_sym_template] = ACTIONS(4833), + [anon_sym_operator] = ACTIONS(4616), + [anon_sym_friend] = ACTIONS(4836), + [anon_sym_public] = ACTIONS(4610), + [anon_sym_protected] = ACTIONS(4610), + [anon_sym_static_assert] = ACTIONS(4839), + [anon_sym_LBRACK_COLON] = ACTIONS(4625), + }, + [STATE(956)] = { + [sym_preproc_def] = STATE(957), + [sym_preproc_function_def] = STATE(957), + [sym_preproc_call] = STATE(957), + [sym_preproc_if_in_field_declaration_list] = STATE(957), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(957), + [sym_type_definition] = STATE(957), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(957), + [sym_field_declaration] = STATE(957), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(957), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(957), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(957), + [sym_operator_cast_declaration] = STATE(957), + [sym_constructor_or_destructor_definition] = STATE(957), + [sym_constructor_or_destructor_declaration] = STATE(957), + [sym_friend_declaration] = STATE(957), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(957), + [sym_alias_declaration] = STATE(957), + [sym_static_assert_declaration] = STATE(957), + [sym_consteval_block_declaration] = STATE(957), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(957), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4795), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4842), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4797), + [anon_sym_RBRACE] = ACTIONS(4844), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -194605,7 +195856,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -194615,126 +195866,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(948)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(957)] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4799), + [anon_sym_RBRACE] = ACTIONS(4846), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -194744,7 +195995,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -194754,126 +196005,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(949)] = { - [sym_preproc_def] = STATE(989), - [sym_preproc_function_def] = STATE(989), - [sym_preproc_call] = STATE(989), - [sym_preproc_if_in_field_declaration_list] = STATE(989), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(989), - [sym_type_definition] = STATE(989), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8099), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8689), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(989), - [sym_field_declaration] = STATE(989), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2469), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(989), - [sym_operator_cast] = STATE(9167), - [sym_inline_method_definition] = STATE(989), - [sym__constructor_specifiers] = STATE(2469), - [sym_operator_cast_definition] = STATE(989), - [sym_operator_cast_declaration] = STATE(989), - [sym_constructor_or_destructor_definition] = STATE(989), - [sym_constructor_or_destructor_declaration] = STATE(989), - [sym_friend_declaration] = STATE(989), - [sym_access_specifier] = STATE(10982), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(989), - [sym_alias_declaration] = STATE(989), - [sym_static_assert_declaration] = STATE(989), - [sym_consteval_block_declaration] = STATE(989), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9167), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(989), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9503), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2469), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4801), - [aux_sym_preproc_if_token1] = ACTIONS(4803), - [aux_sym_preproc_if_token2] = ACTIONS(4805), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4807), - [sym_preproc_directive] = ACTIONS(4809), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(958)] = { + [sym_preproc_def] = STATE(959), + [sym_preproc_function_def] = STATE(959), + [sym_preproc_call] = STATE(959), + [sym_preproc_if_in_field_declaration_list] = STATE(959), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(959), + [sym_type_definition] = STATE(959), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(959), + [sym_field_declaration] = STATE(959), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(959), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(959), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(959), + [sym_operator_cast_declaration] = STATE(959), + [sym_constructor_or_destructor_definition] = STATE(959), + [sym_constructor_or_destructor_declaration] = STATE(959), + [sym_friend_declaration] = STATE(959), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(959), + [sym_alias_declaration] = STATE(959), + [sym_static_assert_declaration] = STATE(959), + [sym_consteval_block_declaration] = STATE(959), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(959), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym___extension__] = ACTIONS(4813), - [anon_sym_typedef] = ACTIONS(4815), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4848), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4817), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4850), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -194883,7 +196134,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(4819), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -194893,404 +196144,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4821), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4823), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4825), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4827), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(950)] = { - [sym_identifier] = ACTIONS(4530), - [aux_sym_preproc_include_token1] = ACTIONS(4530), - [aux_sym_preproc_def_token1] = ACTIONS(4530), - [aux_sym_preproc_if_token1] = ACTIONS(4530), - [aux_sym_preproc_if_token2] = ACTIONS(4530), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4530), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4530), - [sym_preproc_directive] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_TILDE] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym___extension__] = ACTIONS(4530), - [anon_sym_typedef] = ACTIONS(4530), - [anon_sym_virtual] = ACTIONS(4530), - [anon_sym_extern] = ACTIONS(4530), - [anon_sym___attribute__] = ACTIONS(4530), - [anon_sym___attribute] = ACTIONS(4530), - [anon_sym_using] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4532), - [anon_sym___declspec] = ACTIONS(4530), - [anon_sym___based] = ACTIONS(4530), - [anon_sym___cdecl] = ACTIONS(4530), - [anon_sym___clrcall] = ACTIONS(4530), - [anon_sym___stdcall] = ACTIONS(4530), - [anon_sym___fastcall] = ACTIONS(4530), - [anon_sym___thiscall] = ACTIONS(4530), - [anon_sym___vectorcall] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_signed] = ACTIONS(4530), - [anon_sym_unsigned] = ACTIONS(4530), - [anon_sym_long] = ACTIONS(4530), - [anon_sym_short] = ACTIONS(4530), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_static] = ACTIONS(4530), - [anon_sym_register] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym___inline] = ACTIONS(4530), - [anon_sym___inline__] = ACTIONS(4530), - [anon_sym___forceinline] = ACTIONS(4530), - [anon_sym_thread_local] = ACTIONS(4530), - [anon_sym___thread] = ACTIONS(4530), - [anon_sym_const] = ACTIONS(4530), - [anon_sym_constexpr] = ACTIONS(4530), - [anon_sym_volatile] = ACTIONS(4530), - [anon_sym_restrict] = ACTIONS(4530), - [anon_sym___restrict__] = ACTIONS(4530), - [anon_sym__Atomic] = ACTIONS(4530), - [anon_sym__Noreturn] = ACTIONS(4530), - [anon_sym_noreturn] = ACTIONS(4530), - [anon_sym__Nonnull] = ACTIONS(4530), - [anon_sym_mutable] = ACTIONS(4530), - [anon_sym_constinit] = ACTIONS(4530), - [anon_sym_consteval] = ACTIONS(4530), - [anon_sym_alignas] = ACTIONS(4530), - [anon_sym__Alignas] = ACTIONS(4530), - [sym_primitive_type] = ACTIONS(4530), - [anon_sym_enum] = ACTIONS(4530), - [anon_sym_class] = ACTIONS(4530), - [anon_sym_struct] = ACTIONS(4530), - [anon_sym_union] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_switch] = ACTIONS(4530), - [anon_sym_case] = ACTIONS(4530), - [anon_sym_default] = ACTIONS(4530), - [anon_sym_while] = ACTIONS(4530), - [anon_sym_do] = ACTIONS(4530), - [anon_sym_for] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_goto] = ACTIONS(4530), - [anon_sym_not] = ACTIONS(4530), - [anon_sym_compl] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_sizeof] = ACTIONS(4530), - [anon_sym___alignof__] = ACTIONS(4530), - [anon_sym___alignof] = ACTIONS(4530), - [anon_sym__alignof] = ACTIONS(4530), - [anon_sym_alignof] = ACTIONS(4530), - [anon_sym__Alignof] = ACTIONS(4530), - [anon_sym_offsetof] = ACTIONS(4530), - [anon_sym__Generic] = ACTIONS(4530), - [anon_sym_typename] = ACTIONS(4530), - [anon_sym_asm] = ACTIONS(4530), - [anon_sym___asm__] = ACTIONS(4530), - [anon_sym___asm] = ACTIONS(4530), - [sym_number_literal] = ACTIONS(4532), - [anon_sym_L_SQUOTE] = ACTIONS(4532), - [anon_sym_u_SQUOTE] = ACTIONS(4532), - [anon_sym_U_SQUOTE] = ACTIONS(4532), - [anon_sym_u8_SQUOTE] = ACTIONS(4532), - [anon_sym_SQUOTE] = ACTIONS(4532), - [anon_sym_L_DQUOTE] = ACTIONS(4532), - [anon_sym_u_DQUOTE] = ACTIONS(4532), - [anon_sym_U_DQUOTE] = ACTIONS(4532), - [anon_sym_u8_DQUOTE] = ACTIONS(4532), - [anon_sym_DQUOTE] = ACTIONS(4532), - [sym_true] = ACTIONS(4530), - [sym_false] = ACTIONS(4530), - [anon_sym_NULL] = ACTIONS(4530), - [anon_sym_nullptr] = ACTIONS(4530), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4530), - [anon_sym_decltype] = ACTIONS(4530), - [anon_sym_explicit] = ACTIONS(4530), - [anon_sym_export] = ACTIONS(4530), - [anon_sym_module] = ACTIONS(4530), - [anon_sym_import] = ACTIONS(4530), - [anon_sym_template] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_delete] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_namespace] = ACTIONS(4530), - [anon_sym_static_assert] = ACTIONS(4530), - [anon_sym_concept] = ACTIONS(4530), - [anon_sym_co_return] = ACTIONS(4530), - [anon_sym_co_yield] = ACTIONS(4530), - [anon_sym_R_DQUOTE] = ACTIONS(4532), - [anon_sym_LR_DQUOTE] = ACTIONS(4532), - [anon_sym_uR_DQUOTE] = ACTIONS(4532), - [anon_sym_UR_DQUOTE] = ACTIONS(4532), - [anon_sym_u8R_DQUOTE] = ACTIONS(4532), - [anon_sym_co_await] = ACTIONS(4530), - [anon_sym_new] = ACTIONS(4530), - [anon_sym_requires] = ACTIONS(4530), - [anon_sym_CARET_CARET] = ACTIONS(4532), - [anon_sym_LBRACK_COLON] = ACTIONS(4532), - [sym_this] = ACTIONS(4530), + [STATE(959)] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3458), + [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(4702), + [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(4704), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(951)] = { - [sym_identifier] = ACTIONS(4534), - [aux_sym_preproc_include_token1] = ACTIONS(4534), - [aux_sym_preproc_def_token1] = ACTIONS(4534), - [aux_sym_preproc_if_token1] = ACTIONS(4534), - [aux_sym_preproc_if_token2] = ACTIONS(4534), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4534), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4534), - [sym_preproc_directive] = ACTIONS(4534), - [anon_sym_LPAREN2] = ACTIONS(4536), - [anon_sym_BANG] = ACTIONS(4536), - [anon_sym_TILDE] = ACTIONS(4536), - [anon_sym_DASH] = ACTIONS(4534), - [anon_sym_PLUS] = ACTIONS(4534), - [anon_sym_STAR] = ACTIONS(4536), - [anon_sym_AMP_AMP] = ACTIONS(4536), - [anon_sym_AMP] = ACTIONS(4534), - [anon_sym_SEMI] = ACTIONS(4536), - [anon_sym___extension__] = ACTIONS(4534), - [anon_sym_typedef] = ACTIONS(4534), - [anon_sym_virtual] = ACTIONS(4534), - [anon_sym_extern] = ACTIONS(4534), - [anon_sym___attribute__] = ACTIONS(4534), - [anon_sym___attribute] = ACTIONS(4534), - [anon_sym_using] = ACTIONS(4534), - [anon_sym_COLON_COLON] = ACTIONS(4536), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4536), - [anon_sym___declspec] = ACTIONS(4534), - [anon_sym___based] = ACTIONS(4534), - [anon_sym___cdecl] = ACTIONS(4534), - [anon_sym___clrcall] = ACTIONS(4534), - [anon_sym___stdcall] = ACTIONS(4534), - [anon_sym___fastcall] = ACTIONS(4534), - [anon_sym___thiscall] = ACTIONS(4534), - [anon_sym___vectorcall] = ACTIONS(4534), - [anon_sym_LBRACE] = ACTIONS(4536), - [anon_sym_signed] = ACTIONS(4534), - [anon_sym_unsigned] = ACTIONS(4534), - [anon_sym_long] = ACTIONS(4534), - [anon_sym_short] = ACTIONS(4534), - [anon_sym_LBRACK] = ACTIONS(4534), - [anon_sym_static] = ACTIONS(4534), - [anon_sym_register] = ACTIONS(4534), - [anon_sym_inline] = ACTIONS(4534), - [anon_sym___inline] = ACTIONS(4534), - [anon_sym___inline__] = ACTIONS(4534), - [anon_sym___forceinline] = ACTIONS(4534), - [anon_sym_thread_local] = ACTIONS(4534), - [anon_sym___thread] = ACTIONS(4534), - [anon_sym_const] = ACTIONS(4534), - [anon_sym_constexpr] = ACTIONS(4534), - [anon_sym_volatile] = ACTIONS(4534), - [anon_sym_restrict] = ACTIONS(4534), - [anon_sym___restrict__] = ACTIONS(4534), - [anon_sym__Atomic] = ACTIONS(4534), - [anon_sym__Noreturn] = ACTIONS(4534), - [anon_sym_noreturn] = ACTIONS(4534), - [anon_sym__Nonnull] = ACTIONS(4534), - [anon_sym_mutable] = ACTIONS(4534), - [anon_sym_constinit] = ACTIONS(4534), - [anon_sym_consteval] = ACTIONS(4534), - [anon_sym_alignas] = ACTIONS(4534), - [anon_sym__Alignas] = ACTIONS(4534), - [sym_primitive_type] = ACTIONS(4534), - [anon_sym_enum] = ACTIONS(4534), - [anon_sym_class] = ACTIONS(4534), - [anon_sym_struct] = ACTIONS(4534), - [anon_sym_union] = ACTIONS(4534), - [anon_sym_if] = ACTIONS(4534), - [anon_sym_switch] = ACTIONS(4534), - [anon_sym_case] = ACTIONS(4534), - [anon_sym_default] = ACTIONS(4534), - [anon_sym_while] = ACTIONS(4534), - [anon_sym_do] = ACTIONS(4534), - [anon_sym_for] = ACTIONS(4534), - [anon_sym_return] = ACTIONS(4534), - [anon_sym_break] = ACTIONS(4534), - [anon_sym_continue] = ACTIONS(4534), - [anon_sym_goto] = ACTIONS(4534), - [anon_sym_not] = ACTIONS(4534), - [anon_sym_compl] = ACTIONS(4534), - [anon_sym_DASH_DASH] = ACTIONS(4536), - [anon_sym_PLUS_PLUS] = ACTIONS(4536), - [anon_sym_sizeof] = ACTIONS(4534), - [anon_sym___alignof__] = ACTIONS(4534), - [anon_sym___alignof] = ACTIONS(4534), - [anon_sym__alignof] = ACTIONS(4534), - [anon_sym_alignof] = ACTIONS(4534), - [anon_sym__Alignof] = ACTIONS(4534), - [anon_sym_offsetof] = ACTIONS(4534), - [anon_sym__Generic] = ACTIONS(4534), - [anon_sym_typename] = ACTIONS(4534), - [anon_sym_asm] = ACTIONS(4534), - [anon_sym___asm__] = ACTIONS(4534), - [anon_sym___asm] = ACTIONS(4534), - [sym_number_literal] = ACTIONS(4536), - [anon_sym_L_SQUOTE] = ACTIONS(4536), - [anon_sym_u_SQUOTE] = ACTIONS(4536), - [anon_sym_U_SQUOTE] = ACTIONS(4536), - [anon_sym_u8_SQUOTE] = ACTIONS(4536), - [anon_sym_SQUOTE] = ACTIONS(4536), - [anon_sym_L_DQUOTE] = ACTIONS(4536), - [anon_sym_u_DQUOTE] = ACTIONS(4536), - [anon_sym_U_DQUOTE] = ACTIONS(4536), - [anon_sym_u8_DQUOTE] = ACTIONS(4536), - [anon_sym_DQUOTE] = ACTIONS(4536), - [sym_true] = ACTIONS(4534), - [sym_false] = ACTIONS(4534), - [anon_sym_NULL] = ACTIONS(4534), - [anon_sym_nullptr] = ACTIONS(4534), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4534), - [anon_sym_decltype] = ACTIONS(4534), - [anon_sym_explicit] = ACTIONS(4534), - [anon_sym_export] = ACTIONS(4534), - [anon_sym_module] = ACTIONS(4534), - [anon_sym_import] = ACTIONS(4534), - [anon_sym_template] = ACTIONS(4534), - [anon_sym_operator] = ACTIONS(4534), - [anon_sym_try] = ACTIONS(4534), - [anon_sym_delete] = ACTIONS(4534), - [anon_sym_throw] = ACTIONS(4534), - [anon_sym_namespace] = ACTIONS(4534), - [anon_sym_static_assert] = ACTIONS(4534), - [anon_sym_concept] = ACTIONS(4534), - [anon_sym_co_return] = ACTIONS(4534), - [anon_sym_co_yield] = ACTIONS(4534), - [anon_sym_R_DQUOTE] = ACTIONS(4536), - [anon_sym_LR_DQUOTE] = ACTIONS(4536), - [anon_sym_uR_DQUOTE] = ACTIONS(4536), - [anon_sym_UR_DQUOTE] = ACTIONS(4536), - [anon_sym_u8R_DQUOTE] = ACTIONS(4536), - [anon_sym_co_await] = ACTIONS(4534), - [anon_sym_new] = ACTIONS(4534), - [anon_sym_requires] = ACTIONS(4534), - [anon_sym_CARET_CARET] = ACTIONS(4536), - [anon_sym_LBRACK_COLON] = ACTIONS(4536), - [sym_this] = ACTIONS(4534), + [STATE(960)] = { + [ts_builtin_sym_end] = ACTIONS(4221), + [sym_identifier] = ACTIONS(4219), + [aux_sym_preproc_include_token1] = ACTIONS(4219), + [aux_sym_preproc_def_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4219), + [sym_preproc_directive] = ACTIONS(4219), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym___extension__] = ACTIONS(4219), + [anon_sym_typedef] = ACTIONS(4219), + [anon_sym_virtual] = ACTIONS(4219), + [anon_sym_extern] = ACTIONS(4219), + [anon_sym___attribute__] = ACTIONS(4219), + [anon_sym___attribute] = ACTIONS(4219), + [anon_sym_using] = ACTIONS(4219), + [anon_sym_COLON_COLON] = ACTIONS(4221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4221), + [anon_sym___declspec] = ACTIONS(4219), + [anon_sym___based] = ACTIONS(4219), + [anon_sym___cdecl] = ACTIONS(4219), + [anon_sym___clrcall] = ACTIONS(4219), + [anon_sym___stdcall] = ACTIONS(4219), + [anon_sym___fastcall] = ACTIONS(4219), + [anon_sym___thiscall] = ACTIONS(4219), + [anon_sym___vectorcall] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4221), + [anon_sym_signed] = ACTIONS(4219), + [anon_sym_unsigned] = ACTIONS(4219), + [anon_sym_long] = ACTIONS(4219), + [anon_sym_short] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_static] = ACTIONS(4219), + [anon_sym_register] = ACTIONS(4219), + [anon_sym_inline] = ACTIONS(4219), + [anon_sym___inline] = ACTIONS(4219), + [anon_sym___inline__] = ACTIONS(4219), + [anon_sym___forceinline] = ACTIONS(4219), + [anon_sym_thread_local] = ACTIONS(4219), + [anon_sym___thread] = ACTIONS(4219), + [anon_sym_const] = ACTIONS(4219), + [anon_sym_constexpr] = ACTIONS(4219), + [anon_sym_volatile] = ACTIONS(4219), + [anon_sym_restrict] = ACTIONS(4219), + [anon_sym___restrict__] = ACTIONS(4219), + [anon_sym__Atomic] = ACTIONS(4219), + [anon_sym__Noreturn] = ACTIONS(4219), + [anon_sym_noreturn] = ACTIONS(4219), + [anon_sym__Nonnull] = ACTIONS(4219), + [anon_sym_mutable] = ACTIONS(4219), + [anon_sym_constinit] = ACTIONS(4219), + [anon_sym_consteval] = ACTIONS(4219), + [anon_sym_alignas] = ACTIONS(4219), + [anon_sym__Alignas] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(4219), + [anon_sym_enum] = ACTIONS(4219), + [anon_sym_class] = ACTIONS(4219), + [anon_sym_struct] = ACTIONS(4219), + [anon_sym_union] = ACTIONS(4219), + [anon_sym_if] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_case] = ACTIONS(4219), + [anon_sym_default] = ACTIONS(4219), + [anon_sym_while] = ACTIONS(4219), + [anon_sym_do] = ACTIONS(4219), + [anon_sym_for] = ACTIONS(4219), + [anon_sym_return] = ACTIONS(4219), + [anon_sym_break] = ACTIONS(4219), + [anon_sym_continue] = ACTIONS(4219), + [anon_sym_goto] = ACTIONS(4219), + [anon_sym_not] = ACTIONS(4219), + [anon_sym_compl] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_sizeof] = ACTIONS(4219), + [anon_sym___alignof__] = ACTIONS(4219), + [anon_sym___alignof] = ACTIONS(4219), + [anon_sym__alignof] = ACTIONS(4219), + [anon_sym_alignof] = ACTIONS(4219), + [anon_sym__Alignof] = ACTIONS(4219), + [anon_sym_offsetof] = ACTIONS(4219), + [anon_sym__Generic] = ACTIONS(4219), + [anon_sym_typename] = ACTIONS(4219), + [anon_sym_asm] = ACTIONS(4219), + [anon_sym___asm__] = ACTIONS(4219), + [anon_sym___asm] = ACTIONS(4219), + [sym_number_literal] = ACTIONS(4221), + [anon_sym_L_SQUOTE] = ACTIONS(4221), + [anon_sym_u_SQUOTE] = ACTIONS(4221), + [anon_sym_U_SQUOTE] = ACTIONS(4221), + [anon_sym_u8_SQUOTE] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_L_DQUOTE] = ACTIONS(4221), + [anon_sym_u_DQUOTE] = ACTIONS(4221), + [anon_sym_U_DQUOTE] = ACTIONS(4221), + [anon_sym_u8_DQUOTE] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4221), + [sym_true] = ACTIONS(4219), + [sym_false] = ACTIONS(4219), + [anon_sym_NULL] = ACTIONS(4219), + [anon_sym_nullptr] = ACTIONS(4219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4219), + [anon_sym_decltype] = ACTIONS(4219), + [anon_sym_explicit] = ACTIONS(4219), + [anon_sym_export] = ACTIONS(4219), + [anon_sym_module] = ACTIONS(4219), + [anon_sym_import] = ACTIONS(4219), + [anon_sym_template] = ACTIONS(4219), + [anon_sym_operator] = ACTIONS(4219), + [anon_sym_try] = ACTIONS(4219), + [anon_sym_delete] = ACTIONS(4219), + [anon_sym_throw] = ACTIONS(4219), + [anon_sym_namespace] = ACTIONS(4219), + [anon_sym_static_assert] = ACTIONS(4219), + [anon_sym_concept] = ACTIONS(4219), + [anon_sym_co_return] = ACTIONS(4219), + [anon_sym_co_yield] = ACTIONS(4219), + [anon_sym_R_DQUOTE] = ACTIONS(4221), + [anon_sym_LR_DQUOTE] = ACTIONS(4221), + [anon_sym_uR_DQUOTE] = ACTIONS(4221), + [anon_sym_UR_DQUOTE] = ACTIONS(4221), + [anon_sym_u8R_DQUOTE] = ACTIONS(4221), + [anon_sym_co_await] = ACTIONS(4219), + [anon_sym_new] = ACTIONS(4219), + [anon_sym_requires] = ACTIONS(4219), + [anon_sym_CARET_CARET] = ACTIONS(4221), + [anon_sym_LBRACK_COLON] = ACTIONS(4221), + [sym_this] = ACTIONS(4219), }, - [STATE(952)] = { - [sym_preproc_def] = STATE(954), - [sym_preproc_function_def] = STATE(954), - [sym_preproc_call] = STATE(954), - [sym_preproc_if_in_field_declaration_list] = STATE(954), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(954), - [sym_type_definition] = STATE(954), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(954), - [sym_field_declaration] = STATE(954), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(954), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(954), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(954), - [sym_operator_cast_declaration] = STATE(954), - [sym_constructor_or_destructor_definition] = STATE(954), - [sym_constructor_or_destructor_declaration] = STATE(954), - [sym_friend_declaration] = STATE(954), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(954), - [sym_alias_declaration] = STATE(954), - [sym_static_assert_declaration] = STATE(954), - [sym_consteval_block_declaration] = STATE(954), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(954), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(961)] = { + [sym_preproc_def] = STATE(965), + [sym_preproc_function_def] = STATE(965), + [sym_preproc_call] = STATE(965), + [sym_preproc_if_in_field_declaration_list] = STATE(965), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(965), + [sym_type_definition] = STATE(965), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(965), + [sym_field_declaration] = STATE(965), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(965), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(965), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(965), + [sym_operator_cast_declaration] = STATE(965), + [sym_constructor_or_destructor_definition] = STATE(965), + [sym_constructor_or_destructor_declaration] = STATE(965), + [sym_friend_declaration] = STATE(965), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(965), + [sym_alias_declaration] = STATE(965), + [sym_static_assert_declaration] = STATE(965), + [sym_consteval_block_declaration] = STATE(965), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(965), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4829), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4854), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4831), + [anon_sym_RBRACE] = ACTIONS(4856), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -195300,7 +196551,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -195310,265 +196561,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(953)] = { - [sym_identifier] = ACTIONS(4538), - [aux_sym_preproc_include_token1] = ACTIONS(4538), - [aux_sym_preproc_def_token1] = ACTIONS(4538), - [aux_sym_preproc_if_token1] = ACTIONS(4538), - [aux_sym_preproc_if_token2] = ACTIONS(4538), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4538), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4538), - [sym_preproc_directive] = ACTIONS(4538), - [anon_sym_LPAREN2] = ACTIONS(4540), - [anon_sym_BANG] = ACTIONS(4540), - [anon_sym_TILDE] = ACTIONS(4540), - [anon_sym_DASH] = ACTIONS(4538), - [anon_sym_PLUS] = ACTIONS(4538), - [anon_sym_STAR] = ACTIONS(4540), - [anon_sym_AMP_AMP] = ACTIONS(4540), - [anon_sym_AMP] = ACTIONS(4538), - [anon_sym_SEMI] = ACTIONS(4540), - [anon_sym___extension__] = ACTIONS(4538), - [anon_sym_typedef] = ACTIONS(4538), - [anon_sym_virtual] = ACTIONS(4538), - [anon_sym_extern] = ACTIONS(4538), - [anon_sym___attribute__] = ACTIONS(4538), - [anon_sym___attribute] = ACTIONS(4538), - [anon_sym_using] = ACTIONS(4538), - [anon_sym_COLON_COLON] = ACTIONS(4540), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4540), - [anon_sym___declspec] = ACTIONS(4538), - [anon_sym___based] = ACTIONS(4538), - [anon_sym___cdecl] = ACTIONS(4538), - [anon_sym___clrcall] = ACTIONS(4538), - [anon_sym___stdcall] = ACTIONS(4538), - [anon_sym___fastcall] = ACTIONS(4538), - [anon_sym___thiscall] = ACTIONS(4538), - [anon_sym___vectorcall] = ACTIONS(4538), - [anon_sym_LBRACE] = ACTIONS(4540), - [anon_sym_signed] = ACTIONS(4538), - [anon_sym_unsigned] = ACTIONS(4538), - [anon_sym_long] = ACTIONS(4538), - [anon_sym_short] = ACTIONS(4538), - [anon_sym_LBRACK] = ACTIONS(4538), - [anon_sym_static] = ACTIONS(4538), - [anon_sym_register] = ACTIONS(4538), - [anon_sym_inline] = ACTIONS(4538), - [anon_sym___inline] = ACTIONS(4538), - [anon_sym___inline__] = ACTIONS(4538), - [anon_sym___forceinline] = ACTIONS(4538), - [anon_sym_thread_local] = ACTIONS(4538), - [anon_sym___thread] = ACTIONS(4538), - [anon_sym_const] = ACTIONS(4538), - [anon_sym_constexpr] = ACTIONS(4538), - [anon_sym_volatile] = ACTIONS(4538), - [anon_sym_restrict] = ACTIONS(4538), - [anon_sym___restrict__] = ACTIONS(4538), - [anon_sym__Atomic] = ACTIONS(4538), - [anon_sym__Noreturn] = ACTIONS(4538), - [anon_sym_noreturn] = ACTIONS(4538), - [anon_sym__Nonnull] = ACTIONS(4538), - [anon_sym_mutable] = ACTIONS(4538), - [anon_sym_constinit] = ACTIONS(4538), - [anon_sym_consteval] = ACTIONS(4538), - [anon_sym_alignas] = ACTIONS(4538), - [anon_sym__Alignas] = ACTIONS(4538), - [sym_primitive_type] = ACTIONS(4538), - [anon_sym_enum] = ACTIONS(4538), - [anon_sym_class] = ACTIONS(4538), - [anon_sym_struct] = ACTIONS(4538), - [anon_sym_union] = ACTIONS(4538), - [anon_sym_if] = ACTIONS(4538), - [anon_sym_switch] = ACTIONS(4538), - [anon_sym_case] = ACTIONS(4538), - [anon_sym_default] = ACTIONS(4538), - [anon_sym_while] = ACTIONS(4538), - [anon_sym_do] = ACTIONS(4538), - [anon_sym_for] = ACTIONS(4538), - [anon_sym_return] = ACTIONS(4538), - [anon_sym_break] = ACTIONS(4538), - [anon_sym_continue] = ACTIONS(4538), - [anon_sym_goto] = ACTIONS(4538), - [anon_sym_not] = ACTIONS(4538), - [anon_sym_compl] = ACTIONS(4538), - [anon_sym_DASH_DASH] = ACTIONS(4540), - [anon_sym_PLUS_PLUS] = ACTIONS(4540), - [anon_sym_sizeof] = ACTIONS(4538), - [anon_sym___alignof__] = ACTIONS(4538), - [anon_sym___alignof] = ACTIONS(4538), - [anon_sym__alignof] = ACTIONS(4538), - [anon_sym_alignof] = ACTIONS(4538), - [anon_sym__Alignof] = ACTIONS(4538), - [anon_sym_offsetof] = ACTIONS(4538), - [anon_sym__Generic] = ACTIONS(4538), - [anon_sym_typename] = ACTIONS(4538), - [anon_sym_asm] = ACTIONS(4538), - [anon_sym___asm__] = ACTIONS(4538), - [anon_sym___asm] = ACTIONS(4538), - [sym_number_literal] = ACTIONS(4540), - [anon_sym_L_SQUOTE] = ACTIONS(4540), - [anon_sym_u_SQUOTE] = ACTIONS(4540), - [anon_sym_U_SQUOTE] = ACTIONS(4540), - [anon_sym_u8_SQUOTE] = ACTIONS(4540), - [anon_sym_SQUOTE] = ACTIONS(4540), - [anon_sym_L_DQUOTE] = ACTIONS(4540), - [anon_sym_u_DQUOTE] = ACTIONS(4540), - [anon_sym_U_DQUOTE] = ACTIONS(4540), - [anon_sym_u8_DQUOTE] = ACTIONS(4540), - [anon_sym_DQUOTE] = ACTIONS(4540), - [sym_true] = ACTIONS(4538), - [sym_false] = ACTIONS(4538), - [anon_sym_NULL] = ACTIONS(4538), - [anon_sym_nullptr] = ACTIONS(4538), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4538), - [anon_sym_decltype] = ACTIONS(4538), - [anon_sym_explicit] = ACTIONS(4538), - [anon_sym_export] = ACTIONS(4538), - [anon_sym_module] = ACTIONS(4538), - [anon_sym_import] = ACTIONS(4538), - [anon_sym_template] = ACTIONS(4538), - [anon_sym_operator] = ACTIONS(4538), - [anon_sym_try] = ACTIONS(4538), - [anon_sym_delete] = ACTIONS(4538), - [anon_sym_throw] = ACTIONS(4538), - [anon_sym_namespace] = ACTIONS(4538), - [anon_sym_static_assert] = ACTIONS(4538), - [anon_sym_concept] = ACTIONS(4538), - [anon_sym_co_return] = ACTIONS(4538), - [anon_sym_co_yield] = ACTIONS(4538), - [anon_sym_R_DQUOTE] = ACTIONS(4540), - [anon_sym_LR_DQUOTE] = ACTIONS(4540), - [anon_sym_uR_DQUOTE] = ACTIONS(4540), - [anon_sym_UR_DQUOTE] = ACTIONS(4540), - [anon_sym_u8R_DQUOTE] = ACTIONS(4540), - [anon_sym_co_await] = ACTIONS(4538), - [anon_sym_new] = ACTIONS(4538), - [anon_sym_requires] = ACTIONS(4538), - [anon_sym_CARET_CARET] = ACTIONS(4540), - [anon_sym_LBRACK_COLON] = ACTIONS(4540), - [sym_this] = ACTIONS(4538), + [STATE(962)] = { + [ts_builtin_sym_end] = ACTIONS(4630), + [sym_identifier] = ACTIONS(4628), + [aux_sym_preproc_include_token1] = ACTIONS(4628), + [aux_sym_preproc_def_token1] = ACTIONS(4628), + [aux_sym_preproc_if_token1] = ACTIONS(4628), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4628), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4628), + [sym_preproc_directive] = ACTIONS(4628), + [anon_sym_LPAREN2] = ACTIONS(4630), + [anon_sym_BANG] = ACTIONS(4630), + [anon_sym_TILDE] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4628), + [anon_sym_PLUS] = ACTIONS(4628), + [anon_sym_STAR] = ACTIONS(4630), + [anon_sym_AMP_AMP] = ACTIONS(4630), + [anon_sym_AMP] = ACTIONS(4628), + [anon_sym_SEMI] = ACTIONS(4630), + [anon_sym___extension__] = ACTIONS(4628), + [anon_sym_typedef] = ACTIONS(4628), + [anon_sym_virtual] = ACTIONS(4628), + [anon_sym_extern] = ACTIONS(4628), + [anon_sym___attribute__] = ACTIONS(4628), + [anon_sym___attribute] = ACTIONS(4628), + [anon_sym_using] = ACTIONS(4628), + [anon_sym_COLON_COLON] = ACTIONS(4630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4630), + [anon_sym___declspec] = ACTIONS(4628), + [anon_sym___based] = ACTIONS(4628), + [anon_sym___cdecl] = ACTIONS(4628), + [anon_sym___clrcall] = ACTIONS(4628), + [anon_sym___stdcall] = ACTIONS(4628), + [anon_sym___fastcall] = ACTIONS(4628), + [anon_sym___thiscall] = ACTIONS(4628), + [anon_sym___vectorcall] = ACTIONS(4628), + [anon_sym_LBRACE] = ACTIONS(4630), + [anon_sym_signed] = ACTIONS(4628), + [anon_sym_unsigned] = ACTIONS(4628), + [anon_sym_long] = ACTIONS(4628), + [anon_sym_short] = ACTIONS(4628), + [anon_sym_LBRACK] = ACTIONS(4628), + [anon_sym_static] = ACTIONS(4628), + [anon_sym_register] = ACTIONS(4628), + [anon_sym_inline] = ACTIONS(4628), + [anon_sym___inline] = ACTIONS(4628), + [anon_sym___inline__] = ACTIONS(4628), + [anon_sym___forceinline] = ACTIONS(4628), + [anon_sym_thread_local] = ACTIONS(4628), + [anon_sym___thread] = ACTIONS(4628), + [anon_sym_const] = ACTIONS(4628), + [anon_sym_constexpr] = ACTIONS(4628), + [anon_sym_volatile] = ACTIONS(4628), + [anon_sym_restrict] = ACTIONS(4628), + [anon_sym___restrict__] = ACTIONS(4628), + [anon_sym__Atomic] = ACTIONS(4628), + [anon_sym__Noreturn] = ACTIONS(4628), + [anon_sym_noreturn] = ACTIONS(4628), + [anon_sym__Nonnull] = ACTIONS(4628), + [anon_sym_mutable] = ACTIONS(4628), + [anon_sym_constinit] = ACTIONS(4628), + [anon_sym_consteval] = ACTIONS(4628), + [anon_sym_alignas] = ACTIONS(4628), + [anon_sym__Alignas] = ACTIONS(4628), + [sym_primitive_type] = ACTIONS(4628), + [anon_sym_enum] = ACTIONS(4628), + [anon_sym_class] = ACTIONS(4628), + [anon_sym_struct] = ACTIONS(4628), + [anon_sym_union] = ACTIONS(4628), + [anon_sym_if] = ACTIONS(4628), + [anon_sym_switch] = ACTIONS(4628), + [anon_sym_case] = ACTIONS(4628), + [anon_sym_default] = ACTIONS(4628), + [anon_sym_while] = ACTIONS(4628), + [anon_sym_do] = ACTIONS(4628), + [anon_sym_for] = ACTIONS(4628), + [anon_sym_return] = ACTIONS(4628), + [anon_sym_break] = ACTIONS(4628), + [anon_sym_continue] = ACTIONS(4628), + [anon_sym_goto] = ACTIONS(4628), + [anon_sym_not] = ACTIONS(4628), + [anon_sym_compl] = ACTIONS(4628), + [anon_sym_DASH_DASH] = ACTIONS(4630), + [anon_sym_PLUS_PLUS] = ACTIONS(4630), + [anon_sym_sizeof] = ACTIONS(4628), + [anon_sym___alignof__] = ACTIONS(4628), + [anon_sym___alignof] = ACTIONS(4628), + [anon_sym__alignof] = ACTIONS(4628), + [anon_sym_alignof] = ACTIONS(4628), + [anon_sym__Alignof] = ACTIONS(4628), + [anon_sym_offsetof] = ACTIONS(4628), + [anon_sym__Generic] = ACTIONS(4628), + [anon_sym_typename] = ACTIONS(4628), + [anon_sym_asm] = ACTIONS(4628), + [anon_sym___asm__] = ACTIONS(4628), + [anon_sym___asm] = ACTIONS(4628), + [sym_number_literal] = ACTIONS(4630), + [anon_sym_L_SQUOTE] = ACTIONS(4630), + [anon_sym_u_SQUOTE] = ACTIONS(4630), + [anon_sym_U_SQUOTE] = ACTIONS(4630), + [anon_sym_u8_SQUOTE] = ACTIONS(4630), + [anon_sym_SQUOTE] = ACTIONS(4630), + [anon_sym_L_DQUOTE] = ACTIONS(4630), + [anon_sym_u_DQUOTE] = ACTIONS(4630), + [anon_sym_U_DQUOTE] = ACTIONS(4630), + [anon_sym_u8_DQUOTE] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(4630), + [sym_true] = ACTIONS(4628), + [sym_false] = ACTIONS(4628), + [anon_sym_NULL] = ACTIONS(4628), + [anon_sym_nullptr] = ACTIONS(4628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4628), + [anon_sym_decltype] = ACTIONS(4628), + [anon_sym_explicit] = ACTIONS(4628), + [anon_sym_export] = ACTIONS(4628), + [anon_sym_module] = ACTIONS(4628), + [anon_sym_import] = ACTIONS(4628), + [anon_sym_template] = ACTIONS(4628), + [anon_sym_operator] = ACTIONS(4628), + [anon_sym_try] = ACTIONS(4628), + [anon_sym_delete] = ACTIONS(4628), + [anon_sym_throw] = ACTIONS(4628), + [anon_sym_namespace] = ACTIONS(4628), + [anon_sym_static_assert] = ACTIONS(4628), + [anon_sym_concept] = ACTIONS(4628), + [anon_sym_co_return] = ACTIONS(4628), + [anon_sym_co_yield] = ACTIONS(4628), + [anon_sym_R_DQUOTE] = ACTIONS(4630), + [anon_sym_LR_DQUOTE] = ACTIONS(4630), + [anon_sym_uR_DQUOTE] = ACTIONS(4630), + [anon_sym_UR_DQUOTE] = ACTIONS(4630), + [anon_sym_u8R_DQUOTE] = ACTIONS(4630), + [anon_sym_co_await] = ACTIONS(4628), + [anon_sym_new] = ACTIONS(4628), + [anon_sym_requires] = ACTIONS(4628), + [anon_sym_CARET_CARET] = ACTIONS(4630), + [anon_sym_LBRACK_COLON] = ACTIONS(4630), + [sym_this] = ACTIONS(4628), }, - [STATE(954)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(963)] = { + [ts_builtin_sym_end] = ACTIONS(4098), + [sym_identifier] = ACTIONS(4096), + [aux_sym_preproc_include_token1] = ACTIONS(4096), + [aux_sym_preproc_def_token1] = ACTIONS(4096), + [aux_sym_preproc_if_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), + [sym_preproc_directive] = ACTIONS(4096), + [anon_sym_LPAREN2] = ACTIONS(4098), + [anon_sym_BANG] = ACTIONS(4098), + [anon_sym_TILDE] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4096), + [anon_sym_PLUS] = ACTIONS(4096), + [anon_sym_STAR] = ACTIONS(4098), + [anon_sym_AMP_AMP] = ACTIONS(4098), + [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_SEMI] = ACTIONS(4098), + [anon_sym___extension__] = ACTIONS(4096), + [anon_sym_typedef] = ACTIONS(4096), + [anon_sym_virtual] = ACTIONS(4096), + [anon_sym_extern] = ACTIONS(4096), + [anon_sym___attribute__] = ACTIONS(4096), + [anon_sym___attribute] = ACTIONS(4096), + [anon_sym_using] = ACTIONS(4096), + [anon_sym_COLON_COLON] = ACTIONS(4098), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), + [anon_sym___declspec] = ACTIONS(4096), + [anon_sym___based] = ACTIONS(4096), + [anon_sym___cdecl] = ACTIONS(4096), + [anon_sym___clrcall] = ACTIONS(4096), + [anon_sym___stdcall] = ACTIONS(4096), + [anon_sym___fastcall] = ACTIONS(4096), + [anon_sym___thiscall] = ACTIONS(4096), + [anon_sym___vectorcall] = ACTIONS(4096), + [anon_sym_LBRACE] = ACTIONS(4098), + [anon_sym_signed] = ACTIONS(4096), + [anon_sym_unsigned] = ACTIONS(4096), + [anon_sym_long] = ACTIONS(4096), + [anon_sym_short] = ACTIONS(4096), + [anon_sym_LBRACK] = ACTIONS(4096), + [anon_sym_static] = ACTIONS(4096), + [anon_sym_register] = ACTIONS(4096), + [anon_sym_inline] = ACTIONS(4096), + [anon_sym___inline] = ACTIONS(4096), + [anon_sym___inline__] = ACTIONS(4096), + [anon_sym___forceinline] = ACTIONS(4096), + [anon_sym_thread_local] = ACTIONS(4096), + [anon_sym___thread] = ACTIONS(4096), + [anon_sym_const] = ACTIONS(4096), + [anon_sym_constexpr] = ACTIONS(4096), + [anon_sym_volatile] = ACTIONS(4096), + [anon_sym_restrict] = ACTIONS(4096), + [anon_sym___restrict__] = ACTIONS(4096), + [anon_sym__Atomic] = ACTIONS(4096), + [anon_sym__Noreturn] = ACTIONS(4096), + [anon_sym_noreturn] = ACTIONS(4096), + [anon_sym__Nonnull] = ACTIONS(4096), + [anon_sym_mutable] = ACTIONS(4096), + [anon_sym_constinit] = ACTIONS(4096), + [anon_sym_consteval] = ACTIONS(4096), + [anon_sym_alignas] = ACTIONS(4096), + [anon_sym__Alignas] = ACTIONS(4096), + [sym_primitive_type] = ACTIONS(4096), + [anon_sym_enum] = ACTIONS(4096), + [anon_sym_class] = ACTIONS(4096), + [anon_sym_struct] = ACTIONS(4096), + [anon_sym_union] = ACTIONS(4096), + [anon_sym_if] = ACTIONS(4096), + [anon_sym_switch] = ACTIONS(4096), + [anon_sym_case] = ACTIONS(4096), + [anon_sym_default] = ACTIONS(4096), + [anon_sym_while] = ACTIONS(4096), + [anon_sym_do] = ACTIONS(4096), + [anon_sym_for] = ACTIONS(4096), + [anon_sym_return] = ACTIONS(4096), + [anon_sym_break] = ACTIONS(4096), + [anon_sym_continue] = ACTIONS(4096), + [anon_sym_goto] = ACTIONS(4096), + [anon_sym_not] = ACTIONS(4096), + [anon_sym_compl] = ACTIONS(4096), + [anon_sym_DASH_DASH] = ACTIONS(4098), + [anon_sym_PLUS_PLUS] = ACTIONS(4098), + [anon_sym_sizeof] = ACTIONS(4096), + [anon_sym___alignof__] = ACTIONS(4096), + [anon_sym___alignof] = ACTIONS(4096), + [anon_sym__alignof] = ACTIONS(4096), + [anon_sym_alignof] = ACTIONS(4096), + [anon_sym__Alignof] = ACTIONS(4096), + [anon_sym_offsetof] = ACTIONS(4096), + [anon_sym__Generic] = ACTIONS(4096), + [anon_sym_typename] = ACTIONS(4096), + [anon_sym_asm] = ACTIONS(4096), + [anon_sym___asm__] = ACTIONS(4096), + [anon_sym___asm] = ACTIONS(4096), + [sym_number_literal] = ACTIONS(4098), + [anon_sym_L_SQUOTE] = ACTIONS(4098), + [anon_sym_u_SQUOTE] = ACTIONS(4098), + [anon_sym_U_SQUOTE] = ACTIONS(4098), + [anon_sym_u8_SQUOTE] = ACTIONS(4098), + [anon_sym_SQUOTE] = ACTIONS(4098), + [anon_sym_L_DQUOTE] = ACTIONS(4098), + [anon_sym_u_DQUOTE] = ACTIONS(4098), + [anon_sym_U_DQUOTE] = ACTIONS(4098), + [anon_sym_u8_DQUOTE] = ACTIONS(4098), + [anon_sym_DQUOTE] = ACTIONS(4098), + [sym_true] = ACTIONS(4096), + [sym_false] = ACTIONS(4096), + [anon_sym_NULL] = ACTIONS(4096), + [anon_sym_nullptr] = ACTIONS(4096), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4096), + [anon_sym_decltype] = ACTIONS(4096), + [anon_sym_explicit] = ACTIONS(4096), + [anon_sym_export] = ACTIONS(4096), + [anon_sym_module] = ACTIONS(4096), + [anon_sym_import] = ACTIONS(4096), + [anon_sym_template] = ACTIONS(4096), + [anon_sym_operator] = ACTIONS(4096), + [anon_sym_try] = ACTIONS(4096), + [anon_sym_delete] = ACTIONS(4096), + [anon_sym_throw] = ACTIONS(4096), + [anon_sym_namespace] = ACTIONS(4096), + [anon_sym_static_assert] = ACTIONS(4096), + [anon_sym_concept] = ACTIONS(4096), + [anon_sym_co_return] = ACTIONS(4096), + [anon_sym_co_yield] = ACTIONS(4096), + [anon_sym_R_DQUOTE] = ACTIONS(4098), + [anon_sym_LR_DQUOTE] = ACTIONS(4098), + [anon_sym_uR_DQUOTE] = ACTIONS(4098), + [anon_sym_UR_DQUOTE] = ACTIONS(4098), + [anon_sym_u8R_DQUOTE] = ACTIONS(4098), + [anon_sym_co_await] = ACTIONS(4096), + [anon_sym_new] = ACTIONS(4096), + [anon_sym_requires] = ACTIONS(4096), + [anon_sym_CARET_CARET] = ACTIONS(4098), + [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_this] = ACTIONS(4096), + }, + [STATE(964)] = { + [ts_builtin_sym_end] = ACTIONS(4634), + [sym_identifier] = ACTIONS(4632), + [aux_sym_preproc_include_token1] = ACTIONS(4632), + [aux_sym_preproc_def_token1] = ACTIONS(4632), + [aux_sym_preproc_if_token1] = ACTIONS(4632), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4632), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4632), + [sym_preproc_directive] = ACTIONS(4632), + [anon_sym_LPAREN2] = ACTIONS(4634), + [anon_sym_BANG] = ACTIONS(4634), + [anon_sym_TILDE] = ACTIONS(4634), + [anon_sym_DASH] = ACTIONS(4632), + [anon_sym_PLUS] = ACTIONS(4632), + [anon_sym_STAR] = ACTIONS(4634), + [anon_sym_AMP_AMP] = ACTIONS(4634), + [anon_sym_AMP] = ACTIONS(4632), + [anon_sym_SEMI] = ACTIONS(4634), + [anon_sym___extension__] = ACTIONS(4632), + [anon_sym_typedef] = ACTIONS(4632), + [anon_sym_virtual] = ACTIONS(4632), + [anon_sym_extern] = ACTIONS(4632), + [anon_sym___attribute__] = ACTIONS(4632), + [anon_sym___attribute] = ACTIONS(4632), + [anon_sym_using] = ACTIONS(4632), + [anon_sym_COLON_COLON] = ACTIONS(4634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4634), + [anon_sym___declspec] = ACTIONS(4632), + [anon_sym___based] = ACTIONS(4632), + [anon_sym___cdecl] = ACTIONS(4632), + [anon_sym___clrcall] = ACTIONS(4632), + [anon_sym___stdcall] = ACTIONS(4632), + [anon_sym___fastcall] = ACTIONS(4632), + [anon_sym___thiscall] = ACTIONS(4632), + [anon_sym___vectorcall] = ACTIONS(4632), + [anon_sym_LBRACE] = ACTIONS(4634), + [anon_sym_signed] = ACTIONS(4632), + [anon_sym_unsigned] = ACTIONS(4632), + [anon_sym_long] = ACTIONS(4632), + [anon_sym_short] = ACTIONS(4632), + [anon_sym_LBRACK] = ACTIONS(4632), + [anon_sym_static] = ACTIONS(4632), + [anon_sym_register] = ACTIONS(4632), + [anon_sym_inline] = ACTIONS(4632), + [anon_sym___inline] = ACTIONS(4632), + [anon_sym___inline__] = ACTIONS(4632), + [anon_sym___forceinline] = ACTIONS(4632), + [anon_sym_thread_local] = ACTIONS(4632), + [anon_sym___thread] = ACTIONS(4632), + [anon_sym_const] = ACTIONS(4632), + [anon_sym_constexpr] = ACTIONS(4632), + [anon_sym_volatile] = ACTIONS(4632), + [anon_sym_restrict] = ACTIONS(4632), + [anon_sym___restrict__] = ACTIONS(4632), + [anon_sym__Atomic] = ACTIONS(4632), + [anon_sym__Noreturn] = ACTIONS(4632), + [anon_sym_noreturn] = ACTIONS(4632), + [anon_sym__Nonnull] = ACTIONS(4632), + [anon_sym_mutable] = ACTIONS(4632), + [anon_sym_constinit] = ACTIONS(4632), + [anon_sym_consteval] = ACTIONS(4632), + [anon_sym_alignas] = ACTIONS(4632), + [anon_sym__Alignas] = ACTIONS(4632), + [sym_primitive_type] = ACTIONS(4632), + [anon_sym_enum] = ACTIONS(4632), + [anon_sym_class] = ACTIONS(4632), + [anon_sym_struct] = ACTIONS(4632), + [anon_sym_union] = ACTIONS(4632), + [anon_sym_if] = ACTIONS(4632), + [anon_sym_switch] = ACTIONS(4632), + [anon_sym_case] = ACTIONS(4632), + [anon_sym_default] = ACTIONS(4632), + [anon_sym_while] = ACTIONS(4632), + [anon_sym_do] = ACTIONS(4632), + [anon_sym_for] = ACTIONS(4632), + [anon_sym_return] = ACTIONS(4632), + [anon_sym_break] = ACTIONS(4632), + [anon_sym_continue] = ACTIONS(4632), + [anon_sym_goto] = ACTIONS(4632), + [anon_sym_not] = ACTIONS(4632), + [anon_sym_compl] = ACTIONS(4632), + [anon_sym_DASH_DASH] = ACTIONS(4634), + [anon_sym_PLUS_PLUS] = ACTIONS(4634), + [anon_sym_sizeof] = ACTIONS(4632), + [anon_sym___alignof__] = ACTIONS(4632), + [anon_sym___alignof] = ACTIONS(4632), + [anon_sym__alignof] = ACTIONS(4632), + [anon_sym_alignof] = ACTIONS(4632), + [anon_sym__Alignof] = ACTIONS(4632), + [anon_sym_offsetof] = ACTIONS(4632), + [anon_sym__Generic] = ACTIONS(4632), + [anon_sym_typename] = ACTIONS(4632), + [anon_sym_asm] = ACTIONS(4632), + [anon_sym___asm__] = ACTIONS(4632), + [anon_sym___asm] = ACTIONS(4632), + [sym_number_literal] = ACTIONS(4634), + [anon_sym_L_SQUOTE] = ACTIONS(4634), + [anon_sym_u_SQUOTE] = ACTIONS(4634), + [anon_sym_U_SQUOTE] = ACTIONS(4634), + [anon_sym_u8_SQUOTE] = ACTIONS(4634), + [anon_sym_SQUOTE] = ACTIONS(4634), + [anon_sym_L_DQUOTE] = ACTIONS(4634), + [anon_sym_u_DQUOTE] = ACTIONS(4634), + [anon_sym_U_DQUOTE] = ACTIONS(4634), + [anon_sym_u8_DQUOTE] = ACTIONS(4634), + [anon_sym_DQUOTE] = ACTIONS(4634), + [sym_true] = ACTIONS(4632), + [sym_false] = ACTIONS(4632), + [anon_sym_NULL] = ACTIONS(4632), + [anon_sym_nullptr] = ACTIONS(4632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4632), + [anon_sym_decltype] = ACTIONS(4632), + [anon_sym_explicit] = ACTIONS(4632), + [anon_sym_export] = ACTIONS(4632), + [anon_sym_module] = ACTIONS(4632), + [anon_sym_import] = ACTIONS(4632), + [anon_sym_template] = ACTIONS(4632), + [anon_sym_operator] = ACTIONS(4632), + [anon_sym_try] = ACTIONS(4632), + [anon_sym_delete] = ACTIONS(4632), + [anon_sym_throw] = ACTIONS(4632), + [anon_sym_namespace] = ACTIONS(4632), + [anon_sym_static_assert] = ACTIONS(4632), + [anon_sym_concept] = ACTIONS(4632), + [anon_sym_co_return] = ACTIONS(4632), + [anon_sym_co_yield] = ACTIONS(4632), + [anon_sym_R_DQUOTE] = ACTIONS(4634), + [anon_sym_LR_DQUOTE] = ACTIONS(4634), + [anon_sym_uR_DQUOTE] = ACTIONS(4634), + [anon_sym_UR_DQUOTE] = ACTIONS(4634), + [anon_sym_u8R_DQUOTE] = ACTIONS(4634), + [anon_sym_co_await] = ACTIONS(4632), + [anon_sym_new] = ACTIONS(4632), + [anon_sym_requires] = ACTIONS(4632), + [anon_sym_CARET_CARET] = ACTIONS(4634), + [anon_sym_LBRACK_COLON] = ACTIONS(4634), + [sym_this] = ACTIONS(4632), + }, + [STATE(965)] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4833), + [anon_sym_RBRACE] = ACTIONS(4858), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -195578,7 +197107,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -195588,126 +197117,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(955)] = { - [sym_preproc_def] = STATE(956), - [sym_preproc_function_def] = STATE(956), - [sym_preproc_call] = STATE(956), - [sym_preproc_if_in_field_declaration_list] = STATE(956), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(956), - [sym_type_definition] = STATE(956), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(956), - [sym_field_declaration] = STATE(956), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(956), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(956), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(956), - [sym_operator_cast_declaration] = STATE(956), - [sym_constructor_or_destructor_definition] = STATE(956), - [sym_constructor_or_destructor_declaration] = STATE(956), - [sym_friend_declaration] = STATE(956), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(956), - [sym_alias_declaration] = STATE(956), - [sym_static_assert_declaration] = STATE(956), - [sym_consteval_block_declaration] = STATE(956), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(956), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(966)] = { + [ts_builtin_sym_end] = ACTIONS(4638), + [sym_identifier] = ACTIONS(4636), + [aux_sym_preproc_include_token1] = ACTIONS(4636), + [aux_sym_preproc_def_token1] = ACTIONS(4636), + [aux_sym_preproc_if_token1] = ACTIONS(4636), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4636), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4636), + [sym_preproc_directive] = ACTIONS(4636), + [anon_sym_LPAREN2] = ACTIONS(4638), + [anon_sym_BANG] = ACTIONS(4638), + [anon_sym_TILDE] = ACTIONS(4638), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_PLUS] = ACTIONS(4636), + [anon_sym_STAR] = ACTIONS(4638), + [anon_sym_AMP_AMP] = ACTIONS(4638), + [anon_sym_AMP] = ACTIONS(4636), + [anon_sym_SEMI] = ACTIONS(4638), + [anon_sym___extension__] = ACTIONS(4636), + [anon_sym_typedef] = ACTIONS(4636), + [anon_sym_virtual] = ACTIONS(4636), + [anon_sym_extern] = ACTIONS(4636), + [anon_sym___attribute__] = ACTIONS(4636), + [anon_sym___attribute] = ACTIONS(4636), + [anon_sym_using] = ACTIONS(4636), + [anon_sym_COLON_COLON] = ACTIONS(4638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4638), + [anon_sym___declspec] = ACTIONS(4636), + [anon_sym___based] = ACTIONS(4636), + [anon_sym___cdecl] = ACTIONS(4636), + [anon_sym___clrcall] = ACTIONS(4636), + [anon_sym___stdcall] = ACTIONS(4636), + [anon_sym___fastcall] = ACTIONS(4636), + [anon_sym___thiscall] = ACTIONS(4636), + [anon_sym___vectorcall] = ACTIONS(4636), + [anon_sym_LBRACE] = ACTIONS(4638), + [anon_sym_signed] = ACTIONS(4636), + [anon_sym_unsigned] = ACTIONS(4636), + [anon_sym_long] = ACTIONS(4636), + [anon_sym_short] = ACTIONS(4636), + [anon_sym_LBRACK] = ACTIONS(4636), + [anon_sym_static] = ACTIONS(4636), + [anon_sym_register] = ACTIONS(4636), + [anon_sym_inline] = ACTIONS(4636), + [anon_sym___inline] = ACTIONS(4636), + [anon_sym___inline__] = ACTIONS(4636), + [anon_sym___forceinline] = ACTIONS(4636), + [anon_sym_thread_local] = ACTIONS(4636), + [anon_sym___thread] = ACTIONS(4636), + [anon_sym_const] = ACTIONS(4636), + [anon_sym_constexpr] = ACTIONS(4636), + [anon_sym_volatile] = ACTIONS(4636), + [anon_sym_restrict] = ACTIONS(4636), + [anon_sym___restrict__] = ACTIONS(4636), + [anon_sym__Atomic] = ACTIONS(4636), + [anon_sym__Noreturn] = ACTIONS(4636), + [anon_sym_noreturn] = ACTIONS(4636), + [anon_sym__Nonnull] = ACTIONS(4636), + [anon_sym_mutable] = ACTIONS(4636), + [anon_sym_constinit] = ACTIONS(4636), + [anon_sym_consteval] = ACTIONS(4636), + [anon_sym_alignas] = ACTIONS(4636), + [anon_sym__Alignas] = ACTIONS(4636), + [sym_primitive_type] = ACTIONS(4636), + [anon_sym_enum] = ACTIONS(4636), + [anon_sym_class] = ACTIONS(4636), + [anon_sym_struct] = ACTIONS(4636), + [anon_sym_union] = ACTIONS(4636), + [anon_sym_if] = ACTIONS(4636), + [anon_sym_switch] = ACTIONS(4636), + [anon_sym_case] = ACTIONS(4636), + [anon_sym_default] = ACTIONS(4636), + [anon_sym_while] = ACTIONS(4636), + [anon_sym_do] = ACTIONS(4636), + [anon_sym_for] = ACTIONS(4636), + [anon_sym_return] = ACTIONS(4636), + [anon_sym_break] = ACTIONS(4636), + [anon_sym_continue] = ACTIONS(4636), + [anon_sym_goto] = ACTIONS(4636), + [anon_sym_not] = ACTIONS(4636), + [anon_sym_compl] = ACTIONS(4636), + [anon_sym_DASH_DASH] = ACTIONS(4638), + [anon_sym_PLUS_PLUS] = ACTIONS(4638), + [anon_sym_sizeof] = ACTIONS(4636), + [anon_sym___alignof__] = ACTIONS(4636), + [anon_sym___alignof] = ACTIONS(4636), + [anon_sym__alignof] = ACTIONS(4636), + [anon_sym_alignof] = ACTIONS(4636), + [anon_sym__Alignof] = ACTIONS(4636), + [anon_sym_offsetof] = ACTIONS(4636), + [anon_sym__Generic] = ACTIONS(4636), + [anon_sym_typename] = ACTIONS(4636), + [anon_sym_asm] = ACTIONS(4636), + [anon_sym___asm__] = ACTIONS(4636), + [anon_sym___asm] = ACTIONS(4636), + [sym_number_literal] = ACTIONS(4638), + [anon_sym_L_SQUOTE] = ACTIONS(4638), + [anon_sym_u_SQUOTE] = ACTIONS(4638), + [anon_sym_U_SQUOTE] = ACTIONS(4638), + [anon_sym_u8_SQUOTE] = ACTIONS(4638), + [anon_sym_SQUOTE] = ACTIONS(4638), + [anon_sym_L_DQUOTE] = ACTIONS(4638), + [anon_sym_u_DQUOTE] = ACTIONS(4638), + [anon_sym_U_DQUOTE] = ACTIONS(4638), + [anon_sym_u8_DQUOTE] = ACTIONS(4638), + [anon_sym_DQUOTE] = ACTIONS(4638), + [sym_true] = ACTIONS(4636), + [sym_false] = ACTIONS(4636), + [anon_sym_NULL] = ACTIONS(4636), + [anon_sym_nullptr] = ACTIONS(4636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4636), + [anon_sym_decltype] = ACTIONS(4636), + [anon_sym_explicit] = ACTIONS(4636), + [anon_sym_export] = ACTIONS(4636), + [anon_sym_module] = ACTIONS(4636), + [anon_sym_import] = ACTIONS(4636), + [anon_sym_template] = ACTIONS(4636), + [anon_sym_operator] = ACTIONS(4636), + [anon_sym_try] = ACTIONS(4636), + [anon_sym_delete] = ACTIONS(4636), + [anon_sym_throw] = ACTIONS(4636), + [anon_sym_namespace] = ACTIONS(4636), + [anon_sym_static_assert] = ACTIONS(4636), + [anon_sym_concept] = ACTIONS(4636), + [anon_sym_co_return] = ACTIONS(4636), + [anon_sym_co_yield] = ACTIONS(4636), + [anon_sym_R_DQUOTE] = ACTIONS(4638), + [anon_sym_LR_DQUOTE] = ACTIONS(4638), + [anon_sym_uR_DQUOTE] = ACTIONS(4638), + [anon_sym_UR_DQUOTE] = ACTIONS(4638), + [anon_sym_u8R_DQUOTE] = ACTIONS(4638), + [anon_sym_co_await] = ACTIONS(4636), + [anon_sym_new] = ACTIONS(4636), + [anon_sym_requires] = ACTIONS(4636), + [anon_sym_CARET_CARET] = ACTIONS(4638), + [anon_sym_LBRACK_COLON] = ACTIONS(4638), + [sym_this] = ACTIONS(4636), + }, + [STATE(967)] = { + [ts_builtin_sym_end] = ACTIONS(4642), + [sym_identifier] = ACTIONS(4640), + [aux_sym_preproc_include_token1] = ACTIONS(4640), + [aux_sym_preproc_def_token1] = ACTIONS(4640), + [aux_sym_preproc_if_token1] = ACTIONS(4640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4640), + [sym_preproc_directive] = ACTIONS(4640), + [anon_sym_LPAREN2] = ACTIONS(4642), + [anon_sym_BANG] = ACTIONS(4642), + [anon_sym_TILDE] = ACTIONS(4642), + [anon_sym_DASH] = ACTIONS(4640), + [anon_sym_PLUS] = ACTIONS(4640), + [anon_sym_STAR] = ACTIONS(4642), + [anon_sym_AMP_AMP] = ACTIONS(4642), + [anon_sym_AMP] = ACTIONS(4640), + [anon_sym_SEMI] = ACTIONS(4642), + [anon_sym___extension__] = ACTIONS(4640), + [anon_sym_typedef] = ACTIONS(4640), + [anon_sym_virtual] = ACTIONS(4640), + [anon_sym_extern] = ACTIONS(4640), + [anon_sym___attribute__] = ACTIONS(4640), + [anon_sym___attribute] = ACTIONS(4640), + [anon_sym_using] = ACTIONS(4640), + [anon_sym_COLON_COLON] = ACTIONS(4642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4642), + [anon_sym___declspec] = ACTIONS(4640), + [anon_sym___based] = ACTIONS(4640), + [anon_sym___cdecl] = ACTIONS(4640), + [anon_sym___clrcall] = ACTIONS(4640), + [anon_sym___stdcall] = ACTIONS(4640), + [anon_sym___fastcall] = ACTIONS(4640), + [anon_sym___thiscall] = ACTIONS(4640), + [anon_sym___vectorcall] = ACTIONS(4640), + [anon_sym_LBRACE] = ACTIONS(4642), + [anon_sym_signed] = ACTIONS(4640), + [anon_sym_unsigned] = ACTIONS(4640), + [anon_sym_long] = ACTIONS(4640), + [anon_sym_short] = ACTIONS(4640), + [anon_sym_LBRACK] = ACTIONS(4640), + [anon_sym_static] = ACTIONS(4640), + [anon_sym_register] = ACTIONS(4640), + [anon_sym_inline] = ACTIONS(4640), + [anon_sym___inline] = ACTIONS(4640), + [anon_sym___inline__] = ACTIONS(4640), + [anon_sym___forceinline] = ACTIONS(4640), + [anon_sym_thread_local] = ACTIONS(4640), + [anon_sym___thread] = ACTIONS(4640), + [anon_sym_const] = ACTIONS(4640), + [anon_sym_constexpr] = ACTIONS(4640), + [anon_sym_volatile] = ACTIONS(4640), + [anon_sym_restrict] = ACTIONS(4640), + [anon_sym___restrict__] = ACTIONS(4640), + [anon_sym__Atomic] = ACTIONS(4640), + [anon_sym__Noreturn] = ACTIONS(4640), + [anon_sym_noreturn] = ACTIONS(4640), + [anon_sym__Nonnull] = ACTIONS(4640), + [anon_sym_mutable] = ACTIONS(4640), + [anon_sym_constinit] = ACTIONS(4640), + [anon_sym_consteval] = ACTIONS(4640), + [anon_sym_alignas] = ACTIONS(4640), + [anon_sym__Alignas] = ACTIONS(4640), + [sym_primitive_type] = ACTIONS(4640), + [anon_sym_enum] = ACTIONS(4640), + [anon_sym_class] = ACTIONS(4640), + [anon_sym_struct] = ACTIONS(4640), + [anon_sym_union] = ACTIONS(4640), + [anon_sym_if] = ACTIONS(4640), + [anon_sym_switch] = ACTIONS(4640), + [anon_sym_case] = ACTIONS(4640), + [anon_sym_default] = ACTIONS(4640), + [anon_sym_while] = ACTIONS(4640), + [anon_sym_do] = ACTIONS(4640), + [anon_sym_for] = ACTIONS(4640), + [anon_sym_return] = ACTIONS(4640), + [anon_sym_break] = ACTIONS(4640), + [anon_sym_continue] = ACTIONS(4640), + [anon_sym_goto] = ACTIONS(4640), + [anon_sym_not] = ACTIONS(4640), + [anon_sym_compl] = ACTIONS(4640), + [anon_sym_DASH_DASH] = ACTIONS(4642), + [anon_sym_PLUS_PLUS] = ACTIONS(4642), + [anon_sym_sizeof] = ACTIONS(4640), + [anon_sym___alignof__] = ACTIONS(4640), + [anon_sym___alignof] = ACTIONS(4640), + [anon_sym__alignof] = ACTIONS(4640), + [anon_sym_alignof] = ACTIONS(4640), + [anon_sym__Alignof] = ACTIONS(4640), + [anon_sym_offsetof] = ACTIONS(4640), + [anon_sym__Generic] = ACTIONS(4640), + [anon_sym_typename] = ACTIONS(4640), + [anon_sym_asm] = ACTIONS(4640), + [anon_sym___asm__] = ACTIONS(4640), + [anon_sym___asm] = ACTIONS(4640), + [sym_number_literal] = ACTIONS(4642), + [anon_sym_L_SQUOTE] = ACTIONS(4642), + [anon_sym_u_SQUOTE] = ACTIONS(4642), + [anon_sym_U_SQUOTE] = ACTIONS(4642), + [anon_sym_u8_SQUOTE] = ACTIONS(4642), + [anon_sym_SQUOTE] = ACTIONS(4642), + [anon_sym_L_DQUOTE] = ACTIONS(4642), + [anon_sym_u_DQUOTE] = ACTIONS(4642), + [anon_sym_U_DQUOTE] = ACTIONS(4642), + [anon_sym_u8_DQUOTE] = ACTIONS(4642), + [anon_sym_DQUOTE] = ACTIONS(4642), + [sym_true] = ACTIONS(4640), + [sym_false] = ACTIONS(4640), + [anon_sym_NULL] = ACTIONS(4640), + [anon_sym_nullptr] = ACTIONS(4640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4640), + [anon_sym_decltype] = ACTIONS(4640), + [anon_sym_explicit] = ACTIONS(4640), + [anon_sym_export] = ACTIONS(4640), + [anon_sym_module] = ACTIONS(4640), + [anon_sym_import] = ACTIONS(4640), + [anon_sym_template] = ACTIONS(4640), + [anon_sym_operator] = ACTIONS(4640), + [anon_sym_try] = ACTIONS(4640), + [anon_sym_delete] = ACTIONS(4640), + [anon_sym_throw] = ACTIONS(4640), + [anon_sym_namespace] = ACTIONS(4640), + [anon_sym_static_assert] = ACTIONS(4640), + [anon_sym_concept] = ACTIONS(4640), + [anon_sym_co_return] = ACTIONS(4640), + [anon_sym_co_yield] = ACTIONS(4640), + [anon_sym_R_DQUOTE] = ACTIONS(4642), + [anon_sym_LR_DQUOTE] = ACTIONS(4642), + [anon_sym_uR_DQUOTE] = ACTIONS(4642), + [anon_sym_UR_DQUOTE] = ACTIONS(4642), + [anon_sym_u8R_DQUOTE] = ACTIONS(4642), + [anon_sym_co_await] = ACTIONS(4640), + [anon_sym_new] = ACTIONS(4640), + [anon_sym_requires] = ACTIONS(4640), + [anon_sym_CARET_CARET] = ACTIONS(4642), + [anon_sym_LBRACK_COLON] = ACTIONS(4642), + [sym_this] = ACTIONS(4640), + }, + [STATE(968)] = { + [sym_preproc_def] = STATE(973), + [sym_preproc_function_def] = STATE(973), + [sym_preproc_call] = STATE(973), + [sym_preproc_if_in_field_declaration_list] = STATE(973), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(973), + [sym_type_definition] = STATE(973), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(973), + [sym_field_declaration] = STATE(973), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(973), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(973), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(973), + [sym_operator_cast_declaration] = STATE(973), + [sym_constructor_or_destructor_definition] = STATE(973), + [sym_constructor_or_destructor_declaration] = STATE(973), + [sym_friend_declaration] = STATE(973), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(973), + [sym_alias_declaration] = STATE(973), + [sym_static_assert_declaration] = STATE(973), + [sym_consteval_block_declaration] = STATE(973), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(973), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4835), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4860), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4837), + [anon_sym_RBRACE] = ACTIONS(4862), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -195717,7 +197524,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -195727,126 +197534,682 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(956)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(969)] = { + [ts_builtin_sym_end] = ACTIONS(4225), + [sym_identifier] = ACTIONS(4223), + [aux_sym_preproc_include_token1] = ACTIONS(4223), + [aux_sym_preproc_def_token1] = ACTIONS(4223), + [aux_sym_preproc_if_token1] = ACTIONS(4223), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4223), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4223), + [sym_preproc_directive] = ACTIONS(4223), + [anon_sym_LPAREN2] = ACTIONS(4225), + [anon_sym_BANG] = ACTIONS(4225), + [anon_sym_TILDE] = ACTIONS(4225), + [anon_sym_DASH] = ACTIONS(4223), + [anon_sym_PLUS] = ACTIONS(4223), + [anon_sym_STAR] = ACTIONS(4225), + [anon_sym_AMP_AMP] = ACTIONS(4225), + [anon_sym_AMP] = ACTIONS(4223), + [anon_sym_SEMI] = ACTIONS(4225), + [anon_sym___extension__] = ACTIONS(4223), + [anon_sym_typedef] = ACTIONS(4223), + [anon_sym_virtual] = ACTIONS(4223), + [anon_sym_extern] = ACTIONS(4223), + [anon_sym___attribute__] = ACTIONS(4223), + [anon_sym___attribute] = ACTIONS(4223), + [anon_sym_using] = ACTIONS(4223), + [anon_sym_COLON_COLON] = ACTIONS(4225), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4225), + [anon_sym___declspec] = ACTIONS(4223), + [anon_sym___based] = ACTIONS(4223), + [anon_sym___cdecl] = ACTIONS(4223), + [anon_sym___clrcall] = ACTIONS(4223), + [anon_sym___stdcall] = ACTIONS(4223), + [anon_sym___fastcall] = ACTIONS(4223), + [anon_sym___thiscall] = ACTIONS(4223), + [anon_sym___vectorcall] = ACTIONS(4223), + [anon_sym_LBRACE] = ACTIONS(4225), + [anon_sym_signed] = ACTIONS(4223), + [anon_sym_unsigned] = ACTIONS(4223), + [anon_sym_long] = ACTIONS(4223), + [anon_sym_short] = ACTIONS(4223), + [anon_sym_LBRACK] = ACTIONS(4223), + [anon_sym_static] = ACTIONS(4223), + [anon_sym_register] = ACTIONS(4223), + [anon_sym_inline] = ACTIONS(4223), + [anon_sym___inline] = ACTIONS(4223), + [anon_sym___inline__] = ACTIONS(4223), + [anon_sym___forceinline] = ACTIONS(4223), + [anon_sym_thread_local] = ACTIONS(4223), + [anon_sym___thread] = ACTIONS(4223), + [anon_sym_const] = ACTIONS(4223), + [anon_sym_constexpr] = ACTIONS(4223), + [anon_sym_volatile] = ACTIONS(4223), + [anon_sym_restrict] = ACTIONS(4223), + [anon_sym___restrict__] = ACTIONS(4223), + [anon_sym__Atomic] = ACTIONS(4223), + [anon_sym__Noreturn] = ACTIONS(4223), + [anon_sym_noreturn] = ACTIONS(4223), + [anon_sym__Nonnull] = ACTIONS(4223), + [anon_sym_mutable] = ACTIONS(4223), + [anon_sym_constinit] = ACTIONS(4223), + [anon_sym_consteval] = ACTIONS(4223), + [anon_sym_alignas] = ACTIONS(4223), + [anon_sym__Alignas] = ACTIONS(4223), + [sym_primitive_type] = ACTIONS(4223), + [anon_sym_enum] = ACTIONS(4223), + [anon_sym_class] = ACTIONS(4223), + [anon_sym_struct] = ACTIONS(4223), + [anon_sym_union] = ACTIONS(4223), + [anon_sym_if] = ACTIONS(4223), + [anon_sym_switch] = ACTIONS(4223), + [anon_sym_case] = ACTIONS(4223), + [anon_sym_default] = ACTIONS(4223), + [anon_sym_while] = ACTIONS(4223), + [anon_sym_do] = ACTIONS(4223), + [anon_sym_for] = ACTIONS(4223), + [anon_sym_return] = ACTIONS(4223), + [anon_sym_break] = ACTIONS(4223), + [anon_sym_continue] = ACTIONS(4223), + [anon_sym_goto] = ACTIONS(4223), + [anon_sym_not] = ACTIONS(4223), + [anon_sym_compl] = ACTIONS(4223), + [anon_sym_DASH_DASH] = ACTIONS(4225), + [anon_sym_PLUS_PLUS] = ACTIONS(4225), + [anon_sym_sizeof] = ACTIONS(4223), + [anon_sym___alignof__] = ACTIONS(4223), + [anon_sym___alignof] = ACTIONS(4223), + [anon_sym__alignof] = ACTIONS(4223), + [anon_sym_alignof] = ACTIONS(4223), + [anon_sym__Alignof] = ACTIONS(4223), + [anon_sym_offsetof] = ACTIONS(4223), + [anon_sym__Generic] = ACTIONS(4223), + [anon_sym_typename] = ACTIONS(4223), + [anon_sym_asm] = ACTIONS(4223), + [anon_sym___asm__] = ACTIONS(4223), + [anon_sym___asm] = ACTIONS(4223), + [sym_number_literal] = ACTIONS(4225), + [anon_sym_L_SQUOTE] = ACTIONS(4225), + [anon_sym_u_SQUOTE] = ACTIONS(4225), + [anon_sym_U_SQUOTE] = ACTIONS(4225), + [anon_sym_u8_SQUOTE] = ACTIONS(4225), + [anon_sym_SQUOTE] = ACTIONS(4225), + [anon_sym_L_DQUOTE] = ACTIONS(4225), + [anon_sym_u_DQUOTE] = ACTIONS(4225), + [anon_sym_U_DQUOTE] = ACTIONS(4225), + [anon_sym_u8_DQUOTE] = ACTIONS(4225), + [anon_sym_DQUOTE] = ACTIONS(4225), + [sym_true] = ACTIONS(4223), + [sym_false] = ACTIONS(4223), + [anon_sym_NULL] = ACTIONS(4223), + [anon_sym_nullptr] = ACTIONS(4223), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4223), + [anon_sym_decltype] = ACTIONS(4223), + [anon_sym_explicit] = ACTIONS(4223), + [anon_sym_export] = ACTIONS(4223), + [anon_sym_module] = ACTIONS(4223), + [anon_sym_import] = ACTIONS(4223), + [anon_sym_template] = ACTIONS(4223), + [anon_sym_operator] = ACTIONS(4223), + [anon_sym_try] = ACTIONS(4223), + [anon_sym_delete] = ACTIONS(4223), + [anon_sym_throw] = ACTIONS(4223), + [anon_sym_namespace] = ACTIONS(4223), + [anon_sym_static_assert] = ACTIONS(4223), + [anon_sym_concept] = ACTIONS(4223), + [anon_sym_co_return] = ACTIONS(4223), + [anon_sym_co_yield] = ACTIONS(4223), + [anon_sym_R_DQUOTE] = ACTIONS(4225), + [anon_sym_LR_DQUOTE] = ACTIONS(4225), + [anon_sym_uR_DQUOTE] = ACTIONS(4225), + [anon_sym_UR_DQUOTE] = ACTIONS(4225), + [anon_sym_u8R_DQUOTE] = ACTIONS(4225), + [anon_sym_co_await] = ACTIONS(4223), + [anon_sym_new] = ACTIONS(4223), + [anon_sym_requires] = ACTIONS(4223), + [anon_sym_CARET_CARET] = ACTIONS(4225), + [anon_sym_LBRACK_COLON] = ACTIONS(4225), + [sym_this] = ACTIONS(4223), + }, + [STATE(970)] = { + [ts_builtin_sym_end] = ACTIONS(3860), + [sym_identifier] = ACTIONS(3858), + [aux_sym_preproc_include_token1] = ACTIONS(3858), + [aux_sym_preproc_def_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3858), + [sym_preproc_directive] = ACTIONS(3858), + [anon_sym_LPAREN2] = ACTIONS(3860), + [anon_sym_BANG] = ACTIONS(3860), + [anon_sym_TILDE] = ACTIONS(3860), + [anon_sym_DASH] = ACTIONS(3858), + [anon_sym_PLUS] = ACTIONS(3858), + [anon_sym_STAR] = ACTIONS(3860), + [anon_sym_AMP_AMP] = ACTIONS(3860), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym___extension__] = ACTIONS(3858), + [anon_sym_typedef] = ACTIONS(3858), + [anon_sym_virtual] = ACTIONS(3858), + [anon_sym_extern] = ACTIONS(3858), + [anon_sym___attribute__] = ACTIONS(3858), + [anon_sym___attribute] = ACTIONS(3858), + [anon_sym_using] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3860), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), + [anon_sym___declspec] = ACTIONS(3858), + [anon_sym___based] = ACTIONS(3858), + [anon_sym___cdecl] = ACTIONS(3858), + [anon_sym___clrcall] = ACTIONS(3858), + [anon_sym___stdcall] = ACTIONS(3858), + [anon_sym___fastcall] = ACTIONS(3858), + [anon_sym___thiscall] = ACTIONS(3858), + [anon_sym___vectorcall] = ACTIONS(3858), + [anon_sym_LBRACE] = ACTIONS(3860), + [anon_sym_signed] = ACTIONS(3858), + [anon_sym_unsigned] = ACTIONS(3858), + [anon_sym_long] = ACTIONS(3858), + [anon_sym_short] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3858), + [anon_sym_static] = ACTIONS(3858), + [anon_sym_register] = ACTIONS(3858), + [anon_sym_inline] = ACTIONS(3858), + [anon_sym___inline] = ACTIONS(3858), + [anon_sym___inline__] = ACTIONS(3858), + [anon_sym___forceinline] = ACTIONS(3858), + [anon_sym_thread_local] = ACTIONS(3858), + [anon_sym___thread] = ACTIONS(3858), + [anon_sym_const] = ACTIONS(3858), + [anon_sym_constexpr] = ACTIONS(3858), + [anon_sym_volatile] = ACTIONS(3858), + [anon_sym_restrict] = ACTIONS(3858), + [anon_sym___restrict__] = ACTIONS(3858), + [anon_sym__Atomic] = ACTIONS(3858), + [anon_sym__Noreturn] = ACTIONS(3858), + [anon_sym_noreturn] = ACTIONS(3858), + [anon_sym__Nonnull] = ACTIONS(3858), + [anon_sym_mutable] = ACTIONS(3858), + [anon_sym_constinit] = ACTIONS(3858), + [anon_sym_consteval] = ACTIONS(3858), + [anon_sym_alignas] = ACTIONS(3858), + [anon_sym__Alignas] = ACTIONS(3858), + [sym_primitive_type] = ACTIONS(3858), + [anon_sym_enum] = ACTIONS(3858), + [anon_sym_class] = ACTIONS(3858), + [anon_sym_struct] = ACTIONS(3858), + [anon_sym_union] = ACTIONS(3858), + [anon_sym_if] = ACTIONS(3858), + [anon_sym_switch] = ACTIONS(3858), + [anon_sym_case] = ACTIONS(3858), + [anon_sym_default] = ACTIONS(3858), + [anon_sym_while] = ACTIONS(3858), + [anon_sym_do] = ACTIONS(3858), + [anon_sym_for] = ACTIONS(3858), + [anon_sym_return] = ACTIONS(3858), + [anon_sym_break] = ACTIONS(3858), + [anon_sym_continue] = ACTIONS(3858), + [anon_sym_goto] = ACTIONS(3858), + [anon_sym_not] = ACTIONS(3858), + [anon_sym_compl] = ACTIONS(3858), + [anon_sym_DASH_DASH] = ACTIONS(3860), + [anon_sym_PLUS_PLUS] = ACTIONS(3860), + [anon_sym_sizeof] = ACTIONS(3858), + [anon_sym___alignof__] = ACTIONS(3858), + [anon_sym___alignof] = ACTIONS(3858), + [anon_sym__alignof] = ACTIONS(3858), + [anon_sym_alignof] = ACTIONS(3858), + [anon_sym__Alignof] = ACTIONS(3858), + [anon_sym_offsetof] = ACTIONS(3858), + [anon_sym__Generic] = ACTIONS(3858), + [anon_sym_typename] = ACTIONS(3858), + [anon_sym_asm] = ACTIONS(3858), + [anon_sym___asm__] = ACTIONS(3858), + [anon_sym___asm] = ACTIONS(3858), + [sym_number_literal] = ACTIONS(3860), + [anon_sym_L_SQUOTE] = ACTIONS(3860), + [anon_sym_u_SQUOTE] = ACTIONS(3860), + [anon_sym_U_SQUOTE] = ACTIONS(3860), + [anon_sym_u8_SQUOTE] = ACTIONS(3860), + [anon_sym_SQUOTE] = ACTIONS(3860), + [anon_sym_L_DQUOTE] = ACTIONS(3860), + [anon_sym_u_DQUOTE] = ACTIONS(3860), + [anon_sym_U_DQUOTE] = ACTIONS(3860), + [anon_sym_u8_DQUOTE] = ACTIONS(3860), + [anon_sym_DQUOTE] = ACTIONS(3860), + [sym_true] = ACTIONS(3858), + [sym_false] = ACTIONS(3858), + [anon_sym_NULL] = ACTIONS(3858), + [anon_sym_nullptr] = ACTIONS(3858), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3858), + [anon_sym_decltype] = ACTIONS(3858), + [anon_sym_explicit] = ACTIONS(3858), + [anon_sym_export] = ACTIONS(3858), + [anon_sym_module] = ACTIONS(3858), + [anon_sym_import] = ACTIONS(3858), + [anon_sym_template] = ACTIONS(3858), + [anon_sym_operator] = ACTIONS(3858), + [anon_sym_try] = ACTIONS(3858), + [anon_sym_delete] = ACTIONS(3858), + [anon_sym_throw] = ACTIONS(3858), + [anon_sym_namespace] = ACTIONS(3858), + [anon_sym_static_assert] = ACTIONS(3858), + [anon_sym_concept] = ACTIONS(3858), + [anon_sym_co_return] = ACTIONS(3858), + [anon_sym_co_yield] = ACTIONS(3858), + [anon_sym_R_DQUOTE] = ACTIONS(3860), + [anon_sym_LR_DQUOTE] = ACTIONS(3860), + [anon_sym_uR_DQUOTE] = ACTIONS(3860), + [anon_sym_UR_DQUOTE] = ACTIONS(3860), + [anon_sym_u8R_DQUOTE] = ACTIONS(3860), + [anon_sym_co_await] = ACTIONS(3858), + [anon_sym_new] = ACTIONS(3858), + [anon_sym_requires] = ACTIONS(3858), + [anon_sym_CARET_CARET] = ACTIONS(3860), + [anon_sym_LBRACK_COLON] = ACTIONS(3860), + [sym_this] = ACTIONS(3858), + }, + [STATE(971)] = { + [ts_builtin_sym_end] = ACTIONS(3864), + [sym_identifier] = ACTIONS(3862), + [aux_sym_preproc_include_token1] = ACTIONS(3862), + [aux_sym_preproc_def_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token1] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3862), + [sym_preproc_directive] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(3864), + [anon_sym_BANG] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3864), + [anon_sym_DASH] = ACTIONS(3862), + [anon_sym_PLUS] = ACTIONS(3862), + [anon_sym_STAR] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym___extension__] = ACTIONS(3862), + [anon_sym_typedef] = ACTIONS(3862), + [anon_sym_virtual] = ACTIONS(3862), + [anon_sym_extern] = ACTIONS(3862), + [anon_sym___attribute__] = ACTIONS(3862), + [anon_sym___attribute] = ACTIONS(3862), + [anon_sym_using] = ACTIONS(3862), + [anon_sym_COLON_COLON] = ACTIONS(3864), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), + [anon_sym___declspec] = ACTIONS(3862), + [anon_sym___based] = ACTIONS(3862), + [anon_sym___cdecl] = ACTIONS(3862), + [anon_sym___clrcall] = ACTIONS(3862), + [anon_sym___stdcall] = ACTIONS(3862), + [anon_sym___fastcall] = ACTIONS(3862), + [anon_sym___thiscall] = ACTIONS(3862), + [anon_sym___vectorcall] = ACTIONS(3862), + [anon_sym_LBRACE] = ACTIONS(3864), + [anon_sym_signed] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3862), + [anon_sym_long] = ACTIONS(3862), + [anon_sym_short] = ACTIONS(3862), + [anon_sym_LBRACK] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3862), + [anon_sym_register] = ACTIONS(3862), + [anon_sym_inline] = ACTIONS(3862), + [anon_sym___inline] = ACTIONS(3862), + [anon_sym___inline__] = ACTIONS(3862), + [anon_sym___forceinline] = ACTIONS(3862), + [anon_sym_thread_local] = ACTIONS(3862), + [anon_sym___thread] = ACTIONS(3862), + [anon_sym_const] = ACTIONS(3862), + [anon_sym_constexpr] = ACTIONS(3862), + [anon_sym_volatile] = ACTIONS(3862), + [anon_sym_restrict] = ACTIONS(3862), + [anon_sym___restrict__] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3862), + [anon_sym__Noreturn] = ACTIONS(3862), + [anon_sym_noreturn] = ACTIONS(3862), + [anon_sym__Nonnull] = ACTIONS(3862), + [anon_sym_mutable] = ACTIONS(3862), + [anon_sym_constinit] = ACTIONS(3862), + [anon_sym_consteval] = ACTIONS(3862), + [anon_sym_alignas] = ACTIONS(3862), + [anon_sym__Alignas] = ACTIONS(3862), + [sym_primitive_type] = ACTIONS(3862), + [anon_sym_enum] = ACTIONS(3862), + [anon_sym_class] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3862), + [anon_sym_union] = ACTIONS(3862), + [anon_sym_if] = ACTIONS(3862), + [anon_sym_switch] = ACTIONS(3862), + [anon_sym_case] = ACTIONS(3862), + [anon_sym_default] = ACTIONS(3862), + [anon_sym_while] = ACTIONS(3862), + [anon_sym_do] = ACTIONS(3862), + [anon_sym_for] = ACTIONS(3862), + [anon_sym_return] = ACTIONS(3862), + [anon_sym_break] = ACTIONS(3862), + [anon_sym_continue] = ACTIONS(3862), + [anon_sym_goto] = ACTIONS(3862), + [anon_sym_not] = ACTIONS(3862), + [anon_sym_compl] = ACTIONS(3862), + [anon_sym_DASH_DASH] = ACTIONS(3864), + [anon_sym_PLUS_PLUS] = ACTIONS(3864), + [anon_sym_sizeof] = ACTIONS(3862), + [anon_sym___alignof__] = ACTIONS(3862), + [anon_sym___alignof] = ACTIONS(3862), + [anon_sym__alignof] = ACTIONS(3862), + [anon_sym_alignof] = ACTIONS(3862), + [anon_sym__Alignof] = ACTIONS(3862), + [anon_sym_offsetof] = ACTIONS(3862), + [anon_sym__Generic] = ACTIONS(3862), + [anon_sym_typename] = ACTIONS(3862), + [anon_sym_asm] = ACTIONS(3862), + [anon_sym___asm__] = ACTIONS(3862), + [anon_sym___asm] = ACTIONS(3862), + [sym_number_literal] = ACTIONS(3864), + [anon_sym_L_SQUOTE] = ACTIONS(3864), + [anon_sym_u_SQUOTE] = ACTIONS(3864), + [anon_sym_U_SQUOTE] = ACTIONS(3864), + [anon_sym_u8_SQUOTE] = ACTIONS(3864), + [anon_sym_SQUOTE] = ACTIONS(3864), + [anon_sym_L_DQUOTE] = ACTIONS(3864), + [anon_sym_u_DQUOTE] = ACTIONS(3864), + [anon_sym_U_DQUOTE] = ACTIONS(3864), + [anon_sym_u8_DQUOTE] = ACTIONS(3864), + [anon_sym_DQUOTE] = ACTIONS(3864), + [sym_true] = ACTIONS(3862), + [sym_false] = ACTIONS(3862), + [anon_sym_NULL] = ACTIONS(3862), + [anon_sym_nullptr] = ACTIONS(3862), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3862), + [anon_sym_decltype] = ACTIONS(3862), + [anon_sym_explicit] = ACTIONS(3862), + [anon_sym_export] = ACTIONS(3862), + [anon_sym_module] = ACTIONS(3862), + [anon_sym_import] = ACTIONS(3862), + [anon_sym_template] = ACTIONS(3862), + [anon_sym_operator] = ACTIONS(3862), + [anon_sym_try] = ACTIONS(3862), + [anon_sym_delete] = ACTIONS(3862), + [anon_sym_throw] = ACTIONS(3862), + [anon_sym_namespace] = ACTIONS(3862), + [anon_sym_static_assert] = ACTIONS(3862), + [anon_sym_concept] = ACTIONS(3862), + [anon_sym_co_return] = ACTIONS(3862), + [anon_sym_co_yield] = ACTIONS(3862), + [anon_sym_R_DQUOTE] = ACTIONS(3864), + [anon_sym_LR_DQUOTE] = ACTIONS(3864), + [anon_sym_uR_DQUOTE] = ACTIONS(3864), + [anon_sym_UR_DQUOTE] = ACTIONS(3864), + [anon_sym_u8R_DQUOTE] = ACTIONS(3864), + [anon_sym_co_await] = ACTIONS(3862), + [anon_sym_new] = ACTIONS(3862), + [anon_sym_requires] = ACTIONS(3862), + [anon_sym_CARET_CARET] = ACTIONS(3864), + [anon_sym_LBRACK_COLON] = ACTIONS(3864), + [sym_this] = ACTIONS(3862), + }, + [STATE(972)] = { + [ts_builtin_sym_end] = ACTIONS(4229), + [sym_identifier] = ACTIONS(4227), + [aux_sym_preproc_include_token1] = ACTIONS(4227), + [aux_sym_preproc_def_token1] = ACTIONS(4227), + [aux_sym_preproc_if_token1] = ACTIONS(4227), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4227), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4227), + [sym_preproc_directive] = ACTIONS(4227), + [anon_sym_LPAREN2] = ACTIONS(4229), + [anon_sym_BANG] = ACTIONS(4229), + [anon_sym_TILDE] = ACTIONS(4229), + [anon_sym_DASH] = ACTIONS(4227), + [anon_sym_PLUS] = ACTIONS(4227), + [anon_sym_STAR] = ACTIONS(4229), + [anon_sym_AMP_AMP] = ACTIONS(4229), + [anon_sym_AMP] = ACTIONS(4227), + [anon_sym_SEMI] = ACTIONS(4229), + [anon_sym___extension__] = ACTIONS(4227), + [anon_sym_typedef] = ACTIONS(4227), + [anon_sym_virtual] = ACTIONS(4227), + [anon_sym_extern] = ACTIONS(4227), + [anon_sym___attribute__] = ACTIONS(4227), + [anon_sym___attribute] = ACTIONS(4227), + [anon_sym_using] = ACTIONS(4227), + [anon_sym_COLON_COLON] = ACTIONS(4229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4229), + [anon_sym___declspec] = ACTIONS(4227), + [anon_sym___based] = ACTIONS(4227), + [anon_sym___cdecl] = ACTIONS(4227), + [anon_sym___clrcall] = ACTIONS(4227), + [anon_sym___stdcall] = ACTIONS(4227), + [anon_sym___fastcall] = ACTIONS(4227), + [anon_sym___thiscall] = ACTIONS(4227), + [anon_sym___vectorcall] = ACTIONS(4227), + [anon_sym_LBRACE] = ACTIONS(4229), + [anon_sym_signed] = ACTIONS(4227), + [anon_sym_unsigned] = ACTIONS(4227), + [anon_sym_long] = ACTIONS(4227), + [anon_sym_short] = ACTIONS(4227), + [anon_sym_LBRACK] = ACTIONS(4227), + [anon_sym_static] = ACTIONS(4227), + [anon_sym_register] = ACTIONS(4227), + [anon_sym_inline] = ACTIONS(4227), + [anon_sym___inline] = ACTIONS(4227), + [anon_sym___inline__] = ACTIONS(4227), + [anon_sym___forceinline] = ACTIONS(4227), + [anon_sym_thread_local] = ACTIONS(4227), + [anon_sym___thread] = ACTIONS(4227), + [anon_sym_const] = ACTIONS(4227), + [anon_sym_constexpr] = ACTIONS(4227), + [anon_sym_volatile] = ACTIONS(4227), + [anon_sym_restrict] = ACTIONS(4227), + [anon_sym___restrict__] = ACTIONS(4227), + [anon_sym__Atomic] = ACTIONS(4227), + [anon_sym__Noreturn] = ACTIONS(4227), + [anon_sym_noreturn] = ACTIONS(4227), + [anon_sym__Nonnull] = ACTIONS(4227), + [anon_sym_mutable] = ACTIONS(4227), + [anon_sym_constinit] = ACTIONS(4227), + [anon_sym_consteval] = ACTIONS(4227), + [anon_sym_alignas] = ACTIONS(4227), + [anon_sym__Alignas] = ACTIONS(4227), + [sym_primitive_type] = ACTIONS(4227), + [anon_sym_enum] = ACTIONS(4227), + [anon_sym_class] = ACTIONS(4227), + [anon_sym_struct] = ACTIONS(4227), + [anon_sym_union] = ACTIONS(4227), + [anon_sym_if] = ACTIONS(4227), + [anon_sym_switch] = ACTIONS(4227), + [anon_sym_case] = ACTIONS(4227), + [anon_sym_default] = ACTIONS(4227), + [anon_sym_while] = ACTIONS(4227), + [anon_sym_do] = ACTIONS(4227), + [anon_sym_for] = ACTIONS(4227), + [anon_sym_return] = ACTIONS(4227), + [anon_sym_break] = ACTIONS(4227), + [anon_sym_continue] = ACTIONS(4227), + [anon_sym_goto] = ACTIONS(4227), + [anon_sym_not] = ACTIONS(4227), + [anon_sym_compl] = ACTIONS(4227), + [anon_sym_DASH_DASH] = ACTIONS(4229), + [anon_sym_PLUS_PLUS] = ACTIONS(4229), + [anon_sym_sizeof] = ACTIONS(4227), + [anon_sym___alignof__] = ACTIONS(4227), + [anon_sym___alignof] = ACTIONS(4227), + [anon_sym__alignof] = ACTIONS(4227), + [anon_sym_alignof] = ACTIONS(4227), + [anon_sym__Alignof] = ACTIONS(4227), + [anon_sym_offsetof] = ACTIONS(4227), + [anon_sym__Generic] = ACTIONS(4227), + [anon_sym_typename] = ACTIONS(4227), + [anon_sym_asm] = ACTIONS(4227), + [anon_sym___asm__] = ACTIONS(4227), + [anon_sym___asm] = ACTIONS(4227), + [sym_number_literal] = ACTIONS(4229), + [anon_sym_L_SQUOTE] = ACTIONS(4229), + [anon_sym_u_SQUOTE] = ACTIONS(4229), + [anon_sym_U_SQUOTE] = ACTIONS(4229), + [anon_sym_u8_SQUOTE] = ACTIONS(4229), + [anon_sym_SQUOTE] = ACTIONS(4229), + [anon_sym_L_DQUOTE] = ACTIONS(4229), + [anon_sym_u_DQUOTE] = ACTIONS(4229), + [anon_sym_U_DQUOTE] = ACTIONS(4229), + [anon_sym_u8_DQUOTE] = ACTIONS(4229), + [anon_sym_DQUOTE] = ACTIONS(4229), + [sym_true] = ACTIONS(4227), + [sym_false] = ACTIONS(4227), + [anon_sym_NULL] = ACTIONS(4227), + [anon_sym_nullptr] = ACTIONS(4227), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4227), + [anon_sym_decltype] = ACTIONS(4227), + [anon_sym_explicit] = ACTIONS(4227), + [anon_sym_export] = ACTIONS(4227), + [anon_sym_module] = ACTIONS(4227), + [anon_sym_import] = ACTIONS(4227), + [anon_sym_template] = ACTIONS(4227), + [anon_sym_operator] = ACTIONS(4227), + [anon_sym_try] = ACTIONS(4227), + [anon_sym_delete] = ACTIONS(4227), + [anon_sym_throw] = ACTIONS(4227), + [anon_sym_namespace] = ACTIONS(4227), + [anon_sym_static_assert] = ACTIONS(4227), + [anon_sym_concept] = ACTIONS(4227), + [anon_sym_co_return] = ACTIONS(4227), + [anon_sym_co_yield] = ACTIONS(4227), + [anon_sym_R_DQUOTE] = ACTIONS(4229), + [anon_sym_LR_DQUOTE] = ACTIONS(4229), + [anon_sym_uR_DQUOTE] = ACTIONS(4229), + [anon_sym_UR_DQUOTE] = ACTIONS(4229), + [anon_sym_u8R_DQUOTE] = ACTIONS(4229), + [anon_sym_co_await] = ACTIONS(4227), + [anon_sym_new] = ACTIONS(4227), + [anon_sym_requires] = ACTIONS(4227), + [anon_sym_CARET_CARET] = ACTIONS(4229), + [anon_sym_LBRACK_COLON] = ACTIONS(4229), + [sym_this] = ACTIONS(4227), + }, + [STATE(973)] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4839), + [anon_sym_RBRACE] = ACTIONS(4864), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -195856,7 +198219,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -195866,2489 +198229,1099 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(957)] = { - [ts_builtin_sym_end] = ACTIONS(4507), - [sym_identifier] = ACTIONS(4504), - [aux_sym_preproc_include_token1] = ACTIONS(4504), - [aux_sym_preproc_def_token1] = ACTIONS(4504), - [aux_sym_preproc_if_token1] = ACTIONS(4504), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4504), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4504), - [sym_preproc_directive] = ACTIONS(4504), - [anon_sym_LPAREN2] = ACTIONS(4507), - [anon_sym_BANG] = ACTIONS(4507), - [anon_sym_TILDE] = ACTIONS(4507), - [anon_sym_DASH] = ACTIONS(4504), - [anon_sym_PLUS] = ACTIONS(4504), - [anon_sym_STAR] = ACTIONS(4507), - [anon_sym_AMP_AMP] = ACTIONS(4507), - [anon_sym_AMP] = ACTIONS(4504), - [anon_sym_SEMI] = ACTIONS(4507), - [anon_sym___extension__] = ACTIONS(4504), - [anon_sym_typedef] = ACTIONS(4504), - [anon_sym_virtual] = ACTIONS(4504), - [anon_sym_extern] = ACTIONS(4504), - [anon_sym___attribute__] = ACTIONS(4504), - [anon_sym___attribute] = ACTIONS(4504), - [anon_sym_using] = ACTIONS(4504), - [anon_sym_COLON_COLON] = ACTIONS(4507), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4507), - [anon_sym___declspec] = ACTIONS(4504), - [anon_sym___based] = ACTIONS(4504), - [anon_sym___cdecl] = ACTIONS(4504), - [anon_sym___clrcall] = ACTIONS(4504), - [anon_sym___stdcall] = ACTIONS(4504), - [anon_sym___fastcall] = ACTIONS(4504), - [anon_sym___thiscall] = ACTIONS(4504), - [anon_sym___vectorcall] = ACTIONS(4504), - [anon_sym_LBRACE] = ACTIONS(4507), - [anon_sym_signed] = ACTIONS(4504), - [anon_sym_unsigned] = ACTIONS(4504), - [anon_sym_long] = ACTIONS(4504), - [anon_sym_short] = ACTIONS(4504), - [anon_sym_LBRACK] = ACTIONS(4504), - [anon_sym_static] = ACTIONS(4504), - [anon_sym_register] = ACTIONS(4504), - [anon_sym_inline] = ACTIONS(4504), - [anon_sym___inline] = ACTIONS(4504), - [anon_sym___inline__] = ACTIONS(4504), - [anon_sym___forceinline] = ACTIONS(4504), - [anon_sym_thread_local] = ACTIONS(4504), - [anon_sym___thread] = ACTIONS(4504), - [anon_sym_const] = ACTIONS(4504), - [anon_sym_constexpr] = ACTIONS(4504), - [anon_sym_volatile] = ACTIONS(4504), - [anon_sym_restrict] = ACTIONS(4504), - [anon_sym___restrict__] = ACTIONS(4504), - [anon_sym__Atomic] = ACTIONS(4504), - [anon_sym__Noreturn] = ACTIONS(4504), - [anon_sym_noreturn] = ACTIONS(4504), - [anon_sym__Nonnull] = ACTIONS(4504), - [anon_sym_mutable] = ACTIONS(4504), - [anon_sym_constinit] = ACTIONS(4504), - [anon_sym_consteval] = ACTIONS(4504), - [anon_sym_alignas] = ACTIONS(4504), - [anon_sym__Alignas] = ACTIONS(4504), - [sym_primitive_type] = ACTIONS(4504), - [anon_sym_enum] = ACTIONS(4504), - [anon_sym_class] = ACTIONS(4504), - [anon_sym_struct] = ACTIONS(4504), - [anon_sym_union] = ACTIONS(4504), - [anon_sym_if] = ACTIONS(4504), - [anon_sym_switch] = ACTIONS(4504), - [anon_sym_case] = ACTIONS(4504), - [anon_sym_default] = ACTIONS(4504), - [anon_sym_while] = ACTIONS(4504), - [anon_sym_do] = ACTIONS(4504), - [anon_sym_for] = ACTIONS(4504), - [anon_sym_return] = ACTIONS(4504), - [anon_sym_break] = ACTIONS(4504), - [anon_sym_continue] = ACTIONS(4504), - [anon_sym_goto] = ACTIONS(4504), - [anon_sym_not] = ACTIONS(4504), - [anon_sym_compl] = ACTIONS(4504), - [anon_sym_DASH_DASH] = ACTIONS(4507), - [anon_sym_PLUS_PLUS] = ACTIONS(4507), - [anon_sym_sizeof] = ACTIONS(4504), - [anon_sym___alignof__] = ACTIONS(4504), - [anon_sym___alignof] = ACTIONS(4504), - [anon_sym__alignof] = ACTIONS(4504), - [anon_sym_alignof] = ACTIONS(4504), - [anon_sym__Alignof] = ACTIONS(4504), - [anon_sym_offsetof] = ACTIONS(4504), - [anon_sym__Generic] = ACTIONS(4504), - [anon_sym_typename] = ACTIONS(4504), - [anon_sym_asm] = ACTIONS(4504), - [anon_sym___asm__] = ACTIONS(4504), - [anon_sym___asm] = ACTIONS(4504), - [sym_number_literal] = ACTIONS(4507), - [anon_sym_L_SQUOTE] = ACTIONS(4507), - [anon_sym_u_SQUOTE] = ACTIONS(4507), - [anon_sym_U_SQUOTE] = ACTIONS(4507), - [anon_sym_u8_SQUOTE] = ACTIONS(4507), - [anon_sym_SQUOTE] = ACTIONS(4507), - [anon_sym_L_DQUOTE] = ACTIONS(4507), - [anon_sym_u_DQUOTE] = ACTIONS(4507), - [anon_sym_U_DQUOTE] = ACTIONS(4507), - [anon_sym_u8_DQUOTE] = ACTIONS(4507), - [anon_sym_DQUOTE] = ACTIONS(4507), - [sym_true] = ACTIONS(4504), - [sym_false] = ACTIONS(4504), - [anon_sym_NULL] = ACTIONS(4504), - [anon_sym_nullptr] = ACTIONS(4504), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4504), - [anon_sym_decltype] = ACTIONS(4504), - [anon_sym_explicit] = ACTIONS(4504), - [anon_sym_export] = ACTIONS(4504), - [anon_sym_module] = ACTIONS(4504), - [anon_sym_import] = ACTIONS(4504), - [anon_sym_template] = ACTIONS(4504), - [anon_sym_operator] = ACTIONS(4504), - [anon_sym_try] = ACTIONS(4504), - [anon_sym_delete] = ACTIONS(4504), - [anon_sym_throw] = ACTIONS(4504), - [anon_sym_namespace] = ACTIONS(4504), - [anon_sym_static_assert] = ACTIONS(4504), - [anon_sym_concept] = ACTIONS(4504), - [anon_sym_co_return] = ACTIONS(4504), - [anon_sym_co_yield] = ACTIONS(4504), - [anon_sym_R_DQUOTE] = ACTIONS(4507), - [anon_sym_LR_DQUOTE] = ACTIONS(4507), - [anon_sym_uR_DQUOTE] = ACTIONS(4507), - [anon_sym_UR_DQUOTE] = ACTIONS(4507), - [anon_sym_u8R_DQUOTE] = ACTIONS(4507), - [anon_sym_co_await] = ACTIONS(4504), - [anon_sym_new] = ACTIONS(4504), - [anon_sym_requires] = ACTIONS(4504), - [anon_sym_CARET_CARET] = ACTIONS(4507), - [anon_sym_LBRACK_COLON] = ACTIONS(4507), - [sym_this] = ACTIONS(4504), + [STATE(974)] = { + [ts_builtin_sym_end] = ACTIONS(4233), + [sym_identifier] = ACTIONS(4231), + [aux_sym_preproc_include_token1] = ACTIONS(4231), + [aux_sym_preproc_def_token1] = ACTIONS(4231), + [aux_sym_preproc_if_token1] = ACTIONS(4231), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4231), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4231), + [sym_preproc_directive] = ACTIONS(4231), + [anon_sym_LPAREN2] = ACTIONS(4233), + [anon_sym_BANG] = ACTIONS(4233), + [anon_sym_TILDE] = ACTIONS(4233), + [anon_sym_DASH] = ACTIONS(4231), + [anon_sym_PLUS] = ACTIONS(4231), + [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_AMP_AMP] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4231), + [anon_sym_SEMI] = ACTIONS(4233), + [anon_sym___extension__] = ACTIONS(4231), + [anon_sym_typedef] = ACTIONS(4231), + [anon_sym_virtual] = ACTIONS(4231), + [anon_sym_extern] = ACTIONS(4231), + [anon_sym___attribute__] = ACTIONS(4231), + [anon_sym___attribute] = ACTIONS(4231), + [anon_sym_using] = ACTIONS(4231), + [anon_sym_COLON_COLON] = ACTIONS(4233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4233), + [anon_sym___declspec] = ACTIONS(4231), + [anon_sym___based] = ACTIONS(4231), + [anon_sym___cdecl] = ACTIONS(4231), + [anon_sym___clrcall] = ACTIONS(4231), + [anon_sym___stdcall] = ACTIONS(4231), + [anon_sym___fastcall] = ACTIONS(4231), + [anon_sym___thiscall] = ACTIONS(4231), + [anon_sym___vectorcall] = ACTIONS(4231), + [anon_sym_LBRACE] = ACTIONS(4233), + [anon_sym_signed] = ACTIONS(4231), + [anon_sym_unsigned] = ACTIONS(4231), + [anon_sym_long] = ACTIONS(4231), + [anon_sym_short] = ACTIONS(4231), + [anon_sym_LBRACK] = ACTIONS(4231), + [anon_sym_static] = ACTIONS(4231), + [anon_sym_register] = ACTIONS(4231), + [anon_sym_inline] = ACTIONS(4231), + [anon_sym___inline] = ACTIONS(4231), + [anon_sym___inline__] = ACTIONS(4231), + [anon_sym___forceinline] = ACTIONS(4231), + [anon_sym_thread_local] = ACTIONS(4231), + [anon_sym___thread] = ACTIONS(4231), + [anon_sym_const] = ACTIONS(4231), + [anon_sym_constexpr] = ACTIONS(4231), + [anon_sym_volatile] = ACTIONS(4231), + [anon_sym_restrict] = ACTIONS(4231), + [anon_sym___restrict__] = ACTIONS(4231), + [anon_sym__Atomic] = ACTIONS(4231), + [anon_sym__Noreturn] = ACTIONS(4231), + [anon_sym_noreturn] = ACTIONS(4231), + [anon_sym__Nonnull] = ACTIONS(4231), + [anon_sym_mutable] = ACTIONS(4231), + [anon_sym_constinit] = ACTIONS(4231), + [anon_sym_consteval] = ACTIONS(4231), + [anon_sym_alignas] = ACTIONS(4231), + [anon_sym__Alignas] = ACTIONS(4231), + [sym_primitive_type] = ACTIONS(4231), + [anon_sym_enum] = ACTIONS(4231), + [anon_sym_class] = ACTIONS(4231), + [anon_sym_struct] = ACTIONS(4231), + [anon_sym_union] = ACTIONS(4231), + [anon_sym_if] = ACTIONS(4231), + [anon_sym_switch] = ACTIONS(4231), + [anon_sym_case] = ACTIONS(4231), + [anon_sym_default] = ACTIONS(4231), + [anon_sym_while] = ACTIONS(4231), + [anon_sym_do] = ACTIONS(4231), + [anon_sym_for] = ACTIONS(4231), + [anon_sym_return] = ACTIONS(4231), + [anon_sym_break] = ACTIONS(4231), + [anon_sym_continue] = ACTIONS(4231), + [anon_sym_goto] = ACTIONS(4231), + [anon_sym_not] = ACTIONS(4231), + [anon_sym_compl] = ACTIONS(4231), + [anon_sym_DASH_DASH] = ACTIONS(4233), + [anon_sym_PLUS_PLUS] = ACTIONS(4233), + [anon_sym_sizeof] = ACTIONS(4231), + [anon_sym___alignof__] = ACTIONS(4231), + [anon_sym___alignof] = ACTIONS(4231), + [anon_sym__alignof] = ACTIONS(4231), + [anon_sym_alignof] = ACTIONS(4231), + [anon_sym__Alignof] = ACTIONS(4231), + [anon_sym_offsetof] = ACTIONS(4231), + [anon_sym__Generic] = ACTIONS(4231), + [anon_sym_typename] = ACTIONS(4231), + [anon_sym_asm] = ACTIONS(4231), + [anon_sym___asm__] = ACTIONS(4231), + [anon_sym___asm] = ACTIONS(4231), + [sym_number_literal] = ACTIONS(4233), + [anon_sym_L_SQUOTE] = ACTIONS(4233), + [anon_sym_u_SQUOTE] = ACTIONS(4233), + [anon_sym_U_SQUOTE] = ACTIONS(4233), + [anon_sym_u8_SQUOTE] = ACTIONS(4233), + [anon_sym_SQUOTE] = ACTIONS(4233), + [anon_sym_L_DQUOTE] = ACTIONS(4233), + [anon_sym_u_DQUOTE] = ACTIONS(4233), + [anon_sym_U_DQUOTE] = ACTIONS(4233), + [anon_sym_u8_DQUOTE] = ACTIONS(4233), + [anon_sym_DQUOTE] = ACTIONS(4233), + [sym_true] = ACTIONS(4231), + [sym_false] = ACTIONS(4231), + [anon_sym_NULL] = ACTIONS(4231), + [anon_sym_nullptr] = ACTIONS(4231), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4231), + [anon_sym_decltype] = ACTIONS(4231), + [anon_sym_explicit] = ACTIONS(4231), + [anon_sym_export] = ACTIONS(4231), + [anon_sym_module] = ACTIONS(4231), + [anon_sym_import] = ACTIONS(4231), + [anon_sym_template] = ACTIONS(4231), + [anon_sym_operator] = ACTIONS(4231), + [anon_sym_try] = ACTIONS(4231), + [anon_sym_delete] = ACTIONS(4231), + [anon_sym_throw] = ACTIONS(4231), + [anon_sym_namespace] = ACTIONS(4231), + [anon_sym_static_assert] = ACTIONS(4231), + [anon_sym_concept] = ACTIONS(4231), + [anon_sym_co_return] = ACTIONS(4231), + [anon_sym_co_yield] = ACTIONS(4231), + [anon_sym_R_DQUOTE] = ACTIONS(4233), + [anon_sym_LR_DQUOTE] = ACTIONS(4233), + [anon_sym_uR_DQUOTE] = ACTIONS(4233), + [anon_sym_UR_DQUOTE] = ACTIONS(4233), + [anon_sym_u8R_DQUOTE] = ACTIONS(4233), + [anon_sym_co_await] = ACTIONS(4231), + [anon_sym_new] = ACTIONS(4231), + [anon_sym_requires] = ACTIONS(4231), + [anon_sym_CARET_CARET] = ACTIONS(4233), + [anon_sym_LBRACK_COLON] = ACTIONS(4233), + [sym_this] = ACTIONS(4231), }, - [STATE(958)] = { - [ts_builtin_sym_end] = ACTIONS(3941), - [sym_identifier] = ACTIONS(3939), - [aux_sym_preproc_include_token1] = ACTIONS(3939), - [aux_sym_preproc_def_token1] = ACTIONS(3939), - [aux_sym_preproc_if_token1] = ACTIONS(3939), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3939), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3939), - [sym_preproc_directive] = ACTIONS(3939), - [anon_sym_LPAREN2] = ACTIONS(3941), - [anon_sym_BANG] = ACTIONS(3941), - [anon_sym_TILDE] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3939), - [anon_sym_PLUS] = ACTIONS(3939), - [anon_sym_STAR] = ACTIONS(3941), - [anon_sym_AMP_AMP] = ACTIONS(3941), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym___extension__] = ACTIONS(3939), - [anon_sym_typedef] = ACTIONS(3939), - [anon_sym_virtual] = ACTIONS(3939), - [anon_sym_extern] = ACTIONS(3939), - [anon_sym___attribute__] = ACTIONS(3939), - [anon_sym___attribute] = ACTIONS(3939), - [anon_sym_using] = ACTIONS(3939), - [anon_sym_COLON_COLON] = ACTIONS(3941), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3941), - [anon_sym___declspec] = ACTIONS(3939), - [anon_sym___based] = ACTIONS(3939), - [anon_sym___cdecl] = ACTIONS(3939), - [anon_sym___clrcall] = ACTIONS(3939), - [anon_sym___stdcall] = ACTIONS(3939), - [anon_sym___fastcall] = ACTIONS(3939), - [anon_sym___thiscall] = ACTIONS(3939), - [anon_sym___vectorcall] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3941), - [anon_sym_signed] = ACTIONS(3939), - [anon_sym_unsigned] = ACTIONS(3939), - [anon_sym_long] = ACTIONS(3939), - [anon_sym_short] = ACTIONS(3939), - [anon_sym_LBRACK] = ACTIONS(3939), - [anon_sym_static] = ACTIONS(3939), - [anon_sym_register] = ACTIONS(3939), - [anon_sym_inline] = ACTIONS(3939), - [anon_sym___inline] = ACTIONS(3939), - [anon_sym___inline__] = ACTIONS(3939), - [anon_sym___forceinline] = ACTIONS(3939), - [anon_sym_thread_local] = ACTIONS(3939), - [anon_sym___thread] = ACTIONS(3939), - [anon_sym_const] = ACTIONS(3939), - [anon_sym_constexpr] = ACTIONS(3939), - [anon_sym_volatile] = ACTIONS(3939), - [anon_sym_restrict] = ACTIONS(3939), - [anon_sym___restrict__] = ACTIONS(3939), - [anon_sym__Atomic] = ACTIONS(3939), - [anon_sym__Noreturn] = ACTIONS(3939), - [anon_sym_noreturn] = ACTIONS(3939), - [anon_sym__Nonnull] = ACTIONS(3939), - [anon_sym_mutable] = ACTIONS(3939), - [anon_sym_constinit] = ACTIONS(3939), - [anon_sym_consteval] = ACTIONS(3939), - [anon_sym_alignas] = ACTIONS(3939), - [anon_sym__Alignas] = ACTIONS(3939), - [sym_primitive_type] = ACTIONS(3939), - [anon_sym_enum] = ACTIONS(3939), - [anon_sym_class] = ACTIONS(3939), - [anon_sym_struct] = ACTIONS(3939), - [anon_sym_union] = ACTIONS(3939), - [anon_sym_if] = ACTIONS(3939), - [anon_sym_switch] = ACTIONS(3939), - [anon_sym_case] = ACTIONS(3939), - [anon_sym_default] = ACTIONS(3939), - [anon_sym_while] = ACTIONS(3939), - [anon_sym_do] = ACTIONS(3939), - [anon_sym_for] = ACTIONS(3939), - [anon_sym_return] = ACTIONS(3939), - [anon_sym_break] = ACTIONS(3939), - [anon_sym_continue] = ACTIONS(3939), - [anon_sym_goto] = ACTIONS(3939), - [anon_sym_not] = ACTIONS(3939), - [anon_sym_compl] = ACTIONS(3939), - [anon_sym_DASH_DASH] = ACTIONS(3941), - [anon_sym_PLUS_PLUS] = ACTIONS(3941), - [anon_sym_sizeof] = ACTIONS(3939), - [anon_sym___alignof__] = ACTIONS(3939), - [anon_sym___alignof] = ACTIONS(3939), - [anon_sym__alignof] = ACTIONS(3939), - [anon_sym_alignof] = ACTIONS(3939), - [anon_sym__Alignof] = ACTIONS(3939), - [anon_sym_offsetof] = ACTIONS(3939), - [anon_sym__Generic] = ACTIONS(3939), - [anon_sym_typename] = ACTIONS(3939), - [anon_sym_asm] = ACTIONS(3939), - [anon_sym___asm__] = ACTIONS(3939), - [anon_sym___asm] = ACTIONS(3939), - [sym_number_literal] = ACTIONS(3941), - [anon_sym_L_SQUOTE] = ACTIONS(3941), - [anon_sym_u_SQUOTE] = ACTIONS(3941), - [anon_sym_U_SQUOTE] = ACTIONS(3941), - [anon_sym_u8_SQUOTE] = ACTIONS(3941), - [anon_sym_SQUOTE] = ACTIONS(3941), - [anon_sym_L_DQUOTE] = ACTIONS(3941), - [anon_sym_u_DQUOTE] = ACTIONS(3941), - [anon_sym_U_DQUOTE] = ACTIONS(3941), - [anon_sym_u8_DQUOTE] = ACTIONS(3941), - [anon_sym_DQUOTE] = ACTIONS(3941), - [sym_true] = ACTIONS(3939), - [sym_false] = ACTIONS(3939), - [anon_sym_NULL] = ACTIONS(3939), - [anon_sym_nullptr] = ACTIONS(3939), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3939), - [anon_sym_decltype] = ACTIONS(3939), - [anon_sym_explicit] = ACTIONS(3939), - [anon_sym_export] = ACTIONS(3939), - [anon_sym_module] = ACTIONS(3939), - [anon_sym_import] = ACTIONS(3939), - [anon_sym_template] = ACTIONS(3939), - [anon_sym_operator] = ACTIONS(3939), - [anon_sym_try] = ACTIONS(3939), - [anon_sym_delete] = ACTIONS(3939), - [anon_sym_throw] = ACTIONS(3939), - [anon_sym_namespace] = ACTIONS(3939), - [anon_sym_static_assert] = ACTIONS(3939), - [anon_sym_concept] = ACTIONS(3939), - [anon_sym_co_return] = ACTIONS(3939), - [anon_sym_co_yield] = ACTIONS(3939), - [anon_sym_R_DQUOTE] = ACTIONS(3941), - [anon_sym_LR_DQUOTE] = ACTIONS(3941), - [anon_sym_uR_DQUOTE] = ACTIONS(3941), - [anon_sym_UR_DQUOTE] = ACTIONS(3941), - [anon_sym_u8R_DQUOTE] = ACTIONS(3941), - [anon_sym_co_await] = ACTIONS(3939), - [anon_sym_new] = ACTIONS(3939), - [anon_sym_requires] = ACTIONS(3939), - [anon_sym_CARET_CARET] = ACTIONS(3941), - [anon_sym_LBRACK_COLON] = ACTIONS(3941), - [sym_this] = ACTIONS(3939), + [STATE(975)] = { + [sym_preproc_def] = STATE(977), + [sym_preproc_function_def] = STATE(977), + [sym_preproc_call] = STATE(977), + [sym_preproc_if_in_field_declaration_list] = STATE(977), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(977), + [sym_type_definition] = STATE(977), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(977), + [sym_field_declaration] = STATE(977), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(977), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(977), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(977), + [sym_operator_cast_declaration] = STATE(977), + [sym_constructor_or_destructor_definition] = STATE(977), + [sym_constructor_or_destructor_declaration] = STATE(977), + [sym_friend_declaration] = STATE(977), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(977), + [sym_alias_declaration] = STATE(977), + [sym_static_assert_declaration] = STATE(977), + [sym_consteval_block_declaration] = STATE(977), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(977), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4866), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3458), + [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(4702), + [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(4704), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(959)] = { - [ts_builtin_sym_end] = ACTIONS(4516), - [sym_identifier] = ACTIONS(4514), - [aux_sym_preproc_include_token1] = ACTIONS(4514), - [aux_sym_preproc_def_token1] = ACTIONS(4514), - [aux_sym_preproc_if_token1] = ACTIONS(4514), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4514), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4514), - [sym_preproc_directive] = ACTIONS(4514), - [anon_sym_LPAREN2] = ACTIONS(4516), - [anon_sym_BANG] = ACTIONS(4516), - [anon_sym_TILDE] = ACTIONS(4516), - [anon_sym_DASH] = ACTIONS(4514), - [anon_sym_PLUS] = ACTIONS(4514), - [anon_sym_STAR] = ACTIONS(4516), - [anon_sym_AMP_AMP] = ACTIONS(4516), - [anon_sym_AMP] = ACTIONS(4514), - [anon_sym_SEMI] = ACTIONS(4516), - [anon_sym___extension__] = ACTIONS(4514), - [anon_sym_typedef] = ACTIONS(4514), - [anon_sym_virtual] = ACTIONS(4514), - [anon_sym_extern] = ACTIONS(4514), - [anon_sym___attribute__] = ACTIONS(4514), - [anon_sym___attribute] = ACTIONS(4514), - [anon_sym_using] = ACTIONS(4514), - [anon_sym_COLON_COLON] = ACTIONS(4516), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4516), - [anon_sym___declspec] = ACTIONS(4514), - [anon_sym___based] = ACTIONS(4514), - [anon_sym___cdecl] = ACTIONS(4514), - [anon_sym___clrcall] = ACTIONS(4514), - [anon_sym___stdcall] = ACTIONS(4514), - [anon_sym___fastcall] = ACTIONS(4514), - [anon_sym___thiscall] = ACTIONS(4514), - [anon_sym___vectorcall] = ACTIONS(4514), - [anon_sym_LBRACE] = ACTIONS(4516), - [anon_sym_signed] = ACTIONS(4514), - [anon_sym_unsigned] = ACTIONS(4514), - [anon_sym_long] = ACTIONS(4514), - [anon_sym_short] = ACTIONS(4514), - [anon_sym_LBRACK] = ACTIONS(4514), - [anon_sym_static] = ACTIONS(4514), - [anon_sym_register] = ACTIONS(4514), - [anon_sym_inline] = ACTIONS(4514), - [anon_sym___inline] = ACTIONS(4514), - [anon_sym___inline__] = ACTIONS(4514), - [anon_sym___forceinline] = ACTIONS(4514), - [anon_sym_thread_local] = ACTIONS(4514), - [anon_sym___thread] = ACTIONS(4514), - [anon_sym_const] = ACTIONS(4514), - [anon_sym_constexpr] = ACTIONS(4514), - [anon_sym_volatile] = ACTIONS(4514), - [anon_sym_restrict] = ACTIONS(4514), - [anon_sym___restrict__] = ACTIONS(4514), - [anon_sym__Atomic] = ACTIONS(4514), - [anon_sym__Noreturn] = ACTIONS(4514), - [anon_sym_noreturn] = ACTIONS(4514), - [anon_sym__Nonnull] = ACTIONS(4514), - [anon_sym_mutable] = ACTIONS(4514), - [anon_sym_constinit] = ACTIONS(4514), - [anon_sym_consteval] = ACTIONS(4514), - [anon_sym_alignas] = ACTIONS(4514), - [anon_sym__Alignas] = ACTIONS(4514), - [sym_primitive_type] = ACTIONS(4514), - [anon_sym_enum] = ACTIONS(4514), - [anon_sym_class] = ACTIONS(4514), - [anon_sym_struct] = ACTIONS(4514), - [anon_sym_union] = ACTIONS(4514), - [anon_sym_if] = ACTIONS(4514), - [anon_sym_switch] = ACTIONS(4514), - [anon_sym_case] = ACTIONS(4514), - [anon_sym_default] = ACTIONS(4514), - [anon_sym_while] = ACTIONS(4514), - [anon_sym_do] = ACTIONS(4514), - [anon_sym_for] = ACTIONS(4514), - [anon_sym_return] = ACTIONS(4514), - [anon_sym_break] = ACTIONS(4514), - [anon_sym_continue] = ACTIONS(4514), - [anon_sym_goto] = ACTIONS(4514), - [anon_sym_not] = ACTIONS(4514), - [anon_sym_compl] = ACTIONS(4514), - [anon_sym_DASH_DASH] = ACTIONS(4516), - [anon_sym_PLUS_PLUS] = ACTIONS(4516), - [anon_sym_sizeof] = ACTIONS(4514), - [anon_sym___alignof__] = ACTIONS(4514), - [anon_sym___alignof] = ACTIONS(4514), - [anon_sym__alignof] = ACTIONS(4514), - [anon_sym_alignof] = ACTIONS(4514), - [anon_sym__Alignof] = ACTIONS(4514), - [anon_sym_offsetof] = ACTIONS(4514), - [anon_sym__Generic] = ACTIONS(4514), - [anon_sym_typename] = ACTIONS(4514), - [anon_sym_asm] = ACTIONS(4514), - [anon_sym___asm__] = ACTIONS(4514), - [anon_sym___asm] = ACTIONS(4514), - [sym_number_literal] = ACTIONS(4516), - [anon_sym_L_SQUOTE] = ACTIONS(4516), - [anon_sym_u_SQUOTE] = ACTIONS(4516), - [anon_sym_U_SQUOTE] = ACTIONS(4516), - [anon_sym_u8_SQUOTE] = ACTIONS(4516), - [anon_sym_SQUOTE] = ACTIONS(4516), - [anon_sym_L_DQUOTE] = ACTIONS(4516), - [anon_sym_u_DQUOTE] = ACTIONS(4516), - [anon_sym_U_DQUOTE] = ACTIONS(4516), - [anon_sym_u8_DQUOTE] = ACTIONS(4516), - [anon_sym_DQUOTE] = ACTIONS(4516), - [sym_true] = ACTIONS(4514), - [sym_false] = ACTIONS(4514), - [anon_sym_NULL] = ACTIONS(4514), - [anon_sym_nullptr] = ACTIONS(4514), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4514), - [anon_sym_decltype] = ACTIONS(4514), - [anon_sym_explicit] = ACTIONS(4514), - [anon_sym_export] = ACTIONS(4514), - [anon_sym_module] = ACTIONS(4514), - [anon_sym_import] = ACTIONS(4514), - [anon_sym_template] = ACTIONS(4514), - [anon_sym_operator] = ACTIONS(4514), - [anon_sym_try] = ACTIONS(4514), - [anon_sym_delete] = ACTIONS(4514), - [anon_sym_throw] = ACTIONS(4514), - [anon_sym_namespace] = ACTIONS(4514), - [anon_sym_static_assert] = ACTIONS(4514), - [anon_sym_concept] = ACTIONS(4514), - [anon_sym_co_return] = ACTIONS(4514), - [anon_sym_co_yield] = ACTIONS(4514), - [anon_sym_R_DQUOTE] = ACTIONS(4516), - [anon_sym_LR_DQUOTE] = ACTIONS(4516), - [anon_sym_uR_DQUOTE] = ACTIONS(4516), - [anon_sym_UR_DQUOTE] = ACTIONS(4516), - [anon_sym_u8R_DQUOTE] = ACTIONS(4516), - [anon_sym_co_await] = ACTIONS(4514), - [anon_sym_new] = ACTIONS(4514), - [anon_sym_requires] = ACTIONS(4514), - [anon_sym_CARET_CARET] = ACTIONS(4516), - [anon_sym_LBRACK_COLON] = ACTIONS(4516), - [sym_this] = ACTIONS(4514), + [STATE(976)] = { + [ts_builtin_sym_end] = ACTIONS(4237), + [sym_identifier] = ACTIONS(4235), + [aux_sym_preproc_include_token1] = ACTIONS(4235), + [aux_sym_preproc_def_token1] = ACTIONS(4235), + [aux_sym_preproc_if_token1] = ACTIONS(4235), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4235), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4235), + [sym_preproc_directive] = ACTIONS(4235), + [anon_sym_LPAREN2] = ACTIONS(4237), + [anon_sym_BANG] = ACTIONS(4237), + [anon_sym_TILDE] = ACTIONS(4237), + [anon_sym_DASH] = ACTIONS(4235), + [anon_sym_PLUS] = ACTIONS(4235), + [anon_sym_STAR] = ACTIONS(4237), + [anon_sym_AMP_AMP] = ACTIONS(4237), + [anon_sym_AMP] = ACTIONS(4235), + [anon_sym_SEMI] = ACTIONS(4237), + [anon_sym___extension__] = ACTIONS(4235), + [anon_sym_typedef] = ACTIONS(4235), + [anon_sym_virtual] = ACTIONS(4235), + [anon_sym_extern] = ACTIONS(4235), + [anon_sym___attribute__] = ACTIONS(4235), + [anon_sym___attribute] = ACTIONS(4235), + [anon_sym_using] = ACTIONS(4235), + [anon_sym_COLON_COLON] = ACTIONS(4237), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4237), + [anon_sym___declspec] = ACTIONS(4235), + [anon_sym___based] = ACTIONS(4235), + [anon_sym___cdecl] = ACTIONS(4235), + [anon_sym___clrcall] = ACTIONS(4235), + [anon_sym___stdcall] = ACTIONS(4235), + [anon_sym___fastcall] = ACTIONS(4235), + [anon_sym___thiscall] = ACTIONS(4235), + [anon_sym___vectorcall] = ACTIONS(4235), + [anon_sym_LBRACE] = ACTIONS(4237), + [anon_sym_signed] = ACTIONS(4235), + [anon_sym_unsigned] = ACTIONS(4235), + [anon_sym_long] = ACTIONS(4235), + [anon_sym_short] = ACTIONS(4235), + [anon_sym_LBRACK] = ACTIONS(4235), + [anon_sym_static] = ACTIONS(4235), + [anon_sym_register] = ACTIONS(4235), + [anon_sym_inline] = ACTIONS(4235), + [anon_sym___inline] = ACTIONS(4235), + [anon_sym___inline__] = ACTIONS(4235), + [anon_sym___forceinline] = ACTIONS(4235), + [anon_sym_thread_local] = ACTIONS(4235), + [anon_sym___thread] = ACTIONS(4235), + [anon_sym_const] = ACTIONS(4235), + [anon_sym_constexpr] = ACTIONS(4235), + [anon_sym_volatile] = ACTIONS(4235), + [anon_sym_restrict] = ACTIONS(4235), + [anon_sym___restrict__] = ACTIONS(4235), + [anon_sym__Atomic] = ACTIONS(4235), + [anon_sym__Noreturn] = ACTIONS(4235), + [anon_sym_noreturn] = ACTIONS(4235), + [anon_sym__Nonnull] = ACTIONS(4235), + [anon_sym_mutable] = ACTIONS(4235), + [anon_sym_constinit] = ACTIONS(4235), + [anon_sym_consteval] = ACTIONS(4235), + [anon_sym_alignas] = ACTIONS(4235), + [anon_sym__Alignas] = ACTIONS(4235), + [sym_primitive_type] = ACTIONS(4235), + [anon_sym_enum] = ACTIONS(4235), + [anon_sym_class] = ACTIONS(4235), + [anon_sym_struct] = ACTIONS(4235), + [anon_sym_union] = ACTIONS(4235), + [anon_sym_if] = ACTIONS(4235), + [anon_sym_switch] = ACTIONS(4235), + [anon_sym_case] = ACTIONS(4235), + [anon_sym_default] = ACTIONS(4235), + [anon_sym_while] = ACTIONS(4235), + [anon_sym_do] = ACTIONS(4235), + [anon_sym_for] = ACTIONS(4235), + [anon_sym_return] = ACTIONS(4235), + [anon_sym_break] = ACTIONS(4235), + [anon_sym_continue] = ACTIONS(4235), + [anon_sym_goto] = ACTIONS(4235), + [anon_sym_not] = ACTIONS(4235), + [anon_sym_compl] = ACTIONS(4235), + [anon_sym_DASH_DASH] = ACTIONS(4237), + [anon_sym_PLUS_PLUS] = ACTIONS(4237), + [anon_sym_sizeof] = ACTIONS(4235), + [anon_sym___alignof__] = ACTIONS(4235), + [anon_sym___alignof] = ACTIONS(4235), + [anon_sym__alignof] = ACTIONS(4235), + [anon_sym_alignof] = ACTIONS(4235), + [anon_sym__Alignof] = ACTIONS(4235), + [anon_sym_offsetof] = ACTIONS(4235), + [anon_sym__Generic] = ACTIONS(4235), + [anon_sym_typename] = ACTIONS(4235), + [anon_sym_asm] = ACTIONS(4235), + [anon_sym___asm__] = ACTIONS(4235), + [anon_sym___asm] = ACTIONS(4235), + [sym_number_literal] = ACTIONS(4237), + [anon_sym_L_SQUOTE] = ACTIONS(4237), + [anon_sym_u_SQUOTE] = ACTIONS(4237), + [anon_sym_U_SQUOTE] = ACTIONS(4237), + [anon_sym_u8_SQUOTE] = ACTIONS(4237), + [anon_sym_SQUOTE] = ACTIONS(4237), + [anon_sym_L_DQUOTE] = ACTIONS(4237), + [anon_sym_u_DQUOTE] = ACTIONS(4237), + [anon_sym_U_DQUOTE] = ACTIONS(4237), + [anon_sym_u8_DQUOTE] = ACTIONS(4237), + [anon_sym_DQUOTE] = ACTIONS(4237), + [sym_true] = ACTIONS(4235), + [sym_false] = ACTIONS(4235), + [anon_sym_NULL] = ACTIONS(4235), + [anon_sym_nullptr] = ACTIONS(4235), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4235), + [anon_sym_decltype] = ACTIONS(4235), + [anon_sym_explicit] = ACTIONS(4235), + [anon_sym_export] = ACTIONS(4235), + [anon_sym_module] = ACTIONS(4235), + [anon_sym_import] = ACTIONS(4235), + [anon_sym_template] = ACTIONS(4235), + [anon_sym_operator] = ACTIONS(4235), + [anon_sym_try] = ACTIONS(4235), + [anon_sym_delete] = ACTIONS(4235), + [anon_sym_throw] = ACTIONS(4235), + [anon_sym_namespace] = ACTIONS(4235), + [anon_sym_static_assert] = ACTIONS(4235), + [anon_sym_concept] = ACTIONS(4235), + [anon_sym_co_return] = ACTIONS(4235), + [anon_sym_co_yield] = ACTIONS(4235), + [anon_sym_R_DQUOTE] = ACTIONS(4237), + [anon_sym_LR_DQUOTE] = ACTIONS(4237), + [anon_sym_uR_DQUOTE] = ACTIONS(4237), + [anon_sym_UR_DQUOTE] = ACTIONS(4237), + [anon_sym_u8R_DQUOTE] = ACTIONS(4237), + [anon_sym_co_await] = ACTIONS(4235), + [anon_sym_new] = ACTIONS(4235), + [anon_sym_requires] = ACTIONS(4235), + [anon_sym_CARET_CARET] = ACTIONS(4237), + [anon_sym_LBRACK_COLON] = ACTIONS(4237), + [sym_this] = ACTIONS(4235), }, - [STATE(960)] = { - [sym_preproc_def] = STATE(960), - [sym_preproc_function_def] = STATE(960), - [sym_preproc_call] = STATE(960), - [sym_preproc_if_in_field_declaration_list] = STATE(960), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(960), - [sym_type_definition] = STATE(960), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8099), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8689), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(960), - [sym_field_declaration] = STATE(960), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2469), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(960), - [sym_operator_cast] = STATE(9167), - [sym_inline_method_definition] = STATE(960), - [sym__constructor_specifiers] = STATE(2469), - [sym_operator_cast_definition] = STATE(960), - [sym_operator_cast_declaration] = STATE(960), - [sym_constructor_or_destructor_definition] = STATE(960), - [sym_constructor_or_destructor_declaration] = STATE(960), - [sym_friend_declaration] = STATE(960), - [sym_access_specifier] = STATE(10982), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(960), - [sym_alias_declaration] = STATE(960), - [sym_static_assert_declaration] = STATE(960), - [sym_consteval_block_declaration] = STATE(960), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9167), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(960), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9503), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2469), - [sym_identifier] = ACTIONS(4542), - [aux_sym_preproc_def_token1] = ACTIONS(4841), - [aux_sym_preproc_if_token1] = ACTIONS(4844), - [aux_sym_preproc_if_token2] = ACTIONS(4551), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4847), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4847), - [sym_preproc_directive] = ACTIONS(4850), - [anon_sym_LPAREN2] = ACTIONS(4559), - [anon_sym_TILDE] = ACTIONS(4562), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_AMP_AMP] = ACTIONS(4568), - [anon_sym_AMP] = ACTIONS(4571), - [anon_sym_SEMI] = ACTIONS(4853), - [anon_sym___extension__] = ACTIONS(4856), - [anon_sym_typedef] = ACTIONS(4859), - [anon_sym_virtual] = ACTIONS(4583), - [anon_sym_extern] = ACTIONS(4586), - [anon_sym___attribute__] = ACTIONS(4589), - [anon_sym___attribute] = ACTIONS(4589), - [anon_sym_using] = ACTIONS(4862), - [anon_sym_COLON_COLON] = ACTIONS(4595), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4598), - [anon_sym___declspec] = ACTIONS(4601), - [anon_sym___based] = ACTIONS(4604), - [anon_sym_signed] = ACTIONS(4607), - [anon_sym_unsigned] = ACTIONS(4607), - [anon_sym_long] = ACTIONS(4607), - [anon_sym_short] = ACTIONS(4607), - [anon_sym_LBRACK] = ACTIONS(4610), - [anon_sym_static] = ACTIONS(4586), - [anon_sym_register] = ACTIONS(4586), - [anon_sym_inline] = ACTIONS(4586), - [anon_sym___inline] = ACTIONS(4586), - [anon_sym___inline__] = ACTIONS(4586), - [anon_sym___forceinline] = ACTIONS(4586), - [anon_sym_thread_local] = ACTIONS(4586), - [anon_sym___thread] = ACTIONS(4586), - [anon_sym_const] = ACTIONS(4613), - [anon_sym_constexpr] = ACTIONS(4865), - [anon_sym_volatile] = ACTIONS(4613), - [anon_sym_restrict] = ACTIONS(4613), - [anon_sym___restrict__] = ACTIONS(4613), - [anon_sym__Atomic] = ACTIONS(4613), - [anon_sym__Noreturn] = ACTIONS(4613), - [anon_sym_noreturn] = ACTIONS(4613), - [anon_sym__Nonnull] = ACTIONS(4613), - [anon_sym_mutable] = ACTIONS(4613), - [anon_sym_constinit] = ACTIONS(4613), - [anon_sym_consteval] = ACTIONS(4868), - [anon_sym_alignas] = ACTIONS(4622), - [anon_sym__Alignas] = ACTIONS(4622), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4628), - [anon_sym_class] = ACTIONS(4631), - [anon_sym_struct] = ACTIONS(4634), - [anon_sym_union] = ACTIONS(4637), - [anon_sym_typename] = ACTIONS(4640), + [STATE(977)] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4870), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3458), + [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(4702), + [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(4704), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4643), - [anon_sym_decltype] = ACTIONS(4646), - [anon_sym_explicit] = ACTIONS(4649), - [anon_sym_private] = ACTIONS(4652), - [anon_sym_template] = ACTIONS(4871), - [anon_sym_operator] = ACTIONS(4658), - [anon_sym_friend] = ACTIONS(4874), - [anon_sym_public] = ACTIONS(4652), - [anon_sym_protected] = ACTIONS(4652), - [anon_sym_static_assert] = ACTIONS(4877), - [anon_sym_LBRACK_COLON] = ACTIONS(4667), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(961)] = { - [ts_builtin_sym_end] = ACTIONS(4486), - [sym_identifier] = ACTIONS(4484), - [aux_sym_preproc_include_token1] = ACTIONS(4484), - [aux_sym_preproc_def_token1] = ACTIONS(4484), - [aux_sym_preproc_if_token1] = ACTIONS(4484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4484), - [sym_preproc_directive] = ACTIONS(4484), - [anon_sym_LPAREN2] = ACTIONS(4486), - [anon_sym_BANG] = ACTIONS(4486), - [anon_sym_TILDE] = ACTIONS(4486), - [anon_sym_DASH] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4484), - [anon_sym_STAR] = ACTIONS(4486), - [anon_sym_AMP_AMP] = ACTIONS(4486), - [anon_sym_AMP] = ACTIONS(4484), - [anon_sym_SEMI] = ACTIONS(4486), - [anon_sym___extension__] = ACTIONS(4484), - [anon_sym_typedef] = ACTIONS(4484), - [anon_sym_virtual] = ACTIONS(4484), - [anon_sym_extern] = ACTIONS(4484), - [anon_sym___attribute__] = ACTIONS(4484), - [anon_sym___attribute] = ACTIONS(4484), - [anon_sym_using] = ACTIONS(4484), - [anon_sym_COLON_COLON] = ACTIONS(4486), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4486), - [anon_sym___declspec] = ACTIONS(4484), - [anon_sym___based] = ACTIONS(4484), - [anon_sym___cdecl] = ACTIONS(4484), - [anon_sym___clrcall] = ACTIONS(4484), - [anon_sym___stdcall] = ACTIONS(4484), - [anon_sym___fastcall] = ACTIONS(4484), - [anon_sym___thiscall] = ACTIONS(4484), - [anon_sym___vectorcall] = ACTIONS(4484), - [anon_sym_LBRACE] = ACTIONS(4486), - [anon_sym_signed] = ACTIONS(4484), - [anon_sym_unsigned] = ACTIONS(4484), - [anon_sym_long] = ACTIONS(4484), - [anon_sym_short] = ACTIONS(4484), - [anon_sym_LBRACK] = ACTIONS(4484), - [anon_sym_static] = ACTIONS(4484), - [anon_sym_register] = ACTIONS(4484), - [anon_sym_inline] = ACTIONS(4484), - [anon_sym___inline] = ACTIONS(4484), - [anon_sym___inline__] = ACTIONS(4484), - [anon_sym___forceinline] = ACTIONS(4484), - [anon_sym_thread_local] = ACTIONS(4484), - [anon_sym___thread] = ACTIONS(4484), - [anon_sym_const] = ACTIONS(4484), - [anon_sym_constexpr] = ACTIONS(4484), - [anon_sym_volatile] = ACTIONS(4484), - [anon_sym_restrict] = ACTIONS(4484), - [anon_sym___restrict__] = ACTIONS(4484), - [anon_sym__Atomic] = ACTIONS(4484), - [anon_sym__Noreturn] = ACTIONS(4484), - [anon_sym_noreturn] = ACTIONS(4484), - [anon_sym__Nonnull] = ACTIONS(4484), - [anon_sym_mutable] = ACTIONS(4484), - [anon_sym_constinit] = ACTIONS(4484), - [anon_sym_consteval] = ACTIONS(4484), - [anon_sym_alignas] = ACTIONS(4484), - [anon_sym__Alignas] = ACTIONS(4484), - [sym_primitive_type] = ACTIONS(4484), - [anon_sym_enum] = ACTIONS(4484), - [anon_sym_class] = ACTIONS(4484), - [anon_sym_struct] = ACTIONS(4484), - [anon_sym_union] = ACTIONS(4484), - [anon_sym_if] = ACTIONS(4484), - [anon_sym_switch] = ACTIONS(4484), - [anon_sym_case] = ACTIONS(4484), - [anon_sym_default] = ACTIONS(4484), - [anon_sym_while] = ACTIONS(4484), - [anon_sym_do] = ACTIONS(4484), - [anon_sym_for] = ACTIONS(4484), - [anon_sym_return] = ACTIONS(4484), - [anon_sym_break] = ACTIONS(4484), - [anon_sym_continue] = ACTIONS(4484), - [anon_sym_goto] = ACTIONS(4484), - [anon_sym_not] = ACTIONS(4484), - [anon_sym_compl] = ACTIONS(4484), - [anon_sym_DASH_DASH] = ACTIONS(4486), - [anon_sym_PLUS_PLUS] = ACTIONS(4486), - [anon_sym_sizeof] = ACTIONS(4484), - [anon_sym___alignof__] = ACTIONS(4484), - [anon_sym___alignof] = ACTIONS(4484), - [anon_sym__alignof] = ACTIONS(4484), - [anon_sym_alignof] = ACTIONS(4484), - [anon_sym__Alignof] = ACTIONS(4484), - [anon_sym_offsetof] = ACTIONS(4484), - [anon_sym__Generic] = ACTIONS(4484), - [anon_sym_typename] = ACTIONS(4484), - [anon_sym_asm] = ACTIONS(4484), - [anon_sym___asm__] = ACTIONS(4484), - [anon_sym___asm] = ACTIONS(4484), - [sym_number_literal] = ACTIONS(4486), - [anon_sym_L_SQUOTE] = ACTIONS(4486), - [anon_sym_u_SQUOTE] = ACTIONS(4486), - [anon_sym_U_SQUOTE] = ACTIONS(4486), - [anon_sym_u8_SQUOTE] = ACTIONS(4486), - [anon_sym_SQUOTE] = ACTIONS(4486), - [anon_sym_L_DQUOTE] = ACTIONS(4486), - [anon_sym_u_DQUOTE] = ACTIONS(4486), - [anon_sym_U_DQUOTE] = ACTIONS(4486), - [anon_sym_u8_DQUOTE] = ACTIONS(4486), - [anon_sym_DQUOTE] = ACTIONS(4486), - [sym_true] = ACTIONS(4484), - [sym_false] = ACTIONS(4484), - [anon_sym_NULL] = ACTIONS(4484), - [anon_sym_nullptr] = ACTIONS(4484), + [STATE(978)] = { + [ts_builtin_sym_end] = ACTIONS(4241), + [sym_identifier] = ACTIONS(4239), + [aux_sym_preproc_include_token1] = ACTIONS(4239), + [aux_sym_preproc_def_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token1] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4239), + [sym_preproc_directive] = ACTIONS(4239), + [anon_sym_LPAREN2] = ACTIONS(4241), + [anon_sym_BANG] = ACTIONS(4241), + [anon_sym_TILDE] = ACTIONS(4241), + [anon_sym_DASH] = ACTIONS(4239), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym___extension__] = ACTIONS(4239), + [anon_sym_typedef] = ACTIONS(4239), + [anon_sym_virtual] = ACTIONS(4239), + [anon_sym_extern] = ACTIONS(4239), + [anon_sym___attribute__] = ACTIONS(4239), + [anon_sym___attribute] = ACTIONS(4239), + [anon_sym_using] = ACTIONS(4239), + [anon_sym_COLON_COLON] = ACTIONS(4241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4241), + [anon_sym___declspec] = ACTIONS(4239), + [anon_sym___based] = ACTIONS(4239), + [anon_sym___cdecl] = ACTIONS(4239), + [anon_sym___clrcall] = ACTIONS(4239), + [anon_sym___stdcall] = ACTIONS(4239), + [anon_sym___fastcall] = ACTIONS(4239), + [anon_sym___thiscall] = ACTIONS(4239), + [anon_sym___vectorcall] = ACTIONS(4239), + [anon_sym_LBRACE] = ACTIONS(4241), + [anon_sym_signed] = ACTIONS(4239), + [anon_sym_unsigned] = ACTIONS(4239), + [anon_sym_long] = ACTIONS(4239), + [anon_sym_short] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_static] = ACTIONS(4239), + [anon_sym_register] = ACTIONS(4239), + [anon_sym_inline] = ACTIONS(4239), + [anon_sym___inline] = ACTIONS(4239), + [anon_sym___inline__] = ACTIONS(4239), + [anon_sym___forceinline] = ACTIONS(4239), + [anon_sym_thread_local] = ACTIONS(4239), + [anon_sym___thread] = ACTIONS(4239), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_constexpr] = ACTIONS(4239), + [anon_sym_volatile] = ACTIONS(4239), + [anon_sym_restrict] = ACTIONS(4239), + [anon_sym___restrict__] = ACTIONS(4239), + [anon_sym__Atomic] = ACTIONS(4239), + [anon_sym__Noreturn] = ACTIONS(4239), + [anon_sym_noreturn] = ACTIONS(4239), + [anon_sym__Nonnull] = ACTIONS(4239), + [anon_sym_mutable] = ACTIONS(4239), + [anon_sym_constinit] = ACTIONS(4239), + [anon_sym_consteval] = ACTIONS(4239), + [anon_sym_alignas] = ACTIONS(4239), + [anon_sym__Alignas] = ACTIONS(4239), + [sym_primitive_type] = ACTIONS(4239), + [anon_sym_enum] = ACTIONS(4239), + [anon_sym_class] = ACTIONS(4239), + [anon_sym_struct] = ACTIONS(4239), + [anon_sym_union] = ACTIONS(4239), + [anon_sym_if] = ACTIONS(4239), + [anon_sym_switch] = ACTIONS(4239), + [anon_sym_case] = ACTIONS(4239), + [anon_sym_default] = ACTIONS(4239), + [anon_sym_while] = ACTIONS(4239), + [anon_sym_do] = ACTIONS(4239), + [anon_sym_for] = ACTIONS(4239), + [anon_sym_return] = ACTIONS(4239), + [anon_sym_break] = ACTIONS(4239), + [anon_sym_continue] = ACTIONS(4239), + [anon_sym_goto] = ACTIONS(4239), + [anon_sym_not] = ACTIONS(4239), + [anon_sym_compl] = ACTIONS(4239), + [anon_sym_DASH_DASH] = ACTIONS(4241), + [anon_sym_PLUS_PLUS] = ACTIONS(4241), + [anon_sym_sizeof] = ACTIONS(4239), + [anon_sym___alignof__] = ACTIONS(4239), + [anon_sym___alignof] = ACTIONS(4239), + [anon_sym__alignof] = ACTIONS(4239), + [anon_sym_alignof] = ACTIONS(4239), + [anon_sym__Alignof] = ACTIONS(4239), + [anon_sym_offsetof] = ACTIONS(4239), + [anon_sym__Generic] = ACTIONS(4239), + [anon_sym_typename] = ACTIONS(4239), + [anon_sym_asm] = ACTIONS(4239), + [anon_sym___asm__] = ACTIONS(4239), + [anon_sym___asm] = ACTIONS(4239), + [sym_number_literal] = ACTIONS(4241), + [anon_sym_L_SQUOTE] = ACTIONS(4241), + [anon_sym_u_SQUOTE] = ACTIONS(4241), + [anon_sym_U_SQUOTE] = ACTIONS(4241), + [anon_sym_u8_SQUOTE] = ACTIONS(4241), + [anon_sym_SQUOTE] = ACTIONS(4241), + [anon_sym_L_DQUOTE] = ACTIONS(4241), + [anon_sym_u_DQUOTE] = ACTIONS(4241), + [anon_sym_U_DQUOTE] = ACTIONS(4241), + [anon_sym_u8_DQUOTE] = ACTIONS(4241), + [anon_sym_DQUOTE] = ACTIONS(4241), + [sym_true] = ACTIONS(4239), + [sym_false] = ACTIONS(4239), + [anon_sym_NULL] = ACTIONS(4239), + [anon_sym_nullptr] = ACTIONS(4239), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4239), + [anon_sym_decltype] = ACTIONS(4239), + [anon_sym_explicit] = ACTIONS(4239), + [anon_sym_export] = ACTIONS(4239), + [anon_sym_module] = ACTIONS(4239), + [anon_sym_import] = ACTIONS(4239), + [anon_sym_template] = ACTIONS(4239), + [anon_sym_operator] = ACTIONS(4239), + [anon_sym_try] = ACTIONS(4239), + [anon_sym_delete] = ACTIONS(4239), + [anon_sym_throw] = ACTIONS(4239), + [anon_sym_namespace] = ACTIONS(4239), + [anon_sym_static_assert] = ACTIONS(4239), + [anon_sym_concept] = ACTIONS(4239), + [anon_sym_co_return] = ACTIONS(4239), + [anon_sym_co_yield] = ACTIONS(4239), + [anon_sym_R_DQUOTE] = ACTIONS(4241), + [anon_sym_LR_DQUOTE] = ACTIONS(4241), + [anon_sym_uR_DQUOTE] = ACTIONS(4241), + [anon_sym_UR_DQUOTE] = ACTIONS(4241), + [anon_sym_u8R_DQUOTE] = ACTIONS(4241), + [anon_sym_co_await] = ACTIONS(4239), + [anon_sym_new] = ACTIONS(4239), + [anon_sym_requires] = ACTIONS(4239), + [anon_sym_CARET_CARET] = ACTIONS(4241), + [anon_sym_LBRACK_COLON] = ACTIONS(4241), + [sym_this] = ACTIONS(4239), + }, + [STATE(979)] = { + [ts_builtin_sym_end] = ACTIONS(4221), + [sym_identifier] = ACTIONS(4219), + [aux_sym_preproc_include_token1] = ACTIONS(4219), + [aux_sym_preproc_def_token1] = ACTIONS(4219), + [aux_sym_preproc_if_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4219), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4219), + [sym_preproc_directive] = ACTIONS(4219), + [anon_sym_LPAREN2] = ACTIONS(4221), + [anon_sym_BANG] = ACTIONS(4221), + [anon_sym_TILDE] = ACTIONS(4221), + [anon_sym_DASH] = ACTIONS(4219), + [anon_sym_PLUS] = ACTIONS(4219), + [anon_sym_STAR] = ACTIONS(4221), + [anon_sym_AMP_AMP] = ACTIONS(4221), + [anon_sym_AMP] = ACTIONS(4219), + [anon_sym_SEMI] = ACTIONS(4221), + [anon_sym___extension__] = ACTIONS(4219), + [anon_sym_typedef] = ACTIONS(4219), + [anon_sym_virtual] = ACTIONS(4219), + [anon_sym_extern] = ACTIONS(4219), + [anon_sym___attribute__] = ACTIONS(4219), + [anon_sym___attribute] = ACTIONS(4219), + [anon_sym_using] = ACTIONS(4219), + [anon_sym_COLON_COLON] = ACTIONS(4221), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4221), + [anon_sym___declspec] = ACTIONS(4219), + [anon_sym___based] = ACTIONS(4219), + [anon_sym___cdecl] = ACTIONS(4219), + [anon_sym___clrcall] = ACTIONS(4219), + [anon_sym___stdcall] = ACTIONS(4219), + [anon_sym___fastcall] = ACTIONS(4219), + [anon_sym___thiscall] = ACTIONS(4219), + [anon_sym___vectorcall] = ACTIONS(4219), + [anon_sym_LBRACE] = ACTIONS(4221), + [anon_sym_signed] = ACTIONS(4219), + [anon_sym_unsigned] = ACTIONS(4219), + [anon_sym_long] = ACTIONS(4219), + [anon_sym_short] = ACTIONS(4219), + [anon_sym_LBRACK] = ACTIONS(4219), + [anon_sym_static] = ACTIONS(4219), + [anon_sym_register] = ACTIONS(4219), + [anon_sym_inline] = ACTIONS(4219), + [anon_sym___inline] = ACTIONS(4219), + [anon_sym___inline__] = ACTIONS(4219), + [anon_sym___forceinline] = ACTIONS(4219), + [anon_sym_thread_local] = ACTIONS(4219), + [anon_sym___thread] = ACTIONS(4219), + [anon_sym_const] = ACTIONS(4219), + [anon_sym_constexpr] = ACTIONS(4219), + [anon_sym_volatile] = ACTIONS(4219), + [anon_sym_restrict] = ACTIONS(4219), + [anon_sym___restrict__] = ACTIONS(4219), + [anon_sym__Atomic] = ACTIONS(4219), + [anon_sym__Noreturn] = ACTIONS(4219), + [anon_sym_noreturn] = ACTIONS(4219), + [anon_sym__Nonnull] = ACTIONS(4219), + [anon_sym_mutable] = ACTIONS(4219), + [anon_sym_constinit] = ACTIONS(4219), + [anon_sym_consteval] = ACTIONS(4219), + [anon_sym_alignas] = ACTIONS(4219), + [anon_sym__Alignas] = ACTIONS(4219), + [sym_primitive_type] = ACTIONS(4219), + [anon_sym_enum] = ACTIONS(4219), + [anon_sym_class] = ACTIONS(4219), + [anon_sym_struct] = ACTIONS(4219), + [anon_sym_union] = ACTIONS(4219), + [anon_sym_if] = ACTIONS(4219), + [anon_sym_switch] = ACTIONS(4219), + [anon_sym_case] = ACTIONS(4219), + [anon_sym_default] = ACTIONS(4219), + [anon_sym_while] = ACTIONS(4219), + [anon_sym_do] = ACTIONS(4219), + [anon_sym_for] = ACTIONS(4219), + [anon_sym_return] = ACTIONS(4219), + [anon_sym_break] = ACTIONS(4219), + [anon_sym_continue] = ACTIONS(4219), + [anon_sym_goto] = ACTIONS(4219), + [anon_sym_not] = ACTIONS(4219), + [anon_sym_compl] = ACTIONS(4219), + [anon_sym_DASH_DASH] = ACTIONS(4221), + [anon_sym_PLUS_PLUS] = ACTIONS(4221), + [anon_sym_sizeof] = ACTIONS(4219), + [anon_sym___alignof__] = ACTIONS(4219), + [anon_sym___alignof] = ACTIONS(4219), + [anon_sym__alignof] = ACTIONS(4219), + [anon_sym_alignof] = ACTIONS(4219), + [anon_sym__Alignof] = ACTIONS(4219), + [anon_sym_offsetof] = ACTIONS(4219), + [anon_sym__Generic] = ACTIONS(4219), + [anon_sym_typename] = ACTIONS(4219), + [anon_sym_asm] = ACTIONS(4219), + [anon_sym___asm__] = ACTIONS(4219), + [anon_sym___asm] = ACTIONS(4219), + [sym_number_literal] = ACTIONS(4221), + [anon_sym_L_SQUOTE] = ACTIONS(4221), + [anon_sym_u_SQUOTE] = ACTIONS(4221), + [anon_sym_U_SQUOTE] = ACTIONS(4221), + [anon_sym_u8_SQUOTE] = ACTIONS(4221), + [anon_sym_SQUOTE] = ACTIONS(4221), + [anon_sym_L_DQUOTE] = ACTIONS(4221), + [anon_sym_u_DQUOTE] = ACTIONS(4221), + [anon_sym_U_DQUOTE] = ACTIONS(4221), + [anon_sym_u8_DQUOTE] = ACTIONS(4221), + [anon_sym_DQUOTE] = ACTIONS(4221), + [sym_true] = ACTIONS(4219), + [sym_false] = ACTIONS(4219), + [anon_sym_NULL] = ACTIONS(4219), + [anon_sym_nullptr] = ACTIONS(4219), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4219), + [anon_sym_decltype] = ACTIONS(4219), + [anon_sym_explicit] = ACTIONS(4219), + [anon_sym_export] = ACTIONS(4219), + [anon_sym_module] = ACTIONS(4219), + [anon_sym_import] = ACTIONS(4219), + [anon_sym_template] = ACTIONS(4219), + [anon_sym_operator] = ACTIONS(4219), + [anon_sym_try] = ACTIONS(4219), + [anon_sym_delete] = ACTIONS(4219), + [anon_sym_throw] = ACTIONS(4219), + [anon_sym_namespace] = ACTIONS(4219), + [anon_sym_static_assert] = ACTIONS(4219), + [anon_sym_concept] = ACTIONS(4219), + [anon_sym_co_return] = ACTIONS(4219), + [anon_sym_co_yield] = ACTIONS(4219), + [anon_sym_R_DQUOTE] = ACTIONS(4221), + [anon_sym_LR_DQUOTE] = ACTIONS(4221), + [anon_sym_uR_DQUOTE] = ACTIONS(4221), + [anon_sym_UR_DQUOTE] = ACTIONS(4221), + [anon_sym_u8R_DQUOTE] = ACTIONS(4221), + [anon_sym_co_await] = ACTIONS(4219), + [anon_sym_new] = ACTIONS(4219), + [anon_sym_requires] = ACTIONS(4219), + [anon_sym_CARET_CARET] = ACTIONS(4221), + [anon_sym_LBRACK_COLON] = ACTIONS(4221), + [sym_this] = ACTIONS(4219), + }, + [STATE(980)] = { + [sym_preproc_def] = STATE(981), + [sym_preproc_function_def] = STATE(981), + [sym_preproc_call] = STATE(981), + [sym_preproc_if_in_field_declaration_list] = STATE(981), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(981), + [sym_type_definition] = STATE(981), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(981), + [sym_field_declaration] = STATE(981), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(981), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(981), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(981), + [sym_operator_cast_declaration] = STATE(981), + [sym_constructor_or_destructor_definition] = STATE(981), + [sym_constructor_or_destructor_declaration] = STATE(981), + [sym_friend_declaration] = STATE(981), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(981), + [sym_alias_declaration] = STATE(981), + [sym_static_assert_declaration] = STATE(981), + [sym_consteval_block_declaration] = STATE(981), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(981), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4874), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3458), + [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(4702), + [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(4704), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4484), - [anon_sym_decltype] = ACTIONS(4484), - [anon_sym_explicit] = ACTIONS(4484), - [anon_sym_export] = ACTIONS(4484), - [anon_sym_module] = ACTIONS(4484), - [anon_sym_import] = ACTIONS(4484), - [anon_sym_template] = ACTIONS(4484), - [anon_sym_operator] = ACTIONS(4484), - [anon_sym_try] = ACTIONS(4484), - [anon_sym_delete] = ACTIONS(4484), - [anon_sym_throw] = ACTIONS(4484), - [anon_sym_namespace] = ACTIONS(4484), - [anon_sym_static_assert] = ACTIONS(4484), - [anon_sym_concept] = ACTIONS(4484), - [anon_sym_co_return] = ACTIONS(4484), - [anon_sym_co_yield] = ACTIONS(4484), - [anon_sym_R_DQUOTE] = ACTIONS(4486), - [anon_sym_LR_DQUOTE] = ACTIONS(4486), - [anon_sym_uR_DQUOTE] = ACTIONS(4486), - [anon_sym_UR_DQUOTE] = ACTIONS(4486), - [anon_sym_u8R_DQUOTE] = ACTIONS(4486), - [anon_sym_co_await] = ACTIONS(4484), - [anon_sym_new] = ACTIONS(4484), - [anon_sym_requires] = ACTIONS(4484), - [anon_sym_CARET_CARET] = ACTIONS(4486), - [anon_sym_LBRACK_COLON] = ACTIONS(4486), - [sym_this] = ACTIONS(4484), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(962)] = { - [ts_builtin_sym_end] = ACTIONS(4490), - [sym_identifier] = ACTIONS(4488), - [aux_sym_preproc_include_token1] = ACTIONS(4488), - [aux_sym_preproc_def_token1] = ACTIONS(4488), - [aux_sym_preproc_if_token1] = ACTIONS(4488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4488), - [sym_preproc_directive] = ACTIONS(4488), - [anon_sym_LPAREN2] = ACTIONS(4490), - [anon_sym_BANG] = ACTIONS(4490), - [anon_sym_TILDE] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4488), - [anon_sym_PLUS] = ACTIONS(4488), - [anon_sym_STAR] = ACTIONS(4490), - [anon_sym_AMP_AMP] = ACTIONS(4490), - [anon_sym_AMP] = ACTIONS(4488), - [anon_sym_SEMI] = ACTIONS(4490), - [anon_sym___extension__] = ACTIONS(4488), - [anon_sym_typedef] = ACTIONS(4488), - [anon_sym_virtual] = ACTIONS(4488), - [anon_sym_extern] = ACTIONS(4488), - [anon_sym___attribute__] = ACTIONS(4488), - [anon_sym___attribute] = ACTIONS(4488), - [anon_sym_using] = ACTIONS(4488), - [anon_sym_COLON_COLON] = ACTIONS(4490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4490), - [anon_sym___declspec] = ACTIONS(4488), - [anon_sym___based] = ACTIONS(4488), - [anon_sym___cdecl] = ACTIONS(4488), - [anon_sym___clrcall] = ACTIONS(4488), - [anon_sym___stdcall] = ACTIONS(4488), - [anon_sym___fastcall] = ACTIONS(4488), - [anon_sym___thiscall] = ACTIONS(4488), - [anon_sym___vectorcall] = ACTIONS(4488), - [anon_sym_LBRACE] = ACTIONS(4490), - [anon_sym_signed] = ACTIONS(4488), - [anon_sym_unsigned] = ACTIONS(4488), - [anon_sym_long] = ACTIONS(4488), - [anon_sym_short] = ACTIONS(4488), - [anon_sym_LBRACK] = ACTIONS(4488), - [anon_sym_static] = ACTIONS(4488), - [anon_sym_register] = ACTIONS(4488), - [anon_sym_inline] = ACTIONS(4488), - [anon_sym___inline] = ACTIONS(4488), - [anon_sym___inline__] = ACTIONS(4488), - [anon_sym___forceinline] = ACTIONS(4488), - [anon_sym_thread_local] = ACTIONS(4488), - [anon_sym___thread] = ACTIONS(4488), - [anon_sym_const] = ACTIONS(4488), - [anon_sym_constexpr] = ACTIONS(4488), - [anon_sym_volatile] = ACTIONS(4488), - [anon_sym_restrict] = ACTIONS(4488), - [anon_sym___restrict__] = ACTIONS(4488), - [anon_sym__Atomic] = ACTIONS(4488), - [anon_sym__Noreturn] = ACTIONS(4488), - [anon_sym_noreturn] = ACTIONS(4488), - [anon_sym__Nonnull] = ACTIONS(4488), - [anon_sym_mutable] = ACTIONS(4488), - [anon_sym_constinit] = ACTIONS(4488), - [anon_sym_consteval] = ACTIONS(4488), - [anon_sym_alignas] = ACTIONS(4488), - [anon_sym__Alignas] = ACTIONS(4488), - [sym_primitive_type] = ACTIONS(4488), - [anon_sym_enum] = ACTIONS(4488), - [anon_sym_class] = ACTIONS(4488), - [anon_sym_struct] = ACTIONS(4488), - [anon_sym_union] = ACTIONS(4488), - [anon_sym_if] = ACTIONS(4488), - [anon_sym_switch] = ACTIONS(4488), - [anon_sym_case] = ACTIONS(4488), - [anon_sym_default] = ACTIONS(4488), - [anon_sym_while] = ACTIONS(4488), - [anon_sym_do] = ACTIONS(4488), - [anon_sym_for] = ACTIONS(4488), - [anon_sym_return] = ACTIONS(4488), - [anon_sym_break] = ACTIONS(4488), - [anon_sym_continue] = ACTIONS(4488), - [anon_sym_goto] = ACTIONS(4488), - [anon_sym_not] = ACTIONS(4488), - [anon_sym_compl] = ACTIONS(4488), - [anon_sym_DASH_DASH] = ACTIONS(4490), - [anon_sym_PLUS_PLUS] = ACTIONS(4490), - [anon_sym_sizeof] = ACTIONS(4488), - [anon_sym___alignof__] = ACTIONS(4488), - [anon_sym___alignof] = ACTIONS(4488), - [anon_sym__alignof] = ACTIONS(4488), - [anon_sym_alignof] = ACTIONS(4488), - [anon_sym__Alignof] = ACTIONS(4488), - [anon_sym_offsetof] = ACTIONS(4488), - [anon_sym__Generic] = ACTIONS(4488), - [anon_sym_typename] = ACTIONS(4488), - [anon_sym_asm] = ACTIONS(4488), - [anon_sym___asm__] = ACTIONS(4488), - [anon_sym___asm] = ACTIONS(4488), - [sym_number_literal] = ACTIONS(4490), - [anon_sym_L_SQUOTE] = ACTIONS(4490), - [anon_sym_u_SQUOTE] = ACTIONS(4490), - [anon_sym_U_SQUOTE] = ACTIONS(4490), - [anon_sym_u8_SQUOTE] = ACTIONS(4490), - [anon_sym_SQUOTE] = ACTIONS(4490), - [anon_sym_L_DQUOTE] = ACTIONS(4490), - [anon_sym_u_DQUOTE] = ACTIONS(4490), - [anon_sym_U_DQUOTE] = ACTIONS(4490), - [anon_sym_u8_DQUOTE] = ACTIONS(4490), - [anon_sym_DQUOTE] = ACTIONS(4490), - [sym_true] = ACTIONS(4488), - [sym_false] = ACTIONS(4488), - [anon_sym_NULL] = ACTIONS(4488), - [anon_sym_nullptr] = ACTIONS(4488), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4488), - [anon_sym_decltype] = ACTIONS(4488), - [anon_sym_explicit] = ACTIONS(4488), - [anon_sym_export] = ACTIONS(4488), - [anon_sym_module] = ACTIONS(4488), - [anon_sym_import] = ACTIONS(4488), - [anon_sym_template] = ACTIONS(4488), - [anon_sym_operator] = ACTIONS(4488), - [anon_sym_try] = ACTIONS(4488), - [anon_sym_delete] = ACTIONS(4488), - [anon_sym_throw] = ACTIONS(4488), - [anon_sym_namespace] = ACTIONS(4488), - [anon_sym_static_assert] = ACTIONS(4488), - [anon_sym_concept] = ACTIONS(4488), - [anon_sym_co_return] = ACTIONS(4488), - [anon_sym_co_yield] = ACTIONS(4488), - [anon_sym_R_DQUOTE] = ACTIONS(4490), - [anon_sym_LR_DQUOTE] = ACTIONS(4490), - [anon_sym_uR_DQUOTE] = ACTIONS(4490), - [anon_sym_UR_DQUOTE] = ACTIONS(4490), - [anon_sym_u8R_DQUOTE] = ACTIONS(4490), - [anon_sym_co_await] = ACTIONS(4488), - [anon_sym_new] = ACTIONS(4488), - [anon_sym_requires] = ACTIONS(4488), - [anon_sym_CARET_CARET] = ACTIONS(4490), - [anon_sym_LBRACK_COLON] = ACTIONS(4490), - [sym_this] = ACTIONS(4488), - }, - [STATE(963)] = { - [ts_builtin_sym_end] = ACTIONS(4494), - [sym_identifier] = ACTIONS(4492), - [aux_sym_preproc_include_token1] = ACTIONS(4492), - [aux_sym_preproc_def_token1] = ACTIONS(4492), - [aux_sym_preproc_if_token1] = ACTIONS(4492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4492), - [sym_preproc_directive] = ACTIONS(4492), - [anon_sym_LPAREN2] = ACTIONS(4494), - [anon_sym_BANG] = ACTIONS(4494), - [anon_sym_TILDE] = ACTIONS(4494), - [anon_sym_DASH] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4492), - [anon_sym_STAR] = ACTIONS(4494), - [anon_sym_AMP_AMP] = ACTIONS(4494), - [anon_sym_AMP] = ACTIONS(4492), - [anon_sym_SEMI] = ACTIONS(4494), - [anon_sym___extension__] = ACTIONS(4492), - [anon_sym_typedef] = ACTIONS(4492), - [anon_sym_virtual] = ACTIONS(4492), - [anon_sym_extern] = ACTIONS(4492), - [anon_sym___attribute__] = ACTIONS(4492), - [anon_sym___attribute] = ACTIONS(4492), - [anon_sym_using] = ACTIONS(4492), - [anon_sym_COLON_COLON] = ACTIONS(4494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4494), - [anon_sym___declspec] = ACTIONS(4492), - [anon_sym___based] = ACTIONS(4492), - [anon_sym___cdecl] = ACTIONS(4492), - [anon_sym___clrcall] = ACTIONS(4492), - [anon_sym___stdcall] = ACTIONS(4492), - [anon_sym___fastcall] = ACTIONS(4492), - [anon_sym___thiscall] = ACTIONS(4492), - [anon_sym___vectorcall] = ACTIONS(4492), - [anon_sym_LBRACE] = ACTIONS(4494), - [anon_sym_signed] = ACTIONS(4492), - [anon_sym_unsigned] = ACTIONS(4492), - [anon_sym_long] = ACTIONS(4492), - [anon_sym_short] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_static] = ACTIONS(4492), - [anon_sym_register] = ACTIONS(4492), - [anon_sym_inline] = ACTIONS(4492), - [anon_sym___inline] = ACTIONS(4492), - [anon_sym___inline__] = ACTIONS(4492), - [anon_sym___forceinline] = ACTIONS(4492), - [anon_sym_thread_local] = ACTIONS(4492), - [anon_sym___thread] = ACTIONS(4492), - [anon_sym_const] = ACTIONS(4492), - [anon_sym_constexpr] = ACTIONS(4492), - [anon_sym_volatile] = ACTIONS(4492), - [anon_sym_restrict] = ACTIONS(4492), - [anon_sym___restrict__] = ACTIONS(4492), - [anon_sym__Atomic] = ACTIONS(4492), - [anon_sym__Noreturn] = ACTIONS(4492), - [anon_sym_noreturn] = ACTIONS(4492), - [anon_sym__Nonnull] = ACTIONS(4492), - [anon_sym_mutable] = ACTIONS(4492), - [anon_sym_constinit] = ACTIONS(4492), - [anon_sym_consteval] = ACTIONS(4492), - [anon_sym_alignas] = ACTIONS(4492), - [anon_sym__Alignas] = ACTIONS(4492), - [sym_primitive_type] = ACTIONS(4492), - [anon_sym_enum] = ACTIONS(4492), - [anon_sym_class] = ACTIONS(4492), - [anon_sym_struct] = ACTIONS(4492), - [anon_sym_union] = ACTIONS(4492), - [anon_sym_if] = ACTIONS(4492), - [anon_sym_switch] = ACTIONS(4492), - [anon_sym_case] = ACTIONS(4492), - [anon_sym_default] = ACTIONS(4492), - [anon_sym_while] = ACTIONS(4492), - [anon_sym_do] = ACTIONS(4492), - [anon_sym_for] = ACTIONS(4492), - [anon_sym_return] = ACTIONS(4492), - [anon_sym_break] = ACTIONS(4492), - [anon_sym_continue] = ACTIONS(4492), - [anon_sym_goto] = ACTIONS(4492), - [anon_sym_not] = ACTIONS(4492), - [anon_sym_compl] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4494), - [anon_sym_PLUS_PLUS] = ACTIONS(4494), - [anon_sym_sizeof] = ACTIONS(4492), - [anon_sym___alignof__] = ACTIONS(4492), - [anon_sym___alignof] = ACTIONS(4492), - [anon_sym__alignof] = ACTIONS(4492), - [anon_sym_alignof] = ACTIONS(4492), - [anon_sym__Alignof] = ACTIONS(4492), - [anon_sym_offsetof] = ACTIONS(4492), - [anon_sym__Generic] = ACTIONS(4492), - [anon_sym_typename] = ACTIONS(4492), - [anon_sym_asm] = ACTIONS(4492), - [anon_sym___asm__] = ACTIONS(4492), - [anon_sym___asm] = ACTIONS(4492), - [sym_number_literal] = ACTIONS(4494), - [anon_sym_L_SQUOTE] = ACTIONS(4494), - [anon_sym_u_SQUOTE] = ACTIONS(4494), - [anon_sym_U_SQUOTE] = ACTIONS(4494), - [anon_sym_u8_SQUOTE] = ACTIONS(4494), - [anon_sym_SQUOTE] = ACTIONS(4494), - [anon_sym_L_DQUOTE] = ACTIONS(4494), - [anon_sym_u_DQUOTE] = ACTIONS(4494), - [anon_sym_U_DQUOTE] = ACTIONS(4494), - [anon_sym_u8_DQUOTE] = ACTIONS(4494), - [anon_sym_DQUOTE] = ACTIONS(4494), - [sym_true] = ACTIONS(4492), - [sym_false] = ACTIONS(4492), - [anon_sym_NULL] = ACTIONS(4492), - [anon_sym_nullptr] = ACTIONS(4492), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4492), - [anon_sym_decltype] = ACTIONS(4492), - [anon_sym_explicit] = ACTIONS(4492), - [anon_sym_export] = ACTIONS(4492), - [anon_sym_module] = ACTIONS(4492), - [anon_sym_import] = ACTIONS(4492), - [anon_sym_template] = ACTIONS(4492), - [anon_sym_operator] = ACTIONS(4492), - [anon_sym_try] = ACTIONS(4492), - [anon_sym_delete] = ACTIONS(4492), - [anon_sym_throw] = ACTIONS(4492), - [anon_sym_namespace] = ACTIONS(4492), - [anon_sym_static_assert] = ACTIONS(4492), - [anon_sym_concept] = ACTIONS(4492), - [anon_sym_co_return] = ACTIONS(4492), - [anon_sym_co_yield] = ACTIONS(4492), - [anon_sym_R_DQUOTE] = ACTIONS(4494), - [anon_sym_LR_DQUOTE] = ACTIONS(4494), - [anon_sym_uR_DQUOTE] = ACTIONS(4494), - [anon_sym_UR_DQUOTE] = ACTIONS(4494), - [anon_sym_u8R_DQUOTE] = ACTIONS(4494), - [anon_sym_co_await] = ACTIONS(4492), - [anon_sym_new] = ACTIONS(4492), - [anon_sym_requires] = ACTIONS(4492), - [anon_sym_CARET_CARET] = ACTIONS(4494), - [anon_sym_LBRACK_COLON] = ACTIONS(4494), - [sym_this] = ACTIONS(4492), - }, - [STATE(964)] = { - [ts_builtin_sym_end] = ACTIONS(3933), - [sym_identifier] = ACTIONS(3931), - [aux_sym_preproc_include_token1] = ACTIONS(3931), - [aux_sym_preproc_def_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token1] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), - [sym_preproc_directive] = ACTIONS(3931), - [anon_sym_LPAREN2] = ACTIONS(3933), - [anon_sym_BANG] = ACTIONS(3933), - [anon_sym_TILDE] = ACTIONS(3933), - [anon_sym_DASH] = ACTIONS(3931), - [anon_sym_PLUS] = ACTIONS(3931), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(3931), - [anon_sym_SEMI] = ACTIONS(3933), - [anon_sym___extension__] = ACTIONS(3931), - [anon_sym_typedef] = ACTIONS(3931), - [anon_sym_virtual] = ACTIONS(3931), - [anon_sym_extern] = ACTIONS(3931), - [anon_sym___attribute__] = ACTIONS(3931), - [anon_sym___attribute] = ACTIONS(3931), - [anon_sym_using] = ACTIONS(3931), - [anon_sym_COLON_COLON] = ACTIONS(3933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), - [anon_sym___declspec] = ACTIONS(3931), - [anon_sym___based] = ACTIONS(3931), - [anon_sym___cdecl] = ACTIONS(3931), - [anon_sym___clrcall] = ACTIONS(3931), - [anon_sym___stdcall] = ACTIONS(3931), - [anon_sym___fastcall] = ACTIONS(3931), - [anon_sym___thiscall] = ACTIONS(3931), - [anon_sym___vectorcall] = ACTIONS(3931), - [anon_sym_LBRACE] = ACTIONS(3933), - [anon_sym_signed] = ACTIONS(3931), - [anon_sym_unsigned] = ACTIONS(3931), - [anon_sym_long] = ACTIONS(3931), - [anon_sym_short] = ACTIONS(3931), - [anon_sym_LBRACK] = ACTIONS(3931), - [anon_sym_static] = ACTIONS(3931), - [anon_sym_register] = ACTIONS(3931), - [anon_sym_inline] = ACTIONS(3931), - [anon_sym___inline] = ACTIONS(3931), - [anon_sym___inline__] = ACTIONS(3931), - [anon_sym___forceinline] = ACTIONS(3931), - [anon_sym_thread_local] = ACTIONS(3931), - [anon_sym___thread] = ACTIONS(3931), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_constexpr] = ACTIONS(3931), - [anon_sym_volatile] = ACTIONS(3931), - [anon_sym_restrict] = ACTIONS(3931), - [anon_sym___restrict__] = ACTIONS(3931), - [anon_sym__Atomic] = ACTIONS(3931), - [anon_sym__Noreturn] = ACTIONS(3931), - [anon_sym_noreturn] = ACTIONS(3931), - [anon_sym__Nonnull] = ACTIONS(3931), - [anon_sym_mutable] = ACTIONS(3931), - [anon_sym_constinit] = ACTIONS(3931), - [anon_sym_consteval] = ACTIONS(3931), - [anon_sym_alignas] = ACTIONS(3931), - [anon_sym__Alignas] = ACTIONS(3931), - [sym_primitive_type] = ACTIONS(3931), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3931), - [anon_sym_struct] = ACTIONS(3931), - [anon_sym_union] = ACTIONS(3931), - [anon_sym_if] = ACTIONS(3931), - [anon_sym_switch] = ACTIONS(3931), - [anon_sym_case] = ACTIONS(3931), - [anon_sym_default] = ACTIONS(3931), - [anon_sym_while] = ACTIONS(3931), - [anon_sym_do] = ACTIONS(3931), - [anon_sym_for] = ACTIONS(3931), - [anon_sym_return] = ACTIONS(3931), - [anon_sym_break] = ACTIONS(3931), - [anon_sym_continue] = ACTIONS(3931), - [anon_sym_goto] = ACTIONS(3931), - [anon_sym_not] = ACTIONS(3931), - [anon_sym_compl] = ACTIONS(3931), - [anon_sym_DASH_DASH] = ACTIONS(3933), - [anon_sym_PLUS_PLUS] = ACTIONS(3933), - [anon_sym_sizeof] = ACTIONS(3931), - [anon_sym___alignof__] = ACTIONS(3931), - [anon_sym___alignof] = ACTIONS(3931), - [anon_sym__alignof] = ACTIONS(3931), - [anon_sym_alignof] = ACTIONS(3931), - [anon_sym__Alignof] = ACTIONS(3931), - [anon_sym_offsetof] = ACTIONS(3931), - [anon_sym__Generic] = ACTIONS(3931), - [anon_sym_typename] = ACTIONS(3931), - [anon_sym_asm] = ACTIONS(3931), - [anon_sym___asm__] = ACTIONS(3931), - [anon_sym___asm] = ACTIONS(3931), - [sym_number_literal] = ACTIONS(3933), - [anon_sym_L_SQUOTE] = ACTIONS(3933), - [anon_sym_u_SQUOTE] = ACTIONS(3933), - [anon_sym_U_SQUOTE] = ACTIONS(3933), - [anon_sym_u8_SQUOTE] = ACTIONS(3933), - [anon_sym_SQUOTE] = ACTIONS(3933), - [anon_sym_L_DQUOTE] = ACTIONS(3933), - [anon_sym_u_DQUOTE] = ACTIONS(3933), - [anon_sym_U_DQUOTE] = ACTIONS(3933), - [anon_sym_u8_DQUOTE] = ACTIONS(3933), - [anon_sym_DQUOTE] = ACTIONS(3933), - [sym_true] = ACTIONS(3931), - [sym_false] = ACTIONS(3931), - [anon_sym_NULL] = ACTIONS(3931), - [anon_sym_nullptr] = ACTIONS(3931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3931), - [anon_sym_decltype] = ACTIONS(3931), - [anon_sym_explicit] = ACTIONS(3931), - [anon_sym_export] = ACTIONS(3931), - [anon_sym_module] = ACTIONS(3931), - [anon_sym_import] = ACTIONS(3931), - [anon_sym_template] = ACTIONS(3931), - [anon_sym_operator] = ACTIONS(3931), - [anon_sym_try] = ACTIONS(3931), - [anon_sym_delete] = ACTIONS(3931), - [anon_sym_throw] = ACTIONS(3931), - [anon_sym_namespace] = ACTIONS(3931), - [anon_sym_static_assert] = ACTIONS(3931), - [anon_sym_concept] = ACTIONS(3931), - [anon_sym_co_return] = ACTIONS(3931), - [anon_sym_co_yield] = ACTIONS(3931), - [anon_sym_R_DQUOTE] = ACTIONS(3933), - [anon_sym_LR_DQUOTE] = ACTIONS(3933), - [anon_sym_uR_DQUOTE] = ACTIONS(3933), - [anon_sym_UR_DQUOTE] = ACTIONS(3933), - [anon_sym_u8R_DQUOTE] = ACTIONS(3933), - [anon_sym_co_await] = ACTIONS(3931), - [anon_sym_new] = ACTIONS(3931), - [anon_sym_requires] = ACTIONS(3931), - [anon_sym_CARET_CARET] = ACTIONS(3933), - [anon_sym_LBRACK_COLON] = ACTIONS(3933), - [sym_this] = ACTIONS(3931), - }, - [STATE(965)] = { - [ts_builtin_sym_end] = ACTIONS(4248), - [sym_identifier] = ACTIONS(4246), - [aux_sym_preproc_include_token1] = ACTIONS(4246), - [aux_sym_preproc_def_token1] = ACTIONS(4246), - [aux_sym_preproc_if_token1] = ACTIONS(4246), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4246), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4246), - [sym_preproc_directive] = ACTIONS(4246), - [anon_sym_LPAREN2] = ACTIONS(4248), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_TILDE] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4246), - [anon_sym_STAR] = ACTIONS(4248), - [anon_sym_AMP_AMP] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4246), - [anon_sym_SEMI] = ACTIONS(4248), - [anon_sym___extension__] = ACTIONS(4246), - [anon_sym_typedef] = ACTIONS(4246), - [anon_sym_virtual] = ACTIONS(4246), - [anon_sym_extern] = ACTIONS(4246), - [anon_sym___attribute__] = ACTIONS(4246), - [anon_sym___attribute] = ACTIONS(4246), - [anon_sym_using] = ACTIONS(4246), - [anon_sym_COLON_COLON] = ACTIONS(4248), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4248), - [anon_sym___declspec] = ACTIONS(4246), - [anon_sym___based] = ACTIONS(4246), - [anon_sym___cdecl] = ACTIONS(4246), - [anon_sym___clrcall] = ACTIONS(4246), - [anon_sym___stdcall] = ACTIONS(4246), - [anon_sym___fastcall] = ACTIONS(4246), - [anon_sym___thiscall] = ACTIONS(4246), - [anon_sym___vectorcall] = ACTIONS(4246), - [anon_sym_LBRACE] = ACTIONS(4248), - [anon_sym_signed] = ACTIONS(4246), - [anon_sym_unsigned] = ACTIONS(4246), - [anon_sym_long] = ACTIONS(4246), - [anon_sym_short] = ACTIONS(4246), - [anon_sym_LBRACK] = ACTIONS(4246), - [anon_sym_static] = ACTIONS(4246), - [anon_sym_register] = ACTIONS(4246), - [anon_sym_inline] = ACTIONS(4246), - [anon_sym___inline] = ACTIONS(4246), - [anon_sym___inline__] = ACTIONS(4246), - [anon_sym___forceinline] = ACTIONS(4246), - [anon_sym_thread_local] = ACTIONS(4246), - [anon_sym___thread] = ACTIONS(4246), - [anon_sym_const] = ACTIONS(4246), - [anon_sym_constexpr] = ACTIONS(4246), - [anon_sym_volatile] = ACTIONS(4246), - [anon_sym_restrict] = ACTIONS(4246), - [anon_sym___restrict__] = ACTIONS(4246), - [anon_sym__Atomic] = ACTIONS(4246), - [anon_sym__Noreturn] = ACTIONS(4246), - [anon_sym_noreturn] = ACTIONS(4246), - [anon_sym__Nonnull] = ACTIONS(4246), - [anon_sym_mutable] = ACTIONS(4246), - [anon_sym_constinit] = ACTIONS(4246), - [anon_sym_consteval] = ACTIONS(4246), - [anon_sym_alignas] = ACTIONS(4246), - [anon_sym__Alignas] = ACTIONS(4246), - [sym_primitive_type] = ACTIONS(4246), - [anon_sym_enum] = ACTIONS(4246), - [anon_sym_class] = ACTIONS(4246), - [anon_sym_struct] = ACTIONS(4246), - [anon_sym_union] = ACTIONS(4246), - [anon_sym_if] = ACTIONS(4246), - [anon_sym_switch] = ACTIONS(4246), - [anon_sym_case] = ACTIONS(4246), - [anon_sym_default] = ACTIONS(4246), - [anon_sym_while] = ACTIONS(4246), - [anon_sym_do] = ACTIONS(4246), - [anon_sym_for] = ACTIONS(4246), - [anon_sym_return] = ACTIONS(4246), - [anon_sym_break] = ACTIONS(4246), - [anon_sym_continue] = ACTIONS(4246), - [anon_sym_goto] = ACTIONS(4246), - [anon_sym_not] = ACTIONS(4246), - [anon_sym_compl] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4248), - [anon_sym_PLUS_PLUS] = ACTIONS(4248), - [anon_sym_sizeof] = ACTIONS(4246), - [anon_sym___alignof__] = ACTIONS(4246), - [anon_sym___alignof] = ACTIONS(4246), - [anon_sym__alignof] = ACTIONS(4246), - [anon_sym_alignof] = ACTIONS(4246), - [anon_sym__Alignof] = ACTIONS(4246), - [anon_sym_offsetof] = ACTIONS(4246), - [anon_sym__Generic] = ACTIONS(4246), - [anon_sym_typename] = ACTIONS(4246), - [anon_sym_asm] = ACTIONS(4246), - [anon_sym___asm__] = ACTIONS(4246), - [anon_sym___asm] = ACTIONS(4246), - [sym_number_literal] = ACTIONS(4248), - [anon_sym_L_SQUOTE] = ACTIONS(4248), - [anon_sym_u_SQUOTE] = ACTIONS(4248), - [anon_sym_U_SQUOTE] = ACTIONS(4248), - [anon_sym_u8_SQUOTE] = ACTIONS(4248), - [anon_sym_SQUOTE] = ACTIONS(4248), - [anon_sym_L_DQUOTE] = ACTIONS(4248), - [anon_sym_u_DQUOTE] = ACTIONS(4248), - [anon_sym_U_DQUOTE] = ACTIONS(4248), - [anon_sym_u8_DQUOTE] = ACTIONS(4248), - [anon_sym_DQUOTE] = ACTIONS(4248), - [sym_true] = ACTIONS(4246), - [sym_false] = ACTIONS(4246), - [anon_sym_NULL] = ACTIONS(4246), - [anon_sym_nullptr] = ACTIONS(4246), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4246), - [anon_sym_decltype] = ACTIONS(4246), - [anon_sym_explicit] = ACTIONS(4246), - [anon_sym_export] = ACTIONS(4246), - [anon_sym_module] = ACTIONS(4246), - [anon_sym_import] = ACTIONS(4246), - [anon_sym_template] = ACTIONS(4246), - [anon_sym_operator] = ACTIONS(4246), - [anon_sym_try] = ACTIONS(4246), - [anon_sym_delete] = ACTIONS(4246), - [anon_sym_throw] = ACTIONS(4246), - [anon_sym_namespace] = ACTIONS(4246), - [anon_sym_static_assert] = ACTIONS(4246), - [anon_sym_concept] = ACTIONS(4246), - [anon_sym_co_return] = ACTIONS(4246), - [anon_sym_co_yield] = ACTIONS(4246), - [anon_sym_R_DQUOTE] = ACTIONS(4248), - [anon_sym_LR_DQUOTE] = ACTIONS(4248), - [anon_sym_uR_DQUOTE] = ACTIONS(4248), - [anon_sym_UR_DQUOTE] = ACTIONS(4248), - [anon_sym_u8R_DQUOTE] = ACTIONS(4248), - [anon_sym_co_await] = ACTIONS(4246), - [anon_sym_new] = ACTIONS(4246), - [anon_sym_requires] = ACTIONS(4246), - [anon_sym_CARET_CARET] = ACTIONS(4248), - [anon_sym_LBRACK_COLON] = ACTIONS(4248), - [sym_this] = ACTIONS(4246), - }, - [STATE(966)] = { - [sym_identifier] = ACTIONS(4454), - [aux_sym_preproc_include_token1] = ACTIONS(4454), - [aux_sym_preproc_def_token1] = ACTIONS(4454), - [aux_sym_preproc_if_token1] = ACTIONS(4454), - [aux_sym_preproc_if_token2] = ACTIONS(4454), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4454), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4454), - [sym_preproc_directive] = ACTIONS(4454), - [anon_sym_LPAREN2] = ACTIONS(4456), - [anon_sym_BANG] = ACTIONS(4456), - [anon_sym_TILDE] = ACTIONS(4456), - [anon_sym_DASH] = ACTIONS(4454), - [anon_sym_PLUS] = ACTIONS(4454), - [anon_sym_STAR] = ACTIONS(4456), - [anon_sym_AMP_AMP] = ACTIONS(4456), - [anon_sym_AMP] = ACTIONS(4454), - [anon_sym_SEMI] = ACTIONS(4456), - [anon_sym___extension__] = ACTIONS(4454), - [anon_sym_typedef] = ACTIONS(4454), - [anon_sym_virtual] = ACTIONS(4454), - [anon_sym_extern] = ACTIONS(4454), - [anon_sym___attribute__] = ACTIONS(4454), - [anon_sym___attribute] = ACTIONS(4454), - [anon_sym_using] = ACTIONS(4454), - [anon_sym_COLON_COLON] = ACTIONS(4456), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4456), - [anon_sym___declspec] = ACTIONS(4454), - [anon_sym___based] = ACTIONS(4454), - [anon_sym___cdecl] = ACTIONS(4454), - [anon_sym___clrcall] = ACTIONS(4454), - [anon_sym___stdcall] = ACTIONS(4454), - [anon_sym___fastcall] = ACTIONS(4454), - [anon_sym___thiscall] = ACTIONS(4454), - [anon_sym___vectorcall] = ACTIONS(4454), - [anon_sym_LBRACE] = ACTIONS(4456), - [anon_sym_signed] = ACTIONS(4454), - [anon_sym_unsigned] = ACTIONS(4454), - [anon_sym_long] = ACTIONS(4454), - [anon_sym_short] = ACTIONS(4454), - [anon_sym_LBRACK] = ACTIONS(4454), - [anon_sym_static] = ACTIONS(4454), - [anon_sym_register] = ACTIONS(4454), - [anon_sym_inline] = ACTIONS(4454), - [anon_sym___inline] = ACTIONS(4454), - [anon_sym___inline__] = ACTIONS(4454), - [anon_sym___forceinline] = ACTIONS(4454), - [anon_sym_thread_local] = ACTIONS(4454), - [anon_sym___thread] = ACTIONS(4454), - [anon_sym_const] = ACTIONS(4454), - [anon_sym_constexpr] = ACTIONS(4454), - [anon_sym_volatile] = ACTIONS(4454), - [anon_sym_restrict] = ACTIONS(4454), - [anon_sym___restrict__] = ACTIONS(4454), - [anon_sym__Atomic] = ACTIONS(4454), - [anon_sym__Noreturn] = ACTIONS(4454), - [anon_sym_noreturn] = ACTIONS(4454), - [anon_sym__Nonnull] = ACTIONS(4454), - [anon_sym_mutable] = ACTIONS(4454), - [anon_sym_constinit] = ACTIONS(4454), - [anon_sym_consteval] = ACTIONS(4454), - [anon_sym_alignas] = ACTIONS(4454), - [anon_sym__Alignas] = ACTIONS(4454), - [sym_primitive_type] = ACTIONS(4454), - [anon_sym_enum] = ACTIONS(4454), - [anon_sym_class] = ACTIONS(4454), - [anon_sym_struct] = ACTIONS(4454), - [anon_sym_union] = ACTIONS(4454), - [anon_sym_if] = ACTIONS(4454), - [anon_sym_switch] = ACTIONS(4454), - [anon_sym_case] = ACTIONS(4454), - [anon_sym_default] = ACTIONS(4454), - [anon_sym_while] = ACTIONS(4454), - [anon_sym_do] = ACTIONS(4454), - [anon_sym_for] = ACTIONS(4454), - [anon_sym_return] = ACTIONS(4454), - [anon_sym_break] = ACTIONS(4454), - [anon_sym_continue] = ACTIONS(4454), - [anon_sym_goto] = ACTIONS(4454), - [anon_sym_not] = ACTIONS(4454), - [anon_sym_compl] = ACTIONS(4454), - [anon_sym_DASH_DASH] = ACTIONS(4456), - [anon_sym_PLUS_PLUS] = ACTIONS(4456), - [anon_sym_sizeof] = ACTIONS(4454), - [anon_sym___alignof__] = ACTIONS(4454), - [anon_sym___alignof] = ACTIONS(4454), - [anon_sym__alignof] = ACTIONS(4454), - [anon_sym_alignof] = ACTIONS(4454), - [anon_sym__Alignof] = ACTIONS(4454), - [anon_sym_offsetof] = ACTIONS(4454), - [anon_sym__Generic] = ACTIONS(4454), - [anon_sym_typename] = ACTIONS(4454), - [anon_sym_asm] = ACTIONS(4454), - [anon_sym___asm__] = ACTIONS(4454), - [anon_sym___asm] = ACTIONS(4454), - [sym_number_literal] = ACTIONS(4456), - [anon_sym_L_SQUOTE] = ACTIONS(4456), - [anon_sym_u_SQUOTE] = ACTIONS(4456), - [anon_sym_U_SQUOTE] = ACTIONS(4456), - [anon_sym_u8_SQUOTE] = ACTIONS(4456), - [anon_sym_SQUOTE] = ACTIONS(4456), - [anon_sym_L_DQUOTE] = ACTIONS(4456), - [anon_sym_u_DQUOTE] = ACTIONS(4456), - [anon_sym_U_DQUOTE] = ACTIONS(4456), - [anon_sym_u8_DQUOTE] = ACTIONS(4456), - [anon_sym_DQUOTE] = ACTIONS(4456), - [sym_true] = ACTIONS(4454), - [sym_false] = ACTIONS(4454), - [anon_sym_NULL] = ACTIONS(4454), - [anon_sym_nullptr] = ACTIONS(4454), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4454), - [anon_sym_decltype] = ACTIONS(4454), - [anon_sym_explicit] = ACTIONS(4454), - [anon_sym_export] = ACTIONS(4454), - [anon_sym_module] = ACTIONS(4454), - [anon_sym_import] = ACTIONS(4454), - [anon_sym_template] = ACTIONS(4454), - [anon_sym_operator] = ACTIONS(4454), - [anon_sym_try] = ACTIONS(4454), - [anon_sym_delete] = ACTIONS(4454), - [anon_sym_throw] = ACTIONS(4454), - [anon_sym_namespace] = ACTIONS(4454), - [anon_sym_static_assert] = ACTIONS(4454), - [anon_sym_concept] = ACTIONS(4454), - [anon_sym_co_return] = ACTIONS(4454), - [anon_sym_co_yield] = ACTIONS(4454), - [anon_sym_R_DQUOTE] = ACTIONS(4456), - [anon_sym_LR_DQUOTE] = ACTIONS(4456), - [anon_sym_uR_DQUOTE] = ACTIONS(4456), - [anon_sym_UR_DQUOTE] = ACTIONS(4456), - [anon_sym_u8R_DQUOTE] = ACTIONS(4456), - [anon_sym_co_await] = ACTIONS(4454), - [anon_sym_new] = ACTIONS(4454), - [anon_sym_requires] = ACTIONS(4454), - [anon_sym_CARET_CARET] = ACTIONS(4456), - [anon_sym_LBRACK_COLON] = ACTIONS(4456), - [sym_this] = ACTIONS(4454), - }, - [STATE(967)] = { - [sym_identifier] = ACTIONS(4458), - [aux_sym_preproc_include_token1] = ACTIONS(4458), - [aux_sym_preproc_def_token1] = ACTIONS(4458), - [aux_sym_preproc_if_token1] = ACTIONS(4458), - [aux_sym_preproc_if_token2] = ACTIONS(4458), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4458), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4458), - [sym_preproc_directive] = ACTIONS(4458), - [anon_sym_LPAREN2] = ACTIONS(4460), - [anon_sym_BANG] = ACTIONS(4460), - [anon_sym_TILDE] = ACTIONS(4460), - [anon_sym_DASH] = ACTIONS(4458), - [anon_sym_PLUS] = ACTIONS(4458), - [anon_sym_STAR] = ACTIONS(4460), - [anon_sym_AMP_AMP] = ACTIONS(4460), - [anon_sym_AMP] = ACTIONS(4458), - [anon_sym_SEMI] = ACTIONS(4460), - [anon_sym___extension__] = ACTIONS(4458), - [anon_sym_typedef] = ACTIONS(4458), - [anon_sym_virtual] = ACTIONS(4458), - [anon_sym_extern] = ACTIONS(4458), - [anon_sym___attribute__] = ACTIONS(4458), - [anon_sym___attribute] = ACTIONS(4458), - [anon_sym_using] = ACTIONS(4458), - [anon_sym_COLON_COLON] = ACTIONS(4460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4460), - [anon_sym___declspec] = ACTIONS(4458), - [anon_sym___based] = ACTIONS(4458), - [anon_sym___cdecl] = ACTIONS(4458), - [anon_sym___clrcall] = ACTIONS(4458), - [anon_sym___stdcall] = ACTIONS(4458), - [anon_sym___fastcall] = ACTIONS(4458), - [anon_sym___thiscall] = ACTIONS(4458), - [anon_sym___vectorcall] = ACTIONS(4458), - [anon_sym_LBRACE] = ACTIONS(4460), - [anon_sym_signed] = ACTIONS(4458), - [anon_sym_unsigned] = ACTIONS(4458), - [anon_sym_long] = ACTIONS(4458), - [anon_sym_short] = ACTIONS(4458), - [anon_sym_LBRACK] = ACTIONS(4458), - [anon_sym_static] = ACTIONS(4458), - [anon_sym_register] = ACTIONS(4458), - [anon_sym_inline] = ACTIONS(4458), - [anon_sym___inline] = ACTIONS(4458), - [anon_sym___inline__] = ACTIONS(4458), - [anon_sym___forceinline] = ACTIONS(4458), - [anon_sym_thread_local] = ACTIONS(4458), - [anon_sym___thread] = ACTIONS(4458), - [anon_sym_const] = ACTIONS(4458), - [anon_sym_constexpr] = ACTIONS(4458), - [anon_sym_volatile] = ACTIONS(4458), - [anon_sym_restrict] = ACTIONS(4458), - [anon_sym___restrict__] = ACTIONS(4458), - [anon_sym__Atomic] = ACTIONS(4458), - [anon_sym__Noreturn] = ACTIONS(4458), - [anon_sym_noreturn] = ACTIONS(4458), - [anon_sym__Nonnull] = ACTIONS(4458), - [anon_sym_mutable] = ACTIONS(4458), - [anon_sym_constinit] = ACTIONS(4458), - [anon_sym_consteval] = ACTIONS(4458), - [anon_sym_alignas] = ACTIONS(4458), - [anon_sym__Alignas] = ACTIONS(4458), - [sym_primitive_type] = ACTIONS(4458), - [anon_sym_enum] = ACTIONS(4458), - [anon_sym_class] = ACTIONS(4458), - [anon_sym_struct] = ACTIONS(4458), - [anon_sym_union] = ACTIONS(4458), - [anon_sym_if] = ACTIONS(4458), - [anon_sym_switch] = ACTIONS(4458), - [anon_sym_case] = ACTIONS(4458), - [anon_sym_default] = ACTIONS(4458), - [anon_sym_while] = ACTIONS(4458), - [anon_sym_do] = ACTIONS(4458), - [anon_sym_for] = ACTIONS(4458), - [anon_sym_return] = ACTIONS(4458), - [anon_sym_break] = ACTIONS(4458), - [anon_sym_continue] = ACTIONS(4458), - [anon_sym_goto] = ACTIONS(4458), - [anon_sym_not] = ACTIONS(4458), - [anon_sym_compl] = ACTIONS(4458), - [anon_sym_DASH_DASH] = ACTIONS(4460), - [anon_sym_PLUS_PLUS] = ACTIONS(4460), - [anon_sym_sizeof] = ACTIONS(4458), - [anon_sym___alignof__] = ACTIONS(4458), - [anon_sym___alignof] = ACTIONS(4458), - [anon_sym__alignof] = ACTIONS(4458), - [anon_sym_alignof] = ACTIONS(4458), - [anon_sym__Alignof] = ACTIONS(4458), - [anon_sym_offsetof] = ACTIONS(4458), - [anon_sym__Generic] = ACTIONS(4458), - [anon_sym_typename] = ACTIONS(4458), - [anon_sym_asm] = ACTIONS(4458), - [anon_sym___asm__] = ACTIONS(4458), - [anon_sym___asm] = ACTIONS(4458), - [sym_number_literal] = ACTIONS(4460), - [anon_sym_L_SQUOTE] = ACTIONS(4460), - [anon_sym_u_SQUOTE] = ACTIONS(4460), - [anon_sym_U_SQUOTE] = ACTIONS(4460), - [anon_sym_u8_SQUOTE] = ACTIONS(4460), - [anon_sym_SQUOTE] = ACTIONS(4460), - [anon_sym_L_DQUOTE] = ACTIONS(4460), - [anon_sym_u_DQUOTE] = ACTIONS(4460), - [anon_sym_U_DQUOTE] = ACTIONS(4460), - [anon_sym_u8_DQUOTE] = ACTIONS(4460), - [anon_sym_DQUOTE] = ACTIONS(4460), - [sym_true] = ACTIONS(4458), - [sym_false] = ACTIONS(4458), - [anon_sym_NULL] = ACTIONS(4458), - [anon_sym_nullptr] = ACTIONS(4458), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4458), - [anon_sym_decltype] = ACTIONS(4458), - [anon_sym_explicit] = ACTIONS(4458), - [anon_sym_export] = ACTIONS(4458), - [anon_sym_module] = ACTIONS(4458), - [anon_sym_import] = ACTIONS(4458), - [anon_sym_template] = ACTIONS(4458), - [anon_sym_operator] = ACTIONS(4458), - [anon_sym_try] = ACTIONS(4458), - [anon_sym_delete] = ACTIONS(4458), - [anon_sym_throw] = ACTIONS(4458), - [anon_sym_namespace] = ACTIONS(4458), - [anon_sym_static_assert] = ACTIONS(4458), - [anon_sym_concept] = ACTIONS(4458), - [anon_sym_co_return] = ACTIONS(4458), - [anon_sym_co_yield] = ACTIONS(4458), - [anon_sym_R_DQUOTE] = ACTIONS(4460), - [anon_sym_LR_DQUOTE] = ACTIONS(4460), - [anon_sym_uR_DQUOTE] = ACTIONS(4460), - [anon_sym_UR_DQUOTE] = ACTIONS(4460), - [anon_sym_u8R_DQUOTE] = ACTIONS(4460), - [anon_sym_co_await] = ACTIONS(4458), - [anon_sym_new] = ACTIONS(4458), - [anon_sym_requires] = ACTIONS(4458), - [anon_sym_CARET_CARET] = ACTIONS(4460), - [anon_sym_LBRACK_COLON] = ACTIONS(4460), - [sym_this] = ACTIONS(4458), - }, - [STATE(968)] = { - [sym_identifier] = ACTIONS(4462), - [aux_sym_preproc_include_token1] = ACTIONS(4462), - [aux_sym_preproc_def_token1] = ACTIONS(4462), - [aux_sym_preproc_if_token1] = ACTIONS(4462), - [aux_sym_preproc_if_token2] = ACTIONS(4462), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4462), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4462), - [sym_preproc_directive] = ACTIONS(4462), - [anon_sym_LPAREN2] = ACTIONS(4464), - [anon_sym_BANG] = ACTIONS(4464), - [anon_sym_TILDE] = ACTIONS(4464), - [anon_sym_DASH] = ACTIONS(4462), - [anon_sym_PLUS] = ACTIONS(4462), - [anon_sym_STAR] = ACTIONS(4464), - [anon_sym_AMP_AMP] = ACTIONS(4464), - [anon_sym_AMP] = ACTIONS(4462), - [anon_sym_SEMI] = ACTIONS(4464), - [anon_sym___extension__] = ACTIONS(4462), - [anon_sym_typedef] = ACTIONS(4462), - [anon_sym_virtual] = ACTIONS(4462), - [anon_sym_extern] = ACTIONS(4462), - [anon_sym___attribute__] = ACTIONS(4462), - [anon_sym___attribute] = ACTIONS(4462), - [anon_sym_using] = ACTIONS(4462), - [anon_sym_COLON_COLON] = ACTIONS(4464), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4464), - [anon_sym___declspec] = ACTIONS(4462), - [anon_sym___based] = ACTIONS(4462), - [anon_sym___cdecl] = ACTIONS(4462), - [anon_sym___clrcall] = ACTIONS(4462), - [anon_sym___stdcall] = ACTIONS(4462), - [anon_sym___fastcall] = ACTIONS(4462), - [anon_sym___thiscall] = ACTIONS(4462), - [anon_sym___vectorcall] = ACTIONS(4462), - [anon_sym_LBRACE] = ACTIONS(4464), - [anon_sym_signed] = ACTIONS(4462), - [anon_sym_unsigned] = ACTIONS(4462), - [anon_sym_long] = ACTIONS(4462), - [anon_sym_short] = ACTIONS(4462), - [anon_sym_LBRACK] = ACTIONS(4462), - [anon_sym_static] = ACTIONS(4462), - [anon_sym_register] = ACTIONS(4462), - [anon_sym_inline] = ACTIONS(4462), - [anon_sym___inline] = ACTIONS(4462), - [anon_sym___inline__] = ACTIONS(4462), - [anon_sym___forceinline] = ACTIONS(4462), - [anon_sym_thread_local] = ACTIONS(4462), - [anon_sym___thread] = ACTIONS(4462), - [anon_sym_const] = ACTIONS(4462), - [anon_sym_constexpr] = ACTIONS(4462), - [anon_sym_volatile] = ACTIONS(4462), - [anon_sym_restrict] = ACTIONS(4462), - [anon_sym___restrict__] = ACTIONS(4462), - [anon_sym__Atomic] = ACTIONS(4462), - [anon_sym__Noreturn] = ACTIONS(4462), - [anon_sym_noreturn] = ACTIONS(4462), - [anon_sym__Nonnull] = ACTIONS(4462), - [anon_sym_mutable] = ACTIONS(4462), - [anon_sym_constinit] = ACTIONS(4462), - [anon_sym_consteval] = ACTIONS(4462), - [anon_sym_alignas] = ACTIONS(4462), - [anon_sym__Alignas] = ACTIONS(4462), - [sym_primitive_type] = ACTIONS(4462), - [anon_sym_enum] = ACTIONS(4462), - [anon_sym_class] = ACTIONS(4462), - [anon_sym_struct] = ACTIONS(4462), - [anon_sym_union] = ACTIONS(4462), - [anon_sym_if] = ACTIONS(4462), - [anon_sym_switch] = ACTIONS(4462), - [anon_sym_case] = ACTIONS(4462), - [anon_sym_default] = ACTIONS(4462), - [anon_sym_while] = ACTIONS(4462), - [anon_sym_do] = ACTIONS(4462), - [anon_sym_for] = ACTIONS(4462), - [anon_sym_return] = ACTIONS(4462), - [anon_sym_break] = ACTIONS(4462), - [anon_sym_continue] = ACTIONS(4462), - [anon_sym_goto] = ACTIONS(4462), - [anon_sym_not] = ACTIONS(4462), - [anon_sym_compl] = ACTIONS(4462), - [anon_sym_DASH_DASH] = ACTIONS(4464), - [anon_sym_PLUS_PLUS] = ACTIONS(4464), - [anon_sym_sizeof] = ACTIONS(4462), - [anon_sym___alignof__] = ACTIONS(4462), - [anon_sym___alignof] = ACTIONS(4462), - [anon_sym__alignof] = ACTIONS(4462), - [anon_sym_alignof] = ACTIONS(4462), - [anon_sym__Alignof] = ACTIONS(4462), - [anon_sym_offsetof] = ACTIONS(4462), - [anon_sym__Generic] = ACTIONS(4462), - [anon_sym_typename] = ACTIONS(4462), - [anon_sym_asm] = ACTIONS(4462), - [anon_sym___asm__] = ACTIONS(4462), - [anon_sym___asm] = ACTIONS(4462), - [sym_number_literal] = ACTIONS(4464), - [anon_sym_L_SQUOTE] = ACTIONS(4464), - [anon_sym_u_SQUOTE] = ACTIONS(4464), - [anon_sym_U_SQUOTE] = ACTIONS(4464), - [anon_sym_u8_SQUOTE] = ACTIONS(4464), - [anon_sym_SQUOTE] = ACTIONS(4464), - [anon_sym_L_DQUOTE] = ACTIONS(4464), - [anon_sym_u_DQUOTE] = ACTIONS(4464), - [anon_sym_U_DQUOTE] = ACTIONS(4464), - [anon_sym_u8_DQUOTE] = ACTIONS(4464), - [anon_sym_DQUOTE] = ACTIONS(4464), - [sym_true] = ACTIONS(4462), - [sym_false] = ACTIONS(4462), - [anon_sym_NULL] = ACTIONS(4462), - [anon_sym_nullptr] = ACTIONS(4462), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4462), - [anon_sym_decltype] = ACTIONS(4462), - [anon_sym_explicit] = ACTIONS(4462), - [anon_sym_export] = ACTIONS(4462), - [anon_sym_module] = ACTIONS(4462), - [anon_sym_import] = ACTIONS(4462), - [anon_sym_template] = ACTIONS(4462), - [anon_sym_operator] = ACTIONS(4462), - [anon_sym_try] = ACTIONS(4462), - [anon_sym_delete] = ACTIONS(4462), - [anon_sym_throw] = ACTIONS(4462), - [anon_sym_namespace] = ACTIONS(4462), - [anon_sym_static_assert] = ACTIONS(4462), - [anon_sym_concept] = ACTIONS(4462), - [anon_sym_co_return] = ACTIONS(4462), - [anon_sym_co_yield] = ACTIONS(4462), - [anon_sym_R_DQUOTE] = ACTIONS(4464), - [anon_sym_LR_DQUOTE] = ACTIONS(4464), - [anon_sym_uR_DQUOTE] = ACTIONS(4464), - [anon_sym_UR_DQUOTE] = ACTIONS(4464), - [anon_sym_u8R_DQUOTE] = ACTIONS(4464), - [anon_sym_co_await] = ACTIONS(4462), - [anon_sym_new] = ACTIONS(4462), - [anon_sym_requires] = ACTIONS(4462), - [anon_sym_CARET_CARET] = ACTIONS(4464), - [anon_sym_LBRACK_COLON] = ACTIONS(4464), - [sym_this] = ACTIONS(4462), - }, - [STATE(969)] = { - [sym_identifier] = ACTIONS(4466), - [aux_sym_preproc_include_token1] = ACTIONS(4466), - [aux_sym_preproc_def_token1] = ACTIONS(4466), - [aux_sym_preproc_if_token1] = ACTIONS(4466), - [aux_sym_preproc_if_token2] = ACTIONS(4466), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4466), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4466), - [sym_preproc_directive] = ACTIONS(4466), - [anon_sym_LPAREN2] = ACTIONS(4468), - [anon_sym_BANG] = ACTIONS(4468), - [anon_sym_TILDE] = ACTIONS(4468), - [anon_sym_DASH] = ACTIONS(4466), - [anon_sym_PLUS] = ACTIONS(4466), - [anon_sym_STAR] = ACTIONS(4468), - [anon_sym_AMP_AMP] = ACTIONS(4468), - [anon_sym_AMP] = ACTIONS(4466), - [anon_sym_SEMI] = ACTIONS(4468), - [anon_sym___extension__] = ACTIONS(4466), - [anon_sym_typedef] = ACTIONS(4466), - [anon_sym_virtual] = ACTIONS(4466), - [anon_sym_extern] = ACTIONS(4466), - [anon_sym___attribute__] = ACTIONS(4466), - [anon_sym___attribute] = ACTIONS(4466), - [anon_sym_using] = ACTIONS(4466), - [anon_sym_COLON_COLON] = ACTIONS(4468), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4468), - [anon_sym___declspec] = ACTIONS(4466), - [anon_sym___based] = ACTIONS(4466), - [anon_sym___cdecl] = ACTIONS(4466), - [anon_sym___clrcall] = ACTIONS(4466), - [anon_sym___stdcall] = ACTIONS(4466), - [anon_sym___fastcall] = ACTIONS(4466), - [anon_sym___thiscall] = ACTIONS(4466), - [anon_sym___vectorcall] = ACTIONS(4466), - [anon_sym_LBRACE] = ACTIONS(4468), - [anon_sym_signed] = ACTIONS(4466), - [anon_sym_unsigned] = ACTIONS(4466), - [anon_sym_long] = ACTIONS(4466), - [anon_sym_short] = ACTIONS(4466), - [anon_sym_LBRACK] = ACTIONS(4466), - [anon_sym_static] = ACTIONS(4466), - [anon_sym_register] = ACTIONS(4466), - [anon_sym_inline] = ACTIONS(4466), - [anon_sym___inline] = ACTIONS(4466), - [anon_sym___inline__] = ACTIONS(4466), - [anon_sym___forceinline] = ACTIONS(4466), - [anon_sym_thread_local] = ACTIONS(4466), - [anon_sym___thread] = ACTIONS(4466), - [anon_sym_const] = ACTIONS(4466), - [anon_sym_constexpr] = ACTIONS(4466), - [anon_sym_volatile] = ACTIONS(4466), - [anon_sym_restrict] = ACTIONS(4466), - [anon_sym___restrict__] = ACTIONS(4466), - [anon_sym__Atomic] = ACTIONS(4466), - [anon_sym__Noreturn] = ACTIONS(4466), - [anon_sym_noreturn] = ACTIONS(4466), - [anon_sym__Nonnull] = ACTIONS(4466), - [anon_sym_mutable] = ACTIONS(4466), - [anon_sym_constinit] = ACTIONS(4466), - [anon_sym_consteval] = ACTIONS(4466), - [anon_sym_alignas] = ACTIONS(4466), - [anon_sym__Alignas] = ACTIONS(4466), - [sym_primitive_type] = ACTIONS(4466), - [anon_sym_enum] = ACTIONS(4466), - [anon_sym_class] = ACTIONS(4466), - [anon_sym_struct] = ACTIONS(4466), - [anon_sym_union] = ACTIONS(4466), - [anon_sym_if] = ACTIONS(4466), - [anon_sym_switch] = ACTIONS(4466), - [anon_sym_case] = ACTIONS(4466), - [anon_sym_default] = ACTIONS(4466), - [anon_sym_while] = ACTIONS(4466), - [anon_sym_do] = ACTIONS(4466), - [anon_sym_for] = ACTIONS(4466), - [anon_sym_return] = ACTIONS(4466), - [anon_sym_break] = ACTIONS(4466), - [anon_sym_continue] = ACTIONS(4466), - [anon_sym_goto] = ACTIONS(4466), - [anon_sym_not] = ACTIONS(4466), - [anon_sym_compl] = ACTIONS(4466), - [anon_sym_DASH_DASH] = ACTIONS(4468), - [anon_sym_PLUS_PLUS] = ACTIONS(4468), - [anon_sym_sizeof] = ACTIONS(4466), - [anon_sym___alignof__] = ACTIONS(4466), - [anon_sym___alignof] = ACTIONS(4466), - [anon_sym__alignof] = ACTIONS(4466), - [anon_sym_alignof] = ACTIONS(4466), - [anon_sym__Alignof] = ACTIONS(4466), - [anon_sym_offsetof] = ACTIONS(4466), - [anon_sym__Generic] = ACTIONS(4466), - [anon_sym_typename] = ACTIONS(4466), - [anon_sym_asm] = ACTIONS(4466), - [anon_sym___asm__] = ACTIONS(4466), - [anon_sym___asm] = ACTIONS(4466), - [sym_number_literal] = ACTIONS(4468), - [anon_sym_L_SQUOTE] = ACTIONS(4468), - [anon_sym_u_SQUOTE] = ACTIONS(4468), - [anon_sym_U_SQUOTE] = ACTIONS(4468), - [anon_sym_u8_SQUOTE] = ACTIONS(4468), - [anon_sym_SQUOTE] = ACTIONS(4468), - [anon_sym_L_DQUOTE] = ACTIONS(4468), - [anon_sym_u_DQUOTE] = ACTIONS(4468), - [anon_sym_U_DQUOTE] = ACTIONS(4468), - [anon_sym_u8_DQUOTE] = ACTIONS(4468), - [anon_sym_DQUOTE] = ACTIONS(4468), - [sym_true] = ACTIONS(4466), - [sym_false] = ACTIONS(4466), - [anon_sym_NULL] = ACTIONS(4466), - [anon_sym_nullptr] = ACTIONS(4466), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4466), - [anon_sym_decltype] = ACTIONS(4466), - [anon_sym_explicit] = ACTIONS(4466), - [anon_sym_export] = ACTIONS(4466), - [anon_sym_module] = ACTIONS(4466), - [anon_sym_import] = ACTIONS(4466), - [anon_sym_template] = ACTIONS(4466), - [anon_sym_operator] = ACTIONS(4466), - [anon_sym_try] = ACTIONS(4466), - [anon_sym_delete] = ACTIONS(4466), - [anon_sym_throw] = ACTIONS(4466), - [anon_sym_namespace] = ACTIONS(4466), - [anon_sym_static_assert] = ACTIONS(4466), - [anon_sym_concept] = ACTIONS(4466), - [anon_sym_co_return] = ACTIONS(4466), - [anon_sym_co_yield] = ACTIONS(4466), - [anon_sym_R_DQUOTE] = ACTIONS(4468), - [anon_sym_LR_DQUOTE] = ACTIONS(4468), - [anon_sym_uR_DQUOTE] = ACTIONS(4468), - [anon_sym_UR_DQUOTE] = ACTIONS(4468), - [anon_sym_u8R_DQUOTE] = ACTIONS(4468), - [anon_sym_co_await] = ACTIONS(4466), - [anon_sym_new] = ACTIONS(4466), - [anon_sym_requires] = ACTIONS(4466), - [anon_sym_CARET_CARET] = ACTIONS(4468), - [anon_sym_LBRACK_COLON] = ACTIONS(4468), - [sym_this] = ACTIONS(4466), - }, - [STATE(970)] = { - [ts_builtin_sym_end] = ACTIONS(4260), - [sym_identifier] = ACTIONS(4258), - [aux_sym_preproc_include_token1] = ACTIONS(4258), - [aux_sym_preproc_def_token1] = ACTIONS(4258), - [aux_sym_preproc_if_token1] = ACTIONS(4258), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4258), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4258), - [sym_preproc_directive] = ACTIONS(4258), - [anon_sym_LPAREN2] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_TILDE] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4258), - [anon_sym_PLUS] = ACTIONS(4258), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_AMP_AMP] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4258), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym___extension__] = ACTIONS(4258), - [anon_sym_typedef] = ACTIONS(4258), - [anon_sym_virtual] = ACTIONS(4258), - [anon_sym_extern] = ACTIONS(4258), - [anon_sym___attribute__] = ACTIONS(4258), - [anon_sym___attribute] = ACTIONS(4258), - [anon_sym_using] = ACTIONS(4258), - [anon_sym_COLON_COLON] = ACTIONS(4260), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4260), - [anon_sym___declspec] = ACTIONS(4258), - [anon_sym___based] = ACTIONS(4258), - [anon_sym___cdecl] = ACTIONS(4258), - [anon_sym___clrcall] = ACTIONS(4258), - [anon_sym___stdcall] = ACTIONS(4258), - [anon_sym___fastcall] = ACTIONS(4258), - [anon_sym___thiscall] = ACTIONS(4258), - [anon_sym___vectorcall] = ACTIONS(4258), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_signed] = ACTIONS(4258), - [anon_sym_unsigned] = ACTIONS(4258), - [anon_sym_long] = ACTIONS(4258), - [anon_sym_short] = ACTIONS(4258), - [anon_sym_LBRACK] = ACTIONS(4258), - [anon_sym_static] = ACTIONS(4258), - [anon_sym_register] = ACTIONS(4258), - [anon_sym_inline] = ACTIONS(4258), - [anon_sym___inline] = ACTIONS(4258), - [anon_sym___inline__] = ACTIONS(4258), - [anon_sym___forceinline] = ACTIONS(4258), - [anon_sym_thread_local] = ACTIONS(4258), - [anon_sym___thread] = ACTIONS(4258), - [anon_sym_const] = ACTIONS(4258), - [anon_sym_constexpr] = ACTIONS(4258), - [anon_sym_volatile] = ACTIONS(4258), - [anon_sym_restrict] = ACTIONS(4258), - [anon_sym___restrict__] = ACTIONS(4258), - [anon_sym__Atomic] = ACTIONS(4258), - [anon_sym__Noreturn] = ACTIONS(4258), - [anon_sym_noreturn] = ACTIONS(4258), - [anon_sym__Nonnull] = ACTIONS(4258), - [anon_sym_mutable] = ACTIONS(4258), - [anon_sym_constinit] = ACTIONS(4258), - [anon_sym_consteval] = ACTIONS(4258), - [anon_sym_alignas] = ACTIONS(4258), - [anon_sym__Alignas] = ACTIONS(4258), - [sym_primitive_type] = ACTIONS(4258), - [anon_sym_enum] = ACTIONS(4258), - [anon_sym_class] = ACTIONS(4258), - [anon_sym_struct] = ACTIONS(4258), - [anon_sym_union] = ACTIONS(4258), - [anon_sym_if] = ACTIONS(4258), - [anon_sym_switch] = ACTIONS(4258), - [anon_sym_case] = ACTIONS(4258), - [anon_sym_default] = ACTIONS(4258), - [anon_sym_while] = ACTIONS(4258), - [anon_sym_do] = ACTIONS(4258), - [anon_sym_for] = ACTIONS(4258), - [anon_sym_return] = ACTIONS(4258), - [anon_sym_break] = ACTIONS(4258), - [anon_sym_continue] = ACTIONS(4258), - [anon_sym_goto] = ACTIONS(4258), - [anon_sym_not] = ACTIONS(4258), - [anon_sym_compl] = ACTIONS(4258), - [anon_sym_DASH_DASH] = ACTIONS(4260), - [anon_sym_PLUS_PLUS] = ACTIONS(4260), - [anon_sym_sizeof] = ACTIONS(4258), - [anon_sym___alignof__] = ACTIONS(4258), - [anon_sym___alignof] = ACTIONS(4258), - [anon_sym__alignof] = ACTIONS(4258), - [anon_sym_alignof] = ACTIONS(4258), - [anon_sym__Alignof] = ACTIONS(4258), - [anon_sym_offsetof] = ACTIONS(4258), - [anon_sym__Generic] = ACTIONS(4258), - [anon_sym_typename] = ACTIONS(4258), - [anon_sym_asm] = ACTIONS(4258), - [anon_sym___asm__] = ACTIONS(4258), - [anon_sym___asm] = ACTIONS(4258), - [sym_number_literal] = ACTIONS(4260), - [anon_sym_L_SQUOTE] = ACTIONS(4260), - [anon_sym_u_SQUOTE] = ACTIONS(4260), - [anon_sym_U_SQUOTE] = ACTIONS(4260), - [anon_sym_u8_SQUOTE] = ACTIONS(4260), - [anon_sym_SQUOTE] = ACTIONS(4260), - [anon_sym_L_DQUOTE] = ACTIONS(4260), - [anon_sym_u_DQUOTE] = ACTIONS(4260), - [anon_sym_U_DQUOTE] = ACTIONS(4260), - [anon_sym_u8_DQUOTE] = ACTIONS(4260), - [anon_sym_DQUOTE] = ACTIONS(4260), - [sym_true] = ACTIONS(4258), - [sym_false] = ACTIONS(4258), - [anon_sym_NULL] = ACTIONS(4258), - [anon_sym_nullptr] = ACTIONS(4258), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4258), - [anon_sym_decltype] = ACTIONS(4258), - [anon_sym_explicit] = ACTIONS(4258), - [anon_sym_export] = ACTIONS(4258), - [anon_sym_module] = ACTIONS(4258), - [anon_sym_import] = ACTIONS(4258), - [anon_sym_template] = ACTIONS(4258), - [anon_sym_operator] = ACTIONS(4258), - [anon_sym_try] = ACTIONS(4258), - [anon_sym_delete] = ACTIONS(4258), - [anon_sym_throw] = ACTIONS(4258), - [anon_sym_namespace] = ACTIONS(4258), - [anon_sym_static_assert] = ACTIONS(4258), - [anon_sym_concept] = ACTIONS(4258), - [anon_sym_co_return] = ACTIONS(4258), - [anon_sym_co_yield] = ACTIONS(4258), - [anon_sym_R_DQUOTE] = ACTIONS(4260), - [anon_sym_LR_DQUOTE] = ACTIONS(4260), - [anon_sym_uR_DQUOTE] = ACTIONS(4260), - [anon_sym_UR_DQUOTE] = ACTIONS(4260), - [anon_sym_u8R_DQUOTE] = ACTIONS(4260), - [anon_sym_co_await] = ACTIONS(4258), - [anon_sym_new] = ACTIONS(4258), - [anon_sym_requires] = ACTIONS(4258), - [anon_sym_CARET_CARET] = ACTIONS(4260), - [anon_sym_LBRACK_COLON] = ACTIONS(4260), - [sym_this] = ACTIONS(4258), - }, - [STATE(971)] = { - [ts_builtin_sym_end] = ACTIONS(4264), - [sym_identifier] = ACTIONS(4262), - [aux_sym_preproc_include_token1] = ACTIONS(4262), - [aux_sym_preproc_def_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token1] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), - [sym_preproc_directive] = ACTIONS(4262), - [anon_sym_LPAREN2] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_TILDE] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4262), - [anon_sym_PLUS] = ACTIONS(4262), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym___extension__] = ACTIONS(4262), - [anon_sym_typedef] = ACTIONS(4262), - [anon_sym_virtual] = ACTIONS(4262), - [anon_sym_extern] = ACTIONS(4262), - [anon_sym___attribute__] = ACTIONS(4262), - [anon_sym___attribute] = ACTIONS(4262), - [anon_sym_using] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), - [anon_sym___declspec] = ACTIONS(4262), - [anon_sym___based] = ACTIONS(4262), - [anon_sym___cdecl] = ACTIONS(4262), - [anon_sym___clrcall] = ACTIONS(4262), - [anon_sym___stdcall] = ACTIONS(4262), - [anon_sym___fastcall] = ACTIONS(4262), - [anon_sym___thiscall] = ACTIONS(4262), - [anon_sym___vectorcall] = ACTIONS(4262), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_signed] = ACTIONS(4262), - [anon_sym_unsigned] = ACTIONS(4262), - [anon_sym_long] = ACTIONS(4262), - [anon_sym_short] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_static] = ACTIONS(4262), - [anon_sym_register] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym___inline] = ACTIONS(4262), - [anon_sym___inline__] = ACTIONS(4262), - [anon_sym___forceinline] = ACTIONS(4262), - [anon_sym_thread_local] = ACTIONS(4262), - [anon_sym___thread] = ACTIONS(4262), - [anon_sym_const] = ACTIONS(4262), - [anon_sym_constexpr] = ACTIONS(4262), - [anon_sym_volatile] = ACTIONS(4262), - [anon_sym_restrict] = ACTIONS(4262), - [anon_sym___restrict__] = ACTIONS(4262), - [anon_sym__Atomic] = ACTIONS(4262), - [anon_sym__Noreturn] = ACTIONS(4262), - [anon_sym_noreturn] = ACTIONS(4262), - [anon_sym__Nonnull] = ACTIONS(4262), - [anon_sym_mutable] = ACTIONS(4262), - [anon_sym_constinit] = ACTIONS(4262), - [anon_sym_consteval] = ACTIONS(4262), - [anon_sym_alignas] = ACTIONS(4262), - [anon_sym__Alignas] = ACTIONS(4262), - [sym_primitive_type] = ACTIONS(4262), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_class] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4262), - [anon_sym_union] = ACTIONS(4262), - [anon_sym_if] = ACTIONS(4262), - [anon_sym_switch] = ACTIONS(4262), - [anon_sym_case] = ACTIONS(4262), - [anon_sym_default] = ACTIONS(4262), - [anon_sym_while] = ACTIONS(4262), - [anon_sym_do] = ACTIONS(4262), - [anon_sym_for] = ACTIONS(4262), - [anon_sym_return] = ACTIONS(4262), - [anon_sym_break] = ACTIONS(4262), - [anon_sym_continue] = ACTIONS(4262), - [anon_sym_goto] = ACTIONS(4262), - [anon_sym_not] = ACTIONS(4262), - [anon_sym_compl] = ACTIONS(4262), - [anon_sym_DASH_DASH] = ACTIONS(4264), - [anon_sym_PLUS_PLUS] = ACTIONS(4264), - [anon_sym_sizeof] = ACTIONS(4262), - [anon_sym___alignof__] = ACTIONS(4262), - [anon_sym___alignof] = ACTIONS(4262), - [anon_sym__alignof] = ACTIONS(4262), - [anon_sym_alignof] = ACTIONS(4262), - [anon_sym__Alignof] = ACTIONS(4262), - [anon_sym_offsetof] = ACTIONS(4262), - [anon_sym__Generic] = ACTIONS(4262), - [anon_sym_typename] = ACTIONS(4262), - [anon_sym_asm] = ACTIONS(4262), - [anon_sym___asm__] = ACTIONS(4262), - [anon_sym___asm] = ACTIONS(4262), - [sym_number_literal] = ACTIONS(4264), - [anon_sym_L_SQUOTE] = ACTIONS(4264), - [anon_sym_u_SQUOTE] = ACTIONS(4264), - [anon_sym_U_SQUOTE] = ACTIONS(4264), - [anon_sym_u8_SQUOTE] = ACTIONS(4264), - [anon_sym_SQUOTE] = ACTIONS(4264), - [anon_sym_L_DQUOTE] = ACTIONS(4264), - [anon_sym_u_DQUOTE] = ACTIONS(4264), - [anon_sym_U_DQUOTE] = ACTIONS(4264), - [anon_sym_u8_DQUOTE] = ACTIONS(4264), - [anon_sym_DQUOTE] = ACTIONS(4264), - [sym_true] = ACTIONS(4262), - [sym_false] = ACTIONS(4262), - [anon_sym_NULL] = ACTIONS(4262), - [anon_sym_nullptr] = ACTIONS(4262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4262), - [anon_sym_decltype] = ACTIONS(4262), - [anon_sym_explicit] = ACTIONS(4262), - [anon_sym_export] = ACTIONS(4262), - [anon_sym_module] = ACTIONS(4262), - [anon_sym_import] = ACTIONS(4262), - [anon_sym_template] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_try] = ACTIONS(4262), - [anon_sym_delete] = ACTIONS(4262), - [anon_sym_throw] = ACTIONS(4262), - [anon_sym_namespace] = ACTIONS(4262), - [anon_sym_static_assert] = ACTIONS(4262), - [anon_sym_concept] = ACTIONS(4262), - [anon_sym_co_return] = ACTIONS(4262), - [anon_sym_co_yield] = ACTIONS(4262), - [anon_sym_R_DQUOTE] = ACTIONS(4264), - [anon_sym_LR_DQUOTE] = ACTIONS(4264), - [anon_sym_uR_DQUOTE] = ACTIONS(4264), - [anon_sym_UR_DQUOTE] = ACTIONS(4264), - [anon_sym_u8R_DQUOTE] = ACTIONS(4264), - [anon_sym_co_await] = ACTIONS(4262), - [anon_sym_new] = ACTIONS(4262), - [anon_sym_requires] = ACTIONS(4262), - [anon_sym_CARET_CARET] = ACTIONS(4264), - [anon_sym_LBRACK_COLON] = ACTIONS(4264), - [sym_this] = ACTIONS(4262), - }, - [STATE(972)] = { - [ts_builtin_sym_end] = ACTIONS(4268), - [sym_identifier] = ACTIONS(4266), - [aux_sym_preproc_include_token1] = ACTIONS(4266), - [aux_sym_preproc_def_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token1] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), - [sym_preproc_directive] = ACTIONS(4266), - [anon_sym_LPAREN2] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_PLUS] = ACTIONS(4266), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym___extension__] = ACTIONS(4266), - [anon_sym_typedef] = ACTIONS(4266), - [anon_sym_virtual] = ACTIONS(4266), - [anon_sym_extern] = ACTIONS(4266), - [anon_sym___attribute__] = ACTIONS(4266), - [anon_sym___attribute] = ACTIONS(4266), - [anon_sym_using] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), - [anon_sym___declspec] = ACTIONS(4266), - [anon_sym___based] = ACTIONS(4266), - [anon_sym___cdecl] = ACTIONS(4266), - [anon_sym___clrcall] = ACTIONS(4266), - [anon_sym___stdcall] = ACTIONS(4266), - [anon_sym___fastcall] = ACTIONS(4266), - [anon_sym___thiscall] = ACTIONS(4266), - [anon_sym___vectorcall] = ACTIONS(4266), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_signed] = ACTIONS(4266), - [anon_sym_unsigned] = ACTIONS(4266), - [anon_sym_long] = ACTIONS(4266), - [anon_sym_short] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_static] = ACTIONS(4266), - [anon_sym_register] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym___inline] = ACTIONS(4266), - [anon_sym___inline__] = ACTIONS(4266), - [anon_sym___forceinline] = ACTIONS(4266), - [anon_sym_thread_local] = ACTIONS(4266), - [anon_sym___thread] = ACTIONS(4266), - [anon_sym_const] = ACTIONS(4266), - [anon_sym_constexpr] = ACTIONS(4266), - [anon_sym_volatile] = ACTIONS(4266), - [anon_sym_restrict] = ACTIONS(4266), - [anon_sym___restrict__] = ACTIONS(4266), - [anon_sym__Atomic] = ACTIONS(4266), - [anon_sym__Noreturn] = ACTIONS(4266), - [anon_sym_noreturn] = ACTIONS(4266), - [anon_sym__Nonnull] = ACTIONS(4266), - [anon_sym_mutable] = ACTIONS(4266), - [anon_sym_constinit] = ACTIONS(4266), - [anon_sym_consteval] = ACTIONS(4266), - [anon_sym_alignas] = ACTIONS(4266), - [anon_sym__Alignas] = ACTIONS(4266), - [sym_primitive_type] = ACTIONS(4266), - [anon_sym_enum] = ACTIONS(4266), - [anon_sym_class] = ACTIONS(4266), - [anon_sym_struct] = ACTIONS(4266), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_if] = ACTIONS(4266), - [anon_sym_switch] = ACTIONS(4266), - [anon_sym_case] = ACTIONS(4266), - [anon_sym_default] = ACTIONS(4266), - [anon_sym_while] = ACTIONS(4266), - [anon_sym_do] = ACTIONS(4266), - [anon_sym_for] = ACTIONS(4266), - [anon_sym_return] = ACTIONS(4266), - [anon_sym_break] = ACTIONS(4266), - [anon_sym_continue] = ACTIONS(4266), - [anon_sym_goto] = ACTIONS(4266), - [anon_sym_not] = ACTIONS(4266), - [anon_sym_compl] = ACTIONS(4266), - [anon_sym_DASH_DASH] = ACTIONS(4268), - [anon_sym_PLUS_PLUS] = ACTIONS(4268), - [anon_sym_sizeof] = ACTIONS(4266), - [anon_sym___alignof__] = ACTIONS(4266), - [anon_sym___alignof] = ACTIONS(4266), - [anon_sym__alignof] = ACTIONS(4266), - [anon_sym_alignof] = ACTIONS(4266), - [anon_sym__Alignof] = ACTIONS(4266), - [anon_sym_offsetof] = ACTIONS(4266), - [anon_sym__Generic] = ACTIONS(4266), - [anon_sym_typename] = ACTIONS(4266), - [anon_sym_asm] = ACTIONS(4266), - [anon_sym___asm__] = ACTIONS(4266), - [anon_sym___asm] = ACTIONS(4266), - [sym_number_literal] = ACTIONS(4268), - [anon_sym_L_SQUOTE] = ACTIONS(4268), - [anon_sym_u_SQUOTE] = ACTIONS(4268), - [anon_sym_U_SQUOTE] = ACTIONS(4268), - [anon_sym_u8_SQUOTE] = ACTIONS(4268), - [anon_sym_SQUOTE] = ACTIONS(4268), - [anon_sym_L_DQUOTE] = ACTIONS(4268), - [anon_sym_u_DQUOTE] = ACTIONS(4268), - [anon_sym_U_DQUOTE] = ACTIONS(4268), - [anon_sym_u8_DQUOTE] = ACTIONS(4268), - [anon_sym_DQUOTE] = ACTIONS(4268), - [sym_true] = ACTIONS(4266), - [sym_false] = ACTIONS(4266), - [anon_sym_NULL] = ACTIONS(4266), - [anon_sym_nullptr] = ACTIONS(4266), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4266), - [anon_sym_decltype] = ACTIONS(4266), - [anon_sym_explicit] = ACTIONS(4266), - [anon_sym_export] = ACTIONS(4266), - [anon_sym_module] = ACTIONS(4266), - [anon_sym_import] = ACTIONS(4266), - [anon_sym_template] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_try] = ACTIONS(4266), - [anon_sym_delete] = ACTIONS(4266), - [anon_sym_throw] = ACTIONS(4266), - [anon_sym_namespace] = ACTIONS(4266), - [anon_sym_static_assert] = ACTIONS(4266), - [anon_sym_concept] = ACTIONS(4266), - [anon_sym_co_return] = ACTIONS(4266), - [anon_sym_co_yield] = ACTIONS(4266), - [anon_sym_R_DQUOTE] = ACTIONS(4268), - [anon_sym_LR_DQUOTE] = ACTIONS(4268), - [anon_sym_uR_DQUOTE] = ACTIONS(4268), - [anon_sym_UR_DQUOTE] = ACTIONS(4268), - [anon_sym_u8R_DQUOTE] = ACTIONS(4268), - [anon_sym_co_await] = ACTIONS(4266), - [anon_sym_new] = ACTIONS(4266), - [anon_sym_requires] = ACTIONS(4266), - [anon_sym_CARET_CARET] = ACTIONS(4268), - [anon_sym_LBRACK_COLON] = ACTIONS(4268), - [sym_this] = ACTIONS(4266), - }, - [STATE(973)] = { - [ts_builtin_sym_end] = ACTIONS(3945), - [sym_identifier] = ACTIONS(3943), - [aux_sym_preproc_include_token1] = ACTIONS(3943), - [aux_sym_preproc_def_token1] = ACTIONS(3943), - [aux_sym_preproc_if_token1] = ACTIONS(3943), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3943), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3943), - [sym_preproc_directive] = ACTIONS(3943), - [anon_sym_LPAREN2] = ACTIONS(3945), - [anon_sym_BANG] = ACTIONS(3945), - [anon_sym_TILDE] = ACTIONS(3945), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym___extension__] = ACTIONS(3943), - [anon_sym_typedef] = 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___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_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_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_typename] = 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_export] = ACTIONS(3943), - [anon_sym_module] = ACTIONS(3943), - [anon_sym_import] = ACTIONS(3943), - [anon_sym_template] = ACTIONS(3943), - [anon_sym_operator] = ACTIONS(3943), - [anon_sym_try] = ACTIONS(3943), - [anon_sym_delete] = ACTIONS(3943), - [anon_sym_throw] = ACTIONS(3943), - [anon_sym_namespace] = ACTIONS(3943), - [anon_sym_static_assert] = ACTIONS(3943), - [anon_sym_concept] = 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), - [anon_sym_CARET_CARET] = ACTIONS(3945), - [anon_sym_LBRACK_COLON] = ACTIONS(3945), - [sym_this] = ACTIONS(3943), - }, - [STATE(974)] = { - [sym_preproc_def] = STATE(941), - [sym_preproc_function_def] = STATE(941), - [sym_preproc_call] = STATE(941), - [sym_preproc_if_in_field_declaration_list] = STATE(941), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(941), - [sym_type_definition] = STATE(941), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(941), - [sym_field_declaration] = STATE(941), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(941), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(941), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(941), - [sym_operator_cast_declaration] = STATE(941), - [sym_constructor_or_destructor_definition] = STATE(941), - [sym_constructor_or_destructor_declaration] = STATE(941), - [sym_friend_declaration] = STATE(941), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(941), - [sym_alias_declaration] = STATE(941), - [sym_static_assert_declaration] = STATE(941), - [sym_consteval_block_declaration] = STATE(941), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(941), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(981)] = { + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4880), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4876), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -198358,7 +199331,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(4704), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -198368,2072 +199341,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4706), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(975)] = { - [ts_builtin_sym_end] = ACTIONS(4272), - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_include_token1] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym___cdecl] = ACTIONS(4270), - [anon_sym___clrcall] = ACTIONS(4270), - [anon_sym___stdcall] = ACTIONS(4270), - [anon_sym___fastcall] = ACTIONS(4270), - [anon_sym___thiscall] = ACTIONS(4270), - [anon_sym___vectorcall] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_switch] = ACTIONS(4270), - [anon_sym_case] = ACTIONS(4270), - [anon_sym_default] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_do] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_goto] = ACTIONS(4270), - [anon_sym_not] = ACTIONS(4270), - [anon_sym_compl] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_sizeof] = ACTIONS(4270), - [anon_sym___alignof__] = ACTIONS(4270), - [anon_sym___alignof] = ACTIONS(4270), - [anon_sym__alignof] = ACTIONS(4270), - [anon_sym_alignof] = ACTIONS(4270), - [anon_sym__Alignof] = ACTIONS(4270), - [anon_sym_offsetof] = ACTIONS(4270), - [anon_sym__Generic] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4270), - [anon_sym___asm__] = ACTIONS(4270), - [anon_sym___asm] = ACTIONS(4270), - [sym_number_literal] = ACTIONS(4272), - [anon_sym_L_SQUOTE] = ACTIONS(4272), - [anon_sym_u_SQUOTE] = ACTIONS(4272), - [anon_sym_U_SQUOTE] = ACTIONS(4272), - [anon_sym_u8_SQUOTE] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4272), - [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(4270), - [sym_false] = ACTIONS(4270), - [anon_sym_NULL] = ACTIONS(4270), - [anon_sym_nullptr] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_export] = ACTIONS(4270), - [anon_sym_module] = ACTIONS(4270), - [anon_sym_import] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_delete] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_namespace] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_concept] = ACTIONS(4270), - [anon_sym_co_return] = ACTIONS(4270), - [anon_sym_co_yield] = ACTIONS(4270), - [anon_sym_R_DQUOTE] = ACTIONS(4272), - [anon_sym_LR_DQUOTE] = ACTIONS(4272), - [anon_sym_uR_DQUOTE] = ACTIONS(4272), - [anon_sym_UR_DQUOTE] = ACTIONS(4272), - [anon_sym_u8R_DQUOTE] = ACTIONS(4272), - [anon_sym_co_await] = ACTIONS(4270), - [anon_sym_new] = ACTIONS(4270), - [anon_sym_requires] = ACTIONS(4270), - [anon_sym_CARET_CARET] = ACTIONS(4272), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - [sym_this] = ACTIONS(4270), - }, - [STATE(976)] = { - [ts_builtin_sym_end] = ACTIONS(4272), - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_include_token1] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym___cdecl] = ACTIONS(4270), - [anon_sym___clrcall] = ACTIONS(4270), - [anon_sym___stdcall] = ACTIONS(4270), - [anon_sym___fastcall] = ACTIONS(4270), - [anon_sym___thiscall] = ACTIONS(4270), - [anon_sym___vectorcall] = ACTIONS(4270), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_if] = ACTIONS(4270), - [anon_sym_switch] = ACTIONS(4270), - [anon_sym_case] = ACTIONS(4270), - [anon_sym_default] = ACTIONS(4270), - [anon_sym_while] = ACTIONS(4270), - [anon_sym_do] = ACTIONS(4270), - [anon_sym_for] = ACTIONS(4270), - [anon_sym_return] = ACTIONS(4270), - [anon_sym_break] = ACTIONS(4270), - [anon_sym_continue] = ACTIONS(4270), - [anon_sym_goto] = ACTIONS(4270), - [anon_sym_not] = ACTIONS(4270), - [anon_sym_compl] = ACTIONS(4270), - [anon_sym_DASH_DASH] = ACTIONS(4272), - [anon_sym_PLUS_PLUS] = ACTIONS(4272), - [anon_sym_sizeof] = ACTIONS(4270), - [anon_sym___alignof__] = ACTIONS(4270), - [anon_sym___alignof] = ACTIONS(4270), - [anon_sym__alignof] = ACTIONS(4270), - [anon_sym_alignof] = ACTIONS(4270), - [anon_sym__Alignof] = ACTIONS(4270), - [anon_sym_offsetof] = ACTIONS(4270), - [anon_sym__Generic] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [anon_sym_asm] = ACTIONS(4270), - [anon_sym___asm__] = ACTIONS(4270), - [anon_sym___asm] = ACTIONS(4270), - [sym_number_literal] = ACTIONS(4272), - [anon_sym_L_SQUOTE] = ACTIONS(4272), - [anon_sym_u_SQUOTE] = ACTIONS(4272), - [anon_sym_U_SQUOTE] = ACTIONS(4272), - [anon_sym_u8_SQUOTE] = ACTIONS(4272), - [anon_sym_SQUOTE] = ACTIONS(4272), - [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(4270), - [sym_false] = ACTIONS(4270), - [anon_sym_NULL] = ACTIONS(4270), - [anon_sym_nullptr] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_export] = ACTIONS(4270), - [anon_sym_module] = ACTIONS(4270), - [anon_sym_import] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_try] = ACTIONS(4270), - [anon_sym_delete] = ACTIONS(4270), - [anon_sym_throw] = ACTIONS(4270), - [anon_sym_namespace] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_concept] = ACTIONS(4270), - [anon_sym_co_return] = ACTIONS(4270), - [anon_sym_co_yield] = ACTIONS(4270), - [anon_sym_R_DQUOTE] = ACTIONS(4272), - [anon_sym_LR_DQUOTE] = ACTIONS(4272), - [anon_sym_uR_DQUOTE] = ACTIONS(4272), - [anon_sym_UR_DQUOTE] = ACTIONS(4272), - [anon_sym_u8R_DQUOTE] = ACTIONS(4272), - [anon_sym_co_await] = ACTIONS(4270), - [anon_sym_new] = ACTIONS(4270), - [anon_sym_requires] = ACTIONS(4270), - [anon_sym_CARET_CARET] = ACTIONS(4272), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - [sym_this] = ACTIONS(4270), - }, - [STATE(977)] = { - [ts_builtin_sym_end] = ACTIONS(4026), - [sym_identifier] = ACTIONS(4024), - [aux_sym_preproc_include_token1] = ACTIONS(4024), - [aux_sym_preproc_def_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), - [sym_preproc_directive] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [anon_sym_DASH] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym___extension__] = ACTIONS(4024), - [anon_sym_typedef] = ACTIONS(4024), - [anon_sym_virtual] = ACTIONS(4024), - [anon_sym_extern] = ACTIONS(4024), - [anon_sym___attribute__] = ACTIONS(4024), - [anon_sym___attribute] = ACTIONS(4024), - [anon_sym_using] = ACTIONS(4024), - [anon_sym_COLON_COLON] = ACTIONS(4026), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), - [anon_sym___declspec] = ACTIONS(4024), - [anon_sym___based] = ACTIONS(4024), - [anon_sym___cdecl] = ACTIONS(4024), - [anon_sym___clrcall] = ACTIONS(4024), - [anon_sym___stdcall] = ACTIONS(4024), - [anon_sym___fastcall] = ACTIONS(4024), - [anon_sym___thiscall] = ACTIONS(4024), - [anon_sym___vectorcall] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_signed] = ACTIONS(4024), - [anon_sym_unsigned] = ACTIONS(4024), - [anon_sym_long] = ACTIONS(4024), - [anon_sym_short] = ACTIONS(4024), - [anon_sym_LBRACK] = ACTIONS(4024), - [anon_sym_static] = ACTIONS(4024), - [anon_sym_register] = ACTIONS(4024), - [anon_sym_inline] = ACTIONS(4024), - [anon_sym___inline] = ACTIONS(4024), - [anon_sym___inline__] = ACTIONS(4024), - [anon_sym___forceinline] = ACTIONS(4024), - [anon_sym_thread_local] = ACTIONS(4024), - [anon_sym___thread] = ACTIONS(4024), - [anon_sym_const] = ACTIONS(4024), - [anon_sym_constexpr] = ACTIONS(4024), - [anon_sym_volatile] = ACTIONS(4024), - [anon_sym_restrict] = ACTIONS(4024), - [anon_sym___restrict__] = ACTIONS(4024), - [anon_sym__Atomic] = ACTIONS(4024), - [anon_sym__Noreturn] = ACTIONS(4024), - [anon_sym_noreturn] = ACTIONS(4024), - [anon_sym__Nonnull] = ACTIONS(4024), - [anon_sym_mutable] = ACTIONS(4024), - [anon_sym_constinit] = ACTIONS(4024), - [anon_sym_consteval] = ACTIONS(4024), - [anon_sym_alignas] = ACTIONS(4024), - [anon_sym__Alignas] = ACTIONS(4024), - [sym_primitive_type] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4024), - [anon_sym_class] = ACTIONS(4024), - [anon_sym_struct] = ACTIONS(4024), - [anon_sym_union] = ACTIONS(4024), - [anon_sym_if] = ACTIONS(4024), - [anon_sym_switch] = ACTIONS(4024), - [anon_sym_case] = ACTIONS(4024), - [anon_sym_default] = ACTIONS(4024), - [anon_sym_while] = ACTIONS(4024), - [anon_sym_do] = ACTIONS(4024), - [anon_sym_for] = ACTIONS(4024), - [anon_sym_return] = ACTIONS(4024), - [anon_sym_break] = ACTIONS(4024), - [anon_sym_continue] = ACTIONS(4024), - [anon_sym_goto] = ACTIONS(4024), - [anon_sym_not] = ACTIONS(4024), - [anon_sym_compl] = ACTIONS(4024), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_sizeof] = ACTIONS(4024), - [anon_sym___alignof__] = ACTIONS(4024), - [anon_sym___alignof] = ACTIONS(4024), - [anon_sym__alignof] = ACTIONS(4024), - [anon_sym_alignof] = ACTIONS(4024), - [anon_sym__Alignof] = ACTIONS(4024), - [anon_sym_offsetof] = ACTIONS(4024), - [anon_sym__Generic] = ACTIONS(4024), - [anon_sym_typename] = ACTIONS(4024), - [anon_sym_asm] = ACTIONS(4024), - [anon_sym___asm__] = ACTIONS(4024), - [anon_sym___asm] = ACTIONS(4024), - [sym_number_literal] = ACTIONS(4026), - [anon_sym_L_SQUOTE] = ACTIONS(4026), - [anon_sym_u_SQUOTE] = ACTIONS(4026), - [anon_sym_U_SQUOTE] = ACTIONS(4026), - [anon_sym_u8_SQUOTE] = ACTIONS(4026), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_L_DQUOTE] = ACTIONS(4026), - [anon_sym_u_DQUOTE] = ACTIONS(4026), - [anon_sym_U_DQUOTE] = ACTIONS(4026), - [anon_sym_u8_DQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [anon_sym_NULL] = ACTIONS(4024), - [anon_sym_nullptr] = ACTIONS(4024), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4024), - [anon_sym_decltype] = ACTIONS(4024), - [anon_sym_explicit] = ACTIONS(4024), - [anon_sym_export] = ACTIONS(4024), - [anon_sym_module] = ACTIONS(4024), - [anon_sym_import] = ACTIONS(4024), - [anon_sym_template] = ACTIONS(4024), - [anon_sym_operator] = ACTIONS(4024), - [anon_sym_try] = ACTIONS(4024), - [anon_sym_delete] = ACTIONS(4024), - [anon_sym_throw] = ACTIONS(4024), - [anon_sym_namespace] = ACTIONS(4024), - [anon_sym_static_assert] = ACTIONS(4024), - [anon_sym_concept] = ACTIONS(4024), - [anon_sym_co_return] = ACTIONS(4024), - [anon_sym_co_yield] = ACTIONS(4024), - [anon_sym_R_DQUOTE] = ACTIONS(4026), - [anon_sym_LR_DQUOTE] = ACTIONS(4026), - [anon_sym_uR_DQUOTE] = ACTIONS(4026), - [anon_sym_UR_DQUOTE] = ACTIONS(4026), - [anon_sym_u8R_DQUOTE] = ACTIONS(4026), - [anon_sym_co_await] = ACTIONS(4024), - [anon_sym_new] = ACTIONS(4024), - [anon_sym_requires] = ACTIONS(4024), - [anon_sym_CARET_CARET] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4026), - [sym_this] = ACTIONS(4024), - }, - [STATE(978)] = { - [ts_builtin_sym_end] = ACTIONS(4276), - [sym_identifier] = ACTIONS(4274), - [aux_sym_preproc_include_token1] = ACTIONS(4274), - [aux_sym_preproc_def_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), - [sym_preproc_directive] = ACTIONS(4274), - [anon_sym_LPAREN2] = ACTIONS(4276), - [anon_sym_BANG] = ACTIONS(4276), - [anon_sym_TILDE] = ACTIONS(4276), - [anon_sym_DASH] = ACTIONS(4274), - [anon_sym_PLUS] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_AMP_AMP] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4274), - [anon_sym_SEMI] = ACTIONS(4276), - [anon_sym___extension__] = ACTIONS(4274), - [anon_sym_typedef] = ACTIONS(4274), - [anon_sym_virtual] = ACTIONS(4274), - [anon_sym_extern] = ACTIONS(4274), - [anon_sym___attribute__] = ACTIONS(4274), - [anon_sym___attribute] = ACTIONS(4274), - [anon_sym_using] = ACTIONS(4274), - [anon_sym_COLON_COLON] = ACTIONS(4276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), - [anon_sym___declspec] = ACTIONS(4274), - [anon_sym___based] = ACTIONS(4274), - [anon_sym___cdecl] = ACTIONS(4274), - [anon_sym___clrcall] = ACTIONS(4274), - [anon_sym___stdcall] = ACTIONS(4274), - [anon_sym___fastcall] = ACTIONS(4274), - [anon_sym___thiscall] = ACTIONS(4274), - [anon_sym___vectorcall] = ACTIONS(4274), - [anon_sym_LBRACE] = ACTIONS(4276), - [anon_sym_signed] = ACTIONS(4274), - [anon_sym_unsigned] = ACTIONS(4274), - [anon_sym_long] = ACTIONS(4274), - [anon_sym_short] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_static] = ACTIONS(4274), - [anon_sym_register] = ACTIONS(4274), - [anon_sym_inline] = ACTIONS(4274), - [anon_sym___inline] = ACTIONS(4274), - [anon_sym___inline__] = ACTIONS(4274), - [anon_sym___forceinline] = ACTIONS(4274), - [anon_sym_thread_local] = ACTIONS(4274), - [anon_sym___thread] = ACTIONS(4274), - [anon_sym_const] = ACTIONS(4274), - [anon_sym_constexpr] = ACTIONS(4274), - [anon_sym_volatile] = ACTIONS(4274), - [anon_sym_restrict] = ACTIONS(4274), - [anon_sym___restrict__] = ACTIONS(4274), - [anon_sym__Atomic] = ACTIONS(4274), - [anon_sym__Noreturn] = ACTIONS(4274), - [anon_sym_noreturn] = ACTIONS(4274), - [anon_sym__Nonnull] = ACTIONS(4274), - [anon_sym_mutable] = ACTIONS(4274), - [anon_sym_constinit] = ACTIONS(4274), - [anon_sym_consteval] = ACTIONS(4274), - [anon_sym_alignas] = ACTIONS(4274), - [anon_sym__Alignas] = ACTIONS(4274), - [sym_primitive_type] = ACTIONS(4274), - [anon_sym_enum] = ACTIONS(4274), - [anon_sym_class] = ACTIONS(4274), - [anon_sym_struct] = ACTIONS(4274), - [anon_sym_union] = ACTIONS(4274), - [anon_sym_if] = ACTIONS(4274), - [anon_sym_switch] = ACTIONS(4274), - [anon_sym_case] = ACTIONS(4274), - [anon_sym_default] = ACTIONS(4274), - [anon_sym_while] = ACTIONS(4274), - [anon_sym_do] = ACTIONS(4274), - [anon_sym_for] = ACTIONS(4274), - [anon_sym_return] = ACTIONS(4274), - [anon_sym_break] = ACTIONS(4274), - [anon_sym_continue] = ACTIONS(4274), - [anon_sym_goto] = ACTIONS(4274), - [anon_sym_not] = ACTIONS(4274), - [anon_sym_compl] = ACTIONS(4274), - [anon_sym_DASH_DASH] = ACTIONS(4276), - [anon_sym_PLUS_PLUS] = ACTIONS(4276), - [anon_sym_sizeof] = ACTIONS(4274), - [anon_sym___alignof__] = ACTIONS(4274), - [anon_sym___alignof] = ACTIONS(4274), - [anon_sym__alignof] = ACTIONS(4274), - [anon_sym_alignof] = ACTIONS(4274), - [anon_sym__Alignof] = ACTIONS(4274), - [anon_sym_offsetof] = ACTIONS(4274), - [anon_sym__Generic] = ACTIONS(4274), - [anon_sym_typename] = ACTIONS(4274), - [anon_sym_asm] = ACTIONS(4274), - [anon_sym___asm__] = ACTIONS(4274), - [anon_sym___asm] = ACTIONS(4274), - [sym_number_literal] = ACTIONS(4276), - [anon_sym_L_SQUOTE] = ACTIONS(4276), - [anon_sym_u_SQUOTE] = ACTIONS(4276), - [anon_sym_U_SQUOTE] = ACTIONS(4276), - [anon_sym_u8_SQUOTE] = ACTIONS(4276), - [anon_sym_SQUOTE] = ACTIONS(4276), - [anon_sym_L_DQUOTE] = ACTIONS(4276), - [anon_sym_u_DQUOTE] = ACTIONS(4276), - [anon_sym_U_DQUOTE] = ACTIONS(4276), - [anon_sym_u8_DQUOTE] = ACTIONS(4276), - [anon_sym_DQUOTE] = ACTIONS(4276), - [sym_true] = ACTIONS(4274), - [sym_false] = ACTIONS(4274), - [anon_sym_NULL] = ACTIONS(4274), - [anon_sym_nullptr] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4274), - [anon_sym_decltype] = ACTIONS(4274), - [anon_sym_explicit] = ACTIONS(4274), - [anon_sym_export] = ACTIONS(4274), - [anon_sym_module] = ACTIONS(4274), - [anon_sym_import] = ACTIONS(4274), - [anon_sym_template] = ACTIONS(4274), - [anon_sym_operator] = ACTIONS(4274), - [anon_sym_try] = ACTIONS(4274), - [anon_sym_delete] = ACTIONS(4274), - [anon_sym_throw] = ACTIONS(4274), - [anon_sym_namespace] = ACTIONS(4274), - [anon_sym_static_assert] = ACTIONS(4274), - [anon_sym_concept] = ACTIONS(4274), - [anon_sym_co_return] = ACTIONS(4274), - [anon_sym_co_yield] = ACTIONS(4274), - [anon_sym_R_DQUOTE] = ACTIONS(4276), - [anon_sym_LR_DQUOTE] = ACTIONS(4276), - [anon_sym_uR_DQUOTE] = ACTIONS(4276), - [anon_sym_UR_DQUOTE] = ACTIONS(4276), - [anon_sym_u8R_DQUOTE] = ACTIONS(4276), - [anon_sym_co_await] = ACTIONS(4274), - [anon_sym_new] = ACTIONS(4274), - [anon_sym_requires] = ACTIONS(4274), - [anon_sym_CARET_CARET] = ACTIONS(4276), - [anon_sym_LBRACK_COLON] = ACTIONS(4276), - [sym_this] = ACTIONS(4274), - }, - [STATE(979)] = { - [ts_builtin_sym_end] = ACTIONS(4280), - [sym_identifier] = ACTIONS(4278), - [aux_sym_preproc_include_token1] = ACTIONS(4278), - [aux_sym_preproc_def_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token1] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), - [sym_preproc_directive] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_BANG] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4280), - [anon_sym_DASH] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_AMP] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym___extension__] = ACTIONS(4278), - [anon_sym_typedef] = ACTIONS(4278), - [anon_sym_virtual] = ACTIONS(4278), - [anon_sym_extern] = ACTIONS(4278), - [anon_sym___attribute__] = ACTIONS(4278), - [anon_sym___attribute] = ACTIONS(4278), - [anon_sym_using] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), - [anon_sym___declspec] = ACTIONS(4278), - [anon_sym___based] = ACTIONS(4278), - [anon_sym___cdecl] = ACTIONS(4278), - [anon_sym___clrcall] = ACTIONS(4278), - [anon_sym___stdcall] = ACTIONS(4278), - [anon_sym___fastcall] = ACTIONS(4278), - [anon_sym___thiscall] = ACTIONS(4278), - [anon_sym___vectorcall] = ACTIONS(4278), - [anon_sym_LBRACE] = ACTIONS(4280), - [anon_sym_signed] = ACTIONS(4278), - [anon_sym_unsigned] = ACTIONS(4278), - [anon_sym_long] = ACTIONS(4278), - [anon_sym_short] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_static] = ACTIONS(4278), - [anon_sym_register] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym___inline] = ACTIONS(4278), - [anon_sym___inline__] = ACTIONS(4278), - [anon_sym___forceinline] = ACTIONS(4278), - [anon_sym_thread_local] = ACTIONS(4278), - [anon_sym___thread] = ACTIONS(4278), - [anon_sym_const] = ACTIONS(4278), - [anon_sym_constexpr] = ACTIONS(4278), - [anon_sym_volatile] = ACTIONS(4278), - [anon_sym_restrict] = ACTIONS(4278), - [anon_sym___restrict__] = ACTIONS(4278), - [anon_sym__Atomic] = ACTIONS(4278), - [anon_sym__Noreturn] = ACTIONS(4278), - [anon_sym_noreturn] = ACTIONS(4278), - [anon_sym__Nonnull] = ACTIONS(4278), - [anon_sym_mutable] = ACTIONS(4278), - [anon_sym_constinit] = ACTIONS(4278), - [anon_sym_consteval] = ACTIONS(4278), - [anon_sym_alignas] = ACTIONS(4278), - [anon_sym__Alignas] = ACTIONS(4278), - [sym_primitive_type] = ACTIONS(4278), - [anon_sym_enum] = ACTIONS(4278), - [anon_sym_class] = ACTIONS(4278), - [anon_sym_struct] = ACTIONS(4278), - [anon_sym_union] = ACTIONS(4278), - [anon_sym_if] = ACTIONS(4278), - [anon_sym_switch] = ACTIONS(4278), - [anon_sym_case] = ACTIONS(4278), - [anon_sym_default] = ACTIONS(4278), - [anon_sym_while] = ACTIONS(4278), - [anon_sym_do] = ACTIONS(4278), - [anon_sym_for] = ACTIONS(4278), - [anon_sym_return] = ACTIONS(4278), - [anon_sym_break] = ACTIONS(4278), - [anon_sym_continue] = ACTIONS(4278), - [anon_sym_goto] = ACTIONS(4278), - [anon_sym_not] = ACTIONS(4278), - [anon_sym_compl] = ACTIONS(4278), - [anon_sym_DASH_DASH] = ACTIONS(4280), - [anon_sym_PLUS_PLUS] = ACTIONS(4280), - [anon_sym_sizeof] = ACTIONS(4278), - [anon_sym___alignof__] = ACTIONS(4278), - [anon_sym___alignof] = ACTIONS(4278), - [anon_sym__alignof] = ACTIONS(4278), - [anon_sym_alignof] = ACTIONS(4278), - [anon_sym__Alignof] = ACTIONS(4278), - [anon_sym_offsetof] = ACTIONS(4278), - [anon_sym__Generic] = ACTIONS(4278), - [anon_sym_typename] = ACTIONS(4278), - [anon_sym_asm] = ACTIONS(4278), - [anon_sym___asm__] = ACTIONS(4278), - [anon_sym___asm] = ACTIONS(4278), - [sym_number_literal] = ACTIONS(4280), - [anon_sym_L_SQUOTE] = ACTIONS(4280), - [anon_sym_u_SQUOTE] = ACTIONS(4280), - [anon_sym_U_SQUOTE] = ACTIONS(4280), - [anon_sym_u8_SQUOTE] = ACTIONS(4280), - [anon_sym_SQUOTE] = ACTIONS(4280), - [anon_sym_L_DQUOTE] = ACTIONS(4280), - [anon_sym_u_DQUOTE] = ACTIONS(4280), - [anon_sym_U_DQUOTE] = ACTIONS(4280), - [anon_sym_u8_DQUOTE] = ACTIONS(4280), - [anon_sym_DQUOTE] = ACTIONS(4280), - [sym_true] = ACTIONS(4278), - [sym_false] = ACTIONS(4278), - [anon_sym_NULL] = ACTIONS(4278), - [anon_sym_nullptr] = ACTIONS(4278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4278), - [anon_sym_decltype] = ACTIONS(4278), - [anon_sym_explicit] = ACTIONS(4278), - [anon_sym_export] = ACTIONS(4278), - [anon_sym_module] = ACTIONS(4278), - [anon_sym_import] = ACTIONS(4278), - [anon_sym_template] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_try] = ACTIONS(4278), - [anon_sym_delete] = ACTIONS(4278), - [anon_sym_throw] = ACTIONS(4278), - [anon_sym_namespace] = ACTIONS(4278), - [anon_sym_static_assert] = ACTIONS(4278), - [anon_sym_concept] = ACTIONS(4278), - [anon_sym_co_return] = ACTIONS(4278), - [anon_sym_co_yield] = ACTIONS(4278), - [anon_sym_R_DQUOTE] = ACTIONS(4280), - [anon_sym_LR_DQUOTE] = ACTIONS(4280), - [anon_sym_uR_DQUOTE] = ACTIONS(4280), - [anon_sym_UR_DQUOTE] = ACTIONS(4280), - [anon_sym_u8R_DQUOTE] = ACTIONS(4280), - [anon_sym_co_await] = ACTIONS(4278), - [anon_sym_new] = ACTIONS(4278), - [anon_sym_requires] = ACTIONS(4278), - [anon_sym_CARET_CARET] = ACTIONS(4280), - [anon_sym_LBRACK_COLON] = ACTIONS(4280), - [sym_this] = ACTIONS(4278), - }, - [STATE(980)] = { - [ts_builtin_sym_end] = ACTIONS(4498), - [sym_identifier] = ACTIONS(4496), - [aux_sym_preproc_include_token1] = ACTIONS(4496), - [aux_sym_preproc_def_token1] = ACTIONS(4496), - [aux_sym_preproc_if_token1] = ACTIONS(4496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4496), - [sym_preproc_directive] = ACTIONS(4496), - [anon_sym_LPAREN2] = ACTIONS(4498), - [anon_sym_BANG] = ACTIONS(4498), - [anon_sym_TILDE] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4496), - [anon_sym_PLUS] = ACTIONS(4496), - [anon_sym_STAR] = ACTIONS(4498), - [anon_sym_AMP_AMP] = ACTIONS(4498), - [anon_sym_AMP] = ACTIONS(4496), - [anon_sym_SEMI] = ACTIONS(4498), - [anon_sym___extension__] = ACTIONS(4496), - [anon_sym_typedef] = ACTIONS(4496), - [anon_sym_virtual] = ACTIONS(4496), - [anon_sym_extern] = ACTIONS(4496), - [anon_sym___attribute__] = ACTIONS(4496), - [anon_sym___attribute] = ACTIONS(4496), - [anon_sym_using] = ACTIONS(4496), - [anon_sym_COLON_COLON] = ACTIONS(4498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4498), - [anon_sym___declspec] = ACTIONS(4496), - [anon_sym___based] = ACTIONS(4496), - [anon_sym___cdecl] = ACTIONS(4496), - [anon_sym___clrcall] = ACTIONS(4496), - [anon_sym___stdcall] = ACTIONS(4496), - [anon_sym___fastcall] = ACTIONS(4496), - [anon_sym___thiscall] = ACTIONS(4496), - [anon_sym___vectorcall] = ACTIONS(4496), - [anon_sym_LBRACE] = ACTIONS(4498), - [anon_sym_signed] = ACTIONS(4496), - [anon_sym_unsigned] = ACTIONS(4496), - [anon_sym_long] = ACTIONS(4496), - [anon_sym_short] = ACTIONS(4496), - [anon_sym_LBRACK] = ACTIONS(4496), - [anon_sym_static] = ACTIONS(4496), - [anon_sym_register] = ACTIONS(4496), - [anon_sym_inline] = ACTIONS(4496), - [anon_sym___inline] = ACTIONS(4496), - [anon_sym___inline__] = ACTIONS(4496), - [anon_sym___forceinline] = ACTIONS(4496), - [anon_sym_thread_local] = ACTIONS(4496), - [anon_sym___thread] = ACTIONS(4496), - [anon_sym_const] = ACTIONS(4496), - [anon_sym_constexpr] = ACTIONS(4496), - [anon_sym_volatile] = ACTIONS(4496), - [anon_sym_restrict] = ACTIONS(4496), - [anon_sym___restrict__] = ACTIONS(4496), - [anon_sym__Atomic] = ACTIONS(4496), - [anon_sym__Noreturn] = ACTIONS(4496), - [anon_sym_noreturn] = ACTIONS(4496), - [anon_sym__Nonnull] = ACTIONS(4496), - [anon_sym_mutable] = ACTIONS(4496), - [anon_sym_constinit] = ACTIONS(4496), - [anon_sym_consteval] = ACTIONS(4496), - [anon_sym_alignas] = ACTIONS(4496), - [anon_sym__Alignas] = ACTIONS(4496), - [sym_primitive_type] = ACTIONS(4496), - [anon_sym_enum] = ACTIONS(4496), - [anon_sym_class] = ACTIONS(4496), - [anon_sym_struct] = ACTIONS(4496), - [anon_sym_union] = ACTIONS(4496), - [anon_sym_if] = ACTIONS(4496), - [anon_sym_switch] = ACTIONS(4496), - [anon_sym_case] = ACTIONS(4496), - [anon_sym_default] = ACTIONS(4496), - [anon_sym_while] = ACTIONS(4496), - [anon_sym_do] = ACTIONS(4496), - [anon_sym_for] = ACTIONS(4496), - [anon_sym_return] = ACTIONS(4496), - [anon_sym_break] = ACTIONS(4496), - [anon_sym_continue] = ACTIONS(4496), - [anon_sym_goto] = ACTIONS(4496), - [anon_sym_not] = ACTIONS(4496), - [anon_sym_compl] = ACTIONS(4496), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_PLUS_PLUS] = ACTIONS(4498), - [anon_sym_sizeof] = ACTIONS(4496), - [anon_sym___alignof__] = ACTIONS(4496), - [anon_sym___alignof] = ACTIONS(4496), - [anon_sym__alignof] = ACTIONS(4496), - [anon_sym_alignof] = ACTIONS(4496), - [anon_sym__Alignof] = ACTIONS(4496), - [anon_sym_offsetof] = ACTIONS(4496), - [anon_sym__Generic] = ACTIONS(4496), - [anon_sym_typename] = ACTIONS(4496), - [anon_sym_asm] = ACTIONS(4496), - [anon_sym___asm__] = ACTIONS(4496), - [anon_sym___asm] = ACTIONS(4496), - [sym_number_literal] = ACTIONS(4498), - [anon_sym_L_SQUOTE] = ACTIONS(4498), - [anon_sym_u_SQUOTE] = ACTIONS(4498), - [anon_sym_U_SQUOTE] = ACTIONS(4498), - [anon_sym_u8_SQUOTE] = ACTIONS(4498), - [anon_sym_SQUOTE] = ACTIONS(4498), - [anon_sym_L_DQUOTE] = ACTIONS(4498), - [anon_sym_u_DQUOTE] = ACTIONS(4498), - [anon_sym_U_DQUOTE] = ACTIONS(4498), - [anon_sym_u8_DQUOTE] = ACTIONS(4498), - [anon_sym_DQUOTE] = ACTIONS(4498), - [sym_true] = ACTIONS(4496), - [sym_false] = ACTIONS(4496), - [anon_sym_NULL] = ACTIONS(4496), - [anon_sym_nullptr] = ACTIONS(4496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4496), - [anon_sym_decltype] = ACTIONS(4496), - [anon_sym_explicit] = ACTIONS(4496), - [anon_sym_export] = ACTIONS(4496), - [anon_sym_module] = ACTIONS(4496), - [anon_sym_import] = ACTIONS(4496), - [anon_sym_template] = ACTIONS(4496), - [anon_sym_operator] = ACTIONS(4496), - [anon_sym_try] = ACTIONS(4496), - [anon_sym_delete] = ACTIONS(4496), - [anon_sym_throw] = ACTIONS(4496), - [anon_sym_namespace] = ACTIONS(4496), - [anon_sym_static_assert] = ACTIONS(4496), - [anon_sym_concept] = ACTIONS(4496), - [anon_sym_co_return] = ACTIONS(4496), - [anon_sym_co_yield] = ACTIONS(4496), - [anon_sym_R_DQUOTE] = ACTIONS(4498), - [anon_sym_LR_DQUOTE] = ACTIONS(4498), - [anon_sym_uR_DQUOTE] = ACTIONS(4498), - [anon_sym_UR_DQUOTE] = ACTIONS(4498), - [anon_sym_u8R_DQUOTE] = ACTIONS(4498), - [anon_sym_co_await] = ACTIONS(4496), - [anon_sym_new] = ACTIONS(4496), - [anon_sym_requires] = ACTIONS(4496), - [anon_sym_CARET_CARET] = ACTIONS(4498), - [anon_sym_LBRACK_COLON] = ACTIONS(4498), - [sym_this] = ACTIONS(4496), - }, - [STATE(981)] = { - [ts_builtin_sym_end] = ACTIONS(4528), - [sym_identifier] = ACTIONS(4526), - [aux_sym_preproc_include_token1] = ACTIONS(4526), - [aux_sym_preproc_def_token1] = ACTIONS(4526), - [aux_sym_preproc_if_token1] = ACTIONS(4526), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4526), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4526), - [sym_preproc_directive] = ACTIONS(4526), - [anon_sym_LPAREN2] = ACTIONS(4528), - [anon_sym_BANG] = ACTIONS(4528), - [anon_sym_TILDE] = ACTIONS(4528), - [anon_sym_DASH] = ACTIONS(4526), - [anon_sym_PLUS] = ACTIONS(4526), - [anon_sym_STAR] = ACTIONS(4528), - [anon_sym_AMP_AMP] = ACTIONS(4528), - [anon_sym_AMP] = ACTIONS(4526), - [anon_sym_SEMI] = ACTIONS(4528), - [anon_sym___extension__] = ACTIONS(4526), - [anon_sym_typedef] = ACTIONS(4526), - [anon_sym_virtual] = ACTIONS(4526), - [anon_sym_extern] = ACTIONS(4526), - [anon_sym___attribute__] = ACTIONS(4526), - [anon_sym___attribute] = ACTIONS(4526), - [anon_sym_using] = ACTIONS(4526), - [anon_sym_COLON_COLON] = ACTIONS(4528), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4528), - [anon_sym___declspec] = ACTIONS(4526), - [anon_sym___based] = ACTIONS(4526), - [anon_sym___cdecl] = ACTIONS(4526), - [anon_sym___clrcall] = ACTIONS(4526), - [anon_sym___stdcall] = ACTIONS(4526), - [anon_sym___fastcall] = ACTIONS(4526), - [anon_sym___thiscall] = ACTIONS(4526), - [anon_sym___vectorcall] = ACTIONS(4526), - [anon_sym_LBRACE] = ACTIONS(4528), - [anon_sym_signed] = ACTIONS(4526), - [anon_sym_unsigned] = ACTIONS(4526), - [anon_sym_long] = ACTIONS(4526), - [anon_sym_short] = ACTIONS(4526), - [anon_sym_LBRACK] = ACTIONS(4526), - [anon_sym_static] = ACTIONS(4526), - [anon_sym_register] = ACTIONS(4526), - [anon_sym_inline] = ACTIONS(4526), - [anon_sym___inline] = ACTIONS(4526), - [anon_sym___inline__] = ACTIONS(4526), - [anon_sym___forceinline] = ACTIONS(4526), - [anon_sym_thread_local] = ACTIONS(4526), - [anon_sym___thread] = ACTIONS(4526), - [anon_sym_const] = ACTIONS(4526), - [anon_sym_constexpr] = ACTIONS(4526), - [anon_sym_volatile] = ACTIONS(4526), - [anon_sym_restrict] = ACTIONS(4526), - [anon_sym___restrict__] = ACTIONS(4526), - [anon_sym__Atomic] = ACTIONS(4526), - [anon_sym__Noreturn] = ACTIONS(4526), - [anon_sym_noreturn] = ACTIONS(4526), - [anon_sym__Nonnull] = ACTIONS(4526), - [anon_sym_mutable] = ACTIONS(4526), - [anon_sym_constinit] = ACTIONS(4526), - [anon_sym_consteval] = ACTIONS(4526), - [anon_sym_alignas] = ACTIONS(4526), - [anon_sym__Alignas] = ACTIONS(4526), - [sym_primitive_type] = ACTIONS(4526), - [anon_sym_enum] = ACTIONS(4526), - [anon_sym_class] = ACTIONS(4526), - [anon_sym_struct] = ACTIONS(4526), - [anon_sym_union] = ACTIONS(4526), - [anon_sym_if] = ACTIONS(4526), - [anon_sym_switch] = ACTIONS(4526), - [anon_sym_case] = ACTIONS(4526), - [anon_sym_default] = ACTIONS(4526), - [anon_sym_while] = ACTIONS(4526), - [anon_sym_do] = ACTIONS(4526), - [anon_sym_for] = ACTIONS(4526), - [anon_sym_return] = ACTIONS(4526), - [anon_sym_break] = ACTIONS(4526), - [anon_sym_continue] = ACTIONS(4526), - [anon_sym_goto] = ACTIONS(4526), - [anon_sym_not] = ACTIONS(4526), - [anon_sym_compl] = ACTIONS(4526), - [anon_sym_DASH_DASH] = ACTIONS(4528), - [anon_sym_PLUS_PLUS] = ACTIONS(4528), - [anon_sym_sizeof] = ACTIONS(4526), - [anon_sym___alignof__] = ACTIONS(4526), - [anon_sym___alignof] = ACTIONS(4526), - [anon_sym__alignof] = ACTIONS(4526), - [anon_sym_alignof] = ACTIONS(4526), - [anon_sym__Alignof] = ACTIONS(4526), - [anon_sym_offsetof] = ACTIONS(4526), - [anon_sym__Generic] = ACTIONS(4526), - [anon_sym_typename] = ACTIONS(4526), - [anon_sym_asm] = ACTIONS(4526), - [anon_sym___asm__] = ACTIONS(4526), - [anon_sym___asm] = ACTIONS(4526), - [sym_number_literal] = ACTIONS(4528), - [anon_sym_L_SQUOTE] = ACTIONS(4528), - [anon_sym_u_SQUOTE] = ACTIONS(4528), - [anon_sym_U_SQUOTE] = ACTIONS(4528), - [anon_sym_u8_SQUOTE] = ACTIONS(4528), - [anon_sym_SQUOTE] = ACTIONS(4528), - [anon_sym_L_DQUOTE] = ACTIONS(4528), - [anon_sym_u_DQUOTE] = ACTIONS(4528), - [anon_sym_U_DQUOTE] = ACTIONS(4528), - [anon_sym_u8_DQUOTE] = ACTIONS(4528), - [anon_sym_DQUOTE] = ACTIONS(4528), - [sym_true] = ACTIONS(4526), - [sym_false] = ACTIONS(4526), - [anon_sym_NULL] = ACTIONS(4526), - [anon_sym_nullptr] = ACTIONS(4526), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4526), - [anon_sym_decltype] = ACTIONS(4526), - [anon_sym_explicit] = ACTIONS(4526), - [anon_sym_export] = ACTIONS(4526), - [anon_sym_module] = ACTIONS(4526), - [anon_sym_import] = ACTIONS(4526), - [anon_sym_template] = ACTIONS(4526), - [anon_sym_operator] = ACTIONS(4526), - [anon_sym_try] = ACTIONS(4526), - [anon_sym_delete] = ACTIONS(4526), - [anon_sym_throw] = ACTIONS(4526), - [anon_sym_namespace] = ACTIONS(4526), - [anon_sym_static_assert] = ACTIONS(4526), - [anon_sym_concept] = ACTIONS(4526), - [anon_sym_co_return] = ACTIONS(4526), - [anon_sym_co_yield] = ACTIONS(4526), - [anon_sym_R_DQUOTE] = ACTIONS(4528), - [anon_sym_LR_DQUOTE] = ACTIONS(4528), - [anon_sym_uR_DQUOTE] = ACTIONS(4528), - [anon_sym_UR_DQUOTE] = ACTIONS(4528), - [anon_sym_u8R_DQUOTE] = ACTIONS(4528), - [anon_sym_co_await] = ACTIONS(4526), - [anon_sym_new] = ACTIONS(4526), - [anon_sym_requires] = ACTIONS(4526), - [anon_sym_CARET_CARET] = ACTIONS(4528), - [anon_sym_LBRACK_COLON] = ACTIONS(4528), - [sym_this] = ACTIONS(4526), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(982)] = { - [ts_builtin_sym_end] = ACTIONS(4284), - [sym_identifier] = ACTIONS(4282), - [aux_sym_preproc_include_token1] = ACTIONS(4282), - [aux_sym_preproc_def_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token1] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), - [sym_preproc_directive] = ACTIONS(4282), - [anon_sym_LPAREN2] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4282), - [anon_sym_PLUS] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(4284), - [anon_sym_AMP_AMP] = ACTIONS(4284), - [anon_sym_AMP] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4284), - [anon_sym___extension__] = ACTIONS(4282), - [anon_sym_typedef] = ACTIONS(4282), - [anon_sym_virtual] = ACTIONS(4282), - [anon_sym_extern] = ACTIONS(4282), - [anon_sym___attribute__] = ACTIONS(4282), - [anon_sym___attribute] = ACTIONS(4282), - [anon_sym_using] = ACTIONS(4282), - [anon_sym_COLON_COLON] = ACTIONS(4284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4282), - [anon_sym___based] = ACTIONS(4282), - [anon_sym___cdecl] = ACTIONS(4282), - [anon_sym___clrcall] = ACTIONS(4282), - [anon_sym___stdcall] = ACTIONS(4282), - [anon_sym___fastcall] = ACTIONS(4282), - [anon_sym___thiscall] = ACTIONS(4282), - [anon_sym___vectorcall] = ACTIONS(4282), - [anon_sym_LBRACE] = ACTIONS(4284), - [anon_sym_signed] = ACTIONS(4282), - [anon_sym_unsigned] = ACTIONS(4282), - [anon_sym_long] = ACTIONS(4282), - [anon_sym_short] = ACTIONS(4282), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_static] = ACTIONS(4282), - [anon_sym_register] = ACTIONS(4282), - [anon_sym_inline] = ACTIONS(4282), - [anon_sym___inline] = ACTIONS(4282), - [anon_sym___inline__] = ACTIONS(4282), - [anon_sym___forceinline] = ACTIONS(4282), - [anon_sym_thread_local] = ACTIONS(4282), - [anon_sym___thread] = ACTIONS(4282), - [anon_sym_const] = ACTIONS(4282), - [anon_sym_constexpr] = ACTIONS(4282), - [anon_sym_volatile] = ACTIONS(4282), - [anon_sym_restrict] = ACTIONS(4282), - [anon_sym___restrict__] = ACTIONS(4282), - [anon_sym__Atomic] = ACTIONS(4282), - [anon_sym__Noreturn] = ACTIONS(4282), - [anon_sym_noreturn] = ACTIONS(4282), - [anon_sym__Nonnull] = ACTIONS(4282), - [anon_sym_mutable] = ACTIONS(4282), - [anon_sym_constinit] = ACTIONS(4282), - [anon_sym_consteval] = ACTIONS(4282), - [anon_sym_alignas] = ACTIONS(4282), - [anon_sym__Alignas] = ACTIONS(4282), - [sym_primitive_type] = ACTIONS(4282), - [anon_sym_enum] = ACTIONS(4282), - [anon_sym_class] = ACTIONS(4282), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_union] = ACTIONS(4282), - [anon_sym_if] = ACTIONS(4282), - [anon_sym_switch] = ACTIONS(4282), - [anon_sym_case] = ACTIONS(4282), - [anon_sym_default] = ACTIONS(4282), - [anon_sym_while] = ACTIONS(4282), - [anon_sym_do] = ACTIONS(4282), - [anon_sym_for] = ACTIONS(4282), - [anon_sym_return] = ACTIONS(4282), - [anon_sym_break] = ACTIONS(4282), - [anon_sym_continue] = ACTIONS(4282), - [anon_sym_goto] = ACTIONS(4282), - [anon_sym_not] = ACTIONS(4282), - [anon_sym_compl] = ACTIONS(4282), - [anon_sym_DASH_DASH] = ACTIONS(4284), - [anon_sym_PLUS_PLUS] = ACTIONS(4284), - [anon_sym_sizeof] = ACTIONS(4282), - [anon_sym___alignof__] = ACTIONS(4282), - [anon_sym___alignof] = ACTIONS(4282), - [anon_sym__alignof] = ACTIONS(4282), - [anon_sym_alignof] = ACTIONS(4282), - [anon_sym__Alignof] = ACTIONS(4282), - [anon_sym_offsetof] = ACTIONS(4282), - [anon_sym__Generic] = ACTIONS(4282), - [anon_sym_typename] = ACTIONS(4282), - [anon_sym_asm] = ACTIONS(4282), - [anon_sym___asm__] = ACTIONS(4282), - [anon_sym___asm] = ACTIONS(4282), - [sym_number_literal] = ACTIONS(4284), - [anon_sym_L_SQUOTE] = ACTIONS(4284), - [anon_sym_u_SQUOTE] = ACTIONS(4284), - [anon_sym_U_SQUOTE] = ACTIONS(4284), - [anon_sym_u8_SQUOTE] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4284), - [anon_sym_L_DQUOTE] = ACTIONS(4284), - [anon_sym_u_DQUOTE] = ACTIONS(4284), - [anon_sym_U_DQUOTE] = ACTIONS(4284), - [anon_sym_u8_DQUOTE] = ACTIONS(4284), - [anon_sym_DQUOTE] = ACTIONS(4284), - [sym_true] = ACTIONS(4282), - [sym_false] = ACTIONS(4282), - [anon_sym_NULL] = ACTIONS(4282), - [anon_sym_nullptr] = ACTIONS(4282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4282), - [anon_sym_decltype] = ACTIONS(4282), - [anon_sym_explicit] = ACTIONS(4282), - [anon_sym_export] = ACTIONS(4282), - [anon_sym_module] = ACTIONS(4282), - [anon_sym_import] = ACTIONS(4282), - [anon_sym_template] = ACTIONS(4282), - [anon_sym_operator] = ACTIONS(4282), - [anon_sym_try] = ACTIONS(4282), - [anon_sym_delete] = ACTIONS(4282), - [anon_sym_throw] = ACTIONS(4282), - [anon_sym_namespace] = ACTIONS(4282), - [anon_sym_static_assert] = ACTIONS(4282), - [anon_sym_concept] = ACTIONS(4282), - [anon_sym_co_return] = ACTIONS(4282), - [anon_sym_co_yield] = ACTIONS(4282), - [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(4282), - [anon_sym_new] = ACTIONS(4282), - [anon_sym_requires] = ACTIONS(4282), - [anon_sym_CARET_CARET] = ACTIONS(4284), - [anon_sym_LBRACK_COLON] = ACTIONS(4284), - [sym_this] = ACTIONS(4282), + [ts_builtin_sym_end] = ACTIONS(4273), + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym___cdecl] = ACTIONS(4271), + [anon_sym___clrcall] = ACTIONS(4271), + [anon_sym___stdcall] = ACTIONS(4271), + [anon_sym___fastcall] = ACTIONS(4271), + [anon_sym___thiscall] = ACTIONS(4271), + [anon_sym___vectorcall] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_switch] = ACTIONS(4271), + [anon_sym_case] = ACTIONS(4271), + [anon_sym_default] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_do] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_goto] = ACTIONS(4271), + [anon_sym_not] = ACTIONS(4271), + [anon_sym_compl] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_sizeof] = ACTIONS(4271), + [anon_sym___alignof__] = ACTIONS(4271), + [anon_sym___alignof] = ACTIONS(4271), + [anon_sym__alignof] = ACTIONS(4271), + [anon_sym_alignof] = ACTIONS(4271), + [anon_sym__Alignof] = ACTIONS(4271), + [anon_sym_offsetof] = ACTIONS(4271), + [anon_sym__Generic] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [anon_sym_asm] = ACTIONS(4271), + [anon_sym___asm__] = ACTIONS(4271), + [anon_sym___asm] = ACTIONS(4271), + [sym_number_literal] = ACTIONS(4273), + [anon_sym_L_SQUOTE] = ACTIONS(4273), + [anon_sym_u_SQUOTE] = ACTIONS(4273), + [anon_sym_U_SQUOTE] = ACTIONS(4273), + [anon_sym_u8_SQUOTE] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4273), + [anon_sym_L_DQUOTE] = ACTIONS(4273), + [anon_sym_u_DQUOTE] = ACTIONS(4273), + [anon_sym_U_DQUOTE] = ACTIONS(4273), + [anon_sym_u8_DQUOTE] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(4273), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [anon_sym_NULL] = ACTIONS(4271), + [anon_sym_nullptr] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_export] = ACTIONS(4271), + [anon_sym_module] = ACTIONS(4271), + [anon_sym_import] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_delete] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_namespace] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_concept] = ACTIONS(4271), + [anon_sym_co_return] = ACTIONS(4271), + [anon_sym_co_yield] = ACTIONS(4271), + [anon_sym_R_DQUOTE] = ACTIONS(4273), + [anon_sym_LR_DQUOTE] = ACTIONS(4273), + [anon_sym_uR_DQUOTE] = ACTIONS(4273), + [anon_sym_UR_DQUOTE] = ACTIONS(4273), + [anon_sym_u8R_DQUOTE] = ACTIONS(4273), + [anon_sym_co_await] = ACTIONS(4271), + [anon_sym_new] = ACTIONS(4271), + [anon_sym_requires] = ACTIONS(4271), + [anon_sym_CARET_CARET] = ACTIONS(4273), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), + [sym_this] = ACTIONS(4271), }, [STATE(983)] = { - [ts_builtin_sym_end] = ACTIONS(4030), - [sym_identifier] = ACTIONS(4028), - [aux_sym_preproc_include_token1] = ACTIONS(4028), - [aux_sym_preproc_def_token1] = ACTIONS(4028), - [aux_sym_preproc_if_token1] = ACTIONS(4028), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4028), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4028), - [sym_preproc_directive] = ACTIONS(4028), - [anon_sym_LPAREN2] = ACTIONS(4030), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4028), - [anon_sym_PLUS] = ACTIONS(4028), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_AMP_AMP] = ACTIONS(4030), - [anon_sym_AMP] = ACTIONS(4028), - [anon_sym_SEMI] = ACTIONS(4030), - [anon_sym___extension__] = ACTIONS(4028), - [anon_sym_typedef] = ACTIONS(4028), - [anon_sym_virtual] = ACTIONS(4028), - [anon_sym_extern] = ACTIONS(4028), - [anon_sym___attribute__] = ACTIONS(4028), - [anon_sym___attribute] = ACTIONS(4028), - [anon_sym_using] = ACTIONS(4028), - [anon_sym_COLON_COLON] = ACTIONS(4030), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4030), - [anon_sym___declspec] = ACTIONS(4028), - [anon_sym___based] = ACTIONS(4028), - [anon_sym___cdecl] = ACTIONS(4028), - [anon_sym___clrcall] = ACTIONS(4028), - [anon_sym___stdcall] = ACTIONS(4028), - [anon_sym___fastcall] = ACTIONS(4028), - [anon_sym___thiscall] = ACTIONS(4028), - [anon_sym___vectorcall] = ACTIONS(4028), - [anon_sym_LBRACE] = ACTIONS(4030), - [anon_sym_signed] = ACTIONS(4028), - [anon_sym_unsigned] = ACTIONS(4028), - [anon_sym_long] = ACTIONS(4028), - [anon_sym_short] = ACTIONS(4028), - [anon_sym_LBRACK] = ACTIONS(4028), - [anon_sym_static] = ACTIONS(4028), - [anon_sym_register] = ACTIONS(4028), - [anon_sym_inline] = ACTIONS(4028), - [anon_sym___inline] = ACTIONS(4028), - [anon_sym___inline__] = ACTIONS(4028), - [anon_sym___forceinline] = ACTIONS(4028), - [anon_sym_thread_local] = ACTIONS(4028), - [anon_sym___thread] = ACTIONS(4028), - [anon_sym_const] = ACTIONS(4028), - [anon_sym_constexpr] = ACTIONS(4028), - [anon_sym_volatile] = ACTIONS(4028), - [anon_sym_restrict] = ACTIONS(4028), - [anon_sym___restrict__] = ACTIONS(4028), - [anon_sym__Atomic] = ACTIONS(4028), - [anon_sym__Noreturn] = ACTIONS(4028), - [anon_sym_noreturn] = ACTIONS(4028), - [anon_sym__Nonnull] = ACTIONS(4028), - [anon_sym_mutable] = ACTIONS(4028), - [anon_sym_constinit] = ACTIONS(4028), - [anon_sym_consteval] = ACTIONS(4028), - [anon_sym_alignas] = ACTIONS(4028), - [anon_sym__Alignas] = ACTIONS(4028), - [sym_primitive_type] = ACTIONS(4028), - [anon_sym_enum] = ACTIONS(4028), - [anon_sym_class] = ACTIONS(4028), - [anon_sym_struct] = ACTIONS(4028), - [anon_sym_union] = ACTIONS(4028), - [anon_sym_if] = ACTIONS(4028), - [anon_sym_switch] = ACTIONS(4028), - [anon_sym_case] = ACTIONS(4028), - [anon_sym_default] = ACTIONS(4028), - [anon_sym_while] = ACTIONS(4028), - [anon_sym_do] = ACTIONS(4028), - [anon_sym_for] = ACTIONS(4028), - [anon_sym_return] = ACTIONS(4028), - [anon_sym_break] = ACTIONS(4028), - [anon_sym_continue] = ACTIONS(4028), - [anon_sym_goto] = ACTIONS(4028), - [anon_sym_not] = ACTIONS(4028), - [anon_sym_compl] = ACTIONS(4028), - [anon_sym_DASH_DASH] = ACTIONS(4030), - [anon_sym_PLUS_PLUS] = ACTIONS(4030), - [anon_sym_sizeof] = ACTIONS(4028), - [anon_sym___alignof__] = ACTIONS(4028), - [anon_sym___alignof] = ACTIONS(4028), - [anon_sym__alignof] = ACTIONS(4028), - [anon_sym_alignof] = ACTIONS(4028), - [anon_sym__Alignof] = ACTIONS(4028), - [anon_sym_offsetof] = ACTIONS(4028), - [anon_sym__Generic] = ACTIONS(4028), - [anon_sym_typename] = ACTIONS(4028), - [anon_sym_asm] = ACTIONS(4028), - [anon_sym___asm__] = ACTIONS(4028), - [anon_sym___asm] = ACTIONS(4028), - [sym_number_literal] = ACTIONS(4030), - [anon_sym_L_SQUOTE] = ACTIONS(4030), - [anon_sym_u_SQUOTE] = ACTIONS(4030), - [anon_sym_U_SQUOTE] = ACTIONS(4030), - [anon_sym_u8_SQUOTE] = ACTIONS(4030), - [anon_sym_SQUOTE] = ACTIONS(4030), - [anon_sym_L_DQUOTE] = ACTIONS(4030), - [anon_sym_u_DQUOTE] = ACTIONS(4030), - [anon_sym_U_DQUOTE] = ACTIONS(4030), - [anon_sym_u8_DQUOTE] = ACTIONS(4030), - [anon_sym_DQUOTE] = ACTIONS(4030), - [sym_true] = ACTIONS(4028), - [sym_false] = ACTIONS(4028), - [anon_sym_NULL] = ACTIONS(4028), - [anon_sym_nullptr] = ACTIONS(4028), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4028), - [anon_sym_decltype] = ACTIONS(4028), - [anon_sym_explicit] = ACTIONS(4028), - [anon_sym_export] = ACTIONS(4028), - [anon_sym_module] = ACTIONS(4028), - [anon_sym_import] = ACTIONS(4028), - [anon_sym_template] = ACTIONS(4028), - [anon_sym_operator] = ACTIONS(4028), - [anon_sym_try] = ACTIONS(4028), - [anon_sym_delete] = ACTIONS(4028), - [anon_sym_throw] = ACTIONS(4028), - [anon_sym_namespace] = ACTIONS(4028), - [anon_sym_static_assert] = ACTIONS(4028), - [anon_sym_concept] = ACTIONS(4028), - [anon_sym_co_return] = ACTIONS(4028), - [anon_sym_co_yield] = ACTIONS(4028), - [anon_sym_R_DQUOTE] = ACTIONS(4030), - [anon_sym_LR_DQUOTE] = ACTIONS(4030), - [anon_sym_uR_DQUOTE] = ACTIONS(4030), - [anon_sym_UR_DQUOTE] = ACTIONS(4030), - [anon_sym_u8R_DQUOTE] = ACTIONS(4030), - [anon_sym_co_await] = ACTIONS(4028), - [anon_sym_new] = ACTIONS(4028), - [anon_sym_requires] = ACTIONS(4028), - [anon_sym_CARET_CARET] = ACTIONS(4030), - [anon_sym_LBRACK_COLON] = ACTIONS(4030), - [sym_this] = ACTIONS(4028), + [sym_preproc_def] = STATE(985), + [sym_preproc_function_def] = STATE(985), + [sym_preproc_call] = STATE(985), + [sym_preproc_if_in_field_declaration_list] = STATE(985), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(985), + [sym_type_definition] = STATE(985), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(985), + [sym_field_declaration] = STATE(985), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(985), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(985), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(985), + [sym_operator_cast_declaration] = STATE(985), + [sym_constructor_or_destructor_definition] = STATE(985), + [sym_constructor_or_destructor_declaration] = STATE(985), + [sym_friend_declaration] = STATE(985), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(985), + [sym_alias_declaration] = STATE(985), + [sym_static_assert_declaration] = STATE(985), + [sym_consteval_block_declaration] = STATE(985), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(985), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4878), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_signed] = ACTIONS(59), + [anon_sym_unsigned] = ACTIONS(59), + [anon_sym_long] = ACTIONS(59), + [anon_sym_short] = ACTIONS(59), + [anon_sym_LBRACK] = ACTIONS(3458), + [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(4702), + [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(4704), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(984)] = { - [ts_builtin_sym_end] = ACTIONS(4034), - [sym_identifier] = ACTIONS(4032), - [aux_sym_preproc_include_token1] = ACTIONS(4032), - [aux_sym_preproc_def_token1] = ACTIONS(4032), - [aux_sym_preproc_if_token1] = ACTIONS(4032), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4032), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4032), - [sym_preproc_directive] = ACTIONS(4032), - [anon_sym_LPAREN2] = ACTIONS(4034), - [anon_sym_BANG] = ACTIONS(4034), - [anon_sym_TILDE] = ACTIONS(4034), - [anon_sym_DASH] = ACTIONS(4032), - [anon_sym_PLUS] = ACTIONS(4032), - [anon_sym_STAR] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4032), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym___extension__] = ACTIONS(4032), - [anon_sym_typedef] = ACTIONS(4032), - [anon_sym_virtual] = ACTIONS(4032), - [anon_sym_extern] = ACTIONS(4032), - [anon_sym___attribute__] = ACTIONS(4032), - [anon_sym___attribute] = ACTIONS(4032), - [anon_sym_using] = ACTIONS(4032), - [anon_sym_COLON_COLON] = ACTIONS(4034), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4034), - [anon_sym___declspec] = ACTIONS(4032), - [anon_sym___based] = ACTIONS(4032), - [anon_sym___cdecl] = ACTIONS(4032), - [anon_sym___clrcall] = ACTIONS(4032), - [anon_sym___stdcall] = ACTIONS(4032), - [anon_sym___fastcall] = ACTIONS(4032), - [anon_sym___thiscall] = ACTIONS(4032), - [anon_sym___vectorcall] = ACTIONS(4032), - [anon_sym_LBRACE] = ACTIONS(4034), - [anon_sym_signed] = ACTIONS(4032), - [anon_sym_unsigned] = ACTIONS(4032), - [anon_sym_long] = ACTIONS(4032), - [anon_sym_short] = ACTIONS(4032), - [anon_sym_LBRACK] = ACTIONS(4032), - [anon_sym_static] = ACTIONS(4032), - [anon_sym_register] = ACTIONS(4032), - [anon_sym_inline] = ACTIONS(4032), - [anon_sym___inline] = ACTIONS(4032), - [anon_sym___inline__] = ACTIONS(4032), - [anon_sym___forceinline] = ACTIONS(4032), - [anon_sym_thread_local] = ACTIONS(4032), - [anon_sym___thread] = ACTIONS(4032), - [anon_sym_const] = ACTIONS(4032), - [anon_sym_constexpr] = ACTIONS(4032), - [anon_sym_volatile] = ACTIONS(4032), - [anon_sym_restrict] = ACTIONS(4032), - [anon_sym___restrict__] = ACTIONS(4032), - [anon_sym__Atomic] = ACTIONS(4032), - [anon_sym__Noreturn] = ACTIONS(4032), - [anon_sym_noreturn] = ACTIONS(4032), - [anon_sym__Nonnull] = ACTIONS(4032), - [anon_sym_mutable] = ACTIONS(4032), - [anon_sym_constinit] = ACTIONS(4032), - [anon_sym_consteval] = ACTIONS(4032), - [anon_sym_alignas] = ACTIONS(4032), - [anon_sym__Alignas] = ACTIONS(4032), - [sym_primitive_type] = ACTIONS(4032), - [anon_sym_enum] = ACTIONS(4032), - [anon_sym_class] = ACTIONS(4032), - [anon_sym_struct] = ACTIONS(4032), - [anon_sym_union] = ACTIONS(4032), - [anon_sym_if] = ACTIONS(4032), - [anon_sym_switch] = ACTIONS(4032), - [anon_sym_case] = ACTIONS(4032), - [anon_sym_default] = ACTIONS(4032), - [anon_sym_while] = ACTIONS(4032), - [anon_sym_do] = ACTIONS(4032), - [anon_sym_for] = ACTIONS(4032), - [anon_sym_return] = ACTIONS(4032), - [anon_sym_break] = ACTIONS(4032), - [anon_sym_continue] = ACTIONS(4032), - [anon_sym_goto] = ACTIONS(4032), - [anon_sym_not] = ACTIONS(4032), - [anon_sym_compl] = ACTIONS(4032), - [anon_sym_DASH_DASH] = ACTIONS(4034), - [anon_sym_PLUS_PLUS] = ACTIONS(4034), - [anon_sym_sizeof] = ACTIONS(4032), - [anon_sym___alignof__] = ACTIONS(4032), - [anon_sym___alignof] = ACTIONS(4032), - [anon_sym__alignof] = ACTIONS(4032), - [anon_sym_alignof] = ACTIONS(4032), - [anon_sym__Alignof] = ACTIONS(4032), - [anon_sym_offsetof] = ACTIONS(4032), - [anon_sym__Generic] = ACTIONS(4032), - [anon_sym_typename] = ACTIONS(4032), - [anon_sym_asm] = ACTIONS(4032), - [anon_sym___asm__] = ACTIONS(4032), - [anon_sym___asm] = ACTIONS(4032), - [sym_number_literal] = ACTIONS(4034), - [anon_sym_L_SQUOTE] = ACTIONS(4034), - [anon_sym_u_SQUOTE] = ACTIONS(4034), - [anon_sym_U_SQUOTE] = ACTIONS(4034), - [anon_sym_u8_SQUOTE] = ACTIONS(4034), - [anon_sym_SQUOTE] = ACTIONS(4034), - [anon_sym_L_DQUOTE] = ACTIONS(4034), - [anon_sym_u_DQUOTE] = ACTIONS(4034), - [anon_sym_U_DQUOTE] = ACTIONS(4034), - [anon_sym_u8_DQUOTE] = ACTIONS(4034), - [anon_sym_DQUOTE] = ACTIONS(4034), - [sym_true] = ACTIONS(4032), - [sym_false] = ACTIONS(4032), - [anon_sym_NULL] = ACTIONS(4032), - [anon_sym_nullptr] = ACTIONS(4032), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4032), - [anon_sym_decltype] = ACTIONS(4032), - [anon_sym_explicit] = ACTIONS(4032), - [anon_sym_export] = ACTIONS(4032), - [anon_sym_module] = ACTIONS(4032), - [anon_sym_import] = ACTIONS(4032), - [anon_sym_template] = ACTIONS(4032), - [anon_sym_operator] = ACTIONS(4032), - [anon_sym_try] = ACTIONS(4032), - [anon_sym_delete] = ACTIONS(4032), - [anon_sym_throw] = ACTIONS(4032), - [anon_sym_namespace] = ACTIONS(4032), - [anon_sym_static_assert] = ACTIONS(4032), - [anon_sym_concept] = ACTIONS(4032), - [anon_sym_co_return] = ACTIONS(4032), - [anon_sym_co_yield] = ACTIONS(4032), - [anon_sym_R_DQUOTE] = ACTIONS(4034), - [anon_sym_LR_DQUOTE] = ACTIONS(4034), - [anon_sym_uR_DQUOTE] = ACTIONS(4034), - [anon_sym_UR_DQUOTE] = ACTIONS(4034), - [anon_sym_u8R_DQUOTE] = ACTIONS(4034), - [anon_sym_co_await] = ACTIONS(4032), - [anon_sym_new] = ACTIONS(4032), - [anon_sym_requires] = ACTIONS(4032), - [anon_sym_CARET_CARET] = ACTIONS(4034), - [anon_sym_LBRACK_COLON] = ACTIONS(4034), - [sym_this] = ACTIONS(4032), + [ts_builtin_sym_end] = ACTIONS(4273), + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_include_token1] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_BANG] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_DASH] = ACTIONS(4271), + [anon_sym_PLUS] = ACTIONS(4271), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym___cdecl] = ACTIONS(4271), + [anon_sym___clrcall] = ACTIONS(4271), + [anon_sym___stdcall] = ACTIONS(4271), + [anon_sym___fastcall] = ACTIONS(4271), + [anon_sym___thiscall] = ACTIONS(4271), + [anon_sym___vectorcall] = ACTIONS(4271), + [anon_sym_LBRACE] = ACTIONS(4273), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_if] = ACTIONS(4271), + [anon_sym_switch] = ACTIONS(4271), + [anon_sym_case] = ACTIONS(4271), + [anon_sym_default] = ACTIONS(4271), + [anon_sym_while] = ACTIONS(4271), + [anon_sym_do] = ACTIONS(4271), + [anon_sym_for] = ACTIONS(4271), + [anon_sym_return] = ACTIONS(4271), + [anon_sym_break] = ACTIONS(4271), + [anon_sym_continue] = ACTIONS(4271), + [anon_sym_goto] = ACTIONS(4271), + [anon_sym_not] = ACTIONS(4271), + [anon_sym_compl] = ACTIONS(4271), + [anon_sym_DASH_DASH] = ACTIONS(4273), + [anon_sym_PLUS_PLUS] = ACTIONS(4273), + [anon_sym_sizeof] = ACTIONS(4271), + [anon_sym___alignof__] = ACTIONS(4271), + [anon_sym___alignof] = ACTIONS(4271), + [anon_sym__alignof] = ACTIONS(4271), + [anon_sym_alignof] = ACTIONS(4271), + [anon_sym__Alignof] = ACTIONS(4271), + [anon_sym_offsetof] = ACTIONS(4271), + [anon_sym__Generic] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [anon_sym_asm] = ACTIONS(4271), + [anon_sym___asm__] = ACTIONS(4271), + [anon_sym___asm] = ACTIONS(4271), + [sym_number_literal] = ACTIONS(4273), + [anon_sym_L_SQUOTE] = ACTIONS(4273), + [anon_sym_u_SQUOTE] = ACTIONS(4273), + [anon_sym_U_SQUOTE] = ACTIONS(4273), + [anon_sym_u8_SQUOTE] = ACTIONS(4273), + [anon_sym_SQUOTE] = ACTIONS(4273), + [anon_sym_L_DQUOTE] = ACTIONS(4273), + [anon_sym_u_DQUOTE] = ACTIONS(4273), + [anon_sym_U_DQUOTE] = ACTIONS(4273), + [anon_sym_u8_DQUOTE] = ACTIONS(4273), + [anon_sym_DQUOTE] = ACTIONS(4273), + [sym_true] = ACTIONS(4271), + [sym_false] = ACTIONS(4271), + [anon_sym_NULL] = ACTIONS(4271), + [anon_sym_nullptr] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_export] = ACTIONS(4271), + [anon_sym_module] = ACTIONS(4271), + [anon_sym_import] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_try] = ACTIONS(4271), + [anon_sym_delete] = ACTIONS(4271), + [anon_sym_throw] = ACTIONS(4271), + [anon_sym_namespace] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_concept] = ACTIONS(4271), + [anon_sym_co_return] = ACTIONS(4271), + [anon_sym_co_yield] = ACTIONS(4271), + [anon_sym_R_DQUOTE] = ACTIONS(4273), + [anon_sym_LR_DQUOTE] = ACTIONS(4273), + [anon_sym_uR_DQUOTE] = ACTIONS(4273), + [anon_sym_UR_DQUOTE] = ACTIONS(4273), + [anon_sym_u8R_DQUOTE] = ACTIONS(4273), + [anon_sym_co_await] = ACTIONS(4271), + [anon_sym_new] = ACTIONS(4271), + [anon_sym_requires] = ACTIONS(4271), + [anon_sym_CARET_CARET] = ACTIONS(4273), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), + [sym_this] = ACTIONS(4271), }, [STATE(985)] = { - [sym_identifier] = ACTIONS(4472), - [aux_sym_preproc_include_token1] = ACTIONS(4472), - [aux_sym_preproc_def_token1] = ACTIONS(4472), - [aux_sym_preproc_if_token1] = ACTIONS(4472), - [aux_sym_preproc_if_token2] = ACTIONS(4472), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4472), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4472), - [sym_preproc_directive] = ACTIONS(4472), - [anon_sym_LPAREN2] = ACTIONS(4474), - [anon_sym_BANG] = ACTIONS(4474), - [anon_sym_TILDE] = ACTIONS(4474), - [anon_sym_DASH] = ACTIONS(4472), - [anon_sym_PLUS] = ACTIONS(4472), - [anon_sym_STAR] = ACTIONS(4474), - [anon_sym_AMP_AMP] = ACTIONS(4474), - [anon_sym_AMP] = ACTIONS(4472), - [anon_sym_SEMI] = ACTIONS(4474), - [anon_sym___extension__] = ACTIONS(4472), - [anon_sym_typedef] = ACTIONS(4472), - [anon_sym_virtual] = ACTIONS(4472), - [anon_sym_extern] = ACTIONS(4472), - [anon_sym___attribute__] = ACTIONS(4472), - [anon_sym___attribute] = ACTIONS(4472), - [anon_sym_using] = ACTIONS(4472), - [anon_sym_COLON_COLON] = ACTIONS(4474), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4474), - [anon_sym___declspec] = ACTIONS(4472), - [anon_sym___based] = ACTIONS(4472), - [anon_sym___cdecl] = ACTIONS(4472), - [anon_sym___clrcall] = ACTIONS(4472), - [anon_sym___stdcall] = ACTIONS(4472), - [anon_sym___fastcall] = ACTIONS(4472), - [anon_sym___thiscall] = ACTIONS(4472), - [anon_sym___vectorcall] = ACTIONS(4472), - [anon_sym_LBRACE] = ACTIONS(4474), - [anon_sym_signed] = ACTIONS(4472), - [anon_sym_unsigned] = ACTIONS(4472), - [anon_sym_long] = ACTIONS(4472), - [anon_sym_short] = ACTIONS(4472), - [anon_sym_LBRACK] = ACTIONS(4472), - [anon_sym_static] = ACTIONS(4472), - [anon_sym_register] = ACTIONS(4472), - [anon_sym_inline] = ACTIONS(4472), - [anon_sym___inline] = ACTIONS(4472), - [anon_sym___inline__] = ACTIONS(4472), - [anon_sym___forceinline] = ACTIONS(4472), - [anon_sym_thread_local] = ACTIONS(4472), - [anon_sym___thread] = ACTIONS(4472), - [anon_sym_const] = ACTIONS(4472), - [anon_sym_constexpr] = ACTIONS(4472), - [anon_sym_volatile] = ACTIONS(4472), - [anon_sym_restrict] = ACTIONS(4472), - [anon_sym___restrict__] = ACTIONS(4472), - [anon_sym__Atomic] = ACTIONS(4472), - [anon_sym__Noreturn] = ACTIONS(4472), - [anon_sym_noreturn] = ACTIONS(4472), - [anon_sym__Nonnull] = ACTIONS(4472), - [anon_sym_mutable] = ACTIONS(4472), - [anon_sym_constinit] = ACTIONS(4472), - [anon_sym_consteval] = ACTIONS(4472), - [anon_sym_alignas] = ACTIONS(4472), - [anon_sym__Alignas] = ACTIONS(4472), - [sym_primitive_type] = ACTIONS(4472), - [anon_sym_enum] = ACTIONS(4472), - [anon_sym_class] = ACTIONS(4472), - [anon_sym_struct] = ACTIONS(4472), - [anon_sym_union] = ACTIONS(4472), - [anon_sym_if] = ACTIONS(4472), - [anon_sym_switch] = ACTIONS(4472), - [anon_sym_case] = ACTIONS(4472), - [anon_sym_default] = ACTIONS(4472), - [anon_sym_while] = ACTIONS(4472), - [anon_sym_do] = ACTIONS(4472), - [anon_sym_for] = ACTIONS(4472), - [anon_sym_return] = ACTIONS(4472), - [anon_sym_break] = ACTIONS(4472), - [anon_sym_continue] = ACTIONS(4472), - [anon_sym_goto] = ACTIONS(4472), - [anon_sym_not] = ACTIONS(4472), - [anon_sym_compl] = ACTIONS(4472), - [anon_sym_DASH_DASH] = ACTIONS(4474), - [anon_sym_PLUS_PLUS] = ACTIONS(4474), - [anon_sym_sizeof] = ACTIONS(4472), - [anon_sym___alignof__] = ACTIONS(4472), - [anon_sym___alignof] = ACTIONS(4472), - [anon_sym__alignof] = ACTIONS(4472), - [anon_sym_alignof] = ACTIONS(4472), - [anon_sym__Alignof] = ACTIONS(4472), - [anon_sym_offsetof] = ACTIONS(4472), - [anon_sym__Generic] = ACTIONS(4472), - [anon_sym_typename] = ACTIONS(4472), - [anon_sym_asm] = ACTIONS(4472), - [anon_sym___asm__] = ACTIONS(4472), - [anon_sym___asm] = ACTIONS(4472), - [sym_number_literal] = ACTIONS(4474), - [anon_sym_L_SQUOTE] = ACTIONS(4474), - [anon_sym_u_SQUOTE] = ACTIONS(4474), - [anon_sym_U_SQUOTE] = ACTIONS(4474), - [anon_sym_u8_SQUOTE] = ACTIONS(4474), - [anon_sym_SQUOTE] = ACTIONS(4474), - [anon_sym_L_DQUOTE] = ACTIONS(4474), - [anon_sym_u_DQUOTE] = ACTIONS(4474), - [anon_sym_U_DQUOTE] = ACTIONS(4474), - [anon_sym_u8_DQUOTE] = ACTIONS(4474), - [anon_sym_DQUOTE] = ACTIONS(4474), - [sym_true] = ACTIONS(4472), - [sym_false] = ACTIONS(4472), - [anon_sym_NULL] = ACTIONS(4472), - [anon_sym_nullptr] = ACTIONS(4472), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4472), - [anon_sym_decltype] = ACTIONS(4472), - [anon_sym_explicit] = ACTIONS(4472), - [anon_sym_export] = ACTIONS(4472), - [anon_sym_module] = ACTIONS(4472), - [anon_sym_import] = ACTIONS(4472), - [anon_sym_template] = ACTIONS(4472), - [anon_sym_operator] = ACTIONS(4472), - [anon_sym_try] = ACTIONS(4472), - [anon_sym_delete] = ACTIONS(4472), - [anon_sym_throw] = ACTIONS(4472), - [anon_sym_namespace] = ACTIONS(4472), - [anon_sym_static_assert] = ACTIONS(4472), - [anon_sym_concept] = ACTIONS(4472), - [anon_sym_co_return] = ACTIONS(4472), - [anon_sym_co_yield] = ACTIONS(4472), - [anon_sym_R_DQUOTE] = ACTIONS(4474), - [anon_sym_LR_DQUOTE] = ACTIONS(4474), - [anon_sym_uR_DQUOTE] = ACTIONS(4474), - [anon_sym_UR_DQUOTE] = ACTIONS(4474), - [anon_sym_u8R_DQUOTE] = ACTIONS(4474), - [anon_sym_co_await] = ACTIONS(4472), - [anon_sym_new] = ACTIONS(4472), - [anon_sym_requires] = ACTIONS(4472), - [anon_sym_CARET_CARET] = ACTIONS(4474), - [anon_sym_LBRACK_COLON] = ACTIONS(4474), - [sym_this] = ACTIONS(4472), - }, - [STATE(986)] = { - [sym_identifier] = ACTIONS(4476), - [aux_sym_preproc_include_token1] = ACTIONS(4476), - [aux_sym_preproc_def_token1] = ACTIONS(4476), - [aux_sym_preproc_if_token1] = ACTIONS(4476), - [aux_sym_preproc_if_token2] = ACTIONS(4476), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4476), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4476), - [sym_preproc_directive] = ACTIONS(4476), - [anon_sym_LPAREN2] = ACTIONS(4478), - [anon_sym_BANG] = ACTIONS(4478), - [anon_sym_TILDE] = ACTIONS(4478), - [anon_sym_DASH] = ACTIONS(4476), - [anon_sym_PLUS] = ACTIONS(4476), - [anon_sym_STAR] = ACTIONS(4478), - [anon_sym_AMP_AMP] = ACTIONS(4478), - [anon_sym_AMP] = ACTIONS(4476), - [anon_sym_SEMI] = ACTIONS(4478), - [anon_sym___extension__] = ACTIONS(4476), - [anon_sym_typedef] = ACTIONS(4476), - [anon_sym_virtual] = ACTIONS(4476), - [anon_sym_extern] = ACTIONS(4476), - [anon_sym___attribute__] = ACTIONS(4476), - [anon_sym___attribute] = ACTIONS(4476), - [anon_sym_using] = ACTIONS(4476), - [anon_sym_COLON_COLON] = ACTIONS(4478), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4478), - [anon_sym___declspec] = ACTIONS(4476), - [anon_sym___based] = ACTIONS(4476), - [anon_sym___cdecl] = ACTIONS(4476), - [anon_sym___clrcall] = ACTIONS(4476), - [anon_sym___stdcall] = ACTIONS(4476), - [anon_sym___fastcall] = ACTIONS(4476), - [anon_sym___thiscall] = ACTIONS(4476), - [anon_sym___vectorcall] = ACTIONS(4476), - [anon_sym_LBRACE] = ACTIONS(4478), - [anon_sym_signed] = ACTIONS(4476), - [anon_sym_unsigned] = ACTIONS(4476), - [anon_sym_long] = ACTIONS(4476), - [anon_sym_short] = ACTIONS(4476), - [anon_sym_LBRACK] = ACTIONS(4476), - [anon_sym_static] = ACTIONS(4476), - [anon_sym_register] = ACTIONS(4476), - [anon_sym_inline] = ACTIONS(4476), - [anon_sym___inline] = ACTIONS(4476), - [anon_sym___inline__] = ACTIONS(4476), - [anon_sym___forceinline] = ACTIONS(4476), - [anon_sym_thread_local] = ACTIONS(4476), - [anon_sym___thread] = ACTIONS(4476), - [anon_sym_const] = ACTIONS(4476), - [anon_sym_constexpr] = ACTIONS(4476), - [anon_sym_volatile] = ACTIONS(4476), - [anon_sym_restrict] = ACTIONS(4476), - [anon_sym___restrict__] = ACTIONS(4476), - [anon_sym__Atomic] = ACTIONS(4476), - [anon_sym__Noreturn] = ACTIONS(4476), - [anon_sym_noreturn] = ACTIONS(4476), - [anon_sym__Nonnull] = ACTIONS(4476), - [anon_sym_mutable] = ACTIONS(4476), - [anon_sym_constinit] = ACTIONS(4476), - [anon_sym_consteval] = ACTIONS(4476), - [anon_sym_alignas] = ACTIONS(4476), - [anon_sym__Alignas] = ACTIONS(4476), - [sym_primitive_type] = ACTIONS(4476), - [anon_sym_enum] = ACTIONS(4476), - [anon_sym_class] = ACTIONS(4476), - [anon_sym_struct] = ACTIONS(4476), - [anon_sym_union] = ACTIONS(4476), - [anon_sym_if] = ACTIONS(4476), - [anon_sym_switch] = ACTIONS(4476), - [anon_sym_case] = ACTIONS(4476), - [anon_sym_default] = ACTIONS(4476), - [anon_sym_while] = ACTIONS(4476), - [anon_sym_do] = ACTIONS(4476), - [anon_sym_for] = ACTIONS(4476), - [anon_sym_return] = ACTIONS(4476), - [anon_sym_break] = ACTIONS(4476), - [anon_sym_continue] = ACTIONS(4476), - [anon_sym_goto] = ACTIONS(4476), - [anon_sym_not] = ACTIONS(4476), - [anon_sym_compl] = ACTIONS(4476), - [anon_sym_DASH_DASH] = ACTIONS(4478), - [anon_sym_PLUS_PLUS] = ACTIONS(4478), - [anon_sym_sizeof] = ACTIONS(4476), - [anon_sym___alignof__] = ACTIONS(4476), - [anon_sym___alignof] = ACTIONS(4476), - [anon_sym__alignof] = ACTIONS(4476), - [anon_sym_alignof] = ACTIONS(4476), - [anon_sym__Alignof] = ACTIONS(4476), - [anon_sym_offsetof] = ACTIONS(4476), - [anon_sym__Generic] = ACTIONS(4476), - [anon_sym_typename] = ACTIONS(4476), - [anon_sym_asm] = ACTIONS(4476), - [anon_sym___asm__] = ACTIONS(4476), - [anon_sym___asm] = ACTIONS(4476), - [sym_number_literal] = ACTIONS(4478), - [anon_sym_L_SQUOTE] = ACTIONS(4478), - [anon_sym_u_SQUOTE] = ACTIONS(4478), - [anon_sym_U_SQUOTE] = ACTIONS(4478), - [anon_sym_u8_SQUOTE] = ACTIONS(4478), - [anon_sym_SQUOTE] = ACTIONS(4478), - [anon_sym_L_DQUOTE] = ACTIONS(4478), - [anon_sym_u_DQUOTE] = ACTIONS(4478), - [anon_sym_U_DQUOTE] = ACTIONS(4478), - [anon_sym_u8_DQUOTE] = ACTIONS(4478), - [anon_sym_DQUOTE] = ACTIONS(4478), - [sym_true] = ACTIONS(4476), - [sym_false] = ACTIONS(4476), - [anon_sym_NULL] = ACTIONS(4476), - [anon_sym_nullptr] = ACTIONS(4476), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4476), - [anon_sym_decltype] = ACTIONS(4476), - [anon_sym_explicit] = ACTIONS(4476), - [anon_sym_export] = ACTIONS(4476), - [anon_sym_module] = ACTIONS(4476), - [anon_sym_import] = ACTIONS(4476), - [anon_sym_template] = ACTIONS(4476), - [anon_sym_operator] = ACTIONS(4476), - [anon_sym_try] = ACTIONS(4476), - [anon_sym_delete] = ACTIONS(4476), - [anon_sym_throw] = ACTIONS(4476), - [anon_sym_namespace] = ACTIONS(4476), - [anon_sym_static_assert] = ACTIONS(4476), - [anon_sym_concept] = ACTIONS(4476), - [anon_sym_co_return] = ACTIONS(4476), - [anon_sym_co_yield] = ACTIONS(4476), - [anon_sym_R_DQUOTE] = ACTIONS(4478), - [anon_sym_LR_DQUOTE] = ACTIONS(4478), - [anon_sym_uR_DQUOTE] = ACTIONS(4478), - [anon_sym_UR_DQUOTE] = ACTIONS(4478), - [anon_sym_u8R_DQUOTE] = ACTIONS(4478), - [anon_sym_co_await] = ACTIONS(4476), - [anon_sym_new] = ACTIONS(4476), - [anon_sym_requires] = ACTIONS(4476), - [anon_sym_CARET_CARET] = ACTIONS(4478), - [anon_sym_LBRACK_COLON] = ACTIONS(4478), - [sym_this] = ACTIONS(4476), - }, - [STATE(987)] = { - [sym_identifier] = ACTIONS(4480), - [aux_sym_preproc_include_token1] = ACTIONS(4480), - [aux_sym_preproc_def_token1] = ACTIONS(4480), - [aux_sym_preproc_if_token1] = ACTIONS(4480), - [aux_sym_preproc_if_token2] = ACTIONS(4480), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4480), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4480), - [sym_preproc_directive] = ACTIONS(4480), - [anon_sym_LPAREN2] = ACTIONS(4482), - [anon_sym_BANG] = ACTIONS(4482), - [anon_sym_TILDE] = ACTIONS(4482), - [anon_sym_DASH] = ACTIONS(4480), - [anon_sym_PLUS] = ACTIONS(4480), - [anon_sym_STAR] = ACTIONS(4482), - [anon_sym_AMP_AMP] = ACTIONS(4482), - [anon_sym_AMP] = ACTIONS(4480), - [anon_sym_SEMI] = ACTIONS(4482), - [anon_sym___extension__] = ACTIONS(4480), - [anon_sym_typedef] = ACTIONS(4480), - [anon_sym_virtual] = ACTIONS(4480), - [anon_sym_extern] = ACTIONS(4480), - [anon_sym___attribute__] = ACTIONS(4480), - [anon_sym___attribute] = ACTIONS(4480), - [anon_sym_using] = ACTIONS(4480), - [anon_sym_COLON_COLON] = ACTIONS(4482), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4482), - [anon_sym___declspec] = ACTIONS(4480), - [anon_sym___based] = ACTIONS(4480), - [anon_sym___cdecl] = ACTIONS(4480), - [anon_sym___clrcall] = ACTIONS(4480), - [anon_sym___stdcall] = ACTIONS(4480), - [anon_sym___fastcall] = ACTIONS(4480), - [anon_sym___thiscall] = ACTIONS(4480), - [anon_sym___vectorcall] = ACTIONS(4480), - [anon_sym_LBRACE] = ACTIONS(4482), - [anon_sym_signed] = ACTIONS(4480), - [anon_sym_unsigned] = ACTIONS(4480), - [anon_sym_long] = ACTIONS(4480), - [anon_sym_short] = ACTIONS(4480), - [anon_sym_LBRACK] = ACTIONS(4480), - [anon_sym_static] = ACTIONS(4480), - [anon_sym_register] = ACTIONS(4480), - [anon_sym_inline] = ACTIONS(4480), - [anon_sym___inline] = ACTIONS(4480), - [anon_sym___inline__] = ACTIONS(4480), - [anon_sym___forceinline] = ACTIONS(4480), - [anon_sym_thread_local] = ACTIONS(4480), - [anon_sym___thread] = ACTIONS(4480), - [anon_sym_const] = ACTIONS(4480), - [anon_sym_constexpr] = ACTIONS(4480), - [anon_sym_volatile] = ACTIONS(4480), - [anon_sym_restrict] = ACTIONS(4480), - [anon_sym___restrict__] = ACTIONS(4480), - [anon_sym__Atomic] = ACTIONS(4480), - [anon_sym__Noreturn] = ACTIONS(4480), - [anon_sym_noreturn] = ACTIONS(4480), - [anon_sym__Nonnull] = ACTIONS(4480), - [anon_sym_mutable] = ACTIONS(4480), - [anon_sym_constinit] = ACTIONS(4480), - [anon_sym_consteval] = ACTIONS(4480), - [anon_sym_alignas] = ACTIONS(4480), - [anon_sym__Alignas] = ACTIONS(4480), - [sym_primitive_type] = ACTIONS(4480), - [anon_sym_enum] = ACTIONS(4480), - [anon_sym_class] = ACTIONS(4480), - [anon_sym_struct] = ACTIONS(4480), - [anon_sym_union] = ACTIONS(4480), - [anon_sym_if] = ACTIONS(4480), - [anon_sym_switch] = ACTIONS(4480), - [anon_sym_case] = ACTIONS(4480), - [anon_sym_default] = ACTIONS(4480), - [anon_sym_while] = ACTIONS(4480), - [anon_sym_do] = ACTIONS(4480), - [anon_sym_for] = ACTIONS(4480), - [anon_sym_return] = ACTIONS(4480), - [anon_sym_break] = ACTIONS(4480), - [anon_sym_continue] = ACTIONS(4480), - [anon_sym_goto] = ACTIONS(4480), - [anon_sym_not] = ACTIONS(4480), - [anon_sym_compl] = ACTIONS(4480), - [anon_sym_DASH_DASH] = ACTIONS(4482), - [anon_sym_PLUS_PLUS] = ACTIONS(4482), - [anon_sym_sizeof] = ACTIONS(4480), - [anon_sym___alignof__] = ACTIONS(4480), - [anon_sym___alignof] = ACTIONS(4480), - [anon_sym__alignof] = ACTIONS(4480), - [anon_sym_alignof] = ACTIONS(4480), - [anon_sym__Alignof] = ACTIONS(4480), - [anon_sym_offsetof] = ACTIONS(4480), - [anon_sym__Generic] = ACTIONS(4480), - [anon_sym_typename] = ACTIONS(4480), - [anon_sym_asm] = ACTIONS(4480), - [anon_sym___asm__] = ACTIONS(4480), - [anon_sym___asm] = ACTIONS(4480), - [sym_number_literal] = ACTIONS(4482), - [anon_sym_L_SQUOTE] = ACTIONS(4482), - [anon_sym_u_SQUOTE] = ACTIONS(4482), - [anon_sym_U_SQUOTE] = ACTIONS(4482), - [anon_sym_u8_SQUOTE] = ACTIONS(4482), - [anon_sym_SQUOTE] = ACTIONS(4482), - [anon_sym_L_DQUOTE] = ACTIONS(4482), - [anon_sym_u_DQUOTE] = ACTIONS(4482), - [anon_sym_U_DQUOTE] = ACTIONS(4482), - [anon_sym_u8_DQUOTE] = ACTIONS(4482), - [anon_sym_DQUOTE] = ACTIONS(4482), - [sym_true] = ACTIONS(4480), - [sym_false] = ACTIONS(4480), - [anon_sym_NULL] = ACTIONS(4480), - [anon_sym_nullptr] = ACTIONS(4480), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4480), - [anon_sym_decltype] = ACTIONS(4480), - [anon_sym_explicit] = ACTIONS(4480), - [anon_sym_export] = ACTIONS(4480), - [anon_sym_module] = ACTIONS(4480), - [anon_sym_import] = ACTIONS(4480), - [anon_sym_template] = ACTIONS(4480), - [anon_sym_operator] = ACTIONS(4480), - [anon_sym_try] = ACTIONS(4480), - [anon_sym_delete] = ACTIONS(4480), - [anon_sym_throw] = ACTIONS(4480), - [anon_sym_namespace] = ACTIONS(4480), - [anon_sym_static_assert] = ACTIONS(4480), - [anon_sym_concept] = ACTIONS(4480), - [anon_sym_co_return] = ACTIONS(4480), - [anon_sym_co_yield] = ACTIONS(4480), - [anon_sym_R_DQUOTE] = ACTIONS(4482), - [anon_sym_LR_DQUOTE] = ACTIONS(4482), - [anon_sym_uR_DQUOTE] = ACTIONS(4482), - [anon_sym_UR_DQUOTE] = ACTIONS(4482), - [anon_sym_u8R_DQUOTE] = ACTIONS(4482), - [anon_sym_co_await] = ACTIONS(4480), - [anon_sym_new] = ACTIONS(4480), - [anon_sym_requires] = ACTIONS(4480), - [anon_sym_CARET_CARET] = ACTIONS(4482), - [anon_sym_LBRACK_COLON] = ACTIONS(4482), - [sym_this] = ACTIONS(4480), - }, - [STATE(988)] = { - [ts_builtin_sym_end] = ACTIONS(4038), - [sym_identifier] = ACTIONS(4036), - [aux_sym_preproc_include_token1] = ACTIONS(4036), - [aux_sym_preproc_def_token1] = ACTIONS(4036), - [aux_sym_preproc_if_token1] = ACTIONS(4036), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4036), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4036), - [sym_preproc_directive] = ACTIONS(4036), - [anon_sym_LPAREN2] = ACTIONS(4038), - [anon_sym_BANG] = ACTIONS(4038), - [anon_sym_TILDE] = ACTIONS(4038), - [anon_sym_DASH] = ACTIONS(4036), - [anon_sym_PLUS] = ACTIONS(4036), - [anon_sym_STAR] = ACTIONS(4038), - [anon_sym_AMP_AMP] = ACTIONS(4038), - [anon_sym_AMP] = ACTIONS(4036), - [anon_sym_SEMI] = ACTIONS(4038), - [anon_sym___extension__] = ACTIONS(4036), - [anon_sym_typedef] = ACTIONS(4036), - [anon_sym_virtual] = ACTIONS(4036), - [anon_sym_extern] = ACTIONS(4036), - [anon_sym___attribute__] = ACTIONS(4036), - [anon_sym___attribute] = ACTIONS(4036), - [anon_sym_using] = ACTIONS(4036), - [anon_sym_COLON_COLON] = ACTIONS(4038), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4038), - [anon_sym___declspec] = ACTIONS(4036), - [anon_sym___based] = ACTIONS(4036), - [anon_sym___cdecl] = ACTIONS(4036), - [anon_sym___clrcall] = ACTIONS(4036), - [anon_sym___stdcall] = ACTIONS(4036), - [anon_sym___fastcall] = ACTIONS(4036), - [anon_sym___thiscall] = ACTIONS(4036), - [anon_sym___vectorcall] = ACTIONS(4036), - [anon_sym_LBRACE] = ACTIONS(4038), - [anon_sym_signed] = ACTIONS(4036), - [anon_sym_unsigned] = ACTIONS(4036), - [anon_sym_long] = ACTIONS(4036), - [anon_sym_short] = ACTIONS(4036), - [anon_sym_LBRACK] = ACTIONS(4036), - [anon_sym_static] = ACTIONS(4036), - [anon_sym_register] = ACTIONS(4036), - [anon_sym_inline] = ACTIONS(4036), - [anon_sym___inline] = ACTIONS(4036), - [anon_sym___inline__] = ACTIONS(4036), - [anon_sym___forceinline] = ACTIONS(4036), - [anon_sym_thread_local] = ACTIONS(4036), - [anon_sym___thread] = ACTIONS(4036), - [anon_sym_const] = ACTIONS(4036), - [anon_sym_constexpr] = ACTIONS(4036), - [anon_sym_volatile] = ACTIONS(4036), - [anon_sym_restrict] = ACTIONS(4036), - [anon_sym___restrict__] = ACTIONS(4036), - [anon_sym__Atomic] = ACTIONS(4036), - [anon_sym__Noreturn] = ACTIONS(4036), - [anon_sym_noreturn] = ACTIONS(4036), - [anon_sym__Nonnull] = ACTIONS(4036), - [anon_sym_mutable] = ACTIONS(4036), - [anon_sym_constinit] = ACTIONS(4036), - [anon_sym_consteval] = ACTIONS(4036), - [anon_sym_alignas] = ACTIONS(4036), - [anon_sym__Alignas] = ACTIONS(4036), - [sym_primitive_type] = ACTIONS(4036), - [anon_sym_enum] = ACTIONS(4036), - [anon_sym_class] = ACTIONS(4036), - [anon_sym_struct] = ACTIONS(4036), - [anon_sym_union] = ACTIONS(4036), - [anon_sym_if] = ACTIONS(4036), - [anon_sym_switch] = ACTIONS(4036), - [anon_sym_case] = ACTIONS(4036), - [anon_sym_default] = ACTIONS(4036), - [anon_sym_while] = ACTIONS(4036), - [anon_sym_do] = ACTIONS(4036), - [anon_sym_for] = ACTIONS(4036), - [anon_sym_return] = ACTIONS(4036), - [anon_sym_break] = ACTIONS(4036), - [anon_sym_continue] = ACTIONS(4036), - [anon_sym_goto] = ACTIONS(4036), - [anon_sym_not] = ACTIONS(4036), - [anon_sym_compl] = ACTIONS(4036), - [anon_sym_DASH_DASH] = ACTIONS(4038), - [anon_sym_PLUS_PLUS] = ACTIONS(4038), - [anon_sym_sizeof] = ACTIONS(4036), - [anon_sym___alignof__] = ACTIONS(4036), - [anon_sym___alignof] = ACTIONS(4036), - [anon_sym__alignof] = ACTIONS(4036), - [anon_sym_alignof] = ACTIONS(4036), - [anon_sym__Alignof] = ACTIONS(4036), - [anon_sym_offsetof] = ACTIONS(4036), - [anon_sym__Generic] = ACTIONS(4036), - [anon_sym_typename] = ACTIONS(4036), - [anon_sym_asm] = ACTIONS(4036), - [anon_sym___asm__] = ACTIONS(4036), - [anon_sym___asm] = ACTIONS(4036), - [sym_number_literal] = ACTIONS(4038), - [anon_sym_L_SQUOTE] = ACTIONS(4038), - [anon_sym_u_SQUOTE] = ACTIONS(4038), - [anon_sym_U_SQUOTE] = ACTIONS(4038), - [anon_sym_u8_SQUOTE] = ACTIONS(4038), - [anon_sym_SQUOTE] = ACTIONS(4038), - [anon_sym_L_DQUOTE] = ACTIONS(4038), - [anon_sym_u_DQUOTE] = ACTIONS(4038), - [anon_sym_U_DQUOTE] = ACTIONS(4038), - [anon_sym_u8_DQUOTE] = ACTIONS(4038), - [anon_sym_DQUOTE] = ACTIONS(4038), - [sym_true] = ACTIONS(4036), - [sym_false] = ACTIONS(4036), - [anon_sym_NULL] = ACTIONS(4036), - [anon_sym_nullptr] = ACTIONS(4036), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4036), - [anon_sym_decltype] = ACTIONS(4036), - [anon_sym_explicit] = ACTIONS(4036), - [anon_sym_export] = ACTIONS(4036), - [anon_sym_module] = ACTIONS(4036), - [anon_sym_import] = ACTIONS(4036), - [anon_sym_template] = ACTIONS(4036), - [anon_sym_operator] = ACTIONS(4036), - [anon_sym_try] = ACTIONS(4036), - [anon_sym_delete] = ACTIONS(4036), - [anon_sym_throw] = ACTIONS(4036), - [anon_sym_namespace] = ACTIONS(4036), - [anon_sym_static_assert] = ACTIONS(4036), - [anon_sym_concept] = ACTIONS(4036), - [anon_sym_co_return] = ACTIONS(4036), - [anon_sym_co_yield] = ACTIONS(4036), - [anon_sym_R_DQUOTE] = ACTIONS(4038), - [anon_sym_LR_DQUOTE] = ACTIONS(4038), - [anon_sym_uR_DQUOTE] = ACTIONS(4038), - [anon_sym_UR_DQUOTE] = ACTIONS(4038), - [anon_sym_u8R_DQUOTE] = ACTIONS(4038), - [anon_sym_co_await] = ACTIONS(4036), - [anon_sym_new] = ACTIONS(4036), - [anon_sym_requires] = ACTIONS(4036), - [anon_sym_CARET_CARET] = ACTIONS(4038), - [anon_sym_LBRACK_COLON] = ACTIONS(4038), - [sym_this] = ACTIONS(4036), - }, - [STATE(989)] = { - [sym_preproc_def] = STATE(960), - [sym_preproc_function_def] = STATE(960), - [sym_preproc_call] = STATE(960), - [sym_preproc_if_in_field_declaration_list] = STATE(960), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(960), - [sym_type_definition] = STATE(960), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8099), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8689), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(960), - [sym_field_declaration] = STATE(960), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2469), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(960), - [sym_operator_cast] = STATE(9167), - [sym_inline_method_definition] = STATE(960), - [sym__constructor_specifiers] = STATE(2469), - [sym_operator_cast_definition] = STATE(960), - [sym_operator_cast_declaration] = STATE(960), - [sym_constructor_or_destructor_definition] = STATE(960), - [sym_constructor_or_destructor_declaration] = STATE(960), - [sym_friend_declaration] = STATE(960), - [sym_access_specifier] = STATE(10982), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(960), - [sym_alias_declaration] = STATE(960), - [sym_static_assert_declaration] = STATE(960), - [sym_consteval_block_declaration] = STATE(960), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9167), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(960), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9503), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2469), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4801), - [aux_sym_preproc_if_token1] = ACTIONS(4803), - [aux_sym_preproc_if_token2] = ACTIONS(4884), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4807), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4807), - [sym_preproc_directive] = ACTIONS(4809), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_preproc_def] = STATE(955), + [sym_preproc_function_def] = STATE(955), + [sym_preproc_call] = STATE(955), + [sym_preproc_if_in_field_declaration_list] = STATE(955), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(955), + [sym_type_definition] = STATE(955), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8103), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(955), + [sym_field_declaration] = STATE(955), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(955), + [sym_operator_cast] = STATE(9214), + [sym_inline_method_definition] = STATE(955), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(955), + [sym_operator_cast_declaration] = STATE(955), + [sym_constructor_or_destructor_definition] = STATE(955), + [sym_constructor_or_destructor_declaration] = STATE(955), + [sym_friend_declaration] = STATE(955), + [sym_access_specifier] = STATE(11234), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(955), + [sym_alias_declaration] = STATE(955), + [sym_static_assert_declaration] = STATE(955), + [sym_consteval_block_declaration] = STATE(955), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(955), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9489), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4684), + [aux_sym_preproc_if_token1] = ACTIONS(4686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4688), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4688), + [sym_preproc_directive] = ACTIONS(4690), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym___extension__] = ACTIONS(4813), - [anon_sym_typedef] = ACTIONS(4815), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4692), + [anon_sym___extension__] = ACTIONS(4694), + [anon_sym_typedef] = ACTIONS(4696), [anon_sym_virtual] = ACTIONS(39), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4817), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(4698), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), + [anon_sym_RBRACE] = ACTIONS(4882), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -200443,7 +199887,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(4819), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -200453,724 +199897,2114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Nonnull] = ACTIONS(67), [anon_sym_mutable] = ACTIONS(67), [anon_sym_constinit] = ACTIONS(67), - [anon_sym_consteval] = ACTIONS(4821), + [anon_sym_consteval] = ACTIONS(4704), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4823), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4825), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4827), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4710), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(986)] = { + [ts_builtin_sym_end] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym___cdecl] = ACTIONS(4289), + [anon_sym___clrcall] = ACTIONS(4289), + [anon_sym___stdcall] = ACTIONS(4289), + [anon_sym___fastcall] = ACTIONS(4289), + [anon_sym___thiscall] = ACTIONS(4289), + [anon_sym___vectorcall] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_switch] = ACTIONS(4289), + [anon_sym_case] = ACTIONS(4289), + [anon_sym_default] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_do] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_goto] = ACTIONS(4289), + [anon_sym_not] = ACTIONS(4289), + [anon_sym_compl] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_sizeof] = ACTIONS(4289), + [anon_sym___alignof__] = ACTIONS(4289), + [anon_sym___alignof] = ACTIONS(4289), + [anon_sym__alignof] = ACTIONS(4289), + [anon_sym_alignof] = ACTIONS(4289), + [anon_sym__Alignof] = ACTIONS(4289), + [anon_sym_offsetof] = ACTIONS(4289), + [anon_sym__Generic] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [anon_sym_asm] = ACTIONS(4289), + [anon_sym___asm__] = ACTIONS(4289), + [anon_sym___asm] = ACTIONS(4289), + [sym_number_literal] = ACTIONS(4291), + [anon_sym_L_SQUOTE] = ACTIONS(4291), + [anon_sym_u_SQUOTE] = ACTIONS(4291), + [anon_sym_U_SQUOTE] = ACTIONS(4291), + [anon_sym_u8_SQUOTE] = ACTIONS(4291), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_L_DQUOTE] = ACTIONS(4291), + [anon_sym_u_DQUOTE] = ACTIONS(4291), + [anon_sym_U_DQUOTE] = ACTIONS(4291), + [anon_sym_u8_DQUOTE] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [sym_true] = ACTIONS(4289), + [sym_false] = ACTIONS(4289), + [anon_sym_NULL] = ACTIONS(4289), + [anon_sym_nullptr] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_export] = ACTIONS(4289), + [anon_sym_module] = ACTIONS(4289), + [anon_sym_import] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_delete] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_namespace] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_concept] = ACTIONS(4289), + [anon_sym_co_return] = ACTIONS(4289), + [anon_sym_co_yield] = ACTIONS(4289), + [anon_sym_R_DQUOTE] = ACTIONS(4291), + [anon_sym_LR_DQUOTE] = ACTIONS(4291), + [anon_sym_uR_DQUOTE] = ACTIONS(4291), + [anon_sym_UR_DQUOTE] = ACTIONS(4291), + [anon_sym_u8R_DQUOTE] = ACTIONS(4291), + [anon_sym_co_await] = ACTIONS(4289), + [anon_sym_new] = ACTIONS(4289), + [anon_sym_requires] = ACTIONS(4289), + [anon_sym_CARET_CARET] = ACTIONS(4291), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), + [sym_this] = ACTIONS(4289), + }, + [STATE(987)] = { + [ts_builtin_sym_end] = ACTIONS(4291), + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_include_token1] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_BANG] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_DASH] = ACTIONS(4289), + [anon_sym_PLUS] = ACTIONS(4289), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym___cdecl] = ACTIONS(4289), + [anon_sym___clrcall] = ACTIONS(4289), + [anon_sym___stdcall] = ACTIONS(4289), + [anon_sym___fastcall] = ACTIONS(4289), + [anon_sym___thiscall] = ACTIONS(4289), + [anon_sym___vectorcall] = ACTIONS(4289), + [anon_sym_LBRACE] = ACTIONS(4291), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_if] = ACTIONS(4289), + [anon_sym_switch] = ACTIONS(4289), + [anon_sym_case] = ACTIONS(4289), + [anon_sym_default] = ACTIONS(4289), + [anon_sym_while] = ACTIONS(4289), + [anon_sym_do] = ACTIONS(4289), + [anon_sym_for] = ACTIONS(4289), + [anon_sym_return] = ACTIONS(4289), + [anon_sym_break] = ACTIONS(4289), + [anon_sym_continue] = ACTIONS(4289), + [anon_sym_goto] = ACTIONS(4289), + [anon_sym_not] = ACTIONS(4289), + [anon_sym_compl] = ACTIONS(4289), + [anon_sym_DASH_DASH] = ACTIONS(4291), + [anon_sym_PLUS_PLUS] = ACTIONS(4291), + [anon_sym_sizeof] = ACTIONS(4289), + [anon_sym___alignof__] = ACTIONS(4289), + [anon_sym___alignof] = ACTIONS(4289), + [anon_sym__alignof] = ACTIONS(4289), + [anon_sym_alignof] = ACTIONS(4289), + [anon_sym__Alignof] = ACTIONS(4289), + [anon_sym_offsetof] = ACTIONS(4289), + [anon_sym__Generic] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [anon_sym_asm] = ACTIONS(4289), + [anon_sym___asm__] = ACTIONS(4289), + [anon_sym___asm] = ACTIONS(4289), + [sym_number_literal] = ACTIONS(4291), + [anon_sym_L_SQUOTE] = ACTIONS(4291), + [anon_sym_u_SQUOTE] = ACTIONS(4291), + [anon_sym_U_SQUOTE] = ACTIONS(4291), + [anon_sym_u8_SQUOTE] = ACTIONS(4291), + [anon_sym_SQUOTE] = ACTIONS(4291), + [anon_sym_L_DQUOTE] = ACTIONS(4291), + [anon_sym_u_DQUOTE] = ACTIONS(4291), + [anon_sym_U_DQUOTE] = ACTIONS(4291), + [anon_sym_u8_DQUOTE] = ACTIONS(4291), + [anon_sym_DQUOTE] = ACTIONS(4291), + [sym_true] = ACTIONS(4289), + [sym_false] = ACTIONS(4289), + [anon_sym_NULL] = ACTIONS(4289), + [anon_sym_nullptr] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_export] = ACTIONS(4289), + [anon_sym_module] = ACTIONS(4289), + [anon_sym_import] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_try] = ACTIONS(4289), + [anon_sym_delete] = ACTIONS(4289), + [anon_sym_throw] = ACTIONS(4289), + [anon_sym_namespace] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_concept] = ACTIONS(4289), + [anon_sym_co_return] = ACTIONS(4289), + [anon_sym_co_yield] = ACTIONS(4289), + [anon_sym_R_DQUOTE] = ACTIONS(4291), + [anon_sym_LR_DQUOTE] = ACTIONS(4291), + [anon_sym_uR_DQUOTE] = ACTIONS(4291), + [anon_sym_UR_DQUOTE] = ACTIONS(4291), + [anon_sym_u8R_DQUOTE] = ACTIONS(4291), + [anon_sym_co_await] = ACTIONS(4289), + [anon_sym_new] = ACTIONS(4289), + [anon_sym_requires] = ACTIONS(4289), + [anon_sym_CARET_CARET] = ACTIONS(4291), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), + [sym_this] = ACTIONS(4289), + }, + [STATE(988)] = { + [ts_builtin_sym_end] = ACTIONS(4295), + [sym_identifier] = ACTIONS(4293), + [aux_sym_preproc_include_token1] = ACTIONS(4293), + [aux_sym_preproc_def_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token1] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), + [sym_preproc_directive] = ACTIONS(4293), + [anon_sym_LPAREN2] = ACTIONS(4295), + [anon_sym_BANG] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4295), + [anon_sym_DASH] = ACTIONS(4293), + [anon_sym_PLUS] = ACTIONS(4293), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym___extension__] = ACTIONS(4293), + [anon_sym_typedef] = ACTIONS(4293), + [anon_sym_virtual] = ACTIONS(4293), + [anon_sym_extern] = ACTIONS(4293), + [anon_sym___attribute__] = ACTIONS(4293), + [anon_sym___attribute] = ACTIONS(4293), + [anon_sym_using] = ACTIONS(4293), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4295), + [anon_sym___declspec] = ACTIONS(4293), + [anon_sym___based] = ACTIONS(4293), + [anon_sym___cdecl] = ACTIONS(4293), + [anon_sym___clrcall] = ACTIONS(4293), + [anon_sym___stdcall] = ACTIONS(4293), + [anon_sym___fastcall] = ACTIONS(4293), + [anon_sym___thiscall] = ACTIONS(4293), + [anon_sym___vectorcall] = ACTIONS(4293), + [anon_sym_LBRACE] = ACTIONS(4295), + [anon_sym_signed] = ACTIONS(4293), + [anon_sym_unsigned] = ACTIONS(4293), + [anon_sym_long] = ACTIONS(4293), + [anon_sym_short] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_static] = ACTIONS(4293), + [anon_sym_register] = ACTIONS(4293), + [anon_sym_inline] = ACTIONS(4293), + [anon_sym___inline] = ACTIONS(4293), + [anon_sym___inline__] = ACTIONS(4293), + [anon_sym___forceinline] = ACTIONS(4293), + [anon_sym_thread_local] = ACTIONS(4293), + [anon_sym___thread] = ACTIONS(4293), + [anon_sym_const] = ACTIONS(4293), + [anon_sym_constexpr] = ACTIONS(4293), + [anon_sym_volatile] = ACTIONS(4293), + [anon_sym_restrict] = ACTIONS(4293), + [anon_sym___restrict__] = ACTIONS(4293), + [anon_sym__Atomic] = ACTIONS(4293), + [anon_sym__Noreturn] = ACTIONS(4293), + [anon_sym_noreturn] = ACTIONS(4293), + [anon_sym__Nonnull] = ACTIONS(4293), + [anon_sym_mutable] = ACTIONS(4293), + [anon_sym_constinit] = ACTIONS(4293), + [anon_sym_consteval] = ACTIONS(4293), + [anon_sym_alignas] = ACTIONS(4293), + [anon_sym__Alignas] = ACTIONS(4293), + [sym_primitive_type] = ACTIONS(4293), + [anon_sym_enum] = ACTIONS(4293), + [anon_sym_class] = ACTIONS(4293), + [anon_sym_struct] = ACTIONS(4293), + [anon_sym_union] = ACTIONS(4293), + [anon_sym_if] = ACTIONS(4293), + [anon_sym_switch] = ACTIONS(4293), + [anon_sym_case] = ACTIONS(4293), + [anon_sym_default] = ACTIONS(4293), + [anon_sym_while] = ACTIONS(4293), + [anon_sym_do] = ACTIONS(4293), + [anon_sym_for] = ACTIONS(4293), + [anon_sym_return] = ACTIONS(4293), + [anon_sym_break] = ACTIONS(4293), + [anon_sym_continue] = ACTIONS(4293), + [anon_sym_goto] = ACTIONS(4293), + [anon_sym_not] = ACTIONS(4293), + [anon_sym_compl] = ACTIONS(4293), + [anon_sym_DASH_DASH] = ACTIONS(4295), + [anon_sym_PLUS_PLUS] = ACTIONS(4295), + [anon_sym_sizeof] = ACTIONS(4293), + [anon_sym___alignof__] = ACTIONS(4293), + [anon_sym___alignof] = ACTIONS(4293), + [anon_sym__alignof] = ACTIONS(4293), + [anon_sym_alignof] = ACTIONS(4293), + [anon_sym__Alignof] = ACTIONS(4293), + [anon_sym_offsetof] = ACTIONS(4293), + [anon_sym__Generic] = ACTIONS(4293), + [anon_sym_typename] = ACTIONS(4293), + [anon_sym_asm] = ACTIONS(4293), + [anon_sym___asm__] = ACTIONS(4293), + [anon_sym___asm] = ACTIONS(4293), + [sym_number_literal] = ACTIONS(4295), + [anon_sym_L_SQUOTE] = ACTIONS(4295), + [anon_sym_u_SQUOTE] = ACTIONS(4295), + [anon_sym_U_SQUOTE] = ACTIONS(4295), + [anon_sym_u8_SQUOTE] = ACTIONS(4295), + [anon_sym_SQUOTE] = ACTIONS(4295), + [anon_sym_L_DQUOTE] = ACTIONS(4295), + [anon_sym_u_DQUOTE] = ACTIONS(4295), + [anon_sym_U_DQUOTE] = ACTIONS(4295), + [anon_sym_u8_DQUOTE] = ACTIONS(4295), + [anon_sym_DQUOTE] = ACTIONS(4295), + [sym_true] = ACTIONS(4293), + [sym_false] = ACTIONS(4293), + [anon_sym_NULL] = ACTIONS(4293), + [anon_sym_nullptr] = ACTIONS(4293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4293), + [anon_sym_decltype] = ACTIONS(4293), + [anon_sym_explicit] = ACTIONS(4293), + [anon_sym_export] = ACTIONS(4293), + [anon_sym_module] = ACTIONS(4293), + [anon_sym_import] = ACTIONS(4293), + [anon_sym_template] = ACTIONS(4293), + [anon_sym_operator] = ACTIONS(4293), + [anon_sym_try] = ACTIONS(4293), + [anon_sym_delete] = ACTIONS(4293), + [anon_sym_throw] = ACTIONS(4293), + [anon_sym_namespace] = ACTIONS(4293), + [anon_sym_static_assert] = ACTIONS(4293), + [anon_sym_concept] = ACTIONS(4293), + [anon_sym_co_return] = ACTIONS(4293), + [anon_sym_co_yield] = ACTIONS(4293), + [anon_sym_R_DQUOTE] = ACTIONS(4295), + [anon_sym_LR_DQUOTE] = ACTIONS(4295), + [anon_sym_uR_DQUOTE] = ACTIONS(4295), + [anon_sym_UR_DQUOTE] = ACTIONS(4295), + [anon_sym_u8R_DQUOTE] = ACTIONS(4295), + [anon_sym_co_await] = ACTIONS(4293), + [anon_sym_new] = ACTIONS(4293), + [anon_sym_requires] = ACTIONS(4293), + [anon_sym_CARET_CARET] = ACTIONS(4295), + [anon_sym_LBRACK_COLON] = ACTIONS(4295), + [sym_this] = ACTIONS(4293), + }, + [STATE(989)] = { + [ts_builtin_sym_end] = ACTIONS(4299), + [sym_identifier] = ACTIONS(4297), + [aux_sym_preproc_include_token1] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4299), + [anon_sym_BANG] = ACTIONS(4299), + [anon_sym_TILDE] = ACTIONS(4299), + [anon_sym_DASH] = ACTIONS(4297), + [anon_sym_PLUS] = ACTIONS(4297), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_AMP_AMP] = ACTIONS(4299), + [anon_sym_AMP] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4299), + [anon_sym___extension__] = ACTIONS(4297), + [anon_sym_typedef] = ACTIONS(4297), + [anon_sym_virtual] = ACTIONS(4297), + [anon_sym_extern] = ACTIONS(4297), + [anon_sym___attribute__] = ACTIONS(4297), + [anon_sym___attribute] = ACTIONS(4297), + [anon_sym_using] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), + [anon_sym___declspec] = ACTIONS(4297), + [anon_sym___based] = ACTIONS(4297), + [anon_sym___cdecl] = ACTIONS(4297), + [anon_sym___clrcall] = ACTIONS(4297), + [anon_sym___stdcall] = ACTIONS(4297), + [anon_sym___fastcall] = ACTIONS(4297), + [anon_sym___thiscall] = ACTIONS(4297), + [anon_sym___vectorcall] = ACTIONS(4297), + [anon_sym_LBRACE] = ACTIONS(4299), + [anon_sym_signed] = ACTIONS(4297), + [anon_sym_unsigned] = ACTIONS(4297), + [anon_sym_long] = ACTIONS(4297), + [anon_sym_short] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_static] = ACTIONS(4297), + [anon_sym_register] = ACTIONS(4297), + [anon_sym_inline] = ACTIONS(4297), + [anon_sym___inline] = ACTIONS(4297), + [anon_sym___inline__] = ACTIONS(4297), + [anon_sym___forceinline] = ACTIONS(4297), + [anon_sym_thread_local] = ACTIONS(4297), + [anon_sym___thread] = ACTIONS(4297), + [anon_sym_const] = ACTIONS(4297), + [anon_sym_constexpr] = ACTIONS(4297), + [anon_sym_volatile] = ACTIONS(4297), + [anon_sym_restrict] = ACTIONS(4297), + [anon_sym___restrict__] = ACTIONS(4297), + [anon_sym__Atomic] = ACTIONS(4297), + [anon_sym__Noreturn] = ACTIONS(4297), + [anon_sym_noreturn] = ACTIONS(4297), + [anon_sym__Nonnull] = ACTIONS(4297), + [anon_sym_mutable] = ACTIONS(4297), + [anon_sym_constinit] = ACTIONS(4297), + [anon_sym_consteval] = ACTIONS(4297), + [anon_sym_alignas] = ACTIONS(4297), + [anon_sym__Alignas] = ACTIONS(4297), + [sym_primitive_type] = ACTIONS(4297), + [anon_sym_enum] = ACTIONS(4297), + [anon_sym_class] = ACTIONS(4297), + [anon_sym_struct] = ACTIONS(4297), + [anon_sym_union] = ACTIONS(4297), + [anon_sym_if] = ACTIONS(4297), + [anon_sym_switch] = ACTIONS(4297), + [anon_sym_case] = ACTIONS(4297), + [anon_sym_default] = ACTIONS(4297), + [anon_sym_while] = ACTIONS(4297), + [anon_sym_do] = ACTIONS(4297), + [anon_sym_for] = ACTIONS(4297), + [anon_sym_return] = ACTIONS(4297), + [anon_sym_break] = ACTIONS(4297), + [anon_sym_continue] = ACTIONS(4297), + [anon_sym_goto] = ACTIONS(4297), + [anon_sym_not] = ACTIONS(4297), + [anon_sym_compl] = ACTIONS(4297), + [anon_sym_DASH_DASH] = ACTIONS(4299), + [anon_sym_PLUS_PLUS] = ACTIONS(4299), + [anon_sym_sizeof] = ACTIONS(4297), + [anon_sym___alignof__] = ACTIONS(4297), + [anon_sym___alignof] = ACTIONS(4297), + [anon_sym__alignof] = ACTIONS(4297), + [anon_sym_alignof] = ACTIONS(4297), + [anon_sym__Alignof] = ACTIONS(4297), + [anon_sym_offsetof] = ACTIONS(4297), + [anon_sym__Generic] = ACTIONS(4297), + [anon_sym_typename] = ACTIONS(4297), + [anon_sym_asm] = ACTIONS(4297), + [anon_sym___asm__] = ACTIONS(4297), + [anon_sym___asm] = ACTIONS(4297), + [sym_number_literal] = ACTIONS(4299), + [anon_sym_L_SQUOTE] = ACTIONS(4299), + [anon_sym_u_SQUOTE] = ACTIONS(4299), + [anon_sym_U_SQUOTE] = ACTIONS(4299), + [anon_sym_u8_SQUOTE] = ACTIONS(4299), + [anon_sym_SQUOTE] = ACTIONS(4299), + [anon_sym_L_DQUOTE] = ACTIONS(4299), + [anon_sym_u_DQUOTE] = ACTIONS(4299), + [anon_sym_U_DQUOTE] = ACTIONS(4299), + [anon_sym_u8_DQUOTE] = ACTIONS(4299), + [anon_sym_DQUOTE] = ACTIONS(4299), + [sym_true] = ACTIONS(4297), + [sym_false] = ACTIONS(4297), + [anon_sym_NULL] = ACTIONS(4297), + [anon_sym_nullptr] = ACTIONS(4297), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4297), + [anon_sym_decltype] = ACTIONS(4297), + [anon_sym_explicit] = ACTIONS(4297), + [anon_sym_export] = ACTIONS(4297), + [anon_sym_module] = ACTIONS(4297), + [anon_sym_import] = ACTIONS(4297), + [anon_sym_template] = ACTIONS(4297), + [anon_sym_operator] = ACTIONS(4297), + [anon_sym_try] = ACTIONS(4297), + [anon_sym_delete] = ACTIONS(4297), + [anon_sym_throw] = ACTIONS(4297), + [anon_sym_namespace] = ACTIONS(4297), + [anon_sym_static_assert] = ACTIONS(4297), + [anon_sym_concept] = ACTIONS(4297), + [anon_sym_co_return] = ACTIONS(4297), + [anon_sym_co_yield] = ACTIONS(4297), + [anon_sym_R_DQUOTE] = ACTIONS(4299), + [anon_sym_LR_DQUOTE] = ACTIONS(4299), + [anon_sym_uR_DQUOTE] = ACTIONS(4299), + [anon_sym_UR_DQUOTE] = ACTIONS(4299), + [anon_sym_u8R_DQUOTE] = ACTIONS(4299), + [anon_sym_co_await] = ACTIONS(4297), + [anon_sym_new] = ACTIONS(4297), + [anon_sym_requires] = ACTIONS(4297), + [anon_sym_CARET_CARET] = ACTIONS(4299), + [anon_sym_LBRACK_COLON] = ACTIONS(4299), + [sym_this] = ACTIONS(4297), }, [STATE(990)] = { - [ts_builtin_sym_end] = ACTIONS(4502), - [sym_identifier] = ACTIONS(4500), - [aux_sym_preproc_include_token1] = ACTIONS(4500), - [aux_sym_preproc_def_token1] = ACTIONS(4500), - [aux_sym_preproc_if_token1] = ACTIONS(4500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4500), - [sym_preproc_directive] = ACTIONS(4500), - [anon_sym_LPAREN2] = ACTIONS(4502), - [anon_sym_BANG] = ACTIONS(4502), - [anon_sym_TILDE] = ACTIONS(4502), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_PLUS] = ACTIONS(4500), - [anon_sym_STAR] = ACTIONS(4502), - [anon_sym_AMP_AMP] = ACTIONS(4502), - [anon_sym_AMP] = ACTIONS(4500), - [anon_sym_SEMI] = ACTIONS(4502), - [anon_sym___extension__] = ACTIONS(4500), - [anon_sym_typedef] = ACTIONS(4500), - [anon_sym_virtual] = ACTIONS(4500), - [anon_sym_extern] = ACTIONS(4500), - [anon_sym___attribute__] = ACTIONS(4500), - [anon_sym___attribute] = ACTIONS(4500), - [anon_sym_using] = ACTIONS(4500), - [anon_sym_COLON_COLON] = ACTIONS(4502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4502), - [anon_sym___declspec] = ACTIONS(4500), - [anon_sym___based] = ACTIONS(4500), - [anon_sym___cdecl] = ACTIONS(4500), - [anon_sym___clrcall] = ACTIONS(4500), - [anon_sym___stdcall] = ACTIONS(4500), - [anon_sym___fastcall] = ACTIONS(4500), - [anon_sym___thiscall] = ACTIONS(4500), - [anon_sym___vectorcall] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_signed] = ACTIONS(4500), - [anon_sym_unsigned] = ACTIONS(4500), - [anon_sym_long] = ACTIONS(4500), - [anon_sym_short] = ACTIONS(4500), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_static] = ACTIONS(4500), - [anon_sym_register] = ACTIONS(4500), - [anon_sym_inline] = ACTIONS(4500), - [anon_sym___inline] = ACTIONS(4500), - [anon_sym___inline__] = ACTIONS(4500), - [anon_sym___forceinline] = ACTIONS(4500), - [anon_sym_thread_local] = ACTIONS(4500), - [anon_sym___thread] = ACTIONS(4500), - [anon_sym_const] = ACTIONS(4500), - [anon_sym_constexpr] = ACTIONS(4500), - [anon_sym_volatile] = ACTIONS(4500), - [anon_sym_restrict] = ACTIONS(4500), - [anon_sym___restrict__] = ACTIONS(4500), - [anon_sym__Atomic] = ACTIONS(4500), - [anon_sym__Noreturn] = ACTIONS(4500), - [anon_sym_noreturn] = ACTIONS(4500), - [anon_sym__Nonnull] = ACTIONS(4500), - [anon_sym_mutable] = ACTIONS(4500), - [anon_sym_constinit] = ACTIONS(4500), - [anon_sym_consteval] = ACTIONS(4500), - [anon_sym_alignas] = ACTIONS(4500), - [anon_sym__Alignas] = ACTIONS(4500), - [sym_primitive_type] = ACTIONS(4500), - [anon_sym_enum] = ACTIONS(4500), - [anon_sym_class] = ACTIONS(4500), - [anon_sym_struct] = ACTIONS(4500), - [anon_sym_union] = ACTIONS(4500), - [anon_sym_if] = ACTIONS(4500), - [anon_sym_switch] = ACTIONS(4500), - [anon_sym_case] = ACTIONS(4500), - [anon_sym_default] = ACTIONS(4500), - [anon_sym_while] = ACTIONS(4500), - [anon_sym_do] = ACTIONS(4500), - [anon_sym_for] = ACTIONS(4500), - [anon_sym_return] = ACTIONS(4500), - [anon_sym_break] = ACTIONS(4500), - [anon_sym_continue] = ACTIONS(4500), - [anon_sym_goto] = ACTIONS(4500), - [anon_sym_not] = ACTIONS(4500), - [anon_sym_compl] = ACTIONS(4500), - [anon_sym_DASH_DASH] = ACTIONS(4502), - [anon_sym_PLUS_PLUS] = ACTIONS(4502), - [anon_sym_sizeof] = ACTIONS(4500), - [anon_sym___alignof__] = ACTIONS(4500), - [anon_sym___alignof] = ACTIONS(4500), - [anon_sym__alignof] = ACTIONS(4500), - [anon_sym_alignof] = ACTIONS(4500), - [anon_sym__Alignof] = ACTIONS(4500), - [anon_sym_offsetof] = ACTIONS(4500), - [anon_sym__Generic] = ACTIONS(4500), - [anon_sym_typename] = ACTIONS(4500), - [anon_sym_asm] = ACTIONS(4500), - [anon_sym___asm__] = ACTIONS(4500), - [anon_sym___asm] = ACTIONS(4500), - [sym_number_literal] = ACTIONS(4502), - [anon_sym_L_SQUOTE] = ACTIONS(4502), - [anon_sym_u_SQUOTE] = ACTIONS(4502), - [anon_sym_U_SQUOTE] = ACTIONS(4502), - [anon_sym_u8_SQUOTE] = ACTIONS(4502), - [anon_sym_SQUOTE] = ACTIONS(4502), - [anon_sym_L_DQUOTE] = ACTIONS(4502), - [anon_sym_u_DQUOTE] = ACTIONS(4502), - [anon_sym_U_DQUOTE] = ACTIONS(4502), - [anon_sym_u8_DQUOTE] = ACTIONS(4502), - [anon_sym_DQUOTE] = ACTIONS(4502), - [sym_true] = ACTIONS(4500), - [sym_false] = ACTIONS(4500), - [anon_sym_NULL] = ACTIONS(4500), - [anon_sym_nullptr] = ACTIONS(4500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4500), - [anon_sym_decltype] = ACTIONS(4500), - [anon_sym_explicit] = ACTIONS(4500), - [anon_sym_export] = ACTIONS(4500), - [anon_sym_module] = ACTIONS(4500), - [anon_sym_import] = ACTIONS(4500), - [anon_sym_template] = ACTIONS(4500), - [anon_sym_operator] = ACTIONS(4500), - [anon_sym_try] = ACTIONS(4500), - [anon_sym_delete] = ACTIONS(4500), - [anon_sym_throw] = ACTIONS(4500), - [anon_sym_namespace] = ACTIONS(4500), - [anon_sym_static_assert] = ACTIONS(4500), - [anon_sym_concept] = ACTIONS(4500), - [anon_sym_co_return] = ACTIONS(4500), - [anon_sym_co_yield] = ACTIONS(4500), - [anon_sym_R_DQUOTE] = ACTIONS(4502), - [anon_sym_LR_DQUOTE] = ACTIONS(4502), - [anon_sym_uR_DQUOTE] = ACTIONS(4502), - [anon_sym_UR_DQUOTE] = ACTIONS(4502), - [anon_sym_u8R_DQUOTE] = ACTIONS(4502), - [anon_sym_co_await] = ACTIONS(4500), - [anon_sym_new] = ACTIONS(4500), - [anon_sym_requires] = ACTIONS(4500), - [anon_sym_CARET_CARET] = ACTIONS(4502), - [anon_sym_LBRACK_COLON] = ACTIONS(4502), - [sym_this] = ACTIONS(4500), + [ts_builtin_sym_end] = ACTIONS(4303), + [sym_identifier] = ACTIONS(4301), + [aux_sym_preproc_include_token1] = ACTIONS(4301), + [aux_sym_preproc_def_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token1] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4301), + [sym_preproc_directive] = ACTIONS(4301), + [anon_sym_LPAREN2] = ACTIONS(4303), + [anon_sym_BANG] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_DASH] = ACTIONS(4301), + [anon_sym_PLUS] = ACTIONS(4301), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4301), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym___extension__] = ACTIONS(4301), + [anon_sym_typedef] = ACTIONS(4301), + [anon_sym_virtual] = ACTIONS(4301), + [anon_sym_extern] = ACTIONS(4301), + [anon_sym___attribute__] = ACTIONS(4301), + [anon_sym___attribute] = ACTIONS(4301), + [anon_sym_using] = ACTIONS(4301), + [anon_sym_COLON_COLON] = ACTIONS(4303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4303), + [anon_sym___declspec] = ACTIONS(4301), + [anon_sym___based] = ACTIONS(4301), + [anon_sym___cdecl] = ACTIONS(4301), + [anon_sym___clrcall] = ACTIONS(4301), + [anon_sym___stdcall] = ACTIONS(4301), + [anon_sym___fastcall] = ACTIONS(4301), + [anon_sym___thiscall] = ACTIONS(4301), + [anon_sym___vectorcall] = ACTIONS(4301), + [anon_sym_LBRACE] = ACTIONS(4303), + [anon_sym_signed] = ACTIONS(4301), + [anon_sym_unsigned] = ACTIONS(4301), + [anon_sym_long] = ACTIONS(4301), + [anon_sym_short] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_static] = ACTIONS(4301), + [anon_sym_register] = ACTIONS(4301), + [anon_sym_inline] = ACTIONS(4301), + [anon_sym___inline] = ACTIONS(4301), + [anon_sym___inline__] = ACTIONS(4301), + [anon_sym___forceinline] = ACTIONS(4301), + [anon_sym_thread_local] = ACTIONS(4301), + [anon_sym___thread] = ACTIONS(4301), + [anon_sym_const] = ACTIONS(4301), + [anon_sym_constexpr] = ACTIONS(4301), + [anon_sym_volatile] = ACTIONS(4301), + [anon_sym_restrict] = ACTIONS(4301), + [anon_sym___restrict__] = ACTIONS(4301), + [anon_sym__Atomic] = ACTIONS(4301), + [anon_sym__Noreturn] = ACTIONS(4301), + [anon_sym_noreturn] = ACTIONS(4301), + [anon_sym__Nonnull] = ACTIONS(4301), + [anon_sym_mutable] = ACTIONS(4301), + [anon_sym_constinit] = ACTIONS(4301), + [anon_sym_consteval] = ACTIONS(4301), + [anon_sym_alignas] = ACTIONS(4301), + [anon_sym__Alignas] = ACTIONS(4301), + [sym_primitive_type] = ACTIONS(4301), + [anon_sym_enum] = ACTIONS(4301), + [anon_sym_class] = ACTIONS(4301), + [anon_sym_struct] = ACTIONS(4301), + [anon_sym_union] = ACTIONS(4301), + [anon_sym_if] = ACTIONS(4301), + [anon_sym_switch] = ACTIONS(4301), + [anon_sym_case] = ACTIONS(4301), + [anon_sym_default] = ACTIONS(4301), + [anon_sym_while] = ACTIONS(4301), + [anon_sym_do] = ACTIONS(4301), + [anon_sym_for] = ACTIONS(4301), + [anon_sym_return] = ACTIONS(4301), + [anon_sym_break] = ACTIONS(4301), + [anon_sym_continue] = ACTIONS(4301), + [anon_sym_goto] = ACTIONS(4301), + [anon_sym_not] = ACTIONS(4301), + [anon_sym_compl] = ACTIONS(4301), + [anon_sym_DASH_DASH] = ACTIONS(4303), + [anon_sym_PLUS_PLUS] = ACTIONS(4303), + [anon_sym_sizeof] = ACTIONS(4301), + [anon_sym___alignof__] = ACTIONS(4301), + [anon_sym___alignof] = ACTIONS(4301), + [anon_sym__alignof] = ACTIONS(4301), + [anon_sym_alignof] = ACTIONS(4301), + [anon_sym__Alignof] = ACTIONS(4301), + [anon_sym_offsetof] = ACTIONS(4301), + [anon_sym__Generic] = ACTIONS(4301), + [anon_sym_typename] = ACTIONS(4301), + [anon_sym_asm] = ACTIONS(4301), + [anon_sym___asm__] = ACTIONS(4301), + [anon_sym___asm] = ACTIONS(4301), + [sym_number_literal] = ACTIONS(4303), + [anon_sym_L_SQUOTE] = ACTIONS(4303), + [anon_sym_u_SQUOTE] = ACTIONS(4303), + [anon_sym_U_SQUOTE] = ACTIONS(4303), + [anon_sym_u8_SQUOTE] = ACTIONS(4303), + [anon_sym_SQUOTE] = ACTIONS(4303), + [anon_sym_L_DQUOTE] = ACTIONS(4303), + [anon_sym_u_DQUOTE] = ACTIONS(4303), + [anon_sym_U_DQUOTE] = ACTIONS(4303), + [anon_sym_u8_DQUOTE] = ACTIONS(4303), + [anon_sym_DQUOTE] = ACTIONS(4303), + [sym_true] = ACTIONS(4301), + [sym_false] = ACTIONS(4301), + [anon_sym_NULL] = ACTIONS(4301), + [anon_sym_nullptr] = ACTIONS(4301), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4301), + [anon_sym_decltype] = ACTIONS(4301), + [anon_sym_explicit] = ACTIONS(4301), + [anon_sym_export] = ACTIONS(4301), + [anon_sym_module] = ACTIONS(4301), + [anon_sym_import] = ACTIONS(4301), + [anon_sym_template] = ACTIONS(4301), + [anon_sym_operator] = ACTIONS(4301), + [anon_sym_try] = ACTIONS(4301), + [anon_sym_delete] = ACTIONS(4301), + [anon_sym_throw] = ACTIONS(4301), + [anon_sym_namespace] = ACTIONS(4301), + [anon_sym_static_assert] = ACTIONS(4301), + [anon_sym_concept] = ACTIONS(4301), + [anon_sym_co_return] = ACTIONS(4301), + [anon_sym_co_yield] = ACTIONS(4301), + [anon_sym_R_DQUOTE] = ACTIONS(4303), + [anon_sym_LR_DQUOTE] = ACTIONS(4303), + [anon_sym_uR_DQUOTE] = ACTIONS(4303), + [anon_sym_UR_DQUOTE] = ACTIONS(4303), + [anon_sym_u8R_DQUOTE] = ACTIONS(4303), + [anon_sym_co_await] = ACTIONS(4301), + [anon_sym_new] = ACTIONS(4301), + [anon_sym_requires] = ACTIONS(4301), + [anon_sym_CARET_CARET] = ACTIONS(4303), + [anon_sym_LBRACK_COLON] = ACTIONS(4303), + [sym_this] = ACTIONS(4301), }, [STATE(991)] = { - [ts_builtin_sym_end] = ACTIONS(4042), - [sym_identifier] = ACTIONS(4040), - [aux_sym_preproc_include_token1] = ACTIONS(4040), - [aux_sym_preproc_def_token1] = ACTIONS(4040), - [aux_sym_preproc_if_token1] = ACTIONS(4040), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4040), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4040), - [sym_preproc_directive] = ACTIONS(4040), - [anon_sym_LPAREN2] = ACTIONS(4042), - [anon_sym_BANG] = ACTIONS(4042), - [anon_sym_TILDE] = ACTIONS(4042), - [anon_sym_DASH] = ACTIONS(4040), - [anon_sym_PLUS] = ACTIONS(4040), - [anon_sym_STAR] = ACTIONS(4042), - [anon_sym_AMP_AMP] = ACTIONS(4042), - [anon_sym_AMP] = ACTIONS(4040), - [anon_sym_SEMI] = ACTIONS(4042), - [anon_sym___extension__] = ACTIONS(4040), - [anon_sym_typedef] = ACTIONS(4040), - [anon_sym_virtual] = ACTIONS(4040), - [anon_sym_extern] = ACTIONS(4040), - [anon_sym___attribute__] = ACTIONS(4040), - [anon_sym___attribute] = ACTIONS(4040), - [anon_sym_using] = ACTIONS(4040), - [anon_sym_COLON_COLON] = ACTIONS(4042), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4042), - [anon_sym___declspec] = ACTIONS(4040), - [anon_sym___based] = ACTIONS(4040), - [anon_sym___cdecl] = ACTIONS(4040), - [anon_sym___clrcall] = ACTIONS(4040), - [anon_sym___stdcall] = ACTIONS(4040), - [anon_sym___fastcall] = ACTIONS(4040), - [anon_sym___thiscall] = ACTIONS(4040), - [anon_sym___vectorcall] = ACTIONS(4040), - [anon_sym_LBRACE] = ACTIONS(4042), - [anon_sym_signed] = ACTIONS(4040), - [anon_sym_unsigned] = ACTIONS(4040), - [anon_sym_long] = ACTIONS(4040), - [anon_sym_short] = ACTIONS(4040), - [anon_sym_LBRACK] = ACTIONS(4040), - [anon_sym_static] = ACTIONS(4040), - [anon_sym_register] = ACTIONS(4040), - [anon_sym_inline] = ACTIONS(4040), - [anon_sym___inline] = ACTIONS(4040), - [anon_sym___inline__] = ACTIONS(4040), - [anon_sym___forceinline] = ACTIONS(4040), - [anon_sym_thread_local] = ACTIONS(4040), - [anon_sym___thread] = ACTIONS(4040), - [anon_sym_const] = ACTIONS(4040), - [anon_sym_constexpr] = ACTIONS(4040), - [anon_sym_volatile] = ACTIONS(4040), - [anon_sym_restrict] = ACTIONS(4040), - [anon_sym___restrict__] = ACTIONS(4040), - [anon_sym__Atomic] = ACTIONS(4040), - [anon_sym__Noreturn] = ACTIONS(4040), - [anon_sym_noreturn] = ACTIONS(4040), - [anon_sym__Nonnull] = ACTIONS(4040), - [anon_sym_mutable] = ACTIONS(4040), - [anon_sym_constinit] = ACTIONS(4040), - [anon_sym_consteval] = ACTIONS(4040), - [anon_sym_alignas] = ACTIONS(4040), - [anon_sym__Alignas] = ACTIONS(4040), - [sym_primitive_type] = ACTIONS(4040), - [anon_sym_enum] = ACTIONS(4040), - [anon_sym_class] = ACTIONS(4040), - [anon_sym_struct] = ACTIONS(4040), - [anon_sym_union] = ACTIONS(4040), - [anon_sym_if] = ACTIONS(4040), - [anon_sym_switch] = ACTIONS(4040), - [anon_sym_case] = ACTIONS(4040), - [anon_sym_default] = ACTIONS(4040), - [anon_sym_while] = ACTIONS(4040), - [anon_sym_do] = ACTIONS(4040), - [anon_sym_for] = ACTIONS(4040), - [anon_sym_return] = ACTIONS(4040), - [anon_sym_break] = ACTIONS(4040), - [anon_sym_continue] = ACTIONS(4040), - [anon_sym_goto] = ACTIONS(4040), - [anon_sym_not] = ACTIONS(4040), - [anon_sym_compl] = ACTIONS(4040), - [anon_sym_DASH_DASH] = ACTIONS(4042), - [anon_sym_PLUS_PLUS] = ACTIONS(4042), - [anon_sym_sizeof] = ACTIONS(4040), - [anon_sym___alignof__] = ACTIONS(4040), - [anon_sym___alignof] = ACTIONS(4040), - [anon_sym__alignof] = ACTIONS(4040), - [anon_sym_alignof] = ACTIONS(4040), - [anon_sym__Alignof] = ACTIONS(4040), - [anon_sym_offsetof] = ACTIONS(4040), - [anon_sym__Generic] = ACTIONS(4040), - [anon_sym_typename] = ACTIONS(4040), - [anon_sym_asm] = ACTIONS(4040), - [anon_sym___asm__] = ACTIONS(4040), - [anon_sym___asm] = ACTIONS(4040), - [sym_number_literal] = ACTIONS(4042), - [anon_sym_L_SQUOTE] = ACTIONS(4042), - [anon_sym_u_SQUOTE] = ACTIONS(4042), - [anon_sym_U_SQUOTE] = ACTIONS(4042), - [anon_sym_u8_SQUOTE] = ACTIONS(4042), - [anon_sym_SQUOTE] = ACTIONS(4042), - [anon_sym_L_DQUOTE] = ACTIONS(4042), - [anon_sym_u_DQUOTE] = ACTIONS(4042), - [anon_sym_U_DQUOTE] = ACTIONS(4042), - [anon_sym_u8_DQUOTE] = ACTIONS(4042), - [anon_sym_DQUOTE] = ACTIONS(4042), - [sym_true] = ACTIONS(4040), - [sym_false] = ACTIONS(4040), - [anon_sym_NULL] = ACTIONS(4040), - [anon_sym_nullptr] = ACTIONS(4040), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4040), - [anon_sym_decltype] = ACTIONS(4040), - [anon_sym_explicit] = ACTIONS(4040), - [anon_sym_export] = ACTIONS(4040), - [anon_sym_module] = ACTIONS(4040), - [anon_sym_import] = ACTIONS(4040), - [anon_sym_template] = ACTIONS(4040), - [anon_sym_operator] = ACTIONS(4040), - [anon_sym_try] = ACTIONS(4040), - [anon_sym_delete] = ACTIONS(4040), - [anon_sym_throw] = ACTIONS(4040), - [anon_sym_namespace] = ACTIONS(4040), - [anon_sym_static_assert] = ACTIONS(4040), - [anon_sym_concept] = ACTIONS(4040), - [anon_sym_co_return] = ACTIONS(4040), - [anon_sym_co_yield] = ACTIONS(4040), - [anon_sym_R_DQUOTE] = ACTIONS(4042), - [anon_sym_LR_DQUOTE] = ACTIONS(4042), - [anon_sym_uR_DQUOTE] = ACTIONS(4042), - [anon_sym_UR_DQUOTE] = ACTIONS(4042), - [anon_sym_u8R_DQUOTE] = ACTIONS(4042), - [anon_sym_co_await] = ACTIONS(4040), - [anon_sym_new] = ACTIONS(4040), - [anon_sym_requires] = ACTIONS(4040), - [anon_sym_CARET_CARET] = ACTIONS(4042), - [anon_sym_LBRACK_COLON] = ACTIONS(4042), - [sym_this] = ACTIONS(4040), + [ts_builtin_sym_end] = ACTIONS(4307), + [sym_identifier] = ACTIONS(4305), + [aux_sym_preproc_include_token1] = ACTIONS(4305), + [aux_sym_preproc_def_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token1] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4305), + [sym_preproc_directive] = ACTIONS(4305), + [anon_sym_LPAREN2] = ACTIONS(4307), + [anon_sym_BANG] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4307), + [anon_sym_DASH] = ACTIONS(4305), + [anon_sym_PLUS] = ACTIONS(4305), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_typedef] = ACTIONS(4305), + [anon_sym_virtual] = ACTIONS(4305), + [anon_sym_extern] = ACTIONS(4305), + [anon_sym___attribute__] = ACTIONS(4305), + [anon_sym___attribute] = ACTIONS(4305), + [anon_sym_using] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4307), + [anon_sym___declspec] = ACTIONS(4305), + [anon_sym___based] = ACTIONS(4305), + [anon_sym___cdecl] = ACTIONS(4305), + [anon_sym___clrcall] = ACTIONS(4305), + [anon_sym___stdcall] = ACTIONS(4305), + [anon_sym___fastcall] = ACTIONS(4305), + [anon_sym___thiscall] = ACTIONS(4305), + [anon_sym___vectorcall] = ACTIONS(4305), + [anon_sym_LBRACE] = ACTIONS(4307), + [anon_sym_signed] = ACTIONS(4305), + [anon_sym_unsigned] = ACTIONS(4305), + [anon_sym_long] = ACTIONS(4305), + [anon_sym_short] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_static] = ACTIONS(4305), + [anon_sym_register] = ACTIONS(4305), + [anon_sym_inline] = ACTIONS(4305), + [anon_sym___inline] = ACTIONS(4305), + [anon_sym___inline__] = ACTIONS(4305), + [anon_sym___forceinline] = ACTIONS(4305), + [anon_sym_thread_local] = ACTIONS(4305), + [anon_sym___thread] = ACTIONS(4305), + [anon_sym_const] = ACTIONS(4305), + [anon_sym_constexpr] = ACTIONS(4305), + [anon_sym_volatile] = ACTIONS(4305), + [anon_sym_restrict] = ACTIONS(4305), + [anon_sym___restrict__] = ACTIONS(4305), + [anon_sym__Atomic] = ACTIONS(4305), + [anon_sym__Noreturn] = ACTIONS(4305), + [anon_sym_noreturn] = ACTIONS(4305), + [anon_sym__Nonnull] = ACTIONS(4305), + [anon_sym_mutable] = ACTIONS(4305), + [anon_sym_constinit] = ACTIONS(4305), + [anon_sym_consteval] = ACTIONS(4305), + [anon_sym_alignas] = ACTIONS(4305), + [anon_sym__Alignas] = ACTIONS(4305), + [sym_primitive_type] = ACTIONS(4305), + [anon_sym_enum] = ACTIONS(4305), + [anon_sym_class] = ACTIONS(4305), + [anon_sym_struct] = ACTIONS(4305), + [anon_sym_union] = ACTIONS(4305), + [anon_sym_if] = ACTIONS(4305), + [anon_sym_switch] = ACTIONS(4305), + [anon_sym_case] = ACTIONS(4305), + [anon_sym_default] = ACTIONS(4305), + [anon_sym_while] = ACTIONS(4305), + [anon_sym_do] = ACTIONS(4305), + [anon_sym_for] = ACTIONS(4305), + [anon_sym_return] = ACTIONS(4305), + [anon_sym_break] = ACTIONS(4305), + [anon_sym_continue] = ACTIONS(4305), + [anon_sym_goto] = ACTIONS(4305), + [anon_sym_not] = ACTIONS(4305), + [anon_sym_compl] = ACTIONS(4305), + [anon_sym_DASH_DASH] = ACTIONS(4307), + [anon_sym_PLUS_PLUS] = ACTIONS(4307), + [anon_sym_sizeof] = ACTIONS(4305), + [anon_sym___alignof__] = ACTIONS(4305), + [anon_sym___alignof] = ACTIONS(4305), + [anon_sym__alignof] = ACTIONS(4305), + [anon_sym_alignof] = ACTIONS(4305), + [anon_sym__Alignof] = ACTIONS(4305), + [anon_sym_offsetof] = ACTIONS(4305), + [anon_sym__Generic] = ACTIONS(4305), + [anon_sym_typename] = ACTIONS(4305), + [anon_sym_asm] = ACTIONS(4305), + [anon_sym___asm__] = ACTIONS(4305), + [anon_sym___asm] = ACTIONS(4305), + [sym_number_literal] = ACTIONS(4307), + [anon_sym_L_SQUOTE] = ACTIONS(4307), + [anon_sym_u_SQUOTE] = ACTIONS(4307), + [anon_sym_U_SQUOTE] = ACTIONS(4307), + [anon_sym_u8_SQUOTE] = ACTIONS(4307), + [anon_sym_SQUOTE] = ACTIONS(4307), + [anon_sym_L_DQUOTE] = ACTIONS(4307), + [anon_sym_u_DQUOTE] = ACTIONS(4307), + [anon_sym_U_DQUOTE] = ACTIONS(4307), + [anon_sym_u8_DQUOTE] = ACTIONS(4307), + [anon_sym_DQUOTE] = ACTIONS(4307), + [sym_true] = ACTIONS(4305), + [sym_false] = ACTIONS(4305), + [anon_sym_NULL] = ACTIONS(4305), + [anon_sym_nullptr] = ACTIONS(4305), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4305), + [anon_sym_decltype] = ACTIONS(4305), + [anon_sym_explicit] = ACTIONS(4305), + [anon_sym_export] = ACTIONS(4305), + [anon_sym_module] = ACTIONS(4305), + [anon_sym_import] = ACTIONS(4305), + [anon_sym_template] = ACTIONS(4305), + [anon_sym_operator] = ACTIONS(4305), + [anon_sym_try] = ACTIONS(4305), + [anon_sym_delete] = ACTIONS(4305), + [anon_sym_throw] = ACTIONS(4305), + [anon_sym_namespace] = ACTIONS(4305), + [anon_sym_static_assert] = ACTIONS(4305), + [anon_sym_concept] = ACTIONS(4305), + [anon_sym_co_return] = ACTIONS(4305), + [anon_sym_co_yield] = ACTIONS(4305), + [anon_sym_R_DQUOTE] = ACTIONS(4307), + [anon_sym_LR_DQUOTE] = ACTIONS(4307), + [anon_sym_uR_DQUOTE] = ACTIONS(4307), + [anon_sym_UR_DQUOTE] = ACTIONS(4307), + [anon_sym_u8R_DQUOTE] = ACTIONS(4307), + [anon_sym_co_await] = ACTIONS(4305), + [anon_sym_new] = ACTIONS(4305), + [anon_sym_requires] = ACTIONS(4305), + [anon_sym_CARET_CARET] = ACTIONS(4307), + [anon_sym_LBRACK_COLON] = ACTIONS(4307), + [sym_this] = ACTIONS(4305), }, [STATE(992)] = { - [ts_builtin_sym_end] = ACTIONS(4046), - [sym_identifier] = ACTIONS(4044), - [aux_sym_preproc_include_token1] = ACTIONS(4044), - [aux_sym_preproc_def_token1] = ACTIONS(4044), - [aux_sym_preproc_if_token1] = ACTIONS(4044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), - [sym_preproc_directive] = ACTIONS(4044), - [anon_sym_LPAREN2] = ACTIONS(4046), - [anon_sym_BANG] = ACTIONS(4046), - [anon_sym_TILDE] = ACTIONS(4046), - [anon_sym_DASH] = ACTIONS(4044), - [anon_sym_PLUS] = ACTIONS(4044), - [anon_sym_STAR] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym___extension__] = ACTIONS(4044), - [anon_sym_typedef] = ACTIONS(4044), - [anon_sym_virtual] = ACTIONS(4044), - [anon_sym_extern] = ACTIONS(4044), - [anon_sym___attribute__] = ACTIONS(4044), - [anon_sym___attribute] = ACTIONS(4044), - [anon_sym_using] = ACTIONS(4044), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), - [anon_sym___declspec] = ACTIONS(4044), - [anon_sym___based] = ACTIONS(4044), - [anon_sym___cdecl] = ACTIONS(4044), - [anon_sym___clrcall] = ACTIONS(4044), - [anon_sym___stdcall] = ACTIONS(4044), - [anon_sym___fastcall] = ACTIONS(4044), - [anon_sym___thiscall] = ACTIONS(4044), - [anon_sym___vectorcall] = ACTIONS(4044), - [anon_sym_LBRACE] = ACTIONS(4046), - [anon_sym_signed] = ACTIONS(4044), - [anon_sym_unsigned] = ACTIONS(4044), - [anon_sym_long] = ACTIONS(4044), - [anon_sym_short] = ACTIONS(4044), - [anon_sym_LBRACK] = ACTIONS(4044), - [anon_sym_static] = ACTIONS(4044), - [anon_sym_register] = ACTIONS(4044), - [anon_sym_inline] = ACTIONS(4044), - [anon_sym___inline] = ACTIONS(4044), - [anon_sym___inline__] = ACTIONS(4044), - [anon_sym___forceinline] = ACTIONS(4044), - [anon_sym_thread_local] = ACTIONS(4044), - [anon_sym___thread] = ACTIONS(4044), - [anon_sym_const] = ACTIONS(4044), - [anon_sym_constexpr] = ACTIONS(4044), - [anon_sym_volatile] = ACTIONS(4044), - [anon_sym_restrict] = ACTIONS(4044), - [anon_sym___restrict__] = ACTIONS(4044), - [anon_sym__Atomic] = ACTIONS(4044), - [anon_sym__Noreturn] = ACTIONS(4044), - [anon_sym_noreturn] = ACTIONS(4044), - [anon_sym__Nonnull] = ACTIONS(4044), - [anon_sym_mutable] = ACTIONS(4044), - [anon_sym_constinit] = ACTIONS(4044), - [anon_sym_consteval] = ACTIONS(4044), - [anon_sym_alignas] = ACTIONS(4044), - [anon_sym__Alignas] = ACTIONS(4044), - [sym_primitive_type] = ACTIONS(4044), - [anon_sym_enum] = ACTIONS(4044), - [anon_sym_class] = ACTIONS(4044), - [anon_sym_struct] = ACTIONS(4044), - [anon_sym_union] = ACTIONS(4044), - [anon_sym_if] = ACTIONS(4044), - [anon_sym_switch] = ACTIONS(4044), - [anon_sym_case] = ACTIONS(4044), - [anon_sym_default] = ACTIONS(4044), - [anon_sym_while] = ACTIONS(4044), - [anon_sym_do] = ACTIONS(4044), - [anon_sym_for] = ACTIONS(4044), - [anon_sym_return] = ACTIONS(4044), - [anon_sym_break] = ACTIONS(4044), - [anon_sym_continue] = ACTIONS(4044), - [anon_sym_goto] = ACTIONS(4044), - [anon_sym_not] = ACTIONS(4044), - [anon_sym_compl] = ACTIONS(4044), - [anon_sym_DASH_DASH] = ACTIONS(4046), - [anon_sym_PLUS_PLUS] = ACTIONS(4046), - [anon_sym_sizeof] = ACTIONS(4044), - [anon_sym___alignof__] = ACTIONS(4044), - [anon_sym___alignof] = ACTIONS(4044), - [anon_sym__alignof] = ACTIONS(4044), - [anon_sym_alignof] = ACTIONS(4044), - [anon_sym__Alignof] = ACTIONS(4044), - [anon_sym_offsetof] = ACTIONS(4044), - [anon_sym__Generic] = ACTIONS(4044), - [anon_sym_typename] = ACTIONS(4044), - [anon_sym_asm] = ACTIONS(4044), - [anon_sym___asm__] = ACTIONS(4044), - [anon_sym___asm] = ACTIONS(4044), - [sym_number_literal] = ACTIONS(4046), - [anon_sym_L_SQUOTE] = ACTIONS(4046), - [anon_sym_u_SQUOTE] = ACTIONS(4046), - [anon_sym_U_SQUOTE] = ACTIONS(4046), - [anon_sym_u8_SQUOTE] = ACTIONS(4046), - [anon_sym_SQUOTE] = ACTIONS(4046), - [anon_sym_L_DQUOTE] = ACTIONS(4046), - [anon_sym_u_DQUOTE] = ACTIONS(4046), - [anon_sym_U_DQUOTE] = ACTIONS(4046), - [anon_sym_u8_DQUOTE] = ACTIONS(4046), - [anon_sym_DQUOTE] = ACTIONS(4046), - [sym_true] = ACTIONS(4044), - [sym_false] = ACTIONS(4044), - [anon_sym_NULL] = ACTIONS(4044), - [anon_sym_nullptr] = ACTIONS(4044), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4044), - [anon_sym_decltype] = ACTIONS(4044), - [anon_sym_explicit] = ACTIONS(4044), - [anon_sym_export] = ACTIONS(4044), - [anon_sym_module] = ACTIONS(4044), - [anon_sym_import] = ACTIONS(4044), - [anon_sym_template] = ACTIONS(4044), - [anon_sym_operator] = ACTIONS(4044), - [anon_sym_try] = ACTIONS(4044), - [anon_sym_delete] = ACTIONS(4044), - [anon_sym_throw] = ACTIONS(4044), - [anon_sym_namespace] = ACTIONS(4044), - [anon_sym_static_assert] = ACTIONS(4044), - [anon_sym_concept] = ACTIONS(4044), - [anon_sym_co_return] = ACTIONS(4044), - [anon_sym_co_yield] = ACTIONS(4044), - [anon_sym_R_DQUOTE] = ACTIONS(4046), - [anon_sym_LR_DQUOTE] = ACTIONS(4046), - [anon_sym_uR_DQUOTE] = ACTIONS(4046), - [anon_sym_UR_DQUOTE] = ACTIONS(4046), - [anon_sym_u8R_DQUOTE] = ACTIONS(4046), - [anon_sym_co_await] = ACTIONS(4044), - [anon_sym_new] = ACTIONS(4044), - [anon_sym_requires] = ACTIONS(4044), - [anon_sym_CARET_CARET] = ACTIONS(4046), - [anon_sym_LBRACK_COLON] = ACTIONS(4046), - [sym_this] = ACTIONS(4044), + [ts_builtin_sym_end] = ACTIONS(4311), + [sym_identifier] = ACTIONS(4309), + [aux_sym_preproc_include_token1] = ACTIONS(4309), + [aux_sym_preproc_def_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4309), + [sym_preproc_directive] = ACTIONS(4309), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_BANG] = ACTIONS(4311), + [anon_sym_TILDE] = ACTIONS(4311), + [anon_sym_DASH] = ACTIONS(4309), + [anon_sym_PLUS] = ACTIONS(4309), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_AMP_AMP] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), + [anon_sym_SEMI] = ACTIONS(4311), + [anon_sym___extension__] = ACTIONS(4309), + [anon_sym_typedef] = ACTIONS(4309), + [anon_sym_virtual] = ACTIONS(4309), + [anon_sym_extern] = ACTIONS(4309), + [anon_sym___attribute__] = ACTIONS(4309), + [anon_sym___attribute] = ACTIONS(4309), + [anon_sym_using] = ACTIONS(4309), + [anon_sym_COLON_COLON] = ACTIONS(4311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4311), + [anon_sym___declspec] = ACTIONS(4309), + [anon_sym___based] = ACTIONS(4309), + [anon_sym___cdecl] = ACTIONS(4309), + [anon_sym___clrcall] = ACTIONS(4309), + [anon_sym___stdcall] = ACTIONS(4309), + [anon_sym___fastcall] = ACTIONS(4309), + [anon_sym___thiscall] = ACTIONS(4309), + [anon_sym___vectorcall] = ACTIONS(4309), + [anon_sym_LBRACE] = ACTIONS(4311), + [anon_sym_signed] = ACTIONS(4309), + [anon_sym_unsigned] = ACTIONS(4309), + [anon_sym_long] = ACTIONS(4309), + [anon_sym_short] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_static] = ACTIONS(4309), + [anon_sym_register] = ACTIONS(4309), + [anon_sym_inline] = ACTIONS(4309), + [anon_sym___inline] = ACTIONS(4309), + [anon_sym___inline__] = ACTIONS(4309), + [anon_sym___forceinline] = ACTIONS(4309), + [anon_sym_thread_local] = ACTIONS(4309), + [anon_sym___thread] = ACTIONS(4309), + [anon_sym_const] = ACTIONS(4309), + [anon_sym_constexpr] = ACTIONS(4309), + [anon_sym_volatile] = ACTIONS(4309), + [anon_sym_restrict] = ACTIONS(4309), + [anon_sym___restrict__] = ACTIONS(4309), + [anon_sym__Atomic] = ACTIONS(4309), + [anon_sym__Noreturn] = ACTIONS(4309), + [anon_sym_noreturn] = ACTIONS(4309), + [anon_sym__Nonnull] = ACTIONS(4309), + [anon_sym_mutable] = ACTIONS(4309), + [anon_sym_constinit] = ACTIONS(4309), + [anon_sym_consteval] = ACTIONS(4309), + [anon_sym_alignas] = ACTIONS(4309), + [anon_sym__Alignas] = ACTIONS(4309), + [sym_primitive_type] = ACTIONS(4309), + [anon_sym_enum] = ACTIONS(4309), + [anon_sym_class] = ACTIONS(4309), + [anon_sym_struct] = ACTIONS(4309), + [anon_sym_union] = ACTIONS(4309), + [anon_sym_if] = ACTIONS(4309), + [anon_sym_switch] = ACTIONS(4309), + [anon_sym_case] = ACTIONS(4309), + [anon_sym_default] = ACTIONS(4309), + [anon_sym_while] = ACTIONS(4309), + [anon_sym_do] = ACTIONS(4309), + [anon_sym_for] = ACTIONS(4309), + [anon_sym_return] = ACTIONS(4309), + [anon_sym_break] = ACTIONS(4309), + [anon_sym_continue] = ACTIONS(4309), + [anon_sym_goto] = ACTIONS(4309), + [anon_sym_not] = ACTIONS(4309), + [anon_sym_compl] = ACTIONS(4309), + [anon_sym_DASH_DASH] = ACTIONS(4311), + [anon_sym_PLUS_PLUS] = ACTIONS(4311), + [anon_sym_sizeof] = ACTIONS(4309), + [anon_sym___alignof__] = ACTIONS(4309), + [anon_sym___alignof] = ACTIONS(4309), + [anon_sym__alignof] = ACTIONS(4309), + [anon_sym_alignof] = ACTIONS(4309), + [anon_sym__Alignof] = ACTIONS(4309), + [anon_sym_offsetof] = ACTIONS(4309), + [anon_sym__Generic] = ACTIONS(4309), + [anon_sym_typename] = ACTIONS(4309), + [anon_sym_asm] = ACTIONS(4309), + [anon_sym___asm__] = ACTIONS(4309), + [anon_sym___asm] = ACTIONS(4309), + [sym_number_literal] = ACTIONS(4311), + [anon_sym_L_SQUOTE] = ACTIONS(4311), + [anon_sym_u_SQUOTE] = ACTIONS(4311), + [anon_sym_U_SQUOTE] = ACTIONS(4311), + [anon_sym_u8_SQUOTE] = ACTIONS(4311), + [anon_sym_SQUOTE] = ACTIONS(4311), + [anon_sym_L_DQUOTE] = ACTIONS(4311), + [anon_sym_u_DQUOTE] = ACTIONS(4311), + [anon_sym_U_DQUOTE] = ACTIONS(4311), + [anon_sym_u8_DQUOTE] = ACTIONS(4311), + [anon_sym_DQUOTE] = ACTIONS(4311), + [sym_true] = ACTIONS(4309), + [sym_false] = ACTIONS(4309), + [anon_sym_NULL] = ACTIONS(4309), + [anon_sym_nullptr] = ACTIONS(4309), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4309), + [anon_sym_decltype] = ACTIONS(4309), + [anon_sym_explicit] = ACTIONS(4309), + [anon_sym_export] = ACTIONS(4309), + [anon_sym_module] = ACTIONS(4309), + [anon_sym_import] = ACTIONS(4309), + [anon_sym_template] = ACTIONS(4309), + [anon_sym_operator] = ACTIONS(4309), + [anon_sym_try] = ACTIONS(4309), + [anon_sym_delete] = ACTIONS(4309), + [anon_sym_throw] = ACTIONS(4309), + [anon_sym_namespace] = ACTIONS(4309), + [anon_sym_static_assert] = ACTIONS(4309), + [anon_sym_concept] = ACTIONS(4309), + [anon_sym_co_return] = ACTIONS(4309), + [anon_sym_co_yield] = ACTIONS(4309), + [anon_sym_R_DQUOTE] = ACTIONS(4311), + [anon_sym_LR_DQUOTE] = ACTIONS(4311), + [anon_sym_uR_DQUOTE] = ACTIONS(4311), + [anon_sym_UR_DQUOTE] = ACTIONS(4311), + [anon_sym_u8R_DQUOTE] = ACTIONS(4311), + [anon_sym_co_await] = ACTIONS(4309), + [anon_sym_new] = ACTIONS(4309), + [anon_sym_requires] = ACTIONS(4309), + [anon_sym_CARET_CARET] = ACTIONS(4311), + [anon_sym_LBRACK_COLON] = ACTIONS(4311), + [sym_this] = ACTIONS(4309), }, [STATE(993)] = { - [ts_builtin_sym_end] = ACTIONS(4532), - [sym_identifier] = ACTIONS(4530), - [aux_sym_preproc_include_token1] = ACTIONS(4530), - [aux_sym_preproc_def_token1] = ACTIONS(4530), - [aux_sym_preproc_if_token1] = ACTIONS(4530), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4530), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4530), - [sym_preproc_directive] = ACTIONS(4530), - [anon_sym_LPAREN2] = ACTIONS(4532), - [anon_sym_BANG] = ACTIONS(4532), - [anon_sym_TILDE] = ACTIONS(4532), - [anon_sym_DASH] = ACTIONS(4530), - [anon_sym_PLUS] = ACTIONS(4530), - [anon_sym_STAR] = ACTIONS(4532), - [anon_sym_AMP_AMP] = ACTIONS(4532), - [anon_sym_AMP] = ACTIONS(4530), - [anon_sym_SEMI] = ACTIONS(4532), - [anon_sym___extension__] = ACTIONS(4530), - [anon_sym_typedef] = ACTIONS(4530), - [anon_sym_virtual] = ACTIONS(4530), - [anon_sym_extern] = ACTIONS(4530), - [anon_sym___attribute__] = ACTIONS(4530), - [anon_sym___attribute] = ACTIONS(4530), - [anon_sym_using] = ACTIONS(4530), - [anon_sym_COLON_COLON] = ACTIONS(4532), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4532), - [anon_sym___declspec] = ACTIONS(4530), - [anon_sym___based] = ACTIONS(4530), - [anon_sym___cdecl] = ACTIONS(4530), - [anon_sym___clrcall] = ACTIONS(4530), - [anon_sym___stdcall] = ACTIONS(4530), - [anon_sym___fastcall] = ACTIONS(4530), - [anon_sym___thiscall] = ACTIONS(4530), - [anon_sym___vectorcall] = ACTIONS(4530), - [anon_sym_LBRACE] = ACTIONS(4532), - [anon_sym_signed] = ACTIONS(4530), - [anon_sym_unsigned] = ACTIONS(4530), - [anon_sym_long] = ACTIONS(4530), - [anon_sym_short] = ACTIONS(4530), - [anon_sym_LBRACK] = ACTIONS(4530), - [anon_sym_static] = ACTIONS(4530), - [anon_sym_register] = ACTIONS(4530), - [anon_sym_inline] = ACTIONS(4530), - [anon_sym___inline] = ACTIONS(4530), - [anon_sym___inline__] = ACTIONS(4530), - [anon_sym___forceinline] = ACTIONS(4530), - [anon_sym_thread_local] = ACTIONS(4530), - [anon_sym___thread] = ACTIONS(4530), - [anon_sym_const] = ACTIONS(4530), - [anon_sym_constexpr] = ACTIONS(4530), - [anon_sym_volatile] = ACTIONS(4530), - [anon_sym_restrict] = ACTIONS(4530), - [anon_sym___restrict__] = ACTIONS(4530), - [anon_sym__Atomic] = ACTIONS(4530), - [anon_sym__Noreturn] = ACTIONS(4530), - [anon_sym_noreturn] = ACTIONS(4530), - [anon_sym__Nonnull] = ACTIONS(4530), - [anon_sym_mutable] = ACTIONS(4530), - [anon_sym_constinit] = ACTIONS(4530), - [anon_sym_consteval] = ACTIONS(4530), - [anon_sym_alignas] = ACTIONS(4530), - [anon_sym__Alignas] = ACTIONS(4530), - [sym_primitive_type] = ACTIONS(4530), - [anon_sym_enum] = ACTIONS(4530), - [anon_sym_class] = ACTIONS(4530), - [anon_sym_struct] = ACTIONS(4530), - [anon_sym_union] = ACTIONS(4530), - [anon_sym_if] = ACTIONS(4530), - [anon_sym_switch] = ACTIONS(4530), - [anon_sym_case] = ACTIONS(4530), - [anon_sym_default] = ACTIONS(4530), - [anon_sym_while] = ACTIONS(4530), - [anon_sym_do] = ACTIONS(4530), - [anon_sym_for] = ACTIONS(4530), - [anon_sym_return] = ACTIONS(4530), - [anon_sym_break] = ACTIONS(4530), - [anon_sym_continue] = ACTIONS(4530), - [anon_sym_goto] = ACTIONS(4530), - [anon_sym_not] = ACTIONS(4530), - [anon_sym_compl] = ACTIONS(4530), - [anon_sym_DASH_DASH] = ACTIONS(4532), - [anon_sym_PLUS_PLUS] = ACTIONS(4532), - [anon_sym_sizeof] = ACTIONS(4530), - [anon_sym___alignof__] = ACTIONS(4530), - [anon_sym___alignof] = ACTIONS(4530), - [anon_sym__alignof] = ACTIONS(4530), - [anon_sym_alignof] = ACTIONS(4530), - [anon_sym__Alignof] = ACTIONS(4530), - [anon_sym_offsetof] = ACTIONS(4530), - [anon_sym__Generic] = ACTIONS(4530), - [anon_sym_typename] = ACTIONS(4530), - [anon_sym_asm] = ACTIONS(4530), - [anon_sym___asm__] = ACTIONS(4530), - [anon_sym___asm] = ACTIONS(4530), - [sym_number_literal] = ACTIONS(4532), - [anon_sym_L_SQUOTE] = ACTIONS(4532), - [anon_sym_u_SQUOTE] = ACTIONS(4532), - [anon_sym_U_SQUOTE] = ACTIONS(4532), - [anon_sym_u8_SQUOTE] = ACTIONS(4532), - [anon_sym_SQUOTE] = ACTIONS(4532), - [anon_sym_L_DQUOTE] = ACTIONS(4532), - [anon_sym_u_DQUOTE] = ACTIONS(4532), - [anon_sym_U_DQUOTE] = ACTIONS(4532), - [anon_sym_u8_DQUOTE] = ACTIONS(4532), - [anon_sym_DQUOTE] = ACTIONS(4532), - [sym_true] = ACTIONS(4530), - [sym_false] = ACTIONS(4530), - [anon_sym_NULL] = ACTIONS(4530), - [anon_sym_nullptr] = ACTIONS(4530), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4530), - [anon_sym_decltype] = ACTIONS(4530), - [anon_sym_explicit] = ACTIONS(4530), - [anon_sym_export] = ACTIONS(4530), - [anon_sym_module] = ACTIONS(4530), - [anon_sym_import] = ACTIONS(4530), - [anon_sym_template] = ACTIONS(4530), - [anon_sym_operator] = ACTIONS(4530), - [anon_sym_try] = ACTIONS(4530), - [anon_sym_delete] = ACTIONS(4530), - [anon_sym_throw] = ACTIONS(4530), - [anon_sym_namespace] = ACTIONS(4530), - [anon_sym_static_assert] = ACTIONS(4530), - [anon_sym_concept] = ACTIONS(4530), - [anon_sym_co_return] = ACTIONS(4530), - [anon_sym_co_yield] = ACTIONS(4530), - [anon_sym_R_DQUOTE] = ACTIONS(4532), - [anon_sym_LR_DQUOTE] = ACTIONS(4532), - [anon_sym_uR_DQUOTE] = ACTIONS(4532), - [anon_sym_UR_DQUOTE] = ACTIONS(4532), - [anon_sym_u8R_DQUOTE] = ACTIONS(4532), - [anon_sym_co_await] = ACTIONS(4530), - [anon_sym_new] = ACTIONS(4530), - [anon_sym_requires] = ACTIONS(4530), - [anon_sym_CARET_CARET] = ACTIONS(4532), - [anon_sym_LBRACK_COLON] = ACTIONS(4532), - [sym_this] = ACTIONS(4530), + [ts_builtin_sym_end] = ACTIONS(4315), + [sym_identifier] = ACTIONS(4313), + [aux_sym_preproc_include_token1] = ACTIONS(4313), + [aux_sym_preproc_def_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token1] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), + [sym_preproc_directive] = ACTIONS(4313), + [anon_sym_LPAREN2] = ACTIONS(4315), + [anon_sym_BANG] = ACTIONS(4315), + [anon_sym_TILDE] = ACTIONS(4315), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_STAR] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym___extension__] = ACTIONS(4313), + [anon_sym_typedef] = ACTIONS(4313), + [anon_sym_virtual] = ACTIONS(4313), + [anon_sym_extern] = ACTIONS(4313), + [anon_sym___attribute__] = ACTIONS(4313), + [anon_sym___attribute] = ACTIONS(4313), + [anon_sym_using] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4315), + [anon_sym___declspec] = ACTIONS(4313), + [anon_sym___based] = ACTIONS(4313), + [anon_sym___cdecl] = ACTIONS(4313), + [anon_sym___clrcall] = ACTIONS(4313), + [anon_sym___stdcall] = ACTIONS(4313), + [anon_sym___fastcall] = ACTIONS(4313), + [anon_sym___thiscall] = ACTIONS(4313), + [anon_sym___vectorcall] = ACTIONS(4313), + [anon_sym_LBRACE] = ACTIONS(4315), + [anon_sym_signed] = ACTIONS(4313), + [anon_sym_unsigned] = ACTIONS(4313), + [anon_sym_long] = ACTIONS(4313), + [anon_sym_short] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_static] = ACTIONS(4313), + [anon_sym_register] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym___inline] = ACTIONS(4313), + [anon_sym___inline__] = ACTIONS(4313), + [anon_sym___forceinline] = ACTIONS(4313), + [anon_sym_thread_local] = ACTIONS(4313), + [anon_sym___thread] = ACTIONS(4313), + [anon_sym_const] = ACTIONS(4313), + [anon_sym_constexpr] = ACTIONS(4313), + [anon_sym_volatile] = ACTIONS(4313), + [anon_sym_restrict] = ACTIONS(4313), + [anon_sym___restrict__] = ACTIONS(4313), + [anon_sym__Atomic] = ACTIONS(4313), + [anon_sym__Noreturn] = ACTIONS(4313), + [anon_sym_noreturn] = ACTIONS(4313), + [anon_sym__Nonnull] = ACTIONS(4313), + [anon_sym_mutable] = ACTIONS(4313), + [anon_sym_constinit] = ACTIONS(4313), + [anon_sym_consteval] = ACTIONS(4313), + [anon_sym_alignas] = ACTIONS(4313), + [anon_sym__Alignas] = ACTIONS(4313), + [sym_primitive_type] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_struct] = ACTIONS(4313), + [anon_sym_union] = ACTIONS(4313), + [anon_sym_if] = ACTIONS(4313), + [anon_sym_switch] = ACTIONS(4313), + [anon_sym_case] = ACTIONS(4313), + [anon_sym_default] = ACTIONS(4313), + [anon_sym_while] = ACTIONS(4313), + [anon_sym_do] = ACTIONS(4313), + [anon_sym_for] = ACTIONS(4313), + [anon_sym_return] = ACTIONS(4313), + [anon_sym_break] = ACTIONS(4313), + [anon_sym_continue] = ACTIONS(4313), + [anon_sym_goto] = ACTIONS(4313), + [anon_sym_not] = ACTIONS(4313), + [anon_sym_compl] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4315), + [anon_sym_PLUS_PLUS] = ACTIONS(4315), + [anon_sym_sizeof] = ACTIONS(4313), + [anon_sym___alignof__] = ACTIONS(4313), + [anon_sym___alignof] = ACTIONS(4313), + [anon_sym__alignof] = ACTIONS(4313), + [anon_sym_alignof] = ACTIONS(4313), + [anon_sym__Alignof] = ACTIONS(4313), + [anon_sym_offsetof] = ACTIONS(4313), + [anon_sym__Generic] = ACTIONS(4313), + [anon_sym_typename] = ACTIONS(4313), + [anon_sym_asm] = ACTIONS(4313), + [anon_sym___asm__] = ACTIONS(4313), + [anon_sym___asm] = ACTIONS(4313), + [sym_number_literal] = ACTIONS(4315), + [anon_sym_L_SQUOTE] = ACTIONS(4315), + [anon_sym_u_SQUOTE] = ACTIONS(4315), + [anon_sym_U_SQUOTE] = ACTIONS(4315), + [anon_sym_u8_SQUOTE] = ACTIONS(4315), + [anon_sym_SQUOTE] = ACTIONS(4315), + [anon_sym_L_DQUOTE] = ACTIONS(4315), + [anon_sym_u_DQUOTE] = ACTIONS(4315), + [anon_sym_U_DQUOTE] = ACTIONS(4315), + [anon_sym_u8_DQUOTE] = ACTIONS(4315), + [anon_sym_DQUOTE] = ACTIONS(4315), + [sym_true] = ACTIONS(4313), + [sym_false] = ACTIONS(4313), + [anon_sym_NULL] = ACTIONS(4313), + [anon_sym_nullptr] = ACTIONS(4313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4313), + [anon_sym_decltype] = ACTIONS(4313), + [anon_sym_explicit] = ACTIONS(4313), + [anon_sym_export] = ACTIONS(4313), + [anon_sym_module] = ACTIONS(4313), + [anon_sym_import] = ACTIONS(4313), + [anon_sym_template] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_try] = ACTIONS(4313), + [anon_sym_delete] = ACTIONS(4313), + [anon_sym_throw] = ACTIONS(4313), + [anon_sym_namespace] = ACTIONS(4313), + [anon_sym_static_assert] = ACTIONS(4313), + [anon_sym_concept] = ACTIONS(4313), + [anon_sym_co_return] = ACTIONS(4313), + [anon_sym_co_yield] = ACTIONS(4313), + [anon_sym_R_DQUOTE] = ACTIONS(4315), + [anon_sym_LR_DQUOTE] = ACTIONS(4315), + [anon_sym_uR_DQUOTE] = ACTIONS(4315), + [anon_sym_UR_DQUOTE] = ACTIONS(4315), + [anon_sym_u8R_DQUOTE] = ACTIONS(4315), + [anon_sym_co_await] = ACTIONS(4313), + [anon_sym_new] = ACTIONS(4313), + [anon_sym_requires] = ACTIONS(4313), + [anon_sym_CARET_CARET] = ACTIONS(4315), + [anon_sym_LBRACK_COLON] = ACTIONS(4315), + [sym_this] = ACTIONS(4313), }, [STATE(994)] = { - [ts_builtin_sym_end] = ACTIONS(3952), - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_include_token1] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_BANG] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_DASH] = ACTIONS(3950), - [anon_sym_PLUS] = ACTIONS(3950), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym___cdecl] = ACTIONS(3950), - [anon_sym___clrcall] = ACTIONS(3950), - [anon_sym___stdcall] = ACTIONS(3950), - [anon_sym___fastcall] = ACTIONS(3950), - [anon_sym___thiscall] = ACTIONS(3950), - [anon_sym___vectorcall] = ACTIONS(3950), - [anon_sym_LBRACE] = ACTIONS(3952), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_if] = ACTIONS(3950), - [anon_sym_switch] = ACTIONS(3950), - [anon_sym_case] = ACTIONS(3950), - [anon_sym_default] = ACTIONS(3950), - [anon_sym_while] = ACTIONS(3950), - [anon_sym_do] = ACTIONS(3950), - [anon_sym_for] = ACTIONS(3950), - [anon_sym_return] = ACTIONS(3950), - [anon_sym_break] = ACTIONS(3950), - [anon_sym_continue] = ACTIONS(3950), - [anon_sym_goto] = ACTIONS(3950), - [anon_sym_not] = ACTIONS(3950), - [anon_sym_compl] = ACTIONS(3950), - [anon_sym_DASH_DASH] = ACTIONS(3952), - [anon_sym_PLUS_PLUS] = ACTIONS(3952), - [anon_sym_sizeof] = ACTIONS(3950), - [anon_sym___alignof__] = ACTIONS(3950), - [anon_sym___alignof] = ACTIONS(3950), - [anon_sym__alignof] = ACTIONS(3950), - [anon_sym_alignof] = ACTIONS(3950), - [anon_sym__Alignof] = ACTIONS(3950), - [anon_sym_offsetof] = ACTIONS(3950), - [anon_sym__Generic] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), - [anon_sym_asm] = ACTIONS(3950), - [anon_sym___asm__] = ACTIONS(3950), - [anon_sym___asm] = ACTIONS(3950), - [sym_number_literal] = ACTIONS(3952), - [anon_sym_L_SQUOTE] = ACTIONS(3952), - [anon_sym_u_SQUOTE] = ACTIONS(3952), - [anon_sym_U_SQUOTE] = ACTIONS(3952), - [anon_sym_u8_SQUOTE] = ACTIONS(3952), - [anon_sym_SQUOTE] = ACTIONS(3952), - [anon_sym_L_DQUOTE] = ACTIONS(3952), - [anon_sym_u_DQUOTE] = ACTIONS(3952), - [anon_sym_U_DQUOTE] = ACTIONS(3952), - [anon_sym_u8_DQUOTE] = ACTIONS(3952), - [anon_sym_DQUOTE] = ACTIONS(3952), - [sym_true] = ACTIONS(3950), - [sym_false] = ACTIONS(3950), - [anon_sym_NULL] = ACTIONS(3950), - [anon_sym_nullptr] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_export] = ACTIONS(3950), - [anon_sym_module] = ACTIONS(3950), - [anon_sym_import] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_try] = ACTIONS(3950), - [anon_sym_delete] = ACTIONS(3950), - [anon_sym_throw] = ACTIONS(3950), - [anon_sym_namespace] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_concept] = ACTIONS(3950), - [anon_sym_co_return] = ACTIONS(3950), - [anon_sym_co_yield] = ACTIONS(3950), - [anon_sym_R_DQUOTE] = ACTIONS(3952), - [anon_sym_LR_DQUOTE] = ACTIONS(3952), - [anon_sym_uR_DQUOTE] = ACTIONS(3952), - [anon_sym_UR_DQUOTE] = ACTIONS(3952), - [anon_sym_u8R_DQUOTE] = ACTIONS(3952), - [anon_sym_co_await] = ACTIONS(3950), - [anon_sym_new] = ACTIONS(3950), - [anon_sym_requires] = ACTIONS(3950), - [anon_sym_CARET_CARET] = ACTIONS(3952), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), - [sym_this] = ACTIONS(3950), + [ts_builtin_sym_end] = ACTIONS(4646), + [sym_identifier] = ACTIONS(4644), + [aux_sym_preproc_include_token1] = ACTIONS(4644), + [aux_sym_preproc_def_token1] = ACTIONS(4644), + [aux_sym_preproc_if_token1] = ACTIONS(4644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4644), + [sym_preproc_directive] = ACTIONS(4644), + [anon_sym_LPAREN2] = ACTIONS(4646), + [anon_sym_BANG] = ACTIONS(4646), + [anon_sym_TILDE] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4644), + [anon_sym_PLUS] = ACTIONS(4644), + [anon_sym_STAR] = ACTIONS(4646), + [anon_sym_AMP_AMP] = ACTIONS(4646), + [anon_sym_AMP] = ACTIONS(4644), + [anon_sym_SEMI] = ACTIONS(4646), + [anon_sym___extension__] = ACTIONS(4644), + [anon_sym_typedef] = ACTIONS(4644), + [anon_sym_virtual] = ACTIONS(4644), + [anon_sym_extern] = ACTIONS(4644), + [anon_sym___attribute__] = ACTIONS(4644), + [anon_sym___attribute] = ACTIONS(4644), + [anon_sym_using] = ACTIONS(4644), + [anon_sym_COLON_COLON] = ACTIONS(4646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4646), + [anon_sym___declspec] = ACTIONS(4644), + [anon_sym___based] = ACTIONS(4644), + [anon_sym___cdecl] = ACTIONS(4644), + [anon_sym___clrcall] = ACTIONS(4644), + [anon_sym___stdcall] = ACTIONS(4644), + [anon_sym___fastcall] = ACTIONS(4644), + [anon_sym___thiscall] = ACTIONS(4644), + [anon_sym___vectorcall] = ACTIONS(4644), + [anon_sym_LBRACE] = ACTIONS(4646), + [anon_sym_signed] = ACTIONS(4644), + [anon_sym_unsigned] = ACTIONS(4644), + [anon_sym_long] = ACTIONS(4644), + [anon_sym_short] = ACTIONS(4644), + [anon_sym_LBRACK] = ACTIONS(4644), + [anon_sym_static] = ACTIONS(4644), + [anon_sym_register] = ACTIONS(4644), + [anon_sym_inline] = ACTIONS(4644), + [anon_sym___inline] = ACTIONS(4644), + [anon_sym___inline__] = ACTIONS(4644), + [anon_sym___forceinline] = ACTIONS(4644), + [anon_sym_thread_local] = ACTIONS(4644), + [anon_sym___thread] = ACTIONS(4644), + [anon_sym_const] = ACTIONS(4644), + [anon_sym_constexpr] = ACTIONS(4644), + [anon_sym_volatile] = ACTIONS(4644), + [anon_sym_restrict] = ACTIONS(4644), + [anon_sym___restrict__] = ACTIONS(4644), + [anon_sym__Atomic] = ACTIONS(4644), + [anon_sym__Noreturn] = ACTIONS(4644), + [anon_sym_noreturn] = ACTIONS(4644), + [anon_sym__Nonnull] = ACTIONS(4644), + [anon_sym_mutable] = ACTIONS(4644), + [anon_sym_constinit] = ACTIONS(4644), + [anon_sym_consteval] = ACTIONS(4644), + [anon_sym_alignas] = ACTIONS(4644), + [anon_sym__Alignas] = ACTIONS(4644), + [sym_primitive_type] = ACTIONS(4644), + [anon_sym_enum] = ACTIONS(4644), + [anon_sym_class] = ACTIONS(4644), + [anon_sym_struct] = ACTIONS(4644), + [anon_sym_union] = ACTIONS(4644), + [anon_sym_if] = ACTIONS(4644), + [anon_sym_switch] = ACTIONS(4644), + [anon_sym_case] = ACTIONS(4644), + [anon_sym_default] = ACTIONS(4644), + [anon_sym_while] = ACTIONS(4644), + [anon_sym_do] = ACTIONS(4644), + [anon_sym_for] = ACTIONS(4644), + [anon_sym_return] = ACTIONS(4644), + [anon_sym_break] = ACTIONS(4644), + [anon_sym_continue] = ACTIONS(4644), + [anon_sym_goto] = ACTIONS(4644), + [anon_sym_not] = ACTIONS(4644), + [anon_sym_compl] = ACTIONS(4644), + [anon_sym_DASH_DASH] = ACTIONS(4646), + [anon_sym_PLUS_PLUS] = ACTIONS(4646), + [anon_sym_sizeof] = ACTIONS(4644), + [anon_sym___alignof__] = ACTIONS(4644), + [anon_sym___alignof] = ACTIONS(4644), + [anon_sym__alignof] = ACTIONS(4644), + [anon_sym_alignof] = ACTIONS(4644), + [anon_sym__Alignof] = ACTIONS(4644), + [anon_sym_offsetof] = ACTIONS(4644), + [anon_sym__Generic] = ACTIONS(4644), + [anon_sym_typename] = ACTIONS(4644), + [anon_sym_asm] = ACTIONS(4644), + [anon_sym___asm__] = ACTIONS(4644), + [anon_sym___asm] = ACTIONS(4644), + [sym_number_literal] = ACTIONS(4646), + [anon_sym_L_SQUOTE] = ACTIONS(4646), + [anon_sym_u_SQUOTE] = ACTIONS(4646), + [anon_sym_U_SQUOTE] = ACTIONS(4646), + [anon_sym_u8_SQUOTE] = ACTIONS(4646), + [anon_sym_SQUOTE] = ACTIONS(4646), + [anon_sym_L_DQUOTE] = ACTIONS(4646), + [anon_sym_u_DQUOTE] = ACTIONS(4646), + [anon_sym_U_DQUOTE] = ACTIONS(4646), + [anon_sym_u8_DQUOTE] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(4646), + [sym_true] = ACTIONS(4644), + [sym_false] = ACTIONS(4644), + [anon_sym_NULL] = ACTIONS(4644), + [anon_sym_nullptr] = ACTIONS(4644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4644), + [anon_sym_decltype] = ACTIONS(4644), + [anon_sym_explicit] = ACTIONS(4644), + [anon_sym_export] = ACTIONS(4644), + [anon_sym_module] = ACTIONS(4644), + [anon_sym_import] = ACTIONS(4644), + [anon_sym_template] = ACTIONS(4644), + [anon_sym_operator] = ACTIONS(4644), + [anon_sym_try] = ACTIONS(4644), + [anon_sym_delete] = ACTIONS(4644), + [anon_sym_throw] = ACTIONS(4644), + [anon_sym_namespace] = ACTIONS(4644), + [anon_sym_static_assert] = ACTIONS(4644), + [anon_sym_concept] = ACTIONS(4644), + [anon_sym_co_return] = ACTIONS(4644), + [anon_sym_co_yield] = ACTIONS(4644), + [anon_sym_R_DQUOTE] = ACTIONS(4646), + [anon_sym_LR_DQUOTE] = ACTIONS(4646), + [anon_sym_uR_DQUOTE] = ACTIONS(4646), + [anon_sym_UR_DQUOTE] = ACTIONS(4646), + [anon_sym_u8R_DQUOTE] = ACTIONS(4646), + [anon_sym_co_await] = ACTIONS(4644), + [anon_sym_new] = ACTIONS(4644), + [anon_sym_requires] = ACTIONS(4644), + [anon_sym_CARET_CARET] = ACTIONS(4646), + [anon_sym_LBRACK_COLON] = ACTIONS(4646), + [sym_this] = ACTIONS(4644), }, [STATE(995)] = { + [ts_builtin_sym_end] = ACTIONS(4650), + [sym_identifier] = ACTIONS(4648), + [aux_sym_preproc_include_token1] = ACTIONS(4648), + [aux_sym_preproc_def_token1] = ACTIONS(4648), + [aux_sym_preproc_if_token1] = ACTIONS(4648), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4648), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4648), + [sym_preproc_directive] = ACTIONS(4648), + [anon_sym_LPAREN2] = ACTIONS(4650), + [anon_sym_BANG] = ACTIONS(4650), + [anon_sym_TILDE] = ACTIONS(4650), + [anon_sym_DASH] = ACTIONS(4648), + [anon_sym_PLUS] = ACTIONS(4648), + [anon_sym_STAR] = ACTIONS(4650), + [anon_sym_AMP_AMP] = ACTIONS(4650), + [anon_sym_AMP] = ACTIONS(4648), + [anon_sym_SEMI] = ACTIONS(4650), + [anon_sym___extension__] = ACTIONS(4648), + [anon_sym_typedef] = ACTIONS(4648), + [anon_sym_virtual] = ACTIONS(4648), + [anon_sym_extern] = ACTIONS(4648), + [anon_sym___attribute__] = ACTIONS(4648), + [anon_sym___attribute] = ACTIONS(4648), + [anon_sym_using] = ACTIONS(4648), + [anon_sym_COLON_COLON] = ACTIONS(4650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4650), + [anon_sym___declspec] = ACTIONS(4648), + [anon_sym___based] = ACTIONS(4648), + [anon_sym___cdecl] = ACTIONS(4648), + [anon_sym___clrcall] = ACTIONS(4648), + [anon_sym___stdcall] = ACTIONS(4648), + [anon_sym___fastcall] = ACTIONS(4648), + [anon_sym___thiscall] = ACTIONS(4648), + [anon_sym___vectorcall] = ACTIONS(4648), + [anon_sym_LBRACE] = ACTIONS(4650), + [anon_sym_signed] = ACTIONS(4648), + [anon_sym_unsigned] = ACTIONS(4648), + [anon_sym_long] = ACTIONS(4648), + [anon_sym_short] = ACTIONS(4648), + [anon_sym_LBRACK] = ACTIONS(4648), + [anon_sym_static] = ACTIONS(4648), + [anon_sym_register] = ACTIONS(4648), + [anon_sym_inline] = ACTIONS(4648), + [anon_sym___inline] = ACTIONS(4648), + [anon_sym___inline__] = ACTIONS(4648), + [anon_sym___forceinline] = ACTIONS(4648), + [anon_sym_thread_local] = ACTIONS(4648), + [anon_sym___thread] = ACTIONS(4648), + [anon_sym_const] = ACTIONS(4648), + [anon_sym_constexpr] = ACTIONS(4648), + [anon_sym_volatile] = ACTIONS(4648), + [anon_sym_restrict] = ACTIONS(4648), + [anon_sym___restrict__] = ACTIONS(4648), + [anon_sym__Atomic] = ACTIONS(4648), + [anon_sym__Noreturn] = ACTIONS(4648), + [anon_sym_noreturn] = ACTIONS(4648), + [anon_sym__Nonnull] = ACTIONS(4648), + [anon_sym_mutable] = ACTIONS(4648), + [anon_sym_constinit] = ACTIONS(4648), + [anon_sym_consteval] = ACTIONS(4648), + [anon_sym_alignas] = ACTIONS(4648), + [anon_sym__Alignas] = ACTIONS(4648), + [sym_primitive_type] = ACTIONS(4648), + [anon_sym_enum] = ACTIONS(4648), + [anon_sym_class] = ACTIONS(4648), + [anon_sym_struct] = ACTIONS(4648), + [anon_sym_union] = ACTIONS(4648), + [anon_sym_if] = ACTIONS(4648), + [anon_sym_switch] = ACTIONS(4648), + [anon_sym_case] = ACTIONS(4648), + [anon_sym_default] = ACTIONS(4648), + [anon_sym_while] = ACTIONS(4648), + [anon_sym_do] = ACTIONS(4648), + [anon_sym_for] = ACTIONS(4648), + [anon_sym_return] = ACTIONS(4648), + [anon_sym_break] = ACTIONS(4648), + [anon_sym_continue] = ACTIONS(4648), + [anon_sym_goto] = ACTIONS(4648), + [anon_sym_not] = ACTIONS(4648), + [anon_sym_compl] = ACTIONS(4648), + [anon_sym_DASH_DASH] = ACTIONS(4650), + [anon_sym_PLUS_PLUS] = ACTIONS(4650), + [anon_sym_sizeof] = ACTIONS(4648), + [anon_sym___alignof__] = ACTIONS(4648), + [anon_sym___alignof] = ACTIONS(4648), + [anon_sym__alignof] = ACTIONS(4648), + [anon_sym_alignof] = ACTIONS(4648), + [anon_sym__Alignof] = ACTIONS(4648), + [anon_sym_offsetof] = ACTIONS(4648), + [anon_sym__Generic] = ACTIONS(4648), + [anon_sym_typename] = ACTIONS(4648), + [anon_sym_asm] = ACTIONS(4648), + [anon_sym___asm__] = ACTIONS(4648), + [anon_sym___asm] = ACTIONS(4648), + [sym_number_literal] = ACTIONS(4650), + [anon_sym_L_SQUOTE] = ACTIONS(4650), + [anon_sym_u_SQUOTE] = ACTIONS(4650), + [anon_sym_U_SQUOTE] = ACTIONS(4650), + [anon_sym_u8_SQUOTE] = ACTIONS(4650), + [anon_sym_SQUOTE] = ACTIONS(4650), + [anon_sym_L_DQUOTE] = ACTIONS(4650), + [anon_sym_u_DQUOTE] = ACTIONS(4650), + [anon_sym_U_DQUOTE] = ACTIONS(4650), + [anon_sym_u8_DQUOTE] = ACTIONS(4650), + [anon_sym_DQUOTE] = ACTIONS(4650), + [sym_true] = ACTIONS(4648), + [sym_false] = ACTIONS(4648), + [anon_sym_NULL] = ACTIONS(4648), + [anon_sym_nullptr] = ACTIONS(4648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4648), + [anon_sym_decltype] = ACTIONS(4648), + [anon_sym_explicit] = ACTIONS(4648), + [anon_sym_export] = ACTIONS(4648), + [anon_sym_module] = ACTIONS(4648), + [anon_sym_import] = ACTIONS(4648), + [anon_sym_template] = ACTIONS(4648), + [anon_sym_operator] = ACTIONS(4648), + [anon_sym_try] = ACTIONS(4648), + [anon_sym_delete] = ACTIONS(4648), + [anon_sym_throw] = ACTIONS(4648), + [anon_sym_namespace] = ACTIONS(4648), + [anon_sym_static_assert] = ACTIONS(4648), + [anon_sym_concept] = ACTIONS(4648), + [anon_sym_co_return] = ACTIONS(4648), + [anon_sym_co_yield] = ACTIONS(4648), + [anon_sym_R_DQUOTE] = ACTIONS(4650), + [anon_sym_LR_DQUOTE] = ACTIONS(4650), + [anon_sym_uR_DQUOTE] = ACTIONS(4650), + [anon_sym_UR_DQUOTE] = ACTIONS(4650), + [anon_sym_u8R_DQUOTE] = ACTIONS(4650), + [anon_sym_co_await] = ACTIONS(4648), + [anon_sym_new] = ACTIONS(4648), + [anon_sym_requires] = ACTIONS(4648), + [anon_sym_CARET_CARET] = ACTIONS(4650), + [anon_sym_LBRACK_COLON] = ACTIONS(4650), + [sym_this] = ACTIONS(4648), + }, + [STATE(996)] = { + [ts_builtin_sym_end] = ACTIONS(4654), + [sym_identifier] = ACTIONS(4652), + [aux_sym_preproc_include_token1] = ACTIONS(4652), + [aux_sym_preproc_def_token1] = ACTIONS(4652), + [aux_sym_preproc_if_token1] = ACTIONS(4652), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4652), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4652), + [sym_preproc_directive] = ACTIONS(4652), + [anon_sym_LPAREN2] = ACTIONS(4654), + [anon_sym_BANG] = ACTIONS(4654), + [anon_sym_TILDE] = ACTIONS(4654), + [anon_sym_DASH] = ACTIONS(4652), + [anon_sym_PLUS] = ACTIONS(4652), + [anon_sym_STAR] = ACTIONS(4654), + [anon_sym_AMP_AMP] = ACTIONS(4654), + [anon_sym_AMP] = ACTIONS(4652), + [anon_sym_SEMI] = ACTIONS(4654), + [anon_sym___extension__] = ACTIONS(4652), + [anon_sym_typedef] = ACTIONS(4652), + [anon_sym_virtual] = ACTIONS(4652), + [anon_sym_extern] = ACTIONS(4652), + [anon_sym___attribute__] = ACTIONS(4652), + [anon_sym___attribute] = ACTIONS(4652), + [anon_sym_using] = ACTIONS(4652), + [anon_sym_COLON_COLON] = ACTIONS(4654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4654), + [anon_sym___declspec] = ACTIONS(4652), + [anon_sym___based] = ACTIONS(4652), + [anon_sym___cdecl] = ACTIONS(4652), + [anon_sym___clrcall] = ACTIONS(4652), + [anon_sym___stdcall] = ACTIONS(4652), + [anon_sym___fastcall] = ACTIONS(4652), + [anon_sym___thiscall] = ACTIONS(4652), + [anon_sym___vectorcall] = ACTIONS(4652), + [anon_sym_LBRACE] = ACTIONS(4654), + [anon_sym_signed] = ACTIONS(4652), + [anon_sym_unsigned] = ACTIONS(4652), + [anon_sym_long] = ACTIONS(4652), + [anon_sym_short] = ACTIONS(4652), + [anon_sym_LBRACK] = ACTIONS(4652), + [anon_sym_static] = ACTIONS(4652), + [anon_sym_register] = ACTIONS(4652), + [anon_sym_inline] = ACTIONS(4652), + [anon_sym___inline] = ACTIONS(4652), + [anon_sym___inline__] = ACTIONS(4652), + [anon_sym___forceinline] = ACTIONS(4652), + [anon_sym_thread_local] = ACTIONS(4652), + [anon_sym___thread] = ACTIONS(4652), + [anon_sym_const] = ACTIONS(4652), + [anon_sym_constexpr] = ACTIONS(4652), + [anon_sym_volatile] = ACTIONS(4652), + [anon_sym_restrict] = ACTIONS(4652), + [anon_sym___restrict__] = ACTIONS(4652), + [anon_sym__Atomic] = ACTIONS(4652), + [anon_sym__Noreturn] = ACTIONS(4652), + [anon_sym_noreturn] = ACTIONS(4652), + [anon_sym__Nonnull] = ACTIONS(4652), + [anon_sym_mutable] = ACTIONS(4652), + [anon_sym_constinit] = ACTIONS(4652), + [anon_sym_consteval] = ACTIONS(4652), + [anon_sym_alignas] = ACTIONS(4652), + [anon_sym__Alignas] = ACTIONS(4652), + [sym_primitive_type] = ACTIONS(4652), + [anon_sym_enum] = ACTIONS(4652), + [anon_sym_class] = ACTIONS(4652), + [anon_sym_struct] = ACTIONS(4652), + [anon_sym_union] = ACTIONS(4652), + [anon_sym_if] = ACTIONS(4652), + [anon_sym_switch] = ACTIONS(4652), + [anon_sym_case] = ACTIONS(4652), + [anon_sym_default] = ACTIONS(4652), + [anon_sym_while] = ACTIONS(4652), + [anon_sym_do] = ACTIONS(4652), + [anon_sym_for] = ACTIONS(4652), + [anon_sym_return] = ACTIONS(4652), + [anon_sym_break] = ACTIONS(4652), + [anon_sym_continue] = ACTIONS(4652), + [anon_sym_goto] = ACTIONS(4652), + [anon_sym_not] = ACTIONS(4652), + [anon_sym_compl] = ACTIONS(4652), + [anon_sym_DASH_DASH] = ACTIONS(4654), + [anon_sym_PLUS_PLUS] = ACTIONS(4654), + [anon_sym_sizeof] = ACTIONS(4652), + [anon_sym___alignof__] = ACTIONS(4652), + [anon_sym___alignof] = ACTIONS(4652), + [anon_sym__alignof] = ACTIONS(4652), + [anon_sym_alignof] = ACTIONS(4652), + [anon_sym__Alignof] = ACTIONS(4652), + [anon_sym_offsetof] = ACTIONS(4652), + [anon_sym__Generic] = ACTIONS(4652), + [anon_sym_typename] = ACTIONS(4652), + [anon_sym_asm] = ACTIONS(4652), + [anon_sym___asm__] = ACTIONS(4652), + [anon_sym___asm] = ACTIONS(4652), + [sym_number_literal] = ACTIONS(4654), + [anon_sym_L_SQUOTE] = ACTIONS(4654), + [anon_sym_u_SQUOTE] = ACTIONS(4654), + [anon_sym_U_SQUOTE] = ACTIONS(4654), + [anon_sym_u8_SQUOTE] = ACTIONS(4654), + [anon_sym_SQUOTE] = ACTIONS(4654), + [anon_sym_L_DQUOTE] = ACTIONS(4654), + [anon_sym_u_DQUOTE] = ACTIONS(4654), + [anon_sym_U_DQUOTE] = ACTIONS(4654), + [anon_sym_u8_DQUOTE] = ACTIONS(4654), + [anon_sym_DQUOTE] = ACTIONS(4654), + [sym_true] = ACTIONS(4652), + [sym_false] = ACTIONS(4652), + [anon_sym_NULL] = ACTIONS(4652), + [anon_sym_nullptr] = ACTIONS(4652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4652), + [anon_sym_decltype] = ACTIONS(4652), + [anon_sym_explicit] = ACTIONS(4652), + [anon_sym_export] = ACTIONS(4652), + [anon_sym_module] = ACTIONS(4652), + [anon_sym_import] = ACTIONS(4652), + [anon_sym_template] = ACTIONS(4652), + [anon_sym_operator] = ACTIONS(4652), + [anon_sym_try] = ACTIONS(4652), + [anon_sym_delete] = ACTIONS(4652), + [anon_sym_throw] = ACTIONS(4652), + [anon_sym_namespace] = ACTIONS(4652), + [anon_sym_static_assert] = ACTIONS(4652), + [anon_sym_concept] = ACTIONS(4652), + [anon_sym_co_return] = ACTIONS(4652), + [anon_sym_co_yield] = ACTIONS(4652), + [anon_sym_R_DQUOTE] = ACTIONS(4654), + [anon_sym_LR_DQUOTE] = ACTIONS(4654), + [anon_sym_uR_DQUOTE] = ACTIONS(4654), + [anon_sym_UR_DQUOTE] = ACTIONS(4654), + [anon_sym_u8R_DQUOTE] = ACTIONS(4654), + [anon_sym_co_await] = ACTIONS(4652), + [anon_sym_new] = ACTIONS(4652), + [anon_sym_requires] = ACTIONS(4652), + [anon_sym_CARET_CARET] = ACTIONS(4654), + [anon_sym_LBRACK_COLON] = ACTIONS(4654), + [sym_this] = ACTIONS(4652), + }, + [STATE(997)] = { + [ts_builtin_sym_end] = ACTIONS(4327), + [sym_identifier] = ACTIONS(4325), + [aux_sym_preproc_include_token1] = ACTIONS(4325), + [aux_sym_preproc_def_token1] = ACTIONS(4325), + [aux_sym_preproc_if_token1] = ACTIONS(4325), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4325), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4325), + [sym_preproc_directive] = ACTIONS(4325), + [anon_sym_LPAREN2] = ACTIONS(4327), + [anon_sym_BANG] = ACTIONS(4327), + [anon_sym_TILDE] = ACTIONS(4327), + [anon_sym_DASH] = ACTIONS(4325), + [anon_sym_PLUS] = ACTIONS(4325), + [anon_sym_STAR] = ACTIONS(4327), + [anon_sym_AMP_AMP] = ACTIONS(4327), + [anon_sym_AMP] = ACTIONS(4325), + [anon_sym_SEMI] = ACTIONS(4327), + [anon_sym___extension__] = ACTIONS(4325), + [anon_sym_typedef] = ACTIONS(4325), + [anon_sym_virtual] = ACTIONS(4325), + [anon_sym_extern] = ACTIONS(4325), + [anon_sym___attribute__] = ACTIONS(4325), + [anon_sym___attribute] = ACTIONS(4325), + [anon_sym_using] = ACTIONS(4325), + [anon_sym_COLON_COLON] = ACTIONS(4327), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4327), + [anon_sym___declspec] = ACTIONS(4325), + [anon_sym___based] = ACTIONS(4325), + [anon_sym___cdecl] = ACTIONS(4325), + [anon_sym___clrcall] = ACTIONS(4325), + [anon_sym___stdcall] = ACTIONS(4325), + [anon_sym___fastcall] = ACTIONS(4325), + [anon_sym___thiscall] = ACTIONS(4325), + [anon_sym___vectorcall] = ACTIONS(4325), + [anon_sym_LBRACE] = ACTIONS(4327), + [anon_sym_signed] = ACTIONS(4325), + [anon_sym_unsigned] = ACTIONS(4325), + [anon_sym_long] = ACTIONS(4325), + [anon_sym_short] = ACTIONS(4325), + [anon_sym_LBRACK] = ACTIONS(4325), + [anon_sym_static] = ACTIONS(4325), + [anon_sym_register] = ACTIONS(4325), + [anon_sym_inline] = ACTIONS(4325), + [anon_sym___inline] = ACTIONS(4325), + [anon_sym___inline__] = ACTIONS(4325), + [anon_sym___forceinline] = ACTIONS(4325), + [anon_sym_thread_local] = ACTIONS(4325), + [anon_sym___thread] = ACTIONS(4325), + [anon_sym_const] = ACTIONS(4325), + [anon_sym_constexpr] = ACTIONS(4325), + [anon_sym_volatile] = ACTIONS(4325), + [anon_sym_restrict] = ACTIONS(4325), + [anon_sym___restrict__] = ACTIONS(4325), + [anon_sym__Atomic] = ACTIONS(4325), + [anon_sym__Noreturn] = ACTIONS(4325), + [anon_sym_noreturn] = ACTIONS(4325), + [anon_sym__Nonnull] = ACTIONS(4325), + [anon_sym_mutable] = ACTIONS(4325), + [anon_sym_constinit] = ACTIONS(4325), + [anon_sym_consteval] = ACTIONS(4325), + [anon_sym_alignas] = ACTIONS(4325), + [anon_sym__Alignas] = ACTIONS(4325), + [sym_primitive_type] = ACTIONS(4325), + [anon_sym_enum] = ACTIONS(4325), + [anon_sym_class] = ACTIONS(4325), + [anon_sym_struct] = ACTIONS(4325), + [anon_sym_union] = ACTIONS(4325), + [anon_sym_if] = ACTIONS(4325), + [anon_sym_switch] = ACTIONS(4325), + [anon_sym_case] = ACTIONS(4325), + [anon_sym_default] = ACTIONS(4325), + [anon_sym_while] = ACTIONS(4325), + [anon_sym_do] = ACTIONS(4325), + [anon_sym_for] = ACTIONS(4325), + [anon_sym_return] = ACTIONS(4325), + [anon_sym_break] = ACTIONS(4325), + [anon_sym_continue] = ACTIONS(4325), + [anon_sym_goto] = ACTIONS(4325), + [anon_sym_not] = ACTIONS(4325), + [anon_sym_compl] = ACTIONS(4325), + [anon_sym_DASH_DASH] = ACTIONS(4327), + [anon_sym_PLUS_PLUS] = ACTIONS(4327), + [anon_sym_sizeof] = ACTIONS(4325), + [anon_sym___alignof__] = ACTIONS(4325), + [anon_sym___alignof] = ACTIONS(4325), + [anon_sym__alignof] = ACTIONS(4325), + [anon_sym_alignof] = ACTIONS(4325), + [anon_sym__Alignof] = ACTIONS(4325), + [anon_sym_offsetof] = ACTIONS(4325), + [anon_sym__Generic] = ACTIONS(4325), + [anon_sym_typename] = ACTIONS(4325), + [anon_sym_asm] = ACTIONS(4325), + [anon_sym___asm__] = ACTIONS(4325), + [anon_sym___asm] = ACTIONS(4325), + [sym_number_literal] = ACTIONS(4327), + [anon_sym_L_SQUOTE] = ACTIONS(4327), + [anon_sym_u_SQUOTE] = ACTIONS(4327), + [anon_sym_U_SQUOTE] = ACTIONS(4327), + [anon_sym_u8_SQUOTE] = ACTIONS(4327), + [anon_sym_SQUOTE] = ACTIONS(4327), + [anon_sym_L_DQUOTE] = ACTIONS(4327), + [anon_sym_u_DQUOTE] = ACTIONS(4327), + [anon_sym_U_DQUOTE] = ACTIONS(4327), + [anon_sym_u8_DQUOTE] = ACTIONS(4327), + [anon_sym_DQUOTE] = ACTIONS(4327), + [sym_true] = ACTIONS(4325), + [sym_false] = ACTIONS(4325), + [anon_sym_NULL] = ACTIONS(4325), + [anon_sym_nullptr] = ACTIONS(4325), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4325), + [anon_sym_decltype] = ACTIONS(4325), + [anon_sym_explicit] = ACTIONS(4325), + [anon_sym_export] = ACTIONS(4325), + [anon_sym_module] = ACTIONS(4325), + [anon_sym_import] = ACTIONS(4325), + [anon_sym_template] = ACTIONS(4325), + [anon_sym_operator] = ACTIONS(4325), + [anon_sym_try] = ACTIONS(4325), + [anon_sym_delete] = ACTIONS(4325), + [anon_sym_throw] = ACTIONS(4325), + [anon_sym_namespace] = ACTIONS(4325), + [anon_sym_static_assert] = ACTIONS(4325), + [anon_sym_concept] = ACTIONS(4325), + [anon_sym_co_return] = ACTIONS(4325), + [anon_sym_co_yield] = ACTIONS(4325), + [anon_sym_R_DQUOTE] = ACTIONS(4327), + [anon_sym_LR_DQUOTE] = ACTIONS(4327), + [anon_sym_uR_DQUOTE] = ACTIONS(4327), + [anon_sym_UR_DQUOTE] = ACTIONS(4327), + [anon_sym_u8R_DQUOTE] = ACTIONS(4327), + [anon_sym_co_await] = ACTIONS(4325), + [anon_sym_new] = ACTIONS(4325), + [anon_sym_requires] = ACTIONS(4325), + [anon_sym_CARET_CARET] = ACTIONS(4327), + [anon_sym_LBRACK_COLON] = ACTIONS(4327), + [sym_this] = ACTIONS(4325), + }, + [STATE(998)] = { + [ts_builtin_sym_end] = ACTIONS(4369), + [sym_identifier] = ACTIONS(4367), + [aux_sym_preproc_include_token1] = ACTIONS(4367), + [aux_sym_preproc_def_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token1] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4367), + [sym_preproc_directive] = ACTIONS(4367), + [anon_sym_LPAREN2] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_AMP_AMP] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4369), + [anon_sym___extension__] = ACTIONS(4367), + [anon_sym_typedef] = ACTIONS(4367), + [anon_sym_virtual] = ACTIONS(4367), + [anon_sym_extern] = ACTIONS(4367), + [anon_sym___attribute__] = ACTIONS(4367), + [anon_sym___attribute] = ACTIONS(4367), + [anon_sym_using] = ACTIONS(4367), + [anon_sym_COLON_COLON] = ACTIONS(4369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4369), + [anon_sym___declspec] = ACTIONS(4367), + [anon_sym___based] = ACTIONS(4367), + [anon_sym___cdecl] = ACTIONS(4367), + [anon_sym___clrcall] = ACTIONS(4367), + [anon_sym___stdcall] = ACTIONS(4367), + [anon_sym___fastcall] = ACTIONS(4367), + [anon_sym___thiscall] = ACTIONS(4367), + [anon_sym___vectorcall] = ACTIONS(4367), + [anon_sym_LBRACE] = ACTIONS(4369), + [anon_sym_signed] = ACTIONS(4367), + [anon_sym_unsigned] = ACTIONS(4367), + [anon_sym_long] = ACTIONS(4367), + [anon_sym_short] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4367), + [anon_sym_static] = ACTIONS(4367), + [anon_sym_register] = ACTIONS(4367), + [anon_sym_inline] = ACTIONS(4367), + [anon_sym___inline] = ACTIONS(4367), + [anon_sym___inline__] = ACTIONS(4367), + [anon_sym___forceinline] = ACTIONS(4367), + [anon_sym_thread_local] = ACTIONS(4367), + [anon_sym___thread] = ACTIONS(4367), + [anon_sym_const] = ACTIONS(4367), + [anon_sym_constexpr] = ACTIONS(4367), + [anon_sym_volatile] = ACTIONS(4367), + [anon_sym_restrict] = ACTIONS(4367), + [anon_sym___restrict__] = ACTIONS(4367), + [anon_sym__Atomic] = ACTIONS(4367), + [anon_sym__Noreturn] = ACTIONS(4367), + [anon_sym_noreturn] = ACTIONS(4367), + [anon_sym__Nonnull] = ACTIONS(4367), + [anon_sym_mutable] = ACTIONS(4367), + [anon_sym_constinit] = ACTIONS(4367), + [anon_sym_consteval] = ACTIONS(4367), + [anon_sym_alignas] = ACTIONS(4367), + [anon_sym__Alignas] = ACTIONS(4367), + [sym_primitive_type] = ACTIONS(4367), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_class] = ACTIONS(4367), + [anon_sym_struct] = ACTIONS(4367), + [anon_sym_union] = ACTIONS(4367), + [anon_sym_if] = ACTIONS(4367), + [anon_sym_switch] = ACTIONS(4367), + [anon_sym_case] = ACTIONS(4367), + [anon_sym_default] = ACTIONS(4367), + [anon_sym_while] = ACTIONS(4367), + [anon_sym_do] = ACTIONS(4367), + [anon_sym_for] = ACTIONS(4367), + [anon_sym_return] = ACTIONS(4367), + [anon_sym_break] = ACTIONS(4367), + [anon_sym_continue] = ACTIONS(4367), + [anon_sym_goto] = ACTIONS(4367), + [anon_sym_not] = ACTIONS(4367), + [anon_sym_compl] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_PLUS_PLUS] = ACTIONS(4369), + [anon_sym_sizeof] = ACTIONS(4367), + [anon_sym___alignof__] = ACTIONS(4367), + [anon_sym___alignof] = ACTIONS(4367), + [anon_sym__alignof] = ACTIONS(4367), + [anon_sym_alignof] = ACTIONS(4367), + [anon_sym__Alignof] = ACTIONS(4367), + [anon_sym_offsetof] = ACTIONS(4367), + [anon_sym__Generic] = ACTIONS(4367), + [anon_sym_typename] = ACTIONS(4367), + [anon_sym_asm] = ACTIONS(4367), + [anon_sym___asm__] = ACTIONS(4367), + [anon_sym___asm] = ACTIONS(4367), + [sym_number_literal] = ACTIONS(4369), + [anon_sym_L_SQUOTE] = ACTIONS(4369), + [anon_sym_u_SQUOTE] = ACTIONS(4369), + [anon_sym_U_SQUOTE] = ACTIONS(4369), + [anon_sym_u8_SQUOTE] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4369), + [anon_sym_L_DQUOTE] = ACTIONS(4369), + [anon_sym_u_DQUOTE] = ACTIONS(4369), + [anon_sym_U_DQUOTE] = ACTIONS(4369), + [anon_sym_u8_DQUOTE] = ACTIONS(4369), + [anon_sym_DQUOTE] = ACTIONS(4369), + [sym_true] = ACTIONS(4367), + [sym_false] = ACTIONS(4367), + [anon_sym_NULL] = ACTIONS(4367), + [anon_sym_nullptr] = ACTIONS(4367), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4367), + [anon_sym_decltype] = ACTIONS(4367), + [anon_sym_explicit] = ACTIONS(4367), + [anon_sym_export] = ACTIONS(4367), + [anon_sym_module] = ACTIONS(4367), + [anon_sym_import] = ACTIONS(4367), + [anon_sym_template] = ACTIONS(4367), + [anon_sym_operator] = ACTIONS(4367), + [anon_sym_try] = ACTIONS(4367), + [anon_sym_delete] = ACTIONS(4367), + [anon_sym_throw] = ACTIONS(4367), + [anon_sym_namespace] = ACTIONS(4367), + [anon_sym_static_assert] = ACTIONS(4367), + [anon_sym_concept] = ACTIONS(4367), + [anon_sym_co_return] = ACTIONS(4367), + [anon_sym_co_yield] = ACTIONS(4367), + [anon_sym_R_DQUOTE] = ACTIONS(4369), + [anon_sym_LR_DQUOTE] = ACTIONS(4369), + [anon_sym_uR_DQUOTE] = ACTIONS(4369), + [anon_sym_UR_DQUOTE] = ACTIONS(4369), + [anon_sym_u8R_DQUOTE] = ACTIONS(4369), + [anon_sym_co_await] = ACTIONS(4367), + [anon_sym_new] = ACTIONS(4367), + [anon_sym_requires] = ACTIONS(4367), + [anon_sym_CARET_CARET] = ACTIONS(4369), + [anon_sym_LBRACK_COLON] = ACTIONS(4369), + [sym_this] = ACTIONS(4367), + }, + [STATE(999)] = { + [ts_builtin_sym_end] = ACTIONS(4373), + [sym_identifier] = ACTIONS(4371), + [aux_sym_preproc_include_token1] = ACTIONS(4371), + [aux_sym_preproc_def_token1] = ACTIONS(4371), + [aux_sym_preproc_if_token1] = ACTIONS(4371), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4371), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4371), + [sym_preproc_directive] = ACTIONS(4371), + [anon_sym_LPAREN2] = ACTIONS(4373), + [anon_sym_BANG] = ACTIONS(4373), + [anon_sym_TILDE] = ACTIONS(4373), + [anon_sym_DASH] = ACTIONS(4371), + [anon_sym_PLUS] = ACTIONS(4371), + [anon_sym_STAR] = ACTIONS(4373), + [anon_sym_AMP_AMP] = ACTIONS(4373), + [anon_sym_AMP] = ACTIONS(4371), + [anon_sym_SEMI] = ACTIONS(4373), + [anon_sym___extension__] = ACTIONS(4371), + [anon_sym_typedef] = ACTIONS(4371), + [anon_sym_virtual] = ACTIONS(4371), + [anon_sym_extern] = ACTIONS(4371), + [anon_sym___attribute__] = ACTIONS(4371), + [anon_sym___attribute] = ACTIONS(4371), + [anon_sym_using] = ACTIONS(4371), + [anon_sym_COLON_COLON] = ACTIONS(4373), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4373), + [anon_sym___declspec] = ACTIONS(4371), + [anon_sym___based] = ACTIONS(4371), + [anon_sym___cdecl] = ACTIONS(4371), + [anon_sym___clrcall] = ACTIONS(4371), + [anon_sym___stdcall] = ACTIONS(4371), + [anon_sym___fastcall] = ACTIONS(4371), + [anon_sym___thiscall] = ACTIONS(4371), + [anon_sym___vectorcall] = ACTIONS(4371), + [anon_sym_LBRACE] = ACTIONS(4373), + [anon_sym_signed] = ACTIONS(4371), + [anon_sym_unsigned] = ACTIONS(4371), + [anon_sym_long] = ACTIONS(4371), + [anon_sym_short] = ACTIONS(4371), + [anon_sym_LBRACK] = ACTIONS(4371), + [anon_sym_static] = ACTIONS(4371), + [anon_sym_register] = ACTIONS(4371), + [anon_sym_inline] = ACTIONS(4371), + [anon_sym___inline] = ACTIONS(4371), + [anon_sym___inline__] = ACTIONS(4371), + [anon_sym___forceinline] = ACTIONS(4371), + [anon_sym_thread_local] = ACTIONS(4371), + [anon_sym___thread] = ACTIONS(4371), + [anon_sym_const] = ACTIONS(4371), + [anon_sym_constexpr] = ACTIONS(4371), + [anon_sym_volatile] = ACTIONS(4371), + [anon_sym_restrict] = ACTIONS(4371), + [anon_sym___restrict__] = ACTIONS(4371), + [anon_sym__Atomic] = ACTIONS(4371), + [anon_sym__Noreturn] = ACTIONS(4371), + [anon_sym_noreturn] = ACTIONS(4371), + [anon_sym__Nonnull] = ACTIONS(4371), + [anon_sym_mutable] = ACTIONS(4371), + [anon_sym_constinit] = ACTIONS(4371), + [anon_sym_consteval] = ACTIONS(4371), + [anon_sym_alignas] = ACTIONS(4371), + [anon_sym__Alignas] = ACTIONS(4371), + [sym_primitive_type] = ACTIONS(4371), + [anon_sym_enum] = ACTIONS(4371), + [anon_sym_class] = ACTIONS(4371), + [anon_sym_struct] = ACTIONS(4371), + [anon_sym_union] = ACTIONS(4371), + [anon_sym_if] = ACTIONS(4371), + [anon_sym_switch] = ACTIONS(4371), + [anon_sym_case] = ACTIONS(4371), + [anon_sym_default] = ACTIONS(4371), + [anon_sym_while] = ACTIONS(4371), + [anon_sym_do] = ACTIONS(4371), + [anon_sym_for] = ACTIONS(4371), + [anon_sym_return] = ACTIONS(4371), + [anon_sym_break] = ACTIONS(4371), + [anon_sym_continue] = ACTIONS(4371), + [anon_sym_goto] = ACTIONS(4371), + [anon_sym_not] = ACTIONS(4371), + [anon_sym_compl] = ACTIONS(4371), + [anon_sym_DASH_DASH] = ACTIONS(4373), + [anon_sym_PLUS_PLUS] = ACTIONS(4373), + [anon_sym_sizeof] = ACTIONS(4371), + [anon_sym___alignof__] = ACTIONS(4371), + [anon_sym___alignof] = ACTIONS(4371), + [anon_sym__alignof] = ACTIONS(4371), + [anon_sym_alignof] = ACTIONS(4371), + [anon_sym__Alignof] = ACTIONS(4371), + [anon_sym_offsetof] = ACTIONS(4371), + [anon_sym__Generic] = ACTIONS(4371), + [anon_sym_typename] = ACTIONS(4371), + [anon_sym_asm] = ACTIONS(4371), + [anon_sym___asm__] = ACTIONS(4371), + [anon_sym___asm] = ACTIONS(4371), + [sym_number_literal] = ACTIONS(4373), + [anon_sym_L_SQUOTE] = ACTIONS(4373), + [anon_sym_u_SQUOTE] = ACTIONS(4373), + [anon_sym_U_SQUOTE] = ACTIONS(4373), + [anon_sym_u8_SQUOTE] = ACTIONS(4373), + [anon_sym_SQUOTE] = ACTIONS(4373), + [anon_sym_L_DQUOTE] = ACTIONS(4373), + [anon_sym_u_DQUOTE] = ACTIONS(4373), + [anon_sym_U_DQUOTE] = ACTIONS(4373), + [anon_sym_u8_DQUOTE] = ACTIONS(4373), + [anon_sym_DQUOTE] = ACTIONS(4373), + [sym_true] = ACTIONS(4371), + [sym_false] = ACTIONS(4371), + [anon_sym_NULL] = ACTIONS(4371), + [anon_sym_nullptr] = ACTIONS(4371), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4371), + [anon_sym_decltype] = ACTIONS(4371), + [anon_sym_explicit] = ACTIONS(4371), + [anon_sym_export] = ACTIONS(4371), + [anon_sym_module] = ACTIONS(4371), + [anon_sym_import] = ACTIONS(4371), + [anon_sym_template] = ACTIONS(4371), + [anon_sym_operator] = ACTIONS(4371), + [anon_sym_try] = ACTIONS(4371), + [anon_sym_delete] = ACTIONS(4371), + [anon_sym_throw] = ACTIONS(4371), + [anon_sym_namespace] = ACTIONS(4371), + [anon_sym_static_assert] = ACTIONS(4371), + [anon_sym_concept] = ACTIONS(4371), + [anon_sym_co_return] = ACTIONS(4371), + [anon_sym_co_yield] = ACTIONS(4371), + [anon_sym_R_DQUOTE] = ACTIONS(4373), + [anon_sym_LR_DQUOTE] = ACTIONS(4373), + [anon_sym_uR_DQUOTE] = ACTIONS(4373), + [anon_sym_UR_DQUOTE] = ACTIONS(4373), + [anon_sym_u8R_DQUOTE] = ACTIONS(4373), + [anon_sym_co_await] = ACTIONS(4371), + [anon_sym_new] = ACTIONS(4371), + [anon_sym_requires] = ACTIONS(4371), + [anon_sym_CARET_CARET] = ACTIONS(4373), + [anon_sym_LBRACK_COLON] = ACTIONS(4373), + [sym_this] = ACTIONS(4371), + }, + [STATE(1000)] = { + [ts_builtin_sym_end] = ACTIONS(4377), + [sym_identifier] = ACTIONS(4375), + [aux_sym_preproc_include_token1] = ACTIONS(4375), + [aux_sym_preproc_def_token1] = ACTIONS(4375), + [aux_sym_preproc_if_token1] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4375), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4375), + [sym_preproc_directive] = ACTIONS(4375), + [anon_sym_LPAREN2] = ACTIONS(4377), + [anon_sym_BANG] = ACTIONS(4377), + [anon_sym_TILDE] = ACTIONS(4377), + [anon_sym_DASH] = ACTIONS(4375), + [anon_sym_PLUS] = ACTIONS(4375), + [anon_sym_STAR] = ACTIONS(4377), + [anon_sym_AMP_AMP] = ACTIONS(4377), + [anon_sym_AMP] = ACTIONS(4375), + [anon_sym_SEMI] = ACTIONS(4377), + [anon_sym___extension__] = ACTIONS(4375), + [anon_sym_typedef] = ACTIONS(4375), + [anon_sym_virtual] = ACTIONS(4375), + [anon_sym_extern] = ACTIONS(4375), + [anon_sym___attribute__] = ACTIONS(4375), + [anon_sym___attribute] = ACTIONS(4375), + [anon_sym_using] = ACTIONS(4375), + [anon_sym_COLON_COLON] = ACTIONS(4377), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4377), + [anon_sym___declspec] = ACTIONS(4375), + [anon_sym___based] = ACTIONS(4375), + [anon_sym___cdecl] = ACTIONS(4375), + [anon_sym___clrcall] = ACTIONS(4375), + [anon_sym___stdcall] = ACTIONS(4375), + [anon_sym___fastcall] = ACTIONS(4375), + [anon_sym___thiscall] = ACTIONS(4375), + [anon_sym___vectorcall] = ACTIONS(4375), + [anon_sym_LBRACE] = ACTIONS(4377), + [anon_sym_signed] = ACTIONS(4375), + [anon_sym_unsigned] = ACTIONS(4375), + [anon_sym_long] = ACTIONS(4375), + [anon_sym_short] = ACTIONS(4375), + [anon_sym_LBRACK] = ACTIONS(4375), + [anon_sym_static] = ACTIONS(4375), + [anon_sym_register] = ACTIONS(4375), + [anon_sym_inline] = ACTIONS(4375), + [anon_sym___inline] = ACTIONS(4375), + [anon_sym___inline__] = ACTIONS(4375), + [anon_sym___forceinline] = ACTIONS(4375), + [anon_sym_thread_local] = ACTIONS(4375), + [anon_sym___thread] = ACTIONS(4375), + [anon_sym_const] = ACTIONS(4375), + [anon_sym_constexpr] = ACTIONS(4375), + [anon_sym_volatile] = ACTIONS(4375), + [anon_sym_restrict] = ACTIONS(4375), + [anon_sym___restrict__] = ACTIONS(4375), + [anon_sym__Atomic] = ACTIONS(4375), + [anon_sym__Noreturn] = ACTIONS(4375), + [anon_sym_noreturn] = ACTIONS(4375), + [anon_sym__Nonnull] = ACTIONS(4375), + [anon_sym_mutable] = ACTIONS(4375), + [anon_sym_constinit] = ACTIONS(4375), + [anon_sym_consteval] = ACTIONS(4375), + [anon_sym_alignas] = ACTIONS(4375), + [anon_sym__Alignas] = ACTIONS(4375), + [sym_primitive_type] = ACTIONS(4375), + [anon_sym_enum] = ACTIONS(4375), + [anon_sym_class] = ACTIONS(4375), + [anon_sym_struct] = ACTIONS(4375), + [anon_sym_union] = ACTIONS(4375), + [anon_sym_if] = ACTIONS(4375), + [anon_sym_switch] = ACTIONS(4375), + [anon_sym_case] = ACTIONS(4375), + [anon_sym_default] = ACTIONS(4375), + [anon_sym_while] = ACTIONS(4375), + [anon_sym_do] = ACTIONS(4375), + [anon_sym_for] = ACTIONS(4375), + [anon_sym_return] = ACTIONS(4375), + [anon_sym_break] = ACTIONS(4375), + [anon_sym_continue] = ACTIONS(4375), + [anon_sym_goto] = ACTIONS(4375), + [anon_sym_not] = ACTIONS(4375), + [anon_sym_compl] = ACTIONS(4375), + [anon_sym_DASH_DASH] = ACTIONS(4377), + [anon_sym_PLUS_PLUS] = ACTIONS(4377), + [anon_sym_sizeof] = ACTIONS(4375), + [anon_sym___alignof__] = ACTIONS(4375), + [anon_sym___alignof] = ACTIONS(4375), + [anon_sym__alignof] = ACTIONS(4375), + [anon_sym_alignof] = ACTIONS(4375), + [anon_sym__Alignof] = ACTIONS(4375), + [anon_sym_offsetof] = ACTIONS(4375), + [anon_sym__Generic] = ACTIONS(4375), + [anon_sym_typename] = ACTIONS(4375), + [anon_sym_asm] = ACTIONS(4375), + [anon_sym___asm__] = ACTIONS(4375), + [anon_sym___asm] = ACTIONS(4375), + [sym_number_literal] = ACTIONS(4377), + [anon_sym_L_SQUOTE] = ACTIONS(4377), + [anon_sym_u_SQUOTE] = ACTIONS(4377), + [anon_sym_U_SQUOTE] = ACTIONS(4377), + [anon_sym_u8_SQUOTE] = ACTIONS(4377), + [anon_sym_SQUOTE] = ACTIONS(4377), + [anon_sym_L_DQUOTE] = ACTIONS(4377), + [anon_sym_u_DQUOTE] = ACTIONS(4377), + [anon_sym_U_DQUOTE] = ACTIONS(4377), + [anon_sym_u8_DQUOTE] = ACTIONS(4377), + [anon_sym_DQUOTE] = ACTIONS(4377), + [sym_true] = ACTIONS(4375), + [sym_false] = ACTIONS(4375), + [anon_sym_NULL] = ACTIONS(4375), + [anon_sym_nullptr] = ACTIONS(4375), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4375), + [anon_sym_decltype] = ACTIONS(4375), + [anon_sym_explicit] = ACTIONS(4375), + [anon_sym_export] = ACTIONS(4375), + [anon_sym_module] = ACTIONS(4375), + [anon_sym_import] = ACTIONS(4375), + [anon_sym_template] = ACTIONS(4375), + [anon_sym_operator] = ACTIONS(4375), + [anon_sym_try] = ACTIONS(4375), + [anon_sym_delete] = ACTIONS(4375), + [anon_sym_throw] = ACTIONS(4375), + [anon_sym_namespace] = ACTIONS(4375), + [anon_sym_static_assert] = ACTIONS(4375), + [anon_sym_concept] = ACTIONS(4375), + [anon_sym_co_return] = ACTIONS(4375), + [anon_sym_co_yield] = ACTIONS(4375), + [anon_sym_R_DQUOTE] = ACTIONS(4377), + [anon_sym_LR_DQUOTE] = ACTIONS(4377), + [anon_sym_uR_DQUOTE] = ACTIONS(4377), + [anon_sym_UR_DQUOTE] = ACTIONS(4377), + [anon_sym_u8R_DQUOTE] = ACTIONS(4377), + [anon_sym_co_await] = ACTIONS(4375), + [anon_sym_new] = ACTIONS(4375), + [anon_sym_requires] = ACTIONS(4375), + [anon_sym_CARET_CARET] = ACTIONS(4377), + [anon_sym_LBRACK_COLON] = ACTIONS(4377), + [sym_this] = ACTIONS(4375), + }, + [STATE(1001)] = { [ts_builtin_sym_end] = ACTIONS(4389), [sym_identifier] = ACTIONS(4387), [aux_sym_preproc_include_token1] = ACTIONS(4387), @@ -201309,3017 +202143,2182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(4389), [sym_this] = ACTIONS(4387), }, - [STATE(996)] = { - [ts_builtin_sym_end] = ACTIONS(3964), - [sym_identifier] = ACTIONS(3962), - [aux_sym_preproc_include_token1] = ACTIONS(3962), - [aux_sym_preproc_def_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), - [sym_preproc_directive] = ACTIONS(3962), - [anon_sym_LPAREN2] = ACTIONS(3964), - [anon_sym_BANG] = ACTIONS(3964), - [anon_sym_TILDE] = ACTIONS(3964), - [anon_sym_DASH] = ACTIONS(3962), - [anon_sym_PLUS] = ACTIONS(3962), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym___extension__] = ACTIONS(3962), - [anon_sym_typedef] = ACTIONS(3962), - [anon_sym_virtual] = ACTIONS(3962), - [anon_sym_extern] = ACTIONS(3962), - [anon_sym___attribute__] = ACTIONS(3962), - [anon_sym___attribute] = ACTIONS(3962), - [anon_sym_using] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), - [anon_sym___declspec] = ACTIONS(3962), - [anon_sym___based] = ACTIONS(3962), - [anon_sym___cdecl] = ACTIONS(3962), - [anon_sym___clrcall] = ACTIONS(3962), - [anon_sym___stdcall] = ACTIONS(3962), - [anon_sym___fastcall] = ACTIONS(3962), - [anon_sym___thiscall] = ACTIONS(3962), - [anon_sym___vectorcall] = ACTIONS(3962), - [anon_sym_LBRACE] = ACTIONS(3964), - [anon_sym_signed] = ACTIONS(3962), - [anon_sym_unsigned] = ACTIONS(3962), - [anon_sym_long] = ACTIONS(3962), - [anon_sym_short] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3962), - [anon_sym_register] = ACTIONS(3962), - [anon_sym_inline] = ACTIONS(3962), - [anon_sym___inline] = ACTIONS(3962), - [anon_sym___inline__] = ACTIONS(3962), - [anon_sym___forceinline] = ACTIONS(3962), - [anon_sym_thread_local] = ACTIONS(3962), - [anon_sym___thread] = ACTIONS(3962), - [anon_sym_const] = ACTIONS(3962), - [anon_sym_constexpr] = ACTIONS(3962), - [anon_sym_volatile] = ACTIONS(3962), - [anon_sym_restrict] = ACTIONS(3962), - [anon_sym___restrict__] = ACTIONS(3962), - [anon_sym__Atomic] = ACTIONS(3962), - [anon_sym__Noreturn] = ACTIONS(3962), - [anon_sym_noreturn] = ACTIONS(3962), - [anon_sym__Nonnull] = ACTIONS(3962), - [anon_sym_mutable] = ACTIONS(3962), - [anon_sym_constinit] = ACTIONS(3962), - [anon_sym_consteval] = ACTIONS(3962), - [anon_sym_alignas] = ACTIONS(3962), - [anon_sym__Alignas] = ACTIONS(3962), - [sym_primitive_type] = ACTIONS(3962), - [anon_sym_enum] = ACTIONS(3962), - [anon_sym_class] = ACTIONS(3962), - [anon_sym_struct] = ACTIONS(3962), - [anon_sym_union] = ACTIONS(3962), - [anon_sym_if] = ACTIONS(3962), - [anon_sym_switch] = ACTIONS(3962), - [anon_sym_case] = ACTIONS(3962), - [anon_sym_default] = ACTIONS(3962), - [anon_sym_while] = ACTIONS(3962), - [anon_sym_do] = ACTIONS(3962), - [anon_sym_for] = ACTIONS(3962), - [anon_sym_return] = ACTIONS(3962), - [anon_sym_break] = ACTIONS(3962), - [anon_sym_continue] = ACTIONS(3962), - [anon_sym_goto] = ACTIONS(3962), - [anon_sym_not] = ACTIONS(3962), - [anon_sym_compl] = ACTIONS(3962), - [anon_sym_DASH_DASH] = ACTIONS(3964), - [anon_sym_PLUS_PLUS] = ACTIONS(3964), - [anon_sym_sizeof] = ACTIONS(3962), - [anon_sym___alignof__] = ACTIONS(3962), - [anon_sym___alignof] = ACTIONS(3962), - [anon_sym__alignof] = ACTIONS(3962), - [anon_sym_alignof] = ACTIONS(3962), - [anon_sym__Alignof] = ACTIONS(3962), - [anon_sym_offsetof] = ACTIONS(3962), - [anon_sym__Generic] = ACTIONS(3962), - [anon_sym_typename] = ACTIONS(3962), - [anon_sym_asm] = ACTIONS(3962), - [anon_sym___asm__] = ACTIONS(3962), - [anon_sym___asm] = ACTIONS(3962), - [sym_number_literal] = ACTIONS(3964), - [anon_sym_L_SQUOTE] = ACTIONS(3964), - [anon_sym_u_SQUOTE] = ACTIONS(3964), - [anon_sym_U_SQUOTE] = ACTIONS(3964), - [anon_sym_u8_SQUOTE] = ACTIONS(3964), - [anon_sym_SQUOTE] = ACTIONS(3964), - [anon_sym_L_DQUOTE] = ACTIONS(3964), - [anon_sym_u_DQUOTE] = ACTIONS(3964), - [anon_sym_U_DQUOTE] = ACTIONS(3964), - [anon_sym_u8_DQUOTE] = ACTIONS(3964), - [anon_sym_DQUOTE] = ACTIONS(3964), - [sym_true] = ACTIONS(3962), - [sym_false] = ACTIONS(3962), - [anon_sym_NULL] = ACTIONS(3962), - [anon_sym_nullptr] = ACTIONS(3962), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3962), - [anon_sym_decltype] = ACTIONS(3962), - [anon_sym_explicit] = ACTIONS(3962), - [anon_sym_export] = ACTIONS(3962), - [anon_sym_module] = ACTIONS(3962), - [anon_sym_import] = ACTIONS(3962), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(3962), - [anon_sym_try] = ACTIONS(3962), - [anon_sym_delete] = ACTIONS(3962), - [anon_sym_throw] = ACTIONS(3962), - [anon_sym_namespace] = ACTIONS(3962), - [anon_sym_static_assert] = ACTIONS(3962), - [anon_sym_concept] = ACTIONS(3962), - [anon_sym_co_return] = ACTIONS(3962), - [anon_sym_co_yield] = ACTIONS(3962), - [anon_sym_R_DQUOTE] = ACTIONS(3964), - [anon_sym_LR_DQUOTE] = ACTIONS(3964), - [anon_sym_uR_DQUOTE] = ACTIONS(3964), - [anon_sym_UR_DQUOTE] = ACTIONS(3964), - [anon_sym_u8R_DQUOTE] = ACTIONS(3964), - [anon_sym_co_await] = ACTIONS(3962), - [anon_sym_new] = ACTIONS(3962), - [anon_sym_requires] = ACTIONS(3962), - [anon_sym_CARET_CARET] = ACTIONS(3964), - [anon_sym_LBRACK_COLON] = ACTIONS(3964), - [sym_this] = ACTIONS(3962), + [STATE(1002)] = { + [ts_builtin_sym_end] = ACTIONS(3871), + [sym_identifier] = ACTIONS(3869), + [aux_sym_preproc_include_token1] = ACTIONS(3869), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3869), + [sym_preproc_directive] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(3871), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_TILDE] = ACTIONS(3871), + [anon_sym_DASH] = ACTIONS(3869), + [anon_sym_PLUS] = ACTIONS(3869), + [anon_sym_STAR] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym___extension__] = ACTIONS(3869), + [anon_sym_typedef] = ACTIONS(3869), + [anon_sym_virtual] = ACTIONS(3869), + [anon_sym_extern] = ACTIONS(3869), + [anon_sym___attribute__] = ACTIONS(3869), + [anon_sym___attribute] = ACTIONS(3869), + [anon_sym_using] = ACTIONS(3869), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3871), + [anon_sym___declspec] = ACTIONS(3869), + [anon_sym___based] = ACTIONS(3869), + [anon_sym___cdecl] = ACTIONS(3869), + [anon_sym___clrcall] = ACTIONS(3869), + [anon_sym___stdcall] = ACTIONS(3869), + [anon_sym___fastcall] = ACTIONS(3869), + [anon_sym___thiscall] = ACTIONS(3869), + [anon_sym___vectorcall] = ACTIONS(3869), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_signed] = ACTIONS(3869), + [anon_sym_unsigned] = ACTIONS(3869), + [anon_sym_long] = ACTIONS(3869), + [anon_sym_short] = ACTIONS(3869), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_static] = ACTIONS(3869), + [anon_sym_register] = ACTIONS(3869), + [anon_sym_inline] = ACTIONS(3869), + [anon_sym___inline] = ACTIONS(3869), + [anon_sym___inline__] = ACTIONS(3869), + [anon_sym___forceinline] = ACTIONS(3869), + [anon_sym_thread_local] = ACTIONS(3869), + [anon_sym___thread] = ACTIONS(3869), + [anon_sym_const] = ACTIONS(3869), + [anon_sym_constexpr] = ACTIONS(3869), + [anon_sym_volatile] = ACTIONS(3869), + [anon_sym_restrict] = ACTIONS(3869), + [anon_sym___restrict__] = ACTIONS(3869), + [anon_sym__Atomic] = ACTIONS(3869), + [anon_sym__Noreturn] = ACTIONS(3869), + [anon_sym_noreturn] = ACTIONS(3869), + [anon_sym__Nonnull] = ACTIONS(3869), + [anon_sym_mutable] = ACTIONS(3869), + [anon_sym_constinit] = ACTIONS(3869), + [anon_sym_consteval] = ACTIONS(3869), + [anon_sym_alignas] = ACTIONS(3869), + [anon_sym__Alignas] = ACTIONS(3869), + [sym_primitive_type] = ACTIONS(3869), + [anon_sym_enum] = ACTIONS(3869), + [anon_sym_class] = ACTIONS(3869), + [anon_sym_struct] = ACTIONS(3869), + [anon_sym_union] = ACTIONS(3869), + [anon_sym_if] = ACTIONS(3869), + [anon_sym_switch] = ACTIONS(3869), + [anon_sym_case] = ACTIONS(3869), + [anon_sym_default] = ACTIONS(3869), + [anon_sym_while] = ACTIONS(3869), + [anon_sym_do] = ACTIONS(3869), + [anon_sym_for] = ACTIONS(3869), + [anon_sym_return] = ACTIONS(3869), + [anon_sym_break] = ACTIONS(3869), + [anon_sym_continue] = ACTIONS(3869), + [anon_sym_goto] = ACTIONS(3869), + [anon_sym_not] = ACTIONS(3869), + [anon_sym_compl] = ACTIONS(3869), + [anon_sym_DASH_DASH] = ACTIONS(3871), + [anon_sym_PLUS_PLUS] = ACTIONS(3871), + [anon_sym_sizeof] = ACTIONS(3869), + [anon_sym___alignof__] = ACTIONS(3869), + [anon_sym___alignof] = ACTIONS(3869), + [anon_sym__alignof] = ACTIONS(3869), + [anon_sym_alignof] = ACTIONS(3869), + [anon_sym__Alignof] = ACTIONS(3869), + [anon_sym_offsetof] = ACTIONS(3869), + [anon_sym__Generic] = ACTIONS(3869), + [anon_sym_typename] = ACTIONS(3869), + [anon_sym_asm] = ACTIONS(3869), + [anon_sym___asm__] = ACTIONS(3869), + [anon_sym___asm] = ACTIONS(3869), + [sym_number_literal] = ACTIONS(3871), + [anon_sym_L_SQUOTE] = ACTIONS(3871), + [anon_sym_u_SQUOTE] = ACTIONS(3871), + [anon_sym_U_SQUOTE] = ACTIONS(3871), + [anon_sym_u8_SQUOTE] = ACTIONS(3871), + [anon_sym_SQUOTE] = ACTIONS(3871), + [anon_sym_L_DQUOTE] = ACTIONS(3871), + [anon_sym_u_DQUOTE] = ACTIONS(3871), + [anon_sym_U_DQUOTE] = ACTIONS(3871), + [anon_sym_u8_DQUOTE] = ACTIONS(3871), + [anon_sym_DQUOTE] = ACTIONS(3871), + [sym_true] = ACTIONS(3869), + [sym_false] = ACTIONS(3869), + [anon_sym_NULL] = ACTIONS(3869), + [anon_sym_nullptr] = ACTIONS(3869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3869), + [anon_sym_decltype] = ACTIONS(3869), + [anon_sym_explicit] = ACTIONS(3869), + [anon_sym_export] = ACTIONS(3869), + [anon_sym_module] = ACTIONS(3869), + [anon_sym_import] = ACTIONS(3869), + [anon_sym_template] = ACTIONS(3869), + [anon_sym_operator] = ACTIONS(3869), + [anon_sym_try] = ACTIONS(3869), + [anon_sym_delete] = ACTIONS(3869), + [anon_sym_throw] = ACTIONS(3869), + [anon_sym_namespace] = ACTIONS(3869), + [anon_sym_static_assert] = ACTIONS(3869), + [anon_sym_concept] = ACTIONS(3869), + [anon_sym_co_return] = ACTIONS(3869), + [anon_sym_co_yield] = ACTIONS(3869), + [anon_sym_R_DQUOTE] = ACTIONS(3871), + [anon_sym_LR_DQUOTE] = ACTIONS(3871), + [anon_sym_uR_DQUOTE] = ACTIONS(3871), + [anon_sym_UR_DQUOTE] = ACTIONS(3871), + [anon_sym_u8R_DQUOTE] = ACTIONS(3871), + [anon_sym_co_await] = ACTIONS(3869), + [anon_sym_new] = ACTIONS(3869), + [anon_sym_requires] = ACTIONS(3869), + [anon_sym_CARET_CARET] = ACTIONS(3871), + [anon_sym_LBRACK_COLON] = ACTIONS(3871), + [sym_this] = ACTIONS(3869), }, - [STATE(997)] = { - [ts_builtin_sym_end] = ACTIONS(4026), - [sym_identifier] = ACTIONS(4024), - [aux_sym_preproc_include_token1] = ACTIONS(4024), - [aux_sym_preproc_def_token1] = ACTIONS(4024), - [aux_sym_preproc_if_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4024), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4024), - [sym_preproc_directive] = ACTIONS(4024), - [anon_sym_LPAREN2] = ACTIONS(4026), - [anon_sym_BANG] = ACTIONS(4026), - [anon_sym_TILDE] = ACTIONS(4026), - [anon_sym_DASH] = ACTIONS(4024), - [anon_sym_PLUS] = ACTIONS(4024), - [anon_sym_STAR] = ACTIONS(4026), - [anon_sym_AMP_AMP] = ACTIONS(4026), - [anon_sym_AMP] = ACTIONS(4024), - [anon_sym_SEMI] = ACTIONS(4026), - [anon_sym___extension__] = ACTIONS(4024), - [anon_sym_typedef] = ACTIONS(4024), - [anon_sym_virtual] = ACTIONS(4024), - [anon_sym_extern] = ACTIONS(4024), - [anon_sym___attribute__] = ACTIONS(4024), - [anon_sym___attribute] = ACTIONS(4024), - [anon_sym_using] = ACTIONS(4024), - [anon_sym_COLON_COLON] = ACTIONS(4026), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4026), - [anon_sym___declspec] = ACTIONS(4024), - [anon_sym___based] = ACTIONS(4024), - [anon_sym___cdecl] = ACTIONS(4024), - [anon_sym___clrcall] = ACTIONS(4024), - [anon_sym___stdcall] = ACTIONS(4024), - [anon_sym___fastcall] = ACTIONS(4024), - [anon_sym___thiscall] = ACTIONS(4024), - [anon_sym___vectorcall] = ACTIONS(4024), - [anon_sym_LBRACE] = ACTIONS(4026), - [anon_sym_signed] = ACTIONS(4024), - [anon_sym_unsigned] = ACTIONS(4024), - [anon_sym_long] = ACTIONS(4024), - [anon_sym_short] = ACTIONS(4024), - [anon_sym_LBRACK] = ACTIONS(4024), - [anon_sym_static] = ACTIONS(4024), - [anon_sym_register] = ACTIONS(4024), - [anon_sym_inline] = ACTIONS(4024), - [anon_sym___inline] = ACTIONS(4024), - [anon_sym___inline__] = ACTIONS(4024), - [anon_sym___forceinline] = ACTIONS(4024), - [anon_sym_thread_local] = ACTIONS(4024), - [anon_sym___thread] = ACTIONS(4024), - [anon_sym_const] = ACTIONS(4024), - [anon_sym_constexpr] = ACTIONS(4024), - [anon_sym_volatile] = ACTIONS(4024), - [anon_sym_restrict] = ACTIONS(4024), - [anon_sym___restrict__] = ACTIONS(4024), - [anon_sym__Atomic] = ACTIONS(4024), - [anon_sym__Noreturn] = ACTIONS(4024), - [anon_sym_noreturn] = ACTIONS(4024), - [anon_sym__Nonnull] = ACTIONS(4024), - [anon_sym_mutable] = ACTIONS(4024), - [anon_sym_constinit] = ACTIONS(4024), - [anon_sym_consteval] = ACTIONS(4024), - [anon_sym_alignas] = ACTIONS(4024), - [anon_sym__Alignas] = ACTIONS(4024), - [sym_primitive_type] = ACTIONS(4024), - [anon_sym_enum] = ACTIONS(4024), - [anon_sym_class] = ACTIONS(4024), - [anon_sym_struct] = ACTIONS(4024), - [anon_sym_union] = ACTIONS(4024), - [anon_sym_if] = ACTIONS(4024), - [anon_sym_switch] = ACTIONS(4024), - [anon_sym_case] = ACTIONS(4024), - [anon_sym_default] = ACTIONS(4024), - [anon_sym_while] = ACTIONS(4024), - [anon_sym_do] = ACTIONS(4024), - [anon_sym_for] = ACTIONS(4024), - [anon_sym_return] = ACTIONS(4024), - [anon_sym_break] = ACTIONS(4024), - [anon_sym_continue] = ACTIONS(4024), - [anon_sym_goto] = ACTIONS(4024), - [anon_sym_not] = ACTIONS(4024), - [anon_sym_compl] = ACTIONS(4024), - [anon_sym_DASH_DASH] = ACTIONS(4026), - [anon_sym_PLUS_PLUS] = ACTIONS(4026), - [anon_sym_sizeof] = ACTIONS(4024), - [anon_sym___alignof__] = ACTIONS(4024), - [anon_sym___alignof] = ACTIONS(4024), - [anon_sym__alignof] = ACTIONS(4024), - [anon_sym_alignof] = ACTIONS(4024), - [anon_sym__Alignof] = ACTIONS(4024), - [anon_sym_offsetof] = ACTIONS(4024), - [anon_sym__Generic] = ACTIONS(4024), - [anon_sym_typename] = ACTIONS(4024), - [anon_sym_asm] = ACTIONS(4024), - [anon_sym___asm__] = ACTIONS(4024), - [anon_sym___asm] = ACTIONS(4024), - [sym_number_literal] = ACTIONS(4026), - [anon_sym_L_SQUOTE] = ACTIONS(4026), - [anon_sym_u_SQUOTE] = ACTIONS(4026), - [anon_sym_U_SQUOTE] = ACTIONS(4026), - [anon_sym_u8_SQUOTE] = ACTIONS(4026), - [anon_sym_SQUOTE] = ACTIONS(4026), - [anon_sym_L_DQUOTE] = ACTIONS(4026), - [anon_sym_u_DQUOTE] = ACTIONS(4026), - [anon_sym_U_DQUOTE] = ACTIONS(4026), - [anon_sym_u8_DQUOTE] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(4026), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [anon_sym_NULL] = ACTIONS(4024), - [anon_sym_nullptr] = ACTIONS(4024), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4024), - [anon_sym_decltype] = ACTIONS(4024), - [anon_sym_explicit] = ACTIONS(4024), - [anon_sym_export] = ACTIONS(4024), - [anon_sym_module] = ACTIONS(4024), - [anon_sym_import] = ACTIONS(4024), - [anon_sym_template] = ACTIONS(4024), - [anon_sym_operator] = ACTIONS(4024), - [anon_sym_try] = ACTIONS(4024), - [anon_sym_delete] = ACTIONS(4024), - [anon_sym_throw] = ACTIONS(4024), - [anon_sym_namespace] = ACTIONS(4024), - [anon_sym_static_assert] = ACTIONS(4024), - [anon_sym_concept] = ACTIONS(4024), - [anon_sym_co_return] = ACTIONS(4024), - [anon_sym_co_yield] = ACTIONS(4024), - [anon_sym_R_DQUOTE] = ACTIONS(4026), - [anon_sym_LR_DQUOTE] = ACTIONS(4026), - [anon_sym_uR_DQUOTE] = ACTIONS(4026), - [anon_sym_UR_DQUOTE] = ACTIONS(4026), - [anon_sym_u8R_DQUOTE] = ACTIONS(4026), - [anon_sym_co_await] = ACTIONS(4024), - [anon_sym_new] = ACTIONS(4024), - [anon_sym_requires] = ACTIONS(4024), - [anon_sym_CARET_CARET] = ACTIONS(4026), - [anon_sym_LBRACK_COLON] = ACTIONS(4026), - [sym_this] = ACTIONS(4024), + [STATE(1003)] = { + [ts_builtin_sym_end] = ACTIONS(3875), + [sym_identifier] = ACTIONS(3873), + [aux_sym_preproc_include_token1] = ACTIONS(3873), + [aux_sym_preproc_def_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3875), + [anon_sym_BANG] = ACTIONS(3875), + [anon_sym_TILDE] = ACTIONS(3875), + [anon_sym_DASH] = ACTIONS(3873), + [anon_sym_PLUS] = ACTIONS(3873), + [anon_sym_STAR] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym___extension__] = ACTIONS(3873), + [anon_sym_typedef] = ACTIONS(3873), + [anon_sym_virtual] = ACTIONS(3873), + [anon_sym_extern] = ACTIONS(3873), + [anon_sym___attribute__] = ACTIONS(3873), + [anon_sym___attribute] = ACTIONS(3873), + [anon_sym_using] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3875), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), + [anon_sym___declspec] = ACTIONS(3873), + [anon_sym___based] = ACTIONS(3873), + [anon_sym___cdecl] = ACTIONS(3873), + [anon_sym___clrcall] = ACTIONS(3873), + [anon_sym___stdcall] = ACTIONS(3873), + [anon_sym___fastcall] = ACTIONS(3873), + [anon_sym___thiscall] = ACTIONS(3873), + [anon_sym___vectorcall] = ACTIONS(3873), + [anon_sym_LBRACE] = ACTIONS(3875), + [anon_sym_signed] = ACTIONS(3873), + [anon_sym_unsigned] = ACTIONS(3873), + [anon_sym_long] = ACTIONS(3873), + [anon_sym_short] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3873), + [anon_sym_static] = ACTIONS(3873), + [anon_sym_register] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym___inline] = ACTIONS(3873), + [anon_sym___inline__] = ACTIONS(3873), + [anon_sym___forceinline] = ACTIONS(3873), + [anon_sym_thread_local] = ACTIONS(3873), + [anon_sym___thread] = ACTIONS(3873), + [anon_sym_const] = ACTIONS(3873), + [anon_sym_constexpr] = ACTIONS(3873), + [anon_sym_volatile] = ACTIONS(3873), + [anon_sym_restrict] = ACTIONS(3873), + [anon_sym___restrict__] = ACTIONS(3873), + [anon_sym__Atomic] = ACTIONS(3873), + [anon_sym__Noreturn] = ACTIONS(3873), + [anon_sym_noreturn] = ACTIONS(3873), + [anon_sym__Nonnull] = ACTIONS(3873), + [anon_sym_mutable] = ACTIONS(3873), + [anon_sym_constinit] = ACTIONS(3873), + [anon_sym_consteval] = ACTIONS(3873), + [anon_sym_alignas] = ACTIONS(3873), + [anon_sym__Alignas] = ACTIONS(3873), + [sym_primitive_type] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3873), + [anon_sym_union] = ACTIONS(3873), + [anon_sym_if] = ACTIONS(3873), + [anon_sym_switch] = ACTIONS(3873), + [anon_sym_case] = ACTIONS(3873), + [anon_sym_default] = ACTIONS(3873), + [anon_sym_while] = ACTIONS(3873), + [anon_sym_do] = ACTIONS(3873), + [anon_sym_for] = ACTIONS(3873), + [anon_sym_return] = ACTIONS(3873), + [anon_sym_break] = ACTIONS(3873), + [anon_sym_continue] = ACTIONS(3873), + [anon_sym_goto] = ACTIONS(3873), + [anon_sym_not] = ACTIONS(3873), + [anon_sym_compl] = ACTIONS(3873), + [anon_sym_DASH_DASH] = ACTIONS(3875), + [anon_sym_PLUS_PLUS] = ACTIONS(3875), + [anon_sym_sizeof] = ACTIONS(3873), + [anon_sym___alignof__] = ACTIONS(3873), + [anon_sym___alignof] = ACTIONS(3873), + [anon_sym__alignof] = ACTIONS(3873), + [anon_sym_alignof] = ACTIONS(3873), + [anon_sym__Alignof] = ACTIONS(3873), + [anon_sym_offsetof] = ACTIONS(3873), + [anon_sym__Generic] = ACTIONS(3873), + [anon_sym_typename] = ACTIONS(3873), + [anon_sym_asm] = ACTIONS(3873), + [anon_sym___asm__] = ACTIONS(3873), + [anon_sym___asm] = ACTIONS(3873), + [sym_number_literal] = ACTIONS(3875), + [anon_sym_L_SQUOTE] = ACTIONS(3875), + [anon_sym_u_SQUOTE] = ACTIONS(3875), + [anon_sym_U_SQUOTE] = ACTIONS(3875), + [anon_sym_u8_SQUOTE] = ACTIONS(3875), + [anon_sym_SQUOTE] = ACTIONS(3875), + [anon_sym_L_DQUOTE] = ACTIONS(3875), + [anon_sym_u_DQUOTE] = ACTIONS(3875), + [anon_sym_U_DQUOTE] = ACTIONS(3875), + [anon_sym_u8_DQUOTE] = ACTIONS(3875), + [anon_sym_DQUOTE] = ACTIONS(3875), + [sym_true] = ACTIONS(3873), + [sym_false] = ACTIONS(3873), + [anon_sym_NULL] = ACTIONS(3873), + [anon_sym_nullptr] = ACTIONS(3873), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3873), + [anon_sym_decltype] = ACTIONS(3873), + [anon_sym_explicit] = ACTIONS(3873), + [anon_sym_export] = ACTIONS(3873), + [anon_sym_module] = ACTIONS(3873), + [anon_sym_import] = ACTIONS(3873), + [anon_sym_template] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_try] = ACTIONS(3873), + [anon_sym_delete] = ACTIONS(3873), + [anon_sym_throw] = ACTIONS(3873), + [anon_sym_namespace] = ACTIONS(3873), + [anon_sym_static_assert] = ACTIONS(3873), + [anon_sym_concept] = ACTIONS(3873), + [anon_sym_co_return] = ACTIONS(3873), + [anon_sym_co_yield] = ACTIONS(3873), + [anon_sym_R_DQUOTE] = ACTIONS(3875), + [anon_sym_LR_DQUOTE] = ACTIONS(3875), + [anon_sym_uR_DQUOTE] = ACTIONS(3875), + [anon_sym_UR_DQUOTE] = ACTIONS(3875), + [anon_sym_u8R_DQUOTE] = ACTIONS(3875), + [anon_sym_co_await] = ACTIONS(3873), + [anon_sym_new] = ACTIONS(3873), + [anon_sym_requires] = ACTIONS(3873), + [anon_sym_CARET_CARET] = ACTIONS(3875), + [anon_sym_LBRACK_COLON] = ACTIONS(3875), + [sym_this] = ACTIONS(3873), }, - [STATE(998)] = { - [ts_builtin_sym_end] = ACTIONS(3986), - [sym_identifier] = ACTIONS(3984), - [aux_sym_preproc_include_token1] = ACTIONS(3984), - [aux_sym_preproc_def_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token1] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), - [sym_preproc_directive] = ACTIONS(3984), - [anon_sym_LPAREN2] = ACTIONS(3986), - [anon_sym_BANG] = ACTIONS(3986), - [anon_sym_TILDE] = ACTIONS(3986), - [anon_sym_DASH] = ACTIONS(3984), - [anon_sym_PLUS] = ACTIONS(3984), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_SEMI] = ACTIONS(3986), - [anon_sym___extension__] = ACTIONS(3984), - [anon_sym_typedef] = ACTIONS(3984), - [anon_sym_virtual] = ACTIONS(3984), - [anon_sym_extern] = ACTIONS(3984), - [anon_sym___attribute__] = ACTIONS(3984), - [anon_sym___attribute] = ACTIONS(3984), - [anon_sym_using] = ACTIONS(3984), - [anon_sym_COLON_COLON] = ACTIONS(3986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), - [anon_sym___declspec] = ACTIONS(3984), - [anon_sym___based] = ACTIONS(3984), - [anon_sym___cdecl] = ACTIONS(3984), - [anon_sym___clrcall] = ACTIONS(3984), - [anon_sym___stdcall] = ACTIONS(3984), - [anon_sym___fastcall] = ACTIONS(3984), - [anon_sym___thiscall] = ACTIONS(3984), - [anon_sym___vectorcall] = ACTIONS(3984), - [anon_sym_LBRACE] = ACTIONS(3986), - [anon_sym_signed] = ACTIONS(3984), - [anon_sym_unsigned] = ACTIONS(3984), - [anon_sym_long] = ACTIONS(3984), - [anon_sym_short] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_register] = ACTIONS(3984), - [anon_sym_inline] = ACTIONS(3984), - [anon_sym___inline] = ACTIONS(3984), - [anon_sym___inline__] = ACTIONS(3984), - [anon_sym___forceinline] = ACTIONS(3984), - [anon_sym_thread_local] = ACTIONS(3984), - [anon_sym___thread] = ACTIONS(3984), - [anon_sym_const] = ACTIONS(3984), - [anon_sym_constexpr] = ACTIONS(3984), - [anon_sym_volatile] = ACTIONS(3984), - [anon_sym_restrict] = ACTIONS(3984), - [anon_sym___restrict__] = ACTIONS(3984), - [anon_sym__Atomic] = ACTIONS(3984), - [anon_sym__Noreturn] = ACTIONS(3984), - [anon_sym_noreturn] = ACTIONS(3984), - [anon_sym__Nonnull] = ACTIONS(3984), - [anon_sym_mutable] = ACTIONS(3984), - [anon_sym_constinit] = ACTIONS(3984), - [anon_sym_consteval] = ACTIONS(3984), - [anon_sym_alignas] = ACTIONS(3984), - [anon_sym__Alignas] = ACTIONS(3984), - [sym_primitive_type] = ACTIONS(3984), - [anon_sym_enum] = ACTIONS(3984), - [anon_sym_class] = ACTIONS(3984), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3984), - [anon_sym_if] = ACTIONS(3984), - [anon_sym_switch] = ACTIONS(3984), - [anon_sym_case] = ACTIONS(3984), - [anon_sym_default] = ACTIONS(3984), - [anon_sym_while] = ACTIONS(3984), - [anon_sym_do] = ACTIONS(3984), - [anon_sym_for] = ACTIONS(3984), - [anon_sym_return] = ACTIONS(3984), - [anon_sym_break] = ACTIONS(3984), - [anon_sym_continue] = ACTIONS(3984), - [anon_sym_goto] = ACTIONS(3984), - [anon_sym_not] = ACTIONS(3984), - [anon_sym_compl] = ACTIONS(3984), - [anon_sym_DASH_DASH] = ACTIONS(3986), - [anon_sym_PLUS_PLUS] = ACTIONS(3986), - [anon_sym_sizeof] = ACTIONS(3984), - [anon_sym___alignof__] = ACTIONS(3984), - [anon_sym___alignof] = ACTIONS(3984), - [anon_sym__alignof] = ACTIONS(3984), - [anon_sym_alignof] = ACTIONS(3984), - [anon_sym__Alignof] = ACTIONS(3984), - [anon_sym_offsetof] = ACTIONS(3984), - [anon_sym__Generic] = ACTIONS(3984), - [anon_sym_typename] = ACTIONS(3984), - [anon_sym_asm] = ACTIONS(3984), - [anon_sym___asm__] = ACTIONS(3984), - [anon_sym___asm] = ACTIONS(3984), - [sym_number_literal] = ACTIONS(3986), - [anon_sym_L_SQUOTE] = ACTIONS(3986), - [anon_sym_u_SQUOTE] = ACTIONS(3986), - [anon_sym_U_SQUOTE] = ACTIONS(3986), - [anon_sym_u8_SQUOTE] = ACTIONS(3986), - [anon_sym_SQUOTE] = ACTIONS(3986), - [anon_sym_L_DQUOTE] = ACTIONS(3986), - [anon_sym_u_DQUOTE] = ACTIONS(3986), - [anon_sym_U_DQUOTE] = ACTIONS(3986), - [anon_sym_u8_DQUOTE] = ACTIONS(3986), - [anon_sym_DQUOTE] = ACTIONS(3986), - [sym_true] = ACTIONS(3984), - [sym_false] = ACTIONS(3984), - [anon_sym_NULL] = ACTIONS(3984), - [anon_sym_nullptr] = ACTIONS(3984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3984), - [anon_sym_decltype] = ACTIONS(3984), - [anon_sym_explicit] = ACTIONS(3984), - [anon_sym_export] = ACTIONS(3984), - [anon_sym_module] = ACTIONS(3984), - [anon_sym_import] = ACTIONS(3984), - [anon_sym_template] = ACTIONS(3984), - [anon_sym_operator] = ACTIONS(3984), - [anon_sym_try] = ACTIONS(3984), - [anon_sym_delete] = ACTIONS(3984), - [anon_sym_throw] = ACTIONS(3984), - [anon_sym_namespace] = ACTIONS(3984), - [anon_sym_static_assert] = ACTIONS(3984), - [anon_sym_concept] = ACTIONS(3984), - [anon_sym_co_return] = ACTIONS(3984), - [anon_sym_co_yield] = ACTIONS(3984), - [anon_sym_R_DQUOTE] = ACTIONS(3986), - [anon_sym_LR_DQUOTE] = ACTIONS(3986), - [anon_sym_uR_DQUOTE] = ACTIONS(3986), - [anon_sym_UR_DQUOTE] = ACTIONS(3986), - [anon_sym_u8R_DQUOTE] = ACTIONS(3986), - [anon_sym_co_await] = ACTIONS(3984), - [anon_sym_new] = ACTIONS(3984), - [anon_sym_requires] = ACTIONS(3984), - [anon_sym_CARET_CARET] = ACTIONS(3986), - [anon_sym_LBRACK_COLON] = ACTIONS(3986), - [sym_this] = ACTIONS(3984), + [STATE(1004)] = { + [ts_builtin_sym_end] = ACTIONS(4393), + [sym_identifier] = ACTIONS(4391), + [aux_sym_preproc_include_token1] = ACTIONS(4391), + [aux_sym_preproc_def_token1] = ACTIONS(4391), + [aux_sym_preproc_if_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4391), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4391), + [sym_preproc_directive] = ACTIONS(4391), + [anon_sym_LPAREN2] = ACTIONS(4393), + [anon_sym_BANG] = ACTIONS(4393), + [anon_sym_TILDE] = ACTIONS(4393), + [anon_sym_DASH] = ACTIONS(4391), + [anon_sym_PLUS] = ACTIONS(4391), + [anon_sym_STAR] = ACTIONS(4393), + [anon_sym_AMP_AMP] = ACTIONS(4393), + [anon_sym_AMP] = ACTIONS(4391), + [anon_sym_SEMI] = ACTIONS(4393), + [anon_sym___extension__] = ACTIONS(4391), + [anon_sym_typedef] = ACTIONS(4391), + [anon_sym_virtual] = ACTIONS(4391), + [anon_sym_extern] = ACTIONS(4391), + [anon_sym___attribute__] = ACTIONS(4391), + [anon_sym___attribute] = ACTIONS(4391), + [anon_sym_using] = ACTIONS(4391), + [anon_sym_COLON_COLON] = ACTIONS(4393), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4393), + [anon_sym___declspec] = ACTIONS(4391), + [anon_sym___based] = ACTIONS(4391), + [anon_sym___cdecl] = ACTIONS(4391), + [anon_sym___clrcall] = ACTIONS(4391), + [anon_sym___stdcall] = ACTIONS(4391), + [anon_sym___fastcall] = ACTIONS(4391), + [anon_sym___thiscall] = ACTIONS(4391), + [anon_sym___vectorcall] = ACTIONS(4391), + [anon_sym_LBRACE] = ACTIONS(4393), + [anon_sym_signed] = ACTIONS(4391), + [anon_sym_unsigned] = ACTIONS(4391), + [anon_sym_long] = ACTIONS(4391), + [anon_sym_short] = ACTIONS(4391), + [anon_sym_LBRACK] = ACTIONS(4391), + [anon_sym_static] = ACTIONS(4391), + [anon_sym_register] = ACTIONS(4391), + [anon_sym_inline] = ACTIONS(4391), + [anon_sym___inline] = ACTIONS(4391), + [anon_sym___inline__] = ACTIONS(4391), + [anon_sym___forceinline] = ACTIONS(4391), + [anon_sym_thread_local] = ACTIONS(4391), + [anon_sym___thread] = ACTIONS(4391), + [anon_sym_const] = ACTIONS(4391), + [anon_sym_constexpr] = ACTIONS(4391), + [anon_sym_volatile] = ACTIONS(4391), + [anon_sym_restrict] = ACTIONS(4391), + [anon_sym___restrict__] = ACTIONS(4391), + [anon_sym__Atomic] = ACTIONS(4391), + [anon_sym__Noreturn] = ACTIONS(4391), + [anon_sym_noreturn] = ACTIONS(4391), + [anon_sym__Nonnull] = ACTIONS(4391), + [anon_sym_mutable] = ACTIONS(4391), + [anon_sym_constinit] = ACTIONS(4391), + [anon_sym_consteval] = ACTIONS(4391), + [anon_sym_alignas] = ACTIONS(4391), + [anon_sym__Alignas] = ACTIONS(4391), + [sym_primitive_type] = ACTIONS(4391), + [anon_sym_enum] = ACTIONS(4391), + [anon_sym_class] = ACTIONS(4391), + [anon_sym_struct] = ACTIONS(4391), + [anon_sym_union] = ACTIONS(4391), + [anon_sym_if] = ACTIONS(4391), + [anon_sym_switch] = ACTIONS(4391), + [anon_sym_case] = ACTIONS(4391), + [anon_sym_default] = ACTIONS(4391), + [anon_sym_while] = ACTIONS(4391), + [anon_sym_do] = ACTIONS(4391), + [anon_sym_for] = ACTIONS(4391), + [anon_sym_return] = ACTIONS(4391), + [anon_sym_break] = ACTIONS(4391), + [anon_sym_continue] = ACTIONS(4391), + [anon_sym_goto] = ACTIONS(4391), + [anon_sym_not] = ACTIONS(4391), + [anon_sym_compl] = ACTIONS(4391), + [anon_sym_DASH_DASH] = ACTIONS(4393), + [anon_sym_PLUS_PLUS] = ACTIONS(4393), + [anon_sym_sizeof] = ACTIONS(4391), + [anon_sym___alignof__] = ACTIONS(4391), + [anon_sym___alignof] = ACTIONS(4391), + [anon_sym__alignof] = ACTIONS(4391), + [anon_sym_alignof] = ACTIONS(4391), + [anon_sym__Alignof] = ACTIONS(4391), + [anon_sym_offsetof] = ACTIONS(4391), + [anon_sym__Generic] = ACTIONS(4391), + [anon_sym_typename] = ACTIONS(4391), + [anon_sym_asm] = ACTIONS(4391), + [anon_sym___asm__] = ACTIONS(4391), + [anon_sym___asm] = ACTIONS(4391), + [sym_number_literal] = ACTIONS(4393), + [anon_sym_L_SQUOTE] = ACTIONS(4393), + [anon_sym_u_SQUOTE] = ACTIONS(4393), + [anon_sym_U_SQUOTE] = ACTIONS(4393), + [anon_sym_u8_SQUOTE] = ACTIONS(4393), + [anon_sym_SQUOTE] = ACTIONS(4393), + [anon_sym_L_DQUOTE] = ACTIONS(4393), + [anon_sym_u_DQUOTE] = ACTIONS(4393), + [anon_sym_U_DQUOTE] = ACTIONS(4393), + [anon_sym_u8_DQUOTE] = ACTIONS(4393), + [anon_sym_DQUOTE] = ACTIONS(4393), + [sym_true] = ACTIONS(4391), + [sym_false] = ACTIONS(4391), + [anon_sym_NULL] = ACTIONS(4391), + [anon_sym_nullptr] = ACTIONS(4391), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4391), + [anon_sym_decltype] = ACTIONS(4391), + [anon_sym_explicit] = ACTIONS(4391), + [anon_sym_export] = ACTIONS(4391), + [anon_sym_module] = ACTIONS(4391), + [anon_sym_import] = ACTIONS(4391), + [anon_sym_template] = ACTIONS(4391), + [anon_sym_operator] = ACTIONS(4391), + [anon_sym_try] = ACTIONS(4391), + [anon_sym_delete] = ACTIONS(4391), + [anon_sym_throw] = ACTIONS(4391), + [anon_sym_namespace] = ACTIONS(4391), + [anon_sym_static_assert] = ACTIONS(4391), + [anon_sym_concept] = ACTIONS(4391), + [anon_sym_co_return] = ACTIONS(4391), + [anon_sym_co_yield] = ACTIONS(4391), + [anon_sym_R_DQUOTE] = ACTIONS(4393), + [anon_sym_LR_DQUOTE] = ACTIONS(4393), + [anon_sym_uR_DQUOTE] = ACTIONS(4393), + [anon_sym_UR_DQUOTE] = ACTIONS(4393), + [anon_sym_u8R_DQUOTE] = ACTIONS(4393), + [anon_sym_co_await] = ACTIONS(4391), + [anon_sym_new] = ACTIONS(4391), + [anon_sym_requires] = ACTIONS(4391), + [anon_sym_CARET_CARET] = ACTIONS(4393), + [anon_sym_LBRACK_COLON] = ACTIONS(4393), + [sym_this] = ACTIONS(4391), }, - [STATE(999)] = { - [sym_identifier] = ACTIONS(4484), - [aux_sym_preproc_include_token1] = ACTIONS(4484), - [aux_sym_preproc_def_token1] = ACTIONS(4484), - [aux_sym_preproc_if_token1] = ACTIONS(4484), - [aux_sym_preproc_if_token2] = ACTIONS(4484), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4484), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4484), - [sym_preproc_directive] = ACTIONS(4484), - [anon_sym_LPAREN2] = ACTIONS(4486), - [anon_sym_BANG] = ACTIONS(4486), - [anon_sym_TILDE] = ACTIONS(4486), - [anon_sym_DASH] = ACTIONS(4484), - [anon_sym_PLUS] = ACTIONS(4484), - [anon_sym_STAR] = ACTIONS(4486), - [anon_sym_AMP_AMP] = ACTIONS(4486), - [anon_sym_AMP] = ACTIONS(4484), - [anon_sym_SEMI] = ACTIONS(4486), - [anon_sym___extension__] = ACTIONS(4484), - [anon_sym_typedef] = ACTIONS(4484), - [anon_sym_virtual] = ACTIONS(4484), - [anon_sym_extern] = ACTIONS(4484), - [anon_sym___attribute__] = ACTIONS(4484), - [anon_sym___attribute] = ACTIONS(4484), - [anon_sym_using] = ACTIONS(4484), - [anon_sym_COLON_COLON] = ACTIONS(4486), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4486), - [anon_sym___declspec] = ACTIONS(4484), - [anon_sym___based] = ACTIONS(4484), - [anon_sym___cdecl] = ACTIONS(4484), - [anon_sym___clrcall] = ACTIONS(4484), - [anon_sym___stdcall] = ACTIONS(4484), - [anon_sym___fastcall] = ACTIONS(4484), - [anon_sym___thiscall] = ACTIONS(4484), - [anon_sym___vectorcall] = ACTIONS(4484), - [anon_sym_LBRACE] = ACTIONS(4486), - [anon_sym_signed] = ACTIONS(4484), - [anon_sym_unsigned] = ACTIONS(4484), - [anon_sym_long] = ACTIONS(4484), - [anon_sym_short] = ACTIONS(4484), - [anon_sym_LBRACK] = ACTIONS(4484), - [anon_sym_static] = ACTIONS(4484), - [anon_sym_register] = ACTIONS(4484), - [anon_sym_inline] = ACTIONS(4484), - [anon_sym___inline] = ACTIONS(4484), - [anon_sym___inline__] = ACTIONS(4484), - [anon_sym___forceinline] = ACTIONS(4484), - [anon_sym_thread_local] = ACTIONS(4484), - [anon_sym___thread] = ACTIONS(4484), - [anon_sym_const] = ACTIONS(4484), - [anon_sym_constexpr] = ACTIONS(4484), - [anon_sym_volatile] = ACTIONS(4484), - [anon_sym_restrict] = ACTIONS(4484), - [anon_sym___restrict__] = ACTIONS(4484), - [anon_sym__Atomic] = ACTIONS(4484), - [anon_sym__Noreturn] = ACTIONS(4484), - [anon_sym_noreturn] = ACTIONS(4484), - [anon_sym__Nonnull] = ACTIONS(4484), - [anon_sym_mutable] = ACTIONS(4484), - [anon_sym_constinit] = ACTIONS(4484), - [anon_sym_consteval] = ACTIONS(4484), - [anon_sym_alignas] = ACTIONS(4484), - [anon_sym__Alignas] = ACTIONS(4484), - [sym_primitive_type] = ACTIONS(4484), - [anon_sym_enum] = ACTIONS(4484), - [anon_sym_class] = ACTIONS(4484), - [anon_sym_struct] = ACTIONS(4484), - [anon_sym_union] = ACTIONS(4484), - [anon_sym_if] = ACTIONS(4484), - [anon_sym_switch] = ACTIONS(4484), - [anon_sym_case] = ACTIONS(4484), - [anon_sym_default] = ACTIONS(4484), - [anon_sym_while] = ACTIONS(4484), - [anon_sym_do] = ACTIONS(4484), - [anon_sym_for] = ACTIONS(4484), - [anon_sym_return] = ACTIONS(4484), - [anon_sym_break] = ACTIONS(4484), - [anon_sym_continue] = ACTIONS(4484), - [anon_sym_goto] = ACTIONS(4484), - [anon_sym_not] = ACTIONS(4484), - [anon_sym_compl] = ACTIONS(4484), - [anon_sym_DASH_DASH] = ACTIONS(4486), - [anon_sym_PLUS_PLUS] = ACTIONS(4486), - [anon_sym_sizeof] = ACTIONS(4484), - [anon_sym___alignof__] = ACTIONS(4484), - [anon_sym___alignof] = ACTIONS(4484), - [anon_sym__alignof] = ACTIONS(4484), - [anon_sym_alignof] = ACTIONS(4484), - [anon_sym__Alignof] = ACTIONS(4484), - [anon_sym_offsetof] = ACTIONS(4484), - [anon_sym__Generic] = ACTIONS(4484), - [anon_sym_typename] = ACTIONS(4484), - [anon_sym_asm] = ACTIONS(4484), - [anon_sym___asm__] = ACTIONS(4484), - [anon_sym___asm] = ACTIONS(4484), - [sym_number_literal] = ACTIONS(4486), - [anon_sym_L_SQUOTE] = ACTIONS(4486), - [anon_sym_u_SQUOTE] = ACTIONS(4486), - [anon_sym_U_SQUOTE] = ACTIONS(4486), - [anon_sym_u8_SQUOTE] = ACTIONS(4486), - [anon_sym_SQUOTE] = ACTIONS(4486), - [anon_sym_L_DQUOTE] = ACTIONS(4486), - [anon_sym_u_DQUOTE] = ACTIONS(4486), - [anon_sym_U_DQUOTE] = ACTIONS(4486), - [anon_sym_u8_DQUOTE] = ACTIONS(4486), - [anon_sym_DQUOTE] = ACTIONS(4486), - [sym_true] = ACTIONS(4484), - [sym_false] = ACTIONS(4484), - [anon_sym_NULL] = ACTIONS(4484), - [anon_sym_nullptr] = ACTIONS(4484), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4484), - [anon_sym_decltype] = ACTIONS(4484), - [anon_sym_explicit] = ACTIONS(4484), - [anon_sym_export] = ACTIONS(4484), - [anon_sym_module] = ACTIONS(4484), - [anon_sym_import] = ACTIONS(4484), - [anon_sym_template] = ACTIONS(4484), - [anon_sym_operator] = ACTIONS(4484), - [anon_sym_try] = ACTIONS(4484), - [anon_sym_delete] = ACTIONS(4484), - [anon_sym_throw] = ACTIONS(4484), - [anon_sym_namespace] = ACTIONS(4484), - [anon_sym_static_assert] = ACTIONS(4484), - [anon_sym_concept] = ACTIONS(4484), - [anon_sym_co_return] = ACTIONS(4484), - [anon_sym_co_yield] = ACTIONS(4484), - [anon_sym_R_DQUOTE] = ACTIONS(4486), - [anon_sym_LR_DQUOTE] = ACTIONS(4486), - [anon_sym_uR_DQUOTE] = ACTIONS(4486), - [anon_sym_UR_DQUOTE] = ACTIONS(4486), - [anon_sym_u8R_DQUOTE] = ACTIONS(4486), - [anon_sym_co_await] = ACTIONS(4484), - [anon_sym_new] = ACTIONS(4484), - [anon_sym_requires] = ACTIONS(4484), - [anon_sym_CARET_CARET] = ACTIONS(4486), - [anon_sym_LBRACK_COLON] = ACTIONS(4486), - [sym_this] = ACTIONS(4484), + [STATE(1005)] = { + [ts_builtin_sym_end] = ACTIONS(3688), + [sym_identifier] = ACTIONS(3686), + [aux_sym_preproc_include_token1] = ACTIONS(3686), + [aux_sym_preproc_def_token1] = ACTIONS(3686), + [aux_sym_preproc_if_token1] = ACTIONS(3686), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3686), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3686), + [sym_preproc_directive] = ACTIONS(3686), + [anon_sym_LPAREN2] = ACTIONS(3688), + [anon_sym_BANG] = ACTIONS(3688), + [anon_sym_TILDE] = ACTIONS(3688), + [anon_sym_DASH] = ACTIONS(3686), + [anon_sym_PLUS] = ACTIONS(3686), + [anon_sym_STAR] = ACTIONS(3688), + [anon_sym_AMP_AMP] = ACTIONS(3688), + [anon_sym_AMP] = ACTIONS(3686), + [anon_sym_SEMI] = ACTIONS(3688), + [anon_sym___extension__] = ACTIONS(3686), + [anon_sym_typedef] = ACTIONS(3686), + [anon_sym_virtual] = ACTIONS(3686), + [anon_sym_extern] = ACTIONS(3686), + [anon_sym___attribute__] = ACTIONS(3686), + [anon_sym___attribute] = ACTIONS(3686), + [anon_sym_using] = ACTIONS(3686), + [anon_sym_COLON_COLON] = ACTIONS(3688), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3688), + [anon_sym___declspec] = ACTIONS(3686), + [anon_sym___based] = ACTIONS(3686), + [anon_sym___cdecl] = ACTIONS(3686), + [anon_sym___clrcall] = ACTIONS(3686), + [anon_sym___stdcall] = ACTIONS(3686), + [anon_sym___fastcall] = ACTIONS(3686), + [anon_sym___thiscall] = ACTIONS(3686), + [anon_sym___vectorcall] = ACTIONS(3686), + [anon_sym_LBRACE] = ACTIONS(3688), + [anon_sym_signed] = ACTIONS(3686), + [anon_sym_unsigned] = ACTIONS(3686), + [anon_sym_long] = ACTIONS(3686), + [anon_sym_short] = ACTIONS(3686), + [anon_sym_LBRACK] = ACTIONS(3686), + [anon_sym_static] = ACTIONS(3686), + [anon_sym_register] = ACTIONS(3686), + [anon_sym_inline] = ACTIONS(3686), + [anon_sym___inline] = ACTIONS(3686), + [anon_sym___inline__] = ACTIONS(3686), + [anon_sym___forceinline] = ACTIONS(3686), + [anon_sym_thread_local] = ACTIONS(3686), + [anon_sym___thread] = ACTIONS(3686), + [anon_sym_const] = ACTIONS(3686), + [anon_sym_constexpr] = ACTIONS(3686), + [anon_sym_volatile] = ACTIONS(3686), + [anon_sym_restrict] = ACTIONS(3686), + [anon_sym___restrict__] = ACTIONS(3686), + [anon_sym__Atomic] = ACTIONS(3686), + [anon_sym__Noreturn] = ACTIONS(3686), + [anon_sym_noreturn] = ACTIONS(3686), + [anon_sym__Nonnull] = ACTIONS(3686), + [anon_sym_mutable] = ACTIONS(3686), + [anon_sym_constinit] = ACTIONS(3686), + [anon_sym_consteval] = ACTIONS(3686), + [anon_sym_alignas] = ACTIONS(3686), + [anon_sym__Alignas] = ACTIONS(3686), + [sym_primitive_type] = ACTIONS(3686), + [anon_sym_enum] = ACTIONS(3686), + [anon_sym_class] = ACTIONS(3686), + [anon_sym_struct] = ACTIONS(3686), + [anon_sym_union] = ACTIONS(3686), + [anon_sym_if] = ACTIONS(3686), + [anon_sym_switch] = ACTIONS(3686), + [anon_sym_case] = ACTIONS(3686), + [anon_sym_default] = ACTIONS(3686), + [anon_sym_while] = ACTIONS(3686), + [anon_sym_do] = ACTIONS(3686), + [anon_sym_for] = ACTIONS(3686), + [anon_sym_return] = ACTIONS(3686), + [anon_sym_break] = ACTIONS(3686), + [anon_sym_continue] = ACTIONS(3686), + [anon_sym_goto] = ACTIONS(3686), + [anon_sym_not] = ACTIONS(3686), + [anon_sym_compl] = ACTIONS(3686), + [anon_sym_DASH_DASH] = ACTIONS(3688), + [anon_sym_PLUS_PLUS] = ACTIONS(3688), + [anon_sym_sizeof] = ACTIONS(3686), + [anon_sym___alignof__] = ACTIONS(3686), + [anon_sym___alignof] = ACTIONS(3686), + [anon_sym__alignof] = ACTIONS(3686), + [anon_sym_alignof] = ACTIONS(3686), + [anon_sym__Alignof] = ACTIONS(3686), + [anon_sym_offsetof] = ACTIONS(3686), + [anon_sym__Generic] = ACTIONS(3686), + [anon_sym_typename] = ACTIONS(3686), + [anon_sym_asm] = ACTIONS(3686), + [anon_sym___asm__] = ACTIONS(3686), + [anon_sym___asm] = ACTIONS(3686), + [sym_number_literal] = ACTIONS(3688), + [anon_sym_L_SQUOTE] = ACTIONS(3688), + [anon_sym_u_SQUOTE] = ACTIONS(3688), + [anon_sym_U_SQUOTE] = ACTIONS(3688), + [anon_sym_u8_SQUOTE] = ACTIONS(3688), + [anon_sym_SQUOTE] = ACTIONS(3688), + [anon_sym_L_DQUOTE] = ACTIONS(3688), + [anon_sym_u_DQUOTE] = ACTIONS(3688), + [anon_sym_U_DQUOTE] = ACTIONS(3688), + [anon_sym_u8_DQUOTE] = ACTIONS(3688), + [anon_sym_DQUOTE] = ACTIONS(3688), + [sym_true] = ACTIONS(3686), + [sym_false] = ACTIONS(3686), + [anon_sym_NULL] = ACTIONS(3686), + [anon_sym_nullptr] = ACTIONS(3686), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3686), + [anon_sym_decltype] = ACTIONS(3686), + [anon_sym_explicit] = ACTIONS(3686), + [anon_sym_export] = ACTIONS(3686), + [anon_sym_module] = ACTIONS(3686), + [anon_sym_import] = ACTIONS(3686), + [anon_sym_template] = ACTIONS(3686), + [anon_sym_operator] = ACTIONS(3686), + [anon_sym_try] = ACTIONS(3686), + [anon_sym_delete] = ACTIONS(3686), + [anon_sym_throw] = ACTIONS(3686), + [anon_sym_namespace] = ACTIONS(3686), + [anon_sym_static_assert] = ACTIONS(3686), + [anon_sym_concept] = ACTIONS(3686), + [anon_sym_co_return] = ACTIONS(3686), + [anon_sym_co_yield] = ACTIONS(3686), + [anon_sym_R_DQUOTE] = ACTIONS(3688), + [anon_sym_LR_DQUOTE] = ACTIONS(3688), + [anon_sym_uR_DQUOTE] = ACTIONS(3688), + [anon_sym_UR_DQUOTE] = ACTIONS(3688), + [anon_sym_u8R_DQUOTE] = ACTIONS(3688), + [anon_sym_co_await] = ACTIONS(3686), + [anon_sym_new] = ACTIONS(3686), + [anon_sym_requires] = ACTIONS(3686), + [anon_sym_CARET_CARET] = ACTIONS(3688), + [anon_sym_LBRACK_COLON] = ACTIONS(3688), + [sym_this] = ACTIONS(3686), }, - [STATE(1000)] = { - [sym_identifier] = ACTIONS(4488), - [aux_sym_preproc_include_token1] = ACTIONS(4488), - [aux_sym_preproc_def_token1] = ACTIONS(4488), - [aux_sym_preproc_if_token1] = ACTIONS(4488), - [aux_sym_preproc_if_token2] = ACTIONS(4488), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4488), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4488), - [sym_preproc_directive] = ACTIONS(4488), - [anon_sym_LPAREN2] = ACTIONS(4490), - [anon_sym_BANG] = ACTIONS(4490), - [anon_sym_TILDE] = ACTIONS(4490), - [anon_sym_DASH] = ACTIONS(4488), - [anon_sym_PLUS] = ACTIONS(4488), - [anon_sym_STAR] = ACTIONS(4490), - [anon_sym_AMP_AMP] = ACTIONS(4490), - [anon_sym_AMP] = ACTIONS(4488), - [anon_sym_SEMI] = ACTIONS(4490), - [anon_sym___extension__] = ACTIONS(4488), - [anon_sym_typedef] = ACTIONS(4488), - [anon_sym_virtual] = ACTIONS(4488), - [anon_sym_extern] = ACTIONS(4488), - [anon_sym___attribute__] = ACTIONS(4488), - [anon_sym___attribute] = ACTIONS(4488), - [anon_sym_using] = ACTIONS(4488), - [anon_sym_COLON_COLON] = ACTIONS(4490), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4490), - [anon_sym___declspec] = ACTIONS(4488), - [anon_sym___based] = ACTIONS(4488), - [anon_sym___cdecl] = ACTIONS(4488), - [anon_sym___clrcall] = ACTIONS(4488), - [anon_sym___stdcall] = ACTIONS(4488), - [anon_sym___fastcall] = ACTIONS(4488), - [anon_sym___thiscall] = ACTIONS(4488), - [anon_sym___vectorcall] = ACTIONS(4488), - [anon_sym_LBRACE] = ACTIONS(4490), - [anon_sym_signed] = ACTIONS(4488), - [anon_sym_unsigned] = ACTIONS(4488), - [anon_sym_long] = ACTIONS(4488), - [anon_sym_short] = ACTIONS(4488), - [anon_sym_LBRACK] = ACTIONS(4488), - [anon_sym_static] = ACTIONS(4488), - [anon_sym_register] = ACTIONS(4488), - [anon_sym_inline] = ACTIONS(4488), - [anon_sym___inline] = ACTIONS(4488), - [anon_sym___inline__] = ACTIONS(4488), - [anon_sym___forceinline] = ACTIONS(4488), - [anon_sym_thread_local] = ACTIONS(4488), - [anon_sym___thread] = ACTIONS(4488), - [anon_sym_const] = ACTIONS(4488), - [anon_sym_constexpr] = ACTIONS(4488), - [anon_sym_volatile] = ACTIONS(4488), - [anon_sym_restrict] = ACTIONS(4488), - [anon_sym___restrict__] = ACTIONS(4488), - [anon_sym__Atomic] = ACTIONS(4488), - [anon_sym__Noreturn] = ACTIONS(4488), - [anon_sym_noreturn] = ACTIONS(4488), - [anon_sym__Nonnull] = ACTIONS(4488), - [anon_sym_mutable] = ACTIONS(4488), - [anon_sym_constinit] = ACTIONS(4488), - [anon_sym_consteval] = ACTIONS(4488), - [anon_sym_alignas] = ACTIONS(4488), - [anon_sym__Alignas] = ACTIONS(4488), - [sym_primitive_type] = ACTIONS(4488), - [anon_sym_enum] = ACTIONS(4488), - [anon_sym_class] = ACTIONS(4488), - [anon_sym_struct] = ACTIONS(4488), - [anon_sym_union] = ACTIONS(4488), - [anon_sym_if] = ACTIONS(4488), - [anon_sym_switch] = ACTIONS(4488), - [anon_sym_case] = ACTIONS(4488), - [anon_sym_default] = ACTIONS(4488), - [anon_sym_while] = ACTIONS(4488), - [anon_sym_do] = ACTIONS(4488), - [anon_sym_for] = ACTIONS(4488), - [anon_sym_return] = ACTIONS(4488), - [anon_sym_break] = ACTIONS(4488), - [anon_sym_continue] = ACTIONS(4488), - [anon_sym_goto] = ACTIONS(4488), - [anon_sym_not] = ACTIONS(4488), - [anon_sym_compl] = ACTIONS(4488), - [anon_sym_DASH_DASH] = ACTIONS(4490), - [anon_sym_PLUS_PLUS] = ACTIONS(4490), - [anon_sym_sizeof] = ACTIONS(4488), - [anon_sym___alignof__] = ACTIONS(4488), - [anon_sym___alignof] = ACTIONS(4488), - [anon_sym__alignof] = ACTIONS(4488), - [anon_sym_alignof] = ACTIONS(4488), - [anon_sym__Alignof] = ACTIONS(4488), - [anon_sym_offsetof] = ACTIONS(4488), - [anon_sym__Generic] = ACTIONS(4488), - [anon_sym_typename] = ACTIONS(4488), - [anon_sym_asm] = ACTIONS(4488), - [anon_sym___asm__] = ACTIONS(4488), - [anon_sym___asm] = ACTIONS(4488), - [sym_number_literal] = ACTIONS(4490), - [anon_sym_L_SQUOTE] = ACTIONS(4490), - [anon_sym_u_SQUOTE] = ACTIONS(4490), - [anon_sym_U_SQUOTE] = ACTIONS(4490), - [anon_sym_u8_SQUOTE] = ACTIONS(4490), - [anon_sym_SQUOTE] = ACTIONS(4490), - [anon_sym_L_DQUOTE] = ACTIONS(4490), - [anon_sym_u_DQUOTE] = ACTIONS(4490), - [anon_sym_U_DQUOTE] = ACTIONS(4490), - [anon_sym_u8_DQUOTE] = ACTIONS(4490), - [anon_sym_DQUOTE] = ACTIONS(4490), - [sym_true] = ACTIONS(4488), - [sym_false] = ACTIONS(4488), - [anon_sym_NULL] = ACTIONS(4488), - [anon_sym_nullptr] = ACTIONS(4488), + [STATE(1006)] = { + [sym_preproc_def] = STATE(890), + [sym_preproc_function_def] = STATE(890), + [sym_preproc_call] = STATE(890), + [sym_preproc_if_in_field_declaration_list] = STATE(890), + [sym_preproc_ifdef_in_field_declaration_list] = STATE(890), + [sym_type_definition] = STATE(890), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(8105), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4683), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__field_declaration_list_item] = STATE(890), + [sym_field_declaration] = STATE(890), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2509), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(890), + [sym_operator_cast] = STATE(9179), + [sym_inline_method_definition] = STATE(890), + [sym__constructor_specifiers] = STATE(2509), + [sym_operator_cast_definition] = STATE(890), + [sym_operator_cast_declaration] = STATE(890), + [sym_constructor_or_destructor_definition] = STATE(890), + [sym_constructor_or_destructor_declaration] = STATE(890), + [sym_friend_declaration] = STATE(890), + [sym_access_specifier] = STATE(11275), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_using_declaration] = STATE(890), + [sym_alias_declaration] = STATE(890), + [sym_static_assert_declaration] = STATE(890), + [sym_consteval_block_declaration] = STATE(890), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7772), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9179), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(890), + [aux_sym__declaration_specifiers_repeat1] = STATE(2841), + [aux_sym_attributed_declarator_repeat1] = STATE(9657), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2509), + [sym_identifier] = ACTIONS(3422), + [aux_sym_preproc_def_token1] = ACTIONS(4712), + [aux_sym_preproc_if_token1] = ACTIONS(4714), + [aux_sym_preproc_if_token2] = ACTIONS(4884), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4718), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4718), + [sym_preproc_directive] = ACTIONS(4720), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(4886), + [anon_sym___extension__] = ACTIONS(4724), + [anon_sym_typedef] = ACTIONS(4726), + [anon_sym_virtual] = ACTIONS(39), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_using] = ACTIONS(4728), + [anon_sym_COLON_COLON] = ACTIONS(3456), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(3458), + [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(4730), + [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(4732), + [anon_sym_alignas] = ACTIONS(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4488), - [anon_sym_decltype] = ACTIONS(4488), - [anon_sym_explicit] = ACTIONS(4488), - [anon_sym_export] = ACTIONS(4488), - [anon_sym_module] = ACTIONS(4488), - [anon_sym_import] = ACTIONS(4488), - [anon_sym_template] = ACTIONS(4488), - [anon_sym_operator] = ACTIONS(4488), - [anon_sym_try] = ACTIONS(4488), - [anon_sym_delete] = ACTIONS(4488), - [anon_sym_throw] = ACTIONS(4488), - [anon_sym_namespace] = ACTIONS(4488), - [anon_sym_static_assert] = ACTIONS(4488), - [anon_sym_concept] = ACTIONS(4488), - [anon_sym_co_return] = ACTIONS(4488), - [anon_sym_co_yield] = ACTIONS(4488), - [anon_sym_R_DQUOTE] = ACTIONS(4490), - [anon_sym_LR_DQUOTE] = ACTIONS(4490), - [anon_sym_uR_DQUOTE] = ACTIONS(4490), - [anon_sym_UR_DQUOTE] = ACTIONS(4490), - [anon_sym_u8R_DQUOTE] = ACTIONS(4490), - [anon_sym_co_await] = ACTIONS(4488), - [anon_sym_new] = ACTIONS(4488), - [anon_sym_requires] = ACTIONS(4488), - [anon_sym_CARET_CARET] = ACTIONS(4490), - [anon_sym_LBRACK_COLON] = ACTIONS(4490), - [sym_this] = ACTIONS(4488), - }, - [STATE(1001)] = { - [sym_identifier] = ACTIONS(4492), - [aux_sym_preproc_include_token1] = ACTIONS(4492), - [aux_sym_preproc_def_token1] = ACTIONS(4492), - [aux_sym_preproc_if_token1] = ACTIONS(4492), - [aux_sym_preproc_if_token2] = ACTIONS(4492), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4492), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4492), - [sym_preproc_directive] = ACTIONS(4492), - [anon_sym_LPAREN2] = ACTIONS(4494), - [anon_sym_BANG] = ACTIONS(4494), - [anon_sym_TILDE] = ACTIONS(4494), - [anon_sym_DASH] = ACTIONS(4492), - [anon_sym_PLUS] = ACTIONS(4492), - [anon_sym_STAR] = ACTIONS(4494), - [anon_sym_AMP_AMP] = ACTIONS(4494), - [anon_sym_AMP] = ACTIONS(4492), - [anon_sym_SEMI] = ACTIONS(4494), - [anon_sym___extension__] = ACTIONS(4492), - [anon_sym_typedef] = ACTIONS(4492), - [anon_sym_virtual] = ACTIONS(4492), - [anon_sym_extern] = ACTIONS(4492), - [anon_sym___attribute__] = ACTIONS(4492), - [anon_sym___attribute] = ACTIONS(4492), - [anon_sym_using] = ACTIONS(4492), - [anon_sym_COLON_COLON] = ACTIONS(4494), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4494), - [anon_sym___declspec] = ACTIONS(4492), - [anon_sym___based] = ACTIONS(4492), - [anon_sym___cdecl] = ACTIONS(4492), - [anon_sym___clrcall] = ACTIONS(4492), - [anon_sym___stdcall] = ACTIONS(4492), - [anon_sym___fastcall] = ACTIONS(4492), - [anon_sym___thiscall] = ACTIONS(4492), - [anon_sym___vectorcall] = ACTIONS(4492), - [anon_sym_LBRACE] = ACTIONS(4494), - [anon_sym_signed] = ACTIONS(4492), - [anon_sym_unsigned] = ACTIONS(4492), - [anon_sym_long] = ACTIONS(4492), - [anon_sym_short] = ACTIONS(4492), - [anon_sym_LBRACK] = ACTIONS(4492), - [anon_sym_static] = ACTIONS(4492), - [anon_sym_register] = ACTIONS(4492), - [anon_sym_inline] = ACTIONS(4492), - [anon_sym___inline] = ACTIONS(4492), - [anon_sym___inline__] = ACTIONS(4492), - [anon_sym___forceinline] = ACTIONS(4492), - [anon_sym_thread_local] = ACTIONS(4492), - [anon_sym___thread] = ACTIONS(4492), - [anon_sym_const] = ACTIONS(4492), - [anon_sym_constexpr] = ACTIONS(4492), - [anon_sym_volatile] = ACTIONS(4492), - [anon_sym_restrict] = ACTIONS(4492), - [anon_sym___restrict__] = ACTIONS(4492), - [anon_sym__Atomic] = ACTIONS(4492), - [anon_sym__Noreturn] = ACTIONS(4492), - [anon_sym_noreturn] = ACTIONS(4492), - [anon_sym__Nonnull] = ACTIONS(4492), - [anon_sym_mutable] = ACTIONS(4492), - [anon_sym_constinit] = ACTIONS(4492), - [anon_sym_consteval] = ACTIONS(4492), - [anon_sym_alignas] = ACTIONS(4492), - [anon_sym__Alignas] = ACTIONS(4492), - [sym_primitive_type] = ACTIONS(4492), - [anon_sym_enum] = ACTIONS(4492), - [anon_sym_class] = ACTIONS(4492), - [anon_sym_struct] = ACTIONS(4492), - [anon_sym_union] = ACTIONS(4492), - [anon_sym_if] = ACTIONS(4492), - [anon_sym_switch] = ACTIONS(4492), - [anon_sym_case] = ACTIONS(4492), - [anon_sym_default] = ACTIONS(4492), - [anon_sym_while] = ACTIONS(4492), - [anon_sym_do] = ACTIONS(4492), - [anon_sym_for] = ACTIONS(4492), - [anon_sym_return] = ACTIONS(4492), - [anon_sym_break] = ACTIONS(4492), - [anon_sym_continue] = ACTIONS(4492), - [anon_sym_goto] = ACTIONS(4492), - [anon_sym_not] = ACTIONS(4492), - [anon_sym_compl] = ACTIONS(4492), - [anon_sym_DASH_DASH] = ACTIONS(4494), - [anon_sym_PLUS_PLUS] = ACTIONS(4494), - [anon_sym_sizeof] = ACTIONS(4492), - [anon_sym___alignof__] = ACTIONS(4492), - [anon_sym___alignof] = ACTIONS(4492), - [anon_sym__alignof] = ACTIONS(4492), - [anon_sym_alignof] = ACTIONS(4492), - [anon_sym__Alignof] = ACTIONS(4492), - [anon_sym_offsetof] = ACTIONS(4492), - [anon_sym__Generic] = ACTIONS(4492), - [anon_sym_typename] = ACTIONS(4492), - [anon_sym_asm] = ACTIONS(4492), - [anon_sym___asm__] = ACTIONS(4492), - [anon_sym___asm] = ACTIONS(4492), - [sym_number_literal] = ACTIONS(4494), - [anon_sym_L_SQUOTE] = ACTIONS(4494), - [anon_sym_u_SQUOTE] = ACTIONS(4494), - [anon_sym_U_SQUOTE] = ACTIONS(4494), - [anon_sym_u8_SQUOTE] = ACTIONS(4494), - [anon_sym_SQUOTE] = ACTIONS(4494), - [anon_sym_L_DQUOTE] = ACTIONS(4494), - [anon_sym_u_DQUOTE] = ACTIONS(4494), - [anon_sym_U_DQUOTE] = ACTIONS(4494), - [anon_sym_u8_DQUOTE] = ACTIONS(4494), - [anon_sym_DQUOTE] = ACTIONS(4494), - [sym_true] = ACTIONS(4492), - [sym_false] = ACTIONS(4492), - [anon_sym_NULL] = ACTIONS(4492), - [anon_sym_nullptr] = ACTIONS(4492), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4492), - [anon_sym_decltype] = ACTIONS(4492), - [anon_sym_explicit] = ACTIONS(4492), - [anon_sym_export] = ACTIONS(4492), - [anon_sym_module] = ACTIONS(4492), - [anon_sym_import] = ACTIONS(4492), - [anon_sym_template] = ACTIONS(4492), - [anon_sym_operator] = ACTIONS(4492), - [anon_sym_try] = ACTIONS(4492), - [anon_sym_delete] = ACTIONS(4492), - [anon_sym_throw] = ACTIONS(4492), - [anon_sym_namespace] = ACTIONS(4492), - [anon_sym_static_assert] = ACTIONS(4492), - [anon_sym_concept] = ACTIONS(4492), - [anon_sym_co_return] = ACTIONS(4492), - [anon_sym_co_yield] = ACTIONS(4492), - [anon_sym_R_DQUOTE] = ACTIONS(4494), - [anon_sym_LR_DQUOTE] = ACTIONS(4494), - [anon_sym_uR_DQUOTE] = ACTIONS(4494), - [anon_sym_UR_DQUOTE] = ACTIONS(4494), - [anon_sym_u8R_DQUOTE] = ACTIONS(4494), - [anon_sym_co_await] = ACTIONS(4492), - [anon_sym_new] = ACTIONS(4492), - [anon_sym_requires] = ACTIONS(4492), - [anon_sym_CARET_CARET] = ACTIONS(4494), - [anon_sym_LBRACK_COLON] = ACTIONS(4494), - [sym_this] = ACTIONS(4492), - }, - [STATE(1002)] = { - [ts_builtin_sym_end] = ACTIONS(4078), - [sym_identifier] = ACTIONS(4076), - [aux_sym_preproc_include_token1] = ACTIONS(4076), - [aux_sym_preproc_def_token1] = ACTIONS(4076), - [aux_sym_preproc_if_token1] = ACTIONS(4076), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4076), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4076), - [sym_preproc_directive] = ACTIONS(4076), - [anon_sym_LPAREN2] = ACTIONS(4078), - [anon_sym_BANG] = ACTIONS(4078), - [anon_sym_TILDE] = ACTIONS(4078), - [anon_sym_DASH] = ACTIONS(4076), - [anon_sym_PLUS] = ACTIONS(4076), - [anon_sym_STAR] = ACTIONS(4078), - [anon_sym_AMP_AMP] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4076), - [anon_sym_SEMI] = ACTIONS(4078), - [anon_sym___extension__] = ACTIONS(4076), - [anon_sym_typedef] = ACTIONS(4076), - [anon_sym_virtual] = ACTIONS(4076), - [anon_sym_extern] = ACTIONS(4076), - [anon_sym___attribute__] = ACTIONS(4076), - [anon_sym___attribute] = ACTIONS(4076), - [anon_sym_using] = ACTIONS(4076), - [anon_sym_COLON_COLON] = ACTIONS(4078), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4078), - [anon_sym___declspec] = ACTIONS(4076), - [anon_sym___based] = ACTIONS(4076), - [anon_sym___cdecl] = ACTIONS(4076), - [anon_sym___clrcall] = ACTIONS(4076), - [anon_sym___stdcall] = ACTIONS(4076), - [anon_sym___fastcall] = ACTIONS(4076), - [anon_sym___thiscall] = ACTIONS(4076), - [anon_sym___vectorcall] = ACTIONS(4076), - [anon_sym_LBRACE] = ACTIONS(4078), - [anon_sym_signed] = ACTIONS(4076), - [anon_sym_unsigned] = ACTIONS(4076), - [anon_sym_long] = ACTIONS(4076), - [anon_sym_short] = ACTIONS(4076), - [anon_sym_LBRACK] = ACTIONS(4076), - [anon_sym_static] = ACTIONS(4076), - [anon_sym_register] = ACTIONS(4076), - [anon_sym_inline] = ACTIONS(4076), - [anon_sym___inline] = ACTIONS(4076), - [anon_sym___inline__] = ACTIONS(4076), - [anon_sym___forceinline] = ACTIONS(4076), - [anon_sym_thread_local] = ACTIONS(4076), - [anon_sym___thread] = ACTIONS(4076), - [anon_sym_const] = ACTIONS(4076), - [anon_sym_constexpr] = ACTIONS(4076), - [anon_sym_volatile] = ACTIONS(4076), - [anon_sym_restrict] = ACTIONS(4076), - [anon_sym___restrict__] = ACTIONS(4076), - [anon_sym__Atomic] = ACTIONS(4076), - [anon_sym__Noreturn] = ACTIONS(4076), - [anon_sym_noreturn] = ACTIONS(4076), - [anon_sym__Nonnull] = ACTIONS(4076), - [anon_sym_mutable] = ACTIONS(4076), - [anon_sym_constinit] = ACTIONS(4076), - [anon_sym_consteval] = ACTIONS(4076), - [anon_sym_alignas] = ACTIONS(4076), - [anon_sym__Alignas] = ACTIONS(4076), - [sym_primitive_type] = ACTIONS(4076), - [anon_sym_enum] = ACTIONS(4076), - [anon_sym_class] = ACTIONS(4076), - [anon_sym_struct] = ACTIONS(4076), - [anon_sym_union] = ACTIONS(4076), - [anon_sym_if] = ACTIONS(4076), - [anon_sym_switch] = ACTIONS(4076), - [anon_sym_case] = ACTIONS(4076), - [anon_sym_default] = ACTIONS(4076), - [anon_sym_while] = ACTIONS(4076), - [anon_sym_do] = ACTIONS(4076), - [anon_sym_for] = ACTIONS(4076), - [anon_sym_return] = ACTIONS(4076), - [anon_sym_break] = ACTIONS(4076), - [anon_sym_continue] = ACTIONS(4076), - [anon_sym_goto] = ACTIONS(4076), - [anon_sym_not] = ACTIONS(4076), - [anon_sym_compl] = ACTIONS(4076), - [anon_sym_DASH_DASH] = ACTIONS(4078), - [anon_sym_PLUS_PLUS] = ACTIONS(4078), - [anon_sym_sizeof] = ACTIONS(4076), - [anon_sym___alignof__] = ACTIONS(4076), - [anon_sym___alignof] = ACTIONS(4076), - [anon_sym__alignof] = ACTIONS(4076), - [anon_sym_alignof] = ACTIONS(4076), - [anon_sym__Alignof] = ACTIONS(4076), - [anon_sym_offsetof] = ACTIONS(4076), - [anon_sym__Generic] = ACTIONS(4076), - [anon_sym_typename] = ACTIONS(4076), - [anon_sym_asm] = ACTIONS(4076), - [anon_sym___asm__] = ACTIONS(4076), - [anon_sym___asm] = ACTIONS(4076), - [sym_number_literal] = ACTIONS(4078), - [anon_sym_L_SQUOTE] = ACTIONS(4078), - [anon_sym_u_SQUOTE] = ACTIONS(4078), - [anon_sym_U_SQUOTE] = ACTIONS(4078), - [anon_sym_u8_SQUOTE] = ACTIONS(4078), - [anon_sym_SQUOTE] = ACTIONS(4078), - [anon_sym_L_DQUOTE] = ACTIONS(4078), - [anon_sym_u_DQUOTE] = ACTIONS(4078), - [anon_sym_U_DQUOTE] = ACTIONS(4078), - [anon_sym_u8_DQUOTE] = ACTIONS(4078), - [anon_sym_DQUOTE] = ACTIONS(4078), - [sym_true] = ACTIONS(4076), - [sym_false] = ACTIONS(4076), - [anon_sym_NULL] = ACTIONS(4076), - [anon_sym_nullptr] = ACTIONS(4076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4076), - [anon_sym_decltype] = ACTIONS(4076), - [anon_sym_explicit] = ACTIONS(4076), - [anon_sym_export] = ACTIONS(4076), - [anon_sym_module] = ACTIONS(4076), - [anon_sym_import] = ACTIONS(4076), - [anon_sym_template] = ACTIONS(4076), - [anon_sym_operator] = ACTIONS(4076), - [anon_sym_try] = ACTIONS(4076), - [anon_sym_delete] = ACTIONS(4076), - [anon_sym_throw] = ACTIONS(4076), - [anon_sym_namespace] = ACTIONS(4076), - [anon_sym_static_assert] = ACTIONS(4076), - [anon_sym_concept] = ACTIONS(4076), - [anon_sym_co_return] = ACTIONS(4076), - [anon_sym_co_yield] = ACTIONS(4076), - [anon_sym_R_DQUOTE] = ACTIONS(4078), - [anon_sym_LR_DQUOTE] = ACTIONS(4078), - [anon_sym_uR_DQUOTE] = ACTIONS(4078), - [anon_sym_UR_DQUOTE] = ACTIONS(4078), - [anon_sym_u8R_DQUOTE] = ACTIONS(4078), - [anon_sym_co_await] = ACTIONS(4076), - [anon_sym_new] = ACTIONS(4076), - [anon_sym_requires] = ACTIONS(4076), - [anon_sym_CARET_CARET] = ACTIONS(4078), - [anon_sym_LBRACK_COLON] = ACTIONS(4078), - [sym_this] = ACTIONS(4076), - }, - [STATE(1003)] = { - [ts_builtin_sym_end] = ACTIONS(3686), - [sym_identifier] = ACTIONS(3684), - [aux_sym_preproc_include_token1] = ACTIONS(3684), - [aux_sym_preproc_def_token1] = ACTIONS(3684), - [aux_sym_preproc_if_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3684), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3684), - [sym_preproc_directive] = ACTIONS(3684), - [anon_sym_LPAREN2] = ACTIONS(3686), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_TILDE] = ACTIONS(3686), - [anon_sym_DASH] = ACTIONS(3684), - [anon_sym_PLUS] = ACTIONS(3684), - [anon_sym_STAR] = ACTIONS(3686), - [anon_sym_AMP_AMP] = ACTIONS(3686), - [anon_sym_AMP] = ACTIONS(3684), - [anon_sym_SEMI] = ACTIONS(3686), - [anon_sym___extension__] = ACTIONS(3684), - [anon_sym_typedef] = ACTIONS(3684), - [anon_sym_virtual] = ACTIONS(3684), - [anon_sym_extern] = ACTIONS(3684), - [anon_sym___attribute__] = ACTIONS(3684), - [anon_sym___attribute] = ACTIONS(3684), - [anon_sym_using] = ACTIONS(3684), - [anon_sym_COLON_COLON] = ACTIONS(3686), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3686), - [anon_sym___declspec] = ACTIONS(3684), - [anon_sym___based] = ACTIONS(3684), - [anon_sym___cdecl] = ACTIONS(3684), - [anon_sym___clrcall] = ACTIONS(3684), - [anon_sym___stdcall] = ACTIONS(3684), - [anon_sym___fastcall] = ACTIONS(3684), - [anon_sym___thiscall] = ACTIONS(3684), - [anon_sym___vectorcall] = ACTIONS(3684), - [anon_sym_LBRACE] = ACTIONS(3686), - [anon_sym_signed] = ACTIONS(3684), - [anon_sym_unsigned] = ACTIONS(3684), - [anon_sym_long] = ACTIONS(3684), - [anon_sym_short] = ACTIONS(3684), - [anon_sym_LBRACK] = ACTIONS(3684), - [anon_sym_static] = ACTIONS(3684), - [anon_sym_register] = ACTIONS(3684), - [anon_sym_inline] = ACTIONS(3684), - [anon_sym___inline] = ACTIONS(3684), - [anon_sym___inline__] = ACTIONS(3684), - [anon_sym___forceinline] = ACTIONS(3684), - [anon_sym_thread_local] = ACTIONS(3684), - [anon_sym___thread] = ACTIONS(3684), - [anon_sym_const] = ACTIONS(3684), - [anon_sym_constexpr] = ACTIONS(3684), - [anon_sym_volatile] = ACTIONS(3684), - [anon_sym_restrict] = ACTIONS(3684), - [anon_sym___restrict__] = ACTIONS(3684), - [anon_sym__Atomic] = ACTIONS(3684), - [anon_sym__Noreturn] = ACTIONS(3684), - [anon_sym_noreturn] = ACTIONS(3684), - [anon_sym__Nonnull] = ACTIONS(3684), - [anon_sym_mutable] = ACTIONS(3684), - [anon_sym_constinit] = ACTIONS(3684), - [anon_sym_consteval] = ACTIONS(3684), - [anon_sym_alignas] = ACTIONS(3684), - [anon_sym__Alignas] = ACTIONS(3684), - [sym_primitive_type] = ACTIONS(3684), - [anon_sym_enum] = ACTIONS(3684), - [anon_sym_class] = ACTIONS(3684), - [anon_sym_struct] = ACTIONS(3684), - [anon_sym_union] = ACTIONS(3684), - [anon_sym_if] = ACTIONS(3684), - [anon_sym_switch] = ACTIONS(3684), - [anon_sym_case] = ACTIONS(3684), - [anon_sym_default] = ACTIONS(3684), - [anon_sym_while] = ACTIONS(3684), - [anon_sym_do] = ACTIONS(3684), - [anon_sym_for] = ACTIONS(3684), - [anon_sym_return] = ACTIONS(3684), - [anon_sym_break] = ACTIONS(3684), - [anon_sym_continue] = ACTIONS(3684), - [anon_sym_goto] = ACTIONS(3684), - [anon_sym_not] = ACTIONS(3684), - [anon_sym_compl] = ACTIONS(3684), - [anon_sym_DASH_DASH] = ACTIONS(3686), - [anon_sym_PLUS_PLUS] = ACTIONS(3686), - [anon_sym_sizeof] = ACTIONS(3684), - [anon_sym___alignof__] = ACTIONS(3684), - [anon_sym___alignof] = ACTIONS(3684), - [anon_sym__alignof] = ACTIONS(3684), - [anon_sym_alignof] = ACTIONS(3684), - [anon_sym__Alignof] = ACTIONS(3684), - [anon_sym_offsetof] = ACTIONS(3684), - [anon_sym__Generic] = ACTIONS(3684), - [anon_sym_typename] = ACTIONS(3684), - [anon_sym_asm] = ACTIONS(3684), - [anon_sym___asm__] = ACTIONS(3684), - [anon_sym___asm] = ACTIONS(3684), - [sym_number_literal] = ACTIONS(3686), - [anon_sym_L_SQUOTE] = ACTIONS(3686), - [anon_sym_u_SQUOTE] = ACTIONS(3686), - [anon_sym_U_SQUOTE] = ACTIONS(3686), - [anon_sym_u8_SQUOTE] = ACTIONS(3686), - [anon_sym_SQUOTE] = ACTIONS(3686), - [anon_sym_L_DQUOTE] = ACTIONS(3686), - [anon_sym_u_DQUOTE] = ACTIONS(3686), - [anon_sym_U_DQUOTE] = ACTIONS(3686), - [anon_sym_u8_DQUOTE] = ACTIONS(3686), - [anon_sym_DQUOTE] = ACTIONS(3686), - [sym_true] = ACTIONS(3684), - [sym_false] = ACTIONS(3684), - [anon_sym_NULL] = ACTIONS(3684), - [anon_sym_nullptr] = ACTIONS(3684), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3684), - [anon_sym_decltype] = ACTIONS(3684), - [anon_sym_explicit] = ACTIONS(3684), - [anon_sym_export] = ACTIONS(3684), - [anon_sym_module] = ACTIONS(3684), - [anon_sym_import] = ACTIONS(3684), - [anon_sym_template] = ACTIONS(3684), - [anon_sym_operator] = ACTIONS(3684), - [anon_sym_try] = ACTIONS(3684), - [anon_sym_delete] = ACTIONS(3684), - [anon_sym_throw] = ACTIONS(3684), - [anon_sym_namespace] = ACTIONS(3684), - [anon_sym_static_assert] = ACTIONS(3684), - [anon_sym_concept] = ACTIONS(3684), - [anon_sym_co_return] = ACTIONS(3684), - [anon_sym_co_yield] = ACTIONS(3684), - [anon_sym_R_DQUOTE] = ACTIONS(3686), - [anon_sym_LR_DQUOTE] = ACTIONS(3686), - [anon_sym_uR_DQUOTE] = ACTIONS(3686), - [anon_sym_UR_DQUOTE] = ACTIONS(3686), - [anon_sym_u8R_DQUOTE] = ACTIONS(3686), - [anon_sym_co_await] = ACTIONS(3684), - [anon_sym_new] = ACTIONS(3684), - [anon_sym_requires] = ACTIONS(3684), - [anon_sym_CARET_CARET] = ACTIONS(3686), - [anon_sym_LBRACK_COLON] = ACTIONS(3686), - [sym_this] = ACTIONS(3684), - }, - [STATE(1004)] = { - [ts_builtin_sym_end] = ACTIONS(3990), - [sym_identifier] = ACTIONS(3988), - [aux_sym_preproc_include_token1] = ACTIONS(3988), - [aux_sym_preproc_def_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token1] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), - [sym_preproc_directive] = ACTIONS(3988), - [anon_sym_LPAREN2] = ACTIONS(3990), - [anon_sym_BANG] = ACTIONS(3990), - [anon_sym_TILDE] = ACTIONS(3990), - [anon_sym_DASH] = ACTIONS(3988), - [anon_sym_PLUS] = ACTIONS(3988), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3988), - [anon_sym_SEMI] = ACTIONS(3990), - [anon_sym___extension__] = ACTIONS(3988), - [anon_sym_typedef] = ACTIONS(3988), - [anon_sym_virtual] = ACTIONS(3988), - [anon_sym_extern] = ACTIONS(3988), - [anon_sym___attribute__] = ACTIONS(3988), - [anon_sym___attribute] = ACTIONS(3988), - [anon_sym_using] = ACTIONS(3988), - [anon_sym_COLON_COLON] = ACTIONS(3990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), - [anon_sym___declspec] = ACTIONS(3988), - [anon_sym___based] = ACTIONS(3988), - [anon_sym___cdecl] = ACTIONS(3988), - [anon_sym___clrcall] = ACTIONS(3988), - [anon_sym___stdcall] = ACTIONS(3988), - [anon_sym___fastcall] = ACTIONS(3988), - [anon_sym___thiscall] = ACTIONS(3988), - [anon_sym___vectorcall] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [anon_sym_signed] = ACTIONS(3988), - [anon_sym_unsigned] = ACTIONS(3988), - [anon_sym_long] = ACTIONS(3988), - [anon_sym_short] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_static] = ACTIONS(3988), - [anon_sym_register] = ACTIONS(3988), - [anon_sym_inline] = ACTIONS(3988), - [anon_sym___inline] = ACTIONS(3988), - [anon_sym___inline__] = ACTIONS(3988), - [anon_sym___forceinline] = ACTIONS(3988), - [anon_sym_thread_local] = ACTIONS(3988), - [anon_sym___thread] = ACTIONS(3988), - [anon_sym_const] = ACTIONS(3988), - [anon_sym_constexpr] = ACTIONS(3988), - [anon_sym_volatile] = ACTIONS(3988), - [anon_sym_restrict] = ACTIONS(3988), - [anon_sym___restrict__] = ACTIONS(3988), - [anon_sym__Atomic] = ACTIONS(3988), - [anon_sym__Noreturn] = ACTIONS(3988), - [anon_sym_noreturn] = ACTIONS(3988), - [anon_sym__Nonnull] = ACTIONS(3988), - [anon_sym_mutable] = ACTIONS(3988), - [anon_sym_constinit] = ACTIONS(3988), - [anon_sym_consteval] = ACTIONS(3988), - [anon_sym_alignas] = ACTIONS(3988), - [anon_sym__Alignas] = ACTIONS(3988), - [sym_primitive_type] = ACTIONS(3988), - [anon_sym_enum] = ACTIONS(3988), - [anon_sym_class] = ACTIONS(3988), - [anon_sym_struct] = ACTIONS(3988), - [anon_sym_union] = ACTIONS(3988), - [anon_sym_if] = ACTIONS(3988), - [anon_sym_switch] = ACTIONS(3988), - [anon_sym_case] = ACTIONS(3988), - [anon_sym_default] = ACTIONS(3988), - [anon_sym_while] = ACTIONS(3988), - [anon_sym_do] = ACTIONS(3988), - [anon_sym_for] = ACTIONS(3988), - [anon_sym_return] = ACTIONS(3988), - [anon_sym_break] = ACTIONS(3988), - [anon_sym_continue] = ACTIONS(3988), - [anon_sym_goto] = ACTIONS(3988), - [anon_sym_not] = ACTIONS(3988), - [anon_sym_compl] = ACTIONS(3988), - [anon_sym_DASH_DASH] = ACTIONS(3990), - [anon_sym_PLUS_PLUS] = ACTIONS(3990), - [anon_sym_sizeof] = ACTIONS(3988), - [anon_sym___alignof__] = ACTIONS(3988), - [anon_sym___alignof] = ACTIONS(3988), - [anon_sym__alignof] = ACTIONS(3988), - [anon_sym_alignof] = ACTIONS(3988), - [anon_sym__Alignof] = ACTIONS(3988), - [anon_sym_offsetof] = ACTIONS(3988), - [anon_sym__Generic] = ACTIONS(3988), - [anon_sym_typename] = ACTIONS(3988), - [anon_sym_asm] = ACTIONS(3988), - [anon_sym___asm__] = ACTIONS(3988), - [anon_sym___asm] = ACTIONS(3988), - [sym_number_literal] = ACTIONS(3990), - [anon_sym_L_SQUOTE] = ACTIONS(3990), - [anon_sym_u_SQUOTE] = ACTIONS(3990), - [anon_sym_U_SQUOTE] = ACTIONS(3990), - [anon_sym_u8_SQUOTE] = ACTIONS(3990), - [anon_sym_SQUOTE] = ACTIONS(3990), - [anon_sym_L_DQUOTE] = ACTIONS(3990), - [anon_sym_u_DQUOTE] = ACTIONS(3990), - [anon_sym_U_DQUOTE] = ACTIONS(3990), - [anon_sym_u8_DQUOTE] = ACTIONS(3990), - [anon_sym_DQUOTE] = ACTIONS(3990), - [sym_true] = ACTIONS(3988), - [sym_false] = ACTIONS(3988), - [anon_sym_NULL] = ACTIONS(3988), - [anon_sym_nullptr] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3988), - [anon_sym_decltype] = ACTIONS(3988), - [anon_sym_explicit] = ACTIONS(3988), - [anon_sym_export] = ACTIONS(3988), - [anon_sym_module] = ACTIONS(3988), - [anon_sym_import] = ACTIONS(3988), - [anon_sym_template] = ACTIONS(3988), - [anon_sym_operator] = ACTIONS(3988), - [anon_sym_try] = ACTIONS(3988), - [anon_sym_delete] = ACTIONS(3988), - [anon_sym_throw] = ACTIONS(3988), - [anon_sym_namespace] = ACTIONS(3988), - [anon_sym_static_assert] = ACTIONS(3988), - [anon_sym_concept] = ACTIONS(3988), - [anon_sym_co_return] = ACTIONS(3988), - [anon_sym_co_yield] = ACTIONS(3988), - [anon_sym_R_DQUOTE] = ACTIONS(3990), - [anon_sym_LR_DQUOTE] = ACTIONS(3990), - [anon_sym_uR_DQUOTE] = ACTIONS(3990), - [anon_sym_UR_DQUOTE] = ACTIONS(3990), - [anon_sym_u8R_DQUOTE] = ACTIONS(3990), - [anon_sym_co_await] = ACTIONS(3988), - [anon_sym_new] = ACTIONS(3988), - [anon_sym_requires] = ACTIONS(3988), - [anon_sym_CARET_CARET] = ACTIONS(3990), - [anon_sym_LBRACK_COLON] = ACTIONS(3990), - [sym_this] = ACTIONS(3988), - }, - [STATE(1005)] = { - [ts_builtin_sym_end] = ACTIONS(3994), - [sym_identifier] = ACTIONS(3992), - [aux_sym_preproc_include_token1] = ACTIONS(3992), - [aux_sym_preproc_def_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token1] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), - [sym_preproc_directive] = ACTIONS(3992), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_BANG] = ACTIONS(3994), - [anon_sym_TILDE] = ACTIONS(3994), - [anon_sym_DASH] = ACTIONS(3992), - [anon_sym_PLUS] = ACTIONS(3992), - [anon_sym_STAR] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3992), - [anon_sym_SEMI] = ACTIONS(3994), - [anon_sym___extension__] = ACTIONS(3992), - [anon_sym_typedef] = ACTIONS(3992), - [anon_sym_virtual] = ACTIONS(3992), - [anon_sym_extern] = ACTIONS(3992), - [anon_sym___attribute__] = ACTIONS(3992), - [anon_sym___attribute] = ACTIONS(3992), - [anon_sym_using] = ACTIONS(3992), - [anon_sym_COLON_COLON] = ACTIONS(3994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), - [anon_sym___declspec] = ACTIONS(3992), - [anon_sym___based] = ACTIONS(3992), - [anon_sym___cdecl] = ACTIONS(3992), - [anon_sym___clrcall] = ACTIONS(3992), - [anon_sym___stdcall] = ACTIONS(3992), - [anon_sym___fastcall] = ACTIONS(3992), - [anon_sym___thiscall] = ACTIONS(3992), - [anon_sym___vectorcall] = ACTIONS(3992), - [anon_sym_LBRACE] = ACTIONS(3994), - [anon_sym_signed] = ACTIONS(3992), - [anon_sym_unsigned] = ACTIONS(3992), - [anon_sym_long] = ACTIONS(3992), - [anon_sym_short] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_register] = ACTIONS(3992), - [anon_sym_inline] = ACTIONS(3992), - [anon_sym___inline] = ACTIONS(3992), - [anon_sym___inline__] = ACTIONS(3992), - [anon_sym___forceinline] = ACTIONS(3992), - [anon_sym_thread_local] = ACTIONS(3992), - [anon_sym___thread] = ACTIONS(3992), - [anon_sym_const] = ACTIONS(3992), - [anon_sym_constexpr] = ACTIONS(3992), - [anon_sym_volatile] = ACTIONS(3992), - [anon_sym_restrict] = ACTIONS(3992), - [anon_sym___restrict__] = ACTIONS(3992), - [anon_sym__Atomic] = ACTIONS(3992), - [anon_sym__Noreturn] = ACTIONS(3992), - [anon_sym_noreturn] = ACTIONS(3992), - [anon_sym__Nonnull] = ACTIONS(3992), - [anon_sym_mutable] = ACTIONS(3992), - [anon_sym_constinit] = ACTIONS(3992), - [anon_sym_consteval] = ACTIONS(3992), - [anon_sym_alignas] = ACTIONS(3992), - [anon_sym__Alignas] = ACTIONS(3992), - [sym_primitive_type] = ACTIONS(3992), - [anon_sym_enum] = ACTIONS(3992), - [anon_sym_class] = ACTIONS(3992), - [anon_sym_struct] = ACTIONS(3992), - [anon_sym_union] = ACTIONS(3992), - [anon_sym_if] = ACTIONS(3992), - [anon_sym_switch] = ACTIONS(3992), - [anon_sym_case] = ACTIONS(3992), - [anon_sym_default] = ACTIONS(3992), - [anon_sym_while] = ACTIONS(3992), - [anon_sym_do] = ACTIONS(3992), - [anon_sym_for] = ACTIONS(3992), - [anon_sym_return] = ACTIONS(3992), - [anon_sym_break] = ACTIONS(3992), - [anon_sym_continue] = ACTIONS(3992), - [anon_sym_goto] = ACTIONS(3992), - [anon_sym_not] = ACTIONS(3992), - [anon_sym_compl] = ACTIONS(3992), - [anon_sym_DASH_DASH] = ACTIONS(3994), - [anon_sym_PLUS_PLUS] = ACTIONS(3994), - [anon_sym_sizeof] = ACTIONS(3992), - [anon_sym___alignof__] = ACTIONS(3992), - [anon_sym___alignof] = ACTIONS(3992), - [anon_sym__alignof] = ACTIONS(3992), - [anon_sym_alignof] = ACTIONS(3992), - [anon_sym__Alignof] = ACTIONS(3992), - [anon_sym_offsetof] = ACTIONS(3992), - [anon_sym__Generic] = ACTIONS(3992), - [anon_sym_typename] = ACTIONS(3992), - [anon_sym_asm] = ACTIONS(3992), - [anon_sym___asm__] = ACTIONS(3992), - [anon_sym___asm] = ACTIONS(3992), - [sym_number_literal] = ACTIONS(3994), - [anon_sym_L_SQUOTE] = ACTIONS(3994), - [anon_sym_u_SQUOTE] = ACTIONS(3994), - [anon_sym_U_SQUOTE] = ACTIONS(3994), - [anon_sym_u8_SQUOTE] = ACTIONS(3994), - [anon_sym_SQUOTE] = ACTIONS(3994), - [anon_sym_L_DQUOTE] = ACTIONS(3994), - [anon_sym_u_DQUOTE] = ACTIONS(3994), - [anon_sym_U_DQUOTE] = ACTIONS(3994), - [anon_sym_u8_DQUOTE] = ACTIONS(3994), - [anon_sym_DQUOTE] = ACTIONS(3994), - [sym_true] = ACTIONS(3992), - [sym_false] = ACTIONS(3992), - [anon_sym_NULL] = ACTIONS(3992), - [anon_sym_nullptr] = ACTIONS(3992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3992), - [anon_sym_decltype] = ACTIONS(3992), - [anon_sym_explicit] = ACTIONS(3992), - [anon_sym_export] = ACTIONS(3992), - [anon_sym_module] = ACTIONS(3992), - [anon_sym_import] = ACTIONS(3992), - [anon_sym_template] = ACTIONS(3992), - [anon_sym_operator] = ACTIONS(3992), - [anon_sym_try] = ACTIONS(3992), - [anon_sym_delete] = ACTIONS(3992), - [anon_sym_throw] = ACTIONS(3992), - [anon_sym_namespace] = ACTIONS(3992), - [anon_sym_static_assert] = ACTIONS(3992), - [anon_sym_concept] = ACTIONS(3992), - [anon_sym_co_return] = ACTIONS(3992), - [anon_sym_co_yield] = ACTIONS(3992), - [anon_sym_R_DQUOTE] = ACTIONS(3994), - [anon_sym_LR_DQUOTE] = ACTIONS(3994), - [anon_sym_uR_DQUOTE] = ACTIONS(3994), - [anon_sym_UR_DQUOTE] = ACTIONS(3994), - [anon_sym_u8R_DQUOTE] = ACTIONS(3994), - [anon_sym_co_await] = ACTIONS(3992), - [anon_sym_new] = ACTIONS(3992), - [anon_sym_requires] = ACTIONS(3992), - [anon_sym_CARET_CARET] = ACTIONS(3994), - [anon_sym_LBRACK_COLON] = ACTIONS(3994), - [sym_this] = ACTIONS(3992), - }, - [STATE(1006)] = { - [ts_builtin_sym_end] = ACTIONS(3928), - [sym_identifier] = ACTIONS(3925), - [aux_sym_preproc_include_token1] = ACTIONS(3925), - [aux_sym_preproc_def_token1] = ACTIONS(3925), - [aux_sym_preproc_if_token1] = ACTIONS(3925), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3925), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3925), - [sym_preproc_directive] = ACTIONS(3925), - [anon_sym_LPAREN2] = ACTIONS(3928), - [anon_sym_BANG] = ACTIONS(3928), - [anon_sym_TILDE] = ACTIONS(3928), - [anon_sym_DASH] = ACTIONS(3925), - [anon_sym_PLUS] = ACTIONS(3925), - [anon_sym_STAR] = ACTIONS(3928), - [anon_sym_AMP_AMP] = ACTIONS(3928), - [anon_sym_AMP] = ACTIONS(3925), - [anon_sym_SEMI] = ACTIONS(3928), - [anon_sym___extension__] = ACTIONS(3925), - [anon_sym_typedef] = ACTIONS(3925), - [anon_sym_virtual] = ACTIONS(3925), - [anon_sym_extern] = ACTIONS(3925), - [anon_sym___attribute__] = ACTIONS(3925), - [anon_sym___attribute] = ACTIONS(3925), - [anon_sym_using] = ACTIONS(3925), - [anon_sym_COLON_COLON] = ACTIONS(3928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3928), - [anon_sym___declspec] = ACTIONS(3925), - [anon_sym___based] = ACTIONS(3925), - [anon_sym___cdecl] = ACTIONS(3925), - [anon_sym___clrcall] = ACTIONS(3925), - [anon_sym___stdcall] = ACTIONS(3925), - [anon_sym___fastcall] = ACTIONS(3925), - [anon_sym___thiscall] = ACTIONS(3925), - [anon_sym___vectorcall] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3928), - [anon_sym_signed] = ACTIONS(3925), - [anon_sym_unsigned] = ACTIONS(3925), - [anon_sym_long] = ACTIONS(3925), - [anon_sym_short] = ACTIONS(3925), - [anon_sym_LBRACK] = ACTIONS(3925), - [anon_sym_static] = ACTIONS(3925), - [anon_sym_register] = ACTIONS(3925), - [anon_sym_inline] = ACTIONS(3925), - [anon_sym___inline] = ACTIONS(3925), - [anon_sym___inline__] = ACTIONS(3925), - [anon_sym___forceinline] = ACTIONS(3925), - [anon_sym_thread_local] = ACTIONS(3925), - [anon_sym___thread] = ACTIONS(3925), - [anon_sym_const] = ACTIONS(3925), - [anon_sym_constexpr] = ACTIONS(3925), - [anon_sym_volatile] = ACTIONS(3925), - [anon_sym_restrict] = ACTIONS(3925), - [anon_sym___restrict__] = ACTIONS(3925), - [anon_sym__Atomic] = ACTIONS(3925), - [anon_sym__Noreturn] = ACTIONS(3925), - [anon_sym_noreturn] = ACTIONS(3925), - [anon_sym__Nonnull] = ACTIONS(3925), - [anon_sym_mutable] = ACTIONS(3925), - [anon_sym_constinit] = ACTIONS(3925), - [anon_sym_consteval] = ACTIONS(3925), - [anon_sym_alignas] = ACTIONS(3925), - [anon_sym__Alignas] = ACTIONS(3925), - [sym_primitive_type] = ACTIONS(3925), - [anon_sym_enum] = ACTIONS(3925), - [anon_sym_class] = ACTIONS(3925), - [anon_sym_struct] = ACTIONS(3925), - [anon_sym_union] = ACTIONS(3925), - [anon_sym_if] = ACTIONS(3925), - [anon_sym_switch] = ACTIONS(3925), - [anon_sym_case] = ACTIONS(3925), - [anon_sym_default] = ACTIONS(3925), - [anon_sym_while] = ACTIONS(3925), - [anon_sym_do] = ACTIONS(3925), - [anon_sym_for] = ACTIONS(3925), - [anon_sym_return] = ACTIONS(3925), - [anon_sym_break] = ACTIONS(3925), - [anon_sym_continue] = ACTIONS(3925), - [anon_sym_goto] = ACTIONS(3925), - [anon_sym_not] = ACTIONS(3925), - [anon_sym_compl] = ACTIONS(3925), - [anon_sym_DASH_DASH] = ACTIONS(3928), - [anon_sym_PLUS_PLUS] = ACTIONS(3928), - [anon_sym_sizeof] = ACTIONS(3925), - [anon_sym___alignof__] = ACTIONS(3925), - [anon_sym___alignof] = ACTIONS(3925), - [anon_sym__alignof] = ACTIONS(3925), - [anon_sym_alignof] = ACTIONS(3925), - [anon_sym__Alignof] = ACTIONS(3925), - [anon_sym_offsetof] = ACTIONS(3925), - [anon_sym__Generic] = ACTIONS(3925), - [anon_sym_typename] = ACTIONS(3925), - [anon_sym_asm] = ACTIONS(3925), - [anon_sym___asm__] = ACTIONS(3925), - [anon_sym___asm] = ACTIONS(3925), - [sym_number_literal] = ACTIONS(3928), - [anon_sym_L_SQUOTE] = ACTIONS(3928), - [anon_sym_u_SQUOTE] = ACTIONS(3928), - [anon_sym_U_SQUOTE] = ACTIONS(3928), - [anon_sym_u8_SQUOTE] = ACTIONS(3928), - [anon_sym_SQUOTE] = ACTIONS(3928), - [anon_sym_L_DQUOTE] = ACTIONS(3928), - [anon_sym_u_DQUOTE] = ACTIONS(3928), - [anon_sym_U_DQUOTE] = ACTIONS(3928), - [anon_sym_u8_DQUOTE] = ACTIONS(3928), - [anon_sym_DQUOTE] = ACTIONS(3928), - [sym_true] = ACTIONS(3925), - [sym_false] = ACTIONS(3925), - [anon_sym_NULL] = ACTIONS(3925), - [anon_sym_nullptr] = ACTIONS(3925), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3925), - [anon_sym_decltype] = ACTIONS(3925), - [anon_sym_explicit] = ACTIONS(3925), - [anon_sym_export] = ACTIONS(3925), - [anon_sym_module] = ACTIONS(3925), - [anon_sym_import] = ACTIONS(3925), - [anon_sym_template] = ACTIONS(3925), - [anon_sym_operator] = ACTIONS(3925), - [anon_sym_try] = ACTIONS(3925), - [anon_sym_delete] = ACTIONS(3925), - [anon_sym_throw] = ACTIONS(3925), - [anon_sym_namespace] = ACTIONS(3925), - [anon_sym_static_assert] = ACTIONS(3925), - [anon_sym_concept] = ACTIONS(3925), - [anon_sym_co_return] = ACTIONS(3925), - [anon_sym_co_yield] = ACTIONS(3925), - [anon_sym_R_DQUOTE] = ACTIONS(3928), - [anon_sym_LR_DQUOTE] = ACTIONS(3928), - [anon_sym_uR_DQUOTE] = ACTIONS(3928), - [anon_sym_UR_DQUOTE] = ACTIONS(3928), - [anon_sym_u8R_DQUOTE] = ACTIONS(3928), - [anon_sym_co_await] = ACTIONS(3925), - [anon_sym_new] = ACTIONS(3925), - [anon_sym_requires] = ACTIONS(3925), - [anon_sym_CARET_CARET] = ACTIONS(3928), - [anon_sym_LBRACK_COLON] = ACTIONS(3928), - [sym_this] = ACTIONS(3925), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_private] = ACTIONS(3476), + [anon_sym_template] = ACTIONS(4734), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_friend] = ACTIONS(4736), + [anon_sym_public] = ACTIONS(3476), + [anon_sym_protected] = ACTIONS(3476), + [anon_sym_static_assert] = ACTIONS(4738), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(1007)] = { - [ts_builtin_sym_end] = ACTIONS(4082), - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_include_token1] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym___cdecl] = ACTIONS(4080), - [anon_sym___clrcall] = ACTIONS(4080), - [anon_sym___stdcall] = ACTIONS(4080), - [anon_sym___fastcall] = ACTIONS(4080), - [anon_sym___thiscall] = ACTIONS(4080), - [anon_sym___vectorcall] = ACTIONS(4080), - [anon_sym_LBRACE] = ACTIONS(4082), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_if] = ACTIONS(4080), - [anon_sym_switch] = ACTIONS(4080), - [anon_sym_case] = ACTIONS(4080), - [anon_sym_default] = ACTIONS(4080), - [anon_sym_while] = ACTIONS(4080), - [anon_sym_do] = ACTIONS(4080), - [anon_sym_for] = ACTIONS(4080), - [anon_sym_return] = ACTIONS(4080), - [anon_sym_break] = ACTIONS(4080), - [anon_sym_continue] = ACTIONS(4080), - [anon_sym_goto] = ACTIONS(4080), - [anon_sym_not] = ACTIONS(4080), - [anon_sym_compl] = ACTIONS(4080), - [anon_sym_DASH_DASH] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4082), - [anon_sym_sizeof] = ACTIONS(4080), - [anon_sym___alignof__] = ACTIONS(4080), - [anon_sym___alignof] = ACTIONS(4080), - [anon_sym__alignof] = ACTIONS(4080), - [anon_sym_alignof] = ACTIONS(4080), - [anon_sym__Alignof] = ACTIONS(4080), - [anon_sym_offsetof] = ACTIONS(4080), - [anon_sym__Generic] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [anon_sym_asm] = ACTIONS(4080), - [anon_sym___asm__] = ACTIONS(4080), - [anon_sym___asm] = ACTIONS(4080), - [sym_number_literal] = ACTIONS(4082), - [anon_sym_L_SQUOTE] = ACTIONS(4082), - [anon_sym_u_SQUOTE] = ACTIONS(4082), - [anon_sym_U_SQUOTE] = ACTIONS(4082), - [anon_sym_u8_SQUOTE] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4082), - [anon_sym_L_DQUOTE] = ACTIONS(4082), - [anon_sym_u_DQUOTE] = ACTIONS(4082), - [anon_sym_U_DQUOTE] = ACTIONS(4082), - [anon_sym_u8_DQUOTE] = ACTIONS(4082), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [anon_sym_NULL] = ACTIONS(4080), - [anon_sym_nullptr] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_export] = ACTIONS(4080), - [anon_sym_module] = ACTIONS(4080), - [anon_sym_import] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_try] = ACTIONS(4080), - [anon_sym_delete] = ACTIONS(4080), - [anon_sym_throw] = ACTIONS(4080), - [anon_sym_namespace] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_concept] = ACTIONS(4080), - [anon_sym_co_return] = ACTIONS(4080), - [anon_sym_co_yield] = ACTIONS(4080), - [anon_sym_R_DQUOTE] = ACTIONS(4082), - [anon_sym_LR_DQUOTE] = ACTIONS(4082), - [anon_sym_uR_DQUOTE] = ACTIONS(4082), - [anon_sym_UR_DQUOTE] = ACTIONS(4082), - [anon_sym_u8R_DQUOTE] = ACTIONS(4082), - [anon_sym_co_await] = ACTIONS(4080), - [anon_sym_new] = ACTIONS(4080), - [anon_sym_requires] = ACTIONS(4080), - [anon_sym_CARET_CARET] = ACTIONS(4082), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), - [sym_this] = ACTIONS(4080), + [ts_builtin_sym_end] = ACTIONS(4054), + [sym_identifier] = ACTIONS(4052), + [aux_sym_preproc_include_token1] = ACTIONS(4052), + [aux_sym_preproc_def_token1] = ACTIONS(4052), + [aux_sym_preproc_if_token1] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4052), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4052), + [sym_preproc_directive] = ACTIONS(4052), + [anon_sym_LPAREN2] = ACTIONS(4054), + [anon_sym_BANG] = ACTIONS(4054), + [anon_sym_TILDE] = ACTIONS(4054), + [anon_sym_DASH] = ACTIONS(4052), + [anon_sym_PLUS] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(4054), + [anon_sym_AMP_AMP] = ACTIONS(4054), + [anon_sym_AMP] = ACTIONS(4052), + [anon_sym_SEMI] = ACTIONS(4054), + [anon_sym___extension__] = ACTIONS(4052), + [anon_sym_typedef] = ACTIONS(4052), + [anon_sym_virtual] = ACTIONS(4052), + [anon_sym_extern] = ACTIONS(4052), + [anon_sym___attribute__] = ACTIONS(4052), + [anon_sym___attribute] = ACTIONS(4052), + [anon_sym_using] = ACTIONS(4052), + [anon_sym_COLON_COLON] = ACTIONS(4054), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4054), + [anon_sym___declspec] = ACTIONS(4052), + [anon_sym___based] = ACTIONS(4052), + [anon_sym___cdecl] = ACTIONS(4052), + [anon_sym___clrcall] = ACTIONS(4052), + [anon_sym___stdcall] = ACTIONS(4052), + [anon_sym___fastcall] = ACTIONS(4052), + [anon_sym___thiscall] = ACTIONS(4052), + [anon_sym___vectorcall] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4054), + [anon_sym_signed] = ACTIONS(4052), + [anon_sym_unsigned] = ACTIONS(4052), + [anon_sym_long] = ACTIONS(4052), + [anon_sym_short] = ACTIONS(4052), + [anon_sym_LBRACK] = ACTIONS(4052), + [anon_sym_static] = ACTIONS(4052), + [anon_sym_register] = ACTIONS(4052), + [anon_sym_inline] = ACTIONS(4052), + [anon_sym___inline] = ACTIONS(4052), + [anon_sym___inline__] = ACTIONS(4052), + [anon_sym___forceinline] = ACTIONS(4052), + [anon_sym_thread_local] = ACTIONS(4052), + [anon_sym___thread] = ACTIONS(4052), + [anon_sym_const] = ACTIONS(4052), + [anon_sym_constexpr] = ACTIONS(4052), + [anon_sym_volatile] = ACTIONS(4052), + [anon_sym_restrict] = ACTIONS(4052), + [anon_sym___restrict__] = ACTIONS(4052), + [anon_sym__Atomic] = ACTIONS(4052), + [anon_sym__Noreturn] = ACTIONS(4052), + [anon_sym_noreturn] = ACTIONS(4052), + [anon_sym__Nonnull] = ACTIONS(4052), + [anon_sym_mutable] = ACTIONS(4052), + [anon_sym_constinit] = ACTIONS(4052), + [anon_sym_consteval] = ACTIONS(4052), + [anon_sym_alignas] = ACTIONS(4052), + [anon_sym__Alignas] = ACTIONS(4052), + [sym_primitive_type] = ACTIONS(4052), + [anon_sym_enum] = ACTIONS(4052), + [anon_sym_class] = ACTIONS(4052), + [anon_sym_struct] = ACTIONS(4052), + [anon_sym_union] = ACTIONS(4052), + [anon_sym_if] = ACTIONS(4052), + [anon_sym_switch] = ACTIONS(4052), + [anon_sym_case] = ACTIONS(4052), + [anon_sym_default] = ACTIONS(4052), + [anon_sym_while] = ACTIONS(4052), + [anon_sym_do] = ACTIONS(4052), + [anon_sym_for] = ACTIONS(4052), + [anon_sym_return] = ACTIONS(4052), + [anon_sym_break] = ACTIONS(4052), + [anon_sym_continue] = ACTIONS(4052), + [anon_sym_goto] = ACTIONS(4052), + [anon_sym_not] = ACTIONS(4052), + [anon_sym_compl] = ACTIONS(4052), + [anon_sym_DASH_DASH] = ACTIONS(4054), + [anon_sym_PLUS_PLUS] = ACTIONS(4054), + [anon_sym_sizeof] = ACTIONS(4052), + [anon_sym___alignof__] = ACTIONS(4052), + [anon_sym___alignof] = ACTIONS(4052), + [anon_sym__alignof] = ACTIONS(4052), + [anon_sym_alignof] = ACTIONS(4052), + [anon_sym__Alignof] = ACTIONS(4052), + [anon_sym_offsetof] = ACTIONS(4052), + [anon_sym__Generic] = ACTIONS(4052), + [anon_sym_typename] = ACTIONS(4052), + [anon_sym_asm] = ACTIONS(4052), + [anon_sym___asm__] = ACTIONS(4052), + [anon_sym___asm] = ACTIONS(4052), + [sym_number_literal] = ACTIONS(4054), + [anon_sym_L_SQUOTE] = ACTIONS(4054), + [anon_sym_u_SQUOTE] = ACTIONS(4054), + [anon_sym_U_SQUOTE] = ACTIONS(4054), + [anon_sym_u8_SQUOTE] = ACTIONS(4054), + [anon_sym_SQUOTE] = ACTIONS(4054), + [anon_sym_L_DQUOTE] = ACTIONS(4054), + [anon_sym_u_DQUOTE] = ACTIONS(4054), + [anon_sym_U_DQUOTE] = ACTIONS(4054), + [anon_sym_u8_DQUOTE] = ACTIONS(4054), + [anon_sym_DQUOTE] = ACTIONS(4054), + [sym_true] = ACTIONS(4052), + [sym_false] = ACTIONS(4052), + [anon_sym_NULL] = ACTIONS(4052), + [anon_sym_nullptr] = ACTIONS(4052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4052), + [anon_sym_decltype] = ACTIONS(4052), + [anon_sym_explicit] = ACTIONS(4052), + [anon_sym_export] = ACTIONS(4052), + [anon_sym_module] = ACTIONS(4052), + [anon_sym_import] = ACTIONS(4052), + [anon_sym_template] = ACTIONS(4052), + [anon_sym_operator] = ACTIONS(4052), + [anon_sym_try] = ACTIONS(4052), + [anon_sym_delete] = ACTIONS(4052), + [anon_sym_throw] = ACTIONS(4052), + [anon_sym_namespace] = ACTIONS(4052), + [anon_sym_static_assert] = ACTIONS(4052), + [anon_sym_concept] = ACTIONS(4052), + [anon_sym_co_return] = ACTIONS(4052), + [anon_sym_co_yield] = ACTIONS(4052), + [anon_sym_R_DQUOTE] = ACTIONS(4054), + [anon_sym_LR_DQUOTE] = ACTIONS(4054), + [anon_sym_uR_DQUOTE] = ACTIONS(4054), + [anon_sym_UR_DQUOTE] = ACTIONS(4054), + [anon_sym_u8R_DQUOTE] = ACTIONS(4054), + [anon_sym_co_await] = ACTIONS(4052), + [anon_sym_new] = ACTIONS(4052), + [anon_sym_requires] = ACTIONS(4052), + [anon_sym_CARET_CARET] = ACTIONS(4054), + [anon_sym_LBRACK_COLON] = ACTIONS(4054), + [sym_this] = ACTIONS(4052), }, [STATE(1008)] = { - [ts_builtin_sym_end] = ACTIONS(4082), - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_include_token1] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_BANG] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_PLUS] = ACTIONS(4080), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym___cdecl] = ACTIONS(4080), - [anon_sym___clrcall] = ACTIONS(4080), - [anon_sym___stdcall] = ACTIONS(4080), - [anon_sym___fastcall] = ACTIONS(4080), - [anon_sym___thiscall] = ACTIONS(4080), - [anon_sym___vectorcall] = ACTIONS(4080), - [anon_sym_LBRACE] = ACTIONS(4082), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_if] = ACTIONS(4080), - [anon_sym_switch] = ACTIONS(4080), - [anon_sym_case] = ACTIONS(4080), - [anon_sym_default] = ACTIONS(4080), - [anon_sym_while] = ACTIONS(4080), - [anon_sym_do] = ACTIONS(4080), - [anon_sym_for] = ACTIONS(4080), - [anon_sym_return] = ACTIONS(4080), - [anon_sym_break] = ACTIONS(4080), - [anon_sym_continue] = ACTIONS(4080), - [anon_sym_goto] = ACTIONS(4080), - [anon_sym_not] = ACTIONS(4080), - [anon_sym_compl] = ACTIONS(4080), - [anon_sym_DASH_DASH] = ACTIONS(4082), - [anon_sym_PLUS_PLUS] = ACTIONS(4082), - [anon_sym_sizeof] = ACTIONS(4080), - [anon_sym___alignof__] = ACTIONS(4080), - [anon_sym___alignof] = ACTIONS(4080), - [anon_sym__alignof] = ACTIONS(4080), - [anon_sym_alignof] = ACTIONS(4080), - [anon_sym__Alignof] = ACTIONS(4080), - [anon_sym_offsetof] = ACTIONS(4080), - [anon_sym__Generic] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [anon_sym_asm] = ACTIONS(4080), - [anon_sym___asm__] = ACTIONS(4080), - [anon_sym___asm] = ACTIONS(4080), - [sym_number_literal] = ACTIONS(4082), - [anon_sym_L_SQUOTE] = ACTIONS(4082), - [anon_sym_u_SQUOTE] = ACTIONS(4082), - [anon_sym_U_SQUOTE] = ACTIONS(4082), - [anon_sym_u8_SQUOTE] = ACTIONS(4082), - [anon_sym_SQUOTE] = ACTIONS(4082), - [anon_sym_L_DQUOTE] = ACTIONS(4082), - [anon_sym_u_DQUOTE] = ACTIONS(4082), - [anon_sym_U_DQUOTE] = ACTIONS(4082), - [anon_sym_u8_DQUOTE] = ACTIONS(4082), - [anon_sym_DQUOTE] = ACTIONS(4082), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [anon_sym_NULL] = ACTIONS(4080), - [anon_sym_nullptr] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_export] = ACTIONS(4080), - [anon_sym_module] = ACTIONS(4080), - [anon_sym_import] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_try] = ACTIONS(4080), - [anon_sym_delete] = ACTIONS(4080), - [anon_sym_throw] = ACTIONS(4080), - [anon_sym_namespace] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_concept] = ACTIONS(4080), - [anon_sym_co_return] = ACTIONS(4080), - [anon_sym_co_yield] = ACTIONS(4080), - [anon_sym_R_DQUOTE] = ACTIONS(4082), - [anon_sym_LR_DQUOTE] = ACTIONS(4082), - [anon_sym_uR_DQUOTE] = ACTIONS(4082), - [anon_sym_UR_DQUOTE] = ACTIONS(4082), - [anon_sym_u8R_DQUOTE] = ACTIONS(4082), - [anon_sym_co_await] = ACTIONS(4080), - [anon_sym_new] = ACTIONS(4080), - [anon_sym_requires] = ACTIONS(4080), - [anon_sym_CARET_CARET] = ACTIONS(4082), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), - [sym_this] = ACTIONS(4080), + [ts_builtin_sym_end] = ACTIONS(4452), + [sym_identifier] = ACTIONS(4450), + [aux_sym_preproc_include_token1] = ACTIONS(4450), + [aux_sym_preproc_def_token1] = ACTIONS(4450), + [aux_sym_preproc_if_token1] = ACTIONS(4450), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4450), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4450), + [sym_preproc_directive] = ACTIONS(4450), + [anon_sym_LPAREN2] = ACTIONS(4452), + [anon_sym_BANG] = ACTIONS(4452), + [anon_sym_TILDE] = ACTIONS(4452), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4452), + [anon_sym_AMP_AMP] = ACTIONS(4452), + [anon_sym_AMP] = ACTIONS(4450), + [anon_sym_SEMI] = ACTIONS(4452), + [anon_sym___extension__] = ACTIONS(4450), + [anon_sym_typedef] = ACTIONS(4450), + [anon_sym_virtual] = ACTIONS(4450), + [anon_sym_extern] = ACTIONS(4450), + [anon_sym___attribute__] = ACTIONS(4450), + [anon_sym___attribute] = ACTIONS(4450), + [anon_sym_using] = ACTIONS(4450), + [anon_sym_COLON_COLON] = ACTIONS(4452), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4452), + [anon_sym___declspec] = ACTIONS(4450), + [anon_sym___based] = ACTIONS(4450), + [anon_sym___cdecl] = ACTIONS(4450), + [anon_sym___clrcall] = ACTIONS(4450), + [anon_sym___stdcall] = ACTIONS(4450), + [anon_sym___fastcall] = ACTIONS(4450), + [anon_sym___thiscall] = ACTIONS(4450), + [anon_sym___vectorcall] = ACTIONS(4450), + [anon_sym_LBRACE] = ACTIONS(4452), + [anon_sym_signed] = ACTIONS(4450), + [anon_sym_unsigned] = ACTIONS(4450), + [anon_sym_long] = ACTIONS(4450), + [anon_sym_short] = ACTIONS(4450), + [anon_sym_LBRACK] = ACTIONS(4450), + [anon_sym_static] = ACTIONS(4450), + [anon_sym_register] = ACTIONS(4450), + [anon_sym_inline] = ACTIONS(4450), + [anon_sym___inline] = ACTIONS(4450), + [anon_sym___inline__] = ACTIONS(4450), + [anon_sym___forceinline] = ACTIONS(4450), + [anon_sym_thread_local] = ACTIONS(4450), + [anon_sym___thread] = ACTIONS(4450), + [anon_sym_const] = ACTIONS(4450), + [anon_sym_constexpr] = ACTIONS(4450), + [anon_sym_volatile] = ACTIONS(4450), + [anon_sym_restrict] = ACTIONS(4450), + [anon_sym___restrict__] = ACTIONS(4450), + [anon_sym__Atomic] = ACTIONS(4450), + [anon_sym__Noreturn] = ACTIONS(4450), + [anon_sym_noreturn] = ACTIONS(4450), + [anon_sym__Nonnull] = ACTIONS(4450), + [anon_sym_mutable] = ACTIONS(4450), + [anon_sym_constinit] = ACTIONS(4450), + [anon_sym_consteval] = ACTIONS(4450), + [anon_sym_alignas] = ACTIONS(4450), + [anon_sym__Alignas] = ACTIONS(4450), + [sym_primitive_type] = ACTIONS(4450), + [anon_sym_enum] = ACTIONS(4450), + [anon_sym_class] = ACTIONS(4450), + [anon_sym_struct] = ACTIONS(4450), + [anon_sym_union] = ACTIONS(4450), + [anon_sym_if] = ACTIONS(4450), + [anon_sym_switch] = ACTIONS(4450), + [anon_sym_case] = ACTIONS(4450), + [anon_sym_default] = ACTIONS(4450), + [anon_sym_while] = ACTIONS(4450), + [anon_sym_do] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(4450), + [anon_sym_return] = ACTIONS(4450), + [anon_sym_break] = ACTIONS(4450), + [anon_sym_continue] = ACTIONS(4450), + [anon_sym_goto] = ACTIONS(4450), + [anon_sym_not] = ACTIONS(4450), + [anon_sym_compl] = ACTIONS(4450), + [anon_sym_DASH_DASH] = ACTIONS(4452), + [anon_sym_PLUS_PLUS] = ACTIONS(4452), + [anon_sym_sizeof] = ACTIONS(4450), + [anon_sym___alignof__] = ACTIONS(4450), + [anon_sym___alignof] = ACTIONS(4450), + [anon_sym__alignof] = ACTIONS(4450), + [anon_sym_alignof] = ACTIONS(4450), + [anon_sym__Alignof] = ACTIONS(4450), + [anon_sym_offsetof] = ACTIONS(4450), + [anon_sym__Generic] = ACTIONS(4450), + [anon_sym_typename] = ACTIONS(4450), + [anon_sym_asm] = ACTIONS(4450), + [anon_sym___asm__] = ACTIONS(4450), + [anon_sym___asm] = ACTIONS(4450), + [sym_number_literal] = ACTIONS(4452), + [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(4452), + [anon_sym_u_DQUOTE] = ACTIONS(4452), + [anon_sym_U_DQUOTE] = ACTIONS(4452), + [anon_sym_u8_DQUOTE] = ACTIONS(4452), + [anon_sym_DQUOTE] = ACTIONS(4452), + [sym_true] = ACTIONS(4450), + [sym_false] = ACTIONS(4450), + [anon_sym_NULL] = ACTIONS(4450), + [anon_sym_nullptr] = ACTIONS(4450), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4450), + [anon_sym_decltype] = ACTIONS(4450), + [anon_sym_explicit] = ACTIONS(4450), + [anon_sym_export] = ACTIONS(4450), + [anon_sym_module] = ACTIONS(4450), + [anon_sym_import] = ACTIONS(4450), + [anon_sym_template] = ACTIONS(4450), + [anon_sym_operator] = ACTIONS(4450), + [anon_sym_try] = ACTIONS(4450), + [anon_sym_delete] = ACTIONS(4450), + [anon_sym_throw] = ACTIONS(4450), + [anon_sym_namespace] = ACTIONS(4450), + [anon_sym_static_assert] = ACTIONS(4450), + [anon_sym_concept] = ACTIONS(4450), + [anon_sym_co_return] = ACTIONS(4450), + [anon_sym_co_yield] = ACTIONS(4450), + [anon_sym_R_DQUOTE] = ACTIONS(4452), + [anon_sym_LR_DQUOTE] = ACTIONS(4452), + [anon_sym_uR_DQUOTE] = ACTIONS(4452), + [anon_sym_UR_DQUOTE] = ACTIONS(4452), + [anon_sym_u8R_DQUOTE] = ACTIONS(4452), + [anon_sym_co_await] = ACTIONS(4450), + [anon_sym_new] = ACTIONS(4450), + [anon_sym_requires] = ACTIONS(4450), + [anon_sym_CARET_CARET] = ACTIONS(4452), + [anon_sym_LBRACK_COLON] = ACTIONS(4452), + [sym_this] = ACTIONS(4450), }, [STATE(1009)] = { - [sym_identifier] = ACTIONS(4496), - [aux_sym_preproc_include_token1] = ACTIONS(4496), - [aux_sym_preproc_def_token1] = ACTIONS(4496), - [aux_sym_preproc_if_token1] = ACTIONS(4496), - [aux_sym_preproc_if_token2] = ACTIONS(4496), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4496), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4496), - [sym_preproc_directive] = ACTIONS(4496), - [anon_sym_LPAREN2] = ACTIONS(4498), - [anon_sym_BANG] = ACTIONS(4498), - [anon_sym_TILDE] = ACTIONS(4498), - [anon_sym_DASH] = ACTIONS(4496), - [anon_sym_PLUS] = ACTIONS(4496), - [anon_sym_STAR] = ACTIONS(4498), - [anon_sym_AMP_AMP] = ACTIONS(4498), - [anon_sym_AMP] = ACTIONS(4496), - [anon_sym_SEMI] = ACTIONS(4498), - [anon_sym___extension__] = ACTIONS(4496), - [anon_sym_typedef] = ACTIONS(4496), - [anon_sym_virtual] = ACTIONS(4496), - [anon_sym_extern] = ACTIONS(4496), - [anon_sym___attribute__] = ACTIONS(4496), - [anon_sym___attribute] = ACTIONS(4496), - [anon_sym_using] = ACTIONS(4496), - [anon_sym_COLON_COLON] = ACTIONS(4498), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4498), - [anon_sym___declspec] = ACTIONS(4496), - [anon_sym___based] = ACTIONS(4496), - [anon_sym___cdecl] = ACTIONS(4496), - [anon_sym___clrcall] = ACTIONS(4496), - [anon_sym___stdcall] = ACTIONS(4496), - [anon_sym___fastcall] = ACTIONS(4496), - [anon_sym___thiscall] = ACTIONS(4496), - [anon_sym___vectorcall] = ACTIONS(4496), - [anon_sym_LBRACE] = ACTIONS(4498), - [anon_sym_signed] = ACTIONS(4496), - [anon_sym_unsigned] = ACTIONS(4496), - [anon_sym_long] = ACTIONS(4496), - [anon_sym_short] = ACTIONS(4496), - [anon_sym_LBRACK] = ACTIONS(4496), - [anon_sym_static] = ACTIONS(4496), - [anon_sym_register] = ACTIONS(4496), - [anon_sym_inline] = ACTIONS(4496), - [anon_sym___inline] = ACTIONS(4496), - [anon_sym___inline__] = ACTIONS(4496), - [anon_sym___forceinline] = ACTIONS(4496), - [anon_sym_thread_local] = ACTIONS(4496), - [anon_sym___thread] = ACTIONS(4496), - [anon_sym_const] = ACTIONS(4496), - [anon_sym_constexpr] = ACTIONS(4496), - [anon_sym_volatile] = ACTIONS(4496), - [anon_sym_restrict] = ACTIONS(4496), - [anon_sym___restrict__] = ACTIONS(4496), - [anon_sym__Atomic] = ACTIONS(4496), - [anon_sym__Noreturn] = ACTIONS(4496), - [anon_sym_noreturn] = ACTIONS(4496), - [anon_sym__Nonnull] = ACTIONS(4496), - [anon_sym_mutable] = ACTIONS(4496), - [anon_sym_constinit] = ACTIONS(4496), - [anon_sym_consteval] = ACTIONS(4496), - [anon_sym_alignas] = ACTIONS(4496), - [anon_sym__Alignas] = ACTIONS(4496), - [sym_primitive_type] = ACTIONS(4496), - [anon_sym_enum] = ACTIONS(4496), - [anon_sym_class] = ACTIONS(4496), - [anon_sym_struct] = ACTIONS(4496), - [anon_sym_union] = ACTIONS(4496), - [anon_sym_if] = ACTIONS(4496), - [anon_sym_switch] = ACTIONS(4496), - [anon_sym_case] = ACTIONS(4496), - [anon_sym_default] = ACTIONS(4496), - [anon_sym_while] = ACTIONS(4496), - [anon_sym_do] = ACTIONS(4496), - [anon_sym_for] = ACTIONS(4496), - [anon_sym_return] = ACTIONS(4496), - [anon_sym_break] = ACTIONS(4496), - [anon_sym_continue] = ACTIONS(4496), - [anon_sym_goto] = ACTIONS(4496), - [anon_sym_not] = ACTIONS(4496), - [anon_sym_compl] = ACTIONS(4496), - [anon_sym_DASH_DASH] = ACTIONS(4498), - [anon_sym_PLUS_PLUS] = ACTIONS(4498), - [anon_sym_sizeof] = ACTIONS(4496), - [anon_sym___alignof__] = ACTIONS(4496), - [anon_sym___alignof] = ACTIONS(4496), - [anon_sym__alignof] = ACTIONS(4496), - [anon_sym_alignof] = ACTIONS(4496), - [anon_sym__Alignof] = ACTIONS(4496), - [anon_sym_offsetof] = ACTIONS(4496), - [anon_sym__Generic] = ACTIONS(4496), - [anon_sym_typename] = ACTIONS(4496), - [anon_sym_asm] = ACTIONS(4496), - [anon_sym___asm__] = ACTIONS(4496), - [anon_sym___asm] = ACTIONS(4496), - [sym_number_literal] = ACTIONS(4498), - [anon_sym_L_SQUOTE] = ACTIONS(4498), - [anon_sym_u_SQUOTE] = ACTIONS(4498), - [anon_sym_U_SQUOTE] = ACTIONS(4498), - [anon_sym_u8_SQUOTE] = ACTIONS(4498), - [anon_sym_SQUOTE] = ACTIONS(4498), - [anon_sym_L_DQUOTE] = ACTIONS(4498), - [anon_sym_u_DQUOTE] = ACTIONS(4498), - [anon_sym_U_DQUOTE] = ACTIONS(4498), - [anon_sym_u8_DQUOTE] = ACTIONS(4498), - [anon_sym_DQUOTE] = ACTIONS(4498), - [sym_true] = ACTIONS(4496), - [sym_false] = ACTIONS(4496), - [anon_sym_NULL] = ACTIONS(4496), - [anon_sym_nullptr] = ACTIONS(4496), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4496), - [anon_sym_decltype] = ACTIONS(4496), - [anon_sym_explicit] = ACTIONS(4496), - [anon_sym_export] = ACTIONS(4496), - [anon_sym_module] = ACTIONS(4496), - [anon_sym_import] = ACTIONS(4496), - [anon_sym_template] = ACTIONS(4496), - [anon_sym_operator] = ACTIONS(4496), - [anon_sym_try] = ACTIONS(4496), - [anon_sym_delete] = ACTIONS(4496), - [anon_sym_throw] = ACTIONS(4496), - [anon_sym_namespace] = ACTIONS(4496), - [anon_sym_static_assert] = ACTIONS(4496), - [anon_sym_concept] = ACTIONS(4496), - [anon_sym_co_return] = ACTIONS(4496), - [anon_sym_co_yield] = ACTIONS(4496), - [anon_sym_R_DQUOTE] = ACTIONS(4498), - [anon_sym_LR_DQUOTE] = ACTIONS(4498), - [anon_sym_uR_DQUOTE] = ACTIONS(4498), - [anon_sym_UR_DQUOTE] = ACTIONS(4498), - [anon_sym_u8R_DQUOTE] = ACTIONS(4498), - [anon_sym_co_await] = ACTIONS(4496), - [anon_sym_new] = ACTIONS(4496), - [anon_sym_requires] = ACTIONS(4496), - [anon_sym_CARET_CARET] = ACTIONS(4498), - [anon_sym_LBRACK_COLON] = ACTIONS(4498), - [sym_this] = ACTIONS(4496), + [ts_builtin_sym_end] = ACTIONS(3764), + [sym_identifier] = ACTIONS(3762), + [aux_sym_preproc_include_token1] = ACTIONS(3762), + [aux_sym_preproc_def_token1] = ACTIONS(3762), + [aux_sym_preproc_if_token1] = ACTIONS(3762), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3762), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3762), + [sym_preproc_directive] = ACTIONS(3762), + [anon_sym_LPAREN2] = ACTIONS(3764), + [anon_sym_BANG] = ACTIONS(3764), + [anon_sym_TILDE] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3762), + [anon_sym_PLUS] = ACTIONS(3762), + [anon_sym_STAR] = ACTIONS(3764), + [anon_sym_AMP_AMP] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym___extension__] = ACTIONS(3762), + [anon_sym_typedef] = ACTIONS(3762), + [anon_sym_virtual] = ACTIONS(3762), + [anon_sym_extern] = ACTIONS(3762), + [anon_sym___attribute__] = ACTIONS(3762), + [anon_sym___attribute] = ACTIONS(3762), + [anon_sym_using] = ACTIONS(3762), + [anon_sym_COLON_COLON] = ACTIONS(3764), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3764), + [anon_sym___declspec] = ACTIONS(3762), + [anon_sym___based] = ACTIONS(3762), + [anon_sym___cdecl] = ACTIONS(3762), + [anon_sym___clrcall] = ACTIONS(3762), + [anon_sym___stdcall] = ACTIONS(3762), + [anon_sym___fastcall] = ACTIONS(3762), + [anon_sym___thiscall] = ACTIONS(3762), + [anon_sym___vectorcall] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_signed] = ACTIONS(3762), + [anon_sym_unsigned] = ACTIONS(3762), + [anon_sym_long] = ACTIONS(3762), + [anon_sym_short] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(3762), + [anon_sym_static] = ACTIONS(3762), + [anon_sym_register] = ACTIONS(3762), + [anon_sym_inline] = ACTIONS(3762), + [anon_sym___inline] = ACTIONS(3762), + [anon_sym___inline__] = ACTIONS(3762), + [anon_sym___forceinline] = ACTIONS(3762), + [anon_sym_thread_local] = ACTIONS(3762), + [anon_sym___thread] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym___restrict__] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym__Noreturn] = ACTIONS(3762), + [anon_sym_noreturn] = ACTIONS(3762), + [anon_sym__Nonnull] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_constinit] = ACTIONS(3762), + [anon_sym_consteval] = ACTIONS(3762), + [anon_sym_alignas] = ACTIONS(3762), + [anon_sym__Alignas] = ACTIONS(3762), + [sym_primitive_type] = ACTIONS(3762), + [anon_sym_enum] = ACTIONS(3762), + [anon_sym_class] = ACTIONS(3762), + [anon_sym_struct] = ACTIONS(3762), + [anon_sym_union] = ACTIONS(3762), + [anon_sym_if] = ACTIONS(3762), + [anon_sym_switch] = ACTIONS(3762), + [anon_sym_case] = ACTIONS(3762), + [anon_sym_default] = ACTIONS(3762), + [anon_sym_while] = ACTIONS(3762), + [anon_sym_do] = ACTIONS(3762), + [anon_sym_for] = ACTIONS(3762), + [anon_sym_return] = ACTIONS(3762), + [anon_sym_break] = ACTIONS(3762), + [anon_sym_continue] = ACTIONS(3762), + [anon_sym_goto] = ACTIONS(3762), + [anon_sym_not] = ACTIONS(3762), + [anon_sym_compl] = ACTIONS(3762), + [anon_sym_DASH_DASH] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3764), + [anon_sym_sizeof] = ACTIONS(3762), + [anon_sym___alignof__] = ACTIONS(3762), + [anon_sym___alignof] = ACTIONS(3762), + [anon_sym__alignof] = ACTIONS(3762), + [anon_sym_alignof] = ACTIONS(3762), + [anon_sym__Alignof] = ACTIONS(3762), + [anon_sym_offsetof] = ACTIONS(3762), + [anon_sym__Generic] = ACTIONS(3762), + [anon_sym_typename] = ACTIONS(3762), + [anon_sym_asm] = ACTIONS(3762), + [anon_sym___asm__] = ACTIONS(3762), + [anon_sym___asm] = ACTIONS(3762), + [sym_number_literal] = ACTIONS(3764), + [anon_sym_L_SQUOTE] = ACTIONS(3764), + [anon_sym_u_SQUOTE] = ACTIONS(3764), + [anon_sym_U_SQUOTE] = ACTIONS(3764), + [anon_sym_u8_SQUOTE] = ACTIONS(3764), + [anon_sym_SQUOTE] = ACTIONS(3764), + [anon_sym_L_DQUOTE] = ACTIONS(3764), + [anon_sym_u_DQUOTE] = ACTIONS(3764), + [anon_sym_U_DQUOTE] = ACTIONS(3764), + [anon_sym_u8_DQUOTE] = ACTIONS(3764), + [anon_sym_DQUOTE] = ACTIONS(3764), + [sym_true] = ACTIONS(3762), + [sym_false] = ACTIONS(3762), + [anon_sym_NULL] = ACTIONS(3762), + [anon_sym_nullptr] = ACTIONS(3762), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3762), + [anon_sym_decltype] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_export] = ACTIONS(3762), + [anon_sym_module] = ACTIONS(3762), + [anon_sym_import] = ACTIONS(3762), + [anon_sym_template] = ACTIONS(3762), + [anon_sym_operator] = ACTIONS(3762), + [anon_sym_try] = ACTIONS(3762), + [anon_sym_delete] = ACTIONS(3762), + [anon_sym_throw] = ACTIONS(3762), + [anon_sym_namespace] = ACTIONS(3762), + [anon_sym_static_assert] = ACTIONS(3762), + [anon_sym_concept] = ACTIONS(3762), + [anon_sym_co_return] = ACTIONS(3762), + [anon_sym_co_yield] = ACTIONS(3762), + [anon_sym_R_DQUOTE] = ACTIONS(3764), + [anon_sym_LR_DQUOTE] = ACTIONS(3764), + [anon_sym_uR_DQUOTE] = ACTIONS(3764), + [anon_sym_UR_DQUOTE] = ACTIONS(3764), + [anon_sym_u8R_DQUOTE] = ACTIONS(3764), + [anon_sym_co_await] = ACTIONS(3762), + [anon_sym_new] = ACTIONS(3762), + [anon_sym_requires] = ACTIONS(3762), + [anon_sym_CARET_CARET] = ACTIONS(3764), + [anon_sym_LBRACK_COLON] = ACTIONS(3764), + [sym_this] = ACTIONS(3762), }, [STATE(1010)] = { - [ts_builtin_sym_end] = ACTIONS(4524), - [sym_identifier] = ACTIONS(4522), - [aux_sym_preproc_include_token1] = ACTIONS(4522), - [aux_sym_preproc_def_token1] = ACTIONS(4522), - [aux_sym_preproc_if_token1] = ACTIONS(4522), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4522), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4522), - [sym_preproc_directive] = ACTIONS(4522), - [anon_sym_LPAREN2] = ACTIONS(4524), - [anon_sym_BANG] = ACTIONS(4524), - [anon_sym_TILDE] = ACTIONS(4524), - [anon_sym_DASH] = ACTIONS(4522), - [anon_sym_PLUS] = ACTIONS(4522), - [anon_sym_STAR] = ACTIONS(4524), - [anon_sym_AMP_AMP] = ACTIONS(4524), - [anon_sym_AMP] = ACTIONS(4522), - [anon_sym_SEMI] = ACTIONS(4524), - [anon_sym___extension__] = ACTIONS(4522), - [anon_sym_typedef] = ACTIONS(4522), - [anon_sym_virtual] = ACTIONS(4522), - [anon_sym_extern] = ACTIONS(4522), - [anon_sym___attribute__] = ACTIONS(4522), - [anon_sym___attribute] = ACTIONS(4522), - [anon_sym_using] = ACTIONS(4522), - [anon_sym_COLON_COLON] = ACTIONS(4524), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4524), - [anon_sym___declspec] = ACTIONS(4522), - [anon_sym___based] = ACTIONS(4522), - [anon_sym___cdecl] = ACTIONS(4522), - [anon_sym___clrcall] = ACTIONS(4522), - [anon_sym___stdcall] = ACTIONS(4522), - [anon_sym___fastcall] = ACTIONS(4522), - [anon_sym___thiscall] = ACTIONS(4522), - [anon_sym___vectorcall] = ACTIONS(4522), - [anon_sym_LBRACE] = ACTIONS(4524), - [anon_sym_signed] = ACTIONS(4522), - [anon_sym_unsigned] = ACTIONS(4522), - [anon_sym_long] = ACTIONS(4522), - [anon_sym_short] = ACTIONS(4522), - [anon_sym_LBRACK] = ACTIONS(4522), - [anon_sym_static] = ACTIONS(4522), - [anon_sym_register] = ACTIONS(4522), - [anon_sym_inline] = ACTIONS(4522), - [anon_sym___inline] = ACTIONS(4522), - [anon_sym___inline__] = ACTIONS(4522), - [anon_sym___forceinline] = ACTIONS(4522), - [anon_sym_thread_local] = ACTIONS(4522), - [anon_sym___thread] = ACTIONS(4522), - [anon_sym_const] = ACTIONS(4522), - [anon_sym_constexpr] = ACTIONS(4522), - [anon_sym_volatile] = ACTIONS(4522), - [anon_sym_restrict] = ACTIONS(4522), - [anon_sym___restrict__] = ACTIONS(4522), - [anon_sym__Atomic] = ACTIONS(4522), - [anon_sym__Noreturn] = ACTIONS(4522), - [anon_sym_noreturn] = ACTIONS(4522), - [anon_sym__Nonnull] = ACTIONS(4522), - [anon_sym_mutable] = ACTIONS(4522), - [anon_sym_constinit] = ACTIONS(4522), - [anon_sym_consteval] = ACTIONS(4522), - [anon_sym_alignas] = ACTIONS(4522), - [anon_sym__Alignas] = ACTIONS(4522), - [sym_primitive_type] = ACTIONS(4522), - [anon_sym_enum] = ACTIONS(4522), - [anon_sym_class] = ACTIONS(4522), - [anon_sym_struct] = ACTIONS(4522), - [anon_sym_union] = ACTIONS(4522), - [anon_sym_if] = ACTIONS(4522), - [anon_sym_switch] = ACTIONS(4522), - [anon_sym_case] = ACTIONS(4522), - [anon_sym_default] = ACTIONS(4522), - [anon_sym_while] = ACTIONS(4522), - [anon_sym_do] = ACTIONS(4522), - [anon_sym_for] = ACTIONS(4522), - [anon_sym_return] = ACTIONS(4522), - [anon_sym_break] = ACTIONS(4522), - [anon_sym_continue] = ACTIONS(4522), - [anon_sym_goto] = ACTIONS(4522), - [anon_sym_not] = ACTIONS(4522), - [anon_sym_compl] = ACTIONS(4522), - [anon_sym_DASH_DASH] = ACTIONS(4524), - [anon_sym_PLUS_PLUS] = ACTIONS(4524), - [anon_sym_sizeof] = ACTIONS(4522), - [anon_sym___alignof__] = ACTIONS(4522), - [anon_sym___alignof] = ACTIONS(4522), - [anon_sym__alignof] = ACTIONS(4522), - [anon_sym_alignof] = ACTIONS(4522), - [anon_sym__Alignof] = ACTIONS(4522), - [anon_sym_offsetof] = ACTIONS(4522), - [anon_sym__Generic] = ACTIONS(4522), - [anon_sym_typename] = ACTIONS(4522), - [anon_sym_asm] = ACTIONS(4522), - [anon_sym___asm__] = ACTIONS(4522), - [anon_sym___asm] = ACTIONS(4522), - [sym_number_literal] = ACTIONS(4524), - [anon_sym_L_SQUOTE] = ACTIONS(4524), - [anon_sym_u_SQUOTE] = ACTIONS(4524), - [anon_sym_U_SQUOTE] = ACTIONS(4524), - [anon_sym_u8_SQUOTE] = ACTIONS(4524), - [anon_sym_SQUOTE] = ACTIONS(4524), - [anon_sym_L_DQUOTE] = ACTIONS(4524), - [anon_sym_u_DQUOTE] = ACTIONS(4524), - [anon_sym_U_DQUOTE] = ACTIONS(4524), - [anon_sym_u8_DQUOTE] = ACTIONS(4524), - [anon_sym_DQUOTE] = ACTIONS(4524), - [sym_true] = ACTIONS(4522), - [sym_false] = ACTIONS(4522), - [anon_sym_NULL] = ACTIONS(4522), - [anon_sym_nullptr] = ACTIONS(4522), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4522), - [anon_sym_decltype] = ACTIONS(4522), - [anon_sym_explicit] = ACTIONS(4522), - [anon_sym_export] = ACTIONS(4522), - [anon_sym_module] = ACTIONS(4522), - [anon_sym_import] = ACTIONS(4522), - [anon_sym_template] = ACTIONS(4522), - [anon_sym_operator] = ACTIONS(4522), - [anon_sym_try] = ACTIONS(4522), - [anon_sym_delete] = ACTIONS(4522), - [anon_sym_throw] = ACTIONS(4522), - [anon_sym_namespace] = ACTIONS(4522), - [anon_sym_static_assert] = ACTIONS(4522), - [anon_sym_concept] = ACTIONS(4522), - [anon_sym_co_return] = ACTIONS(4522), - [anon_sym_co_yield] = ACTIONS(4522), - [anon_sym_R_DQUOTE] = ACTIONS(4524), - [anon_sym_LR_DQUOTE] = ACTIONS(4524), - [anon_sym_uR_DQUOTE] = ACTIONS(4524), - [anon_sym_UR_DQUOTE] = ACTIONS(4524), - [anon_sym_u8R_DQUOTE] = ACTIONS(4524), - [anon_sym_co_await] = ACTIONS(4522), - [anon_sym_new] = ACTIONS(4522), - [anon_sym_requires] = ACTIONS(4522), - [anon_sym_CARET_CARET] = ACTIONS(4524), - [anon_sym_LBRACK_COLON] = ACTIONS(4524), - [sym_this] = ACTIONS(4522), + [ts_builtin_sym_end] = ACTIONS(3768), + [sym_identifier] = ACTIONS(3766), + [aux_sym_preproc_include_token1] = ACTIONS(3766), + [aux_sym_preproc_def_token1] = ACTIONS(3766), + [aux_sym_preproc_if_token1] = ACTIONS(3766), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3766), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3766), + [sym_preproc_directive] = ACTIONS(3766), + [anon_sym_LPAREN2] = ACTIONS(3768), + [anon_sym_BANG] = ACTIONS(3768), + [anon_sym_TILDE] = ACTIONS(3768), + [anon_sym_DASH] = ACTIONS(3766), + [anon_sym_PLUS] = ACTIONS(3766), + [anon_sym_STAR] = ACTIONS(3768), + [anon_sym_AMP_AMP] = ACTIONS(3768), + [anon_sym_AMP] = ACTIONS(3766), + [anon_sym_SEMI] = ACTIONS(3768), + [anon_sym___extension__] = ACTIONS(3766), + [anon_sym_typedef] = ACTIONS(3766), + [anon_sym_virtual] = ACTIONS(3766), + [anon_sym_extern] = ACTIONS(3766), + [anon_sym___attribute__] = ACTIONS(3766), + [anon_sym___attribute] = ACTIONS(3766), + [anon_sym_using] = ACTIONS(3766), + [anon_sym_COLON_COLON] = ACTIONS(3768), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3768), + [anon_sym___declspec] = ACTIONS(3766), + [anon_sym___based] = ACTIONS(3766), + [anon_sym___cdecl] = ACTIONS(3766), + [anon_sym___clrcall] = ACTIONS(3766), + [anon_sym___stdcall] = ACTIONS(3766), + [anon_sym___fastcall] = ACTIONS(3766), + [anon_sym___thiscall] = ACTIONS(3766), + [anon_sym___vectorcall] = ACTIONS(3766), + [anon_sym_LBRACE] = ACTIONS(3768), + [anon_sym_signed] = ACTIONS(3766), + [anon_sym_unsigned] = ACTIONS(3766), + [anon_sym_long] = ACTIONS(3766), + [anon_sym_short] = ACTIONS(3766), + [anon_sym_LBRACK] = ACTIONS(3766), + [anon_sym_static] = ACTIONS(3766), + [anon_sym_register] = ACTIONS(3766), + [anon_sym_inline] = ACTIONS(3766), + [anon_sym___inline] = ACTIONS(3766), + [anon_sym___inline__] = ACTIONS(3766), + [anon_sym___forceinline] = ACTIONS(3766), + [anon_sym_thread_local] = ACTIONS(3766), + [anon_sym___thread] = ACTIONS(3766), + [anon_sym_const] = ACTIONS(3766), + [anon_sym_constexpr] = ACTIONS(3766), + [anon_sym_volatile] = ACTIONS(3766), + [anon_sym_restrict] = ACTIONS(3766), + [anon_sym___restrict__] = ACTIONS(3766), + [anon_sym__Atomic] = ACTIONS(3766), + [anon_sym__Noreturn] = ACTIONS(3766), + [anon_sym_noreturn] = ACTIONS(3766), + [anon_sym__Nonnull] = ACTIONS(3766), + [anon_sym_mutable] = ACTIONS(3766), + [anon_sym_constinit] = ACTIONS(3766), + [anon_sym_consteval] = ACTIONS(3766), + [anon_sym_alignas] = ACTIONS(3766), + [anon_sym__Alignas] = ACTIONS(3766), + [sym_primitive_type] = ACTIONS(3766), + [anon_sym_enum] = ACTIONS(3766), + [anon_sym_class] = ACTIONS(3766), + [anon_sym_struct] = ACTIONS(3766), + [anon_sym_union] = ACTIONS(3766), + [anon_sym_if] = ACTIONS(3766), + [anon_sym_switch] = ACTIONS(3766), + [anon_sym_case] = ACTIONS(3766), + [anon_sym_default] = ACTIONS(3766), + [anon_sym_while] = ACTIONS(3766), + [anon_sym_do] = ACTIONS(3766), + [anon_sym_for] = ACTIONS(3766), + [anon_sym_return] = ACTIONS(3766), + [anon_sym_break] = ACTIONS(3766), + [anon_sym_continue] = ACTIONS(3766), + [anon_sym_goto] = ACTIONS(3766), + [anon_sym_not] = ACTIONS(3766), + [anon_sym_compl] = ACTIONS(3766), + [anon_sym_DASH_DASH] = ACTIONS(3768), + [anon_sym_PLUS_PLUS] = ACTIONS(3768), + [anon_sym_sizeof] = ACTIONS(3766), + [anon_sym___alignof__] = ACTIONS(3766), + [anon_sym___alignof] = ACTIONS(3766), + [anon_sym__alignof] = ACTIONS(3766), + [anon_sym_alignof] = ACTIONS(3766), + [anon_sym__Alignof] = ACTIONS(3766), + [anon_sym_offsetof] = ACTIONS(3766), + [anon_sym__Generic] = ACTIONS(3766), + [anon_sym_typename] = ACTIONS(3766), + [anon_sym_asm] = ACTIONS(3766), + [anon_sym___asm__] = ACTIONS(3766), + [anon_sym___asm] = ACTIONS(3766), + [sym_number_literal] = ACTIONS(3768), + [anon_sym_L_SQUOTE] = ACTIONS(3768), + [anon_sym_u_SQUOTE] = ACTIONS(3768), + [anon_sym_U_SQUOTE] = ACTIONS(3768), + [anon_sym_u8_SQUOTE] = ACTIONS(3768), + [anon_sym_SQUOTE] = ACTIONS(3768), + [anon_sym_L_DQUOTE] = ACTIONS(3768), + [anon_sym_u_DQUOTE] = ACTIONS(3768), + [anon_sym_U_DQUOTE] = ACTIONS(3768), + [anon_sym_u8_DQUOTE] = ACTIONS(3768), + [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_true] = ACTIONS(3766), + [sym_false] = ACTIONS(3766), + [anon_sym_NULL] = ACTIONS(3766), + [anon_sym_nullptr] = ACTIONS(3766), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3766), + [anon_sym_decltype] = ACTIONS(3766), + [anon_sym_explicit] = ACTIONS(3766), + [anon_sym_export] = ACTIONS(3766), + [anon_sym_module] = ACTIONS(3766), + [anon_sym_import] = ACTIONS(3766), + [anon_sym_template] = ACTIONS(3766), + [anon_sym_operator] = ACTIONS(3766), + [anon_sym_try] = ACTIONS(3766), + [anon_sym_delete] = ACTIONS(3766), + [anon_sym_throw] = ACTIONS(3766), + [anon_sym_namespace] = ACTIONS(3766), + [anon_sym_static_assert] = ACTIONS(3766), + [anon_sym_concept] = ACTIONS(3766), + [anon_sym_co_return] = ACTIONS(3766), + [anon_sym_co_yield] = ACTIONS(3766), + [anon_sym_R_DQUOTE] = ACTIONS(3768), + [anon_sym_LR_DQUOTE] = ACTIONS(3768), + [anon_sym_uR_DQUOTE] = ACTIONS(3768), + [anon_sym_UR_DQUOTE] = ACTIONS(3768), + [anon_sym_u8R_DQUOTE] = ACTIONS(3768), + [anon_sym_co_await] = ACTIONS(3766), + [anon_sym_new] = ACTIONS(3766), + [anon_sym_requires] = ACTIONS(3766), + [anon_sym_CARET_CARET] = ACTIONS(3768), + [anon_sym_LBRACK_COLON] = ACTIONS(3768), + [sym_this] = ACTIONS(3766), }, [STATE(1011)] = { - [ts_builtin_sym_end] = ACTIONS(4086), - [sym_identifier] = ACTIONS(4084), - [aux_sym_preproc_include_token1] = ACTIONS(4084), - [aux_sym_preproc_def_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token1] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), - [sym_preproc_directive] = ACTIONS(4084), - [anon_sym_LPAREN2] = ACTIONS(4086), - [anon_sym_BANG] = ACTIONS(4086), - [anon_sym_TILDE] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(4084), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_AMP_AMP] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym___extension__] = ACTIONS(4084), - [anon_sym_typedef] = ACTIONS(4084), - [anon_sym_virtual] = ACTIONS(4084), - [anon_sym_extern] = ACTIONS(4084), - [anon_sym___attribute__] = ACTIONS(4084), - [anon_sym___attribute] = ACTIONS(4084), - [anon_sym_using] = ACTIONS(4084), - [anon_sym_COLON_COLON] = ACTIONS(4086), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), - [anon_sym___declspec] = ACTIONS(4084), - [anon_sym___based] = ACTIONS(4084), - [anon_sym___cdecl] = ACTIONS(4084), - [anon_sym___clrcall] = ACTIONS(4084), - [anon_sym___stdcall] = ACTIONS(4084), - [anon_sym___fastcall] = ACTIONS(4084), - [anon_sym___thiscall] = ACTIONS(4084), - [anon_sym___vectorcall] = ACTIONS(4084), - [anon_sym_LBRACE] = ACTIONS(4086), - [anon_sym_signed] = ACTIONS(4084), - [anon_sym_unsigned] = ACTIONS(4084), - [anon_sym_long] = ACTIONS(4084), - [anon_sym_short] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_register] = ACTIONS(4084), - [anon_sym_inline] = ACTIONS(4084), - [anon_sym___inline] = ACTIONS(4084), - [anon_sym___inline__] = ACTIONS(4084), - [anon_sym___forceinline] = ACTIONS(4084), - [anon_sym_thread_local] = ACTIONS(4084), - [anon_sym___thread] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_constexpr] = ACTIONS(4084), - [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_restrict] = ACTIONS(4084), - [anon_sym___restrict__] = ACTIONS(4084), - [anon_sym__Atomic] = ACTIONS(4084), - [anon_sym__Noreturn] = ACTIONS(4084), - [anon_sym_noreturn] = ACTIONS(4084), - [anon_sym__Nonnull] = ACTIONS(4084), - [anon_sym_mutable] = ACTIONS(4084), - [anon_sym_constinit] = ACTIONS(4084), - [anon_sym_consteval] = ACTIONS(4084), - [anon_sym_alignas] = ACTIONS(4084), - [anon_sym__Alignas] = ACTIONS(4084), - [sym_primitive_type] = ACTIONS(4084), - [anon_sym_enum] = ACTIONS(4084), - [anon_sym_class] = ACTIONS(4084), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_union] = ACTIONS(4084), - [anon_sym_if] = ACTIONS(4084), - [anon_sym_switch] = ACTIONS(4084), - [anon_sym_case] = ACTIONS(4084), - [anon_sym_default] = ACTIONS(4084), - [anon_sym_while] = ACTIONS(4084), - [anon_sym_do] = ACTIONS(4084), - [anon_sym_for] = ACTIONS(4084), - [anon_sym_return] = ACTIONS(4084), - [anon_sym_break] = ACTIONS(4084), - [anon_sym_continue] = ACTIONS(4084), - [anon_sym_goto] = ACTIONS(4084), - [anon_sym_not] = ACTIONS(4084), - [anon_sym_compl] = ACTIONS(4084), - [anon_sym_DASH_DASH] = ACTIONS(4086), - [anon_sym_PLUS_PLUS] = ACTIONS(4086), - [anon_sym_sizeof] = ACTIONS(4084), - [anon_sym___alignof__] = ACTIONS(4084), - [anon_sym___alignof] = ACTIONS(4084), - [anon_sym__alignof] = ACTIONS(4084), - [anon_sym_alignof] = ACTIONS(4084), - [anon_sym__Alignof] = ACTIONS(4084), - [anon_sym_offsetof] = ACTIONS(4084), - [anon_sym__Generic] = ACTIONS(4084), - [anon_sym_typename] = ACTIONS(4084), - [anon_sym_asm] = ACTIONS(4084), - [anon_sym___asm__] = ACTIONS(4084), - [anon_sym___asm] = ACTIONS(4084), - [sym_number_literal] = ACTIONS(4086), - [anon_sym_L_SQUOTE] = ACTIONS(4086), - [anon_sym_u_SQUOTE] = ACTIONS(4086), - [anon_sym_U_SQUOTE] = ACTIONS(4086), - [anon_sym_u8_SQUOTE] = ACTIONS(4086), - [anon_sym_SQUOTE] = ACTIONS(4086), - [anon_sym_L_DQUOTE] = ACTIONS(4086), - [anon_sym_u_DQUOTE] = ACTIONS(4086), - [anon_sym_U_DQUOTE] = ACTIONS(4086), - [anon_sym_u8_DQUOTE] = ACTIONS(4086), - [anon_sym_DQUOTE] = ACTIONS(4086), - [sym_true] = ACTIONS(4084), - [sym_false] = ACTIONS(4084), - [anon_sym_NULL] = ACTIONS(4084), - [anon_sym_nullptr] = ACTIONS(4084), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4084), - [anon_sym_decltype] = ACTIONS(4084), - [anon_sym_explicit] = ACTIONS(4084), - [anon_sym_export] = ACTIONS(4084), - [anon_sym_module] = ACTIONS(4084), - [anon_sym_import] = ACTIONS(4084), - [anon_sym_template] = ACTIONS(4084), - [anon_sym_operator] = ACTIONS(4084), - [anon_sym_try] = ACTIONS(4084), - [anon_sym_delete] = ACTIONS(4084), - [anon_sym_throw] = ACTIONS(4084), - [anon_sym_namespace] = ACTIONS(4084), - [anon_sym_static_assert] = ACTIONS(4084), - [anon_sym_concept] = ACTIONS(4084), - [anon_sym_co_return] = ACTIONS(4084), - [anon_sym_co_yield] = ACTIONS(4084), - [anon_sym_R_DQUOTE] = ACTIONS(4086), - [anon_sym_LR_DQUOTE] = ACTIONS(4086), - [anon_sym_uR_DQUOTE] = ACTIONS(4086), - [anon_sym_UR_DQUOTE] = ACTIONS(4086), - [anon_sym_u8R_DQUOTE] = ACTIONS(4086), - [anon_sym_co_await] = ACTIONS(4084), - [anon_sym_new] = ACTIONS(4084), - [anon_sym_requires] = ACTIONS(4084), - [anon_sym_CARET_CARET] = ACTIONS(4086), - [anon_sym_LBRACK_COLON] = ACTIONS(4086), - [sym_this] = ACTIONS(4084), + [ts_builtin_sym_end] = ACTIONS(3772), + [sym_identifier] = ACTIONS(3770), + [aux_sym_preproc_include_token1] = ACTIONS(3770), + [aux_sym_preproc_def_token1] = ACTIONS(3770), + [aux_sym_preproc_if_token1] = ACTIONS(3770), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3770), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3770), + [sym_preproc_directive] = ACTIONS(3770), + [anon_sym_LPAREN2] = ACTIONS(3772), + [anon_sym_BANG] = ACTIONS(3772), + [anon_sym_TILDE] = ACTIONS(3772), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_PLUS] = ACTIONS(3770), + [anon_sym_STAR] = ACTIONS(3772), + [anon_sym_AMP_AMP] = ACTIONS(3772), + [anon_sym_AMP] = ACTIONS(3770), + [anon_sym_SEMI] = ACTIONS(3772), + [anon_sym___extension__] = ACTIONS(3770), + [anon_sym_typedef] = ACTIONS(3770), + [anon_sym_virtual] = ACTIONS(3770), + [anon_sym_extern] = ACTIONS(3770), + [anon_sym___attribute__] = ACTIONS(3770), + [anon_sym___attribute] = ACTIONS(3770), + [anon_sym_using] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3772), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3772), + [anon_sym___declspec] = ACTIONS(3770), + [anon_sym___based] = ACTIONS(3770), + [anon_sym___cdecl] = ACTIONS(3770), + [anon_sym___clrcall] = ACTIONS(3770), + [anon_sym___stdcall] = ACTIONS(3770), + [anon_sym___fastcall] = ACTIONS(3770), + [anon_sym___thiscall] = ACTIONS(3770), + [anon_sym___vectorcall] = ACTIONS(3770), + [anon_sym_LBRACE] = ACTIONS(3772), + [anon_sym_signed] = ACTIONS(3770), + [anon_sym_unsigned] = ACTIONS(3770), + [anon_sym_long] = ACTIONS(3770), + [anon_sym_short] = ACTIONS(3770), + [anon_sym_LBRACK] = ACTIONS(3770), + [anon_sym_static] = ACTIONS(3770), + [anon_sym_register] = ACTIONS(3770), + [anon_sym_inline] = ACTIONS(3770), + [anon_sym___inline] = ACTIONS(3770), + [anon_sym___inline__] = ACTIONS(3770), + [anon_sym___forceinline] = ACTIONS(3770), + [anon_sym_thread_local] = ACTIONS(3770), + [anon_sym___thread] = ACTIONS(3770), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_constexpr] = ACTIONS(3770), + [anon_sym_volatile] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3770), + [anon_sym___restrict__] = ACTIONS(3770), + [anon_sym__Atomic] = ACTIONS(3770), + [anon_sym__Noreturn] = ACTIONS(3770), + [anon_sym_noreturn] = ACTIONS(3770), + [anon_sym__Nonnull] = ACTIONS(3770), + [anon_sym_mutable] = ACTIONS(3770), + [anon_sym_constinit] = ACTIONS(3770), + [anon_sym_consteval] = ACTIONS(3770), + [anon_sym_alignas] = ACTIONS(3770), + [anon_sym__Alignas] = ACTIONS(3770), + [sym_primitive_type] = ACTIONS(3770), + [anon_sym_enum] = ACTIONS(3770), + [anon_sym_class] = ACTIONS(3770), + [anon_sym_struct] = ACTIONS(3770), + [anon_sym_union] = ACTIONS(3770), + [anon_sym_if] = ACTIONS(3770), + [anon_sym_switch] = ACTIONS(3770), + [anon_sym_case] = ACTIONS(3770), + [anon_sym_default] = ACTIONS(3770), + [anon_sym_while] = ACTIONS(3770), + [anon_sym_do] = ACTIONS(3770), + [anon_sym_for] = ACTIONS(3770), + [anon_sym_return] = ACTIONS(3770), + [anon_sym_break] = ACTIONS(3770), + [anon_sym_continue] = ACTIONS(3770), + [anon_sym_goto] = ACTIONS(3770), + [anon_sym_not] = ACTIONS(3770), + [anon_sym_compl] = ACTIONS(3770), + [anon_sym_DASH_DASH] = ACTIONS(3772), + [anon_sym_PLUS_PLUS] = ACTIONS(3772), + [anon_sym_sizeof] = ACTIONS(3770), + [anon_sym___alignof__] = ACTIONS(3770), + [anon_sym___alignof] = ACTIONS(3770), + [anon_sym__alignof] = ACTIONS(3770), + [anon_sym_alignof] = ACTIONS(3770), + [anon_sym__Alignof] = ACTIONS(3770), + [anon_sym_offsetof] = ACTIONS(3770), + [anon_sym__Generic] = ACTIONS(3770), + [anon_sym_typename] = ACTIONS(3770), + [anon_sym_asm] = ACTIONS(3770), + [anon_sym___asm__] = ACTIONS(3770), + [anon_sym___asm] = ACTIONS(3770), + [sym_number_literal] = ACTIONS(3772), + [anon_sym_L_SQUOTE] = ACTIONS(3772), + [anon_sym_u_SQUOTE] = ACTIONS(3772), + [anon_sym_U_SQUOTE] = ACTIONS(3772), + [anon_sym_u8_SQUOTE] = ACTIONS(3772), + [anon_sym_SQUOTE] = ACTIONS(3772), + [anon_sym_L_DQUOTE] = ACTIONS(3772), + [anon_sym_u_DQUOTE] = ACTIONS(3772), + [anon_sym_U_DQUOTE] = ACTIONS(3772), + [anon_sym_u8_DQUOTE] = ACTIONS(3772), + [anon_sym_DQUOTE] = ACTIONS(3772), + [sym_true] = ACTIONS(3770), + [sym_false] = ACTIONS(3770), + [anon_sym_NULL] = ACTIONS(3770), + [anon_sym_nullptr] = ACTIONS(3770), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3770), + [anon_sym_decltype] = ACTIONS(3770), + [anon_sym_explicit] = ACTIONS(3770), + [anon_sym_export] = ACTIONS(3770), + [anon_sym_module] = ACTIONS(3770), + [anon_sym_import] = ACTIONS(3770), + [anon_sym_template] = ACTIONS(3770), + [anon_sym_operator] = ACTIONS(3770), + [anon_sym_try] = ACTIONS(3770), + [anon_sym_delete] = ACTIONS(3770), + [anon_sym_throw] = ACTIONS(3770), + [anon_sym_namespace] = ACTIONS(3770), + [anon_sym_static_assert] = ACTIONS(3770), + [anon_sym_concept] = ACTIONS(3770), + [anon_sym_co_return] = ACTIONS(3770), + [anon_sym_co_yield] = ACTIONS(3770), + [anon_sym_R_DQUOTE] = ACTIONS(3772), + [anon_sym_LR_DQUOTE] = ACTIONS(3772), + [anon_sym_uR_DQUOTE] = ACTIONS(3772), + [anon_sym_UR_DQUOTE] = ACTIONS(3772), + [anon_sym_u8R_DQUOTE] = ACTIONS(3772), + [anon_sym_co_await] = ACTIONS(3770), + [anon_sym_new] = ACTIONS(3770), + [anon_sym_requires] = ACTIONS(3770), + [anon_sym_CARET_CARET] = ACTIONS(3772), + [anon_sym_LBRACK_COLON] = ACTIONS(3772), + [sym_this] = ACTIONS(3770), }, [STATE(1012)] = { - [sym_identifier] = ACTIONS(4500), - [aux_sym_preproc_include_token1] = ACTIONS(4500), - [aux_sym_preproc_def_token1] = ACTIONS(4500), - [aux_sym_preproc_if_token1] = ACTIONS(4500), - [aux_sym_preproc_if_token2] = ACTIONS(4500), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4500), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4500), - [sym_preproc_directive] = ACTIONS(4500), - [anon_sym_LPAREN2] = ACTIONS(4502), - [anon_sym_BANG] = ACTIONS(4502), - [anon_sym_TILDE] = ACTIONS(4502), - [anon_sym_DASH] = ACTIONS(4500), - [anon_sym_PLUS] = ACTIONS(4500), - [anon_sym_STAR] = ACTIONS(4502), - [anon_sym_AMP_AMP] = ACTIONS(4502), - [anon_sym_AMP] = ACTIONS(4500), - [anon_sym_SEMI] = ACTIONS(4502), - [anon_sym___extension__] = ACTIONS(4500), - [anon_sym_typedef] = ACTIONS(4500), - [anon_sym_virtual] = ACTIONS(4500), - [anon_sym_extern] = ACTIONS(4500), - [anon_sym___attribute__] = ACTIONS(4500), - [anon_sym___attribute] = ACTIONS(4500), - [anon_sym_using] = ACTIONS(4500), - [anon_sym_COLON_COLON] = ACTIONS(4502), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4502), - [anon_sym___declspec] = ACTIONS(4500), - [anon_sym___based] = ACTIONS(4500), - [anon_sym___cdecl] = ACTIONS(4500), - [anon_sym___clrcall] = ACTIONS(4500), - [anon_sym___stdcall] = ACTIONS(4500), - [anon_sym___fastcall] = ACTIONS(4500), - [anon_sym___thiscall] = ACTIONS(4500), - [anon_sym___vectorcall] = ACTIONS(4500), - [anon_sym_LBRACE] = ACTIONS(4502), - [anon_sym_signed] = ACTIONS(4500), - [anon_sym_unsigned] = ACTIONS(4500), - [anon_sym_long] = ACTIONS(4500), - [anon_sym_short] = ACTIONS(4500), - [anon_sym_LBRACK] = ACTIONS(4500), - [anon_sym_static] = ACTIONS(4500), - [anon_sym_register] = ACTIONS(4500), - [anon_sym_inline] = ACTIONS(4500), - [anon_sym___inline] = ACTIONS(4500), - [anon_sym___inline__] = ACTIONS(4500), - [anon_sym___forceinline] = ACTIONS(4500), - [anon_sym_thread_local] = ACTIONS(4500), - [anon_sym___thread] = ACTIONS(4500), - [anon_sym_const] = ACTIONS(4500), - [anon_sym_constexpr] = ACTIONS(4500), - [anon_sym_volatile] = ACTIONS(4500), - [anon_sym_restrict] = ACTIONS(4500), - [anon_sym___restrict__] = ACTIONS(4500), - [anon_sym__Atomic] = ACTIONS(4500), - [anon_sym__Noreturn] = ACTIONS(4500), - [anon_sym_noreturn] = ACTIONS(4500), - [anon_sym__Nonnull] = ACTIONS(4500), - [anon_sym_mutable] = ACTIONS(4500), - [anon_sym_constinit] = ACTIONS(4500), - [anon_sym_consteval] = ACTIONS(4500), - [anon_sym_alignas] = ACTIONS(4500), - [anon_sym__Alignas] = ACTIONS(4500), - [sym_primitive_type] = ACTIONS(4500), - [anon_sym_enum] = ACTIONS(4500), - [anon_sym_class] = ACTIONS(4500), - [anon_sym_struct] = ACTIONS(4500), - [anon_sym_union] = ACTIONS(4500), - [anon_sym_if] = ACTIONS(4500), - [anon_sym_switch] = ACTIONS(4500), - [anon_sym_case] = ACTIONS(4500), - [anon_sym_default] = ACTIONS(4500), - [anon_sym_while] = ACTIONS(4500), - [anon_sym_do] = ACTIONS(4500), - [anon_sym_for] = ACTIONS(4500), - [anon_sym_return] = ACTIONS(4500), - [anon_sym_break] = ACTIONS(4500), - [anon_sym_continue] = ACTIONS(4500), - [anon_sym_goto] = ACTIONS(4500), - [anon_sym_not] = ACTIONS(4500), - [anon_sym_compl] = ACTIONS(4500), - [anon_sym_DASH_DASH] = ACTIONS(4502), - [anon_sym_PLUS_PLUS] = ACTIONS(4502), - [anon_sym_sizeof] = ACTIONS(4500), - [anon_sym___alignof__] = ACTIONS(4500), - [anon_sym___alignof] = ACTIONS(4500), - [anon_sym__alignof] = ACTIONS(4500), - [anon_sym_alignof] = ACTIONS(4500), - [anon_sym__Alignof] = ACTIONS(4500), - [anon_sym_offsetof] = ACTIONS(4500), - [anon_sym__Generic] = ACTIONS(4500), - [anon_sym_typename] = ACTIONS(4500), - [anon_sym_asm] = ACTIONS(4500), - [anon_sym___asm__] = ACTIONS(4500), - [anon_sym___asm] = ACTIONS(4500), - [sym_number_literal] = ACTIONS(4502), - [anon_sym_L_SQUOTE] = ACTIONS(4502), - [anon_sym_u_SQUOTE] = ACTIONS(4502), - [anon_sym_U_SQUOTE] = ACTIONS(4502), - [anon_sym_u8_SQUOTE] = ACTIONS(4502), - [anon_sym_SQUOTE] = ACTIONS(4502), - [anon_sym_L_DQUOTE] = ACTIONS(4502), - [anon_sym_u_DQUOTE] = ACTIONS(4502), - [anon_sym_U_DQUOTE] = ACTIONS(4502), - [anon_sym_u8_DQUOTE] = ACTIONS(4502), - [anon_sym_DQUOTE] = ACTIONS(4502), - [sym_true] = ACTIONS(4500), - [sym_false] = ACTIONS(4500), - [anon_sym_NULL] = ACTIONS(4500), - [anon_sym_nullptr] = ACTIONS(4500), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4500), - [anon_sym_decltype] = ACTIONS(4500), - [anon_sym_explicit] = ACTIONS(4500), - [anon_sym_export] = ACTIONS(4500), - [anon_sym_module] = ACTIONS(4500), - [anon_sym_import] = ACTIONS(4500), - [anon_sym_template] = ACTIONS(4500), - [anon_sym_operator] = ACTIONS(4500), - [anon_sym_try] = ACTIONS(4500), - [anon_sym_delete] = ACTIONS(4500), - [anon_sym_throw] = ACTIONS(4500), - [anon_sym_namespace] = ACTIONS(4500), - [anon_sym_static_assert] = ACTIONS(4500), - [anon_sym_concept] = ACTIONS(4500), - [anon_sym_co_return] = ACTIONS(4500), - [anon_sym_co_yield] = ACTIONS(4500), - [anon_sym_R_DQUOTE] = ACTIONS(4502), - [anon_sym_LR_DQUOTE] = ACTIONS(4502), - [anon_sym_uR_DQUOTE] = ACTIONS(4502), - [anon_sym_UR_DQUOTE] = ACTIONS(4502), - [anon_sym_u8R_DQUOTE] = ACTIONS(4502), - [anon_sym_co_await] = ACTIONS(4500), - [anon_sym_new] = ACTIONS(4500), - [anon_sym_requires] = ACTIONS(4500), - [anon_sym_CARET_CARET] = ACTIONS(4502), - [anon_sym_LBRACK_COLON] = ACTIONS(4502), - [sym_this] = ACTIONS(4500), + [ts_builtin_sym_end] = ACTIONS(4658), + [sym_identifier] = ACTIONS(4656), + [aux_sym_preproc_include_token1] = ACTIONS(4656), + [aux_sym_preproc_def_token1] = ACTIONS(4656), + [aux_sym_preproc_if_token1] = ACTIONS(4656), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4656), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4656), + [sym_preproc_directive] = ACTIONS(4656), + [anon_sym_LPAREN2] = ACTIONS(4658), + [anon_sym_BANG] = ACTIONS(4658), + [anon_sym_TILDE] = ACTIONS(4658), + [anon_sym_DASH] = ACTIONS(4656), + [anon_sym_PLUS] = ACTIONS(4656), + [anon_sym_STAR] = ACTIONS(4658), + [anon_sym_AMP_AMP] = ACTIONS(4658), + [anon_sym_AMP] = ACTIONS(4656), + [anon_sym_SEMI] = ACTIONS(4658), + [anon_sym___extension__] = ACTIONS(4656), + [anon_sym_typedef] = ACTIONS(4656), + [anon_sym_virtual] = ACTIONS(4656), + [anon_sym_extern] = ACTIONS(4656), + [anon_sym___attribute__] = ACTIONS(4656), + [anon_sym___attribute] = ACTIONS(4656), + [anon_sym_using] = ACTIONS(4656), + [anon_sym_COLON_COLON] = ACTIONS(4658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4658), + [anon_sym___declspec] = ACTIONS(4656), + [anon_sym___based] = ACTIONS(4656), + [anon_sym___cdecl] = ACTIONS(4656), + [anon_sym___clrcall] = ACTIONS(4656), + [anon_sym___stdcall] = ACTIONS(4656), + [anon_sym___fastcall] = ACTIONS(4656), + [anon_sym___thiscall] = ACTIONS(4656), + [anon_sym___vectorcall] = ACTIONS(4656), + [anon_sym_LBRACE] = ACTIONS(4658), + [anon_sym_signed] = ACTIONS(4656), + [anon_sym_unsigned] = ACTIONS(4656), + [anon_sym_long] = ACTIONS(4656), + [anon_sym_short] = ACTIONS(4656), + [anon_sym_LBRACK] = ACTIONS(4656), + [anon_sym_static] = ACTIONS(4656), + [anon_sym_register] = ACTIONS(4656), + [anon_sym_inline] = ACTIONS(4656), + [anon_sym___inline] = ACTIONS(4656), + [anon_sym___inline__] = ACTIONS(4656), + [anon_sym___forceinline] = ACTIONS(4656), + [anon_sym_thread_local] = ACTIONS(4656), + [anon_sym___thread] = ACTIONS(4656), + [anon_sym_const] = ACTIONS(4656), + [anon_sym_constexpr] = ACTIONS(4656), + [anon_sym_volatile] = ACTIONS(4656), + [anon_sym_restrict] = ACTIONS(4656), + [anon_sym___restrict__] = ACTIONS(4656), + [anon_sym__Atomic] = ACTIONS(4656), + [anon_sym__Noreturn] = ACTIONS(4656), + [anon_sym_noreturn] = ACTIONS(4656), + [anon_sym__Nonnull] = ACTIONS(4656), + [anon_sym_mutable] = ACTIONS(4656), + [anon_sym_constinit] = ACTIONS(4656), + [anon_sym_consteval] = ACTIONS(4656), + [anon_sym_alignas] = ACTIONS(4656), + [anon_sym__Alignas] = ACTIONS(4656), + [sym_primitive_type] = ACTIONS(4656), + [anon_sym_enum] = ACTIONS(4656), + [anon_sym_class] = ACTIONS(4656), + [anon_sym_struct] = ACTIONS(4656), + [anon_sym_union] = ACTIONS(4656), + [anon_sym_if] = ACTIONS(4656), + [anon_sym_switch] = ACTIONS(4656), + [anon_sym_case] = ACTIONS(4656), + [anon_sym_default] = ACTIONS(4656), + [anon_sym_while] = ACTIONS(4656), + [anon_sym_do] = ACTIONS(4656), + [anon_sym_for] = ACTIONS(4656), + [anon_sym_return] = ACTIONS(4656), + [anon_sym_break] = ACTIONS(4656), + [anon_sym_continue] = ACTIONS(4656), + [anon_sym_goto] = ACTIONS(4656), + [anon_sym_not] = ACTIONS(4656), + [anon_sym_compl] = ACTIONS(4656), + [anon_sym_DASH_DASH] = ACTIONS(4658), + [anon_sym_PLUS_PLUS] = ACTIONS(4658), + [anon_sym_sizeof] = ACTIONS(4656), + [anon_sym___alignof__] = ACTIONS(4656), + [anon_sym___alignof] = ACTIONS(4656), + [anon_sym__alignof] = ACTIONS(4656), + [anon_sym_alignof] = ACTIONS(4656), + [anon_sym__Alignof] = ACTIONS(4656), + [anon_sym_offsetof] = ACTIONS(4656), + [anon_sym__Generic] = ACTIONS(4656), + [anon_sym_typename] = ACTIONS(4656), + [anon_sym_asm] = ACTIONS(4656), + [anon_sym___asm__] = ACTIONS(4656), + [anon_sym___asm] = ACTIONS(4656), + [sym_number_literal] = ACTIONS(4658), + [anon_sym_L_SQUOTE] = ACTIONS(4658), + [anon_sym_u_SQUOTE] = ACTIONS(4658), + [anon_sym_U_SQUOTE] = ACTIONS(4658), + [anon_sym_u8_SQUOTE] = ACTIONS(4658), + [anon_sym_SQUOTE] = ACTIONS(4658), + [anon_sym_L_DQUOTE] = ACTIONS(4658), + [anon_sym_u_DQUOTE] = ACTIONS(4658), + [anon_sym_U_DQUOTE] = ACTIONS(4658), + [anon_sym_u8_DQUOTE] = ACTIONS(4658), + [anon_sym_DQUOTE] = ACTIONS(4658), + [sym_true] = ACTIONS(4656), + [sym_false] = ACTIONS(4656), + [anon_sym_NULL] = ACTIONS(4656), + [anon_sym_nullptr] = ACTIONS(4656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4656), + [anon_sym_decltype] = ACTIONS(4656), + [anon_sym_explicit] = ACTIONS(4656), + [anon_sym_export] = ACTIONS(4656), + [anon_sym_module] = ACTIONS(4656), + [anon_sym_import] = ACTIONS(4656), + [anon_sym_template] = ACTIONS(4656), + [anon_sym_operator] = ACTIONS(4656), + [anon_sym_try] = ACTIONS(4656), + [anon_sym_delete] = ACTIONS(4656), + [anon_sym_throw] = ACTIONS(4656), + [anon_sym_namespace] = ACTIONS(4656), + [anon_sym_static_assert] = ACTIONS(4656), + [anon_sym_concept] = ACTIONS(4656), + [anon_sym_co_return] = ACTIONS(4656), + [anon_sym_co_yield] = ACTIONS(4656), + [anon_sym_R_DQUOTE] = ACTIONS(4658), + [anon_sym_LR_DQUOTE] = ACTIONS(4658), + [anon_sym_uR_DQUOTE] = ACTIONS(4658), + [anon_sym_UR_DQUOTE] = ACTIONS(4658), + [anon_sym_u8R_DQUOTE] = ACTIONS(4658), + [anon_sym_co_await] = ACTIONS(4656), + [anon_sym_new] = ACTIONS(4656), + [anon_sym_requires] = ACTIONS(4656), + [anon_sym_CARET_CARET] = ACTIONS(4658), + [anon_sym_LBRACK_COLON] = ACTIONS(4658), + [sym_this] = ACTIONS(4656), }, [STATE(1013)] = { - [ts_builtin_sym_end] = ACTIONS(4090), - [sym_identifier] = ACTIONS(4088), - [aux_sym_preproc_include_token1] = ACTIONS(4088), - [aux_sym_preproc_def_token1] = ACTIONS(4088), - [aux_sym_preproc_if_token1] = ACTIONS(4088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), - [sym_preproc_directive] = ACTIONS(4088), - [anon_sym_LPAREN2] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4090), - [anon_sym_TILDE] = ACTIONS(4090), - [anon_sym_DASH] = ACTIONS(4088), - [anon_sym_PLUS] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym___extension__] = ACTIONS(4088), - [anon_sym_typedef] = ACTIONS(4088), - [anon_sym_virtual] = ACTIONS(4088), - [anon_sym_extern] = ACTIONS(4088), - [anon_sym___attribute__] = ACTIONS(4088), - [anon_sym___attribute] = ACTIONS(4088), - [anon_sym_using] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), - [anon_sym___declspec] = ACTIONS(4088), - [anon_sym___based] = ACTIONS(4088), - [anon_sym___cdecl] = ACTIONS(4088), - [anon_sym___clrcall] = ACTIONS(4088), - [anon_sym___stdcall] = ACTIONS(4088), - [anon_sym___fastcall] = ACTIONS(4088), - [anon_sym___thiscall] = ACTIONS(4088), - [anon_sym___vectorcall] = ACTIONS(4088), - [anon_sym_LBRACE] = ACTIONS(4090), - [anon_sym_signed] = ACTIONS(4088), - [anon_sym_unsigned] = ACTIONS(4088), - [anon_sym_long] = ACTIONS(4088), - [anon_sym_short] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(4088), - [anon_sym_static] = ACTIONS(4088), - [anon_sym_register] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym___inline] = ACTIONS(4088), - [anon_sym___inline__] = ACTIONS(4088), - [anon_sym___forceinline] = ACTIONS(4088), - [anon_sym_thread_local] = ACTIONS(4088), - [anon_sym___thread] = ACTIONS(4088), - [anon_sym_const] = ACTIONS(4088), - [anon_sym_constexpr] = ACTIONS(4088), - [anon_sym_volatile] = ACTIONS(4088), - [anon_sym_restrict] = ACTIONS(4088), - [anon_sym___restrict__] = ACTIONS(4088), - [anon_sym__Atomic] = ACTIONS(4088), - [anon_sym__Noreturn] = ACTIONS(4088), - [anon_sym_noreturn] = ACTIONS(4088), - [anon_sym__Nonnull] = ACTIONS(4088), - [anon_sym_mutable] = ACTIONS(4088), - [anon_sym_constinit] = ACTIONS(4088), - [anon_sym_consteval] = ACTIONS(4088), - [anon_sym_alignas] = ACTIONS(4088), - [anon_sym__Alignas] = ACTIONS(4088), - [sym_primitive_type] = ACTIONS(4088), - [anon_sym_enum] = ACTIONS(4088), - [anon_sym_class] = ACTIONS(4088), - [anon_sym_struct] = ACTIONS(4088), - [anon_sym_union] = ACTIONS(4088), - [anon_sym_if] = ACTIONS(4088), - [anon_sym_switch] = ACTIONS(4088), - [anon_sym_case] = ACTIONS(4088), - [anon_sym_default] = ACTIONS(4088), - [anon_sym_while] = ACTIONS(4088), - [anon_sym_do] = ACTIONS(4088), - [anon_sym_for] = ACTIONS(4088), - [anon_sym_return] = ACTIONS(4088), - [anon_sym_break] = ACTIONS(4088), - [anon_sym_continue] = ACTIONS(4088), - [anon_sym_goto] = ACTIONS(4088), - [anon_sym_not] = ACTIONS(4088), - [anon_sym_compl] = ACTIONS(4088), - [anon_sym_DASH_DASH] = ACTIONS(4090), - [anon_sym_PLUS_PLUS] = ACTIONS(4090), - [anon_sym_sizeof] = ACTIONS(4088), - [anon_sym___alignof__] = ACTIONS(4088), - [anon_sym___alignof] = ACTIONS(4088), - [anon_sym__alignof] = ACTIONS(4088), - [anon_sym_alignof] = ACTIONS(4088), - [anon_sym__Alignof] = ACTIONS(4088), - [anon_sym_offsetof] = ACTIONS(4088), - [anon_sym__Generic] = ACTIONS(4088), - [anon_sym_typename] = ACTIONS(4088), - [anon_sym_asm] = ACTIONS(4088), - [anon_sym___asm__] = ACTIONS(4088), - [anon_sym___asm] = ACTIONS(4088), - [sym_number_literal] = ACTIONS(4090), - [anon_sym_L_SQUOTE] = ACTIONS(4090), - [anon_sym_u_SQUOTE] = ACTIONS(4090), - [anon_sym_U_SQUOTE] = ACTIONS(4090), - [anon_sym_u8_SQUOTE] = ACTIONS(4090), - [anon_sym_SQUOTE] = ACTIONS(4090), - [anon_sym_L_DQUOTE] = ACTIONS(4090), - [anon_sym_u_DQUOTE] = ACTIONS(4090), - [anon_sym_U_DQUOTE] = ACTIONS(4090), - [anon_sym_u8_DQUOTE] = ACTIONS(4090), - [anon_sym_DQUOTE] = ACTIONS(4090), - [sym_true] = ACTIONS(4088), - [sym_false] = ACTIONS(4088), - [anon_sym_NULL] = ACTIONS(4088), - [anon_sym_nullptr] = ACTIONS(4088), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4088), - [anon_sym_decltype] = ACTIONS(4088), - [anon_sym_explicit] = ACTIONS(4088), - [anon_sym_export] = ACTIONS(4088), - [anon_sym_module] = ACTIONS(4088), - [anon_sym_import] = ACTIONS(4088), - [anon_sym_template] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_try] = ACTIONS(4088), - [anon_sym_delete] = ACTIONS(4088), - [anon_sym_throw] = ACTIONS(4088), - [anon_sym_namespace] = ACTIONS(4088), - [anon_sym_static_assert] = ACTIONS(4088), - [anon_sym_concept] = ACTIONS(4088), - [anon_sym_co_return] = ACTIONS(4088), - [anon_sym_co_yield] = ACTIONS(4088), - [anon_sym_R_DQUOTE] = ACTIONS(4090), - [anon_sym_LR_DQUOTE] = ACTIONS(4090), - [anon_sym_uR_DQUOTE] = ACTIONS(4090), - [anon_sym_UR_DQUOTE] = ACTIONS(4090), - [anon_sym_u8R_DQUOTE] = ACTIONS(4090), - [anon_sym_co_await] = ACTIONS(4088), - [anon_sym_new] = ACTIONS(4088), - [anon_sym_requires] = ACTIONS(4088), - [anon_sym_CARET_CARET] = ACTIONS(4090), - [anon_sym_LBRACK_COLON] = ACTIONS(4090), - [sym_this] = ACTIONS(4088), + [ts_builtin_sym_end] = ACTIONS(3879), + [sym_identifier] = ACTIONS(3877), + [aux_sym_preproc_include_token1] = ACTIONS(3877), + [aux_sym_preproc_def_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token1] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3877), + [sym_preproc_directive] = ACTIONS(3877), + [anon_sym_LPAREN2] = ACTIONS(3879), + [anon_sym_BANG] = ACTIONS(3879), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_DASH] = ACTIONS(3877), + [anon_sym_PLUS] = ACTIONS(3877), + [anon_sym_STAR] = ACTIONS(3879), + [anon_sym_AMP_AMP] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_SEMI] = ACTIONS(3879), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_typedef] = ACTIONS(3877), + [anon_sym_virtual] = ACTIONS(3877), + [anon_sym_extern] = ACTIONS(3877), + [anon_sym___attribute__] = ACTIONS(3877), + [anon_sym___attribute] = ACTIONS(3877), + [anon_sym_using] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3879), + [anon_sym___declspec] = ACTIONS(3877), + [anon_sym___based] = ACTIONS(3877), + [anon_sym___cdecl] = ACTIONS(3877), + [anon_sym___clrcall] = ACTIONS(3877), + [anon_sym___stdcall] = ACTIONS(3877), + [anon_sym___fastcall] = ACTIONS(3877), + [anon_sym___thiscall] = ACTIONS(3877), + [anon_sym___vectorcall] = ACTIONS(3877), + [anon_sym_LBRACE] = ACTIONS(3879), + [anon_sym_signed] = ACTIONS(3877), + [anon_sym_unsigned] = ACTIONS(3877), + [anon_sym_long] = ACTIONS(3877), + [anon_sym_short] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_static] = ACTIONS(3877), + [anon_sym_register] = ACTIONS(3877), + [anon_sym_inline] = ACTIONS(3877), + [anon_sym___inline] = ACTIONS(3877), + [anon_sym___inline__] = ACTIONS(3877), + [anon_sym___forceinline] = ACTIONS(3877), + [anon_sym_thread_local] = ACTIONS(3877), + [anon_sym___thread] = ACTIONS(3877), + [anon_sym_const] = ACTIONS(3877), + [anon_sym_constexpr] = ACTIONS(3877), + [anon_sym_volatile] = ACTIONS(3877), + [anon_sym_restrict] = ACTIONS(3877), + [anon_sym___restrict__] = ACTIONS(3877), + [anon_sym__Atomic] = ACTIONS(3877), + [anon_sym__Noreturn] = ACTIONS(3877), + [anon_sym_noreturn] = ACTIONS(3877), + [anon_sym__Nonnull] = ACTIONS(3877), + [anon_sym_mutable] = ACTIONS(3877), + [anon_sym_constinit] = ACTIONS(3877), + [anon_sym_consteval] = ACTIONS(3877), + [anon_sym_alignas] = ACTIONS(3877), + [anon_sym__Alignas] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(3877), + [anon_sym_enum] = ACTIONS(3877), + [anon_sym_class] = ACTIONS(3877), + [anon_sym_struct] = ACTIONS(3877), + [anon_sym_union] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(3877), + [anon_sym_switch] = ACTIONS(3877), + [anon_sym_case] = ACTIONS(3877), + [anon_sym_default] = ACTIONS(3877), + [anon_sym_while] = ACTIONS(3877), + [anon_sym_do] = ACTIONS(3877), + [anon_sym_for] = ACTIONS(3877), + [anon_sym_return] = ACTIONS(3877), + [anon_sym_break] = ACTIONS(3877), + [anon_sym_continue] = ACTIONS(3877), + [anon_sym_goto] = ACTIONS(3877), + [anon_sym_not] = ACTIONS(3877), + [anon_sym_compl] = ACTIONS(3877), + [anon_sym_DASH_DASH] = ACTIONS(3879), + [anon_sym_PLUS_PLUS] = ACTIONS(3879), + [anon_sym_sizeof] = ACTIONS(3877), + [anon_sym___alignof__] = ACTIONS(3877), + [anon_sym___alignof] = ACTIONS(3877), + [anon_sym__alignof] = ACTIONS(3877), + [anon_sym_alignof] = ACTIONS(3877), + [anon_sym__Alignof] = ACTIONS(3877), + [anon_sym_offsetof] = ACTIONS(3877), + [anon_sym__Generic] = ACTIONS(3877), + [anon_sym_typename] = ACTIONS(3877), + [anon_sym_asm] = ACTIONS(3877), + [anon_sym___asm__] = ACTIONS(3877), + [anon_sym___asm] = ACTIONS(3877), + [sym_number_literal] = ACTIONS(3879), + [anon_sym_L_SQUOTE] = ACTIONS(3879), + [anon_sym_u_SQUOTE] = ACTIONS(3879), + [anon_sym_U_SQUOTE] = ACTIONS(3879), + [anon_sym_u8_SQUOTE] = ACTIONS(3879), + [anon_sym_SQUOTE] = ACTIONS(3879), + [anon_sym_L_DQUOTE] = ACTIONS(3879), + [anon_sym_u_DQUOTE] = ACTIONS(3879), + [anon_sym_U_DQUOTE] = ACTIONS(3879), + [anon_sym_u8_DQUOTE] = ACTIONS(3879), + [anon_sym_DQUOTE] = ACTIONS(3879), + [sym_true] = ACTIONS(3877), + [sym_false] = ACTIONS(3877), + [anon_sym_NULL] = ACTIONS(3877), + [anon_sym_nullptr] = ACTIONS(3877), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3877), + [anon_sym_decltype] = ACTIONS(3877), + [anon_sym_explicit] = ACTIONS(3877), + [anon_sym_export] = ACTIONS(3877), + [anon_sym_module] = ACTIONS(3877), + [anon_sym_import] = ACTIONS(3877), + [anon_sym_template] = ACTIONS(3877), + [anon_sym_operator] = ACTIONS(3877), + [anon_sym_try] = ACTIONS(3877), + [anon_sym_delete] = ACTIONS(3877), + [anon_sym_throw] = ACTIONS(3877), + [anon_sym_namespace] = ACTIONS(3877), + [anon_sym_static_assert] = ACTIONS(3877), + [anon_sym_concept] = ACTIONS(3877), + [anon_sym_co_return] = ACTIONS(3877), + [anon_sym_co_yield] = ACTIONS(3877), + [anon_sym_R_DQUOTE] = ACTIONS(3879), + [anon_sym_LR_DQUOTE] = ACTIONS(3879), + [anon_sym_uR_DQUOTE] = ACTIONS(3879), + [anon_sym_UR_DQUOTE] = ACTIONS(3879), + [anon_sym_u8R_DQUOTE] = ACTIONS(3879), + [anon_sym_co_await] = ACTIONS(3877), + [anon_sym_new] = ACTIONS(3877), + [anon_sym_requires] = ACTIONS(3877), + [anon_sym_CARET_CARET] = ACTIONS(3879), + [anon_sym_LBRACK_COLON] = ACTIONS(3879), + [sym_this] = ACTIONS(3877), }, [STATE(1014)] = { - [ts_builtin_sym_end] = ACTIONS(4520), - [sym_identifier] = ACTIONS(4518), - [aux_sym_preproc_include_token1] = ACTIONS(4518), - [aux_sym_preproc_def_token1] = ACTIONS(4518), - [aux_sym_preproc_if_token1] = ACTIONS(4518), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4518), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4518), - [sym_preproc_directive] = ACTIONS(4518), - [anon_sym_LPAREN2] = ACTIONS(4520), - [anon_sym_BANG] = ACTIONS(4520), - [anon_sym_TILDE] = ACTIONS(4520), - [anon_sym_DASH] = ACTIONS(4518), - [anon_sym_PLUS] = ACTIONS(4518), - [anon_sym_STAR] = ACTIONS(4520), - [anon_sym_AMP_AMP] = ACTIONS(4520), - [anon_sym_AMP] = ACTIONS(4518), - [anon_sym_SEMI] = ACTIONS(4520), - [anon_sym___extension__] = ACTIONS(4518), - [anon_sym_typedef] = ACTIONS(4518), - [anon_sym_virtual] = ACTIONS(4518), - [anon_sym_extern] = ACTIONS(4518), - [anon_sym___attribute__] = ACTIONS(4518), - [anon_sym___attribute] = ACTIONS(4518), - [anon_sym_using] = ACTIONS(4518), - [anon_sym_COLON_COLON] = ACTIONS(4520), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4520), - [anon_sym___declspec] = ACTIONS(4518), - [anon_sym___based] = ACTIONS(4518), - [anon_sym___cdecl] = ACTIONS(4518), - [anon_sym___clrcall] = ACTIONS(4518), - [anon_sym___stdcall] = ACTIONS(4518), - [anon_sym___fastcall] = ACTIONS(4518), - [anon_sym___thiscall] = ACTIONS(4518), - [anon_sym___vectorcall] = ACTIONS(4518), - [anon_sym_LBRACE] = ACTIONS(4520), - [anon_sym_signed] = ACTIONS(4518), - [anon_sym_unsigned] = ACTIONS(4518), - [anon_sym_long] = ACTIONS(4518), - [anon_sym_short] = ACTIONS(4518), - [anon_sym_LBRACK] = ACTIONS(4518), - [anon_sym_static] = ACTIONS(4518), - [anon_sym_register] = ACTIONS(4518), - [anon_sym_inline] = ACTIONS(4518), - [anon_sym___inline] = ACTIONS(4518), - [anon_sym___inline__] = ACTIONS(4518), - [anon_sym___forceinline] = ACTIONS(4518), - [anon_sym_thread_local] = ACTIONS(4518), - [anon_sym___thread] = ACTIONS(4518), - [anon_sym_const] = ACTIONS(4518), - [anon_sym_constexpr] = ACTIONS(4518), - [anon_sym_volatile] = ACTIONS(4518), - [anon_sym_restrict] = ACTIONS(4518), - [anon_sym___restrict__] = ACTIONS(4518), - [anon_sym__Atomic] = ACTIONS(4518), - [anon_sym__Noreturn] = ACTIONS(4518), - [anon_sym_noreturn] = ACTIONS(4518), - [anon_sym__Nonnull] = ACTIONS(4518), - [anon_sym_mutable] = ACTIONS(4518), - [anon_sym_constinit] = ACTIONS(4518), - [anon_sym_consteval] = ACTIONS(4518), - [anon_sym_alignas] = ACTIONS(4518), - [anon_sym__Alignas] = ACTIONS(4518), - [sym_primitive_type] = ACTIONS(4518), - [anon_sym_enum] = ACTIONS(4518), - [anon_sym_class] = ACTIONS(4518), - [anon_sym_struct] = ACTIONS(4518), - [anon_sym_union] = ACTIONS(4518), - [anon_sym_if] = ACTIONS(4518), - [anon_sym_switch] = ACTIONS(4518), - [anon_sym_case] = ACTIONS(4518), - [anon_sym_default] = ACTIONS(4518), - [anon_sym_while] = ACTIONS(4518), - [anon_sym_do] = ACTIONS(4518), - [anon_sym_for] = ACTIONS(4518), - [anon_sym_return] = ACTIONS(4518), - [anon_sym_break] = ACTIONS(4518), - [anon_sym_continue] = ACTIONS(4518), - [anon_sym_goto] = ACTIONS(4518), - [anon_sym_not] = ACTIONS(4518), - [anon_sym_compl] = ACTIONS(4518), - [anon_sym_DASH_DASH] = ACTIONS(4520), - [anon_sym_PLUS_PLUS] = ACTIONS(4520), - [anon_sym_sizeof] = ACTIONS(4518), - [anon_sym___alignof__] = ACTIONS(4518), - [anon_sym___alignof] = ACTIONS(4518), - [anon_sym__alignof] = ACTIONS(4518), - [anon_sym_alignof] = ACTIONS(4518), - [anon_sym__Alignof] = ACTIONS(4518), - [anon_sym_offsetof] = ACTIONS(4518), - [anon_sym__Generic] = ACTIONS(4518), - [anon_sym_typename] = ACTIONS(4518), - [anon_sym_asm] = ACTIONS(4518), - [anon_sym___asm__] = ACTIONS(4518), - [anon_sym___asm] = ACTIONS(4518), - [sym_number_literal] = ACTIONS(4520), - [anon_sym_L_SQUOTE] = ACTIONS(4520), - [anon_sym_u_SQUOTE] = ACTIONS(4520), - [anon_sym_U_SQUOTE] = ACTIONS(4520), - [anon_sym_u8_SQUOTE] = ACTIONS(4520), - [anon_sym_SQUOTE] = ACTIONS(4520), - [anon_sym_L_DQUOTE] = ACTIONS(4520), - [anon_sym_u_DQUOTE] = ACTIONS(4520), - [anon_sym_U_DQUOTE] = ACTIONS(4520), - [anon_sym_u8_DQUOTE] = ACTIONS(4520), - [anon_sym_DQUOTE] = ACTIONS(4520), - [sym_true] = ACTIONS(4518), - [sym_false] = ACTIONS(4518), - [anon_sym_NULL] = ACTIONS(4518), - [anon_sym_nullptr] = ACTIONS(4518), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4518), - [anon_sym_decltype] = ACTIONS(4518), - [anon_sym_explicit] = ACTIONS(4518), - [anon_sym_export] = ACTIONS(4518), - [anon_sym_module] = ACTIONS(4518), - [anon_sym_import] = ACTIONS(4518), - [anon_sym_template] = ACTIONS(4518), - [anon_sym_operator] = ACTIONS(4518), - [anon_sym_try] = ACTIONS(4518), - [anon_sym_delete] = ACTIONS(4518), - [anon_sym_throw] = ACTIONS(4518), - [anon_sym_namespace] = ACTIONS(4518), - [anon_sym_static_assert] = ACTIONS(4518), - [anon_sym_concept] = ACTIONS(4518), - [anon_sym_co_return] = ACTIONS(4518), - [anon_sym_co_yield] = ACTIONS(4518), - [anon_sym_R_DQUOTE] = ACTIONS(4520), - [anon_sym_LR_DQUOTE] = ACTIONS(4520), - [anon_sym_uR_DQUOTE] = ACTIONS(4520), - [anon_sym_UR_DQUOTE] = ACTIONS(4520), - [anon_sym_u8R_DQUOTE] = ACTIONS(4520), - [anon_sym_co_await] = ACTIONS(4518), - [anon_sym_new] = ACTIONS(4518), - [anon_sym_requires] = ACTIONS(4518), - [anon_sym_CARET_CARET] = ACTIONS(4520), - [anon_sym_LBRACK_COLON] = ACTIONS(4520), - [sym_this] = ACTIONS(4518), + [ts_builtin_sym_end] = ACTIONS(4116), + [sym_identifier] = ACTIONS(4114), + [aux_sym_preproc_include_token1] = ACTIONS(4114), + [aux_sym_preproc_def_token1] = ACTIONS(4114), + [aux_sym_preproc_if_token1] = ACTIONS(4114), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4114), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4114), + [sym_preproc_directive] = ACTIONS(4114), + [anon_sym_LPAREN2] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4116), + [anon_sym_TILDE] = ACTIONS(4116), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4116), + [anon_sym_AMP_AMP] = ACTIONS(4116), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4116), + [anon_sym___extension__] = ACTIONS(4114), + [anon_sym_typedef] = ACTIONS(4114), + [anon_sym_virtual] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym___attribute__] = ACTIONS(4114), + [anon_sym___attribute] = ACTIONS(4114), + [anon_sym_using] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4116), + [anon_sym___declspec] = ACTIONS(4114), + [anon_sym___based] = ACTIONS(4114), + [anon_sym___cdecl] = ACTIONS(4114), + [anon_sym___clrcall] = ACTIONS(4114), + [anon_sym___stdcall] = ACTIONS(4114), + [anon_sym___fastcall] = ACTIONS(4114), + [anon_sym___thiscall] = ACTIONS(4114), + [anon_sym___vectorcall] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_signed] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [anon_sym_LBRACK] = ACTIONS(4114), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym___inline] = ACTIONS(4114), + [anon_sym___inline__] = ACTIONS(4114), + [anon_sym___forceinline] = ACTIONS(4114), + [anon_sym_thread_local] = ACTIONS(4114), + [anon_sym___thread] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym___restrict__] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym__Noreturn] = ACTIONS(4114), + [anon_sym_noreturn] = ACTIONS(4114), + [anon_sym__Nonnull] = ACTIONS(4114), + [anon_sym_mutable] = ACTIONS(4114), + [anon_sym_constinit] = ACTIONS(4114), + [anon_sym_consteval] = ACTIONS(4114), + [anon_sym_alignas] = ACTIONS(4114), + [anon_sym__Alignas] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_class] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_switch] = ACTIONS(4114), + [anon_sym_case] = ACTIONS(4114), + [anon_sym_default] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_do] = ACTIONS(4114), + [anon_sym_for] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_goto] = ACTIONS(4114), + [anon_sym_not] = ACTIONS(4114), + [anon_sym_compl] = ACTIONS(4114), + [anon_sym_DASH_DASH] = ACTIONS(4116), + [anon_sym_PLUS_PLUS] = ACTIONS(4116), + [anon_sym_sizeof] = ACTIONS(4114), + [anon_sym___alignof__] = ACTIONS(4114), + [anon_sym___alignof] = ACTIONS(4114), + [anon_sym__alignof] = ACTIONS(4114), + [anon_sym_alignof] = ACTIONS(4114), + [anon_sym__Alignof] = ACTIONS(4114), + [anon_sym_offsetof] = ACTIONS(4114), + [anon_sym__Generic] = ACTIONS(4114), + [anon_sym_typename] = ACTIONS(4114), + [anon_sym_asm] = ACTIONS(4114), + [anon_sym___asm__] = ACTIONS(4114), + [anon_sym___asm] = ACTIONS(4114), + [sym_number_literal] = ACTIONS(4116), + [anon_sym_L_SQUOTE] = ACTIONS(4116), + [anon_sym_u_SQUOTE] = ACTIONS(4116), + [anon_sym_U_SQUOTE] = ACTIONS(4116), + [anon_sym_u8_SQUOTE] = ACTIONS(4116), + [anon_sym_SQUOTE] = ACTIONS(4116), + [anon_sym_L_DQUOTE] = ACTIONS(4116), + [anon_sym_u_DQUOTE] = ACTIONS(4116), + [anon_sym_U_DQUOTE] = ACTIONS(4116), + [anon_sym_u8_DQUOTE] = ACTIONS(4116), + [anon_sym_DQUOTE] = ACTIONS(4116), + [sym_true] = ACTIONS(4114), + [sym_false] = ACTIONS(4114), + [anon_sym_NULL] = ACTIONS(4114), + [anon_sym_nullptr] = ACTIONS(4114), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4114), + [anon_sym_decltype] = ACTIONS(4114), + [anon_sym_explicit] = ACTIONS(4114), + [anon_sym_export] = ACTIONS(4114), + [anon_sym_module] = ACTIONS(4114), + [anon_sym_import] = ACTIONS(4114), + [anon_sym_template] = ACTIONS(4114), + [anon_sym_operator] = ACTIONS(4114), + [anon_sym_try] = ACTIONS(4114), + [anon_sym_delete] = ACTIONS(4114), + [anon_sym_throw] = ACTIONS(4114), + [anon_sym_namespace] = ACTIONS(4114), + [anon_sym_static_assert] = ACTIONS(4114), + [anon_sym_concept] = ACTIONS(4114), + [anon_sym_co_return] = ACTIONS(4114), + [anon_sym_co_yield] = ACTIONS(4114), + [anon_sym_R_DQUOTE] = ACTIONS(4116), + [anon_sym_LR_DQUOTE] = ACTIONS(4116), + [anon_sym_uR_DQUOTE] = ACTIONS(4116), + [anon_sym_UR_DQUOTE] = ACTIONS(4116), + [anon_sym_u8R_DQUOTE] = ACTIONS(4116), + [anon_sym_co_await] = ACTIONS(4114), + [anon_sym_new] = ACTIONS(4114), + [anon_sym_requires] = ACTIONS(4114), + [anon_sym_CARET_CARET] = ACTIONS(4116), + [anon_sym_LBRACK_COLON] = ACTIONS(4116), + [sym_this] = ACTIONS(4114), }, [STATE(1015)] = { - [sym_preproc_def] = STATE(884), - [sym_preproc_function_def] = STATE(884), - [sym_preproc_call] = STATE(884), - [sym_preproc_if_in_field_declaration_list] = STATE(884), - [sym_preproc_ifdef_in_field_declaration_list] = STATE(884), - [sym_type_definition] = STATE(884), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(8092), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4641), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__field_declaration_list_item] = STATE(884), - [sym_field_declaration] = STATE(884), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(884), - [sym_operator_cast] = STATE(9211), - [sym_inline_method_definition] = STATE(884), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(884), - [sym_operator_cast_declaration] = STATE(884), - [sym_constructor_or_destructor_definition] = STATE(884), - [sym_constructor_or_destructor_declaration] = STATE(884), - [sym_friend_declaration] = STATE(884), - [sym_access_specifier] = STATE(11030), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_using_declaration] = STATE(884), - [sym_alias_declaration] = STATE(884), - [sym_static_assert_declaration] = STATE(884), - [sym_consteval_block_declaration] = STATE(884), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7784), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(884), - [aux_sym__declaration_specifiers_repeat1] = STATE(2883), - [aux_sym_attributed_declarator_repeat1] = STATE(9455), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(3424), - [aux_sym_preproc_def_token1] = ACTIONS(4686), - [aux_sym_preproc_if_token1] = ACTIONS(4688), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4690), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4690), - [sym_preproc_directive] = ACTIONS(4692), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(4714), - [anon_sym___extension__] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_virtual] = ACTIONS(39), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_using] = ACTIONS(4700), - [anon_sym_COLON_COLON] = ACTIONS(3458), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym___based] = ACTIONS(53), - [anon_sym_RBRACE] = ACTIONS(4888), - [anon_sym_signed] = ACTIONS(59), - [anon_sym_unsigned] = ACTIONS(59), - [anon_sym_long] = ACTIONS(59), - [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(3460), - [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(4704), - [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(4706), - [anon_sym_alignas] = ACTIONS(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_template] = ACTIONS(4708), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_static_assert] = ACTIONS(4712), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_expression] = STATE(6909), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_initializer_list] = STATE(7368), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(3931), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(2382), + [anon_sym_RBRACK] = ACTIONS(2384), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [anon_sym_asm] = ACTIONS(3963), + [anon_sym___asm__] = ACTIONS(3963), + [anon_sym___asm] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(3965), + [anon_sym_L_SQUOTE] = ACTIONS(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1016)] = { - [sym_expression] = STATE(6752), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_initializer_list] = STATE(7209), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2386), - [anon_sym_GT_GT] = ACTIONS(2386), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(2384), - [anon_sym_RBRACK] = ACTIONS(2386), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_expression] = STATE(6780), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_initializer_list] = STATE(7385), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2382), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2382), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_GT2] = ACTIONS(2384), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, [STATE(1017)] = { - [sym_expression] = STATE(6863), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_initializer_list] = STATE(5986), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(3694), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2386), - [anon_sym_GT_GT] = ACTIONS(2386), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(2384), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(3714), + [sym_expression] = STATE(5842), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_initializer_list] = STATE(5943), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(4335), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), + [anon_sym_GT_EQ] = ACTIONS(2384), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2384), + [anon_sym_GT_GT] = ACTIONS(2384), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2384), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -204327,13 +204326,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -204350,252 +204349,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1018)] = { - [sym_expression] = STATE(6826), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_initializer_list] = STATE(7360), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), + [sym_expression] = STATE(6877), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_initializer_list] = STATE(5943), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2384), + [anon_sym_COMMA] = ACTIONS(2384), + [anon_sym_LPAREN2] = ACTIONS(2384), + [anon_sym_BANG] = ACTIONS(3792), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(2382), + [anon_sym_PLUS] = ACTIONS(2382), + [anon_sym_STAR] = ACTIONS(2384), + [anon_sym_SLASH] = ACTIONS(2382), + [anon_sym_PERCENT] = ACTIONS(2384), + [anon_sym_PIPE_PIPE] = ACTIONS(2384), + [anon_sym_AMP_AMP] = ACTIONS(2384), + [anon_sym_PIPE] = ACTIONS(2382), + [anon_sym_CARET] = ACTIONS(2382), + [anon_sym_AMP] = ACTIONS(2382), + [anon_sym_EQ_EQ] = ACTIONS(2384), + [anon_sym_BANG_EQ] = ACTIONS(2384), + [anon_sym_GT] = ACTIONS(2382), [anon_sym_GT_EQ] = ACTIONS(2384), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2386), + [anon_sym_LT_EQ] = ACTIONS(2382), + [anon_sym_LT] = ACTIONS(2382), + [anon_sym_LT_LT] = ACTIONS(2384), [anon_sym_GT_GT] = ACTIONS(2384), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_GT2] = ACTIONS(2386), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1019)] = { - [sym_expression] = STATE(5919), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_initializer_list] = STATE(5986), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2386), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_LPAREN2] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(4222), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(2384), - [anon_sym_PLUS] = ACTIONS(2384), - [anon_sym_STAR] = ACTIONS(2386), - [anon_sym_SLASH] = ACTIONS(2384), - [anon_sym_PERCENT] = ACTIONS(2386), - [anon_sym_PIPE_PIPE] = ACTIONS(2386), - [anon_sym_AMP_AMP] = ACTIONS(2386), - [anon_sym_PIPE] = ACTIONS(2384), - [anon_sym_CARET] = ACTIONS(2384), - [anon_sym_AMP] = ACTIONS(2384), - [anon_sym_EQ_EQ] = ACTIONS(2386), - [anon_sym_BANG_EQ] = ACTIONS(2386), - [anon_sym_GT] = ACTIONS(2384), - [anon_sym_GT_EQ] = ACTIONS(2386), - [anon_sym_LT_EQ] = ACTIONS(2384), - [anon_sym_LT] = ACTIONS(2384), - [anon_sym_LT_LT] = ACTIONS(2386), - [anon_sym_GT_GT] = ACTIONS(2386), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2386), - [anon_sym_LBRACE] = ACTIONS(4922), - [anon_sym_LBRACK] = ACTIONS(2384), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_QMARK] = ACTIONS(2386), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_LT_EQ_GT] = ACTIONS(2386), - [anon_sym_or] = ACTIONS(2384), - [anon_sym_and] = ACTIONS(2384), - [anon_sym_bitor] = ACTIONS(2384), - [anon_sym_xor] = ACTIONS(2384), - [anon_sym_bitand] = ACTIONS(2384), - [anon_sym_not_eq] = ACTIONS(2384), - [anon_sym_DASH_DASH] = ACTIONS(2386), - [anon_sym_PLUS_PLUS] = ACTIONS(2386), - [anon_sym_sizeof] = ACTIONS(4234), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(2382), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(2382), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_QMARK] = ACTIONS(2384), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_LT_EQ_GT] = ACTIONS(2384), + [anon_sym_or] = ACTIONS(2382), + [anon_sym_and] = ACTIONS(2382), + [anon_sym_bitor] = ACTIONS(2382), + [anon_sym_xor] = ACTIONS(2382), + [anon_sym_bitand] = ACTIONS(2382), + [anon_sym_not_eq] = ACTIONS(2382), + [anon_sym_DASH_DASH] = ACTIONS(2384), + [anon_sym_PLUS_PLUS] = ACTIONS(2384), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -204603,13 +204464,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(2384), - [anon_sym_DOT_STAR] = ACTIONS(2386), - [anon_sym_DASH_GT] = ACTIONS(2386), + [anon_sym_DOT] = ACTIONS(2382), + [anon_sym_DOT_STAR] = ACTIONS(2384), + [anon_sym_DASH_GT] = ACTIONS(2384), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -204626,244 +204487,899 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1019)] = { + [sym_expression] = STATE(7166), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(4926), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3931), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_SLASH] = ACTIONS(4928), + [anon_sym_PERCENT] = ACTIONS(4926), + [anon_sym_PIPE_PIPE] = ACTIONS(4926), + [anon_sym_AMP_AMP] = ACTIONS(4926), + [anon_sym_PIPE] = ACTIONS(4928), + [anon_sym_CARET] = ACTIONS(4928), + [anon_sym_AMP] = ACTIONS(4930), + [anon_sym_EQ_EQ] = ACTIONS(4926), + [anon_sym_BANG_EQ] = ACTIONS(4926), + [anon_sym_GT] = ACTIONS(4928), + [anon_sym_GT_EQ] = ACTIONS(4926), + [anon_sym_LT_EQ] = ACTIONS(4928), + [anon_sym_LT] = ACTIONS(4928), + [anon_sym_LT_LT] = ACTIONS(4926), + [anon_sym_GT_GT] = ACTIONS(4926), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(4926), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_QMARK] = ACTIONS(4926), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_LT_EQ_GT] = ACTIONS(4926), + [anon_sym_or] = ACTIONS(4928), + [anon_sym_and] = ACTIONS(4928), + [anon_sym_bitor] = ACTIONS(4928), + [anon_sym_xor] = ACTIONS(4928), + [anon_sym_bitand] = ACTIONS(4928), + [anon_sym_not_eq] = ACTIONS(4928), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [anon_sym_asm] = ACTIONS(3963), + [anon_sym___asm__] = ACTIONS(3963), + [anon_sym___asm] = ACTIONS(3963), + [anon_sym_DOT] = ACTIONS(4928), + [anon_sym_DOT_STAR] = ACTIONS(4926), + [anon_sym_DASH_GT] = ACTIONS(4926), + [sym_number_literal] = ACTIONS(3965), + [anon_sym_L_SQUOTE] = ACTIONS(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, [STATE(1020)] = { - [sym_expression] = STATE(7014), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_DOT_DOT_DOT] = ACTIONS(4928), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_SLASH] = ACTIONS(4930), - [anon_sym_PERCENT] = ACTIONS(4928), - [anon_sym_PIPE_PIPE] = ACTIONS(4928), - [anon_sym_AMP_AMP] = ACTIONS(4928), - [anon_sym_PIPE] = ACTIONS(4930), - [anon_sym_CARET] = ACTIONS(4930), - [anon_sym_AMP] = ACTIONS(4932), - [anon_sym_EQ_EQ] = ACTIONS(4928), - [anon_sym_BANG_EQ] = ACTIONS(4928), - [anon_sym_GT] = ACTIONS(4930), - [anon_sym_GT_EQ] = ACTIONS(4928), - [anon_sym_LT_EQ] = ACTIONS(4930), - [anon_sym_LT] = ACTIONS(4930), - [anon_sym_LT_LT] = ACTIONS(4928), - [anon_sym_GT_GT] = ACTIONS(4928), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(4928), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_QMARK] = ACTIONS(4928), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_LT_EQ_GT] = ACTIONS(4928), - [anon_sym_or] = ACTIONS(4930), - [anon_sym_and] = ACTIONS(4930), - [anon_sym_bitor] = ACTIONS(4930), - [anon_sym_xor] = ACTIONS(4930), - [anon_sym_bitand] = ACTIONS(4930), - [anon_sym_not_eq] = ACTIONS(4930), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [anon_sym_DOT] = ACTIONS(4930), - [anon_sym_DOT_STAR] = ACTIONS(4928), - [anon_sym_DASH_GT] = ACTIONS(4928), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_expression] = STATE(4673), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(4932), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(4935), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(4941), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(4944), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4947), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(4950), + [sym_this] = ACTIONS(2416), }, [STATE(1021)] = { - [sym_expression] = STATE(6845), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4934), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4937), - [anon_sym_COLON_COLON] = ACTIONS(4940), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(4943), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [sym_expression] = STATE(5772), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3995), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3998), + [anon_sym_COLON_COLON] = ACTIONS(4001), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(4004), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(4007), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4010), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(4013), + [sym_this] = ACTIONS(2362), + }, + [STATE(1022)] = { + [sym_expression] = STATE(4847), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(4953), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4956), + [anon_sym_COLON_COLON] = ACTIONS(4959), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(4941), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(4944), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4947), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(4950), + [sym_this] = ACTIONS(2416), + }, + [STATE(1023)] = { + [sym_expression] = STATE(6755), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4962), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4965), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(4971), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4974), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4977), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(4980), + [sym_this] = ACTIONS(3971), + }, + [STATE(1024)] = { + [sym_expression] = STATE(5305), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(4983), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4986), + [anon_sym_COLON_COLON] = ACTIONS(4989), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(4992), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(4995), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4998), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(5001), + [sym_this] = ACTIONS(3056), + }, + [STATE(1025)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(3104), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3128), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -204871,7 +205387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4946), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -204891,503 +205407,634 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(4238), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(1022)] = { - [sym_expression] = STATE(6918), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4949), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4952), - [anon_sym_COLON_COLON] = ACTIONS(4955), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(4958), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4961), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(4964), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(4967), - [sym_this] = ACTIONS(3232), + [STATE(1026)] = { + [sym_expression] = STATE(5316), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(5004), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5007), + [anon_sym_COLON_COLON] = ACTIONS(5010), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(5013), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(5016), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(5019), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(5022), + [sym_this] = ACTIONS(3004), }, - [STATE(1023)] = { - [sym_expression] = STATE(5393), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(4970), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4973), - [anon_sym_COLON_COLON] = ACTIONS(4976), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(4979), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(4982), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(4985), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(4988), - [sym_this] = ACTIONS(2418), + [STATE(1027)] = { + [sym_expression] = STATE(5073), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(5025), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5031), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(5034), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(5037), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(5040), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(5043), + [sym_this] = ACTIONS(2274), }, - [STATE(1024)] = { - [sym_expression] = STATE(4996), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(4991), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4994), - [anon_sym_COLON_COLON] = ACTIONS(4997), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(4979), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(4982), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(4985), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(4988), - [sym_this] = ACTIONS(2418), + [STATE(1028)] = { + [sym_expression] = STATE(4412), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(4932), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(5046), + [anon_sym_COLON_COLON] = ACTIONS(5049), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(4941), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(4944), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4947), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(4950), + [sym_this] = ACTIONS(2416), }, - [STATE(1025)] = { - [sym_expression] = STATE(6327), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5000), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(5003), - [anon_sym_COLON_COLON] = ACTIONS(5006), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1029)] = { + [sym_expression] = STATE(5388), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(4932), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(5052), + [anon_sym_COLON_COLON] = ACTIONS(5055), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(4941), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(4944), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4947), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(4950), + [sym_this] = ACTIONS(2416), + }, + [STATE(1030)] = { + [sym_expression] = STATE(6531), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(5058), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(5061), + [anon_sym_COLON_COLON] = ACTIONS(5064), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -205395,523 +206042,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(5009), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(1026)] = { - [sym_expression] = STATE(5325), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(5012), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(5015), - [anon_sym_COLON_COLON] = ACTIONS(5018), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(5021), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(5024), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(5027), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(5030), - [sym_this] = ACTIONS(2990), - }, - [STATE(1027)] = { - [sym_expression] = STATE(5474), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(4970), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(5033), - [anon_sym_COLON_COLON] = ACTIONS(5036), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(4979), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(4982), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(4985), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(4988), - [sym_this] = ACTIONS(2418), - }, - [STATE(1028)] = { - [sym_expression] = STATE(6775), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(5039), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5042), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(5048), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(5051), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(5054), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(5057), - [sym_this] = ACTIONS(4342), - }, - [STATE(1029)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(3106), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(3123), - [anon_sym_COLON_COLON] = 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(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1031)] = { + [sym_expression] = STATE(6857), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(5067), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(5070), + [anon_sym_COLON_COLON] = ACTIONS(5073), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(5076), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -205919,7 +206173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(5079), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -205939,110 +206193,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(147), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(1030)] = { - [sym_expression] = STATE(6516), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(5060), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(5063), - [anon_sym_COLON_COLON] = ACTIONS(5066), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1032)] = { + [sym_expression] = STATE(6358), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5082), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(5085), + [anon_sym_COLON_COLON] = ACTIONS(5088), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -206050,392 +206304,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(5091), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(1031)] = { - [sym_expression] = STATE(4658), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(4970), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(5069), - [anon_sym_COLON_COLON] = ACTIONS(5072), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(4979), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(4982), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(4985), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(4988), - [sym_this] = ACTIONS(2418), + [STATE(1033)] = { + [sym_expression] = STATE(6834), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(5094), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(5097), + [anon_sym_COLON_COLON] = ACTIONS(5100), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(5103), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(5106), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(5109), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(5112), + [sym_this] = ACTIONS(3260), }, - [STATE(1032)] = { - [sym_expression] = STATE(4491), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(4970), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(5075), - [anon_sym_COLON_COLON] = ACTIONS(5078), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(4979), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(4982), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(4985), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(4988), - [sym_this] = ACTIONS(2418), + [STATE(1034)] = { + [sym_expression] = STATE(5473), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(4932), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(5115), + [anon_sym_COLON_COLON] = ACTIONS(5118), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(4941), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(4944), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4947), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(4950), + [sym_this] = ACTIONS(2416), }, - [STATE(1033)] = { - [sym_expression] = STATE(6884), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(5081), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(5084), - [anon_sym_COLON_COLON] = ACTIONS(5087), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(3136), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1035)] = { + [sym_expression] = STATE(6895), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(5121), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(5124), + [anon_sym_COLON_COLON] = ACTIONS(5127), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -206443,7 +206697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(3139), + [anon_sym_typename] = ACTIONS(3137), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -206463,480 +206717,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(3145), - [anon_sym_delete] = ACTIONS(3718), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(3143), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(3148), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(3146), [sym_this] = ACTIONS(237), }, - [STATE(1034)] = { - [sym_expression] = STATE(5119), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(5090), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(5093), - [anon_sym_COLON_COLON] = ACTIONS(5096), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(5099), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(5102), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(5105), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(5108), - [sym_this] = ACTIONS(2276), - }, - [STATE(1035)] = { - [sym_expression] = STATE(5773), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(4362), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(4365), - [anon_sym_COLON_COLON] = ACTIONS(4368), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(4371), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(4374), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(4377), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(4380), - [sym_this] = ACTIONS(2364), - }, [STATE(1036)] = { - [sym_expression] = STATE(5447), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(5111), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5114), - [anon_sym_COLON_COLON] = ACTIONS(5117), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(1670), - [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(5120), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(5123), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(5126), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(5129), - [sym_this] = ACTIONS(3074), - }, - [STATE(1037)] = { - [sym__declaration_modifiers] = STATE(2831), - [sym__declaration_specifiers] = STATE(8797), - [sym_attribute_specifier] = STATE(2831), - [sym_attribute_declaration] = STATE(2831), - [sym_ms_declspec_modifier] = STATE(2831), - [sym_storage_class_specifier] = STATE(2831), - [sym_type_qualifier] = STATE(2831), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(6389), - [sym_sized_type_specifier] = STATE(6050), - [sym_enum_specifier] = STATE(6050), - [sym_struct_specifier] = STATE(6050), - [sym_union_specifier] = STATE(6050), - [sym_placeholder_type_specifier] = STATE(6050), - [sym_decltype_auto] = STATE(6031), - [sym_decltype] = STATE(5973), - [sym_class_specifier] = STATE(6050), - [sym_dependent_type] = STATE(6050), - [sym_template_type] = STATE(5365), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8757), - [sym_qualified_type_identifier] = STATE(5574), - [sym_splice_specifier] = STATE(4802), - [sym__splice_specialization_specifier] = STATE(5472), - [sym_splice_type_specifier] = STATE(5973), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2831), - [aux_sym_sized_type_specifier_repeat1] = STATE(4387), - [sym_identifier] = ACTIONS(5132), - [anon_sym_COMMA] = ACTIONS(5134), - [anon_sym_BANG] = ACTIONS(5136), - [anon_sym_TILDE] = ACTIONS(5134), - [anon_sym_DASH] = ACTIONS(5136), - [anon_sym_PLUS] = ACTIONS(5136), - [anon_sym_STAR] = ACTIONS(5136), - [anon_sym_SLASH] = ACTIONS(5136), - [anon_sym_PERCENT] = ACTIONS(5136), - [anon_sym_PIPE_PIPE] = ACTIONS(5134), - [anon_sym_AMP_AMP] = ACTIONS(5134), - [anon_sym_PIPE] = ACTIONS(5136), - [anon_sym_CARET] = ACTIONS(5136), - [anon_sym_AMP] = ACTIONS(5136), - [anon_sym_EQ_EQ] = ACTIONS(5134), - [anon_sym_BANG_EQ] = ACTIONS(5134), - [anon_sym_GT] = ACTIONS(5136), - [anon_sym_GT_EQ] = ACTIONS(5134), - [anon_sym_LT_EQ] = ACTIONS(5136), - [anon_sym_LT] = ACTIONS(5136), - [anon_sym_LT_LT] = ACTIONS(5136), - [anon_sym_GT_GT] = ACTIONS(5136), + [sym__declaration_modifiers] = STATE(2748), + [sym__declaration_specifiers] = STATE(8776), + [sym_attribute_specifier] = STATE(2748), + [sym_attribute_declaration] = STATE(2748), + [sym_ms_declspec_modifier] = STATE(2748), + [sym_storage_class_specifier] = STATE(2748), + [sym_type_qualifier] = STATE(2748), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(6417), + [sym_sized_type_specifier] = STATE(6059), + [sym_enum_specifier] = STATE(6059), + [sym_struct_specifier] = STATE(6059), + [sym_union_specifier] = STATE(6059), + [sym_placeholder_type_specifier] = STATE(6059), + [sym_decltype_auto] = STATE(6056), + [sym_decltype] = STATE(5990), + [sym_class_specifier] = STATE(6059), + [sym_dependent_type] = STATE(6059), + [sym_template_type] = STATE(5341), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8753), + [sym_qualified_type_identifier] = STATE(5691), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(5354), + [sym_splice_type_specifier] = STATE(5990), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2748), + [aux_sym_sized_type_specifier_repeat1] = STATE(4393), + [sym_identifier] = ACTIONS(5130), + [anon_sym_COMMA] = ACTIONS(5132), + [anon_sym_BANG] = ACTIONS(5134), + [anon_sym_TILDE] = ACTIONS(5132), + [anon_sym_DASH] = ACTIONS(5134), + [anon_sym_PLUS] = ACTIONS(5134), + [anon_sym_STAR] = ACTIONS(5134), + [anon_sym_SLASH] = ACTIONS(5134), + [anon_sym_PERCENT] = ACTIONS(5134), + [anon_sym_PIPE_PIPE] = ACTIONS(5132), + [anon_sym_AMP_AMP] = ACTIONS(5132), + [anon_sym_PIPE] = ACTIONS(5134), + [anon_sym_CARET] = ACTIONS(5134), + [anon_sym_AMP] = ACTIONS(5134), + [anon_sym_EQ_EQ] = ACTIONS(5132), + [anon_sym_BANG_EQ] = ACTIONS(5132), + [anon_sym_GT] = ACTIONS(5134), + [anon_sym_GT_EQ] = ACTIONS(5132), + [anon_sym_LT_EQ] = ACTIONS(5134), + [anon_sym_LT] = ACTIONS(5134), + [anon_sym_LT_LT] = ACTIONS(5134), + [anon_sym_GT_GT] = ACTIONS(5134), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5138), + [anon_sym_virtual] = ACTIONS(5136), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(5142), - [anon_sym_unsigned] = ACTIONS(5142), - [anon_sym_long] = ACTIONS(5142), - [anon_sym_short] = ACTIONS(5142), + [anon_sym_signed] = ACTIONS(5140), + [anon_sym_unsigned] = ACTIONS(5140), + [anon_sym_long] = ACTIONS(5140), + [anon_sym_short] = ACTIONS(5140), [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(5136), + [anon_sym_EQ] = ACTIONS(5134), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), [anon_sym___inline] = ACTIONS(63), @@ -206958,115 +206819,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(5144), - [anon_sym_enum] = ACTIONS(5146), - [anon_sym_class] = ACTIONS(5148), - [anon_sym_struct] = ACTIONS(5150), - [anon_sym_union] = ACTIONS(5152), - [anon_sym_STAR_EQ] = ACTIONS(5134), - [anon_sym_SLASH_EQ] = ACTIONS(5134), - [anon_sym_PERCENT_EQ] = ACTIONS(5134), - [anon_sym_PLUS_EQ] = ACTIONS(5134), - [anon_sym_DASH_EQ] = ACTIONS(5134), - [anon_sym_LT_LT_EQ] = ACTIONS(5134), - [anon_sym_GT_GT_EQ] = ACTIONS(5134), - [anon_sym_AMP_EQ] = ACTIONS(5134), - [anon_sym_CARET_EQ] = ACTIONS(5134), - [anon_sym_PIPE_EQ] = ACTIONS(5134), - [anon_sym_and_eq] = ACTIONS(5136), - [anon_sym_or_eq] = ACTIONS(5136), - [anon_sym_xor_eq] = ACTIONS(5136), - [anon_sym_not] = ACTIONS(5136), - [anon_sym_compl] = ACTIONS(5136), - [anon_sym_LT_EQ_GT] = ACTIONS(5134), - [anon_sym_or] = ACTIONS(5136), - [anon_sym_and] = ACTIONS(5136), - [anon_sym_bitor] = ACTIONS(5136), - [anon_sym_xor] = ACTIONS(5136), - [anon_sym_bitand] = ACTIONS(5136), - [anon_sym_not_eq] = ACTIONS(5136), - [anon_sym_DASH_DASH] = ACTIONS(5134), - [anon_sym_PLUS_PLUS] = ACTIONS(5134), - [anon_sym_typename] = ACTIONS(5154), - [anon_sym_DASH_GT] = ACTIONS(5136), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5156), - [anon_sym_decltype] = ACTIONS(5158), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_delete] = ACTIONS(5162), - [anon_sym_co_await] = ACTIONS(5136), - [anon_sym_new] = ACTIONS(5162), - [anon_sym_DASH_GT_STAR] = ACTIONS(5134), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - [anon_sym_LPAREN_RPAREN] = ACTIONS(5134), - [anon_sym_LBRACK_RBRACK] = ACTIONS(5134), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(5166), + [sym_primitive_type] = ACTIONS(5142), + [anon_sym_enum] = ACTIONS(5144), + [anon_sym_class] = ACTIONS(5146), + [anon_sym_struct] = ACTIONS(5148), + [anon_sym_union] = ACTIONS(5150), + [anon_sym_STAR_EQ] = ACTIONS(5132), + [anon_sym_SLASH_EQ] = ACTIONS(5132), + [anon_sym_PERCENT_EQ] = ACTIONS(5132), + [anon_sym_PLUS_EQ] = ACTIONS(5132), + [anon_sym_DASH_EQ] = ACTIONS(5132), + [anon_sym_LT_LT_EQ] = ACTIONS(5132), + [anon_sym_GT_GT_EQ] = ACTIONS(5132), + [anon_sym_AMP_EQ] = ACTIONS(5132), + [anon_sym_CARET_EQ] = ACTIONS(5132), + [anon_sym_PIPE_EQ] = ACTIONS(5132), + [anon_sym_and_eq] = ACTIONS(5134), + [anon_sym_or_eq] = ACTIONS(5134), + [anon_sym_xor_eq] = ACTIONS(5134), + [anon_sym_not] = ACTIONS(5134), + [anon_sym_compl] = ACTIONS(5134), + [anon_sym_LT_EQ_GT] = ACTIONS(5132), + [anon_sym_or] = ACTIONS(5134), + [anon_sym_and] = ACTIONS(5134), + [anon_sym_bitor] = ACTIONS(5134), + [anon_sym_xor] = ACTIONS(5134), + [anon_sym_bitand] = ACTIONS(5134), + [anon_sym_not_eq] = ACTIONS(5134), + [anon_sym_DASH_DASH] = ACTIONS(5132), + [anon_sym_PLUS_PLUS] = ACTIONS(5132), + [anon_sym_typename] = ACTIONS(5152), + [anon_sym_DASH_GT] = ACTIONS(5134), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5154), + [anon_sym_decltype] = ACTIONS(5156), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_delete] = ACTIONS(5160), + [anon_sym_co_await] = ACTIONS(5134), + [anon_sym_new] = ACTIONS(5160), + [anon_sym_DASH_GT_STAR] = ACTIONS(5132), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + [anon_sym_LPAREN_RPAREN] = ACTIONS(5132), + [anon_sym_LBRACK_RBRACK] = ACTIONS(5132), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(5164), }, - [STATE(1038)] = { - [sym__declaration_modifiers] = STATE(2831), - [sym__declaration_specifiers] = STATE(8797), - [sym_attribute_specifier] = STATE(2831), - [sym_attribute_declaration] = STATE(2831), - [sym_ms_declspec_modifier] = STATE(2831), - [sym_storage_class_specifier] = STATE(2831), - [sym_type_qualifier] = STATE(2831), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(6389), - [sym_sized_type_specifier] = STATE(6050), - [sym_enum_specifier] = STATE(6050), - [sym_struct_specifier] = STATE(6050), - [sym_union_specifier] = STATE(6050), - [sym_placeholder_type_specifier] = STATE(6050), - [sym_decltype_auto] = STATE(6031), - [sym_decltype] = STATE(5973), - [sym_class_specifier] = STATE(6050), - [sym_dependent_type] = STATE(6050), - [sym_template_type] = STATE(5365), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8757), - [sym_qualified_type_identifier] = STATE(5574), - [sym_splice_specifier] = STATE(4802), - [sym__splice_specialization_specifier] = STATE(5472), - [sym_splice_type_specifier] = STATE(5973), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2831), - [aux_sym_sized_type_specifier_repeat1] = STATE(4387), - [sym_identifier] = ACTIONS(5132), - [anon_sym_COMMA] = ACTIONS(5168), - [anon_sym_BANG] = ACTIONS(5170), - [anon_sym_TILDE] = ACTIONS(5168), - [anon_sym_DASH] = ACTIONS(5170), - [anon_sym_PLUS] = ACTIONS(5170), - [anon_sym_STAR] = ACTIONS(5170), - [anon_sym_SLASH] = ACTIONS(5170), - [anon_sym_PERCENT] = ACTIONS(5170), - [anon_sym_PIPE_PIPE] = ACTIONS(5168), - [anon_sym_AMP_AMP] = ACTIONS(5168), - [anon_sym_PIPE] = ACTIONS(5170), - [anon_sym_CARET] = ACTIONS(5170), - [anon_sym_AMP] = ACTIONS(5170), - [anon_sym_EQ_EQ] = ACTIONS(5168), - [anon_sym_BANG_EQ] = ACTIONS(5168), - [anon_sym_GT] = ACTIONS(5170), - [anon_sym_GT_EQ] = ACTIONS(5168), - [anon_sym_LT_EQ] = ACTIONS(5170), - [anon_sym_LT] = ACTIONS(5170), - [anon_sym_LT_LT] = ACTIONS(5170), - [anon_sym_GT_GT] = ACTIONS(5170), + [STATE(1037)] = { + [sym__declaration_modifiers] = STATE(2748), + [sym__declaration_specifiers] = STATE(8776), + [sym_attribute_specifier] = STATE(2748), + [sym_attribute_declaration] = STATE(2748), + [sym_ms_declspec_modifier] = STATE(2748), + [sym_storage_class_specifier] = STATE(2748), + [sym_type_qualifier] = STATE(2748), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(6417), + [sym_sized_type_specifier] = STATE(6059), + [sym_enum_specifier] = STATE(6059), + [sym_struct_specifier] = STATE(6059), + [sym_union_specifier] = STATE(6059), + [sym_placeholder_type_specifier] = STATE(6059), + [sym_decltype_auto] = STATE(6056), + [sym_decltype] = STATE(5990), + [sym_class_specifier] = STATE(6059), + [sym_dependent_type] = STATE(6059), + [sym_template_type] = STATE(5341), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8753), + [sym_qualified_type_identifier] = STATE(5691), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(5354), + [sym_splice_type_specifier] = STATE(5990), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2748), + [aux_sym_sized_type_specifier_repeat1] = STATE(4393), + [sym_identifier] = ACTIONS(5130), + [anon_sym_COMMA] = ACTIONS(5166), + [anon_sym_BANG] = ACTIONS(5168), + [anon_sym_TILDE] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5168), + [anon_sym_PLUS] = ACTIONS(5168), + [anon_sym_STAR] = ACTIONS(5168), + [anon_sym_SLASH] = ACTIONS(5168), + [anon_sym_PERCENT] = ACTIONS(5168), + [anon_sym_PIPE_PIPE] = ACTIONS(5166), + [anon_sym_AMP_AMP] = ACTIONS(5166), + [anon_sym_PIPE] = ACTIONS(5168), + [anon_sym_CARET] = ACTIONS(5168), + [anon_sym_AMP] = ACTIONS(5168), + [anon_sym_EQ_EQ] = ACTIONS(5166), + [anon_sym_BANG_EQ] = ACTIONS(5166), + [anon_sym_GT] = ACTIONS(5168), + [anon_sym_GT_EQ] = ACTIONS(5166), + [anon_sym_LT_EQ] = ACTIONS(5168), + [anon_sym_LT] = ACTIONS(5168), + [anon_sym_LT_LT] = ACTIONS(5168), + [anon_sym_GT_GT] = ACTIONS(5168), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(5138), + [anon_sym_virtual] = ACTIONS(5136), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(5142), - [anon_sym_unsigned] = ACTIONS(5142), - [anon_sym_long] = ACTIONS(5142), - [anon_sym_short] = ACTIONS(5142), + [anon_sym_signed] = ACTIONS(5140), + [anon_sym_unsigned] = ACTIONS(5140), + [anon_sym_long] = ACTIONS(5140), + [anon_sym_short] = ACTIONS(5140), [anon_sym_static] = ACTIONS(63), - [anon_sym_EQ] = ACTIONS(5170), + [anon_sym_EQ] = ACTIONS(5168), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), [anon_sym___inline] = ACTIONS(63), @@ -207088,7109 +206949,7109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(5144), - [anon_sym_enum] = ACTIONS(5146), - [anon_sym_class] = ACTIONS(5148), - [anon_sym_struct] = ACTIONS(5150), - [anon_sym_union] = ACTIONS(5152), - [anon_sym_STAR_EQ] = ACTIONS(5168), - [anon_sym_SLASH_EQ] = ACTIONS(5168), - [anon_sym_PERCENT_EQ] = ACTIONS(5168), - [anon_sym_PLUS_EQ] = ACTIONS(5168), - [anon_sym_DASH_EQ] = ACTIONS(5168), - [anon_sym_LT_LT_EQ] = ACTIONS(5168), - [anon_sym_GT_GT_EQ] = ACTIONS(5168), - [anon_sym_AMP_EQ] = ACTIONS(5168), - [anon_sym_CARET_EQ] = ACTIONS(5168), - [anon_sym_PIPE_EQ] = ACTIONS(5168), - [anon_sym_and_eq] = ACTIONS(5170), - [anon_sym_or_eq] = ACTIONS(5170), - [anon_sym_xor_eq] = ACTIONS(5170), - [anon_sym_not] = ACTIONS(5170), - [anon_sym_compl] = ACTIONS(5170), - [anon_sym_LT_EQ_GT] = ACTIONS(5168), - [anon_sym_or] = ACTIONS(5170), - [anon_sym_and] = ACTIONS(5170), - [anon_sym_bitor] = ACTIONS(5170), - [anon_sym_xor] = ACTIONS(5170), - [anon_sym_bitand] = ACTIONS(5170), - [anon_sym_not_eq] = ACTIONS(5170), - [anon_sym_DASH_DASH] = ACTIONS(5168), - [anon_sym_PLUS_PLUS] = ACTIONS(5168), - [anon_sym_typename] = ACTIONS(5154), - [anon_sym_DASH_GT] = ACTIONS(5170), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5156), - [anon_sym_decltype] = ACTIONS(5158), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_delete] = ACTIONS(5172), - [anon_sym_co_await] = ACTIONS(5170), - [anon_sym_new] = ACTIONS(5172), - [anon_sym_DASH_GT_STAR] = ACTIONS(5168), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - [anon_sym_LPAREN_RPAREN] = ACTIONS(5168), - [anon_sym_LBRACK_RBRACK] = ACTIONS(5168), - [anon_sym_DQUOTE_DQUOTE] = ACTIONS(5174), + [sym_primitive_type] = ACTIONS(5142), + [anon_sym_enum] = ACTIONS(5144), + [anon_sym_class] = ACTIONS(5146), + [anon_sym_struct] = ACTIONS(5148), + [anon_sym_union] = ACTIONS(5150), + [anon_sym_STAR_EQ] = ACTIONS(5166), + [anon_sym_SLASH_EQ] = ACTIONS(5166), + [anon_sym_PERCENT_EQ] = ACTIONS(5166), + [anon_sym_PLUS_EQ] = ACTIONS(5166), + [anon_sym_DASH_EQ] = ACTIONS(5166), + [anon_sym_LT_LT_EQ] = ACTIONS(5166), + [anon_sym_GT_GT_EQ] = ACTIONS(5166), + [anon_sym_AMP_EQ] = ACTIONS(5166), + [anon_sym_CARET_EQ] = ACTIONS(5166), + [anon_sym_PIPE_EQ] = ACTIONS(5166), + [anon_sym_and_eq] = ACTIONS(5168), + [anon_sym_or_eq] = ACTIONS(5168), + [anon_sym_xor_eq] = ACTIONS(5168), + [anon_sym_not] = ACTIONS(5168), + [anon_sym_compl] = ACTIONS(5168), + [anon_sym_LT_EQ_GT] = ACTIONS(5166), + [anon_sym_or] = ACTIONS(5168), + [anon_sym_and] = ACTIONS(5168), + [anon_sym_bitor] = ACTIONS(5168), + [anon_sym_xor] = ACTIONS(5168), + [anon_sym_bitand] = ACTIONS(5168), + [anon_sym_not_eq] = ACTIONS(5168), + [anon_sym_DASH_DASH] = ACTIONS(5166), + [anon_sym_PLUS_PLUS] = ACTIONS(5166), + [anon_sym_typename] = ACTIONS(5152), + [anon_sym_DASH_GT] = ACTIONS(5168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5154), + [anon_sym_decltype] = ACTIONS(5156), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_delete] = ACTIONS(5170), + [anon_sym_co_await] = ACTIONS(5168), + [anon_sym_new] = ACTIONS(5170), + [anon_sym_DASH_GT_STAR] = ACTIONS(5166), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + [anon_sym_LPAREN_RPAREN] = ACTIONS(5166), + [anon_sym_LBRACK_RBRACK] = ACTIONS(5166), + [anon_sym_DQUOTE_DQUOTE] = ACTIONS(5172), }, - [STATE(1039)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7075), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5176), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5182), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [STATE(1038)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6997), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5180), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1040)] = { + [STATE(1039)] = { [sym_type_qualifier] = STATE(1041), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7010), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7108), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), [aux_sym_array_declarator_repeat1] = STATE(1041), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5188), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5190), - [anon_sym_RBRACK] = ACTIONS(5192), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5186), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5188), + [anon_sym_RBRACK] = ACTIONS(5190), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1040)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7118), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5192), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5194), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1041)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7011), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5194), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5196), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7124), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5196), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5198), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1042)] = { - [sym_type_qualifier] = STATE(1089), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7037), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1089), - [sym_identifier] = ACTIONS(5198), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6953), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5202), - [anon_sym_RBRACK] = ACTIONS(5204), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5202), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1043)] = { - [sym_type_qualifier] = STATE(1044), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7023), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1044), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5208), - [anon_sym_RBRACK] = ACTIONS(5210), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6977), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5204), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5206), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1044)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7027), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5212), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5214), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(1045), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7006), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1045), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5208), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5210), + [anon_sym_RBRACK] = ACTIONS(5212), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1045)] = { - [sym_type_qualifier] = STATE(1046), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7029), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1046), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5218), - [anon_sym_RBRACK] = ACTIONS(5220), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7015), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5214), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5216), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1046)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7030), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5224), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(1047), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7017), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1047), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5218), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5220), + [anon_sym_RBRACK] = ACTIONS(5222), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1047)] = { - [sym_type_qualifier] = STATE(1057), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7132), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1057), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5228), - [anon_sym_RBRACK] = ACTIONS(5230), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7021), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5224), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5226), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1048)] = { - [sym_type_qualifier] = STATE(1085), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7105), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1085), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6978), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5230), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1049)] = { + [sym_type_qualifier] = STATE(1038), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6940), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1038), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5232), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(5234), [anon_sym_RBRACK] = ACTIONS(5236), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1049)] = { - [sym_type_qualifier] = STATE(1050), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7041), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1050), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1050)] = { + [sym_type_qualifier] = STATE(1051), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7100), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1051), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5238), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(5240), [anon_sym_RBRACK] = ACTIONS(5242), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1050)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7043), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1051)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7109), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5244), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), [anon_sym_RBRACK] = ACTIONS(5246), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1051)] = { - [sym_type_qualifier] = STATE(1052), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7044), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1052), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1052)] = { + [sym_type_qualifier] = STATE(1053), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7110), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1053), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5248), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(5250), [anon_sym_RBRACK] = ACTIONS(5252), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1052)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7046), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1053)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7113), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5254), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), [anon_sym_RBRACK] = ACTIONS(5256), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1053)] = { - [sym_type_qualifier] = STATE(1076), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7157), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1076), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1054)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6957), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5258), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5260), - [anon_sym_RBRACK] = ACTIONS(5262), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5260), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1054)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6943), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5264), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), + [STATE(1055)] = { + [sym_type_qualifier] = STATE(1081), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6962), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1081), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5262), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5264), [anon_sym_RBRACK] = ACTIONS(5266), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1055)] = { - [sym_type_qualifier] = STATE(1077), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6963), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1077), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1056)] = { + [sym_type_qualifier] = STATE(1059), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7150), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1059), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5268), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(5270), [anon_sym_RBRACK] = ACTIONS(5272), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1056)] = { - [sym_type_qualifier] = STATE(1078), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6968), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1078), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1057)] = { + [sym_type_qualifier] = STATE(1042), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7179), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1042), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5274), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(5276), [anon_sym_RBRACK] = ACTIONS(5278), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1057)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7151), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1058)] = { + [sym_type_qualifier] = STATE(1076), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7000), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1076), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5280), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5282), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5282), + [anon_sym_RBRACK] = ACTIONS(5284), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1058)] = { - [sym_type_qualifier] = STATE(1060), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7152), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1060), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5284), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5286), + [STATE(1059)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7160), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), [anon_sym_RBRACK] = ACTIONS(5288), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1059)] = { + [STATE(1060)] = { [sym_type_qualifier] = STATE(1061), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7153), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7161), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), [aux_sym_array_declarator_repeat1] = STATE(1061), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5290), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(5292), [anon_sym_RBRACK] = ACTIONS(5294), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1060)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7154), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1061)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7164), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5296), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), [anon_sym_RBRACK] = ACTIONS(5298), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1061)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7155), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5300), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5302), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1062)] = { - [sym_type_qualifier] = STATE(1065), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7036), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1065), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5304), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5306), - [anon_sym_RBRACK] = ACTIONS(5308), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(1040), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7103), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1040), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5300), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5302), + [anon_sym_RBRACK] = ACTIONS(5304), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1063)] = { - [sym_type_qualifier] = STATE(1089), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7037), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1089), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5200), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5202), - [anon_sym_RBRACK] = ACTIONS(5204), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(1043), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6954), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1043), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5306), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5308), + [anon_sym_RBRACK] = ACTIONS(5310), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1064)] = { - [sym_type_qualifier] = STATE(1039), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7183), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1039), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5312), - [anon_sym_RBRACK] = ACTIONS(5314), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1065)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7051), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5316), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), + [sym_type_qualifier] = STATE(1054), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7019), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1054), + [sym_identifier] = ACTIONS(5312), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5316), [anon_sym_RBRACK] = ACTIONS(5318), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1066)] = { - [sym_type_qualifier] = STATE(1084), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7053), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1084), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1065)] = { + [sym_type_qualifier] = STATE(1066), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6926), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1066), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5320), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(5322), [anon_sym_RBRACK] = ACTIONS(5324), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1067)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6988), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1066)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6931), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5326), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), [anon_sym_RBRACK] = ACTIONS(5328), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1068)] = { - [sym_type_qualifier] = STATE(1079), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7102), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1079), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1067)] = { + [sym_type_qualifier] = STATE(1068), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6932), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1068), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5330), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(5332), [anon_sym_RBRACK] = ACTIONS(5334), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1069)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7009), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1068)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6934), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5336), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), [anon_sym_RBRACK] = ACTIONS(5338), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1070)] = { - [sym_type_qualifier] = STATE(1072), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6928), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1072), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1069)] = { + [sym_type_qualifier] = STATE(1082), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6973), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1082), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5340), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(5342), [anon_sym_RBRACK] = ACTIONS(5344), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1071)] = { - [sym_type_qualifier] = STATE(1073), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6929), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1073), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1070)] = { + [sym_type_qualifier] = STATE(1078), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7102), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1078), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5346), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_static] = ACTIONS(5348), [anon_sym_RBRACK] = ACTIONS(5350), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1072)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6930), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1071)] = { + [sym_type_qualifier] = STATE(1073), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6943), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1073), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5352), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5354), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5354), + [anon_sym_RBRACK] = ACTIONS(5356), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1073)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6931), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5356), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5358), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [STATE(1072)] = { + [sym_type_qualifier] = STATE(1048), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6960), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1048), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5358), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5360), + [anon_sym_RBRACK] = ACTIONS(5362), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1073)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6944), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5364), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5366), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1074)] = { - [sym_type_qualifier] = STATE(1086), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7058), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1086), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5360), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5362), - [anon_sym_RBRACK] = ACTIONS(5364), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(1075), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6945), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1075), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5370), + [anon_sym_RBRACK] = ACTIONS(5372), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1075)] = { - [sym_type_qualifier] = STATE(1090), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7099), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1090), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5366), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5368), - [anon_sym_RBRACK] = ACTIONS(5370), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6947), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5374), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5376), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1076)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7170), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5372), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5374), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7060), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5378), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5380), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1077)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6987), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5376), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5378), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7067), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5382), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5384), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1078)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6989), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5380), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5382), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7098), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5386), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5388), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1079)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6933), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5384), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5386), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(1054), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7019), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1054), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5314), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5316), + [anon_sym_RBRACK] = ACTIONS(5318), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1080)] = { - [sym_type_qualifier] = STATE(1081), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6950), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1081), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5388), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5390), - [anon_sym_RBRACK] = ACTIONS(5392), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(1083), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7069), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1083), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5390), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5392), + [anon_sym_RBRACK] = ACTIONS(5394), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1081)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6956), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5394), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5396), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7129), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5396), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5398), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1082)] = { - [sym_type_qualifier] = STATE(1083), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6957), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1083), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5398), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5400), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7154), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5400), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), [anon_sym_RBRACK] = ACTIONS(5402), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1083)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6958), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7148), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5404), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), [anon_sym_RBRACK] = ACTIONS(5406), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1084)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7065), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [sym_type_qualifier] = STATE(1086), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7165), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1086), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5408), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5410), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5410), + [anon_sym_RBRACK] = ACTIONS(5412), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1085)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7093), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5412), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5414), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(1087), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7178), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1087), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5414), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5416), + [anon_sym_RBRACK] = ACTIONS(5418), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1086)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7067), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5416), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5418), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(6992), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5420), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5422), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1087)] = { - [sym_type_qualifier] = STATE(1054), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7173), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1054), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5420), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5422), - [anon_sym_RBRACK] = ACTIONS(5424), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7002), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5424), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5426), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1088)] = { - [sym_type_qualifier] = STATE(1091), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6975), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1091), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5426), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5428), - [anon_sym_RBRACK] = ACTIONS(5430), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(1089), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7146), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1089), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5428), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5430), + [anon_sym_RBRACK] = ACTIONS(5432), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1089)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7101), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5432), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5434), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7088), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5434), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5436), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1090)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(7056), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5436), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), - [anon_sym_RBRACK] = ACTIONS(5438), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1091)] = { - [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6984), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5440), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5180), + [sym_type_qualifier] = STATE(1091), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7050), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1091), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5438), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5440), [anon_sym_RBRACK] = ACTIONS(5442), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1092)] = { - [sym_type_qualifier] = STATE(1067), - [sym_alignas_qualifier] = STATE(2724), - [sym_expression] = STATE(6985), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1067), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), + [STATE(1091)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [sym_expression] = STATE(7097), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), [anon_sym_STAR] = ACTIONS(5444), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5446), - [anon_sym_RBRACK] = ACTIONS(5448), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5446), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1093)] = { - [sym_type_qualifier] = STATE(1069), - [sym_alignas_qualifier] = STATE(2724), + [STATE(1092)] = { + [sym_type_qualifier] = STATE(1077), + [sym_alignas_qualifier] = STATE(2667), [sym_expression] = STATE(7004), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [aux_sym_array_declarator_repeat1] = STATE(1069), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5450), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(5178), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5452), - [anon_sym_RBRACK] = ACTIONS(5454), - [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(5186), - [anon_sym__Alignas] = ACTIONS(5186), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [aux_sym_array_declarator_repeat1] = STATE(1077), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5448), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(5176), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5450), + [anon_sym_RBRACK] = ACTIONS(5452), + [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(5184), + [anon_sym__Alignas] = ACTIONS(5184), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1094)] = { - [sym_function_definition] = STATE(992), - [sym_declaration] = STATE(992), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6385), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2684), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8733), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4545), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(992), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2498), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(992), - [sym_operator_cast] = STATE(9265), - [sym__constructor_specifiers] = STATE(2498), - [sym_operator_cast_definition] = STATE(992), - [sym_operator_cast_declaration] = STATE(992), - [sym_constructor_or_destructor_definition] = STATE(992), - [sym_constructor_or_destructor_declaration] = STATE(992), - [sym_friend_declaration] = STATE(992), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(992), - [sym_concept_definition] = STATE(992), - [sym_requires_clause] = STATE(1105), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9265), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2498), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1093)] = { + [sym_function_definition] = STATE(395), + [sym_declaration] = STATE(395), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8698), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(395), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2501), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(395), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2501), + [sym_operator_cast_definition] = STATE(395), + [sym_operator_cast_declaration] = STATE(395), + [sym_constructor_or_destructor_definition] = STATE(395), + [sym_constructor_or_destructor_declaration] = STATE(395), + [sym_friend_declaration] = STATE(395), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(395), + [sym_concept_definition] = STATE(395), + [sym_requires_clause] = STATE(1107), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2501), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5458), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -214203,7 +214064,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -214213,7 +214074,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(5462), + [anon_sym_constexpr] = ACTIONS(5460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -214226,97 +214087,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5466), + [anon_sym_template] = ACTIONS(5464), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5468), - [anon_sym_concept] = ACTIONS(155), - [anon_sym_requires] = ACTIONS(5470), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(5466), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_requires] = ACTIONS(5468), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1095)] = { - [sym_function_definition] = STATE(814), - [sym_declaration] = STATE(814), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8734), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(814), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2515), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(814), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2515), - [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_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(814), - [sym_concept_definition] = STATE(814), - [sym_requires_clause] = STATE(1109), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2515), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1094)] = { + [sym_function_definition] = STATE(3251), + [sym_declaration] = STATE(3251), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6382), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2723), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4456), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(3251), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2509), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(3251), + [sym_operator_cast] = STATE(9179), + [sym__constructor_specifiers] = STATE(2509), + [sym_operator_cast_definition] = STATE(3251), + [sym_operator_cast_declaration] = STATE(3251), + [sym_constructor_or_destructor_definition] = STATE(3251), + [sym_constructor_or_destructor_declaration] = STATE(3251), + [sym_friend_declaration] = STATE(3251), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(3251), + [sym_concept_definition] = STATE(3251), + [sym_requires_clause] = STATE(1103), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9179), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2509), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5472), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -214329,7 +214190,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -214339,7 +214200,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(5474), + [anon_sym_constexpr] = ACTIONS(4730), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -214352,97 +214213,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5476), + [anon_sym_template] = ACTIONS(4734), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5478), - [anon_sym_concept] = ACTIONS(253), - [anon_sym_requires] = ACTIONS(5470), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4736), + [anon_sym_concept] = ACTIONS(5472), + [anon_sym_requires] = ACTIONS(5468), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1096)] = { - [sym_function_definition] = STATE(3475), - [sym_declaration] = STATE(3475), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6416), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2711), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8689), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), + [STATE(1095)] = { + [sym_function_definition] = STATE(3403), + [sym_declaration] = STATE(3403), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6407), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2721), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), [sym_type_specifier] = STATE(4442), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(3475), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2469), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(3475), - [sym_operator_cast] = STATE(9167), - [sym__constructor_specifiers] = STATE(2469), - [sym_operator_cast_definition] = STATE(3475), - [sym_operator_cast_declaration] = STATE(3475), - [sym_constructor_or_destructor_definition] = STATE(3475), - [sym_constructor_or_destructor_declaration] = STATE(3475), - [sym_friend_declaration] = STATE(3475), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(3475), - [sym_concept_definition] = STATE(3475), - [sym_requires_clause] = STATE(1108), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9167), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2469), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(3403), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(3403), + [sym_operator_cast] = STATE(9214), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(3403), + [sym_operator_cast_declaration] = STATE(3403), + [sym_constructor_or_destructor_definition] = STATE(3403), + [sym_constructor_or_destructor_declaration] = STATE(3403), + [sym_friend_declaration] = STATE(3403), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(3403), + [sym_concept_definition] = STATE(3403), + [sym_requires_clause] = STATE(1102), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5480), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5474), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -214455,7 +214316,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -214465,7 +214326,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(4819), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -214478,97 +214339,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4823), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4825), - [anon_sym_concept] = ACTIONS(5482), - [anon_sym_requires] = ACTIONS(5470), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_concept] = ACTIONS(5476), + [anon_sym_requires] = ACTIONS(5468), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1097)] = { - [sym_function_definition] = STATE(431), - [sym_declaration] = STATE(431), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8698), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(431), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2446), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(431), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2446), - [sym_operator_cast_definition] = STATE(431), - [sym_operator_cast_declaration] = STATE(431), - [sym_constructor_or_destructor_definition] = STATE(431), - [sym_constructor_or_destructor_declaration] = STATE(431), - [sym_friend_declaration] = STATE(431), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(431), - [sym_concept_definition] = STATE(431), - [sym_requires_clause] = STATE(1110), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2446), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1096)] = { + [sym_function_definition] = STATE(906), + [sym_declaration] = STATE(906), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6408), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2708), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8747), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4507), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(906), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2447), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(906), + [sym_operator_cast] = STATE(9161), + [sym__constructor_specifiers] = STATE(2447), + [sym_operator_cast_definition] = STATE(906), + [sym_operator_cast_declaration] = STATE(906), + [sym_constructor_or_destructor_definition] = STATE(906), + [sym_constructor_or_destructor_declaration] = STATE(906), + [sym_friend_declaration] = STATE(906), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(906), + [sym_concept_definition] = STATE(906), + [sym_requires_clause] = STATE(1108), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9161), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2447), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5484), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5478), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -214581,7 +214442,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -214591,7 +214452,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(5486), + [anon_sym_constexpr] = ACTIONS(5480), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -214604,97 +214465,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5488), + [anon_sym_template] = ACTIONS(5482), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5490), - [anon_sym_concept] = ACTIONS(355), - [anon_sym_requires] = ACTIONS(5470), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(5484), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_requires] = ACTIONS(5468), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1098)] = { - [sym_function_definition] = STATE(3357), - [sym_declaration] = STATE(3357), - [sym__declaration_modifiers] = STATE(4781), + [STATE(1097)] = { + [sym_function_definition] = STATE(788), + [sym_declaration] = STATE(788), + [sym__declaration_modifiers] = STATE(4919), [sym__declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2708), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4399), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(3357), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(3357), - [sym_operator_cast] = STATE(9211), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(3357), - [sym_operator_cast_declaration] = STATE(3357), - [sym_constructor_or_destructor_definition] = STATE(3357), - [sym_constructor_or_destructor_declaration] = STATE(3357), - [sym_friend_declaration] = STATE(3357), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(3357), - [sym_concept_definition] = STATE(3357), - [sym_requires_clause] = STATE(1106), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8694), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(788), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2483), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(788), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2483), + [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(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(788), + [sym_concept_definition] = STATE(788), + [sym_requires_clause] = STATE(1104), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5492), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5486), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -214707,7 +214568,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -214717,7 +214578,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(4704), + [anon_sym_constexpr] = ACTIONS(5488), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -214730,97 +214591,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_template] = ACTIONS(5490), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_concept] = ACTIONS(5494), - [anon_sym_requires] = ACTIONS(5470), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(5492), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_requires] = ACTIONS(5468), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1099)] = { - [sym_function_definition] = STATE(2837), - [sym_declaration] = STATE(2837), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6415), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2710), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4428), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(2837), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(2837), - [sym_operator_cast] = STATE(9218), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(2837), - [sym_operator_cast_declaration] = STATE(2837), - [sym_constructor_or_destructor_definition] = STATE(2837), - [sym_constructor_or_destructor_declaration] = STATE(2837), - [sym_friend_declaration] = STATE(2837), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(2837), - [sym_concept_definition] = STATE(2837), - [sym_requires_clause] = STATE(1107), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1098)] = { + [sym_function_definition] = STATE(663), + [sym_declaration] = STATE(663), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6402), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2720), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8758), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4419), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(663), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2506), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(663), + [sym_operator_cast] = STATE(9184), + [sym__constructor_specifiers] = STATE(2506), + [sym_operator_cast_definition] = STATE(663), + [sym_operator_cast_declaration] = STATE(663), + [sym_constructor_or_destructor_definition] = STATE(663), + [sym_constructor_or_destructor_declaration] = STATE(663), + [sym_friend_declaration] = STATE(663), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(663), + [sym_concept_definition] = STATE(663), + [sym_requires_clause] = STATE(1109), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9184), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2506), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5496), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5494), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -214833,7 +214694,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -214843,7 +214704,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(3462), + [anon_sym_constexpr] = ACTIONS(5496), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -214856,97 +214717,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_template] = ACTIONS(5498), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_concept] = ACTIONS(5498), - [anon_sym_requires] = ACTIONS(5470), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(5500), + [anon_sym_concept] = ACTIONS(1048), + [anon_sym_requires] = ACTIONS(5468), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1100)] = { - [sym_function_definition] = STATE(717), - [sym_declaration] = STATE(717), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6413), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2707), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8752), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4502), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(717), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2462), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(717), - [sym_operator_cast] = STATE(9210), - [sym__constructor_specifiers] = STATE(2462), - [sym_operator_cast_definition] = STATE(717), - [sym_operator_cast_declaration] = STATE(717), - [sym_constructor_or_destructor_definition] = STATE(717), - [sym_constructor_or_destructor_declaration] = STATE(717), - [sym_friend_declaration] = STATE(717), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(717), - [sym_concept_definition] = STATE(717), - [sym_requires_clause] = STATE(1103), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9210), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2462), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1099)] = { + [sym_function_definition] = STATE(2813), + [sym_declaration] = STATE(2813), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2722), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4453), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(2813), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(2813), + [sym_operator_cast] = STATE(9190), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(2813), + [sym_operator_cast_declaration] = STATE(2813), + [sym_constructor_or_destructor_definition] = STATE(2813), + [sym_constructor_or_destructor_declaration] = STATE(2813), + [sym_friend_declaration] = STATE(2813), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(2813), + [sym_concept_definition] = STATE(2813), + [sym_requires_clause] = STATE(1106), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5500), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5502), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -214959,7 +214820,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -214969,7 +214830,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(5502), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -214982,346 +214843,346 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5504), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5506), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_requires] = ACTIONS(5470), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_concept] = ACTIONS(5504), + [anon_sym_requires] = ACTIONS(5468), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(1100)] = { + [sym_expression] = STATE(4673), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(4932), + [anon_sym_LPAREN2] = ACTIONS(5506), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(5509), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3118), + [anon_sym___extension__] = ACTIONS(4935), + [anon_sym_COLON_COLON] = ACTIONS(4938), + [anon_sym___based] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4947), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(4950), + [sym_this] = ACTIONS(2416), }, [STATE(1101)] = { - [sym_expression] = STATE(4658), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(4970), - [anon_sym_LPAREN2] = ACTIONS(5508), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(5511), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3120), - [anon_sym___extension__] = ACTIONS(5069), - [anon_sym_COLON_COLON] = ACTIONS(5072), - [anon_sym___based] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3133), - [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(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(4985), - [anon_sym_operator] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(4988), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5073), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(5025), + [anon_sym_LPAREN2] = ACTIONS(5512), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(5515), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(5518), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(5521), + [anon_sym___extension__] = ACTIONS(5028), + [anon_sym_COLON_COLON] = ACTIONS(5031), + [anon_sym___based] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(5040), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(5043), + [sym_this] = ACTIONS(2274), }, [STATE(1102)] = { - [sym_expression] = STATE(5119), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(5090), - [anon_sym_LPAREN2] = ACTIONS(5514), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(5517), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(5520), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(5523), - [anon_sym___extension__] = ACTIONS(5093), - [anon_sym_COLON_COLON] = ACTIONS(5096), - [anon_sym___based] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3133), - [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(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(5105), - [anon_sym_operator] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(5108), - [sym_this] = ACTIONS(2276), - }, - [STATE(1103)] = { - [sym_function_definition] = STATE(725), - [sym_declaration] = STATE(725), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6413), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2707), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8752), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4502), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(725), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2462), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(725), - [sym_operator_cast] = STATE(9210), - [sym__constructor_specifiers] = STATE(2462), - [sym_operator_cast_definition] = STATE(725), - [sym_operator_cast_declaration] = STATE(725), - [sym_constructor_or_destructor_definition] = STATE(725), - [sym_constructor_or_destructor_declaration] = STATE(725), - [sym_friend_declaration] = STATE(725), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(725), - [sym_concept_definition] = STATE(725), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9210), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2462), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_function_definition] = STATE(3300), + [sym_declaration] = STATE(3300), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6407), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2721), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8693), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4442), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(3300), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2508), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(3300), + [sym_operator_cast] = STATE(9214), + [sym__constructor_specifiers] = STATE(2508), + [sym_operator_cast_definition] = STATE(3300), + [sym_operator_cast_declaration] = STATE(3300), + [sym_constructor_or_destructor_definition] = STATE(3300), + [sym_constructor_or_destructor_declaration] = STATE(3300), + [sym_friend_declaration] = STATE(3300), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(3300), + [sym_concept_definition] = STATE(3300), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9214), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2508), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5500), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5474), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -215334,7 +215195,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -215344,7 +215205,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(5502), + [anon_sym_constexpr] = ACTIONS(4702), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -215357,219 +215218,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5504), + [anon_sym_template] = ACTIONS(4706), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5506), - [anon_sym_concept] = ACTIONS(1159), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(1104)] = { - [sym_expression] = STATE(6775), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(5039), - [anon_sym_LPAREN2] = ACTIONS(5526), - [anon_sym_BANG] = ACTIONS(5529), - [anon_sym_TILDE] = ACTIONS(5529), - [anon_sym_DASH] = ACTIONS(5532), - [anon_sym_PLUS] = ACTIONS(5532), - [anon_sym_STAR] = ACTIONS(5535), - [anon_sym_AMP] = ACTIONS(5535), - [anon_sym___extension__] = ACTIONS(5042), - [anon_sym_COLON_COLON] = ACTIONS(5045), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3118), - [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(5048), - [anon_sym_not] = ACTIONS(5532), - [anon_sym_compl] = ACTIONS(5532), - [anon_sym_DASH_DASH] = ACTIONS(5538), - [anon_sym_PLUS_PLUS] = ACTIONS(5538), - [anon_sym_sizeof] = ACTIONS(5541), - [anon_sym___alignof__] = ACTIONS(5544), - [anon_sym___alignof] = ACTIONS(5544), - [anon_sym__alignof] = ACTIONS(5544), - [anon_sym_alignof] = ACTIONS(5544), - [anon_sym__Alignof] = ACTIONS(5544), - [anon_sym_offsetof] = ACTIONS(5547), - [anon_sym__Generic] = ACTIONS(5550), - [anon_sym_typename] = ACTIONS(5051), - [anon_sym_asm] = ACTIONS(5553), - [anon_sym___asm__] = ACTIONS(5553), - [anon_sym___asm] = ACTIONS(5553), - [sym_number_literal] = ACTIONS(5556), - [anon_sym_L_SQUOTE] = ACTIONS(5559), - [anon_sym_u_SQUOTE] = ACTIONS(5559), - [anon_sym_U_SQUOTE] = ACTIONS(5559), - [anon_sym_u8_SQUOTE] = ACTIONS(5559), - [anon_sym_SQUOTE] = ACTIONS(5559), - [anon_sym_L_DQUOTE] = ACTIONS(5562), - [anon_sym_u_DQUOTE] = ACTIONS(5562), - [anon_sym_U_DQUOTE] = ACTIONS(5562), - [anon_sym_u8_DQUOTE] = ACTIONS(5562), - [anon_sym_DQUOTE] = ACTIONS(5562), - [sym_true] = ACTIONS(5565), - [sym_false] = ACTIONS(5565), - [anon_sym_NULL] = ACTIONS(5568), - [anon_sym_nullptr] = ACTIONS(5568), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3142), - [anon_sym_template] = ACTIONS(5054), - [anon_sym_delete] = ACTIONS(5571), - [anon_sym_R_DQUOTE] = ACTIONS(5574), - [anon_sym_LR_DQUOTE] = ACTIONS(5574), - [anon_sym_uR_DQUOTE] = ACTIONS(5574), - [anon_sym_UR_DQUOTE] = ACTIONS(5574), - [anon_sym_u8R_DQUOTE] = ACTIONS(5574), - [anon_sym_co_await] = ACTIONS(5577), - [anon_sym_new] = ACTIONS(5580), - [anon_sym_requires] = ACTIONS(5583), - [anon_sym_CARET_CARET] = ACTIONS(5586), - [anon_sym_LBRACK_COLON] = ACTIONS(5057), - [sym_this] = ACTIONS(5565), + [anon_sym_friend] = ACTIONS(4708), + [anon_sym_concept] = ACTIONS(5476), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1105)] = { - [sym_function_definition] = STATE(910), - [sym_declaration] = STATE(910), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6385), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2684), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8733), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4545), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(910), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2498), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(910), - [sym_operator_cast] = STATE(9265), - [sym__constructor_specifiers] = STATE(2498), - [sym_operator_cast_definition] = STATE(910), - [sym_operator_cast_declaration] = STATE(910), - [sym_constructor_or_destructor_definition] = STATE(910), - [sym_constructor_or_destructor_declaration] = STATE(910), - [sym_friend_declaration] = STATE(910), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(910), - [sym_concept_definition] = STATE(910), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9265), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2498), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1103)] = { + [sym_function_definition] = STATE(3366), + [sym_declaration] = STATE(3366), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6382), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2723), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8674), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4456), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(3366), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2509), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(3366), + [sym_operator_cast] = STATE(9179), + [sym__constructor_specifiers] = STATE(2509), + [sym_operator_cast_definition] = STATE(3366), + [sym_operator_cast_declaration] = STATE(3366), + [sym_constructor_or_destructor_definition] = STATE(3366), + [sym_constructor_or_destructor_declaration] = STATE(3366), + [sym_friend_declaration] = STATE(3366), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(3366), + [sym_concept_definition] = STATE(3366), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9179), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2509), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5458), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5470), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -215582,7 +215319,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -215592,7 +215329,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(5462), + [anon_sym_constexpr] = ACTIONS(4730), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -215605,95 +215342,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5466), + [anon_sym_template] = ACTIONS(4734), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5468), - [anon_sym_concept] = ACTIONS(155), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(4736), + [anon_sym_concept] = ACTIONS(5472), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1106)] = { - [sym_function_definition] = STATE(3380), - [sym_declaration] = STATE(3380), - [sym__declaration_modifiers] = STATE(4781), + [STATE(1104)] = { + [sym_function_definition] = STATE(861), + [sym_declaration] = STATE(861), + [sym__declaration_modifiers] = STATE(4919), [sym__declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2708), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8761), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4399), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(3380), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2479), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(3380), - [sym_operator_cast] = STATE(9211), - [sym__constructor_specifiers] = STATE(2479), - [sym_operator_cast_definition] = STATE(3380), - [sym_operator_cast_declaration] = STATE(3380), - [sym_constructor_or_destructor_definition] = STATE(3380), - [sym_constructor_or_destructor_declaration] = STATE(3380), - [sym_friend_declaration] = STATE(3380), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(3380), - [sym_concept_definition] = STATE(3380), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9211), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2479), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2716), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8694), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4472), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(861), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2483), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(861), + [sym_operator_cast] = STATE(9228), + [sym__constructor_specifiers] = STATE(2483), + [sym_operator_cast_definition] = STATE(861), + [sym_operator_cast_declaration] = STATE(861), + [sym_constructor_or_destructor_definition] = STATE(861), + [sym_constructor_or_destructor_declaration] = STATE(861), + [sym_friend_declaration] = STATE(861), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(861), + [sym_concept_definition] = STATE(861), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9228), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2483), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5492), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5486), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -215706,7 +215443,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -215716,7 +215453,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(4704), + [anon_sym_constexpr] = ACTIONS(5488), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -215729,95 +215466,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4708), + [anon_sym_template] = ACTIONS(5490), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4710), - [anon_sym_concept] = ACTIONS(5494), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(5492), + [anon_sym_concept] = ACTIONS(253), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1107)] = { - [sym_function_definition] = STATE(2785), - [sym_declaration] = STATE(2785), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6415), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2710), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8674), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4428), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(2785), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2456), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(2785), - [sym_operator_cast] = STATE(9218), - [sym__constructor_specifiers] = STATE(2456), - [sym_operator_cast_definition] = STATE(2785), - [sym_operator_cast_declaration] = STATE(2785), - [sym_constructor_or_destructor_definition] = STATE(2785), - [sym_constructor_or_destructor_declaration] = STATE(2785), - [sym_friend_declaration] = STATE(2785), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(2785), - [sym_concept_definition] = STATE(2785), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9218), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2456), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1105)] = { + [sym_expression] = STATE(6755), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4962), + [anon_sym_LPAREN2] = ACTIONS(5524), + [anon_sym_BANG] = ACTIONS(5527), + [anon_sym_TILDE] = ACTIONS(5527), + [anon_sym_DASH] = ACTIONS(5530), + [anon_sym_PLUS] = ACTIONS(5530), + [anon_sym_STAR] = ACTIONS(5533), + [anon_sym_AMP] = ACTIONS(5533), + [anon_sym___extension__] = ACTIONS(4965), + [anon_sym_COLON_COLON] = ACTIONS(4968), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(4971), + [anon_sym_not] = ACTIONS(5530), + [anon_sym_compl] = ACTIONS(5530), + [anon_sym_DASH_DASH] = ACTIONS(5536), + [anon_sym_PLUS_PLUS] = ACTIONS(5536), + [anon_sym_sizeof] = ACTIONS(5539), + [anon_sym___alignof__] = ACTIONS(5542), + [anon_sym___alignof] = ACTIONS(5542), + [anon_sym__alignof] = ACTIONS(5542), + [anon_sym_alignof] = ACTIONS(5542), + [anon_sym__Alignof] = ACTIONS(5542), + [anon_sym_offsetof] = ACTIONS(5545), + [anon_sym__Generic] = ACTIONS(5548), + [anon_sym_typename] = ACTIONS(4974), + [anon_sym_asm] = ACTIONS(5551), + [anon_sym___asm__] = ACTIONS(5551), + [anon_sym___asm] = ACTIONS(5551), + [sym_number_literal] = ACTIONS(5554), + [anon_sym_L_SQUOTE] = ACTIONS(5557), + [anon_sym_u_SQUOTE] = ACTIONS(5557), + [anon_sym_U_SQUOTE] = ACTIONS(5557), + [anon_sym_u8_SQUOTE] = ACTIONS(5557), + [anon_sym_SQUOTE] = ACTIONS(5557), + [anon_sym_L_DQUOTE] = ACTIONS(5560), + [anon_sym_u_DQUOTE] = ACTIONS(5560), + [anon_sym_U_DQUOTE] = ACTIONS(5560), + [anon_sym_u8_DQUOTE] = ACTIONS(5560), + [anon_sym_DQUOTE] = ACTIONS(5560), + [sym_true] = ACTIONS(5563), + [sym_false] = ACTIONS(5563), + [anon_sym_NULL] = ACTIONS(5566), + [anon_sym_nullptr] = ACTIONS(5566), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3140), + [anon_sym_template] = ACTIONS(4977), + [anon_sym_delete] = ACTIONS(5569), + [anon_sym_R_DQUOTE] = ACTIONS(5572), + [anon_sym_LR_DQUOTE] = ACTIONS(5572), + [anon_sym_uR_DQUOTE] = ACTIONS(5572), + [anon_sym_UR_DQUOTE] = ACTIONS(5572), + [anon_sym_u8R_DQUOTE] = ACTIONS(5572), + [anon_sym_co_await] = ACTIONS(5575), + [anon_sym_new] = ACTIONS(5578), + [anon_sym_requires] = ACTIONS(5581), + [anon_sym_CARET_CARET] = ACTIONS(5584), + [anon_sym_LBRACK_COLON] = ACTIONS(4980), + [sym_this] = ACTIONS(5563), + }, + [STATE(1106)] = { + [sym_function_definition] = STATE(2729), + [sym_declaration] = STATE(2729), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2722), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8670), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4453), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(2729), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2504), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(2729), + [sym_operator_cast] = STATE(9190), + [sym__constructor_specifiers] = STATE(2504), + [sym_operator_cast_definition] = STATE(2729), + [sym_operator_cast_declaration] = STATE(2729), + [sym_constructor_or_destructor_definition] = STATE(2729), + [sym_constructor_or_destructor_declaration] = STATE(2729), + [sym_friend_declaration] = STATE(2729), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(2729), + [sym_concept_definition] = STATE(2729), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9190), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2504), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5496), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5502), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -215830,7 +215691,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -215840,7 +215701,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(3462), + [anon_sym_constexpr] = ACTIONS(3460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -215853,95 +215714,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(3480), + [anon_sym_template] = ACTIONS(3478), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(3482), - [anon_sym_concept] = ACTIONS(5498), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(3480), + [anon_sym_concept] = ACTIONS(5504), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1108)] = { - [sym_function_definition] = STATE(3253), - [sym_declaration] = STATE(3253), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6416), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2711), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8689), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4442), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(3253), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2469), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(3253), - [sym_operator_cast] = STATE(9167), - [sym__constructor_specifiers] = STATE(2469), - [sym_operator_cast_definition] = STATE(3253), - [sym_operator_cast_declaration] = STATE(3253), - [sym_constructor_or_destructor_definition] = STATE(3253), - [sym_constructor_or_destructor_declaration] = STATE(3253), - [sym_friend_declaration] = STATE(3253), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(3253), - [sym_concept_definition] = STATE(3253), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9167), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2469), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1107)] = { + [sym_function_definition] = STATE(465), + [sym_declaration] = STATE(465), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6387), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2719), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8698), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4401), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(465), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2501), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(465), + [sym_operator_cast] = STATE(9176), + [sym__constructor_specifiers] = STATE(2501), + [sym_operator_cast_definition] = STATE(465), + [sym_operator_cast_declaration] = STATE(465), + [sym_constructor_or_destructor_definition] = STATE(465), + [sym_constructor_or_destructor_declaration] = STATE(465), + [sym_friend_declaration] = STATE(465), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(465), + [sym_concept_definition] = STATE(465), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9176), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2501), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5480), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5456), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -215954,7 +215815,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -215964,7 +215825,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(4819), + [anon_sym_constexpr] = ACTIONS(5460), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -215977,95 +215838,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(4823), + [anon_sym_template] = ACTIONS(5464), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(4825), - [anon_sym_concept] = ACTIONS(5482), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(5466), + [anon_sym_concept] = ACTIONS(355), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1109)] = { - [sym_function_definition] = STATE(788), - [sym_declaration] = STATE(788), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6406), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2694), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8734), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4527), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(788), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2515), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(788), - [sym_operator_cast] = STATE(9234), - [sym__constructor_specifiers] = STATE(2515), - [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(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(788), - [sym_concept_definition] = STATE(788), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9234), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2515), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1108)] = { + [sym_function_definition] = STATE(978), + [sym_declaration] = STATE(978), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6408), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2708), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8747), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4507), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(978), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2447), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(978), + [sym_operator_cast] = STATE(9161), + [sym__constructor_specifiers] = STATE(2447), + [sym_operator_cast_definition] = STATE(978), + [sym_operator_cast_declaration] = STATE(978), + [sym_constructor_or_destructor_definition] = STATE(978), + [sym_constructor_or_destructor_declaration] = STATE(978), + [sym_friend_declaration] = STATE(978), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(978), + [sym_concept_definition] = STATE(978), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9161), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2447), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5472), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5478), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -216078,7 +215939,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -216088,7 +215949,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(5474), + [anon_sym_constexpr] = ACTIONS(5480), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -216101,95 +215962,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5476), + [anon_sym_template] = ACTIONS(5482), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5478), - [anon_sym_concept] = ACTIONS(253), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(5484), + [anon_sym_concept] = ACTIONS(155), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1110)] = { - [sym_function_definition] = STATE(456), - [sym_declaration] = STATE(456), - [sym__declaration_modifiers] = STATE(4781), - [sym__declaration_specifiers] = STATE(6411), - [sym_attribute_specifier] = STATE(4781), - [sym_attribute_declaration] = STATE(4781), - [sym_ms_declspec_modifier] = STATE(4781), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(2705), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8698), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(4781), - [sym_type_qualifier] = STATE(4781), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4439), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym__empty_declaration] = STATE(456), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_explicit_function_specifier] = STATE(2446), - [sym_dependent_type] = STATE(4935), - [sym_template_declaration] = STATE(456), - [sym_operator_cast] = STATE(9244), - [sym__constructor_specifiers] = STATE(2446), - [sym_operator_cast_definition] = STATE(456), - [sym_operator_cast_declaration] = STATE(456), - [sym_constructor_or_destructor_definition] = STATE(456), - [sym_constructor_or_destructor_declaration] = STATE(456), - [sym_friend_declaration] = STATE(456), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_alias_declaration] = STATE(456), - [sym_concept_definition] = STATE(456), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7777), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_qualified_operator_cast_identifier] = STATE(9244), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [aux_sym_operator_cast_definition_repeat1] = STATE(2446), - [sym_identifier] = ACTIONS(5456), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1109)] = { + [sym_function_definition] = STATE(692), + [sym_declaration] = STATE(692), + [sym__declaration_modifiers] = STATE(4919), + [sym__declaration_specifiers] = STATE(6402), + [sym_attribute_specifier] = STATE(4919), + [sym_attribute_declaration] = STATE(4919), + [sym_ms_declspec_modifier] = STATE(4919), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(2720), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8758), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(4919), + [sym_type_qualifier] = STATE(4919), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(4419), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym__empty_declaration] = STATE(692), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_explicit_function_specifier] = STATE(2506), + [sym_dependent_type] = STATE(4852), + [sym_template_declaration] = STATE(692), + [sym_operator_cast] = STATE(9184), + [sym__constructor_specifiers] = STATE(2506), + [sym_operator_cast_definition] = STATE(692), + [sym_operator_cast_declaration] = STATE(692), + [sym_constructor_or_destructor_definition] = STATE(692), + [sym_constructor_or_destructor_declaration] = STATE(692), + [sym_friend_declaration] = STATE(692), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_alias_declaration] = STATE(692), + [sym_concept_definition] = STATE(692), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7774), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_qualified_operator_cast_identifier] = STATE(9184), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [aux_sym_operator_cast_definition_repeat1] = STATE(2506), + [sym_identifier] = ACTIONS(5454), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [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(5484), - [anon_sym_COLON_COLON] = ACTIONS(5460), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_using] = ACTIONS(5494), + [anon_sym_COLON_COLON] = ACTIONS(5458), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), [anon_sym___cdecl] = ACTIONS(55), @@ -216202,7 +216063,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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -216212,7 +216073,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(5486), + [anon_sym_constexpr] = ACTIONS(5496), [anon_sym_volatile] = ACTIONS(67), [anon_sym_restrict] = ACTIONS(67), [anon_sym___restrict__] = ACTIONS(67), @@ -216225,538 +216086,686 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5488), + [anon_sym_template] = ACTIONS(5498), [anon_sym_operator] = ACTIONS(143), - [anon_sym_friend] = ACTIONS(5490), - [anon_sym_concept] = ACTIONS(355), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_friend] = ACTIONS(5500), + [anon_sym_concept] = ACTIONS(1048), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1111)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(8831), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_expression] = STATE(3772), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5286), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7947), - [sym_qualified_identifier] = STATE(5288), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(3258), - [anon_sym_LPAREN2] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(27), + [STATE(1110)] = { + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(8825), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_expression] = STATE(5057), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5424), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7962), + [sym_qualified_identifier] = STATE(5429), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(3360), + [anon_sym_LPAREN2] = ACTIONS(2224), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2232), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(31), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), + [anon_sym_AMP] = ACTIONS(2234), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), [anon_sym___based] = ACTIONS(53), [anon_sym_LBRACK] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(1112)] = { - [sym_identifier] = ACTIONS(5589), - [anon_sym_LPAREN2] = ACTIONS(5591), - [anon_sym_BANG] = ACTIONS(5591), - [anon_sym_TILDE] = ACTIONS(5591), - [anon_sym_DASH] = ACTIONS(5589), - [anon_sym_PLUS] = ACTIONS(5589), - [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_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_LBRACE] = 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_EQ] = ACTIONS(5591), - [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), - [anon_sym_if] = ACTIONS(5589), - [anon_sym_switch] = ACTIONS(5589), - [anon_sym_case] = ACTIONS(5589), - [anon_sym_default] = ACTIONS(5589), - [anon_sym_while] = ACTIONS(5589), - [anon_sym_do] = ACTIONS(5589), - [anon_sym_for] = ACTIONS(5589), - [anon_sym_return] = ACTIONS(5589), - [anon_sym_break] = ACTIONS(5589), - [anon_sym_continue] = ACTIONS(5589), - [anon_sym_goto] = ACTIONS(5589), - [anon_sym___try] = ACTIONS(5589), - [anon_sym___leave] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(5589), - [anon_sym_compl] = ACTIONS(5589), - [anon_sym_DASH_DASH] = ACTIONS(5591), - [anon_sym_PLUS_PLUS] = ACTIONS(5591), - [anon_sym_sizeof] = ACTIONS(5589), - [anon_sym___alignof__] = ACTIONS(5589), - [anon_sym___alignof] = ACTIONS(5589), - [anon_sym__alignof] = ACTIONS(5589), - [anon_sym_alignof] = ACTIONS(5589), - [anon_sym__Alignof] = ACTIONS(5589), - [anon_sym_offsetof] = ACTIONS(5589), - [anon_sym__Generic] = ACTIONS(5589), - [anon_sym_typename] = ACTIONS(5589), - [anon_sym_asm] = ACTIONS(5589), - [anon_sym___asm__] = ACTIONS(5589), - [anon_sym___asm] = ACTIONS(5589), - [sym_number_literal] = ACTIONS(5591), - [anon_sym_L_SQUOTE] = ACTIONS(5591), - [anon_sym_u_SQUOTE] = ACTIONS(5591), - [anon_sym_U_SQUOTE] = ACTIONS(5591), - [anon_sym_u8_SQUOTE] = ACTIONS(5591), - [anon_sym_SQUOTE] = ACTIONS(5591), - [anon_sym_L_DQUOTE] = ACTIONS(5591), - [anon_sym_u_DQUOTE] = ACTIONS(5591), - [anon_sym_U_DQUOTE] = ACTIONS(5591), - [anon_sym_u8_DQUOTE] = ACTIONS(5591), - [anon_sym_DQUOTE] = ACTIONS(5591), - [sym_true] = ACTIONS(5589), - [sym_false] = ACTIONS(5589), - [anon_sym_NULL] = ACTIONS(5589), - [anon_sym_nullptr] = ACTIONS(5589), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5589), - [anon_sym_decltype] = ACTIONS(5589), - [anon_sym_explicit] = ACTIONS(5589), - [anon_sym_template] = ACTIONS(5589), - [anon_sym_operator] = ACTIONS(5589), - [anon_sym_try] = ACTIONS(5589), - [anon_sym_delete] = ACTIONS(5589), - [anon_sym_throw] = ACTIONS(5589), - [anon_sym_co_return] = ACTIONS(5589), - [anon_sym_co_yield] = ACTIONS(5589), - [anon_sym_R_DQUOTE] = ACTIONS(5591), - [anon_sym_LR_DQUOTE] = ACTIONS(5591), - [anon_sym_uR_DQUOTE] = ACTIONS(5591), - [anon_sym_UR_DQUOTE] = ACTIONS(5591), - [anon_sym_u8R_DQUOTE] = ACTIONS(5591), - [anon_sym_co_await] = ACTIONS(5589), - [anon_sym_new] = ACTIONS(5589), - [anon_sym_requires] = ACTIONS(5589), - [anon_sym_CARET_CARET] = ACTIONS(5591), - [anon_sym_LBRACK_COLON] = ACTIONS(5591), - [sym_this] = ACTIONS(5589), + [STATE(1111)] = { + [sym_identifier] = ACTIONS(5587), + [anon_sym_LPAREN2] = ACTIONS(5589), + [anon_sym_BANG] = ACTIONS(5589), + [anon_sym_TILDE] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5587), + [anon_sym_STAR] = ACTIONS(5589), + [anon_sym_AMP_AMP] = ACTIONS(5589), + [anon_sym_AMP] = ACTIONS(5587), + [anon_sym_SEMI] = ACTIONS(5589), + [anon_sym___extension__] = ACTIONS(5587), + [anon_sym_virtual] = ACTIONS(5587), + [anon_sym_extern] = ACTIONS(5587), + [anon_sym___attribute__] = ACTIONS(5587), + [anon_sym___attribute] = ACTIONS(5587), + [anon_sym_using] = ACTIONS(5587), + [anon_sym_COLON_COLON] = ACTIONS(5589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5589), + [anon_sym___declspec] = ACTIONS(5587), + [anon_sym___based] = ACTIONS(5587), + [anon_sym_LBRACE] = ACTIONS(5589), + [anon_sym_signed] = ACTIONS(5587), + [anon_sym_unsigned] = ACTIONS(5587), + [anon_sym_long] = ACTIONS(5587), + [anon_sym_short] = ACTIONS(5587), + [anon_sym_LBRACK] = ACTIONS(5587), + [anon_sym_static] = ACTIONS(5587), + [anon_sym_EQ] = ACTIONS(5589), + [anon_sym_register] = ACTIONS(5587), + [anon_sym_inline] = ACTIONS(5587), + [anon_sym___inline] = ACTIONS(5587), + [anon_sym___inline__] = ACTIONS(5587), + [anon_sym___forceinline] = ACTIONS(5587), + [anon_sym_thread_local] = ACTIONS(5587), + [anon_sym___thread] = ACTIONS(5587), + [anon_sym_const] = ACTIONS(5587), + [anon_sym_constexpr] = ACTIONS(5587), + [anon_sym_volatile] = ACTIONS(5587), + [anon_sym_restrict] = ACTIONS(5587), + [anon_sym___restrict__] = ACTIONS(5587), + [anon_sym__Atomic] = ACTIONS(5587), + [anon_sym__Noreturn] = ACTIONS(5587), + [anon_sym_noreturn] = ACTIONS(5587), + [anon_sym__Nonnull] = ACTIONS(5587), + [anon_sym_mutable] = ACTIONS(5587), + [anon_sym_constinit] = ACTIONS(5587), + [anon_sym_consteval] = ACTIONS(5587), + [anon_sym_alignas] = ACTIONS(5587), + [anon_sym__Alignas] = ACTIONS(5587), + [sym_primitive_type] = ACTIONS(5587), + [anon_sym_enum] = ACTIONS(5587), + [anon_sym_class] = ACTIONS(5587), + [anon_sym_struct] = ACTIONS(5587), + [anon_sym_union] = ACTIONS(5587), + [anon_sym_if] = ACTIONS(5587), + [anon_sym_switch] = ACTIONS(5587), + [anon_sym_case] = ACTIONS(5587), + [anon_sym_default] = ACTIONS(5587), + [anon_sym_while] = ACTIONS(5587), + [anon_sym_do] = ACTIONS(5587), + [anon_sym_for] = ACTIONS(5587), + [anon_sym_return] = ACTIONS(5587), + [anon_sym_break] = ACTIONS(5587), + [anon_sym_continue] = ACTIONS(5587), + [anon_sym_goto] = ACTIONS(5587), + [anon_sym___try] = ACTIONS(5587), + [anon_sym___leave] = ACTIONS(5587), + [anon_sym_not] = ACTIONS(5587), + [anon_sym_compl] = ACTIONS(5587), + [anon_sym_DASH_DASH] = ACTIONS(5589), + [anon_sym_PLUS_PLUS] = ACTIONS(5589), + [anon_sym_sizeof] = ACTIONS(5587), + [anon_sym___alignof__] = ACTIONS(5587), + [anon_sym___alignof] = ACTIONS(5587), + [anon_sym__alignof] = ACTIONS(5587), + [anon_sym_alignof] = ACTIONS(5587), + [anon_sym__Alignof] = ACTIONS(5587), + [anon_sym_offsetof] = ACTIONS(5587), + [anon_sym__Generic] = ACTIONS(5587), + [anon_sym_typename] = ACTIONS(5587), + [anon_sym_asm] = ACTIONS(5587), + [anon_sym___asm__] = ACTIONS(5587), + [anon_sym___asm] = ACTIONS(5587), + [sym_number_literal] = ACTIONS(5589), + [anon_sym_L_SQUOTE] = ACTIONS(5589), + [anon_sym_u_SQUOTE] = ACTIONS(5589), + [anon_sym_U_SQUOTE] = ACTIONS(5589), + [anon_sym_u8_SQUOTE] = ACTIONS(5589), + [anon_sym_SQUOTE] = ACTIONS(5589), + [anon_sym_L_DQUOTE] = ACTIONS(5589), + [anon_sym_u_DQUOTE] = ACTIONS(5589), + [anon_sym_U_DQUOTE] = ACTIONS(5589), + [anon_sym_u8_DQUOTE] = ACTIONS(5589), + [anon_sym_DQUOTE] = ACTIONS(5589), + [sym_true] = ACTIONS(5587), + [sym_false] = ACTIONS(5587), + [anon_sym_NULL] = ACTIONS(5587), + [anon_sym_nullptr] = ACTIONS(5587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5587), + [anon_sym_decltype] = ACTIONS(5587), + [anon_sym_explicit] = ACTIONS(5587), + [anon_sym_template] = ACTIONS(5587), + [anon_sym_operator] = ACTIONS(5587), + [anon_sym_try] = ACTIONS(5587), + [anon_sym_delete] = ACTIONS(5587), + [anon_sym_throw] = ACTIONS(5587), + [anon_sym_co_return] = ACTIONS(5587), + [anon_sym_co_yield] = ACTIONS(5587), + [anon_sym_R_DQUOTE] = ACTIONS(5589), + [anon_sym_LR_DQUOTE] = ACTIONS(5589), + [anon_sym_uR_DQUOTE] = ACTIONS(5589), + [anon_sym_UR_DQUOTE] = ACTIONS(5589), + [anon_sym_u8R_DQUOTE] = ACTIONS(5589), + [anon_sym_co_await] = ACTIONS(5587), + [anon_sym_new] = ACTIONS(5587), + [anon_sym_requires] = ACTIONS(5587), + [anon_sym_CARET_CARET] = ACTIONS(5589), + [anon_sym_LBRACK_COLON] = ACTIONS(5589), + [sym_this] = ACTIONS(5587), }, - [STATE(1113)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(8831), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_expression] = STATE(5117), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5427), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7942), - [sym_qualified_identifier] = STATE(5371), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_operator_name] = STATE(8555), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(3420), - [anon_sym_LPAREN2] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2234), + [STATE(1112)] = { + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(8825), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_expression] = STATE(3804), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5508), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7964), + [sym_qualified_identifier] = STATE(5509), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_operator_name] = STATE(8564), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(3412), + [anon_sym_LPAREN2] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(27), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(31), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), [anon_sym___based] = ACTIONS(53), [anon_sym_LBRACK] = ACTIONS(61), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1113)] = { + [sym_identifier] = ACTIONS(5591), + [anon_sym_LPAREN2] = ACTIONS(5593), + [anon_sym_BANG] = ACTIONS(5593), + [anon_sym_TILDE] = ACTIONS(5593), + [anon_sym_DASH] = ACTIONS(5591), + [anon_sym_PLUS] = ACTIONS(5591), + [anon_sym_STAR] = ACTIONS(5593), + [anon_sym_AMP_AMP] = ACTIONS(5593), + [anon_sym_AMP] = ACTIONS(5591), + [anon_sym_SEMI] = ACTIONS(5593), + [anon_sym___extension__] = ACTIONS(5591), + [anon_sym_virtual] = ACTIONS(5591), + [anon_sym_extern] = ACTIONS(5591), + [anon_sym___attribute__] = ACTIONS(5591), + [anon_sym___attribute] = ACTIONS(5591), + [anon_sym_using] = ACTIONS(5591), + [anon_sym_COLON_COLON] = ACTIONS(5593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5593), + [anon_sym___declspec] = ACTIONS(5591), + [anon_sym___based] = ACTIONS(5591), + [anon_sym_LBRACE] = ACTIONS(5593), + [anon_sym_signed] = ACTIONS(5591), + [anon_sym_unsigned] = ACTIONS(5591), + [anon_sym_long] = ACTIONS(5591), + [anon_sym_short] = ACTIONS(5591), + [anon_sym_LBRACK] = ACTIONS(5591), + [anon_sym_static] = ACTIONS(5591), + [anon_sym_EQ] = ACTIONS(5593), + [anon_sym_register] = ACTIONS(5591), + [anon_sym_inline] = ACTIONS(5591), + [anon_sym___inline] = ACTIONS(5591), + [anon_sym___inline__] = ACTIONS(5591), + [anon_sym___forceinline] = ACTIONS(5591), + [anon_sym_thread_local] = ACTIONS(5591), + [anon_sym___thread] = ACTIONS(5591), + [anon_sym_const] = ACTIONS(5591), + [anon_sym_constexpr] = ACTIONS(5591), + [anon_sym_volatile] = ACTIONS(5591), + [anon_sym_restrict] = ACTIONS(5591), + [anon_sym___restrict__] = ACTIONS(5591), + [anon_sym__Atomic] = ACTIONS(5591), + [anon_sym__Noreturn] = ACTIONS(5591), + [anon_sym_noreturn] = ACTIONS(5591), + [anon_sym__Nonnull] = ACTIONS(5591), + [anon_sym_mutable] = ACTIONS(5591), + [anon_sym_constinit] = ACTIONS(5591), + [anon_sym_consteval] = ACTIONS(5591), + [anon_sym_alignas] = ACTIONS(5591), + [anon_sym__Alignas] = ACTIONS(5591), + [sym_primitive_type] = ACTIONS(5591), + [anon_sym_enum] = ACTIONS(5591), + [anon_sym_class] = ACTIONS(5591), + [anon_sym_struct] = ACTIONS(5591), + [anon_sym_union] = ACTIONS(5591), + [anon_sym_if] = ACTIONS(5591), + [anon_sym_switch] = ACTIONS(5591), + [anon_sym_case] = ACTIONS(5591), + [anon_sym_default] = ACTIONS(5591), + [anon_sym_while] = ACTIONS(5591), + [anon_sym_do] = ACTIONS(5591), + [anon_sym_for] = ACTIONS(5591), + [anon_sym_return] = ACTIONS(5591), + [anon_sym_break] = ACTIONS(5591), + [anon_sym_continue] = ACTIONS(5591), + [anon_sym_goto] = ACTIONS(5591), + [anon_sym___try] = ACTIONS(5591), + [anon_sym___leave] = ACTIONS(5591), + [anon_sym_not] = ACTIONS(5591), + [anon_sym_compl] = ACTIONS(5591), + [anon_sym_DASH_DASH] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5593), + [anon_sym_sizeof] = ACTIONS(5591), + [anon_sym___alignof__] = ACTIONS(5591), + [anon_sym___alignof] = ACTIONS(5591), + [anon_sym__alignof] = ACTIONS(5591), + [anon_sym_alignof] = ACTIONS(5591), + [anon_sym__Alignof] = ACTIONS(5591), + [anon_sym_offsetof] = ACTIONS(5591), + [anon_sym__Generic] = ACTIONS(5591), + [anon_sym_typename] = ACTIONS(5591), + [anon_sym_asm] = ACTIONS(5591), + [anon_sym___asm__] = ACTIONS(5591), + [anon_sym___asm] = ACTIONS(5591), + [sym_number_literal] = ACTIONS(5593), + [anon_sym_L_SQUOTE] = ACTIONS(5593), + [anon_sym_u_SQUOTE] = ACTIONS(5593), + [anon_sym_U_SQUOTE] = ACTIONS(5593), + [anon_sym_u8_SQUOTE] = ACTIONS(5593), + [anon_sym_SQUOTE] = ACTIONS(5593), + [anon_sym_L_DQUOTE] = ACTIONS(5593), + [anon_sym_u_DQUOTE] = ACTIONS(5593), + [anon_sym_U_DQUOTE] = ACTIONS(5593), + [anon_sym_u8_DQUOTE] = ACTIONS(5593), + [anon_sym_DQUOTE] = ACTIONS(5593), + [sym_true] = ACTIONS(5591), + [sym_false] = ACTIONS(5591), + [anon_sym_NULL] = ACTIONS(5591), + [anon_sym_nullptr] = ACTIONS(5591), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5591), + [anon_sym_decltype] = ACTIONS(5591), + [anon_sym_explicit] = ACTIONS(5591), + [anon_sym_template] = ACTIONS(5591), + [anon_sym_operator] = ACTIONS(5591), + [anon_sym_try] = ACTIONS(5591), + [anon_sym_delete] = ACTIONS(5591), + [anon_sym_throw] = ACTIONS(5591), + [anon_sym_co_return] = ACTIONS(5591), + [anon_sym_co_yield] = ACTIONS(5591), + [anon_sym_R_DQUOTE] = ACTIONS(5593), + [anon_sym_LR_DQUOTE] = ACTIONS(5593), + [anon_sym_uR_DQUOTE] = ACTIONS(5593), + [anon_sym_UR_DQUOTE] = ACTIONS(5593), + [anon_sym_u8R_DQUOTE] = ACTIONS(5593), + [anon_sym_co_await] = ACTIONS(5591), + [anon_sym_new] = ACTIONS(5591), + [anon_sym_requires] = ACTIONS(5591), + [anon_sym_CARET_CARET] = ACTIONS(5593), + [anon_sym_LBRACK_COLON] = ACTIONS(5593), + [sym_this] = ACTIONS(5591), }, [STATE(1114)] = { - [sym_identifier] = ACTIONS(5593), - [anon_sym_LPAREN2] = ACTIONS(5595), - [anon_sym_BANG] = ACTIONS(5595), - [anon_sym_TILDE] = ACTIONS(5595), - [anon_sym_DASH] = ACTIONS(5593), - [anon_sym_PLUS] = ACTIONS(5593), - [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_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_LBRACE] = 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_EQ] = ACTIONS(5595), - [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), - [anon_sym_if] = ACTIONS(5593), - [anon_sym_switch] = ACTIONS(5593), - [anon_sym_case] = ACTIONS(5593), - [anon_sym_default] = ACTIONS(5593), - [anon_sym_while] = ACTIONS(5593), - [anon_sym_do] = ACTIONS(5593), - [anon_sym_for] = ACTIONS(5593), - [anon_sym_return] = ACTIONS(5593), - [anon_sym_break] = ACTIONS(5593), - [anon_sym_continue] = ACTIONS(5593), - [anon_sym_goto] = ACTIONS(5593), - [anon_sym___try] = ACTIONS(5593), - [anon_sym___leave] = ACTIONS(5593), - [anon_sym_not] = ACTIONS(5593), - [anon_sym_compl] = ACTIONS(5593), - [anon_sym_DASH_DASH] = ACTIONS(5595), - [anon_sym_PLUS_PLUS] = ACTIONS(5595), - [anon_sym_sizeof] = ACTIONS(5593), - [anon_sym___alignof__] = ACTIONS(5593), - [anon_sym___alignof] = ACTIONS(5593), - [anon_sym__alignof] = ACTIONS(5593), - [anon_sym_alignof] = ACTIONS(5593), - [anon_sym__Alignof] = ACTIONS(5593), - [anon_sym_offsetof] = ACTIONS(5593), - [anon_sym__Generic] = ACTIONS(5593), - [anon_sym_typename] = ACTIONS(5593), - [anon_sym_asm] = ACTIONS(5593), - [anon_sym___asm__] = ACTIONS(5593), - [anon_sym___asm] = ACTIONS(5593), - [sym_number_literal] = ACTIONS(5595), - [anon_sym_L_SQUOTE] = ACTIONS(5595), - [anon_sym_u_SQUOTE] = ACTIONS(5595), - [anon_sym_U_SQUOTE] = ACTIONS(5595), - [anon_sym_u8_SQUOTE] = ACTIONS(5595), - [anon_sym_SQUOTE] = ACTIONS(5595), - [anon_sym_L_DQUOTE] = ACTIONS(5595), - [anon_sym_u_DQUOTE] = ACTIONS(5595), - [anon_sym_U_DQUOTE] = ACTIONS(5595), - [anon_sym_u8_DQUOTE] = ACTIONS(5595), - [anon_sym_DQUOTE] = ACTIONS(5595), - [sym_true] = ACTIONS(5593), - [sym_false] = ACTIONS(5593), - [anon_sym_NULL] = ACTIONS(5593), - [anon_sym_nullptr] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5593), - [anon_sym_decltype] = ACTIONS(5593), - [anon_sym_explicit] = ACTIONS(5593), - [anon_sym_template] = ACTIONS(5593), - [anon_sym_operator] = ACTIONS(5593), - [anon_sym_try] = ACTIONS(5593), - [anon_sym_delete] = ACTIONS(5593), - [anon_sym_throw] = ACTIONS(5593), - [anon_sym_co_return] = ACTIONS(5593), - [anon_sym_co_yield] = ACTIONS(5593), - [anon_sym_R_DQUOTE] = ACTIONS(5595), - [anon_sym_LR_DQUOTE] = ACTIONS(5595), - [anon_sym_uR_DQUOTE] = ACTIONS(5595), - [anon_sym_UR_DQUOTE] = ACTIONS(5595), - [anon_sym_u8R_DQUOTE] = ACTIONS(5595), - [anon_sym_co_await] = ACTIONS(5593), - [anon_sym_new] = ACTIONS(5593), - [anon_sym_requires] = ACTIONS(5593), - [anon_sym_CARET_CARET] = ACTIONS(5595), - [anon_sym_LBRACK_COLON] = ACTIONS(5595), - [sym_this] = ACTIONS(5593), + [sym_identifier] = ACTIONS(5595), + [anon_sym_LPAREN2] = ACTIONS(5598), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_TILDE] = ACTIONS(5598), + [anon_sym_DASH] = ACTIONS(5603), + [anon_sym_PLUS] = ACTIONS(5603), + [anon_sym_STAR] = ACTIONS(5598), + [anon_sym_AMP_AMP] = ACTIONS(5605), + [anon_sym_AMP] = ACTIONS(5595), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym___extension__] = ACTIONS(5595), + [anon_sym_virtual] = ACTIONS(5607), + [anon_sym_extern] = ACTIONS(5607), + [anon_sym___attribute__] = ACTIONS(5607), + [anon_sym___attribute] = ACTIONS(5607), + [anon_sym_using] = ACTIONS(5603), + [anon_sym_COLON_COLON] = ACTIONS(5598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5598), + [anon_sym___declspec] = ACTIONS(5607), + [anon_sym___based] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(5601), + [anon_sym_signed] = ACTIONS(5607), + [anon_sym_unsigned] = ACTIONS(5607), + [anon_sym_long] = ACTIONS(5607), + [anon_sym_short] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(5595), + [anon_sym_static] = ACTIONS(5607), + [anon_sym_register] = ACTIONS(5607), + [anon_sym_inline] = ACTIONS(5607), + [anon_sym___inline] = ACTIONS(5607), + [anon_sym___inline__] = ACTIONS(5607), + [anon_sym___forceinline] = ACTIONS(5607), + [anon_sym_thread_local] = ACTIONS(5607), + [anon_sym___thread] = ACTIONS(5607), + [anon_sym_const] = ACTIONS(5607), + [anon_sym_constexpr] = ACTIONS(5607), + [anon_sym_volatile] = ACTIONS(5607), + [anon_sym_restrict] = ACTIONS(5607), + [anon_sym___restrict__] = ACTIONS(5607), + [anon_sym__Atomic] = ACTIONS(5607), + [anon_sym__Noreturn] = ACTIONS(5607), + [anon_sym_noreturn] = ACTIONS(5607), + [anon_sym__Nonnull] = ACTIONS(5607), + [anon_sym_mutable] = ACTIONS(5607), + [anon_sym_constinit] = ACTIONS(5607), + [anon_sym_consteval] = ACTIONS(5607), + [anon_sym_alignas] = ACTIONS(5607), + [anon_sym__Alignas] = ACTIONS(5607), + [sym_primitive_type] = ACTIONS(5595), + [anon_sym_enum] = ACTIONS(5607), + [anon_sym_class] = ACTIONS(5607), + [anon_sym_struct] = ACTIONS(5607), + [anon_sym_union] = ACTIONS(5607), + [anon_sym_if] = ACTIONS(5603), + [anon_sym_switch] = ACTIONS(5603), + [anon_sym_case] = ACTIONS(5603), + [anon_sym_default] = ACTIONS(5603), + [anon_sym_while] = ACTIONS(5603), + [anon_sym_do] = ACTIONS(5603), + [anon_sym_for] = ACTIONS(5603), + [anon_sym_return] = ACTIONS(5603), + [anon_sym_break] = ACTIONS(5603), + [anon_sym_continue] = ACTIONS(5603), + [anon_sym_goto] = ACTIONS(5603), + [anon_sym___try] = ACTIONS(5603), + [anon_sym___leave] = ACTIONS(5603), + [anon_sym_not] = ACTIONS(5603), + [anon_sym_compl] = ACTIONS(5603), + [anon_sym_DASH_DASH] = ACTIONS(5601), + [anon_sym_PLUS_PLUS] = ACTIONS(5601), + [anon_sym_sizeof] = ACTIONS(5603), + [anon_sym___alignof__] = ACTIONS(5603), + [anon_sym___alignof] = ACTIONS(5603), + [anon_sym__alignof] = ACTIONS(5603), + [anon_sym_alignof] = ACTIONS(5603), + [anon_sym__Alignof] = ACTIONS(5603), + [anon_sym_offsetof] = ACTIONS(5603), + [anon_sym__Generic] = ACTIONS(5603), + [anon_sym_typename] = ACTIONS(5595), + [anon_sym_asm] = ACTIONS(5603), + [anon_sym___asm__] = ACTIONS(5603), + [anon_sym___asm] = ACTIONS(5603), + [sym_number_literal] = ACTIONS(5601), + [anon_sym_L_SQUOTE] = ACTIONS(5601), + [anon_sym_u_SQUOTE] = ACTIONS(5601), + [anon_sym_U_SQUOTE] = ACTIONS(5601), + [anon_sym_u8_SQUOTE] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_L_DQUOTE] = ACTIONS(5601), + [anon_sym_u_DQUOTE] = ACTIONS(5601), + [anon_sym_U_DQUOTE] = ACTIONS(5601), + [anon_sym_u8_DQUOTE] = ACTIONS(5601), + [anon_sym_DQUOTE] = ACTIONS(5601), + [sym_true] = ACTIONS(5603), + [sym_false] = ACTIONS(5603), + [anon_sym_NULL] = ACTIONS(5603), + [anon_sym_nullptr] = ACTIONS(5603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5607), + [anon_sym_decltype] = ACTIONS(5595), + [anon_sym_explicit] = ACTIONS(5607), + [anon_sym_template] = ACTIONS(5595), + [anon_sym_operator] = ACTIONS(5607), + [anon_sym_try] = ACTIONS(5603), + [anon_sym_delete] = ACTIONS(5603), + [anon_sym_throw] = ACTIONS(5603), + [anon_sym_co_return] = ACTIONS(5603), + [anon_sym_co_yield] = ACTIONS(5603), + [anon_sym_R_DQUOTE] = ACTIONS(5601), + [anon_sym_LR_DQUOTE] = ACTIONS(5601), + [anon_sym_uR_DQUOTE] = ACTIONS(5601), + [anon_sym_UR_DQUOTE] = ACTIONS(5601), + [anon_sym_u8R_DQUOTE] = ACTIONS(5601), + [anon_sym_co_await] = ACTIONS(5603), + [anon_sym_new] = ACTIONS(5603), + [anon_sym_requires] = ACTIONS(5603), + [anon_sym_CARET_CARET] = ACTIONS(5601), + [anon_sym_LBRACK_COLON] = ACTIONS(5598), + [sym_this] = ACTIONS(5603), }, [STATE(1115)] = { - [sym_identifier] = ACTIONS(5597), - [anon_sym_LPAREN2] = ACTIONS(5600), - [anon_sym_BANG] = ACTIONS(5603), - [anon_sym_TILDE] = ACTIONS(5600), - [anon_sym_DASH] = ACTIONS(5605), - [anon_sym_PLUS] = ACTIONS(5605), - [anon_sym_STAR] = ACTIONS(5600), - [anon_sym_AMP_AMP] = ACTIONS(5607), - [anon_sym_AMP] = ACTIONS(5597), - [anon_sym_SEMI] = ACTIONS(5603), - [anon_sym___extension__] = ACTIONS(5597), + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2150), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5613), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___extension__] = 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(5605), - [anon_sym_COLON_COLON] = ACTIONS(5600), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5600), + [anon_sym_COLON] = ACTIONS(5630), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5634), [anon_sym___declspec] = ACTIONS(5609), [anon_sym___based] = ACTIONS(5609), - [anon_sym_LBRACE] = ACTIONS(5603), - [anon_sym_signed] = ACTIONS(5609), - [anon_sym_unsigned] = ACTIONS(5609), - [anon_sym_long] = ACTIONS(5609), - [anon_sym_short] = ACTIONS(5609), - [anon_sym_LBRACK] = ACTIONS(5597), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5641), [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), [anon_sym_register] = ACTIONS(5609), [anon_sym_inline] = ACTIONS(5609), [anon_sym___inline] = ACTIONS(5609), @@ -216778,280 +216787,251 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(5609), [anon_sym_alignas] = ACTIONS(5609), [anon_sym__Alignas] = ACTIONS(5609), - [sym_primitive_type] = ACTIONS(5597), - [anon_sym_enum] = ACTIONS(5609), - [anon_sym_class] = ACTIONS(5609), - [anon_sym_struct] = ACTIONS(5609), - [anon_sym_union] = ACTIONS(5609), - [anon_sym_if] = ACTIONS(5605), - [anon_sym_switch] = ACTIONS(5605), - [anon_sym_case] = ACTIONS(5605), - [anon_sym_default] = ACTIONS(5605), - [anon_sym_while] = ACTIONS(5605), - [anon_sym_do] = ACTIONS(5605), - [anon_sym_for] = ACTIONS(5605), - [anon_sym_return] = ACTIONS(5605), - [anon_sym_break] = ACTIONS(5605), - [anon_sym_continue] = ACTIONS(5605), - [anon_sym_goto] = ACTIONS(5605), - [anon_sym___try] = ACTIONS(5605), - [anon_sym___leave] = ACTIONS(5605), - [anon_sym_not] = ACTIONS(5605), - [anon_sym_compl] = ACTIONS(5605), - [anon_sym_DASH_DASH] = ACTIONS(5603), - [anon_sym_PLUS_PLUS] = ACTIONS(5603), - [anon_sym_sizeof] = ACTIONS(5605), - [anon_sym___alignof__] = ACTIONS(5605), - [anon_sym___alignof] = ACTIONS(5605), - [anon_sym__alignof] = ACTIONS(5605), - [anon_sym_alignof] = ACTIONS(5605), - [anon_sym__Alignof] = ACTIONS(5605), - [anon_sym_offsetof] = ACTIONS(5605), - [anon_sym__Generic] = ACTIONS(5605), - [anon_sym_typename] = ACTIONS(5597), - [anon_sym_asm] = ACTIONS(5605), - [anon_sym___asm__] = ACTIONS(5605), - [anon_sym___asm] = ACTIONS(5605), - [sym_number_literal] = ACTIONS(5603), - [anon_sym_L_SQUOTE] = ACTIONS(5603), - [anon_sym_u_SQUOTE] = ACTIONS(5603), - [anon_sym_U_SQUOTE] = ACTIONS(5603), - [anon_sym_u8_SQUOTE] = ACTIONS(5603), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(5605), - [sym_false] = ACTIONS(5605), - [anon_sym_NULL] = ACTIONS(5605), - [anon_sym_nullptr] = ACTIONS(5605), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5609), - [anon_sym_decltype] = ACTIONS(5597), - [anon_sym_explicit] = ACTIONS(5609), - [anon_sym_template] = ACTIONS(5597), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), [anon_sym_operator] = ACTIONS(5609), - [anon_sym_try] = ACTIONS(5605), - [anon_sym_delete] = ACTIONS(5605), - [anon_sym_throw] = ACTIONS(5605), - [anon_sym_co_return] = ACTIONS(5605), - [anon_sym_co_yield] = ACTIONS(5605), - [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), - [anon_sym_co_await] = ACTIONS(5605), - [anon_sym_new] = ACTIONS(5605), - [anon_sym_requires] = ACTIONS(5605), - [anon_sym_CARET_CARET] = ACTIONS(5603), - [anon_sym_LBRACK_COLON] = ACTIONS(5600), - [sym_this] = ACTIONS(5605), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), }, [STATE(1116)] = { [sym_catch_clause] = STATE(1118), [aux_sym_constructor_try_statement_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym___extension__] = ACTIONS(3165), - [anon_sym_typedef] = ACTIONS(3165), - [anon_sym_virtual] = ACTIONS(3165), - [anon_sym_extern] = ACTIONS(3165), - [anon_sym___attribute__] = ACTIONS(3165), - [anon_sym___attribute] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), - [anon_sym___declspec] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_signed] = ACTIONS(3165), - [anon_sym_unsigned] = ACTIONS(3165), - [anon_sym_long] = ACTIONS(3165), - [anon_sym_short] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_static] = ACTIONS(3165), - [anon_sym_register] = ACTIONS(3165), - [anon_sym_inline] = ACTIONS(3165), - [anon_sym___inline] = ACTIONS(3165), - [anon_sym___inline__] = ACTIONS(3165), - [anon_sym___forceinline] = ACTIONS(3165), - [anon_sym_thread_local] = ACTIONS(3165), - [anon_sym___thread] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_constexpr] = ACTIONS(3165), - [anon_sym_volatile] = ACTIONS(3165), - [anon_sym_restrict] = ACTIONS(3165), - [anon_sym___restrict__] = ACTIONS(3165), - [anon_sym__Atomic] = ACTIONS(3165), - [anon_sym__Noreturn] = ACTIONS(3165), - [anon_sym_noreturn] = ACTIONS(3165), - [anon_sym__Nonnull] = ACTIONS(3165), - [anon_sym_mutable] = ACTIONS(3165), - [anon_sym_constinit] = ACTIONS(3165), - [anon_sym_consteval] = ACTIONS(3165), - [anon_sym_alignas] = ACTIONS(3165), - [anon_sym__Alignas] = ACTIONS(3165), - [sym_primitive_type] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_switch] = ACTIONS(3165), - [anon_sym_while] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym___try] = ACTIONS(3165), - [anon_sym___leave] = ACTIONS(3165), - [anon_sym_not] = ACTIONS(3165), - [anon_sym_compl] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_sizeof] = ACTIONS(3165), - [anon_sym___alignof__] = ACTIONS(3165), - [anon_sym___alignof] = ACTIONS(3165), - [anon_sym__alignof] = ACTIONS(3165), - [anon_sym_alignof] = ACTIONS(3165), - [anon_sym__Alignof] = ACTIONS(3165), - [anon_sym_offsetof] = ACTIONS(3165), - [anon_sym__Generic] = ACTIONS(3165), - [anon_sym_typename] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym___asm__] = ACTIONS(3165), - [anon_sym___asm] = ACTIONS(3165), - [sym_number_literal] = ACTIONS(3167), - [anon_sym_L_SQUOTE] = ACTIONS(3167), - [anon_sym_u_SQUOTE] = ACTIONS(3167), - [anon_sym_U_SQUOTE] = ACTIONS(3167), - [anon_sym_u8_SQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_L_DQUOTE] = ACTIONS(3167), - [anon_sym_u_DQUOTE] = ACTIONS(3167), - [anon_sym_U_DQUOTE] = ACTIONS(3167), - [anon_sym_u8_DQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [anon_sym_NULL] = ACTIONS(3165), - [anon_sym_nullptr] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3165), - [anon_sym_decltype] = ACTIONS(3165), - [anon_sym_template] = ACTIONS(3165), - [anon_sym_try] = ACTIONS(3165), - [anon_sym_delete] = ACTIONS(3165), - [anon_sym_throw] = ACTIONS(3165), - [anon_sym_co_return] = ACTIONS(3165), - [anon_sym_co_yield] = ACTIONS(3165), - [anon_sym_catch] = ACTIONS(5611), - [anon_sym_R_DQUOTE] = ACTIONS(3167), - [anon_sym_LR_DQUOTE] = ACTIONS(3167), - [anon_sym_uR_DQUOTE] = ACTIONS(3167), - [anon_sym_UR_DQUOTE] = ACTIONS(3167), - [anon_sym_u8R_DQUOTE] = ACTIONS(3167), - [anon_sym_co_await] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_requires] = ACTIONS(3165), - [anon_sym_CARET_CARET] = ACTIONS(3167), - [anon_sym_LBRACK_COLON] = ACTIONS(3167), - [sym_this] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3170), + [anon_sym_LPAREN2] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3170), + [anon_sym_virtual] = ACTIONS(3170), + [anon_sym_extern] = ACTIONS(3170), + [anon_sym___attribute__] = ACTIONS(3170), + [anon_sym___attribute] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(3172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3172), + [anon_sym___declspec] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3170), + [anon_sym_unsigned] = ACTIONS(3170), + [anon_sym_long] = ACTIONS(3170), + [anon_sym_short] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_register] = ACTIONS(3170), + [anon_sym_inline] = ACTIONS(3170), + [anon_sym___inline] = ACTIONS(3170), + [anon_sym___inline__] = ACTIONS(3170), + [anon_sym___forceinline] = ACTIONS(3170), + [anon_sym_thread_local] = ACTIONS(3170), + [anon_sym___thread] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_constexpr] = ACTIONS(3170), + [anon_sym_volatile] = ACTIONS(3170), + [anon_sym_restrict] = ACTIONS(3170), + [anon_sym___restrict__] = ACTIONS(3170), + [anon_sym__Atomic] = ACTIONS(3170), + [anon_sym__Noreturn] = ACTIONS(3170), + [anon_sym_noreturn] = ACTIONS(3170), + [anon_sym__Nonnull] = ACTIONS(3170), + [anon_sym_mutable] = ACTIONS(3170), + [anon_sym_constinit] = ACTIONS(3170), + [anon_sym_consteval] = ACTIONS(3170), + [anon_sym_alignas] = ACTIONS(3170), + [anon_sym__Alignas] = ACTIONS(3170), + [sym_primitive_type] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_goto] = ACTIONS(3170), + [anon_sym___try] = ACTIONS(3170), + [anon_sym___leave] = ACTIONS(3170), + [anon_sym_not] = ACTIONS(3170), + [anon_sym_compl] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_sizeof] = ACTIONS(3170), + [anon_sym___alignof__] = ACTIONS(3170), + [anon_sym___alignof] = ACTIONS(3170), + [anon_sym__alignof] = ACTIONS(3170), + [anon_sym_alignof] = ACTIONS(3170), + [anon_sym__Alignof] = ACTIONS(3170), + [anon_sym_offsetof] = ACTIONS(3170), + [anon_sym__Generic] = ACTIONS(3170), + [anon_sym_typename] = ACTIONS(3170), + [anon_sym_asm] = ACTIONS(3170), + [anon_sym___asm__] = ACTIONS(3170), + [anon_sym___asm] = ACTIONS(3170), + [sym_number_literal] = ACTIONS(3172), + [anon_sym_L_SQUOTE] = ACTIONS(3172), + [anon_sym_u_SQUOTE] = ACTIONS(3172), + [anon_sym_U_SQUOTE] = ACTIONS(3172), + [anon_sym_u8_SQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_L_DQUOTE] = ACTIONS(3172), + [anon_sym_u_DQUOTE] = ACTIONS(3172), + [anon_sym_U_DQUOTE] = ACTIONS(3172), + [anon_sym_u8_DQUOTE] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [anon_sym_NULL] = ACTIONS(3170), + [anon_sym_nullptr] = ACTIONS(3170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3170), + [anon_sym_decltype] = ACTIONS(3170), + [anon_sym_template] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_co_return] = ACTIONS(3170), + [anon_sym_co_yield] = ACTIONS(3170), + [anon_sym_catch] = ACTIONS(5653), + [anon_sym_R_DQUOTE] = ACTIONS(3172), + [anon_sym_LR_DQUOTE] = ACTIONS(3172), + [anon_sym_uR_DQUOTE] = ACTIONS(3172), + [anon_sym_UR_DQUOTE] = ACTIONS(3172), + [anon_sym_u8R_DQUOTE] = ACTIONS(3172), + [anon_sym_co_await] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_requires] = ACTIONS(3170), + [anon_sym_CARET_CARET] = ACTIONS(3172), + [anon_sym_LBRACK_COLON] = ACTIONS(3172), + [sym_this] = ACTIONS(3170), }, [STATE(1117)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_call_modifier] = STATE(6422), - [sym__declarator] = STATE(9071), - [sym__abstract_declarator] = STATE(9362), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(9791), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9791), - [sym_optional_parameter_declaration] = STATE(9791), - [sym_variadic_parameter_declaration] = STATE(9791), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7918), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5621), - [anon_sym_AMP] = ACTIONS(5623), + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_call_modifier] = STATE(6384), + [sym__declarator] = STATE(9010), + [sym__abstract_declarator] = STATE(9388), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(9683), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9683), + [sym_optional_parameter_declaration] = STATE(9683), + [sym_variadic_parameter_declaration] = STATE(9683), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7950), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5655), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_RPAREN] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(5661), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_AMP] = ACTIONS(5665), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5625), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5667), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___based] = ACTIONS(53), - [anon_sym___cdecl] = ACTIONS(2242), - [anon_sym___clrcall] = ACTIONS(2242), - [anon_sym___stdcall] = ACTIONS(2242), - [anon_sym___fastcall] = ACTIONS(2242), - [anon_sym___thiscall] = ACTIONS(2242), - [anon_sym___vectorcall] = ACTIONS(2242), + [anon_sym___cdecl] = ACTIONS(2240), + [anon_sym___clrcall] = ACTIONS(2240), + [anon_sym___stdcall] = ACTIONS(2240), + [anon_sym___fastcall] = ACTIONS(2240), + [anon_sym___thiscall] = ACTIONS(2240), + [anon_sym___vectorcall] = ACTIONS(2240), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(5627), + [anon_sym_LBRACK] = ACTIONS(5669), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -217074,450 +217054,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, [STATE(1118)] = { [sym_catch_clause] = STATE(1118), [aux_sym_constructor_try_statement_repeat1] = STATE(1118), - [sym_identifier] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3171), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym___attribute] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym__Nonnull] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym__Alignas] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3171), - [anon_sym_switch] = ACTIONS(3171), - [anon_sym_while] = ACTIONS(3171), - [anon_sym_do] = ACTIONS(3171), - [anon_sym_for] = ACTIONS(3171), - [anon_sym_return] = ACTIONS(3171), - [anon_sym_break] = ACTIONS(3171), - [anon_sym_continue] = ACTIONS(3171), - [anon_sym_goto] = ACTIONS(3171), - [anon_sym___try] = ACTIONS(3171), - [anon_sym___leave] = ACTIONS(3171), - [anon_sym_not] = ACTIONS(3171), - [anon_sym_compl] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_sizeof] = ACTIONS(3171), - [anon_sym___alignof__] = ACTIONS(3171), - [anon_sym___alignof] = ACTIONS(3171), - [anon_sym__alignof] = ACTIONS(3171), - [anon_sym_alignof] = ACTIONS(3171), - [anon_sym__Alignof] = ACTIONS(3171), - [anon_sym_offsetof] = ACTIONS(3171), - [anon_sym__Generic] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [anon_sym_asm] = ACTIONS(3171), - [anon_sym___asm__] = ACTIONS(3171), - [anon_sym___asm] = ACTIONS(3171), - [sym_number_literal] = ACTIONS(3173), - [anon_sym_L_SQUOTE] = ACTIONS(3173), - [anon_sym_u_SQUOTE] = ACTIONS(3173), - [anon_sym_U_SQUOTE] = ACTIONS(3173), - [anon_sym_u8_SQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_L_DQUOTE] = ACTIONS(3173), - [anon_sym_u_DQUOTE] = ACTIONS(3173), - [anon_sym_U_DQUOTE] = ACTIONS(3173), - [anon_sym_u8_DQUOTE] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [sym_true] = ACTIONS(3171), - [sym_false] = ACTIONS(3171), - [anon_sym_NULL] = ACTIONS(3171), - [anon_sym_nullptr] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_try] = ACTIONS(3171), - [anon_sym_delete] = ACTIONS(3171), - [anon_sym_throw] = ACTIONS(3171), - [anon_sym_co_return] = ACTIONS(3171), - [anon_sym_co_yield] = ACTIONS(3171), - [anon_sym_catch] = ACTIONS(5633), - [anon_sym_R_DQUOTE] = ACTIONS(3173), - [anon_sym_LR_DQUOTE] = ACTIONS(3173), - [anon_sym_uR_DQUOTE] = ACTIONS(3173), - [anon_sym_UR_DQUOTE] = ACTIONS(3173), - [anon_sym_u8R_DQUOTE] = ACTIONS(3173), - [anon_sym_co_await] = ACTIONS(3171), - [anon_sym_new] = ACTIONS(3171), - [anon_sym_requires] = ACTIONS(3171), - [anon_sym_CARET_CARET] = ACTIONS(3173), - [anon_sym_LBRACK_COLON] = ACTIONS(3173), - [sym_this] = ACTIONS(3171), + [sym_identifier] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3159), + [anon_sym_PLUS] = ACTIONS(3159), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym___attribute] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym__Nonnull] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym__Alignas] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_else] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_do] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_goto] = ACTIONS(3159), + [anon_sym___try] = ACTIONS(3159), + [anon_sym___leave] = ACTIONS(3159), + [anon_sym_not] = ACTIONS(3159), + [anon_sym_compl] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3161), + [anon_sym_sizeof] = ACTIONS(3159), + [anon_sym___alignof__] = ACTIONS(3159), + [anon_sym___alignof] = ACTIONS(3159), + [anon_sym__alignof] = ACTIONS(3159), + [anon_sym_alignof] = ACTIONS(3159), + [anon_sym__Alignof] = ACTIONS(3159), + [anon_sym_offsetof] = ACTIONS(3159), + [anon_sym__Generic] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [anon_sym_asm] = ACTIONS(3159), + [anon_sym___asm__] = ACTIONS(3159), + [anon_sym___asm] = ACTIONS(3159), + [sym_number_literal] = ACTIONS(3161), + [anon_sym_L_SQUOTE] = ACTIONS(3161), + [anon_sym_u_SQUOTE] = ACTIONS(3161), + [anon_sym_U_SQUOTE] = ACTIONS(3161), + [anon_sym_u8_SQUOTE] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3161), + [anon_sym_L_DQUOTE] = ACTIONS(3161), + [anon_sym_u_DQUOTE] = ACTIONS(3161), + [anon_sym_U_DQUOTE] = ACTIONS(3161), + [anon_sym_u8_DQUOTE] = ACTIONS(3161), + [anon_sym_DQUOTE] = ACTIONS(3161), + [sym_true] = ACTIONS(3159), + [sym_false] = ACTIONS(3159), + [anon_sym_NULL] = ACTIONS(3159), + [anon_sym_nullptr] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [anon_sym_delete] = ACTIONS(3159), + [anon_sym_throw] = ACTIONS(3159), + [anon_sym_co_return] = ACTIONS(3159), + [anon_sym_co_yield] = ACTIONS(3159), + [anon_sym_catch] = ACTIONS(5675), + [anon_sym_R_DQUOTE] = ACTIONS(3161), + [anon_sym_LR_DQUOTE] = ACTIONS(3161), + [anon_sym_uR_DQUOTE] = ACTIONS(3161), + [anon_sym_UR_DQUOTE] = ACTIONS(3161), + [anon_sym_u8R_DQUOTE] = ACTIONS(3161), + [anon_sym_co_await] = ACTIONS(3159), + [anon_sym_new] = ACTIONS(3159), + [anon_sym_requires] = ACTIONS(3159), + [anon_sym_CARET_CARET] = ACTIONS(3161), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_this] = ACTIONS(3159), }, [STATE(1119)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2130), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5653), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5647), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), + [sym_expression] = STATE(5495), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1120)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2131), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5673), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5678), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1121)] = { - [sym_expression] = STATE(6524), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [sym_expression] = STATE(6516), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -217525,350 +217385,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1122)] = { - [sym_expression] = STATE(6337), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1123)] = { - [sym_expression] = STATE(6758), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [STATE(1121)] = { + [sym_expression] = STATE(5092), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(1124)] = { - [sym_expression] = STATE(6619), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9884), - [sym_initializer_pair] = STATE(9884), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_COMMA] = ACTIONS(5690), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1122)] = { + [sym_expression] = STATE(6481), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(5678), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5692), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -217881,11 +217621,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), + [anon_sym_DASH_GT] = ACTIONS(5678), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -217902,9 +217642,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -217914,433 +217656,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1125)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2130), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5696), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5647), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1126)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2130), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5698), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5647), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1127)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2130), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5647), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1128)] = { - [sym_expression] = STATE(6590), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10054), - [sym_initializer_pair] = STATE(10054), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_COMMA] = ACTIONS(5700), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1123)] = { + [sym_expression] = STATE(6676), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9766), + [sym_initializer_pair] = STATE(9766), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(179), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5702), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5682), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -218353,7 +217741,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -218374,8 +217762,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -218386,667 +217774,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1129)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2131), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5704), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5678), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1130)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2131), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5706), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5678), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1131)] = { - [sym_expression] = STATE(5411), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1132)] = { - [sym_expression] = STATE(5413), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1133)] = { - [sym_expression] = STATE(6770), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [STATE(1124)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2181), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5630), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), }, - [STATE(1134)] = { - [sym_expression] = STATE(6475), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(5682), + [STATE(1125)] = { + [sym_expression] = STATE(6636), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9870), + [sym_initializer_pair] = STATE(9870), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(5686), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5688), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -219059,11 +217977,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -219080,11 +217998,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -219094,79 +218010,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1135)] = { - [sym_expression] = STATE(6723), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10059), - [sym_initializer_pair] = STATE(10059), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_COMMA] = ACTIONS(5708), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1126)] = { + [sym_expression] = STATE(6606), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9950), + [sym_initializer_pair] = STATE(9950), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(5690), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5710), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5692), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -219179,7 +218095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -219200,8 +218116,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -219212,436 +218128,554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1136)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2131), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5653), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5678), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), + [STATE(1127)] = { + [sym_expression] = STATE(4756), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, - [STATE(1137)] = { - [sym_expression] = STATE(5866), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1128)] = { + [sym_expression] = STATE(6372), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, - [STATE(1138)] = { - [sym_expression] = STATE(4419), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [STATE(1129)] = { + [sym_expression] = STATE(6799), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(1139)] = { - [sym_expression] = STATE(6313), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1130)] = { + [sym_expression] = STATE(5879), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1131)] = { + [sym_expression] = STATE(6296), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -219649,114 +218683,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1140)] = { - [sym_expression] = STATE(6559), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9686), - [sym_initializer_pair] = STATE(9686), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_COMMA] = ACTIONS(5712), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1132)] = { + [sym_expression] = STATE(6578), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10093), + [sym_initializer_pair] = STATE(10093), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(5696), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5714), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5698), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -219769,7 +218803,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -219790,8 +218824,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -219802,200 +218836,1144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1133)] = { + [sym_expression] = STATE(5439), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1134)] = { + [sym_expression] = STATE(6852), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1135)] = { + [sym_expression] = STATE(5458), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1136)] = { + [sym_expression] = STATE(4713), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1137)] = { + [sym_expression] = STATE(4926), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1138)] = { + [sym_expression] = STATE(4854), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1139)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2181), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5700), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), + }, + [STATE(1140)] = { + [sym_expression] = STATE(5746), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, [STATE(1141)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2130), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5716), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5647), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2150), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5613), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5702), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5634), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5641), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), }, [STATE(1142)] = { - [sym_expression] = STATE(6482), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [sym_expression] = STATE(6827), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -220003,11 +219981,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(5678), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -220024,565 +220002,447 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1143)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2131), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5696), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5678), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2150), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5613), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5704), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5634), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5641), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), }, [STATE(1144)] = { - [sym_expression] = STATE(5492), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), + [sym_expression] = STATE(5408), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1145)] = { - [sym_expression] = STATE(4973), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5411), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1146)] = { - [sym_expression] = STATE(4748), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1147)] = { - [sym_expression] = STATE(6628), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9970), - [sym_initializer_pair] = STATE(9970), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_COMMA] = ACTIONS(5718), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6592), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9819), + [sym_initializer_pair] = STATE(9819), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(5706), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5720), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5708), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -220595,7 +220455,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -220616,8 +220476,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -220628,79 +220488,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1147)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2181), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5702), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), + }, [STATE(1148)] = { - [sym_expression] = STATE(6696), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10192), - [sym_initializer_pair] = STATE(10192), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_COMMA] = ACTIONS(5722), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6647), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9994), + [sym_initializer_pair] = STATE(9994), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(5710), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5724), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5712), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -220713,7 +220691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -220734,8 +220712,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -220746,551 +220724,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1149)] = { - [sym_expression] = STATE(5865), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1150)] = { - [sym_expression] = STATE(5462), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1151)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2130), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5704), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5647), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1152)] = { - [sym_expression] = STATE(4717), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1153)] = { - [sym_expression] = STATE(6605), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9750), - [sym_initializer_pair] = STATE(9750), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_COMMA] = ACTIONS(5726), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6705), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(9706), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5728), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5714), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -221303,7 +220809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -221324,8 +220830,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -221336,82 +220842,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1154)] = { - [sym_expression] = STATE(6865), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1150)] = { + [sym_expression] = STATE(4395), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1151)] = { + [sym_expression] = STATE(4397), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1152)] = { + [sym_expression] = STATE(6618), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9732), + [sym_initializer_pair] = STATE(9732), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(5716), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5718), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -221419,11 +221163,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -221440,96 +221184,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1155)] = { - [sym_expression] = STATE(6867), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1153)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2150), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5613), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5720), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5634), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5641), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), + }, + [STATE(1154)] = { + [sym_expression] = STATE(6573), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9899), + [sym_initializer_pair] = STATE(9899), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_COMMA] = ACTIONS(5722), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5724), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -221537,11 +221399,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5682), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -221558,211 +221420,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1156)] = { - [sym_expression] = STATE(4413), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1157)] = { - [sym_expression] = STATE(6688), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9956), - [sym_initializer_pair] = STATE(9956), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_COMMA] = ACTIONS(179), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1155)] = { + [sym_expression] = STATE(6486), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(5678), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5730), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -221775,11 +221515,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), + [anon_sym_DASH_GT] = ACTIONS(5678), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -221796,9 +221536,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), @@ -221808,84 +221550,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1158)] = { - [sym_expression] = STATE(6687), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(9818), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5732), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1156)] = { + [sym_expression] = STATE(6512), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -221893,705 +221633,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1159)] = { - [sym_expression] = STATE(5494), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1160)] = { - [sym_expression] = STATE(5496), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1161)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2130), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5706), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5647), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1162)] = { - [sym_expression] = STATE(5186), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1157)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2181), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5704), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), }, - [STATE(1163)] = { + [STATE(1158)] = { [sym_expression] = STATE(6920), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [anon_sym_asm] = ACTIONS(3963), + [anon_sym___asm__] = ACTIONS(3963), + [anon_sym___asm] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(3965), + [anon_sym_L_SQUOTE] = ACTIONS(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1164)] = { - [sym_expression] = STATE(6796), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1159)] = { + [sym_expression] = STATE(6879), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -222599,11 +221987,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(5678), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -222620,332 +222008,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1165)] = { - [sym_expression] = STATE(5089), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1166)] = { - [sym_expression] = STATE(5343), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1167)] = { - [sym_expression] = STATE(6798), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1160)] = { + [sym_expression] = STATE(6881), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -222953,11 +222105,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5682), + [anon_sym_DASH_GT] = ACTIONS(5678), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -222974,214 +222126,1040 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1161)] = { + [sym_expression] = STATE(5520), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1162)] = { + [sym_expression] = STATE(5493), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1163)] = { + [sym_expression] = STATE(6918), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [anon_sym_asm] = ACTIONS(3963), + [anon_sym___asm__] = ACTIONS(3963), + [anon_sym___asm] = ACTIONS(3963), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(3965), + [anon_sym_L_SQUOTE] = ACTIONS(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1164)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2181), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), + }, + [STATE(1165)] = { + [sym_expression] = STATE(5275), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1166)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2181), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5726), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), + }, + [STATE(1167)] = { + [sym_expression] = STATE(5113), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, [STATE(1168)] = { - [sym_expression] = STATE(5441), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2181), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5720), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), }, [STATE(1169)] = { - [sym_expression] = STATE(6520), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [sym_expression] = STATE(6829), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(5678), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym_LT] = ACTIONS(5678), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5678), + [anon_sym_LBRACE] = ACTIONS(5678), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_static] = ACTIONS(5680), + [anon_sym_constexpr] = ACTIONS(5680), + [anon_sym_mutable] = ACTIONS(5680), + [anon_sym_consteval] = ACTIONS(5680), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -223189,349 +223167,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [anon_sym_DASH_GT] = ACTIONS(5678), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), + [anon_sym_noexcept] = ACTIONS(5680), + [anon_sym_throw] = ACTIONS(5680), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1170)] = { - [sym_expression] = STATE(6814), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1171)] = { - [sym_expression] = STATE(5018), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(5682), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym_LT] = ACTIONS(5682), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5682), - [anon_sym_LBRACE] = ACTIONS(5682), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_static] = ACTIONS(5684), - [anon_sym_constexpr] = ACTIONS(5684), - [anon_sym_mutable] = ACTIONS(5684), - [anon_sym_consteval] = ACTIONS(5684), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [anon_sym_DASH_GT] = ACTIONS(5682), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_noexcept] = ACTIONS(5684), - [anon_sym_throw] = ACTIONS(5684), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1172)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5734), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5732), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -223544,11 +223287,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -223565,8 +223307,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -223577,78 +223319,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1173)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1171)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), + [anon_sym_LBRACE] = ACTIONS(4674), [anon_sym_RBRACE] = ACTIONS(5736), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -223661,7 +223403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -223682,8 +223424,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -223694,196 +223436,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1174)] = { - [sym_identifier] = ACTIONS(5589), - [anon_sym_LPAREN2] = ACTIONS(5591), - [anon_sym_BANG] = ACTIONS(5591), - [anon_sym_TILDE] = ACTIONS(5591), - [anon_sym_DASH] = ACTIONS(5589), - [anon_sym_PLUS] = ACTIONS(5589), - [anon_sym_STAR] = ACTIONS(5591), - [anon_sym_AMP] = ACTIONS(5591), - [anon_sym_SEMI] = ACTIONS(5591), - [anon_sym___extension__] = 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_LBRACE] = 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), - [anon_sym_if] = ACTIONS(5589), - [anon_sym_switch] = ACTIONS(5589), - [anon_sym_case] = ACTIONS(5589), - [anon_sym_default] = ACTIONS(5589), - [anon_sym_while] = ACTIONS(5589), - [anon_sym_do] = ACTIONS(5589), - [anon_sym_for] = ACTIONS(5589), - [anon_sym_return] = ACTIONS(5589), - [anon_sym_break] = ACTIONS(5589), - [anon_sym_continue] = ACTIONS(5589), - [anon_sym_goto] = ACTIONS(5589), - [anon_sym___try] = ACTIONS(5589), - [anon_sym___leave] = ACTIONS(5589), - [anon_sym_not] = ACTIONS(5589), - [anon_sym_compl] = ACTIONS(5589), - [anon_sym_DASH_DASH] = ACTIONS(5591), - [anon_sym_PLUS_PLUS] = ACTIONS(5591), - [anon_sym_sizeof] = ACTIONS(5589), - [anon_sym___alignof__] = ACTIONS(5589), - [anon_sym___alignof] = ACTIONS(5589), - [anon_sym__alignof] = ACTIONS(5589), - [anon_sym_alignof] = ACTIONS(5589), - [anon_sym__Alignof] = ACTIONS(5589), - [anon_sym_offsetof] = ACTIONS(5589), - [anon_sym__Generic] = ACTIONS(5589), - [anon_sym_typename] = ACTIONS(5589), - [anon_sym_asm] = ACTIONS(5589), - [anon_sym___asm__] = ACTIONS(5589), - [anon_sym___asm] = ACTIONS(5589), - [sym_number_literal] = ACTIONS(5591), - [anon_sym_L_SQUOTE] = ACTIONS(5591), - [anon_sym_u_SQUOTE] = ACTIONS(5591), - [anon_sym_U_SQUOTE] = ACTIONS(5591), - [anon_sym_u8_SQUOTE] = ACTIONS(5591), - [anon_sym_SQUOTE] = ACTIONS(5591), - [anon_sym_L_DQUOTE] = ACTIONS(5591), - [anon_sym_u_DQUOTE] = ACTIONS(5591), - [anon_sym_U_DQUOTE] = ACTIONS(5591), - [anon_sym_u8_DQUOTE] = ACTIONS(5591), - [anon_sym_DQUOTE] = ACTIONS(5591), - [sym_true] = ACTIONS(5589), - [sym_false] = ACTIONS(5589), - [anon_sym_NULL] = ACTIONS(5589), - [anon_sym_nullptr] = ACTIONS(5589), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5589), - [anon_sym_decltype] = ACTIONS(5589), - [anon_sym_template] = ACTIONS(5589), - [anon_sym_try] = ACTIONS(5589), - [anon_sym_delete] = ACTIONS(5589), - [anon_sym_throw] = ACTIONS(5589), - [anon_sym_co_return] = ACTIONS(5589), - [anon_sym_co_yield] = ACTIONS(5589), - [anon_sym_R_DQUOTE] = ACTIONS(5591), - [anon_sym_LR_DQUOTE] = ACTIONS(5591), - [anon_sym_uR_DQUOTE] = ACTIONS(5591), - [anon_sym_UR_DQUOTE] = ACTIONS(5591), - [anon_sym_u8R_DQUOTE] = ACTIONS(5591), - [anon_sym_co_await] = ACTIONS(5589), - [anon_sym_new] = ACTIONS(5589), - [anon_sym_requires] = ACTIONS(5589), - [anon_sym_CARET_CARET] = ACTIONS(5591), - [anon_sym_LBRACK_COLON] = ACTIONS(5591), - [sym_this] = ACTIONS(5589), - }, - [STATE(1175)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1177), - [sym_compound_requirement] = STATE(1177), - [sym__requirement] = STATE(1177), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1177), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1172)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5742), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5738), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -223896,10 +223520,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -223916,8 +223541,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -223928,79 +223553,312 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1176)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1173)] = { + [sym_identifier] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3166), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_else] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_goto] = ACTIONS(3168), + [anon_sym___try] = ACTIONS(3168), + [anon_sym___leave] = ACTIONS(3168), + [anon_sym_not] = ACTIONS(3168), + [anon_sym_compl] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_sizeof] = ACTIONS(3168), + [anon_sym___alignof__] = ACTIONS(3168), + [anon_sym___alignof] = ACTIONS(3168), + [anon_sym__alignof] = ACTIONS(3168), + [anon_sym_alignof] = ACTIONS(3168), + [anon_sym__Alignof] = ACTIONS(3168), + [anon_sym_offsetof] = ACTIONS(3168), + [anon_sym__Generic] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_asm] = ACTIONS(3168), + [anon_sym___asm__] = ACTIONS(3168), + [anon_sym___asm] = ACTIONS(3168), + [sym_number_literal] = ACTIONS(3166), + [anon_sym_L_SQUOTE] = ACTIONS(3166), + [anon_sym_u_SQUOTE] = ACTIONS(3166), + [anon_sym_U_SQUOTE] = ACTIONS(3166), + [anon_sym_u8_SQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_L_DQUOTE] = ACTIONS(3166), + [anon_sym_u_DQUOTE] = ACTIONS(3166), + [anon_sym_U_DQUOTE] = ACTIONS(3166), + [anon_sym_u8_DQUOTE] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [anon_sym_NULL] = ACTIONS(3168), + [anon_sym_nullptr] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_co_return] = ACTIONS(3168), + [anon_sym_co_yield] = ACTIONS(3168), + [anon_sym_catch] = ACTIONS(3168), + [anon_sym_R_DQUOTE] = ACTIONS(3166), + [anon_sym_LR_DQUOTE] = ACTIONS(3166), + [anon_sym_uR_DQUOTE] = ACTIONS(3166), + [anon_sym_UR_DQUOTE] = ACTIONS(3166), + [anon_sym_u8R_DQUOTE] = ACTIONS(3166), + [anon_sym_co_await] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_CARET_CARET] = ACTIONS(3166), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + [sym_this] = ACTIONS(3168), + }, + [STATE(1174)] = { + [sym_identifier] = ACTIONS(3157), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3157), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym___attribute__] = ACTIONS(3157), + [anon_sym___attribute] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3155), + [anon_sym___declspec] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_signed] = ACTIONS(3157), + [anon_sym_unsigned] = ACTIONS(3157), + [anon_sym_long] = ACTIONS(3157), + [anon_sym_short] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_register] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym___inline] = ACTIONS(3157), + [anon_sym___inline__] = ACTIONS(3157), + [anon_sym___forceinline] = ACTIONS(3157), + [anon_sym_thread_local] = ACTIONS(3157), + [anon_sym___thread] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_constexpr] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_restrict] = ACTIONS(3157), + [anon_sym___restrict__] = ACTIONS(3157), + [anon_sym__Atomic] = ACTIONS(3157), + [anon_sym__Noreturn] = ACTIONS(3157), + [anon_sym_noreturn] = ACTIONS(3157), + [anon_sym__Nonnull] = ACTIONS(3157), + [anon_sym_mutable] = ACTIONS(3157), + [anon_sym_constinit] = ACTIONS(3157), + [anon_sym_consteval] = ACTIONS(3157), + [anon_sym_alignas] = ACTIONS(3157), + [anon_sym__Alignas] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_goto] = ACTIONS(3157), + [anon_sym___try] = ACTIONS(3157), + [anon_sym___leave] = ACTIONS(3157), + [anon_sym_not] = ACTIONS(3157), + [anon_sym_compl] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_sizeof] = ACTIONS(3157), + [anon_sym___alignof__] = ACTIONS(3157), + [anon_sym___alignof] = ACTIONS(3157), + [anon_sym__alignof] = ACTIONS(3157), + [anon_sym_alignof] = ACTIONS(3157), + [anon_sym__Alignof] = ACTIONS(3157), + [anon_sym_offsetof] = ACTIONS(3157), + [anon_sym__Generic] = ACTIONS(3157), + [anon_sym_typename] = ACTIONS(3157), + [anon_sym_asm] = ACTIONS(3157), + [anon_sym___asm__] = ACTIONS(3157), + [anon_sym___asm] = ACTIONS(3157), + [sym_number_literal] = ACTIONS(3155), + [anon_sym_L_SQUOTE] = ACTIONS(3155), + [anon_sym_u_SQUOTE] = ACTIONS(3155), + [anon_sym_U_SQUOTE] = ACTIONS(3155), + [anon_sym_u8_SQUOTE] = ACTIONS(3155), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_L_DQUOTE] = ACTIONS(3155), + [anon_sym_u_DQUOTE] = ACTIONS(3155), + [anon_sym_U_DQUOTE] = ACTIONS(3155), + [anon_sym_u8_DQUOTE] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(3155), + [sym_true] = ACTIONS(3157), + [sym_false] = ACTIONS(3157), + [anon_sym_NULL] = ACTIONS(3157), + [anon_sym_nullptr] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3157), + [anon_sym_decltype] = ACTIONS(3157), + [anon_sym_template] = ACTIONS(3157), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_delete] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_co_return] = ACTIONS(3157), + [anon_sym_co_yield] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_R_DQUOTE] = ACTIONS(3155), + [anon_sym_LR_DQUOTE] = ACTIONS(3155), + [anon_sym_uR_DQUOTE] = ACTIONS(3155), + [anon_sym_UR_DQUOTE] = ACTIONS(3155), + [anon_sym_u8R_DQUOTE] = ACTIONS(3155), + [anon_sym_co_await] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_requires] = ACTIONS(3157), + [anon_sym_CARET_CARET] = ACTIONS(3155), + [anon_sym_LBRACK_COLON] = ACTIONS(3155), + [sym_this] = ACTIONS(3157), + }, + [STATE(1175)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5746), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5714), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -224013,10 +223871,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -224033,8 +223892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -224045,79 +223904,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1177)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1176)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5748), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5740), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -224130,10 +223988,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -224150,8 +224009,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -224162,78 +224021,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1178)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1177)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5750), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5742), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -224246,11 +224106,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -224267,8 +224126,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -224279,79 +224138,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1178)] = { + [sym_identifier] = ACTIONS(5591), + [anon_sym_LPAREN2] = ACTIONS(5593), + [anon_sym_BANG] = ACTIONS(5593), + [anon_sym_TILDE] = ACTIONS(5593), + [anon_sym_DASH] = ACTIONS(5591), + [anon_sym_PLUS] = ACTIONS(5591), + [anon_sym_STAR] = ACTIONS(5593), + [anon_sym_AMP] = ACTIONS(5593), + [anon_sym_SEMI] = ACTIONS(5593), + [anon_sym___extension__] = ACTIONS(5591), + [anon_sym_virtual] = ACTIONS(5591), + [anon_sym_extern] = ACTIONS(5591), + [anon_sym___attribute__] = ACTIONS(5591), + [anon_sym___attribute] = ACTIONS(5591), + [anon_sym_using] = ACTIONS(5591), + [anon_sym_COLON_COLON] = ACTIONS(5593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5593), + [anon_sym___declspec] = ACTIONS(5591), + [anon_sym_LBRACE] = ACTIONS(5593), + [anon_sym_signed] = ACTIONS(5591), + [anon_sym_unsigned] = ACTIONS(5591), + [anon_sym_long] = ACTIONS(5591), + [anon_sym_short] = ACTIONS(5591), + [anon_sym_LBRACK] = ACTIONS(5591), + [anon_sym_static] = ACTIONS(5591), + [anon_sym_register] = ACTIONS(5591), + [anon_sym_inline] = ACTIONS(5591), + [anon_sym___inline] = ACTIONS(5591), + [anon_sym___inline__] = ACTIONS(5591), + [anon_sym___forceinline] = ACTIONS(5591), + [anon_sym_thread_local] = ACTIONS(5591), + [anon_sym___thread] = ACTIONS(5591), + [anon_sym_const] = ACTIONS(5591), + [anon_sym_constexpr] = ACTIONS(5591), + [anon_sym_volatile] = ACTIONS(5591), + [anon_sym_restrict] = ACTIONS(5591), + [anon_sym___restrict__] = ACTIONS(5591), + [anon_sym__Atomic] = ACTIONS(5591), + [anon_sym__Noreturn] = ACTIONS(5591), + [anon_sym_noreturn] = ACTIONS(5591), + [anon_sym__Nonnull] = ACTIONS(5591), + [anon_sym_mutable] = ACTIONS(5591), + [anon_sym_constinit] = ACTIONS(5591), + [anon_sym_consteval] = ACTIONS(5591), + [anon_sym_alignas] = ACTIONS(5591), + [anon_sym__Alignas] = ACTIONS(5591), + [sym_primitive_type] = ACTIONS(5591), + [anon_sym_enum] = ACTIONS(5591), + [anon_sym_class] = ACTIONS(5591), + [anon_sym_struct] = ACTIONS(5591), + [anon_sym_union] = ACTIONS(5591), + [anon_sym_if] = ACTIONS(5591), + [anon_sym_switch] = ACTIONS(5591), + [anon_sym_case] = ACTIONS(5591), + [anon_sym_default] = ACTIONS(5591), + [anon_sym_while] = ACTIONS(5591), + [anon_sym_do] = ACTIONS(5591), + [anon_sym_for] = ACTIONS(5591), + [anon_sym_return] = ACTIONS(5591), + [anon_sym_break] = ACTIONS(5591), + [anon_sym_continue] = ACTIONS(5591), + [anon_sym_goto] = ACTIONS(5591), + [anon_sym___try] = ACTIONS(5591), + [anon_sym___leave] = ACTIONS(5591), + [anon_sym_not] = ACTIONS(5591), + [anon_sym_compl] = ACTIONS(5591), + [anon_sym_DASH_DASH] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5593), + [anon_sym_sizeof] = ACTIONS(5591), + [anon_sym___alignof__] = ACTIONS(5591), + [anon_sym___alignof] = ACTIONS(5591), + [anon_sym__alignof] = ACTIONS(5591), + [anon_sym_alignof] = ACTIONS(5591), + [anon_sym__Alignof] = ACTIONS(5591), + [anon_sym_offsetof] = ACTIONS(5591), + [anon_sym__Generic] = ACTIONS(5591), + [anon_sym_typename] = ACTIONS(5591), + [anon_sym_asm] = ACTIONS(5591), + [anon_sym___asm__] = ACTIONS(5591), + [anon_sym___asm] = ACTIONS(5591), + [sym_number_literal] = ACTIONS(5593), + [anon_sym_L_SQUOTE] = ACTIONS(5593), + [anon_sym_u_SQUOTE] = ACTIONS(5593), + [anon_sym_U_SQUOTE] = ACTIONS(5593), + [anon_sym_u8_SQUOTE] = ACTIONS(5593), + [anon_sym_SQUOTE] = ACTIONS(5593), + [anon_sym_L_DQUOTE] = ACTIONS(5593), + [anon_sym_u_DQUOTE] = ACTIONS(5593), + [anon_sym_U_DQUOTE] = ACTIONS(5593), + [anon_sym_u8_DQUOTE] = ACTIONS(5593), + [anon_sym_DQUOTE] = ACTIONS(5593), + [sym_true] = ACTIONS(5591), + [sym_false] = ACTIONS(5591), + [anon_sym_NULL] = ACTIONS(5591), + [anon_sym_nullptr] = ACTIONS(5591), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5591), + [anon_sym_decltype] = ACTIONS(5591), + [anon_sym_template] = ACTIONS(5591), + [anon_sym_try] = ACTIONS(5591), + [anon_sym_delete] = ACTIONS(5591), + [anon_sym_throw] = ACTIONS(5591), + [anon_sym_co_return] = ACTIONS(5591), + [anon_sym_co_yield] = ACTIONS(5591), + [anon_sym_R_DQUOTE] = ACTIONS(5593), + [anon_sym_LR_DQUOTE] = ACTIONS(5593), + [anon_sym_uR_DQUOTE] = ACTIONS(5593), + [anon_sym_UR_DQUOTE] = ACTIONS(5593), + [anon_sym_u8R_DQUOTE] = ACTIONS(5593), + [anon_sym_co_await] = ACTIONS(5591), + [anon_sym_new] = ACTIONS(5591), + [anon_sym_requires] = ACTIONS(5591), + [anon_sym_CARET_CARET] = ACTIONS(5593), + [anon_sym_LBRACK_COLON] = ACTIONS(5593), + [sym_this] = ACTIONS(5591), + }, [STATE(1179)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1181), - [sym_compound_requirement] = STATE(1181), - [sym__requirement] = STATE(1181), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1181), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5752), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5744), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -224364,10 +224339,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -224384,8 +224360,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -224396,196 +224372,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1180)] = { - [sym_identifier] = ACTIONS(5593), - [anon_sym_LPAREN2] = ACTIONS(5595), - [anon_sym_BANG] = ACTIONS(5595), - [anon_sym_TILDE] = ACTIONS(5595), - [anon_sym_DASH] = ACTIONS(5593), - [anon_sym_PLUS] = ACTIONS(5593), - [anon_sym_STAR] = ACTIONS(5595), - [anon_sym_AMP] = ACTIONS(5595), - [anon_sym_SEMI] = ACTIONS(5595), - [anon_sym___extension__] = 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_LBRACE] = 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), - [anon_sym_if] = ACTIONS(5593), - [anon_sym_switch] = ACTIONS(5593), - [anon_sym_case] = ACTIONS(5593), - [anon_sym_default] = ACTIONS(5593), - [anon_sym_while] = ACTIONS(5593), - [anon_sym_do] = ACTIONS(5593), - [anon_sym_for] = ACTIONS(5593), - [anon_sym_return] = ACTIONS(5593), - [anon_sym_break] = ACTIONS(5593), - [anon_sym_continue] = ACTIONS(5593), - [anon_sym_goto] = ACTIONS(5593), - [anon_sym___try] = ACTIONS(5593), - [anon_sym___leave] = ACTIONS(5593), - [anon_sym_not] = ACTIONS(5593), - [anon_sym_compl] = ACTIONS(5593), - [anon_sym_DASH_DASH] = ACTIONS(5595), - [anon_sym_PLUS_PLUS] = ACTIONS(5595), - [anon_sym_sizeof] = ACTIONS(5593), - [anon_sym___alignof__] = ACTIONS(5593), - [anon_sym___alignof] = ACTIONS(5593), - [anon_sym__alignof] = ACTIONS(5593), - [anon_sym_alignof] = ACTIONS(5593), - [anon_sym__Alignof] = ACTIONS(5593), - [anon_sym_offsetof] = ACTIONS(5593), - [anon_sym__Generic] = ACTIONS(5593), - [anon_sym_typename] = ACTIONS(5593), - [anon_sym_asm] = ACTIONS(5593), - [anon_sym___asm__] = ACTIONS(5593), - [anon_sym___asm] = ACTIONS(5593), - [sym_number_literal] = ACTIONS(5595), - [anon_sym_L_SQUOTE] = ACTIONS(5595), - [anon_sym_u_SQUOTE] = ACTIONS(5595), - [anon_sym_U_SQUOTE] = ACTIONS(5595), - [anon_sym_u8_SQUOTE] = ACTIONS(5595), - [anon_sym_SQUOTE] = ACTIONS(5595), - [anon_sym_L_DQUOTE] = ACTIONS(5595), - [anon_sym_u_DQUOTE] = ACTIONS(5595), - [anon_sym_U_DQUOTE] = ACTIONS(5595), - [anon_sym_u8_DQUOTE] = ACTIONS(5595), - [anon_sym_DQUOTE] = ACTIONS(5595), - [sym_true] = ACTIONS(5593), - [sym_false] = ACTIONS(5593), - [anon_sym_NULL] = ACTIONS(5593), - [anon_sym_nullptr] = ACTIONS(5593), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5593), - [anon_sym_decltype] = ACTIONS(5593), - [anon_sym_template] = ACTIONS(5593), - [anon_sym_try] = ACTIONS(5593), - [anon_sym_delete] = ACTIONS(5593), - [anon_sym_throw] = ACTIONS(5593), - [anon_sym_co_return] = ACTIONS(5593), - [anon_sym_co_yield] = ACTIONS(5593), - [anon_sym_R_DQUOTE] = ACTIONS(5595), - [anon_sym_LR_DQUOTE] = ACTIONS(5595), - [anon_sym_uR_DQUOTE] = ACTIONS(5595), - [anon_sym_UR_DQUOTE] = ACTIONS(5595), - [anon_sym_u8R_DQUOTE] = ACTIONS(5595), - [anon_sym_co_await] = ACTIONS(5593), - [anon_sym_new] = ACTIONS(5593), - [anon_sym_requires] = ACTIONS(5593), - [anon_sym_CARET_CARET] = ACTIONS(5595), - [anon_sym_LBRACK_COLON] = ACTIONS(5595), - [sym_this] = ACTIONS(5593), + [sym_else_clause] = STATE(1243), + [sym_identifier] = ACTIONS(3286), + [anon_sym_LPAREN2] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_STAR] = ACTIONS(3288), + [anon_sym_AMP] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym___extension__] = ACTIONS(3286), + [anon_sym_typedef] = ACTIONS(3286), + [anon_sym_virtual] = ACTIONS(3286), + [anon_sym_extern] = ACTIONS(3286), + [anon_sym___attribute__] = ACTIONS(3286), + [anon_sym___attribute] = ACTIONS(3286), + [anon_sym_COLON_COLON] = ACTIONS(3288), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3288), + [anon_sym___declspec] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_signed] = ACTIONS(3286), + [anon_sym_unsigned] = ACTIONS(3286), + [anon_sym_long] = ACTIONS(3286), + [anon_sym_short] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3286), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_register] = ACTIONS(3286), + [anon_sym_inline] = ACTIONS(3286), + [anon_sym___inline] = ACTIONS(3286), + [anon_sym___inline__] = ACTIONS(3286), + [anon_sym___forceinline] = ACTIONS(3286), + [anon_sym_thread_local] = ACTIONS(3286), + [anon_sym___thread] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_constexpr] = ACTIONS(3286), + [anon_sym_volatile] = ACTIONS(3286), + [anon_sym_restrict] = ACTIONS(3286), + [anon_sym___restrict__] = ACTIONS(3286), + [anon_sym__Atomic] = ACTIONS(3286), + [anon_sym__Noreturn] = ACTIONS(3286), + [anon_sym_noreturn] = ACTIONS(3286), + [anon_sym__Nonnull] = ACTIONS(3286), + [anon_sym_mutable] = ACTIONS(3286), + [anon_sym_constinit] = ACTIONS(3286), + [anon_sym_consteval] = ACTIONS(3286), + [anon_sym_alignas] = ACTIONS(3286), + [anon_sym__Alignas] = ACTIONS(3286), + [sym_primitive_type] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_struct] = ACTIONS(3286), + [anon_sym_union] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_else] = ACTIONS(5746), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_goto] = ACTIONS(3286), + [anon_sym___try] = ACTIONS(3286), + [anon_sym___leave] = ACTIONS(3286), + [anon_sym_not] = ACTIONS(3286), + [anon_sym_compl] = ACTIONS(3286), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_sizeof] = ACTIONS(3286), + [anon_sym___alignof__] = ACTIONS(3286), + [anon_sym___alignof] = ACTIONS(3286), + [anon_sym__alignof] = ACTIONS(3286), + [anon_sym_alignof] = ACTIONS(3286), + [anon_sym__Alignof] = ACTIONS(3286), + [anon_sym_offsetof] = ACTIONS(3286), + [anon_sym__Generic] = ACTIONS(3286), + [anon_sym_typename] = ACTIONS(3286), + [anon_sym_asm] = ACTIONS(3286), + [anon_sym___asm__] = ACTIONS(3286), + [anon_sym___asm] = ACTIONS(3286), + [sym_number_literal] = ACTIONS(3288), + [anon_sym_L_SQUOTE] = ACTIONS(3288), + [anon_sym_u_SQUOTE] = ACTIONS(3288), + [anon_sym_U_SQUOTE] = ACTIONS(3288), + [anon_sym_u8_SQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_L_DQUOTE] = ACTIONS(3288), + [anon_sym_u_DQUOTE] = ACTIONS(3288), + [anon_sym_U_DQUOTE] = ACTIONS(3288), + [anon_sym_u8_DQUOTE] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [anon_sym_NULL] = ACTIONS(3286), + [anon_sym_nullptr] = ACTIONS(3286), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3286), + [anon_sym_decltype] = ACTIONS(3286), + [anon_sym_template] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_co_return] = ACTIONS(3286), + [anon_sym_co_yield] = ACTIONS(3286), + [anon_sym_R_DQUOTE] = ACTIONS(3288), + [anon_sym_LR_DQUOTE] = ACTIONS(3288), + [anon_sym_uR_DQUOTE] = ACTIONS(3288), + [anon_sym_UR_DQUOTE] = ACTIONS(3288), + [anon_sym_u8R_DQUOTE] = ACTIONS(3288), + [anon_sym_co_await] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_requires] = ACTIONS(3286), + [anon_sym_CARET_CARET] = ACTIONS(3288), + [anon_sym_LBRACK_COLON] = ACTIONS(3288), + [sym_this] = ACTIONS(3286), }, [STATE(1181)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5754), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5748), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -224598,10 +224573,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -224618,8 +224594,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -224630,79 +224606,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1182)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1187), - [sym_compound_requirement] = STATE(1187), - [sym__requirement] = STATE(1187), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1187), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_identifier] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym___extension__] = ACTIONS(3326), + [anon_sym_typedef] = ACTIONS(3326), + [anon_sym_virtual] = ACTIONS(3326), + [anon_sym_extern] = ACTIONS(3326), + [anon_sym___attribute__] = ACTIONS(3326), + [anon_sym___attribute] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3328), + [anon_sym___declspec] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3326), + [anon_sym_unsigned] = ACTIONS(3326), + [anon_sym_long] = ACTIONS(3326), + [anon_sym_short] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_register] = ACTIONS(3326), + [anon_sym_inline] = ACTIONS(3326), + [anon_sym___inline] = ACTIONS(3326), + [anon_sym___inline__] = ACTIONS(3326), + [anon_sym___forceinline] = ACTIONS(3326), + [anon_sym_thread_local] = ACTIONS(3326), + [anon_sym___thread] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_constexpr] = ACTIONS(3326), + [anon_sym_volatile] = ACTIONS(3326), + [anon_sym_restrict] = ACTIONS(3326), + [anon_sym___restrict__] = ACTIONS(3326), + [anon_sym__Atomic] = ACTIONS(3326), + [anon_sym__Noreturn] = ACTIONS(3326), + [anon_sym_noreturn] = ACTIONS(3326), + [anon_sym__Nonnull] = ACTIONS(3326), + [anon_sym_mutable] = ACTIONS(3326), + [anon_sym_constinit] = ACTIONS(3326), + [anon_sym_consteval] = ACTIONS(3326), + [anon_sym_alignas] = ACTIONS(3326), + [anon_sym__Alignas] = ACTIONS(3326), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_union] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_goto] = ACTIONS(3326), + [anon_sym___try] = ACTIONS(3326), + [anon_sym___leave] = ACTIONS(3326), + [anon_sym_not] = ACTIONS(3326), + [anon_sym_compl] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_sizeof] = ACTIONS(3326), + [anon_sym___alignof__] = ACTIONS(3326), + [anon_sym___alignof] = ACTIONS(3326), + [anon_sym__alignof] = ACTIONS(3326), + [anon_sym_alignof] = ACTIONS(3326), + [anon_sym__Alignof] = ACTIONS(3326), + [anon_sym_offsetof] = ACTIONS(3326), + [anon_sym__Generic] = ACTIONS(3326), + [anon_sym_typename] = ACTIONS(3326), + [anon_sym_asm] = ACTIONS(3326), + [anon_sym___asm__] = ACTIONS(3326), + [anon_sym___asm] = ACTIONS(3326), + [sym_number_literal] = ACTIONS(3328), + [anon_sym_L_SQUOTE] = ACTIONS(3328), + [anon_sym_u_SQUOTE] = ACTIONS(3328), + [anon_sym_U_SQUOTE] = ACTIONS(3328), + [anon_sym_u8_SQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_L_DQUOTE] = ACTIONS(3328), + [anon_sym_u_DQUOTE] = ACTIONS(3328), + [anon_sym_U_DQUOTE] = ACTIONS(3328), + [anon_sym_u8_DQUOTE] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [anon_sym_NULL] = ACTIONS(3326), + [anon_sym_nullptr] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3326), + [anon_sym_decltype] = ACTIONS(3326), + [anon_sym_template] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_co_return] = ACTIONS(3326), + [anon_sym_co_yield] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_R_DQUOTE] = ACTIONS(3328), + [anon_sym_LR_DQUOTE] = ACTIONS(3328), + [anon_sym_uR_DQUOTE] = ACTIONS(3328), + [anon_sym_UR_DQUOTE] = ACTIONS(3328), + [anon_sym_u8R_DQUOTE] = ACTIONS(3328), + [anon_sym_co_await] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_requires] = ACTIONS(3326), + [anon_sym_CARET_CARET] = ACTIONS(3328), + [anon_sym_LBRACK_COLON] = ACTIONS(3328), + [sym_this] = ACTIONS(3326), + }, + [STATE(1183)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1186), + [sym_compound_requirement] = STATE(1186), + [sym__requirement] = STATE(1186), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1186), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5756), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5750), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -224715,7 +224808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -224735,8 +224828,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -224747,79 +224840,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1183)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1185), - [sym_compound_requirement] = STATE(1185), - [sym__requirement] = STATE(1185), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1185), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1184)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5758), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5752), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -224832,7 +224925,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -224852,8 +224945,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -224864,78 +224957,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1184)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1185)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5760), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5754), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -224948,7 +225041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -224969,8 +225062,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -224981,79 +225074,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1185)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1186)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5762), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5756), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225066,7 +225159,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -225086,8 +225179,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -225098,78 +225191,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1186)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1187)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5764), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5758), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225182,7 +225275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -225203,8 +225296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -225215,79 +225308,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1187)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1188)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2150), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5613), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5760), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5704), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5634), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5641), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), + }, + [STATE(1189)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5766), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5762), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225300,10 +225509,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -225320,8 +225530,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -225332,78 +225542,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1188)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1190)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5768), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5764), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225416,11 +225627,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -225437,8 +225647,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -225449,78 +225659,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1189)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1191)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1177), + [sym_compound_requirement] = STATE(1177), + [sym__requirement] = STATE(1177), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1177), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5770), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5766), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225533,11 +225744,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -225554,8 +225764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -225566,79 +225776,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1190)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1206), - [sym_compound_requirement] = STATE(1206), - [sym__requirement] = STATE(1206), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1206), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1192)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1199), + [sym_compound_requirement] = STATE(1199), + [sym__requirement] = STATE(1199), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1199), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5772), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5768), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225651,7 +225861,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -225671,8 +225881,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -225683,78 +225893,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1191)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1193)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1207), + [sym_compound_requirement] = STATE(1207), + [sym__requirement] = STATE(1207), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1207), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5774), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5770), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225767,11 +225978,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -225788,8 +225998,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -225800,79 +226010,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1192)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1176), - [sym_compound_requirement] = STATE(1176), - [sym__requirement] = STATE(1176), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1176), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1194)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5776), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5772), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -225885,7 +226095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -225905,8 +226115,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -225917,79 +226127,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1193)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1194), - [sym_compound_requirement] = STATE(1194), - [sym__requirement] = STATE(1194), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1194), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1195)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(5774), + [anon_sym_LPAREN2] = ACTIONS(5777), + [anon_sym_BANG] = ACTIONS(5780), + [anon_sym_TILDE] = ACTIONS(5780), + [anon_sym_DASH] = ACTIONS(5783), + [anon_sym_PLUS] = ACTIONS(5783), + [anon_sym_STAR] = ACTIONS(5786), + [anon_sym_AMP] = ACTIONS(5786), + [anon_sym_SEMI] = ACTIONS(5789), + [anon_sym___extension__] = ACTIONS(5792), + [anon_sym_COLON_COLON] = ACTIONS(5795), + [anon_sym_LBRACE] = ACTIONS(5798), + [anon_sym_RBRACE] = ACTIONS(5801), + [anon_sym_LBRACK] = ACTIONS(5803), + [sym_primitive_type] = ACTIONS(5806), + [anon_sym_not] = ACTIONS(5783), + [anon_sym_compl] = ACTIONS(5783), + [anon_sym_DASH_DASH] = ACTIONS(5809), + [anon_sym_PLUS_PLUS] = ACTIONS(5809), + [anon_sym_sizeof] = ACTIONS(5812), + [anon_sym___alignof__] = ACTIONS(5815), + [anon_sym___alignof] = ACTIONS(5815), + [anon_sym__alignof] = ACTIONS(5815), + [anon_sym_alignof] = ACTIONS(5815), + [anon_sym__Alignof] = ACTIONS(5815), + [anon_sym_offsetof] = ACTIONS(5818), + [anon_sym__Generic] = ACTIONS(5821), + [anon_sym_typename] = ACTIONS(5824), + [anon_sym_asm] = ACTIONS(5827), + [anon_sym___asm__] = ACTIONS(5827), + [anon_sym___asm] = ACTIONS(5827), + [sym_number_literal] = ACTIONS(5830), + [anon_sym_L_SQUOTE] = ACTIONS(5833), + [anon_sym_u_SQUOTE] = ACTIONS(5833), + [anon_sym_U_SQUOTE] = ACTIONS(5833), + [anon_sym_u8_SQUOTE] = ACTIONS(5833), + [anon_sym_SQUOTE] = ACTIONS(5833), + [anon_sym_L_DQUOTE] = ACTIONS(5836), + [anon_sym_u_DQUOTE] = ACTIONS(5836), + [anon_sym_U_DQUOTE] = ACTIONS(5836), + [anon_sym_u8_DQUOTE] = ACTIONS(5836), + [anon_sym_DQUOTE] = ACTIONS(5836), + [sym_true] = ACTIONS(5839), + [sym_false] = ACTIONS(5839), + [anon_sym_NULL] = ACTIONS(5842), + [anon_sym_nullptr] = ACTIONS(5842), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5845), + [anon_sym_template] = ACTIONS(5848), + [anon_sym_delete] = ACTIONS(5851), + [anon_sym_R_DQUOTE] = ACTIONS(5854), + [anon_sym_LR_DQUOTE] = ACTIONS(5854), + [anon_sym_uR_DQUOTE] = ACTIONS(5854), + [anon_sym_UR_DQUOTE] = ACTIONS(5854), + [anon_sym_u8R_DQUOTE] = ACTIONS(5854), + [anon_sym_co_await] = ACTIONS(5857), + [anon_sym_new] = ACTIONS(5860), + [anon_sym_requires] = ACTIONS(5863), + [anon_sym_CARET_CARET] = ACTIONS(5866), + [anon_sym_LBRACK_COLON] = ACTIONS(5869), + [sym_this] = ACTIONS(5839), + }, + [STATE(1196)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1170), + [sym_compound_requirement] = STATE(1170), + [sym__requirement] = STATE(1170), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1170), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5778), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5872), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -226002,7 +226329,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -226022,8 +226349,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -226034,79 +226361,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1194)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1197)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1190), + [sym_compound_requirement] = STATE(1190), + [sym__requirement] = STATE(1190), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1190), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5780), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5874), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -226119,7 +226446,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -226139,8 +226466,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -226151,78 +226478,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1195)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1198)] = { + [sym_identifier] = ACTIONS(5587), + [anon_sym_LPAREN2] = ACTIONS(5589), + [anon_sym_BANG] = ACTIONS(5589), + [anon_sym_TILDE] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5587), + [anon_sym_STAR] = ACTIONS(5589), + [anon_sym_AMP] = ACTIONS(5589), + [anon_sym_SEMI] = ACTIONS(5589), + [anon_sym___extension__] = ACTIONS(5587), + [anon_sym_virtual] = ACTIONS(5587), + [anon_sym_extern] = ACTIONS(5587), + [anon_sym___attribute__] = ACTIONS(5587), + [anon_sym___attribute] = ACTIONS(5587), + [anon_sym_using] = ACTIONS(5587), + [anon_sym_COLON_COLON] = ACTIONS(5589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5589), + [anon_sym___declspec] = ACTIONS(5587), + [anon_sym_LBRACE] = ACTIONS(5589), + [anon_sym_signed] = ACTIONS(5587), + [anon_sym_unsigned] = ACTIONS(5587), + [anon_sym_long] = ACTIONS(5587), + [anon_sym_short] = ACTIONS(5587), + [anon_sym_LBRACK] = ACTIONS(5587), + [anon_sym_static] = ACTIONS(5587), + [anon_sym_register] = ACTIONS(5587), + [anon_sym_inline] = ACTIONS(5587), + [anon_sym___inline] = ACTIONS(5587), + [anon_sym___inline__] = ACTIONS(5587), + [anon_sym___forceinline] = ACTIONS(5587), + [anon_sym_thread_local] = ACTIONS(5587), + [anon_sym___thread] = ACTIONS(5587), + [anon_sym_const] = ACTIONS(5587), + [anon_sym_constexpr] = ACTIONS(5587), + [anon_sym_volatile] = ACTIONS(5587), + [anon_sym_restrict] = ACTIONS(5587), + [anon_sym___restrict__] = ACTIONS(5587), + [anon_sym__Atomic] = ACTIONS(5587), + [anon_sym__Noreturn] = ACTIONS(5587), + [anon_sym_noreturn] = ACTIONS(5587), + [anon_sym__Nonnull] = ACTIONS(5587), + [anon_sym_mutable] = ACTIONS(5587), + [anon_sym_constinit] = ACTIONS(5587), + [anon_sym_consteval] = ACTIONS(5587), + [anon_sym_alignas] = ACTIONS(5587), + [anon_sym__Alignas] = ACTIONS(5587), + [sym_primitive_type] = ACTIONS(5587), + [anon_sym_enum] = ACTIONS(5587), + [anon_sym_class] = ACTIONS(5587), + [anon_sym_struct] = ACTIONS(5587), + [anon_sym_union] = ACTIONS(5587), + [anon_sym_if] = ACTIONS(5587), + [anon_sym_switch] = ACTIONS(5587), + [anon_sym_case] = ACTIONS(5587), + [anon_sym_default] = ACTIONS(5587), + [anon_sym_while] = ACTIONS(5587), + [anon_sym_do] = ACTIONS(5587), + [anon_sym_for] = ACTIONS(5587), + [anon_sym_return] = ACTIONS(5587), + [anon_sym_break] = ACTIONS(5587), + [anon_sym_continue] = ACTIONS(5587), + [anon_sym_goto] = ACTIONS(5587), + [anon_sym___try] = ACTIONS(5587), + [anon_sym___leave] = ACTIONS(5587), + [anon_sym_not] = ACTIONS(5587), + [anon_sym_compl] = ACTIONS(5587), + [anon_sym_DASH_DASH] = ACTIONS(5589), + [anon_sym_PLUS_PLUS] = ACTIONS(5589), + [anon_sym_sizeof] = ACTIONS(5587), + [anon_sym___alignof__] = ACTIONS(5587), + [anon_sym___alignof] = ACTIONS(5587), + [anon_sym__alignof] = ACTIONS(5587), + [anon_sym_alignof] = ACTIONS(5587), + [anon_sym__Alignof] = ACTIONS(5587), + [anon_sym_offsetof] = ACTIONS(5587), + [anon_sym__Generic] = ACTIONS(5587), + [anon_sym_typename] = ACTIONS(5587), + [anon_sym_asm] = ACTIONS(5587), + [anon_sym___asm__] = ACTIONS(5587), + [anon_sym___asm] = ACTIONS(5587), + [sym_number_literal] = ACTIONS(5589), + [anon_sym_L_SQUOTE] = ACTIONS(5589), + [anon_sym_u_SQUOTE] = ACTIONS(5589), + [anon_sym_U_SQUOTE] = ACTIONS(5589), + [anon_sym_u8_SQUOTE] = ACTIONS(5589), + [anon_sym_SQUOTE] = ACTIONS(5589), + [anon_sym_L_DQUOTE] = ACTIONS(5589), + [anon_sym_u_DQUOTE] = ACTIONS(5589), + [anon_sym_U_DQUOTE] = ACTIONS(5589), + [anon_sym_u8_DQUOTE] = ACTIONS(5589), + [anon_sym_DQUOTE] = ACTIONS(5589), + [sym_true] = ACTIONS(5587), + [sym_false] = ACTIONS(5587), + [anon_sym_NULL] = ACTIONS(5587), + [anon_sym_nullptr] = ACTIONS(5587), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5587), + [anon_sym_decltype] = ACTIONS(5587), + [anon_sym_template] = ACTIONS(5587), + [anon_sym_try] = ACTIONS(5587), + [anon_sym_delete] = ACTIONS(5587), + [anon_sym_throw] = ACTIONS(5587), + [anon_sym_co_return] = ACTIONS(5587), + [anon_sym_co_yield] = ACTIONS(5587), + [anon_sym_R_DQUOTE] = ACTIONS(5589), + [anon_sym_LR_DQUOTE] = ACTIONS(5589), + [anon_sym_uR_DQUOTE] = ACTIONS(5589), + [anon_sym_UR_DQUOTE] = ACTIONS(5589), + [anon_sym_u8R_DQUOTE] = ACTIONS(5589), + [anon_sym_co_await] = ACTIONS(5587), + [anon_sym_new] = ACTIONS(5587), + [anon_sym_requires] = ACTIONS(5587), + [anon_sym_CARET_CARET] = ACTIONS(5589), + [anon_sym_LBRACK_COLON] = ACTIONS(5589), + [sym_this] = ACTIONS(5587), + }, + [STATE(1199)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5782), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5876), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -226235,11 +226680,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -226256,8 +226700,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -226268,79 +226712,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1196)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1200)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5784), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5878), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -226353,10 +226796,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -226373,8 +226817,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -226385,78 +226829,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1197)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1201)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5786), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5880), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -226469,7 +226913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -226490,8 +226934,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -226502,430 +226946,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1198)] = { - [sym_else_clause] = STATE(1258), - [sym_identifier] = ACTIONS(3408), - [anon_sym_LPAREN2] = ACTIONS(3410), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_STAR] = ACTIONS(3410), - [anon_sym_AMP] = ACTIONS(3410), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym___extension__] = ACTIONS(3408), - [anon_sym_typedef] = ACTIONS(3408), - [anon_sym_virtual] = ACTIONS(3408), - [anon_sym_extern] = ACTIONS(3408), - [anon_sym___attribute__] = ACTIONS(3408), - [anon_sym___attribute] = ACTIONS(3408), - [anon_sym_COLON_COLON] = ACTIONS(3410), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3410), - [anon_sym___declspec] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_signed] = ACTIONS(3408), - [anon_sym_unsigned] = ACTIONS(3408), - [anon_sym_long] = ACTIONS(3408), - [anon_sym_short] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_register] = ACTIONS(3408), - [anon_sym_inline] = ACTIONS(3408), - [anon_sym___inline] = ACTIONS(3408), - [anon_sym___inline__] = ACTIONS(3408), - [anon_sym___forceinline] = ACTIONS(3408), - [anon_sym_thread_local] = ACTIONS(3408), - [anon_sym___thread] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_constexpr] = ACTIONS(3408), - [anon_sym_volatile] = ACTIONS(3408), - [anon_sym_restrict] = ACTIONS(3408), - [anon_sym___restrict__] = ACTIONS(3408), - [anon_sym__Atomic] = ACTIONS(3408), - [anon_sym__Noreturn] = ACTIONS(3408), - [anon_sym_noreturn] = ACTIONS(3408), - [anon_sym__Nonnull] = ACTIONS(3408), - [anon_sym_mutable] = ACTIONS(3408), - [anon_sym_constinit] = ACTIONS(3408), - [anon_sym_consteval] = ACTIONS(3408), - [anon_sym_alignas] = ACTIONS(3408), - [anon_sym__Alignas] = ACTIONS(3408), - [sym_primitive_type] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_struct] = ACTIONS(3408), - [anon_sym_union] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_else] = ACTIONS(5788), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_goto] = ACTIONS(3408), - [anon_sym___try] = ACTIONS(3408), - [anon_sym___leave] = ACTIONS(3408), - [anon_sym_not] = ACTIONS(3408), - [anon_sym_compl] = ACTIONS(3408), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_sizeof] = ACTIONS(3408), - [anon_sym___alignof__] = ACTIONS(3408), - [anon_sym___alignof] = ACTIONS(3408), - [anon_sym__alignof] = ACTIONS(3408), - [anon_sym_alignof] = ACTIONS(3408), - [anon_sym__Alignof] = ACTIONS(3408), - [anon_sym_offsetof] = ACTIONS(3408), - [anon_sym__Generic] = ACTIONS(3408), - [anon_sym_typename] = ACTIONS(3408), - [anon_sym_asm] = ACTIONS(3408), - [anon_sym___asm__] = ACTIONS(3408), - [anon_sym___asm] = ACTIONS(3408), - [sym_number_literal] = ACTIONS(3410), - [anon_sym_L_SQUOTE] = ACTIONS(3410), - [anon_sym_u_SQUOTE] = ACTIONS(3410), - [anon_sym_U_SQUOTE] = ACTIONS(3410), - [anon_sym_u8_SQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [anon_sym_L_DQUOTE] = ACTIONS(3410), - [anon_sym_u_DQUOTE] = ACTIONS(3410), - [anon_sym_U_DQUOTE] = ACTIONS(3410), - [anon_sym_u8_DQUOTE] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [anon_sym_NULL] = ACTIONS(3408), - [anon_sym_nullptr] = ACTIONS(3408), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3408), - [anon_sym_decltype] = ACTIONS(3408), - [anon_sym_template] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_co_return] = ACTIONS(3408), - [anon_sym_co_yield] = ACTIONS(3408), - [anon_sym_R_DQUOTE] = ACTIONS(3410), - [anon_sym_LR_DQUOTE] = ACTIONS(3410), - [anon_sym_uR_DQUOTE] = ACTIONS(3410), - [anon_sym_UR_DQUOTE] = ACTIONS(3410), - [anon_sym_u8R_DQUOTE] = ACTIONS(3410), - [anon_sym_co_await] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_requires] = ACTIONS(3408), - [anon_sym_CARET_CARET] = ACTIONS(3410), - [anon_sym_LBRACK_COLON] = ACTIONS(3410), - [sym_this] = ACTIONS(3408), - }, - [STATE(1199)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1201), - [sym_compound_requirement] = STATE(1201), - [sym__requirement] = STATE(1201), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1201), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5790), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1200)] = { - [sym_identifier] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3362), - [anon_sym_PLUS] = ACTIONS(3362), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym___attribute] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym__Nonnull] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym__Alignas] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_if] = ACTIONS(3362), - [anon_sym_else] = ACTIONS(3362), - [anon_sym_switch] = ACTIONS(3362), - [anon_sym_while] = ACTIONS(3362), - [anon_sym_do] = ACTIONS(3362), - [anon_sym_for] = ACTIONS(3362), - [anon_sym_return] = ACTIONS(3362), - [anon_sym_break] = ACTIONS(3362), - [anon_sym_continue] = ACTIONS(3362), - [anon_sym_goto] = ACTIONS(3362), - [anon_sym___try] = ACTIONS(3362), - [anon_sym___leave] = ACTIONS(3362), - [anon_sym_not] = ACTIONS(3362), - [anon_sym_compl] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_sizeof] = ACTIONS(3362), - [anon_sym___alignof__] = ACTIONS(3362), - [anon_sym___alignof] = ACTIONS(3362), - [anon_sym__alignof] = ACTIONS(3362), - [anon_sym_alignof] = ACTIONS(3362), - [anon_sym__Alignof] = ACTIONS(3362), - [anon_sym_offsetof] = ACTIONS(3362), - [anon_sym__Generic] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [anon_sym_asm] = ACTIONS(3362), - [anon_sym___asm__] = ACTIONS(3362), - [anon_sym___asm] = ACTIONS(3362), - [sym_number_literal] = ACTIONS(3364), - [anon_sym_L_SQUOTE] = ACTIONS(3364), - [anon_sym_u_SQUOTE] = ACTIONS(3364), - [anon_sym_U_SQUOTE] = ACTIONS(3364), - [anon_sym_u8_SQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_L_DQUOTE] = ACTIONS(3364), - [anon_sym_u_DQUOTE] = ACTIONS(3364), - [anon_sym_U_DQUOTE] = ACTIONS(3364), - [anon_sym_u8_DQUOTE] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [sym_true] = ACTIONS(3362), - [sym_false] = ACTIONS(3362), - [anon_sym_NULL] = ACTIONS(3362), - [anon_sym_nullptr] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_try] = ACTIONS(3362), - [anon_sym_delete] = ACTIONS(3362), - [anon_sym_throw] = ACTIONS(3362), - [anon_sym_co_return] = ACTIONS(3362), - [anon_sym_co_yield] = ACTIONS(3362), - [anon_sym_catch] = ACTIONS(3362), - [anon_sym_R_DQUOTE] = ACTIONS(3364), - [anon_sym_LR_DQUOTE] = ACTIONS(3364), - [anon_sym_uR_DQUOTE] = ACTIONS(3364), - [anon_sym_UR_DQUOTE] = ACTIONS(3364), - [anon_sym_u8R_DQUOTE] = ACTIONS(3364), - [anon_sym_co_await] = ACTIONS(3362), - [anon_sym_new] = ACTIONS(3362), - [anon_sym_requires] = ACTIONS(3362), - [anon_sym_CARET_CARET] = ACTIONS(3364), - [anon_sym_LBRACK_COLON] = ACTIONS(3364), - [sym_this] = ACTIONS(3362), - }, - [STATE(1201)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), + [STATE(1202)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), [sym_type_requirement] = STATE(1208), [sym_compound_requirement] = STATE(1208), [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5792), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5882), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -226938,7 +227031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -226958,8 +227051,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -226970,78 +227063,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1202)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1203)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1194), + [sym_compound_requirement] = STATE(1194), + [sym__requirement] = STATE(1194), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1194), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5732), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5884), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227054,11 +227148,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -227075,8 +227168,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -227087,78 +227180,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1203)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1204)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5794), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5886), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227171,11 +227265,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -227192,8 +227285,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -227204,313 +227297,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1204)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2131), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5796), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5706), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5678), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, [STATE(1205)] = { - [sym_else_clause] = STATE(1238), - [sym_identifier] = ACTIONS(3368), - [anon_sym_LPAREN2] = ACTIONS(3370), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_STAR] = ACTIONS(3370), - [anon_sym_AMP] = ACTIONS(3370), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym___extension__] = ACTIONS(3368), - [anon_sym_typedef] = ACTIONS(3368), - [anon_sym_virtual] = ACTIONS(3368), - [anon_sym_extern] = ACTIONS(3368), - [anon_sym___attribute__] = ACTIONS(3368), - [anon_sym___attribute] = ACTIONS(3368), - [anon_sym_COLON_COLON] = ACTIONS(3370), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3370), - [anon_sym___declspec] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_signed] = ACTIONS(3368), - [anon_sym_unsigned] = ACTIONS(3368), - [anon_sym_long] = ACTIONS(3368), - [anon_sym_short] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_register] = ACTIONS(3368), - [anon_sym_inline] = ACTIONS(3368), - [anon_sym___inline] = ACTIONS(3368), - [anon_sym___inline__] = ACTIONS(3368), - [anon_sym___forceinline] = ACTIONS(3368), - [anon_sym_thread_local] = ACTIONS(3368), - [anon_sym___thread] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_constexpr] = ACTIONS(3368), - [anon_sym_volatile] = ACTIONS(3368), - [anon_sym_restrict] = ACTIONS(3368), - [anon_sym___restrict__] = ACTIONS(3368), - [anon_sym__Atomic] = ACTIONS(3368), - [anon_sym__Noreturn] = ACTIONS(3368), - [anon_sym_noreturn] = ACTIONS(3368), - [anon_sym__Nonnull] = ACTIONS(3368), - [anon_sym_mutable] = ACTIONS(3368), - [anon_sym_constinit] = ACTIONS(3368), - [anon_sym_consteval] = ACTIONS(3368), - [anon_sym_alignas] = ACTIONS(3368), - [anon_sym__Alignas] = ACTIONS(3368), - [sym_primitive_type] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_struct] = ACTIONS(3368), - [anon_sym_union] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_else] = ACTIONS(5788), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_goto] = ACTIONS(3368), - [anon_sym___try] = ACTIONS(3368), - [anon_sym___leave] = ACTIONS(3368), - [anon_sym_not] = ACTIONS(3368), - [anon_sym_compl] = ACTIONS(3368), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_sizeof] = ACTIONS(3368), - [anon_sym___alignof__] = ACTIONS(3368), - [anon_sym___alignof] = ACTIONS(3368), - [anon_sym__alignof] = ACTIONS(3368), - [anon_sym_alignof] = ACTIONS(3368), - [anon_sym__Alignof] = ACTIONS(3368), - [anon_sym_offsetof] = ACTIONS(3368), - [anon_sym__Generic] = ACTIONS(3368), - [anon_sym_typename] = ACTIONS(3368), - [anon_sym_asm] = ACTIONS(3368), - [anon_sym___asm__] = ACTIONS(3368), - [anon_sym___asm] = ACTIONS(3368), - [sym_number_literal] = ACTIONS(3370), - [anon_sym_L_SQUOTE] = ACTIONS(3370), - [anon_sym_u_SQUOTE] = ACTIONS(3370), - [anon_sym_U_SQUOTE] = ACTIONS(3370), - [anon_sym_u8_SQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [anon_sym_L_DQUOTE] = ACTIONS(3370), - [anon_sym_u_DQUOTE] = ACTIONS(3370), - [anon_sym_U_DQUOTE] = ACTIONS(3370), - [anon_sym_u8_DQUOTE] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [anon_sym_NULL] = ACTIONS(3368), - [anon_sym_nullptr] = ACTIONS(3368), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3368), - [anon_sym_decltype] = ACTIONS(3368), - [anon_sym_template] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_co_return] = ACTIONS(3368), - [anon_sym_co_yield] = ACTIONS(3368), - [anon_sym_R_DQUOTE] = ACTIONS(3370), - [anon_sym_LR_DQUOTE] = ACTIONS(3370), - [anon_sym_uR_DQUOTE] = ACTIONS(3370), - [anon_sym_UR_DQUOTE] = ACTIONS(3370), - [anon_sym_u8R_DQUOTE] = ACTIONS(3370), - [anon_sym_co_await] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_requires] = ACTIONS(3368), - [anon_sym_CARET_CARET] = ACTIONS(3370), - [anon_sym_LBRACK_COLON] = ACTIONS(3370), - [sym_this] = ACTIONS(3368), + [sym_else_clause] = STATE(1247), + [sym_identifier] = ACTIONS(3322), + [anon_sym_LPAREN2] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3324), + [anon_sym_AMP] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym___extension__] = ACTIONS(3322), + [anon_sym_typedef] = ACTIONS(3322), + [anon_sym_virtual] = ACTIONS(3322), + [anon_sym_extern] = ACTIONS(3322), + [anon_sym___attribute__] = ACTIONS(3322), + [anon_sym___attribute] = ACTIONS(3322), + [anon_sym_COLON_COLON] = ACTIONS(3324), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3324), + [anon_sym___declspec] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_signed] = ACTIONS(3322), + [anon_sym_unsigned] = ACTIONS(3322), + [anon_sym_long] = ACTIONS(3322), + [anon_sym_short] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_register] = ACTIONS(3322), + [anon_sym_inline] = ACTIONS(3322), + [anon_sym___inline] = ACTIONS(3322), + [anon_sym___inline__] = ACTIONS(3322), + [anon_sym___forceinline] = ACTIONS(3322), + [anon_sym_thread_local] = ACTIONS(3322), + [anon_sym___thread] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_constexpr] = ACTIONS(3322), + [anon_sym_volatile] = ACTIONS(3322), + [anon_sym_restrict] = ACTIONS(3322), + [anon_sym___restrict__] = ACTIONS(3322), + [anon_sym__Atomic] = ACTIONS(3322), + [anon_sym__Noreturn] = ACTIONS(3322), + [anon_sym_noreturn] = ACTIONS(3322), + [anon_sym__Nonnull] = ACTIONS(3322), + [anon_sym_mutable] = ACTIONS(3322), + [anon_sym_constinit] = ACTIONS(3322), + [anon_sym_consteval] = ACTIONS(3322), + [anon_sym_alignas] = ACTIONS(3322), + [anon_sym__Alignas] = ACTIONS(3322), + [sym_primitive_type] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(5746), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym___try] = ACTIONS(3322), + [anon_sym___leave] = ACTIONS(3322), + [anon_sym_not] = ACTIONS(3322), + [anon_sym_compl] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_sizeof] = ACTIONS(3322), + [anon_sym___alignof__] = ACTIONS(3322), + [anon_sym___alignof] = ACTIONS(3322), + [anon_sym__alignof] = ACTIONS(3322), + [anon_sym_alignof] = ACTIONS(3322), + [anon_sym__Alignof] = ACTIONS(3322), + [anon_sym_offsetof] = ACTIONS(3322), + [anon_sym__Generic] = ACTIONS(3322), + [anon_sym_typename] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym___asm__] = ACTIONS(3322), + [anon_sym___asm] = ACTIONS(3322), + [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(3322), + [sym_false] = ACTIONS(3322), + [anon_sym_NULL] = ACTIONS(3322), + [anon_sym_nullptr] = ACTIONS(3322), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3322), + [anon_sym_decltype] = ACTIONS(3322), + [anon_sym_template] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_co_return] = ACTIONS(3322), + [anon_sym_co_yield] = ACTIONS(3322), + [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(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_requires] = ACTIONS(3322), + [anon_sym_CARET_CARET] = ACTIONS(3324), + [anon_sym_LBRACK_COLON] = ACTIONS(3324), + [sym_this] = ACTIONS(3322), }, [STATE(1206)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1184), + [sym_compound_requirement] = STATE(1184), + [sym__requirement] = STATE(1184), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1184), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5798), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5888), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227523,7 +227499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -227543,8 +227519,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -227555,430 +227531,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1207)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2131), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5800), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5696), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5678), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1208)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(5802), - [anon_sym_LPAREN2] = ACTIONS(5805), - [anon_sym_BANG] = ACTIONS(5808), - [anon_sym_TILDE] = ACTIONS(5808), - [anon_sym_DASH] = ACTIONS(5811), - [anon_sym_PLUS] = ACTIONS(5811), - [anon_sym_STAR] = ACTIONS(5814), - [anon_sym_AMP] = ACTIONS(5814), - [anon_sym_SEMI] = ACTIONS(5817), - [anon_sym___extension__] = ACTIONS(5820), - [anon_sym_COLON_COLON] = ACTIONS(5823), - [anon_sym_LBRACE] = ACTIONS(5826), - [anon_sym_RBRACE] = ACTIONS(5829), - [anon_sym_LBRACK] = ACTIONS(5831), - [sym_primitive_type] = ACTIONS(5834), - [anon_sym_not] = ACTIONS(5811), - [anon_sym_compl] = ACTIONS(5811), - [anon_sym_DASH_DASH] = ACTIONS(5837), - [anon_sym_PLUS_PLUS] = ACTIONS(5837), - [anon_sym_sizeof] = ACTIONS(5840), - [anon_sym___alignof__] = ACTIONS(5843), - [anon_sym___alignof] = ACTIONS(5843), - [anon_sym__alignof] = ACTIONS(5843), - [anon_sym_alignof] = ACTIONS(5843), - [anon_sym__Alignof] = ACTIONS(5843), - [anon_sym_offsetof] = ACTIONS(5846), - [anon_sym__Generic] = ACTIONS(5849), - [anon_sym_typename] = ACTIONS(5852), - [anon_sym_asm] = ACTIONS(5855), - [anon_sym___asm__] = ACTIONS(5855), - [anon_sym___asm] = ACTIONS(5855), - [sym_number_literal] = ACTIONS(5858), - [anon_sym_L_SQUOTE] = ACTIONS(5861), - [anon_sym_u_SQUOTE] = ACTIONS(5861), - [anon_sym_U_SQUOTE] = ACTIONS(5861), - [anon_sym_u8_SQUOTE] = ACTIONS(5861), - [anon_sym_SQUOTE] = ACTIONS(5861), - [anon_sym_L_DQUOTE] = ACTIONS(5864), - [anon_sym_u_DQUOTE] = ACTIONS(5864), - [anon_sym_U_DQUOTE] = ACTIONS(5864), - [anon_sym_u8_DQUOTE] = ACTIONS(5864), - [anon_sym_DQUOTE] = ACTIONS(5864), - [sym_true] = ACTIONS(5867), - [sym_false] = ACTIONS(5867), - [anon_sym_NULL] = ACTIONS(5870), - [anon_sym_nullptr] = ACTIONS(5870), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5873), - [anon_sym_template] = ACTIONS(5876), - [anon_sym_delete] = ACTIONS(5879), - [anon_sym_R_DQUOTE] = ACTIONS(5882), - [anon_sym_LR_DQUOTE] = ACTIONS(5882), - [anon_sym_uR_DQUOTE] = ACTIONS(5882), - [anon_sym_UR_DQUOTE] = ACTIONS(5882), - [anon_sym_u8R_DQUOTE] = ACTIONS(5882), - [anon_sym_co_await] = ACTIONS(5885), - [anon_sym_new] = ACTIONS(5888), - [anon_sym_requires] = ACTIONS(5891), - [anon_sym_CARET_CARET] = ACTIONS(5894), - [anon_sym_LBRACK_COLON] = ACTIONS(5897), - [sym_this] = ACTIONS(5867), - }, - [STATE(1209)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1211), - [sym_compound_requirement] = STATE(1211), - [sym__requirement] = STATE(1211), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1211), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5900), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1210)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1219), - [sym_compound_requirement] = STATE(1219), - [sym__requirement] = STATE(1219), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1219), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5902), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5890), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -227991,7 +227616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -228011,8 +227636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -228023,79 +227648,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1211)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1208)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228108,7 +227733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -228128,8 +227753,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -228140,195 +227765,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1212)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2131), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5906), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5704), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5675), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym___cdecl] = ACTIONS(5636), - [anon_sym___clrcall] = ACTIONS(5636), - [anon_sym___stdcall] = ACTIONS(5636), - [anon_sym___fastcall] = ACTIONS(5636), - [anon_sym___thiscall] = ACTIONS(5636), - [anon_sym___vectorcall] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5678), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1213)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1209)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5908), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5894), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228341,7 +227849,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -228362,8 +227870,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -228374,78 +227882,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1214)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1210)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1213), + [sym_compound_requirement] = STATE(1213), + [sym__requirement] = STATE(1213), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1213), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5910), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5896), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228458,11 +227967,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), [sym_number_literal] = ACTIONS(235), [anon_sym_L_SQUOTE] = ACTIONS(121), [anon_sym_u_SQUOTE] = ACTIONS(121), @@ -228479,8 +227987,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -228491,312 +227999,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1215)] = { - [sym_identifier] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym___attribute] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym__Nonnull] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym__Alignas] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3155), - [anon_sym_else] = ACTIONS(3155), - [anon_sym_switch] = ACTIONS(3155), - [anon_sym_while] = ACTIONS(3155), - [anon_sym_do] = ACTIONS(3155), - [anon_sym_for] = ACTIONS(3155), - [anon_sym_return] = ACTIONS(3155), - [anon_sym_break] = ACTIONS(3155), - [anon_sym_continue] = ACTIONS(3155), - [anon_sym_goto] = ACTIONS(3155), - [anon_sym___try] = ACTIONS(3155), - [anon_sym___leave] = ACTIONS(3155), - [anon_sym_not] = ACTIONS(3155), - [anon_sym_compl] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_sizeof] = ACTIONS(3155), - [anon_sym___alignof__] = ACTIONS(3155), - [anon_sym___alignof] = ACTIONS(3155), - [anon_sym__alignof] = ACTIONS(3155), - [anon_sym_alignof] = ACTIONS(3155), - [anon_sym__Alignof] = ACTIONS(3155), - [anon_sym_offsetof] = ACTIONS(3155), - [anon_sym__Generic] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_asm] = ACTIONS(3155), - [anon_sym___asm__] = ACTIONS(3155), - [anon_sym___asm] = ACTIONS(3155), - [sym_number_literal] = ACTIONS(3153), - [anon_sym_L_SQUOTE] = ACTIONS(3153), - [anon_sym_u_SQUOTE] = ACTIONS(3153), - [anon_sym_U_SQUOTE] = ACTIONS(3153), - [anon_sym_u8_SQUOTE] = ACTIONS(3153), - [anon_sym_SQUOTE] = ACTIONS(3153), - [anon_sym_L_DQUOTE] = ACTIONS(3153), - [anon_sym_u_DQUOTE] = ACTIONS(3153), - [anon_sym_U_DQUOTE] = ACTIONS(3153), - [anon_sym_u8_DQUOTE] = ACTIONS(3153), - [anon_sym_DQUOTE] = ACTIONS(3153), - [sym_true] = ACTIONS(3155), - [sym_false] = ACTIONS(3155), - [anon_sym_NULL] = ACTIONS(3155), - [anon_sym_nullptr] = ACTIONS(3155), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_try] = ACTIONS(3155), - [anon_sym_delete] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_co_return] = ACTIONS(3155), - [anon_sym_co_yield] = ACTIONS(3155), - [anon_sym_catch] = ACTIONS(3155), - [anon_sym_R_DQUOTE] = ACTIONS(3153), - [anon_sym_LR_DQUOTE] = ACTIONS(3153), - [anon_sym_uR_DQUOTE] = ACTIONS(3153), - [anon_sym_UR_DQUOTE] = ACTIONS(3153), - [anon_sym_u8R_DQUOTE] = ACTIONS(3153), - [anon_sym_co_await] = ACTIONS(3155), - [anon_sym_new] = ACTIONS(3155), - [anon_sym_requires] = ACTIONS(3155), - [anon_sym_CARET_CARET] = ACTIONS(3153), - [anon_sym_LBRACK_COLON] = ACTIONS(3153), - [sym_this] = ACTIONS(3155), - }, - [STATE(1216)] = { - [sym_identifier] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_goto] = ACTIONS(3163), - [anon_sym___try] = ACTIONS(3163), - [anon_sym___leave] = ACTIONS(3163), - [anon_sym_not] = ACTIONS(3163), - [anon_sym_compl] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_sizeof] = ACTIONS(3163), - [anon_sym___alignof__] = ACTIONS(3163), - [anon_sym___alignof] = ACTIONS(3163), - [anon_sym__alignof] = ACTIONS(3163), - [anon_sym_alignof] = ACTIONS(3163), - [anon_sym__Alignof] = ACTIONS(3163), - [anon_sym_offsetof] = ACTIONS(3163), - [anon_sym__Generic] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_asm] = ACTIONS(3163), - [anon_sym___asm__] = ACTIONS(3163), - [anon_sym___asm] = ACTIONS(3163), - [sym_number_literal] = ACTIONS(3161), - [anon_sym_L_SQUOTE] = ACTIONS(3161), - [anon_sym_u_SQUOTE] = ACTIONS(3161), - [anon_sym_U_SQUOTE] = ACTIONS(3161), - [anon_sym_u8_SQUOTE] = ACTIONS(3161), - [anon_sym_SQUOTE] = ACTIONS(3161), - [anon_sym_L_DQUOTE] = ACTIONS(3161), - [anon_sym_u_DQUOTE] = ACTIONS(3161), - [anon_sym_U_DQUOTE] = ACTIONS(3161), - [anon_sym_u8_DQUOTE] = ACTIONS(3161), - [anon_sym_DQUOTE] = ACTIONS(3161), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [anon_sym_NULL] = ACTIONS(3163), - [anon_sym_nullptr] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_co_return] = ACTIONS(3163), - [anon_sym_co_yield] = ACTIONS(3163), - [anon_sym_catch] = ACTIONS(3163), - [anon_sym_R_DQUOTE] = ACTIONS(3161), - [anon_sym_LR_DQUOTE] = ACTIONS(3161), - [anon_sym_uR_DQUOTE] = ACTIONS(3161), - [anon_sym_UR_DQUOTE] = ACTIONS(3161), - [anon_sym_u8R_DQUOTE] = ACTIONS(3161), - [anon_sym_co_await] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [anon_sym_CARET_CARET] = ACTIONS(3161), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - [sym_this] = ACTIONS(3163), - }, - [STATE(1217)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1211)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5912), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5898), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228809,7 +228083,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -228830,8 +228104,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -228842,79 +228116,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1218)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1196), - [sym_compound_requirement] = STATE(1196), - [sym__requirement] = STATE(1196), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1196), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1212)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1204), + [sym_compound_requirement] = STATE(1204), + [sym__requirement] = STATE(1204), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1204), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5914), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5900), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -228927,7 +228201,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -228947,8 +228221,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -228959,79 +228233,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1219)] = { - [sym_expression_statement] = STATE(4211), - [sym_expression] = STATE(6891), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11087), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_type_requirement] = STATE(1208), - [sym_compound_requirement] = STATE(1208), - [sym__requirement] = STATE(1208), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_requirement_seq_repeat1] = STATE(1208), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1213)] = { + [sym_expression_statement] = STATE(4256), + [sym_expression] = STATE(6769), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10716), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_type_requirement] = STATE(1195), + [sym_compound_requirement] = STATE(1195), + [sym__requirement] = STATE(1195), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_requirement_seq_repeat1] = STATE(1195), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5738), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5728), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(5740), - [anon_sym_RBRACE] = ACTIONS(5916), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(5730), + [anon_sym_RBRACE] = ACTIONS(5902), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -229044,7 +228318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(5744), + [anon_sym_typename] = ACTIONS(5734), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -229064,8 +228338,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -229076,78 +228350,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1220)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1214)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(5918), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5904), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -229160,7 +228434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -229181,8 +228455,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -229193,590 +228467,4770 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1215)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2150), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5613), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5906), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5720), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5634), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5641), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), + }, + [STATE(1216)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5908), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1217)] = { + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(5910), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1218)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2150), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5613), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5912), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5702), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5634), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym___cdecl] = ACTIONS(5609), + [anon_sym___clrcall] = ACTIONS(5609), + [anon_sym___stdcall] = ACTIONS(5609), + [anon_sym___fastcall] = ACTIONS(5609), + [anon_sym___thiscall] = ACTIONS(5609), + [anon_sym___vectorcall] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5641), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5645), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), + }, + [STATE(1219)] = { + [sym_identifier] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_BANG] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_DASH] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3598), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym___attribute__] = ACTIONS(3596), + [anon_sym___attribute] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym___declspec] = ACTIONS(3596), + [anon_sym_LBRACE] = ACTIONS(3598), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym___inline] = ACTIONS(3596), + [anon_sym___inline__] = ACTIONS(3596), + [anon_sym___forceinline] = ACTIONS(3596), + [anon_sym_thread_local] = ACTIONS(3596), + [anon_sym___thread] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_restrict] = ACTIONS(3596), + [anon_sym___restrict__] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [anon_sym__Noreturn] = ACTIONS(3596), + [anon_sym_noreturn] = ACTIONS(3596), + [anon_sym__Nonnull] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [anon_sym_constinit] = ACTIONS(3596), + [anon_sym_consteval] = ACTIONS(3596), + [anon_sym_alignas] = ACTIONS(3596), + [anon_sym__Alignas] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_else] = ACTIONS(3596), + [anon_sym_switch] = ACTIONS(3596), + [anon_sym_while] = ACTIONS(3596), + [anon_sym_do] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [anon_sym___try] = ACTIONS(3596), + [anon_sym___leave] = ACTIONS(3596), + [anon_sym_not] = ACTIONS(3596), + [anon_sym_compl] = ACTIONS(3596), + [anon_sym_DASH_DASH] = ACTIONS(3598), + [anon_sym_PLUS_PLUS] = ACTIONS(3598), + [anon_sym_sizeof] = ACTIONS(3596), + [anon_sym___alignof__] = ACTIONS(3596), + [anon_sym___alignof] = ACTIONS(3596), + [anon_sym__alignof] = ACTIONS(3596), + [anon_sym_alignof] = ACTIONS(3596), + [anon_sym__Alignof] = ACTIONS(3596), + [anon_sym_offsetof] = ACTIONS(3596), + [anon_sym__Generic] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [anon_sym_asm] = ACTIONS(3596), + [anon_sym___asm__] = ACTIONS(3596), + [anon_sym___asm] = ACTIONS(3596), + [sym_number_literal] = ACTIONS(3598), + [anon_sym_L_SQUOTE] = ACTIONS(3598), + [anon_sym_u_SQUOTE] = ACTIONS(3598), + [anon_sym_U_SQUOTE] = ACTIONS(3598), + [anon_sym_u8_SQUOTE] = ACTIONS(3598), + [anon_sym_SQUOTE] = ACTIONS(3598), + [anon_sym_L_DQUOTE] = ACTIONS(3598), + [anon_sym_u_DQUOTE] = ACTIONS(3598), + [anon_sym_U_DQUOTE] = ACTIONS(3598), + [anon_sym_u8_DQUOTE] = ACTIONS(3598), + [anon_sym_DQUOTE] = ACTIONS(3598), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [anon_sym_NULL] = ACTIONS(3596), + [anon_sym_nullptr] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_try] = ACTIONS(3596), + [anon_sym_delete] = ACTIONS(3596), + [anon_sym_throw] = ACTIONS(3596), + [anon_sym_co_return] = ACTIONS(3596), + [anon_sym_co_yield] = ACTIONS(3596), + [anon_sym_R_DQUOTE] = ACTIONS(3598), + [anon_sym_LR_DQUOTE] = ACTIONS(3598), + [anon_sym_uR_DQUOTE] = ACTIONS(3598), + [anon_sym_UR_DQUOTE] = ACTIONS(3598), + [anon_sym_u8R_DQUOTE] = ACTIONS(3598), + [anon_sym_co_await] = ACTIONS(3596), + [anon_sym_new] = ACTIONS(3596), + [anon_sym_requires] = ACTIONS(3596), + [anon_sym_CARET_CARET] = ACTIONS(3598), + [anon_sym_LBRACK_COLON] = ACTIONS(3598), + [sym_this] = ACTIONS(3596), + }, + [STATE(1220)] = { + [sym_identifier] = ACTIONS(3506), + [anon_sym_LPAREN2] = ACTIONS(3508), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_STAR] = ACTIONS(3508), + [anon_sym_AMP] = ACTIONS(3508), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym___extension__] = ACTIONS(3506), + [anon_sym_typedef] = ACTIONS(3506), + [anon_sym_virtual] = ACTIONS(3506), + [anon_sym_extern] = ACTIONS(3506), + [anon_sym___attribute__] = ACTIONS(3506), + [anon_sym___attribute] = ACTIONS(3506), + [anon_sym_COLON_COLON] = ACTIONS(3508), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3508), + [anon_sym___declspec] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_signed] = ACTIONS(3506), + [anon_sym_unsigned] = ACTIONS(3506), + [anon_sym_long] = ACTIONS(3506), + [anon_sym_short] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3506), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_register] = ACTIONS(3506), + [anon_sym_inline] = ACTIONS(3506), + [anon_sym___inline] = ACTIONS(3506), + [anon_sym___inline__] = ACTIONS(3506), + [anon_sym___forceinline] = ACTIONS(3506), + [anon_sym_thread_local] = ACTIONS(3506), + [anon_sym___thread] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3506), + [anon_sym_constexpr] = ACTIONS(3506), + [anon_sym_volatile] = ACTIONS(3506), + [anon_sym_restrict] = ACTIONS(3506), + [anon_sym___restrict__] = ACTIONS(3506), + [anon_sym__Atomic] = ACTIONS(3506), + [anon_sym__Noreturn] = ACTIONS(3506), + [anon_sym_noreturn] = ACTIONS(3506), + [anon_sym__Nonnull] = ACTIONS(3506), + [anon_sym_mutable] = ACTIONS(3506), + [anon_sym_constinit] = ACTIONS(3506), + [anon_sym_consteval] = ACTIONS(3506), + [anon_sym_alignas] = ACTIONS(3506), + [anon_sym__Alignas] = ACTIONS(3506), + [sym_primitive_type] = ACTIONS(3506), + [anon_sym_enum] = ACTIONS(3506), + [anon_sym_class] = ACTIONS(3506), + [anon_sym_struct] = ACTIONS(3506), + [anon_sym_union] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_else] = ACTIONS(3506), + [anon_sym_switch] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_do] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_goto] = ACTIONS(3506), + [anon_sym___try] = ACTIONS(3506), + [anon_sym___leave] = ACTIONS(3506), + [anon_sym_not] = ACTIONS(3506), + [anon_sym_compl] = ACTIONS(3506), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_PLUS_PLUS] = ACTIONS(3508), + [anon_sym_sizeof] = ACTIONS(3506), + [anon_sym___alignof__] = ACTIONS(3506), + [anon_sym___alignof] = ACTIONS(3506), + [anon_sym__alignof] = ACTIONS(3506), + [anon_sym_alignof] = ACTIONS(3506), + [anon_sym__Alignof] = ACTIONS(3506), + [anon_sym_offsetof] = ACTIONS(3506), + [anon_sym__Generic] = ACTIONS(3506), + [anon_sym_typename] = ACTIONS(3506), + [anon_sym_asm] = ACTIONS(3506), + [anon_sym___asm__] = ACTIONS(3506), + [anon_sym___asm] = ACTIONS(3506), + [sym_number_literal] = ACTIONS(3508), + [anon_sym_L_SQUOTE] = ACTIONS(3508), + [anon_sym_u_SQUOTE] = ACTIONS(3508), + [anon_sym_U_SQUOTE] = ACTIONS(3508), + [anon_sym_u8_SQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3508), + [anon_sym_L_DQUOTE] = ACTIONS(3508), + [anon_sym_u_DQUOTE] = ACTIONS(3508), + [anon_sym_U_DQUOTE] = ACTIONS(3508), + [anon_sym_u8_DQUOTE] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [anon_sym_NULL] = ACTIONS(3506), + [anon_sym_nullptr] = ACTIONS(3506), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3506), + [anon_sym_decltype] = ACTIONS(3506), + [anon_sym_template] = ACTIONS(3506), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_delete] = ACTIONS(3506), + [anon_sym_throw] = ACTIONS(3506), + [anon_sym_co_return] = ACTIONS(3506), + [anon_sym_co_yield] = ACTIONS(3506), + [anon_sym_R_DQUOTE] = ACTIONS(3508), + [anon_sym_LR_DQUOTE] = ACTIONS(3508), + [anon_sym_uR_DQUOTE] = ACTIONS(3508), + [anon_sym_UR_DQUOTE] = ACTIONS(3508), + [anon_sym_u8R_DQUOTE] = ACTIONS(3508), + [anon_sym_co_await] = ACTIONS(3506), + [anon_sym_new] = ACTIONS(3506), + [anon_sym_requires] = ACTIONS(3506), + [anon_sym_CARET_CARET] = ACTIONS(3508), + [anon_sym_LBRACK_COLON] = ACTIONS(3508), + [sym_this] = ACTIONS(3506), + }, [STATE(1221)] = { - [sym_identifier] = ACTIONS(3646), - [anon_sym_LPAREN2] = ACTIONS(3648), - [anon_sym_BANG] = ACTIONS(3648), - [anon_sym_TILDE] = ACTIONS(3648), - [anon_sym_DASH] = ACTIONS(3646), - [anon_sym_PLUS] = ACTIONS(3646), - [anon_sym_STAR] = ACTIONS(3648), - [anon_sym_AMP] = ACTIONS(3648), - [anon_sym_SEMI] = ACTIONS(3648), - [anon_sym___extension__] = ACTIONS(3646), - [anon_sym_typedef] = ACTIONS(3646), - [anon_sym_virtual] = ACTIONS(3646), - [anon_sym_extern] = ACTIONS(3646), - [anon_sym___attribute__] = ACTIONS(3646), - [anon_sym___attribute] = ACTIONS(3646), - [anon_sym_COLON_COLON] = ACTIONS(3648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3648), - [anon_sym___declspec] = ACTIONS(3646), - [anon_sym_LBRACE] = ACTIONS(3648), - [anon_sym_signed] = ACTIONS(3646), - [anon_sym_unsigned] = ACTIONS(3646), - [anon_sym_long] = ACTIONS(3646), - [anon_sym_short] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3646), - [anon_sym_static] = ACTIONS(3646), - [anon_sym_register] = ACTIONS(3646), - [anon_sym_inline] = ACTIONS(3646), - [anon_sym___inline] = ACTIONS(3646), - [anon_sym___inline__] = ACTIONS(3646), - [anon_sym___forceinline] = ACTIONS(3646), - [anon_sym_thread_local] = ACTIONS(3646), - [anon_sym___thread] = ACTIONS(3646), - [anon_sym_const] = ACTIONS(3646), - [anon_sym_constexpr] = ACTIONS(3646), - [anon_sym_volatile] = ACTIONS(3646), - [anon_sym_restrict] = ACTIONS(3646), - [anon_sym___restrict__] = ACTIONS(3646), - [anon_sym__Atomic] = ACTIONS(3646), - [anon_sym__Noreturn] = ACTIONS(3646), - [anon_sym_noreturn] = ACTIONS(3646), - [anon_sym__Nonnull] = ACTIONS(3646), - [anon_sym_mutable] = ACTIONS(3646), - [anon_sym_constinit] = ACTIONS(3646), - [anon_sym_consteval] = ACTIONS(3646), - [anon_sym_alignas] = ACTIONS(3646), - [anon_sym__Alignas] = ACTIONS(3646), - [sym_primitive_type] = ACTIONS(3646), - [anon_sym_enum] = ACTIONS(3646), - [anon_sym_class] = ACTIONS(3646), - [anon_sym_struct] = ACTIONS(3646), - [anon_sym_union] = ACTIONS(3646), - [anon_sym_if] = ACTIONS(3646), - [anon_sym_else] = ACTIONS(3646), - [anon_sym_switch] = ACTIONS(3646), - [anon_sym_while] = ACTIONS(3646), - [anon_sym_do] = ACTIONS(3646), - [anon_sym_for] = ACTIONS(3646), - [anon_sym_return] = ACTIONS(3646), - [anon_sym_break] = ACTIONS(3646), - [anon_sym_continue] = ACTIONS(3646), - [anon_sym_goto] = ACTIONS(3646), - [anon_sym___try] = ACTIONS(3646), - [anon_sym___leave] = ACTIONS(3646), - [anon_sym_not] = ACTIONS(3646), - [anon_sym_compl] = ACTIONS(3646), - [anon_sym_DASH_DASH] = ACTIONS(3648), - [anon_sym_PLUS_PLUS] = ACTIONS(3648), - [anon_sym_sizeof] = ACTIONS(3646), - [anon_sym___alignof__] = ACTIONS(3646), - [anon_sym___alignof] = ACTIONS(3646), - [anon_sym__alignof] = ACTIONS(3646), - [anon_sym_alignof] = ACTIONS(3646), - [anon_sym__Alignof] = ACTIONS(3646), - [anon_sym_offsetof] = ACTIONS(3646), - [anon_sym__Generic] = ACTIONS(3646), - [anon_sym_typename] = ACTIONS(3646), - [anon_sym_asm] = ACTIONS(3646), - [anon_sym___asm__] = ACTIONS(3646), - [anon_sym___asm] = ACTIONS(3646), - [sym_number_literal] = ACTIONS(3648), - [anon_sym_L_SQUOTE] = ACTIONS(3648), - [anon_sym_u_SQUOTE] = ACTIONS(3648), - [anon_sym_U_SQUOTE] = ACTIONS(3648), - [anon_sym_u8_SQUOTE] = ACTIONS(3648), - [anon_sym_SQUOTE] = ACTIONS(3648), - [anon_sym_L_DQUOTE] = ACTIONS(3648), - [anon_sym_u_DQUOTE] = ACTIONS(3648), - [anon_sym_U_DQUOTE] = ACTIONS(3648), - [anon_sym_u8_DQUOTE] = ACTIONS(3648), - [anon_sym_DQUOTE] = ACTIONS(3648), - [sym_true] = ACTIONS(3646), - [sym_false] = ACTIONS(3646), - [anon_sym_NULL] = ACTIONS(3646), - [anon_sym_nullptr] = ACTIONS(3646), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3646), - [anon_sym_decltype] = ACTIONS(3646), - [anon_sym_template] = ACTIONS(3646), - [anon_sym_try] = ACTIONS(3646), - [anon_sym_delete] = ACTIONS(3646), - [anon_sym_throw] = ACTIONS(3646), - [anon_sym_co_return] = ACTIONS(3646), - [anon_sym_co_yield] = ACTIONS(3646), - [anon_sym_R_DQUOTE] = ACTIONS(3648), - [anon_sym_LR_DQUOTE] = ACTIONS(3648), - [anon_sym_uR_DQUOTE] = ACTIONS(3648), - [anon_sym_UR_DQUOTE] = ACTIONS(3648), - [anon_sym_u8R_DQUOTE] = ACTIONS(3648), - [anon_sym_co_await] = ACTIONS(3646), - [anon_sym_new] = ACTIONS(3646), - [anon_sym_requires] = ACTIONS(3646), - [anon_sym_CARET_CARET] = ACTIONS(3648), - [anon_sym_LBRACK_COLON] = ACTIONS(3648), - [sym_this] = ACTIONS(3646), + [sym_expression] = STATE(7057), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_lambda_default_capture] = STATE(10558), + [sym__lambda_capture_identifier] = STATE(10192), + [sym_lambda_capture_initializer] = STATE(10192), + [sym__lambda_capture] = STATE(10192), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_identifier_parameter_pack_expansion] = STATE(10192), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5819), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(5914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5916), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(5920), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(5922), + [anon_sym_EQ] = ACTIONS(5924), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(5926), }, [STATE(1222)] = { - [sym_identifier] = ACTIONS(3674), - [anon_sym_LPAREN2] = ACTIONS(3676), - [anon_sym_BANG] = ACTIONS(3676), - [anon_sym_TILDE] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_STAR] = ACTIONS(3676), - [anon_sym_AMP] = ACTIONS(3676), - [anon_sym_SEMI] = ACTIONS(3676), - [anon_sym___extension__] = ACTIONS(3674), - [anon_sym_typedef] = ACTIONS(3674), - [anon_sym_virtual] = ACTIONS(3674), - [anon_sym_extern] = ACTIONS(3674), - [anon_sym___attribute__] = ACTIONS(3674), - [anon_sym___attribute] = ACTIONS(3674), - [anon_sym_COLON_COLON] = ACTIONS(3676), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3676), - [anon_sym___declspec] = ACTIONS(3674), - [anon_sym_LBRACE] = ACTIONS(3676), - [anon_sym_signed] = ACTIONS(3674), - [anon_sym_unsigned] = ACTIONS(3674), - [anon_sym_long] = ACTIONS(3674), - [anon_sym_short] = ACTIONS(3674), - [anon_sym_LBRACK] = ACTIONS(3674), - [anon_sym_static] = ACTIONS(3674), - [anon_sym_register] = ACTIONS(3674), - [anon_sym_inline] = ACTIONS(3674), - [anon_sym___inline] = ACTIONS(3674), - [anon_sym___inline__] = ACTIONS(3674), - [anon_sym___forceinline] = ACTIONS(3674), - [anon_sym_thread_local] = ACTIONS(3674), - [anon_sym___thread] = ACTIONS(3674), - [anon_sym_const] = ACTIONS(3674), - [anon_sym_constexpr] = ACTIONS(3674), - [anon_sym_volatile] = ACTIONS(3674), - [anon_sym_restrict] = ACTIONS(3674), - [anon_sym___restrict__] = ACTIONS(3674), - [anon_sym__Atomic] = ACTIONS(3674), - [anon_sym__Noreturn] = ACTIONS(3674), - [anon_sym_noreturn] = ACTIONS(3674), - [anon_sym__Nonnull] = ACTIONS(3674), - [anon_sym_mutable] = ACTIONS(3674), - [anon_sym_constinit] = ACTIONS(3674), - [anon_sym_consteval] = ACTIONS(3674), - [anon_sym_alignas] = ACTIONS(3674), - [anon_sym__Alignas] = ACTIONS(3674), - [sym_primitive_type] = ACTIONS(3674), - [anon_sym_enum] = ACTIONS(3674), - [anon_sym_class] = ACTIONS(3674), - [anon_sym_struct] = ACTIONS(3674), - [anon_sym_union] = ACTIONS(3674), - [anon_sym_if] = ACTIONS(3674), - [anon_sym_else] = ACTIONS(3674), - [anon_sym_switch] = ACTIONS(3674), - [anon_sym_while] = ACTIONS(3674), - [anon_sym_do] = ACTIONS(3674), - [anon_sym_for] = ACTIONS(3674), - [anon_sym_return] = ACTIONS(3674), - [anon_sym_break] = ACTIONS(3674), - [anon_sym_continue] = ACTIONS(3674), - [anon_sym_goto] = ACTIONS(3674), - [anon_sym___try] = ACTIONS(3674), - [anon_sym___leave] = ACTIONS(3674), - [anon_sym_not] = ACTIONS(3674), - [anon_sym_compl] = ACTIONS(3674), - [anon_sym_DASH_DASH] = ACTIONS(3676), - [anon_sym_PLUS_PLUS] = ACTIONS(3676), - [anon_sym_sizeof] = ACTIONS(3674), - [anon_sym___alignof__] = ACTIONS(3674), - [anon_sym___alignof] = ACTIONS(3674), - [anon_sym__alignof] = ACTIONS(3674), - [anon_sym_alignof] = ACTIONS(3674), - [anon_sym__Alignof] = ACTIONS(3674), - [anon_sym_offsetof] = ACTIONS(3674), - [anon_sym__Generic] = ACTIONS(3674), - [anon_sym_typename] = ACTIONS(3674), - [anon_sym_asm] = ACTIONS(3674), - [anon_sym___asm__] = ACTIONS(3674), - [anon_sym___asm] = ACTIONS(3674), - [sym_number_literal] = ACTIONS(3676), - [anon_sym_L_SQUOTE] = ACTIONS(3676), - [anon_sym_u_SQUOTE] = ACTIONS(3676), - [anon_sym_U_SQUOTE] = ACTIONS(3676), - [anon_sym_u8_SQUOTE] = ACTIONS(3676), - [anon_sym_SQUOTE] = ACTIONS(3676), - [anon_sym_L_DQUOTE] = ACTIONS(3676), - [anon_sym_u_DQUOTE] = ACTIONS(3676), - [anon_sym_U_DQUOTE] = ACTIONS(3676), - [anon_sym_u8_DQUOTE] = ACTIONS(3676), - [anon_sym_DQUOTE] = ACTIONS(3676), - [sym_true] = ACTIONS(3674), - [sym_false] = ACTIONS(3674), - [anon_sym_NULL] = ACTIONS(3674), - [anon_sym_nullptr] = ACTIONS(3674), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3674), - [anon_sym_decltype] = ACTIONS(3674), - [anon_sym_template] = ACTIONS(3674), - [anon_sym_try] = ACTIONS(3674), - [anon_sym_delete] = ACTIONS(3674), - [anon_sym_throw] = ACTIONS(3674), - [anon_sym_co_return] = ACTIONS(3674), - [anon_sym_co_yield] = ACTIONS(3674), - [anon_sym_R_DQUOTE] = ACTIONS(3676), - [anon_sym_LR_DQUOTE] = ACTIONS(3676), - [anon_sym_uR_DQUOTE] = ACTIONS(3676), - [anon_sym_UR_DQUOTE] = ACTIONS(3676), - [anon_sym_u8R_DQUOTE] = ACTIONS(3676), - [anon_sym_co_await] = ACTIONS(3674), - [anon_sym_new] = ACTIONS(3674), - [anon_sym_requires] = ACTIONS(3674), - [anon_sym_CARET_CARET] = ACTIONS(3676), - [anon_sym_LBRACK_COLON] = ACTIONS(3676), - [sym_this] = ACTIONS(3674), + [sym_identifier] = ACTIONS(3628), + [anon_sym_LPAREN2] = ACTIONS(3630), + [anon_sym_BANG] = ACTIONS(3630), + [anon_sym_TILDE] = ACTIONS(3630), + [anon_sym_DASH] = ACTIONS(3628), + [anon_sym_PLUS] = ACTIONS(3628), + [anon_sym_STAR] = ACTIONS(3630), + [anon_sym_AMP] = ACTIONS(3630), + [anon_sym_SEMI] = ACTIONS(3630), + [anon_sym___extension__] = ACTIONS(3628), + [anon_sym_typedef] = ACTIONS(3628), + [anon_sym_virtual] = ACTIONS(3628), + [anon_sym_extern] = ACTIONS(3628), + [anon_sym___attribute__] = ACTIONS(3628), + [anon_sym___attribute] = ACTIONS(3628), + [anon_sym_COLON_COLON] = ACTIONS(3630), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3630), + [anon_sym___declspec] = ACTIONS(3628), + [anon_sym_LBRACE] = ACTIONS(3630), + [anon_sym_signed] = ACTIONS(3628), + [anon_sym_unsigned] = ACTIONS(3628), + [anon_sym_long] = ACTIONS(3628), + [anon_sym_short] = ACTIONS(3628), + [anon_sym_LBRACK] = ACTIONS(3628), + [anon_sym_static] = ACTIONS(3628), + [anon_sym_register] = ACTIONS(3628), + [anon_sym_inline] = ACTIONS(3628), + [anon_sym___inline] = ACTIONS(3628), + [anon_sym___inline__] = ACTIONS(3628), + [anon_sym___forceinline] = ACTIONS(3628), + [anon_sym_thread_local] = ACTIONS(3628), + [anon_sym___thread] = ACTIONS(3628), + [anon_sym_const] = ACTIONS(3628), + [anon_sym_constexpr] = ACTIONS(3628), + [anon_sym_volatile] = ACTIONS(3628), + [anon_sym_restrict] = ACTIONS(3628), + [anon_sym___restrict__] = ACTIONS(3628), + [anon_sym__Atomic] = ACTIONS(3628), + [anon_sym__Noreturn] = ACTIONS(3628), + [anon_sym_noreturn] = ACTIONS(3628), + [anon_sym__Nonnull] = ACTIONS(3628), + [anon_sym_mutable] = ACTIONS(3628), + [anon_sym_constinit] = ACTIONS(3628), + [anon_sym_consteval] = ACTIONS(3628), + [anon_sym_alignas] = ACTIONS(3628), + [anon_sym__Alignas] = ACTIONS(3628), + [sym_primitive_type] = ACTIONS(3628), + [anon_sym_enum] = ACTIONS(3628), + [anon_sym_class] = ACTIONS(3628), + [anon_sym_struct] = ACTIONS(3628), + [anon_sym_union] = ACTIONS(3628), + [anon_sym_if] = ACTIONS(3628), + [anon_sym_else] = ACTIONS(3628), + [anon_sym_switch] = ACTIONS(3628), + [anon_sym_while] = ACTIONS(3628), + [anon_sym_do] = ACTIONS(3628), + [anon_sym_for] = ACTIONS(3628), + [anon_sym_return] = ACTIONS(3628), + [anon_sym_break] = ACTIONS(3628), + [anon_sym_continue] = ACTIONS(3628), + [anon_sym_goto] = ACTIONS(3628), + [anon_sym___try] = ACTIONS(3628), + [anon_sym___leave] = ACTIONS(3628), + [anon_sym_not] = ACTIONS(3628), + [anon_sym_compl] = ACTIONS(3628), + [anon_sym_DASH_DASH] = ACTIONS(3630), + [anon_sym_PLUS_PLUS] = ACTIONS(3630), + [anon_sym_sizeof] = ACTIONS(3628), + [anon_sym___alignof__] = ACTIONS(3628), + [anon_sym___alignof] = ACTIONS(3628), + [anon_sym__alignof] = ACTIONS(3628), + [anon_sym_alignof] = ACTIONS(3628), + [anon_sym__Alignof] = ACTIONS(3628), + [anon_sym_offsetof] = ACTIONS(3628), + [anon_sym__Generic] = ACTIONS(3628), + [anon_sym_typename] = ACTIONS(3628), + [anon_sym_asm] = ACTIONS(3628), + [anon_sym___asm__] = ACTIONS(3628), + [anon_sym___asm] = ACTIONS(3628), + [sym_number_literal] = ACTIONS(3630), + [anon_sym_L_SQUOTE] = ACTIONS(3630), + [anon_sym_u_SQUOTE] = ACTIONS(3630), + [anon_sym_U_SQUOTE] = ACTIONS(3630), + [anon_sym_u8_SQUOTE] = ACTIONS(3630), + [anon_sym_SQUOTE] = ACTIONS(3630), + [anon_sym_L_DQUOTE] = ACTIONS(3630), + [anon_sym_u_DQUOTE] = ACTIONS(3630), + [anon_sym_U_DQUOTE] = ACTIONS(3630), + [anon_sym_u8_DQUOTE] = ACTIONS(3630), + [anon_sym_DQUOTE] = ACTIONS(3630), + [sym_true] = ACTIONS(3628), + [sym_false] = ACTIONS(3628), + [anon_sym_NULL] = ACTIONS(3628), + [anon_sym_nullptr] = ACTIONS(3628), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3628), + [anon_sym_decltype] = ACTIONS(3628), + [anon_sym_template] = ACTIONS(3628), + [anon_sym_try] = ACTIONS(3628), + [anon_sym_delete] = ACTIONS(3628), + [anon_sym_throw] = ACTIONS(3628), + [anon_sym_co_return] = ACTIONS(3628), + [anon_sym_co_yield] = ACTIONS(3628), + [anon_sym_R_DQUOTE] = ACTIONS(3630), + [anon_sym_LR_DQUOTE] = ACTIONS(3630), + [anon_sym_uR_DQUOTE] = ACTIONS(3630), + [anon_sym_UR_DQUOTE] = ACTIONS(3630), + [anon_sym_u8R_DQUOTE] = ACTIONS(3630), + [anon_sym_co_await] = ACTIONS(3628), + [anon_sym_new] = ACTIONS(3628), + [anon_sym_requires] = ACTIONS(3628), + [anon_sym_CARET_CARET] = ACTIONS(3630), + [anon_sym_LBRACK_COLON] = ACTIONS(3630), + [sym_this] = ACTIONS(3628), }, [STATE(1223)] = { - [sym_identifier] = ACTIONS(3576), - [anon_sym_LPAREN2] = ACTIONS(3578), - [anon_sym_BANG] = ACTIONS(3578), - [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_DASH] = ACTIONS(3576), - [anon_sym_PLUS] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(3578), - [anon_sym_AMP] = ACTIONS(3578), - [anon_sym_SEMI] = ACTIONS(3578), - [anon_sym___extension__] = ACTIONS(3576), - [anon_sym_typedef] = ACTIONS(3576), - [anon_sym_virtual] = ACTIONS(3576), - [anon_sym_extern] = ACTIONS(3576), - [anon_sym___attribute__] = ACTIONS(3576), - [anon_sym___attribute] = ACTIONS(3576), - [anon_sym_COLON_COLON] = ACTIONS(3578), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3578), - [anon_sym___declspec] = ACTIONS(3576), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_signed] = ACTIONS(3576), - [anon_sym_unsigned] = ACTIONS(3576), - [anon_sym_long] = ACTIONS(3576), - [anon_sym_short] = ACTIONS(3576), - [anon_sym_LBRACK] = ACTIONS(3576), - [anon_sym_static] = ACTIONS(3576), - [anon_sym_register] = ACTIONS(3576), - [anon_sym_inline] = ACTIONS(3576), - [anon_sym___inline] = ACTIONS(3576), - [anon_sym___inline__] = ACTIONS(3576), - [anon_sym___forceinline] = ACTIONS(3576), - [anon_sym_thread_local] = ACTIONS(3576), - [anon_sym___thread] = ACTIONS(3576), - [anon_sym_const] = ACTIONS(3576), - [anon_sym_constexpr] = ACTIONS(3576), - [anon_sym_volatile] = ACTIONS(3576), - [anon_sym_restrict] = ACTIONS(3576), - [anon_sym___restrict__] = ACTIONS(3576), - [anon_sym__Atomic] = ACTIONS(3576), - [anon_sym__Noreturn] = ACTIONS(3576), - [anon_sym_noreturn] = ACTIONS(3576), - [anon_sym__Nonnull] = ACTIONS(3576), - [anon_sym_mutable] = ACTIONS(3576), - [anon_sym_constinit] = ACTIONS(3576), - [anon_sym_consteval] = ACTIONS(3576), - [anon_sym_alignas] = ACTIONS(3576), - [anon_sym__Alignas] = ACTIONS(3576), - [sym_primitive_type] = ACTIONS(3576), - [anon_sym_enum] = ACTIONS(3576), - [anon_sym_class] = ACTIONS(3576), - [anon_sym_struct] = ACTIONS(3576), - [anon_sym_union] = ACTIONS(3576), - [anon_sym_if] = ACTIONS(3576), - [anon_sym_else] = ACTIONS(3576), - [anon_sym_switch] = ACTIONS(3576), - [anon_sym_while] = ACTIONS(3576), - [anon_sym_do] = ACTIONS(3576), - [anon_sym_for] = ACTIONS(3576), - [anon_sym_return] = ACTIONS(3576), - [anon_sym_break] = ACTIONS(3576), - [anon_sym_continue] = ACTIONS(3576), - [anon_sym_goto] = ACTIONS(3576), - [anon_sym___try] = ACTIONS(3576), - [anon_sym___leave] = ACTIONS(3576), - [anon_sym_not] = ACTIONS(3576), - [anon_sym_compl] = ACTIONS(3576), - [anon_sym_DASH_DASH] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3578), - [anon_sym_sizeof] = ACTIONS(3576), - [anon_sym___alignof__] = ACTIONS(3576), - [anon_sym___alignof] = ACTIONS(3576), - [anon_sym__alignof] = ACTIONS(3576), - [anon_sym_alignof] = ACTIONS(3576), - [anon_sym__Alignof] = ACTIONS(3576), - [anon_sym_offsetof] = ACTIONS(3576), - [anon_sym__Generic] = ACTIONS(3576), - [anon_sym_typename] = ACTIONS(3576), - [anon_sym_asm] = ACTIONS(3576), - [anon_sym___asm__] = ACTIONS(3576), - [anon_sym___asm] = ACTIONS(3576), - [sym_number_literal] = ACTIONS(3578), - [anon_sym_L_SQUOTE] = ACTIONS(3578), - [anon_sym_u_SQUOTE] = ACTIONS(3578), - [anon_sym_U_SQUOTE] = ACTIONS(3578), - [anon_sym_u8_SQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3578), - [anon_sym_L_DQUOTE] = ACTIONS(3578), - [anon_sym_u_DQUOTE] = ACTIONS(3578), - [anon_sym_U_DQUOTE] = ACTIONS(3578), - [anon_sym_u8_DQUOTE] = ACTIONS(3578), - [anon_sym_DQUOTE] = ACTIONS(3578), - [sym_true] = ACTIONS(3576), - [sym_false] = ACTIONS(3576), - [anon_sym_NULL] = ACTIONS(3576), - [anon_sym_nullptr] = ACTIONS(3576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3576), - [anon_sym_decltype] = ACTIONS(3576), - [anon_sym_template] = ACTIONS(3576), - [anon_sym_try] = ACTIONS(3576), - [anon_sym_delete] = ACTIONS(3576), - [anon_sym_throw] = ACTIONS(3576), - [anon_sym_co_return] = ACTIONS(3576), - [anon_sym_co_yield] = ACTIONS(3576), - [anon_sym_R_DQUOTE] = ACTIONS(3578), - [anon_sym_LR_DQUOTE] = ACTIONS(3578), - [anon_sym_uR_DQUOTE] = ACTIONS(3578), - [anon_sym_UR_DQUOTE] = ACTIONS(3578), - [anon_sym_u8R_DQUOTE] = ACTIONS(3578), - [anon_sym_co_await] = ACTIONS(3576), - [anon_sym_new] = ACTIONS(3576), - [anon_sym_requires] = ACTIONS(3576), - [anon_sym_CARET_CARET] = ACTIONS(3578), - [anon_sym_LBRACK_COLON] = ACTIONS(3578), - [sym_this] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3632), + [anon_sym_LPAREN2] = ACTIONS(3634), + [anon_sym_BANG] = ACTIONS(3634), + [anon_sym_TILDE] = ACTIONS(3634), + [anon_sym_DASH] = ACTIONS(3632), + [anon_sym_PLUS] = ACTIONS(3632), + [anon_sym_STAR] = ACTIONS(3634), + [anon_sym_AMP] = ACTIONS(3634), + [anon_sym_SEMI] = ACTIONS(3634), + [anon_sym___extension__] = ACTIONS(3632), + [anon_sym_typedef] = ACTIONS(3632), + [anon_sym_virtual] = ACTIONS(3632), + [anon_sym_extern] = ACTIONS(3632), + [anon_sym___attribute__] = ACTIONS(3632), + [anon_sym___attribute] = ACTIONS(3632), + [anon_sym_COLON_COLON] = ACTIONS(3634), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3634), + [anon_sym___declspec] = ACTIONS(3632), + [anon_sym_LBRACE] = ACTIONS(3634), + [anon_sym_signed] = ACTIONS(3632), + [anon_sym_unsigned] = ACTIONS(3632), + [anon_sym_long] = ACTIONS(3632), + [anon_sym_short] = ACTIONS(3632), + [anon_sym_LBRACK] = ACTIONS(3632), + [anon_sym_static] = ACTIONS(3632), + [anon_sym_register] = ACTIONS(3632), + [anon_sym_inline] = ACTIONS(3632), + [anon_sym___inline] = ACTIONS(3632), + [anon_sym___inline__] = ACTIONS(3632), + [anon_sym___forceinline] = ACTIONS(3632), + [anon_sym_thread_local] = ACTIONS(3632), + [anon_sym___thread] = ACTIONS(3632), + [anon_sym_const] = ACTIONS(3632), + [anon_sym_constexpr] = ACTIONS(3632), + [anon_sym_volatile] = ACTIONS(3632), + [anon_sym_restrict] = ACTIONS(3632), + [anon_sym___restrict__] = ACTIONS(3632), + [anon_sym__Atomic] = ACTIONS(3632), + [anon_sym__Noreturn] = ACTIONS(3632), + [anon_sym_noreturn] = ACTIONS(3632), + [anon_sym__Nonnull] = ACTIONS(3632), + [anon_sym_mutable] = ACTIONS(3632), + [anon_sym_constinit] = ACTIONS(3632), + [anon_sym_consteval] = ACTIONS(3632), + [anon_sym_alignas] = ACTIONS(3632), + [anon_sym__Alignas] = ACTIONS(3632), + [sym_primitive_type] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [anon_sym_class] = ACTIONS(3632), + [anon_sym_struct] = ACTIONS(3632), + [anon_sym_union] = ACTIONS(3632), + [anon_sym_if] = ACTIONS(3632), + [anon_sym_else] = ACTIONS(3632), + [anon_sym_switch] = ACTIONS(3632), + [anon_sym_while] = ACTIONS(3632), + [anon_sym_do] = ACTIONS(3632), + [anon_sym_for] = ACTIONS(3632), + [anon_sym_return] = ACTIONS(3632), + [anon_sym_break] = ACTIONS(3632), + [anon_sym_continue] = ACTIONS(3632), + [anon_sym_goto] = ACTIONS(3632), + [anon_sym___try] = ACTIONS(3632), + [anon_sym___leave] = ACTIONS(3632), + [anon_sym_not] = ACTIONS(3632), + [anon_sym_compl] = ACTIONS(3632), + [anon_sym_DASH_DASH] = ACTIONS(3634), + [anon_sym_PLUS_PLUS] = ACTIONS(3634), + [anon_sym_sizeof] = ACTIONS(3632), + [anon_sym___alignof__] = ACTIONS(3632), + [anon_sym___alignof] = ACTIONS(3632), + [anon_sym__alignof] = ACTIONS(3632), + [anon_sym_alignof] = ACTIONS(3632), + [anon_sym__Alignof] = ACTIONS(3632), + [anon_sym_offsetof] = ACTIONS(3632), + [anon_sym__Generic] = ACTIONS(3632), + [anon_sym_typename] = ACTIONS(3632), + [anon_sym_asm] = ACTIONS(3632), + [anon_sym___asm__] = ACTIONS(3632), + [anon_sym___asm] = ACTIONS(3632), + [sym_number_literal] = ACTIONS(3634), + [anon_sym_L_SQUOTE] = ACTIONS(3634), + [anon_sym_u_SQUOTE] = ACTIONS(3634), + [anon_sym_U_SQUOTE] = ACTIONS(3634), + [anon_sym_u8_SQUOTE] = ACTIONS(3634), + [anon_sym_SQUOTE] = ACTIONS(3634), + [anon_sym_L_DQUOTE] = ACTIONS(3634), + [anon_sym_u_DQUOTE] = ACTIONS(3634), + [anon_sym_U_DQUOTE] = ACTIONS(3634), + [anon_sym_u8_DQUOTE] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(3634), + [sym_true] = ACTIONS(3632), + [sym_false] = ACTIONS(3632), + [anon_sym_NULL] = ACTIONS(3632), + [anon_sym_nullptr] = ACTIONS(3632), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3632), + [anon_sym_decltype] = ACTIONS(3632), + [anon_sym_template] = ACTIONS(3632), + [anon_sym_try] = ACTIONS(3632), + [anon_sym_delete] = ACTIONS(3632), + [anon_sym_throw] = ACTIONS(3632), + [anon_sym_co_return] = ACTIONS(3632), + [anon_sym_co_yield] = ACTIONS(3632), + [anon_sym_R_DQUOTE] = ACTIONS(3634), + [anon_sym_LR_DQUOTE] = ACTIONS(3634), + [anon_sym_uR_DQUOTE] = ACTIONS(3634), + [anon_sym_UR_DQUOTE] = ACTIONS(3634), + [anon_sym_u8R_DQUOTE] = ACTIONS(3634), + [anon_sym_co_await] = ACTIONS(3632), + [anon_sym_new] = ACTIONS(3632), + [anon_sym_requires] = ACTIONS(3632), + [anon_sym_CARET_CARET] = ACTIONS(3634), + [anon_sym_LBRACK_COLON] = ACTIONS(3634), + [sym_this] = ACTIONS(3632), }, [STATE(1224)] = { - [sym_identifier] = ACTIONS(3588), - [anon_sym_LPAREN2] = ACTIONS(3590), - [anon_sym_BANG] = ACTIONS(3590), - [anon_sym_TILDE] = ACTIONS(3590), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_STAR] = ACTIONS(3590), - [anon_sym_AMP] = ACTIONS(3590), - [anon_sym_SEMI] = ACTIONS(3590), - [anon_sym___extension__] = ACTIONS(3588), - [anon_sym_typedef] = ACTIONS(3588), - [anon_sym_virtual] = ACTIONS(3588), - [anon_sym_extern] = ACTIONS(3588), - [anon_sym___attribute__] = ACTIONS(3588), - [anon_sym___attribute] = ACTIONS(3588), - [anon_sym_COLON_COLON] = ACTIONS(3590), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3590), - [anon_sym___declspec] = ACTIONS(3588), - [anon_sym_LBRACE] = ACTIONS(3590), - [anon_sym_signed] = ACTIONS(3588), - [anon_sym_unsigned] = ACTIONS(3588), - [anon_sym_long] = ACTIONS(3588), - [anon_sym_short] = ACTIONS(3588), - [anon_sym_LBRACK] = ACTIONS(3588), - [anon_sym_static] = ACTIONS(3588), - [anon_sym_register] = ACTIONS(3588), - [anon_sym_inline] = ACTIONS(3588), - [anon_sym___inline] = ACTIONS(3588), - [anon_sym___inline__] = ACTIONS(3588), - [anon_sym___forceinline] = ACTIONS(3588), - [anon_sym_thread_local] = ACTIONS(3588), - [anon_sym___thread] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_constexpr] = ACTIONS(3588), - [anon_sym_volatile] = ACTIONS(3588), - [anon_sym_restrict] = ACTIONS(3588), - [anon_sym___restrict__] = ACTIONS(3588), - [anon_sym__Atomic] = ACTIONS(3588), - [anon_sym__Noreturn] = ACTIONS(3588), - [anon_sym_noreturn] = ACTIONS(3588), - [anon_sym__Nonnull] = ACTIONS(3588), - [anon_sym_mutable] = ACTIONS(3588), - [anon_sym_constinit] = ACTIONS(3588), - [anon_sym_consteval] = ACTIONS(3588), - [anon_sym_alignas] = ACTIONS(3588), - [anon_sym__Alignas] = ACTIONS(3588), - [sym_primitive_type] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), - [anon_sym_class] = ACTIONS(3588), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_union] = ACTIONS(3588), - [anon_sym_if] = ACTIONS(3588), - [anon_sym_else] = ACTIONS(3588), - [anon_sym_switch] = ACTIONS(3588), - [anon_sym_while] = ACTIONS(3588), - [anon_sym_do] = ACTIONS(3588), - [anon_sym_for] = ACTIONS(3588), - [anon_sym_return] = ACTIONS(3588), - [anon_sym_break] = ACTIONS(3588), - [anon_sym_continue] = ACTIONS(3588), - [anon_sym_goto] = ACTIONS(3588), - [anon_sym___try] = ACTIONS(3588), - [anon_sym___leave] = ACTIONS(3588), - [anon_sym_not] = ACTIONS(3588), - [anon_sym_compl] = ACTIONS(3588), - [anon_sym_DASH_DASH] = ACTIONS(3590), - [anon_sym_PLUS_PLUS] = ACTIONS(3590), - [anon_sym_sizeof] = ACTIONS(3588), - [anon_sym___alignof__] = ACTIONS(3588), - [anon_sym___alignof] = ACTIONS(3588), - [anon_sym__alignof] = ACTIONS(3588), - [anon_sym_alignof] = ACTIONS(3588), - [anon_sym__Alignof] = ACTIONS(3588), - [anon_sym_offsetof] = ACTIONS(3588), - [anon_sym__Generic] = ACTIONS(3588), - [anon_sym_typename] = ACTIONS(3588), - [anon_sym_asm] = ACTIONS(3588), - [anon_sym___asm__] = ACTIONS(3588), - [anon_sym___asm] = ACTIONS(3588), - [sym_number_literal] = ACTIONS(3590), - [anon_sym_L_SQUOTE] = ACTIONS(3590), - [anon_sym_u_SQUOTE] = ACTIONS(3590), - [anon_sym_U_SQUOTE] = ACTIONS(3590), - [anon_sym_u8_SQUOTE] = ACTIONS(3590), - [anon_sym_SQUOTE] = ACTIONS(3590), - [anon_sym_L_DQUOTE] = ACTIONS(3590), - [anon_sym_u_DQUOTE] = ACTIONS(3590), - [anon_sym_U_DQUOTE] = ACTIONS(3590), - [anon_sym_u8_DQUOTE] = ACTIONS(3590), - [anon_sym_DQUOTE] = ACTIONS(3590), - [sym_true] = ACTIONS(3588), - [sym_false] = ACTIONS(3588), - [anon_sym_NULL] = ACTIONS(3588), - [anon_sym_nullptr] = ACTIONS(3588), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3588), - [anon_sym_decltype] = ACTIONS(3588), - [anon_sym_template] = ACTIONS(3588), - [anon_sym_try] = ACTIONS(3588), - [anon_sym_delete] = ACTIONS(3588), - [anon_sym_throw] = ACTIONS(3588), - [anon_sym_co_return] = ACTIONS(3588), - [anon_sym_co_yield] = ACTIONS(3588), - [anon_sym_R_DQUOTE] = ACTIONS(3590), - [anon_sym_LR_DQUOTE] = ACTIONS(3590), - [anon_sym_uR_DQUOTE] = ACTIONS(3590), - [anon_sym_UR_DQUOTE] = ACTIONS(3590), - [anon_sym_u8R_DQUOTE] = ACTIONS(3590), - [anon_sym_co_await] = ACTIONS(3588), - [anon_sym_new] = ACTIONS(3588), - [anon_sym_requires] = ACTIONS(3588), - [anon_sym_CARET_CARET] = ACTIONS(3590), - [anon_sym_LBRACK_COLON] = ACTIONS(3590), - [sym_this] = ACTIONS(3588), + [sym_expression] = STATE(6811), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10498), + [sym_initializer_pair] = STATE(10498), + [sym_subscript_designator] = STATE(8988), + [sym_subscript_range_designator] = STATE(8988), + [sym_field_designator] = STATE(8988), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [aux_sym_initializer_pair_repeat1] = STATE(8988), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(5684), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [anon_sym_DOT] = ACTIONS(233), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, [STATE(1225)] = { - [sym_identifier] = ACTIONS(3580), - [anon_sym_LPAREN2] = ACTIONS(3582), - [anon_sym_BANG] = ACTIONS(3582), - [anon_sym_TILDE] = ACTIONS(3582), - [anon_sym_DASH] = ACTIONS(3580), - [anon_sym_PLUS] = ACTIONS(3580), - [anon_sym_STAR] = ACTIONS(3582), - [anon_sym_AMP] = ACTIONS(3582), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym___extension__] = ACTIONS(3580), - [anon_sym_typedef] = ACTIONS(3580), - [anon_sym_virtual] = ACTIONS(3580), - [anon_sym_extern] = ACTIONS(3580), - [anon_sym___attribute__] = ACTIONS(3580), - [anon_sym___attribute] = ACTIONS(3580), - [anon_sym_COLON_COLON] = ACTIONS(3582), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3582), - [anon_sym___declspec] = ACTIONS(3580), - [anon_sym_LBRACE] = ACTIONS(3582), - [anon_sym_signed] = ACTIONS(3580), - [anon_sym_unsigned] = ACTIONS(3580), - [anon_sym_long] = ACTIONS(3580), - [anon_sym_short] = ACTIONS(3580), - [anon_sym_LBRACK] = ACTIONS(3580), - [anon_sym_static] = ACTIONS(3580), - [anon_sym_register] = ACTIONS(3580), - [anon_sym_inline] = ACTIONS(3580), - [anon_sym___inline] = ACTIONS(3580), - [anon_sym___inline__] = ACTIONS(3580), - [anon_sym___forceinline] = ACTIONS(3580), - [anon_sym_thread_local] = ACTIONS(3580), - [anon_sym___thread] = ACTIONS(3580), - [anon_sym_const] = ACTIONS(3580), - [anon_sym_constexpr] = ACTIONS(3580), - [anon_sym_volatile] = ACTIONS(3580), - [anon_sym_restrict] = ACTIONS(3580), - [anon_sym___restrict__] = ACTIONS(3580), - [anon_sym__Atomic] = ACTIONS(3580), - [anon_sym__Noreturn] = ACTIONS(3580), - [anon_sym_noreturn] = ACTIONS(3580), - [anon_sym__Nonnull] = ACTIONS(3580), - [anon_sym_mutable] = ACTIONS(3580), - [anon_sym_constinit] = ACTIONS(3580), - [anon_sym_consteval] = ACTIONS(3580), - [anon_sym_alignas] = ACTIONS(3580), - [anon_sym__Alignas] = ACTIONS(3580), - [sym_primitive_type] = ACTIONS(3580), - [anon_sym_enum] = ACTIONS(3580), - [anon_sym_class] = ACTIONS(3580), - [anon_sym_struct] = ACTIONS(3580), - [anon_sym_union] = ACTIONS(3580), - [anon_sym_if] = ACTIONS(3580), - [anon_sym_else] = ACTIONS(3580), - [anon_sym_switch] = ACTIONS(3580), - [anon_sym_while] = ACTIONS(3580), - [anon_sym_do] = ACTIONS(3580), - [anon_sym_for] = ACTIONS(3580), - [anon_sym_return] = ACTIONS(3580), - [anon_sym_break] = ACTIONS(3580), - [anon_sym_continue] = ACTIONS(3580), - [anon_sym_goto] = ACTIONS(3580), - [anon_sym___try] = ACTIONS(3580), - [anon_sym___leave] = ACTIONS(3580), - [anon_sym_not] = ACTIONS(3580), - [anon_sym_compl] = ACTIONS(3580), - [anon_sym_DASH_DASH] = ACTIONS(3582), - [anon_sym_PLUS_PLUS] = ACTIONS(3582), - [anon_sym_sizeof] = ACTIONS(3580), - [anon_sym___alignof__] = ACTIONS(3580), - [anon_sym___alignof] = ACTIONS(3580), - [anon_sym__alignof] = ACTIONS(3580), - [anon_sym_alignof] = ACTIONS(3580), - [anon_sym__Alignof] = ACTIONS(3580), - [anon_sym_offsetof] = ACTIONS(3580), - [anon_sym__Generic] = ACTIONS(3580), - [anon_sym_typename] = ACTIONS(3580), - [anon_sym_asm] = ACTIONS(3580), - [anon_sym___asm__] = ACTIONS(3580), - [anon_sym___asm] = ACTIONS(3580), - [sym_number_literal] = ACTIONS(3582), - [anon_sym_L_SQUOTE] = ACTIONS(3582), - [anon_sym_u_SQUOTE] = ACTIONS(3582), - [anon_sym_U_SQUOTE] = ACTIONS(3582), - [anon_sym_u8_SQUOTE] = ACTIONS(3582), - [anon_sym_SQUOTE] = ACTIONS(3582), - [anon_sym_L_DQUOTE] = ACTIONS(3582), - [anon_sym_u_DQUOTE] = ACTIONS(3582), - [anon_sym_U_DQUOTE] = ACTIONS(3582), - [anon_sym_u8_DQUOTE] = ACTIONS(3582), - [anon_sym_DQUOTE] = ACTIONS(3582), - [sym_true] = ACTIONS(3580), - [sym_false] = ACTIONS(3580), - [anon_sym_NULL] = ACTIONS(3580), - [anon_sym_nullptr] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3580), - [anon_sym_decltype] = ACTIONS(3580), - [anon_sym_template] = ACTIONS(3580), - [anon_sym_try] = ACTIONS(3580), - [anon_sym_delete] = ACTIONS(3580), - [anon_sym_throw] = ACTIONS(3580), - [anon_sym_co_return] = ACTIONS(3580), - [anon_sym_co_yield] = ACTIONS(3580), - [anon_sym_R_DQUOTE] = ACTIONS(3582), - [anon_sym_LR_DQUOTE] = ACTIONS(3582), - [anon_sym_uR_DQUOTE] = ACTIONS(3582), - [anon_sym_UR_DQUOTE] = ACTIONS(3582), - [anon_sym_u8R_DQUOTE] = ACTIONS(3582), - [anon_sym_co_await] = ACTIONS(3580), - [anon_sym_new] = ACTIONS(3580), - [anon_sym_requires] = ACTIONS(3580), - [anon_sym_CARET_CARET] = ACTIONS(3582), - [anon_sym_LBRACK_COLON] = ACTIONS(3582), - [sym_this] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3338), + [anon_sym_LPAREN2] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3343), + [anon_sym_AMP] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym___extension__] = ACTIONS(3338), + [anon_sym_typedef] = ACTIONS(3338), + [anon_sym_virtual] = ACTIONS(3338), + [anon_sym_extern] = ACTIONS(3338), + [anon_sym___attribute__] = ACTIONS(3338), + [anon_sym___attribute] = ACTIONS(3338), + [anon_sym_COLON_COLON] = ACTIONS(3343), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3343), + [anon_sym___declspec] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_signed] = ACTIONS(3338), + [anon_sym_unsigned] = ACTIONS(3338), + [anon_sym_long] = ACTIONS(3338), + [anon_sym_short] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_register] = ACTIONS(3338), + [anon_sym_inline] = ACTIONS(3338), + [anon_sym___inline] = ACTIONS(3338), + [anon_sym___inline__] = ACTIONS(3338), + [anon_sym___forceinline] = ACTIONS(3338), + [anon_sym_thread_local] = ACTIONS(3338), + [anon_sym___thread] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_constexpr] = ACTIONS(3338), + [anon_sym_volatile] = ACTIONS(3338), + [anon_sym_restrict] = ACTIONS(3338), + [anon_sym___restrict__] = ACTIONS(3338), + [anon_sym__Atomic] = ACTIONS(3338), + [anon_sym__Noreturn] = ACTIONS(3338), + [anon_sym_noreturn] = ACTIONS(3338), + [anon_sym__Nonnull] = ACTIONS(3338), + [anon_sym_mutable] = ACTIONS(3338), + [anon_sym_constinit] = ACTIONS(3338), + [anon_sym_consteval] = ACTIONS(3338), + [anon_sym_alignas] = ACTIONS(3338), + [anon_sym__Alignas] = ACTIONS(3338), + [sym_primitive_type] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3338), + [anon_sym_union] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_goto] = ACTIONS(3338), + [anon_sym___try] = ACTIONS(3338), + [anon_sym___leave] = ACTIONS(3338), + [anon_sym_not] = ACTIONS(3338), + [anon_sym_compl] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_sizeof] = ACTIONS(3338), + [anon_sym___alignof__] = ACTIONS(3338), + [anon_sym___alignof] = ACTIONS(3338), + [anon_sym__alignof] = ACTIONS(3338), + [anon_sym_alignof] = ACTIONS(3338), + [anon_sym__Alignof] = ACTIONS(3338), + [anon_sym_offsetof] = ACTIONS(3338), + [anon_sym__Generic] = ACTIONS(3338), + [anon_sym_typename] = ACTIONS(3338), + [anon_sym_asm] = ACTIONS(3338), + [anon_sym___asm__] = ACTIONS(3338), + [anon_sym___asm] = ACTIONS(3338), + [sym_number_literal] = ACTIONS(3343), + [anon_sym_L_SQUOTE] = ACTIONS(3343), + [anon_sym_u_SQUOTE] = ACTIONS(3343), + [anon_sym_U_SQUOTE] = ACTIONS(3343), + [anon_sym_u8_SQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_L_DQUOTE] = ACTIONS(3343), + [anon_sym_u_DQUOTE] = ACTIONS(3343), + [anon_sym_U_DQUOTE] = ACTIONS(3343), + [anon_sym_u8_DQUOTE] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [anon_sym_NULL] = ACTIONS(3338), + [anon_sym_nullptr] = ACTIONS(3338), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3338), + [anon_sym_decltype] = ACTIONS(3338), + [anon_sym_template] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_co_return] = ACTIONS(3338), + [anon_sym_co_yield] = ACTIONS(3338), + [anon_sym_R_DQUOTE] = ACTIONS(3343), + [anon_sym_LR_DQUOTE] = ACTIONS(3343), + [anon_sym_uR_DQUOTE] = ACTIONS(3343), + [anon_sym_UR_DQUOTE] = ACTIONS(3343), + [anon_sym_u8R_DQUOTE] = ACTIONS(3343), + [anon_sym_co_await] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_requires] = ACTIONS(3338), + [anon_sym_CARET_CARET] = ACTIONS(3343), + [anon_sym_LBRACK_COLON] = ACTIONS(3343), + [sym_this] = ACTIONS(3338), }, [STATE(1226)] = { + [sym_identifier] = ACTIONS(3522), + [anon_sym_LPAREN2] = ACTIONS(3524), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_virtual] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym___attribute__] = ACTIONS(3522), + [anon_sym___attribute] = ACTIONS(3522), + [anon_sym_COLON_COLON] = ACTIONS(3524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3524), + [anon_sym___declspec] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_signed] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym___inline] = ACTIONS(3522), + [anon_sym___inline__] = ACTIONS(3522), + [anon_sym___forceinline] = ACTIONS(3522), + [anon_sym_thread_local] = ACTIONS(3522), + [anon_sym___thread] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_constexpr] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym___restrict__] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym__Noreturn] = ACTIONS(3522), + [anon_sym_noreturn] = ACTIONS(3522), + [anon_sym__Nonnull] = ACTIONS(3522), + [anon_sym_mutable] = ACTIONS(3522), + [anon_sym_constinit] = ACTIONS(3522), + [anon_sym_consteval] = ACTIONS(3522), + [anon_sym_alignas] = ACTIONS(3522), + [anon_sym__Alignas] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_goto] = ACTIONS(3522), + [anon_sym___try] = ACTIONS(3522), + [anon_sym___leave] = ACTIONS(3522), + [anon_sym_not] = ACTIONS(3522), + [anon_sym_compl] = ACTIONS(3522), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_sizeof] = ACTIONS(3522), + [anon_sym___alignof__] = ACTIONS(3522), + [anon_sym___alignof] = ACTIONS(3522), + [anon_sym__alignof] = ACTIONS(3522), + [anon_sym_alignof] = ACTIONS(3522), + [anon_sym__Alignof] = ACTIONS(3522), + [anon_sym_offsetof] = ACTIONS(3522), + [anon_sym__Generic] = ACTIONS(3522), + [anon_sym_typename] = ACTIONS(3522), + [anon_sym_asm] = ACTIONS(3522), + [anon_sym___asm__] = ACTIONS(3522), + [anon_sym___asm] = ACTIONS(3522), + [sym_number_literal] = ACTIONS(3524), + [anon_sym_L_SQUOTE] = ACTIONS(3524), + [anon_sym_u_SQUOTE] = ACTIONS(3524), + [anon_sym_U_SQUOTE] = ACTIONS(3524), + [anon_sym_u8_SQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [anon_sym_L_DQUOTE] = ACTIONS(3524), + [anon_sym_u_DQUOTE] = ACTIONS(3524), + [anon_sym_U_DQUOTE] = ACTIONS(3524), + [anon_sym_u8_DQUOTE] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [anon_sym_NULL] = ACTIONS(3522), + [anon_sym_nullptr] = ACTIONS(3522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3522), + [anon_sym_decltype] = ACTIONS(3522), + [anon_sym_template] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_co_return] = ACTIONS(3522), + [anon_sym_co_yield] = ACTIONS(3522), + [anon_sym_R_DQUOTE] = ACTIONS(3524), + [anon_sym_LR_DQUOTE] = ACTIONS(3524), + [anon_sym_uR_DQUOTE] = ACTIONS(3524), + [anon_sym_UR_DQUOTE] = ACTIONS(3524), + [anon_sym_u8R_DQUOTE] = ACTIONS(3524), + [anon_sym_co_await] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_requires] = ACTIONS(3522), + [anon_sym_CARET_CARET] = ACTIONS(3524), + [anon_sym_LBRACK_COLON] = ACTIONS(3524), + [sym_this] = ACTIONS(3522), + }, + [STATE(1227)] = { + [sym_identifier] = ACTIONS(3548), + [anon_sym_LPAREN2] = ACTIONS(3550), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_AMP] = ACTIONS(3550), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym___extension__] = ACTIONS(3548), + [anon_sym_typedef] = ACTIONS(3548), + [anon_sym_virtual] = ACTIONS(3548), + [anon_sym_extern] = ACTIONS(3548), + [anon_sym___attribute__] = ACTIONS(3548), + [anon_sym___attribute] = ACTIONS(3548), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3550), + [anon_sym___declspec] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_signed] = ACTIONS(3548), + [anon_sym_unsigned] = ACTIONS(3548), + [anon_sym_long] = ACTIONS(3548), + [anon_sym_short] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3548), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_register] = ACTIONS(3548), + [anon_sym_inline] = ACTIONS(3548), + [anon_sym___inline] = ACTIONS(3548), + [anon_sym___inline__] = ACTIONS(3548), + [anon_sym___forceinline] = ACTIONS(3548), + [anon_sym_thread_local] = ACTIONS(3548), + [anon_sym___thread] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_constexpr] = ACTIONS(3548), + [anon_sym_volatile] = ACTIONS(3548), + [anon_sym_restrict] = ACTIONS(3548), + [anon_sym___restrict__] = ACTIONS(3548), + [anon_sym__Atomic] = ACTIONS(3548), + [anon_sym__Noreturn] = ACTIONS(3548), + [anon_sym_noreturn] = ACTIONS(3548), + [anon_sym__Nonnull] = ACTIONS(3548), + [anon_sym_mutable] = ACTIONS(3548), + [anon_sym_constinit] = ACTIONS(3548), + [anon_sym_consteval] = ACTIONS(3548), + [anon_sym_alignas] = ACTIONS(3548), + [anon_sym__Alignas] = ACTIONS(3548), + [sym_primitive_type] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_struct] = ACTIONS(3548), + [anon_sym_union] = ACTIONS(3548), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_else] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_goto] = ACTIONS(3548), + [anon_sym___try] = ACTIONS(3548), + [anon_sym___leave] = ACTIONS(3548), + [anon_sym_not] = ACTIONS(3548), + [anon_sym_compl] = ACTIONS(3548), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_sizeof] = ACTIONS(3548), + [anon_sym___alignof__] = ACTIONS(3548), + [anon_sym___alignof] = ACTIONS(3548), + [anon_sym__alignof] = ACTIONS(3548), + [anon_sym_alignof] = ACTIONS(3548), + [anon_sym__Alignof] = ACTIONS(3548), + [anon_sym_offsetof] = ACTIONS(3548), + [anon_sym__Generic] = ACTIONS(3548), + [anon_sym_typename] = ACTIONS(3548), + [anon_sym_asm] = ACTIONS(3548), + [anon_sym___asm__] = ACTIONS(3548), + [anon_sym___asm] = ACTIONS(3548), + [sym_number_literal] = ACTIONS(3550), + [anon_sym_L_SQUOTE] = ACTIONS(3550), + [anon_sym_u_SQUOTE] = ACTIONS(3550), + [anon_sym_U_SQUOTE] = ACTIONS(3550), + [anon_sym_u8_SQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [anon_sym_L_DQUOTE] = ACTIONS(3550), + [anon_sym_u_DQUOTE] = ACTIONS(3550), + [anon_sym_U_DQUOTE] = ACTIONS(3550), + [anon_sym_u8_DQUOTE] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [anon_sym_NULL] = ACTIONS(3548), + [anon_sym_nullptr] = ACTIONS(3548), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3548), + [anon_sym_decltype] = ACTIONS(3548), + [anon_sym_template] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_co_return] = ACTIONS(3548), + [anon_sym_co_yield] = ACTIONS(3548), + [anon_sym_R_DQUOTE] = ACTIONS(3550), + [anon_sym_LR_DQUOTE] = ACTIONS(3550), + [anon_sym_uR_DQUOTE] = ACTIONS(3550), + [anon_sym_UR_DQUOTE] = ACTIONS(3550), + [anon_sym_u8R_DQUOTE] = ACTIONS(3550), + [anon_sym_co_await] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_requires] = ACTIONS(3548), + [anon_sym_CARET_CARET] = ACTIONS(3550), + [anon_sym_LBRACK_COLON] = ACTIONS(3550), + [sym_this] = ACTIONS(3548), + }, + [STATE(1228)] = { + [sym_identifier] = ACTIONS(3530), + [anon_sym_LPAREN2] = ACTIONS(3532), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_STAR] = ACTIONS(3532), + [anon_sym_AMP] = ACTIONS(3532), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym___extension__] = ACTIONS(3530), + [anon_sym_typedef] = ACTIONS(3530), + [anon_sym_virtual] = ACTIONS(3530), + [anon_sym_extern] = ACTIONS(3530), + [anon_sym___attribute__] = ACTIONS(3530), + [anon_sym___attribute] = ACTIONS(3530), + [anon_sym_COLON_COLON] = ACTIONS(3532), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3532), + [anon_sym___declspec] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_signed] = ACTIONS(3530), + [anon_sym_unsigned] = ACTIONS(3530), + [anon_sym_long] = ACTIONS(3530), + [anon_sym_short] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3530), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_register] = ACTIONS(3530), + [anon_sym_inline] = ACTIONS(3530), + [anon_sym___inline] = ACTIONS(3530), + [anon_sym___inline__] = ACTIONS(3530), + [anon_sym___forceinline] = ACTIONS(3530), + [anon_sym_thread_local] = ACTIONS(3530), + [anon_sym___thread] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_constexpr] = ACTIONS(3530), + [anon_sym_volatile] = ACTIONS(3530), + [anon_sym_restrict] = ACTIONS(3530), + [anon_sym___restrict__] = ACTIONS(3530), + [anon_sym__Atomic] = ACTIONS(3530), + [anon_sym__Noreturn] = ACTIONS(3530), + [anon_sym_noreturn] = ACTIONS(3530), + [anon_sym__Nonnull] = ACTIONS(3530), + [anon_sym_mutable] = ACTIONS(3530), + [anon_sym_constinit] = ACTIONS(3530), + [anon_sym_consteval] = ACTIONS(3530), + [anon_sym_alignas] = ACTIONS(3530), + [anon_sym__Alignas] = ACTIONS(3530), + [sym_primitive_type] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_struct] = ACTIONS(3530), + [anon_sym_union] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_goto] = ACTIONS(3530), + [anon_sym___try] = ACTIONS(3530), + [anon_sym___leave] = ACTIONS(3530), + [anon_sym_not] = ACTIONS(3530), + [anon_sym_compl] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_sizeof] = ACTIONS(3530), + [anon_sym___alignof__] = ACTIONS(3530), + [anon_sym___alignof] = ACTIONS(3530), + [anon_sym__alignof] = ACTIONS(3530), + [anon_sym_alignof] = ACTIONS(3530), + [anon_sym__Alignof] = ACTIONS(3530), + [anon_sym_offsetof] = ACTIONS(3530), + [anon_sym__Generic] = ACTIONS(3530), + [anon_sym_typename] = ACTIONS(3530), + [anon_sym_asm] = ACTIONS(3530), + [anon_sym___asm__] = ACTIONS(3530), + [anon_sym___asm] = ACTIONS(3530), + [sym_number_literal] = ACTIONS(3532), + [anon_sym_L_SQUOTE] = ACTIONS(3532), + [anon_sym_u_SQUOTE] = ACTIONS(3532), + [anon_sym_U_SQUOTE] = ACTIONS(3532), + [anon_sym_u8_SQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [anon_sym_L_DQUOTE] = ACTIONS(3532), + [anon_sym_u_DQUOTE] = ACTIONS(3532), + [anon_sym_U_DQUOTE] = ACTIONS(3532), + [anon_sym_u8_DQUOTE] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [anon_sym_NULL] = ACTIONS(3530), + [anon_sym_nullptr] = ACTIONS(3530), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3530), + [anon_sym_decltype] = ACTIONS(3530), + [anon_sym_template] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_co_return] = ACTIONS(3530), + [anon_sym_co_yield] = ACTIONS(3530), + [anon_sym_R_DQUOTE] = ACTIONS(3532), + [anon_sym_LR_DQUOTE] = ACTIONS(3532), + [anon_sym_uR_DQUOTE] = ACTIONS(3532), + [anon_sym_UR_DQUOTE] = ACTIONS(3532), + [anon_sym_u8R_DQUOTE] = ACTIONS(3532), + [anon_sym_co_await] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_requires] = ACTIONS(3530), + [anon_sym_CARET_CARET] = ACTIONS(3532), + [anon_sym_LBRACK_COLON] = ACTIONS(3532), + [sym_this] = ACTIONS(3530), + }, + [STATE(1229)] = { + [sym_identifier] = ACTIONS(3636), + [anon_sym_LPAREN2] = ACTIONS(3638), + [anon_sym_BANG] = ACTIONS(3638), + [anon_sym_TILDE] = ACTIONS(3638), + [anon_sym_DASH] = ACTIONS(3636), + [anon_sym_PLUS] = ACTIONS(3636), + [anon_sym_STAR] = ACTIONS(3638), + [anon_sym_AMP] = ACTIONS(3638), + [anon_sym_SEMI] = ACTIONS(3638), + [anon_sym___extension__] = ACTIONS(3636), + [anon_sym_typedef] = ACTIONS(3636), + [anon_sym_virtual] = ACTIONS(3636), + [anon_sym_extern] = ACTIONS(3636), + [anon_sym___attribute__] = ACTIONS(3636), + [anon_sym___attribute] = ACTIONS(3636), + [anon_sym_COLON_COLON] = ACTIONS(3638), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3638), + [anon_sym___declspec] = ACTIONS(3636), + [anon_sym_LBRACE] = ACTIONS(3638), + [anon_sym_signed] = ACTIONS(3636), + [anon_sym_unsigned] = ACTIONS(3636), + [anon_sym_long] = ACTIONS(3636), + [anon_sym_short] = ACTIONS(3636), + [anon_sym_LBRACK] = ACTIONS(3636), + [anon_sym_static] = ACTIONS(3636), + [anon_sym_register] = ACTIONS(3636), + [anon_sym_inline] = ACTIONS(3636), + [anon_sym___inline] = ACTIONS(3636), + [anon_sym___inline__] = ACTIONS(3636), + [anon_sym___forceinline] = ACTIONS(3636), + [anon_sym_thread_local] = ACTIONS(3636), + [anon_sym___thread] = ACTIONS(3636), + [anon_sym_const] = ACTIONS(3636), + [anon_sym_constexpr] = ACTIONS(3636), + [anon_sym_volatile] = ACTIONS(3636), + [anon_sym_restrict] = ACTIONS(3636), + [anon_sym___restrict__] = ACTIONS(3636), + [anon_sym__Atomic] = ACTIONS(3636), + [anon_sym__Noreturn] = ACTIONS(3636), + [anon_sym_noreturn] = ACTIONS(3636), + [anon_sym__Nonnull] = ACTIONS(3636), + [anon_sym_mutable] = ACTIONS(3636), + [anon_sym_constinit] = ACTIONS(3636), + [anon_sym_consteval] = ACTIONS(3636), + [anon_sym_alignas] = ACTIONS(3636), + [anon_sym__Alignas] = ACTIONS(3636), + [sym_primitive_type] = ACTIONS(3636), + [anon_sym_enum] = ACTIONS(3636), + [anon_sym_class] = ACTIONS(3636), + [anon_sym_struct] = ACTIONS(3636), + [anon_sym_union] = ACTIONS(3636), + [anon_sym_if] = ACTIONS(3636), + [anon_sym_else] = ACTIONS(3636), + [anon_sym_switch] = ACTIONS(3636), + [anon_sym_while] = ACTIONS(3636), + [anon_sym_do] = ACTIONS(3636), + [anon_sym_for] = ACTIONS(3636), + [anon_sym_return] = ACTIONS(3636), + [anon_sym_break] = ACTIONS(3636), + [anon_sym_continue] = ACTIONS(3636), + [anon_sym_goto] = ACTIONS(3636), + [anon_sym___try] = ACTIONS(3636), + [anon_sym___leave] = ACTIONS(3636), + [anon_sym_not] = ACTIONS(3636), + [anon_sym_compl] = ACTIONS(3636), + [anon_sym_DASH_DASH] = ACTIONS(3638), + [anon_sym_PLUS_PLUS] = ACTIONS(3638), + [anon_sym_sizeof] = ACTIONS(3636), + [anon_sym___alignof__] = ACTIONS(3636), + [anon_sym___alignof] = ACTIONS(3636), + [anon_sym__alignof] = ACTIONS(3636), + [anon_sym_alignof] = ACTIONS(3636), + [anon_sym__Alignof] = ACTIONS(3636), + [anon_sym_offsetof] = ACTIONS(3636), + [anon_sym__Generic] = ACTIONS(3636), + [anon_sym_typename] = ACTIONS(3636), + [anon_sym_asm] = ACTIONS(3636), + [anon_sym___asm__] = ACTIONS(3636), + [anon_sym___asm] = ACTIONS(3636), + [sym_number_literal] = ACTIONS(3638), + [anon_sym_L_SQUOTE] = ACTIONS(3638), + [anon_sym_u_SQUOTE] = ACTIONS(3638), + [anon_sym_U_SQUOTE] = ACTIONS(3638), + [anon_sym_u8_SQUOTE] = ACTIONS(3638), + [anon_sym_SQUOTE] = ACTIONS(3638), + [anon_sym_L_DQUOTE] = ACTIONS(3638), + [anon_sym_u_DQUOTE] = ACTIONS(3638), + [anon_sym_U_DQUOTE] = ACTIONS(3638), + [anon_sym_u8_DQUOTE] = ACTIONS(3638), + [anon_sym_DQUOTE] = ACTIONS(3638), + [sym_true] = ACTIONS(3636), + [sym_false] = ACTIONS(3636), + [anon_sym_NULL] = ACTIONS(3636), + [anon_sym_nullptr] = ACTIONS(3636), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3636), + [anon_sym_decltype] = ACTIONS(3636), + [anon_sym_template] = ACTIONS(3636), + [anon_sym_try] = ACTIONS(3636), + [anon_sym_delete] = ACTIONS(3636), + [anon_sym_throw] = ACTIONS(3636), + [anon_sym_co_return] = ACTIONS(3636), + [anon_sym_co_yield] = ACTIONS(3636), + [anon_sym_R_DQUOTE] = ACTIONS(3638), + [anon_sym_LR_DQUOTE] = ACTIONS(3638), + [anon_sym_uR_DQUOTE] = ACTIONS(3638), + [anon_sym_UR_DQUOTE] = ACTIONS(3638), + [anon_sym_u8R_DQUOTE] = ACTIONS(3638), + [anon_sym_co_await] = ACTIONS(3636), + [anon_sym_new] = ACTIONS(3636), + [anon_sym_requires] = ACTIONS(3636), + [anon_sym_CARET_CARET] = ACTIONS(3638), + [anon_sym_LBRACK_COLON] = ACTIONS(3638), + [sym_this] = ACTIONS(3636), + }, + [STATE(1230)] = { + [sym_identifier] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_BANG] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_DASH] = ACTIONS(3644), + [anon_sym_PLUS] = ACTIONS(3644), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3646), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym_LBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_if] = ACTIONS(3644), + [anon_sym_else] = ACTIONS(3644), + [anon_sym_switch] = ACTIONS(3644), + [anon_sym_while] = ACTIONS(3644), + [anon_sym_do] = ACTIONS(3644), + [anon_sym_for] = ACTIONS(3644), + [anon_sym_return] = ACTIONS(3644), + [anon_sym_break] = ACTIONS(3644), + [anon_sym_continue] = ACTIONS(3644), + [anon_sym_goto] = ACTIONS(3644), + [anon_sym___try] = ACTIONS(3644), + [anon_sym___leave] = ACTIONS(3644), + [anon_sym_not] = ACTIONS(3644), + [anon_sym_compl] = ACTIONS(3644), + [anon_sym_DASH_DASH] = ACTIONS(3646), + [anon_sym_PLUS_PLUS] = ACTIONS(3646), + [anon_sym_sizeof] = ACTIONS(3644), + [anon_sym___alignof__] = ACTIONS(3644), + [anon_sym___alignof] = ACTIONS(3644), + [anon_sym__alignof] = ACTIONS(3644), + [anon_sym_alignof] = ACTIONS(3644), + [anon_sym__Alignof] = ACTIONS(3644), + [anon_sym_offsetof] = ACTIONS(3644), + [anon_sym__Generic] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [anon_sym_asm] = ACTIONS(3644), + [anon_sym___asm__] = ACTIONS(3644), + [anon_sym___asm] = ACTIONS(3644), + [sym_number_literal] = ACTIONS(3646), + [anon_sym_L_SQUOTE] = ACTIONS(3646), + [anon_sym_u_SQUOTE] = ACTIONS(3646), + [anon_sym_U_SQUOTE] = ACTIONS(3646), + [anon_sym_u8_SQUOTE] = ACTIONS(3646), + [anon_sym_SQUOTE] = ACTIONS(3646), + [anon_sym_L_DQUOTE] = ACTIONS(3646), + [anon_sym_u_DQUOTE] = ACTIONS(3646), + [anon_sym_U_DQUOTE] = ACTIONS(3646), + [anon_sym_u8_DQUOTE] = ACTIONS(3646), + [anon_sym_DQUOTE] = ACTIONS(3646), + [sym_true] = ACTIONS(3644), + [sym_false] = ACTIONS(3644), + [anon_sym_NULL] = ACTIONS(3644), + [anon_sym_nullptr] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_try] = ACTIONS(3644), + [anon_sym_delete] = ACTIONS(3644), + [anon_sym_throw] = ACTIONS(3644), + [anon_sym_co_return] = ACTIONS(3644), + [anon_sym_co_yield] = ACTIONS(3644), + [anon_sym_R_DQUOTE] = ACTIONS(3646), + [anon_sym_LR_DQUOTE] = ACTIONS(3646), + [anon_sym_uR_DQUOTE] = ACTIONS(3646), + [anon_sym_UR_DQUOTE] = ACTIONS(3646), + [anon_sym_u8R_DQUOTE] = ACTIONS(3646), + [anon_sym_co_await] = ACTIONS(3644), + [anon_sym_new] = ACTIONS(3644), + [anon_sym_requires] = ACTIONS(3644), + [anon_sym_CARET_CARET] = ACTIONS(3646), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), + }, + [STATE(1231)] = { + [sym_identifier] = ACTIONS(3620), + [anon_sym_LPAREN2] = ACTIONS(3622), + [anon_sym_BANG] = ACTIONS(3622), + [anon_sym_TILDE] = ACTIONS(3622), + [anon_sym_DASH] = ACTIONS(3620), + [anon_sym_PLUS] = ACTIONS(3620), + [anon_sym_STAR] = ACTIONS(3622), + [anon_sym_AMP] = ACTIONS(3622), + [anon_sym_SEMI] = ACTIONS(3622), + [anon_sym___extension__] = ACTIONS(3620), + [anon_sym_typedef] = ACTIONS(3620), + [anon_sym_virtual] = ACTIONS(3620), + [anon_sym_extern] = ACTIONS(3620), + [anon_sym___attribute__] = ACTIONS(3620), + [anon_sym___attribute] = ACTIONS(3620), + [anon_sym_COLON_COLON] = ACTIONS(3622), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3622), + [anon_sym___declspec] = ACTIONS(3620), + [anon_sym_LBRACE] = ACTIONS(3622), + [anon_sym_signed] = ACTIONS(3620), + [anon_sym_unsigned] = ACTIONS(3620), + [anon_sym_long] = ACTIONS(3620), + [anon_sym_short] = ACTIONS(3620), + [anon_sym_LBRACK] = ACTIONS(3620), + [anon_sym_static] = ACTIONS(3620), + [anon_sym_register] = ACTIONS(3620), + [anon_sym_inline] = ACTIONS(3620), + [anon_sym___inline] = ACTIONS(3620), + [anon_sym___inline__] = ACTIONS(3620), + [anon_sym___forceinline] = ACTIONS(3620), + [anon_sym_thread_local] = ACTIONS(3620), + [anon_sym___thread] = ACTIONS(3620), + [anon_sym_const] = ACTIONS(3620), + [anon_sym_constexpr] = ACTIONS(3620), + [anon_sym_volatile] = ACTIONS(3620), + [anon_sym_restrict] = ACTIONS(3620), + [anon_sym___restrict__] = ACTIONS(3620), + [anon_sym__Atomic] = ACTIONS(3620), + [anon_sym__Noreturn] = ACTIONS(3620), + [anon_sym_noreturn] = ACTIONS(3620), + [anon_sym__Nonnull] = ACTIONS(3620), + [anon_sym_mutable] = ACTIONS(3620), + [anon_sym_constinit] = ACTIONS(3620), + [anon_sym_consteval] = ACTIONS(3620), + [anon_sym_alignas] = ACTIONS(3620), + [anon_sym__Alignas] = ACTIONS(3620), + [sym_primitive_type] = ACTIONS(3620), + [anon_sym_enum] = ACTIONS(3620), + [anon_sym_class] = ACTIONS(3620), + [anon_sym_struct] = ACTIONS(3620), + [anon_sym_union] = ACTIONS(3620), + [anon_sym_if] = ACTIONS(3620), + [anon_sym_else] = ACTIONS(3620), + [anon_sym_switch] = ACTIONS(3620), + [anon_sym_while] = ACTIONS(3620), + [anon_sym_do] = ACTIONS(3620), + [anon_sym_for] = ACTIONS(3620), + [anon_sym_return] = ACTIONS(3620), + [anon_sym_break] = ACTIONS(3620), + [anon_sym_continue] = ACTIONS(3620), + [anon_sym_goto] = ACTIONS(3620), + [anon_sym___try] = ACTIONS(3620), + [anon_sym___leave] = ACTIONS(3620), + [anon_sym_not] = ACTIONS(3620), + [anon_sym_compl] = ACTIONS(3620), + [anon_sym_DASH_DASH] = ACTIONS(3622), + [anon_sym_PLUS_PLUS] = ACTIONS(3622), + [anon_sym_sizeof] = ACTIONS(3620), + [anon_sym___alignof__] = ACTIONS(3620), + [anon_sym___alignof] = ACTIONS(3620), + [anon_sym__alignof] = ACTIONS(3620), + [anon_sym_alignof] = ACTIONS(3620), + [anon_sym__Alignof] = ACTIONS(3620), + [anon_sym_offsetof] = ACTIONS(3620), + [anon_sym__Generic] = ACTIONS(3620), + [anon_sym_typename] = ACTIONS(3620), + [anon_sym_asm] = ACTIONS(3620), + [anon_sym___asm__] = ACTIONS(3620), + [anon_sym___asm] = ACTIONS(3620), + [sym_number_literal] = ACTIONS(3622), + [anon_sym_L_SQUOTE] = ACTIONS(3622), + [anon_sym_u_SQUOTE] = ACTIONS(3622), + [anon_sym_U_SQUOTE] = ACTIONS(3622), + [anon_sym_u8_SQUOTE] = ACTIONS(3622), + [anon_sym_SQUOTE] = ACTIONS(3622), + [anon_sym_L_DQUOTE] = ACTIONS(3622), + [anon_sym_u_DQUOTE] = ACTIONS(3622), + [anon_sym_U_DQUOTE] = ACTIONS(3622), + [anon_sym_u8_DQUOTE] = ACTIONS(3622), + [anon_sym_DQUOTE] = ACTIONS(3622), + [sym_true] = ACTIONS(3620), + [sym_false] = ACTIONS(3620), + [anon_sym_NULL] = ACTIONS(3620), + [anon_sym_nullptr] = ACTIONS(3620), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3620), + [anon_sym_decltype] = ACTIONS(3620), + [anon_sym_template] = ACTIONS(3620), + [anon_sym_try] = ACTIONS(3620), + [anon_sym_delete] = ACTIONS(3620), + [anon_sym_throw] = ACTIONS(3620), + [anon_sym_co_return] = ACTIONS(3620), + [anon_sym_co_yield] = ACTIONS(3620), + [anon_sym_R_DQUOTE] = ACTIONS(3622), + [anon_sym_LR_DQUOTE] = ACTIONS(3622), + [anon_sym_uR_DQUOTE] = ACTIONS(3622), + [anon_sym_UR_DQUOTE] = ACTIONS(3622), + [anon_sym_u8R_DQUOTE] = ACTIONS(3622), + [anon_sym_co_await] = ACTIONS(3620), + [anon_sym_new] = ACTIONS(3620), + [anon_sym_requires] = ACTIONS(3620), + [anon_sym_CARET_CARET] = ACTIONS(3622), + [anon_sym_LBRACK_COLON] = ACTIONS(3622), + [sym_this] = ACTIONS(3620), + }, + [STATE(1232)] = { + [sym_identifier] = ACTIONS(3624), + [anon_sym_LPAREN2] = ACTIONS(3626), + [anon_sym_BANG] = ACTIONS(3626), + [anon_sym_TILDE] = ACTIONS(3626), + [anon_sym_DASH] = ACTIONS(3624), + [anon_sym_PLUS] = ACTIONS(3624), + [anon_sym_STAR] = ACTIONS(3626), + [anon_sym_AMP] = ACTIONS(3626), + [anon_sym_SEMI] = ACTIONS(3626), + [anon_sym___extension__] = ACTIONS(3624), + [anon_sym_typedef] = ACTIONS(3624), + [anon_sym_virtual] = ACTIONS(3624), + [anon_sym_extern] = ACTIONS(3624), + [anon_sym___attribute__] = ACTIONS(3624), + [anon_sym___attribute] = ACTIONS(3624), + [anon_sym_COLON_COLON] = ACTIONS(3626), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3626), + [anon_sym___declspec] = ACTIONS(3624), + [anon_sym_LBRACE] = ACTIONS(3626), + [anon_sym_signed] = ACTIONS(3624), + [anon_sym_unsigned] = ACTIONS(3624), + [anon_sym_long] = ACTIONS(3624), + [anon_sym_short] = ACTIONS(3624), + [anon_sym_LBRACK] = ACTIONS(3624), + [anon_sym_static] = ACTIONS(3624), + [anon_sym_register] = ACTIONS(3624), + [anon_sym_inline] = ACTIONS(3624), + [anon_sym___inline] = ACTIONS(3624), + [anon_sym___inline__] = ACTIONS(3624), + [anon_sym___forceinline] = ACTIONS(3624), + [anon_sym_thread_local] = ACTIONS(3624), + [anon_sym___thread] = ACTIONS(3624), + [anon_sym_const] = ACTIONS(3624), + [anon_sym_constexpr] = ACTIONS(3624), + [anon_sym_volatile] = ACTIONS(3624), + [anon_sym_restrict] = ACTIONS(3624), + [anon_sym___restrict__] = ACTIONS(3624), + [anon_sym__Atomic] = ACTIONS(3624), + [anon_sym__Noreturn] = ACTIONS(3624), + [anon_sym_noreturn] = ACTIONS(3624), + [anon_sym__Nonnull] = ACTIONS(3624), + [anon_sym_mutable] = ACTIONS(3624), + [anon_sym_constinit] = ACTIONS(3624), + [anon_sym_consteval] = ACTIONS(3624), + [anon_sym_alignas] = ACTIONS(3624), + [anon_sym__Alignas] = ACTIONS(3624), + [sym_primitive_type] = ACTIONS(3624), + [anon_sym_enum] = ACTIONS(3624), + [anon_sym_class] = ACTIONS(3624), + [anon_sym_struct] = ACTIONS(3624), + [anon_sym_union] = ACTIONS(3624), + [anon_sym_if] = ACTIONS(3624), + [anon_sym_else] = ACTIONS(3624), + [anon_sym_switch] = ACTIONS(3624), + [anon_sym_while] = ACTIONS(3624), + [anon_sym_do] = ACTIONS(3624), + [anon_sym_for] = ACTIONS(3624), + [anon_sym_return] = ACTIONS(3624), + [anon_sym_break] = ACTIONS(3624), + [anon_sym_continue] = ACTIONS(3624), + [anon_sym_goto] = ACTIONS(3624), + [anon_sym___try] = ACTIONS(3624), + [anon_sym___leave] = ACTIONS(3624), + [anon_sym_not] = ACTIONS(3624), + [anon_sym_compl] = ACTIONS(3624), + [anon_sym_DASH_DASH] = ACTIONS(3626), + [anon_sym_PLUS_PLUS] = ACTIONS(3626), + [anon_sym_sizeof] = ACTIONS(3624), + [anon_sym___alignof__] = ACTIONS(3624), + [anon_sym___alignof] = ACTIONS(3624), + [anon_sym__alignof] = ACTIONS(3624), + [anon_sym_alignof] = ACTIONS(3624), + [anon_sym__Alignof] = ACTIONS(3624), + [anon_sym_offsetof] = ACTIONS(3624), + [anon_sym__Generic] = ACTIONS(3624), + [anon_sym_typename] = ACTIONS(3624), + [anon_sym_asm] = ACTIONS(3624), + [anon_sym___asm__] = ACTIONS(3624), + [anon_sym___asm] = ACTIONS(3624), + [sym_number_literal] = ACTIONS(3626), + [anon_sym_L_SQUOTE] = ACTIONS(3626), + [anon_sym_u_SQUOTE] = ACTIONS(3626), + [anon_sym_U_SQUOTE] = ACTIONS(3626), + [anon_sym_u8_SQUOTE] = ACTIONS(3626), + [anon_sym_SQUOTE] = ACTIONS(3626), + [anon_sym_L_DQUOTE] = ACTIONS(3626), + [anon_sym_u_DQUOTE] = ACTIONS(3626), + [anon_sym_U_DQUOTE] = ACTIONS(3626), + [anon_sym_u8_DQUOTE] = ACTIONS(3626), + [anon_sym_DQUOTE] = ACTIONS(3626), + [sym_true] = ACTIONS(3624), + [sym_false] = ACTIONS(3624), + [anon_sym_NULL] = ACTIONS(3624), + [anon_sym_nullptr] = ACTIONS(3624), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3624), + [anon_sym_decltype] = ACTIONS(3624), + [anon_sym_template] = ACTIONS(3624), + [anon_sym_try] = ACTIONS(3624), + [anon_sym_delete] = ACTIONS(3624), + [anon_sym_throw] = ACTIONS(3624), + [anon_sym_co_return] = ACTIONS(3624), + [anon_sym_co_yield] = ACTIONS(3624), + [anon_sym_R_DQUOTE] = ACTIONS(3626), + [anon_sym_LR_DQUOTE] = ACTIONS(3626), + [anon_sym_uR_DQUOTE] = ACTIONS(3626), + [anon_sym_UR_DQUOTE] = ACTIONS(3626), + [anon_sym_u8R_DQUOTE] = ACTIONS(3626), + [anon_sym_co_await] = ACTIONS(3624), + [anon_sym_new] = ACTIONS(3624), + [anon_sym_requires] = ACTIONS(3624), + [anon_sym_CARET_CARET] = ACTIONS(3626), + [anon_sym_LBRACK_COLON] = ACTIONS(3626), + [sym_this] = ACTIONS(3624), + }, + [STATE(1233)] = { + [sym_identifier] = ACTIONS(3610), + [anon_sym_LPAREN2] = ACTIONS(3612), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_TILDE] = ACTIONS(3612), + [anon_sym_DASH] = ACTIONS(3610), + [anon_sym_PLUS] = ACTIONS(3610), + [anon_sym_STAR] = ACTIONS(3612), + [anon_sym_AMP] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym___extension__] = ACTIONS(3610), + [anon_sym_typedef] = ACTIONS(3610), + [anon_sym_virtual] = ACTIONS(3610), + [anon_sym_extern] = ACTIONS(3610), + [anon_sym___attribute__] = ACTIONS(3610), + [anon_sym___attribute] = ACTIONS(3610), + [anon_sym_COLON_COLON] = ACTIONS(3612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3612), + [anon_sym___declspec] = ACTIONS(3610), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_signed] = ACTIONS(3610), + [anon_sym_unsigned] = ACTIONS(3610), + [anon_sym_long] = ACTIONS(3610), + [anon_sym_short] = ACTIONS(3610), + [anon_sym_LBRACK] = ACTIONS(3610), + [anon_sym_static] = ACTIONS(3610), + [anon_sym_register] = ACTIONS(3610), + [anon_sym_inline] = ACTIONS(3610), + [anon_sym___inline] = ACTIONS(3610), + [anon_sym___inline__] = ACTIONS(3610), + [anon_sym___forceinline] = ACTIONS(3610), + [anon_sym_thread_local] = ACTIONS(3610), + [anon_sym___thread] = ACTIONS(3610), + [anon_sym_const] = ACTIONS(3610), + [anon_sym_constexpr] = ACTIONS(3610), + [anon_sym_volatile] = ACTIONS(3610), + [anon_sym_restrict] = ACTIONS(3610), + [anon_sym___restrict__] = ACTIONS(3610), + [anon_sym__Atomic] = ACTIONS(3610), + [anon_sym__Noreturn] = ACTIONS(3610), + [anon_sym_noreturn] = ACTIONS(3610), + [anon_sym__Nonnull] = ACTIONS(3610), + [anon_sym_mutable] = ACTIONS(3610), + [anon_sym_constinit] = ACTIONS(3610), + [anon_sym_consteval] = ACTIONS(3610), + [anon_sym_alignas] = ACTIONS(3610), + [anon_sym__Alignas] = ACTIONS(3610), + [sym_primitive_type] = ACTIONS(3610), + [anon_sym_enum] = ACTIONS(3610), + [anon_sym_class] = ACTIONS(3610), + [anon_sym_struct] = ACTIONS(3610), + [anon_sym_union] = ACTIONS(3610), + [anon_sym_if] = ACTIONS(3610), + [anon_sym_else] = ACTIONS(3610), + [anon_sym_switch] = ACTIONS(3610), + [anon_sym_while] = ACTIONS(3610), + [anon_sym_do] = ACTIONS(3610), + [anon_sym_for] = ACTIONS(3610), + [anon_sym_return] = ACTIONS(3610), + [anon_sym_break] = ACTIONS(3610), + [anon_sym_continue] = ACTIONS(3610), + [anon_sym_goto] = ACTIONS(3610), + [anon_sym___try] = ACTIONS(3610), + [anon_sym___leave] = ACTIONS(3610), + [anon_sym_not] = ACTIONS(3610), + [anon_sym_compl] = ACTIONS(3610), + [anon_sym_DASH_DASH] = ACTIONS(3612), + [anon_sym_PLUS_PLUS] = ACTIONS(3612), + [anon_sym_sizeof] = ACTIONS(3610), + [anon_sym___alignof__] = ACTIONS(3610), + [anon_sym___alignof] = ACTIONS(3610), + [anon_sym__alignof] = ACTIONS(3610), + [anon_sym_alignof] = ACTIONS(3610), + [anon_sym__Alignof] = ACTIONS(3610), + [anon_sym_offsetof] = ACTIONS(3610), + [anon_sym__Generic] = ACTIONS(3610), + [anon_sym_typename] = ACTIONS(3610), + [anon_sym_asm] = ACTIONS(3610), + [anon_sym___asm__] = ACTIONS(3610), + [anon_sym___asm] = ACTIONS(3610), + [sym_number_literal] = ACTIONS(3612), + [anon_sym_L_SQUOTE] = ACTIONS(3612), + [anon_sym_u_SQUOTE] = ACTIONS(3612), + [anon_sym_U_SQUOTE] = ACTIONS(3612), + [anon_sym_u8_SQUOTE] = ACTIONS(3612), + [anon_sym_SQUOTE] = ACTIONS(3612), + [anon_sym_L_DQUOTE] = ACTIONS(3612), + [anon_sym_u_DQUOTE] = ACTIONS(3612), + [anon_sym_U_DQUOTE] = ACTIONS(3612), + [anon_sym_u8_DQUOTE] = ACTIONS(3612), + [anon_sym_DQUOTE] = ACTIONS(3612), + [sym_true] = ACTIONS(3610), + [sym_false] = ACTIONS(3610), + [anon_sym_NULL] = ACTIONS(3610), + [anon_sym_nullptr] = ACTIONS(3610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3610), + [anon_sym_decltype] = ACTIONS(3610), + [anon_sym_template] = ACTIONS(3610), + [anon_sym_try] = ACTIONS(3610), + [anon_sym_delete] = ACTIONS(3610), + [anon_sym_throw] = ACTIONS(3610), + [anon_sym_co_return] = ACTIONS(3610), + [anon_sym_co_yield] = ACTIONS(3610), + [anon_sym_R_DQUOTE] = ACTIONS(3612), + [anon_sym_LR_DQUOTE] = ACTIONS(3612), + [anon_sym_uR_DQUOTE] = ACTIONS(3612), + [anon_sym_UR_DQUOTE] = ACTIONS(3612), + [anon_sym_u8R_DQUOTE] = ACTIONS(3612), + [anon_sym_co_await] = ACTIONS(3610), + [anon_sym_new] = ACTIONS(3610), + [anon_sym_requires] = ACTIONS(3610), + [anon_sym_CARET_CARET] = ACTIONS(3612), + [anon_sym_LBRACK_COLON] = ACTIONS(3612), + [sym_this] = ACTIONS(3610), + }, + [STATE(1234)] = { + [sym_identifier] = ACTIONS(3300), + [anon_sym_LPAREN2] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym___extension__] = ACTIONS(3300), + [anon_sym_typedef] = ACTIONS(3300), + [anon_sym_virtual] = ACTIONS(3300), + [anon_sym_extern] = ACTIONS(3300), + [anon_sym___attribute__] = ACTIONS(3300), + [anon_sym___attribute] = ACTIONS(3300), + [anon_sym_COLON_COLON] = ACTIONS(3305), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3305), + [anon_sym___declspec] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_signed] = ACTIONS(3300), + [anon_sym_unsigned] = ACTIONS(3300), + [anon_sym_long] = ACTIONS(3300), + [anon_sym_short] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_register] = ACTIONS(3300), + [anon_sym_inline] = ACTIONS(3300), + [anon_sym___inline] = ACTIONS(3300), + [anon_sym___inline__] = ACTIONS(3300), + [anon_sym___forceinline] = ACTIONS(3300), + [anon_sym_thread_local] = ACTIONS(3300), + [anon_sym___thread] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_constexpr] = ACTIONS(3300), + [anon_sym_volatile] = ACTIONS(3300), + [anon_sym_restrict] = ACTIONS(3300), + [anon_sym___restrict__] = ACTIONS(3300), + [anon_sym__Atomic] = ACTIONS(3300), + [anon_sym__Noreturn] = ACTIONS(3300), + [anon_sym_noreturn] = ACTIONS(3300), + [anon_sym__Nonnull] = ACTIONS(3300), + [anon_sym_mutable] = ACTIONS(3300), + [anon_sym_constinit] = ACTIONS(3300), + [anon_sym_consteval] = ACTIONS(3300), + [anon_sym_alignas] = ACTIONS(3300), + [anon_sym__Alignas] = ACTIONS(3300), + [sym_primitive_type] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_struct] = ACTIONS(3300), + [anon_sym_union] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_goto] = ACTIONS(3300), + [anon_sym___try] = ACTIONS(3300), + [anon_sym___leave] = ACTIONS(3300), + [anon_sym_not] = ACTIONS(3300), + [anon_sym_compl] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_sizeof] = ACTIONS(3300), + [anon_sym___alignof__] = ACTIONS(3300), + [anon_sym___alignof] = ACTIONS(3300), + [anon_sym__alignof] = ACTIONS(3300), + [anon_sym_alignof] = ACTIONS(3300), + [anon_sym__Alignof] = ACTIONS(3300), + [anon_sym_offsetof] = ACTIONS(3300), + [anon_sym__Generic] = ACTIONS(3300), + [anon_sym_typename] = ACTIONS(3300), + [anon_sym_asm] = ACTIONS(3300), + [anon_sym___asm__] = ACTIONS(3300), + [anon_sym___asm] = ACTIONS(3300), + [sym_number_literal] = ACTIONS(3305), + [anon_sym_L_SQUOTE] = ACTIONS(3305), + [anon_sym_u_SQUOTE] = ACTIONS(3305), + [anon_sym_U_SQUOTE] = ACTIONS(3305), + [anon_sym_u8_SQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_L_DQUOTE] = ACTIONS(3305), + [anon_sym_u_DQUOTE] = ACTIONS(3305), + [anon_sym_U_DQUOTE] = ACTIONS(3305), + [anon_sym_u8_DQUOTE] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [anon_sym_NULL] = ACTIONS(3300), + [anon_sym_nullptr] = ACTIONS(3300), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3300), + [anon_sym_decltype] = ACTIONS(3300), + [anon_sym_template] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_co_return] = ACTIONS(3300), + [anon_sym_co_yield] = ACTIONS(3300), + [anon_sym_R_DQUOTE] = ACTIONS(3305), + [anon_sym_LR_DQUOTE] = ACTIONS(3305), + [anon_sym_uR_DQUOTE] = ACTIONS(3305), + [anon_sym_UR_DQUOTE] = ACTIONS(3305), + [anon_sym_u8R_DQUOTE] = ACTIONS(3305), + [anon_sym_co_await] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_requires] = ACTIONS(3300), + [anon_sym_CARET_CARET] = ACTIONS(3305), + [anon_sym_LBRACK_COLON] = ACTIONS(3305), + [sym_this] = ACTIONS(3300), + }, + [STATE(1235)] = { + [sym_identifier] = ACTIONS(5595), + [anon_sym_LPAREN2] = ACTIONS(5601), + [anon_sym_BANG] = ACTIONS(5601), + [anon_sym_TILDE] = ACTIONS(5601), + [anon_sym_DASH] = ACTIONS(5603), + [anon_sym_PLUS] = ACTIONS(5603), + [anon_sym_STAR] = ACTIONS(5601), + [anon_sym_AMP] = ACTIONS(5601), + [anon_sym_SEMI] = ACTIONS(5601), + [anon_sym___extension__] = ACTIONS(5595), + [anon_sym_virtual] = ACTIONS(5607), + [anon_sym_extern] = ACTIONS(5607), + [anon_sym___attribute__] = ACTIONS(5607), + [anon_sym___attribute] = ACTIONS(5607), + [anon_sym_COLON_COLON] = ACTIONS(5598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5598), + [anon_sym___declspec] = ACTIONS(5607), + [anon_sym_LBRACE] = ACTIONS(5601), + [anon_sym_signed] = ACTIONS(5607), + [anon_sym_unsigned] = ACTIONS(5607), + [anon_sym_long] = ACTIONS(5607), + [anon_sym_short] = ACTIONS(5607), + [anon_sym_LBRACK] = ACTIONS(5603), + [anon_sym_static] = ACTIONS(5607), + [anon_sym_register] = ACTIONS(5607), + [anon_sym_inline] = ACTIONS(5607), + [anon_sym___inline] = ACTIONS(5607), + [anon_sym___inline__] = ACTIONS(5607), + [anon_sym___forceinline] = ACTIONS(5607), + [anon_sym_thread_local] = ACTIONS(5607), + [anon_sym___thread] = ACTIONS(5607), + [anon_sym_const] = ACTIONS(5607), + [anon_sym_constexpr] = ACTIONS(5607), + [anon_sym_volatile] = ACTIONS(5607), + [anon_sym_restrict] = ACTIONS(5607), + [anon_sym___restrict__] = ACTIONS(5607), + [anon_sym__Atomic] = ACTIONS(5607), + [anon_sym__Noreturn] = ACTIONS(5607), + [anon_sym_noreturn] = ACTIONS(5607), + [anon_sym__Nonnull] = ACTIONS(5607), + [anon_sym_mutable] = ACTIONS(5607), + [anon_sym_constinit] = ACTIONS(5607), + [anon_sym_consteval] = ACTIONS(5607), + [anon_sym_alignas] = ACTIONS(5607), + [anon_sym__Alignas] = ACTIONS(5607), + [sym_primitive_type] = ACTIONS(5595), + [anon_sym_enum] = ACTIONS(5607), + [anon_sym_class] = ACTIONS(5607), + [anon_sym_struct] = ACTIONS(5607), + [anon_sym_union] = ACTIONS(5607), + [anon_sym_if] = ACTIONS(5603), + [anon_sym_switch] = ACTIONS(5603), + [anon_sym_case] = ACTIONS(5603), + [anon_sym_default] = ACTIONS(5603), + [anon_sym_while] = ACTIONS(5603), + [anon_sym_do] = ACTIONS(5603), + [anon_sym_for] = ACTIONS(5603), + [anon_sym_return] = ACTIONS(5603), + [anon_sym_break] = ACTIONS(5603), + [anon_sym_continue] = ACTIONS(5603), + [anon_sym_goto] = ACTIONS(5603), + [anon_sym___try] = ACTIONS(5603), + [anon_sym___leave] = ACTIONS(5603), + [anon_sym_not] = ACTIONS(5603), + [anon_sym_compl] = ACTIONS(5603), + [anon_sym_DASH_DASH] = ACTIONS(5601), + [anon_sym_PLUS_PLUS] = ACTIONS(5601), + [anon_sym_sizeof] = ACTIONS(5603), + [anon_sym___alignof__] = ACTIONS(5603), + [anon_sym___alignof] = ACTIONS(5603), + [anon_sym__alignof] = ACTIONS(5603), + [anon_sym_alignof] = ACTIONS(5603), + [anon_sym__Alignof] = ACTIONS(5603), + [anon_sym_offsetof] = ACTIONS(5603), + [anon_sym__Generic] = ACTIONS(5603), + [anon_sym_typename] = ACTIONS(5595), + [anon_sym_asm] = ACTIONS(5603), + [anon_sym___asm__] = ACTIONS(5603), + [anon_sym___asm] = ACTIONS(5603), + [sym_number_literal] = ACTIONS(5601), + [anon_sym_L_SQUOTE] = ACTIONS(5601), + [anon_sym_u_SQUOTE] = ACTIONS(5601), + [anon_sym_U_SQUOTE] = ACTIONS(5601), + [anon_sym_u8_SQUOTE] = ACTIONS(5601), + [anon_sym_SQUOTE] = ACTIONS(5601), + [anon_sym_L_DQUOTE] = ACTIONS(5601), + [anon_sym_u_DQUOTE] = ACTIONS(5601), + [anon_sym_U_DQUOTE] = ACTIONS(5601), + [anon_sym_u8_DQUOTE] = ACTIONS(5601), + [anon_sym_DQUOTE] = ACTIONS(5601), + [sym_true] = ACTIONS(5603), + [sym_false] = ACTIONS(5603), + [anon_sym_NULL] = ACTIONS(5603), + [anon_sym_nullptr] = ACTIONS(5603), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5607), + [anon_sym_decltype] = ACTIONS(5595), + [anon_sym_template] = ACTIONS(5595), + [anon_sym_try] = ACTIONS(5603), + [anon_sym_delete] = ACTIONS(5603), + [anon_sym_throw] = ACTIONS(5603), + [anon_sym_co_return] = ACTIONS(5603), + [anon_sym_co_yield] = ACTIONS(5603), + [anon_sym_R_DQUOTE] = ACTIONS(5601), + [anon_sym_LR_DQUOTE] = ACTIONS(5601), + [anon_sym_uR_DQUOTE] = ACTIONS(5601), + [anon_sym_UR_DQUOTE] = ACTIONS(5601), + [anon_sym_u8R_DQUOTE] = ACTIONS(5601), + [anon_sym_co_await] = ACTIONS(5603), + [anon_sym_new] = ACTIONS(5603), + [anon_sym_requires] = ACTIONS(5603), + [anon_sym_CARET_CARET] = ACTIONS(5601), + [anon_sym_LBRACK_COLON] = ACTIONS(5598), + [sym_this] = ACTIONS(5603), + }, + [STATE(1236)] = { + [sym_expression] = STATE(7057), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_lambda_default_capture] = STATE(10558), + [sym__lambda_capture_identifier] = STATE(10192), + [sym_lambda_capture_initializer] = STATE(10192), + [sym__lambda_capture] = STATE(10192), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_identifier_parameter_pack_expansion] = STATE(10192), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5819), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(5928), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5916), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(5918), + [anon_sym_AMP] = ACTIONS(5920), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(5922), + [anon_sym_EQ] = ACTIONS(5924), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(5926), + }, + [STATE(1237)] = { + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), + }, + [STATE(1238)] = { + [sym_identifier] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_BANG] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_DASH] = ACTIONS(3640), + [anon_sym_PLUS] = ACTIONS(3640), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3642), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym_LBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_if] = ACTIONS(3640), + [anon_sym_else] = ACTIONS(3640), + [anon_sym_switch] = ACTIONS(3640), + [anon_sym_while] = ACTIONS(3640), + [anon_sym_do] = ACTIONS(3640), + [anon_sym_for] = ACTIONS(3640), + [anon_sym_return] = ACTIONS(3640), + [anon_sym_break] = ACTIONS(3640), + [anon_sym_continue] = ACTIONS(3640), + [anon_sym_goto] = ACTIONS(3640), + [anon_sym___try] = ACTIONS(3640), + [anon_sym___leave] = ACTIONS(3640), + [anon_sym_not] = ACTIONS(3640), + [anon_sym_compl] = ACTIONS(3640), + [anon_sym_DASH_DASH] = ACTIONS(3642), + [anon_sym_PLUS_PLUS] = ACTIONS(3642), + [anon_sym_sizeof] = ACTIONS(3640), + [anon_sym___alignof__] = ACTIONS(3640), + [anon_sym___alignof] = ACTIONS(3640), + [anon_sym__alignof] = ACTIONS(3640), + [anon_sym_alignof] = ACTIONS(3640), + [anon_sym__Alignof] = ACTIONS(3640), + [anon_sym_offsetof] = ACTIONS(3640), + [anon_sym__Generic] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [anon_sym_asm] = ACTIONS(3640), + [anon_sym___asm__] = ACTIONS(3640), + [anon_sym___asm] = ACTIONS(3640), + [sym_number_literal] = ACTIONS(3642), + [anon_sym_L_SQUOTE] = ACTIONS(3642), + [anon_sym_u_SQUOTE] = ACTIONS(3642), + [anon_sym_U_SQUOTE] = ACTIONS(3642), + [anon_sym_u8_SQUOTE] = ACTIONS(3642), + [anon_sym_SQUOTE] = ACTIONS(3642), + [anon_sym_L_DQUOTE] = ACTIONS(3642), + [anon_sym_u_DQUOTE] = ACTIONS(3642), + [anon_sym_U_DQUOTE] = ACTIONS(3642), + [anon_sym_u8_DQUOTE] = ACTIONS(3642), + [anon_sym_DQUOTE] = ACTIONS(3642), + [sym_true] = ACTIONS(3640), + [sym_false] = ACTIONS(3640), + [anon_sym_NULL] = ACTIONS(3640), + [anon_sym_nullptr] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_try] = ACTIONS(3640), + [anon_sym_delete] = ACTIONS(3640), + [anon_sym_throw] = ACTIONS(3640), + [anon_sym_co_return] = ACTIONS(3640), + [anon_sym_co_yield] = ACTIONS(3640), + [anon_sym_R_DQUOTE] = ACTIONS(3642), + [anon_sym_LR_DQUOTE] = ACTIONS(3642), + [anon_sym_uR_DQUOTE] = ACTIONS(3642), + [anon_sym_UR_DQUOTE] = ACTIONS(3642), + [anon_sym_u8R_DQUOTE] = ACTIONS(3642), + [anon_sym_co_await] = ACTIONS(3640), + [anon_sym_new] = ACTIONS(3640), + [anon_sym_requires] = ACTIONS(3640), + [anon_sym_CARET_CARET] = ACTIONS(3642), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + [sym_this] = ACTIONS(3640), + }, + [STATE(1239)] = { + [sym_identifier] = ACTIONS(3648), + [anon_sym_LPAREN2] = ACTIONS(3650), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_TILDE] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3648), + [anon_sym_PLUS] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_AMP] = ACTIONS(3650), + [anon_sym_SEMI] = ACTIONS(3650), + [anon_sym___extension__] = ACTIONS(3648), + [anon_sym_typedef] = ACTIONS(3648), + [anon_sym_virtual] = ACTIONS(3648), + [anon_sym_extern] = ACTIONS(3648), + [anon_sym___attribute__] = ACTIONS(3648), + [anon_sym___attribute] = ACTIONS(3648), + [anon_sym_COLON_COLON] = ACTIONS(3650), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3650), + [anon_sym___declspec] = ACTIONS(3648), + [anon_sym_LBRACE] = ACTIONS(3650), + [anon_sym_signed] = ACTIONS(3648), + [anon_sym_unsigned] = ACTIONS(3648), + [anon_sym_long] = ACTIONS(3648), + [anon_sym_short] = ACTIONS(3648), + [anon_sym_LBRACK] = ACTIONS(3648), + [anon_sym_static] = ACTIONS(3648), + [anon_sym_register] = ACTIONS(3648), + [anon_sym_inline] = ACTIONS(3648), + [anon_sym___inline] = ACTIONS(3648), + [anon_sym___inline__] = ACTIONS(3648), + [anon_sym___forceinline] = ACTIONS(3648), + [anon_sym_thread_local] = ACTIONS(3648), + [anon_sym___thread] = ACTIONS(3648), + [anon_sym_const] = ACTIONS(3648), + [anon_sym_constexpr] = ACTIONS(3648), + [anon_sym_volatile] = ACTIONS(3648), + [anon_sym_restrict] = ACTIONS(3648), + [anon_sym___restrict__] = ACTIONS(3648), + [anon_sym__Atomic] = ACTIONS(3648), + [anon_sym__Noreturn] = ACTIONS(3648), + [anon_sym_noreturn] = ACTIONS(3648), + [anon_sym__Nonnull] = ACTIONS(3648), + [anon_sym_mutable] = ACTIONS(3648), + [anon_sym_constinit] = ACTIONS(3648), + [anon_sym_consteval] = ACTIONS(3648), + [anon_sym_alignas] = ACTIONS(3648), + [anon_sym__Alignas] = ACTIONS(3648), + [sym_primitive_type] = ACTIONS(3648), + [anon_sym_enum] = ACTIONS(3648), + [anon_sym_class] = ACTIONS(3648), + [anon_sym_struct] = ACTIONS(3648), + [anon_sym_union] = ACTIONS(3648), + [anon_sym_if] = ACTIONS(3648), + [anon_sym_else] = ACTIONS(3648), + [anon_sym_switch] = ACTIONS(3648), + [anon_sym_while] = ACTIONS(3648), + [anon_sym_do] = ACTIONS(3648), + [anon_sym_for] = ACTIONS(3648), + [anon_sym_return] = ACTIONS(3648), + [anon_sym_break] = ACTIONS(3648), + [anon_sym_continue] = ACTIONS(3648), + [anon_sym_goto] = ACTIONS(3648), + [anon_sym___try] = ACTIONS(3648), + [anon_sym___leave] = ACTIONS(3648), + [anon_sym_not] = ACTIONS(3648), + [anon_sym_compl] = ACTIONS(3648), + [anon_sym_DASH_DASH] = ACTIONS(3650), + [anon_sym_PLUS_PLUS] = ACTIONS(3650), + [anon_sym_sizeof] = ACTIONS(3648), + [anon_sym___alignof__] = ACTIONS(3648), + [anon_sym___alignof] = ACTIONS(3648), + [anon_sym__alignof] = ACTIONS(3648), + [anon_sym_alignof] = ACTIONS(3648), + [anon_sym__Alignof] = ACTIONS(3648), + [anon_sym_offsetof] = ACTIONS(3648), + [anon_sym__Generic] = ACTIONS(3648), + [anon_sym_typename] = ACTIONS(3648), + [anon_sym_asm] = ACTIONS(3648), + [anon_sym___asm__] = ACTIONS(3648), + [anon_sym___asm] = ACTIONS(3648), + [sym_number_literal] = ACTIONS(3650), + [anon_sym_L_SQUOTE] = ACTIONS(3650), + [anon_sym_u_SQUOTE] = ACTIONS(3650), + [anon_sym_U_SQUOTE] = ACTIONS(3650), + [anon_sym_u8_SQUOTE] = ACTIONS(3650), + [anon_sym_SQUOTE] = ACTIONS(3650), + [anon_sym_L_DQUOTE] = ACTIONS(3650), + [anon_sym_u_DQUOTE] = ACTIONS(3650), + [anon_sym_U_DQUOTE] = ACTIONS(3650), + [anon_sym_u8_DQUOTE] = ACTIONS(3650), + [anon_sym_DQUOTE] = ACTIONS(3650), + [sym_true] = ACTIONS(3648), + [sym_false] = ACTIONS(3648), + [anon_sym_NULL] = ACTIONS(3648), + [anon_sym_nullptr] = ACTIONS(3648), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3648), + [anon_sym_decltype] = ACTIONS(3648), + [anon_sym_template] = ACTIONS(3648), + [anon_sym_try] = ACTIONS(3648), + [anon_sym_delete] = ACTIONS(3648), + [anon_sym_throw] = ACTIONS(3648), + [anon_sym_co_return] = ACTIONS(3648), + [anon_sym_co_yield] = ACTIONS(3648), + [anon_sym_R_DQUOTE] = ACTIONS(3650), + [anon_sym_LR_DQUOTE] = ACTIONS(3650), + [anon_sym_uR_DQUOTE] = ACTIONS(3650), + [anon_sym_UR_DQUOTE] = ACTIONS(3650), + [anon_sym_u8R_DQUOTE] = ACTIONS(3650), + [anon_sym_co_await] = ACTIONS(3648), + [anon_sym_new] = ACTIONS(3648), + [anon_sym_requires] = ACTIONS(3648), + [anon_sym_CARET_CARET] = ACTIONS(3650), + [anon_sym_LBRACK_COLON] = ACTIONS(3650), + [sym_this] = ACTIONS(3648), + }, + [STATE(1240)] = { + [sym_identifier] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), + }, + [STATE(1241)] = { + [sym_identifier] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_BANG] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_DASH] = ACTIONS(3660), + [anon_sym_PLUS] = ACTIONS(3660), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3662), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym_LBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_if] = ACTIONS(3660), + [anon_sym_else] = ACTIONS(3660), + [anon_sym_switch] = ACTIONS(3660), + [anon_sym_while] = ACTIONS(3660), + [anon_sym_do] = ACTIONS(3660), + [anon_sym_for] = ACTIONS(3660), + [anon_sym_return] = ACTIONS(3660), + [anon_sym_break] = ACTIONS(3660), + [anon_sym_continue] = ACTIONS(3660), + [anon_sym_goto] = ACTIONS(3660), + [anon_sym___try] = ACTIONS(3660), + [anon_sym___leave] = ACTIONS(3660), + [anon_sym_not] = ACTIONS(3660), + [anon_sym_compl] = ACTIONS(3660), + [anon_sym_DASH_DASH] = ACTIONS(3662), + [anon_sym_PLUS_PLUS] = ACTIONS(3662), + [anon_sym_sizeof] = ACTIONS(3660), + [anon_sym___alignof__] = ACTIONS(3660), + [anon_sym___alignof] = ACTIONS(3660), + [anon_sym__alignof] = ACTIONS(3660), + [anon_sym_alignof] = ACTIONS(3660), + [anon_sym__Alignof] = ACTIONS(3660), + [anon_sym_offsetof] = ACTIONS(3660), + [anon_sym__Generic] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [anon_sym_asm] = ACTIONS(3660), + [anon_sym___asm__] = ACTIONS(3660), + [anon_sym___asm] = ACTIONS(3660), + [sym_number_literal] = ACTIONS(3662), + [anon_sym_L_SQUOTE] = ACTIONS(3662), + [anon_sym_u_SQUOTE] = ACTIONS(3662), + [anon_sym_U_SQUOTE] = ACTIONS(3662), + [anon_sym_u8_SQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3662), + [anon_sym_L_DQUOTE] = ACTIONS(3662), + [anon_sym_u_DQUOTE] = ACTIONS(3662), + [anon_sym_U_DQUOTE] = ACTIONS(3662), + [anon_sym_u8_DQUOTE] = ACTIONS(3662), + [anon_sym_DQUOTE] = ACTIONS(3662), + [sym_true] = ACTIONS(3660), + [sym_false] = ACTIONS(3660), + [anon_sym_NULL] = ACTIONS(3660), + [anon_sym_nullptr] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_try] = ACTIONS(3660), + [anon_sym_delete] = ACTIONS(3660), + [anon_sym_throw] = ACTIONS(3660), + [anon_sym_co_return] = ACTIONS(3660), + [anon_sym_co_yield] = ACTIONS(3660), + [anon_sym_R_DQUOTE] = ACTIONS(3662), + [anon_sym_LR_DQUOTE] = ACTIONS(3662), + [anon_sym_uR_DQUOTE] = ACTIONS(3662), + [anon_sym_UR_DQUOTE] = ACTIONS(3662), + [anon_sym_u8R_DQUOTE] = ACTIONS(3662), + [anon_sym_co_await] = ACTIONS(3660), + [anon_sym_new] = ACTIONS(3660), + [anon_sym_requires] = ACTIONS(3660), + [anon_sym_CARET_CARET] = ACTIONS(3662), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + [sym_this] = ACTIONS(3660), + }, + [STATE(1242)] = { + [sym_identifier] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_BANG] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_DASH] = ACTIONS(3668), + [anon_sym_PLUS] = ACTIONS(3668), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3670), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym_LBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_if] = ACTIONS(3668), + [anon_sym_else] = ACTIONS(3668), + [anon_sym_switch] = ACTIONS(3668), + [anon_sym_while] = ACTIONS(3668), + [anon_sym_do] = ACTIONS(3668), + [anon_sym_for] = ACTIONS(3668), + [anon_sym_return] = ACTIONS(3668), + [anon_sym_break] = ACTIONS(3668), + [anon_sym_continue] = ACTIONS(3668), + [anon_sym_goto] = ACTIONS(3668), + [anon_sym___try] = ACTIONS(3668), + [anon_sym___leave] = ACTIONS(3668), + [anon_sym_not] = ACTIONS(3668), + [anon_sym_compl] = ACTIONS(3668), + [anon_sym_DASH_DASH] = ACTIONS(3670), + [anon_sym_PLUS_PLUS] = ACTIONS(3670), + [anon_sym_sizeof] = ACTIONS(3668), + [anon_sym___alignof__] = ACTIONS(3668), + [anon_sym___alignof] = ACTIONS(3668), + [anon_sym__alignof] = ACTIONS(3668), + [anon_sym_alignof] = ACTIONS(3668), + [anon_sym__Alignof] = ACTIONS(3668), + [anon_sym_offsetof] = ACTIONS(3668), + [anon_sym__Generic] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [anon_sym_asm] = ACTIONS(3668), + [anon_sym___asm__] = ACTIONS(3668), + [anon_sym___asm] = ACTIONS(3668), + [sym_number_literal] = ACTIONS(3670), + [anon_sym_L_SQUOTE] = ACTIONS(3670), + [anon_sym_u_SQUOTE] = ACTIONS(3670), + [anon_sym_U_SQUOTE] = ACTIONS(3670), + [anon_sym_u8_SQUOTE] = ACTIONS(3670), + [anon_sym_SQUOTE] = ACTIONS(3670), + [anon_sym_L_DQUOTE] = ACTIONS(3670), + [anon_sym_u_DQUOTE] = ACTIONS(3670), + [anon_sym_U_DQUOTE] = ACTIONS(3670), + [anon_sym_u8_DQUOTE] = ACTIONS(3670), + [anon_sym_DQUOTE] = ACTIONS(3670), + [sym_true] = ACTIONS(3668), + [sym_false] = ACTIONS(3668), + [anon_sym_NULL] = ACTIONS(3668), + [anon_sym_nullptr] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_try] = ACTIONS(3668), + [anon_sym_delete] = ACTIONS(3668), + [anon_sym_throw] = ACTIONS(3668), + [anon_sym_co_return] = ACTIONS(3668), + [anon_sym_co_yield] = ACTIONS(3668), + [anon_sym_R_DQUOTE] = ACTIONS(3670), + [anon_sym_LR_DQUOTE] = ACTIONS(3670), + [anon_sym_uR_DQUOTE] = ACTIONS(3670), + [anon_sym_UR_DQUOTE] = ACTIONS(3670), + [anon_sym_u8R_DQUOTE] = ACTIONS(3670), + [anon_sym_co_await] = ACTIONS(3668), + [anon_sym_new] = ACTIONS(3668), + [anon_sym_requires] = ACTIONS(3668), + [anon_sym_CARET_CARET] = ACTIONS(3670), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + [sym_this] = ACTIONS(3668), + }, + [STATE(1243)] = { + [sym_identifier] = ACTIONS(3656), + [anon_sym_LPAREN2] = ACTIONS(3658), + [anon_sym_BANG] = ACTIONS(3658), + [anon_sym_TILDE] = ACTIONS(3658), + [anon_sym_DASH] = ACTIONS(3656), + [anon_sym_PLUS] = ACTIONS(3656), + [anon_sym_STAR] = ACTIONS(3658), + [anon_sym_AMP] = ACTIONS(3658), + [anon_sym_SEMI] = ACTIONS(3658), + [anon_sym___extension__] = ACTIONS(3656), + [anon_sym_typedef] = ACTIONS(3656), + [anon_sym_virtual] = ACTIONS(3656), + [anon_sym_extern] = ACTIONS(3656), + [anon_sym___attribute__] = ACTIONS(3656), + [anon_sym___attribute] = ACTIONS(3656), + [anon_sym_COLON_COLON] = ACTIONS(3658), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3658), + [anon_sym___declspec] = ACTIONS(3656), + [anon_sym_LBRACE] = ACTIONS(3658), + [anon_sym_signed] = ACTIONS(3656), + [anon_sym_unsigned] = ACTIONS(3656), + [anon_sym_long] = ACTIONS(3656), + [anon_sym_short] = ACTIONS(3656), + [anon_sym_LBRACK] = ACTIONS(3656), + [anon_sym_static] = ACTIONS(3656), + [anon_sym_register] = ACTIONS(3656), + [anon_sym_inline] = ACTIONS(3656), + [anon_sym___inline] = ACTIONS(3656), + [anon_sym___inline__] = ACTIONS(3656), + [anon_sym___forceinline] = ACTIONS(3656), + [anon_sym_thread_local] = ACTIONS(3656), + [anon_sym___thread] = ACTIONS(3656), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_constexpr] = ACTIONS(3656), + [anon_sym_volatile] = ACTIONS(3656), + [anon_sym_restrict] = ACTIONS(3656), + [anon_sym___restrict__] = ACTIONS(3656), + [anon_sym__Atomic] = ACTIONS(3656), + [anon_sym__Noreturn] = ACTIONS(3656), + [anon_sym_noreturn] = ACTIONS(3656), + [anon_sym__Nonnull] = ACTIONS(3656), + [anon_sym_mutable] = ACTIONS(3656), + [anon_sym_constinit] = ACTIONS(3656), + [anon_sym_consteval] = ACTIONS(3656), + [anon_sym_alignas] = ACTIONS(3656), + [anon_sym__Alignas] = ACTIONS(3656), + [sym_primitive_type] = ACTIONS(3656), + [anon_sym_enum] = ACTIONS(3656), + [anon_sym_class] = ACTIONS(3656), + [anon_sym_struct] = ACTIONS(3656), + [anon_sym_union] = ACTIONS(3656), + [anon_sym_if] = ACTIONS(3656), + [anon_sym_else] = ACTIONS(3656), + [anon_sym_switch] = ACTIONS(3656), + [anon_sym_while] = ACTIONS(3656), + [anon_sym_do] = ACTIONS(3656), + [anon_sym_for] = ACTIONS(3656), + [anon_sym_return] = ACTIONS(3656), + [anon_sym_break] = ACTIONS(3656), + [anon_sym_continue] = ACTIONS(3656), + [anon_sym_goto] = ACTIONS(3656), + [anon_sym___try] = ACTIONS(3656), + [anon_sym___leave] = ACTIONS(3656), + [anon_sym_not] = ACTIONS(3656), + [anon_sym_compl] = ACTIONS(3656), + [anon_sym_DASH_DASH] = ACTIONS(3658), + [anon_sym_PLUS_PLUS] = ACTIONS(3658), + [anon_sym_sizeof] = ACTIONS(3656), + [anon_sym___alignof__] = ACTIONS(3656), + [anon_sym___alignof] = ACTIONS(3656), + [anon_sym__alignof] = ACTIONS(3656), + [anon_sym_alignof] = ACTIONS(3656), + [anon_sym__Alignof] = ACTIONS(3656), + [anon_sym_offsetof] = ACTIONS(3656), + [anon_sym__Generic] = ACTIONS(3656), + [anon_sym_typename] = ACTIONS(3656), + [anon_sym_asm] = ACTIONS(3656), + [anon_sym___asm__] = ACTIONS(3656), + [anon_sym___asm] = ACTIONS(3656), + [sym_number_literal] = ACTIONS(3658), + [anon_sym_L_SQUOTE] = ACTIONS(3658), + [anon_sym_u_SQUOTE] = ACTIONS(3658), + [anon_sym_U_SQUOTE] = ACTIONS(3658), + [anon_sym_u8_SQUOTE] = ACTIONS(3658), + [anon_sym_SQUOTE] = ACTIONS(3658), + [anon_sym_L_DQUOTE] = ACTIONS(3658), + [anon_sym_u_DQUOTE] = ACTIONS(3658), + [anon_sym_U_DQUOTE] = ACTIONS(3658), + [anon_sym_u8_DQUOTE] = ACTIONS(3658), + [anon_sym_DQUOTE] = ACTIONS(3658), + [sym_true] = ACTIONS(3656), + [sym_false] = ACTIONS(3656), + [anon_sym_NULL] = ACTIONS(3656), + [anon_sym_nullptr] = ACTIONS(3656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3656), + [anon_sym_decltype] = ACTIONS(3656), + [anon_sym_template] = ACTIONS(3656), + [anon_sym_try] = ACTIONS(3656), + [anon_sym_delete] = ACTIONS(3656), + [anon_sym_throw] = ACTIONS(3656), + [anon_sym_co_return] = ACTIONS(3656), + [anon_sym_co_yield] = ACTIONS(3656), + [anon_sym_R_DQUOTE] = ACTIONS(3658), + [anon_sym_LR_DQUOTE] = ACTIONS(3658), + [anon_sym_uR_DQUOTE] = ACTIONS(3658), + [anon_sym_UR_DQUOTE] = ACTIONS(3658), + [anon_sym_u8R_DQUOTE] = ACTIONS(3658), + [anon_sym_co_await] = ACTIONS(3656), + [anon_sym_new] = ACTIONS(3656), + [anon_sym_requires] = ACTIONS(3656), + [anon_sym_CARET_CARET] = ACTIONS(3658), + [anon_sym_LBRACK_COLON] = ACTIONS(3658), + [sym_this] = ACTIONS(3656), + }, + [STATE(1244)] = { + [sym_identifier] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), + }, + [STATE(1245)] = { + [sym_identifier] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_BANG] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_DASH] = ACTIONS(3664), + [anon_sym_PLUS] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3666), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym_LBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_if] = ACTIONS(3664), + [anon_sym_else] = ACTIONS(3664), + [anon_sym_switch] = ACTIONS(3664), + [anon_sym_while] = ACTIONS(3664), + [anon_sym_do] = ACTIONS(3664), + [anon_sym_for] = ACTIONS(3664), + [anon_sym_return] = ACTIONS(3664), + [anon_sym_break] = ACTIONS(3664), + [anon_sym_continue] = ACTIONS(3664), + [anon_sym_goto] = ACTIONS(3664), + [anon_sym___try] = ACTIONS(3664), + [anon_sym___leave] = ACTIONS(3664), + [anon_sym_not] = ACTIONS(3664), + [anon_sym_compl] = ACTIONS(3664), + [anon_sym_DASH_DASH] = ACTIONS(3666), + [anon_sym_PLUS_PLUS] = ACTIONS(3666), + [anon_sym_sizeof] = ACTIONS(3664), + [anon_sym___alignof__] = ACTIONS(3664), + [anon_sym___alignof] = ACTIONS(3664), + [anon_sym__alignof] = ACTIONS(3664), + [anon_sym_alignof] = ACTIONS(3664), + [anon_sym__Alignof] = ACTIONS(3664), + [anon_sym_offsetof] = ACTIONS(3664), + [anon_sym__Generic] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [anon_sym_asm] = ACTIONS(3664), + [anon_sym___asm__] = ACTIONS(3664), + [anon_sym___asm] = ACTIONS(3664), + [sym_number_literal] = ACTIONS(3666), + [anon_sym_L_SQUOTE] = ACTIONS(3666), + [anon_sym_u_SQUOTE] = ACTIONS(3666), + [anon_sym_U_SQUOTE] = ACTIONS(3666), + [anon_sym_u8_SQUOTE] = ACTIONS(3666), + [anon_sym_SQUOTE] = ACTIONS(3666), + [anon_sym_L_DQUOTE] = ACTIONS(3666), + [anon_sym_u_DQUOTE] = ACTIONS(3666), + [anon_sym_U_DQUOTE] = ACTIONS(3666), + [anon_sym_u8_DQUOTE] = ACTIONS(3666), + [anon_sym_DQUOTE] = ACTIONS(3666), + [sym_true] = ACTIONS(3664), + [sym_false] = ACTIONS(3664), + [anon_sym_NULL] = ACTIONS(3664), + [anon_sym_nullptr] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_try] = ACTIONS(3664), + [anon_sym_delete] = ACTIONS(3664), + [anon_sym_throw] = ACTIONS(3664), + [anon_sym_co_return] = ACTIONS(3664), + [anon_sym_co_yield] = ACTIONS(3664), + [anon_sym_R_DQUOTE] = ACTIONS(3666), + [anon_sym_LR_DQUOTE] = ACTIONS(3666), + [anon_sym_uR_DQUOTE] = ACTIONS(3666), + [anon_sym_UR_DQUOTE] = ACTIONS(3666), + [anon_sym_u8R_DQUOTE] = ACTIONS(3666), + [anon_sym_co_await] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3664), + [anon_sym_requires] = ACTIONS(3664), + [anon_sym_CARET_CARET] = ACTIONS(3666), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + [sym_this] = ACTIONS(3664), + }, + [STATE(1246)] = { + [sym_identifier] = ACTIONS(3616), + [anon_sym_LPAREN2] = ACTIONS(3618), + [anon_sym_BANG] = ACTIONS(3618), + [anon_sym_TILDE] = ACTIONS(3618), + [anon_sym_DASH] = ACTIONS(3616), + [anon_sym_PLUS] = ACTIONS(3616), + [anon_sym_STAR] = ACTIONS(3618), + [anon_sym_AMP] = ACTIONS(3618), + [anon_sym_SEMI] = ACTIONS(3618), + [anon_sym___extension__] = ACTIONS(3616), + [anon_sym_typedef] = ACTIONS(3616), + [anon_sym_virtual] = ACTIONS(3616), + [anon_sym_extern] = ACTIONS(3616), + [anon_sym___attribute__] = ACTIONS(3616), + [anon_sym___attribute] = ACTIONS(3616), + [anon_sym_COLON_COLON] = ACTIONS(3618), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3618), + [anon_sym___declspec] = ACTIONS(3616), + [anon_sym_LBRACE] = ACTIONS(3618), + [anon_sym_signed] = ACTIONS(3616), + [anon_sym_unsigned] = ACTIONS(3616), + [anon_sym_long] = ACTIONS(3616), + [anon_sym_short] = ACTIONS(3616), + [anon_sym_LBRACK] = ACTIONS(3616), + [anon_sym_static] = ACTIONS(3616), + [anon_sym_register] = ACTIONS(3616), + [anon_sym_inline] = ACTIONS(3616), + [anon_sym___inline] = ACTIONS(3616), + [anon_sym___inline__] = ACTIONS(3616), + [anon_sym___forceinline] = ACTIONS(3616), + [anon_sym_thread_local] = ACTIONS(3616), + [anon_sym___thread] = ACTIONS(3616), + [anon_sym_const] = ACTIONS(3616), + [anon_sym_constexpr] = ACTIONS(3616), + [anon_sym_volatile] = ACTIONS(3616), + [anon_sym_restrict] = ACTIONS(3616), + [anon_sym___restrict__] = ACTIONS(3616), + [anon_sym__Atomic] = ACTIONS(3616), + [anon_sym__Noreturn] = ACTIONS(3616), + [anon_sym_noreturn] = ACTIONS(3616), + [anon_sym__Nonnull] = ACTIONS(3616), + [anon_sym_mutable] = ACTIONS(3616), + [anon_sym_constinit] = ACTIONS(3616), + [anon_sym_consteval] = ACTIONS(3616), + [anon_sym_alignas] = ACTIONS(3616), + [anon_sym__Alignas] = ACTIONS(3616), + [sym_primitive_type] = ACTIONS(3616), + [anon_sym_enum] = ACTIONS(3616), + [anon_sym_class] = ACTIONS(3616), + [anon_sym_struct] = ACTIONS(3616), + [anon_sym_union] = ACTIONS(3616), + [anon_sym_if] = ACTIONS(3616), + [anon_sym_else] = ACTIONS(3616), + [anon_sym_switch] = ACTIONS(3616), + [anon_sym_while] = ACTIONS(3616), + [anon_sym_do] = ACTIONS(3616), + [anon_sym_for] = ACTIONS(3616), + [anon_sym_return] = ACTIONS(3616), + [anon_sym_break] = ACTIONS(3616), + [anon_sym_continue] = ACTIONS(3616), + [anon_sym_goto] = ACTIONS(3616), + [anon_sym___try] = ACTIONS(3616), + [anon_sym___leave] = ACTIONS(3616), + [anon_sym_not] = ACTIONS(3616), + [anon_sym_compl] = ACTIONS(3616), + [anon_sym_DASH_DASH] = ACTIONS(3618), + [anon_sym_PLUS_PLUS] = ACTIONS(3618), + [anon_sym_sizeof] = ACTIONS(3616), + [anon_sym___alignof__] = ACTIONS(3616), + [anon_sym___alignof] = ACTIONS(3616), + [anon_sym__alignof] = ACTIONS(3616), + [anon_sym_alignof] = ACTIONS(3616), + [anon_sym__Alignof] = ACTIONS(3616), + [anon_sym_offsetof] = ACTIONS(3616), + [anon_sym__Generic] = ACTIONS(3616), + [anon_sym_typename] = ACTIONS(3616), + [anon_sym_asm] = ACTIONS(3616), + [anon_sym___asm__] = ACTIONS(3616), + [anon_sym___asm] = ACTIONS(3616), + [sym_number_literal] = ACTIONS(3618), + [anon_sym_L_SQUOTE] = ACTIONS(3618), + [anon_sym_u_SQUOTE] = ACTIONS(3618), + [anon_sym_U_SQUOTE] = ACTIONS(3618), + [anon_sym_u8_SQUOTE] = ACTIONS(3618), + [anon_sym_SQUOTE] = ACTIONS(3618), + [anon_sym_L_DQUOTE] = ACTIONS(3618), + [anon_sym_u_DQUOTE] = ACTIONS(3618), + [anon_sym_U_DQUOTE] = ACTIONS(3618), + [anon_sym_u8_DQUOTE] = ACTIONS(3618), + [anon_sym_DQUOTE] = ACTIONS(3618), + [sym_true] = ACTIONS(3616), + [sym_false] = ACTIONS(3616), + [anon_sym_NULL] = ACTIONS(3616), + [anon_sym_nullptr] = ACTIONS(3616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3616), + [anon_sym_decltype] = ACTIONS(3616), + [anon_sym_template] = ACTIONS(3616), + [anon_sym_try] = ACTIONS(3616), + [anon_sym_delete] = ACTIONS(3616), + [anon_sym_throw] = ACTIONS(3616), + [anon_sym_co_return] = ACTIONS(3616), + [anon_sym_co_yield] = ACTIONS(3616), + [anon_sym_R_DQUOTE] = ACTIONS(3618), + [anon_sym_LR_DQUOTE] = ACTIONS(3618), + [anon_sym_uR_DQUOTE] = ACTIONS(3618), + [anon_sym_UR_DQUOTE] = ACTIONS(3618), + [anon_sym_u8R_DQUOTE] = ACTIONS(3618), + [anon_sym_co_await] = ACTIONS(3616), + [anon_sym_new] = ACTIONS(3616), + [anon_sym_requires] = ACTIONS(3616), + [anon_sym_CARET_CARET] = ACTIONS(3618), + [anon_sym_LBRACK_COLON] = ACTIONS(3618), + [sym_this] = ACTIONS(3616), + }, + [STATE(1247)] = { + [sym_identifier] = ACTIONS(3490), + [anon_sym_LPAREN2] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_STAR] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym___extension__] = ACTIONS(3490), + [anon_sym_typedef] = ACTIONS(3490), + [anon_sym_virtual] = ACTIONS(3490), + [anon_sym_extern] = ACTIONS(3490), + [anon_sym___attribute__] = ACTIONS(3490), + [anon_sym___attribute] = ACTIONS(3490), + [anon_sym_COLON_COLON] = ACTIONS(3492), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3492), + [anon_sym___declspec] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_signed] = ACTIONS(3490), + [anon_sym_unsigned] = ACTIONS(3490), + [anon_sym_long] = ACTIONS(3490), + [anon_sym_short] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_register] = ACTIONS(3490), + [anon_sym_inline] = ACTIONS(3490), + [anon_sym___inline] = ACTIONS(3490), + [anon_sym___inline__] = ACTIONS(3490), + [anon_sym___forceinline] = ACTIONS(3490), + [anon_sym_thread_local] = ACTIONS(3490), + [anon_sym___thread] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_constexpr] = ACTIONS(3490), + [anon_sym_volatile] = ACTIONS(3490), + [anon_sym_restrict] = ACTIONS(3490), + [anon_sym___restrict__] = ACTIONS(3490), + [anon_sym__Atomic] = ACTIONS(3490), + [anon_sym__Noreturn] = ACTIONS(3490), + [anon_sym_noreturn] = ACTIONS(3490), + [anon_sym__Nonnull] = ACTIONS(3490), + [anon_sym_mutable] = ACTIONS(3490), + [anon_sym_constinit] = ACTIONS(3490), + [anon_sym_consteval] = ACTIONS(3490), + [anon_sym_alignas] = ACTIONS(3490), + [anon_sym__Alignas] = ACTIONS(3490), + [sym_primitive_type] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_struct] = ACTIONS(3490), + [anon_sym_union] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_goto] = ACTIONS(3490), + [anon_sym___try] = ACTIONS(3490), + [anon_sym___leave] = ACTIONS(3490), + [anon_sym_not] = ACTIONS(3490), + [anon_sym_compl] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_sizeof] = ACTIONS(3490), + [anon_sym___alignof__] = ACTIONS(3490), + [anon_sym___alignof] = ACTIONS(3490), + [anon_sym__alignof] = ACTIONS(3490), + [anon_sym_alignof] = ACTIONS(3490), + [anon_sym__Alignof] = ACTIONS(3490), + [anon_sym_offsetof] = ACTIONS(3490), + [anon_sym__Generic] = ACTIONS(3490), + [anon_sym_typename] = ACTIONS(3490), + [anon_sym_asm] = ACTIONS(3490), + [anon_sym___asm__] = ACTIONS(3490), + [anon_sym___asm] = ACTIONS(3490), + [sym_number_literal] = ACTIONS(3492), + [anon_sym_L_SQUOTE] = ACTIONS(3492), + [anon_sym_u_SQUOTE] = ACTIONS(3492), + [anon_sym_U_SQUOTE] = ACTIONS(3492), + [anon_sym_u8_SQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [anon_sym_L_DQUOTE] = ACTIONS(3492), + [anon_sym_u_DQUOTE] = ACTIONS(3492), + [anon_sym_U_DQUOTE] = ACTIONS(3492), + [anon_sym_u8_DQUOTE] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [anon_sym_NULL] = ACTIONS(3490), + [anon_sym_nullptr] = ACTIONS(3490), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3490), + [anon_sym_decltype] = ACTIONS(3490), + [anon_sym_template] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_co_return] = ACTIONS(3490), + [anon_sym_co_yield] = ACTIONS(3490), + [anon_sym_R_DQUOTE] = ACTIONS(3492), + [anon_sym_LR_DQUOTE] = ACTIONS(3492), + [anon_sym_uR_DQUOTE] = ACTIONS(3492), + [anon_sym_UR_DQUOTE] = ACTIONS(3492), + [anon_sym_u8R_DQUOTE] = ACTIONS(3492), + [anon_sym_co_await] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_requires] = ACTIONS(3490), + [anon_sym_CARET_CARET] = ACTIONS(3492), + [anon_sym_LBRACK_COLON] = ACTIONS(3492), + [sym_this] = ACTIONS(3490), + }, + [STATE(1248)] = { + [sym_identifier] = ACTIONS(3494), + [anon_sym_LPAREN2] = ACTIONS(3496), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3496), + [anon_sym_AMP] = ACTIONS(3496), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym___extension__] = ACTIONS(3494), + [anon_sym_typedef] = ACTIONS(3494), + [anon_sym_virtual] = ACTIONS(3494), + [anon_sym_extern] = ACTIONS(3494), + [anon_sym___attribute__] = ACTIONS(3494), + [anon_sym___attribute] = ACTIONS(3494), + [anon_sym_COLON_COLON] = ACTIONS(3496), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3496), + [anon_sym___declspec] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_signed] = ACTIONS(3494), + [anon_sym_unsigned] = ACTIONS(3494), + [anon_sym_long] = ACTIONS(3494), + [anon_sym_short] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_register] = ACTIONS(3494), + [anon_sym_inline] = ACTIONS(3494), + [anon_sym___inline] = ACTIONS(3494), + [anon_sym___inline__] = ACTIONS(3494), + [anon_sym___forceinline] = ACTIONS(3494), + [anon_sym_thread_local] = ACTIONS(3494), + [anon_sym___thread] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_constexpr] = ACTIONS(3494), + [anon_sym_volatile] = ACTIONS(3494), + [anon_sym_restrict] = ACTIONS(3494), + [anon_sym___restrict__] = ACTIONS(3494), + [anon_sym__Atomic] = ACTIONS(3494), + [anon_sym__Noreturn] = ACTIONS(3494), + [anon_sym_noreturn] = ACTIONS(3494), + [anon_sym__Nonnull] = ACTIONS(3494), + [anon_sym_mutable] = ACTIONS(3494), + [anon_sym_constinit] = ACTIONS(3494), + [anon_sym_consteval] = ACTIONS(3494), + [anon_sym_alignas] = ACTIONS(3494), + [anon_sym__Alignas] = ACTIONS(3494), + [sym_primitive_type] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_struct] = ACTIONS(3494), + [anon_sym_union] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_else] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_goto] = ACTIONS(3494), + [anon_sym___try] = ACTIONS(3494), + [anon_sym___leave] = ACTIONS(3494), + [anon_sym_not] = ACTIONS(3494), + [anon_sym_compl] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_sizeof] = ACTIONS(3494), + [anon_sym___alignof__] = ACTIONS(3494), + [anon_sym___alignof] = ACTIONS(3494), + [anon_sym__alignof] = ACTIONS(3494), + [anon_sym_alignof] = ACTIONS(3494), + [anon_sym__Alignof] = ACTIONS(3494), + [anon_sym_offsetof] = ACTIONS(3494), + [anon_sym__Generic] = ACTIONS(3494), + [anon_sym_typename] = ACTIONS(3494), + [anon_sym_asm] = ACTIONS(3494), + [anon_sym___asm__] = ACTIONS(3494), + [anon_sym___asm] = ACTIONS(3494), + [sym_number_literal] = ACTIONS(3496), + [anon_sym_L_SQUOTE] = ACTIONS(3496), + [anon_sym_u_SQUOTE] = ACTIONS(3496), + [anon_sym_U_SQUOTE] = ACTIONS(3496), + [anon_sym_u8_SQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [anon_sym_L_DQUOTE] = ACTIONS(3496), + [anon_sym_u_DQUOTE] = ACTIONS(3496), + [anon_sym_U_DQUOTE] = ACTIONS(3496), + [anon_sym_u8_DQUOTE] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [anon_sym_NULL] = ACTIONS(3494), + [anon_sym_nullptr] = ACTIONS(3494), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3494), + [anon_sym_decltype] = ACTIONS(3494), + [anon_sym_template] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_co_return] = ACTIONS(3494), + [anon_sym_co_yield] = ACTIONS(3494), + [anon_sym_R_DQUOTE] = ACTIONS(3496), + [anon_sym_LR_DQUOTE] = ACTIONS(3496), + [anon_sym_uR_DQUOTE] = ACTIONS(3496), + [anon_sym_UR_DQUOTE] = ACTIONS(3496), + [anon_sym_u8R_DQUOTE] = ACTIONS(3496), + [anon_sym_co_await] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_requires] = ACTIONS(3494), + [anon_sym_CARET_CARET] = ACTIONS(3496), + [anon_sym_LBRACK_COLON] = ACTIONS(3496), + [sym_this] = ACTIONS(3494), + }, + [STATE(1249)] = { + [sym_identifier] = ACTIONS(3498), + [anon_sym_LPAREN2] = ACTIONS(3500), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_STAR] = ACTIONS(3500), + [anon_sym_AMP] = ACTIONS(3500), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym___extension__] = ACTIONS(3498), + [anon_sym_typedef] = ACTIONS(3498), + [anon_sym_virtual] = ACTIONS(3498), + [anon_sym_extern] = ACTIONS(3498), + [anon_sym___attribute__] = ACTIONS(3498), + [anon_sym___attribute] = ACTIONS(3498), + [anon_sym_COLON_COLON] = ACTIONS(3500), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3500), + [anon_sym___declspec] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_signed] = ACTIONS(3498), + [anon_sym_unsigned] = ACTIONS(3498), + [anon_sym_long] = ACTIONS(3498), + [anon_sym_short] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3498), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_register] = ACTIONS(3498), + [anon_sym_inline] = ACTIONS(3498), + [anon_sym___inline] = ACTIONS(3498), + [anon_sym___inline__] = ACTIONS(3498), + [anon_sym___forceinline] = ACTIONS(3498), + [anon_sym_thread_local] = ACTIONS(3498), + [anon_sym___thread] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_constexpr] = ACTIONS(3498), + [anon_sym_volatile] = ACTIONS(3498), + [anon_sym_restrict] = ACTIONS(3498), + [anon_sym___restrict__] = ACTIONS(3498), + [anon_sym__Atomic] = ACTIONS(3498), + [anon_sym__Noreturn] = ACTIONS(3498), + [anon_sym_noreturn] = ACTIONS(3498), + [anon_sym__Nonnull] = ACTIONS(3498), + [anon_sym_mutable] = ACTIONS(3498), + [anon_sym_constinit] = ACTIONS(3498), + [anon_sym_consteval] = ACTIONS(3498), + [anon_sym_alignas] = ACTIONS(3498), + [anon_sym__Alignas] = ACTIONS(3498), + [sym_primitive_type] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_struct] = ACTIONS(3498), + [anon_sym_union] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_else] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_goto] = ACTIONS(3498), + [anon_sym___try] = ACTIONS(3498), + [anon_sym___leave] = ACTIONS(3498), + [anon_sym_not] = ACTIONS(3498), + [anon_sym_compl] = ACTIONS(3498), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_sizeof] = ACTIONS(3498), + [anon_sym___alignof__] = ACTIONS(3498), + [anon_sym___alignof] = ACTIONS(3498), + [anon_sym__alignof] = ACTIONS(3498), + [anon_sym_alignof] = ACTIONS(3498), + [anon_sym__Alignof] = ACTIONS(3498), + [anon_sym_offsetof] = ACTIONS(3498), + [anon_sym__Generic] = ACTIONS(3498), + [anon_sym_typename] = ACTIONS(3498), + [anon_sym_asm] = ACTIONS(3498), + [anon_sym___asm__] = ACTIONS(3498), + [anon_sym___asm] = ACTIONS(3498), + [sym_number_literal] = ACTIONS(3500), + [anon_sym_L_SQUOTE] = ACTIONS(3500), + [anon_sym_u_SQUOTE] = ACTIONS(3500), + [anon_sym_U_SQUOTE] = ACTIONS(3500), + [anon_sym_u8_SQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [anon_sym_L_DQUOTE] = ACTIONS(3500), + [anon_sym_u_DQUOTE] = ACTIONS(3500), + [anon_sym_U_DQUOTE] = ACTIONS(3500), + [anon_sym_u8_DQUOTE] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [anon_sym_NULL] = ACTIONS(3498), + [anon_sym_nullptr] = ACTIONS(3498), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3498), + [anon_sym_decltype] = ACTIONS(3498), + [anon_sym_template] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_co_return] = ACTIONS(3498), + [anon_sym_co_yield] = ACTIONS(3498), + [anon_sym_R_DQUOTE] = ACTIONS(3500), + [anon_sym_LR_DQUOTE] = ACTIONS(3500), + [anon_sym_uR_DQUOTE] = ACTIONS(3500), + [anon_sym_UR_DQUOTE] = ACTIONS(3500), + [anon_sym_u8R_DQUOTE] = ACTIONS(3500), + [anon_sym_co_await] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_requires] = ACTIONS(3498), + [anon_sym_CARET_CARET] = ACTIONS(3500), + [anon_sym_LBRACK_COLON] = ACTIONS(3500), + [sym_this] = ACTIONS(3498), + }, + [STATE(1250)] = { + [sym_identifier] = ACTIONS(3486), + [anon_sym_LPAREN2] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_STAR] = ACTIONS(3488), + [anon_sym_AMP] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym___extension__] = ACTIONS(3486), + [anon_sym_typedef] = ACTIONS(3486), + [anon_sym_virtual] = ACTIONS(3486), + [anon_sym_extern] = ACTIONS(3486), + [anon_sym___attribute__] = ACTIONS(3486), + [anon_sym___attribute] = ACTIONS(3486), + [anon_sym_COLON_COLON] = ACTIONS(3488), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3488), + [anon_sym___declspec] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_signed] = ACTIONS(3486), + [anon_sym_unsigned] = ACTIONS(3486), + [anon_sym_long] = ACTIONS(3486), + [anon_sym_short] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_register] = ACTIONS(3486), + [anon_sym_inline] = ACTIONS(3486), + [anon_sym___inline] = ACTIONS(3486), + [anon_sym___inline__] = ACTIONS(3486), + [anon_sym___forceinline] = ACTIONS(3486), + [anon_sym_thread_local] = ACTIONS(3486), + [anon_sym___thread] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_constexpr] = ACTIONS(3486), + [anon_sym_volatile] = ACTIONS(3486), + [anon_sym_restrict] = ACTIONS(3486), + [anon_sym___restrict__] = ACTIONS(3486), + [anon_sym__Atomic] = ACTIONS(3486), + [anon_sym__Noreturn] = ACTIONS(3486), + [anon_sym_noreturn] = ACTIONS(3486), + [anon_sym__Nonnull] = ACTIONS(3486), + [anon_sym_mutable] = ACTIONS(3486), + [anon_sym_constinit] = ACTIONS(3486), + [anon_sym_consteval] = ACTIONS(3486), + [anon_sym_alignas] = ACTIONS(3486), + [anon_sym__Alignas] = ACTIONS(3486), + [sym_primitive_type] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_struct] = ACTIONS(3486), + [anon_sym_union] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_goto] = ACTIONS(3486), + [anon_sym___try] = ACTIONS(3486), + [anon_sym___leave] = ACTIONS(3486), + [anon_sym_not] = ACTIONS(3486), + [anon_sym_compl] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_sizeof] = ACTIONS(3486), + [anon_sym___alignof__] = ACTIONS(3486), + [anon_sym___alignof] = ACTIONS(3486), + [anon_sym__alignof] = ACTIONS(3486), + [anon_sym_alignof] = ACTIONS(3486), + [anon_sym__Alignof] = ACTIONS(3486), + [anon_sym_offsetof] = ACTIONS(3486), + [anon_sym__Generic] = ACTIONS(3486), + [anon_sym_typename] = ACTIONS(3486), + [anon_sym_asm] = ACTIONS(3486), + [anon_sym___asm__] = ACTIONS(3486), + [anon_sym___asm] = ACTIONS(3486), + [sym_number_literal] = ACTIONS(3488), + [anon_sym_L_SQUOTE] = ACTIONS(3488), + [anon_sym_u_SQUOTE] = ACTIONS(3488), + [anon_sym_U_SQUOTE] = ACTIONS(3488), + [anon_sym_u8_SQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [anon_sym_L_DQUOTE] = ACTIONS(3488), + [anon_sym_u_DQUOTE] = ACTIONS(3488), + [anon_sym_U_DQUOTE] = ACTIONS(3488), + [anon_sym_u8_DQUOTE] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [anon_sym_NULL] = ACTIONS(3486), + [anon_sym_nullptr] = ACTIONS(3486), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3486), + [anon_sym_decltype] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_co_return] = ACTIONS(3486), + [anon_sym_co_yield] = ACTIONS(3486), + [anon_sym_R_DQUOTE] = ACTIONS(3488), + [anon_sym_LR_DQUOTE] = ACTIONS(3488), + [anon_sym_uR_DQUOTE] = ACTIONS(3488), + [anon_sym_UR_DQUOTE] = ACTIONS(3488), + [anon_sym_u8R_DQUOTE] = ACTIONS(3488), + [anon_sym_co_await] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_requires] = ACTIONS(3486), + [anon_sym_CARET_CARET] = ACTIONS(3488), + [anon_sym_LBRACK_COLON] = ACTIONS(3488), + [sym_this] = ACTIONS(3486), + }, + [STATE(1251)] = { + [sym_identifier] = ACTIONS(3514), + [anon_sym_LPAREN2] = ACTIONS(3516), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP] = ACTIONS(3516), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym___extension__] = ACTIONS(3514), + [anon_sym_typedef] = ACTIONS(3514), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3514), + [anon_sym___attribute__] = ACTIONS(3514), + [anon_sym___attribute] = ACTIONS(3514), + [anon_sym_COLON_COLON] = ACTIONS(3516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_signed] = ACTIONS(3514), + [anon_sym_unsigned] = ACTIONS(3514), + [anon_sym_long] = ACTIONS(3514), + [anon_sym_short] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_register] = ACTIONS(3514), + [anon_sym_inline] = ACTIONS(3514), + [anon_sym___inline] = ACTIONS(3514), + [anon_sym___inline__] = ACTIONS(3514), + [anon_sym___forceinline] = ACTIONS(3514), + [anon_sym_thread_local] = ACTIONS(3514), + [anon_sym___thread] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_constexpr] = ACTIONS(3514), + [anon_sym_volatile] = ACTIONS(3514), + [anon_sym_restrict] = ACTIONS(3514), + [anon_sym___restrict__] = ACTIONS(3514), + [anon_sym__Atomic] = ACTIONS(3514), + [anon_sym__Noreturn] = ACTIONS(3514), + [anon_sym_noreturn] = ACTIONS(3514), + [anon_sym__Nonnull] = ACTIONS(3514), + [anon_sym_mutable] = ACTIONS(3514), + [anon_sym_constinit] = ACTIONS(3514), + [anon_sym_consteval] = ACTIONS(3514), + [anon_sym_alignas] = ACTIONS(3514), + [anon_sym__Alignas] = ACTIONS(3514), + [sym_primitive_type] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_struct] = ACTIONS(3514), + [anon_sym_union] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_else] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_goto] = ACTIONS(3514), + [anon_sym___try] = ACTIONS(3514), + [anon_sym___leave] = ACTIONS(3514), + [anon_sym_not] = ACTIONS(3514), + [anon_sym_compl] = ACTIONS(3514), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_sizeof] = ACTIONS(3514), + [anon_sym___alignof__] = ACTIONS(3514), + [anon_sym___alignof] = ACTIONS(3514), + [anon_sym__alignof] = ACTIONS(3514), + [anon_sym_alignof] = ACTIONS(3514), + [anon_sym__Alignof] = ACTIONS(3514), + [anon_sym_offsetof] = ACTIONS(3514), + [anon_sym__Generic] = ACTIONS(3514), + [anon_sym_typename] = ACTIONS(3514), + [anon_sym_asm] = ACTIONS(3514), + [anon_sym___asm__] = ACTIONS(3514), + [anon_sym___asm] = ACTIONS(3514), + [sym_number_literal] = ACTIONS(3516), + [anon_sym_L_SQUOTE] = ACTIONS(3516), + [anon_sym_u_SQUOTE] = ACTIONS(3516), + [anon_sym_U_SQUOTE] = ACTIONS(3516), + [anon_sym_u8_SQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [anon_sym_L_DQUOTE] = ACTIONS(3516), + [anon_sym_u_DQUOTE] = ACTIONS(3516), + [anon_sym_U_DQUOTE] = ACTIONS(3516), + [anon_sym_u8_DQUOTE] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [anon_sym_NULL] = ACTIONS(3514), + [anon_sym_nullptr] = ACTIONS(3514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3514), + [anon_sym_decltype] = ACTIONS(3514), + [anon_sym_template] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_co_return] = ACTIONS(3514), + [anon_sym_co_yield] = ACTIONS(3514), + [anon_sym_R_DQUOTE] = ACTIONS(3516), + [anon_sym_LR_DQUOTE] = ACTIONS(3516), + [anon_sym_uR_DQUOTE] = ACTIONS(3516), + [anon_sym_UR_DQUOTE] = ACTIONS(3516), + [anon_sym_u8R_DQUOTE] = ACTIONS(3516), + [anon_sym_co_await] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_requires] = ACTIONS(3514), + [anon_sym_CARET_CARET] = ACTIONS(3516), + [anon_sym_LBRACK_COLON] = ACTIONS(3516), + [sym_this] = ACTIONS(3514), + }, + [STATE(1252)] = { + [sym_identifier] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym___try] = ACTIONS(3518), + [anon_sym___leave] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(3518), + [anon_sym_compl] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [anon_sym___alignof__] = ACTIONS(3518), + [anon_sym___alignof] = ACTIONS(3518), + [anon_sym__alignof] = ACTIONS(3518), + [anon_sym_alignof] = ACTIONS(3518), + [anon_sym__Alignof] = ACTIONS(3518), + [anon_sym_offsetof] = ACTIONS(3518), + [anon_sym__Generic] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [anon_sym_asm] = ACTIONS(3518), + [anon_sym___asm__] = ACTIONS(3518), + [anon_sym___asm] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [anon_sym_L_SQUOTE] = ACTIONS(3520), + [anon_sym_u_SQUOTE] = ACTIONS(3520), + [anon_sym_U_SQUOTE] = ACTIONS(3520), + [anon_sym_u8_SQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_L_DQUOTE] = ACTIONS(3520), + [anon_sym_u_DQUOTE] = ACTIONS(3520), + [anon_sym_U_DQUOTE] = ACTIONS(3520), + [anon_sym_u8_DQUOTE] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [anon_sym_NULL] = ACTIONS(3518), + [anon_sym_nullptr] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_co_return] = ACTIONS(3518), + [anon_sym_co_yield] = ACTIONS(3518), + [anon_sym_R_DQUOTE] = ACTIONS(3520), + [anon_sym_LR_DQUOTE] = ACTIONS(3520), + [anon_sym_uR_DQUOTE] = ACTIONS(3520), + [anon_sym_UR_DQUOTE] = ACTIONS(3520), + [anon_sym_u8R_DQUOTE] = ACTIONS(3520), + [anon_sym_co_await] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_requires] = ACTIONS(3518), + [anon_sym_CARET_CARET] = ACTIONS(3520), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + [sym_this] = ACTIONS(3518), + }, + [STATE(1253)] = { + [sym_identifier] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3520), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_goto] = ACTIONS(3518), + [anon_sym___try] = ACTIONS(3518), + [anon_sym___leave] = ACTIONS(3518), + [anon_sym_not] = ACTIONS(3518), + [anon_sym_compl] = ACTIONS(3518), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_sizeof] = ACTIONS(3518), + [anon_sym___alignof__] = ACTIONS(3518), + [anon_sym___alignof] = ACTIONS(3518), + [anon_sym__alignof] = ACTIONS(3518), + [anon_sym_alignof] = ACTIONS(3518), + [anon_sym__Alignof] = ACTIONS(3518), + [anon_sym_offsetof] = ACTIONS(3518), + [anon_sym__Generic] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [anon_sym_asm] = ACTIONS(3518), + [anon_sym___asm__] = ACTIONS(3518), + [anon_sym___asm] = ACTIONS(3518), + [sym_number_literal] = ACTIONS(3520), + [anon_sym_L_SQUOTE] = ACTIONS(3520), + [anon_sym_u_SQUOTE] = ACTIONS(3520), + [anon_sym_U_SQUOTE] = ACTIONS(3520), + [anon_sym_u8_SQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [anon_sym_L_DQUOTE] = ACTIONS(3520), + [anon_sym_u_DQUOTE] = ACTIONS(3520), + [anon_sym_U_DQUOTE] = ACTIONS(3520), + [anon_sym_u8_DQUOTE] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [anon_sym_NULL] = ACTIONS(3518), + [anon_sym_nullptr] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_co_return] = ACTIONS(3518), + [anon_sym_co_yield] = ACTIONS(3518), + [anon_sym_R_DQUOTE] = ACTIONS(3520), + [anon_sym_LR_DQUOTE] = ACTIONS(3520), + [anon_sym_uR_DQUOTE] = ACTIONS(3520), + [anon_sym_UR_DQUOTE] = ACTIONS(3520), + [anon_sym_u8R_DQUOTE] = ACTIONS(3520), + [anon_sym_co_await] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_requires] = ACTIONS(3518), + [anon_sym_CARET_CARET] = ACTIONS(3520), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + [sym_this] = ACTIONS(3518), + }, + [STATE(1254)] = { + [sym_identifier] = ACTIONS(3526), + [anon_sym_LPAREN2] = ACTIONS(3528), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_STAR] = ACTIONS(3528), + [anon_sym_AMP] = ACTIONS(3528), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym___extension__] = ACTIONS(3526), + [anon_sym_typedef] = ACTIONS(3526), + [anon_sym_virtual] = ACTIONS(3526), + [anon_sym_extern] = ACTIONS(3526), + [anon_sym___attribute__] = ACTIONS(3526), + [anon_sym___attribute] = ACTIONS(3526), + [anon_sym_COLON_COLON] = ACTIONS(3528), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3528), + [anon_sym___declspec] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_signed] = ACTIONS(3526), + [anon_sym_unsigned] = ACTIONS(3526), + [anon_sym_long] = ACTIONS(3526), + [anon_sym_short] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3526), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_register] = ACTIONS(3526), + [anon_sym_inline] = ACTIONS(3526), + [anon_sym___inline] = ACTIONS(3526), + [anon_sym___inline__] = ACTIONS(3526), + [anon_sym___forceinline] = ACTIONS(3526), + [anon_sym_thread_local] = ACTIONS(3526), + [anon_sym___thread] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_constexpr] = ACTIONS(3526), + [anon_sym_volatile] = ACTIONS(3526), + [anon_sym_restrict] = ACTIONS(3526), + [anon_sym___restrict__] = ACTIONS(3526), + [anon_sym__Atomic] = ACTIONS(3526), + [anon_sym__Noreturn] = ACTIONS(3526), + [anon_sym_noreturn] = ACTIONS(3526), + [anon_sym__Nonnull] = ACTIONS(3526), + [anon_sym_mutable] = ACTIONS(3526), + [anon_sym_constinit] = ACTIONS(3526), + [anon_sym_consteval] = ACTIONS(3526), + [anon_sym_alignas] = ACTIONS(3526), + [anon_sym__Alignas] = ACTIONS(3526), + [sym_primitive_type] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_struct] = ACTIONS(3526), + [anon_sym_union] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_else] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_goto] = ACTIONS(3526), + [anon_sym___try] = ACTIONS(3526), + [anon_sym___leave] = ACTIONS(3526), + [anon_sym_not] = ACTIONS(3526), + [anon_sym_compl] = ACTIONS(3526), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_sizeof] = ACTIONS(3526), + [anon_sym___alignof__] = ACTIONS(3526), + [anon_sym___alignof] = ACTIONS(3526), + [anon_sym__alignof] = ACTIONS(3526), + [anon_sym_alignof] = ACTIONS(3526), + [anon_sym__Alignof] = ACTIONS(3526), + [anon_sym_offsetof] = ACTIONS(3526), + [anon_sym__Generic] = ACTIONS(3526), + [anon_sym_typename] = ACTIONS(3526), + [anon_sym_asm] = ACTIONS(3526), + [anon_sym___asm__] = ACTIONS(3526), + [anon_sym___asm] = ACTIONS(3526), + [sym_number_literal] = ACTIONS(3528), + [anon_sym_L_SQUOTE] = ACTIONS(3528), + [anon_sym_u_SQUOTE] = ACTIONS(3528), + [anon_sym_U_SQUOTE] = ACTIONS(3528), + [anon_sym_u8_SQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [anon_sym_L_DQUOTE] = ACTIONS(3528), + [anon_sym_u_DQUOTE] = ACTIONS(3528), + [anon_sym_U_DQUOTE] = ACTIONS(3528), + [anon_sym_u8_DQUOTE] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [anon_sym_NULL] = ACTIONS(3526), + [anon_sym_nullptr] = ACTIONS(3526), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3526), + [anon_sym_decltype] = ACTIONS(3526), + [anon_sym_template] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_co_return] = ACTIONS(3526), + [anon_sym_co_yield] = ACTIONS(3526), + [anon_sym_R_DQUOTE] = ACTIONS(3528), + [anon_sym_LR_DQUOTE] = ACTIONS(3528), + [anon_sym_uR_DQUOTE] = ACTIONS(3528), + [anon_sym_UR_DQUOTE] = ACTIONS(3528), + [anon_sym_u8R_DQUOTE] = ACTIONS(3528), + [anon_sym_co_await] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_requires] = ACTIONS(3526), + [anon_sym_CARET_CARET] = ACTIONS(3528), + [anon_sym_LBRACK_COLON] = ACTIONS(3528), + [sym_this] = ACTIONS(3526), + }, + [STATE(1255)] = { + [sym_identifier] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_else] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_goto] = ACTIONS(3534), + [anon_sym___try] = ACTIONS(3534), + [anon_sym___leave] = ACTIONS(3534), + [anon_sym_not] = ACTIONS(3534), + [anon_sym_compl] = ACTIONS(3534), + [anon_sym_DASH_DASH] = ACTIONS(3536), + [anon_sym_PLUS_PLUS] = ACTIONS(3536), + [anon_sym_sizeof] = ACTIONS(3534), + [anon_sym___alignof__] = ACTIONS(3534), + [anon_sym___alignof] = ACTIONS(3534), + [anon_sym__alignof] = ACTIONS(3534), + [anon_sym_alignof] = ACTIONS(3534), + [anon_sym__Alignof] = ACTIONS(3534), + [anon_sym_offsetof] = ACTIONS(3534), + [anon_sym__Generic] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [anon_sym_asm] = ACTIONS(3534), + [anon_sym___asm__] = ACTIONS(3534), + [anon_sym___asm] = ACTIONS(3534), + [sym_number_literal] = ACTIONS(3536), + [anon_sym_L_SQUOTE] = ACTIONS(3536), + [anon_sym_u_SQUOTE] = ACTIONS(3536), + [anon_sym_U_SQUOTE] = ACTIONS(3536), + [anon_sym_u8_SQUOTE] = ACTIONS(3536), + [anon_sym_SQUOTE] = ACTIONS(3536), + [anon_sym_L_DQUOTE] = ACTIONS(3536), + [anon_sym_u_DQUOTE] = ACTIONS(3536), + [anon_sym_U_DQUOTE] = ACTIONS(3536), + [anon_sym_u8_DQUOTE] = ACTIONS(3536), + [anon_sym_DQUOTE] = ACTIONS(3536), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [anon_sym_NULL] = ACTIONS(3534), + [anon_sym_nullptr] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_co_return] = ACTIONS(3534), + [anon_sym_co_yield] = ACTIONS(3534), + [anon_sym_R_DQUOTE] = ACTIONS(3536), + [anon_sym_LR_DQUOTE] = ACTIONS(3536), + [anon_sym_uR_DQUOTE] = ACTIONS(3536), + [anon_sym_UR_DQUOTE] = ACTIONS(3536), + [anon_sym_u8R_DQUOTE] = ACTIONS(3536), + [anon_sym_co_await] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_requires] = ACTIONS(3534), + [anon_sym_CARET_CARET] = ACTIONS(3536), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + [sym_this] = ACTIONS(3534), + }, + [STATE(1256)] = { [sym_identifier] = ACTIONS(3592), [anon_sym_LPAREN2] = ACTIONS(3594), [anon_sym_BANG] = ACTIONS(3594), @@ -229892,703 +233346,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3594), [sym_this] = ACTIONS(3592), }, - [STATE(1227)] = { - [sym_identifier] = ACTIONS(3540), - [anon_sym_LPAREN2] = ACTIONS(3542), - [anon_sym_BANG] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_PLUS] = ACTIONS(3540), - [anon_sym_STAR] = ACTIONS(3542), - [anon_sym_AMP] = ACTIONS(3542), - [anon_sym_SEMI] = ACTIONS(3542), - [anon_sym___extension__] = ACTIONS(3540), - [anon_sym_typedef] = ACTIONS(3540), - [anon_sym_virtual] = ACTIONS(3540), - [anon_sym_extern] = ACTIONS(3540), - [anon_sym___attribute__] = ACTIONS(3540), - [anon_sym___attribute] = ACTIONS(3540), - [anon_sym_COLON_COLON] = ACTIONS(3542), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3542), - [anon_sym___declspec] = ACTIONS(3540), - [anon_sym_LBRACE] = ACTIONS(3542), - [anon_sym_signed] = ACTIONS(3540), - [anon_sym_unsigned] = ACTIONS(3540), - [anon_sym_long] = ACTIONS(3540), - [anon_sym_short] = ACTIONS(3540), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3540), - [anon_sym_register] = ACTIONS(3540), - [anon_sym_inline] = ACTIONS(3540), - [anon_sym___inline] = ACTIONS(3540), - [anon_sym___inline__] = ACTIONS(3540), - [anon_sym___forceinline] = ACTIONS(3540), - [anon_sym_thread_local] = ACTIONS(3540), - [anon_sym___thread] = ACTIONS(3540), - [anon_sym_const] = ACTIONS(3540), - [anon_sym_constexpr] = ACTIONS(3540), - [anon_sym_volatile] = ACTIONS(3540), - [anon_sym_restrict] = ACTIONS(3540), - [anon_sym___restrict__] = ACTIONS(3540), - [anon_sym__Atomic] = ACTIONS(3540), - [anon_sym__Noreturn] = ACTIONS(3540), - [anon_sym_noreturn] = ACTIONS(3540), - [anon_sym__Nonnull] = ACTIONS(3540), - [anon_sym_mutable] = ACTIONS(3540), - [anon_sym_constinit] = ACTIONS(3540), - [anon_sym_consteval] = ACTIONS(3540), - [anon_sym_alignas] = ACTIONS(3540), - [anon_sym__Alignas] = ACTIONS(3540), - [sym_primitive_type] = ACTIONS(3540), - [anon_sym_enum] = ACTIONS(3540), - [anon_sym_class] = ACTIONS(3540), - [anon_sym_struct] = ACTIONS(3540), - [anon_sym_union] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3540), - [anon_sym_else] = ACTIONS(3540), - [anon_sym_switch] = ACTIONS(3540), - [anon_sym_while] = ACTIONS(3540), - [anon_sym_do] = ACTIONS(3540), - [anon_sym_for] = ACTIONS(3540), - [anon_sym_return] = ACTIONS(3540), - [anon_sym_break] = ACTIONS(3540), - [anon_sym_continue] = ACTIONS(3540), - [anon_sym_goto] = ACTIONS(3540), - [anon_sym___try] = ACTIONS(3540), - [anon_sym___leave] = ACTIONS(3540), - [anon_sym_not] = ACTIONS(3540), - [anon_sym_compl] = ACTIONS(3540), - [anon_sym_DASH_DASH] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3542), - [anon_sym_sizeof] = ACTIONS(3540), - [anon_sym___alignof__] = ACTIONS(3540), - [anon_sym___alignof] = ACTIONS(3540), - [anon_sym__alignof] = ACTIONS(3540), - [anon_sym_alignof] = ACTIONS(3540), - [anon_sym__Alignof] = ACTIONS(3540), - [anon_sym_offsetof] = ACTIONS(3540), - [anon_sym__Generic] = ACTIONS(3540), - [anon_sym_typename] = ACTIONS(3540), - [anon_sym_asm] = ACTIONS(3540), - [anon_sym___asm__] = ACTIONS(3540), - [anon_sym___asm] = ACTIONS(3540), - [sym_number_literal] = ACTIONS(3542), - [anon_sym_L_SQUOTE] = ACTIONS(3542), - [anon_sym_u_SQUOTE] = ACTIONS(3542), - [anon_sym_U_SQUOTE] = ACTIONS(3542), - [anon_sym_u8_SQUOTE] = ACTIONS(3542), - [anon_sym_SQUOTE] = ACTIONS(3542), - [anon_sym_L_DQUOTE] = ACTIONS(3542), - [anon_sym_u_DQUOTE] = ACTIONS(3542), - [anon_sym_U_DQUOTE] = ACTIONS(3542), - [anon_sym_u8_DQUOTE] = ACTIONS(3542), - [anon_sym_DQUOTE] = ACTIONS(3542), - [sym_true] = ACTIONS(3540), - [sym_false] = ACTIONS(3540), - [anon_sym_NULL] = ACTIONS(3540), - [anon_sym_nullptr] = ACTIONS(3540), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3540), - [anon_sym_decltype] = ACTIONS(3540), - [anon_sym_template] = ACTIONS(3540), - [anon_sym_try] = ACTIONS(3540), - [anon_sym_delete] = ACTIONS(3540), - [anon_sym_throw] = ACTIONS(3540), - [anon_sym_co_return] = ACTIONS(3540), - [anon_sym_co_yield] = ACTIONS(3540), - [anon_sym_R_DQUOTE] = ACTIONS(3542), - [anon_sym_LR_DQUOTE] = ACTIONS(3542), - [anon_sym_uR_DQUOTE] = ACTIONS(3542), - [anon_sym_UR_DQUOTE] = ACTIONS(3542), - [anon_sym_u8R_DQUOTE] = ACTIONS(3542), - [anon_sym_co_await] = ACTIONS(3540), - [anon_sym_new] = ACTIONS(3540), - [anon_sym_requires] = ACTIONS(3540), - [anon_sym_CARET_CARET] = ACTIONS(3542), - [anon_sym_LBRACK_COLON] = ACTIONS(3542), - [sym_this] = ACTIONS(3540), - }, - [STATE(1228)] = { - [sym_identifier] = ACTIONS(3384), - [anon_sym_LPAREN2] = ACTIONS(3389), - [anon_sym_BANG] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym___extension__] = ACTIONS(3384), - [anon_sym_typedef] = ACTIONS(3384), - [anon_sym_virtual] = ACTIONS(3384), - [anon_sym_extern] = ACTIONS(3384), - [anon_sym___attribute__] = ACTIONS(3384), - [anon_sym___attribute] = ACTIONS(3384), - [anon_sym_COLON_COLON] = ACTIONS(3389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3389), - [anon_sym___declspec] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_signed] = ACTIONS(3384), - [anon_sym_unsigned] = ACTIONS(3384), - [anon_sym_long] = ACTIONS(3384), - [anon_sym_short] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_register] = ACTIONS(3384), - [anon_sym_inline] = ACTIONS(3384), - [anon_sym___inline] = ACTIONS(3384), - [anon_sym___inline__] = ACTIONS(3384), - [anon_sym___forceinline] = ACTIONS(3384), - [anon_sym_thread_local] = ACTIONS(3384), - [anon_sym___thread] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_constexpr] = ACTIONS(3384), - [anon_sym_volatile] = ACTIONS(3384), - [anon_sym_restrict] = ACTIONS(3384), - [anon_sym___restrict__] = ACTIONS(3384), - [anon_sym__Atomic] = ACTIONS(3384), - [anon_sym__Noreturn] = ACTIONS(3384), - [anon_sym_noreturn] = ACTIONS(3384), - [anon_sym__Nonnull] = ACTIONS(3384), - [anon_sym_mutable] = ACTIONS(3384), - [anon_sym_constinit] = ACTIONS(3384), - [anon_sym_consteval] = ACTIONS(3384), - [anon_sym_alignas] = ACTIONS(3384), - [anon_sym__Alignas] = ACTIONS(3384), - [sym_primitive_type] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_struct] = ACTIONS(3384), - [anon_sym_union] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_else] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_goto] = ACTIONS(3384), - [anon_sym___try] = ACTIONS(3384), - [anon_sym___leave] = ACTIONS(3384), - [anon_sym_not] = ACTIONS(3384), - [anon_sym_compl] = ACTIONS(3384), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_sizeof] = ACTIONS(3384), - [anon_sym___alignof__] = ACTIONS(3384), - [anon_sym___alignof] = ACTIONS(3384), - [anon_sym__alignof] = ACTIONS(3384), - [anon_sym_alignof] = ACTIONS(3384), - [anon_sym__Alignof] = ACTIONS(3384), - [anon_sym_offsetof] = ACTIONS(3384), - [anon_sym__Generic] = ACTIONS(3384), - [anon_sym_typename] = ACTIONS(3384), - [anon_sym_asm] = ACTIONS(3384), - [anon_sym___asm__] = ACTIONS(3384), - [anon_sym___asm] = ACTIONS(3384), - [sym_number_literal] = ACTIONS(3389), - [anon_sym_L_SQUOTE] = ACTIONS(3389), - [anon_sym_u_SQUOTE] = ACTIONS(3389), - [anon_sym_U_SQUOTE] = ACTIONS(3389), - [anon_sym_u8_SQUOTE] = ACTIONS(3389), - [anon_sym_SQUOTE] = ACTIONS(3389), - [anon_sym_L_DQUOTE] = ACTIONS(3389), - [anon_sym_u_DQUOTE] = ACTIONS(3389), - [anon_sym_U_DQUOTE] = ACTIONS(3389), - [anon_sym_u8_DQUOTE] = ACTIONS(3389), - [anon_sym_DQUOTE] = ACTIONS(3389), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [anon_sym_NULL] = ACTIONS(3384), - [anon_sym_nullptr] = ACTIONS(3384), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3384), - [anon_sym_decltype] = ACTIONS(3384), - [anon_sym_template] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_co_return] = ACTIONS(3384), - [anon_sym_co_yield] = ACTIONS(3384), - [anon_sym_R_DQUOTE] = ACTIONS(3389), - [anon_sym_LR_DQUOTE] = ACTIONS(3389), - [anon_sym_uR_DQUOTE] = ACTIONS(3389), - [anon_sym_UR_DQUOTE] = ACTIONS(3389), - [anon_sym_u8R_DQUOTE] = ACTIONS(3389), - [anon_sym_co_await] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_requires] = ACTIONS(3384), - [anon_sym_CARET_CARET] = ACTIONS(3389), - [anon_sym_LBRACK_COLON] = ACTIONS(3389), - [sym_this] = ACTIONS(3384), - }, - [STATE(1229)] = { - [sym_identifier] = ACTIONS(3560), - [anon_sym_LPAREN2] = ACTIONS(3562), - [anon_sym_BANG] = ACTIONS(3562), - [anon_sym_TILDE] = ACTIONS(3562), - [anon_sym_DASH] = ACTIONS(3560), - [anon_sym_PLUS] = ACTIONS(3560), - [anon_sym_STAR] = ACTIONS(3562), - [anon_sym_AMP] = ACTIONS(3562), - [anon_sym_SEMI] = ACTIONS(3562), - [anon_sym___extension__] = ACTIONS(3560), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_virtual] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym___attribute__] = ACTIONS(3560), - [anon_sym___attribute] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3562), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3562), - [anon_sym___declspec] = ACTIONS(3560), - [anon_sym_LBRACE] = ACTIONS(3562), - [anon_sym_signed] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [anon_sym_LBRACK] = ACTIONS(3560), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym___inline] = ACTIONS(3560), - [anon_sym___inline__] = ACTIONS(3560), - [anon_sym___forceinline] = ACTIONS(3560), - [anon_sym_thread_local] = ACTIONS(3560), - [anon_sym___thread] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym___restrict__] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym__Noreturn] = ACTIONS(3560), - [anon_sym_noreturn] = ACTIONS(3560), - [anon_sym__Nonnull] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_constinit] = ACTIONS(3560), - [anon_sym_consteval] = ACTIONS(3560), - [anon_sym_alignas] = ACTIONS(3560), - [anon_sym__Alignas] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_if] = ACTIONS(3560), - [anon_sym_else] = ACTIONS(3560), - [anon_sym_switch] = ACTIONS(3560), - [anon_sym_while] = ACTIONS(3560), - [anon_sym_do] = ACTIONS(3560), - [anon_sym_for] = ACTIONS(3560), - [anon_sym_return] = ACTIONS(3560), - [anon_sym_break] = ACTIONS(3560), - [anon_sym_continue] = ACTIONS(3560), - [anon_sym_goto] = ACTIONS(3560), - [anon_sym___try] = ACTIONS(3560), - [anon_sym___leave] = ACTIONS(3560), - [anon_sym_not] = ACTIONS(3560), - [anon_sym_compl] = ACTIONS(3560), - [anon_sym_DASH_DASH] = ACTIONS(3562), - [anon_sym_PLUS_PLUS] = ACTIONS(3562), - [anon_sym_sizeof] = ACTIONS(3560), - [anon_sym___alignof__] = ACTIONS(3560), - [anon_sym___alignof] = ACTIONS(3560), - [anon_sym__alignof] = ACTIONS(3560), - [anon_sym_alignof] = ACTIONS(3560), - [anon_sym__Alignof] = ACTIONS(3560), - [anon_sym_offsetof] = ACTIONS(3560), - [anon_sym__Generic] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_asm] = ACTIONS(3560), - [anon_sym___asm__] = ACTIONS(3560), - [anon_sym___asm] = ACTIONS(3560), - [sym_number_literal] = ACTIONS(3562), - [anon_sym_L_SQUOTE] = ACTIONS(3562), - [anon_sym_u_SQUOTE] = ACTIONS(3562), - [anon_sym_U_SQUOTE] = ACTIONS(3562), - [anon_sym_u8_SQUOTE] = ACTIONS(3562), - [anon_sym_SQUOTE] = ACTIONS(3562), - [anon_sym_L_DQUOTE] = ACTIONS(3562), - [anon_sym_u_DQUOTE] = ACTIONS(3562), - [anon_sym_U_DQUOTE] = ACTIONS(3562), - [anon_sym_u8_DQUOTE] = ACTIONS(3562), - [anon_sym_DQUOTE] = ACTIONS(3562), - [sym_true] = ACTIONS(3560), - [sym_false] = ACTIONS(3560), - [anon_sym_NULL] = ACTIONS(3560), - [anon_sym_nullptr] = ACTIONS(3560), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3560), - [anon_sym_decltype] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_try] = ACTIONS(3560), - [anon_sym_delete] = ACTIONS(3560), - [anon_sym_throw] = ACTIONS(3560), - [anon_sym_co_return] = ACTIONS(3560), - [anon_sym_co_yield] = ACTIONS(3560), - [anon_sym_R_DQUOTE] = ACTIONS(3562), - [anon_sym_LR_DQUOTE] = ACTIONS(3562), - [anon_sym_uR_DQUOTE] = ACTIONS(3562), - [anon_sym_UR_DQUOTE] = ACTIONS(3562), - [anon_sym_u8R_DQUOTE] = ACTIONS(3562), - [anon_sym_co_await] = ACTIONS(3560), - [anon_sym_new] = ACTIONS(3560), - [anon_sym_requires] = ACTIONS(3560), - [anon_sym_CARET_CARET] = ACTIONS(3562), - [anon_sym_LBRACK_COLON] = ACTIONS(3562), - [sym_this] = ACTIONS(3560), - }, - [STATE(1230)] = { - [sym_identifier] = ACTIONS(3634), - [anon_sym_LPAREN2] = ACTIONS(3636), - [anon_sym_BANG] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3634), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym___extension__] = ACTIONS(3634), - [anon_sym_typedef] = ACTIONS(3634), - [anon_sym_virtual] = ACTIONS(3634), - [anon_sym_extern] = ACTIONS(3634), - [anon_sym___attribute__] = ACTIONS(3634), - [anon_sym___attribute] = ACTIONS(3634), - [anon_sym_COLON_COLON] = ACTIONS(3636), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3636), - [anon_sym___declspec] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_signed] = ACTIONS(3634), - [anon_sym_unsigned] = ACTIONS(3634), - [anon_sym_long] = ACTIONS(3634), - [anon_sym_short] = ACTIONS(3634), - [anon_sym_LBRACK] = ACTIONS(3634), - [anon_sym_static] = ACTIONS(3634), - [anon_sym_register] = ACTIONS(3634), - [anon_sym_inline] = ACTIONS(3634), - [anon_sym___inline] = ACTIONS(3634), - [anon_sym___inline__] = ACTIONS(3634), - [anon_sym___forceinline] = ACTIONS(3634), - [anon_sym_thread_local] = ACTIONS(3634), - [anon_sym___thread] = ACTIONS(3634), - [anon_sym_const] = ACTIONS(3634), - [anon_sym_constexpr] = ACTIONS(3634), - [anon_sym_volatile] = ACTIONS(3634), - [anon_sym_restrict] = ACTIONS(3634), - [anon_sym___restrict__] = ACTIONS(3634), - [anon_sym__Atomic] = ACTIONS(3634), - [anon_sym__Noreturn] = ACTIONS(3634), - [anon_sym_noreturn] = ACTIONS(3634), - [anon_sym__Nonnull] = ACTIONS(3634), - [anon_sym_mutable] = ACTIONS(3634), - [anon_sym_constinit] = ACTIONS(3634), - [anon_sym_consteval] = ACTIONS(3634), - [anon_sym_alignas] = ACTIONS(3634), - [anon_sym__Alignas] = ACTIONS(3634), - [sym_primitive_type] = ACTIONS(3634), - [anon_sym_enum] = ACTIONS(3634), - [anon_sym_class] = ACTIONS(3634), - [anon_sym_struct] = ACTIONS(3634), - [anon_sym_union] = ACTIONS(3634), - [anon_sym_if] = ACTIONS(3634), - [anon_sym_else] = ACTIONS(3634), - [anon_sym_switch] = ACTIONS(3634), - [anon_sym_while] = ACTIONS(3634), - [anon_sym_do] = ACTIONS(3634), - [anon_sym_for] = ACTIONS(3634), - [anon_sym_return] = ACTIONS(3634), - [anon_sym_break] = ACTIONS(3634), - [anon_sym_continue] = ACTIONS(3634), - [anon_sym_goto] = ACTIONS(3634), - [anon_sym___try] = ACTIONS(3634), - [anon_sym___leave] = ACTIONS(3634), - [anon_sym_not] = ACTIONS(3634), - [anon_sym_compl] = ACTIONS(3634), - [anon_sym_DASH_DASH] = ACTIONS(3636), - [anon_sym_PLUS_PLUS] = ACTIONS(3636), - [anon_sym_sizeof] = ACTIONS(3634), - [anon_sym___alignof__] = ACTIONS(3634), - [anon_sym___alignof] = ACTIONS(3634), - [anon_sym__alignof] = ACTIONS(3634), - [anon_sym_alignof] = ACTIONS(3634), - [anon_sym__Alignof] = ACTIONS(3634), - [anon_sym_offsetof] = ACTIONS(3634), - [anon_sym__Generic] = ACTIONS(3634), - [anon_sym_typename] = ACTIONS(3634), - [anon_sym_asm] = ACTIONS(3634), - [anon_sym___asm__] = ACTIONS(3634), - [anon_sym___asm] = ACTIONS(3634), - [sym_number_literal] = ACTIONS(3636), - [anon_sym_L_SQUOTE] = ACTIONS(3636), - [anon_sym_u_SQUOTE] = ACTIONS(3636), - [anon_sym_U_SQUOTE] = ACTIONS(3636), - [anon_sym_u8_SQUOTE] = ACTIONS(3636), - [anon_sym_SQUOTE] = ACTIONS(3636), - [anon_sym_L_DQUOTE] = ACTIONS(3636), - [anon_sym_u_DQUOTE] = ACTIONS(3636), - [anon_sym_U_DQUOTE] = ACTIONS(3636), - [anon_sym_u8_DQUOTE] = ACTIONS(3636), - [anon_sym_DQUOTE] = ACTIONS(3636), - [sym_true] = ACTIONS(3634), - [sym_false] = ACTIONS(3634), - [anon_sym_NULL] = ACTIONS(3634), - [anon_sym_nullptr] = ACTIONS(3634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3634), - [anon_sym_decltype] = ACTIONS(3634), - [anon_sym_template] = ACTIONS(3634), - [anon_sym_try] = ACTIONS(3634), - [anon_sym_delete] = ACTIONS(3634), - [anon_sym_throw] = ACTIONS(3634), - [anon_sym_co_return] = ACTIONS(3634), - [anon_sym_co_yield] = ACTIONS(3634), - [anon_sym_R_DQUOTE] = ACTIONS(3636), - [anon_sym_LR_DQUOTE] = ACTIONS(3636), - [anon_sym_uR_DQUOTE] = ACTIONS(3636), - [anon_sym_UR_DQUOTE] = ACTIONS(3636), - [anon_sym_u8R_DQUOTE] = ACTIONS(3636), - [anon_sym_co_await] = ACTIONS(3634), - [anon_sym_new] = ACTIONS(3634), - [anon_sym_requires] = ACTIONS(3634), - [anon_sym_CARET_CARET] = ACTIONS(3636), - [anon_sym_LBRACK_COLON] = ACTIONS(3636), - [sym_this] = ACTIONS(3634), - }, - [STATE(1231)] = { - [sym_identifier] = ACTIONS(3310), - [anon_sym_LPAREN2] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3310), - [anon_sym_PLUS] = ACTIONS(3310), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym___extension__] = ACTIONS(3310), - [anon_sym_typedef] = ACTIONS(3310), - [anon_sym_virtual] = ACTIONS(3310), - [anon_sym_extern] = ACTIONS(3310), - [anon_sym___attribute__] = ACTIONS(3310), - [anon_sym___attribute] = ACTIONS(3310), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3315), - [anon_sym___declspec] = ACTIONS(3310), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_signed] = ACTIONS(3310), - [anon_sym_unsigned] = ACTIONS(3310), - [anon_sym_long] = ACTIONS(3310), - [anon_sym_short] = ACTIONS(3310), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3310), - [anon_sym_register] = ACTIONS(3310), - [anon_sym_inline] = ACTIONS(3310), - [anon_sym___inline] = ACTIONS(3310), - [anon_sym___inline__] = ACTIONS(3310), - [anon_sym___forceinline] = ACTIONS(3310), - [anon_sym_thread_local] = ACTIONS(3310), - [anon_sym___thread] = ACTIONS(3310), - [anon_sym_const] = ACTIONS(3310), - [anon_sym_constexpr] = ACTIONS(3310), - [anon_sym_volatile] = ACTIONS(3310), - [anon_sym_restrict] = ACTIONS(3310), - [anon_sym___restrict__] = ACTIONS(3310), - [anon_sym__Atomic] = ACTIONS(3310), - [anon_sym__Noreturn] = ACTIONS(3310), - [anon_sym_noreturn] = ACTIONS(3310), - [anon_sym__Nonnull] = ACTIONS(3310), - [anon_sym_mutable] = ACTIONS(3310), - [anon_sym_constinit] = ACTIONS(3310), - [anon_sym_consteval] = ACTIONS(3310), - [anon_sym_alignas] = ACTIONS(3310), - [anon_sym__Alignas] = ACTIONS(3310), - [sym_primitive_type] = ACTIONS(3310), - [anon_sym_enum] = ACTIONS(3310), - [anon_sym_class] = ACTIONS(3310), - [anon_sym_struct] = ACTIONS(3310), - [anon_sym_union] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3310), - [anon_sym_else] = ACTIONS(3310), - [anon_sym_switch] = ACTIONS(3310), - [anon_sym_while] = ACTIONS(3310), - [anon_sym_do] = ACTIONS(3310), - [anon_sym_for] = ACTIONS(3310), - [anon_sym_return] = ACTIONS(3310), - [anon_sym_break] = ACTIONS(3310), - [anon_sym_continue] = ACTIONS(3310), - [anon_sym_goto] = ACTIONS(3310), - [anon_sym___try] = ACTIONS(3310), - [anon_sym___leave] = ACTIONS(3310), - [anon_sym_not] = ACTIONS(3310), - [anon_sym_compl] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_sizeof] = ACTIONS(3310), - [anon_sym___alignof__] = ACTIONS(3310), - [anon_sym___alignof] = ACTIONS(3310), - [anon_sym__alignof] = ACTIONS(3310), - [anon_sym_alignof] = ACTIONS(3310), - [anon_sym__Alignof] = ACTIONS(3310), - [anon_sym_offsetof] = ACTIONS(3310), - [anon_sym__Generic] = ACTIONS(3310), - [anon_sym_typename] = ACTIONS(3310), - [anon_sym_asm] = ACTIONS(3310), - [anon_sym___asm__] = ACTIONS(3310), - [anon_sym___asm] = ACTIONS(3310), - [sym_number_literal] = ACTIONS(3315), - [anon_sym_L_SQUOTE] = ACTIONS(3315), - [anon_sym_u_SQUOTE] = ACTIONS(3315), - [anon_sym_U_SQUOTE] = ACTIONS(3315), - [anon_sym_u8_SQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_L_DQUOTE] = ACTIONS(3315), - [anon_sym_u_DQUOTE] = ACTIONS(3315), - [anon_sym_U_DQUOTE] = ACTIONS(3315), - [anon_sym_u8_DQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_true] = ACTIONS(3310), - [sym_false] = ACTIONS(3310), - [anon_sym_NULL] = ACTIONS(3310), - [anon_sym_nullptr] = ACTIONS(3310), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3310), - [anon_sym_decltype] = ACTIONS(3310), - [anon_sym_template] = ACTIONS(3310), - [anon_sym_try] = ACTIONS(3310), - [anon_sym_delete] = ACTIONS(3310), - [anon_sym_throw] = ACTIONS(3310), - [anon_sym_co_return] = ACTIONS(3310), - [anon_sym_co_yield] = ACTIONS(3310), - [anon_sym_R_DQUOTE] = ACTIONS(3315), - [anon_sym_LR_DQUOTE] = ACTIONS(3315), - [anon_sym_uR_DQUOTE] = ACTIONS(3315), - [anon_sym_UR_DQUOTE] = ACTIONS(3315), - [anon_sym_u8R_DQUOTE] = ACTIONS(3315), - [anon_sym_co_await] = ACTIONS(3310), - [anon_sym_new] = ACTIONS(3310), - [anon_sym_requires] = ACTIONS(3310), - [anon_sym_CARET_CARET] = ACTIONS(3315), - [anon_sym_LBRACK_COLON] = ACTIONS(3315), - [sym_this] = ACTIONS(3310), - }, - [STATE(1232)] = { - [sym_identifier] = ACTIONS(3520), - [anon_sym_LPAREN2] = ACTIONS(3522), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_STAR] = ACTIONS(3522), - [anon_sym_AMP] = ACTIONS(3522), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym___extension__] = ACTIONS(3520), - [anon_sym_typedef] = ACTIONS(3520), - [anon_sym_virtual] = ACTIONS(3520), - [anon_sym_extern] = ACTIONS(3520), - [anon_sym___attribute__] = ACTIONS(3520), - [anon_sym___attribute] = ACTIONS(3520), - [anon_sym_COLON_COLON] = ACTIONS(3522), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3522), - [anon_sym___declspec] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_signed] = ACTIONS(3520), - [anon_sym_unsigned] = ACTIONS(3520), - [anon_sym_long] = ACTIONS(3520), - [anon_sym_short] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_register] = ACTIONS(3520), - [anon_sym_inline] = ACTIONS(3520), - [anon_sym___inline] = ACTIONS(3520), - [anon_sym___inline__] = ACTIONS(3520), - [anon_sym___forceinline] = ACTIONS(3520), - [anon_sym_thread_local] = ACTIONS(3520), - [anon_sym___thread] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_constexpr] = ACTIONS(3520), - [anon_sym_volatile] = ACTIONS(3520), - [anon_sym_restrict] = ACTIONS(3520), - [anon_sym___restrict__] = ACTIONS(3520), - [anon_sym__Atomic] = ACTIONS(3520), - [anon_sym__Noreturn] = ACTIONS(3520), - [anon_sym_noreturn] = ACTIONS(3520), - [anon_sym__Nonnull] = ACTIONS(3520), - [anon_sym_mutable] = ACTIONS(3520), - [anon_sym_constinit] = ACTIONS(3520), - [anon_sym_consteval] = ACTIONS(3520), - [anon_sym_alignas] = ACTIONS(3520), - [anon_sym__Alignas] = ACTIONS(3520), - [sym_primitive_type] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), - [anon_sym_class] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(3520), - [anon_sym_union] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_else] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_goto] = ACTIONS(3520), - [anon_sym___try] = ACTIONS(3520), - [anon_sym___leave] = ACTIONS(3520), - [anon_sym_not] = ACTIONS(3520), - [anon_sym_compl] = ACTIONS(3520), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_sizeof] = ACTIONS(3520), - [anon_sym___alignof__] = ACTIONS(3520), - [anon_sym___alignof] = ACTIONS(3520), - [anon_sym__alignof] = ACTIONS(3520), - [anon_sym_alignof] = ACTIONS(3520), - [anon_sym__Alignof] = ACTIONS(3520), - [anon_sym_offsetof] = ACTIONS(3520), - [anon_sym__Generic] = ACTIONS(3520), - [anon_sym_typename] = ACTIONS(3520), - [anon_sym_asm] = ACTIONS(3520), - [anon_sym___asm__] = ACTIONS(3520), - [anon_sym___asm] = ACTIONS(3520), - [sym_number_literal] = ACTIONS(3522), - [anon_sym_L_SQUOTE] = ACTIONS(3522), - [anon_sym_u_SQUOTE] = ACTIONS(3522), - [anon_sym_U_SQUOTE] = ACTIONS(3522), - [anon_sym_u8_SQUOTE] = ACTIONS(3522), - [anon_sym_SQUOTE] = ACTIONS(3522), - [anon_sym_L_DQUOTE] = ACTIONS(3522), - [anon_sym_u_DQUOTE] = ACTIONS(3522), - [anon_sym_U_DQUOTE] = ACTIONS(3522), - [anon_sym_u8_DQUOTE] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [sym_true] = ACTIONS(3520), - [sym_false] = ACTIONS(3520), - [anon_sym_NULL] = ACTIONS(3520), - [anon_sym_nullptr] = ACTIONS(3520), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3520), - [anon_sym_decltype] = ACTIONS(3520), - [anon_sym_template] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_delete] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_co_return] = ACTIONS(3520), - [anon_sym_co_yield] = ACTIONS(3520), - [anon_sym_R_DQUOTE] = ACTIONS(3522), - [anon_sym_LR_DQUOTE] = ACTIONS(3522), - [anon_sym_uR_DQUOTE] = ACTIONS(3522), - [anon_sym_UR_DQUOTE] = ACTIONS(3522), - [anon_sym_u8R_DQUOTE] = ACTIONS(3522), - [anon_sym_co_await] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_requires] = ACTIONS(3520), - [anon_sym_CARET_CARET] = ACTIONS(3522), - [anon_sym_LBRACK_COLON] = ACTIONS(3522), - [sym_this] = ACTIONS(3520), + [STATE(1257)] = { + [sym_identifier] = ACTIONS(3558), + [anon_sym_LPAREN2] = ACTIONS(3560), + [anon_sym_BANG] = ACTIONS(3560), + [anon_sym_TILDE] = ACTIONS(3560), + [anon_sym_DASH] = ACTIONS(3558), + [anon_sym_PLUS] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(3560), + [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_SEMI] = ACTIONS(3560), + [anon_sym___extension__] = ACTIONS(3558), + [anon_sym_typedef] = ACTIONS(3558), + [anon_sym_virtual] = ACTIONS(3558), + [anon_sym_extern] = ACTIONS(3558), + [anon_sym___attribute__] = ACTIONS(3558), + [anon_sym___attribute] = ACTIONS(3558), + [anon_sym_COLON_COLON] = ACTIONS(3560), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3560), + [anon_sym___declspec] = ACTIONS(3558), + [anon_sym_LBRACE] = ACTIONS(3560), + [anon_sym_signed] = ACTIONS(3558), + [anon_sym_unsigned] = ACTIONS(3558), + [anon_sym_long] = ACTIONS(3558), + [anon_sym_short] = ACTIONS(3558), + [anon_sym_LBRACK] = ACTIONS(3558), + [anon_sym_static] = ACTIONS(3558), + [anon_sym_register] = ACTIONS(3558), + [anon_sym_inline] = ACTIONS(3558), + [anon_sym___inline] = ACTIONS(3558), + [anon_sym___inline__] = ACTIONS(3558), + [anon_sym___forceinline] = ACTIONS(3558), + [anon_sym_thread_local] = ACTIONS(3558), + [anon_sym___thread] = ACTIONS(3558), + [anon_sym_const] = ACTIONS(3558), + [anon_sym_constexpr] = ACTIONS(3558), + [anon_sym_volatile] = ACTIONS(3558), + [anon_sym_restrict] = ACTIONS(3558), + [anon_sym___restrict__] = ACTIONS(3558), + [anon_sym__Atomic] = ACTIONS(3558), + [anon_sym__Noreturn] = ACTIONS(3558), + [anon_sym_noreturn] = ACTIONS(3558), + [anon_sym__Nonnull] = ACTIONS(3558), + [anon_sym_mutable] = ACTIONS(3558), + [anon_sym_constinit] = ACTIONS(3558), + [anon_sym_consteval] = ACTIONS(3558), + [anon_sym_alignas] = ACTIONS(3558), + [anon_sym__Alignas] = ACTIONS(3558), + [sym_primitive_type] = ACTIONS(3558), + [anon_sym_enum] = ACTIONS(3558), + [anon_sym_class] = ACTIONS(3558), + [anon_sym_struct] = ACTIONS(3558), + [anon_sym_union] = ACTIONS(3558), + [anon_sym_if] = ACTIONS(3558), + [anon_sym_else] = ACTIONS(3558), + [anon_sym_switch] = ACTIONS(3558), + [anon_sym_while] = ACTIONS(3558), + [anon_sym_do] = ACTIONS(3558), + [anon_sym_for] = ACTIONS(3558), + [anon_sym_return] = ACTIONS(3558), + [anon_sym_break] = ACTIONS(3558), + [anon_sym_continue] = ACTIONS(3558), + [anon_sym_goto] = ACTIONS(3558), + [anon_sym___try] = ACTIONS(3558), + [anon_sym___leave] = ACTIONS(3558), + [anon_sym_not] = ACTIONS(3558), + [anon_sym_compl] = ACTIONS(3558), + [anon_sym_DASH_DASH] = ACTIONS(3560), + [anon_sym_PLUS_PLUS] = ACTIONS(3560), + [anon_sym_sizeof] = ACTIONS(3558), + [anon_sym___alignof__] = ACTIONS(3558), + [anon_sym___alignof] = ACTIONS(3558), + [anon_sym__alignof] = ACTIONS(3558), + [anon_sym_alignof] = ACTIONS(3558), + [anon_sym__Alignof] = ACTIONS(3558), + [anon_sym_offsetof] = ACTIONS(3558), + [anon_sym__Generic] = ACTIONS(3558), + [anon_sym_typename] = ACTIONS(3558), + [anon_sym_asm] = ACTIONS(3558), + [anon_sym___asm__] = ACTIONS(3558), + [anon_sym___asm] = ACTIONS(3558), + [sym_number_literal] = ACTIONS(3560), + [anon_sym_L_SQUOTE] = ACTIONS(3560), + [anon_sym_u_SQUOTE] = ACTIONS(3560), + [anon_sym_U_SQUOTE] = ACTIONS(3560), + [anon_sym_u8_SQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3560), + [anon_sym_L_DQUOTE] = ACTIONS(3560), + [anon_sym_u_DQUOTE] = ACTIONS(3560), + [anon_sym_U_DQUOTE] = ACTIONS(3560), + [anon_sym_u8_DQUOTE] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(3560), + [sym_true] = ACTIONS(3558), + [sym_false] = ACTIONS(3558), + [anon_sym_NULL] = ACTIONS(3558), + [anon_sym_nullptr] = ACTIONS(3558), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3558), + [anon_sym_decltype] = ACTIONS(3558), + [anon_sym_template] = ACTIONS(3558), + [anon_sym_try] = ACTIONS(3558), + [anon_sym_delete] = ACTIONS(3558), + [anon_sym_throw] = ACTIONS(3558), + [anon_sym_co_return] = ACTIONS(3558), + [anon_sym_co_yield] = ACTIONS(3558), + [anon_sym_R_DQUOTE] = ACTIONS(3560), + [anon_sym_LR_DQUOTE] = ACTIONS(3560), + [anon_sym_uR_DQUOTE] = ACTIONS(3560), + [anon_sym_UR_DQUOTE] = ACTIONS(3560), + [anon_sym_u8R_DQUOTE] = ACTIONS(3560), + [anon_sym_co_await] = ACTIONS(3558), + [anon_sym_new] = ACTIONS(3558), + [anon_sym_requires] = ACTIONS(3558), + [anon_sym_CARET_CARET] = ACTIONS(3560), + [anon_sym_LBRACK_COLON] = ACTIONS(3560), + [sym_this] = ACTIONS(3558), }, - [STATE(1233)] = { + [STATE(1258)] = { [sym_identifier] = ACTIONS(3678), [anon_sym_LPAREN2] = ACTIONS(3680), [anon_sym_BANG] = ACTIONS(3680), @@ -230704,3900 +233578,768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_COLON] = ACTIONS(3680), [sym_this] = ACTIONS(3678), }, - [STATE(1234)] = { - [sym_identifier] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3664), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_goto] = ACTIONS(3662), - [anon_sym___try] = ACTIONS(3662), - [anon_sym___leave] = ACTIONS(3662), - [anon_sym_not] = ACTIONS(3662), - [anon_sym_compl] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_sizeof] = ACTIONS(3662), - [anon_sym___alignof__] = ACTIONS(3662), - [anon_sym___alignof] = ACTIONS(3662), - [anon_sym__alignof] = ACTIONS(3662), - [anon_sym_alignof] = ACTIONS(3662), - [anon_sym__Alignof] = ACTIONS(3662), - [anon_sym_offsetof] = ACTIONS(3662), - [anon_sym__Generic] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [anon_sym_asm] = ACTIONS(3662), - [anon_sym___asm__] = ACTIONS(3662), - [anon_sym___asm] = ACTIONS(3662), - [sym_number_literal] = ACTIONS(3664), - [anon_sym_L_SQUOTE] = ACTIONS(3664), - [anon_sym_u_SQUOTE] = ACTIONS(3664), - [anon_sym_U_SQUOTE] = ACTIONS(3664), - [anon_sym_u8_SQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_L_DQUOTE] = ACTIONS(3664), - [anon_sym_u_DQUOTE] = ACTIONS(3664), - [anon_sym_U_DQUOTE] = ACTIONS(3664), - [anon_sym_u8_DQUOTE] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [anon_sym_NULL] = ACTIONS(3662), - [anon_sym_nullptr] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_co_return] = ACTIONS(3662), - [anon_sym_co_yield] = ACTIONS(3662), - [anon_sym_R_DQUOTE] = ACTIONS(3664), - [anon_sym_LR_DQUOTE] = ACTIONS(3664), - [anon_sym_uR_DQUOTE] = ACTIONS(3664), - [anon_sym_UR_DQUOTE] = ACTIONS(3664), - [anon_sym_u8R_DQUOTE] = ACTIONS(3664), - [anon_sym_co_await] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3662), - [anon_sym_CARET_CARET] = ACTIONS(3664), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - [sym_this] = ACTIONS(3662), - }, - [STATE(1235)] = { - [sym_identifier] = ACTIONS(3572), - [anon_sym_LPAREN2] = ACTIONS(3574), - [anon_sym_BANG] = ACTIONS(3574), - [anon_sym_TILDE] = ACTIONS(3574), - [anon_sym_DASH] = ACTIONS(3572), - [anon_sym_PLUS] = ACTIONS(3572), - [anon_sym_STAR] = ACTIONS(3574), - [anon_sym_AMP] = ACTIONS(3574), - [anon_sym_SEMI] = ACTIONS(3574), - [anon_sym___extension__] = ACTIONS(3572), - [anon_sym_typedef] = ACTIONS(3572), - [anon_sym_virtual] = ACTIONS(3572), - [anon_sym_extern] = ACTIONS(3572), - [anon_sym___attribute__] = ACTIONS(3572), - [anon_sym___attribute] = ACTIONS(3572), - [anon_sym_COLON_COLON] = ACTIONS(3574), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3574), - [anon_sym___declspec] = ACTIONS(3572), - [anon_sym_LBRACE] = ACTIONS(3574), - [anon_sym_signed] = ACTIONS(3572), - [anon_sym_unsigned] = ACTIONS(3572), - [anon_sym_long] = ACTIONS(3572), - [anon_sym_short] = ACTIONS(3572), - [anon_sym_LBRACK] = ACTIONS(3572), - [anon_sym_static] = ACTIONS(3572), - [anon_sym_register] = ACTIONS(3572), - [anon_sym_inline] = ACTIONS(3572), - [anon_sym___inline] = ACTIONS(3572), - [anon_sym___inline__] = ACTIONS(3572), - [anon_sym___forceinline] = ACTIONS(3572), - [anon_sym_thread_local] = ACTIONS(3572), - [anon_sym___thread] = ACTIONS(3572), - [anon_sym_const] = ACTIONS(3572), - [anon_sym_constexpr] = ACTIONS(3572), - [anon_sym_volatile] = ACTIONS(3572), - [anon_sym_restrict] = ACTIONS(3572), - [anon_sym___restrict__] = ACTIONS(3572), - [anon_sym__Atomic] = ACTIONS(3572), - [anon_sym__Noreturn] = ACTIONS(3572), - [anon_sym_noreturn] = ACTIONS(3572), - [anon_sym__Nonnull] = ACTIONS(3572), - [anon_sym_mutable] = ACTIONS(3572), - [anon_sym_constinit] = ACTIONS(3572), - [anon_sym_consteval] = ACTIONS(3572), - [anon_sym_alignas] = ACTIONS(3572), - [anon_sym__Alignas] = ACTIONS(3572), - [sym_primitive_type] = ACTIONS(3572), - [anon_sym_enum] = ACTIONS(3572), - [anon_sym_class] = ACTIONS(3572), - [anon_sym_struct] = ACTIONS(3572), - [anon_sym_union] = ACTIONS(3572), - [anon_sym_if] = ACTIONS(3572), - [anon_sym_else] = ACTIONS(3572), - [anon_sym_switch] = ACTIONS(3572), - [anon_sym_while] = ACTIONS(3572), - [anon_sym_do] = ACTIONS(3572), - [anon_sym_for] = ACTIONS(3572), - [anon_sym_return] = ACTIONS(3572), - [anon_sym_break] = ACTIONS(3572), - [anon_sym_continue] = ACTIONS(3572), - [anon_sym_goto] = ACTIONS(3572), - [anon_sym___try] = ACTIONS(3572), - [anon_sym___leave] = ACTIONS(3572), - [anon_sym_not] = ACTIONS(3572), - [anon_sym_compl] = ACTIONS(3572), - [anon_sym_DASH_DASH] = ACTIONS(3574), - [anon_sym_PLUS_PLUS] = ACTIONS(3574), - [anon_sym_sizeof] = ACTIONS(3572), - [anon_sym___alignof__] = ACTIONS(3572), - [anon_sym___alignof] = ACTIONS(3572), - [anon_sym__alignof] = ACTIONS(3572), - [anon_sym_alignof] = ACTIONS(3572), - [anon_sym__Alignof] = ACTIONS(3572), - [anon_sym_offsetof] = ACTIONS(3572), - [anon_sym__Generic] = ACTIONS(3572), - [anon_sym_typename] = ACTIONS(3572), - [anon_sym_asm] = ACTIONS(3572), - [anon_sym___asm__] = ACTIONS(3572), - [anon_sym___asm] = ACTIONS(3572), - [sym_number_literal] = ACTIONS(3574), - [anon_sym_L_SQUOTE] = ACTIONS(3574), - [anon_sym_u_SQUOTE] = ACTIONS(3574), - [anon_sym_U_SQUOTE] = ACTIONS(3574), - [anon_sym_u8_SQUOTE] = ACTIONS(3574), - [anon_sym_SQUOTE] = ACTIONS(3574), - [anon_sym_L_DQUOTE] = ACTIONS(3574), - [anon_sym_u_DQUOTE] = ACTIONS(3574), - [anon_sym_U_DQUOTE] = ACTIONS(3574), - [anon_sym_u8_DQUOTE] = ACTIONS(3574), - [anon_sym_DQUOTE] = ACTIONS(3574), - [sym_true] = ACTIONS(3572), - [sym_false] = ACTIONS(3572), - [anon_sym_NULL] = ACTIONS(3572), - [anon_sym_nullptr] = ACTIONS(3572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3572), - [anon_sym_decltype] = ACTIONS(3572), - [anon_sym_template] = ACTIONS(3572), - [anon_sym_try] = ACTIONS(3572), - [anon_sym_delete] = ACTIONS(3572), - [anon_sym_throw] = ACTIONS(3572), - [anon_sym_co_return] = ACTIONS(3572), - [anon_sym_co_yield] = ACTIONS(3572), - [anon_sym_R_DQUOTE] = ACTIONS(3574), - [anon_sym_LR_DQUOTE] = ACTIONS(3574), - [anon_sym_uR_DQUOTE] = ACTIONS(3574), - [anon_sym_UR_DQUOTE] = ACTIONS(3574), - [anon_sym_u8R_DQUOTE] = ACTIONS(3574), - [anon_sym_co_await] = ACTIONS(3572), - [anon_sym_new] = ACTIONS(3572), - [anon_sym_requires] = ACTIONS(3572), - [anon_sym_CARET_CARET] = ACTIONS(3574), - [anon_sym_LBRACK_COLON] = ACTIONS(3574), - [sym_this] = ACTIONS(3572), - }, - [STATE(1236)] = { - [sym_expression] = STATE(6819), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10569), - [sym_initializer_pair] = STATE(10569), - [sym_subscript_designator] = STATE(9152), - [sym_subscript_range_designator] = STATE(9152), - [sym_field_designator] = STATE(9152), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [aux_sym_initializer_pair_repeat1] = STATE(9152), - [sym_identifier] = ACTIONS(5688), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(5694), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [anon_sym_DOT] = ACTIONS(233), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1237)] = { - [sym_identifier] = ACTIONS(3666), - [anon_sym_LPAREN2] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_DASH] = ACTIONS(3666), - [anon_sym_PLUS] = ACTIONS(3666), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3668), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym___extension__] = ACTIONS(3666), - [anon_sym_typedef] = ACTIONS(3666), - [anon_sym_virtual] = ACTIONS(3666), - [anon_sym_extern] = ACTIONS(3666), - [anon_sym___attribute__] = ACTIONS(3666), - [anon_sym___attribute] = ACTIONS(3666), - [anon_sym_COLON_COLON] = ACTIONS(3668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), - [anon_sym___declspec] = ACTIONS(3666), - [anon_sym_LBRACE] = ACTIONS(3668), - [anon_sym_signed] = ACTIONS(3666), - [anon_sym_unsigned] = ACTIONS(3666), - [anon_sym_long] = ACTIONS(3666), - [anon_sym_short] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_register] = ACTIONS(3666), - [anon_sym_inline] = ACTIONS(3666), - [anon_sym___inline] = ACTIONS(3666), - [anon_sym___inline__] = ACTIONS(3666), - [anon_sym___forceinline] = ACTIONS(3666), - [anon_sym_thread_local] = ACTIONS(3666), - [anon_sym___thread] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_constexpr] = ACTIONS(3666), - [anon_sym_volatile] = ACTIONS(3666), - [anon_sym_restrict] = ACTIONS(3666), - [anon_sym___restrict__] = ACTIONS(3666), - [anon_sym__Atomic] = ACTIONS(3666), - [anon_sym__Noreturn] = ACTIONS(3666), - [anon_sym_noreturn] = ACTIONS(3666), - [anon_sym__Nonnull] = ACTIONS(3666), - [anon_sym_mutable] = ACTIONS(3666), - [anon_sym_constinit] = ACTIONS(3666), - [anon_sym_consteval] = ACTIONS(3666), - [anon_sym_alignas] = ACTIONS(3666), - [anon_sym__Alignas] = ACTIONS(3666), - [sym_primitive_type] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_union] = ACTIONS(3666), - [anon_sym_if] = ACTIONS(3666), - [anon_sym_else] = ACTIONS(3666), - [anon_sym_switch] = ACTIONS(3666), - [anon_sym_while] = ACTIONS(3666), - [anon_sym_do] = ACTIONS(3666), - [anon_sym_for] = ACTIONS(3666), - [anon_sym_return] = ACTIONS(3666), - [anon_sym_break] = ACTIONS(3666), - [anon_sym_continue] = ACTIONS(3666), - [anon_sym_goto] = ACTIONS(3666), - [anon_sym___try] = ACTIONS(3666), - [anon_sym___leave] = ACTIONS(3666), - [anon_sym_not] = ACTIONS(3666), - [anon_sym_compl] = ACTIONS(3666), - [anon_sym_DASH_DASH] = ACTIONS(3668), - [anon_sym_PLUS_PLUS] = ACTIONS(3668), - [anon_sym_sizeof] = ACTIONS(3666), - [anon_sym___alignof__] = ACTIONS(3666), - [anon_sym___alignof] = ACTIONS(3666), - [anon_sym__alignof] = ACTIONS(3666), - [anon_sym_alignof] = ACTIONS(3666), - [anon_sym__Alignof] = ACTIONS(3666), - [anon_sym_offsetof] = ACTIONS(3666), - [anon_sym__Generic] = ACTIONS(3666), - [anon_sym_typename] = ACTIONS(3666), - [anon_sym_asm] = ACTIONS(3666), - [anon_sym___asm__] = ACTIONS(3666), - [anon_sym___asm] = ACTIONS(3666), - [sym_number_literal] = ACTIONS(3668), - [anon_sym_L_SQUOTE] = ACTIONS(3668), - [anon_sym_u_SQUOTE] = ACTIONS(3668), - [anon_sym_U_SQUOTE] = ACTIONS(3668), - [anon_sym_u8_SQUOTE] = ACTIONS(3668), - [anon_sym_SQUOTE] = ACTIONS(3668), - [anon_sym_L_DQUOTE] = ACTIONS(3668), - [anon_sym_u_DQUOTE] = ACTIONS(3668), - [anon_sym_U_DQUOTE] = ACTIONS(3668), - [anon_sym_u8_DQUOTE] = ACTIONS(3668), - [anon_sym_DQUOTE] = ACTIONS(3668), - [sym_true] = ACTIONS(3666), - [sym_false] = ACTIONS(3666), - [anon_sym_NULL] = ACTIONS(3666), - [anon_sym_nullptr] = ACTIONS(3666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3666), - [anon_sym_decltype] = ACTIONS(3666), - [anon_sym_template] = ACTIONS(3666), - [anon_sym_try] = ACTIONS(3666), - [anon_sym_delete] = ACTIONS(3666), - [anon_sym_throw] = ACTIONS(3666), - [anon_sym_co_return] = ACTIONS(3666), - [anon_sym_co_yield] = ACTIONS(3666), - [anon_sym_R_DQUOTE] = ACTIONS(3668), - [anon_sym_LR_DQUOTE] = ACTIONS(3668), - [anon_sym_uR_DQUOTE] = ACTIONS(3668), - [anon_sym_UR_DQUOTE] = ACTIONS(3668), - [anon_sym_u8R_DQUOTE] = ACTIONS(3668), - [anon_sym_co_await] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3666), - [anon_sym_requires] = ACTIONS(3666), - [anon_sym_CARET_CARET] = ACTIONS(3668), - [anon_sym_LBRACK_COLON] = ACTIONS(3668), - [sym_this] = ACTIONS(3666), - }, - [STATE(1238)] = { - [sym_identifier] = ACTIONS(3614), - [anon_sym_LPAREN2] = ACTIONS(3616), - [anon_sym_BANG] = ACTIONS(3616), - [anon_sym_TILDE] = ACTIONS(3616), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_AMP] = ACTIONS(3616), - [anon_sym_SEMI] = ACTIONS(3616), - [anon_sym___extension__] = ACTIONS(3614), - [anon_sym_typedef] = ACTIONS(3614), - [anon_sym_virtual] = ACTIONS(3614), - [anon_sym_extern] = ACTIONS(3614), - [anon_sym___attribute__] = ACTIONS(3614), - [anon_sym___attribute] = ACTIONS(3614), - [anon_sym_COLON_COLON] = ACTIONS(3616), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3616), - [anon_sym___declspec] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3616), - [anon_sym_signed] = ACTIONS(3614), - [anon_sym_unsigned] = ACTIONS(3614), - [anon_sym_long] = ACTIONS(3614), - [anon_sym_short] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_static] = ACTIONS(3614), - [anon_sym_register] = ACTIONS(3614), - [anon_sym_inline] = ACTIONS(3614), - [anon_sym___inline] = ACTIONS(3614), - [anon_sym___inline__] = ACTIONS(3614), - [anon_sym___forceinline] = ACTIONS(3614), - [anon_sym_thread_local] = ACTIONS(3614), - [anon_sym___thread] = ACTIONS(3614), - [anon_sym_const] = ACTIONS(3614), - [anon_sym_constexpr] = ACTIONS(3614), - [anon_sym_volatile] = ACTIONS(3614), - [anon_sym_restrict] = ACTIONS(3614), - [anon_sym___restrict__] = ACTIONS(3614), - [anon_sym__Atomic] = ACTIONS(3614), - [anon_sym__Noreturn] = ACTIONS(3614), - [anon_sym_noreturn] = ACTIONS(3614), - [anon_sym__Nonnull] = ACTIONS(3614), - [anon_sym_mutable] = ACTIONS(3614), - [anon_sym_constinit] = ACTIONS(3614), - [anon_sym_consteval] = ACTIONS(3614), - [anon_sym_alignas] = ACTIONS(3614), - [anon_sym__Alignas] = ACTIONS(3614), - [sym_primitive_type] = ACTIONS(3614), - [anon_sym_enum] = ACTIONS(3614), - [anon_sym_class] = ACTIONS(3614), - [anon_sym_struct] = ACTIONS(3614), - [anon_sym_union] = ACTIONS(3614), - [anon_sym_if] = ACTIONS(3614), - [anon_sym_else] = ACTIONS(3614), - [anon_sym_switch] = ACTIONS(3614), - [anon_sym_while] = ACTIONS(3614), - [anon_sym_do] = ACTIONS(3614), - [anon_sym_for] = ACTIONS(3614), - [anon_sym_return] = ACTIONS(3614), - [anon_sym_break] = ACTIONS(3614), - [anon_sym_continue] = ACTIONS(3614), - [anon_sym_goto] = ACTIONS(3614), - [anon_sym___try] = ACTIONS(3614), - [anon_sym___leave] = ACTIONS(3614), - [anon_sym_not] = ACTIONS(3614), - [anon_sym_compl] = ACTIONS(3614), - [anon_sym_DASH_DASH] = ACTIONS(3616), - [anon_sym_PLUS_PLUS] = ACTIONS(3616), - [anon_sym_sizeof] = ACTIONS(3614), - [anon_sym___alignof__] = ACTIONS(3614), - [anon_sym___alignof] = ACTIONS(3614), - [anon_sym__alignof] = ACTIONS(3614), - [anon_sym_alignof] = ACTIONS(3614), - [anon_sym__Alignof] = ACTIONS(3614), - [anon_sym_offsetof] = ACTIONS(3614), - [anon_sym__Generic] = ACTIONS(3614), - [anon_sym_typename] = ACTIONS(3614), - [anon_sym_asm] = ACTIONS(3614), - [anon_sym___asm__] = ACTIONS(3614), - [anon_sym___asm] = ACTIONS(3614), - [sym_number_literal] = ACTIONS(3616), - [anon_sym_L_SQUOTE] = ACTIONS(3616), - [anon_sym_u_SQUOTE] = ACTIONS(3616), - [anon_sym_U_SQUOTE] = ACTIONS(3616), - [anon_sym_u8_SQUOTE] = ACTIONS(3616), - [anon_sym_SQUOTE] = ACTIONS(3616), - [anon_sym_L_DQUOTE] = ACTIONS(3616), - [anon_sym_u_DQUOTE] = ACTIONS(3616), - [anon_sym_U_DQUOTE] = ACTIONS(3616), - [anon_sym_u8_DQUOTE] = ACTIONS(3616), - [anon_sym_DQUOTE] = ACTIONS(3616), - [sym_true] = ACTIONS(3614), - [sym_false] = ACTIONS(3614), - [anon_sym_NULL] = ACTIONS(3614), - [anon_sym_nullptr] = ACTIONS(3614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3614), - [anon_sym_decltype] = ACTIONS(3614), - [anon_sym_template] = ACTIONS(3614), - [anon_sym_try] = ACTIONS(3614), - [anon_sym_delete] = ACTIONS(3614), - [anon_sym_throw] = ACTIONS(3614), - [anon_sym_co_return] = ACTIONS(3614), - [anon_sym_co_yield] = ACTIONS(3614), - [anon_sym_R_DQUOTE] = ACTIONS(3616), - [anon_sym_LR_DQUOTE] = ACTIONS(3616), - [anon_sym_uR_DQUOTE] = ACTIONS(3616), - [anon_sym_UR_DQUOTE] = ACTIONS(3616), - [anon_sym_u8R_DQUOTE] = ACTIONS(3616), - [anon_sym_co_await] = ACTIONS(3614), - [anon_sym_new] = ACTIONS(3614), - [anon_sym_requires] = ACTIONS(3614), - [anon_sym_CARET_CARET] = ACTIONS(3616), - [anon_sym_LBRACK_COLON] = ACTIONS(3616), - [sym_this] = ACTIONS(3614), - }, - [STATE(1239)] = { - [sym_identifier] = ACTIONS(3524), - [anon_sym_LPAREN2] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_STAR] = ACTIONS(3526), - [anon_sym_AMP] = ACTIONS(3526), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym___extension__] = ACTIONS(3524), - [anon_sym_typedef] = ACTIONS(3524), - [anon_sym_virtual] = ACTIONS(3524), - [anon_sym_extern] = ACTIONS(3524), - [anon_sym___attribute__] = ACTIONS(3524), - [anon_sym___attribute] = ACTIONS(3524), - [anon_sym_COLON_COLON] = ACTIONS(3526), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3526), - [anon_sym___declspec] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_signed] = ACTIONS(3524), - [anon_sym_unsigned] = ACTIONS(3524), - [anon_sym_long] = ACTIONS(3524), - [anon_sym_short] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3524), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_register] = ACTIONS(3524), - [anon_sym_inline] = ACTIONS(3524), - [anon_sym___inline] = ACTIONS(3524), - [anon_sym___inline__] = ACTIONS(3524), - [anon_sym___forceinline] = ACTIONS(3524), - [anon_sym_thread_local] = ACTIONS(3524), - [anon_sym___thread] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_constexpr] = ACTIONS(3524), - [anon_sym_volatile] = ACTIONS(3524), - [anon_sym_restrict] = ACTIONS(3524), - [anon_sym___restrict__] = ACTIONS(3524), - [anon_sym__Atomic] = ACTIONS(3524), - [anon_sym__Noreturn] = ACTIONS(3524), - [anon_sym_noreturn] = ACTIONS(3524), - [anon_sym__Nonnull] = ACTIONS(3524), - [anon_sym_mutable] = ACTIONS(3524), - [anon_sym_constinit] = ACTIONS(3524), - [anon_sym_consteval] = ACTIONS(3524), - [anon_sym_alignas] = ACTIONS(3524), - [anon_sym__Alignas] = ACTIONS(3524), - [sym_primitive_type] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_struct] = ACTIONS(3524), - [anon_sym_union] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_goto] = ACTIONS(3524), - [anon_sym___try] = ACTIONS(3524), - [anon_sym___leave] = ACTIONS(3524), - [anon_sym_not] = ACTIONS(3524), - [anon_sym_compl] = ACTIONS(3524), - [anon_sym_DASH_DASH] = ACTIONS(3526), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_sizeof] = ACTIONS(3524), - [anon_sym___alignof__] = ACTIONS(3524), - [anon_sym___alignof] = ACTIONS(3524), - [anon_sym__alignof] = ACTIONS(3524), - [anon_sym_alignof] = ACTIONS(3524), - [anon_sym__Alignof] = ACTIONS(3524), - [anon_sym_offsetof] = ACTIONS(3524), - [anon_sym__Generic] = ACTIONS(3524), - [anon_sym_typename] = ACTIONS(3524), - [anon_sym_asm] = ACTIONS(3524), - [anon_sym___asm__] = ACTIONS(3524), - [anon_sym___asm] = ACTIONS(3524), - [sym_number_literal] = ACTIONS(3526), - [anon_sym_L_SQUOTE] = ACTIONS(3526), - [anon_sym_u_SQUOTE] = ACTIONS(3526), - [anon_sym_U_SQUOTE] = ACTIONS(3526), - [anon_sym_u8_SQUOTE] = ACTIONS(3526), - [anon_sym_SQUOTE] = ACTIONS(3526), - [anon_sym_L_DQUOTE] = ACTIONS(3526), - [anon_sym_u_DQUOTE] = ACTIONS(3526), - [anon_sym_U_DQUOTE] = ACTIONS(3526), - [anon_sym_u8_DQUOTE] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [anon_sym_NULL] = ACTIONS(3524), - [anon_sym_nullptr] = ACTIONS(3524), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3524), - [anon_sym_decltype] = ACTIONS(3524), - [anon_sym_template] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_co_return] = ACTIONS(3524), - [anon_sym_co_yield] = ACTIONS(3524), - [anon_sym_R_DQUOTE] = ACTIONS(3526), - [anon_sym_LR_DQUOTE] = ACTIONS(3526), - [anon_sym_uR_DQUOTE] = ACTIONS(3526), - [anon_sym_UR_DQUOTE] = ACTIONS(3526), - [anon_sym_u8R_DQUOTE] = ACTIONS(3526), - [anon_sym_co_await] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_requires] = ACTIONS(3524), - [anon_sym_CARET_CARET] = ACTIONS(3526), - [anon_sym_LBRACK_COLON] = ACTIONS(3526), - [sym_this] = ACTIONS(3524), - }, - [STATE(1240)] = { - [sym_identifier] = ACTIONS(3528), - [anon_sym_LPAREN2] = ACTIONS(3530), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_STAR] = ACTIONS(3530), - [anon_sym_AMP] = ACTIONS(3530), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym___extension__] = ACTIONS(3528), - [anon_sym_typedef] = ACTIONS(3528), - [anon_sym_virtual] = ACTIONS(3528), - [anon_sym_extern] = ACTIONS(3528), - [anon_sym___attribute__] = ACTIONS(3528), - [anon_sym___attribute] = ACTIONS(3528), - [anon_sym_COLON_COLON] = ACTIONS(3530), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3530), - [anon_sym___declspec] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_signed] = ACTIONS(3528), - [anon_sym_unsigned] = ACTIONS(3528), - [anon_sym_long] = ACTIONS(3528), - [anon_sym_short] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3528), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_register] = ACTIONS(3528), - [anon_sym_inline] = ACTIONS(3528), - [anon_sym___inline] = ACTIONS(3528), - [anon_sym___inline__] = ACTIONS(3528), - [anon_sym___forceinline] = ACTIONS(3528), - [anon_sym_thread_local] = ACTIONS(3528), - [anon_sym___thread] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_constexpr] = ACTIONS(3528), - [anon_sym_volatile] = ACTIONS(3528), - [anon_sym_restrict] = ACTIONS(3528), - [anon_sym___restrict__] = ACTIONS(3528), - [anon_sym__Atomic] = ACTIONS(3528), - [anon_sym__Noreturn] = ACTIONS(3528), - [anon_sym_noreturn] = ACTIONS(3528), - [anon_sym__Nonnull] = ACTIONS(3528), - [anon_sym_mutable] = ACTIONS(3528), - [anon_sym_constinit] = ACTIONS(3528), - [anon_sym_consteval] = ACTIONS(3528), - [anon_sym_alignas] = ACTIONS(3528), - [anon_sym__Alignas] = ACTIONS(3528), - [sym_primitive_type] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), - [anon_sym_class] = ACTIONS(3528), - [anon_sym_struct] = ACTIONS(3528), - [anon_sym_union] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_else] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_goto] = ACTIONS(3528), - [anon_sym___try] = ACTIONS(3528), - [anon_sym___leave] = ACTIONS(3528), - [anon_sym_not] = ACTIONS(3528), - [anon_sym_compl] = ACTIONS(3528), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_sizeof] = ACTIONS(3528), - [anon_sym___alignof__] = ACTIONS(3528), - [anon_sym___alignof] = ACTIONS(3528), - [anon_sym__alignof] = ACTIONS(3528), - [anon_sym_alignof] = ACTIONS(3528), - [anon_sym__Alignof] = ACTIONS(3528), - [anon_sym_offsetof] = ACTIONS(3528), - [anon_sym__Generic] = ACTIONS(3528), - [anon_sym_typename] = ACTIONS(3528), - [anon_sym_asm] = ACTIONS(3528), - [anon_sym___asm__] = ACTIONS(3528), - [anon_sym___asm] = ACTIONS(3528), - [sym_number_literal] = ACTIONS(3530), - [anon_sym_L_SQUOTE] = ACTIONS(3530), - [anon_sym_u_SQUOTE] = ACTIONS(3530), - [anon_sym_U_SQUOTE] = ACTIONS(3530), - [anon_sym_u8_SQUOTE] = ACTIONS(3530), - [anon_sym_SQUOTE] = ACTIONS(3530), - [anon_sym_L_DQUOTE] = ACTIONS(3530), - [anon_sym_u_DQUOTE] = ACTIONS(3530), - [anon_sym_U_DQUOTE] = ACTIONS(3530), - [anon_sym_u8_DQUOTE] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [anon_sym_NULL] = ACTIONS(3528), - [anon_sym_nullptr] = ACTIONS(3528), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3528), - [anon_sym_decltype] = ACTIONS(3528), - [anon_sym_template] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_delete] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_co_return] = ACTIONS(3528), - [anon_sym_co_yield] = ACTIONS(3528), - [anon_sym_R_DQUOTE] = ACTIONS(3530), - [anon_sym_LR_DQUOTE] = ACTIONS(3530), - [anon_sym_uR_DQUOTE] = ACTIONS(3530), - [anon_sym_UR_DQUOTE] = ACTIONS(3530), - [anon_sym_u8R_DQUOTE] = ACTIONS(3530), - [anon_sym_co_await] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_requires] = ACTIONS(3528), - [anon_sym_CARET_CARET] = ACTIONS(3530), - [anon_sym_LBRACK_COLON] = ACTIONS(3530), - [sym_this] = ACTIONS(3528), - }, - [STATE(1241)] = { - [sym_identifier] = ACTIONS(3544), - [anon_sym_LPAREN2] = ACTIONS(3546), - [anon_sym_BANG] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3546), - [anon_sym_DASH] = ACTIONS(3544), - [anon_sym_PLUS] = ACTIONS(3544), - [anon_sym_STAR] = ACTIONS(3546), - [anon_sym_AMP] = ACTIONS(3546), - [anon_sym_SEMI] = ACTIONS(3546), - [anon_sym___extension__] = ACTIONS(3544), - [anon_sym_typedef] = ACTIONS(3544), - [anon_sym_virtual] = ACTIONS(3544), - [anon_sym_extern] = ACTIONS(3544), - [anon_sym___attribute__] = ACTIONS(3544), - [anon_sym___attribute] = ACTIONS(3544), - [anon_sym_COLON_COLON] = ACTIONS(3546), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3546), - [anon_sym___declspec] = ACTIONS(3544), - [anon_sym_LBRACE] = ACTIONS(3546), - [anon_sym_signed] = ACTIONS(3544), - [anon_sym_unsigned] = ACTIONS(3544), - [anon_sym_long] = ACTIONS(3544), - [anon_sym_short] = ACTIONS(3544), - [anon_sym_LBRACK] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3544), - [anon_sym_register] = ACTIONS(3544), - [anon_sym_inline] = ACTIONS(3544), - [anon_sym___inline] = ACTIONS(3544), - [anon_sym___inline__] = ACTIONS(3544), - [anon_sym___forceinline] = ACTIONS(3544), - [anon_sym_thread_local] = ACTIONS(3544), - [anon_sym___thread] = ACTIONS(3544), - [anon_sym_const] = ACTIONS(3544), - [anon_sym_constexpr] = ACTIONS(3544), - [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(3544), - [anon_sym__Alignas] = ACTIONS(3544), - [sym_primitive_type] = ACTIONS(3544), - [anon_sym_enum] = ACTIONS(3544), - [anon_sym_class] = ACTIONS(3544), - [anon_sym_struct] = ACTIONS(3544), - [anon_sym_union] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3544), - [anon_sym_else] = ACTIONS(3544), - [anon_sym_switch] = ACTIONS(3544), - [anon_sym_while] = ACTIONS(3544), - [anon_sym_do] = ACTIONS(3544), - [anon_sym_for] = ACTIONS(3544), - [anon_sym_return] = ACTIONS(3544), - [anon_sym_break] = ACTIONS(3544), - [anon_sym_continue] = ACTIONS(3544), - [anon_sym_goto] = ACTIONS(3544), - [anon_sym___try] = ACTIONS(3544), - [anon_sym___leave] = ACTIONS(3544), - [anon_sym_not] = ACTIONS(3544), - [anon_sym_compl] = ACTIONS(3544), - [anon_sym_DASH_DASH] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3546), - [anon_sym_sizeof] = ACTIONS(3544), - [anon_sym___alignof__] = ACTIONS(3544), - [anon_sym___alignof] = ACTIONS(3544), - [anon_sym__alignof] = ACTIONS(3544), - [anon_sym_alignof] = ACTIONS(3544), - [anon_sym__Alignof] = ACTIONS(3544), - [anon_sym_offsetof] = ACTIONS(3544), - [anon_sym__Generic] = ACTIONS(3544), - [anon_sym_typename] = ACTIONS(3544), - [anon_sym_asm] = ACTIONS(3544), - [anon_sym___asm__] = ACTIONS(3544), - [anon_sym___asm] = ACTIONS(3544), - [sym_number_literal] = ACTIONS(3546), - [anon_sym_L_SQUOTE] = ACTIONS(3546), - [anon_sym_u_SQUOTE] = ACTIONS(3546), - [anon_sym_U_SQUOTE] = ACTIONS(3546), - [anon_sym_u8_SQUOTE] = ACTIONS(3546), - [anon_sym_SQUOTE] = ACTIONS(3546), - [anon_sym_L_DQUOTE] = ACTIONS(3546), - [anon_sym_u_DQUOTE] = ACTIONS(3546), - [anon_sym_U_DQUOTE] = ACTIONS(3546), - [anon_sym_u8_DQUOTE] = ACTIONS(3546), - [anon_sym_DQUOTE] = ACTIONS(3546), - [sym_true] = ACTIONS(3544), - [sym_false] = ACTIONS(3544), - [anon_sym_NULL] = ACTIONS(3544), - [anon_sym_nullptr] = ACTIONS(3544), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3544), - [anon_sym_decltype] = ACTIONS(3544), - [anon_sym_template] = ACTIONS(3544), - [anon_sym_try] = ACTIONS(3544), - [anon_sym_delete] = ACTIONS(3544), - [anon_sym_throw] = ACTIONS(3544), - [anon_sym_co_return] = ACTIONS(3544), - [anon_sym_co_yield] = ACTIONS(3544), - [anon_sym_R_DQUOTE] = ACTIONS(3546), - [anon_sym_LR_DQUOTE] = ACTIONS(3546), - [anon_sym_uR_DQUOTE] = ACTIONS(3546), - [anon_sym_UR_DQUOTE] = ACTIONS(3546), - [anon_sym_u8R_DQUOTE] = ACTIONS(3546), - [anon_sym_co_await] = ACTIONS(3544), - [anon_sym_new] = ACTIONS(3544), - [anon_sym_requires] = ACTIONS(3544), - [anon_sym_CARET_CARET] = ACTIONS(3546), - [anon_sym_LBRACK_COLON] = ACTIONS(3546), - [sym_this] = ACTIONS(3544), - }, - [STATE(1242)] = { - [sym_identifier] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_DASH] = ACTIONS(3626), - [anon_sym_PLUS] = ACTIONS(3626), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3628), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym_LBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_if] = ACTIONS(3626), - [anon_sym_else] = ACTIONS(3626), - [anon_sym_switch] = ACTIONS(3626), - [anon_sym_while] = ACTIONS(3626), - [anon_sym_do] = ACTIONS(3626), - [anon_sym_for] = ACTIONS(3626), - [anon_sym_return] = ACTIONS(3626), - [anon_sym_break] = ACTIONS(3626), - [anon_sym_continue] = ACTIONS(3626), - [anon_sym_goto] = ACTIONS(3626), - [anon_sym___try] = ACTIONS(3626), - [anon_sym___leave] = ACTIONS(3626), - [anon_sym_not] = ACTIONS(3626), - [anon_sym_compl] = ACTIONS(3626), - [anon_sym_DASH_DASH] = ACTIONS(3628), - [anon_sym_PLUS_PLUS] = ACTIONS(3628), - [anon_sym_sizeof] = ACTIONS(3626), - [anon_sym___alignof__] = ACTIONS(3626), - [anon_sym___alignof] = ACTIONS(3626), - [anon_sym__alignof] = ACTIONS(3626), - [anon_sym_alignof] = ACTIONS(3626), - [anon_sym__Alignof] = ACTIONS(3626), - [anon_sym_offsetof] = ACTIONS(3626), - [anon_sym__Generic] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [anon_sym_asm] = ACTIONS(3626), - [anon_sym___asm__] = ACTIONS(3626), - [anon_sym___asm] = ACTIONS(3626), - [sym_number_literal] = ACTIONS(3628), - [anon_sym_L_SQUOTE] = ACTIONS(3628), - [anon_sym_u_SQUOTE] = ACTIONS(3628), - [anon_sym_U_SQUOTE] = ACTIONS(3628), - [anon_sym_u8_SQUOTE] = ACTIONS(3628), - [anon_sym_SQUOTE] = ACTIONS(3628), - [anon_sym_L_DQUOTE] = ACTIONS(3628), - [anon_sym_u_DQUOTE] = ACTIONS(3628), - [anon_sym_U_DQUOTE] = ACTIONS(3628), - [anon_sym_u8_DQUOTE] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(3628), - [sym_true] = ACTIONS(3626), - [sym_false] = ACTIONS(3626), - [anon_sym_NULL] = ACTIONS(3626), - [anon_sym_nullptr] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_try] = ACTIONS(3626), - [anon_sym_delete] = ACTIONS(3626), - [anon_sym_throw] = ACTIONS(3626), - [anon_sym_co_return] = ACTIONS(3626), - [anon_sym_co_yield] = ACTIONS(3626), - [anon_sym_R_DQUOTE] = ACTIONS(3628), - [anon_sym_LR_DQUOTE] = ACTIONS(3628), - [anon_sym_uR_DQUOTE] = ACTIONS(3628), - [anon_sym_UR_DQUOTE] = ACTIONS(3628), - [anon_sym_u8R_DQUOTE] = ACTIONS(3628), - [anon_sym_co_await] = ACTIONS(3626), - [anon_sym_new] = ACTIONS(3626), - [anon_sym_requires] = ACTIONS(3626), - [anon_sym_CARET_CARET] = ACTIONS(3628), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), - [sym_this] = ACTIONS(3626), - }, - [STATE(1243)] = { - [sym_identifier] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_BANG] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_DASH] = ACTIONS(3630), - [anon_sym_PLUS] = ACTIONS(3630), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3632), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym_LBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_if] = ACTIONS(3630), - [anon_sym_else] = ACTIONS(3630), - [anon_sym_switch] = ACTIONS(3630), - [anon_sym_while] = ACTIONS(3630), - [anon_sym_do] = ACTIONS(3630), - [anon_sym_for] = ACTIONS(3630), - [anon_sym_return] = ACTIONS(3630), - [anon_sym_break] = ACTIONS(3630), - [anon_sym_continue] = ACTIONS(3630), - [anon_sym_goto] = ACTIONS(3630), - [anon_sym___try] = ACTIONS(3630), - [anon_sym___leave] = ACTIONS(3630), - [anon_sym_not] = ACTIONS(3630), - [anon_sym_compl] = ACTIONS(3630), - [anon_sym_DASH_DASH] = ACTIONS(3632), - [anon_sym_PLUS_PLUS] = ACTIONS(3632), - [anon_sym_sizeof] = ACTIONS(3630), - [anon_sym___alignof__] = ACTIONS(3630), - [anon_sym___alignof] = ACTIONS(3630), - [anon_sym__alignof] = ACTIONS(3630), - [anon_sym_alignof] = ACTIONS(3630), - [anon_sym__Alignof] = ACTIONS(3630), - [anon_sym_offsetof] = ACTIONS(3630), - [anon_sym__Generic] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [anon_sym_asm] = ACTIONS(3630), - [anon_sym___asm__] = ACTIONS(3630), - [anon_sym___asm] = ACTIONS(3630), - [sym_number_literal] = ACTIONS(3632), - [anon_sym_L_SQUOTE] = ACTIONS(3632), - [anon_sym_u_SQUOTE] = ACTIONS(3632), - [anon_sym_U_SQUOTE] = ACTIONS(3632), - [anon_sym_u8_SQUOTE] = ACTIONS(3632), - [anon_sym_SQUOTE] = ACTIONS(3632), - [anon_sym_L_DQUOTE] = ACTIONS(3632), - [anon_sym_u_DQUOTE] = ACTIONS(3632), - [anon_sym_U_DQUOTE] = ACTIONS(3632), - [anon_sym_u8_DQUOTE] = ACTIONS(3632), - [anon_sym_DQUOTE] = ACTIONS(3632), - [sym_true] = ACTIONS(3630), - [sym_false] = ACTIONS(3630), - [anon_sym_NULL] = ACTIONS(3630), - [anon_sym_nullptr] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_try] = ACTIONS(3630), - [anon_sym_delete] = ACTIONS(3630), - [anon_sym_throw] = ACTIONS(3630), - [anon_sym_co_return] = ACTIONS(3630), - [anon_sym_co_yield] = ACTIONS(3630), - [anon_sym_R_DQUOTE] = ACTIONS(3632), - [anon_sym_LR_DQUOTE] = ACTIONS(3632), - [anon_sym_uR_DQUOTE] = ACTIONS(3632), - [anon_sym_UR_DQUOTE] = ACTIONS(3632), - [anon_sym_u8R_DQUOTE] = ACTIONS(3632), - [anon_sym_co_await] = ACTIONS(3630), - [anon_sym_new] = ACTIONS(3630), - [anon_sym_requires] = ACTIONS(3630), - [anon_sym_CARET_CARET] = ACTIONS(3632), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - [sym_this] = ACTIONS(3630), - }, - [STATE(1244)] = { - [sym_identifier] = ACTIONS(3568), - [anon_sym_LPAREN2] = ACTIONS(3570), - [anon_sym_BANG] = ACTIONS(3570), - [anon_sym_TILDE] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3568), - [anon_sym_PLUS] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3570), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_SEMI] = ACTIONS(3570), - [anon_sym___extension__] = ACTIONS(3568), - [anon_sym_typedef] = ACTIONS(3568), - [anon_sym_virtual] = ACTIONS(3568), - [anon_sym_extern] = ACTIONS(3568), - [anon_sym___attribute__] = ACTIONS(3568), - [anon_sym___attribute] = ACTIONS(3568), - [anon_sym_COLON_COLON] = ACTIONS(3570), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3570), - [anon_sym___declspec] = ACTIONS(3568), - [anon_sym_LBRACE] = ACTIONS(3570), - [anon_sym_signed] = ACTIONS(3568), - [anon_sym_unsigned] = ACTIONS(3568), - [anon_sym_long] = ACTIONS(3568), - [anon_sym_short] = ACTIONS(3568), - [anon_sym_LBRACK] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3568), - [anon_sym_register] = ACTIONS(3568), - [anon_sym_inline] = ACTIONS(3568), - [anon_sym___inline] = ACTIONS(3568), - [anon_sym___inline__] = ACTIONS(3568), - [anon_sym___forceinline] = ACTIONS(3568), - [anon_sym_thread_local] = ACTIONS(3568), - [anon_sym___thread] = ACTIONS(3568), - [anon_sym_const] = ACTIONS(3568), - [anon_sym_constexpr] = ACTIONS(3568), - [anon_sym_volatile] = ACTIONS(3568), - [anon_sym_restrict] = ACTIONS(3568), - [anon_sym___restrict__] = ACTIONS(3568), - [anon_sym__Atomic] = ACTIONS(3568), - [anon_sym__Noreturn] = ACTIONS(3568), - [anon_sym_noreturn] = ACTIONS(3568), - [anon_sym__Nonnull] = ACTIONS(3568), - [anon_sym_mutable] = ACTIONS(3568), - [anon_sym_constinit] = ACTIONS(3568), - [anon_sym_consteval] = ACTIONS(3568), - [anon_sym_alignas] = ACTIONS(3568), - [anon_sym__Alignas] = ACTIONS(3568), - [sym_primitive_type] = ACTIONS(3568), - [anon_sym_enum] = ACTIONS(3568), - [anon_sym_class] = ACTIONS(3568), - [anon_sym_struct] = ACTIONS(3568), - [anon_sym_union] = ACTIONS(3568), - [anon_sym_if] = ACTIONS(3568), - [anon_sym_else] = ACTIONS(3568), - [anon_sym_switch] = ACTIONS(3568), - [anon_sym_while] = ACTIONS(3568), - [anon_sym_do] = ACTIONS(3568), - [anon_sym_for] = ACTIONS(3568), - [anon_sym_return] = ACTIONS(3568), - [anon_sym_break] = ACTIONS(3568), - [anon_sym_continue] = ACTIONS(3568), - [anon_sym_goto] = ACTIONS(3568), - [anon_sym___try] = ACTIONS(3568), - [anon_sym___leave] = ACTIONS(3568), - [anon_sym_not] = ACTIONS(3568), - [anon_sym_compl] = ACTIONS(3568), - [anon_sym_DASH_DASH] = ACTIONS(3570), - [anon_sym_PLUS_PLUS] = ACTIONS(3570), - [anon_sym_sizeof] = ACTIONS(3568), - [anon_sym___alignof__] = ACTIONS(3568), - [anon_sym___alignof] = ACTIONS(3568), - [anon_sym__alignof] = ACTIONS(3568), - [anon_sym_alignof] = ACTIONS(3568), - [anon_sym__Alignof] = ACTIONS(3568), - [anon_sym_offsetof] = ACTIONS(3568), - [anon_sym__Generic] = ACTIONS(3568), - [anon_sym_typename] = ACTIONS(3568), - [anon_sym_asm] = ACTIONS(3568), - [anon_sym___asm__] = ACTIONS(3568), - [anon_sym___asm] = ACTIONS(3568), - [sym_number_literal] = ACTIONS(3570), - [anon_sym_L_SQUOTE] = ACTIONS(3570), - [anon_sym_u_SQUOTE] = ACTIONS(3570), - [anon_sym_U_SQUOTE] = ACTIONS(3570), - [anon_sym_u8_SQUOTE] = ACTIONS(3570), - [anon_sym_SQUOTE] = ACTIONS(3570), - [anon_sym_L_DQUOTE] = ACTIONS(3570), - [anon_sym_u_DQUOTE] = ACTIONS(3570), - [anon_sym_U_DQUOTE] = ACTIONS(3570), - [anon_sym_u8_DQUOTE] = ACTIONS(3570), - [anon_sym_DQUOTE] = ACTIONS(3570), - [sym_true] = ACTIONS(3568), - [sym_false] = ACTIONS(3568), - [anon_sym_NULL] = ACTIONS(3568), - [anon_sym_nullptr] = ACTIONS(3568), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3568), - [anon_sym_decltype] = ACTIONS(3568), - [anon_sym_template] = ACTIONS(3568), - [anon_sym_try] = ACTIONS(3568), - [anon_sym_delete] = ACTIONS(3568), - [anon_sym_throw] = ACTIONS(3568), - [anon_sym_co_return] = ACTIONS(3568), - [anon_sym_co_yield] = ACTIONS(3568), - [anon_sym_R_DQUOTE] = ACTIONS(3570), - [anon_sym_LR_DQUOTE] = ACTIONS(3570), - [anon_sym_uR_DQUOTE] = ACTIONS(3570), - [anon_sym_UR_DQUOTE] = ACTIONS(3570), - [anon_sym_u8R_DQUOTE] = ACTIONS(3570), - [anon_sym_co_await] = ACTIONS(3568), - [anon_sym_new] = ACTIONS(3568), - [anon_sym_requires] = ACTIONS(3568), - [anon_sym_CARET_CARET] = ACTIONS(3570), - [anon_sym_LBRACK_COLON] = ACTIONS(3570), - [sym_this] = ACTIONS(3568), - }, - [STATE(1245)] = { - [sym_identifier] = ACTIONS(3608), - [anon_sym_LPAREN2] = ACTIONS(3610), - [anon_sym_BANG] = ACTIONS(3610), - [anon_sym_TILDE] = ACTIONS(3610), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_STAR] = ACTIONS(3610), - [anon_sym_AMP] = ACTIONS(3610), - [anon_sym_SEMI] = ACTIONS(3610), - [anon_sym___extension__] = ACTIONS(3608), - [anon_sym_typedef] = ACTIONS(3608), - [anon_sym_virtual] = ACTIONS(3608), - [anon_sym_extern] = ACTIONS(3608), - [anon_sym___attribute__] = ACTIONS(3608), - [anon_sym___attribute] = ACTIONS(3608), - [anon_sym_COLON_COLON] = ACTIONS(3610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3610), - [anon_sym___declspec] = ACTIONS(3608), - [anon_sym_LBRACE] = ACTIONS(3610), - [anon_sym_signed] = ACTIONS(3608), - [anon_sym_unsigned] = ACTIONS(3608), - [anon_sym_long] = ACTIONS(3608), - [anon_sym_short] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3608), - [anon_sym_static] = ACTIONS(3608), - [anon_sym_register] = ACTIONS(3608), - [anon_sym_inline] = ACTIONS(3608), - [anon_sym___inline] = ACTIONS(3608), - [anon_sym___inline__] = ACTIONS(3608), - [anon_sym___forceinline] = ACTIONS(3608), - [anon_sym_thread_local] = ACTIONS(3608), - [anon_sym___thread] = ACTIONS(3608), - [anon_sym_const] = ACTIONS(3608), - [anon_sym_constexpr] = ACTIONS(3608), - [anon_sym_volatile] = ACTIONS(3608), - [anon_sym_restrict] = ACTIONS(3608), - [anon_sym___restrict__] = ACTIONS(3608), - [anon_sym__Atomic] = ACTIONS(3608), - [anon_sym__Noreturn] = ACTIONS(3608), - [anon_sym_noreturn] = ACTIONS(3608), - [anon_sym__Nonnull] = ACTIONS(3608), - [anon_sym_mutable] = ACTIONS(3608), - [anon_sym_constinit] = ACTIONS(3608), - [anon_sym_consteval] = ACTIONS(3608), - [anon_sym_alignas] = ACTIONS(3608), - [anon_sym__Alignas] = ACTIONS(3608), - [sym_primitive_type] = ACTIONS(3608), - [anon_sym_enum] = ACTIONS(3608), - [anon_sym_class] = ACTIONS(3608), - [anon_sym_struct] = ACTIONS(3608), - [anon_sym_union] = ACTIONS(3608), - [anon_sym_if] = ACTIONS(3608), - [anon_sym_else] = ACTIONS(3608), - [anon_sym_switch] = ACTIONS(3608), - [anon_sym_while] = ACTIONS(3608), - [anon_sym_do] = ACTIONS(3608), - [anon_sym_for] = ACTIONS(3608), - [anon_sym_return] = ACTIONS(3608), - [anon_sym_break] = ACTIONS(3608), - [anon_sym_continue] = ACTIONS(3608), - [anon_sym_goto] = ACTIONS(3608), - [anon_sym___try] = ACTIONS(3608), - [anon_sym___leave] = ACTIONS(3608), - [anon_sym_not] = ACTIONS(3608), - [anon_sym_compl] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3610), - [anon_sym_PLUS_PLUS] = ACTIONS(3610), - [anon_sym_sizeof] = ACTIONS(3608), - [anon_sym___alignof__] = ACTIONS(3608), - [anon_sym___alignof] = ACTIONS(3608), - [anon_sym__alignof] = ACTIONS(3608), - [anon_sym_alignof] = ACTIONS(3608), - [anon_sym__Alignof] = ACTIONS(3608), - [anon_sym_offsetof] = ACTIONS(3608), - [anon_sym__Generic] = ACTIONS(3608), - [anon_sym_typename] = ACTIONS(3608), - [anon_sym_asm] = ACTIONS(3608), - [anon_sym___asm__] = ACTIONS(3608), - [anon_sym___asm] = ACTIONS(3608), - [sym_number_literal] = ACTIONS(3610), - [anon_sym_L_SQUOTE] = ACTIONS(3610), - [anon_sym_u_SQUOTE] = ACTIONS(3610), - [anon_sym_U_SQUOTE] = ACTIONS(3610), - [anon_sym_u8_SQUOTE] = ACTIONS(3610), - [anon_sym_SQUOTE] = ACTIONS(3610), - [anon_sym_L_DQUOTE] = ACTIONS(3610), - [anon_sym_u_DQUOTE] = ACTIONS(3610), - [anon_sym_U_DQUOTE] = ACTIONS(3610), - [anon_sym_u8_DQUOTE] = ACTIONS(3610), - [anon_sym_DQUOTE] = ACTIONS(3610), - [sym_true] = ACTIONS(3608), - [sym_false] = ACTIONS(3608), - [anon_sym_NULL] = ACTIONS(3608), - [anon_sym_nullptr] = ACTIONS(3608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3608), - [anon_sym_decltype] = ACTIONS(3608), - [anon_sym_template] = ACTIONS(3608), - [anon_sym_try] = ACTIONS(3608), - [anon_sym_delete] = ACTIONS(3608), - [anon_sym_throw] = ACTIONS(3608), - [anon_sym_co_return] = ACTIONS(3608), - [anon_sym_co_yield] = ACTIONS(3608), - [anon_sym_R_DQUOTE] = ACTIONS(3610), - [anon_sym_LR_DQUOTE] = ACTIONS(3610), - [anon_sym_uR_DQUOTE] = ACTIONS(3610), - [anon_sym_UR_DQUOTE] = ACTIONS(3610), - [anon_sym_u8R_DQUOTE] = ACTIONS(3610), - [anon_sym_co_await] = ACTIONS(3608), - [anon_sym_new] = ACTIONS(3608), - [anon_sym_requires] = ACTIONS(3608), - [anon_sym_CARET_CARET] = ACTIONS(3610), - [anon_sym_LBRACK_COLON] = ACTIONS(3610), - [sym_this] = ACTIONS(3608), - }, - [STATE(1246)] = { - [sym_identifier] = ACTIONS(3556), - [anon_sym_LPAREN2] = ACTIONS(3558), - [anon_sym_BANG] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3556), - [anon_sym_PLUS] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3558), - [anon_sym_SEMI] = ACTIONS(3558), - [anon_sym___extension__] = ACTIONS(3556), - [anon_sym_typedef] = ACTIONS(3556), - [anon_sym_virtual] = ACTIONS(3556), - [anon_sym_extern] = ACTIONS(3556), - [anon_sym___attribute__] = ACTIONS(3556), - [anon_sym___attribute] = ACTIONS(3556), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3558), - [anon_sym___declspec] = ACTIONS(3556), - [anon_sym_LBRACE] = ACTIONS(3558), - [anon_sym_signed] = ACTIONS(3556), - [anon_sym_unsigned] = ACTIONS(3556), - [anon_sym_long] = ACTIONS(3556), - [anon_sym_short] = ACTIONS(3556), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3556), - [anon_sym_register] = ACTIONS(3556), - [anon_sym_inline] = ACTIONS(3556), - [anon_sym___inline] = ACTIONS(3556), - [anon_sym___inline__] = ACTIONS(3556), - [anon_sym___forceinline] = ACTIONS(3556), - [anon_sym_thread_local] = ACTIONS(3556), - [anon_sym___thread] = ACTIONS(3556), - [anon_sym_const] = ACTIONS(3556), - [anon_sym_constexpr] = ACTIONS(3556), - [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(3556), - [anon_sym__Alignas] = ACTIONS(3556), - [sym_primitive_type] = ACTIONS(3556), - [anon_sym_enum] = ACTIONS(3556), - [anon_sym_class] = ACTIONS(3556), - [anon_sym_struct] = ACTIONS(3556), - [anon_sym_union] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3556), - [anon_sym_else] = ACTIONS(3556), - [anon_sym_switch] = ACTIONS(3556), - [anon_sym_while] = ACTIONS(3556), - [anon_sym_do] = ACTIONS(3556), - [anon_sym_for] = ACTIONS(3556), - [anon_sym_return] = ACTIONS(3556), - [anon_sym_break] = ACTIONS(3556), - [anon_sym_continue] = ACTIONS(3556), - [anon_sym_goto] = ACTIONS(3556), - [anon_sym___try] = ACTIONS(3556), - [anon_sym___leave] = ACTIONS(3556), - [anon_sym_not] = ACTIONS(3556), - [anon_sym_compl] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3558), - [anon_sym_PLUS_PLUS] = ACTIONS(3558), - [anon_sym_sizeof] = ACTIONS(3556), - [anon_sym___alignof__] = ACTIONS(3556), - [anon_sym___alignof] = ACTIONS(3556), - [anon_sym__alignof] = ACTIONS(3556), - [anon_sym_alignof] = ACTIONS(3556), - [anon_sym__Alignof] = ACTIONS(3556), - [anon_sym_offsetof] = ACTIONS(3556), - [anon_sym__Generic] = ACTIONS(3556), - [anon_sym_typename] = ACTIONS(3556), - [anon_sym_asm] = ACTIONS(3556), - [anon_sym___asm__] = ACTIONS(3556), - [anon_sym___asm] = ACTIONS(3556), - [sym_number_literal] = ACTIONS(3558), - [anon_sym_L_SQUOTE] = ACTIONS(3558), - [anon_sym_u_SQUOTE] = ACTIONS(3558), - [anon_sym_U_SQUOTE] = ACTIONS(3558), - [anon_sym_u8_SQUOTE] = ACTIONS(3558), - [anon_sym_SQUOTE] = ACTIONS(3558), - [anon_sym_L_DQUOTE] = ACTIONS(3558), - [anon_sym_u_DQUOTE] = ACTIONS(3558), - [anon_sym_U_DQUOTE] = ACTIONS(3558), - [anon_sym_u8_DQUOTE] = ACTIONS(3558), - [anon_sym_DQUOTE] = ACTIONS(3558), - [sym_true] = ACTIONS(3556), - [sym_false] = ACTIONS(3556), - [anon_sym_NULL] = ACTIONS(3556), - [anon_sym_nullptr] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3556), - [anon_sym_decltype] = ACTIONS(3556), - [anon_sym_template] = ACTIONS(3556), - [anon_sym_try] = ACTIONS(3556), - [anon_sym_delete] = ACTIONS(3556), - [anon_sym_throw] = ACTIONS(3556), - [anon_sym_co_return] = ACTIONS(3556), - [anon_sym_co_yield] = ACTIONS(3556), - [anon_sym_R_DQUOTE] = ACTIONS(3558), - [anon_sym_LR_DQUOTE] = ACTIONS(3558), - [anon_sym_uR_DQUOTE] = ACTIONS(3558), - [anon_sym_UR_DQUOTE] = ACTIONS(3558), - [anon_sym_u8R_DQUOTE] = ACTIONS(3558), - [anon_sym_co_await] = ACTIONS(3556), - [anon_sym_new] = ACTIONS(3556), - [anon_sym_requires] = ACTIONS(3556), - [anon_sym_CARET_CARET] = ACTIONS(3558), - [anon_sym_LBRACK_COLON] = ACTIONS(3558), - [sym_this] = ACTIONS(3556), - }, - [STATE(1247)] = { - [sym_identifier] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym___try] = ACTIONS(3600), - [anon_sym___leave] = ACTIONS(3600), - [anon_sym_not] = ACTIONS(3600), - [anon_sym_compl] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(3600), - [anon_sym___alignof] = ACTIONS(3600), - [anon_sym__alignof] = ACTIONS(3600), - [anon_sym_alignof] = ACTIONS(3600), - [anon_sym__Alignof] = ACTIONS(3600), - [anon_sym_offsetof] = ACTIONS(3600), - [anon_sym__Generic] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [anon_sym_asm] = ACTIONS(3600), - [anon_sym___asm__] = ACTIONS(3600), - [anon_sym___asm] = ACTIONS(3600), - [sym_number_literal] = ACTIONS(3602), - [anon_sym_L_SQUOTE] = ACTIONS(3602), - [anon_sym_u_SQUOTE] = ACTIONS(3602), - [anon_sym_U_SQUOTE] = ACTIONS(3602), - [anon_sym_u8_SQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_L_DQUOTE] = ACTIONS(3602), - [anon_sym_u_DQUOTE] = ACTIONS(3602), - [anon_sym_U_DQUOTE] = ACTIONS(3602), - [anon_sym_u8_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [anon_sym_NULL] = ACTIONS(3600), - [anon_sym_nullptr] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_co_return] = ACTIONS(3600), - [anon_sym_co_yield] = ACTIONS(3600), - [anon_sym_R_DQUOTE] = ACTIONS(3602), - [anon_sym_LR_DQUOTE] = ACTIONS(3602), - [anon_sym_uR_DQUOTE] = ACTIONS(3602), - [anon_sym_UR_DQUOTE] = ACTIONS(3602), - [anon_sym_u8R_DQUOTE] = ACTIONS(3602), - [anon_sym_co_await] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_requires] = ACTIONS(3600), - [anon_sym_CARET_CARET] = ACTIONS(3602), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - [sym_this] = ACTIONS(3600), - }, - [STATE(1248)] = { - [sym_expression] = STATE(7156), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_lambda_default_capture] = STATE(10396), - [sym__lambda_capture_identifier] = STATE(9680), - [sym_lambda_capture_initializer] = STATE(9680), - [sym__lambda_capture] = STATE(9680), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_identifier_parameter_pack_expansion] = STATE(9680), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5873), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(5920), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5922), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5924), - [anon_sym_AMP] = ACTIONS(5926), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(5928), - [anon_sym_EQ] = ACTIONS(5930), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(5932), - }, - [STATE(1249)] = { - [sym_identifier] = ACTIONS(3596), - [anon_sym_LPAREN2] = ACTIONS(3598), - [anon_sym_BANG] = ACTIONS(3598), - [anon_sym_TILDE] = ACTIONS(3598), - [anon_sym_DASH] = ACTIONS(3596), - [anon_sym_PLUS] = ACTIONS(3596), - [anon_sym_STAR] = ACTIONS(3598), - [anon_sym_AMP] = ACTIONS(3598), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym___extension__] = ACTIONS(3596), - [anon_sym_typedef] = ACTIONS(3596), - [anon_sym_virtual] = ACTIONS(3596), - [anon_sym_extern] = ACTIONS(3596), - [anon_sym___attribute__] = ACTIONS(3596), - [anon_sym___attribute] = ACTIONS(3596), - [anon_sym_COLON_COLON] = ACTIONS(3598), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), - [anon_sym___declspec] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_signed] = ACTIONS(3596), - [anon_sym_unsigned] = ACTIONS(3596), - [anon_sym_long] = ACTIONS(3596), - [anon_sym_short] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3596), - [anon_sym_static] = ACTIONS(3596), - [anon_sym_register] = ACTIONS(3596), - [anon_sym_inline] = ACTIONS(3596), - [anon_sym___inline] = ACTIONS(3596), - [anon_sym___inline__] = ACTIONS(3596), - [anon_sym___forceinline] = ACTIONS(3596), - [anon_sym_thread_local] = ACTIONS(3596), - [anon_sym___thread] = ACTIONS(3596), - [anon_sym_const] = ACTIONS(3596), - [anon_sym_constexpr] = ACTIONS(3596), - [anon_sym_volatile] = ACTIONS(3596), - [anon_sym_restrict] = ACTIONS(3596), - [anon_sym___restrict__] = ACTIONS(3596), - [anon_sym__Atomic] = ACTIONS(3596), - [anon_sym__Noreturn] = ACTIONS(3596), - [anon_sym_noreturn] = ACTIONS(3596), - [anon_sym__Nonnull] = ACTIONS(3596), - [anon_sym_mutable] = ACTIONS(3596), - [anon_sym_constinit] = ACTIONS(3596), - [anon_sym_consteval] = ACTIONS(3596), - [anon_sym_alignas] = ACTIONS(3596), - [anon_sym__Alignas] = ACTIONS(3596), - [sym_primitive_type] = ACTIONS(3596), - [anon_sym_enum] = ACTIONS(3596), - [anon_sym_class] = ACTIONS(3596), - [anon_sym_struct] = ACTIONS(3596), - [anon_sym_union] = ACTIONS(3596), - [anon_sym_if] = ACTIONS(3596), - [anon_sym_else] = ACTIONS(3596), - [anon_sym_switch] = ACTIONS(3596), - [anon_sym_while] = ACTIONS(3596), - [anon_sym_do] = ACTIONS(3596), - [anon_sym_for] = ACTIONS(3596), - [anon_sym_return] = ACTIONS(3596), - [anon_sym_break] = ACTIONS(3596), - [anon_sym_continue] = ACTIONS(3596), - [anon_sym_goto] = ACTIONS(3596), - [anon_sym___try] = ACTIONS(3596), - [anon_sym___leave] = ACTIONS(3596), - [anon_sym_not] = ACTIONS(3596), - [anon_sym_compl] = ACTIONS(3596), - [anon_sym_DASH_DASH] = ACTIONS(3598), - [anon_sym_PLUS_PLUS] = ACTIONS(3598), - [anon_sym_sizeof] = ACTIONS(3596), - [anon_sym___alignof__] = ACTIONS(3596), - [anon_sym___alignof] = ACTIONS(3596), - [anon_sym__alignof] = ACTIONS(3596), - [anon_sym_alignof] = ACTIONS(3596), - [anon_sym__Alignof] = ACTIONS(3596), - [anon_sym_offsetof] = ACTIONS(3596), - [anon_sym__Generic] = ACTIONS(3596), - [anon_sym_typename] = ACTIONS(3596), - [anon_sym_asm] = ACTIONS(3596), - [anon_sym___asm__] = ACTIONS(3596), - [anon_sym___asm] = ACTIONS(3596), - [sym_number_literal] = ACTIONS(3598), - [anon_sym_L_SQUOTE] = ACTIONS(3598), - [anon_sym_u_SQUOTE] = ACTIONS(3598), - [anon_sym_U_SQUOTE] = ACTIONS(3598), - [anon_sym_u8_SQUOTE] = ACTIONS(3598), - [anon_sym_SQUOTE] = ACTIONS(3598), - [anon_sym_L_DQUOTE] = ACTIONS(3598), - [anon_sym_u_DQUOTE] = ACTIONS(3598), - [anon_sym_U_DQUOTE] = ACTIONS(3598), - [anon_sym_u8_DQUOTE] = ACTIONS(3598), - [anon_sym_DQUOTE] = ACTIONS(3598), - [sym_true] = ACTIONS(3596), - [sym_false] = ACTIONS(3596), - [anon_sym_NULL] = ACTIONS(3596), - [anon_sym_nullptr] = ACTIONS(3596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3596), - [anon_sym_decltype] = ACTIONS(3596), - [anon_sym_template] = ACTIONS(3596), - [anon_sym_try] = ACTIONS(3596), - [anon_sym_delete] = ACTIONS(3596), - [anon_sym_throw] = ACTIONS(3596), - [anon_sym_co_return] = ACTIONS(3596), - [anon_sym_co_yield] = ACTIONS(3596), - [anon_sym_R_DQUOTE] = ACTIONS(3598), - [anon_sym_LR_DQUOTE] = ACTIONS(3598), - [anon_sym_uR_DQUOTE] = ACTIONS(3598), - [anon_sym_UR_DQUOTE] = ACTIONS(3598), - [anon_sym_u8R_DQUOTE] = ACTIONS(3598), - [anon_sym_co_await] = ACTIONS(3596), - [anon_sym_new] = ACTIONS(3596), - [anon_sym_requires] = ACTIONS(3596), - [anon_sym_CARET_CARET] = ACTIONS(3598), - [anon_sym_LBRACK_COLON] = ACTIONS(3598), - [sym_this] = ACTIONS(3596), - }, - [STATE(1250)] = { - [sym_identifier] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3620), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), - }, - [STATE(1251)] = { - [sym_identifier] = ACTIONS(3532), - [anon_sym_LPAREN2] = ACTIONS(3534), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(3534), - [anon_sym_AMP] = ACTIONS(3534), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym___extension__] = ACTIONS(3532), - [anon_sym_typedef] = ACTIONS(3532), - [anon_sym_virtual] = ACTIONS(3532), - [anon_sym_extern] = ACTIONS(3532), - [anon_sym___attribute__] = ACTIONS(3532), - [anon_sym___attribute] = ACTIONS(3532), - [anon_sym_COLON_COLON] = ACTIONS(3534), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3534), - [anon_sym___declspec] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_signed] = ACTIONS(3532), - [anon_sym_unsigned] = ACTIONS(3532), - [anon_sym_long] = ACTIONS(3532), - [anon_sym_short] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3532), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_register] = ACTIONS(3532), - [anon_sym_inline] = ACTIONS(3532), - [anon_sym___inline] = ACTIONS(3532), - [anon_sym___inline__] = ACTIONS(3532), - [anon_sym___forceinline] = ACTIONS(3532), - [anon_sym_thread_local] = ACTIONS(3532), - [anon_sym___thread] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_constexpr] = ACTIONS(3532), - [anon_sym_volatile] = ACTIONS(3532), - [anon_sym_restrict] = ACTIONS(3532), - [anon_sym___restrict__] = ACTIONS(3532), - [anon_sym__Atomic] = ACTIONS(3532), - [anon_sym__Noreturn] = ACTIONS(3532), - [anon_sym_noreturn] = ACTIONS(3532), - [anon_sym__Nonnull] = ACTIONS(3532), - [anon_sym_mutable] = ACTIONS(3532), - [anon_sym_constinit] = ACTIONS(3532), - [anon_sym_consteval] = ACTIONS(3532), - [anon_sym_alignas] = ACTIONS(3532), - [anon_sym__Alignas] = ACTIONS(3532), - [sym_primitive_type] = ACTIONS(3532), - [anon_sym_enum] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3532), - [anon_sym_struct] = ACTIONS(3532), - [anon_sym_union] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_else] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_goto] = ACTIONS(3532), - [anon_sym___try] = ACTIONS(3532), - [anon_sym___leave] = ACTIONS(3532), - [anon_sym_not] = ACTIONS(3532), - [anon_sym_compl] = ACTIONS(3532), - [anon_sym_DASH_DASH] = ACTIONS(3534), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_sizeof] = ACTIONS(3532), - [anon_sym___alignof__] = ACTIONS(3532), - [anon_sym___alignof] = ACTIONS(3532), - [anon_sym__alignof] = ACTIONS(3532), - [anon_sym_alignof] = ACTIONS(3532), - [anon_sym__Alignof] = ACTIONS(3532), - [anon_sym_offsetof] = ACTIONS(3532), - [anon_sym__Generic] = ACTIONS(3532), - [anon_sym_typename] = ACTIONS(3532), - [anon_sym_asm] = ACTIONS(3532), - [anon_sym___asm__] = ACTIONS(3532), - [anon_sym___asm] = ACTIONS(3532), - [sym_number_literal] = ACTIONS(3534), - [anon_sym_L_SQUOTE] = ACTIONS(3534), - [anon_sym_u_SQUOTE] = ACTIONS(3534), - [anon_sym_U_SQUOTE] = ACTIONS(3534), - [anon_sym_u8_SQUOTE] = ACTIONS(3534), - [anon_sym_SQUOTE] = ACTIONS(3534), - [anon_sym_L_DQUOTE] = ACTIONS(3534), - [anon_sym_u_DQUOTE] = ACTIONS(3534), - [anon_sym_U_DQUOTE] = ACTIONS(3534), - [anon_sym_u8_DQUOTE] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [sym_true] = ACTIONS(3532), - [sym_false] = ACTIONS(3532), - [anon_sym_NULL] = ACTIONS(3532), - [anon_sym_nullptr] = ACTIONS(3532), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3532), - [anon_sym_decltype] = ACTIONS(3532), - [anon_sym_template] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_delete] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_co_return] = ACTIONS(3532), - [anon_sym_co_yield] = ACTIONS(3532), - [anon_sym_R_DQUOTE] = ACTIONS(3534), - [anon_sym_LR_DQUOTE] = ACTIONS(3534), - [anon_sym_uR_DQUOTE] = ACTIONS(3534), - [anon_sym_UR_DQUOTE] = ACTIONS(3534), - [anon_sym_u8R_DQUOTE] = ACTIONS(3534), - [anon_sym_co_await] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_requires] = ACTIONS(3532), - [anon_sym_CARET_CARET] = ACTIONS(3534), - [anon_sym_LBRACK_COLON] = ACTIONS(3534), - [sym_this] = ACTIONS(3532), - }, - [STATE(1252)] = { - [sym_identifier] = ACTIONS(3564), - [anon_sym_LPAREN2] = ACTIONS(3566), - [anon_sym_BANG] = ACTIONS(3566), - [anon_sym_TILDE] = ACTIONS(3566), - [anon_sym_DASH] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3564), - [anon_sym_STAR] = ACTIONS(3566), - [anon_sym_AMP] = ACTIONS(3566), - [anon_sym_SEMI] = ACTIONS(3566), - [anon_sym___extension__] = ACTIONS(3564), - [anon_sym_typedef] = ACTIONS(3564), - [anon_sym_virtual] = ACTIONS(3564), - [anon_sym_extern] = ACTIONS(3564), - [anon_sym___attribute__] = ACTIONS(3564), - [anon_sym___attribute] = ACTIONS(3564), - [anon_sym_COLON_COLON] = ACTIONS(3566), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3566), - [anon_sym___declspec] = ACTIONS(3564), - [anon_sym_LBRACE] = ACTIONS(3566), - [anon_sym_signed] = ACTIONS(3564), - [anon_sym_unsigned] = ACTIONS(3564), - [anon_sym_long] = ACTIONS(3564), - [anon_sym_short] = ACTIONS(3564), - [anon_sym_LBRACK] = ACTIONS(3564), - [anon_sym_static] = ACTIONS(3564), - [anon_sym_register] = ACTIONS(3564), - [anon_sym_inline] = ACTIONS(3564), - [anon_sym___inline] = ACTIONS(3564), - [anon_sym___inline__] = ACTIONS(3564), - [anon_sym___forceinline] = ACTIONS(3564), - [anon_sym_thread_local] = ACTIONS(3564), - [anon_sym___thread] = ACTIONS(3564), - [anon_sym_const] = ACTIONS(3564), - [anon_sym_constexpr] = ACTIONS(3564), - [anon_sym_volatile] = ACTIONS(3564), - [anon_sym_restrict] = ACTIONS(3564), - [anon_sym___restrict__] = ACTIONS(3564), - [anon_sym__Atomic] = ACTIONS(3564), - [anon_sym__Noreturn] = ACTIONS(3564), - [anon_sym_noreturn] = ACTIONS(3564), - [anon_sym__Nonnull] = ACTIONS(3564), - [anon_sym_mutable] = ACTIONS(3564), - [anon_sym_constinit] = ACTIONS(3564), - [anon_sym_consteval] = ACTIONS(3564), - [anon_sym_alignas] = ACTIONS(3564), - [anon_sym__Alignas] = ACTIONS(3564), - [sym_primitive_type] = ACTIONS(3564), - [anon_sym_enum] = ACTIONS(3564), - [anon_sym_class] = ACTIONS(3564), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_union] = ACTIONS(3564), - [anon_sym_if] = ACTIONS(3564), - [anon_sym_else] = ACTIONS(3564), - [anon_sym_switch] = ACTIONS(3564), - [anon_sym_while] = ACTIONS(3564), - [anon_sym_do] = ACTIONS(3564), - [anon_sym_for] = ACTIONS(3564), - [anon_sym_return] = ACTIONS(3564), - [anon_sym_break] = ACTIONS(3564), - [anon_sym_continue] = ACTIONS(3564), - [anon_sym_goto] = ACTIONS(3564), - [anon_sym___try] = ACTIONS(3564), - [anon_sym___leave] = ACTIONS(3564), - [anon_sym_not] = ACTIONS(3564), - [anon_sym_compl] = ACTIONS(3564), - [anon_sym_DASH_DASH] = ACTIONS(3566), - [anon_sym_PLUS_PLUS] = ACTIONS(3566), - [anon_sym_sizeof] = ACTIONS(3564), - [anon_sym___alignof__] = ACTIONS(3564), - [anon_sym___alignof] = ACTIONS(3564), - [anon_sym__alignof] = ACTIONS(3564), - [anon_sym_alignof] = ACTIONS(3564), - [anon_sym__Alignof] = ACTIONS(3564), - [anon_sym_offsetof] = ACTIONS(3564), - [anon_sym__Generic] = ACTIONS(3564), - [anon_sym_typename] = ACTIONS(3564), - [anon_sym_asm] = ACTIONS(3564), - [anon_sym___asm__] = ACTIONS(3564), - [anon_sym___asm] = ACTIONS(3564), - [sym_number_literal] = ACTIONS(3566), - [anon_sym_L_SQUOTE] = ACTIONS(3566), - [anon_sym_u_SQUOTE] = ACTIONS(3566), - [anon_sym_U_SQUOTE] = ACTIONS(3566), - [anon_sym_u8_SQUOTE] = ACTIONS(3566), - [anon_sym_SQUOTE] = ACTIONS(3566), - [anon_sym_L_DQUOTE] = ACTIONS(3566), - [anon_sym_u_DQUOTE] = ACTIONS(3566), - [anon_sym_U_DQUOTE] = ACTIONS(3566), - [anon_sym_u8_DQUOTE] = ACTIONS(3566), - [anon_sym_DQUOTE] = ACTIONS(3566), - [sym_true] = ACTIONS(3564), - [sym_false] = ACTIONS(3564), - [anon_sym_NULL] = ACTIONS(3564), - [anon_sym_nullptr] = ACTIONS(3564), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3564), - [anon_sym_decltype] = ACTIONS(3564), - [anon_sym_template] = ACTIONS(3564), - [anon_sym_try] = ACTIONS(3564), - [anon_sym_delete] = ACTIONS(3564), - [anon_sym_throw] = ACTIONS(3564), - [anon_sym_co_return] = ACTIONS(3564), - [anon_sym_co_yield] = ACTIONS(3564), - [anon_sym_R_DQUOTE] = ACTIONS(3566), - [anon_sym_LR_DQUOTE] = ACTIONS(3566), - [anon_sym_uR_DQUOTE] = ACTIONS(3566), - [anon_sym_UR_DQUOTE] = ACTIONS(3566), - [anon_sym_u8R_DQUOTE] = ACTIONS(3566), - [anon_sym_co_await] = ACTIONS(3564), - [anon_sym_new] = ACTIONS(3564), - [anon_sym_requires] = ACTIONS(3564), - [anon_sym_CARET_CARET] = ACTIONS(3566), - [anon_sym_LBRACK_COLON] = ACTIONS(3566), - [sym_this] = ACTIONS(3564), - }, - [STATE(1253)] = { - [sym_identifier] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_BANG] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_DASH] = ACTIONS(3618), - [anon_sym_PLUS] = ACTIONS(3618), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3620), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym_LBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_if] = ACTIONS(3618), - [anon_sym_else] = ACTIONS(3618), - [anon_sym_switch] = ACTIONS(3618), - [anon_sym_while] = ACTIONS(3618), - [anon_sym_do] = ACTIONS(3618), - [anon_sym_for] = ACTIONS(3618), - [anon_sym_return] = ACTIONS(3618), - [anon_sym_break] = ACTIONS(3618), - [anon_sym_continue] = ACTIONS(3618), - [anon_sym_goto] = ACTIONS(3618), - [anon_sym___try] = ACTIONS(3618), - [anon_sym___leave] = ACTIONS(3618), - [anon_sym_not] = ACTIONS(3618), - [anon_sym_compl] = ACTIONS(3618), - [anon_sym_DASH_DASH] = ACTIONS(3620), - [anon_sym_PLUS_PLUS] = ACTIONS(3620), - [anon_sym_sizeof] = ACTIONS(3618), - [anon_sym___alignof__] = ACTIONS(3618), - [anon_sym___alignof] = ACTIONS(3618), - [anon_sym__alignof] = ACTIONS(3618), - [anon_sym_alignof] = ACTIONS(3618), - [anon_sym__Alignof] = ACTIONS(3618), - [anon_sym_offsetof] = ACTIONS(3618), - [anon_sym__Generic] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [anon_sym_asm] = ACTIONS(3618), - [anon_sym___asm__] = ACTIONS(3618), - [anon_sym___asm] = ACTIONS(3618), - [sym_number_literal] = ACTIONS(3620), - [anon_sym_L_SQUOTE] = ACTIONS(3620), - [anon_sym_u_SQUOTE] = ACTIONS(3620), - [anon_sym_U_SQUOTE] = ACTIONS(3620), - [anon_sym_u8_SQUOTE] = ACTIONS(3620), - [anon_sym_SQUOTE] = ACTIONS(3620), - [anon_sym_L_DQUOTE] = ACTIONS(3620), - [anon_sym_u_DQUOTE] = ACTIONS(3620), - [anon_sym_U_DQUOTE] = ACTIONS(3620), - [anon_sym_u8_DQUOTE] = ACTIONS(3620), - [anon_sym_DQUOTE] = ACTIONS(3620), - [sym_true] = ACTIONS(3618), - [sym_false] = ACTIONS(3618), - [anon_sym_NULL] = ACTIONS(3618), - [anon_sym_nullptr] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_try] = ACTIONS(3618), - [anon_sym_delete] = ACTIONS(3618), - [anon_sym_throw] = ACTIONS(3618), - [anon_sym_co_return] = ACTIONS(3618), - [anon_sym_co_yield] = ACTIONS(3618), - [anon_sym_R_DQUOTE] = ACTIONS(3620), - [anon_sym_LR_DQUOTE] = ACTIONS(3620), - [anon_sym_uR_DQUOTE] = ACTIONS(3620), - [anon_sym_UR_DQUOTE] = ACTIONS(3620), - [anon_sym_u8R_DQUOTE] = ACTIONS(3620), - [anon_sym_co_await] = ACTIONS(3618), - [anon_sym_new] = ACTIONS(3618), - [anon_sym_requires] = ACTIONS(3618), - [anon_sym_CARET_CARET] = ACTIONS(3620), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - [sym_this] = ACTIONS(3618), - }, - [STATE(1254)] = { - [sym_identifier] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_DASH] = ACTIONS(3600), - [anon_sym_PLUS] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3602), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_if] = ACTIONS(3600), - [anon_sym_else] = ACTIONS(3600), - [anon_sym_switch] = ACTIONS(3600), - [anon_sym_while] = ACTIONS(3600), - [anon_sym_do] = ACTIONS(3600), - [anon_sym_for] = ACTIONS(3600), - [anon_sym_return] = ACTIONS(3600), - [anon_sym_break] = ACTIONS(3600), - [anon_sym_continue] = ACTIONS(3600), - [anon_sym_goto] = ACTIONS(3600), - [anon_sym___try] = ACTIONS(3600), - [anon_sym___leave] = ACTIONS(3600), - [anon_sym_not] = ACTIONS(3600), - [anon_sym_compl] = ACTIONS(3600), - [anon_sym_DASH_DASH] = ACTIONS(3602), - [anon_sym_PLUS_PLUS] = ACTIONS(3602), - [anon_sym_sizeof] = ACTIONS(3600), - [anon_sym___alignof__] = ACTIONS(3600), - [anon_sym___alignof] = ACTIONS(3600), - [anon_sym__alignof] = ACTIONS(3600), - [anon_sym_alignof] = ACTIONS(3600), - [anon_sym__Alignof] = ACTIONS(3600), - [anon_sym_offsetof] = ACTIONS(3600), - [anon_sym__Generic] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [anon_sym_asm] = ACTIONS(3600), - [anon_sym___asm__] = ACTIONS(3600), - [anon_sym___asm] = ACTIONS(3600), - [sym_number_literal] = ACTIONS(3602), - [anon_sym_L_SQUOTE] = ACTIONS(3602), - [anon_sym_u_SQUOTE] = ACTIONS(3602), - [anon_sym_U_SQUOTE] = ACTIONS(3602), - [anon_sym_u8_SQUOTE] = ACTIONS(3602), - [anon_sym_SQUOTE] = ACTIONS(3602), - [anon_sym_L_DQUOTE] = ACTIONS(3602), - [anon_sym_u_DQUOTE] = ACTIONS(3602), - [anon_sym_U_DQUOTE] = ACTIONS(3602), - [anon_sym_u8_DQUOTE] = ACTIONS(3602), - [anon_sym_DQUOTE] = ACTIONS(3602), - [sym_true] = ACTIONS(3600), - [sym_false] = ACTIONS(3600), - [anon_sym_NULL] = ACTIONS(3600), - [anon_sym_nullptr] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_try] = ACTIONS(3600), - [anon_sym_delete] = ACTIONS(3600), - [anon_sym_throw] = ACTIONS(3600), - [anon_sym_co_return] = ACTIONS(3600), - [anon_sym_co_yield] = ACTIONS(3600), - [anon_sym_R_DQUOTE] = ACTIONS(3602), - [anon_sym_LR_DQUOTE] = ACTIONS(3602), - [anon_sym_uR_DQUOTE] = ACTIONS(3602), - [anon_sym_UR_DQUOTE] = ACTIONS(3602), - [anon_sym_u8R_DQUOTE] = ACTIONS(3602), - [anon_sym_co_await] = ACTIONS(3600), - [anon_sym_new] = ACTIONS(3600), - [anon_sym_requires] = ACTIONS(3600), - [anon_sym_CARET_CARET] = ACTIONS(3602), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - [sym_this] = ACTIONS(3600), - }, - [STATE(1255)] = { - [sym_identifier] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), - }, - [STATE(1256)] = { - [sym_identifier] = ACTIONS(3654), - [anon_sym_LPAREN2] = ACTIONS(3656), - [anon_sym_BANG] = ACTIONS(3656), - [anon_sym_TILDE] = ACTIONS(3656), - [anon_sym_DASH] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3654), - [anon_sym_STAR] = ACTIONS(3656), - [anon_sym_AMP] = ACTIONS(3656), - [anon_sym_SEMI] = ACTIONS(3656), - [anon_sym___extension__] = ACTIONS(3654), - [anon_sym_typedef] = ACTIONS(3654), - [anon_sym_virtual] = ACTIONS(3654), - [anon_sym_extern] = ACTIONS(3654), - [anon_sym___attribute__] = ACTIONS(3654), - [anon_sym___attribute] = ACTIONS(3654), - [anon_sym_COLON_COLON] = ACTIONS(3656), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3656), - [anon_sym___declspec] = ACTIONS(3654), - [anon_sym_LBRACE] = ACTIONS(3656), - [anon_sym_signed] = ACTIONS(3654), - [anon_sym_unsigned] = ACTIONS(3654), - [anon_sym_long] = ACTIONS(3654), - [anon_sym_short] = ACTIONS(3654), - [anon_sym_LBRACK] = ACTIONS(3654), - [anon_sym_static] = ACTIONS(3654), - [anon_sym_register] = ACTIONS(3654), - [anon_sym_inline] = ACTIONS(3654), - [anon_sym___inline] = ACTIONS(3654), - [anon_sym___inline__] = ACTIONS(3654), - [anon_sym___forceinline] = ACTIONS(3654), - [anon_sym_thread_local] = ACTIONS(3654), - [anon_sym___thread] = ACTIONS(3654), - [anon_sym_const] = ACTIONS(3654), - [anon_sym_constexpr] = ACTIONS(3654), - [anon_sym_volatile] = ACTIONS(3654), - [anon_sym_restrict] = ACTIONS(3654), - [anon_sym___restrict__] = ACTIONS(3654), - [anon_sym__Atomic] = ACTIONS(3654), - [anon_sym__Noreturn] = ACTIONS(3654), - [anon_sym_noreturn] = ACTIONS(3654), - [anon_sym__Nonnull] = ACTIONS(3654), - [anon_sym_mutable] = ACTIONS(3654), - [anon_sym_constinit] = ACTIONS(3654), - [anon_sym_consteval] = ACTIONS(3654), - [anon_sym_alignas] = ACTIONS(3654), - [anon_sym__Alignas] = ACTIONS(3654), - [sym_primitive_type] = ACTIONS(3654), - [anon_sym_enum] = ACTIONS(3654), - [anon_sym_class] = ACTIONS(3654), - [anon_sym_struct] = ACTIONS(3654), - [anon_sym_union] = ACTIONS(3654), - [anon_sym_if] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3654), - [anon_sym_switch] = ACTIONS(3654), - [anon_sym_while] = ACTIONS(3654), - [anon_sym_do] = ACTIONS(3654), - [anon_sym_for] = ACTIONS(3654), - [anon_sym_return] = ACTIONS(3654), - [anon_sym_break] = ACTIONS(3654), - [anon_sym_continue] = ACTIONS(3654), - [anon_sym_goto] = ACTIONS(3654), - [anon_sym___try] = ACTIONS(3654), - [anon_sym___leave] = ACTIONS(3654), - [anon_sym_not] = ACTIONS(3654), - [anon_sym_compl] = ACTIONS(3654), - [anon_sym_DASH_DASH] = ACTIONS(3656), - [anon_sym_PLUS_PLUS] = ACTIONS(3656), - [anon_sym_sizeof] = ACTIONS(3654), - [anon_sym___alignof__] = ACTIONS(3654), - [anon_sym___alignof] = ACTIONS(3654), - [anon_sym__alignof] = ACTIONS(3654), - [anon_sym_alignof] = ACTIONS(3654), - [anon_sym__Alignof] = ACTIONS(3654), - [anon_sym_offsetof] = ACTIONS(3654), - [anon_sym__Generic] = ACTIONS(3654), - [anon_sym_typename] = ACTIONS(3654), - [anon_sym_asm] = ACTIONS(3654), - [anon_sym___asm__] = ACTIONS(3654), - [anon_sym___asm] = ACTIONS(3654), - [sym_number_literal] = ACTIONS(3656), - [anon_sym_L_SQUOTE] = ACTIONS(3656), - [anon_sym_u_SQUOTE] = ACTIONS(3656), - [anon_sym_U_SQUOTE] = ACTIONS(3656), - [anon_sym_u8_SQUOTE] = ACTIONS(3656), - [anon_sym_SQUOTE] = ACTIONS(3656), - [anon_sym_L_DQUOTE] = ACTIONS(3656), - [anon_sym_u_DQUOTE] = ACTIONS(3656), - [anon_sym_U_DQUOTE] = ACTIONS(3656), - [anon_sym_u8_DQUOTE] = ACTIONS(3656), - [anon_sym_DQUOTE] = ACTIONS(3656), - [sym_true] = ACTIONS(3654), - [sym_false] = ACTIONS(3654), - [anon_sym_NULL] = ACTIONS(3654), - [anon_sym_nullptr] = ACTIONS(3654), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3654), - [anon_sym_decltype] = ACTIONS(3654), - [anon_sym_template] = ACTIONS(3654), - [anon_sym_try] = ACTIONS(3654), - [anon_sym_delete] = ACTIONS(3654), - [anon_sym_throw] = ACTIONS(3654), - [anon_sym_co_return] = ACTIONS(3654), - [anon_sym_co_yield] = ACTIONS(3654), - [anon_sym_R_DQUOTE] = ACTIONS(3656), - [anon_sym_LR_DQUOTE] = ACTIONS(3656), - [anon_sym_uR_DQUOTE] = ACTIONS(3656), - [anon_sym_UR_DQUOTE] = ACTIONS(3656), - [anon_sym_u8R_DQUOTE] = ACTIONS(3656), - [anon_sym_co_await] = ACTIONS(3654), - [anon_sym_new] = ACTIONS(3654), - [anon_sym_requires] = ACTIONS(3654), - [anon_sym_CARET_CARET] = ACTIONS(3656), - [anon_sym_LBRACK_COLON] = ACTIONS(3656), - [sym_this] = ACTIONS(3654), - }, - [STATE(1257)] = { - [sym_identifier] = ACTIONS(3670), - [anon_sym_LPAREN2] = ACTIONS(3672), - [anon_sym_BANG] = ACTIONS(3672), - [anon_sym_TILDE] = ACTIONS(3672), - [anon_sym_DASH] = ACTIONS(3670), - [anon_sym_PLUS] = ACTIONS(3670), - [anon_sym_STAR] = ACTIONS(3672), - [anon_sym_AMP] = ACTIONS(3672), - [anon_sym_SEMI] = ACTIONS(3672), - [anon_sym___extension__] = ACTIONS(3670), - [anon_sym_typedef] = ACTIONS(3670), - [anon_sym_virtual] = ACTIONS(3670), - [anon_sym_extern] = ACTIONS(3670), - [anon_sym___attribute__] = ACTIONS(3670), - [anon_sym___attribute] = ACTIONS(3670), - [anon_sym_COLON_COLON] = ACTIONS(3672), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3672), - [anon_sym___declspec] = ACTIONS(3670), - [anon_sym_LBRACE] = ACTIONS(3672), - [anon_sym_signed] = ACTIONS(3670), - [anon_sym_unsigned] = ACTIONS(3670), - [anon_sym_long] = ACTIONS(3670), - [anon_sym_short] = ACTIONS(3670), - [anon_sym_LBRACK] = ACTIONS(3670), - [anon_sym_static] = ACTIONS(3670), - [anon_sym_register] = ACTIONS(3670), - [anon_sym_inline] = ACTIONS(3670), - [anon_sym___inline] = ACTIONS(3670), - [anon_sym___inline__] = ACTIONS(3670), - [anon_sym___forceinline] = ACTIONS(3670), - [anon_sym_thread_local] = ACTIONS(3670), - [anon_sym___thread] = ACTIONS(3670), - [anon_sym_const] = ACTIONS(3670), - [anon_sym_constexpr] = ACTIONS(3670), - [anon_sym_volatile] = ACTIONS(3670), - [anon_sym_restrict] = ACTIONS(3670), - [anon_sym___restrict__] = ACTIONS(3670), - [anon_sym__Atomic] = ACTIONS(3670), - [anon_sym__Noreturn] = ACTIONS(3670), - [anon_sym_noreturn] = ACTIONS(3670), - [anon_sym__Nonnull] = ACTIONS(3670), - [anon_sym_mutable] = ACTIONS(3670), - [anon_sym_constinit] = ACTIONS(3670), - [anon_sym_consteval] = ACTIONS(3670), - [anon_sym_alignas] = ACTIONS(3670), - [anon_sym__Alignas] = ACTIONS(3670), - [sym_primitive_type] = ACTIONS(3670), - [anon_sym_enum] = ACTIONS(3670), - [anon_sym_class] = ACTIONS(3670), - [anon_sym_struct] = ACTIONS(3670), - [anon_sym_union] = ACTIONS(3670), - [anon_sym_if] = ACTIONS(3670), - [anon_sym_else] = ACTIONS(3670), - [anon_sym_switch] = ACTIONS(3670), - [anon_sym_while] = ACTIONS(3670), - [anon_sym_do] = ACTIONS(3670), - [anon_sym_for] = ACTIONS(3670), - [anon_sym_return] = ACTIONS(3670), - [anon_sym_break] = ACTIONS(3670), - [anon_sym_continue] = ACTIONS(3670), - [anon_sym_goto] = ACTIONS(3670), - [anon_sym___try] = ACTIONS(3670), - [anon_sym___leave] = ACTIONS(3670), - [anon_sym_not] = ACTIONS(3670), - [anon_sym_compl] = ACTIONS(3670), - [anon_sym_DASH_DASH] = ACTIONS(3672), - [anon_sym_PLUS_PLUS] = ACTIONS(3672), - [anon_sym_sizeof] = ACTIONS(3670), - [anon_sym___alignof__] = ACTIONS(3670), - [anon_sym___alignof] = ACTIONS(3670), - [anon_sym__alignof] = ACTIONS(3670), - [anon_sym_alignof] = ACTIONS(3670), - [anon_sym__Alignof] = ACTIONS(3670), - [anon_sym_offsetof] = ACTIONS(3670), - [anon_sym__Generic] = ACTIONS(3670), - [anon_sym_typename] = ACTIONS(3670), - [anon_sym_asm] = ACTIONS(3670), - [anon_sym___asm__] = ACTIONS(3670), - [anon_sym___asm] = ACTIONS(3670), - [sym_number_literal] = ACTIONS(3672), - [anon_sym_L_SQUOTE] = ACTIONS(3672), - [anon_sym_u_SQUOTE] = ACTIONS(3672), - [anon_sym_U_SQUOTE] = ACTIONS(3672), - [anon_sym_u8_SQUOTE] = ACTIONS(3672), - [anon_sym_SQUOTE] = ACTIONS(3672), - [anon_sym_L_DQUOTE] = ACTIONS(3672), - [anon_sym_u_DQUOTE] = ACTIONS(3672), - [anon_sym_U_DQUOTE] = ACTIONS(3672), - [anon_sym_u8_DQUOTE] = ACTIONS(3672), - [anon_sym_DQUOTE] = ACTIONS(3672), - [sym_true] = ACTIONS(3670), - [sym_false] = ACTIONS(3670), - [anon_sym_NULL] = ACTIONS(3670), - [anon_sym_nullptr] = ACTIONS(3670), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3670), - [anon_sym_decltype] = ACTIONS(3670), - [anon_sym_template] = ACTIONS(3670), - [anon_sym_try] = ACTIONS(3670), - [anon_sym_delete] = ACTIONS(3670), - [anon_sym_throw] = ACTIONS(3670), - [anon_sym_co_return] = ACTIONS(3670), - [anon_sym_co_yield] = ACTIONS(3670), - [anon_sym_R_DQUOTE] = ACTIONS(3672), - [anon_sym_LR_DQUOTE] = ACTIONS(3672), - [anon_sym_uR_DQUOTE] = ACTIONS(3672), - [anon_sym_UR_DQUOTE] = ACTIONS(3672), - [anon_sym_u8R_DQUOTE] = ACTIONS(3672), - [anon_sym_co_await] = ACTIONS(3670), - [anon_sym_new] = ACTIONS(3670), - [anon_sym_requires] = ACTIONS(3670), - [anon_sym_CARET_CARET] = ACTIONS(3672), - [anon_sym_LBRACK_COLON] = ACTIONS(3672), - [sym_this] = ACTIONS(3670), - }, - [STATE(1258)] = { - [sym_identifier] = ACTIONS(3638), - [anon_sym_LPAREN2] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3640), - [anon_sym_TILDE] = ACTIONS(3640), - [anon_sym_DASH] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(3640), - [anon_sym_AMP] = ACTIONS(3640), - [anon_sym_SEMI] = ACTIONS(3640), - [anon_sym___extension__] = ACTIONS(3638), - [anon_sym_typedef] = ACTIONS(3638), - [anon_sym_virtual] = ACTIONS(3638), - [anon_sym_extern] = ACTIONS(3638), - [anon_sym___attribute__] = ACTIONS(3638), - [anon_sym___attribute] = ACTIONS(3638), - [anon_sym_COLON_COLON] = ACTIONS(3640), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3640), - [anon_sym___declspec] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(3640), - [anon_sym_signed] = ACTIONS(3638), - [anon_sym_unsigned] = ACTIONS(3638), - [anon_sym_long] = ACTIONS(3638), - [anon_sym_short] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(3638), - [anon_sym_static] = ACTIONS(3638), - [anon_sym_register] = ACTIONS(3638), - [anon_sym_inline] = ACTIONS(3638), - [anon_sym___inline] = ACTIONS(3638), - [anon_sym___inline__] = ACTIONS(3638), - [anon_sym___forceinline] = ACTIONS(3638), - [anon_sym_thread_local] = ACTIONS(3638), - [anon_sym___thread] = ACTIONS(3638), - [anon_sym_const] = ACTIONS(3638), - [anon_sym_constexpr] = ACTIONS(3638), - [anon_sym_volatile] = ACTIONS(3638), - [anon_sym_restrict] = ACTIONS(3638), - [anon_sym___restrict__] = ACTIONS(3638), - [anon_sym__Atomic] = ACTIONS(3638), - [anon_sym__Noreturn] = ACTIONS(3638), - [anon_sym_noreturn] = ACTIONS(3638), - [anon_sym__Nonnull] = ACTIONS(3638), - [anon_sym_mutable] = ACTIONS(3638), - [anon_sym_constinit] = ACTIONS(3638), - [anon_sym_consteval] = ACTIONS(3638), - [anon_sym_alignas] = ACTIONS(3638), - [anon_sym__Alignas] = ACTIONS(3638), - [sym_primitive_type] = ACTIONS(3638), - [anon_sym_enum] = ACTIONS(3638), - [anon_sym_class] = ACTIONS(3638), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(3638), - [anon_sym_if] = ACTIONS(3638), - [anon_sym_else] = ACTIONS(3638), - [anon_sym_switch] = ACTIONS(3638), - [anon_sym_while] = ACTIONS(3638), - [anon_sym_do] = ACTIONS(3638), - [anon_sym_for] = ACTIONS(3638), - [anon_sym_return] = ACTIONS(3638), - [anon_sym_break] = ACTIONS(3638), - [anon_sym_continue] = ACTIONS(3638), - [anon_sym_goto] = ACTIONS(3638), - [anon_sym___try] = ACTIONS(3638), - [anon_sym___leave] = ACTIONS(3638), - [anon_sym_not] = ACTIONS(3638), - [anon_sym_compl] = ACTIONS(3638), - [anon_sym_DASH_DASH] = ACTIONS(3640), - [anon_sym_PLUS_PLUS] = ACTIONS(3640), - [anon_sym_sizeof] = ACTIONS(3638), - [anon_sym___alignof__] = ACTIONS(3638), - [anon_sym___alignof] = ACTIONS(3638), - [anon_sym__alignof] = ACTIONS(3638), - [anon_sym_alignof] = ACTIONS(3638), - [anon_sym__Alignof] = ACTIONS(3638), - [anon_sym_offsetof] = ACTIONS(3638), - [anon_sym__Generic] = ACTIONS(3638), - [anon_sym_typename] = ACTIONS(3638), - [anon_sym_asm] = ACTIONS(3638), - [anon_sym___asm__] = ACTIONS(3638), - [anon_sym___asm] = ACTIONS(3638), - [sym_number_literal] = ACTIONS(3640), - [anon_sym_L_SQUOTE] = ACTIONS(3640), - [anon_sym_u_SQUOTE] = ACTIONS(3640), - [anon_sym_U_SQUOTE] = ACTIONS(3640), - [anon_sym_u8_SQUOTE] = ACTIONS(3640), - [anon_sym_SQUOTE] = ACTIONS(3640), - [anon_sym_L_DQUOTE] = ACTIONS(3640), - [anon_sym_u_DQUOTE] = ACTIONS(3640), - [anon_sym_U_DQUOTE] = ACTIONS(3640), - [anon_sym_u8_DQUOTE] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(3640), - [sym_true] = ACTIONS(3638), - [sym_false] = ACTIONS(3638), - [anon_sym_NULL] = ACTIONS(3638), - [anon_sym_nullptr] = ACTIONS(3638), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3638), - [anon_sym_decltype] = ACTIONS(3638), - [anon_sym_template] = ACTIONS(3638), - [anon_sym_try] = ACTIONS(3638), - [anon_sym_delete] = ACTIONS(3638), - [anon_sym_throw] = ACTIONS(3638), - [anon_sym_co_return] = ACTIONS(3638), - [anon_sym_co_yield] = ACTIONS(3638), - [anon_sym_R_DQUOTE] = ACTIONS(3640), - [anon_sym_LR_DQUOTE] = ACTIONS(3640), - [anon_sym_uR_DQUOTE] = ACTIONS(3640), - [anon_sym_UR_DQUOTE] = ACTIONS(3640), - [anon_sym_u8R_DQUOTE] = ACTIONS(3640), - [anon_sym_co_await] = ACTIONS(3638), - [anon_sym_new] = ACTIONS(3638), - [anon_sym_requires] = ACTIONS(3638), - [anon_sym_CARET_CARET] = ACTIONS(3640), - [anon_sym_LBRACK_COLON] = ACTIONS(3640), - [sym_this] = ACTIONS(3638), - }, [STATE(1259)] = { - [sym_identifier] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_BANG] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_DASH] = ACTIONS(3622), - [anon_sym_PLUS] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3624), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym_LBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_if] = ACTIONS(3622), - [anon_sym_else] = ACTIONS(3622), - [anon_sym_switch] = ACTIONS(3622), - [anon_sym_while] = ACTIONS(3622), - [anon_sym_do] = ACTIONS(3622), - [anon_sym_for] = ACTIONS(3622), - [anon_sym_return] = ACTIONS(3622), - [anon_sym_break] = ACTIONS(3622), - [anon_sym_continue] = ACTIONS(3622), - [anon_sym_goto] = ACTIONS(3622), - [anon_sym___try] = ACTIONS(3622), - [anon_sym___leave] = ACTIONS(3622), - [anon_sym_not] = ACTIONS(3622), - [anon_sym_compl] = ACTIONS(3622), - [anon_sym_DASH_DASH] = ACTIONS(3624), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_sizeof] = ACTIONS(3622), - [anon_sym___alignof__] = ACTIONS(3622), - [anon_sym___alignof] = ACTIONS(3622), - [anon_sym__alignof] = ACTIONS(3622), - [anon_sym_alignof] = ACTIONS(3622), - [anon_sym__Alignof] = ACTIONS(3622), - [anon_sym_offsetof] = ACTIONS(3622), - [anon_sym__Generic] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [anon_sym_asm] = ACTIONS(3622), - [anon_sym___asm__] = ACTIONS(3622), - [anon_sym___asm] = ACTIONS(3622), - [sym_number_literal] = ACTIONS(3624), - [anon_sym_L_SQUOTE] = ACTIONS(3624), - [anon_sym_u_SQUOTE] = ACTIONS(3624), - [anon_sym_U_SQUOTE] = ACTIONS(3624), - [anon_sym_u8_SQUOTE] = ACTIONS(3624), - [anon_sym_SQUOTE] = ACTIONS(3624), - [anon_sym_L_DQUOTE] = ACTIONS(3624), - [anon_sym_u_DQUOTE] = ACTIONS(3624), - [anon_sym_U_DQUOTE] = ACTIONS(3624), - [anon_sym_u8_DQUOTE] = ACTIONS(3624), - [anon_sym_DQUOTE] = ACTIONS(3624), - [sym_true] = ACTIONS(3622), - [sym_false] = ACTIONS(3622), - [anon_sym_NULL] = ACTIONS(3622), - [anon_sym_nullptr] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_try] = ACTIONS(3622), - [anon_sym_delete] = ACTIONS(3622), - [anon_sym_throw] = ACTIONS(3622), - [anon_sym_co_return] = ACTIONS(3622), - [anon_sym_co_yield] = ACTIONS(3622), - [anon_sym_R_DQUOTE] = ACTIONS(3624), - [anon_sym_LR_DQUOTE] = ACTIONS(3624), - [anon_sym_uR_DQUOTE] = ACTIONS(3624), - [anon_sym_UR_DQUOTE] = ACTIONS(3624), - [anon_sym_u8R_DQUOTE] = ACTIONS(3624), - [anon_sym_co_await] = ACTIONS(3622), - [anon_sym_new] = ACTIONS(3622), - [anon_sym_requires] = ACTIONS(3622), - [anon_sym_CARET_CARET] = ACTIONS(3624), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - [sym_this] = ACTIONS(3622), + [sym_identifier] = ACTIONS(3652), + [anon_sym_LPAREN2] = ACTIONS(3654), + [anon_sym_BANG] = ACTIONS(3654), + [anon_sym_TILDE] = ACTIONS(3654), + [anon_sym_DASH] = ACTIONS(3652), + [anon_sym_PLUS] = ACTIONS(3652), + [anon_sym_STAR] = ACTIONS(3654), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_SEMI] = ACTIONS(3654), + [anon_sym___extension__] = ACTIONS(3652), + [anon_sym_typedef] = ACTIONS(3652), + [anon_sym_virtual] = ACTIONS(3652), + [anon_sym_extern] = ACTIONS(3652), + [anon_sym___attribute__] = ACTIONS(3652), + [anon_sym___attribute] = ACTIONS(3652), + [anon_sym_COLON_COLON] = ACTIONS(3654), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3654), + [anon_sym___declspec] = ACTIONS(3652), + [anon_sym_LBRACE] = ACTIONS(3654), + [anon_sym_signed] = ACTIONS(3652), + [anon_sym_unsigned] = ACTIONS(3652), + [anon_sym_long] = ACTIONS(3652), + [anon_sym_short] = ACTIONS(3652), + [anon_sym_LBRACK] = ACTIONS(3652), + [anon_sym_static] = ACTIONS(3652), + [anon_sym_register] = ACTIONS(3652), + [anon_sym_inline] = ACTIONS(3652), + [anon_sym___inline] = ACTIONS(3652), + [anon_sym___inline__] = ACTIONS(3652), + [anon_sym___forceinline] = ACTIONS(3652), + [anon_sym_thread_local] = ACTIONS(3652), + [anon_sym___thread] = ACTIONS(3652), + [anon_sym_const] = ACTIONS(3652), + [anon_sym_constexpr] = ACTIONS(3652), + [anon_sym_volatile] = ACTIONS(3652), + [anon_sym_restrict] = ACTIONS(3652), + [anon_sym___restrict__] = ACTIONS(3652), + [anon_sym__Atomic] = ACTIONS(3652), + [anon_sym__Noreturn] = ACTIONS(3652), + [anon_sym_noreturn] = ACTIONS(3652), + [anon_sym__Nonnull] = ACTIONS(3652), + [anon_sym_mutable] = ACTIONS(3652), + [anon_sym_constinit] = ACTIONS(3652), + [anon_sym_consteval] = ACTIONS(3652), + [anon_sym_alignas] = ACTIONS(3652), + [anon_sym__Alignas] = ACTIONS(3652), + [sym_primitive_type] = ACTIONS(3652), + [anon_sym_enum] = ACTIONS(3652), + [anon_sym_class] = ACTIONS(3652), + [anon_sym_struct] = ACTIONS(3652), + [anon_sym_union] = ACTIONS(3652), + [anon_sym_if] = ACTIONS(3652), + [anon_sym_else] = ACTIONS(3652), + [anon_sym_switch] = ACTIONS(3652), + [anon_sym_while] = ACTIONS(3652), + [anon_sym_do] = ACTIONS(3652), + [anon_sym_for] = ACTIONS(3652), + [anon_sym_return] = ACTIONS(3652), + [anon_sym_break] = ACTIONS(3652), + [anon_sym_continue] = ACTIONS(3652), + [anon_sym_goto] = ACTIONS(3652), + [anon_sym___try] = ACTIONS(3652), + [anon_sym___leave] = ACTIONS(3652), + [anon_sym_not] = ACTIONS(3652), + [anon_sym_compl] = ACTIONS(3652), + [anon_sym_DASH_DASH] = ACTIONS(3654), + [anon_sym_PLUS_PLUS] = ACTIONS(3654), + [anon_sym_sizeof] = ACTIONS(3652), + [anon_sym___alignof__] = ACTIONS(3652), + [anon_sym___alignof] = ACTIONS(3652), + [anon_sym__alignof] = ACTIONS(3652), + [anon_sym_alignof] = ACTIONS(3652), + [anon_sym__Alignof] = ACTIONS(3652), + [anon_sym_offsetof] = ACTIONS(3652), + [anon_sym__Generic] = ACTIONS(3652), + [anon_sym_typename] = ACTIONS(3652), + [anon_sym_asm] = ACTIONS(3652), + [anon_sym___asm__] = ACTIONS(3652), + [anon_sym___asm] = ACTIONS(3652), + [sym_number_literal] = ACTIONS(3654), + [anon_sym_L_SQUOTE] = ACTIONS(3654), + [anon_sym_u_SQUOTE] = ACTIONS(3654), + [anon_sym_U_SQUOTE] = ACTIONS(3654), + [anon_sym_u8_SQUOTE] = ACTIONS(3654), + [anon_sym_SQUOTE] = ACTIONS(3654), + [anon_sym_L_DQUOTE] = ACTIONS(3654), + [anon_sym_u_DQUOTE] = ACTIONS(3654), + [anon_sym_U_DQUOTE] = ACTIONS(3654), + [anon_sym_u8_DQUOTE] = ACTIONS(3654), + [anon_sym_DQUOTE] = ACTIONS(3654), + [sym_true] = ACTIONS(3652), + [sym_false] = ACTIONS(3652), + [anon_sym_NULL] = ACTIONS(3652), + [anon_sym_nullptr] = ACTIONS(3652), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3652), + [anon_sym_decltype] = ACTIONS(3652), + [anon_sym_template] = ACTIONS(3652), + [anon_sym_try] = ACTIONS(3652), + [anon_sym_delete] = ACTIONS(3652), + [anon_sym_throw] = ACTIONS(3652), + [anon_sym_co_return] = ACTIONS(3652), + [anon_sym_co_yield] = ACTIONS(3652), + [anon_sym_R_DQUOTE] = ACTIONS(3654), + [anon_sym_LR_DQUOTE] = ACTIONS(3654), + [anon_sym_uR_DQUOTE] = ACTIONS(3654), + [anon_sym_UR_DQUOTE] = ACTIONS(3654), + [anon_sym_u8R_DQUOTE] = ACTIONS(3654), + [anon_sym_co_await] = ACTIONS(3652), + [anon_sym_new] = ACTIONS(3652), + [anon_sym_requires] = ACTIONS(3652), + [anon_sym_CARET_CARET] = ACTIONS(3654), + [anon_sym_LBRACK_COLON] = ACTIONS(3654), + [sym_this] = ACTIONS(3652), }, [STATE(1260)] = { - [sym_identifier] = ACTIONS(3642), - [anon_sym_LPAREN2] = ACTIONS(3644), - [anon_sym_BANG] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(3644), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_STAR] = ACTIONS(3644), - [anon_sym_AMP] = ACTIONS(3644), - [anon_sym_SEMI] = ACTIONS(3644), - [anon_sym___extension__] = ACTIONS(3642), - [anon_sym_typedef] = ACTIONS(3642), - [anon_sym_virtual] = ACTIONS(3642), - [anon_sym_extern] = ACTIONS(3642), - [anon_sym___attribute__] = ACTIONS(3642), - [anon_sym___attribute] = ACTIONS(3642), - [anon_sym_COLON_COLON] = ACTIONS(3644), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3644), - [anon_sym___declspec] = ACTIONS(3642), - [anon_sym_LBRACE] = ACTIONS(3644), - [anon_sym_signed] = ACTIONS(3642), - [anon_sym_unsigned] = ACTIONS(3642), - [anon_sym_long] = ACTIONS(3642), - [anon_sym_short] = ACTIONS(3642), - [anon_sym_LBRACK] = ACTIONS(3642), - [anon_sym_static] = ACTIONS(3642), - [anon_sym_register] = ACTIONS(3642), - [anon_sym_inline] = ACTIONS(3642), - [anon_sym___inline] = ACTIONS(3642), - [anon_sym___inline__] = ACTIONS(3642), - [anon_sym___forceinline] = ACTIONS(3642), - [anon_sym_thread_local] = ACTIONS(3642), - [anon_sym___thread] = ACTIONS(3642), - [anon_sym_const] = ACTIONS(3642), - [anon_sym_constexpr] = ACTIONS(3642), - [anon_sym_volatile] = ACTIONS(3642), - [anon_sym_restrict] = ACTIONS(3642), - [anon_sym___restrict__] = ACTIONS(3642), - [anon_sym__Atomic] = ACTIONS(3642), - [anon_sym__Noreturn] = ACTIONS(3642), - [anon_sym_noreturn] = ACTIONS(3642), - [anon_sym__Nonnull] = ACTIONS(3642), - [anon_sym_mutable] = ACTIONS(3642), - [anon_sym_constinit] = ACTIONS(3642), - [anon_sym_consteval] = ACTIONS(3642), - [anon_sym_alignas] = ACTIONS(3642), - [anon_sym__Alignas] = ACTIONS(3642), - [sym_primitive_type] = ACTIONS(3642), - [anon_sym_enum] = ACTIONS(3642), - [anon_sym_class] = ACTIONS(3642), - [anon_sym_struct] = ACTIONS(3642), - [anon_sym_union] = ACTIONS(3642), - [anon_sym_if] = ACTIONS(3642), - [anon_sym_else] = ACTIONS(3642), - [anon_sym_switch] = ACTIONS(3642), - [anon_sym_while] = ACTIONS(3642), - [anon_sym_do] = ACTIONS(3642), - [anon_sym_for] = ACTIONS(3642), - [anon_sym_return] = ACTIONS(3642), - [anon_sym_break] = ACTIONS(3642), - [anon_sym_continue] = ACTIONS(3642), - [anon_sym_goto] = ACTIONS(3642), - [anon_sym___try] = ACTIONS(3642), - [anon_sym___leave] = ACTIONS(3642), - [anon_sym_not] = ACTIONS(3642), - [anon_sym_compl] = ACTIONS(3642), - [anon_sym_DASH_DASH] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3644), - [anon_sym_sizeof] = ACTIONS(3642), - [anon_sym___alignof__] = ACTIONS(3642), - [anon_sym___alignof] = ACTIONS(3642), - [anon_sym__alignof] = ACTIONS(3642), - [anon_sym_alignof] = ACTIONS(3642), - [anon_sym__Alignof] = ACTIONS(3642), - [anon_sym_offsetof] = ACTIONS(3642), - [anon_sym__Generic] = ACTIONS(3642), - [anon_sym_typename] = ACTIONS(3642), - [anon_sym_asm] = ACTIONS(3642), - [anon_sym___asm__] = ACTIONS(3642), - [anon_sym___asm] = ACTIONS(3642), - [sym_number_literal] = ACTIONS(3644), - [anon_sym_L_SQUOTE] = ACTIONS(3644), - [anon_sym_u_SQUOTE] = ACTIONS(3644), - [anon_sym_U_SQUOTE] = ACTIONS(3644), - [anon_sym_u8_SQUOTE] = ACTIONS(3644), - [anon_sym_SQUOTE] = ACTIONS(3644), - [anon_sym_L_DQUOTE] = ACTIONS(3644), - [anon_sym_u_DQUOTE] = ACTIONS(3644), - [anon_sym_U_DQUOTE] = ACTIONS(3644), - [anon_sym_u8_DQUOTE] = ACTIONS(3644), - [anon_sym_DQUOTE] = ACTIONS(3644), - [sym_true] = ACTIONS(3642), - [sym_false] = ACTIONS(3642), - [anon_sym_NULL] = ACTIONS(3642), - [anon_sym_nullptr] = ACTIONS(3642), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3642), - [anon_sym_decltype] = ACTIONS(3642), - [anon_sym_template] = ACTIONS(3642), - [anon_sym_try] = ACTIONS(3642), - [anon_sym_delete] = ACTIONS(3642), - [anon_sym_throw] = ACTIONS(3642), - [anon_sym_co_return] = ACTIONS(3642), - [anon_sym_co_yield] = ACTIONS(3642), - [anon_sym_R_DQUOTE] = ACTIONS(3644), - [anon_sym_LR_DQUOTE] = ACTIONS(3644), - [anon_sym_uR_DQUOTE] = ACTIONS(3644), - [anon_sym_UR_DQUOTE] = ACTIONS(3644), - [anon_sym_u8R_DQUOTE] = ACTIONS(3644), - [anon_sym_co_await] = ACTIONS(3642), - [anon_sym_new] = ACTIONS(3642), - [anon_sym_requires] = ACTIONS(3642), - [anon_sym_CARET_CARET] = ACTIONS(3644), - [anon_sym_LBRACK_COLON] = ACTIONS(3644), - [sym_this] = ACTIONS(3642), + [sym_identifier] = ACTIONS(3510), + [anon_sym_LPAREN2] = ACTIONS(3512), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_STAR] = ACTIONS(3512), + [anon_sym_AMP] = ACTIONS(3512), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym___extension__] = ACTIONS(3510), + [anon_sym_typedef] = ACTIONS(3510), + [anon_sym_virtual] = ACTIONS(3510), + [anon_sym_extern] = ACTIONS(3510), + [anon_sym___attribute__] = ACTIONS(3510), + [anon_sym___attribute] = ACTIONS(3510), + [anon_sym_COLON_COLON] = ACTIONS(3512), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3512), + [anon_sym___declspec] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_signed] = ACTIONS(3510), + [anon_sym_unsigned] = ACTIONS(3510), + [anon_sym_long] = ACTIONS(3510), + [anon_sym_short] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3510), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_register] = ACTIONS(3510), + [anon_sym_inline] = ACTIONS(3510), + [anon_sym___inline] = ACTIONS(3510), + [anon_sym___inline__] = ACTIONS(3510), + [anon_sym___forceinline] = ACTIONS(3510), + [anon_sym_thread_local] = ACTIONS(3510), + [anon_sym___thread] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_constexpr] = ACTIONS(3510), + [anon_sym_volatile] = ACTIONS(3510), + [anon_sym_restrict] = ACTIONS(3510), + [anon_sym___restrict__] = ACTIONS(3510), + [anon_sym__Atomic] = ACTIONS(3510), + [anon_sym__Noreturn] = ACTIONS(3510), + [anon_sym_noreturn] = ACTIONS(3510), + [anon_sym__Nonnull] = ACTIONS(3510), + [anon_sym_mutable] = ACTIONS(3510), + [anon_sym_constinit] = ACTIONS(3510), + [anon_sym_consteval] = ACTIONS(3510), + [anon_sym_alignas] = ACTIONS(3510), + [anon_sym__Alignas] = ACTIONS(3510), + [sym_primitive_type] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_struct] = ACTIONS(3510), + [anon_sym_union] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_else] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_goto] = ACTIONS(3510), + [anon_sym___try] = ACTIONS(3510), + [anon_sym___leave] = ACTIONS(3510), + [anon_sym_not] = ACTIONS(3510), + [anon_sym_compl] = ACTIONS(3510), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_sizeof] = ACTIONS(3510), + [anon_sym___alignof__] = ACTIONS(3510), + [anon_sym___alignof] = ACTIONS(3510), + [anon_sym__alignof] = ACTIONS(3510), + [anon_sym_alignof] = ACTIONS(3510), + [anon_sym__Alignof] = ACTIONS(3510), + [anon_sym_offsetof] = ACTIONS(3510), + [anon_sym__Generic] = ACTIONS(3510), + [anon_sym_typename] = ACTIONS(3510), + [anon_sym_asm] = ACTIONS(3510), + [anon_sym___asm__] = ACTIONS(3510), + [anon_sym___asm] = ACTIONS(3510), + [sym_number_literal] = ACTIONS(3512), + [anon_sym_L_SQUOTE] = ACTIONS(3512), + [anon_sym_u_SQUOTE] = ACTIONS(3512), + [anon_sym_U_SQUOTE] = ACTIONS(3512), + [anon_sym_u8_SQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [anon_sym_L_DQUOTE] = ACTIONS(3512), + [anon_sym_u_DQUOTE] = ACTIONS(3512), + [anon_sym_U_DQUOTE] = ACTIONS(3512), + [anon_sym_u8_DQUOTE] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [anon_sym_NULL] = ACTIONS(3510), + [anon_sym_nullptr] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3510), + [anon_sym_decltype] = ACTIONS(3510), + [anon_sym_template] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_co_return] = ACTIONS(3510), + [anon_sym_co_yield] = ACTIONS(3510), + [anon_sym_R_DQUOTE] = ACTIONS(3512), + [anon_sym_LR_DQUOTE] = ACTIONS(3512), + [anon_sym_uR_DQUOTE] = ACTIONS(3512), + [anon_sym_UR_DQUOTE] = ACTIONS(3512), + [anon_sym_u8R_DQUOTE] = ACTIONS(3512), + [anon_sym_co_await] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_requires] = ACTIONS(3510), + [anon_sym_CARET_CARET] = ACTIONS(3512), + [anon_sym_LBRACK_COLON] = ACTIONS(3512), + [sym_this] = ACTIONS(3510), }, [STATE(1261)] = { - [sym_identifier] = ACTIONS(3604), - [anon_sym_LPAREN2] = ACTIONS(3606), - [anon_sym_BANG] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_DASH] = ACTIONS(3604), - [anon_sym_PLUS] = ACTIONS(3604), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym___extension__] = ACTIONS(3604), - [anon_sym_typedef] = ACTIONS(3604), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_extern] = ACTIONS(3604), - [anon_sym___attribute__] = ACTIONS(3604), - [anon_sym___attribute] = ACTIONS(3604), - [anon_sym_COLON_COLON] = ACTIONS(3606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), - [anon_sym___declspec] = ACTIONS(3604), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_signed] = ACTIONS(3604), - [anon_sym_unsigned] = ACTIONS(3604), - [anon_sym_long] = ACTIONS(3604), - [anon_sym_short] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_register] = ACTIONS(3604), - [anon_sym_inline] = ACTIONS(3604), - [anon_sym___inline] = ACTIONS(3604), - [anon_sym___inline__] = ACTIONS(3604), - [anon_sym___forceinline] = ACTIONS(3604), - [anon_sym_thread_local] = ACTIONS(3604), - [anon_sym___thread] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_constexpr] = ACTIONS(3604), - [anon_sym_volatile] = ACTIONS(3604), - [anon_sym_restrict] = ACTIONS(3604), - [anon_sym___restrict__] = ACTIONS(3604), - [anon_sym__Atomic] = ACTIONS(3604), - [anon_sym__Noreturn] = ACTIONS(3604), - [anon_sym_noreturn] = ACTIONS(3604), - [anon_sym__Nonnull] = ACTIONS(3604), - [anon_sym_mutable] = ACTIONS(3604), - [anon_sym_constinit] = ACTIONS(3604), - [anon_sym_consteval] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3604), - [anon_sym__Alignas] = ACTIONS(3604), - [sym_primitive_type] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_union] = ACTIONS(3604), - [anon_sym_if] = ACTIONS(3604), - [anon_sym_else] = ACTIONS(3604), - [anon_sym_switch] = ACTIONS(3604), - [anon_sym_while] = ACTIONS(3604), - [anon_sym_do] = ACTIONS(3604), - [anon_sym_for] = ACTIONS(3604), - [anon_sym_return] = ACTIONS(3604), - [anon_sym_break] = ACTIONS(3604), - [anon_sym_continue] = ACTIONS(3604), - [anon_sym_goto] = ACTIONS(3604), - [anon_sym___try] = ACTIONS(3604), - [anon_sym___leave] = ACTIONS(3604), - [anon_sym_not] = ACTIONS(3604), - [anon_sym_compl] = ACTIONS(3604), - [anon_sym_DASH_DASH] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_sizeof] = ACTIONS(3604), - [anon_sym___alignof__] = ACTIONS(3604), - [anon_sym___alignof] = ACTIONS(3604), - [anon_sym__alignof] = ACTIONS(3604), - [anon_sym_alignof] = ACTIONS(3604), - [anon_sym__Alignof] = ACTIONS(3604), - [anon_sym_offsetof] = ACTIONS(3604), - [anon_sym__Generic] = ACTIONS(3604), - [anon_sym_typename] = ACTIONS(3604), - [anon_sym_asm] = ACTIONS(3604), - [anon_sym___asm__] = ACTIONS(3604), - [anon_sym___asm] = ACTIONS(3604), - [sym_number_literal] = ACTIONS(3606), - [anon_sym_L_SQUOTE] = ACTIONS(3606), - [anon_sym_u_SQUOTE] = ACTIONS(3606), - [anon_sym_U_SQUOTE] = ACTIONS(3606), - [anon_sym_u8_SQUOTE] = ACTIONS(3606), - [anon_sym_SQUOTE] = ACTIONS(3606), - [anon_sym_L_DQUOTE] = ACTIONS(3606), - [anon_sym_u_DQUOTE] = ACTIONS(3606), - [anon_sym_U_DQUOTE] = ACTIONS(3606), - [anon_sym_u8_DQUOTE] = ACTIONS(3606), - [anon_sym_DQUOTE] = ACTIONS(3606), - [sym_true] = ACTIONS(3604), - [sym_false] = ACTIONS(3604), - [anon_sym_NULL] = ACTIONS(3604), - [anon_sym_nullptr] = ACTIONS(3604), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3604), - [anon_sym_decltype] = ACTIONS(3604), - [anon_sym_template] = ACTIONS(3604), - [anon_sym_try] = ACTIONS(3604), - [anon_sym_delete] = ACTIONS(3604), - [anon_sym_throw] = ACTIONS(3604), - [anon_sym_co_return] = ACTIONS(3604), - [anon_sym_co_yield] = ACTIONS(3604), - [anon_sym_R_DQUOTE] = ACTIONS(3606), - [anon_sym_LR_DQUOTE] = ACTIONS(3606), - [anon_sym_uR_DQUOTE] = ACTIONS(3606), - [anon_sym_UR_DQUOTE] = ACTIONS(3606), - [anon_sym_u8R_DQUOTE] = ACTIONS(3606), - [anon_sym_co_await] = ACTIONS(3604), - [anon_sym_new] = ACTIONS(3604), - [anon_sym_requires] = ACTIONS(3604), - [anon_sym_CARET_CARET] = ACTIONS(3606), - [anon_sym_LBRACK_COLON] = ACTIONS(3606), - [sym_this] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3538), + [anon_sym_LPAREN2] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3538), + [anon_sym_PLUS] = ACTIONS(3538), + [anon_sym_STAR] = ACTIONS(3540), + [anon_sym_AMP] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3540), + [anon_sym___extension__] = ACTIONS(3538), + [anon_sym_typedef] = ACTIONS(3538), + [anon_sym_virtual] = ACTIONS(3538), + [anon_sym_extern] = ACTIONS(3538), + [anon_sym___attribute__] = ACTIONS(3538), + [anon_sym___attribute] = ACTIONS(3538), + [anon_sym_COLON_COLON] = ACTIONS(3540), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3540), + [anon_sym___declspec] = ACTIONS(3538), + [anon_sym_LBRACE] = ACTIONS(3540), + [anon_sym_signed] = ACTIONS(3538), + [anon_sym_unsigned] = ACTIONS(3538), + [anon_sym_long] = ACTIONS(3538), + [anon_sym_short] = ACTIONS(3538), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_static] = ACTIONS(3538), + [anon_sym_register] = ACTIONS(3538), + [anon_sym_inline] = ACTIONS(3538), + [anon_sym___inline] = ACTIONS(3538), + [anon_sym___inline__] = ACTIONS(3538), + [anon_sym___forceinline] = ACTIONS(3538), + [anon_sym_thread_local] = ACTIONS(3538), + [anon_sym___thread] = ACTIONS(3538), + [anon_sym_const] = ACTIONS(3538), + [anon_sym_constexpr] = ACTIONS(3538), + [anon_sym_volatile] = ACTIONS(3538), + [anon_sym_restrict] = ACTIONS(3538), + [anon_sym___restrict__] = ACTIONS(3538), + [anon_sym__Atomic] = ACTIONS(3538), + [anon_sym__Noreturn] = ACTIONS(3538), + [anon_sym_noreturn] = ACTIONS(3538), + [anon_sym__Nonnull] = ACTIONS(3538), + [anon_sym_mutable] = ACTIONS(3538), + [anon_sym_constinit] = ACTIONS(3538), + [anon_sym_consteval] = ACTIONS(3538), + [anon_sym_alignas] = ACTIONS(3538), + [anon_sym__Alignas] = ACTIONS(3538), + [sym_primitive_type] = ACTIONS(3538), + [anon_sym_enum] = ACTIONS(3538), + [anon_sym_class] = ACTIONS(3538), + [anon_sym_struct] = ACTIONS(3538), + [anon_sym_union] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3538), + [anon_sym_else] = ACTIONS(3538), + [anon_sym_switch] = ACTIONS(3538), + [anon_sym_while] = ACTIONS(3538), + [anon_sym_do] = ACTIONS(3538), + [anon_sym_for] = ACTIONS(3538), + [anon_sym_return] = ACTIONS(3538), + [anon_sym_break] = ACTIONS(3538), + [anon_sym_continue] = ACTIONS(3538), + [anon_sym_goto] = ACTIONS(3538), + [anon_sym___try] = ACTIONS(3538), + [anon_sym___leave] = ACTIONS(3538), + [anon_sym_not] = ACTIONS(3538), + [anon_sym_compl] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3540), + [anon_sym_sizeof] = ACTIONS(3538), + [anon_sym___alignof__] = ACTIONS(3538), + [anon_sym___alignof] = ACTIONS(3538), + [anon_sym__alignof] = ACTIONS(3538), + [anon_sym_alignof] = ACTIONS(3538), + [anon_sym__Alignof] = ACTIONS(3538), + [anon_sym_offsetof] = ACTIONS(3538), + [anon_sym__Generic] = ACTIONS(3538), + [anon_sym_typename] = ACTIONS(3538), + [anon_sym_asm] = ACTIONS(3538), + [anon_sym___asm__] = ACTIONS(3538), + [anon_sym___asm] = ACTIONS(3538), + [sym_number_literal] = ACTIONS(3540), + [anon_sym_L_SQUOTE] = ACTIONS(3540), + [anon_sym_u_SQUOTE] = ACTIONS(3540), + [anon_sym_U_SQUOTE] = ACTIONS(3540), + [anon_sym_u8_SQUOTE] = ACTIONS(3540), + [anon_sym_SQUOTE] = ACTIONS(3540), + [anon_sym_L_DQUOTE] = ACTIONS(3540), + [anon_sym_u_DQUOTE] = ACTIONS(3540), + [anon_sym_U_DQUOTE] = ACTIONS(3540), + [anon_sym_u8_DQUOTE] = ACTIONS(3540), + [anon_sym_DQUOTE] = ACTIONS(3540), + [sym_true] = ACTIONS(3538), + [sym_false] = ACTIONS(3538), + [anon_sym_NULL] = ACTIONS(3538), + [anon_sym_nullptr] = ACTIONS(3538), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3538), + [anon_sym_decltype] = ACTIONS(3538), + [anon_sym_template] = ACTIONS(3538), + [anon_sym_try] = ACTIONS(3538), + [anon_sym_delete] = ACTIONS(3538), + [anon_sym_throw] = ACTIONS(3538), + [anon_sym_co_return] = ACTIONS(3538), + [anon_sym_co_yield] = ACTIONS(3538), + [anon_sym_R_DQUOTE] = ACTIONS(3540), + [anon_sym_LR_DQUOTE] = ACTIONS(3540), + [anon_sym_uR_DQUOTE] = ACTIONS(3540), + [anon_sym_UR_DQUOTE] = ACTIONS(3540), + [anon_sym_u8R_DQUOTE] = ACTIONS(3540), + [anon_sym_co_await] = ACTIONS(3538), + [anon_sym_new] = ACTIONS(3538), + [anon_sym_requires] = ACTIONS(3538), + [anon_sym_CARET_CARET] = ACTIONS(3540), + [anon_sym_LBRACK_COLON] = ACTIONS(3540), + [sym_this] = ACTIONS(3538), }, [STATE(1262)] = { - [sym_expression] = STATE(7156), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_lambda_default_capture] = STATE(10396), - [sym__lambda_capture_identifier] = STATE(9680), - [sym_lambda_capture_initializer] = STATE(9680), - [sym__lambda_capture] = STATE(9680), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_identifier_parameter_pack_expansion] = STATE(9680), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5873), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(5934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5922), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(5924), - [anon_sym_AMP] = ACTIONS(5926), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(5928), - [anon_sym_EQ] = ACTIONS(5930), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(5932), + [sym_identifier] = ACTIONS(3542), + [anon_sym_LPAREN2] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3542), + [anon_sym_PLUS] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(3544), + [anon_sym_AMP] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3544), + [anon_sym___extension__] = ACTIONS(3542), + [anon_sym_typedef] = ACTIONS(3542), + [anon_sym_virtual] = ACTIONS(3542), + [anon_sym_extern] = ACTIONS(3542), + [anon_sym___attribute__] = ACTIONS(3542), + [anon_sym___attribute] = ACTIONS(3542), + [anon_sym_COLON_COLON] = ACTIONS(3544), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3544), + [anon_sym___declspec] = ACTIONS(3542), + [anon_sym_LBRACE] = ACTIONS(3544), + [anon_sym_signed] = ACTIONS(3542), + [anon_sym_unsigned] = ACTIONS(3542), + [anon_sym_long] = ACTIONS(3542), + [anon_sym_short] = ACTIONS(3542), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3542), + [anon_sym_register] = ACTIONS(3542), + [anon_sym_inline] = ACTIONS(3542), + [anon_sym___inline] = ACTIONS(3542), + [anon_sym___inline__] = ACTIONS(3542), + [anon_sym___forceinline] = ACTIONS(3542), + [anon_sym_thread_local] = ACTIONS(3542), + [anon_sym___thread] = ACTIONS(3542), + [anon_sym_const] = ACTIONS(3542), + [anon_sym_constexpr] = ACTIONS(3542), + [anon_sym_volatile] = ACTIONS(3542), + [anon_sym_restrict] = ACTIONS(3542), + [anon_sym___restrict__] = ACTIONS(3542), + [anon_sym__Atomic] = ACTIONS(3542), + [anon_sym__Noreturn] = ACTIONS(3542), + [anon_sym_noreturn] = ACTIONS(3542), + [anon_sym__Nonnull] = ACTIONS(3542), + [anon_sym_mutable] = ACTIONS(3542), + [anon_sym_constinit] = ACTIONS(3542), + [anon_sym_consteval] = ACTIONS(3542), + [anon_sym_alignas] = ACTIONS(3542), + [anon_sym__Alignas] = ACTIONS(3542), + [sym_primitive_type] = ACTIONS(3542), + [anon_sym_enum] = ACTIONS(3542), + [anon_sym_class] = ACTIONS(3542), + [anon_sym_struct] = ACTIONS(3542), + [anon_sym_union] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3542), + [anon_sym_else] = ACTIONS(3542), + [anon_sym_switch] = ACTIONS(3542), + [anon_sym_while] = ACTIONS(3542), + [anon_sym_do] = ACTIONS(3542), + [anon_sym_for] = ACTIONS(3542), + [anon_sym_return] = ACTIONS(3542), + [anon_sym_break] = ACTIONS(3542), + [anon_sym_continue] = ACTIONS(3542), + [anon_sym_goto] = ACTIONS(3542), + [anon_sym___try] = ACTIONS(3542), + [anon_sym___leave] = ACTIONS(3542), + [anon_sym_not] = ACTIONS(3542), + [anon_sym_compl] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3544), + [anon_sym_sizeof] = ACTIONS(3542), + [anon_sym___alignof__] = ACTIONS(3542), + [anon_sym___alignof] = ACTIONS(3542), + [anon_sym__alignof] = ACTIONS(3542), + [anon_sym_alignof] = ACTIONS(3542), + [anon_sym__Alignof] = ACTIONS(3542), + [anon_sym_offsetof] = ACTIONS(3542), + [anon_sym__Generic] = ACTIONS(3542), + [anon_sym_typename] = ACTIONS(3542), + [anon_sym_asm] = ACTIONS(3542), + [anon_sym___asm__] = ACTIONS(3542), + [anon_sym___asm] = ACTIONS(3542), + [sym_number_literal] = ACTIONS(3544), + [anon_sym_L_SQUOTE] = ACTIONS(3544), + [anon_sym_u_SQUOTE] = ACTIONS(3544), + [anon_sym_U_SQUOTE] = ACTIONS(3544), + [anon_sym_u8_SQUOTE] = ACTIONS(3544), + [anon_sym_SQUOTE] = ACTIONS(3544), + [anon_sym_L_DQUOTE] = ACTIONS(3544), + [anon_sym_u_DQUOTE] = ACTIONS(3544), + [anon_sym_U_DQUOTE] = ACTIONS(3544), + [anon_sym_u8_DQUOTE] = ACTIONS(3544), + [anon_sym_DQUOTE] = ACTIONS(3544), + [sym_true] = ACTIONS(3542), + [sym_false] = ACTIONS(3542), + [anon_sym_NULL] = ACTIONS(3542), + [anon_sym_nullptr] = ACTIONS(3542), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3542), + [anon_sym_decltype] = ACTIONS(3542), + [anon_sym_template] = ACTIONS(3542), + [anon_sym_try] = ACTIONS(3542), + [anon_sym_delete] = ACTIONS(3542), + [anon_sym_throw] = ACTIONS(3542), + [anon_sym_co_return] = ACTIONS(3542), + [anon_sym_co_yield] = ACTIONS(3542), + [anon_sym_R_DQUOTE] = ACTIONS(3544), + [anon_sym_LR_DQUOTE] = ACTIONS(3544), + [anon_sym_uR_DQUOTE] = ACTIONS(3544), + [anon_sym_UR_DQUOTE] = ACTIONS(3544), + [anon_sym_u8R_DQUOTE] = ACTIONS(3544), + [anon_sym_co_await] = ACTIONS(3542), + [anon_sym_new] = ACTIONS(3542), + [anon_sym_requires] = ACTIONS(3542), + [anon_sym_CARET_CARET] = ACTIONS(3544), + [anon_sym_LBRACK_COLON] = ACTIONS(3544), + [sym_this] = ACTIONS(3542), }, [STATE(1263)] = { - [sym_identifier] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_BANG] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(3662), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3664), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym_LBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_if] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3662), - [anon_sym_switch] = ACTIONS(3662), - [anon_sym_while] = ACTIONS(3662), - [anon_sym_do] = ACTIONS(3662), - [anon_sym_for] = ACTIONS(3662), - [anon_sym_return] = ACTIONS(3662), - [anon_sym_break] = ACTIONS(3662), - [anon_sym_continue] = ACTIONS(3662), - [anon_sym_goto] = ACTIONS(3662), - [anon_sym___try] = ACTIONS(3662), - [anon_sym___leave] = ACTIONS(3662), - [anon_sym_not] = ACTIONS(3662), - [anon_sym_compl] = ACTIONS(3662), - [anon_sym_DASH_DASH] = ACTIONS(3664), - [anon_sym_PLUS_PLUS] = ACTIONS(3664), - [anon_sym_sizeof] = ACTIONS(3662), - [anon_sym___alignof__] = ACTIONS(3662), - [anon_sym___alignof] = ACTIONS(3662), - [anon_sym__alignof] = ACTIONS(3662), - [anon_sym_alignof] = ACTIONS(3662), - [anon_sym__Alignof] = ACTIONS(3662), - [anon_sym_offsetof] = ACTIONS(3662), - [anon_sym__Generic] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [anon_sym_asm] = ACTIONS(3662), - [anon_sym___asm__] = ACTIONS(3662), - [anon_sym___asm] = ACTIONS(3662), - [sym_number_literal] = ACTIONS(3664), - [anon_sym_L_SQUOTE] = ACTIONS(3664), - [anon_sym_u_SQUOTE] = ACTIONS(3664), - [anon_sym_U_SQUOTE] = ACTIONS(3664), - [anon_sym_u8_SQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3664), - [anon_sym_L_DQUOTE] = ACTIONS(3664), - [anon_sym_u_DQUOTE] = ACTIONS(3664), - [anon_sym_U_DQUOTE] = ACTIONS(3664), - [anon_sym_u8_DQUOTE] = ACTIONS(3664), - [anon_sym_DQUOTE] = ACTIONS(3664), - [sym_true] = ACTIONS(3662), - [sym_false] = ACTIONS(3662), - [anon_sym_NULL] = ACTIONS(3662), - [anon_sym_nullptr] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_try] = ACTIONS(3662), - [anon_sym_delete] = ACTIONS(3662), - [anon_sym_throw] = ACTIONS(3662), - [anon_sym_co_return] = ACTIONS(3662), - [anon_sym_co_yield] = ACTIONS(3662), - [anon_sym_R_DQUOTE] = ACTIONS(3664), - [anon_sym_LR_DQUOTE] = ACTIONS(3664), - [anon_sym_uR_DQUOTE] = ACTIONS(3664), - [anon_sym_UR_DQUOTE] = ACTIONS(3664), - [anon_sym_u8R_DQUOTE] = ACTIONS(3664), - [anon_sym_co_await] = ACTIONS(3662), - [anon_sym_new] = ACTIONS(3662), - [anon_sym_requires] = ACTIONS(3662), - [anon_sym_CARET_CARET] = ACTIONS(3664), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - [sym_this] = ACTIONS(3662), + [sym_identifier] = ACTIONS(3502), + [anon_sym_LPAREN2] = ACTIONS(3504), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_STAR] = ACTIONS(3504), + [anon_sym_AMP] = ACTIONS(3504), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym___extension__] = ACTIONS(3502), + [anon_sym_typedef] = ACTIONS(3502), + [anon_sym_virtual] = ACTIONS(3502), + [anon_sym_extern] = ACTIONS(3502), + [anon_sym___attribute__] = ACTIONS(3502), + [anon_sym___attribute] = ACTIONS(3502), + [anon_sym_COLON_COLON] = ACTIONS(3504), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3504), + [anon_sym___declspec] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_signed] = ACTIONS(3502), + [anon_sym_unsigned] = ACTIONS(3502), + [anon_sym_long] = ACTIONS(3502), + [anon_sym_short] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_register] = ACTIONS(3502), + [anon_sym_inline] = ACTIONS(3502), + [anon_sym___inline] = ACTIONS(3502), + [anon_sym___inline__] = ACTIONS(3502), + [anon_sym___forceinline] = ACTIONS(3502), + [anon_sym_thread_local] = ACTIONS(3502), + [anon_sym___thread] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_constexpr] = ACTIONS(3502), + [anon_sym_volatile] = ACTIONS(3502), + [anon_sym_restrict] = ACTIONS(3502), + [anon_sym___restrict__] = ACTIONS(3502), + [anon_sym__Atomic] = ACTIONS(3502), + [anon_sym__Noreturn] = ACTIONS(3502), + [anon_sym_noreturn] = ACTIONS(3502), + [anon_sym__Nonnull] = ACTIONS(3502), + [anon_sym_mutable] = ACTIONS(3502), + [anon_sym_constinit] = ACTIONS(3502), + [anon_sym_consteval] = ACTIONS(3502), + [anon_sym_alignas] = ACTIONS(3502), + [anon_sym__Alignas] = ACTIONS(3502), + [sym_primitive_type] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_struct] = ACTIONS(3502), + [anon_sym_union] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_else] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_goto] = ACTIONS(3502), + [anon_sym___try] = ACTIONS(3502), + [anon_sym___leave] = ACTIONS(3502), + [anon_sym_not] = ACTIONS(3502), + [anon_sym_compl] = ACTIONS(3502), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_PLUS_PLUS] = ACTIONS(3504), + [anon_sym_sizeof] = ACTIONS(3502), + [anon_sym___alignof__] = ACTIONS(3502), + [anon_sym___alignof] = ACTIONS(3502), + [anon_sym__alignof] = ACTIONS(3502), + [anon_sym_alignof] = ACTIONS(3502), + [anon_sym__Alignof] = ACTIONS(3502), + [anon_sym_offsetof] = ACTIONS(3502), + [anon_sym__Generic] = ACTIONS(3502), + [anon_sym_typename] = ACTIONS(3502), + [anon_sym_asm] = ACTIONS(3502), + [anon_sym___asm__] = ACTIONS(3502), + [anon_sym___asm] = ACTIONS(3502), + [sym_number_literal] = ACTIONS(3504), + [anon_sym_L_SQUOTE] = ACTIONS(3504), + [anon_sym_u_SQUOTE] = ACTIONS(3504), + [anon_sym_U_SQUOTE] = ACTIONS(3504), + [anon_sym_u8_SQUOTE] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3504), + [anon_sym_L_DQUOTE] = ACTIONS(3504), + [anon_sym_u_DQUOTE] = ACTIONS(3504), + [anon_sym_U_DQUOTE] = ACTIONS(3504), + [anon_sym_u8_DQUOTE] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [anon_sym_NULL] = ACTIONS(3502), + [anon_sym_nullptr] = ACTIONS(3502), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3502), + [anon_sym_decltype] = ACTIONS(3502), + [anon_sym_template] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_co_return] = ACTIONS(3502), + [anon_sym_co_yield] = ACTIONS(3502), + [anon_sym_R_DQUOTE] = ACTIONS(3504), + [anon_sym_LR_DQUOTE] = ACTIONS(3504), + [anon_sym_uR_DQUOTE] = ACTIONS(3504), + [anon_sym_UR_DQUOTE] = ACTIONS(3504), + [anon_sym_u8R_DQUOTE] = ACTIONS(3504), + [anon_sym_co_await] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_requires] = ACTIONS(3502), + [anon_sym_CARET_CARET] = ACTIONS(3504), + [anon_sym_LBRACK_COLON] = ACTIONS(3504), + [sym_this] = ACTIONS(3502), }, [STATE(1264)] = { - [sym_identifier] = ACTIONS(3650), - [anon_sym_LPAREN2] = ACTIONS(3652), - [anon_sym_BANG] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3650), - [anon_sym_PLUS] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym___extension__] = ACTIONS(3650), - [anon_sym_typedef] = ACTIONS(3650), - [anon_sym_virtual] = ACTIONS(3650), - [anon_sym_extern] = ACTIONS(3650), - [anon_sym___attribute__] = ACTIONS(3650), - [anon_sym___attribute] = ACTIONS(3650), - [anon_sym_COLON_COLON] = ACTIONS(3652), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3652), - [anon_sym___declspec] = ACTIONS(3650), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_signed] = ACTIONS(3650), - [anon_sym_unsigned] = ACTIONS(3650), - [anon_sym_long] = ACTIONS(3650), - [anon_sym_short] = ACTIONS(3650), - [anon_sym_LBRACK] = ACTIONS(3650), - [anon_sym_static] = ACTIONS(3650), - [anon_sym_register] = ACTIONS(3650), - [anon_sym_inline] = ACTIONS(3650), - [anon_sym___inline] = ACTIONS(3650), - [anon_sym___inline__] = ACTIONS(3650), - [anon_sym___forceinline] = ACTIONS(3650), - [anon_sym_thread_local] = ACTIONS(3650), - [anon_sym___thread] = ACTIONS(3650), - [anon_sym_const] = ACTIONS(3650), - [anon_sym_constexpr] = ACTIONS(3650), - [anon_sym_volatile] = ACTIONS(3650), - [anon_sym_restrict] = ACTIONS(3650), - [anon_sym___restrict__] = ACTIONS(3650), - [anon_sym__Atomic] = ACTIONS(3650), - [anon_sym__Noreturn] = ACTIONS(3650), - [anon_sym_noreturn] = ACTIONS(3650), - [anon_sym__Nonnull] = ACTIONS(3650), - [anon_sym_mutable] = ACTIONS(3650), - [anon_sym_constinit] = ACTIONS(3650), - [anon_sym_consteval] = ACTIONS(3650), - [anon_sym_alignas] = ACTIONS(3650), - [anon_sym__Alignas] = ACTIONS(3650), - [sym_primitive_type] = ACTIONS(3650), - [anon_sym_enum] = ACTIONS(3650), - [anon_sym_class] = ACTIONS(3650), - [anon_sym_struct] = ACTIONS(3650), - [anon_sym_union] = ACTIONS(3650), - [anon_sym_if] = ACTIONS(3650), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_switch] = ACTIONS(3650), - [anon_sym_while] = ACTIONS(3650), - [anon_sym_do] = ACTIONS(3650), - [anon_sym_for] = ACTIONS(3650), - [anon_sym_return] = ACTIONS(3650), - [anon_sym_break] = ACTIONS(3650), - [anon_sym_continue] = ACTIONS(3650), - [anon_sym_goto] = ACTIONS(3650), - [anon_sym___try] = ACTIONS(3650), - [anon_sym___leave] = ACTIONS(3650), - [anon_sym_not] = ACTIONS(3650), - [anon_sym_compl] = ACTIONS(3650), - [anon_sym_DASH_DASH] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(3652), - [anon_sym_sizeof] = ACTIONS(3650), - [anon_sym___alignof__] = ACTIONS(3650), - [anon_sym___alignof] = ACTIONS(3650), - [anon_sym__alignof] = ACTIONS(3650), - [anon_sym_alignof] = ACTIONS(3650), - [anon_sym__Alignof] = ACTIONS(3650), - [anon_sym_offsetof] = ACTIONS(3650), - [anon_sym__Generic] = ACTIONS(3650), - [anon_sym_typename] = ACTIONS(3650), - [anon_sym_asm] = ACTIONS(3650), - [anon_sym___asm__] = ACTIONS(3650), - [anon_sym___asm] = ACTIONS(3650), - [sym_number_literal] = ACTIONS(3652), - [anon_sym_L_SQUOTE] = ACTIONS(3652), - [anon_sym_u_SQUOTE] = ACTIONS(3652), - [anon_sym_U_SQUOTE] = ACTIONS(3652), - [anon_sym_u8_SQUOTE] = ACTIONS(3652), - [anon_sym_SQUOTE] = ACTIONS(3652), - [anon_sym_L_DQUOTE] = ACTIONS(3652), - [anon_sym_u_DQUOTE] = ACTIONS(3652), - [anon_sym_U_DQUOTE] = ACTIONS(3652), - [anon_sym_u8_DQUOTE] = ACTIONS(3652), - [anon_sym_DQUOTE] = ACTIONS(3652), - [sym_true] = ACTIONS(3650), - [sym_false] = ACTIONS(3650), - [anon_sym_NULL] = ACTIONS(3650), - [anon_sym_nullptr] = ACTIONS(3650), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3650), - [anon_sym_decltype] = ACTIONS(3650), - [anon_sym_template] = ACTIONS(3650), - [anon_sym_try] = ACTIONS(3650), - [anon_sym_delete] = ACTIONS(3650), - [anon_sym_throw] = ACTIONS(3650), - [anon_sym_co_return] = ACTIONS(3650), - [anon_sym_co_yield] = ACTIONS(3650), - [anon_sym_R_DQUOTE] = ACTIONS(3652), - [anon_sym_LR_DQUOTE] = ACTIONS(3652), - [anon_sym_uR_DQUOTE] = ACTIONS(3652), - [anon_sym_UR_DQUOTE] = ACTIONS(3652), - [anon_sym_u8R_DQUOTE] = ACTIONS(3652), - [anon_sym_co_await] = ACTIONS(3650), - [anon_sym_new] = ACTIONS(3650), - [anon_sym_requires] = ACTIONS(3650), - [anon_sym_CARET_CARET] = ACTIONS(3652), - [anon_sym_LBRACK_COLON] = ACTIONS(3652), - [sym_this] = ACTIONS(3650), + [sym_identifier] = ACTIONS(3562), + [anon_sym_LPAREN2] = ACTIONS(3564), + [anon_sym_BANG] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [anon_sym_DASH] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3562), + [anon_sym_STAR] = ACTIONS(3564), + [anon_sym_AMP] = ACTIONS(3564), + [anon_sym_SEMI] = ACTIONS(3564), + [anon_sym___extension__] = ACTIONS(3562), + [anon_sym_typedef] = ACTIONS(3562), + [anon_sym_virtual] = ACTIONS(3562), + [anon_sym_extern] = ACTIONS(3562), + [anon_sym___attribute__] = ACTIONS(3562), + [anon_sym___attribute] = ACTIONS(3562), + [anon_sym_COLON_COLON] = ACTIONS(3564), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3564), + [anon_sym___declspec] = ACTIONS(3562), + [anon_sym_LBRACE] = ACTIONS(3564), + [anon_sym_signed] = ACTIONS(3562), + [anon_sym_unsigned] = ACTIONS(3562), + [anon_sym_long] = ACTIONS(3562), + [anon_sym_short] = ACTIONS(3562), + [anon_sym_LBRACK] = ACTIONS(3562), + [anon_sym_static] = ACTIONS(3562), + [anon_sym_register] = ACTIONS(3562), + [anon_sym_inline] = ACTIONS(3562), + [anon_sym___inline] = ACTIONS(3562), + [anon_sym___inline__] = ACTIONS(3562), + [anon_sym___forceinline] = ACTIONS(3562), + [anon_sym_thread_local] = ACTIONS(3562), + [anon_sym___thread] = ACTIONS(3562), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_constexpr] = ACTIONS(3562), + [anon_sym_volatile] = ACTIONS(3562), + [anon_sym_restrict] = ACTIONS(3562), + [anon_sym___restrict__] = ACTIONS(3562), + [anon_sym__Atomic] = ACTIONS(3562), + [anon_sym__Noreturn] = ACTIONS(3562), + [anon_sym_noreturn] = ACTIONS(3562), + [anon_sym__Nonnull] = ACTIONS(3562), + [anon_sym_mutable] = ACTIONS(3562), + [anon_sym_constinit] = ACTIONS(3562), + [anon_sym_consteval] = ACTIONS(3562), + [anon_sym_alignas] = ACTIONS(3562), + [anon_sym__Alignas] = ACTIONS(3562), + [sym_primitive_type] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), + [anon_sym_class] = ACTIONS(3562), + [anon_sym_struct] = ACTIONS(3562), + [anon_sym_union] = ACTIONS(3562), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_else] = ACTIONS(3562), + [anon_sym_switch] = ACTIONS(3562), + [anon_sym_while] = ACTIONS(3562), + [anon_sym_do] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_goto] = ACTIONS(3562), + [anon_sym___try] = ACTIONS(3562), + [anon_sym___leave] = ACTIONS(3562), + [anon_sym_not] = ACTIONS(3562), + [anon_sym_compl] = ACTIONS(3562), + [anon_sym_DASH_DASH] = ACTIONS(3564), + [anon_sym_PLUS_PLUS] = ACTIONS(3564), + [anon_sym_sizeof] = ACTIONS(3562), + [anon_sym___alignof__] = ACTIONS(3562), + [anon_sym___alignof] = ACTIONS(3562), + [anon_sym__alignof] = ACTIONS(3562), + [anon_sym_alignof] = ACTIONS(3562), + [anon_sym__Alignof] = ACTIONS(3562), + [anon_sym_offsetof] = ACTIONS(3562), + [anon_sym__Generic] = ACTIONS(3562), + [anon_sym_typename] = ACTIONS(3562), + [anon_sym_asm] = ACTIONS(3562), + [anon_sym___asm__] = ACTIONS(3562), + [anon_sym___asm] = ACTIONS(3562), + [sym_number_literal] = ACTIONS(3564), + [anon_sym_L_SQUOTE] = ACTIONS(3564), + [anon_sym_u_SQUOTE] = ACTIONS(3564), + [anon_sym_U_SQUOTE] = ACTIONS(3564), + [anon_sym_u8_SQUOTE] = ACTIONS(3564), + [anon_sym_SQUOTE] = ACTIONS(3564), + [anon_sym_L_DQUOTE] = ACTIONS(3564), + [anon_sym_u_DQUOTE] = ACTIONS(3564), + [anon_sym_U_DQUOTE] = ACTIONS(3564), + [anon_sym_u8_DQUOTE] = ACTIONS(3564), + [anon_sym_DQUOTE] = ACTIONS(3564), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [anon_sym_NULL] = ACTIONS(3562), + [anon_sym_nullptr] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3562), + [anon_sym_decltype] = ACTIONS(3562), + [anon_sym_template] = ACTIONS(3562), + [anon_sym_try] = ACTIONS(3562), + [anon_sym_delete] = ACTIONS(3562), + [anon_sym_throw] = ACTIONS(3562), + [anon_sym_co_return] = ACTIONS(3562), + [anon_sym_co_yield] = ACTIONS(3562), + [anon_sym_R_DQUOTE] = ACTIONS(3564), + [anon_sym_LR_DQUOTE] = ACTIONS(3564), + [anon_sym_uR_DQUOTE] = ACTIONS(3564), + [anon_sym_UR_DQUOTE] = ACTIONS(3564), + [anon_sym_u8R_DQUOTE] = ACTIONS(3564), + [anon_sym_co_await] = ACTIONS(3562), + [anon_sym_new] = ACTIONS(3562), + [anon_sym_requires] = ACTIONS(3562), + [anon_sym_CARET_CARET] = ACTIONS(3564), + [anon_sym_LBRACK_COLON] = ACTIONS(3564), + [sym_this] = ACTIONS(3562), }, [STATE(1265)] = { - [sym_identifier] = ACTIONS(5597), - [anon_sym_LPAREN2] = ACTIONS(5603), - [anon_sym_BANG] = ACTIONS(5603), - [anon_sym_TILDE] = ACTIONS(5603), - [anon_sym_DASH] = ACTIONS(5605), - [anon_sym_PLUS] = ACTIONS(5605), - [anon_sym_STAR] = ACTIONS(5603), - [anon_sym_AMP] = ACTIONS(5603), - [anon_sym_SEMI] = ACTIONS(5603), - [anon_sym___extension__] = ACTIONS(5597), - [anon_sym_virtual] = ACTIONS(5609), - [anon_sym_extern] = ACTIONS(5609), - [anon_sym___attribute__] = ACTIONS(5609), - [anon_sym___attribute] = ACTIONS(5609), - [anon_sym_COLON_COLON] = ACTIONS(5600), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5600), - [anon_sym___declspec] = ACTIONS(5609), - [anon_sym_LBRACE] = ACTIONS(5603), - [anon_sym_signed] = ACTIONS(5609), - [anon_sym_unsigned] = ACTIONS(5609), - [anon_sym_long] = ACTIONS(5609), - [anon_sym_short] = ACTIONS(5609), - [anon_sym_LBRACK] = ACTIONS(5605), - [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(5597), - [anon_sym_enum] = ACTIONS(5609), - [anon_sym_class] = ACTIONS(5609), - [anon_sym_struct] = ACTIONS(5609), - [anon_sym_union] = ACTIONS(5609), - [anon_sym_if] = ACTIONS(5605), - [anon_sym_switch] = ACTIONS(5605), - [anon_sym_case] = ACTIONS(5605), - [anon_sym_default] = ACTIONS(5605), - [anon_sym_while] = ACTIONS(5605), - [anon_sym_do] = ACTIONS(5605), - [anon_sym_for] = ACTIONS(5605), - [anon_sym_return] = ACTIONS(5605), - [anon_sym_break] = ACTIONS(5605), - [anon_sym_continue] = ACTIONS(5605), - [anon_sym_goto] = ACTIONS(5605), - [anon_sym___try] = ACTIONS(5605), - [anon_sym___leave] = ACTIONS(5605), - [anon_sym_not] = ACTIONS(5605), - [anon_sym_compl] = ACTIONS(5605), - [anon_sym_DASH_DASH] = ACTIONS(5603), - [anon_sym_PLUS_PLUS] = ACTIONS(5603), - [anon_sym_sizeof] = ACTIONS(5605), - [anon_sym___alignof__] = ACTIONS(5605), - [anon_sym___alignof] = ACTIONS(5605), - [anon_sym__alignof] = ACTIONS(5605), - [anon_sym_alignof] = ACTIONS(5605), - [anon_sym__Alignof] = ACTIONS(5605), - [anon_sym_offsetof] = ACTIONS(5605), - [anon_sym__Generic] = ACTIONS(5605), - [anon_sym_typename] = ACTIONS(5597), - [anon_sym_asm] = ACTIONS(5605), - [anon_sym___asm__] = ACTIONS(5605), - [anon_sym___asm] = ACTIONS(5605), - [sym_number_literal] = ACTIONS(5603), - [anon_sym_L_SQUOTE] = ACTIONS(5603), - [anon_sym_u_SQUOTE] = ACTIONS(5603), - [anon_sym_U_SQUOTE] = ACTIONS(5603), - [anon_sym_u8_SQUOTE] = ACTIONS(5603), - [anon_sym_SQUOTE] = 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_true] = ACTIONS(5605), - [sym_false] = ACTIONS(5605), - [anon_sym_NULL] = ACTIONS(5605), - [anon_sym_nullptr] = ACTIONS(5605), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5609), - [anon_sym_decltype] = ACTIONS(5597), - [anon_sym_template] = ACTIONS(5597), - [anon_sym_try] = ACTIONS(5605), - [anon_sym_delete] = ACTIONS(5605), - [anon_sym_throw] = ACTIONS(5605), - [anon_sym_co_return] = ACTIONS(5605), - [anon_sym_co_yield] = ACTIONS(5605), - [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), - [anon_sym_co_await] = ACTIONS(5605), - [anon_sym_new] = ACTIONS(5605), - [anon_sym_requires] = ACTIONS(5605), - [anon_sym_CARET_CARET] = ACTIONS(5603), - [anon_sym_LBRACK_COLON] = ACTIONS(5600), - [sym_this] = ACTIONS(5605), - }, - [STATE(1266)] = { - [sym_identifier] = ACTIONS(3658), - [anon_sym_LPAREN2] = ACTIONS(3660), - [anon_sym_BANG] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3660), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym___extension__] = ACTIONS(3658), - [anon_sym_typedef] = ACTIONS(3658), - [anon_sym_virtual] = ACTIONS(3658), - [anon_sym_extern] = ACTIONS(3658), - [anon_sym___attribute__] = ACTIONS(3658), - [anon_sym___attribute] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), - [anon_sym___declspec] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3660), - [anon_sym_signed] = ACTIONS(3658), - [anon_sym_unsigned] = ACTIONS(3658), - [anon_sym_long] = ACTIONS(3658), - [anon_sym_short] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_register] = ACTIONS(3658), - [anon_sym_inline] = ACTIONS(3658), - [anon_sym___inline] = ACTIONS(3658), - [anon_sym___inline__] = ACTIONS(3658), - [anon_sym___forceinline] = ACTIONS(3658), - [anon_sym_thread_local] = ACTIONS(3658), - [anon_sym___thread] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_constexpr] = ACTIONS(3658), - [anon_sym_volatile] = ACTIONS(3658), - [anon_sym_restrict] = ACTIONS(3658), - [anon_sym___restrict__] = ACTIONS(3658), - [anon_sym__Atomic] = ACTIONS(3658), - [anon_sym__Noreturn] = ACTIONS(3658), - [anon_sym_noreturn] = ACTIONS(3658), - [anon_sym__Nonnull] = ACTIONS(3658), - [anon_sym_mutable] = ACTIONS(3658), - [anon_sym_constinit] = ACTIONS(3658), - [anon_sym_consteval] = ACTIONS(3658), - [anon_sym_alignas] = ACTIONS(3658), - [anon_sym__Alignas] = ACTIONS(3658), - [sym_primitive_type] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3658), - [anon_sym_union] = ACTIONS(3658), - [anon_sym_if] = ACTIONS(3658), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_switch] = ACTIONS(3658), - [anon_sym_while] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_for] = ACTIONS(3658), - [anon_sym_return] = ACTIONS(3658), - [anon_sym_break] = ACTIONS(3658), - [anon_sym_continue] = ACTIONS(3658), - [anon_sym_goto] = ACTIONS(3658), - [anon_sym___try] = ACTIONS(3658), - [anon_sym___leave] = ACTIONS(3658), - [anon_sym_not] = ACTIONS(3658), - [anon_sym_compl] = ACTIONS(3658), - [anon_sym_DASH_DASH] = ACTIONS(3660), - [anon_sym_PLUS_PLUS] = ACTIONS(3660), - [anon_sym_sizeof] = ACTIONS(3658), - [anon_sym___alignof__] = ACTIONS(3658), - [anon_sym___alignof] = ACTIONS(3658), - [anon_sym__alignof] = ACTIONS(3658), - [anon_sym_alignof] = ACTIONS(3658), - [anon_sym__Alignof] = ACTIONS(3658), - [anon_sym_offsetof] = ACTIONS(3658), - [anon_sym__Generic] = ACTIONS(3658), - [anon_sym_typename] = ACTIONS(3658), - [anon_sym_asm] = ACTIONS(3658), - [anon_sym___asm__] = ACTIONS(3658), - [anon_sym___asm] = ACTIONS(3658), - [sym_number_literal] = ACTIONS(3660), - [anon_sym_L_SQUOTE] = ACTIONS(3660), - [anon_sym_u_SQUOTE] = ACTIONS(3660), - [anon_sym_U_SQUOTE] = ACTIONS(3660), - [anon_sym_u8_SQUOTE] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_L_DQUOTE] = ACTIONS(3660), - [anon_sym_u_DQUOTE] = ACTIONS(3660), - [anon_sym_U_DQUOTE] = ACTIONS(3660), - [anon_sym_u8_DQUOTE] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [sym_true] = ACTIONS(3658), - [sym_false] = ACTIONS(3658), - [anon_sym_NULL] = ACTIONS(3658), - [anon_sym_nullptr] = ACTIONS(3658), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3658), - [anon_sym_decltype] = ACTIONS(3658), - [anon_sym_template] = ACTIONS(3658), - [anon_sym_try] = ACTIONS(3658), - [anon_sym_delete] = ACTIONS(3658), - [anon_sym_throw] = ACTIONS(3658), - [anon_sym_co_return] = ACTIONS(3658), - [anon_sym_co_yield] = ACTIONS(3658), - [anon_sym_R_DQUOTE] = ACTIONS(3660), - [anon_sym_LR_DQUOTE] = ACTIONS(3660), - [anon_sym_uR_DQUOTE] = ACTIONS(3660), - [anon_sym_UR_DQUOTE] = ACTIONS(3660), - [anon_sym_u8R_DQUOTE] = ACTIONS(3660), - [anon_sym_co_await] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_requires] = ACTIONS(3658), - [anon_sym_CARET_CARET] = ACTIONS(3660), - [anon_sym_LBRACK_COLON] = ACTIONS(3660), - [sym_this] = ACTIONS(3658), - }, - [STATE(1267)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6079), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(10413), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5638), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5638), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5638), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5645), - [anon_sym_LT_LT] = ACTIONS(5638), - [anon_sym_GT_GT] = ACTIONS(5638), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6034), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(10328), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5611), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5611), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5611), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5619), + [anon_sym_LT_LT] = ACTIONS(5611), + [anon_sym_GT_GT] = ACTIONS(5611), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(5645), + [anon_sym_LBRACK] = ACTIONS(5619), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -234620,96 +234362,208 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_typename] = ACTIONS(5464), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_typename] = ACTIONS(5462), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1268)] = { - [sym_compound_statement] = STATE(9819), - [sym_expression] = STATE(6683), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9819), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(5940), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1266)] = { + [sym_expression] = STATE(5519), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(11508), + [sym__unary_right_fold] = STATE(11514), + [sym__binary_fold] = STATE(11546), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1267)] = { + [sym_compound_statement] = STATE(9946), + [sym_expression] = STATE(6605), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9946), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(5934), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -234722,7 +234576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -234742,8 +234596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -234754,74 +234608,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1269)] = { - [sym_compound_statement] = STATE(10045), - [sym_expression] = STATE(6589), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10045), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(5942), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1268)] = { + [sym_compound_statement] = STATE(9730), + [sym_expression] = STATE(6617), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9730), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(5936), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -234834,7 +234688,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -234854,8 +234708,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -234866,298 +234720,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1270)] = { - [sym_expression] = STATE(5336), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11505), - [sym__unary_right_fold] = STATE(11613), - [sym__binary_fold] = STATE(11634), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1271)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_identifier_parameter_pack_expansion] = STATE(10273), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5814), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(5944), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5946), - [anon_sym_COMMA] = ACTIONS(5948), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(5948), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1272)] = { - [sym_expression] = STATE(6881), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10706), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10706), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1269)] = { + [sym_compound_statement] = STATE(9966), + [sym_expression] = STATE(6644), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9966), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(5938), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5950), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -235170,7 +234800,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -235190,8 +234820,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -235202,74 +234832,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1273)] = { - [sym_compound_statement] = STATE(9744), - [sym_expression] = STATE(6604), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9744), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(5952), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1270)] = { + [sym_expression] = STATE(6772), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10817), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10817), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5940), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -235282,7 +234912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -235302,8 +234932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -235314,190 +234944,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1274)] = { - [sym_expression] = STATE(5346), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11576), - [sym__unary_right_fold] = STATE(11577), - [sym__binary_fold] = STATE(11578), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1271)] = { + [sym_expression] = STATE(5311), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(11536), + [sym__unary_right_fold] = STATE(11537), + [sym__binary_fold] = STATE(11538), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1275)] = { - [sym_expression] = STATE(6382), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_initializer_list] = STATE(9193), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(5954), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1272)] = { + [sym_expression] = STATE(6389), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_initializer_list] = STATE(9181), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(5942), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -235505,107 +235135,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(5956), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(5958), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(5944), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5946), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1276)] = { - [sym_compound_statement] = STATE(9882), - [sym_expression] = STATE(6618), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9882), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(5960), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1273)] = { + [sym_compound_statement] = STATE(10104), + [sym_expression] = STATE(6657), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10104), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(5948), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -235618,7 +235248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -235638,8 +235268,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -235650,298 +235280,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1277)] = { - [sym_expression] = STATE(5389), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11536), - [sym__unary_right_fold] = STATE(11566), - [sym__binary_fold] = STATE(11627), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1278)] = { - [sym_compound_statement] = STATE(10717), - [sym_expression] = STATE(5274), - [sym__string] = STATE(4580), - [sym_comma_expression] = STATE(10717), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym__assignment_expression_lhs] = STATE(11050), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(57), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1279)] = { - [sym_compound_statement] = STATE(10057), - [sym_expression] = STATE(6644), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10057), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(5962), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1274)] = { + [sym_compound_statement] = STATE(9993), + [sym_expression] = STATE(6577), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9993), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(5950), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -235954,7 +235360,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -235974,8 +235380,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -235986,190 +235392,191 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1280)] = { - [sym_expression] = STATE(5294), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(10919), - [sym__unary_right_fold] = STATE(10920), - [sym__binary_fold] = STATE(10921), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1275)] = { + [sym_compound_statement] = STATE(11616), + [sym_expression] = STATE(5409), + [sym__string] = STATE(4593), + [sym_comma_expression] = STATE(11616), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym__assignment_expression_lhs] = STATE(11103), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(57), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, - [STATE(1281)] = { - [sym_expression] = STATE(6394), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_initializer_list] = STATE(9188), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(5964), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1276)] = { + [sym_expression] = STATE(6731), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11231), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(11231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5952), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -236177,107 +235584,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(5966), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(5968), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1282)] = { - [sym_compound_statement] = STATE(9969), - [sym_expression] = STATE(6627), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9969), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(5970), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1277)] = { + [sym_expression] = STATE(5268), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(10657), + [sym__unary_right_fold] = STATE(10658), + [sym__binary_fold] = STATE(10659), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1278)] = { + [sym_string_literal] = STATE(3874), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2062), + [sym_raw_string_literal] = STATE(3874), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5954), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = ACTIONS(5621), + [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), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5957), + [anon_sym_or_eq] = ACTIONS(5957), + [anon_sym_xor_eq] = ACTIONS(5957), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5619), + [anon_sym_L_DQUOTE] = ACTIONS(5959), + [anon_sym_u_DQUOTE] = ACTIONS(5959), + [anon_sym_U_DQUOTE] = ACTIONS(5959), + [anon_sym_u8_DQUOTE] = ACTIONS(5959), + [anon_sym_DQUOTE] = ACTIONS(5959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(5961), + [anon_sym_LR_DQUOTE] = ACTIONS(5961), + [anon_sym_uR_DQUOTE] = ACTIONS(5961), + [anon_sym_UR_DQUOTE] = ACTIONS(5961), + [anon_sym_u8R_DQUOTE] = ACTIONS(5961), + [anon_sym_DASH_GT_STAR] = ACTIONS(5611), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), + }, + [STATE(1279)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_identifier_parameter_pack_expansion] = STATE(10559), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5721), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(5963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5965), + [anon_sym_COMMA] = ACTIONS(5967), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(5967), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1280)] = { + [sym_expression] = STATE(6743), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11574), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(11574), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5969), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -236290,7 +236032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -236310,8 +236052,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -236322,74 +236064,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1283)] = { - [sym_expression] = STATE(6895), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11210), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11210), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1281)] = { + [sym_expression] = STATE(6885), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10905), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10905), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5972), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5971), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -236402,7 +236144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -236422,8 +236164,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -236434,78 +236176,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1284)] = { + [STATE(1282)] = { + [sym_expression] = STATE(5414), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(10685), + [sym__unary_right_fold] = STATE(10705), + [sym__binary_fold] = STATE(10706), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1283)] = { [sym_expression] = STATE(6378), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_initializer_list] = STATE(9233), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(5974), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_initializer_list] = STATE(9216), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(5973), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -236513,219 +236367,779 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(5976), - [aux_sym_pure_virtual_clause_token1] = ACTIONS(5978), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(5975), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5977), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1284)] = { + [sym_expression] = STATE(5329), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(10937), + [sym__unary_right_fold] = STATE(10945), + [sym__binary_fold] = STATE(10953), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, [STATE(1285)] = { - [sym_expression] = STATE(5361), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(10679), - [sym__unary_right_fold] = STATE(10699), - [sym__binary_fold] = STATE(10713), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [sym_expression] = STATE(5441), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(10721), + [sym__unary_right_fold] = STATE(10756), + [sym__binary_fold] = STATE(10763), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, [STATE(1286)] = { - [sym_expression] = STATE(6769), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11493), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11493), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(5283), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(10869), + [sym__unary_right_fold] = STATE(10874), + [sym__binary_fold] = STATE(10875), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1287)] = { + [sym_expression] = STATE(5300), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(11276), + [sym__unary_right_fold] = STATE(11315), + [sym__binary_fold] = STATE(11382), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1288)] = { + [sym_expression] = STATE(5319), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(10829), + [sym__unary_right_fold] = STATE(10836), + [sym__binary_fold] = STATE(10837), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1289)] = { + [sym_expression] = STATE(5337), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(11062), + [sym__unary_right_fold] = STATE(11066), + [sym__binary_fold] = STATE(11068), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1290)] = { + [sym_compound_statement] = STATE(9773), + [sym_expression] = STATE(6591), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9773), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(5979), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5980), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -236738,7 +237152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -236758,8 +237172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -236770,522 +237184,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1287)] = { - [sym_expression] = STATE(5271), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(10662), - [sym__unary_right_fold] = STATE(10665), - [sym__binary_fold] = STATE(10668), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1288)] = { - [sym_expression] = STATE(5317), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11055), - [sym__unary_right_fold] = STATE(11097), - [sym__binary_fold] = STATE(11101), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1289)] = { - [sym_expression] = STATE(5306), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(10917), - [sym__unary_right_fold] = STATE(10922), - [sym__binary_fold] = STATE(10924), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1290)] = { - [sym_expression] = STATE(5333), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(10793), - [sym__unary_right_fold] = STATE(10798), - [sym__binary_fold] = STATE(10806), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, [STATE(1291)] = { - [sym_expression] = STATE(6903), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10759), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10759), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(5447), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym__unary_left_fold] = STATE(11037), + [sym__unary_right_fold] = STATE(10725), + [sym__binary_fold] = STATE(10688), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2222), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1292)] = { + [sym_compound_statement] = STATE(9885), + [sym_expression] = STATE(6572), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9885), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(5981), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5982), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -237298,7 +237376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -237318,8 +237396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -237330,186 +237408,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1292)] = { - [sym_expression] = STATE(5357), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11543), - [sym__unary_right_fold] = STATE(11546), - [sym__binary_fold] = STATE(11549), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, [STATE(1293)] = { - [sym_compound_statement] = STATE(10135), - [sym_expression] = STATE(6653), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(5984), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_compound_statement] = STATE(9992), + [sym_expression] = STATE(6646), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9992), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(5983), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -237522,7 +237488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -237542,8 +237508,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -237554,79 +237520,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1294)] = { - [sym_expression] = STATE(6811), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11386), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), + [sym_expression] = STATE(6385), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_initializer_list] = STATE(9242), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(5986), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(5985), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -237634,106 +237599,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(5987), + [aux_sym_pure_virtual_clause_token1] = ACTIONS(5989), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1295)] = { - [sym_compound_statement] = STATE(10120), - [sym_expression] = STATE(6694), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10120), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(5988), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_compound_statement] = STATE(9867), + [sym_expression] = STATE(6635), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(9867), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(5991), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -237746,7 +237712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -237766,8 +237732,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -237778,186 +237744,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1296)] = { - [sym_string_literal] = STATE(3858), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2050), - [sym_raw_string_literal] = STATE(3858), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_RPAREN] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5990), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5647), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5993), - [anon_sym_or_eq] = ACTIONS(5993), - [anon_sym_xor_eq] = ACTIONS(5993), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5645), - [anon_sym_L_DQUOTE] = ACTIONS(5995), - [anon_sym_u_DQUOTE] = ACTIONS(5995), - [anon_sym_U_DQUOTE] = ACTIONS(5995), - [anon_sym_u8_DQUOTE] = ACTIONS(5995), - [anon_sym_DQUOTE] = ACTIONS(5995), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(5997), - [anon_sym_LR_DQUOTE] = ACTIONS(5997), - [anon_sym_uR_DQUOTE] = ACTIONS(5997), - [anon_sym_UR_DQUOTE] = ACTIONS(5997), - [anon_sym_u8R_DQUOTE] = ACTIONS(5997), - [anon_sym_DASH_GT_STAR] = ACTIONS(5638), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1297)] = { - [sym_compound_statement] = STATE(9681), - [sym_expression] = STATE(6558), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(9681), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(5999), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6729), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11048), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(11048), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(5993), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -237970,7 +237824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -237990,8 +237844,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -238002,185 +237856,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1298)] = { - [sym_expression] = STATE(5366), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym__unary_left_fold] = STATE(11218), - [sym__unary_right_fold] = STATE(11219), - [sym__binary_fold] = STATE(11220), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2224), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1299)] = { - [sym_compound_statement] = STATE(10461), - [sym_expression] = STATE(6809), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10461), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1297)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5995), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -238193,7 +237935,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -238213,8 +237955,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -238225,73 +237967,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1300)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6001), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1298)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5998), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -238304,7 +238046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -238324,8 +238066,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -238336,184 +238078,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1301)] = { - [sym_expression] = STATE(6565), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_initializer_list] = STATE(9785), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6004), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1302)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6006), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1299)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6001), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -238526,7 +238157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -238546,8 +238177,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -238558,184 +238189,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1303)] = { - [sym_expression] = STATE(6564), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_initializer_list] = STATE(9753), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6009), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1304)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6011), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1300)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6004), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -238748,7 +238268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -238768,8 +238288,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -238780,184 +238300,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1305)] = { - [sym_expression] = STATE(6689), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_initializer_list] = STATE(9928), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6014), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1306)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6016), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1301)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6007), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -238970,7 +238379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -238990,8 +238399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -239002,73 +238411,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1307)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6019), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1302)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6010), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239081,7 +238490,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -239101,8 +238510,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -239113,184 +238522,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1308)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4991), - [sym_template_argument_list] = STATE(2495), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(4270), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_RPAREN] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_TILDE] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(5650), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_virtual] = ACTIONS(5636), - [anon_sym_extern] = ACTIONS(5636), - [anon_sym___attribute__] = ACTIONS(5636), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5643), - [anon_sym___declspec] = ACTIONS(5636), - [anon_sym___based] = ACTIONS(5636), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(5659), - [anon_sym_unsigned] = ACTIONS(5659), - [anon_sym_long] = ACTIONS(5659), - [anon_sym_short] = ACTIONS(5659), - [anon_sym_LBRACK] = ACTIONS(5647), - [anon_sym_static] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(5636), - [anon_sym_register] = ACTIONS(5636), - [anon_sym_inline] = ACTIONS(5636), - [anon_sym___inline] = ACTIONS(5636), - [anon_sym___inline__] = ACTIONS(5636), - [anon_sym___forceinline] = ACTIONS(5636), - [anon_sym_thread_local] = ACTIONS(5636), - [anon_sym___thread] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5661), - [anon_sym_or_eq] = ACTIONS(5661), - [anon_sym_xor_eq] = ACTIONS(5661), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5665), - [anon_sym_decltype] = ACTIONS(5667), - [anon_sym_template] = ACTIONS(5636), - [anon_sym_operator] = ACTIONS(5636), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_LBRACK_COLON] = ACTIONS(5643), - }, - [STATE(1309)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6022), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1303)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6013), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239303,7 +238601,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -239323,8 +238621,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -239335,73 +238633,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1310)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6025), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1304)] = { + [sym_compound_statement] = STATE(10312), + [sym_expression] = STATE(6807), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10312), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239414,7 +238712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -239434,8 +238732,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -239446,73 +238744,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1311)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6028), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1305)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6016), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239525,7 +238823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -239545,8 +238843,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -239557,73 +238855,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1312)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6031), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1306)] = { + [sym_expression] = STATE(6615), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_initializer_list] = STATE(9800), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6019), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1307)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6021), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239636,7 +239045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -239656,8 +239065,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -239668,295 +239077,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1313)] = { - [sym_expression] = STATE(6593), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_initializer_list] = STATE(10098), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6034), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [STATE(1308)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4918), + [sym_template_argument_list] = STATE(2442), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(4249), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_TILDE] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5627), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_virtual] = ACTIONS(5609), + [anon_sym_extern] = ACTIONS(5609), + [anon_sym___attribute__] = ACTIONS(5609), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5617), + [anon_sym___declspec] = ACTIONS(5609), + [anon_sym___based] = ACTIONS(5609), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(5639), + [anon_sym_unsigned] = ACTIONS(5639), + [anon_sym_long] = ACTIONS(5639), + [anon_sym_short] = ACTIONS(5639), + [anon_sym_LBRACK] = ACTIONS(5621), + [anon_sym_static] = ACTIONS(5609), + [anon_sym_EQ] = 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), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5649), + [anon_sym_decltype] = ACTIONS(5651), + [anon_sym_template] = ACTIONS(5609), + [anon_sym_operator] = ACTIONS(5609), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_LBRACK_COLON] = ACTIONS(5617), }, - [STATE(1314)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6036), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [STATE(1309)] = { + [sym_expression] = STATE(6575), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_initializer_list] = STATE(9967), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6024), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1315)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6039), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1310)] = { + [sym_expression] = STATE(6594), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_initializer_list] = STATE(9923), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6026), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1311)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6028), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -239969,7 +239489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -239989,8 +239509,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -240001,77 +239521,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1316)] = { - [sym_expression] = STATE(6863), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_initializer_list] = STATE(5986), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1312)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6031), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -240079,7 +239600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -240099,89 +239620,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1317)] = { - [sym_expression] = STATE(6926), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11494), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6042), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1313)] = { + [sym_expression] = STATE(6562), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_initializer_list] = STATE(9917), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6034), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1314)] = { + [sym_expression] = STATE(6858), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_initializer_list] = STATE(10413), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1315)] = { + [sym_expression] = STATE(6831), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11681), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6036), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -240189,7 +239931,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -240209,744 +239951,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1318)] = { - [sym_expression] = STATE(6897), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_initializer_list] = STATE(7379), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1319)] = { - [sym_expression] = STATE(6752), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_initializer_list] = STATE(7209), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1320)] = { - [sym_expression] = STATE(3820), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_initializer_list] = STATE(3937), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1321)] = { - [sym_expression] = STATE(5302), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_initializer_list] = STATE(5799), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1322)] = { - [sym_expression] = STATE(5421), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_initializer_list] = STATE(5767), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1316)] = { + [sym_expression] = STATE(6884), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_initializer_list] = STATE(7192), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1323)] = { - [sym_expression] = STATE(3820), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_initializer_list] = STATE(3937), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [STATE(1317)] = { + [sym_expression] = STATE(6909), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_initializer_list] = STATE(7368), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1324)] = { - [sym_expression] = STATE(6435), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(5992), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1318)] = { + [sym_expression] = STATE(6837), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11628), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6038), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -240959,7 +240261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -240979,8 +240281,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -240991,77 +240293,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1325)] = { - [sym_expression] = STATE(6783), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_initializer_list] = STATE(5992), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4922), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1319)] = { + [sym_expression] = STATE(6736), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10812), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6040), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -241069,7 +240371,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -241089,89 +240391,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1326)] = { - [sym_expression] = STATE(6773), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11015), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6044), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1320)] = { + [sym_expression] = STATE(6767), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10207), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -241179,7 +240481,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -241199,89 +240501,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1327)] = { - [sym_expression] = STATE(5919), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_initializer_list] = STATE(5986), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACE] = ACTIONS(4922), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1321)] = { + [sym_expression] = STATE(6838), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11657), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6042), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -241289,7 +240591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -241309,199 +240611,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1328)] = { - [sym_expression] = STATE(5210), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_initializer_list] = STATE(5596), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1329)] = { - [sym_expression] = STATE(6566), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(9818), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6046), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1322)] = { + [sym_expression] = STATE(6793), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11239), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6044), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -241509,7 +240701,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -241529,309 +240721,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1330)] = { - [sym_expression] = STATE(6904), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_initializer_list] = STATE(10592), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1331)] = { - [sym_expression] = STATE(3820), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_initializer_list] = STATE(3937), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1332)] = { - [sym_expression] = STATE(6742), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10620), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1323)] = { + [sym_expression] = STATE(6795), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10914), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6046), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -241839,7 +240811,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -241859,199 +240831,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1333)] = { - [sym_expression] = STATE(6545), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_initializer_list] = STATE(5992), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [STATE(1324)] = { + [sym_expression] = STATE(6724), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_initializer_list] = STATE(7329), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(1334)] = { - [sym_expression] = STATE(6767), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11674), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6049), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1325)] = { + [sym_expression] = STATE(6756), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10832), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6048), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -242059,7 +241031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242079,199 +241051,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1335)] = { - [sym_expression] = STATE(6831), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_initializer_list] = STATE(7379), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1336)] = { - [sym_expression] = STATE(5919), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_initializer_list] = STATE(5986), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1326)] = { + [sym_expression] = STATE(6321), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_initializer_list] = STATE(6002), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -242279,104 +241141,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1337)] = { - [sym_expression] = STATE(6603), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10620), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1327)] = { + [sym_expression] = STATE(6496), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(6002), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -242389,7 +241251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242409,8 +241271,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -242421,72 +241283,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1338)] = { - [sym_expression] = STATE(6740), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10792), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1328)] = { + [sym_expression] = STATE(6567), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(9706), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6050), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -242499,7 +241361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242519,8 +241381,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -242531,72 +241393,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1339)] = { - [sym_expression] = STATE(6896), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10844), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), + [STATE(1329)] = { + [sym_expression] = STATE(6913), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10635), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), [anon_sym_RPAREN] = ACTIONS(6053), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -242609,7 +241471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242629,8 +241491,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -242641,77 +241503,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1340)] = { - [sym_expression] = STATE(7178), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10912), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1330)] = { + [sym_expression] = STATE(6914), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11547), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6055), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -242719,7 +241581,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242739,84 +241601,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1341)] = { - [sym_expression] = STATE(6731), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11669), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), + [STATE(1331)] = { + [sym_expression] = STATE(5842), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_initializer_list] = STATE(5943), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1332)] = { + [sym_expression] = STATE(6546), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_initializer_list] = STATE(6002), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1333)] = { + [sym_expression] = STATE(7138), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10739), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -242829,7 +241911,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -242849,8 +241931,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -242861,77 +241943,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1342)] = { - [sym_expression] = STATE(6330), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_initializer_list] = STATE(5992), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1334)] = { + [sym_expression] = STATE(6825), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10856), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6057), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -242939,109 +242021,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1343)] = { - [sym_expression] = STATE(6757), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11178), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6057), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1335)] = { + [sym_expression] = STATE(6782), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11510), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6059), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -243049,7 +242131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243069,89 +242151,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1344)] = { - [sym_expression] = STATE(5919), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_initializer_list] = STATE(5986), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1336)] = { + [sym_expression] = STATE(6547), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_initializer_list] = STATE(9651), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -243159,219 +242241,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1345)] = { - [sym_expression] = STATE(6879), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_initializer_list] = STATE(7269), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [STATE(1337)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_initializer_list] = STATE(3867), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, - [STATE(1346)] = { - [sym_expression] = STATE(6917), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10839), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6059), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1338)] = { + [sym_expression] = STATE(6748), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10990), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -243379,7 +242461,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243399,199 +242481,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1347)] = { - [sym_expression] = STATE(6826), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_initializer_list] = STATE(7360), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1348)] = { - [sym_expression] = STATE(7072), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11135), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1339)] = { + [sym_expression] = STATE(6791), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10697), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6063), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -243599,7 +242571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243619,89 +242591,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1349)] = { - [sym_expression] = STATE(6761), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11082), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6061), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1340)] = { + [sym_expression] = STATE(6841), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10654), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6065), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -243709,7 +242681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243729,89 +242701,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1350)] = { - [sym_expression] = STATE(5919), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(5986), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), + [STATE(1341)] = { + [sym_expression] = STATE(6780), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_initializer_list] = STATE(7385), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(4902), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1342)] = { + [sym_expression] = STATE(5842), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_initializer_list] = STATE(5943), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1343)] = { + [sym_expression] = STATE(6775), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11205), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6067), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -243819,7 +243011,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243839,89 +243031,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1351)] = { - [sym_expression] = STATE(6832), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10724), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6063), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1344)] = { + [sym_expression] = STATE(6812), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10585), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -243929,7 +243121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -243949,89 +243141,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1352)] = { - [sym_expression] = STATE(6921), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11063), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6065), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1345)] = { + [sym_expression] = STATE(5052), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_initializer_list] = STATE(5677), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1346)] = { + [sym_expression] = STATE(5842), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_initializer_list] = STATE(5943), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -244039,7 +243341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244059,84 +243361,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1353)] = { - [sym_expression] = STATE(6818), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10556), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1347)] = { + [sym_expression] = STATE(7036), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10850), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244149,7 +243451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244169,8 +243471,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -244181,72 +243483,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1354)] = { - [sym_expression] = STATE(6820), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(10579), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1348)] = { + [sym_expression] = STATE(6910), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_initializer_list] = STATE(7192), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1349)] = { + [sym_expression] = STATE(5419), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_initializer_list] = STATE(5763), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1350)] = { + [sym_expression] = STATE(5425), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_initializer_list] = STATE(5907), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1351)] = { + [sym_expression] = STATE(6569), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(10207), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244259,7 +243891,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244279,8 +243911,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -244291,77 +243923,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1355)] = { - [sym_expression] = STATE(6735), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11356), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6067), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1352)] = { + [sym_expression] = STATE(6874), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11177), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -244369,7 +244001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244389,89 +244021,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1356)] = { - [sym_expression] = STATE(6744), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11643), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6069), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1353)] = { + [sym_expression] = STATE(6803), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10892), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -244479,7 +244111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244499,84 +244131,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1357)] = { - [sym_expression] = STATE(6733), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11086), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6071), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1354)] = { + [sym_expression] = STATE(6836), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11026), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6073), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244589,7 +244221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244609,8 +244241,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -244621,72 +244253,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1358)] = { - [sym_expression] = STATE(6936), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_initializer_list] = STATE(11571), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1355)] = { + [sym_expression] = STATE(7043), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(11055), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -244699,7 +244331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244719,8 +244351,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -244731,77 +244363,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1359)] = { - [sym_expression] = STATE(6794), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10845), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6073), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1356)] = { + [sym_expression] = STATE(5842), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_initializer_list] = STATE(5943), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -244809,7 +244441,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -244829,304 +244461,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1360)] = { - [sym_expression] = STATE(3820), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_initializer_list] = STATE(3937), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1361)] = { - [sym_expression] = STATE(6531), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_initializer_list] = STATE(9590), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1362)] = { - [sym_expression] = STATE(6869), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11234), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), + [STATE(1357)] = { + [sym_expression] = STATE(6842), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10707), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), [anon_sym_RPAREN] = ACTIONS(6075), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -245139,7 +244551,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245159,8 +244571,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -245171,77 +244583,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1363)] = { - [sym_expression] = STATE(6870), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11240), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6077), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1358)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_initializer_list] = STATE(3867), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1359)] = { + [sym_expression] = STATE(6863), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_initializer_list] = STATE(6002), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -245249,7 +244771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245269,89 +244791,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1364)] = { - [sym_expression] = STATE(6806), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11491), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6079), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1360)] = { + [sym_expression] = STATE(6877), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_initializer_list] = STATE(5943), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -245359,7 +244881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245379,89 +244901,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1365)] = { - [sym_expression] = STATE(6817), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(10660), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6081), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1361)] = { + [sym_expression] = STATE(5751), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_initializer_list] = STATE(6087), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1362)] = { + [sym_expression] = STATE(5492), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_initializer_list] = STATE(3867), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1363)] = { + [sym_expression] = STATE(6814), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_initializer_list] = STATE(6002), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -245469,7 +245211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245489,89 +245231,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1366)] = { - [sym_expression] = STATE(6860), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11183), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6083), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1364)] = { + [sym_expression] = STATE(6916), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11573), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6077), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -245579,7 +245321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245599,199 +245341,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1365)] = { + [sym_expression] = STATE(3792), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_initializer_list] = STATE(3867), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1366)] = { + [sym_expression] = STATE(5724), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_initializer_list] = STATE(6093), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, [STATE(1367)] = { - [sym_expression] = STATE(5810), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_initializer_list] = STATE(6027), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [sym_expression] = STATE(3792), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_initializer_list] = STATE(3867), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1368)] = { - [sym_expression] = STATE(6849), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_initializer_list] = STATE(5992), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [sym_expression] = STATE(6787), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(10830), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6079), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -245799,7 +245761,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -245819,199 +245781,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1369)] = { - [sym_expression] = STATE(5493), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_initializer_list] = STATE(3937), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1370)] = { - [sym_expression] = STATE(6900), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11579), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6085), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [sym_expression] = STATE(6833), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(11406), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON] = ACTIONS(6081), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -246019,7 +245871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -246039,89 +245891,197 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1370)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6083), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, [STATE(1371)] = { - [sym_expression] = STATE(6919), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(11687), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON] = ACTIONS(6087), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [sym_expression] = STATE(5752), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6085), + [anon_sym_LPAREN2] = ACTIONS(6087), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -246129,1085 +246089,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1372)] = { - [sym_expression] = STATE(5804), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_initializer_list] = STATE(6088), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6089), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, [STATE(1373)] = { - [sym_expression] = STATE(5828), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6089), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [sym_expression] = STATE(3814), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6091), + [anon_sym_LPAREN2] = ACTIONS(6093), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1374)] = { - [sym_expression] = STATE(5096), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6092), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1375)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6095), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1376)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6097), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1377)] = { - [sym_expression] = STATE(5886), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6099), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1378)] = { - [sym_expression] = STATE(5097), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6102), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1379)] = { - [sym_expression] = STATE(3792), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6105), - [anon_sym_LPAREN2] = ACTIONS(6107), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1380)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6109), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1381)] = { - [sym_expression] = STATE(6978), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(7037), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(6111), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(6095), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -247220,7 +246416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -247240,8 +246436,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -247252,71 +246448,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1382)] = { - [sym_expression] = STATE(6983), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1375)] = { + [sym_expression] = STATE(5039), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6097), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1376)] = { + [sym_expression] = STATE(7125), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(6113), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -247329,7 +246633,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -247349,8 +246653,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(6100), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -247361,943 +246666,943 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1383)] = { - [sym_expression] = STATE(5098), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6115), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1377)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6102), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1384)] = { - [sym_expression] = STATE(5914), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6118), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1378)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6104), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1385)] = { - [sym_expression] = STATE(5099), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6121), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1379)] = { + [sym_expression] = STATE(5042), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6106), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(1386)] = { - [sym_expression] = STATE(5100), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6124), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1380)] = { + [sym_expression] = STATE(3814), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6091), + [anon_sym_LPAREN2] = ACTIONS(6109), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, - [STATE(1387)] = { - [sym_expression] = STATE(5101), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6127), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1381)] = { + [sym_expression] = STATE(5042), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6111), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(1388)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6130), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1382)] = { + [sym_expression] = STATE(5786), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6114), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1389)] = { - [sym_expression] = STATE(5101), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6132), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1383)] = { + [sym_expression] = STATE(5041), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6117), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(1390)] = { - [sym_expression] = STATE(5102), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6135), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1384)] = { + [sym_expression] = STATE(3814), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6091), + [anon_sym_LPAREN2] = ACTIONS(6120), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, - [STATE(1391)] = { - [sym_expression] = STATE(7079), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6138), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1385)] = { + [sym_expression] = STATE(7038), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(6122), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -248310,7 +247615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -248330,8 +247635,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -248342,1052 +247647,943 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1392)] = { - [sym_expression] = STATE(5914), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6140), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1393)] = { - [sym_expression] = STATE(5102), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6143), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1386)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6124), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1394)] = { - [sym_expression] = STATE(5102), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6146), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1387)] = { + [sym_expression] = STATE(5786), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6126), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1395)] = { - [sym_expression] = STATE(5102), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6149), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1388)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6129), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1396)] = { - [sym_expression] = STATE(5914), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6152), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1389)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6131), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1397)] = { - [sym_expression] = STATE(5737), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6092), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1390)] = { + [sym_expression] = STATE(5258), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6133), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(1398)] = { - [sym_expression] = STATE(5748), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6102), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1391)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6136), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1399)] = { - [sym_expression] = STATE(5104), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6155), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1392)] = { + [sym_expression] = STATE(5786), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6138), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1400)] = { - [sym_expression] = STATE(5104), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6089), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1393)] = { + [sym_expression] = STATE(5787), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6106), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1401)] = { - [sym_expression] = STATE(5934), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), - [anon_sym_LPAREN2] = ACTIONS(6160), + [STATE(1394)] = { + [sym_expression] = STATE(7012), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6141), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -249400,7 +248596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -249420,8 +248616,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -249432,71 +248628,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1402)] = { - [sym_expression] = STATE(7047), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6162), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1395)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6143), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1396)] = { + [sym_expression] = STATE(5261), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6145), + [anon_sym_LPAREN2] = ACTIONS(6147), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1397)] = { + [sym_expression] = STATE(7151), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6149), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -249509,7 +248923,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -249529,8 +248943,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -249541,1488 +248955,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1403)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6164), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1404)] = { - [sym_expression] = STATE(5757), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6115), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1405)] = { - [sym_expression] = STATE(5765), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6121), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1406)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6166), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1407)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6168), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1408)] = { - [sym_expression] = STATE(5806), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6124), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1409)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6170), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1410)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6172), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1411)] = { - [sym_expression] = STATE(5815), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6127), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1412)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6174), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1413)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6176), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1414)] = { - [sym_expression] = STATE(6517), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym_SEMI] = ACTIONS(6178), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(6180), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1415)] = { - [sym_expression] = STATE(6739), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6182), - [anon_sym_LPAREN2] = ACTIONS(6184), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), + [STATE(1398)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6151), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1416)] = { - [sym_expression] = STATE(7110), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1399)] = { + [sym_expression] = STATE(7042), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(6186), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(6153), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -251035,7 +249141,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -251055,8 +249161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -251067,71 +249173,398 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1417)] = { - [sym_expression] = STATE(7111), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1400)] = { + [sym_expression] = STATE(5258), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6155), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1401)] = { + [sym_expression] = STATE(5787), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6111), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1402)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6158), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1403)] = { + [sym_expression] = STATE(6929), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6160), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(6188), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -251144,7 +249577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -251164,8 +249597,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -251176,403 +249609,512 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1418)] = { - [sym_expression] = STATE(5815), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6132), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1404)] = { + [sym_expression] = STATE(6786), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6162), + [anon_sym_LPAREN2] = ACTIONS(6164), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1419)] = { - [sym_expression] = STATE(5824), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6135), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1405)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6166), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1420)] = { - [sym_expression] = STATE(5172), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6190), - [anon_sym_LPAREN2] = ACTIONS(6192), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1406)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6168), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1421)] = { - [sym_expression] = STATE(7144), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6194), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1407)] = { + [sym_expression] = STATE(5033), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6170), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1408)] = { + [sym_expression] = STATE(5752), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6085), + [anon_sym_LPAREN2] = ACTIONS(6173), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -251580,7 +250122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -251600,955 +250142,627 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1422)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6196), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1409)] = { + [sym_expression] = STATE(5736), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6175), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1423)] = { - [sym_expression] = STATE(5824), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6143), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1410)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6178), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1424)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6198), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1411)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6180), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1425)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6200), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1426)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6202), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1427)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6204), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1428)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6206), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1429)] = { - [sym_expression] = STATE(5793), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6208), - [anon_sym_LPAREN2] = ACTIONS(6210), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1412)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6182), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1430)] = { - [sym_expression] = STATE(7164), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), + [STATE(1413)] = { + [sym_expression] = STATE(6532), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(6184), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(6186), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1414)] = { + [sym_expression] = STATE(6988), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(6212), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -252561,7 +250775,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -252581,8 +250795,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(6188), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -252593,71 +250808,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1431)] = { - [sym_expression] = STATE(7165), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1415)] = { + [sym_expression] = STATE(7159), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6190), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(6214), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -252670,7 +250885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -252690,8 +250905,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -252702,180 +250917,943 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1432)] = { - [sym_expression] = STATE(5824), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6146), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1416)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6192), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1433)] = { - [sym_expression] = STATE(7192), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6216), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1417)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6194), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1418)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6196), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1419)] = { + [sym_expression] = STATE(5041), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6114), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1420)] = { + [sym_expression] = STATE(3814), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6091), + [anon_sym_LPAREN2] = ACTIONS(6198), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1421)] = { + [sym_expression] = STATE(5742), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6200), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1422)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6203), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1423)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6205), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1424)] = { + [sym_expression] = STATE(7075), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6207), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -252888,7 +251866,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -252908,8 +251886,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -252920,506 +251898,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1434)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6218), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1435)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6220), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1436)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6222), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1437)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6224), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1438)] = { - [sym_expression] = STATE(7113), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1425)] = { + [sym_expression] = STATE(7089), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6209), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -253432,7 +251975,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -253452,9 +251995,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6226), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -253465,834 +252007,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1439)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6228), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1440)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6230), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1441)] = { - [sym_expression] = STATE(6801), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6232), - [anon_sym_LPAREN2] = ACTIONS(6234), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [STATE(1426)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6211), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1442)] = { - [sym_expression] = STATE(5824), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6149), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1427)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6213), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1443)] = { - [sym_expression] = STATE(5096), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6236), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1428)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6215), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1444)] = { - [sym_expression] = STATE(5097), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6239), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1429)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6217), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1445)] = { - [sym_expression] = STATE(5828), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6155), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1430)] = { + [sym_expression] = STATE(5036), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6200), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(1446)] = { - [sym_expression] = STATE(6954), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6242), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1431)] = { + [sym_expression] = STATE(5752), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6085), + [anon_sym_LPAREN2] = ACTIONS(6219), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -254305,7 +252629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -254325,8 +252649,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -254337,1379 +252661,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1447)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6244), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1448)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6246), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1449)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6248), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1450)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6250), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1451)] = { - [sym_expression] = STATE(3792), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6105), - [anon_sym_LPAREN2] = ACTIONS(6252), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1452)] = { - [sym_expression] = STATE(5098), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6254), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1453)] = { - [sym_expression] = STATE(5099), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6257), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1454)] = { - [sym_expression] = STATE(5100), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1455)] = { - [sym_expression] = STATE(5101), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6263), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1456)] = { - [sym_expression] = STATE(5095), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6140), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1432)] = { + [sym_expression] = STATE(5741), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6221), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1457)] = { - [sym_expression] = STATE(5095), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6152), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1433)] = { + [sym_expression] = STATE(5742), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6224), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1458)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6266), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1434)] = { + [sym_expression] = STATE(5723), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6133), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1459)] = { - [sym_expression] = STATE(6981), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6268), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1435)] = { + [sym_expression] = STATE(7147), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -255722,7 +253064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -255742,8 +253084,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(6227), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -255754,725 +253097,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1460)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6270), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1461)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6272), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1462)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6274), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1463)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6276), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1464)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6278), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1465)] = { - [sym_expression] = STATE(5332), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6280), - [anon_sym_LPAREN2] = ACTIONS(6282), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), + [STATE(1436)] = { + [sym_expression] = STATE(5037), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6229), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(1466)] = { - [sym_expression] = STATE(7158), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1437)] = { + [sym_expression] = STATE(7092), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(6284), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(6232), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -256485,7 +253283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -256505,8 +253303,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -256517,180 +253315,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1467)] = { - [sym_expression] = STATE(5748), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6239), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1438)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6234), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1468)] = { - [sym_expression] = STATE(7008), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6286), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1439)] = { + [sym_expression] = STATE(5038), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6236), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1440)] = { + [sym_expression] = STATE(6930), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6239), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -256703,7 +253610,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -256723,8 +253630,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -256735,725 +253642,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1469)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6288), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1470)] = { - [sym_expression] = STATE(5757), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6254), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1471)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6290), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1472)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6292), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1473)] = { - [sym_expression] = STATE(5765), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6257), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1441)] = { + [sym_expression] = STATE(5753), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6241), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1474)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6294), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1442)] = { + [sym_expression] = STATE(5755), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1475)] = { - [sym_expression] = STATE(6932), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1443)] = { + [sym_expression] = STATE(7169), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(6296), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -257466,7 +253936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -257486,8 +253956,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(6247), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -257498,289 +253969,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1476)] = { - [sym_expression] = STATE(5510), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6298), - [anon_sym_LPAREN2] = ACTIONS(6300), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1477)] = { - [sym_expression] = STATE(5806), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6260), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1478)] = { - [sym_expression] = STATE(7026), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6302), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1444)] = { + [sym_expression] = STATE(6567), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(9706), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -257793,7 +254046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -257813,8 +254066,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -257825,621 +254078,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1479)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6304), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1480)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6306), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1481)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6308), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1482)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6310), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1483)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6312), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1445)] = { + [sym_expression] = STATE(5723), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6155), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1484)] = { - [sym_expression] = STATE(5934), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), - [anon_sym_LPAREN2] = ACTIONS(6314), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1446)] = { + [sym_expression] = STATE(7022), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -258447,217 +254263,326 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [sym_auto] = ACTIONS(6249), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1485)] = { - [sym_expression] = STATE(5815), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6263), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1447)] = { + [sym_expression] = STATE(5756), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6251), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1486)] = { - [sym_expression] = STATE(6517), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym_SEMI] = ACTIONS(6316), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(6180), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1448)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6254), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1449)] = { + [sym_expression] = STATE(7001), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -258665,103 +254590,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [sym_auto] = ACTIONS(6256), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1487)] = { - [sym_expression] = STATE(6938), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_RPAREN] = ACTIONS(6318), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1450)] = { + [sym_expression] = STATE(7099), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(6258), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -258774,7 +254700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -258794,8 +254720,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -258806,616 +254732,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1488)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6320), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1489)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6322), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1490)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6324), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1491)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6326), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1492)] = { - [sym_expression] = STATE(5934), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), - [anon_sym_LPAREN2] = ACTIONS(6328), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1493)] = { - [sym_expression] = STATE(6991), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1451)] = { + [sym_expression] = STATE(7106), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6260), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(6330), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -259428,7 +254809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -259448,8 +254829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -259460,289 +254841,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1494)] = { - [sym_expression] = STATE(3792), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6105), - [anon_sym_LPAREN2] = ACTIONS(6332), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1495)] = { - [sym_expression] = STATE(3792), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6105), - [anon_sym_LPAREN2] = ACTIONS(6334), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1496)] = { - [sym_expression] = STATE(6566), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(9818), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1452)] = { + [sym_expression] = STATE(7093), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -259755,7 +254917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -259775,8 +254937,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(6262), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -259787,76 +254950,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1497)] = { - [sym_expression] = STATE(5934), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), - [anon_sym_LPAREN2] = ACTIONS(6336), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1453)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6264), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1454)] = { + [sym_expression] = STATE(6532), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(6266), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(6186), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -259864,102 +255136,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1498)] = { - [sym_expression] = STATE(7100), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1455)] = { + [sym_expression] = STATE(7144), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -259972,7 +255244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -259992,9 +255264,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6338), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(6268), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -260005,289 +255277,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1499)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6340), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1456)] = { + [sym_expression] = STATE(5741), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6270), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1500)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6342), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1457)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6273), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1501)] = { - [sym_expression] = STATE(6996), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1458)] = { + [sym_expression] = STATE(6924), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym_SEMI] = ACTIONS(6344), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -260300,7 +255571,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -260320,8 +255591,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(6275), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -260332,506 +255604,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1502)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6346), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1503)] = { - [sym_expression] = STATE(5094), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6348), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1504)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6351), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1459)] = { + [sym_expression] = STATE(5753), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6229), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1505)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6353), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1460)] = { + [sym_expression] = STATE(5034), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6175), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(1506)] = { - [sym_expression] = STATE(7003), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1461)] = { + [sym_expression] = STATE(6941), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -260844,7 +255898,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -260864,9 +255918,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6355), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(6277), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -260877,179 +255931,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1507)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6357), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1462)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6279), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1508)] = { - [sym_expression] = STATE(7127), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1463)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6281), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1464)] = { + [sym_expression] = STATE(6952), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -261062,7 +256225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -261082,9 +256245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6359), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [sym_auto] = ACTIONS(6283), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -261095,70 +256258,616 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1509)] = { - [sym_expression] = STATE(7177), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1465)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6285), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1466)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6287), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1467)] = { + [sym_expression] = STATE(5732), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6170), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1468)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6289), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1469)] = { + [sym_expression] = STATE(5755), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6236), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1470)] = { + [sym_expression] = STATE(7077), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(6291), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -261171,7 +256880,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -261191,9 +256900,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6361), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -261204,70 +256912,2033 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1510)] = { - [sym_expression] = STATE(6948), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), + [STATE(1471)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6293), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1472)] = { + [sym_expression] = STATE(5035), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6221), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1473)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6295), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1474)] = { + [sym_expression] = STATE(5036), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6224), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1475)] = { + [sym_expression] = STATE(5033), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6297), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1476)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6300), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1477)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6302), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1478)] = { + [sym_expression] = STATE(5786), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6117), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1479)] = { + [sym_expression] = STATE(5371), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6304), + [anon_sym_LPAREN2] = ACTIONS(6306), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1480)] = { + [sym_expression] = STATE(5752), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6085), + [anon_sym_LPAREN2] = ACTIONS(6308), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1481)] = { + [sym_expression] = STATE(5037), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6241), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1482)] = { + [sym_expression] = STATE(5732), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6297), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1483)] = { + [sym_expression] = STATE(5038), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6244), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1484)] = { + [sym_expression] = STATE(5039), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6251), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1485)] = { + [sym_expression] = STATE(5732), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6310), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1486)] = { + [sym_expression] = STATE(5475), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6091), + [anon_sym_LPAREN2] = ACTIONS(6313), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1487)] = { + [sym_expression] = STATE(5041), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6126), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1488)] = { + [sym_expression] = STATE(6917), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6315), + [anon_sym_LPAREN2] = ACTIONS(6317), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1489)] = { + [sym_expression] = STATE(7130), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(6319), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -261280,7 +258951,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -261300,9 +258971,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6363), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -261313,70 +258983,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1511)] = { - [sym_expression] = STATE(6971), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1490)] = { + [sym_expression] = STATE(6928), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_RPAREN] = ACTIONS(6321), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -261389,7 +259060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -261409,9 +259080,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6365), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -261422,70 +259092,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1512)] = { - [sym_expression] = STATE(7002), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1491)] = { + [sym_expression] = STATE(7131), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(6323), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -261498,7 +259169,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -261518,9 +259189,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6367), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -261531,75 +259201,621 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1513)] = { - [sym_expression] = STATE(7021), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1492)] = { + [sym_expression] = STATE(5185), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6325), + [anon_sym_LPAREN2] = ACTIONS(6327), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1493)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6329), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1494)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6331), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1495)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6333), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1496)] = { + [sym_expression] = STATE(5041), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6138), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1497)] = { + [sym_expression] = STATE(6876), + [sym__string] = STATE(6410), + [sym_comma_expression] = STATE(9706), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -261607,7 +259823,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -261627,83 +259843,1282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6369), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1514)] = { - [sym_expression] = STATE(7039), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1498)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6335), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1499)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6337), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1500)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6339), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1501)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6341), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1502)] = { + [sym_expression] = STATE(5033), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6310), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1503)] = { + [sym_expression] = STATE(5039), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6343), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1504)] = { + [sym_expression] = STATE(5756), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6343), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1505)] = { + [sym_expression] = STATE(5738), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6346), + [anon_sym_LPAREN2] = ACTIONS(6348), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1506)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6350), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1507)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6352), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1508)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6354), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1509)] = { + [sym_expression] = STATE(6959), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(6356), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -261716,7 +261131,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -261736,9 +261151,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6371), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -261749,70 +261163,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1515)] = { - [sym_expression] = STATE(7052), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1510)] = { + [sym_expression] = STATE(6982), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_SEMI] = ACTIONS(6358), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -261825,7 +261240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -261845,9 +261260,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6373), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -261858,512 +261272,730 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1516)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6375), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1511)] = { + [sym_expression] = STATE(5736), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6360), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1517)] = { - [sym_expression] = STATE(5476), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6105), - [anon_sym_LPAREN2] = ACTIONS(6377), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [STATE(1512)] = { + [sym_expression] = STATE(5034), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6360), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), }, - [STATE(1518)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_RBRACK] = ACTIONS(6379), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1513)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6363), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1519)] = { - [sym_expression] = STATE(5886), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6348), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [STATE(1514)] = { + [sym_expression] = STATE(5756), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6097), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1520)] = { - [sym_expression] = STATE(6862), - [sym__string] = STATE(6386), - [sym_comma_expression] = STATE(9818), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1515)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6365), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1516)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6367), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1517)] = { + [sym_expression] = STATE(6898), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6085), + [anon_sym_LPAREN2] = ACTIONS(6369), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -262371,7 +262003,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -262391,88 +262023,524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1518)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6371), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1519)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6373), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1520)] = { + [sym_expression] = STATE(5035), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6270), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, [STATE(1521)] = { - [sym_expression] = STATE(6517), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym_SEMI] = ACTIONS(6381), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(6180), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_RBRACK] = ACTIONS(6375), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1522)] = { + [sym_expression] = STATE(6532), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_SEMI] = ACTIONS(6377), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(6186), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -262480,217 +262548,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1522)] = { - [sym_expression] = STATE(5094), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6099), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, [STATE(1523)] = { - [sym_expression] = STATE(6886), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6158), - [anon_sym_LPAREN2] = ACTIONS(6383), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [sym_expression] = STATE(6564), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -262698,7 +262656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -262718,300 +262676,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1524)] = { - [sym_expression] = STATE(5095), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6118), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1525)] = { - [sym_expression] = STATE(5737), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6236), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1526)] = { - [sym_expression] = STATE(6952), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(7033), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -263024,7 +262764,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -263044,8 +262784,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -263056,70 +262796,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1527)] = { - [sym_expression] = STATE(7191), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1525)] = { + [sym_expression] = STATE(7135), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -263132,7 +262872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -263152,8 +262892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -263164,75 +262904,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1528)] = { - [sym_expression] = STATE(6510), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1526)] = { + [sym_expression] = STATE(7125), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -263240,1079 +262980,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1529)] = { - [sym_expression] = STATE(5094), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1530)] = { - [sym_expression] = STATE(5095), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1531)] = { - [sym_expression] = STATE(5096), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1532)] = { - [sym_expression] = STATE(6802), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(6385), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1533)] = { - [sym_expression] = STATE(6803), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1534)] = { - [sym_expression] = STATE(5097), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1535)] = { - [sym_expression] = STATE(5098), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1536)] = { - [sym_expression] = STATE(6893), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(6387), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [STATE(1527)] = { + [sym_expression] = STATE(6907), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1537)] = { - [sym_expression] = STATE(5099), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1528)] = { + [sym_expression] = STATE(4728), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, - [STATE(1538)] = { - [sym_expression] = STATE(6521), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1529)] = { + [sym_expression] = STATE(7048), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -264320,318 +263304,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1539)] = { - [sym_expression] = STATE(6924), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1540)] = { - [sym_expression] = STATE(4658), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1541)] = { - [sym_expression] = STATE(7018), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), + [STATE(1530)] = { + [sym_expression] = STATE(6522), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1531)] = { + [sym_expression] = STATE(7087), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -264644,7 +263520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -264664,8 +263540,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -264676,70 +263552,934 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1542)] = { - [sym_expression] = STATE(5837), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(6389), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1532)] = { + [sym_expression] = STATE(6805), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1533)] = { + [sym_expression] = STATE(4654), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1534)] = { + [sym_expression] = STATE(6915), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1535)] = { + [sym_expression] = STATE(6730), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1536)] = { + [sym_expression] = STATE(6720), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(6379), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1537)] = { + [sym_expression] = STATE(6781), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1538)] = { + [sym_expression] = STATE(5772), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1539)] = { + [sym_expression] = STATE(6919), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(6381), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1540)] = { + [sym_expression] = STATE(7126), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -264752,7 +264492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -264772,8 +264512,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -264784,1042 +264524,1258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1541)] = { + [sym_expression] = STATE(5723), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1542)] = { + [sym_expression] = STATE(5732), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, [STATE(1543)] = { - [sym_expression] = STATE(6301), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [sym_expression] = STATE(5736), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, [STATE(1544)] = { - [sym_expression] = STATE(6525), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [sym_expression] = STATE(5741), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, [STATE(1545)] = { - [sym_expression] = STATE(5100), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_expression] = STATE(5742), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, [STATE(1546)] = { - [sym_expression] = STATE(5101), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_expression] = STATE(5753), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, [STATE(1547)] = { - [sym_expression] = STATE(6874), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_expression] = STATE(5755), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, [STATE(1548)] = { - [sym_expression] = STATE(5102), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_expression] = STATE(5756), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, [STATE(1549)] = { - [sym_expression] = STATE(5104), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_expression] = STATE(5786), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, [STATE(1550)] = { - [sym_expression] = STATE(4643), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5787), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, [STATE(1551)] = { - [sym_expression] = STATE(6775), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_expression] = STATE(6765), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, [STATE(1552)] = { - [sym_expression] = STATE(6429), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(7167), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -265832,7 +265788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -265852,8 +265808,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -265864,1150 +265820,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1553)] = { - [sym_expression] = STATE(6836), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1554)] = { - [sym_expression] = STATE(6755), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1555)] = { - [sym_expression] = STATE(6774), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1556)] = { - [sym_expression] = STATE(6753), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1557)] = { - [sym_expression] = STATE(6830), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1558)] = { - [sym_expression] = STATE(6877), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1559)] = { - [sym_expression] = STATE(6899), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1560)] = { - [sym_expression] = STATE(6905), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1561)] = { - [sym_expression] = STATE(6728), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1562)] = { - [sym_expression] = STATE(6729), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1563)] = { - [sym_expression] = STATE(6995), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(7018), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -267020,7 +265896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -267040,8 +265916,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -267052,178 +265928,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1564)] = { - [sym_expression] = STATE(6999), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1565)] = { - [sym_expression] = STATE(7017), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1554)] = { + [sym_expression] = STATE(5874), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(6383), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -267236,7 +266004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -267256,8 +266024,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -267268,1479 +266036,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1566)] = { - [sym_expression] = STATE(5001), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(6391), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1567)] = { - [sym_expression] = STATE(3794), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1568)] = { - [sym_expression] = STATE(6736), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1569)] = { - [sym_expression] = STATE(5299), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(6393), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1570)] = { - [sym_expression] = STATE(5301), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), + [STATE(1555)] = { + [sym_expression] = STATE(6806), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1571)] = { - [sym_expression] = STATE(4400), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(6395), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1572)] = { - [sym_expression] = STATE(4500), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1573)] = { - [sym_expression] = STATE(4414), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1574)] = { - [sym_expression] = STATE(4421), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1575)] = { - [sym_expression] = STATE(3782), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1576)] = { - [sym_expression] = STATE(3782), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(6397), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1577)] = { - [sym_expression] = STATE(4652), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1578)] = { - [sym_expression] = STATE(3791), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(1579)] = { - [sym_expression] = STATE(6354), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(6399), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1556)] = { + [sym_expression] = STATE(7070), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -268748,102 +266220,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1580)] = { - [sym_expression] = STATE(6479), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1557)] = { + [sym_expression] = STATE(7085), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(6401), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -268856,7 +266328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -268876,8 +266348,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -268888,75 +266360,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1581)] = { - [sym_expression] = STATE(6759), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1558)] = { + [sym_expression] = STATE(6883), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -268964,7 +266436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -268984,87 +266456,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1582)] = { - [sym_expression] = STATE(5812), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1559)] = { + [sym_expression] = STATE(7132), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -269072,539 +266544,1079 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1583)] = { - [sym_expression] = STATE(4709), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [STATE(1560)] = { + [sym_expression] = STATE(6912), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), }, - [STATE(1584)] = { - [sym_expression] = STATE(5339), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), + [STATE(1561)] = { + [sym_expression] = STATE(5094), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(6385), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1562)] = { + [sym_expression] = STATE(5076), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1563)] = { + [sym_expression] = STATE(5057), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1564)] = { + [sym_expression] = STATE(4673), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1565)] = { + [sym_expression] = STATE(5839), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(6403), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(6387), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1585)] = { - [sym_expression] = STATE(5341), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), + [STATE(1566)] = { + [sym_expression] = STATE(5860), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1586)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), + [STATE(1567)] = { + [sym_expression] = STATE(5896), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(6389), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1587)] = { - [sym_expression] = STATE(6327), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1568)] = { + [sym_expression] = STATE(5155), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(6391), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1569)] = { + [sym_expression] = STATE(6848), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -269612,107 +267624,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1588)] = { - [sym_expression] = STATE(6328), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(6405), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1570)] = { + [sym_expression] = STATE(5824), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -269720,210 +267732,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1589)] = { - [sym_expression] = STATE(5502), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), + [STATE(1571)] = { + [sym_expression] = STATE(5789), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(6407), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1590)] = { - [sym_expression] = STATE(6480), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1572)] = { + [sym_expression] = STATE(6948), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -269936,7 +267948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -269956,8 +267968,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -269968,178 +267980,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1591)] = { - [sym_expression] = STATE(5527), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), + [STATE(1573)] = { + [sym_expression] = STATE(6968), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1574)] = { + [sym_expression] = STATE(5919), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), }, - [STATE(1592)] = { - [sym_expression] = STATE(5837), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1575)] = { + [sym_expression] = STATE(7024), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -270152,7 +268272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -270172,8 +268292,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -270184,291 +268304,3315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1576)] = { + [sym_expression] = STATE(5923), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1577)] = { + [sym_expression] = STATE(4714), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1578)] = { + [sym_expression] = STATE(3779), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1579)] = { + [sym_expression] = STATE(4718), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1580)] = { + [sym_expression] = STATE(4720), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1581)] = { + [sym_expression] = STATE(4723), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1582)] = { + [sym_expression] = STATE(4738), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1583)] = { + [sym_expression] = STATE(4664), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1584)] = { + [sym_expression] = STATE(4678), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1585)] = { + [sym_expression] = STATE(4687), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1586)] = { + [sym_expression] = STATE(4726), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1587)] = { + [sym_expression] = STATE(5045), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1588)] = { + [sym_expression] = STATE(6802), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(6393), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1589)] = { + [sym_expression] = STATE(6804), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1590)] = { + [sym_expression] = STATE(6862), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(6395), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1591)] = { + [sym_expression] = STATE(6902), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1592)] = { + [sym_expression] = STATE(6844), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, [STATE(1593)] = { - [sym_expression] = STATE(5136), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [sym_expression] = STATE(6746), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, [STATE(1594)] = { - [sym_expression] = STATE(6828), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_expression] = STATE(5431), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(6397), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), }, [STATE(1595)] = { - [sym_expression] = STATE(6309), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [sym_expression] = STATE(5433), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1596)] = { + [sym_expression] = STATE(5421), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(6399), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1597)] = { + [sym_expression] = STATE(5357), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1598)] = { + [sym_expression] = STATE(5272), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1599)] = { + [sym_expression] = STATE(5291), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1600)] = { + [sym_expression] = STATE(5368), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(6401), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1601)] = { + [sym_expression] = STATE(5406), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1602)] = { + [sym_expression] = STATE(5449), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1603)] = { + [sym_expression] = STATE(5471), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1604)] = { + [sym_expression] = STATE(4902), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(6403), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1605)] = { + [sym_expression] = STATE(4859), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1606)] = { + [sym_expression] = STATE(6484), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -270476,107 +271620,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1596)] = { - [sym_expression] = STATE(5764), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1607)] = { + [sym_expression] = STATE(4835), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1608)] = { + [sym_expression] = STATE(4936), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1609)] = { + [sym_expression] = STATE(6430), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -270584,107 +271944,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1597)] = { - [sym_expression] = STATE(6307), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1610)] = { + [sym_expression] = STATE(5256), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1611)] = { + [sym_expression] = STATE(5256), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(6405), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1612)] = { + [sym_expression] = STATE(5181), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1613)] = { + [sym_expression] = STATE(6532), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(6186), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -270692,107 +272376,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1598)] = { - [sym_expression] = STATE(6333), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1614)] = { + [sym_expression] = STATE(5903), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -270800,107 +272484,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1599)] = { - [sym_expression] = STATE(6348), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1615)] = { + [sym_expression] = STATE(5372), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1616)] = { + [sym_expression] = STATE(6531), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -270908,107 +272700,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1600)] = { - [sym_expression] = STATE(6364), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1617)] = { + [sym_expression] = STATE(6540), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(6407), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271016,107 +272808,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1601)] = { - [sym_expression] = STATE(6365), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1618)] = { + [sym_expression] = STATE(5774), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271124,107 +272916,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1602)] = { - [sym_expression] = STATE(6342), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1619)] = { + [sym_expression] = STATE(6431), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271232,107 +273024,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1603)] = { - [sym_expression] = STATE(6347), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1620)] = { + [sym_expression] = STATE(6433), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271340,107 +273132,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1604)] = { - [sym_expression] = STATE(6298), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1621)] = { + [sym_expression] = STATE(6550), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271448,323 +273240,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1605)] = { - [sym_expression] = STATE(5315), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1606)] = { - [sym_expression] = STATE(3815), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1607)] = { - [sym_expression] = STATE(6343), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1622)] = { + [sym_expression] = STATE(5774), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -271772,323 +273348,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1608)] = { - [sym_expression] = STATE(4719), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1609)] = { - [sym_expression] = STATE(4726), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1610)] = { - [sym_expression] = STATE(7087), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), + [STATE(1623)] = { + [sym_expression] = STATE(6551), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272096,323 +273456,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1611)] = { - [sym_expression] = STATE(5296), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1612)] = { - [sym_expression] = STATE(4631), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1613)] = { - [sym_expression] = STATE(6960), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1624)] = { + [sym_expression] = STATE(6523), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272420,107 +273564,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1614)] = { - [sym_expression] = STATE(6519), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1625)] = { + [sym_expression] = STATE(6500), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272528,215 +273672,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1615)] = { - [sym_expression] = STATE(4632), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1616)] = { - [sym_expression] = STATE(6370), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1626)] = { + [sym_expression] = STATE(6501), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -272744,431 +273780,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1617)] = { - [sym_expression] = STATE(4633), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1618)] = { - [sym_expression] = STATE(4634), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1619)] = { - [sym_expression] = STATE(4637), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1620)] = { - [sym_expression] = STATE(6338), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1627)] = { + [sym_expression] = STATE(6502), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -273176,2370 +273888,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1621)] = { - [sym_expression] = STATE(5303), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(6409), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1622)] = { - [sym_expression] = STATE(4638), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1623)] = { - [sym_expression] = STATE(5392), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1624)] = { - [sym_expression] = STATE(5930), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1625)] = { - [sym_expression] = STATE(5107), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1626)] = { - [sym_expression] = STATE(5507), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1627)] = { - [sym_expression] = STATE(6918), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, [STATE(1628)] = { - [sym_expression] = STATE(6908), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_expression] = STATE(6507), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, [STATE(1629)] = { - [sym_expression] = STATE(6910), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_expression] = STATE(6508), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, [STATE(1630)] = { - [sym_expression] = STATE(6911), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_expression] = STATE(6509), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, [STATE(1631)] = { - [sym_expression] = STATE(6912), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_expression] = STATE(6510), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, [STATE(1632)] = { - [sym_expression] = STATE(6913), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [sym_expression] = STATE(6514), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, [STATE(1633)] = { - [sym_expression] = STATE(6724), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1634)] = { - [sym_expression] = STATE(6915), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1635)] = { - [sym_expression] = STATE(6916), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1636)] = { - [sym_expression] = STATE(6922), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1637)] = { - [sym_expression] = STATE(6923), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1638)] = { - [sym_expression] = STATE(4492), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(6411), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1639)] = { - [sym_expression] = STATE(3794), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1640)] = { - [sym_expression] = STATE(6901), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1641)] = { - [sym_expression] = STATE(6738), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1642)] = { - [sym_expression] = STATE(7169), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6937), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -275552,7 +274536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -275572,8 +274556,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -275584,502 +274568,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1643)] = { - [sym_expression] = STATE(6839), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(6413), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1644)] = { - [sym_expression] = STATE(6864), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1645)] = { - [sym_expression] = STATE(3772), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1646)] = { - [sym_expression] = STATE(5773), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1647)] = { - [sym_expression] = STATE(5812), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1634)] = { + [sym_expression] = STATE(6434), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -276092,7 +274644,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276112,8 +274664,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -276124,178 +274676,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1648)] = { - [sym_expression] = STATE(6844), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(6415), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1649)] = { - [sym_expression] = STATE(5851), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1635)] = { + [sym_expression] = STATE(6424), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -276308,7 +274752,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276328,8 +274772,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -276340,178 +274784,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1650)] = { - [sym_expression] = STATE(5367), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1651)] = { - [sym_expression] = STATE(6821), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1636)] = { + [sym_expression] = STATE(6435), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -276524,7 +274860,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276544,8 +274880,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -276556,70 +274892,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1652)] = { - [sym_expression] = STATE(6428), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1637)] = { + [sym_expression] = STATE(6436), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(6417), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -276632,7 +274968,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -276652,8 +274988,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -276664,6334 +275000,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1653)] = { - [sym_expression] = STATE(4845), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(6419), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1654)] = { - [sym_expression] = STATE(5325), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1655)] = { - [sym_expression] = STATE(5516), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1656)] = { - [sym_expression] = STATE(5517), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1657)] = { - [sym_expression] = STATE(5518), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1658)] = { - [sym_expression] = STATE(5519), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1659)] = { - [sym_expression] = STATE(5520), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1660)] = { - [sym_expression] = STATE(5521), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1661)] = { - [sym_expression] = STATE(5522), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1662)] = { - [sym_expression] = STATE(5524), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1663)] = { - [sym_expression] = STATE(5525), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1664)] = { - [sym_expression] = STATE(5526), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1665)] = { - [sym_expression] = STATE(5769), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1666)] = { - [sym_expression] = STATE(5792), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1667)] = { - [sym_expression] = STATE(4788), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1668)] = { - [sym_expression] = STATE(5076), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(6421), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1669)] = { - [sym_expression] = STATE(5886), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1670)] = { - [sym_expression] = STATE(3772), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1671)] = { - [sym_expression] = STATE(5914), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1672)] = { - [sym_expression] = STATE(5737), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1673)] = { - [sym_expression] = STATE(5748), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1674)] = { - [sym_expression] = STATE(5757), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1675)] = { - [sym_expression] = STATE(5765), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1676)] = { - [sym_expression] = STATE(5806), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1677)] = { - [sym_expression] = STATE(5815), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1678)] = { - [sym_expression] = STATE(5824), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1679)] = { - [sym_expression] = STATE(5828), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1680)] = { - [sym_expression] = STATE(4783), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1681)] = { - [sym_expression] = STATE(6734), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1682)] = { - [sym_expression] = STATE(4875), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1683)] = { - [sym_expression] = STATE(6776), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1684)] = { - [sym_expression] = STATE(6777), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1685)] = { - [sym_expression] = STATE(5447), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1686)] = { - [sym_expression] = STATE(5373), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1687)] = { - [sym_expression] = STATE(5375), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1688)] = { - [sym_expression] = STATE(5376), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1689)] = { - [sym_expression] = STATE(5378), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1690)] = { - [sym_expression] = STATE(5379), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1691)] = { - [sym_expression] = STATE(5380), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1692)] = { - [sym_expression] = STATE(5381), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1693)] = { - [sym_expression] = STATE(5382), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1694)] = { - [sym_expression] = STATE(5383), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1695)] = { - [sym_expression] = STATE(5386), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1696)] = { - [sym_expression] = STATE(6771), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1697)] = { - [sym_expression] = STATE(6782), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1698)] = { - [sym_expression] = STATE(4996), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1699)] = { - [sym_expression] = STATE(4777), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1700)] = { - [sym_expression] = STATE(3815), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1701)] = { - [sym_expression] = STATE(4794), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1702)] = { - [sym_expression] = STATE(4809), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1703)] = { - [sym_expression] = STATE(4817), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1704)] = { - [sym_expression] = STATE(4819), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1705)] = { - [sym_expression] = STATE(4828), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1706)] = { - [sym_expression] = STATE(4839), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1707)] = { - [sym_expression] = STATE(5028), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1708)] = { - [sym_expression] = STATE(4787), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1709)] = { - [sym_expression] = STATE(3782), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1710)] = { - [sym_expression] = STATE(3791), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1711)] = { - [sym_expression] = STATE(6756), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1638)] = { + [sym_expression] = STATE(6437), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -283004,7 +275076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -283024,8 +275096,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -283036,70 +275108,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1712)] = { - [sym_expression] = STATE(7085), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1639)] = { + [sym_expression] = STATE(6438), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -283112,7 +275184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -283132,8 +275204,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -283144,2122 +275216,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1713)] = { - [sym_expression] = STATE(6889), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1714)] = { - [sym_expression] = STATE(6813), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1715)] = { - [sym_expression] = STATE(4491), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1716)] = { - [sym_expression] = STATE(4498), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1717)] = { - [sym_expression] = STATE(3815), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1718)] = { - [sym_expression] = STATE(4402), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1719)] = { - [sym_expression] = STATE(4403), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1720)] = { - [sym_expression] = STATE(4404), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1721)] = { - [sym_expression] = STATE(4406), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1722)] = { - [sym_expression] = STATE(4407), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1723)] = { - [sym_expression] = STATE(4411), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1724)] = { - [sym_expression] = STATE(4412), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1725)] = { - [sym_expression] = STATE(4499), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1726)] = { - [sym_expression] = STATE(5323), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1727)] = { - [sym_expression] = STATE(5331), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1728)] = { - [sym_expression] = STATE(5242), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), + [STATE(1640)] = { + [sym_expression] = STATE(6348), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, - [STATE(1729)] = { - [sym_expression] = STATE(5270), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(6423), - }, - [STATE(1730)] = { - [sym_expression] = STATE(6909), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1731)] = { - [sym_expression] = STATE(7156), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1732)] = { - [sym_expression] = STATE(6823), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1641)] = { + [sym_expression] = STATE(6439), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -285272,7 +275400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -285292,8 +275420,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -285304,723 +275432,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1733)] = { - [sym_expression] = STATE(5442), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1734)] = { - [sym_expression] = STATE(5508), - [sym__string] = STATE(5665), - [sym_conditional_expression] = STATE(5782), - [sym_assignment_expression] = STATE(5782), - [sym_pointer_expression] = STATE(5823), - [sym_unary_expression] = STATE(5782), - [sym_binary_expression] = STATE(5782), - [sym_update_expression] = STATE(5782), - [sym_cast_expression] = STATE(5782), - [sym_sizeof_expression] = STATE(5782), - [sym_alignof_expression] = STATE(5782), - [sym_offsetof_expression] = STATE(5782), - [sym_generic_expression] = STATE(5782), - [sym_subscript_expression] = STATE(5823), - [sym_call_expression] = STATE(5823), - [sym_gnu_asm_expression] = STATE(5782), - [sym_extension_expression] = STATE(5782), - [sym_field_expression] = STATE(5823), - [sym_compound_literal_expression] = STATE(5782), - [sym_parenthesized_expression] = STATE(5823), - [sym_char_literal] = STATE(5665), - [sym_concatenated_string] = STATE(5665), - [sym_string_literal] = STATE(3893), - [sym_null] = STATE(5782), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10308), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5782), - [sym_raw_string_literal] = STATE(3893), - [sym_co_await_expression] = STATE(5782), - [sym_new_expression] = STATE(5782), - [sym_delete_expression] = STATE(5782), - [sym_requires_clause] = STATE(5782), - [sym_requires_expression] = STATE(5782), - [sym_lambda_expression] = STATE(5782), - [sym_lambda_capture_specifier] = STATE(8024), - [sym_fold_expression] = STATE(5782), - [sym_parameter_pack_expansion] = STATE(5782), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5823), - [sym_qualified_type_identifier] = STATE(10308), - [sym_reflect_expression] = STATE(5782), - [sym_splice_specifier] = STATE(5134), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9378), - [sym_splice_expression] = STATE(5669), - [sym_user_defined_literal] = STATE(5823), - [sym_identifier] = ACTIONS(3042), - [anon_sym_LPAREN2] = ACTIONS(3825), - [anon_sym_BANG] = ACTIONS(3046), - [anon_sym_TILDE] = ACTIONS(3046), - [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_PLUS] = ACTIONS(3044), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(3048), - [anon_sym_COLON_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3054), - [anon_sym_not] = ACTIONS(3044), - [anon_sym_compl] = ACTIONS(3044), - [anon_sym_DASH_DASH] = ACTIONS(3845), - [anon_sym_PLUS_PLUS] = ACTIONS(3845), - [anon_sym_sizeof] = ACTIONS(3056), - [anon_sym___alignof__] = ACTIONS(3058), - [anon_sym___alignof] = ACTIONS(3058), - [anon_sym__alignof] = ACTIONS(3058), - [anon_sym_alignof] = ACTIONS(3058), - [anon_sym__Alignof] = ACTIONS(3058), - [anon_sym_offsetof] = ACTIONS(3060), - [anon_sym__Generic] = ACTIONS(3062), - [anon_sym_typename] = ACTIONS(3064), - [anon_sym_asm] = ACTIONS(3066), - [anon_sym___asm__] = ACTIONS(3066), - [anon_sym___asm] = ACTIONS(3066), - [sym_number_literal] = ACTIONS(3068), - [anon_sym_L_SQUOTE] = ACTIONS(3070), - [anon_sym_u_SQUOTE] = ACTIONS(3070), - [anon_sym_U_SQUOTE] = ACTIONS(3070), - [anon_sym_u8_SQUOTE] = ACTIONS(3070), - [anon_sym_SQUOTE] = ACTIONS(3070), - [anon_sym_L_DQUOTE] = ACTIONS(3072), - [anon_sym_u_DQUOTE] = ACTIONS(3072), - [anon_sym_U_DQUOTE] = ACTIONS(3072), - [anon_sym_u8_DQUOTE] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [sym_true] = ACTIONS(3074), - [sym_false] = ACTIONS(3074), - [anon_sym_NULL] = ACTIONS(3076), - [anon_sym_nullptr] = ACTIONS(3076), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3080), - [anon_sym_R_DQUOTE] = ACTIONS(3082), - [anon_sym_LR_DQUOTE] = ACTIONS(3082), - [anon_sym_uR_DQUOTE] = ACTIONS(3082), - [anon_sym_UR_DQUOTE] = ACTIONS(3082), - [anon_sym_u8R_DQUOTE] = ACTIONS(3082), - [anon_sym_co_await] = ACTIONS(3084), - [anon_sym_new] = ACTIONS(3086), - [anon_sym_requires] = ACTIONS(3088), - [anon_sym_CARET_CARET] = ACTIONS(3090), - [anon_sym_LBRACK_COLON] = ACTIONS(3092), - [sym_this] = ACTIONS(3074), - }, - [STATE(1735)] = { - [sym_expression] = STATE(5093), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1736)] = { - [sym_expression] = STATE(5093), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(6425), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1737)] = { - [sym_expression] = STATE(4687), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(6427), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1738)] = { - [sym_expression] = STATE(5837), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1739)] = { - [sym_expression] = STATE(5851), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1642)] = { + [sym_expression] = STATE(6518), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -286028,102 +275508,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1740)] = { - [sym_expression] = STATE(7091), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1643)] = { + [sym_expression] = STATE(7143), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -286136,7 +275616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -286156,8 +275636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -286168,183 +275648,2451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1741)] = { - [sym_expression] = STATE(3794), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [STATE(1644)] = { + [sym_expression] = STATE(6755), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1742)] = { - [sym_expression] = STATE(7115), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1645)] = { + [sym_expression] = STATE(6747), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1646)] = { + [sym_expression] = STATE(6752), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1647)] = { + [sym_expression] = STATE(6753), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1648)] = { + [sym_expression] = STATE(6754), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1649)] = { + [sym_expression] = STATE(6719), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1650)] = { + [sym_expression] = STATE(6758), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1651)] = { + [sym_expression] = STATE(6761), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1652)] = { + [sym_expression] = STATE(6762), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1653)] = { + [sym_expression] = STATE(6763), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1654)] = { + [sym_expression] = STATE(6764), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1655)] = { + [sym_expression] = STATE(4849), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(6409), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1656)] = { + [sym_expression] = STATE(3819), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1657)] = { + [sym_expression] = STATE(5330), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(6411), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1658)] = { + [sym_expression] = STATE(5331), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1659)] = { + [sym_expression] = STATE(4528), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(6413), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1660)] = { + [sym_expression] = STATE(4485), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1661)] = { + [sym_expression] = STATE(4396), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1662)] = { + [sym_expression] = STATE(4398), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1663)] = { + [sym_expression] = STATE(3809), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1664)] = { + [sym_expression] = STATE(3809), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(6415), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1665)] = { + [sym_expression] = STATE(3813), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1666)] = { + [sym_expression] = STATE(6368), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6417), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -286352,215 +278100,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1743)] = { - [sym_expression] = STATE(5171), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1744)] = { - [sym_expression] = STATE(7181), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1667)] = { + [sym_expression] = STATE(5903), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -286568,107 +278208,323 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1745)] = { - [sym_expression] = STATE(6517), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(6180), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1668)] = { + [sym_expression] = STATE(5104), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1669)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1670)] = { + [sym_expression] = STATE(6358), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -286676,107 +278532,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1746)] = { - [sym_expression] = STATE(6502), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1671)] = { + [sym_expression] = STATE(6291), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(6419), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -286784,107 +278640,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1747)] = { - [sym_expression] = STATE(5837), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1672)] = { + [sym_expression] = STATE(6370), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -286892,107 +278748,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1748)] = { - [sym_expression] = STATE(5851), - [sym__string] = STATE(6402), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(4733), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(4733), - [sym_call_expression] = STATE(4733), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(4733), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(4733), - [sym_char_literal] = STATE(6402), - [sym_concatenated_string] = STATE(6402), - [sym_string_literal] = STATE(4844), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4844), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(4733), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(4733), - [sym_identifier] = ACTIONS(5686), - [anon_sym_LPAREN2] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3857), - [anon_sym_TILDE] = ACTIONS(3857), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(4672), - [anon_sym_COLON_COLON] = ACTIONS(4674), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3859), - [anon_sym_compl] = ACTIONS(3859), - [anon_sym_DASH_DASH] = ACTIONS(3879), - [anon_sym_PLUS_PLUS] = ACTIONS(3879), - [anon_sym_sizeof] = ACTIONS(3881), + [STATE(1673)] = { + [sym_expression] = STATE(5774), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -287000,107 +278856,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3885), - [anon_sym_L_SQUOTE] = ACTIONS(3887), - [anon_sym_u_SQUOTE] = ACTIONS(3887), - [anon_sym_U_SQUOTE] = ACTIONS(3887), - [anon_sym_u8_SQUOTE] = ACTIONS(3887), - [anon_sym_SQUOTE] = ACTIONS(3887), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3895), - [anon_sym_delete] = ACTIONS(3897), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_co_await] = ACTIONS(3901), - [anon_sym_new] = ACTIONS(3903), - [anon_sym_requires] = ACTIONS(3905), - [anon_sym_CARET_CARET] = ACTIONS(3907), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1749)] = { - [sym_expression] = STATE(5812), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1674)] = { + [sym_expression] = STATE(6371), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -287108,107 +278964,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1750)] = { - [sym_expression] = STATE(7176), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1675)] = { + [sym_expression] = STATE(6351), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -287216,539 +279072,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1751)] = { - [sym_expression] = STATE(3782), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1752)] = { - [sym_expression] = STATE(3791), - [sym__string] = STATE(5130), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(5130), - [sym_concatenated_string] = STATE(5130), - [sym_string_literal] = STATE(3741), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3741), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2900), - [anon_sym_LPAREN2] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2902), - [anon_sym_compl] = ACTIONS(2902), - [anon_sym_DASH_DASH] = ACTIONS(3815), - [anon_sym_PLUS_PLUS] = ACTIONS(3815), - [anon_sym_sizeof] = ACTIONS(2910), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2912), - [anon_sym_L_SQUOTE] = ACTIONS(2914), - [anon_sym_u_SQUOTE] = ACTIONS(2914), - [anon_sym_U_SQUOTE] = ACTIONS(2914), - [anon_sym_u8_SQUOTE] = ACTIONS(2914), - [anon_sym_SQUOTE] = ACTIONS(2914), - [anon_sym_L_DQUOTE] = ACTIONS(2916), - [anon_sym_u_DQUOTE] = ACTIONS(2916), - [anon_sym_U_DQUOTE] = ACTIONS(2916), - [anon_sym_u8_DQUOTE] = ACTIONS(2916), - [anon_sym_DQUOTE] = ACTIONS(2916), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2918), - [anon_sym_R_DQUOTE] = ACTIONS(2920), - [anon_sym_LR_DQUOTE] = ACTIONS(2920), - [anon_sym_uR_DQUOTE] = ACTIONS(2920), - [anon_sym_UR_DQUOTE] = ACTIONS(2920), - [anon_sym_u8R_DQUOTE] = ACTIONS(2920), - [anon_sym_co_await] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2924), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1753)] = { - [sym_expression] = STATE(3782), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1754)] = { - [sym_expression] = STATE(3791), - [sym__string] = STATE(4618), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4618), - [sym_concatenated_string] = STATE(4618), - [sym_string_literal] = STATE(3331), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3331), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3968), - [anon_sym_BANG] = ACTIONS(2390), - [anon_sym_TILDE] = ACTIONS(2390), - [anon_sym_DASH] = ACTIONS(2388), - [anon_sym_PLUS] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(3861), - [anon_sym_AMP] = ACTIONS(3861), - [anon_sym___extension__] = ACTIONS(2392), - [anon_sym_COLON_COLON] = ACTIONS(2394), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2388), - [anon_sym_compl] = ACTIONS(2388), - [anon_sym_DASH_DASH] = ACTIONS(3980), - [anon_sym_PLUS_PLUS] = ACTIONS(3980), - [anon_sym_sizeof] = ACTIONS(2400), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2412), - [anon_sym_L_SQUOTE] = ACTIONS(2414), - [anon_sym_u_SQUOTE] = ACTIONS(2414), - [anon_sym_U_SQUOTE] = ACTIONS(2414), - [anon_sym_u8_SQUOTE] = ACTIONS(2414), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2426), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_co_await] = ACTIONS(2430), - [anon_sym_new] = ACTIONS(2432), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2436), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1755)] = { - [sym_expression] = STATE(6436), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1676)] = { + [sym_expression] = STATE(6342), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -287756,107 +279180,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1756)] = { - [sym_expression] = STATE(6578), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1677)] = { + [sym_expression] = STATE(6349), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -287864,215 +279288,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1757)] = { - [sym_expression] = STATE(6875), - [sym__string] = STATE(7019), - [sym_conditional_expression] = STATE(7397), - [sym_assignment_expression] = STATE(7397), - [sym_pointer_expression] = STATE(5763), - [sym_unary_expression] = STATE(7397), - [sym_binary_expression] = STATE(7397), - [sym_update_expression] = STATE(7397), - [sym_cast_expression] = STATE(7397), - [sym_sizeof_expression] = STATE(7397), - [sym_alignof_expression] = STATE(7397), - [sym_offsetof_expression] = STATE(7397), - [sym_generic_expression] = STATE(7397), - [sym_subscript_expression] = STATE(5763), - [sym_call_expression] = STATE(5763), - [sym_gnu_asm_expression] = STATE(7397), - [sym_extension_expression] = STATE(7397), - [sym_field_expression] = STATE(5763), - [sym_compound_literal_expression] = STATE(7397), - [sym_parenthesized_expression] = STATE(5763), - [sym_char_literal] = STATE(7019), - [sym_concatenated_string] = STATE(7019), - [sym_string_literal] = STATE(5939), - [sym_null] = STATE(7397), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10514), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7397), - [sym_raw_string_literal] = STATE(5939), - [sym_co_await_expression] = STATE(7397), - [sym_new_expression] = STATE(7397), - [sym_delete_expression] = STATE(7397), - [sym_requires_clause] = STATE(7397), - [sym_requires_expression] = STATE(7397), - [sym_lambda_expression] = STATE(7397), - [sym_lambda_capture_specifier] = STATE(8047), - [sym_fold_expression] = STATE(7397), - [sym_parameter_pack_expansion] = STATE(7397), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5763), - [sym_qualified_type_identifier] = STATE(10514), - [sym_reflect_expression] = STATE(7397), - [sym_splice_specifier] = STATE(6714), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9388), - [sym_splice_expression] = STATE(7022), - [sym_user_defined_literal] = STATE(5763), - [sym_identifier] = ACTIONS(4906), - [anon_sym_LPAREN2] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(4908), - [anon_sym_COLON_COLON] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4912), - [anon_sym_not] = ACTIONS(3192), - [anon_sym_compl] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_sizeof] = ACTIONS(3214), - [anon_sym___alignof__] = ACTIONS(3216), - [anon_sym___alignof] = ACTIONS(3216), - [anon_sym__alignof] = ACTIONS(3216), - [anon_sym_alignof] = ACTIONS(3216), - [anon_sym__Alignof] = ACTIONS(3216), - [anon_sym_offsetof] = ACTIONS(3218), - [anon_sym__Generic] = ACTIONS(3220), - [anon_sym_typename] = ACTIONS(4914), - [anon_sym_asm] = ACTIONS(3224), - [anon_sym___asm__] = ACTIONS(3224), - [anon_sym___asm] = ACTIONS(3224), - [sym_number_literal] = ACTIONS(3226), - [anon_sym_L_SQUOTE] = ACTIONS(3228), - [anon_sym_u_SQUOTE] = ACTIONS(3228), - [anon_sym_U_SQUOTE] = ACTIONS(3228), - [anon_sym_u8_SQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_L_DQUOTE] = ACTIONS(3230), - [anon_sym_u_DQUOTE] = ACTIONS(3230), - [anon_sym_U_DQUOTE] = ACTIONS(3230), - [anon_sym_u8_DQUOTE] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [anon_sym_NULL] = ACTIONS(3234), - [anon_sym_nullptr] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_R_DQUOTE] = ACTIONS(3246), - [anon_sym_LR_DQUOTE] = ACTIONS(3246), - [anon_sym_uR_DQUOTE] = ACTIONS(3246), - [anon_sym_UR_DQUOTE] = ACTIONS(3246), - [anon_sym_u8R_DQUOTE] = ACTIONS(3246), - [anon_sym_co_await] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_requires] = ACTIONS(3252), - [anon_sym_CARET_CARET] = ACTIONS(3254), - [anon_sym_LBRACK_COLON] = ACTIONS(3256), - [sym_this] = ACTIONS(3232), - }, - [STATE(1758)] = { - [sym_expression] = STATE(6974), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1678)] = { + [sym_expression] = STATE(6362), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -288080,323 +279396,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1759)] = { - [sym_expression] = STATE(5268), - [sym__string] = STATE(5670), - [sym_conditional_expression] = STATE(5929), - [sym_assignment_expression] = STATE(5929), - [sym_pointer_expression] = STATE(5826), - [sym_unary_expression] = STATE(5929), - [sym_binary_expression] = STATE(5929), - [sym_update_expression] = STATE(5929), - [sym_cast_expression] = STATE(5929), - [sym_sizeof_expression] = STATE(5929), - [sym_alignof_expression] = STATE(5929), - [sym_offsetof_expression] = STATE(5929), - [sym_generic_expression] = STATE(5929), - [sym_subscript_expression] = STATE(5826), - [sym_call_expression] = STATE(5826), - [sym_gnu_asm_expression] = STATE(5929), - [sym_extension_expression] = STATE(5929), - [sym_field_expression] = STATE(5826), - [sym_compound_literal_expression] = STATE(5929), - [sym_parenthesized_expression] = STATE(5826), - [sym_char_literal] = STATE(5670), - [sym_concatenated_string] = STATE(5670), - [sym_string_literal] = STATE(3843), - [sym_null] = STATE(5929), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10468), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5929), - [sym_raw_string_literal] = STATE(3843), - [sym_co_await_expression] = STATE(5929), - [sym_new_expression] = STATE(5929), - [sym_delete_expression] = STATE(5929), - [sym_requires_clause] = STATE(5929), - [sym_requires_expression] = STATE(5929), - [sym_lambda_expression] = STATE(5929), - [sym_lambda_capture_specifier] = STATE(8045), - [sym_fold_expression] = STATE(5929), - [sym_parameter_pack_expansion] = STATE(5929), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7928), - [sym_qualified_identifier] = STATE(5826), - [sym_qualified_type_identifier] = STATE(10468), - [sym_reflect_expression] = STATE(5929), - [sym_splice_specifier] = STATE(5064), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9397), - [sym_splice_expression] = STATE(5540), - [sym_user_defined_literal] = STATE(5826), - [sym_identifier] = ACTIONS(2958), - [anon_sym_LPAREN2] = ACTIONS(4417), - [anon_sym_BANG] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2960), - [anon_sym_STAR] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym___extension__] = ACTIONS(2964), - [anon_sym_COLON_COLON] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2970), - [anon_sym_not] = ACTIONS(2960), - [anon_sym_compl] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(4435), - [anon_sym_PLUS_PLUS] = ACTIONS(4435), - [anon_sym_sizeof] = ACTIONS(2972), - [anon_sym___alignof__] = ACTIONS(2974), - [anon_sym___alignof] = ACTIONS(2974), - [anon_sym__alignof] = ACTIONS(2974), - [anon_sym_alignof] = ACTIONS(2974), - [anon_sym__Alignof] = ACTIONS(2974), - [anon_sym_offsetof] = ACTIONS(2976), - [anon_sym__Generic] = ACTIONS(2978), - [anon_sym_typename] = ACTIONS(2980), - [anon_sym_asm] = ACTIONS(2982), - [anon_sym___asm__] = ACTIONS(2982), - [anon_sym___asm] = ACTIONS(2982), - [sym_number_literal] = ACTIONS(2984), - [anon_sym_L_SQUOTE] = ACTIONS(2986), - [anon_sym_u_SQUOTE] = ACTIONS(2986), - [anon_sym_U_SQUOTE] = ACTIONS(2986), - [anon_sym_u8_SQUOTE] = ACTIONS(2986), - [anon_sym_SQUOTE] = ACTIONS(2986), - [anon_sym_L_DQUOTE] = ACTIONS(2988), - [anon_sym_u_DQUOTE] = ACTIONS(2988), - [anon_sym_U_DQUOTE] = ACTIONS(2988), - [anon_sym_u8_DQUOTE] = ACTIONS(2988), - [anon_sym_DQUOTE] = ACTIONS(2988), - [sym_true] = ACTIONS(2990), - [sym_false] = ACTIONS(2990), - [anon_sym_NULL] = ACTIONS(2992), - [anon_sym_nullptr] = ACTIONS(2992), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2994), - [anon_sym_delete] = ACTIONS(2996), - [anon_sym_R_DQUOTE] = ACTIONS(2998), - [anon_sym_LR_DQUOTE] = ACTIONS(2998), - [anon_sym_uR_DQUOTE] = ACTIONS(2998), - [anon_sym_UR_DQUOTE] = ACTIONS(2998), - [anon_sym_u8R_DQUOTE] = ACTIONS(2998), - [anon_sym_co_await] = ACTIONS(3000), - [anon_sym_new] = ACTIONS(3002), - [anon_sym_requires] = ACTIONS(3004), - [anon_sym_CARET_CARET] = ACTIONS(3006), - [anon_sym_LBRACK_COLON] = ACTIONS(3008), - [sym_this] = ACTIONS(2990), - }, - [STATE(1760)] = { - [sym_expression] = STATE(3772), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [STATE(1679)] = { + [sym_expression] = STATE(6297), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, - [STATE(1761)] = { - [sym_expression] = STATE(5837), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1680)] = { + [sym_expression] = STATE(6308), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -288404,107 +279612,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1762)] = { - [sym_expression] = STATE(6964), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1681)] = { + [sym_expression] = STATE(6318), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -288512,107 +279720,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1763)] = { - [sym_expression] = STATE(5851), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1682)] = { + [sym_expression] = STATE(6324), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -288620,107 +279828,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1764)] = { - [sym_expression] = STATE(6516), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1683)] = { + [sym_expression] = STATE(6808), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1684)] = { + [sym_expression] = STATE(6346), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -288728,107 +280044,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1765)] = { - [sym_expression] = STATE(6846), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(6429), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1685)] = { + [sym_expression] = STATE(5279), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(6421), + }, + [STATE(1686)] = { + [sym_expression] = STATE(6369), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -288836,102 +280260,1722 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1766)] = { - [sym_expression] = STATE(6997), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1687)] = { + [sym_expression] = STATE(7057), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1688)] = { + [sym_expression] = STATE(6834), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1689)] = { + [sym_expression] = STATE(6886), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1690)] = { + [sym_expression] = STATE(6887), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1691)] = { + [sym_expression] = STATE(6888), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1692)] = { + [sym_expression] = STATE(6889), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1693)] = { + [sym_expression] = STATE(6890), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1694)] = { + [sym_expression] = STATE(6891), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1695)] = { + [sym_expression] = STATE(6892), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1696)] = { + [sym_expression] = STATE(6893), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1697)] = { + [sym_expression] = STATE(6896), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1698)] = { + [sym_expression] = STATE(6899), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1699)] = { + [sym_expression] = STATE(4413), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(6423), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1700)] = { + [sym_expression] = STATE(3819), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1701)] = { + [sym_expression] = STATE(6809), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1702)] = { + [sym_expression] = STATE(6832), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -288944,7 +281988,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -288964,8 +282008,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -288976,75 +282020,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1767)] = { - [sym_expression] = STATE(5812), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1703)] = { + [sym_expression] = STATE(6911), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1704)] = { + [sym_expression] = STATE(3804), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1705)] = { + [sym_expression] = STATE(6783), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -289052,7 +282312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289072,82 +282332,1810 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1768)] = { - [sym_expression] = STATE(7006), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1706)] = { + [sym_expression] = STATE(5305), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1707)] = { + [sym_expression] = STATE(5328), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1708)] = { + [sym_expression] = STATE(5332), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1709)] = { + [sym_expression] = STATE(5333), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1710)] = { + [sym_expression] = STATE(5336), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1711)] = { + [sym_expression] = STATE(5339), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1712)] = { + [sym_expression] = STATE(5342), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1713)] = { + [sym_expression] = STATE(5343), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1714)] = { + [sym_expression] = STATE(5347), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1715)] = { + [sym_expression] = STATE(5351), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1716)] = { + [sym_expression] = STATE(5355), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1717)] = { + [sym_expression] = STATE(5893), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1718)] = { + [sym_expression] = STATE(5830), + [sym__string] = STATE(5975), + [sym_conditional_expression] = STATE(6026), + [sym_assignment_expression] = STATE(6026), + [sym_pointer_expression] = STATE(5620), + [sym_unary_expression] = STATE(6026), + [sym_binary_expression] = STATE(6026), + [sym_update_expression] = STATE(6026), + [sym_cast_expression] = STATE(6026), + [sym_sizeof_expression] = STATE(6026), + [sym_alignof_expression] = STATE(6026), + [sym_offsetof_expression] = STATE(6026), + [sym_generic_expression] = STATE(6026), + [sym_subscript_expression] = STATE(5620), + [sym_call_expression] = STATE(5620), + [sym_gnu_asm_expression] = STATE(6026), + [sym_extension_expression] = STATE(6026), + [sym_field_expression] = STATE(5620), + [sym_compound_literal_expression] = STATE(6026), + [sym_parenthesized_expression] = STATE(5620), + [sym_char_literal] = STATE(5975), + [sym_concatenated_string] = STATE(5975), + [sym_string_literal] = STATE(4052), + [sym_null] = STATE(6026), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10514), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(6026), + [sym_raw_string_literal] = STATE(4052), + [sym_co_await_expression] = STATE(6026), + [sym_new_expression] = STATE(6026), + [sym_delete_expression] = STATE(6026), + [sym_requires_clause] = STATE(6026), + [sym_requires_expression] = STATE(6026), + [sym_lambda_expression] = STATE(6026), + [sym_lambda_capture_specifier] = STATE(8045), + [sym_fold_expression] = STATE(6026), + [sym_parameter_pack_expansion] = STATE(6026), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5620), + [sym_qualified_type_identifier] = STATE(10514), + [sym_reflect_expression] = STATE(6026), + [sym_splice_specifier] = STATE(5652), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9407), + [sym_splice_expression] = STATE(5982), + [sym_user_defined_literal] = STATE(5620), + [sym_identifier] = ACTIONS(3092), + [anon_sym_LPAREN2] = ACTIONS(2328), + [anon_sym_BANG] = ACTIONS(2330), + [anon_sym_TILDE] = ACTIONS(2330), + [anon_sym_DASH] = ACTIONS(2332), + [anon_sym_PLUS] = ACTIONS(2332), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(3094), + [anon_sym_COLON_COLON] = ACTIONS(2338), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3098), + [anon_sym_not] = ACTIONS(2332), + [anon_sym_compl] = ACTIONS(2332), + [anon_sym_DASH_DASH] = ACTIONS(2342), + [anon_sym_PLUS_PLUS] = ACTIONS(2342), + [anon_sym_sizeof] = ACTIONS(2344), + [anon_sym___alignof__] = ACTIONS(2346), + [anon_sym___alignof] = ACTIONS(2346), + [anon_sym__alignof] = ACTIONS(2346), + [anon_sym_alignof] = ACTIONS(2346), + [anon_sym__Alignof] = ACTIONS(2346), + [anon_sym_offsetof] = ACTIONS(2348), + [anon_sym__Generic] = ACTIONS(2350), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_asm] = ACTIONS(2354), + [anon_sym___asm__] = ACTIONS(2354), + [anon_sym___asm] = ACTIONS(2354), + [sym_number_literal] = ACTIONS(2356), + [anon_sym_L_SQUOTE] = ACTIONS(2358), + [anon_sym_u_SQUOTE] = ACTIONS(2358), + [anon_sym_U_SQUOTE] = ACTIONS(2358), + [anon_sym_u8_SQUOTE] = ACTIONS(2358), + [anon_sym_SQUOTE] = ACTIONS(2358), + [anon_sym_L_DQUOTE] = ACTIONS(2360), + [anon_sym_u_DQUOTE] = ACTIONS(2360), + [anon_sym_U_DQUOTE] = ACTIONS(2360), + [anon_sym_u8_DQUOTE] = ACTIONS(2360), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym_true] = ACTIONS(2362), + [sym_false] = ACTIONS(2362), + [anon_sym_NULL] = ACTIONS(2364), + [anon_sym_nullptr] = ACTIONS(2364), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2366), + [anon_sym_delete] = ACTIONS(2368), + [anon_sym_R_DQUOTE] = ACTIONS(2370), + [anon_sym_LR_DQUOTE] = ACTIONS(2370), + [anon_sym_uR_DQUOTE] = ACTIONS(2370), + [anon_sym_UR_DQUOTE] = ACTIONS(2370), + [anon_sym_u8R_DQUOTE] = ACTIONS(2370), + [anon_sym_co_await] = ACTIONS(2372), + [anon_sym_new] = ACTIONS(2374), + [anon_sym_requires] = ACTIONS(2376), + [anon_sym_CARET_CARET] = ACTIONS(2378), + [anon_sym_LBRACK_COLON] = ACTIONS(3102), + [sym_this] = ACTIONS(2362), + }, + [STATE(1719)] = { + [sym_expression] = STATE(3804), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1720)] = { + [sym_expression] = STATE(3804), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1721)] = { + [sym_expression] = STATE(5125), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1722)] = { + [sym_expression] = STATE(6429), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -289160,7 +284148,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289180,8 +284168,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -289192,198 +284180,738 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1769)] = { - [sym_expression] = STATE(3772), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [STATE(1723)] = { + [sym_expression] = STATE(5316), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1770)] = { - [sym_expression] = STATE(6845), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), + [STATE(1724)] = { + [sym_expression] = STATE(5381), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1725)] = { + [sym_expression] = STATE(5382), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1726)] = { + [sym_expression] = STATE(5383), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1727)] = { + [sym_expression] = STATE(5384), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1728)] = { + [sym_expression] = STATE(5385), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1729)] = { + [sym_expression] = STATE(7187), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), [anon_sym_u8_SQUOTE] = ACTIONS(121), [anon_sym_SQUOTE] = ACTIONS(121), [anon_sym_L_DQUOTE] = ACTIONS(123), @@ -289396,87 +284924,2139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1771)] = { - [sym_expression] = STATE(6781), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(6431), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1730)] = { + [sym_expression] = STATE(5387), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1731)] = { + [sym_expression] = STATE(5389), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1732)] = { + [sym_expression] = STATE(5393), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1733)] = { + [sym_expression] = STATE(5394), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1734)] = { + [sym_expression] = STATE(6745), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1735)] = { + [sym_expression] = STATE(6773), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1736)] = { + [sym_expression] = STATE(4847), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1737)] = { + [sym_expression] = STATE(4856), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1738)] = { + [sym_expression] = STATE(3779), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1739)] = { + [sym_expression] = STATE(4969), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1740)] = { + [sym_expression] = STATE(4983), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1741)] = { + [sym_expression] = STATE(4994), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1742)] = { + [sym_expression] = STATE(4809), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1743)] = { + [sym_expression] = STATE(4799), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1744)] = { + [sym_expression] = STATE(4816), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1745)] = { + [sym_expression] = STATE(4899), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1746)] = { + [sym_expression] = STATE(4857), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1747)] = { + [sym_expression] = STATE(3809), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1748)] = { + [sym_expression] = STATE(3813), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1749)] = { + [sym_expression] = STATE(7005), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -289484,7 +287064,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289504,87 +287084,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1772)] = { - [sym_expression] = STATE(6785), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1750)] = { + [sym_expression] = STATE(6796), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -289592,7 +287172,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289612,87 +287192,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1773)] = { - [sym_expression] = STATE(5764), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1751)] = { + [sym_expression] = STATE(6797), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -289700,7 +287280,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289720,87 +287300,1599 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1774)] = { - [sym_expression] = STATE(6786), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1752)] = { + [sym_expression] = STATE(4412), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1753)] = { + [sym_expression] = STATE(4483), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1754)] = { + [sym_expression] = STATE(3779), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1755)] = { + [sym_expression] = STATE(4530), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1756)] = { + [sym_expression] = STATE(4531), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1757)] = { + [sym_expression] = STATE(4532), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1758)] = { + [sym_expression] = STATE(4533), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1759)] = { + [sym_expression] = STATE(4534), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1760)] = { + [sym_expression] = STATE(4394), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1761)] = { + [sym_expression] = STATE(4536), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1762)] = { + [sym_expression] = STATE(4484), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1763)] = { + [sym_expression] = STATE(5304), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1764)] = { + [sym_expression] = STATE(5359), + [sym__string] = STATE(5653), + [sym_conditional_expression] = STATE(5920), + [sym_assignment_expression] = STATE(5920), + [sym_pointer_expression] = STATE(5785), + [sym_unary_expression] = STATE(5920), + [sym_binary_expression] = STATE(5920), + [sym_update_expression] = STATE(5920), + [sym_cast_expression] = STATE(5920), + [sym_sizeof_expression] = STATE(5920), + [sym_alignof_expression] = STATE(5920), + [sym_offsetof_expression] = STATE(5920), + [sym_generic_expression] = STATE(5920), + [sym_subscript_expression] = STATE(5785), + [sym_call_expression] = STATE(5785), + [sym_gnu_asm_expression] = STATE(5920), + [sym_extension_expression] = STATE(5920), + [sym_field_expression] = STATE(5785), + [sym_compound_literal_expression] = STATE(5920), + [sym_parenthesized_expression] = STATE(5785), + [sym_char_literal] = STATE(5653), + [sym_concatenated_string] = STATE(5653), + [sym_string_literal] = STATE(3862), + [sym_null] = STATE(5920), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10521), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5920), + [sym_raw_string_literal] = STATE(3862), + [sym_co_await_expression] = STATE(5920), + [sym_new_expression] = STATE(5920), + [sym_delete_expression] = STATE(5920), + [sym_requires_clause] = STATE(5920), + [sym_requires_expression] = STATE(5920), + [sym_lambda_expression] = STATE(5920), + [sym_lambda_capture_specifier] = STATE(7998), + [sym_fold_expression] = STATE(5920), + [sym_parameter_pack_expansion] = STATE(5920), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5785), + [sym_qualified_type_identifier] = STATE(10521), + [sym_reflect_expression] = STATE(5920), + [sym_splice_specifier] = STATE(5056), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9301), + [sym_splice_expression] = STATE(5553), + [sym_user_defined_literal] = STATE(5785), + [sym_identifier] = ACTIONS(3024), + [anon_sym_LPAREN2] = ACTIONS(4018), + [anon_sym_BANG] = ACTIONS(3028), + [anon_sym_TILDE] = ACTIONS(3028), + [anon_sym_DASH] = ACTIONS(3026), + [anon_sym_PLUS] = ACTIONS(3026), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(3030), + [anon_sym_COLON_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(3036), + [anon_sym_not] = ACTIONS(3026), + [anon_sym_compl] = ACTIONS(3026), + [anon_sym_DASH_DASH] = ACTIONS(4036), + [anon_sym_PLUS_PLUS] = ACTIONS(4036), + [anon_sym_sizeof] = ACTIONS(3038), + [anon_sym___alignof__] = ACTIONS(3040), + [anon_sym___alignof] = ACTIONS(3040), + [anon_sym__alignof] = ACTIONS(3040), + [anon_sym_alignof] = ACTIONS(3040), + [anon_sym__Alignof] = ACTIONS(3040), + [anon_sym_offsetof] = ACTIONS(3042), + [anon_sym__Generic] = ACTIONS(3044), + [anon_sym_typename] = ACTIONS(3046), + [anon_sym_asm] = ACTIONS(3048), + [anon_sym___asm__] = ACTIONS(3048), + [anon_sym___asm] = ACTIONS(3048), + [sym_number_literal] = ACTIONS(3050), + [anon_sym_L_SQUOTE] = ACTIONS(3052), + [anon_sym_u_SQUOTE] = ACTIONS(3052), + [anon_sym_U_SQUOTE] = ACTIONS(3052), + [anon_sym_u8_SQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_L_DQUOTE] = ACTIONS(3054), + [anon_sym_u_DQUOTE] = ACTIONS(3054), + [anon_sym_U_DQUOTE] = ACTIONS(3054), + [anon_sym_u8_DQUOTE] = ACTIONS(3054), + [anon_sym_DQUOTE] = ACTIONS(3054), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [anon_sym_NULL] = ACTIONS(3058), + [anon_sym_nullptr] = ACTIONS(3058), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3060), + [anon_sym_delete] = ACTIONS(3062), + [anon_sym_R_DQUOTE] = ACTIONS(3064), + [anon_sym_LR_DQUOTE] = ACTIONS(3064), + [anon_sym_uR_DQUOTE] = ACTIONS(3064), + [anon_sym_UR_DQUOTE] = ACTIONS(3064), + [anon_sym_u8R_DQUOTE] = ACTIONS(3064), + [anon_sym_co_await] = ACTIONS(3066), + [anon_sym_new] = ACTIONS(3068), + [anon_sym_requires] = ACTIONS(3070), + [anon_sym_CARET_CARET] = ACTIONS(3072), + [anon_sym_LBRACK_COLON] = ACTIONS(3074), + [sym_this] = ACTIONS(3056), + }, + [STATE(1765)] = { + [sym_expression] = STATE(6851), + [sym__string] = STATE(7177), + [sym_conditional_expression] = STATE(7322), + [sym_assignment_expression] = STATE(7322), + [sym_pointer_expression] = STATE(5734), + [sym_unary_expression] = STATE(7322), + [sym_binary_expression] = STATE(7322), + [sym_update_expression] = STATE(7322), + [sym_cast_expression] = STATE(7322), + [sym_sizeof_expression] = STATE(7322), + [sym_alignof_expression] = STATE(7322), + [sym_offsetof_expression] = STATE(7322), + [sym_generic_expression] = STATE(7322), + [sym_subscript_expression] = STATE(5734), + [sym_call_expression] = STATE(5734), + [sym_gnu_asm_expression] = STATE(7322), + [sym_extension_expression] = STATE(7322), + [sym_field_expression] = STATE(5734), + [sym_compound_literal_expression] = STATE(7322), + [sym_parenthesized_expression] = STATE(5734), + [sym_char_literal] = STATE(7177), + [sym_concatenated_string] = STATE(7177), + [sym_string_literal] = STATE(6014), + [sym_null] = STATE(7322), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10452), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7322), + [sym_raw_string_literal] = STATE(6014), + [sym_co_await_expression] = STATE(7322), + [sym_new_expression] = STATE(7322), + [sym_delete_expression] = STATE(7322), + [sym_requires_clause] = STATE(7322), + [sym_requires_expression] = STATE(7322), + [sym_lambda_expression] = STATE(7322), + [sym_lambda_capture_specifier] = STATE(8024), + [sym_fold_expression] = STATE(7322), + [sym_parameter_pack_expansion] = STATE(7322), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7945), + [sym_qualified_identifier] = STATE(5734), + [sym_qualified_type_identifier] = STATE(10452), + [sym_reflect_expression] = STATE(7322), + [sym_splice_specifier] = STATE(6707), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9350), + [sym_splice_expression] = STATE(6999), + [sym_user_defined_literal] = STATE(5734), + [sym_identifier] = ACTIONS(4898), + [anon_sym_LPAREN2] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3222), + [anon_sym___extension__] = ACTIONS(4900), + [anon_sym_COLON_COLON] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4904), + [anon_sym_not] = ACTIONS(3220), + [anon_sym_compl] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_sizeof] = ACTIONS(3242), + [anon_sym___alignof__] = ACTIONS(3244), + [anon_sym___alignof] = ACTIONS(3244), + [anon_sym__alignof] = ACTIONS(3244), + [anon_sym_alignof] = ACTIONS(3244), + [anon_sym__Alignof] = ACTIONS(3244), + [anon_sym_offsetof] = ACTIONS(3246), + [anon_sym__Generic] = ACTIONS(3248), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_asm] = ACTIONS(3252), + [anon_sym___asm__] = ACTIONS(3252), + [anon_sym___asm] = ACTIONS(3252), + [sym_number_literal] = ACTIONS(3254), + [anon_sym_L_SQUOTE] = ACTIONS(3256), + [anon_sym_u_SQUOTE] = ACTIONS(3256), + [anon_sym_U_SQUOTE] = ACTIONS(3256), + [anon_sym_u8_SQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [anon_sym_L_DQUOTE] = ACTIONS(3258), + [anon_sym_u_DQUOTE] = ACTIONS(3258), + [anon_sym_U_DQUOTE] = ACTIONS(3258), + [anon_sym_u8_DQUOTE] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [anon_sym_NULL] = ACTIONS(3262), + [anon_sym_nullptr] = ACTIONS(3262), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_R_DQUOTE] = ACTIONS(3274), + [anon_sym_LR_DQUOTE] = ACTIONS(3274), + [anon_sym_uR_DQUOTE] = ACTIONS(3274), + [anon_sym_UR_DQUOTE] = ACTIONS(3274), + [anon_sym_u8R_DQUOTE] = ACTIONS(3274), + [anon_sym_co_await] = ACTIONS(3276), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_requires] = ACTIONS(3280), + [anon_sym_CARET_CARET] = ACTIONS(3282), + [anon_sym_LBRACK_COLON] = ACTIONS(3284), + [sym_this] = ACTIONS(3260), + }, + [STATE(1766)] = { + [sym_expression] = STATE(6482), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(6425), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -289808,7 +288900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289828,87 +288920,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1775)] = { - [sym_expression] = STATE(6787), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1767)] = { + [sym_expression] = STATE(6774), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -289916,7 +289008,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -289936,87 +289028,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1776)] = { - [sym_expression] = STATE(6788), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1768)] = { + [sym_expression] = STATE(5309), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1769)] = { + [sym_expression] = STATE(5325), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), + }, + [STATE(1770)] = { + [sym_expression] = STATE(5874), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1771)] = { + [sym_expression] = STATE(5824), + [sym__string] = STATE(6598), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5318), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5318), + [sym_call_expression] = STATE(5318), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5318), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5318), + [sym_char_literal] = STATE(6598), + [sym_concatenated_string] = STATE(6598), + [sym_string_literal] = STATE(5646), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(5646), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5318), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5318), + [sym_identifier] = ACTIONS(4678), + [anon_sym_LPAREN2] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4060), + [anon_sym_TILDE] = ACTIONS(4060), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(4680), + [anon_sym_COLON_COLON] = ACTIONS(4682), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4062), + [anon_sym_compl] = ACTIONS(4062), + [anon_sym_DASH_DASH] = ACTIONS(4070), + [anon_sym_PLUS_PLUS] = ACTIONS(4070), + [anon_sym_sizeof] = ACTIONS(4072), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4074), + [anon_sym_L_SQUOTE] = ACTIONS(4076), + [anon_sym_u_SQUOTE] = ACTIONS(4076), + [anon_sym_U_SQUOTE] = ACTIONS(4076), + [anon_sym_u8_SQUOTE] = ACTIONS(4076), + [anon_sym_SQUOTE] = ACTIONS(4076), + [anon_sym_L_DQUOTE] = ACTIONS(4078), + [anon_sym_u_DQUOTE] = ACTIONS(4078), + [anon_sym_U_DQUOTE] = ACTIONS(4078), + [anon_sym_u8_DQUOTE] = ACTIONS(4078), + [anon_sym_DQUOTE] = ACTIONS(4078), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4080), + [anon_sym_R_DQUOTE] = ACTIONS(4082), + [anon_sym_LR_DQUOTE] = ACTIONS(4082), + [anon_sym_uR_DQUOTE] = ACTIONS(4082), + [anon_sym_UR_DQUOTE] = ACTIONS(4082), + [anon_sym_u8R_DQUOTE] = ACTIONS(4082), + [anon_sym_co_await] = ACTIONS(4084), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4086), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1772)] = { + [sym_expression] = STATE(5874), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -290024,7 +289548,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -290044,87 +289568,951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1773)] = { + [sym_expression] = STATE(5874), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1774)] = { + [sym_expression] = STATE(5824), + [sym__string] = STATE(6401), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(4707), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(4707), + [sym_call_expression] = STATE(4707), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(4707), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(4707), + [sym_char_literal] = STATE(6401), + [sym_concatenated_string] = STATE(6401), + [sym_string_literal] = STATE(4975), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4975), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(4707), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(4707), + [sym_identifier] = ACTIONS(5694), + [anon_sym_LPAREN2] = ACTIONS(4397), + [anon_sym_BANG] = ACTIONS(4399), + [anon_sym_TILDE] = ACTIONS(4399), + [anon_sym_DASH] = ACTIONS(4401), + [anon_sym_PLUS] = ACTIONS(4401), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(4670), + [anon_sym_COLON_COLON] = ACTIONS(4672), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(4401), + [anon_sym_compl] = ACTIONS(4401), + [anon_sym_DASH_DASH] = ACTIONS(4419), + [anon_sym_PLUS_PLUS] = ACTIONS(4419), + [anon_sym_sizeof] = ACTIONS(4421), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(4425), + [anon_sym_L_SQUOTE] = ACTIONS(4427), + [anon_sym_u_SQUOTE] = ACTIONS(4427), + [anon_sym_U_SQUOTE] = ACTIONS(4427), + [anon_sym_u8_SQUOTE] = ACTIONS(4427), + [anon_sym_SQUOTE] = ACTIONS(4427), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(4431), + [anon_sym_delete] = ACTIONS(4433), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_co_await] = ACTIONS(4437), + [anon_sym_new] = ACTIONS(4439), + [anon_sym_requires] = ACTIONS(4441), + [anon_sym_CARET_CARET] = ACTIONS(4443), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1775)] = { + [sym_expression] = STATE(3809), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1776)] = { + [sym_expression] = STATE(3813), + [sym__string] = STATE(5053), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(5053), + [sym_concatenated_string] = STATE(5053), + [sym_string_literal] = STATE(3727), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3727), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2835), + [anon_sym_LPAREN2] = ACTIONS(4157), + [anon_sym_BANG] = ACTIONS(2839), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym___extension__] = ACTIONS(2841), + [anon_sym_COLON_COLON] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2837), + [anon_sym_compl] = ACTIONS(2837), + [anon_sym_DASH_DASH] = ACTIONS(4175), + [anon_sym_PLUS_PLUS] = ACTIONS(4175), + [anon_sym_sizeof] = ACTIONS(2845), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2847), + [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(2851), + [anon_sym_u_DQUOTE] = ACTIONS(2851), + [anon_sym_U_DQUOTE] = ACTIONS(2851), + [anon_sym_u8_DQUOTE] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2853), + [anon_sym_R_DQUOTE] = ACTIONS(2855), + [anon_sym_LR_DQUOTE] = ACTIONS(2855), + [anon_sym_uR_DQUOTE] = ACTIONS(2855), + [anon_sym_UR_DQUOTE] = ACTIONS(2855), + [anon_sym_u8R_DQUOTE] = ACTIONS(2855), + [anon_sym_co_await] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2859), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, [STATE(1777)] = { - [sym_expression] = STATE(6789), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [sym_expression] = STATE(3809), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1778)] = { + [sym_expression] = STATE(3813), + [sym__string] = STATE(4590), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4590), + [sym_concatenated_string] = STATE(4590), + [sym_string_literal] = STATE(3345), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3345), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4245), + [anon_sym_BANG] = ACTIONS(2388), + [anon_sym_TILDE] = ACTIONS(2388), + [anon_sym_DASH] = ACTIONS(2386), + [anon_sym_PLUS] = ACTIONS(2386), + [anon_sym_STAR] = ACTIONS(4247), + [anon_sym_AMP] = ACTIONS(4247), + [anon_sym___extension__] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2386), + [anon_sym_compl] = ACTIONS(2386), + [anon_sym_DASH_DASH] = ACTIONS(4259), + [anon_sym_PLUS_PLUS] = ACTIONS(4259), + [anon_sym_sizeof] = ACTIONS(2398), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2410), + [anon_sym_L_SQUOTE] = ACTIONS(2412), + [anon_sym_u_SQUOTE] = ACTIONS(2412), + [anon_sym_U_SQUOTE] = ACTIONS(2412), + [anon_sym_u8_SQUOTE] = ACTIONS(2412), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2424), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_co_await] = ACTIONS(2428), + [anon_sym_new] = ACTIONS(2430), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2434), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1779)] = { + [sym_expression] = STATE(4712), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(6427), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1780)] = { + [sym_expression] = STATE(3819), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1781)] = { + [sym_expression] = STATE(6488), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(6429), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -290132,7 +290520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -290152,87 +290540,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(163), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1778)] = { - [sym_expression] = STATE(6790), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1782)] = { + [sym_expression] = STATE(5073), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1783)] = { + [sym_expression] = STATE(5874), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -290240,7 +290736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -290260,87 +290756,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1779)] = { - [sym_expression] = STATE(6791), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1784)] = { + [sym_expression] = STATE(7127), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -290348,7 +290844,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -290368,87 +290864,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1780)] = { - [sym_expression] = STATE(6792), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1785)] = { + [sym_expression] = STATE(5824), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -290456,7 +290952,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -290476,87 +290972,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1781)] = { - [sym_expression] = STATE(6793), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1786)] = { + [sym_expression] = STATE(6859), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(6431), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -290564,7 +291060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -290584,87 +291080,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1782)] = { - [sym_expression] = STATE(6503), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(6433), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1787)] = { + [sym_expression] = STATE(7074), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -290672,107 +291168,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1783)] = { - [sym_expression] = STATE(6795), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1788)] = { + [sym_expression] = STATE(5903), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -290780,7 +291276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -290800,82 +291296,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1784)] = { - [sym_expression] = STATE(7159), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1789)] = { + [sym_expression] = STATE(7120), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -290888,7 +291384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -290908,8 +291404,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -290920,75 +291416,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1785)] = { - [sym_expression] = STATE(6934), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1790)] = { + [sym_expression] = STATE(3804), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1791)] = { + [sym_expression] = STATE(6857), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -290996,7 +291600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -291016,195 +291620,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1786)] = { - [sym_expression] = STATE(6935), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1787)] = { - [sym_expression] = STATE(6797), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1792)] = { + [sym_expression] = STATE(6813), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(6433), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -291212,7 +291708,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -291232,87 +291728,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1788)] = { - [sym_expression] = STATE(6941), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1793)] = { + [sym_expression] = STATE(6816), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -291320,7 +291816,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -291340,87 +291836,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1789)] = { - [sym_expression] = STATE(6431), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1794)] = { + [sym_expression] = STATE(5774), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -291428,7 +291924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -291448,87 +291944,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1790)] = { - [sym_expression] = STATE(5764), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1795)] = { + [sym_expression] = STATE(6817), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -291536,7 +292032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -291556,87 +292052,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1791)] = { - [sym_expression] = STATE(6799), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5768), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5768), - [sym_call_expression] = STATE(5768), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5768), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5768), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10422), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(5768), - [sym_qualified_type_identifier] = STATE(10422), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9312), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5768), - [sym_identifier] = ACTIONS(4916), - [anon_sym_LPAREN2] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(4918), - [anon_sym_COLON_COLON] = ACTIONS(4920), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4924), - [anon_sym_not] = ACTIONS(4222), - [anon_sym_compl] = ACTIONS(4222), - [anon_sym_DASH_DASH] = ACTIONS(4232), - [anon_sym_PLUS_PLUS] = ACTIONS(4232), - [anon_sym_sizeof] = ACTIONS(4234), + [STATE(1796)] = { + [sym_expression] = STATE(6818), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -291644,7 +292140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(4926), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -291664,195 +292160,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(4238), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(4240), - [anon_sym_new] = ACTIONS(4242), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(4244), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1792)] = { - [sym_expression] = STATE(6805), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1793)] = { - [sym_expression] = STATE(6585), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1797)] = { + [sym_expression] = STATE(6819), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -291860,7 +292248,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -291880,1491 +292268,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1794)] = { - [sym_expression] = STATE(5393), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1795)] = { - [sym_expression] = STATE(5400), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1796)] = { - [sym_expression] = STATE(3815), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1797)] = { - [sym_expression] = STATE(5401), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, [STATE(1798)] = { - [sym_expression] = STATE(5402), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(6820), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(4918), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), }, [STATE(1799)] = { - [sym_expression] = STATE(5403), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1800)] = { - [sym_expression] = STATE(5404), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1801)] = { - [sym_expression] = STATE(5405), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1802)] = { - [sym_expression] = STATE(5406), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1803)] = { - [sym_expression] = STATE(5407), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1804)] = { - [sym_expression] = STATE(5408), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1805)] = { - [sym_expression] = STATE(5394), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(6435), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1806)] = { - [sym_expression] = STATE(3794), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1807)] = { - [sym_expression] = STATE(6779), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [sym_expression] = STATE(6821), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -293372,7 +292464,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -293392,303 +292484,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1808)] = { - [sym_expression] = STATE(5397), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(6437), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1809)] = { - [sym_expression] = STATE(5410), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1810)] = { - [sym_expression] = STATE(6437), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1800)] = { + [sym_expression] = STATE(6822), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -293696,7 +292572,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -293716,87 +292592,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1811)] = { - [sym_expression] = STATE(6780), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1801)] = { + [sym_expression] = STATE(6823), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -293804,7 +292680,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -293824,195 +292700,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1812)] = { - [sym_expression] = STATE(5412), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1813)] = { - [sym_expression] = STATE(6432), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1802)] = { + [sym_expression] = STATE(6824), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -294020,7 +292788,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -294040,411 +292808,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1814)] = { - [sym_expression] = STATE(5119), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1815)] = { - [sym_expression] = STATE(5533), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7972), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4250), - [anon_sym_BANG] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_DASH] = ACTIONS(3010), - [anon_sym_PLUS] = ACTIONS(3010), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym___extension__] = ACTIONS(3014), - [anon_sym_COLON_COLON] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3010), - [anon_sym_compl] = ACTIONS(3010), - [anon_sym_DASH_DASH] = ACTIONS(4256), - [anon_sym_PLUS_PLUS] = ACTIONS(4256), - [anon_sym_sizeof] = ACTIONS(3018), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3020), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3022), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3024), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1816)] = { - [sym_expression] = STATE(4742), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(6439), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1817)] = { - [sym_expression] = STATE(7040), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1803)] = { + [sym_expression] = STATE(6826), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -294452,7 +292896,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -294472,82 +292916,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1818)] = { - [sym_expression] = STATE(6439), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1804)] = { + [sym_expression] = STATE(6925), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -294560,7 +293004,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -294580,8 +293024,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -294592,178 +293036,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1819)] = { - [sym_expression] = STATE(5829), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1820)] = { - [sym_expression] = STATE(7090), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1805)] = { + [sym_expression] = STATE(7112), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -294776,7 +293112,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -294796,8 +293132,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -294808,75 +293144,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1821)] = { - [sym_expression] = STATE(6976), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1806)] = { + [sym_expression] = STATE(7136), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1807)] = { + [sym_expression] = STATE(6828), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -294884,7 +293328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -294904,82 +293348,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1822)] = { - [sym_expression] = STATE(6986), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1808)] = { + [sym_expression] = STATE(6979), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -294992,7 +293436,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295012,8 +293456,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -295024,75 +293468,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1823)] = { - [sym_expression] = STATE(6990), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1809)] = { + [sym_expression] = STATE(6830), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5876), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5876), + [sym_call_expression] = STATE(5876), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5876), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5876), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10387), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(5876), + [sym_qualified_type_identifier] = STATE(10387), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9364), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5876), + [sym_identifier] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4331), + [anon_sym_BANG] = ACTIONS(4333), + [anon_sym_TILDE] = ACTIONS(4333), + [anon_sym_DASH] = ACTIONS(4335), + [anon_sym_PLUS] = ACTIONS(4335), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(4910), + [anon_sym_COLON_COLON] = ACTIONS(4912), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4916), + [anon_sym_not] = ACTIONS(4335), + [anon_sym_compl] = ACTIONS(4335), + [anon_sym_DASH_DASH] = ACTIONS(4345), + [anon_sym_PLUS_PLUS] = ACTIONS(4345), + [anon_sym_sizeof] = ACTIONS(4347), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -295100,7 +293544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(4918), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295120,82 +293564,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(4351), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), + [anon_sym_co_await] = ACTIONS(4353), + [anon_sym_new] = ACTIONS(4355), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(4357), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1824)] = { - [sym_expression] = STATE(6837), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1810)] = { + [sym_expression] = STATE(4709), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(6435), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1811)] = { + [sym_expression] = STATE(6692), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -295208,7 +293760,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295228,8 +293780,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -295240,70 +293792,1474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1812)] = { + [sym_expression] = STATE(5388), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1813)] = { + [sym_expression] = STATE(5397), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1814)] = { + [sym_expression] = STATE(3779), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1815)] = { + [sym_expression] = STATE(5398), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1816)] = { + [sym_expression] = STATE(5399), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1817)] = { + [sym_expression] = STATE(5400), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1818)] = { + [sym_expression] = STATE(5401), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1819)] = { + [sym_expression] = STATE(5402), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1820)] = { + [sym_expression] = STATE(5403), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1821)] = { + [sym_expression] = STATE(5404), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1822)] = { + [sym_expression] = STATE(5405), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1823)] = { + [sym_expression] = STATE(5390), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(6437), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1824)] = { + [sym_expression] = STATE(3819), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, [STATE(1825)] = { - [sym_expression] = STATE(7094), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(7080), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -295316,7 +295272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295336,8 +295292,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -295348,178 +295304,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1826)] = { - [sym_expression] = STATE(4739), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_PLUS] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(2610), - [anon_sym_compl] = ACTIONS(2610), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_sizeof] = ACTIONS(2618), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(2626), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(2630), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(2634), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5395), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(6439), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1827)] = { - [sym_expression] = STATE(6440), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(5407), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1828)] = { + [sym_expression] = STATE(5903), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -295532,7 +295596,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295552,8 +295616,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -295564,75 +295628,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1828)] = { - [sym_expression] = STATE(7025), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1829)] = { + [sym_expression] = STATE(5529), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1830)] = { + [sym_expression] = STATE(5412), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7903), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4359), + [anon_sym_BANG] = ACTIONS(3078), + [anon_sym_TILDE] = ACTIONS(3078), + [anon_sym_DASH] = ACTIONS(3076), + [anon_sym_PLUS] = ACTIONS(3076), + [anon_sym_STAR] = ACTIONS(4337), + [anon_sym_AMP] = ACTIONS(4337), + [anon_sym___extension__] = ACTIONS(3080), + [anon_sym_COLON_COLON] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(3076), + [anon_sym_compl] = ACTIONS(3076), + [anon_sym_DASH_DASH] = ACTIONS(4365), + [anon_sym_PLUS_PLUS] = ACTIONS(4365), + [anon_sym_sizeof] = ACTIONS(3084), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(3086), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(3088), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(3090), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1831)] = { + [sym_expression] = STATE(7081), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -295640,7 +295920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295660,82 +295940,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1829)] = { - [sym_expression] = STATE(7042), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1832)] = { + [sym_expression] = STATE(7101), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -295748,7 +296028,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295768,8 +296048,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -295780,178 +296060,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1830)] = { - [sym_expression] = STATE(7045), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1831)] = { - [sym_expression] = STATE(7049), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1833)] = { + [sym_expression] = STATE(7114), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -295964,7 +296136,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -295984,8 +296156,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -295996,70 +296168,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1832)] = { - [sym_expression] = STATE(6433), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1834)] = { + [sym_expression] = STATE(7175), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -296072,7 +296244,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296092,8 +296264,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -296104,70 +296276,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1833)] = { - [sym_expression] = STATE(6572), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1835)] = { + [sym_expression] = STATE(6923), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -296180,7 +296352,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296200,8 +296372,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -296212,75 +296384,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1834)] = { - [sym_expression] = STATE(7106), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1836)] = { + [sym_expression] = STATE(6927), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1837)] = { + [sym_expression] = STATE(6951), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(25), + [anon_sym_PLUS] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), + [anon_sym_COLON_COLON] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(25), + [anon_sym_compl] = ACTIONS(25), + [anon_sym_DASH_DASH] = ACTIONS(105), + [anon_sym_PLUS_PLUS] = ACTIONS(105), + [anon_sym_sizeof] = ACTIONS(107), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -296288,7 +296568,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296308,82 +296588,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(163), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(169), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1835)] = { - [sym_expression] = STATE(7112), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1838)] = { + [sym_expression] = STATE(6584), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -296396,7 +296676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296416,8 +296696,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -296428,70 +296708,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1836)] = { - [sym_expression] = STATE(7114), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1839)] = { + [sym_expression] = STATE(7121), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), + [anon_sym___alignof__] = ACTIONS(109), + [anon_sym___alignof] = ACTIONS(109), + [anon_sym__alignof] = ACTIONS(109), + [anon_sym_alignof] = ACTIONS(109), + [anon_sym__Alignof] = ACTIONS(109), + [anon_sym_offsetof] = ACTIONS(111), + [anon_sym__Generic] = ACTIONS(113), + [anon_sym_typename] = ACTIONS(2446), + [anon_sym_asm] = ACTIONS(117), + [anon_sym___asm__] = ACTIONS(117), + [anon_sym___asm] = ACTIONS(117), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), + [sym_true] = ACTIONS(237), + [sym_false] = ACTIONS(237), + [anon_sym_NULL] = ACTIONS(127), + [anon_sym_nullptr] = ACTIONS(127), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3818), + [anon_sym_new] = ACTIONS(165), + [anon_sym_requires] = ACTIONS(167), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), + [sym_this] = ACTIONS(237), + }, + [STATE(1840)] = { + [sym_expression] = STATE(7134), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -296504,7 +296892,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296524,8 +296912,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -296536,70 +296924,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1837)] = { - [sym_expression] = STATE(6487), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1841)] = { + [sym_expression] = STATE(7140), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -296612,7 +297000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296632,8 +297020,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -296644,70 +297032,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1838)] = { - [sym_expression] = STATE(7131), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1842)] = { + [sym_expression] = STATE(6921), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -296720,7 +297108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296740,8 +297128,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -296752,70 +297140,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1839)] = { - [sym_expression] = STATE(7140), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1843)] = { + [sym_expression] = STATE(7030), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -296828,7 +297216,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -296848,8 +297236,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -296860,178 +297248,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1840)] = { - [sym_expression] = STATE(7142), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [STATE(1844)] = { + [sym_expression] = STATE(7073), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1841)] = { - [sym_expression] = STATE(7146), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1845)] = { + [sym_expression] = STATE(7095), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -297044,7 +297432,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297064,8 +297452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -297076,70 +297464,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1842)] = { + [STATE(1846)] = { [sym_expression] = STATE(6599), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -297152,7 +297540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297172,8 +297560,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -297184,75 +297572,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1843)] = { - [sym_expression] = STATE(7163), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1847)] = { + [sym_expression] = STATE(7174), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -297260,7 +297648,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297280,82 +297668,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1844)] = { - [sym_expression] = STATE(7166), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1848)] = { + [sym_expression] = STATE(6984), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -297368,7 +297756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297388,8 +297776,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -297400,70 +297788,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1845)] = { - [sym_expression] = STATE(7167), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1849)] = { + [sym_expression] = STATE(6996), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -297476,7 +297864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297496,8 +297884,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -297508,178 +297896,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1846)] = { - [sym_expression] = STATE(5212), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(6441), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1847)] = { - [sym_expression] = STATE(7180), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1850)] = { + [sym_expression] = STATE(7034), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -297692,7 +297972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297712,8 +297992,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -297724,70 +298004,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1848)] = { - [sym_expression] = STATE(7185), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1851)] = { + [sym_expression] = STATE(7078), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -297800,7 +298080,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -297820,8 +298100,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -297832,178 +298112,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1849)] = { - [sym_expression] = STATE(7190), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), + [STATE(1852)] = { + [sym_expression] = STATE(7083), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), }, - [STATE(1850)] = { - [sym_expression] = STATE(7193), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1853)] = { + [sym_expression] = STATE(7090), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -298016,7 +298296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298036,8 +298316,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -298048,70 +298328,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1851)] = { - [sym_expression] = STATE(6609), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1854)] = { + [sym_expression] = STATE(6611), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -298124,7 +298404,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298144,8 +298424,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -298156,70 +298436,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1852)] = { - [sym_expression] = STATE(6944), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1855)] = { + [sym_expression] = STATE(6961), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -298232,7 +298512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298252,8 +298532,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -298264,178 +298544,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1853)] = { - [sym_expression] = STATE(5215), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1854)] = { - [sym_expression] = STATE(6949), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1856)] = { + [sym_expression] = STATE(7003), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -298448,7 +298620,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298468,8 +298640,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -298480,178 +298652,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1855)] = { - [sym_expression] = STATE(6953), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1856)] = { - [sym_expression] = STATE(6955), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1857)] = { + [sym_expression] = STATE(7009), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -298664,7 +298728,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298684,8 +298748,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -298696,70 +298760,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1857)] = { - [sym_expression] = STATE(6434), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1858)] = { + [sym_expression] = STATE(7010), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1859)] = { + [sym_expression] = STATE(7013), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -298772,7 +298944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298792,8 +298964,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -298804,70 +298976,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1858)] = { - [sym_expression] = STATE(6621), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1860)] = { + [sym_expression] = STATE(6624), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -298880,7 +299052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -298900,8 +299072,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -298912,70 +299084,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1859)] = { - [sym_expression] = STATE(6967), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1861)] = { + [sym_expression] = STATE(7188), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -298988,7 +299160,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299008,8 +299180,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -299020,70 +299192,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1860)] = { - [sym_expression] = STATE(6447), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1862)] = { + [sym_expression] = STATE(7096), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -299096,7 +299268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299116,8 +299288,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -299128,70 +299300,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1861)] = { - [sym_expression] = STATE(6973), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1863)] = { + [sym_expression] = STATE(7104), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -299204,7 +299376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299224,8 +299396,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -299236,70 +299408,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1862)] = { - [sym_expression] = STATE(6979), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1864)] = { + [sym_expression] = STATE(7105), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1865)] = { + [sym_expression] = STATE(7107), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -299312,7 +299592,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299332,8 +299612,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -299344,178 +299624,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1863)] = { - [sym_expression] = STATE(6980), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1864)] = { - [sym_expression] = STATE(6982), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1866)] = { + [sym_expression] = STATE(6640), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -299528,7 +299700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299548,8 +299720,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -299560,70 +299732,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1865)] = { - [sym_expression] = STATE(6634), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1867)] = { + [sym_expression] = STATE(7133), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -299636,7 +299808,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299656,8 +299828,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -299668,70 +299840,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1866)] = { - [sym_expression] = STATE(6994), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1868)] = { + [sym_expression] = STATE(7158), + [sym__string] = STATE(7059), + [sym_conditional_expression] = STATE(7376), + [sym_assignment_expression] = STATE(7376), + [sym_pointer_expression] = STATE(5822), + [sym_unary_expression] = STATE(7376), + [sym_binary_expression] = STATE(7376), + [sym_update_expression] = STATE(7376), + [sym_cast_expression] = STATE(7376), + [sym_sizeof_expression] = STATE(7376), + [sym_alignof_expression] = STATE(7376), + [sym_offsetof_expression] = STATE(7376), + [sym_generic_expression] = STATE(7376), + [sym_subscript_expression] = STATE(5822), + [sym_call_expression] = STATE(5822), + [sym_gnu_asm_expression] = STATE(7376), + [sym_extension_expression] = STATE(7376), + [sym_field_expression] = STATE(5822), + [sym_compound_literal_expression] = STATE(7376), + [sym_parenthesized_expression] = STATE(5822), + [sym_char_literal] = STATE(7059), + [sym_concatenated_string] = STATE(7059), + [sym_string_literal] = STATE(5986), + [sym_null] = STATE(7376), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10593), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(7376), + [sym_raw_string_literal] = STATE(5986), + [sym_co_await_expression] = STATE(7376), + [sym_new_expression] = STATE(7376), + [sym_delete_expression] = STATE(7376), + [sym_requires_clause] = STATE(7376), + [sym_requires_expression] = STATE(7376), + [sym_lambda_expression] = STATE(7376), + [sym_lambda_capture_specifier] = STATE(8053), + [sym_fold_expression] = STATE(7376), + [sym_parameter_pack_expansion] = STATE(7376), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5822), + [sym_qualified_type_identifier] = STATE(10593), + [sym_reflect_expression] = STATE(7376), + [sym_splice_specifier] = STATE(6561), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9269), + [sym_splice_expression] = STATE(7117), + [sym_user_defined_literal] = STATE(5822), + [sym_identifier] = ACTIONS(4888), + [anon_sym_LPAREN2] = ACTIONS(3927), + [anon_sym_BANG] = ACTIONS(3929), + [anon_sym_TILDE] = ACTIONS(3929), + [anon_sym_DASH] = ACTIONS(3931), + [anon_sym_PLUS] = ACTIONS(3931), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(4890), + [anon_sym_COLON_COLON] = ACTIONS(4892), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(4894), + [anon_sym_not] = ACTIONS(3931), + [anon_sym_compl] = ACTIONS(3931), + [anon_sym_DASH_DASH] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3951), + [anon_sym_sizeof] = ACTIONS(3953), + [anon_sym___alignof__] = ACTIONS(3955), + [anon_sym___alignof] = ACTIONS(3955), + [anon_sym__alignof] = ACTIONS(3955), + [anon_sym_alignof] = ACTIONS(3955), + [anon_sym__Alignof] = ACTIONS(3955), + [anon_sym_offsetof] = ACTIONS(3957), + [anon_sym__Generic] = ACTIONS(3959), + [anon_sym_typename] = ACTIONS(4896), + [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(3967), + [anon_sym_u_SQUOTE] = ACTIONS(3967), + [anon_sym_U_SQUOTE] = ACTIONS(3967), + [anon_sym_u8_SQUOTE] = ACTIONS(3967), + [anon_sym_SQUOTE] = ACTIONS(3967), + [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(3971), + [sym_false] = ACTIONS(3971), + [anon_sym_NULL] = ACTIONS(3973), + [anon_sym_nullptr] = ACTIONS(3973), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3979), + [anon_sym_delete] = ACTIONS(3981), + [anon_sym_R_DQUOTE] = ACTIONS(3983), + [anon_sym_LR_DQUOTE] = ACTIONS(3983), + [anon_sym_uR_DQUOTE] = ACTIONS(3983), + [anon_sym_UR_DQUOTE] = ACTIONS(3983), + [anon_sym_u8R_DQUOTE] = ACTIONS(3983), + [anon_sym_co_await] = ACTIONS(3985), + [anon_sym_new] = ACTIONS(3987), + [anon_sym_requires] = ACTIONS(3989), + [anon_sym_CARET_CARET] = ACTIONS(3991), + [anon_sym_LBRACK_COLON] = ACTIONS(3993), + [sym_this] = ACTIONS(3971), + }, + [STATE(1869)] = { + [sym_expression] = STATE(6653), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -299744,7 +300024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -299764,8 +300044,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -299776,286 +300056,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1867)] = { - [sym_expression] = STATE(7007), - [sym__string] = STATE(7147), - [sym_conditional_expression] = STATE(7216), - [sym_assignment_expression] = STATE(7216), - [sym_pointer_expression] = STATE(5905), - [sym_unary_expression] = STATE(7216), - [sym_binary_expression] = STATE(7216), - [sym_update_expression] = STATE(7216), - [sym_cast_expression] = STATE(7216), - [sym_sizeof_expression] = STATE(7216), - [sym_alignof_expression] = STATE(7216), - [sym_offsetof_expression] = STATE(7216), - [sym_generic_expression] = STATE(7216), - [sym_subscript_expression] = STATE(5905), - [sym_call_expression] = STATE(5905), - [sym_gnu_asm_expression] = STATE(7216), - [sym_extension_expression] = STATE(7216), - [sym_field_expression] = STATE(5905), - [sym_compound_literal_expression] = STATE(7216), - [sym_parenthesized_expression] = STATE(5905), - [sym_char_literal] = STATE(7147), - [sym_concatenated_string] = STATE(7147), - [sym_string_literal] = STATE(5996), - [sym_null] = STATE(7216), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10587), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(7216), - [sym_raw_string_literal] = STATE(5996), - [sym_co_await_expression] = STATE(7216), - [sym_new_expression] = STATE(7216), - [sym_delete_expression] = STATE(7216), - [sym_requires_clause] = STATE(7216), - [sym_requires_expression] = STATE(7216), - [sym_lambda_expression] = STATE(7216), - [sym_lambda_capture_specifier] = STATE(8009), - [sym_fold_expression] = STATE(7216), - [sym_parameter_pack_expansion] = STATE(7216), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7925), - [sym_qualified_identifier] = STATE(5905), - [sym_qualified_type_identifier] = STATE(10587), - [sym_reflect_expression] = STATE(7216), - [sym_splice_specifier] = STATE(6579), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9383), - [sym_splice_expression] = STATE(7092), - [sym_user_defined_literal] = STATE(5905), - [sym_identifier] = ACTIONS(4890), - [anon_sym_LPAREN2] = ACTIONS(4300), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_TILDE] = ACTIONS(4302), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym___extension__] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4894), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(4896), - [anon_sym_not] = ACTIONS(4304), - [anon_sym_compl] = ACTIONS(4304), - [anon_sym_DASH_DASH] = ACTIONS(4322), - [anon_sym_PLUS_PLUS] = ACTIONS(4322), - [anon_sym_sizeof] = ACTIONS(4324), - [anon_sym___alignof__] = ACTIONS(4326), - [anon_sym___alignof] = ACTIONS(4326), - [anon_sym__alignof] = ACTIONS(4326), - [anon_sym_alignof] = ACTIONS(4326), - [anon_sym__Alignof] = ACTIONS(4326), - [anon_sym_offsetof] = ACTIONS(4328), - [anon_sym__Generic] = ACTIONS(4330), - [anon_sym_typename] = ACTIONS(4898), - [anon_sym_asm] = ACTIONS(4334), - [anon_sym___asm__] = ACTIONS(4334), - [anon_sym___asm] = ACTIONS(4334), - [sym_number_literal] = ACTIONS(4336), - [anon_sym_L_SQUOTE] = ACTIONS(4338), - [anon_sym_u_SQUOTE] = ACTIONS(4338), - [anon_sym_U_SQUOTE] = ACTIONS(4338), - [anon_sym_u8_SQUOTE] = ACTIONS(4338), - [anon_sym_SQUOTE] = ACTIONS(4338), - [anon_sym_L_DQUOTE] = ACTIONS(4340), - [anon_sym_u_DQUOTE] = ACTIONS(4340), - [anon_sym_U_DQUOTE] = ACTIONS(4340), - [anon_sym_u8_DQUOTE] = ACTIONS(4340), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym_true] = ACTIONS(4342), - [sym_false] = ACTIONS(4342), - [anon_sym_NULL] = ACTIONS(4344), - [anon_sym_nullptr] = ACTIONS(4344), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(4346), - [anon_sym_delete] = ACTIONS(4348), - [anon_sym_R_DQUOTE] = ACTIONS(4350), - [anon_sym_LR_DQUOTE] = ACTIONS(4350), - [anon_sym_uR_DQUOTE] = ACTIONS(4350), - [anon_sym_UR_DQUOTE] = ACTIONS(4350), - [anon_sym_u8R_DQUOTE] = ACTIONS(4350), - [anon_sym_co_await] = ACTIONS(4352), - [anon_sym_new] = ACTIONS(4354), - [anon_sym_requires] = ACTIONS(4356), - [anon_sym_CARET_CARET] = ACTIONS(4358), - [anon_sym_LBRACK_COLON] = ACTIONS(4360), - [sym_this] = ACTIONS(4342), - }, - [STATE(1868)] = { - [sym_expression] = STATE(5818), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(6443), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1869)] = { - [sym_expression] = STATE(6648), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1870)] = { + [sym_expression] = STATE(7173), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300068,7 +300132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300088,8 +300152,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -300100,70 +300164,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1870)] = { - [sym_expression] = STATE(7016), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1871)] = { + [sym_expression] = STATE(6938), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300176,7 +300240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300196,8 +300260,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -300208,178 +300272,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1871)] = { - [sym_expression] = STATE(5821), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, [STATE(1872)] = { - [sym_expression] = STATE(6942), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6949), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300392,7 +300348,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300412,8 +300368,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -300424,70 +300380,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1873)] = { - [sym_expression] = STATE(7035), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6956), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300500,7 +300456,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300520,8 +300476,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -300532,70 +300488,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1874)] = { - [sym_expression] = STATE(7048), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6963), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300608,7 +300564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300628,8 +300584,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -300640,178 +300596,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1875)] = { - [sym_expression] = STATE(6537), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1876)] = { - [sym_expression] = STATE(7055), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(6966), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300824,7 +300672,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300844,8 +300692,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -300856,70 +300704,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1877)] = { - [sym_expression] = STATE(7059), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1876)] = { + [sym_expression] = STATE(6970), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -300932,7 +300780,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -300952,8 +300800,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -300964,70 +300812,718 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, + [STATE(1877)] = { + [sym_expression] = STATE(5258), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, [STATE(1878)] = { - [sym_expression] = STATE(7061), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [sym_expression] = STATE(5033), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1879)] = { + [sym_expression] = STATE(5034), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1880)] = { + [sym_expression] = STATE(5035), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1881)] = { + [sym_expression] = STATE(5036), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1882)] = { + [sym_expression] = STATE(5037), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1883)] = { + [sym_expression] = STATE(6815), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -301040,7 +301536,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -301060,8 +301556,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -301072,70 +301568,826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1879)] = { - [sym_expression] = STATE(7063), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1884)] = { + [sym_expression] = STATE(5038), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1885)] = { + [sym_expression] = STATE(5039), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1886)] = { + [sym_expression] = STATE(5041), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1887)] = { + [sym_expression] = STATE(5042), + [sym__string] = STATE(5442), + [sym_conditional_expression] = STATE(5603), + [sym_assignment_expression] = STATE(5603), + [sym_pointer_expression] = STATE(5601), + [sym_unary_expression] = STATE(5603), + [sym_binary_expression] = STATE(5603), + [sym_update_expression] = STATE(5603), + [sym_cast_expression] = STATE(5603), + [sym_sizeof_expression] = STATE(5603), + [sym_alignof_expression] = STATE(5603), + [sym_offsetof_expression] = STATE(5603), + [sym_generic_expression] = STATE(5603), + [sym_subscript_expression] = STATE(5601), + [sym_call_expression] = STATE(5601), + [sym_gnu_asm_expression] = STATE(5603), + [sym_extension_expression] = STATE(5603), + [sym_field_expression] = STATE(5601), + [sym_compound_literal_expression] = STATE(5603), + [sym_parenthesized_expression] = STATE(5601), + [sym_char_literal] = STATE(5442), + [sym_concatenated_string] = STATE(5442), + [sym_string_literal] = STATE(3782), + [sym_null] = STATE(5603), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10296), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5603), + [sym_raw_string_literal] = STATE(3782), + [sym_co_await_expression] = STATE(5603), + [sym_new_expression] = STATE(5603), + [sym_delete_expression] = STATE(5603), + [sym_requires_clause] = STATE(5603), + [sym_requires_expression] = STATE(5603), + [sym_lambda_expression] = STATE(5603), + [sym_lambda_capture_specifier] = STATE(8002), + [sym_fold_expression] = STATE(5603), + [sym_parameter_pack_expansion] = STATE(5603), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7960), + [sym_qualified_identifier] = STATE(5601), + [sym_qualified_type_identifier] = STATE(10296), + [sym_reflect_expression] = STATE(5603), + [sym_splice_specifier] = STATE(4906), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9344), + [sym_splice_expression] = STATE(5435), + [sym_user_defined_literal] = STATE(5601), + [sym_identifier] = ACTIONS(2946), + [anon_sym_LPAREN2] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_PLUS] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2334), + [anon_sym_AMP] = ACTIONS(2334), + [anon_sym___extension__] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2952), + [anon_sym_not] = ACTIONS(2230), + [anon_sym_compl] = ACTIONS(2230), + [anon_sym_DASH_DASH] = ACTIONS(2254), + [anon_sym_PLUS_PLUS] = ACTIONS(2254), + [anon_sym_sizeof] = ACTIONS(2256), + [anon_sym___alignof__] = ACTIONS(2258), + [anon_sym___alignof] = ACTIONS(2258), + [anon_sym__alignof] = ACTIONS(2258), + [anon_sym_alignof] = ACTIONS(2258), + [anon_sym__Alignof] = ACTIONS(2258), + [anon_sym_offsetof] = ACTIONS(2260), + [anon_sym__Generic] = ACTIONS(2262), + [anon_sym_typename] = ACTIONS(2954), + [anon_sym_asm] = ACTIONS(2266), + [anon_sym___asm__] = ACTIONS(2266), + [anon_sym___asm] = ACTIONS(2266), + [sym_number_literal] = ACTIONS(2268), + [anon_sym_L_SQUOTE] = ACTIONS(2270), + [anon_sym_u_SQUOTE] = ACTIONS(2270), + [anon_sym_U_SQUOTE] = ACTIONS(2270), + [anon_sym_u8_SQUOTE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2270), + [anon_sym_L_DQUOTE] = ACTIONS(2272), + [anon_sym_u_DQUOTE] = ACTIONS(2272), + [anon_sym_U_DQUOTE] = ACTIONS(2272), + [anon_sym_u8_DQUOTE] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [sym_true] = ACTIONS(2274), + [sym_false] = ACTIONS(2274), + [anon_sym_NULL] = ACTIONS(2276), + [anon_sym_nullptr] = ACTIONS(2276), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2282), + [anon_sym_delete] = ACTIONS(2286), + [anon_sym_R_DQUOTE] = ACTIONS(2288), + [anon_sym_LR_DQUOTE] = ACTIONS(2288), + [anon_sym_uR_DQUOTE] = ACTIONS(2288), + [anon_sym_UR_DQUOTE] = ACTIONS(2288), + [anon_sym_u8R_DQUOTE] = ACTIONS(2288), + [anon_sym_co_await] = ACTIONS(2290), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_requires] = ACTIONS(2294), + [anon_sym_CARET_CARET] = ACTIONS(2296), + [anon_sym_LBRACK_COLON] = ACTIONS(2298), + [sym_this] = ACTIONS(2274), + }, + [STATE(1888)] = { + [sym_expression] = STATE(4634), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4213), + [anon_sym_BANG] = ACTIONS(2736), + [anon_sym_TILDE] = ACTIONS(2736), + [anon_sym_DASH] = ACTIONS(2734), + [anon_sym_PLUS] = ACTIONS(2734), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2738), + [anon_sym_COLON_COLON] = ACTIONS(2740), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2734), + [anon_sym_compl] = ACTIONS(2734), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_sizeof] = ACTIONS(2742), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2750), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2754), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2758), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1889)] = { + [sym_expression] = STATE(5472), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1890)] = { + [sym_expression] = STATE(5474), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1891)] = { + [sym_expression] = STATE(6495), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -301148,7 +302400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -301168,8 +302420,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -301180,178 +302432,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1880)] = { - [sym_expression] = STATE(5759), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(6445), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), - }, - [STATE(1881)] = { - [sym_expression] = STATE(6784), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1892)] = { + [sym_expression] = STATE(6840), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -301364,7 +302508,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -301384,8 +302528,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -301396,502 +302540,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1882)] = { - [sym_expression] = STATE(5764), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1883)] = { - [sym_expression] = STATE(5473), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1884)] = { - [sym_expression] = STATE(5475), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1885)] = { - [sym_expression] = STATE(6512), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1886)] = { - [sym_expression] = STATE(6816), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1893)] = { + [sym_expression] = STATE(6847), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -301904,7 +302616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -301924,8 +302636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -301936,70 +302648,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1887)] = { - [sym_expression] = STATE(6824), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1894)] = { + [sym_expression] = STATE(6850), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -302012,7 +302724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302032,8 +302744,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -302044,70 +302756,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1888)] = { - [sym_expression] = STATE(6833), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1895)] = { + [sym_expression] = STATE(6853), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -302120,7 +302832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302140,8 +302852,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -302152,70 +302864,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1889)] = { - [sym_expression] = STATE(6838), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1896)] = { + [sym_expression] = STATE(6854), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -302228,7 +302940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302248,8 +302960,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -302260,75 +302972,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1890)] = { - [sym_expression] = STATE(6841), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), + [STATE(1897)] = { + [sym_expression] = STATE(5506), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), + }, + [STATE(1898)] = { + [sym_expression] = STATE(6895), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -302336,7 +303156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302356,87 +303176,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1891)] = { - [sym_expression] = STATE(6530), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1899)] = { + [sym_expression] = STATE(6861), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(6441), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -302444,215 +303264,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1892)] = { - [sym_expression] = STATE(5504), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1893)] = { - [sym_expression] = STATE(6884), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1900)] = { + [sym_expression] = STATE(6864), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -302660,7 +303372,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302680,87 +303392,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1894)] = { - [sym_expression] = STATE(6848), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(6447), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1901)] = { + [sym_expression] = STATE(6865), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -302768,7 +303480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -302788,87 +303500,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1895)] = { - [sym_expression] = STATE(6533), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), + [STATE(1902)] = { + [sym_expression] = STATE(6866), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -302876,107 +303588,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), + [sym_number_literal] = ACTIONS(235), + [anon_sym_L_SQUOTE] = ACTIONS(121), + [anon_sym_u_SQUOTE] = ACTIONS(121), + [anon_sym_U_SQUOTE] = ACTIONS(121), + [anon_sym_u8_SQUOTE] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(121), + [anon_sym_L_DQUOTE] = ACTIONS(123), + [anon_sym_u_DQUOTE] = ACTIONS(123), + [anon_sym_U_DQUOTE] = ACTIONS(123), + [anon_sym_u8_DQUOTE] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(123), [sym_true] = ACTIONS(237), [sym_false] = ACTIONS(237), [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), + [anon_sym_R_DQUOTE] = ACTIONS(161), + [anon_sym_LR_DQUOTE] = ACTIONS(161), + [anon_sym_uR_DQUOTE] = ACTIONS(161), + [anon_sym_UR_DQUOTE] = ACTIONS(161), + [anon_sym_u8R_DQUOTE] = ACTIONS(161), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1896)] = { - [sym_expression] = STATE(6850), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1903)] = { + [sym_expression] = STATE(6867), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -302984,7 +303696,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303004,87 +303716,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1897)] = { - [sym_expression] = STATE(6851), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1904)] = { + [sym_expression] = STATE(6868), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -303092,7 +303804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303112,87 +303824,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1898)] = { - [sym_expression] = STATE(6852), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1905)] = { + [sym_expression] = STATE(6869), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -303200,7 +303912,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303220,87 +303932,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1899)] = { - [sym_expression] = STATE(6853), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1906)] = { + [sym_expression] = STATE(6870), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -303308,7 +304020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303328,87 +304040,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1900)] = { - [sym_expression] = STATE(6854), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1907)] = { + [sym_expression] = STATE(6871), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -303416,7 +304128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303436,87 +304148,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1901)] = { - [sym_expression] = STATE(6855), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1908)] = { + [sym_expression] = STATE(6872), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -303524,7 +304236,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303544,411 +304256,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1902)] = { - [sym_expression] = STATE(6856), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1903)] = { - [sym_expression] = STATE(6857), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1904)] = { - [sym_expression] = STATE(6858), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1905)] = { - [sym_expression] = STATE(6859), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1909)] = { + [sym_expression] = STATE(6873), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -303956,7 +304344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -303976,87 +304364,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1906)] = { - [sym_expression] = STATE(6861), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1910)] = { + [sym_expression] = STATE(6875), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -304064,7 +304452,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -304084,195 +304472,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1907)] = { - [sym_expression] = STATE(6538), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1908)] = { - [sym_expression] = STATE(6866), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1911)] = { + [sym_expression] = STATE(6880), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -304280,7 +304560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -304300,87 +304580,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1909)] = { - [sym_expression] = STATE(6868), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1912)] = { + [sym_expression] = STATE(6882), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -304388,7 +304668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -304408,2247 +304688,1923 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1910)] = { - [sym_expression] = STATE(5474), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1911)] = { - [sym_expression] = STATE(5482), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, - [STATE(1912)] = { - [sym_expression] = STATE(5483), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), - }, [STATE(1913)] = { - [sym_expression] = STATE(5484), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5473), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1914)] = { - [sym_expression] = STATE(5485), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5481), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1915)] = { - [sym_expression] = STATE(5486), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5482), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1916)] = { - [sym_expression] = STATE(5487), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5483), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1917)] = { - [sym_expression] = STATE(5488), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5484), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1918)] = { - [sym_expression] = STATE(5489), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5485), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1919)] = { - [sym_expression] = STATE(5490), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5486), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1920)] = { - [sym_expression] = STATE(5491), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5487), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1921)] = { - [sym_expression] = STATE(5477), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(6449), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5488), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1922)] = { - [sym_expression] = STATE(5478), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5489), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1923)] = { - [sym_expression] = STATE(5480), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(6451), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5490), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1924)] = { - [sym_expression] = STATE(5266), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5476), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(6443), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1925)] = { - [sym_expression] = STATE(6541), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [sym_expression] = STATE(5477), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1926)] = { - [sym_expression] = STATE(5872), - [sym__string] = STATE(5941), - [sym_conditional_expression] = STATE(6083), - [sym_assignment_expression] = STATE(6083), - [sym_pointer_expression] = STATE(5637), - [sym_unary_expression] = STATE(6083), - [sym_binary_expression] = STATE(6083), - [sym_update_expression] = STATE(6083), - [sym_cast_expression] = STATE(6083), - [sym_sizeof_expression] = STATE(6083), - [sym_alignof_expression] = STATE(6083), - [sym_offsetof_expression] = STATE(6083), - [sym_generic_expression] = STATE(6083), - [sym_subscript_expression] = STATE(5637), - [sym_call_expression] = STATE(5637), - [sym_gnu_asm_expression] = STATE(6083), - [sym_extension_expression] = STATE(6083), - [sym_field_expression] = STATE(5637), - [sym_compound_literal_expression] = STATE(6083), - [sym_parenthesized_expression] = STATE(5637), - [sym_char_literal] = STATE(5941), - [sym_concatenated_string] = STATE(5941), - [sym_string_literal] = STATE(4133), - [sym_null] = STATE(6083), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10386), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6083), - [sym_raw_string_literal] = STATE(4133), - [sym_co_await_expression] = STATE(6083), - [sym_new_expression] = STATE(6083), - [sym_delete_expression] = STATE(6083), - [sym_requires_clause] = STATE(6083), - [sym_requires_expression] = STATE(6083), - [sym_lambda_expression] = STATE(6083), - [sym_lambda_capture_specifier] = STATE(8042), - [sym_fold_expression] = STATE(6083), - [sym_parameter_pack_expansion] = STATE(6083), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5637), - [sym_qualified_type_identifier] = STATE(10386), - [sym_reflect_expression] = STATE(6083), - [sym_splice_specifier] = STATE(5653), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9332), - [sym_splice_expression] = STATE(5942), - [sym_user_defined_literal] = STATE(5637), - [sym_identifier] = ACTIONS(3094), - [anon_sym_LPAREN2] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_PLUS] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(3096), - [anon_sym_COLON_COLON] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(3100), - [anon_sym_not] = ACTIONS(2334), - [anon_sym_compl] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2344), - [anon_sym_sizeof] = ACTIONS(2346), - [anon_sym___alignof__] = ACTIONS(2348), - [anon_sym___alignof] = ACTIONS(2348), - [anon_sym__alignof] = ACTIONS(2348), - [anon_sym_alignof] = ACTIONS(2348), - [anon_sym__Alignof] = ACTIONS(2348), - [anon_sym_offsetof] = ACTIONS(2350), - [anon_sym__Generic] = ACTIONS(2352), - [anon_sym_typename] = ACTIONS(3102), - [anon_sym_asm] = ACTIONS(2356), - [anon_sym___asm__] = ACTIONS(2356), - [anon_sym___asm] = ACTIONS(2356), - [sym_number_literal] = ACTIONS(2358), - [anon_sym_L_SQUOTE] = ACTIONS(2360), - [anon_sym_u_SQUOTE] = ACTIONS(2360), - [anon_sym_U_SQUOTE] = ACTIONS(2360), - [anon_sym_u8_SQUOTE] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2360), - [anon_sym_L_DQUOTE] = ACTIONS(2362), - [anon_sym_u_DQUOTE] = ACTIONS(2362), - [anon_sym_U_DQUOTE] = ACTIONS(2362), - [anon_sym_u8_DQUOTE] = ACTIONS(2362), - [anon_sym_DQUOTE] = ACTIONS(2362), - [sym_true] = ACTIONS(2364), - [sym_false] = ACTIONS(2364), - [anon_sym_NULL] = ACTIONS(2366), - [anon_sym_nullptr] = ACTIONS(2366), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2368), - [anon_sym_delete] = ACTIONS(2370), - [anon_sym_R_DQUOTE] = ACTIONS(2372), - [anon_sym_LR_DQUOTE] = ACTIONS(2372), - [anon_sym_uR_DQUOTE] = ACTIONS(2372), - [anon_sym_UR_DQUOTE] = ACTIONS(2372), - [anon_sym_u8R_DQUOTE] = ACTIONS(2372), - [anon_sym_co_await] = ACTIONS(2374), - [anon_sym_new] = ACTIONS(2376), - [anon_sym_requires] = ACTIONS(2378), - [anon_sym_CARET_CARET] = ACTIONS(2380), - [anon_sym_LBRACK_COLON] = ACTIONS(3104), - [sym_this] = ACTIONS(2364), + [sym_expression] = STATE(5479), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(6445), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1927)] = { - [sym_expression] = STATE(5495), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5491), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1928)] = { - [sym_expression] = STATE(5497), - [sym__string] = STATE(4580), - [sym_conditional_expression] = STATE(3841), - [sym_assignment_expression] = STATE(3841), - [sym_pointer_expression] = STATE(3844), - [sym_unary_expression] = STATE(3841), - [sym_binary_expression] = STATE(3841), - [sym_update_expression] = STATE(3841), - [sym_cast_expression] = STATE(3841), - [sym_sizeof_expression] = STATE(3841), - [sym_alignof_expression] = STATE(3841), - [sym_offsetof_expression] = STATE(3841), - [sym_generic_expression] = STATE(3841), - [sym_subscript_expression] = STATE(3844), - [sym_call_expression] = STATE(3844), - [sym_gnu_asm_expression] = STATE(3841), - [sym_extension_expression] = STATE(3841), - [sym_field_expression] = STATE(3844), - [sym_compound_literal_expression] = STATE(3841), - [sym_parenthesized_expression] = STATE(3844), - [sym_char_literal] = STATE(4580), - [sym_concatenated_string] = STATE(4580), - [sym_string_literal] = STATE(3436), - [sym_null] = STATE(3841), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10271), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(3841), - [sym_raw_string_literal] = STATE(3436), - [sym_co_await_expression] = STATE(3841), - [sym_new_expression] = STATE(3841), - [sym_delete_expression] = STATE(3841), - [sym_requires_clause] = STATE(3841), - [sym_requires_expression] = STATE(3841), - [sym_lambda_expression] = STATE(3841), - [sym_lambda_capture_specifier] = STATE(8030), - [sym_fold_expression] = STATE(3841), - [sym_parameter_pack_expansion] = STATE(3841), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(3844), - [sym_qualified_type_identifier] = STATE(10271), - [sym_reflect_expression] = STATE(3841), - [sym_splice_specifier] = STATE(3602), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9284), - [sym_splice_expression] = STATE(3781), - [sym_user_defined_literal] = STATE(3844), - [sym_identifier] = ACTIONS(2608), - [anon_sym_LPAREN2] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_TILDE] = ACTIONS(3028), - [anon_sym_DASH] = ACTIONS(3026), - [anon_sym_PLUS] = ACTIONS(3026), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(3030), - [anon_sym_COLON_COLON] = ACTIONS(3032), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2398), - [anon_sym_not] = ACTIONS(3026), - [anon_sym_compl] = ACTIONS(3026), - [anon_sym_DASH_DASH] = ACTIONS(4413), - [anon_sym_PLUS_PLUS] = ACTIONS(4413), - [anon_sym_sizeof] = ACTIONS(3034), - [anon_sym___alignof__] = ACTIONS(2402), - [anon_sym___alignof] = ACTIONS(2402), - [anon_sym__alignof] = ACTIONS(2402), - [anon_sym_alignof] = ACTIONS(2402), - [anon_sym__Alignof] = ACTIONS(2402), - [anon_sym_offsetof] = ACTIONS(2404), - [anon_sym__Generic] = ACTIONS(2406), - [anon_sym_typename] = ACTIONS(2408), - [anon_sym_asm] = ACTIONS(2410), - [anon_sym___asm__] = ACTIONS(2410), - [anon_sym___asm] = ACTIONS(2410), - [sym_number_literal] = ACTIONS(2620), - [anon_sym_L_SQUOTE] = ACTIONS(2622), - [anon_sym_u_SQUOTE] = ACTIONS(2622), - [anon_sym_U_SQUOTE] = ACTIONS(2622), - [anon_sym_u8_SQUOTE] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_L_DQUOTE] = ACTIONS(2624), - [anon_sym_u_DQUOTE] = ACTIONS(2624), - [anon_sym_U_DQUOTE] = ACTIONS(2624), - [anon_sym_u8_DQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_true] = ACTIONS(2418), - [sym_false] = ACTIONS(2418), - [anon_sym_NULL] = ACTIONS(2420), - [anon_sym_nullptr] = ACTIONS(2420), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2424), - [anon_sym_delete] = ACTIONS(3036), - [anon_sym_R_DQUOTE] = ACTIONS(2628), - [anon_sym_LR_DQUOTE] = ACTIONS(2628), - [anon_sym_uR_DQUOTE] = ACTIONS(2628), - [anon_sym_UR_DQUOTE] = ACTIONS(2628), - [anon_sym_u8R_DQUOTE] = ACTIONS(2628), - [anon_sym_co_await] = ACTIONS(3038), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_requires] = ACTIONS(2434), - [anon_sym_CARET_CARET] = ACTIONS(3040), - [anon_sym_LBRACK_COLON] = ACTIONS(2438), - [sym_this] = ACTIONS(2418), + [sym_expression] = STATE(5494), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1929)] = { - [sym_expression] = STATE(6543), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [sym_expression] = STATE(5496), + [sym__string] = STATE(4593), + [sym_conditional_expression] = STATE(3896), + [sym_assignment_expression] = STATE(3896), + [sym_pointer_expression] = STATE(3897), + [sym_unary_expression] = STATE(3896), + [sym_binary_expression] = STATE(3896), + [sym_update_expression] = STATE(3896), + [sym_cast_expression] = STATE(3896), + [sym_sizeof_expression] = STATE(3896), + [sym_alignof_expression] = STATE(3896), + [sym_offsetof_expression] = STATE(3896), + [sym_generic_expression] = STATE(3896), + [sym_subscript_expression] = STATE(3897), + [sym_call_expression] = STATE(3897), + [sym_gnu_asm_expression] = STATE(3896), + [sym_extension_expression] = STATE(3896), + [sym_field_expression] = STATE(3897), + [sym_compound_literal_expression] = STATE(3896), + [sym_parenthesized_expression] = STATE(3897), + [sym_char_literal] = STATE(4593), + [sym_concatenated_string] = STATE(4593), + [sym_string_literal] = STATE(3390), + [sym_null] = STATE(3896), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10219), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(3896), + [sym_raw_string_literal] = STATE(3390), + [sym_co_await_expression] = STATE(3896), + [sym_new_expression] = STATE(3896), + [sym_delete_expression] = STATE(3896), + [sym_requires_clause] = STATE(3896), + [sym_requires_expression] = STATE(3896), + [sym_lambda_expression] = STATE(3896), + [sym_lambda_capture_specifier] = STATE(8026), + [sym_fold_expression] = STATE(3896), + [sym_parameter_pack_expansion] = STATE(3896), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(3897), + [sym_qualified_type_identifier] = STATE(10219), + [sym_reflect_expression] = STATE(3896), + [sym_splice_specifier] = STATE(3675), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9331), + [sym_splice_expression] = STATE(3808), + [sym_user_defined_literal] = STATE(3897), + [sym_identifier] = ACTIONS(2732), + [anon_sym_LPAREN2] = ACTIONS(4379), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(2960), + [anon_sym_COLON_COLON] = ACTIONS(2962), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2396), + [anon_sym_not] = ACTIONS(2956), + [anon_sym_compl] = ACTIONS(2956), + [anon_sym_DASH_DASH] = ACTIONS(4385), + [anon_sym_PLUS_PLUS] = ACTIONS(4385), + [anon_sym_sizeof] = ACTIONS(2964), + [anon_sym___alignof__] = ACTIONS(2400), + [anon_sym___alignof] = ACTIONS(2400), + [anon_sym__alignof] = ACTIONS(2400), + [anon_sym_alignof] = ACTIONS(2400), + [anon_sym__Alignof] = ACTIONS(2400), + [anon_sym_offsetof] = ACTIONS(2402), + [anon_sym__Generic] = ACTIONS(2404), + [anon_sym_typename] = ACTIONS(2406), + [anon_sym_asm] = ACTIONS(2408), + [anon_sym___asm__] = ACTIONS(2408), + [anon_sym___asm] = ACTIONS(2408), + [sym_number_literal] = ACTIONS(2744), + [anon_sym_L_SQUOTE] = ACTIONS(2746), + [anon_sym_u_SQUOTE] = ACTIONS(2746), + [anon_sym_U_SQUOTE] = ACTIONS(2746), + [anon_sym_u8_SQUOTE] = ACTIONS(2746), + [anon_sym_SQUOTE] = ACTIONS(2746), + [anon_sym_L_DQUOTE] = ACTIONS(2748), + [anon_sym_u_DQUOTE] = ACTIONS(2748), + [anon_sym_U_DQUOTE] = ACTIONS(2748), + [anon_sym_u8_DQUOTE] = ACTIONS(2748), + [anon_sym_DQUOTE] = ACTIONS(2748), + [sym_true] = ACTIONS(2416), + [sym_false] = ACTIONS(2416), + [anon_sym_NULL] = ACTIONS(2418), + [anon_sym_nullptr] = ACTIONS(2418), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2422), + [anon_sym_delete] = ACTIONS(2966), + [anon_sym_R_DQUOTE] = ACTIONS(2752), + [anon_sym_LR_DQUOTE] = ACTIONS(2752), + [anon_sym_uR_DQUOTE] = ACTIONS(2752), + [anon_sym_UR_DQUOTE] = ACTIONS(2752), + [anon_sym_u8R_DQUOTE] = ACTIONS(2752), + [anon_sym_co_await] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2756), + [anon_sym_requires] = ACTIONS(2432), + [anon_sym_CARET_CARET] = ACTIONS(2970), + [anon_sym_LBRACK_COLON] = ACTIONS(2436), + [sym_this] = ACTIONS(2416), }, [STATE(1930)] = { - [sym_expression] = STATE(6882), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [sym_expression] = STATE(6894), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -306656,7 +306612,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -306676,87 +306632,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1931)] = { - [sym_expression] = STATE(6885), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [sym_expression] = STATE(6897), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -306764,7 +306720,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -306784,195 +306740,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, [STATE(1932)] = { - [sym_expression] = STATE(6555), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1933)] = { - [sym_expression] = STATE(6887), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(6453), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [sym_expression] = STATE(6900), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(6447), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -306980,7 +306828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307000,87 +306848,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1934)] = { - [sym_expression] = STATE(6888), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5899), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5899), - [sym_call_expression] = STATE(5899), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5899), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5899), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5899), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5899), - [sym_identifier] = ACTIONS(4900), - [anon_sym_LPAREN2] = ACTIONS(3690), - [anon_sym_BANG] = ACTIONS(3692), - [anon_sym_TILDE] = ACTIONS(3692), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym___extension__] = ACTIONS(4902), - [anon_sym_COLON_COLON] = ACTIONS(4904), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3694), - [anon_sym_compl] = ACTIONS(3694), - [anon_sym_DASH_DASH] = ACTIONS(3712), - [anon_sym_PLUS_PLUS] = ACTIONS(3712), - [anon_sym_sizeof] = ACTIONS(3714), + [STATE(1933)] = { + [sym_expression] = STATE(6901), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5882), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5882), + [sym_call_expression] = STATE(5882), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5882), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5882), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5882), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5882), + [sym_identifier] = ACTIONS(4920), + [anon_sym_LPAREN2] = ACTIONS(3788), + [anon_sym_BANG] = ACTIONS(3790), + [anon_sym_TILDE] = ACTIONS(3790), + [anon_sym_DASH] = ACTIONS(3792), + [anon_sym_PLUS] = ACTIONS(3792), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AMP] = ACTIONS(3794), + [anon_sym___extension__] = ACTIONS(4922), + [anon_sym_COLON_COLON] = ACTIONS(4924), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), + [anon_sym_not] = ACTIONS(3792), + [anon_sym_compl] = ACTIONS(3792), + [anon_sym_DASH_DASH] = ACTIONS(3810), + [anon_sym_PLUS_PLUS] = ACTIONS(3810), + [anon_sym_sizeof] = ACTIONS(3812), [anon_sym___alignof__] = ACTIONS(109), [anon_sym___alignof] = ACTIONS(109), [anon_sym__alignof] = ACTIONS(109), @@ -307088,7 +306936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307108,298 +306956,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3718), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), + [anon_sym_delete] = ACTIONS(3816), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), [anon_sym_uR_DQUOTE] = ACTIONS(161), [anon_sym_UR_DQUOTE] = ACTIONS(161), [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(3720), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3722), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), - }, - [STATE(1935)] = { - [sym_expression] = STATE(5117), - [sym__string] = STATE(5287), - [sym_conditional_expression] = STATE(5590), - [sym_assignment_expression] = STATE(5590), - [sym_pointer_expression] = STATE(5564), - [sym_unary_expression] = STATE(5590), - [sym_binary_expression] = STATE(5590), - [sym_update_expression] = STATE(5590), - [sym_cast_expression] = STATE(5590), - [sym_sizeof_expression] = STATE(5590), - [sym_alignof_expression] = STATE(5590), - [sym_offsetof_expression] = STATE(5590), - [sym_generic_expression] = STATE(5590), - [sym_subscript_expression] = STATE(5564), - [sym_call_expression] = STATE(5564), - [sym_gnu_asm_expression] = STATE(5590), - [sym_extension_expression] = STATE(5590), - [sym_field_expression] = STATE(5564), - [sym_compound_literal_expression] = STATE(5590), - [sym_parenthesized_expression] = STATE(5564), - [sym_char_literal] = STATE(5287), - [sym_concatenated_string] = STATE(5287), - [sym_string_literal] = STATE(3783), - [sym_null] = STATE(5590), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10583), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(5590), - [sym_raw_string_literal] = STATE(3783), - [sym_co_await_expression] = STATE(5590), - [sym_new_expression] = STATE(5590), - [sym_delete_expression] = STATE(5590), - [sym_requires_clause] = STATE(5590), - [sym_requires_expression] = STATE(5590), - [sym_lambda_expression] = STATE(5590), - [sym_lambda_capture_specifier] = STATE(8041), - [sym_fold_expression] = STATE(5590), - [sym_parameter_pack_expansion] = STATE(5590), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7965), - [sym_qualified_identifier] = STATE(5564), - [sym_qualified_type_identifier] = STATE(10583), - [sym_reflect_expression] = STATE(5590), - [sym_splice_specifier] = STATE(4989), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9353), - [sym_splice_expression] = STATE(5280), - [sym_user_defined_literal] = STATE(5564), - [sym_identifier] = ACTIONS(2948), - [anon_sym_LPAREN2] = ACTIONS(2946), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2336), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym___extension__] = ACTIONS(2950), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2954), - [anon_sym_not] = ACTIONS(2232), - [anon_sym_compl] = ACTIONS(2232), - [anon_sym_DASH_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2256), - [anon_sym_sizeof] = ACTIONS(2258), - [anon_sym___alignof__] = ACTIONS(2260), - [anon_sym___alignof] = ACTIONS(2260), - [anon_sym__alignof] = ACTIONS(2260), - [anon_sym_alignof] = ACTIONS(2260), - [anon_sym__Alignof] = ACTIONS(2260), - [anon_sym_offsetof] = ACTIONS(2262), - [anon_sym__Generic] = ACTIONS(2264), - [anon_sym_typename] = ACTIONS(2956), - [anon_sym_asm] = ACTIONS(2268), - [anon_sym___asm__] = ACTIONS(2268), - [anon_sym___asm] = ACTIONS(2268), - [sym_number_literal] = ACTIONS(2270), - [anon_sym_L_SQUOTE] = ACTIONS(2272), - [anon_sym_u_SQUOTE] = ACTIONS(2272), - [anon_sym_U_SQUOTE] = ACTIONS(2272), - [anon_sym_u8_SQUOTE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2272), - [anon_sym_L_DQUOTE] = ACTIONS(2274), - [anon_sym_u_DQUOTE] = ACTIONS(2274), - [anon_sym_U_DQUOTE] = ACTIONS(2274), - [anon_sym_u8_DQUOTE] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [sym_true] = ACTIONS(2276), - [sym_false] = ACTIONS(2276), - [anon_sym_NULL] = ACTIONS(2278), - [anon_sym_nullptr] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2284), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_R_DQUOTE] = ACTIONS(2290), - [anon_sym_LR_DQUOTE] = ACTIONS(2290), - [anon_sym_uR_DQUOTE] = ACTIONS(2290), - [anon_sym_UR_DQUOTE] = ACTIONS(2290), - [anon_sym_u8R_DQUOTE] = ACTIONS(2290), - [anon_sym_co_await] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2294), - [anon_sym_requires] = ACTIONS(2296), - [anon_sym_CARET_CARET] = ACTIONS(2298), - [anon_sym_LBRACK_COLON] = ACTIONS(2300), - [sym_this] = ACTIONS(2276), - }, - [STATE(1936)] = { - [sym_expression] = STATE(6504), - [sym__string] = STATE(6600), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5364), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5364), - [sym_call_expression] = STATE(5364), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5364), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5364), - [sym_char_literal] = STATE(6600), - [sym_concatenated_string] = STATE(6600), - [sym_string_literal] = STATE(5666), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(5666), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5364), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5364), - [sym_identifier] = ACTIONS(4680), - [anon_sym_LPAREN2] = ACTIONS(3748), - [anon_sym_BANG] = ACTIONS(3750), - [anon_sym_TILDE] = ACTIONS(3750), - [anon_sym_DASH] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3752), - [anon_sym_STAR] = ACTIONS(3754), - [anon_sym_AMP] = ACTIONS(3754), - [anon_sym___extension__] = ACTIONS(4682), - [anon_sym_COLON_COLON] = ACTIONS(4684), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(3752), - [anon_sym_compl] = ACTIONS(3752), - [anon_sym_DASH_DASH] = ACTIONS(3760), - [anon_sym_PLUS_PLUS] = ACTIONS(3760), - [anon_sym_sizeof] = ACTIONS(3762), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(3764), - [anon_sym_L_SQUOTE] = ACTIONS(3766), - [anon_sym_u_SQUOTE] = ACTIONS(3766), - [anon_sym_U_SQUOTE] = ACTIONS(3766), - [anon_sym_u8_SQUOTE] = ACTIONS(3766), - [anon_sym_SQUOTE] = ACTIONS(3766), - [anon_sym_L_DQUOTE] = ACTIONS(3768), - [anon_sym_u_DQUOTE] = ACTIONS(3768), - [anon_sym_U_DQUOTE] = ACTIONS(3768), - [anon_sym_u8_DQUOTE] = ACTIONS(3768), - [anon_sym_DQUOTE] = ACTIONS(3768), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(3770), - [anon_sym_R_DQUOTE] = ACTIONS(3772), - [anon_sym_LR_DQUOTE] = ACTIONS(3772), - [anon_sym_uR_DQUOTE] = ACTIONS(3772), - [anon_sym_UR_DQUOTE] = ACTIONS(3772), - [anon_sym_u8R_DQUOTE] = ACTIONS(3772), - [anon_sym_co_await] = ACTIONS(3774), + [anon_sym_co_await] = ACTIONS(3818), [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(3776), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_CARET_CARET] = ACTIONS(3820), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1937)] = { - [sym_expression] = STATE(7184), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1934)] = { + [sym_expression] = STATE(7180), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307412,7 +307044,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307432,8 +307064,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -307444,70 +307076,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1938)] = { - [sym_expression] = STATE(7186), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1935)] = { + [sym_expression] = STATE(7182), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307520,7 +307152,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307540,8 +307172,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -307552,70 +307184,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1939)] = { - [sym_expression] = STATE(7187), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1936)] = { + [sym_expression] = STATE(7183), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307628,7 +307260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307648,8 +307280,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -307660,70 +307292,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1940)] = { - [sym_expression] = STATE(7188), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1937)] = { + [sym_expression] = STATE(7184), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307736,7 +307368,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307756,8 +307388,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -307768,70 +307400,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1941)] = { - [sym_expression] = STATE(7189), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1938)] = { + [sym_expression] = STATE(7185), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307844,7 +307476,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307864,8 +307496,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -307876,70 +307508,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1942)] = { - [sym_expression] = STATE(6927), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), + [STATE(1939)] = { + [sym_expression] = STATE(7186), + [sym__string] = STATE(6410), + [sym_conditional_expression] = STATE(5966), + [sym_assignment_expression] = STATE(5966), + [sym_pointer_expression] = STATE(5231), + [sym_unary_expression] = STATE(5966), + [sym_binary_expression] = STATE(5966), + [sym_update_expression] = STATE(5966), + [sym_cast_expression] = STATE(5966), + [sym_sizeof_expression] = STATE(5966), + [sym_alignof_expression] = STATE(5966), + [sym_offsetof_expression] = STATE(5966), + [sym_generic_expression] = STATE(5966), + [sym_subscript_expression] = STATE(5231), + [sym_call_expression] = STATE(5231), + [sym_gnu_asm_expression] = STATE(5966), + [sym_extension_expression] = STATE(5966), + [sym_field_expression] = STATE(5231), + [sym_compound_literal_expression] = STATE(5966), + [sym_parenthesized_expression] = STATE(5231), + [sym_char_literal] = STATE(6410), + [sym_concatenated_string] = STATE(6410), + [sym_string_literal] = STATE(4797), + [sym_null] = STATE(5966), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10441), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5966), + [sym_raw_string_literal] = STATE(4797), + [sym_co_await_expression] = STATE(5966), + [sym_new_expression] = STATE(5966), + [sym_delete_expression] = STATE(5966), + [sym_requires_clause] = STATE(5966), + [sym_requires_expression] = STATE(5966), + [sym_lambda_expression] = STATE(5966), + [sym_lambda_capture_specifier] = STATE(8038), + [sym_fold_expression] = STATE(5966), + [sym_parameter_pack_expansion] = STATE(5966), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7909), + [sym_qualified_identifier] = STATE(5231), + [sym_qualified_type_identifier] = STATE(10441), + [sym_reflect_expression] = STATE(5966), + [sym_splice_specifier] = STATE(5353), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9337), + [sym_splice_expression] = STATE(5875), + [sym_user_defined_literal] = STATE(5231), + [sym_identifier] = ACTIONS(4676), + [anon_sym_LPAREN2] = ACTIONS(1654), [anon_sym_BANG] = ACTIONS(21), [anon_sym_TILDE] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(25), [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), + [anon_sym_STAR] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym___extension__] = ACTIONS(2440), [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2444), [anon_sym_not] = ACTIONS(25), [anon_sym_compl] = ACTIONS(25), [anon_sym_DASH_DASH] = ACTIONS(105), @@ -307952,7 +307584,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym__Alignof] = ACTIONS(109), [anon_sym_offsetof] = ACTIONS(111), [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), + [anon_sym_typename] = ACTIONS(2446), [anon_sym_asm] = ACTIONS(117), [anon_sym___asm__] = ACTIONS(117), [anon_sym___asm] = ACTIONS(117), @@ -307972,8 +307604,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_NULL] = ACTIONS(127), [anon_sym_nullptr] = ACTIONS(127), [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(2216), [anon_sym_delete] = ACTIONS(147), [anon_sym_R_DQUOTE] = ACTIONS(161), [anon_sym_LR_DQUOTE] = ACTIONS(161), @@ -307984,185 +307616,185 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(165), [anon_sym_requires] = ACTIONS(167), [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), + [anon_sym_LBRACK_COLON] = ACTIONS(2448), [sym_this] = ACTIONS(237), }, - [STATE(1943)] = { - [sym_expression] = STATE(7113), - [sym__string] = STATE(6386), - [sym_conditional_expression] = STATE(6009), - [sym_assignment_expression] = STATE(6009), - [sym_pointer_expression] = STATE(5086), - [sym_unary_expression] = STATE(6009), - [sym_binary_expression] = STATE(6009), - [sym_update_expression] = STATE(6009), - [sym_cast_expression] = STATE(6009), - [sym_sizeof_expression] = STATE(6009), - [sym_alignof_expression] = STATE(6009), - [sym_offsetof_expression] = STATE(6009), - [sym_generic_expression] = STATE(6009), - [sym_subscript_expression] = STATE(5086), - [sym_call_expression] = STATE(5086), - [sym_gnu_asm_expression] = STATE(6009), - [sym_extension_expression] = STATE(6009), - [sym_field_expression] = STATE(5086), - [sym_compound_literal_expression] = STATE(6009), - [sym_parenthesized_expression] = STATE(5086), - [sym_char_literal] = STATE(6386), - [sym_concatenated_string] = STATE(6386), - [sym_string_literal] = STATE(4767), - [sym_null] = STATE(6009), - [sym_decltype] = STATE(10768), - [sym__class_name] = STATE(10231), - [sym_template_type] = STATE(3790), - [sym_template_function] = STATE(6009), - [sym_raw_string_literal] = STATE(4767), - [sym_co_await_expression] = STATE(6009), - [sym_new_expression] = STATE(6009), - [sym_delete_expression] = STATE(6009), - [sym_requires_clause] = STATE(6009), - [sym_requires_expression] = STATE(6009), - [sym_lambda_expression] = STATE(6009), - [sym_lambda_capture_specifier] = STATE(8001), - [sym_fold_expression] = STATE(6009), - [sym_parameter_pack_expansion] = STATE(6009), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7956), - [sym_qualified_identifier] = STATE(5086), - [sym_qualified_type_identifier] = STATE(10231), - [sym_reflect_expression] = STATE(6009), - [sym_splice_specifier] = STATE(5471), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(9393), - [sym_splice_expression] = STATE(5921), - [sym_user_defined_literal] = STATE(5086), - [sym_identifier] = ACTIONS(4678), - [anon_sym_LPAREN2] = ACTIONS(1656), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(25), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1658), - [anon_sym___extension__] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(47), - [anon_sym_LBRACK] = ACTIONS(1670), - [sym_primitive_type] = ACTIONS(2598), - [anon_sym_not] = ACTIONS(25), - [anon_sym_compl] = ACTIONS(25), - [anon_sym_DASH_DASH] = ACTIONS(105), - [anon_sym_PLUS_PLUS] = ACTIONS(105), - [anon_sym_sizeof] = ACTIONS(107), - [anon_sym___alignof__] = ACTIONS(109), - [anon_sym___alignof] = ACTIONS(109), - [anon_sym__alignof] = ACTIONS(109), - [anon_sym_alignof] = ACTIONS(109), - [anon_sym__Alignof] = ACTIONS(109), - [anon_sym_offsetof] = ACTIONS(111), - [anon_sym__Generic] = ACTIONS(113), - [anon_sym_typename] = ACTIONS(2600), - [anon_sym_asm] = ACTIONS(117), - [anon_sym___asm__] = ACTIONS(117), - [anon_sym___asm] = ACTIONS(117), - [sym_number_literal] = ACTIONS(235), - [anon_sym_L_SQUOTE] = ACTIONS(121), - [anon_sym_u_SQUOTE] = ACTIONS(121), - [anon_sym_U_SQUOTE] = ACTIONS(121), - [anon_sym_u8_SQUOTE] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(121), - [anon_sym_L_DQUOTE] = ACTIONS(123), - [anon_sym_u_DQUOTE] = ACTIONS(123), - [anon_sym_U_DQUOTE] = ACTIONS(123), - [anon_sym_u8_DQUOTE] = ACTIONS(123), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_true] = ACTIONS(237), - [sym_false] = ACTIONS(237), - [anon_sym_NULL] = ACTIONS(127), - [anon_sym_nullptr] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(2218), - [anon_sym_delete] = ACTIONS(147), - [anon_sym_R_DQUOTE] = ACTIONS(161), - [anon_sym_LR_DQUOTE] = ACTIONS(161), - [anon_sym_uR_DQUOTE] = ACTIONS(161), - [anon_sym_UR_DQUOTE] = ACTIONS(161), - [anon_sym_u8R_DQUOTE] = ACTIONS(161), - [anon_sym_co_await] = ACTIONS(163), - [anon_sym_new] = ACTIONS(165), - [anon_sym_requires] = ACTIONS(167), - [anon_sym_CARET_CARET] = ACTIONS(169), - [anon_sym_LBRACK_COLON] = ACTIONS(2602), - [sym_this] = ACTIONS(237), + [STATE(1940)] = { + [sym_expression] = STATE(5386), + [sym__string] = STATE(5605), + [sym_conditional_expression] = STATE(5740), + [sym_assignment_expression] = STATE(5740), + [sym_pointer_expression] = STATE(5828), + [sym_unary_expression] = STATE(5740), + [sym_binary_expression] = STATE(5740), + [sym_update_expression] = STATE(5740), + [sym_cast_expression] = STATE(5740), + [sym_sizeof_expression] = STATE(5740), + [sym_alignof_expression] = STATE(5740), + [sym_offsetof_expression] = STATE(5740), + [sym_generic_expression] = STATE(5740), + [sym_subscript_expression] = STATE(5828), + [sym_call_expression] = STATE(5828), + [sym_gnu_asm_expression] = STATE(5740), + [sym_extension_expression] = STATE(5740), + [sym_field_expression] = STATE(5828), + [sym_compound_literal_expression] = STATE(5740), + [sym_parenthesized_expression] = STATE(5828), + [sym_char_literal] = STATE(5605), + [sym_concatenated_string] = STATE(5605), + [sym_string_literal] = STATE(3859), + [sym_null] = STATE(5740), + [sym_decltype] = STATE(11531), + [sym__class_name] = STATE(10511), + [sym_template_type] = STATE(3803), + [sym_template_function] = STATE(5740), + [sym_raw_string_literal] = STATE(3859), + [sym_co_await_expression] = STATE(5740), + [sym_new_expression] = STATE(5740), + [sym_delete_expression] = STATE(5740), + [sym_requires_clause] = STATE(5740), + [sym_requires_expression] = STATE(5740), + [sym_lambda_expression] = STATE(5740), + [sym_lambda_capture_specifier] = STATE(8010), + [sym_fold_expression] = STATE(5740), + [sym_parameter_pack_expansion] = STATE(5740), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7922), + [sym_qualified_identifier] = STATE(5828), + [sym_qualified_type_identifier] = STATE(10511), + [sym_reflect_expression] = STATE(5740), + [sym_splice_specifier] = STATE(5114), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(9358), + [sym_splice_expression] = STATE(5613), + [sym_user_defined_literal] = STATE(5828), + [sym_identifier] = ACTIONS(2972), + [anon_sym_LPAREN2] = ACTIONS(4185), + [anon_sym_BANG] = ACTIONS(2976), + [anon_sym_TILDE] = ACTIONS(2976), + [anon_sym_DASH] = ACTIONS(2974), + [anon_sym_PLUS] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(3933), + [anon_sym_AMP] = ACTIONS(3933), + [anon_sym___extension__] = ACTIONS(2978), + [anon_sym_COLON_COLON] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(1668), + [sym_primitive_type] = ACTIONS(2984), + [anon_sym_not] = ACTIONS(2974), + [anon_sym_compl] = ACTIONS(2974), + [anon_sym_DASH_DASH] = ACTIONS(4203), + [anon_sym_PLUS_PLUS] = ACTIONS(4203), + [anon_sym_sizeof] = ACTIONS(2986), + [anon_sym___alignof__] = ACTIONS(2988), + [anon_sym___alignof] = ACTIONS(2988), + [anon_sym__alignof] = ACTIONS(2988), + [anon_sym_alignof] = ACTIONS(2988), + [anon_sym__Alignof] = ACTIONS(2988), + [anon_sym_offsetof] = ACTIONS(2990), + [anon_sym__Generic] = ACTIONS(2992), + [anon_sym_typename] = ACTIONS(2994), + [anon_sym_asm] = ACTIONS(2996), + [anon_sym___asm__] = ACTIONS(2996), + [anon_sym___asm] = ACTIONS(2996), + [sym_number_literal] = ACTIONS(2998), + [anon_sym_L_SQUOTE] = ACTIONS(3000), + [anon_sym_u_SQUOTE] = ACTIONS(3000), + [anon_sym_U_SQUOTE] = ACTIONS(3000), + [anon_sym_u8_SQUOTE] = ACTIONS(3000), + [anon_sym_SQUOTE] = ACTIONS(3000), + [anon_sym_L_DQUOTE] = ACTIONS(3002), + [anon_sym_u_DQUOTE] = ACTIONS(3002), + [anon_sym_U_DQUOTE] = ACTIONS(3002), + [anon_sym_u8_DQUOTE] = ACTIONS(3002), + [anon_sym_DQUOTE] = ACTIONS(3002), + [sym_true] = ACTIONS(3004), + [sym_false] = ACTIONS(3004), + [anon_sym_NULL] = ACTIONS(3006), + [anon_sym_nullptr] = ACTIONS(3006), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3010), + [anon_sym_R_DQUOTE] = ACTIONS(3012), + [anon_sym_LR_DQUOTE] = ACTIONS(3012), + [anon_sym_uR_DQUOTE] = ACTIONS(3012), + [anon_sym_UR_DQUOTE] = ACTIONS(3012), + [anon_sym_u8R_DQUOTE] = ACTIONS(3012), + [anon_sym_co_await] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), + [anon_sym_requires] = ACTIONS(3018), + [anon_sym_CARET_CARET] = ACTIONS(3020), + [anon_sym_LBRACK_COLON] = ACTIONS(3022), + [sym_this] = ACTIONS(3004), }, - [STATE(1944)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_call_modifier] = STATE(8776), - [sym__abstract_declarator] = STATE(9331), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_abstract_function_declarator] = STATE(8596), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(9892), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9892), - [sym_optional_parameter_declaration] = STATE(9892), - [sym_variadic_parameter_declaration] = STATE(9892), - [sym_abstract_reference_declarator] = STATE(8596), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6457), - [anon_sym_RPAREN] = ACTIONS(6459), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_AMP] = ACTIONS(6467), + [STATE(1941)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_call_modifier] = STATE(8814), + [sym__abstract_declarator] = STATE(9330), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_abstract_function_declarator] = STATE(8572), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(9957), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9957), + [sym_optional_parameter_declaration] = STATE(9957), + [sym_variadic_parameter_declaration] = STATE(9957), + [sym_abstract_reference_declarator] = STATE(8572), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6451), + [anon_sym_RPAREN] = ACTIONS(6453), + [anon_sym_LPAREN2] = ACTIONS(6455), + [anon_sym_STAR] = ACTIONS(6457), + [anon_sym_AMP_AMP] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(6461), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6471), - [anon_sym___clrcall] = ACTIONS(6471), - [anon_sym___stdcall] = ACTIONS(6471), - [anon_sym___fastcall] = ACTIONS(6471), - [anon_sym___thiscall] = ACTIONS(6471), - [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym___cdecl] = ACTIONS(6465), + [anon_sym___clrcall] = ACTIONS(6465), + [anon_sym___stdcall] = ACTIONS(6465), + [anon_sym___fastcall] = ACTIONS(6465), + [anon_sym___thiscall] = ACTIONS(6465), + [anon_sym___vectorcall] = ACTIONS(6465), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6467), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -308185,87 +307817,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(1945)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_call_modifier] = STATE(8783), - [sym__abstract_declarator] = STATE(9321), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_abstract_function_declarator] = STATE(8596), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(9734), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9734), - [sym_optional_parameter_declaration] = STATE(9734), - [sym_variadic_parameter_declaration] = STATE(9734), - [sym_abstract_reference_declarator] = STATE(8596), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6477), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_AMP] = ACTIONS(6467), + [STATE(1942)] = { + [sym_attribute_specifier] = STATE(1978), + [sym_attribute_declaration] = STATE(3164), + [sym_type_qualifier] = STATE(2010), + [sym_alignas_qualifier] = STATE(2060), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2304), + [sym__function_attributes_start] = STATE(2279), + [sym__function_exception_specification] = STATE(2559), + [sym__function_attributes_end] = STATE(3922), + [sym__function_postfix] = STATE(3613), + [sym_trailing_return_type] = STATE(3059), + [sym_noexcept] = STATE(2559), + [sym_throw_specifier] = STATE(2559), + [sym_requires_clause] = STATE(3613), + [aux_sym_type_definition_repeat1] = STATE(1978), + [aux_sym__type_definition_type_repeat1] = STATE(2010), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(6469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [aux_sym_preproc_if_token2] = ACTIONS(6471), + [aux_sym_preproc_else_token1] = ACTIONS(6471), + [aux_sym_preproc_elif_token1] = ACTIONS(6469), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6471), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6473), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6476), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(6479), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6479), + [anon_sym_constexpr] = ACTIONS(6479), + [anon_sym_volatile] = ACTIONS(6479), + [anon_sym_restrict] = ACTIONS(6479), + [anon_sym___restrict__] = ACTIONS(6479), + [anon_sym__Atomic] = ACTIONS(6479), + [anon_sym__Noreturn] = ACTIONS(6479), + [anon_sym_noreturn] = ACTIONS(6479), + [anon_sym__Nonnull] = ACTIONS(6479), + [anon_sym_mutable] = ACTIONS(6479), + [anon_sym_constinit] = ACTIONS(6479), + [anon_sym_consteval] = ACTIONS(6479), + [anon_sym_alignas] = ACTIONS(6485), + [anon_sym__Alignas] = ACTIONS(6485), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6469), + [anon_sym_or_eq] = ACTIONS(6469), + [anon_sym_xor_eq] = ACTIONS(6469), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6469), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6469), + [anon_sym_not_eq] = ACTIONS(6469), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6489), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6492), + [anon_sym_override] = ACTIONS(6492), + [anon_sym_noexcept] = ACTIONS(6495), + [anon_sym_throw] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6499), + }, + [STATE(1943)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_call_modifier] = STATE(8788), + [sym__abstract_declarator] = STATE(9272), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_abstract_function_declarator] = STATE(8572), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(9757), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9757), + [sym_optional_parameter_declaration] = STATE(9757), + [sym_variadic_parameter_declaration] = STATE(9757), + [sym_abstract_reference_declarator] = STATE(8572), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6502), + [anon_sym_RPAREN] = ACTIONS(6504), + [anon_sym_LPAREN2] = ACTIONS(6455), + [anon_sym_STAR] = ACTIONS(6457), + [anon_sym_AMP_AMP] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(6461), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6471), - [anon_sym___clrcall] = ACTIONS(6471), - [anon_sym___stdcall] = ACTIONS(6471), - [anon_sym___fastcall] = ACTIONS(6471), - [anon_sym___thiscall] = ACTIONS(6471), - [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym___cdecl] = ACTIONS(6465), + [anon_sym___clrcall] = ACTIONS(6465), + [anon_sym___stdcall] = ACTIONS(6465), + [anon_sym___fastcall] = ACTIONS(6465), + [anon_sym___thiscall] = ACTIONS(6465), + [anon_sym___vectorcall] = ACTIONS(6465), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6467), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -308288,293 +308023,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), - }, - [STATE(1946)] = { - [sym_attribute_specifier] = STATE(1984), - [sym_attribute_declaration] = STATE(3125), - [sym_type_qualifier] = STATE(2001), - [sym_alignas_qualifier] = STATE(2059), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2309), - [sym__function_attributes_start] = STATE(2247), - [sym__function_exception_specification] = STATE(2566), - [sym__function_attributes_end] = STATE(3918), - [sym__function_postfix] = STATE(3601), - [sym_trailing_return_type] = STATE(2994), - [sym_noexcept] = STATE(2566), - [sym_throw_specifier] = STATE(2566), - [sym_requires_clause] = STATE(3601), - [aux_sym_type_definition_repeat1] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(2001), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(6479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [aux_sym_preproc_if_token2] = ACTIONS(6481), - [aux_sym_preproc_else_token1] = ACTIONS(6481), - [aux_sym_preproc_elif_token1] = ACTIONS(6479), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6483), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6486), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(6489), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6489), - [anon_sym_constexpr] = ACTIONS(6489), - [anon_sym_volatile] = ACTIONS(6489), - [anon_sym_restrict] = ACTIONS(6489), - [anon_sym___restrict__] = ACTIONS(6489), - [anon_sym__Atomic] = ACTIONS(6489), - [anon_sym__Noreturn] = ACTIONS(6489), - [anon_sym_noreturn] = ACTIONS(6489), - [anon_sym__Nonnull] = ACTIONS(6489), - [anon_sym_mutable] = ACTIONS(6489), - [anon_sym_constinit] = ACTIONS(6489), - [anon_sym_consteval] = ACTIONS(6489), - [anon_sym_alignas] = ACTIONS(6495), - [anon_sym__Alignas] = ACTIONS(6495), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6479), - [anon_sym_or_eq] = ACTIONS(6479), - [anon_sym_xor_eq] = ACTIONS(6479), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6479), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6479), - [anon_sym_not_eq] = ACTIONS(6479), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6499), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_noexcept] = ACTIONS(6504), - [anon_sym_throw] = ACTIONS(6506), - [anon_sym_requires] = ACTIONS(6508), - }, - [STATE(1947)] = { - [sym_attribute_specifier] = STATE(1984), - [sym_attribute_declaration] = STATE(3125), - [sym_type_qualifier] = STATE(2001), - [sym_alignas_qualifier] = STATE(2059), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2311), - [sym__function_attributes_start] = STATE(2248), - [sym__function_exception_specification] = STATE(2573), - [sym__function_attributes_end] = STATE(3922), - [sym__function_postfix] = STATE(3601), - [sym_trailing_return_type] = STATE(3074), - [sym_noexcept] = STATE(2573), - [sym_throw_specifier] = STATE(2573), - [sym_requires_clause] = STATE(3601), - [aux_sym_type_definition_repeat1] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(2001), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(6479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [aux_sym_preproc_if_token2] = ACTIONS(6481), - [aux_sym_preproc_else_token1] = ACTIONS(6481), - [aux_sym_preproc_elif_token1] = ACTIONS(6479), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6483), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6486), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(6489), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6489), - [anon_sym_constexpr] = ACTIONS(6489), - [anon_sym_volatile] = ACTIONS(6489), - [anon_sym_restrict] = ACTIONS(6489), - [anon_sym___restrict__] = ACTIONS(6489), - [anon_sym__Atomic] = ACTIONS(6489), - [anon_sym__Noreturn] = ACTIONS(6489), - [anon_sym_noreturn] = ACTIONS(6489), - [anon_sym__Nonnull] = ACTIONS(6489), - [anon_sym_mutable] = ACTIONS(6489), - [anon_sym_constinit] = ACTIONS(6489), - [anon_sym_consteval] = ACTIONS(6489), - [anon_sym_alignas] = ACTIONS(6495), - [anon_sym__Alignas] = ACTIONS(6495), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6479), - [anon_sym_or_eq] = ACTIONS(6479), - [anon_sym_xor_eq] = ACTIONS(6479), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6479), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6479), - [anon_sym_not_eq] = ACTIONS(6479), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6499), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6510), - [anon_sym_override] = ACTIONS(6510), - [anon_sym_noexcept] = ACTIONS(6504), - [anon_sym_throw] = ACTIONS(6506), - [anon_sym_requires] = ACTIONS(6513), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(1948)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_call_modifier] = STATE(8774), - [sym__abstract_declarator] = STATE(9392), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_abstract_function_declarator] = STATE(8596), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(10146), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(10146), - [sym_optional_parameter_declaration] = STATE(10146), - [sym_variadic_parameter_declaration] = STATE(10146), - [sym_abstract_reference_declarator] = STATE(8596), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6516), - [anon_sym_RPAREN] = ACTIONS(6518), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_AMP] = ACTIONS(6467), + [STATE(1944)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_call_modifier] = STATE(8794), + [sym__abstract_declarator] = STATE(9382), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_abstract_function_declarator] = STATE(8572), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(9891), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9891), + [sym_optional_parameter_declaration] = STATE(9891), + [sym_variadic_parameter_declaration] = STATE(9891), + [sym_abstract_reference_declarator] = STATE(8572), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6506), + [anon_sym_RPAREN] = ACTIONS(6508), + [anon_sym_LPAREN2] = ACTIONS(6455), + [anon_sym_STAR] = ACTIONS(6457), + [anon_sym_AMP_AMP] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(6461), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6471), - [anon_sym___clrcall] = ACTIONS(6471), - [anon_sym___stdcall] = ACTIONS(6471), - [anon_sym___fastcall] = ACTIONS(6471), - [anon_sym___thiscall] = ACTIONS(6471), - [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym___cdecl] = ACTIONS(6465), + [anon_sym___clrcall] = ACTIONS(6465), + [anon_sym___stdcall] = ACTIONS(6465), + [anon_sym___fastcall] = ACTIONS(6465), + [anon_sym___thiscall] = ACTIONS(6465), + [anon_sym___vectorcall] = ACTIONS(6465), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6467), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -308597,87 +308126,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(1949)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_call_modifier] = STATE(8781), - [sym__abstract_declarator] = STATE(9400), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_abstract_function_declarator] = STATE(8596), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(9979), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9979), - [sym_optional_parameter_declaration] = STATE(9979), - [sym_variadic_parameter_declaration] = STATE(9979), - [sym_abstract_reference_declarator] = STATE(8596), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6520), - [anon_sym_RPAREN] = ACTIONS(6522), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_AMP] = ACTIONS(6467), + [STATE(1945)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_call_modifier] = STATE(8808), + [sym__abstract_declarator] = STATE(9388), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_abstract_function_declarator] = STATE(8572), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(9683), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9683), + [sym_optional_parameter_declaration] = STATE(9683), + [sym_variadic_parameter_declaration] = STATE(9683), + [sym_abstract_reference_declarator] = STATE(8572), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_RPAREN] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(6455), + [anon_sym_STAR] = ACTIONS(6457), + [anon_sym_AMP_AMP] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(6461), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6471), - [anon_sym___clrcall] = ACTIONS(6471), - [anon_sym___stdcall] = ACTIONS(6471), - [anon_sym___fastcall] = ACTIONS(6471), - [anon_sym___thiscall] = ACTIONS(6471), - [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym___cdecl] = ACTIONS(6465), + [anon_sym___clrcall] = ACTIONS(6465), + [anon_sym___stdcall] = ACTIONS(6465), + [anon_sym___fastcall] = ACTIONS(6465), + [anon_sym___thiscall] = ACTIONS(6465), + [anon_sym___vectorcall] = ACTIONS(6465), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6467), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -308700,87 +308229,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(1950)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_call_modifier] = STATE(8775), - [sym__abstract_declarator] = STATE(9371), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_abstract_function_declarator] = STATE(8596), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(10083), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(10083), - [sym_optional_parameter_declaration] = STATE(10083), - [sym_variadic_parameter_declaration] = STATE(10083), - [sym_abstract_reference_declarator] = STATE(8596), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6524), - [anon_sym_RPAREN] = ACTIONS(6526), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_AMP] = ACTIONS(6467), + [STATE(1946)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_call_modifier] = STATE(8799), + [sym__abstract_declarator] = STATE(9405), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_abstract_function_declarator] = STATE(8572), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(10002), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(10002), + [sym_optional_parameter_declaration] = STATE(10002), + [sym_variadic_parameter_declaration] = STATE(10002), + [sym_abstract_reference_declarator] = STATE(8572), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6510), + [anon_sym_RPAREN] = ACTIONS(6512), + [anon_sym_LPAREN2] = ACTIONS(6455), + [anon_sym_STAR] = ACTIONS(6457), + [anon_sym_AMP_AMP] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(6461), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6471), - [anon_sym___clrcall] = ACTIONS(6471), - [anon_sym___stdcall] = ACTIONS(6471), - [anon_sym___fastcall] = ACTIONS(6471), - [anon_sym___thiscall] = ACTIONS(6471), - [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym___cdecl] = ACTIONS(6465), + [anon_sym___clrcall] = ACTIONS(6465), + [anon_sym___stdcall] = ACTIONS(6465), + [anon_sym___fastcall] = ACTIONS(6465), + [anon_sym___thiscall] = ACTIONS(6465), + [anon_sym___vectorcall] = ACTIONS(6465), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6467), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -308803,87 +308332,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(1951)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_call_modifier] = STATE(8811), - [sym__abstract_declarator] = STATE(9362), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_abstract_function_declarator] = STATE(8596), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(9791), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9791), - [sym_optional_parameter_declaration] = STATE(9791), - [sym_variadic_parameter_declaration] = STATE(9791), - [sym_abstract_reference_declarator] = STATE(8596), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_AMP] = ACTIONS(6467), + [STATE(1947)] = { + [sym_attribute_specifier] = STATE(1978), + [sym_attribute_declaration] = STATE(3164), + [sym_type_qualifier] = STATE(2010), + [sym_alignas_qualifier] = STATE(2060), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2295), + [sym__function_attributes_start] = STATE(2271), + [sym__function_exception_specification] = STATE(2528), + [sym__function_attributes_end] = STATE(3929), + [sym__function_postfix] = STATE(3613), + [sym_trailing_return_type] = STATE(3059), + [sym_noexcept] = STATE(2528), + [sym_throw_specifier] = STATE(2528), + [sym_requires_clause] = STATE(3613), + [aux_sym_type_definition_repeat1] = STATE(1978), + [aux_sym__type_definition_type_repeat1] = STATE(2010), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_RPAREN] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6473), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6476), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym_SEMI] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(6514), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6471), + [anon_sym_RBRACE] = ACTIONS(6471), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6479), + [anon_sym_constexpr] = ACTIONS(6514), + [anon_sym_volatile] = ACTIONS(6514), + [anon_sym_restrict] = ACTIONS(6514), + [anon_sym___restrict__] = ACTIONS(6514), + [anon_sym__Atomic] = ACTIONS(6514), + [anon_sym__Noreturn] = ACTIONS(6514), + [anon_sym_noreturn] = ACTIONS(6514), + [anon_sym__Nonnull] = ACTIONS(6514), + [anon_sym_mutable] = ACTIONS(6514), + [anon_sym_constinit] = ACTIONS(6514), + [anon_sym_consteval] = ACTIONS(6514), + [anon_sym_alignas] = ACTIONS(6518), + [anon_sym__Alignas] = ACTIONS(6518), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6471), + [anon_sym_or_eq] = ACTIONS(6471), + [anon_sym_xor_eq] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6522), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(6532), + [anon_sym_COLON_RBRACK] = ACTIONS(6471), + }, + [STATE(1948)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_call_modifier] = STATE(8801), + [sym__abstract_declarator] = STATE(9284), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_abstract_function_declarator] = STATE(8572), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(10122), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(10122), + [sym_optional_parameter_declaration] = STATE(10122), + [sym_variadic_parameter_declaration] = STATE(10122), + [sym_abstract_reference_declarator] = STATE(8572), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6535), + [anon_sym_RPAREN] = ACTIONS(6537), + [anon_sym_LPAREN2] = ACTIONS(6455), + [anon_sym_STAR] = ACTIONS(6457), + [anon_sym_AMP_AMP] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(6461), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6471), - [anon_sym___clrcall] = ACTIONS(6471), - [anon_sym___stdcall] = ACTIONS(6471), - [anon_sym___fastcall] = ACTIONS(6471), - [anon_sym___thiscall] = ACTIONS(6471), - [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym___cdecl] = ACTIONS(6465), + [anon_sym___clrcall] = ACTIONS(6465), + [anon_sym___stdcall] = ACTIONS(6465), + [anon_sym___fastcall] = ACTIONS(6465), + [anon_sym___thiscall] = ACTIONS(6465), + [anon_sym___vectorcall] = ACTIONS(6465), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6467), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -308906,87 +308538,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(1952)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_call_modifier] = STATE(8771), - [sym__abstract_declarator] = STATE(9399), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_abstract_function_declarator] = STATE(8596), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(10070), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(10070), - [sym_optional_parameter_declaration] = STATE(10070), - [sym_variadic_parameter_declaration] = STATE(10070), - [sym_abstract_reference_declarator] = STATE(8596), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6528), - [anon_sym_RPAREN] = ACTIONS(6530), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_AMP] = ACTIONS(6467), + [STATE(1949)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_call_modifier] = STATE(8767), + [sym__abstract_declarator] = STATE(9273), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_abstract_function_declarator] = STATE(8572), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(9890), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9890), + [sym_optional_parameter_declaration] = STATE(9890), + [sym_variadic_parameter_declaration] = STATE(9890), + [sym_abstract_reference_declarator] = STATE(8572), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6539), + [anon_sym_RPAREN] = ACTIONS(6541), + [anon_sym_LPAREN2] = ACTIONS(6455), + [anon_sym_STAR] = ACTIONS(6457), + [anon_sym_AMP_AMP] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(6461), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6471), - [anon_sym___clrcall] = ACTIONS(6471), - [anon_sym___stdcall] = ACTIONS(6471), - [anon_sym___fastcall] = ACTIONS(6471), - [anon_sym___thiscall] = ACTIONS(6471), - [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym___cdecl] = ACTIONS(6465), + [anon_sym___clrcall] = ACTIONS(6465), + [anon_sym___stdcall] = ACTIONS(6465), + [anon_sym___fastcall] = ACTIONS(6465), + [anon_sym___thiscall] = ACTIONS(6465), + [anon_sym___vectorcall] = ACTIONS(6465), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6467), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -309009,190 +308641,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(1953)] = { - [sym_attribute_specifier] = STATE(1984), - [sym_attribute_declaration] = STATE(3125), - [sym_type_qualifier] = STATE(2001), - [sym_alignas_qualifier] = STATE(2059), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2322), - [sym__function_attributes_start] = STATE(2264), - [sym__function_exception_specification] = STATE(2558), - [sym__function_attributes_end] = STATE(3880), - [sym__function_postfix] = STATE(3601), - [sym_trailing_return_type] = STATE(3074), - [sym_noexcept] = STATE(2558), - [sym_throw_specifier] = STATE(2558), - [sym_requires_clause] = STATE(3601), - [aux_sym_type_definition_repeat1] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(2001), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_RPAREN] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6483), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6486), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym_SEMI] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(6532), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(6479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6481), - [anon_sym_RBRACE] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6489), - [anon_sym_constexpr] = ACTIONS(6532), - [anon_sym_volatile] = ACTIONS(6532), - [anon_sym_restrict] = ACTIONS(6532), - [anon_sym___restrict__] = ACTIONS(6532), - [anon_sym__Atomic] = ACTIONS(6532), - [anon_sym__Noreturn] = ACTIONS(6532), - [anon_sym_noreturn] = ACTIONS(6532), - [anon_sym__Nonnull] = ACTIONS(6532), - [anon_sym_mutable] = ACTIONS(6532), - [anon_sym_constinit] = ACTIONS(6532), - [anon_sym_consteval] = ACTIONS(6532), - [anon_sym_alignas] = ACTIONS(6536), - [anon_sym__Alignas] = ACTIONS(6536), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6481), - [anon_sym_or_eq] = ACTIONS(6481), - [anon_sym_xor_eq] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6540), + [STATE(1950)] = { + [sym_attribute_specifier] = STATE(1978), + [sym_attribute_declaration] = STATE(3164), + [sym_type_qualifier] = STATE(2010), + [sym_alignas_qualifier] = STATE(2060), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2300), + [sym__function_attributes_start] = STATE(2281), + [sym__function_exception_specification] = STATE(2565), + [sym__function_attributes_end] = STATE(3826), + [sym__function_postfix] = STATE(3613), + [sym_trailing_return_type] = STATE(2944), + [sym_noexcept] = STATE(2565), + [sym_throw_specifier] = STATE(2565), + [sym_requires_clause] = STATE(3613), + [aux_sym_type_definition_repeat1] = STATE(1978), + [aux_sym__type_definition_type_repeat1] = STATE(2010), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_RPAREN] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6473), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6476), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym_SEMI] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(6514), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6471), + [anon_sym_RBRACE] = ACTIONS(6471), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6479), + [anon_sym_constexpr] = ACTIONS(6514), + [anon_sym_volatile] = ACTIONS(6514), + [anon_sym_restrict] = ACTIONS(6514), + [anon_sym___restrict__] = ACTIONS(6514), + [anon_sym__Atomic] = ACTIONS(6514), + [anon_sym__Noreturn] = ACTIONS(6514), + [anon_sym_noreturn] = ACTIONS(6514), + [anon_sym__Nonnull] = ACTIONS(6514), + [anon_sym_mutable] = ACTIONS(6514), + [anon_sym_constinit] = ACTIONS(6514), + [anon_sym_consteval] = ACTIONS(6514), + [anon_sym_alignas] = ACTIONS(6518), + [anon_sym__Alignas] = ACTIONS(6518), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6471), + [anon_sym_or_eq] = ACTIONS(6471), + [anon_sym_xor_eq] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6522), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(6543), [anon_sym_override] = ACTIONS(6543), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(6550), - [anon_sym_COLON_RBRACK] = ACTIONS(6481), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(6545), + [anon_sym_COLON_RBRACK] = ACTIONS(6471), }, - [STATE(1954)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_call_modifier] = STATE(8801), - [sym__abstract_declarator] = STATE(9390), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_abstract_function_declarator] = STATE(8596), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(9733), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9733), - [sym_optional_parameter_declaration] = STATE(9733), - [sym_variadic_parameter_declaration] = STATE(9733), - [sym_abstract_reference_declarator] = STATE(8596), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6553), - [anon_sym_RPAREN] = ACTIONS(6555), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_AMP] = ACTIONS(6467), + [STATE(1951)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_call_modifier] = STATE(8797), + [sym__abstract_declarator] = STATE(9361), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_abstract_function_declarator] = STATE(8572), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(9683), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9683), + [sym_optional_parameter_declaration] = STATE(9683), + [sym_variadic_parameter_declaration] = STATE(9683), + [sym_abstract_reference_declarator] = STATE(8572), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_RPAREN] = ACTIONS(5657), + [anon_sym_LPAREN2] = ACTIONS(6455), + [anon_sym_STAR] = ACTIONS(6457), + [anon_sym_AMP_AMP] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(6461), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6471), - [anon_sym___clrcall] = ACTIONS(6471), - [anon_sym___stdcall] = ACTIONS(6471), - [anon_sym___fastcall] = ACTIONS(6471), - [anon_sym___thiscall] = ACTIONS(6471), - [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym___cdecl] = ACTIONS(6465), + [anon_sym___clrcall] = ACTIONS(6465), + [anon_sym___stdcall] = ACTIONS(6465), + [anon_sym___fastcall] = ACTIONS(6465), + [anon_sym___thiscall] = ACTIONS(6465), + [anon_sym___vectorcall] = ACTIONS(6465), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6467), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -309215,87 +308847,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(1955)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_call_modifier] = STATE(8825), - [sym__abstract_declarator] = STATE(9305), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_abstract_function_declarator] = STATE(8596), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(9791), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9791), - [sym_optional_parameter_declaration] = STATE(9791), - [sym_variadic_parameter_declaration] = STATE(9791), - [sym_abstract_reference_declarator] = STATE(8596), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_AMP] = ACTIONS(6467), + [STATE(1952)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_call_modifier] = STATE(8803), + [sym__abstract_declarator] = STATE(9393), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_abstract_function_declarator] = STATE(8572), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(9922), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9922), + [sym_optional_parameter_declaration] = STATE(9922), + [sym_variadic_parameter_declaration] = STATE(9922), + [sym_abstract_reference_declarator] = STATE(8572), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6547), + [anon_sym_RPAREN] = ACTIONS(6549), + [anon_sym_LPAREN2] = ACTIONS(6455), + [anon_sym_STAR] = ACTIONS(6457), + [anon_sym_AMP_AMP] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(6461), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6471), - [anon_sym___clrcall] = ACTIONS(6471), - [anon_sym___stdcall] = ACTIONS(6471), - [anon_sym___fastcall] = ACTIONS(6471), - [anon_sym___thiscall] = ACTIONS(6471), - [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym___cdecl] = ACTIONS(6465), + [anon_sym___clrcall] = ACTIONS(6465), + [anon_sym___stdcall] = ACTIONS(6465), + [anon_sym___fastcall] = ACTIONS(6465), + [anon_sym___thiscall] = ACTIONS(6465), + [anon_sym___vectorcall] = ACTIONS(6465), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6467), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -309318,87 +308950,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(1956)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_ms_call_modifier] = STATE(8809), - [sym__abstract_declarator] = STATE(9375), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_abstract_function_declarator] = STATE(8596), - [sym_abstract_array_declarator] = STATE(8596), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_list] = STATE(4706), - [sym_parameter_declaration] = STATE(9768), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9768), - [sym_optional_parameter_declaration] = STATE(9768), - [sym_variadic_parameter_declaration] = STATE(9768), - [sym_abstract_reference_declarator] = STATE(8596), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6557), - [anon_sym_RPAREN] = ACTIONS(6559), - [anon_sym_LPAREN2] = ACTIONS(6461), - [anon_sym_STAR] = ACTIONS(6463), - [anon_sym_AMP_AMP] = ACTIONS(6465), - [anon_sym_AMP] = ACTIONS(6467), + [STATE(1953)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_ms_call_modifier] = STATE(8778), + [sym__abstract_declarator] = STATE(9332), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_abstract_function_declarator] = STATE(8572), + [sym_abstract_array_declarator] = STATE(8572), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_list] = STATE(4676), + [sym_parameter_declaration] = STATE(9987), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9987), + [sym_optional_parameter_declaration] = STATE(9987), + [sym_variadic_parameter_declaration] = STATE(9987), + [sym_abstract_reference_declarator] = STATE(8572), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6551), + [anon_sym_RPAREN] = ACTIONS(6553), + [anon_sym_LPAREN2] = ACTIONS(6455), + [anon_sym_STAR] = ACTIONS(6457), + [anon_sym_AMP_AMP] = ACTIONS(6459), + [anon_sym_AMP] = ACTIONS(6461), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), - [anon_sym___cdecl] = ACTIONS(6471), - [anon_sym___clrcall] = ACTIONS(6471), - [anon_sym___stdcall] = ACTIONS(6471), - [anon_sym___fastcall] = ACTIONS(6471), - [anon_sym___thiscall] = ACTIONS(6471), - [anon_sym___vectorcall] = ACTIONS(6471), + [anon_sym___cdecl] = ACTIONS(6465), + [anon_sym___clrcall] = ACTIONS(6465), + [anon_sym___stdcall] = ACTIONS(6465), + [anon_sym___fastcall] = ACTIONS(6465), + [anon_sym___thiscall] = ACTIONS(6465), + [anon_sym___vectorcall] = ACTIONS(6465), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), [anon_sym_short] = ACTIONS(59), - [anon_sym_LBRACK] = ACTIONS(6473), + [anon_sym_LBRACK] = ACTIONS(6467), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -309421,387 +309053,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(1957)] = { - [sym_attribute_specifier] = STATE(1984), - [sym_attribute_declaration] = STATE(3125), - [sym_type_qualifier] = STATE(2001), - [sym_alignas_qualifier] = STATE(2059), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), + [STATE(1954)] = { + [sym_attribute_specifier] = STATE(1978), + [sym_attribute_declaration] = STATE(3164), + [sym_type_qualifier] = STATE(2010), + [sym_alignas_qualifier] = STATE(2060), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), [sym_ref_qualifier] = STATE(2321), - [sym__function_attributes_start] = STATE(2257), - [sym__function_exception_specification] = STATE(2529), - [sym__function_attributes_end] = STATE(3883), - [sym__function_postfix] = STATE(3601), - [sym_trailing_return_type] = STATE(2994), - [sym_noexcept] = STATE(2529), - [sym_throw_specifier] = STATE(2529), - [sym_requires_clause] = STATE(3601), - [aux_sym_type_definition_repeat1] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(2001), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_RPAREN] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6483), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6486), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym_SEMI] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(6532), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(6479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6481), - [anon_sym_RBRACE] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6489), - [anon_sym_constexpr] = ACTIONS(6532), - [anon_sym_volatile] = ACTIONS(6532), - [anon_sym_restrict] = ACTIONS(6532), - [anon_sym___restrict__] = ACTIONS(6532), - [anon_sym__Atomic] = ACTIONS(6532), - [anon_sym__Noreturn] = ACTIONS(6532), - [anon_sym_noreturn] = ACTIONS(6532), - [anon_sym__Nonnull] = ACTIONS(6532), - [anon_sym_mutable] = ACTIONS(6532), - [anon_sym_constinit] = ACTIONS(6532), - [anon_sym_consteval] = ACTIONS(6532), - [anon_sym_alignas] = ACTIONS(6536), - [anon_sym__Alignas] = ACTIONS(6536), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6481), - [anon_sym_or_eq] = ACTIONS(6481), - [anon_sym_xor_eq] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6540), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(6563), - [anon_sym_COLON_RBRACK] = ACTIONS(6481), - }, - [STATE(1958)] = { - [sym_template_argument_list] = STATE(1963), - [sym_identifier] = ACTIONS(6565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), - [anon_sym_COMMA] = ACTIONS(6567), - [anon_sym_RPAREN] = ACTIONS(6567), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_TILDE] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6574), - [anon_sym_PLUS] = ACTIONS(6574), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6574), - [anon_sym_PIPE_PIPE] = ACTIONS(6567), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6574), - [anon_sym_CARET] = ACTIONS(6574), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6567), - [anon_sym_BANG_EQ] = ACTIONS(6567), - [anon_sym_GT] = ACTIONS(6574), - [anon_sym_GT_EQ] = ACTIONS(6567), - [anon_sym_LT_EQ] = ACTIONS(6574), - [anon_sym_LT] = ACTIONS(6579), - [anon_sym_LT_LT] = ACTIONS(6574), - [anon_sym_GT_GT] = ACTIONS(6574), - [anon_sym_SEMI] = ACTIONS(6567), - [anon_sym___extension__] = ACTIONS(6565), - [anon_sym_virtual] = ACTIONS(6565), - [anon_sym_extern] = ACTIONS(6565), - [anon_sym___attribute__] = ACTIONS(6565), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6572), - [anon_sym___declspec] = ACTIONS(6565), - [anon_sym___based] = ACTIONS(6565), - [anon_sym___cdecl] = ACTIONS(6565), - [anon_sym___clrcall] = ACTIONS(6565), - [anon_sym___stdcall] = ACTIONS(6565), - [anon_sym___fastcall] = ACTIONS(6565), - [anon_sym___thiscall] = ACTIONS(6565), - [anon_sym___vectorcall] = ACTIONS(6565), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_RBRACE] = ACTIONS(6567), - [anon_sym_LBRACK] = ACTIONS(6576), - [anon_sym_static] = ACTIONS(6565), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_register] = ACTIONS(6565), - [anon_sym_inline] = ACTIONS(6565), - [anon_sym___inline] = ACTIONS(6565), - [anon_sym___inline__] = ACTIONS(6565), - [anon_sym___forceinline] = ACTIONS(6565), - [anon_sym_thread_local] = ACTIONS(6565), - [anon_sym___thread] = ACTIONS(6565), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6565), - [anon_sym_volatile] = ACTIONS(6565), - [anon_sym_restrict] = ACTIONS(6565), - [anon_sym___restrict__] = ACTIONS(6565), - [anon_sym__Atomic] = ACTIONS(6565), - [anon_sym__Noreturn] = ACTIONS(6565), - [anon_sym_noreturn] = ACTIONS(6565), - [anon_sym__Nonnull] = ACTIONS(6565), - [anon_sym_mutable] = ACTIONS(6565), - [anon_sym_constinit] = ACTIONS(6565), - [anon_sym_consteval] = ACTIONS(6565), - [anon_sym_alignas] = ACTIONS(6565), - [anon_sym__Alignas] = ACTIONS(6565), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6567), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6574), - [anon_sym_or_eq] = ACTIONS(6574), - [anon_sym_xor_eq] = ACTIONS(6574), - [anon_sym_LT_EQ_GT] = ACTIONS(6567), - [anon_sym_or] = ACTIONS(6574), - [anon_sym_and] = ACTIONS(6574), - [anon_sym_bitor] = ACTIONS(6574), - [anon_sym_xor] = ACTIONS(6574), - [anon_sym_bitand] = ACTIONS(6574), - [anon_sym_not_eq] = ACTIONS(6574), - [anon_sym_DASH_DASH] = ACTIONS(6567), - [anon_sym_PLUS_PLUS] = ACTIONS(6567), - [anon_sym_DOT] = ACTIONS(6574), - [anon_sym_DOT_STAR] = ACTIONS(6567), - [anon_sym_DASH_GT] = ACTIONS(6567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6565), - [anon_sym_decltype] = ACTIONS(6565), - [anon_sym_template] = ACTIONS(6565), - [anon_sym_operator] = ACTIONS(6565), - [anon_sym_LBRACK_COLON] = ACTIONS(6572), + [sym__function_attributes_start] = STATE(2278), + [sym__function_exception_specification] = STATE(2548), + [sym__function_attributes_end] = STATE(3918), + [sym__function_postfix] = STATE(3613), + [sym_trailing_return_type] = STATE(2944), + [sym_noexcept] = STATE(2548), + [sym_throw_specifier] = STATE(2548), + [sym_requires_clause] = STATE(3613), + [aux_sym_type_definition_repeat1] = STATE(1978), + [aux_sym__type_definition_type_repeat1] = STATE(2010), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(6469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [aux_sym_preproc_if_token2] = ACTIONS(6471), + [aux_sym_preproc_else_token1] = ACTIONS(6471), + [aux_sym_preproc_elif_token1] = ACTIONS(6469), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6471), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6473), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6476), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(6479), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6479), + [anon_sym_constexpr] = ACTIONS(6479), + [anon_sym_volatile] = ACTIONS(6479), + [anon_sym_restrict] = ACTIONS(6479), + [anon_sym___restrict__] = ACTIONS(6479), + [anon_sym__Atomic] = ACTIONS(6479), + [anon_sym__Noreturn] = ACTIONS(6479), + [anon_sym_noreturn] = ACTIONS(6479), + [anon_sym__Nonnull] = ACTIONS(6479), + [anon_sym_mutable] = ACTIONS(6479), + [anon_sym_constinit] = ACTIONS(6479), + [anon_sym_consteval] = ACTIONS(6479), + [anon_sym_alignas] = ACTIONS(6485), + [anon_sym__Alignas] = ACTIONS(6485), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6469), + [anon_sym_or_eq] = ACTIONS(6469), + [anon_sym_xor_eq] = ACTIONS(6469), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6469), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6469), + [anon_sym_not_eq] = ACTIONS(6469), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6489), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_noexcept] = ACTIONS(6495), + [anon_sym_throw] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6557), }, - [STATE(1959)] = { - [sym_template_argument_list] = STATE(1973), - [sym_identifier] = ACTIONS(6565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), - [anon_sym_COMMA] = ACTIONS(6567), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_TILDE] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6574), - [anon_sym_PLUS] = ACTIONS(6574), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6574), - [anon_sym_PIPE_PIPE] = ACTIONS(6567), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6574), - [anon_sym_CARET] = ACTIONS(6574), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6567), - [anon_sym_BANG_EQ] = ACTIONS(6567), - [anon_sym_GT] = ACTIONS(6574), - [anon_sym_GT_EQ] = ACTIONS(6567), - [anon_sym_LT_EQ] = ACTIONS(6574), - [anon_sym_LT] = ACTIONS(6579), - [anon_sym_LT_LT] = ACTIONS(6574), - [anon_sym_GT_GT] = ACTIONS(6574), - [anon_sym_SEMI] = ACTIONS(6569), - [anon_sym___extension__] = ACTIONS(6565), - [anon_sym_virtual] = ACTIONS(6565), - [anon_sym_extern] = ACTIONS(6565), - [anon_sym___attribute__] = ACTIONS(6565), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6569), - [anon_sym___declspec] = ACTIONS(6565), - [anon_sym___based] = ACTIONS(6565), - [anon_sym___cdecl] = ACTIONS(6565), - [anon_sym___clrcall] = ACTIONS(6565), - [anon_sym___stdcall] = ACTIONS(6565), - [anon_sym___fastcall] = ACTIONS(6565), - [anon_sym___thiscall] = ACTIONS(6565), - [anon_sym___vectorcall] = ACTIONS(6565), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_RBRACE] = ACTIONS(6567), - [anon_sym_LBRACK] = ACTIONS(6576), - [anon_sym_static] = ACTIONS(6565), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_register] = ACTIONS(6565), - [anon_sym_inline] = ACTIONS(6565), - [anon_sym___inline] = ACTIONS(6565), - [anon_sym___inline__] = ACTIONS(6565), - [anon_sym___forceinline] = ACTIONS(6565), - [anon_sym_thread_local] = ACTIONS(6565), - [anon_sym___thread] = ACTIONS(6565), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6565), - [anon_sym_volatile] = ACTIONS(6565), - [anon_sym_restrict] = ACTIONS(6565), - [anon_sym___restrict__] = ACTIONS(6565), - [anon_sym__Atomic] = ACTIONS(6565), - [anon_sym__Noreturn] = ACTIONS(6565), - [anon_sym_noreturn] = ACTIONS(6565), - [anon_sym__Nonnull] = ACTIONS(6565), - [anon_sym_mutable] = ACTIONS(6565), - [anon_sym_constinit] = ACTIONS(6565), - [anon_sym_consteval] = ACTIONS(6565), - [anon_sym_alignas] = ACTIONS(6565), - [anon_sym__Alignas] = ACTIONS(6565), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6567), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6574), - [anon_sym_or_eq] = ACTIONS(6574), - [anon_sym_xor_eq] = ACTIONS(6574), - [anon_sym_LT_EQ_GT] = ACTIONS(6567), - [anon_sym_or] = ACTIONS(6574), - [anon_sym_and] = ACTIONS(6574), - [anon_sym_bitor] = ACTIONS(6574), - [anon_sym_xor] = ACTIONS(6574), - [anon_sym_bitand] = ACTIONS(6574), - [anon_sym_not_eq] = ACTIONS(6574), - [anon_sym_DASH_DASH] = ACTIONS(6567), - [anon_sym_PLUS_PLUS] = ACTIONS(6567), - [anon_sym_DOT] = ACTIONS(6574), - [anon_sym_DOT_STAR] = ACTIONS(6567), - [anon_sym_DASH_GT] = ACTIONS(6567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6565), - [anon_sym_decltype] = ACTIONS(6565), - [anon_sym_template] = ACTIONS(6565), - [anon_sym_operator] = ACTIONS(6565), - [anon_sym_LBRACK_COLON] = ACTIONS(6572), + [STATE(1955)] = { + [sym_template_argument_list] = STATE(1969), + [sym_identifier] = ACTIONS(6559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6561), + [anon_sym_COMMA] = ACTIONS(6561), + [anon_sym_RPAREN] = ACTIONS(6561), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_TILDE] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6568), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_PIPE_PIPE] = ACTIONS(6561), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6568), + [anon_sym_CARET] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6561), + [anon_sym_BANG_EQ] = ACTIONS(6561), + [anon_sym_GT] = ACTIONS(6568), + [anon_sym_GT_EQ] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(6573), + [anon_sym_LT_LT] = ACTIONS(6568), + [anon_sym_GT_GT] = ACTIONS(6568), + [anon_sym_SEMI] = ACTIONS(6561), + [anon_sym___extension__] = ACTIONS(6559), + [anon_sym_virtual] = ACTIONS(6559), + [anon_sym_extern] = ACTIONS(6559), + [anon_sym___attribute__] = ACTIONS(6559), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6566), + [anon_sym___declspec] = ACTIONS(6559), + [anon_sym___based] = ACTIONS(6559), + [anon_sym___cdecl] = ACTIONS(6559), + [anon_sym___clrcall] = ACTIONS(6559), + [anon_sym___stdcall] = ACTIONS(6559), + [anon_sym___fastcall] = ACTIONS(6559), + [anon_sym___thiscall] = ACTIONS(6559), + [anon_sym___vectorcall] = ACTIONS(6559), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6570), + [anon_sym_static] = ACTIONS(6559), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_register] = ACTIONS(6559), + [anon_sym_inline] = ACTIONS(6559), + [anon_sym___inline] = ACTIONS(6559), + [anon_sym___inline__] = ACTIONS(6559), + [anon_sym___forceinline] = ACTIONS(6559), + [anon_sym_thread_local] = ACTIONS(6559), + [anon_sym___thread] = ACTIONS(6559), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6559), + [anon_sym_volatile] = ACTIONS(6559), + [anon_sym_restrict] = ACTIONS(6559), + [anon_sym___restrict__] = ACTIONS(6559), + [anon_sym__Atomic] = ACTIONS(6559), + [anon_sym__Noreturn] = ACTIONS(6559), + [anon_sym_noreturn] = ACTIONS(6559), + [anon_sym__Nonnull] = ACTIONS(6559), + [anon_sym_mutable] = ACTIONS(6559), + [anon_sym_constinit] = ACTIONS(6559), + [anon_sym_consteval] = ACTIONS(6559), + [anon_sym_alignas] = ACTIONS(6559), + [anon_sym__Alignas] = ACTIONS(6559), + [anon_sym_QMARK] = ACTIONS(6561), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6561), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6568), + [anon_sym_or_eq] = ACTIONS(6568), + [anon_sym_xor_eq] = ACTIONS(6568), + [anon_sym_LT_EQ_GT] = ACTIONS(6561), + [anon_sym_or] = ACTIONS(6568), + [anon_sym_and] = ACTIONS(6568), + [anon_sym_bitor] = ACTIONS(6568), + [anon_sym_xor] = ACTIONS(6568), + [anon_sym_bitand] = ACTIONS(6568), + [anon_sym_not_eq] = ACTIONS(6568), + [anon_sym_DASH_DASH] = ACTIONS(6561), + [anon_sym_PLUS_PLUS] = ACTIONS(6561), + [anon_sym_DOT] = ACTIONS(6568), + [anon_sym_DOT_STAR] = ACTIONS(6561), + [anon_sym_DASH_GT] = ACTIONS(6561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6559), + [anon_sym_decltype] = ACTIONS(6559), + [anon_sym_template] = ACTIONS(6559), + [anon_sym_operator] = ACTIONS(6559), + [anon_sym_LBRACK_COLON] = ACTIONS(6566), }, - [STATE(1960)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(7526), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9047), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_parameter_list] = STATE(1095), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(6284), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7966), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(2650), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6582), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1956)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(7530), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9019), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_parameter_list] = STATE(1098), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(6261), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7914), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(2618), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6576), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(6584), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(6578), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -309824,84 +309355,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_for] = ACTIONS(6588), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_for] = ACTIONS(6582), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1961)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(7541), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9010), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_parameter_list] = STATE(1097), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(6284), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7966), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(2650), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6582), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1957)] = { + [sym_template_argument_list] = STATE(1971), + [sym_identifier] = ACTIONS(6559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6561), + [anon_sym_COMMA] = ACTIONS(6561), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_TILDE] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6568), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_PIPE_PIPE] = ACTIONS(6561), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6568), + [anon_sym_CARET] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6561), + [anon_sym_BANG_EQ] = ACTIONS(6561), + [anon_sym_GT] = ACTIONS(6568), + [anon_sym_GT_EQ] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(6573), + [anon_sym_LT_LT] = ACTIONS(6568), + [anon_sym_GT_GT] = ACTIONS(6568), + [anon_sym_SEMI] = ACTIONS(6563), + [anon_sym___extension__] = ACTIONS(6559), + [anon_sym_virtual] = ACTIONS(6559), + [anon_sym_extern] = ACTIONS(6559), + [anon_sym___attribute__] = ACTIONS(6559), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6563), + [anon_sym___declspec] = ACTIONS(6559), + [anon_sym___based] = ACTIONS(6559), + [anon_sym___cdecl] = ACTIONS(6559), + [anon_sym___clrcall] = ACTIONS(6559), + [anon_sym___stdcall] = ACTIONS(6559), + [anon_sym___fastcall] = ACTIONS(6559), + [anon_sym___thiscall] = ACTIONS(6559), + [anon_sym___vectorcall] = ACTIONS(6559), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_RBRACE] = ACTIONS(6561), + [anon_sym_LBRACK] = ACTIONS(6570), + [anon_sym_static] = ACTIONS(6559), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_register] = ACTIONS(6559), + [anon_sym_inline] = ACTIONS(6559), + [anon_sym___inline] = ACTIONS(6559), + [anon_sym___inline__] = ACTIONS(6559), + [anon_sym___forceinline] = ACTIONS(6559), + [anon_sym_thread_local] = ACTIONS(6559), + [anon_sym___thread] = ACTIONS(6559), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6559), + [anon_sym_volatile] = ACTIONS(6559), + [anon_sym_restrict] = ACTIONS(6559), + [anon_sym___restrict__] = ACTIONS(6559), + [anon_sym__Atomic] = ACTIONS(6559), + [anon_sym__Noreturn] = ACTIONS(6559), + [anon_sym_noreturn] = ACTIONS(6559), + [anon_sym__Nonnull] = ACTIONS(6559), + [anon_sym_mutable] = ACTIONS(6559), + [anon_sym_constinit] = ACTIONS(6559), + [anon_sym_consteval] = ACTIONS(6559), + [anon_sym_alignas] = ACTIONS(6559), + [anon_sym__Alignas] = ACTIONS(6559), + [anon_sym_QMARK] = ACTIONS(6561), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6561), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6568), + [anon_sym_or_eq] = ACTIONS(6568), + [anon_sym_xor_eq] = ACTIONS(6568), + [anon_sym_LT_EQ_GT] = ACTIONS(6561), + [anon_sym_or] = ACTIONS(6568), + [anon_sym_and] = ACTIONS(6568), + [anon_sym_bitor] = ACTIONS(6568), + [anon_sym_xor] = ACTIONS(6568), + [anon_sym_bitand] = ACTIONS(6568), + [anon_sym_not_eq] = ACTIONS(6568), + [anon_sym_DASH_DASH] = ACTIONS(6561), + [anon_sym_PLUS_PLUS] = ACTIONS(6561), + [anon_sym_DOT] = ACTIONS(6568), + [anon_sym_DOT_STAR] = ACTIONS(6561), + [anon_sym_DASH_GT] = ACTIONS(6561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6559), + [anon_sym_decltype] = ACTIONS(6559), + [anon_sym_template] = ACTIONS(6559), + [anon_sym_operator] = ACTIONS(6559), + [anon_sym_LBRACK_COLON] = ACTIONS(6566), + }, + [STATE(1958)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(7515), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9020), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_parameter_list] = STATE(1096), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(6261), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7914), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(2618), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6576), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(6584), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(6578), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -309924,84 +309555,284 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_for] = ACTIONS(6590), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_for] = ACTIONS(6584), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1962)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(7563), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9050), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_parameter_list] = STATE(1094), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(6284), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7966), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(2650), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6582), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1959)] = { + [sym_identifier] = ACTIONS(6586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_RPAREN] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_TILDE] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6586), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6586), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6586), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6586), + [anon_sym_GT_GT] = ACTIONS(6586), + [anon_sym_SEMI] = ACTIONS(6588), + [anon_sym___extension__] = ACTIONS(6586), + [anon_sym_virtual] = ACTIONS(6586), + [anon_sym_extern] = ACTIONS(6586), + [anon_sym___attribute__] = ACTIONS(6586), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6588), + [anon_sym___declspec] = ACTIONS(6586), + [anon_sym___based] = ACTIONS(6586), + [anon_sym___cdecl] = ACTIONS(6586), + [anon_sym___clrcall] = ACTIONS(6586), + [anon_sym___stdcall] = ACTIONS(6586), + [anon_sym___fastcall] = ACTIONS(6586), + [anon_sym___thiscall] = ACTIONS(6586), + [anon_sym___vectorcall] = ACTIONS(6586), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_RBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6586), + [anon_sym_static] = ACTIONS(6586), + [anon_sym_EQ] = ACTIONS(6586), + [anon_sym_register] = ACTIONS(6586), + [anon_sym_inline] = ACTIONS(6586), + [anon_sym___inline] = ACTIONS(6586), + [anon_sym___inline__] = ACTIONS(6586), + [anon_sym___forceinline] = ACTIONS(6586), + [anon_sym_thread_local] = ACTIONS(6586), + [anon_sym___thread] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6586), + [anon_sym_volatile] = ACTIONS(6586), + [anon_sym_restrict] = ACTIONS(6586), + [anon_sym___restrict__] = ACTIONS(6586), + [anon_sym__Atomic] = ACTIONS(6586), + [anon_sym__Noreturn] = ACTIONS(6586), + [anon_sym_noreturn] = ACTIONS(6586), + [anon_sym__Nonnull] = ACTIONS(6586), + [anon_sym_mutable] = ACTIONS(6586), + [anon_sym_constinit] = ACTIONS(6586), + [anon_sym_consteval] = ACTIONS(6586), + [anon_sym_alignas] = ACTIONS(6586), + [anon_sym__Alignas] = ACTIONS(6586), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_STAR_EQ] = ACTIONS(6588), + [anon_sym_SLASH_EQ] = ACTIONS(6588), + [anon_sym_PERCENT_EQ] = ACTIONS(6588), + [anon_sym_PLUS_EQ] = ACTIONS(6588), + [anon_sym_DASH_EQ] = ACTIONS(6588), + [anon_sym_LT_LT_EQ] = ACTIONS(6588), + [anon_sym_GT_GT_EQ] = ACTIONS(6588), + [anon_sym_AMP_EQ] = ACTIONS(6588), + [anon_sym_CARET_EQ] = ACTIONS(6588), + [anon_sym_PIPE_EQ] = ACTIONS(6588), + [anon_sym_and_eq] = ACTIONS(6586), + [anon_sym_or_eq] = ACTIONS(6586), + [anon_sym_xor_eq] = ACTIONS(6586), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6586), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6586), + [anon_sym_not_eq] = ACTIONS(6586), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6586), + [anon_sym_decltype] = ACTIONS(6586), + [anon_sym_template] = ACTIONS(6586), + [anon_sym_operator] = ACTIONS(6586), + [anon_sym_LBRACK_COLON] = ACTIONS(6588), + }, + [STATE(1960)] = { + [sym_identifier] = ACTIONS(6590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_RPAREN] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6590), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6590), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6590), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6590), + [anon_sym_GT_GT] = ACTIONS(6590), + [anon_sym_SEMI] = ACTIONS(6592), + [anon_sym___extension__] = ACTIONS(6590), + [anon_sym_virtual] = ACTIONS(6590), + [anon_sym_extern] = ACTIONS(6590), + [anon_sym___attribute__] = ACTIONS(6590), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6592), + [anon_sym___declspec] = ACTIONS(6590), + [anon_sym___based] = ACTIONS(6590), + [anon_sym___cdecl] = ACTIONS(6590), + [anon_sym___clrcall] = ACTIONS(6590), + [anon_sym___stdcall] = ACTIONS(6590), + [anon_sym___fastcall] = ACTIONS(6590), + [anon_sym___thiscall] = ACTIONS(6590), + [anon_sym___vectorcall] = ACTIONS(6590), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_RBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6590), + [anon_sym_static] = ACTIONS(6590), + [anon_sym_EQ] = ACTIONS(6590), + [anon_sym_register] = ACTIONS(6590), + [anon_sym_inline] = ACTIONS(6590), + [anon_sym___inline] = ACTIONS(6590), + [anon_sym___inline__] = ACTIONS(6590), + [anon_sym___forceinline] = ACTIONS(6590), + [anon_sym_thread_local] = ACTIONS(6590), + [anon_sym___thread] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6590), + [anon_sym_volatile] = ACTIONS(6590), + [anon_sym_restrict] = ACTIONS(6590), + [anon_sym___restrict__] = ACTIONS(6590), + [anon_sym__Atomic] = ACTIONS(6590), + [anon_sym__Noreturn] = ACTIONS(6590), + [anon_sym_noreturn] = ACTIONS(6590), + [anon_sym__Nonnull] = ACTIONS(6590), + [anon_sym_mutable] = ACTIONS(6590), + [anon_sym_constinit] = ACTIONS(6590), + [anon_sym_consteval] = ACTIONS(6590), + [anon_sym_alignas] = ACTIONS(6590), + [anon_sym__Alignas] = ACTIONS(6590), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_STAR_EQ] = ACTIONS(6592), + [anon_sym_SLASH_EQ] = ACTIONS(6592), + [anon_sym_PERCENT_EQ] = ACTIONS(6592), + [anon_sym_PLUS_EQ] = ACTIONS(6592), + [anon_sym_DASH_EQ] = ACTIONS(6592), + [anon_sym_LT_LT_EQ] = ACTIONS(6592), + [anon_sym_GT_GT_EQ] = ACTIONS(6592), + [anon_sym_AMP_EQ] = ACTIONS(6592), + [anon_sym_CARET_EQ] = ACTIONS(6592), + [anon_sym_PIPE_EQ] = ACTIONS(6592), + [anon_sym_and_eq] = ACTIONS(6590), + [anon_sym_or_eq] = ACTIONS(6590), + [anon_sym_xor_eq] = ACTIONS(6590), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6590), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6590), + [anon_sym_not_eq] = ACTIONS(6590), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6590), + [anon_sym_decltype] = ACTIONS(6590), + [anon_sym_template] = ACTIONS(6590), + [anon_sym_operator] = ACTIONS(6590), + [anon_sym_LBRACK_COLON] = ACTIONS(6592), + }, + [STATE(1961)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(7520), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9006), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_parameter_list] = STATE(1093), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(6261), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7914), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(2618), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6576), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(6584), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(6578), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -310024,574 +309855,669 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_for] = ACTIONS(6592), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_for] = ACTIONS(6594), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1963)] = { - [sym_identifier] = ACTIONS(6594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), - [anon_sym_COMMA] = ACTIONS(6596), - [anon_sym_RPAREN] = ACTIONS(6596), + [STATE(1962)] = { + [sym_identifier] = ACTIONS(6596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_TILDE] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6603), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_TILDE] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6596), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6603), - [anon_sym_GT_GT] = ACTIONS(6603), - [anon_sym_SEMI] = ACTIONS(6596), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym_virtual] = ACTIONS(6594), - [anon_sym_extern] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), - [anon_sym___declspec] = ACTIONS(6594), - [anon_sym___based] = ACTIONS(6594), - [anon_sym___cdecl] = ACTIONS(6594), - [anon_sym___clrcall] = ACTIONS(6594), - [anon_sym___stdcall] = ACTIONS(6594), - [anon_sym___fastcall] = ACTIONS(6594), - [anon_sym___thiscall] = ACTIONS(6594), - [anon_sym___vectorcall] = ACTIONS(6594), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_RBRACE] = ACTIONS(6596), - [anon_sym_LBRACK] = ACTIONS(6605), - [anon_sym_static] = ACTIONS(6594), - [anon_sym_EQ] = ACTIONS(6603), - [anon_sym_register] = ACTIONS(6594), - [anon_sym_inline] = ACTIONS(6594), - [anon_sym___inline] = ACTIONS(6594), - [anon_sym___inline__] = ACTIONS(6594), - [anon_sym___forceinline] = ACTIONS(6594), - [anon_sym_thread_local] = ACTIONS(6594), - [anon_sym___thread] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6603), - [anon_sym_or_eq] = ACTIONS(6603), - [anon_sym_xor_eq] = ACTIONS(6603), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6603), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6603), - [anon_sym_not_eq] = ACTIONS(6603), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6596), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym_SEMI] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6596), + [anon_sym_virtual] = ACTIONS(6596), + [anon_sym_extern] = ACTIONS(6596), + [anon_sym___attribute__] = ACTIONS(6596), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6598), + [anon_sym___declspec] = ACTIONS(6596), + [anon_sym___based] = ACTIONS(6596), + [anon_sym___cdecl] = ACTIONS(6596), + [anon_sym___clrcall] = ACTIONS(6596), + [anon_sym___stdcall] = ACTIONS(6596), + [anon_sym___fastcall] = ACTIONS(6596), + [anon_sym___thiscall] = ACTIONS(6596), + [anon_sym___vectorcall] = ACTIONS(6596), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_RBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6596), + [anon_sym_static] = ACTIONS(6596), + [anon_sym_EQ] = ACTIONS(6596), + [anon_sym_register] = ACTIONS(6596), + [anon_sym_inline] = ACTIONS(6596), + [anon_sym___inline] = ACTIONS(6596), + [anon_sym___inline__] = ACTIONS(6596), + [anon_sym___forceinline] = ACTIONS(6596), + [anon_sym_thread_local] = ACTIONS(6596), + [anon_sym___thread] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6596), + [anon_sym_volatile] = ACTIONS(6596), + [anon_sym_restrict] = ACTIONS(6596), + [anon_sym___restrict__] = ACTIONS(6596), + [anon_sym__Atomic] = ACTIONS(6596), + [anon_sym__Noreturn] = ACTIONS(6596), + [anon_sym_noreturn] = ACTIONS(6596), + [anon_sym__Nonnull] = ACTIONS(6596), + [anon_sym_mutable] = ACTIONS(6596), + [anon_sym_constinit] = ACTIONS(6596), + [anon_sym_consteval] = ACTIONS(6596), + [anon_sym_alignas] = ACTIONS(6596), + [anon_sym__Alignas] = ACTIONS(6596), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6596), + [anon_sym_or_eq] = ACTIONS(6596), + [anon_sym_xor_eq] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_template] = ACTIONS(6594), - [anon_sym_operator] = ACTIONS(6594), - [anon_sym_LBRACK_COLON] = ACTIONS(6601), + [sym_auto] = ACTIONS(6596), + [anon_sym_decltype] = ACTIONS(6596), + [anon_sym_template] = ACTIONS(6596), + [anon_sym_operator] = ACTIONS(6596), + [anon_sym_LBRACK_COLON] = ACTIONS(6598), }, - [STATE(1964)] = { - [sym_identifier] = ACTIONS(6608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_RPAREN] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_TILDE] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6608), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6608), - [anon_sym_GT_GT] = ACTIONS(6608), - [anon_sym_SEMI] = ACTIONS(6610), - [anon_sym___extension__] = ACTIONS(6608), - [anon_sym_virtual] = ACTIONS(6608), - [anon_sym_extern] = ACTIONS(6608), - [anon_sym___attribute__] = ACTIONS(6608), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), - [anon_sym___declspec] = ACTIONS(6608), - [anon_sym___based] = ACTIONS(6608), - [anon_sym___cdecl] = ACTIONS(6608), - [anon_sym___clrcall] = ACTIONS(6608), - [anon_sym___stdcall] = ACTIONS(6608), - [anon_sym___fastcall] = ACTIONS(6608), - [anon_sym___thiscall] = ACTIONS(6608), - [anon_sym___vectorcall] = ACTIONS(6608), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_RBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6608), - [anon_sym_static] = ACTIONS(6608), - [anon_sym_EQ] = ACTIONS(6608), - [anon_sym_register] = ACTIONS(6608), - [anon_sym_inline] = ACTIONS(6608), - [anon_sym___inline] = ACTIONS(6608), - [anon_sym___inline__] = ACTIONS(6608), - [anon_sym___forceinline] = ACTIONS(6608), - [anon_sym_thread_local] = ACTIONS(6608), - [anon_sym___thread] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6608), - [anon_sym_volatile] = ACTIONS(6608), - [anon_sym_restrict] = ACTIONS(6608), - [anon_sym___restrict__] = ACTIONS(6608), - [anon_sym__Atomic] = ACTIONS(6608), - [anon_sym__Noreturn] = ACTIONS(6608), - [anon_sym_noreturn] = ACTIONS(6608), - [anon_sym__Nonnull] = ACTIONS(6608), - [anon_sym_mutable] = ACTIONS(6608), - [anon_sym_constinit] = ACTIONS(6608), - [anon_sym_consteval] = ACTIONS(6608), - [anon_sym_alignas] = ACTIONS(6608), - [anon_sym__Alignas] = ACTIONS(6608), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_STAR_EQ] = ACTIONS(6610), - [anon_sym_SLASH_EQ] = ACTIONS(6610), - [anon_sym_PERCENT_EQ] = ACTIONS(6610), - [anon_sym_PLUS_EQ] = ACTIONS(6610), - [anon_sym_DASH_EQ] = ACTIONS(6610), - [anon_sym_LT_LT_EQ] = ACTIONS(6610), - [anon_sym_GT_GT_EQ] = ACTIONS(6610), - [anon_sym_AMP_EQ] = ACTIONS(6610), - [anon_sym_CARET_EQ] = ACTIONS(6610), - [anon_sym_PIPE_EQ] = ACTIONS(6610), - [anon_sym_and_eq] = ACTIONS(6608), - [anon_sym_or_eq] = ACTIONS(6608), - [anon_sym_xor_eq] = ACTIONS(6608), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6608), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6608), - [anon_sym_not_eq] = ACTIONS(6608), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6610), + [STATE(1963)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(7501), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9028), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_parameter_list] = STATE(1097), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(6261), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7914), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(2618), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6576), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(6578), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(3458), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_for] = ACTIONS(6600), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6608), - [anon_sym_decltype] = ACTIONS(6608), - [anon_sym_template] = ACTIONS(6608), - [anon_sym_operator] = ACTIONS(6608), - [anon_sym_LBRACK_COLON] = ACTIONS(6610), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(1964)] = { + [sym_identifier] = ACTIONS(6602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_TILDE] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym_SEMI] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(6602), + [anon_sym_virtual] = ACTIONS(6602), + [anon_sym_extern] = ACTIONS(6602), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6604), + [anon_sym___declspec] = ACTIONS(6602), + [anon_sym___based] = ACTIONS(6602), + [anon_sym___cdecl] = ACTIONS(6602), + [anon_sym___clrcall] = ACTIONS(6602), + [anon_sym___stdcall] = ACTIONS(6602), + [anon_sym___fastcall] = ACTIONS(6602), + [anon_sym___thiscall] = ACTIONS(6602), + [anon_sym___vectorcall] = ACTIONS(6602), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_RBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_static] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_register] = ACTIONS(6602), + [anon_sym_inline] = ACTIONS(6602), + [anon_sym___inline] = ACTIONS(6602), + [anon_sym___inline__] = ACTIONS(6602), + [anon_sym___forceinline] = ACTIONS(6602), + [anon_sym_thread_local] = ACTIONS(6602), + [anon_sym___thread] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_STAR_EQ] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [anon_sym_PERCENT_EQ] = ACTIONS(6604), + [anon_sym_PLUS_EQ] = ACTIONS(6604), + [anon_sym_DASH_EQ] = ACTIONS(6604), + [anon_sym_LT_LT_EQ] = ACTIONS(6604), + [anon_sym_GT_GT_EQ] = ACTIONS(6604), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6602), + [anon_sym_decltype] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(6602), + [anon_sym_operator] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(6604), }, [STATE(1965)] = { - [sym_identifier] = ACTIONS(6612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_RPAREN] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_TILDE] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6612), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6612), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6612), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6612), - [anon_sym_GT_GT] = ACTIONS(6612), - [anon_sym_SEMI] = ACTIONS(6614), - [anon_sym___extension__] = ACTIONS(6612), - [anon_sym_virtual] = ACTIONS(6612), - [anon_sym_extern] = ACTIONS(6612), - [anon_sym___attribute__] = ACTIONS(6612), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), - [anon_sym___declspec] = ACTIONS(6612), - [anon_sym___based] = ACTIONS(6612), - [anon_sym___cdecl] = ACTIONS(6612), - [anon_sym___clrcall] = ACTIONS(6612), - [anon_sym___stdcall] = ACTIONS(6612), - [anon_sym___fastcall] = ACTIONS(6612), - [anon_sym___thiscall] = ACTIONS(6612), - [anon_sym___vectorcall] = ACTIONS(6612), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_RBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6612), - [anon_sym_static] = ACTIONS(6612), - [anon_sym_EQ] = ACTIONS(6612), - [anon_sym_register] = ACTIONS(6612), - [anon_sym_inline] = ACTIONS(6612), - [anon_sym___inline] = ACTIONS(6612), - [anon_sym___inline__] = ACTIONS(6612), - [anon_sym___forceinline] = ACTIONS(6612), - [anon_sym_thread_local] = ACTIONS(6612), - [anon_sym___thread] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6612), - [anon_sym_volatile] = ACTIONS(6612), - [anon_sym_restrict] = ACTIONS(6612), - [anon_sym___restrict__] = ACTIONS(6612), - [anon_sym__Atomic] = ACTIONS(6612), - [anon_sym__Noreturn] = ACTIONS(6612), - [anon_sym_noreturn] = ACTIONS(6612), - [anon_sym__Nonnull] = ACTIONS(6612), - [anon_sym_mutable] = ACTIONS(6612), - [anon_sym_constinit] = ACTIONS(6612), - [anon_sym_consteval] = ACTIONS(6612), - [anon_sym_alignas] = ACTIONS(6612), - [anon_sym__Alignas] = ACTIONS(6612), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_STAR_EQ] = ACTIONS(6614), - [anon_sym_SLASH_EQ] = ACTIONS(6614), - [anon_sym_PERCENT_EQ] = ACTIONS(6614), - [anon_sym_PLUS_EQ] = ACTIONS(6614), - [anon_sym_DASH_EQ] = ACTIONS(6614), - [anon_sym_LT_LT_EQ] = ACTIONS(6614), - [anon_sym_GT_GT_EQ] = ACTIONS(6614), - [anon_sym_AMP_EQ] = ACTIONS(6614), - [anon_sym_CARET_EQ] = ACTIONS(6614), - [anon_sym_PIPE_EQ] = ACTIONS(6614), - [anon_sym_and_eq] = ACTIONS(6612), - [anon_sym_or_eq] = ACTIONS(6612), - [anon_sym_xor_eq] = ACTIONS(6612), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6612), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6612), - [anon_sym_not_eq] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_identifier] = ACTIONS(6606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_TILDE] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6606), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym_SEMI] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6606), + [anon_sym_virtual] = ACTIONS(6606), + [anon_sym_extern] = ACTIONS(6606), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6608), + [anon_sym___declspec] = ACTIONS(6606), + [anon_sym___based] = ACTIONS(6606), + [anon_sym___cdecl] = ACTIONS(6606), + [anon_sym___clrcall] = ACTIONS(6606), + [anon_sym___stdcall] = ACTIONS(6606), + [anon_sym___fastcall] = ACTIONS(6606), + [anon_sym___thiscall] = ACTIONS(6606), + [anon_sym___vectorcall] = ACTIONS(6606), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_RBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6606), + [anon_sym_static] = ACTIONS(6606), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_register] = ACTIONS(6606), + [anon_sym_inline] = ACTIONS(6606), + [anon_sym___inline] = ACTIONS(6606), + [anon_sym___inline__] = ACTIONS(6606), + [anon_sym___forceinline] = ACTIONS(6606), + [anon_sym_thread_local] = ACTIONS(6606), + [anon_sym___thread] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6606), + [anon_sym_volatile] = ACTIONS(6606), + [anon_sym_restrict] = ACTIONS(6606), + [anon_sym___restrict__] = ACTIONS(6606), + [anon_sym__Atomic] = ACTIONS(6606), + [anon_sym__Noreturn] = ACTIONS(6606), + [anon_sym_noreturn] = ACTIONS(6606), + [anon_sym__Nonnull] = ACTIONS(6606), + [anon_sym_mutable] = ACTIONS(6606), + [anon_sym_constinit] = ACTIONS(6606), + [anon_sym_consteval] = ACTIONS(6606), + [anon_sym_alignas] = ACTIONS(6606), + [anon_sym__Alignas] = ACTIONS(6606), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_STAR_EQ] = ACTIONS(6608), + [anon_sym_SLASH_EQ] = ACTIONS(6608), + [anon_sym_PERCENT_EQ] = ACTIONS(6608), + [anon_sym_PLUS_EQ] = ACTIONS(6608), + [anon_sym_DASH_EQ] = ACTIONS(6608), + [anon_sym_LT_LT_EQ] = ACTIONS(6608), + [anon_sym_GT_GT_EQ] = ACTIONS(6608), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_and_eq] = ACTIONS(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6606), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6606), + [anon_sym_not_eq] = ACTIONS(6606), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6612), - [anon_sym_decltype] = ACTIONS(6612), - [anon_sym_template] = ACTIONS(6612), - [anon_sym_operator] = ACTIONS(6612), - [anon_sym_LBRACK_COLON] = ACTIONS(6614), + [sym_auto] = ACTIONS(6606), + [anon_sym_decltype] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(6606), + [anon_sym_operator] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(6608), }, [STATE(1966)] = { - [sym_identifier] = ACTIONS(6616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_RPAREN] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_TILDE] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6616), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6616), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6616), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6616), - [anon_sym_GT_GT] = ACTIONS(6616), - [anon_sym_SEMI] = ACTIONS(6618), - [anon_sym___extension__] = ACTIONS(6616), - [anon_sym_virtual] = ACTIONS(6616), - [anon_sym_extern] = ACTIONS(6616), - [anon_sym___attribute__] = ACTIONS(6616), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), - [anon_sym___declspec] = ACTIONS(6616), - [anon_sym___based] = ACTIONS(6616), - [anon_sym___cdecl] = ACTIONS(6616), - [anon_sym___clrcall] = ACTIONS(6616), - [anon_sym___stdcall] = ACTIONS(6616), - [anon_sym___fastcall] = ACTIONS(6616), - [anon_sym___thiscall] = ACTIONS(6616), - [anon_sym___vectorcall] = ACTIONS(6616), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_RBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6616), - [anon_sym_static] = ACTIONS(6616), - [anon_sym_EQ] = ACTIONS(6616), - [anon_sym_register] = ACTIONS(6616), - [anon_sym_inline] = ACTIONS(6616), - [anon_sym___inline] = ACTIONS(6616), - [anon_sym___inline__] = ACTIONS(6616), - [anon_sym___forceinline] = ACTIONS(6616), - [anon_sym_thread_local] = ACTIONS(6616), - [anon_sym___thread] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6616), - [anon_sym_volatile] = ACTIONS(6616), - [anon_sym_restrict] = ACTIONS(6616), - [anon_sym___restrict__] = ACTIONS(6616), - [anon_sym__Atomic] = ACTIONS(6616), - [anon_sym__Noreturn] = ACTIONS(6616), - [anon_sym_noreturn] = ACTIONS(6616), - [anon_sym__Nonnull] = ACTIONS(6616), - [anon_sym_mutable] = ACTIONS(6616), - [anon_sym_constinit] = ACTIONS(6616), - [anon_sym_consteval] = ACTIONS(6616), - [anon_sym_alignas] = ACTIONS(6616), - [anon_sym__Alignas] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_STAR_EQ] = ACTIONS(6618), - [anon_sym_SLASH_EQ] = ACTIONS(6618), - [anon_sym_PERCENT_EQ] = ACTIONS(6618), - [anon_sym_PLUS_EQ] = ACTIONS(6618), - [anon_sym_DASH_EQ] = ACTIONS(6618), - [anon_sym_LT_LT_EQ] = ACTIONS(6618), - [anon_sym_GT_GT_EQ] = ACTIONS(6618), - [anon_sym_AMP_EQ] = ACTIONS(6618), - [anon_sym_CARET_EQ] = ACTIONS(6618), - [anon_sym_PIPE_EQ] = ACTIONS(6618), - [anon_sym_and_eq] = ACTIONS(6616), - [anon_sym_or_eq] = ACTIONS(6616), - [anon_sym_xor_eq] = ACTIONS(6616), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6616), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6616), - [anon_sym_not_eq] = ACTIONS(6616), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6618), + [sym_identifier] = ACTIONS(6610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_TILDE] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym_SEMI] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym_virtual] = ACTIONS(6610), + [anon_sym_extern] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6612), + [anon_sym___declspec] = ACTIONS(6610), + [anon_sym___based] = ACTIONS(6610), + [anon_sym___cdecl] = ACTIONS(6610), + [anon_sym___clrcall] = ACTIONS(6610), + [anon_sym___stdcall] = ACTIONS(6610), + [anon_sym___fastcall] = ACTIONS(6610), + [anon_sym___thiscall] = ACTIONS(6610), + [anon_sym___vectorcall] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_RBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_static] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_register] = ACTIONS(6610), + [anon_sym_inline] = ACTIONS(6610), + [anon_sym___inline] = ACTIONS(6610), + [anon_sym___inline__] = ACTIONS(6610), + [anon_sym___forceinline] = ACTIONS(6610), + [anon_sym_thread_local] = ACTIONS(6610), + [anon_sym___thread] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_STAR_EQ] = ACTIONS(6612), + [anon_sym_SLASH_EQ] = ACTIONS(6612), + [anon_sym_PERCENT_EQ] = ACTIONS(6612), + [anon_sym_PLUS_EQ] = ACTIONS(6612), + [anon_sym_DASH_EQ] = ACTIONS(6612), + [anon_sym_LT_LT_EQ] = ACTIONS(6612), + [anon_sym_GT_GT_EQ] = ACTIONS(6612), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_and_eq] = ACTIONS(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6616), - [anon_sym_decltype] = ACTIONS(6616), - [anon_sym_template] = ACTIONS(6616), - [anon_sym_operator] = ACTIONS(6616), - [anon_sym_LBRACK_COLON] = ACTIONS(6618), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(6610), + [anon_sym_operator] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(6612), }, [STATE(1967)] = { - [sym_identifier] = ACTIONS(6620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_RPAREN] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_TILDE] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6620), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6620), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6620), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6620), - [anon_sym_GT_GT] = ACTIONS(6620), - [anon_sym_SEMI] = ACTIONS(6622), - [anon_sym___extension__] = ACTIONS(6620), - [anon_sym_virtual] = ACTIONS(6620), - [anon_sym_extern] = ACTIONS(6620), - [anon_sym___attribute__] = ACTIONS(6620), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), - [anon_sym___declspec] = ACTIONS(6620), - [anon_sym___based] = ACTIONS(6620), - [anon_sym___cdecl] = ACTIONS(6620), - [anon_sym___clrcall] = ACTIONS(6620), - [anon_sym___stdcall] = ACTIONS(6620), - [anon_sym___fastcall] = ACTIONS(6620), - [anon_sym___thiscall] = ACTIONS(6620), - [anon_sym___vectorcall] = ACTIONS(6620), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_RBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6620), - [anon_sym_static] = ACTIONS(6620), - [anon_sym_EQ] = ACTIONS(6620), - [anon_sym_register] = ACTIONS(6620), - [anon_sym_inline] = ACTIONS(6620), - [anon_sym___inline] = ACTIONS(6620), - [anon_sym___inline__] = ACTIONS(6620), - [anon_sym___forceinline] = ACTIONS(6620), - [anon_sym_thread_local] = ACTIONS(6620), - [anon_sym___thread] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6620), - [anon_sym_volatile] = ACTIONS(6620), - [anon_sym_restrict] = ACTIONS(6620), - [anon_sym___restrict__] = ACTIONS(6620), - [anon_sym__Atomic] = ACTIONS(6620), - [anon_sym__Noreturn] = ACTIONS(6620), - [anon_sym_noreturn] = ACTIONS(6620), - [anon_sym__Nonnull] = ACTIONS(6620), - [anon_sym_mutable] = ACTIONS(6620), - [anon_sym_constinit] = ACTIONS(6620), - [anon_sym_consteval] = ACTIONS(6620), - [anon_sym_alignas] = ACTIONS(6620), - [anon_sym__Alignas] = ACTIONS(6620), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_STAR_EQ] = ACTIONS(6622), - [anon_sym_SLASH_EQ] = ACTIONS(6622), - [anon_sym_PERCENT_EQ] = ACTIONS(6622), - [anon_sym_PLUS_EQ] = ACTIONS(6622), - [anon_sym_DASH_EQ] = ACTIONS(6622), - [anon_sym_LT_LT_EQ] = ACTIONS(6622), - [anon_sym_GT_GT_EQ] = ACTIONS(6622), - [anon_sym_AMP_EQ] = ACTIONS(6622), - [anon_sym_CARET_EQ] = ACTIONS(6622), - [anon_sym_PIPE_EQ] = ACTIONS(6622), - [anon_sym_and_eq] = ACTIONS(6620), - [anon_sym_or_eq] = ACTIONS(6620), - [anon_sym_xor_eq] = ACTIONS(6620), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6620), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6620), - [anon_sym_not_eq] = ACTIONS(6620), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6620), - [anon_sym_decltype] = ACTIONS(6620), - [anon_sym_template] = ACTIONS(6620), - [anon_sym_operator] = ACTIONS(6620), - [anon_sym_LBRACK_COLON] = ACTIONS(6622), + [sym_identifier] = ACTIONS(6614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_TILDE] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym_virtual] = ACTIONS(6614), + [anon_sym_extern] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6616), + [anon_sym___declspec] = ACTIONS(6614), + [anon_sym___based] = ACTIONS(6614), + [anon_sym___cdecl] = ACTIONS(6614), + [anon_sym___clrcall] = ACTIONS(6614), + [anon_sym___stdcall] = ACTIONS(6614), + [anon_sym___fastcall] = ACTIONS(6614), + [anon_sym___thiscall] = ACTIONS(6614), + [anon_sym___vectorcall] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_RBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_static] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_register] = ACTIONS(6614), + [anon_sym_inline] = ACTIONS(6614), + [anon_sym___inline] = ACTIONS(6614), + [anon_sym___inline__] = ACTIONS(6614), + [anon_sym___forceinline] = ACTIONS(6614), + [anon_sym_thread_local] = ACTIONS(6614), + [anon_sym___thread] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_STAR_EQ] = ACTIONS(6616), + [anon_sym_SLASH_EQ] = ACTIONS(6616), + [anon_sym_PERCENT_EQ] = ACTIONS(6616), + [anon_sym_PLUS_EQ] = ACTIONS(6616), + [anon_sym_DASH_EQ] = ACTIONS(6616), + [anon_sym_LT_LT_EQ] = ACTIONS(6616), + [anon_sym_GT_GT_EQ] = ACTIONS(6616), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_and_eq] = ACTIONS(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(6614), + [anon_sym_operator] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(6616), }, [STATE(1968)] = { - [sym_identifier] = ACTIONS(6624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_RPAREN] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_TILDE] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6624), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6624), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6624), - [anon_sym_GT_GT] = ACTIONS(6624), - [anon_sym_SEMI] = ACTIONS(6626), + [sym_attribute_specifier] = STATE(2098), + [sym_attribute_declaration] = STATE(4480), + [sym_type_qualifier] = STATE(2308), + [sym_alignas_qualifier] = STATE(2413), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym_ref_qualifier] = STATE(2436), + [sym__function_attributes_start] = STATE(2396), + [sym__function_exception_specification] = STATE(2930), + [sym__function_attributes_end] = STATE(4271), + [sym__function_postfix] = STATE(5000), + [sym_trailing_return_type] = STATE(4328), + [sym_noexcept] = STATE(2930), + [sym_throw_specifier] = STATE(2930), + [sym_requires_clause] = STATE(5000), + [aux_sym_type_definition_repeat1] = STATE(2098), + [aux_sym__type_definition_type_repeat1] = STATE(2308), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_RPAREN] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6621), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), [anon_sym___extension__] = ACTIONS(6624), - [anon_sym_virtual] = ACTIONS(6624), - [anon_sym_extern] = ACTIONS(6624), - [anon_sym___attribute__] = ACTIONS(6624), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), - [anon_sym___declspec] = ACTIONS(6624), - [anon_sym___based] = ACTIONS(6624), - [anon_sym___cdecl] = ACTIONS(6624), - [anon_sym___clrcall] = ACTIONS(6624), - [anon_sym___stdcall] = ACTIONS(6624), - [anon_sym___fastcall] = ACTIONS(6624), - [anon_sym___thiscall] = ACTIONS(6624), - [anon_sym___vectorcall] = ACTIONS(6624), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_RBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6624), - [anon_sym_static] = ACTIONS(6624), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_register] = ACTIONS(6624), - [anon_sym_inline] = ACTIONS(6624), - [anon_sym___inline] = ACTIONS(6624), - [anon_sym___inline__] = ACTIONS(6624), - [anon_sym___forceinline] = ACTIONS(6624), - [anon_sym_thread_local] = ACTIONS(6624), - [anon_sym___thread] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6632), [anon_sym_constexpr] = ACTIONS(6624), [anon_sym_volatile] = ACTIONS(6624), [anon_sym_restrict] = ACTIONS(6624), @@ -310603,1288 +310529,1089 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(6624), [anon_sym_constinit] = ACTIONS(6624), [anon_sym_consteval] = ACTIONS(6624), - [anon_sym_alignas] = ACTIONS(6624), - [anon_sym__Alignas] = ACTIONS(6624), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_STAR_EQ] = ACTIONS(6626), - [anon_sym_SLASH_EQ] = ACTIONS(6626), - [anon_sym_PERCENT_EQ] = ACTIONS(6626), - [anon_sym_PLUS_EQ] = ACTIONS(6626), - [anon_sym_DASH_EQ] = ACTIONS(6626), - [anon_sym_LT_LT_EQ] = ACTIONS(6626), - [anon_sym_GT_GT_EQ] = ACTIONS(6626), - [anon_sym_AMP_EQ] = ACTIONS(6626), - [anon_sym_CARET_EQ] = ACTIONS(6626), - [anon_sym_PIPE_EQ] = ACTIONS(6626), - [anon_sym_and_eq] = ACTIONS(6624), - [anon_sym_or_eq] = ACTIONS(6624), - [anon_sym_xor_eq] = ACTIONS(6624), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6624), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6624), - [anon_sym_not_eq] = ACTIONS(6624), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6624), - [anon_sym_decltype] = ACTIONS(6624), - [anon_sym_template] = ACTIONS(6624), - [anon_sym_operator] = ACTIONS(6624), - [anon_sym_LBRACK_COLON] = ACTIONS(6626), + [anon_sym_alignas] = ACTIONS(6634), + [anon_sym__Alignas] = ACTIONS(6634), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6471), + [anon_sym_or_eq] = ACTIONS(6471), + [anon_sym_xor_eq] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6636), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6639), + [anon_sym_override] = ACTIONS(6639), + [anon_sym_noexcept] = ACTIONS(6642), + [anon_sym_throw] = ACTIONS(6644), + [anon_sym_requires] = ACTIONS(6646), + [anon_sym_DASH_GT_STAR] = ACTIONS(6471), }, [STATE(1969)] = { - [sym_identifier] = ACTIONS(6628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_TILDE] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6628), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6628), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6628), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6628), - [anon_sym_GT_GT] = ACTIONS(6628), - [anon_sym_SEMI] = ACTIONS(6630), - [anon_sym___extension__] = ACTIONS(6628), - [anon_sym_virtual] = ACTIONS(6628), - [anon_sym_extern] = ACTIONS(6628), - [anon_sym___attribute__] = ACTIONS(6628), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), - [anon_sym___declspec] = ACTIONS(6628), - [anon_sym___based] = ACTIONS(6628), - [anon_sym___cdecl] = ACTIONS(6628), - [anon_sym___clrcall] = ACTIONS(6628), - [anon_sym___stdcall] = ACTIONS(6628), - [anon_sym___fastcall] = ACTIONS(6628), - [anon_sym___thiscall] = ACTIONS(6628), - [anon_sym___vectorcall] = ACTIONS(6628), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_RBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6628), - [anon_sym_static] = ACTIONS(6628), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_register] = ACTIONS(6628), - [anon_sym_inline] = ACTIONS(6628), - [anon_sym___inline] = ACTIONS(6628), - [anon_sym___inline__] = ACTIONS(6628), - [anon_sym___forceinline] = ACTIONS(6628), - [anon_sym_thread_local] = ACTIONS(6628), - [anon_sym___thread] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6628), - [anon_sym_volatile] = ACTIONS(6628), - [anon_sym_restrict] = ACTIONS(6628), - [anon_sym___restrict__] = ACTIONS(6628), - [anon_sym__Atomic] = ACTIONS(6628), - [anon_sym__Noreturn] = ACTIONS(6628), - [anon_sym_noreturn] = ACTIONS(6628), - [anon_sym__Nonnull] = ACTIONS(6628), - [anon_sym_mutable] = ACTIONS(6628), - [anon_sym_constinit] = ACTIONS(6628), - [anon_sym_consteval] = ACTIONS(6628), - [anon_sym_alignas] = ACTIONS(6628), - [anon_sym__Alignas] = ACTIONS(6628), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_STAR_EQ] = ACTIONS(6630), - [anon_sym_SLASH_EQ] = ACTIONS(6630), - [anon_sym_PERCENT_EQ] = ACTIONS(6630), - [anon_sym_PLUS_EQ] = ACTIONS(6630), - [anon_sym_DASH_EQ] = ACTIONS(6630), - [anon_sym_LT_LT_EQ] = ACTIONS(6630), - [anon_sym_GT_GT_EQ] = ACTIONS(6630), - [anon_sym_AMP_EQ] = ACTIONS(6630), - [anon_sym_CARET_EQ] = ACTIONS(6630), - [anon_sym_PIPE_EQ] = ACTIONS(6630), - [anon_sym_and_eq] = ACTIONS(6628), - [anon_sym_or_eq] = ACTIONS(6628), - [anon_sym_xor_eq] = ACTIONS(6628), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6628), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6628), - [anon_sym_not_eq] = ACTIONS(6628), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6628), - [anon_sym_decltype] = ACTIONS(6628), - [anon_sym_template] = ACTIONS(6628), - [anon_sym_operator] = ACTIONS(6628), - [anon_sym_LBRACK_COLON] = ACTIONS(6630), + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6651), + [anon_sym_COMMA] = ACTIONS(6651), + [anon_sym_RPAREN] = ACTIONS(6651), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6658), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6658), + [anon_sym_GT_GT] = ACTIONS(6658), + [anon_sym_SEMI] = ACTIONS(6651), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym_virtual] = ACTIONS(6649), + [anon_sym_extern] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6656), + [anon_sym___declspec] = ACTIONS(6649), + [anon_sym___based] = ACTIONS(6649), + [anon_sym___cdecl] = ACTIONS(6649), + [anon_sym___clrcall] = ACTIONS(6649), + [anon_sym___stdcall] = ACTIONS(6649), + [anon_sym___fastcall] = ACTIONS(6649), + [anon_sym___thiscall] = ACTIONS(6649), + [anon_sym___vectorcall] = ACTIONS(6649), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6660), + [anon_sym_static] = ACTIONS(6649), + [anon_sym_EQ] = ACTIONS(6658), + [anon_sym_register] = ACTIONS(6649), + [anon_sym_inline] = ACTIONS(6649), + [anon_sym___inline] = ACTIONS(6649), + [anon_sym___inline__] = ACTIONS(6649), + [anon_sym___forceinline] = ACTIONS(6649), + [anon_sym_thread_local] = ACTIONS(6649), + [anon_sym___thread] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6658), + [anon_sym_or_eq] = ACTIONS(6658), + [anon_sym_xor_eq] = ACTIONS(6658), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6658), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6658), + [anon_sym_not_eq] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_template] = ACTIONS(6649), + [anon_sym_operator] = ACTIONS(6649), + [anon_sym_LBRACK_COLON] = ACTIONS(6656), }, [STATE(1970)] = { - [sym_identifier] = ACTIONS(6632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_RPAREN] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_TILDE] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6632), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6632), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6632), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6632), - [anon_sym_GT_GT] = ACTIONS(6632), - [anon_sym_SEMI] = ACTIONS(6634), - [anon_sym___extension__] = ACTIONS(6632), - [anon_sym_virtual] = ACTIONS(6632), - [anon_sym_extern] = ACTIONS(6632), - [anon_sym___attribute__] = ACTIONS(6632), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), - [anon_sym___declspec] = ACTIONS(6632), - [anon_sym___based] = ACTIONS(6632), - [anon_sym___cdecl] = ACTIONS(6632), - [anon_sym___clrcall] = ACTIONS(6632), - [anon_sym___stdcall] = ACTIONS(6632), - [anon_sym___fastcall] = ACTIONS(6632), - [anon_sym___thiscall] = ACTIONS(6632), - [anon_sym___vectorcall] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_RBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6632), - [anon_sym_static] = ACTIONS(6632), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_register] = ACTIONS(6632), - [anon_sym_inline] = ACTIONS(6632), - [anon_sym___inline] = ACTIONS(6632), - [anon_sym___inline__] = ACTIONS(6632), - [anon_sym___forceinline] = ACTIONS(6632), - [anon_sym_thread_local] = ACTIONS(6632), - [anon_sym___thread] = ACTIONS(6632), + [sym_attribute_specifier] = STATE(2098), + [sym_attribute_declaration] = STATE(4480), + [sym_type_qualifier] = STATE(2308), + [sym_alignas_qualifier] = STATE(2413), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym_ref_qualifier] = STATE(2468), + [sym__function_attributes_start] = STATE(2409), + [sym__function_exception_specification] = STATE(2896), + [sym__function_attributes_end] = STATE(4281), + [sym__function_postfix] = STATE(5000), + [sym_trailing_return_type] = STATE(4349), + [sym_noexcept] = STATE(2896), + [sym_throw_specifier] = STATE(2896), + [sym_requires_clause] = STATE(5000), + [aux_sym_type_definition_repeat1] = STATE(2098), + [aux_sym__type_definition_type_repeat1] = STATE(2308), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_RPAREN] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6618), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6621), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6632), - [anon_sym_volatile] = ACTIONS(6632), - [anon_sym_restrict] = ACTIONS(6632), - [anon_sym___restrict__] = ACTIONS(6632), - [anon_sym__Atomic] = ACTIONS(6632), - [anon_sym__Noreturn] = ACTIONS(6632), - [anon_sym_noreturn] = ACTIONS(6632), - [anon_sym__Nonnull] = ACTIONS(6632), - [anon_sym_mutable] = ACTIONS(6632), - [anon_sym_constinit] = ACTIONS(6632), - [anon_sym_consteval] = ACTIONS(6632), - [anon_sym_alignas] = ACTIONS(6632), - [anon_sym__Alignas] = ACTIONS(6632), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_STAR_EQ] = ACTIONS(6634), - [anon_sym_SLASH_EQ] = ACTIONS(6634), - [anon_sym_PERCENT_EQ] = ACTIONS(6634), - [anon_sym_PLUS_EQ] = ACTIONS(6634), - [anon_sym_DASH_EQ] = ACTIONS(6634), - [anon_sym_LT_LT_EQ] = ACTIONS(6634), - [anon_sym_GT_GT_EQ] = ACTIONS(6634), - [anon_sym_AMP_EQ] = ACTIONS(6634), - [anon_sym_CARET_EQ] = ACTIONS(6634), - [anon_sym_PIPE_EQ] = ACTIONS(6634), - [anon_sym_and_eq] = ACTIONS(6632), - [anon_sym_or_eq] = ACTIONS(6632), - [anon_sym_xor_eq] = ACTIONS(6632), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6632), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6632), - [anon_sym_not_eq] = ACTIONS(6632), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6632), - [anon_sym_decltype] = ACTIONS(6632), - [anon_sym_template] = ACTIONS(6632), - [anon_sym_operator] = ACTIONS(6632), - [anon_sym_LBRACK_COLON] = ACTIONS(6634), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6634), + [anon_sym__Alignas] = ACTIONS(6634), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6471), + [anon_sym_or_eq] = ACTIONS(6471), + [anon_sym_xor_eq] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6636), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6663), + [anon_sym_override] = ACTIONS(6663), + [anon_sym_noexcept] = ACTIONS(6642), + [anon_sym_throw] = ACTIONS(6644), + [anon_sym_requires] = ACTIONS(6665), + [anon_sym_DASH_GT_STAR] = ACTIONS(6471), }, [STATE(1971)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(7547), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9070), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_parameter_list] = STATE(1100), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(6284), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7966), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(2650), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6582), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym_LT] = ACTIONS(6584), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(3460), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_for] = ACTIONS(6636), - [anon_sym_typename] = ACTIONS(5464), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6651), + [anon_sym_COMMA] = ACTIONS(6651), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6658), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6658), + [anon_sym_GT_GT] = ACTIONS(6658), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym_virtual] = ACTIONS(6649), + [anon_sym_extern] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6653), + [anon_sym___declspec] = ACTIONS(6649), + [anon_sym___based] = ACTIONS(6649), + [anon_sym___cdecl] = ACTIONS(6649), + [anon_sym___clrcall] = ACTIONS(6649), + [anon_sym___stdcall] = ACTIONS(6649), + [anon_sym___fastcall] = ACTIONS(6649), + [anon_sym___thiscall] = ACTIONS(6649), + [anon_sym___vectorcall] = ACTIONS(6649), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_RBRACE] = ACTIONS(6651), + [anon_sym_LBRACK] = ACTIONS(6660), + [anon_sym_static] = ACTIONS(6649), + [anon_sym_EQ] = ACTIONS(6658), + [anon_sym_register] = ACTIONS(6649), + [anon_sym_inline] = ACTIONS(6649), + [anon_sym___inline] = ACTIONS(6649), + [anon_sym___inline__] = ACTIONS(6649), + [anon_sym___forceinline] = ACTIONS(6649), + [anon_sym_thread_local] = ACTIONS(6649), + [anon_sym___thread] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6658), + [anon_sym_or_eq] = ACTIONS(6658), + [anon_sym_xor_eq] = ACTIONS(6658), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6658), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6658), + [anon_sym_not_eq] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_template] = ACTIONS(6649), + [anon_sym_operator] = ACTIONS(6649), + [anon_sym_LBRACK_COLON] = ACTIONS(6656), }, [STATE(1972)] = { - [sym_attribute_specifier] = STATE(2106), - [sym_attribute_declaration] = STATE(4490), - [sym_type_qualifier] = STATE(2308), - [sym_alignas_qualifier] = STATE(2392), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym_ref_qualifier] = STATE(2458), - [sym__function_attributes_start] = STATE(2399), - [sym__function_exception_specification] = STATE(2936), - [sym__function_attributes_end] = STATE(4295), - [sym__function_postfix] = STATE(4874), - [sym_trailing_return_type] = STATE(4329), - [sym_noexcept] = STATE(2936), - [sym_throw_specifier] = STATE(2936), - [sym_requires_clause] = STATE(4874), - [aux_sym_type_definition_repeat1] = STATE(2106), - [aux_sym__type_definition_type_repeat1] = STATE(2308), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_RPAREN] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6638), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6641), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(6644), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6652), - [anon_sym_constexpr] = ACTIONS(6644), - [anon_sym_volatile] = ACTIONS(6644), - [anon_sym_restrict] = ACTIONS(6644), - [anon_sym___restrict__] = ACTIONS(6644), - [anon_sym__Atomic] = ACTIONS(6644), - [anon_sym__Noreturn] = ACTIONS(6644), - [anon_sym_noreturn] = ACTIONS(6644), - [anon_sym__Nonnull] = ACTIONS(6644), - [anon_sym_mutable] = ACTIONS(6644), - [anon_sym_constinit] = ACTIONS(6644), - [anon_sym_consteval] = ACTIONS(6644), - [anon_sym_alignas] = ACTIONS(6654), - [anon_sym__Alignas] = ACTIONS(6654), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6481), - [anon_sym_or_eq] = ACTIONS(6481), - [anon_sym_xor_eq] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6656), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6659), - [anon_sym_override] = ACTIONS(6659), - [anon_sym_noexcept] = ACTIONS(6662), - [anon_sym_throw] = ACTIONS(6664), - [anon_sym_requires] = ACTIONS(6666), - [anon_sym_DASH_GT_STAR] = ACTIONS(6481), + [sym_attribute_specifier] = STATE(2145), + [sym_attribute_declaration] = STATE(4599), + [sym_type_qualifier] = STATE(2343), + [sym_alignas_qualifier] = STATE(2471), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym_ref_qualifier] = STATE(2537), + [sym__function_attributes_start] = STATE(2486), + [sym__function_exception_specification] = STATE(3056), + [sym__function_attributes_end] = STATE(4358), + [sym__function_postfix] = STATE(5180), + [sym_trailing_return_type] = STATE(4458), + [sym_noexcept] = STATE(3056), + [sym_throw_specifier] = STATE(3056), + [sym_requires_clause] = STATE(5180), + [aux_sym_type_definition_repeat1] = STATE(2145), + [aux_sym__type_definition_type_repeat1] = STATE(2343), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6667), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6670), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6469), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(6673), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6681), + [anon_sym_constexpr] = ACTIONS(6673), + [anon_sym_volatile] = ACTIONS(6673), + [anon_sym_restrict] = ACTIONS(6673), + [anon_sym___restrict__] = ACTIONS(6673), + [anon_sym__Atomic] = ACTIONS(6673), + [anon_sym__Noreturn] = ACTIONS(6673), + [anon_sym_noreturn] = ACTIONS(6673), + [anon_sym__Nonnull] = ACTIONS(6673), + [anon_sym_mutable] = ACTIONS(6673), + [anon_sym_constinit] = ACTIONS(6673), + [anon_sym_consteval] = ACTIONS(6673), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6469), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6471), + [anon_sym_or_eq] = ACTIONS(6471), + [anon_sym_xor_eq] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6685), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6688), + [anon_sym_override] = ACTIONS(6688), + [anon_sym_GT2] = ACTIONS(6471), + [anon_sym_noexcept] = ACTIONS(6690), + [anon_sym_throw] = ACTIONS(6692), + [anon_sym_requires] = ACTIONS(6694), }, [STATE(1973)] = { - [sym_identifier] = ACTIONS(6594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), - [anon_sym_COMMA] = ACTIONS(6596), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_TILDE] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6603), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6603), - [anon_sym_GT_GT] = ACTIONS(6603), - [anon_sym_SEMI] = ACTIONS(6598), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym_virtual] = ACTIONS(6594), - [anon_sym_extern] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6598), - [anon_sym___declspec] = ACTIONS(6594), - [anon_sym___based] = ACTIONS(6594), - [anon_sym___cdecl] = ACTIONS(6594), - [anon_sym___clrcall] = ACTIONS(6594), - [anon_sym___stdcall] = ACTIONS(6594), - [anon_sym___fastcall] = ACTIONS(6594), - [anon_sym___thiscall] = ACTIONS(6594), - [anon_sym___vectorcall] = ACTIONS(6594), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_RBRACE] = ACTIONS(6596), - [anon_sym_LBRACK] = ACTIONS(6605), - [anon_sym_static] = ACTIONS(6594), - [anon_sym_EQ] = ACTIONS(6603), - [anon_sym_register] = ACTIONS(6594), - [anon_sym_inline] = ACTIONS(6594), - [anon_sym___inline] = ACTIONS(6594), - [anon_sym___inline__] = ACTIONS(6594), - [anon_sym___forceinline] = ACTIONS(6594), - [anon_sym_thread_local] = ACTIONS(6594), - [anon_sym___thread] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6603), - [anon_sym_or_eq] = ACTIONS(6603), - [anon_sym_xor_eq] = ACTIONS(6603), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6603), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6603), - [anon_sym_not_eq] = ACTIONS(6603), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_template] = ACTIONS(6594), - [anon_sym_operator] = ACTIONS(6594), - [anon_sym_LBRACK_COLON] = ACTIONS(6601), + [sym_attribute_specifier] = STATE(2128), + [sym_attribute_declaration] = STATE(4555), + [sym_type_qualifier] = STATE(2344), + [sym_alignas_qualifier] = STATE(2435), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym_ref_qualifier] = STATE(2575), + [sym__function_attributes_start] = STATE(2515), + [sym__function_exception_specification] = STATE(3070), + [sym__function_attributes_end] = STATE(4350), + [sym__function_postfix] = STATE(5198), + [sym_trailing_return_type] = STATE(4487), + [sym_noexcept] = STATE(3070), + [sym_throw_specifier] = STATE(3070), + [sym_requires_clause] = STATE(5198), + [aux_sym_type_definition_repeat1] = STATE(2128), + [aux_sym__type_definition_type_repeat1] = STATE(2344), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6696), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6699), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(6702), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_RBRACK] = ACTIONS(6471), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6710), + [anon_sym_constexpr] = ACTIONS(6702), + [anon_sym_volatile] = ACTIONS(6702), + [anon_sym_restrict] = ACTIONS(6702), + [anon_sym___restrict__] = ACTIONS(6702), + [anon_sym__Atomic] = ACTIONS(6702), + [anon_sym__Noreturn] = ACTIONS(6702), + [anon_sym_noreturn] = ACTIONS(6702), + [anon_sym__Nonnull] = ACTIONS(6702), + [anon_sym_mutable] = ACTIONS(6702), + [anon_sym_constinit] = ACTIONS(6702), + [anon_sym_consteval] = ACTIONS(6702), + [anon_sym_alignas] = ACTIONS(6712), + [anon_sym__Alignas] = ACTIONS(6712), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6471), + [anon_sym_or_eq] = ACTIONS(6471), + [anon_sym_xor_eq] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6714), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6717), + [anon_sym_override] = ACTIONS(6717), + [anon_sym_noexcept] = ACTIONS(6719), + [anon_sym_throw] = ACTIONS(6721), + [anon_sym_requires] = ACTIONS(6723), }, [STATE(1974)] = { - [sym_attribute_specifier] = STATE(2106), - [sym_attribute_declaration] = STATE(4490), - [sym_type_qualifier] = STATE(2308), - [sym_alignas_qualifier] = STATE(2392), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym_ref_qualifier] = STATE(2465), - [sym__function_attributes_start] = STATE(2394), - [sym__function_exception_specification] = STATE(2900), - [sym__function_attributes_end] = STATE(4311), - [sym__function_postfix] = STATE(4874), - [sym_trailing_return_type] = STATE(4397), - [sym_noexcept] = STATE(2900), - [sym_throw_specifier] = STATE(2900), - [sym_requires_clause] = STATE(4874), - [aux_sym_type_definition_repeat1] = STATE(2106), - [aux_sym__type_definition_type_repeat1] = STATE(2308), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_RPAREN] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6638), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6641), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(6644), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6652), - [anon_sym_constexpr] = ACTIONS(6644), - [anon_sym_volatile] = ACTIONS(6644), - [anon_sym_restrict] = ACTIONS(6644), - [anon_sym___restrict__] = ACTIONS(6644), - [anon_sym__Atomic] = ACTIONS(6644), - [anon_sym__Noreturn] = ACTIONS(6644), - [anon_sym_noreturn] = ACTIONS(6644), - [anon_sym__Nonnull] = ACTIONS(6644), - [anon_sym_mutable] = ACTIONS(6644), - [anon_sym_constinit] = ACTIONS(6644), - [anon_sym_consteval] = ACTIONS(6644), - [anon_sym_alignas] = ACTIONS(6654), - [anon_sym__Alignas] = ACTIONS(6654), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6481), - [anon_sym_or_eq] = ACTIONS(6481), - [anon_sym_xor_eq] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6656), + [sym_attribute_specifier] = STATE(1978), + [sym_attribute_declaration] = STATE(3164), + [sym_type_qualifier] = STATE(2010), + [sym_alignas_qualifier] = STATE(2060), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2584), + [sym__function_attributes_start] = STATE(2443), + [sym__function_exception_specification] = STATE(2947), + [sym__function_attributes_end] = STATE(4184), + [sym__function_postfix] = STATE(3613), + [sym_trailing_return_type] = STATE(2944), + [sym_noexcept] = STATE(2947), + [sym_throw_specifier] = STATE(2947), + [sym_requires_clause] = STATE(3613), + [aux_sym_type_definition_repeat1] = STATE(1978), + [aux_sym__type_definition_type_repeat1] = STATE(2010), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6473), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6476), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym_SEMI] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(6514), + [anon_sym___attribute__] = ACTIONS(6725), + [anon_sym___attribute] = ACTIONS(6728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6479), + [anon_sym_constexpr] = ACTIONS(6514), + [anon_sym_volatile] = ACTIONS(6514), + [anon_sym_restrict] = ACTIONS(6514), + [anon_sym___restrict__] = ACTIONS(6514), + [anon_sym__Atomic] = ACTIONS(6514), + [anon_sym__Noreturn] = ACTIONS(6514), + [anon_sym_noreturn] = ACTIONS(6514), + [anon_sym__Nonnull] = ACTIONS(6514), + [anon_sym_mutable] = ACTIONS(6514), + [anon_sym_constinit] = ACTIONS(6514), + [anon_sym_consteval] = ACTIONS(6514), + [anon_sym_alignas] = ACTIONS(6518), + [anon_sym__Alignas] = ACTIONS(6518), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6471), + [anon_sym_or_eq] = ACTIONS(6471), + [anon_sym_xor_eq] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6731), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6669), - [anon_sym_override] = ACTIONS(6669), - [anon_sym_noexcept] = ACTIONS(6662), - [anon_sym_throw] = ACTIONS(6664), - [anon_sym_requires] = ACTIONS(6671), - [anon_sym_DASH_GT_STAR] = ACTIONS(6481), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(6545), }, [STATE(1975)] = { [sym_attribute_specifier] = STATE(2145), - [sym_attribute_declaration] = STATE(4617), - [sym_type_qualifier] = STATE(2325), - [sym_alignas_qualifier] = STATE(2492), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym_ref_qualifier] = STATE(2597), - [sym__function_attributes_start] = STATE(2513), - [sym__function_exception_specification] = STATE(3070), - [sym__function_attributes_end] = STATE(4375), - [sym__function_postfix] = STATE(5193), - [sym_trailing_return_type] = STATE(4422), - [sym_noexcept] = STATE(3070), - [sym_throw_specifier] = STATE(3070), - [sym_requires_clause] = STATE(5193), + [sym_attribute_declaration] = STATE(4599), + [sym_type_qualifier] = STATE(2343), + [sym_alignas_qualifier] = STATE(2471), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym_ref_qualifier] = STATE(2527), + [sym__function_attributes_start] = STATE(2444), + [sym__function_exception_specification] = STATE(2950), + [sym__function_attributes_end] = STATE(4346), + [sym__function_postfix] = STATE(5180), + [sym_trailing_return_type] = STATE(4423), + [sym_noexcept] = STATE(2950), + [sym_throw_specifier] = STATE(2950), + [sym_requires_clause] = STATE(5180), [aux_sym_type_definition_repeat1] = STATE(2145), - [aux_sym__type_definition_type_repeat1] = STATE(2325), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6676), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6479), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(6679), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6687), - [anon_sym_constexpr] = ACTIONS(6679), - [anon_sym_volatile] = ACTIONS(6679), - [anon_sym_restrict] = ACTIONS(6679), - [anon_sym___restrict__] = ACTIONS(6679), - [anon_sym__Atomic] = ACTIONS(6679), - [anon_sym__Noreturn] = ACTIONS(6679), - [anon_sym_noreturn] = ACTIONS(6679), - [anon_sym__Nonnull] = ACTIONS(6679), - [anon_sym_mutable] = ACTIONS(6679), - [anon_sym_constinit] = ACTIONS(6679), - [anon_sym_consteval] = ACTIONS(6679), - [anon_sym_alignas] = ACTIONS(6689), - [anon_sym__Alignas] = ACTIONS(6689), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6479), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6481), - [anon_sym_or_eq] = ACTIONS(6481), - [anon_sym_xor_eq] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6691), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6694), - [anon_sym_override] = ACTIONS(6694), - [anon_sym_GT2] = ACTIONS(6481), - [anon_sym_noexcept] = ACTIONS(6696), - [anon_sym_throw] = ACTIONS(6698), - [anon_sym_requires] = ACTIONS(6700), + [aux_sym__type_definition_type_repeat1] = STATE(2343), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6667), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6670), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6469), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(6673), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6681), + [anon_sym_constexpr] = ACTIONS(6673), + [anon_sym_volatile] = ACTIONS(6673), + [anon_sym_restrict] = ACTIONS(6673), + [anon_sym___restrict__] = ACTIONS(6673), + [anon_sym__Atomic] = ACTIONS(6673), + [anon_sym__Noreturn] = ACTIONS(6673), + [anon_sym_noreturn] = ACTIONS(6673), + [anon_sym__Nonnull] = ACTIONS(6673), + [anon_sym_mutable] = ACTIONS(6673), + [anon_sym_constinit] = ACTIONS(6673), + [anon_sym_consteval] = ACTIONS(6673), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6469), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6471), + [anon_sym_or_eq] = ACTIONS(6471), + [anon_sym_xor_eq] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6685), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6734), + [anon_sym_override] = ACTIONS(6734), + [anon_sym_GT2] = ACTIONS(6471), + [anon_sym_noexcept] = ACTIONS(6690), + [anon_sym_throw] = ACTIONS(6692), + [anon_sym_requires] = ACTIONS(6737), }, [STATE(1976)] = { - [sym_attribute_specifier] = STATE(1984), - [sym_attribute_declaration] = STATE(3125), - [sym_type_qualifier] = STATE(2001), - [sym_alignas_qualifier] = STATE(2059), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2549), - [sym__function_attributes_start] = STATE(2486), - [sym__function_exception_specification] = STATE(3013), - [sym__function_attributes_end] = STATE(4234), - [sym__function_postfix] = STATE(3601), - [sym_trailing_return_type] = STATE(3074), - [sym_noexcept] = STATE(3013), - [sym_throw_specifier] = STATE(3013), - [sym_requires_clause] = STATE(3601), - [aux_sym_type_definition_repeat1] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(2001), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6483), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6486), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym_SEMI] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(6532), - [anon_sym___attribute__] = ACTIONS(6702), - [anon_sym___attribute] = ACTIONS(6705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6489), - [anon_sym_constexpr] = ACTIONS(6532), - [anon_sym_volatile] = ACTIONS(6532), - [anon_sym_restrict] = ACTIONS(6532), - [anon_sym___restrict__] = ACTIONS(6532), - [anon_sym__Atomic] = ACTIONS(6532), - [anon_sym__Noreturn] = ACTIONS(6532), - [anon_sym_noreturn] = ACTIONS(6532), - [anon_sym__Nonnull] = ACTIONS(6532), - [anon_sym_mutable] = ACTIONS(6532), - [anon_sym_constinit] = ACTIONS(6532), - [anon_sym_consteval] = ACTIONS(6532), - [anon_sym_alignas] = ACTIONS(6536), - [anon_sym__Alignas] = ACTIONS(6536), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6481), - [anon_sym_or_eq] = ACTIONS(6481), - [anon_sym_xor_eq] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6708), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6543), - [anon_sym_override] = ACTIONS(6543), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(6550), + [sym_attribute_specifier] = STATE(2128), + [sym_attribute_declaration] = STATE(4555), + [sym_type_qualifier] = STATE(2344), + [sym_alignas_qualifier] = STATE(2435), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym_ref_qualifier] = STATE(2532), + [sym__function_attributes_start] = STATE(2445), + [sym__function_exception_specification] = STATE(2953), + [sym__function_attributes_end] = STATE(4382), + [sym__function_postfix] = STATE(5198), + [sym_trailing_return_type] = STATE(4444), + [sym_noexcept] = STATE(2953), + [sym_throw_specifier] = STATE(2953), + [sym_requires_clause] = STATE(5198), + [aux_sym_type_definition_repeat1] = STATE(2128), + [aux_sym__type_definition_type_repeat1] = STATE(2344), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6696), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6699), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(6702), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_RBRACK] = ACTIONS(6471), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6710), + [anon_sym_constexpr] = ACTIONS(6702), + [anon_sym_volatile] = ACTIONS(6702), + [anon_sym_restrict] = ACTIONS(6702), + [anon_sym___restrict__] = ACTIONS(6702), + [anon_sym__Atomic] = ACTIONS(6702), + [anon_sym__Noreturn] = ACTIONS(6702), + [anon_sym_noreturn] = ACTIONS(6702), + [anon_sym__Nonnull] = ACTIONS(6702), + [anon_sym_mutable] = ACTIONS(6702), + [anon_sym_constinit] = ACTIONS(6702), + [anon_sym_consteval] = ACTIONS(6702), + [anon_sym_alignas] = ACTIONS(6712), + [anon_sym__Alignas] = ACTIONS(6712), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6471), + [anon_sym_or_eq] = ACTIONS(6471), + [anon_sym_xor_eq] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6714), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6740), + [anon_sym_override] = ACTIONS(6740), + [anon_sym_noexcept] = ACTIONS(6719), + [anon_sym_throw] = ACTIONS(6721), + [anon_sym_requires] = ACTIONS(6743), }, [STATE(1977)] = { - [sym_attribute_specifier] = STATE(2164), - [sym_attribute_declaration] = STATE(4554), - [sym_type_qualifier] = STATE(2333), - [sym_alignas_qualifier] = STATE(2452), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym_ref_qualifier] = STATE(2544), - [sym__function_attributes_start] = STATE(2490), - [sym__function_exception_specification] = STATE(2948), - [sym__function_attributes_end] = STATE(4363), - [sym__function_postfix] = STATE(5078), - [sym_trailing_return_type] = STATE(4475), - [sym_noexcept] = STATE(2948), - [sym_throw_specifier] = STATE(2948), - [sym_requires_clause] = STATE(5078), - [aux_sym_type_definition_repeat1] = STATE(2164), - [aux_sym__type_definition_type_repeat1] = STATE(2333), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6711), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6714), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(6717), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6481), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6725), - [anon_sym_constexpr] = ACTIONS(6717), - [anon_sym_volatile] = ACTIONS(6717), - [anon_sym_restrict] = ACTIONS(6717), - [anon_sym___restrict__] = ACTIONS(6717), - [anon_sym__Atomic] = ACTIONS(6717), - [anon_sym__Noreturn] = ACTIONS(6717), - [anon_sym_noreturn] = ACTIONS(6717), - [anon_sym__Nonnull] = ACTIONS(6717), - [anon_sym_mutable] = ACTIONS(6717), - [anon_sym_constinit] = ACTIONS(6717), - [anon_sym_consteval] = ACTIONS(6717), - [anon_sym_alignas] = ACTIONS(6727), - [anon_sym__Alignas] = ACTIONS(6727), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6481), - [anon_sym_or_eq] = ACTIONS(6481), - [anon_sym_xor_eq] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6729), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6732), - [anon_sym_override] = ACTIONS(6732), - [anon_sym_noexcept] = ACTIONS(6735), - [anon_sym_throw] = ACTIONS(6737), - [anon_sym_requires] = ACTIONS(6739), + [sym_attribute_specifier] = STATE(1978), + [sym_attribute_declaration] = STATE(3164), + [sym_type_qualifier] = STATE(2010), + [sym_alignas_qualifier] = STATE(2060), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2540), + [sym__function_attributes_start] = STATE(2446), + [sym__function_exception_specification] = STATE(2959), + [sym__function_attributes_end] = STATE(4190), + [sym__function_postfix] = STATE(3613), + [sym_trailing_return_type] = STATE(3059), + [sym_noexcept] = STATE(2959), + [sym_throw_specifier] = STATE(2959), + [sym_requires_clause] = STATE(3613), + [aux_sym_type_definition_repeat1] = STATE(1978), + [aux_sym__type_definition_type_repeat1] = STATE(2010), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6473), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6476), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym_SEMI] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(6514), + [anon_sym___attribute__] = ACTIONS(6725), + [anon_sym___attribute] = ACTIONS(6728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6479), + [anon_sym_constexpr] = ACTIONS(6514), + [anon_sym_volatile] = ACTIONS(6514), + [anon_sym_restrict] = ACTIONS(6514), + [anon_sym___restrict__] = ACTIONS(6514), + [anon_sym__Atomic] = ACTIONS(6514), + [anon_sym__Noreturn] = ACTIONS(6514), + [anon_sym_noreturn] = ACTIONS(6514), + [anon_sym__Nonnull] = ACTIONS(6514), + [anon_sym_mutable] = ACTIONS(6514), + [anon_sym_constinit] = ACTIONS(6514), + [anon_sym_consteval] = ACTIONS(6514), + [anon_sym_alignas] = ACTIONS(6518), + [anon_sym__Alignas] = ACTIONS(6518), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_and_eq] = ACTIONS(6471), + [anon_sym_or_eq] = ACTIONS(6471), + [anon_sym_xor_eq] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6731), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6525), + [anon_sym_override] = ACTIONS(6525), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(6532), }, [STATE(1978)] = { - [sym_attribute_specifier] = STATE(2164), - [sym_attribute_declaration] = STATE(4554), - [sym_type_qualifier] = STATE(2333), - [sym_alignas_qualifier] = STATE(2452), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym_ref_qualifier] = STATE(2581), - [sym__function_attributes_start] = STATE(2504), - [sym__function_exception_specification] = STATE(2979), - [sym__function_attributes_end] = STATE(4357), - [sym__function_postfix] = STATE(5078), - [sym_trailing_return_type] = STATE(4515), - [sym_noexcept] = STATE(2979), - [sym_throw_specifier] = STATE(2979), - [sym_requires_clause] = STATE(5078), - [aux_sym_type_definition_repeat1] = STATE(2164), - [aux_sym__type_definition_type_repeat1] = STATE(2333), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6711), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6714), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(6717), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6481), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6725), - [anon_sym_constexpr] = ACTIONS(6717), - [anon_sym_volatile] = ACTIONS(6717), - [anon_sym_restrict] = ACTIONS(6717), - [anon_sym___restrict__] = ACTIONS(6717), - [anon_sym__Atomic] = ACTIONS(6717), - [anon_sym__Noreturn] = ACTIONS(6717), - [anon_sym_noreturn] = ACTIONS(6717), - [anon_sym__Nonnull] = ACTIONS(6717), - [anon_sym_mutable] = ACTIONS(6717), - [anon_sym_constinit] = ACTIONS(6717), - [anon_sym_consteval] = ACTIONS(6717), - [anon_sym_alignas] = ACTIONS(6727), - [anon_sym__Alignas] = ACTIONS(6727), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6481), - [anon_sym_or_eq] = ACTIONS(6481), - [anon_sym_xor_eq] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6729), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6742), - [anon_sym_override] = ACTIONS(6742), - [anon_sym_noexcept] = ACTIONS(6735), - [anon_sym_throw] = ACTIONS(6737), - [anon_sym_requires] = ACTIONS(6744), - }, - [STATE(1979)] = { - [sym_attribute_specifier] = STATE(1984), - [sym_attribute_declaration] = STATE(3125), - [sym_type_qualifier] = STATE(2001), - [sym_alignas_qualifier] = STATE(2059), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2532), - [sym__function_attributes_start] = STATE(2510), - [sym__function_exception_specification] = STATE(3043), - [sym__function_attributes_end] = STATE(4230), - [sym__function_postfix] = STATE(3601), - [sym_trailing_return_type] = STATE(2994), - [sym_noexcept] = STATE(3043), - [sym_throw_specifier] = STATE(3043), - [sym_requires_clause] = STATE(3601), - [aux_sym_type_definition_repeat1] = STATE(1984), - [aux_sym__type_definition_type_repeat1] = STATE(2001), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6483), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6486), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym_SEMI] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(6532), - [anon_sym___attribute__] = ACTIONS(6702), - [anon_sym___attribute] = ACTIONS(6705), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6489), - [anon_sym_constexpr] = ACTIONS(6532), - [anon_sym_volatile] = ACTIONS(6532), - [anon_sym_restrict] = ACTIONS(6532), - [anon_sym___restrict__] = ACTIONS(6532), - [anon_sym__Atomic] = ACTIONS(6532), - [anon_sym__Noreturn] = ACTIONS(6532), - [anon_sym_noreturn] = ACTIONS(6532), - [anon_sym__Nonnull] = ACTIONS(6532), - [anon_sym_mutable] = ACTIONS(6532), - [anon_sym_constinit] = ACTIONS(6532), - [anon_sym_consteval] = ACTIONS(6532), - [anon_sym_alignas] = ACTIONS(6536), - [anon_sym__Alignas] = ACTIONS(6536), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6481), - [anon_sym_or_eq] = ACTIONS(6481), - [anon_sym_xor_eq] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6708), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(6563), - }, - [STATE(1980)] = { - [sym_attribute_specifier] = STATE(2145), - [sym_attribute_declaration] = STATE(4617), - [sym_type_qualifier] = STATE(2325), - [sym_alignas_qualifier] = STATE(2492), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym_ref_qualifier] = STATE(2535), - [sym__function_attributes_start] = STATE(2484), - [sym__function_exception_specification] = STATE(2975), - [sym__function_attributes_end] = STATE(4346), - [sym__function_postfix] = STATE(5193), - [sym_trailing_return_type] = STATE(4467), - [sym_noexcept] = STATE(2975), - [sym_throw_specifier] = STATE(2975), - [sym_requires_clause] = STATE(5193), - [aux_sym_type_definition_repeat1] = STATE(2145), - [aux_sym__type_definition_type_repeat1] = STATE(2325), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6673), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6676), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6479), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(6679), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6687), - [anon_sym_constexpr] = ACTIONS(6679), - [anon_sym_volatile] = ACTIONS(6679), - [anon_sym_restrict] = ACTIONS(6679), - [anon_sym___restrict__] = ACTIONS(6679), - [anon_sym__Atomic] = ACTIONS(6679), - [anon_sym__Noreturn] = ACTIONS(6679), - [anon_sym_noreturn] = ACTIONS(6679), - [anon_sym__Nonnull] = ACTIONS(6679), - [anon_sym_mutable] = ACTIONS(6679), - [anon_sym_constinit] = ACTIONS(6679), - [anon_sym_consteval] = ACTIONS(6679), - [anon_sym_alignas] = ACTIONS(6689), - [anon_sym__Alignas] = ACTIONS(6689), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6479), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_and_eq] = ACTIONS(6481), - [anon_sym_or_eq] = ACTIONS(6481), - [anon_sym_xor_eq] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6691), + [sym_attribute_specifier] = STATE(2031), + [sym_attribute_declaration] = STATE(3098), + [sym_type_qualifier] = STATE(1998), + [sym_alignas_qualifier] = STATE(2060), + [aux_sym_type_definition_repeat1] = STATE(2031), + [aux_sym__type_definition_type_repeat1] = STATE(1998), + [aux_sym_attributed_declarator_repeat1] = STATE(3098), + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [aux_sym_preproc_if_token2] = ACTIONS(6748), + [aux_sym_preproc_else_token1] = ACTIONS(6748), + [aux_sym_preproc_elif_token1] = ACTIONS(6746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6748), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6748), + [anon_sym___extension__] = ACTIONS(6479), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6748), + [anon_sym_RBRACE] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6479), + [anon_sym_constexpr] = ACTIONS(6479), + [anon_sym_volatile] = ACTIONS(6479), + [anon_sym_restrict] = ACTIONS(6479), + [anon_sym___restrict__] = ACTIONS(6479), + [anon_sym__Atomic] = ACTIONS(6479), + [anon_sym__Noreturn] = ACTIONS(6479), + [anon_sym_noreturn] = ACTIONS(6479), + [anon_sym__Nonnull] = ACTIONS(6479), + [anon_sym_mutable] = ACTIONS(6479), + [anon_sym_constinit] = ACTIONS(6479), + [anon_sym_consteval] = ACTIONS(6479), + [anon_sym_alignas] = ACTIONS(6485), + [anon_sym__Alignas] = ACTIONS(6485), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6746), + [anon_sym_or_eq] = ACTIONS(6746), + [anon_sym_xor_eq] = ACTIONS(6746), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6746), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6746), + [anon_sym_not_eq] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6746), + [anon_sym___asm__] = ACTIONS(6746), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(6746), [anon_sym_override] = ACTIONS(6746), - [anon_sym_GT2] = ACTIONS(6481), - [anon_sym_noexcept] = ACTIONS(6696), - [anon_sym_throw] = ACTIONS(6698), - [anon_sym_requires] = ACTIONS(6749), + [anon_sym_noexcept] = ACTIONS(6746), + [anon_sym_throw] = ACTIONS(6746), + [anon_sym_requires] = ACTIONS(6746), + [anon_sym_COLON_RBRACK] = ACTIONS(6748), }, - [STATE(1981)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(7519), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9077), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7966), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6582), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1979)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(7532), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9044), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7914), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6576), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -311907,372 +311634,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1982)] = { - [sym_identifier] = ACTIONS(4282), - [anon_sym_LPAREN2] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4284), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_DASH] = ACTIONS(4282), - [anon_sym_PLUS] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(4284), - [anon_sym_AMP] = ACTIONS(4284), - [anon_sym___extension__] = ACTIONS(4282), - [anon_sym_virtual] = ACTIONS(4282), - [anon_sym_extern] = ACTIONS(4282), - [anon_sym___attribute__] = ACTIONS(4282), - [anon_sym___attribute] = ACTIONS(4282), - [anon_sym_COLON_COLON] = ACTIONS(4284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4282), - [anon_sym_signed] = ACTIONS(4282), - [anon_sym_unsigned] = ACTIONS(4282), - [anon_sym_long] = ACTIONS(4282), - [anon_sym_short] = ACTIONS(4282), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_static] = ACTIONS(4282), - [anon_sym_register] = ACTIONS(4282), - [anon_sym_inline] = ACTIONS(4282), - [anon_sym___inline] = ACTIONS(4282), - [anon_sym___inline__] = ACTIONS(4282), - [anon_sym___forceinline] = ACTIONS(4282), - [anon_sym_thread_local] = ACTIONS(4282), - [anon_sym___thread] = ACTIONS(4282), - [anon_sym_const] = ACTIONS(4282), - [anon_sym_constexpr] = ACTIONS(4282), - [anon_sym_volatile] = ACTIONS(4282), - [anon_sym_restrict] = ACTIONS(4282), - [anon_sym___restrict__] = ACTIONS(4282), - [anon_sym__Atomic] = ACTIONS(4282), - [anon_sym__Noreturn] = ACTIONS(4282), - [anon_sym_noreturn] = ACTIONS(4282), - [anon_sym__Nonnull] = ACTIONS(4282), - [anon_sym_mutable] = ACTIONS(4282), - [anon_sym_constinit] = ACTIONS(4282), - [anon_sym_consteval] = ACTIONS(4282), - [anon_sym_alignas] = ACTIONS(4282), - [anon_sym__Alignas] = ACTIONS(4282), - [sym_primitive_type] = ACTIONS(4282), - [anon_sym_enum] = ACTIONS(4282), - [anon_sym_class] = ACTIONS(4282), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_union] = ACTIONS(4282), - [anon_sym_not] = ACTIONS(4282), - [anon_sym_compl] = ACTIONS(4282), - [anon_sym_DASH_DASH] = ACTIONS(4284), - [anon_sym_PLUS_PLUS] = ACTIONS(4284), - [anon_sym_sizeof] = ACTIONS(4282), - [anon_sym___alignof__] = ACTIONS(4282), - [anon_sym___alignof] = ACTIONS(4282), - [anon_sym__alignof] = ACTIONS(4282), - [anon_sym_alignof] = ACTIONS(4282), - [anon_sym__Alignof] = ACTIONS(4282), - [anon_sym_offsetof] = ACTIONS(4282), - [anon_sym__Generic] = ACTIONS(4282), - [anon_sym_typename] = ACTIONS(4282), - [anon_sym_asm] = ACTIONS(4282), - [anon_sym___asm__] = ACTIONS(4282), - [anon_sym___asm] = ACTIONS(4282), - [sym_number_literal] = ACTIONS(4284), - [anon_sym_L_SQUOTE] = ACTIONS(4284), - [anon_sym_u_SQUOTE] = ACTIONS(4284), - [anon_sym_U_SQUOTE] = ACTIONS(4284), - [anon_sym_u8_SQUOTE] = ACTIONS(4284), - [anon_sym_SQUOTE] = ACTIONS(4284), - [anon_sym_L_DQUOTE] = ACTIONS(4284), - [anon_sym_u_DQUOTE] = ACTIONS(4284), - [anon_sym_U_DQUOTE] = ACTIONS(4284), - [anon_sym_u8_DQUOTE] = ACTIONS(4284), - [anon_sym_DQUOTE] = ACTIONS(4284), - [sym_true] = ACTIONS(4282), - [sym_false] = ACTIONS(4282), - [anon_sym_NULL] = ACTIONS(4282), - [anon_sym_nullptr] = ACTIONS(4282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4282), - [anon_sym_decltype] = ACTIONS(4282), - [anon_sym_template] = ACTIONS(4282), - [anon_sym_delete] = ACTIONS(4282), - [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(4282), - [anon_sym_new] = ACTIONS(4282), - [anon_sym_requires] = ACTIONS(4282), - [anon_sym_CARET_CARET] = ACTIONS(4284), - [anon_sym_LBRACK_COLON] = ACTIONS(4284), - [sym_this] = ACTIONS(4282), - }, - [STATE(1983)] = { - [sym_identifier] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_BANG] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_DASH] = ACTIONS(4192), - [anon_sym_PLUS] = ACTIONS(4192), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_not] = ACTIONS(4192), - [anon_sym_compl] = ACTIONS(4192), - [anon_sym_DASH_DASH] = ACTIONS(4194), - [anon_sym_PLUS_PLUS] = ACTIONS(4194), - [anon_sym_sizeof] = ACTIONS(4192), - [anon_sym___alignof__] = ACTIONS(4192), - [anon_sym___alignof] = ACTIONS(4192), - [anon_sym__alignof] = ACTIONS(4192), - [anon_sym_alignof] = ACTIONS(4192), - [anon_sym__Alignof] = ACTIONS(4192), - [anon_sym_offsetof] = ACTIONS(4192), - [anon_sym__Generic] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [anon_sym_asm] = ACTIONS(4192), - [anon_sym___asm__] = ACTIONS(4192), - [anon_sym___asm] = ACTIONS(4192), - [sym_number_literal] = ACTIONS(4194), - [anon_sym_L_SQUOTE] = ACTIONS(4194), - [anon_sym_u_SQUOTE] = ACTIONS(4194), - [anon_sym_U_SQUOTE] = ACTIONS(4194), - [anon_sym_u8_SQUOTE] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4194), - [anon_sym_L_DQUOTE] = ACTIONS(4194), - [anon_sym_u_DQUOTE] = ACTIONS(4194), - [anon_sym_U_DQUOTE] = ACTIONS(4194), - [anon_sym_u8_DQUOTE] = ACTIONS(4194), - [anon_sym_DQUOTE] = ACTIONS(4194), - [sym_true] = ACTIONS(4192), - [sym_false] = ACTIONS(4192), - [anon_sym_NULL] = ACTIONS(4192), - [anon_sym_nullptr] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_delete] = ACTIONS(4192), - [anon_sym_R_DQUOTE] = ACTIONS(4194), - [anon_sym_LR_DQUOTE] = ACTIONS(4194), - [anon_sym_uR_DQUOTE] = ACTIONS(4194), - [anon_sym_UR_DQUOTE] = ACTIONS(4194), - [anon_sym_u8R_DQUOTE] = ACTIONS(4194), - [anon_sym_co_await] = ACTIONS(4192), - [anon_sym_new] = ACTIONS(4192), - [anon_sym_requires] = ACTIONS(4192), - [anon_sym_CARET_CARET] = ACTIONS(4194), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - [sym_this] = ACTIONS(4192), - }, - [STATE(1984)] = { - [sym_attribute_specifier] = STATE(2026), - [sym_attribute_declaration] = STATE(3129), - [sym_type_qualifier] = STATE(2016), - [sym_alignas_qualifier] = STATE(2059), - [aux_sym_type_definition_repeat1] = STATE(2026), - [aux_sym__type_definition_type_repeat1] = STATE(2016), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [sym_identifier] = ACTIONS(6752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_RPAREN] = ACTIONS(6754), - [aux_sym_preproc_if_token2] = ACTIONS(6754), - [aux_sym_preproc_else_token1] = ACTIONS(6754), - [aux_sym_preproc_elif_token1] = ACTIONS(6752), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6754), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6752), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6752), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym_SEMI] = ACTIONS(6754), - [anon_sym___extension__] = ACTIONS(6489), - [anon_sym___attribute__] = ACTIONS(6752), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_COLON] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6754), - [anon_sym_RBRACE] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_EQ] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(6489), - [anon_sym_constexpr] = ACTIONS(6489), - [anon_sym_volatile] = ACTIONS(6489), - [anon_sym_restrict] = ACTIONS(6489), - [anon_sym___restrict__] = ACTIONS(6489), - [anon_sym__Atomic] = ACTIONS(6489), - [anon_sym__Noreturn] = ACTIONS(6489), - [anon_sym_noreturn] = ACTIONS(6489), - [anon_sym__Nonnull] = ACTIONS(6489), - [anon_sym_mutable] = ACTIONS(6489), - [anon_sym_constinit] = ACTIONS(6489), - [anon_sym_consteval] = ACTIONS(6489), - [anon_sym_alignas] = ACTIONS(6495), - [anon_sym__Alignas] = ACTIONS(6495), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_STAR_EQ] = ACTIONS(6754), - [anon_sym_SLASH_EQ] = ACTIONS(6754), - [anon_sym_PERCENT_EQ] = ACTIONS(6754), - [anon_sym_PLUS_EQ] = ACTIONS(6754), - [anon_sym_DASH_EQ] = ACTIONS(6754), - [anon_sym_LT_LT_EQ] = ACTIONS(6754), - [anon_sym_GT_GT_EQ] = ACTIONS(6754), - [anon_sym_AMP_EQ] = ACTIONS(6754), - [anon_sym_CARET_EQ] = ACTIONS(6754), - [anon_sym_PIPE_EQ] = ACTIONS(6754), - [anon_sym_and_eq] = ACTIONS(6752), - [anon_sym_or_eq] = ACTIONS(6752), - [anon_sym_xor_eq] = ACTIONS(6752), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6752), - [anon_sym_and] = ACTIONS(6752), - [anon_sym_bitor] = ACTIONS(6752), - [anon_sym_xor] = ACTIONS(6752), - [anon_sym_bitand] = ACTIONS(6752), - [anon_sym_not_eq] = ACTIONS(6752), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6752), - [anon_sym___asm__] = ACTIONS(6752), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6752), - [anon_sym_override] = ACTIONS(6752), - [anon_sym_noexcept] = ACTIONS(6752), - [anon_sym_throw] = ACTIONS(6752), - [anon_sym_requires] = ACTIONS(6752), - [anon_sym_COLON_RBRACK] = ACTIONS(6754), - }, - [STATE(1985)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(7543), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9055), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7966), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6582), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1980)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(7528), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9074), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7914), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6576), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -312295,81 +311731,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1986)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(7528), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9075), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7966), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6582), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1981)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(7504), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9036), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7914), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6576), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -312392,178 +311828,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(1987)] = { - [sym_identifier] = ACTIONS(3340), - [anon_sym_LPAREN2] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_STAR] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym___extension__] = ACTIONS(3340), - [anon_sym_virtual] = ACTIONS(3340), - [anon_sym_extern] = ACTIONS(3340), - [anon_sym___attribute__] = ACTIONS(3340), - [anon_sym___attribute] = ACTIONS(3340), - [anon_sym_COLON_COLON] = ACTIONS(3345), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3345), - [anon_sym___declspec] = ACTIONS(3340), - [anon_sym_signed] = ACTIONS(3340), - [anon_sym_unsigned] = ACTIONS(3340), - [anon_sym_long] = ACTIONS(3340), - [anon_sym_short] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_register] = ACTIONS(3340), - [anon_sym_inline] = ACTIONS(3340), - [anon_sym___inline] = ACTIONS(3340), - [anon_sym___inline__] = ACTIONS(3340), - [anon_sym___forceinline] = ACTIONS(3340), - [anon_sym_thread_local] = ACTIONS(3340), - [anon_sym___thread] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_constexpr] = ACTIONS(3340), - [anon_sym_volatile] = ACTIONS(3340), - [anon_sym_restrict] = ACTIONS(3340), - [anon_sym___restrict__] = ACTIONS(3340), - [anon_sym__Atomic] = ACTIONS(3340), - [anon_sym__Noreturn] = ACTIONS(3340), - [anon_sym_noreturn] = ACTIONS(3340), - [anon_sym__Nonnull] = ACTIONS(3340), - [anon_sym_mutable] = ACTIONS(3340), - [anon_sym_constinit] = ACTIONS(3340), - [anon_sym_consteval] = ACTIONS(3340), - [anon_sym_alignas] = ACTIONS(3340), - [anon_sym__Alignas] = ACTIONS(3340), - [sym_primitive_type] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_struct] = ACTIONS(3340), - [anon_sym_union] = ACTIONS(3340), - [anon_sym_not] = ACTIONS(3340), - [anon_sym_compl] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_sizeof] = ACTIONS(3340), - [anon_sym___alignof__] = ACTIONS(3340), - [anon_sym___alignof] = ACTIONS(3340), - [anon_sym__alignof] = ACTIONS(3340), - [anon_sym_alignof] = ACTIONS(3340), - [anon_sym__Alignof] = ACTIONS(3340), - [anon_sym_offsetof] = ACTIONS(3340), - [anon_sym__Generic] = ACTIONS(3340), - [anon_sym_typename] = ACTIONS(3340), - [anon_sym_asm] = ACTIONS(3340), - [anon_sym___asm__] = ACTIONS(3340), - [anon_sym___asm] = ACTIONS(3340), - [sym_number_literal] = ACTIONS(3345), - [anon_sym_L_SQUOTE] = ACTIONS(3345), - [anon_sym_u_SQUOTE] = ACTIONS(3345), - [anon_sym_U_SQUOTE] = ACTIONS(3345), - [anon_sym_u8_SQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_L_DQUOTE] = ACTIONS(3345), - [anon_sym_u_DQUOTE] = ACTIONS(3345), - [anon_sym_U_DQUOTE] = ACTIONS(3345), - [anon_sym_u8_DQUOTE] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [anon_sym_NULL] = ACTIONS(3340), - [anon_sym_nullptr] = ACTIONS(3340), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3340), - [anon_sym_decltype] = ACTIONS(3340), - [anon_sym_template] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_R_DQUOTE] = ACTIONS(3345), - [anon_sym_LR_DQUOTE] = ACTIONS(3345), - [anon_sym_uR_DQUOTE] = ACTIONS(3345), - [anon_sym_UR_DQUOTE] = ACTIONS(3345), - [anon_sym_u8R_DQUOTE] = ACTIONS(3345), - [anon_sym_co_await] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_requires] = ACTIONS(3340), - [anon_sym_CARET_CARET] = ACTIONS(3345), - [anon_sym_LBRACK_COLON] = ACTIONS(3345), - [sym_this] = ACTIONS(3340), + [STATE(1982)] = { + [sym_identifier] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_BANG] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_DASH] = ACTIONS(3758), + [anon_sym_PLUS] = ACTIONS(3758), + [anon_sym_STAR] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3760), + [anon_sym___extension__] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym___attribute] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym_signed] = ACTIONS(3758), + [anon_sym_unsigned] = ACTIONS(3758), + [anon_sym_long] = ACTIONS(3758), + [anon_sym_short] = ACTIONS(3758), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym___restrict__] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym__Noreturn] = ACTIONS(3758), + [anon_sym_noreturn] = ACTIONS(3758), + [anon_sym__Nonnull] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_alignas] = ACTIONS(3758), + [anon_sym__Alignas] = ACTIONS(3758), + [sym_primitive_type] = ACTIONS(3758), + [anon_sym_enum] = ACTIONS(3758), + [anon_sym_class] = ACTIONS(3758), + [anon_sym_struct] = ACTIONS(3758), + [anon_sym_union] = ACTIONS(3758), + [anon_sym_not] = ACTIONS(3758), + [anon_sym_compl] = ACTIONS(3758), + [anon_sym_DASH_DASH] = ACTIONS(3760), + [anon_sym_PLUS_PLUS] = ACTIONS(3760), + [anon_sym_sizeof] = ACTIONS(3758), + [anon_sym___alignof__] = ACTIONS(3758), + [anon_sym___alignof] = ACTIONS(3758), + [anon_sym__alignof] = ACTIONS(3758), + [anon_sym_alignof] = ACTIONS(3758), + [anon_sym__Alignof] = ACTIONS(3758), + [anon_sym_offsetof] = ACTIONS(3758), + [anon_sym__Generic] = ACTIONS(3758), + [anon_sym_typename] = ACTIONS(3758), + [anon_sym_asm] = ACTIONS(3758), + [anon_sym___asm__] = ACTIONS(3758), + [anon_sym___asm] = ACTIONS(3758), + [sym_number_literal] = ACTIONS(3760), + [anon_sym_L_SQUOTE] = ACTIONS(3760), + [anon_sym_u_SQUOTE] = ACTIONS(3760), + [anon_sym_U_SQUOTE] = ACTIONS(3760), + [anon_sym_u8_SQUOTE] = ACTIONS(3760), + [anon_sym_SQUOTE] = ACTIONS(3760), + [anon_sym_L_DQUOTE] = ACTIONS(3760), + [anon_sym_u_DQUOTE] = ACTIONS(3760), + [anon_sym_U_DQUOTE] = ACTIONS(3760), + [anon_sym_u8_DQUOTE] = ACTIONS(3760), + [anon_sym_DQUOTE] = ACTIONS(3760), + [sym_true] = ACTIONS(3758), + [sym_false] = ACTIONS(3758), + [anon_sym_NULL] = ACTIONS(3758), + [anon_sym_nullptr] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_delete] = ACTIONS(3758), + [anon_sym_R_DQUOTE] = ACTIONS(3760), + [anon_sym_LR_DQUOTE] = ACTIONS(3760), + [anon_sym_uR_DQUOTE] = ACTIONS(3760), + [anon_sym_UR_DQUOTE] = ACTIONS(3760), + [anon_sym_u8R_DQUOTE] = ACTIONS(3760), + [anon_sym_co_await] = ACTIONS(3758), + [anon_sym_new] = ACTIONS(3758), + [anon_sym_requires] = ACTIONS(3758), + [anon_sym_CARET_CARET] = ACTIONS(3760), + [anon_sym_LBRACK_COLON] = ACTIONS(3760), + [sym_this] = ACTIONS(3758), }, - [STATE(1988)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(7549), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9074), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8555), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(4578), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7966), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6582), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(1983)] = { + [sym_identifier] = ACTIONS(4367), + [anon_sym_LPAREN2] = ACTIONS(4369), + [anon_sym_BANG] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_DASH] = ACTIONS(4367), + [anon_sym_PLUS] = ACTIONS(4367), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4369), + [anon_sym___extension__] = ACTIONS(4367), + [anon_sym_virtual] = ACTIONS(4367), + [anon_sym_extern] = ACTIONS(4367), + [anon_sym___attribute__] = ACTIONS(4367), + [anon_sym___attribute] = ACTIONS(4367), + [anon_sym_COLON_COLON] = ACTIONS(4369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4369), + [anon_sym___declspec] = ACTIONS(4367), + [anon_sym_signed] = ACTIONS(4367), + [anon_sym_unsigned] = ACTIONS(4367), + [anon_sym_long] = ACTIONS(4367), + [anon_sym_short] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4367), + [anon_sym_static] = ACTIONS(4367), + [anon_sym_register] = ACTIONS(4367), + [anon_sym_inline] = ACTIONS(4367), + [anon_sym___inline] = ACTIONS(4367), + [anon_sym___inline__] = ACTIONS(4367), + [anon_sym___forceinline] = ACTIONS(4367), + [anon_sym_thread_local] = ACTIONS(4367), + [anon_sym___thread] = ACTIONS(4367), + [anon_sym_const] = ACTIONS(4367), + [anon_sym_constexpr] = ACTIONS(4367), + [anon_sym_volatile] = ACTIONS(4367), + [anon_sym_restrict] = ACTIONS(4367), + [anon_sym___restrict__] = ACTIONS(4367), + [anon_sym__Atomic] = ACTIONS(4367), + [anon_sym__Noreturn] = ACTIONS(4367), + [anon_sym_noreturn] = ACTIONS(4367), + [anon_sym__Nonnull] = ACTIONS(4367), + [anon_sym_mutable] = ACTIONS(4367), + [anon_sym_constinit] = ACTIONS(4367), + [anon_sym_consteval] = ACTIONS(4367), + [anon_sym_alignas] = ACTIONS(4367), + [anon_sym__Alignas] = ACTIONS(4367), + [sym_primitive_type] = ACTIONS(4367), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_class] = ACTIONS(4367), + [anon_sym_struct] = ACTIONS(4367), + [anon_sym_union] = ACTIONS(4367), + [anon_sym_not] = ACTIONS(4367), + [anon_sym_compl] = ACTIONS(4367), + [anon_sym_DASH_DASH] = ACTIONS(4369), + [anon_sym_PLUS_PLUS] = ACTIONS(4369), + [anon_sym_sizeof] = ACTIONS(4367), + [anon_sym___alignof__] = ACTIONS(4367), + [anon_sym___alignof] = ACTIONS(4367), + [anon_sym__alignof] = ACTIONS(4367), + [anon_sym_alignof] = ACTIONS(4367), + [anon_sym__Alignof] = ACTIONS(4367), + [anon_sym_offsetof] = ACTIONS(4367), + [anon_sym__Generic] = ACTIONS(4367), + [anon_sym_typename] = ACTIONS(4367), + [anon_sym_asm] = ACTIONS(4367), + [anon_sym___asm__] = ACTIONS(4367), + [anon_sym___asm] = ACTIONS(4367), + [sym_number_literal] = ACTIONS(4369), + [anon_sym_L_SQUOTE] = ACTIONS(4369), + [anon_sym_u_SQUOTE] = ACTIONS(4369), + [anon_sym_U_SQUOTE] = ACTIONS(4369), + [anon_sym_u8_SQUOTE] = ACTIONS(4369), + [anon_sym_SQUOTE] = ACTIONS(4369), + [anon_sym_L_DQUOTE] = ACTIONS(4369), + [anon_sym_u_DQUOTE] = ACTIONS(4369), + [anon_sym_U_DQUOTE] = ACTIONS(4369), + [anon_sym_u8_DQUOTE] = ACTIONS(4369), + [anon_sym_DQUOTE] = ACTIONS(4369), + [sym_true] = ACTIONS(4367), + [sym_false] = ACTIONS(4367), + [anon_sym_NULL] = ACTIONS(4367), + [anon_sym_nullptr] = ACTIONS(4367), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4367), + [anon_sym_decltype] = ACTIONS(4367), + [anon_sym_template] = ACTIONS(4367), + [anon_sym_delete] = ACTIONS(4367), + [anon_sym_R_DQUOTE] = ACTIONS(4369), + [anon_sym_LR_DQUOTE] = ACTIONS(4369), + [anon_sym_uR_DQUOTE] = ACTIONS(4369), + [anon_sym_UR_DQUOTE] = ACTIONS(4369), + [anon_sym_u8R_DQUOTE] = ACTIONS(4369), + [anon_sym_co_await] = ACTIONS(4367), + [anon_sym_new] = ACTIONS(4367), + [anon_sym_requires] = ACTIONS(4367), + [anon_sym_CARET_CARET] = ACTIONS(4369), + [anon_sym_LBRACK_COLON] = ACTIONS(4369), + [sym_this] = ACTIONS(4367), + }, + [STATE(1984)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(7522), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9018), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8564), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(4577), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7914), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6576), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3446), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6586), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6580), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [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(3460), + [anon_sym_LBRACK] = ACTIONS(3458), [anon_sym_static] = ACTIONS(63), [anon_sym_register] = ACTIONS(63), [anon_sym_inline] = ACTIONS(63), @@ -312586,4552 +312119,4641 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(1985)] = { + [sym_identifier] = ACTIONS(3192), + [anon_sym_LPAREN2] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym___extension__] = ACTIONS(3192), + [anon_sym_virtual] = ACTIONS(3192), + [anon_sym_extern] = ACTIONS(3192), + [anon_sym___attribute__] = ACTIONS(3192), + [anon_sym___attribute] = ACTIONS(3192), + [anon_sym_COLON_COLON] = ACTIONS(3197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3197), + [anon_sym___declspec] = ACTIONS(3192), + [anon_sym_signed] = ACTIONS(3192), + [anon_sym_unsigned] = ACTIONS(3192), + [anon_sym_long] = ACTIONS(3192), + [anon_sym_short] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_register] = ACTIONS(3192), + [anon_sym_inline] = ACTIONS(3192), + [anon_sym___inline] = ACTIONS(3192), + [anon_sym___inline__] = ACTIONS(3192), + [anon_sym___forceinline] = ACTIONS(3192), + [anon_sym_thread_local] = ACTIONS(3192), + [anon_sym___thread] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_constexpr] = ACTIONS(3192), + [anon_sym_volatile] = ACTIONS(3192), + [anon_sym_restrict] = ACTIONS(3192), + [anon_sym___restrict__] = ACTIONS(3192), + [anon_sym__Atomic] = ACTIONS(3192), + [anon_sym__Noreturn] = ACTIONS(3192), + [anon_sym_noreturn] = ACTIONS(3192), + [anon_sym__Nonnull] = ACTIONS(3192), + [anon_sym_mutable] = ACTIONS(3192), + [anon_sym_constinit] = ACTIONS(3192), + [anon_sym_consteval] = ACTIONS(3192), + [anon_sym_alignas] = ACTIONS(3192), + [anon_sym__Alignas] = ACTIONS(3192), + [sym_primitive_type] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_struct] = ACTIONS(3192), + [anon_sym_union] = ACTIONS(3192), + [anon_sym_not] = ACTIONS(3192), + [anon_sym_compl] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_sizeof] = ACTIONS(3192), + [anon_sym___alignof__] = ACTIONS(3192), + [anon_sym___alignof] = ACTIONS(3192), + [anon_sym__alignof] = ACTIONS(3192), + [anon_sym_alignof] = ACTIONS(3192), + [anon_sym__Alignof] = ACTIONS(3192), + [anon_sym_offsetof] = ACTIONS(3192), + [anon_sym__Generic] = ACTIONS(3192), + [anon_sym_typename] = ACTIONS(3192), + [anon_sym_asm] = ACTIONS(3192), + [anon_sym___asm__] = ACTIONS(3192), + [anon_sym___asm] = ACTIONS(3192), + [sym_number_literal] = ACTIONS(3197), + [anon_sym_L_SQUOTE] = ACTIONS(3197), + [anon_sym_u_SQUOTE] = ACTIONS(3197), + [anon_sym_U_SQUOTE] = ACTIONS(3197), + [anon_sym_u8_SQUOTE] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3197), + [anon_sym_L_DQUOTE] = ACTIONS(3197), + [anon_sym_u_DQUOTE] = ACTIONS(3197), + [anon_sym_U_DQUOTE] = ACTIONS(3197), + [anon_sym_u8_DQUOTE] = ACTIONS(3197), + [anon_sym_DQUOTE] = ACTIONS(3197), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [anon_sym_NULL] = ACTIONS(3192), + [anon_sym_nullptr] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3192), + [anon_sym_decltype] = ACTIONS(3192), + [anon_sym_template] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_R_DQUOTE] = ACTIONS(3197), + [anon_sym_LR_DQUOTE] = ACTIONS(3197), + [anon_sym_uR_DQUOTE] = ACTIONS(3197), + [anon_sym_UR_DQUOTE] = ACTIONS(3197), + [anon_sym_u8R_DQUOTE] = ACTIONS(3197), + [anon_sym_co_await] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_requires] = ACTIONS(3192), + [anon_sym_CARET_CARET] = ACTIONS(3197), + [anon_sym_LBRACK_COLON] = ACTIONS(3197), + [sym_this] = ACTIONS(3192), + }, + [STATE(1986)] = { + [sym_string_literal] = STATE(2577), + [sym_decltype_auto] = STATE(2185), + [sym_template_argument_list] = STATE(2221), + [sym_raw_string_literal] = STATE(2577), + [aux_sym_sized_type_specifier_repeat1] = STATE(2198), + [sym_identifier] = ACTIONS(5621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [aux_sym_preproc_if_token2] = ACTIONS(5624), + [aux_sym_preproc_else_token1] = ACTIONS(5624), + [aux_sym_preproc_elif_token1] = ACTIONS(5621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(6750), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6754), + [anon_sym_unsigned] = ACTIONS(6754), + [anon_sym_long] = ACTIONS(6754), + [anon_sym_short] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5621), + [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), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_PERCENT_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_CARET_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), + [anon_sym_and_eq] = ACTIONS(5621), + [anon_sym_or_eq] = ACTIONS(5621), + [anon_sym_xor_eq] = ACTIONS(5621), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5621), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5621), + [anon_sym_not_eq] = ACTIONS(5621), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6756), + [anon_sym_decltype] = ACTIONS(6758), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + }, + [STATE(1987)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(4087), + [sym_template_argument_list] = STATE(3432), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(3274), + [sym_identifier] = ACTIONS(5621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [aux_sym_preproc_if_token2] = ACTIONS(5624), + [aux_sym_preproc_else_token1] = ACTIONS(5624), + [aux_sym_preproc_elif_token1] = ACTIONS(5621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(6760), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6764), + [anon_sym_unsigned] = ACTIONS(6764), + [anon_sym_long] = ACTIONS(6764), + [anon_sym_short] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(6766), + [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), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(6768), + [anon_sym_SLASH_EQ] = ACTIONS(6768), + [anon_sym_PERCENT_EQ] = ACTIONS(6768), + [anon_sym_PLUS_EQ] = ACTIONS(6768), + [anon_sym_DASH_EQ] = ACTIONS(6768), + [anon_sym_LT_LT_EQ] = ACTIONS(6768), + [anon_sym_GT_GT_EQ] = ACTIONS(6768), + [anon_sym_AMP_EQ] = ACTIONS(6768), + [anon_sym_CARET_EQ] = ACTIONS(6768), + [anon_sym_PIPE_EQ] = ACTIONS(6768), + [anon_sym_and_eq] = ACTIONS(6766), + [anon_sym_or_eq] = ACTIONS(6766), + [anon_sym_xor_eq] = ACTIONS(6766), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5621), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5621), + [anon_sym_not_eq] = ACTIONS(5621), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6770), + [anon_sym_decltype] = ACTIONS(6772), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + }, + [STATE(1988)] = { + [sym_string_literal] = STATE(2577), + [sym_decltype_auto] = STATE(2185), + [sym_template_argument_list] = STATE(2221), + [sym_raw_string_literal] = STATE(2577), + [aux_sym_sized_type_specifier_repeat1] = STATE(2254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(6750), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON] = ACTIONS(5621), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5624), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_signed] = ACTIONS(6774), + [anon_sym_unsigned] = ACTIONS(6774), + [anon_sym_long] = ACTIONS(6774), + [anon_sym_short] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5621), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_PERCENT_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_CARET_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), + [anon_sym_and_eq] = ACTIONS(5624), + [anon_sym_or_eq] = ACTIONS(5624), + [anon_sym_xor_eq] = ACTIONS(5624), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6776), + [anon_sym_decltype] = ACTIONS(6778), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_COLON_RBRACK] = ACTIONS(5624), }, [STATE(1989)] = { - [sym_attribute_specifier] = STATE(2255), - [sym_attribute_declaration] = STATE(4895), - [sym_type_qualifier] = STATE(2398), - [sym_alignas_qualifier] = STATE(2636), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym_ref_qualifier] = STATE(2673), - [sym__function_attributes_start] = STATE(2635), - [sym__function_exception_specification] = STATE(3351), - [sym__function_attributes_end] = STATE(4590), - [sym__function_postfix] = STATE(5711), - [sym_trailing_return_type] = STATE(4635), - [sym_noexcept] = STATE(3351), - [sym_throw_specifier] = STATE(3351), - [sym_requires_clause] = STATE(5711), - [aux_sym_type_definition_repeat1] = STATE(2255), - [aux_sym__type_definition_type_repeat1] = STATE(2398), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_RPAREN] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6756), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6759), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(6762), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6770), - [anon_sym_constexpr] = ACTIONS(6762), - [anon_sym_volatile] = ACTIONS(6762), - [anon_sym_restrict] = ACTIONS(6762), - [anon_sym___restrict__] = ACTIONS(6762), - [anon_sym__Atomic] = ACTIONS(6762), - [anon_sym__Noreturn] = ACTIONS(6762), - [anon_sym_noreturn] = ACTIONS(6762), - [anon_sym__Nonnull] = ACTIONS(6762), - [anon_sym_mutable] = ACTIONS(6762), - [anon_sym_constinit] = ACTIONS(6762), - [anon_sym_consteval] = ACTIONS(6762), - [anon_sym_alignas] = ACTIONS(6772), - [anon_sym__Alignas] = ACTIONS(6772), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6481), - [anon_sym_and] = ACTIONS(6481), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6481), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6774), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6777), - [anon_sym_override] = ACTIONS(6777), - [anon_sym_noexcept] = ACTIONS(6779), - [anon_sym_throw] = ACTIONS(6781), - [anon_sym_requires] = ACTIONS(6783), - [anon_sym_DASH_GT_STAR] = ACTIONS(6481), + [sym_attribute_specifier] = STATE(2261), + [sym_attribute_declaration] = STATE(4760), + [sym_type_qualifier] = STATE(2412), + [sym_alignas_qualifier] = STATE(2606), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym_ref_qualifier] = STATE(2696), + [sym__function_attributes_start] = STATE(2636), + [sym__function_exception_specification] = STATE(3479), + [sym__function_attributes_end] = STATE(4610), + [sym__function_postfix] = STATE(5643), + [sym_trailing_return_type] = STATE(4679), + [sym_noexcept] = STATE(3479), + [sym_throw_specifier] = STATE(3479), + [sym_requires_clause] = STATE(5643), + [aux_sym_type_definition_repeat1] = STATE(2261), + [aux_sym__type_definition_type_repeat1] = STATE(2412), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_RPAREN] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6780), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6783), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_mutable] = ACTIONS(6786), + [anon_sym_constinit] = ACTIONS(6786), + [anon_sym_consteval] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6796), + [anon_sym__Alignas] = ACTIONS(6796), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6471), + [anon_sym_and] = ACTIONS(6471), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6471), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_noexcept] = ACTIONS(6803), + [anon_sym_throw] = ACTIONS(6805), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(6471), }, [STATE(1990)] = { - [sym_string_literal] = STATE(2565), - [sym_decltype_auto] = STATE(2234), - [sym_template_argument_list] = STATE(2231), - [sym_raw_string_literal] = STATE(2565), - [aux_sym_sized_type_specifier_repeat1] = STATE(2279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_RPAREN] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6785), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON] = ACTIONS(5647), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5640), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5640), - [anon_sym_signed] = ACTIONS(6789), - [anon_sym_unsigned] = ACTIONS(6789), - [anon_sym_long] = ACTIONS(6789), - [anon_sym_short] = ACTIONS(6789), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(5640), - [anon_sym_SLASH_EQ] = ACTIONS(5640), - [anon_sym_PERCENT_EQ] = ACTIONS(5640), - [anon_sym_PLUS_EQ] = ACTIONS(5640), - [anon_sym_DASH_EQ] = ACTIONS(5640), - [anon_sym_LT_LT_EQ] = ACTIONS(5640), - [anon_sym_GT_GT_EQ] = ACTIONS(5640), - [anon_sym_AMP_EQ] = ACTIONS(5640), - [anon_sym_CARET_EQ] = ACTIONS(5640), - [anon_sym_PIPE_EQ] = ACTIONS(5640), - [anon_sym_and_eq] = ACTIONS(5640), - [anon_sym_or_eq] = ACTIONS(5640), - [anon_sym_xor_eq] = ACTIONS(5640), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6791), - [anon_sym_decltype] = ACTIONS(6793), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_COLON_RBRACK] = ACTIONS(5640), + [sym_attribute_specifier] = STATE(2261), + [sym_attribute_declaration] = STATE(4760), + [sym_type_qualifier] = STATE(2412), + [sym_alignas_qualifier] = STATE(2606), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym_ref_qualifier] = STATE(2691), + [sym__function_attributes_start] = STATE(2633), + [sym__function_exception_specification] = STATE(3447), + [sym__function_attributes_end] = STATE(4622), + [sym__function_postfix] = STATE(5643), + [sym_trailing_return_type] = STATE(4725), + [sym_noexcept] = STATE(3447), + [sym_throw_specifier] = STATE(3447), + [sym_requires_clause] = STATE(5643), + [aux_sym_type_definition_repeat1] = STATE(2261), + [aux_sym__type_definition_type_repeat1] = STATE(2412), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_RPAREN] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6469), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6469), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(6780), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6469), + [anon_sym_AMP] = ACTIONS(6783), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6469), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_mutable] = ACTIONS(6786), + [anon_sym_constinit] = ACTIONS(6786), + [anon_sym_consteval] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6796), + [anon_sym__Alignas] = ACTIONS(6796), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_STAR_EQ] = ACTIONS(6471), + [anon_sym_SLASH_EQ] = ACTIONS(6471), + [anon_sym_PERCENT_EQ] = ACTIONS(6471), + [anon_sym_PLUS_EQ] = ACTIONS(6471), + [anon_sym_DASH_EQ] = ACTIONS(6471), + [anon_sym_LT_LT_EQ] = ACTIONS(6471), + [anon_sym_GT_GT_EQ] = ACTIONS(6471), + [anon_sym_AMP_EQ] = ACTIONS(6471), + [anon_sym_CARET_EQ] = ACTIONS(6471), + [anon_sym_PIPE_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6471), + [anon_sym_and] = ACTIONS(6471), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6471), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(6798), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6809), + [anon_sym_override] = ACTIONS(6809), + [anon_sym_noexcept] = ACTIONS(6803), + [anon_sym_throw] = ACTIONS(6805), + [anon_sym_requires] = ACTIONS(6812), + [anon_sym_DASH_GT_STAR] = ACTIONS(6471), }, [STATE(1991)] = { - [sym_attribute_specifier] = STATE(2255), - [sym_attribute_declaration] = STATE(4895), - [sym_type_qualifier] = STATE(2398), - [sym_alignas_qualifier] = STATE(2636), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym_ref_qualifier] = STATE(2695), - [sym__function_attributes_start] = STATE(2611), - [sym__function_exception_specification] = STATE(3382), - [sym__function_attributes_end] = STATE(4568), - [sym__function_postfix] = STATE(5711), - [sym_trailing_return_type] = STATE(4677), - [sym_noexcept] = STATE(3382), - [sym_throw_specifier] = STATE(3382), - [sym_requires_clause] = STATE(5711), - [aux_sym_type_definition_repeat1] = STATE(2255), - [aux_sym__type_definition_type_repeat1] = STATE(2398), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_RPAREN] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6479), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6479), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(6756), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6479), - [anon_sym_AMP] = ACTIONS(6759), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6479), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(6762), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_EQ] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(6770), - [anon_sym_constexpr] = ACTIONS(6762), - [anon_sym_volatile] = ACTIONS(6762), - [anon_sym_restrict] = ACTIONS(6762), - [anon_sym___restrict__] = ACTIONS(6762), - [anon_sym__Atomic] = ACTIONS(6762), - [anon_sym__Noreturn] = ACTIONS(6762), - [anon_sym_noreturn] = ACTIONS(6762), - [anon_sym__Nonnull] = ACTIONS(6762), - [anon_sym_mutable] = ACTIONS(6762), - [anon_sym_constinit] = ACTIONS(6762), - [anon_sym_consteval] = ACTIONS(6762), - [anon_sym_alignas] = ACTIONS(6772), - [anon_sym__Alignas] = ACTIONS(6772), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_STAR_EQ] = ACTIONS(6481), - [anon_sym_SLASH_EQ] = ACTIONS(6481), - [anon_sym_PERCENT_EQ] = ACTIONS(6481), - [anon_sym_PLUS_EQ] = ACTIONS(6481), - [anon_sym_DASH_EQ] = ACTIONS(6481), - [anon_sym_LT_LT_EQ] = ACTIONS(6481), - [anon_sym_GT_GT_EQ] = ACTIONS(6481), - [anon_sym_AMP_EQ] = ACTIONS(6481), - [anon_sym_CARET_EQ] = ACTIONS(6481), - [anon_sym_PIPE_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6481), - [anon_sym_and] = ACTIONS(6481), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6481), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(6774), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6795), - [anon_sym_override] = ACTIONS(6795), - [anon_sym_noexcept] = ACTIONS(6779), - [anon_sym_throw] = ACTIONS(6781), - [anon_sym_requires] = ACTIONS(6798), - [anon_sym_DASH_GT_STAR] = ACTIONS(6481), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(1993), + [sym__abstract_declarator] = STATE(4174), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2100), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2100), + [aux_sym_pointer_declarator_repeat1] = STATE(1993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(6821), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(6825), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym_SEMI] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6819), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6815), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6831), + [sym_ms_signed_ptr_modifier] = ACTIONS(6831), + [anon_sym__unaligned] = ACTIONS(6833), + [anon_sym___unaligned] = ACTIONS(6833), + [anon_sym_RBRACE] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_COLON_RBRACK] = ACTIONS(6815), }, [STATE(1992)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(4116), - [sym_template_argument_list] = STATE(3449), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(3285), - [sym_identifier] = ACTIONS(5647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [aux_sym_preproc_if_token2] = ACTIONS(5640), - [aux_sym_preproc_else_token1] = ACTIONS(5640), - [aux_sym_preproc_elif_token1] = ACTIONS(5647), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6801), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6805), - [anon_sym_unsigned] = ACTIONS(6805), - [anon_sym_long] = ACTIONS(6805), - [anon_sym_short] = ACTIONS(6805), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(6807), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(6809), - [anon_sym_SLASH_EQ] = ACTIONS(6809), - [anon_sym_PERCENT_EQ] = ACTIONS(6809), - [anon_sym_PLUS_EQ] = ACTIONS(6809), - [anon_sym_DASH_EQ] = ACTIONS(6809), - [anon_sym_LT_LT_EQ] = ACTIONS(6809), - [anon_sym_GT_GT_EQ] = ACTIONS(6809), - [anon_sym_AMP_EQ] = ACTIONS(6809), - [anon_sym_CARET_EQ] = ACTIONS(6809), - [anon_sym_PIPE_EQ] = ACTIONS(6809), - [anon_sym_and_eq] = ACTIONS(6807), - [anon_sym_or_eq] = ACTIONS(6807), - [anon_sym_xor_eq] = ACTIONS(6807), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5647), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5647), - [anon_sym_not_eq] = ACTIONS(5647), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6811), - [anon_sym_decltype] = ACTIONS(6813), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(2021), + [sym__abstract_declarator] = STATE(4205), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2115), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1942), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2115), + [aux_sym_pointer_declarator_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(6841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [aux_sym_preproc_if_token2] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6847), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6849), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6851), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6829), + [sym_ms_signed_ptr_modifier] = ACTIONS(6829), + [anon_sym__unaligned] = ACTIONS(6853), + [anon_sym___unaligned] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6841), + [anon_sym_or_eq] = ACTIONS(6841), + [anon_sym_xor_eq] = ACTIONS(6841), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6841), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6841), + [anon_sym_not_eq] = ACTIONS(6841), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6841), + [anon_sym_override] = ACTIONS(6841), + [anon_sym_requires] = ACTIONS(6841), }, [STATE(1993)] = { - [sym_string_literal] = STATE(2565), - [sym_decltype_auto] = STATE(2234), - [sym_template_argument_list] = STATE(2231), - [sym_raw_string_literal] = STATE(2565), - [aux_sym_sized_type_specifier_repeat1] = STATE(2209), - [sym_identifier] = ACTIONS(5647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [aux_sym_preproc_if_token2] = ACTIONS(5640), - [aux_sym_preproc_else_token1] = ACTIONS(5640), - [aux_sym_preproc_elif_token1] = ACTIONS(5647), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5640), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6785), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6815), - [anon_sym_unsigned] = ACTIONS(6815), - [anon_sym_long] = ACTIONS(6815), - [anon_sym_short] = ACTIONS(6815), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(5640), - [anon_sym_SLASH_EQ] = ACTIONS(5640), - [anon_sym_PERCENT_EQ] = ACTIONS(5640), - [anon_sym_PLUS_EQ] = ACTIONS(5640), - [anon_sym_DASH_EQ] = ACTIONS(5640), - [anon_sym_LT_LT_EQ] = ACTIONS(5640), - [anon_sym_GT_GT_EQ] = ACTIONS(5640), - [anon_sym_AMP_EQ] = ACTIONS(5640), - [anon_sym_CARET_EQ] = ACTIONS(5640), - [anon_sym_PIPE_EQ] = ACTIONS(5640), - [anon_sym_and_eq] = ACTIONS(5647), - [anon_sym_or_eq] = ACTIONS(5647), - [anon_sym_xor_eq] = ACTIONS(5647), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5647), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5647), - [anon_sym_not_eq] = ACTIONS(5647), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6817), - [anon_sym_decltype] = ACTIONS(6819), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - }, - [STATE(1994)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(2028), - [sym__abstract_declarator] = STATE(4244), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2107), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1947), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2107), - [aux_sym_pointer_declarator_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(6821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [aux_sym_preproc_if_token2] = ACTIONS(6823), - [aux_sym_preproc_else_token1] = ACTIONS(6823), - [aux_sym_preproc_elif_token1] = ACTIONS(6821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6827), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(6829), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(6833), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6835), - [sym_ms_signed_ptr_modifier] = ACTIONS(6835), - [anon_sym__unaligned] = ACTIONS(6837), - [anon_sym___unaligned] = ACTIONS(6837), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6821), - [anon_sym_or_eq] = ACTIONS(6821), - [anon_sym_xor_eq] = ACTIONS(6821), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6821), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6821), - [anon_sym_not_eq] = ACTIONS(6821), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6821), - [anon_sym_override] = ACTIONS(6821), - [anon_sym_requires] = ACTIONS(6821), - }, - [STATE(1995)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(2028), - [sym__abstract_declarator] = STATE(4165), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(2021), + [sym__abstract_declarator] = STATE(4179), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), [sym_type_qualifier] = STATE(2102), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1953), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), [aux_sym__type_definition_type_repeat1] = STATE(2102), - [aux_sym_pointer_declarator_repeat1] = STATE(2028), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6843), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(6845), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6847), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), - [sym_ms_signed_ptr_modifier] = ACTIONS(6851), + [aux_sym_pointer_declarator_repeat1] = STATE(2021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6821), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6825), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6841), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6843), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6831), + [sym_ms_signed_ptr_modifier] = ACTIONS(6831), + [anon_sym__unaligned] = ACTIONS(6833), + [anon_sym___unaligned] = ACTIONS(6833), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + [anon_sym_COLON_RBRACK] = ACTIONS(6843), + }, + [STATE(1994)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(1992), + [sym__abstract_declarator] = STATE(4203), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2113), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1942), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2113), + [aux_sym_pointer_declarator_repeat1] = STATE(1992), + [sym_identifier] = ACTIONS(6819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [aux_sym_preproc_if_token2] = ACTIONS(6815), + [aux_sym_preproc_else_token1] = ACTIONS(6815), + [aux_sym_preproc_elif_token1] = ACTIONS(6819), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6815), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(6847), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(6849), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(6851), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6829), + [sym_ms_signed_ptr_modifier] = ACTIONS(6829), [anon_sym__unaligned] = ACTIONS(6853), [anon_sym___unaligned] = ACTIONS(6853), - [anon_sym_RBRACE] = ACTIONS(6823), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - [anon_sym_COLON_RBRACK] = ACTIONS(6823), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6819), + [anon_sym_or_eq] = ACTIONS(6819), + [anon_sym_xor_eq] = ACTIONS(6819), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6819), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6819), + [anon_sym_not_eq] = ACTIONS(6819), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6819), + [anon_sym_override] = ACTIONS(6819), + [anon_sym_requires] = ACTIONS(6819), + }, + [STATE(1995)] = { + [sym_template_argument_list] = STATE(2000), + [sym_identifier] = ACTIONS(6559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_RPAREN] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_TILDE] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6568), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_PIPE_PIPE] = ACTIONS(6561), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6568), + [anon_sym_CARET] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6561), + [anon_sym_BANG_EQ] = ACTIONS(6561), + [anon_sym_GT] = ACTIONS(6568), + [anon_sym_GT_EQ] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(6857), + [anon_sym_LT_LT] = ACTIONS(6568), + [anon_sym_GT_GT] = ACTIONS(6568), + [anon_sym___extension__] = ACTIONS(6559), + [anon_sym_virtual] = ACTIONS(6559), + [anon_sym_extern] = ACTIONS(6559), + [anon_sym___attribute__] = ACTIONS(6559), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6566), + [anon_sym___declspec] = ACTIONS(6559), + [anon_sym___based] = ACTIONS(6559), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6570), + [anon_sym_static] = ACTIONS(6559), + [anon_sym_EQ] = ACTIONS(6570), + [anon_sym_register] = ACTIONS(6559), + [anon_sym_inline] = ACTIONS(6559), + [anon_sym___inline] = ACTIONS(6559), + [anon_sym___inline__] = ACTIONS(6559), + [anon_sym___forceinline] = ACTIONS(6559), + [anon_sym_thread_local] = ACTIONS(6559), + [anon_sym___thread] = ACTIONS(6559), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6559), + [anon_sym_volatile] = ACTIONS(6559), + [anon_sym_restrict] = ACTIONS(6559), + [anon_sym___restrict__] = ACTIONS(6559), + [anon_sym__Atomic] = ACTIONS(6559), + [anon_sym__Noreturn] = ACTIONS(6559), + [anon_sym_noreturn] = ACTIONS(6559), + [anon_sym__Nonnull] = ACTIONS(6559), + [anon_sym_mutable] = ACTIONS(6559), + [anon_sym_constinit] = ACTIONS(6559), + [anon_sym_consteval] = ACTIONS(6559), + [anon_sym_alignas] = ACTIONS(6559), + [anon_sym__Alignas] = ACTIONS(6559), + [anon_sym_QMARK] = ACTIONS(6561), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6561), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6568), + [anon_sym_or_eq] = ACTIONS(6568), + [anon_sym_xor_eq] = ACTIONS(6568), + [anon_sym_LT_EQ_GT] = ACTIONS(6561), + [anon_sym_or] = ACTIONS(6568), + [anon_sym_and] = ACTIONS(6568), + [anon_sym_bitor] = ACTIONS(6568), + [anon_sym_xor] = ACTIONS(6568), + [anon_sym_bitand] = ACTIONS(6568), + [anon_sym_not_eq] = ACTIONS(6568), + [anon_sym_DASH_DASH] = ACTIONS(6561), + [anon_sym_PLUS_PLUS] = ACTIONS(6561), + [anon_sym_DOT] = ACTIONS(6568), + [anon_sym_DOT_STAR] = ACTIONS(6561), + [anon_sym_DASH_GT] = ACTIONS(6568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6559), + [anon_sym_decltype] = ACTIONS(6559), + [anon_sym_template] = ACTIONS(6559), + [anon_sym_operator] = ACTIONS(6559), + [anon_sym_DASH_GT_STAR] = ACTIONS(6561), + [anon_sym_LBRACK_COLON] = ACTIONS(6566), }, [STATE(1996)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(1995), - [sym__abstract_declarator] = STATE(4162), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2126), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1953), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2126), - [aux_sym_pointer_declarator_repeat1] = STATE(1995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(6843), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(6845), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(6847), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym_SEMI] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6859), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), - [sym_ms_signed_ptr_modifier] = ACTIONS(6851), - [anon_sym__unaligned] = ACTIONS(6853), - [anon_sym___unaligned] = ACTIONS(6853), - [anon_sym_RBRACE] = ACTIONS(6859), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6859), - [anon_sym_or_eq] = ACTIONS(6859), - [anon_sym_xor_eq] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), - [anon_sym_COLON_RBRACK] = ACTIONS(6859), + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(3215), + [sym_template_argument_list] = STATE(3432), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(6860), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_signed] = ACTIONS(6864), + [anon_sym_unsigned] = ACTIONS(6864), + [anon_sym_long] = ACTIONS(6864), + [anon_sym_short] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [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(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6866), + [anon_sym_decltype] = ACTIONS(6868), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_COLON_RBRACK] = ACTIONS(5624), }, [STATE(1997)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(1994), - [sym__abstract_declarator] = STATE(4242), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2128), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1947), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2128), - [aux_sym_pointer_declarator_repeat1] = STATE(1994), - [sym_identifier] = ACTIONS(6861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [aux_sym_preproc_if_token2] = ACTIONS(6859), - [aux_sym_preproc_else_token1] = ACTIONS(6859), - [aux_sym_preproc_elif_token1] = ACTIONS(6861), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(6827), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(6829), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(6833), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6835), - [sym_ms_signed_ptr_modifier] = ACTIONS(6835), - [anon_sym__unaligned] = ACTIONS(6837), - [anon_sym___unaligned] = ACTIONS(6837), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6861), - [anon_sym_or_eq] = ACTIONS(6861), - [anon_sym_xor_eq] = ACTIONS(6861), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6861), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6861), - [anon_sym_not_eq] = ACTIONS(6861), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6861), - [anon_sym_override] = ACTIONS(6861), - [anon_sym_requires] = ACTIONS(6861), + [sym_identifier] = ACTIONS(6614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_TILDE] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym_virtual] = ACTIONS(6614), + [anon_sym_extern] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6616), + [anon_sym___declspec] = ACTIONS(6614), + [anon_sym___based] = ACTIONS(6614), + [anon_sym___cdecl] = ACTIONS(6614), + [anon_sym___clrcall] = ACTIONS(6614), + [anon_sym___stdcall] = ACTIONS(6614), + [anon_sym___fastcall] = ACTIONS(6614), + [anon_sym___thiscall] = ACTIONS(6614), + [anon_sym___vectorcall] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_RBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_static] = ACTIONS(6614), + [anon_sym_RBRACK] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_register] = ACTIONS(6614), + [anon_sym_inline] = ACTIONS(6614), + [anon_sym___inline] = ACTIONS(6614), + [anon_sym___inline__] = ACTIONS(6614), + [anon_sym___forceinline] = ACTIONS(6614), + [anon_sym_thread_local] = ACTIONS(6614), + [anon_sym___thread] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(6614), + [anon_sym_operator] = ACTIONS(6614), + [anon_sym_noexcept] = ACTIONS(6614), + [anon_sym_throw] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(6616), }, [STATE(1998)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(3203), - [sym_template_argument_list] = STATE(3449), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(3552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_RPAREN] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6863), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5640), - [anon_sym_signed] = ACTIONS(6867), - [anon_sym_unsigned] = ACTIONS(6867), - [anon_sym_long] = ACTIONS(6867), - [anon_sym_short] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6869), - [anon_sym_decltype] = ACTIONS(6871), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_COLON_RBRACK] = ACTIONS(5640), + [sym_type_qualifier] = STATE(2018), + [sym_alignas_qualifier] = STATE(2060), + [aux_sym__type_definition_type_repeat1] = STATE(2018), + [sym_identifier] = ACTIONS(6870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6872), + [anon_sym_COMMA] = ACTIONS(6872), + [anon_sym_RPAREN] = ACTIONS(6872), + [aux_sym_preproc_if_token2] = ACTIONS(6872), + [aux_sym_preproc_else_token1] = ACTIONS(6872), + [aux_sym_preproc_elif_token1] = ACTIONS(6870), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6872), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6872), + [anon_sym_LPAREN2] = ACTIONS(6872), + [anon_sym_DASH] = ACTIONS(6870), + [anon_sym_PLUS] = ACTIONS(6870), + [anon_sym_STAR] = ACTIONS(6870), + [anon_sym_SLASH] = ACTIONS(6870), + [anon_sym_PERCENT] = ACTIONS(6870), + [anon_sym_PIPE_PIPE] = ACTIONS(6872), + [anon_sym_AMP_AMP] = ACTIONS(6872), + [anon_sym_PIPE] = ACTIONS(6870), + [anon_sym_CARET] = ACTIONS(6870), + [anon_sym_AMP] = ACTIONS(6870), + [anon_sym_EQ_EQ] = ACTIONS(6872), + [anon_sym_BANG_EQ] = ACTIONS(6872), + [anon_sym_GT] = ACTIONS(6870), + [anon_sym_GT_EQ] = ACTIONS(6872), + [anon_sym_LT_EQ] = ACTIONS(6870), + [anon_sym_LT] = ACTIONS(6870), + [anon_sym_LT_LT] = ACTIONS(6870), + [anon_sym_GT_GT] = ACTIONS(6870), + [anon_sym_SEMI] = ACTIONS(6872), + [anon_sym___extension__] = ACTIONS(6479), + [anon_sym___attribute__] = ACTIONS(6870), + [anon_sym___attribute] = ACTIONS(6870), + [anon_sym_COLON] = ACTIONS(6870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6872), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6872), + [anon_sym_RBRACE] = ACTIONS(6872), + [anon_sym_LBRACK] = ACTIONS(6870), + [anon_sym_EQ] = ACTIONS(6870), + [anon_sym_const] = ACTIONS(6479), + [anon_sym_constexpr] = ACTIONS(6479), + [anon_sym_volatile] = ACTIONS(6479), + [anon_sym_restrict] = ACTIONS(6479), + [anon_sym___restrict__] = ACTIONS(6479), + [anon_sym__Atomic] = ACTIONS(6479), + [anon_sym__Noreturn] = ACTIONS(6479), + [anon_sym_noreturn] = ACTIONS(6479), + [anon_sym__Nonnull] = ACTIONS(6479), + [anon_sym_mutable] = ACTIONS(6479), + [anon_sym_constinit] = ACTIONS(6479), + [anon_sym_consteval] = ACTIONS(6479), + [anon_sym_alignas] = ACTIONS(6485), + [anon_sym__Alignas] = ACTIONS(6485), + [anon_sym_QMARK] = ACTIONS(6872), + [anon_sym_STAR_EQ] = ACTIONS(6872), + [anon_sym_SLASH_EQ] = ACTIONS(6872), + [anon_sym_PERCENT_EQ] = ACTIONS(6872), + [anon_sym_PLUS_EQ] = ACTIONS(6872), + [anon_sym_DASH_EQ] = ACTIONS(6872), + [anon_sym_LT_LT_EQ] = ACTIONS(6872), + [anon_sym_GT_GT_EQ] = ACTIONS(6872), + [anon_sym_AMP_EQ] = ACTIONS(6872), + [anon_sym_CARET_EQ] = ACTIONS(6872), + [anon_sym_PIPE_EQ] = ACTIONS(6872), + [anon_sym_and_eq] = ACTIONS(6870), + [anon_sym_or_eq] = ACTIONS(6870), + [anon_sym_xor_eq] = ACTIONS(6870), + [anon_sym_LT_EQ_GT] = ACTIONS(6872), + [anon_sym_or] = ACTIONS(6870), + [anon_sym_and] = ACTIONS(6870), + [anon_sym_bitor] = ACTIONS(6870), + [anon_sym_xor] = ACTIONS(6870), + [anon_sym_bitand] = ACTIONS(6870), + [anon_sym_not_eq] = ACTIONS(6870), + [anon_sym_DASH_DASH] = ACTIONS(6872), + [anon_sym_PLUS_PLUS] = ACTIONS(6872), + [anon_sym_asm] = ACTIONS(6870), + [anon_sym___asm__] = ACTIONS(6870), + [anon_sym___asm] = ACTIONS(6870), + [anon_sym_DOT] = ACTIONS(6870), + [anon_sym_DOT_STAR] = ACTIONS(6872), + [anon_sym_DASH_GT] = ACTIONS(6872), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6870), + [anon_sym_override] = ACTIONS(6870), + [anon_sym_noexcept] = ACTIONS(6870), + [anon_sym_throw] = ACTIONS(6870), + [anon_sym_requires] = ACTIONS(6870), + [anon_sym_COLON_RBRACK] = ACTIONS(6872), }, [STATE(1999)] = { - [sym_template_argument_list] = STATE(2003), - [sym_identifier] = ACTIONS(6565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_RPAREN] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_TILDE] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6574), - [anon_sym_PLUS] = ACTIONS(6574), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6574), - [anon_sym_PIPE_PIPE] = ACTIONS(6567), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6574), - [anon_sym_CARET] = ACTIONS(6574), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6567), - [anon_sym_BANG_EQ] = ACTIONS(6567), - [anon_sym_GT] = ACTIONS(6574), - [anon_sym_GT_EQ] = ACTIONS(6567), - [anon_sym_LT_EQ] = ACTIONS(6574), - [anon_sym_LT] = ACTIONS(6873), - [anon_sym_LT_LT] = ACTIONS(6574), - [anon_sym_GT_GT] = ACTIONS(6574), - [anon_sym___extension__] = ACTIONS(6565), - [anon_sym_virtual] = ACTIONS(6565), - [anon_sym_extern] = ACTIONS(6565), - [anon_sym___attribute__] = ACTIONS(6565), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6572), - [anon_sym___declspec] = ACTIONS(6565), - [anon_sym___based] = ACTIONS(6565), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6576), - [anon_sym_static] = ACTIONS(6565), - [anon_sym_EQ] = ACTIONS(6576), - [anon_sym_register] = ACTIONS(6565), - [anon_sym_inline] = ACTIONS(6565), - [anon_sym___inline] = ACTIONS(6565), - [anon_sym___inline__] = ACTIONS(6565), - [anon_sym___forceinline] = ACTIONS(6565), - [anon_sym_thread_local] = ACTIONS(6565), - [anon_sym___thread] = ACTIONS(6565), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6565), - [anon_sym_volatile] = ACTIONS(6565), - [anon_sym_restrict] = ACTIONS(6565), - [anon_sym___restrict__] = ACTIONS(6565), - [anon_sym__Atomic] = ACTIONS(6565), - [anon_sym__Noreturn] = ACTIONS(6565), - [anon_sym_noreturn] = ACTIONS(6565), - [anon_sym__Nonnull] = ACTIONS(6565), - [anon_sym_mutable] = ACTIONS(6565), - [anon_sym_constinit] = ACTIONS(6565), - [anon_sym_consteval] = ACTIONS(6565), - [anon_sym_alignas] = ACTIONS(6565), - [anon_sym__Alignas] = ACTIONS(6565), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6567), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6574), - [anon_sym_or_eq] = ACTIONS(6574), - [anon_sym_xor_eq] = ACTIONS(6574), - [anon_sym_LT_EQ_GT] = ACTIONS(6567), - [anon_sym_or] = ACTIONS(6574), - [anon_sym_and] = ACTIONS(6574), - [anon_sym_bitor] = ACTIONS(6574), - [anon_sym_xor] = ACTIONS(6574), - [anon_sym_bitand] = ACTIONS(6574), - [anon_sym_not_eq] = ACTIONS(6574), - [anon_sym_DASH_DASH] = ACTIONS(6567), - [anon_sym_PLUS_PLUS] = ACTIONS(6567), - [anon_sym_DOT] = ACTIONS(6574), - [anon_sym_DOT_STAR] = ACTIONS(6567), - [anon_sym_DASH_GT] = ACTIONS(6574), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6565), - [anon_sym_decltype] = ACTIONS(6565), - [anon_sym_template] = ACTIONS(6565), - [anon_sym_operator] = ACTIONS(6565), - [anon_sym_DASH_GT_STAR] = ACTIONS(6567), - [anon_sym_LBRACK_COLON] = ACTIONS(6572), + [sym_string_literal] = STATE(3584), + [sym_decltype_auto] = STATE(2185), + [sym_template_argument_list] = STATE(2221), + [sym_raw_string_literal] = STATE(3584), + [aux_sym_sized_type_specifier_repeat1] = STATE(2254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(6750), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym___attribute__] = ACTIONS(5624), + [anon_sym___attribute] = ACTIONS(5621), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6774), + [anon_sym_unsigned] = ACTIONS(6774), + [anon_sym_long] = ACTIONS(6774), + [anon_sym_short] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5621), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_PERCENT_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_CARET_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), + [anon_sym_and_eq] = ACTIONS(5624), + [anon_sym_or_eq] = ACTIONS(5624), + [anon_sym_xor_eq] = ACTIONS(5624), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(6874), + [anon_sym_u_DQUOTE] = ACTIONS(6874), + [anon_sym_U_DQUOTE] = ACTIONS(6874), + [anon_sym_u8_DQUOTE] = ACTIONS(6874), + [anon_sym_DQUOTE] = ACTIONS(6874), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6776), + [anon_sym_decltype] = ACTIONS(6778), + [anon_sym_R_DQUOTE] = ACTIONS(6876), + [anon_sym_LR_DQUOTE] = ACTIONS(6876), + [anon_sym_uR_DQUOTE] = ACTIONS(6876), + [anon_sym_UR_DQUOTE] = ACTIONS(6876), + [anon_sym_u8R_DQUOTE] = ACTIONS(6876), }, [STATE(2000)] = { - [sym_string_literal] = STATE(3589), - [sym_decltype_auto] = STATE(2234), - [sym_template_argument_list] = STATE(2231), - [sym_raw_string_literal] = STATE(3589), - [aux_sym_sized_type_specifier_repeat1] = STATE(2279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6785), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym___attribute__] = ACTIONS(5640), - [anon_sym___attribute] = ACTIONS(5647), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6789), - [anon_sym_unsigned] = ACTIONS(6789), - [anon_sym_long] = ACTIONS(6789), - [anon_sym_short] = ACTIONS(6789), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(5640), - [anon_sym_SLASH_EQ] = ACTIONS(5640), - [anon_sym_PERCENT_EQ] = ACTIONS(5640), - [anon_sym_PLUS_EQ] = ACTIONS(5640), - [anon_sym_DASH_EQ] = ACTIONS(5640), - [anon_sym_LT_LT_EQ] = ACTIONS(5640), - [anon_sym_GT_GT_EQ] = ACTIONS(5640), - [anon_sym_AMP_EQ] = ACTIONS(5640), - [anon_sym_CARET_EQ] = ACTIONS(5640), - [anon_sym_PIPE_EQ] = ACTIONS(5640), - [anon_sym_and_eq] = ACTIONS(5640), - [anon_sym_or_eq] = ACTIONS(5640), - [anon_sym_xor_eq] = ACTIONS(5640), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(6876), - [anon_sym_u_DQUOTE] = ACTIONS(6876), - [anon_sym_U_DQUOTE] = ACTIONS(6876), - [anon_sym_u8_DQUOTE] = ACTIONS(6876), - [anon_sym_DQUOTE] = ACTIONS(6876), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6791), - [anon_sym_decltype] = ACTIONS(6793), - [anon_sym_R_DQUOTE] = ACTIONS(6878), - [anon_sym_LR_DQUOTE] = ACTIONS(6878), - [anon_sym_uR_DQUOTE] = ACTIONS(6878), - [anon_sym_UR_DQUOTE] = ACTIONS(6878), - [anon_sym_u8R_DQUOTE] = ACTIONS(6878), + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RPAREN] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6658), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6658), + [anon_sym_GT_GT] = ACTIONS(6658), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym_virtual] = ACTIONS(6649), + [anon_sym_extern] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6656), + [anon_sym___declspec] = ACTIONS(6649), + [anon_sym___based] = ACTIONS(6649), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6660), + [anon_sym_static] = ACTIONS(6649), + [anon_sym_EQ] = ACTIONS(6660), + [anon_sym_register] = ACTIONS(6649), + [anon_sym_inline] = ACTIONS(6649), + [anon_sym___inline] = ACTIONS(6649), + [anon_sym___inline__] = ACTIONS(6649), + [anon_sym___forceinline] = ACTIONS(6649), + [anon_sym_thread_local] = ACTIONS(6649), + [anon_sym___thread] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6658), + [anon_sym_or_eq] = ACTIONS(6658), + [anon_sym_xor_eq] = ACTIONS(6658), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6658), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6658), + [anon_sym_not_eq] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_template] = ACTIONS(6649), + [anon_sym_operator] = ACTIONS(6649), + [anon_sym_DASH_GT_STAR] = ACTIONS(6651), + [anon_sym_LBRACK_COLON] = ACTIONS(6656), }, [STATE(2001)] = { - [sym_type_qualifier] = STATE(2017), - [sym_alignas_qualifier] = STATE(2059), - [aux_sym__type_definition_type_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(6752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_RPAREN] = ACTIONS(6754), - [aux_sym_preproc_if_token2] = ACTIONS(6754), - [aux_sym_preproc_else_token1] = ACTIONS(6754), - [aux_sym_preproc_elif_token1] = ACTIONS(6752), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6754), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6752), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6752), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym_SEMI] = ACTIONS(6754), - [anon_sym___extension__] = ACTIONS(6489), - [anon_sym___attribute__] = ACTIONS(6752), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_COLON] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6754), - [anon_sym_RBRACE] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_EQ] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(6489), - [anon_sym_constexpr] = ACTIONS(6489), - [anon_sym_volatile] = ACTIONS(6489), - [anon_sym_restrict] = ACTIONS(6489), - [anon_sym___restrict__] = ACTIONS(6489), - [anon_sym__Atomic] = ACTIONS(6489), - [anon_sym__Noreturn] = ACTIONS(6489), - [anon_sym_noreturn] = ACTIONS(6489), - [anon_sym__Nonnull] = ACTIONS(6489), - [anon_sym_mutable] = ACTIONS(6489), - [anon_sym_constinit] = ACTIONS(6489), - [anon_sym_consteval] = ACTIONS(6489), - [anon_sym_alignas] = ACTIONS(6495), - [anon_sym__Alignas] = ACTIONS(6495), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_STAR_EQ] = ACTIONS(6754), - [anon_sym_SLASH_EQ] = ACTIONS(6754), - [anon_sym_PERCENT_EQ] = ACTIONS(6754), - [anon_sym_PLUS_EQ] = ACTIONS(6754), - [anon_sym_DASH_EQ] = ACTIONS(6754), - [anon_sym_LT_LT_EQ] = ACTIONS(6754), - [anon_sym_GT_GT_EQ] = ACTIONS(6754), - [anon_sym_AMP_EQ] = ACTIONS(6754), - [anon_sym_CARET_EQ] = ACTIONS(6754), - [anon_sym_PIPE_EQ] = ACTIONS(6754), - [anon_sym_and_eq] = ACTIONS(6752), - [anon_sym_or_eq] = ACTIONS(6752), - [anon_sym_xor_eq] = ACTIONS(6752), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6752), - [anon_sym_and] = ACTIONS(6752), - [anon_sym_bitor] = ACTIONS(6752), - [anon_sym_xor] = ACTIONS(6752), - [anon_sym_bitand] = ACTIONS(6752), - [anon_sym_not_eq] = ACTIONS(6752), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6752), - [anon_sym___asm__] = ACTIONS(6752), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6752), - [anon_sym_override] = ACTIONS(6752), - [anon_sym_noexcept] = ACTIONS(6752), - [anon_sym_throw] = ACTIONS(6752), - [anon_sym_requires] = ACTIONS(6752), - [anon_sym_COLON_RBRACK] = ACTIONS(6754), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_RPAREN] = ACTIONS(6880), + [aux_sym_preproc_if_token2] = ACTIONS(6880), + [aux_sym_preproc_else_token1] = ACTIONS(6880), + [aux_sym_preproc_elif_token1] = ACTIONS(6878), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym_SEMI] = ACTIONS(6880), + [anon_sym___extension__] = ACTIONS(6882), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_COLON] = ACTIONS(6878), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6880), + [anon_sym_LBRACE] = ACTIONS(6880), + [anon_sym_RBRACE] = ACTIONS(6880), + [anon_sym_signed] = ACTIONS(6878), + [anon_sym_unsigned] = ACTIONS(6878), + [anon_sym_long] = ACTIONS(6878), + [anon_sym_short] = ACTIONS(6878), + [anon_sym_LBRACK] = ACTIONS(6880), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(6882), + [anon_sym_constexpr] = ACTIONS(6882), + [anon_sym_volatile] = ACTIONS(6882), + [anon_sym_restrict] = ACTIONS(6882), + [anon_sym___restrict__] = ACTIONS(6882), + [anon_sym__Atomic] = ACTIONS(6882), + [anon_sym__Noreturn] = ACTIONS(6882), + [anon_sym_noreturn] = ACTIONS(6882), + [anon_sym__Nonnull] = ACTIONS(6882), + [anon_sym_mutable] = ACTIONS(6882), + [anon_sym_constinit] = ACTIONS(6882), + [anon_sym_consteval] = ACTIONS(6882), + [anon_sym_alignas] = ACTIONS(6885), + [anon_sym__Alignas] = ACTIONS(6885), + [sym_primitive_type] = ACTIONS(6878), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6880), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_and_eq] = ACTIONS(6878), + [anon_sym_or_eq] = ACTIONS(6878), + [anon_sym_xor_eq] = ACTIONS(6878), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6878), + [anon_sym_COLON_RBRACK] = ACTIONS(6880), }, [STATE(2002)] = { - [sym_template_argument_list] = STATE(2031), - [sym_identifier] = ACTIONS(6565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_RPAREN] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_TILDE] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6574), - [anon_sym_PLUS] = ACTIONS(6574), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6574), - [anon_sym_PIPE_PIPE] = ACTIONS(6567), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6574), - [anon_sym_CARET] = ACTIONS(6574), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6567), - [anon_sym_BANG_EQ] = ACTIONS(6567), - [anon_sym_GT] = ACTIONS(6574), - [anon_sym_GT_EQ] = ACTIONS(6567), - [anon_sym_LT_EQ] = ACTIONS(6574), - [anon_sym_LT] = ACTIONS(6579), - [anon_sym_LT_LT] = ACTIONS(6574), - [anon_sym_GT_GT] = ACTIONS(6574), - [anon_sym___extension__] = ACTIONS(6565), - [anon_sym_virtual] = ACTIONS(6565), - [anon_sym_extern] = ACTIONS(6565), - [anon_sym___attribute__] = ACTIONS(6565), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6572), - [anon_sym___declspec] = ACTIONS(6565), - [anon_sym___based] = ACTIONS(6565), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6576), - [anon_sym_static] = ACTIONS(6565), - [anon_sym_EQ] = ACTIONS(6576), - [anon_sym_register] = ACTIONS(6565), - [anon_sym_inline] = ACTIONS(6565), - [anon_sym___inline] = ACTIONS(6565), - [anon_sym___inline__] = ACTIONS(6565), - [anon_sym___forceinline] = ACTIONS(6565), - [anon_sym_thread_local] = ACTIONS(6565), - [anon_sym___thread] = ACTIONS(6565), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6565), - [anon_sym_volatile] = ACTIONS(6565), - [anon_sym_restrict] = ACTIONS(6565), - [anon_sym___restrict__] = ACTIONS(6565), - [anon_sym__Atomic] = ACTIONS(6565), - [anon_sym__Noreturn] = ACTIONS(6565), - [anon_sym_noreturn] = ACTIONS(6565), - [anon_sym__Nonnull] = ACTIONS(6565), - [anon_sym_mutable] = ACTIONS(6565), - [anon_sym_constinit] = ACTIONS(6565), - [anon_sym_consteval] = ACTIONS(6565), - [anon_sym_alignas] = ACTIONS(6565), - [anon_sym__Alignas] = ACTIONS(6565), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6567), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6574), - [anon_sym_or_eq] = ACTIONS(6574), - [anon_sym_xor_eq] = ACTIONS(6574), - [anon_sym_LT_EQ_GT] = ACTIONS(6567), - [anon_sym_or] = ACTIONS(6574), - [anon_sym_and] = ACTIONS(6574), - [anon_sym_bitor] = ACTIONS(6574), - [anon_sym_xor] = ACTIONS(6574), - [anon_sym_bitand] = ACTIONS(6574), - [anon_sym_not_eq] = ACTIONS(6574), - [anon_sym_DASH_DASH] = ACTIONS(6567), - [anon_sym_PLUS_PLUS] = ACTIONS(6567), - [anon_sym_DOT] = ACTIONS(6574), - [anon_sym_DOT_STAR] = ACTIONS(6567), - [anon_sym_DASH_GT] = ACTIONS(6567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6565), - [anon_sym_decltype] = ACTIONS(6565), - [anon_sym_template] = ACTIONS(6565), - [anon_sym_operator] = ACTIONS(6565), - [anon_sym_LBRACK_COLON] = ACTIONS(6572), + [sym_identifier] = ACTIONS(6602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_TILDE] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6604), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym_SEMI] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(6602), + [anon_sym_virtual] = ACTIONS(6602), + [anon_sym_extern] = ACTIONS(6602), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6604), + [anon_sym___declspec] = ACTIONS(6602), + [anon_sym___based] = ACTIONS(6602), + [anon_sym___cdecl] = ACTIONS(6602), + [anon_sym___clrcall] = ACTIONS(6602), + [anon_sym___stdcall] = ACTIONS(6602), + [anon_sym___fastcall] = ACTIONS(6602), + [anon_sym___thiscall] = ACTIONS(6602), + [anon_sym___vectorcall] = ACTIONS(6602), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_RBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_static] = ACTIONS(6602), + [anon_sym_RBRACK] = ACTIONS(6604), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_register] = ACTIONS(6602), + [anon_sym_inline] = ACTIONS(6602), + [anon_sym___inline] = ACTIONS(6602), + [anon_sym___inline__] = ACTIONS(6602), + [anon_sym___forceinline] = ACTIONS(6602), + [anon_sym_thread_local] = ACTIONS(6602), + [anon_sym___thread] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6602), + [anon_sym_decltype] = ACTIONS(6602), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(6602), + [anon_sym_operator] = ACTIONS(6602), + [anon_sym_noexcept] = ACTIONS(6602), + [anon_sym_throw] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(6604), }, [STATE(2003)] = { - [sym_identifier] = ACTIONS(6594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_RPAREN] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_TILDE] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6603), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6603), - [anon_sym_GT_GT] = ACTIONS(6603), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym_virtual] = ACTIONS(6594), - [anon_sym_extern] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), - [anon_sym___declspec] = ACTIONS(6594), - [anon_sym___based] = ACTIONS(6594), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6605), - [anon_sym_static] = ACTIONS(6594), - [anon_sym_EQ] = ACTIONS(6605), - [anon_sym_register] = ACTIONS(6594), - [anon_sym_inline] = ACTIONS(6594), - [anon_sym___inline] = ACTIONS(6594), - [anon_sym___inline__] = ACTIONS(6594), - [anon_sym___forceinline] = ACTIONS(6594), - [anon_sym_thread_local] = ACTIONS(6594), - [anon_sym___thread] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6603), - [anon_sym_or_eq] = ACTIONS(6603), - [anon_sym_xor_eq] = ACTIONS(6603), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6603), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6603), - [anon_sym_not_eq] = ACTIONS(6603), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_template] = ACTIONS(6594), - [anon_sym_operator] = ACTIONS(6594), - [anon_sym_DASH_GT_STAR] = ACTIONS(6596), - [anon_sym_LBRACK_COLON] = ACTIONS(6601), + [sym_identifier] = ACTIONS(6606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_TILDE] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym_SEMI] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6606), + [anon_sym_virtual] = ACTIONS(6606), + [anon_sym_extern] = ACTIONS(6606), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6608), + [anon_sym___declspec] = ACTIONS(6606), + [anon_sym___based] = ACTIONS(6606), + [anon_sym___cdecl] = ACTIONS(6606), + [anon_sym___clrcall] = ACTIONS(6606), + [anon_sym___stdcall] = ACTIONS(6606), + [anon_sym___fastcall] = ACTIONS(6606), + [anon_sym___thiscall] = ACTIONS(6606), + [anon_sym___vectorcall] = ACTIONS(6606), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_RBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6606), + [anon_sym_static] = ACTIONS(6606), + [anon_sym_RBRACK] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_register] = ACTIONS(6606), + [anon_sym_inline] = ACTIONS(6606), + [anon_sym___inline] = ACTIONS(6606), + [anon_sym___inline__] = ACTIONS(6606), + [anon_sym___forceinline] = ACTIONS(6606), + [anon_sym_thread_local] = ACTIONS(6606), + [anon_sym___thread] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6606), + [anon_sym_volatile] = ACTIONS(6606), + [anon_sym_restrict] = ACTIONS(6606), + [anon_sym___restrict__] = ACTIONS(6606), + [anon_sym__Atomic] = ACTIONS(6606), + [anon_sym__Noreturn] = ACTIONS(6606), + [anon_sym_noreturn] = ACTIONS(6606), + [anon_sym__Nonnull] = ACTIONS(6606), + [anon_sym_mutable] = ACTIONS(6606), + [anon_sym_constinit] = ACTIONS(6606), + [anon_sym_consteval] = ACTIONS(6606), + [anon_sym_alignas] = ACTIONS(6606), + [anon_sym__Alignas] = ACTIONS(6606), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6606), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6606), + [anon_sym_not_eq] = ACTIONS(6606), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6606), + [anon_sym_decltype] = ACTIONS(6606), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(6606), + [anon_sym_operator] = ACTIONS(6606), + [anon_sym_noexcept] = ACTIONS(6606), + [anon_sym_throw] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(6608), }, [STATE(2004)] = { - [sym_string_literal] = STATE(3632), - [sym_decltype_auto] = STATE(3203), - [sym_template_argument_list] = STATE(2846), - [sym_raw_string_literal] = STATE(3632), - [aux_sym_sized_type_specifier_repeat1] = STATE(3552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(5669), - [anon_sym_LPAREN2] = ACTIONS(5669), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(6880), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6883), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6867), - [anon_sym_unsigned] = ACTIONS(6867), - [anon_sym_long] = ACTIONS(6867), - [anon_sym_short] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(5678), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5645), - [anon_sym_L_DQUOTE] = ACTIONS(6885), - [anon_sym_u_DQUOTE] = ACTIONS(6885), - [anon_sym_U_DQUOTE] = ACTIONS(6885), - [anon_sym_u8_DQUOTE] = ACTIONS(6885), - [anon_sym_DQUOTE] = ACTIONS(6885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6869), - [anon_sym_decltype] = ACTIONS(6871), - [anon_sym_R_DQUOTE] = ACTIONS(6887), - [anon_sym_LR_DQUOTE] = ACTIONS(6887), - [anon_sym_uR_DQUOTE] = ACTIONS(6887), - [anon_sym_UR_DQUOTE] = ACTIONS(6887), - [anon_sym_u8R_DQUOTE] = ACTIONS(6887), - [anon_sym_DASH_GT_STAR] = ACTIONS(5638), + [sym_identifier] = ACTIONS(6586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_RPAREN] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_TILDE] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6586), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6586), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6586), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6586), + [anon_sym_GT_GT] = ACTIONS(6586), + [anon_sym___extension__] = ACTIONS(6586), + [anon_sym_virtual] = ACTIONS(6586), + [anon_sym_extern] = ACTIONS(6586), + [anon_sym___attribute__] = ACTIONS(6586), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6588), + [anon_sym___declspec] = ACTIONS(6586), + [anon_sym___based] = ACTIONS(6586), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6586), + [anon_sym_static] = ACTIONS(6586), + [anon_sym_EQ] = ACTIONS(6586), + [anon_sym_register] = ACTIONS(6586), + [anon_sym_inline] = ACTIONS(6586), + [anon_sym___inline] = ACTIONS(6586), + [anon_sym___inline__] = ACTIONS(6586), + [anon_sym___forceinline] = ACTIONS(6586), + [anon_sym_thread_local] = ACTIONS(6586), + [anon_sym___thread] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6586), + [anon_sym_volatile] = ACTIONS(6586), + [anon_sym_restrict] = ACTIONS(6586), + [anon_sym___restrict__] = ACTIONS(6586), + [anon_sym__Atomic] = ACTIONS(6586), + [anon_sym__Noreturn] = ACTIONS(6586), + [anon_sym_noreturn] = ACTIONS(6586), + [anon_sym__Nonnull] = ACTIONS(6586), + [anon_sym_mutable] = ACTIONS(6586), + [anon_sym_constinit] = ACTIONS(6586), + [anon_sym_consteval] = ACTIONS(6586), + [anon_sym_alignas] = ACTIONS(6586), + [anon_sym__Alignas] = ACTIONS(6586), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_STAR_EQ] = ACTIONS(6588), + [anon_sym_SLASH_EQ] = ACTIONS(6588), + [anon_sym_PERCENT_EQ] = ACTIONS(6588), + [anon_sym_PLUS_EQ] = ACTIONS(6588), + [anon_sym_DASH_EQ] = ACTIONS(6588), + [anon_sym_LT_LT_EQ] = ACTIONS(6588), + [anon_sym_GT_GT_EQ] = ACTIONS(6588), + [anon_sym_AMP_EQ] = ACTIONS(6588), + [anon_sym_CARET_EQ] = ACTIONS(6588), + [anon_sym_PIPE_EQ] = ACTIONS(6588), + [anon_sym_and_eq] = ACTIONS(6586), + [anon_sym_or_eq] = ACTIONS(6586), + [anon_sym_xor_eq] = ACTIONS(6586), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6586), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6586), + [anon_sym_not_eq] = ACTIONS(6586), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6586), + [anon_sym_decltype] = ACTIONS(6586), + [anon_sym_template] = ACTIONS(6586), + [anon_sym_operator] = ACTIONS(6586), + [anon_sym_DASH_GT_STAR] = ACTIONS(6588), + [anon_sym_LBRACK_COLON] = ACTIONS(6588), }, [STATE(2005)] = { - [sym_identifier] = ACTIONS(6632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_RPAREN] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_TILDE] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6632), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6632), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6632), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6632), - [anon_sym_GT_GT] = ACTIONS(6632), - [anon_sym___extension__] = ACTIONS(6632), - [anon_sym_virtual] = ACTIONS(6632), - [anon_sym_extern] = ACTIONS(6632), - [anon_sym___attribute__] = ACTIONS(6632), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), - [anon_sym___declspec] = ACTIONS(6632), - [anon_sym___based] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6632), - [anon_sym_static] = ACTIONS(6632), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_register] = ACTIONS(6632), - [anon_sym_inline] = ACTIONS(6632), - [anon_sym___inline] = ACTIONS(6632), - [anon_sym___inline__] = ACTIONS(6632), - [anon_sym___forceinline] = ACTIONS(6632), - [anon_sym_thread_local] = ACTIONS(6632), - [anon_sym___thread] = ACTIONS(6632), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6632), - [anon_sym_volatile] = ACTIONS(6632), - [anon_sym_restrict] = ACTIONS(6632), - [anon_sym___restrict__] = ACTIONS(6632), - [anon_sym__Atomic] = ACTIONS(6632), - [anon_sym__Noreturn] = ACTIONS(6632), - [anon_sym_noreturn] = ACTIONS(6632), - [anon_sym__Nonnull] = ACTIONS(6632), - [anon_sym_mutable] = ACTIONS(6632), - [anon_sym_constinit] = ACTIONS(6632), - [anon_sym_consteval] = ACTIONS(6632), - [anon_sym_alignas] = ACTIONS(6632), - [anon_sym__Alignas] = ACTIONS(6632), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_STAR_EQ] = ACTIONS(6634), - [anon_sym_SLASH_EQ] = ACTIONS(6634), - [anon_sym_PERCENT_EQ] = ACTIONS(6634), - [anon_sym_PLUS_EQ] = ACTIONS(6634), - [anon_sym_DASH_EQ] = ACTIONS(6634), - [anon_sym_LT_LT_EQ] = ACTIONS(6634), - [anon_sym_GT_GT_EQ] = ACTIONS(6634), - [anon_sym_AMP_EQ] = ACTIONS(6634), - [anon_sym_CARET_EQ] = ACTIONS(6634), - [anon_sym_PIPE_EQ] = ACTIONS(6634), - [anon_sym_and_eq] = ACTIONS(6632), - [anon_sym_or_eq] = ACTIONS(6632), - [anon_sym_xor_eq] = ACTIONS(6632), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6632), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6632), - [anon_sym_not_eq] = ACTIONS(6632), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6632), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6632), - [anon_sym_decltype] = ACTIONS(6632), - [anon_sym_template] = ACTIONS(6632), - [anon_sym_operator] = ACTIONS(6632), - [anon_sym_DASH_GT_STAR] = ACTIONS(6634), - [anon_sym_LBRACK_COLON] = ACTIONS(6634), + [sym_identifier] = ACTIONS(6602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_TILDE] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(6602), + [anon_sym_virtual] = ACTIONS(6602), + [anon_sym_extern] = ACTIONS(6602), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6604), + [anon_sym___declspec] = ACTIONS(6602), + [anon_sym___based] = ACTIONS(6602), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_static] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_register] = ACTIONS(6602), + [anon_sym_inline] = ACTIONS(6602), + [anon_sym___inline] = ACTIONS(6602), + [anon_sym___inline__] = ACTIONS(6602), + [anon_sym___forceinline] = ACTIONS(6602), + [anon_sym_thread_local] = ACTIONS(6602), + [anon_sym___thread] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_STAR_EQ] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [anon_sym_PERCENT_EQ] = ACTIONS(6604), + [anon_sym_PLUS_EQ] = ACTIONS(6604), + [anon_sym_DASH_EQ] = ACTIONS(6604), + [anon_sym_LT_LT_EQ] = ACTIONS(6604), + [anon_sym_GT_GT_EQ] = ACTIONS(6604), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6602), + [anon_sym_decltype] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(6602), + [anon_sym_operator] = ACTIONS(6602), + [anon_sym_DASH_GT_STAR] = ACTIONS(6604), + [anon_sym_LBRACK_COLON] = ACTIONS(6604), }, [STATE(2006)] = { - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_RPAREN] = ACTIONS(6891), - [aux_sym_preproc_if_token2] = ACTIONS(6891), - [aux_sym_preproc_else_token1] = ACTIONS(6891), - [aux_sym_preproc_elif_token1] = ACTIONS(6889), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6891), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym_SEMI] = ACTIONS(6891), - [anon_sym___extension__] = ACTIONS(6893), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_COLON] = ACTIONS(6889), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6891), - [anon_sym_LBRACE] = ACTIONS(6891), - [anon_sym_RBRACE] = ACTIONS(6891), - [anon_sym_signed] = ACTIONS(6889), - [anon_sym_unsigned] = ACTIONS(6889), - [anon_sym_long] = ACTIONS(6889), - [anon_sym_short] = ACTIONS(6889), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(6893), - [anon_sym_constexpr] = ACTIONS(6893), - [anon_sym_volatile] = ACTIONS(6893), - [anon_sym_restrict] = ACTIONS(6893), - [anon_sym___restrict__] = ACTIONS(6893), - [anon_sym__Atomic] = ACTIONS(6893), - [anon_sym__Noreturn] = ACTIONS(6893), - [anon_sym_noreturn] = ACTIONS(6893), - [anon_sym__Nonnull] = ACTIONS(6893), - [anon_sym_mutable] = ACTIONS(6893), - [anon_sym_constinit] = ACTIONS(6893), - [anon_sym_consteval] = ACTIONS(6893), - [anon_sym_alignas] = ACTIONS(6896), - [anon_sym__Alignas] = ACTIONS(6896), - [sym_primitive_type] = ACTIONS(6889), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6891), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_and_eq] = ACTIONS(6889), - [anon_sym_or_eq] = ACTIONS(6889), - [anon_sym_xor_eq] = ACTIONS(6889), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_requires] = ACTIONS(6889), - [anon_sym_COLON_RBRACK] = ACTIONS(6891), + [sym_identifier] = ACTIONS(6606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_TILDE] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6606), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym___extension__] = ACTIONS(6606), + [anon_sym_virtual] = ACTIONS(6606), + [anon_sym_extern] = ACTIONS(6606), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6608), + [anon_sym___declspec] = ACTIONS(6606), + [anon_sym___based] = ACTIONS(6606), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6606), + [anon_sym_static] = ACTIONS(6606), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_register] = ACTIONS(6606), + [anon_sym_inline] = ACTIONS(6606), + [anon_sym___inline] = ACTIONS(6606), + [anon_sym___inline__] = ACTIONS(6606), + [anon_sym___forceinline] = ACTIONS(6606), + [anon_sym_thread_local] = ACTIONS(6606), + [anon_sym___thread] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6606), + [anon_sym_volatile] = ACTIONS(6606), + [anon_sym_restrict] = ACTIONS(6606), + [anon_sym___restrict__] = ACTIONS(6606), + [anon_sym__Atomic] = ACTIONS(6606), + [anon_sym__Noreturn] = ACTIONS(6606), + [anon_sym_noreturn] = ACTIONS(6606), + [anon_sym__Nonnull] = ACTIONS(6606), + [anon_sym_mutable] = ACTIONS(6606), + [anon_sym_constinit] = ACTIONS(6606), + [anon_sym_consteval] = ACTIONS(6606), + [anon_sym_alignas] = ACTIONS(6606), + [anon_sym__Alignas] = ACTIONS(6606), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_STAR_EQ] = ACTIONS(6608), + [anon_sym_SLASH_EQ] = ACTIONS(6608), + [anon_sym_PERCENT_EQ] = ACTIONS(6608), + [anon_sym_PLUS_EQ] = ACTIONS(6608), + [anon_sym_DASH_EQ] = ACTIONS(6608), + [anon_sym_LT_LT_EQ] = ACTIONS(6608), + [anon_sym_GT_GT_EQ] = ACTIONS(6608), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_and_eq] = ACTIONS(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6606), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6606), + [anon_sym_not_eq] = ACTIONS(6606), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6606), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6606), + [anon_sym_decltype] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(6606), + [anon_sym_operator] = ACTIONS(6606), + [anon_sym_DASH_GT_STAR] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(6608), }, [STATE(2007)] = { - [sym_identifier] = ACTIONS(6612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_RPAREN] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_TILDE] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6612), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6612), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6612), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6612), - [anon_sym_GT_GT] = ACTIONS(6612), - [anon_sym___extension__] = ACTIONS(6612), - [anon_sym_virtual] = ACTIONS(6612), - [anon_sym_extern] = ACTIONS(6612), - [anon_sym___attribute__] = ACTIONS(6612), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), - [anon_sym___declspec] = ACTIONS(6612), - [anon_sym___based] = ACTIONS(6612), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6612), - [anon_sym_static] = ACTIONS(6612), - [anon_sym_EQ] = ACTIONS(6612), - [anon_sym_register] = ACTIONS(6612), - [anon_sym_inline] = ACTIONS(6612), - [anon_sym___inline] = ACTIONS(6612), - [anon_sym___inline__] = ACTIONS(6612), - [anon_sym___forceinline] = ACTIONS(6612), - [anon_sym_thread_local] = ACTIONS(6612), - [anon_sym___thread] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6612), - [anon_sym_volatile] = ACTIONS(6612), - [anon_sym_restrict] = ACTIONS(6612), - [anon_sym___restrict__] = ACTIONS(6612), - [anon_sym__Atomic] = ACTIONS(6612), - [anon_sym__Noreturn] = ACTIONS(6612), - [anon_sym_noreturn] = ACTIONS(6612), - [anon_sym__Nonnull] = ACTIONS(6612), - [anon_sym_mutable] = ACTIONS(6612), - [anon_sym_constinit] = ACTIONS(6612), - [anon_sym_consteval] = ACTIONS(6612), - [anon_sym_alignas] = ACTIONS(6612), - [anon_sym__Alignas] = ACTIONS(6612), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_STAR_EQ] = ACTIONS(6614), - [anon_sym_SLASH_EQ] = ACTIONS(6614), - [anon_sym_PERCENT_EQ] = ACTIONS(6614), - [anon_sym_PLUS_EQ] = ACTIONS(6614), - [anon_sym_DASH_EQ] = ACTIONS(6614), - [anon_sym_LT_LT_EQ] = ACTIONS(6614), - [anon_sym_GT_GT_EQ] = ACTIONS(6614), - [anon_sym_AMP_EQ] = ACTIONS(6614), - [anon_sym_CARET_EQ] = ACTIONS(6614), - [anon_sym_PIPE_EQ] = ACTIONS(6614), - [anon_sym_and_eq] = ACTIONS(6612), - [anon_sym_or_eq] = ACTIONS(6612), - [anon_sym_xor_eq] = ACTIONS(6612), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6612), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6612), - [anon_sym_not_eq] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6612), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6612), - [anon_sym_decltype] = ACTIONS(6612), - [anon_sym_template] = ACTIONS(6612), - [anon_sym_operator] = ACTIONS(6612), - [anon_sym_DASH_GT_STAR] = ACTIONS(6614), - [anon_sym_LBRACK_COLON] = ACTIONS(6614), + [sym_identifier] = ACTIONS(6590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_RPAREN] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6590), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6590), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6590), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6590), + [anon_sym_GT_GT] = ACTIONS(6590), + [anon_sym___extension__] = ACTIONS(6590), + [anon_sym_virtual] = ACTIONS(6590), + [anon_sym_extern] = ACTIONS(6590), + [anon_sym___attribute__] = ACTIONS(6590), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6592), + [anon_sym___declspec] = ACTIONS(6590), + [anon_sym___based] = ACTIONS(6590), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6590), + [anon_sym_static] = ACTIONS(6590), + [anon_sym_EQ] = ACTIONS(6590), + [anon_sym_register] = ACTIONS(6590), + [anon_sym_inline] = ACTIONS(6590), + [anon_sym___inline] = ACTIONS(6590), + [anon_sym___inline__] = ACTIONS(6590), + [anon_sym___forceinline] = ACTIONS(6590), + [anon_sym_thread_local] = ACTIONS(6590), + [anon_sym___thread] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6590), + [anon_sym_volatile] = ACTIONS(6590), + [anon_sym_restrict] = ACTIONS(6590), + [anon_sym___restrict__] = ACTIONS(6590), + [anon_sym__Atomic] = ACTIONS(6590), + [anon_sym__Noreturn] = ACTIONS(6590), + [anon_sym_noreturn] = ACTIONS(6590), + [anon_sym__Nonnull] = ACTIONS(6590), + [anon_sym_mutable] = ACTIONS(6590), + [anon_sym_constinit] = ACTIONS(6590), + [anon_sym_consteval] = ACTIONS(6590), + [anon_sym_alignas] = ACTIONS(6590), + [anon_sym__Alignas] = ACTIONS(6590), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_STAR_EQ] = ACTIONS(6592), + [anon_sym_SLASH_EQ] = ACTIONS(6592), + [anon_sym_PERCENT_EQ] = ACTIONS(6592), + [anon_sym_PLUS_EQ] = ACTIONS(6592), + [anon_sym_DASH_EQ] = ACTIONS(6592), + [anon_sym_LT_LT_EQ] = ACTIONS(6592), + [anon_sym_GT_GT_EQ] = ACTIONS(6592), + [anon_sym_AMP_EQ] = ACTIONS(6592), + [anon_sym_CARET_EQ] = ACTIONS(6592), + [anon_sym_PIPE_EQ] = ACTIONS(6592), + [anon_sym_and_eq] = ACTIONS(6590), + [anon_sym_or_eq] = ACTIONS(6590), + [anon_sym_xor_eq] = ACTIONS(6590), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6590), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6590), + [anon_sym_not_eq] = ACTIONS(6590), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6590), + [anon_sym_decltype] = ACTIONS(6590), + [anon_sym_template] = ACTIONS(6590), + [anon_sym_operator] = ACTIONS(6590), + [anon_sym_DASH_GT_STAR] = ACTIONS(6592), + [anon_sym_LBRACK_COLON] = ACTIONS(6592), }, [STATE(2008)] = { - [sym_identifier] = ACTIONS(6624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_RPAREN] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_TILDE] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6624), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6624), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6624), - [anon_sym_GT_GT] = ACTIONS(6624), - [anon_sym___extension__] = ACTIONS(6624), - [anon_sym_virtual] = ACTIONS(6624), - [anon_sym_extern] = ACTIONS(6624), - [anon_sym___attribute__] = ACTIONS(6624), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), - [anon_sym___declspec] = ACTIONS(6624), - [anon_sym___based] = ACTIONS(6624), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6624), - [anon_sym_static] = ACTIONS(6624), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_register] = ACTIONS(6624), - [anon_sym_inline] = ACTIONS(6624), - [anon_sym___inline] = ACTIONS(6624), - [anon_sym___inline__] = ACTIONS(6624), - [anon_sym___forceinline] = ACTIONS(6624), - [anon_sym_thread_local] = ACTIONS(6624), - [anon_sym___thread] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6624), - [anon_sym_volatile] = ACTIONS(6624), - [anon_sym_restrict] = ACTIONS(6624), - [anon_sym___restrict__] = ACTIONS(6624), - [anon_sym__Atomic] = ACTIONS(6624), - [anon_sym__Noreturn] = ACTIONS(6624), - [anon_sym_noreturn] = ACTIONS(6624), - [anon_sym__Nonnull] = ACTIONS(6624), - [anon_sym_mutable] = ACTIONS(6624), - [anon_sym_constinit] = ACTIONS(6624), - [anon_sym_consteval] = ACTIONS(6624), - [anon_sym_alignas] = ACTIONS(6624), - [anon_sym__Alignas] = ACTIONS(6624), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_STAR_EQ] = ACTIONS(6626), - [anon_sym_SLASH_EQ] = ACTIONS(6626), - [anon_sym_PERCENT_EQ] = ACTIONS(6626), - [anon_sym_PLUS_EQ] = ACTIONS(6626), - [anon_sym_DASH_EQ] = ACTIONS(6626), - [anon_sym_LT_LT_EQ] = ACTIONS(6626), - [anon_sym_GT_GT_EQ] = ACTIONS(6626), - [anon_sym_AMP_EQ] = ACTIONS(6626), - [anon_sym_CARET_EQ] = ACTIONS(6626), - [anon_sym_PIPE_EQ] = ACTIONS(6626), - [anon_sym_and_eq] = ACTIONS(6624), - [anon_sym_or_eq] = ACTIONS(6624), - [anon_sym_xor_eq] = ACTIONS(6624), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6624), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6624), - [anon_sym_not_eq] = ACTIONS(6624), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6624), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6624), - [anon_sym_decltype] = ACTIONS(6624), - [anon_sym_template] = ACTIONS(6624), - [anon_sym_operator] = ACTIONS(6624), - [anon_sym_DASH_GT_STAR] = ACTIONS(6626), - [anon_sym_LBRACK_COLON] = ACTIONS(6626), + [sym_identifier] = ACTIONS(6596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6596), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6596), + [anon_sym_virtual] = ACTIONS(6596), + [anon_sym_extern] = ACTIONS(6596), + [anon_sym___attribute__] = ACTIONS(6596), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6598), + [anon_sym___declspec] = ACTIONS(6596), + [anon_sym___based] = ACTIONS(6596), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6596), + [anon_sym_static] = ACTIONS(6596), + [anon_sym_EQ] = ACTIONS(6596), + [anon_sym_register] = ACTIONS(6596), + [anon_sym_inline] = ACTIONS(6596), + [anon_sym___inline] = ACTIONS(6596), + [anon_sym___inline__] = ACTIONS(6596), + [anon_sym___forceinline] = ACTIONS(6596), + [anon_sym_thread_local] = ACTIONS(6596), + [anon_sym___thread] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6596), + [anon_sym_volatile] = ACTIONS(6596), + [anon_sym_restrict] = ACTIONS(6596), + [anon_sym___restrict__] = ACTIONS(6596), + [anon_sym__Atomic] = ACTIONS(6596), + [anon_sym__Noreturn] = ACTIONS(6596), + [anon_sym_noreturn] = ACTIONS(6596), + [anon_sym__Nonnull] = ACTIONS(6596), + [anon_sym_mutable] = ACTIONS(6596), + [anon_sym_constinit] = ACTIONS(6596), + [anon_sym_consteval] = ACTIONS(6596), + [anon_sym_alignas] = ACTIONS(6596), + [anon_sym__Alignas] = ACTIONS(6596), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6596), + [anon_sym_or_eq] = ACTIONS(6596), + [anon_sym_xor_eq] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6596), + [anon_sym_decltype] = ACTIONS(6596), + [anon_sym_template] = ACTIONS(6596), + [anon_sym_operator] = ACTIONS(6596), + [anon_sym_DASH_GT_STAR] = ACTIONS(6598), + [anon_sym_LBRACK_COLON] = ACTIONS(6598), }, [STATE(2009)] = { - [sym_identifier] = ACTIONS(6628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_TILDE] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6628), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6628), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6628), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6628), - [anon_sym_GT_GT] = ACTIONS(6628), - [anon_sym___extension__] = ACTIONS(6628), - [anon_sym_virtual] = ACTIONS(6628), - [anon_sym_extern] = ACTIONS(6628), - [anon_sym___attribute__] = ACTIONS(6628), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), - [anon_sym___declspec] = ACTIONS(6628), - [anon_sym___based] = ACTIONS(6628), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6628), - [anon_sym_static] = ACTIONS(6628), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_register] = ACTIONS(6628), - [anon_sym_inline] = ACTIONS(6628), - [anon_sym___inline] = ACTIONS(6628), - [anon_sym___inline__] = ACTIONS(6628), - [anon_sym___forceinline] = ACTIONS(6628), - [anon_sym_thread_local] = ACTIONS(6628), - [anon_sym___thread] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6628), - [anon_sym_volatile] = ACTIONS(6628), - [anon_sym_restrict] = ACTIONS(6628), - [anon_sym___restrict__] = ACTIONS(6628), - [anon_sym__Atomic] = ACTIONS(6628), - [anon_sym__Noreturn] = ACTIONS(6628), - [anon_sym_noreturn] = ACTIONS(6628), - [anon_sym__Nonnull] = ACTIONS(6628), - [anon_sym_mutable] = ACTIONS(6628), - [anon_sym_constinit] = ACTIONS(6628), - [anon_sym_consteval] = ACTIONS(6628), - [anon_sym_alignas] = ACTIONS(6628), - [anon_sym__Alignas] = ACTIONS(6628), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_STAR_EQ] = ACTIONS(6630), - [anon_sym_SLASH_EQ] = ACTIONS(6630), - [anon_sym_PERCENT_EQ] = ACTIONS(6630), - [anon_sym_PLUS_EQ] = ACTIONS(6630), - [anon_sym_DASH_EQ] = ACTIONS(6630), - [anon_sym_LT_LT_EQ] = ACTIONS(6630), - [anon_sym_GT_GT_EQ] = ACTIONS(6630), - [anon_sym_AMP_EQ] = ACTIONS(6630), - [anon_sym_CARET_EQ] = ACTIONS(6630), - [anon_sym_PIPE_EQ] = ACTIONS(6630), - [anon_sym_and_eq] = ACTIONS(6628), - [anon_sym_or_eq] = ACTIONS(6628), - [anon_sym_xor_eq] = ACTIONS(6628), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6628), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6628), - [anon_sym_not_eq] = ACTIONS(6628), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6628), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6628), - [anon_sym_decltype] = ACTIONS(6628), - [anon_sym_template] = ACTIONS(6628), - [anon_sym_operator] = ACTIONS(6628), - [anon_sym_DASH_GT_STAR] = ACTIONS(6630), - [anon_sym_LBRACK_COLON] = ACTIONS(6630), + [sym_identifier] = ACTIONS(6610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_TILDE] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym_virtual] = ACTIONS(6610), + [anon_sym_extern] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6612), + [anon_sym___declspec] = ACTIONS(6610), + [anon_sym___based] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_static] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_register] = ACTIONS(6610), + [anon_sym_inline] = ACTIONS(6610), + [anon_sym___inline] = ACTIONS(6610), + [anon_sym___inline__] = ACTIONS(6610), + [anon_sym___forceinline] = ACTIONS(6610), + [anon_sym_thread_local] = ACTIONS(6610), + [anon_sym___thread] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_STAR_EQ] = ACTIONS(6612), + [anon_sym_SLASH_EQ] = ACTIONS(6612), + [anon_sym_PERCENT_EQ] = ACTIONS(6612), + [anon_sym_PLUS_EQ] = ACTIONS(6612), + [anon_sym_DASH_EQ] = ACTIONS(6612), + [anon_sym_LT_LT_EQ] = ACTIONS(6612), + [anon_sym_GT_GT_EQ] = ACTIONS(6612), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_and_eq] = ACTIONS(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(6610), + [anon_sym_operator] = ACTIONS(6610), + [anon_sym_DASH_GT_STAR] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(6612), }, [STATE(2010)] = { - [sym_identifier] = ACTIONS(6624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_RPAREN] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_TILDE] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6626), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6626), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6626), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6626), - [anon_sym_GT_GT] = ACTIONS(6626), - [anon_sym_SEMI] = ACTIONS(6626), - [anon_sym___extension__] = ACTIONS(6624), - [anon_sym_virtual] = ACTIONS(6624), - [anon_sym_extern] = ACTIONS(6624), - [anon_sym___attribute__] = ACTIONS(6624), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), - [anon_sym___declspec] = ACTIONS(6624), - [anon_sym___based] = ACTIONS(6624), - [anon_sym___cdecl] = ACTIONS(6624), - [anon_sym___clrcall] = ACTIONS(6624), - [anon_sym___stdcall] = ACTIONS(6624), - [anon_sym___fastcall] = ACTIONS(6624), - [anon_sym___thiscall] = ACTIONS(6624), - [anon_sym___vectorcall] = ACTIONS(6624), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_RBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6624), - [anon_sym_static] = ACTIONS(6624), - [anon_sym_RBRACK] = ACTIONS(6626), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_register] = ACTIONS(6624), - [anon_sym_inline] = ACTIONS(6624), - [anon_sym___inline] = ACTIONS(6624), - [anon_sym___inline__] = ACTIONS(6624), - [anon_sym___forceinline] = ACTIONS(6624), - [anon_sym_thread_local] = ACTIONS(6624), - [anon_sym___thread] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6624), - [anon_sym_volatile] = ACTIONS(6624), - [anon_sym_restrict] = ACTIONS(6624), - [anon_sym___restrict__] = ACTIONS(6624), - [anon_sym__Atomic] = ACTIONS(6624), - [anon_sym__Noreturn] = ACTIONS(6624), - [anon_sym_noreturn] = ACTIONS(6624), - [anon_sym__Nonnull] = ACTIONS(6624), - [anon_sym_mutable] = ACTIONS(6624), - [anon_sym_constinit] = ACTIONS(6624), - [anon_sym_consteval] = ACTIONS(6624), - [anon_sym_alignas] = ACTIONS(6624), - [anon_sym__Alignas] = ACTIONS(6624), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6624), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6624), - [anon_sym_not_eq] = ACTIONS(6624), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6624), - [anon_sym_decltype] = ACTIONS(6624), - [anon_sym_final] = ACTIONS(6624), - [anon_sym_override] = ACTIONS(6624), - [anon_sym_template] = ACTIONS(6624), - [anon_sym_operator] = ACTIONS(6624), - [anon_sym_noexcept] = ACTIONS(6624), - [anon_sym_throw] = ACTIONS(6624), - [anon_sym_LBRACK_COLON] = ACTIONS(6626), + [sym_type_qualifier] = STATE(2018), + [sym_alignas_qualifier] = STATE(2060), + [aux_sym__type_definition_type_repeat1] = STATE(2018), + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [aux_sym_preproc_if_token2] = ACTIONS(6748), + [aux_sym_preproc_else_token1] = ACTIONS(6748), + [aux_sym_preproc_elif_token1] = ACTIONS(6746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6748), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym_SEMI] = ACTIONS(6748), + [anon_sym___extension__] = ACTIONS(6479), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6748), + [anon_sym_RBRACE] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6479), + [anon_sym_constexpr] = ACTIONS(6479), + [anon_sym_volatile] = ACTIONS(6479), + [anon_sym_restrict] = ACTIONS(6479), + [anon_sym___restrict__] = ACTIONS(6479), + [anon_sym__Atomic] = ACTIONS(6479), + [anon_sym__Noreturn] = ACTIONS(6479), + [anon_sym_noreturn] = ACTIONS(6479), + [anon_sym__Nonnull] = ACTIONS(6479), + [anon_sym_mutable] = ACTIONS(6479), + [anon_sym_constinit] = ACTIONS(6479), + [anon_sym_consteval] = ACTIONS(6479), + [anon_sym_alignas] = ACTIONS(6485), + [anon_sym__Alignas] = ACTIONS(6485), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6746), + [anon_sym_or_eq] = ACTIONS(6746), + [anon_sym_xor_eq] = ACTIONS(6746), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6746), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6746), + [anon_sym_not_eq] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6746), + [anon_sym___asm__] = ACTIONS(6746), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6746), + [anon_sym_override] = ACTIONS(6746), + [anon_sym_noexcept] = ACTIONS(6746), + [anon_sym_throw] = ACTIONS(6746), + [anon_sym_requires] = ACTIONS(6746), + [anon_sym_COLON_RBRACK] = ACTIONS(6748), }, [STATE(2011)] = { - [sym_identifier] = ACTIONS(6628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_TILDE] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6630), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6630), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6630), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6630), - [anon_sym_GT_GT] = ACTIONS(6630), - [anon_sym_SEMI] = ACTIONS(6630), - [anon_sym___extension__] = ACTIONS(6628), - [anon_sym_virtual] = ACTIONS(6628), - [anon_sym_extern] = ACTIONS(6628), - [anon_sym___attribute__] = ACTIONS(6628), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), - [anon_sym___declspec] = ACTIONS(6628), - [anon_sym___based] = ACTIONS(6628), - [anon_sym___cdecl] = ACTIONS(6628), - [anon_sym___clrcall] = ACTIONS(6628), - [anon_sym___stdcall] = ACTIONS(6628), - [anon_sym___fastcall] = ACTIONS(6628), - [anon_sym___thiscall] = ACTIONS(6628), - [anon_sym___vectorcall] = ACTIONS(6628), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_RBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6628), - [anon_sym_static] = ACTIONS(6628), - [anon_sym_RBRACK] = ACTIONS(6630), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_register] = ACTIONS(6628), - [anon_sym_inline] = ACTIONS(6628), - [anon_sym___inline] = ACTIONS(6628), - [anon_sym___inline__] = ACTIONS(6628), - [anon_sym___forceinline] = ACTIONS(6628), - [anon_sym_thread_local] = ACTIONS(6628), - [anon_sym___thread] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6628), - [anon_sym_volatile] = ACTIONS(6628), - [anon_sym_restrict] = ACTIONS(6628), - [anon_sym___restrict__] = ACTIONS(6628), - [anon_sym__Atomic] = ACTIONS(6628), - [anon_sym__Noreturn] = ACTIONS(6628), - [anon_sym_noreturn] = ACTIONS(6628), - [anon_sym__Nonnull] = ACTIONS(6628), - [anon_sym_mutable] = ACTIONS(6628), - [anon_sym_constinit] = ACTIONS(6628), - [anon_sym_consteval] = ACTIONS(6628), - [anon_sym_alignas] = ACTIONS(6628), - [anon_sym__Alignas] = ACTIONS(6628), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6628), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6628), - [anon_sym_not_eq] = ACTIONS(6628), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6628), - [anon_sym_decltype] = ACTIONS(6628), - [anon_sym_final] = ACTIONS(6628), - [anon_sym_override] = ACTIONS(6628), - [anon_sym_template] = ACTIONS(6628), - [anon_sym_operator] = ACTIONS(6628), - [anon_sym_noexcept] = ACTIONS(6628), - [anon_sym_throw] = ACTIONS(6628), - [anon_sym_LBRACK_COLON] = ACTIONS(6630), + [sym_identifier] = ACTIONS(6614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_TILDE] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym_virtual] = ACTIONS(6614), + [anon_sym_extern] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6616), + [anon_sym___declspec] = ACTIONS(6614), + [anon_sym___based] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_static] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_register] = ACTIONS(6614), + [anon_sym_inline] = ACTIONS(6614), + [anon_sym___inline] = ACTIONS(6614), + [anon_sym___inline__] = ACTIONS(6614), + [anon_sym___forceinline] = ACTIONS(6614), + [anon_sym_thread_local] = ACTIONS(6614), + [anon_sym___thread] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_STAR_EQ] = ACTIONS(6616), + [anon_sym_SLASH_EQ] = ACTIONS(6616), + [anon_sym_PERCENT_EQ] = ACTIONS(6616), + [anon_sym_PLUS_EQ] = ACTIONS(6616), + [anon_sym_DASH_EQ] = ACTIONS(6616), + [anon_sym_LT_LT_EQ] = ACTIONS(6616), + [anon_sym_GT_GT_EQ] = ACTIONS(6616), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_and_eq] = ACTIONS(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(6614), + [anon_sym_operator] = ACTIONS(6614), + [anon_sym_DASH_GT_STAR] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(6616), }, [STATE(2012)] = { - [sym_identifier] = ACTIONS(6616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_RPAREN] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_TILDE] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6616), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6616), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6616), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6616), - [anon_sym_GT_GT] = ACTIONS(6616), - [anon_sym___extension__] = ACTIONS(6616), - [anon_sym_virtual] = ACTIONS(6616), - [anon_sym_extern] = ACTIONS(6616), - [anon_sym___attribute__] = ACTIONS(6616), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), - [anon_sym___declspec] = ACTIONS(6616), - [anon_sym___based] = ACTIONS(6616), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6616), - [anon_sym_static] = ACTIONS(6616), - [anon_sym_EQ] = ACTIONS(6616), - [anon_sym_register] = ACTIONS(6616), - [anon_sym_inline] = ACTIONS(6616), - [anon_sym___inline] = ACTIONS(6616), - [anon_sym___inline__] = ACTIONS(6616), - [anon_sym___forceinline] = ACTIONS(6616), - [anon_sym_thread_local] = ACTIONS(6616), - [anon_sym___thread] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6616), - [anon_sym_volatile] = ACTIONS(6616), - [anon_sym_restrict] = ACTIONS(6616), - [anon_sym___restrict__] = ACTIONS(6616), - [anon_sym__Atomic] = ACTIONS(6616), - [anon_sym__Noreturn] = ACTIONS(6616), - [anon_sym_noreturn] = ACTIONS(6616), - [anon_sym__Nonnull] = ACTIONS(6616), - [anon_sym_mutable] = ACTIONS(6616), - [anon_sym_constinit] = ACTIONS(6616), - [anon_sym_consteval] = ACTIONS(6616), - [anon_sym_alignas] = ACTIONS(6616), - [anon_sym__Alignas] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_STAR_EQ] = ACTIONS(6618), - [anon_sym_SLASH_EQ] = ACTIONS(6618), - [anon_sym_PERCENT_EQ] = ACTIONS(6618), - [anon_sym_PLUS_EQ] = ACTIONS(6618), - [anon_sym_DASH_EQ] = ACTIONS(6618), - [anon_sym_LT_LT_EQ] = ACTIONS(6618), - [anon_sym_GT_GT_EQ] = ACTIONS(6618), - [anon_sym_AMP_EQ] = ACTIONS(6618), - [anon_sym_CARET_EQ] = ACTIONS(6618), - [anon_sym_PIPE_EQ] = ACTIONS(6618), - [anon_sym_and_eq] = ACTIONS(6616), - [anon_sym_or_eq] = ACTIONS(6616), - [anon_sym_xor_eq] = ACTIONS(6616), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6616), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6616), - [anon_sym_not_eq] = ACTIONS(6616), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6616), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6616), - [anon_sym_decltype] = ACTIONS(6616), - [anon_sym_template] = ACTIONS(6616), - [anon_sym_operator] = ACTIONS(6616), - [anon_sym_DASH_GT_STAR] = ACTIONS(6618), - [anon_sym_LBRACK_COLON] = ACTIONS(6618), + [sym_string_literal] = STATE(5137), + [sym_decltype_auto] = STATE(3215), + [sym_template_argument_list] = STATE(3432), + [sym_raw_string_literal] = STATE(5137), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(6860), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym_SEMI] = ACTIONS(5624), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym___attribute__] = ACTIONS(5624), + [anon_sym___attribute] = ACTIONS(5621), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6864), + [anon_sym_unsigned] = ACTIONS(6864), + [anon_sym_long] = ACTIONS(6864), + [anon_sym_short] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(6888), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(6890), + [anon_sym_SLASH_EQ] = ACTIONS(6890), + [anon_sym_PERCENT_EQ] = ACTIONS(6890), + [anon_sym_PLUS_EQ] = ACTIONS(6890), + [anon_sym_DASH_EQ] = ACTIONS(6890), + [anon_sym_LT_LT_EQ] = ACTIONS(6890), + [anon_sym_GT_GT_EQ] = ACTIONS(6890), + [anon_sym_AMP_EQ] = ACTIONS(6890), + [anon_sym_CARET_EQ] = ACTIONS(6890), + [anon_sym_PIPE_EQ] = ACTIONS(6890), + [anon_sym_and_eq] = ACTIONS(6890), + [anon_sym_or_eq] = ACTIONS(6890), + [anon_sym_xor_eq] = ACTIONS(6890), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(6892), + [anon_sym_u_DQUOTE] = ACTIONS(6892), + [anon_sym_U_DQUOTE] = ACTIONS(6892), + [anon_sym_u8_DQUOTE] = ACTIONS(6892), + [anon_sym_DQUOTE] = ACTIONS(6892), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6866), + [anon_sym_decltype] = ACTIONS(6868), + [anon_sym_R_DQUOTE] = ACTIONS(6894), + [anon_sym_LR_DQUOTE] = ACTIONS(6894), + [anon_sym_uR_DQUOTE] = ACTIONS(6894), + [anon_sym_UR_DQUOTE] = ACTIONS(6894), + [anon_sym_u8R_DQUOTE] = ACTIONS(6894), }, [STATE(2013)] = { - [sym_identifier] = ACTIONS(6608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_RPAREN] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_TILDE] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6608), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6608), - [anon_sym_GT_GT] = ACTIONS(6608), - [anon_sym___extension__] = ACTIONS(6608), - [anon_sym_virtual] = ACTIONS(6608), - [anon_sym_extern] = ACTIONS(6608), - [anon_sym___attribute__] = ACTIONS(6608), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), - [anon_sym___declspec] = ACTIONS(6608), - [anon_sym___based] = ACTIONS(6608), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6608), - [anon_sym_static] = ACTIONS(6608), - [anon_sym_EQ] = ACTIONS(6608), - [anon_sym_register] = ACTIONS(6608), - [anon_sym_inline] = ACTIONS(6608), - [anon_sym___inline] = ACTIONS(6608), - [anon_sym___inline__] = ACTIONS(6608), - [anon_sym___forceinline] = ACTIONS(6608), - [anon_sym_thread_local] = ACTIONS(6608), - [anon_sym___thread] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6608), - [anon_sym_volatile] = ACTIONS(6608), - [anon_sym_restrict] = ACTIONS(6608), - [anon_sym___restrict__] = ACTIONS(6608), - [anon_sym__Atomic] = ACTIONS(6608), - [anon_sym__Noreturn] = ACTIONS(6608), - [anon_sym_noreturn] = ACTIONS(6608), - [anon_sym__Nonnull] = ACTIONS(6608), - [anon_sym_mutable] = ACTIONS(6608), - [anon_sym_constinit] = ACTIONS(6608), - [anon_sym_consteval] = ACTIONS(6608), - [anon_sym_alignas] = ACTIONS(6608), - [anon_sym__Alignas] = ACTIONS(6608), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_STAR_EQ] = ACTIONS(6610), - [anon_sym_SLASH_EQ] = ACTIONS(6610), - [anon_sym_PERCENT_EQ] = ACTIONS(6610), - [anon_sym_PLUS_EQ] = ACTIONS(6610), - [anon_sym_DASH_EQ] = ACTIONS(6610), - [anon_sym_LT_LT_EQ] = ACTIONS(6610), - [anon_sym_GT_GT_EQ] = ACTIONS(6610), - [anon_sym_AMP_EQ] = ACTIONS(6610), - [anon_sym_CARET_EQ] = ACTIONS(6610), - [anon_sym_PIPE_EQ] = ACTIONS(6610), - [anon_sym_and_eq] = ACTIONS(6608), - [anon_sym_or_eq] = ACTIONS(6608), - [anon_sym_xor_eq] = ACTIONS(6608), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6608), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6608), - [anon_sym_not_eq] = ACTIONS(6608), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6608), - [anon_sym_decltype] = ACTIONS(6608), - [anon_sym_template] = ACTIONS(6608), - [anon_sym_operator] = ACTIONS(6608), - [anon_sym_DASH_GT_STAR] = ACTIONS(6610), - [anon_sym_LBRACK_COLON] = ACTIONS(6610), + [sym_identifier] = ACTIONS(6590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_RPAREN] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6592), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6592), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6592), + [anon_sym_GT_GT] = ACTIONS(6592), + [anon_sym_SEMI] = ACTIONS(6592), + [anon_sym___extension__] = ACTIONS(6590), + [anon_sym_virtual] = ACTIONS(6590), + [anon_sym_extern] = ACTIONS(6590), + [anon_sym___attribute__] = ACTIONS(6590), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6592), + [anon_sym___declspec] = ACTIONS(6590), + [anon_sym___based] = ACTIONS(6590), + [anon_sym___cdecl] = ACTIONS(6590), + [anon_sym___clrcall] = ACTIONS(6590), + [anon_sym___stdcall] = ACTIONS(6590), + [anon_sym___fastcall] = ACTIONS(6590), + [anon_sym___thiscall] = ACTIONS(6590), + [anon_sym___vectorcall] = ACTIONS(6590), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_RBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6590), + [anon_sym_static] = ACTIONS(6590), + [anon_sym_RBRACK] = ACTIONS(6592), + [anon_sym_EQ] = ACTIONS(6590), + [anon_sym_register] = ACTIONS(6590), + [anon_sym_inline] = ACTIONS(6590), + [anon_sym___inline] = ACTIONS(6590), + [anon_sym___inline__] = ACTIONS(6590), + [anon_sym___forceinline] = ACTIONS(6590), + [anon_sym_thread_local] = ACTIONS(6590), + [anon_sym___thread] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6590), + [anon_sym_volatile] = ACTIONS(6590), + [anon_sym_restrict] = ACTIONS(6590), + [anon_sym___restrict__] = ACTIONS(6590), + [anon_sym__Atomic] = ACTIONS(6590), + [anon_sym__Noreturn] = ACTIONS(6590), + [anon_sym_noreturn] = ACTIONS(6590), + [anon_sym__Nonnull] = ACTIONS(6590), + [anon_sym_mutable] = ACTIONS(6590), + [anon_sym_constinit] = ACTIONS(6590), + [anon_sym_consteval] = ACTIONS(6590), + [anon_sym_alignas] = ACTIONS(6590), + [anon_sym__Alignas] = ACTIONS(6590), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6590), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6590), + [anon_sym_not_eq] = ACTIONS(6590), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6590), + [anon_sym_decltype] = ACTIONS(6590), + [anon_sym_final] = ACTIONS(6590), + [anon_sym_override] = ACTIONS(6590), + [anon_sym_template] = ACTIONS(6590), + [anon_sym_operator] = ACTIONS(6590), + [anon_sym_noexcept] = ACTIONS(6590), + [anon_sym_throw] = ACTIONS(6590), + [anon_sym_LBRACK_COLON] = ACTIONS(6592), }, [STATE(2014)] = { - [sym_identifier] = ACTIONS(6620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_RPAREN] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_TILDE] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6620), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6620), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6620), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6620), - [anon_sym_GT_GT] = ACTIONS(6620), - [anon_sym___extension__] = ACTIONS(6620), - [anon_sym_virtual] = ACTIONS(6620), - [anon_sym_extern] = ACTIONS(6620), - [anon_sym___attribute__] = ACTIONS(6620), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), - [anon_sym___declspec] = ACTIONS(6620), - [anon_sym___based] = ACTIONS(6620), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6620), - [anon_sym_static] = ACTIONS(6620), - [anon_sym_EQ] = ACTIONS(6620), - [anon_sym_register] = ACTIONS(6620), - [anon_sym_inline] = ACTIONS(6620), - [anon_sym___inline] = ACTIONS(6620), - [anon_sym___inline__] = ACTIONS(6620), - [anon_sym___forceinline] = ACTIONS(6620), - [anon_sym_thread_local] = ACTIONS(6620), - [anon_sym___thread] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6620), - [anon_sym_volatile] = ACTIONS(6620), - [anon_sym_restrict] = ACTIONS(6620), - [anon_sym___restrict__] = ACTIONS(6620), - [anon_sym__Atomic] = ACTIONS(6620), - [anon_sym__Noreturn] = ACTIONS(6620), - [anon_sym_noreturn] = ACTIONS(6620), - [anon_sym__Nonnull] = ACTIONS(6620), - [anon_sym_mutable] = ACTIONS(6620), - [anon_sym_constinit] = ACTIONS(6620), - [anon_sym_consteval] = ACTIONS(6620), - [anon_sym_alignas] = ACTIONS(6620), - [anon_sym__Alignas] = ACTIONS(6620), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_STAR_EQ] = ACTIONS(6622), - [anon_sym_SLASH_EQ] = ACTIONS(6622), - [anon_sym_PERCENT_EQ] = ACTIONS(6622), - [anon_sym_PLUS_EQ] = ACTIONS(6622), - [anon_sym_DASH_EQ] = ACTIONS(6622), - [anon_sym_LT_LT_EQ] = ACTIONS(6622), - [anon_sym_GT_GT_EQ] = ACTIONS(6622), - [anon_sym_AMP_EQ] = ACTIONS(6622), - [anon_sym_CARET_EQ] = ACTIONS(6622), - [anon_sym_PIPE_EQ] = ACTIONS(6622), - [anon_sym_and_eq] = ACTIONS(6620), - [anon_sym_or_eq] = ACTIONS(6620), - [anon_sym_xor_eq] = ACTIONS(6620), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6620), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6620), - [anon_sym_not_eq] = ACTIONS(6620), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6620), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6620), - [anon_sym_decltype] = ACTIONS(6620), - [anon_sym_template] = ACTIONS(6620), - [anon_sym_operator] = ACTIONS(6620), - [anon_sym_DASH_GT_STAR] = ACTIONS(6622), - [anon_sym_LBRACK_COLON] = ACTIONS(6622), + [sym_string_literal] = STATE(3622), + [sym_decltype_auto] = STATE(3215), + [sym_template_argument_list] = STATE(2853), + [sym_raw_string_literal] = STATE(3622), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5613), + [anon_sym_LPAREN2] = ACTIONS(5613), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(6896), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6899), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6864), + [anon_sym_unsigned] = ACTIONS(6864), + [anon_sym_long] = ACTIONS(6864), + [anon_sym_short] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(5641), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5619), + [anon_sym_L_DQUOTE] = ACTIONS(6901), + [anon_sym_u_DQUOTE] = ACTIONS(6901), + [anon_sym_U_DQUOTE] = ACTIONS(6901), + [anon_sym_u8_DQUOTE] = ACTIONS(6901), + [anon_sym_DQUOTE] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6866), + [anon_sym_decltype] = ACTIONS(6868), + [anon_sym_R_DQUOTE] = ACTIONS(6903), + [anon_sym_LR_DQUOTE] = ACTIONS(6903), + [anon_sym_uR_DQUOTE] = ACTIONS(6903), + [anon_sym_UR_DQUOTE] = ACTIONS(6903), + [anon_sym_u8R_DQUOTE] = ACTIONS(6903), + [anon_sym_DASH_GT_STAR] = ACTIONS(5611), }, [STATE(2015)] = { - [sym_identifier] = ACTIONS(6632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_RPAREN] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_TILDE] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6634), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6634), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6634), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6634), - [anon_sym_GT_GT] = ACTIONS(6634), - [anon_sym_SEMI] = ACTIONS(6634), - [anon_sym___extension__] = ACTIONS(6632), - [anon_sym_virtual] = ACTIONS(6632), - [anon_sym_extern] = ACTIONS(6632), - [anon_sym___attribute__] = ACTIONS(6632), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), - [anon_sym___declspec] = ACTIONS(6632), - [anon_sym___based] = ACTIONS(6632), - [anon_sym___cdecl] = ACTIONS(6632), - [anon_sym___clrcall] = ACTIONS(6632), - [anon_sym___stdcall] = ACTIONS(6632), - [anon_sym___fastcall] = ACTIONS(6632), - [anon_sym___thiscall] = ACTIONS(6632), - [anon_sym___vectorcall] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_RBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6632), - [anon_sym_static] = ACTIONS(6632), - [anon_sym_RBRACK] = ACTIONS(6634), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_register] = ACTIONS(6632), - [anon_sym_inline] = ACTIONS(6632), - [anon_sym___inline] = ACTIONS(6632), - [anon_sym___inline__] = ACTIONS(6632), - [anon_sym___forceinline] = ACTIONS(6632), - [anon_sym_thread_local] = ACTIONS(6632), - [anon_sym___thread] = ACTIONS(6632), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6632), - [anon_sym_volatile] = ACTIONS(6632), - [anon_sym_restrict] = ACTIONS(6632), - [anon_sym___restrict__] = ACTIONS(6632), - [anon_sym__Atomic] = ACTIONS(6632), - [anon_sym__Noreturn] = ACTIONS(6632), - [anon_sym_noreturn] = ACTIONS(6632), - [anon_sym__Nonnull] = ACTIONS(6632), - [anon_sym_mutable] = ACTIONS(6632), - [anon_sym_constinit] = ACTIONS(6632), - [anon_sym_consteval] = ACTIONS(6632), - [anon_sym_alignas] = ACTIONS(6632), - [anon_sym__Alignas] = ACTIONS(6632), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6632), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6632), - [anon_sym_not_eq] = ACTIONS(6632), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6632), - [anon_sym_decltype] = ACTIONS(6632), - [anon_sym_final] = ACTIONS(6632), - [anon_sym_override] = ACTIONS(6632), - [anon_sym_template] = ACTIONS(6632), - [anon_sym_operator] = ACTIONS(6632), - [anon_sym_noexcept] = ACTIONS(6632), - [anon_sym_throw] = ACTIONS(6632), - [anon_sym_LBRACK_COLON] = ACTIONS(6634), + [sym_identifier] = ACTIONS(6610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_TILDE] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym_SEMI] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym_virtual] = ACTIONS(6610), + [anon_sym_extern] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6612), + [anon_sym___declspec] = ACTIONS(6610), + [anon_sym___based] = ACTIONS(6610), + [anon_sym___cdecl] = ACTIONS(6610), + [anon_sym___clrcall] = ACTIONS(6610), + [anon_sym___stdcall] = ACTIONS(6610), + [anon_sym___fastcall] = ACTIONS(6610), + [anon_sym___thiscall] = ACTIONS(6610), + [anon_sym___vectorcall] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_RBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_static] = ACTIONS(6610), + [anon_sym_RBRACK] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_register] = ACTIONS(6610), + [anon_sym_inline] = ACTIONS(6610), + [anon_sym___inline] = ACTIONS(6610), + [anon_sym___inline__] = ACTIONS(6610), + [anon_sym___forceinline] = ACTIONS(6610), + [anon_sym_thread_local] = ACTIONS(6610), + [anon_sym___thread] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(6610), + [anon_sym_operator] = ACTIONS(6610), + [anon_sym_noexcept] = ACTIONS(6610), + [anon_sym_throw] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(6612), }, [STATE(2016)] = { - [sym_type_qualifier] = STATE(2017), - [sym_alignas_qualifier] = STATE(2059), - [aux_sym__type_definition_type_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(6899), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), - [anon_sym_COMMA] = ACTIONS(6901), - [anon_sym_RPAREN] = ACTIONS(6901), - [aux_sym_preproc_if_token2] = ACTIONS(6901), - [aux_sym_preproc_else_token1] = ACTIONS(6901), - [aux_sym_preproc_elif_token1] = ACTIONS(6899), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6901), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6901), - [anon_sym_LPAREN2] = ACTIONS(6901), - [anon_sym_DASH] = ACTIONS(6899), - [anon_sym_PLUS] = ACTIONS(6899), - [anon_sym_STAR] = ACTIONS(6899), - [anon_sym_SLASH] = ACTIONS(6899), - [anon_sym_PERCENT] = ACTIONS(6899), - [anon_sym_PIPE_PIPE] = ACTIONS(6901), - [anon_sym_AMP_AMP] = ACTIONS(6901), - [anon_sym_PIPE] = ACTIONS(6899), - [anon_sym_CARET] = ACTIONS(6899), - [anon_sym_AMP] = ACTIONS(6899), - [anon_sym_EQ_EQ] = ACTIONS(6901), - [anon_sym_BANG_EQ] = ACTIONS(6901), - [anon_sym_GT] = ACTIONS(6899), - [anon_sym_GT_EQ] = ACTIONS(6901), - [anon_sym_LT_EQ] = ACTIONS(6899), - [anon_sym_LT] = ACTIONS(6899), - [anon_sym_LT_LT] = ACTIONS(6899), - [anon_sym_GT_GT] = ACTIONS(6899), - [anon_sym_SEMI] = ACTIONS(6901), - [anon_sym___extension__] = ACTIONS(6489), - [anon_sym___attribute__] = ACTIONS(6899), - [anon_sym___attribute] = ACTIONS(6899), - [anon_sym_COLON] = ACTIONS(6899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6901), - [anon_sym_RBRACE] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(6899), - [anon_sym_EQ] = ACTIONS(6899), - [anon_sym_const] = ACTIONS(6489), - [anon_sym_constexpr] = ACTIONS(6489), - [anon_sym_volatile] = ACTIONS(6489), - [anon_sym_restrict] = ACTIONS(6489), - [anon_sym___restrict__] = ACTIONS(6489), - [anon_sym__Atomic] = ACTIONS(6489), - [anon_sym__Noreturn] = ACTIONS(6489), - [anon_sym_noreturn] = ACTIONS(6489), - [anon_sym__Nonnull] = ACTIONS(6489), - [anon_sym_mutable] = ACTIONS(6489), - [anon_sym_constinit] = ACTIONS(6489), - [anon_sym_consteval] = ACTIONS(6489), - [anon_sym_alignas] = ACTIONS(6495), - [anon_sym__Alignas] = ACTIONS(6495), - [anon_sym_QMARK] = ACTIONS(6901), - [anon_sym_STAR_EQ] = ACTIONS(6901), - [anon_sym_SLASH_EQ] = ACTIONS(6901), - [anon_sym_PERCENT_EQ] = ACTIONS(6901), - [anon_sym_PLUS_EQ] = ACTIONS(6901), - [anon_sym_DASH_EQ] = ACTIONS(6901), - [anon_sym_LT_LT_EQ] = ACTIONS(6901), - [anon_sym_GT_GT_EQ] = ACTIONS(6901), - [anon_sym_AMP_EQ] = ACTIONS(6901), - [anon_sym_CARET_EQ] = ACTIONS(6901), - [anon_sym_PIPE_EQ] = ACTIONS(6901), - [anon_sym_and_eq] = ACTIONS(6899), - [anon_sym_or_eq] = ACTIONS(6899), - [anon_sym_xor_eq] = ACTIONS(6899), - [anon_sym_LT_EQ_GT] = ACTIONS(6901), - [anon_sym_or] = ACTIONS(6899), - [anon_sym_and] = ACTIONS(6899), - [anon_sym_bitor] = ACTIONS(6899), - [anon_sym_xor] = ACTIONS(6899), - [anon_sym_bitand] = ACTIONS(6899), - [anon_sym_not_eq] = ACTIONS(6899), - [anon_sym_DASH_DASH] = ACTIONS(6901), - [anon_sym_PLUS_PLUS] = ACTIONS(6901), - [anon_sym_asm] = ACTIONS(6899), - [anon_sym___asm__] = ACTIONS(6899), - [anon_sym___asm] = ACTIONS(6899), - [anon_sym_DOT] = ACTIONS(6899), - [anon_sym_DOT_STAR] = ACTIONS(6901), - [anon_sym_DASH_GT] = ACTIONS(6901), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6899), - [anon_sym_override] = ACTIONS(6899), - [anon_sym_noexcept] = ACTIONS(6899), - [anon_sym_throw] = ACTIONS(6899), - [anon_sym_requires] = ACTIONS(6899), - [anon_sym_COLON_RBRACK] = ACTIONS(6901), + [sym_identifier] = ACTIONS(6596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6598), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6598), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6598), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6598), + [anon_sym_GT_GT] = ACTIONS(6598), + [anon_sym_SEMI] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6596), + [anon_sym_virtual] = ACTIONS(6596), + [anon_sym_extern] = ACTIONS(6596), + [anon_sym___attribute__] = ACTIONS(6596), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6598), + [anon_sym___declspec] = ACTIONS(6596), + [anon_sym___based] = ACTIONS(6596), + [anon_sym___cdecl] = ACTIONS(6596), + [anon_sym___clrcall] = ACTIONS(6596), + [anon_sym___stdcall] = ACTIONS(6596), + [anon_sym___fastcall] = ACTIONS(6596), + [anon_sym___thiscall] = ACTIONS(6596), + [anon_sym___vectorcall] = ACTIONS(6596), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_RBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6596), + [anon_sym_static] = ACTIONS(6596), + [anon_sym_RBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6596), + [anon_sym_register] = ACTIONS(6596), + [anon_sym_inline] = ACTIONS(6596), + [anon_sym___inline] = ACTIONS(6596), + [anon_sym___inline__] = ACTIONS(6596), + [anon_sym___forceinline] = ACTIONS(6596), + [anon_sym_thread_local] = ACTIONS(6596), + [anon_sym___thread] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6596), + [anon_sym_volatile] = ACTIONS(6596), + [anon_sym_restrict] = ACTIONS(6596), + [anon_sym___restrict__] = ACTIONS(6596), + [anon_sym__Atomic] = ACTIONS(6596), + [anon_sym__Noreturn] = ACTIONS(6596), + [anon_sym_noreturn] = ACTIONS(6596), + [anon_sym__Nonnull] = ACTIONS(6596), + [anon_sym_mutable] = ACTIONS(6596), + [anon_sym_constinit] = ACTIONS(6596), + [anon_sym_consteval] = ACTIONS(6596), + [anon_sym_alignas] = ACTIONS(6596), + [anon_sym__Alignas] = ACTIONS(6596), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6596), + [anon_sym_decltype] = ACTIONS(6596), + [anon_sym_final] = ACTIONS(6596), + [anon_sym_override] = ACTIONS(6596), + [anon_sym_template] = ACTIONS(6596), + [anon_sym_operator] = ACTIONS(6596), + [anon_sym_noexcept] = ACTIONS(6596), + [anon_sym_throw] = ACTIONS(6596), + [anon_sym_LBRACK_COLON] = ACTIONS(6598), }, [STATE(2017)] = { - [sym_type_qualifier] = STATE(2017), - [sym_alignas_qualifier] = STATE(2059), - [aux_sym__type_definition_type_repeat1] = STATE(2017), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_RPAREN] = ACTIONS(6891), - [aux_sym_preproc_if_token2] = ACTIONS(6891), - [aux_sym_preproc_else_token1] = ACTIONS(6891), - [aux_sym_preproc_elif_token1] = ACTIONS(6889), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6891), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym_SEMI] = ACTIONS(6891), - [anon_sym___extension__] = ACTIONS(6903), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_COLON] = ACTIONS(6889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6891), - [anon_sym_RBRACE] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6889), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(6903), - [anon_sym_constexpr] = ACTIONS(6903), - [anon_sym_volatile] = ACTIONS(6903), - [anon_sym_restrict] = ACTIONS(6903), - [anon_sym___restrict__] = ACTIONS(6903), - [anon_sym__Atomic] = ACTIONS(6903), - [anon_sym__Noreturn] = ACTIONS(6903), - [anon_sym_noreturn] = ACTIONS(6903), - [anon_sym__Nonnull] = ACTIONS(6903), - [anon_sym_mutable] = ACTIONS(6903), - [anon_sym_constinit] = ACTIONS(6903), - [anon_sym_consteval] = ACTIONS(6903), - [anon_sym_alignas] = ACTIONS(6906), - [anon_sym__Alignas] = ACTIONS(6906), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6891), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_and_eq] = ACTIONS(6889), - [anon_sym_or_eq] = ACTIONS(6889), - [anon_sym_xor_eq] = ACTIONS(6889), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_asm] = ACTIONS(6889), - [anon_sym___asm__] = ACTIONS(6889), - [anon_sym___asm] = ACTIONS(6889), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_noexcept] = ACTIONS(6889), - [anon_sym_throw] = ACTIONS(6889), - [anon_sym_requires] = ACTIONS(6889), - [anon_sym_COLON_RBRACK] = ACTIONS(6891), + [sym_template_argument_list] = STATE(2023), + [sym_identifier] = ACTIONS(6559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_RPAREN] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_TILDE] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6568), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_PIPE_PIPE] = ACTIONS(6561), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6568), + [anon_sym_CARET] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6561), + [anon_sym_BANG_EQ] = ACTIONS(6561), + [anon_sym_GT] = ACTIONS(6568), + [anon_sym_GT_EQ] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(6573), + [anon_sym_LT_LT] = ACTIONS(6568), + [anon_sym_GT_GT] = ACTIONS(6568), + [anon_sym___extension__] = ACTIONS(6559), + [anon_sym_virtual] = ACTIONS(6559), + [anon_sym_extern] = ACTIONS(6559), + [anon_sym___attribute__] = ACTIONS(6559), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6566), + [anon_sym___declspec] = ACTIONS(6559), + [anon_sym___based] = ACTIONS(6559), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6570), + [anon_sym_static] = ACTIONS(6559), + [anon_sym_EQ] = ACTIONS(6570), + [anon_sym_register] = ACTIONS(6559), + [anon_sym_inline] = ACTIONS(6559), + [anon_sym___inline] = ACTIONS(6559), + [anon_sym___inline__] = ACTIONS(6559), + [anon_sym___forceinline] = ACTIONS(6559), + [anon_sym_thread_local] = ACTIONS(6559), + [anon_sym___thread] = ACTIONS(6559), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6559), + [anon_sym_volatile] = ACTIONS(6559), + [anon_sym_restrict] = ACTIONS(6559), + [anon_sym___restrict__] = ACTIONS(6559), + [anon_sym__Atomic] = ACTIONS(6559), + [anon_sym__Noreturn] = ACTIONS(6559), + [anon_sym_noreturn] = ACTIONS(6559), + [anon_sym__Nonnull] = ACTIONS(6559), + [anon_sym_mutable] = ACTIONS(6559), + [anon_sym_constinit] = ACTIONS(6559), + [anon_sym_consteval] = ACTIONS(6559), + [anon_sym_alignas] = ACTIONS(6559), + [anon_sym__Alignas] = ACTIONS(6559), + [anon_sym_QMARK] = ACTIONS(6561), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6561), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6568), + [anon_sym_or_eq] = ACTIONS(6568), + [anon_sym_xor_eq] = ACTIONS(6568), + [anon_sym_LT_EQ_GT] = ACTIONS(6561), + [anon_sym_or] = ACTIONS(6568), + [anon_sym_and] = ACTIONS(6568), + [anon_sym_bitor] = ACTIONS(6568), + [anon_sym_xor] = ACTIONS(6568), + [anon_sym_bitand] = ACTIONS(6568), + [anon_sym_not_eq] = ACTIONS(6568), + [anon_sym_DASH_DASH] = ACTIONS(6561), + [anon_sym_PLUS_PLUS] = ACTIONS(6561), + [anon_sym_DOT] = ACTIONS(6568), + [anon_sym_DOT_STAR] = ACTIONS(6561), + [anon_sym_DASH_GT] = ACTIONS(6561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6559), + [anon_sym_decltype] = ACTIONS(6559), + [anon_sym_template] = ACTIONS(6559), + [anon_sym_operator] = ACTIONS(6559), + [anon_sym_LBRACK_COLON] = ACTIONS(6566), }, [STATE(2018)] = { - [sym_string_literal] = STATE(5033), - [sym_decltype_auto] = STATE(3203), - [sym_template_argument_list] = STATE(3449), - [sym_raw_string_literal] = STATE(5033), - [aux_sym_sized_type_specifier_repeat1] = STATE(3552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6863), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym_SEMI] = ACTIONS(5640), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym___attribute__] = ACTIONS(5640), - [anon_sym___attribute] = ACTIONS(5647), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6867), - [anon_sym_unsigned] = ACTIONS(6867), - [anon_sym_long] = ACTIONS(6867), - [anon_sym_short] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(6909), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(6911), - [anon_sym_SLASH_EQ] = ACTIONS(6911), - [anon_sym_PERCENT_EQ] = ACTIONS(6911), - [anon_sym_PLUS_EQ] = ACTIONS(6911), - [anon_sym_DASH_EQ] = ACTIONS(6911), - [anon_sym_LT_LT_EQ] = ACTIONS(6911), - [anon_sym_GT_GT_EQ] = ACTIONS(6911), - [anon_sym_AMP_EQ] = ACTIONS(6911), - [anon_sym_CARET_EQ] = ACTIONS(6911), - [anon_sym_PIPE_EQ] = ACTIONS(6911), - [anon_sym_and_eq] = ACTIONS(6911), - [anon_sym_or_eq] = ACTIONS(6911), - [anon_sym_xor_eq] = ACTIONS(6911), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(6913), - [anon_sym_u_DQUOTE] = ACTIONS(6913), - [anon_sym_U_DQUOTE] = ACTIONS(6913), - [anon_sym_u8_DQUOTE] = ACTIONS(6913), - [anon_sym_DQUOTE] = ACTIONS(6913), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6869), - [anon_sym_decltype] = ACTIONS(6871), - [anon_sym_R_DQUOTE] = ACTIONS(6915), - [anon_sym_LR_DQUOTE] = ACTIONS(6915), - [anon_sym_uR_DQUOTE] = ACTIONS(6915), - [anon_sym_UR_DQUOTE] = ACTIONS(6915), - [anon_sym_u8R_DQUOTE] = ACTIONS(6915), + [sym_type_qualifier] = STATE(2018), + [sym_alignas_qualifier] = STATE(2060), + [aux_sym__type_definition_type_repeat1] = STATE(2018), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_RPAREN] = ACTIONS(6880), + [aux_sym_preproc_if_token2] = ACTIONS(6880), + [aux_sym_preproc_else_token1] = ACTIONS(6880), + [aux_sym_preproc_elif_token1] = ACTIONS(6878), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym_SEMI] = ACTIONS(6880), + [anon_sym___extension__] = ACTIONS(6905), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_COLON] = ACTIONS(6878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6880), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6880), + [anon_sym_RBRACE] = ACTIONS(6880), + [anon_sym_LBRACK] = ACTIONS(6878), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(6905), + [anon_sym_constexpr] = ACTIONS(6905), + [anon_sym_volatile] = ACTIONS(6905), + [anon_sym_restrict] = ACTIONS(6905), + [anon_sym___restrict__] = ACTIONS(6905), + [anon_sym__Atomic] = ACTIONS(6905), + [anon_sym__Noreturn] = ACTIONS(6905), + [anon_sym_noreturn] = ACTIONS(6905), + [anon_sym__Nonnull] = ACTIONS(6905), + [anon_sym_mutable] = ACTIONS(6905), + [anon_sym_constinit] = ACTIONS(6905), + [anon_sym_consteval] = ACTIONS(6905), + [anon_sym_alignas] = ACTIONS(6908), + [anon_sym__Alignas] = ACTIONS(6908), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6880), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_and_eq] = ACTIONS(6878), + [anon_sym_or_eq] = ACTIONS(6878), + [anon_sym_xor_eq] = ACTIONS(6878), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_asm] = ACTIONS(6878), + [anon_sym___asm__] = ACTIONS(6878), + [anon_sym___asm] = ACTIONS(6878), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_noexcept] = ACTIONS(6878), + [anon_sym_throw] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6878), + [anon_sym_COLON_RBRACK] = ACTIONS(6880), }, [STATE(2019)] = { - [sym_identifier] = ACTIONS(6608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_RPAREN] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_TILDE] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6610), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6610), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6610), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6610), - [anon_sym_GT_GT] = ACTIONS(6610), - [anon_sym_SEMI] = ACTIONS(6610), - [anon_sym___extension__] = ACTIONS(6608), - [anon_sym_virtual] = ACTIONS(6608), - [anon_sym_extern] = ACTIONS(6608), - [anon_sym___attribute__] = ACTIONS(6608), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), - [anon_sym___declspec] = ACTIONS(6608), - [anon_sym___based] = ACTIONS(6608), - [anon_sym___cdecl] = ACTIONS(6608), - [anon_sym___clrcall] = ACTIONS(6608), - [anon_sym___stdcall] = ACTIONS(6608), - [anon_sym___fastcall] = ACTIONS(6608), - [anon_sym___thiscall] = ACTIONS(6608), - [anon_sym___vectorcall] = ACTIONS(6608), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_RBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6608), - [anon_sym_static] = ACTIONS(6608), - [anon_sym_RBRACK] = ACTIONS(6610), - [anon_sym_EQ] = ACTIONS(6608), - [anon_sym_register] = ACTIONS(6608), - [anon_sym_inline] = ACTIONS(6608), - [anon_sym___inline] = ACTIONS(6608), - [anon_sym___inline__] = ACTIONS(6608), - [anon_sym___forceinline] = ACTIONS(6608), - [anon_sym_thread_local] = ACTIONS(6608), - [anon_sym___thread] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6608), - [anon_sym_volatile] = ACTIONS(6608), - [anon_sym_restrict] = ACTIONS(6608), - [anon_sym___restrict__] = ACTIONS(6608), - [anon_sym__Atomic] = ACTIONS(6608), - [anon_sym__Noreturn] = ACTIONS(6608), - [anon_sym_noreturn] = ACTIONS(6608), - [anon_sym__Nonnull] = ACTIONS(6608), - [anon_sym_mutable] = ACTIONS(6608), - [anon_sym_constinit] = ACTIONS(6608), - [anon_sym_consteval] = ACTIONS(6608), - [anon_sym_alignas] = ACTIONS(6608), - [anon_sym__Alignas] = ACTIONS(6608), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6608), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6608), - [anon_sym_not_eq] = ACTIONS(6608), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6608), - [anon_sym_decltype] = ACTIONS(6608), - [anon_sym_final] = ACTIONS(6608), - [anon_sym_override] = ACTIONS(6608), - [anon_sym_template] = ACTIONS(6608), - [anon_sym_operator] = ACTIONS(6608), - [anon_sym_noexcept] = ACTIONS(6608), - [anon_sym_throw] = ACTIONS(6608), - [anon_sym_LBRACK_COLON] = ACTIONS(6610), + [sym_identifier] = ACTIONS(6586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_RPAREN] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_TILDE] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6588), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6588), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6588), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6588), + [anon_sym_GT_GT] = ACTIONS(6588), + [anon_sym_SEMI] = ACTIONS(6588), + [anon_sym___extension__] = ACTIONS(6586), + [anon_sym_virtual] = ACTIONS(6586), + [anon_sym_extern] = ACTIONS(6586), + [anon_sym___attribute__] = ACTIONS(6586), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6588), + [anon_sym___declspec] = ACTIONS(6586), + [anon_sym___based] = ACTIONS(6586), + [anon_sym___cdecl] = ACTIONS(6586), + [anon_sym___clrcall] = ACTIONS(6586), + [anon_sym___stdcall] = ACTIONS(6586), + [anon_sym___fastcall] = ACTIONS(6586), + [anon_sym___thiscall] = ACTIONS(6586), + [anon_sym___vectorcall] = ACTIONS(6586), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_RBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6586), + [anon_sym_static] = ACTIONS(6586), + [anon_sym_RBRACK] = ACTIONS(6588), + [anon_sym_EQ] = ACTIONS(6586), + [anon_sym_register] = ACTIONS(6586), + [anon_sym_inline] = ACTIONS(6586), + [anon_sym___inline] = ACTIONS(6586), + [anon_sym___inline__] = ACTIONS(6586), + [anon_sym___forceinline] = ACTIONS(6586), + [anon_sym_thread_local] = ACTIONS(6586), + [anon_sym___thread] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6586), + [anon_sym_volatile] = ACTIONS(6586), + [anon_sym_restrict] = ACTIONS(6586), + [anon_sym___restrict__] = ACTIONS(6586), + [anon_sym__Atomic] = ACTIONS(6586), + [anon_sym__Noreturn] = ACTIONS(6586), + [anon_sym_noreturn] = ACTIONS(6586), + [anon_sym__Nonnull] = ACTIONS(6586), + [anon_sym_mutable] = ACTIONS(6586), + [anon_sym_constinit] = ACTIONS(6586), + [anon_sym_consteval] = ACTIONS(6586), + [anon_sym_alignas] = ACTIONS(6586), + [anon_sym__Alignas] = ACTIONS(6586), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6586), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6586), + [anon_sym_not_eq] = ACTIONS(6586), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6586), + [anon_sym_decltype] = ACTIONS(6586), + [anon_sym_final] = ACTIONS(6586), + [anon_sym_override] = ACTIONS(6586), + [anon_sym_template] = ACTIONS(6586), + [anon_sym_operator] = ACTIONS(6586), + [anon_sym_noexcept] = ACTIONS(6586), + [anon_sym_throw] = ACTIONS(6586), + [anon_sym_LBRACK_COLON] = ACTIONS(6588), }, [STATE(2020)] = { - [sym_identifier] = ACTIONS(6616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_RPAREN] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_TILDE] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6618), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6618), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6618), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6618), - [anon_sym_GT_GT] = ACTIONS(6618), - [anon_sym_SEMI] = ACTIONS(6618), - [anon_sym___extension__] = ACTIONS(6616), - [anon_sym_virtual] = ACTIONS(6616), - [anon_sym_extern] = ACTIONS(6616), - [anon_sym___attribute__] = ACTIONS(6616), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), - [anon_sym___declspec] = ACTIONS(6616), - [anon_sym___based] = ACTIONS(6616), - [anon_sym___cdecl] = ACTIONS(6616), - [anon_sym___clrcall] = ACTIONS(6616), - [anon_sym___stdcall] = ACTIONS(6616), - [anon_sym___fastcall] = ACTIONS(6616), - [anon_sym___thiscall] = ACTIONS(6616), - [anon_sym___vectorcall] = ACTIONS(6616), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_RBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6616), - [anon_sym_static] = ACTIONS(6616), - [anon_sym_RBRACK] = ACTIONS(6618), - [anon_sym_EQ] = ACTIONS(6616), - [anon_sym_register] = ACTIONS(6616), - [anon_sym_inline] = ACTIONS(6616), - [anon_sym___inline] = ACTIONS(6616), - [anon_sym___inline__] = ACTIONS(6616), - [anon_sym___forceinline] = ACTIONS(6616), - [anon_sym_thread_local] = ACTIONS(6616), - [anon_sym___thread] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6616), - [anon_sym_volatile] = ACTIONS(6616), - [anon_sym_restrict] = ACTIONS(6616), - [anon_sym___restrict__] = ACTIONS(6616), - [anon_sym__Atomic] = ACTIONS(6616), - [anon_sym__Noreturn] = ACTIONS(6616), - [anon_sym_noreturn] = ACTIONS(6616), - [anon_sym__Nonnull] = ACTIONS(6616), - [anon_sym_mutable] = ACTIONS(6616), - [anon_sym_constinit] = ACTIONS(6616), - [anon_sym_consteval] = ACTIONS(6616), - [anon_sym_alignas] = ACTIONS(6616), - [anon_sym__Alignas] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6616), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6616), - [anon_sym_not_eq] = ACTIONS(6616), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6616), - [anon_sym_decltype] = ACTIONS(6616), - [anon_sym_final] = ACTIONS(6616), - [anon_sym_override] = ACTIONS(6616), - [anon_sym_template] = ACTIONS(6616), - [anon_sym_operator] = ACTIONS(6616), - [anon_sym_noexcept] = ACTIONS(6616), - [anon_sym_throw] = ACTIONS(6616), - [anon_sym_LBRACK_COLON] = ACTIONS(6618), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(2026), + [sym__abstract_declarator] = STATE(4545), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2242), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1950), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2242), + [aux_sym_pointer_declarator_repeat1] = STATE(2026), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(6911), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(6913), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym_SEMI] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6819), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6815), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6831), + [sym_ms_signed_ptr_modifier] = ACTIONS(6831), + [anon_sym__unaligned] = ACTIONS(6833), + [anon_sym___unaligned] = ACTIONS(6833), + [anon_sym_RBRACE] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6815), }, [STATE(2021)] = { - [sym_identifier] = ACTIONS(6612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_RPAREN] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_TILDE] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6614), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6614), - [anon_sym_GT_GT] = ACTIONS(6614), - [anon_sym_SEMI] = ACTIONS(6614), - [anon_sym___extension__] = ACTIONS(6612), - [anon_sym_virtual] = ACTIONS(6612), - [anon_sym_extern] = ACTIONS(6612), - [anon_sym___attribute__] = ACTIONS(6612), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), - [anon_sym___declspec] = ACTIONS(6612), - [anon_sym___based] = ACTIONS(6612), - [anon_sym___cdecl] = ACTIONS(6612), - [anon_sym___clrcall] = ACTIONS(6612), - [anon_sym___stdcall] = ACTIONS(6612), - [anon_sym___fastcall] = ACTIONS(6612), - [anon_sym___thiscall] = ACTIONS(6612), - [anon_sym___vectorcall] = ACTIONS(6612), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_RBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6612), - [anon_sym_static] = ACTIONS(6612), - [anon_sym_RBRACK] = ACTIONS(6614), - [anon_sym_EQ] = ACTIONS(6612), - [anon_sym_register] = ACTIONS(6612), - [anon_sym_inline] = ACTIONS(6612), - [anon_sym___inline] = ACTIONS(6612), - [anon_sym___inline__] = ACTIONS(6612), - [anon_sym___forceinline] = ACTIONS(6612), - [anon_sym_thread_local] = ACTIONS(6612), - [anon_sym___thread] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6612), - [anon_sym_volatile] = ACTIONS(6612), - [anon_sym_restrict] = ACTIONS(6612), - [anon_sym___restrict__] = ACTIONS(6612), - [anon_sym__Atomic] = ACTIONS(6612), - [anon_sym__Noreturn] = ACTIONS(6612), - [anon_sym_noreturn] = ACTIONS(6612), - [anon_sym__Nonnull] = ACTIONS(6612), - [anon_sym_mutable] = ACTIONS(6612), - [anon_sym_constinit] = ACTIONS(6612), - [anon_sym_consteval] = ACTIONS(6612), - [anon_sym_alignas] = ACTIONS(6612), - [anon_sym__Alignas] = ACTIONS(6612), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6612), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6612), - [anon_sym_not_eq] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6612), - [anon_sym_decltype] = ACTIONS(6612), - [anon_sym_final] = ACTIONS(6612), - [anon_sym_override] = ACTIONS(6612), - [anon_sym_template] = ACTIONS(6612), - [anon_sym_operator] = ACTIONS(6612), - [anon_sym_noexcept] = ACTIONS(6612), - [anon_sym_throw] = ACTIONS(6612), - [anon_sym_LBRACK_COLON] = ACTIONS(6614), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(2021), + [aux_sym_pointer_declarator_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(6917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6919), + [anon_sym_COMMA] = ACTIONS(6919), + [anon_sym_RPAREN] = ACTIONS(6919), + [aux_sym_preproc_if_token2] = ACTIONS(6919), + [aux_sym_preproc_else_token1] = ACTIONS(6919), + [aux_sym_preproc_elif_token1] = ACTIONS(6917), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6919), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6919), + [anon_sym_LPAREN2] = ACTIONS(6919), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_PERCENT] = ACTIONS(6917), + [anon_sym_PIPE_PIPE] = ACTIONS(6919), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_CARET] = ACTIONS(6917), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_EQ_EQ] = ACTIONS(6919), + [anon_sym_BANG_EQ] = ACTIONS(6919), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6919), + [anon_sym_LT_EQ] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_LT_LT] = ACTIONS(6917), + [anon_sym_GT_GT] = ACTIONS(6917), + [anon_sym_SEMI] = ACTIONS(6919), + [anon_sym___extension__] = ACTIONS(6917), + [anon_sym___attribute__] = ACTIONS(6917), + [anon_sym___attribute] = ACTIONS(6917), + [anon_sym_COLON] = ACTIONS(6917), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6919), + [sym_ms_restrict_modifier] = ACTIONS(6921), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6921), + [sym_ms_signed_ptr_modifier] = ACTIONS(6921), + [anon_sym__unaligned] = ACTIONS(6924), + [anon_sym___unaligned] = ACTIONS(6924), + [anon_sym_RBRACE] = ACTIONS(6919), + [anon_sym_LBRACK] = ACTIONS(6919), + [anon_sym_EQ] = ACTIONS(6917), + [anon_sym_const] = ACTIONS(6917), + [anon_sym_constexpr] = ACTIONS(6917), + [anon_sym_volatile] = ACTIONS(6917), + [anon_sym_restrict] = ACTIONS(6917), + [anon_sym___restrict__] = ACTIONS(6917), + [anon_sym__Atomic] = ACTIONS(6917), + [anon_sym__Noreturn] = ACTIONS(6917), + [anon_sym_noreturn] = ACTIONS(6917), + [anon_sym__Nonnull] = ACTIONS(6917), + [anon_sym_mutable] = ACTIONS(6917), + [anon_sym_constinit] = ACTIONS(6917), + [anon_sym_consteval] = ACTIONS(6917), + [anon_sym_alignas] = ACTIONS(6917), + [anon_sym__Alignas] = ACTIONS(6917), + [anon_sym_QMARK] = ACTIONS(6919), + [anon_sym_STAR_EQ] = ACTIONS(6919), + [anon_sym_SLASH_EQ] = ACTIONS(6919), + [anon_sym_PERCENT_EQ] = ACTIONS(6919), + [anon_sym_PLUS_EQ] = ACTIONS(6919), + [anon_sym_DASH_EQ] = ACTIONS(6919), + [anon_sym_LT_LT_EQ] = ACTIONS(6919), + [anon_sym_GT_GT_EQ] = ACTIONS(6919), + [anon_sym_AMP_EQ] = ACTIONS(6919), + [anon_sym_CARET_EQ] = ACTIONS(6919), + [anon_sym_PIPE_EQ] = ACTIONS(6919), + [anon_sym_and_eq] = ACTIONS(6917), + [anon_sym_or_eq] = ACTIONS(6917), + [anon_sym_xor_eq] = ACTIONS(6917), + [anon_sym_LT_EQ_GT] = ACTIONS(6919), + [anon_sym_or] = ACTIONS(6917), + [anon_sym_and] = ACTIONS(6917), + [anon_sym_bitor] = ACTIONS(6917), + [anon_sym_xor] = ACTIONS(6917), + [anon_sym_bitand] = ACTIONS(6917), + [anon_sym_not_eq] = ACTIONS(6917), + [anon_sym_DASH_DASH] = ACTIONS(6919), + [anon_sym_PLUS_PLUS] = ACTIONS(6919), + [anon_sym_DOT] = ACTIONS(6917), + [anon_sym_DOT_STAR] = ACTIONS(6919), + [anon_sym_DASH_GT] = ACTIONS(6919), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6917), + [anon_sym_override] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(6917), + [anon_sym_COLON_RBRACK] = ACTIONS(6919), }, [STATE(2022)] = { - [sym_identifier] = ACTIONS(6620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_RPAREN] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_TILDE] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6622), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6622), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6622), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6622), - [anon_sym_GT_GT] = ACTIONS(6622), - [anon_sym_SEMI] = ACTIONS(6622), - [anon_sym___extension__] = ACTIONS(6620), - [anon_sym_virtual] = ACTIONS(6620), - [anon_sym_extern] = ACTIONS(6620), - [anon_sym___attribute__] = ACTIONS(6620), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), - [anon_sym___declspec] = ACTIONS(6620), - [anon_sym___based] = ACTIONS(6620), - [anon_sym___cdecl] = ACTIONS(6620), - [anon_sym___clrcall] = ACTIONS(6620), - [anon_sym___stdcall] = ACTIONS(6620), - [anon_sym___fastcall] = ACTIONS(6620), - [anon_sym___thiscall] = ACTIONS(6620), - [anon_sym___vectorcall] = ACTIONS(6620), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_RBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6620), - [anon_sym_static] = ACTIONS(6620), - [anon_sym_RBRACK] = ACTIONS(6622), - [anon_sym_EQ] = ACTIONS(6620), - [anon_sym_register] = ACTIONS(6620), - [anon_sym_inline] = ACTIONS(6620), - [anon_sym___inline] = ACTIONS(6620), - [anon_sym___inline__] = ACTIONS(6620), - [anon_sym___forceinline] = ACTIONS(6620), - [anon_sym_thread_local] = ACTIONS(6620), - [anon_sym___thread] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6620), - [anon_sym_volatile] = ACTIONS(6620), - [anon_sym_restrict] = ACTIONS(6620), - [anon_sym___restrict__] = ACTIONS(6620), - [anon_sym__Atomic] = ACTIONS(6620), - [anon_sym__Noreturn] = ACTIONS(6620), - [anon_sym_noreturn] = ACTIONS(6620), - [anon_sym__Nonnull] = ACTIONS(6620), - [anon_sym_mutable] = ACTIONS(6620), - [anon_sym_constinit] = ACTIONS(6620), - [anon_sym_consteval] = ACTIONS(6620), - [anon_sym_alignas] = ACTIONS(6620), - [anon_sym__Alignas] = ACTIONS(6620), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6620), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6620), - [anon_sym_not_eq] = ACTIONS(6620), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6620), - [anon_sym_decltype] = ACTIONS(6620), - [anon_sym_final] = ACTIONS(6620), - [anon_sym_override] = ACTIONS(6620), - [anon_sym_template] = ACTIONS(6620), - [anon_sym_operator] = ACTIONS(6620), - [anon_sym_noexcept] = ACTIONS(6620), - [anon_sym_throw] = ACTIONS(6620), - [anon_sym_LBRACK_COLON] = ACTIONS(6622), + [sym_string_literal] = STATE(3622), + [sym_decltype_auto] = STATE(2967), + [sym_template_argument_list] = STATE(3015), + [sym_raw_string_literal] = STATE(3622), + [aux_sym_sized_type_specifier_repeat1] = STATE(2416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(6927), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6931), + [anon_sym_unsigned] = ACTIONS(6931), + [anon_sym_long] = ACTIONS(6931), + [anon_sym_short] = ACTIONS(6931), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5621), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_PERCENT_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_CARET_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), + [anon_sym_and_eq] = ACTIONS(5624), + [anon_sym_or_eq] = ACTIONS(5624), + [anon_sym_xor_eq] = ACTIONS(5624), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5621), + [anon_sym_L_DQUOTE] = ACTIONS(6901), + [anon_sym_u_DQUOTE] = ACTIONS(6901), + [anon_sym_U_DQUOTE] = ACTIONS(6901), + [anon_sym_u8_DQUOTE] = ACTIONS(6901), + [anon_sym_DQUOTE] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6933), + [anon_sym_decltype] = ACTIONS(6935), + [anon_sym_R_DQUOTE] = ACTIONS(6903), + [anon_sym_LR_DQUOTE] = ACTIONS(6903), + [anon_sym_uR_DQUOTE] = ACTIONS(6903), + [anon_sym_UR_DQUOTE] = ACTIONS(6903), + [anon_sym_u8R_DQUOTE] = ACTIONS(6903), + [anon_sym_DASH_GT_STAR] = ACTIONS(5624), }, [STATE(2023)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(2029), - [sym__abstract_declarator] = STATE(4522), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2244), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1946), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2244), - [aux_sym_pointer_declarator_repeat1] = STATE(2029), - [sym_identifier] = ACTIONS(6861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [aux_sym_preproc_if_token2] = ACTIONS(6859), - [aux_sym_preproc_else_token1] = ACTIONS(6859), - [aux_sym_preproc_elif_token1] = ACTIONS(6861), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(6917), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(6919), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(6921), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(6833), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6835), - [sym_ms_signed_ptr_modifier] = ACTIONS(6835), - [anon_sym__unaligned] = ACTIONS(6837), - [anon_sym___unaligned] = ACTIONS(6837), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6861), - [anon_sym_or_eq] = ACTIONS(6861), - [anon_sym_xor_eq] = ACTIONS(6861), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6861), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6861), - [anon_sym_not_eq] = ACTIONS(6861), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RPAREN] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6658), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6658), + [anon_sym_GT_GT] = ACTIONS(6658), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym_virtual] = ACTIONS(6649), + [anon_sym_extern] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6656), + [anon_sym___declspec] = ACTIONS(6649), + [anon_sym___based] = ACTIONS(6649), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6660), + [anon_sym_static] = ACTIONS(6649), + [anon_sym_EQ] = ACTIONS(6660), + [anon_sym_register] = ACTIONS(6649), + [anon_sym_inline] = ACTIONS(6649), + [anon_sym___inline] = ACTIONS(6649), + [anon_sym___inline__] = ACTIONS(6649), + [anon_sym___forceinline] = ACTIONS(6649), + [anon_sym_thread_local] = ACTIONS(6649), + [anon_sym___thread] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6658), + [anon_sym_or_eq] = ACTIONS(6658), + [anon_sym_xor_eq] = ACTIONS(6658), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6658), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6658), + [anon_sym_not_eq] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_template] = ACTIONS(6649), + [anon_sym_operator] = ACTIONS(6649), + [anon_sym_LBRACK_COLON] = ACTIONS(6656), }, [STATE(2024)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(2030), - [sym__abstract_declarator] = STATE(4547), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2262), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2262), - [aux_sym_pointer_declarator_repeat1] = STATE(2030), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(6923), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(6925), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(6927), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym_SEMI] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6861), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), - [sym_ms_signed_ptr_modifier] = ACTIONS(6851), - [anon_sym__unaligned] = ACTIONS(6853), - [anon_sym___unaligned] = ACTIONS(6853), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6859), - [anon_sym_or_eq] = ACTIONS(6859), - [anon_sym_xor_eq] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(2021), + [sym__abstract_declarator] = STATE(4439), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2260), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2260), + [aux_sym_pointer_declarator_repeat1] = STATE(2021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6937), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6939), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6941), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(6843), + [anon_sym___attribute] = ACTIONS(6841), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6831), + [sym_ms_signed_ptr_modifier] = ACTIONS(6831), + [anon_sym__unaligned] = ACTIONS(6833), + [anon_sym___unaligned] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), }, [STATE(2025)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(2028), - [sym__abstract_declarator] = STATE(4538), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2245), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1957), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2245), - [aux_sym_pointer_declarator_repeat1] = STATE(2028), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), - [sym_ms_signed_ptr_modifier] = ACTIONS(6851), - [anon_sym__unaligned] = ACTIONS(6853), - [anon_sym___unaligned] = ACTIONS(6853), - [anon_sym_RBRACE] = ACTIONS(6823), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6823), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(2024), + [sym__abstract_declarator] = STATE(4437), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2258), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2258), + [aux_sym_pointer_declarator_repeat1] = STATE(2024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(6937), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(6939), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(6941), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym_SEMI] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6819), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6831), + [sym_ms_signed_ptr_modifier] = ACTIONS(6831), + [anon_sym__unaligned] = ACTIONS(6833), + [anon_sym___unaligned] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), }, [STATE(2026)] = { - [sym_attribute_specifier] = STATE(2026), - [aux_sym_type_definition_repeat1] = STATE(2026), - [sym_identifier] = ACTIONS(6935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), - [anon_sym_COMMA] = ACTIONS(6937), - [anon_sym_RPAREN] = ACTIONS(6937), - [aux_sym_preproc_if_token2] = ACTIONS(6937), - [aux_sym_preproc_else_token1] = ACTIONS(6937), - [aux_sym_preproc_elif_token1] = ACTIONS(6935), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6937), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6937), - [anon_sym_LPAREN2] = ACTIONS(6937), - [anon_sym_DASH] = ACTIONS(6935), - [anon_sym_PLUS] = ACTIONS(6935), - [anon_sym_STAR] = ACTIONS(6935), - [anon_sym_SLASH] = ACTIONS(6935), - [anon_sym_PERCENT] = ACTIONS(6935), - [anon_sym_PIPE_PIPE] = ACTIONS(6937), - [anon_sym_AMP_AMP] = ACTIONS(6937), - [anon_sym_PIPE] = ACTIONS(6935), - [anon_sym_CARET] = ACTIONS(6935), - [anon_sym_AMP] = ACTIONS(6935), - [anon_sym_EQ_EQ] = ACTIONS(6937), - [anon_sym_BANG_EQ] = ACTIONS(6937), - [anon_sym_GT] = ACTIONS(6935), - [anon_sym_GT_EQ] = ACTIONS(6937), - [anon_sym_LT_EQ] = ACTIONS(6935), - [anon_sym_LT] = ACTIONS(6935), - [anon_sym_LT_LT] = ACTIONS(6935), - [anon_sym_GT_GT] = ACTIONS(6935), - [anon_sym_SEMI] = ACTIONS(6937), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym___attribute__] = ACTIONS(6939), - [anon_sym___attribute] = ACTIONS(6939), - [anon_sym_COLON] = ACTIONS(6935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6937), - [anon_sym_RBRACE] = ACTIONS(6937), - [anon_sym_LBRACK] = ACTIONS(6935), - [anon_sym_EQ] = ACTIONS(6935), - [anon_sym_const] = ACTIONS(6935), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6935), - [anon_sym__Alignas] = ACTIONS(6935), - [anon_sym_QMARK] = ACTIONS(6937), - [anon_sym_STAR_EQ] = ACTIONS(6937), - [anon_sym_SLASH_EQ] = ACTIONS(6937), - [anon_sym_PERCENT_EQ] = ACTIONS(6937), - [anon_sym_PLUS_EQ] = ACTIONS(6937), - [anon_sym_DASH_EQ] = ACTIONS(6937), - [anon_sym_LT_LT_EQ] = ACTIONS(6937), - [anon_sym_GT_GT_EQ] = ACTIONS(6937), - [anon_sym_AMP_EQ] = ACTIONS(6937), - [anon_sym_CARET_EQ] = ACTIONS(6937), - [anon_sym_PIPE_EQ] = ACTIONS(6937), - [anon_sym_and_eq] = ACTIONS(6935), - [anon_sym_or_eq] = ACTIONS(6935), - [anon_sym_xor_eq] = ACTIONS(6935), - [anon_sym_LT_EQ_GT] = ACTIONS(6937), - [anon_sym_or] = ACTIONS(6935), - [anon_sym_and] = ACTIONS(6935), - [anon_sym_bitor] = ACTIONS(6935), - [anon_sym_xor] = ACTIONS(6935), - [anon_sym_bitand] = ACTIONS(6935), - [anon_sym_not_eq] = ACTIONS(6935), - [anon_sym_DASH_DASH] = ACTIONS(6937), - [anon_sym_PLUS_PLUS] = ACTIONS(6937), - [anon_sym_asm] = ACTIONS(6935), - [anon_sym___asm__] = ACTIONS(6935), - [anon_sym___asm] = ACTIONS(6935), - [anon_sym_DOT] = ACTIONS(6935), - [anon_sym_DOT_STAR] = ACTIONS(6937), - [anon_sym_DASH_GT] = ACTIONS(6937), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6935), - [anon_sym_override] = ACTIONS(6935), - [anon_sym_noexcept] = ACTIONS(6935), - [anon_sym_throw] = ACTIONS(6935), - [anon_sym_requires] = ACTIONS(6935), - [anon_sym_COLON_RBRACK] = ACTIONS(6937), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(2021), + [sym__abstract_declarator] = STATE(4481), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2262), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1950), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2262), + [aux_sym_pointer_declarator_repeat1] = STATE(2021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6911), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6913), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6841), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6843), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6831), + [sym_ms_signed_ptr_modifier] = ACTIONS(6831), + [anon_sym__unaligned] = ACTIONS(6833), + [anon_sym___unaligned] = ACTIONS(6833), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6843), }, [STATE(2027)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(2025), - [sym__abstract_declarator] = STATE(4482), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2286), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1957), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2286), - [aux_sym_pointer_declarator_repeat1] = STATE(2025), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym_SEMI] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6859), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), - [sym_ms_signed_ptr_modifier] = ACTIONS(6851), - [anon_sym__unaligned] = ACTIONS(6853), - [anon_sym___unaligned] = ACTIONS(6853), - [anon_sym_RBRACE] = ACTIONS(6859), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6859), - [anon_sym_or_eq] = ACTIONS(6859), - [anon_sym_xor_eq] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6859), - }, - [STATE(2028)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(2028), - [aux_sym_pointer_declarator_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(6942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), - [anon_sym_COMMA] = ACTIONS(6944), - [anon_sym_RPAREN] = ACTIONS(6944), - [aux_sym_preproc_if_token2] = ACTIONS(6944), - [aux_sym_preproc_else_token1] = ACTIONS(6944), - [aux_sym_preproc_elif_token1] = ACTIONS(6942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6944), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6944), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DASH] = ACTIONS(6942), - [anon_sym_PLUS] = ACTIONS(6942), - [anon_sym_STAR] = ACTIONS(6942), - [anon_sym_SLASH] = ACTIONS(6942), - [anon_sym_PERCENT] = ACTIONS(6942), - [anon_sym_PIPE_PIPE] = ACTIONS(6944), - [anon_sym_AMP_AMP] = ACTIONS(6944), - [anon_sym_PIPE] = ACTIONS(6942), - [anon_sym_CARET] = ACTIONS(6942), - [anon_sym_AMP] = ACTIONS(6942), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6942), - [anon_sym_GT_EQ] = ACTIONS(6944), - [anon_sym_LT_EQ] = ACTIONS(6942), - [anon_sym_LT] = ACTIONS(6942), - [anon_sym_LT_LT] = ACTIONS(6942), - [anon_sym_GT_GT] = ACTIONS(6942), - [anon_sym_SEMI] = ACTIONS(6944), - [anon_sym___extension__] = ACTIONS(6942), - [anon_sym___attribute__] = ACTIONS(6942), - [anon_sym___attribute] = ACTIONS(6942), - [anon_sym_COLON] = ACTIONS(6942), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6944), - [sym_ms_restrict_modifier] = ACTIONS(6946), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6946), - [sym_ms_signed_ptr_modifier] = ACTIONS(6946), - [anon_sym__unaligned] = ACTIONS(6949), - [anon_sym___unaligned] = ACTIONS(6949), - [anon_sym_RBRACE] = ACTIONS(6944), - [anon_sym_LBRACK] = ACTIONS(6944), - [anon_sym_EQ] = ACTIONS(6942), - [anon_sym_const] = ACTIONS(6942), - [anon_sym_constexpr] = ACTIONS(6942), - [anon_sym_volatile] = ACTIONS(6942), - [anon_sym_restrict] = ACTIONS(6942), - [anon_sym___restrict__] = ACTIONS(6942), - [anon_sym__Atomic] = ACTIONS(6942), - [anon_sym__Noreturn] = ACTIONS(6942), - [anon_sym_noreturn] = ACTIONS(6942), - [anon_sym__Nonnull] = ACTIONS(6942), - [anon_sym_mutable] = ACTIONS(6942), - [anon_sym_constinit] = ACTIONS(6942), - [anon_sym_consteval] = ACTIONS(6942), - [anon_sym_alignas] = ACTIONS(6942), - [anon_sym__Alignas] = ACTIONS(6942), - [anon_sym_QMARK] = ACTIONS(6944), - [anon_sym_STAR_EQ] = ACTIONS(6944), - [anon_sym_SLASH_EQ] = ACTIONS(6944), - [anon_sym_PERCENT_EQ] = ACTIONS(6944), - [anon_sym_PLUS_EQ] = ACTIONS(6944), - [anon_sym_DASH_EQ] = ACTIONS(6944), - [anon_sym_LT_LT_EQ] = ACTIONS(6944), - [anon_sym_GT_GT_EQ] = ACTIONS(6944), - [anon_sym_AMP_EQ] = ACTIONS(6944), - [anon_sym_CARET_EQ] = ACTIONS(6944), - [anon_sym_PIPE_EQ] = ACTIONS(6944), - [anon_sym_and_eq] = ACTIONS(6942), - [anon_sym_or_eq] = ACTIONS(6942), - [anon_sym_xor_eq] = ACTIONS(6942), - [anon_sym_LT_EQ_GT] = ACTIONS(6944), - [anon_sym_or] = ACTIONS(6942), - [anon_sym_and] = ACTIONS(6942), - [anon_sym_bitor] = ACTIONS(6942), - [anon_sym_xor] = ACTIONS(6942), - [anon_sym_bitand] = ACTIONS(6942), - [anon_sym_not_eq] = ACTIONS(6942), - [anon_sym_DASH_DASH] = ACTIONS(6944), - [anon_sym_PLUS_PLUS] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6942), - [anon_sym_DOT_STAR] = ACTIONS(6944), - [anon_sym_DASH_GT] = ACTIONS(6944), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6942), - [anon_sym_override] = ACTIONS(6942), - [anon_sym_requires] = ACTIONS(6942), - [anon_sym_COLON_RBRACK] = ACTIONS(6944), - }, - [STATE(2029)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), [sym_ms_pointer_modifier] = STATE(2028), - [sym__abstract_declarator] = STATE(4524), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), + [sym__abstract_declarator] = STATE(4512), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), [sym_type_qualifier] = STATE(2250), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1946), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1954), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), [aux_sym__type_definition_type_repeat1] = STATE(2250), [aux_sym_pointer_declarator_repeat1] = STATE(2028), - [sym_identifier] = ACTIONS(6821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [aux_sym_preproc_if_token2] = ACTIONS(6823), - [aux_sym_preproc_else_token1] = ACTIONS(6823), - [aux_sym_preproc_elif_token1] = ACTIONS(6821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6917), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(6919), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6921), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(6833), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6835), - [sym_ms_signed_ptr_modifier] = ACTIONS(6835), - [anon_sym__unaligned] = ACTIONS(6837), - [anon_sym___unaligned] = ACTIONS(6837), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6821), - [anon_sym_or_eq] = ACTIONS(6821), - [anon_sym_xor_eq] = ACTIONS(6821), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6821), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6821), - [anon_sym_not_eq] = ACTIONS(6821), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), + [sym_identifier] = ACTIONS(6819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [aux_sym_preproc_if_token2] = ACTIONS(6815), + [aux_sym_preproc_else_token1] = ACTIONS(6815), + [aux_sym_preproc_elif_token1] = ACTIONS(6819), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6815), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(6943), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(6947), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(6851), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6829), + [sym_ms_signed_ptr_modifier] = ACTIONS(6829), + [anon_sym__unaligned] = ACTIONS(6853), + [anon_sym___unaligned] = ACTIONS(6853), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6819), + [anon_sym_or_eq] = ACTIONS(6819), + [anon_sym_xor_eq] = ACTIONS(6819), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6819), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6819), + [anon_sym_not_eq] = ACTIONS(6819), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), [sym_comment] = ACTIONS(3), }, - [STATE(2030)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(2028), - [sym__abstract_declarator] = STATE(4478), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2288), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2288), - [aux_sym_pointer_declarator_repeat1] = STATE(2028), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6923), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(6925), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6927), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(6823), - [anon_sym___attribute] = ACTIONS(6821), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), - [sym_ms_signed_ptr_modifier] = ACTIONS(6851), + [STATE(2028)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(2021), + [sym__abstract_declarator] = STATE(4514), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2252), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1954), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2252), + [aux_sym_pointer_declarator_repeat1] = STATE(2021), + [sym_identifier] = ACTIONS(6841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [aux_sym_preproc_if_token2] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6943), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6947), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6851), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6829), + [sym_ms_signed_ptr_modifier] = ACTIONS(6829), [anon_sym__unaligned] = ACTIONS(6853), [anon_sym___unaligned] = ACTIONS(6853), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - }, - [STATE(2031)] = { - [sym_identifier] = ACTIONS(6594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_RPAREN] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_TILDE] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6603), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6603), - [anon_sym_GT_GT] = ACTIONS(6603), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym_virtual] = ACTIONS(6594), - [anon_sym_extern] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), - [anon_sym___declspec] = ACTIONS(6594), - [anon_sym___based] = ACTIONS(6594), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6605), - [anon_sym_static] = ACTIONS(6594), - [anon_sym_EQ] = ACTIONS(6605), - [anon_sym_register] = ACTIONS(6594), - [anon_sym_inline] = ACTIONS(6594), - [anon_sym___inline] = ACTIONS(6594), - [anon_sym___inline__] = ACTIONS(6594), - [anon_sym___forceinline] = ACTIONS(6594), - [anon_sym_thread_local] = ACTIONS(6594), - [anon_sym___thread] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6603), - [anon_sym_or_eq] = ACTIONS(6603), - [anon_sym_xor_eq] = ACTIONS(6603), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6603), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6603), - [anon_sym_not_eq] = ACTIONS(6603), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6841), + [anon_sym_or_eq] = ACTIONS(6841), + [anon_sym_xor_eq] = ACTIONS(6841), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6841), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6841), + [anon_sym_not_eq] = ACTIONS(6841), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_template] = ACTIONS(6594), - [anon_sym_operator] = ACTIONS(6594), - [anon_sym_LBRACK_COLON] = ACTIONS(6601), }, - [STATE(2032)] = { - [sym_string_literal] = STATE(3858), - [sym_decltype_auto] = STATE(3535), - [sym_template_argument_list] = STATE(3563), - [sym_raw_string_literal] = STATE(3858), - [aux_sym_sized_type_specifier_repeat1] = STATE(2616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_RPAREN] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), + [STATE(2029)] = { + [sym_string_literal] = STATE(3622), + [sym_decltype_auto] = STATE(3215), + [sym_template_argument_list] = STATE(3032), + [sym_raw_string_literal] = STATE(3622), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6864), + [anon_sym_unsigned] = ACTIONS(6864), + [anon_sym_long] = ACTIONS(6864), + [anon_sym_short] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5619), + [anon_sym_L_DQUOTE] = ACTIONS(6901), + [anon_sym_u_DQUOTE] = ACTIONS(6901), + [anon_sym_U_DQUOTE] = ACTIONS(6901), + [anon_sym_u8_DQUOTE] = ACTIONS(6901), + [anon_sym_DQUOTE] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6866), + [anon_sym_decltype] = ACTIONS(6868), + [anon_sym_R_DQUOTE] = ACTIONS(6903), + [anon_sym_LR_DQUOTE] = ACTIONS(6903), + [anon_sym_uR_DQUOTE] = ACTIONS(6903), + [anon_sym_UR_DQUOTE] = ACTIONS(6903), + [anon_sym_u8R_DQUOTE] = ACTIONS(6903), + [anon_sym_DASH_GT_STAR] = ACTIONS(5611), + }, + [STATE(2030)] = { + [sym_string_literal] = STATE(3874), + [sym_decltype_auto] = STATE(3545), + [sym_template_argument_list] = STATE(3542), + [sym_raw_string_literal] = STATE(3874), + [aux_sym_sized_type_specifier_repeat1] = STATE(2604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), [anon_sym_LT] = ACTIONS(6952), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), [anon_sym_signed] = ACTIONS(6956), [anon_sym_unsigned] = ACTIONS(6956), [anon_sym_long] = ACTIONS(6956), [anon_sym_short] = ACTIONS(6956), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(5640), - [anon_sym_SLASH_EQ] = ACTIONS(5640), - [anon_sym_PERCENT_EQ] = ACTIONS(5640), - [anon_sym_PLUS_EQ] = ACTIONS(5640), - [anon_sym_DASH_EQ] = ACTIONS(5640), - [anon_sym_LT_LT_EQ] = ACTIONS(5640), - [anon_sym_GT_GT_EQ] = ACTIONS(5640), - [anon_sym_AMP_EQ] = ACTIONS(5640), - [anon_sym_CARET_EQ] = ACTIONS(5640), - [anon_sym_PIPE_EQ] = ACTIONS(5640), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5621), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_PERCENT_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_CARET_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), [anon_sym_and_eq] = ACTIONS(6958), [anon_sym_or_eq] = ACTIONS(6958), [anon_sym_xor_eq] = ACTIONS(6958), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5647), - [anon_sym_L_DQUOTE] = ACTIONS(5995), - [anon_sym_u_DQUOTE] = ACTIONS(5995), - [anon_sym_U_DQUOTE] = ACTIONS(5995), - [anon_sym_u8_DQUOTE] = ACTIONS(5995), - [anon_sym_DQUOTE] = ACTIONS(5995), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5621), + [anon_sym_L_DQUOTE] = ACTIONS(5959), + [anon_sym_u_DQUOTE] = ACTIONS(5959), + [anon_sym_U_DQUOTE] = ACTIONS(5959), + [anon_sym_u8_DQUOTE] = ACTIONS(5959), + [anon_sym_DQUOTE] = ACTIONS(5959), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(6960), [anon_sym_decltype] = ACTIONS(6962), - [anon_sym_R_DQUOTE] = ACTIONS(5997), - [anon_sym_LR_DQUOTE] = ACTIONS(5997), - [anon_sym_uR_DQUOTE] = ACTIONS(5997), - [anon_sym_UR_DQUOTE] = ACTIONS(5997), - [anon_sym_u8R_DQUOTE] = ACTIONS(5997), - [anon_sym_DASH_GT_STAR] = ACTIONS(5640), + [anon_sym_R_DQUOTE] = ACTIONS(5961), + [anon_sym_LR_DQUOTE] = ACTIONS(5961), + [anon_sym_uR_DQUOTE] = ACTIONS(5961), + [anon_sym_UR_DQUOTE] = ACTIONS(5961), + [anon_sym_u8R_DQUOTE] = ACTIONS(5961), + [anon_sym_DASH_GT_STAR] = ACTIONS(5624), }, - [STATE(2033)] = { - [sym_string_literal] = STATE(3632), - [sym_decltype_auto] = STATE(3203), - [sym_template_argument_list] = STATE(2999), - [sym_raw_string_literal] = STATE(3632), - [aux_sym_sized_type_specifier_repeat1] = STATE(3552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), + [STATE(2031)] = { + [sym_attribute_specifier] = STATE(2031), + [aux_sym_type_definition_repeat1] = STATE(2031), + [sym_identifier] = ACTIONS(6964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6966), + [anon_sym_COMMA] = ACTIONS(6966), + [anon_sym_RPAREN] = ACTIONS(6966), + [aux_sym_preproc_if_token2] = ACTIONS(6966), + [aux_sym_preproc_else_token1] = ACTIONS(6966), + [aux_sym_preproc_elif_token1] = ACTIONS(6964), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6966), + [anon_sym_LPAREN2] = ACTIONS(6966), + [anon_sym_DASH] = ACTIONS(6964), + [anon_sym_PLUS] = ACTIONS(6964), + [anon_sym_STAR] = ACTIONS(6964), + [anon_sym_SLASH] = ACTIONS(6964), + [anon_sym_PERCENT] = ACTIONS(6964), + [anon_sym_PIPE_PIPE] = ACTIONS(6966), + [anon_sym_AMP_AMP] = ACTIONS(6966), + [anon_sym_PIPE] = ACTIONS(6964), + [anon_sym_CARET] = ACTIONS(6964), + [anon_sym_AMP] = ACTIONS(6964), + [anon_sym_EQ_EQ] = ACTIONS(6966), + [anon_sym_BANG_EQ] = ACTIONS(6966), + [anon_sym_GT] = ACTIONS(6964), + [anon_sym_GT_EQ] = ACTIONS(6966), + [anon_sym_LT_EQ] = ACTIONS(6964), [anon_sym_LT] = ACTIONS(6964), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6867), - [anon_sym_unsigned] = ACTIONS(6867), - [anon_sym_long] = ACTIONS(6867), - [anon_sym_short] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5645), - [anon_sym_L_DQUOTE] = ACTIONS(6885), - [anon_sym_u_DQUOTE] = ACTIONS(6885), - [anon_sym_U_DQUOTE] = ACTIONS(6885), - [anon_sym_u8_DQUOTE] = ACTIONS(6885), - [anon_sym_DQUOTE] = ACTIONS(6885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6869), - [anon_sym_decltype] = ACTIONS(6871), - [anon_sym_R_DQUOTE] = ACTIONS(6887), - [anon_sym_LR_DQUOTE] = ACTIONS(6887), - [anon_sym_uR_DQUOTE] = ACTIONS(6887), - [anon_sym_UR_DQUOTE] = ACTIONS(6887), - [anon_sym_u8R_DQUOTE] = ACTIONS(6887), - [anon_sym_DASH_GT_STAR] = ACTIONS(5638), - }, - [STATE(2034)] = { - [sym_string_literal] = STATE(3632), - [sym_decltype_auto] = STATE(2952), - [sym_template_argument_list] = STATE(2985), - [sym_raw_string_literal] = STATE(3632), - [aux_sym_sized_type_specifier_repeat1] = STATE(2419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_RPAREN] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6967), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6971), - [anon_sym_unsigned] = ACTIONS(6971), - [anon_sym_long] = ACTIONS(6971), - [anon_sym_short] = ACTIONS(6971), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(5640), - [anon_sym_SLASH_EQ] = ACTIONS(5640), - [anon_sym_PERCENT_EQ] = ACTIONS(5640), - [anon_sym_PLUS_EQ] = ACTIONS(5640), - [anon_sym_DASH_EQ] = ACTIONS(5640), - [anon_sym_LT_LT_EQ] = ACTIONS(5640), - [anon_sym_GT_GT_EQ] = ACTIONS(5640), - [anon_sym_AMP_EQ] = ACTIONS(5640), - [anon_sym_CARET_EQ] = ACTIONS(5640), - [anon_sym_PIPE_EQ] = ACTIONS(5640), - [anon_sym_and_eq] = ACTIONS(5640), - [anon_sym_or_eq] = ACTIONS(5640), - [anon_sym_xor_eq] = ACTIONS(5640), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5647), - [anon_sym_L_DQUOTE] = ACTIONS(6885), - [anon_sym_u_DQUOTE] = ACTIONS(6885), - [anon_sym_U_DQUOTE] = ACTIONS(6885), - [anon_sym_u8_DQUOTE] = ACTIONS(6885), - [anon_sym_DQUOTE] = ACTIONS(6885), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6973), - [anon_sym_decltype] = ACTIONS(6975), - [anon_sym_R_DQUOTE] = ACTIONS(6887), - [anon_sym_LR_DQUOTE] = ACTIONS(6887), - [anon_sym_uR_DQUOTE] = ACTIONS(6887), - [anon_sym_UR_DQUOTE] = ACTIONS(6887), - [anon_sym_u8R_DQUOTE] = ACTIONS(6887), - [anon_sym_DASH_GT_STAR] = ACTIONS(5640), - }, - [STATE(2035)] = { - [sym_string_literal] = STATE(5659), - [sym_decltype_auto] = STATE(4458), - [sym_template_argument_list] = STATE(4662), - [sym_raw_string_literal] = STATE(5659), - [aux_sym_sized_type_specifier_repeat1] = STATE(4015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5647), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6977), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6981), - [anon_sym_unsigned] = ACTIONS(6981), - [anon_sym_long] = ACTIONS(6981), - [anon_sym_short] = ACTIONS(6981), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(6983), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(6985), - [anon_sym_SLASH_EQ] = ACTIONS(6985), - [anon_sym_PERCENT_EQ] = ACTIONS(6985), - [anon_sym_PLUS_EQ] = ACTIONS(6985), - [anon_sym_DASH_EQ] = ACTIONS(6985), - [anon_sym_LT_LT_EQ] = ACTIONS(6985), - [anon_sym_GT_GT_EQ] = ACTIONS(6983), - [anon_sym_AMP_EQ] = ACTIONS(6985), - [anon_sym_CARET_EQ] = ACTIONS(6985), - [anon_sym_PIPE_EQ] = ACTIONS(6985), - [anon_sym_and_eq] = ACTIONS(6985), - [anon_sym_or_eq] = ACTIONS(6985), - [anon_sym_xor_eq] = ACTIONS(6985), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(6987), - [anon_sym_u_DQUOTE] = ACTIONS(6987), - [anon_sym_U_DQUOTE] = ACTIONS(6987), - [anon_sym_u8_DQUOTE] = ACTIONS(6987), - [anon_sym_DQUOTE] = ACTIONS(6987), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6989), - [anon_sym_decltype] = ACTIONS(6991), - [anon_sym_GT2] = ACTIONS(5640), - [anon_sym_R_DQUOTE] = ACTIONS(6993), - [anon_sym_LR_DQUOTE] = ACTIONS(6993), - [anon_sym_uR_DQUOTE] = ACTIONS(6993), - [anon_sym_UR_DQUOTE] = ACTIONS(6993), - [anon_sym_u8R_DQUOTE] = ACTIONS(6993), + [anon_sym_LT_LT] = ACTIONS(6964), + [anon_sym_GT_GT] = ACTIONS(6964), + [anon_sym_SEMI] = ACTIONS(6966), + [anon_sym___extension__] = ACTIONS(6964), + [anon_sym___attribute__] = ACTIONS(6968), + [anon_sym___attribute] = ACTIONS(6968), + [anon_sym_COLON] = ACTIONS(6964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6966), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6966), + [anon_sym_RBRACE] = ACTIONS(6966), + [anon_sym_LBRACK] = ACTIONS(6964), + [anon_sym_EQ] = ACTIONS(6964), + [anon_sym_const] = ACTIONS(6964), + [anon_sym_constexpr] = ACTIONS(6964), + [anon_sym_volatile] = ACTIONS(6964), + [anon_sym_restrict] = ACTIONS(6964), + [anon_sym___restrict__] = ACTIONS(6964), + [anon_sym__Atomic] = ACTIONS(6964), + [anon_sym__Noreturn] = ACTIONS(6964), + [anon_sym_noreturn] = ACTIONS(6964), + [anon_sym__Nonnull] = ACTIONS(6964), + [anon_sym_mutable] = ACTIONS(6964), + [anon_sym_constinit] = ACTIONS(6964), + [anon_sym_consteval] = ACTIONS(6964), + [anon_sym_alignas] = ACTIONS(6964), + [anon_sym__Alignas] = ACTIONS(6964), + [anon_sym_QMARK] = ACTIONS(6966), + [anon_sym_STAR_EQ] = ACTIONS(6966), + [anon_sym_SLASH_EQ] = ACTIONS(6966), + [anon_sym_PERCENT_EQ] = ACTIONS(6966), + [anon_sym_PLUS_EQ] = ACTIONS(6966), + [anon_sym_DASH_EQ] = ACTIONS(6966), + [anon_sym_LT_LT_EQ] = ACTIONS(6966), + [anon_sym_GT_GT_EQ] = ACTIONS(6966), + [anon_sym_AMP_EQ] = ACTIONS(6966), + [anon_sym_CARET_EQ] = ACTIONS(6966), + [anon_sym_PIPE_EQ] = ACTIONS(6966), + [anon_sym_and_eq] = ACTIONS(6964), + [anon_sym_or_eq] = ACTIONS(6964), + [anon_sym_xor_eq] = ACTIONS(6964), + [anon_sym_LT_EQ_GT] = ACTIONS(6966), + [anon_sym_or] = ACTIONS(6964), + [anon_sym_and] = ACTIONS(6964), + [anon_sym_bitor] = ACTIONS(6964), + [anon_sym_xor] = ACTIONS(6964), + [anon_sym_bitand] = ACTIONS(6964), + [anon_sym_not_eq] = ACTIONS(6964), + [anon_sym_DASH_DASH] = ACTIONS(6966), + [anon_sym_PLUS_PLUS] = ACTIONS(6966), + [anon_sym_asm] = ACTIONS(6964), + [anon_sym___asm__] = ACTIONS(6964), + [anon_sym___asm] = ACTIONS(6964), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_DOT_STAR] = ACTIONS(6966), + [anon_sym_DASH_GT] = ACTIONS(6966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6964), + [anon_sym_override] = ACTIONS(6964), + [anon_sym_noexcept] = ACTIONS(6964), + [anon_sym_throw] = ACTIONS(6964), + [anon_sym_requires] = ACTIONS(6964), + [anon_sym_COLON_RBRACK] = ACTIONS(6966), }, - [STATE(2036)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(3203), - [sym_template_argument_list] = STATE(3449), - [sym_raw_string_literal] = STATE(4105), + [STATE(2032)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(3215), + [sym_template_argument_list] = STATE(3432), + [sym_raw_string_literal] = STATE(4050), [aux_sym_sized_type_specifier_repeat1] = STATE(3552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6863), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5640), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6867), - [anon_sym_unsigned] = ACTIONS(6867), - [anon_sym_long] = ACTIONS(6867), - [anon_sym_short] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(6995), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(6997), - [anon_sym_SLASH_EQ] = ACTIONS(6997), - [anon_sym_PERCENT_EQ] = ACTIONS(6997), - [anon_sym_PLUS_EQ] = ACTIONS(6997), - [anon_sym_DASH_EQ] = ACTIONS(6997), - [anon_sym_LT_LT_EQ] = ACTIONS(6997), - [anon_sym_GT_GT_EQ] = ACTIONS(6997), - [anon_sym_AMP_EQ] = ACTIONS(6997), - [anon_sym_CARET_EQ] = ACTIONS(6997), - [anon_sym_PIPE_EQ] = ACTIONS(6997), - [anon_sym_and_eq] = ACTIONS(6997), - [anon_sym_or_eq] = ACTIONS(6997), - [anon_sym_xor_eq] = ACTIONS(6997), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6869), - [anon_sym_decltype] = ACTIONS(6871), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(6860), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON] = ACTIONS(5621), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6864), + [anon_sym_unsigned] = ACTIONS(6864), + [anon_sym_long] = ACTIONS(6864), + [anon_sym_short] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(6971), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(6973), + [anon_sym_SLASH_EQ] = ACTIONS(6973), + [anon_sym_PERCENT_EQ] = ACTIONS(6973), + [anon_sym_PLUS_EQ] = ACTIONS(6973), + [anon_sym_DASH_EQ] = ACTIONS(6973), + [anon_sym_LT_LT_EQ] = ACTIONS(6973), + [anon_sym_GT_GT_EQ] = ACTIONS(6973), + [anon_sym_AMP_EQ] = ACTIONS(6973), + [anon_sym_CARET_EQ] = ACTIONS(6973), + [anon_sym_PIPE_EQ] = ACTIONS(6973), + [anon_sym_and_eq] = ACTIONS(6973), + [anon_sym_or_eq] = ACTIONS(6973), + [anon_sym_xor_eq] = ACTIONS(6973), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6866), + [anon_sym_decltype] = ACTIONS(6868), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), }, - [STATE(2037)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(7001), - [anon_sym_RPAREN] = ACTIONS(7001), - [aux_sym_preproc_if_token2] = ACTIONS(7001), - [aux_sym_preproc_else_token1] = ACTIONS(7001), - [aux_sym_preproc_elif_token1] = ACTIONS(6999), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7001), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7001), - [anon_sym_LPAREN2] = ACTIONS(7001), - [anon_sym_DASH] = ACTIONS(6999), - [anon_sym_PLUS] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(6999), - [anon_sym_SLASH] = ACTIONS(6999), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(7001), - [anon_sym_PIPE] = ACTIONS(6999), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(6999), - [anon_sym_EQ_EQ] = ACTIONS(7001), - [anon_sym_BANG_EQ] = ACTIONS(7001), - [anon_sym_GT] = ACTIONS(6999), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(6999), - [anon_sym_LT] = ACTIONS(6999), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym_SEMI] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(6999), - [anon_sym_COLON] = ACTIONS(6999), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7001), - [anon_sym_LBRACE] = ACTIONS(7001), - [anon_sym_RBRACE] = ACTIONS(7001), - [anon_sym_signed] = ACTIONS(7003), - [anon_sym_unsigned] = ACTIONS(7003), - [anon_sym_long] = ACTIONS(7003), - [anon_sym_short] = ACTIONS(7003), - [anon_sym_LBRACK] = ACTIONS(7001), + [STATE(2033)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2625), + [sym_ms_pointer_modifier] = STATE(2399), + [sym__abstract_declarator] = STATE(4575), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2317), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1968), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2317), + [aux_sym_pointer_declarator_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6983), + [sym_ms_restrict_modifier] = ACTIONS(6985), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6987), + [sym_ms_signed_ptr_modifier] = ACTIONS(6987), + [anon_sym__unaligned] = ACTIONS(6989), + [anon_sym___unaligned] = ACTIONS(6989), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6841), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + [anon_sym_DASH_GT_STAR] = ACTIONS(6843), + }, + [STATE(2034)] = { + [sym_string_literal] = STATE(5629), + [sym_decltype_auto] = STATE(4087), + [sym_template_argument_list] = STATE(4660), + [sym_raw_string_literal] = STATE(5629), + [aux_sym_sized_type_specifier_repeat1] = STATE(3274), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(6760), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6997), + [anon_sym_unsigned] = ACTIONS(6997), + [anon_sym_long] = ACTIONS(6997), + [anon_sym_short] = ACTIONS(6997), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_RBRACK] = ACTIONS(5624), [anon_sym_EQ] = ACTIONS(6999), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7001), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), [anon_sym_STAR_EQ] = ACTIONS(7001), [anon_sym_SLASH_EQ] = ACTIONS(7001), [anon_sym_PERCENT_EQ] = ACTIONS(7001), @@ -317142,2059 +316764,1882 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7001), [anon_sym_CARET_EQ] = ACTIONS(7001), [anon_sym_PIPE_EQ] = ACTIONS(7001), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(7001), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(7001), - [anon_sym_PLUS_PLUS] = ACTIONS(7001), - [anon_sym_DOT] = ACTIONS(6999), - [anon_sym_DOT_STAR] = ACTIONS(7001), - [anon_sym_DASH_GT] = ACTIONS(7001), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - [anon_sym_COLON_RBRACK] = ACTIONS(7001), + [anon_sym_and_eq] = ACTIONS(7001), + [anon_sym_or_eq] = ACTIONS(7001), + [anon_sym_xor_eq] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(7003), + [anon_sym_u_DQUOTE] = ACTIONS(7003), + [anon_sym_U_DQUOTE] = ACTIONS(7003), + [anon_sym_u8_DQUOTE] = ACTIONS(7003), + [anon_sym_DQUOTE] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7005), + [anon_sym_decltype] = ACTIONS(7007), + [anon_sym_R_DQUOTE] = ACTIONS(7009), + [anon_sym_LR_DQUOTE] = ACTIONS(7009), + [anon_sym_uR_DQUOTE] = ACTIONS(7009), + [anon_sym_UR_DQUOTE] = ACTIONS(7009), + [anon_sym_u8R_DQUOTE] = ACTIONS(7009), }, - [STATE(2038)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2618), - [sym_ms_pointer_modifier] = STATE(2041), - [sym__abstract_declarator] = STATE(4615), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2297), + [STATE(2035)] = { + [sym_string_literal] = STATE(3737), + [sym_decltype_auto] = STATE(3227), + [sym_template_argument_list] = STATE(3121), + [sym_raw_string_literal] = STATE(3737), + [aux_sym_sized_type_specifier_repeat1] = STATE(2494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5621), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(7011), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(7015), + [anon_sym_unsigned] = ACTIONS(7015), + [anon_sym_long] = ACTIONS(7015), + [anon_sym_short] = ACTIONS(7015), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5621), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_PERCENT_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5621), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_CARET_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), + [anon_sym_and_eq] = ACTIONS(5624), + [anon_sym_or_eq] = ACTIONS(5624), + [anon_sym_xor_eq] = ACTIONS(5624), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(7017), + [anon_sym_u_DQUOTE] = ACTIONS(7017), + [anon_sym_U_DQUOTE] = ACTIONS(7017), + [anon_sym_u8_DQUOTE] = ACTIONS(7017), + [anon_sym_DQUOTE] = ACTIONS(7017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7019), + [anon_sym_decltype] = ACTIONS(7021), + [anon_sym_GT2] = ACTIONS(5624), + [anon_sym_R_DQUOTE] = ACTIONS(7023), + [anon_sym_LR_DQUOTE] = ACTIONS(7023), + [anon_sym_uR_DQUOTE] = ACTIONS(7023), + [anon_sym_UR_DQUOTE] = ACTIONS(7023), + [anon_sym_u8R_DQUOTE] = ACTIONS(7023), + }, + [STATE(2036)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(3215), + [sym_template_argument_list] = STATE(3432), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(6860), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5624), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6864), + [anon_sym_unsigned] = ACTIONS(6864), + [anon_sym_long] = ACTIONS(6864), + [anon_sym_short] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(7027), + [anon_sym_SLASH_EQ] = ACTIONS(7027), + [anon_sym_PERCENT_EQ] = ACTIONS(7027), + [anon_sym_PLUS_EQ] = ACTIONS(7027), + [anon_sym_DASH_EQ] = ACTIONS(7027), + [anon_sym_LT_LT_EQ] = ACTIONS(7027), + [anon_sym_GT_GT_EQ] = ACTIONS(7027), + [anon_sym_AMP_EQ] = ACTIONS(7027), + [anon_sym_CARET_EQ] = ACTIONS(7027), + [anon_sym_PIPE_EQ] = ACTIONS(7027), + [anon_sym_and_eq] = ACTIONS(7027), + [anon_sym_or_eq] = ACTIONS(7027), + [anon_sym_xor_eq] = ACTIONS(7027), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6866), + [anon_sym_decltype] = ACTIONS(6868), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + }, + [STATE(2037)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2625), + [sym_ms_pointer_modifier] = STATE(2033), + [sym__abstract_declarator] = STATE(4571), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2315), [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1972), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2297), - [aux_sym_pointer_declarator_repeat1] = STATE(2041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(7008), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(7012), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(7014), - [sym_ms_restrict_modifier] = ACTIONS(7016), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7018), - [sym_ms_signed_ptr_modifier] = ACTIONS(7018), - [anon_sym__unaligned] = ACTIONS(7020), - [anon_sym___unaligned] = ACTIONS(7020), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6859), - [anon_sym_or_eq] = ACTIONS(6859), - [anon_sym_xor_eq] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6861), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), - [anon_sym_DASH_GT_STAR] = ACTIONS(6859), + [sym_parameter_list] = STATE(1968), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2315), + [aux_sym_pointer_declarator_repeat1] = STATE(2033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(6983), + [sym_ms_restrict_modifier] = ACTIONS(6985), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6987), + [sym_ms_signed_ptr_modifier] = ACTIONS(6987), + [anon_sym__unaligned] = ACTIONS(6989), + [anon_sym___unaligned] = ACTIONS(6989), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6815), }, - [STATE(2039)] = { - [sym_string_literal] = STATE(3760), - [sym_decltype_auto] = STATE(3090), - [sym_template_argument_list] = STATE(3193), - [sym_raw_string_literal] = STATE(3760), - [aux_sym_sized_type_specifier_repeat1] = STATE(2476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5647), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(7028), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), + [STATE(2038)] = { + [sym_string_literal] = STATE(5628), + [sym_decltype_auto] = STATE(4544), + [sym_template_argument_list] = STATE(4746), + [sym_raw_string_literal] = STATE(5628), + [aux_sym_sized_type_specifier_repeat1] = STATE(3952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5619), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), [anon_sym_signed] = ACTIONS(7032), [anon_sym_unsigned] = ACTIONS(7032), [anon_sym_long] = ACTIONS(7032), [anon_sym_short] = ACTIONS(7032), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(5640), - [anon_sym_SLASH_EQ] = ACTIONS(5640), - [anon_sym_PERCENT_EQ] = ACTIONS(5640), - [anon_sym_PLUS_EQ] = ACTIONS(5640), - [anon_sym_DASH_EQ] = ACTIONS(5640), - [anon_sym_LT_LT_EQ] = ACTIONS(5640), - [anon_sym_GT_GT_EQ] = ACTIONS(5647), - [anon_sym_AMP_EQ] = ACTIONS(5640), - [anon_sym_CARET_EQ] = ACTIONS(5640), - [anon_sym_PIPE_EQ] = ACTIONS(5640), - [anon_sym_and_eq] = ACTIONS(5640), - [anon_sym_or_eq] = ACTIONS(5640), - [anon_sym_xor_eq] = ACTIONS(5640), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(7034), - [anon_sym_u_DQUOTE] = ACTIONS(7034), - [anon_sym_U_DQUOTE] = ACTIONS(7034), - [anon_sym_u8_DQUOTE] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7036), - [anon_sym_decltype] = ACTIONS(7038), - [anon_sym_GT2] = ACTIONS(5640), - [anon_sym_R_DQUOTE] = ACTIONS(7040), - [anon_sym_LR_DQUOTE] = ACTIONS(7040), - [anon_sym_uR_DQUOTE] = ACTIONS(7040), - [anon_sym_UR_DQUOTE] = ACTIONS(7040), - [anon_sym_u8R_DQUOTE] = ACTIONS(7040), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(7034), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(7036), + [anon_sym_SLASH_EQ] = ACTIONS(7036), + [anon_sym_PERCENT_EQ] = ACTIONS(7036), + [anon_sym_PLUS_EQ] = ACTIONS(7036), + [anon_sym_DASH_EQ] = ACTIONS(7036), + [anon_sym_LT_LT_EQ] = ACTIONS(7036), + [anon_sym_GT_GT_EQ] = ACTIONS(7034), + [anon_sym_AMP_EQ] = ACTIONS(7036), + [anon_sym_CARET_EQ] = ACTIONS(7036), + [anon_sym_PIPE_EQ] = ACTIONS(7036), + [anon_sym_and_eq] = ACTIONS(7036), + [anon_sym_or_eq] = ACTIONS(7036), + [anon_sym_xor_eq] = ACTIONS(7036), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(7038), + [anon_sym_u_DQUOTE] = ACTIONS(7038), + [anon_sym_U_DQUOTE] = ACTIONS(7038), + [anon_sym_u8_DQUOTE] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7040), + [anon_sym_decltype] = ACTIONS(7042), + [anon_sym_GT2] = ACTIONS(5624), + [anon_sym_R_DQUOTE] = ACTIONS(7044), + [anon_sym_LR_DQUOTE] = ACTIONS(7044), + [anon_sym_uR_DQUOTE] = ACTIONS(7044), + [anon_sym_UR_DQUOTE] = ACTIONS(7044), + [anon_sym_u8R_DQUOTE] = ACTIONS(7044), + }, + [STATE(2039)] = { + [sym_string_literal] = STATE(3756), + [sym_decltype_auto] = STATE(3142), + [sym_template_argument_list] = STATE(3087), + [sym_raw_string_literal] = STATE(3756), + [aux_sym_sized_type_specifier_repeat1] = STATE(2198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5624), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(7046), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(7050), + [anon_sym_unsigned] = ACTIONS(7050), + [anon_sym_long] = ACTIONS(7050), + [anon_sym_short] = ACTIONS(7050), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_RBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5621), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(5624), + [anon_sym_SLASH_EQ] = ACTIONS(5624), + [anon_sym_PERCENT_EQ] = ACTIONS(5624), + [anon_sym_PLUS_EQ] = ACTIONS(5624), + [anon_sym_DASH_EQ] = ACTIONS(5624), + [anon_sym_LT_LT_EQ] = ACTIONS(5624), + [anon_sym_GT_GT_EQ] = ACTIONS(5624), + [anon_sym_AMP_EQ] = ACTIONS(5624), + [anon_sym_CARET_EQ] = ACTIONS(5624), + [anon_sym_PIPE_EQ] = ACTIONS(5624), + [anon_sym_and_eq] = ACTIONS(5624), + [anon_sym_or_eq] = ACTIONS(5624), + [anon_sym_xor_eq] = ACTIONS(5624), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(7052), + [anon_sym_u_DQUOTE] = ACTIONS(7052), + [anon_sym_U_DQUOTE] = ACTIONS(7052), + [anon_sym_u8_DQUOTE] = ACTIONS(7052), + [anon_sym_DQUOTE] = ACTIONS(7052), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7054), + [anon_sym_decltype] = ACTIONS(7056), + [anon_sym_R_DQUOTE] = ACTIONS(7058), + [anon_sym_LR_DQUOTE] = ACTIONS(7058), + [anon_sym_uR_DQUOTE] = ACTIONS(7058), + [anon_sym_UR_DQUOTE] = ACTIONS(7058), + [anon_sym_u8R_DQUOTE] = ACTIONS(7058), }, [STATE(2040)] = { - [sym_string_literal] = STATE(5580), - [sym_decltype_auto] = STATE(4116), - [sym_template_argument_list] = STATE(4691), - [sym_raw_string_literal] = STATE(5580), - [aux_sym_sized_type_specifier_repeat1] = STATE(3285), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6801), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(7042), - [anon_sym_unsigned] = ACTIONS(7042), - [anon_sym_long] = ACTIONS(7042), - [anon_sym_short] = ACTIONS(7042), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_RBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(7044), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(7046), - [anon_sym_SLASH_EQ] = ACTIONS(7046), - [anon_sym_PERCENT_EQ] = ACTIONS(7046), - [anon_sym_PLUS_EQ] = ACTIONS(7046), - [anon_sym_DASH_EQ] = ACTIONS(7046), - [anon_sym_LT_LT_EQ] = ACTIONS(7046), - [anon_sym_GT_GT_EQ] = ACTIONS(7046), - [anon_sym_AMP_EQ] = ACTIONS(7046), - [anon_sym_CARET_EQ] = ACTIONS(7046), - [anon_sym_PIPE_EQ] = ACTIONS(7046), - [anon_sym_and_eq] = ACTIONS(7046), - [anon_sym_or_eq] = ACTIONS(7046), - [anon_sym_xor_eq] = ACTIONS(7046), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(7048), - [anon_sym_u_DQUOTE] = ACTIONS(7048), - [anon_sym_U_DQUOTE] = ACTIONS(7048), - [anon_sym_u8_DQUOTE] = ACTIONS(7048), - [anon_sym_DQUOTE] = ACTIONS(7048), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7050), - [anon_sym_decltype] = ACTIONS(7052), - [anon_sym_R_DQUOTE] = ACTIONS(7054), - [anon_sym_LR_DQUOTE] = ACTIONS(7054), - [anon_sym_uR_DQUOTE] = ACTIONS(7054), - [anon_sym_UR_DQUOTE] = ACTIONS(7054), - [anon_sym_u8R_DQUOTE] = ACTIONS(7054), + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7062), + [anon_sym_COMMA] = ACTIONS(7062), + [anon_sym_RPAREN] = ACTIONS(7062), + [aux_sym_preproc_if_token2] = ACTIONS(7062), + [aux_sym_preproc_else_token1] = ACTIONS(7062), + [aux_sym_preproc_elif_token1] = ACTIONS(7060), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7062), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(7062), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7060), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7060), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7062), + [anon_sym_LT_EQ] = ACTIONS(7060), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7060), + [anon_sym_GT_GT] = ACTIONS(7060), + [anon_sym_SEMI] = ACTIONS(7062), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym_COLON] = ACTIONS(7060), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(7062), + [anon_sym_RBRACE] = ACTIONS(7062), + [anon_sym_signed] = ACTIONS(7064), + [anon_sym_unsigned] = ACTIONS(7064), + [anon_sym_long] = ACTIONS(7064), + [anon_sym_short] = ACTIONS(7064), + [anon_sym_LBRACK] = ACTIONS(7062), + [anon_sym_EQ] = ACTIONS(7060), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_STAR_EQ] = ACTIONS(7062), + [anon_sym_SLASH_EQ] = ACTIONS(7062), + [anon_sym_PERCENT_EQ] = ACTIONS(7062), + [anon_sym_PLUS_EQ] = ACTIONS(7062), + [anon_sym_DASH_EQ] = ACTIONS(7062), + [anon_sym_LT_LT_EQ] = ACTIONS(7062), + [anon_sym_GT_GT_EQ] = ACTIONS(7062), + [anon_sym_AMP_EQ] = ACTIONS(7062), + [anon_sym_CARET_EQ] = ACTIONS(7062), + [anon_sym_PIPE_EQ] = ACTIONS(7062), + [anon_sym_and_eq] = ACTIONS(7060), + [anon_sym_or_eq] = ACTIONS(7060), + [anon_sym_xor_eq] = ACTIONS(7060), + [anon_sym_LT_EQ_GT] = ACTIONS(7062), + [anon_sym_or] = ACTIONS(7060), + [anon_sym_and] = ACTIONS(7060), + [anon_sym_bitor] = ACTIONS(7060), + [anon_sym_xor] = ACTIONS(7060), + [anon_sym_bitand] = ACTIONS(7060), + [anon_sym_not_eq] = ACTIONS(7060), + [anon_sym_DASH_DASH] = ACTIONS(7062), + [anon_sym_PLUS_PLUS] = ACTIONS(7062), + [anon_sym_DOT] = ACTIONS(7060), + [anon_sym_DOT_STAR] = ACTIONS(7062), + [anon_sym_DASH_GT] = ACTIONS(7062), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7060), + [anon_sym_override] = ACTIONS(7060), + [anon_sym_requires] = ACTIONS(7060), + [anon_sym_COLON_RBRACK] = ACTIONS(7062), }, [STATE(2041)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2618), - [sym_ms_pointer_modifier] = STATE(2429), - [sym__abstract_declarator] = STATE(4552), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2299), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1972), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2299), - [aux_sym_pointer_declarator_repeat1] = STATE(2429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7008), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7012), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7014), - [sym_ms_restrict_modifier] = ACTIONS(7016), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7018), - [sym_ms_signed_ptr_modifier] = ACTIONS(7018), - [anon_sym__unaligned] = ACTIONS(7020), - [anon_sym___unaligned] = ACTIONS(7020), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6821), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - [anon_sym_DASH_GT_STAR] = ACTIONS(6823), + [sym_string_literal] = STATE(5628), + [sym_decltype_auto] = STATE(4544), + [sym_template_argument_list] = STATE(4755), + [sym_raw_string_literal] = STATE(5628), + [aux_sym_sized_type_specifier_repeat1] = STATE(3952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5624), + [anon_sym_COMMA] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5621), + [anon_sym_PLUS] = ACTIONS(5621), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5621), + [anon_sym_PERCENT] = ACTIONS(5621), + [anon_sym_PIPE_PIPE] = ACTIONS(5624), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5621), + [anon_sym_CARET] = ACTIONS(5621), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5624), + [anon_sym_BANG_EQ] = ACTIONS(5624), + [anon_sym_GT] = ACTIONS(5621), + [anon_sym_GT_EQ] = ACTIONS(5621), + [anon_sym_LT_EQ] = ACTIONS(5621), + [anon_sym_LT] = ACTIONS(7067), + [anon_sym_LT_LT] = ACTIONS(5621), + [anon_sym_GT_GT] = ACTIONS(5621), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(7032), + [anon_sym_unsigned] = ACTIONS(7032), + [anon_sym_long] = ACTIONS(7032), + [anon_sym_short] = ACTIONS(7032), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(7034), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5624), + [anon_sym_STAR_EQ] = ACTIONS(7036), + [anon_sym_SLASH_EQ] = ACTIONS(7036), + [anon_sym_PERCENT_EQ] = ACTIONS(7036), + [anon_sym_PLUS_EQ] = ACTIONS(7036), + [anon_sym_DASH_EQ] = ACTIONS(7036), + [anon_sym_LT_LT_EQ] = ACTIONS(7036), + [anon_sym_GT_GT_EQ] = ACTIONS(7034), + [anon_sym_AMP_EQ] = ACTIONS(7036), + [anon_sym_CARET_EQ] = ACTIONS(7036), + [anon_sym_PIPE_EQ] = ACTIONS(7036), + [anon_sym_and_eq] = ACTIONS(7036), + [anon_sym_or_eq] = ACTIONS(7036), + [anon_sym_xor_eq] = ACTIONS(7036), + [anon_sym_LT_EQ_GT] = ACTIONS(5624), + [anon_sym_or] = ACTIONS(5621), + [anon_sym_and] = ACTIONS(5621), + [anon_sym_bitor] = ACTIONS(5624), + [anon_sym_xor] = ACTIONS(5621), + [anon_sym_bitand] = ACTIONS(5624), + [anon_sym_not_eq] = ACTIONS(5624), + [anon_sym_DASH_DASH] = ACTIONS(5624), + [anon_sym_PLUS_PLUS] = ACTIONS(5624), + [anon_sym_DOT] = ACTIONS(5621), + [anon_sym_DOT_STAR] = ACTIONS(5624), + [anon_sym_DASH_GT] = ACTIONS(5624), + [anon_sym_L_DQUOTE] = ACTIONS(7038), + [anon_sym_u_DQUOTE] = ACTIONS(7038), + [anon_sym_U_DQUOTE] = ACTIONS(7038), + [anon_sym_u8_DQUOTE] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7040), + [anon_sym_decltype] = ACTIONS(7042), + [anon_sym_GT2] = ACTIONS(5624), + [anon_sym_R_DQUOTE] = ACTIONS(7044), + [anon_sym_LR_DQUOTE] = ACTIONS(7044), + [anon_sym_uR_DQUOTE] = ACTIONS(7044), + [anon_sym_UR_DQUOTE] = ACTIONS(7044), + [anon_sym_u8R_DQUOTE] = ACTIONS(7044), }, [STATE(2042)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(3203), - [sym_template_argument_list] = STATE(3449), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(3552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(6863), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON] = ACTIONS(5647), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6867), - [anon_sym_unsigned] = ACTIONS(6867), - [anon_sym_long] = ACTIONS(6867), - [anon_sym_short] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(7056), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(7058), - [anon_sym_SLASH_EQ] = ACTIONS(7058), - [anon_sym_PERCENT_EQ] = ACTIONS(7058), - [anon_sym_PLUS_EQ] = ACTIONS(7058), - [anon_sym_DASH_EQ] = ACTIONS(7058), - [anon_sym_LT_LT_EQ] = ACTIONS(7058), - [anon_sym_GT_GT_EQ] = ACTIONS(7058), - [anon_sym_AMP_EQ] = ACTIONS(7058), - [anon_sym_CARET_EQ] = ACTIONS(7058), - [anon_sym_PIPE_EQ] = ACTIONS(7058), - [anon_sym_and_eq] = ACTIONS(7058), - [anon_sym_or_eq] = ACTIONS(7058), - [anon_sym_xor_eq] = ACTIONS(7058), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6869), - [anon_sym_decltype] = ACTIONS(6871), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [sym_ms_unaligned_ptr_modifier] = STATE(2692), + [sym_ms_pointer_modifier] = STATE(2477), + [sym__abstract_declarator] = STATE(4743), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2359), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2359), + [aux_sym_pointer_declarator_repeat1] = STATE(2477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7075), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6841), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7079), + [sym_ms_restrict_modifier] = ACTIONS(7081), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7083), + [sym_ms_signed_ptr_modifier] = ACTIONS(7083), + [anon_sym__unaligned] = ACTIONS(7085), + [anon_sym___unaligned] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6841), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_GT2] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), }, [STATE(2043)] = { - [sym_string_literal] = STATE(5659), - [sym_decltype_auto] = STATE(4458), - [sym_template_argument_list] = STATE(4725), - [sym_raw_string_literal] = STATE(5659), - [aux_sym_sized_type_specifier_repeat1] = STATE(4015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5645), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7060), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6981), - [anon_sym_unsigned] = ACTIONS(6981), - [anon_sym_long] = ACTIONS(6981), - [anon_sym_short] = ACTIONS(6981), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(6983), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(6985), - [anon_sym_SLASH_EQ] = ACTIONS(6985), - [anon_sym_PERCENT_EQ] = ACTIONS(6985), - [anon_sym_PLUS_EQ] = ACTIONS(6985), - [anon_sym_DASH_EQ] = ACTIONS(6985), - [anon_sym_LT_LT_EQ] = ACTIONS(6985), - [anon_sym_GT_GT_EQ] = ACTIONS(6983), - [anon_sym_AMP_EQ] = ACTIONS(6985), - [anon_sym_CARET_EQ] = ACTIONS(6985), - [anon_sym_PIPE_EQ] = ACTIONS(6985), - [anon_sym_and_eq] = ACTIONS(6985), - [anon_sym_or_eq] = ACTIONS(6985), - [anon_sym_xor_eq] = ACTIONS(6985), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(6987), - [anon_sym_u_DQUOTE] = ACTIONS(6987), - [anon_sym_U_DQUOTE] = ACTIONS(6987), - [anon_sym_u8_DQUOTE] = ACTIONS(6987), - [anon_sym_DQUOTE] = ACTIONS(6987), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6989), - [anon_sym_decltype] = ACTIONS(6991), - [anon_sym_GT2] = ACTIONS(5640), - [anon_sym_R_DQUOTE] = ACTIONS(6993), - [anon_sym_LR_DQUOTE] = ACTIONS(6993), - [anon_sym_uR_DQUOTE] = ACTIONS(6993), - [anon_sym_UR_DQUOTE] = ACTIONS(6993), - [anon_sym_u8R_DQUOTE] = ACTIONS(6993), + [sym_ms_unaligned_ptr_modifier] = STATE(2689), + [sym_ms_pointer_modifier] = STATE(2050), + [sym__abstract_declarator] = STATE(4749), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2326), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2326), + [aux_sym_pointer_declarator_repeat1] = STATE(2050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(7101), + [sym_ms_restrict_modifier] = ACTIONS(7103), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7105), + [sym_ms_signed_ptr_modifier] = ACTIONS(7105), + [anon_sym__unaligned] = ACTIONS(7107), + [anon_sym___unaligned] = ACTIONS(7107), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), }, [STATE(2044)] = { - [sym_string_literal] = STATE(3730), - [sym_decltype_auto] = STATE(3244), - [sym_template_argument_list] = STATE(3131), - [sym_raw_string_literal] = STATE(3730), - [aux_sym_sized_type_specifier_repeat1] = STATE(2209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5640), - [anon_sym_COMMA] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5647), - [anon_sym_PLUS] = ACTIONS(5647), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5647), - [anon_sym_PERCENT] = ACTIONS(5647), - [anon_sym_PIPE_PIPE] = ACTIONS(5640), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5647), - [anon_sym_CARET] = ACTIONS(5647), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5640), - [anon_sym_BANG_EQ] = ACTIONS(5640), - [anon_sym_GT] = ACTIONS(5647), - [anon_sym_GT_EQ] = ACTIONS(5640), - [anon_sym_LT_EQ] = ACTIONS(5647), - [anon_sym_LT] = ACTIONS(7063), - [anon_sym_LT_LT] = ACTIONS(5647), - [anon_sym_GT_GT] = ACTIONS(5647), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(7067), - [anon_sym_unsigned] = ACTIONS(7067), - [anon_sym_long] = ACTIONS(7067), - [anon_sym_short] = ACTIONS(7067), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_RBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5647), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5640), - [anon_sym_STAR_EQ] = ACTIONS(5640), - [anon_sym_SLASH_EQ] = ACTIONS(5640), - [anon_sym_PERCENT_EQ] = ACTIONS(5640), - [anon_sym_PLUS_EQ] = ACTIONS(5640), - [anon_sym_DASH_EQ] = ACTIONS(5640), - [anon_sym_LT_LT_EQ] = ACTIONS(5640), - [anon_sym_GT_GT_EQ] = ACTIONS(5640), - [anon_sym_AMP_EQ] = ACTIONS(5640), - [anon_sym_CARET_EQ] = ACTIONS(5640), - [anon_sym_PIPE_EQ] = ACTIONS(5640), - [anon_sym_and_eq] = ACTIONS(5640), - [anon_sym_or_eq] = ACTIONS(5640), - [anon_sym_xor_eq] = ACTIONS(5640), - [anon_sym_LT_EQ_GT] = ACTIONS(5640), - [anon_sym_or] = ACTIONS(5647), - [anon_sym_and] = ACTIONS(5647), - [anon_sym_bitor] = ACTIONS(5640), - [anon_sym_xor] = ACTIONS(5647), - [anon_sym_bitand] = ACTIONS(5640), - [anon_sym_not_eq] = ACTIONS(5640), - [anon_sym_DASH_DASH] = ACTIONS(5640), - [anon_sym_PLUS_PLUS] = ACTIONS(5640), - [anon_sym_DOT] = ACTIONS(5647), - [anon_sym_DOT_STAR] = ACTIONS(5640), - [anon_sym_DASH_GT] = ACTIONS(5640), - [anon_sym_L_DQUOTE] = ACTIONS(7069), - [anon_sym_u_DQUOTE] = ACTIONS(7069), - [anon_sym_U_DQUOTE] = ACTIONS(7069), - [anon_sym_u8_DQUOTE] = ACTIONS(7069), - [anon_sym_DQUOTE] = ACTIONS(7069), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7071), - [anon_sym_decltype] = ACTIONS(7073), - [anon_sym_R_DQUOTE] = ACTIONS(7075), - [anon_sym_LR_DQUOTE] = ACTIONS(7075), - [anon_sym_uR_DQUOTE] = ACTIONS(7075), - [anon_sym_UR_DQUOTE] = ACTIONS(7075), - [anon_sym_u8R_DQUOTE] = ACTIONS(7075), + [sym_identifier] = ACTIONS(7113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_RPAREN] = ACTIONS(7115), + [aux_sym_preproc_if_token2] = ACTIONS(7115), + [aux_sym_preproc_else_token1] = ACTIONS(7115), + [aux_sym_preproc_elif_token1] = ACTIONS(7113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym_SEMI] = ACTIONS(7115), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym___attribute__] = ACTIONS(7113), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_COLON] = ACTIONS(7113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7115), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7115), + [anon_sym_RBRACE] = ACTIONS(7115), + [anon_sym_LBRACK] = ACTIONS(7113), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_and_eq] = ACTIONS(7113), + [anon_sym_or_eq] = ACTIONS(7113), + [anon_sym_xor_eq] = ACTIONS(7113), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7113), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7113), + [anon_sym_not_eq] = ACTIONS(7113), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_asm] = ACTIONS(7113), + [anon_sym___asm__] = ACTIONS(7113), + [anon_sym___asm] = ACTIONS(7113), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7115), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7113), + [anon_sym_override] = ACTIONS(7113), + [anon_sym_noexcept] = ACTIONS(7113), + [anon_sym_throw] = ACTIONS(7113), + [anon_sym_requires] = ACTIONS(7113), + [anon_sym_COLON_RBRACK] = ACTIONS(7115), }, [STATE(2045)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_RPAREN] = ACTIONS(7079), - [aux_sym_preproc_if_token2] = ACTIONS(7079), - [aux_sym_preproc_else_token1] = ACTIONS(7079), - [aux_sym_preproc_elif_token1] = ACTIONS(7077), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7079), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym_SEMI] = ACTIONS(7079), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym___attribute__] = ACTIONS(7077), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_COLON] = ACTIONS(7077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7079), - [anon_sym_RBRACE] = ACTIONS(7079), - [anon_sym_LBRACK] = ACTIONS(7077), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7079), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_and_eq] = ACTIONS(7077), - [anon_sym_or_eq] = ACTIONS(7077), - [anon_sym_xor_eq] = ACTIONS(7077), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7077), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7077), - [anon_sym_not_eq] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_asm] = ACTIONS(7077), - [anon_sym___asm__] = ACTIONS(7077), - [anon_sym___asm] = ACTIONS(7077), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7079), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7077), - [anon_sym_override] = ACTIONS(7077), - [anon_sym_noexcept] = ACTIONS(7077), - [anon_sym_throw] = ACTIONS(7077), - [anon_sym_requires] = ACTIONS(7077), - [anon_sym_COLON_RBRACK] = ACTIONS(7079), + [sym_template_argument_list] = STATE(5597), + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7119), + [anon_sym_COMMA] = ACTIONS(7119), + [anon_sym_RPAREN] = ACTIONS(7119), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_TILDE] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7124), + [anon_sym_PLUS] = ACTIONS(7124), + [anon_sym_STAR] = ACTIONS(7126), + [anon_sym_SLASH] = ACTIONS(7124), + [anon_sym_PERCENT] = ACTIONS(7124), + [anon_sym_PIPE_PIPE] = ACTIONS(7129), + [anon_sym_AMP_AMP] = ACTIONS(7119), + [anon_sym_PIPE] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7124), + [anon_sym_AMP] = ACTIONS(7126), + [anon_sym_EQ_EQ] = ACTIONS(7129), + [anon_sym_BANG_EQ] = ACTIONS(7129), + [anon_sym_GT] = ACTIONS(7124), + [anon_sym_GT_EQ] = ACTIONS(7129), + [anon_sym_LT_EQ] = ACTIONS(7124), + [anon_sym_LT] = ACTIONS(7131), + [anon_sym_LT_LT] = ACTIONS(7124), + [anon_sym_GT_GT] = ACTIONS(7124), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym_virtual] = ACTIONS(7117), + [anon_sym_extern] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7122), + [anon_sym___declspec] = ACTIONS(7117), + [anon_sym___based] = ACTIONS(7117), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7126), + [anon_sym_static] = ACTIONS(7117), + [anon_sym_EQ] = ACTIONS(7126), + [anon_sym_register] = ACTIONS(7117), + [anon_sym_inline] = ACTIONS(7117), + [anon_sym___inline] = ACTIONS(7117), + [anon_sym___inline__] = ACTIONS(7117), + [anon_sym___forceinline] = ACTIONS(7117), + [anon_sym_thread_local] = ACTIONS(7117), + [anon_sym___thread] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(7129), + [anon_sym_STAR_EQ] = ACTIONS(7129), + [anon_sym_SLASH_EQ] = ACTIONS(7129), + [anon_sym_PERCENT_EQ] = ACTIONS(7129), + [anon_sym_PLUS_EQ] = ACTIONS(7129), + [anon_sym_DASH_EQ] = ACTIONS(7129), + [anon_sym_LT_LT_EQ] = ACTIONS(7129), + [anon_sym_GT_GT_EQ] = ACTIONS(7129), + [anon_sym_AMP_EQ] = ACTIONS(7129), + [anon_sym_CARET_EQ] = ACTIONS(7129), + [anon_sym_PIPE_EQ] = ACTIONS(7129), + [anon_sym_LT_EQ_GT] = ACTIONS(7129), + [anon_sym_or] = ACTIONS(7124), + [anon_sym_and] = ACTIONS(7124), + [anon_sym_bitor] = ACTIONS(7124), + [anon_sym_xor] = ACTIONS(7124), + [anon_sym_bitand] = ACTIONS(7124), + [anon_sym_not_eq] = ACTIONS(7124), + [anon_sym_DASH_DASH] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7129), + [anon_sym_DOT] = ACTIONS(7124), + [anon_sym_DOT_STAR] = ACTIONS(7129), + [anon_sym_DASH_GT] = ACTIONS(7124), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7117), + [anon_sym_template] = ACTIONS(7117), + [anon_sym_operator] = ACTIONS(7117), + [anon_sym_DASH_GT_STAR] = ACTIONS(7129), + [anon_sym_LBRACK_COLON] = ACTIONS(7122), }, [STATE(2046)] = { - [sym_identifier] = ACTIONS(6628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_TILDE] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6628), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6628), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6628), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6628), - [anon_sym_GT_GT] = ACTIONS(6628), - [anon_sym___extension__] = ACTIONS(6628), - [anon_sym_virtual] = ACTIONS(6628), - [anon_sym_extern] = ACTIONS(6628), - [anon_sym___attribute__] = ACTIONS(6628), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), - [anon_sym___declspec] = ACTIONS(6628), - [anon_sym___based] = ACTIONS(6628), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6628), - [anon_sym_static] = ACTIONS(6628), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_register] = ACTIONS(6628), - [anon_sym_inline] = ACTIONS(6628), - [anon_sym___inline] = ACTIONS(6628), - [anon_sym___inline__] = ACTIONS(6628), - [anon_sym___forceinline] = ACTIONS(6628), - [anon_sym_thread_local] = ACTIONS(6628), - [anon_sym___thread] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6628), - [anon_sym_volatile] = ACTIONS(6628), - [anon_sym_restrict] = ACTIONS(6628), - [anon_sym___restrict__] = ACTIONS(6628), - [anon_sym__Atomic] = ACTIONS(6628), - [anon_sym__Noreturn] = ACTIONS(6628), - [anon_sym_noreturn] = ACTIONS(6628), - [anon_sym__Nonnull] = ACTIONS(6628), - [anon_sym_mutable] = ACTIONS(6628), - [anon_sym_constinit] = ACTIONS(6628), - [anon_sym_consteval] = ACTIONS(6628), - [anon_sym_alignas] = ACTIONS(6628), - [anon_sym__Alignas] = ACTIONS(6628), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_STAR_EQ] = ACTIONS(6630), - [anon_sym_SLASH_EQ] = ACTIONS(6630), - [anon_sym_PERCENT_EQ] = ACTIONS(6630), - [anon_sym_PLUS_EQ] = ACTIONS(6630), - [anon_sym_DASH_EQ] = ACTIONS(6630), - [anon_sym_LT_LT_EQ] = ACTIONS(6630), - [anon_sym_GT_GT_EQ] = ACTIONS(6630), - [anon_sym_AMP_EQ] = ACTIONS(6630), - [anon_sym_CARET_EQ] = ACTIONS(6630), - [anon_sym_PIPE_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6628), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6628), - [anon_sym_not_eq] = ACTIONS(6628), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6628), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6628), - [anon_sym_decltype] = ACTIONS(6628), - [anon_sym_template] = ACTIONS(6628), - [anon_sym_operator] = ACTIONS(6628), - [anon_sym_DASH_GT_STAR] = ACTIONS(6630), - [anon_sym_LBRACK_COLON] = ACTIONS(6630), + [sym_identifier] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [aux_sym_preproc_if_token2] = ACTIONS(3116), + [aux_sym_preproc_else_token1] = ACTIONS(3116), + [aux_sym_preproc_elif_token1] = ACTIONS(3126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON] = ACTIONS(3126), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_and_eq] = ACTIONS(3126), + [anon_sym_or_eq] = ACTIONS(3126), + [anon_sym_xor_eq] = ACTIONS(3126), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3126), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3126), + [anon_sym_not_eq] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [anon_sym_COLON_RBRACK] = ACTIONS(3116), }, [STATE(2047)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [aux_sym_preproc_if_token2] = ACTIONS(3118), - [aux_sym_preproc_else_token1] = ACTIONS(3118), - [aux_sym_preproc_elif_token1] = ACTIONS(3128), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3118), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON] = ACTIONS(3128), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_EQ] = 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_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_and_eq] = ACTIONS(3128), - [anon_sym_or_eq] = ACTIONS(3128), - [anon_sym_xor_eq] = ACTIONS(3128), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3128), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3128), - [anon_sym_not_eq] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [anon_sym_COLON_RBRACK] = ACTIONS(3118), + [sym_identifier] = ACTIONS(6602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_TILDE] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(6602), + [anon_sym_virtual] = ACTIONS(6602), + [anon_sym_extern] = ACTIONS(6602), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6604), + [anon_sym___declspec] = ACTIONS(6602), + [anon_sym___based] = ACTIONS(6602), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_static] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_register] = ACTIONS(6602), + [anon_sym_inline] = ACTIONS(6602), + [anon_sym___inline] = ACTIONS(6602), + [anon_sym___inline__] = ACTIONS(6602), + [anon_sym___forceinline] = ACTIONS(6602), + [anon_sym_thread_local] = ACTIONS(6602), + [anon_sym___thread] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_STAR_EQ] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [anon_sym_PERCENT_EQ] = ACTIONS(6604), + [anon_sym_PLUS_EQ] = ACTIONS(6604), + [anon_sym_DASH_EQ] = ACTIONS(6604), + [anon_sym_LT_LT_EQ] = ACTIONS(6604), + [anon_sym_GT_GT_EQ] = ACTIONS(6604), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6602), + [anon_sym_decltype] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(6602), + [anon_sym_operator] = ACTIONS(6602), + [anon_sym_DASH_GT_STAR] = ACTIONS(6604), + [anon_sym_LBRACK_COLON] = ACTIONS(6604), }, [STATE(2048)] = { - [sym_identifier] = ACTIONS(7081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), - [anon_sym_COMMA] = ACTIONS(7083), - [anon_sym_RPAREN] = ACTIONS(7083), - [aux_sym_preproc_if_token2] = ACTIONS(7083), - [aux_sym_preproc_else_token1] = ACTIONS(7083), - [aux_sym_preproc_elif_token1] = ACTIONS(7081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7083), - [anon_sym_LPAREN2] = ACTIONS(7083), - [anon_sym_DASH] = ACTIONS(7081), - [anon_sym_PLUS] = ACTIONS(7081), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7081), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7083), - [anon_sym_AMP_AMP] = ACTIONS(7083), - [anon_sym_PIPE] = ACTIONS(7081), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7081), - [anon_sym_EQ_EQ] = ACTIONS(7083), - [anon_sym_BANG_EQ] = ACTIONS(7083), - [anon_sym_GT] = ACTIONS(7081), - [anon_sym_GT_EQ] = ACTIONS(7083), - [anon_sym_LT_EQ] = ACTIONS(7081), - [anon_sym_LT] = ACTIONS(7081), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym_SEMI] = ACTIONS(7083), - [anon_sym___extension__] = ACTIONS(7081), - [anon_sym___attribute__] = ACTIONS(7081), - [anon_sym___attribute] = ACTIONS(7081), - [anon_sym_COLON] = ACTIONS(7081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7083), - [anon_sym_RBRACE] = ACTIONS(7083), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(7081), - [anon_sym_constexpr] = ACTIONS(7081), - [anon_sym_volatile] = ACTIONS(7081), - [anon_sym_restrict] = ACTIONS(7081), - [anon_sym___restrict__] = ACTIONS(7081), - [anon_sym__Atomic] = ACTIONS(7081), - [anon_sym__Noreturn] = ACTIONS(7081), - [anon_sym_noreturn] = ACTIONS(7081), - [anon_sym__Nonnull] = ACTIONS(7081), - [anon_sym_mutable] = ACTIONS(7081), - [anon_sym_constinit] = ACTIONS(7081), - [anon_sym_consteval] = ACTIONS(7081), - [anon_sym_alignas] = ACTIONS(7081), - [anon_sym__Alignas] = ACTIONS(7081), - [anon_sym_QMARK] = ACTIONS(7083), - [anon_sym_STAR_EQ] = ACTIONS(7083), - [anon_sym_SLASH_EQ] = ACTIONS(7083), - [anon_sym_PERCENT_EQ] = ACTIONS(7083), - [anon_sym_PLUS_EQ] = ACTIONS(7083), - [anon_sym_DASH_EQ] = ACTIONS(7083), - [anon_sym_LT_LT_EQ] = ACTIONS(7083), - [anon_sym_GT_GT_EQ] = ACTIONS(7083), - [anon_sym_AMP_EQ] = ACTIONS(7083), - [anon_sym_CARET_EQ] = ACTIONS(7083), - [anon_sym_PIPE_EQ] = ACTIONS(7083), - [anon_sym_and_eq] = ACTIONS(7081), - [anon_sym_or_eq] = ACTIONS(7081), - [anon_sym_xor_eq] = ACTIONS(7081), - [anon_sym_LT_EQ_GT] = ACTIONS(7083), - [anon_sym_or] = ACTIONS(7081), - [anon_sym_and] = ACTIONS(7081), - [anon_sym_bitor] = ACTIONS(7081), - [anon_sym_xor] = ACTIONS(7081), - [anon_sym_bitand] = ACTIONS(7081), - [anon_sym_not_eq] = ACTIONS(7081), - [anon_sym_DASH_DASH] = ACTIONS(7083), - [anon_sym_PLUS_PLUS] = ACTIONS(7083), - [anon_sym_asm] = ACTIONS(7081), - [anon_sym___asm__] = ACTIONS(7081), - [anon_sym___asm] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7081), - [anon_sym_DOT_STAR] = ACTIONS(7083), - [anon_sym_DASH_GT] = ACTIONS(7083), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7081), - [anon_sym_override] = ACTIONS(7081), - [anon_sym_noexcept] = ACTIONS(7081), - [anon_sym_throw] = ACTIONS(7081), - [anon_sym_requires] = ACTIONS(7081), - [anon_sym_COLON_RBRACK] = ACTIONS(7083), + [sym_identifier] = ACTIONS(7133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_RPAREN] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_TILDE] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7135), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7135), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7135), + [anon_sym_GT_GT] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(7135), + [anon_sym___extension__] = ACTIONS(7133), + [anon_sym_virtual] = ACTIONS(7133), + [anon_sym_extern] = ACTIONS(7133), + [anon_sym___attribute__] = ACTIONS(7133), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_COLON] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7135), + [anon_sym___declspec] = ACTIONS(7133), + [anon_sym___based] = ACTIONS(7133), + [anon_sym___cdecl] = ACTIONS(7133), + [anon_sym___clrcall] = ACTIONS(7133), + [anon_sym___stdcall] = ACTIONS(7133), + [anon_sym___fastcall] = ACTIONS(7133), + [anon_sym___thiscall] = ACTIONS(7133), + [anon_sym___vectorcall] = ACTIONS(7133), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_RBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7133), + [anon_sym_static] = ACTIONS(7133), + [anon_sym_register] = ACTIONS(7133), + [anon_sym_inline] = ACTIONS(7133), + [anon_sym___inline] = ACTIONS(7133), + [anon_sym___inline__] = ACTIONS(7133), + [anon_sym___forceinline] = ACTIONS(7133), + [anon_sym_thread_local] = ACTIONS(7133), + [anon_sym___thread] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7133), + [anon_sym_volatile] = ACTIONS(7133), + [anon_sym_restrict] = ACTIONS(7133), + [anon_sym___restrict__] = ACTIONS(7133), + [anon_sym__Atomic] = ACTIONS(7133), + [anon_sym__Noreturn] = ACTIONS(7133), + [anon_sym_noreturn] = ACTIONS(7133), + [anon_sym__Nonnull] = ACTIONS(7133), + [anon_sym_mutable] = ACTIONS(7133), + [anon_sym_constinit] = ACTIONS(7133), + [anon_sym_consteval] = ACTIONS(7133), + [anon_sym_alignas] = ACTIONS(7133), + [anon_sym__Alignas] = ACTIONS(7133), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7133), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7133), + [anon_sym_not_eq] = ACTIONS(7133), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7133), + [anon_sym_final] = ACTIONS(7133), + [anon_sym_override] = ACTIONS(7133), + [anon_sym_template] = ACTIONS(7133), + [anon_sym_operator] = ACTIONS(7133), + [anon_sym_noexcept] = ACTIONS(7133), + [anon_sym_throw] = ACTIONS(7133), + [anon_sym_LBRACK_COLON] = ACTIONS(7135), }, [STATE(2049)] = { - [sym_template_argument_list] = STATE(5613), - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), - [anon_sym_COMMA] = ACTIONS(7087), - [anon_sym_RPAREN] = ACTIONS(7087), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_TILDE] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7092), - [anon_sym_PLUS] = ACTIONS(7092), - [anon_sym_STAR] = ACTIONS(7094), - [anon_sym_SLASH] = ACTIONS(7092), - [anon_sym_PERCENT] = ACTIONS(7092), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7087), - [anon_sym_PIPE] = ACTIONS(7092), - [anon_sym_CARET] = ACTIONS(7092), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7092), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7099), - [anon_sym_LT_LT] = ACTIONS(7092), - [anon_sym_GT_GT] = ACTIONS(7092), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym_virtual] = ACTIONS(7085), - [anon_sym_extern] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), - [anon_sym___declspec] = ACTIONS(7085), - [anon_sym___based] = ACTIONS(7085), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7094), - [anon_sym_static] = ACTIONS(7085), - [anon_sym_EQ] = ACTIONS(7094), - [anon_sym_register] = ACTIONS(7085), - [anon_sym_inline] = ACTIONS(7085), - [anon_sym___inline] = ACTIONS(7085), - [anon_sym___inline__] = ACTIONS(7085), - [anon_sym___forceinline] = ACTIONS(7085), - [anon_sym_thread_local] = ACTIONS(7085), - [anon_sym___thread] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_STAR_EQ] = ACTIONS(7097), - [anon_sym_SLASH_EQ] = ACTIONS(7097), - [anon_sym_PERCENT_EQ] = ACTIONS(7097), - [anon_sym_PLUS_EQ] = ACTIONS(7097), - [anon_sym_DASH_EQ] = ACTIONS(7097), - [anon_sym_LT_LT_EQ] = ACTIONS(7097), - [anon_sym_GT_GT_EQ] = ACTIONS(7097), - [anon_sym_AMP_EQ] = ACTIONS(7097), - [anon_sym_CARET_EQ] = ACTIONS(7097), - [anon_sym_PIPE_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7092), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_bitor] = ACTIONS(7092), - [anon_sym_xor] = ACTIONS(7092), - [anon_sym_bitand] = ACTIONS(7092), - [anon_sym_not_eq] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7092), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7092), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7085), - [anon_sym_template] = ACTIONS(7085), - [anon_sym_operator] = ACTIONS(7085), - [anon_sym_DASH_GT_STAR] = ACTIONS(7097), - [anon_sym_LBRACK_COLON] = ACTIONS(7090), - }, - [STATE(2050)] = { - [sym_identifier] = ACTIONS(6594), + [sym_identifier] = ACTIONS(6596), [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), [anon_sym_COMMA] = ACTIONS(6598), [anon_sym_RPAREN] = ACTIONS(6598), [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_TILDE] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6603), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_TILDE] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6596), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6603), - [anon_sym_GT_GT] = ACTIONS(6603), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym_virtual] = ACTIONS(6594), - [anon_sym_extern] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), - [anon_sym___declspec] = ACTIONS(6594), - [anon_sym___based] = ACTIONS(6594), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6605), - [anon_sym_static] = ACTIONS(6594), - [anon_sym_EQ] = ACTIONS(6605), - [anon_sym_register] = ACTIONS(6594), - [anon_sym_inline] = ACTIONS(6594), - [anon_sym___inline] = ACTIONS(6594), - [anon_sym___inline__] = ACTIONS(6594), - [anon_sym___forceinline] = ACTIONS(6594), - [anon_sym_thread_local] = ACTIONS(6594), - [anon_sym___thread] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6603), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6603), - [anon_sym_not_eq] = ACTIONS(6603), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_template] = ACTIONS(6594), - [anon_sym_operator] = ACTIONS(6594), - [anon_sym_DASH_GT_STAR] = ACTIONS(6596), - [anon_sym_LBRACK_COLON] = ACTIONS(6601), - }, - [STATE(2051)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_RPAREN] = ACTIONS(7079), - [aux_sym_preproc_if_token2] = ACTIONS(7079), - [aux_sym_preproc_else_token1] = ACTIONS(7079), - [aux_sym_preproc_elif_token1] = ACTIONS(7077), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7079), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym_SEMI] = ACTIONS(7079), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym___attribute__] = ACTIONS(7077), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_COLON] = ACTIONS(7077), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7079), - [anon_sym_LBRACE] = ACTIONS(7079), - [anon_sym_RBRACE] = ACTIONS(7079), - [anon_sym_signed] = ACTIONS(7077), - [anon_sym_unsigned] = ACTIONS(7077), - [anon_sym_long] = ACTIONS(7077), - [anon_sym_short] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(7079), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [sym_primitive_type] = ACTIONS(7077), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7079), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_and_eq] = ACTIONS(7077), - [anon_sym_or_eq] = ACTIONS(7077), - [anon_sym_xor_eq] = ACTIONS(7077), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7077), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7077), - [anon_sym_not_eq] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7079), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7077), - [anon_sym_override] = ACTIONS(7077), - [anon_sym_requires] = ACTIONS(7077), - [anon_sym_COLON_RBRACK] = ACTIONS(7079), - }, - [STATE(2052)] = { - [sym_string_literal] = STATE(4105), - [sym_decltype_auto] = STATE(3203), - [sym_template_argument_list] = STATE(5021), - [sym_raw_string_literal] = STATE(4105), - [aux_sym_sized_type_specifier_repeat1] = STATE(3552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(5640), - [anon_sym_LPAREN2] = ACTIONS(5640), - [anon_sym_DASH] = ACTIONS(5645), - [anon_sym_PLUS] = ACTIONS(5645), - [anon_sym_STAR] = ACTIONS(5647), - [anon_sym_SLASH] = ACTIONS(5645), - [anon_sym_PERCENT] = ACTIONS(5645), - [anon_sym_PIPE_PIPE] = ACTIONS(5638), - [anon_sym_AMP_AMP] = ACTIONS(5640), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5647), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_signed] = ACTIONS(6867), - [anon_sym_unsigned] = ACTIONS(6867), - [anon_sym_long] = ACTIONS(6867), - [anon_sym_short] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6869), - [anon_sym_decltype] = ACTIONS(6871), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - }, - [STATE(2053)] = { - [sym_identifier] = ACTIONS(7104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), - [anon_sym_COMMA] = ACTIONS(7106), - [anon_sym_RPAREN] = ACTIONS(7106), - [anon_sym_LPAREN2] = ACTIONS(7106), - [anon_sym_TILDE] = ACTIONS(7106), - [anon_sym_DASH] = ACTIONS(7104), - [anon_sym_PLUS] = ACTIONS(7104), - [anon_sym_STAR] = ACTIONS(7106), - [anon_sym_SLASH] = ACTIONS(7104), - [anon_sym_PERCENT] = ACTIONS(7106), - [anon_sym_PIPE_PIPE] = ACTIONS(7106), - [anon_sym_AMP_AMP] = ACTIONS(7106), - [anon_sym_PIPE] = ACTIONS(7104), - [anon_sym_CARET] = ACTIONS(7106), - [anon_sym_AMP] = ACTIONS(7104), - [anon_sym_EQ_EQ] = ACTIONS(7106), - [anon_sym_BANG_EQ] = ACTIONS(7106), - [anon_sym_GT] = ACTIONS(7104), - [anon_sym_GT_EQ] = ACTIONS(7106), - [anon_sym_LT_EQ] = ACTIONS(7104), - [anon_sym_LT] = ACTIONS(7104), - [anon_sym_LT_LT] = ACTIONS(7106), - [anon_sym_GT_GT] = ACTIONS(7106), - [anon_sym_SEMI] = ACTIONS(7106), - [anon_sym___extension__] = ACTIONS(7104), - [anon_sym_virtual] = ACTIONS(7104), - [anon_sym_extern] = ACTIONS(7104), - [anon_sym___attribute__] = ACTIONS(7104), - [anon_sym___attribute] = ACTIONS(7104), - [anon_sym_COLON] = ACTIONS(7104), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7106), - [anon_sym___declspec] = ACTIONS(7104), - [anon_sym___based] = ACTIONS(7104), - [anon_sym___cdecl] = ACTIONS(7104), - [anon_sym___clrcall] = ACTIONS(7104), - [anon_sym___stdcall] = ACTIONS(7104), - [anon_sym___fastcall] = ACTIONS(7104), - [anon_sym___thiscall] = ACTIONS(7104), - [anon_sym___vectorcall] = ACTIONS(7104), - [anon_sym_LBRACE] = ACTIONS(7106), - [anon_sym_RBRACE] = ACTIONS(7106), - [anon_sym_LBRACK] = ACTIONS(7104), - [anon_sym_static] = ACTIONS(7104), - [anon_sym_register] = ACTIONS(7104), - [anon_sym_inline] = ACTIONS(7104), - [anon_sym___inline] = ACTIONS(7104), - [anon_sym___inline__] = ACTIONS(7104), - [anon_sym___forceinline] = ACTIONS(7104), - [anon_sym_thread_local] = ACTIONS(7104), - [anon_sym___thread] = ACTIONS(7104), - [anon_sym_const] = ACTIONS(7104), - [anon_sym_constexpr] = ACTIONS(7104), - [anon_sym_volatile] = ACTIONS(7104), - [anon_sym_restrict] = ACTIONS(7104), - [anon_sym___restrict__] = ACTIONS(7104), - [anon_sym__Atomic] = ACTIONS(7104), - [anon_sym__Noreturn] = ACTIONS(7104), - [anon_sym_noreturn] = ACTIONS(7104), - [anon_sym__Nonnull] = ACTIONS(7104), - [anon_sym_mutable] = ACTIONS(7104), - [anon_sym_constinit] = ACTIONS(7104), - [anon_sym_consteval] = ACTIONS(7104), - [anon_sym_alignas] = ACTIONS(7104), - [anon_sym__Alignas] = ACTIONS(7104), - [anon_sym_QMARK] = ACTIONS(7106), - [anon_sym_LT_EQ_GT] = ACTIONS(7106), - [anon_sym_or] = ACTIONS(7104), - [anon_sym_and] = ACTIONS(7104), - [anon_sym_bitor] = ACTIONS(7104), - [anon_sym_xor] = ACTIONS(7104), - [anon_sym_bitand] = ACTIONS(7104), - [anon_sym_not_eq] = ACTIONS(7104), - [anon_sym_DASH_DASH] = ACTIONS(7106), - [anon_sym_PLUS_PLUS] = ACTIONS(7106), - [anon_sym_DOT] = ACTIONS(7104), - [anon_sym_DOT_STAR] = ACTIONS(7106), - [anon_sym_DASH_GT] = ACTIONS(7106), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7104), - [anon_sym_final] = ACTIONS(7104), - [anon_sym_override] = ACTIONS(7104), - [anon_sym_template] = ACTIONS(7104), - [anon_sym_operator] = ACTIONS(7104), - [anon_sym_noexcept] = ACTIONS(7104), - [anon_sym_throw] = ACTIONS(7104), - [anon_sym_LBRACK_COLON] = ACTIONS(7106), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6596), + [anon_sym_virtual] = ACTIONS(6596), + [anon_sym_extern] = ACTIONS(6596), + [anon_sym___attribute__] = ACTIONS(6596), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6598), + [anon_sym___declspec] = ACTIONS(6596), + [anon_sym___based] = ACTIONS(6596), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6596), + [anon_sym_static] = ACTIONS(6596), + [anon_sym_EQ] = ACTIONS(6596), + [anon_sym_register] = ACTIONS(6596), + [anon_sym_inline] = ACTIONS(6596), + [anon_sym___inline] = ACTIONS(6596), + [anon_sym___inline__] = ACTIONS(6596), + [anon_sym___forceinline] = ACTIONS(6596), + [anon_sym_thread_local] = ACTIONS(6596), + [anon_sym___thread] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6596), + [anon_sym_volatile] = ACTIONS(6596), + [anon_sym_restrict] = ACTIONS(6596), + [anon_sym___restrict__] = ACTIONS(6596), + [anon_sym__Atomic] = ACTIONS(6596), + [anon_sym__Noreturn] = ACTIONS(6596), + [anon_sym_noreturn] = ACTIONS(6596), + [anon_sym__Nonnull] = ACTIONS(6596), + [anon_sym_mutable] = ACTIONS(6596), + [anon_sym_constinit] = ACTIONS(6596), + [anon_sym_consteval] = ACTIONS(6596), + [anon_sym_alignas] = ACTIONS(6596), + [anon_sym__Alignas] = ACTIONS(6596), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6596), + [anon_sym_decltype] = ACTIONS(6596), + [anon_sym_template] = ACTIONS(6596), + [anon_sym_operator] = ACTIONS(6596), + [anon_sym_DASH_GT_STAR] = ACTIONS(6598), + [anon_sym_LBRACK_COLON] = ACTIONS(6598), }, - [STATE(2054)] = { - [sym_identifier] = ACTIONS(7108), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), - [anon_sym_COMMA] = ACTIONS(7110), - [anon_sym_RPAREN] = ACTIONS(7110), - [aux_sym_preproc_if_token2] = ACTIONS(7110), - [aux_sym_preproc_else_token1] = ACTIONS(7110), - [aux_sym_preproc_elif_token1] = ACTIONS(7108), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7110), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7110), - [anon_sym_LPAREN2] = ACTIONS(7110), - [anon_sym_DASH] = ACTIONS(7108), - [anon_sym_PLUS] = ACTIONS(7108), - [anon_sym_STAR] = ACTIONS(7108), - [anon_sym_SLASH] = ACTIONS(7108), - [anon_sym_PERCENT] = ACTIONS(7108), - [anon_sym_PIPE_PIPE] = ACTIONS(7110), - [anon_sym_AMP_AMP] = ACTIONS(7110), - [anon_sym_PIPE] = ACTIONS(7108), - [anon_sym_CARET] = ACTIONS(7108), - [anon_sym_AMP] = ACTIONS(7108), - [anon_sym_EQ_EQ] = ACTIONS(7110), - [anon_sym_BANG_EQ] = ACTIONS(7110), - [anon_sym_GT] = ACTIONS(7108), - [anon_sym_GT_EQ] = ACTIONS(7110), - [anon_sym_LT_EQ] = ACTIONS(7108), - [anon_sym_LT] = ACTIONS(7108), - [anon_sym_LT_LT] = ACTIONS(7108), - [anon_sym_GT_GT] = ACTIONS(7108), - [anon_sym_SEMI] = ACTIONS(7110), - [anon_sym___extension__] = ACTIONS(7108), - [anon_sym___attribute__] = ACTIONS(7108), - [anon_sym___attribute] = ACTIONS(7108), - [anon_sym_COLON] = ACTIONS(7108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7110), - [anon_sym_RBRACE] = ACTIONS(7110), - [anon_sym_LBRACK] = ACTIONS(7108), - [anon_sym_EQ] = ACTIONS(7108), - [anon_sym_const] = ACTIONS(7108), - [anon_sym_constexpr] = ACTIONS(7108), - [anon_sym_volatile] = ACTIONS(7108), - [anon_sym_restrict] = ACTIONS(7108), - [anon_sym___restrict__] = ACTIONS(7108), - [anon_sym__Atomic] = ACTIONS(7108), - [anon_sym__Noreturn] = ACTIONS(7108), - [anon_sym_noreturn] = ACTIONS(7108), - [anon_sym__Nonnull] = ACTIONS(7108), - [anon_sym_mutable] = ACTIONS(7108), - [anon_sym_constinit] = ACTIONS(7108), - [anon_sym_consteval] = ACTIONS(7108), - [anon_sym_alignas] = ACTIONS(7108), - [anon_sym__Alignas] = ACTIONS(7108), - [anon_sym_QMARK] = ACTIONS(7110), - [anon_sym_STAR_EQ] = ACTIONS(7110), - [anon_sym_SLASH_EQ] = ACTIONS(7110), - [anon_sym_PERCENT_EQ] = ACTIONS(7110), - [anon_sym_PLUS_EQ] = ACTIONS(7110), - [anon_sym_DASH_EQ] = ACTIONS(7110), - [anon_sym_LT_LT_EQ] = ACTIONS(7110), - [anon_sym_GT_GT_EQ] = ACTIONS(7110), - [anon_sym_AMP_EQ] = ACTIONS(7110), - [anon_sym_CARET_EQ] = ACTIONS(7110), - [anon_sym_PIPE_EQ] = ACTIONS(7110), - [anon_sym_and_eq] = ACTIONS(7108), - [anon_sym_or_eq] = ACTIONS(7108), - [anon_sym_xor_eq] = ACTIONS(7108), - [anon_sym_LT_EQ_GT] = ACTIONS(7110), - [anon_sym_or] = ACTIONS(7108), - [anon_sym_and] = ACTIONS(7108), - [anon_sym_bitor] = ACTIONS(7108), - [anon_sym_xor] = ACTIONS(7108), - [anon_sym_bitand] = ACTIONS(7108), - [anon_sym_not_eq] = ACTIONS(7108), - [anon_sym_DASH_DASH] = ACTIONS(7110), - [anon_sym_PLUS_PLUS] = ACTIONS(7110), - [anon_sym_asm] = ACTIONS(7108), - [anon_sym___asm__] = ACTIONS(7108), - [anon_sym___asm] = ACTIONS(7108), - [anon_sym_DOT] = ACTIONS(7108), - [anon_sym_DOT_STAR] = ACTIONS(7110), - [anon_sym_DASH_GT] = ACTIONS(7110), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7108), - [anon_sym_override] = ACTIONS(7108), - [anon_sym_noexcept] = ACTIONS(7108), - [anon_sym_throw] = ACTIONS(7108), - [anon_sym_requires] = ACTIONS(7108), - [anon_sym_COLON_RBRACK] = ACTIONS(7110), + [STATE(2050)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2689), + [sym_ms_pointer_modifier] = STATE(2499), + [sym__abstract_declarator] = STATE(4656), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2341), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2341), + [aux_sym_pointer_declarator_repeat1] = STATE(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7101), + [sym_ms_restrict_modifier] = ACTIONS(7103), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7105), + [sym_ms_signed_ptr_modifier] = ACTIONS(7105), + [anon_sym__unaligned] = ACTIONS(7107), + [anon_sym___unaligned] = ACTIONS(7107), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(6843), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), }, - [STATE(2055)] = { - [sym_identifier] = ACTIONS(6608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_RPAREN] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_TILDE] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6608), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6608), - [anon_sym_GT_GT] = ACTIONS(6608), - [anon_sym___extension__] = ACTIONS(6608), - [anon_sym_virtual] = ACTIONS(6608), - [anon_sym_extern] = ACTIONS(6608), - [anon_sym___attribute__] = ACTIONS(6608), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), - [anon_sym___declspec] = ACTIONS(6608), - [anon_sym___based] = ACTIONS(6608), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6608), - [anon_sym_static] = ACTIONS(6608), - [anon_sym_EQ] = ACTIONS(6608), - [anon_sym_register] = ACTIONS(6608), - [anon_sym_inline] = ACTIONS(6608), - [anon_sym___inline] = ACTIONS(6608), - [anon_sym___inline__] = ACTIONS(6608), - [anon_sym___forceinline] = ACTIONS(6608), - [anon_sym_thread_local] = ACTIONS(6608), - [anon_sym___thread] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6608), - [anon_sym_volatile] = ACTIONS(6608), - [anon_sym_restrict] = ACTIONS(6608), - [anon_sym___restrict__] = ACTIONS(6608), - [anon_sym__Atomic] = ACTIONS(6608), - [anon_sym__Noreturn] = ACTIONS(6608), - [anon_sym_noreturn] = ACTIONS(6608), - [anon_sym__Nonnull] = ACTIONS(6608), - [anon_sym_mutable] = ACTIONS(6608), - [anon_sym_constinit] = ACTIONS(6608), - [anon_sym_consteval] = ACTIONS(6608), - [anon_sym_alignas] = ACTIONS(6608), - [anon_sym__Alignas] = ACTIONS(6608), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_STAR_EQ] = ACTIONS(6610), - [anon_sym_SLASH_EQ] = ACTIONS(6610), - [anon_sym_PERCENT_EQ] = ACTIONS(6610), - [anon_sym_PLUS_EQ] = ACTIONS(6610), - [anon_sym_DASH_EQ] = ACTIONS(6610), - [anon_sym_LT_LT_EQ] = ACTIONS(6610), - [anon_sym_GT_GT_EQ] = ACTIONS(6610), - [anon_sym_AMP_EQ] = ACTIONS(6610), - [anon_sym_CARET_EQ] = ACTIONS(6610), - [anon_sym_PIPE_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6608), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6608), - [anon_sym_not_eq] = ACTIONS(6608), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6608), + [STATE(2051)] = { + [sym_identifier] = ACTIONS(6614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_TILDE] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym_virtual] = ACTIONS(6614), + [anon_sym_extern] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6616), + [anon_sym___declspec] = ACTIONS(6614), + [anon_sym___based] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_static] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_register] = ACTIONS(6614), + [anon_sym_inline] = ACTIONS(6614), + [anon_sym___inline] = ACTIONS(6614), + [anon_sym___inline__] = ACTIONS(6614), + [anon_sym___forceinline] = ACTIONS(6614), + [anon_sym_thread_local] = ACTIONS(6614), + [anon_sym___thread] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_STAR_EQ] = ACTIONS(6616), + [anon_sym_SLASH_EQ] = ACTIONS(6616), + [anon_sym_PERCENT_EQ] = ACTIONS(6616), + [anon_sym_PLUS_EQ] = ACTIONS(6616), + [anon_sym_DASH_EQ] = ACTIONS(6616), + [anon_sym_LT_LT_EQ] = ACTIONS(6616), + [anon_sym_GT_GT_EQ] = ACTIONS(6616), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6614), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6608), - [anon_sym_decltype] = ACTIONS(6608), - [anon_sym_template] = ACTIONS(6608), - [anon_sym_operator] = ACTIONS(6608), - [anon_sym_DASH_GT_STAR] = ACTIONS(6610), - [anon_sym_LBRACK_COLON] = ACTIONS(6610), - }, - [STATE(2056)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2683), - [sym_ms_pointer_modifier] = STATE(2487), - [sym__abstract_declarator] = STATE(4680), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2340), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2340), - [aux_sym_pointer_declarator_repeat1] = STATE(2487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7116), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7120), - [sym_ms_restrict_modifier] = ACTIONS(7122), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7124), - [sym_ms_signed_ptr_modifier] = ACTIONS(7124), - [anon_sym__unaligned] = ACTIONS(7126), - [anon_sym___unaligned] = ACTIONS(7126), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(6823), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(6614), + [anon_sym_operator] = ACTIONS(6614), + [anon_sym_DASH_GT_STAR] = ACTIONS(6616), + [anon_sym_LBRACK_COLON] = ACTIONS(6616), }, - [STATE(2057)] = { - [sym_identifier] = ACTIONS(6620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_RPAREN] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_TILDE] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6620), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6620), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6620), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6620), - [anon_sym_GT_GT] = ACTIONS(6620), - [anon_sym___extension__] = ACTIONS(6620), - [anon_sym_virtual] = ACTIONS(6620), - [anon_sym_extern] = ACTIONS(6620), - [anon_sym___attribute__] = ACTIONS(6620), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), - [anon_sym___declspec] = ACTIONS(6620), - [anon_sym___based] = ACTIONS(6620), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6620), - [anon_sym_static] = ACTIONS(6620), - [anon_sym_EQ] = ACTIONS(6620), - [anon_sym_register] = ACTIONS(6620), - [anon_sym_inline] = ACTIONS(6620), - [anon_sym___inline] = ACTIONS(6620), - [anon_sym___inline__] = ACTIONS(6620), - [anon_sym___forceinline] = ACTIONS(6620), - [anon_sym_thread_local] = ACTIONS(6620), - [anon_sym___thread] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6620), - [anon_sym_volatile] = ACTIONS(6620), - [anon_sym_restrict] = ACTIONS(6620), - [anon_sym___restrict__] = ACTIONS(6620), - [anon_sym__Atomic] = ACTIONS(6620), - [anon_sym__Noreturn] = ACTIONS(6620), - [anon_sym_noreturn] = ACTIONS(6620), - [anon_sym__Nonnull] = ACTIONS(6620), - [anon_sym_mutable] = ACTIONS(6620), - [anon_sym_constinit] = ACTIONS(6620), - [anon_sym_consteval] = ACTIONS(6620), - [anon_sym_alignas] = ACTIONS(6620), - [anon_sym__Alignas] = ACTIONS(6620), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_STAR_EQ] = ACTIONS(6622), - [anon_sym_SLASH_EQ] = ACTIONS(6622), - [anon_sym_PERCENT_EQ] = ACTIONS(6622), - [anon_sym_PLUS_EQ] = ACTIONS(6622), - [anon_sym_DASH_EQ] = ACTIONS(6622), - [anon_sym_LT_LT_EQ] = ACTIONS(6622), - [anon_sym_GT_GT_EQ] = ACTIONS(6622), - [anon_sym_AMP_EQ] = ACTIONS(6622), - [anon_sym_CARET_EQ] = ACTIONS(6622), - [anon_sym_PIPE_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6620), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6620), - [anon_sym_not_eq] = ACTIONS(6620), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6620), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6620), - [anon_sym_decltype] = ACTIONS(6620), - [anon_sym_template] = ACTIONS(6620), - [anon_sym_operator] = ACTIONS(6620), - [anon_sym_DASH_GT_STAR] = ACTIONS(6622), - [anon_sym_LBRACK_COLON] = ACTIONS(6622), + [STATE(2052)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2692), + [sym_ms_pointer_modifier] = STATE(2042), + [sym__abstract_declarator] = STATE(4739), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2357), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2357), + [aux_sym_pointer_declarator_repeat1] = STATE(2042), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(7075), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(7079), + [sym_ms_restrict_modifier] = ACTIONS(7081), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7083), + [sym_ms_signed_ptr_modifier] = ACTIONS(7083), + [anon_sym__unaligned] = ACTIONS(7085), + [anon_sym___unaligned] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6819), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_GT2] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), }, - [STATE(2058)] = { - [sym_identifier] = ACTIONS(7132), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7134), - [anon_sym_RPAREN] = ACTIONS(7134), - [aux_sym_preproc_if_token2] = ACTIONS(7134), - [aux_sym_preproc_else_token1] = ACTIONS(7134), - [aux_sym_preproc_elif_token1] = ACTIONS(7132), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7134), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7134), - [anon_sym_LPAREN2] = ACTIONS(7134), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7132), - [anon_sym_SLASH] = ACTIONS(7132), - [anon_sym_PERCENT] = ACTIONS(7132), - [anon_sym_PIPE_PIPE] = ACTIONS(7134), - [anon_sym_AMP_AMP] = ACTIONS(7134), - [anon_sym_PIPE] = ACTIONS(7132), - [anon_sym_CARET] = ACTIONS(7132), - [anon_sym_AMP] = ACTIONS(7132), - [anon_sym_EQ_EQ] = ACTIONS(7134), - [anon_sym_BANG_EQ] = ACTIONS(7134), - [anon_sym_GT] = ACTIONS(7132), - [anon_sym_GT_EQ] = ACTIONS(7134), - [anon_sym_LT_EQ] = ACTIONS(7132), - [anon_sym_LT] = ACTIONS(7132), - [anon_sym_LT_LT] = ACTIONS(7132), - [anon_sym_GT_GT] = ACTIONS(7132), - [anon_sym_SEMI] = ACTIONS(7134), - [anon_sym___extension__] = ACTIONS(7132), - [anon_sym___attribute__] = ACTIONS(7132), - [anon_sym___attribute] = ACTIONS(7132), - [anon_sym_COLON] = ACTIONS(7132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7134), - [anon_sym_RBRACE] = ACTIONS(7134), - [anon_sym_LBRACK] = ACTIONS(7132), - [anon_sym_EQ] = ACTIONS(7132), - [anon_sym_const] = ACTIONS(7132), - [anon_sym_constexpr] = ACTIONS(7132), - [anon_sym_volatile] = ACTIONS(7132), - [anon_sym_restrict] = ACTIONS(7132), - [anon_sym___restrict__] = ACTIONS(7132), - [anon_sym__Atomic] = ACTIONS(7132), - [anon_sym__Noreturn] = ACTIONS(7132), - [anon_sym_noreturn] = ACTIONS(7132), - [anon_sym__Nonnull] = ACTIONS(7132), - [anon_sym_mutable] = ACTIONS(7132), - [anon_sym_constinit] = ACTIONS(7132), - [anon_sym_consteval] = ACTIONS(7132), - [anon_sym_alignas] = ACTIONS(7132), - [anon_sym__Alignas] = ACTIONS(7132), - [anon_sym_QMARK] = ACTIONS(7134), - [anon_sym_STAR_EQ] = ACTIONS(7134), - [anon_sym_SLASH_EQ] = ACTIONS(7134), - [anon_sym_PERCENT_EQ] = ACTIONS(7134), - [anon_sym_PLUS_EQ] = ACTIONS(7134), - [anon_sym_DASH_EQ] = ACTIONS(7134), - [anon_sym_LT_LT_EQ] = ACTIONS(7134), - [anon_sym_GT_GT_EQ] = ACTIONS(7134), - [anon_sym_AMP_EQ] = ACTIONS(7134), - [anon_sym_CARET_EQ] = ACTIONS(7134), - [anon_sym_PIPE_EQ] = ACTIONS(7134), - [anon_sym_and_eq] = ACTIONS(7132), - [anon_sym_or_eq] = ACTIONS(7132), - [anon_sym_xor_eq] = ACTIONS(7132), - [anon_sym_LT_EQ_GT] = ACTIONS(7134), - [anon_sym_or] = ACTIONS(7132), - [anon_sym_and] = ACTIONS(7132), - [anon_sym_bitor] = ACTIONS(7132), - [anon_sym_xor] = ACTIONS(7132), - [anon_sym_bitand] = ACTIONS(7132), - [anon_sym_not_eq] = ACTIONS(7132), - [anon_sym_DASH_DASH] = ACTIONS(7134), - [anon_sym_PLUS_PLUS] = ACTIONS(7134), - [anon_sym_asm] = ACTIONS(7132), - [anon_sym___asm__] = ACTIONS(7132), - [anon_sym___asm] = ACTIONS(7132), - [anon_sym_DOT] = ACTIONS(7132), - [anon_sym_DOT_STAR] = ACTIONS(7134), - [anon_sym_DASH_GT] = ACTIONS(7134), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7132), - [anon_sym_override] = ACTIONS(7132), - [anon_sym_noexcept] = ACTIONS(7132), - [anon_sym_throw] = ACTIONS(7132), - [anon_sym_requires] = ACTIONS(7132), - [anon_sym_COLON_RBRACK] = ACTIONS(7134), + [STATE(2053)] = { + [sym_string_literal] = STATE(4050), + [sym_decltype_auto] = STATE(3215), + [sym_template_argument_list] = STATE(4784), + [sym_raw_string_literal] = STATE(4050), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5624), + [anon_sym_LPAREN2] = ACTIONS(5624), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5621), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5624), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5621), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_signed] = ACTIONS(6864), + [anon_sym_unsigned] = ACTIONS(6864), + [anon_sym_long] = ACTIONS(6864), + [anon_sym_short] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6866), + [anon_sym_decltype] = ACTIONS(6868), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), }, - [STATE(2059)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [aux_sym_preproc_if_token2] = ACTIONS(3118), - [aux_sym_preproc_else_token1] = ACTIONS(3118), - [aux_sym_preproc_elif_token1] = ACTIONS(3128), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3118), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON] = ACTIONS(3128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3118), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_EQ] = 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), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_and_eq] = ACTIONS(3128), - [anon_sym_or_eq] = ACTIONS(3128), - [anon_sym_xor_eq] = ACTIONS(3128), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3128), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3128), - [anon_sym_not_eq] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_asm] = ACTIONS(3128), - [anon_sym___asm__] = ACTIONS(3128), - [anon_sym___asm] = ACTIONS(3128), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_noexcept] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [anon_sym_COLON_RBRACK] = ACTIONS(3118), + [STATE(2054)] = { + [sym_identifier] = ACTIONS(7140), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7142), + [anon_sym_COMMA] = ACTIONS(7142), + [anon_sym_RPAREN] = ACTIONS(7142), + [aux_sym_preproc_if_token2] = ACTIONS(7142), + [aux_sym_preproc_else_token1] = ACTIONS(7142), + [aux_sym_preproc_elif_token1] = ACTIONS(7140), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7142), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7142), + [anon_sym_LPAREN2] = ACTIONS(7142), + [anon_sym_DASH] = ACTIONS(7140), + [anon_sym_PLUS] = ACTIONS(7140), + [anon_sym_STAR] = ACTIONS(7140), + [anon_sym_SLASH] = ACTIONS(7140), + [anon_sym_PERCENT] = ACTIONS(7140), + [anon_sym_PIPE_PIPE] = ACTIONS(7142), + [anon_sym_AMP_AMP] = ACTIONS(7142), + [anon_sym_PIPE] = ACTIONS(7140), + [anon_sym_CARET] = ACTIONS(7140), + [anon_sym_AMP] = ACTIONS(7140), + [anon_sym_EQ_EQ] = ACTIONS(7142), + [anon_sym_BANG_EQ] = ACTIONS(7142), + [anon_sym_GT] = ACTIONS(7140), + [anon_sym_GT_EQ] = ACTIONS(7142), + [anon_sym_LT_EQ] = ACTIONS(7140), + [anon_sym_LT] = ACTIONS(7140), + [anon_sym_LT_LT] = ACTIONS(7140), + [anon_sym_GT_GT] = ACTIONS(7140), + [anon_sym_SEMI] = ACTIONS(7142), + [anon_sym___extension__] = ACTIONS(7140), + [anon_sym___attribute__] = ACTIONS(7140), + [anon_sym___attribute] = ACTIONS(7140), + [anon_sym_COLON] = ACTIONS(7140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7142), + [anon_sym_RBRACE] = ACTIONS(7142), + [anon_sym_LBRACK] = ACTIONS(7140), + [anon_sym_EQ] = ACTIONS(7140), + [anon_sym_const] = ACTIONS(7140), + [anon_sym_constexpr] = ACTIONS(7140), + [anon_sym_volatile] = ACTIONS(7140), + [anon_sym_restrict] = ACTIONS(7140), + [anon_sym___restrict__] = ACTIONS(7140), + [anon_sym__Atomic] = ACTIONS(7140), + [anon_sym__Noreturn] = ACTIONS(7140), + [anon_sym_noreturn] = ACTIONS(7140), + [anon_sym__Nonnull] = ACTIONS(7140), + [anon_sym_mutable] = ACTIONS(7140), + [anon_sym_constinit] = ACTIONS(7140), + [anon_sym_consteval] = ACTIONS(7140), + [anon_sym_alignas] = ACTIONS(7140), + [anon_sym__Alignas] = ACTIONS(7140), + [anon_sym_QMARK] = ACTIONS(7142), + [anon_sym_STAR_EQ] = ACTIONS(7142), + [anon_sym_SLASH_EQ] = ACTIONS(7142), + [anon_sym_PERCENT_EQ] = ACTIONS(7142), + [anon_sym_PLUS_EQ] = ACTIONS(7142), + [anon_sym_DASH_EQ] = ACTIONS(7142), + [anon_sym_LT_LT_EQ] = ACTIONS(7142), + [anon_sym_GT_GT_EQ] = ACTIONS(7142), + [anon_sym_AMP_EQ] = ACTIONS(7142), + [anon_sym_CARET_EQ] = ACTIONS(7142), + [anon_sym_PIPE_EQ] = ACTIONS(7142), + [anon_sym_and_eq] = ACTIONS(7140), + [anon_sym_or_eq] = ACTIONS(7140), + [anon_sym_xor_eq] = ACTIONS(7140), + [anon_sym_LT_EQ_GT] = ACTIONS(7142), + [anon_sym_or] = ACTIONS(7140), + [anon_sym_and] = ACTIONS(7140), + [anon_sym_bitor] = ACTIONS(7140), + [anon_sym_xor] = ACTIONS(7140), + [anon_sym_bitand] = ACTIONS(7140), + [anon_sym_not_eq] = ACTIONS(7140), + [anon_sym_DASH_DASH] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(7142), + [anon_sym_asm] = ACTIONS(7140), + [anon_sym___asm__] = ACTIONS(7140), + [anon_sym___asm] = ACTIONS(7140), + [anon_sym_DOT] = ACTIONS(7140), + [anon_sym_DOT_STAR] = ACTIONS(7142), + [anon_sym_DASH_GT] = ACTIONS(7142), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7140), + [anon_sym_override] = ACTIONS(7140), + [anon_sym_noexcept] = ACTIONS(7140), + [anon_sym_throw] = ACTIONS(7140), + [anon_sym_requires] = ACTIONS(7140), + [anon_sym_COLON_RBRACK] = ACTIONS(7142), }, - [STATE(2060)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2725), - [sym_ms_pointer_modifier] = STATE(2062), - [sym__abstract_declarator] = STATE(4693), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2329), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1980), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2329), - [aux_sym_pointer_declarator_repeat1] = STATE(2062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(7138), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6861), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), + [STATE(2055)] = { + [sym_identifier] = ACTIONS(7144), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_RPAREN] = ACTIONS(7146), + [aux_sym_preproc_if_token2] = ACTIONS(7146), + [aux_sym_preproc_else_token1] = ACTIONS(7146), + [aux_sym_preproc_elif_token1] = ACTIONS(7144), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7146), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym_SEMI] = ACTIONS(7146), [anon_sym___extension__] = ACTIONS(7144), - [sym_ms_restrict_modifier] = ACTIONS(7146), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7148), - [sym_ms_signed_ptr_modifier] = ACTIONS(7148), - [anon_sym__unaligned] = ACTIONS(7150), - [anon_sym___unaligned] = ACTIONS(7150), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(7154), + [anon_sym___attribute__] = ACTIONS(7144), + [anon_sym___attribute] = ACTIONS(7144), + [anon_sym_COLON] = ACTIONS(7144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7146), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7146), + [anon_sym_RBRACE] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7144), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), [anon_sym_constexpr] = ACTIONS(7144), [anon_sym_volatile] = ACTIONS(7144), [anon_sym_restrict] = ACTIONS(7144), @@ -319206,1157 +318651,1441 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(7144), [anon_sym_constinit] = ACTIONS(7144), [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6859), - [anon_sym_or_eq] = ACTIONS(6859), - [anon_sym_xor_eq] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_GT2] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), + [anon_sym_alignas] = ACTIONS(7144), + [anon_sym__Alignas] = ACTIONS(7144), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7146), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_and_eq] = ACTIONS(7144), + [anon_sym_or_eq] = ACTIONS(7144), + [anon_sym_xor_eq] = ACTIONS(7144), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7144), + [anon_sym_and] = ACTIONS(7144), + [anon_sym_bitor] = ACTIONS(7144), + [anon_sym_xor] = ACTIONS(7144), + [anon_sym_bitand] = ACTIONS(7144), + [anon_sym_not_eq] = ACTIONS(7144), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_asm] = ACTIONS(7144), + [anon_sym___asm__] = ACTIONS(7144), + [anon_sym___asm] = ACTIONS(7144), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7146), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7144), + [anon_sym_override] = ACTIONS(7144), + [anon_sym_noexcept] = ACTIONS(7144), + [anon_sym_throw] = ACTIONS(7144), + [anon_sym_requires] = ACTIONS(7144), + [anon_sym_COLON_RBRACK] = ACTIONS(7146), + }, + [STATE(2056)] = { + [sym_identifier] = ACTIONS(7113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_RPAREN] = ACTIONS(7115), + [aux_sym_preproc_if_token2] = ACTIONS(7115), + [aux_sym_preproc_else_token1] = ACTIONS(7115), + [aux_sym_preproc_elif_token1] = ACTIONS(7113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym_SEMI] = ACTIONS(7115), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym___attribute__] = ACTIONS(7113), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_COLON] = ACTIONS(7113), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7115), + [anon_sym_LBRACE] = ACTIONS(7115), + [anon_sym_RBRACE] = ACTIONS(7115), + [anon_sym_signed] = ACTIONS(7113), + [anon_sym_unsigned] = ACTIONS(7113), + [anon_sym_long] = ACTIONS(7113), + [anon_sym_short] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(7115), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [sym_primitive_type] = ACTIONS(7113), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_and_eq] = ACTIONS(7113), + [anon_sym_or_eq] = ACTIONS(7113), + [anon_sym_xor_eq] = ACTIONS(7113), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7113), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7113), + [anon_sym_not_eq] = ACTIONS(7113), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7115), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7113), + [anon_sym_override] = ACTIONS(7113), + [anon_sym_requires] = ACTIONS(7113), + [anon_sym_COLON_RBRACK] = ACTIONS(7115), + }, + [STATE(2057)] = { + [sym_identifier] = ACTIONS(6590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_RPAREN] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6590), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6590), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6590), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6590), + [anon_sym_GT_GT] = ACTIONS(6590), + [anon_sym___extension__] = ACTIONS(6590), + [anon_sym_virtual] = ACTIONS(6590), + [anon_sym_extern] = ACTIONS(6590), + [anon_sym___attribute__] = ACTIONS(6590), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6592), + [anon_sym___declspec] = ACTIONS(6590), + [anon_sym___based] = ACTIONS(6590), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6590), + [anon_sym_static] = ACTIONS(6590), + [anon_sym_EQ] = ACTIONS(6590), + [anon_sym_register] = ACTIONS(6590), + [anon_sym_inline] = ACTIONS(6590), + [anon_sym___inline] = ACTIONS(6590), + [anon_sym___inline__] = ACTIONS(6590), + [anon_sym___forceinline] = ACTIONS(6590), + [anon_sym_thread_local] = ACTIONS(6590), + [anon_sym___thread] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6590), + [anon_sym_volatile] = ACTIONS(6590), + [anon_sym_restrict] = ACTIONS(6590), + [anon_sym___restrict__] = ACTIONS(6590), + [anon_sym__Atomic] = ACTIONS(6590), + [anon_sym__Noreturn] = ACTIONS(6590), + [anon_sym_noreturn] = ACTIONS(6590), + [anon_sym__Nonnull] = ACTIONS(6590), + [anon_sym_mutable] = ACTIONS(6590), + [anon_sym_constinit] = ACTIONS(6590), + [anon_sym_consteval] = ACTIONS(6590), + [anon_sym_alignas] = ACTIONS(6590), + [anon_sym__Alignas] = ACTIONS(6590), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_STAR_EQ] = ACTIONS(6592), + [anon_sym_SLASH_EQ] = ACTIONS(6592), + [anon_sym_PERCENT_EQ] = ACTIONS(6592), + [anon_sym_PLUS_EQ] = ACTIONS(6592), + [anon_sym_DASH_EQ] = ACTIONS(6592), + [anon_sym_LT_LT_EQ] = ACTIONS(6592), + [anon_sym_GT_GT_EQ] = ACTIONS(6592), + [anon_sym_AMP_EQ] = ACTIONS(6592), + [anon_sym_CARET_EQ] = ACTIONS(6592), + [anon_sym_PIPE_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6590), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6590), + [anon_sym_not_eq] = ACTIONS(6590), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6590), + [anon_sym_decltype] = ACTIONS(6590), + [anon_sym_template] = ACTIONS(6590), + [anon_sym_operator] = ACTIONS(6590), + [anon_sym_DASH_GT_STAR] = ACTIONS(6592), + [anon_sym_LBRACK_COLON] = ACTIONS(6592), + }, + [STATE(2058)] = { + [sym_identifier] = ACTIONS(7148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7150), + [anon_sym_COMMA] = ACTIONS(7150), + [anon_sym_RPAREN] = ACTIONS(7150), + [aux_sym_preproc_if_token2] = ACTIONS(7150), + [aux_sym_preproc_else_token1] = ACTIONS(7150), + [aux_sym_preproc_elif_token1] = ACTIONS(7148), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7150), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7150), + [anon_sym_LPAREN2] = ACTIONS(7150), + [anon_sym_DASH] = ACTIONS(7148), + [anon_sym_PLUS] = ACTIONS(7148), + [anon_sym_STAR] = ACTIONS(7148), + [anon_sym_SLASH] = ACTIONS(7148), + [anon_sym_PERCENT] = ACTIONS(7148), + [anon_sym_PIPE_PIPE] = ACTIONS(7150), + [anon_sym_AMP_AMP] = ACTIONS(7150), + [anon_sym_PIPE] = ACTIONS(7148), + [anon_sym_CARET] = ACTIONS(7148), + [anon_sym_AMP] = ACTIONS(7148), + [anon_sym_EQ_EQ] = ACTIONS(7150), + [anon_sym_BANG_EQ] = ACTIONS(7150), + [anon_sym_GT] = ACTIONS(7148), + [anon_sym_GT_EQ] = ACTIONS(7150), + [anon_sym_LT_EQ] = ACTIONS(7148), + [anon_sym_LT] = ACTIONS(7148), + [anon_sym_LT_LT] = ACTIONS(7148), + [anon_sym_GT_GT] = ACTIONS(7148), + [anon_sym_SEMI] = ACTIONS(7150), + [anon_sym___extension__] = ACTIONS(7148), + [anon_sym___attribute__] = ACTIONS(7148), + [anon_sym___attribute] = ACTIONS(7148), + [anon_sym_COLON] = ACTIONS(7148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7150), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7150), + [anon_sym_RBRACE] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7148), + [anon_sym_EQ] = ACTIONS(7148), + [anon_sym_const] = ACTIONS(7148), + [anon_sym_constexpr] = ACTIONS(7148), + [anon_sym_volatile] = ACTIONS(7148), + [anon_sym_restrict] = ACTIONS(7148), + [anon_sym___restrict__] = ACTIONS(7148), + [anon_sym__Atomic] = ACTIONS(7148), + [anon_sym__Noreturn] = ACTIONS(7148), + [anon_sym_noreturn] = ACTIONS(7148), + [anon_sym__Nonnull] = ACTIONS(7148), + [anon_sym_mutable] = ACTIONS(7148), + [anon_sym_constinit] = ACTIONS(7148), + [anon_sym_consteval] = ACTIONS(7148), + [anon_sym_alignas] = ACTIONS(7148), + [anon_sym__Alignas] = ACTIONS(7148), + [anon_sym_QMARK] = ACTIONS(7150), + [anon_sym_STAR_EQ] = ACTIONS(7150), + [anon_sym_SLASH_EQ] = ACTIONS(7150), + [anon_sym_PERCENT_EQ] = ACTIONS(7150), + [anon_sym_PLUS_EQ] = ACTIONS(7150), + [anon_sym_DASH_EQ] = ACTIONS(7150), + [anon_sym_LT_LT_EQ] = ACTIONS(7150), + [anon_sym_GT_GT_EQ] = ACTIONS(7150), + [anon_sym_AMP_EQ] = ACTIONS(7150), + [anon_sym_CARET_EQ] = ACTIONS(7150), + [anon_sym_PIPE_EQ] = ACTIONS(7150), + [anon_sym_and_eq] = ACTIONS(7148), + [anon_sym_or_eq] = ACTIONS(7148), + [anon_sym_xor_eq] = ACTIONS(7148), + [anon_sym_LT_EQ_GT] = ACTIONS(7150), + [anon_sym_or] = ACTIONS(7148), + [anon_sym_and] = ACTIONS(7148), + [anon_sym_bitor] = ACTIONS(7148), + [anon_sym_xor] = ACTIONS(7148), + [anon_sym_bitand] = ACTIONS(7148), + [anon_sym_not_eq] = ACTIONS(7148), + [anon_sym_DASH_DASH] = ACTIONS(7150), + [anon_sym_PLUS_PLUS] = ACTIONS(7150), + [anon_sym_asm] = ACTIONS(7148), + [anon_sym___asm__] = ACTIONS(7148), + [anon_sym___asm] = ACTIONS(7148), + [anon_sym_DOT] = ACTIONS(7148), + [anon_sym_DOT_STAR] = ACTIONS(7150), + [anon_sym_DASH_GT] = ACTIONS(7150), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7148), + [anon_sym_override] = ACTIONS(7148), + [anon_sym_noexcept] = ACTIONS(7148), + [anon_sym_throw] = ACTIONS(7148), + [anon_sym_requires] = ACTIONS(7148), + [anon_sym_COLON_RBRACK] = ACTIONS(7150), + }, + [STATE(2059)] = { + [sym_identifier] = ACTIONS(6586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_RPAREN] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_TILDE] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6586), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6586), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6586), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6586), + [anon_sym_GT_GT] = ACTIONS(6586), + [anon_sym___extension__] = ACTIONS(6586), + [anon_sym_virtual] = ACTIONS(6586), + [anon_sym_extern] = ACTIONS(6586), + [anon_sym___attribute__] = ACTIONS(6586), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6588), + [anon_sym___declspec] = ACTIONS(6586), + [anon_sym___based] = ACTIONS(6586), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6586), + [anon_sym_static] = ACTIONS(6586), + [anon_sym_EQ] = ACTIONS(6586), + [anon_sym_register] = ACTIONS(6586), + [anon_sym_inline] = ACTIONS(6586), + [anon_sym___inline] = ACTIONS(6586), + [anon_sym___inline__] = ACTIONS(6586), + [anon_sym___forceinline] = ACTIONS(6586), + [anon_sym_thread_local] = ACTIONS(6586), + [anon_sym___thread] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6586), + [anon_sym_volatile] = ACTIONS(6586), + [anon_sym_restrict] = ACTIONS(6586), + [anon_sym___restrict__] = ACTIONS(6586), + [anon_sym__Atomic] = ACTIONS(6586), + [anon_sym__Noreturn] = ACTIONS(6586), + [anon_sym_noreturn] = ACTIONS(6586), + [anon_sym__Nonnull] = ACTIONS(6586), + [anon_sym_mutable] = ACTIONS(6586), + [anon_sym_constinit] = ACTIONS(6586), + [anon_sym_consteval] = ACTIONS(6586), + [anon_sym_alignas] = ACTIONS(6586), + [anon_sym__Alignas] = ACTIONS(6586), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_STAR_EQ] = ACTIONS(6588), + [anon_sym_SLASH_EQ] = ACTIONS(6588), + [anon_sym_PERCENT_EQ] = ACTIONS(6588), + [anon_sym_PLUS_EQ] = ACTIONS(6588), + [anon_sym_DASH_EQ] = ACTIONS(6588), + [anon_sym_LT_LT_EQ] = ACTIONS(6588), + [anon_sym_GT_GT_EQ] = ACTIONS(6588), + [anon_sym_AMP_EQ] = ACTIONS(6588), + [anon_sym_CARET_EQ] = ACTIONS(6588), + [anon_sym_PIPE_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6586), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6586), + [anon_sym_not_eq] = ACTIONS(6586), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6586), + [anon_sym_decltype] = ACTIONS(6586), + [anon_sym_template] = ACTIONS(6586), + [anon_sym_operator] = ACTIONS(6586), + [anon_sym_DASH_GT_STAR] = ACTIONS(6588), + [anon_sym_LBRACK_COLON] = ACTIONS(6588), + }, + [STATE(2060)] = { + [sym_identifier] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [aux_sym_preproc_if_token2] = ACTIONS(3116), + [aux_sym_preproc_else_token1] = ACTIONS(3116), + [aux_sym_preproc_elif_token1] = ACTIONS(3126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3116), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_and_eq] = ACTIONS(3126), + [anon_sym_or_eq] = ACTIONS(3126), + [anon_sym_xor_eq] = ACTIONS(3126), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3126), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3126), + [anon_sym_not_eq] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3126), + [anon_sym___asm__] = ACTIONS(3126), + [anon_sym___asm] = ACTIONS(3126), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_noexcept] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [anon_sym_COLON_RBRACK] = ACTIONS(3116), }, [STATE(2061)] = { - [sym_identifier] = ACTIONS(6632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_RPAREN] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_TILDE] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6632), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6632), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6632), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6632), - [anon_sym_GT_GT] = ACTIONS(6632), - [anon_sym___extension__] = ACTIONS(6632), - [anon_sym_virtual] = ACTIONS(6632), - [anon_sym_extern] = ACTIONS(6632), - [anon_sym___attribute__] = ACTIONS(6632), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), - [anon_sym___declspec] = ACTIONS(6632), - [anon_sym___based] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6632), - [anon_sym_static] = ACTIONS(6632), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_register] = ACTIONS(6632), - [anon_sym_inline] = ACTIONS(6632), - [anon_sym___inline] = ACTIONS(6632), - [anon_sym___inline__] = ACTIONS(6632), - [anon_sym___forceinline] = ACTIONS(6632), - [anon_sym_thread_local] = ACTIONS(6632), - [anon_sym___thread] = ACTIONS(6632), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6632), - [anon_sym_volatile] = ACTIONS(6632), - [anon_sym_restrict] = ACTIONS(6632), - [anon_sym___restrict__] = ACTIONS(6632), - [anon_sym__Atomic] = ACTIONS(6632), - [anon_sym__Noreturn] = ACTIONS(6632), - [anon_sym_noreturn] = ACTIONS(6632), - [anon_sym__Nonnull] = ACTIONS(6632), - [anon_sym_mutable] = ACTIONS(6632), - [anon_sym_constinit] = ACTIONS(6632), - [anon_sym_consteval] = ACTIONS(6632), - [anon_sym_alignas] = ACTIONS(6632), - [anon_sym__Alignas] = ACTIONS(6632), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_STAR_EQ] = ACTIONS(6634), - [anon_sym_SLASH_EQ] = ACTIONS(6634), - [anon_sym_PERCENT_EQ] = ACTIONS(6634), - [anon_sym_PLUS_EQ] = ACTIONS(6634), - [anon_sym_DASH_EQ] = ACTIONS(6634), - [anon_sym_LT_LT_EQ] = ACTIONS(6634), - [anon_sym_GT_GT_EQ] = ACTIONS(6634), - [anon_sym_AMP_EQ] = ACTIONS(6634), - [anon_sym_CARET_EQ] = ACTIONS(6634), - [anon_sym_PIPE_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6632), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6632), - [anon_sym_not_eq] = ACTIONS(6632), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6632), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6632), - [anon_sym_decltype] = ACTIONS(6632), - [anon_sym_template] = ACTIONS(6632), - [anon_sym_operator] = ACTIONS(6632), - [anon_sym_DASH_GT_STAR] = ACTIONS(6634), - [anon_sym_LBRACK_COLON] = ACTIONS(6634), + [sym_identifier] = ACTIONS(7152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7154), + [anon_sym_COMMA] = ACTIONS(7154), + [anon_sym_RPAREN] = ACTIONS(7154), + [aux_sym_preproc_if_token2] = ACTIONS(7154), + [aux_sym_preproc_else_token1] = ACTIONS(7154), + [aux_sym_preproc_elif_token1] = ACTIONS(7152), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7154), + [anon_sym_LPAREN2] = ACTIONS(7154), + [anon_sym_DASH] = ACTIONS(7152), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7152), + [anon_sym_PIPE_PIPE] = ACTIONS(7154), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE] = ACTIONS(7152), + [anon_sym_CARET] = ACTIONS(7152), + [anon_sym_AMP] = ACTIONS(7152), + [anon_sym_EQ_EQ] = ACTIONS(7154), + [anon_sym_BANG_EQ] = ACTIONS(7154), + [anon_sym_GT] = ACTIONS(7152), + [anon_sym_GT_EQ] = ACTIONS(7154), + [anon_sym_LT_EQ] = ACTIONS(7152), + [anon_sym_LT] = ACTIONS(7152), + [anon_sym_LT_LT] = ACTIONS(7152), + [anon_sym_GT_GT] = ACTIONS(7152), + [anon_sym_SEMI] = ACTIONS(7154), + [anon_sym___extension__] = ACTIONS(7152), + [anon_sym___attribute__] = ACTIONS(7152), + [anon_sym___attribute] = ACTIONS(7152), + [anon_sym_COLON] = ACTIONS(7152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7154), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7154), + [anon_sym_RBRACE] = ACTIONS(7154), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7152), + [anon_sym_const] = ACTIONS(7152), + [anon_sym_constexpr] = ACTIONS(7152), + [anon_sym_volatile] = ACTIONS(7152), + [anon_sym_restrict] = ACTIONS(7152), + [anon_sym___restrict__] = ACTIONS(7152), + [anon_sym__Atomic] = ACTIONS(7152), + [anon_sym__Noreturn] = ACTIONS(7152), + [anon_sym_noreturn] = ACTIONS(7152), + [anon_sym__Nonnull] = ACTIONS(7152), + [anon_sym_mutable] = ACTIONS(7152), + [anon_sym_constinit] = ACTIONS(7152), + [anon_sym_consteval] = ACTIONS(7152), + [anon_sym_alignas] = ACTIONS(7152), + [anon_sym__Alignas] = ACTIONS(7152), + [anon_sym_QMARK] = ACTIONS(7154), + [anon_sym_STAR_EQ] = ACTIONS(7154), + [anon_sym_SLASH_EQ] = ACTIONS(7154), + [anon_sym_PERCENT_EQ] = ACTIONS(7154), + [anon_sym_PLUS_EQ] = ACTIONS(7154), + [anon_sym_DASH_EQ] = ACTIONS(7154), + [anon_sym_LT_LT_EQ] = ACTIONS(7154), + [anon_sym_GT_GT_EQ] = ACTIONS(7154), + [anon_sym_AMP_EQ] = ACTIONS(7154), + [anon_sym_CARET_EQ] = ACTIONS(7154), + [anon_sym_PIPE_EQ] = ACTIONS(7154), + [anon_sym_and_eq] = ACTIONS(7152), + [anon_sym_or_eq] = ACTIONS(7152), + [anon_sym_xor_eq] = ACTIONS(7152), + [anon_sym_LT_EQ_GT] = ACTIONS(7154), + [anon_sym_or] = ACTIONS(7152), + [anon_sym_and] = ACTIONS(7152), + [anon_sym_bitor] = ACTIONS(7152), + [anon_sym_xor] = ACTIONS(7152), + [anon_sym_bitand] = ACTIONS(7152), + [anon_sym_not_eq] = ACTIONS(7152), + [anon_sym_DASH_DASH] = ACTIONS(7154), + [anon_sym_PLUS_PLUS] = ACTIONS(7154), + [anon_sym_asm] = ACTIONS(7152), + [anon_sym___asm__] = ACTIONS(7152), + [anon_sym___asm] = ACTIONS(7152), + [anon_sym_DOT] = ACTIONS(7152), + [anon_sym_DOT_STAR] = ACTIONS(7154), + [anon_sym_DASH_GT] = ACTIONS(7154), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7152), + [anon_sym_override] = ACTIONS(7152), + [anon_sym_noexcept] = ACTIONS(7152), + [anon_sym_throw] = ACTIONS(7152), + [anon_sym_requires] = ACTIONS(7152), + [anon_sym_COLON_RBRACK] = ACTIONS(7154), }, [STATE(2062)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2725), - [sym_ms_pointer_modifier] = STATE(2438), - [sym__abstract_declarator] = STATE(4716), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2331), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1980), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2331), - [aux_sym_pointer_declarator_repeat1] = STATE(2438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7138), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6821), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7144), - [sym_ms_restrict_modifier] = ACTIONS(7146), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7148), - [sym_ms_signed_ptr_modifier] = ACTIONS(7148), - [anon_sym__unaligned] = ACTIONS(7150), - [anon_sym___unaligned] = ACTIONS(7150), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6821), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_GT2] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RPAREN] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6658), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6658), + [anon_sym_GT_GT] = ACTIONS(6658), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym_virtual] = ACTIONS(6649), + [anon_sym_extern] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6656), + [anon_sym___declspec] = ACTIONS(6649), + [anon_sym___based] = ACTIONS(6649), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6660), + [anon_sym_static] = ACTIONS(6649), + [anon_sym_EQ] = ACTIONS(6660), + [anon_sym_register] = ACTIONS(6649), + [anon_sym_inline] = ACTIONS(6649), + [anon_sym___inline] = ACTIONS(6649), + [anon_sym___inline__] = ACTIONS(6649), + [anon_sym___forceinline] = ACTIONS(6649), + [anon_sym_thread_local] = ACTIONS(6649), + [anon_sym___thread] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6658), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6658), + [anon_sym_not_eq] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_template] = ACTIONS(6649), + [anon_sym_operator] = ACTIONS(6649), + [anon_sym_DASH_GT_STAR] = ACTIONS(6651), + [anon_sym_LBRACK_COLON] = ACTIONS(6656), }, [STATE(2063)] = { - [sym_identifier] = ACTIONS(7158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [aux_sym_preproc_if_token2] = ACTIONS(7160), - [aux_sym_preproc_else_token1] = ACTIONS(7160), - [aux_sym_preproc_elif_token1] = ACTIONS(7158), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym_SEMI] = ACTIONS(7160), - [anon_sym___extension__] = ACTIONS(7158), - [anon_sym___attribute__] = ACTIONS(7158), - [anon_sym___attribute] = ACTIONS(7158), - [anon_sym_COLON] = ACTIONS(7158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7160), - [anon_sym_RBRACE] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7158), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7158), - [anon_sym_volatile] = ACTIONS(7158), - [anon_sym_restrict] = ACTIONS(7158), - [anon_sym___restrict__] = ACTIONS(7158), - [anon_sym__Atomic] = ACTIONS(7158), - [anon_sym__Noreturn] = ACTIONS(7158), - [anon_sym_noreturn] = ACTIONS(7158), - [anon_sym__Nonnull] = ACTIONS(7158), - [anon_sym_mutable] = ACTIONS(7158), - [anon_sym_constinit] = ACTIONS(7158), - [anon_sym_consteval] = ACTIONS(7158), - [anon_sym_alignas] = ACTIONS(7158), - [anon_sym__Alignas] = ACTIONS(7158), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_and_eq] = ACTIONS(7158), - [anon_sym_or_eq] = ACTIONS(7158), - [anon_sym_xor_eq] = ACTIONS(7158), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7158), - [anon_sym_and] = ACTIONS(7158), - [anon_sym_bitor] = ACTIONS(7158), - [anon_sym_xor] = ACTIONS(7158), - [anon_sym_bitand] = ACTIONS(7158), - [anon_sym_not_eq] = ACTIONS(7158), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_asm] = ACTIONS(7158), - [anon_sym___asm__] = ACTIONS(7158), - [anon_sym___asm] = ACTIONS(7158), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7160), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7158), - [anon_sym_override] = ACTIONS(7158), - [anon_sym_noexcept] = ACTIONS(7158), - [anon_sym_throw] = ACTIONS(7158), - [anon_sym_requires] = ACTIONS(7158), - [anon_sym_COLON_RBRACK] = ACTIONS(7160), + [sym_identifier] = ACTIONS(6606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_TILDE] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6606), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym___extension__] = ACTIONS(6606), + [anon_sym_virtual] = ACTIONS(6606), + [anon_sym_extern] = ACTIONS(6606), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6608), + [anon_sym___declspec] = ACTIONS(6606), + [anon_sym___based] = ACTIONS(6606), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6606), + [anon_sym_static] = ACTIONS(6606), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_register] = ACTIONS(6606), + [anon_sym_inline] = ACTIONS(6606), + [anon_sym___inline] = ACTIONS(6606), + [anon_sym___inline__] = ACTIONS(6606), + [anon_sym___forceinline] = ACTIONS(6606), + [anon_sym_thread_local] = ACTIONS(6606), + [anon_sym___thread] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6606), + [anon_sym_volatile] = ACTIONS(6606), + [anon_sym_restrict] = ACTIONS(6606), + [anon_sym___restrict__] = ACTIONS(6606), + [anon_sym__Atomic] = ACTIONS(6606), + [anon_sym__Noreturn] = ACTIONS(6606), + [anon_sym_noreturn] = ACTIONS(6606), + [anon_sym__Nonnull] = ACTIONS(6606), + [anon_sym_mutable] = ACTIONS(6606), + [anon_sym_constinit] = ACTIONS(6606), + [anon_sym_consteval] = ACTIONS(6606), + [anon_sym_alignas] = ACTIONS(6606), + [anon_sym__Alignas] = ACTIONS(6606), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_STAR_EQ] = ACTIONS(6608), + [anon_sym_SLASH_EQ] = ACTIONS(6608), + [anon_sym_PERCENT_EQ] = ACTIONS(6608), + [anon_sym_PLUS_EQ] = ACTIONS(6608), + [anon_sym_DASH_EQ] = ACTIONS(6608), + [anon_sym_LT_LT_EQ] = ACTIONS(6608), + [anon_sym_GT_GT_EQ] = ACTIONS(6608), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6606), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6606), + [anon_sym_not_eq] = ACTIONS(6606), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6606), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6606), + [anon_sym_decltype] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(6606), + [anon_sym_operator] = ACTIONS(6606), + [anon_sym_DASH_GT_STAR] = ACTIONS(6608), + [anon_sym_LBRACK_COLON] = ACTIONS(6608), }, [STATE(2064)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2683), - [sym_ms_pointer_modifier] = STATE(2056), - [sym__abstract_declarator] = STATE(4710), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2338), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2338), - [aux_sym_pointer_declarator_repeat1] = STATE(2056), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(7116), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(7120), - [sym_ms_restrict_modifier] = ACTIONS(7122), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7124), - [sym_ms_signed_ptr_modifier] = ACTIONS(7124), - [anon_sym__unaligned] = ACTIONS(7126), - [anon_sym___unaligned] = ACTIONS(7126), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(6859), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6859), - [anon_sym_or_eq] = ACTIONS(6859), - [anon_sym_xor_eq] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), + [sym_identifier] = ACTIONS(6610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_TILDE] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym_virtual] = ACTIONS(6610), + [anon_sym_extern] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6612), + [anon_sym___declspec] = ACTIONS(6610), + [anon_sym___based] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_static] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_register] = ACTIONS(6610), + [anon_sym_inline] = ACTIONS(6610), + [anon_sym___inline] = ACTIONS(6610), + [anon_sym___inline__] = ACTIONS(6610), + [anon_sym___forceinline] = ACTIONS(6610), + [anon_sym_thread_local] = ACTIONS(6610), + [anon_sym___thread] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_STAR_EQ] = ACTIONS(6612), + [anon_sym_SLASH_EQ] = ACTIONS(6612), + [anon_sym_PERCENT_EQ] = ACTIONS(6612), + [anon_sym_PLUS_EQ] = ACTIONS(6612), + [anon_sym_DASH_EQ] = ACTIONS(6612), + [anon_sym_LT_LT_EQ] = ACTIONS(6612), + [anon_sym_GT_GT_EQ] = ACTIONS(6612), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(6610), + [anon_sym_operator] = ACTIONS(6610), + [anon_sym_DASH_GT_STAR] = ACTIONS(6612), + [anon_sym_LBRACK_COLON] = ACTIONS(6612), }, [STATE(2065)] = { - [sym_identifier] = ACTIONS(6612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_RPAREN] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_TILDE] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6612), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6612), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6612), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6612), - [anon_sym_GT_GT] = ACTIONS(6612), - [anon_sym___extension__] = ACTIONS(6612), - [anon_sym_virtual] = ACTIONS(6612), - [anon_sym_extern] = ACTIONS(6612), - [anon_sym___attribute__] = ACTIONS(6612), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), - [anon_sym___declspec] = ACTIONS(6612), - [anon_sym___based] = ACTIONS(6612), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6612), - [anon_sym_static] = ACTIONS(6612), - [anon_sym_EQ] = ACTIONS(6612), - [anon_sym_register] = ACTIONS(6612), - [anon_sym_inline] = ACTIONS(6612), - [anon_sym___inline] = ACTIONS(6612), - [anon_sym___inline__] = ACTIONS(6612), - [anon_sym___forceinline] = ACTIONS(6612), - [anon_sym_thread_local] = ACTIONS(6612), - [anon_sym___thread] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6612), - [anon_sym_volatile] = ACTIONS(6612), - [anon_sym_restrict] = ACTIONS(6612), - [anon_sym___restrict__] = ACTIONS(6612), - [anon_sym__Atomic] = ACTIONS(6612), - [anon_sym__Noreturn] = ACTIONS(6612), - [anon_sym_noreturn] = ACTIONS(6612), - [anon_sym__Nonnull] = ACTIONS(6612), - [anon_sym_mutable] = ACTIONS(6612), - [anon_sym_constinit] = ACTIONS(6612), - [anon_sym_consteval] = ACTIONS(6612), - [anon_sym_alignas] = ACTIONS(6612), - [anon_sym__Alignas] = ACTIONS(6612), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_STAR_EQ] = ACTIONS(6614), - [anon_sym_SLASH_EQ] = ACTIONS(6614), - [anon_sym_PERCENT_EQ] = ACTIONS(6614), - [anon_sym_PLUS_EQ] = ACTIONS(6614), - [anon_sym_DASH_EQ] = ACTIONS(6614), - [anon_sym_LT_LT_EQ] = ACTIONS(6614), - [anon_sym_GT_GT_EQ] = ACTIONS(6614), - [anon_sym_AMP_EQ] = ACTIONS(6614), - [anon_sym_CARET_EQ] = ACTIONS(6614), - [anon_sym_PIPE_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6612), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6612), - [anon_sym_not_eq] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_identifier] = ACTIONS(7156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7158), + [anon_sym_COMMA] = ACTIONS(7158), + [anon_sym_RPAREN] = ACTIONS(7158), + [aux_sym_preproc_if_token2] = ACTIONS(7158), + [aux_sym_preproc_else_token1] = ACTIONS(7158), + [aux_sym_preproc_elif_token1] = ACTIONS(7156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7158), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7158), + [anon_sym_LPAREN2] = ACTIONS(7158), + [anon_sym_DASH] = ACTIONS(7156), + [anon_sym_PLUS] = ACTIONS(7156), + [anon_sym_STAR] = ACTIONS(7156), + [anon_sym_SLASH] = ACTIONS(7156), + [anon_sym_PERCENT] = ACTIONS(7156), + [anon_sym_PIPE_PIPE] = ACTIONS(7158), + [anon_sym_AMP_AMP] = ACTIONS(7158), + [anon_sym_PIPE] = ACTIONS(7156), + [anon_sym_CARET] = ACTIONS(7156), + [anon_sym_AMP] = ACTIONS(7156), + [anon_sym_EQ_EQ] = ACTIONS(7158), + [anon_sym_BANG_EQ] = ACTIONS(7158), + [anon_sym_GT] = ACTIONS(7156), + [anon_sym_GT_EQ] = ACTIONS(7158), + [anon_sym_LT_EQ] = ACTIONS(7156), + [anon_sym_LT] = ACTIONS(7156), + [anon_sym_LT_LT] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7156), + [anon_sym_SEMI] = ACTIONS(7158), + [anon_sym___extension__] = ACTIONS(7156), + [anon_sym___attribute__] = ACTIONS(7156), + [anon_sym___attribute] = ACTIONS(7156), + [anon_sym_COLON] = ACTIONS(7156), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7158), + [sym_ms_restrict_modifier] = ACTIONS(7156), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7156), + [sym_ms_signed_ptr_modifier] = ACTIONS(7156), + [anon_sym__unaligned] = ACTIONS(7156), + [anon_sym___unaligned] = ACTIONS(7156), + [anon_sym_RBRACE] = ACTIONS(7158), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(7156), + [anon_sym_const] = ACTIONS(7156), + [anon_sym_constexpr] = ACTIONS(7156), + [anon_sym_volatile] = ACTIONS(7156), + [anon_sym_restrict] = ACTIONS(7156), + [anon_sym___restrict__] = ACTIONS(7156), + [anon_sym__Atomic] = ACTIONS(7156), + [anon_sym__Noreturn] = ACTIONS(7156), + [anon_sym_noreturn] = ACTIONS(7156), + [anon_sym__Nonnull] = ACTIONS(7156), + [anon_sym_mutable] = ACTIONS(7156), + [anon_sym_constinit] = ACTIONS(7156), + [anon_sym_consteval] = ACTIONS(7156), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7158), + [anon_sym_STAR_EQ] = ACTIONS(7158), + [anon_sym_SLASH_EQ] = ACTIONS(7158), + [anon_sym_PERCENT_EQ] = ACTIONS(7158), + [anon_sym_PLUS_EQ] = ACTIONS(7158), + [anon_sym_DASH_EQ] = ACTIONS(7158), + [anon_sym_LT_LT_EQ] = ACTIONS(7158), + [anon_sym_GT_GT_EQ] = ACTIONS(7158), + [anon_sym_AMP_EQ] = ACTIONS(7158), + [anon_sym_CARET_EQ] = ACTIONS(7158), + [anon_sym_PIPE_EQ] = ACTIONS(7158), + [anon_sym_and_eq] = ACTIONS(7156), + [anon_sym_or_eq] = ACTIONS(7156), + [anon_sym_xor_eq] = ACTIONS(7156), + [anon_sym_LT_EQ_GT] = ACTIONS(7158), + [anon_sym_or] = ACTIONS(7156), + [anon_sym_and] = ACTIONS(7156), + [anon_sym_bitor] = ACTIONS(7156), + [anon_sym_xor] = ACTIONS(7156), + [anon_sym_bitand] = ACTIONS(7156), + [anon_sym_not_eq] = ACTIONS(7156), + [anon_sym_DASH_DASH] = ACTIONS(7158), + [anon_sym_PLUS_PLUS] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7156), + [anon_sym_DOT_STAR] = ACTIONS(7158), + [anon_sym_DASH_GT] = ACTIONS(7158), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6612), - [anon_sym_decltype] = ACTIONS(6612), - [anon_sym_template] = ACTIONS(6612), - [anon_sym_operator] = ACTIONS(6612), - [anon_sym_DASH_GT_STAR] = ACTIONS(6614), - [anon_sym_LBRACK_COLON] = ACTIONS(6614), + [anon_sym_final] = ACTIONS(7156), + [anon_sym_override] = ACTIONS(7156), + [anon_sym_requires] = ACTIONS(7156), + [anon_sym_COLON_RBRACK] = ACTIONS(7158), }, [STATE(2066)] = { - [sym_identifier] = ACTIONS(6624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_RPAREN] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_TILDE] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6624), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6624), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6624), - [anon_sym_GT_GT] = ACTIONS(6624), - [anon_sym___extension__] = ACTIONS(6624), - [anon_sym_virtual] = ACTIONS(6624), - [anon_sym_extern] = ACTIONS(6624), - [anon_sym___attribute__] = ACTIONS(6624), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), - [anon_sym___declspec] = ACTIONS(6624), - [anon_sym___based] = ACTIONS(6624), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6624), - [anon_sym_static] = ACTIONS(6624), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_register] = ACTIONS(6624), - [anon_sym_inline] = ACTIONS(6624), - [anon_sym___inline] = ACTIONS(6624), - [anon_sym___inline__] = ACTIONS(6624), - [anon_sym___forceinline] = ACTIONS(6624), - [anon_sym_thread_local] = ACTIONS(6624), - [anon_sym___thread] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6624), - [anon_sym_volatile] = ACTIONS(6624), - [anon_sym_restrict] = ACTIONS(6624), - [anon_sym___restrict__] = ACTIONS(6624), - [anon_sym__Atomic] = ACTIONS(6624), - [anon_sym__Noreturn] = ACTIONS(6624), - [anon_sym_noreturn] = ACTIONS(6624), - [anon_sym__Nonnull] = ACTIONS(6624), - [anon_sym_mutable] = ACTIONS(6624), - [anon_sym_constinit] = ACTIONS(6624), - [anon_sym_consteval] = ACTIONS(6624), - [anon_sym_alignas] = ACTIONS(6624), - [anon_sym__Alignas] = ACTIONS(6624), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_STAR_EQ] = ACTIONS(6626), - [anon_sym_SLASH_EQ] = ACTIONS(6626), - [anon_sym_PERCENT_EQ] = ACTIONS(6626), - [anon_sym_PLUS_EQ] = ACTIONS(6626), - [anon_sym_DASH_EQ] = ACTIONS(6626), - [anon_sym_LT_LT_EQ] = ACTIONS(6626), - [anon_sym_GT_GT_EQ] = ACTIONS(6626), - [anon_sym_AMP_EQ] = ACTIONS(6626), - [anon_sym_CARET_EQ] = ACTIONS(6626), - [anon_sym_PIPE_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6624), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6624), - [anon_sym_not_eq] = ACTIONS(6624), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6624), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6624), - [anon_sym_decltype] = ACTIONS(6624), - [anon_sym_template] = ACTIONS(6624), - [anon_sym_operator] = ACTIONS(6624), - [anon_sym_DASH_GT_STAR] = ACTIONS(6626), - [anon_sym_LBRACK_COLON] = ACTIONS(6626), + [sym_attribute_specifier] = STATE(2302), + [sym_attribute_declaration] = STATE(4748), + [sym_type_qualifier] = STATE(2463), + [sym_alignas_qualifier] = STATE(2677), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym_ref_qualifier] = STATE(3664), + [sym__function_attributes_start] = STATE(3523), + [sym__function_exception_specification] = STATE(4102), + [sym__function_attributes_end] = STATE(5950), + [sym__function_postfix] = STATE(5317), + [sym_trailing_return_type] = STATE(6053), + [sym_noexcept] = STATE(4102), + [sym_throw_specifier] = STATE(4102), + [sym_requires_clause] = STATE(5317), + [aux_sym_type_definition_repeat1] = STATE(2302), + [aux_sym__type_definition_type_repeat1] = STATE(2463), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(6469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [aux_sym_preproc_if_token2] = ACTIONS(6471), + [aux_sym_preproc_else_token1] = ACTIONS(6471), + [aux_sym_preproc_elif_token1] = ACTIONS(6469), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6471), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_AMP] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6471), + [anon_sym_GT_GT] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(7166), + [anon_sym___attribute__] = ACTIONS(7168), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(7166), + [anon_sym_constexpr] = ACTIONS(7166), + [anon_sym_volatile] = ACTIONS(7166), + [anon_sym_restrict] = ACTIONS(7166), + [anon_sym___restrict__] = ACTIONS(7166), + [anon_sym__Atomic] = ACTIONS(7166), + [anon_sym__Noreturn] = ACTIONS(7166), + [anon_sym_noreturn] = ACTIONS(7166), + [anon_sym__Nonnull] = ACTIONS(7166), + [anon_sym_mutable] = ACTIONS(7166), + [anon_sym_constinit] = ACTIONS(7166), + [anon_sym_consteval] = ACTIONS(7166), + [anon_sym_alignas] = ACTIONS(7172), + [anon_sym__Alignas] = ACTIONS(7172), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6469), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6469), + [anon_sym_not_eq] = ACTIONS(6469), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(7174), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7177), + [anon_sym_override] = ACTIONS(7177), + [anon_sym_noexcept] = ACTIONS(7179), + [anon_sym_throw] = ACTIONS(7181), + [anon_sym_requires] = ACTIONS(7183), }, [STATE(2067)] = { - [sym_identifier] = ACTIONS(6616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_RPAREN] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_TILDE] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6616), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6616), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6616), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6616), - [anon_sym_GT_GT] = ACTIONS(6616), - [anon_sym___extension__] = ACTIONS(6616), - [anon_sym_virtual] = ACTIONS(6616), - [anon_sym_extern] = ACTIONS(6616), - [anon_sym___attribute__] = ACTIONS(6616), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), - [anon_sym___declspec] = ACTIONS(6616), - [anon_sym___based] = ACTIONS(6616), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6616), - [anon_sym_static] = ACTIONS(6616), - [anon_sym_EQ] = ACTIONS(6616), - [anon_sym_register] = ACTIONS(6616), - [anon_sym_inline] = ACTIONS(6616), - [anon_sym___inline] = ACTIONS(6616), - [anon_sym___inline__] = ACTIONS(6616), - [anon_sym___forceinline] = ACTIONS(6616), - [anon_sym_thread_local] = ACTIONS(6616), - [anon_sym___thread] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6616), - [anon_sym_volatile] = ACTIONS(6616), - [anon_sym_restrict] = ACTIONS(6616), - [anon_sym___restrict__] = ACTIONS(6616), - [anon_sym__Atomic] = ACTIONS(6616), - [anon_sym__Noreturn] = ACTIONS(6616), - [anon_sym_noreturn] = ACTIONS(6616), - [anon_sym__Nonnull] = ACTIONS(6616), - [anon_sym_mutable] = ACTIONS(6616), - [anon_sym_constinit] = ACTIONS(6616), - [anon_sym_consteval] = ACTIONS(6616), - [anon_sym_alignas] = ACTIONS(6616), - [anon_sym__Alignas] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_STAR_EQ] = ACTIONS(6618), - [anon_sym_SLASH_EQ] = ACTIONS(6618), - [anon_sym_PERCENT_EQ] = ACTIONS(6618), - [anon_sym_PLUS_EQ] = ACTIONS(6618), - [anon_sym_DASH_EQ] = ACTIONS(6618), - [anon_sym_LT_LT_EQ] = ACTIONS(6618), - [anon_sym_GT_GT_EQ] = ACTIONS(6618), - [anon_sym_AMP_EQ] = ACTIONS(6618), - [anon_sym_CARET_EQ] = ACTIONS(6618), - [anon_sym_PIPE_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6616), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6616), - [anon_sym_not_eq] = ACTIONS(6616), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6616), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6616), - [anon_sym_decltype] = ACTIONS(6616), - [anon_sym_template] = ACTIONS(6616), - [anon_sym_operator] = ACTIONS(6616), - [anon_sym_DASH_GT_STAR] = ACTIONS(6618), - [anon_sym_LBRACK_COLON] = ACTIONS(6618), + [sym_decltype_auto] = STATE(2185), + [sym_template_argument_list] = STATE(2090), + [aux_sym_sized_type_specifier_repeat1] = STATE(2254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5617), + [anon_sym_RPAREN] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_PERCENT] = ACTIONS(5609), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_EQ_EQ] = ACTIONS(5617), + [anon_sym_BANG_EQ] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_GT_EQ] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(5609), + [anon_sym_GT_GT] = ACTIONS(5609), + [anon_sym_SEMI] = ACTIONS(5617), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym___attribute__] = ACTIONS(5617), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5617), + [anon_sym_LBRACE] = ACTIONS(5617), + [anon_sym_RBRACE] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(6774), + [anon_sym_unsigned] = ACTIONS(6774), + [anon_sym_long] = ACTIONS(6774), + [anon_sym_short] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_EQ] = ACTIONS(5609), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_STAR_EQ] = ACTIONS(5617), + [anon_sym_SLASH_EQ] = ACTIONS(5617), + [anon_sym_PERCENT_EQ] = ACTIONS(5617), + [anon_sym_PLUS_EQ] = ACTIONS(5617), + [anon_sym_DASH_EQ] = ACTIONS(5617), + [anon_sym_LT_LT_EQ] = ACTIONS(5617), + [anon_sym_GT_GT_EQ] = ACTIONS(5617), + [anon_sym_AMP_EQ] = ACTIONS(5617), + [anon_sym_CARET_EQ] = ACTIONS(5617), + [anon_sym_PIPE_EQ] = ACTIONS(5617), + [anon_sym_and_eq] = ACTIONS(5617), + [anon_sym_or_eq] = ACTIONS(5617), + [anon_sym_xor_eq] = ACTIONS(5617), + [anon_sym_LT_EQ_GT] = ACTIONS(5617), + [anon_sym_or] = ACTIONS(5609), + [anon_sym_and] = ACTIONS(5609), + [anon_sym_bitor] = ACTIONS(5617), + [anon_sym_xor] = ACTIONS(5609), + [anon_sym_bitand] = ACTIONS(5617), + [anon_sym_not_eq] = ACTIONS(5617), + [anon_sym_DASH_DASH] = ACTIONS(5617), + [anon_sym_PLUS_PLUS] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_DOT_STAR] = ACTIONS(5617), + [anon_sym_DASH_GT] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6776), + [anon_sym_decltype] = ACTIONS(6778), + [anon_sym_final] = ACTIONS(5617), + [anon_sym_override] = ACTIONS(5617), + [anon_sym_requires] = ACTIONS(5617), + [anon_sym_COLON_RBRACK] = ACTIONS(5617), }, [STATE(2068)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(2028), - [sym__abstract_declarator] = STATE(4807), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2384), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1979), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2384), - [aux_sym_pointer_declarator_repeat1] = STATE(2028), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7162), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7164), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7166), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(6823), - [anon_sym___attribute] = ACTIONS(6821), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), - [sym_ms_signed_ptr_modifier] = ACTIONS(6851), - [anon_sym__unaligned] = ACTIONS(6853), - [anon_sym___unaligned] = ACTIONS(6853), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(7187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_RPAREN] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_TILDE] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7187), + [anon_sym_virtual] = ACTIONS(7187), + [anon_sym_extern] = ACTIONS(7187), + [anon_sym___attribute__] = ACTIONS(7187), + [anon_sym___attribute] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7189), + [anon_sym___declspec] = ACTIONS(7187), + [anon_sym___based] = ACTIONS(7187), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7187), + [anon_sym_static] = ACTIONS(7187), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_register] = ACTIONS(7187), + [anon_sym_inline] = ACTIONS(7187), + [anon_sym___inline] = ACTIONS(7187), + [anon_sym___inline__] = ACTIONS(7187), + [anon_sym___forceinline] = ACTIONS(7187), + [anon_sym_thread_local] = ACTIONS(7187), + [anon_sym___thread] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7187), + [anon_sym_volatile] = ACTIONS(7187), + [anon_sym_restrict] = ACTIONS(7187), + [anon_sym___restrict__] = ACTIONS(7187), + [anon_sym__Atomic] = ACTIONS(7187), + [anon_sym__Noreturn] = ACTIONS(7187), + [anon_sym_noreturn] = ACTIONS(7187), + [anon_sym__Nonnull] = ACTIONS(7187), + [anon_sym_mutable] = ACTIONS(7187), + [anon_sym_constinit] = ACTIONS(7187), + [anon_sym_consteval] = ACTIONS(7187), + [anon_sym_alignas] = ACTIONS(7187), + [anon_sym__Alignas] = ACTIONS(7187), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7189), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7187), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7187), + [anon_sym_not_eq] = ACTIONS(7187), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7187), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7187), + [anon_sym_template] = ACTIONS(7187), + [anon_sym_operator] = ACTIONS(7187), + [anon_sym_DASH_GT_STAR] = ACTIONS(7189), + [anon_sym_LBRACK_COLON] = ACTIONS(7189), }, [STATE(2069)] = { - [sym_attribute_specifier] = STATE(2316), - [sym_attribute_declaration] = STATE(4713), - [sym_type_qualifier] = STATE(2459), - [sym_alignas_qualifier] = STATE(2727), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym_ref_qualifier] = STATE(3692), - [sym__function_attributes_start] = STATE(3501), - [sym__function_exception_specification] = STATE(4135), - [sym__function_attributes_end] = STATE(6001), - [sym__function_postfix] = STATE(5415), - [sym_trailing_return_type] = STATE(5893), - [sym_noexcept] = STATE(4135), - [sym_throw_specifier] = STATE(4135), - [sym_requires_clause] = STATE(5415), - [aux_sym_type_definition_repeat1] = STATE(2316), - [aux_sym__type_definition_type_repeat1] = STATE(2459), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_RPAREN] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(7168), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6481), - [anon_sym_AMP] = ACTIONS(7171), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6481), - [anon_sym_GT_GT] = ACTIONS(6481), - [anon_sym_SEMI] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(7174), - [anon_sym___attribute__] = ACTIONS(7176), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_COLON] = ACTIONS(6479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6481), - [anon_sym_RBRACE] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(7182), - [anon_sym_constexpr] = ACTIONS(7174), - [anon_sym_volatile] = ACTIONS(7174), - [anon_sym_restrict] = ACTIONS(7174), - [anon_sym___restrict__] = ACTIONS(7174), - [anon_sym__Atomic] = ACTIONS(7174), - [anon_sym__Noreturn] = ACTIONS(7174), - [anon_sym_noreturn] = ACTIONS(7174), - [anon_sym__Nonnull] = ACTIONS(7174), - [anon_sym_mutable] = ACTIONS(7174), - [anon_sym_constinit] = ACTIONS(7174), - [anon_sym_consteval] = ACTIONS(7174), - [anon_sym_alignas] = ACTIONS(7184), - [anon_sym__Alignas] = ACTIONS(7184), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6481), - [anon_sym_and] = ACTIONS(6481), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6481), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(7186), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7189), - [anon_sym_override] = ACTIONS(7189), - [anon_sym_noexcept] = ACTIONS(7192), - [anon_sym_throw] = ACTIONS(7194), - [anon_sym_requires] = ACTIONS(7196), - [anon_sym_COLON_RBRACK] = ACTIONS(6481), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [aux_sym_sized_type_specifier_repeat1] = STATE(2246), + [sym_identifier] = ACTIONS(7191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym_SEMI] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(7197), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_COLON] = ACTIONS(7195), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7193), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_RBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7200), + [anon_sym_unsigned] = ACTIONS(7200), + [anon_sym_long] = ACTIONS(7200), + [anon_sym_short] = ACTIONS(7200), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7197), + [anon_sym_constexpr] = ACTIONS(7197), + [anon_sym_volatile] = ACTIONS(7197), + [anon_sym_restrict] = ACTIONS(7197), + [anon_sym___restrict__] = ACTIONS(7197), + [anon_sym__Atomic] = ACTIONS(7197), + [anon_sym__Noreturn] = ACTIONS(7197), + [anon_sym_noreturn] = ACTIONS(7197), + [anon_sym__Nonnull] = ACTIONS(7197), + [anon_sym_mutable] = ACTIONS(7197), + [anon_sym_constinit] = ACTIONS(7197), + [anon_sym_consteval] = ACTIONS(7197), + [anon_sym_alignas] = ACTIONS(7202), + [anon_sym__Alignas] = ACTIONS(7202), + [sym_primitive_type] = ACTIONS(7205), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_requires] = ACTIONS(7195), + [anon_sym_COLON_RBRACK] = ACTIONS(7193), }, [STATE(2070)] = { - [sym_identifier] = ACTIONS(7199), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_RPAREN] = ACTIONS(7201), - [aux_sym_preproc_if_token2] = ACTIONS(7201), - [aux_sym_preproc_else_token1] = ACTIONS(7201), - [aux_sym_preproc_elif_token1] = ACTIONS(7199), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7201), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7199), - [anon_sym_GT_GT] = ACTIONS(7199), - [anon_sym_SEMI] = ACTIONS(7201), - [anon_sym___extension__] = ACTIONS(7199), - [anon_sym___attribute__] = ACTIONS(7199), - [anon_sym___attribute] = ACTIONS(7199), - [anon_sym_COLON] = ACTIONS(7199), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7201), - [sym_ms_restrict_modifier] = ACTIONS(7199), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7199), - [sym_ms_signed_ptr_modifier] = ACTIONS(7199), - [anon_sym__unaligned] = ACTIONS(7199), - [anon_sym___unaligned] = ACTIONS(7199), - [anon_sym_RBRACE] = ACTIONS(7201), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_EQ] = ACTIONS(7199), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7199), - [anon_sym_volatile] = ACTIONS(7199), - [anon_sym_restrict] = ACTIONS(7199), - [anon_sym___restrict__] = ACTIONS(7199), - [anon_sym__Atomic] = ACTIONS(7199), - [anon_sym__Noreturn] = ACTIONS(7199), - [anon_sym_noreturn] = ACTIONS(7199), - [anon_sym__Nonnull] = ACTIONS(7199), - [anon_sym_mutable] = ACTIONS(7199), - [anon_sym_constinit] = ACTIONS(7199), - [anon_sym_consteval] = ACTIONS(7199), - [anon_sym_alignas] = ACTIONS(7199), - [anon_sym__Alignas] = ACTIONS(7199), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_STAR_EQ] = ACTIONS(7201), - [anon_sym_SLASH_EQ] = ACTIONS(7201), - [anon_sym_PERCENT_EQ] = ACTIONS(7201), - [anon_sym_PLUS_EQ] = ACTIONS(7201), - [anon_sym_DASH_EQ] = ACTIONS(7201), - [anon_sym_LT_LT_EQ] = ACTIONS(7201), - [anon_sym_GT_GT_EQ] = ACTIONS(7201), - [anon_sym_AMP_EQ] = ACTIONS(7201), - [anon_sym_CARET_EQ] = ACTIONS(7201), - [anon_sym_PIPE_EQ] = ACTIONS(7201), - [anon_sym_and_eq] = ACTIONS(7199), - [anon_sym_or_eq] = ACTIONS(7199), - [anon_sym_xor_eq] = ACTIONS(7199), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7199), - [anon_sym_and] = ACTIONS(7199), - [anon_sym_bitor] = ACTIONS(7199), - [anon_sym_xor] = ACTIONS(7199), - [anon_sym_bitand] = ACTIONS(7199), - [anon_sym_not_eq] = ACTIONS(7199), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7201), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7199), - [anon_sym_override] = ACTIONS(7199), - [anon_sym_requires] = ACTIONS(7199), - [anon_sym_COLON_RBRACK] = ACTIONS(7201), + [sym_type_qualifier] = STATE(2069), + [sym_alignas_qualifier] = STATE(2046), + [aux_sym__type_definition_type_repeat1] = STATE(2069), + [aux_sym_sized_type_specifier_repeat1] = STATE(2127), + [sym_identifier] = ACTIONS(7207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_RPAREN] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym_SEMI] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(7213), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_COLON] = ACTIONS(7211), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7209), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_RBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(7216), + [anon_sym_unsigned] = ACTIONS(7216), + [anon_sym_long] = ACTIONS(7216), + [anon_sym_short] = ACTIONS(7216), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(7213), + [anon_sym_constexpr] = ACTIONS(7213), + [anon_sym_volatile] = ACTIONS(7213), + [anon_sym_restrict] = ACTIONS(7213), + [anon_sym___restrict__] = ACTIONS(7213), + [anon_sym__Atomic] = ACTIONS(7213), + [anon_sym__Noreturn] = ACTIONS(7213), + [anon_sym_noreturn] = ACTIONS(7213), + [anon_sym__Nonnull] = ACTIONS(7213), + [anon_sym_mutable] = ACTIONS(7213), + [anon_sym_constinit] = ACTIONS(7213), + [anon_sym_consteval] = ACTIONS(7213), + [anon_sym_alignas] = ACTIONS(7218), + [anon_sym__Alignas] = ACTIONS(7218), + [sym_primitive_type] = ACTIONS(7221), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), + [anon_sym_COLON_RBRACK] = ACTIONS(7209), }, [STATE(2071)] = { - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [aux_sym_sized_type_specifier_repeat1] = STATE(2273), - [sym_identifier] = ACTIONS(7203), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_RPAREN] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym_SEMI] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(7209), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_COLON] = ACTIONS(7207), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7205), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_RBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(7212), - [anon_sym_unsigned] = ACTIONS(7212), - [anon_sym_long] = ACTIONS(7212), - [anon_sym_short] = ACTIONS(7212), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(7209), - [anon_sym_constexpr] = ACTIONS(7209), - [anon_sym_volatile] = ACTIONS(7209), - [anon_sym_restrict] = ACTIONS(7209), - [anon_sym___restrict__] = ACTIONS(7209), - [anon_sym__Atomic] = ACTIONS(7209), - [anon_sym__Noreturn] = ACTIONS(7209), - [anon_sym_noreturn] = ACTIONS(7209), - [anon_sym__Nonnull] = ACTIONS(7209), - [anon_sym_mutable] = ACTIONS(7209), - [anon_sym_constinit] = ACTIONS(7209), - [anon_sym_consteval] = ACTIONS(7209), - [anon_sym_alignas] = ACTIONS(7214), - [anon_sym__Alignas] = ACTIONS(7214), - [sym_primitive_type] = ACTIONS(7217), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), - [anon_sym_COLON_RBRACK] = ACTIONS(7205), - }, - [STATE(2072)] = { - [sym_attribute_specifier] = STATE(2316), - [sym_attribute_declaration] = STATE(4713), - [sym_type_qualifier] = STATE(2459), - [sym_alignas_qualifier] = STATE(2727), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym_ref_qualifier] = STATE(3646), - [sym__function_attributes_start] = STATE(3496), - [sym__function_exception_specification] = STATE(4086), - [sym__function_attributes_end] = STATE(6015), - [sym__function_postfix] = STATE(5415), - [sym_trailing_return_type] = STATE(5912), - [sym_noexcept] = STATE(4086), - [sym_throw_specifier] = STATE(4086), - [sym_requires_clause] = STATE(5415), - [aux_sym_type_definition_repeat1] = STATE(2316), - [aux_sym__type_definition_type_repeat1] = STATE(2459), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_RPAREN] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(7168), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6481), - [anon_sym_AMP] = ACTIONS(7171), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6481), - [anon_sym_GT_GT] = ACTIONS(6481), - [anon_sym_SEMI] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(7174), - [anon_sym___attribute__] = ACTIONS(7176), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_COLON] = ACTIONS(6479), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6481), - [anon_sym_RBRACE] = ACTIONS(6481), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(7182), - [anon_sym_constexpr] = ACTIONS(7174), - [anon_sym_volatile] = ACTIONS(7174), - [anon_sym_restrict] = ACTIONS(7174), - [anon_sym___restrict__] = ACTIONS(7174), - [anon_sym__Atomic] = ACTIONS(7174), - [anon_sym__Noreturn] = ACTIONS(7174), - [anon_sym_noreturn] = ACTIONS(7174), - [anon_sym__Nonnull] = ACTIONS(7174), - [anon_sym_mutable] = ACTIONS(7174), - [anon_sym_constinit] = ACTIONS(7174), - [anon_sym_consteval] = ACTIONS(7174), - [anon_sym_alignas] = ACTIONS(7184), - [anon_sym__Alignas] = ACTIONS(7184), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6481), - [anon_sym_and] = ACTIONS(6481), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6481), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(7186), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7219), - [anon_sym_override] = ACTIONS(7219), - [anon_sym_noexcept] = ACTIONS(7192), - [anon_sym_throw] = ACTIONS(7194), - [anon_sym_requires] = ACTIONS(7221), - [anon_sym_COLON_RBRACK] = ACTIONS(6481), - }, - [STATE(2073)] = { - [sym_decltype_auto] = STATE(2238), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), + [sym_attribute_specifier] = STATE(2302), + [sym_attribute_declaration] = STATE(4748), + [sym_type_qualifier] = STATE(2463), + [sym_alignas_qualifier] = STATE(2677), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym_ref_qualifier] = STATE(3615), + [sym__function_attributes_start] = STATE(3548), + [sym__function_exception_specification] = STATE(4066), + [sym__function_attributes_end] = STATE(5969), + [sym__function_postfix] = STATE(5317), + [sym_trailing_return_type] = STATE(5754), + [sym_noexcept] = STATE(4066), + [sym_throw_specifier] = STATE(4066), + [sym_requires_clause] = STATE(5317), + [aux_sym_type_definition_repeat1] = STATE(2302), + [aux_sym__type_definition_type_repeat1] = STATE(2463), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_RPAREN] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_AMP] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6471), + [anon_sym_GT_GT] = ACTIONS(6471), + [anon_sym_SEMI] = ACTIONS(6471), [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6471), + [anon_sym_RBRACE] = ACTIONS(6471), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(7166), [anon_sym_constexpr] = ACTIONS(7223), [anon_sym_volatile] = ACTIONS(7223), [anon_sym_restrict] = ACTIONS(7223), @@ -320368,2540 +320097,2702 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(7223), [anon_sym_constinit] = ACTIONS(7223), [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7229), - [anon_sym_decltype] = ACTIONS(6819), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [anon_sym_alignas] = ACTIONS(7227), + [anon_sym__Alignas] = ACTIONS(7227), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6471), + [anon_sym_and] = ACTIONS(6471), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6471), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(7229), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7232), + [anon_sym_override] = ACTIONS(7232), + [anon_sym_noexcept] = ACTIONS(7235), + [anon_sym_throw] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7239), + [anon_sym_COLON_RBRACK] = ACTIONS(6471), + }, + [STATE(2072)] = { + [sym_identifier] = ACTIONS(7242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7244), + [anon_sym_COMMA] = ACTIONS(7244), + [anon_sym_RPAREN] = ACTIONS(7244), + [aux_sym_preproc_if_token2] = ACTIONS(7244), + [aux_sym_preproc_else_token1] = ACTIONS(7244), + [aux_sym_preproc_elif_token1] = ACTIONS(7242), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7244), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7244), + [anon_sym_LPAREN2] = ACTIONS(7244), + [anon_sym_DASH] = ACTIONS(7242), + [anon_sym_PLUS] = ACTIONS(7242), + [anon_sym_STAR] = ACTIONS(7242), + [anon_sym_SLASH] = ACTIONS(7242), + [anon_sym_PERCENT] = ACTIONS(7242), + [anon_sym_PIPE_PIPE] = ACTIONS(7244), + [anon_sym_AMP_AMP] = ACTIONS(7244), + [anon_sym_PIPE] = ACTIONS(7242), + [anon_sym_CARET] = ACTIONS(7242), + [anon_sym_AMP] = ACTIONS(7242), + [anon_sym_EQ_EQ] = ACTIONS(7244), + [anon_sym_BANG_EQ] = ACTIONS(7244), + [anon_sym_GT] = ACTIONS(7242), + [anon_sym_GT_EQ] = ACTIONS(7244), + [anon_sym_LT_EQ] = ACTIONS(7242), + [anon_sym_LT] = ACTIONS(7242), + [anon_sym_LT_LT] = ACTIONS(7242), + [anon_sym_GT_GT] = ACTIONS(7242), + [anon_sym_SEMI] = ACTIONS(7244), + [anon_sym___extension__] = ACTIONS(7242), + [anon_sym___attribute__] = ACTIONS(7242), + [anon_sym___attribute] = ACTIONS(7242), + [anon_sym_COLON] = ACTIONS(7242), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7244), + [sym_ms_restrict_modifier] = ACTIONS(7242), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7242), + [sym_ms_signed_ptr_modifier] = ACTIONS(7242), + [anon_sym__unaligned] = ACTIONS(7242), + [anon_sym___unaligned] = ACTIONS(7242), + [anon_sym_RBRACE] = ACTIONS(7244), + [anon_sym_LBRACK] = ACTIONS(7244), + [anon_sym_EQ] = ACTIONS(7242), + [anon_sym_const] = ACTIONS(7242), + [anon_sym_constexpr] = ACTIONS(7242), + [anon_sym_volatile] = ACTIONS(7242), + [anon_sym_restrict] = ACTIONS(7242), + [anon_sym___restrict__] = ACTIONS(7242), + [anon_sym__Atomic] = ACTIONS(7242), + [anon_sym__Noreturn] = ACTIONS(7242), + [anon_sym_noreturn] = ACTIONS(7242), + [anon_sym__Nonnull] = ACTIONS(7242), + [anon_sym_mutable] = ACTIONS(7242), + [anon_sym_constinit] = ACTIONS(7242), + [anon_sym_consteval] = ACTIONS(7242), + [anon_sym_alignas] = ACTIONS(7242), + [anon_sym__Alignas] = ACTIONS(7242), + [anon_sym_QMARK] = ACTIONS(7244), + [anon_sym_STAR_EQ] = ACTIONS(7244), + [anon_sym_SLASH_EQ] = ACTIONS(7244), + [anon_sym_PERCENT_EQ] = ACTIONS(7244), + [anon_sym_PLUS_EQ] = ACTIONS(7244), + [anon_sym_DASH_EQ] = ACTIONS(7244), + [anon_sym_LT_LT_EQ] = ACTIONS(7244), + [anon_sym_GT_GT_EQ] = ACTIONS(7244), + [anon_sym_AMP_EQ] = ACTIONS(7244), + [anon_sym_CARET_EQ] = ACTIONS(7244), + [anon_sym_PIPE_EQ] = ACTIONS(7244), + [anon_sym_and_eq] = ACTIONS(7242), + [anon_sym_or_eq] = ACTIONS(7242), + [anon_sym_xor_eq] = ACTIONS(7242), + [anon_sym_LT_EQ_GT] = ACTIONS(7244), + [anon_sym_or] = ACTIONS(7242), + [anon_sym_and] = ACTIONS(7242), + [anon_sym_bitor] = ACTIONS(7242), + [anon_sym_xor] = ACTIONS(7242), + [anon_sym_bitand] = ACTIONS(7242), + [anon_sym_not_eq] = ACTIONS(7242), + [anon_sym_DASH_DASH] = ACTIONS(7244), + [anon_sym_PLUS_PLUS] = ACTIONS(7244), + [anon_sym_DOT] = ACTIONS(7242), + [anon_sym_DOT_STAR] = ACTIONS(7244), + [anon_sym_DASH_GT] = ACTIONS(7244), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7242), + [anon_sym_override] = ACTIONS(7242), + [anon_sym_requires] = ACTIONS(7242), + [anon_sym_COLON_RBRACK] = ACTIONS(7244), + }, + [STATE(2073)] = { + [sym_decltype_auto] = STATE(2186), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7246), + [anon_sym_or_eq] = ACTIONS(7246), + [anon_sym_xor_eq] = ACTIONS(7246), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7252), + [anon_sym_decltype] = ACTIONS(6758), + [anon_sym_final] = ACTIONS(7246), + [anon_sym_override] = ACTIONS(7246), + [anon_sym_requires] = ACTIONS(7246), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), }, [STATE(2074)] = { - [sym_identifier] = ACTIONS(7231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_RPAREN] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_TILDE] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7231), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7231), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7231), - [anon_sym_GT_GT] = ACTIONS(7231), - [anon_sym___extension__] = ACTIONS(7231), - [anon_sym_virtual] = ACTIONS(7231), - [anon_sym_extern] = ACTIONS(7231), - [anon_sym___attribute__] = ACTIONS(7231), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(7233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7233), - [anon_sym___declspec] = ACTIONS(7231), - [anon_sym___based] = ACTIONS(7231), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7231), - [anon_sym_static] = ACTIONS(7231), - [anon_sym_EQ] = ACTIONS(7231), - [anon_sym_register] = ACTIONS(7231), - [anon_sym_inline] = ACTIONS(7231), - [anon_sym___inline] = ACTIONS(7231), - [anon_sym___inline__] = ACTIONS(7231), - [anon_sym___forceinline] = ACTIONS(7231), - [anon_sym_thread_local] = ACTIONS(7231), - [anon_sym___thread] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7231), - [anon_sym_volatile] = ACTIONS(7231), - [anon_sym_restrict] = ACTIONS(7231), - [anon_sym___restrict__] = ACTIONS(7231), - [anon_sym__Atomic] = ACTIONS(7231), - [anon_sym__Noreturn] = ACTIONS(7231), - [anon_sym_noreturn] = ACTIONS(7231), - [anon_sym__Nonnull] = ACTIONS(7231), - [anon_sym_mutable] = ACTIONS(7231), - [anon_sym_constinit] = ACTIONS(7231), - [anon_sym_consteval] = ACTIONS(7231), - [anon_sym_alignas] = ACTIONS(7231), - [anon_sym__Alignas] = ACTIONS(7231), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_STAR_EQ] = ACTIONS(7233), - [anon_sym_SLASH_EQ] = ACTIONS(7233), - [anon_sym_PERCENT_EQ] = ACTIONS(7233), - [anon_sym_PLUS_EQ] = ACTIONS(7233), - [anon_sym_DASH_EQ] = ACTIONS(7233), - [anon_sym_LT_LT_EQ] = ACTIONS(7233), - [anon_sym_GT_GT_EQ] = ACTIONS(7233), - [anon_sym_AMP_EQ] = ACTIONS(7233), - [anon_sym_CARET_EQ] = ACTIONS(7233), - [anon_sym_PIPE_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_bitor] = ACTIONS(7231), - [anon_sym_xor] = ACTIONS(7231), - [anon_sym_bitand] = ACTIONS(7231), - [anon_sym_not_eq] = ACTIONS(7231), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7231), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7231), - [anon_sym_template] = ACTIONS(7231), - [anon_sym_operator] = ACTIONS(7231), - [anon_sym_DASH_GT_STAR] = ACTIONS(7233), - [anon_sym_LBRACK_COLON] = ACTIONS(7233), + [sym_attribute_specifier] = STATE(2203), + [sym_field_declaration_list] = STATE(2159), + [sym_virtual_specifier] = STATE(9595), + [sym_base_class_clause] = STATE(10531), + [sym_identifier] = ACTIONS(7254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym_RPAREN] = ACTIONS(7256), + [aux_sym_preproc_if_token2] = ACTIONS(7256), + [aux_sym_preproc_else_token1] = ACTIONS(7256), + [aux_sym_preproc_elif_token1] = ACTIONS(7254), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7256), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7256), + [anon_sym_LPAREN2] = ACTIONS(7256), + [anon_sym_DASH] = ACTIONS(7254), + [anon_sym_PLUS] = ACTIONS(7254), + [anon_sym_STAR] = ACTIONS(7254), + [anon_sym_SLASH] = ACTIONS(7254), + [anon_sym_PERCENT] = ACTIONS(7254), + [anon_sym_PIPE_PIPE] = ACTIONS(7256), + [anon_sym_AMP_AMP] = ACTIONS(7256), + [anon_sym_PIPE] = ACTIONS(7254), + [anon_sym_CARET] = ACTIONS(7254), + [anon_sym_AMP] = ACTIONS(7254), + [anon_sym_EQ_EQ] = ACTIONS(7256), + [anon_sym_BANG_EQ] = ACTIONS(7256), + [anon_sym_GT] = ACTIONS(7254), + [anon_sym_GT_EQ] = ACTIONS(7256), + [anon_sym_LT_EQ] = ACTIONS(7254), + [anon_sym_LT] = ACTIONS(7254), + [anon_sym_LT_LT] = ACTIONS(7254), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym_SEMI] = ACTIONS(7256), + [anon_sym___extension__] = ACTIONS(7254), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7260), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7256), + [anon_sym_LBRACE] = ACTIONS(7262), + [anon_sym_RBRACE] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7254), + [anon_sym_const] = ACTIONS(7254), + [anon_sym_constexpr] = ACTIONS(7254), + [anon_sym_volatile] = ACTIONS(7254), + [anon_sym_restrict] = ACTIONS(7254), + [anon_sym___restrict__] = ACTIONS(7254), + [anon_sym__Atomic] = ACTIONS(7254), + [anon_sym__Noreturn] = ACTIONS(7254), + [anon_sym_noreturn] = ACTIONS(7254), + [anon_sym__Nonnull] = ACTIONS(7254), + [anon_sym_mutable] = ACTIONS(7254), + [anon_sym_constinit] = ACTIONS(7254), + [anon_sym_consteval] = ACTIONS(7254), + [anon_sym_alignas] = ACTIONS(7254), + [anon_sym__Alignas] = ACTIONS(7254), + [anon_sym_QMARK] = ACTIONS(7256), + [anon_sym_STAR_EQ] = ACTIONS(7256), + [anon_sym_SLASH_EQ] = ACTIONS(7256), + [anon_sym_PERCENT_EQ] = ACTIONS(7256), + [anon_sym_PLUS_EQ] = ACTIONS(7256), + [anon_sym_DASH_EQ] = ACTIONS(7256), + [anon_sym_LT_LT_EQ] = ACTIONS(7256), + [anon_sym_GT_GT_EQ] = ACTIONS(7256), + [anon_sym_AMP_EQ] = ACTIONS(7256), + [anon_sym_CARET_EQ] = ACTIONS(7256), + [anon_sym_PIPE_EQ] = ACTIONS(7256), + [anon_sym_and_eq] = ACTIONS(7254), + [anon_sym_or_eq] = ACTIONS(7254), + [anon_sym_xor_eq] = ACTIONS(7254), + [anon_sym_LT_EQ_GT] = ACTIONS(7256), + [anon_sym_or] = ACTIONS(7254), + [anon_sym_and] = ACTIONS(7254), + [anon_sym_bitor] = ACTIONS(7254), + [anon_sym_xor] = ACTIONS(7254), + [anon_sym_bitand] = ACTIONS(7254), + [anon_sym_not_eq] = ACTIONS(7254), + [anon_sym_DASH_DASH] = ACTIONS(7256), + [anon_sym_PLUS_PLUS] = ACTIONS(7256), + [anon_sym_DOT] = ACTIONS(7254), + [anon_sym_DOT_STAR] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7264), + [anon_sym_override] = ACTIONS(7264), + [anon_sym_requires] = ACTIONS(7254), + [anon_sym_COLON_RBRACK] = ACTIONS(7256), }, [STATE(2075)] = { - [sym_attribute_specifier] = STATE(2185), - [sym_field_declaration_list] = STATE(2129), - [sym_virtual_specifier] = STATE(9535), - [sym_base_class_clause] = STATE(10313), - [sym_identifier] = ACTIONS(7235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_RPAREN] = ACTIONS(7237), - [aux_sym_preproc_if_token2] = ACTIONS(7237), - [aux_sym_preproc_else_token1] = ACTIONS(7237), - [aux_sym_preproc_elif_token1] = ACTIONS(7235), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7237), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7235), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7235), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7235), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7235), - [anon_sym_SEMI] = ACTIONS(7237), - [anon_sym___extension__] = ACTIONS(7235), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7241), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7237), - [anon_sym_LBRACE] = ACTIONS(7243), - [anon_sym_RBRACE] = ACTIONS(7237), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_EQ] = ACTIONS(7235), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7235), - [anon_sym_volatile] = ACTIONS(7235), - [anon_sym_restrict] = ACTIONS(7235), - [anon_sym___restrict__] = ACTIONS(7235), - [anon_sym__Atomic] = ACTIONS(7235), - [anon_sym__Noreturn] = ACTIONS(7235), - [anon_sym_noreturn] = ACTIONS(7235), - [anon_sym__Nonnull] = ACTIONS(7235), - [anon_sym_mutable] = ACTIONS(7235), - [anon_sym_constinit] = ACTIONS(7235), - [anon_sym_consteval] = ACTIONS(7235), - [anon_sym_alignas] = ACTIONS(7235), - [anon_sym__Alignas] = ACTIONS(7235), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_STAR_EQ] = ACTIONS(7237), - [anon_sym_SLASH_EQ] = ACTIONS(7237), - [anon_sym_PERCENT_EQ] = ACTIONS(7237), - [anon_sym_PLUS_EQ] = ACTIONS(7237), - [anon_sym_DASH_EQ] = ACTIONS(7237), - [anon_sym_LT_LT_EQ] = ACTIONS(7237), - [anon_sym_GT_GT_EQ] = ACTIONS(7237), - [anon_sym_AMP_EQ] = ACTIONS(7237), - [anon_sym_CARET_EQ] = ACTIONS(7237), - [anon_sym_PIPE_EQ] = ACTIONS(7237), - [anon_sym_and_eq] = ACTIONS(7235), - [anon_sym_or_eq] = ACTIONS(7235), - [anon_sym_xor_eq] = ACTIONS(7235), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7235), - [anon_sym_and] = ACTIONS(7235), - [anon_sym_bitor] = ACTIONS(7235), - [anon_sym_xor] = ACTIONS(7235), - [anon_sym_bitand] = ACTIONS(7235), - [anon_sym_not_eq] = ACTIONS(7235), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7237), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7245), - [anon_sym_override] = ACTIONS(7245), - [anon_sym_requires] = ACTIONS(7235), - [anon_sym_COLON_RBRACK] = ACTIONS(7237), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(2021), + [sym__abstract_declarator] = STATE(4774), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2381), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2381), + [aux_sym_pointer_declarator_repeat1] = STATE(2021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7266), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7268), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7270), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(6843), + [anon_sym___attribute] = ACTIONS(6841), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6831), + [sym_ms_signed_ptr_modifier] = ACTIONS(6831), + [anon_sym__unaligned] = ACTIONS(6833), + [anon_sym___unaligned] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), }, [STATE(2076)] = { - [sym_type_qualifier] = STATE(2071), - [sym_alignas_qualifier] = STATE(2047), - [aux_sym__type_definition_type_repeat1] = STATE(2071), - [aux_sym_sized_type_specifier_repeat1] = STATE(2162), - [sym_identifier] = ACTIONS(7247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_RPAREN] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym_SEMI] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(7253), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_COLON] = ACTIONS(7251), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7249), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_RBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(7256), - [anon_sym_unsigned] = ACTIONS(7256), - [anon_sym_long] = ACTIONS(7256), - [anon_sym_short] = ACTIONS(7256), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7253), - [anon_sym_volatile] = ACTIONS(7253), - [anon_sym_restrict] = ACTIONS(7253), - [anon_sym___restrict__] = ACTIONS(7253), - [anon_sym__Atomic] = ACTIONS(7253), - [anon_sym__Noreturn] = ACTIONS(7253), - [anon_sym_noreturn] = ACTIONS(7253), - [anon_sym__Nonnull] = ACTIONS(7253), - [anon_sym_mutable] = ACTIONS(7253), - [anon_sym_constinit] = ACTIONS(7253), - [anon_sym_consteval] = ACTIONS(7253), - [anon_sym_alignas] = ACTIONS(7258), - [anon_sym__Alignas] = ACTIONS(7258), - [sym_primitive_type] = ACTIONS(7261), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), - [anon_sym_COLON_RBRACK] = ACTIONS(7249), + [sym_ms_unaligned_ptr_modifier] = STATE(2065), + [sym_ms_pointer_modifier] = STATE(2075), + [sym__abstract_declarator] = STATE(4991), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2383), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2383), + [aux_sym_pointer_declarator_repeat1] = STATE(2075), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(7266), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(7268), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(7270), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym_SEMI] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6819), + [sym_ms_restrict_modifier] = ACTIONS(6829), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6831), + [sym_ms_signed_ptr_modifier] = ACTIONS(6831), + [anon_sym__unaligned] = ACTIONS(6833), + [anon_sym___unaligned] = ACTIONS(6833), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), }, [STATE(2077)] = { - [sym_template_argument_list] = STATE(2090), - [sym_identifier] = ACTIONS(6565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), - [anon_sym_COMMA] = ACTIONS(6572), - [anon_sym_RPAREN] = ACTIONS(6572), - [aux_sym_preproc_if_token2] = ACTIONS(6572), - [aux_sym_preproc_else_token1] = ACTIONS(6572), - [aux_sym_preproc_elif_token1] = ACTIONS(6565), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6572), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6572), - [anon_sym_LPAREN2] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6565), - [anon_sym_PLUS] = ACTIONS(6565), - [anon_sym_STAR] = ACTIONS(6565), - [anon_sym_SLASH] = ACTIONS(6565), - [anon_sym_PERCENT] = ACTIONS(6565), - [anon_sym_PIPE_PIPE] = ACTIONS(6572), - [anon_sym_AMP_AMP] = ACTIONS(6572), - [anon_sym_PIPE] = ACTIONS(6565), - [anon_sym_CARET] = ACTIONS(6565), - [anon_sym_AMP] = ACTIONS(6565), - [anon_sym_EQ_EQ] = ACTIONS(6572), - [anon_sym_BANG_EQ] = ACTIONS(6572), - [anon_sym_GT] = ACTIONS(6565), - [anon_sym_GT_EQ] = ACTIONS(6572), - [anon_sym_LT_EQ] = ACTIONS(6565), - [anon_sym_LT] = ACTIONS(7263), - [anon_sym_LT_LT] = ACTIONS(6565), - [anon_sym_GT_GT] = ACTIONS(6565), - [anon_sym_SEMI] = ACTIONS(6572), - [anon_sym___extension__] = ACTIONS(6565), - [anon_sym___attribute__] = ACTIONS(6565), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6572), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_RBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6572), - [anon_sym_EQ] = ACTIONS(6565), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6565), - [anon_sym_volatile] = ACTIONS(6565), - [anon_sym_restrict] = ACTIONS(6565), - [anon_sym___restrict__] = ACTIONS(6565), - [anon_sym__Atomic] = ACTIONS(6565), - [anon_sym__Noreturn] = ACTIONS(6565), - [anon_sym_noreturn] = ACTIONS(6565), - [anon_sym__Nonnull] = ACTIONS(6565), - [anon_sym_mutable] = ACTIONS(6565), - [anon_sym_constinit] = ACTIONS(6565), - [anon_sym_consteval] = ACTIONS(6565), - [anon_sym_alignas] = ACTIONS(6565), - [anon_sym__Alignas] = ACTIONS(6565), - [anon_sym_QMARK] = ACTIONS(6572), - [anon_sym_STAR_EQ] = ACTIONS(6572), - [anon_sym_SLASH_EQ] = ACTIONS(6572), - [anon_sym_PERCENT_EQ] = ACTIONS(6572), - [anon_sym_PLUS_EQ] = ACTIONS(6572), - [anon_sym_DASH_EQ] = ACTIONS(6572), - [anon_sym_LT_LT_EQ] = ACTIONS(6572), - [anon_sym_GT_GT_EQ] = ACTIONS(6572), - [anon_sym_AMP_EQ] = ACTIONS(6572), - [anon_sym_CARET_EQ] = ACTIONS(6572), - [anon_sym_PIPE_EQ] = ACTIONS(6572), - [anon_sym_and_eq] = ACTIONS(6565), - [anon_sym_or_eq] = ACTIONS(6565), - [anon_sym_xor_eq] = ACTIONS(6565), - [anon_sym_LT_EQ_GT] = ACTIONS(6572), - [anon_sym_or] = ACTIONS(6565), - [anon_sym_and] = ACTIONS(6565), - [anon_sym_bitor] = ACTIONS(6565), - [anon_sym_xor] = ACTIONS(6565), - [anon_sym_bitand] = ACTIONS(6565), - [anon_sym_not_eq] = ACTIONS(6565), - [anon_sym_DASH_DASH] = ACTIONS(6572), - [anon_sym_PLUS_PLUS] = ACTIONS(6572), - [anon_sym_DOT] = ACTIONS(6565), - [anon_sym_DOT_STAR] = ACTIONS(6572), - [anon_sym_DASH_GT] = ACTIONS(6572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6565), - [anon_sym_decltype] = ACTIONS(6565), - [anon_sym_final] = ACTIONS(6565), - [anon_sym_override] = ACTIONS(6565), - [anon_sym_requires] = ACTIONS(6565), - [anon_sym_COLON_RBRACK] = ACTIONS(6572), + [sym_attribute_specifier] = STATE(2302), + [sym_attribute_declaration] = STATE(4748), + [sym_type_qualifier] = STATE(2463), + [sym_alignas_qualifier] = STATE(2677), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym_ref_qualifier] = STATE(3604), + [sym__function_attributes_start] = STATE(3541), + [sym__function_exception_specification] = STATE(4134), + [sym__function_attributes_end] = STATE(5936), + [sym__function_postfix] = STATE(5317), + [sym_trailing_return_type] = STATE(5855), + [sym_noexcept] = STATE(4134), + [sym_throw_specifier] = STATE(4134), + [sym_requires_clause] = STATE(5317), + [aux_sym_type_definition_repeat1] = STATE(2302), + [aux_sym__type_definition_type_repeat1] = STATE(2463), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_RPAREN] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_AMP] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6471), + [anon_sym_GT_GT] = ACTIONS(6471), + [anon_sym_SEMI] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_COLON] = ACTIONS(6469), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6471), + [anon_sym_RBRACE] = ACTIONS(6471), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(7166), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7227), + [anon_sym__Alignas] = ACTIONS(7227), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6471), + [anon_sym_and] = ACTIONS(6471), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6471), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(7229), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7272), + [anon_sym_override] = ACTIONS(7272), + [anon_sym_noexcept] = ACTIONS(7235), + [anon_sym_throw] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7274), + [anon_sym_COLON_RBRACK] = ACTIONS(6471), }, [STATE(2078)] = { - [sym_decltype_auto] = STATE(2234), - [sym_template_argument_list] = STATE(2090), - [aux_sym_sized_type_specifier_repeat1] = STATE(2279), - [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(5636), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5636), - [anon_sym_SLASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5636), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5636), - [anon_sym_CARET] = ACTIONS(5636), - [anon_sym_AMP] = ACTIONS(5636), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5636), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5636), - [anon_sym_LT] = ACTIONS(7266), - [anon_sym_LT_LT] = ACTIONS(5636), - [anon_sym_GT_GT] = ACTIONS(5636), - [anon_sym_SEMI] = ACTIONS(5643), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym___attribute__] = ACTIONS(5643), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5636), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5643), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_RBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(6789), - [anon_sym_unsigned] = ACTIONS(6789), - [anon_sym_long] = ACTIONS(6789), - [anon_sym_short] = ACTIONS(6789), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [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(5643), - [anon_sym_or_eq] = ACTIONS(5643), - [anon_sym_xor_eq] = ACTIONS(5643), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5636), - [anon_sym_and] = ACTIONS(5636), - [anon_sym_bitor] = ACTIONS(5643), - [anon_sym_xor] = ACTIONS(5636), - [anon_sym_bitand] = ACTIONS(5643), - [anon_sym_not_eq] = ACTIONS(5643), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6791), - [anon_sym_decltype] = ACTIONS(6793), - [anon_sym_final] = ACTIONS(5643), - [anon_sym_override] = ACTIONS(5643), - [anon_sym_requires] = ACTIONS(5643), - [anon_sym_COLON_RBRACK] = ACTIONS(5643), + [sym_attribute_specifier] = STATE(2302), + [sym_attribute_declaration] = STATE(4748), + [sym_type_qualifier] = STATE(2463), + [sym_alignas_qualifier] = STATE(2677), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym_ref_qualifier] = STATE(3694), + [sym__function_attributes_start] = STATE(3491), + [sym__function_exception_specification] = STATE(4048), + [sym__function_attributes_end] = STATE(5995), + [sym__function_postfix] = STATE(5317), + [sym_trailing_return_type] = STATE(6077), + [sym_noexcept] = STATE(4048), + [sym_throw_specifier] = STATE(4048), + [sym_requires_clause] = STATE(5317), + [aux_sym_type_definition_repeat1] = STATE(2302), + [aux_sym__type_definition_type_repeat1] = STATE(2463), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(6469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [aux_sym_preproc_if_token2] = ACTIONS(6471), + [aux_sym_preproc_else_token1] = ACTIONS(6471), + [aux_sym_preproc_elif_token1] = ACTIONS(6469), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6471), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_AMP] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6471), + [anon_sym_GT_GT] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(7166), + [anon_sym___attribute__] = ACTIONS(7168), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(7166), + [anon_sym_constexpr] = ACTIONS(7166), + [anon_sym_volatile] = ACTIONS(7166), + [anon_sym_restrict] = ACTIONS(7166), + [anon_sym___restrict__] = ACTIONS(7166), + [anon_sym__Atomic] = ACTIONS(7166), + [anon_sym__Noreturn] = ACTIONS(7166), + [anon_sym_noreturn] = ACTIONS(7166), + [anon_sym__Nonnull] = ACTIONS(7166), + [anon_sym_mutable] = ACTIONS(7166), + [anon_sym_constinit] = ACTIONS(7166), + [anon_sym_consteval] = ACTIONS(7166), + [anon_sym_alignas] = ACTIONS(7172), + [anon_sym__Alignas] = ACTIONS(7172), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6469), + [anon_sym_and] = ACTIONS(6469), + [anon_sym_bitor] = ACTIONS(6469), + [anon_sym_xor] = ACTIONS(6469), + [anon_sym_bitand] = ACTIONS(6469), + [anon_sym_not_eq] = ACTIONS(6469), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(7174), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7276), + [anon_sym_override] = ACTIONS(7276), + [anon_sym_noexcept] = ACTIONS(7179), + [anon_sym_throw] = ACTIONS(7181), + [anon_sym_requires] = ACTIONS(7279), }, [STATE(2079)] = { - [sym_attribute_specifier] = STATE(2316), - [sym_attribute_declaration] = STATE(4713), - [sym_type_qualifier] = STATE(2459), - [sym_alignas_qualifier] = STATE(2727), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym_ref_qualifier] = STATE(3631), - [sym__function_attributes_start] = STATE(3493), - [sym__function_exception_specification] = STATE(4102), - [sym__function_attributes_end] = STATE(6020), - [sym__function_postfix] = STATE(5415), - [sym_trailing_return_type] = STATE(6114), - [sym_noexcept] = STATE(4102), - [sym_throw_specifier] = STATE(4102), - [sym_requires_clause] = STATE(5415), - [aux_sym_type_definition_repeat1] = STATE(2316), - [aux_sym__type_definition_type_repeat1] = STATE(2459), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(6479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [aux_sym_preproc_if_token2] = ACTIONS(6481), - [aux_sym_preproc_else_token1] = ACTIONS(6481), - [aux_sym_preproc_elif_token1] = ACTIONS(6479), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(7168), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6481), - [anon_sym_AMP] = ACTIONS(7171), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6481), - [anon_sym_GT_GT] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(7182), - [anon_sym___attribute__] = ACTIONS(7178), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(7182), - [anon_sym_constexpr] = ACTIONS(7182), - [anon_sym_volatile] = ACTIONS(7182), - [anon_sym_restrict] = ACTIONS(7182), - [anon_sym___restrict__] = ACTIONS(7182), - [anon_sym__Atomic] = ACTIONS(7182), - [anon_sym__Noreturn] = ACTIONS(7182), - [anon_sym_noreturn] = ACTIONS(7182), - [anon_sym__Nonnull] = ACTIONS(7182), - [anon_sym_mutable] = ACTIONS(7182), - [anon_sym_constinit] = ACTIONS(7182), - [anon_sym_consteval] = ACTIONS(7182), - [anon_sym_alignas] = ACTIONS(7268), - [anon_sym__Alignas] = ACTIONS(7268), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6479), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6479), - [anon_sym_not_eq] = ACTIONS(6479), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(7270), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7273), - [anon_sym_override] = ACTIONS(7273), - [anon_sym_noexcept] = ACTIONS(7276), - [anon_sym_throw] = ACTIONS(7278), - [anon_sym_requires] = ACTIONS(7280), + [sym_template_argument_list] = STATE(2090), + [sym_identifier] = ACTIONS(6559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6566), + [anon_sym_COMMA] = ACTIONS(6566), + [anon_sym_RPAREN] = ACTIONS(6566), + [aux_sym_preproc_if_token2] = ACTIONS(6566), + [aux_sym_preproc_else_token1] = ACTIONS(6566), + [aux_sym_preproc_elif_token1] = ACTIONS(6559), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6566), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6566), + [anon_sym_LPAREN2] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6559), + [anon_sym_STAR] = ACTIONS(6559), + [anon_sym_SLASH] = ACTIONS(6559), + [anon_sym_PERCENT] = ACTIONS(6559), + [anon_sym_PIPE_PIPE] = ACTIONS(6566), + [anon_sym_AMP_AMP] = ACTIONS(6566), + [anon_sym_PIPE] = ACTIONS(6559), + [anon_sym_CARET] = ACTIONS(6559), + [anon_sym_AMP] = ACTIONS(6559), + [anon_sym_EQ_EQ] = ACTIONS(6566), + [anon_sym_BANG_EQ] = ACTIONS(6566), + [anon_sym_GT] = ACTIONS(6559), + [anon_sym_GT_EQ] = ACTIONS(6566), + [anon_sym_LT_EQ] = ACTIONS(6559), + [anon_sym_LT] = ACTIONS(7282), + [anon_sym_LT_LT] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6559), + [anon_sym_SEMI] = ACTIONS(6566), + [anon_sym___extension__] = ACTIONS(6559), + [anon_sym___attribute__] = ACTIONS(6559), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6566), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_RBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6566), + [anon_sym_EQ] = ACTIONS(6559), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6559), + [anon_sym_volatile] = ACTIONS(6559), + [anon_sym_restrict] = ACTIONS(6559), + [anon_sym___restrict__] = ACTIONS(6559), + [anon_sym__Atomic] = ACTIONS(6559), + [anon_sym__Noreturn] = ACTIONS(6559), + [anon_sym_noreturn] = ACTIONS(6559), + [anon_sym__Nonnull] = ACTIONS(6559), + [anon_sym_mutable] = ACTIONS(6559), + [anon_sym_constinit] = ACTIONS(6559), + [anon_sym_consteval] = ACTIONS(6559), + [anon_sym_alignas] = ACTIONS(6559), + [anon_sym__Alignas] = ACTIONS(6559), + [anon_sym_QMARK] = ACTIONS(6566), + [anon_sym_STAR_EQ] = ACTIONS(6566), + [anon_sym_SLASH_EQ] = ACTIONS(6566), + [anon_sym_PERCENT_EQ] = ACTIONS(6566), + [anon_sym_PLUS_EQ] = ACTIONS(6566), + [anon_sym_DASH_EQ] = ACTIONS(6566), + [anon_sym_LT_LT_EQ] = ACTIONS(6566), + [anon_sym_GT_GT_EQ] = ACTIONS(6566), + [anon_sym_AMP_EQ] = ACTIONS(6566), + [anon_sym_CARET_EQ] = ACTIONS(6566), + [anon_sym_PIPE_EQ] = ACTIONS(6566), + [anon_sym_and_eq] = ACTIONS(6559), + [anon_sym_or_eq] = ACTIONS(6559), + [anon_sym_xor_eq] = ACTIONS(6559), + [anon_sym_LT_EQ_GT] = ACTIONS(6566), + [anon_sym_or] = ACTIONS(6559), + [anon_sym_and] = ACTIONS(6559), + [anon_sym_bitor] = ACTIONS(6559), + [anon_sym_xor] = ACTIONS(6559), + [anon_sym_bitand] = ACTIONS(6559), + [anon_sym_not_eq] = ACTIONS(6559), + [anon_sym_DASH_DASH] = ACTIONS(6566), + [anon_sym_PLUS_PLUS] = ACTIONS(6566), + [anon_sym_DOT] = ACTIONS(6559), + [anon_sym_DOT_STAR] = ACTIONS(6566), + [anon_sym_DASH_GT] = ACTIONS(6566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6559), + [anon_sym_decltype] = ACTIONS(6559), + [anon_sym_final] = ACTIONS(6559), + [anon_sym_override] = ACTIONS(6559), + [anon_sym_requires] = ACTIONS(6559), + [anon_sym_COLON_RBRACK] = ACTIONS(6566), }, [STATE(2080)] = { - [sym_attribute_specifier] = STATE(2316), - [sym_attribute_declaration] = STATE(4713), - [sym_type_qualifier] = STATE(2459), - [sym_alignas_qualifier] = STATE(2727), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym_ref_qualifier] = STATE(3656), - [sym__function_attributes_start] = STATE(3569), - [sym__function_exception_specification] = STATE(4046), - [sym__function_attributes_end] = STATE(5949), - [sym__function_postfix] = STATE(5415), - [sym_trailing_return_type] = STATE(6111), - [sym_noexcept] = STATE(4046), - [sym_throw_specifier] = STATE(4046), - [sym_requires_clause] = STATE(5415), - [aux_sym_type_definition_repeat1] = STATE(2316), - [aux_sym__type_definition_type_repeat1] = STATE(2459), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(6479), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [aux_sym_preproc_if_token2] = ACTIONS(6481), - [aux_sym_preproc_else_token1] = ACTIONS(6481), - [aux_sym_preproc_elif_token1] = ACTIONS(6479), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6481), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(7168), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6481), - [anon_sym_AMP] = ACTIONS(7171), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6481), - [anon_sym_GT_GT] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(7182), - [anon_sym___attribute__] = ACTIONS(7178), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(7182), - [anon_sym_constexpr] = ACTIONS(7182), - [anon_sym_volatile] = ACTIONS(7182), - [anon_sym_restrict] = ACTIONS(7182), - [anon_sym___restrict__] = ACTIONS(7182), - [anon_sym__Atomic] = ACTIONS(7182), - [anon_sym__Noreturn] = ACTIONS(7182), - [anon_sym_noreturn] = ACTIONS(7182), - [anon_sym__Nonnull] = ACTIONS(7182), - [anon_sym_mutable] = ACTIONS(7182), - [anon_sym_constinit] = ACTIONS(7182), - [anon_sym_consteval] = ACTIONS(7182), - [anon_sym_alignas] = ACTIONS(7268), - [anon_sym__Alignas] = ACTIONS(7268), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6479), - [anon_sym_and] = ACTIONS(6479), - [anon_sym_bitor] = ACTIONS(6479), - [anon_sym_xor] = ACTIONS(6479), - [anon_sym_bitand] = ACTIONS(6479), - [anon_sym_not_eq] = ACTIONS(6479), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(7270), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7283), - [anon_sym_override] = ACTIONS(7283), - [anon_sym_noexcept] = ACTIONS(7276), - [anon_sym_throw] = ACTIONS(7278), - [anon_sym_requires] = ACTIONS(7285), + [sym_identifier] = ACTIONS(6586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_RPAREN] = ACTIONS(6588), + [aux_sym_preproc_if_token2] = ACTIONS(6588), + [aux_sym_preproc_else_token1] = ACTIONS(6588), + [aux_sym_preproc_elif_token1] = ACTIONS(6586), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6588), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6586), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6586), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6586), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6586), + [anon_sym_GT_GT] = ACTIONS(6586), + [anon_sym_SEMI] = ACTIONS(6588), + [anon_sym___extension__] = ACTIONS(6586), + [anon_sym___attribute__] = ACTIONS(6586), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6588), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_RBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6588), + [anon_sym_EQ] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6586), + [anon_sym_volatile] = ACTIONS(6586), + [anon_sym_restrict] = ACTIONS(6586), + [anon_sym___restrict__] = ACTIONS(6586), + [anon_sym__Atomic] = ACTIONS(6586), + [anon_sym__Noreturn] = ACTIONS(6586), + [anon_sym_noreturn] = ACTIONS(6586), + [anon_sym__Nonnull] = ACTIONS(6586), + [anon_sym_mutable] = ACTIONS(6586), + [anon_sym_constinit] = ACTIONS(6586), + [anon_sym_consteval] = ACTIONS(6586), + [anon_sym_alignas] = ACTIONS(6586), + [anon_sym__Alignas] = ACTIONS(6586), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_STAR_EQ] = ACTIONS(6588), + [anon_sym_SLASH_EQ] = ACTIONS(6588), + [anon_sym_PERCENT_EQ] = ACTIONS(6588), + [anon_sym_PLUS_EQ] = ACTIONS(6588), + [anon_sym_DASH_EQ] = ACTIONS(6588), + [anon_sym_LT_LT_EQ] = ACTIONS(6588), + [anon_sym_GT_GT_EQ] = ACTIONS(6588), + [anon_sym_AMP_EQ] = ACTIONS(6588), + [anon_sym_CARET_EQ] = ACTIONS(6588), + [anon_sym_PIPE_EQ] = ACTIONS(6588), + [anon_sym_and_eq] = ACTIONS(6586), + [anon_sym_or_eq] = ACTIONS(6586), + [anon_sym_xor_eq] = ACTIONS(6586), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6586), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6586), + [anon_sym_not_eq] = ACTIONS(6586), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6586), + [anon_sym_decltype] = ACTIONS(6586), + [anon_sym_final] = ACTIONS(6586), + [anon_sym_override] = ACTIONS(6586), + [anon_sym_requires] = ACTIONS(6586), + [anon_sym_COLON_RBRACK] = ACTIONS(6588), }, [STATE(2081)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2082), - [sym_ms_pointer_modifier] = STATE(2068), - [sym__abstract_declarator] = STATE(4804), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2381), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1979), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2381), - [aux_sym_pointer_declarator_repeat1] = STATE(2068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(7162), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(7164), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(7166), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym_SEMI] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6861), - [sym_ms_restrict_modifier] = ACTIONS(6835), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(6851), - [sym_ms_signed_ptr_modifier] = ACTIONS(6851), - [anon_sym__unaligned] = ACTIONS(6853), - [anon_sym___unaligned] = ACTIONS(6853), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6859), - [anon_sym_or_eq] = ACTIONS(6859), - [anon_sym_xor_eq] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_identifier] = ACTIONS(6606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [aux_sym_preproc_if_token2] = ACTIONS(6608), + [aux_sym_preproc_else_token1] = ACTIONS(6608), + [aux_sym_preproc_elif_token1] = ACTIONS(6606), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6608), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6606), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym_SEMI] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6606), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_RBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6606), + [anon_sym_volatile] = ACTIONS(6606), + [anon_sym_restrict] = ACTIONS(6606), + [anon_sym___restrict__] = ACTIONS(6606), + [anon_sym__Atomic] = ACTIONS(6606), + [anon_sym__Noreturn] = ACTIONS(6606), + [anon_sym_noreturn] = ACTIONS(6606), + [anon_sym__Nonnull] = ACTIONS(6606), + [anon_sym_mutable] = ACTIONS(6606), + [anon_sym_constinit] = ACTIONS(6606), + [anon_sym_consteval] = ACTIONS(6606), + [anon_sym_alignas] = ACTIONS(6606), + [anon_sym__Alignas] = ACTIONS(6606), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_STAR_EQ] = ACTIONS(6608), + [anon_sym_SLASH_EQ] = ACTIONS(6608), + [anon_sym_PERCENT_EQ] = ACTIONS(6608), + [anon_sym_PLUS_EQ] = ACTIONS(6608), + [anon_sym_DASH_EQ] = ACTIONS(6608), + [anon_sym_LT_LT_EQ] = ACTIONS(6608), + [anon_sym_GT_GT_EQ] = ACTIONS(6608), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_and_eq] = ACTIONS(6606), + [anon_sym_or_eq] = ACTIONS(6606), + [anon_sym_xor_eq] = ACTIONS(6606), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6606), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6606), + [anon_sym_not_eq] = ACTIONS(6606), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6606), + [anon_sym_decltype] = ACTIONS(6606), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_COLON_RBRACK] = ACTIONS(6608), }, [STATE(2082)] = { - [sym_identifier] = ACTIONS(7287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), - [aux_sym_preproc_if_token2] = ACTIONS(7289), - [aux_sym_preproc_else_token1] = ACTIONS(7289), - [aux_sym_preproc_elif_token1] = ACTIONS(7287), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7289), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym_SEMI] = ACTIONS(7289), - [anon_sym___extension__] = ACTIONS(7287), - [anon_sym___attribute__] = ACTIONS(7287), - [anon_sym___attribute] = ACTIONS(7287), - [anon_sym_COLON] = ACTIONS(7287), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), - [sym_ms_restrict_modifier] = ACTIONS(7287), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7287), - [sym_ms_signed_ptr_modifier] = ACTIONS(7287), - [anon_sym__unaligned] = ACTIONS(7287), - [anon_sym___unaligned] = ACTIONS(7287), - [anon_sym_RBRACE] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7287), - [anon_sym_volatile] = ACTIONS(7287), - [anon_sym_restrict] = ACTIONS(7287), - [anon_sym___restrict__] = ACTIONS(7287), - [anon_sym__Atomic] = ACTIONS(7287), - [anon_sym__Noreturn] = ACTIONS(7287), - [anon_sym_noreturn] = ACTIONS(7287), - [anon_sym__Nonnull] = ACTIONS(7287), - [anon_sym_mutable] = ACTIONS(7287), - [anon_sym_constinit] = ACTIONS(7287), - [anon_sym_consteval] = ACTIONS(7287), - [anon_sym_alignas] = ACTIONS(7287), - [anon_sym__Alignas] = ACTIONS(7287), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7289), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_and_eq] = ACTIONS(7287), - [anon_sym_or_eq] = ACTIONS(7287), - [anon_sym_xor_eq] = ACTIONS(7287), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7287), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7287), - [anon_sym_not_eq] = ACTIONS(7287), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7289), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7287), - [anon_sym_override] = ACTIONS(7287), - [anon_sym_requires] = ACTIONS(7287), - [anon_sym_COLON_RBRACK] = ACTIONS(7289), + [sym_identifier] = ACTIONS(6590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_RPAREN] = ACTIONS(6592), + [aux_sym_preproc_if_token2] = ACTIONS(6592), + [aux_sym_preproc_else_token1] = ACTIONS(6592), + [aux_sym_preproc_elif_token1] = ACTIONS(6590), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6592), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6590), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6590), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6590), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6590), + [anon_sym_GT_GT] = ACTIONS(6590), + [anon_sym_SEMI] = ACTIONS(6592), + [anon_sym___extension__] = ACTIONS(6590), + [anon_sym___attribute__] = ACTIONS(6590), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6592), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_RBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6592), + [anon_sym_EQ] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6590), + [anon_sym_volatile] = ACTIONS(6590), + [anon_sym_restrict] = ACTIONS(6590), + [anon_sym___restrict__] = ACTIONS(6590), + [anon_sym__Atomic] = ACTIONS(6590), + [anon_sym__Noreturn] = ACTIONS(6590), + [anon_sym_noreturn] = ACTIONS(6590), + [anon_sym__Nonnull] = ACTIONS(6590), + [anon_sym_mutable] = ACTIONS(6590), + [anon_sym_constinit] = ACTIONS(6590), + [anon_sym_consteval] = ACTIONS(6590), + [anon_sym_alignas] = ACTIONS(6590), + [anon_sym__Alignas] = ACTIONS(6590), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_STAR_EQ] = ACTIONS(6592), + [anon_sym_SLASH_EQ] = ACTIONS(6592), + [anon_sym_PERCENT_EQ] = ACTIONS(6592), + [anon_sym_PLUS_EQ] = ACTIONS(6592), + [anon_sym_DASH_EQ] = ACTIONS(6592), + [anon_sym_LT_LT_EQ] = ACTIONS(6592), + [anon_sym_GT_GT_EQ] = ACTIONS(6592), + [anon_sym_AMP_EQ] = ACTIONS(6592), + [anon_sym_CARET_EQ] = ACTIONS(6592), + [anon_sym_PIPE_EQ] = ACTIONS(6592), + [anon_sym_and_eq] = ACTIONS(6590), + [anon_sym_or_eq] = ACTIONS(6590), + [anon_sym_xor_eq] = ACTIONS(6590), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6590), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6590), + [anon_sym_not_eq] = ACTIONS(6590), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6590), + [anon_sym_decltype] = ACTIONS(6590), + [anon_sym_final] = ACTIONS(6590), + [anon_sym_override] = ACTIONS(6590), + [anon_sym_requires] = ACTIONS(6590), + [anon_sym_COLON_RBRACK] = ACTIONS(6592), }, [STATE(2083)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [aux_sym_preproc_if_token2] = ACTIONS(7293), - [aux_sym_preproc_else_token1] = ACTIONS(7293), - [aux_sym_preproc_elif_token1] = ACTIONS(7291), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_SEMI] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_RBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7291), - [anon_sym_or_eq] = ACTIONS(7291), - [anon_sym_xor_eq] = ACTIONS(7291), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7291), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7291), - [anon_sym_not_eq] = ACTIONS(7291), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_requires] = ACTIONS(7291), - [anon_sym_COLON_RBRACK] = ACTIONS(7293), + [sym_ms_unaligned_ptr_modifier] = STATE(2625), + [sym_ms_pointer_modifier] = STATE(2091), + [sym__abstract_declarator] = STATE(5217), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2407), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2407), + [aux_sym_pointer_declarator_repeat1] = STATE(2091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(7285), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(7287), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(7289), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(6983), + [sym_ms_restrict_modifier] = ACTIONS(6985), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6987), + [sym_ms_signed_ptr_modifier] = ACTIONS(6987), + [anon_sym__unaligned] = ACTIONS(6989), + [anon_sym___unaligned] = ACTIONS(6989), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6815), }, [STATE(2084)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2618), - [sym_ms_pointer_modifier] = STATE(2085), - [sym__abstract_declarator] = STATE(5050), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2395), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1974), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2395), - [aux_sym_pointer_declarator_repeat1] = STATE(2085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(7014), - [sym_ms_restrict_modifier] = ACTIONS(7016), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7018), - [sym_ms_signed_ptr_modifier] = ACTIONS(7018), - [anon_sym__unaligned] = ACTIONS(7020), - [anon_sym___unaligned] = ACTIONS(7020), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6859), - [anon_sym_or_eq] = ACTIONS(6859), - [anon_sym_xor_eq] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6861), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6859), + [sym_identifier] = ACTIONS(6610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [aux_sym_preproc_if_token2] = ACTIONS(6612), + [aux_sym_preproc_else_token1] = ACTIONS(6612), + [aux_sym_preproc_elif_token1] = ACTIONS(6610), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym_SEMI] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_RBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_STAR_EQ] = ACTIONS(6612), + [anon_sym_SLASH_EQ] = ACTIONS(6612), + [anon_sym_PERCENT_EQ] = ACTIONS(6612), + [anon_sym_PLUS_EQ] = ACTIONS(6612), + [anon_sym_DASH_EQ] = ACTIONS(6612), + [anon_sym_LT_LT_EQ] = ACTIONS(6612), + [anon_sym_GT_GT_EQ] = ACTIONS(6612), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_and_eq] = ACTIONS(6610), + [anon_sym_or_eq] = ACTIONS(6610), + [anon_sym_xor_eq] = ACTIONS(6610), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_requires] = ACTIONS(6610), + [anon_sym_COLON_RBRACK] = ACTIONS(6612), }, [STATE(2085)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2618), - [sym_ms_pointer_modifier] = STATE(2429), - [sym__abstract_declarator] = STATE(5151), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2417), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1974), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2417), - [aux_sym_pointer_declarator_repeat1] = STATE(2429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7014), - [sym_ms_restrict_modifier] = ACTIONS(7016), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7018), - [sym_ms_signed_ptr_modifier] = ACTIONS(7018), - [anon_sym__unaligned] = ACTIONS(7020), - [anon_sym___unaligned] = ACTIONS(7020), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6821), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6823), + [sym_identifier] = ACTIONS(6614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [aux_sym_preproc_if_token2] = ACTIONS(6616), + [aux_sym_preproc_else_token1] = ACTIONS(6616), + [aux_sym_preproc_elif_token1] = ACTIONS(6614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_RBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_STAR_EQ] = ACTIONS(6616), + [anon_sym_SLASH_EQ] = ACTIONS(6616), + [anon_sym_PERCENT_EQ] = ACTIONS(6616), + [anon_sym_PLUS_EQ] = ACTIONS(6616), + [anon_sym_DASH_EQ] = ACTIONS(6616), + [anon_sym_LT_LT_EQ] = ACTIONS(6616), + [anon_sym_GT_GT_EQ] = ACTIONS(6616), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_and_eq] = ACTIONS(6614), + [anon_sym_or_eq] = ACTIONS(6614), + [anon_sym_xor_eq] = ACTIONS(6614), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_COLON_RBRACK] = ACTIONS(6616), }, [STATE(2086)] = { - [sym_identifier] = ACTIONS(7301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), - [anon_sym_COMMA] = ACTIONS(7303), - [anon_sym_RPAREN] = ACTIONS(7303), - [aux_sym_preproc_if_token2] = ACTIONS(7303), - [aux_sym_preproc_else_token1] = ACTIONS(7303), - [aux_sym_preproc_elif_token1] = ACTIONS(7301), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7303), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7303), - [anon_sym_LPAREN2] = ACTIONS(7303), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_STAR] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7301), - [anon_sym_PERCENT] = ACTIONS(7301), - [anon_sym_PIPE_PIPE] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7303), - [anon_sym_PIPE] = ACTIONS(7301), - [anon_sym_CARET] = ACTIONS(7301), - [anon_sym_AMP] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7303), - [anon_sym_BANG_EQ] = ACTIONS(7303), - [anon_sym_GT] = ACTIONS(7301), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_LT_EQ] = ACTIONS(7301), - [anon_sym_LT] = ACTIONS(7301), - [anon_sym_LT_LT] = ACTIONS(7301), - [anon_sym_GT_GT] = ACTIONS(7301), - [anon_sym_SEMI] = ACTIONS(7303), - [anon_sym___extension__] = ACTIONS(7301), - [anon_sym___attribute__] = ACTIONS(7301), - [anon_sym___attribute] = ACTIONS(7301), - [anon_sym_COLON] = ACTIONS(7301), - [anon_sym_COLON_COLON] = ACTIONS(7303), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7303), - [anon_sym_LBRACE] = ACTIONS(7303), - [anon_sym_RBRACE] = ACTIONS(7303), - [anon_sym_LBRACK] = ACTIONS(7303), - [anon_sym_EQ] = ACTIONS(7301), - [anon_sym_const] = ACTIONS(7301), - [anon_sym_constexpr] = ACTIONS(7301), - [anon_sym_volatile] = ACTIONS(7301), - [anon_sym_restrict] = ACTIONS(7301), - [anon_sym___restrict__] = ACTIONS(7301), - [anon_sym__Atomic] = ACTIONS(7301), - [anon_sym__Noreturn] = ACTIONS(7301), - [anon_sym_noreturn] = ACTIONS(7301), - [anon_sym__Nonnull] = ACTIONS(7301), - [anon_sym_mutable] = ACTIONS(7301), - [anon_sym_constinit] = ACTIONS(7301), - [anon_sym_consteval] = ACTIONS(7301), - [anon_sym_alignas] = ACTIONS(7301), - [anon_sym__Alignas] = ACTIONS(7301), - [anon_sym_QMARK] = ACTIONS(7303), - [anon_sym_STAR_EQ] = ACTIONS(7303), - [anon_sym_SLASH_EQ] = ACTIONS(7303), - [anon_sym_PERCENT_EQ] = ACTIONS(7303), - [anon_sym_PLUS_EQ] = ACTIONS(7303), - [anon_sym_DASH_EQ] = ACTIONS(7303), - [anon_sym_LT_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_GT_EQ] = ACTIONS(7303), - [anon_sym_AMP_EQ] = ACTIONS(7303), - [anon_sym_CARET_EQ] = ACTIONS(7303), - [anon_sym_PIPE_EQ] = ACTIONS(7303), - [anon_sym_and_eq] = ACTIONS(7301), - [anon_sym_or_eq] = ACTIONS(7301), - [anon_sym_xor_eq] = ACTIONS(7301), - [anon_sym_LT_EQ_GT] = ACTIONS(7303), - [anon_sym_or] = ACTIONS(7301), - [anon_sym_and] = ACTIONS(7301), - [anon_sym_bitor] = ACTIONS(7301), - [anon_sym_xor] = ACTIONS(7301), - [anon_sym_bitand] = ACTIONS(7301), - [anon_sym_not_eq] = ACTIONS(7301), - [anon_sym_DASH_DASH] = ACTIONS(7303), - [anon_sym_PLUS_PLUS] = ACTIONS(7303), - [anon_sym_DOT] = ACTIONS(7301), - [anon_sym_DOT_STAR] = ACTIONS(7303), - [anon_sym_DASH_GT] = ACTIONS(7303), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7301), - [anon_sym_decltype] = ACTIONS(7301), - [anon_sym_final] = ACTIONS(7301), - [anon_sym_override] = ACTIONS(7301), - [anon_sym_requires] = ACTIONS(7301), - [anon_sym_COLON_RBRACK] = ACTIONS(7303), + [sym_identifier] = ACTIONS(6596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [aux_sym_preproc_if_token2] = ACTIONS(6598), + [aux_sym_preproc_else_token1] = ACTIONS(6598), + [aux_sym_preproc_elif_token1] = ACTIONS(6596), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6598), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6596), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym_SEMI] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6596), + [anon_sym___attribute__] = ACTIONS(6596), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_RBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6596), + [anon_sym_volatile] = ACTIONS(6596), + [anon_sym_restrict] = ACTIONS(6596), + [anon_sym___restrict__] = ACTIONS(6596), + [anon_sym__Atomic] = ACTIONS(6596), + [anon_sym__Noreturn] = ACTIONS(6596), + [anon_sym_noreturn] = ACTIONS(6596), + [anon_sym__Nonnull] = ACTIONS(6596), + [anon_sym_mutable] = ACTIONS(6596), + [anon_sym_constinit] = ACTIONS(6596), + [anon_sym_consteval] = ACTIONS(6596), + [anon_sym_alignas] = ACTIONS(6596), + [anon_sym__Alignas] = ACTIONS(6596), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6596), + [anon_sym_or_eq] = ACTIONS(6596), + [anon_sym_xor_eq] = ACTIONS(6596), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6596), + [anon_sym_decltype] = ACTIONS(6596), + [anon_sym_final] = ACTIONS(6596), + [anon_sym_override] = ACTIONS(6596), + [anon_sym_requires] = ACTIONS(6596), + [anon_sym_COLON_RBRACK] = ACTIONS(6598), }, [STATE(2087)] = { - [sym_decltype_auto] = STATE(2238), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7229), - [anon_sym_decltype] = ACTIONS(6819), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [sym_identifier] = ACTIONS(6602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [aux_sym_preproc_if_token2] = ACTIONS(6604), + [aux_sym_preproc_else_token1] = ACTIONS(6604), + [aux_sym_preproc_elif_token1] = ACTIONS(6602), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6604), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym_SEMI] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(6602), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6604), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_RBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6604), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_STAR_EQ] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [anon_sym_PERCENT_EQ] = ACTIONS(6604), + [anon_sym_PLUS_EQ] = ACTIONS(6604), + [anon_sym_DASH_EQ] = ACTIONS(6604), + [anon_sym_LT_LT_EQ] = ACTIONS(6604), + [anon_sym_GT_GT_EQ] = ACTIONS(6604), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_and_eq] = ACTIONS(6602), + [anon_sym_or_eq] = ACTIONS(6602), + [anon_sym_xor_eq] = ACTIONS(6602), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6602), + [anon_sym_decltype] = ACTIONS(6602), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_COLON_RBRACK] = ACTIONS(6604), }, [STATE(2088)] = { - [sym_identifier] = ACTIONS(6632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_RPAREN] = ACTIONS(6634), - [aux_sym_preproc_if_token2] = ACTIONS(6634), - [aux_sym_preproc_else_token1] = ACTIONS(6634), - [aux_sym_preproc_elif_token1] = ACTIONS(6632), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6634), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6632), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6632), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6632), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6632), - [anon_sym_GT_GT] = ACTIONS(6632), - [anon_sym_SEMI] = ACTIONS(6634), - [anon_sym___extension__] = ACTIONS(6632), - [anon_sym___attribute__] = ACTIONS(6632), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6634), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_RBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6634), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6632), - [anon_sym_volatile] = ACTIONS(6632), - [anon_sym_restrict] = ACTIONS(6632), - [anon_sym___restrict__] = ACTIONS(6632), - [anon_sym__Atomic] = ACTIONS(6632), - [anon_sym__Noreturn] = ACTIONS(6632), - [anon_sym_noreturn] = ACTIONS(6632), - [anon_sym__Nonnull] = ACTIONS(6632), - [anon_sym_mutable] = ACTIONS(6632), - [anon_sym_constinit] = ACTIONS(6632), - [anon_sym_consteval] = ACTIONS(6632), - [anon_sym_alignas] = ACTIONS(6632), - [anon_sym__Alignas] = ACTIONS(6632), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_STAR_EQ] = ACTIONS(6634), - [anon_sym_SLASH_EQ] = ACTIONS(6634), - [anon_sym_PERCENT_EQ] = ACTIONS(6634), - [anon_sym_PLUS_EQ] = ACTIONS(6634), - [anon_sym_DASH_EQ] = ACTIONS(6634), - [anon_sym_LT_LT_EQ] = ACTIONS(6634), - [anon_sym_GT_GT_EQ] = ACTIONS(6634), - [anon_sym_AMP_EQ] = ACTIONS(6634), - [anon_sym_CARET_EQ] = ACTIONS(6634), - [anon_sym_PIPE_EQ] = ACTIONS(6634), - [anon_sym_and_eq] = ACTIONS(6632), - [anon_sym_or_eq] = ACTIONS(6632), - [anon_sym_xor_eq] = ACTIONS(6632), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6632), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6632), - [anon_sym_not_eq] = ACTIONS(6632), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6632), - [anon_sym_decltype] = ACTIONS(6632), - [anon_sym_final] = ACTIONS(6632), - [anon_sym_override] = ACTIONS(6632), - [anon_sym_requires] = ACTIONS(6632), - [anon_sym_COLON_RBRACK] = ACTIONS(6634), + [sym_decltype_auto] = STATE(2186), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7246), + [anon_sym_or_eq] = ACTIONS(7246), + [anon_sym_xor_eq] = ACTIONS(7246), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7252), + [anon_sym_decltype] = ACTIONS(6758), + [anon_sym_final] = ACTIONS(7246), + [anon_sym_override] = ACTIONS(7246), + [anon_sym_requires] = ACTIONS(7246), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), }, [STATE(2089)] = { - [sym_identifier] = ACTIONS(6624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_RPAREN] = ACTIONS(6626), - [aux_sym_preproc_if_token2] = ACTIONS(6626), - [aux_sym_preproc_else_token1] = ACTIONS(6626), - [aux_sym_preproc_elif_token1] = ACTIONS(6624), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6626), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6624), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6624), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6624), - [anon_sym_GT_GT] = ACTIONS(6624), - [anon_sym_SEMI] = ACTIONS(6626), - [anon_sym___extension__] = ACTIONS(6624), - [anon_sym___attribute__] = ACTIONS(6624), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6626), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_RBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6626), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6624), - [anon_sym_volatile] = ACTIONS(6624), - [anon_sym_restrict] = ACTIONS(6624), - [anon_sym___restrict__] = ACTIONS(6624), - [anon_sym__Atomic] = ACTIONS(6624), - [anon_sym__Noreturn] = ACTIONS(6624), - [anon_sym_noreturn] = ACTIONS(6624), - [anon_sym__Nonnull] = ACTIONS(6624), - [anon_sym_mutable] = ACTIONS(6624), - [anon_sym_constinit] = ACTIONS(6624), - [anon_sym_consteval] = ACTIONS(6624), - [anon_sym_alignas] = ACTIONS(6624), - [anon_sym__Alignas] = ACTIONS(6624), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_STAR_EQ] = ACTIONS(6626), - [anon_sym_SLASH_EQ] = ACTIONS(6626), - [anon_sym_PERCENT_EQ] = ACTIONS(6626), - [anon_sym_PLUS_EQ] = ACTIONS(6626), - [anon_sym_DASH_EQ] = ACTIONS(6626), - [anon_sym_LT_LT_EQ] = ACTIONS(6626), - [anon_sym_GT_GT_EQ] = ACTIONS(6626), - [anon_sym_AMP_EQ] = ACTIONS(6626), - [anon_sym_CARET_EQ] = ACTIONS(6626), - [anon_sym_PIPE_EQ] = ACTIONS(6626), - [anon_sym_and_eq] = ACTIONS(6624), - [anon_sym_or_eq] = ACTIONS(6624), - [anon_sym_xor_eq] = ACTIONS(6624), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6624), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6624), - [anon_sym_not_eq] = ACTIONS(6624), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6624), - [anon_sym_decltype] = ACTIONS(6624), - [anon_sym_final] = ACTIONS(6624), - [anon_sym_override] = ACTIONS(6624), - [anon_sym_requires] = ACTIONS(6624), - [anon_sym_COLON_RBRACK] = ACTIONS(6626), + [sym_ms_unaligned_ptr_modifier] = STATE(2939), + [sym_ms_pointer_modifier] = STATE(2629), + [sym__abstract_declarator] = STATE(5242), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2432), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1990), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2432), + [aux_sym_pointer_declarator_repeat1] = STATE(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7295), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7297), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7299), + [sym_ms_restrict_modifier] = ACTIONS(7301), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7303), + [sym_ms_signed_ptr_modifier] = ACTIONS(7303), + [anon_sym__unaligned] = ACTIONS(7305), + [anon_sym___unaligned] = ACTIONS(7305), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6841), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + [anon_sym_DASH_GT_STAR] = ACTIONS(6843), }, [STATE(2090)] = { - [sym_identifier] = ACTIONS(6594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), - [anon_sym_COMMA] = ACTIONS(6601), - [anon_sym_RPAREN] = ACTIONS(6601), - [aux_sym_preproc_if_token2] = ACTIONS(6601), - [aux_sym_preproc_else_token1] = ACTIONS(6601), - [aux_sym_preproc_elif_token1] = ACTIONS(6594), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6601), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6601), - [anon_sym_LPAREN2] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6594), - [anon_sym_PLUS] = ACTIONS(6594), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(6594), - [anon_sym_PERCENT] = ACTIONS(6594), - [anon_sym_PIPE_PIPE] = ACTIONS(6601), - [anon_sym_AMP_AMP] = ACTIONS(6601), - [anon_sym_PIPE] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6594), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_EQ_EQ] = ACTIONS(6601), - [anon_sym_BANG_EQ] = ACTIONS(6601), - [anon_sym_GT] = ACTIONS(6594), - [anon_sym_GT_EQ] = ACTIONS(6601), - [anon_sym_LT_EQ] = ACTIONS(6594), - [anon_sym_LT] = ACTIONS(6594), - [anon_sym_LT_LT] = ACTIONS(6594), - [anon_sym_GT_GT] = ACTIONS(6594), - [anon_sym_SEMI] = ACTIONS(6601), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_RBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6601), - [anon_sym_EQ] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6601), - [anon_sym_STAR_EQ] = ACTIONS(6601), - [anon_sym_SLASH_EQ] = ACTIONS(6601), - [anon_sym_PERCENT_EQ] = ACTIONS(6601), - [anon_sym_PLUS_EQ] = ACTIONS(6601), - [anon_sym_DASH_EQ] = ACTIONS(6601), - [anon_sym_LT_LT_EQ] = ACTIONS(6601), - [anon_sym_GT_GT_EQ] = ACTIONS(6601), - [anon_sym_AMP_EQ] = ACTIONS(6601), - [anon_sym_CARET_EQ] = ACTIONS(6601), - [anon_sym_PIPE_EQ] = ACTIONS(6601), - [anon_sym_and_eq] = ACTIONS(6594), - [anon_sym_or_eq] = ACTIONS(6594), - [anon_sym_xor_eq] = ACTIONS(6594), - [anon_sym_LT_EQ_GT] = ACTIONS(6601), - [anon_sym_or] = ACTIONS(6594), - [anon_sym_and] = ACTIONS(6594), - [anon_sym_bitor] = ACTIONS(6594), - [anon_sym_xor] = ACTIONS(6594), - [anon_sym_bitand] = ACTIONS(6594), - [anon_sym_not_eq] = ACTIONS(6594), - [anon_sym_DASH_DASH] = ACTIONS(6601), - [anon_sym_PLUS_PLUS] = ACTIONS(6601), - [anon_sym_DOT] = ACTIONS(6594), - [anon_sym_DOT_STAR] = ACTIONS(6601), - [anon_sym_DASH_GT] = ACTIONS(6601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_final] = ACTIONS(6594), - [anon_sym_override] = ACTIONS(6594), - [anon_sym_requires] = ACTIONS(6594), - [anon_sym_COLON_RBRACK] = ACTIONS(6601), + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(6656), + [aux_sym_preproc_if_token2] = ACTIONS(6656), + [aux_sym_preproc_else_token1] = ACTIONS(6656), + [aux_sym_preproc_elif_token1] = ACTIONS(6649), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6656), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6656), + [anon_sym_LPAREN2] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6649), + [anon_sym_PLUS] = ACTIONS(6649), + [anon_sym_STAR] = ACTIONS(6649), + [anon_sym_SLASH] = ACTIONS(6649), + [anon_sym_PERCENT] = ACTIONS(6649), + [anon_sym_PIPE_PIPE] = ACTIONS(6656), + [anon_sym_AMP_AMP] = ACTIONS(6656), + [anon_sym_PIPE] = ACTIONS(6649), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6649), + [anon_sym_EQ_EQ] = ACTIONS(6656), + [anon_sym_BANG_EQ] = ACTIONS(6656), + [anon_sym_GT] = ACTIONS(6649), + [anon_sym_GT_EQ] = ACTIONS(6656), + [anon_sym_LT_EQ] = ACTIONS(6649), + [anon_sym_LT] = ACTIONS(6649), + [anon_sym_LT_LT] = ACTIONS(6649), + [anon_sym_GT_GT] = ACTIONS(6649), + [anon_sym_SEMI] = ACTIONS(6656), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_RBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6656), + [anon_sym_EQ] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6656), + [anon_sym_STAR_EQ] = ACTIONS(6656), + [anon_sym_SLASH_EQ] = ACTIONS(6656), + [anon_sym_PERCENT_EQ] = ACTIONS(6656), + [anon_sym_PLUS_EQ] = ACTIONS(6656), + [anon_sym_DASH_EQ] = ACTIONS(6656), + [anon_sym_LT_LT_EQ] = ACTIONS(6656), + [anon_sym_GT_GT_EQ] = ACTIONS(6656), + [anon_sym_AMP_EQ] = ACTIONS(6656), + [anon_sym_CARET_EQ] = ACTIONS(6656), + [anon_sym_PIPE_EQ] = ACTIONS(6656), + [anon_sym_and_eq] = ACTIONS(6649), + [anon_sym_or_eq] = ACTIONS(6649), + [anon_sym_xor_eq] = ACTIONS(6649), + [anon_sym_LT_EQ_GT] = ACTIONS(6656), + [anon_sym_or] = ACTIONS(6649), + [anon_sym_and] = ACTIONS(6649), + [anon_sym_bitor] = ACTIONS(6649), + [anon_sym_xor] = ACTIONS(6649), + [anon_sym_bitand] = ACTIONS(6649), + [anon_sym_not_eq] = ACTIONS(6649), + [anon_sym_DASH_DASH] = ACTIONS(6656), + [anon_sym_PLUS_PLUS] = ACTIONS(6656), + [anon_sym_DOT] = ACTIONS(6649), + [anon_sym_DOT_STAR] = ACTIONS(6656), + [anon_sym_DASH_GT] = ACTIONS(6656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_final] = ACTIONS(6649), + [anon_sym_override] = ACTIONS(6649), + [anon_sym_requires] = ACTIONS(6649), + [anon_sym_COLON_RBRACK] = ACTIONS(6656), }, [STATE(2091)] = { - [sym_identifier] = ACTIONS(6628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_RPAREN] = ACTIONS(6630), - [aux_sym_preproc_if_token2] = ACTIONS(6630), - [aux_sym_preproc_else_token1] = ACTIONS(6630), - [aux_sym_preproc_elif_token1] = ACTIONS(6628), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6630), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6628), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6628), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6628), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6628), - [anon_sym_GT_GT] = ACTIONS(6628), - [anon_sym_SEMI] = ACTIONS(6630), - [anon_sym___extension__] = ACTIONS(6628), - [anon_sym___attribute__] = ACTIONS(6628), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_RBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6630), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6628), - [anon_sym_volatile] = ACTIONS(6628), - [anon_sym_restrict] = ACTIONS(6628), - [anon_sym___restrict__] = ACTIONS(6628), - [anon_sym__Atomic] = ACTIONS(6628), - [anon_sym__Noreturn] = ACTIONS(6628), - [anon_sym_noreturn] = ACTIONS(6628), - [anon_sym__Nonnull] = ACTIONS(6628), - [anon_sym_mutable] = ACTIONS(6628), - [anon_sym_constinit] = ACTIONS(6628), - [anon_sym_consteval] = ACTIONS(6628), - [anon_sym_alignas] = ACTIONS(6628), - [anon_sym__Alignas] = ACTIONS(6628), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_STAR_EQ] = ACTIONS(6630), - [anon_sym_SLASH_EQ] = ACTIONS(6630), - [anon_sym_PERCENT_EQ] = ACTIONS(6630), - [anon_sym_PLUS_EQ] = ACTIONS(6630), - [anon_sym_DASH_EQ] = ACTIONS(6630), - [anon_sym_LT_LT_EQ] = ACTIONS(6630), - [anon_sym_GT_GT_EQ] = ACTIONS(6630), - [anon_sym_AMP_EQ] = ACTIONS(6630), - [anon_sym_CARET_EQ] = ACTIONS(6630), - [anon_sym_PIPE_EQ] = ACTIONS(6630), - [anon_sym_and_eq] = ACTIONS(6628), - [anon_sym_or_eq] = ACTIONS(6628), - [anon_sym_xor_eq] = ACTIONS(6628), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6628), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6628), - [anon_sym_not_eq] = ACTIONS(6628), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6628), - [anon_sym_decltype] = ACTIONS(6628), - [anon_sym_final] = ACTIONS(6628), - [anon_sym_override] = ACTIONS(6628), - [anon_sym_requires] = ACTIONS(6628), - [anon_sym_COLON_RBRACK] = ACTIONS(6630), + [sym_ms_unaligned_ptr_modifier] = STATE(2625), + [sym_ms_pointer_modifier] = STATE(2399), + [sym__abstract_declarator] = STATE(5131), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2389), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2389), + [aux_sym_pointer_declarator_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7285), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7287), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7289), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6983), + [sym_ms_restrict_modifier] = ACTIONS(6985), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(6987), + [sym_ms_signed_ptr_modifier] = ACTIONS(6987), + [anon_sym__unaligned] = ACTIONS(6989), + [anon_sym___unaligned] = ACTIONS(6989), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6841), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6843), }, [STATE(2092)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2931), - [sym_ms_pointer_modifier] = STATE(2645), - [sym__abstract_declarator] = STATE(5255), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2431), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1991), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2431), - [aux_sym_pointer_declarator_repeat1] = STATE(2645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7309), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7313), - [sym_ms_restrict_modifier] = ACTIONS(7315), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7317), - [sym_ms_signed_ptr_modifier] = ACTIONS(7317), - [anon_sym__unaligned] = ACTIONS(7319), - [anon_sym___unaligned] = ACTIONS(7319), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6821), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - [anon_sym_DASH_GT_STAR] = ACTIONS(6823), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [aux_sym_sized_type_specifier_repeat1] = STATE(2175), + [sym_identifier] = ACTIONS(7313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [aux_sym_preproc_if_token2] = ACTIONS(7193), + [aux_sym_preproc_else_token1] = ACTIONS(7193), + [aux_sym_preproc_elif_token1] = ACTIONS(7195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7193), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7197), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7316), + [anon_sym_unsigned] = ACTIONS(7316), + [anon_sym_long] = ACTIONS(7316), + [anon_sym_short] = ACTIONS(7316), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7197), + [anon_sym_constexpr] = ACTIONS(7197), + [anon_sym_volatile] = ACTIONS(7197), + [anon_sym_restrict] = ACTIONS(7197), + [anon_sym___restrict__] = ACTIONS(7197), + [anon_sym__Atomic] = ACTIONS(7197), + [anon_sym__Noreturn] = ACTIONS(7197), + [anon_sym_noreturn] = ACTIONS(7197), + [anon_sym__Nonnull] = ACTIONS(7197), + [anon_sym_mutable] = ACTIONS(7197), + [anon_sym_constinit] = ACTIONS(7197), + [anon_sym_consteval] = ACTIONS(7197), + [anon_sym_alignas] = ACTIONS(7202), + [anon_sym__Alignas] = ACTIONS(7202), + [sym_primitive_type] = ACTIONS(7318), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_requires] = ACTIONS(7195), }, [STATE(2093)] = { - [sym_type_qualifier] = STATE(2095), - [sym_alignas_qualifier] = STATE(2047), - [aux_sym__type_definition_type_repeat1] = STATE(2095), - [aux_sym_sized_type_specifier_repeat1] = STATE(2187), - [sym_identifier] = ACTIONS(7327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [aux_sym_preproc_if_token2] = ACTIONS(7249), - [aux_sym_preproc_else_token1] = ACTIONS(7249), - [aux_sym_preproc_elif_token1] = ACTIONS(7251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7249), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(7253), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(7330), - [anon_sym_unsigned] = ACTIONS(7330), - [anon_sym_long] = ACTIONS(7330), - [anon_sym_short] = ACTIONS(7330), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(7253), - [anon_sym_constexpr] = ACTIONS(7253), - [anon_sym_volatile] = ACTIONS(7253), - [anon_sym_restrict] = ACTIONS(7253), - [anon_sym___restrict__] = ACTIONS(7253), - [anon_sym__Atomic] = ACTIONS(7253), - [anon_sym__Noreturn] = ACTIONS(7253), - [anon_sym_noreturn] = ACTIONS(7253), - [anon_sym__Nonnull] = ACTIONS(7253), - [anon_sym_mutable] = ACTIONS(7253), - [anon_sym_constinit] = ACTIONS(7253), - [anon_sym_consteval] = ACTIONS(7253), - [anon_sym_alignas] = ACTIONS(7258), - [anon_sym__Alignas] = ACTIONS(7258), - [sym_primitive_type] = ACTIONS(7332), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), + [sym_type_qualifier] = STATE(2092), + [sym_alignas_qualifier] = STATE(2046), + [aux_sym__type_definition_type_repeat1] = STATE(2092), + [aux_sym_sized_type_specifier_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(7320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [aux_sym_preproc_if_token2] = ACTIONS(7209), + [aux_sym_preproc_else_token1] = ACTIONS(7209), + [aux_sym_preproc_elif_token1] = ACTIONS(7211), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7209), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(7213), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(7323), + [anon_sym_unsigned] = ACTIONS(7323), + [anon_sym_long] = ACTIONS(7323), + [anon_sym_short] = ACTIONS(7323), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(7213), + [anon_sym_constexpr] = ACTIONS(7213), + [anon_sym_volatile] = ACTIONS(7213), + [anon_sym_restrict] = ACTIONS(7213), + [anon_sym___restrict__] = ACTIONS(7213), + [anon_sym__Atomic] = ACTIONS(7213), + [anon_sym__Noreturn] = ACTIONS(7213), + [anon_sym_noreturn] = ACTIONS(7213), + [anon_sym__Nonnull] = ACTIONS(7213), + [anon_sym_mutable] = ACTIONS(7213), + [anon_sym_constinit] = ACTIONS(7213), + [anon_sym_consteval] = ACTIONS(7213), + [anon_sym_alignas] = ACTIONS(7218), + [anon_sym__Alignas] = ACTIONS(7218), + [sym_primitive_type] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), }, [STATE(2094)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [aux_sym_preproc_if_token2] = ACTIONS(7293), - [aux_sym_preproc_else_token1] = ACTIONS(7293), - [aux_sym_preproc_elif_token1] = ACTIONS(7291), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_SEMI] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_RBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7291), - [anon_sym_or_eq] = ACTIONS(7291), - [anon_sym_xor_eq] = ACTIONS(7291), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7291), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7291), - [anon_sym_not_eq] = ACTIONS(7291), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_requires] = ACTIONS(7291), - [anon_sym_COLON_RBRACK] = ACTIONS(7293), + [sym_ms_unaligned_ptr_modifier] = STATE(2939), + [sym_ms_pointer_modifier] = STATE(2089), + [sym__abstract_declarator] = STATE(5238), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2404), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1990), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2404), + [aux_sym_pointer_declarator_repeat1] = STATE(2089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(7295), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(7297), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(7299), + [sym_ms_restrict_modifier] = ACTIONS(7301), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7303), + [sym_ms_signed_ptr_modifier] = ACTIONS(7303), + [anon_sym__unaligned] = ACTIONS(7305), + [anon_sym___unaligned] = ACTIONS(7305), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6815), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_DASH_GT_STAR] = ACTIONS(6815), }, [STATE(2095)] = { - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [aux_sym_sized_type_specifier_repeat1] = STATE(2217), - [sym_identifier] = ACTIONS(7334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [aux_sym_preproc_if_token2] = ACTIONS(7205), - [aux_sym_preproc_else_token1] = ACTIONS(7205), - [aux_sym_preproc_elif_token1] = ACTIONS(7207), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7205), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(7209), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(7337), - [anon_sym_unsigned] = ACTIONS(7337), - [anon_sym_long] = ACTIONS(7337), - [anon_sym_short] = ACTIONS(7337), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(7209), - [anon_sym_constexpr] = ACTIONS(7209), - [anon_sym_volatile] = ACTIONS(7209), - [anon_sym_restrict] = ACTIONS(7209), - [anon_sym___restrict__] = ACTIONS(7209), - [anon_sym__Atomic] = ACTIONS(7209), - [anon_sym__Noreturn] = ACTIONS(7209), - [anon_sym_noreturn] = ACTIONS(7209), - [anon_sym__Nonnull] = ACTIONS(7209), - [anon_sym_mutable] = ACTIONS(7209), - [anon_sym_constinit] = ACTIONS(7209), - [anon_sym_consteval] = ACTIONS(7209), - [anon_sym_alignas] = ACTIONS(7214), - [anon_sym__Alignas] = ACTIONS(7214), - [sym_primitive_type] = ACTIONS(7339), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [aux_sym_preproc_if_token2] = ACTIONS(7329), + [aux_sym_preproc_else_token1] = ACTIONS(7329), + [aux_sym_preproc_elif_token1] = ACTIONS(7327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym_SEMI] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7329), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_RBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7327), + [anon_sym_or_eq] = ACTIONS(7327), + [anon_sym_xor_eq] = ACTIONS(7327), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), + [anon_sym_COLON_RBRACK] = ACTIONS(7329), }, [STATE(2096)] = { - [sym_identifier] = ACTIONS(6612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_RPAREN] = ACTIONS(6614), - [aux_sym_preproc_if_token2] = ACTIONS(6614), - [aux_sym_preproc_else_token1] = ACTIONS(6614), - [aux_sym_preproc_elif_token1] = ACTIONS(6612), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6614), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6612), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6612), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6612), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6612), - [anon_sym_GT_GT] = ACTIONS(6612), - [anon_sym_SEMI] = ACTIONS(6614), - [anon_sym___extension__] = ACTIONS(6612), - [anon_sym___attribute__] = ACTIONS(6612), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6614), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_RBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6614), - [anon_sym_EQ] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6612), - [anon_sym_volatile] = ACTIONS(6612), - [anon_sym_restrict] = ACTIONS(6612), - [anon_sym___restrict__] = ACTIONS(6612), - [anon_sym__Atomic] = ACTIONS(6612), - [anon_sym__Noreturn] = ACTIONS(6612), - [anon_sym_noreturn] = ACTIONS(6612), - [anon_sym__Nonnull] = ACTIONS(6612), - [anon_sym_mutable] = ACTIONS(6612), - [anon_sym_constinit] = ACTIONS(6612), - [anon_sym_consteval] = ACTIONS(6612), - [anon_sym_alignas] = ACTIONS(6612), - [anon_sym__Alignas] = ACTIONS(6612), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_STAR_EQ] = ACTIONS(6614), - [anon_sym_SLASH_EQ] = ACTIONS(6614), - [anon_sym_PERCENT_EQ] = ACTIONS(6614), - [anon_sym_PLUS_EQ] = ACTIONS(6614), - [anon_sym_DASH_EQ] = ACTIONS(6614), - [anon_sym_LT_LT_EQ] = ACTIONS(6614), - [anon_sym_GT_GT_EQ] = ACTIONS(6614), - [anon_sym_AMP_EQ] = ACTIONS(6614), - [anon_sym_CARET_EQ] = ACTIONS(6614), - [anon_sym_PIPE_EQ] = ACTIONS(6614), - [anon_sym_and_eq] = ACTIONS(6612), - [anon_sym_or_eq] = ACTIONS(6612), - [anon_sym_xor_eq] = ACTIONS(6612), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6612), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6612), - [anon_sym_not_eq] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6612), - [anon_sym_decltype] = ACTIONS(6612), - [anon_sym_final] = ACTIONS(6612), - [anon_sym_override] = ACTIONS(6612), - [anon_sym_requires] = ACTIONS(6612), - [anon_sym_COLON_RBRACK] = ACTIONS(6614), + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [aux_sym_preproc_if_token2] = ACTIONS(7329), + [aux_sym_preproc_else_token1] = ACTIONS(7329), + [aux_sym_preproc_elif_token1] = ACTIONS(7327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym_SEMI] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7329), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_RBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7327), + [anon_sym_or_eq] = ACTIONS(7327), + [anon_sym_xor_eq] = ACTIONS(7327), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), + [anon_sym_COLON_RBRACK] = ACTIONS(7329), }, [STATE(2097)] = { - [sym_identifier] = ACTIONS(6608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_RPAREN] = ACTIONS(6610), - [aux_sym_preproc_if_token2] = ACTIONS(6610), - [aux_sym_preproc_else_token1] = ACTIONS(6610), - [aux_sym_preproc_elif_token1] = ACTIONS(6608), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6610), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6608), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6608), - [anon_sym_GT_GT] = ACTIONS(6608), - [anon_sym_SEMI] = ACTIONS(6610), - [anon_sym___extension__] = ACTIONS(6608), - [anon_sym___attribute__] = ACTIONS(6608), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6610), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_RBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6610), - [anon_sym_EQ] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6608), - [anon_sym_volatile] = ACTIONS(6608), - [anon_sym_restrict] = ACTIONS(6608), - [anon_sym___restrict__] = ACTIONS(6608), - [anon_sym__Atomic] = ACTIONS(6608), - [anon_sym__Noreturn] = ACTIONS(6608), - [anon_sym_noreturn] = ACTIONS(6608), - [anon_sym__Nonnull] = ACTIONS(6608), - [anon_sym_mutable] = ACTIONS(6608), - [anon_sym_constinit] = ACTIONS(6608), - [anon_sym_consteval] = ACTIONS(6608), - [anon_sym_alignas] = ACTIONS(6608), - [anon_sym__Alignas] = ACTIONS(6608), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_STAR_EQ] = ACTIONS(6610), - [anon_sym_SLASH_EQ] = ACTIONS(6610), - [anon_sym_PERCENT_EQ] = ACTIONS(6610), - [anon_sym_PLUS_EQ] = ACTIONS(6610), - [anon_sym_DASH_EQ] = ACTIONS(6610), - [anon_sym_LT_LT_EQ] = ACTIONS(6610), - [anon_sym_GT_GT_EQ] = ACTIONS(6610), - [anon_sym_AMP_EQ] = ACTIONS(6610), - [anon_sym_CARET_EQ] = ACTIONS(6610), - [anon_sym_PIPE_EQ] = ACTIONS(6610), - [anon_sym_and_eq] = ACTIONS(6608), - [anon_sym_or_eq] = ACTIONS(6608), - [anon_sym_xor_eq] = ACTIONS(6608), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6608), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6608), - [anon_sym_not_eq] = ACTIONS(6608), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6608), - [anon_sym_decltype] = ACTIONS(6608), - [anon_sym_final] = ACTIONS(6608), - [anon_sym_override] = ACTIONS(6608), - [anon_sym_requires] = ACTIONS(6608), - [anon_sym_COLON_RBRACK] = ACTIONS(6610), + [sym_identifier] = ACTIONS(7331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7333), + [anon_sym_COMMA] = ACTIONS(7333), + [anon_sym_RPAREN] = ACTIONS(7333), + [aux_sym_preproc_if_token2] = ACTIONS(7333), + [aux_sym_preproc_else_token1] = ACTIONS(7333), + [aux_sym_preproc_elif_token1] = ACTIONS(7331), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7333), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7333), + [anon_sym_LPAREN2] = ACTIONS(7333), + [anon_sym_DASH] = ACTIONS(7331), + [anon_sym_PLUS] = ACTIONS(7331), + [anon_sym_STAR] = ACTIONS(7331), + [anon_sym_SLASH] = ACTIONS(7331), + [anon_sym_PERCENT] = ACTIONS(7331), + [anon_sym_PIPE_PIPE] = ACTIONS(7333), + [anon_sym_AMP_AMP] = ACTIONS(7333), + [anon_sym_PIPE] = ACTIONS(7331), + [anon_sym_CARET] = ACTIONS(7331), + [anon_sym_AMP] = ACTIONS(7331), + [anon_sym_EQ_EQ] = ACTIONS(7333), + [anon_sym_BANG_EQ] = ACTIONS(7333), + [anon_sym_GT] = ACTIONS(7331), + [anon_sym_GT_EQ] = ACTIONS(7333), + [anon_sym_LT_EQ] = ACTIONS(7331), + [anon_sym_LT] = ACTIONS(7331), + [anon_sym_LT_LT] = ACTIONS(7331), + [anon_sym_GT_GT] = ACTIONS(7331), + [anon_sym_SEMI] = ACTIONS(7333), + [anon_sym___extension__] = ACTIONS(7331), + [anon_sym___attribute__] = ACTIONS(7331), + [anon_sym___attribute] = ACTIONS(7331), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_COLON_COLON] = ACTIONS(7333), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7333), + [anon_sym_RBRACE] = ACTIONS(7333), + [anon_sym_LBRACK] = ACTIONS(7333), + [anon_sym_EQ] = ACTIONS(7331), + [anon_sym_const] = ACTIONS(7331), + [anon_sym_constexpr] = ACTIONS(7331), + [anon_sym_volatile] = ACTIONS(7331), + [anon_sym_restrict] = ACTIONS(7331), + [anon_sym___restrict__] = ACTIONS(7331), + [anon_sym__Atomic] = ACTIONS(7331), + [anon_sym__Noreturn] = ACTIONS(7331), + [anon_sym_noreturn] = ACTIONS(7331), + [anon_sym__Nonnull] = ACTIONS(7331), + [anon_sym_mutable] = ACTIONS(7331), + [anon_sym_constinit] = ACTIONS(7331), + [anon_sym_consteval] = ACTIONS(7331), + [anon_sym_alignas] = ACTIONS(7331), + [anon_sym__Alignas] = ACTIONS(7331), + [anon_sym_QMARK] = ACTIONS(7333), + [anon_sym_STAR_EQ] = ACTIONS(7333), + [anon_sym_SLASH_EQ] = ACTIONS(7333), + [anon_sym_PERCENT_EQ] = ACTIONS(7333), + [anon_sym_PLUS_EQ] = ACTIONS(7333), + [anon_sym_DASH_EQ] = ACTIONS(7333), + [anon_sym_LT_LT_EQ] = ACTIONS(7333), + [anon_sym_GT_GT_EQ] = ACTIONS(7333), + [anon_sym_AMP_EQ] = ACTIONS(7333), + [anon_sym_CARET_EQ] = ACTIONS(7333), + [anon_sym_PIPE_EQ] = ACTIONS(7333), + [anon_sym_and_eq] = ACTIONS(7331), + [anon_sym_or_eq] = ACTIONS(7331), + [anon_sym_xor_eq] = ACTIONS(7331), + [anon_sym_LT_EQ_GT] = ACTIONS(7333), + [anon_sym_or] = ACTIONS(7331), + [anon_sym_and] = ACTIONS(7331), + [anon_sym_bitor] = ACTIONS(7331), + [anon_sym_xor] = ACTIONS(7331), + [anon_sym_bitand] = ACTIONS(7331), + [anon_sym_not_eq] = ACTIONS(7331), + [anon_sym_DASH_DASH] = ACTIONS(7333), + [anon_sym_PLUS_PLUS] = ACTIONS(7333), + [anon_sym_DOT] = ACTIONS(7331), + [anon_sym_DOT_STAR] = ACTIONS(7333), + [anon_sym_DASH_GT] = ACTIONS(7333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7331), + [anon_sym_decltype] = ACTIONS(7331), + [anon_sym_final] = ACTIONS(7331), + [anon_sym_override] = ACTIONS(7331), + [anon_sym_requires] = ACTIONS(7331), + [anon_sym_COLON_RBRACK] = ACTIONS(7333), }, [STATE(2098)] = { - [sym_identifier] = ACTIONS(6616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_RPAREN] = ACTIONS(6618), - [aux_sym_preproc_if_token2] = ACTIONS(6618), - [aux_sym_preproc_else_token1] = ACTIONS(6618), - [aux_sym_preproc_elif_token1] = ACTIONS(6616), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6618), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6616), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6616), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6616), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6616), - [anon_sym_GT_GT] = ACTIONS(6616), - [anon_sym_SEMI] = ACTIONS(6618), - [anon_sym___extension__] = ACTIONS(6616), - [anon_sym___attribute__] = ACTIONS(6616), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6618), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_RBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6618), - [anon_sym_EQ] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6616), - [anon_sym_volatile] = ACTIONS(6616), - [anon_sym_restrict] = ACTIONS(6616), - [anon_sym___restrict__] = ACTIONS(6616), - [anon_sym__Atomic] = ACTIONS(6616), - [anon_sym__Noreturn] = ACTIONS(6616), - [anon_sym_noreturn] = ACTIONS(6616), - [anon_sym__Nonnull] = ACTIONS(6616), - [anon_sym_mutable] = ACTIONS(6616), - [anon_sym_constinit] = ACTIONS(6616), - [anon_sym_consteval] = ACTIONS(6616), - [anon_sym_alignas] = ACTIONS(6616), - [anon_sym__Alignas] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_STAR_EQ] = ACTIONS(6618), - [anon_sym_SLASH_EQ] = ACTIONS(6618), - [anon_sym_PERCENT_EQ] = ACTIONS(6618), - [anon_sym_PLUS_EQ] = ACTIONS(6618), - [anon_sym_DASH_EQ] = ACTIONS(6618), - [anon_sym_LT_LT_EQ] = ACTIONS(6618), - [anon_sym_GT_GT_EQ] = ACTIONS(6618), - [anon_sym_AMP_EQ] = ACTIONS(6618), - [anon_sym_CARET_EQ] = ACTIONS(6618), - [anon_sym_PIPE_EQ] = ACTIONS(6618), - [anon_sym_and_eq] = ACTIONS(6616), - [anon_sym_or_eq] = ACTIONS(6616), - [anon_sym_xor_eq] = ACTIONS(6616), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6616), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6616), - [anon_sym_not_eq] = ACTIONS(6616), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6616), - [anon_sym_decltype] = ACTIONS(6616), - [anon_sym_final] = ACTIONS(6616), - [anon_sym_override] = ACTIONS(6616), - [anon_sym_requires] = ACTIONS(6616), - [anon_sym_COLON_RBRACK] = ACTIONS(6618), + [sym_attribute_specifier] = STATE(2339), + [sym_attribute_declaration] = STATE(4478), + [sym_type_qualifier] = STATE(2320), + [sym_alignas_qualifier] = STATE(2413), + [aux_sym_type_definition_repeat1] = STATE(2339), + [aux_sym__type_definition_type_repeat1] = STATE(2320), + [aux_sym_attributed_declarator_repeat1] = STATE(4478), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6634), + [anon_sym__Alignas] = ACTIONS(6634), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6748), + [anon_sym_or_eq] = ACTIONS(6748), + [anon_sym_xor_eq] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6746), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), + [anon_sym_DASH_GT_STAR] = ACTIONS(6748), }, [STATE(2099)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2931), - [sym_ms_pointer_modifier] = STATE(2092), - [sym__abstract_declarator] = STATE(5253), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2432), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1991), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2432), - [aux_sym_pointer_declarator_repeat1] = STATE(2092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(7309), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(7313), - [sym_ms_restrict_modifier] = ACTIONS(7315), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7317), - [sym_ms_signed_ptr_modifier] = ACTIONS(7317), - [anon_sym__unaligned] = ACTIONS(7319), - [anon_sym___unaligned] = ACTIONS(7319), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6859), - [anon_sym_and] = ACTIONS(6859), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6859), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6861), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), - [anon_sym_DASH_GT_STAR] = ACTIONS(6859), + [sym_ms_unaligned_ptr_modifier] = STATE(2692), + [sym_ms_pointer_modifier] = STATE(2108), + [sym__abstract_declarator] = STATE(5415), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2480), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2480), + [aux_sym_pointer_declarator_repeat1] = STATE(2108), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(7335), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(7337), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(7339), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(7079), + [sym_ms_restrict_modifier] = ACTIONS(7081), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7083), + [sym_ms_signed_ptr_modifier] = ACTIONS(7083), + [anon_sym__unaligned] = ACTIONS(7085), + [anon_sym___unaligned] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6819), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6815), }, [STATE(2100)] = { - [sym_identifier] = ACTIONS(6620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_RPAREN] = ACTIONS(6622), - [aux_sym_preproc_if_token2] = ACTIONS(6622), - [aux_sym_preproc_else_token1] = ACTIONS(6622), - [aux_sym_preproc_elif_token1] = ACTIONS(6620), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6622), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6620), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6620), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6620), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6620), - [anon_sym_GT_GT] = ACTIONS(6620), - [anon_sym_SEMI] = ACTIONS(6622), - [anon_sym___extension__] = ACTIONS(6620), - [anon_sym___attribute__] = ACTIONS(6620), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_RBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6622), - [anon_sym_EQ] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6620), - [anon_sym_volatile] = ACTIONS(6620), - [anon_sym_restrict] = ACTIONS(6620), - [anon_sym___restrict__] = ACTIONS(6620), - [anon_sym__Atomic] = ACTIONS(6620), - [anon_sym__Noreturn] = ACTIONS(6620), - [anon_sym_noreturn] = ACTIONS(6620), - [anon_sym__Nonnull] = ACTIONS(6620), - [anon_sym_mutable] = ACTIONS(6620), - [anon_sym_constinit] = ACTIONS(6620), - [anon_sym_consteval] = ACTIONS(6620), - [anon_sym_alignas] = ACTIONS(6620), - [anon_sym__Alignas] = ACTIONS(6620), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_STAR_EQ] = ACTIONS(6622), - [anon_sym_SLASH_EQ] = ACTIONS(6622), - [anon_sym_PERCENT_EQ] = ACTIONS(6622), - [anon_sym_PLUS_EQ] = ACTIONS(6622), - [anon_sym_DASH_EQ] = ACTIONS(6622), - [anon_sym_LT_LT_EQ] = ACTIONS(6622), - [anon_sym_GT_GT_EQ] = ACTIONS(6622), - [anon_sym_AMP_EQ] = ACTIONS(6622), - [anon_sym_CARET_EQ] = ACTIONS(6622), - [anon_sym_PIPE_EQ] = ACTIONS(6622), - [anon_sym_and_eq] = ACTIONS(6620), - [anon_sym_or_eq] = ACTIONS(6620), - [anon_sym_xor_eq] = ACTIONS(6620), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6620), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6620), - [anon_sym_not_eq] = ACTIONS(6620), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6620), - [anon_sym_decltype] = ACTIONS(6620), - [anon_sym_final] = ACTIONS(6620), - [anon_sym_override] = ACTIONS(6620), - [anon_sym_requires] = ACTIONS(6620), - [anon_sym_COLON_RBRACK] = ACTIONS(6622), + [sym__abstract_declarator] = STATE(4179), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6821), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6825), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6841), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6843), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + [anon_sym_COLON_RBRACK] = ACTIONS(6843), }, [STATE(2101)] = { - [sym__abstract_declarator] = STATE(4240), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2105), - [sym_alignas_qualifier] = STATE(2652), + [sym__abstract_declarator] = STATE(4171), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), [sym_parameter_list] = STATE(1947), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2105), - [sym_identifier] = ACTIONS(7341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [aux_sym_preproc_if_token2] = ACTIONS(7343), - [aux_sym_preproc_else_token1] = ACTIONS(7343), - [aux_sym_preproc_elif_token1] = ACTIONS(7341), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7343), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(6827), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(6829), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_RPAREN] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(6821), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(6825), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym_SEMI] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(7343), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7341), + [anon_sym_RBRACE] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), [anon_sym_and_eq] = ACTIONS(7341), [anon_sym_or_eq] = ACTIONS(7341), [anon_sym_xor_eq] = ACTIONS(7341), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), [anon_sym_bitor] = ACTIONS(7341), - [anon_sym_xor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7343), [anon_sym_bitand] = ACTIONS(7341), [anon_sym_not_eq] = ACTIONS(7341), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7341), [anon_sym_override] = ACTIONS(7341), [anon_sym_requires] = ACTIONS(7341), + [anon_sym_COLON_RBRACK] = ACTIONS(7341), }, [STATE(2102)] = { - [sym__abstract_declarator] = STATE(4166), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1953), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), + [sym__abstract_declarator] = STATE(4194), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_LPAREN2] = ACTIONS(6817), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(6843), + [anon_sym_STAR] = ACTIONS(6821), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7347), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(6845), + [anon_sym_AMP_AMP] = ACTIONS(6823), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(6847), + [anon_sym_AMP] = ACTIONS(6825), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), @@ -322911,26 +322802,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7347), [anon_sym_GT_GT] = ACTIONS(7347), [anon_sym_SEMI] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___extension__] = ACTIONS(6827), [anon_sym_COLON] = ACTIONS(7347), [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), [anon_sym_RBRACE] = ACTIONS(7345), - [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_LBRACK] = ACTIONS(6835), [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_STAR_EQ] = ACTIONS(7345), [anon_sym_SLASH_EQ] = ACTIONS(7345), @@ -322964,443 +322855,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_RBRACK] = ACTIONS(7345), }, [STATE(2103)] = { - [sym__abstract_declarator] = STATE(4239), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1947), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [sym_identifier] = ACTIONS(7349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [aux_sym_preproc_if_token2] = ACTIONS(7351), - [aux_sym_preproc_else_token1] = ACTIONS(7351), - [aux_sym_preproc_elif_token1] = ACTIONS(7349), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7351), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(6827), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(6829), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7349), - [anon_sym_or_eq] = ACTIONS(7349), - [anon_sym_xor_eq] = ACTIONS(7349), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7349), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7349), - [anon_sym_not_eq] = ACTIONS(7349), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7349), - [anon_sym_override] = ACTIONS(7349), - [anon_sym_requires] = ACTIONS(7349), + [sym_ms_unaligned_ptr_modifier] = STATE(2689), + [sym_ms_pointer_modifier] = STATE(2119), + [sym__abstract_declarator] = STATE(5450), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2516), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1973), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2516), + [aux_sym_pointer_declarator_repeat1] = STATE(2119), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(7349), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(7351), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(7353), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(7101), + [sym_ms_restrict_modifier] = ACTIONS(7103), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7105), + [sym_ms_signed_ptr_modifier] = ACTIONS(7105), + [anon_sym__unaligned] = ACTIONS(7107), + [anon_sym___unaligned] = ACTIONS(7107), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(6815), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_and_eq] = ACTIONS(6815), + [anon_sym_or_eq] = ACTIONS(6815), + [anon_sym_xor_eq] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), }, [STATE(2104)] = { - [sym_template_argument_list] = STATE(2174), - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_RPAREN] = ACTIONS(7090), - [aux_sym_preproc_if_token2] = ACTIONS(7090), - [aux_sym_preproc_else_token1] = ACTIONS(7090), - [aux_sym_preproc_elif_token1] = ACTIONS(7085), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7090), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7085), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7085), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7085), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(7266), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym_SEMI] = ACTIONS(7090), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7090), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7090), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_and_eq] = ACTIONS(7085), - [anon_sym_or_eq] = ACTIONS(7085), - [anon_sym_xor_eq] = ACTIONS(7085), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7085), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7085), - [anon_sym_not_eq] = ACTIONS(7085), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7085), - [anon_sym_override] = ACTIONS(7085), - [anon_sym_requires] = ACTIONS(7085), - [anon_sym_COLON_RBRACK] = ACTIONS(7090), + [sym_decltype_auto] = STATE(2185), + [sym_template_argument_list] = STATE(2090), + [aux_sym_sized_type_specifier_repeat1] = STATE(2198), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5617), + [aux_sym_preproc_if_token2] = ACTIONS(5617), + [aux_sym_preproc_else_token1] = ACTIONS(5617), + [aux_sym_preproc_elif_token1] = ACTIONS(5609), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5617), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_PERCENT] = ACTIONS(5609), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_EQ_EQ] = ACTIONS(5617), + [anon_sym_BANG_EQ] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_GT_EQ] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(5609), + [anon_sym_GT_GT] = ACTIONS(5609), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(6754), + [anon_sym_unsigned] = ACTIONS(6754), + [anon_sym_long] = ACTIONS(6754), + [anon_sym_short] = ACTIONS(6754), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_EQ] = 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), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_STAR_EQ] = ACTIONS(5617), + [anon_sym_SLASH_EQ] = ACTIONS(5617), + [anon_sym_PERCENT_EQ] = ACTIONS(5617), + [anon_sym_PLUS_EQ] = ACTIONS(5617), + [anon_sym_DASH_EQ] = ACTIONS(5617), + [anon_sym_LT_LT_EQ] = ACTIONS(5617), + [anon_sym_GT_GT_EQ] = ACTIONS(5617), + [anon_sym_AMP_EQ] = ACTIONS(5617), + [anon_sym_CARET_EQ] = ACTIONS(5617), + [anon_sym_PIPE_EQ] = ACTIONS(5617), + [anon_sym_and_eq] = ACTIONS(5609), + [anon_sym_or_eq] = ACTIONS(5609), + [anon_sym_xor_eq] = ACTIONS(5609), + [anon_sym_LT_EQ_GT] = ACTIONS(5617), + [anon_sym_or] = ACTIONS(5609), + [anon_sym_and] = ACTIONS(5609), + [anon_sym_bitor] = ACTIONS(5609), + [anon_sym_xor] = ACTIONS(5609), + [anon_sym_bitand] = ACTIONS(5609), + [anon_sym_not_eq] = ACTIONS(5609), + [anon_sym_DASH_DASH] = ACTIONS(5617), + [anon_sym_PLUS_PLUS] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_DOT_STAR] = ACTIONS(5617), + [anon_sym_DASH_GT] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6756), + [anon_sym_decltype] = ACTIONS(6758), + [anon_sym_final] = ACTIONS(5609), + [anon_sym_override] = ACTIONS(5609), + [anon_sym_requires] = ACTIONS(5609), }, [STATE(2105)] = { - [sym__abstract_declarator] = STATE(4241), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1947), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [sym_identifier] = ACTIONS(7353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [aux_sym_preproc_if_token2] = ACTIONS(7355), - [aux_sym_preproc_else_token1] = ACTIONS(7355), - [aux_sym_preproc_elif_token1] = ACTIONS(7353), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7355), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(6827), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(6829), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7353), - [anon_sym_or_eq] = ACTIONS(7353), - [anon_sym_xor_eq] = ACTIONS(7353), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7353), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7353), - [anon_sym_not_eq] = ACTIONS(7353), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7353), - [anon_sym_override] = ACTIONS(7353), - [anon_sym_requires] = ACTIONS(7353), - }, - [STATE(2106)] = { - [sym_attribute_specifier] = STATE(2353), - [sym_attribute_declaration] = STATE(4488), - [sym_type_qualifier] = STATE(2301), - [sym_alignas_qualifier] = STATE(2392), - [aux_sym_type_definition_repeat1] = STATE(2353), - [aux_sym__type_definition_type_repeat1] = STATE(2301), - [aux_sym_attributed_declarator_repeat1] = STATE(4488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_RPAREN] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6752), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6752), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym___extension__] = ACTIONS(6644), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_EQ] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(6652), - [anon_sym_constexpr] = ACTIONS(6644), - [anon_sym_volatile] = ACTIONS(6644), - [anon_sym_restrict] = ACTIONS(6644), - [anon_sym___restrict__] = ACTIONS(6644), - [anon_sym__Atomic] = ACTIONS(6644), - [anon_sym__Noreturn] = ACTIONS(6644), - [anon_sym_noreturn] = ACTIONS(6644), - [anon_sym__Nonnull] = ACTIONS(6644), - [anon_sym_mutable] = ACTIONS(6644), - [anon_sym_constinit] = ACTIONS(6644), - [anon_sym_consteval] = ACTIONS(6644), - [anon_sym_alignas] = ACTIONS(6654), - [anon_sym__Alignas] = ACTIONS(6654), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_STAR_EQ] = ACTIONS(6754), - [anon_sym_SLASH_EQ] = ACTIONS(6754), - [anon_sym_PERCENT_EQ] = ACTIONS(6754), - [anon_sym_PLUS_EQ] = ACTIONS(6754), - [anon_sym_DASH_EQ] = ACTIONS(6754), - [anon_sym_LT_LT_EQ] = ACTIONS(6754), - [anon_sym_GT_GT_EQ] = ACTIONS(6754), - [anon_sym_AMP_EQ] = ACTIONS(6754), - [anon_sym_CARET_EQ] = ACTIONS(6754), - [anon_sym_PIPE_EQ] = ACTIONS(6754), - [anon_sym_and_eq] = ACTIONS(6754), - [anon_sym_or_eq] = ACTIONS(6754), - [anon_sym_xor_eq] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6752), - [anon_sym_and] = ACTIONS(6752), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6752), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6752), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), - [anon_sym_DASH_GT_STAR] = ACTIONS(6754), - }, - [STATE(2107)] = { - [sym__abstract_declarator] = STATE(4245), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1947), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [sym_identifier] = ACTIONS(7347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [aux_sym_preproc_if_token2] = ACTIONS(7345), - [aux_sym_preproc_else_token1] = ACTIONS(7345), - [aux_sym_preproc_elif_token1] = ACTIONS(7347), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(6827), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(6829), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(7345), - [anon_sym_BANG_EQ] = ACTIONS(7345), - [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ] = ACTIONS(7347), - [anon_sym_LT] = ACTIONS(7347), - [anon_sym_LT_LT] = ACTIONS(7347), - [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(7345), - [anon_sym_STAR_EQ] = ACTIONS(7345), - [anon_sym_SLASH_EQ] = ACTIONS(7345), - [anon_sym_PERCENT_EQ] = ACTIONS(7345), - [anon_sym_PLUS_EQ] = ACTIONS(7345), - [anon_sym_DASH_EQ] = ACTIONS(7345), - [anon_sym_LT_LT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_EQ] = ACTIONS(7345), - [anon_sym_AMP_EQ] = ACTIONS(7345), - [anon_sym_CARET_EQ] = ACTIONS(7345), - [anon_sym_PIPE_EQ] = ACTIONS(7345), - [anon_sym_and_eq] = ACTIONS(7347), - [anon_sym_or_eq] = ACTIONS(7347), - [anon_sym_xor_eq] = ACTIONS(7347), - [anon_sym_LT_EQ_GT] = ACTIONS(7345), - [anon_sym_or] = ACTIONS(7347), - [anon_sym_and] = ACTIONS(7347), - [anon_sym_bitor] = ACTIONS(7347), - [anon_sym_xor] = ACTIONS(7347), - [anon_sym_bitand] = ACTIONS(7347), - [anon_sym_not_eq] = ACTIONS(7347), - [anon_sym_DASH_DASH] = ACTIONS(7345), - [anon_sym_PLUS_PLUS] = ACTIONS(7345), - [anon_sym_DOT] = ACTIONS(7347), - [anon_sym_DOT_STAR] = ACTIONS(7345), - [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_function_definition] = STATE(442), + [sym_declaration] = STATE(442), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6387), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2719), + [sym_declaration_list] = STATE(442), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(7355), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7347), - [anon_sym_override] = ACTIONS(7347), - [anon_sym_requires] = ACTIONS(7347), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2108)] = { - [sym_template_argument_list] = STATE(3735), - [aux_sym_sized_type_specifier_repeat1] = STATE(2209), + [STATE(2106)] = { + [sym_template_argument_list] = STATE(3755), + [aux_sym_sized_type_specifier_repeat1] = STATE(2198), [sym_identifier] = ACTIONS(7357), [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), [anon_sym_COMMA] = ACTIONS(7359), @@ -323431,12 +323148,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(7357), [anon_sym___attribute__] = ACTIONS(7357), [anon_sym___attribute] = ACTIONS(7357), - [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_COLON_COLON] = ACTIONS(5632), [anon_sym_LBRACE] = ACTIONS(7359), - [anon_sym_signed] = ACTIONS(6815), - [anon_sym_unsigned] = ACTIONS(6815), - [anon_sym_long] = ACTIONS(6815), - [anon_sym_short] = ACTIONS(6815), + [anon_sym_signed] = ACTIONS(6754), + [anon_sym_unsigned] = ACTIONS(6754), + [anon_sym_long] = ACTIONS(6754), + [anon_sym_short] = ACTIONS(6754), [anon_sym_LBRACK] = ACTIONS(7359), [anon_sym_RBRACK] = ACTIONS(7359), [anon_sym_EQ] = ACTIONS(7357), @@ -323485,47 +323202,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(7357), [anon_sym_requires] = ACTIONS(7357), }, - [STATE(2109)] = { - [sym_function_definition] = STATE(780), - [sym_declaration] = STATE(780), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6413), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2707), - [sym_declaration_list] = STATE(780), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2107)] = { + [sym_function_definition] = STATE(820), + [sym_declaration] = STATE(820), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6414), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2716), + [sym_declaration_list] = STATE(820), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -323560,146 +323277,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2110)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2683), - [sym_ms_pointer_modifier] = STATE(2115), - [sym__abstract_declarator] = STATE(5283), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2509), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1978), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2509), - [aux_sym_pointer_declarator_repeat1] = STATE(2115), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(7363), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(7365), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(7367), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(7120), - [sym_ms_restrict_modifier] = ACTIONS(7122), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7124), - [sym_ms_signed_ptr_modifier] = ACTIONS(7124), - [anon_sym__unaligned] = ACTIONS(7126), - [anon_sym___unaligned] = ACTIONS(7126), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(6859), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6859), - [anon_sym_or_eq] = ACTIONS(6859), - [anon_sym_xor_eq] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), + [STATE(2108)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2692), + [sym_ms_pointer_modifier] = STATE(2477), + [sym__abstract_declarator] = STATE(5454), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2487), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2487), + [aux_sym_pointer_declarator_repeat1] = STATE(2477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7335), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7337), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7339), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6841), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7079), + [sym_ms_restrict_modifier] = ACTIONS(7081), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7083), + [sym_ms_signed_ptr_modifier] = ACTIONS(7083), + [anon_sym__unaligned] = ACTIONS(7085), + [anon_sym___unaligned] = ACTIONS(7085), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6841), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6843), }, - [STATE(2111)] = { - [sym_function_definition] = STATE(915), - [sym_declaration] = STATE(915), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6385), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2684), - [sym_declaration_list] = STATE(915), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2109)] = { + [sym_function_definition] = STATE(658), + [sym_declaration] = STATE(658), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6402), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2720), + [sym_declaration_list] = STATE(658), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -323707,7 +323424,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(7369), + [anon_sym_LBRACE] = ACTIONS(7363), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -323734,407 +323451,581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2112)] = { - [sym_template_argument_list] = STATE(2090), - [sym_identifier] = ACTIONS(7371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), - [anon_sym_COMMA] = ACTIONS(5657), - [anon_sym_RPAREN] = ACTIONS(5657), - [aux_sym_preproc_if_token2] = ACTIONS(5657), - [aux_sym_preproc_else_token1] = ACTIONS(5657), - [aux_sym_preproc_elif_token1] = ACTIONS(7371), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5657), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5657), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_DASH] = ACTIONS(7371), - [anon_sym_PLUS] = ACTIONS(7371), - [anon_sym_STAR] = ACTIONS(7371), - [anon_sym_SLASH] = ACTIONS(7371), - [anon_sym_PERCENT] = ACTIONS(7371), - [anon_sym_PIPE_PIPE] = ACTIONS(5657), - [anon_sym_AMP_AMP] = ACTIONS(5657), - [anon_sym_PIPE] = ACTIONS(7371), - [anon_sym_CARET] = ACTIONS(7371), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_EQ_EQ] = ACTIONS(5657), - [anon_sym_BANG_EQ] = ACTIONS(5657), - [anon_sym_GT] = ACTIONS(7371), - [anon_sym_GT_EQ] = ACTIONS(5657), - [anon_sym_LT_EQ] = ACTIONS(7371), - [anon_sym_LT] = ACTIONS(7266), - [anon_sym_LT_LT] = ACTIONS(7371), - [anon_sym_GT_GT] = ACTIONS(7371), - [anon_sym_SEMI] = ACTIONS(5657), - [anon_sym___extension__] = ACTIONS(7371), - [anon_sym___attribute__] = ACTIONS(7371), - [anon_sym___attribute] = ACTIONS(7371), - [anon_sym_COLON] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5657), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5657), - [anon_sym_EQ] = ACTIONS(7371), - [anon_sym_const] = ACTIONS(7371), - [anon_sym_constexpr] = ACTIONS(7371), - [anon_sym_volatile] = ACTIONS(7371), - [anon_sym_restrict] = ACTIONS(7371), - [anon_sym___restrict__] = ACTIONS(7371), - [anon_sym__Atomic] = ACTIONS(7371), - [anon_sym__Noreturn] = ACTIONS(7371), - [anon_sym_noreturn] = ACTIONS(7371), - [anon_sym__Nonnull] = ACTIONS(7371), - [anon_sym_mutable] = ACTIONS(7371), - [anon_sym_constinit] = ACTIONS(7371), - [anon_sym_consteval] = ACTIONS(7371), - [anon_sym_alignas] = ACTIONS(7371), - [anon_sym__Alignas] = ACTIONS(7371), - [anon_sym_QMARK] = ACTIONS(5657), - [anon_sym_STAR_EQ] = ACTIONS(5657), - [anon_sym_SLASH_EQ] = ACTIONS(5657), - [anon_sym_PERCENT_EQ] = ACTIONS(5657), - [anon_sym_PLUS_EQ] = ACTIONS(5657), - [anon_sym_DASH_EQ] = ACTIONS(5657), - [anon_sym_LT_LT_EQ] = ACTIONS(5657), - [anon_sym_GT_GT_EQ] = ACTIONS(5657), - [anon_sym_AMP_EQ] = ACTIONS(5657), - [anon_sym_CARET_EQ] = ACTIONS(5657), - [anon_sym_PIPE_EQ] = ACTIONS(5657), - [anon_sym_and_eq] = ACTIONS(7371), - [anon_sym_or_eq] = ACTIONS(7371), - [anon_sym_xor_eq] = ACTIONS(7371), - [anon_sym_LT_EQ_GT] = ACTIONS(5657), - [anon_sym_or] = ACTIONS(7371), - [anon_sym_and] = ACTIONS(7371), - [anon_sym_bitor] = ACTIONS(7371), - [anon_sym_xor] = ACTIONS(7371), - [anon_sym_bitand] = ACTIONS(7371), - [anon_sym_not_eq] = ACTIONS(7371), - [anon_sym_DASH_DASH] = ACTIONS(5657), - [anon_sym_PLUS_PLUS] = ACTIONS(5657), - [anon_sym_DOT] = ACTIONS(7371), - [anon_sym_DOT_STAR] = ACTIONS(5657), - [anon_sym_DASH_GT] = ACTIONS(5657), + [STATE(2110)] = { + [sym__abstract_declarator] = STATE(4199), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2111), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1942), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2111), + [sym_identifier] = ACTIONS(7365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [aux_sym_preproc_if_token2] = ACTIONS(7367), + [aux_sym_preproc_else_token1] = ACTIONS(7367), + [aux_sym_preproc_elif_token1] = ACTIONS(7365), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7367), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(6847), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(6849), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7365), + [anon_sym_or_eq] = ACTIONS(7365), + [anon_sym_xor_eq] = ACTIONS(7365), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7365), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7365), + [anon_sym_not_eq] = ACTIONS(7365), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7365), + [anon_sym_override] = ACTIONS(7365), + [anon_sym_requires] = ACTIONS(7365), + }, + [STATE(2111)] = { + [sym__abstract_declarator] = STATE(4200), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1942), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(7369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [aux_sym_preproc_if_token2] = ACTIONS(7371), + [aux_sym_preproc_else_token1] = ACTIONS(7371), + [aux_sym_preproc_elif_token1] = ACTIONS(7369), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7371), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(6847), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(6849), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7369), + [anon_sym_or_eq] = ACTIONS(7369), + [anon_sym_xor_eq] = ACTIONS(7369), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7369), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7369), + [anon_sym_not_eq] = ACTIONS(7369), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7371), - [anon_sym_override] = ACTIONS(7371), - [anon_sym_requires] = ACTIONS(7371), - [anon_sym_COLON_RBRACK] = ACTIONS(5657), + [anon_sym_final] = ACTIONS(7369), + [anon_sym_override] = ACTIONS(7369), + [anon_sym_requires] = ACTIONS(7369), + }, + [STATE(2112)] = { + [sym__abstract_declarator] = STATE(4201), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2114), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1942), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2114), + [sym_identifier] = ACTIONS(7373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [aux_sym_preproc_if_token2] = ACTIONS(7375), + [aux_sym_preproc_else_token1] = ACTIONS(7375), + [aux_sym_preproc_elif_token1] = ACTIONS(7373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7375), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(6847), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(6849), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7373), + [anon_sym_or_eq] = ACTIONS(7373), + [anon_sym_xor_eq] = ACTIONS(7373), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7373), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7373), + [anon_sym_not_eq] = ACTIONS(7373), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7373), + [anon_sym_override] = ACTIONS(7373), + [anon_sym_requires] = ACTIONS(7373), }, [STATE(2113)] = { - [sym__abstract_declarator] = STATE(4149), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1953), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_RPAREN] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(6843), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(6845), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(6847), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym_SEMI] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(7353), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7355), - [anon_sym_RBRACE] = ACTIONS(7355), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7355), - [anon_sym_or_eq] = ACTIONS(7355), - [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), - [anon_sym_COLON_RBRACK] = ACTIONS(7355), + [sym__abstract_declarator] = STATE(4205), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1942), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(6841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [aux_sym_preproc_if_token2] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6847), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6849), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6841), + [anon_sym_or_eq] = ACTIONS(6841), + [anon_sym_xor_eq] = ACTIONS(6841), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6841), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6841), + [anon_sym_not_eq] = ACTIONS(6841), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6841), + [anon_sym_override] = ACTIONS(6841), + [anon_sym_requires] = ACTIONS(6841), }, [STATE(2114)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [aux_sym_preproc_if_token2] = ACTIONS(7293), - [aux_sym_preproc_else_token1] = ACTIONS(7293), - [aux_sym_preproc_elif_token1] = ACTIONS(7291), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym_SEMI] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_RBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7291), - [anon_sym_or_eq] = ACTIONS(7291), - [anon_sym_xor_eq] = ACTIONS(7291), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7291), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7291), - [anon_sym_not_eq] = ACTIONS(7291), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_requires] = ACTIONS(7291), - [anon_sym_COLON_RBRACK] = ACTIONS(7293), + [sym__abstract_declarator] = STATE(4202), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1942), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(7343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [aux_sym_preproc_if_token2] = ACTIONS(7341), + [aux_sym_preproc_else_token1] = ACTIONS(7341), + [aux_sym_preproc_elif_token1] = ACTIONS(7343), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7341), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(6847), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(6849), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), }, [STATE(2115)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2683), - [sym_ms_pointer_modifier] = STATE(2487), - [sym__abstract_declarator] = STATE(5305), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2519), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1978), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2519), - [aux_sym_pointer_declarator_repeat1] = STATE(2487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7363), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7365), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7367), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7120), - [sym_ms_restrict_modifier] = ACTIONS(7122), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7124), - [sym_ms_signed_ptr_modifier] = ACTIONS(7124), - [anon_sym__unaligned] = ACTIONS(7126), - [anon_sym___unaligned] = ACTIONS(7126), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(6823), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), + [sym__abstract_declarator] = STATE(4206), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1942), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(7347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [aux_sym_preproc_if_token2] = ACTIONS(7345), + [aux_sym_preproc_else_token1] = ACTIONS(7345), + [aux_sym_preproc_elif_token1] = ACTIONS(7347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(6847), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(6849), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7347), + [anon_sym_or_eq] = ACTIONS(7347), + [anon_sym_xor_eq] = ACTIONS(7347), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7347), + [anon_sym_override] = ACTIONS(7347), + [anon_sym_requires] = ACTIONS(7347), }, [STATE(2116)] = { - [sym_function_definition] = STATE(820), - [sym_declaration] = STATE(820), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6406), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2694), - [sym_declaration_list] = STATE(820), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [sym_function_definition] = STATE(1007), + [sym_declaration] = STATE(1007), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6408), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2708), + [sym_declaration_list] = STATE(1007), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -324142,7 +324033,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(7373), + [anon_sym_LBRACE] = ACTIONS(7377), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -324169,108 +324060,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(2117)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2725), - [sym_ms_pointer_modifier] = STATE(2127), - [sym__abstract_declarator] = STATE(5418), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2448), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1975), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2448), - [aux_sym_pointer_declarator_repeat1] = STATE(2127), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), + [sym_template_argument_list] = STATE(2090), + [sym_identifier] = ACTIONS(7379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5637), + [anon_sym_RPAREN] = ACTIONS(5637), + [aux_sym_preproc_if_token2] = ACTIONS(5637), + [aux_sym_preproc_else_token1] = ACTIONS(5637), + [aux_sym_preproc_elif_token1] = ACTIONS(7379), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5637), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7379), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7379), + [anon_sym_PIPE_PIPE] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7379), [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6861), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(7144), - [sym_ms_restrict_modifier] = ACTIONS(7146), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7148), - [sym_ms_signed_ptr_modifier] = ACTIONS(7148), - [anon_sym__unaligned] = ACTIONS(7150), - [anon_sym___unaligned] = ACTIONS(7150), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6861), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_and_eq] = ACTIONS(6859), - [anon_sym_or_eq] = ACTIONS(6859), - [anon_sym_xor_eq] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6859), + [anon_sym_EQ_EQ] = ACTIONS(5637), + [anon_sym_BANG_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(7379), + [anon_sym_GT_GT] = ACTIONS(7379), + [anon_sym_SEMI] = ACTIONS(5637), + [anon_sym___extension__] = ACTIONS(7379), + [anon_sym___attribute__] = ACTIONS(7379), + [anon_sym___attribute] = ACTIONS(7379), + [anon_sym_COLON] = ACTIONS(7379), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5637), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_EQ] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [anon_sym_constexpr] = ACTIONS(7379), + [anon_sym_volatile] = ACTIONS(7379), + [anon_sym_restrict] = ACTIONS(7379), + [anon_sym___restrict__] = ACTIONS(7379), + [anon_sym__Atomic] = ACTIONS(7379), + [anon_sym__Noreturn] = ACTIONS(7379), + [anon_sym_noreturn] = ACTIONS(7379), + [anon_sym__Nonnull] = ACTIONS(7379), + [anon_sym_mutable] = ACTIONS(7379), + [anon_sym_constinit] = ACTIONS(7379), + [anon_sym_consteval] = ACTIONS(7379), + [anon_sym_alignas] = ACTIONS(7379), + [anon_sym__Alignas] = ACTIONS(7379), + [anon_sym_QMARK] = ACTIONS(5637), + [anon_sym_STAR_EQ] = ACTIONS(5637), + [anon_sym_SLASH_EQ] = ACTIONS(5637), + [anon_sym_PERCENT_EQ] = ACTIONS(5637), + [anon_sym_PLUS_EQ] = ACTIONS(5637), + [anon_sym_DASH_EQ] = ACTIONS(5637), + [anon_sym_LT_LT_EQ] = ACTIONS(5637), + [anon_sym_GT_GT_EQ] = ACTIONS(5637), + [anon_sym_AMP_EQ] = ACTIONS(5637), + [anon_sym_CARET_EQ] = ACTIONS(5637), + [anon_sym_PIPE_EQ] = ACTIONS(5637), + [anon_sym_and_eq] = ACTIONS(7379), + [anon_sym_or_eq] = ACTIONS(7379), + [anon_sym_xor_eq] = ACTIONS(7379), + [anon_sym_LT_EQ_GT] = ACTIONS(5637), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_bitor] = ACTIONS(7379), + [anon_sym_xor] = ACTIONS(7379), + [anon_sym_bitand] = ACTIONS(7379), + [anon_sym_not_eq] = ACTIONS(7379), + [anon_sym_DASH_DASH] = ACTIONS(5637), + [anon_sym_PLUS_PLUS] = ACTIONS(5637), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(5637), + [anon_sym_DASH_GT] = ACTIONS(5637), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7379), + [anon_sym_override] = ACTIONS(7379), + [anon_sym_requires] = ACTIONS(7379), + [anon_sym_COLON_RBRACK] = ACTIONS(5637), }, [STATE(2118)] = { - [sym_attribute_specifier] = STATE(2195), - [sym_enumerator_list] = STATE(2161), + [sym_attribute_specifier] = STATE(2229), + [sym_enumerator_list] = STATE(2168), [sym_identifier] = ACTIONS(7381), [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), [anon_sym_COMMA] = ACTIONS(7383), @@ -324301,8 +324192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(7381), [anon_sym_SEMI] = ACTIONS(7383), [anon_sym___extension__] = ACTIONS(7381), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), [anon_sym_COLON] = ACTIONS(7381), [anon_sym_RBRACK_RBRACK] = ACTIONS(7383), [anon_sym_LBRACE] = ACTIONS(7385), @@ -324356,8 +324247,443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_RBRACK] = ACTIONS(7383), }, [STATE(2119)] = { - [sym_attribute_specifier] = STATE(2178), - [sym_enumerator_list] = STATE(2139), + [sym_ms_unaligned_ptr_modifier] = STATE(2689), + [sym_ms_pointer_modifier] = STATE(2499), + [sym__abstract_declarator] = STATE(5522), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2523), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1973), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2523), + [aux_sym_pointer_declarator_repeat1] = STATE(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7349), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7351), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7353), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7101), + [sym_ms_restrict_modifier] = ACTIONS(7103), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7105), + [sym_ms_signed_ptr_modifier] = ACTIONS(7105), + [anon_sym__unaligned] = ACTIONS(7107), + [anon_sym___unaligned] = ACTIONS(7107), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(6843), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + }, + [STATE(2120)] = { + [sym__abstract_declarator] = STATE(4173), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2123), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2123), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_RPAREN] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(6821), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(6825), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym_SEMI] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(7365), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7367), + [anon_sym_RBRACE] = ACTIONS(7367), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7367), + [anon_sym_or_eq] = ACTIONS(7367), + [anon_sym_xor_eq] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7367), + [anon_sym_override] = ACTIONS(7367), + [anon_sym_requires] = ACTIONS(7367), + [anon_sym_COLON_RBRACK] = ACTIONS(7367), + }, + [STATE(2121)] = { + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [aux_sym_preproc_if_token2] = ACTIONS(7329), + [aux_sym_preproc_else_token1] = ACTIONS(7329), + [aux_sym_preproc_elif_token1] = ACTIONS(7327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym_SEMI] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7329), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_RBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7327), + [anon_sym_or_eq] = ACTIONS(7327), + [anon_sym_xor_eq] = ACTIONS(7327), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), + [anon_sym_COLON_RBRACK] = ACTIONS(7329), + }, + [STATE(2122)] = { + [sym_template_argument_list] = STATE(2154), + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [aux_sym_preproc_if_token2] = ACTIONS(7122), + [aux_sym_preproc_else_token1] = ACTIONS(7122), + [aux_sym_preproc_elif_token1] = ACTIONS(7117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7122), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7117), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7117), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7117), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(7117), + [anon_sym_GT_GT] = ACTIONS(7117), + [anon_sym_SEMI] = ACTIONS(7122), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7122), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_RBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7122), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_and_eq] = ACTIONS(7117), + [anon_sym_or_eq] = ACTIONS(7117), + [anon_sym_xor_eq] = ACTIONS(7117), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7117), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7117), + [anon_sym_not_eq] = ACTIONS(7117), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7117), + [anon_sym_override] = ACTIONS(7117), + [anon_sym_requires] = ACTIONS(7117), + [anon_sym_COLON_RBRACK] = ACTIONS(7122), + }, + [STATE(2123)] = { + [sym__abstract_declarator] = STATE(4258), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_RPAREN] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(6821), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(6825), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym_SEMI] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(7369), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7371), + [anon_sym_RBRACE] = ACTIONS(7371), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), + [anon_sym_COLON_RBRACK] = ACTIONS(7371), + }, + [STATE(2124)] = { + [sym_attribute_specifier] = STATE(2215), + [sym_enumerator_list] = STATE(2162), [sym_identifier] = ACTIONS(7387), [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), [anon_sym_COMMA] = ACTIONS(7389), @@ -324388,8 +324714,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(7387), [anon_sym_SEMI] = ACTIONS(7389), [anon_sym___extension__] = ACTIONS(7387), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), [anon_sym_COLON] = ACTIONS(7387), [anon_sym_RBRACK_RBRACK] = ACTIONS(7389), [anon_sym_LBRACE] = ACTIONS(7385), @@ -324442,308 +324768,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7387), [anon_sym_COLON_RBRACK] = ACTIONS(7389), }, - [STATE(2120)] = { - [sym_decltype_auto] = STATE(2234), - [sym_template_argument_list] = STATE(2090), - [aux_sym_sized_type_specifier_repeat1] = STATE(2209), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [aux_sym_preproc_if_token2] = ACTIONS(5643), - [aux_sym_preproc_else_token1] = ACTIONS(5643), - [aux_sym_preproc_elif_token1] = ACTIONS(5636), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5643), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5636), - [anon_sym_SLASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5636), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5636), - [anon_sym_CARET] = ACTIONS(5636), - [anon_sym_AMP] = ACTIONS(5636), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5636), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5636), - [anon_sym_LT] = ACTIONS(7266), - [anon_sym_LT_LT] = ACTIONS(5636), - [anon_sym_GT_GT] = ACTIONS(5636), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(6815), - [anon_sym_unsigned] = ACTIONS(6815), - [anon_sym_long] = ACTIONS(6815), - [anon_sym_short] = ACTIONS(6815), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [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(5636), - [anon_sym_or_eq] = ACTIONS(5636), - [anon_sym_xor_eq] = ACTIONS(5636), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5636), - [anon_sym_and] = ACTIONS(5636), - [anon_sym_bitor] = ACTIONS(5636), - [anon_sym_xor] = ACTIONS(5636), - [anon_sym_bitand] = ACTIONS(5636), - [anon_sym_not_eq] = ACTIONS(5636), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6817), - [anon_sym_decltype] = ACTIONS(6819), - [anon_sym_final] = ACTIONS(5636), - [anon_sym_override] = ACTIONS(5636), - [anon_sym_requires] = ACTIONS(5636), - }, - [STATE(2121)] = { - [sym__abstract_declarator] = STATE(4157), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2124), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1953), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2124), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_RPAREN] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(6843), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(6845), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(6847), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym_SEMI] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(7393), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7391), - [anon_sym_RBRACE] = ACTIONS(7391), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7391), - [anon_sym_or_eq] = ACTIONS(7391), - [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), - [anon_sym_COLON_RBRACK] = ACTIONS(7391), - }, - [STATE(2122)] = { - [sym__abstract_declarator] = STATE(4238), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2103), - [sym_alignas_qualifier] = STATE(2652), + [STATE(2125)] = { + [sym__abstract_declarator] = STATE(4147), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2101), + [sym_alignas_qualifier] = STATE(2046), [sym_parameter_list] = STATE(1947), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2103), - [sym_identifier] = ACTIONS(7393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [aux_sym_preproc_if_token2] = ACTIONS(7391), - [aux_sym_preproc_else_token1] = ACTIONS(7391), - [aux_sym_preproc_elif_token1] = ACTIONS(7393), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7391), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(6827), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(6829), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7393), - [anon_sym_or_eq] = ACTIONS(7393), - [anon_sym_xor_eq] = ACTIONS(7393), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7393), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7393), - [anon_sym_not_eq] = ACTIONS(7393), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7393), - [anon_sym_override] = ACTIONS(7393), - [anon_sym_requires] = ACTIONS(7393), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_RPAREN] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(6821), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(6825), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym_SEMI] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(7373), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7375), + [anon_sym_RBRACE] = ACTIONS(7375), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), + [anon_sym_COLON_RBRACK] = ACTIONS(7375), }, - [STATE(2123)] = { - [sym_function_definition] = STATE(422), - [sym_declaration] = STATE(422), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6411), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2705), - [sym_declaration_list] = STATE(422), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2126)] = { + [sym_function_definition] = STATE(424), + [sym_declaration] = STATE(424), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6387), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2719), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(11117), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -324751,7 +324903,6 @@ 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(7395), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -324778,507 +324929,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7393), + [anon_sym_struct] = ACTIONS(7395), + [anon_sym_union] = ACTIONS(7397), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2124)] = { - [sym__abstract_declarator] = STATE(4159), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1953), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_RPAREN] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(6843), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(6845), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(6847), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym_SEMI] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(7349), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7351), - [anon_sym_RBRACE] = ACTIONS(7351), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), - [anon_sym_COLON_RBRACK] = ACTIONS(7351), - }, - [STATE(2125)] = { - [sym__abstract_declarator] = STATE(4160), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2113), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1953), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(6843), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(6845), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(6847), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym_SEMI] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(7341), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), - [anon_sym_RBRACE] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - [anon_sym_COLON_RBRACK] = ACTIONS(7343), - }, - [STATE(2126)] = { - [sym__abstract_declarator] = STATE(4165), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1953), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6843), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(6845), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6847), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), - [anon_sym_RBRACE] = ACTIONS(6823), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - [anon_sym_COLON_RBRACK] = ACTIONS(6823), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(2127)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2725), - [sym_ms_pointer_modifier] = STATE(2438), - [sym__abstract_declarator] = STATE(5512), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2463), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1975), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2463), - [aux_sym_pointer_declarator_repeat1] = STATE(2438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6821), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7144), - [sym_ms_restrict_modifier] = ACTIONS(7146), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7148), - [sym_ms_signed_ptr_modifier] = ACTIONS(7148), - [anon_sym__unaligned] = ACTIONS(7150), - [anon_sym___unaligned] = ACTIONS(7150), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6821), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6823), - }, - [STATE(2128)] = { - [sym__abstract_declarator] = STATE(4244), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1947), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [sym_identifier] = ACTIONS(6821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [aux_sym_preproc_if_token2] = ACTIONS(6823), - [aux_sym_preproc_else_token1] = ACTIONS(6823), - [aux_sym_preproc_elif_token1] = ACTIONS(6821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6827), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(6829), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6821), - [anon_sym_or_eq] = ACTIONS(6821), - [anon_sym_xor_eq] = ACTIONS(6821), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6821), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6821), - [anon_sym_not_eq] = ACTIONS(6821), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6821), - [anon_sym_override] = ACTIONS(6821), - [anon_sym_requires] = ACTIONS(6821), - }, - [STATE(2129)] = { - [sym_attribute_specifier] = STATE(2186), - [sym_identifier] = ACTIONS(7397), + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [sym_identifier] = ACTIONS(7060), [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), [anon_sym_COMMA] = ACTIONS(7399), [anon_sym_RPAREN] = ACTIONS(7399), - [aux_sym_preproc_if_token2] = ACTIONS(7399), - [aux_sym_preproc_else_token1] = ACTIONS(7399), - [aux_sym_preproc_elif_token1] = ACTIONS(7397), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7399), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7399), [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(7397), - [anon_sym_PLUS] = ACTIONS(7397), - [anon_sym_STAR] = ACTIONS(7397), - [anon_sym_SLASH] = ACTIONS(7397), - [anon_sym_PERCENT] = ACTIONS(7397), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), [anon_sym_PIPE_PIPE] = ACTIONS(7399), [anon_sym_AMP_AMP] = ACTIONS(7399), - [anon_sym_PIPE] = ACTIONS(7397), - [anon_sym_CARET] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7397), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), [anon_sym_EQ_EQ] = ACTIONS(7399), [anon_sym_BANG_EQ] = ACTIONS(7399), - [anon_sym_GT] = ACTIONS(7397), + [anon_sym_GT] = ACTIONS(7402), [anon_sym_GT_EQ] = ACTIONS(7399), - [anon_sym_LT_EQ] = ACTIONS(7397), - [anon_sym_LT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_GT_GT] = ACTIONS(7397), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), [anon_sym_SEMI] = ACTIONS(7399), - [anon_sym___extension__] = ACTIONS(7397), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7397), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_COLON] = ACTIONS(7402), [anon_sym_RBRACK_RBRACK] = ACTIONS(7399), [anon_sym_LBRACE] = ACTIONS(7399), [anon_sym_RBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(7064), + [anon_sym_unsigned] = ACTIONS(7064), + [anon_sym_long] = ACTIONS(7064), + [anon_sym_short] = ACTIONS(7064), [anon_sym_LBRACK] = ACTIONS(7399), - [anon_sym_EQ] = ACTIONS(7397), - [anon_sym_const] = ACTIONS(7397), - [anon_sym_constexpr] = ACTIONS(7397), - [anon_sym_volatile] = ACTIONS(7397), - [anon_sym_restrict] = ACTIONS(7397), - [anon_sym___restrict__] = ACTIONS(7397), - [anon_sym__Atomic] = ACTIONS(7397), - [anon_sym__Noreturn] = ACTIONS(7397), - [anon_sym_noreturn] = ACTIONS(7397), - [anon_sym__Nonnull] = ACTIONS(7397), - [anon_sym_mutable] = ACTIONS(7397), - [anon_sym_constinit] = ACTIONS(7397), - [anon_sym_consteval] = ACTIONS(7397), - [anon_sym_alignas] = ACTIONS(7397), - [anon_sym__Alignas] = ACTIONS(7397), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [sym_primitive_type] = ACTIONS(7060), [anon_sym_QMARK] = ACTIONS(7399), [anon_sym_STAR_EQ] = ACTIONS(7399), [anon_sym_SLASH_EQ] = ACTIONS(7399), @@ -325290,326 +325006,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7399), [anon_sym_CARET_EQ] = ACTIONS(7399), [anon_sym_PIPE_EQ] = ACTIONS(7399), - [anon_sym_and_eq] = ACTIONS(7397), - [anon_sym_or_eq] = ACTIONS(7397), - [anon_sym_xor_eq] = ACTIONS(7397), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), [anon_sym_LT_EQ_GT] = ACTIONS(7399), - [anon_sym_or] = ACTIONS(7397), - [anon_sym_and] = ACTIONS(7397), - [anon_sym_bitor] = ACTIONS(7397), - [anon_sym_xor] = ACTIONS(7397), - [anon_sym_bitand] = ACTIONS(7397), - [anon_sym_not_eq] = ACTIONS(7397), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), [anon_sym_DASH_DASH] = ACTIONS(7399), [anon_sym_PLUS_PLUS] = ACTIONS(7399), - [anon_sym_DOT] = ACTIONS(7397), + [anon_sym_DOT] = ACTIONS(7402), [anon_sym_DOT_STAR] = ACTIONS(7399), [anon_sym_DASH_GT] = ACTIONS(7399), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7397), - [anon_sym_override] = ACTIONS(7397), - [anon_sym_requires] = ACTIONS(7397), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_requires] = ACTIONS(7402), [anon_sym_COLON_RBRACK] = ACTIONS(7399), }, + [STATE(2128)] = { + [sym_attribute_specifier] = STATE(2366), + [sym_attribute_declaration] = STATE(4556), + [sym_type_qualifier] = STATE(2352), + [sym_alignas_qualifier] = STATE(2435), + [aux_sym_type_definition_repeat1] = STATE(2366), + [aux_sym__type_definition_type_repeat1] = STATE(2352), + [aux_sym_attributed_declarator_repeat1] = STATE(4556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6702), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_RBRACK] = ACTIONS(6748), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6710), + [anon_sym_constexpr] = ACTIONS(6702), + [anon_sym_volatile] = ACTIONS(6702), + [anon_sym_restrict] = ACTIONS(6702), + [anon_sym___restrict__] = ACTIONS(6702), + [anon_sym__Atomic] = ACTIONS(6702), + [anon_sym__Noreturn] = ACTIONS(6702), + [anon_sym_noreturn] = ACTIONS(6702), + [anon_sym__Nonnull] = ACTIONS(6702), + [anon_sym_mutable] = ACTIONS(6702), + [anon_sym_constinit] = ACTIONS(6702), + [anon_sym_consteval] = ACTIONS(6702), + [anon_sym_alignas] = ACTIONS(6712), + [anon_sym__Alignas] = ACTIONS(6712), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6748), + [anon_sym_or_eq] = ACTIONS(6748), + [anon_sym_xor_eq] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), + }, + [STATE(2129)] = { + [sym_template_argument_list] = STATE(2048), + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7129), + [anon_sym_COMMA] = ACTIONS(7129), + [anon_sym_RPAREN] = ACTIONS(7129), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_TILDE] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7124), + [anon_sym_PLUS] = ACTIONS(7124), + [anon_sym_STAR] = ACTIONS(7119), + [anon_sym_SLASH] = ACTIONS(7124), + [anon_sym_PERCENT] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7129), + [anon_sym_AMP_AMP] = ACTIONS(7119), + [anon_sym_PIPE] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7126), + [anon_sym_EQ_EQ] = ACTIONS(7129), + [anon_sym_BANG_EQ] = ACTIONS(7129), + [anon_sym_GT] = ACTIONS(7124), + [anon_sym_GT_EQ] = ACTIONS(7129), + [anon_sym_LT_EQ] = ACTIONS(7124), + [anon_sym_LT] = ACTIONS(7405), + [anon_sym_LT_LT] = ACTIONS(7129), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym_SEMI] = ACTIONS(7119), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym_virtual] = ACTIONS(7117), + [anon_sym_extern] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7122), + [anon_sym___declspec] = ACTIONS(7117), + [anon_sym___based] = ACTIONS(7117), + [anon_sym___cdecl] = ACTIONS(7117), + [anon_sym___clrcall] = ACTIONS(7117), + [anon_sym___stdcall] = ACTIONS(7117), + [anon_sym___fastcall] = ACTIONS(7117), + [anon_sym___thiscall] = ACTIONS(7117), + [anon_sym___vectorcall] = ACTIONS(7117), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_RBRACE] = ACTIONS(7129), + [anon_sym_LBRACK] = ACTIONS(7126), + [anon_sym_static] = ACTIONS(7117), + [anon_sym_register] = ACTIONS(7117), + [anon_sym_inline] = ACTIONS(7117), + [anon_sym___inline] = ACTIONS(7117), + [anon_sym___inline__] = ACTIONS(7117), + [anon_sym___forceinline] = ACTIONS(7117), + [anon_sym_thread_local] = ACTIONS(7117), + [anon_sym___thread] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(7129), + [anon_sym_LT_EQ_GT] = ACTIONS(7129), + [anon_sym_or] = ACTIONS(7124), + [anon_sym_and] = ACTIONS(7124), + [anon_sym_bitor] = ACTIONS(7124), + [anon_sym_xor] = ACTIONS(7124), + [anon_sym_bitand] = ACTIONS(7124), + [anon_sym_not_eq] = ACTIONS(7124), + [anon_sym_DASH_DASH] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7129), + [anon_sym_DOT] = ACTIONS(7124), + [anon_sym_DOT_STAR] = ACTIONS(7129), + [anon_sym_DASH_GT] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7117), + [anon_sym_template] = ACTIONS(7117), + [anon_sym_operator] = ACTIONS(7117), + [anon_sym_LBRACK_COLON] = ACTIONS(7122), + }, [STATE(2130)] = { - [sym_identifier] = ACTIONS(6594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), - [anon_sym_COMMA] = ACTIONS(6596), - [anon_sym_RPAREN] = ACTIONS(6596), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_TILDE] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6598), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6596), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6596), - [anon_sym_GT_GT] = ACTIONS(6596), - [anon_sym_SEMI] = ACTIONS(6596), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym_virtual] = ACTIONS(6594), - [anon_sym_extern] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), - [anon_sym___declspec] = ACTIONS(6594), - [anon_sym___based] = ACTIONS(6594), - [anon_sym___cdecl] = ACTIONS(6594), - [anon_sym___clrcall] = ACTIONS(6594), - [anon_sym___stdcall] = ACTIONS(6594), - [anon_sym___fastcall] = ACTIONS(6594), - [anon_sym___thiscall] = ACTIONS(6594), - [anon_sym___vectorcall] = ACTIONS(6594), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_RBRACE] = ACTIONS(6596), - [anon_sym_LBRACK] = ACTIONS(6605), - [anon_sym_static] = ACTIONS(6594), - [anon_sym_register] = ACTIONS(6594), - [anon_sym_inline] = ACTIONS(6594), - [anon_sym___inline] = ACTIONS(6594), - [anon_sym___inline__] = ACTIONS(6594), - [anon_sym___forceinline] = ACTIONS(6594), - [anon_sym_thread_local] = ACTIONS(6594), - [anon_sym___thread] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6603), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6603), - [anon_sym_not_eq] = ACTIONS(6603), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_template] = ACTIONS(6594), - [anon_sym_operator] = ACTIONS(6594), - [anon_sym_LBRACK_COLON] = ACTIONS(6601), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [aux_sym_sized_type_specifier_repeat1] = STATE(2246), + [sym_identifier] = ACTIONS(7191), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym_SEMI] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(6837), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_COLON] = ACTIONS(7195), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7193), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_RBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7200), + [anon_sym_unsigned] = ACTIONS(7200), + [anon_sym_long] = ACTIONS(7200), + [anon_sym_short] = ACTIONS(7200), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6837), + [anon_sym_volatile] = ACTIONS(6837), + [anon_sym_restrict] = ACTIONS(6837), + [anon_sym___restrict__] = ACTIONS(6837), + [anon_sym__Atomic] = ACTIONS(6837), + [anon_sym__Noreturn] = ACTIONS(6837), + [anon_sym_noreturn] = ACTIONS(6837), + [anon_sym__Nonnull] = ACTIONS(6837), + [anon_sym_mutable] = ACTIONS(6837), + [anon_sym_constinit] = ACTIONS(6837), + [anon_sym_consteval] = ACTIONS(6837), + [anon_sym_alignas] = ACTIONS(7407), + [anon_sym__Alignas] = ACTIONS(7407), + [sym_primitive_type] = ACTIONS(7205), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7193), }, [STATE(2131)] = { - [sym_identifier] = ACTIONS(6594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), - [anon_sym_COMMA] = ACTIONS(6596), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_TILDE] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6598), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6596), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6596), - [anon_sym_GT_GT] = ACTIONS(6596), - [anon_sym_SEMI] = ACTIONS(6598), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym_virtual] = ACTIONS(6594), - [anon_sym_extern] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6598), - [anon_sym___declspec] = ACTIONS(6594), - [anon_sym___based] = ACTIONS(6594), - [anon_sym___cdecl] = ACTIONS(6594), - [anon_sym___clrcall] = ACTIONS(6594), - [anon_sym___stdcall] = ACTIONS(6594), - [anon_sym___fastcall] = ACTIONS(6594), - [anon_sym___thiscall] = ACTIONS(6594), - [anon_sym___vectorcall] = ACTIONS(6594), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_RBRACE] = ACTIONS(6596), - [anon_sym_LBRACK] = ACTIONS(6605), - [anon_sym_static] = ACTIONS(6594), - [anon_sym_RBRACK] = ACTIONS(6596), - [anon_sym_register] = ACTIONS(6594), - [anon_sym_inline] = ACTIONS(6594), - [anon_sym___inline] = ACTIONS(6594), - [anon_sym___inline__] = ACTIONS(6594), - [anon_sym___forceinline] = ACTIONS(6594), - [anon_sym_thread_local] = ACTIONS(6594), - [anon_sym___thread] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6603), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6603), - [anon_sym_not_eq] = ACTIONS(6603), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_function_definition] = STATE(970), + [sym_declaration] = STATE(970), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6408), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2708), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(11548), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7409), + [anon_sym_struct] = ACTIONS(7411), + [anon_sym_union] = ACTIONS(7413), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_template] = ACTIONS(6594), - [anon_sym_operator] = ACTIONS(6594), - [anon_sym_LBRACK_COLON] = ACTIONS(6601), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(2132)] = { - [sym_template_argument_list] = STATE(2206), - [sym_identifier] = ACTIONS(6576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_RPAREN] = ACTIONS(6569), - [aux_sym_preproc_if_token2] = ACTIONS(6569), - [aux_sym_preproc_else_token1] = ACTIONS(6569), - [aux_sym_preproc_elif_token1] = ACTIONS(6576), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6569), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6576), - [anon_sym_PLUS] = ACTIONS(6576), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6576), - [anon_sym_PERCENT] = ACTIONS(6576), - [anon_sym_PIPE_PIPE] = ACTIONS(6569), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6576), - [anon_sym_CARET] = ACTIONS(6576), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6569), - [anon_sym_BANG_EQ] = ACTIONS(6569), - [anon_sym_GT] = ACTIONS(6576), - [anon_sym_GT_EQ] = ACTIONS(6569), - [anon_sym_LT_EQ] = ACTIONS(6576), - [anon_sym_LT] = ACTIONS(7401), - [anon_sym_LT_LT] = ACTIONS(6576), - [anon_sym_GT_GT] = ACTIONS(6576), - [anon_sym_SEMI] = ACTIONS(6569), - [anon_sym___extension__] = ACTIONS(6565), - [anon_sym___attribute__] = ACTIONS(6576), - [anon_sym___attribute] = ACTIONS(6576), - [anon_sym_COLON] = ACTIONS(6576), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6569), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_RBRACE] = ACTIONS(6569), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6565), - [anon_sym_volatile] = ACTIONS(6565), - [anon_sym_restrict] = ACTIONS(6565), - [anon_sym___restrict__] = ACTIONS(6565), - [anon_sym__Atomic] = ACTIONS(6565), - [anon_sym__Noreturn] = ACTIONS(6565), - [anon_sym_noreturn] = ACTIONS(6565), - [anon_sym__Nonnull] = ACTIONS(6565), - [anon_sym_mutable] = ACTIONS(6565), - [anon_sym_constinit] = ACTIONS(6565), - [anon_sym_consteval] = ACTIONS(6565), - [anon_sym_alignas] = ACTIONS(6565), - [anon_sym__Alignas] = ACTIONS(6565), - [anon_sym_QMARK] = ACTIONS(6569), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6567), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6574), - [anon_sym_or_eq] = ACTIONS(6574), - [anon_sym_xor_eq] = ACTIONS(6574), - [anon_sym_LT_EQ_GT] = ACTIONS(6569), - [anon_sym_or] = ACTIONS(6576), - [anon_sym_and] = ACTIONS(6576), - [anon_sym_bitor] = ACTIONS(6576), - [anon_sym_xor] = ACTIONS(6576), - [anon_sym_bitand] = ACTIONS(6576), - [anon_sym_not_eq] = ACTIONS(6576), - [anon_sym_DASH_DASH] = ACTIONS(6569), - [anon_sym_PLUS_PLUS] = ACTIONS(6569), - [anon_sym_DOT] = ACTIONS(6576), - [anon_sym_DOT_STAR] = ACTIONS(6569), - [anon_sym_DASH_GT] = ACTIONS(6569), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6565), - [anon_sym_decltype] = ACTIONS(6565), - [anon_sym_COLON_RBRACK] = ACTIONS(6569), + [sym_function_definition] = STATE(3263), + [sym_declaration] = STATE(3263), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6407), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2721), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(11187), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(7415), + [anon_sym_struct] = ACTIONS(7417), + [anon_sym_union] = ACTIONS(7419), + [anon_sym_typename] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(2133)] = { - [sym_function_definition] = STATE(933), - [sym_declaration] = STATE(933), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6385), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2684), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10871), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [sym_function_definition] = STATE(1002), + [sym_declaration] = STATE(1002), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6408), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2708), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10903), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -325643,145 +325531,231 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7407), - [anon_sym_struct] = ACTIONS(7409), - [anon_sym_union] = ACTIONS(7411), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7421), + [anon_sym_struct] = ACTIONS(7423), + [anon_sym_union] = ACTIONS(7425), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(2134)] = { - [sym_attribute_specifier] = STATE(2198), - [sym_identifier] = ACTIONS(7413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7415), - [anon_sym_COMMA] = ACTIONS(7415), - [anon_sym_RPAREN] = ACTIONS(7415), - [aux_sym_preproc_if_token2] = ACTIONS(7415), - [aux_sym_preproc_else_token1] = ACTIONS(7415), - [aux_sym_preproc_elif_token1] = ACTIONS(7413), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7415), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7415), - [anon_sym_LPAREN2] = ACTIONS(7415), - [anon_sym_DASH] = ACTIONS(7413), - [anon_sym_PLUS] = ACTIONS(7413), - [anon_sym_STAR] = ACTIONS(7413), - [anon_sym_SLASH] = ACTIONS(7413), - [anon_sym_PERCENT] = ACTIONS(7413), - [anon_sym_PIPE_PIPE] = ACTIONS(7415), - [anon_sym_AMP_AMP] = ACTIONS(7415), - [anon_sym_PIPE] = ACTIONS(7413), - [anon_sym_CARET] = ACTIONS(7413), - [anon_sym_AMP] = ACTIONS(7413), - [anon_sym_EQ_EQ] = ACTIONS(7415), - [anon_sym_BANG_EQ] = ACTIONS(7415), - [anon_sym_GT] = ACTIONS(7413), - [anon_sym_GT_EQ] = ACTIONS(7415), - [anon_sym_LT_EQ] = ACTIONS(7413), - [anon_sym_LT] = ACTIONS(7413), - [anon_sym_LT_LT] = ACTIONS(7413), - [anon_sym_GT_GT] = ACTIONS(7413), - [anon_sym_SEMI] = ACTIONS(7415), - [anon_sym___extension__] = ACTIONS(7413), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7413), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7415), - [anon_sym_LBRACE] = ACTIONS(7415), - [anon_sym_RBRACE] = ACTIONS(7415), - [anon_sym_LBRACK] = ACTIONS(7415), - [anon_sym_EQ] = ACTIONS(7413), - [anon_sym_const] = ACTIONS(7413), - [anon_sym_constexpr] = ACTIONS(7413), - [anon_sym_volatile] = ACTIONS(7413), - [anon_sym_restrict] = ACTIONS(7413), - [anon_sym___restrict__] = ACTIONS(7413), - [anon_sym__Atomic] = ACTIONS(7413), - [anon_sym__Noreturn] = ACTIONS(7413), - [anon_sym_noreturn] = ACTIONS(7413), - [anon_sym__Nonnull] = ACTIONS(7413), - [anon_sym_mutable] = ACTIONS(7413), - [anon_sym_constinit] = ACTIONS(7413), - [anon_sym_consteval] = ACTIONS(7413), - [anon_sym_alignas] = ACTIONS(7413), - [anon_sym__Alignas] = ACTIONS(7413), - [anon_sym_QMARK] = ACTIONS(7415), - [anon_sym_STAR_EQ] = ACTIONS(7415), - [anon_sym_SLASH_EQ] = ACTIONS(7415), - [anon_sym_PERCENT_EQ] = ACTIONS(7415), - [anon_sym_PLUS_EQ] = ACTIONS(7415), - [anon_sym_DASH_EQ] = ACTIONS(7415), - [anon_sym_LT_LT_EQ] = ACTIONS(7415), - [anon_sym_GT_GT_EQ] = ACTIONS(7415), - [anon_sym_AMP_EQ] = ACTIONS(7415), - [anon_sym_CARET_EQ] = ACTIONS(7415), - [anon_sym_PIPE_EQ] = ACTIONS(7415), - [anon_sym_and_eq] = ACTIONS(7413), - [anon_sym_or_eq] = ACTIONS(7413), - [anon_sym_xor_eq] = ACTIONS(7413), - [anon_sym_LT_EQ_GT] = ACTIONS(7415), - [anon_sym_or] = ACTIONS(7413), - [anon_sym_and] = ACTIONS(7413), - [anon_sym_bitor] = ACTIONS(7413), - [anon_sym_xor] = ACTIONS(7413), - [anon_sym_bitand] = ACTIONS(7413), - [anon_sym_not_eq] = ACTIONS(7413), - [anon_sym_DASH_DASH] = ACTIONS(7415), - [anon_sym_PLUS_PLUS] = ACTIONS(7415), - [anon_sym_DOT] = ACTIONS(7413), - [anon_sym_DOT_STAR] = ACTIONS(7415), - [anon_sym_DASH_GT] = ACTIONS(7415), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7413), - [anon_sym_override] = ACTIONS(7413), - [anon_sym_requires] = ACTIONS(7413), - [anon_sym_COLON_RBRACK] = ACTIONS(7415), + [sym_template_argument_list] = STATE(2221), + [sym_identifier] = ACTIONS(6570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_RPAREN] = ACTIONS(6563), + [aux_sym_preproc_if_token2] = ACTIONS(6563), + [aux_sym_preproc_else_token1] = ACTIONS(6563), + [aux_sym_preproc_elif_token1] = ACTIONS(6570), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6563), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6570), + [anon_sym_PLUS] = ACTIONS(6570), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6570), + [anon_sym_PIPE_PIPE] = ACTIONS(6563), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6570), + [anon_sym_CARET] = ACTIONS(6570), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6563), + [anon_sym_BANG_EQ] = ACTIONS(6563), + [anon_sym_GT] = ACTIONS(6570), + [anon_sym_GT_EQ] = ACTIONS(6563), + [anon_sym_LT_EQ] = ACTIONS(6570), + [anon_sym_LT] = ACTIONS(7427), + [anon_sym_LT_LT] = ACTIONS(6570), + [anon_sym_GT_GT] = ACTIONS(6570), + [anon_sym_SEMI] = ACTIONS(6563), + [anon_sym___extension__] = ACTIONS(6559), + [anon_sym___attribute__] = ACTIONS(6570), + [anon_sym___attribute] = ACTIONS(6570), + [anon_sym_COLON] = ACTIONS(6570), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6563), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_RBRACE] = ACTIONS(6563), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6570), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6559), + [anon_sym_volatile] = ACTIONS(6559), + [anon_sym_restrict] = ACTIONS(6559), + [anon_sym___restrict__] = ACTIONS(6559), + [anon_sym__Atomic] = ACTIONS(6559), + [anon_sym__Noreturn] = ACTIONS(6559), + [anon_sym_noreturn] = ACTIONS(6559), + [anon_sym__Nonnull] = ACTIONS(6559), + [anon_sym_mutable] = ACTIONS(6559), + [anon_sym_constinit] = ACTIONS(6559), + [anon_sym_consteval] = ACTIONS(6559), + [anon_sym_alignas] = ACTIONS(6559), + [anon_sym__Alignas] = ACTIONS(6559), + [anon_sym_QMARK] = ACTIONS(6563), + [anon_sym_STAR_EQ] = ACTIONS(6563), + [anon_sym_SLASH_EQ] = ACTIONS(6563), + [anon_sym_PERCENT_EQ] = ACTIONS(6563), + [anon_sym_PLUS_EQ] = ACTIONS(6563), + [anon_sym_DASH_EQ] = ACTIONS(6563), + [anon_sym_LT_LT_EQ] = ACTIONS(6563), + [anon_sym_GT_GT_EQ] = ACTIONS(6563), + [anon_sym_AMP_EQ] = ACTIONS(6563), + [anon_sym_CARET_EQ] = ACTIONS(6563), + [anon_sym_PIPE_EQ] = ACTIONS(6563), + [anon_sym_and_eq] = ACTIONS(6570), + [anon_sym_or_eq] = ACTIONS(6570), + [anon_sym_xor_eq] = ACTIONS(6570), + [anon_sym_LT_EQ_GT] = ACTIONS(6563), + [anon_sym_or] = ACTIONS(6570), + [anon_sym_and] = ACTIONS(6570), + [anon_sym_bitor] = ACTIONS(6570), + [anon_sym_xor] = ACTIONS(6570), + [anon_sym_bitand] = ACTIONS(6570), + [anon_sym_not_eq] = ACTIONS(6570), + [anon_sym_DASH_DASH] = ACTIONS(6563), + [anon_sym_PLUS_PLUS] = ACTIONS(6563), + [anon_sym_DOT] = ACTIONS(6570), + [anon_sym_DOT_STAR] = ACTIONS(6563), + [anon_sym_DASH_GT] = ACTIONS(6563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6559), + [anon_sym_decltype] = ACTIONS(6559), + [anon_sym_COLON_RBRACK] = ACTIONS(6563), }, [STATE(2135)] = { - [sym_function_definition] = STATE(881), - [sym_declaration] = STATE(881), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6385), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2684), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10700), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [sym_identifier] = ACTIONS(7187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_RPAREN] = ACTIONS(7189), + [aux_sym_preproc_if_token2] = ACTIONS(7189), + [aux_sym_preproc_else_token1] = ACTIONS(7189), + [aux_sym_preproc_elif_token1] = ACTIONS(7187), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7189), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym_SEMI] = ACTIONS(7189), + [anon_sym___extension__] = ACTIONS(7187), + [anon_sym___attribute__] = ACTIONS(7187), + [anon_sym___attribute] = ACTIONS(7187), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_RBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7187), + [anon_sym_volatile] = ACTIONS(7187), + [anon_sym_restrict] = ACTIONS(7187), + [anon_sym___restrict__] = ACTIONS(7187), + [anon_sym__Atomic] = ACTIONS(7187), + [anon_sym__Noreturn] = ACTIONS(7187), + [anon_sym_noreturn] = ACTIONS(7187), + [anon_sym__Nonnull] = ACTIONS(7187), + [anon_sym_mutable] = ACTIONS(7187), + [anon_sym_constinit] = ACTIONS(7187), + [anon_sym_consteval] = ACTIONS(7187), + [anon_sym_alignas] = ACTIONS(7187), + [anon_sym__Alignas] = ACTIONS(7187), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7189), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_and_eq] = ACTIONS(7187), + [anon_sym_or_eq] = ACTIONS(7187), + [anon_sym_xor_eq] = ACTIONS(7187), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7187), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7187), + [anon_sym_not_eq] = ACTIONS(7187), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7189), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7187), + [anon_sym_override] = ACTIONS(7187), + [anon_sym_requires] = ACTIONS(7187), + [anon_sym_COLON_RBRACK] = ACTIONS(7189), + }, + [STATE(2136)] = { + [sym_function_definition] = STATE(835), + [sym_declaration] = STATE(835), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6414), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2716), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10887), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -325815,489 +325789,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7417), - [anon_sym_struct] = ACTIONS(7419), - [anon_sym_union] = ACTIONS(7421), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7431), + [anon_sym_struct] = ACTIONS(7433), + [anon_sym_union] = ACTIONS(7435), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2136)] = { - [sym_attribute_specifier] = STATE(2194), - [sym_identifier] = ACTIONS(7423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7425), - [anon_sym_COMMA] = ACTIONS(7425), - [anon_sym_RPAREN] = ACTIONS(7425), - [aux_sym_preproc_if_token2] = ACTIONS(7425), - [aux_sym_preproc_else_token1] = ACTIONS(7425), - [aux_sym_preproc_elif_token1] = ACTIONS(7423), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7425), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7425), - [anon_sym_LPAREN2] = ACTIONS(7425), - [anon_sym_DASH] = ACTIONS(7423), - [anon_sym_PLUS] = ACTIONS(7423), - [anon_sym_STAR] = ACTIONS(7423), - [anon_sym_SLASH] = ACTIONS(7423), - [anon_sym_PERCENT] = ACTIONS(7423), - [anon_sym_PIPE_PIPE] = ACTIONS(7425), - [anon_sym_AMP_AMP] = ACTIONS(7425), - [anon_sym_PIPE] = ACTIONS(7423), - [anon_sym_CARET] = ACTIONS(7423), - [anon_sym_AMP] = ACTIONS(7423), - [anon_sym_EQ_EQ] = ACTIONS(7425), - [anon_sym_BANG_EQ] = ACTIONS(7425), - [anon_sym_GT] = ACTIONS(7423), - [anon_sym_GT_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7423), - [anon_sym_LT] = ACTIONS(7423), - [anon_sym_LT_LT] = ACTIONS(7423), - [anon_sym_GT_GT] = ACTIONS(7423), - [anon_sym_SEMI] = ACTIONS(7425), - [anon_sym___extension__] = ACTIONS(7423), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7423), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7425), - [anon_sym_LBRACE] = ACTIONS(7425), - [anon_sym_RBRACE] = ACTIONS(7425), - [anon_sym_LBRACK] = ACTIONS(7425), - [anon_sym_EQ] = ACTIONS(7423), - [anon_sym_const] = ACTIONS(7423), - [anon_sym_constexpr] = ACTIONS(7423), - [anon_sym_volatile] = ACTIONS(7423), - [anon_sym_restrict] = ACTIONS(7423), - [anon_sym___restrict__] = ACTIONS(7423), - [anon_sym__Atomic] = ACTIONS(7423), - [anon_sym__Noreturn] = ACTIONS(7423), - [anon_sym_noreturn] = ACTIONS(7423), - [anon_sym__Nonnull] = ACTIONS(7423), - [anon_sym_mutable] = ACTIONS(7423), - [anon_sym_constinit] = ACTIONS(7423), - [anon_sym_consteval] = ACTIONS(7423), - [anon_sym_alignas] = ACTIONS(7423), - [anon_sym__Alignas] = ACTIONS(7423), - [anon_sym_QMARK] = ACTIONS(7425), - [anon_sym_STAR_EQ] = ACTIONS(7425), - [anon_sym_SLASH_EQ] = ACTIONS(7425), - [anon_sym_PERCENT_EQ] = ACTIONS(7425), - [anon_sym_PLUS_EQ] = ACTIONS(7425), - [anon_sym_DASH_EQ] = ACTIONS(7425), - [anon_sym_LT_LT_EQ] = ACTIONS(7425), - [anon_sym_GT_GT_EQ] = ACTIONS(7425), - [anon_sym_AMP_EQ] = ACTIONS(7425), - [anon_sym_CARET_EQ] = ACTIONS(7425), - [anon_sym_PIPE_EQ] = ACTIONS(7425), - [anon_sym_and_eq] = ACTIONS(7423), - [anon_sym_or_eq] = ACTIONS(7423), - [anon_sym_xor_eq] = ACTIONS(7423), - [anon_sym_LT_EQ_GT] = ACTIONS(7425), - [anon_sym_or] = ACTIONS(7423), - [anon_sym_and] = ACTIONS(7423), - [anon_sym_bitor] = ACTIONS(7423), - [anon_sym_xor] = ACTIONS(7423), - [anon_sym_bitand] = ACTIONS(7423), - [anon_sym_not_eq] = ACTIONS(7423), - [anon_sym_DASH_DASH] = ACTIONS(7425), - [anon_sym_PLUS_PLUS] = ACTIONS(7425), - [anon_sym_DOT] = ACTIONS(7423), - [anon_sym_DOT_STAR] = ACTIONS(7425), - [anon_sym_DASH_GT] = ACTIONS(7425), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7423), - [anon_sym_override] = ACTIONS(7423), - [anon_sym_requires] = ACTIONS(7423), - [anon_sym_COLON_RBRACK] = ACTIONS(7425), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(2137)] = { - [sym_attribute_specifier] = STATE(2237), - [sym_identifier] = ACTIONS(7427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7429), - [anon_sym_COMMA] = ACTIONS(7429), - [anon_sym_RPAREN] = ACTIONS(7429), - [aux_sym_preproc_if_token2] = ACTIONS(7429), - [aux_sym_preproc_else_token1] = ACTIONS(7429), - [aux_sym_preproc_elif_token1] = ACTIONS(7427), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7429), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7429), - [anon_sym_LPAREN2] = ACTIONS(7429), - [anon_sym_DASH] = ACTIONS(7427), - [anon_sym_PLUS] = ACTIONS(7427), - [anon_sym_STAR] = ACTIONS(7427), - [anon_sym_SLASH] = ACTIONS(7427), - [anon_sym_PERCENT] = ACTIONS(7427), - [anon_sym_PIPE_PIPE] = ACTIONS(7429), - [anon_sym_AMP_AMP] = ACTIONS(7429), - [anon_sym_PIPE] = ACTIONS(7427), - [anon_sym_CARET] = ACTIONS(7427), - [anon_sym_AMP] = ACTIONS(7427), - [anon_sym_EQ_EQ] = ACTIONS(7429), - [anon_sym_BANG_EQ] = ACTIONS(7429), - [anon_sym_GT] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7429), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_LT] = ACTIONS(7427), - [anon_sym_LT_LT] = ACTIONS(7427), - [anon_sym_GT_GT] = ACTIONS(7427), - [anon_sym_SEMI] = ACTIONS(7429), - [anon_sym___extension__] = ACTIONS(7427), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7427), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7429), - [anon_sym_LBRACE] = ACTIONS(7429), - [anon_sym_RBRACE] = ACTIONS(7429), - [anon_sym_LBRACK] = ACTIONS(7429), - [anon_sym_EQ] = ACTIONS(7427), - [anon_sym_const] = ACTIONS(7427), - [anon_sym_constexpr] = ACTIONS(7427), - [anon_sym_volatile] = ACTIONS(7427), - [anon_sym_restrict] = ACTIONS(7427), - [anon_sym___restrict__] = ACTIONS(7427), - [anon_sym__Atomic] = ACTIONS(7427), - [anon_sym__Noreturn] = ACTIONS(7427), - [anon_sym_noreturn] = ACTIONS(7427), - [anon_sym__Nonnull] = ACTIONS(7427), - [anon_sym_mutable] = ACTIONS(7427), - [anon_sym_constinit] = ACTIONS(7427), - [anon_sym_consteval] = ACTIONS(7427), - [anon_sym_alignas] = ACTIONS(7427), - [anon_sym__Alignas] = ACTIONS(7427), - [anon_sym_QMARK] = ACTIONS(7429), - [anon_sym_STAR_EQ] = ACTIONS(7429), - [anon_sym_SLASH_EQ] = ACTIONS(7429), - [anon_sym_PERCENT_EQ] = ACTIONS(7429), - [anon_sym_PLUS_EQ] = ACTIONS(7429), - [anon_sym_DASH_EQ] = ACTIONS(7429), - [anon_sym_LT_LT_EQ] = ACTIONS(7429), - [anon_sym_GT_GT_EQ] = ACTIONS(7429), - [anon_sym_AMP_EQ] = ACTIONS(7429), - [anon_sym_CARET_EQ] = ACTIONS(7429), - [anon_sym_PIPE_EQ] = ACTIONS(7429), - [anon_sym_and_eq] = ACTIONS(7427), - [anon_sym_or_eq] = ACTIONS(7427), - [anon_sym_xor_eq] = ACTIONS(7427), - [anon_sym_LT_EQ_GT] = ACTIONS(7429), - [anon_sym_or] = ACTIONS(7427), - [anon_sym_and] = ACTIONS(7427), - [anon_sym_bitor] = ACTIONS(7427), - [anon_sym_xor] = ACTIONS(7427), - [anon_sym_bitand] = ACTIONS(7427), - [anon_sym_not_eq] = ACTIONS(7427), - [anon_sym_DASH_DASH] = ACTIONS(7429), - [anon_sym_PLUS_PLUS] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(7427), - [anon_sym_DOT_STAR] = ACTIONS(7429), - [anon_sym_DASH_GT] = ACTIONS(7429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7427), - [anon_sym_override] = ACTIONS(7427), - [anon_sym_requires] = ACTIONS(7427), - [anon_sym_COLON_RBRACK] = ACTIONS(7429), - }, - [STATE(2138)] = { - [sym_identifier] = ACTIONS(7231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_RPAREN] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_TILDE] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7233), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7233), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7233), - [anon_sym_GT_GT] = ACTIONS(7233), - [anon_sym_SEMI] = ACTIONS(7233), - [anon_sym___extension__] = ACTIONS(7231), - [anon_sym_virtual] = ACTIONS(7231), - [anon_sym_extern] = ACTIONS(7231), - [anon_sym___attribute__] = ACTIONS(7231), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(7233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7233), - [anon_sym___declspec] = ACTIONS(7231), - [anon_sym___based] = ACTIONS(7231), - [anon_sym___cdecl] = ACTIONS(7231), - [anon_sym___clrcall] = ACTIONS(7231), - [anon_sym___stdcall] = ACTIONS(7231), - [anon_sym___fastcall] = ACTIONS(7231), - [anon_sym___thiscall] = ACTIONS(7231), - [anon_sym___vectorcall] = ACTIONS(7231), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_RBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7231), - [anon_sym_static] = ACTIONS(7231), - [anon_sym_EQ] = ACTIONS(7231), - [anon_sym_register] = ACTIONS(7231), - [anon_sym_inline] = ACTIONS(7231), - [anon_sym___inline] = ACTIONS(7231), - [anon_sym___inline__] = ACTIONS(7231), - [anon_sym___forceinline] = ACTIONS(7231), - [anon_sym_thread_local] = ACTIONS(7231), - [anon_sym___thread] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7231), - [anon_sym_volatile] = ACTIONS(7231), - [anon_sym_restrict] = ACTIONS(7231), - [anon_sym___restrict__] = ACTIONS(7231), - [anon_sym__Atomic] = ACTIONS(7231), - [anon_sym__Noreturn] = ACTIONS(7231), - [anon_sym_noreturn] = ACTIONS(7231), - [anon_sym__Nonnull] = ACTIONS(7231), - [anon_sym_mutable] = ACTIONS(7231), - [anon_sym_constinit] = ACTIONS(7231), - [anon_sym_consteval] = ACTIONS(7231), - [anon_sym_alignas] = ACTIONS(7231), - [anon_sym__Alignas] = ACTIONS(7231), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_bitor] = ACTIONS(7231), - [anon_sym_xor] = ACTIONS(7231), - [anon_sym_bitand] = ACTIONS(7231), - [anon_sym_not_eq] = ACTIONS(7231), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7233), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7231), - [anon_sym_template] = ACTIONS(7231), - [anon_sym_operator] = ACTIONS(7231), - [anon_sym_LBRACK_COLON] = ACTIONS(7233), - }, - [STATE(2139)] = { - [sym_attribute_specifier] = STATE(2199), - [sym_identifier] = ACTIONS(7431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7433), - [anon_sym_COMMA] = ACTIONS(7433), - [anon_sym_RPAREN] = ACTIONS(7433), - [aux_sym_preproc_if_token2] = ACTIONS(7433), - [aux_sym_preproc_else_token1] = ACTIONS(7433), - [aux_sym_preproc_elif_token1] = ACTIONS(7431), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7433), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7433), - [anon_sym_LPAREN2] = ACTIONS(7433), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7431), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_PIPE_PIPE] = ACTIONS(7433), - [anon_sym_AMP_AMP] = ACTIONS(7433), - [anon_sym_PIPE] = ACTIONS(7431), - [anon_sym_CARET] = ACTIONS(7431), - [anon_sym_AMP] = ACTIONS(7431), - [anon_sym_EQ_EQ] = ACTIONS(7433), - [anon_sym_BANG_EQ] = ACTIONS(7433), - [anon_sym_GT] = ACTIONS(7431), - [anon_sym_GT_EQ] = ACTIONS(7433), - [anon_sym_LT_EQ] = ACTIONS(7431), - [anon_sym_LT] = ACTIONS(7431), - [anon_sym_LT_LT] = ACTIONS(7431), - [anon_sym_GT_GT] = ACTIONS(7431), - [anon_sym_SEMI] = ACTIONS(7433), - [anon_sym___extension__] = ACTIONS(7431), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7431), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7433), - [anon_sym_LBRACE] = ACTIONS(7433), - [anon_sym_RBRACE] = ACTIONS(7433), - [anon_sym_LBRACK] = ACTIONS(7433), - [anon_sym_EQ] = ACTIONS(7431), - [anon_sym_const] = ACTIONS(7431), - [anon_sym_constexpr] = ACTIONS(7431), - [anon_sym_volatile] = ACTIONS(7431), - [anon_sym_restrict] = ACTIONS(7431), - [anon_sym___restrict__] = ACTIONS(7431), - [anon_sym__Atomic] = ACTIONS(7431), - [anon_sym__Noreturn] = ACTIONS(7431), - [anon_sym_noreturn] = ACTIONS(7431), - [anon_sym__Nonnull] = ACTIONS(7431), - [anon_sym_mutable] = ACTIONS(7431), - [anon_sym_constinit] = ACTIONS(7431), - [anon_sym_consteval] = ACTIONS(7431), - [anon_sym_alignas] = ACTIONS(7431), - [anon_sym__Alignas] = ACTIONS(7431), - [anon_sym_QMARK] = ACTIONS(7433), - [anon_sym_STAR_EQ] = ACTIONS(7433), - [anon_sym_SLASH_EQ] = ACTIONS(7433), - [anon_sym_PERCENT_EQ] = ACTIONS(7433), - [anon_sym_PLUS_EQ] = ACTIONS(7433), - [anon_sym_DASH_EQ] = ACTIONS(7433), - [anon_sym_LT_LT_EQ] = ACTIONS(7433), - [anon_sym_GT_GT_EQ] = ACTIONS(7433), - [anon_sym_AMP_EQ] = ACTIONS(7433), - [anon_sym_CARET_EQ] = ACTIONS(7433), - [anon_sym_PIPE_EQ] = ACTIONS(7433), - [anon_sym_and_eq] = ACTIONS(7431), - [anon_sym_or_eq] = ACTIONS(7431), - [anon_sym_xor_eq] = ACTIONS(7431), - [anon_sym_LT_EQ_GT] = ACTIONS(7433), - [anon_sym_or] = ACTIONS(7431), - [anon_sym_and] = ACTIONS(7431), - [anon_sym_bitor] = ACTIONS(7431), - [anon_sym_xor] = ACTIONS(7431), - [anon_sym_bitand] = ACTIONS(7431), - [anon_sym_not_eq] = ACTIONS(7431), - [anon_sym_DASH_DASH] = ACTIONS(7433), - [anon_sym_PLUS_PLUS] = ACTIONS(7433), - [anon_sym_DOT] = ACTIONS(7431), - [anon_sym_DOT_STAR] = ACTIONS(7433), - [anon_sym_DASH_GT] = ACTIONS(7433), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7431), - [anon_sym_override] = ACTIONS(7431), - [anon_sym_requires] = ACTIONS(7431), - [anon_sym_COLON_RBRACK] = ACTIONS(7433), - }, - [STATE(2140)] = { - [sym_attribute_specifier] = STATE(2201), - [sym_identifier] = ACTIONS(7435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7437), - [anon_sym_COMMA] = ACTIONS(7437), - [anon_sym_RPAREN] = ACTIONS(7437), - [aux_sym_preproc_if_token2] = ACTIONS(7437), - [aux_sym_preproc_else_token1] = ACTIONS(7437), - [aux_sym_preproc_elif_token1] = ACTIONS(7435), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7437), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7437), - [anon_sym_LPAREN2] = ACTIONS(7437), - [anon_sym_DASH] = ACTIONS(7435), - [anon_sym_PLUS] = ACTIONS(7435), - [anon_sym_STAR] = ACTIONS(7435), - [anon_sym_SLASH] = ACTIONS(7435), - [anon_sym_PERCENT] = ACTIONS(7435), - [anon_sym_PIPE_PIPE] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7437), - [anon_sym_PIPE] = ACTIONS(7435), - [anon_sym_CARET] = ACTIONS(7435), - [anon_sym_AMP] = ACTIONS(7435), - [anon_sym_EQ_EQ] = ACTIONS(7437), - [anon_sym_BANG_EQ] = ACTIONS(7437), - [anon_sym_GT] = ACTIONS(7435), - [anon_sym_GT_EQ] = ACTIONS(7437), - [anon_sym_LT_EQ] = ACTIONS(7435), - [anon_sym_LT] = ACTIONS(7435), - [anon_sym_LT_LT] = ACTIONS(7435), - [anon_sym_GT_GT] = ACTIONS(7435), - [anon_sym_SEMI] = ACTIONS(7437), - [anon_sym___extension__] = ACTIONS(7435), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7435), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7437), - [anon_sym_LBRACE] = ACTIONS(7437), - [anon_sym_RBRACE] = ACTIONS(7437), - [anon_sym_LBRACK] = ACTIONS(7437), - [anon_sym_EQ] = ACTIONS(7435), - [anon_sym_const] = ACTIONS(7435), - [anon_sym_constexpr] = ACTIONS(7435), - [anon_sym_volatile] = ACTIONS(7435), - [anon_sym_restrict] = ACTIONS(7435), - [anon_sym___restrict__] = ACTIONS(7435), - [anon_sym__Atomic] = ACTIONS(7435), - [anon_sym__Noreturn] = ACTIONS(7435), - [anon_sym_noreturn] = ACTIONS(7435), - [anon_sym__Nonnull] = ACTIONS(7435), - [anon_sym_mutable] = ACTIONS(7435), - [anon_sym_constinit] = ACTIONS(7435), - [anon_sym_consteval] = ACTIONS(7435), - [anon_sym_alignas] = ACTIONS(7435), - [anon_sym__Alignas] = ACTIONS(7435), - [anon_sym_QMARK] = ACTIONS(7437), - [anon_sym_STAR_EQ] = ACTIONS(7437), - [anon_sym_SLASH_EQ] = ACTIONS(7437), - [anon_sym_PERCENT_EQ] = ACTIONS(7437), - [anon_sym_PLUS_EQ] = ACTIONS(7437), - [anon_sym_DASH_EQ] = ACTIONS(7437), - [anon_sym_LT_LT_EQ] = ACTIONS(7437), - [anon_sym_GT_GT_EQ] = ACTIONS(7437), - [anon_sym_AMP_EQ] = ACTIONS(7437), - [anon_sym_CARET_EQ] = ACTIONS(7437), - [anon_sym_PIPE_EQ] = ACTIONS(7437), - [anon_sym_and_eq] = ACTIONS(7435), - [anon_sym_or_eq] = ACTIONS(7435), - [anon_sym_xor_eq] = ACTIONS(7435), - [anon_sym_LT_EQ_GT] = ACTIONS(7437), - [anon_sym_or] = ACTIONS(7435), - [anon_sym_and] = ACTIONS(7435), - [anon_sym_bitor] = ACTIONS(7435), - [anon_sym_xor] = ACTIONS(7435), - [anon_sym_bitand] = ACTIONS(7435), - [anon_sym_not_eq] = ACTIONS(7435), - [anon_sym_DASH_DASH] = ACTIONS(7437), - [anon_sym_PLUS_PLUS] = ACTIONS(7437), - [anon_sym_DOT] = ACTIONS(7435), - [anon_sym_DOT_STAR] = ACTIONS(7437), - [anon_sym_DASH_GT] = ACTIONS(7437), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7435), - [anon_sym_override] = ACTIONS(7435), - [anon_sym_requires] = ACTIONS(7435), - [anon_sym_COLON_RBRACK] = ACTIONS(7437), - }, - [STATE(2141)] = { - [sym_function_definition] = STATE(845), - [sym_declaration] = STATE(845), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6406), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2694), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(11355), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [sym_function_definition] = STATE(851), + [sym_declaration] = STATE(851), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6414), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2716), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(11202), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -326331,145 +325875,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7439), - [anon_sym_struct] = ACTIONS(7441), - [anon_sym_union] = ACTIONS(7443), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7437), + [anon_sym_struct] = ACTIONS(7439), + [anon_sym_union] = ACTIONS(7441), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2142)] = { - [sym_template_argument_list] = STATE(2053), - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), - [anon_sym_COMMA] = ACTIONS(7097), - [anon_sym_RPAREN] = ACTIONS(7097), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_TILDE] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7092), - [anon_sym_PLUS] = ACTIONS(7092), - [anon_sym_STAR] = ACTIONS(7087), - [anon_sym_SLASH] = ACTIONS(7092), - [anon_sym_PERCENT] = ACTIONS(7097), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7087), - [anon_sym_PIPE] = ACTIONS(7092), - [anon_sym_CARET] = ACTIONS(7097), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7092), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7445), - [anon_sym_LT_LT] = ACTIONS(7097), - [anon_sym_GT_GT] = ACTIONS(7097), - [anon_sym_SEMI] = ACTIONS(7087), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym_virtual] = ACTIONS(7085), - [anon_sym_extern] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), - [anon_sym___declspec] = ACTIONS(7085), - [anon_sym___based] = ACTIONS(7085), - [anon_sym___cdecl] = ACTIONS(7085), - [anon_sym___clrcall] = ACTIONS(7085), - [anon_sym___stdcall] = ACTIONS(7085), - [anon_sym___fastcall] = ACTIONS(7085), - [anon_sym___thiscall] = ACTIONS(7085), - [anon_sym___vectorcall] = ACTIONS(7085), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7097), - [anon_sym_LBRACK] = ACTIONS(7094), - [anon_sym_static] = ACTIONS(7085), - [anon_sym_register] = ACTIONS(7085), - [anon_sym_inline] = ACTIONS(7085), - [anon_sym___inline] = ACTIONS(7085), - [anon_sym___inline__] = ACTIONS(7085), - [anon_sym___forceinline] = ACTIONS(7085), - [anon_sym_thread_local] = ACTIONS(7085), - [anon_sym___thread] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7092), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_bitor] = ACTIONS(7092), - [anon_sym_xor] = ACTIONS(7092), - [anon_sym_bitand] = ACTIONS(7092), - [anon_sym_not_eq] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7092), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7097), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7085), - [anon_sym_template] = ACTIONS(7085), - [anon_sym_operator] = ACTIONS(7085), - [anon_sym_LBRACK_COLON] = ACTIONS(7090), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2143)] = { - [sym_function_definition] = STATE(852), - [sym_declaration] = STATE(852), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6406), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2694), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10767), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [STATE(2138)] = { + [sym_function_definition] = STATE(3248), + [sym_declaration] = STATE(3248), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6407), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2721), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(11232), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -326503,489 +325961,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7447), - [anon_sym_struct] = ACTIONS(7449), - [anon_sym_union] = ACTIONS(7451), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7443), + [anon_sym_struct] = ACTIONS(7445), + [anon_sym_union] = ACTIONS(7447), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2144)] = { - [sym_attribute_specifier] = STATE(2204), - [sym_identifier] = ACTIONS(7453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7455), - [anon_sym_COMMA] = ACTIONS(7455), - [anon_sym_RPAREN] = ACTIONS(7455), - [aux_sym_preproc_if_token2] = ACTIONS(7455), - [aux_sym_preproc_else_token1] = ACTIONS(7455), - [aux_sym_preproc_elif_token1] = ACTIONS(7453), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7455), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7455), - [anon_sym_LPAREN2] = ACTIONS(7455), - [anon_sym_DASH] = ACTIONS(7453), - [anon_sym_PLUS] = ACTIONS(7453), - [anon_sym_STAR] = ACTIONS(7453), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7453), - [anon_sym_PIPE_PIPE] = ACTIONS(7455), - [anon_sym_AMP_AMP] = ACTIONS(7455), - [anon_sym_PIPE] = ACTIONS(7453), - [anon_sym_CARET] = ACTIONS(7453), - [anon_sym_AMP] = ACTIONS(7453), - [anon_sym_EQ_EQ] = ACTIONS(7455), - [anon_sym_BANG_EQ] = ACTIONS(7455), - [anon_sym_GT] = ACTIONS(7453), - [anon_sym_GT_EQ] = ACTIONS(7455), - [anon_sym_LT_EQ] = ACTIONS(7453), - [anon_sym_LT] = ACTIONS(7453), - [anon_sym_LT_LT] = ACTIONS(7453), - [anon_sym_GT_GT] = ACTIONS(7453), - [anon_sym_SEMI] = ACTIONS(7455), - [anon_sym___extension__] = ACTIONS(7453), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7453), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7455), - [anon_sym_LBRACE] = ACTIONS(7455), - [anon_sym_RBRACE] = ACTIONS(7455), - [anon_sym_LBRACK] = ACTIONS(7455), - [anon_sym_EQ] = ACTIONS(7453), - [anon_sym_const] = ACTIONS(7453), - [anon_sym_constexpr] = ACTIONS(7453), - [anon_sym_volatile] = ACTIONS(7453), - [anon_sym_restrict] = ACTIONS(7453), - [anon_sym___restrict__] = ACTIONS(7453), - [anon_sym__Atomic] = ACTIONS(7453), - [anon_sym__Noreturn] = ACTIONS(7453), - [anon_sym_noreturn] = ACTIONS(7453), - [anon_sym__Nonnull] = ACTIONS(7453), - [anon_sym_mutable] = ACTIONS(7453), - [anon_sym_constinit] = ACTIONS(7453), - [anon_sym_consteval] = ACTIONS(7453), - [anon_sym_alignas] = ACTIONS(7453), - [anon_sym__Alignas] = ACTIONS(7453), - [anon_sym_QMARK] = ACTIONS(7455), - [anon_sym_STAR_EQ] = ACTIONS(7455), - [anon_sym_SLASH_EQ] = ACTIONS(7455), - [anon_sym_PERCENT_EQ] = ACTIONS(7455), - [anon_sym_PLUS_EQ] = ACTIONS(7455), - [anon_sym_DASH_EQ] = ACTIONS(7455), - [anon_sym_LT_LT_EQ] = ACTIONS(7455), - [anon_sym_GT_GT_EQ] = ACTIONS(7455), - [anon_sym_AMP_EQ] = ACTIONS(7455), - [anon_sym_CARET_EQ] = ACTIONS(7455), - [anon_sym_PIPE_EQ] = ACTIONS(7455), - [anon_sym_and_eq] = ACTIONS(7453), - [anon_sym_or_eq] = ACTIONS(7453), - [anon_sym_xor_eq] = ACTIONS(7453), - [anon_sym_LT_EQ_GT] = ACTIONS(7455), - [anon_sym_or] = ACTIONS(7453), - [anon_sym_and] = ACTIONS(7453), - [anon_sym_bitor] = ACTIONS(7453), - [anon_sym_xor] = ACTIONS(7453), - [anon_sym_bitand] = ACTIONS(7453), - [anon_sym_not_eq] = ACTIONS(7453), - [anon_sym_DASH_DASH] = ACTIONS(7455), - [anon_sym_PLUS_PLUS] = ACTIONS(7455), - [anon_sym_DOT] = ACTIONS(7453), - [anon_sym_DOT_STAR] = ACTIONS(7455), - [anon_sym_DASH_GT] = ACTIONS(7455), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7453), - [anon_sym_override] = ACTIONS(7453), - [anon_sym_requires] = ACTIONS(7453), - [anon_sym_COLON_RBRACK] = ACTIONS(7455), - }, - [STATE(2145)] = { - [sym_attribute_specifier] = STATE(2375), - [sym_attribute_declaration] = STATE(4587), - [sym_type_qualifier] = STATE(2326), - [sym_alignas_qualifier] = STATE(2492), - [aux_sym_type_definition_repeat1] = STATE(2375), - [aux_sym__type_definition_type_repeat1] = STATE(2326), - [aux_sym_attributed_declarator_repeat1] = STATE(4587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6752), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6752), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6752), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym___extension__] = ACTIONS(6679), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_EQ] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(6687), - [anon_sym_constexpr] = ACTIONS(6679), - [anon_sym_volatile] = ACTIONS(6679), - [anon_sym_restrict] = ACTIONS(6679), - [anon_sym___restrict__] = ACTIONS(6679), - [anon_sym__Atomic] = ACTIONS(6679), - [anon_sym__Noreturn] = ACTIONS(6679), - [anon_sym_noreturn] = ACTIONS(6679), - [anon_sym__Nonnull] = ACTIONS(6679), - [anon_sym_mutable] = ACTIONS(6679), - [anon_sym_constinit] = ACTIONS(6679), - [anon_sym_consteval] = ACTIONS(6679), - [anon_sym_alignas] = ACTIONS(6689), - [anon_sym__Alignas] = ACTIONS(6689), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_STAR_EQ] = ACTIONS(6754), - [anon_sym_SLASH_EQ] = ACTIONS(6754), - [anon_sym_PERCENT_EQ] = ACTIONS(6754), - [anon_sym_PLUS_EQ] = ACTIONS(6754), - [anon_sym_DASH_EQ] = ACTIONS(6754), - [anon_sym_LT_LT_EQ] = ACTIONS(6754), - [anon_sym_GT_GT_EQ] = ACTIONS(6752), - [anon_sym_AMP_EQ] = ACTIONS(6754), - [anon_sym_CARET_EQ] = ACTIONS(6754), - [anon_sym_PIPE_EQ] = ACTIONS(6754), - [anon_sym_and_eq] = ACTIONS(6754), - [anon_sym_or_eq] = ACTIONS(6754), - [anon_sym_xor_eq] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6752), - [anon_sym_and] = ACTIONS(6752), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6752), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_GT2] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), - }, - [STATE(2146)] = { - [sym_decltype_auto] = STATE(2238), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7229), - [anon_sym_decltype] = ACTIONS(6819), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), - }, - [STATE(2147)] = { - [sym_identifier] = ACTIONS(7459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), - [anon_sym_COMMA] = ACTIONS(7457), - [anon_sym_RPAREN] = ACTIONS(7457), - [aux_sym_preproc_if_token2] = ACTIONS(7457), - [aux_sym_preproc_else_token1] = ACTIONS(7457), - [aux_sym_preproc_elif_token1] = ACTIONS(7459), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7457), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7457), - [anon_sym_LPAREN2] = ACTIONS(7457), - [anon_sym_DASH] = ACTIONS(7459), - [anon_sym_PLUS] = ACTIONS(7459), - [anon_sym_STAR] = ACTIONS(7459), - [anon_sym_SLASH] = ACTIONS(7459), - [anon_sym_PERCENT] = ACTIONS(7459), - [anon_sym_PIPE_PIPE] = ACTIONS(7457), - [anon_sym_AMP_AMP] = ACTIONS(7457), - [anon_sym_PIPE] = ACTIONS(7459), - [anon_sym_CARET] = ACTIONS(7459), - [anon_sym_AMP] = ACTIONS(7459), - [anon_sym_EQ_EQ] = ACTIONS(7457), - [anon_sym_BANG_EQ] = ACTIONS(7457), - [anon_sym_GT] = ACTIONS(7459), - [anon_sym_GT_EQ] = ACTIONS(7457), - [anon_sym_LT_EQ] = ACTIONS(7459), - [anon_sym_LT] = ACTIONS(7459), - [anon_sym_LT_LT] = ACTIONS(7459), - [anon_sym_GT_GT] = ACTIONS(7459), - [anon_sym_SEMI] = ACTIONS(7457), - [anon_sym___extension__] = ACTIONS(7459), - [anon_sym___attribute__] = ACTIONS(7459), - [anon_sym___attribute] = ACTIONS(7459), - [anon_sym_COLON] = ACTIONS(7459), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7457), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_RBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7457), - [anon_sym_EQ] = ACTIONS(7459), - [anon_sym_const] = ACTIONS(7459), - [anon_sym_constexpr] = ACTIONS(7459), - [anon_sym_volatile] = ACTIONS(7459), - [anon_sym_restrict] = ACTIONS(7459), - [anon_sym___restrict__] = ACTIONS(7459), - [anon_sym__Atomic] = ACTIONS(7459), - [anon_sym__Noreturn] = ACTIONS(7459), - [anon_sym_noreturn] = ACTIONS(7459), - [anon_sym__Nonnull] = ACTIONS(7459), - [anon_sym_mutable] = ACTIONS(7459), - [anon_sym_constinit] = ACTIONS(7459), - [anon_sym_consteval] = ACTIONS(7459), - [anon_sym_alignas] = ACTIONS(7459), - [anon_sym__Alignas] = ACTIONS(7459), - [anon_sym_QMARK] = ACTIONS(7457), - [anon_sym_STAR_EQ] = ACTIONS(7457), - [anon_sym_SLASH_EQ] = ACTIONS(7457), - [anon_sym_PERCENT_EQ] = ACTIONS(7457), - [anon_sym_PLUS_EQ] = ACTIONS(7457), - [anon_sym_DASH_EQ] = ACTIONS(7457), - [anon_sym_LT_LT_EQ] = ACTIONS(7457), - [anon_sym_GT_GT_EQ] = ACTIONS(7457), - [anon_sym_AMP_EQ] = ACTIONS(7457), - [anon_sym_CARET_EQ] = ACTIONS(7457), - [anon_sym_PIPE_EQ] = ACTIONS(7457), - [anon_sym_and_eq] = ACTIONS(7459), - [anon_sym_or_eq] = ACTIONS(7459), - [anon_sym_xor_eq] = ACTIONS(7459), - [anon_sym_LT_EQ_GT] = ACTIONS(7457), - [anon_sym_or] = ACTIONS(7459), - [anon_sym_and] = ACTIONS(7459), - [anon_sym_bitor] = ACTIONS(7459), - [anon_sym_xor] = ACTIONS(7459), - [anon_sym_bitand] = ACTIONS(7459), - [anon_sym_not_eq] = ACTIONS(7459), - [anon_sym_DASH_DASH] = ACTIONS(7457), - [anon_sym_PLUS_PLUS] = ACTIONS(7457), - [anon_sym_DOT] = ACTIONS(7459), - [anon_sym_DOT_STAR] = ACTIONS(7457), - [anon_sym_DASH_GT] = ACTIONS(7457), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7459), - [anon_sym_override] = ACTIONS(7459), - [anon_sym_requires] = ACTIONS(7459), - [anon_sym_COLON_RBRACK] = ACTIONS(7457), - }, - [STATE(2148)] = { - [sym_template_argument_list] = STATE(3735), - [aux_sym_sized_type_specifier_repeat1] = STATE(2279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), - [anon_sym_COMMA] = ACTIONS(7359), - [anon_sym_RPAREN] = ACTIONS(7359), - [anon_sym_LPAREN2] = ACTIONS(7359), - [anon_sym_DASH] = ACTIONS(7357), - [anon_sym_PLUS] = ACTIONS(7357), - [anon_sym_STAR] = ACTIONS(7357), - [anon_sym_SLASH] = ACTIONS(7357), - [anon_sym_PERCENT] = ACTIONS(7357), - [anon_sym_PIPE_PIPE] = ACTIONS(7359), - [anon_sym_AMP_AMP] = ACTIONS(7359), - [anon_sym_PIPE] = ACTIONS(7357), - [anon_sym_CARET] = ACTIONS(7357), - [anon_sym_AMP] = ACTIONS(7357), - [anon_sym_EQ_EQ] = ACTIONS(7359), - [anon_sym_BANG_EQ] = ACTIONS(7359), - [anon_sym_GT] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7359), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_LT] = ACTIONS(7357), - [anon_sym_LT_LT] = ACTIONS(7357), - [anon_sym_GT_GT] = ACTIONS(7357), - [anon_sym_SEMI] = ACTIONS(7359), - [anon_sym___extension__] = ACTIONS(7359), - [anon_sym___attribute__] = ACTIONS(7359), - [anon_sym___attribute] = ACTIONS(7357), - [anon_sym_COLON] = ACTIONS(7357), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7359), - [anon_sym_LBRACE] = ACTIONS(7359), - [anon_sym_RBRACE] = ACTIONS(7359), - [anon_sym_signed] = ACTIONS(6789), - [anon_sym_unsigned] = ACTIONS(6789), - [anon_sym_long] = ACTIONS(6789), - [anon_sym_short] = ACTIONS(6789), - [anon_sym_LBRACK] = ACTIONS(7359), - [anon_sym_EQ] = ACTIONS(7357), - [anon_sym_const] = ACTIONS(7357), - [anon_sym_constexpr] = ACTIONS(7359), - [anon_sym_volatile] = ACTIONS(7359), - [anon_sym_restrict] = ACTIONS(7359), - [anon_sym___restrict__] = ACTIONS(7359), - [anon_sym__Atomic] = ACTIONS(7359), - [anon_sym__Noreturn] = ACTIONS(7359), - [anon_sym_noreturn] = ACTIONS(7359), - [anon_sym__Nonnull] = ACTIONS(7359), - [anon_sym_mutable] = ACTIONS(7359), - [anon_sym_constinit] = ACTIONS(7359), - [anon_sym_consteval] = ACTIONS(7359), - [anon_sym_alignas] = ACTIONS(7359), - [anon_sym__Alignas] = ACTIONS(7359), - [anon_sym_QMARK] = ACTIONS(7359), - [anon_sym_STAR_EQ] = ACTIONS(7359), - [anon_sym_SLASH_EQ] = ACTIONS(7359), - [anon_sym_PERCENT_EQ] = ACTIONS(7359), - [anon_sym_PLUS_EQ] = ACTIONS(7359), - [anon_sym_DASH_EQ] = ACTIONS(7359), - [anon_sym_LT_LT_EQ] = ACTIONS(7359), - [anon_sym_GT_GT_EQ] = ACTIONS(7359), - [anon_sym_AMP_EQ] = ACTIONS(7359), - [anon_sym_CARET_EQ] = ACTIONS(7359), - [anon_sym_PIPE_EQ] = ACTIONS(7359), - [anon_sym_and_eq] = ACTIONS(7359), - [anon_sym_or_eq] = ACTIONS(7359), - [anon_sym_xor_eq] = ACTIONS(7359), - [anon_sym_LT_EQ_GT] = ACTIONS(7359), - [anon_sym_or] = ACTIONS(7357), - [anon_sym_and] = ACTIONS(7357), - [anon_sym_bitor] = ACTIONS(7359), - [anon_sym_xor] = ACTIONS(7357), - [anon_sym_bitand] = ACTIONS(7359), - [anon_sym_not_eq] = ACTIONS(7359), - [anon_sym_DASH_DASH] = ACTIONS(7359), - [anon_sym_PLUS_PLUS] = ACTIONS(7359), - [anon_sym_DOT] = ACTIONS(7357), - [anon_sym_DOT_STAR] = ACTIONS(7359), - [anon_sym_DASH_GT] = ACTIONS(7359), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7359), - [anon_sym_override] = ACTIONS(7359), - [anon_sym_requires] = ACTIONS(7359), - [anon_sym_COLON_RBRACK] = ACTIONS(7359), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2149)] = { - [sym_function_definition] = STATE(404), - [sym_declaration] = STATE(404), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6411), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2705), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(11244), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [STATE(2139)] = { + [sym_function_definition] = STATE(427), + [sym_declaration] = STATE(427), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6387), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2719), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10793), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -327019,59 +326047,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7461), - [anon_sym_struct] = ACTIONS(7463), - [anon_sym_union] = ACTIONS(7465), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7449), + [anon_sym_struct] = ACTIONS(7451), + [anon_sym_union] = ACTIONS(7453), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2150)] = { - [sym_function_definition] = STATE(412), - [sym_declaration] = STATE(412), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6411), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2705), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(11550), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [STATE(2140)] = { + [sym_function_definition] = STATE(2864), + [sym_declaration] = STATE(2864), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(10973), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -327105,145 +326133,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7467), - [anon_sym_struct] = ACTIONS(7469), - [anon_sym_union] = ACTIONS(7471), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7455), + [anon_sym_struct] = ACTIONS(7457), + [anon_sym_union] = ACTIONS(7459), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2151)] = { - [sym_identifier] = ACTIONS(7473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), - [anon_sym_COMMA] = ACTIONS(7475), - [anon_sym_RPAREN] = ACTIONS(7475), - [aux_sym_preproc_if_token2] = ACTIONS(7475), - [aux_sym_preproc_else_token1] = ACTIONS(7475), - [aux_sym_preproc_elif_token1] = ACTIONS(7473), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7475), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7475), - [anon_sym_LPAREN2] = ACTIONS(7475), - [anon_sym_DASH] = ACTIONS(7473), - [anon_sym_PLUS] = ACTIONS(7473), - [anon_sym_STAR] = ACTIONS(7473), - [anon_sym_SLASH] = ACTIONS(7473), - [anon_sym_PERCENT] = ACTIONS(7473), - [anon_sym_PIPE_PIPE] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7475), - [anon_sym_PIPE] = ACTIONS(7473), - [anon_sym_CARET] = ACTIONS(7473), - [anon_sym_AMP] = ACTIONS(7473), - [anon_sym_EQ_EQ] = ACTIONS(7475), - [anon_sym_BANG_EQ] = ACTIONS(7475), - [anon_sym_GT] = ACTIONS(7473), - [anon_sym_GT_EQ] = ACTIONS(7475), - [anon_sym_LT_EQ] = ACTIONS(7473), - [anon_sym_LT] = ACTIONS(7473), - [anon_sym_LT_LT] = ACTIONS(7473), - [anon_sym_GT_GT] = ACTIONS(7473), - [anon_sym_SEMI] = ACTIONS(7475), - [anon_sym___extension__] = ACTIONS(7473), - [anon_sym___attribute__] = ACTIONS(7473), - [anon_sym___attribute] = ACTIONS(7473), - [anon_sym_COLON] = ACTIONS(7473), - [anon_sym_COLON_COLON] = ACTIONS(7475), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7475), - [anon_sym_LBRACE] = ACTIONS(7475), - [anon_sym_RBRACE] = ACTIONS(7475), - [anon_sym_LBRACK] = ACTIONS(7475), - [anon_sym_EQ] = ACTIONS(7473), - [anon_sym_const] = ACTIONS(7473), - [anon_sym_constexpr] = ACTIONS(7473), - [anon_sym_volatile] = ACTIONS(7473), - [anon_sym_restrict] = ACTIONS(7473), - [anon_sym___restrict__] = ACTIONS(7473), - [anon_sym__Atomic] = ACTIONS(7473), - [anon_sym__Noreturn] = ACTIONS(7473), - [anon_sym_noreturn] = ACTIONS(7473), - [anon_sym__Nonnull] = ACTIONS(7473), - [anon_sym_mutable] = ACTIONS(7473), - [anon_sym_constinit] = ACTIONS(7473), - [anon_sym_consteval] = ACTIONS(7473), - [anon_sym_alignas] = ACTIONS(7473), - [anon_sym__Alignas] = ACTIONS(7473), - [anon_sym_QMARK] = ACTIONS(7475), - [anon_sym_STAR_EQ] = ACTIONS(7475), - [anon_sym_SLASH_EQ] = ACTIONS(7475), - [anon_sym_PERCENT_EQ] = ACTIONS(7475), - [anon_sym_PLUS_EQ] = ACTIONS(7475), - [anon_sym_DASH_EQ] = ACTIONS(7475), - [anon_sym_LT_LT_EQ] = ACTIONS(7475), - [anon_sym_GT_GT_EQ] = ACTIONS(7475), - [anon_sym_AMP_EQ] = ACTIONS(7475), - [anon_sym_CARET_EQ] = ACTIONS(7475), - [anon_sym_PIPE_EQ] = ACTIONS(7475), - [anon_sym_and_eq] = ACTIONS(7473), - [anon_sym_or_eq] = ACTIONS(7473), - [anon_sym_xor_eq] = ACTIONS(7473), - [anon_sym_LT_EQ_GT] = ACTIONS(7475), - [anon_sym_or] = ACTIONS(7473), - [anon_sym_and] = ACTIONS(7473), - [anon_sym_bitor] = ACTIONS(7473), - [anon_sym_xor] = ACTIONS(7473), - [anon_sym_bitand] = ACTIONS(7473), - [anon_sym_not_eq] = ACTIONS(7473), - [anon_sym_DASH_DASH] = ACTIONS(7475), - [anon_sym_PLUS_PLUS] = ACTIONS(7475), - [anon_sym_DOT] = ACTIONS(7473), - [anon_sym_DOT_STAR] = ACTIONS(7475), - [anon_sym_DASH_GT] = ACTIONS(7475), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7473), - [anon_sym_override] = ACTIONS(7473), - [anon_sym_requires] = ACTIONS(7473), - [anon_sym_COLON_RBRACK] = ACTIONS(7475), - }, - [STATE(2152)] = { - [sym_function_definition] = STATE(2789), - [sym_declaration] = STATE(2789), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6415), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2710), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(11124), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [STATE(2141)] = { + [sym_function_definition] = STATE(2886), + [sym_declaration] = STATE(2886), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6380), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2722), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(11226), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -327277,145 +326219,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7477), - [anon_sym_struct] = ACTIONS(7479), - [anon_sym_union] = ACTIONS(7481), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7461), + [anon_sym_struct] = ACTIONS(7463), + [anon_sym_union] = ACTIONS(7465), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2153)] = { - [sym_type_qualifier] = STATE(2155), - [sym_alignas_qualifier] = STATE(2047), - [aux_sym__type_definition_type_repeat1] = STATE(2155), - [aux_sym_sized_type_specifier_repeat1] = STATE(2300), - [sym_identifier] = ACTIONS(7247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_RPAREN] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym_SEMI] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(6855), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_COLON] = ACTIONS(7251), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7249), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_RBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(7483), - [anon_sym_unsigned] = ACTIONS(7483), - [anon_sym_long] = ACTIONS(7483), - [anon_sym_short] = ACTIONS(7483), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6855), - [anon_sym_volatile] = ACTIONS(6855), - [anon_sym_restrict] = ACTIONS(6855), - [anon_sym___restrict__] = ACTIONS(6855), - [anon_sym__Atomic] = ACTIONS(6855), - [anon_sym__Noreturn] = ACTIONS(6855), - [anon_sym_noreturn] = ACTIONS(6855), - [anon_sym__Nonnull] = ACTIONS(6855), - [anon_sym_mutable] = ACTIONS(6855), - [anon_sym_constinit] = ACTIONS(6855), - [anon_sym_consteval] = ACTIONS(6855), - [anon_sym_alignas] = ACTIONS(7485), - [anon_sym__Alignas] = ACTIONS(7485), - [sym_primitive_type] = ACTIONS(7261), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7249), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2154)] = { - [sym_function_definition] = STATE(2806), - [sym_declaration] = STATE(2806), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6415), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2710), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(11415), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [STATE(2142)] = { + [sym_function_definition] = STATE(769), + [sym_declaration] = STATE(769), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6402), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2720), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(11130), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -327449,145 +326305,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7487), - [anon_sym_struct] = ACTIONS(7489), - [anon_sym_union] = ACTIONS(7491), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7467), + [anon_sym_struct] = ACTIONS(7469), + [anon_sym_union] = ACTIONS(7471), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2155)] = { - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [aux_sym_sized_type_specifier_repeat1] = STATE(2273), - [sym_identifier] = ACTIONS(7203), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_RPAREN] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym_SEMI] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(6855), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_COLON] = ACTIONS(7207), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7205), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_RBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(7212), - [anon_sym_unsigned] = ACTIONS(7212), - [anon_sym_long] = ACTIONS(7212), - [anon_sym_short] = ACTIONS(7212), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6855), - [anon_sym_volatile] = ACTIONS(6855), - [anon_sym_restrict] = ACTIONS(6855), - [anon_sym___restrict__] = ACTIONS(6855), - [anon_sym__Atomic] = ACTIONS(6855), - [anon_sym__Noreturn] = ACTIONS(6855), - [anon_sym_noreturn] = ACTIONS(6855), - [anon_sym__Nonnull] = ACTIONS(6855), - [anon_sym_mutable] = ACTIONS(6855), - [anon_sym_constinit] = ACTIONS(6855), - [anon_sym_consteval] = ACTIONS(6855), - [anon_sym_alignas] = ACTIONS(7485), - [anon_sym__Alignas] = ACTIONS(7485), - [sym_primitive_type] = ACTIONS(7217), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7205), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2156)] = { - [sym_function_definition] = STATE(738), - [sym_declaration] = STATE(738), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6413), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2707), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(11158), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [STATE(2143)] = { + [sym_function_definition] = STATE(771), + [sym_declaration] = STATE(771), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6402), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2720), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(11495), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -327621,59 +326391,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7493), - [anon_sym_struct] = ACTIONS(7495), - [anon_sym_union] = ACTIONS(7497), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7473), + [anon_sym_struct] = ACTIONS(7475), + [anon_sym_union] = ACTIONS(7477), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2157)] = { - [sym_function_definition] = STATE(740), - [sym_declaration] = STATE(740), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6413), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2707), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(11250), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [STATE(2144)] = { + [sym_decltype_auto] = STATE(2186), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7246), + [anon_sym_or_eq] = ACTIONS(7246), + [anon_sym_xor_eq] = ACTIONS(7246), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7252), + [anon_sym_decltype] = ACTIONS(6758), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), + }, + [STATE(2145)] = { + [sym_attribute_specifier] = STATE(2374), + [sym_attribute_declaration] = STATE(4596), + [sym_type_qualifier] = STATE(2354), + [sym_alignas_qualifier] = STATE(2471), + [aux_sym_type_definition_repeat1] = STATE(2374), + [aux_sym__type_definition_type_repeat1] = STATE(2354), + [aux_sym_attributed_declarator_repeat1] = STATE(4596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6673), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6681), + [anon_sym_constexpr] = ACTIONS(6673), + [anon_sym_volatile] = ACTIONS(6673), + [anon_sym_restrict] = ACTIONS(6673), + [anon_sym___restrict__] = ACTIONS(6673), + [anon_sym__Atomic] = ACTIONS(6673), + [anon_sym__Noreturn] = ACTIONS(6673), + [anon_sym_noreturn] = ACTIONS(6673), + [anon_sym__Nonnull] = ACTIONS(6673), + [anon_sym_mutable] = ACTIONS(6673), + [anon_sym_constinit] = ACTIONS(6673), + [anon_sym_consteval] = ACTIONS(6673), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6746), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6748), + [anon_sym_or_eq] = ACTIONS(6748), + [anon_sym_xor_eq] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_GT2] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), + }, + [STATE(2146)] = { + [sym_attribute_specifier] = STATE(2194), + [sym_identifier] = ACTIONS(7481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7483), + [anon_sym_RPAREN] = ACTIONS(7483), + [aux_sym_preproc_if_token2] = ACTIONS(7483), + [aux_sym_preproc_else_token1] = ACTIONS(7483), + [aux_sym_preproc_elif_token1] = ACTIONS(7481), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7483), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7483), + [anon_sym_LPAREN2] = ACTIONS(7483), + [anon_sym_DASH] = ACTIONS(7481), + [anon_sym_PLUS] = ACTIONS(7481), + [anon_sym_STAR] = ACTIONS(7481), + [anon_sym_SLASH] = ACTIONS(7481), + [anon_sym_PERCENT] = ACTIONS(7481), + [anon_sym_PIPE_PIPE] = ACTIONS(7483), + [anon_sym_AMP_AMP] = ACTIONS(7483), + [anon_sym_PIPE] = ACTIONS(7481), + [anon_sym_CARET] = ACTIONS(7481), + [anon_sym_AMP] = ACTIONS(7481), + [anon_sym_EQ_EQ] = ACTIONS(7483), + [anon_sym_BANG_EQ] = ACTIONS(7483), + [anon_sym_GT] = ACTIONS(7481), + [anon_sym_GT_EQ] = ACTIONS(7483), + [anon_sym_LT_EQ] = ACTIONS(7481), + [anon_sym_LT] = ACTIONS(7481), + [anon_sym_LT_LT] = ACTIONS(7481), + [anon_sym_GT_GT] = ACTIONS(7481), + [anon_sym_SEMI] = ACTIONS(7483), + [anon_sym___extension__] = ACTIONS(7481), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7481), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7483), + [anon_sym_LBRACE] = ACTIONS(7483), + [anon_sym_RBRACE] = ACTIONS(7483), + [anon_sym_LBRACK] = ACTIONS(7483), + [anon_sym_EQ] = ACTIONS(7481), + [anon_sym_const] = ACTIONS(7481), + [anon_sym_constexpr] = ACTIONS(7481), + [anon_sym_volatile] = ACTIONS(7481), + [anon_sym_restrict] = ACTIONS(7481), + [anon_sym___restrict__] = ACTIONS(7481), + [anon_sym__Atomic] = ACTIONS(7481), + [anon_sym__Noreturn] = ACTIONS(7481), + [anon_sym_noreturn] = ACTIONS(7481), + [anon_sym__Nonnull] = ACTIONS(7481), + [anon_sym_mutable] = ACTIONS(7481), + [anon_sym_constinit] = ACTIONS(7481), + [anon_sym_consteval] = ACTIONS(7481), + [anon_sym_alignas] = ACTIONS(7481), + [anon_sym__Alignas] = ACTIONS(7481), + [anon_sym_QMARK] = ACTIONS(7483), + [anon_sym_STAR_EQ] = ACTIONS(7483), + [anon_sym_SLASH_EQ] = ACTIONS(7483), + [anon_sym_PERCENT_EQ] = ACTIONS(7483), + [anon_sym_PLUS_EQ] = ACTIONS(7483), + [anon_sym_DASH_EQ] = ACTIONS(7483), + [anon_sym_LT_LT_EQ] = ACTIONS(7483), + [anon_sym_GT_GT_EQ] = ACTIONS(7483), + [anon_sym_AMP_EQ] = ACTIONS(7483), + [anon_sym_CARET_EQ] = ACTIONS(7483), + [anon_sym_PIPE_EQ] = ACTIONS(7483), + [anon_sym_and_eq] = ACTIONS(7481), + [anon_sym_or_eq] = ACTIONS(7481), + [anon_sym_xor_eq] = ACTIONS(7481), + [anon_sym_LT_EQ_GT] = ACTIONS(7483), + [anon_sym_or] = ACTIONS(7481), + [anon_sym_and] = ACTIONS(7481), + [anon_sym_bitor] = ACTIONS(7481), + [anon_sym_xor] = ACTIONS(7481), + [anon_sym_bitand] = ACTIONS(7481), + [anon_sym_not_eq] = ACTIONS(7481), + [anon_sym_DASH_DASH] = ACTIONS(7483), + [anon_sym_PLUS_PLUS] = ACTIONS(7483), + [anon_sym_DOT] = ACTIONS(7481), + [anon_sym_DOT_STAR] = ACTIONS(7483), + [anon_sym_DASH_GT] = ACTIONS(7483), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7481), + [anon_sym_override] = ACTIONS(7481), + [anon_sym_requires] = ACTIONS(7481), + [anon_sym_COLON_RBRACK] = ACTIONS(7483), + }, + [STATE(2147)] = { + [sym_function_definition] = STATE(3391), + [sym_declaration] = STATE(3391), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6382), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2723), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(11527), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -327707,20 +326735,794 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7499), - [anon_sym_struct] = ACTIONS(7501), - [anon_sym_union] = ACTIONS(7503), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7485), + [anon_sym_struct] = ACTIONS(7487), + [anon_sym_union] = ACTIONS(7489), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2158)] = { - [sym_attribute_specifier] = STATE(2191), + [STATE(2148)] = { + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7246), + [anon_sym_or_eq] = ACTIONS(7246), + [anon_sym_xor_eq] = ACTIONS(7246), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7246), + [anon_sym_override] = ACTIONS(7246), + [anon_sym_requires] = ACTIONS(7246), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), + }, + [STATE(2149)] = { + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [aux_sym_preproc_if_token2] = ACTIONS(7122), + [aux_sym_preproc_else_token1] = ACTIONS(7122), + [aux_sym_preproc_elif_token1] = ACTIONS(7117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7122), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7117), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7117), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7117), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(7117), + [anon_sym_LT_LT] = ACTIONS(7117), + [anon_sym_GT_GT] = ACTIONS(7117), + [anon_sym_SEMI] = ACTIONS(7122), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7122), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7122), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_RBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7122), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_and_eq] = ACTIONS(7117), + [anon_sym_or_eq] = ACTIONS(7117), + [anon_sym_xor_eq] = ACTIONS(7117), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7117), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7117), + [anon_sym_not_eq] = ACTIONS(7117), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7117), + [anon_sym_override] = ACTIONS(7117), + [anon_sym_requires] = ACTIONS(7117), + [anon_sym_COLON_RBRACK] = ACTIONS(7122), + }, + [STATE(2150)] = { + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6651), + [anon_sym_COMMA] = ACTIONS(6651), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6653), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6651), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6651), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6651), + [anon_sym_GT_GT] = ACTIONS(6651), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym_virtual] = ACTIONS(6649), + [anon_sym_extern] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6653), + [anon_sym___declspec] = ACTIONS(6649), + [anon_sym___based] = ACTIONS(6649), + [anon_sym___cdecl] = ACTIONS(6649), + [anon_sym___clrcall] = ACTIONS(6649), + [anon_sym___stdcall] = ACTIONS(6649), + [anon_sym___fastcall] = ACTIONS(6649), + [anon_sym___thiscall] = ACTIONS(6649), + [anon_sym___vectorcall] = ACTIONS(6649), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_RBRACE] = ACTIONS(6651), + [anon_sym_LBRACK] = ACTIONS(6660), + [anon_sym_static] = ACTIONS(6649), + [anon_sym_RBRACK] = ACTIONS(6651), + [anon_sym_register] = ACTIONS(6649), + [anon_sym_inline] = ACTIONS(6649), + [anon_sym___inline] = ACTIONS(6649), + [anon_sym___inline__] = ACTIONS(6649), + [anon_sym___forceinline] = ACTIONS(6649), + [anon_sym_thread_local] = ACTIONS(6649), + [anon_sym___thread] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6658), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6658), + [anon_sym_not_eq] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_template] = ACTIONS(6649), + [anon_sym_operator] = ACTIONS(6649), + [anon_sym_LBRACK_COLON] = ACTIONS(6656), + }, + [STATE(2151)] = { + [sym_attribute_specifier] = STATE(2195), + [sym_identifier] = ACTIONS(7491), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7493), + [anon_sym_COMMA] = ACTIONS(7493), + [anon_sym_RPAREN] = ACTIONS(7493), + [aux_sym_preproc_if_token2] = ACTIONS(7493), + [aux_sym_preproc_else_token1] = ACTIONS(7493), + [aux_sym_preproc_elif_token1] = ACTIONS(7491), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7493), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7493), + [anon_sym_LPAREN2] = ACTIONS(7493), + [anon_sym_DASH] = ACTIONS(7491), + [anon_sym_PLUS] = ACTIONS(7491), + [anon_sym_STAR] = ACTIONS(7491), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7491), + [anon_sym_PIPE_PIPE] = ACTIONS(7493), + [anon_sym_AMP_AMP] = ACTIONS(7493), + [anon_sym_PIPE] = ACTIONS(7491), + [anon_sym_CARET] = ACTIONS(7491), + [anon_sym_AMP] = ACTIONS(7491), + [anon_sym_EQ_EQ] = ACTIONS(7493), + [anon_sym_BANG_EQ] = ACTIONS(7493), + [anon_sym_GT] = ACTIONS(7491), + [anon_sym_GT_EQ] = ACTIONS(7493), + [anon_sym_LT_EQ] = ACTIONS(7491), + [anon_sym_LT] = ACTIONS(7491), + [anon_sym_LT_LT] = ACTIONS(7491), + [anon_sym_GT_GT] = ACTIONS(7491), + [anon_sym_SEMI] = ACTIONS(7493), + [anon_sym___extension__] = ACTIONS(7491), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7491), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7493), + [anon_sym_LBRACE] = ACTIONS(7493), + [anon_sym_RBRACE] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7493), + [anon_sym_EQ] = ACTIONS(7491), + [anon_sym_const] = ACTIONS(7491), + [anon_sym_constexpr] = ACTIONS(7491), + [anon_sym_volatile] = ACTIONS(7491), + [anon_sym_restrict] = ACTIONS(7491), + [anon_sym___restrict__] = ACTIONS(7491), + [anon_sym__Atomic] = ACTIONS(7491), + [anon_sym__Noreturn] = ACTIONS(7491), + [anon_sym_noreturn] = ACTIONS(7491), + [anon_sym__Nonnull] = ACTIONS(7491), + [anon_sym_mutable] = ACTIONS(7491), + [anon_sym_constinit] = ACTIONS(7491), + [anon_sym_consteval] = ACTIONS(7491), + [anon_sym_alignas] = ACTIONS(7491), + [anon_sym__Alignas] = ACTIONS(7491), + [anon_sym_QMARK] = ACTIONS(7493), + [anon_sym_STAR_EQ] = ACTIONS(7493), + [anon_sym_SLASH_EQ] = ACTIONS(7493), + [anon_sym_PERCENT_EQ] = ACTIONS(7493), + [anon_sym_PLUS_EQ] = ACTIONS(7493), + [anon_sym_DASH_EQ] = ACTIONS(7493), + [anon_sym_LT_LT_EQ] = ACTIONS(7493), + [anon_sym_GT_GT_EQ] = ACTIONS(7493), + [anon_sym_AMP_EQ] = ACTIONS(7493), + [anon_sym_CARET_EQ] = ACTIONS(7493), + [anon_sym_PIPE_EQ] = ACTIONS(7493), + [anon_sym_and_eq] = ACTIONS(7491), + [anon_sym_or_eq] = ACTIONS(7491), + [anon_sym_xor_eq] = ACTIONS(7491), + [anon_sym_LT_EQ_GT] = ACTIONS(7493), + [anon_sym_or] = ACTIONS(7491), + [anon_sym_and] = ACTIONS(7491), + [anon_sym_bitor] = ACTIONS(7491), + [anon_sym_xor] = ACTIONS(7491), + [anon_sym_bitand] = ACTIONS(7491), + [anon_sym_not_eq] = ACTIONS(7491), + [anon_sym_DASH_DASH] = ACTIONS(7493), + [anon_sym_PLUS_PLUS] = ACTIONS(7493), + [anon_sym_DOT] = ACTIONS(7491), + [anon_sym_DOT_STAR] = ACTIONS(7493), + [anon_sym_DASH_GT] = ACTIONS(7493), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7491), + [anon_sym_override] = ACTIONS(7491), + [anon_sym_requires] = ACTIONS(7491), + [anon_sym_COLON_RBRACK] = ACTIONS(7493), + }, + [STATE(2152)] = { + [sym_attribute_specifier] = STATE(2202), + [sym_identifier] = ACTIONS(7495), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7497), + [anon_sym_COMMA] = ACTIONS(7497), + [anon_sym_RPAREN] = ACTIONS(7497), + [aux_sym_preproc_if_token2] = ACTIONS(7497), + [aux_sym_preproc_else_token1] = ACTIONS(7497), + [aux_sym_preproc_elif_token1] = ACTIONS(7495), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7497), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7497), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_DASH] = ACTIONS(7495), + [anon_sym_PLUS] = ACTIONS(7495), + [anon_sym_STAR] = ACTIONS(7495), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7495), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7495), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym_EQ_EQ] = ACTIONS(7497), + [anon_sym_BANG_EQ] = ACTIONS(7497), + [anon_sym_GT] = ACTIONS(7495), + [anon_sym_GT_EQ] = ACTIONS(7497), + [anon_sym_LT_EQ] = ACTIONS(7495), + [anon_sym_LT] = ACTIONS(7495), + [anon_sym_LT_LT] = ACTIONS(7495), + [anon_sym_GT_GT] = ACTIONS(7495), + [anon_sym_SEMI] = ACTIONS(7497), + [anon_sym___extension__] = ACTIONS(7495), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7495), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7497), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_RBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7497), + [anon_sym_EQ] = ACTIONS(7495), + [anon_sym_const] = ACTIONS(7495), + [anon_sym_constexpr] = ACTIONS(7495), + [anon_sym_volatile] = ACTIONS(7495), + [anon_sym_restrict] = ACTIONS(7495), + [anon_sym___restrict__] = ACTIONS(7495), + [anon_sym__Atomic] = ACTIONS(7495), + [anon_sym__Noreturn] = ACTIONS(7495), + [anon_sym_noreturn] = ACTIONS(7495), + [anon_sym__Nonnull] = ACTIONS(7495), + [anon_sym_mutable] = ACTIONS(7495), + [anon_sym_constinit] = ACTIONS(7495), + [anon_sym_consteval] = ACTIONS(7495), + [anon_sym_alignas] = ACTIONS(7495), + [anon_sym__Alignas] = ACTIONS(7495), + [anon_sym_QMARK] = ACTIONS(7497), + [anon_sym_STAR_EQ] = ACTIONS(7497), + [anon_sym_SLASH_EQ] = ACTIONS(7497), + [anon_sym_PERCENT_EQ] = ACTIONS(7497), + [anon_sym_PLUS_EQ] = ACTIONS(7497), + [anon_sym_DASH_EQ] = ACTIONS(7497), + [anon_sym_LT_LT_EQ] = ACTIONS(7497), + [anon_sym_GT_GT_EQ] = ACTIONS(7497), + [anon_sym_AMP_EQ] = ACTIONS(7497), + [anon_sym_CARET_EQ] = ACTIONS(7497), + [anon_sym_PIPE_EQ] = ACTIONS(7497), + [anon_sym_and_eq] = ACTIONS(7495), + [anon_sym_or_eq] = ACTIONS(7495), + [anon_sym_xor_eq] = ACTIONS(7495), + [anon_sym_LT_EQ_GT] = ACTIONS(7497), + [anon_sym_or] = ACTIONS(7495), + [anon_sym_and] = ACTIONS(7495), + [anon_sym_bitor] = ACTIONS(7495), + [anon_sym_xor] = ACTIONS(7495), + [anon_sym_bitand] = ACTIONS(7495), + [anon_sym_not_eq] = ACTIONS(7495), + [anon_sym_DASH_DASH] = ACTIONS(7497), + [anon_sym_PLUS_PLUS] = ACTIONS(7497), + [anon_sym_DOT] = ACTIONS(7495), + [anon_sym_DOT_STAR] = ACTIONS(7497), + [anon_sym_DASH_GT] = ACTIONS(7497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7495), + [anon_sym_override] = ACTIONS(7495), + [anon_sym_requires] = ACTIONS(7495), + [anon_sym_COLON_RBRACK] = ACTIONS(7497), + }, + [STATE(2153)] = { + [sym_identifier] = ACTIONS(7499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7479), + [anon_sym_COMMA] = ACTIONS(7479), + [anon_sym_RPAREN] = ACTIONS(7479), + [aux_sym_preproc_if_token2] = ACTIONS(7479), + [aux_sym_preproc_else_token1] = ACTIONS(7479), + [aux_sym_preproc_elif_token1] = ACTIONS(7499), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7479), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7479), + [anon_sym_LPAREN2] = ACTIONS(7479), + [anon_sym_DASH] = ACTIONS(7499), + [anon_sym_PLUS] = ACTIONS(7499), + [anon_sym_STAR] = ACTIONS(7499), + [anon_sym_SLASH] = ACTIONS(7499), + [anon_sym_PERCENT] = ACTIONS(7499), + [anon_sym_PIPE_PIPE] = ACTIONS(7479), + [anon_sym_AMP_AMP] = ACTIONS(7479), + [anon_sym_PIPE] = ACTIONS(7499), + [anon_sym_CARET] = ACTIONS(7499), + [anon_sym_AMP] = ACTIONS(7499), + [anon_sym_EQ_EQ] = ACTIONS(7479), + [anon_sym_BANG_EQ] = ACTIONS(7479), + [anon_sym_GT] = ACTIONS(7499), + [anon_sym_GT_EQ] = ACTIONS(7479), + [anon_sym_LT_EQ] = ACTIONS(7499), + [anon_sym_LT] = ACTIONS(7499), + [anon_sym_LT_LT] = ACTIONS(7499), + [anon_sym_GT_GT] = ACTIONS(7499), + [anon_sym_SEMI] = ACTIONS(7479), + [anon_sym___extension__] = ACTIONS(7499), + [anon_sym___attribute__] = ACTIONS(7499), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_COLON] = ACTIONS(7499), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7479), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_RBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7479), + [anon_sym_EQ] = ACTIONS(7499), + [anon_sym_const] = ACTIONS(7499), + [anon_sym_constexpr] = ACTIONS(7499), + [anon_sym_volatile] = ACTIONS(7499), + [anon_sym_restrict] = ACTIONS(7499), + [anon_sym___restrict__] = ACTIONS(7499), + [anon_sym__Atomic] = ACTIONS(7499), + [anon_sym__Noreturn] = ACTIONS(7499), + [anon_sym_noreturn] = ACTIONS(7499), + [anon_sym__Nonnull] = ACTIONS(7499), + [anon_sym_mutable] = ACTIONS(7499), + [anon_sym_constinit] = ACTIONS(7499), + [anon_sym_consteval] = ACTIONS(7499), + [anon_sym_alignas] = ACTIONS(7499), + [anon_sym__Alignas] = ACTIONS(7499), + [anon_sym_QMARK] = ACTIONS(7479), + [anon_sym_STAR_EQ] = ACTIONS(7479), + [anon_sym_SLASH_EQ] = ACTIONS(7479), + [anon_sym_PERCENT_EQ] = ACTIONS(7479), + [anon_sym_PLUS_EQ] = ACTIONS(7479), + [anon_sym_DASH_EQ] = ACTIONS(7479), + [anon_sym_LT_LT_EQ] = ACTIONS(7479), + [anon_sym_GT_GT_EQ] = ACTIONS(7479), + [anon_sym_AMP_EQ] = ACTIONS(7479), + [anon_sym_CARET_EQ] = ACTIONS(7479), + [anon_sym_PIPE_EQ] = ACTIONS(7479), + [anon_sym_and_eq] = ACTIONS(7499), + [anon_sym_or_eq] = ACTIONS(7499), + [anon_sym_xor_eq] = ACTIONS(7499), + [anon_sym_LT_EQ_GT] = ACTIONS(7479), + [anon_sym_or] = ACTIONS(7499), + [anon_sym_and] = ACTIONS(7499), + [anon_sym_bitor] = ACTIONS(7499), + [anon_sym_xor] = ACTIONS(7499), + [anon_sym_bitand] = ACTIONS(7499), + [anon_sym_not_eq] = ACTIONS(7499), + [anon_sym_DASH_DASH] = ACTIONS(7479), + [anon_sym_PLUS_PLUS] = ACTIONS(7479), + [anon_sym_DOT] = ACTIONS(7499), + [anon_sym_DOT_STAR] = ACTIONS(7479), + [anon_sym_DASH_GT] = ACTIONS(7479), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7499), + [anon_sym_override] = ACTIONS(7499), + [anon_sym_requires] = ACTIONS(7499), + [anon_sym_COLON_RBRACK] = ACTIONS(7479), + }, + [STATE(2154)] = { + [sym_identifier] = ACTIONS(7133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_RPAREN] = ACTIONS(7135), + [aux_sym_preproc_if_token2] = ACTIONS(7135), + [aux_sym_preproc_else_token1] = ACTIONS(7135), + [aux_sym_preproc_elif_token1] = ACTIONS(7133), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7135), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7133), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7133), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7133), + [anon_sym_GT_GT] = ACTIONS(7133), + [anon_sym_SEMI] = ACTIONS(7135), + [anon_sym___extension__] = ACTIONS(7133), + [anon_sym___attribute__] = ACTIONS(7133), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_COLON] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_RBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7133), + [anon_sym_volatile] = ACTIONS(7133), + [anon_sym_restrict] = ACTIONS(7133), + [anon_sym___restrict__] = ACTIONS(7133), + [anon_sym__Atomic] = ACTIONS(7133), + [anon_sym__Noreturn] = ACTIONS(7133), + [anon_sym_noreturn] = ACTIONS(7133), + [anon_sym__Nonnull] = ACTIONS(7133), + [anon_sym_mutable] = ACTIONS(7133), + [anon_sym_constinit] = ACTIONS(7133), + [anon_sym_consteval] = ACTIONS(7133), + [anon_sym_alignas] = ACTIONS(7133), + [anon_sym__Alignas] = ACTIONS(7133), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_and_eq] = ACTIONS(7133), + [anon_sym_or_eq] = ACTIONS(7133), + [anon_sym_xor_eq] = ACTIONS(7133), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7133), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7133), + [anon_sym_not_eq] = ACTIONS(7133), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7133), + [anon_sym_override] = ACTIONS(7133), + [anon_sym_requires] = ACTIONS(7133), + [anon_sym_COLON_RBRACK] = ACTIONS(7135), + }, + [STATE(2155)] = { + [sym_template_argument_list] = STATE(3755), + [aux_sym_sized_type_specifier_repeat1] = STATE(2254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [anon_sym_RPAREN] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7357), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7357), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7357), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7357), + [anon_sym_GT_GT] = ACTIONS(7357), + [anon_sym_SEMI] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_RBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6774), + [anon_sym_unsigned] = ACTIONS(6774), + [anon_sym_long] = ACTIONS(6774), + [anon_sym_short] = ACTIONS(6774), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7357), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_STAR_EQ] = ACTIONS(7359), + [anon_sym_SLASH_EQ] = ACTIONS(7359), + [anon_sym_PERCENT_EQ] = ACTIONS(7359), + [anon_sym_PLUS_EQ] = ACTIONS(7359), + [anon_sym_DASH_EQ] = ACTIONS(7359), + [anon_sym_LT_LT_EQ] = ACTIONS(7359), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7359), + [anon_sym_CARET_EQ] = ACTIONS(7359), + [anon_sym_PIPE_EQ] = ACTIONS(7359), + [anon_sym_and_eq] = ACTIONS(7359), + [anon_sym_or_eq] = ACTIONS(7359), + [anon_sym_xor_eq] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7357), + [anon_sym_and] = ACTIONS(7357), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7357), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_COLON_RBRACK] = ACTIONS(7359), + }, + [STATE(2156)] = { + [sym_attribute_specifier] = STATE(2209), + [sym_identifier] = ACTIONS(7501), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7503), + [anon_sym_COMMA] = ACTIONS(7503), + [anon_sym_RPAREN] = ACTIONS(7503), + [aux_sym_preproc_if_token2] = ACTIONS(7503), + [aux_sym_preproc_else_token1] = ACTIONS(7503), + [aux_sym_preproc_elif_token1] = ACTIONS(7501), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7503), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7503), + [anon_sym_LPAREN2] = ACTIONS(7503), + [anon_sym_DASH] = ACTIONS(7501), + [anon_sym_PLUS] = ACTIONS(7501), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(7501), + [anon_sym_PERCENT] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(7501), + [anon_sym_CARET] = ACTIONS(7501), + [anon_sym_AMP] = ACTIONS(7501), + [anon_sym_EQ_EQ] = ACTIONS(7503), + [anon_sym_BANG_EQ] = ACTIONS(7503), + [anon_sym_GT] = ACTIONS(7501), + [anon_sym_GT_EQ] = ACTIONS(7503), + [anon_sym_LT_EQ] = ACTIONS(7501), + [anon_sym_LT] = ACTIONS(7501), + [anon_sym_LT_LT] = ACTIONS(7501), + [anon_sym_GT_GT] = ACTIONS(7501), + [anon_sym_SEMI] = ACTIONS(7503), + [anon_sym___extension__] = ACTIONS(7501), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7501), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7503), + [anon_sym_LBRACE] = ACTIONS(7503), + [anon_sym_RBRACE] = ACTIONS(7503), + [anon_sym_LBRACK] = ACTIONS(7503), + [anon_sym_EQ] = ACTIONS(7501), + [anon_sym_const] = ACTIONS(7501), + [anon_sym_constexpr] = ACTIONS(7501), + [anon_sym_volatile] = ACTIONS(7501), + [anon_sym_restrict] = ACTIONS(7501), + [anon_sym___restrict__] = ACTIONS(7501), + [anon_sym__Atomic] = ACTIONS(7501), + [anon_sym__Noreturn] = ACTIONS(7501), + [anon_sym_noreturn] = ACTIONS(7501), + [anon_sym__Nonnull] = ACTIONS(7501), + [anon_sym_mutable] = ACTIONS(7501), + [anon_sym_constinit] = ACTIONS(7501), + [anon_sym_consteval] = ACTIONS(7501), + [anon_sym_alignas] = ACTIONS(7501), + [anon_sym__Alignas] = ACTIONS(7501), + [anon_sym_QMARK] = ACTIONS(7503), + [anon_sym_STAR_EQ] = ACTIONS(7503), + [anon_sym_SLASH_EQ] = ACTIONS(7503), + [anon_sym_PERCENT_EQ] = ACTIONS(7503), + [anon_sym_PLUS_EQ] = ACTIONS(7503), + [anon_sym_DASH_EQ] = ACTIONS(7503), + [anon_sym_LT_LT_EQ] = ACTIONS(7503), + [anon_sym_GT_GT_EQ] = ACTIONS(7503), + [anon_sym_AMP_EQ] = ACTIONS(7503), + [anon_sym_CARET_EQ] = ACTIONS(7503), + [anon_sym_PIPE_EQ] = ACTIONS(7503), + [anon_sym_and_eq] = ACTIONS(7501), + [anon_sym_or_eq] = ACTIONS(7501), + [anon_sym_xor_eq] = ACTIONS(7501), + [anon_sym_LT_EQ_GT] = ACTIONS(7503), + [anon_sym_or] = ACTIONS(7501), + [anon_sym_and] = ACTIONS(7501), + [anon_sym_bitor] = ACTIONS(7501), + [anon_sym_xor] = ACTIONS(7501), + [anon_sym_bitand] = ACTIONS(7501), + [anon_sym_not_eq] = ACTIONS(7501), + [anon_sym_DASH_DASH] = ACTIONS(7503), + [anon_sym_PLUS_PLUS] = ACTIONS(7503), + [anon_sym_DOT] = ACTIONS(7501), + [anon_sym_DOT_STAR] = ACTIONS(7503), + [anon_sym_DASH_GT] = ACTIONS(7503), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7501), + [anon_sym_override] = ACTIONS(7501), + [anon_sym_requires] = ACTIONS(7501), + [anon_sym_COLON_RBRACK] = ACTIONS(7503), + }, + [STATE(2157)] = { + [sym_attribute_specifier] = STATE(2214), [sym_identifier] = ACTIONS(7505), [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), [anon_sym_COMMA] = ACTIONS(7507), @@ -327751,8 +327553,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(7505), [anon_sym_SEMI] = ACTIONS(7507), [anon_sym___extension__] = ACTIONS(7505), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), [anon_sym_COLON] = ACTIONS(7505), [anon_sym_RBRACK_RBRACK] = ACTIONS(7507), [anon_sym_LBRACE] = ACTIONS(7507), @@ -327805,318 +327607,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7505), [anon_sym_COLON_RBRACK] = ACTIONS(7507), }, + [STATE(2158)] = { + [sym_type_qualifier] = STATE(2130), + [sym_alignas_qualifier] = STATE(2046), + [aux_sym__type_definition_type_repeat1] = STATE(2130), + [aux_sym_sized_type_specifier_repeat1] = STATE(2294), + [sym_identifier] = ACTIONS(7207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_RPAREN] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym_SEMI] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(6837), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_COLON] = ACTIONS(7211), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7209), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_RBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(7509), + [anon_sym_unsigned] = ACTIONS(7509), + [anon_sym_long] = ACTIONS(7509), + [anon_sym_short] = ACTIONS(7509), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6837), + [anon_sym_volatile] = ACTIONS(6837), + [anon_sym_restrict] = ACTIONS(6837), + [anon_sym___restrict__] = ACTIONS(6837), + [anon_sym__Atomic] = ACTIONS(6837), + [anon_sym__Noreturn] = ACTIONS(6837), + [anon_sym_noreturn] = ACTIONS(6837), + [anon_sym__Nonnull] = ACTIONS(6837), + [anon_sym_mutable] = ACTIONS(6837), + [anon_sym_constinit] = ACTIONS(6837), + [anon_sym_consteval] = ACTIONS(6837), + [anon_sym_alignas] = ACTIONS(7407), + [anon_sym__Alignas] = ACTIONS(7407), + [sym_primitive_type] = ACTIONS(7221), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7209), + }, [STATE(2159)] = { - [sym_function_definition] = STATE(3251), - [sym_declaration] = STATE(3251), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6416), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2711), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10772), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7509), - [anon_sym_struct] = ACTIONS(7511), - [anon_sym_union] = ACTIONS(7513), - [anon_sym_typename] = ACTIONS(5464), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_attribute_specifier] = STATE(2219), + [sym_identifier] = ACTIONS(7511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7513), + [anon_sym_COMMA] = ACTIONS(7513), + [anon_sym_RPAREN] = ACTIONS(7513), + [aux_sym_preproc_if_token2] = ACTIONS(7513), + [aux_sym_preproc_else_token1] = ACTIONS(7513), + [aux_sym_preproc_elif_token1] = ACTIONS(7511), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7513), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7513), + [anon_sym_LPAREN2] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_STAR] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7511), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7513), + [anon_sym_AMP_AMP] = ACTIONS(7513), + [anon_sym_PIPE] = ACTIONS(7511), + [anon_sym_CARET] = ACTIONS(7511), + [anon_sym_AMP] = ACTIONS(7511), + [anon_sym_EQ_EQ] = ACTIONS(7513), + [anon_sym_BANG_EQ] = ACTIONS(7513), + [anon_sym_GT] = ACTIONS(7511), + [anon_sym_GT_EQ] = ACTIONS(7513), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_LT] = ACTIONS(7511), + [anon_sym_LT_LT] = ACTIONS(7511), + [anon_sym_GT_GT] = ACTIONS(7511), + [anon_sym_SEMI] = ACTIONS(7513), + [anon_sym___extension__] = ACTIONS(7511), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7511), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7513), + [anon_sym_LBRACE] = ACTIONS(7513), + [anon_sym_RBRACE] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7513), + [anon_sym_EQ] = ACTIONS(7511), + [anon_sym_const] = ACTIONS(7511), + [anon_sym_constexpr] = ACTIONS(7511), + [anon_sym_volatile] = ACTIONS(7511), + [anon_sym_restrict] = ACTIONS(7511), + [anon_sym___restrict__] = ACTIONS(7511), + [anon_sym__Atomic] = ACTIONS(7511), + [anon_sym__Noreturn] = ACTIONS(7511), + [anon_sym_noreturn] = ACTIONS(7511), + [anon_sym__Nonnull] = ACTIONS(7511), + [anon_sym_mutable] = ACTIONS(7511), + [anon_sym_constinit] = ACTIONS(7511), + [anon_sym_consteval] = ACTIONS(7511), + [anon_sym_alignas] = ACTIONS(7511), + [anon_sym__Alignas] = ACTIONS(7511), + [anon_sym_QMARK] = ACTIONS(7513), + [anon_sym_STAR_EQ] = ACTIONS(7513), + [anon_sym_SLASH_EQ] = ACTIONS(7513), + [anon_sym_PERCENT_EQ] = ACTIONS(7513), + [anon_sym_PLUS_EQ] = ACTIONS(7513), + [anon_sym_DASH_EQ] = ACTIONS(7513), + [anon_sym_LT_LT_EQ] = ACTIONS(7513), + [anon_sym_GT_GT_EQ] = ACTIONS(7513), + [anon_sym_AMP_EQ] = ACTIONS(7513), + [anon_sym_CARET_EQ] = ACTIONS(7513), + [anon_sym_PIPE_EQ] = ACTIONS(7513), + [anon_sym_and_eq] = ACTIONS(7511), + [anon_sym_or_eq] = ACTIONS(7511), + [anon_sym_xor_eq] = ACTIONS(7511), + [anon_sym_LT_EQ_GT] = ACTIONS(7513), + [anon_sym_or] = ACTIONS(7511), + [anon_sym_and] = ACTIONS(7511), + [anon_sym_bitor] = ACTIONS(7511), + [anon_sym_xor] = ACTIONS(7511), + [anon_sym_bitand] = ACTIONS(7511), + [anon_sym_not_eq] = ACTIONS(7511), + [anon_sym_DASH_DASH] = ACTIONS(7513), + [anon_sym_PLUS_PLUS] = ACTIONS(7513), + [anon_sym_DOT] = ACTIONS(7511), + [anon_sym_DOT_STAR] = ACTIONS(7513), + [anon_sym_DASH_GT] = ACTIONS(7513), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7511), + [anon_sym_override] = ACTIONS(7511), + [anon_sym_requires] = ACTIONS(7511), + [anon_sym_COLON_RBRACK] = ACTIONS(7513), }, [STATE(2160)] = { - [sym_function_definition] = STATE(3264), - [sym_declaration] = STATE(3264), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6416), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2711), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10835), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7515), - [anon_sym_struct] = ACTIONS(7517), - [anon_sym_union] = ACTIONS(7519), - [anon_sym_typename] = ACTIONS(5464), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_attribute_specifier] = STATE(2170), + [sym_identifier] = ACTIONS(7515), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(7517), + [anon_sym_RPAREN] = ACTIONS(7517), + [aux_sym_preproc_if_token2] = ACTIONS(7517), + [aux_sym_preproc_else_token1] = ACTIONS(7517), + [aux_sym_preproc_elif_token1] = ACTIONS(7515), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7517), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7517), + [anon_sym_LPAREN2] = ACTIONS(7517), + [anon_sym_DASH] = ACTIONS(7515), + [anon_sym_PLUS] = ACTIONS(7515), + [anon_sym_STAR] = ACTIONS(7515), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7517), + [anon_sym_PIPE] = ACTIONS(7515), + [anon_sym_CARET] = ACTIONS(7515), + [anon_sym_AMP] = ACTIONS(7515), + [anon_sym_EQ_EQ] = ACTIONS(7517), + [anon_sym_BANG_EQ] = ACTIONS(7517), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_GT_EQ] = ACTIONS(7517), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_LT] = ACTIONS(7515), + [anon_sym_LT_LT] = ACTIONS(7515), + [anon_sym_GT_GT] = ACTIONS(7515), + [anon_sym_SEMI] = ACTIONS(7517), + [anon_sym___extension__] = ACTIONS(7515), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7515), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7517), + [anon_sym_LBRACE] = ACTIONS(7517), + [anon_sym_RBRACE] = ACTIONS(7517), + [anon_sym_LBRACK] = ACTIONS(7517), + [anon_sym_EQ] = ACTIONS(7515), + [anon_sym_const] = ACTIONS(7515), + [anon_sym_constexpr] = ACTIONS(7515), + [anon_sym_volatile] = ACTIONS(7515), + [anon_sym_restrict] = ACTIONS(7515), + [anon_sym___restrict__] = ACTIONS(7515), + [anon_sym__Atomic] = ACTIONS(7515), + [anon_sym__Noreturn] = ACTIONS(7515), + [anon_sym_noreturn] = ACTIONS(7515), + [anon_sym__Nonnull] = ACTIONS(7515), + [anon_sym_mutable] = ACTIONS(7515), + [anon_sym_constinit] = ACTIONS(7515), + [anon_sym_consteval] = ACTIONS(7515), + [anon_sym_alignas] = ACTIONS(7515), + [anon_sym__Alignas] = ACTIONS(7515), + [anon_sym_QMARK] = ACTIONS(7517), + [anon_sym_STAR_EQ] = ACTIONS(7517), + [anon_sym_SLASH_EQ] = ACTIONS(7517), + [anon_sym_PERCENT_EQ] = ACTIONS(7517), + [anon_sym_PLUS_EQ] = ACTIONS(7517), + [anon_sym_DASH_EQ] = ACTIONS(7517), + [anon_sym_LT_LT_EQ] = ACTIONS(7517), + [anon_sym_GT_GT_EQ] = ACTIONS(7517), + [anon_sym_AMP_EQ] = ACTIONS(7517), + [anon_sym_CARET_EQ] = ACTIONS(7517), + [anon_sym_PIPE_EQ] = ACTIONS(7517), + [anon_sym_and_eq] = ACTIONS(7515), + [anon_sym_or_eq] = ACTIONS(7515), + [anon_sym_xor_eq] = ACTIONS(7515), + [anon_sym_LT_EQ_GT] = ACTIONS(7517), + [anon_sym_or] = ACTIONS(7515), + [anon_sym_and] = ACTIONS(7515), + [anon_sym_bitor] = ACTIONS(7515), + [anon_sym_xor] = ACTIONS(7515), + [anon_sym_bitand] = ACTIONS(7515), + [anon_sym_not_eq] = ACTIONS(7515), + [anon_sym_DASH_DASH] = ACTIONS(7517), + [anon_sym_PLUS_PLUS] = ACTIONS(7517), + [anon_sym_DOT] = ACTIONS(7515), + [anon_sym_DOT_STAR] = ACTIONS(7517), + [anon_sym_DASH_GT] = ACTIONS(7517), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7515), + [anon_sym_override] = ACTIONS(7515), + [anon_sym_requires] = ACTIONS(7515), + [anon_sym_COLON_RBRACK] = ACTIONS(7517), }, [STATE(2161)] = { - [sym_attribute_specifier] = STATE(2235), - [sym_identifier] = ACTIONS(7521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), - [anon_sym_COMMA] = ACTIONS(7523), - [anon_sym_RPAREN] = ACTIONS(7523), - [aux_sym_preproc_if_token2] = ACTIONS(7523), - [aux_sym_preproc_else_token1] = ACTIONS(7523), - [aux_sym_preproc_elif_token1] = ACTIONS(7521), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7523), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7523), - [anon_sym_LPAREN2] = ACTIONS(7523), - [anon_sym_DASH] = ACTIONS(7521), - [anon_sym_PLUS] = ACTIONS(7521), - [anon_sym_STAR] = ACTIONS(7521), - [anon_sym_SLASH] = ACTIONS(7521), - [anon_sym_PERCENT] = ACTIONS(7521), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_AMP_AMP] = ACTIONS(7523), - [anon_sym_PIPE] = ACTIONS(7521), - [anon_sym_CARET] = ACTIONS(7521), - [anon_sym_AMP] = ACTIONS(7521), - [anon_sym_EQ_EQ] = ACTIONS(7523), - [anon_sym_BANG_EQ] = ACTIONS(7523), - [anon_sym_GT] = ACTIONS(7521), - [anon_sym_GT_EQ] = ACTIONS(7523), - [anon_sym_LT_EQ] = ACTIONS(7521), - [anon_sym_LT] = ACTIONS(7521), - [anon_sym_LT_LT] = ACTIONS(7521), - [anon_sym_GT_GT] = ACTIONS(7521), - [anon_sym_SEMI] = ACTIONS(7523), - [anon_sym___extension__] = ACTIONS(7521), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7521), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7523), - [anon_sym_LBRACE] = ACTIONS(7523), - [anon_sym_RBRACE] = ACTIONS(7523), - [anon_sym_LBRACK] = ACTIONS(7523), - [anon_sym_EQ] = ACTIONS(7521), - [anon_sym_const] = ACTIONS(7521), - [anon_sym_constexpr] = ACTIONS(7521), - [anon_sym_volatile] = ACTIONS(7521), - [anon_sym_restrict] = ACTIONS(7521), - [anon_sym___restrict__] = ACTIONS(7521), - [anon_sym__Atomic] = ACTIONS(7521), - [anon_sym__Noreturn] = ACTIONS(7521), - [anon_sym_noreturn] = ACTIONS(7521), - [anon_sym__Nonnull] = ACTIONS(7521), - [anon_sym_mutable] = ACTIONS(7521), - [anon_sym_constinit] = ACTIONS(7521), - [anon_sym_consteval] = ACTIONS(7521), - [anon_sym_alignas] = ACTIONS(7521), - [anon_sym__Alignas] = ACTIONS(7521), - [anon_sym_QMARK] = ACTIONS(7523), - [anon_sym_STAR_EQ] = ACTIONS(7523), - [anon_sym_SLASH_EQ] = ACTIONS(7523), - [anon_sym_PERCENT_EQ] = ACTIONS(7523), - [anon_sym_PLUS_EQ] = ACTIONS(7523), - [anon_sym_DASH_EQ] = ACTIONS(7523), - [anon_sym_LT_LT_EQ] = ACTIONS(7523), - [anon_sym_GT_GT_EQ] = ACTIONS(7523), - [anon_sym_AMP_EQ] = ACTIONS(7523), - [anon_sym_CARET_EQ] = ACTIONS(7523), - [anon_sym_PIPE_EQ] = ACTIONS(7523), - [anon_sym_and_eq] = ACTIONS(7521), - [anon_sym_or_eq] = ACTIONS(7521), - [anon_sym_xor_eq] = ACTIONS(7521), - [anon_sym_LT_EQ_GT] = ACTIONS(7523), - [anon_sym_or] = ACTIONS(7521), - [anon_sym_and] = ACTIONS(7521), - [anon_sym_bitor] = ACTIONS(7521), - [anon_sym_xor] = ACTIONS(7521), - [anon_sym_bitand] = ACTIONS(7521), - [anon_sym_not_eq] = ACTIONS(7521), - [anon_sym_DASH_DASH] = ACTIONS(7523), - [anon_sym_PLUS_PLUS] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(7521), - [anon_sym_DOT_STAR] = ACTIONS(7523), - [anon_sym_DASH_GT] = ACTIONS(7523), + [sym_attribute_specifier] = STATE(2228), + [sym_identifier] = ACTIONS(7519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_RPAREN] = ACTIONS(7521), + [aux_sym_preproc_if_token2] = ACTIONS(7521), + [aux_sym_preproc_else_token1] = ACTIONS(7521), + [aux_sym_preproc_elif_token1] = ACTIONS(7519), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7521), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7521), + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_DASH] = ACTIONS(7519), + [anon_sym_PLUS] = ACTIONS(7519), + [anon_sym_STAR] = ACTIONS(7519), + [anon_sym_SLASH] = ACTIONS(7519), + [anon_sym_PERCENT] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7519), + [anon_sym_CARET] = ACTIONS(7519), + [anon_sym_AMP] = ACTIONS(7519), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_GT] = ACTIONS(7519), + [anon_sym_GT_EQ] = ACTIONS(7521), + [anon_sym_LT_EQ] = ACTIONS(7519), + [anon_sym_LT] = ACTIONS(7519), + [anon_sym_LT_LT] = ACTIONS(7519), + [anon_sym_GT_GT] = ACTIONS(7519), + [anon_sym_SEMI] = ACTIONS(7521), + [anon_sym___extension__] = ACTIONS(7519), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7519), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7521), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_RBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_EQ] = ACTIONS(7519), + [anon_sym_const] = ACTIONS(7519), + [anon_sym_constexpr] = ACTIONS(7519), + [anon_sym_volatile] = ACTIONS(7519), + [anon_sym_restrict] = ACTIONS(7519), + [anon_sym___restrict__] = ACTIONS(7519), + [anon_sym__Atomic] = ACTIONS(7519), + [anon_sym__Noreturn] = ACTIONS(7519), + [anon_sym_noreturn] = ACTIONS(7519), + [anon_sym__Nonnull] = ACTIONS(7519), + [anon_sym_mutable] = ACTIONS(7519), + [anon_sym_constinit] = ACTIONS(7519), + [anon_sym_consteval] = ACTIONS(7519), + [anon_sym_alignas] = ACTIONS(7519), + [anon_sym__Alignas] = ACTIONS(7519), + [anon_sym_QMARK] = ACTIONS(7521), + [anon_sym_STAR_EQ] = ACTIONS(7521), + [anon_sym_SLASH_EQ] = ACTIONS(7521), + [anon_sym_PERCENT_EQ] = ACTIONS(7521), + [anon_sym_PLUS_EQ] = ACTIONS(7521), + [anon_sym_DASH_EQ] = ACTIONS(7521), + [anon_sym_LT_LT_EQ] = ACTIONS(7521), + [anon_sym_GT_GT_EQ] = ACTIONS(7521), + [anon_sym_AMP_EQ] = ACTIONS(7521), + [anon_sym_CARET_EQ] = ACTIONS(7521), + [anon_sym_PIPE_EQ] = ACTIONS(7521), + [anon_sym_and_eq] = ACTIONS(7519), + [anon_sym_or_eq] = ACTIONS(7519), + [anon_sym_xor_eq] = ACTIONS(7519), + [anon_sym_LT_EQ_GT] = ACTIONS(7521), + [anon_sym_or] = ACTIONS(7519), + [anon_sym_and] = ACTIONS(7519), + [anon_sym_bitor] = ACTIONS(7519), + [anon_sym_xor] = ACTIONS(7519), + [anon_sym_bitand] = ACTIONS(7519), + [anon_sym_not_eq] = ACTIONS(7519), + [anon_sym_DASH_DASH] = ACTIONS(7521), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7519), + [anon_sym_DOT_STAR] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7521), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7521), - [anon_sym_override] = ACTIONS(7521), - [anon_sym_requires] = ACTIONS(7521), - [anon_sym_COLON_RBRACK] = ACTIONS(7523), + [anon_sym_final] = ACTIONS(7519), + [anon_sym_override] = ACTIONS(7519), + [anon_sym_requires] = ACTIONS(7519), + [anon_sym_COLON_RBRACK] = ACTIONS(7521), }, [STATE(2162)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [sym_identifier] = ACTIONS(6999), + [sym_attribute_specifier] = STATE(2231), + [sym_identifier] = ACTIONS(7523), [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), [anon_sym_COMMA] = ACTIONS(7525), [anon_sym_RPAREN] = ACTIONS(7525), + [aux_sym_preproc_if_token2] = ACTIONS(7525), + [aux_sym_preproc_else_token1] = ACTIONS(7525), + [aux_sym_preproc_elif_token1] = ACTIONS(7523), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7525), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7525), [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_STAR] = ACTIONS(7523), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_PERCENT] = ACTIONS(7523), [anon_sym_PIPE_PIPE] = ACTIONS(7525), [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_CARET] = ACTIONS(7523), + [anon_sym_AMP] = ACTIONS(7523), [anon_sym_EQ_EQ] = ACTIONS(7525), [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), + [anon_sym_GT] = ACTIONS(7523), [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym_LT_EQ] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_LT_LT] = ACTIONS(7523), + [anon_sym_GT_GT] = ACTIONS(7523), [anon_sym_SEMI] = ACTIONS(7525), - [anon_sym___extension__] = ACTIONS(7528), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_COLON] = ACTIONS(7528), + [anon_sym___extension__] = ACTIONS(7523), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7523), [anon_sym_RBRACK_RBRACK] = ACTIONS(7525), [anon_sym_LBRACE] = ACTIONS(7525), [anon_sym_RBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(7003), - [anon_sym_unsigned] = ACTIONS(7003), - [anon_sym_long] = ACTIONS(7003), - [anon_sym_short] = ACTIONS(7003), [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(7528), - [anon_sym_constexpr] = ACTIONS(7528), - [anon_sym_volatile] = ACTIONS(7528), - [anon_sym_restrict] = ACTIONS(7528), - [anon_sym___restrict__] = ACTIONS(7528), - [anon_sym__Atomic] = ACTIONS(7528), - [anon_sym__Noreturn] = ACTIONS(7528), - [anon_sym_noreturn] = ACTIONS(7528), - [anon_sym__Nonnull] = ACTIONS(7528), - [anon_sym_mutable] = ACTIONS(7528), - [anon_sym_constinit] = ACTIONS(7528), - [anon_sym_consteval] = ACTIONS(7528), - [anon_sym_alignas] = ACTIONS(7528), - [anon_sym__Alignas] = ACTIONS(7528), - [sym_primitive_type] = ACTIONS(6999), + [anon_sym_EQ] = ACTIONS(7523), + [anon_sym_const] = ACTIONS(7523), + [anon_sym_constexpr] = ACTIONS(7523), + [anon_sym_volatile] = ACTIONS(7523), + [anon_sym_restrict] = ACTIONS(7523), + [anon_sym___restrict__] = ACTIONS(7523), + [anon_sym__Atomic] = ACTIONS(7523), + [anon_sym__Noreturn] = ACTIONS(7523), + [anon_sym_noreturn] = ACTIONS(7523), + [anon_sym__Nonnull] = ACTIONS(7523), + [anon_sym_mutable] = ACTIONS(7523), + [anon_sym_constinit] = ACTIONS(7523), + [anon_sym_consteval] = ACTIONS(7523), + [anon_sym_alignas] = ACTIONS(7523), + [anon_sym__Alignas] = ACTIONS(7523), [anon_sym_QMARK] = ACTIONS(7525), [anon_sym_STAR_EQ] = ACTIONS(7525), [anon_sym_SLASH_EQ] = ACTIONS(7525), @@ -328128,201 +328016,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7525), [anon_sym_CARET_EQ] = ACTIONS(7525), [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_and_eq] = ACTIONS(7528), - [anon_sym_or_eq] = ACTIONS(7528), - [anon_sym_xor_eq] = ACTIONS(7528), + [anon_sym_and_eq] = ACTIONS(7523), + [anon_sym_or_eq] = ACTIONS(7523), + [anon_sym_xor_eq] = ACTIONS(7523), [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), + [anon_sym_or] = ACTIONS(7523), + [anon_sym_and] = ACTIONS(7523), + [anon_sym_bitor] = ACTIONS(7523), + [anon_sym_xor] = ACTIONS(7523), + [anon_sym_bitand] = ACTIONS(7523), + [anon_sym_not_eq] = ACTIONS(7523), [anon_sym_DASH_DASH] = ACTIONS(7525), [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), + [anon_sym_DOT] = ACTIONS(7523), [anon_sym_DOT_STAR] = ACTIONS(7525), [anon_sym_DASH_GT] = ACTIONS(7525), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_requires] = ACTIONS(7528), + [anon_sym_final] = ACTIONS(7523), + [anon_sym_override] = ACTIONS(7523), + [anon_sym_requires] = ACTIONS(7523), [anon_sym_COLON_RBRACK] = ACTIONS(7525), }, [STATE(2163)] = { - [sym_identifier] = ACTIONS(7231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_RPAREN] = ACTIONS(7233), - [aux_sym_preproc_if_token2] = ACTIONS(7233), - [aux_sym_preproc_else_token1] = ACTIONS(7233), - [aux_sym_preproc_elif_token1] = ACTIONS(7231), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7233), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7231), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7231), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7231), - [anon_sym_GT_GT] = ACTIONS(7231), - [anon_sym_SEMI] = ACTIONS(7233), - [anon_sym___extension__] = ACTIONS(7231), - [anon_sym___attribute__] = ACTIONS(7231), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(7233), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7233), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_RBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7233), - [anon_sym_EQ] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7231), - [anon_sym_volatile] = ACTIONS(7231), - [anon_sym_restrict] = ACTIONS(7231), - [anon_sym___restrict__] = ACTIONS(7231), - [anon_sym__Atomic] = ACTIONS(7231), - [anon_sym__Noreturn] = ACTIONS(7231), - [anon_sym_noreturn] = ACTIONS(7231), - [anon_sym__Nonnull] = ACTIONS(7231), - [anon_sym_mutable] = ACTIONS(7231), - [anon_sym_constinit] = ACTIONS(7231), - [anon_sym_consteval] = ACTIONS(7231), - [anon_sym_alignas] = ACTIONS(7231), - [anon_sym__Alignas] = ACTIONS(7231), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_STAR_EQ] = ACTIONS(7233), - [anon_sym_SLASH_EQ] = ACTIONS(7233), - [anon_sym_PERCENT_EQ] = ACTIONS(7233), - [anon_sym_PLUS_EQ] = ACTIONS(7233), - [anon_sym_DASH_EQ] = ACTIONS(7233), - [anon_sym_LT_LT_EQ] = ACTIONS(7233), - [anon_sym_GT_GT_EQ] = ACTIONS(7233), - [anon_sym_AMP_EQ] = ACTIONS(7233), - [anon_sym_CARET_EQ] = ACTIONS(7233), - [anon_sym_PIPE_EQ] = ACTIONS(7233), - [anon_sym_and_eq] = ACTIONS(7231), - [anon_sym_or_eq] = ACTIONS(7231), - [anon_sym_xor_eq] = ACTIONS(7231), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_bitor] = ACTIONS(7231), - [anon_sym_xor] = ACTIONS(7231), - [anon_sym_bitand] = ACTIONS(7231), - [anon_sym_not_eq] = ACTIONS(7231), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7233), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7231), - [anon_sym_override] = ACTIONS(7231), - [anon_sym_requires] = ACTIONS(7231), - [anon_sym_COLON_RBRACK] = ACTIONS(7233), + [sym_attribute_specifier] = STATE(2232), + [sym_identifier] = ACTIONS(7527), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7529), + [anon_sym_COMMA] = ACTIONS(7529), + [anon_sym_RPAREN] = ACTIONS(7529), + [aux_sym_preproc_if_token2] = ACTIONS(7529), + [aux_sym_preproc_else_token1] = ACTIONS(7529), + [aux_sym_preproc_elif_token1] = ACTIONS(7527), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7529), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7529), + [anon_sym_LPAREN2] = ACTIONS(7529), + [anon_sym_DASH] = ACTIONS(7527), + [anon_sym_PLUS] = ACTIONS(7527), + [anon_sym_STAR] = ACTIONS(7527), + [anon_sym_SLASH] = ACTIONS(7527), + [anon_sym_PERCENT] = ACTIONS(7527), + [anon_sym_PIPE_PIPE] = ACTIONS(7529), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE] = ACTIONS(7527), + [anon_sym_CARET] = ACTIONS(7527), + [anon_sym_AMP] = ACTIONS(7527), + [anon_sym_EQ_EQ] = ACTIONS(7529), + [anon_sym_BANG_EQ] = ACTIONS(7529), + [anon_sym_GT] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_LT] = ACTIONS(7527), + [anon_sym_LT_LT] = ACTIONS(7527), + [anon_sym_GT_GT] = ACTIONS(7527), + [anon_sym_SEMI] = ACTIONS(7529), + [anon_sym___extension__] = ACTIONS(7527), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7527), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7529), + [anon_sym_LBRACE] = ACTIONS(7529), + [anon_sym_RBRACE] = ACTIONS(7529), + [anon_sym_LBRACK] = ACTIONS(7529), + [anon_sym_EQ] = ACTIONS(7527), + [anon_sym_const] = ACTIONS(7527), + [anon_sym_constexpr] = ACTIONS(7527), + [anon_sym_volatile] = ACTIONS(7527), + [anon_sym_restrict] = ACTIONS(7527), + [anon_sym___restrict__] = ACTIONS(7527), + [anon_sym__Atomic] = ACTIONS(7527), + [anon_sym__Noreturn] = ACTIONS(7527), + [anon_sym_noreturn] = ACTIONS(7527), + [anon_sym__Nonnull] = ACTIONS(7527), + [anon_sym_mutable] = ACTIONS(7527), + [anon_sym_constinit] = ACTIONS(7527), + [anon_sym_consteval] = ACTIONS(7527), + [anon_sym_alignas] = ACTIONS(7527), + [anon_sym__Alignas] = ACTIONS(7527), + [anon_sym_QMARK] = ACTIONS(7529), + [anon_sym_STAR_EQ] = ACTIONS(7529), + [anon_sym_SLASH_EQ] = ACTIONS(7529), + [anon_sym_PERCENT_EQ] = ACTIONS(7529), + [anon_sym_PLUS_EQ] = ACTIONS(7529), + [anon_sym_DASH_EQ] = ACTIONS(7529), + [anon_sym_LT_LT_EQ] = ACTIONS(7529), + [anon_sym_GT_GT_EQ] = ACTIONS(7529), + [anon_sym_AMP_EQ] = ACTIONS(7529), + [anon_sym_CARET_EQ] = ACTIONS(7529), + [anon_sym_PIPE_EQ] = ACTIONS(7529), + [anon_sym_and_eq] = ACTIONS(7527), + [anon_sym_or_eq] = ACTIONS(7527), + [anon_sym_xor_eq] = ACTIONS(7527), + [anon_sym_LT_EQ_GT] = ACTIONS(7529), + [anon_sym_or] = ACTIONS(7527), + [anon_sym_and] = ACTIONS(7527), + [anon_sym_bitor] = ACTIONS(7527), + [anon_sym_xor] = ACTIONS(7527), + [anon_sym_bitand] = ACTIONS(7527), + [anon_sym_not_eq] = ACTIONS(7527), + [anon_sym_DASH_DASH] = ACTIONS(7529), + [anon_sym_PLUS_PLUS] = ACTIONS(7529), + [anon_sym_DOT] = ACTIONS(7527), + [anon_sym_DOT_STAR] = ACTIONS(7529), + [anon_sym_DASH_GT] = ACTIONS(7529), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7527), + [anon_sym_override] = ACTIONS(7527), + [anon_sym_requires] = ACTIONS(7527), + [anon_sym_COLON_RBRACK] = ACTIONS(7529), }, [STATE(2164)] = { - [sym_attribute_specifier] = STATE(2388), - [sym_attribute_declaration] = STATE(4563), - [sym_type_qualifier] = STATE(2337), - [sym_alignas_qualifier] = STATE(2452), - [aux_sym_type_definition_repeat1] = STATE(2388), - [aux_sym__type_definition_type_repeat1] = STATE(2337), - [aux_sym_attributed_declarator_repeat1] = STATE(4563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6752), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6752), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym___extension__] = ACTIONS(6717), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_RBRACK] = ACTIONS(6754), - [anon_sym_EQ] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(6725), - [anon_sym_constexpr] = ACTIONS(6717), - [anon_sym_volatile] = ACTIONS(6717), - [anon_sym_restrict] = ACTIONS(6717), - [anon_sym___restrict__] = ACTIONS(6717), - [anon_sym__Atomic] = ACTIONS(6717), - [anon_sym__Noreturn] = ACTIONS(6717), - [anon_sym_noreturn] = ACTIONS(6717), - [anon_sym__Nonnull] = ACTIONS(6717), - [anon_sym_mutable] = ACTIONS(6717), - [anon_sym_constinit] = ACTIONS(6717), - [anon_sym_consteval] = ACTIONS(6717), - [anon_sym_alignas] = ACTIONS(6727), - [anon_sym__Alignas] = ACTIONS(6727), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_STAR_EQ] = ACTIONS(6754), - [anon_sym_SLASH_EQ] = ACTIONS(6754), - [anon_sym_PERCENT_EQ] = ACTIONS(6754), - [anon_sym_PLUS_EQ] = ACTIONS(6754), - [anon_sym_DASH_EQ] = ACTIONS(6754), - [anon_sym_LT_LT_EQ] = ACTIONS(6754), - [anon_sym_GT_GT_EQ] = ACTIONS(6754), - [anon_sym_AMP_EQ] = ACTIONS(6754), - [anon_sym_CARET_EQ] = ACTIONS(6754), - [anon_sym_PIPE_EQ] = ACTIONS(6754), - [anon_sym_and_eq] = ACTIONS(6754), - [anon_sym_or_eq] = ACTIONS(6754), - [anon_sym_xor_eq] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6752), - [anon_sym_and] = ACTIONS(6752), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6752), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), + [sym_template_argument_list] = STATE(2189), + [sym_identifier] = ACTIONS(6570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_RPAREN] = ACTIONS(6563), + [aux_sym_preproc_if_token2] = ACTIONS(6563), + [aux_sym_preproc_else_token1] = ACTIONS(6563), + [aux_sym_preproc_elif_token1] = ACTIONS(6570), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6563), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6570), + [anon_sym_PLUS] = ACTIONS(6570), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6570), + [anon_sym_PIPE_PIPE] = ACTIONS(6563), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6570), + [anon_sym_CARET] = ACTIONS(6570), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6563), + [anon_sym_BANG_EQ] = ACTIONS(6563), + [anon_sym_GT] = ACTIONS(6570), + [anon_sym_GT_EQ] = ACTIONS(6563), + [anon_sym_LT_EQ] = ACTIONS(6570), + [anon_sym_LT] = ACTIONS(7427), + [anon_sym_LT_LT] = ACTIONS(6570), + [anon_sym_GT_GT] = ACTIONS(6570), + [anon_sym_SEMI] = ACTIONS(6563), + [anon_sym___extension__] = ACTIONS(6559), + [anon_sym___attribute__] = ACTIONS(6570), + [anon_sym___attribute] = ACTIONS(6570), + [anon_sym_COLON] = ACTIONS(6570), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6563), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_RBRACE] = ACTIONS(6563), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6559), + [anon_sym_volatile] = ACTIONS(6559), + [anon_sym_restrict] = ACTIONS(6559), + [anon_sym___restrict__] = ACTIONS(6559), + [anon_sym__Atomic] = ACTIONS(6559), + [anon_sym__Noreturn] = ACTIONS(6559), + [anon_sym_noreturn] = ACTIONS(6559), + [anon_sym__Nonnull] = ACTIONS(6559), + [anon_sym_mutable] = ACTIONS(6559), + [anon_sym_constinit] = ACTIONS(6559), + [anon_sym_consteval] = ACTIONS(6559), + [anon_sym_alignas] = ACTIONS(6559), + [anon_sym__Alignas] = ACTIONS(6559), + [anon_sym_QMARK] = ACTIONS(6563), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6561), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6568), + [anon_sym_or_eq] = ACTIONS(6568), + [anon_sym_xor_eq] = ACTIONS(6568), + [anon_sym_LT_EQ_GT] = ACTIONS(6563), + [anon_sym_or] = ACTIONS(6570), + [anon_sym_and] = ACTIONS(6570), + [anon_sym_bitor] = ACTIONS(6570), + [anon_sym_xor] = ACTIONS(6570), + [anon_sym_bitand] = ACTIONS(6570), + [anon_sym_not_eq] = ACTIONS(6570), + [anon_sym_DASH_DASH] = ACTIONS(6563), + [anon_sym_PLUS_PLUS] = ACTIONS(6563), + [anon_sym_DOT] = ACTIONS(6570), + [anon_sym_DOT_STAR] = ACTIONS(6563), + [anon_sym_DASH_GT] = ACTIONS(6563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6559), + [anon_sym_decltype] = ACTIONS(6559), + [anon_sym_COLON_RBRACK] = ACTIONS(6563), }, [STATE(2165)] = { - [sym_attribute_specifier] = STATE(2236), + [sym_attribute_specifier] = STATE(2234), [sym_identifier] = ACTIONS(7531), [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), [anon_sym_COMMA] = ACTIONS(7533), @@ -328353,8 +328241,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(7531), [anon_sym_SEMI] = ACTIONS(7533), [anon_sym___extension__] = ACTIONS(7531), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), [anon_sym_COLON] = ACTIONS(7531), [anon_sym_RBRACK_RBRACK] = ACTIONS(7533), [anon_sym_LBRACE] = ACTIONS(7533), @@ -328408,218 +328296,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_RBRACK] = ACTIONS(7533), }, [STATE(2166)] = { - [sym_function_definition] = STATE(3355), - [sym_declaration] = STATE(3355), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2708), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(10965), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7535), - [anon_sym_struct] = ACTIONS(7537), - [anon_sym_union] = ACTIONS(7539), - [anon_sym_typename] = ACTIONS(5464), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_identifier] = ACTIONS(7535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7537), + [anon_sym_COMMA] = ACTIONS(7537), + [anon_sym_RPAREN] = ACTIONS(7537), + [aux_sym_preproc_if_token2] = ACTIONS(7537), + [aux_sym_preproc_else_token1] = ACTIONS(7537), + [aux_sym_preproc_elif_token1] = ACTIONS(7535), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7537), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7537), + [anon_sym_LPAREN2] = ACTIONS(7537), + [anon_sym_DASH] = ACTIONS(7535), + [anon_sym_PLUS] = ACTIONS(7535), + [anon_sym_STAR] = ACTIONS(7535), + [anon_sym_SLASH] = ACTIONS(7535), + [anon_sym_PERCENT] = ACTIONS(7535), + [anon_sym_PIPE_PIPE] = ACTIONS(7537), + [anon_sym_AMP_AMP] = ACTIONS(7537), + [anon_sym_PIPE] = ACTIONS(7535), + [anon_sym_CARET] = ACTIONS(7535), + [anon_sym_AMP] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7537), + [anon_sym_BANG_EQ] = ACTIONS(7537), + [anon_sym_GT] = ACTIONS(7535), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_LT_EQ] = ACTIONS(7535), + [anon_sym_LT] = ACTIONS(7535), + [anon_sym_LT_LT] = ACTIONS(7535), + [anon_sym_GT_GT] = ACTIONS(7535), + [anon_sym_SEMI] = ACTIONS(7537), + [anon_sym___extension__] = ACTIONS(7535), + [anon_sym___attribute__] = ACTIONS(7535), + [anon_sym___attribute] = ACTIONS(7535), + [anon_sym_COLON] = ACTIONS(7535), + [anon_sym_COLON_COLON] = ACTIONS(7537), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7537), + [anon_sym_LBRACE] = ACTIONS(7537), + [anon_sym_RBRACE] = ACTIONS(7537), + [anon_sym_LBRACK] = ACTIONS(7537), + [anon_sym_EQ] = ACTIONS(7535), + [anon_sym_const] = ACTIONS(7535), + [anon_sym_constexpr] = ACTIONS(7535), + [anon_sym_volatile] = ACTIONS(7535), + [anon_sym_restrict] = ACTIONS(7535), + [anon_sym___restrict__] = ACTIONS(7535), + [anon_sym__Atomic] = ACTIONS(7535), + [anon_sym__Noreturn] = ACTIONS(7535), + [anon_sym_noreturn] = ACTIONS(7535), + [anon_sym__Nonnull] = ACTIONS(7535), + [anon_sym_mutable] = ACTIONS(7535), + [anon_sym_constinit] = ACTIONS(7535), + [anon_sym_consteval] = ACTIONS(7535), + [anon_sym_alignas] = ACTIONS(7535), + [anon_sym__Alignas] = ACTIONS(7535), + [anon_sym_QMARK] = ACTIONS(7537), + [anon_sym_STAR_EQ] = ACTIONS(7537), + [anon_sym_SLASH_EQ] = ACTIONS(7537), + [anon_sym_PERCENT_EQ] = ACTIONS(7537), + [anon_sym_PLUS_EQ] = ACTIONS(7537), + [anon_sym_DASH_EQ] = ACTIONS(7537), + [anon_sym_LT_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_GT_EQ] = ACTIONS(7537), + [anon_sym_AMP_EQ] = ACTIONS(7537), + [anon_sym_CARET_EQ] = ACTIONS(7537), + [anon_sym_PIPE_EQ] = ACTIONS(7537), + [anon_sym_and_eq] = ACTIONS(7535), + [anon_sym_or_eq] = ACTIONS(7535), + [anon_sym_xor_eq] = ACTIONS(7535), + [anon_sym_LT_EQ_GT] = ACTIONS(7537), + [anon_sym_or] = ACTIONS(7535), + [anon_sym_and] = ACTIONS(7535), + [anon_sym_bitor] = ACTIONS(7535), + [anon_sym_xor] = ACTIONS(7535), + [anon_sym_bitand] = ACTIONS(7535), + [anon_sym_not_eq] = ACTIONS(7535), + [anon_sym_DASH_DASH] = ACTIONS(7537), + [anon_sym_PLUS_PLUS] = ACTIONS(7537), + [anon_sym_DOT] = ACTIONS(7535), + [anon_sym_DOT_STAR] = ACTIONS(7537), + [anon_sym_DASH_GT] = ACTIONS(7537), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7535), + [anon_sym_override] = ACTIONS(7535), + [anon_sym_requires] = ACTIONS(7535), + [anon_sym_COLON_RBRACK] = ACTIONS(7537), }, [STATE(2167)] = { - [sym_template_argument_list] = STATE(2231), - [sym_identifier] = ACTIONS(6576), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_RPAREN] = ACTIONS(6569), - [aux_sym_preproc_if_token2] = ACTIONS(6569), - [aux_sym_preproc_else_token1] = ACTIONS(6569), - [aux_sym_preproc_elif_token1] = ACTIONS(6576), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6569), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6576), - [anon_sym_PLUS] = ACTIONS(6576), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6576), - [anon_sym_PERCENT] = ACTIONS(6576), - [anon_sym_PIPE_PIPE] = ACTIONS(6569), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6576), - [anon_sym_CARET] = ACTIONS(6576), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6569), - [anon_sym_BANG_EQ] = ACTIONS(6569), - [anon_sym_GT] = ACTIONS(6576), - [anon_sym_GT_EQ] = ACTIONS(6569), - [anon_sym_LT_EQ] = ACTIONS(6576), - [anon_sym_LT] = ACTIONS(7401), - [anon_sym_LT_LT] = ACTIONS(6576), - [anon_sym_GT_GT] = ACTIONS(6576), - [anon_sym_SEMI] = ACTIONS(6569), - [anon_sym___extension__] = ACTIONS(6565), - [anon_sym___attribute__] = ACTIONS(6576), - [anon_sym___attribute] = ACTIONS(6576), - [anon_sym_COLON] = ACTIONS(6576), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6569), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_RBRACE] = ACTIONS(6569), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6576), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6565), - [anon_sym_volatile] = ACTIONS(6565), - [anon_sym_restrict] = ACTIONS(6565), - [anon_sym___restrict__] = ACTIONS(6565), - [anon_sym__Atomic] = ACTIONS(6565), - [anon_sym__Noreturn] = ACTIONS(6565), - [anon_sym_noreturn] = ACTIONS(6565), - [anon_sym__Nonnull] = ACTIONS(6565), - [anon_sym_mutable] = ACTIONS(6565), - [anon_sym_constinit] = ACTIONS(6565), - [anon_sym_consteval] = ACTIONS(6565), - [anon_sym_alignas] = ACTIONS(6565), - [anon_sym__Alignas] = ACTIONS(6565), - [anon_sym_QMARK] = ACTIONS(6569), - [anon_sym_STAR_EQ] = ACTIONS(6569), - [anon_sym_SLASH_EQ] = ACTIONS(6569), - [anon_sym_PERCENT_EQ] = ACTIONS(6569), - [anon_sym_PLUS_EQ] = ACTIONS(6569), - [anon_sym_DASH_EQ] = ACTIONS(6569), - [anon_sym_LT_LT_EQ] = ACTIONS(6569), - [anon_sym_GT_GT_EQ] = ACTIONS(6569), - [anon_sym_AMP_EQ] = ACTIONS(6569), - [anon_sym_CARET_EQ] = ACTIONS(6569), - [anon_sym_PIPE_EQ] = ACTIONS(6569), - [anon_sym_and_eq] = ACTIONS(6576), - [anon_sym_or_eq] = ACTIONS(6576), - [anon_sym_xor_eq] = ACTIONS(6576), - [anon_sym_LT_EQ_GT] = ACTIONS(6569), - [anon_sym_or] = ACTIONS(6576), - [anon_sym_and] = ACTIONS(6576), - [anon_sym_bitor] = ACTIONS(6576), - [anon_sym_xor] = ACTIONS(6576), - [anon_sym_bitand] = ACTIONS(6576), - [anon_sym_not_eq] = ACTIONS(6576), - [anon_sym_DASH_DASH] = ACTIONS(6569), - [anon_sym_PLUS_PLUS] = ACTIONS(6569), - [anon_sym_DOT] = ACTIONS(6576), - [anon_sym_DOT_STAR] = ACTIONS(6569), - [anon_sym_DASH_GT] = ACTIONS(6569), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6565), - [anon_sym_decltype] = ACTIONS(6565), - [anon_sym_COLON_RBRACK] = ACTIONS(6569), + [sym_identifier] = ACTIONS(7187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_RPAREN] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_TILDE] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7189), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7189), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7189), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7189), + [anon_sym_GT_GT] = ACTIONS(7189), + [anon_sym_SEMI] = ACTIONS(7189), + [anon_sym___extension__] = ACTIONS(7187), + [anon_sym_virtual] = ACTIONS(7187), + [anon_sym_extern] = ACTIONS(7187), + [anon_sym___attribute__] = ACTIONS(7187), + [anon_sym___attribute] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7189), + [anon_sym___declspec] = ACTIONS(7187), + [anon_sym___based] = ACTIONS(7187), + [anon_sym___cdecl] = ACTIONS(7187), + [anon_sym___clrcall] = ACTIONS(7187), + [anon_sym___stdcall] = ACTIONS(7187), + [anon_sym___fastcall] = ACTIONS(7187), + [anon_sym___thiscall] = ACTIONS(7187), + [anon_sym___vectorcall] = ACTIONS(7187), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_RBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7187), + [anon_sym_static] = ACTIONS(7187), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_register] = ACTIONS(7187), + [anon_sym_inline] = ACTIONS(7187), + [anon_sym___inline] = ACTIONS(7187), + [anon_sym___inline__] = ACTIONS(7187), + [anon_sym___forceinline] = ACTIONS(7187), + [anon_sym_thread_local] = ACTIONS(7187), + [anon_sym___thread] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7187), + [anon_sym_volatile] = ACTIONS(7187), + [anon_sym_restrict] = ACTIONS(7187), + [anon_sym___restrict__] = ACTIONS(7187), + [anon_sym__Atomic] = ACTIONS(7187), + [anon_sym__Noreturn] = ACTIONS(7187), + [anon_sym_noreturn] = ACTIONS(7187), + [anon_sym__Nonnull] = ACTIONS(7187), + [anon_sym_mutable] = ACTIONS(7187), + [anon_sym_constinit] = ACTIONS(7187), + [anon_sym_consteval] = ACTIONS(7187), + [anon_sym_alignas] = ACTIONS(7187), + [anon_sym__Alignas] = ACTIONS(7187), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7187), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7187), + [anon_sym_not_eq] = ACTIONS(7187), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7189), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7187), + [anon_sym_template] = ACTIONS(7187), + [anon_sym_operator] = ACTIONS(7187), + [anon_sym_LBRACK_COLON] = ACTIONS(7189), }, [STATE(2168)] = { - [sym_function_definition] = STATE(3445), - [sym_declaration] = STATE(3445), - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6414), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_ms_call_modifier] = STATE(2708), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym__class_name] = STATE(11052), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(5630), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(5631), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(6019), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(7405), + [sym_attribute_specifier] = STATE(2192), + [sym_identifier] = ACTIONS(7539), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7541), + [anon_sym_COMMA] = ACTIONS(7541), + [anon_sym_RPAREN] = ACTIONS(7541), + [aux_sym_preproc_if_token2] = ACTIONS(7541), + [aux_sym_preproc_else_token1] = ACTIONS(7541), + [aux_sym_preproc_elif_token1] = ACTIONS(7539), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7541), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7541), + [anon_sym_LPAREN2] = ACTIONS(7541), + [anon_sym_DASH] = ACTIONS(7539), + [anon_sym_PLUS] = ACTIONS(7539), + [anon_sym_STAR] = ACTIONS(7539), + [anon_sym_SLASH] = ACTIONS(7539), + [anon_sym_PERCENT] = ACTIONS(7539), + [anon_sym_PIPE_PIPE] = ACTIONS(7541), + [anon_sym_AMP_AMP] = ACTIONS(7541), + [anon_sym_PIPE] = ACTIONS(7539), + [anon_sym_CARET] = ACTIONS(7539), + [anon_sym_AMP] = ACTIONS(7539), + [anon_sym_EQ_EQ] = ACTIONS(7541), + [anon_sym_BANG_EQ] = ACTIONS(7541), + [anon_sym_GT] = ACTIONS(7539), + [anon_sym_GT_EQ] = ACTIONS(7541), + [anon_sym_LT_EQ] = ACTIONS(7539), + [anon_sym_LT] = ACTIONS(7539), + [anon_sym_LT_LT] = ACTIONS(7539), + [anon_sym_GT_GT] = ACTIONS(7539), + [anon_sym_SEMI] = ACTIONS(7541), + [anon_sym___extension__] = ACTIONS(7539), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(7539), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7541), + [anon_sym_LBRACE] = ACTIONS(7541), + [anon_sym_RBRACE] = ACTIONS(7541), + [anon_sym_LBRACK] = ACTIONS(7541), + [anon_sym_EQ] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7539), + [anon_sym_constexpr] = ACTIONS(7539), + [anon_sym_volatile] = ACTIONS(7539), + [anon_sym_restrict] = ACTIONS(7539), + [anon_sym___restrict__] = ACTIONS(7539), + [anon_sym__Atomic] = ACTIONS(7539), + [anon_sym__Noreturn] = ACTIONS(7539), + [anon_sym_noreturn] = ACTIONS(7539), + [anon_sym__Nonnull] = ACTIONS(7539), + [anon_sym_mutable] = ACTIONS(7539), + [anon_sym_constinit] = ACTIONS(7539), + [anon_sym_consteval] = ACTIONS(7539), + [anon_sym_alignas] = ACTIONS(7539), + [anon_sym__Alignas] = ACTIONS(7539), + [anon_sym_QMARK] = ACTIONS(7541), + [anon_sym_STAR_EQ] = ACTIONS(7541), + [anon_sym_SLASH_EQ] = ACTIONS(7541), + [anon_sym_PERCENT_EQ] = ACTIONS(7541), + [anon_sym_PLUS_EQ] = ACTIONS(7541), + [anon_sym_DASH_EQ] = ACTIONS(7541), + [anon_sym_LT_LT_EQ] = ACTIONS(7541), + [anon_sym_GT_GT_EQ] = ACTIONS(7541), + [anon_sym_AMP_EQ] = ACTIONS(7541), + [anon_sym_CARET_EQ] = ACTIONS(7541), + [anon_sym_PIPE_EQ] = ACTIONS(7541), + [anon_sym_and_eq] = ACTIONS(7539), + [anon_sym_or_eq] = ACTIONS(7539), + [anon_sym_xor_eq] = ACTIONS(7539), + [anon_sym_LT_EQ_GT] = ACTIONS(7541), + [anon_sym_or] = ACTIONS(7539), + [anon_sym_and] = ACTIONS(7539), + [anon_sym_bitor] = ACTIONS(7539), + [anon_sym_xor] = ACTIONS(7539), + [anon_sym_bitand] = ACTIONS(7539), + [anon_sym_not_eq] = ACTIONS(7539), + [anon_sym_DASH_DASH] = ACTIONS(7541), + [anon_sym_PLUS_PLUS] = ACTIONS(7541), + [anon_sym_DOT] = ACTIONS(7539), + [anon_sym_DOT_STAR] = ACTIONS(7541), + [anon_sym_DASH_GT] = ACTIONS(7541), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7539), + [anon_sym_override] = ACTIONS(7539), + [anon_sym_requires] = ACTIONS(7539), + [anon_sym_COLON_RBRACK] = ACTIONS(7541), + }, + [STATE(2169)] = { + [sym_function_definition] = STATE(3347), + [sym_declaration] = STATE(3347), + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6382), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_ms_call_modifier] = STATE(2723), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym__class_name] = STATE(11299), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(5572), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(5589), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(5992), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(7391), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym___cdecl] = ACTIONS(55), [anon_sym___clrcall] = ACTIONS(55), @@ -328653,4279 +328627,4103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(7541), - [anon_sym_struct] = ACTIONS(7543), - [anon_sym_union] = ACTIONS(7545), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_class] = ACTIONS(7543), + [anon_sym_struct] = ACTIONS(7545), + [anon_sym_union] = ACTIONS(7547), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2169)] = { - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(2170)] = { - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_RPAREN] = ACTIONS(7090), - [aux_sym_preproc_if_token2] = ACTIONS(7090), - [aux_sym_preproc_else_token1] = ACTIONS(7090), - [aux_sym_preproc_elif_token1] = ACTIONS(7085), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7090), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7085), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7085), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7085), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(7085), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym_SEMI] = ACTIONS(7090), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7090), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7090), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7090), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_and_eq] = ACTIONS(7085), - [anon_sym_or_eq] = ACTIONS(7085), - [anon_sym_xor_eq] = ACTIONS(7085), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7085), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7085), - [anon_sym_not_eq] = ACTIONS(7085), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7085), - [anon_sym_override] = ACTIONS(7085), - [anon_sym_requires] = ACTIONS(7085), - [anon_sym_COLON_RBRACK] = ACTIONS(7090), + [sym_identifier] = ACTIONS(7549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7551), + [anon_sym_COMMA] = ACTIONS(7551), + [anon_sym_RPAREN] = ACTIONS(7551), + [aux_sym_preproc_if_token2] = ACTIONS(7551), + [aux_sym_preproc_else_token1] = ACTIONS(7551), + [aux_sym_preproc_elif_token1] = ACTIONS(7549), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7551), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7551), + [anon_sym_LPAREN2] = ACTIONS(7551), + [anon_sym_DASH] = ACTIONS(7549), + [anon_sym_PLUS] = ACTIONS(7549), + [anon_sym_STAR] = ACTIONS(7549), + [anon_sym_SLASH] = ACTIONS(7549), + [anon_sym_PERCENT] = ACTIONS(7549), + [anon_sym_PIPE_PIPE] = ACTIONS(7551), + [anon_sym_AMP_AMP] = ACTIONS(7551), + [anon_sym_PIPE] = ACTIONS(7549), + [anon_sym_CARET] = ACTIONS(7549), + [anon_sym_AMP] = ACTIONS(7549), + [anon_sym_EQ_EQ] = ACTIONS(7551), + [anon_sym_BANG_EQ] = ACTIONS(7551), + [anon_sym_GT] = ACTIONS(7549), + [anon_sym_GT_EQ] = ACTIONS(7551), + [anon_sym_LT_EQ] = ACTIONS(7549), + [anon_sym_LT] = ACTIONS(7549), + [anon_sym_LT_LT] = ACTIONS(7549), + [anon_sym_GT_GT] = ACTIONS(7549), + [anon_sym_SEMI] = ACTIONS(7551), + [anon_sym___extension__] = ACTIONS(7549), + [anon_sym___attribute__] = ACTIONS(7549), + [anon_sym___attribute] = ACTIONS(7549), + [anon_sym_COLON] = ACTIONS(7549), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7551), + [anon_sym_LBRACE] = ACTIONS(7551), + [anon_sym_RBRACE] = ACTIONS(7551), + [anon_sym_LBRACK] = ACTIONS(7551), + [anon_sym_EQ] = ACTIONS(7549), + [anon_sym_const] = ACTIONS(7549), + [anon_sym_constexpr] = ACTIONS(7549), + [anon_sym_volatile] = ACTIONS(7549), + [anon_sym_restrict] = ACTIONS(7549), + [anon_sym___restrict__] = ACTIONS(7549), + [anon_sym__Atomic] = ACTIONS(7549), + [anon_sym__Noreturn] = ACTIONS(7549), + [anon_sym_noreturn] = ACTIONS(7549), + [anon_sym__Nonnull] = ACTIONS(7549), + [anon_sym_mutable] = ACTIONS(7549), + [anon_sym_constinit] = ACTIONS(7549), + [anon_sym_consteval] = ACTIONS(7549), + [anon_sym_alignas] = ACTIONS(7549), + [anon_sym__Alignas] = ACTIONS(7549), + [anon_sym_QMARK] = ACTIONS(7551), + [anon_sym_STAR_EQ] = ACTIONS(7551), + [anon_sym_SLASH_EQ] = ACTIONS(7551), + [anon_sym_PERCENT_EQ] = ACTIONS(7551), + [anon_sym_PLUS_EQ] = ACTIONS(7551), + [anon_sym_DASH_EQ] = ACTIONS(7551), + [anon_sym_LT_LT_EQ] = ACTIONS(7551), + [anon_sym_GT_GT_EQ] = ACTIONS(7551), + [anon_sym_AMP_EQ] = ACTIONS(7551), + [anon_sym_CARET_EQ] = ACTIONS(7551), + [anon_sym_PIPE_EQ] = ACTIONS(7551), + [anon_sym_and_eq] = ACTIONS(7549), + [anon_sym_or_eq] = ACTIONS(7549), + [anon_sym_xor_eq] = ACTIONS(7549), + [anon_sym_LT_EQ_GT] = ACTIONS(7551), + [anon_sym_or] = ACTIONS(7549), + [anon_sym_and] = ACTIONS(7549), + [anon_sym_bitor] = ACTIONS(7549), + [anon_sym_xor] = ACTIONS(7549), + [anon_sym_bitand] = ACTIONS(7549), + [anon_sym_not_eq] = ACTIONS(7549), + [anon_sym_DASH_DASH] = ACTIONS(7551), + [anon_sym_PLUS_PLUS] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7549), + [anon_sym_DOT_STAR] = ACTIONS(7551), + [anon_sym_DASH_GT] = ACTIONS(7551), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7549), + [anon_sym_override] = ACTIONS(7549), + [anon_sym_requires] = ACTIONS(7549), + [anon_sym_COLON_RBRACK] = ACTIONS(7551), }, [STATE(2171)] = { - [sym_attribute_specifier] = STATE(2192), - [sym_identifier] = ACTIONS(7547), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_RPAREN] = ACTIONS(7549), - [aux_sym_preproc_if_token2] = ACTIONS(7549), - [aux_sym_preproc_else_token1] = ACTIONS(7549), - [aux_sym_preproc_elif_token1] = ACTIONS(7547), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7549), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7549), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7547), - [anon_sym_PLUS] = ACTIONS(7547), - [anon_sym_STAR] = ACTIONS(7547), - [anon_sym_SLASH] = ACTIONS(7547), - [anon_sym_PERCENT] = ACTIONS(7547), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7547), - [anon_sym_CARET] = ACTIONS(7547), - [anon_sym_AMP] = ACTIONS(7547), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7547), - [anon_sym_LT] = ACTIONS(7547), - [anon_sym_LT_LT] = ACTIONS(7547), - [anon_sym_GT_GT] = ACTIONS(7547), - [anon_sym_SEMI] = ACTIONS(7549), - [anon_sym___extension__] = ACTIONS(7547), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7547), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7549), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_RBRACE] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7547), - [anon_sym_const] = ACTIONS(7547), - [anon_sym_constexpr] = ACTIONS(7547), - [anon_sym_volatile] = ACTIONS(7547), - [anon_sym_restrict] = ACTIONS(7547), - [anon_sym___restrict__] = ACTIONS(7547), - [anon_sym__Atomic] = ACTIONS(7547), - [anon_sym__Noreturn] = ACTIONS(7547), - [anon_sym_noreturn] = ACTIONS(7547), - [anon_sym__Nonnull] = ACTIONS(7547), - [anon_sym_mutable] = ACTIONS(7547), - [anon_sym_constinit] = ACTIONS(7547), - [anon_sym_consteval] = ACTIONS(7547), - [anon_sym_alignas] = ACTIONS(7547), - [anon_sym__Alignas] = ACTIONS(7547), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_and_eq] = ACTIONS(7547), - [anon_sym_or_eq] = ACTIONS(7547), - [anon_sym_xor_eq] = ACTIONS(7547), - [anon_sym_LT_EQ_GT] = ACTIONS(7549), - [anon_sym_or] = ACTIONS(7547), - [anon_sym_and] = ACTIONS(7547), - [anon_sym_bitor] = ACTIONS(7547), - [anon_sym_xor] = ACTIONS(7547), - [anon_sym_bitand] = ACTIONS(7547), - [anon_sym_not_eq] = ACTIONS(7547), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7547), - [anon_sym_DOT_STAR] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7547), - [anon_sym_override] = ACTIONS(7547), - [anon_sym_requires] = ACTIONS(7547), - [anon_sym_COLON_RBRACK] = ACTIONS(7549), + [sym_argument_list] = STATE(3931), + [sym_initializer_list] = STATE(3911), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7246), + [anon_sym_or_eq] = ACTIONS(7246), + [anon_sym_xor_eq] = ACTIONS(7246), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), }, [STATE(2172)] = { - [sym_attribute_specifier] = STATE(2184), - [sym_identifier] = ACTIONS(7551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7553), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_RPAREN] = ACTIONS(7553), - [aux_sym_preproc_if_token2] = ACTIONS(7553), - [aux_sym_preproc_else_token1] = ACTIONS(7553), - [aux_sym_preproc_elif_token1] = ACTIONS(7551), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7553), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7553), - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_PERCENT] = ACTIONS(7551), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7553), - [anon_sym_LT_EQ] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7551), - [anon_sym_SEMI] = ACTIONS(7553), - [anon_sym___extension__] = ACTIONS(7551), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(7551), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7553), - [anon_sym_LBRACE] = ACTIONS(7553), - [anon_sym_RBRACE] = ACTIONS(7553), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_const] = ACTIONS(7551), - [anon_sym_constexpr] = ACTIONS(7551), - [anon_sym_volatile] = ACTIONS(7551), - [anon_sym_restrict] = ACTIONS(7551), - [anon_sym___restrict__] = ACTIONS(7551), - [anon_sym__Atomic] = ACTIONS(7551), - [anon_sym__Noreturn] = ACTIONS(7551), - [anon_sym_noreturn] = ACTIONS(7551), - [anon_sym__Nonnull] = ACTIONS(7551), - [anon_sym_mutable] = ACTIONS(7551), - [anon_sym_constinit] = ACTIONS(7551), - [anon_sym_consteval] = ACTIONS(7551), - [anon_sym_alignas] = ACTIONS(7551), - [anon_sym__Alignas] = ACTIONS(7551), - [anon_sym_QMARK] = ACTIONS(7553), - [anon_sym_STAR_EQ] = ACTIONS(7553), - [anon_sym_SLASH_EQ] = ACTIONS(7553), - [anon_sym_PERCENT_EQ] = ACTIONS(7553), - [anon_sym_PLUS_EQ] = ACTIONS(7553), - [anon_sym_DASH_EQ] = ACTIONS(7553), - [anon_sym_LT_LT_EQ] = ACTIONS(7553), - [anon_sym_GT_GT_EQ] = ACTIONS(7553), - [anon_sym_AMP_EQ] = ACTIONS(7553), - [anon_sym_CARET_EQ] = ACTIONS(7553), - [anon_sym_PIPE_EQ] = ACTIONS(7553), - [anon_sym_and_eq] = ACTIONS(7551), - [anon_sym_or_eq] = ACTIONS(7551), - [anon_sym_xor_eq] = ACTIONS(7551), - [anon_sym_LT_EQ_GT] = ACTIONS(7553), - [anon_sym_or] = ACTIONS(7551), - [anon_sym_and] = ACTIONS(7551), - [anon_sym_bitor] = ACTIONS(7551), - [anon_sym_xor] = ACTIONS(7551), - [anon_sym_bitand] = ACTIONS(7551), - [anon_sym_not_eq] = ACTIONS(7551), - [anon_sym_DASH_DASH] = ACTIONS(7553), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7551), - [anon_sym_DOT_STAR] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7553), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7551), - [anon_sym_override] = ACTIONS(7551), - [anon_sym_requires] = ACTIONS(7551), - [anon_sym_COLON_RBRACK] = ACTIONS(7553), + [sym_identifier] = ACTIONS(7556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7558), + [anon_sym_COMMA] = ACTIONS(7558), + [anon_sym_RPAREN] = ACTIONS(7558), + [aux_sym_preproc_if_token2] = ACTIONS(7558), + [aux_sym_preproc_else_token1] = ACTIONS(7558), + [aux_sym_preproc_elif_token1] = ACTIONS(7556), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7558), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7558), + [anon_sym_LPAREN2] = ACTIONS(7558), + [anon_sym_DASH] = ACTIONS(7556), + [anon_sym_PLUS] = ACTIONS(7556), + [anon_sym_STAR] = ACTIONS(7556), + [anon_sym_SLASH] = ACTIONS(7556), + [anon_sym_PERCENT] = ACTIONS(7556), + [anon_sym_PIPE_PIPE] = ACTIONS(7558), + [anon_sym_AMP_AMP] = ACTIONS(7558), + [anon_sym_PIPE] = ACTIONS(7556), + [anon_sym_CARET] = ACTIONS(7556), + [anon_sym_AMP] = ACTIONS(7556), + [anon_sym_EQ_EQ] = ACTIONS(7558), + [anon_sym_BANG_EQ] = ACTIONS(7558), + [anon_sym_GT] = ACTIONS(7556), + [anon_sym_GT_EQ] = ACTIONS(7558), + [anon_sym_LT_EQ] = ACTIONS(7556), + [anon_sym_LT] = ACTIONS(7556), + [anon_sym_LT_LT] = ACTIONS(7556), + [anon_sym_GT_GT] = ACTIONS(7556), + [anon_sym_SEMI] = ACTIONS(7558), + [anon_sym___extension__] = ACTIONS(7556), + [anon_sym___attribute__] = ACTIONS(7556), + [anon_sym___attribute] = ACTIONS(7556), + [anon_sym_COLON] = ACTIONS(7556), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7558), + [anon_sym_LBRACE] = ACTIONS(7558), + [anon_sym_RBRACE] = ACTIONS(7558), + [anon_sym_LBRACK] = ACTIONS(7558), + [anon_sym_EQ] = ACTIONS(7556), + [anon_sym_const] = ACTIONS(7556), + [anon_sym_constexpr] = ACTIONS(7556), + [anon_sym_volatile] = ACTIONS(7556), + [anon_sym_restrict] = ACTIONS(7556), + [anon_sym___restrict__] = ACTIONS(7556), + [anon_sym__Atomic] = ACTIONS(7556), + [anon_sym__Noreturn] = ACTIONS(7556), + [anon_sym_noreturn] = ACTIONS(7556), + [anon_sym__Nonnull] = ACTIONS(7556), + [anon_sym_mutable] = ACTIONS(7556), + [anon_sym_constinit] = ACTIONS(7556), + [anon_sym_consteval] = ACTIONS(7556), + [anon_sym_alignas] = ACTIONS(7556), + [anon_sym__Alignas] = ACTIONS(7556), + [anon_sym_QMARK] = ACTIONS(7558), + [anon_sym_STAR_EQ] = ACTIONS(7558), + [anon_sym_SLASH_EQ] = ACTIONS(7558), + [anon_sym_PERCENT_EQ] = ACTIONS(7558), + [anon_sym_PLUS_EQ] = ACTIONS(7558), + [anon_sym_DASH_EQ] = ACTIONS(7558), + [anon_sym_LT_LT_EQ] = ACTIONS(7558), + [anon_sym_GT_GT_EQ] = ACTIONS(7558), + [anon_sym_AMP_EQ] = ACTIONS(7558), + [anon_sym_CARET_EQ] = ACTIONS(7558), + [anon_sym_PIPE_EQ] = ACTIONS(7558), + [anon_sym_and_eq] = ACTIONS(7556), + [anon_sym_or_eq] = ACTIONS(7556), + [anon_sym_xor_eq] = ACTIONS(7556), + [anon_sym_LT_EQ_GT] = ACTIONS(7558), + [anon_sym_or] = ACTIONS(7556), + [anon_sym_and] = ACTIONS(7556), + [anon_sym_bitor] = ACTIONS(7556), + [anon_sym_xor] = ACTIONS(7556), + [anon_sym_bitand] = ACTIONS(7556), + [anon_sym_not_eq] = ACTIONS(7556), + [anon_sym_DASH_DASH] = ACTIONS(7558), + [anon_sym_PLUS_PLUS] = ACTIONS(7558), + [anon_sym_DOT] = ACTIONS(7556), + [anon_sym_DOT_STAR] = ACTIONS(7558), + [anon_sym_DASH_GT] = ACTIONS(7558), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7556), + [anon_sym_override] = ACTIONS(7556), + [anon_sym_requires] = ACTIONS(7556), + [anon_sym_COLON_RBRACK] = ACTIONS(7558), }, [STATE(2173)] = { - [sym_template_argument_list] = STATE(2053), - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), - [anon_sym_COMMA] = ACTIONS(7097), - [anon_sym_RPAREN] = ACTIONS(7097), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_TILDE] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7092), - [anon_sym_PLUS] = ACTIONS(7092), - [anon_sym_STAR] = ACTIONS(7087), - [anon_sym_SLASH] = ACTIONS(7092), - [anon_sym_PERCENT] = ACTIONS(7097), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7087), - [anon_sym_PIPE] = ACTIONS(7092), - [anon_sym_CARET] = ACTIONS(7097), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7092), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7445), - [anon_sym_LT_LT] = ACTIONS(7097), - [anon_sym_GT_GT] = ACTIONS(7097), - [anon_sym_SEMI] = ACTIONS(7097), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym_virtual] = ACTIONS(7085), - [anon_sym_extern] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), - [anon_sym___declspec] = ACTIONS(7085), - [anon_sym___based] = ACTIONS(7085), - [anon_sym___cdecl] = ACTIONS(7085), - [anon_sym___clrcall] = ACTIONS(7085), - [anon_sym___stdcall] = ACTIONS(7085), - [anon_sym___fastcall] = ACTIONS(7085), - [anon_sym___thiscall] = ACTIONS(7085), - [anon_sym___vectorcall] = ACTIONS(7085), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7097), - [anon_sym_LBRACK] = ACTIONS(7094), - [anon_sym_static] = ACTIONS(7085), - [anon_sym_register] = ACTIONS(7085), - [anon_sym_inline] = ACTIONS(7085), - [anon_sym___inline] = ACTIONS(7085), - [anon_sym___inline__] = ACTIONS(7085), - [anon_sym___forceinline] = ACTIONS(7085), - [anon_sym_thread_local] = ACTIONS(7085), - [anon_sym___thread] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7092), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_bitor] = ACTIONS(7092), - [anon_sym_xor] = ACTIONS(7092), - [anon_sym_bitand] = ACTIONS(7092), - [anon_sym_not_eq] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7092), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7097), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7085), - [anon_sym_template] = ACTIONS(7085), - [anon_sym_operator] = ACTIONS(7085), - [anon_sym_LBRACK_COLON] = ACTIONS(7090), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7246), + [anon_sym_or_eq] = ACTIONS(7246), + [anon_sym_xor_eq] = ACTIONS(7246), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7246), + [anon_sym_override] = ACTIONS(7246), + [anon_sym_requires] = ACTIONS(7246), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), }, [STATE(2174)] = { - [sym_identifier] = ACTIONS(7104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), - [anon_sym_COMMA] = ACTIONS(7106), - [anon_sym_RPAREN] = ACTIONS(7106), - [aux_sym_preproc_if_token2] = ACTIONS(7106), - [aux_sym_preproc_else_token1] = ACTIONS(7106), - [aux_sym_preproc_elif_token1] = ACTIONS(7104), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7106), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7106), - [anon_sym_LPAREN2] = ACTIONS(7106), - [anon_sym_DASH] = ACTIONS(7104), - [anon_sym_PLUS] = ACTIONS(7104), - [anon_sym_STAR] = ACTIONS(7104), - [anon_sym_SLASH] = ACTIONS(7104), - [anon_sym_PERCENT] = ACTIONS(7104), - [anon_sym_PIPE_PIPE] = ACTIONS(7106), - [anon_sym_AMP_AMP] = ACTIONS(7106), - [anon_sym_PIPE] = ACTIONS(7104), - [anon_sym_CARET] = ACTIONS(7104), - [anon_sym_AMP] = ACTIONS(7104), - [anon_sym_EQ_EQ] = ACTIONS(7106), - [anon_sym_BANG_EQ] = ACTIONS(7106), - [anon_sym_GT] = ACTIONS(7104), - [anon_sym_GT_EQ] = ACTIONS(7106), - [anon_sym_LT_EQ] = ACTIONS(7104), - [anon_sym_LT] = ACTIONS(7104), - [anon_sym_LT_LT] = ACTIONS(7104), - [anon_sym_GT_GT] = ACTIONS(7104), - [anon_sym_SEMI] = ACTIONS(7106), - [anon_sym___extension__] = ACTIONS(7104), - [anon_sym___attribute__] = ACTIONS(7104), - [anon_sym___attribute] = ACTIONS(7104), - [anon_sym_COLON] = ACTIONS(7104), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7106), - [anon_sym_LBRACE] = ACTIONS(7106), - [anon_sym_RBRACE] = ACTIONS(7106), - [anon_sym_LBRACK] = ACTIONS(7106), - [anon_sym_EQ] = ACTIONS(7104), - [anon_sym_const] = ACTIONS(7104), - [anon_sym_constexpr] = ACTIONS(7104), - [anon_sym_volatile] = ACTIONS(7104), - [anon_sym_restrict] = ACTIONS(7104), - [anon_sym___restrict__] = ACTIONS(7104), - [anon_sym__Atomic] = ACTIONS(7104), - [anon_sym__Noreturn] = ACTIONS(7104), - [anon_sym_noreturn] = ACTIONS(7104), - [anon_sym__Nonnull] = ACTIONS(7104), - [anon_sym_mutable] = ACTIONS(7104), - [anon_sym_constinit] = ACTIONS(7104), - [anon_sym_consteval] = ACTIONS(7104), - [anon_sym_alignas] = ACTIONS(7104), - [anon_sym__Alignas] = ACTIONS(7104), - [anon_sym_QMARK] = ACTIONS(7106), - [anon_sym_STAR_EQ] = ACTIONS(7106), - [anon_sym_SLASH_EQ] = ACTIONS(7106), - [anon_sym_PERCENT_EQ] = ACTIONS(7106), - [anon_sym_PLUS_EQ] = ACTIONS(7106), - [anon_sym_DASH_EQ] = ACTIONS(7106), - [anon_sym_LT_LT_EQ] = ACTIONS(7106), - [anon_sym_GT_GT_EQ] = ACTIONS(7106), - [anon_sym_AMP_EQ] = ACTIONS(7106), - [anon_sym_CARET_EQ] = ACTIONS(7106), - [anon_sym_PIPE_EQ] = ACTIONS(7106), - [anon_sym_and_eq] = ACTIONS(7104), - [anon_sym_or_eq] = ACTIONS(7104), - [anon_sym_xor_eq] = ACTIONS(7104), - [anon_sym_LT_EQ_GT] = ACTIONS(7106), - [anon_sym_or] = ACTIONS(7104), - [anon_sym_and] = ACTIONS(7104), - [anon_sym_bitor] = ACTIONS(7104), - [anon_sym_xor] = ACTIONS(7104), - [anon_sym_bitand] = ACTIONS(7104), - [anon_sym_not_eq] = ACTIONS(7104), - [anon_sym_DASH_DASH] = ACTIONS(7106), - [anon_sym_PLUS_PLUS] = ACTIONS(7106), - [anon_sym_DOT] = ACTIONS(7104), - [anon_sym_DOT_STAR] = ACTIONS(7106), - [anon_sym_DASH_GT] = ACTIONS(7106), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7104), - [anon_sym_override] = ACTIONS(7104), - [anon_sym_requires] = ACTIONS(7104), - [anon_sym_COLON_RBRACK] = ACTIONS(7106), + [sym_argument_list] = STATE(3823), + [sym_initializer_list] = STATE(3880), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7246), + [anon_sym_or_eq] = ACTIONS(7246), + [anon_sym_xor_eq] = ACTIONS(7246), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), }, [STATE(2175)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2213), - [sym_identifier] = ACTIONS(7555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), - [anon_sym_COMMA] = ACTIONS(7557), - [aux_sym_preproc_if_token2] = ACTIONS(7557), - [aux_sym_preproc_else_token1] = ACTIONS(7557), - [aux_sym_preproc_elif_token1] = ACTIONS(7555), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7557), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7557), - [anon_sym_LPAREN2] = ACTIONS(7557), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_STAR] = ACTIONS(7555), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_PERCENT] = ACTIONS(7555), - [anon_sym_PIPE_PIPE] = ACTIONS(7557), - [anon_sym_AMP_AMP] = ACTIONS(7557), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_CARET] = ACTIONS(7555), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_EQ_EQ] = ACTIONS(7557), - [anon_sym_BANG_EQ] = ACTIONS(7557), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7557), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_LT_LT] = ACTIONS(7555), - [anon_sym_GT_GT] = ACTIONS(7555), - [anon_sym___extension__] = ACTIONS(7555), - [anon_sym___attribute__] = ACTIONS(7555), - [anon_sym___attribute] = ACTIONS(7555), - [anon_sym_LBRACE] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(7559), - [anon_sym_unsigned] = ACTIONS(7559), - [anon_sym_long] = ACTIONS(7559), - [anon_sym_short] = ACTIONS(7559), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_RBRACK] = ACTIONS(7557), - [anon_sym_EQ] = ACTIONS(7555), - [anon_sym_const] = ACTIONS(7555), - [anon_sym_constexpr] = ACTIONS(7555), - [anon_sym_volatile] = ACTIONS(7555), - [anon_sym_restrict] = ACTIONS(7555), - [anon_sym___restrict__] = ACTIONS(7555), - [anon_sym__Atomic] = ACTIONS(7555), - [anon_sym__Noreturn] = ACTIONS(7555), - [anon_sym_noreturn] = ACTIONS(7555), - [anon_sym__Nonnull] = ACTIONS(7555), - [anon_sym_mutable] = ACTIONS(7555), - [anon_sym_constinit] = ACTIONS(7555), - [anon_sym_consteval] = ACTIONS(7555), - [anon_sym_alignas] = ACTIONS(7555), - [anon_sym__Alignas] = ACTIONS(7555), - [anon_sym_QMARK] = ACTIONS(7557), - [anon_sym_STAR_EQ] = ACTIONS(7557), - [anon_sym_SLASH_EQ] = ACTIONS(7557), - [anon_sym_PERCENT_EQ] = ACTIONS(7557), - [anon_sym_PLUS_EQ] = ACTIONS(7557), - [anon_sym_DASH_EQ] = ACTIONS(7557), - [anon_sym_LT_LT_EQ] = ACTIONS(7557), - [anon_sym_GT_GT_EQ] = ACTIONS(7557), - [anon_sym_AMP_EQ] = ACTIONS(7557), - [anon_sym_CARET_EQ] = ACTIONS(7557), - [anon_sym_PIPE_EQ] = ACTIONS(7557), - [anon_sym_and_eq] = ACTIONS(7555), - [anon_sym_or_eq] = ACTIONS(7555), - [anon_sym_xor_eq] = ACTIONS(7555), - [anon_sym_LT_EQ_GT] = ACTIONS(7557), - [anon_sym_or] = ACTIONS(7555), - [anon_sym_and] = ACTIONS(7555), - [anon_sym_bitor] = ACTIONS(7555), - [anon_sym_xor] = ACTIONS(7555), - [anon_sym_bitand] = ACTIONS(7555), - [anon_sym_not_eq] = ACTIONS(7555), - [anon_sym_DASH_DASH] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7557), - [anon_sym_DOT] = ACTIONS(7555), - [anon_sym_DOT_STAR] = ACTIONS(7557), - [anon_sym_DASH_GT] = ACTIONS(7557), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7555), - [anon_sym_override] = ACTIONS(7555), - [anon_sym_requires] = ACTIONS(7555), + [aux_sym_sized_type_specifier_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(7560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7562), + [anon_sym_COMMA] = ACTIONS(7562), + [aux_sym_preproc_if_token2] = ACTIONS(7562), + [aux_sym_preproc_else_token1] = ACTIONS(7562), + [aux_sym_preproc_elif_token1] = ACTIONS(7560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7562), + [anon_sym_LPAREN2] = ACTIONS(7562), + [anon_sym_DASH] = ACTIONS(7560), + [anon_sym_PLUS] = ACTIONS(7560), + [anon_sym_STAR] = ACTIONS(7560), + [anon_sym_SLASH] = ACTIONS(7560), + [anon_sym_PERCENT] = ACTIONS(7560), + [anon_sym_PIPE_PIPE] = ACTIONS(7562), + [anon_sym_AMP_AMP] = ACTIONS(7562), + [anon_sym_PIPE] = ACTIONS(7560), + [anon_sym_CARET] = ACTIONS(7560), + [anon_sym_AMP] = ACTIONS(7560), + [anon_sym_EQ_EQ] = ACTIONS(7562), + [anon_sym_BANG_EQ] = ACTIONS(7562), + [anon_sym_GT] = ACTIONS(7560), + [anon_sym_GT_EQ] = ACTIONS(7562), + [anon_sym_LT_EQ] = ACTIONS(7560), + [anon_sym_LT] = ACTIONS(7560), + [anon_sym_LT_LT] = ACTIONS(7560), + [anon_sym_GT_GT] = ACTIONS(7560), + [anon_sym___extension__] = ACTIONS(7560), + [anon_sym___attribute__] = ACTIONS(7560), + [anon_sym___attribute] = ACTIONS(7560), + [anon_sym_LBRACE] = ACTIONS(7562), + [anon_sym_signed] = ACTIONS(7564), + [anon_sym_unsigned] = ACTIONS(7564), + [anon_sym_long] = ACTIONS(7564), + [anon_sym_short] = ACTIONS(7564), + [anon_sym_LBRACK] = ACTIONS(7562), + [anon_sym_RBRACK] = ACTIONS(7562), + [anon_sym_EQ] = ACTIONS(7560), + [anon_sym_const] = ACTIONS(7560), + [anon_sym_constexpr] = ACTIONS(7560), + [anon_sym_volatile] = ACTIONS(7560), + [anon_sym_restrict] = ACTIONS(7560), + [anon_sym___restrict__] = ACTIONS(7560), + [anon_sym__Atomic] = ACTIONS(7560), + [anon_sym__Noreturn] = ACTIONS(7560), + [anon_sym_noreturn] = ACTIONS(7560), + [anon_sym__Nonnull] = ACTIONS(7560), + [anon_sym_mutable] = ACTIONS(7560), + [anon_sym_constinit] = ACTIONS(7560), + [anon_sym_consteval] = ACTIONS(7560), + [anon_sym_alignas] = ACTIONS(7560), + [anon_sym__Alignas] = ACTIONS(7560), + [anon_sym_QMARK] = ACTIONS(7562), + [anon_sym_STAR_EQ] = ACTIONS(7562), + [anon_sym_SLASH_EQ] = ACTIONS(7562), + [anon_sym_PERCENT_EQ] = ACTIONS(7562), + [anon_sym_PLUS_EQ] = ACTIONS(7562), + [anon_sym_DASH_EQ] = ACTIONS(7562), + [anon_sym_LT_LT_EQ] = ACTIONS(7562), + [anon_sym_GT_GT_EQ] = ACTIONS(7562), + [anon_sym_AMP_EQ] = ACTIONS(7562), + [anon_sym_CARET_EQ] = ACTIONS(7562), + [anon_sym_PIPE_EQ] = ACTIONS(7562), + [anon_sym_and_eq] = ACTIONS(7560), + [anon_sym_or_eq] = ACTIONS(7560), + [anon_sym_xor_eq] = ACTIONS(7560), + [anon_sym_LT_EQ_GT] = ACTIONS(7562), + [anon_sym_or] = ACTIONS(7560), + [anon_sym_and] = ACTIONS(7560), + [anon_sym_bitor] = ACTIONS(7560), + [anon_sym_xor] = ACTIONS(7560), + [anon_sym_bitand] = ACTIONS(7560), + [anon_sym_not_eq] = ACTIONS(7560), + [anon_sym_DASH_DASH] = ACTIONS(7562), + [anon_sym_PLUS_PLUS] = ACTIONS(7562), + [anon_sym_DOT] = ACTIONS(7560), + [anon_sym_DOT_STAR] = ACTIONS(7562), + [anon_sym_DASH_GT] = ACTIONS(7562), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7560), + [anon_sym_override] = ACTIONS(7560), + [anon_sym_requires] = ACTIONS(7560), }, [STATE(2176)] = { - [sym_identifier] = ACTIONS(7561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [aux_sym_preproc_if_token2] = ACTIONS(7563), - [aux_sym_preproc_else_token1] = ACTIONS(7563), - [aux_sym_preproc_elif_token1] = ACTIONS(7561), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7563), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym_SEMI] = ACTIONS(7563), - [anon_sym___extension__] = ACTIONS(7561), - [anon_sym___attribute__] = ACTIONS(7561), - [anon_sym___attribute] = ACTIONS(7561), - [anon_sym_COLON] = ACTIONS(7561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_RBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7561), - [anon_sym_volatile] = ACTIONS(7561), - [anon_sym_restrict] = ACTIONS(7561), - [anon_sym___restrict__] = ACTIONS(7561), - [anon_sym__Atomic] = ACTIONS(7561), - [anon_sym__Noreturn] = ACTIONS(7561), - [anon_sym_noreturn] = ACTIONS(7561), - [anon_sym__Nonnull] = ACTIONS(7561), - [anon_sym_mutable] = ACTIONS(7561), - [anon_sym_constinit] = ACTIONS(7561), - [anon_sym_consteval] = ACTIONS(7561), - [anon_sym_alignas] = ACTIONS(7561), - [anon_sym__Alignas] = ACTIONS(7561), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7561), - [anon_sym_or_eq] = ACTIONS(7561), - [anon_sym_xor_eq] = ACTIONS(7561), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7561), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7561), - [anon_sym_not_eq] = ACTIONS(7561), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7561), - [anon_sym_override] = ACTIONS(7561), - [anon_sym_requires] = ACTIONS(7561), - [anon_sym_COLON_RBRACK] = ACTIONS(7563), + [sym_ms_unaligned_ptr_modifier] = STATE(2939), + [sym_ms_pointer_modifier] = STATE(2220), + [sym__abstract_declarator] = STATE(5829), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2641), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2641), + [aux_sym_pointer_declarator_repeat1] = STATE(2220), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6819), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6819), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6819), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(7299), + [sym_ms_restrict_modifier] = ACTIONS(7301), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7303), + [sym_ms_signed_ptr_modifier] = ACTIONS(7303), + [anon_sym__unaligned] = ACTIONS(7305), + [anon_sym___unaligned] = ACTIONS(7305), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(6819), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_STAR_EQ] = ACTIONS(6815), + [anon_sym_SLASH_EQ] = ACTIONS(6815), + [anon_sym_PERCENT_EQ] = ACTIONS(6815), + [anon_sym_PLUS_EQ] = ACTIONS(6815), + [anon_sym_DASH_EQ] = ACTIONS(6815), + [anon_sym_LT_LT_EQ] = ACTIONS(6815), + [anon_sym_GT_GT_EQ] = ACTIONS(6815), + [anon_sym_AMP_EQ] = ACTIONS(6815), + [anon_sym_CARET_EQ] = ACTIONS(6815), + [anon_sym_PIPE_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6815), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6819), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6815), }, [STATE(2177)] = { - [sym_identifier] = ACTIONS(7565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), - [anon_sym_COMMA] = ACTIONS(7567), - [anon_sym_RPAREN] = ACTIONS(7567), - [aux_sym_preproc_if_token2] = ACTIONS(7567), - [aux_sym_preproc_else_token1] = ACTIONS(7567), - [aux_sym_preproc_elif_token1] = ACTIONS(7565), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7567), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7567), - [anon_sym_LPAREN2] = ACTIONS(7567), - [anon_sym_DASH] = ACTIONS(7565), - [anon_sym_PLUS] = ACTIONS(7565), - [anon_sym_STAR] = ACTIONS(7565), - [anon_sym_SLASH] = ACTIONS(7565), - [anon_sym_PERCENT] = ACTIONS(7565), - [anon_sym_PIPE_PIPE] = ACTIONS(7567), - [anon_sym_AMP_AMP] = ACTIONS(7567), - [anon_sym_PIPE] = ACTIONS(7565), - [anon_sym_CARET] = ACTIONS(7565), - [anon_sym_AMP] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7567), - [anon_sym_BANG_EQ] = ACTIONS(7567), - [anon_sym_GT] = ACTIONS(7565), - [anon_sym_GT_EQ] = ACTIONS(7567), - [anon_sym_LT_EQ] = ACTIONS(7565), - [anon_sym_LT] = ACTIONS(7565), - [anon_sym_LT_LT] = ACTIONS(7565), - [anon_sym_GT_GT] = ACTIONS(7565), - [anon_sym_SEMI] = ACTIONS(7567), - [anon_sym___extension__] = ACTIONS(7565), - [anon_sym___attribute__] = ACTIONS(7565), - [anon_sym___attribute] = ACTIONS(7565), - [anon_sym_COLON] = ACTIONS(7565), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7567), - [anon_sym_LBRACE] = ACTIONS(7567), - [anon_sym_RBRACE] = ACTIONS(7567), - [anon_sym_LBRACK] = ACTIONS(7567), - [anon_sym_EQ] = ACTIONS(7565), - [anon_sym_const] = ACTIONS(7565), - [anon_sym_constexpr] = ACTIONS(7565), - [anon_sym_volatile] = ACTIONS(7565), - [anon_sym_restrict] = ACTIONS(7565), - [anon_sym___restrict__] = ACTIONS(7565), - [anon_sym__Atomic] = ACTIONS(7565), - [anon_sym__Noreturn] = ACTIONS(7565), - [anon_sym_noreturn] = ACTIONS(7565), - [anon_sym__Nonnull] = ACTIONS(7565), - [anon_sym_mutable] = ACTIONS(7565), - [anon_sym_constinit] = ACTIONS(7565), - [anon_sym_consteval] = ACTIONS(7565), - [anon_sym_alignas] = ACTIONS(7565), - [anon_sym__Alignas] = ACTIONS(7565), - [anon_sym_QMARK] = ACTIONS(7567), - [anon_sym_STAR_EQ] = ACTIONS(7567), - [anon_sym_SLASH_EQ] = ACTIONS(7567), - [anon_sym_PERCENT_EQ] = ACTIONS(7567), - [anon_sym_PLUS_EQ] = ACTIONS(7567), - [anon_sym_DASH_EQ] = ACTIONS(7567), - [anon_sym_LT_LT_EQ] = ACTIONS(7567), - [anon_sym_GT_GT_EQ] = ACTIONS(7567), - [anon_sym_AMP_EQ] = ACTIONS(7567), - [anon_sym_CARET_EQ] = ACTIONS(7567), - [anon_sym_PIPE_EQ] = ACTIONS(7567), - [anon_sym_and_eq] = ACTIONS(7565), - [anon_sym_or_eq] = ACTIONS(7565), - [anon_sym_xor_eq] = ACTIONS(7565), - [anon_sym_LT_EQ_GT] = ACTIONS(7567), - [anon_sym_or] = ACTIONS(7565), - [anon_sym_and] = ACTIONS(7565), - [anon_sym_bitor] = ACTIONS(7565), - [anon_sym_xor] = ACTIONS(7565), - [anon_sym_bitand] = ACTIONS(7565), - [anon_sym_not_eq] = ACTIONS(7565), - [anon_sym_DASH_DASH] = ACTIONS(7567), - [anon_sym_PLUS_PLUS] = ACTIONS(7567), - [anon_sym_DOT] = ACTIONS(7565), - [anon_sym_DOT_STAR] = ACTIONS(7567), - [anon_sym_DASH_GT] = ACTIONS(7567), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7565), - [anon_sym_override] = ACTIONS(7565), - [anon_sym_requires] = ACTIONS(7565), - [anon_sym_COLON_RBRACK] = ACTIONS(7567), + [sym_type_qualifier] = STATE(2191), + [sym_alignas_qualifier] = STATE(2365), + [aux_sym__type_definition_type_repeat1] = STATE(2191), + [aux_sym_sized_type_specifier_repeat1] = STATE(2324), + [sym_identifier] = ACTIONS(7572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_RPAREN] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(7574), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(7577), + [anon_sym_unsigned] = ACTIONS(7577), + [anon_sym_long] = ACTIONS(7577), + [anon_sym_short] = ACTIONS(7577), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(7574), + [anon_sym_constexpr] = ACTIONS(7574), + [anon_sym_volatile] = ACTIONS(7574), + [anon_sym_restrict] = ACTIONS(7574), + [anon_sym___restrict__] = ACTIONS(7574), + [anon_sym__Atomic] = ACTIONS(7574), + [anon_sym__Noreturn] = ACTIONS(7574), + [anon_sym_noreturn] = ACTIONS(7574), + [anon_sym__Nonnull] = ACTIONS(7574), + [anon_sym_mutable] = ACTIONS(7574), + [anon_sym_constinit] = ACTIONS(7574), + [anon_sym_consteval] = ACTIONS(7574), + [anon_sym_alignas] = ACTIONS(7579), + [anon_sym__Alignas] = ACTIONS(7579), + [sym_primitive_type] = ACTIONS(7582), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7211), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), + [anon_sym_DASH_GT_STAR] = ACTIONS(7209), }, [STATE(2178)] = { - [sym_identifier] = ACTIONS(7569), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), - [anon_sym_COMMA] = ACTIONS(7571), - [anon_sym_RPAREN] = ACTIONS(7571), - [aux_sym_preproc_if_token2] = ACTIONS(7571), - [aux_sym_preproc_else_token1] = ACTIONS(7571), - [aux_sym_preproc_elif_token1] = ACTIONS(7569), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7571), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7571), - [anon_sym_LPAREN2] = ACTIONS(7571), - [anon_sym_DASH] = ACTIONS(7569), - [anon_sym_PLUS] = ACTIONS(7569), - [anon_sym_STAR] = ACTIONS(7569), - [anon_sym_SLASH] = ACTIONS(7569), - [anon_sym_PERCENT] = ACTIONS(7569), - [anon_sym_PIPE_PIPE] = ACTIONS(7571), - [anon_sym_AMP_AMP] = ACTIONS(7571), - [anon_sym_PIPE] = ACTIONS(7569), - [anon_sym_CARET] = ACTIONS(7569), - [anon_sym_AMP] = ACTIONS(7569), - [anon_sym_EQ_EQ] = ACTIONS(7571), - [anon_sym_BANG_EQ] = ACTIONS(7571), - [anon_sym_GT] = ACTIONS(7569), - [anon_sym_GT_EQ] = ACTIONS(7571), - [anon_sym_LT_EQ] = ACTIONS(7569), - [anon_sym_LT] = ACTIONS(7569), - [anon_sym_LT_LT] = ACTIONS(7569), - [anon_sym_GT_GT] = ACTIONS(7569), - [anon_sym_SEMI] = ACTIONS(7571), - [anon_sym___extension__] = ACTIONS(7569), - [anon_sym___attribute__] = ACTIONS(7569), - [anon_sym___attribute] = ACTIONS(7569), - [anon_sym_COLON] = ACTIONS(7569), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7571), - [anon_sym_LBRACE] = ACTIONS(7571), - [anon_sym_RBRACE] = ACTIONS(7571), - [anon_sym_LBRACK] = ACTIONS(7571), - [anon_sym_EQ] = ACTIONS(7569), - [anon_sym_const] = ACTIONS(7569), - [anon_sym_constexpr] = ACTIONS(7569), - [anon_sym_volatile] = ACTIONS(7569), - [anon_sym_restrict] = ACTIONS(7569), - [anon_sym___restrict__] = ACTIONS(7569), - [anon_sym__Atomic] = ACTIONS(7569), - [anon_sym__Noreturn] = ACTIONS(7569), - [anon_sym_noreturn] = ACTIONS(7569), - [anon_sym__Nonnull] = ACTIONS(7569), - [anon_sym_mutable] = ACTIONS(7569), - [anon_sym_constinit] = ACTIONS(7569), - [anon_sym_consteval] = ACTIONS(7569), - [anon_sym_alignas] = ACTIONS(7569), - [anon_sym__Alignas] = ACTIONS(7569), - [anon_sym_QMARK] = ACTIONS(7571), - [anon_sym_STAR_EQ] = ACTIONS(7571), - [anon_sym_SLASH_EQ] = ACTIONS(7571), - [anon_sym_PERCENT_EQ] = ACTIONS(7571), - [anon_sym_PLUS_EQ] = ACTIONS(7571), - [anon_sym_DASH_EQ] = ACTIONS(7571), - [anon_sym_LT_LT_EQ] = ACTIONS(7571), - [anon_sym_GT_GT_EQ] = ACTIONS(7571), - [anon_sym_AMP_EQ] = ACTIONS(7571), - [anon_sym_CARET_EQ] = ACTIONS(7571), - [anon_sym_PIPE_EQ] = ACTIONS(7571), - [anon_sym_and_eq] = ACTIONS(7569), - [anon_sym_or_eq] = ACTIONS(7569), - [anon_sym_xor_eq] = ACTIONS(7569), - [anon_sym_LT_EQ_GT] = ACTIONS(7571), - [anon_sym_or] = ACTIONS(7569), - [anon_sym_and] = ACTIONS(7569), - [anon_sym_bitor] = ACTIONS(7569), - [anon_sym_xor] = ACTIONS(7569), - [anon_sym_bitand] = ACTIONS(7569), - [anon_sym_not_eq] = ACTIONS(7569), - [anon_sym_DASH_DASH] = ACTIONS(7571), - [anon_sym_PLUS_PLUS] = ACTIONS(7571), - [anon_sym_DOT] = ACTIONS(7569), - [anon_sym_DOT_STAR] = ACTIONS(7571), - [anon_sym_DASH_GT] = ACTIONS(7571), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7569), - [anon_sym_override] = ACTIONS(7569), - [anon_sym_requires] = ACTIONS(7569), - [anon_sym_COLON_RBRACK] = ACTIONS(7571), + [aux_sym_sized_type_specifier_repeat1] = STATE(2197), + [sym_identifier] = ACTIONS(7584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [aux_sym_preproc_if_token2] = ACTIONS(7586), + [aux_sym_preproc_else_token1] = ACTIONS(7586), + [aux_sym_preproc_elif_token1] = ACTIONS(7584), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7586), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7584), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7584), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7584), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7584), + [anon_sym_GT_GT] = ACTIONS(7584), + [anon_sym___extension__] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7584), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_signed] = ACTIONS(7588), + [anon_sym_unsigned] = ACTIONS(7588), + [anon_sym_long] = ACTIONS(7588), + [anon_sym_short] = ACTIONS(7588), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_RBRACK] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7584), + [anon_sym_volatile] = ACTIONS(7584), + [anon_sym_restrict] = ACTIONS(7584), + [anon_sym___restrict__] = ACTIONS(7584), + [anon_sym__Atomic] = ACTIONS(7584), + [anon_sym__Noreturn] = ACTIONS(7584), + [anon_sym_noreturn] = ACTIONS(7584), + [anon_sym__Nonnull] = ACTIONS(7584), + [anon_sym_mutable] = ACTIONS(7584), + [anon_sym_constinit] = ACTIONS(7584), + [anon_sym_consteval] = ACTIONS(7584), + [anon_sym_alignas] = ACTIONS(7584), + [anon_sym__Alignas] = ACTIONS(7584), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_STAR_EQ] = ACTIONS(7586), + [anon_sym_SLASH_EQ] = ACTIONS(7586), + [anon_sym_PERCENT_EQ] = ACTIONS(7586), + [anon_sym_PLUS_EQ] = ACTIONS(7586), + [anon_sym_DASH_EQ] = ACTIONS(7586), + [anon_sym_LT_LT_EQ] = ACTIONS(7586), + [anon_sym_GT_GT_EQ] = ACTIONS(7586), + [anon_sym_AMP_EQ] = ACTIONS(7586), + [anon_sym_CARET_EQ] = ACTIONS(7586), + [anon_sym_PIPE_EQ] = ACTIONS(7586), + [anon_sym_and_eq] = ACTIONS(7584), + [anon_sym_or_eq] = ACTIONS(7584), + [anon_sym_xor_eq] = ACTIONS(7584), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7584), + [anon_sym_and] = ACTIONS(7584), + [anon_sym_bitor] = ACTIONS(7584), + [anon_sym_xor] = ACTIONS(7584), + [anon_sym_bitand] = ACTIONS(7584), + [anon_sym_not_eq] = ACTIONS(7584), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7586), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7584), + [anon_sym_override] = ACTIONS(7584), + [anon_sym_requires] = ACTIONS(7584), }, [STATE(2179)] = { - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [aux_sym_sized_type_specifier_repeat1] = STATE(2217), - [sym_identifier] = ACTIONS(7334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [aux_sym_preproc_if_token2] = ACTIONS(7205), - [aux_sym_preproc_else_token1] = ACTIONS(7205), - [aux_sym_preproc_elif_token1] = ACTIONS(7207), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7205), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(6855), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(7337), - [anon_sym_unsigned] = ACTIONS(7337), - [anon_sym_long] = ACTIONS(7337), - [anon_sym_short] = ACTIONS(7337), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6855), - [anon_sym_volatile] = ACTIONS(6855), - [anon_sym_restrict] = ACTIONS(6855), - [anon_sym___restrict__] = ACTIONS(6855), - [anon_sym__Atomic] = ACTIONS(6855), - [anon_sym__Noreturn] = ACTIONS(6855), - [anon_sym_noreturn] = ACTIONS(6855), - [anon_sym__Nonnull] = ACTIONS(6855), - [anon_sym_mutable] = ACTIONS(6855), - [anon_sym_constinit] = ACTIONS(6855), - [anon_sym_consteval] = ACTIONS(6855), - [anon_sym_alignas] = ACTIONS(7485), - [anon_sym__Alignas] = ACTIONS(7485), - [sym_primitive_type] = ACTIONS(7339), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(7590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7592), + [anon_sym_COMMA] = ACTIONS(7592), + [anon_sym_RPAREN] = ACTIONS(7592), + [aux_sym_preproc_if_token2] = ACTIONS(7592), + [aux_sym_preproc_else_token1] = ACTIONS(7592), + [aux_sym_preproc_elif_token1] = ACTIONS(7590), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7592), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7592), + [anon_sym_LPAREN2] = ACTIONS(7592), + [anon_sym_DASH] = ACTIONS(7590), + [anon_sym_PLUS] = ACTIONS(7590), + [anon_sym_STAR] = ACTIONS(7590), + [anon_sym_SLASH] = ACTIONS(7590), + [anon_sym_PERCENT] = ACTIONS(7590), + [anon_sym_PIPE_PIPE] = ACTIONS(7592), + [anon_sym_AMP_AMP] = ACTIONS(7592), + [anon_sym_PIPE] = ACTIONS(7590), + [anon_sym_CARET] = ACTIONS(7590), + [anon_sym_AMP] = ACTIONS(7590), + [anon_sym_EQ_EQ] = ACTIONS(7592), + [anon_sym_BANG_EQ] = ACTIONS(7592), + [anon_sym_GT] = ACTIONS(7590), + [anon_sym_GT_EQ] = ACTIONS(7592), + [anon_sym_LT_EQ] = ACTIONS(7590), + [anon_sym_LT] = ACTIONS(7590), + [anon_sym_LT_LT] = ACTIONS(7590), + [anon_sym_GT_GT] = ACTIONS(7590), + [anon_sym_SEMI] = ACTIONS(7592), + [anon_sym___extension__] = ACTIONS(7590), + [anon_sym___attribute__] = ACTIONS(7590), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_COLON] = ACTIONS(7590), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7592), + [anon_sym_LBRACE] = ACTIONS(7592), + [anon_sym_RBRACE] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7592), + [anon_sym_EQ] = ACTIONS(7590), + [anon_sym_const] = ACTIONS(7590), + [anon_sym_constexpr] = ACTIONS(7590), + [anon_sym_volatile] = ACTIONS(7590), + [anon_sym_restrict] = ACTIONS(7590), + [anon_sym___restrict__] = ACTIONS(7590), + [anon_sym__Atomic] = ACTIONS(7590), + [anon_sym__Noreturn] = ACTIONS(7590), + [anon_sym_noreturn] = ACTIONS(7590), + [anon_sym__Nonnull] = ACTIONS(7590), + [anon_sym_mutable] = ACTIONS(7590), + [anon_sym_constinit] = ACTIONS(7590), + [anon_sym_consteval] = ACTIONS(7590), + [anon_sym_alignas] = ACTIONS(7590), + [anon_sym__Alignas] = ACTIONS(7590), + [anon_sym_QMARK] = ACTIONS(7592), + [anon_sym_STAR_EQ] = ACTIONS(7592), + [anon_sym_SLASH_EQ] = ACTIONS(7592), + [anon_sym_PERCENT_EQ] = ACTIONS(7592), + [anon_sym_PLUS_EQ] = ACTIONS(7592), + [anon_sym_DASH_EQ] = ACTIONS(7592), + [anon_sym_LT_LT_EQ] = ACTIONS(7592), + [anon_sym_GT_GT_EQ] = ACTIONS(7592), + [anon_sym_AMP_EQ] = ACTIONS(7592), + [anon_sym_CARET_EQ] = ACTIONS(7592), + [anon_sym_PIPE_EQ] = ACTIONS(7592), + [anon_sym_and_eq] = ACTIONS(7590), + [anon_sym_or_eq] = ACTIONS(7590), + [anon_sym_xor_eq] = ACTIONS(7590), + [anon_sym_LT_EQ_GT] = ACTIONS(7592), + [anon_sym_or] = ACTIONS(7590), + [anon_sym_and] = ACTIONS(7590), + [anon_sym_bitor] = ACTIONS(7590), + [anon_sym_xor] = ACTIONS(7590), + [anon_sym_bitand] = ACTIONS(7590), + [anon_sym_not_eq] = ACTIONS(7590), + [anon_sym_DASH_DASH] = ACTIONS(7592), + [anon_sym_PLUS_PLUS] = ACTIONS(7592), + [anon_sym_DOT] = ACTIONS(7590), + [anon_sym_DOT_STAR] = ACTIONS(7592), + [anon_sym_DASH_GT] = ACTIONS(7592), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7590), + [anon_sym_override] = ACTIONS(7590), + [anon_sym_requires] = ACTIONS(7590), + [anon_sym_COLON_RBRACK] = ACTIONS(7592), }, [STATE(2180)] = { - [sym_type_qualifier] = STATE(2188), - [sym_alignas_qualifier] = STATE(2365), - [aux_sym__type_definition_type_repeat1] = STATE(2188), - [aux_sym_sized_type_specifier_repeat1] = STATE(2354), - [sym_identifier] = ACTIONS(7573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_RPAREN] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(7575), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(7578), - [anon_sym_unsigned] = ACTIONS(7578), - [anon_sym_long] = ACTIONS(7578), - [anon_sym_short] = ACTIONS(7578), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(7575), - [anon_sym_constexpr] = ACTIONS(7575), - [anon_sym_volatile] = ACTIONS(7575), - [anon_sym_restrict] = ACTIONS(7575), - [anon_sym___restrict__] = ACTIONS(7575), - [anon_sym__Atomic] = ACTIONS(7575), - [anon_sym__Noreturn] = ACTIONS(7575), - [anon_sym_noreturn] = ACTIONS(7575), - [anon_sym__Nonnull] = ACTIONS(7575), - [anon_sym_mutable] = ACTIONS(7575), - [anon_sym_constinit] = ACTIONS(7575), - [anon_sym_consteval] = ACTIONS(7575), - [anon_sym_alignas] = ACTIONS(7580), - [anon_sym__Alignas] = ACTIONS(7580), - [sym_primitive_type] = ACTIONS(7583), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7251), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), - [anon_sym_DASH_GT_STAR] = ACTIONS(7249), + [sym_identifier] = ACTIONS(7594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7596), + [anon_sym_COMMA] = ACTIONS(7596), + [anon_sym_RPAREN] = ACTIONS(7596), + [aux_sym_preproc_if_token2] = ACTIONS(7596), + [aux_sym_preproc_else_token1] = ACTIONS(7596), + [aux_sym_preproc_elif_token1] = ACTIONS(7594), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7596), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7596), + [anon_sym_LPAREN2] = ACTIONS(7596), + [anon_sym_DASH] = ACTIONS(7594), + [anon_sym_PLUS] = ACTIONS(7594), + [anon_sym_STAR] = ACTIONS(7594), + [anon_sym_SLASH] = ACTIONS(7594), + [anon_sym_PERCENT] = ACTIONS(7594), + [anon_sym_PIPE_PIPE] = ACTIONS(7596), + [anon_sym_AMP_AMP] = ACTIONS(7596), + [anon_sym_PIPE] = ACTIONS(7594), + [anon_sym_CARET] = ACTIONS(7594), + [anon_sym_AMP] = ACTIONS(7594), + [anon_sym_EQ_EQ] = ACTIONS(7596), + [anon_sym_BANG_EQ] = ACTIONS(7596), + [anon_sym_GT] = ACTIONS(7594), + [anon_sym_GT_EQ] = ACTIONS(7596), + [anon_sym_LT_EQ] = ACTIONS(7594), + [anon_sym_LT] = ACTIONS(7594), + [anon_sym_LT_LT] = ACTIONS(7594), + [anon_sym_GT_GT] = ACTIONS(7594), + [anon_sym_SEMI] = ACTIONS(7596), + [anon_sym___extension__] = ACTIONS(7594), + [anon_sym___attribute__] = ACTIONS(7594), + [anon_sym___attribute] = ACTIONS(7594), + [anon_sym_COLON] = ACTIONS(7594), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7596), + [anon_sym_LBRACE] = ACTIONS(7596), + [anon_sym_RBRACE] = ACTIONS(7596), + [anon_sym_LBRACK] = ACTIONS(7596), + [anon_sym_EQ] = ACTIONS(7594), + [anon_sym_const] = ACTIONS(7594), + [anon_sym_constexpr] = ACTIONS(7594), + [anon_sym_volatile] = ACTIONS(7594), + [anon_sym_restrict] = ACTIONS(7594), + [anon_sym___restrict__] = ACTIONS(7594), + [anon_sym__Atomic] = ACTIONS(7594), + [anon_sym__Noreturn] = ACTIONS(7594), + [anon_sym_noreturn] = ACTIONS(7594), + [anon_sym__Nonnull] = ACTIONS(7594), + [anon_sym_mutable] = ACTIONS(7594), + [anon_sym_constinit] = ACTIONS(7594), + [anon_sym_consteval] = ACTIONS(7594), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [anon_sym_QMARK] = ACTIONS(7596), + [anon_sym_STAR_EQ] = ACTIONS(7596), + [anon_sym_SLASH_EQ] = ACTIONS(7596), + [anon_sym_PERCENT_EQ] = ACTIONS(7596), + [anon_sym_PLUS_EQ] = ACTIONS(7596), + [anon_sym_DASH_EQ] = ACTIONS(7596), + [anon_sym_LT_LT_EQ] = ACTIONS(7596), + [anon_sym_GT_GT_EQ] = ACTIONS(7596), + [anon_sym_AMP_EQ] = ACTIONS(7596), + [anon_sym_CARET_EQ] = ACTIONS(7596), + [anon_sym_PIPE_EQ] = ACTIONS(7596), + [anon_sym_and_eq] = ACTIONS(7594), + [anon_sym_or_eq] = ACTIONS(7594), + [anon_sym_xor_eq] = ACTIONS(7594), + [anon_sym_LT_EQ_GT] = ACTIONS(7596), + [anon_sym_or] = ACTIONS(7594), + [anon_sym_and] = ACTIONS(7594), + [anon_sym_bitor] = ACTIONS(7594), + [anon_sym_xor] = ACTIONS(7594), + [anon_sym_bitand] = ACTIONS(7594), + [anon_sym_not_eq] = ACTIONS(7594), + [anon_sym_DASH_DASH] = ACTIONS(7596), + [anon_sym_PLUS_PLUS] = ACTIONS(7596), + [anon_sym_DOT] = ACTIONS(7594), + [anon_sym_DOT_STAR] = ACTIONS(7596), + [anon_sym_DASH_GT] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7594), + [anon_sym_override] = ACTIONS(7594), + [anon_sym_requires] = ACTIONS(7594), + [anon_sym_COLON_RBRACK] = ACTIONS(7596), }, [STATE(2181)] = { - [sym_identifier] = ACTIONS(7585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), - [anon_sym_COMMA] = ACTIONS(7587), - [anon_sym_RPAREN] = ACTIONS(7587), - [aux_sym_preproc_if_token2] = ACTIONS(7587), - [aux_sym_preproc_else_token1] = ACTIONS(7587), - [aux_sym_preproc_elif_token1] = ACTIONS(7585), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7587), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7587), - [anon_sym_LPAREN2] = ACTIONS(7587), - [anon_sym_DASH] = ACTIONS(7585), - [anon_sym_PLUS] = ACTIONS(7585), - [anon_sym_STAR] = ACTIONS(7585), - [anon_sym_SLASH] = ACTIONS(7585), - [anon_sym_PERCENT] = ACTIONS(7585), - [anon_sym_PIPE_PIPE] = ACTIONS(7587), - [anon_sym_AMP_AMP] = ACTIONS(7587), - [anon_sym_PIPE] = ACTIONS(7585), - [anon_sym_CARET] = ACTIONS(7585), - [anon_sym_AMP] = ACTIONS(7585), - [anon_sym_EQ_EQ] = ACTIONS(7587), - [anon_sym_BANG_EQ] = ACTIONS(7587), - [anon_sym_GT] = ACTIONS(7585), - [anon_sym_GT_EQ] = ACTIONS(7587), - [anon_sym_LT_EQ] = ACTIONS(7585), - [anon_sym_LT] = ACTIONS(7585), - [anon_sym_LT_LT] = ACTIONS(7585), - [anon_sym_GT_GT] = ACTIONS(7585), - [anon_sym_SEMI] = ACTIONS(7587), - [anon_sym___extension__] = ACTIONS(7585), - [anon_sym___attribute__] = ACTIONS(7585), - [anon_sym___attribute] = ACTIONS(7585), - [anon_sym_COLON] = ACTIONS(7585), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7587), - [anon_sym_LBRACE] = ACTIONS(7587), - [anon_sym_RBRACE] = ACTIONS(7587), - [anon_sym_LBRACK] = ACTIONS(7587), - [anon_sym_EQ] = ACTIONS(7585), - [anon_sym_const] = ACTIONS(7585), - [anon_sym_constexpr] = ACTIONS(7585), - [anon_sym_volatile] = ACTIONS(7585), - [anon_sym_restrict] = ACTIONS(7585), - [anon_sym___restrict__] = ACTIONS(7585), - [anon_sym__Atomic] = ACTIONS(7585), - [anon_sym__Noreturn] = ACTIONS(7585), - [anon_sym_noreturn] = ACTIONS(7585), - [anon_sym__Nonnull] = ACTIONS(7585), - [anon_sym_mutable] = ACTIONS(7585), - [anon_sym_constinit] = ACTIONS(7585), - [anon_sym_consteval] = ACTIONS(7585), - [anon_sym_alignas] = ACTIONS(7585), - [anon_sym__Alignas] = ACTIONS(7585), - [anon_sym_QMARK] = ACTIONS(7587), - [anon_sym_STAR_EQ] = ACTIONS(7587), - [anon_sym_SLASH_EQ] = ACTIONS(7587), - [anon_sym_PERCENT_EQ] = ACTIONS(7587), - [anon_sym_PLUS_EQ] = ACTIONS(7587), - [anon_sym_DASH_EQ] = ACTIONS(7587), - [anon_sym_LT_LT_EQ] = ACTIONS(7587), - [anon_sym_GT_GT_EQ] = ACTIONS(7587), - [anon_sym_AMP_EQ] = ACTIONS(7587), - [anon_sym_CARET_EQ] = ACTIONS(7587), - [anon_sym_PIPE_EQ] = ACTIONS(7587), - [anon_sym_and_eq] = ACTIONS(7585), - [anon_sym_or_eq] = ACTIONS(7585), - [anon_sym_xor_eq] = ACTIONS(7585), - [anon_sym_LT_EQ_GT] = ACTIONS(7587), - [anon_sym_or] = ACTIONS(7585), - [anon_sym_and] = ACTIONS(7585), - [anon_sym_bitor] = ACTIONS(7585), - [anon_sym_xor] = ACTIONS(7585), - [anon_sym_bitand] = ACTIONS(7585), - [anon_sym_not_eq] = ACTIONS(7585), - [anon_sym_DASH_DASH] = ACTIONS(7587), - [anon_sym_PLUS_PLUS] = ACTIONS(7587), - [anon_sym_DOT] = ACTIONS(7585), - [anon_sym_DOT_STAR] = ACTIONS(7587), - [anon_sym_DASH_GT] = ACTIONS(7587), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7585), - [anon_sym_override] = ACTIONS(7585), - [anon_sym_requires] = ACTIONS(7585), - [anon_sym_COLON_RBRACK] = ACTIONS(7587), + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6651), + [anon_sym_COMMA] = ACTIONS(6651), + [anon_sym_RPAREN] = ACTIONS(6651), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6653), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6651), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6651), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6651), + [anon_sym_GT_GT] = ACTIONS(6651), + [anon_sym_SEMI] = ACTIONS(6651), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym_virtual] = ACTIONS(6649), + [anon_sym_extern] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6656), + [anon_sym___declspec] = ACTIONS(6649), + [anon_sym___based] = ACTIONS(6649), + [anon_sym___cdecl] = ACTIONS(6649), + [anon_sym___clrcall] = ACTIONS(6649), + [anon_sym___stdcall] = ACTIONS(6649), + [anon_sym___fastcall] = ACTIONS(6649), + [anon_sym___thiscall] = ACTIONS(6649), + [anon_sym___vectorcall] = ACTIONS(6649), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6660), + [anon_sym_static] = ACTIONS(6649), + [anon_sym_register] = ACTIONS(6649), + [anon_sym_inline] = ACTIONS(6649), + [anon_sym___inline] = ACTIONS(6649), + [anon_sym___inline__] = ACTIONS(6649), + [anon_sym___forceinline] = ACTIONS(6649), + [anon_sym_thread_local] = ACTIONS(6649), + [anon_sym___thread] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6658), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6658), + [anon_sym_not_eq] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_template] = ACTIONS(6649), + [anon_sym_operator] = ACTIONS(6649), + [anon_sym_LBRACK_COLON] = ACTIONS(6656), }, [STATE(2182)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2931), - [sym_ms_pointer_modifier] = STATE(2224), - [sym__abstract_declarator] = STATE(5839), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2610), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1989), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2610), - [aux_sym_pointer_declarator_repeat1] = STATE(2224), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(7589), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6861), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(7591), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6861), - [anon_sym_AMP] = ACTIONS(7593), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6861), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(7313), - [sym_ms_restrict_modifier] = ACTIONS(7315), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7317), - [sym_ms_signed_ptr_modifier] = ACTIONS(7317), - [anon_sym__unaligned] = ACTIONS(7319), - [anon_sym___unaligned] = ACTIONS(7319), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(6861), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_STAR_EQ] = ACTIONS(6859), - [anon_sym_SLASH_EQ] = ACTIONS(6859), - [anon_sym_PERCENT_EQ] = ACTIONS(6859), - [anon_sym_PLUS_EQ] = ACTIONS(6859), - [anon_sym_DASH_EQ] = ACTIONS(6859), - [anon_sym_LT_LT_EQ] = ACTIONS(6859), - [anon_sym_GT_GT_EQ] = ACTIONS(6859), - [anon_sym_AMP_EQ] = ACTIONS(6859), - [anon_sym_CARET_EQ] = ACTIONS(6859), - [anon_sym_PIPE_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6859), - [anon_sym_and] = ACTIONS(6859), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6859), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6861), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6859), + [sym_identifier] = ACTIONS(7598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7600), + [anon_sym_COMMA] = ACTIONS(7600), + [anon_sym_RPAREN] = ACTIONS(7600), + [aux_sym_preproc_if_token2] = ACTIONS(7600), + [aux_sym_preproc_else_token1] = ACTIONS(7600), + [aux_sym_preproc_elif_token1] = ACTIONS(7598), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7600), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7600), + [anon_sym_LPAREN2] = ACTIONS(7600), + [anon_sym_DASH] = ACTIONS(7598), + [anon_sym_PLUS] = ACTIONS(7598), + [anon_sym_STAR] = ACTIONS(7598), + [anon_sym_SLASH] = ACTIONS(7598), + [anon_sym_PERCENT] = ACTIONS(7598), + [anon_sym_PIPE_PIPE] = ACTIONS(7600), + [anon_sym_AMP_AMP] = ACTIONS(7600), + [anon_sym_PIPE] = ACTIONS(7598), + [anon_sym_CARET] = ACTIONS(7598), + [anon_sym_AMP] = ACTIONS(7598), + [anon_sym_EQ_EQ] = ACTIONS(7600), + [anon_sym_BANG_EQ] = ACTIONS(7600), + [anon_sym_GT] = ACTIONS(7598), + [anon_sym_GT_EQ] = ACTIONS(7600), + [anon_sym_LT_EQ] = ACTIONS(7598), + [anon_sym_LT] = ACTIONS(7598), + [anon_sym_LT_LT] = ACTIONS(7598), + [anon_sym_GT_GT] = ACTIONS(7598), + [anon_sym_SEMI] = ACTIONS(7600), + [anon_sym___extension__] = ACTIONS(7598), + [anon_sym___attribute__] = ACTIONS(7598), + [anon_sym___attribute] = ACTIONS(7598), + [anon_sym_COLON] = ACTIONS(7598), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7600), + [anon_sym_LBRACE] = ACTIONS(7600), + [anon_sym_RBRACE] = ACTIONS(7600), + [anon_sym_LBRACK] = ACTIONS(7600), + [anon_sym_EQ] = ACTIONS(7598), + [anon_sym_const] = ACTIONS(7598), + [anon_sym_constexpr] = ACTIONS(7598), + [anon_sym_volatile] = ACTIONS(7598), + [anon_sym_restrict] = ACTIONS(7598), + [anon_sym___restrict__] = ACTIONS(7598), + [anon_sym__Atomic] = ACTIONS(7598), + [anon_sym__Noreturn] = ACTIONS(7598), + [anon_sym_noreturn] = ACTIONS(7598), + [anon_sym__Nonnull] = ACTIONS(7598), + [anon_sym_mutable] = ACTIONS(7598), + [anon_sym_constinit] = ACTIONS(7598), + [anon_sym_consteval] = ACTIONS(7598), + [anon_sym_alignas] = ACTIONS(7598), + [anon_sym__Alignas] = ACTIONS(7598), + [anon_sym_QMARK] = ACTIONS(7600), + [anon_sym_STAR_EQ] = ACTIONS(7600), + [anon_sym_SLASH_EQ] = ACTIONS(7600), + [anon_sym_PERCENT_EQ] = ACTIONS(7600), + [anon_sym_PLUS_EQ] = ACTIONS(7600), + [anon_sym_DASH_EQ] = ACTIONS(7600), + [anon_sym_LT_LT_EQ] = ACTIONS(7600), + [anon_sym_GT_GT_EQ] = ACTIONS(7600), + [anon_sym_AMP_EQ] = ACTIONS(7600), + [anon_sym_CARET_EQ] = ACTIONS(7600), + [anon_sym_PIPE_EQ] = ACTIONS(7600), + [anon_sym_and_eq] = ACTIONS(7598), + [anon_sym_or_eq] = ACTIONS(7598), + [anon_sym_xor_eq] = ACTIONS(7598), + [anon_sym_LT_EQ_GT] = ACTIONS(7600), + [anon_sym_or] = ACTIONS(7598), + [anon_sym_and] = ACTIONS(7598), + [anon_sym_bitor] = ACTIONS(7598), + [anon_sym_xor] = ACTIONS(7598), + [anon_sym_bitand] = ACTIONS(7598), + [anon_sym_not_eq] = ACTIONS(7598), + [anon_sym_DASH_DASH] = ACTIONS(7600), + [anon_sym_PLUS_PLUS] = ACTIONS(7600), + [anon_sym_DOT] = ACTIONS(7598), + [anon_sym_DOT_STAR] = ACTIONS(7600), + [anon_sym_DASH_GT] = ACTIONS(7600), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7598), + [anon_sym_override] = ACTIONS(7598), + [anon_sym_requires] = ACTIONS(7598), + [anon_sym_COLON_RBRACK] = ACTIONS(7600), }, [STATE(2183)] = { - [sym_identifier] = ACTIONS(7595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_RPAREN] = ACTIONS(7597), - [aux_sym_preproc_if_token2] = ACTIONS(7597), - [aux_sym_preproc_else_token1] = ACTIONS(7597), - [aux_sym_preproc_elif_token1] = ACTIONS(7595), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7597), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7595), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7595), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7595), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7595), - [anon_sym_GT_GT] = ACTIONS(7595), - [anon_sym_SEMI] = ACTIONS(7597), - [anon_sym___extension__] = ACTIONS(7595), - [anon_sym___attribute__] = ACTIONS(7595), - [anon_sym___attribute] = ACTIONS(7595), - [anon_sym_COLON] = ACTIONS(7595), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7597), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_RBRACE] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_EQ] = ACTIONS(7595), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7595), - [anon_sym_volatile] = ACTIONS(7595), - [anon_sym_restrict] = ACTIONS(7595), - [anon_sym___restrict__] = ACTIONS(7595), - [anon_sym__Atomic] = ACTIONS(7595), - [anon_sym__Noreturn] = ACTIONS(7595), - [anon_sym_noreturn] = ACTIONS(7595), - [anon_sym__Nonnull] = ACTIONS(7595), - [anon_sym_mutable] = ACTIONS(7595), - [anon_sym_constinit] = ACTIONS(7595), - [anon_sym_consteval] = ACTIONS(7595), - [anon_sym_alignas] = ACTIONS(7595), - [anon_sym__Alignas] = ACTIONS(7595), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_STAR_EQ] = ACTIONS(7597), - [anon_sym_SLASH_EQ] = ACTIONS(7597), - [anon_sym_PERCENT_EQ] = ACTIONS(7597), - [anon_sym_PLUS_EQ] = ACTIONS(7597), - [anon_sym_DASH_EQ] = ACTIONS(7597), - [anon_sym_LT_LT_EQ] = ACTIONS(7597), - [anon_sym_GT_GT_EQ] = ACTIONS(7597), - [anon_sym_AMP_EQ] = ACTIONS(7597), - [anon_sym_CARET_EQ] = ACTIONS(7597), - [anon_sym_PIPE_EQ] = ACTIONS(7597), - [anon_sym_and_eq] = ACTIONS(7595), - [anon_sym_or_eq] = ACTIONS(7595), - [anon_sym_xor_eq] = ACTIONS(7595), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7595), - [anon_sym_and] = ACTIONS(7595), - [anon_sym_bitor] = ACTIONS(7595), - [anon_sym_xor] = ACTIONS(7595), - [anon_sym_bitand] = ACTIONS(7595), - [anon_sym_not_eq] = ACTIONS(7595), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7595), - [anon_sym_override] = ACTIONS(7595), - [anon_sym_requires] = ACTIONS(7595), - [anon_sym_COLON_RBRACK] = ACTIONS(7597), + [sym_identifier] = ACTIONS(7602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7604), + [anon_sym_COMMA] = ACTIONS(7604), + [anon_sym_RPAREN] = ACTIONS(7604), + [aux_sym_preproc_if_token2] = ACTIONS(7604), + [aux_sym_preproc_else_token1] = ACTIONS(7604), + [aux_sym_preproc_elif_token1] = ACTIONS(7602), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7604), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7604), + [anon_sym_LPAREN2] = ACTIONS(7604), + [anon_sym_DASH] = ACTIONS(7602), + [anon_sym_PLUS] = ACTIONS(7602), + [anon_sym_STAR] = ACTIONS(7602), + [anon_sym_SLASH] = ACTIONS(7602), + [anon_sym_PERCENT] = ACTIONS(7602), + [anon_sym_PIPE_PIPE] = ACTIONS(7604), + [anon_sym_AMP_AMP] = ACTIONS(7604), + [anon_sym_PIPE] = ACTIONS(7602), + [anon_sym_CARET] = ACTIONS(7602), + [anon_sym_AMP] = ACTIONS(7602), + [anon_sym_EQ_EQ] = ACTIONS(7604), + [anon_sym_BANG_EQ] = ACTIONS(7604), + [anon_sym_GT] = ACTIONS(7602), + [anon_sym_GT_EQ] = ACTIONS(7604), + [anon_sym_LT_EQ] = ACTIONS(7602), + [anon_sym_LT] = ACTIONS(7602), + [anon_sym_LT_LT] = ACTIONS(7602), + [anon_sym_GT_GT] = ACTIONS(7602), + [anon_sym_SEMI] = ACTIONS(7604), + [anon_sym___extension__] = ACTIONS(7602), + [anon_sym___attribute__] = ACTIONS(7602), + [anon_sym___attribute] = ACTIONS(7602), + [anon_sym_COLON] = ACTIONS(7602), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7604), + [anon_sym_LBRACE] = ACTIONS(7604), + [anon_sym_RBRACE] = ACTIONS(7604), + [anon_sym_LBRACK] = ACTIONS(7604), + [anon_sym_EQ] = ACTIONS(7602), + [anon_sym_const] = ACTIONS(7602), + [anon_sym_constexpr] = ACTIONS(7602), + [anon_sym_volatile] = ACTIONS(7602), + [anon_sym_restrict] = ACTIONS(7602), + [anon_sym___restrict__] = ACTIONS(7602), + [anon_sym__Atomic] = ACTIONS(7602), + [anon_sym__Noreturn] = ACTIONS(7602), + [anon_sym_noreturn] = ACTIONS(7602), + [anon_sym__Nonnull] = ACTIONS(7602), + [anon_sym_mutable] = ACTIONS(7602), + [anon_sym_constinit] = ACTIONS(7602), + [anon_sym_consteval] = ACTIONS(7602), + [anon_sym_alignas] = ACTIONS(7602), + [anon_sym__Alignas] = ACTIONS(7602), + [anon_sym_QMARK] = ACTIONS(7604), + [anon_sym_STAR_EQ] = ACTIONS(7604), + [anon_sym_SLASH_EQ] = ACTIONS(7604), + [anon_sym_PERCENT_EQ] = ACTIONS(7604), + [anon_sym_PLUS_EQ] = ACTIONS(7604), + [anon_sym_DASH_EQ] = ACTIONS(7604), + [anon_sym_LT_LT_EQ] = ACTIONS(7604), + [anon_sym_GT_GT_EQ] = ACTIONS(7604), + [anon_sym_AMP_EQ] = ACTIONS(7604), + [anon_sym_CARET_EQ] = ACTIONS(7604), + [anon_sym_PIPE_EQ] = ACTIONS(7604), + [anon_sym_and_eq] = ACTIONS(7602), + [anon_sym_or_eq] = ACTIONS(7602), + [anon_sym_xor_eq] = ACTIONS(7602), + [anon_sym_LT_EQ_GT] = ACTIONS(7604), + [anon_sym_or] = ACTIONS(7602), + [anon_sym_and] = ACTIONS(7602), + [anon_sym_bitor] = ACTIONS(7602), + [anon_sym_xor] = ACTIONS(7602), + [anon_sym_bitand] = ACTIONS(7602), + [anon_sym_not_eq] = ACTIONS(7602), + [anon_sym_DASH_DASH] = ACTIONS(7604), + [anon_sym_PLUS_PLUS] = ACTIONS(7604), + [anon_sym_DOT] = ACTIONS(7602), + [anon_sym_DOT_STAR] = ACTIONS(7604), + [anon_sym_DASH_GT] = ACTIONS(7604), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7602), + [anon_sym_override] = ACTIONS(7602), + [anon_sym_requires] = ACTIONS(7602), + [anon_sym_COLON_RBRACK] = ACTIONS(7604), }, [STATE(2184)] = { - [sym_identifier] = ACTIONS(7599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), - [anon_sym_COMMA] = ACTIONS(7601), - [anon_sym_RPAREN] = ACTIONS(7601), - [aux_sym_preproc_if_token2] = ACTIONS(7601), - [aux_sym_preproc_else_token1] = ACTIONS(7601), - [aux_sym_preproc_elif_token1] = ACTIONS(7599), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7601), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7601), - [anon_sym_LPAREN2] = ACTIONS(7601), - [anon_sym_DASH] = ACTIONS(7599), - [anon_sym_PLUS] = ACTIONS(7599), - [anon_sym_STAR] = ACTIONS(7599), - [anon_sym_SLASH] = ACTIONS(7599), - [anon_sym_PERCENT] = ACTIONS(7599), - [anon_sym_PIPE_PIPE] = ACTIONS(7601), - [anon_sym_AMP_AMP] = ACTIONS(7601), - [anon_sym_PIPE] = ACTIONS(7599), - [anon_sym_CARET] = ACTIONS(7599), - [anon_sym_AMP] = ACTIONS(7599), - [anon_sym_EQ_EQ] = ACTIONS(7601), - [anon_sym_BANG_EQ] = ACTIONS(7601), - [anon_sym_GT] = ACTIONS(7599), - [anon_sym_GT_EQ] = ACTIONS(7601), - [anon_sym_LT_EQ] = ACTIONS(7599), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_LT_LT] = ACTIONS(7599), - [anon_sym_GT_GT] = ACTIONS(7599), - [anon_sym_SEMI] = ACTIONS(7601), - [anon_sym___extension__] = ACTIONS(7599), - [anon_sym___attribute__] = ACTIONS(7599), - [anon_sym___attribute] = ACTIONS(7599), - [anon_sym_COLON] = ACTIONS(7599), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7601), - [anon_sym_LBRACE] = ACTIONS(7601), - [anon_sym_RBRACE] = ACTIONS(7601), - [anon_sym_LBRACK] = ACTIONS(7601), - [anon_sym_EQ] = ACTIONS(7599), - [anon_sym_const] = ACTIONS(7599), - [anon_sym_constexpr] = ACTIONS(7599), - [anon_sym_volatile] = ACTIONS(7599), - [anon_sym_restrict] = ACTIONS(7599), - [anon_sym___restrict__] = ACTIONS(7599), - [anon_sym__Atomic] = ACTIONS(7599), - [anon_sym__Noreturn] = ACTIONS(7599), - [anon_sym_noreturn] = ACTIONS(7599), - [anon_sym__Nonnull] = ACTIONS(7599), - [anon_sym_mutable] = ACTIONS(7599), - [anon_sym_constinit] = ACTIONS(7599), - [anon_sym_consteval] = ACTIONS(7599), - [anon_sym_alignas] = ACTIONS(7599), - [anon_sym__Alignas] = ACTIONS(7599), - [anon_sym_QMARK] = ACTIONS(7601), - [anon_sym_STAR_EQ] = ACTIONS(7601), - [anon_sym_SLASH_EQ] = ACTIONS(7601), - [anon_sym_PERCENT_EQ] = ACTIONS(7601), - [anon_sym_PLUS_EQ] = ACTIONS(7601), - [anon_sym_DASH_EQ] = ACTIONS(7601), - [anon_sym_LT_LT_EQ] = ACTIONS(7601), - [anon_sym_GT_GT_EQ] = ACTIONS(7601), - [anon_sym_AMP_EQ] = ACTIONS(7601), - [anon_sym_CARET_EQ] = ACTIONS(7601), - [anon_sym_PIPE_EQ] = ACTIONS(7601), - [anon_sym_and_eq] = ACTIONS(7599), - [anon_sym_or_eq] = ACTIONS(7599), - [anon_sym_xor_eq] = ACTIONS(7599), - [anon_sym_LT_EQ_GT] = ACTIONS(7601), - [anon_sym_or] = ACTIONS(7599), - [anon_sym_and] = ACTIONS(7599), - [anon_sym_bitor] = ACTIONS(7599), - [anon_sym_xor] = ACTIONS(7599), - [anon_sym_bitand] = ACTIONS(7599), - [anon_sym_not_eq] = ACTIONS(7599), - [anon_sym_DASH_DASH] = ACTIONS(7601), - [anon_sym_PLUS_PLUS] = ACTIONS(7601), - [anon_sym_DOT] = ACTIONS(7599), - [anon_sym_DOT_STAR] = ACTIONS(7601), - [anon_sym_DASH_GT] = ACTIONS(7601), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7599), - [anon_sym_override] = ACTIONS(7599), - [anon_sym_requires] = ACTIONS(7599), - [anon_sym_COLON_RBRACK] = ACTIONS(7601), + [sym_identifier] = ACTIONS(7606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7608), + [anon_sym_COMMA] = ACTIONS(7608), + [anon_sym_RPAREN] = ACTIONS(7608), + [aux_sym_preproc_if_token2] = ACTIONS(7608), + [aux_sym_preproc_else_token1] = ACTIONS(7608), + [aux_sym_preproc_elif_token1] = ACTIONS(7606), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7608), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7608), + [anon_sym_LPAREN2] = ACTIONS(7608), + [anon_sym_DASH] = ACTIONS(7606), + [anon_sym_PLUS] = ACTIONS(7606), + [anon_sym_STAR] = ACTIONS(7606), + [anon_sym_SLASH] = ACTIONS(7606), + [anon_sym_PERCENT] = ACTIONS(7606), + [anon_sym_PIPE_PIPE] = ACTIONS(7608), + [anon_sym_AMP_AMP] = ACTIONS(7608), + [anon_sym_PIPE] = ACTIONS(7606), + [anon_sym_CARET] = ACTIONS(7606), + [anon_sym_AMP] = ACTIONS(7606), + [anon_sym_EQ_EQ] = ACTIONS(7608), + [anon_sym_BANG_EQ] = ACTIONS(7608), + [anon_sym_GT] = ACTIONS(7606), + [anon_sym_GT_EQ] = ACTIONS(7608), + [anon_sym_LT_EQ] = ACTIONS(7606), + [anon_sym_LT] = ACTIONS(7606), + [anon_sym_LT_LT] = ACTIONS(7606), + [anon_sym_GT_GT] = ACTIONS(7606), + [anon_sym_SEMI] = ACTIONS(7608), + [anon_sym___extension__] = ACTIONS(7606), + [anon_sym___attribute__] = ACTIONS(7606), + [anon_sym___attribute] = ACTIONS(7606), + [anon_sym_COLON] = ACTIONS(7606), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7608), + [anon_sym_LBRACE] = ACTIONS(7608), + [anon_sym_RBRACE] = ACTIONS(7608), + [anon_sym_LBRACK] = ACTIONS(7608), + [anon_sym_EQ] = ACTIONS(7606), + [anon_sym_const] = ACTIONS(7606), + [anon_sym_constexpr] = ACTIONS(7606), + [anon_sym_volatile] = ACTIONS(7606), + [anon_sym_restrict] = ACTIONS(7606), + [anon_sym___restrict__] = ACTIONS(7606), + [anon_sym__Atomic] = ACTIONS(7606), + [anon_sym__Noreturn] = ACTIONS(7606), + [anon_sym_noreturn] = ACTIONS(7606), + [anon_sym__Nonnull] = ACTIONS(7606), + [anon_sym_mutable] = ACTIONS(7606), + [anon_sym_constinit] = ACTIONS(7606), + [anon_sym_consteval] = ACTIONS(7606), + [anon_sym_alignas] = ACTIONS(7606), + [anon_sym__Alignas] = ACTIONS(7606), + [anon_sym_QMARK] = ACTIONS(7608), + [anon_sym_STAR_EQ] = ACTIONS(7608), + [anon_sym_SLASH_EQ] = ACTIONS(7608), + [anon_sym_PERCENT_EQ] = ACTIONS(7608), + [anon_sym_PLUS_EQ] = ACTIONS(7608), + [anon_sym_DASH_EQ] = ACTIONS(7608), + [anon_sym_LT_LT_EQ] = ACTIONS(7608), + [anon_sym_GT_GT_EQ] = ACTIONS(7608), + [anon_sym_AMP_EQ] = ACTIONS(7608), + [anon_sym_CARET_EQ] = ACTIONS(7608), + [anon_sym_PIPE_EQ] = ACTIONS(7608), + [anon_sym_and_eq] = ACTIONS(7606), + [anon_sym_or_eq] = ACTIONS(7606), + [anon_sym_xor_eq] = ACTIONS(7606), + [anon_sym_LT_EQ_GT] = ACTIONS(7608), + [anon_sym_or] = ACTIONS(7606), + [anon_sym_and] = ACTIONS(7606), + [anon_sym_bitor] = ACTIONS(7606), + [anon_sym_xor] = ACTIONS(7606), + [anon_sym_bitand] = ACTIONS(7606), + [anon_sym_not_eq] = ACTIONS(7606), + [anon_sym_DASH_DASH] = ACTIONS(7608), + [anon_sym_PLUS_PLUS] = ACTIONS(7608), + [anon_sym_DOT] = ACTIONS(7606), + [anon_sym_DOT_STAR] = ACTIONS(7608), + [anon_sym_DASH_GT] = ACTIONS(7608), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7606), + [anon_sym_override] = ACTIONS(7606), + [anon_sym_requires] = ACTIONS(7606), + [anon_sym_COLON_RBRACK] = ACTIONS(7608), }, [STATE(2185)] = { - [sym_identifier] = ACTIONS(7603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), - [anon_sym_COMMA] = ACTIONS(7605), - [anon_sym_RPAREN] = ACTIONS(7605), - [aux_sym_preproc_if_token2] = ACTIONS(7605), - [aux_sym_preproc_else_token1] = ACTIONS(7605), - [aux_sym_preproc_elif_token1] = ACTIONS(7603), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7605), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7605), - [anon_sym_LPAREN2] = ACTIONS(7605), - [anon_sym_DASH] = ACTIONS(7603), - [anon_sym_PLUS] = ACTIONS(7603), - [anon_sym_STAR] = ACTIONS(7603), - [anon_sym_SLASH] = ACTIONS(7603), - [anon_sym_PERCENT] = ACTIONS(7603), - [anon_sym_PIPE_PIPE] = ACTIONS(7605), - [anon_sym_AMP_AMP] = ACTIONS(7605), - [anon_sym_PIPE] = ACTIONS(7603), - [anon_sym_CARET] = ACTIONS(7603), - [anon_sym_AMP] = ACTIONS(7603), - [anon_sym_EQ_EQ] = ACTIONS(7605), - [anon_sym_BANG_EQ] = ACTIONS(7605), - [anon_sym_GT] = ACTIONS(7603), - [anon_sym_GT_EQ] = ACTIONS(7605), - [anon_sym_LT_EQ] = ACTIONS(7603), - [anon_sym_LT] = ACTIONS(7603), - [anon_sym_LT_LT] = ACTIONS(7603), - [anon_sym_GT_GT] = ACTIONS(7603), - [anon_sym_SEMI] = ACTIONS(7605), - [anon_sym___extension__] = ACTIONS(7603), - [anon_sym___attribute__] = ACTIONS(7603), - [anon_sym___attribute] = ACTIONS(7603), - [anon_sym_COLON] = ACTIONS(7603), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7605), - [anon_sym_LBRACE] = ACTIONS(7605), - [anon_sym_RBRACE] = ACTIONS(7605), - [anon_sym_LBRACK] = ACTIONS(7605), - [anon_sym_EQ] = ACTIONS(7603), - [anon_sym_const] = ACTIONS(7603), - [anon_sym_constexpr] = ACTIONS(7603), - [anon_sym_volatile] = ACTIONS(7603), - [anon_sym_restrict] = ACTIONS(7603), - [anon_sym___restrict__] = ACTIONS(7603), - [anon_sym__Atomic] = ACTIONS(7603), - [anon_sym__Noreturn] = ACTIONS(7603), - [anon_sym_noreturn] = ACTIONS(7603), - [anon_sym__Nonnull] = ACTIONS(7603), - [anon_sym_mutable] = ACTIONS(7603), - [anon_sym_constinit] = ACTIONS(7603), - [anon_sym_consteval] = ACTIONS(7603), - [anon_sym_alignas] = ACTIONS(7603), - [anon_sym__Alignas] = ACTIONS(7603), - [anon_sym_QMARK] = ACTIONS(7605), - [anon_sym_STAR_EQ] = ACTIONS(7605), - [anon_sym_SLASH_EQ] = ACTIONS(7605), - [anon_sym_PERCENT_EQ] = ACTIONS(7605), - [anon_sym_PLUS_EQ] = ACTIONS(7605), - [anon_sym_DASH_EQ] = ACTIONS(7605), - [anon_sym_LT_LT_EQ] = ACTIONS(7605), - [anon_sym_GT_GT_EQ] = ACTIONS(7605), - [anon_sym_AMP_EQ] = ACTIONS(7605), - [anon_sym_CARET_EQ] = ACTIONS(7605), - [anon_sym_PIPE_EQ] = ACTIONS(7605), - [anon_sym_and_eq] = ACTIONS(7603), - [anon_sym_or_eq] = ACTIONS(7603), - [anon_sym_xor_eq] = ACTIONS(7603), - [anon_sym_LT_EQ_GT] = ACTIONS(7605), - [anon_sym_or] = ACTIONS(7603), - [anon_sym_and] = ACTIONS(7603), - [anon_sym_bitor] = ACTIONS(7603), - [anon_sym_xor] = ACTIONS(7603), - [anon_sym_bitand] = ACTIONS(7603), - [anon_sym_not_eq] = ACTIONS(7603), - [anon_sym_DASH_DASH] = ACTIONS(7605), - [anon_sym_PLUS_PLUS] = ACTIONS(7605), - [anon_sym_DOT] = ACTIONS(7603), - [anon_sym_DOT_STAR] = ACTIONS(7605), - [anon_sym_DASH_GT] = ACTIONS(7605), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7603), - [anon_sym_override] = ACTIONS(7603), - [anon_sym_requires] = ACTIONS(7603), - [anon_sym_COLON_RBRACK] = ACTIONS(7605), + [sym_identifier] = ACTIONS(7610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7612), + [anon_sym_COMMA] = ACTIONS(7612), + [anon_sym_RPAREN] = ACTIONS(7612), + [aux_sym_preproc_if_token2] = ACTIONS(7612), + [aux_sym_preproc_else_token1] = ACTIONS(7612), + [aux_sym_preproc_elif_token1] = ACTIONS(7610), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7612), + [anon_sym_LPAREN2] = ACTIONS(7612), + [anon_sym_DASH] = ACTIONS(7610), + [anon_sym_PLUS] = ACTIONS(7610), + [anon_sym_STAR] = ACTIONS(7610), + [anon_sym_SLASH] = ACTIONS(7610), + [anon_sym_PERCENT] = ACTIONS(7610), + [anon_sym_PIPE_PIPE] = ACTIONS(7612), + [anon_sym_AMP_AMP] = ACTIONS(7612), + [anon_sym_PIPE] = ACTIONS(7610), + [anon_sym_CARET] = ACTIONS(7610), + [anon_sym_AMP] = ACTIONS(7610), + [anon_sym_EQ_EQ] = ACTIONS(7612), + [anon_sym_BANG_EQ] = ACTIONS(7612), + [anon_sym_GT] = ACTIONS(7610), + [anon_sym_GT_EQ] = ACTIONS(7612), + [anon_sym_LT_EQ] = ACTIONS(7610), + [anon_sym_LT] = ACTIONS(7610), + [anon_sym_LT_LT] = ACTIONS(7610), + [anon_sym_GT_GT] = ACTIONS(7610), + [anon_sym_SEMI] = ACTIONS(7612), + [anon_sym___extension__] = ACTIONS(7610), + [anon_sym___attribute__] = ACTIONS(7610), + [anon_sym___attribute] = ACTIONS(7610), + [anon_sym_COLON] = ACTIONS(7610), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7612), + [anon_sym_LBRACE] = ACTIONS(7612), + [anon_sym_RBRACE] = ACTIONS(7612), + [anon_sym_LBRACK] = ACTIONS(7612), + [anon_sym_EQ] = ACTIONS(7610), + [anon_sym_const] = ACTIONS(7610), + [anon_sym_constexpr] = ACTIONS(7610), + [anon_sym_volatile] = ACTIONS(7610), + [anon_sym_restrict] = ACTIONS(7610), + [anon_sym___restrict__] = ACTIONS(7610), + [anon_sym__Atomic] = ACTIONS(7610), + [anon_sym__Noreturn] = ACTIONS(7610), + [anon_sym_noreturn] = ACTIONS(7610), + [anon_sym__Nonnull] = ACTIONS(7610), + [anon_sym_mutable] = ACTIONS(7610), + [anon_sym_constinit] = ACTIONS(7610), + [anon_sym_consteval] = ACTIONS(7610), + [anon_sym_alignas] = ACTIONS(7610), + [anon_sym__Alignas] = ACTIONS(7610), + [anon_sym_QMARK] = ACTIONS(7612), + [anon_sym_STAR_EQ] = ACTIONS(7612), + [anon_sym_SLASH_EQ] = ACTIONS(7612), + [anon_sym_PERCENT_EQ] = ACTIONS(7612), + [anon_sym_PLUS_EQ] = ACTIONS(7612), + [anon_sym_DASH_EQ] = ACTIONS(7612), + [anon_sym_LT_LT_EQ] = ACTIONS(7612), + [anon_sym_GT_GT_EQ] = ACTIONS(7612), + [anon_sym_AMP_EQ] = ACTIONS(7612), + [anon_sym_CARET_EQ] = ACTIONS(7612), + [anon_sym_PIPE_EQ] = ACTIONS(7612), + [anon_sym_and_eq] = ACTIONS(7610), + [anon_sym_or_eq] = ACTIONS(7610), + [anon_sym_xor_eq] = ACTIONS(7610), + [anon_sym_LT_EQ_GT] = ACTIONS(7612), + [anon_sym_or] = ACTIONS(7610), + [anon_sym_and] = ACTIONS(7610), + [anon_sym_bitor] = ACTIONS(7610), + [anon_sym_xor] = ACTIONS(7610), + [anon_sym_bitand] = ACTIONS(7610), + [anon_sym_not_eq] = ACTIONS(7610), + [anon_sym_DASH_DASH] = ACTIONS(7612), + [anon_sym_PLUS_PLUS] = ACTIONS(7612), + [anon_sym_DOT] = ACTIONS(7610), + [anon_sym_DOT_STAR] = ACTIONS(7612), + [anon_sym_DASH_GT] = ACTIONS(7612), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7610), + [anon_sym_override] = ACTIONS(7610), + [anon_sym_requires] = ACTIONS(7610), + [anon_sym_COLON_RBRACK] = ACTIONS(7612), }, [STATE(2186)] = { - [sym_identifier] = ACTIONS(7607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), - [anon_sym_COMMA] = ACTIONS(7609), - [anon_sym_RPAREN] = ACTIONS(7609), - [aux_sym_preproc_if_token2] = ACTIONS(7609), - [aux_sym_preproc_else_token1] = ACTIONS(7609), - [aux_sym_preproc_elif_token1] = ACTIONS(7607), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7609), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7609), - [anon_sym_LPAREN2] = ACTIONS(7609), - [anon_sym_DASH] = ACTIONS(7607), - [anon_sym_PLUS] = ACTIONS(7607), - [anon_sym_STAR] = ACTIONS(7607), - [anon_sym_SLASH] = ACTIONS(7607), - [anon_sym_PERCENT] = ACTIONS(7607), - [anon_sym_PIPE_PIPE] = ACTIONS(7609), - [anon_sym_AMP_AMP] = ACTIONS(7609), - [anon_sym_PIPE] = ACTIONS(7607), - [anon_sym_CARET] = ACTIONS(7607), - [anon_sym_AMP] = ACTIONS(7607), - [anon_sym_EQ_EQ] = ACTIONS(7609), - [anon_sym_BANG_EQ] = ACTIONS(7609), - [anon_sym_GT] = ACTIONS(7607), - [anon_sym_GT_EQ] = ACTIONS(7609), - [anon_sym_LT_EQ] = ACTIONS(7607), - [anon_sym_LT] = ACTIONS(7607), - [anon_sym_LT_LT] = ACTIONS(7607), - [anon_sym_GT_GT] = ACTIONS(7607), - [anon_sym_SEMI] = ACTIONS(7609), - [anon_sym___extension__] = ACTIONS(7607), - [anon_sym___attribute__] = ACTIONS(7607), - [anon_sym___attribute] = ACTIONS(7607), - [anon_sym_COLON] = ACTIONS(7607), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7609), - [anon_sym_LBRACE] = ACTIONS(7609), - [anon_sym_RBRACE] = ACTIONS(7609), - [anon_sym_LBRACK] = ACTIONS(7609), - [anon_sym_EQ] = ACTIONS(7607), - [anon_sym_const] = ACTIONS(7607), - [anon_sym_constexpr] = ACTIONS(7607), - [anon_sym_volatile] = ACTIONS(7607), - [anon_sym_restrict] = ACTIONS(7607), - [anon_sym___restrict__] = ACTIONS(7607), - [anon_sym__Atomic] = ACTIONS(7607), - [anon_sym__Noreturn] = ACTIONS(7607), - [anon_sym_noreturn] = ACTIONS(7607), - [anon_sym__Nonnull] = ACTIONS(7607), - [anon_sym_mutable] = ACTIONS(7607), - [anon_sym_constinit] = ACTIONS(7607), - [anon_sym_consteval] = ACTIONS(7607), - [anon_sym_alignas] = ACTIONS(7607), - [anon_sym__Alignas] = ACTIONS(7607), - [anon_sym_QMARK] = ACTIONS(7609), - [anon_sym_STAR_EQ] = ACTIONS(7609), - [anon_sym_SLASH_EQ] = ACTIONS(7609), - [anon_sym_PERCENT_EQ] = ACTIONS(7609), - [anon_sym_PLUS_EQ] = ACTIONS(7609), - [anon_sym_DASH_EQ] = ACTIONS(7609), - [anon_sym_LT_LT_EQ] = ACTIONS(7609), - [anon_sym_GT_GT_EQ] = ACTIONS(7609), - [anon_sym_AMP_EQ] = ACTIONS(7609), - [anon_sym_CARET_EQ] = ACTIONS(7609), - [anon_sym_PIPE_EQ] = ACTIONS(7609), - [anon_sym_and_eq] = ACTIONS(7607), - [anon_sym_or_eq] = ACTIONS(7607), - [anon_sym_xor_eq] = ACTIONS(7607), - [anon_sym_LT_EQ_GT] = ACTIONS(7609), - [anon_sym_or] = ACTIONS(7607), - [anon_sym_and] = ACTIONS(7607), - [anon_sym_bitor] = ACTIONS(7607), - [anon_sym_xor] = ACTIONS(7607), - [anon_sym_bitand] = ACTIONS(7607), - [anon_sym_not_eq] = ACTIONS(7607), - [anon_sym_DASH_DASH] = ACTIONS(7609), - [anon_sym_PLUS_PLUS] = ACTIONS(7609), - [anon_sym_DOT] = ACTIONS(7607), - [anon_sym_DOT_STAR] = ACTIONS(7609), - [anon_sym_DASH_GT] = ACTIONS(7609), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7607), - [anon_sym_override] = ACTIONS(7607), - [anon_sym_requires] = ACTIONS(7607), - [anon_sym_COLON_RBRACK] = ACTIONS(7609), + [sym_identifier] = ACTIONS(7614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7616), + [anon_sym_COMMA] = ACTIONS(7616), + [anon_sym_RPAREN] = ACTIONS(7616), + [aux_sym_preproc_if_token2] = ACTIONS(7616), + [aux_sym_preproc_else_token1] = ACTIONS(7616), + [aux_sym_preproc_elif_token1] = ACTIONS(7614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7616), + [anon_sym_LPAREN2] = ACTIONS(7616), + [anon_sym_DASH] = ACTIONS(7614), + [anon_sym_PLUS] = ACTIONS(7614), + [anon_sym_STAR] = ACTIONS(7614), + [anon_sym_SLASH] = ACTIONS(7614), + [anon_sym_PERCENT] = ACTIONS(7614), + [anon_sym_PIPE_PIPE] = ACTIONS(7616), + [anon_sym_AMP_AMP] = ACTIONS(7616), + [anon_sym_PIPE] = ACTIONS(7614), + [anon_sym_CARET] = ACTIONS(7614), + [anon_sym_AMP] = ACTIONS(7614), + [anon_sym_EQ_EQ] = ACTIONS(7616), + [anon_sym_BANG_EQ] = ACTIONS(7616), + [anon_sym_GT] = ACTIONS(7614), + [anon_sym_GT_EQ] = ACTIONS(7616), + [anon_sym_LT_EQ] = ACTIONS(7614), + [anon_sym_LT] = ACTIONS(7614), + [anon_sym_LT_LT] = ACTIONS(7614), + [anon_sym_GT_GT] = ACTIONS(7614), + [anon_sym_SEMI] = ACTIONS(7616), + [anon_sym___extension__] = ACTIONS(7614), + [anon_sym___attribute__] = ACTIONS(7614), + [anon_sym___attribute] = ACTIONS(7614), + [anon_sym_COLON] = ACTIONS(7614), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7616), + [anon_sym_LBRACE] = ACTIONS(7616), + [anon_sym_RBRACE] = ACTIONS(7616), + [anon_sym_LBRACK] = ACTIONS(7616), + [anon_sym_EQ] = ACTIONS(7614), + [anon_sym_const] = ACTIONS(7614), + [anon_sym_constexpr] = ACTIONS(7614), + [anon_sym_volatile] = ACTIONS(7614), + [anon_sym_restrict] = ACTIONS(7614), + [anon_sym___restrict__] = ACTIONS(7614), + [anon_sym__Atomic] = ACTIONS(7614), + [anon_sym__Noreturn] = ACTIONS(7614), + [anon_sym_noreturn] = ACTIONS(7614), + [anon_sym__Nonnull] = ACTIONS(7614), + [anon_sym_mutable] = ACTIONS(7614), + [anon_sym_constinit] = ACTIONS(7614), + [anon_sym_consteval] = ACTIONS(7614), + [anon_sym_alignas] = ACTIONS(7614), + [anon_sym__Alignas] = ACTIONS(7614), + [anon_sym_QMARK] = ACTIONS(7616), + [anon_sym_STAR_EQ] = ACTIONS(7616), + [anon_sym_SLASH_EQ] = ACTIONS(7616), + [anon_sym_PERCENT_EQ] = ACTIONS(7616), + [anon_sym_PLUS_EQ] = ACTIONS(7616), + [anon_sym_DASH_EQ] = ACTIONS(7616), + [anon_sym_LT_LT_EQ] = ACTIONS(7616), + [anon_sym_GT_GT_EQ] = ACTIONS(7616), + [anon_sym_AMP_EQ] = ACTIONS(7616), + [anon_sym_CARET_EQ] = ACTIONS(7616), + [anon_sym_PIPE_EQ] = ACTIONS(7616), + [anon_sym_and_eq] = ACTIONS(7614), + [anon_sym_or_eq] = ACTIONS(7614), + [anon_sym_xor_eq] = ACTIONS(7614), + [anon_sym_LT_EQ_GT] = ACTIONS(7616), + [anon_sym_or] = ACTIONS(7614), + [anon_sym_and] = ACTIONS(7614), + [anon_sym_bitor] = ACTIONS(7614), + [anon_sym_xor] = ACTIONS(7614), + [anon_sym_bitand] = ACTIONS(7614), + [anon_sym_not_eq] = ACTIONS(7614), + [anon_sym_DASH_DASH] = ACTIONS(7616), + [anon_sym_PLUS_PLUS] = ACTIONS(7616), + [anon_sym_DOT] = ACTIONS(7614), + [anon_sym_DOT_STAR] = ACTIONS(7616), + [anon_sym_DASH_GT] = ACTIONS(7616), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7614), + [anon_sym_override] = ACTIONS(7614), + [anon_sym_requires] = ACTIONS(7614), + [anon_sym_COLON_RBRACK] = ACTIONS(7616), }, [STATE(2187)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [sym_identifier] = ACTIONS(7528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [aux_sym_preproc_if_token2] = ACTIONS(7525), - [aux_sym_preproc_else_token1] = ACTIONS(7525), - [aux_sym_preproc_elif_token1] = ACTIONS(7528), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7525), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(7528), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(7003), - [anon_sym_unsigned] = ACTIONS(7003), - [anon_sym_long] = ACTIONS(7003), - [anon_sym_short] = ACTIONS(7003), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(7528), - [anon_sym_constexpr] = ACTIONS(7528), - [anon_sym_volatile] = ACTIONS(7528), - [anon_sym_restrict] = ACTIONS(7528), - [anon_sym___restrict__] = ACTIONS(7528), - [anon_sym__Atomic] = ACTIONS(7528), - [anon_sym__Noreturn] = ACTIONS(7528), - [anon_sym_noreturn] = ACTIONS(7528), - [anon_sym__Nonnull] = ACTIONS(7528), - [anon_sym_mutable] = ACTIONS(7528), - [anon_sym_constinit] = ACTIONS(7528), - [anon_sym_consteval] = ACTIONS(7528), - [anon_sym_alignas] = ACTIONS(7528), - [anon_sym__Alignas] = ACTIONS(7528), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7525), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_and_eq] = ACTIONS(7528), - [anon_sym_or_eq] = ACTIONS(7528), - [anon_sym_xor_eq] = ACTIONS(7528), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_requires] = ACTIONS(7528), - }, - [STATE(2188)] = { - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(2365), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [aux_sym_sized_type_specifier_repeat1] = STATE(2418), - [sym_identifier] = ACTIONS(7611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_RPAREN] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(7613), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(7616), - [anon_sym_unsigned] = ACTIONS(7616), - [anon_sym_long] = ACTIONS(7616), - [anon_sym_short] = ACTIONS(7616), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(7613), - [anon_sym_constexpr] = ACTIONS(7613), - [anon_sym_volatile] = ACTIONS(7613), - [anon_sym_restrict] = ACTIONS(7613), - [anon_sym___restrict__] = ACTIONS(7613), - [anon_sym__Atomic] = ACTIONS(7613), - [anon_sym__Noreturn] = ACTIONS(7613), - [anon_sym_noreturn] = ACTIONS(7613), - [anon_sym__Nonnull] = ACTIONS(7613), - [anon_sym_mutable] = ACTIONS(7613), - [anon_sym_constinit] = ACTIONS(7613), - [anon_sym_consteval] = ACTIONS(7613), + [aux_sym_sized_type_specifier_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(7618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7620), + [anon_sym_COMMA] = ACTIONS(7620), + [aux_sym_preproc_if_token2] = ACTIONS(7620), + [aux_sym_preproc_else_token1] = ACTIONS(7620), + [aux_sym_preproc_elif_token1] = ACTIONS(7618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7620), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7620), + [anon_sym_LPAREN2] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7618), + [anon_sym_STAR] = ACTIONS(7618), + [anon_sym_SLASH] = ACTIONS(7618), + [anon_sym_PERCENT] = ACTIONS(7618), + [anon_sym_PIPE_PIPE] = ACTIONS(7620), + [anon_sym_AMP_AMP] = ACTIONS(7620), + [anon_sym_PIPE] = ACTIONS(7618), + [anon_sym_CARET] = ACTIONS(7618), + [anon_sym_AMP] = ACTIONS(7618), + [anon_sym_EQ_EQ] = ACTIONS(7620), + [anon_sym_BANG_EQ] = ACTIONS(7620), + [anon_sym_GT] = ACTIONS(7618), + [anon_sym_GT_EQ] = ACTIONS(7620), + [anon_sym_LT_EQ] = ACTIONS(7618), + [anon_sym_LT] = ACTIONS(7618), + [anon_sym_LT_LT] = ACTIONS(7618), + [anon_sym_GT_GT] = ACTIONS(7618), + [anon_sym___extension__] = ACTIONS(7618), + [anon_sym___attribute__] = ACTIONS(7618), + [anon_sym___attribute] = ACTIONS(7618), + [anon_sym_LBRACE] = ACTIONS(7620), + [anon_sym_signed] = ACTIONS(7564), + [anon_sym_unsigned] = ACTIONS(7564), + [anon_sym_long] = ACTIONS(7564), + [anon_sym_short] = ACTIONS(7564), + [anon_sym_LBRACK] = ACTIONS(7620), + [anon_sym_RBRACK] = ACTIONS(7620), + [anon_sym_EQ] = ACTIONS(7618), + [anon_sym_const] = ACTIONS(7618), + [anon_sym_constexpr] = ACTIONS(7618), + [anon_sym_volatile] = ACTIONS(7618), + [anon_sym_restrict] = ACTIONS(7618), + [anon_sym___restrict__] = ACTIONS(7618), + [anon_sym__Atomic] = ACTIONS(7618), + [anon_sym__Noreturn] = ACTIONS(7618), + [anon_sym_noreturn] = ACTIONS(7618), + [anon_sym__Nonnull] = ACTIONS(7618), + [anon_sym_mutable] = ACTIONS(7618), + [anon_sym_constinit] = ACTIONS(7618), + [anon_sym_consteval] = ACTIONS(7618), [anon_sym_alignas] = ACTIONS(7618), [anon_sym__Alignas] = ACTIONS(7618), - [sym_primitive_type] = ACTIONS(7621), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7207), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), - [anon_sym_DASH_GT_STAR] = ACTIONS(7205), + [anon_sym_QMARK] = ACTIONS(7620), + [anon_sym_STAR_EQ] = ACTIONS(7620), + [anon_sym_SLASH_EQ] = ACTIONS(7620), + [anon_sym_PERCENT_EQ] = ACTIONS(7620), + [anon_sym_PLUS_EQ] = ACTIONS(7620), + [anon_sym_DASH_EQ] = ACTIONS(7620), + [anon_sym_LT_LT_EQ] = ACTIONS(7620), + [anon_sym_GT_GT_EQ] = ACTIONS(7620), + [anon_sym_AMP_EQ] = ACTIONS(7620), + [anon_sym_CARET_EQ] = ACTIONS(7620), + [anon_sym_PIPE_EQ] = ACTIONS(7620), + [anon_sym_and_eq] = ACTIONS(7618), + [anon_sym_or_eq] = ACTIONS(7618), + [anon_sym_xor_eq] = ACTIONS(7618), + [anon_sym_LT_EQ_GT] = ACTIONS(7620), + [anon_sym_or] = ACTIONS(7618), + [anon_sym_and] = ACTIONS(7618), + [anon_sym_bitor] = ACTIONS(7618), + [anon_sym_xor] = ACTIONS(7618), + [anon_sym_bitand] = ACTIONS(7618), + [anon_sym_not_eq] = ACTIONS(7618), + [anon_sym_DASH_DASH] = ACTIONS(7620), + [anon_sym_PLUS_PLUS] = ACTIONS(7620), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_DOT_STAR] = ACTIONS(7620), + [anon_sym_DASH_GT] = ACTIONS(7620), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7618), + [anon_sym_override] = ACTIONS(7618), + [anon_sym_requires] = ACTIONS(7618), + }, + [STATE(2188)] = { + [sym_identifier] = ACTIONS(7144), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_RPAREN] = ACTIONS(7146), + [aux_sym_preproc_if_token2] = ACTIONS(7146), + [aux_sym_preproc_else_token1] = ACTIONS(7146), + [aux_sym_preproc_elif_token1] = ACTIONS(7144), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7146), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym_SEMI] = ACTIONS(7146), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym___attribute__] = ACTIONS(7144), + [anon_sym___attribute] = ACTIONS(7144), + [anon_sym_COLON] = ACTIONS(7144), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7146), + [anon_sym_LBRACE] = ACTIONS(7146), + [anon_sym_RBRACE] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7146), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7144), + [anon_sym__Alignas] = ACTIONS(7144), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7146), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_and_eq] = ACTIONS(7144), + [anon_sym_or_eq] = ACTIONS(7144), + [anon_sym_xor_eq] = ACTIONS(7144), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7144), + [anon_sym_and] = ACTIONS(7144), + [anon_sym_bitor] = ACTIONS(7144), + [anon_sym_xor] = ACTIONS(7144), + [anon_sym_bitand] = ACTIONS(7144), + [anon_sym_not_eq] = ACTIONS(7144), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7146), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7144), + [anon_sym_override] = ACTIONS(7144), + [anon_sym_requires] = ACTIONS(7144), + [anon_sym_COLON_RBRACK] = ACTIONS(7146), }, [STATE(2189)] = { - [sym_identifier] = ACTIONS(7561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [aux_sym_preproc_if_token2] = ACTIONS(7563), - [aux_sym_preproc_else_token1] = ACTIONS(7563), - [aux_sym_preproc_elif_token1] = ACTIONS(7561), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7563), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym_SEMI] = ACTIONS(7563), - [anon_sym___extension__] = ACTIONS(7561), - [anon_sym___attribute__] = ACTIONS(7561), - [anon_sym___attribute] = ACTIONS(7561), - [anon_sym_COLON] = ACTIONS(7561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_RBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7561), - [anon_sym_volatile] = ACTIONS(7561), - [anon_sym_restrict] = ACTIONS(7561), - [anon_sym___restrict__] = ACTIONS(7561), - [anon_sym__Atomic] = ACTIONS(7561), - [anon_sym__Noreturn] = ACTIONS(7561), - [anon_sym_noreturn] = ACTIONS(7561), - [anon_sym__Nonnull] = ACTIONS(7561), - [anon_sym_mutable] = ACTIONS(7561), - [anon_sym_constinit] = ACTIONS(7561), - [anon_sym_consteval] = ACTIONS(7561), - [anon_sym_alignas] = ACTIONS(7561), - [anon_sym__Alignas] = ACTIONS(7561), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7561), - [anon_sym_or_eq] = ACTIONS(7561), - [anon_sym_xor_eq] = ACTIONS(7561), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7561), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7561), - [anon_sym_not_eq] = ACTIONS(7561), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7561), - [anon_sym_override] = ACTIONS(7561), - [anon_sym_requires] = ACTIONS(7561), - [anon_sym_COLON_RBRACK] = ACTIONS(7563), + [sym_identifier] = ACTIONS(6660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RPAREN] = ACTIONS(6653), + [aux_sym_preproc_if_token2] = ACTIONS(6653), + [aux_sym_preproc_else_token1] = ACTIONS(6653), + [aux_sym_preproc_elif_token1] = ACTIONS(6660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6653), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_PIPE_PIPE] = ACTIONS(6653), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6660), + [anon_sym_CARET] = ACTIONS(6660), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6653), + [anon_sym_BANG_EQ] = ACTIONS(6653), + [anon_sym_GT] = ACTIONS(6660), + [anon_sym_GT_EQ] = ACTIONS(6653), + [anon_sym_LT_EQ] = ACTIONS(6660), + [anon_sym_LT] = ACTIONS(6660), + [anon_sym_LT_LT] = ACTIONS(6660), + [anon_sym_GT_GT] = ACTIONS(6660), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6660), + [anon_sym___attribute] = ACTIONS(6660), + [anon_sym_COLON] = ACTIONS(6660), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6653), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_RBRACE] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6658), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6658), + [anon_sym_or_eq] = ACTIONS(6658), + [anon_sym_xor_eq] = ACTIONS(6658), + [anon_sym_LT_EQ_GT] = ACTIONS(6653), + [anon_sym_or] = ACTIONS(6660), + [anon_sym_and] = ACTIONS(6660), + [anon_sym_bitor] = ACTIONS(6660), + [anon_sym_xor] = ACTIONS(6660), + [anon_sym_bitand] = ACTIONS(6660), + [anon_sym_not_eq] = ACTIONS(6660), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_DOT] = ACTIONS(6660), + [anon_sym_DOT_STAR] = ACTIONS(6653), + [anon_sym_DASH_GT] = ACTIONS(6653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_COLON_RBRACK] = ACTIONS(6653), }, [STATE(2190)] = { - [sym_identifier] = ACTIONS(7561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [aux_sym_preproc_if_token2] = ACTIONS(7563), - [aux_sym_preproc_else_token1] = ACTIONS(7563), - [aux_sym_preproc_elif_token1] = ACTIONS(7561), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7563), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym_SEMI] = ACTIONS(7563), - [anon_sym___extension__] = ACTIONS(7561), - [anon_sym___attribute__] = ACTIONS(7561), - [anon_sym___attribute] = ACTIONS(7561), - [anon_sym_COLON] = ACTIONS(7561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_RBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7561), - [anon_sym_volatile] = ACTIONS(7561), - [anon_sym_restrict] = ACTIONS(7561), - [anon_sym___restrict__] = ACTIONS(7561), - [anon_sym__Atomic] = ACTIONS(7561), - [anon_sym__Noreturn] = ACTIONS(7561), - [anon_sym_noreturn] = ACTIONS(7561), - [anon_sym__Nonnull] = ACTIONS(7561), - [anon_sym_mutable] = ACTIONS(7561), - [anon_sym_constinit] = ACTIONS(7561), - [anon_sym_consteval] = ACTIONS(7561), - [anon_sym_alignas] = ACTIONS(7561), - [anon_sym__Alignas] = ACTIONS(7561), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7561), - [anon_sym_or_eq] = ACTIONS(7561), - [anon_sym_xor_eq] = ACTIONS(7561), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7561), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7561), - [anon_sym_not_eq] = ACTIONS(7561), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7561), - [anon_sym_override] = ACTIONS(7561), - [anon_sym_requires] = ACTIONS(7561), - [anon_sym_COLON_RBRACK] = ACTIONS(7563), + [aux_sym_sized_type_specifier_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(7622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7624), + [anon_sym_COMMA] = ACTIONS(7624), + [aux_sym_preproc_if_token2] = ACTIONS(7624), + [aux_sym_preproc_else_token1] = ACTIONS(7624), + [aux_sym_preproc_elif_token1] = ACTIONS(7622), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7624), + [anon_sym_LPAREN2] = ACTIONS(7624), + [anon_sym_DASH] = ACTIONS(7622), + [anon_sym_PLUS] = ACTIONS(7622), + [anon_sym_STAR] = ACTIONS(7622), + [anon_sym_SLASH] = ACTIONS(7622), + [anon_sym_PERCENT] = ACTIONS(7622), + [anon_sym_PIPE_PIPE] = ACTIONS(7624), + [anon_sym_AMP_AMP] = ACTIONS(7624), + [anon_sym_PIPE] = ACTIONS(7622), + [anon_sym_CARET] = ACTIONS(7622), + [anon_sym_AMP] = ACTIONS(7622), + [anon_sym_EQ_EQ] = ACTIONS(7624), + [anon_sym_BANG_EQ] = ACTIONS(7624), + [anon_sym_GT] = ACTIONS(7622), + [anon_sym_GT_EQ] = ACTIONS(7624), + [anon_sym_LT_EQ] = ACTIONS(7622), + [anon_sym_LT] = ACTIONS(7622), + [anon_sym_LT_LT] = ACTIONS(7622), + [anon_sym_GT_GT] = ACTIONS(7622), + [anon_sym___extension__] = ACTIONS(7622), + [anon_sym___attribute__] = ACTIONS(7622), + [anon_sym___attribute] = ACTIONS(7622), + [anon_sym_LBRACE] = ACTIONS(7624), + [anon_sym_signed] = ACTIONS(7564), + [anon_sym_unsigned] = ACTIONS(7564), + [anon_sym_long] = ACTIONS(7564), + [anon_sym_short] = ACTIONS(7564), + [anon_sym_LBRACK] = ACTIONS(7624), + [anon_sym_RBRACK] = ACTIONS(7624), + [anon_sym_EQ] = ACTIONS(7622), + [anon_sym_const] = ACTIONS(7622), + [anon_sym_constexpr] = ACTIONS(7622), + [anon_sym_volatile] = ACTIONS(7622), + [anon_sym_restrict] = ACTIONS(7622), + [anon_sym___restrict__] = ACTIONS(7622), + [anon_sym__Atomic] = ACTIONS(7622), + [anon_sym__Noreturn] = ACTIONS(7622), + [anon_sym_noreturn] = ACTIONS(7622), + [anon_sym__Nonnull] = ACTIONS(7622), + [anon_sym_mutable] = ACTIONS(7622), + [anon_sym_constinit] = ACTIONS(7622), + [anon_sym_consteval] = ACTIONS(7622), + [anon_sym_alignas] = ACTIONS(7622), + [anon_sym__Alignas] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7624), + [anon_sym_STAR_EQ] = ACTIONS(7624), + [anon_sym_SLASH_EQ] = ACTIONS(7624), + [anon_sym_PERCENT_EQ] = ACTIONS(7624), + [anon_sym_PLUS_EQ] = ACTIONS(7624), + [anon_sym_DASH_EQ] = ACTIONS(7624), + [anon_sym_LT_LT_EQ] = ACTIONS(7624), + [anon_sym_GT_GT_EQ] = ACTIONS(7624), + [anon_sym_AMP_EQ] = ACTIONS(7624), + [anon_sym_CARET_EQ] = ACTIONS(7624), + [anon_sym_PIPE_EQ] = ACTIONS(7624), + [anon_sym_and_eq] = ACTIONS(7622), + [anon_sym_or_eq] = ACTIONS(7622), + [anon_sym_xor_eq] = ACTIONS(7622), + [anon_sym_LT_EQ_GT] = ACTIONS(7624), + [anon_sym_or] = ACTIONS(7622), + [anon_sym_and] = ACTIONS(7622), + [anon_sym_bitor] = ACTIONS(7622), + [anon_sym_xor] = ACTIONS(7622), + [anon_sym_bitand] = ACTIONS(7622), + [anon_sym_not_eq] = ACTIONS(7622), + [anon_sym_DASH_DASH] = ACTIONS(7624), + [anon_sym_PLUS_PLUS] = ACTIONS(7624), + [anon_sym_DOT] = ACTIONS(7622), + [anon_sym_DOT_STAR] = ACTIONS(7624), + [anon_sym_DASH_GT] = ACTIONS(7624), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7622), + [anon_sym_override] = ACTIONS(7622), + [anon_sym_requires] = ACTIONS(7622), }, [STATE(2191)] = { - [sym_identifier] = ACTIONS(7623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), - [anon_sym_COMMA] = ACTIONS(7625), - [anon_sym_RPAREN] = ACTIONS(7625), - [aux_sym_preproc_if_token2] = ACTIONS(7625), - [aux_sym_preproc_else_token1] = ACTIONS(7625), - [aux_sym_preproc_elif_token1] = ACTIONS(7623), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7625), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7625), - [anon_sym_LPAREN2] = ACTIONS(7625), - [anon_sym_DASH] = ACTIONS(7623), - [anon_sym_PLUS] = ACTIONS(7623), - [anon_sym_STAR] = ACTIONS(7623), - [anon_sym_SLASH] = ACTIONS(7623), - [anon_sym_PERCENT] = ACTIONS(7623), - [anon_sym_PIPE_PIPE] = ACTIONS(7625), - [anon_sym_AMP_AMP] = ACTIONS(7625), - [anon_sym_PIPE] = ACTIONS(7623), - [anon_sym_CARET] = ACTIONS(7623), - [anon_sym_AMP] = ACTIONS(7623), - [anon_sym_EQ_EQ] = ACTIONS(7625), - [anon_sym_BANG_EQ] = ACTIONS(7625), - [anon_sym_GT] = ACTIONS(7623), - [anon_sym_GT_EQ] = ACTIONS(7625), - [anon_sym_LT_EQ] = ACTIONS(7623), - [anon_sym_LT] = ACTIONS(7623), - [anon_sym_LT_LT] = ACTIONS(7623), - [anon_sym_GT_GT] = ACTIONS(7623), - [anon_sym_SEMI] = ACTIONS(7625), - [anon_sym___extension__] = ACTIONS(7623), - [anon_sym___attribute__] = ACTIONS(7623), - [anon_sym___attribute] = ACTIONS(7623), - [anon_sym_COLON] = ACTIONS(7623), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7625), - [anon_sym_LBRACE] = ACTIONS(7625), - [anon_sym_RBRACE] = ACTIONS(7625), - [anon_sym_LBRACK] = ACTIONS(7625), - [anon_sym_EQ] = ACTIONS(7623), - [anon_sym_const] = ACTIONS(7623), - [anon_sym_constexpr] = ACTIONS(7623), - [anon_sym_volatile] = ACTIONS(7623), - [anon_sym_restrict] = ACTIONS(7623), - [anon_sym___restrict__] = ACTIONS(7623), - [anon_sym__Atomic] = ACTIONS(7623), - [anon_sym__Noreturn] = ACTIONS(7623), - [anon_sym_noreturn] = ACTIONS(7623), - [anon_sym__Nonnull] = ACTIONS(7623), - [anon_sym_mutable] = ACTIONS(7623), - [anon_sym_constinit] = ACTIONS(7623), - [anon_sym_consteval] = ACTIONS(7623), - [anon_sym_alignas] = ACTIONS(7623), - [anon_sym__Alignas] = ACTIONS(7623), - [anon_sym_QMARK] = ACTIONS(7625), - [anon_sym_STAR_EQ] = ACTIONS(7625), - [anon_sym_SLASH_EQ] = ACTIONS(7625), - [anon_sym_PERCENT_EQ] = ACTIONS(7625), - [anon_sym_PLUS_EQ] = ACTIONS(7625), - [anon_sym_DASH_EQ] = ACTIONS(7625), - [anon_sym_LT_LT_EQ] = ACTIONS(7625), - [anon_sym_GT_GT_EQ] = ACTIONS(7625), - [anon_sym_AMP_EQ] = ACTIONS(7625), - [anon_sym_CARET_EQ] = ACTIONS(7625), - [anon_sym_PIPE_EQ] = ACTIONS(7625), - [anon_sym_and_eq] = ACTIONS(7623), - [anon_sym_or_eq] = ACTIONS(7623), - [anon_sym_xor_eq] = ACTIONS(7623), - [anon_sym_LT_EQ_GT] = ACTIONS(7625), - [anon_sym_or] = ACTIONS(7623), - [anon_sym_and] = ACTIONS(7623), - [anon_sym_bitor] = ACTIONS(7623), - [anon_sym_xor] = ACTIONS(7623), - [anon_sym_bitand] = ACTIONS(7623), - [anon_sym_not_eq] = ACTIONS(7623), - [anon_sym_DASH_DASH] = ACTIONS(7625), - [anon_sym_PLUS_PLUS] = ACTIONS(7625), - [anon_sym_DOT] = ACTIONS(7623), - [anon_sym_DOT_STAR] = ACTIONS(7625), - [anon_sym_DASH_GT] = ACTIONS(7625), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7623), - [anon_sym_override] = ACTIONS(7623), - [anon_sym_requires] = ACTIONS(7623), - [anon_sym_COLON_RBRACK] = ACTIONS(7625), + [sym_type_qualifier] = STATE(2272), + [sym_alignas_qualifier] = STATE(2365), + [aux_sym__type_definition_type_repeat1] = STATE(2272), + [aux_sym_sized_type_specifier_repeat1] = STATE(2427), + [sym_identifier] = ACTIONS(7626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7628), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7631), + [anon_sym_unsigned] = ACTIONS(7631), + [anon_sym_long] = ACTIONS(7631), + [anon_sym_short] = ACTIONS(7631), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7628), + [anon_sym_constexpr] = ACTIONS(7628), + [anon_sym_volatile] = ACTIONS(7628), + [anon_sym_restrict] = ACTIONS(7628), + [anon_sym___restrict__] = ACTIONS(7628), + [anon_sym__Atomic] = ACTIONS(7628), + [anon_sym__Noreturn] = ACTIONS(7628), + [anon_sym_noreturn] = ACTIONS(7628), + [anon_sym__Nonnull] = ACTIONS(7628), + [anon_sym_mutable] = ACTIONS(7628), + [anon_sym_constinit] = ACTIONS(7628), + [anon_sym_consteval] = ACTIONS(7628), + [anon_sym_alignas] = ACTIONS(7633), + [anon_sym__Alignas] = ACTIONS(7633), + [sym_primitive_type] = ACTIONS(7636), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7195), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_requires] = ACTIONS(7195), + [anon_sym_DASH_GT_STAR] = ACTIONS(7193), }, [STATE(2192)] = { - [sym_identifier] = ACTIONS(7627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), - [anon_sym_COMMA] = ACTIONS(7629), - [anon_sym_RPAREN] = ACTIONS(7629), - [aux_sym_preproc_if_token2] = ACTIONS(7629), - [aux_sym_preproc_else_token1] = ACTIONS(7629), - [aux_sym_preproc_elif_token1] = ACTIONS(7627), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7629), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7629), - [anon_sym_LPAREN2] = ACTIONS(7629), - [anon_sym_DASH] = ACTIONS(7627), - [anon_sym_PLUS] = ACTIONS(7627), - [anon_sym_STAR] = ACTIONS(7627), - [anon_sym_SLASH] = ACTIONS(7627), - [anon_sym_PERCENT] = ACTIONS(7627), - [anon_sym_PIPE_PIPE] = ACTIONS(7629), - [anon_sym_AMP_AMP] = ACTIONS(7629), - [anon_sym_PIPE] = ACTIONS(7627), - [anon_sym_CARET] = ACTIONS(7627), - [anon_sym_AMP] = ACTIONS(7627), - [anon_sym_EQ_EQ] = ACTIONS(7629), - [anon_sym_BANG_EQ] = ACTIONS(7629), - [anon_sym_GT] = ACTIONS(7627), - [anon_sym_GT_EQ] = ACTIONS(7629), - [anon_sym_LT_EQ] = ACTIONS(7627), - [anon_sym_LT] = ACTIONS(7627), - [anon_sym_LT_LT] = ACTIONS(7627), - [anon_sym_GT_GT] = ACTIONS(7627), - [anon_sym_SEMI] = ACTIONS(7629), - [anon_sym___extension__] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(7627), - [anon_sym___attribute] = ACTIONS(7627), - [anon_sym_COLON] = ACTIONS(7627), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7629), - [anon_sym_LBRACE] = ACTIONS(7629), - [anon_sym_RBRACE] = ACTIONS(7629), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7627), - [anon_sym_const] = ACTIONS(7627), - [anon_sym_constexpr] = ACTIONS(7627), - [anon_sym_volatile] = ACTIONS(7627), - [anon_sym_restrict] = ACTIONS(7627), - [anon_sym___restrict__] = ACTIONS(7627), - [anon_sym__Atomic] = ACTIONS(7627), - [anon_sym__Noreturn] = ACTIONS(7627), - [anon_sym_noreturn] = ACTIONS(7627), - [anon_sym__Nonnull] = ACTIONS(7627), - [anon_sym_mutable] = ACTIONS(7627), - [anon_sym_constinit] = ACTIONS(7627), - [anon_sym_consteval] = ACTIONS(7627), - [anon_sym_alignas] = ACTIONS(7627), - [anon_sym__Alignas] = ACTIONS(7627), - [anon_sym_QMARK] = ACTIONS(7629), - [anon_sym_STAR_EQ] = ACTIONS(7629), - [anon_sym_SLASH_EQ] = ACTIONS(7629), - [anon_sym_PERCENT_EQ] = ACTIONS(7629), - [anon_sym_PLUS_EQ] = ACTIONS(7629), - [anon_sym_DASH_EQ] = ACTIONS(7629), - [anon_sym_LT_LT_EQ] = ACTIONS(7629), - [anon_sym_GT_GT_EQ] = ACTIONS(7629), - [anon_sym_AMP_EQ] = ACTIONS(7629), - [anon_sym_CARET_EQ] = ACTIONS(7629), - [anon_sym_PIPE_EQ] = ACTIONS(7629), - [anon_sym_and_eq] = ACTIONS(7627), - [anon_sym_or_eq] = ACTIONS(7627), - [anon_sym_xor_eq] = ACTIONS(7627), - [anon_sym_LT_EQ_GT] = ACTIONS(7629), - [anon_sym_or] = ACTIONS(7627), - [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7629), - [anon_sym_PLUS_PLUS] = ACTIONS(7629), - [anon_sym_DOT] = ACTIONS(7627), - [anon_sym_DOT_STAR] = ACTIONS(7629), - [anon_sym_DASH_GT] = ACTIONS(7629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7627), - [anon_sym_override] = ACTIONS(7627), - [anon_sym_requires] = ACTIONS(7627), - [anon_sym_COLON_RBRACK] = ACTIONS(7629), + [sym_identifier] = ACTIONS(7638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_RPAREN] = ACTIONS(7640), + [aux_sym_preproc_if_token2] = ACTIONS(7640), + [aux_sym_preproc_else_token1] = ACTIONS(7640), + [aux_sym_preproc_elif_token1] = ACTIONS(7638), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7640), + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7638), + [anon_sym_PLUS] = ACTIONS(7638), + [anon_sym_STAR] = ACTIONS(7638), + [anon_sym_SLASH] = ACTIONS(7638), + [anon_sym_PERCENT] = ACTIONS(7638), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7638), + [anon_sym_CARET] = ACTIONS(7638), + [anon_sym_AMP] = ACTIONS(7638), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_GT] = ACTIONS(7638), + [anon_sym_GT_EQ] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7638), + [anon_sym_LT] = ACTIONS(7638), + [anon_sym_LT_LT] = ACTIONS(7638), + [anon_sym_GT_GT] = ACTIONS(7638), + [anon_sym_SEMI] = ACTIONS(7640), + [anon_sym___extension__] = ACTIONS(7638), + [anon_sym___attribute__] = ACTIONS(7638), + [anon_sym___attribute] = ACTIONS(7638), + [anon_sym_COLON] = ACTIONS(7638), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_RBRACE] = ACTIONS(7640), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(7638), + [anon_sym_const] = ACTIONS(7638), + [anon_sym_constexpr] = ACTIONS(7638), + [anon_sym_volatile] = ACTIONS(7638), + [anon_sym_restrict] = ACTIONS(7638), + [anon_sym___restrict__] = ACTIONS(7638), + [anon_sym__Atomic] = ACTIONS(7638), + [anon_sym__Noreturn] = ACTIONS(7638), + [anon_sym_noreturn] = ACTIONS(7638), + [anon_sym__Nonnull] = ACTIONS(7638), + [anon_sym_mutable] = ACTIONS(7638), + [anon_sym_constinit] = ACTIONS(7638), + [anon_sym_consteval] = ACTIONS(7638), + [anon_sym_alignas] = ACTIONS(7638), + [anon_sym__Alignas] = ACTIONS(7638), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_STAR_EQ] = ACTIONS(7640), + [anon_sym_SLASH_EQ] = ACTIONS(7640), + [anon_sym_PERCENT_EQ] = ACTIONS(7640), + [anon_sym_PLUS_EQ] = ACTIONS(7640), + [anon_sym_DASH_EQ] = ACTIONS(7640), + [anon_sym_LT_LT_EQ] = ACTIONS(7640), + [anon_sym_GT_GT_EQ] = ACTIONS(7640), + [anon_sym_AMP_EQ] = ACTIONS(7640), + [anon_sym_CARET_EQ] = ACTIONS(7640), + [anon_sym_PIPE_EQ] = ACTIONS(7640), + [anon_sym_and_eq] = ACTIONS(7638), + [anon_sym_or_eq] = ACTIONS(7638), + [anon_sym_xor_eq] = ACTIONS(7638), + [anon_sym_LT_EQ_GT] = ACTIONS(7640), + [anon_sym_or] = ACTIONS(7638), + [anon_sym_and] = ACTIONS(7638), + [anon_sym_bitor] = ACTIONS(7638), + [anon_sym_xor] = ACTIONS(7638), + [anon_sym_bitand] = ACTIONS(7638), + [anon_sym_not_eq] = ACTIONS(7638), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7638), + [anon_sym_DOT_STAR] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7640), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7638), + [anon_sym_override] = ACTIONS(7638), + [anon_sym_requires] = ACTIONS(7638), + [anon_sym_COLON_RBRACK] = ACTIONS(7640), }, [STATE(2193)] = { - [sym_identifier] = ACTIONS(7631), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), - [anon_sym_COMMA] = ACTIONS(7633), - [anon_sym_RPAREN] = ACTIONS(7633), - [aux_sym_preproc_if_token2] = ACTIONS(7633), - [aux_sym_preproc_else_token1] = ACTIONS(7633), - [aux_sym_preproc_elif_token1] = ACTIONS(7631), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7633), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7633), - [anon_sym_LPAREN2] = ACTIONS(7633), - [anon_sym_DASH] = ACTIONS(7631), - [anon_sym_PLUS] = ACTIONS(7631), - [anon_sym_STAR] = ACTIONS(7631), - [anon_sym_SLASH] = ACTIONS(7631), - [anon_sym_PERCENT] = ACTIONS(7631), - [anon_sym_PIPE_PIPE] = ACTIONS(7633), - [anon_sym_AMP_AMP] = ACTIONS(7633), - [anon_sym_PIPE] = ACTIONS(7631), - [anon_sym_CARET] = ACTIONS(7631), - [anon_sym_AMP] = ACTIONS(7631), - [anon_sym_EQ_EQ] = ACTIONS(7633), - [anon_sym_BANG_EQ] = ACTIONS(7633), - [anon_sym_GT] = ACTIONS(7631), - [anon_sym_GT_EQ] = ACTIONS(7633), - [anon_sym_LT_EQ] = ACTIONS(7631), - [anon_sym_LT] = ACTIONS(7631), - [anon_sym_LT_LT] = ACTIONS(7631), - [anon_sym_GT_GT] = ACTIONS(7631), - [anon_sym_SEMI] = ACTIONS(7633), - [anon_sym___extension__] = ACTIONS(7631), - [anon_sym___attribute__] = ACTIONS(7631), - [anon_sym___attribute] = ACTIONS(7631), - [anon_sym_COLON] = ACTIONS(7631), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7633), - [anon_sym_LBRACE] = ACTIONS(7633), - [anon_sym_RBRACE] = ACTIONS(7633), - [anon_sym_LBRACK] = ACTIONS(7633), - [anon_sym_EQ] = ACTIONS(7631), - [anon_sym_const] = ACTIONS(7631), - [anon_sym_constexpr] = ACTIONS(7631), - [anon_sym_volatile] = ACTIONS(7631), - [anon_sym_restrict] = ACTIONS(7631), - [anon_sym___restrict__] = ACTIONS(7631), - [anon_sym__Atomic] = ACTIONS(7631), - [anon_sym__Noreturn] = ACTIONS(7631), - [anon_sym_noreturn] = ACTIONS(7631), - [anon_sym__Nonnull] = ACTIONS(7631), - [anon_sym_mutable] = ACTIONS(7631), - [anon_sym_constinit] = ACTIONS(7631), - [anon_sym_consteval] = ACTIONS(7631), - [anon_sym_alignas] = ACTIONS(7631), - [anon_sym__Alignas] = ACTIONS(7631), - [anon_sym_QMARK] = ACTIONS(7633), - [anon_sym_STAR_EQ] = ACTIONS(7633), - [anon_sym_SLASH_EQ] = ACTIONS(7633), - [anon_sym_PERCENT_EQ] = ACTIONS(7633), - [anon_sym_PLUS_EQ] = ACTIONS(7633), - [anon_sym_DASH_EQ] = ACTIONS(7633), - [anon_sym_LT_LT_EQ] = ACTIONS(7633), - [anon_sym_GT_GT_EQ] = ACTIONS(7633), - [anon_sym_AMP_EQ] = ACTIONS(7633), - [anon_sym_CARET_EQ] = ACTIONS(7633), - [anon_sym_PIPE_EQ] = ACTIONS(7633), - [anon_sym_and_eq] = ACTIONS(7631), - [anon_sym_or_eq] = ACTIONS(7631), - [anon_sym_xor_eq] = ACTIONS(7631), - [anon_sym_LT_EQ_GT] = ACTIONS(7633), - [anon_sym_or] = ACTIONS(7631), - [anon_sym_and] = ACTIONS(7631), - [anon_sym_bitor] = ACTIONS(7631), - [anon_sym_xor] = ACTIONS(7631), - [anon_sym_bitand] = ACTIONS(7631), - [anon_sym_not_eq] = ACTIONS(7631), - [anon_sym_DASH_DASH] = ACTIONS(7633), - [anon_sym_PLUS_PLUS] = ACTIONS(7633), - [anon_sym_DOT] = ACTIONS(7631), - [anon_sym_DOT_STAR] = ACTIONS(7633), - [anon_sym_DASH_GT] = ACTIONS(7633), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7631), - [anon_sym_override] = ACTIONS(7631), - [anon_sym_requires] = ACTIONS(7631), - [anon_sym_COLON_RBRACK] = ACTIONS(7633), + [sym_identifier] = ACTIONS(7642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7644), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_RPAREN] = ACTIONS(7644), + [aux_sym_preproc_if_token2] = ACTIONS(7644), + [aux_sym_preproc_else_token1] = ACTIONS(7644), + [aux_sym_preproc_elif_token1] = ACTIONS(7642), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7644), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7644), + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_PERCENT] = ACTIONS(7642), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_LT_LT] = ACTIONS(7642), + [anon_sym_GT_GT] = ACTIONS(7642), + [anon_sym_SEMI] = ACTIONS(7644), + [anon_sym___extension__] = ACTIONS(7642), + [anon_sym___attribute__] = ACTIONS(7642), + [anon_sym___attribute] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7644), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_RBRACE] = ACTIONS(7644), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_const] = ACTIONS(7642), + [anon_sym_constexpr] = ACTIONS(7642), + [anon_sym_volatile] = ACTIONS(7642), + [anon_sym_restrict] = ACTIONS(7642), + [anon_sym___restrict__] = ACTIONS(7642), + [anon_sym__Atomic] = ACTIONS(7642), + [anon_sym__Noreturn] = ACTIONS(7642), + [anon_sym_noreturn] = ACTIONS(7642), + [anon_sym__Nonnull] = ACTIONS(7642), + [anon_sym_mutable] = ACTIONS(7642), + [anon_sym_constinit] = ACTIONS(7642), + [anon_sym_consteval] = ACTIONS(7642), + [anon_sym_alignas] = ACTIONS(7642), + [anon_sym__Alignas] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_STAR_EQ] = ACTIONS(7644), + [anon_sym_SLASH_EQ] = ACTIONS(7644), + [anon_sym_PERCENT_EQ] = ACTIONS(7644), + [anon_sym_PLUS_EQ] = ACTIONS(7644), + [anon_sym_DASH_EQ] = ACTIONS(7644), + [anon_sym_LT_LT_EQ] = ACTIONS(7644), + [anon_sym_GT_GT_EQ] = ACTIONS(7644), + [anon_sym_AMP_EQ] = ACTIONS(7644), + [anon_sym_CARET_EQ] = ACTIONS(7644), + [anon_sym_PIPE_EQ] = ACTIONS(7644), + [anon_sym_and_eq] = ACTIONS(7642), + [anon_sym_or_eq] = ACTIONS(7642), + [anon_sym_xor_eq] = ACTIONS(7642), + [anon_sym_LT_EQ_GT] = ACTIONS(7644), + [anon_sym_or] = ACTIONS(7642), + [anon_sym_and] = ACTIONS(7642), + [anon_sym_bitor] = ACTIONS(7642), + [anon_sym_xor] = ACTIONS(7642), + [anon_sym_bitand] = ACTIONS(7642), + [anon_sym_not_eq] = ACTIONS(7642), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7642), + [anon_sym_DOT_STAR] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7644), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7642), + [anon_sym_override] = ACTIONS(7642), + [anon_sym_requires] = ACTIONS(7642), + [anon_sym_COLON_RBRACK] = ACTIONS(7644), }, [STATE(2194)] = { - [sym_identifier] = ACTIONS(7635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), - [anon_sym_COMMA] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(7637), - [aux_sym_preproc_if_token2] = ACTIONS(7637), - [aux_sym_preproc_else_token1] = ACTIONS(7637), - [aux_sym_preproc_elif_token1] = ACTIONS(7635), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7637), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7637), - [anon_sym_LPAREN2] = ACTIONS(7637), - [anon_sym_DASH] = ACTIONS(7635), - [anon_sym_PLUS] = ACTIONS(7635), - [anon_sym_STAR] = ACTIONS(7635), - [anon_sym_SLASH] = ACTIONS(7635), - [anon_sym_PERCENT] = ACTIONS(7635), - [anon_sym_PIPE_PIPE] = ACTIONS(7637), - [anon_sym_AMP_AMP] = ACTIONS(7637), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_CARET] = ACTIONS(7635), - [anon_sym_AMP] = ACTIONS(7635), - [anon_sym_EQ_EQ] = ACTIONS(7637), - [anon_sym_BANG_EQ] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_EQ] = ACTIONS(7637), - [anon_sym_LT_EQ] = ACTIONS(7635), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(7635), - [anon_sym_SEMI] = ACTIONS(7637), - [anon_sym___extension__] = ACTIONS(7635), - [anon_sym___attribute__] = ACTIONS(7635), - [anon_sym___attribute] = ACTIONS(7635), - [anon_sym_COLON] = ACTIONS(7635), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7637), - [anon_sym_LBRACE] = ACTIONS(7637), - [anon_sym_RBRACE] = ACTIONS(7637), - [anon_sym_LBRACK] = ACTIONS(7637), - [anon_sym_EQ] = ACTIONS(7635), - [anon_sym_const] = ACTIONS(7635), - [anon_sym_constexpr] = ACTIONS(7635), - [anon_sym_volatile] = ACTIONS(7635), - [anon_sym_restrict] = ACTIONS(7635), - [anon_sym___restrict__] = ACTIONS(7635), - [anon_sym__Atomic] = ACTIONS(7635), - [anon_sym__Noreturn] = ACTIONS(7635), - [anon_sym_noreturn] = ACTIONS(7635), - [anon_sym__Nonnull] = ACTIONS(7635), - [anon_sym_mutable] = ACTIONS(7635), - [anon_sym_constinit] = ACTIONS(7635), - [anon_sym_consteval] = ACTIONS(7635), - [anon_sym_alignas] = ACTIONS(7635), - [anon_sym__Alignas] = ACTIONS(7635), - [anon_sym_QMARK] = ACTIONS(7637), - [anon_sym_STAR_EQ] = ACTIONS(7637), - [anon_sym_SLASH_EQ] = ACTIONS(7637), - [anon_sym_PERCENT_EQ] = ACTIONS(7637), - [anon_sym_PLUS_EQ] = ACTIONS(7637), - [anon_sym_DASH_EQ] = ACTIONS(7637), - [anon_sym_LT_LT_EQ] = ACTIONS(7637), - [anon_sym_GT_GT_EQ] = ACTIONS(7637), - [anon_sym_AMP_EQ] = ACTIONS(7637), - [anon_sym_CARET_EQ] = ACTIONS(7637), - [anon_sym_PIPE_EQ] = ACTIONS(7637), - [anon_sym_and_eq] = ACTIONS(7635), - [anon_sym_or_eq] = ACTIONS(7635), - [anon_sym_xor_eq] = ACTIONS(7635), - [anon_sym_LT_EQ_GT] = ACTIONS(7637), - [anon_sym_or] = ACTIONS(7635), - [anon_sym_and] = ACTIONS(7635), - [anon_sym_bitor] = ACTIONS(7635), - [anon_sym_xor] = ACTIONS(7635), - [anon_sym_bitand] = ACTIONS(7635), - [anon_sym_not_eq] = ACTIONS(7635), - [anon_sym_DASH_DASH] = ACTIONS(7637), - [anon_sym_PLUS_PLUS] = ACTIONS(7637), - [anon_sym_DOT] = ACTIONS(7635), - [anon_sym_DOT_STAR] = ACTIONS(7637), - [anon_sym_DASH_GT] = ACTIONS(7637), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7635), - [anon_sym_override] = ACTIONS(7635), - [anon_sym_requires] = ACTIONS(7635), - [anon_sym_COLON_RBRACK] = ACTIONS(7637), + [sym_identifier] = ACTIONS(7646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7648), + [anon_sym_COMMA] = ACTIONS(7648), + [anon_sym_RPAREN] = ACTIONS(7648), + [aux_sym_preproc_if_token2] = ACTIONS(7648), + [aux_sym_preproc_else_token1] = ACTIONS(7648), + [aux_sym_preproc_elif_token1] = ACTIONS(7646), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7648), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7648), + [anon_sym_LPAREN2] = ACTIONS(7648), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_STAR] = ACTIONS(7646), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_PERCENT] = ACTIONS(7646), + [anon_sym_PIPE_PIPE] = ACTIONS(7648), + [anon_sym_AMP_AMP] = ACTIONS(7648), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_CARET] = ACTIONS(7646), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_EQ_EQ] = ACTIONS(7648), + [anon_sym_BANG_EQ] = ACTIONS(7648), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7648), + [anon_sym_LT_EQ] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_LT_LT] = ACTIONS(7646), + [anon_sym_GT_GT] = ACTIONS(7646), + [anon_sym_SEMI] = ACTIONS(7648), + [anon_sym___extension__] = ACTIONS(7646), + [anon_sym___attribute__] = ACTIONS(7646), + [anon_sym___attribute] = ACTIONS(7646), + [anon_sym_COLON] = ACTIONS(7646), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7648), + [anon_sym_LBRACE] = ACTIONS(7648), + [anon_sym_RBRACE] = ACTIONS(7648), + [anon_sym_LBRACK] = ACTIONS(7648), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_const] = ACTIONS(7646), + [anon_sym_constexpr] = ACTIONS(7646), + [anon_sym_volatile] = ACTIONS(7646), + [anon_sym_restrict] = ACTIONS(7646), + [anon_sym___restrict__] = ACTIONS(7646), + [anon_sym__Atomic] = ACTIONS(7646), + [anon_sym__Noreturn] = ACTIONS(7646), + [anon_sym_noreturn] = ACTIONS(7646), + [anon_sym__Nonnull] = ACTIONS(7646), + [anon_sym_mutable] = ACTIONS(7646), + [anon_sym_constinit] = ACTIONS(7646), + [anon_sym_consteval] = ACTIONS(7646), + [anon_sym_alignas] = ACTIONS(7646), + [anon_sym__Alignas] = ACTIONS(7646), + [anon_sym_QMARK] = ACTIONS(7648), + [anon_sym_STAR_EQ] = ACTIONS(7648), + [anon_sym_SLASH_EQ] = ACTIONS(7648), + [anon_sym_PERCENT_EQ] = ACTIONS(7648), + [anon_sym_PLUS_EQ] = ACTIONS(7648), + [anon_sym_DASH_EQ] = ACTIONS(7648), + [anon_sym_LT_LT_EQ] = ACTIONS(7648), + [anon_sym_GT_GT_EQ] = ACTIONS(7648), + [anon_sym_AMP_EQ] = ACTIONS(7648), + [anon_sym_CARET_EQ] = ACTIONS(7648), + [anon_sym_PIPE_EQ] = ACTIONS(7648), + [anon_sym_and_eq] = ACTIONS(7646), + [anon_sym_or_eq] = ACTIONS(7646), + [anon_sym_xor_eq] = ACTIONS(7646), + [anon_sym_LT_EQ_GT] = ACTIONS(7648), + [anon_sym_or] = ACTIONS(7646), + [anon_sym_and] = ACTIONS(7646), + [anon_sym_bitor] = ACTIONS(7646), + [anon_sym_xor] = ACTIONS(7646), + [anon_sym_bitand] = ACTIONS(7646), + [anon_sym_not_eq] = ACTIONS(7646), + [anon_sym_DASH_DASH] = ACTIONS(7648), + [anon_sym_PLUS_PLUS] = ACTIONS(7648), + [anon_sym_DOT] = ACTIONS(7646), + [anon_sym_DOT_STAR] = ACTIONS(7648), + [anon_sym_DASH_GT] = ACTIONS(7648), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7646), + [anon_sym_override] = ACTIONS(7646), + [anon_sym_requires] = ACTIONS(7646), + [anon_sym_COLON_RBRACK] = ACTIONS(7648), }, [STATE(2195)] = { - [sym_identifier] = ACTIONS(7639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), - [anon_sym_COMMA] = ACTIONS(7641), - [anon_sym_RPAREN] = ACTIONS(7641), - [aux_sym_preproc_if_token2] = ACTIONS(7641), - [aux_sym_preproc_else_token1] = ACTIONS(7641), - [aux_sym_preproc_elif_token1] = ACTIONS(7639), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7641), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7641), - [anon_sym_LPAREN2] = ACTIONS(7641), - [anon_sym_DASH] = ACTIONS(7639), - [anon_sym_PLUS] = ACTIONS(7639), - [anon_sym_STAR] = ACTIONS(7639), - [anon_sym_SLASH] = ACTIONS(7639), - [anon_sym_PERCENT] = ACTIONS(7639), - [anon_sym_PIPE_PIPE] = ACTIONS(7641), - [anon_sym_AMP_AMP] = ACTIONS(7641), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_CARET] = ACTIONS(7639), - [anon_sym_AMP] = ACTIONS(7639), - [anon_sym_EQ_EQ] = ACTIONS(7641), - [anon_sym_BANG_EQ] = ACTIONS(7641), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_EQ] = ACTIONS(7641), - [anon_sym_LT_EQ] = ACTIONS(7639), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_LT_LT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(7639), - [anon_sym_SEMI] = ACTIONS(7641), - [anon_sym___extension__] = ACTIONS(7639), - [anon_sym___attribute__] = ACTIONS(7639), - [anon_sym___attribute] = ACTIONS(7639), - [anon_sym_COLON] = ACTIONS(7639), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7641), - [anon_sym_LBRACE] = ACTIONS(7641), - [anon_sym_RBRACE] = ACTIONS(7641), - [anon_sym_LBRACK] = ACTIONS(7641), - [anon_sym_EQ] = ACTIONS(7639), - [anon_sym_const] = ACTIONS(7639), - [anon_sym_constexpr] = ACTIONS(7639), - [anon_sym_volatile] = ACTIONS(7639), - [anon_sym_restrict] = ACTIONS(7639), - [anon_sym___restrict__] = ACTIONS(7639), - [anon_sym__Atomic] = ACTIONS(7639), - [anon_sym__Noreturn] = ACTIONS(7639), - [anon_sym_noreturn] = ACTIONS(7639), - [anon_sym__Nonnull] = ACTIONS(7639), - [anon_sym_mutable] = ACTIONS(7639), - [anon_sym_constinit] = ACTIONS(7639), - [anon_sym_consteval] = ACTIONS(7639), - [anon_sym_alignas] = ACTIONS(7639), - [anon_sym__Alignas] = ACTIONS(7639), - [anon_sym_QMARK] = ACTIONS(7641), - [anon_sym_STAR_EQ] = ACTIONS(7641), - [anon_sym_SLASH_EQ] = ACTIONS(7641), - [anon_sym_PERCENT_EQ] = ACTIONS(7641), - [anon_sym_PLUS_EQ] = ACTIONS(7641), - [anon_sym_DASH_EQ] = ACTIONS(7641), - [anon_sym_LT_LT_EQ] = ACTIONS(7641), - [anon_sym_GT_GT_EQ] = ACTIONS(7641), - [anon_sym_AMP_EQ] = ACTIONS(7641), - [anon_sym_CARET_EQ] = ACTIONS(7641), - [anon_sym_PIPE_EQ] = ACTIONS(7641), - [anon_sym_and_eq] = ACTIONS(7639), - [anon_sym_or_eq] = ACTIONS(7639), - [anon_sym_xor_eq] = ACTIONS(7639), - [anon_sym_LT_EQ_GT] = ACTIONS(7641), - [anon_sym_or] = ACTIONS(7639), - [anon_sym_and] = ACTIONS(7639), - [anon_sym_bitor] = ACTIONS(7639), - [anon_sym_xor] = ACTIONS(7639), - [anon_sym_bitand] = ACTIONS(7639), - [anon_sym_not_eq] = ACTIONS(7639), - [anon_sym_DASH_DASH] = ACTIONS(7641), - [anon_sym_PLUS_PLUS] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(7639), - [anon_sym_DOT_STAR] = ACTIONS(7641), - [anon_sym_DASH_GT] = ACTIONS(7641), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7639), - [anon_sym_override] = ACTIONS(7639), - [anon_sym_requires] = ACTIONS(7639), - [anon_sym_COLON_RBRACK] = ACTIONS(7641), + [sym_identifier] = ACTIONS(7650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7652), + [anon_sym_COMMA] = ACTIONS(7652), + [anon_sym_RPAREN] = ACTIONS(7652), + [aux_sym_preproc_if_token2] = ACTIONS(7652), + [aux_sym_preproc_else_token1] = ACTIONS(7652), + [aux_sym_preproc_elif_token1] = ACTIONS(7650), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7652), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7652), + [anon_sym_LPAREN2] = ACTIONS(7652), + [anon_sym_DASH] = ACTIONS(7650), + [anon_sym_PLUS] = ACTIONS(7650), + [anon_sym_STAR] = ACTIONS(7650), + [anon_sym_SLASH] = ACTIONS(7650), + [anon_sym_PERCENT] = ACTIONS(7650), + [anon_sym_PIPE_PIPE] = ACTIONS(7652), + [anon_sym_AMP_AMP] = ACTIONS(7652), + [anon_sym_PIPE] = ACTIONS(7650), + [anon_sym_CARET] = ACTIONS(7650), + [anon_sym_AMP] = ACTIONS(7650), + [anon_sym_EQ_EQ] = ACTIONS(7652), + [anon_sym_BANG_EQ] = ACTIONS(7652), + [anon_sym_GT] = ACTIONS(7650), + [anon_sym_GT_EQ] = ACTIONS(7652), + [anon_sym_LT_EQ] = ACTIONS(7650), + [anon_sym_LT] = ACTIONS(7650), + [anon_sym_LT_LT] = ACTIONS(7650), + [anon_sym_GT_GT] = ACTIONS(7650), + [anon_sym_SEMI] = ACTIONS(7652), + [anon_sym___extension__] = ACTIONS(7650), + [anon_sym___attribute__] = ACTIONS(7650), + [anon_sym___attribute] = ACTIONS(7650), + [anon_sym_COLON] = ACTIONS(7650), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7652), + [anon_sym_LBRACE] = ACTIONS(7652), + [anon_sym_RBRACE] = ACTIONS(7652), + [anon_sym_LBRACK] = ACTIONS(7652), + [anon_sym_EQ] = ACTIONS(7650), + [anon_sym_const] = ACTIONS(7650), + [anon_sym_constexpr] = ACTIONS(7650), + [anon_sym_volatile] = ACTIONS(7650), + [anon_sym_restrict] = ACTIONS(7650), + [anon_sym___restrict__] = ACTIONS(7650), + [anon_sym__Atomic] = ACTIONS(7650), + [anon_sym__Noreturn] = ACTIONS(7650), + [anon_sym_noreturn] = ACTIONS(7650), + [anon_sym__Nonnull] = ACTIONS(7650), + [anon_sym_mutable] = ACTIONS(7650), + [anon_sym_constinit] = ACTIONS(7650), + [anon_sym_consteval] = ACTIONS(7650), + [anon_sym_alignas] = ACTIONS(7650), + [anon_sym__Alignas] = ACTIONS(7650), + [anon_sym_QMARK] = ACTIONS(7652), + [anon_sym_STAR_EQ] = ACTIONS(7652), + [anon_sym_SLASH_EQ] = ACTIONS(7652), + [anon_sym_PERCENT_EQ] = ACTIONS(7652), + [anon_sym_PLUS_EQ] = ACTIONS(7652), + [anon_sym_DASH_EQ] = ACTIONS(7652), + [anon_sym_LT_LT_EQ] = ACTIONS(7652), + [anon_sym_GT_GT_EQ] = ACTIONS(7652), + [anon_sym_AMP_EQ] = ACTIONS(7652), + [anon_sym_CARET_EQ] = ACTIONS(7652), + [anon_sym_PIPE_EQ] = ACTIONS(7652), + [anon_sym_and_eq] = ACTIONS(7650), + [anon_sym_or_eq] = ACTIONS(7650), + [anon_sym_xor_eq] = ACTIONS(7650), + [anon_sym_LT_EQ_GT] = ACTIONS(7652), + [anon_sym_or] = ACTIONS(7650), + [anon_sym_and] = ACTIONS(7650), + [anon_sym_bitor] = ACTIONS(7650), + [anon_sym_xor] = ACTIONS(7650), + [anon_sym_bitand] = ACTIONS(7650), + [anon_sym_not_eq] = ACTIONS(7650), + [anon_sym_DASH_DASH] = ACTIONS(7652), + [anon_sym_PLUS_PLUS] = ACTIONS(7652), + [anon_sym_DOT] = ACTIONS(7650), + [anon_sym_DOT_STAR] = ACTIONS(7652), + [anon_sym_DASH_GT] = ACTIONS(7652), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7650), + [anon_sym_override] = ACTIONS(7650), + [anon_sym_requires] = ACTIONS(7650), + [anon_sym_COLON_RBRACK] = ACTIONS(7652), }, [STATE(2196)] = { - [sym_identifier] = ACTIONS(7643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), - [anon_sym_COMMA] = ACTIONS(7645), - [anon_sym_RPAREN] = ACTIONS(7645), - [aux_sym_preproc_if_token2] = ACTIONS(7645), - [aux_sym_preproc_else_token1] = ACTIONS(7645), - [aux_sym_preproc_elif_token1] = ACTIONS(7643), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7645), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7645), - [anon_sym_LPAREN2] = ACTIONS(7645), - [anon_sym_DASH] = ACTIONS(7643), - [anon_sym_PLUS] = ACTIONS(7643), - [anon_sym_STAR] = ACTIONS(7643), - [anon_sym_SLASH] = ACTIONS(7643), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_PIPE_PIPE] = ACTIONS(7645), - [anon_sym_AMP_AMP] = ACTIONS(7645), - [anon_sym_PIPE] = ACTIONS(7643), - [anon_sym_CARET] = ACTIONS(7643), - [anon_sym_AMP] = ACTIONS(7643), - [anon_sym_EQ_EQ] = ACTIONS(7645), - [anon_sym_BANG_EQ] = ACTIONS(7645), - [anon_sym_GT] = ACTIONS(7643), - [anon_sym_GT_EQ] = ACTIONS(7645), - [anon_sym_LT_EQ] = ACTIONS(7643), - [anon_sym_LT] = ACTIONS(7643), - [anon_sym_LT_LT] = ACTIONS(7643), - [anon_sym_GT_GT] = ACTIONS(7643), - [anon_sym_SEMI] = ACTIONS(7645), - [anon_sym___extension__] = ACTIONS(7643), - [anon_sym___attribute__] = ACTIONS(7643), - [anon_sym___attribute] = ACTIONS(7643), - [anon_sym_COLON] = ACTIONS(7643), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7645), - [anon_sym_LBRACE] = ACTIONS(7645), - [anon_sym_RBRACE] = ACTIONS(7645), - [anon_sym_LBRACK] = ACTIONS(7645), - [anon_sym_EQ] = ACTIONS(7643), - [anon_sym_const] = ACTIONS(7643), - [anon_sym_constexpr] = ACTIONS(7643), - [anon_sym_volatile] = ACTIONS(7643), - [anon_sym_restrict] = ACTIONS(7643), - [anon_sym___restrict__] = ACTIONS(7643), - [anon_sym__Atomic] = ACTIONS(7643), - [anon_sym__Noreturn] = ACTIONS(7643), - [anon_sym_noreturn] = ACTIONS(7643), - [anon_sym__Nonnull] = ACTIONS(7643), - [anon_sym_mutable] = ACTIONS(7643), - [anon_sym_constinit] = ACTIONS(7643), - [anon_sym_consteval] = ACTIONS(7643), - [anon_sym_alignas] = ACTIONS(7643), - [anon_sym__Alignas] = ACTIONS(7643), - [anon_sym_QMARK] = ACTIONS(7645), - [anon_sym_STAR_EQ] = ACTIONS(7645), - [anon_sym_SLASH_EQ] = ACTIONS(7645), - [anon_sym_PERCENT_EQ] = ACTIONS(7645), - [anon_sym_PLUS_EQ] = ACTIONS(7645), - [anon_sym_DASH_EQ] = ACTIONS(7645), - [anon_sym_LT_LT_EQ] = ACTIONS(7645), - [anon_sym_GT_GT_EQ] = ACTIONS(7645), - [anon_sym_AMP_EQ] = ACTIONS(7645), - [anon_sym_CARET_EQ] = ACTIONS(7645), - [anon_sym_PIPE_EQ] = ACTIONS(7645), - [anon_sym_and_eq] = ACTIONS(7643), - [anon_sym_or_eq] = ACTIONS(7643), - [anon_sym_xor_eq] = ACTIONS(7643), - [anon_sym_LT_EQ_GT] = ACTIONS(7645), - [anon_sym_or] = ACTIONS(7643), - [anon_sym_and] = ACTIONS(7643), - [anon_sym_bitor] = ACTIONS(7643), - [anon_sym_xor] = ACTIONS(7643), - [anon_sym_bitand] = ACTIONS(7643), - [anon_sym_not_eq] = ACTIONS(7643), - [anon_sym_DASH_DASH] = ACTIONS(7645), - [anon_sym_PLUS_PLUS] = ACTIONS(7645), - [anon_sym_DOT] = ACTIONS(7643), - [anon_sym_DOT_STAR] = ACTIONS(7645), - [anon_sym_DASH_GT] = ACTIONS(7645), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7643), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_requires] = ACTIONS(7643), - [anon_sym_COLON_RBRACK] = ACTIONS(7645), + [sym_identifier] = ACTIONS(7654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7656), + [anon_sym_COMMA] = ACTIONS(7656), + [anon_sym_RPAREN] = ACTIONS(7656), + [aux_sym_preproc_if_token2] = ACTIONS(7656), + [aux_sym_preproc_else_token1] = ACTIONS(7656), + [aux_sym_preproc_elif_token1] = ACTIONS(7654), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7656), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7656), + [anon_sym_LPAREN2] = ACTIONS(7656), + [anon_sym_DASH] = ACTIONS(7654), + [anon_sym_PLUS] = ACTIONS(7654), + [anon_sym_STAR] = ACTIONS(7654), + [anon_sym_SLASH] = ACTIONS(7654), + [anon_sym_PERCENT] = ACTIONS(7654), + [anon_sym_PIPE_PIPE] = ACTIONS(7656), + [anon_sym_AMP_AMP] = ACTIONS(7656), + [anon_sym_PIPE] = ACTIONS(7654), + [anon_sym_CARET] = ACTIONS(7654), + [anon_sym_AMP] = ACTIONS(7654), + [anon_sym_EQ_EQ] = ACTIONS(7656), + [anon_sym_BANG_EQ] = ACTIONS(7656), + [anon_sym_GT] = ACTIONS(7654), + [anon_sym_GT_EQ] = ACTIONS(7656), + [anon_sym_LT_EQ] = ACTIONS(7654), + [anon_sym_LT] = ACTIONS(7654), + [anon_sym_LT_LT] = ACTIONS(7654), + [anon_sym_GT_GT] = ACTIONS(7654), + [anon_sym_SEMI] = ACTIONS(7656), + [anon_sym___extension__] = ACTIONS(7654), + [anon_sym___attribute__] = ACTIONS(7654), + [anon_sym___attribute] = ACTIONS(7654), + [anon_sym_COLON] = ACTIONS(7654), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7656), + [anon_sym_LBRACE] = ACTIONS(7656), + [anon_sym_RBRACE] = ACTIONS(7656), + [anon_sym_LBRACK] = ACTIONS(7656), + [anon_sym_EQ] = ACTIONS(7654), + [anon_sym_const] = ACTIONS(7654), + [anon_sym_constexpr] = ACTIONS(7654), + [anon_sym_volatile] = ACTIONS(7654), + [anon_sym_restrict] = ACTIONS(7654), + [anon_sym___restrict__] = ACTIONS(7654), + [anon_sym__Atomic] = ACTIONS(7654), + [anon_sym__Noreturn] = ACTIONS(7654), + [anon_sym_noreturn] = ACTIONS(7654), + [anon_sym__Nonnull] = ACTIONS(7654), + [anon_sym_mutable] = ACTIONS(7654), + [anon_sym_constinit] = ACTIONS(7654), + [anon_sym_consteval] = ACTIONS(7654), + [anon_sym_alignas] = ACTIONS(7654), + [anon_sym__Alignas] = ACTIONS(7654), + [anon_sym_QMARK] = ACTIONS(7656), + [anon_sym_STAR_EQ] = ACTIONS(7656), + [anon_sym_SLASH_EQ] = ACTIONS(7656), + [anon_sym_PERCENT_EQ] = ACTIONS(7656), + [anon_sym_PLUS_EQ] = ACTIONS(7656), + [anon_sym_DASH_EQ] = ACTIONS(7656), + [anon_sym_LT_LT_EQ] = ACTIONS(7656), + [anon_sym_GT_GT_EQ] = ACTIONS(7656), + [anon_sym_AMP_EQ] = ACTIONS(7656), + [anon_sym_CARET_EQ] = ACTIONS(7656), + [anon_sym_PIPE_EQ] = ACTIONS(7656), + [anon_sym_and_eq] = ACTIONS(7654), + [anon_sym_or_eq] = ACTIONS(7654), + [anon_sym_xor_eq] = ACTIONS(7654), + [anon_sym_LT_EQ_GT] = ACTIONS(7656), + [anon_sym_or] = ACTIONS(7654), + [anon_sym_and] = ACTIONS(7654), + [anon_sym_bitor] = ACTIONS(7654), + [anon_sym_xor] = ACTIONS(7654), + [anon_sym_bitand] = ACTIONS(7654), + [anon_sym_not_eq] = ACTIONS(7654), + [anon_sym_DASH_DASH] = ACTIONS(7656), + [anon_sym_PLUS_PLUS] = ACTIONS(7656), + [anon_sym_DOT] = ACTIONS(7654), + [anon_sym_DOT_STAR] = ACTIONS(7656), + [anon_sym_DASH_GT] = ACTIONS(7656), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7654), + [anon_sym_override] = ACTIONS(7654), + [anon_sym_requires] = ACTIONS(7654), + [anon_sym_COLON_RBRACK] = ACTIONS(7656), }, [STATE(2197)] = { - [sym_identifier] = ACTIONS(7647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), - [anon_sym_COMMA] = ACTIONS(7649), - [anon_sym_RPAREN] = ACTIONS(7649), - [aux_sym_preproc_if_token2] = ACTIONS(7649), - [aux_sym_preproc_else_token1] = ACTIONS(7649), - [aux_sym_preproc_elif_token1] = ACTIONS(7647), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7649), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7649), - [anon_sym_LPAREN2] = ACTIONS(7649), - [anon_sym_DASH] = ACTIONS(7647), - [anon_sym_PLUS] = ACTIONS(7647), - [anon_sym_STAR] = ACTIONS(7647), - [anon_sym_SLASH] = ACTIONS(7647), - [anon_sym_PERCENT] = ACTIONS(7647), - [anon_sym_PIPE_PIPE] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7649), - [anon_sym_PIPE] = ACTIONS(7647), - [anon_sym_CARET] = ACTIONS(7647), - [anon_sym_AMP] = ACTIONS(7647), - [anon_sym_EQ_EQ] = ACTIONS(7649), - [anon_sym_BANG_EQ] = ACTIONS(7649), - [anon_sym_GT] = ACTIONS(7647), - [anon_sym_GT_EQ] = ACTIONS(7649), - [anon_sym_LT_EQ] = ACTIONS(7647), - [anon_sym_LT] = ACTIONS(7647), - [anon_sym_LT_LT] = ACTIONS(7647), - [anon_sym_GT_GT] = ACTIONS(7647), - [anon_sym_SEMI] = ACTIONS(7649), - [anon_sym___extension__] = ACTIONS(7647), - [anon_sym___attribute__] = ACTIONS(7647), - [anon_sym___attribute] = ACTIONS(7647), - [anon_sym_COLON] = ACTIONS(7647), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7649), - [anon_sym_LBRACE] = ACTIONS(7649), - [anon_sym_RBRACE] = ACTIONS(7649), - [anon_sym_LBRACK] = ACTIONS(7649), - [anon_sym_EQ] = ACTIONS(7647), - [anon_sym_const] = ACTIONS(7647), - [anon_sym_constexpr] = ACTIONS(7647), - [anon_sym_volatile] = ACTIONS(7647), - [anon_sym_restrict] = ACTIONS(7647), - [anon_sym___restrict__] = ACTIONS(7647), - [anon_sym__Atomic] = ACTIONS(7647), - [anon_sym__Noreturn] = ACTIONS(7647), - [anon_sym_noreturn] = ACTIONS(7647), - [anon_sym__Nonnull] = ACTIONS(7647), - [anon_sym_mutable] = ACTIONS(7647), - [anon_sym_constinit] = ACTIONS(7647), - [anon_sym_consteval] = ACTIONS(7647), - [anon_sym_alignas] = ACTIONS(7647), - [anon_sym__Alignas] = ACTIONS(7647), - [anon_sym_QMARK] = ACTIONS(7649), - [anon_sym_STAR_EQ] = ACTIONS(7649), - [anon_sym_SLASH_EQ] = ACTIONS(7649), - [anon_sym_PERCENT_EQ] = ACTIONS(7649), - [anon_sym_PLUS_EQ] = ACTIONS(7649), - [anon_sym_DASH_EQ] = ACTIONS(7649), - [anon_sym_LT_LT_EQ] = ACTIONS(7649), - [anon_sym_GT_GT_EQ] = ACTIONS(7649), - [anon_sym_AMP_EQ] = ACTIONS(7649), - [anon_sym_CARET_EQ] = ACTIONS(7649), - [anon_sym_PIPE_EQ] = ACTIONS(7649), - [anon_sym_and_eq] = ACTIONS(7647), - [anon_sym_or_eq] = ACTIONS(7647), - [anon_sym_xor_eq] = ACTIONS(7647), - [anon_sym_LT_EQ_GT] = ACTIONS(7649), - [anon_sym_or] = ACTIONS(7647), - [anon_sym_and] = ACTIONS(7647), - [anon_sym_bitor] = ACTIONS(7647), - [anon_sym_xor] = ACTIONS(7647), - [anon_sym_bitand] = ACTIONS(7647), - [anon_sym_not_eq] = ACTIONS(7647), - [anon_sym_DASH_DASH] = ACTIONS(7649), - [anon_sym_PLUS_PLUS] = ACTIONS(7649), - [anon_sym_DOT] = ACTIONS(7647), - [anon_sym_DOT_STAR] = ACTIONS(7649), - [anon_sym_DASH_GT] = ACTIONS(7649), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_override] = ACTIONS(7647), - [anon_sym_requires] = ACTIONS(7647), - [anon_sym_COLON_RBRACK] = ACTIONS(7649), + [aux_sym_sized_type_specifier_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(7658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7660), + [anon_sym_COMMA] = ACTIONS(7660), + [aux_sym_preproc_if_token2] = ACTIONS(7660), + [aux_sym_preproc_else_token1] = ACTIONS(7660), + [aux_sym_preproc_elif_token1] = ACTIONS(7658), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7660), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7660), + [anon_sym_LPAREN2] = ACTIONS(7660), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_STAR] = ACTIONS(7658), + [anon_sym_SLASH] = ACTIONS(7658), + [anon_sym_PERCENT] = ACTIONS(7658), + [anon_sym_PIPE_PIPE] = ACTIONS(7660), + [anon_sym_AMP_AMP] = ACTIONS(7660), + [anon_sym_PIPE] = ACTIONS(7658), + [anon_sym_CARET] = ACTIONS(7658), + [anon_sym_AMP] = ACTIONS(7658), + [anon_sym_EQ_EQ] = ACTIONS(7660), + [anon_sym_BANG_EQ] = ACTIONS(7660), + [anon_sym_GT] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7660), + [anon_sym_LT_EQ] = ACTIONS(7658), + [anon_sym_LT] = ACTIONS(7658), + [anon_sym_LT_LT] = ACTIONS(7658), + [anon_sym_GT_GT] = ACTIONS(7658), + [anon_sym___extension__] = ACTIONS(7658), + [anon_sym___attribute__] = ACTIONS(7658), + [anon_sym___attribute] = ACTIONS(7658), + [anon_sym_LBRACE] = ACTIONS(7660), + [anon_sym_signed] = ACTIONS(7564), + [anon_sym_unsigned] = ACTIONS(7564), + [anon_sym_long] = ACTIONS(7564), + [anon_sym_short] = ACTIONS(7564), + [anon_sym_LBRACK] = ACTIONS(7660), + [anon_sym_RBRACK] = ACTIONS(7660), + [anon_sym_EQ] = ACTIONS(7658), + [anon_sym_const] = ACTIONS(7658), + [anon_sym_constexpr] = ACTIONS(7658), + [anon_sym_volatile] = ACTIONS(7658), + [anon_sym_restrict] = ACTIONS(7658), + [anon_sym___restrict__] = ACTIONS(7658), + [anon_sym__Atomic] = ACTIONS(7658), + [anon_sym__Noreturn] = ACTIONS(7658), + [anon_sym_noreturn] = ACTIONS(7658), + [anon_sym__Nonnull] = ACTIONS(7658), + [anon_sym_mutable] = ACTIONS(7658), + [anon_sym_constinit] = ACTIONS(7658), + [anon_sym_consteval] = ACTIONS(7658), + [anon_sym_alignas] = ACTIONS(7658), + [anon_sym__Alignas] = ACTIONS(7658), + [anon_sym_QMARK] = ACTIONS(7660), + [anon_sym_STAR_EQ] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(7660), + [anon_sym_PERCENT_EQ] = ACTIONS(7660), + [anon_sym_PLUS_EQ] = ACTIONS(7660), + [anon_sym_DASH_EQ] = ACTIONS(7660), + [anon_sym_LT_LT_EQ] = ACTIONS(7660), + [anon_sym_GT_GT_EQ] = ACTIONS(7660), + [anon_sym_AMP_EQ] = ACTIONS(7660), + [anon_sym_CARET_EQ] = ACTIONS(7660), + [anon_sym_PIPE_EQ] = ACTIONS(7660), + [anon_sym_and_eq] = ACTIONS(7658), + [anon_sym_or_eq] = ACTIONS(7658), + [anon_sym_xor_eq] = ACTIONS(7658), + [anon_sym_LT_EQ_GT] = ACTIONS(7660), + [anon_sym_or] = ACTIONS(7658), + [anon_sym_and] = ACTIONS(7658), + [anon_sym_bitor] = ACTIONS(7658), + [anon_sym_xor] = ACTIONS(7658), + [anon_sym_bitand] = ACTIONS(7658), + [anon_sym_not_eq] = ACTIONS(7658), + [anon_sym_DASH_DASH] = ACTIONS(7660), + [anon_sym_PLUS_PLUS] = ACTIONS(7660), + [anon_sym_DOT] = ACTIONS(7658), + [anon_sym_DOT_STAR] = ACTIONS(7660), + [anon_sym_DASH_GT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7658), + [anon_sym_override] = ACTIONS(7658), + [anon_sym_requires] = ACTIONS(7658), }, [STATE(2198)] = { - [sym_identifier] = ACTIONS(7651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_RPAREN] = ACTIONS(7653), - [aux_sym_preproc_if_token2] = ACTIONS(7653), - [aux_sym_preproc_else_token1] = ACTIONS(7653), - [aux_sym_preproc_elif_token1] = ACTIONS(7651), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7653), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7651), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7651), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7651), - [anon_sym_GT_GT] = ACTIONS(7651), - [anon_sym_SEMI] = ACTIONS(7653), - [anon_sym___extension__] = ACTIONS(7651), - [anon_sym___attribute__] = ACTIONS(7651), - [anon_sym___attribute] = ACTIONS(7651), - [anon_sym_COLON] = ACTIONS(7651), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7653), - [anon_sym_LBRACE] = ACTIONS(7653), - [anon_sym_RBRACE] = ACTIONS(7653), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(7651), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7651), - [anon_sym_volatile] = ACTIONS(7651), - [anon_sym_restrict] = ACTIONS(7651), - [anon_sym___restrict__] = ACTIONS(7651), - [anon_sym__Atomic] = ACTIONS(7651), - [anon_sym__Noreturn] = ACTIONS(7651), - [anon_sym_noreturn] = ACTIONS(7651), - [anon_sym__Nonnull] = ACTIONS(7651), - [anon_sym_mutable] = ACTIONS(7651), - [anon_sym_constinit] = ACTIONS(7651), - [anon_sym_consteval] = ACTIONS(7651), - [anon_sym_alignas] = ACTIONS(7651), - [anon_sym__Alignas] = ACTIONS(7651), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_STAR_EQ] = ACTIONS(7653), - [anon_sym_SLASH_EQ] = ACTIONS(7653), - [anon_sym_PERCENT_EQ] = ACTIONS(7653), - [anon_sym_PLUS_EQ] = ACTIONS(7653), - [anon_sym_DASH_EQ] = ACTIONS(7653), - [anon_sym_LT_LT_EQ] = ACTIONS(7653), - [anon_sym_GT_GT_EQ] = ACTIONS(7653), - [anon_sym_AMP_EQ] = ACTIONS(7653), - [anon_sym_CARET_EQ] = ACTIONS(7653), - [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_and_eq] = ACTIONS(7651), - [anon_sym_or_eq] = ACTIONS(7651), - [anon_sym_xor_eq] = ACTIONS(7651), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7651), - [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7651), - [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7651), - [anon_sym_not_eq] = ACTIONS(7651), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7653), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7651), - [anon_sym_override] = ACTIONS(7651), - [anon_sym_requires] = ACTIONS(7651), - [anon_sym_COLON_RBRACK] = ACTIONS(7653), + [aux_sym_sized_type_specifier_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(7662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7664), + [anon_sym_COMMA] = ACTIONS(7664), + [aux_sym_preproc_if_token2] = ACTIONS(7664), + [aux_sym_preproc_else_token1] = ACTIONS(7664), + [aux_sym_preproc_elif_token1] = ACTIONS(7662), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7664), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7664), + [anon_sym_LPAREN2] = ACTIONS(7664), + [anon_sym_DASH] = ACTIONS(7662), + [anon_sym_PLUS] = ACTIONS(7662), + [anon_sym_STAR] = ACTIONS(7662), + [anon_sym_SLASH] = ACTIONS(7662), + [anon_sym_PERCENT] = ACTIONS(7662), + [anon_sym_PIPE_PIPE] = ACTIONS(7664), + [anon_sym_AMP_AMP] = ACTIONS(7664), + [anon_sym_PIPE] = ACTIONS(7662), + [anon_sym_CARET] = ACTIONS(7662), + [anon_sym_AMP] = ACTIONS(7662), + [anon_sym_EQ_EQ] = ACTIONS(7664), + [anon_sym_BANG_EQ] = ACTIONS(7664), + [anon_sym_GT] = ACTIONS(7662), + [anon_sym_GT_EQ] = ACTIONS(7664), + [anon_sym_LT_EQ] = ACTIONS(7662), + [anon_sym_LT] = ACTIONS(7662), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym___extension__] = ACTIONS(7662), + [anon_sym___attribute__] = ACTIONS(7662), + [anon_sym___attribute] = ACTIONS(7662), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_signed] = ACTIONS(7564), + [anon_sym_unsigned] = ACTIONS(7564), + [anon_sym_long] = ACTIONS(7564), + [anon_sym_short] = ACTIONS(7564), + [anon_sym_LBRACK] = ACTIONS(7664), + [anon_sym_RBRACK] = ACTIONS(7664), + [anon_sym_EQ] = ACTIONS(7662), + [anon_sym_const] = ACTIONS(7662), + [anon_sym_constexpr] = ACTIONS(7662), + [anon_sym_volatile] = ACTIONS(7662), + [anon_sym_restrict] = ACTIONS(7662), + [anon_sym___restrict__] = ACTIONS(7662), + [anon_sym__Atomic] = ACTIONS(7662), + [anon_sym__Noreturn] = ACTIONS(7662), + [anon_sym_noreturn] = ACTIONS(7662), + [anon_sym__Nonnull] = ACTIONS(7662), + [anon_sym_mutable] = ACTIONS(7662), + [anon_sym_constinit] = ACTIONS(7662), + [anon_sym_consteval] = ACTIONS(7662), + [anon_sym_alignas] = ACTIONS(7662), + [anon_sym__Alignas] = ACTIONS(7662), + [anon_sym_QMARK] = ACTIONS(7664), + [anon_sym_STAR_EQ] = ACTIONS(7664), + [anon_sym_SLASH_EQ] = ACTIONS(7664), + [anon_sym_PERCENT_EQ] = ACTIONS(7664), + [anon_sym_PLUS_EQ] = ACTIONS(7664), + [anon_sym_DASH_EQ] = ACTIONS(7664), + [anon_sym_LT_LT_EQ] = ACTIONS(7664), + [anon_sym_GT_GT_EQ] = ACTIONS(7664), + [anon_sym_AMP_EQ] = ACTIONS(7664), + [anon_sym_CARET_EQ] = ACTIONS(7664), + [anon_sym_PIPE_EQ] = ACTIONS(7664), + [anon_sym_and_eq] = ACTIONS(7662), + [anon_sym_or_eq] = ACTIONS(7662), + [anon_sym_xor_eq] = ACTIONS(7662), + [anon_sym_LT_EQ_GT] = ACTIONS(7664), + [anon_sym_or] = ACTIONS(7662), + [anon_sym_and] = ACTIONS(7662), + [anon_sym_bitor] = ACTIONS(7662), + [anon_sym_xor] = ACTIONS(7662), + [anon_sym_bitand] = ACTIONS(7662), + [anon_sym_not_eq] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(7664), + [anon_sym_PLUS_PLUS] = ACTIONS(7664), + [anon_sym_DOT] = ACTIONS(7662), + [anon_sym_DOT_STAR] = ACTIONS(7664), + [anon_sym_DASH_GT] = ACTIONS(7664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7662), + [anon_sym_override] = ACTIONS(7662), + [anon_sym_requires] = ACTIONS(7662), }, [STATE(2199)] = { - [sym_identifier] = ACTIONS(7655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), - [anon_sym_COMMA] = ACTIONS(7657), - [anon_sym_RPAREN] = ACTIONS(7657), - [aux_sym_preproc_if_token2] = ACTIONS(7657), - [aux_sym_preproc_else_token1] = ACTIONS(7657), - [aux_sym_preproc_elif_token1] = ACTIONS(7655), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7657), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7657), - [anon_sym_LPAREN2] = ACTIONS(7657), - [anon_sym_DASH] = ACTIONS(7655), - [anon_sym_PLUS] = ACTIONS(7655), - [anon_sym_STAR] = ACTIONS(7655), - [anon_sym_SLASH] = ACTIONS(7655), - [anon_sym_PERCENT] = ACTIONS(7655), - [anon_sym_PIPE_PIPE] = ACTIONS(7657), - [anon_sym_AMP_AMP] = ACTIONS(7657), - [anon_sym_PIPE] = ACTIONS(7655), - [anon_sym_CARET] = ACTIONS(7655), - [anon_sym_AMP] = ACTIONS(7655), - [anon_sym_EQ_EQ] = ACTIONS(7657), - [anon_sym_BANG_EQ] = ACTIONS(7657), - [anon_sym_GT] = ACTIONS(7655), - [anon_sym_GT_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7655), - [anon_sym_LT] = ACTIONS(7655), - [anon_sym_LT_LT] = ACTIONS(7655), - [anon_sym_GT_GT] = ACTIONS(7655), - [anon_sym_SEMI] = ACTIONS(7657), - [anon_sym___extension__] = ACTIONS(7655), - [anon_sym___attribute__] = ACTIONS(7655), - [anon_sym___attribute] = ACTIONS(7655), - [anon_sym_COLON] = ACTIONS(7655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7657), - [anon_sym_LBRACE] = ACTIONS(7657), - [anon_sym_RBRACE] = ACTIONS(7657), - [anon_sym_LBRACK] = ACTIONS(7657), - [anon_sym_EQ] = ACTIONS(7655), - [anon_sym_const] = ACTIONS(7655), - [anon_sym_constexpr] = ACTIONS(7655), - [anon_sym_volatile] = ACTIONS(7655), - [anon_sym_restrict] = ACTIONS(7655), - [anon_sym___restrict__] = ACTIONS(7655), - [anon_sym__Atomic] = ACTIONS(7655), - [anon_sym__Noreturn] = ACTIONS(7655), - [anon_sym_noreturn] = ACTIONS(7655), - [anon_sym__Nonnull] = ACTIONS(7655), - [anon_sym_mutable] = ACTIONS(7655), - [anon_sym_constinit] = ACTIONS(7655), - [anon_sym_consteval] = ACTIONS(7655), - [anon_sym_alignas] = ACTIONS(7655), - [anon_sym__Alignas] = ACTIONS(7655), - [anon_sym_QMARK] = ACTIONS(7657), - [anon_sym_STAR_EQ] = ACTIONS(7657), - [anon_sym_SLASH_EQ] = ACTIONS(7657), - [anon_sym_PERCENT_EQ] = ACTIONS(7657), - [anon_sym_PLUS_EQ] = ACTIONS(7657), - [anon_sym_DASH_EQ] = ACTIONS(7657), - [anon_sym_LT_LT_EQ] = ACTIONS(7657), - [anon_sym_GT_GT_EQ] = ACTIONS(7657), - [anon_sym_AMP_EQ] = ACTIONS(7657), - [anon_sym_CARET_EQ] = ACTIONS(7657), - [anon_sym_PIPE_EQ] = ACTIONS(7657), - [anon_sym_and_eq] = ACTIONS(7655), - [anon_sym_or_eq] = ACTIONS(7655), - [anon_sym_xor_eq] = ACTIONS(7655), - [anon_sym_LT_EQ_GT] = ACTIONS(7657), - [anon_sym_or] = ACTIONS(7655), - [anon_sym_and] = ACTIONS(7655), - [anon_sym_bitor] = ACTIONS(7655), - [anon_sym_xor] = ACTIONS(7655), - [anon_sym_bitand] = ACTIONS(7655), - [anon_sym_not_eq] = ACTIONS(7655), - [anon_sym_DASH_DASH] = ACTIONS(7657), - [anon_sym_PLUS_PLUS] = ACTIONS(7657), - [anon_sym_DOT] = ACTIONS(7655), - [anon_sym_DOT_STAR] = ACTIONS(7657), - [anon_sym_DASH_GT] = ACTIONS(7657), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7655), - [anon_sym_override] = ACTIONS(7655), - [anon_sym_requires] = ACTIONS(7655), - [anon_sym_COLON_RBRACK] = ACTIONS(7657), + [sym_type_qualifier] = STATE(2212), + [sym_alignas_qualifier] = STATE(2046), + [aux_sym__type_definition_type_repeat1] = STATE(2212), + [aux_sym_sized_type_specifier_repeat1] = STATE(2346), + [sym_identifier] = ACTIONS(7320), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [aux_sym_preproc_if_token2] = ACTIONS(7209), + [aux_sym_preproc_else_token1] = ACTIONS(7209), + [aux_sym_preproc_elif_token1] = ACTIONS(7211), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7209), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(6837), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(7666), + [anon_sym_unsigned] = ACTIONS(7666), + [anon_sym_long] = ACTIONS(7666), + [anon_sym_short] = ACTIONS(7666), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6837), + [anon_sym_volatile] = ACTIONS(6837), + [anon_sym_restrict] = ACTIONS(6837), + [anon_sym___restrict__] = ACTIONS(6837), + [anon_sym__Atomic] = ACTIONS(6837), + [anon_sym__Noreturn] = ACTIONS(6837), + [anon_sym_noreturn] = ACTIONS(6837), + [anon_sym__Nonnull] = ACTIONS(6837), + [anon_sym_mutable] = ACTIONS(6837), + [anon_sym_constinit] = ACTIONS(6837), + [anon_sym_consteval] = ACTIONS(6837), + [anon_sym_alignas] = ACTIONS(7407), + [anon_sym__Alignas] = ACTIONS(7407), + [sym_primitive_type] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), }, [STATE(2200)] = { - [sym_identifier] = ACTIONS(7659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), - [anon_sym_COMMA] = ACTIONS(7661), - [anon_sym_RPAREN] = ACTIONS(7661), - [aux_sym_preproc_if_token2] = ACTIONS(7661), - [aux_sym_preproc_else_token1] = ACTIONS(7661), - [aux_sym_preproc_elif_token1] = ACTIONS(7659), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7661), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7661), - [anon_sym_LPAREN2] = ACTIONS(7661), - [anon_sym_DASH] = ACTIONS(7659), - [anon_sym_PLUS] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7659), - [anon_sym_SLASH] = ACTIONS(7659), - [anon_sym_PERCENT] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7661), - [anon_sym_AMP_AMP] = ACTIONS(7661), - [anon_sym_PIPE] = ACTIONS(7659), - [anon_sym_CARET] = ACTIONS(7659), - [anon_sym_AMP] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7661), - [anon_sym_BANG_EQ] = ACTIONS(7661), - [anon_sym_GT] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7661), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_LT] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7659), - [anon_sym_GT_GT] = ACTIONS(7659), - [anon_sym_SEMI] = ACTIONS(7661), - [anon_sym___extension__] = ACTIONS(7659), - [anon_sym___attribute__] = ACTIONS(7659), - [anon_sym___attribute] = ACTIONS(7659), - [anon_sym_COLON] = ACTIONS(7659), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7661), - [anon_sym_LBRACE] = ACTIONS(7661), - [anon_sym_RBRACE] = ACTIONS(7661), - [anon_sym_LBRACK] = ACTIONS(7661), - [anon_sym_EQ] = ACTIONS(7659), - [anon_sym_const] = ACTIONS(7659), - [anon_sym_constexpr] = ACTIONS(7659), - [anon_sym_volatile] = ACTIONS(7659), - [anon_sym_restrict] = ACTIONS(7659), - [anon_sym___restrict__] = ACTIONS(7659), - [anon_sym__Atomic] = ACTIONS(7659), - [anon_sym__Noreturn] = ACTIONS(7659), - [anon_sym_noreturn] = ACTIONS(7659), - [anon_sym__Nonnull] = ACTIONS(7659), - [anon_sym_mutable] = ACTIONS(7659), - [anon_sym_constinit] = ACTIONS(7659), - [anon_sym_consteval] = ACTIONS(7659), - [anon_sym_alignas] = ACTIONS(7659), - [anon_sym__Alignas] = ACTIONS(7659), - [anon_sym_QMARK] = ACTIONS(7661), - [anon_sym_STAR_EQ] = ACTIONS(7661), - [anon_sym_SLASH_EQ] = ACTIONS(7661), - [anon_sym_PERCENT_EQ] = ACTIONS(7661), - [anon_sym_PLUS_EQ] = ACTIONS(7661), - [anon_sym_DASH_EQ] = ACTIONS(7661), - [anon_sym_LT_LT_EQ] = ACTIONS(7661), - [anon_sym_GT_GT_EQ] = ACTIONS(7661), - [anon_sym_AMP_EQ] = ACTIONS(7661), - [anon_sym_CARET_EQ] = ACTIONS(7661), - [anon_sym_PIPE_EQ] = ACTIONS(7661), - [anon_sym_and_eq] = ACTIONS(7659), - [anon_sym_or_eq] = ACTIONS(7659), - [anon_sym_xor_eq] = ACTIONS(7659), - [anon_sym_LT_EQ_GT] = ACTIONS(7661), - [anon_sym_or] = ACTIONS(7659), - [anon_sym_and] = ACTIONS(7659), - [anon_sym_bitor] = ACTIONS(7659), - [anon_sym_xor] = ACTIONS(7659), - [anon_sym_bitand] = ACTIONS(7659), - [anon_sym_not_eq] = ACTIONS(7659), - [anon_sym_DASH_DASH] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7661), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym_DOT_STAR] = ACTIONS(7661), - [anon_sym_DASH_GT] = ACTIONS(7661), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7659), - [anon_sym_override] = ACTIONS(7659), - [anon_sym_requires] = ACTIONS(7659), - [anon_sym_COLON_RBRACK] = ACTIONS(7661), + [sym_identifier] = ACTIONS(7668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7670), + [anon_sym_COMMA] = ACTIONS(7670), + [anon_sym_RPAREN] = ACTIONS(7670), + [aux_sym_preproc_if_token2] = ACTIONS(7670), + [aux_sym_preproc_else_token1] = ACTIONS(7670), + [aux_sym_preproc_elif_token1] = ACTIONS(7668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7670), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7670), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_DASH] = ACTIONS(7668), + [anon_sym_PLUS] = ACTIONS(7668), + [anon_sym_STAR] = ACTIONS(7668), + [anon_sym_SLASH] = ACTIONS(7668), + [anon_sym_PERCENT] = ACTIONS(7668), + [anon_sym_PIPE_PIPE] = ACTIONS(7670), + [anon_sym_AMP_AMP] = ACTIONS(7670), + [anon_sym_PIPE] = ACTIONS(7668), + [anon_sym_CARET] = ACTIONS(7668), + [anon_sym_AMP] = ACTIONS(7668), + [anon_sym_EQ_EQ] = ACTIONS(7670), + [anon_sym_BANG_EQ] = ACTIONS(7670), + [anon_sym_GT] = ACTIONS(7668), + [anon_sym_GT_EQ] = ACTIONS(7670), + [anon_sym_LT_EQ] = ACTIONS(7668), + [anon_sym_LT] = ACTIONS(7668), + [anon_sym_LT_LT] = ACTIONS(7668), + [anon_sym_GT_GT] = ACTIONS(7668), + [anon_sym_SEMI] = ACTIONS(7670), + [anon_sym___extension__] = ACTIONS(7668), + [anon_sym___attribute__] = ACTIONS(7668), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_COLON] = ACTIONS(7668), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7670), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_RBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7670), + [anon_sym_EQ] = ACTIONS(7668), + [anon_sym_const] = ACTIONS(7668), + [anon_sym_constexpr] = ACTIONS(7668), + [anon_sym_volatile] = ACTIONS(7668), + [anon_sym_restrict] = ACTIONS(7668), + [anon_sym___restrict__] = ACTIONS(7668), + [anon_sym__Atomic] = ACTIONS(7668), + [anon_sym__Noreturn] = ACTIONS(7668), + [anon_sym_noreturn] = ACTIONS(7668), + [anon_sym__Nonnull] = ACTIONS(7668), + [anon_sym_mutable] = ACTIONS(7668), + [anon_sym_constinit] = ACTIONS(7668), + [anon_sym_consteval] = ACTIONS(7668), + [anon_sym_alignas] = ACTIONS(7668), + [anon_sym__Alignas] = ACTIONS(7668), + [anon_sym_QMARK] = ACTIONS(7670), + [anon_sym_STAR_EQ] = ACTIONS(7670), + [anon_sym_SLASH_EQ] = ACTIONS(7670), + [anon_sym_PERCENT_EQ] = ACTIONS(7670), + [anon_sym_PLUS_EQ] = ACTIONS(7670), + [anon_sym_DASH_EQ] = ACTIONS(7670), + [anon_sym_LT_LT_EQ] = ACTIONS(7670), + [anon_sym_GT_GT_EQ] = ACTIONS(7670), + [anon_sym_AMP_EQ] = ACTIONS(7670), + [anon_sym_CARET_EQ] = ACTIONS(7670), + [anon_sym_PIPE_EQ] = ACTIONS(7670), + [anon_sym_and_eq] = ACTIONS(7668), + [anon_sym_or_eq] = ACTIONS(7668), + [anon_sym_xor_eq] = ACTIONS(7668), + [anon_sym_LT_EQ_GT] = ACTIONS(7670), + [anon_sym_or] = ACTIONS(7668), + [anon_sym_and] = ACTIONS(7668), + [anon_sym_bitor] = ACTIONS(7668), + [anon_sym_xor] = ACTIONS(7668), + [anon_sym_bitand] = ACTIONS(7668), + [anon_sym_not_eq] = ACTIONS(7668), + [anon_sym_DASH_DASH] = ACTIONS(7670), + [anon_sym_PLUS_PLUS] = ACTIONS(7670), + [anon_sym_DOT] = ACTIONS(7668), + [anon_sym_DOT_STAR] = ACTIONS(7670), + [anon_sym_DASH_GT] = ACTIONS(7670), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7668), + [anon_sym_override] = ACTIONS(7668), + [anon_sym_requires] = ACTIONS(7668), + [anon_sym_COLON_RBRACK] = ACTIONS(7670), }, [STATE(2201)] = { - [sym_identifier] = ACTIONS(7663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), - [anon_sym_COMMA] = ACTIONS(7665), - [anon_sym_RPAREN] = ACTIONS(7665), - [aux_sym_preproc_if_token2] = ACTIONS(7665), - [aux_sym_preproc_else_token1] = ACTIONS(7665), - [aux_sym_preproc_elif_token1] = ACTIONS(7663), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7665), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7665), - [anon_sym_LPAREN2] = ACTIONS(7665), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_STAR] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7663), - [anon_sym_PERCENT] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7665), - [anon_sym_AMP_AMP] = ACTIONS(7665), - [anon_sym_PIPE] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7663), - [anon_sym_AMP] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7665), - [anon_sym_BANG_EQ] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7663), - [anon_sym_GT_EQ] = ACTIONS(7665), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_LT] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7663), - [anon_sym_GT_GT] = ACTIONS(7663), - [anon_sym_SEMI] = ACTIONS(7665), - [anon_sym___extension__] = ACTIONS(7663), - [anon_sym___attribute__] = ACTIONS(7663), - [anon_sym___attribute] = ACTIONS(7663), - [anon_sym_COLON] = ACTIONS(7663), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7665), - [anon_sym_LBRACE] = ACTIONS(7665), - [anon_sym_RBRACE] = ACTIONS(7665), - [anon_sym_LBRACK] = ACTIONS(7665), - [anon_sym_EQ] = ACTIONS(7663), - [anon_sym_const] = ACTIONS(7663), - [anon_sym_constexpr] = ACTIONS(7663), - [anon_sym_volatile] = ACTIONS(7663), - [anon_sym_restrict] = ACTIONS(7663), - [anon_sym___restrict__] = ACTIONS(7663), - [anon_sym__Atomic] = ACTIONS(7663), - [anon_sym__Noreturn] = ACTIONS(7663), - [anon_sym_noreturn] = ACTIONS(7663), - [anon_sym__Nonnull] = ACTIONS(7663), - [anon_sym_mutable] = ACTIONS(7663), - [anon_sym_constinit] = ACTIONS(7663), - [anon_sym_consteval] = ACTIONS(7663), - [anon_sym_alignas] = ACTIONS(7663), - [anon_sym__Alignas] = ACTIONS(7663), - [anon_sym_QMARK] = ACTIONS(7665), - [anon_sym_STAR_EQ] = ACTIONS(7665), - [anon_sym_SLASH_EQ] = ACTIONS(7665), - [anon_sym_PERCENT_EQ] = ACTIONS(7665), - [anon_sym_PLUS_EQ] = ACTIONS(7665), - [anon_sym_DASH_EQ] = ACTIONS(7665), - [anon_sym_LT_LT_EQ] = ACTIONS(7665), - [anon_sym_GT_GT_EQ] = ACTIONS(7665), - [anon_sym_AMP_EQ] = ACTIONS(7665), - [anon_sym_CARET_EQ] = ACTIONS(7665), - [anon_sym_PIPE_EQ] = ACTIONS(7665), - [anon_sym_and_eq] = ACTIONS(7663), - [anon_sym_or_eq] = ACTIONS(7663), - [anon_sym_xor_eq] = ACTIONS(7663), - [anon_sym_LT_EQ_GT] = ACTIONS(7665), - [anon_sym_or] = ACTIONS(7663), - [anon_sym_and] = ACTIONS(7663), - [anon_sym_bitor] = ACTIONS(7663), - [anon_sym_xor] = ACTIONS(7663), - [anon_sym_bitand] = ACTIONS(7663), - [anon_sym_not_eq] = ACTIONS(7663), - [anon_sym_DASH_DASH] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7665), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym_DOT_STAR] = ACTIONS(7665), - [anon_sym_DASH_GT] = ACTIONS(7665), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7663), - [anon_sym_override] = ACTIONS(7663), - [anon_sym_requires] = ACTIONS(7663), - [anon_sym_COLON_RBRACK] = ACTIONS(7665), + [sym_identifier] = ACTIONS(7672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [aux_sym_preproc_if_token2] = ACTIONS(7674), + [aux_sym_preproc_else_token1] = ACTIONS(7674), + [aux_sym_preproc_elif_token1] = ACTIONS(7672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7674), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym_SEMI] = ACTIONS(7674), + [anon_sym___extension__] = ACTIONS(7672), + [anon_sym___attribute__] = ACTIONS(7672), + [anon_sym___attribute] = ACTIONS(7672), + [anon_sym_COLON] = ACTIONS(7672), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_RBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7672), + [anon_sym_volatile] = ACTIONS(7672), + [anon_sym_restrict] = ACTIONS(7672), + [anon_sym___restrict__] = ACTIONS(7672), + [anon_sym__Atomic] = ACTIONS(7672), + [anon_sym__Noreturn] = ACTIONS(7672), + [anon_sym_noreturn] = ACTIONS(7672), + [anon_sym__Nonnull] = ACTIONS(7672), + [anon_sym_mutable] = ACTIONS(7672), + [anon_sym_constinit] = ACTIONS(7672), + [anon_sym_consteval] = ACTIONS(7672), + [anon_sym_alignas] = ACTIONS(7672), + [anon_sym__Alignas] = ACTIONS(7672), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7672), + [anon_sym_or_eq] = ACTIONS(7672), + [anon_sym_xor_eq] = ACTIONS(7672), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7672), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7672), + [anon_sym_not_eq] = ACTIONS(7672), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_COLON_RBRACK] = ACTIONS(7674), }, [STATE(2202)] = { - [sym_identifier] = ACTIONS(7595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_RPAREN] = ACTIONS(7597), - [aux_sym_preproc_if_token2] = ACTIONS(7597), - [aux_sym_preproc_else_token1] = ACTIONS(7597), - [aux_sym_preproc_elif_token1] = ACTIONS(7595), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7597), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7595), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7595), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7595), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7595), - [anon_sym_GT_GT] = ACTIONS(7595), - [anon_sym_SEMI] = ACTIONS(7597), - [anon_sym___extension__] = ACTIONS(7595), - [anon_sym___attribute__] = ACTIONS(7595), - [anon_sym___attribute] = ACTIONS(7595), - [anon_sym_COLON] = ACTIONS(7595), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7597), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_RBRACE] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_EQ] = ACTIONS(7595), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7595), - [anon_sym_volatile] = ACTIONS(7595), - [anon_sym_restrict] = ACTIONS(7595), - [anon_sym___restrict__] = ACTIONS(7595), - [anon_sym__Atomic] = ACTIONS(7595), - [anon_sym__Noreturn] = ACTIONS(7595), - [anon_sym_noreturn] = ACTIONS(7595), - [anon_sym__Nonnull] = ACTIONS(7595), - [anon_sym_mutable] = ACTIONS(7595), - [anon_sym_constinit] = ACTIONS(7595), - [anon_sym_consteval] = ACTIONS(7595), - [anon_sym_alignas] = ACTIONS(7595), - [anon_sym__Alignas] = ACTIONS(7595), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_STAR_EQ] = ACTIONS(7597), - [anon_sym_SLASH_EQ] = ACTIONS(7597), - [anon_sym_PERCENT_EQ] = ACTIONS(7597), - [anon_sym_PLUS_EQ] = ACTIONS(7597), - [anon_sym_DASH_EQ] = ACTIONS(7597), - [anon_sym_LT_LT_EQ] = ACTIONS(7597), - [anon_sym_GT_GT_EQ] = ACTIONS(7597), - [anon_sym_AMP_EQ] = ACTIONS(7597), - [anon_sym_CARET_EQ] = ACTIONS(7597), - [anon_sym_PIPE_EQ] = ACTIONS(7597), - [anon_sym_and_eq] = ACTIONS(7595), - [anon_sym_or_eq] = ACTIONS(7595), - [anon_sym_xor_eq] = ACTIONS(7595), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7595), - [anon_sym_and] = ACTIONS(7595), - [anon_sym_bitor] = ACTIONS(7595), - [anon_sym_xor] = ACTIONS(7595), - [anon_sym_bitand] = ACTIONS(7595), - [anon_sym_not_eq] = ACTIONS(7595), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7595), - [anon_sym_override] = ACTIONS(7595), - [anon_sym_requires] = ACTIONS(7595), - [anon_sym_COLON_RBRACK] = ACTIONS(7597), + [sym_identifier] = ACTIONS(7676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7678), + [anon_sym_COMMA] = ACTIONS(7678), + [anon_sym_RPAREN] = ACTIONS(7678), + [aux_sym_preproc_if_token2] = ACTIONS(7678), + [aux_sym_preproc_else_token1] = ACTIONS(7678), + [aux_sym_preproc_elif_token1] = ACTIONS(7676), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7678), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7678), + [anon_sym_LPAREN2] = ACTIONS(7678), + [anon_sym_DASH] = ACTIONS(7676), + [anon_sym_PLUS] = ACTIONS(7676), + [anon_sym_STAR] = ACTIONS(7676), + [anon_sym_SLASH] = ACTIONS(7676), + [anon_sym_PERCENT] = ACTIONS(7676), + [anon_sym_PIPE_PIPE] = ACTIONS(7678), + [anon_sym_AMP_AMP] = ACTIONS(7678), + [anon_sym_PIPE] = ACTIONS(7676), + [anon_sym_CARET] = ACTIONS(7676), + [anon_sym_AMP] = ACTIONS(7676), + [anon_sym_EQ_EQ] = ACTIONS(7678), + [anon_sym_BANG_EQ] = ACTIONS(7678), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_GT_EQ] = ACTIONS(7678), + [anon_sym_LT_EQ] = ACTIONS(7676), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_LT_LT] = ACTIONS(7676), + [anon_sym_GT_GT] = ACTIONS(7676), + [anon_sym_SEMI] = ACTIONS(7678), + [anon_sym___extension__] = ACTIONS(7676), + [anon_sym___attribute__] = ACTIONS(7676), + [anon_sym___attribute] = ACTIONS(7676), + [anon_sym_COLON] = ACTIONS(7676), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7678), + [anon_sym_LBRACE] = ACTIONS(7678), + [anon_sym_RBRACE] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7678), + [anon_sym_EQ] = ACTIONS(7676), + [anon_sym_const] = ACTIONS(7676), + [anon_sym_constexpr] = ACTIONS(7676), + [anon_sym_volatile] = ACTIONS(7676), + [anon_sym_restrict] = ACTIONS(7676), + [anon_sym___restrict__] = ACTIONS(7676), + [anon_sym__Atomic] = ACTIONS(7676), + [anon_sym__Noreturn] = ACTIONS(7676), + [anon_sym_noreturn] = ACTIONS(7676), + [anon_sym__Nonnull] = ACTIONS(7676), + [anon_sym_mutable] = ACTIONS(7676), + [anon_sym_constinit] = ACTIONS(7676), + [anon_sym_consteval] = ACTIONS(7676), + [anon_sym_alignas] = ACTIONS(7676), + [anon_sym__Alignas] = ACTIONS(7676), + [anon_sym_QMARK] = ACTIONS(7678), + [anon_sym_STAR_EQ] = ACTIONS(7678), + [anon_sym_SLASH_EQ] = ACTIONS(7678), + [anon_sym_PERCENT_EQ] = ACTIONS(7678), + [anon_sym_PLUS_EQ] = ACTIONS(7678), + [anon_sym_DASH_EQ] = ACTIONS(7678), + [anon_sym_LT_LT_EQ] = ACTIONS(7678), + [anon_sym_GT_GT_EQ] = ACTIONS(7678), + [anon_sym_AMP_EQ] = ACTIONS(7678), + [anon_sym_CARET_EQ] = ACTIONS(7678), + [anon_sym_PIPE_EQ] = ACTIONS(7678), + [anon_sym_and_eq] = ACTIONS(7676), + [anon_sym_or_eq] = ACTIONS(7676), + [anon_sym_xor_eq] = ACTIONS(7676), + [anon_sym_LT_EQ_GT] = ACTIONS(7678), + [anon_sym_or] = ACTIONS(7676), + [anon_sym_and] = ACTIONS(7676), + [anon_sym_bitor] = ACTIONS(7676), + [anon_sym_xor] = ACTIONS(7676), + [anon_sym_bitand] = ACTIONS(7676), + [anon_sym_not_eq] = ACTIONS(7676), + [anon_sym_DASH_DASH] = ACTIONS(7678), + [anon_sym_PLUS_PLUS] = ACTIONS(7678), + [anon_sym_DOT] = ACTIONS(7676), + [anon_sym_DOT_STAR] = ACTIONS(7678), + [anon_sym_DASH_GT] = ACTIONS(7678), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7676), + [anon_sym_override] = ACTIONS(7676), + [anon_sym_requires] = ACTIONS(7676), + [anon_sym_COLON_RBRACK] = ACTIONS(7678), }, [STATE(2203)] = { - [sym_identifier] = ACTIONS(7158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [aux_sym_preproc_if_token2] = ACTIONS(7160), - [aux_sym_preproc_else_token1] = ACTIONS(7160), - [aux_sym_preproc_elif_token1] = ACTIONS(7158), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym_SEMI] = ACTIONS(7160), - [anon_sym___extension__] = ACTIONS(7158), - [anon_sym___attribute__] = ACTIONS(7158), - [anon_sym___attribute] = ACTIONS(7158), - [anon_sym_COLON] = ACTIONS(7158), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7160), - [anon_sym_LBRACE] = ACTIONS(7160), - [anon_sym_RBRACE] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7160), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7158), - [anon_sym_volatile] = ACTIONS(7158), - [anon_sym_restrict] = ACTIONS(7158), - [anon_sym___restrict__] = ACTIONS(7158), - [anon_sym__Atomic] = ACTIONS(7158), - [anon_sym__Noreturn] = ACTIONS(7158), - [anon_sym_noreturn] = ACTIONS(7158), - [anon_sym__Nonnull] = ACTIONS(7158), - [anon_sym_mutable] = ACTIONS(7158), - [anon_sym_constinit] = ACTIONS(7158), - [anon_sym_consteval] = ACTIONS(7158), - [anon_sym_alignas] = ACTIONS(7158), - [anon_sym__Alignas] = ACTIONS(7158), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_and_eq] = ACTIONS(7158), - [anon_sym_or_eq] = ACTIONS(7158), - [anon_sym_xor_eq] = ACTIONS(7158), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7158), - [anon_sym_and] = ACTIONS(7158), - [anon_sym_bitor] = ACTIONS(7158), - [anon_sym_xor] = ACTIONS(7158), - [anon_sym_bitand] = ACTIONS(7158), - [anon_sym_not_eq] = ACTIONS(7158), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7160), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7158), - [anon_sym_override] = ACTIONS(7158), - [anon_sym_requires] = ACTIONS(7158), - [anon_sym_COLON_RBRACK] = ACTIONS(7160), + [sym_identifier] = ACTIONS(7680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7682), + [anon_sym_COMMA] = ACTIONS(7682), + [anon_sym_RPAREN] = ACTIONS(7682), + [aux_sym_preproc_if_token2] = ACTIONS(7682), + [aux_sym_preproc_else_token1] = ACTIONS(7682), + [aux_sym_preproc_elif_token1] = ACTIONS(7680), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7682), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7682), + [anon_sym_LPAREN2] = ACTIONS(7682), + [anon_sym_DASH] = ACTIONS(7680), + [anon_sym_PLUS] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7680), + [anon_sym_SLASH] = ACTIONS(7680), + [anon_sym_PERCENT] = ACTIONS(7680), + [anon_sym_PIPE_PIPE] = ACTIONS(7682), + [anon_sym_AMP_AMP] = ACTIONS(7682), + [anon_sym_PIPE] = ACTIONS(7680), + [anon_sym_CARET] = ACTIONS(7680), + [anon_sym_AMP] = ACTIONS(7680), + [anon_sym_EQ_EQ] = ACTIONS(7682), + [anon_sym_BANG_EQ] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7680), + [anon_sym_GT_EQ] = ACTIONS(7682), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_LT] = ACTIONS(7680), + [anon_sym_LT_LT] = ACTIONS(7680), + [anon_sym_GT_GT] = ACTIONS(7680), + [anon_sym_SEMI] = ACTIONS(7682), + [anon_sym___extension__] = ACTIONS(7680), + [anon_sym___attribute__] = ACTIONS(7680), + [anon_sym___attribute] = ACTIONS(7680), + [anon_sym_COLON] = ACTIONS(7680), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7682), + [anon_sym_LBRACE] = ACTIONS(7682), + [anon_sym_RBRACE] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7682), + [anon_sym_EQ] = ACTIONS(7680), + [anon_sym_const] = ACTIONS(7680), + [anon_sym_constexpr] = ACTIONS(7680), + [anon_sym_volatile] = ACTIONS(7680), + [anon_sym_restrict] = ACTIONS(7680), + [anon_sym___restrict__] = ACTIONS(7680), + [anon_sym__Atomic] = ACTIONS(7680), + [anon_sym__Noreturn] = ACTIONS(7680), + [anon_sym_noreturn] = ACTIONS(7680), + [anon_sym__Nonnull] = ACTIONS(7680), + [anon_sym_mutable] = ACTIONS(7680), + [anon_sym_constinit] = ACTIONS(7680), + [anon_sym_consteval] = ACTIONS(7680), + [anon_sym_alignas] = ACTIONS(7680), + [anon_sym__Alignas] = ACTIONS(7680), + [anon_sym_QMARK] = ACTIONS(7682), + [anon_sym_STAR_EQ] = ACTIONS(7682), + [anon_sym_SLASH_EQ] = ACTIONS(7682), + [anon_sym_PERCENT_EQ] = ACTIONS(7682), + [anon_sym_PLUS_EQ] = ACTIONS(7682), + [anon_sym_DASH_EQ] = ACTIONS(7682), + [anon_sym_LT_LT_EQ] = ACTIONS(7682), + [anon_sym_GT_GT_EQ] = ACTIONS(7682), + [anon_sym_AMP_EQ] = ACTIONS(7682), + [anon_sym_CARET_EQ] = ACTIONS(7682), + [anon_sym_PIPE_EQ] = ACTIONS(7682), + [anon_sym_and_eq] = ACTIONS(7680), + [anon_sym_or_eq] = ACTIONS(7680), + [anon_sym_xor_eq] = ACTIONS(7680), + [anon_sym_LT_EQ_GT] = ACTIONS(7682), + [anon_sym_or] = ACTIONS(7680), + [anon_sym_and] = ACTIONS(7680), + [anon_sym_bitor] = ACTIONS(7680), + [anon_sym_xor] = ACTIONS(7680), + [anon_sym_bitand] = ACTIONS(7680), + [anon_sym_not_eq] = ACTIONS(7680), + [anon_sym_DASH_DASH] = ACTIONS(7682), + [anon_sym_PLUS_PLUS] = ACTIONS(7682), + [anon_sym_DOT] = ACTIONS(7680), + [anon_sym_DOT_STAR] = ACTIONS(7682), + [anon_sym_DASH_GT] = ACTIONS(7682), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7680), + [anon_sym_override] = ACTIONS(7680), + [anon_sym_requires] = ACTIONS(7680), + [anon_sym_COLON_RBRACK] = ACTIONS(7682), }, [STATE(2204)] = { - [sym_identifier] = ACTIONS(7667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), - [anon_sym_COMMA] = ACTIONS(7669), - [anon_sym_RPAREN] = ACTIONS(7669), - [aux_sym_preproc_if_token2] = ACTIONS(7669), - [aux_sym_preproc_else_token1] = ACTIONS(7669), - [aux_sym_preproc_elif_token1] = ACTIONS(7667), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7669), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7669), - [anon_sym_LPAREN2] = ACTIONS(7669), - [anon_sym_DASH] = ACTIONS(7667), - [anon_sym_PLUS] = ACTIONS(7667), - [anon_sym_STAR] = ACTIONS(7667), - [anon_sym_SLASH] = ACTIONS(7667), - [anon_sym_PERCENT] = ACTIONS(7667), - [anon_sym_PIPE_PIPE] = ACTIONS(7669), - [anon_sym_AMP_AMP] = ACTIONS(7669), - [anon_sym_PIPE] = ACTIONS(7667), - [anon_sym_CARET] = ACTIONS(7667), - [anon_sym_AMP] = ACTIONS(7667), - [anon_sym_EQ_EQ] = ACTIONS(7669), - [anon_sym_BANG_EQ] = ACTIONS(7669), - [anon_sym_GT] = ACTIONS(7667), - [anon_sym_GT_EQ] = ACTIONS(7669), - [anon_sym_LT_EQ] = ACTIONS(7667), - [anon_sym_LT] = ACTIONS(7667), - [anon_sym_LT_LT] = ACTIONS(7667), - [anon_sym_GT_GT] = ACTIONS(7667), - [anon_sym_SEMI] = ACTIONS(7669), - [anon_sym___extension__] = ACTIONS(7667), - [anon_sym___attribute__] = ACTIONS(7667), - [anon_sym___attribute] = ACTIONS(7667), - [anon_sym_COLON] = ACTIONS(7667), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7669), - [anon_sym_LBRACE] = ACTIONS(7669), - [anon_sym_RBRACE] = ACTIONS(7669), - [anon_sym_LBRACK] = ACTIONS(7669), - [anon_sym_EQ] = ACTIONS(7667), - [anon_sym_const] = ACTIONS(7667), - [anon_sym_constexpr] = ACTIONS(7667), - [anon_sym_volatile] = ACTIONS(7667), - [anon_sym_restrict] = ACTIONS(7667), - [anon_sym___restrict__] = ACTIONS(7667), - [anon_sym__Atomic] = ACTIONS(7667), - [anon_sym__Noreturn] = ACTIONS(7667), - [anon_sym_noreturn] = ACTIONS(7667), - [anon_sym__Nonnull] = ACTIONS(7667), - [anon_sym_mutable] = ACTIONS(7667), - [anon_sym_constinit] = ACTIONS(7667), - [anon_sym_consteval] = ACTIONS(7667), - [anon_sym_alignas] = ACTIONS(7667), - [anon_sym__Alignas] = ACTIONS(7667), - [anon_sym_QMARK] = ACTIONS(7669), - [anon_sym_STAR_EQ] = ACTIONS(7669), - [anon_sym_SLASH_EQ] = ACTIONS(7669), - [anon_sym_PERCENT_EQ] = ACTIONS(7669), - [anon_sym_PLUS_EQ] = ACTIONS(7669), - [anon_sym_DASH_EQ] = ACTIONS(7669), - [anon_sym_LT_LT_EQ] = ACTIONS(7669), - [anon_sym_GT_GT_EQ] = ACTIONS(7669), - [anon_sym_AMP_EQ] = ACTIONS(7669), - [anon_sym_CARET_EQ] = ACTIONS(7669), - [anon_sym_PIPE_EQ] = ACTIONS(7669), - [anon_sym_and_eq] = ACTIONS(7667), - [anon_sym_or_eq] = ACTIONS(7667), - [anon_sym_xor_eq] = ACTIONS(7667), - [anon_sym_LT_EQ_GT] = ACTIONS(7669), - [anon_sym_or] = ACTIONS(7667), - [anon_sym_and] = ACTIONS(7667), - [anon_sym_bitor] = ACTIONS(7667), - [anon_sym_xor] = ACTIONS(7667), - [anon_sym_bitand] = ACTIONS(7667), - [anon_sym_not_eq] = ACTIONS(7667), - [anon_sym_DASH_DASH] = ACTIONS(7669), - [anon_sym_PLUS_PLUS] = ACTIONS(7669), - [anon_sym_DOT] = ACTIONS(7667), - [anon_sym_DOT_STAR] = ACTIONS(7669), - [anon_sym_DASH_GT] = ACTIONS(7669), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7667), - [anon_sym_override] = ACTIONS(7667), - [anon_sym_requires] = ACTIONS(7667), - [anon_sym_COLON_RBRACK] = ACTIONS(7669), + [aux_sym_sized_type_specifier_repeat1] = STATE(2222), + [sym_identifier] = ACTIONS(7684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7686), + [anon_sym_COMMA] = ACTIONS(7686), + [aux_sym_preproc_if_token2] = ACTIONS(7686), + [aux_sym_preproc_else_token1] = ACTIONS(7686), + [aux_sym_preproc_elif_token1] = ACTIONS(7684), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7686), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7686), + [anon_sym_LPAREN2] = ACTIONS(7686), + [anon_sym_DASH] = ACTIONS(7684), + [anon_sym_PLUS] = ACTIONS(7684), + [anon_sym_STAR] = ACTIONS(7684), + [anon_sym_SLASH] = ACTIONS(7684), + [anon_sym_PERCENT] = ACTIONS(7684), + [anon_sym_PIPE_PIPE] = ACTIONS(7686), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_PIPE] = ACTIONS(7684), + [anon_sym_CARET] = ACTIONS(7684), + [anon_sym_AMP] = ACTIONS(7684), + [anon_sym_EQ_EQ] = ACTIONS(7686), + [anon_sym_BANG_EQ] = ACTIONS(7686), + [anon_sym_GT] = ACTIONS(7684), + [anon_sym_GT_EQ] = ACTIONS(7686), + [anon_sym_LT_EQ] = ACTIONS(7684), + [anon_sym_LT] = ACTIONS(7684), + [anon_sym_LT_LT] = ACTIONS(7684), + [anon_sym_GT_GT] = ACTIONS(7684), + [anon_sym___extension__] = ACTIONS(7684), + [anon_sym___attribute__] = ACTIONS(7684), + [anon_sym___attribute] = ACTIONS(7684), + [anon_sym_LBRACE] = ACTIONS(7686), + [anon_sym_signed] = ACTIONS(7688), + [anon_sym_unsigned] = ACTIONS(7688), + [anon_sym_long] = ACTIONS(7688), + [anon_sym_short] = ACTIONS(7688), + [anon_sym_LBRACK] = ACTIONS(7686), + [anon_sym_RBRACK] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(7684), + [anon_sym_const] = ACTIONS(7684), + [anon_sym_constexpr] = ACTIONS(7684), + [anon_sym_volatile] = ACTIONS(7684), + [anon_sym_restrict] = ACTIONS(7684), + [anon_sym___restrict__] = ACTIONS(7684), + [anon_sym__Atomic] = ACTIONS(7684), + [anon_sym__Noreturn] = ACTIONS(7684), + [anon_sym_noreturn] = ACTIONS(7684), + [anon_sym__Nonnull] = ACTIONS(7684), + [anon_sym_mutable] = ACTIONS(7684), + [anon_sym_constinit] = ACTIONS(7684), + [anon_sym_consteval] = ACTIONS(7684), + [anon_sym_alignas] = ACTIONS(7684), + [anon_sym__Alignas] = ACTIONS(7684), + [anon_sym_QMARK] = ACTIONS(7686), + [anon_sym_STAR_EQ] = ACTIONS(7686), + [anon_sym_SLASH_EQ] = ACTIONS(7686), + [anon_sym_PERCENT_EQ] = ACTIONS(7686), + [anon_sym_PLUS_EQ] = ACTIONS(7686), + [anon_sym_DASH_EQ] = ACTIONS(7686), + [anon_sym_LT_LT_EQ] = ACTIONS(7686), + [anon_sym_GT_GT_EQ] = ACTIONS(7686), + [anon_sym_AMP_EQ] = ACTIONS(7686), + [anon_sym_CARET_EQ] = ACTIONS(7686), + [anon_sym_PIPE_EQ] = ACTIONS(7686), + [anon_sym_and_eq] = ACTIONS(7684), + [anon_sym_or_eq] = ACTIONS(7684), + [anon_sym_xor_eq] = ACTIONS(7684), + [anon_sym_LT_EQ_GT] = ACTIONS(7686), + [anon_sym_or] = ACTIONS(7684), + [anon_sym_and] = ACTIONS(7684), + [anon_sym_bitor] = ACTIONS(7684), + [anon_sym_xor] = ACTIONS(7684), + [anon_sym_bitand] = ACTIONS(7684), + [anon_sym_not_eq] = ACTIONS(7684), + [anon_sym_DASH_DASH] = ACTIONS(7686), + [anon_sym_PLUS_PLUS] = ACTIONS(7686), + [anon_sym_DOT] = ACTIONS(7684), + [anon_sym_DOT_STAR] = ACTIONS(7686), + [anon_sym_DASH_GT] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7684), + [anon_sym_override] = ACTIONS(7684), + [anon_sym_requires] = ACTIONS(7684), }, [STATE(2205)] = { - [sym_identifier] = ACTIONS(7671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), - [anon_sym_COMMA] = ACTIONS(7673), - [anon_sym_RPAREN] = ACTIONS(7673), - [aux_sym_preproc_if_token2] = ACTIONS(7673), - [aux_sym_preproc_else_token1] = ACTIONS(7673), - [aux_sym_preproc_elif_token1] = ACTIONS(7671), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7673), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7673), - [anon_sym_LPAREN2] = ACTIONS(7673), - [anon_sym_DASH] = ACTIONS(7671), - [anon_sym_PLUS] = ACTIONS(7671), - [anon_sym_STAR] = ACTIONS(7671), - [anon_sym_SLASH] = ACTIONS(7671), - [anon_sym_PERCENT] = ACTIONS(7671), - [anon_sym_PIPE_PIPE] = ACTIONS(7673), - [anon_sym_AMP_AMP] = ACTIONS(7673), - [anon_sym_PIPE] = ACTIONS(7671), - [anon_sym_CARET] = ACTIONS(7671), - [anon_sym_AMP] = ACTIONS(7671), - [anon_sym_EQ_EQ] = ACTIONS(7673), - [anon_sym_BANG_EQ] = ACTIONS(7673), - [anon_sym_GT] = ACTIONS(7671), - [anon_sym_GT_EQ] = ACTIONS(7673), - [anon_sym_LT_EQ] = ACTIONS(7671), - [anon_sym_LT] = ACTIONS(7671), - [anon_sym_LT_LT] = ACTIONS(7671), - [anon_sym_GT_GT] = ACTIONS(7671), - [anon_sym_SEMI] = ACTIONS(7673), - [anon_sym___extension__] = ACTIONS(7671), - [anon_sym___attribute__] = ACTIONS(7671), - [anon_sym___attribute] = ACTIONS(7671), - [anon_sym_COLON] = ACTIONS(7671), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7673), - [anon_sym_LBRACE] = ACTIONS(7673), - [anon_sym_RBRACE] = ACTIONS(7673), - [anon_sym_LBRACK] = ACTIONS(7673), - [anon_sym_EQ] = ACTIONS(7671), - [anon_sym_const] = ACTIONS(7671), - [anon_sym_constexpr] = ACTIONS(7671), - [anon_sym_volatile] = ACTIONS(7671), - [anon_sym_restrict] = ACTIONS(7671), - [anon_sym___restrict__] = ACTIONS(7671), - [anon_sym__Atomic] = ACTIONS(7671), - [anon_sym__Noreturn] = ACTIONS(7671), - [anon_sym_noreturn] = ACTIONS(7671), - [anon_sym__Nonnull] = ACTIONS(7671), - [anon_sym_mutable] = ACTIONS(7671), - [anon_sym_constinit] = ACTIONS(7671), - [anon_sym_consteval] = ACTIONS(7671), - [anon_sym_alignas] = ACTIONS(7671), - [anon_sym__Alignas] = ACTIONS(7671), - [anon_sym_QMARK] = ACTIONS(7673), - [anon_sym_STAR_EQ] = ACTIONS(7673), - [anon_sym_SLASH_EQ] = ACTIONS(7673), - [anon_sym_PERCENT_EQ] = ACTIONS(7673), - [anon_sym_PLUS_EQ] = ACTIONS(7673), - [anon_sym_DASH_EQ] = ACTIONS(7673), - [anon_sym_LT_LT_EQ] = ACTIONS(7673), - [anon_sym_GT_GT_EQ] = ACTIONS(7673), - [anon_sym_AMP_EQ] = ACTIONS(7673), - [anon_sym_CARET_EQ] = ACTIONS(7673), - [anon_sym_PIPE_EQ] = ACTIONS(7673), - [anon_sym_and_eq] = ACTIONS(7671), - [anon_sym_or_eq] = ACTIONS(7671), - [anon_sym_xor_eq] = ACTIONS(7671), - [anon_sym_LT_EQ_GT] = ACTIONS(7673), - [anon_sym_or] = ACTIONS(7671), - [anon_sym_and] = ACTIONS(7671), - [anon_sym_bitor] = ACTIONS(7671), - [anon_sym_xor] = ACTIONS(7671), - [anon_sym_bitand] = ACTIONS(7671), - [anon_sym_not_eq] = ACTIONS(7671), - [anon_sym_DASH_DASH] = ACTIONS(7673), - [anon_sym_PLUS_PLUS] = ACTIONS(7673), - [anon_sym_DOT] = ACTIONS(7671), - [anon_sym_DOT_STAR] = ACTIONS(7673), - [anon_sym_DASH_GT] = ACTIONS(7673), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7671), - [anon_sym_override] = ACTIONS(7671), - [anon_sym_requires] = ACTIONS(7671), - [anon_sym_COLON_RBRACK] = ACTIONS(7673), + [aux_sym_sized_type_specifier_repeat1] = STATE(2225), + [sym_identifier] = ACTIONS(7690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7692), + [anon_sym_COMMA] = ACTIONS(7692), + [aux_sym_preproc_if_token2] = ACTIONS(7692), + [aux_sym_preproc_else_token1] = ACTIONS(7692), + [aux_sym_preproc_elif_token1] = ACTIONS(7690), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7692), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7692), + [anon_sym_LPAREN2] = ACTIONS(7692), + [anon_sym_DASH] = ACTIONS(7690), + [anon_sym_PLUS] = ACTIONS(7690), + [anon_sym_STAR] = ACTIONS(7690), + [anon_sym_SLASH] = ACTIONS(7690), + [anon_sym_PERCENT] = ACTIONS(7690), + [anon_sym_PIPE_PIPE] = ACTIONS(7692), + [anon_sym_AMP_AMP] = ACTIONS(7692), + [anon_sym_PIPE] = ACTIONS(7690), + [anon_sym_CARET] = ACTIONS(7690), + [anon_sym_AMP] = ACTIONS(7690), + [anon_sym_EQ_EQ] = ACTIONS(7692), + [anon_sym_BANG_EQ] = ACTIONS(7692), + [anon_sym_GT] = ACTIONS(7690), + [anon_sym_GT_EQ] = ACTIONS(7692), + [anon_sym_LT_EQ] = ACTIONS(7690), + [anon_sym_LT] = ACTIONS(7690), + [anon_sym_LT_LT] = ACTIONS(7690), + [anon_sym_GT_GT] = ACTIONS(7690), + [anon_sym___extension__] = ACTIONS(7690), + [anon_sym___attribute__] = ACTIONS(7690), + [anon_sym___attribute] = ACTIONS(7690), + [anon_sym_LBRACE] = ACTIONS(7692), + [anon_sym_signed] = ACTIONS(7694), + [anon_sym_unsigned] = ACTIONS(7694), + [anon_sym_long] = ACTIONS(7694), + [anon_sym_short] = ACTIONS(7694), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_RBRACK] = ACTIONS(7692), + [anon_sym_EQ] = ACTIONS(7690), + [anon_sym_const] = ACTIONS(7690), + [anon_sym_constexpr] = ACTIONS(7690), + [anon_sym_volatile] = ACTIONS(7690), + [anon_sym_restrict] = ACTIONS(7690), + [anon_sym___restrict__] = ACTIONS(7690), + [anon_sym__Atomic] = ACTIONS(7690), + [anon_sym__Noreturn] = ACTIONS(7690), + [anon_sym_noreturn] = ACTIONS(7690), + [anon_sym__Nonnull] = ACTIONS(7690), + [anon_sym_mutable] = ACTIONS(7690), + [anon_sym_constinit] = ACTIONS(7690), + [anon_sym_consteval] = ACTIONS(7690), + [anon_sym_alignas] = ACTIONS(7690), + [anon_sym__Alignas] = ACTIONS(7690), + [anon_sym_QMARK] = ACTIONS(7692), + [anon_sym_STAR_EQ] = ACTIONS(7692), + [anon_sym_SLASH_EQ] = ACTIONS(7692), + [anon_sym_PERCENT_EQ] = ACTIONS(7692), + [anon_sym_PLUS_EQ] = ACTIONS(7692), + [anon_sym_DASH_EQ] = ACTIONS(7692), + [anon_sym_LT_LT_EQ] = ACTIONS(7692), + [anon_sym_GT_GT_EQ] = ACTIONS(7692), + [anon_sym_AMP_EQ] = ACTIONS(7692), + [anon_sym_CARET_EQ] = ACTIONS(7692), + [anon_sym_PIPE_EQ] = ACTIONS(7692), + [anon_sym_and_eq] = ACTIONS(7690), + [anon_sym_or_eq] = ACTIONS(7690), + [anon_sym_xor_eq] = ACTIONS(7690), + [anon_sym_LT_EQ_GT] = ACTIONS(7692), + [anon_sym_or] = ACTIONS(7690), + [anon_sym_and] = ACTIONS(7690), + [anon_sym_bitor] = ACTIONS(7690), + [anon_sym_xor] = ACTIONS(7690), + [anon_sym_bitand] = ACTIONS(7690), + [anon_sym_not_eq] = ACTIONS(7690), + [anon_sym_DASH_DASH] = ACTIONS(7692), + [anon_sym_PLUS_PLUS] = ACTIONS(7692), + [anon_sym_DOT] = ACTIONS(7690), + [anon_sym_DOT_STAR] = ACTIONS(7692), + [anon_sym_DASH_GT] = ACTIONS(7692), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7690), + [anon_sym_override] = ACTIONS(7690), + [anon_sym_requires] = ACTIONS(7690), }, [STATE(2206)] = { - [sym_identifier] = ACTIONS(6605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_RPAREN] = ACTIONS(6598), - [aux_sym_preproc_if_token2] = ACTIONS(6598), - [aux_sym_preproc_else_token1] = ACTIONS(6598), - [aux_sym_preproc_elif_token1] = ACTIONS(6605), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6598), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6605), - [anon_sym_PERCENT] = ACTIONS(6605), - [anon_sym_PIPE_PIPE] = ACTIONS(6598), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6605), - [anon_sym_CARET] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_BANG_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6605), - [anon_sym_GT_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(6605), - [anon_sym_LT_LT] = ACTIONS(6605), - [anon_sym_GT_GT] = ACTIONS(6605), - [anon_sym_SEMI] = ACTIONS(6598), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6605), - [anon_sym___attribute] = ACTIONS(6605), - [anon_sym_COLON] = ACTIONS(6605), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6598), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_RBRACE] = ACTIONS(6598), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6603), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6598), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6603), - [anon_sym_or_eq] = ACTIONS(6603), - [anon_sym_xor_eq] = ACTIONS(6603), - [anon_sym_LT_EQ_GT] = ACTIONS(6598), - [anon_sym_or] = ACTIONS(6605), - [anon_sym_and] = ACTIONS(6605), - [anon_sym_bitor] = ACTIONS(6605), - [anon_sym_xor] = ACTIONS(6605), - [anon_sym_bitand] = ACTIONS(6605), - [anon_sym_not_eq] = ACTIONS(6605), - [anon_sym_DASH_DASH] = ACTIONS(6598), - [anon_sym_PLUS_PLUS] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6605), - [anon_sym_DOT_STAR] = ACTIONS(6598), - [anon_sym_DASH_GT] = ACTIONS(6598), + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [sym_identifier] = ACTIONS(7402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [aux_sym_preproc_if_token2] = ACTIONS(7399), + [aux_sym_preproc_else_token1] = ACTIONS(7399), + [aux_sym_preproc_elif_token1] = ACTIONS(7402), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(7064), + [anon_sym_unsigned] = ACTIONS(7064), + [anon_sym_long] = ACTIONS(7064), + [anon_sym_short] = ACTIONS(7064), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_COLON_RBRACK] = ACTIONS(6598), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_requires] = ACTIONS(7402), }, [STATE(2207)] = { - [sym_decltype_auto] = STATE(2238), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7229), - [anon_sym_decltype] = ACTIONS(6819), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [sym_identifier] = ACTIONS(7672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [aux_sym_preproc_if_token2] = ACTIONS(7674), + [aux_sym_preproc_else_token1] = ACTIONS(7674), + [aux_sym_preproc_elif_token1] = ACTIONS(7672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7674), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym_SEMI] = ACTIONS(7674), + [anon_sym___extension__] = ACTIONS(7672), + [anon_sym___attribute__] = ACTIONS(7672), + [anon_sym___attribute] = ACTIONS(7672), + [anon_sym_COLON] = ACTIONS(7672), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_RBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7672), + [anon_sym_volatile] = ACTIONS(7672), + [anon_sym_restrict] = ACTIONS(7672), + [anon_sym___restrict__] = ACTIONS(7672), + [anon_sym__Atomic] = ACTIONS(7672), + [anon_sym__Noreturn] = ACTIONS(7672), + [anon_sym_noreturn] = ACTIONS(7672), + [anon_sym__Nonnull] = ACTIONS(7672), + [anon_sym_mutable] = ACTIONS(7672), + [anon_sym_constinit] = ACTIONS(7672), + [anon_sym_consteval] = ACTIONS(7672), + [anon_sym_alignas] = ACTIONS(7672), + [anon_sym__Alignas] = ACTIONS(7672), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7672), + [anon_sym_or_eq] = ACTIONS(7672), + [anon_sym_xor_eq] = ACTIONS(7672), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7672), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7672), + [anon_sym_not_eq] = ACTIONS(7672), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_COLON_RBRACK] = ACTIONS(7674), }, [STATE(2208)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2212), - [sym_identifier] = ACTIONS(7675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), - [anon_sym_COMMA] = ACTIONS(7677), - [aux_sym_preproc_if_token2] = ACTIONS(7677), - [aux_sym_preproc_else_token1] = ACTIONS(7677), - [aux_sym_preproc_elif_token1] = ACTIONS(7675), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7677), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7677), - [anon_sym_LPAREN2] = ACTIONS(7677), - [anon_sym_DASH] = ACTIONS(7675), - [anon_sym_PLUS] = ACTIONS(7675), - [anon_sym_STAR] = ACTIONS(7675), - [anon_sym_SLASH] = ACTIONS(7675), - [anon_sym_PERCENT] = ACTIONS(7675), - [anon_sym_PIPE_PIPE] = ACTIONS(7677), - [anon_sym_AMP_AMP] = ACTIONS(7677), - [anon_sym_PIPE] = ACTIONS(7675), - [anon_sym_CARET] = ACTIONS(7675), - [anon_sym_AMP] = ACTIONS(7675), - [anon_sym_EQ_EQ] = ACTIONS(7677), - [anon_sym_BANG_EQ] = ACTIONS(7677), - [anon_sym_GT] = ACTIONS(7675), - [anon_sym_GT_EQ] = ACTIONS(7677), - [anon_sym_LT_EQ] = ACTIONS(7675), - [anon_sym_LT] = ACTIONS(7675), - [anon_sym_LT_LT] = ACTIONS(7675), - [anon_sym_GT_GT] = ACTIONS(7675), - [anon_sym___extension__] = ACTIONS(7675), - [anon_sym___attribute__] = ACTIONS(7675), - [anon_sym___attribute] = ACTIONS(7675), - [anon_sym_LBRACE] = ACTIONS(7677), - [anon_sym_signed] = ACTIONS(7679), - [anon_sym_unsigned] = ACTIONS(7679), - [anon_sym_long] = ACTIONS(7679), - [anon_sym_short] = ACTIONS(7679), - [anon_sym_LBRACK] = ACTIONS(7677), - [anon_sym_RBRACK] = ACTIONS(7677), - [anon_sym_EQ] = ACTIONS(7675), - [anon_sym_const] = ACTIONS(7675), - [anon_sym_constexpr] = ACTIONS(7675), - [anon_sym_volatile] = ACTIONS(7675), - [anon_sym_restrict] = ACTIONS(7675), - [anon_sym___restrict__] = ACTIONS(7675), - [anon_sym__Atomic] = ACTIONS(7675), - [anon_sym__Noreturn] = ACTIONS(7675), - [anon_sym_noreturn] = ACTIONS(7675), - [anon_sym__Nonnull] = ACTIONS(7675), - [anon_sym_mutable] = ACTIONS(7675), - [anon_sym_constinit] = ACTIONS(7675), - [anon_sym_consteval] = ACTIONS(7675), - [anon_sym_alignas] = ACTIONS(7675), - [anon_sym__Alignas] = ACTIONS(7675), - [anon_sym_QMARK] = ACTIONS(7677), - [anon_sym_STAR_EQ] = ACTIONS(7677), - [anon_sym_SLASH_EQ] = ACTIONS(7677), - [anon_sym_PERCENT_EQ] = ACTIONS(7677), - [anon_sym_PLUS_EQ] = ACTIONS(7677), - [anon_sym_DASH_EQ] = ACTIONS(7677), - [anon_sym_LT_LT_EQ] = ACTIONS(7677), - [anon_sym_GT_GT_EQ] = ACTIONS(7677), - [anon_sym_AMP_EQ] = ACTIONS(7677), - [anon_sym_CARET_EQ] = ACTIONS(7677), - [anon_sym_PIPE_EQ] = ACTIONS(7677), - [anon_sym_and_eq] = ACTIONS(7675), - [anon_sym_or_eq] = ACTIONS(7675), - [anon_sym_xor_eq] = ACTIONS(7675), - [anon_sym_LT_EQ_GT] = ACTIONS(7677), - [anon_sym_or] = ACTIONS(7675), - [anon_sym_and] = ACTIONS(7675), - [anon_sym_bitor] = ACTIONS(7675), - [anon_sym_xor] = ACTIONS(7675), - [anon_sym_bitand] = ACTIONS(7675), - [anon_sym_not_eq] = ACTIONS(7675), - [anon_sym_DASH_DASH] = ACTIONS(7677), - [anon_sym_PLUS_PLUS] = ACTIONS(7677), - [anon_sym_DOT] = ACTIONS(7675), - [anon_sym_DOT_STAR] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(7677), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7675), - [anon_sym_override] = ACTIONS(7675), - [anon_sym_requires] = ACTIONS(7675), + [sym_identifier] = ACTIONS(7696), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7698), + [anon_sym_COMMA] = ACTIONS(7698), + [anon_sym_RPAREN] = ACTIONS(7698), + [aux_sym_preproc_if_token2] = ACTIONS(7698), + [aux_sym_preproc_else_token1] = ACTIONS(7698), + [aux_sym_preproc_elif_token1] = ACTIONS(7696), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7698), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7698), + [anon_sym_LPAREN2] = ACTIONS(7698), + [anon_sym_DASH] = ACTIONS(7696), + [anon_sym_PLUS] = ACTIONS(7696), + [anon_sym_STAR] = ACTIONS(7696), + [anon_sym_SLASH] = ACTIONS(7696), + [anon_sym_PERCENT] = ACTIONS(7696), + [anon_sym_PIPE_PIPE] = ACTIONS(7698), + [anon_sym_AMP_AMP] = ACTIONS(7698), + [anon_sym_PIPE] = ACTIONS(7696), + [anon_sym_CARET] = ACTIONS(7696), + [anon_sym_AMP] = ACTIONS(7696), + [anon_sym_EQ_EQ] = ACTIONS(7698), + [anon_sym_BANG_EQ] = ACTIONS(7698), + [anon_sym_GT] = ACTIONS(7696), + [anon_sym_GT_EQ] = ACTIONS(7698), + [anon_sym_LT_EQ] = ACTIONS(7696), + [anon_sym_LT] = ACTIONS(7696), + [anon_sym_LT_LT] = ACTIONS(7696), + [anon_sym_GT_GT] = ACTIONS(7696), + [anon_sym_SEMI] = ACTIONS(7698), + [anon_sym___extension__] = ACTIONS(7696), + [anon_sym___attribute__] = ACTIONS(7696), + [anon_sym___attribute] = ACTIONS(7696), + [anon_sym_COLON] = ACTIONS(7696), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7698), + [anon_sym_LBRACE] = ACTIONS(7698), + [anon_sym_RBRACE] = ACTIONS(7698), + [anon_sym_LBRACK] = ACTIONS(7698), + [anon_sym_EQ] = ACTIONS(7696), + [anon_sym_const] = ACTIONS(7696), + [anon_sym_constexpr] = ACTIONS(7696), + [anon_sym_volatile] = ACTIONS(7696), + [anon_sym_restrict] = ACTIONS(7696), + [anon_sym___restrict__] = ACTIONS(7696), + [anon_sym__Atomic] = ACTIONS(7696), + [anon_sym__Noreturn] = ACTIONS(7696), + [anon_sym_noreturn] = ACTIONS(7696), + [anon_sym__Nonnull] = ACTIONS(7696), + [anon_sym_mutable] = ACTIONS(7696), + [anon_sym_constinit] = ACTIONS(7696), + [anon_sym_consteval] = ACTIONS(7696), + [anon_sym_alignas] = ACTIONS(7696), + [anon_sym__Alignas] = ACTIONS(7696), + [anon_sym_QMARK] = ACTIONS(7698), + [anon_sym_STAR_EQ] = ACTIONS(7698), + [anon_sym_SLASH_EQ] = ACTIONS(7698), + [anon_sym_PERCENT_EQ] = ACTIONS(7698), + [anon_sym_PLUS_EQ] = ACTIONS(7698), + [anon_sym_DASH_EQ] = ACTIONS(7698), + [anon_sym_LT_LT_EQ] = ACTIONS(7698), + [anon_sym_GT_GT_EQ] = ACTIONS(7698), + [anon_sym_AMP_EQ] = ACTIONS(7698), + [anon_sym_CARET_EQ] = ACTIONS(7698), + [anon_sym_PIPE_EQ] = ACTIONS(7698), + [anon_sym_and_eq] = ACTIONS(7696), + [anon_sym_or_eq] = ACTIONS(7696), + [anon_sym_xor_eq] = ACTIONS(7696), + [anon_sym_LT_EQ_GT] = ACTIONS(7698), + [anon_sym_or] = ACTIONS(7696), + [anon_sym_and] = ACTIONS(7696), + [anon_sym_bitor] = ACTIONS(7696), + [anon_sym_xor] = ACTIONS(7696), + [anon_sym_bitand] = ACTIONS(7696), + [anon_sym_not_eq] = ACTIONS(7696), + [anon_sym_DASH_DASH] = ACTIONS(7698), + [anon_sym_PLUS_PLUS] = ACTIONS(7698), + [anon_sym_DOT] = ACTIONS(7696), + [anon_sym_DOT_STAR] = ACTIONS(7698), + [anon_sym_DASH_GT] = ACTIONS(7698), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7696), + [anon_sym_override] = ACTIONS(7696), + [anon_sym_requires] = ACTIONS(7696), + [anon_sym_COLON_RBRACK] = ACTIONS(7698), }, [STATE(2209)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2212), - [sym_identifier] = ACTIONS(7681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), - [anon_sym_COMMA] = ACTIONS(7683), - [aux_sym_preproc_if_token2] = ACTIONS(7683), - [aux_sym_preproc_else_token1] = ACTIONS(7683), - [aux_sym_preproc_elif_token1] = ACTIONS(7681), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7683), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7683), - [anon_sym_LPAREN2] = ACTIONS(7683), - [anon_sym_DASH] = ACTIONS(7681), - [anon_sym_PLUS] = ACTIONS(7681), - [anon_sym_STAR] = ACTIONS(7681), - [anon_sym_SLASH] = ACTIONS(7681), - [anon_sym_PERCENT] = ACTIONS(7681), - [anon_sym_PIPE_PIPE] = ACTIONS(7683), - [anon_sym_AMP_AMP] = ACTIONS(7683), - [anon_sym_PIPE] = ACTIONS(7681), - [anon_sym_CARET] = ACTIONS(7681), - [anon_sym_AMP] = ACTIONS(7681), - [anon_sym_EQ_EQ] = ACTIONS(7683), - [anon_sym_BANG_EQ] = ACTIONS(7683), - [anon_sym_GT] = ACTIONS(7681), - [anon_sym_GT_EQ] = ACTIONS(7683), - [anon_sym_LT_EQ] = ACTIONS(7681), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym___extension__] = ACTIONS(7681), - [anon_sym___attribute__] = ACTIONS(7681), - [anon_sym___attribute] = ACTIONS(7681), - [anon_sym_LBRACE] = ACTIONS(7683), - [anon_sym_signed] = ACTIONS(7679), - [anon_sym_unsigned] = ACTIONS(7679), - [anon_sym_long] = ACTIONS(7679), - [anon_sym_short] = ACTIONS(7679), - [anon_sym_LBRACK] = ACTIONS(7683), - [anon_sym_RBRACK] = ACTIONS(7683), - [anon_sym_EQ] = ACTIONS(7681), - [anon_sym_const] = ACTIONS(7681), - [anon_sym_constexpr] = ACTIONS(7681), - [anon_sym_volatile] = ACTIONS(7681), - [anon_sym_restrict] = ACTIONS(7681), - [anon_sym___restrict__] = ACTIONS(7681), - [anon_sym__Atomic] = ACTIONS(7681), - [anon_sym__Noreturn] = ACTIONS(7681), - [anon_sym_noreturn] = ACTIONS(7681), - [anon_sym__Nonnull] = ACTIONS(7681), - [anon_sym_mutable] = ACTIONS(7681), - [anon_sym_constinit] = ACTIONS(7681), - [anon_sym_consteval] = ACTIONS(7681), - [anon_sym_alignas] = ACTIONS(7681), - [anon_sym__Alignas] = ACTIONS(7681), - [anon_sym_QMARK] = ACTIONS(7683), - [anon_sym_STAR_EQ] = ACTIONS(7683), - [anon_sym_SLASH_EQ] = ACTIONS(7683), - [anon_sym_PERCENT_EQ] = ACTIONS(7683), - [anon_sym_PLUS_EQ] = ACTIONS(7683), - [anon_sym_DASH_EQ] = ACTIONS(7683), - [anon_sym_LT_LT_EQ] = ACTIONS(7683), - [anon_sym_GT_GT_EQ] = ACTIONS(7683), - [anon_sym_AMP_EQ] = ACTIONS(7683), - [anon_sym_CARET_EQ] = ACTIONS(7683), - [anon_sym_PIPE_EQ] = ACTIONS(7683), - [anon_sym_and_eq] = ACTIONS(7681), - [anon_sym_or_eq] = ACTIONS(7681), - [anon_sym_xor_eq] = ACTIONS(7681), - [anon_sym_LT_EQ_GT] = ACTIONS(7683), - [anon_sym_or] = ACTIONS(7681), - [anon_sym_and] = ACTIONS(7681), - [anon_sym_bitor] = ACTIONS(7681), - [anon_sym_xor] = ACTIONS(7681), - [anon_sym_bitand] = ACTIONS(7681), - [anon_sym_not_eq] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(7683), - [anon_sym_PLUS_PLUS] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7681), - [anon_sym_DOT_STAR] = ACTIONS(7683), - [anon_sym_DASH_GT] = ACTIONS(7683), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7681), - [anon_sym_override] = ACTIONS(7681), - [anon_sym_requires] = ACTIONS(7681), + [sym_identifier] = ACTIONS(7700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7702), + [anon_sym_COMMA] = ACTIONS(7702), + [anon_sym_RPAREN] = ACTIONS(7702), + [aux_sym_preproc_if_token2] = ACTIONS(7702), + [aux_sym_preproc_else_token1] = ACTIONS(7702), + [aux_sym_preproc_elif_token1] = ACTIONS(7700), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7702), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7702), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_DASH] = ACTIONS(7700), + [anon_sym_PLUS] = ACTIONS(7700), + [anon_sym_STAR] = ACTIONS(7700), + [anon_sym_SLASH] = ACTIONS(7700), + [anon_sym_PERCENT] = ACTIONS(7700), + [anon_sym_PIPE_PIPE] = ACTIONS(7702), + [anon_sym_AMP_AMP] = ACTIONS(7702), + [anon_sym_PIPE] = ACTIONS(7700), + [anon_sym_CARET] = ACTIONS(7700), + [anon_sym_AMP] = ACTIONS(7700), + [anon_sym_EQ_EQ] = ACTIONS(7702), + [anon_sym_BANG_EQ] = ACTIONS(7702), + [anon_sym_GT] = ACTIONS(7700), + [anon_sym_GT_EQ] = ACTIONS(7702), + [anon_sym_LT_EQ] = ACTIONS(7700), + [anon_sym_LT] = ACTIONS(7700), + [anon_sym_LT_LT] = ACTIONS(7700), + [anon_sym_GT_GT] = ACTIONS(7700), + [anon_sym_SEMI] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7700), + [anon_sym___attribute__] = ACTIONS(7700), + [anon_sym___attribute] = ACTIONS(7700), + [anon_sym_COLON] = ACTIONS(7700), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7702), + [anon_sym_LBRACE] = ACTIONS(7702), + [anon_sym_RBRACE] = ACTIONS(7702), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_EQ] = ACTIONS(7700), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7700), + [anon_sym_volatile] = ACTIONS(7700), + [anon_sym_restrict] = ACTIONS(7700), + [anon_sym___restrict__] = ACTIONS(7700), + [anon_sym__Atomic] = ACTIONS(7700), + [anon_sym__Noreturn] = ACTIONS(7700), + [anon_sym_noreturn] = ACTIONS(7700), + [anon_sym__Nonnull] = ACTIONS(7700), + [anon_sym_mutable] = ACTIONS(7700), + [anon_sym_constinit] = ACTIONS(7700), + [anon_sym_consteval] = ACTIONS(7700), + [anon_sym_alignas] = ACTIONS(7700), + [anon_sym__Alignas] = ACTIONS(7700), + [anon_sym_QMARK] = ACTIONS(7702), + [anon_sym_STAR_EQ] = ACTIONS(7702), + [anon_sym_SLASH_EQ] = ACTIONS(7702), + [anon_sym_PERCENT_EQ] = ACTIONS(7702), + [anon_sym_PLUS_EQ] = ACTIONS(7702), + [anon_sym_DASH_EQ] = ACTIONS(7702), + [anon_sym_LT_LT_EQ] = ACTIONS(7702), + [anon_sym_GT_GT_EQ] = ACTIONS(7702), + [anon_sym_AMP_EQ] = ACTIONS(7702), + [anon_sym_CARET_EQ] = ACTIONS(7702), + [anon_sym_PIPE_EQ] = ACTIONS(7702), + [anon_sym_and_eq] = ACTIONS(7700), + [anon_sym_or_eq] = ACTIONS(7700), + [anon_sym_xor_eq] = ACTIONS(7700), + [anon_sym_LT_EQ_GT] = ACTIONS(7702), + [anon_sym_or] = ACTIONS(7700), + [anon_sym_and] = ACTIONS(7700), + [anon_sym_bitor] = ACTIONS(7700), + [anon_sym_xor] = ACTIONS(7700), + [anon_sym_bitand] = ACTIONS(7700), + [anon_sym_not_eq] = ACTIONS(7700), + [anon_sym_DASH_DASH] = ACTIONS(7702), + [anon_sym_PLUS_PLUS] = ACTIONS(7702), + [anon_sym_DOT] = ACTIONS(7700), + [anon_sym_DOT_STAR] = ACTIONS(7702), + [anon_sym_DASH_GT] = ACTIONS(7702), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7700), + [anon_sym_override] = ACTIONS(7700), + [anon_sym_requires] = ACTIONS(7700), + [anon_sym_COLON_RBRACK] = ACTIONS(7702), }, [STATE(2210)] = { - [sym_type_qualifier] = STATE(2179), - [sym_alignas_qualifier] = STATE(2047), - [aux_sym__type_definition_type_repeat1] = STATE(2179), - [aux_sym_sized_type_specifier_repeat1] = STATE(2361), - [sym_identifier] = ACTIONS(7327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [aux_sym_preproc_if_token2] = ACTIONS(7249), - [aux_sym_preproc_else_token1] = ACTIONS(7249), - [aux_sym_preproc_elif_token1] = ACTIONS(7251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7249), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(6855), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(7685), - [anon_sym_unsigned] = ACTIONS(7685), - [anon_sym_long] = ACTIONS(7685), - [anon_sym_short] = ACTIONS(7685), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6855), - [anon_sym_volatile] = ACTIONS(6855), - [anon_sym_restrict] = ACTIONS(6855), - [anon_sym___restrict__] = ACTIONS(6855), - [anon_sym__Atomic] = ACTIONS(6855), - [anon_sym__Noreturn] = ACTIONS(6855), - [anon_sym_noreturn] = ACTIONS(6855), - [anon_sym__Nonnull] = ACTIONS(6855), - [anon_sym_mutable] = ACTIONS(6855), - [anon_sym_constinit] = ACTIONS(6855), - [anon_sym_consteval] = ACTIONS(6855), - [anon_sym_alignas] = ACTIONS(7485), - [anon_sym__Alignas] = ACTIONS(7485), - [sym_primitive_type] = ACTIONS(7332), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(7704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7706), + [anon_sym_COMMA] = ACTIONS(7706), + [anon_sym_RPAREN] = ACTIONS(7706), + [aux_sym_preproc_if_token2] = ACTIONS(7706), + [aux_sym_preproc_else_token1] = ACTIONS(7706), + [aux_sym_preproc_elif_token1] = ACTIONS(7704), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7706), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7706), + [anon_sym_LPAREN2] = ACTIONS(7706), + [anon_sym_DASH] = ACTIONS(7704), + [anon_sym_PLUS] = ACTIONS(7704), + [anon_sym_STAR] = ACTIONS(7704), + [anon_sym_SLASH] = ACTIONS(7704), + [anon_sym_PERCENT] = ACTIONS(7704), + [anon_sym_PIPE_PIPE] = ACTIONS(7706), + [anon_sym_AMP_AMP] = ACTIONS(7706), + [anon_sym_PIPE] = ACTIONS(7704), + [anon_sym_CARET] = ACTIONS(7704), + [anon_sym_AMP] = ACTIONS(7704), + [anon_sym_EQ_EQ] = ACTIONS(7706), + [anon_sym_BANG_EQ] = ACTIONS(7706), + [anon_sym_GT] = ACTIONS(7704), + [anon_sym_GT_EQ] = ACTIONS(7706), + [anon_sym_LT_EQ] = ACTIONS(7704), + [anon_sym_LT] = ACTIONS(7704), + [anon_sym_LT_LT] = ACTIONS(7704), + [anon_sym_GT_GT] = ACTIONS(7704), + [anon_sym_SEMI] = ACTIONS(7706), + [anon_sym___extension__] = ACTIONS(7704), + [anon_sym___attribute__] = ACTIONS(7704), + [anon_sym___attribute] = ACTIONS(7704), + [anon_sym_COLON] = ACTIONS(7704), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7706), + [anon_sym_LBRACE] = ACTIONS(7706), + [anon_sym_RBRACE] = ACTIONS(7706), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_EQ] = ACTIONS(7704), + [anon_sym_const] = ACTIONS(7704), + [anon_sym_constexpr] = ACTIONS(7704), + [anon_sym_volatile] = ACTIONS(7704), + [anon_sym_restrict] = ACTIONS(7704), + [anon_sym___restrict__] = ACTIONS(7704), + [anon_sym__Atomic] = ACTIONS(7704), + [anon_sym__Noreturn] = ACTIONS(7704), + [anon_sym_noreturn] = ACTIONS(7704), + [anon_sym__Nonnull] = ACTIONS(7704), + [anon_sym_mutable] = ACTIONS(7704), + [anon_sym_constinit] = ACTIONS(7704), + [anon_sym_consteval] = ACTIONS(7704), + [anon_sym_alignas] = ACTIONS(7704), + [anon_sym__Alignas] = ACTIONS(7704), + [anon_sym_QMARK] = ACTIONS(7706), + [anon_sym_STAR_EQ] = ACTIONS(7706), + [anon_sym_SLASH_EQ] = ACTIONS(7706), + [anon_sym_PERCENT_EQ] = ACTIONS(7706), + [anon_sym_PLUS_EQ] = ACTIONS(7706), + [anon_sym_DASH_EQ] = ACTIONS(7706), + [anon_sym_LT_LT_EQ] = ACTIONS(7706), + [anon_sym_GT_GT_EQ] = ACTIONS(7706), + [anon_sym_AMP_EQ] = ACTIONS(7706), + [anon_sym_CARET_EQ] = ACTIONS(7706), + [anon_sym_PIPE_EQ] = ACTIONS(7706), + [anon_sym_and_eq] = ACTIONS(7704), + [anon_sym_or_eq] = ACTIONS(7704), + [anon_sym_xor_eq] = ACTIONS(7704), + [anon_sym_LT_EQ_GT] = ACTIONS(7706), + [anon_sym_or] = ACTIONS(7704), + [anon_sym_and] = ACTIONS(7704), + [anon_sym_bitor] = ACTIONS(7704), + [anon_sym_xor] = ACTIONS(7704), + [anon_sym_bitand] = ACTIONS(7704), + [anon_sym_not_eq] = ACTIONS(7704), + [anon_sym_DASH_DASH] = ACTIONS(7706), + [anon_sym_PLUS_PLUS] = ACTIONS(7706), + [anon_sym_DOT] = ACTIONS(7704), + [anon_sym_DOT_STAR] = ACTIONS(7706), + [anon_sym_DASH_GT] = ACTIONS(7706), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7704), + [anon_sym_override] = ACTIONS(7704), + [anon_sym_requires] = ACTIONS(7704), + [anon_sym_COLON_RBRACK] = ACTIONS(7706), }, [STATE(2211)] = { - [sym_argument_list] = STATE(3892), - [sym_initializer_list] = STATE(3887), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7687), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [aux_sym_sized_type_specifier_repeat1] = STATE(2211), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7062), + [anon_sym_COMMA] = ACTIONS(7062), + [aux_sym_preproc_if_token2] = ACTIONS(7062), + [aux_sym_preproc_else_token1] = ACTIONS(7062), + [aux_sym_preproc_elif_token1] = ACTIONS(7060), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7062), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(7062), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7060), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7060), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7062), + [anon_sym_LT_EQ] = ACTIONS(7060), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7060), + [anon_sym_GT_GT] = ACTIONS(7060), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym_LBRACE] = ACTIONS(7062), + [anon_sym_signed] = ACTIONS(7708), + [anon_sym_unsigned] = ACTIONS(7708), + [anon_sym_long] = ACTIONS(7708), + [anon_sym_short] = ACTIONS(7708), + [anon_sym_LBRACK] = ACTIONS(7062), + [anon_sym_RBRACK] = ACTIONS(7062), + [anon_sym_EQ] = ACTIONS(7060), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_STAR_EQ] = ACTIONS(7062), + [anon_sym_SLASH_EQ] = ACTIONS(7062), + [anon_sym_PERCENT_EQ] = ACTIONS(7062), + [anon_sym_PLUS_EQ] = ACTIONS(7062), + [anon_sym_DASH_EQ] = ACTIONS(7062), + [anon_sym_LT_LT_EQ] = ACTIONS(7062), + [anon_sym_GT_GT_EQ] = ACTIONS(7062), + [anon_sym_AMP_EQ] = ACTIONS(7062), + [anon_sym_CARET_EQ] = ACTIONS(7062), + [anon_sym_PIPE_EQ] = ACTIONS(7062), + [anon_sym_and_eq] = ACTIONS(7060), + [anon_sym_or_eq] = ACTIONS(7060), + [anon_sym_xor_eq] = ACTIONS(7060), + [anon_sym_LT_EQ_GT] = ACTIONS(7062), + [anon_sym_or] = ACTIONS(7060), + [anon_sym_and] = ACTIONS(7060), + [anon_sym_bitor] = ACTIONS(7060), + [anon_sym_xor] = ACTIONS(7060), + [anon_sym_bitand] = ACTIONS(7060), + [anon_sym_not_eq] = ACTIONS(7060), + [anon_sym_DASH_DASH] = ACTIONS(7062), + [anon_sym_PLUS_PLUS] = ACTIONS(7062), + [anon_sym_DOT] = ACTIONS(7060), + [anon_sym_DOT_STAR] = ACTIONS(7062), + [anon_sym_DASH_GT] = ACTIONS(7062), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7060), + [anon_sym_override] = ACTIONS(7060), + [anon_sym_requires] = ACTIONS(7060), }, [STATE(2212)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2212), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(7001), - [aux_sym_preproc_if_token2] = ACTIONS(7001), - [aux_sym_preproc_else_token1] = ACTIONS(7001), - [aux_sym_preproc_elif_token1] = ACTIONS(6999), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7001), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7001), - [anon_sym_LPAREN2] = ACTIONS(7001), - [anon_sym_DASH] = ACTIONS(6999), - [anon_sym_PLUS] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(6999), - [anon_sym_SLASH] = ACTIONS(6999), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(7001), - [anon_sym_PIPE] = ACTIONS(6999), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(6999), - [anon_sym_EQ_EQ] = ACTIONS(7001), - [anon_sym_BANG_EQ] = ACTIONS(7001), - [anon_sym_GT] = ACTIONS(6999), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(6999), - [anon_sym_LT] = ACTIONS(6999), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(6999), - [anon_sym_LBRACE] = ACTIONS(7001), - [anon_sym_signed] = ACTIONS(7690), - [anon_sym_unsigned] = ACTIONS(7690), - [anon_sym_long] = ACTIONS(7690), - [anon_sym_short] = ACTIONS(7690), - [anon_sym_LBRACK] = ACTIONS(7001), - [anon_sym_RBRACK] = ACTIONS(7001), - [anon_sym_EQ] = ACTIONS(6999), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7001), - [anon_sym_STAR_EQ] = ACTIONS(7001), - [anon_sym_SLASH_EQ] = ACTIONS(7001), - [anon_sym_PERCENT_EQ] = ACTIONS(7001), - [anon_sym_PLUS_EQ] = ACTIONS(7001), - [anon_sym_DASH_EQ] = ACTIONS(7001), - [anon_sym_LT_LT_EQ] = ACTIONS(7001), - [anon_sym_GT_GT_EQ] = ACTIONS(7001), - [anon_sym_AMP_EQ] = ACTIONS(7001), - [anon_sym_CARET_EQ] = ACTIONS(7001), - [anon_sym_PIPE_EQ] = ACTIONS(7001), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(7001), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(7001), - [anon_sym_PLUS_PLUS] = ACTIONS(7001), - [anon_sym_DOT] = ACTIONS(6999), - [anon_sym_DOT_STAR] = ACTIONS(7001), - [anon_sym_DASH_GT] = ACTIONS(7001), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [aux_sym_sized_type_specifier_repeat1] = STATE(2175), + [sym_identifier] = ACTIONS(7313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [aux_sym_preproc_if_token2] = ACTIONS(7193), + [aux_sym_preproc_else_token1] = ACTIONS(7193), + [aux_sym_preproc_elif_token1] = ACTIONS(7195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7193), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(6837), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7316), + [anon_sym_unsigned] = ACTIONS(7316), + [anon_sym_long] = ACTIONS(7316), + [anon_sym_short] = ACTIONS(7316), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6837), + [anon_sym_volatile] = ACTIONS(6837), + [anon_sym_restrict] = ACTIONS(6837), + [anon_sym___restrict__] = ACTIONS(6837), + [anon_sym__Atomic] = ACTIONS(6837), + [anon_sym__Noreturn] = ACTIONS(6837), + [anon_sym_noreturn] = ACTIONS(6837), + [anon_sym__Nonnull] = ACTIONS(6837), + [anon_sym_mutable] = ACTIONS(6837), + [anon_sym_constinit] = ACTIONS(6837), + [anon_sym_consteval] = ACTIONS(6837), + [anon_sym_alignas] = ACTIONS(7407), + [anon_sym__Alignas] = ACTIONS(7407), + [sym_primitive_type] = ACTIONS(7318), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), }, [STATE(2213)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2212), - [sym_identifier] = ACTIONS(7693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), - [anon_sym_COMMA] = ACTIONS(7695), - [aux_sym_preproc_if_token2] = ACTIONS(7695), - [aux_sym_preproc_else_token1] = ACTIONS(7695), - [aux_sym_preproc_elif_token1] = ACTIONS(7693), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7695), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7695), - [anon_sym_LPAREN2] = ACTIONS(7695), - [anon_sym_DASH] = ACTIONS(7693), - [anon_sym_PLUS] = ACTIONS(7693), - [anon_sym_STAR] = ACTIONS(7693), - [anon_sym_SLASH] = ACTIONS(7693), - [anon_sym_PERCENT] = ACTIONS(7693), - [anon_sym_PIPE_PIPE] = ACTIONS(7695), - [anon_sym_AMP_AMP] = ACTIONS(7695), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_CARET] = ACTIONS(7693), - [anon_sym_AMP] = ACTIONS(7693), - [anon_sym_EQ_EQ] = ACTIONS(7695), - [anon_sym_BANG_EQ] = ACTIONS(7695), - [anon_sym_GT] = ACTIONS(7693), - [anon_sym_GT_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7693), - [anon_sym_LT_LT] = ACTIONS(7693), - [anon_sym_GT_GT] = ACTIONS(7693), - [anon_sym___extension__] = ACTIONS(7693), - [anon_sym___attribute__] = ACTIONS(7693), - [anon_sym___attribute] = ACTIONS(7693), - [anon_sym_LBRACE] = ACTIONS(7695), - [anon_sym_signed] = ACTIONS(7679), - [anon_sym_unsigned] = ACTIONS(7679), - [anon_sym_long] = ACTIONS(7679), - [anon_sym_short] = ACTIONS(7679), - [anon_sym_LBRACK] = ACTIONS(7695), - [anon_sym_RBRACK] = ACTIONS(7695), - [anon_sym_EQ] = ACTIONS(7693), - [anon_sym_const] = ACTIONS(7693), - [anon_sym_constexpr] = ACTIONS(7693), - [anon_sym_volatile] = ACTIONS(7693), - [anon_sym_restrict] = ACTIONS(7693), - [anon_sym___restrict__] = ACTIONS(7693), - [anon_sym__Atomic] = ACTIONS(7693), - [anon_sym__Noreturn] = ACTIONS(7693), - [anon_sym_noreturn] = ACTIONS(7693), - [anon_sym__Nonnull] = ACTIONS(7693), - [anon_sym_mutable] = ACTIONS(7693), - [anon_sym_constinit] = ACTIONS(7693), - [anon_sym_consteval] = ACTIONS(7693), - [anon_sym_alignas] = ACTIONS(7693), - [anon_sym__Alignas] = ACTIONS(7693), - [anon_sym_QMARK] = ACTIONS(7695), - [anon_sym_STAR_EQ] = ACTIONS(7695), - [anon_sym_SLASH_EQ] = ACTIONS(7695), - [anon_sym_PERCENT_EQ] = ACTIONS(7695), - [anon_sym_PLUS_EQ] = ACTIONS(7695), - [anon_sym_DASH_EQ] = ACTIONS(7695), - [anon_sym_LT_LT_EQ] = ACTIONS(7695), - [anon_sym_GT_GT_EQ] = ACTIONS(7695), - [anon_sym_AMP_EQ] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(7695), - [anon_sym_and_eq] = ACTIONS(7693), - [anon_sym_or_eq] = ACTIONS(7693), - [anon_sym_xor_eq] = ACTIONS(7693), - [anon_sym_LT_EQ_GT] = ACTIONS(7695), - [anon_sym_or] = ACTIONS(7693), - [anon_sym_and] = ACTIONS(7693), - [anon_sym_bitor] = ACTIONS(7693), - [anon_sym_xor] = ACTIONS(7693), - [anon_sym_bitand] = ACTIONS(7693), - [anon_sym_not_eq] = ACTIONS(7693), - [anon_sym_DASH_DASH] = ACTIONS(7695), - [anon_sym_PLUS_PLUS] = ACTIONS(7695), - [anon_sym_DOT] = ACTIONS(7693), - [anon_sym_DOT_STAR] = ACTIONS(7695), - [anon_sym_DASH_GT] = ACTIONS(7695), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7693), - [anon_sym_override] = ACTIONS(7693), - [anon_sym_requires] = ACTIONS(7693), + [sym_identifier] = ACTIONS(7584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_RPAREN] = ACTIONS(7586), + [aux_sym_preproc_if_token2] = ACTIONS(7586), + [aux_sym_preproc_else_token1] = ACTIONS(7586), + [aux_sym_preproc_elif_token1] = ACTIONS(7584), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7586), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7584), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7584), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7584), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7584), + [anon_sym_GT_GT] = ACTIONS(7584), + [anon_sym_SEMI] = ACTIONS(7586), + [anon_sym___extension__] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7584), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_COLON] = ACTIONS(7584), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7586), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_RBRACE] = ACTIONS(7586), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7584), + [anon_sym_volatile] = ACTIONS(7584), + [anon_sym_restrict] = ACTIONS(7584), + [anon_sym___restrict__] = ACTIONS(7584), + [anon_sym__Atomic] = ACTIONS(7584), + [anon_sym__Noreturn] = ACTIONS(7584), + [anon_sym_noreturn] = ACTIONS(7584), + [anon_sym__Nonnull] = ACTIONS(7584), + [anon_sym_mutable] = ACTIONS(7584), + [anon_sym_constinit] = ACTIONS(7584), + [anon_sym_consteval] = ACTIONS(7584), + [anon_sym_alignas] = ACTIONS(7584), + [anon_sym__Alignas] = ACTIONS(7584), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_STAR_EQ] = ACTIONS(7586), + [anon_sym_SLASH_EQ] = ACTIONS(7586), + [anon_sym_PERCENT_EQ] = ACTIONS(7586), + [anon_sym_PLUS_EQ] = ACTIONS(7586), + [anon_sym_DASH_EQ] = ACTIONS(7586), + [anon_sym_LT_LT_EQ] = ACTIONS(7586), + [anon_sym_GT_GT_EQ] = ACTIONS(7586), + [anon_sym_AMP_EQ] = ACTIONS(7586), + [anon_sym_CARET_EQ] = ACTIONS(7586), + [anon_sym_PIPE_EQ] = ACTIONS(7586), + [anon_sym_and_eq] = ACTIONS(7584), + [anon_sym_or_eq] = ACTIONS(7584), + [anon_sym_xor_eq] = ACTIONS(7584), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7584), + [anon_sym_and] = ACTIONS(7584), + [anon_sym_bitor] = ACTIONS(7584), + [anon_sym_xor] = ACTIONS(7584), + [anon_sym_bitand] = ACTIONS(7584), + [anon_sym_not_eq] = ACTIONS(7584), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7586), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7584), + [anon_sym_override] = ACTIONS(7584), + [anon_sym_requires] = ACTIONS(7584), + [anon_sym_COLON_RBRACK] = ACTIONS(7586), }, [STATE(2214)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2212), - [sym_identifier] = ACTIONS(7697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), - [anon_sym_COMMA] = ACTIONS(7699), - [aux_sym_preproc_if_token2] = ACTIONS(7699), - [aux_sym_preproc_else_token1] = ACTIONS(7699), - [aux_sym_preproc_elif_token1] = ACTIONS(7697), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7699), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7699), - [anon_sym_LPAREN2] = ACTIONS(7699), - [anon_sym_DASH] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7697), - [anon_sym_STAR] = ACTIONS(7697), - [anon_sym_SLASH] = ACTIONS(7697), - [anon_sym_PERCENT] = ACTIONS(7697), - [anon_sym_PIPE_PIPE] = ACTIONS(7699), - [anon_sym_AMP_AMP] = ACTIONS(7699), - [anon_sym_PIPE] = ACTIONS(7697), - [anon_sym_CARET] = ACTIONS(7697), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_EQ_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7699), - [anon_sym_GT] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_LT] = ACTIONS(7697), - [anon_sym_LT_LT] = ACTIONS(7697), - [anon_sym_GT_GT] = ACTIONS(7697), - [anon_sym___extension__] = ACTIONS(7697), - [anon_sym___attribute__] = ACTIONS(7697), - [anon_sym___attribute] = ACTIONS(7697), - [anon_sym_LBRACE] = ACTIONS(7699), - [anon_sym_signed] = ACTIONS(7679), - [anon_sym_unsigned] = ACTIONS(7679), - [anon_sym_long] = ACTIONS(7679), - [anon_sym_short] = ACTIONS(7679), - [anon_sym_LBRACK] = ACTIONS(7699), - [anon_sym_RBRACK] = ACTIONS(7699), - [anon_sym_EQ] = ACTIONS(7697), - [anon_sym_const] = ACTIONS(7697), - [anon_sym_constexpr] = ACTIONS(7697), - [anon_sym_volatile] = ACTIONS(7697), - [anon_sym_restrict] = ACTIONS(7697), - [anon_sym___restrict__] = ACTIONS(7697), - [anon_sym__Atomic] = ACTIONS(7697), - [anon_sym__Noreturn] = ACTIONS(7697), - [anon_sym_noreturn] = ACTIONS(7697), - [anon_sym__Nonnull] = ACTIONS(7697), - [anon_sym_mutable] = ACTIONS(7697), - [anon_sym_constinit] = ACTIONS(7697), - [anon_sym_consteval] = ACTIONS(7697), - [anon_sym_alignas] = ACTIONS(7697), - [anon_sym__Alignas] = ACTIONS(7697), - [anon_sym_QMARK] = ACTIONS(7699), - [anon_sym_STAR_EQ] = ACTIONS(7699), - [anon_sym_SLASH_EQ] = ACTIONS(7699), - [anon_sym_PERCENT_EQ] = ACTIONS(7699), - [anon_sym_PLUS_EQ] = ACTIONS(7699), - [anon_sym_DASH_EQ] = ACTIONS(7699), - [anon_sym_LT_LT_EQ] = ACTIONS(7699), - [anon_sym_GT_GT_EQ] = ACTIONS(7699), - [anon_sym_AMP_EQ] = ACTIONS(7699), - [anon_sym_CARET_EQ] = ACTIONS(7699), - [anon_sym_PIPE_EQ] = ACTIONS(7699), - [anon_sym_and_eq] = ACTIONS(7697), - [anon_sym_or_eq] = ACTIONS(7697), - [anon_sym_xor_eq] = ACTIONS(7697), - [anon_sym_LT_EQ_GT] = ACTIONS(7699), - [anon_sym_or] = ACTIONS(7697), - [anon_sym_and] = ACTIONS(7697), - [anon_sym_bitor] = ACTIONS(7697), - [anon_sym_xor] = ACTIONS(7697), - [anon_sym_bitand] = ACTIONS(7697), - [anon_sym_not_eq] = ACTIONS(7697), - [anon_sym_DASH_DASH] = ACTIONS(7699), - [anon_sym_PLUS_PLUS] = ACTIONS(7699), - [anon_sym_DOT] = ACTIONS(7697), - [anon_sym_DOT_STAR] = ACTIONS(7699), - [anon_sym_DASH_GT] = ACTIONS(7699), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7697), - [anon_sym_override] = ACTIONS(7697), - [anon_sym_requires] = ACTIONS(7697), + [sym_identifier] = ACTIONS(7711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7713), + [anon_sym_COMMA] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7713), + [aux_sym_preproc_if_token2] = ACTIONS(7713), + [aux_sym_preproc_else_token1] = ACTIONS(7713), + [aux_sym_preproc_elif_token1] = ACTIONS(7711), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7713), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7713), + [anon_sym_LPAREN2] = ACTIONS(7713), + [anon_sym_DASH] = ACTIONS(7711), + [anon_sym_PLUS] = ACTIONS(7711), + [anon_sym_STAR] = ACTIONS(7711), + [anon_sym_SLASH] = ACTIONS(7711), + [anon_sym_PERCENT] = ACTIONS(7711), + [anon_sym_PIPE_PIPE] = ACTIONS(7713), + [anon_sym_AMP_AMP] = ACTIONS(7713), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_CARET] = ACTIONS(7711), + [anon_sym_AMP] = ACTIONS(7711), + [anon_sym_EQ_EQ] = ACTIONS(7713), + [anon_sym_BANG_EQ] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_EQ] = ACTIONS(7713), + [anon_sym_LT_EQ] = ACTIONS(7711), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_LT_LT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7711), + [anon_sym_SEMI] = ACTIONS(7713), + [anon_sym___extension__] = ACTIONS(7711), + [anon_sym___attribute__] = ACTIONS(7711), + [anon_sym___attribute] = ACTIONS(7711), + [anon_sym_COLON] = ACTIONS(7711), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7713), + [anon_sym_LBRACE] = ACTIONS(7713), + [anon_sym_RBRACE] = ACTIONS(7713), + [anon_sym_LBRACK] = ACTIONS(7713), + [anon_sym_EQ] = ACTIONS(7711), + [anon_sym_const] = ACTIONS(7711), + [anon_sym_constexpr] = ACTIONS(7711), + [anon_sym_volatile] = ACTIONS(7711), + [anon_sym_restrict] = ACTIONS(7711), + [anon_sym___restrict__] = ACTIONS(7711), + [anon_sym__Atomic] = ACTIONS(7711), + [anon_sym__Noreturn] = ACTIONS(7711), + [anon_sym_noreturn] = ACTIONS(7711), + [anon_sym__Nonnull] = ACTIONS(7711), + [anon_sym_mutable] = ACTIONS(7711), + [anon_sym_constinit] = ACTIONS(7711), + [anon_sym_consteval] = ACTIONS(7711), + [anon_sym_alignas] = ACTIONS(7711), + [anon_sym__Alignas] = ACTIONS(7711), + [anon_sym_QMARK] = ACTIONS(7713), + [anon_sym_STAR_EQ] = ACTIONS(7713), + [anon_sym_SLASH_EQ] = ACTIONS(7713), + [anon_sym_PERCENT_EQ] = ACTIONS(7713), + [anon_sym_PLUS_EQ] = ACTIONS(7713), + [anon_sym_DASH_EQ] = ACTIONS(7713), + [anon_sym_LT_LT_EQ] = ACTIONS(7713), + [anon_sym_GT_GT_EQ] = ACTIONS(7713), + [anon_sym_AMP_EQ] = ACTIONS(7713), + [anon_sym_CARET_EQ] = ACTIONS(7713), + [anon_sym_PIPE_EQ] = ACTIONS(7713), + [anon_sym_and_eq] = ACTIONS(7711), + [anon_sym_or_eq] = ACTIONS(7711), + [anon_sym_xor_eq] = ACTIONS(7711), + [anon_sym_LT_EQ_GT] = ACTIONS(7713), + [anon_sym_or] = ACTIONS(7711), + [anon_sym_and] = ACTIONS(7711), + [anon_sym_bitor] = ACTIONS(7711), + [anon_sym_xor] = ACTIONS(7711), + [anon_sym_bitand] = ACTIONS(7711), + [anon_sym_not_eq] = ACTIONS(7711), + [anon_sym_DASH_DASH] = ACTIONS(7713), + [anon_sym_PLUS_PLUS] = ACTIONS(7713), + [anon_sym_DOT] = ACTIONS(7711), + [anon_sym_DOT_STAR] = ACTIONS(7713), + [anon_sym_DASH_GT] = ACTIONS(7713), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7711), + [anon_sym_override] = ACTIONS(7711), + [anon_sym_requires] = ACTIONS(7711), + [anon_sym_COLON_RBRACK] = ACTIONS(7713), }, [STATE(2215)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2219), - [sym_identifier] = ACTIONS(7701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), - [anon_sym_COMMA] = ACTIONS(7703), - [aux_sym_preproc_if_token2] = ACTIONS(7703), - [aux_sym_preproc_else_token1] = ACTIONS(7703), - [aux_sym_preproc_elif_token1] = ACTIONS(7701), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7703), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7703), - [anon_sym_LPAREN2] = ACTIONS(7703), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_STAR] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7701), - [anon_sym_PERCENT] = ACTIONS(7701), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_AMP_AMP] = ACTIONS(7703), - [anon_sym_PIPE] = ACTIONS(7701), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_AMP] = ACTIONS(7701), - [anon_sym_EQ_EQ] = ACTIONS(7703), - [anon_sym_BANG_EQ] = ACTIONS(7703), - [anon_sym_GT] = ACTIONS(7701), - [anon_sym_GT_EQ] = ACTIONS(7703), - [anon_sym_LT_EQ] = ACTIONS(7701), - [anon_sym_LT] = ACTIONS(7701), - [anon_sym_LT_LT] = ACTIONS(7701), - [anon_sym_GT_GT] = ACTIONS(7701), - [anon_sym___extension__] = ACTIONS(7701), - [anon_sym___attribute__] = ACTIONS(7701), - [anon_sym___attribute] = ACTIONS(7701), - [anon_sym_LBRACE] = ACTIONS(7703), - [anon_sym_signed] = ACTIONS(7705), - [anon_sym_unsigned] = ACTIONS(7705), - [anon_sym_long] = ACTIONS(7705), - [anon_sym_short] = ACTIONS(7705), - [anon_sym_LBRACK] = ACTIONS(7703), - [anon_sym_RBRACK] = ACTIONS(7703), - [anon_sym_EQ] = ACTIONS(7701), - [anon_sym_const] = ACTIONS(7701), - [anon_sym_constexpr] = ACTIONS(7701), - [anon_sym_volatile] = ACTIONS(7701), - [anon_sym_restrict] = ACTIONS(7701), - [anon_sym___restrict__] = ACTIONS(7701), - [anon_sym__Atomic] = ACTIONS(7701), - [anon_sym__Noreturn] = ACTIONS(7701), - [anon_sym_noreturn] = ACTIONS(7701), - [anon_sym__Nonnull] = ACTIONS(7701), - [anon_sym_mutable] = ACTIONS(7701), - [anon_sym_constinit] = ACTIONS(7701), - [anon_sym_consteval] = ACTIONS(7701), - [anon_sym_alignas] = ACTIONS(7701), - [anon_sym__Alignas] = ACTIONS(7701), - [anon_sym_QMARK] = ACTIONS(7703), - [anon_sym_STAR_EQ] = ACTIONS(7703), - [anon_sym_SLASH_EQ] = ACTIONS(7703), - [anon_sym_PERCENT_EQ] = ACTIONS(7703), - [anon_sym_PLUS_EQ] = ACTIONS(7703), - [anon_sym_DASH_EQ] = ACTIONS(7703), - [anon_sym_LT_LT_EQ] = ACTIONS(7703), - [anon_sym_GT_GT_EQ] = ACTIONS(7703), - [anon_sym_AMP_EQ] = ACTIONS(7703), - [anon_sym_CARET_EQ] = ACTIONS(7703), - [anon_sym_PIPE_EQ] = ACTIONS(7703), - [anon_sym_and_eq] = ACTIONS(7701), - [anon_sym_or_eq] = ACTIONS(7701), - [anon_sym_xor_eq] = ACTIONS(7701), - [anon_sym_LT_EQ_GT] = ACTIONS(7703), - [anon_sym_or] = ACTIONS(7701), - [anon_sym_and] = ACTIONS(7701), - [anon_sym_bitor] = ACTIONS(7701), - [anon_sym_xor] = ACTIONS(7701), - [anon_sym_bitand] = ACTIONS(7701), - [anon_sym_not_eq] = ACTIONS(7701), - [anon_sym_DASH_DASH] = ACTIONS(7703), - [anon_sym_PLUS_PLUS] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(7701), - [anon_sym_DOT_STAR] = ACTIONS(7703), - [anon_sym_DASH_GT] = ACTIONS(7703), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7701), - [anon_sym_override] = ACTIONS(7701), - [anon_sym_requires] = ACTIONS(7701), + [sym_identifier] = ACTIONS(7715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7717), + [anon_sym_COMMA] = ACTIONS(7717), + [anon_sym_RPAREN] = ACTIONS(7717), + [aux_sym_preproc_if_token2] = ACTIONS(7717), + [aux_sym_preproc_else_token1] = ACTIONS(7717), + [aux_sym_preproc_elif_token1] = ACTIONS(7715), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7717), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7717), + [anon_sym_LPAREN2] = ACTIONS(7717), + [anon_sym_DASH] = ACTIONS(7715), + [anon_sym_PLUS] = ACTIONS(7715), + [anon_sym_STAR] = ACTIONS(7715), + [anon_sym_SLASH] = ACTIONS(7715), + [anon_sym_PERCENT] = ACTIONS(7715), + [anon_sym_PIPE_PIPE] = ACTIONS(7717), + [anon_sym_AMP_AMP] = ACTIONS(7717), + [anon_sym_PIPE] = ACTIONS(7715), + [anon_sym_CARET] = ACTIONS(7715), + [anon_sym_AMP] = ACTIONS(7715), + [anon_sym_EQ_EQ] = ACTIONS(7717), + [anon_sym_BANG_EQ] = ACTIONS(7717), + [anon_sym_GT] = ACTIONS(7715), + [anon_sym_GT_EQ] = ACTIONS(7717), + [anon_sym_LT_EQ] = ACTIONS(7715), + [anon_sym_LT] = ACTIONS(7715), + [anon_sym_LT_LT] = ACTIONS(7715), + [anon_sym_GT_GT] = ACTIONS(7715), + [anon_sym_SEMI] = ACTIONS(7717), + [anon_sym___extension__] = ACTIONS(7715), + [anon_sym___attribute__] = ACTIONS(7715), + [anon_sym___attribute] = ACTIONS(7715), + [anon_sym_COLON] = ACTIONS(7715), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7717), + [anon_sym_RBRACE] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7717), + [anon_sym_EQ] = ACTIONS(7715), + [anon_sym_const] = ACTIONS(7715), + [anon_sym_constexpr] = ACTIONS(7715), + [anon_sym_volatile] = ACTIONS(7715), + [anon_sym_restrict] = ACTIONS(7715), + [anon_sym___restrict__] = ACTIONS(7715), + [anon_sym__Atomic] = ACTIONS(7715), + [anon_sym__Noreturn] = ACTIONS(7715), + [anon_sym_noreturn] = ACTIONS(7715), + [anon_sym__Nonnull] = ACTIONS(7715), + [anon_sym_mutable] = ACTIONS(7715), + [anon_sym_constinit] = ACTIONS(7715), + [anon_sym_consteval] = ACTIONS(7715), + [anon_sym_alignas] = ACTIONS(7715), + [anon_sym__Alignas] = ACTIONS(7715), + [anon_sym_QMARK] = ACTIONS(7717), + [anon_sym_STAR_EQ] = ACTIONS(7717), + [anon_sym_SLASH_EQ] = ACTIONS(7717), + [anon_sym_PERCENT_EQ] = ACTIONS(7717), + [anon_sym_PLUS_EQ] = ACTIONS(7717), + [anon_sym_DASH_EQ] = ACTIONS(7717), + [anon_sym_LT_LT_EQ] = ACTIONS(7717), + [anon_sym_GT_GT_EQ] = ACTIONS(7717), + [anon_sym_AMP_EQ] = ACTIONS(7717), + [anon_sym_CARET_EQ] = ACTIONS(7717), + [anon_sym_PIPE_EQ] = ACTIONS(7717), + [anon_sym_and_eq] = ACTIONS(7715), + [anon_sym_or_eq] = ACTIONS(7715), + [anon_sym_xor_eq] = ACTIONS(7715), + [anon_sym_LT_EQ_GT] = ACTIONS(7717), + [anon_sym_or] = ACTIONS(7715), + [anon_sym_and] = ACTIONS(7715), + [anon_sym_bitor] = ACTIONS(7715), + [anon_sym_xor] = ACTIONS(7715), + [anon_sym_bitand] = ACTIONS(7715), + [anon_sym_not_eq] = ACTIONS(7715), + [anon_sym_DASH_DASH] = ACTIONS(7717), + [anon_sym_PLUS_PLUS] = ACTIONS(7717), + [anon_sym_DOT] = ACTIONS(7715), + [anon_sym_DOT_STAR] = ACTIONS(7717), + [anon_sym_DASH_GT] = ACTIONS(7717), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7715), + [anon_sym_override] = ACTIONS(7715), + [anon_sym_requires] = ACTIONS(7715), + [anon_sym_COLON_RBRACK] = ACTIONS(7717), }, [STATE(2216)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2220), - [sym_identifier] = ACTIONS(7707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), - [anon_sym_COMMA] = ACTIONS(7709), - [aux_sym_preproc_if_token2] = ACTIONS(7709), - [aux_sym_preproc_else_token1] = ACTIONS(7709), - [aux_sym_preproc_elif_token1] = ACTIONS(7707), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7709), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7709), - [anon_sym_LPAREN2] = ACTIONS(7709), - [anon_sym_DASH] = ACTIONS(7707), - [anon_sym_PLUS] = ACTIONS(7707), - [anon_sym_STAR] = ACTIONS(7707), - [anon_sym_SLASH] = ACTIONS(7707), - [anon_sym_PERCENT] = ACTIONS(7707), - [anon_sym_PIPE_PIPE] = ACTIONS(7709), - [anon_sym_AMP_AMP] = ACTIONS(7709), - [anon_sym_PIPE] = ACTIONS(7707), - [anon_sym_CARET] = ACTIONS(7707), - [anon_sym_AMP] = ACTIONS(7707), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_BANG_EQ] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7707), - [anon_sym_GT_EQ] = ACTIONS(7709), - [anon_sym_LT_EQ] = ACTIONS(7707), - [anon_sym_LT] = ACTIONS(7707), - [anon_sym_LT_LT] = ACTIONS(7707), - [anon_sym_GT_GT] = ACTIONS(7707), - [anon_sym___extension__] = ACTIONS(7707), - [anon_sym___attribute__] = ACTIONS(7707), - [anon_sym___attribute] = ACTIONS(7707), - [anon_sym_LBRACE] = ACTIONS(7709), - [anon_sym_signed] = ACTIONS(7711), - [anon_sym_unsigned] = ACTIONS(7711), - [anon_sym_long] = ACTIONS(7711), - [anon_sym_short] = ACTIONS(7711), - [anon_sym_LBRACK] = ACTIONS(7709), - [anon_sym_RBRACK] = ACTIONS(7709), - [anon_sym_EQ] = ACTIONS(7707), - [anon_sym_const] = ACTIONS(7707), - [anon_sym_constexpr] = ACTIONS(7707), - [anon_sym_volatile] = ACTIONS(7707), - [anon_sym_restrict] = ACTIONS(7707), - [anon_sym___restrict__] = ACTIONS(7707), - [anon_sym__Atomic] = ACTIONS(7707), - [anon_sym__Noreturn] = ACTIONS(7707), - [anon_sym_noreturn] = ACTIONS(7707), - [anon_sym__Nonnull] = ACTIONS(7707), - [anon_sym_mutable] = ACTIONS(7707), - [anon_sym_constinit] = ACTIONS(7707), - [anon_sym_consteval] = ACTIONS(7707), - [anon_sym_alignas] = ACTIONS(7707), - [anon_sym__Alignas] = ACTIONS(7707), - [anon_sym_QMARK] = ACTIONS(7709), - [anon_sym_STAR_EQ] = ACTIONS(7709), - [anon_sym_SLASH_EQ] = ACTIONS(7709), - [anon_sym_PERCENT_EQ] = ACTIONS(7709), - [anon_sym_PLUS_EQ] = ACTIONS(7709), - [anon_sym_DASH_EQ] = ACTIONS(7709), - [anon_sym_LT_LT_EQ] = ACTIONS(7709), - [anon_sym_GT_GT_EQ] = ACTIONS(7709), - [anon_sym_AMP_EQ] = ACTIONS(7709), - [anon_sym_CARET_EQ] = ACTIONS(7709), - [anon_sym_PIPE_EQ] = ACTIONS(7709), - [anon_sym_and_eq] = ACTIONS(7707), - [anon_sym_or_eq] = ACTIONS(7707), - [anon_sym_xor_eq] = ACTIONS(7707), - [anon_sym_LT_EQ_GT] = ACTIONS(7709), - [anon_sym_or] = ACTIONS(7707), - [anon_sym_and] = ACTIONS(7707), - [anon_sym_bitor] = ACTIONS(7707), - [anon_sym_xor] = ACTIONS(7707), - [anon_sym_bitand] = ACTIONS(7707), - [anon_sym_not_eq] = ACTIONS(7707), - [anon_sym_DASH_DASH] = ACTIONS(7709), - [anon_sym_PLUS_PLUS] = ACTIONS(7709), - [anon_sym_DOT] = ACTIONS(7707), - [anon_sym_DOT_STAR] = ACTIONS(7709), - [anon_sym_DASH_GT] = ACTIONS(7709), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7707), - [anon_sym_override] = ACTIONS(7707), - [anon_sym_requires] = ACTIONS(7707), + [sym_template_argument_list] = STATE(2048), + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7129), + [anon_sym_COMMA] = ACTIONS(7129), + [anon_sym_RPAREN] = ACTIONS(7129), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_TILDE] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7124), + [anon_sym_PLUS] = ACTIONS(7124), + [anon_sym_STAR] = ACTIONS(7119), + [anon_sym_SLASH] = ACTIONS(7124), + [anon_sym_PERCENT] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7129), + [anon_sym_AMP_AMP] = ACTIONS(7119), + [anon_sym_PIPE] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7126), + [anon_sym_EQ_EQ] = ACTIONS(7129), + [anon_sym_BANG_EQ] = ACTIONS(7129), + [anon_sym_GT] = ACTIONS(7124), + [anon_sym_GT_EQ] = ACTIONS(7129), + [anon_sym_LT_EQ] = ACTIONS(7124), + [anon_sym_LT] = ACTIONS(7405), + [anon_sym_LT_LT] = ACTIONS(7129), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym_SEMI] = ACTIONS(7129), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym_virtual] = ACTIONS(7117), + [anon_sym_extern] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7122), + [anon_sym___declspec] = ACTIONS(7117), + [anon_sym___based] = ACTIONS(7117), + [anon_sym___cdecl] = ACTIONS(7117), + [anon_sym___clrcall] = ACTIONS(7117), + [anon_sym___stdcall] = ACTIONS(7117), + [anon_sym___fastcall] = ACTIONS(7117), + [anon_sym___thiscall] = ACTIONS(7117), + [anon_sym___vectorcall] = ACTIONS(7117), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7126), + [anon_sym_static] = ACTIONS(7117), + [anon_sym_register] = ACTIONS(7117), + [anon_sym_inline] = ACTIONS(7117), + [anon_sym___inline] = ACTIONS(7117), + [anon_sym___inline__] = ACTIONS(7117), + [anon_sym___forceinline] = ACTIONS(7117), + [anon_sym_thread_local] = ACTIONS(7117), + [anon_sym___thread] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(7129), + [anon_sym_LT_EQ_GT] = ACTIONS(7129), + [anon_sym_or] = ACTIONS(7124), + [anon_sym_and] = ACTIONS(7124), + [anon_sym_bitor] = ACTIONS(7124), + [anon_sym_xor] = ACTIONS(7124), + [anon_sym_bitand] = ACTIONS(7124), + [anon_sym_not_eq] = ACTIONS(7124), + [anon_sym_DASH_DASH] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7129), + [anon_sym_DOT] = ACTIONS(7124), + [anon_sym_DOT_STAR] = ACTIONS(7129), + [anon_sym_DASH_GT] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7117), + [anon_sym_template] = ACTIONS(7117), + [anon_sym_operator] = ACTIONS(7117), + [anon_sym_LBRACK_COLON] = ACTIONS(7122), }, [STATE(2217)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2212), - [sym_identifier] = ACTIONS(7713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), - [anon_sym_COMMA] = ACTIONS(7715), - [aux_sym_preproc_if_token2] = ACTIONS(7715), - [aux_sym_preproc_else_token1] = ACTIONS(7715), - [aux_sym_preproc_elif_token1] = ACTIONS(7713), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7715), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7715), - [anon_sym_LPAREN2] = ACTIONS(7715), - [anon_sym_DASH] = ACTIONS(7713), - [anon_sym_PLUS] = ACTIONS(7713), - [anon_sym_STAR] = ACTIONS(7713), - [anon_sym_SLASH] = ACTIONS(7713), - [anon_sym_PERCENT] = ACTIONS(7713), - [anon_sym_PIPE_PIPE] = ACTIONS(7715), - [anon_sym_AMP_AMP] = ACTIONS(7715), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_CARET] = ACTIONS(7713), - [anon_sym_AMP] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7715), - [anon_sym_BANG_EQ] = ACTIONS(7715), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_EQ] = ACTIONS(7715), - [anon_sym_LT_EQ] = ACTIONS(7713), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_LT_LT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7713), - [anon_sym___extension__] = ACTIONS(7713), - [anon_sym___attribute__] = ACTIONS(7713), - [anon_sym___attribute] = ACTIONS(7713), - [anon_sym_LBRACE] = ACTIONS(7715), - [anon_sym_signed] = ACTIONS(7679), - [anon_sym_unsigned] = ACTIONS(7679), - [anon_sym_long] = ACTIONS(7679), - [anon_sym_short] = ACTIONS(7679), - [anon_sym_LBRACK] = ACTIONS(7715), - [anon_sym_RBRACK] = ACTIONS(7715), - [anon_sym_EQ] = ACTIONS(7713), - [anon_sym_const] = ACTIONS(7713), - [anon_sym_constexpr] = ACTIONS(7713), - [anon_sym_volatile] = ACTIONS(7713), - [anon_sym_restrict] = ACTIONS(7713), - [anon_sym___restrict__] = ACTIONS(7713), - [anon_sym__Atomic] = ACTIONS(7713), - [anon_sym__Noreturn] = ACTIONS(7713), - [anon_sym_noreturn] = ACTIONS(7713), - [anon_sym__Nonnull] = ACTIONS(7713), - [anon_sym_mutable] = ACTIONS(7713), - [anon_sym_constinit] = ACTIONS(7713), - [anon_sym_consteval] = ACTIONS(7713), - [anon_sym_alignas] = ACTIONS(7713), - [anon_sym__Alignas] = ACTIONS(7713), - [anon_sym_QMARK] = ACTIONS(7715), - [anon_sym_STAR_EQ] = ACTIONS(7715), - [anon_sym_SLASH_EQ] = ACTIONS(7715), - [anon_sym_PERCENT_EQ] = ACTIONS(7715), - [anon_sym_PLUS_EQ] = ACTIONS(7715), - [anon_sym_DASH_EQ] = ACTIONS(7715), - [anon_sym_LT_LT_EQ] = ACTIONS(7715), - [anon_sym_GT_GT_EQ] = ACTIONS(7715), - [anon_sym_AMP_EQ] = ACTIONS(7715), - [anon_sym_CARET_EQ] = ACTIONS(7715), - [anon_sym_PIPE_EQ] = ACTIONS(7715), - [anon_sym_and_eq] = ACTIONS(7713), - [anon_sym_or_eq] = ACTIONS(7713), - [anon_sym_xor_eq] = ACTIONS(7713), - [anon_sym_LT_EQ_GT] = ACTIONS(7715), - [anon_sym_or] = ACTIONS(7713), - [anon_sym_and] = ACTIONS(7713), - [anon_sym_bitor] = ACTIONS(7713), - [anon_sym_xor] = ACTIONS(7713), - [anon_sym_bitand] = ACTIONS(7713), - [anon_sym_not_eq] = ACTIONS(7713), - [anon_sym_DASH_DASH] = ACTIONS(7715), - [anon_sym_PLUS_PLUS] = ACTIONS(7715), - [anon_sym_DOT] = ACTIONS(7713), - [anon_sym_DOT_STAR] = ACTIONS(7715), - [anon_sym_DASH_GT] = ACTIONS(7715), + [sym_identifier] = ACTIONS(7719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7721), + [anon_sym_COMMA] = ACTIONS(7721), + [anon_sym_RPAREN] = ACTIONS(7721), + [aux_sym_preproc_if_token2] = ACTIONS(7721), + [aux_sym_preproc_else_token1] = ACTIONS(7721), + [aux_sym_preproc_elif_token1] = ACTIONS(7719), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7721), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7721), + [anon_sym_LPAREN2] = ACTIONS(7721), + [anon_sym_DASH] = ACTIONS(7719), + [anon_sym_PLUS] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_SLASH] = ACTIONS(7719), + [anon_sym_PERCENT] = ACTIONS(7719), + [anon_sym_PIPE_PIPE] = ACTIONS(7721), + [anon_sym_AMP_AMP] = ACTIONS(7721), + [anon_sym_PIPE] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_AMP] = ACTIONS(7719), + [anon_sym_EQ_EQ] = ACTIONS(7721), + [anon_sym_BANG_EQ] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7719), + [anon_sym_GT_EQ] = ACTIONS(7721), + [anon_sym_LT_EQ] = ACTIONS(7719), + [anon_sym_LT] = ACTIONS(7719), + [anon_sym_LT_LT] = ACTIONS(7719), + [anon_sym_GT_GT] = ACTIONS(7719), + [anon_sym_SEMI] = ACTIONS(7721), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7719), + [anon_sym_COLON] = ACTIONS(7719), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7721), + [anon_sym_LBRACE] = ACTIONS(7721), + [anon_sym_RBRACE] = ACTIONS(7721), + [anon_sym_LBRACK] = ACTIONS(7721), + [anon_sym_EQ] = ACTIONS(7719), + [anon_sym_const] = ACTIONS(7719), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7721), + [anon_sym_STAR_EQ] = ACTIONS(7721), + [anon_sym_SLASH_EQ] = ACTIONS(7721), + [anon_sym_PERCENT_EQ] = ACTIONS(7721), + [anon_sym_PLUS_EQ] = ACTIONS(7721), + [anon_sym_DASH_EQ] = ACTIONS(7721), + [anon_sym_LT_LT_EQ] = ACTIONS(7721), + [anon_sym_GT_GT_EQ] = ACTIONS(7721), + [anon_sym_AMP_EQ] = ACTIONS(7721), + [anon_sym_CARET_EQ] = ACTIONS(7721), + [anon_sym_PIPE_EQ] = ACTIONS(7721), + [anon_sym_and_eq] = ACTIONS(7719), + [anon_sym_or_eq] = ACTIONS(7719), + [anon_sym_xor_eq] = ACTIONS(7719), + [anon_sym_LT_EQ_GT] = ACTIONS(7721), + [anon_sym_or] = ACTIONS(7719), + [anon_sym_and] = ACTIONS(7719), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7719), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7721), + [anon_sym_PLUS_PLUS] = ACTIONS(7721), + [anon_sym_DOT] = ACTIONS(7719), + [anon_sym_DOT_STAR] = ACTIONS(7721), + [anon_sym_DASH_GT] = ACTIONS(7721), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7713), - [anon_sym_override] = ACTIONS(7713), - [anon_sym_requires] = ACTIONS(7713), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), + [anon_sym_COLON_RBRACK] = ACTIONS(7721), }, [STATE(2218)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2208), - [sym_identifier] = ACTIONS(7717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [aux_sym_preproc_if_token2] = ACTIONS(7719), - [aux_sym_preproc_else_token1] = ACTIONS(7719), - [aux_sym_preproc_elif_token1] = ACTIONS(7717), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7719), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7717), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7717), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7717), - [anon_sym_GT_GT] = ACTIONS(7717), - [anon_sym___extension__] = ACTIONS(7717), - [anon_sym___attribute__] = ACTIONS(7717), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_signed] = ACTIONS(7721), - [anon_sym_unsigned] = ACTIONS(7721), - [anon_sym_long] = ACTIONS(7721), - [anon_sym_short] = ACTIONS(7721), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_RBRACK] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(7717), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7717), - [anon_sym_volatile] = ACTIONS(7717), - [anon_sym_restrict] = ACTIONS(7717), - [anon_sym___restrict__] = ACTIONS(7717), - [anon_sym__Atomic] = ACTIONS(7717), - [anon_sym__Noreturn] = ACTIONS(7717), - [anon_sym_noreturn] = ACTIONS(7717), - [anon_sym__Nonnull] = ACTIONS(7717), - [anon_sym_mutable] = ACTIONS(7717), - [anon_sym_constinit] = ACTIONS(7717), - [anon_sym_consteval] = ACTIONS(7717), - [anon_sym_alignas] = ACTIONS(7717), - [anon_sym__Alignas] = ACTIONS(7717), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_STAR_EQ] = ACTIONS(7719), - [anon_sym_SLASH_EQ] = ACTIONS(7719), - [anon_sym_PERCENT_EQ] = ACTIONS(7719), - [anon_sym_PLUS_EQ] = ACTIONS(7719), - [anon_sym_DASH_EQ] = ACTIONS(7719), - [anon_sym_LT_LT_EQ] = ACTIONS(7719), - [anon_sym_GT_GT_EQ] = ACTIONS(7719), - [anon_sym_AMP_EQ] = ACTIONS(7719), - [anon_sym_CARET_EQ] = ACTIONS(7719), - [anon_sym_PIPE_EQ] = ACTIONS(7719), - [anon_sym_and_eq] = ACTIONS(7717), - [anon_sym_or_eq] = ACTIONS(7717), - [anon_sym_xor_eq] = ACTIONS(7717), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7717), - [anon_sym_and] = ACTIONS(7717), - [anon_sym_bitor] = ACTIONS(7717), - [anon_sym_xor] = ACTIONS(7717), - [anon_sym_bitand] = ACTIONS(7717), - [anon_sym_not_eq] = ACTIONS(7717), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7719), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7717), - [anon_sym_override] = ACTIONS(7717), - [anon_sym_requires] = ACTIONS(7717), - }, - [STATE(2219)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2212), [sym_identifier] = ACTIONS(7723), [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), [aux_sym_preproc_if_token2] = ACTIONS(7725), [aux_sym_preproc_else_token1] = ACTIONS(7725), [aux_sym_preproc_elif_token1] = ACTIONS(7723), @@ -332950,16 +332748,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7723), [anon_sym_LT_LT] = ACTIONS(7723), [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym_SEMI] = ACTIONS(7725), [anon_sym___extension__] = ACTIONS(7723), [anon_sym___attribute__] = ACTIONS(7723), [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_COLON] = ACTIONS(7723), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7725), [anon_sym_LBRACE] = ACTIONS(7725), - [anon_sym_signed] = ACTIONS(7679), - [anon_sym_unsigned] = ACTIONS(7679), - [anon_sym_long] = ACTIONS(7679), - [anon_sym_short] = ACTIONS(7679), + [anon_sym_RBRACE] = ACTIONS(7725), [anon_sym_LBRACK] = ACTIONS(7725), - [anon_sym_RBRACK] = ACTIONS(7725), [anon_sym_EQ] = ACTIONS(7723), [anon_sym_const] = ACTIONS(7723), [anon_sym_constexpr] = ACTIONS(7723), @@ -333005,12 +332802,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(7723), [anon_sym_override] = ACTIONS(7723), [anon_sym_requires] = ACTIONS(7723), + [anon_sym_COLON_RBRACK] = ACTIONS(7725), }, - [STATE(2220)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2212), + [STATE(2219)] = { [sym_identifier] = ACTIONS(7727), [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), [anon_sym_COMMA] = ACTIONS(7729), + [anon_sym_RPAREN] = ACTIONS(7729), [aux_sym_preproc_if_token2] = ACTIONS(7729), [aux_sym_preproc_else_token1] = ACTIONS(7729), [aux_sym_preproc_elif_token1] = ACTIONS(7727), @@ -333035,16 +332833,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7727), [anon_sym_LT_LT] = ACTIONS(7727), [anon_sym_GT_GT] = ACTIONS(7727), + [anon_sym_SEMI] = ACTIONS(7729), [anon_sym___extension__] = ACTIONS(7727), [anon_sym___attribute__] = ACTIONS(7727), [anon_sym___attribute] = ACTIONS(7727), + [anon_sym_COLON] = ACTIONS(7727), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7729), [anon_sym_LBRACE] = ACTIONS(7729), - [anon_sym_signed] = ACTIONS(7679), - [anon_sym_unsigned] = ACTIONS(7679), - [anon_sym_long] = ACTIONS(7679), - [anon_sym_short] = ACTIONS(7679), + [anon_sym_RBRACE] = ACTIONS(7729), [anon_sym_LBRACK] = ACTIONS(7729), - [anon_sym_RBRACK] = ACTIONS(7729), [anon_sym_EQ] = ACTIONS(7727), [anon_sym_const] = ACTIONS(7727), [anon_sym_constexpr] = ACTIONS(7727), @@ -333090,12 +332887,183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(7727), [anon_sym_override] = ACTIONS(7727), [anon_sym_requires] = ACTIONS(7727), + [anon_sym_COLON_RBRACK] = ACTIONS(7729), + }, + [STATE(2220)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2939), + [sym_ms_pointer_modifier] = STATE(2629), + [sym__abstract_declarator] = STATE(5888), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2635), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2635), + [aux_sym_pointer_declarator_repeat1] = STATE(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7299), + [sym_ms_restrict_modifier] = ACTIONS(7301), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7303), + [sym_ms_signed_ptr_modifier] = ACTIONS(7303), + [anon_sym__unaligned] = ACTIONS(7305), + [anon_sym___unaligned] = ACTIONS(7305), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6841), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6843), }, [STATE(2221)] = { + [sym_identifier] = ACTIONS(6660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RPAREN] = ACTIONS(6653), + [aux_sym_preproc_if_token2] = ACTIONS(6653), + [aux_sym_preproc_else_token1] = ACTIONS(6653), + [aux_sym_preproc_elif_token1] = ACTIONS(6660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6653), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_PIPE_PIPE] = ACTIONS(6653), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6660), + [anon_sym_CARET] = ACTIONS(6660), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6653), + [anon_sym_BANG_EQ] = ACTIONS(6653), + [anon_sym_GT] = ACTIONS(6660), + [anon_sym_GT_EQ] = ACTIONS(6653), + [anon_sym_LT_EQ] = ACTIONS(6660), + [anon_sym_LT] = ACTIONS(6660), + [anon_sym_LT_LT] = ACTIONS(6660), + [anon_sym_GT_GT] = ACTIONS(6660), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6660), + [anon_sym___attribute] = ACTIONS(6660), + [anon_sym_COLON] = ACTIONS(6660), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6653), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_RBRACE] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6660), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_STAR_EQ] = ACTIONS(6653), + [anon_sym_SLASH_EQ] = ACTIONS(6653), + [anon_sym_PERCENT_EQ] = ACTIONS(6653), + [anon_sym_PLUS_EQ] = ACTIONS(6653), + [anon_sym_DASH_EQ] = ACTIONS(6653), + [anon_sym_LT_LT_EQ] = ACTIONS(6653), + [anon_sym_GT_GT_EQ] = ACTIONS(6653), + [anon_sym_AMP_EQ] = ACTIONS(6653), + [anon_sym_CARET_EQ] = ACTIONS(6653), + [anon_sym_PIPE_EQ] = ACTIONS(6653), + [anon_sym_and_eq] = ACTIONS(6660), + [anon_sym_or_eq] = ACTIONS(6660), + [anon_sym_xor_eq] = ACTIONS(6660), + [anon_sym_LT_EQ_GT] = ACTIONS(6653), + [anon_sym_or] = ACTIONS(6660), + [anon_sym_and] = ACTIONS(6660), + [anon_sym_bitor] = ACTIONS(6660), + [anon_sym_xor] = ACTIONS(6660), + [anon_sym_bitand] = ACTIONS(6660), + [anon_sym_not_eq] = ACTIONS(6660), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_DOT] = ACTIONS(6660), + [anon_sym_DOT_STAR] = ACTIONS(6653), + [anon_sym_DASH_GT] = ACTIONS(6653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_COLON_RBRACK] = ACTIONS(6653), + }, + [STATE(2222)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(7731), [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), [anon_sym_COMMA] = ACTIONS(7733), - [anon_sym_RPAREN] = ACTIONS(7733), [aux_sym_preproc_if_token2] = ACTIONS(7733), [aux_sym_preproc_else_token1] = ACTIONS(7733), [aux_sym_preproc_elif_token1] = ACTIONS(7731), @@ -333120,15 +333088,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7731), [anon_sym_LT_LT] = ACTIONS(7731), [anon_sym_GT_GT] = ACTIONS(7731), - [anon_sym_SEMI] = ACTIONS(7733), [anon_sym___extension__] = ACTIONS(7731), [anon_sym___attribute__] = ACTIONS(7731), [anon_sym___attribute] = ACTIONS(7731), - [anon_sym_COLON] = ACTIONS(7731), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7733), [anon_sym_LBRACE] = ACTIONS(7733), - [anon_sym_RBRACE] = ACTIONS(7733), + [anon_sym_signed] = ACTIONS(7564), + [anon_sym_unsigned] = ACTIONS(7564), + [anon_sym_long] = ACTIONS(7564), + [anon_sym_short] = ACTIONS(7564), [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_RBRACK] = ACTIONS(7733), [anon_sym_EQ] = ACTIONS(7731), [anon_sym_const] = ACTIONS(7731), [anon_sym_constexpr] = ACTIONS(7731), @@ -333174,264 +333143,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(7731), [anon_sym_override] = ACTIONS(7731), [anon_sym_requires] = ACTIONS(7731), - [anon_sym_COLON_RBRACK] = ACTIONS(7733), - }, - [STATE(2222)] = { - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), }, [STATE(2223)] = { - [sym_argument_list] = STATE(3894), - [sym_initializer_list] = STATE(3899), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7687), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [sym_identifier] = ACTIONS(7723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [aux_sym_preproc_if_token2] = ACTIONS(7725), + [aux_sym_preproc_else_token1] = ACTIONS(7725), + [aux_sym_preproc_elif_token1] = ACTIONS(7723), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7725), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym_SEMI] = ACTIONS(7725), + [anon_sym___extension__] = ACTIONS(7723), + [anon_sym___attribute__] = ACTIONS(7723), + [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_COLON] = ACTIONS(7723), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_RBRACE] = ACTIONS(7725), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7723), + [anon_sym_volatile] = ACTIONS(7723), + [anon_sym_restrict] = ACTIONS(7723), + [anon_sym___restrict__] = ACTIONS(7723), + [anon_sym__Atomic] = ACTIONS(7723), + [anon_sym__Noreturn] = ACTIONS(7723), + [anon_sym_noreturn] = ACTIONS(7723), + [anon_sym__Nonnull] = ACTIONS(7723), + [anon_sym_mutable] = ACTIONS(7723), + [anon_sym_constinit] = ACTIONS(7723), + [anon_sym_consteval] = ACTIONS(7723), + [anon_sym_alignas] = ACTIONS(7723), + [anon_sym__Alignas] = ACTIONS(7723), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7723), + [anon_sym_or_eq] = ACTIONS(7723), + [anon_sym_xor_eq] = ACTIONS(7723), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7723), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7723), + [anon_sym_not_eq] = ACTIONS(7723), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7723), + [anon_sym_override] = ACTIONS(7723), + [anon_sym_requires] = ACTIONS(7723), + [anon_sym_COLON_RBRACK] = ACTIONS(7725), }, [STATE(2224)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2931), - [sym_ms_pointer_modifier] = STATE(2645), - [sym__abstract_declarator] = STATE(5783), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2604), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1989), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2604), - [aux_sym_pointer_declarator_repeat1] = STATE(2645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7589), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7591), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7593), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7313), - [sym_ms_restrict_modifier] = ACTIONS(7315), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7317), - [sym_ms_signed_ptr_modifier] = ACTIONS(7317), - [anon_sym__unaligned] = ACTIONS(7319), - [anon_sym___unaligned] = ACTIONS(7319), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6821), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6823), - }, - [STATE(2225)] = { [sym_identifier] = ACTIONS(7735), [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), [anon_sym_COMMA] = ACTIONS(7737), @@ -333516,96 +333314,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7735), [anon_sym_COLON_RBRACK] = ACTIONS(7737), }, - [STATE(2226)] = { - [sym_identifier] = ACTIONS(7717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_RPAREN] = ACTIONS(7719), - [aux_sym_preproc_if_token2] = ACTIONS(7719), - [aux_sym_preproc_else_token1] = ACTIONS(7719), - [aux_sym_preproc_elif_token1] = ACTIONS(7717), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7719), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7717), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7717), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7717), - [anon_sym_GT_GT] = ACTIONS(7717), - [anon_sym_SEMI] = ACTIONS(7719), - [anon_sym___extension__] = ACTIONS(7717), - [anon_sym___attribute__] = ACTIONS(7717), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_COLON] = ACTIONS(7717), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7719), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_RBRACE] = ACTIONS(7719), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(7717), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7717), - [anon_sym_volatile] = ACTIONS(7717), - [anon_sym_restrict] = ACTIONS(7717), - [anon_sym___restrict__] = ACTIONS(7717), - [anon_sym__Atomic] = ACTIONS(7717), - [anon_sym__Noreturn] = ACTIONS(7717), - [anon_sym_noreturn] = ACTIONS(7717), - [anon_sym__Nonnull] = ACTIONS(7717), - [anon_sym_mutable] = ACTIONS(7717), - [anon_sym_constinit] = ACTIONS(7717), - [anon_sym_consteval] = ACTIONS(7717), - [anon_sym_alignas] = ACTIONS(7717), - [anon_sym__Alignas] = ACTIONS(7717), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_STAR_EQ] = ACTIONS(7719), - [anon_sym_SLASH_EQ] = ACTIONS(7719), - [anon_sym_PERCENT_EQ] = ACTIONS(7719), - [anon_sym_PLUS_EQ] = ACTIONS(7719), - [anon_sym_DASH_EQ] = ACTIONS(7719), - [anon_sym_LT_LT_EQ] = ACTIONS(7719), - [anon_sym_GT_GT_EQ] = ACTIONS(7719), - [anon_sym_AMP_EQ] = ACTIONS(7719), - [anon_sym_CARET_EQ] = ACTIONS(7719), - [anon_sym_PIPE_EQ] = ACTIONS(7719), - [anon_sym_and_eq] = ACTIONS(7717), - [anon_sym_or_eq] = ACTIONS(7717), - [anon_sym_xor_eq] = ACTIONS(7717), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7717), - [anon_sym_and] = ACTIONS(7717), - [anon_sym_bitor] = ACTIONS(7717), - [anon_sym_xor] = ACTIONS(7717), - [anon_sym_bitand] = ACTIONS(7717), - [anon_sym_not_eq] = ACTIONS(7717), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7719), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7717), - [anon_sym_override] = ACTIONS(7717), - [anon_sym_requires] = ACTIONS(7717), - [anon_sym_COLON_RBRACK] = ACTIONS(7719), - }, - [STATE(2227)] = { + [STATE(2225)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2211), [sym_identifier] = ACTIONS(7739), [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), [anon_sym_COMMA] = ACTIONS(7741), - [anon_sym_RPAREN] = ACTIONS(7741), [aux_sym_preproc_if_token2] = ACTIONS(7741), [aux_sym_preproc_else_token1] = ACTIONS(7741), [aux_sym_preproc_elif_token1] = ACTIONS(7739), @@ -333630,15 +333343,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7739), [anon_sym_LT_LT] = ACTIONS(7739), [anon_sym_GT_GT] = ACTIONS(7739), - [anon_sym_SEMI] = ACTIONS(7741), [anon_sym___extension__] = ACTIONS(7739), [anon_sym___attribute__] = ACTIONS(7739), [anon_sym___attribute] = ACTIONS(7739), - [anon_sym_COLON] = ACTIONS(7739), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7741), [anon_sym_LBRACE] = ACTIONS(7741), - [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_signed] = ACTIONS(7564), + [anon_sym_unsigned] = ACTIONS(7564), + [anon_sym_long] = ACTIONS(7564), + [anon_sym_short] = ACTIONS(7564), [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_RBRACK] = ACTIONS(7741), [anon_sym_EQ] = ACTIONS(7739), [anon_sym_const] = ACTIONS(7739), [anon_sym_constexpr] = ACTIONS(7739), @@ -333684,9 +333398,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(7739), [anon_sym_override] = ACTIONS(7739), [anon_sym_requires] = ACTIONS(7739), - [anon_sym_COLON_RBRACK] = ACTIONS(7741), }, - [STATE(2228)] = { + [STATE(2226)] = { + [sym_decltype_auto] = STATE(2186), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7246), + [anon_sym_or_eq] = ACTIONS(7246), + [anon_sym_xor_eq] = ACTIONS(7246), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7252), + [anon_sym_decltype] = ACTIONS(6758), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), + }, + [STATE(2227)] = { [sym_identifier] = ACTIONS(7743), [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), [anon_sym_COMMA] = ACTIONS(7745), @@ -333771,7 +333569,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7743), [anon_sym_COLON_RBRACK] = ACTIONS(7745), }, - [STATE(2229)] = { + [STATE(2228)] = { [sym_identifier] = ACTIONS(7747), [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), [anon_sym_COMMA] = ACTIONS(7749), @@ -333856,7 +333654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7747), [anon_sym_COLON_RBRACK] = ACTIONS(7749), }, - [STATE(2230)] = { + [STATE(2229)] = { [sym_identifier] = ACTIONS(7751), [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), [anon_sym_COMMA] = ACTIONS(7753), @@ -333941,96 +333739,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7751), [anon_sym_COLON_RBRACK] = ACTIONS(7753), }, - [STATE(2231)] = { - [sym_identifier] = ACTIONS(6605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_RPAREN] = ACTIONS(6598), - [aux_sym_preproc_if_token2] = ACTIONS(6598), - [aux_sym_preproc_else_token1] = ACTIONS(6598), - [aux_sym_preproc_elif_token1] = ACTIONS(6605), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6598), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6605), - [anon_sym_PERCENT] = ACTIONS(6605), - [anon_sym_PIPE_PIPE] = ACTIONS(6598), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6605), - [anon_sym_CARET] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_BANG_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6605), - [anon_sym_GT_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(6605), - [anon_sym_LT_LT] = ACTIONS(6605), - [anon_sym_GT_GT] = ACTIONS(6605), - [anon_sym_SEMI] = ACTIONS(6598), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6605), - [anon_sym___attribute] = ACTIONS(6605), - [anon_sym_COLON] = ACTIONS(6605), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6598), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_RBRACE] = ACTIONS(6598), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6598), - [anon_sym_STAR_EQ] = ACTIONS(6598), - [anon_sym_SLASH_EQ] = ACTIONS(6598), - [anon_sym_PERCENT_EQ] = ACTIONS(6598), - [anon_sym_PLUS_EQ] = ACTIONS(6598), - [anon_sym_DASH_EQ] = ACTIONS(6598), - [anon_sym_LT_LT_EQ] = ACTIONS(6598), - [anon_sym_GT_GT_EQ] = ACTIONS(6598), - [anon_sym_AMP_EQ] = ACTIONS(6598), - [anon_sym_CARET_EQ] = ACTIONS(6598), - [anon_sym_PIPE_EQ] = ACTIONS(6598), - [anon_sym_and_eq] = ACTIONS(6605), - [anon_sym_or_eq] = ACTIONS(6605), - [anon_sym_xor_eq] = ACTIONS(6605), - [anon_sym_LT_EQ_GT] = ACTIONS(6598), - [anon_sym_or] = ACTIONS(6605), - [anon_sym_and] = ACTIONS(6605), - [anon_sym_bitor] = ACTIONS(6605), - [anon_sym_xor] = ACTIONS(6605), - [anon_sym_bitand] = ACTIONS(6605), - [anon_sym_not_eq] = ACTIONS(6605), - [anon_sym_DASH_DASH] = ACTIONS(6598), - [anon_sym_PLUS_PLUS] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6605), - [anon_sym_DOT_STAR] = ACTIONS(6598), - [anon_sym_DASH_GT] = ACTIONS(6598), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_COLON_RBRACK] = ACTIONS(6598), - }, - [STATE(2232)] = { + [STATE(2230)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2187), [sym_identifier] = ACTIONS(7755), [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), [anon_sym_COMMA] = ACTIONS(7757), - [anon_sym_RPAREN] = ACTIONS(7757), [aux_sym_preproc_if_token2] = ACTIONS(7757), [aux_sym_preproc_else_token1] = ACTIONS(7757), [aux_sym_preproc_elif_token1] = ACTIONS(7755), @@ -334055,15 +333768,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7755), [anon_sym_LT_LT] = ACTIONS(7755), [anon_sym_GT_GT] = ACTIONS(7755), - [anon_sym_SEMI] = ACTIONS(7757), [anon_sym___extension__] = ACTIONS(7755), [anon_sym___attribute__] = ACTIONS(7755), [anon_sym___attribute] = ACTIONS(7755), - [anon_sym_COLON] = ACTIONS(7755), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7757), [anon_sym_LBRACE] = ACTIONS(7757), - [anon_sym_RBRACE] = ACTIONS(7757), + [anon_sym_signed] = ACTIONS(7759), + [anon_sym_unsigned] = ACTIONS(7759), + [anon_sym_long] = ACTIONS(7759), + [anon_sym_short] = ACTIONS(7759), [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_RBRACK] = ACTIONS(7757), [anon_sym_EQ] = ACTIONS(7755), [anon_sym_const] = ACTIONS(7755), [anon_sym_constexpr] = ACTIONS(7755), @@ -334109,349 +333823,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_final] = ACTIONS(7755), [anon_sym_override] = ACTIONS(7755), [anon_sym_requires] = ACTIONS(7755), - [anon_sym_COLON_RBRACK] = ACTIONS(7757), - }, - [STATE(2233)] = { - [sym_identifier] = ACTIONS(7759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), - [anon_sym_COMMA] = ACTIONS(7761), - [anon_sym_RPAREN] = ACTIONS(7761), - [aux_sym_preproc_if_token2] = ACTIONS(7761), - [aux_sym_preproc_else_token1] = ACTIONS(7761), - [aux_sym_preproc_elif_token1] = ACTIONS(7759), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7761), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7761), - [anon_sym_LPAREN2] = ACTIONS(7761), - [anon_sym_DASH] = ACTIONS(7759), - [anon_sym_PLUS] = ACTIONS(7759), - [anon_sym_STAR] = ACTIONS(7759), - [anon_sym_SLASH] = ACTIONS(7759), - [anon_sym_PERCENT] = ACTIONS(7759), - [anon_sym_PIPE_PIPE] = ACTIONS(7761), - [anon_sym_AMP_AMP] = ACTIONS(7761), - [anon_sym_PIPE] = ACTIONS(7759), - [anon_sym_CARET] = ACTIONS(7759), - [anon_sym_AMP] = ACTIONS(7759), - [anon_sym_EQ_EQ] = ACTIONS(7761), - [anon_sym_BANG_EQ] = ACTIONS(7761), - [anon_sym_GT] = ACTIONS(7759), - [anon_sym_GT_EQ] = ACTIONS(7761), - [anon_sym_LT_EQ] = ACTIONS(7759), - [anon_sym_LT] = ACTIONS(7759), - [anon_sym_LT_LT] = ACTIONS(7759), - [anon_sym_GT_GT] = ACTIONS(7759), - [anon_sym_SEMI] = ACTIONS(7761), - [anon_sym___extension__] = ACTIONS(7759), - [anon_sym___attribute__] = ACTIONS(7759), - [anon_sym___attribute] = ACTIONS(7759), - [anon_sym_COLON] = ACTIONS(7759), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7761), - [anon_sym_LBRACE] = ACTIONS(7761), - [anon_sym_RBRACE] = ACTIONS(7761), - [anon_sym_LBRACK] = ACTIONS(7761), - [anon_sym_EQ] = ACTIONS(7759), - [anon_sym_const] = ACTIONS(7759), - [anon_sym_constexpr] = ACTIONS(7759), - [anon_sym_volatile] = ACTIONS(7759), - [anon_sym_restrict] = ACTIONS(7759), - [anon_sym___restrict__] = ACTIONS(7759), - [anon_sym__Atomic] = ACTIONS(7759), - [anon_sym__Noreturn] = ACTIONS(7759), - [anon_sym_noreturn] = ACTIONS(7759), - [anon_sym__Nonnull] = ACTIONS(7759), - [anon_sym_mutable] = ACTIONS(7759), - [anon_sym_constinit] = ACTIONS(7759), - [anon_sym_consteval] = ACTIONS(7759), - [anon_sym_alignas] = ACTIONS(7759), - [anon_sym__Alignas] = ACTIONS(7759), - [anon_sym_QMARK] = ACTIONS(7761), - [anon_sym_STAR_EQ] = ACTIONS(7761), - [anon_sym_SLASH_EQ] = ACTIONS(7761), - [anon_sym_PERCENT_EQ] = ACTIONS(7761), - [anon_sym_PLUS_EQ] = ACTIONS(7761), - [anon_sym_DASH_EQ] = ACTIONS(7761), - [anon_sym_LT_LT_EQ] = ACTIONS(7761), - [anon_sym_GT_GT_EQ] = ACTIONS(7761), - [anon_sym_AMP_EQ] = ACTIONS(7761), - [anon_sym_CARET_EQ] = ACTIONS(7761), - [anon_sym_PIPE_EQ] = ACTIONS(7761), - [anon_sym_and_eq] = ACTIONS(7759), - [anon_sym_or_eq] = ACTIONS(7759), - [anon_sym_xor_eq] = ACTIONS(7759), - [anon_sym_LT_EQ_GT] = ACTIONS(7761), - [anon_sym_or] = ACTIONS(7759), - [anon_sym_and] = ACTIONS(7759), - [anon_sym_bitor] = ACTIONS(7759), - [anon_sym_xor] = ACTIONS(7759), - [anon_sym_bitand] = ACTIONS(7759), - [anon_sym_not_eq] = ACTIONS(7759), - [anon_sym_DASH_DASH] = ACTIONS(7761), - [anon_sym_PLUS_PLUS] = ACTIONS(7761), - [anon_sym_DOT] = ACTIONS(7759), - [anon_sym_DOT_STAR] = ACTIONS(7761), - [anon_sym_DASH_GT] = ACTIONS(7761), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7759), - [anon_sym_override] = ACTIONS(7759), - [anon_sym_requires] = ACTIONS(7759), - [anon_sym_COLON_RBRACK] = ACTIONS(7761), }, - [STATE(2234)] = { - [sym_identifier] = ACTIONS(7763), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), - [anon_sym_COMMA] = ACTIONS(7765), - [anon_sym_RPAREN] = ACTIONS(7765), - [aux_sym_preproc_if_token2] = ACTIONS(7765), - [aux_sym_preproc_else_token1] = ACTIONS(7765), - [aux_sym_preproc_elif_token1] = ACTIONS(7763), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7765), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7765), - [anon_sym_LPAREN2] = ACTIONS(7765), - [anon_sym_DASH] = ACTIONS(7763), - [anon_sym_PLUS] = ACTIONS(7763), - [anon_sym_STAR] = ACTIONS(7763), - [anon_sym_SLASH] = ACTIONS(7763), - [anon_sym_PERCENT] = ACTIONS(7763), - [anon_sym_PIPE_PIPE] = ACTIONS(7765), - [anon_sym_AMP_AMP] = ACTIONS(7765), - [anon_sym_PIPE] = ACTIONS(7763), - [anon_sym_CARET] = ACTIONS(7763), - [anon_sym_AMP] = ACTIONS(7763), - [anon_sym_EQ_EQ] = ACTIONS(7765), - [anon_sym_BANG_EQ] = ACTIONS(7765), - [anon_sym_GT] = ACTIONS(7763), - [anon_sym_GT_EQ] = ACTIONS(7765), - [anon_sym_LT_EQ] = ACTIONS(7763), - [anon_sym_LT] = ACTIONS(7763), - [anon_sym_LT_LT] = ACTIONS(7763), - [anon_sym_GT_GT] = ACTIONS(7763), - [anon_sym_SEMI] = ACTIONS(7765), - [anon_sym___extension__] = ACTIONS(7763), - [anon_sym___attribute__] = ACTIONS(7763), - [anon_sym___attribute] = ACTIONS(7763), - [anon_sym_COLON] = ACTIONS(7763), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7765), - [anon_sym_LBRACE] = ACTIONS(7765), - [anon_sym_RBRACE] = ACTIONS(7765), - [anon_sym_LBRACK] = ACTIONS(7765), - [anon_sym_EQ] = ACTIONS(7763), - [anon_sym_const] = ACTIONS(7763), - [anon_sym_constexpr] = ACTIONS(7763), - [anon_sym_volatile] = ACTIONS(7763), - [anon_sym_restrict] = ACTIONS(7763), - [anon_sym___restrict__] = ACTIONS(7763), - [anon_sym__Atomic] = ACTIONS(7763), - [anon_sym__Noreturn] = ACTIONS(7763), - [anon_sym_noreturn] = ACTIONS(7763), - [anon_sym__Nonnull] = ACTIONS(7763), - [anon_sym_mutable] = ACTIONS(7763), - [anon_sym_constinit] = ACTIONS(7763), - [anon_sym_consteval] = ACTIONS(7763), - [anon_sym_alignas] = ACTIONS(7763), - [anon_sym__Alignas] = ACTIONS(7763), - [anon_sym_QMARK] = ACTIONS(7765), - [anon_sym_STAR_EQ] = ACTIONS(7765), - [anon_sym_SLASH_EQ] = ACTIONS(7765), - [anon_sym_PERCENT_EQ] = ACTIONS(7765), - [anon_sym_PLUS_EQ] = ACTIONS(7765), - [anon_sym_DASH_EQ] = ACTIONS(7765), - [anon_sym_LT_LT_EQ] = ACTIONS(7765), - [anon_sym_GT_GT_EQ] = ACTIONS(7765), - [anon_sym_AMP_EQ] = ACTIONS(7765), - [anon_sym_CARET_EQ] = ACTIONS(7765), - [anon_sym_PIPE_EQ] = ACTIONS(7765), - [anon_sym_and_eq] = ACTIONS(7763), - [anon_sym_or_eq] = ACTIONS(7763), - [anon_sym_xor_eq] = ACTIONS(7763), - [anon_sym_LT_EQ_GT] = ACTIONS(7765), - [anon_sym_or] = ACTIONS(7763), - [anon_sym_and] = ACTIONS(7763), - [anon_sym_bitor] = ACTIONS(7763), - [anon_sym_xor] = ACTIONS(7763), - [anon_sym_bitand] = ACTIONS(7763), - [anon_sym_not_eq] = ACTIONS(7763), - [anon_sym_DASH_DASH] = ACTIONS(7765), - [anon_sym_PLUS_PLUS] = ACTIONS(7765), - [anon_sym_DOT] = ACTIONS(7763), - [anon_sym_DOT_STAR] = ACTIONS(7765), - [anon_sym_DASH_GT] = ACTIONS(7765), + [STATE(2231)] = { + [sym_identifier] = ACTIONS(7761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7763), + [anon_sym_COMMA] = ACTIONS(7763), + [anon_sym_RPAREN] = ACTIONS(7763), + [aux_sym_preproc_if_token2] = ACTIONS(7763), + [aux_sym_preproc_else_token1] = ACTIONS(7763), + [aux_sym_preproc_elif_token1] = ACTIONS(7761), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7763), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7763), + [anon_sym_LPAREN2] = ACTIONS(7763), + [anon_sym_DASH] = ACTIONS(7761), + [anon_sym_PLUS] = ACTIONS(7761), + [anon_sym_STAR] = ACTIONS(7761), + [anon_sym_SLASH] = ACTIONS(7761), + [anon_sym_PERCENT] = ACTIONS(7761), + [anon_sym_PIPE_PIPE] = ACTIONS(7763), + [anon_sym_AMP_AMP] = ACTIONS(7763), + [anon_sym_PIPE] = ACTIONS(7761), + [anon_sym_CARET] = ACTIONS(7761), + [anon_sym_AMP] = ACTIONS(7761), + [anon_sym_EQ_EQ] = ACTIONS(7763), + [anon_sym_BANG_EQ] = ACTIONS(7763), + [anon_sym_GT] = ACTIONS(7761), + [anon_sym_GT_EQ] = ACTIONS(7763), + [anon_sym_LT_EQ] = ACTIONS(7761), + [anon_sym_LT] = ACTIONS(7761), + [anon_sym_LT_LT] = ACTIONS(7761), + [anon_sym_GT_GT] = ACTIONS(7761), + [anon_sym_SEMI] = ACTIONS(7763), + [anon_sym___extension__] = ACTIONS(7761), + [anon_sym___attribute__] = ACTIONS(7761), + [anon_sym___attribute] = ACTIONS(7761), + [anon_sym_COLON] = ACTIONS(7761), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7763), + [anon_sym_LBRACE] = ACTIONS(7763), + [anon_sym_RBRACE] = ACTIONS(7763), + [anon_sym_LBRACK] = ACTIONS(7763), + [anon_sym_EQ] = ACTIONS(7761), + [anon_sym_const] = ACTIONS(7761), + [anon_sym_constexpr] = ACTIONS(7761), + [anon_sym_volatile] = ACTIONS(7761), + [anon_sym_restrict] = ACTIONS(7761), + [anon_sym___restrict__] = ACTIONS(7761), + [anon_sym__Atomic] = ACTIONS(7761), + [anon_sym__Noreturn] = ACTIONS(7761), + [anon_sym_noreturn] = ACTIONS(7761), + [anon_sym__Nonnull] = ACTIONS(7761), + [anon_sym_mutable] = ACTIONS(7761), + [anon_sym_constinit] = ACTIONS(7761), + [anon_sym_consteval] = ACTIONS(7761), + [anon_sym_alignas] = ACTIONS(7761), + [anon_sym__Alignas] = ACTIONS(7761), + [anon_sym_QMARK] = ACTIONS(7763), + [anon_sym_STAR_EQ] = ACTIONS(7763), + [anon_sym_SLASH_EQ] = ACTIONS(7763), + [anon_sym_PERCENT_EQ] = ACTIONS(7763), + [anon_sym_PLUS_EQ] = ACTIONS(7763), + [anon_sym_DASH_EQ] = ACTIONS(7763), + [anon_sym_LT_LT_EQ] = ACTIONS(7763), + [anon_sym_GT_GT_EQ] = ACTIONS(7763), + [anon_sym_AMP_EQ] = ACTIONS(7763), + [anon_sym_CARET_EQ] = ACTIONS(7763), + [anon_sym_PIPE_EQ] = ACTIONS(7763), + [anon_sym_and_eq] = ACTIONS(7761), + [anon_sym_or_eq] = ACTIONS(7761), + [anon_sym_xor_eq] = ACTIONS(7761), + [anon_sym_LT_EQ_GT] = ACTIONS(7763), + [anon_sym_or] = ACTIONS(7761), + [anon_sym_and] = ACTIONS(7761), + [anon_sym_bitor] = ACTIONS(7761), + [anon_sym_xor] = ACTIONS(7761), + [anon_sym_bitand] = ACTIONS(7761), + [anon_sym_not_eq] = ACTIONS(7761), + [anon_sym_DASH_DASH] = ACTIONS(7763), + [anon_sym_PLUS_PLUS] = ACTIONS(7763), + [anon_sym_DOT] = ACTIONS(7761), + [anon_sym_DOT_STAR] = ACTIONS(7763), + [anon_sym_DASH_GT] = ACTIONS(7763), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7763), - [anon_sym_override] = ACTIONS(7763), - [anon_sym_requires] = ACTIONS(7763), - [anon_sym_COLON_RBRACK] = ACTIONS(7765), + [anon_sym_final] = ACTIONS(7761), + [anon_sym_override] = ACTIONS(7761), + [anon_sym_requires] = ACTIONS(7761), + [anon_sym_COLON_RBRACK] = ACTIONS(7763), }, - [STATE(2235)] = { - [sym_identifier] = ACTIONS(7767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), - [anon_sym_COMMA] = ACTIONS(7769), - [anon_sym_RPAREN] = ACTIONS(7769), - [aux_sym_preproc_if_token2] = ACTIONS(7769), - [aux_sym_preproc_else_token1] = ACTIONS(7769), - [aux_sym_preproc_elif_token1] = ACTIONS(7767), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7769), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7769), - [anon_sym_LPAREN2] = ACTIONS(7769), - [anon_sym_DASH] = ACTIONS(7767), - [anon_sym_PLUS] = ACTIONS(7767), - [anon_sym_STAR] = ACTIONS(7767), - [anon_sym_SLASH] = ACTIONS(7767), - [anon_sym_PERCENT] = ACTIONS(7767), - [anon_sym_PIPE_PIPE] = ACTIONS(7769), - [anon_sym_AMP_AMP] = ACTIONS(7769), - [anon_sym_PIPE] = ACTIONS(7767), - [anon_sym_CARET] = ACTIONS(7767), - [anon_sym_AMP] = ACTIONS(7767), - [anon_sym_EQ_EQ] = ACTIONS(7769), - [anon_sym_BANG_EQ] = ACTIONS(7769), - [anon_sym_GT] = ACTIONS(7767), - [anon_sym_GT_EQ] = ACTIONS(7769), - [anon_sym_LT_EQ] = ACTIONS(7767), - [anon_sym_LT] = ACTIONS(7767), - [anon_sym_LT_LT] = ACTIONS(7767), - [anon_sym_GT_GT] = ACTIONS(7767), - [anon_sym_SEMI] = ACTIONS(7769), - [anon_sym___extension__] = ACTIONS(7767), - [anon_sym___attribute__] = ACTIONS(7767), - [anon_sym___attribute] = ACTIONS(7767), - [anon_sym_COLON] = ACTIONS(7767), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7769), - [anon_sym_LBRACE] = ACTIONS(7769), - [anon_sym_RBRACE] = ACTIONS(7769), - [anon_sym_LBRACK] = ACTIONS(7769), - [anon_sym_EQ] = ACTIONS(7767), - [anon_sym_const] = ACTIONS(7767), - [anon_sym_constexpr] = ACTIONS(7767), - [anon_sym_volatile] = ACTIONS(7767), - [anon_sym_restrict] = ACTIONS(7767), - [anon_sym___restrict__] = ACTIONS(7767), - [anon_sym__Atomic] = ACTIONS(7767), - [anon_sym__Noreturn] = ACTIONS(7767), - [anon_sym_noreturn] = ACTIONS(7767), - [anon_sym__Nonnull] = ACTIONS(7767), - [anon_sym_mutable] = ACTIONS(7767), - [anon_sym_constinit] = ACTIONS(7767), - [anon_sym_consteval] = ACTIONS(7767), - [anon_sym_alignas] = ACTIONS(7767), - [anon_sym__Alignas] = ACTIONS(7767), - [anon_sym_QMARK] = ACTIONS(7769), - [anon_sym_STAR_EQ] = ACTIONS(7769), - [anon_sym_SLASH_EQ] = ACTIONS(7769), - [anon_sym_PERCENT_EQ] = ACTIONS(7769), - [anon_sym_PLUS_EQ] = ACTIONS(7769), - [anon_sym_DASH_EQ] = ACTIONS(7769), - [anon_sym_LT_LT_EQ] = ACTIONS(7769), - [anon_sym_GT_GT_EQ] = ACTIONS(7769), - [anon_sym_AMP_EQ] = ACTIONS(7769), - [anon_sym_CARET_EQ] = ACTIONS(7769), - [anon_sym_PIPE_EQ] = ACTIONS(7769), - [anon_sym_and_eq] = ACTIONS(7767), - [anon_sym_or_eq] = ACTIONS(7767), - [anon_sym_xor_eq] = ACTIONS(7767), - [anon_sym_LT_EQ_GT] = ACTIONS(7769), - [anon_sym_or] = ACTIONS(7767), - [anon_sym_and] = ACTIONS(7767), - [anon_sym_bitor] = ACTIONS(7767), - [anon_sym_xor] = ACTIONS(7767), - [anon_sym_bitand] = ACTIONS(7767), - [anon_sym_not_eq] = ACTIONS(7767), - [anon_sym_DASH_DASH] = ACTIONS(7769), - [anon_sym_PLUS_PLUS] = ACTIONS(7769), - [anon_sym_DOT] = ACTIONS(7767), - [anon_sym_DOT_STAR] = ACTIONS(7769), - [anon_sym_DASH_GT] = ACTIONS(7769), + [STATE(2232)] = { + [sym_identifier] = ACTIONS(7765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7767), + [anon_sym_COMMA] = ACTIONS(7767), + [anon_sym_RPAREN] = ACTIONS(7767), + [aux_sym_preproc_if_token2] = ACTIONS(7767), + [aux_sym_preproc_else_token1] = ACTIONS(7767), + [aux_sym_preproc_elif_token1] = ACTIONS(7765), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7767), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7767), + [anon_sym_LPAREN2] = ACTIONS(7767), + [anon_sym_DASH] = ACTIONS(7765), + [anon_sym_PLUS] = ACTIONS(7765), + [anon_sym_STAR] = ACTIONS(7765), + [anon_sym_SLASH] = ACTIONS(7765), + [anon_sym_PERCENT] = ACTIONS(7765), + [anon_sym_PIPE_PIPE] = ACTIONS(7767), + [anon_sym_AMP_AMP] = ACTIONS(7767), + [anon_sym_PIPE] = ACTIONS(7765), + [anon_sym_CARET] = ACTIONS(7765), + [anon_sym_AMP] = ACTIONS(7765), + [anon_sym_EQ_EQ] = ACTIONS(7767), + [anon_sym_BANG_EQ] = ACTIONS(7767), + [anon_sym_GT] = ACTIONS(7765), + [anon_sym_GT_EQ] = ACTIONS(7767), + [anon_sym_LT_EQ] = ACTIONS(7765), + [anon_sym_LT] = ACTIONS(7765), + [anon_sym_LT_LT] = ACTIONS(7765), + [anon_sym_GT_GT] = ACTIONS(7765), + [anon_sym_SEMI] = ACTIONS(7767), + [anon_sym___extension__] = ACTIONS(7765), + [anon_sym___attribute__] = ACTIONS(7765), + [anon_sym___attribute] = ACTIONS(7765), + [anon_sym_COLON] = ACTIONS(7765), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7767), + [anon_sym_LBRACE] = ACTIONS(7767), + [anon_sym_RBRACE] = ACTIONS(7767), + [anon_sym_LBRACK] = ACTIONS(7767), + [anon_sym_EQ] = ACTIONS(7765), + [anon_sym_const] = ACTIONS(7765), + [anon_sym_constexpr] = ACTIONS(7765), + [anon_sym_volatile] = ACTIONS(7765), + [anon_sym_restrict] = ACTIONS(7765), + [anon_sym___restrict__] = ACTIONS(7765), + [anon_sym__Atomic] = ACTIONS(7765), + [anon_sym__Noreturn] = ACTIONS(7765), + [anon_sym_noreturn] = ACTIONS(7765), + [anon_sym__Nonnull] = ACTIONS(7765), + [anon_sym_mutable] = ACTIONS(7765), + [anon_sym_constinit] = ACTIONS(7765), + [anon_sym_consteval] = ACTIONS(7765), + [anon_sym_alignas] = ACTIONS(7765), + [anon_sym__Alignas] = ACTIONS(7765), + [anon_sym_QMARK] = ACTIONS(7767), + [anon_sym_STAR_EQ] = ACTIONS(7767), + [anon_sym_SLASH_EQ] = ACTIONS(7767), + [anon_sym_PERCENT_EQ] = ACTIONS(7767), + [anon_sym_PLUS_EQ] = ACTIONS(7767), + [anon_sym_DASH_EQ] = ACTIONS(7767), + [anon_sym_LT_LT_EQ] = ACTIONS(7767), + [anon_sym_GT_GT_EQ] = ACTIONS(7767), + [anon_sym_AMP_EQ] = ACTIONS(7767), + [anon_sym_CARET_EQ] = ACTIONS(7767), + [anon_sym_PIPE_EQ] = ACTIONS(7767), + [anon_sym_and_eq] = ACTIONS(7765), + [anon_sym_or_eq] = ACTIONS(7765), + [anon_sym_xor_eq] = ACTIONS(7765), + [anon_sym_LT_EQ_GT] = ACTIONS(7767), + [anon_sym_or] = ACTIONS(7765), + [anon_sym_and] = ACTIONS(7765), + [anon_sym_bitor] = ACTIONS(7765), + [anon_sym_xor] = ACTIONS(7765), + [anon_sym_bitand] = ACTIONS(7765), + [anon_sym_not_eq] = ACTIONS(7765), + [anon_sym_DASH_DASH] = ACTIONS(7767), + [anon_sym_PLUS_PLUS] = ACTIONS(7767), + [anon_sym_DOT] = ACTIONS(7765), + [anon_sym_DOT_STAR] = ACTIONS(7767), + [anon_sym_DASH_GT] = ACTIONS(7767), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7767), - [anon_sym_override] = ACTIONS(7767), - [anon_sym_requires] = ACTIONS(7767), - [anon_sym_COLON_RBRACK] = ACTIONS(7769), + [anon_sym_final] = ACTIONS(7765), + [anon_sym_override] = ACTIONS(7765), + [anon_sym_requires] = ACTIONS(7765), + [anon_sym_COLON_RBRACK] = ACTIONS(7767), }, - [STATE(2236)] = { - [sym_identifier] = ACTIONS(7771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), - [anon_sym_COMMA] = ACTIONS(7773), - [anon_sym_RPAREN] = ACTIONS(7773), - [aux_sym_preproc_if_token2] = ACTIONS(7773), - [aux_sym_preproc_else_token1] = ACTIONS(7773), - [aux_sym_preproc_elif_token1] = ACTIONS(7771), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7773), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7773), - [anon_sym_LPAREN2] = ACTIONS(7773), - [anon_sym_DASH] = ACTIONS(7771), - [anon_sym_PLUS] = ACTIONS(7771), - [anon_sym_STAR] = ACTIONS(7771), - [anon_sym_SLASH] = ACTIONS(7771), - [anon_sym_PERCENT] = ACTIONS(7771), - [anon_sym_PIPE_PIPE] = ACTIONS(7773), - [anon_sym_AMP_AMP] = ACTIONS(7773), - [anon_sym_PIPE] = ACTIONS(7771), - [anon_sym_CARET] = ACTIONS(7771), - [anon_sym_AMP] = ACTIONS(7771), - [anon_sym_EQ_EQ] = ACTIONS(7773), - [anon_sym_BANG_EQ] = ACTIONS(7773), - [anon_sym_GT] = ACTIONS(7771), - [anon_sym_GT_EQ] = ACTIONS(7773), - [anon_sym_LT_EQ] = ACTIONS(7771), - [anon_sym_LT] = ACTIONS(7771), - [anon_sym_LT_LT] = ACTIONS(7771), - [anon_sym_GT_GT] = ACTIONS(7771), - [anon_sym_SEMI] = ACTIONS(7773), - [anon_sym___extension__] = ACTIONS(7771), - [anon_sym___attribute__] = ACTIONS(7771), - [anon_sym___attribute] = ACTIONS(7771), - [anon_sym_COLON] = ACTIONS(7771), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7773), - [anon_sym_LBRACE] = ACTIONS(7773), - [anon_sym_RBRACE] = ACTIONS(7773), - [anon_sym_LBRACK] = ACTIONS(7773), - [anon_sym_EQ] = ACTIONS(7771), - [anon_sym_const] = ACTIONS(7771), - [anon_sym_constexpr] = ACTIONS(7771), - [anon_sym_volatile] = ACTIONS(7771), - [anon_sym_restrict] = ACTIONS(7771), - [anon_sym___restrict__] = ACTIONS(7771), - [anon_sym__Atomic] = ACTIONS(7771), - [anon_sym__Noreturn] = ACTIONS(7771), - [anon_sym_noreturn] = ACTIONS(7771), - [anon_sym__Nonnull] = ACTIONS(7771), - [anon_sym_mutable] = ACTIONS(7771), - [anon_sym_constinit] = ACTIONS(7771), - [anon_sym_consteval] = ACTIONS(7771), - [anon_sym_alignas] = ACTIONS(7771), - [anon_sym__Alignas] = ACTIONS(7771), - [anon_sym_QMARK] = ACTIONS(7773), - [anon_sym_STAR_EQ] = ACTIONS(7773), - [anon_sym_SLASH_EQ] = ACTIONS(7773), - [anon_sym_PERCENT_EQ] = ACTIONS(7773), - [anon_sym_PLUS_EQ] = ACTIONS(7773), - [anon_sym_DASH_EQ] = ACTIONS(7773), - [anon_sym_LT_LT_EQ] = ACTIONS(7773), - [anon_sym_GT_GT_EQ] = ACTIONS(7773), - [anon_sym_AMP_EQ] = ACTIONS(7773), - [anon_sym_CARET_EQ] = ACTIONS(7773), - [anon_sym_PIPE_EQ] = ACTIONS(7773), - [anon_sym_and_eq] = ACTIONS(7771), - [anon_sym_or_eq] = ACTIONS(7771), - [anon_sym_xor_eq] = ACTIONS(7771), - [anon_sym_LT_EQ_GT] = ACTIONS(7773), - [anon_sym_or] = ACTIONS(7771), - [anon_sym_and] = ACTIONS(7771), - [anon_sym_bitor] = ACTIONS(7771), - [anon_sym_xor] = ACTIONS(7771), - [anon_sym_bitand] = ACTIONS(7771), - [anon_sym_not_eq] = ACTIONS(7771), - [anon_sym_DASH_DASH] = ACTIONS(7773), - [anon_sym_PLUS_PLUS] = ACTIONS(7773), - [anon_sym_DOT] = ACTIONS(7771), - [anon_sym_DOT_STAR] = ACTIONS(7773), - [anon_sym_DASH_GT] = ACTIONS(7773), + [STATE(2233)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2190), + [sym_identifier] = ACTIONS(7769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7771), + [anon_sym_COMMA] = ACTIONS(7771), + [aux_sym_preproc_if_token2] = ACTIONS(7771), + [aux_sym_preproc_else_token1] = ACTIONS(7771), + [aux_sym_preproc_elif_token1] = ACTIONS(7769), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7771), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7771), + [anon_sym_LPAREN2] = ACTIONS(7771), + [anon_sym_DASH] = ACTIONS(7769), + [anon_sym_PLUS] = ACTIONS(7769), + [anon_sym_STAR] = ACTIONS(7769), + [anon_sym_SLASH] = ACTIONS(7769), + [anon_sym_PERCENT] = ACTIONS(7769), + [anon_sym_PIPE_PIPE] = ACTIONS(7771), + [anon_sym_AMP_AMP] = ACTIONS(7771), + [anon_sym_PIPE] = ACTIONS(7769), + [anon_sym_CARET] = ACTIONS(7769), + [anon_sym_AMP] = ACTIONS(7769), + [anon_sym_EQ_EQ] = ACTIONS(7771), + [anon_sym_BANG_EQ] = ACTIONS(7771), + [anon_sym_GT] = ACTIONS(7769), + [anon_sym_GT_EQ] = ACTIONS(7771), + [anon_sym_LT_EQ] = ACTIONS(7769), + [anon_sym_LT] = ACTIONS(7769), + [anon_sym_LT_LT] = ACTIONS(7769), + [anon_sym_GT_GT] = ACTIONS(7769), + [anon_sym___extension__] = ACTIONS(7769), + [anon_sym___attribute__] = ACTIONS(7769), + [anon_sym___attribute] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7771), + [anon_sym_signed] = ACTIONS(7773), + [anon_sym_unsigned] = ACTIONS(7773), + [anon_sym_long] = ACTIONS(7773), + [anon_sym_short] = ACTIONS(7773), + [anon_sym_LBRACK] = ACTIONS(7771), + [anon_sym_RBRACK] = ACTIONS(7771), + [anon_sym_EQ] = ACTIONS(7769), + [anon_sym_const] = ACTIONS(7769), + [anon_sym_constexpr] = ACTIONS(7769), + [anon_sym_volatile] = ACTIONS(7769), + [anon_sym_restrict] = ACTIONS(7769), + [anon_sym___restrict__] = ACTIONS(7769), + [anon_sym__Atomic] = ACTIONS(7769), + [anon_sym__Noreturn] = ACTIONS(7769), + [anon_sym_noreturn] = ACTIONS(7769), + [anon_sym__Nonnull] = ACTIONS(7769), + [anon_sym_mutable] = ACTIONS(7769), + [anon_sym_constinit] = ACTIONS(7769), + [anon_sym_consteval] = ACTIONS(7769), + [anon_sym_alignas] = ACTIONS(7769), + [anon_sym__Alignas] = ACTIONS(7769), + [anon_sym_QMARK] = ACTIONS(7771), + [anon_sym_STAR_EQ] = ACTIONS(7771), + [anon_sym_SLASH_EQ] = ACTIONS(7771), + [anon_sym_PERCENT_EQ] = ACTIONS(7771), + [anon_sym_PLUS_EQ] = ACTIONS(7771), + [anon_sym_DASH_EQ] = ACTIONS(7771), + [anon_sym_LT_LT_EQ] = ACTIONS(7771), + [anon_sym_GT_GT_EQ] = ACTIONS(7771), + [anon_sym_AMP_EQ] = ACTIONS(7771), + [anon_sym_CARET_EQ] = ACTIONS(7771), + [anon_sym_PIPE_EQ] = ACTIONS(7771), + [anon_sym_and_eq] = ACTIONS(7769), + [anon_sym_or_eq] = ACTIONS(7769), + [anon_sym_xor_eq] = ACTIONS(7769), + [anon_sym_LT_EQ_GT] = ACTIONS(7771), + [anon_sym_or] = ACTIONS(7769), + [anon_sym_and] = ACTIONS(7769), + [anon_sym_bitor] = ACTIONS(7769), + [anon_sym_xor] = ACTIONS(7769), + [anon_sym_bitand] = ACTIONS(7769), + [anon_sym_not_eq] = ACTIONS(7769), + [anon_sym_DASH_DASH] = ACTIONS(7771), + [anon_sym_PLUS_PLUS] = ACTIONS(7771), + [anon_sym_DOT] = ACTIONS(7769), + [anon_sym_DOT_STAR] = ACTIONS(7771), + [anon_sym_DASH_GT] = ACTIONS(7771), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7771), - [anon_sym_override] = ACTIONS(7771), - [anon_sym_requires] = ACTIONS(7771), - [anon_sym_COLON_RBRACK] = ACTIONS(7773), + [anon_sym_final] = ACTIONS(7769), + [anon_sym_override] = ACTIONS(7769), + [anon_sym_requires] = ACTIONS(7769), }, - [STATE(2237)] = { + [STATE(2234)] = { [sym_identifier] = ACTIONS(7775), [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), [anon_sym_COMMA] = ACTIONS(7777), @@ -334536,7 +334164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7775), [anon_sym_COLON_RBRACK] = ACTIONS(7777), }, - [STATE(2238)] = { + [STATE(2235)] = { [sym_identifier] = ACTIONS(7779), [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), [anon_sym_COMMA] = ACTIONS(7781), @@ -334621,537 +334249,2048 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7779), [anon_sym_COLON_RBRACK] = ACTIONS(7781), }, + [STATE(2236)] = { + [sym_identifier] = ACTIONS(7672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [aux_sym_preproc_if_token2] = ACTIONS(7674), + [aux_sym_preproc_else_token1] = ACTIONS(7674), + [aux_sym_preproc_elif_token1] = ACTIONS(7672), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7674), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym_SEMI] = ACTIONS(7674), + [anon_sym___extension__] = ACTIONS(7672), + [anon_sym___attribute__] = ACTIONS(7672), + [anon_sym___attribute] = ACTIONS(7672), + [anon_sym_COLON] = ACTIONS(7672), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_RBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7672), + [anon_sym_volatile] = ACTIONS(7672), + [anon_sym_restrict] = ACTIONS(7672), + [anon_sym___restrict__] = ACTIONS(7672), + [anon_sym__Atomic] = ACTIONS(7672), + [anon_sym__Noreturn] = ACTIONS(7672), + [anon_sym_noreturn] = ACTIONS(7672), + [anon_sym__Nonnull] = ACTIONS(7672), + [anon_sym_mutable] = ACTIONS(7672), + [anon_sym_constinit] = ACTIONS(7672), + [anon_sym_consteval] = ACTIONS(7672), + [anon_sym_alignas] = ACTIONS(7672), + [anon_sym__Alignas] = ACTIONS(7672), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7672), + [anon_sym_or_eq] = ACTIONS(7672), + [anon_sym_xor_eq] = ACTIONS(7672), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7672), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7672), + [anon_sym_not_eq] = ACTIONS(7672), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_COLON_RBRACK] = ACTIONS(7674), + }, + [STATE(2237)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_RPAREN] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7584), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7584), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7584), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7584), + [anon_sym_GT_GT] = ACTIONS(7584), + [anon_sym_SEMI] = ACTIONS(7586), + [anon_sym___extension__] = ACTIONS(7586), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_COLON] = ACTIONS(7584), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7586), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_RBRACE] = ACTIONS(7586), + [anon_sym_signed] = ACTIONS(7783), + [anon_sym_unsigned] = ACTIONS(7783), + [anon_sym_long] = ACTIONS(7783), + [anon_sym_short] = ACTIONS(7783), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7586), + [anon_sym_volatile] = ACTIONS(7586), + [anon_sym_restrict] = ACTIONS(7586), + [anon_sym___restrict__] = ACTIONS(7586), + [anon_sym__Atomic] = ACTIONS(7586), + [anon_sym__Noreturn] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7586), + [anon_sym__Nonnull] = ACTIONS(7586), + [anon_sym_mutable] = ACTIONS(7586), + [anon_sym_constinit] = ACTIONS(7586), + [anon_sym_consteval] = ACTIONS(7586), + [anon_sym_alignas] = ACTIONS(7586), + [anon_sym__Alignas] = ACTIONS(7586), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_STAR_EQ] = ACTIONS(7586), + [anon_sym_SLASH_EQ] = ACTIONS(7586), + [anon_sym_PERCENT_EQ] = ACTIONS(7586), + [anon_sym_PLUS_EQ] = ACTIONS(7586), + [anon_sym_DASH_EQ] = ACTIONS(7586), + [anon_sym_LT_LT_EQ] = ACTIONS(7586), + [anon_sym_GT_GT_EQ] = ACTIONS(7586), + [anon_sym_AMP_EQ] = ACTIONS(7586), + [anon_sym_CARET_EQ] = ACTIONS(7586), + [anon_sym_PIPE_EQ] = ACTIONS(7586), + [anon_sym_and_eq] = ACTIONS(7586), + [anon_sym_or_eq] = ACTIONS(7586), + [anon_sym_xor_eq] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7584), + [anon_sym_and] = ACTIONS(7584), + [anon_sym_bitor] = ACTIONS(7586), + [anon_sym_xor] = ACTIONS(7584), + [anon_sym_bitand] = ACTIONS(7586), + [anon_sym_not_eq] = ACTIONS(7586), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7586), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7586), + [anon_sym_override] = ACTIONS(7586), + [anon_sym_requires] = ACTIONS(7586), + [anon_sym_COLON_RBRACK] = ACTIONS(7586), + }, + [STATE(2238)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [anon_sym_RPAREN] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7731), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7731), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7731), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7731), + [anon_sym_GT_GT] = ACTIONS(7731), + [anon_sym_SEMI] = ACTIONS(7733), + [anon_sym___extension__] = ACTIONS(7733), + [anon_sym___attribute__] = ACTIONS(7733), + [anon_sym___attribute] = ACTIONS(7731), + [anon_sym_COLON] = ACTIONS(7731), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7733), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_RBRACE] = ACTIONS(7733), + [anon_sym_signed] = ACTIONS(7785), + [anon_sym_unsigned] = ACTIONS(7785), + [anon_sym_long] = ACTIONS(7785), + [anon_sym_short] = ACTIONS(7785), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(7731), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7733), + [anon_sym_volatile] = ACTIONS(7733), + [anon_sym_restrict] = ACTIONS(7733), + [anon_sym___restrict__] = ACTIONS(7733), + [anon_sym__Atomic] = ACTIONS(7733), + [anon_sym__Noreturn] = ACTIONS(7733), + [anon_sym_noreturn] = ACTIONS(7733), + [anon_sym__Nonnull] = ACTIONS(7733), + [anon_sym_mutable] = ACTIONS(7733), + [anon_sym_constinit] = ACTIONS(7733), + [anon_sym_consteval] = ACTIONS(7733), + [anon_sym_alignas] = ACTIONS(7733), + [anon_sym__Alignas] = ACTIONS(7733), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_STAR_EQ] = ACTIONS(7733), + [anon_sym_SLASH_EQ] = ACTIONS(7733), + [anon_sym_PERCENT_EQ] = ACTIONS(7733), + [anon_sym_PLUS_EQ] = ACTIONS(7733), + [anon_sym_DASH_EQ] = ACTIONS(7733), + [anon_sym_LT_LT_EQ] = ACTIONS(7733), + [anon_sym_GT_GT_EQ] = ACTIONS(7733), + [anon_sym_AMP_EQ] = ACTIONS(7733), + [anon_sym_CARET_EQ] = ACTIONS(7733), + [anon_sym_PIPE_EQ] = ACTIONS(7733), + [anon_sym_and_eq] = ACTIONS(7733), + [anon_sym_or_eq] = ACTIONS(7733), + [anon_sym_xor_eq] = ACTIONS(7733), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7731), + [anon_sym_and] = ACTIONS(7731), + [anon_sym_bitor] = ACTIONS(7733), + [anon_sym_xor] = ACTIONS(7731), + [anon_sym_bitand] = ACTIONS(7733), + [anon_sym_not_eq] = ACTIONS(7733), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7733), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7733), + [anon_sym_override] = ACTIONS(7733), + [anon_sym_requires] = ACTIONS(7733), + [anon_sym_COLON_RBRACK] = ACTIONS(7733), + }, [STATE(2239)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2214), - [sym_identifier] = ACTIONS(7783), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), - [anon_sym_COMMA] = ACTIONS(7785), - [aux_sym_preproc_if_token2] = ACTIONS(7785), - [aux_sym_preproc_else_token1] = ACTIONS(7785), - [aux_sym_preproc_elif_token1] = ACTIONS(7783), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7785), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7785), - [anon_sym_LPAREN2] = ACTIONS(7785), - [anon_sym_DASH] = ACTIONS(7783), - [anon_sym_PLUS] = ACTIONS(7783), - [anon_sym_STAR] = ACTIONS(7783), - [anon_sym_SLASH] = ACTIONS(7783), - [anon_sym_PERCENT] = ACTIONS(7783), - [anon_sym_PIPE_PIPE] = ACTIONS(7785), - [anon_sym_AMP_AMP] = ACTIONS(7785), - [anon_sym_PIPE] = ACTIONS(7783), - [anon_sym_CARET] = ACTIONS(7783), - [anon_sym_AMP] = ACTIONS(7783), - [anon_sym_EQ_EQ] = ACTIONS(7785), - [anon_sym_BANG_EQ] = ACTIONS(7785), - [anon_sym_GT] = ACTIONS(7783), - [anon_sym_GT_EQ] = ACTIONS(7785), - [anon_sym_LT_EQ] = ACTIONS(7783), - [anon_sym_LT] = ACTIONS(7783), - [anon_sym_LT_LT] = ACTIONS(7783), - [anon_sym_GT_GT] = ACTIONS(7783), - [anon_sym___extension__] = ACTIONS(7783), - [anon_sym___attribute__] = ACTIONS(7783), - [anon_sym___attribute] = ACTIONS(7783), - [anon_sym_LBRACE] = ACTIONS(7785), - [anon_sym_signed] = ACTIONS(7787), - [anon_sym_unsigned] = ACTIONS(7787), - [anon_sym_long] = ACTIONS(7787), - [anon_sym_short] = ACTIONS(7787), - [anon_sym_LBRACK] = ACTIONS(7785), - [anon_sym_RBRACK] = ACTIONS(7785), - [anon_sym_EQ] = ACTIONS(7783), - [anon_sym_const] = ACTIONS(7783), - [anon_sym_constexpr] = ACTIONS(7783), - [anon_sym_volatile] = ACTIONS(7783), - [anon_sym_restrict] = ACTIONS(7783), - [anon_sym___restrict__] = ACTIONS(7783), - [anon_sym__Atomic] = ACTIONS(7783), - [anon_sym__Noreturn] = ACTIONS(7783), - [anon_sym_noreturn] = ACTIONS(7783), - [anon_sym__Nonnull] = ACTIONS(7783), - [anon_sym_mutable] = ACTIONS(7783), - [anon_sym_constinit] = ACTIONS(7783), - [anon_sym_consteval] = ACTIONS(7783), - [anon_sym_alignas] = ACTIONS(7783), - [anon_sym__Alignas] = ACTIONS(7783), - [anon_sym_QMARK] = ACTIONS(7785), - [anon_sym_STAR_EQ] = ACTIONS(7785), - [anon_sym_SLASH_EQ] = ACTIONS(7785), - [anon_sym_PERCENT_EQ] = ACTIONS(7785), - [anon_sym_PLUS_EQ] = ACTIONS(7785), - [anon_sym_DASH_EQ] = ACTIONS(7785), - [anon_sym_LT_LT_EQ] = ACTIONS(7785), - [anon_sym_GT_GT_EQ] = ACTIONS(7785), - [anon_sym_AMP_EQ] = ACTIONS(7785), - [anon_sym_CARET_EQ] = ACTIONS(7785), - [anon_sym_PIPE_EQ] = ACTIONS(7785), - [anon_sym_and_eq] = ACTIONS(7783), - [anon_sym_or_eq] = ACTIONS(7783), - [anon_sym_xor_eq] = ACTIONS(7783), - [anon_sym_LT_EQ_GT] = ACTIONS(7785), - [anon_sym_or] = ACTIONS(7783), - [anon_sym_and] = ACTIONS(7783), - [anon_sym_bitor] = ACTIONS(7783), - [anon_sym_xor] = ACTIONS(7783), - [anon_sym_bitand] = ACTIONS(7783), - [anon_sym_not_eq] = ACTIONS(7783), - [anon_sym_DASH_DASH] = ACTIONS(7785), - [anon_sym_PLUS_PLUS] = ACTIONS(7785), - [anon_sym_DOT] = ACTIONS(7783), - [anon_sym_DOT_STAR] = ACTIONS(7785), - [anon_sym_DASH_GT] = ACTIONS(7785), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7783), - [anon_sym_requires] = ACTIONS(7783), + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [anon_sym_RPAREN] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7739), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7739), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7739), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7739), + [anon_sym_GT_GT] = ACTIONS(7739), + [anon_sym_SEMI] = ACTIONS(7741), + [anon_sym___extension__] = ACTIONS(7741), + [anon_sym___attribute__] = ACTIONS(7741), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_COLON] = ACTIONS(7739), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7741), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_signed] = ACTIONS(7785), + [anon_sym_unsigned] = ACTIONS(7785), + [anon_sym_long] = ACTIONS(7785), + [anon_sym_short] = ACTIONS(7785), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7741), + [anon_sym_volatile] = ACTIONS(7741), + [anon_sym_restrict] = ACTIONS(7741), + [anon_sym___restrict__] = ACTIONS(7741), + [anon_sym__Atomic] = ACTIONS(7741), + [anon_sym__Noreturn] = ACTIONS(7741), + [anon_sym_noreturn] = ACTIONS(7741), + [anon_sym__Nonnull] = ACTIONS(7741), + [anon_sym_mutable] = ACTIONS(7741), + [anon_sym_constinit] = ACTIONS(7741), + [anon_sym_consteval] = ACTIONS(7741), + [anon_sym_alignas] = ACTIONS(7741), + [anon_sym__Alignas] = ACTIONS(7741), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_STAR_EQ] = ACTIONS(7741), + [anon_sym_SLASH_EQ] = ACTIONS(7741), + [anon_sym_PERCENT_EQ] = ACTIONS(7741), + [anon_sym_PLUS_EQ] = ACTIONS(7741), + [anon_sym_DASH_EQ] = ACTIONS(7741), + [anon_sym_LT_LT_EQ] = ACTIONS(7741), + [anon_sym_GT_GT_EQ] = ACTIONS(7741), + [anon_sym_AMP_EQ] = ACTIONS(7741), + [anon_sym_CARET_EQ] = ACTIONS(7741), + [anon_sym_PIPE_EQ] = ACTIONS(7741), + [anon_sym_and_eq] = ACTIONS(7741), + [anon_sym_or_eq] = ACTIONS(7741), + [anon_sym_xor_eq] = ACTIONS(7741), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7739), + [anon_sym_and] = ACTIONS(7739), + [anon_sym_bitor] = ACTIONS(7741), + [anon_sym_xor] = ACTIONS(7739), + [anon_sym_bitand] = ACTIONS(7741), + [anon_sym_not_eq] = ACTIONS(7741), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7741), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7741), + [anon_sym_override] = ACTIONS(7741), + [anon_sym_requires] = ACTIONS(7741), + [anon_sym_COLON_RBRACK] = ACTIONS(7741), }, [STATE(2240)] = { - [sym__abstract_declarator] = STATE(4546), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(6923), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(6925), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(6927), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym_SEMI] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(7355), - [anon_sym___attribute] = ACTIONS(7353), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7355), - [anon_sym_or_eq] = ACTIONS(7355), - [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5413), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(10199), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_type_parameter_declaration] = STATE(10199), + [sym_variadic_type_parameter_declaration] = STATE(10199), + [sym_optional_type_parameter_declaration] = STATE(10199), + [sym_template_template_parameter_declaration] = STATE(10199), + [sym_optional_parameter_declaration] = STATE(10199), + [sym_variadic_parameter_declaration] = STATE(10199), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(7787), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(7789), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(7791), + [anon_sym_GT2] = ACTIONS(7793), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, [STATE(2241)] = { - [sym__abstract_declarator] = STATE(4518), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2242), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1946), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2242), - [sym_identifier] = ACTIONS(7393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [aux_sym_preproc_if_token2] = ACTIONS(7391), - [aux_sym_preproc_else_token1] = ACTIONS(7391), - [aux_sym_preproc_elif_token1] = ACTIONS(7393), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7391), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(6917), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(6919), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(6921), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7393), - [anon_sym_or_eq] = ACTIONS(7393), - [anon_sym_xor_eq] = ACTIONS(7393), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7393), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7393), - [anon_sym_not_eq] = ACTIONS(7393), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), + [aux_sym_sized_type_specifier_repeat1] = STATE(2285), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_RPAREN] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7755), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7755), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7755), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7755), + [anon_sym_GT_GT] = ACTIONS(7755), + [anon_sym_SEMI] = ACTIONS(7757), + [anon_sym___extension__] = ACTIONS(7757), + [anon_sym___attribute__] = ACTIONS(7757), + [anon_sym___attribute] = ACTIONS(7755), + [anon_sym_COLON] = ACTIONS(7755), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7757), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_RBRACE] = ACTIONS(7757), + [anon_sym_signed] = ACTIONS(7795), + [anon_sym_unsigned] = ACTIONS(7795), + [anon_sym_long] = ACTIONS(7795), + [anon_sym_short] = ACTIONS(7795), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7757), + [anon_sym_volatile] = ACTIONS(7757), + [anon_sym_restrict] = ACTIONS(7757), + [anon_sym___restrict__] = ACTIONS(7757), + [anon_sym__Atomic] = ACTIONS(7757), + [anon_sym__Noreturn] = ACTIONS(7757), + [anon_sym_noreturn] = ACTIONS(7757), + [anon_sym__Nonnull] = ACTIONS(7757), + [anon_sym_mutable] = ACTIONS(7757), + [anon_sym_constinit] = ACTIONS(7757), + [anon_sym_consteval] = ACTIONS(7757), + [anon_sym_alignas] = ACTIONS(7757), + [anon_sym__Alignas] = ACTIONS(7757), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_STAR_EQ] = ACTIONS(7757), + [anon_sym_SLASH_EQ] = ACTIONS(7757), + [anon_sym_PERCENT_EQ] = ACTIONS(7757), + [anon_sym_PLUS_EQ] = ACTIONS(7757), + [anon_sym_DASH_EQ] = ACTIONS(7757), + [anon_sym_LT_LT_EQ] = ACTIONS(7757), + [anon_sym_GT_GT_EQ] = ACTIONS(7757), + [anon_sym_AMP_EQ] = ACTIONS(7757), + [anon_sym_CARET_EQ] = ACTIONS(7757), + [anon_sym_PIPE_EQ] = ACTIONS(7757), + [anon_sym_and_eq] = ACTIONS(7757), + [anon_sym_or_eq] = ACTIONS(7757), + [anon_sym_xor_eq] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7755), + [anon_sym_and] = ACTIONS(7755), + [anon_sym_bitor] = ACTIONS(7757), + [anon_sym_xor] = ACTIONS(7755), + [anon_sym_bitand] = ACTIONS(7757), + [anon_sym_not_eq] = ACTIONS(7757), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7757), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7757), + [anon_sym_override] = ACTIONS(7757), + [anon_sym_requires] = ACTIONS(7757), + [anon_sym_COLON_RBRACK] = ACTIONS(7757), }, [STATE(2242)] = { - [sym__abstract_declarator] = STATE(4519), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1946), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [sym_identifier] = ACTIONS(7349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [aux_sym_preproc_if_token2] = ACTIONS(7351), - [aux_sym_preproc_else_token1] = ACTIONS(7351), - [aux_sym_preproc_elif_token1] = ACTIONS(7349), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7351), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(6917), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(6919), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(6921), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7349), - [anon_sym_or_eq] = ACTIONS(7349), - [anon_sym_xor_eq] = ACTIONS(7349), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7349), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7349), - [anon_sym_not_eq] = ACTIONS(7349), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), + [sym__abstract_declarator] = STATE(4481), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1950), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6911), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6913), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(6841), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6843), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6843), }, [STATE(2243)] = { - [sym__abstract_declarator] = STATE(4520), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2246), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1946), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2246), - [sym_identifier] = ACTIONS(7341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [aux_sym_preproc_if_token2] = ACTIONS(7343), - [aux_sym_preproc_else_token1] = ACTIONS(7343), - [aux_sym_preproc_elif_token1] = ACTIONS(7341), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7343), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(6917), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(6919), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(6921), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), + [sym__abstract_declarator] = STATE(4473), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1950), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_RPAREN] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(6911), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(6913), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym_SEMI] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(7343), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7341), + [anon_sym_RBRACE] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), [anon_sym_and_eq] = ACTIONS(7341), [anon_sym_or_eq] = ACTIONS(7341), [anon_sym_xor_eq] = ACTIONS(7341), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), [anon_sym_bitor] = ACTIONS(7341), - [anon_sym_xor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7343), [anon_sym_bitand] = ACTIONS(7341), [anon_sym_not_eq] = ACTIONS(7341), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7341), }, [STATE(2244)] = { - [sym__abstract_declarator] = STATE(4524), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1946), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [sym_identifier] = ACTIONS(6821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [aux_sym_preproc_if_token2] = ACTIONS(6823), - [aux_sym_preproc_else_token1] = ACTIONS(6823), - [aux_sym_preproc_elif_token1] = ACTIONS(6821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6917), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(6919), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6921), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6821), - [anon_sym_or_eq] = ACTIONS(6821), - [anon_sym_xor_eq] = ACTIONS(6821), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6821), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6821), - [anon_sym_not_eq] = ACTIONS(6821), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), + [sym_attribute_specifier] = STATE(3217), + [sym_attribute_declaration] = STATE(6404), + [sym_type_qualifier] = STATE(3714), + [sym_alignas_qualifier] = STATE(4020), + [sym_gnu_asm_expression] = STATE(9110), + [sym_virtual_specifier] = STATE(6462), + [sym_ref_qualifier] = STATE(4139), + [sym__function_attributes_start] = STATE(3991), + [sym__function_exception_specification] = STATE(4554), + [sym__function_attributes_end] = STATE(6263), + [sym__function_postfix] = STATE(6608), + [sym_trailing_return_type] = STATE(6313), + [sym_noexcept] = STATE(4554), + [sym_throw_specifier] = STATE(4554), + [sym_requires_clause] = STATE(6608), + [aux_sym_type_definition_repeat1] = STATE(3217), + [aux_sym__type_definition_type_repeat1] = STATE(3714), + [aux_sym_attributed_declarator_repeat1] = STATE(6404), + [aux_sym__function_postfix_repeat1] = STATE(6462), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(7797), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_AMP] = ACTIONS(7800), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6471), + [anon_sym_GT_GT] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(7803), + [anon_sym___attribute__] = ACTIONS(7805), + [anon_sym___attribute] = ACTIONS(7807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7809), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_RBRACK] = ACTIONS(6471), + [anon_sym_const] = ACTIONS(7811), + [anon_sym_constexpr] = ACTIONS(7803), + [anon_sym_volatile] = ACTIONS(7803), + [anon_sym_restrict] = ACTIONS(7803), + [anon_sym___restrict__] = ACTIONS(7803), + [anon_sym__Atomic] = ACTIONS(7803), + [anon_sym__Noreturn] = ACTIONS(7803), + [anon_sym_noreturn] = ACTIONS(7803), + [anon_sym__Nonnull] = ACTIONS(7803), + [anon_sym_mutable] = ACTIONS(7803), + [anon_sym_constinit] = ACTIONS(7803), + [anon_sym_consteval] = ACTIONS(7803), + [anon_sym_alignas] = ACTIONS(7813), + [anon_sym__Alignas] = ACTIONS(7813), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6471), + [anon_sym_and] = ACTIONS(6471), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6471), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(7815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7818), + [anon_sym_override] = ACTIONS(7818), + [anon_sym_noexcept] = ACTIONS(7820), + [anon_sym_throw] = ACTIONS(7822), + [anon_sym_requires] = ACTIONS(7824), }, [STATE(2245)] = { - [sym__abstract_declarator] = STATE(4425), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1957), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), + [aux_sym_sized_type_specifier_repeat1] = STATE(2263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7771), + [anon_sym_COMMA] = ACTIONS(7771), + [anon_sym_RPAREN] = ACTIONS(7771), + [anon_sym_LPAREN2] = ACTIONS(7771), + [anon_sym_DASH] = ACTIONS(7769), + [anon_sym_PLUS] = ACTIONS(7769), + [anon_sym_STAR] = ACTIONS(7769), + [anon_sym_SLASH] = ACTIONS(7769), + [anon_sym_PERCENT] = ACTIONS(7769), + [anon_sym_PIPE_PIPE] = ACTIONS(7771), + [anon_sym_AMP_AMP] = ACTIONS(7771), + [anon_sym_PIPE] = ACTIONS(7769), + [anon_sym_CARET] = ACTIONS(7769), + [anon_sym_AMP] = ACTIONS(7769), + [anon_sym_EQ_EQ] = ACTIONS(7771), + [anon_sym_BANG_EQ] = ACTIONS(7771), + [anon_sym_GT] = ACTIONS(7769), + [anon_sym_GT_EQ] = ACTIONS(7771), + [anon_sym_LT_EQ] = ACTIONS(7769), + [anon_sym_LT] = ACTIONS(7769), + [anon_sym_LT_LT] = ACTIONS(7769), + [anon_sym_GT_GT] = ACTIONS(7769), + [anon_sym_SEMI] = ACTIONS(7771), + [anon_sym___extension__] = ACTIONS(7771), + [anon_sym___attribute__] = ACTIONS(7771), + [anon_sym___attribute] = ACTIONS(7769), + [anon_sym_COLON] = ACTIONS(7769), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7771), + [anon_sym_LBRACE] = ACTIONS(7771), + [anon_sym_RBRACE] = ACTIONS(7771), + [anon_sym_signed] = ACTIONS(7826), + [anon_sym_unsigned] = ACTIONS(7826), + [anon_sym_long] = ACTIONS(7826), + [anon_sym_short] = ACTIONS(7826), + [anon_sym_LBRACK] = ACTIONS(7771), + [anon_sym_EQ] = ACTIONS(7769), + [anon_sym_const] = ACTIONS(7769), + [anon_sym_constexpr] = ACTIONS(7771), + [anon_sym_volatile] = ACTIONS(7771), + [anon_sym_restrict] = ACTIONS(7771), + [anon_sym___restrict__] = ACTIONS(7771), + [anon_sym__Atomic] = ACTIONS(7771), + [anon_sym__Noreturn] = ACTIONS(7771), + [anon_sym_noreturn] = ACTIONS(7771), + [anon_sym__Nonnull] = ACTIONS(7771), + [anon_sym_mutable] = ACTIONS(7771), + [anon_sym_constinit] = ACTIONS(7771), + [anon_sym_consteval] = ACTIONS(7771), + [anon_sym_alignas] = ACTIONS(7771), + [anon_sym__Alignas] = ACTIONS(7771), + [anon_sym_QMARK] = ACTIONS(7771), + [anon_sym_STAR_EQ] = ACTIONS(7771), + [anon_sym_SLASH_EQ] = ACTIONS(7771), + [anon_sym_PERCENT_EQ] = ACTIONS(7771), + [anon_sym_PLUS_EQ] = ACTIONS(7771), + [anon_sym_DASH_EQ] = ACTIONS(7771), + [anon_sym_LT_LT_EQ] = ACTIONS(7771), + [anon_sym_GT_GT_EQ] = ACTIONS(7771), + [anon_sym_AMP_EQ] = ACTIONS(7771), + [anon_sym_CARET_EQ] = ACTIONS(7771), + [anon_sym_PIPE_EQ] = ACTIONS(7771), + [anon_sym_and_eq] = ACTIONS(7771), + [anon_sym_or_eq] = ACTIONS(7771), + [anon_sym_xor_eq] = ACTIONS(7771), + [anon_sym_LT_EQ_GT] = ACTIONS(7771), + [anon_sym_or] = ACTIONS(7769), + [anon_sym_and] = ACTIONS(7769), + [anon_sym_bitor] = ACTIONS(7771), + [anon_sym_xor] = ACTIONS(7769), + [anon_sym_bitand] = ACTIONS(7771), + [anon_sym_not_eq] = ACTIONS(7771), + [anon_sym_DASH_DASH] = ACTIONS(7771), + [anon_sym_PLUS_PLUS] = ACTIONS(7771), + [anon_sym_DOT] = ACTIONS(7769), + [anon_sym_DOT_STAR] = ACTIONS(7771), + [anon_sym_DASH_GT] = ACTIONS(7771), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_COLON_RBRACK] = ACTIONS(7771), + }, + [STATE(2246)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7562), + [anon_sym_COMMA] = ACTIONS(7562), + [anon_sym_RPAREN] = ACTIONS(7562), + [anon_sym_LPAREN2] = ACTIONS(7562), + [anon_sym_DASH] = ACTIONS(7560), + [anon_sym_PLUS] = ACTIONS(7560), + [anon_sym_STAR] = ACTIONS(7560), + [anon_sym_SLASH] = ACTIONS(7560), + [anon_sym_PERCENT] = ACTIONS(7560), + [anon_sym_PIPE_PIPE] = ACTIONS(7562), + [anon_sym_AMP_AMP] = ACTIONS(7562), + [anon_sym_PIPE] = ACTIONS(7560), + [anon_sym_CARET] = ACTIONS(7560), + [anon_sym_AMP] = ACTIONS(7560), + [anon_sym_EQ_EQ] = ACTIONS(7562), + [anon_sym_BANG_EQ] = ACTIONS(7562), + [anon_sym_GT] = ACTIONS(7560), + [anon_sym_GT_EQ] = ACTIONS(7562), + [anon_sym_LT_EQ] = ACTIONS(7560), + [anon_sym_LT] = ACTIONS(7560), + [anon_sym_LT_LT] = ACTIONS(7560), + [anon_sym_GT_GT] = ACTIONS(7560), + [anon_sym_SEMI] = ACTIONS(7562), + [anon_sym___extension__] = ACTIONS(7562), + [anon_sym___attribute__] = ACTIONS(7562), + [anon_sym___attribute] = ACTIONS(7560), + [anon_sym_COLON] = ACTIONS(7560), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7562), + [anon_sym_LBRACE] = ACTIONS(7562), + [anon_sym_RBRACE] = ACTIONS(7562), + [anon_sym_signed] = ACTIONS(7785), + [anon_sym_unsigned] = ACTIONS(7785), + [anon_sym_long] = ACTIONS(7785), + [anon_sym_short] = ACTIONS(7785), + [anon_sym_LBRACK] = ACTIONS(7562), + [anon_sym_EQ] = ACTIONS(7560), + [anon_sym_const] = ACTIONS(7560), + [anon_sym_constexpr] = ACTIONS(7562), + [anon_sym_volatile] = ACTIONS(7562), + [anon_sym_restrict] = ACTIONS(7562), + [anon_sym___restrict__] = ACTIONS(7562), + [anon_sym__Atomic] = ACTIONS(7562), + [anon_sym__Noreturn] = ACTIONS(7562), + [anon_sym_noreturn] = ACTIONS(7562), + [anon_sym__Nonnull] = ACTIONS(7562), + [anon_sym_mutable] = ACTIONS(7562), + [anon_sym_constinit] = ACTIONS(7562), + [anon_sym_consteval] = ACTIONS(7562), + [anon_sym_alignas] = ACTIONS(7562), + [anon_sym__Alignas] = ACTIONS(7562), + [anon_sym_QMARK] = ACTIONS(7562), + [anon_sym_STAR_EQ] = ACTIONS(7562), + [anon_sym_SLASH_EQ] = ACTIONS(7562), + [anon_sym_PERCENT_EQ] = ACTIONS(7562), + [anon_sym_PLUS_EQ] = ACTIONS(7562), + [anon_sym_DASH_EQ] = ACTIONS(7562), + [anon_sym_LT_LT_EQ] = ACTIONS(7562), + [anon_sym_GT_GT_EQ] = ACTIONS(7562), + [anon_sym_AMP_EQ] = ACTIONS(7562), + [anon_sym_CARET_EQ] = ACTIONS(7562), + [anon_sym_PIPE_EQ] = ACTIONS(7562), + [anon_sym_and_eq] = ACTIONS(7562), + [anon_sym_or_eq] = ACTIONS(7562), + [anon_sym_xor_eq] = ACTIONS(7562), + [anon_sym_LT_EQ_GT] = ACTIONS(7562), + [anon_sym_or] = ACTIONS(7560), + [anon_sym_and] = ACTIONS(7560), + [anon_sym_bitor] = ACTIONS(7562), + [anon_sym_xor] = ACTIONS(7560), + [anon_sym_bitand] = ACTIONS(7562), + [anon_sym_not_eq] = ACTIONS(7562), + [anon_sym_DASH_DASH] = ACTIONS(7562), + [anon_sym_PLUS_PLUS] = ACTIONS(7562), + [anon_sym_DOT] = ACTIONS(7560), + [anon_sym_DOT_STAR] = ACTIONS(7562), + [anon_sym_DASH_GT] = ACTIONS(7562), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7562), + [anon_sym_override] = ACTIONS(7562), + [anon_sym_requires] = ACTIONS(7562), + [anon_sym_COLON_RBRACK] = ACTIONS(7562), + }, + [STATE(2247)] = { + [sym__abstract_declarator] = STATE(4508), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2248), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1954), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2248), + [sym_identifier] = ACTIONS(7365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [aux_sym_preproc_if_token2] = ACTIONS(7367), + [aux_sym_preproc_else_token1] = ACTIONS(7367), + [aux_sym_preproc_elif_token1] = ACTIONS(7365), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7367), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(6943), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(6947), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7365), + [anon_sym_or_eq] = ACTIONS(7365), + [anon_sym_xor_eq] = ACTIONS(7365), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7365), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7365), + [anon_sym_not_eq] = ACTIONS(7365), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + }, + [STATE(2248)] = { + [sym__abstract_declarator] = STATE(4509), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1954), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(7369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [aux_sym_preproc_if_token2] = ACTIONS(7371), + [aux_sym_preproc_else_token1] = ACTIONS(7371), + [aux_sym_preproc_elif_token1] = ACTIONS(7369), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7371), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(6943), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(6947), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7369), + [anon_sym_or_eq] = ACTIONS(7369), + [anon_sym_xor_eq] = ACTIONS(7369), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7369), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7369), + [anon_sym_not_eq] = ACTIONS(7369), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + }, + [STATE(2249)] = { + [sym__abstract_declarator] = STATE(4510), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2251), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1954), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2251), + [sym_identifier] = ACTIONS(7373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [aux_sym_preproc_if_token2] = ACTIONS(7375), + [aux_sym_preproc_else_token1] = ACTIONS(7375), + [aux_sym_preproc_elif_token1] = ACTIONS(7373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7375), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(6943), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(6947), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7373), + [anon_sym_or_eq] = ACTIONS(7373), + [anon_sym_xor_eq] = ACTIONS(7373), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7373), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7373), + [anon_sym_not_eq] = ACTIONS(7373), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + }, + [STATE(2250)] = { + [sym__abstract_declarator] = STATE(4514), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1954), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(6841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [aux_sym_preproc_if_token2] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6943), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6947), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6841), + [anon_sym_or_eq] = ACTIONS(6841), + [anon_sym_xor_eq] = ACTIONS(6841), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6841), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6841), + [anon_sym_not_eq] = ACTIONS(6841), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + }, + [STATE(2251)] = { + [sym__abstract_declarator] = STATE(4511), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1954), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(7343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [aux_sym_preproc_if_token2] = ACTIONS(7341), + [aux_sym_preproc_else_token1] = ACTIONS(7341), + [aux_sym_preproc_elif_token1] = ACTIONS(7343), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7341), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(6943), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(6947), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_and_eq] = ACTIONS(7343), + [anon_sym_or_eq] = ACTIONS(7343), + [anon_sym_xor_eq] = ACTIONS(7343), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + }, + [STATE(2252)] = { + [sym__abstract_declarator] = STATE(4515), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1954), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(7347), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(6825), + [aux_sym_preproc_if_token2] = ACTIONS(7345), + [aux_sym_preproc_else_token1] = ACTIONS(7345), + [aux_sym_preproc_elif_token1] = ACTIONS(7347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(6943), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(6945), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(6947), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(6851), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(6851), + [anon_sym_volatile] = ACTIONS(6851), + [anon_sym_restrict] = ACTIONS(6851), + [anon_sym___restrict__] = ACTIONS(6851), + [anon_sym__Atomic] = ACTIONS(6851), + [anon_sym__Noreturn] = ACTIONS(6851), + [anon_sym_noreturn] = ACTIONS(6851), + [anon_sym__Nonnull] = ACTIONS(6851), + [anon_sym_mutable] = ACTIONS(6851), + [anon_sym_constinit] = ACTIONS(6851), + [anon_sym_consteval] = ACTIONS(6851), + [anon_sym_alignas] = ACTIONS(6855), + [anon_sym__Alignas] = ACTIONS(6855), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7347), + [anon_sym_or_eq] = ACTIONS(7347), + [anon_sym_xor_eq] = ACTIONS(7347), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + }, + [STATE(2253)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7660), + [anon_sym_COMMA] = ACTIONS(7660), + [anon_sym_RPAREN] = ACTIONS(7660), + [anon_sym_LPAREN2] = ACTIONS(7660), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_STAR] = ACTIONS(7658), + [anon_sym_SLASH] = ACTIONS(7658), + [anon_sym_PERCENT] = ACTIONS(7658), + [anon_sym_PIPE_PIPE] = ACTIONS(7660), + [anon_sym_AMP_AMP] = ACTIONS(7660), + [anon_sym_PIPE] = ACTIONS(7658), + [anon_sym_CARET] = ACTIONS(7658), + [anon_sym_AMP] = ACTIONS(7658), + [anon_sym_EQ_EQ] = ACTIONS(7660), + [anon_sym_BANG_EQ] = ACTIONS(7660), + [anon_sym_GT] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7660), + [anon_sym_LT_EQ] = ACTIONS(7658), + [anon_sym_LT] = ACTIONS(7658), + [anon_sym_LT_LT] = ACTIONS(7658), + [anon_sym_GT_GT] = ACTIONS(7658), + [anon_sym_SEMI] = ACTIONS(7660), + [anon_sym___extension__] = ACTIONS(7660), + [anon_sym___attribute__] = ACTIONS(7660), + [anon_sym___attribute] = ACTIONS(7658), + [anon_sym_COLON] = ACTIONS(7658), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7660), + [anon_sym_LBRACE] = ACTIONS(7660), + [anon_sym_RBRACE] = ACTIONS(7660), + [anon_sym_signed] = ACTIONS(7785), + [anon_sym_unsigned] = ACTIONS(7785), + [anon_sym_long] = ACTIONS(7785), + [anon_sym_short] = ACTIONS(7785), + [anon_sym_LBRACK] = ACTIONS(7660), + [anon_sym_EQ] = ACTIONS(7658), + [anon_sym_const] = ACTIONS(7658), + [anon_sym_constexpr] = ACTIONS(7660), + [anon_sym_volatile] = ACTIONS(7660), + [anon_sym_restrict] = ACTIONS(7660), + [anon_sym___restrict__] = ACTIONS(7660), + [anon_sym__Atomic] = ACTIONS(7660), + [anon_sym__Noreturn] = ACTIONS(7660), + [anon_sym_noreturn] = ACTIONS(7660), + [anon_sym__Nonnull] = ACTIONS(7660), + [anon_sym_mutable] = ACTIONS(7660), + [anon_sym_constinit] = ACTIONS(7660), + [anon_sym_consteval] = ACTIONS(7660), + [anon_sym_alignas] = ACTIONS(7660), + [anon_sym__Alignas] = ACTIONS(7660), + [anon_sym_QMARK] = ACTIONS(7660), + [anon_sym_STAR_EQ] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(7660), + [anon_sym_PERCENT_EQ] = ACTIONS(7660), + [anon_sym_PLUS_EQ] = ACTIONS(7660), + [anon_sym_DASH_EQ] = ACTIONS(7660), + [anon_sym_LT_LT_EQ] = ACTIONS(7660), + [anon_sym_GT_GT_EQ] = ACTIONS(7660), + [anon_sym_AMP_EQ] = ACTIONS(7660), + [anon_sym_CARET_EQ] = ACTIONS(7660), + [anon_sym_PIPE_EQ] = ACTIONS(7660), + [anon_sym_and_eq] = ACTIONS(7660), + [anon_sym_or_eq] = ACTIONS(7660), + [anon_sym_xor_eq] = ACTIONS(7660), + [anon_sym_LT_EQ_GT] = ACTIONS(7660), + [anon_sym_or] = ACTIONS(7658), + [anon_sym_and] = ACTIONS(7658), + [anon_sym_bitor] = ACTIONS(7660), + [anon_sym_xor] = ACTIONS(7658), + [anon_sym_bitand] = ACTIONS(7660), + [anon_sym_not_eq] = ACTIONS(7660), + [anon_sym_DASH_DASH] = ACTIONS(7660), + [anon_sym_PLUS_PLUS] = ACTIONS(7660), + [anon_sym_DOT] = ACTIONS(7658), + [anon_sym_DOT_STAR] = ACTIONS(7660), + [anon_sym_DASH_GT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7660), + [anon_sym_override] = ACTIONS(7660), + [anon_sym_requires] = ACTIONS(7660), + [anon_sym_COLON_RBRACK] = ACTIONS(7660), + }, + [STATE(2254)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7664), + [anon_sym_COMMA] = ACTIONS(7664), + [anon_sym_RPAREN] = ACTIONS(7664), + [anon_sym_LPAREN2] = ACTIONS(7664), + [anon_sym_DASH] = ACTIONS(7662), + [anon_sym_PLUS] = ACTIONS(7662), + [anon_sym_STAR] = ACTIONS(7662), + [anon_sym_SLASH] = ACTIONS(7662), + [anon_sym_PERCENT] = ACTIONS(7662), + [anon_sym_PIPE_PIPE] = ACTIONS(7664), + [anon_sym_AMP_AMP] = ACTIONS(7664), + [anon_sym_PIPE] = ACTIONS(7662), + [anon_sym_CARET] = ACTIONS(7662), + [anon_sym_AMP] = ACTIONS(7662), + [anon_sym_EQ_EQ] = ACTIONS(7664), + [anon_sym_BANG_EQ] = ACTIONS(7664), + [anon_sym_GT] = ACTIONS(7662), + [anon_sym_GT_EQ] = ACTIONS(7664), + [anon_sym_LT_EQ] = ACTIONS(7662), + [anon_sym_LT] = ACTIONS(7662), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym_SEMI] = ACTIONS(7664), + [anon_sym___extension__] = ACTIONS(7664), + [anon_sym___attribute__] = ACTIONS(7664), + [anon_sym___attribute] = ACTIONS(7662), + [anon_sym_COLON] = ACTIONS(7662), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7664), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(7664), + [anon_sym_signed] = ACTIONS(7785), + [anon_sym_unsigned] = ACTIONS(7785), + [anon_sym_long] = ACTIONS(7785), + [anon_sym_short] = ACTIONS(7785), + [anon_sym_LBRACK] = ACTIONS(7664), + [anon_sym_EQ] = ACTIONS(7662), + [anon_sym_const] = ACTIONS(7662), + [anon_sym_constexpr] = ACTIONS(7664), + [anon_sym_volatile] = ACTIONS(7664), + [anon_sym_restrict] = ACTIONS(7664), + [anon_sym___restrict__] = ACTIONS(7664), + [anon_sym__Atomic] = ACTIONS(7664), + [anon_sym__Noreturn] = ACTIONS(7664), + [anon_sym_noreturn] = ACTIONS(7664), + [anon_sym__Nonnull] = ACTIONS(7664), + [anon_sym_mutable] = ACTIONS(7664), + [anon_sym_constinit] = ACTIONS(7664), + [anon_sym_consteval] = ACTIONS(7664), + [anon_sym_alignas] = ACTIONS(7664), + [anon_sym__Alignas] = ACTIONS(7664), + [anon_sym_QMARK] = ACTIONS(7664), + [anon_sym_STAR_EQ] = ACTIONS(7664), + [anon_sym_SLASH_EQ] = ACTIONS(7664), + [anon_sym_PERCENT_EQ] = ACTIONS(7664), + [anon_sym_PLUS_EQ] = ACTIONS(7664), + [anon_sym_DASH_EQ] = ACTIONS(7664), + [anon_sym_LT_LT_EQ] = ACTIONS(7664), + [anon_sym_GT_GT_EQ] = ACTIONS(7664), + [anon_sym_AMP_EQ] = ACTIONS(7664), + [anon_sym_CARET_EQ] = ACTIONS(7664), + [anon_sym_PIPE_EQ] = ACTIONS(7664), + [anon_sym_and_eq] = ACTIONS(7664), + [anon_sym_or_eq] = ACTIONS(7664), + [anon_sym_xor_eq] = ACTIONS(7664), + [anon_sym_LT_EQ_GT] = ACTIONS(7664), + [anon_sym_or] = ACTIONS(7662), + [anon_sym_and] = ACTIONS(7662), + [anon_sym_bitor] = ACTIONS(7664), + [anon_sym_xor] = ACTIONS(7662), + [anon_sym_bitand] = ACTIONS(7664), + [anon_sym_not_eq] = ACTIONS(7664), + [anon_sym_DASH_DASH] = ACTIONS(7664), + [anon_sym_PLUS_PLUS] = ACTIONS(7664), + [anon_sym_DOT] = ACTIONS(7662), + [anon_sym_DOT_STAR] = ACTIONS(7664), + [anon_sym_DASH_GT] = ACTIONS(7664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7664), + [anon_sym_override] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7664), + [anon_sym_COLON_RBRACK] = ACTIONS(7664), + }, + [STATE(2255)] = { + [sym__abstract_declarator] = STATE(4432), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2256), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(6937), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(6939), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(6941), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym_SEMI] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(7367), + [anon_sym___attribute] = ACTIONS(7365), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7367), + [anon_sym_or_eq] = ACTIONS(7367), + [anon_sym_xor_eq] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7367), + [anon_sym_override] = ACTIONS(7367), + [anon_sym_requires] = ACTIONS(7367), + }, + [STATE(2256)] = { + [sym__abstract_declarator] = STATE(4434), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(6937), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(6939), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(6941), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym_SEMI] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(7371), + [anon_sym___attribute] = ACTIONS(7369), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), + }, + [STATE(2257)] = { + [sym__abstract_declarator] = STATE(4435), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2259), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(6937), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(6939), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(6941), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym_SEMI] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(7375), + [anon_sym___attribute] = ACTIONS(7373), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), + }, + [STATE(2258)] = { + [sym__abstract_declarator] = STATE(4439), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6937), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6939), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6941), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(6843), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + }, + [STATE(2259)] = { + [sym__abstract_declarator] = STATE(4436), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(6937), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(6939), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(6941), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym_SEMI] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(7341), + [anon_sym___attribute] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_and_eq] = ACTIONS(7341), + [anon_sym_or_eq] = ACTIONS(7341), + [anon_sym_xor_eq] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), + }, + [STATE(2260)] = { + [sym__abstract_declarator] = STATE(4440), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1977), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6817), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(6929), + [anon_sym_STAR] = ACTIONS(6937), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7347), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(6931), + [anon_sym_AMP_AMP] = ACTIONS(6939), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(6933), + [anon_sym_AMP] = ACTIONS(6941), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), @@ -335161,26 +336300,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7347), [anon_sym_GT_GT] = ACTIONS(7347), [anon_sym_SEMI] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(7347), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), - [anon_sym_RBRACE] = ACTIONS(7345), - [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(7345), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(6835), [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_STAR_EQ] = ACTIONS(7345), [anon_sym_SLASH_EQ] = ACTIONS(7345), @@ -335208,375 +336346,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7345), [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7345), - }, - [STATE(2246)] = { - [sym__abstract_declarator] = STATE(4521), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1946), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [sym_identifier] = ACTIONS(7353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [aux_sym_preproc_if_token2] = ACTIONS(7355), - [aux_sym_preproc_else_token1] = ACTIONS(7355), - [aux_sym_preproc_elif_token1] = ACTIONS(7353), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7355), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(6917), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(6919), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(6921), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7353), - [anon_sym_or_eq] = ACTIONS(7353), - [anon_sym_xor_eq] = ACTIONS(7353), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7353), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7353), - [anon_sym_not_eq] = ACTIONS(7353), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - }, - [STATE(2247)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2310), - [sym__function_exception_specification] = STATE(2567), - [sym__function_attributes_end] = STATE(3919), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3071), - [sym_noexcept] = STATE(2567), - [sym_throw_specifier] = STATE(2567), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7793), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7796), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7789), - [anon_sym_or_eq] = ACTIONS(7789), - [anon_sym_xor_eq] = ACTIONS(7789), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7799), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_noexcept] = ACTIONS(6504), - [anon_sym_throw] = ACTIONS(6506), - [anon_sym_requires] = ACTIONS(6508), - }, - [STATE(2248)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2312), - [sym__function_exception_specification] = STATE(2574), - [sym__function_attributes_end] = STATE(3923), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3075), - [sym_noexcept] = STATE(2574), - [sym_throw_specifier] = STATE(2574), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7793), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7796), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7789), - [anon_sym_or_eq] = ACTIONS(7789), - [anon_sym_xor_eq] = ACTIONS(7789), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7799), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7802), - [anon_sym_override] = ACTIONS(7802), - [anon_sym_noexcept] = ACTIONS(6504), - [anon_sym_throw] = ACTIONS(6506), - [anon_sym_requires] = ACTIONS(7805), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), }, - [STATE(2249)] = { - [sym_attribute_specifier] = STATE(3154), - [sym_attribute_declaration] = STATE(6403), - [sym_type_qualifier] = STATE(3731), - [sym_alignas_qualifier] = STATE(3991), - [sym_gnu_asm_expression] = STATE(9096), - [sym_virtual_specifier] = STATE(6501), - [sym_ref_qualifier] = STATE(4044), - [sym__function_attributes_start] = STATE(3976), - [sym__function_exception_specification] = STATE(4628), - [sym__function_attributes_end] = STATE(6276), - [sym__function_postfix] = STATE(6715), - [sym_trailing_return_type] = STATE(6315), - [sym_noexcept] = STATE(4628), - [sym_throw_specifier] = STATE(4628), - [sym_requires_clause] = STATE(6715), - [aux_sym_type_definition_repeat1] = STATE(3154), - [aux_sym__type_definition_type_repeat1] = STATE(3731), - [aux_sym_attributed_declarator_repeat1] = STATE(6403), - [aux_sym__function_postfix_repeat1] = STATE(6501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(7808), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6481), - [anon_sym_AMP] = ACTIONS(7811), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6479), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6481), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(7814), - [anon_sym___attribute__] = ACTIONS(7816), - [anon_sym___attribute] = ACTIONS(7818), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7820), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(7822), - [anon_sym_constexpr] = ACTIONS(7814), - [anon_sym_volatile] = ACTIONS(7814), - [anon_sym_restrict] = ACTIONS(7814), - [anon_sym___restrict__] = ACTIONS(7814), - [anon_sym__Atomic] = ACTIONS(7814), - [anon_sym__Noreturn] = ACTIONS(7814), - [anon_sym_noreturn] = ACTIONS(7814), - [anon_sym__Nonnull] = ACTIONS(7814), - [anon_sym_mutable] = ACTIONS(7814), - [anon_sym_constinit] = ACTIONS(7814), - [anon_sym_consteval] = ACTIONS(7814), - [anon_sym_alignas] = ACTIONS(7824), - [anon_sym__Alignas] = ACTIONS(7824), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6481), - [anon_sym_and] = ACTIONS(6481), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6481), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(7826), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7829), - [anon_sym_override] = ACTIONS(7829), - [anon_sym_GT2] = ACTIONS(6481), - [anon_sym_noexcept] = ACTIONS(7831), - [anon_sym_throw] = ACTIONS(7833), - [anon_sym_requires] = ACTIONS(7835), + [STATE(2261)] = { + [sym_attribute_specifier] = STATE(2455), + [sym_attribute_declaration] = STATE(4900), + [sym_type_qualifier] = STATE(2391), + [sym_alignas_qualifier] = STATE(2606), + [aux_sym_type_definition_repeat1] = STATE(2455), + [aux_sym__type_definition_type_repeat1] = STATE(2391), + [aux_sym_attributed_declarator_repeat1] = STATE(4900), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_mutable] = ACTIONS(6786), + [anon_sym_constinit] = ACTIONS(6786), + [anon_sym_consteval] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6796), + [anon_sym__Alignas] = ACTIONS(6796), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6748), + [anon_sym_and] = ACTIONS(6748), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6748), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6746), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), + [anon_sym_DASH_GT_STAR] = ACTIONS(6748), }, - [STATE(2250)] = { - [sym__abstract_declarator] = STATE(4525), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1946), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [sym_identifier] = ACTIONS(7347), + [STATE(2262)] = { + [sym__abstract_declarator] = STATE(4524), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1950), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), - [aux_sym_preproc_if_token2] = ACTIONS(7345), - [aux_sym_preproc_else_token1] = ACTIONS(7345), - [aux_sym_preproc_elif_token1] = ACTIONS(7347), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6817), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6911), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7347), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_AMP_AMP] = ACTIONS(6913), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(6921), + [anon_sym_AMP] = ACTIONS(6915), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), @@ -335585,23 +336468,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7347), [anon_sym_LT_LT] = ACTIONS(7347), [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(6833), - [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(7347), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), + [anon_sym_RBRACE] = ACTIONS(7345), + [anon_sym_LBRACK] = ACTIONS(6835), [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(6833), - [anon_sym_volatile] = ACTIONS(6833), - [anon_sym_restrict] = ACTIONS(6833), - [anon_sym___restrict__] = ACTIONS(6833), - [anon_sym__Atomic] = ACTIONS(6833), - [anon_sym__Noreturn] = ACTIONS(6833), - [anon_sym_noreturn] = ACTIONS(6833), - [anon_sym__Nonnull] = ACTIONS(6833), - [anon_sym_mutable] = ACTIONS(6833), - [anon_sym_constinit] = ACTIONS(6833), - [anon_sym_consteval] = ACTIONS(6833), - [anon_sym_alignas] = ACTIONS(6841), - [anon_sym__Alignas] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_STAR_EQ] = ACTIONS(7345), [anon_sym_SLASH_EQ] = ACTIONS(7345), @@ -335613,151 +336500,2082 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7345), [anon_sym_CARET_EQ] = ACTIONS(7345), [anon_sym_PIPE_EQ] = ACTIONS(7345), - [anon_sym_and_eq] = ACTIONS(7347), - [anon_sym_or_eq] = ACTIONS(7347), - [anon_sym_xor_eq] = ACTIONS(7347), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), [anon_sym_LT_EQ_GT] = ACTIONS(7345), [anon_sym_or] = ACTIONS(7347), [anon_sym_and] = ACTIONS(7347), - [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), [anon_sym_xor] = ACTIONS(7347), - [anon_sym_bitand] = ACTIONS(7347), - [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), [anon_sym_DASH_DASH] = ACTIONS(7345), [anon_sym_PLUS_PLUS] = ACTIONS(7345), [anon_sym_DOT] = ACTIONS(7347), [anon_sym_DOT_STAR] = ACTIONS(7345), [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7345), }, - [STATE(2251)] = { - [sym_template_argument_list] = STATE(2174), - [sym_identifier] = ACTIONS(7094), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), - [anon_sym_COMMA] = ACTIONS(7087), - [anon_sym_RPAREN] = ACTIONS(7087), - [aux_sym_preproc_if_token2] = ACTIONS(7087), - [aux_sym_preproc_else_token1] = ACTIONS(7087), - [aux_sym_preproc_elif_token1] = ACTIONS(7094), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7087), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7087), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_DASH] = ACTIONS(7094), - [anon_sym_PLUS] = ACTIONS(7094), - [anon_sym_STAR] = ACTIONS(7094), - [anon_sym_SLASH] = ACTIONS(7094), - [anon_sym_PERCENT] = ACTIONS(7094), - [anon_sym_PIPE_PIPE] = ACTIONS(7087), - [anon_sym_AMP_AMP] = ACTIONS(7087), - [anon_sym_PIPE] = ACTIONS(7094), - [anon_sym_CARET] = ACTIONS(7094), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_EQ_EQ] = ACTIONS(7087), - [anon_sym_BANG_EQ] = ACTIONS(7087), - [anon_sym_GT] = ACTIONS(7094), - [anon_sym_GT_EQ] = ACTIONS(7087), - [anon_sym_LT_EQ] = ACTIONS(7094), - [anon_sym_LT] = ACTIONS(7266), - [anon_sym_LT_LT] = ACTIONS(7094), - [anon_sym_GT_GT] = ACTIONS(7094), - [anon_sym_SEMI] = ACTIONS(7087), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7094), - [anon_sym___attribute] = ACTIONS(7094), - [anon_sym_COLON] = ACTIONS(7094), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7087), - [anon_sym_LBRACK] = ACTIONS(7087), - [anon_sym_EQ] = ACTIONS(7094), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(7087), - [anon_sym_STAR_EQ] = ACTIONS(7087), - [anon_sym_SLASH_EQ] = ACTIONS(7087), - [anon_sym_PERCENT_EQ] = ACTIONS(7087), - [anon_sym_PLUS_EQ] = ACTIONS(7087), - [anon_sym_DASH_EQ] = ACTIONS(7087), - [anon_sym_LT_LT_EQ] = ACTIONS(7087), - [anon_sym_GT_GT_EQ] = ACTIONS(7087), - [anon_sym_AMP_EQ] = ACTIONS(7087), - [anon_sym_CARET_EQ] = ACTIONS(7087), - [anon_sym_PIPE_EQ] = ACTIONS(7087), - [anon_sym_and_eq] = ACTIONS(7094), - [anon_sym_or_eq] = ACTIONS(7094), - [anon_sym_xor_eq] = ACTIONS(7094), - [anon_sym_LT_EQ_GT] = ACTIONS(7087), - [anon_sym_or] = ACTIONS(7094), - [anon_sym_and] = ACTIONS(7094), - [anon_sym_bitor] = ACTIONS(7094), - [anon_sym_xor] = ACTIONS(7094), - [anon_sym_bitand] = ACTIONS(7094), - [anon_sym_not_eq] = ACTIONS(7094), - [anon_sym_DASH_DASH] = ACTIONS(7087), - [anon_sym_PLUS_PLUS] = ACTIONS(7087), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_DOT_STAR] = ACTIONS(7087), - [anon_sym_DASH_GT] = ACTIONS(7087), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7087), + [STATE(2263)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7624), + [anon_sym_COMMA] = ACTIONS(7624), + [anon_sym_RPAREN] = ACTIONS(7624), + [anon_sym_LPAREN2] = ACTIONS(7624), + [anon_sym_DASH] = ACTIONS(7622), + [anon_sym_PLUS] = ACTIONS(7622), + [anon_sym_STAR] = ACTIONS(7622), + [anon_sym_SLASH] = ACTIONS(7622), + [anon_sym_PERCENT] = ACTIONS(7622), + [anon_sym_PIPE_PIPE] = ACTIONS(7624), + [anon_sym_AMP_AMP] = ACTIONS(7624), + [anon_sym_PIPE] = ACTIONS(7622), + [anon_sym_CARET] = ACTIONS(7622), + [anon_sym_AMP] = ACTIONS(7622), + [anon_sym_EQ_EQ] = ACTIONS(7624), + [anon_sym_BANG_EQ] = ACTIONS(7624), + [anon_sym_GT] = ACTIONS(7622), + [anon_sym_GT_EQ] = ACTIONS(7624), + [anon_sym_LT_EQ] = ACTIONS(7622), + [anon_sym_LT] = ACTIONS(7622), + [anon_sym_LT_LT] = ACTIONS(7622), + [anon_sym_GT_GT] = ACTIONS(7622), + [anon_sym_SEMI] = ACTIONS(7624), + [anon_sym___extension__] = ACTIONS(7624), + [anon_sym___attribute__] = ACTIONS(7624), + [anon_sym___attribute] = ACTIONS(7622), + [anon_sym_COLON] = ACTIONS(7622), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7624), + [anon_sym_LBRACE] = ACTIONS(7624), + [anon_sym_RBRACE] = ACTIONS(7624), + [anon_sym_signed] = ACTIONS(7785), + [anon_sym_unsigned] = ACTIONS(7785), + [anon_sym_long] = ACTIONS(7785), + [anon_sym_short] = ACTIONS(7785), + [anon_sym_LBRACK] = ACTIONS(7624), + [anon_sym_EQ] = ACTIONS(7622), + [anon_sym_const] = ACTIONS(7622), + [anon_sym_constexpr] = ACTIONS(7624), + [anon_sym_volatile] = ACTIONS(7624), + [anon_sym_restrict] = ACTIONS(7624), + [anon_sym___restrict__] = ACTIONS(7624), + [anon_sym__Atomic] = ACTIONS(7624), + [anon_sym__Noreturn] = ACTIONS(7624), + [anon_sym_noreturn] = ACTIONS(7624), + [anon_sym__Nonnull] = ACTIONS(7624), + [anon_sym_mutable] = ACTIONS(7624), + [anon_sym_constinit] = ACTIONS(7624), + [anon_sym_consteval] = ACTIONS(7624), + [anon_sym_alignas] = ACTIONS(7624), + [anon_sym__Alignas] = ACTIONS(7624), + [anon_sym_QMARK] = ACTIONS(7624), + [anon_sym_STAR_EQ] = ACTIONS(7624), + [anon_sym_SLASH_EQ] = ACTIONS(7624), + [anon_sym_PERCENT_EQ] = ACTIONS(7624), + [anon_sym_PLUS_EQ] = ACTIONS(7624), + [anon_sym_DASH_EQ] = ACTIONS(7624), + [anon_sym_LT_LT_EQ] = ACTIONS(7624), + [anon_sym_GT_GT_EQ] = ACTIONS(7624), + [anon_sym_AMP_EQ] = ACTIONS(7624), + [anon_sym_CARET_EQ] = ACTIONS(7624), + [anon_sym_PIPE_EQ] = ACTIONS(7624), + [anon_sym_and_eq] = ACTIONS(7624), + [anon_sym_or_eq] = ACTIONS(7624), + [anon_sym_xor_eq] = ACTIONS(7624), + [anon_sym_LT_EQ_GT] = ACTIONS(7624), + [anon_sym_or] = ACTIONS(7622), + [anon_sym_and] = ACTIONS(7622), + [anon_sym_bitor] = ACTIONS(7624), + [anon_sym_xor] = ACTIONS(7622), + [anon_sym_bitand] = ACTIONS(7624), + [anon_sym_not_eq] = ACTIONS(7624), + [anon_sym_DASH_DASH] = ACTIONS(7624), + [anon_sym_PLUS_PLUS] = ACTIONS(7624), + [anon_sym_DOT] = ACTIONS(7622), + [anon_sym_DOT_STAR] = ACTIONS(7624), + [anon_sym_DASH_GT] = ACTIONS(7624), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7624), + [anon_sym_override] = ACTIONS(7624), + [anon_sym_requires] = ACTIONS(7624), + [anon_sym_COLON_RBRACK] = ACTIONS(7624), }, - [STATE(2252)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5368), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9861), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_type_parameter_declaration] = STATE(9861), - [sym_variadic_type_parameter_declaration] = STATE(9861), - [sym_optional_type_parameter_declaration] = STATE(9861), - [sym_template_template_parameter_declaration] = STATE(9861), - [sym_optional_parameter_declaration] = STATE(9861), - [sym_variadic_parameter_declaration] = STATE(9861), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), + [STATE(2264)] = { + [sym_type_qualifier] = STATE(2265), + [sym_alignas_qualifier] = STATE(2388), + [aux_sym__type_definition_type_repeat1] = STATE(2265), + [aux_sym_sized_type_specifier_repeat1] = STATE(2382), + [sym_identifier] = ACTIONS(7828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7211), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(7830), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(7833), + [anon_sym_unsigned] = ACTIONS(7833), + [anon_sym_long] = ACTIONS(7833), + [anon_sym_short] = ACTIONS(7833), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(7830), + [anon_sym_constexpr] = ACTIONS(7830), + [anon_sym_volatile] = ACTIONS(7830), + [anon_sym_restrict] = ACTIONS(7830), + [anon_sym___restrict__] = ACTIONS(7830), + [anon_sym__Atomic] = ACTIONS(7830), + [anon_sym__Noreturn] = ACTIONS(7830), + [anon_sym_noreturn] = ACTIONS(7830), + [anon_sym__Nonnull] = ACTIONS(7830), + [anon_sym_mutable] = ACTIONS(7830), + [anon_sym_constinit] = ACTIONS(7830), + [anon_sym_consteval] = ACTIONS(7830), + [anon_sym_alignas] = ACTIONS(7835), + [anon_sym__Alignas] = ACTIONS(7835), + [sym_primitive_type] = ACTIONS(7838), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7211), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_GT2] = ACTIONS(7209), + [anon_sym_requires] = ACTIONS(7211), + }, + [STATE(2265)] = { + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [aux_sym_sized_type_specifier_repeat1] = STATE(2514), + [sym_identifier] = ACTIONS(7840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7195), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7842), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7845), + [anon_sym_unsigned] = ACTIONS(7845), + [anon_sym_long] = ACTIONS(7845), + [anon_sym_short] = ACTIONS(7845), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7842), + [anon_sym_constexpr] = ACTIONS(7842), + [anon_sym_volatile] = ACTIONS(7842), + [anon_sym_restrict] = ACTIONS(7842), + [anon_sym___restrict__] = ACTIONS(7842), + [anon_sym__Atomic] = ACTIONS(7842), + [anon_sym__Noreturn] = ACTIONS(7842), + [anon_sym_noreturn] = ACTIONS(7842), + [anon_sym__Nonnull] = ACTIONS(7842), + [anon_sym_mutable] = ACTIONS(7842), + [anon_sym_constinit] = ACTIONS(7842), + [anon_sym_consteval] = ACTIONS(7842), + [anon_sym_alignas] = ACTIONS(7847), + [anon_sym__Alignas] = ACTIONS(7847), + [sym_primitive_type] = ACTIONS(7850), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7195), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_GT2] = ACTIONS(7193), + [anon_sym_requires] = ACTIONS(7195), + }, + [STATE(2266)] = { + [sym__abstract_declarator] = STATE(4457), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2282), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1950), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2282), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_RPAREN] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(6911), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(6913), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym_SEMI] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(7365), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7367), + [anon_sym_RBRACE] = ACTIONS(7367), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7367), + [anon_sym_or_eq] = ACTIONS(7367), + [anon_sym_xor_eq] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7367), + }, + [STATE(2267)] = { + [sym_type_qualifier] = STATE(2269), + [sym_alignas_qualifier] = STATE(2394), + [aux_sym__type_definition_type_repeat1] = STATE(2269), + [aux_sym_sized_type_specifier_repeat1] = STATE(2376), + [sym_identifier] = ACTIONS(7852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(7854), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(7857), + [anon_sym_unsigned] = ACTIONS(7857), + [anon_sym_long] = ACTIONS(7857), + [anon_sym_short] = ACTIONS(7857), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_RBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(7854), + [anon_sym_constexpr] = ACTIONS(7854), + [anon_sym_volatile] = ACTIONS(7854), + [anon_sym_restrict] = ACTIONS(7854), + [anon_sym___restrict__] = ACTIONS(7854), + [anon_sym__Atomic] = ACTIONS(7854), + [anon_sym__Noreturn] = ACTIONS(7854), + [anon_sym_noreturn] = ACTIONS(7854), + [anon_sym__Nonnull] = ACTIONS(7854), + [anon_sym_mutable] = ACTIONS(7854), + [anon_sym_constinit] = ACTIONS(7854), + [anon_sym_consteval] = ACTIONS(7854), + [anon_sym_alignas] = ACTIONS(7859), + [anon_sym__Alignas] = ACTIONS(7859), + [sym_primitive_type] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), + }, + [STATE(2268)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7686), + [anon_sym_COMMA] = ACTIONS(7686), + [anon_sym_RPAREN] = ACTIONS(7686), + [anon_sym_LPAREN2] = ACTIONS(7686), + [anon_sym_DASH] = ACTIONS(7684), + [anon_sym_PLUS] = ACTIONS(7684), + [anon_sym_STAR] = ACTIONS(7684), + [anon_sym_SLASH] = ACTIONS(7684), + [anon_sym_PERCENT] = ACTIONS(7684), + [anon_sym_PIPE_PIPE] = ACTIONS(7686), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_PIPE] = ACTIONS(7684), + [anon_sym_CARET] = ACTIONS(7684), + [anon_sym_AMP] = ACTIONS(7684), + [anon_sym_EQ_EQ] = ACTIONS(7686), + [anon_sym_BANG_EQ] = ACTIONS(7686), + [anon_sym_GT] = ACTIONS(7684), + [anon_sym_GT_EQ] = ACTIONS(7686), + [anon_sym_LT_EQ] = ACTIONS(7684), + [anon_sym_LT] = ACTIONS(7684), + [anon_sym_LT_LT] = ACTIONS(7684), + [anon_sym_GT_GT] = ACTIONS(7684), + [anon_sym_SEMI] = ACTIONS(7686), + [anon_sym___extension__] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(7686), + [anon_sym___attribute] = ACTIONS(7684), + [anon_sym_COLON] = ACTIONS(7684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7686), + [anon_sym_LBRACE] = ACTIONS(7686), + [anon_sym_RBRACE] = ACTIONS(7686), + [anon_sym_signed] = ACTIONS(7862), + [anon_sym_unsigned] = ACTIONS(7862), + [anon_sym_long] = ACTIONS(7862), + [anon_sym_short] = ACTIONS(7862), + [anon_sym_LBRACK] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(7684), + [anon_sym_const] = ACTIONS(7684), + [anon_sym_constexpr] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym___restrict__] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym__Noreturn] = ACTIONS(7686), + [anon_sym_noreturn] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym_mutable] = ACTIONS(7686), + [anon_sym_constinit] = ACTIONS(7686), + [anon_sym_consteval] = ACTIONS(7686), + [anon_sym_alignas] = ACTIONS(7686), + [anon_sym__Alignas] = ACTIONS(7686), + [anon_sym_QMARK] = ACTIONS(7686), + [anon_sym_STAR_EQ] = ACTIONS(7686), + [anon_sym_SLASH_EQ] = ACTIONS(7686), + [anon_sym_PERCENT_EQ] = ACTIONS(7686), + [anon_sym_PLUS_EQ] = ACTIONS(7686), + [anon_sym_DASH_EQ] = ACTIONS(7686), + [anon_sym_LT_LT_EQ] = ACTIONS(7686), + [anon_sym_GT_GT_EQ] = ACTIONS(7686), + [anon_sym_AMP_EQ] = ACTIONS(7686), + [anon_sym_CARET_EQ] = ACTIONS(7686), + [anon_sym_PIPE_EQ] = ACTIONS(7686), + [anon_sym_and_eq] = ACTIONS(7686), + [anon_sym_or_eq] = ACTIONS(7686), + [anon_sym_xor_eq] = ACTIONS(7686), + [anon_sym_LT_EQ_GT] = ACTIONS(7686), + [anon_sym_or] = ACTIONS(7684), + [anon_sym_and] = ACTIONS(7684), + [anon_sym_bitor] = ACTIONS(7686), + [anon_sym_xor] = ACTIONS(7684), + [anon_sym_bitand] = ACTIONS(7686), + [anon_sym_not_eq] = ACTIONS(7686), + [anon_sym_DASH_DASH] = ACTIONS(7686), + [anon_sym_PLUS_PLUS] = ACTIONS(7686), + [anon_sym_DOT] = ACTIONS(7684), + [anon_sym_DOT_STAR] = ACTIONS(7686), + [anon_sym_DASH_GT] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7686), + [anon_sym_override] = ACTIONS(7686), + [anon_sym_requires] = ACTIONS(7686), + [anon_sym_COLON_RBRACK] = ACTIONS(7686), + }, + [STATE(2269)] = { + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2394), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(2175), + [sym_identifier] = ACTIONS(7864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7866), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7316), + [anon_sym_unsigned] = ACTIONS(7316), + [anon_sym_long] = ACTIONS(7316), + [anon_sym_short] = ACTIONS(7316), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_RBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7866), + [anon_sym_constexpr] = ACTIONS(7866), + [anon_sym_volatile] = ACTIONS(7866), + [anon_sym_restrict] = ACTIONS(7866), + [anon_sym___restrict__] = ACTIONS(7866), + [anon_sym__Atomic] = ACTIONS(7866), + [anon_sym__Noreturn] = ACTIONS(7866), + [anon_sym_noreturn] = ACTIONS(7866), + [anon_sym__Nonnull] = ACTIONS(7866), + [anon_sym_mutable] = ACTIONS(7866), + [anon_sym_constinit] = ACTIONS(7866), + [anon_sym_consteval] = ACTIONS(7866), + [anon_sym_alignas] = ACTIONS(7869), + [anon_sym__Alignas] = ACTIONS(7869), + [sym_primitive_type] = ACTIONS(7318), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_requires] = ACTIONS(7195), + }, + [STATE(2270)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7692), + [anon_sym_COMMA] = ACTIONS(7692), + [anon_sym_RPAREN] = ACTIONS(7692), + [anon_sym_LPAREN2] = ACTIONS(7692), + [anon_sym_DASH] = ACTIONS(7690), + [anon_sym_PLUS] = ACTIONS(7690), + [anon_sym_STAR] = ACTIONS(7690), + [anon_sym_SLASH] = ACTIONS(7690), + [anon_sym_PERCENT] = ACTIONS(7690), + [anon_sym_PIPE_PIPE] = ACTIONS(7692), + [anon_sym_AMP_AMP] = ACTIONS(7692), + [anon_sym_PIPE] = ACTIONS(7690), + [anon_sym_CARET] = ACTIONS(7690), + [anon_sym_AMP] = ACTIONS(7690), + [anon_sym_EQ_EQ] = ACTIONS(7692), + [anon_sym_BANG_EQ] = ACTIONS(7692), + [anon_sym_GT] = ACTIONS(7690), + [anon_sym_GT_EQ] = ACTIONS(7692), + [anon_sym_LT_EQ] = ACTIONS(7690), + [anon_sym_LT] = ACTIONS(7690), + [anon_sym_LT_LT] = ACTIONS(7690), + [anon_sym_GT_GT] = ACTIONS(7690), + [anon_sym_SEMI] = ACTIONS(7692), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(7692), + [anon_sym___attribute] = ACTIONS(7690), + [anon_sym_COLON] = ACTIONS(7690), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7692), + [anon_sym_LBRACE] = ACTIONS(7692), + [anon_sym_RBRACE] = ACTIONS(7692), + [anon_sym_signed] = ACTIONS(7872), + [anon_sym_unsigned] = ACTIONS(7872), + [anon_sym_long] = ACTIONS(7872), + [anon_sym_short] = ACTIONS(7872), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_EQ] = ACTIONS(7690), + [anon_sym_const] = ACTIONS(7690), + [anon_sym_constexpr] = ACTIONS(7692), + [anon_sym_volatile] = ACTIONS(7692), + [anon_sym_restrict] = ACTIONS(7692), + [anon_sym___restrict__] = ACTIONS(7692), + [anon_sym__Atomic] = ACTIONS(7692), + [anon_sym__Noreturn] = ACTIONS(7692), + [anon_sym_noreturn] = ACTIONS(7692), + [anon_sym__Nonnull] = ACTIONS(7692), + [anon_sym_mutable] = ACTIONS(7692), + [anon_sym_constinit] = ACTIONS(7692), + [anon_sym_consteval] = ACTIONS(7692), + [anon_sym_alignas] = ACTIONS(7692), + [anon_sym__Alignas] = ACTIONS(7692), + [anon_sym_QMARK] = ACTIONS(7692), + [anon_sym_STAR_EQ] = ACTIONS(7692), + [anon_sym_SLASH_EQ] = ACTIONS(7692), + [anon_sym_PERCENT_EQ] = ACTIONS(7692), + [anon_sym_PLUS_EQ] = ACTIONS(7692), + [anon_sym_DASH_EQ] = ACTIONS(7692), + [anon_sym_LT_LT_EQ] = ACTIONS(7692), + [anon_sym_GT_GT_EQ] = ACTIONS(7692), + [anon_sym_AMP_EQ] = ACTIONS(7692), + [anon_sym_CARET_EQ] = ACTIONS(7692), + [anon_sym_PIPE_EQ] = ACTIONS(7692), + [anon_sym_and_eq] = ACTIONS(7692), + [anon_sym_or_eq] = ACTIONS(7692), + [anon_sym_xor_eq] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7692), + [anon_sym_or] = ACTIONS(7690), + [anon_sym_and] = ACTIONS(7690), + [anon_sym_bitor] = ACTIONS(7692), + [anon_sym_xor] = ACTIONS(7690), + [anon_sym_bitand] = ACTIONS(7692), + [anon_sym_not_eq] = ACTIONS(7692), + [anon_sym_DASH_DASH] = ACTIONS(7692), + [anon_sym_PLUS_PLUS] = ACTIONS(7692), + [anon_sym_DOT] = ACTIONS(7690), + [anon_sym_DOT_STAR] = ACTIONS(7692), + [anon_sym_DASH_GT] = ACTIONS(7692), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_COLON_RBRACK] = ACTIONS(7692), + }, + [STATE(2271)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2296), + [sym__function_exception_specification] = STATE(2536), + [sym__function_attributes_end] = STATE(3933), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3061), + [sym_noexcept] = STATE(2536), + [sym_throw_specifier] = STATE(2536), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7878), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7881), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7887), + [anon_sym_override] = ACTIONS(7887), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(7890), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), + }, + [STATE(2272)] = { + [sym_type_qualifier] = STATE(2272), + [sym_alignas_qualifier] = STATE(2365), + [aux_sym__type_definition_type_repeat1] = STATE(2272), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_RPAREN] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(7893), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACE] = ACTIONS(6880), + [anon_sym_signed] = ACTIONS(6878), + [anon_sym_unsigned] = ACTIONS(6878), + [anon_sym_long] = ACTIONS(6878), + [anon_sym_short] = ACTIONS(6878), + [anon_sym_LBRACK] = ACTIONS(6880), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(7893), + [anon_sym_constexpr] = ACTIONS(7893), + [anon_sym_volatile] = ACTIONS(7893), + [anon_sym_restrict] = ACTIONS(7893), + [anon_sym___restrict__] = ACTIONS(7893), + [anon_sym__Atomic] = ACTIONS(7893), + [anon_sym__Noreturn] = ACTIONS(7893), + [anon_sym_noreturn] = ACTIONS(7893), + [anon_sym__Nonnull] = ACTIONS(7893), + [anon_sym_mutable] = ACTIONS(7893), + [anon_sym_constinit] = ACTIONS(7893), + [anon_sym_consteval] = ACTIONS(7893), + [anon_sym_alignas] = ACTIONS(7896), + [anon_sym__Alignas] = ACTIONS(7896), + [sym_primitive_type] = ACTIONS(6878), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6880), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_and_eq] = ACTIONS(6878), + [anon_sym_or_eq] = ACTIONS(6878), + [anon_sym_xor_eq] = ACTIONS(6878), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6878), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6878), + [anon_sym_DASH_GT_STAR] = ACTIONS(6880), + }, + [STATE(2273)] = { + [sym_attribute_specifier] = STATE(2302), + [sym_attribute_declaration] = STATE(4748), + [sym_type_qualifier] = STATE(2463), + [sym_alignas_qualifier] = STATE(2677), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym_ref_qualifier] = STATE(4094), + [sym__function_attributes_start] = STATE(4033), + [sym__function_exception_specification] = STATE(4619), + [sym__function_attributes_end] = STATE(6171), + [sym__function_postfix] = STATE(5317), + [sym_trailing_return_type] = STATE(5855), + [sym_noexcept] = STATE(4619), + [sym_throw_specifier] = STATE(4619), + [sym_requires_clause] = STATE(5317), + [aux_sym_type_definition_repeat1] = STATE(2302), + [aux_sym__type_definition_type_repeat1] = STATE(2463), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_AMP] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6471), + [anon_sym_GT_GT] = ACTIONS(6471), + [anon_sym_SEMI] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7899), + [anon_sym___attribute] = ACTIONS(7902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(7166), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7227), + [anon_sym__Alignas] = ACTIONS(7227), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6471), + [anon_sym_and] = ACTIONS(6471), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6471), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(7905), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7272), + [anon_sym_override] = ACTIONS(7272), + [anon_sym_noexcept] = ACTIONS(7235), + [anon_sym_throw] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7274), + }, + [STATE(2274)] = { + [sym_attribute_specifier] = STATE(3212), + [sym_attribute_declaration] = STATE(6397), + [sym_type_qualifier] = STATE(3703), + [sym_alignas_qualifier] = STATE(4021), + [sym_gnu_asm_expression] = STATE(9080), + [sym_virtual_specifier] = STATE(6497), + [sym_ref_qualifier] = STATE(4101), + [sym__function_attributes_start] = STATE(3995), + [sym__function_exception_specification] = STATE(4547), + [sym__function_attributes_end] = STATE(6285), + [sym__function_postfix] = STATE(6701), + [sym_trailing_return_type] = STATE(6309), + [sym_noexcept] = STATE(4547), + [sym_throw_specifier] = STATE(4547), + [sym_requires_clause] = STATE(6701), + [aux_sym_type_definition_repeat1] = STATE(3212), + [aux_sym__type_definition_type_repeat1] = STATE(3703), + [aux_sym_attributed_declarator_repeat1] = STATE(6397), + [aux_sym__function_postfix_repeat1] = STATE(6497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(7908), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_AMP] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6469), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6471), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(7914), + [anon_sym___attribute__] = ACTIONS(7916), + [anon_sym___attribute] = ACTIONS(7918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7920), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(7922), + [anon_sym_constexpr] = ACTIONS(7914), + [anon_sym_volatile] = ACTIONS(7914), + [anon_sym_restrict] = ACTIONS(7914), + [anon_sym___restrict__] = ACTIONS(7914), + [anon_sym__Atomic] = ACTIONS(7914), + [anon_sym__Noreturn] = ACTIONS(7914), + [anon_sym_noreturn] = ACTIONS(7914), + [anon_sym__Nonnull] = ACTIONS(7914), + [anon_sym_mutable] = ACTIONS(7914), + [anon_sym_constinit] = ACTIONS(7914), + [anon_sym_consteval] = ACTIONS(7914), + [anon_sym_alignas] = ACTIONS(7924), + [anon_sym__Alignas] = ACTIONS(7924), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6471), + [anon_sym_and] = ACTIONS(6471), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6471), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(7926), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7929), + [anon_sym_override] = ACTIONS(7929), + [anon_sym_GT2] = ACTIONS(6471), + [anon_sym_noexcept] = ACTIONS(7932), + [anon_sym_throw] = ACTIONS(7934), + [anon_sym_requires] = ACTIONS(7936), + }, + [STATE(2275)] = { + [sym_attribute_specifier] = STATE(3212), + [sym_attribute_declaration] = STATE(6397), + [sym_type_qualifier] = STATE(3703), + [sym_alignas_qualifier] = STATE(4021), + [sym_gnu_asm_expression] = STATE(9080), + [sym_virtual_specifier] = STATE(6497), + [sym_ref_qualifier] = STATE(4090), + [sym__function_attributes_start] = STATE(4017), + [sym__function_exception_specification] = STATE(4582), + [sym__function_attributes_end] = STATE(6267), + [sym__function_postfix] = STATE(6701), + [sym_trailing_return_type] = STATE(6332), + [sym_noexcept] = STATE(4582), + [sym_throw_specifier] = STATE(4582), + [sym_requires_clause] = STATE(6701), + [aux_sym_type_definition_repeat1] = STATE(3212), + [aux_sym__type_definition_type_repeat1] = STATE(3703), + [aux_sym_attributed_declarator_repeat1] = STATE(6397), + [aux_sym__function_postfix_repeat1] = STATE(6497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(7908), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_AMP] = ACTIONS(7911), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6469), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6471), + [anon_sym_GT_GT] = ACTIONS(6469), + [anon_sym___extension__] = ACTIONS(7914), + [anon_sym___attribute__] = ACTIONS(7916), + [anon_sym___attribute] = ACTIONS(7918), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7920), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(7922), + [anon_sym_constexpr] = ACTIONS(7914), + [anon_sym_volatile] = ACTIONS(7914), + [anon_sym_restrict] = ACTIONS(7914), + [anon_sym___restrict__] = ACTIONS(7914), + [anon_sym__Atomic] = ACTIONS(7914), + [anon_sym__Noreturn] = ACTIONS(7914), + [anon_sym_noreturn] = ACTIONS(7914), + [anon_sym__Nonnull] = ACTIONS(7914), + [anon_sym_mutable] = ACTIONS(7914), + [anon_sym_constinit] = ACTIONS(7914), + [anon_sym_consteval] = ACTIONS(7914), + [anon_sym_alignas] = ACTIONS(7924), + [anon_sym__Alignas] = ACTIONS(7924), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6471), + [anon_sym_and] = ACTIONS(6471), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6471), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(7926), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7939), + [anon_sym_override] = ACTIONS(7939), + [anon_sym_GT2] = ACTIONS(6471), + [anon_sym_noexcept] = ACTIONS(7932), + [anon_sym_throw] = ACTIONS(7934), + [anon_sym_requires] = ACTIONS(7941), + }, + [STATE(2276)] = { + [sym_attribute_specifier] = STATE(3217), + [sym_attribute_declaration] = STATE(6404), + [sym_type_qualifier] = STATE(3714), + [sym_alignas_qualifier] = STATE(4020), + [sym_gnu_asm_expression] = STATE(9110), + [sym_virtual_specifier] = STATE(6462), + [sym_ref_qualifier] = STATE(4111), + [sym__function_attributes_start] = STATE(3975), + [sym__function_exception_specification] = STATE(4557), + [sym__function_attributes_end] = STATE(6260), + [sym__function_postfix] = STATE(6608), + [sym_trailing_return_type] = STATE(6340), + [sym_noexcept] = STATE(4557), + [sym_throw_specifier] = STATE(4557), + [sym_requires_clause] = STATE(6608), + [aux_sym_type_definition_repeat1] = STATE(3217), + [aux_sym__type_definition_type_repeat1] = STATE(3714), + [aux_sym_attributed_declarator_repeat1] = STATE(6404), + [aux_sym__function_postfix_repeat1] = STATE(6462), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(7797), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_AMP] = ACTIONS(7800), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6471), + [anon_sym_GT_GT] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(7803), + [anon_sym___attribute__] = ACTIONS(7805), + [anon_sym___attribute] = ACTIONS(7807), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7809), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_RBRACK] = ACTIONS(6471), + [anon_sym_const] = ACTIONS(7811), + [anon_sym_constexpr] = ACTIONS(7803), + [anon_sym_volatile] = ACTIONS(7803), + [anon_sym_restrict] = ACTIONS(7803), + [anon_sym___restrict__] = ACTIONS(7803), + [anon_sym__Atomic] = ACTIONS(7803), + [anon_sym__Noreturn] = ACTIONS(7803), + [anon_sym_noreturn] = ACTIONS(7803), + [anon_sym__Nonnull] = ACTIONS(7803), + [anon_sym_mutable] = ACTIONS(7803), + [anon_sym_constinit] = ACTIONS(7803), + [anon_sym_consteval] = ACTIONS(7803), + [anon_sym_alignas] = ACTIONS(7813), + [anon_sym__Alignas] = ACTIONS(7813), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6471), + [anon_sym_and] = ACTIONS(6471), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6471), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(7815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7943), + [anon_sym_override] = ACTIONS(7943), + [anon_sym_noexcept] = ACTIONS(7820), + [anon_sym_throw] = ACTIONS(7822), + [anon_sym_requires] = ACTIONS(7946), + }, + [STATE(2277)] = { + [sym_attribute_specifier] = STATE(2302), + [sym_attribute_declaration] = STATE(4748), + [sym_type_qualifier] = STATE(2463), + [sym_alignas_qualifier] = STATE(2677), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym_ref_qualifier] = STATE(4118), + [sym__function_attributes_start] = STATE(3982), + [sym__function_exception_specification] = STATE(4583), + [sym__function_attributes_end] = STATE(6156), + [sym__function_postfix] = STATE(5317), + [sym_trailing_return_type] = STATE(5754), + [sym_noexcept] = STATE(4583), + [sym_throw_specifier] = STATE(4583), + [sym_requires_clause] = STATE(5317), + [aux_sym_type_definition_repeat1] = STATE(2302), + [aux_sym__type_definition_type_repeat1] = STATE(2463), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6471), + [anon_sym_COMMA] = ACTIONS(6471), + [anon_sym_LPAREN2] = ACTIONS(6471), + [anon_sym_DASH] = ACTIONS(6469), + [anon_sym_PLUS] = ACTIONS(6469), + [anon_sym_STAR] = ACTIONS(6471), + [anon_sym_SLASH] = ACTIONS(6469), + [anon_sym_PERCENT] = ACTIONS(6471), + [anon_sym_PIPE_PIPE] = ACTIONS(6471), + [anon_sym_AMP_AMP] = ACTIONS(7160), + [anon_sym_PIPE] = ACTIONS(6469), + [anon_sym_CARET] = ACTIONS(6471), + [anon_sym_AMP] = ACTIONS(7163), + [anon_sym_EQ_EQ] = ACTIONS(6471), + [anon_sym_BANG_EQ] = ACTIONS(6471), + [anon_sym_GT] = ACTIONS(6469), + [anon_sym_GT_EQ] = ACTIONS(6471), + [anon_sym_LT_EQ] = ACTIONS(6469), + [anon_sym_LT] = ACTIONS(6469), + [anon_sym_LT_LT] = ACTIONS(6471), + [anon_sym_GT_GT] = ACTIONS(6471), + [anon_sym_SEMI] = ACTIONS(6471), + [anon_sym___extension__] = ACTIONS(7223), + [anon_sym___attribute__] = ACTIONS(7899), + [anon_sym___attribute] = ACTIONS(7902), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(6469), + [anon_sym_const] = ACTIONS(7166), + [anon_sym_constexpr] = ACTIONS(7223), + [anon_sym_volatile] = ACTIONS(7223), + [anon_sym_restrict] = ACTIONS(7223), + [anon_sym___restrict__] = ACTIONS(7223), + [anon_sym__Atomic] = ACTIONS(7223), + [anon_sym__Noreturn] = ACTIONS(7223), + [anon_sym_noreturn] = ACTIONS(7223), + [anon_sym__Nonnull] = ACTIONS(7223), + [anon_sym_mutable] = ACTIONS(7223), + [anon_sym_constinit] = ACTIONS(7223), + [anon_sym_consteval] = ACTIONS(7223), + [anon_sym_alignas] = ACTIONS(7227), + [anon_sym__Alignas] = ACTIONS(7227), + [anon_sym_QMARK] = ACTIONS(6471), + [anon_sym_LT_EQ_GT] = ACTIONS(6471), + [anon_sym_or] = ACTIONS(6471), + [anon_sym_and] = ACTIONS(6471), + [anon_sym_bitor] = ACTIONS(6471), + [anon_sym_xor] = ACTIONS(6471), + [anon_sym_bitand] = ACTIONS(6471), + [anon_sym_not_eq] = ACTIONS(6471), + [anon_sym_DASH_DASH] = ACTIONS(6471), + [anon_sym_PLUS_PLUS] = ACTIONS(6471), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(6469), + [anon_sym_DOT_STAR] = ACTIONS(6471), + [anon_sym_DASH_GT] = ACTIONS(7905), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7232), + [anon_sym_override] = ACTIONS(7232), + [anon_sym_noexcept] = ACTIONS(7235), + [anon_sym_throw] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7239), + }, + [STATE(2278)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2303), + [sym__function_exception_specification] = STATE(2549), + [sym__function_attributes_end] = STATE(3919), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3033), + [sym_noexcept] = STATE(2549), + [sym_throw_specifier] = STATE(2549), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7878), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7881), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7876), + [anon_sym_or_eq] = ACTIONS(7876), + [anon_sym_xor_eq] = ACTIONS(7876), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7949), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_noexcept] = ACTIONS(6495), + [anon_sym_throw] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6557), + }, + [STATE(2279)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2306), + [sym__function_exception_specification] = STATE(2560), + [sym__function_attributes_end] = STATE(3923), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3061), + [sym_noexcept] = STATE(2560), + [sym_throw_specifier] = STATE(2560), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7878), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7881), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7876), + [anon_sym_or_eq] = ACTIONS(7876), + [anon_sym_xor_eq] = ACTIONS(7876), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7949), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7952), + [anon_sym_override] = ACTIONS(7952), + [anon_sym_noexcept] = ACTIONS(6495), + [anon_sym_throw] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(7955), + }, + [STATE(2280)] = { + [sym_template_argument_list] = STATE(2154), + [sym_identifier] = ACTIONS(7126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7119), + [anon_sym_COMMA] = ACTIONS(7119), + [anon_sym_RPAREN] = ACTIONS(7119), + [aux_sym_preproc_if_token2] = ACTIONS(7119), + [aux_sym_preproc_else_token1] = ACTIONS(7119), + [aux_sym_preproc_elif_token1] = ACTIONS(7126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7119), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7119), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_DASH] = ACTIONS(7126), + [anon_sym_PLUS] = ACTIONS(7126), + [anon_sym_STAR] = ACTIONS(7126), + [anon_sym_SLASH] = ACTIONS(7126), + [anon_sym_PERCENT] = ACTIONS(7126), + [anon_sym_PIPE_PIPE] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7119), + [anon_sym_PIPE] = ACTIONS(7126), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_AMP] = ACTIONS(7126), + [anon_sym_EQ_EQ] = ACTIONS(7119), + [anon_sym_BANG_EQ] = ACTIONS(7119), + [anon_sym_GT] = ACTIONS(7126), + [anon_sym_GT_EQ] = ACTIONS(7119), + [anon_sym_LT_EQ] = ACTIONS(7126), + [anon_sym_LT] = ACTIONS(7185), + [anon_sym_LT_LT] = ACTIONS(7126), + [anon_sym_GT_GT] = ACTIONS(7126), + [anon_sym_SEMI] = ACTIONS(7119), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7126), + [anon_sym___attribute] = ACTIONS(7126), + [anon_sym_COLON] = ACTIONS(7126), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_RBRACE] = ACTIONS(7119), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_EQ] = ACTIONS(7126), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(7119), + [anon_sym_STAR_EQ] = ACTIONS(7119), + [anon_sym_SLASH_EQ] = ACTIONS(7119), + [anon_sym_PERCENT_EQ] = ACTIONS(7119), + [anon_sym_PLUS_EQ] = ACTIONS(7119), + [anon_sym_DASH_EQ] = ACTIONS(7119), + [anon_sym_LT_LT_EQ] = ACTIONS(7119), + [anon_sym_GT_GT_EQ] = ACTIONS(7119), + [anon_sym_AMP_EQ] = ACTIONS(7119), + [anon_sym_CARET_EQ] = ACTIONS(7119), + [anon_sym_PIPE_EQ] = ACTIONS(7119), + [anon_sym_and_eq] = ACTIONS(7126), + [anon_sym_or_eq] = ACTIONS(7126), + [anon_sym_xor_eq] = ACTIONS(7126), + [anon_sym_LT_EQ_GT] = ACTIONS(7119), + [anon_sym_or] = ACTIONS(7126), + [anon_sym_and] = ACTIONS(7126), + [anon_sym_bitor] = ACTIONS(7126), + [anon_sym_xor] = ACTIONS(7126), + [anon_sym_bitand] = ACTIONS(7126), + [anon_sym_not_eq] = ACTIONS(7126), + [anon_sym_DASH_DASH] = ACTIONS(7119), + [anon_sym_PLUS_PLUS] = ACTIONS(7119), + [anon_sym_DOT] = ACTIONS(7126), + [anon_sym_DOT_STAR] = ACTIONS(7119), + [anon_sym_DASH_GT] = ACTIONS(7119), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7119), + }, + [STATE(2281)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2319), + [sym__function_exception_specification] = STATE(2543), + [sym__function_attributes_end] = STATE(3835), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3033), + [sym_noexcept] = STATE(2543), + [sym_throw_specifier] = STATE(2543), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7878), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7881), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(6545), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), + }, + [STATE(2282)] = { + [sym__abstract_declarator] = STATE(4492), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1950), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_RPAREN] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(6911), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(6913), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym_SEMI] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(7369), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7371), + [anon_sym_RBRACE] = ACTIONS(7371), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7371), + }, + [STATE(2283)] = { + [sym__abstract_declarator] = STATE(4498), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2243), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1950), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_RPAREN] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(6911), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(6913), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(6915), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym_SEMI] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym_COLON] = ACTIONS(7373), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7375), + [anon_sym_RBRACE] = ACTIONS(7375), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7375), + }, + [STATE(2284)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym___attribute__] = ACTIONS(7248), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(7783), + [anon_sym_unsigned] = ACTIONS(7783), + [anon_sym_long] = ACTIONS(7783), + [anon_sym_short] = ACTIONS(7783), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), + }, + [STATE(2285)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7620), + [anon_sym_COMMA] = ACTIONS(7620), + [anon_sym_RPAREN] = ACTIONS(7620), + [anon_sym_LPAREN2] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7618), + [anon_sym_STAR] = ACTIONS(7618), + [anon_sym_SLASH] = ACTIONS(7618), + [anon_sym_PERCENT] = ACTIONS(7618), + [anon_sym_PIPE_PIPE] = ACTIONS(7620), + [anon_sym_AMP_AMP] = ACTIONS(7620), + [anon_sym_PIPE] = ACTIONS(7618), + [anon_sym_CARET] = ACTIONS(7618), + [anon_sym_AMP] = ACTIONS(7618), + [anon_sym_EQ_EQ] = ACTIONS(7620), + [anon_sym_BANG_EQ] = ACTIONS(7620), + [anon_sym_GT] = ACTIONS(7618), + [anon_sym_GT_EQ] = ACTIONS(7620), + [anon_sym_LT_EQ] = ACTIONS(7618), + [anon_sym_LT] = ACTIONS(7618), + [anon_sym_LT_LT] = ACTIONS(7618), + [anon_sym_GT_GT] = ACTIONS(7618), + [anon_sym_SEMI] = ACTIONS(7620), + [anon_sym___extension__] = ACTIONS(7620), + [anon_sym___attribute__] = ACTIONS(7620), + [anon_sym___attribute] = ACTIONS(7618), + [anon_sym_COLON] = ACTIONS(7618), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7620), + [anon_sym_LBRACE] = ACTIONS(7620), + [anon_sym_RBRACE] = ACTIONS(7620), + [anon_sym_signed] = ACTIONS(7785), + [anon_sym_unsigned] = ACTIONS(7785), + [anon_sym_long] = ACTIONS(7785), + [anon_sym_short] = ACTIONS(7785), + [anon_sym_LBRACK] = ACTIONS(7620), + [anon_sym_EQ] = ACTIONS(7618), + [anon_sym_const] = ACTIONS(7618), + [anon_sym_constexpr] = ACTIONS(7620), + [anon_sym_volatile] = ACTIONS(7620), + [anon_sym_restrict] = ACTIONS(7620), + [anon_sym___restrict__] = ACTIONS(7620), + [anon_sym__Atomic] = ACTIONS(7620), + [anon_sym__Noreturn] = ACTIONS(7620), + [anon_sym_noreturn] = ACTIONS(7620), + [anon_sym__Nonnull] = ACTIONS(7620), + [anon_sym_mutable] = ACTIONS(7620), + [anon_sym_constinit] = ACTIONS(7620), + [anon_sym_consteval] = ACTIONS(7620), + [anon_sym_alignas] = ACTIONS(7620), + [anon_sym__Alignas] = ACTIONS(7620), + [anon_sym_QMARK] = ACTIONS(7620), + [anon_sym_STAR_EQ] = ACTIONS(7620), + [anon_sym_SLASH_EQ] = ACTIONS(7620), + [anon_sym_PERCENT_EQ] = ACTIONS(7620), + [anon_sym_PLUS_EQ] = ACTIONS(7620), + [anon_sym_DASH_EQ] = ACTIONS(7620), + [anon_sym_LT_LT_EQ] = ACTIONS(7620), + [anon_sym_GT_GT_EQ] = ACTIONS(7620), + [anon_sym_AMP_EQ] = ACTIONS(7620), + [anon_sym_CARET_EQ] = ACTIONS(7620), + [anon_sym_PIPE_EQ] = ACTIONS(7620), + [anon_sym_and_eq] = ACTIONS(7620), + [anon_sym_or_eq] = ACTIONS(7620), + [anon_sym_xor_eq] = ACTIONS(7620), + [anon_sym_LT_EQ_GT] = ACTIONS(7620), + [anon_sym_or] = ACTIONS(7618), + [anon_sym_and] = ACTIONS(7618), + [anon_sym_bitor] = ACTIONS(7620), + [anon_sym_xor] = ACTIONS(7618), + [anon_sym_bitand] = ACTIONS(7620), + [anon_sym_not_eq] = ACTIONS(7620), + [anon_sym_DASH_DASH] = ACTIONS(7620), + [anon_sym_PLUS_PLUS] = ACTIONS(7620), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_DOT_STAR] = ACTIONS(7620), + [anon_sym_DASH_GT] = ACTIONS(7620), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7620), + [anon_sym_override] = ACTIONS(7620), + [anon_sym_requires] = ACTIONS(7620), + [anon_sym_COLON_RBRACK] = ACTIONS(7620), + }, + [STATE(2286)] = { + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6878), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(7958), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACE] = ACTIONS(6880), + [anon_sym_signed] = ACTIONS(6878), + [anon_sym_unsigned] = ACTIONS(6878), + [anon_sym_long] = ACTIONS(6878), + [anon_sym_short] = ACTIONS(6878), + [anon_sym_LBRACK] = ACTIONS(6880), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(7958), + [anon_sym_constexpr] = ACTIONS(7958), + [anon_sym_volatile] = ACTIONS(7958), + [anon_sym_restrict] = ACTIONS(7958), + [anon_sym___restrict__] = ACTIONS(7958), + [anon_sym__Atomic] = ACTIONS(7958), + [anon_sym__Noreturn] = ACTIONS(7958), + [anon_sym_noreturn] = ACTIONS(7958), + [anon_sym__Nonnull] = ACTIONS(7958), + [anon_sym_mutable] = ACTIONS(7958), + [anon_sym_constinit] = ACTIONS(7958), + [anon_sym_consteval] = ACTIONS(7958), + [anon_sym_alignas] = ACTIONS(7961), + [anon_sym__Alignas] = ACTIONS(7961), + [sym_primitive_type] = ACTIONS(6878), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6878), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_and_eq] = ACTIONS(6878), + [anon_sym_or_eq] = ACTIONS(6878), + [anon_sym_xor_eq] = ACTIONS(6878), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_GT2] = ACTIONS(6880), + [anon_sym_requires] = ACTIONS(6878), + }, + [STATE(2287)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9683), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9683), + [sym_optional_parameter_declaration] = STATE(9683), + [sym_variadic_parameter_declaration] = STATE(9683), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2304), + [anon_sym_RPAREN] = ACTIONS(5657), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -335785,3169 +338603,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(7837), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(7839), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(7841), - [anon_sym_GT2] = ACTIONS(7843), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(2253)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), - [anon_sym_COMMA] = ACTIONS(7729), - [anon_sym_RPAREN] = ACTIONS(7729), - [anon_sym_LPAREN2] = ACTIONS(7729), - [anon_sym_DASH] = ACTIONS(7727), - [anon_sym_PLUS] = ACTIONS(7727), - [anon_sym_STAR] = ACTIONS(7727), - [anon_sym_SLASH] = ACTIONS(7727), - [anon_sym_PERCENT] = ACTIONS(7727), - [anon_sym_PIPE_PIPE] = ACTIONS(7729), - [anon_sym_AMP_AMP] = ACTIONS(7729), - [anon_sym_PIPE] = ACTIONS(7727), - [anon_sym_CARET] = ACTIONS(7727), - [anon_sym_AMP] = ACTIONS(7727), - [anon_sym_EQ_EQ] = ACTIONS(7729), - [anon_sym_BANG_EQ] = ACTIONS(7729), - [anon_sym_GT] = ACTIONS(7727), - [anon_sym_GT_EQ] = ACTIONS(7729), - [anon_sym_LT_EQ] = ACTIONS(7727), - [anon_sym_LT] = ACTIONS(7727), - [anon_sym_LT_LT] = ACTIONS(7727), - [anon_sym_GT_GT] = ACTIONS(7727), - [anon_sym_SEMI] = ACTIONS(7729), - [anon_sym___extension__] = ACTIONS(7729), - [anon_sym___attribute__] = ACTIONS(7729), - [anon_sym___attribute] = ACTIONS(7727), - [anon_sym_COLON] = ACTIONS(7727), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7729), - [anon_sym_LBRACE] = ACTIONS(7729), - [anon_sym_RBRACE] = ACTIONS(7729), - [anon_sym_signed] = ACTIONS(7845), - [anon_sym_unsigned] = ACTIONS(7845), - [anon_sym_long] = ACTIONS(7845), - [anon_sym_short] = ACTIONS(7845), - [anon_sym_LBRACK] = ACTIONS(7729), - [anon_sym_EQ] = ACTIONS(7727), - [anon_sym_const] = ACTIONS(7727), - [anon_sym_constexpr] = ACTIONS(7729), - [anon_sym_volatile] = ACTIONS(7729), - [anon_sym_restrict] = ACTIONS(7729), - [anon_sym___restrict__] = ACTIONS(7729), - [anon_sym__Atomic] = ACTIONS(7729), - [anon_sym__Noreturn] = ACTIONS(7729), - [anon_sym_noreturn] = ACTIONS(7729), - [anon_sym__Nonnull] = ACTIONS(7729), - [anon_sym_mutable] = ACTIONS(7729), - [anon_sym_constinit] = ACTIONS(7729), - [anon_sym_consteval] = ACTIONS(7729), - [anon_sym_alignas] = ACTIONS(7729), - [anon_sym__Alignas] = ACTIONS(7729), - [anon_sym_QMARK] = ACTIONS(7729), - [anon_sym_STAR_EQ] = ACTIONS(7729), - [anon_sym_SLASH_EQ] = ACTIONS(7729), - [anon_sym_PERCENT_EQ] = ACTIONS(7729), - [anon_sym_PLUS_EQ] = ACTIONS(7729), - [anon_sym_DASH_EQ] = ACTIONS(7729), - [anon_sym_LT_LT_EQ] = ACTIONS(7729), - [anon_sym_GT_GT_EQ] = ACTIONS(7729), - [anon_sym_AMP_EQ] = ACTIONS(7729), - [anon_sym_CARET_EQ] = ACTIONS(7729), - [anon_sym_PIPE_EQ] = ACTIONS(7729), - [anon_sym_and_eq] = ACTIONS(7729), - [anon_sym_or_eq] = ACTIONS(7729), - [anon_sym_xor_eq] = ACTIONS(7729), - [anon_sym_LT_EQ_GT] = ACTIONS(7729), - [anon_sym_or] = ACTIONS(7727), - [anon_sym_and] = ACTIONS(7727), - [anon_sym_bitor] = ACTIONS(7729), - [anon_sym_xor] = ACTIONS(7727), - [anon_sym_bitand] = ACTIONS(7729), - [anon_sym_not_eq] = ACTIONS(7729), - [anon_sym_DASH_DASH] = ACTIONS(7729), - [anon_sym_PLUS_PLUS] = ACTIONS(7729), - [anon_sym_DOT] = ACTIONS(7727), - [anon_sym_DOT_STAR] = ACTIONS(7729), - [anon_sym_DASH_GT] = ACTIONS(7729), + [STATE(2288)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9957), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9957), + [sym_optional_parameter_declaration] = STATE(9957), + [sym_variadic_parameter_declaration] = STATE(9957), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6451), + [anon_sym_RPAREN] = ACTIONS(6453), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7729), - [anon_sym_override] = ACTIONS(7729), - [anon_sym_requires] = ACTIONS(7729), - [anon_sym_COLON_RBRACK] = ACTIONS(7729), - }, - [STATE(2254)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2269), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), - [anon_sym_COMMA] = ACTIONS(7785), - [anon_sym_RPAREN] = ACTIONS(7785), - [anon_sym_LPAREN2] = ACTIONS(7785), - [anon_sym_DASH] = ACTIONS(7783), - [anon_sym_PLUS] = ACTIONS(7783), - [anon_sym_STAR] = ACTIONS(7783), - [anon_sym_SLASH] = ACTIONS(7783), - [anon_sym_PERCENT] = ACTIONS(7783), - [anon_sym_PIPE_PIPE] = ACTIONS(7785), - [anon_sym_AMP_AMP] = ACTIONS(7785), - [anon_sym_PIPE] = ACTIONS(7783), - [anon_sym_CARET] = ACTIONS(7783), - [anon_sym_AMP] = ACTIONS(7783), - [anon_sym_EQ_EQ] = ACTIONS(7785), - [anon_sym_BANG_EQ] = ACTIONS(7785), - [anon_sym_GT] = ACTIONS(7783), - [anon_sym_GT_EQ] = ACTIONS(7785), - [anon_sym_LT_EQ] = ACTIONS(7783), - [anon_sym_LT] = ACTIONS(7783), - [anon_sym_LT_LT] = ACTIONS(7783), - [anon_sym_GT_GT] = ACTIONS(7783), - [anon_sym_SEMI] = ACTIONS(7785), - [anon_sym___extension__] = ACTIONS(7785), - [anon_sym___attribute__] = ACTIONS(7785), - [anon_sym___attribute] = ACTIONS(7783), - [anon_sym_COLON] = ACTIONS(7783), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7785), - [anon_sym_LBRACE] = ACTIONS(7785), - [anon_sym_RBRACE] = ACTIONS(7785), - [anon_sym_signed] = ACTIONS(7847), - [anon_sym_unsigned] = ACTIONS(7847), - [anon_sym_long] = ACTIONS(7847), - [anon_sym_short] = ACTIONS(7847), - [anon_sym_LBRACK] = ACTIONS(7785), - [anon_sym_EQ] = ACTIONS(7783), - [anon_sym_const] = ACTIONS(7783), - [anon_sym_constexpr] = ACTIONS(7785), - [anon_sym_volatile] = ACTIONS(7785), - [anon_sym_restrict] = ACTIONS(7785), - [anon_sym___restrict__] = ACTIONS(7785), - [anon_sym__Atomic] = ACTIONS(7785), - [anon_sym__Noreturn] = ACTIONS(7785), - [anon_sym_noreturn] = ACTIONS(7785), - [anon_sym__Nonnull] = ACTIONS(7785), - [anon_sym_mutable] = ACTIONS(7785), - [anon_sym_constinit] = ACTIONS(7785), - [anon_sym_consteval] = ACTIONS(7785), - [anon_sym_alignas] = ACTIONS(7785), - [anon_sym__Alignas] = ACTIONS(7785), - [anon_sym_QMARK] = ACTIONS(7785), - [anon_sym_STAR_EQ] = ACTIONS(7785), - [anon_sym_SLASH_EQ] = ACTIONS(7785), - [anon_sym_PERCENT_EQ] = ACTIONS(7785), - [anon_sym_PLUS_EQ] = ACTIONS(7785), - [anon_sym_DASH_EQ] = ACTIONS(7785), - [anon_sym_LT_LT_EQ] = ACTIONS(7785), - [anon_sym_GT_GT_EQ] = ACTIONS(7785), - [anon_sym_AMP_EQ] = ACTIONS(7785), - [anon_sym_CARET_EQ] = ACTIONS(7785), - [anon_sym_PIPE_EQ] = ACTIONS(7785), - [anon_sym_and_eq] = ACTIONS(7785), - [anon_sym_or_eq] = ACTIONS(7785), - [anon_sym_xor_eq] = ACTIONS(7785), - [anon_sym_LT_EQ_GT] = ACTIONS(7785), - [anon_sym_or] = ACTIONS(7783), - [anon_sym_and] = ACTIONS(7783), - [anon_sym_bitor] = ACTIONS(7785), - [anon_sym_xor] = ACTIONS(7783), - [anon_sym_bitand] = ACTIONS(7785), - [anon_sym_not_eq] = ACTIONS(7785), - [anon_sym_DASH_DASH] = ACTIONS(7785), - [anon_sym_PLUS_PLUS] = ACTIONS(7785), - [anon_sym_DOT] = ACTIONS(7783), - [anon_sym_DOT_STAR] = ACTIONS(7785), - [anon_sym_DASH_GT] = ACTIONS(7785), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7785), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_requires] = ACTIONS(7785), - [anon_sym_COLON_RBRACK] = ACTIONS(7785), - }, - [STATE(2255)] = { - [sym_attribute_specifier] = STATE(2470), - [sym_attribute_declaration] = STATE(5004), - [sym_type_qualifier] = STATE(2412), - [sym_alignas_qualifier] = STATE(2636), - [aux_sym_type_definition_repeat1] = STATE(2470), - [aux_sym__type_definition_type_repeat1] = STATE(2412), - [aux_sym_attributed_declarator_repeat1] = STATE(5004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_RPAREN] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6752), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6752), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym___extension__] = ACTIONS(6762), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_EQ] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(6770), - [anon_sym_constexpr] = ACTIONS(6762), - [anon_sym_volatile] = ACTIONS(6762), - [anon_sym_restrict] = ACTIONS(6762), - [anon_sym___restrict__] = ACTIONS(6762), - [anon_sym__Atomic] = ACTIONS(6762), - [anon_sym__Noreturn] = ACTIONS(6762), - [anon_sym_noreturn] = ACTIONS(6762), - [anon_sym__Nonnull] = ACTIONS(6762), - [anon_sym_mutable] = ACTIONS(6762), - [anon_sym_constinit] = ACTIONS(6762), - [anon_sym_consteval] = ACTIONS(6762), - [anon_sym_alignas] = ACTIONS(6772), - [anon_sym__Alignas] = ACTIONS(6772), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_STAR_EQ] = ACTIONS(6754), - [anon_sym_SLASH_EQ] = ACTIONS(6754), - [anon_sym_PERCENT_EQ] = ACTIONS(6754), - [anon_sym_PLUS_EQ] = ACTIONS(6754), - [anon_sym_DASH_EQ] = ACTIONS(6754), - [anon_sym_LT_LT_EQ] = ACTIONS(6754), - [anon_sym_GT_GT_EQ] = ACTIONS(6754), - [anon_sym_AMP_EQ] = ACTIONS(6754), - [anon_sym_CARET_EQ] = ACTIONS(6754), - [anon_sym_PIPE_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6754), - [anon_sym_and] = ACTIONS(6754), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6754), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6752), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), - [anon_sym_DASH_GT_STAR] = ACTIONS(6754), - }, - [STATE(2256)] = { - [sym__abstract_declarator] = STATE(4437), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1957), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_RPAREN] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym_SEMI] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(7349), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7351), - [anon_sym_RBRACE] = ACTIONS(7351), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7351), - }, - [STATE(2257)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2293), - [sym__function_exception_specification] = STATE(2537), - [sym__function_attributes_end] = STATE(3904), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3071), - [sym_noexcept] = STATE(2537), - [sym_throw_specifier] = STATE(2537), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7793), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7796), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7849), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(6563), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), - }, - [STATE(2258)] = { - [sym_type_qualifier] = STATE(2305), - [sym_alignas_qualifier] = STATE(2434), - [aux_sym__type_definition_type_repeat1] = STATE(2305), - [aux_sym_sized_type_specifier_repeat1] = STATE(2217), - [sym_identifier] = ACTIONS(7852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(7854), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(7337), - [anon_sym_unsigned] = ACTIONS(7337), - [anon_sym_long] = ACTIONS(7337), - [anon_sym_short] = ACTIONS(7337), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_RBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(7854), - [anon_sym_constexpr] = ACTIONS(7854), - [anon_sym_volatile] = ACTIONS(7854), - [anon_sym_restrict] = ACTIONS(7854), - [anon_sym___restrict__] = ACTIONS(7854), - [anon_sym__Atomic] = ACTIONS(7854), - [anon_sym__Noreturn] = ACTIONS(7854), - [anon_sym_noreturn] = ACTIONS(7854), - [anon_sym__Nonnull] = ACTIONS(7854), - [anon_sym_mutable] = ACTIONS(7854), - [anon_sym_constinit] = ACTIONS(7854), - [anon_sym_consteval] = ACTIONS(7854), - [anon_sym_alignas] = ACTIONS(7857), - [anon_sym__Alignas] = ACTIONS(7857), - [sym_primitive_type] = ACTIONS(7339), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), - }, - [STATE(2259)] = { - [sym__abstract_declarator] = STATE(4537), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2260), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2260), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(6923), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(6925), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(6927), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym_SEMI] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(7391), - [anon_sym___attribute] = ACTIONS(7393), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7391), - [anon_sym_or_eq] = ACTIONS(7391), - [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), - }, - [STATE(2260)] = { - [sym__abstract_declarator] = STATE(4541), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(6923), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(6925), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(6927), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym_SEMI] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(7351), - [anon_sym___attribute] = ACTIONS(7349), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), - }, - [STATE(2261)] = { - [sym__abstract_declarator] = STATE(4542), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2240), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2240), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(6923), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(6925), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(6927), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym_SEMI] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(7343), - [anon_sym___attribute] = ACTIONS(7341), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - }, - [STATE(2262)] = { - [sym__abstract_declarator] = STATE(4478), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6923), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(6925), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6927), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(6823), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - }, - [STATE(2263)] = { - [sym_type_qualifier] = STATE(2258), - [sym_alignas_qualifier] = STATE(2434), - [aux_sym__type_definition_type_repeat1] = STATE(2258), - [aux_sym_sized_type_specifier_repeat1] = STATE(2387), - [sym_identifier] = ACTIONS(7860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(7862), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(7865), - [anon_sym_unsigned] = ACTIONS(7865), - [anon_sym_long] = ACTIONS(7865), - [anon_sym_short] = ACTIONS(7865), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_RBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(7862), - [anon_sym_constexpr] = ACTIONS(7862), - [anon_sym_volatile] = ACTIONS(7862), - [anon_sym_restrict] = ACTIONS(7862), - [anon_sym___restrict__] = ACTIONS(7862), - [anon_sym__Atomic] = ACTIONS(7862), - [anon_sym__Noreturn] = ACTIONS(7862), - [anon_sym_noreturn] = ACTIONS(7862), - [anon_sym__Nonnull] = ACTIONS(7862), - [anon_sym_mutable] = ACTIONS(7862), - [anon_sym_constinit] = ACTIONS(7862), - [anon_sym_consteval] = ACTIONS(7862), - [anon_sym_alignas] = ACTIONS(7867), - [anon_sym__Alignas] = ACTIONS(7867), - [sym_primitive_type] = ACTIONS(7332), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), - }, - [STATE(2264)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2291), - [sym__function_exception_specification] = STATE(2561), - [sym__function_attributes_end] = STATE(3891), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3075), - [sym_noexcept] = STATE(2561), - [sym_throw_specifier] = STATE(2561), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7793), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7796), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7849), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7870), - [anon_sym_override] = ACTIONS(7870), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(7873), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), - }, - [STATE(2265)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), - [anon_sym_COMMA] = ACTIONS(7695), - [anon_sym_RPAREN] = ACTIONS(7695), - [anon_sym_LPAREN2] = ACTIONS(7695), - [anon_sym_DASH] = ACTIONS(7693), - [anon_sym_PLUS] = ACTIONS(7693), - [anon_sym_STAR] = ACTIONS(7693), - [anon_sym_SLASH] = ACTIONS(7693), - [anon_sym_PERCENT] = ACTIONS(7693), - [anon_sym_PIPE_PIPE] = ACTIONS(7695), - [anon_sym_AMP_AMP] = ACTIONS(7695), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_CARET] = ACTIONS(7693), - [anon_sym_AMP] = ACTIONS(7693), - [anon_sym_EQ_EQ] = ACTIONS(7695), - [anon_sym_BANG_EQ] = ACTIONS(7695), - [anon_sym_GT] = ACTIONS(7693), - [anon_sym_GT_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7693), - [anon_sym_LT_LT] = ACTIONS(7693), - [anon_sym_GT_GT] = ACTIONS(7693), - [anon_sym_SEMI] = ACTIONS(7695), - [anon_sym___extension__] = ACTIONS(7695), - [anon_sym___attribute__] = ACTIONS(7695), - [anon_sym___attribute] = ACTIONS(7693), - [anon_sym_COLON] = ACTIONS(7693), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7695), - [anon_sym_LBRACE] = ACTIONS(7695), - [anon_sym_RBRACE] = ACTIONS(7695), - [anon_sym_signed] = ACTIONS(7845), - [anon_sym_unsigned] = ACTIONS(7845), - [anon_sym_long] = ACTIONS(7845), - [anon_sym_short] = ACTIONS(7845), - [anon_sym_LBRACK] = ACTIONS(7695), - [anon_sym_EQ] = ACTIONS(7693), - [anon_sym_const] = ACTIONS(7693), - [anon_sym_constexpr] = ACTIONS(7695), - [anon_sym_volatile] = ACTIONS(7695), - [anon_sym_restrict] = ACTIONS(7695), - [anon_sym___restrict__] = ACTIONS(7695), - [anon_sym__Atomic] = ACTIONS(7695), - [anon_sym__Noreturn] = ACTIONS(7695), - [anon_sym_noreturn] = ACTIONS(7695), - [anon_sym__Nonnull] = ACTIONS(7695), - [anon_sym_mutable] = ACTIONS(7695), - [anon_sym_constinit] = ACTIONS(7695), - [anon_sym_consteval] = ACTIONS(7695), - [anon_sym_alignas] = ACTIONS(7695), - [anon_sym__Alignas] = ACTIONS(7695), - [anon_sym_QMARK] = ACTIONS(7695), - [anon_sym_STAR_EQ] = ACTIONS(7695), - [anon_sym_SLASH_EQ] = ACTIONS(7695), - [anon_sym_PERCENT_EQ] = ACTIONS(7695), - [anon_sym_PLUS_EQ] = ACTIONS(7695), - [anon_sym_DASH_EQ] = ACTIONS(7695), - [anon_sym_LT_LT_EQ] = ACTIONS(7695), - [anon_sym_GT_GT_EQ] = ACTIONS(7695), - [anon_sym_AMP_EQ] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(7695), - [anon_sym_and_eq] = ACTIONS(7695), - [anon_sym_or_eq] = ACTIONS(7695), - [anon_sym_xor_eq] = ACTIONS(7695), - [anon_sym_LT_EQ_GT] = ACTIONS(7695), - [anon_sym_or] = ACTIONS(7693), - [anon_sym_and] = ACTIONS(7693), - [anon_sym_bitor] = ACTIONS(7695), - [anon_sym_xor] = ACTIONS(7693), - [anon_sym_bitand] = ACTIONS(7695), - [anon_sym_not_eq] = ACTIONS(7695), - [anon_sym_DASH_DASH] = ACTIONS(7695), - [anon_sym_PLUS_PLUS] = ACTIONS(7695), - [anon_sym_DOT] = ACTIONS(7693), - [anon_sym_DOT_STAR] = ACTIONS(7695), - [anon_sym_DASH_GT] = ACTIONS(7695), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7695), - [anon_sym_override] = ACTIONS(7695), - [anon_sym_requires] = ACTIONS(7695), - [anon_sym_COLON_RBRACK] = ACTIONS(7695), - }, - [STATE(2266)] = { - [sym__abstract_declarator] = STATE(4438), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2287), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1957), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym_SEMI] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(7341), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), - [anon_sym_RBRACE] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7343), - }, - [STATE(2267)] = { - [sym_attribute_specifier] = STATE(3174), - [sym_attribute_declaration] = STATE(6393), - [sym_type_qualifier] = STATE(3708), - [sym_alignas_qualifier] = STATE(4026), - [sym_gnu_asm_expression] = STATE(9133), - [sym_virtual_specifier] = STATE(6457), - [sym_ref_qualifier] = STATE(4074), - [sym__function_attributes_start] = STATE(4041), - [sym__function_exception_specification] = STATE(4569), - [sym__function_attributes_end] = STATE(6291), - [sym__function_postfix] = STATE(6613), - [sym_trailing_return_type] = STATE(6321), - [sym_noexcept] = STATE(4569), - [sym_throw_specifier] = STATE(4569), - [sym_requires_clause] = STATE(6613), - [aux_sym_type_definition_repeat1] = STATE(3174), - [aux_sym__type_definition_type_repeat1] = STATE(3708), - [aux_sym_attributed_declarator_repeat1] = STATE(6393), - [aux_sym__function_postfix_repeat1] = STATE(6457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(7876), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6481), - [anon_sym_AMP] = ACTIONS(7879), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6481), - [anon_sym_GT_GT] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(7882), - [anon_sym___attribute__] = ACTIONS(7884), - [anon_sym___attribute] = ACTIONS(7886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7888), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6481), - [anon_sym_const] = ACTIONS(7890), - [anon_sym_constexpr] = ACTIONS(7882), - [anon_sym_volatile] = ACTIONS(7882), - [anon_sym_restrict] = ACTIONS(7882), - [anon_sym___restrict__] = ACTIONS(7882), - [anon_sym__Atomic] = ACTIONS(7882), - [anon_sym__Noreturn] = ACTIONS(7882), - [anon_sym_noreturn] = ACTIONS(7882), - [anon_sym__Nonnull] = ACTIONS(7882), - [anon_sym_mutable] = ACTIONS(7882), - [anon_sym_constinit] = ACTIONS(7882), - [anon_sym_consteval] = ACTIONS(7882), - [anon_sym_alignas] = ACTIONS(7892), - [anon_sym__Alignas] = ACTIONS(7892), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6481), - [anon_sym_and] = ACTIONS(6481), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6481), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(7894), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7897), - [anon_sym_override] = ACTIONS(7897), - [anon_sym_noexcept] = ACTIONS(7899), - [anon_sym_throw] = ACTIONS(7901), - [anon_sym_requires] = ACTIONS(7903), - }, - [STATE(2268)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym___attribute__] = ACTIONS(7225), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(7905), - [anon_sym_unsigned] = ACTIONS(7905), - [anon_sym_long] = ACTIONS(7905), - [anon_sym_short] = ACTIONS(7905), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), - }, - [STATE(2269)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), - [anon_sym_COMMA] = ACTIONS(7699), - [anon_sym_RPAREN] = ACTIONS(7699), - [anon_sym_LPAREN2] = ACTIONS(7699), - [anon_sym_DASH] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7697), - [anon_sym_STAR] = ACTIONS(7697), - [anon_sym_SLASH] = ACTIONS(7697), - [anon_sym_PERCENT] = ACTIONS(7697), - [anon_sym_PIPE_PIPE] = ACTIONS(7699), - [anon_sym_AMP_AMP] = ACTIONS(7699), - [anon_sym_PIPE] = ACTIONS(7697), - [anon_sym_CARET] = ACTIONS(7697), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_EQ_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7699), - [anon_sym_GT] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_LT] = ACTIONS(7697), - [anon_sym_LT_LT] = ACTIONS(7697), - [anon_sym_GT_GT] = ACTIONS(7697), - [anon_sym_SEMI] = ACTIONS(7699), - [anon_sym___extension__] = ACTIONS(7699), - [anon_sym___attribute__] = ACTIONS(7699), - [anon_sym___attribute] = ACTIONS(7697), - [anon_sym_COLON] = ACTIONS(7697), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7699), - [anon_sym_LBRACE] = ACTIONS(7699), - [anon_sym_RBRACE] = ACTIONS(7699), - [anon_sym_signed] = ACTIONS(7845), - [anon_sym_unsigned] = ACTIONS(7845), - [anon_sym_long] = ACTIONS(7845), - [anon_sym_short] = ACTIONS(7845), - [anon_sym_LBRACK] = ACTIONS(7699), - [anon_sym_EQ] = ACTIONS(7697), - [anon_sym_const] = ACTIONS(7697), - [anon_sym_constexpr] = ACTIONS(7699), - [anon_sym_volatile] = ACTIONS(7699), - [anon_sym_restrict] = ACTIONS(7699), - [anon_sym___restrict__] = ACTIONS(7699), - [anon_sym__Atomic] = ACTIONS(7699), - [anon_sym__Noreturn] = ACTIONS(7699), - [anon_sym_noreturn] = ACTIONS(7699), - [anon_sym__Nonnull] = ACTIONS(7699), - [anon_sym_mutable] = ACTIONS(7699), - [anon_sym_constinit] = ACTIONS(7699), - [anon_sym_consteval] = ACTIONS(7699), - [anon_sym_alignas] = ACTIONS(7699), - [anon_sym__Alignas] = ACTIONS(7699), - [anon_sym_QMARK] = ACTIONS(7699), - [anon_sym_STAR_EQ] = ACTIONS(7699), - [anon_sym_SLASH_EQ] = ACTIONS(7699), - [anon_sym_PERCENT_EQ] = ACTIONS(7699), - [anon_sym_PLUS_EQ] = ACTIONS(7699), - [anon_sym_DASH_EQ] = ACTIONS(7699), - [anon_sym_LT_LT_EQ] = ACTIONS(7699), - [anon_sym_GT_GT_EQ] = ACTIONS(7699), - [anon_sym_AMP_EQ] = ACTIONS(7699), - [anon_sym_CARET_EQ] = ACTIONS(7699), - [anon_sym_PIPE_EQ] = ACTIONS(7699), - [anon_sym_and_eq] = ACTIONS(7699), - [anon_sym_or_eq] = ACTIONS(7699), - [anon_sym_xor_eq] = ACTIONS(7699), - [anon_sym_LT_EQ_GT] = ACTIONS(7699), - [anon_sym_or] = ACTIONS(7697), - [anon_sym_and] = ACTIONS(7697), - [anon_sym_bitor] = ACTIONS(7699), - [anon_sym_xor] = ACTIONS(7697), - [anon_sym_bitand] = ACTIONS(7699), - [anon_sym_not_eq] = ACTIONS(7699), - [anon_sym_DASH_DASH] = ACTIONS(7699), - [anon_sym_PLUS_PLUS] = ACTIONS(7699), - [anon_sym_DOT] = ACTIONS(7697), - [anon_sym_DOT_STAR] = ACTIONS(7699), - [anon_sym_DASH_GT] = ACTIONS(7699), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7699), - [anon_sym_override] = ACTIONS(7699), - [anon_sym_requires] = ACTIONS(7699), - [anon_sym_COLON_RBRACK] = ACTIONS(7699), - }, - [STATE(2270)] = { - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(2365), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_RPAREN] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(7907), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACE] = ACTIONS(6891), - [anon_sym_signed] = ACTIONS(6889), - [anon_sym_unsigned] = ACTIONS(6889), - [anon_sym_long] = ACTIONS(6889), - [anon_sym_short] = ACTIONS(6889), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(7907), - [anon_sym_constexpr] = ACTIONS(7907), - [anon_sym_volatile] = ACTIONS(7907), - [anon_sym_restrict] = ACTIONS(7907), - [anon_sym___restrict__] = ACTIONS(7907), - [anon_sym__Atomic] = ACTIONS(7907), - [anon_sym__Noreturn] = ACTIONS(7907), - [anon_sym_noreturn] = ACTIONS(7907), - [anon_sym__Nonnull] = ACTIONS(7907), - [anon_sym_mutable] = ACTIONS(7907), - [anon_sym_constinit] = ACTIONS(7907), - [anon_sym_consteval] = ACTIONS(7907), - [anon_sym_alignas] = ACTIONS(7910), - [anon_sym__Alignas] = ACTIONS(7910), - [sym_primitive_type] = ACTIONS(6889), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6891), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_and_eq] = ACTIONS(6889), - [anon_sym_or_eq] = ACTIONS(6889), - [anon_sym_xor_eq] = ACTIONS(6889), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6889), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_requires] = ACTIONS(6889), - [anon_sym_DASH_GT_STAR] = ACTIONS(6891), - }, - [STATE(2271)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2284), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), - [anon_sym_COMMA] = ACTIONS(7703), - [anon_sym_RPAREN] = ACTIONS(7703), - [anon_sym_LPAREN2] = ACTIONS(7703), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_STAR] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7701), - [anon_sym_PERCENT] = ACTIONS(7701), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_AMP_AMP] = ACTIONS(7703), - [anon_sym_PIPE] = ACTIONS(7701), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_AMP] = ACTIONS(7701), - [anon_sym_EQ_EQ] = ACTIONS(7703), - [anon_sym_BANG_EQ] = ACTIONS(7703), - [anon_sym_GT] = ACTIONS(7701), - [anon_sym_GT_EQ] = ACTIONS(7703), - [anon_sym_LT_EQ] = ACTIONS(7701), - [anon_sym_LT] = ACTIONS(7701), - [anon_sym_LT_LT] = ACTIONS(7701), - [anon_sym_GT_GT] = ACTIONS(7701), - [anon_sym_SEMI] = ACTIONS(7703), - [anon_sym___extension__] = ACTIONS(7703), - [anon_sym___attribute__] = ACTIONS(7703), - [anon_sym___attribute] = ACTIONS(7701), - [anon_sym_COLON] = ACTIONS(7701), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7703), - [anon_sym_LBRACE] = ACTIONS(7703), - [anon_sym_RBRACE] = ACTIONS(7703), - [anon_sym_signed] = ACTIONS(7913), - [anon_sym_unsigned] = ACTIONS(7913), - [anon_sym_long] = ACTIONS(7913), - [anon_sym_short] = ACTIONS(7913), - [anon_sym_LBRACK] = ACTIONS(7703), - [anon_sym_EQ] = ACTIONS(7701), - [anon_sym_const] = ACTIONS(7701), - [anon_sym_constexpr] = ACTIONS(7703), - [anon_sym_volatile] = ACTIONS(7703), - [anon_sym_restrict] = ACTIONS(7703), - [anon_sym___restrict__] = ACTIONS(7703), - [anon_sym__Atomic] = ACTIONS(7703), - [anon_sym__Noreturn] = ACTIONS(7703), - [anon_sym_noreturn] = ACTIONS(7703), - [anon_sym__Nonnull] = ACTIONS(7703), - [anon_sym_mutable] = ACTIONS(7703), - [anon_sym_constinit] = ACTIONS(7703), - [anon_sym_consteval] = ACTIONS(7703), - [anon_sym_alignas] = ACTIONS(7703), - [anon_sym__Alignas] = ACTIONS(7703), - [anon_sym_QMARK] = ACTIONS(7703), - [anon_sym_STAR_EQ] = ACTIONS(7703), - [anon_sym_SLASH_EQ] = ACTIONS(7703), - [anon_sym_PERCENT_EQ] = ACTIONS(7703), - [anon_sym_PLUS_EQ] = ACTIONS(7703), - [anon_sym_DASH_EQ] = ACTIONS(7703), - [anon_sym_LT_LT_EQ] = ACTIONS(7703), - [anon_sym_GT_GT_EQ] = ACTIONS(7703), - [anon_sym_AMP_EQ] = ACTIONS(7703), - [anon_sym_CARET_EQ] = ACTIONS(7703), - [anon_sym_PIPE_EQ] = ACTIONS(7703), - [anon_sym_and_eq] = ACTIONS(7703), - [anon_sym_or_eq] = ACTIONS(7703), - [anon_sym_xor_eq] = ACTIONS(7703), - [anon_sym_LT_EQ_GT] = ACTIONS(7703), - [anon_sym_or] = ACTIONS(7701), - [anon_sym_and] = ACTIONS(7701), - [anon_sym_bitor] = ACTIONS(7703), - [anon_sym_xor] = ACTIONS(7701), - [anon_sym_bitand] = ACTIONS(7703), - [anon_sym_not_eq] = ACTIONS(7703), - [anon_sym_DASH_DASH] = ACTIONS(7703), - [anon_sym_PLUS_PLUS] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(7701), - [anon_sym_DOT_STAR] = ACTIONS(7703), - [anon_sym_DASH_GT] = ACTIONS(7703), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7703), - [anon_sym_override] = ACTIONS(7703), - [anon_sym_requires] = ACTIONS(7703), - [anon_sym_COLON_RBRACK] = ACTIONS(7703), - }, - [STATE(2272)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), - [anon_sym_COMMA] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(7709), - [anon_sym_LPAREN2] = ACTIONS(7709), - [anon_sym_DASH] = ACTIONS(7707), - [anon_sym_PLUS] = ACTIONS(7707), - [anon_sym_STAR] = ACTIONS(7707), - [anon_sym_SLASH] = ACTIONS(7707), - [anon_sym_PERCENT] = ACTIONS(7707), - [anon_sym_PIPE_PIPE] = ACTIONS(7709), - [anon_sym_AMP_AMP] = ACTIONS(7709), - [anon_sym_PIPE] = ACTIONS(7707), - [anon_sym_CARET] = ACTIONS(7707), - [anon_sym_AMP] = ACTIONS(7707), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_BANG_EQ] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7707), - [anon_sym_GT_EQ] = ACTIONS(7709), - [anon_sym_LT_EQ] = ACTIONS(7707), - [anon_sym_LT] = ACTIONS(7707), - [anon_sym_LT_LT] = ACTIONS(7707), - [anon_sym_GT_GT] = ACTIONS(7707), - [anon_sym_SEMI] = ACTIONS(7709), - [anon_sym___extension__] = ACTIONS(7709), - [anon_sym___attribute__] = ACTIONS(7709), - [anon_sym___attribute] = ACTIONS(7707), - [anon_sym_COLON] = ACTIONS(7707), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7709), - [anon_sym_LBRACE] = ACTIONS(7709), - [anon_sym_RBRACE] = ACTIONS(7709), - [anon_sym_signed] = ACTIONS(7915), - [anon_sym_unsigned] = ACTIONS(7915), - [anon_sym_long] = ACTIONS(7915), - [anon_sym_short] = ACTIONS(7915), - [anon_sym_LBRACK] = ACTIONS(7709), - [anon_sym_EQ] = ACTIONS(7707), - [anon_sym_const] = ACTIONS(7707), - [anon_sym_constexpr] = ACTIONS(7709), - [anon_sym_volatile] = ACTIONS(7709), - [anon_sym_restrict] = ACTIONS(7709), - [anon_sym___restrict__] = ACTIONS(7709), - [anon_sym__Atomic] = ACTIONS(7709), - [anon_sym__Noreturn] = ACTIONS(7709), - [anon_sym_noreturn] = ACTIONS(7709), - [anon_sym__Nonnull] = ACTIONS(7709), - [anon_sym_mutable] = ACTIONS(7709), - [anon_sym_constinit] = ACTIONS(7709), - [anon_sym_consteval] = ACTIONS(7709), - [anon_sym_alignas] = ACTIONS(7709), - [anon_sym__Alignas] = ACTIONS(7709), - [anon_sym_QMARK] = ACTIONS(7709), - [anon_sym_STAR_EQ] = ACTIONS(7709), - [anon_sym_SLASH_EQ] = ACTIONS(7709), - [anon_sym_PERCENT_EQ] = ACTIONS(7709), - [anon_sym_PLUS_EQ] = ACTIONS(7709), - [anon_sym_DASH_EQ] = ACTIONS(7709), - [anon_sym_LT_LT_EQ] = ACTIONS(7709), - [anon_sym_GT_GT_EQ] = ACTIONS(7709), - [anon_sym_AMP_EQ] = ACTIONS(7709), - [anon_sym_CARET_EQ] = ACTIONS(7709), - [anon_sym_PIPE_EQ] = ACTIONS(7709), - [anon_sym_and_eq] = ACTIONS(7709), - [anon_sym_or_eq] = ACTIONS(7709), - [anon_sym_xor_eq] = ACTIONS(7709), - [anon_sym_LT_EQ_GT] = ACTIONS(7709), - [anon_sym_or] = ACTIONS(7707), - [anon_sym_and] = ACTIONS(7707), - [anon_sym_bitor] = ACTIONS(7709), - [anon_sym_xor] = ACTIONS(7707), - [anon_sym_bitand] = ACTIONS(7709), - [anon_sym_not_eq] = ACTIONS(7709), - [anon_sym_DASH_DASH] = ACTIONS(7709), - [anon_sym_PLUS_PLUS] = ACTIONS(7709), - [anon_sym_DOT] = ACTIONS(7707), - [anon_sym_DOT_STAR] = ACTIONS(7709), - [anon_sym_DASH_GT] = ACTIONS(7709), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7709), - [anon_sym_override] = ACTIONS(7709), - [anon_sym_requires] = ACTIONS(7709), - [anon_sym_COLON_RBRACK] = ACTIONS(7709), - }, - [STATE(2273)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), - [anon_sym_COMMA] = ACTIONS(7715), - [anon_sym_RPAREN] = ACTIONS(7715), - [anon_sym_LPAREN2] = ACTIONS(7715), - [anon_sym_DASH] = ACTIONS(7713), - [anon_sym_PLUS] = ACTIONS(7713), - [anon_sym_STAR] = ACTIONS(7713), - [anon_sym_SLASH] = ACTIONS(7713), - [anon_sym_PERCENT] = ACTIONS(7713), - [anon_sym_PIPE_PIPE] = ACTIONS(7715), - [anon_sym_AMP_AMP] = ACTIONS(7715), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_CARET] = ACTIONS(7713), - [anon_sym_AMP] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7715), - [anon_sym_BANG_EQ] = ACTIONS(7715), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_EQ] = ACTIONS(7715), - [anon_sym_LT_EQ] = ACTIONS(7713), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_LT_LT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7713), - [anon_sym_SEMI] = ACTIONS(7715), - [anon_sym___extension__] = ACTIONS(7715), - [anon_sym___attribute__] = ACTIONS(7715), - [anon_sym___attribute] = ACTIONS(7713), - [anon_sym_COLON] = ACTIONS(7713), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7715), - [anon_sym_LBRACE] = ACTIONS(7715), - [anon_sym_RBRACE] = ACTIONS(7715), - [anon_sym_signed] = ACTIONS(7845), - [anon_sym_unsigned] = ACTIONS(7845), - [anon_sym_long] = ACTIONS(7845), - [anon_sym_short] = ACTIONS(7845), - [anon_sym_LBRACK] = ACTIONS(7715), - [anon_sym_EQ] = ACTIONS(7713), - [anon_sym_const] = ACTIONS(7713), - [anon_sym_constexpr] = ACTIONS(7715), - [anon_sym_volatile] = ACTIONS(7715), - [anon_sym_restrict] = ACTIONS(7715), - [anon_sym___restrict__] = ACTIONS(7715), - [anon_sym__Atomic] = ACTIONS(7715), - [anon_sym__Noreturn] = ACTIONS(7715), - [anon_sym_noreturn] = ACTIONS(7715), - [anon_sym__Nonnull] = ACTIONS(7715), - [anon_sym_mutable] = ACTIONS(7715), - [anon_sym_constinit] = ACTIONS(7715), - [anon_sym_consteval] = ACTIONS(7715), - [anon_sym_alignas] = ACTIONS(7715), - [anon_sym__Alignas] = ACTIONS(7715), - [anon_sym_QMARK] = ACTIONS(7715), - [anon_sym_STAR_EQ] = ACTIONS(7715), - [anon_sym_SLASH_EQ] = ACTIONS(7715), - [anon_sym_PERCENT_EQ] = ACTIONS(7715), - [anon_sym_PLUS_EQ] = ACTIONS(7715), - [anon_sym_DASH_EQ] = ACTIONS(7715), - [anon_sym_LT_LT_EQ] = ACTIONS(7715), - [anon_sym_GT_GT_EQ] = ACTIONS(7715), - [anon_sym_AMP_EQ] = ACTIONS(7715), - [anon_sym_CARET_EQ] = ACTIONS(7715), - [anon_sym_PIPE_EQ] = ACTIONS(7715), - [anon_sym_and_eq] = ACTIONS(7715), - [anon_sym_or_eq] = ACTIONS(7715), - [anon_sym_xor_eq] = ACTIONS(7715), - [anon_sym_LT_EQ_GT] = ACTIONS(7715), - [anon_sym_or] = ACTIONS(7713), - [anon_sym_and] = ACTIONS(7713), - [anon_sym_bitor] = ACTIONS(7715), - [anon_sym_xor] = ACTIONS(7713), - [anon_sym_bitand] = ACTIONS(7715), - [anon_sym_not_eq] = ACTIONS(7715), - [anon_sym_DASH_DASH] = ACTIONS(7715), - [anon_sym_PLUS_PLUS] = ACTIONS(7715), - [anon_sym_DOT] = ACTIONS(7713), - [anon_sym_DOT_STAR] = ACTIONS(7715), - [anon_sym_DASH_GT] = ACTIONS(7715), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7715), - [anon_sym_override] = ACTIONS(7715), - [anon_sym_requires] = ACTIONS(7715), - [anon_sym_COLON_RBRACK] = ACTIONS(7715), - }, - [STATE(2274)] = { - [sym_attribute_specifier] = STATE(2316), - [sym_attribute_declaration] = STATE(4713), - [sym_type_qualifier] = STATE(2459), - [sym_alignas_qualifier] = STATE(2727), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym_ref_qualifier] = STATE(4042), - [sym__function_attributes_start] = STATE(4040), - [sym__function_exception_specification] = STATE(4567), - [sym__function_attributes_end] = STATE(6189), - [sym__function_postfix] = STATE(5415), - [sym_trailing_return_type] = STATE(5912), - [sym_noexcept] = STATE(4567), - [sym_throw_specifier] = STATE(4567), - [sym_requires_clause] = STATE(5415), - [aux_sym_type_definition_repeat1] = STATE(2316), - [aux_sym__type_definition_type_repeat1] = STATE(2459), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(7168), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6481), - [anon_sym_AMP] = ACTIONS(7171), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6481), - [anon_sym_GT_GT] = ACTIONS(6481), - [anon_sym_SEMI] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(7174), - [anon_sym___attribute__] = ACTIONS(7917), - [anon_sym___attribute] = ACTIONS(7920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(7182), - [anon_sym_constexpr] = ACTIONS(7174), - [anon_sym_volatile] = ACTIONS(7174), - [anon_sym_restrict] = ACTIONS(7174), - [anon_sym___restrict__] = ACTIONS(7174), - [anon_sym__Atomic] = ACTIONS(7174), - [anon_sym__Noreturn] = ACTIONS(7174), - [anon_sym_noreturn] = ACTIONS(7174), - [anon_sym__Nonnull] = ACTIONS(7174), - [anon_sym_mutable] = ACTIONS(7174), - [anon_sym_constinit] = ACTIONS(7174), - [anon_sym_consteval] = ACTIONS(7174), - [anon_sym_alignas] = ACTIONS(7184), - [anon_sym__Alignas] = ACTIONS(7184), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6481), - [anon_sym_and] = ACTIONS(6481), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6481), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(7923), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7219), - [anon_sym_override] = ACTIONS(7219), - [anon_sym_noexcept] = ACTIONS(7192), - [anon_sym_throw] = ACTIONS(7194), - [anon_sym_requires] = ACTIONS(7221), - }, - [STATE(2275)] = { - [sym_attribute_specifier] = STATE(2316), - [sym_attribute_declaration] = STATE(4713), - [sym_type_qualifier] = STATE(2459), - [sym_alignas_qualifier] = STATE(2727), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym_ref_qualifier] = STATE(4069), - [sym__function_attributes_start] = STATE(3980), - [sym__function_exception_specification] = STATE(4597), - [sym__function_attributes_end] = STATE(6160), - [sym__function_postfix] = STATE(5415), - [sym_trailing_return_type] = STATE(5893), - [sym_noexcept] = STATE(4597), - [sym_throw_specifier] = STATE(4597), - [sym_requires_clause] = STATE(5415), - [aux_sym_type_definition_repeat1] = STATE(2316), - [aux_sym__type_definition_type_repeat1] = STATE(2459), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(7168), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6481), - [anon_sym_AMP] = ACTIONS(7171), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6481), - [anon_sym_GT_GT] = ACTIONS(6481), - [anon_sym_SEMI] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(7174), - [anon_sym___attribute__] = ACTIONS(7917), - [anon_sym___attribute] = ACTIONS(7920), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(7182), - [anon_sym_constexpr] = ACTIONS(7174), - [anon_sym_volatile] = ACTIONS(7174), - [anon_sym_restrict] = ACTIONS(7174), - [anon_sym___restrict__] = ACTIONS(7174), - [anon_sym__Atomic] = ACTIONS(7174), - [anon_sym__Noreturn] = ACTIONS(7174), - [anon_sym_noreturn] = ACTIONS(7174), - [anon_sym__Nonnull] = ACTIONS(7174), - [anon_sym_mutable] = ACTIONS(7174), - [anon_sym_constinit] = ACTIONS(7174), - [anon_sym_consteval] = ACTIONS(7174), - [anon_sym_alignas] = ACTIONS(7184), - [anon_sym__Alignas] = ACTIONS(7184), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6481), - [anon_sym_and] = ACTIONS(6481), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6481), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(7923), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7189), - [anon_sym_override] = ACTIONS(7189), - [anon_sym_noexcept] = ACTIONS(7192), - [anon_sym_throw] = ACTIONS(7194), - [anon_sym_requires] = ACTIONS(7196), - }, - [STATE(2276)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), - [anon_sym_COMMA] = ACTIONS(7677), - [anon_sym_RPAREN] = ACTIONS(7677), - [anon_sym_LPAREN2] = ACTIONS(7677), - [anon_sym_DASH] = ACTIONS(7675), - [anon_sym_PLUS] = ACTIONS(7675), - [anon_sym_STAR] = ACTIONS(7675), - [anon_sym_SLASH] = ACTIONS(7675), - [anon_sym_PERCENT] = ACTIONS(7675), - [anon_sym_PIPE_PIPE] = ACTIONS(7677), - [anon_sym_AMP_AMP] = ACTIONS(7677), - [anon_sym_PIPE] = ACTIONS(7675), - [anon_sym_CARET] = ACTIONS(7675), - [anon_sym_AMP] = ACTIONS(7675), - [anon_sym_EQ_EQ] = ACTIONS(7677), - [anon_sym_BANG_EQ] = ACTIONS(7677), - [anon_sym_GT] = ACTIONS(7675), - [anon_sym_GT_EQ] = ACTIONS(7677), - [anon_sym_LT_EQ] = ACTIONS(7675), - [anon_sym_LT] = ACTIONS(7675), - [anon_sym_LT_LT] = ACTIONS(7675), - [anon_sym_GT_GT] = ACTIONS(7675), - [anon_sym_SEMI] = ACTIONS(7677), - [anon_sym___extension__] = ACTIONS(7677), - [anon_sym___attribute__] = ACTIONS(7677), - [anon_sym___attribute] = ACTIONS(7675), - [anon_sym_COLON] = ACTIONS(7675), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7677), - [anon_sym_LBRACE] = ACTIONS(7677), - [anon_sym_RBRACE] = ACTIONS(7677), - [anon_sym_signed] = ACTIONS(7845), - [anon_sym_unsigned] = ACTIONS(7845), - [anon_sym_long] = ACTIONS(7845), - [anon_sym_short] = ACTIONS(7845), - [anon_sym_LBRACK] = ACTIONS(7677), - [anon_sym_EQ] = ACTIONS(7675), - [anon_sym_const] = ACTIONS(7675), - [anon_sym_constexpr] = ACTIONS(7677), - [anon_sym_volatile] = ACTIONS(7677), - [anon_sym_restrict] = ACTIONS(7677), - [anon_sym___restrict__] = ACTIONS(7677), - [anon_sym__Atomic] = ACTIONS(7677), - [anon_sym__Noreturn] = ACTIONS(7677), - [anon_sym_noreturn] = ACTIONS(7677), - [anon_sym__Nonnull] = ACTIONS(7677), - [anon_sym_mutable] = ACTIONS(7677), - [anon_sym_constinit] = ACTIONS(7677), - [anon_sym_consteval] = ACTIONS(7677), - [anon_sym_alignas] = ACTIONS(7677), - [anon_sym__Alignas] = ACTIONS(7677), - [anon_sym_QMARK] = ACTIONS(7677), - [anon_sym_STAR_EQ] = ACTIONS(7677), - [anon_sym_SLASH_EQ] = ACTIONS(7677), - [anon_sym_PERCENT_EQ] = ACTIONS(7677), - [anon_sym_PLUS_EQ] = ACTIONS(7677), - [anon_sym_DASH_EQ] = ACTIONS(7677), - [anon_sym_LT_LT_EQ] = ACTIONS(7677), - [anon_sym_GT_GT_EQ] = ACTIONS(7677), - [anon_sym_AMP_EQ] = ACTIONS(7677), - [anon_sym_CARET_EQ] = ACTIONS(7677), - [anon_sym_PIPE_EQ] = ACTIONS(7677), - [anon_sym_and_eq] = ACTIONS(7677), - [anon_sym_or_eq] = ACTIONS(7677), - [anon_sym_xor_eq] = ACTIONS(7677), - [anon_sym_LT_EQ_GT] = ACTIONS(7677), - [anon_sym_or] = ACTIONS(7675), - [anon_sym_and] = ACTIONS(7675), - [anon_sym_bitor] = ACTIONS(7677), - [anon_sym_xor] = ACTIONS(7675), - [anon_sym_bitand] = ACTIONS(7677), - [anon_sym_not_eq] = ACTIONS(7677), - [anon_sym_DASH_DASH] = ACTIONS(7677), - [anon_sym_PLUS_PLUS] = ACTIONS(7677), - [anon_sym_DOT] = ACTIONS(7675), - [anon_sym_DOT_STAR] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(7677), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7677), - [anon_sym_override] = ACTIONS(7677), - [anon_sym_requires] = ACTIONS(7677), - [anon_sym_COLON_RBRACK] = ACTIONS(7677), - }, - [STATE(2277)] = { - [sym_attribute_specifier] = STATE(3154), - [sym_attribute_declaration] = STATE(6403), - [sym_type_qualifier] = STATE(3731), - [sym_alignas_qualifier] = STATE(3991), - [sym_gnu_asm_expression] = STATE(9096), - [sym_virtual_specifier] = STATE(6501), - [sym_ref_qualifier] = STATE(4144), - [sym__function_attributes_start] = STATE(4034), - [sym__function_exception_specification] = STATE(4574), - [sym__function_attributes_end] = STATE(6281), - [sym__function_postfix] = STATE(6715), - [sym_trailing_return_type] = STATE(6341), - [sym_noexcept] = STATE(4574), - [sym_throw_specifier] = STATE(4574), - [sym_requires_clause] = STATE(6715), - [aux_sym_type_definition_repeat1] = STATE(3154), - [aux_sym__type_definition_type_repeat1] = STATE(3731), - [aux_sym_attributed_declarator_repeat1] = STATE(6403), - [aux_sym__function_postfix_repeat1] = STATE(6501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(7808), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6481), - [anon_sym_AMP] = ACTIONS(7811), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6479), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6481), - [anon_sym_GT_GT] = ACTIONS(6479), - [anon_sym___extension__] = ACTIONS(7814), - [anon_sym___attribute__] = ACTIONS(7816), - [anon_sym___attribute] = ACTIONS(7818), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7820), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_const] = ACTIONS(7822), - [anon_sym_constexpr] = ACTIONS(7814), - [anon_sym_volatile] = ACTIONS(7814), - [anon_sym_restrict] = ACTIONS(7814), - [anon_sym___restrict__] = ACTIONS(7814), - [anon_sym__Atomic] = ACTIONS(7814), - [anon_sym__Noreturn] = ACTIONS(7814), - [anon_sym_noreturn] = ACTIONS(7814), - [anon_sym__Nonnull] = ACTIONS(7814), - [anon_sym_mutable] = ACTIONS(7814), - [anon_sym_constinit] = ACTIONS(7814), - [anon_sym_consteval] = ACTIONS(7814), - [anon_sym_alignas] = ACTIONS(7824), - [anon_sym__Alignas] = ACTIONS(7824), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6481), - [anon_sym_and] = ACTIONS(6481), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6481), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(7826), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7926), - [anon_sym_override] = ACTIONS(7926), - [anon_sym_GT2] = ACTIONS(6481), - [anon_sym_noexcept] = ACTIONS(7831), - [anon_sym_throw] = ACTIONS(7833), - [anon_sym_requires] = ACTIONS(7929), - }, - [STATE(2278)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_RPAREN] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7717), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7717), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7717), - [anon_sym_GT_GT] = ACTIONS(7717), - [anon_sym_SEMI] = ACTIONS(7719), - [anon_sym___extension__] = ACTIONS(7719), - [anon_sym___attribute__] = ACTIONS(7719), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_COLON] = ACTIONS(7717), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7719), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_RBRACE] = ACTIONS(7719), - [anon_sym_signed] = ACTIONS(7905), - [anon_sym_unsigned] = ACTIONS(7905), - [anon_sym_long] = ACTIONS(7905), - [anon_sym_short] = ACTIONS(7905), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(7717), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7719), - [anon_sym_volatile] = ACTIONS(7719), - [anon_sym_restrict] = ACTIONS(7719), - [anon_sym___restrict__] = ACTIONS(7719), - [anon_sym__Atomic] = ACTIONS(7719), - [anon_sym__Noreturn] = ACTIONS(7719), - [anon_sym_noreturn] = ACTIONS(7719), - [anon_sym__Nonnull] = ACTIONS(7719), - [anon_sym_mutable] = ACTIONS(7719), - [anon_sym_constinit] = ACTIONS(7719), - [anon_sym_consteval] = ACTIONS(7719), - [anon_sym_alignas] = ACTIONS(7719), - [anon_sym__Alignas] = ACTIONS(7719), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_STAR_EQ] = ACTIONS(7719), - [anon_sym_SLASH_EQ] = ACTIONS(7719), - [anon_sym_PERCENT_EQ] = ACTIONS(7719), - [anon_sym_PLUS_EQ] = ACTIONS(7719), - [anon_sym_DASH_EQ] = ACTIONS(7719), - [anon_sym_LT_LT_EQ] = ACTIONS(7719), - [anon_sym_GT_GT_EQ] = ACTIONS(7719), - [anon_sym_AMP_EQ] = ACTIONS(7719), - [anon_sym_CARET_EQ] = ACTIONS(7719), - [anon_sym_PIPE_EQ] = ACTIONS(7719), - [anon_sym_and_eq] = ACTIONS(7719), - [anon_sym_or_eq] = ACTIONS(7719), - [anon_sym_xor_eq] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7717), - [anon_sym_and] = ACTIONS(7717), - [anon_sym_bitor] = ACTIONS(7719), - [anon_sym_xor] = ACTIONS(7717), - [anon_sym_bitand] = ACTIONS(7719), - [anon_sym_not_eq] = ACTIONS(7719), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7719), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7719), - [anon_sym_override] = ACTIONS(7719), - [anon_sym_requires] = ACTIONS(7719), - [anon_sym_COLON_RBRACK] = ACTIONS(7719), - }, - [STATE(2279)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), - [anon_sym_COMMA] = ACTIONS(7683), - [anon_sym_RPAREN] = ACTIONS(7683), - [anon_sym_LPAREN2] = ACTIONS(7683), - [anon_sym_DASH] = ACTIONS(7681), - [anon_sym_PLUS] = ACTIONS(7681), - [anon_sym_STAR] = ACTIONS(7681), - [anon_sym_SLASH] = ACTIONS(7681), - [anon_sym_PERCENT] = ACTIONS(7681), - [anon_sym_PIPE_PIPE] = ACTIONS(7683), - [anon_sym_AMP_AMP] = ACTIONS(7683), - [anon_sym_PIPE] = ACTIONS(7681), - [anon_sym_CARET] = ACTIONS(7681), - [anon_sym_AMP] = ACTIONS(7681), - [anon_sym_EQ_EQ] = ACTIONS(7683), - [anon_sym_BANG_EQ] = ACTIONS(7683), - [anon_sym_GT] = ACTIONS(7681), - [anon_sym_GT_EQ] = ACTIONS(7683), - [anon_sym_LT_EQ] = ACTIONS(7681), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym_SEMI] = ACTIONS(7683), - [anon_sym___extension__] = ACTIONS(7683), - [anon_sym___attribute__] = ACTIONS(7683), - [anon_sym___attribute] = ACTIONS(7681), - [anon_sym_COLON] = ACTIONS(7681), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7683), - [anon_sym_LBRACE] = ACTIONS(7683), - [anon_sym_RBRACE] = ACTIONS(7683), - [anon_sym_signed] = ACTIONS(7845), - [anon_sym_unsigned] = ACTIONS(7845), - [anon_sym_long] = ACTIONS(7845), - [anon_sym_short] = ACTIONS(7845), - [anon_sym_LBRACK] = ACTIONS(7683), - [anon_sym_EQ] = ACTIONS(7681), - [anon_sym_const] = ACTIONS(7681), - [anon_sym_constexpr] = ACTIONS(7683), - [anon_sym_volatile] = ACTIONS(7683), - [anon_sym_restrict] = ACTIONS(7683), - [anon_sym___restrict__] = ACTIONS(7683), - [anon_sym__Atomic] = ACTIONS(7683), - [anon_sym__Noreturn] = ACTIONS(7683), - [anon_sym_noreturn] = ACTIONS(7683), - [anon_sym__Nonnull] = ACTIONS(7683), - [anon_sym_mutable] = ACTIONS(7683), - [anon_sym_constinit] = ACTIONS(7683), - [anon_sym_consteval] = ACTIONS(7683), - [anon_sym_alignas] = ACTIONS(7683), - [anon_sym__Alignas] = ACTIONS(7683), - [anon_sym_QMARK] = ACTIONS(7683), - [anon_sym_STAR_EQ] = ACTIONS(7683), - [anon_sym_SLASH_EQ] = ACTIONS(7683), - [anon_sym_PERCENT_EQ] = ACTIONS(7683), - [anon_sym_PLUS_EQ] = ACTIONS(7683), - [anon_sym_DASH_EQ] = ACTIONS(7683), - [anon_sym_LT_LT_EQ] = ACTIONS(7683), - [anon_sym_GT_GT_EQ] = ACTIONS(7683), - [anon_sym_AMP_EQ] = ACTIONS(7683), - [anon_sym_CARET_EQ] = ACTIONS(7683), - [anon_sym_PIPE_EQ] = ACTIONS(7683), - [anon_sym_and_eq] = ACTIONS(7683), - [anon_sym_or_eq] = ACTIONS(7683), - [anon_sym_xor_eq] = ACTIONS(7683), - [anon_sym_LT_EQ_GT] = ACTIONS(7683), - [anon_sym_or] = ACTIONS(7681), - [anon_sym_and] = ACTIONS(7681), - [anon_sym_bitor] = ACTIONS(7683), - [anon_sym_xor] = ACTIONS(7681), - [anon_sym_bitand] = ACTIONS(7683), - [anon_sym_not_eq] = ACTIONS(7683), - [anon_sym_DASH_DASH] = ACTIONS(7683), - [anon_sym_PLUS_PLUS] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7681), - [anon_sym_DOT_STAR] = ACTIONS(7683), - [anon_sym_DASH_GT] = ACTIONS(7683), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7683), - [anon_sym_override] = ACTIONS(7683), - [anon_sym_requires] = ACTIONS(7683), - [anon_sym_COLON_RBRACK] = ACTIONS(7683), - }, - [STATE(2280)] = { - [sym__abstract_declarator] = STATE(4431), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2256), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1957), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2256), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_RPAREN] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym_SEMI] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(7393), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7391), - [anon_sym_RBRACE] = ACTIONS(7391), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7391), - [anon_sym_or_eq] = ACTIONS(7391), - [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7391), - }, - [STATE(2281)] = { - [sym_attribute_specifier] = STATE(3174), - [sym_attribute_declaration] = STATE(6393), - [sym_type_qualifier] = STATE(3708), - [sym_alignas_qualifier] = STATE(4026), - [sym_gnu_asm_expression] = STATE(9133), - [sym_virtual_specifier] = STATE(6457), - [sym_ref_qualifier] = STATE(4067), - [sym__function_attributes_start] = STATE(4005), - [sym__function_exception_specification] = STATE(4583), - [sym__function_attributes_end] = STATE(6279), - [sym__function_postfix] = STATE(6613), - [sym_trailing_return_type] = STATE(6350), - [sym_noexcept] = STATE(4583), - [sym_throw_specifier] = STATE(4583), - [sym_requires_clause] = STATE(6613), - [aux_sym_type_definition_repeat1] = STATE(3174), - [aux_sym__type_definition_type_repeat1] = STATE(3708), - [aux_sym_attributed_declarator_repeat1] = STATE(6393), - [aux_sym__function_postfix_repeat1] = STATE(6457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6481), - [anon_sym_COMMA] = ACTIONS(6481), - [anon_sym_LPAREN2] = ACTIONS(6481), - [anon_sym_DASH] = ACTIONS(6479), - [anon_sym_PLUS] = ACTIONS(6479), - [anon_sym_STAR] = ACTIONS(6481), - [anon_sym_SLASH] = ACTIONS(6479), - [anon_sym_PERCENT] = ACTIONS(6481), - [anon_sym_PIPE_PIPE] = ACTIONS(6481), - [anon_sym_AMP_AMP] = ACTIONS(7876), - [anon_sym_PIPE] = ACTIONS(6479), - [anon_sym_CARET] = ACTIONS(6481), - [anon_sym_AMP] = ACTIONS(7879), - [anon_sym_EQ_EQ] = ACTIONS(6481), - [anon_sym_BANG_EQ] = ACTIONS(6481), - [anon_sym_GT] = ACTIONS(6479), - [anon_sym_GT_EQ] = ACTIONS(6481), - [anon_sym_LT_EQ] = ACTIONS(6479), - [anon_sym_LT] = ACTIONS(6479), - [anon_sym_LT_LT] = ACTIONS(6481), - [anon_sym_GT_GT] = ACTIONS(6481), - [anon_sym___extension__] = ACTIONS(7882), - [anon_sym___attribute__] = ACTIONS(7884), - [anon_sym___attribute] = ACTIONS(7886), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7888), - [anon_sym_LBRACK] = ACTIONS(6479), - [anon_sym_RBRACK] = ACTIONS(6481), - [anon_sym_const] = ACTIONS(7890), - [anon_sym_constexpr] = ACTIONS(7882), - [anon_sym_volatile] = ACTIONS(7882), - [anon_sym_restrict] = ACTIONS(7882), - [anon_sym___restrict__] = ACTIONS(7882), - [anon_sym__Atomic] = ACTIONS(7882), - [anon_sym__Noreturn] = ACTIONS(7882), - [anon_sym_noreturn] = ACTIONS(7882), - [anon_sym__Nonnull] = ACTIONS(7882), - [anon_sym_mutable] = ACTIONS(7882), - [anon_sym_constinit] = ACTIONS(7882), - [anon_sym_consteval] = ACTIONS(7882), - [anon_sym_alignas] = ACTIONS(7892), - [anon_sym__Alignas] = ACTIONS(7892), - [anon_sym_QMARK] = ACTIONS(6481), - [anon_sym_LT_EQ_GT] = ACTIONS(6481), - [anon_sym_or] = ACTIONS(6481), - [anon_sym_and] = ACTIONS(6481), - [anon_sym_bitor] = ACTIONS(6481), - [anon_sym_xor] = ACTIONS(6481), - [anon_sym_bitand] = ACTIONS(6481), - [anon_sym_not_eq] = ACTIONS(6481), - [anon_sym_DASH_DASH] = ACTIONS(6481), - [anon_sym_PLUS_PLUS] = ACTIONS(6481), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(6479), - [anon_sym_DOT_STAR] = ACTIONS(6481), - [anon_sym_DASH_GT] = ACTIONS(7894), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7932), - [anon_sym_override] = ACTIONS(7932), - [anon_sym_noexcept] = ACTIONS(7899), - [anon_sym_throw] = ACTIONS(7901), - [anon_sym_requires] = ACTIONS(7935), - }, - [STATE(2282)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), - [anon_sym_COMMA] = ACTIONS(7557), - [anon_sym_RPAREN] = ACTIONS(7557), - [anon_sym_LPAREN2] = ACTIONS(7557), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_STAR] = ACTIONS(7555), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_PERCENT] = ACTIONS(7555), - [anon_sym_PIPE_PIPE] = ACTIONS(7557), - [anon_sym_AMP_AMP] = ACTIONS(7557), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_CARET] = ACTIONS(7555), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_EQ_EQ] = ACTIONS(7557), - [anon_sym_BANG_EQ] = ACTIONS(7557), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7557), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_LT_LT] = ACTIONS(7555), - [anon_sym_GT_GT] = ACTIONS(7555), - [anon_sym_SEMI] = ACTIONS(7557), - [anon_sym___extension__] = ACTIONS(7557), - [anon_sym___attribute__] = ACTIONS(7557), - [anon_sym___attribute] = ACTIONS(7555), - [anon_sym_COLON] = ACTIONS(7555), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7557), - [anon_sym_LBRACE] = ACTIONS(7557), - [anon_sym_RBRACE] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(7938), - [anon_sym_unsigned] = ACTIONS(7938), - [anon_sym_long] = ACTIONS(7938), - [anon_sym_short] = ACTIONS(7938), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_EQ] = ACTIONS(7555), - [anon_sym_const] = ACTIONS(7555), - [anon_sym_constexpr] = ACTIONS(7557), - [anon_sym_volatile] = ACTIONS(7557), - [anon_sym_restrict] = ACTIONS(7557), - [anon_sym___restrict__] = ACTIONS(7557), - [anon_sym__Atomic] = ACTIONS(7557), - [anon_sym__Noreturn] = ACTIONS(7557), - [anon_sym_noreturn] = ACTIONS(7557), - [anon_sym__Nonnull] = ACTIONS(7557), - [anon_sym_mutable] = ACTIONS(7557), - [anon_sym_constinit] = ACTIONS(7557), - [anon_sym_consteval] = ACTIONS(7557), - [anon_sym_alignas] = ACTIONS(7557), - [anon_sym__Alignas] = ACTIONS(7557), - [anon_sym_QMARK] = ACTIONS(7557), - [anon_sym_STAR_EQ] = ACTIONS(7557), - [anon_sym_SLASH_EQ] = ACTIONS(7557), - [anon_sym_PERCENT_EQ] = ACTIONS(7557), - [anon_sym_PLUS_EQ] = ACTIONS(7557), - [anon_sym_DASH_EQ] = ACTIONS(7557), - [anon_sym_LT_LT_EQ] = ACTIONS(7557), - [anon_sym_GT_GT_EQ] = ACTIONS(7557), - [anon_sym_AMP_EQ] = ACTIONS(7557), - [anon_sym_CARET_EQ] = ACTIONS(7557), - [anon_sym_PIPE_EQ] = ACTIONS(7557), - [anon_sym_and_eq] = ACTIONS(7557), - [anon_sym_or_eq] = ACTIONS(7557), - [anon_sym_xor_eq] = ACTIONS(7557), - [anon_sym_LT_EQ_GT] = ACTIONS(7557), - [anon_sym_or] = ACTIONS(7555), - [anon_sym_and] = ACTIONS(7555), - [anon_sym_bitor] = ACTIONS(7557), - [anon_sym_xor] = ACTIONS(7555), - [anon_sym_bitand] = ACTIONS(7557), - [anon_sym_not_eq] = ACTIONS(7557), - [anon_sym_DASH_DASH] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7557), - [anon_sym_DOT] = ACTIONS(7555), - [anon_sym_DOT_STAR] = ACTIONS(7557), - [anon_sym_DASH_GT] = ACTIONS(7557), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_requires] = ACTIONS(7557), - [anon_sym_COLON_RBRACK] = ACTIONS(7557), - }, - [STATE(2283)] = { - [sym_type_qualifier] = STATE(2285), - [sym_alignas_qualifier] = STATE(2423), - [aux_sym__type_definition_type_repeat1] = STATE(2285), - [aux_sym_sized_type_specifier_repeat1] = STATE(2383), - [sym_identifier] = ACTIONS(7940), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(7942), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(7945), - [anon_sym_unsigned] = ACTIONS(7945), - [anon_sym_long] = ACTIONS(7945), - [anon_sym_short] = ACTIONS(7945), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(7942), - [anon_sym_constexpr] = ACTIONS(7942), - [anon_sym_volatile] = ACTIONS(7942), - [anon_sym_restrict] = ACTIONS(7942), - [anon_sym___restrict__] = ACTIONS(7942), - [anon_sym__Atomic] = ACTIONS(7942), - [anon_sym__Noreturn] = ACTIONS(7942), - [anon_sym_noreturn] = ACTIONS(7942), - [anon_sym__Nonnull] = ACTIONS(7942), - [anon_sym_mutable] = ACTIONS(7942), - [anon_sym_constinit] = ACTIONS(7942), - [anon_sym_consteval] = ACTIONS(7942), - [anon_sym_alignas] = ACTIONS(7947), - [anon_sym__Alignas] = ACTIONS(7947), - [sym_primitive_type] = ACTIONS(7950), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7251), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_GT2] = ACTIONS(7249), - [anon_sym_requires] = ACTIONS(7251), - }, - [STATE(2284)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), - [anon_sym_COMMA] = ACTIONS(7725), - [anon_sym_RPAREN] = ACTIONS(7725), - [anon_sym_LPAREN2] = ACTIONS(7725), - [anon_sym_DASH] = ACTIONS(7723), - [anon_sym_PLUS] = ACTIONS(7723), - [anon_sym_STAR] = ACTIONS(7723), - [anon_sym_SLASH] = ACTIONS(7723), - [anon_sym_PERCENT] = ACTIONS(7723), - [anon_sym_PIPE_PIPE] = ACTIONS(7725), - [anon_sym_AMP_AMP] = ACTIONS(7725), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_CARET] = ACTIONS(7723), - [anon_sym_AMP] = ACTIONS(7723), - [anon_sym_EQ_EQ] = ACTIONS(7725), - [anon_sym_BANG_EQ] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_EQ] = ACTIONS(7725), - [anon_sym_LT_EQ] = ACTIONS(7723), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_LT_LT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7723), - [anon_sym_SEMI] = ACTIONS(7725), - [anon_sym___extension__] = ACTIONS(7725), - [anon_sym___attribute__] = ACTIONS(7725), - [anon_sym___attribute] = ACTIONS(7723), - [anon_sym_COLON] = ACTIONS(7723), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7725), - [anon_sym_LBRACE] = ACTIONS(7725), - [anon_sym_RBRACE] = ACTIONS(7725), - [anon_sym_signed] = ACTIONS(7845), - [anon_sym_unsigned] = ACTIONS(7845), - [anon_sym_long] = ACTIONS(7845), - [anon_sym_short] = ACTIONS(7845), - [anon_sym_LBRACK] = ACTIONS(7725), - [anon_sym_EQ] = ACTIONS(7723), - [anon_sym_const] = ACTIONS(7723), - [anon_sym_constexpr] = ACTIONS(7725), - [anon_sym_volatile] = ACTIONS(7725), - [anon_sym_restrict] = ACTIONS(7725), - [anon_sym___restrict__] = ACTIONS(7725), - [anon_sym__Atomic] = ACTIONS(7725), - [anon_sym__Noreturn] = ACTIONS(7725), - [anon_sym_noreturn] = ACTIONS(7725), - [anon_sym__Nonnull] = ACTIONS(7725), - [anon_sym_mutable] = ACTIONS(7725), - [anon_sym_constinit] = ACTIONS(7725), - [anon_sym_consteval] = ACTIONS(7725), - [anon_sym_alignas] = ACTIONS(7725), - [anon_sym__Alignas] = ACTIONS(7725), - [anon_sym_QMARK] = ACTIONS(7725), - [anon_sym_STAR_EQ] = ACTIONS(7725), - [anon_sym_SLASH_EQ] = ACTIONS(7725), - [anon_sym_PERCENT_EQ] = ACTIONS(7725), - [anon_sym_PLUS_EQ] = ACTIONS(7725), - [anon_sym_DASH_EQ] = ACTIONS(7725), - [anon_sym_LT_LT_EQ] = ACTIONS(7725), - [anon_sym_GT_GT_EQ] = ACTIONS(7725), - [anon_sym_AMP_EQ] = ACTIONS(7725), - [anon_sym_CARET_EQ] = ACTIONS(7725), - [anon_sym_PIPE_EQ] = ACTIONS(7725), - [anon_sym_and_eq] = ACTIONS(7725), - [anon_sym_or_eq] = ACTIONS(7725), - [anon_sym_xor_eq] = ACTIONS(7725), - [anon_sym_LT_EQ_GT] = ACTIONS(7725), - [anon_sym_or] = ACTIONS(7723), - [anon_sym_and] = ACTIONS(7723), - [anon_sym_bitor] = ACTIONS(7725), - [anon_sym_xor] = ACTIONS(7723), - [anon_sym_bitand] = ACTIONS(7725), - [anon_sym_not_eq] = ACTIONS(7725), - [anon_sym_DASH_DASH] = ACTIONS(7725), - [anon_sym_PLUS_PLUS] = ACTIONS(7725), - [anon_sym_DOT] = ACTIONS(7723), - [anon_sym_DOT_STAR] = ACTIONS(7725), - [anon_sym_DASH_GT] = ACTIONS(7725), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7725), - [anon_sym_override] = ACTIONS(7725), - [anon_sym_requires] = ACTIONS(7725), - [anon_sym_COLON_RBRACK] = ACTIONS(7725), - }, - [STATE(2285)] = { - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [aux_sym_sized_type_specifier_repeat1] = STATE(2508), - [sym_identifier] = ACTIONS(7952), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7207), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(7954), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(7957), - [anon_sym_unsigned] = ACTIONS(7957), - [anon_sym_long] = ACTIONS(7957), - [anon_sym_short] = ACTIONS(7957), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(7954), - [anon_sym_constexpr] = ACTIONS(7954), - [anon_sym_volatile] = ACTIONS(7954), - [anon_sym_restrict] = ACTIONS(7954), - [anon_sym___restrict__] = ACTIONS(7954), - [anon_sym__Atomic] = ACTIONS(7954), - [anon_sym__Noreturn] = ACTIONS(7954), - [anon_sym_noreturn] = ACTIONS(7954), - [anon_sym__Nonnull] = ACTIONS(7954), - [anon_sym_mutable] = ACTIONS(7954), - [anon_sym_constinit] = ACTIONS(7954), - [anon_sym_consteval] = ACTIONS(7954), - [anon_sym_alignas] = ACTIONS(7959), - [anon_sym__Alignas] = ACTIONS(7959), - [sym_primitive_type] = ACTIONS(7962), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7207), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_GT2] = ACTIONS(7205), - [anon_sym_requires] = ACTIONS(7207), - }, - [STATE(2286)] = { - [sym__abstract_declarator] = STATE(4538), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1957), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), - [anon_sym_RBRACE] = ACTIONS(6823), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6823), - }, - [STATE(2287)] = { - [sym__abstract_declarator] = STATE(4516), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1957), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_RPAREN] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(6929), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(6931), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(6933), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym_SEMI] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym_COLON] = ACTIONS(7353), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7355), - [anon_sym_RBRACE] = ACTIONS(7355), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7355), - [anon_sym_or_eq] = ACTIONS(7355), - [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7355), - }, - [STATE(2288)] = { - [sym__abstract_declarator] = STATE(4489), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1976), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(6923), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(6925), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(6927), - [anon_sym_EQ_EQ] = ACTIONS(7345), - [anon_sym_BANG_EQ] = ACTIONS(7345), - [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ] = ACTIONS(7347), - [anon_sym_LT] = ACTIONS(7347), - [anon_sym_LT_LT] = ACTIONS(7347), - [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym_SEMI] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(7345), - [anon_sym___attribute] = ACTIONS(7347), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7345), - [anon_sym_STAR_EQ] = ACTIONS(7345), - [anon_sym_SLASH_EQ] = ACTIONS(7345), - [anon_sym_PERCENT_EQ] = ACTIONS(7345), - [anon_sym_PLUS_EQ] = ACTIONS(7345), - [anon_sym_DASH_EQ] = ACTIONS(7345), - [anon_sym_LT_LT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_EQ] = ACTIONS(7345), - [anon_sym_AMP_EQ] = ACTIONS(7345), - [anon_sym_CARET_EQ] = ACTIONS(7345), - [anon_sym_PIPE_EQ] = ACTIONS(7345), - [anon_sym_and_eq] = ACTIONS(7345), - [anon_sym_or_eq] = ACTIONS(7345), - [anon_sym_xor_eq] = ACTIONS(7345), - [anon_sym_LT_EQ_GT] = ACTIONS(7345), - [anon_sym_or] = ACTIONS(7347), - [anon_sym_and] = ACTIONS(7347), - [anon_sym_bitor] = ACTIONS(7345), - [anon_sym_xor] = ACTIONS(7347), - [anon_sym_bitand] = ACTIONS(7345), - [anon_sym_not_eq] = ACTIONS(7345), - [anon_sym_DASH_DASH] = ACTIONS(7345), - [anon_sym_PLUS_PLUS] = ACTIONS(7345), - [anon_sym_DOT] = ACTIONS(7347), - [anon_sym_DOT_STAR] = ACTIONS(7345), - [anon_sym_DASH_GT] = ACTIONS(7345), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7345), - [anon_sym_override] = ACTIONS(7345), - [anon_sym_requires] = ACTIONS(7345), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, [STATE(2289)] = { - [sym_decltype_auto] = STATE(2952), - [sym_template_argument_list] = STATE(2494), - [aux_sym_sized_type_specifier_repeat1] = STATE(2419), - [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(5636), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5636), - [anon_sym_SLASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5636), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5636), - [anon_sym_CARET] = ACTIONS(5636), - [anon_sym_AMP] = ACTIONS(5636), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5636), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5636), - [anon_sym_LT] = ACTIONS(7964), - [anon_sym_LT_LT] = ACTIONS(5636), - [anon_sym_GT_GT] = ACTIONS(5636), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(6971), - [anon_sym_unsigned] = ACTIONS(6971), - [anon_sym_long] = ACTIONS(6971), - [anon_sym_short] = ACTIONS(6971), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [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(5643), - [anon_sym_or_eq] = ACTIONS(5643), - [anon_sym_xor_eq] = ACTIONS(5643), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5636), - [anon_sym_and] = ACTIONS(5636), - [anon_sym_bitor] = ACTIONS(5643), - [anon_sym_xor] = ACTIONS(5636), - [anon_sym_bitand] = ACTIONS(5643), - [anon_sym_not_eq] = ACTIONS(5643), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6973), - [anon_sym_decltype] = ACTIONS(6975), - [anon_sym_final] = ACTIONS(5643), - [anon_sym_override] = ACTIONS(5643), - [anon_sym_requires] = ACTIONS(5643), - [anon_sym_DASH_GT_STAR] = ACTIONS(5643), - }, - [STATE(2290)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9733), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9733), - [sym_optional_parameter_declaration] = STATE(9733), - [sym_variadic_parameter_declaration] = STATE(9733), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6553), - [anon_sym_RPAREN] = ACTIONS(6555), + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9757), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9757), + [sym_optional_parameter_declaration] = STATE(9757), + [sym_variadic_parameter_declaration] = STATE(9757), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6502), + [anon_sym_RPAREN] = ACTIONS(6504), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -338975,311 +338769,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), - }, - [STATE(2291)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(2563), - [sym__function_attributes_end] = STATE(3895), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3076), - [sym_noexcept] = STATE(2563), - [sym_throw_specifier] = STATE(2563), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(7968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), - [anon_sym_RBRACE] = ACTIONS(7966), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7970), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7973), - [anon_sym_override] = ACTIONS(7973), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(7976), - [anon_sym_COLON_RBRACK] = ACTIONS(7966), - }, - [STATE(2292)] = { - [sym__abstract_declarator] = STATE(4560), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2295), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1972), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_RPAREN] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(7008), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7012), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7391), - [anon_sym_or_eq] = ACTIONS(7391), - [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7393), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), - [anon_sym_DASH_GT_STAR] = ACTIONS(7391), - }, - [STATE(2293)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(2541), - [sym__function_attributes_end] = STATE(3914), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3029), - [sym_noexcept] = STATE(2541), - [sym_throw_specifier] = STATE(2541), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(7968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), - [anon_sym_RBRACE] = ACTIONS(7966), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7970), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(6563), - [anon_sym_COLON_RBRACK] = ACTIONS(7966), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(2294)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9768), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9768), - [sym_optional_parameter_declaration] = STATE(9768), - [sym_variadic_parameter_declaration] = STATE(9768), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6557), - [anon_sym_RPAREN] = ACTIONS(6559), + [STATE(2290)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5413), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(10303), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_type_parameter_declaration] = STATE(10303), + [sym_variadic_type_parameter_declaration] = STATE(10303), + [sym_optional_type_parameter_declaration] = STATE(10303), + [sym_template_template_parameter_declaration] = STATE(10303), + [sym_optional_parameter_declaration] = STATE(10303), + [sym_variadic_parameter_declaration] = STATE(10303), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -339307,643 +338853,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(7787), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(7789), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), - }, - [STATE(2295)] = { - [sym__abstract_declarator] = STATE(4571), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1972), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_RPAREN] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(7008), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(7012), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7349), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), - [anon_sym_DASH_GT_STAR] = ACTIONS(7351), - }, - [STATE(2296)] = { - [sym__abstract_declarator] = STATE(4599), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2298), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1972), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2298), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7008), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7012), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7341), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - [anon_sym_DASH_GT_STAR] = ACTIONS(7343), - }, - [STATE(2297)] = { - [sym__abstract_declarator] = STATE(4552), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1972), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7008), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7012), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6821), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - [anon_sym_DASH_GT_STAR] = ACTIONS(6823), - }, - [STATE(2298)] = { - [sym__abstract_declarator] = STATE(4602), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1972), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_RPAREN] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(7008), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(7012), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7355), - [anon_sym_or_eq] = ACTIONS(7355), - [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7353), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), - [anon_sym_DASH_GT_STAR] = ACTIONS(7355), - }, - [STATE(2299)] = { - [sym__abstract_declarator] = STATE(4553), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1972), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(7008), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7010), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7012), - [anon_sym_EQ_EQ] = ACTIONS(7345), - [anon_sym_BANG_EQ] = ACTIONS(7345), - [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ] = ACTIONS(7347), - [anon_sym_LT] = ACTIONS(7347), - [anon_sym_LT_LT] = ACTIONS(7347), - [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7345), - [anon_sym_STAR_EQ] = ACTIONS(7345), - [anon_sym_SLASH_EQ] = ACTIONS(7345), - [anon_sym_PERCENT_EQ] = ACTIONS(7345), - [anon_sym_PLUS_EQ] = ACTIONS(7345), - [anon_sym_DASH_EQ] = ACTIONS(7345), - [anon_sym_LT_LT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_EQ] = ACTIONS(7345), - [anon_sym_AMP_EQ] = ACTIONS(7345), - [anon_sym_CARET_EQ] = ACTIONS(7345), - [anon_sym_PIPE_EQ] = ACTIONS(7345), - [anon_sym_and_eq] = ACTIONS(7345), - [anon_sym_or_eq] = ACTIONS(7345), - [anon_sym_xor_eq] = ACTIONS(7345), - [anon_sym_LT_EQ_GT] = ACTIONS(7345), - [anon_sym_or] = ACTIONS(7347), - [anon_sym_and] = ACTIONS(7347), - [anon_sym_bitor] = ACTIONS(7345), - [anon_sym_xor] = ACTIONS(7347), - [anon_sym_bitand] = ACTIONS(7345), - [anon_sym_not_eq] = ACTIONS(7345), - [anon_sym_DASH_DASH] = ACTIONS(7345), - [anon_sym_PLUS_PLUS] = ACTIONS(7345), - [anon_sym_DOT] = ACTIONS(7347), - [anon_sym_DOT_STAR] = ACTIONS(7345), - [anon_sym_DASH_GT] = ACTIONS(7347), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7345), - [anon_sym_override] = ACTIONS(7345), - [anon_sym_requires] = ACTIONS(7345), - [anon_sym_DASH_GT_STAR] = ACTIONS(7345), - }, - [STATE(2300)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_RPAREN] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym_SEMI] = ACTIONS(7525), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_COLON] = ACTIONS(7528), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7525), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_RBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(7003), - [anon_sym_unsigned] = ACTIONS(7003), - [anon_sym_long] = ACTIONS(7003), - [anon_sym_short] = ACTIONS(7003), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7525), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_and_eq] = ACTIONS(7528), - [anon_sym_or_eq] = ACTIONS(7528), - [anon_sym_xor_eq] = ACTIONS(7528), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7525), - }, - [STATE(2301)] = { - [sym_type_qualifier] = STATE(2320), - [sym_alignas_qualifier] = STATE(2392), - [aux_sym__type_definition_type_repeat1] = STATE(2320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), - [anon_sym_COMMA] = ACTIONS(6901), - [anon_sym_RPAREN] = ACTIONS(6901), - [anon_sym_LPAREN2] = ACTIONS(6901), - [anon_sym_DASH] = ACTIONS(6899), - [anon_sym_PLUS] = ACTIONS(6899), - [anon_sym_STAR] = ACTIONS(6899), - [anon_sym_SLASH] = ACTIONS(6899), - [anon_sym_PERCENT] = ACTIONS(6899), - [anon_sym_PIPE_PIPE] = ACTIONS(6901), - [anon_sym_AMP_AMP] = ACTIONS(6901), - [anon_sym_PIPE] = ACTIONS(6899), - [anon_sym_CARET] = ACTIONS(6899), - [anon_sym_AMP] = ACTIONS(6899), - [anon_sym_EQ_EQ] = ACTIONS(6901), - [anon_sym_BANG_EQ] = ACTIONS(6901), - [anon_sym_GT] = ACTIONS(6899), - [anon_sym_GT_EQ] = ACTIONS(6901), - [anon_sym_LT_EQ] = ACTIONS(6899), - [anon_sym_LT] = ACTIONS(6899), - [anon_sym_LT_LT] = ACTIONS(6899), - [anon_sym_GT_GT] = ACTIONS(6899), - [anon_sym___extension__] = ACTIONS(6644), - [anon_sym___attribute__] = ACTIONS(6901), - [anon_sym___attribute] = ACTIONS(6899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(6899), - [anon_sym_EQ] = ACTIONS(6899), - [anon_sym_const] = ACTIONS(6652), - [anon_sym_constexpr] = ACTIONS(6644), - [anon_sym_volatile] = ACTIONS(6644), - [anon_sym_restrict] = ACTIONS(6644), - [anon_sym___restrict__] = ACTIONS(6644), - [anon_sym__Atomic] = ACTIONS(6644), - [anon_sym__Noreturn] = ACTIONS(6644), - [anon_sym_noreturn] = ACTIONS(6644), - [anon_sym__Nonnull] = ACTIONS(6644), - [anon_sym_mutable] = ACTIONS(6644), - [anon_sym_constinit] = ACTIONS(6644), - [anon_sym_consteval] = ACTIONS(6644), - [anon_sym_alignas] = ACTIONS(6654), - [anon_sym__Alignas] = ACTIONS(6654), - [anon_sym_QMARK] = ACTIONS(6901), - [anon_sym_STAR_EQ] = ACTIONS(6901), - [anon_sym_SLASH_EQ] = ACTIONS(6901), - [anon_sym_PERCENT_EQ] = ACTIONS(6901), - [anon_sym_PLUS_EQ] = ACTIONS(6901), - [anon_sym_DASH_EQ] = ACTIONS(6901), - [anon_sym_LT_LT_EQ] = ACTIONS(6901), - [anon_sym_GT_GT_EQ] = ACTIONS(6901), - [anon_sym_AMP_EQ] = ACTIONS(6901), - [anon_sym_CARET_EQ] = ACTIONS(6901), - [anon_sym_PIPE_EQ] = ACTIONS(6901), - [anon_sym_and_eq] = ACTIONS(6901), - [anon_sym_or_eq] = ACTIONS(6901), - [anon_sym_xor_eq] = ACTIONS(6901), - [anon_sym_LT_EQ_GT] = ACTIONS(6901), - [anon_sym_or] = ACTIONS(6899), - [anon_sym_and] = ACTIONS(6899), - [anon_sym_bitor] = ACTIONS(6901), - [anon_sym_xor] = ACTIONS(6899), - [anon_sym_bitand] = ACTIONS(6901), - [anon_sym_not_eq] = ACTIONS(6901), - [anon_sym_DASH_DASH] = ACTIONS(6901), - [anon_sym_PLUS_PLUS] = ACTIONS(6901), - [anon_sym_asm] = ACTIONS(6901), - [anon_sym___asm__] = ACTIONS(6901), - [anon_sym___asm] = ACTIONS(6899), - [anon_sym_DOT] = ACTIONS(6899), - [anon_sym_DOT_STAR] = ACTIONS(6901), - [anon_sym_DASH_GT] = ACTIONS(6899), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6901), - [anon_sym_override] = ACTIONS(6901), - [anon_sym_noexcept] = ACTIONS(6901), - [anon_sym_throw] = ACTIONS(6901), - [anon_sym_requires] = ACTIONS(6901), - [anon_sym_DASH_GT_STAR] = ACTIONS(6901), + [anon_sym_template] = ACTIONS(7791), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2302)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(10070), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(10070), - [sym_optional_parameter_declaration] = STATE(10070), - [sym_variadic_parameter_declaration] = STATE(10070), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6528), - [anon_sym_RPAREN] = ACTIONS(6530), + [STATE(2291)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9891), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9891), + [sym_optional_parameter_declaration] = STATE(9891), + [sym_variadic_parameter_declaration] = STATE(9891), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6506), + [anon_sym_RPAREN] = ACTIONS(6508), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -339971,62 +338935,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(2303)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9892), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9892), - [sym_optional_parameter_declaration] = STATE(9892), - [sym_variadic_parameter_declaration] = STATE(9892), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6457), - [anon_sym_RPAREN] = ACTIONS(6459), + [STATE(2292)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(10122), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(10122), + [sym_optional_parameter_declaration] = STATE(10122), + [sym_variadic_parameter_declaration] = STATE(10122), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6535), + [anon_sym_RPAREN] = ACTIONS(6537), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -340054,62 +339018,560 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(2304)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9979), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9979), - [sym_optional_parameter_declaration] = STATE(9979), - [sym_variadic_parameter_declaration] = STATE(9979), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6520), - [anon_sym_RPAREN] = ACTIONS(6522), + [STATE(2293)] = { + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2394), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(7964), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACE] = ACTIONS(6880), + [anon_sym_signed] = ACTIONS(6878), + [anon_sym_unsigned] = ACTIONS(6878), + [anon_sym_long] = ACTIONS(6878), + [anon_sym_short] = ACTIONS(6878), + [anon_sym_LBRACK] = ACTIONS(6880), + [anon_sym_RBRACK] = ACTIONS(6880), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(7964), + [anon_sym_constexpr] = ACTIONS(7964), + [anon_sym_volatile] = ACTIONS(7964), + [anon_sym_restrict] = ACTIONS(7964), + [anon_sym___restrict__] = ACTIONS(7964), + [anon_sym__Atomic] = ACTIONS(7964), + [anon_sym__Noreturn] = ACTIONS(7964), + [anon_sym_noreturn] = ACTIONS(7964), + [anon_sym__Nonnull] = ACTIONS(7964), + [anon_sym_mutable] = ACTIONS(7964), + [anon_sym_constinit] = ACTIONS(7964), + [anon_sym_consteval] = ACTIONS(7964), + [anon_sym_alignas] = ACTIONS(7967), + [anon_sym__Alignas] = ACTIONS(7967), + [sym_primitive_type] = ACTIONS(6878), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6880), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_and_eq] = ACTIONS(6878), + [anon_sym_or_eq] = ACTIONS(6878), + [anon_sym_xor_eq] = ACTIONS(6878), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6878), + }, + [STATE(2294)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_RPAREN] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym_SEMI] = ACTIONS(7399), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_COLON] = ACTIONS(7402), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7399), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_RBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(7064), + [anon_sym_unsigned] = ACTIONS(7064), + [anon_sym_long] = ACTIONS(7064), + [anon_sym_short] = ACTIONS(7064), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7399), + }, + [STATE(2295)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2536), + [sym__function_attributes_end] = STATE(3933), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3061), + [sym_noexcept] = STATE(2536), + [sym_throw_specifier] = STATE(2536), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7887), + [anon_sym_override] = ACTIONS(7887), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(7890), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), + }, + [STATE(2296)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2544), + [sym__function_attributes_end] = STATE(3947), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3062), + [sym_noexcept] = STATE(2544), + [sym_throw_specifier] = STATE(2544), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(7972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7970), + [anon_sym_RBRACE] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7974), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7977), + [anon_sym_override] = ACTIONS(7977), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(7980), + [anon_sym_COLON_RBRACK] = ACTIONS(7970), + }, + [STATE(2297)] = { + [sym_argument_list] = STATE(3931), + [sym_initializer_list] = STATE(3911), + [aux_sym_sized_type_specifier_repeat1] = STATE(2253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym___attribute__] = ACTIONS(7248), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(7783), + [anon_sym_unsigned] = ACTIONS(7783), + [anon_sym_long] = ACTIONS(7783), + [anon_sym_short] = ACTIONS(7783), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), + }, + [STATE(2298)] = { + [sym_type_qualifier] = STATE(2298), + [sym_alignas_qualifier] = STATE(2413), + [aux_sym__type_definition_type_repeat1] = STATE(2298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_RPAREN] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(7983), + [anon_sym___attribute__] = ACTIONS(6880), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6880), + [anon_sym_LBRACK] = ACTIONS(6878), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(7986), + [anon_sym_constexpr] = ACTIONS(7983), + [anon_sym_volatile] = ACTIONS(7983), + [anon_sym_restrict] = ACTIONS(7983), + [anon_sym___restrict__] = ACTIONS(7983), + [anon_sym__Atomic] = ACTIONS(7983), + [anon_sym__Noreturn] = ACTIONS(7983), + [anon_sym_noreturn] = ACTIONS(7983), + [anon_sym__Nonnull] = ACTIONS(7983), + [anon_sym_mutable] = ACTIONS(7983), + [anon_sym_constinit] = ACTIONS(7983), + [anon_sym_consteval] = ACTIONS(7983), + [anon_sym_alignas] = ACTIONS(7989), + [anon_sym__Alignas] = ACTIONS(7989), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6880), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_and_eq] = ACTIONS(6880), + [anon_sym_or_eq] = ACTIONS(6880), + [anon_sym_xor_eq] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6880), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6880), + [anon_sym_not_eq] = ACTIONS(6880), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_asm] = ACTIONS(6880), + [anon_sym___asm__] = ACTIONS(6880), + [anon_sym___asm] = ACTIONS(6878), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6878), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6880), + [anon_sym_override] = ACTIONS(6880), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6880), + [anon_sym_requires] = ACTIONS(6880), + [anon_sym_DASH_GT_STAR] = ACTIONS(6880), + }, + [STATE(2299)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9987), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9987), + [sym_optional_parameter_declaration] = STATE(9987), + [sym_variadic_parameter_declaration] = STATE(9987), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6551), + [anon_sym_RPAREN] = ACTIONS(6553), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -340137,145 +339599,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(2305)] = { - [sym_type_qualifier] = STATE(2305), - [sym_alignas_qualifier] = STATE(2434), - [aux_sym__type_definition_type_repeat1] = STATE(2305), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(7979), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACE] = ACTIONS(6891), - [anon_sym_signed] = ACTIONS(6889), - [anon_sym_unsigned] = ACTIONS(6889), - [anon_sym_long] = ACTIONS(6889), - [anon_sym_short] = ACTIONS(6889), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_RBRACK] = ACTIONS(6891), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(7979), - [anon_sym_constexpr] = ACTIONS(7979), - [anon_sym_volatile] = ACTIONS(7979), - [anon_sym_restrict] = ACTIONS(7979), - [anon_sym___restrict__] = ACTIONS(7979), - [anon_sym__Atomic] = ACTIONS(7979), - [anon_sym__Noreturn] = ACTIONS(7979), - [anon_sym_noreturn] = ACTIONS(7979), - [anon_sym__Nonnull] = ACTIONS(7979), - [anon_sym_mutable] = ACTIONS(7979), - [anon_sym_constinit] = ACTIONS(7979), - [anon_sym_consteval] = ACTIONS(7979), - [anon_sym_alignas] = ACTIONS(7982), - [anon_sym__Alignas] = ACTIONS(7982), - [sym_primitive_type] = ACTIONS(6889), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6891), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_and_eq] = ACTIONS(6889), - [anon_sym_or_eq] = ACTIONS(6889), - [anon_sym_xor_eq] = ACTIONS(6889), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_requires] = ACTIONS(6889), + [STATE(2300)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2543), + [sym__function_attributes_end] = STATE(3835), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3033), + [sym_noexcept] = STATE(2543), + [sym_throw_specifier] = STATE(2543), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(6545), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), }, - [STATE(2306)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(10146), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(10146), - [sym_optional_parameter_declaration] = STATE(10146), - [sym_variadic_parameter_declaration] = STATE(10146), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6516), - [anon_sym_RPAREN] = ACTIONS(6518), + [STATE(2301)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9922), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9922), + [sym_optional_parameter_declaration] = STATE(9922), + [sym_variadic_parameter_declaration] = STATE(9922), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6547), + [anon_sym_RPAREN] = ACTIONS(6549), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -340303,561 +339765,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(2307)] = { - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6889), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(7985), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACE] = ACTIONS(6891), - [anon_sym_signed] = ACTIONS(6889), - [anon_sym_unsigned] = ACTIONS(6889), - [anon_sym_long] = ACTIONS(6889), - [anon_sym_short] = ACTIONS(6889), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(7985), - [anon_sym_constexpr] = ACTIONS(7985), - [anon_sym_volatile] = ACTIONS(7985), - [anon_sym_restrict] = ACTIONS(7985), - [anon_sym___restrict__] = ACTIONS(7985), - [anon_sym__Atomic] = ACTIONS(7985), - [anon_sym__Noreturn] = ACTIONS(7985), - [anon_sym_noreturn] = ACTIONS(7985), - [anon_sym__Nonnull] = ACTIONS(7985), - [anon_sym_mutable] = ACTIONS(7985), - [anon_sym_constinit] = ACTIONS(7985), - [anon_sym_consteval] = ACTIONS(7985), - [anon_sym_alignas] = ACTIONS(7988), - [anon_sym__Alignas] = ACTIONS(7988), - [sym_primitive_type] = ACTIONS(6889), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6889), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_and_eq] = ACTIONS(6889), - [anon_sym_or_eq] = ACTIONS(6889), - [anon_sym_xor_eq] = ACTIONS(6889), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_GT2] = ACTIONS(6891), - [anon_sym_requires] = ACTIONS(6889), - }, - [STATE(2308)] = { - [sym_type_qualifier] = STATE(2320), - [sym_alignas_qualifier] = STATE(2392), - [aux_sym__type_definition_type_repeat1] = STATE(2320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_RPAREN] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6752), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6752), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym___extension__] = ACTIONS(6644), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_EQ] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(6652), - [anon_sym_constexpr] = ACTIONS(6644), - [anon_sym_volatile] = ACTIONS(6644), - [anon_sym_restrict] = ACTIONS(6644), - [anon_sym___restrict__] = ACTIONS(6644), - [anon_sym__Atomic] = ACTIONS(6644), - [anon_sym__Noreturn] = ACTIONS(6644), - [anon_sym_noreturn] = ACTIONS(6644), - [anon_sym__Nonnull] = ACTIONS(6644), - [anon_sym_mutable] = ACTIONS(6644), - [anon_sym_constinit] = ACTIONS(6644), - [anon_sym_consteval] = ACTIONS(6644), - [anon_sym_alignas] = ACTIONS(6654), - [anon_sym__Alignas] = ACTIONS(6654), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_STAR_EQ] = ACTIONS(6754), - [anon_sym_SLASH_EQ] = ACTIONS(6754), - [anon_sym_PERCENT_EQ] = ACTIONS(6754), - [anon_sym_PLUS_EQ] = ACTIONS(6754), - [anon_sym_DASH_EQ] = ACTIONS(6754), - [anon_sym_LT_LT_EQ] = ACTIONS(6754), - [anon_sym_GT_GT_EQ] = ACTIONS(6754), - [anon_sym_AMP_EQ] = ACTIONS(6754), - [anon_sym_CARET_EQ] = ACTIONS(6754), - [anon_sym_PIPE_EQ] = ACTIONS(6754), - [anon_sym_and_eq] = ACTIONS(6754), - [anon_sym_or_eq] = ACTIONS(6754), - [anon_sym_xor_eq] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6752), - [anon_sym_and] = ACTIONS(6752), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6752), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6752), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), - [anon_sym_DASH_GT_STAR] = ACTIONS(6754), - }, - [STATE(2309)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(2567), - [sym__function_attributes_end] = STATE(3919), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3071), - [sym_noexcept] = STATE(2567), - [sym_throw_specifier] = STATE(2567), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7789), - [anon_sym_or_eq] = ACTIONS(7789), - [anon_sym_xor_eq] = ACTIONS(7789), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7799), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_noexcept] = ACTIONS(6504), - [anon_sym_throw] = ACTIONS(6506), - [anon_sym_requires] = ACTIONS(6508), + [STATE(2302)] = { + [sym_attribute_specifier] = STATE(2573), + [sym_attribute_declaration] = STATE(4721), + [sym_type_qualifier] = STATE(2470), + [sym_alignas_qualifier] = STATE(2677), + [aux_sym_type_definition_repeat1] = STATE(2573), + [aux_sym__type_definition_type_repeat1] = STATE(2470), + [aux_sym_attributed_declarator_repeat1] = STATE(4721), + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [aux_sym_preproc_if_token2] = ACTIONS(6748), + [aux_sym_preproc_else_token1] = ACTIONS(6748), + [aux_sym_preproc_elif_token1] = ACTIONS(6746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6748), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6748), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6748), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6748), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6748), + [anon_sym_GT_GT] = ACTIONS(6748), + [anon_sym_SEMI] = ACTIONS(6748), + [anon_sym___extension__] = ACTIONS(7166), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6748), + [anon_sym_RBRACE] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(7166), + [anon_sym_constexpr] = ACTIONS(7166), + [anon_sym_volatile] = ACTIONS(7166), + [anon_sym_restrict] = ACTIONS(7166), + [anon_sym___restrict__] = ACTIONS(7166), + [anon_sym__Atomic] = ACTIONS(7166), + [anon_sym__Noreturn] = ACTIONS(7166), + [anon_sym_noreturn] = ACTIONS(7166), + [anon_sym__Nonnull] = ACTIONS(7166), + [anon_sym_mutable] = ACTIONS(7166), + [anon_sym_constinit] = ACTIONS(7166), + [anon_sym_consteval] = ACTIONS(7166), + [anon_sym_alignas] = ACTIONS(7172), + [anon_sym__Alignas] = ACTIONS(7172), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6746), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6746), + [anon_sym_not_eq] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6746), + [anon_sym___asm__] = ACTIONS(6746), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6746), + [anon_sym_override] = ACTIONS(6746), + [anon_sym_noexcept] = ACTIONS(6746), + [anon_sym_throw] = ACTIONS(6746), + [anon_sym_requires] = ACTIONS(6746), + [anon_sym_COLON_RBRACK] = ACTIONS(6748), }, - [STATE(2310)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(2600), + [STATE(2303)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2551), [sym__function_attributes_end] = STATE(3920), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3029), - [sym_noexcept] = STATE(2600), - [sym_throw_specifier] = STATE(2600), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [aux_sym_preproc_if_token2] = ACTIONS(7966), - [aux_sym_preproc_else_token1] = ACTIONS(7966), - [aux_sym_preproc_elif_token1] = ACTIONS(7968), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7968), - [anon_sym_or_eq] = ACTIONS(7968), - [anon_sym_xor_eq] = ACTIONS(7968), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7968), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7968), - [anon_sym_not_eq] = ACTIONS(7968), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_noexcept] = ACTIONS(6504), - [anon_sym_throw] = ACTIONS(6506), - [anon_sym_requires] = ACTIONS(6508), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3067), + [sym_noexcept] = STATE(2551), + [sym_throw_specifier] = STATE(2551), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_preproc_if_token2] = ACTIONS(7970), + [aux_sym_preproc_else_token1] = ACTIONS(7970), + [aux_sym_preproc_elif_token1] = ACTIONS(7972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7972), + [anon_sym_or_eq] = ACTIONS(7972), + [anon_sym_xor_eq] = ACTIONS(7972), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7972), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7972), + [anon_sym_not_eq] = ACTIONS(7972), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7992), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_noexcept] = ACTIONS(6495), + [anon_sym_throw] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6557), }, - [STATE(2311)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(2574), + [STATE(2304)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2560), [sym__function_attributes_end] = STATE(3923), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3075), - [sym_noexcept] = STATE(2574), - [sym_throw_specifier] = STATE(2574), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7789), - [anon_sym_or_eq] = ACTIONS(7789), - [anon_sym_xor_eq] = ACTIONS(7789), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7799), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7802), - [anon_sym_override] = ACTIONS(7802), - [anon_sym_noexcept] = ACTIONS(6504), - [anon_sym_throw] = ACTIONS(6506), - [anon_sym_requires] = ACTIONS(7805), - }, - [STATE(2312)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(2575), - [sym__function_attributes_end] = STATE(3924), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3076), - [sym_noexcept] = STATE(2575), - [sym_throw_specifier] = STATE(2575), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [aux_sym_preproc_if_token2] = ACTIONS(7966), - [aux_sym_preproc_else_token1] = ACTIONS(7966), - [aux_sym_preproc_elif_token1] = ACTIONS(7968), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7968), - [anon_sym_or_eq] = ACTIONS(7968), - [anon_sym_xor_eq] = ACTIONS(7968), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7968), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7968), - [anon_sym_not_eq] = ACTIONS(7968), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7994), - [anon_sym_override] = ACTIONS(7994), - [anon_sym_noexcept] = ACTIONS(6504), - [anon_sym_throw] = ACTIONS(6506), - [anon_sym_requires] = ACTIONS(7997), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3061), + [sym_noexcept] = STATE(2560), + [sym_throw_specifier] = STATE(2560), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7876), + [anon_sym_or_eq] = ACTIONS(7876), + [anon_sym_xor_eq] = ACTIONS(7876), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7949), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7952), + [anon_sym_override] = ACTIONS(7952), + [anon_sym_noexcept] = ACTIONS(6495), + [anon_sym_throw] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(7955), }, - [STATE(2313)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5368), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(10537), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_type_parameter_declaration] = STATE(10537), - [sym_variadic_type_parameter_declaration] = STATE(10537), - [sym_optional_type_parameter_declaration] = STATE(10537), - [sym_template_template_parameter_declaration] = STATE(10537), - [sym_optional_parameter_declaration] = STATE(10537), - [sym_variadic_parameter_declaration] = STATE(10537), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), + [STATE(2305)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9890), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(9890), + [sym_optional_parameter_declaration] = STATE(9890), + [sym_variadic_parameter_declaration] = STATE(9890), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6539), + [anon_sym_RPAREN] = ACTIONS(6541), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -340885,476 +340097,560 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(7837), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(7839), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(7841), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(2314)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9734), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9734), - [sym_optional_parameter_declaration] = STATE(9734), - [sym_variadic_parameter_declaration] = STATE(9734), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6475), - [anon_sym_RPAREN] = ACTIONS(6477), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [STATE(2306)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2562), + [sym__function_attributes_end] = STATE(3924), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3062), + [sym_noexcept] = STATE(2562), + [sym_throw_specifier] = STATE(2562), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_preproc_if_token2] = ACTIONS(7970), + [aux_sym_preproc_else_token1] = ACTIONS(7970), + [aux_sym_preproc_elif_token1] = ACTIONS(7972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7972), + [anon_sym_or_eq] = ACTIONS(7972), + [anon_sym_xor_eq] = ACTIONS(7972), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7972), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7972), + [anon_sym_not_eq] = ACTIONS(7972), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7992), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7995), + [anon_sym_override] = ACTIONS(7995), + [anon_sym_noexcept] = ACTIONS(6495), + [anon_sym_throw] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(7998), }, - [STATE(2315)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2208), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(7721), - [anon_sym_unsigned] = ACTIONS(7721), - [anon_sym_long] = ACTIONS(7721), - [anon_sym_short] = ACTIONS(7721), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), + [STATE(2307)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2197), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(7588), + [anon_sym_unsigned] = ACTIONS(7588), + [anon_sym_long] = ACTIONS(7588), + [anon_sym_short] = ACTIONS(7588), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7246), + [anon_sym_or_eq] = ACTIONS(7246), + [anon_sym_xor_eq] = ACTIONS(7246), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7246), + [anon_sym_override] = ACTIONS(7246), + [anon_sym_requires] = ACTIONS(7246), }, - [STATE(2316)] = { - [sym_attribute_specifier] = STATE(2548), - [sym_attribute_declaration] = STATE(4648), - [sym_type_qualifier] = STATE(2489), - [sym_alignas_qualifier] = STATE(2727), - [aux_sym_type_definition_repeat1] = STATE(2548), - [aux_sym__type_definition_type_repeat1] = STATE(2489), - [aux_sym_attributed_declarator_repeat1] = STATE(4648), - [sym_identifier] = ACTIONS(6752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_RPAREN] = ACTIONS(6754), - [aux_sym_preproc_if_token2] = ACTIONS(6754), - [aux_sym_preproc_else_token1] = ACTIONS(6754), - [aux_sym_preproc_elif_token1] = ACTIONS(6752), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6754), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6754), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6754), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6754), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6754), - [anon_sym_GT_GT] = ACTIONS(6754), - [anon_sym_SEMI] = ACTIONS(6754), - [anon_sym___extension__] = ACTIONS(7182), - [anon_sym___attribute__] = ACTIONS(6752), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_COLON] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6754), - [anon_sym_RBRACE] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(7182), - [anon_sym_constexpr] = ACTIONS(7182), - [anon_sym_volatile] = ACTIONS(7182), - [anon_sym_restrict] = ACTIONS(7182), - [anon_sym___restrict__] = ACTIONS(7182), - [anon_sym__Atomic] = ACTIONS(7182), - [anon_sym__Noreturn] = ACTIONS(7182), - [anon_sym_noreturn] = ACTIONS(7182), - [anon_sym__Nonnull] = ACTIONS(7182), - [anon_sym_mutable] = ACTIONS(7182), - [anon_sym_constinit] = ACTIONS(7182), - [anon_sym_consteval] = ACTIONS(7182), - [anon_sym_alignas] = ACTIONS(7268), - [anon_sym__Alignas] = ACTIONS(7268), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6752), - [anon_sym_and] = ACTIONS(6752), - [anon_sym_bitor] = ACTIONS(6752), - [anon_sym_xor] = ACTIONS(6752), - [anon_sym_bitand] = ACTIONS(6752), - [anon_sym_not_eq] = ACTIONS(6752), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6752), - [anon_sym___asm__] = ACTIONS(6752), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6752), - [anon_sym_override] = ACTIONS(6752), - [anon_sym_noexcept] = ACTIONS(6752), - [anon_sym_throw] = ACTIONS(6752), - [anon_sym_requires] = ACTIONS(6752), - [anon_sym_COLON_RBRACK] = ACTIONS(6754), + [STATE(2308)] = { + [sym_type_qualifier] = STATE(2298), + [sym_alignas_qualifier] = STATE(2413), + [aux_sym__type_definition_type_repeat1] = STATE(2298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6632), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), + [anon_sym_alignas] = ACTIONS(6634), + [anon_sym__Alignas] = ACTIONS(6634), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6748), + [anon_sym_or_eq] = ACTIONS(6748), + [anon_sym_xor_eq] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6746), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), + [anon_sym_DASH_GT_STAR] = ACTIONS(6748), }, - [STATE(2317)] = { + [STATE(2309)] = { + [sym__abstract_declarator] = STATE(4559), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2313), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1968), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2313), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_RPAREN] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7367), + [anon_sym_or_eq] = ACTIONS(7367), + [anon_sym_xor_eq] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7365), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7367), + [anon_sym_override] = ACTIONS(7367), + [anon_sym_requires] = ACTIONS(7367), + [anon_sym_DASH_GT_STAR] = ACTIONS(7367), + }, + [STATE(2310)] = { [sym_attribute_specifier] = STATE(2196), - [sym_enumerator_list] = STATE(2137), - [sym__enum_base_clause] = STATE(2119), - [sym_identifier] = ACTIONS(8000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), - [anon_sym_COMMA] = ACTIONS(8002), - [aux_sym_preproc_if_token2] = ACTIONS(8002), - [aux_sym_preproc_else_token1] = ACTIONS(8002), - [aux_sym_preproc_elif_token1] = ACTIONS(8000), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8002), - [anon_sym_LPAREN2] = ACTIONS(8002), - [anon_sym_DASH] = ACTIONS(8000), - [anon_sym_PLUS] = ACTIONS(8000), - [anon_sym_STAR] = ACTIONS(8000), - [anon_sym_SLASH] = ACTIONS(8000), - [anon_sym_PERCENT] = ACTIONS(8000), - [anon_sym_PIPE_PIPE] = ACTIONS(8002), - [anon_sym_AMP_AMP] = ACTIONS(8002), - [anon_sym_PIPE] = ACTIONS(8000), - [anon_sym_CARET] = ACTIONS(8000), - [anon_sym_AMP] = ACTIONS(8000), - [anon_sym_EQ_EQ] = ACTIONS(8002), - [anon_sym_BANG_EQ] = ACTIONS(8002), - [anon_sym_GT] = ACTIONS(8000), - [anon_sym_GT_EQ] = ACTIONS(8002), - [anon_sym_LT_EQ] = ACTIONS(8000), - [anon_sym_LT] = ACTIONS(8000), - [anon_sym_LT_LT] = ACTIONS(8000), - [anon_sym_GT_GT] = ACTIONS(8000), - [anon_sym___extension__] = ACTIONS(8000), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(8004), + [sym_enumerator_list] = STATE(2157), + [sym__enum_base_clause] = STATE(2124), + [sym_identifier] = ACTIONS(8001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8003), + [anon_sym_COMMA] = ACTIONS(8003), + [aux_sym_preproc_if_token2] = ACTIONS(8003), + [aux_sym_preproc_else_token1] = ACTIONS(8003), + [aux_sym_preproc_elif_token1] = ACTIONS(8001), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8003), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8003), + [anon_sym_LPAREN2] = ACTIONS(8003), + [anon_sym_DASH] = ACTIONS(8001), + [anon_sym_PLUS] = ACTIONS(8001), + [anon_sym_STAR] = ACTIONS(8001), + [anon_sym_SLASH] = ACTIONS(8001), + [anon_sym_PERCENT] = ACTIONS(8001), + [anon_sym_PIPE_PIPE] = ACTIONS(8003), + [anon_sym_AMP_AMP] = ACTIONS(8003), + [anon_sym_PIPE] = ACTIONS(8001), + [anon_sym_CARET] = ACTIONS(8001), + [anon_sym_AMP] = ACTIONS(8001), + [anon_sym_EQ_EQ] = ACTIONS(8003), + [anon_sym_BANG_EQ] = ACTIONS(8003), + [anon_sym_GT] = ACTIONS(8001), + [anon_sym_GT_EQ] = ACTIONS(8003), + [anon_sym_LT_EQ] = ACTIONS(8001), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_LT_LT] = ACTIONS(8001), + [anon_sym_GT_GT] = ACTIONS(8001), + [anon_sym___extension__] = ACTIONS(8001), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(8005), [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_LBRACK] = ACTIONS(8002), - [anon_sym_EQ] = ACTIONS(8000), - [anon_sym_const] = ACTIONS(8000), - [anon_sym_constexpr] = ACTIONS(8000), - [anon_sym_volatile] = ACTIONS(8000), - [anon_sym_restrict] = ACTIONS(8000), - [anon_sym___restrict__] = ACTIONS(8000), - [anon_sym__Atomic] = ACTIONS(8000), - [anon_sym__Noreturn] = ACTIONS(8000), - [anon_sym_noreturn] = ACTIONS(8000), - [anon_sym__Nonnull] = ACTIONS(8000), - [anon_sym_mutable] = ACTIONS(8000), - [anon_sym_constinit] = ACTIONS(8000), - [anon_sym_consteval] = ACTIONS(8000), - [anon_sym_alignas] = ACTIONS(8000), - [anon_sym__Alignas] = ACTIONS(8000), - [anon_sym_QMARK] = ACTIONS(8002), - [anon_sym_STAR_EQ] = ACTIONS(8002), - [anon_sym_SLASH_EQ] = ACTIONS(8002), - [anon_sym_PERCENT_EQ] = ACTIONS(8002), - [anon_sym_PLUS_EQ] = ACTIONS(8002), - [anon_sym_DASH_EQ] = ACTIONS(8002), - [anon_sym_LT_LT_EQ] = ACTIONS(8002), - [anon_sym_GT_GT_EQ] = ACTIONS(8002), - [anon_sym_AMP_EQ] = ACTIONS(8002), - [anon_sym_CARET_EQ] = ACTIONS(8002), - [anon_sym_PIPE_EQ] = ACTIONS(8002), - [anon_sym_and_eq] = ACTIONS(8000), - [anon_sym_or_eq] = ACTIONS(8000), - [anon_sym_xor_eq] = ACTIONS(8000), - [anon_sym_LT_EQ_GT] = ACTIONS(8002), - [anon_sym_or] = ACTIONS(8000), - [anon_sym_and] = ACTIONS(8000), - [anon_sym_bitor] = ACTIONS(8000), - [anon_sym_xor] = ACTIONS(8000), - [anon_sym_bitand] = ACTIONS(8000), - [anon_sym_not_eq] = ACTIONS(8000), - [anon_sym_DASH_DASH] = ACTIONS(8002), - [anon_sym_PLUS_PLUS] = ACTIONS(8002), - [anon_sym_DOT] = ACTIONS(8000), - [anon_sym_DOT_STAR] = ACTIONS(8002), - [anon_sym_DASH_GT] = ACTIONS(8002), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8000), - [anon_sym_override] = ACTIONS(8000), - [anon_sym_requires] = ACTIONS(8000), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_EQ] = ACTIONS(8001), + [anon_sym_const] = ACTIONS(8001), + [anon_sym_constexpr] = ACTIONS(8001), + [anon_sym_volatile] = ACTIONS(8001), + [anon_sym_restrict] = ACTIONS(8001), + [anon_sym___restrict__] = ACTIONS(8001), + [anon_sym__Atomic] = ACTIONS(8001), + [anon_sym__Noreturn] = ACTIONS(8001), + [anon_sym_noreturn] = ACTIONS(8001), + [anon_sym__Nonnull] = ACTIONS(8001), + [anon_sym_mutable] = ACTIONS(8001), + [anon_sym_constinit] = ACTIONS(8001), + [anon_sym_consteval] = ACTIONS(8001), + [anon_sym_alignas] = ACTIONS(8001), + [anon_sym__Alignas] = ACTIONS(8001), + [anon_sym_QMARK] = ACTIONS(8003), + [anon_sym_STAR_EQ] = ACTIONS(8003), + [anon_sym_SLASH_EQ] = ACTIONS(8003), + [anon_sym_PERCENT_EQ] = ACTIONS(8003), + [anon_sym_PLUS_EQ] = ACTIONS(8003), + [anon_sym_DASH_EQ] = ACTIONS(8003), + [anon_sym_LT_LT_EQ] = ACTIONS(8003), + [anon_sym_GT_GT_EQ] = ACTIONS(8003), + [anon_sym_AMP_EQ] = ACTIONS(8003), + [anon_sym_CARET_EQ] = ACTIONS(8003), + [anon_sym_PIPE_EQ] = ACTIONS(8003), + [anon_sym_and_eq] = ACTIONS(8001), + [anon_sym_or_eq] = ACTIONS(8001), + [anon_sym_xor_eq] = ACTIONS(8001), + [anon_sym_LT_EQ_GT] = ACTIONS(8003), + [anon_sym_or] = ACTIONS(8001), + [anon_sym_and] = ACTIONS(8001), + [anon_sym_bitor] = ACTIONS(8001), + [anon_sym_xor] = ACTIONS(8001), + [anon_sym_bitand] = ACTIONS(8001), + [anon_sym_not_eq] = ACTIONS(8001), + [anon_sym_DASH_DASH] = ACTIONS(8003), + [anon_sym_PLUS_PLUS] = ACTIONS(8003), + [anon_sym_DOT] = ACTIONS(8001), + [anon_sym_DOT_STAR] = ACTIONS(8003), + [anon_sym_DASH_GT] = ACTIONS(8003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8001), + [anon_sym_override] = ACTIONS(8001), + [anon_sym_requires] = ACTIONS(8001), }, - [STATE(2318)] = { - [sym_attribute_specifier] = STATE(2200), - [sym_enumerator_list] = STATE(2136), + [STATE(2311)] = { + [sym_attribute_specifier] = STATE(2210), + [sym_enumerator_list] = STATE(2161), [sym__enum_base_clause] = STATE(2118), - [sym_identifier] = ACTIONS(8006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), - [anon_sym_COMMA] = ACTIONS(8008), - [aux_sym_preproc_if_token2] = ACTIONS(8008), - [aux_sym_preproc_else_token1] = ACTIONS(8008), - [aux_sym_preproc_elif_token1] = ACTIONS(8006), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8008), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8008), - [anon_sym_LPAREN2] = ACTIONS(8008), - [anon_sym_DASH] = ACTIONS(8006), - [anon_sym_PLUS] = ACTIONS(8006), - [anon_sym_STAR] = ACTIONS(8006), - [anon_sym_SLASH] = ACTIONS(8006), - [anon_sym_PERCENT] = ACTIONS(8006), - [anon_sym_PIPE_PIPE] = ACTIONS(8008), - [anon_sym_AMP_AMP] = ACTIONS(8008), - [anon_sym_PIPE] = ACTIONS(8006), - [anon_sym_CARET] = ACTIONS(8006), - [anon_sym_AMP] = ACTIONS(8006), - [anon_sym_EQ_EQ] = ACTIONS(8008), - [anon_sym_BANG_EQ] = ACTIONS(8008), - [anon_sym_GT] = ACTIONS(8006), - [anon_sym_GT_EQ] = ACTIONS(8008), - [anon_sym_LT_EQ] = ACTIONS(8006), - [anon_sym_LT] = ACTIONS(8006), - [anon_sym_LT_LT] = ACTIONS(8006), - [anon_sym_GT_GT] = ACTIONS(8006), - [anon_sym___extension__] = ACTIONS(8006), - [anon_sym___attribute__] = ACTIONS(7239), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(8004), + [sym_identifier] = ACTIONS(8007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8009), + [anon_sym_COMMA] = ACTIONS(8009), + [aux_sym_preproc_if_token2] = ACTIONS(8009), + [aux_sym_preproc_else_token1] = ACTIONS(8009), + [aux_sym_preproc_elif_token1] = ACTIONS(8007), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8009), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8009), + [anon_sym_LPAREN2] = ACTIONS(8009), + [anon_sym_DASH] = ACTIONS(8007), + [anon_sym_PLUS] = ACTIONS(8007), + [anon_sym_STAR] = ACTIONS(8007), + [anon_sym_SLASH] = ACTIONS(8007), + [anon_sym_PERCENT] = ACTIONS(8007), + [anon_sym_PIPE_PIPE] = ACTIONS(8009), + [anon_sym_AMP_AMP] = ACTIONS(8009), + [anon_sym_PIPE] = ACTIONS(8007), + [anon_sym_CARET] = ACTIONS(8007), + [anon_sym_AMP] = ACTIONS(8007), + [anon_sym_EQ_EQ] = ACTIONS(8009), + [anon_sym_BANG_EQ] = ACTIONS(8009), + [anon_sym_GT] = ACTIONS(8007), + [anon_sym_GT_EQ] = ACTIONS(8009), + [anon_sym_LT_EQ] = ACTIONS(8007), + [anon_sym_LT] = ACTIONS(8007), + [anon_sym_LT_LT] = ACTIONS(8007), + [anon_sym_GT_GT] = ACTIONS(8007), + [anon_sym___extension__] = ACTIONS(8007), + [anon_sym___attribute__] = ACTIONS(7258), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(8005), [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_LBRACK] = ACTIONS(8008), - [anon_sym_EQ] = ACTIONS(8006), - [anon_sym_const] = ACTIONS(8006), - [anon_sym_constexpr] = ACTIONS(8006), - [anon_sym_volatile] = ACTIONS(8006), - [anon_sym_restrict] = ACTIONS(8006), - [anon_sym___restrict__] = ACTIONS(8006), - [anon_sym__Atomic] = ACTIONS(8006), - [anon_sym__Noreturn] = ACTIONS(8006), - [anon_sym_noreturn] = ACTIONS(8006), - [anon_sym__Nonnull] = ACTIONS(8006), - [anon_sym_mutable] = ACTIONS(8006), - [anon_sym_constinit] = ACTIONS(8006), - [anon_sym_consteval] = ACTIONS(8006), - [anon_sym_alignas] = ACTIONS(8006), - [anon_sym__Alignas] = ACTIONS(8006), - [anon_sym_QMARK] = ACTIONS(8008), - [anon_sym_STAR_EQ] = ACTIONS(8008), - [anon_sym_SLASH_EQ] = ACTIONS(8008), - [anon_sym_PERCENT_EQ] = ACTIONS(8008), - [anon_sym_PLUS_EQ] = ACTIONS(8008), - [anon_sym_DASH_EQ] = ACTIONS(8008), - [anon_sym_LT_LT_EQ] = ACTIONS(8008), - [anon_sym_GT_GT_EQ] = ACTIONS(8008), - [anon_sym_AMP_EQ] = ACTIONS(8008), - [anon_sym_CARET_EQ] = ACTIONS(8008), - [anon_sym_PIPE_EQ] = ACTIONS(8008), - [anon_sym_and_eq] = ACTIONS(8006), - [anon_sym_or_eq] = ACTIONS(8006), - [anon_sym_xor_eq] = ACTIONS(8006), - [anon_sym_LT_EQ_GT] = ACTIONS(8008), - [anon_sym_or] = ACTIONS(8006), - [anon_sym_and] = ACTIONS(8006), - [anon_sym_bitor] = ACTIONS(8006), - [anon_sym_xor] = ACTIONS(8006), - [anon_sym_bitand] = ACTIONS(8006), - [anon_sym_not_eq] = ACTIONS(8006), - [anon_sym_DASH_DASH] = ACTIONS(8008), - [anon_sym_PLUS_PLUS] = ACTIONS(8008), - [anon_sym_DOT] = ACTIONS(8006), - [anon_sym_DOT_STAR] = ACTIONS(8008), - [anon_sym_DASH_GT] = ACTIONS(8008), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8006), - [anon_sym_override] = ACTIONS(8006), - [anon_sym_requires] = ACTIONS(8006), + [anon_sym_LBRACK] = ACTIONS(8009), + [anon_sym_EQ] = ACTIONS(8007), + [anon_sym_const] = ACTIONS(8007), + [anon_sym_constexpr] = ACTIONS(8007), + [anon_sym_volatile] = ACTIONS(8007), + [anon_sym_restrict] = ACTIONS(8007), + [anon_sym___restrict__] = ACTIONS(8007), + [anon_sym__Atomic] = ACTIONS(8007), + [anon_sym__Noreturn] = ACTIONS(8007), + [anon_sym_noreturn] = ACTIONS(8007), + [anon_sym__Nonnull] = ACTIONS(8007), + [anon_sym_mutable] = ACTIONS(8007), + [anon_sym_constinit] = ACTIONS(8007), + [anon_sym_consteval] = ACTIONS(8007), + [anon_sym_alignas] = ACTIONS(8007), + [anon_sym__Alignas] = ACTIONS(8007), + [anon_sym_QMARK] = ACTIONS(8009), + [anon_sym_STAR_EQ] = ACTIONS(8009), + [anon_sym_SLASH_EQ] = ACTIONS(8009), + [anon_sym_PERCENT_EQ] = ACTIONS(8009), + [anon_sym_PLUS_EQ] = ACTIONS(8009), + [anon_sym_DASH_EQ] = ACTIONS(8009), + [anon_sym_LT_LT_EQ] = ACTIONS(8009), + [anon_sym_GT_GT_EQ] = ACTIONS(8009), + [anon_sym_AMP_EQ] = ACTIONS(8009), + [anon_sym_CARET_EQ] = ACTIONS(8009), + [anon_sym_PIPE_EQ] = ACTIONS(8009), + [anon_sym_and_eq] = ACTIONS(8007), + [anon_sym_or_eq] = ACTIONS(8007), + [anon_sym_xor_eq] = ACTIONS(8007), + [anon_sym_LT_EQ_GT] = ACTIONS(8009), + [anon_sym_or] = ACTIONS(8007), + [anon_sym_and] = ACTIONS(8007), + [anon_sym_bitor] = ACTIONS(8007), + [anon_sym_xor] = ACTIONS(8007), + [anon_sym_bitand] = ACTIONS(8007), + [anon_sym_not_eq] = ACTIONS(8007), + [anon_sym_DASH_DASH] = ACTIONS(8009), + [anon_sym_PLUS_PLUS] = ACTIONS(8009), + [anon_sym_DOT] = ACTIONS(8007), + [anon_sym_DOT_STAR] = ACTIONS(8009), + [anon_sym_DASH_GT] = ACTIONS(8009), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8007), + [anon_sym_override] = ACTIONS(8007), + [anon_sym_requires] = ACTIONS(8007), }, - [STATE(2319)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(10083), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(10083), - [sym_optional_parameter_declaration] = STATE(10083), - [sym_variadic_parameter_declaration] = STATE(10083), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6524), - [anon_sym_RPAREN] = ACTIONS(6526), + [STATE(2312)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(10002), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(10002), + [sym_optional_parameter_declaration] = STATE(10002), + [sym_variadic_parameter_declaration] = STATE(10002), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6510), + [anon_sym_RPAREN] = ACTIONS(6512), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -341382,976 +340678,402 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), - }, - [STATE(2320)] = { - [sym_type_qualifier] = STATE(2320), - [sym_alignas_qualifier] = STATE(2392), - [aux_sym__type_definition_type_repeat1] = STATE(2320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_RPAREN] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(8010), - [anon_sym___attribute__] = ACTIONS(6891), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6889), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(8013), - [anon_sym_constexpr] = ACTIONS(8010), - [anon_sym_volatile] = ACTIONS(8010), - [anon_sym_restrict] = ACTIONS(8010), - [anon_sym___restrict__] = ACTIONS(8010), - [anon_sym__Atomic] = ACTIONS(8010), - [anon_sym__Noreturn] = ACTIONS(8010), - [anon_sym_noreturn] = ACTIONS(8010), - [anon_sym__Nonnull] = ACTIONS(8010), - [anon_sym_mutable] = ACTIONS(8010), - [anon_sym_constinit] = ACTIONS(8010), - [anon_sym_consteval] = ACTIONS(8010), - [anon_sym_alignas] = ACTIONS(8016), - [anon_sym__Alignas] = ACTIONS(8016), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6891), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_and_eq] = ACTIONS(6891), - [anon_sym_or_eq] = ACTIONS(6891), - [anon_sym_xor_eq] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6891), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6891), - [anon_sym_not_eq] = ACTIONS(6891), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_asm] = ACTIONS(6891), - [anon_sym___asm__] = ACTIONS(6891), - [anon_sym___asm] = ACTIONS(6889), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6889), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6891), - [anon_sym_override] = ACTIONS(6891), - [anon_sym_noexcept] = ACTIONS(6891), - [anon_sym_throw] = ACTIONS(6891), - [anon_sym_requires] = ACTIONS(6891), - [anon_sym_DASH_GT_STAR] = ACTIONS(6891), - }, - [STATE(2321)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(2537), - [sym__function_attributes_end] = STATE(3904), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3071), - [sym_noexcept] = STATE(2537), - [sym_throw_specifier] = STATE(2537), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7849), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(6563), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), - }, - [STATE(2322)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(2561), - [sym__function_attributes_end] = STATE(3891), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3075), - [sym_noexcept] = STATE(2561), - [sym_throw_specifier] = STATE(2561), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7849), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7870), - [anon_sym_override] = ACTIONS(7870), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(7873), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), - }, - [STATE(2323)] = { - [sym_argument_list] = STATE(3894), - [sym_initializer_list] = STATE(3899), - [aux_sym_sized_type_specifier_repeat1] = STATE(2276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7687), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym___attribute__] = ACTIONS(7225), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(7905), - [anon_sym_unsigned] = ACTIONS(7905), - [anon_sym_long] = ACTIONS(7905), - [anon_sym_short] = ACTIONS(7905), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(2324)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9791), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(9791), - [sym_optional_parameter_declaration] = STATE(9791), - [sym_variadic_parameter_declaration] = STATE(9791), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2306), - [anon_sym_RPAREN] = ACTIONS(5615), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [STATE(2313)] = { + [sym__abstract_declarator] = STATE(4562), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2272), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1968), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_RPAREN] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7369), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), - }, - [STATE(2325)] = { - [sym_type_qualifier] = STATE(2352), - [sym_alignas_qualifier] = STATE(2492), - [aux_sym__type_definition_type_repeat1] = STATE(2352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6752), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6752), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6752), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym___extension__] = ACTIONS(6679), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_EQ] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(6687), - [anon_sym_constexpr] = ACTIONS(6679), - [anon_sym_volatile] = ACTIONS(6679), - [anon_sym_restrict] = ACTIONS(6679), - [anon_sym___restrict__] = ACTIONS(6679), - [anon_sym__Atomic] = ACTIONS(6679), - [anon_sym__Noreturn] = ACTIONS(6679), - [anon_sym_noreturn] = ACTIONS(6679), - [anon_sym__Nonnull] = ACTIONS(6679), - [anon_sym_mutable] = ACTIONS(6679), - [anon_sym_constinit] = ACTIONS(6679), - [anon_sym_consteval] = ACTIONS(6679), - [anon_sym_alignas] = ACTIONS(6689), - [anon_sym__Alignas] = ACTIONS(6689), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_STAR_EQ] = ACTIONS(6754), - [anon_sym_SLASH_EQ] = ACTIONS(6754), - [anon_sym_PERCENT_EQ] = ACTIONS(6754), - [anon_sym_PLUS_EQ] = ACTIONS(6754), - [anon_sym_DASH_EQ] = ACTIONS(6754), - [anon_sym_LT_LT_EQ] = ACTIONS(6754), - [anon_sym_GT_GT_EQ] = ACTIONS(6752), - [anon_sym_AMP_EQ] = ACTIONS(6754), - [anon_sym_CARET_EQ] = ACTIONS(6754), - [anon_sym_PIPE_EQ] = ACTIONS(6754), - [anon_sym_and_eq] = ACTIONS(6754), - [anon_sym_or_eq] = ACTIONS(6754), - [anon_sym_xor_eq] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6752), - [anon_sym_and] = ACTIONS(6752), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6752), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_GT2] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), + [anon_sym_DASH_GT_STAR] = ACTIONS(7371), }, - [STATE(2326)] = { - [sym_type_qualifier] = STATE(2352), - [sym_alignas_qualifier] = STATE(2492), - [aux_sym__type_definition_type_repeat1] = STATE(2352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), - [anon_sym_COMMA] = ACTIONS(6901), - [anon_sym_LPAREN2] = ACTIONS(6901), - [anon_sym_DASH] = ACTIONS(6899), - [anon_sym_PLUS] = ACTIONS(6899), - [anon_sym_STAR] = ACTIONS(6899), - [anon_sym_SLASH] = ACTIONS(6899), - [anon_sym_PERCENT] = ACTIONS(6899), - [anon_sym_PIPE_PIPE] = ACTIONS(6901), - [anon_sym_AMP_AMP] = ACTIONS(6901), - [anon_sym_PIPE] = ACTIONS(6899), - [anon_sym_CARET] = ACTIONS(6899), - [anon_sym_AMP] = ACTIONS(6899), - [anon_sym_EQ_EQ] = ACTIONS(6901), - [anon_sym_BANG_EQ] = ACTIONS(6901), - [anon_sym_GT] = ACTIONS(6899), - [anon_sym_GT_EQ] = ACTIONS(6899), - [anon_sym_LT_EQ] = ACTIONS(6899), - [anon_sym_LT] = ACTIONS(6899), - [anon_sym_LT_LT] = ACTIONS(6899), - [anon_sym_GT_GT] = ACTIONS(6899), - [anon_sym___extension__] = ACTIONS(6679), - [anon_sym___attribute__] = ACTIONS(6901), - [anon_sym___attribute] = ACTIONS(6899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(6899), - [anon_sym_EQ] = ACTIONS(6899), - [anon_sym_const] = ACTIONS(6687), - [anon_sym_constexpr] = ACTIONS(6679), - [anon_sym_volatile] = ACTIONS(6679), - [anon_sym_restrict] = ACTIONS(6679), - [anon_sym___restrict__] = ACTIONS(6679), - [anon_sym__Atomic] = ACTIONS(6679), - [anon_sym__Noreturn] = ACTIONS(6679), - [anon_sym_noreturn] = ACTIONS(6679), - [anon_sym__Nonnull] = ACTIONS(6679), - [anon_sym_mutable] = ACTIONS(6679), - [anon_sym_constinit] = ACTIONS(6679), - [anon_sym_consteval] = ACTIONS(6679), - [anon_sym_alignas] = ACTIONS(6689), - [anon_sym__Alignas] = ACTIONS(6689), - [anon_sym_QMARK] = ACTIONS(6901), - [anon_sym_STAR_EQ] = ACTIONS(6901), - [anon_sym_SLASH_EQ] = ACTIONS(6901), - [anon_sym_PERCENT_EQ] = ACTIONS(6901), - [anon_sym_PLUS_EQ] = ACTIONS(6901), - [anon_sym_DASH_EQ] = ACTIONS(6901), - [anon_sym_LT_LT_EQ] = ACTIONS(6901), - [anon_sym_GT_GT_EQ] = ACTIONS(6899), - [anon_sym_AMP_EQ] = ACTIONS(6901), - [anon_sym_CARET_EQ] = ACTIONS(6901), - [anon_sym_PIPE_EQ] = ACTIONS(6901), - [anon_sym_and_eq] = ACTIONS(6901), - [anon_sym_or_eq] = ACTIONS(6901), - [anon_sym_xor_eq] = ACTIONS(6901), - [anon_sym_LT_EQ_GT] = ACTIONS(6901), - [anon_sym_or] = ACTIONS(6899), - [anon_sym_and] = ACTIONS(6899), - [anon_sym_bitor] = ACTIONS(6901), - [anon_sym_xor] = ACTIONS(6899), - [anon_sym_bitand] = ACTIONS(6901), - [anon_sym_not_eq] = ACTIONS(6901), - [anon_sym_DASH_DASH] = ACTIONS(6901), - [anon_sym_PLUS_PLUS] = ACTIONS(6901), - [anon_sym_asm] = ACTIONS(6901), - [anon_sym___asm__] = ACTIONS(6901), - [anon_sym___asm] = ACTIONS(6899), - [anon_sym_DOT] = ACTIONS(6899), - [anon_sym_DOT_STAR] = ACTIONS(6901), - [anon_sym_DASH_GT] = ACTIONS(6901), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6901), - [anon_sym_override] = ACTIONS(6901), - [anon_sym_GT2] = ACTIONS(6901), - [anon_sym_noexcept] = ACTIONS(6901), - [anon_sym_throw] = ACTIONS(6901), - [anon_sym_requires] = ACTIONS(6901), + [STATE(2314)] = { + [sym__abstract_declarator] = STATE(4563), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2316), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1968), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2316), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_RPAREN] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7373), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), + [anon_sym_DASH_GT_STAR] = ACTIONS(7375), }, - [STATE(2327)] = { - [sym__abstract_declarator] = STATE(4724), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1980), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(7138), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7349), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7349), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_GT2] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), + [STATE(2315)] = { + [sym__abstract_declarator] = STATE(4575), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2272), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1968), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6841), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + [anon_sym_DASH_GT_STAR] = ACTIONS(6843), }, - [STATE(2328)] = { - [sym__abstract_declarator] = STATE(4743), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2330), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1980), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7138), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), + [STATE(2316)] = { + [sym__abstract_declarator] = STATE(4564), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2272), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1968), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_RPAREN] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(6977), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(6979), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(6981), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), [anon_sym_GT_EQ] = ACTIONS(7341), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), [anon_sym_GT_GT_EQ] = ACTIONS(7341), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_and_eq] = ACTIONS(7341), + [anon_sym_or_eq] = ACTIONS(7341), + [anon_sym_xor_eq] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), [anon_sym_DASH_GT] = ACTIONS(7343), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_GT2] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - }, - [STATE(2329)] = { - [sym__abstract_declarator] = STATE(4716), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1980), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7138), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6821), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6821), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_GT2] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - }, - [STATE(2330)] = { - [sym__abstract_declarator] = STATE(4744), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1980), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(7138), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7353), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7353), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7355), - [anon_sym_or_eq] = ACTIONS(7355), - [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_GT2] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), + [anon_sym_DASH_GT_STAR] = ACTIONS(7341), }, - [STATE(2331)] = { - [sym__abstract_declarator] = STATE(4738), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1980), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2307), + [STATE(2317)] = { + [sym__abstract_declarator] = STATE(4576), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2272), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1968), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2272), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(7136), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6975), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(7138), + [anon_sym_STAR] = ACTIONS(6977), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7347), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7140), + [anon_sym_AMP_AMP] = ACTIONS(6979), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7142), + [anon_sym_AMP] = ACTIONS(6981), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), [anon_sym_LT_EQ] = ACTIONS(7347), [anon_sym_LT] = ACTIONS(7347), [anon_sym_LT_LT] = ACTIONS(7347), [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_STAR_EQ] = ACTIONS(7345), [anon_sym_SLASH_EQ] = ACTIONS(7345), @@ -342359,7 +341081,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(7345), [anon_sym_DASH_EQ] = ACTIONS(7345), [anon_sym_LT_LT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_EQ] = ACTIONS(7347), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), [anon_sym_AMP_EQ] = ACTIONS(7345), [anon_sym_CARET_EQ] = ACTIONS(7345), [anon_sym_PIPE_EQ] = ACTIONS(7345), @@ -342377,735 +341099,1969 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(7345), [anon_sym_DOT] = ACTIONS(7347), [anon_sym_DOT_STAR] = ACTIONS(7345), - [anon_sym_DASH_GT] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7347), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7345), [anon_sym_override] = ACTIONS(7345), - [anon_sym_GT2] = ACTIONS(7345), [anon_sym_requires] = ACTIONS(7345), + [anon_sym_DASH_GT_STAR] = ACTIONS(7345), }, - [STATE(2332)] = { - [sym__abstract_declarator] = STATE(4686), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2334), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2334), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7116), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7391), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7391), - [anon_sym_or_eq] = ACTIONS(7391), - [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), - }, - [STATE(2333)] = { - [sym_type_qualifier] = STATE(2341), - [sym_alignas_qualifier] = STATE(2452), - [aux_sym__type_definition_type_repeat1] = STATE(2341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6752), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6752), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym___extension__] = ACTIONS(6717), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_RBRACK] = ACTIONS(6754), - [anon_sym_EQ] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(6725), - [anon_sym_constexpr] = ACTIONS(6717), - [anon_sym_volatile] = ACTIONS(6717), - [anon_sym_restrict] = ACTIONS(6717), - [anon_sym___restrict__] = ACTIONS(6717), - [anon_sym__Atomic] = ACTIONS(6717), - [anon_sym__Noreturn] = ACTIONS(6717), - [anon_sym_noreturn] = ACTIONS(6717), - [anon_sym__Nonnull] = ACTIONS(6717), - [anon_sym_mutable] = ACTIONS(6717), - [anon_sym_constinit] = ACTIONS(6717), - [anon_sym_consteval] = ACTIONS(6717), - [anon_sym_alignas] = ACTIONS(6727), - [anon_sym__Alignas] = ACTIONS(6727), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_STAR_EQ] = ACTIONS(6754), - [anon_sym_SLASH_EQ] = ACTIONS(6754), - [anon_sym_PERCENT_EQ] = ACTIONS(6754), - [anon_sym_PLUS_EQ] = ACTIONS(6754), - [anon_sym_DASH_EQ] = ACTIONS(6754), - [anon_sym_LT_LT_EQ] = ACTIONS(6754), - [anon_sym_GT_GT_EQ] = ACTIONS(6754), - [anon_sym_AMP_EQ] = ACTIONS(6754), - [anon_sym_CARET_EQ] = ACTIONS(6754), - [anon_sym_PIPE_EQ] = ACTIONS(6754), - [anon_sym_and_eq] = ACTIONS(6754), - [anon_sym_or_eq] = ACTIONS(6754), - [anon_sym_xor_eq] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6752), - [anon_sym_and] = ACTIONS(6752), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6752), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), - }, - [STATE(2334)] = { - [sym__abstract_declarator] = STATE(4761), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(7116), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7351), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), + [STATE(2318)] = { + [sym_decltype_auto] = STATE(2967), + [sym_template_argument_list] = STATE(2434), + [aux_sym_sized_type_specifier_repeat1] = STATE(2416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5617), + [anon_sym_RPAREN] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_PERCENT] = ACTIONS(5609), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_EQ_EQ] = ACTIONS(5617), + [anon_sym_BANG_EQ] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_GT_EQ] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(8011), + [anon_sym_LT_LT] = ACTIONS(5609), + [anon_sym_GT_GT] = ACTIONS(5609), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(6931), + [anon_sym_unsigned] = ACTIONS(6931), + [anon_sym_long] = ACTIONS(6931), + [anon_sym_short] = ACTIONS(6931), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_EQ] = ACTIONS(5609), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_STAR_EQ] = ACTIONS(5617), + [anon_sym_SLASH_EQ] = ACTIONS(5617), + [anon_sym_PERCENT_EQ] = ACTIONS(5617), + [anon_sym_PLUS_EQ] = ACTIONS(5617), + [anon_sym_DASH_EQ] = ACTIONS(5617), + [anon_sym_LT_LT_EQ] = ACTIONS(5617), + [anon_sym_GT_GT_EQ] = ACTIONS(5617), + [anon_sym_AMP_EQ] = ACTIONS(5617), + [anon_sym_CARET_EQ] = ACTIONS(5617), + [anon_sym_PIPE_EQ] = ACTIONS(5617), + [anon_sym_and_eq] = ACTIONS(5617), + [anon_sym_or_eq] = ACTIONS(5617), + [anon_sym_xor_eq] = ACTIONS(5617), + [anon_sym_LT_EQ_GT] = ACTIONS(5617), + [anon_sym_or] = ACTIONS(5609), + [anon_sym_and] = ACTIONS(5609), + [anon_sym_bitor] = ACTIONS(5617), + [anon_sym_xor] = ACTIONS(5609), + [anon_sym_bitand] = ACTIONS(5617), + [anon_sym_not_eq] = ACTIONS(5617), + [anon_sym_DASH_DASH] = ACTIONS(5617), + [anon_sym_PLUS_PLUS] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_DOT_STAR] = ACTIONS(5617), + [anon_sym_DASH_GT] = ACTIONS(5609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6933), + [anon_sym_decltype] = ACTIONS(6935), + [anon_sym_final] = ACTIONS(5617), + [anon_sym_override] = ACTIONS(5617), + [anon_sym_requires] = ACTIONS(5617), + [anon_sym_DASH_GT_STAR] = ACTIONS(5617), }, - [STATE(2335)] = { - [sym__abstract_declarator] = STATE(4703), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2339), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7116), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7343), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), + [STATE(2319)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2556), + [sym__function_attributes_end] = STATE(3847), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3067), + [sym_noexcept] = STATE(2556), + [sym_throw_specifier] = STATE(2556), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(7972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7970), + [anon_sym_RBRACE] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7974), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(6545), + [anon_sym_COLON_RBRACK] = ACTIONS(7970), }, - [STATE(2336)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_RPAREN] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6632), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6632), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6632), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6632), - [anon_sym_GT_GT] = ACTIONS(6632), - [anon_sym_SEMI] = ACTIONS(6634), - [anon_sym___extension__] = ACTIONS(6634), - [anon_sym___attribute__] = ACTIONS(6634), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6632), - [anon_sym_EQ] = ACTIONS(6632), + [STATE(2320)] = { + [sym_type_qualifier] = STATE(2298), + [sym_alignas_qualifier] = STATE(2413), + [aux_sym__type_definition_type_repeat1] = STATE(2298), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6872), + [anon_sym_COMMA] = ACTIONS(6872), + [anon_sym_RPAREN] = ACTIONS(6872), + [anon_sym_LPAREN2] = ACTIONS(6872), + [anon_sym_DASH] = ACTIONS(6870), + [anon_sym_PLUS] = ACTIONS(6870), + [anon_sym_STAR] = ACTIONS(6870), + [anon_sym_SLASH] = ACTIONS(6870), + [anon_sym_PERCENT] = ACTIONS(6870), + [anon_sym_PIPE_PIPE] = ACTIONS(6872), + [anon_sym_AMP_AMP] = ACTIONS(6872), + [anon_sym_PIPE] = ACTIONS(6870), + [anon_sym_CARET] = ACTIONS(6870), + [anon_sym_AMP] = ACTIONS(6870), + [anon_sym_EQ_EQ] = ACTIONS(6872), + [anon_sym_BANG_EQ] = ACTIONS(6872), + [anon_sym_GT] = ACTIONS(6870), + [anon_sym_GT_EQ] = ACTIONS(6872), + [anon_sym_LT_EQ] = ACTIONS(6870), + [anon_sym_LT] = ACTIONS(6870), + [anon_sym_LT_LT] = ACTIONS(6870), + [anon_sym_GT_GT] = ACTIONS(6870), + [anon_sym___extension__] = ACTIONS(6624), + [anon_sym___attribute__] = ACTIONS(6872), + [anon_sym___attribute] = ACTIONS(6870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6872), + [anon_sym_LBRACK] = ACTIONS(6870), + [anon_sym_EQ] = ACTIONS(6870), [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6634), - [anon_sym_volatile] = ACTIONS(6634), - [anon_sym_restrict] = ACTIONS(6634), - [anon_sym___restrict__] = ACTIONS(6634), - [anon_sym__Atomic] = ACTIONS(6634), - [anon_sym__Noreturn] = ACTIONS(6634), - [anon_sym_noreturn] = ACTIONS(6634), - [anon_sym__Nonnull] = ACTIONS(6634), - [anon_sym_mutable] = ACTIONS(6634), - [anon_sym_constinit] = ACTIONS(6634), - [anon_sym_consteval] = ACTIONS(6634), + [anon_sym_constexpr] = ACTIONS(6624), + [anon_sym_volatile] = ACTIONS(6624), + [anon_sym_restrict] = ACTIONS(6624), + [anon_sym___restrict__] = ACTIONS(6624), + [anon_sym__Atomic] = ACTIONS(6624), + [anon_sym__Noreturn] = ACTIONS(6624), + [anon_sym_noreturn] = ACTIONS(6624), + [anon_sym__Nonnull] = ACTIONS(6624), + [anon_sym_mutable] = ACTIONS(6624), + [anon_sym_constinit] = ACTIONS(6624), + [anon_sym_consteval] = ACTIONS(6624), [anon_sym_alignas] = ACTIONS(6634), [anon_sym__Alignas] = ACTIONS(6634), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_STAR_EQ] = ACTIONS(6634), - [anon_sym_SLASH_EQ] = ACTIONS(6634), - [anon_sym_PERCENT_EQ] = ACTIONS(6634), - [anon_sym_PLUS_EQ] = ACTIONS(6634), - [anon_sym_DASH_EQ] = ACTIONS(6634), - [anon_sym_LT_LT_EQ] = ACTIONS(6634), - [anon_sym_GT_GT_EQ] = ACTIONS(6634), - [anon_sym_AMP_EQ] = ACTIONS(6634), - [anon_sym_CARET_EQ] = ACTIONS(6634), - [anon_sym_PIPE_EQ] = ACTIONS(6634), - [anon_sym_and_eq] = ACTIONS(6634), - [anon_sym_or_eq] = ACTIONS(6634), - [anon_sym_xor_eq] = ACTIONS(6634), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6634), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6634), - [anon_sym_not_eq] = ACTIONS(6634), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_asm] = ACTIONS(6634), - [anon_sym___asm__] = ACTIONS(6634), - [anon_sym___asm] = ACTIONS(6632), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6632), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6634), - [anon_sym_decltype] = ACTIONS(6634), - [anon_sym_try] = ACTIONS(6634), - [anon_sym_DASH_GT_STAR] = ACTIONS(6634), + [anon_sym_QMARK] = ACTIONS(6872), + [anon_sym_STAR_EQ] = ACTIONS(6872), + [anon_sym_SLASH_EQ] = ACTIONS(6872), + [anon_sym_PERCENT_EQ] = ACTIONS(6872), + [anon_sym_PLUS_EQ] = ACTIONS(6872), + [anon_sym_DASH_EQ] = ACTIONS(6872), + [anon_sym_LT_LT_EQ] = ACTIONS(6872), + [anon_sym_GT_GT_EQ] = ACTIONS(6872), + [anon_sym_AMP_EQ] = ACTIONS(6872), + [anon_sym_CARET_EQ] = ACTIONS(6872), + [anon_sym_PIPE_EQ] = ACTIONS(6872), + [anon_sym_and_eq] = ACTIONS(6872), + [anon_sym_or_eq] = ACTIONS(6872), + [anon_sym_xor_eq] = ACTIONS(6872), + [anon_sym_LT_EQ_GT] = ACTIONS(6872), + [anon_sym_or] = ACTIONS(6870), + [anon_sym_and] = ACTIONS(6870), + [anon_sym_bitor] = ACTIONS(6872), + [anon_sym_xor] = ACTIONS(6870), + [anon_sym_bitand] = ACTIONS(6872), + [anon_sym_not_eq] = ACTIONS(6872), + [anon_sym_DASH_DASH] = ACTIONS(6872), + [anon_sym_PLUS_PLUS] = ACTIONS(6872), + [anon_sym_asm] = ACTIONS(6872), + [anon_sym___asm__] = ACTIONS(6872), + [anon_sym___asm] = ACTIONS(6870), + [anon_sym_DOT] = ACTIONS(6870), + [anon_sym_DOT_STAR] = ACTIONS(6872), + [anon_sym_DASH_GT] = ACTIONS(6870), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6872), + [anon_sym_override] = ACTIONS(6872), + [anon_sym_noexcept] = ACTIONS(6872), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6872), + [anon_sym_DASH_GT_STAR] = ACTIONS(6872), }, - [STATE(2337)] = { - [sym_type_qualifier] = STATE(2341), - [sym_alignas_qualifier] = STATE(2452), - [aux_sym__type_definition_type_repeat1] = STATE(2341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), - [anon_sym_COMMA] = ACTIONS(6901), - [anon_sym_LPAREN2] = ACTIONS(6901), - [anon_sym_DASH] = ACTIONS(6899), - [anon_sym_PLUS] = ACTIONS(6899), - [anon_sym_STAR] = ACTIONS(6899), - [anon_sym_SLASH] = ACTIONS(6899), - [anon_sym_PERCENT] = ACTIONS(6899), - [anon_sym_PIPE_PIPE] = ACTIONS(6901), - [anon_sym_AMP_AMP] = ACTIONS(6901), - [anon_sym_PIPE] = ACTIONS(6899), - [anon_sym_CARET] = ACTIONS(6899), - [anon_sym_AMP] = ACTIONS(6899), - [anon_sym_EQ_EQ] = ACTIONS(6901), - [anon_sym_BANG_EQ] = ACTIONS(6901), - [anon_sym_GT] = ACTIONS(6899), - [anon_sym_GT_EQ] = ACTIONS(6901), - [anon_sym_LT_EQ] = ACTIONS(6899), - [anon_sym_LT] = ACTIONS(6899), - [anon_sym_LT_LT] = ACTIONS(6899), - [anon_sym_GT_GT] = ACTIONS(6899), - [anon_sym___extension__] = ACTIONS(6717), - [anon_sym___attribute__] = ACTIONS(6901), - [anon_sym___attribute] = ACTIONS(6899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(6899), - [anon_sym_RBRACK] = ACTIONS(6901), - [anon_sym_EQ] = ACTIONS(6899), - [anon_sym_const] = ACTIONS(6725), - [anon_sym_constexpr] = ACTIONS(6717), - [anon_sym_volatile] = ACTIONS(6717), - [anon_sym_restrict] = ACTIONS(6717), - [anon_sym___restrict__] = ACTIONS(6717), - [anon_sym__Atomic] = ACTIONS(6717), - [anon_sym__Noreturn] = ACTIONS(6717), - [anon_sym_noreturn] = ACTIONS(6717), - [anon_sym__Nonnull] = ACTIONS(6717), - [anon_sym_mutable] = ACTIONS(6717), - [anon_sym_constinit] = ACTIONS(6717), - [anon_sym_consteval] = ACTIONS(6717), - [anon_sym_alignas] = ACTIONS(6727), - [anon_sym__Alignas] = ACTIONS(6727), - [anon_sym_QMARK] = ACTIONS(6901), - [anon_sym_STAR_EQ] = ACTIONS(6901), - [anon_sym_SLASH_EQ] = ACTIONS(6901), - [anon_sym_PERCENT_EQ] = ACTIONS(6901), - [anon_sym_PLUS_EQ] = ACTIONS(6901), - [anon_sym_DASH_EQ] = ACTIONS(6901), - [anon_sym_LT_LT_EQ] = ACTIONS(6901), - [anon_sym_GT_GT_EQ] = ACTIONS(6901), - [anon_sym_AMP_EQ] = ACTIONS(6901), - [anon_sym_CARET_EQ] = ACTIONS(6901), - [anon_sym_PIPE_EQ] = ACTIONS(6901), - [anon_sym_and_eq] = ACTIONS(6901), - [anon_sym_or_eq] = ACTIONS(6901), - [anon_sym_xor_eq] = ACTIONS(6901), - [anon_sym_LT_EQ_GT] = ACTIONS(6901), - [anon_sym_or] = ACTIONS(6899), - [anon_sym_and] = ACTIONS(6899), - [anon_sym_bitor] = ACTIONS(6901), - [anon_sym_xor] = ACTIONS(6899), - [anon_sym_bitand] = ACTIONS(6901), - [anon_sym_not_eq] = ACTIONS(6901), - [anon_sym_DASH_DASH] = ACTIONS(6901), - [anon_sym_PLUS_PLUS] = ACTIONS(6901), - [anon_sym_asm] = ACTIONS(6901), - [anon_sym___asm__] = ACTIONS(6901), - [anon_sym___asm] = ACTIONS(6899), - [anon_sym_DOT] = ACTIONS(6899), - [anon_sym_DOT_STAR] = ACTIONS(6901), - [anon_sym_DASH_GT] = ACTIONS(6901), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6901), - [anon_sym_override] = ACTIONS(6901), - [anon_sym_noexcept] = ACTIONS(6901), - [anon_sym_throw] = ACTIONS(6901), - [anon_sym_requires] = ACTIONS(6901), + [STATE(2321)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2549), + [sym__function_attributes_end] = STATE(3919), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3033), + [sym_noexcept] = STATE(2549), + [sym_throw_specifier] = STATE(2549), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7876), + [anon_sym_or_eq] = ACTIONS(7876), + [anon_sym_xor_eq] = ACTIONS(7876), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7949), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_noexcept] = ACTIONS(6495), + [anon_sym_throw] = ACTIONS(6497), + [anon_sym_requires] = ACTIONS(6557), }, - [STATE(2338)] = { - [sym__abstract_declarator] = STATE(4680), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7116), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(6823), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), + [STATE(2322)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(10378), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_explicit_object_parameter_declaration] = STATE(10378), + [sym_optional_parameter_declaration] = STATE(10378), + [sym_variadic_parameter_declaration] = STATE(10378), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8013), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + [sym_this] = ACTIONS(5673), }, - [STATE(2339)] = { - [sym__abstract_declarator] = STATE(4732), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(7116), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7355), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7355), - [anon_sym_or_eq] = ACTIONS(7355), - [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), + [STATE(2323)] = { + [sym__abstract_declarator] = STATE(4737), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2330), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2330), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7367), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7367), + [anon_sym_or_eq] = ACTIONS(7367), + [anon_sym_xor_eq] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7367), + [anon_sym_override] = ACTIONS(7367), + [anon_sym_requires] = ACTIONS(7367), }, - [STATE(2340)] = { - [sym__abstract_declarator] = STATE(4682), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1977), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7116), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7118), - [anon_sym_EQ_EQ] = ACTIONS(7345), - [anon_sym_BANG_EQ] = ACTIONS(7345), - [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ] = ACTIONS(7347), - [anon_sym_LT] = ACTIONS(7347), - [anon_sym_LT_LT] = ACTIONS(7347), - [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7345), - [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7345), - [anon_sym_STAR_EQ] = ACTIONS(7345), - [anon_sym_SLASH_EQ] = ACTIONS(7345), - [anon_sym_PERCENT_EQ] = ACTIONS(7345), - [anon_sym_PLUS_EQ] = ACTIONS(7345), - [anon_sym_DASH_EQ] = ACTIONS(7345), - [anon_sym_LT_LT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_EQ] = ACTIONS(7345), - [anon_sym_AMP_EQ] = ACTIONS(7345), - [anon_sym_CARET_EQ] = ACTIONS(7345), - [anon_sym_PIPE_EQ] = ACTIONS(7345), - [anon_sym_and_eq] = ACTIONS(7345), - [anon_sym_or_eq] = ACTIONS(7345), - [anon_sym_xor_eq] = ACTIONS(7345), - [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [STATE(2324)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2328), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_RPAREN] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8015), + [anon_sym_unsigned] = ACTIONS(8015), + [anon_sym_long] = ACTIONS(8015), + [anon_sym_short] = ACTIONS(8015), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7402), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_requires] = ACTIONS(7402), + [anon_sym_DASH_GT_STAR] = ACTIONS(7399), + }, + [STATE(2325)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_STAR_EQ] = ACTIONS(6616), + [anon_sym_SLASH_EQ] = ACTIONS(6616), + [anon_sym_PERCENT_EQ] = ACTIONS(6616), + [anon_sym_PLUS_EQ] = ACTIONS(6616), + [anon_sym_DASH_EQ] = ACTIONS(6616), + [anon_sym_LT_LT_EQ] = ACTIONS(6616), + [anon_sym_GT_GT_EQ] = ACTIONS(6616), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_and_eq] = ACTIONS(6616), + [anon_sym_or_eq] = ACTIONS(6616), + [anon_sym_xor_eq] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_asm] = ACTIONS(6616), + [anon_sym___asm__] = ACTIONS(6616), + [anon_sym___asm] = ACTIONS(6614), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_try] = ACTIONS(6616), + [anon_sym_DASH_GT_STAR] = ACTIONS(6616), + }, + [STATE(2326)] = { + [sym__abstract_declarator] = STATE(4656), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(6843), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + }, + [STATE(2327)] = { + [sym_type_qualifier] = STATE(2331), + [sym_alignas_qualifier] = STATE(2365), + [aux_sym__type_definition_type_repeat1] = STATE(2331), + [aux_sym_sized_type_specifier_repeat1] = STATE(2440), + [sym_identifier] = ACTIONS(7572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_RPAREN] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(6993), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(8018), + [anon_sym_unsigned] = ACTIONS(8018), + [anon_sym_long] = ACTIONS(8018), + [anon_sym_short] = ACTIONS(8018), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6993), + [anon_sym_volatile] = ACTIONS(6993), + [anon_sym_restrict] = ACTIONS(6993), + [anon_sym___restrict__] = ACTIONS(6993), + [anon_sym__Atomic] = ACTIONS(6993), + [anon_sym__Noreturn] = ACTIONS(6993), + [anon_sym_noreturn] = ACTIONS(6993), + [anon_sym__Nonnull] = ACTIONS(6993), + [anon_sym_mutable] = ACTIONS(6993), + [anon_sym_constinit] = ACTIONS(6993), + [anon_sym_consteval] = ACTIONS(6993), + [anon_sym_alignas] = ACTIONS(8020), + [anon_sym__Alignas] = ACTIONS(8020), + [sym_primitive_type] = ACTIONS(7582), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7211), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7209), + }, + [STATE(2328)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2328), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7062), + [anon_sym_COMMA] = ACTIONS(7062), + [anon_sym_RPAREN] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(7062), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7060), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7060), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7062), + [anon_sym_LT_EQ] = ACTIONS(7060), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7060), + [anon_sym_GT_GT] = ACTIONS(7060), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym_LBRACE] = ACTIONS(7062), + [anon_sym_signed] = ACTIONS(8015), + [anon_sym_unsigned] = ACTIONS(8015), + [anon_sym_long] = ACTIONS(8015), + [anon_sym_short] = ACTIONS(8015), + [anon_sym_LBRACK] = ACTIONS(7062), + [anon_sym_EQ] = ACTIONS(7060), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_STAR_EQ] = ACTIONS(7062), + [anon_sym_SLASH_EQ] = ACTIONS(7062), + [anon_sym_PERCENT_EQ] = ACTIONS(7062), + [anon_sym_PLUS_EQ] = ACTIONS(7062), + [anon_sym_DASH_EQ] = ACTIONS(7062), + [anon_sym_LT_LT_EQ] = ACTIONS(7062), + [anon_sym_GT_GT_EQ] = ACTIONS(7062), + [anon_sym_AMP_EQ] = ACTIONS(7062), + [anon_sym_CARET_EQ] = ACTIONS(7062), + [anon_sym_PIPE_EQ] = ACTIONS(7062), + [anon_sym_and_eq] = ACTIONS(7060), + [anon_sym_or_eq] = ACTIONS(7060), + [anon_sym_xor_eq] = ACTIONS(7060), + [anon_sym_LT_EQ_GT] = ACTIONS(7062), + [anon_sym_or] = ACTIONS(7060), + [anon_sym_and] = ACTIONS(7060), + [anon_sym_bitor] = ACTIONS(7060), + [anon_sym_xor] = ACTIONS(7060), + [anon_sym_bitand] = ACTIONS(7060), + [anon_sym_not_eq] = ACTIONS(7060), + [anon_sym_DASH_DASH] = ACTIONS(7062), + [anon_sym_PLUS_PLUS] = ACTIONS(7062), + [anon_sym_DOT] = ACTIONS(7060), + [anon_sym_DOT_STAR] = ACTIONS(7062), + [anon_sym_DASH_GT] = ACTIONS(7060), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7060), + [anon_sym_override] = ACTIONS(7060), + [anon_sym_requires] = ACTIONS(7060), + [anon_sym_DASH_GT_STAR] = ACTIONS(7062), + }, + [STATE(2329)] = { + [sym_decltype_auto] = STATE(3142), + [sym_template_argument_list] = STATE(2526), + [aux_sym_sized_type_specifier_repeat1] = STATE(2198), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_PERCENT] = ACTIONS(5609), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_EQ_EQ] = ACTIONS(5617), + [anon_sym_BANG_EQ] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_GT_EQ] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(8022), + [anon_sym_LT_LT] = ACTIONS(5609), + [anon_sym_GT_GT] = ACTIONS(5609), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(7050), + [anon_sym_unsigned] = ACTIONS(7050), + [anon_sym_long] = ACTIONS(7050), + [anon_sym_short] = ACTIONS(7050), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_RBRACK] = ACTIONS(5617), + [anon_sym_EQ] = ACTIONS(5609), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_STAR_EQ] = ACTIONS(5617), + [anon_sym_SLASH_EQ] = ACTIONS(5617), + [anon_sym_PERCENT_EQ] = ACTIONS(5617), + [anon_sym_PLUS_EQ] = ACTIONS(5617), + [anon_sym_DASH_EQ] = ACTIONS(5617), + [anon_sym_LT_LT_EQ] = ACTIONS(5617), + [anon_sym_GT_GT_EQ] = ACTIONS(5617), + [anon_sym_AMP_EQ] = ACTIONS(5617), + [anon_sym_CARET_EQ] = ACTIONS(5617), + [anon_sym_PIPE_EQ] = ACTIONS(5617), + [anon_sym_and_eq] = ACTIONS(5617), + [anon_sym_or_eq] = ACTIONS(5617), + [anon_sym_xor_eq] = ACTIONS(5617), + [anon_sym_LT_EQ_GT] = ACTIONS(5617), + [anon_sym_or] = ACTIONS(5609), + [anon_sym_and] = ACTIONS(5609), + [anon_sym_bitor] = ACTIONS(5617), + [anon_sym_xor] = ACTIONS(5609), + [anon_sym_bitand] = ACTIONS(5617), + [anon_sym_not_eq] = ACTIONS(5617), + [anon_sym_DASH_DASH] = ACTIONS(5617), + [anon_sym_PLUS_PLUS] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_DOT_STAR] = ACTIONS(5617), + [anon_sym_DASH_GT] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7054), + [anon_sym_decltype] = ACTIONS(7056), + [anon_sym_final] = ACTIONS(5617), + [anon_sym_override] = ACTIONS(5617), + [anon_sym_requires] = ACTIONS(5617), + }, + [STATE(2330)] = { + [sym__abstract_declarator] = STATE(4741), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7371), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), + }, + [STATE(2331)] = { + [sym_type_qualifier] = STATE(2272), + [sym_alignas_qualifier] = STATE(2365), + [aux_sym__type_definition_type_repeat1] = STATE(2272), + [aux_sym_sized_type_specifier_repeat1] = STATE(2427), + [sym_identifier] = ACTIONS(7626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(6993), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7631), + [anon_sym_unsigned] = ACTIONS(7631), + [anon_sym_long] = ACTIONS(7631), + [anon_sym_short] = ACTIONS(7631), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6993), + [anon_sym_volatile] = ACTIONS(6993), + [anon_sym_restrict] = ACTIONS(6993), + [anon_sym___restrict__] = ACTIONS(6993), + [anon_sym__Atomic] = ACTIONS(6993), + [anon_sym__Noreturn] = ACTIONS(6993), + [anon_sym_noreturn] = ACTIONS(6993), + [anon_sym__Nonnull] = ACTIONS(6993), + [anon_sym_mutable] = ACTIONS(6993), + [anon_sym_constinit] = ACTIONS(6993), + [anon_sym_consteval] = ACTIONS(6993), + [anon_sym_alignas] = ACTIONS(8020), + [anon_sym__Alignas] = ACTIONS(8020), + [sym_primitive_type] = ACTIONS(7636), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7195), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7193), + }, + [STATE(2332)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_RPAREN] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6590), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6590), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6590), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6590), + [anon_sym_GT_GT] = ACTIONS(6590), + [anon_sym_SEMI] = ACTIONS(6592), + [anon_sym___extension__] = ACTIONS(6592), + [anon_sym___attribute__] = ACTIONS(6592), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6592), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6590), + [anon_sym_EQ] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6592), + [anon_sym_volatile] = ACTIONS(6592), + [anon_sym_restrict] = ACTIONS(6592), + [anon_sym___restrict__] = ACTIONS(6592), + [anon_sym__Atomic] = ACTIONS(6592), + [anon_sym__Noreturn] = ACTIONS(6592), + [anon_sym_noreturn] = ACTIONS(6592), + [anon_sym__Nonnull] = ACTIONS(6592), + [anon_sym_mutable] = ACTIONS(6592), + [anon_sym_constinit] = ACTIONS(6592), + [anon_sym_consteval] = ACTIONS(6592), + [anon_sym_alignas] = ACTIONS(6592), + [anon_sym__Alignas] = ACTIONS(6592), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_STAR_EQ] = ACTIONS(6592), + [anon_sym_SLASH_EQ] = ACTIONS(6592), + [anon_sym_PERCENT_EQ] = ACTIONS(6592), + [anon_sym_PLUS_EQ] = ACTIONS(6592), + [anon_sym_DASH_EQ] = ACTIONS(6592), + [anon_sym_LT_LT_EQ] = ACTIONS(6592), + [anon_sym_GT_GT_EQ] = ACTIONS(6592), + [anon_sym_AMP_EQ] = ACTIONS(6592), + [anon_sym_CARET_EQ] = ACTIONS(6592), + [anon_sym_PIPE_EQ] = ACTIONS(6592), + [anon_sym_and_eq] = ACTIONS(6592), + [anon_sym_or_eq] = ACTIONS(6592), + [anon_sym_xor_eq] = ACTIONS(6592), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6592), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6592), + [anon_sym_not_eq] = ACTIONS(6592), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_asm] = ACTIONS(6592), + [anon_sym___asm__] = ACTIONS(6592), + [anon_sym___asm] = ACTIONS(6590), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6592), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_try] = ACTIONS(6592), + [anon_sym_DASH_GT_STAR] = ACTIONS(6592), + }, + [STATE(2333)] = { + [sym_attribute_specifier] = STATE(2196), + [sym_enumerator_list] = STATE(2157), + [sym__enum_base_clause] = STATE(2124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8003), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_RPAREN] = ACTIONS(8003), + [anon_sym_LPAREN2] = ACTIONS(8003), + [anon_sym_DASH] = ACTIONS(8001), + [anon_sym_PLUS] = ACTIONS(8001), + [anon_sym_STAR] = ACTIONS(8001), + [anon_sym_SLASH] = ACTIONS(8001), + [anon_sym_PERCENT] = ACTIONS(8001), + [anon_sym_PIPE_PIPE] = ACTIONS(8003), + [anon_sym_AMP_AMP] = ACTIONS(8003), + [anon_sym_PIPE] = ACTIONS(8001), + [anon_sym_CARET] = ACTIONS(8001), + [anon_sym_AMP] = ACTIONS(8001), + [anon_sym_EQ_EQ] = ACTIONS(8003), + [anon_sym_BANG_EQ] = ACTIONS(8003), + [anon_sym_GT] = ACTIONS(8001), + [anon_sym_GT_EQ] = ACTIONS(8003), + [anon_sym_LT_EQ] = ACTIONS(8001), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_LT_LT] = ACTIONS(8001), + [anon_sym_GT_GT] = ACTIONS(8001), + [anon_sym_SEMI] = ACTIONS(8003), + [anon_sym___extension__] = ACTIONS(8003), + [anon_sym___attribute__] = ACTIONS(8024), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(8026), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8003), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_RBRACE] = ACTIONS(8003), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_EQ] = ACTIONS(8001), + [anon_sym_const] = ACTIONS(8001), + [anon_sym_constexpr] = ACTIONS(8003), + [anon_sym_volatile] = ACTIONS(8003), + [anon_sym_restrict] = ACTIONS(8003), + [anon_sym___restrict__] = ACTIONS(8003), + [anon_sym__Atomic] = ACTIONS(8003), + [anon_sym__Noreturn] = ACTIONS(8003), + [anon_sym_noreturn] = ACTIONS(8003), + [anon_sym__Nonnull] = ACTIONS(8003), + [anon_sym_mutable] = ACTIONS(8003), + [anon_sym_constinit] = ACTIONS(8003), + [anon_sym_consteval] = ACTIONS(8003), + [anon_sym_alignas] = ACTIONS(8003), + [anon_sym__Alignas] = ACTIONS(8003), + [anon_sym_QMARK] = ACTIONS(8003), + [anon_sym_STAR_EQ] = ACTIONS(8003), + [anon_sym_SLASH_EQ] = ACTIONS(8003), + [anon_sym_PERCENT_EQ] = ACTIONS(8003), + [anon_sym_PLUS_EQ] = ACTIONS(8003), + [anon_sym_DASH_EQ] = ACTIONS(8003), + [anon_sym_LT_LT_EQ] = ACTIONS(8003), + [anon_sym_GT_GT_EQ] = ACTIONS(8003), + [anon_sym_AMP_EQ] = ACTIONS(8003), + [anon_sym_CARET_EQ] = ACTIONS(8003), + [anon_sym_PIPE_EQ] = ACTIONS(8003), + [anon_sym_and_eq] = ACTIONS(8003), + [anon_sym_or_eq] = ACTIONS(8003), + [anon_sym_xor_eq] = ACTIONS(8003), + [anon_sym_LT_EQ_GT] = ACTIONS(8003), + [anon_sym_or] = ACTIONS(8001), + [anon_sym_and] = ACTIONS(8001), + [anon_sym_bitor] = ACTIONS(8003), + [anon_sym_xor] = ACTIONS(8001), + [anon_sym_bitand] = ACTIONS(8003), + [anon_sym_not_eq] = ACTIONS(8003), + [anon_sym_DASH_DASH] = ACTIONS(8003), + [anon_sym_PLUS_PLUS] = ACTIONS(8003), + [anon_sym_DOT] = ACTIONS(8001), + [anon_sym_DOT_STAR] = ACTIONS(8003), + [anon_sym_DASH_GT] = ACTIONS(8003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8003), + [anon_sym_override] = ACTIONS(8003), + [anon_sym_requires] = ACTIONS(8003), + [anon_sym_COLON_RBRACK] = ACTIONS(8003), + }, + [STATE(2334)] = { + [sym_attribute_specifier] = STATE(2210), + [sym_enumerator_list] = STATE(2161), + [sym__enum_base_clause] = STATE(2118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8009), + [anon_sym_COMMA] = ACTIONS(8009), + [anon_sym_RPAREN] = ACTIONS(8009), + [anon_sym_LPAREN2] = ACTIONS(8009), + [anon_sym_DASH] = ACTIONS(8007), + [anon_sym_PLUS] = ACTIONS(8007), + [anon_sym_STAR] = ACTIONS(8007), + [anon_sym_SLASH] = ACTIONS(8007), + [anon_sym_PERCENT] = ACTIONS(8007), + [anon_sym_PIPE_PIPE] = ACTIONS(8009), + [anon_sym_AMP_AMP] = ACTIONS(8009), + [anon_sym_PIPE] = ACTIONS(8007), + [anon_sym_CARET] = ACTIONS(8007), + [anon_sym_AMP] = ACTIONS(8007), + [anon_sym_EQ_EQ] = ACTIONS(8009), + [anon_sym_BANG_EQ] = ACTIONS(8009), + [anon_sym_GT] = ACTIONS(8007), + [anon_sym_GT_EQ] = ACTIONS(8009), + [anon_sym_LT_EQ] = ACTIONS(8007), + [anon_sym_LT] = ACTIONS(8007), + [anon_sym_LT_LT] = ACTIONS(8007), + [anon_sym_GT_GT] = ACTIONS(8007), + [anon_sym_SEMI] = ACTIONS(8009), + [anon_sym___extension__] = ACTIONS(8009), + [anon_sym___attribute__] = ACTIONS(8024), + [anon_sym___attribute] = ACTIONS(7258), + [anon_sym_COLON] = ACTIONS(8026), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8009), + [anon_sym_LBRACE] = ACTIONS(7385), + [anon_sym_RBRACE] = ACTIONS(8009), + [anon_sym_LBRACK] = ACTIONS(8009), + [anon_sym_EQ] = ACTIONS(8007), + [anon_sym_const] = ACTIONS(8007), + [anon_sym_constexpr] = ACTIONS(8009), + [anon_sym_volatile] = ACTIONS(8009), + [anon_sym_restrict] = ACTIONS(8009), + [anon_sym___restrict__] = ACTIONS(8009), + [anon_sym__Atomic] = ACTIONS(8009), + [anon_sym__Noreturn] = ACTIONS(8009), + [anon_sym_noreturn] = ACTIONS(8009), + [anon_sym__Nonnull] = ACTIONS(8009), + [anon_sym_mutable] = ACTIONS(8009), + [anon_sym_constinit] = ACTIONS(8009), + [anon_sym_consteval] = ACTIONS(8009), + [anon_sym_alignas] = ACTIONS(8009), + [anon_sym__Alignas] = ACTIONS(8009), + [anon_sym_QMARK] = ACTIONS(8009), + [anon_sym_STAR_EQ] = ACTIONS(8009), + [anon_sym_SLASH_EQ] = ACTIONS(8009), + [anon_sym_PERCENT_EQ] = ACTIONS(8009), + [anon_sym_PLUS_EQ] = ACTIONS(8009), + [anon_sym_DASH_EQ] = ACTIONS(8009), + [anon_sym_LT_LT_EQ] = ACTIONS(8009), + [anon_sym_GT_GT_EQ] = ACTIONS(8009), + [anon_sym_AMP_EQ] = ACTIONS(8009), + [anon_sym_CARET_EQ] = ACTIONS(8009), + [anon_sym_PIPE_EQ] = ACTIONS(8009), + [anon_sym_and_eq] = ACTIONS(8009), + [anon_sym_or_eq] = ACTIONS(8009), + [anon_sym_xor_eq] = ACTIONS(8009), + [anon_sym_LT_EQ_GT] = ACTIONS(8009), + [anon_sym_or] = ACTIONS(8007), + [anon_sym_and] = ACTIONS(8007), + [anon_sym_bitor] = ACTIONS(8009), + [anon_sym_xor] = ACTIONS(8007), + [anon_sym_bitand] = ACTIONS(8009), + [anon_sym_not_eq] = ACTIONS(8009), + [anon_sym_DASH_DASH] = ACTIONS(8009), + [anon_sym_PLUS_PLUS] = ACTIONS(8009), + [anon_sym_DOT] = ACTIONS(8007), + [anon_sym_DOT_STAR] = ACTIONS(8009), + [anon_sym_DASH_GT] = ACTIONS(8009), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8009), + [anon_sym_override] = ACTIONS(8009), + [anon_sym_requires] = ACTIONS(8009), + [anon_sym_COLON_RBRACK] = ACTIONS(8009), + }, + [STATE(2335)] = { + [sym__abstract_declarator] = STATE(4744), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7341), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_and_eq] = ACTIONS(7341), + [anon_sym_or_eq] = ACTIONS(7341), + [anon_sym_xor_eq] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), + }, + [STATE(2336)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6606), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym_SEMI] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6606), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_STAR_EQ] = ACTIONS(6608), + [anon_sym_SLASH_EQ] = ACTIONS(6608), + [anon_sym_PERCENT_EQ] = ACTIONS(6608), + [anon_sym_PLUS_EQ] = ACTIONS(6608), + [anon_sym_DASH_EQ] = ACTIONS(6608), + [anon_sym_LT_LT_EQ] = ACTIONS(6608), + [anon_sym_GT_GT_EQ] = ACTIONS(6608), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_and_eq] = ACTIONS(6608), + [anon_sym_or_eq] = ACTIONS(6608), + [anon_sym_xor_eq] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_asm] = ACTIONS(6608), + [anon_sym___asm__] = ACTIONS(6608), + [anon_sym___asm] = ACTIONS(6606), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6606), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_try] = ACTIONS(6608), + [anon_sym_DASH_GT_STAR] = ACTIONS(6608), + }, + [STATE(2337)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_RPAREN] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6586), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6586), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6586), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6586), + [anon_sym_GT_GT] = ACTIONS(6586), + [anon_sym_SEMI] = ACTIONS(6588), + [anon_sym___extension__] = ACTIONS(6588), + [anon_sym___attribute__] = ACTIONS(6588), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6588), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6586), + [anon_sym_EQ] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6588), + [anon_sym_volatile] = ACTIONS(6588), + [anon_sym_restrict] = ACTIONS(6588), + [anon_sym___restrict__] = ACTIONS(6588), + [anon_sym__Atomic] = ACTIONS(6588), + [anon_sym__Noreturn] = ACTIONS(6588), + [anon_sym_noreturn] = ACTIONS(6588), + [anon_sym__Nonnull] = ACTIONS(6588), + [anon_sym_mutable] = ACTIONS(6588), + [anon_sym_constinit] = ACTIONS(6588), + [anon_sym_consteval] = ACTIONS(6588), + [anon_sym_alignas] = ACTIONS(6588), + [anon_sym__Alignas] = ACTIONS(6588), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_STAR_EQ] = ACTIONS(6588), + [anon_sym_SLASH_EQ] = ACTIONS(6588), + [anon_sym_PERCENT_EQ] = ACTIONS(6588), + [anon_sym_PLUS_EQ] = ACTIONS(6588), + [anon_sym_DASH_EQ] = ACTIONS(6588), + [anon_sym_LT_LT_EQ] = ACTIONS(6588), + [anon_sym_GT_GT_EQ] = ACTIONS(6588), + [anon_sym_AMP_EQ] = ACTIONS(6588), + [anon_sym_CARET_EQ] = ACTIONS(6588), + [anon_sym_PIPE_EQ] = ACTIONS(6588), + [anon_sym_and_eq] = ACTIONS(6588), + [anon_sym_or_eq] = ACTIONS(6588), + [anon_sym_xor_eq] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6588), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6588), + [anon_sym_not_eq] = ACTIONS(6588), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_asm] = ACTIONS(6588), + [anon_sym___asm__] = ACTIONS(6588), + [anon_sym___asm] = ACTIONS(6586), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6588), + [anon_sym_decltype] = ACTIONS(6588), + [anon_sym_try] = ACTIONS(6588), + [anon_sym_DASH_GT_STAR] = ACTIONS(6588), + }, + [STATE(2338)] = { + [sym_type_qualifier] = STATE(2338), + [sym_alignas_qualifier] = STATE(2435), + [aux_sym__type_definition_type_repeat1] = STATE(2338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(8028), + [anon_sym___attribute__] = ACTIONS(6880), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6880), + [anon_sym_LBRACK] = ACTIONS(6878), + [anon_sym_RBRACK] = ACTIONS(6880), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(8031), + [anon_sym_constexpr] = ACTIONS(8028), + [anon_sym_volatile] = ACTIONS(8028), + [anon_sym_restrict] = ACTIONS(8028), + [anon_sym___restrict__] = ACTIONS(8028), + [anon_sym__Atomic] = ACTIONS(8028), + [anon_sym__Noreturn] = ACTIONS(8028), + [anon_sym_noreturn] = ACTIONS(8028), + [anon_sym__Nonnull] = ACTIONS(8028), + [anon_sym_mutable] = ACTIONS(8028), + [anon_sym_constinit] = ACTIONS(8028), + [anon_sym_consteval] = ACTIONS(8028), + [anon_sym_alignas] = ACTIONS(8034), + [anon_sym__Alignas] = ACTIONS(8034), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6880), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_and_eq] = ACTIONS(6880), + [anon_sym_or_eq] = ACTIONS(6880), + [anon_sym_xor_eq] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6880), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6880), + [anon_sym_not_eq] = ACTIONS(6880), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_asm] = ACTIONS(6880), + [anon_sym___asm__] = ACTIONS(6880), + [anon_sym___asm] = ACTIONS(6878), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6880), + [anon_sym_override] = ACTIONS(6880), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6880), + [anon_sym_requires] = ACTIONS(6880), + }, + [STATE(2339)] = { + [sym_attribute_specifier] = STATE(2339), + [aux_sym_type_definition_repeat1] = STATE(2339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6966), + [anon_sym_COMMA] = ACTIONS(6966), + [anon_sym_RPAREN] = ACTIONS(6966), + [anon_sym_LPAREN2] = ACTIONS(6966), + [anon_sym_DASH] = ACTIONS(6964), + [anon_sym_PLUS] = ACTIONS(6964), + [anon_sym_STAR] = ACTIONS(6964), + [anon_sym_SLASH] = ACTIONS(6964), + [anon_sym_PERCENT] = ACTIONS(6964), + [anon_sym_PIPE_PIPE] = ACTIONS(6966), + [anon_sym_AMP_AMP] = ACTIONS(6966), + [anon_sym_PIPE] = ACTIONS(6964), + [anon_sym_CARET] = ACTIONS(6964), + [anon_sym_AMP] = ACTIONS(6964), + [anon_sym_EQ_EQ] = ACTIONS(6966), + [anon_sym_BANG_EQ] = ACTIONS(6966), + [anon_sym_GT] = ACTIONS(6964), + [anon_sym_GT_EQ] = ACTIONS(6966), + [anon_sym_LT_EQ] = ACTIONS(6964), + [anon_sym_LT] = ACTIONS(6964), + [anon_sym_LT_LT] = ACTIONS(6964), + [anon_sym_GT_GT] = ACTIONS(6964), + [anon_sym___extension__] = ACTIONS(6966), + [anon_sym___attribute__] = ACTIONS(8037), + [anon_sym___attribute] = ACTIONS(8040), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6966), + [anon_sym_LBRACK] = ACTIONS(6964), + [anon_sym_EQ] = ACTIONS(6964), + [anon_sym_const] = ACTIONS(6964), + [anon_sym_constexpr] = ACTIONS(6966), + [anon_sym_volatile] = ACTIONS(6966), + [anon_sym_restrict] = ACTIONS(6966), + [anon_sym___restrict__] = ACTIONS(6966), + [anon_sym__Atomic] = ACTIONS(6966), + [anon_sym__Noreturn] = ACTIONS(6966), + [anon_sym_noreturn] = ACTIONS(6966), + [anon_sym__Nonnull] = ACTIONS(6966), + [anon_sym_mutable] = ACTIONS(6966), + [anon_sym_constinit] = ACTIONS(6966), + [anon_sym_consteval] = ACTIONS(6966), + [anon_sym_alignas] = ACTIONS(6966), + [anon_sym__Alignas] = ACTIONS(6966), + [anon_sym_QMARK] = ACTIONS(6966), + [anon_sym_STAR_EQ] = ACTIONS(6966), + [anon_sym_SLASH_EQ] = ACTIONS(6966), + [anon_sym_PERCENT_EQ] = ACTIONS(6966), + [anon_sym_PLUS_EQ] = ACTIONS(6966), + [anon_sym_DASH_EQ] = ACTIONS(6966), + [anon_sym_LT_LT_EQ] = ACTIONS(6966), + [anon_sym_GT_GT_EQ] = ACTIONS(6966), + [anon_sym_AMP_EQ] = ACTIONS(6966), + [anon_sym_CARET_EQ] = ACTIONS(6966), + [anon_sym_PIPE_EQ] = ACTIONS(6966), + [anon_sym_and_eq] = ACTIONS(6966), + [anon_sym_or_eq] = ACTIONS(6966), + [anon_sym_xor_eq] = ACTIONS(6966), + [anon_sym_LT_EQ_GT] = ACTIONS(6966), + [anon_sym_or] = ACTIONS(6964), + [anon_sym_and] = ACTIONS(6964), + [anon_sym_bitor] = ACTIONS(6966), + [anon_sym_xor] = ACTIONS(6964), + [anon_sym_bitand] = ACTIONS(6966), + [anon_sym_not_eq] = ACTIONS(6966), + [anon_sym_DASH_DASH] = ACTIONS(6966), + [anon_sym_PLUS_PLUS] = ACTIONS(6966), + [anon_sym_asm] = ACTIONS(6966), + [anon_sym___asm__] = ACTIONS(6966), + [anon_sym___asm] = ACTIONS(6964), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_DOT_STAR] = ACTIONS(6966), + [anon_sym_DASH_GT] = ACTIONS(6964), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6966), + [anon_sym_override] = ACTIONS(6966), + [anon_sym_noexcept] = ACTIONS(6966), + [anon_sym_throw] = ACTIONS(6966), + [anon_sym_requires] = ACTIONS(6966), + [anon_sym_DASH_GT_STAR] = ACTIONS(6966), + }, + [STATE(2340)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [aux_sym_sized_type_specifier_repeat1] = STATE(2612), + [sym_identifier] = ACTIONS(8043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(8045), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(8048), + [anon_sym_unsigned] = ACTIONS(8048), + [anon_sym_long] = ACTIONS(8048), + [anon_sym_short] = ACTIONS(8048), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(8045), + [anon_sym_constexpr] = ACTIONS(8045), + [anon_sym_volatile] = ACTIONS(8045), + [anon_sym_restrict] = ACTIONS(8045), + [anon_sym___restrict__] = ACTIONS(8045), + [anon_sym__Atomic] = ACTIONS(8045), + [anon_sym__Noreturn] = ACTIONS(8045), + [anon_sym_noreturn] = ACTIONS(8045), + [anon_sym__Nonnull] = ACTIONS(8045), + [anon_sym_mutable] = ACTIONS(8045), + [anon_sym_constinit] = ACTIONS(8045), + [anon_sym_consteval] = ACTIONS(8045), + [anon_sym_alignas] = ACTIONS(8050), + [anon_sym__Alignas] = ACTIONS(8050), + [sym_primitive_type] = ACTIONS(8053), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7195), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_requires] = ACTIONS(7195), + [anon_sym_DASH_GT_STAR] = ACTIONS(7193), + }, + [STATE(2341)] = { + [sym__abstract_declarator] = STATE(4674), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7345), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), [anon_sym_or] = ACTIONS(7347), [anon_sym_and] = ACTIONS(7347), [anon_sym_bitor] = ACTIONS(7345), @@ -343122,501 +343078,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(7345), [anon_sym_requires] = ACTIONS(7345), }, - [STATE(2341)] = { - [sym_type_qualifier] = STATE(2341), - [sym_alignas_qualifier] = STATE(2452), - [aux_sym__type_definition_type_repeat1] = STATE(2341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(8019), - [anon_sym___attribute__] = ACTIONS(6891), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6889), - [anon_sym_RBRACK] = ACTIONS(6891), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(8022), - [anon_sym_constexpr] = ACTIONS(8019), - [anon_sym_volatile] = ACTIONS(8019), - [anon_sym_restrict] = ACTIONS(8019), - [anon_sym___restrict__] = ACTIONS(8019), - [anon_sym__Atomic] = ACTIONS(8019), - [anon_sym__Noreturn] = ACTIONS(8019), - [anon_sym_noreturn] = ACTIONS(8019), - [anon_sym__Nonnull] = ACTIONS(8019), - [anon_sym_mutable] = ACTIONS(8019), - [anon_sym_constinit] = ACTIONS(8019), - [anon_sym_consteval] = ACTIONS(8019), - [anon_sym_alignas] = ACTIONS(8025), - [anon_sym__Alignas] = ACTIONS(8025), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6891), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_and_eq] = ACTIONS(6891), - [anon_sym_or_eq] = ACTIONS(6891), - [anon_sym_xor_eq] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6891), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6891), - [anon_sym_not_eq] = ACTIONS(6891), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_asm] = ACTIONS(6891), - [anon_sym___asm__] = ACTIONS(6891), - [anon_sym___asm] = ACTIONS(6889), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6891), - [anon_sym_override] = ACTIONS(6891), - [anon_sym_noexcept] = ACTIONS(6891), - [anon_sym_throw] = ACTIONS(6891), - [anon_sym_requires] = ACTIONS(6891), - }, [STATE(2342)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_RPAREN] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6608), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6608), - [anon_sym_GT_GT] = ACTIONS(6608), - [anon_sym_SEMI] = ACTIONS(6610), - [anon_sym___extension__] = ACTIONS(6610), - [anon_sym___attribute__] = ACTIONS(6610), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6608), - [anon_sym_EQ] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6610), - [anon_sym_volatile] = ACTIONS(6610), - [anon_sym_restrict] = ACTIONS(6610), - [anon_sym___restrict__] = ACTIONS(6610), - [anon_sym__Atomic] = ACTIONS(6610), - [anon_sym__Noreturn] = ACTIONS(6610), - [anon_sym_noreturn] = ACTIONS(6610), - [anon_sym__Nonnull] = ACTIONS(6610), - [anon_sym_mutable] = ACTIONS(6610), - [anon_sym_constinit] = ACTIONS(6610), - [anon_sym_consteval] = ACTIONS(6610), - [anon_sym_alignas] = ACTIONS(6610), - [anon_sym__Alignas] = ACTIONS(6610), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_STAR_EQ] = ACTIONS(6610), - [anon_sym_SLASH_EQ] = ACTIONS(6610), - [anon_sym_PERCENT_EQ] = ACTIONS(6610), - [anon_sym_PLUS_EQ] = ACTIONS(6610), - [anon_sym_DASH_EQ] = ACTIONS(6610), - [anon_sym_LT_LT_EQ] = ACTIONS(6610), - [anon_sym_GT_GT_EQ] = ACTIONS(6610), - [anon_sym_AMP_EQ] = ACTIONS(6610), - [anon_sym_CARET_EQ] = ACTIONS(6610), - [anon_sym_PIPE_EQ] = ACTIONS(6610), - [anon_sym_and_eq] = ACTIONS(6610), - [anon_sym_or_eq] = ACTIONS(6610), - [anon_sym_xor_eq] = ACTIONS(6610), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6610), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6610), - [anon_sym_not_eq] = ACTIONS(6610), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_asm] = ACTIONS(6610), - [anon_sym___asm__] = ACTIONS(6610), - [anon_sym___asm] = ACTIONS(6608), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6610), - [anon_sym_decltype] = ACTIONS(6610), - [anon_sym_try] = ACTIONS(6610), - [anon_sym_DASH_GT_STAR] = ACTIONS(6610), - }, - [STATE(2343)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_RPAREN] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6616), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6616), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6616), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6616), - [anon_sym_GT_GT] = ACTIONS(6616), - [anon_sym_SEMI] = ACTIONS(6618), - [anon_sym___extension__] = ACTIONS(6618), - [anon_sym___attribute__] = ACTIONS(6618), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6616), - [anon_sym_EQ] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6618), - [anon_sym_volatile] = ACTIONS(6618), - [anon_sym_restrict] = ACTIONS(6618), - [anon_sym___restrict__] = ACTIONS(6618), - [anon_sym__Atomic] = ACTIONS(6618), - [anon_sym__Noreturn] = ACTIONS(6618), - [anon_sym_noreturn] = ACTIONS(6618), - [anon_sym__Nonnull] = ACTIONS(6618), - [anon_sym_mutable] = ACTIONS(6618), - [anon_sym_constinit] = ACTIONS(6618), - [anon_sym_consteval] = ACTIONS(6618), - [anon_sym_alignas] = ACTIONS(6618), - [anon_sym__Alignas] = ACTIONS(6618), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_STAR_EQ] = ACTIONS(6618), - [anon_sym_SLASH_EQ] = ACTIONS(6618), - [anon_sym_PERCENT_EQ] = ACTIONS(6618), - [anon_sym_PLUS_EQ] = ACTIONS(6618), - [anon_sym_DASH_EQ] = ACTIONS(6618), - [anon_sym_LT_LT_EQ] = ACTIONS(6618), - [anon_sym_GT_GT_EQ] = ACTIONS(6618), - [anon_sym_AMP_EQ] = ACTIONS(6618), - [anon_sym_CARET_EQ] = ACTIONS(6618), - [anon_sym_PIPE_EQ] = ACTIONS(6618), - [anon_sym_and_eq] = ACTIONS(6618), - [anon_sym_or_eq] = ACTIONS(6618), - [anon_sym_xor_eq] = ACTIONS(6618), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6618), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6618), - [anon_sym_not_eq] = ACTIONS(6618), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_asm] = ACTIONS(6618), - [anon_sym___asm__] = ACTIONS(6618), - [anon_sym___asm] = ACTIONS(6616), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6616), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6618), - [anon_sym_decltype] = ACTIONS(6618), - [anon_sym_try] = ACTIONS(6618), - [anon_sym_DASH_GT_STAR] = ACTIONS(6618), - }, - [STATE(2344)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_RPAREN] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6620), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6620), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6620), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6620), - [anon_sym_GT_GT] = ACTIONS(6620), - [anon_sym_SEMI] = ACTIONS(6622), - [anon_sym___extension__] = ACTIONS(6622), - [anon_sym___attribute__] = ACTIONS(6622), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6620), - [anon_sym_EQ] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6622), - [anon_sym_volatile] = ACTIONS(6622), - [anon_sym_restrict] = ACTIONS(6622), - [anon_sym___restrict__] = ACTIONS(6622), - [anon_sym__Atomic] = ACTIONS(6622), - [anon_sym__Noreturn] = ACTIONS(6622), - [anon_sym_noreturn] = ACTIONS(6622), - [anon_sym__Nonnull] = ACTIONS(6622), - [anon_sym_mutable] = ACTIONS(6622), - [anon_sym_constinit] = ACTIONS(6622), - [anon_sym_consteval] = ACTIONS(6622), - [anon_sym_alignas] = ACTIONS(6622), - [anon_sym__Alignas] = ACTIONS(6622), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_STAR_EQ] = ACTIONS(6622), - [anon_sym_SLASH_EQ] = ACTIONS(6622), - [anon_sym_PERCENT_EQ] = ACTIONS(6622), - [anon_sym_PLUS_EQ] = ACTIONS(6622), - [anon_sym_DASH_EQ] = ACTIONS(6622), - [anon_sym_LT_LT_EQ] = ACTIONS(6622), - [anon_sym_GT_GT_EQ] = ACTIONS(6622), - [anon_sym_AMP_EQ] = ACTIONS(6622), - [anon_sym_CARET_EQ] = ACTIONS(6622), - [anon_sym_PIPE_EQ] = ACTIONS(6622), - [anon_sym_and_eq] = ACTIONS(6622), - [anon_sym_or_eq] = ACTIONS(6622), - [anon_sym_xor_eq] = ACTIONS(6622), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6622), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6622), - [anon_sym_not_eq] = ACTIONS(6622), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_asm] = ACTIONS(6622), - [anon_sym___asm__] = ACTIONS(6622), - [anon_sym___asm] = ACTIONS(6620), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6620), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6622), - [anon_sym_decltype] = ACTIONS(6622), - [anon_sym_try] = ACTIONS(6622), - [anon_sym_DASH_GT_STAR] = ACTIONS(6622), - }, - [STATE(2345)] = { - [sym_attribute_specifier] = STATE(2196), - [sym_enumerator_list] = STATE(2137), - [sym__enum_base_clause] = STATE(2119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), - [anon_sym_COMMA] = ACTIONS(8002), - [anon_sym_RPAREN] = ACTIONS(8002), - [anon_sym_LPAREN2] = ACTIONS(8002), - [anon_sym_DASH] = ACTIONS(8000), - [anon_sym_PLUS] = ACTIONS(8000), - [anon_sym_STAR] = ACTIONS(8000), - [anon_sym_SLASH] = ACTIONS(8000), - [anon_sym_PERCENT] = ACTIONS(8000), - [anon_sym_PIPE_PIPE] = ACTIONS(8002), - [anon_sym_AMP_AMP] = ACTIONS(8002), - [anon_sym_PIPE] = ACTIONS(8000), - [anon_sym_CARET] = ACTIONS(8000), - [anon_sym_AMP] = ACTIONS(8000), - [anon_sym_EQ_EQ] = ACTIONS(8002), - [anon_sym_BANG_EQ] = ACTIONS(8002), - [anon_sym_GT] = ACTIONS(8000), - [anon_sym_GT_EQ] = ACTIONS(8002), - [anon_sym_LT_EQ] = ACTIONS(8000), - [anon_sym_LT] = ACTIONS(8000), - [anon_sym_LT_LT] = ACTIONS(8000), - [anon_sym_GT_GT] = ACTIONS(8000), - [anon_sym_SEMI] = ACTIONS(8002), - [anon_sym___extension__] = ACTIONS(8002), - [anon_sym___attribute__] = ACTIONS(8028), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(8030), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8002), - [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(8002), - [anon_sym_LBRACK] = ACTIONS(8002), - [anon_sym_EQ] = ACTIONS(8000), - [anon_sym_const] = ACTIONS(8000), - [anon_sym_constexpr] = ACTIONS(8002), - [anon_sym_volatile] = ACTIONS(8002), - [anon_sym_restrict] = ACTIONS(8002), - [anon_sym___restrict__] = ACTIONS(8002), - [anon_sym__Atomic] = ACTIONS(8002), - [anon_sym__Noreturn] = ACTIONS(8002), - [anon_sym_noreturn] = ACTIONS(8002), - [anon_sym__Nonnull] = ACTIONS(8002), - [anon_sym_mutable] = ACTIONS(8002), - [anon_sym_constinit] = ACTIONS(8002), - [anon_sym_consteval] = ACTIONS(8002), - [anon_sym_alignas] = ACTIONS(8002), - [anon_sym__Alignas] = ACTIONS(8002), - [anon_sym_QMARK] = ACTIONS(8002), - [anon_sym_STAR_EQ] = ACTIONS(8002), - [anon_sym_SLASH_EQ] = ACTIONS(8002), - [anon_sym_PERCENT_EQ] = ACTIONS(8002), - [anon_sym_PLUS_EQ] = ACTIONS(8002), - [anon_sym_DASH_EQ] = ACTIONS(8002), - [anon_sym_LT_LT_EQ] = ACTIONS(8002), - [anon_sym_GT_GT_EQ] = ACTIONS(8002), - [anon_sym_AMP_EQ] = ACTIONS(8002), - [anon_sym_CARET_EQ] = ACTIONS(8002), - [anon_sym_PIPE_EQ] = ACTIONS(8002), - [anon_sym_and_eq] = ACTIONS(8002), - [anon_sym_or_eq] = ACTIONS(8002), - [anon_sym_xor_eq] = ACTIONS(8002), - [anon_sym_LT_EQ_GT] = ACTIONS(8002), - [anon_sym_or] = ACTIONS(8000), - [anon_sym_and] = ACTIONS(8000), - [anon_sym_bitor] = ACTIONS(8002), - [anon_sym_xor] = ACTIONS(8000), - [anon_sym_bitand] = ACTIONS(8002), - [anon_sym_not_eq] = ACTIONS(8002), - [anon_sym_DASH_DASH] = ACTIONS(8002), - [anon_sym_PLUS_PLUS] = ACTIONS(8002), - [anon_sym_DOT] = ACTIONS(8000), - [anon_sym_DOT_STAR] = ACTIONS(8002), - [anon_sym_DASH_GT] = ACTIONS(8002), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8002), - [anon_sym_override] = ACTIONS(8002), - [anon_sym_requires] = ACTIONS(8002), - [anon_sym_COLON_RBRACK] = ACTIONS(8002), - }, - [STATE(2346)] = { - [sym_attribute_specifier] = STATE(2200), - [sym_enumerator_list] = STATE(2136), - [sym__enum_base_clause] = STATE(2118), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), - [anon_sym_COMMA] = ACTIONS(8008), - [anon_sym_RPAREN] = ACTIONS(8008), - [anon_sym_LPAREN2] = ACTIONS(8008), - [anon_sym_DASH] = ACTIONS(8006), - [anon_sym_PLUS] = ACTIONS(8006), - [anon_sym_STAR] = ACTIONS(8006), - [anon_sym_SLASH] = ACTIONS(8006), - [anon_sym_PERCENT] = ACTIONS(8006), - [anon_sym_PIPE_PIPE] = ACTIONS(8008), - [anon_sym_AMP_AMP] = ACTIONS(8008), - [anon_sym_PIPE] = ACTIONS(8006), - [anon_sym_CARET] = ACTIONS(8006), - [anon_sym_AMP] = ACTIONS(8006), - [anon_sym_EQ_EQ] = ACTIONS(8008), - [anon_sym_BANG_EQ] = ACTIONS(8008), - [anon_sym_GT] = ACTIONS(8006), - [anon_sym_GT_EQ] = ACTIONS(8008), - [anon_sym_LT_EQ] = ACTIONS(8006), - [anon_sym_LT] = ACTIONS(8006), - [anon_sym_LT_LT] = ACTIONS(8006), - [anon_sym_GT_GT] = ACTIONS(8006), - [anon_sym_SEMI] = ACTIONS(8008), - [anon_sym___extension__] = ACTIONS(8008), - [anon_sym___attribute__] = ACTIONS(8028), - [anon_sym___attribute] = ACTIONS(7239), - [anon_sym_COLON] = ACTIONS(8030), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8008), - [anon_sym_LBRACE] = ACTIONS(7385), - [anon_sym_RBRACE] = ACTIONS(8008), - [anon_sym_LBRACK] = ACTIONS(8008), - [anon_sym_EQ] = ACTIONS(8006), - [anon_sym_const] = ACTIONS(8006), - [anon_sym_constexpr] = ACTIONS(8008), - [anon_sym_volatile] = ACTIONS(8008), - [anon_sym_restrict] = ACTIONS(8008), - [anon_sym___restrict__] = ACTIONS(8008), - [anon_sym__Atomic] = ACTIONS(8008), - [anon_sym__Noreturn] = ACTIONS(8008), - [anon_sym_noreturn] = ACTIONS(8008), - [anon_sym__Nonnull] = ACTIONS(8008), - [anon_sym_mutable] = ACTIONS(8008), - [anon_sym_constinit] = ACTIONS(8008), - [anon_sym_consteval] = ACTIONS(8008), - [anon_sym_alignas] = ACTIONS(8008), - [anon_sym__Alignas] = ACTIONS(8008), - [anon_sym_QMARK] = ACTIONS(8008), - [anon_sym_STAR_EQ] = ACTIONS(8008), - [anon_sym_SLASH_EQ] = ACTIONS(8008), - [anon_sym_PERCENT_EQ] = ACTIONS(8008), - [anon_sym_PLUS_EQ] = ACTIONS(8008), - [anon_sym_DASH_EQ] = ACTIONS(8008), - [anon_sym_LT_LT_EQ] = ACTIONS(8008), - [anon_sym_GT_GT_EQ] = ACTIONS(8008), - [anon_sym_AMP_EQ] = ACTIONS(8008), - [anon_sym_CARET_EQ] = ACTIONS(8008), - [anon_sym_PIPE_EQ] = ACTIONS(8008), - [anon_sym_and_eq] = ACTIONS(8008), - [anon_sym_or_eq] = ACTIONS(8008), - [anon_sym_xor_eq] = ACTIONS(8008), - [anon_sym_LT_EQ_GT] = ACTIONS(8008), - [anon_sym_or] = ACTIONS(8006), - [anon_sym_and] = ACTIONS(8006), - [anon_sym_bitor] = ACTIONS(8008), - [anon_sym_xor] = ACTIONS(8006), - [anon_sym_bitand] = ACTIONS(8008), - [anon_sym_not_eq] = ACTIONS(8008), - [anon_sym_DASH_DASH] = ACTIONS(8008), - [anon_sym_PLUS_PLUS] = ACTIONS(8008), - [anon_sym_DOT] = ACTIONS(8006), - [anon_sym_DOT_STAR] = ACTIONS(8008), - [anon_sym_DASH_GT] = ACTIONS(8008), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8008), - [anon_sym_override] = ACTIONS(8008), - [anon_sym_requires] = ACTIONS(8008), - [anon_sym_COLON_RBRACK] = ACTIONS(8008), - }, - [STATE(2347)] = { - [sym_template_argument_list] = STATE(3735), - [aux_sym_sized_type_specifier_repeat1] = STATE(2419), + [sym_template_argument_list] = STATE(3755), + [aux_sym_sized_type_specifier_repeat1] = STATE(2416), [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), [anon_sym_COMMA] = ACTIONS(7359), [anon_sym_RPAREN] = ACTIONS(7359), @@ -343642,12 +343106,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(7359), [anon_sym___attribute__] = ACTIONS(7359), [anon_sym___attribute] = ACTIONS(7357), - [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_COLON_COLON] = ACTIONS(5632), [anon_sym_LBRACE] = ACTIONS(7359), - [anon_sym_signed] = ACTIONS(6971), - [anon_sym_unsigned] = ACTIONS(6971), - [anon_sym_long] = ACTIONS(6971), - [anon_sym_short] = ACTIONS(6971), + [anon_sym_signed] = ACTIONS(6931), + [anon_sym_unsigned] = ACTIONS(6931), + [anon_sym_long] = ACTIONS(6931), + [anon_sym_short] = ACTIONS(6931), [anon_sym_LBRACK] = ACTIONS(7359), [anon_sym_EQ] = ACTIONS(7357), [anon_sym_const] = ACTIONS(7357), @@ -343696,1969 +343160,2862 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7359), [anon_sym_DASH_GT_STAR] = ACTIONS(7359), }, - [STATE(2348)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_RPAREN] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6612), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6612), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6612), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6612), - [anon_sym_GT_GT] = ACTIONS(6612), - [anon_sym_SEMI] = ACTIONS(6614), - [anon_sym___extension__] = ACTIONS(6614), - [anon_sym___attribute__] = ACTIONS(6614), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6612), - [anon_sym_EQ] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6614), - [anon_sym_volatile] = ACTIONS(6614), - [anon_sym_restrict] = ACTIONS(6614), - [anon_sym___restrict__] = ACTIONS(6614), - [anon_sym__Atomic] = ACTIONS(6614), - [anon_sym__Noreturn] = ACTIONS(6614), - [anon_sym_noreturn] = ACTIONS(6614), - [anon_sym__Nonnull] = ACTIONS(6614), - [anon_sym_mutable] = ACTIONS(6614), - [anon_sym_constinit] = ACTIONS(6614), - [anon_sym_consteval] = ACTIONS(6614), - [anon_sym_alignas] = ACTIONS(6614), - [anon_sym__Alignas] = ACTIONS(6614), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_STAR_EQ] = ACTIONS(6614), - [anon_sym_SLASH_EQ] = ACTIONS(6614), - [anon_sym_PERCENT_EQ] = ACTIONS(6614), - [anon_sym_PLUS_EQ] = ACTIONS(6614), - [anon_sym_DASH_EQ] = ACTIONS(6614), - [anon_sym_LT_LT_EQ] = ACTIONS(6614), - [anon_sym_GT_GT_EQ] = ACTIONS(6614), - [anon_sym_AMP_EQ] = ACTIONS(6614), - [anon_sym_CARET_EQ] = ACTIONS(6614), - [anon_sym_PIPE_EQ] = ACTIONS(6614), - [anon_sym_and_eq] = ACTIONS(6614), - [anon_sym_or_eq] = ACTIONS(6614), - [anon_sym_xor_eq] = ACTIONS(6614), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6614), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6614), - [anon_sym_not_eq] = ACTIONS(6614), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_asm] = ACTIONS(6614), - [anon_sym___asm__] = ACTIONS(6614), - [anon_sym___asm] = ACTIONS(6612), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6612), + [STATE(2343)] = { + [sym_type_qualifier] = STATE(2348), + [sym_alignas_qualifier] = STATE(2471), + [aux_sym__type_definition_type_repeat1] = STATE(2348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6673), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6681), + [anon_sym_constexpr] = ACTIONS(6673), + [anon_sym_volatile] = ACTIONS(6673), + [anon_sym_restrict] = ACTIONS(6673), + [anon_sym___restrict__] = ACTIONS(6673), + [anon_sym__Atomic] = ACTIONS(6673), + [anon_sym__Noreturn] = ACTIONS(6673), + [anon_sym_noreturn] = ACTIONS(6673), + [anon_sym__Nonnull] = ACTIONS(6673), + [anon_sym_mutable] = ACTIONS(6673), + [anon_sym_constinit] = ACTIONS(6673), + [anon_sym_consteval] = ACTIONS(6673), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6746), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6748), + [anon_sym_or_eq] = ACTIONS(6748), + [anon_sym_xor_eq] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_GT2] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), + }, + [STATE(2344)] = { + [sym_type_qualifier] = STATE(2338), + [sym_alignas_qualifier] = STATE(2435), + [aux_sym__type_definition_type_repeat1] = STATE(2338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6702), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_RBRACK] = ACTIONS(6748), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6710), + [anon_sym_constexpr] = ACTIONS(6702), + [anon_sym_volatile] = ACTIONS(6702), + [anon_sym_restrict] = ACTIONS(6702), + [anon_sym___restrict__] = ACTIONS(6702), + [anon_sym__Atomic] = ACTIONS(6702), + [anon_sym__Noreturn] = ACTIONS(6702), + [anon_sym_noreturn] = ACTIONS(6702), + [anon_sym__Nonnull] = ACTIONS(6702), + [anon_sym_mutable] = ACTIONS(6702), + [anon_sym_constinit] = ACTIONS(6702), + [anon_sym_consteval] = ACTIONS(6702), + [anon_sym_alignas] = ACTIONS(6712), + [anon_sym__Alignas] = ACTIONS(6712), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_and_eq] = ACTIONS(6748), + [anon_sym_or_eq] = ACTIONS(6748), + [anon_sym_xor_eq] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), + }, + [STATE(2345)] = { + [sym_type_qualifier] = STATE(2340), + [sym_alignas_qualifier] = STATE(2525), + [aux_sym__type_definition_type_repeat1] = STATE(2340), + [aux_sym_sized_type_specifier_repeat1] = STATE(2460), + [sym_identifier] = ACTIONS(8055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_RPAREN] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(8057), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(8060), + [anon_sym_unsigned] = ACTIONS(8060), + [anon_sym_long] = ACTIONS(8060), + [anon_sym_short] = ACTIONS(8060), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(8057), + [anon_sym_constexpr] = ACTIONS(8057), + [anon_sym_volatile] = ACTIONS(8057), + [anon_sym_restrict] = ACTIONS(8057), + [anon_sym___restrict__] = ACTIONS(8057), + [anon_sym__Atomic] = ACTIONS(8057), + [anon_sym__Noreturn] = ACTIONS(8057), + [anon_sym_noreturn] = ACTIONS(8057), + [anon_sym__Nonnull] = ACTIONS(8057), + [anon_sym_mutable] = ACTIONS(8057), + [anon_sym_constinit] = ACTIONS(8057), + [anon_sym_consteval] = ACTIONS(8057), + [anon_sym_alignas] = ACTIONS(8062), + [anon_sym__Alignas] = ACTIONS(8062), + [sym_primitive_type] = ACTIONS(8065), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7211), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), + [anon_sym_DASH_GT_STAR] = ACTIONS(7209), + }, + [STATE(2346)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2040), + [sym_identifier] = ACTIONS(7402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [aux_sym_preproc_if_token2] = ACTIONS(7399), + [aux_sym_preproc_else_token1] = ACTIONS(7399), + [aux_sym_preproc_elif_token1] = ACTIONS(7402), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(7064), + [anon_sym_unsigned] = ACTIONS(7064), + [anon_sym_long] = ACTIONS(7064), + [anon_sym_short] = ACTIONS(7064), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6614), - [anon_sym_decltype] = ACTIONS(6614), - [anon_sym_try] = ACTIONS(6614), - [anon_sym_DASH_GT_STAR] = ACTIONS(6614), + }, + [STATE(2347)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6596), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym_SEMI] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6598), + [anon_sym___attribute__] = ACTIONS(6598), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6596), + [anon_sym_EQ] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6598), + [anon_sym_volatile] = ACTIONS(6598), + [anon_sym_restrict] = ACTIONS(6598), + [anon_sym___restrict__] = ACTIONS(6598), + [anon_sym__Atomic] = ACTIONS(6598), + [anon_sym__Noreturn] = ACTIONS(6598), + [anon_sym_noreturn] = ACTIONS(6598), + [anon_sym__Nonnull] = ACTIONS(6598), + [anon_sym_mutable] = ACTIONS(6598), + [anon_sym_constinit] = ACTIONS(6598), + [anon_sym_consteval] = ACTIONS(6598), + [anon_sym_alignas] = ACTIONS(6598), + [anon_sym__Alignas] = ACTIONS(6598), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6598), + [anon_sym_or_eq] = ACTIONS(6598), + [anon_sym_xor_eq] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_asm] = ACTIONS(6598), + [anon_sym___asm__] = ACTIONS(6598), + [anon_sym___asm] = ACTIONS(6596), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6598), + [anon_sym_decltype] = ACTIONS(6598), + [anon_sym_try] = ACTIONS(6598), + [anon_sym_DASH_GT_STAR] = ACTIONS(6598), + }, + [STATE(2348)] = { + [sym_type_qualifier] = STATE(2348), + [sym_alignas_qualifier] = STATE(2471), + [aux_sym__type_definition_type_repeat1] = STATE(2348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6878), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(8067), + [anon_sym___attribute__] = ACTIONS(6880), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6880), + [anon_sym_LBRACK] = ACTIONS(6878), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(8070), + [anon_sym_constexpr] = ACTIONS(8067), + [anon_sym_volatile] = ACTIONS(8067), + [anon_sym_restrict] = ACTIONS(8067), + [anon_sym___restrict__] = ACTIONS(8067), + [anon_sym__Atomic] = ACTIONS(8067), + [anon_sym__Noreturn] = ACTIONS(8067), + [anon_sym_noreturn] = ACTIONS(8067), + [anon_sym__Nonnull] = ACTIONS(8067), + [anon_sym_mutable] = ACTIONS(8067), + [anon_sym_constinit] = ACTIONS(8067), + [anon_sym_consteval] = ACTIONS(8067), + [anon_sym_alignas] = ACTIONS(8073), + [anon_sym__Alignas] = ACTIONS(8073), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6878), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_and_eq] = ACTIONS(6880), + [anon_sym_or_eq] = ACTIONS(6880), + [anon_sym_xor_eq] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6880), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6880), + [anon_sym_not_eq] = ACTIONS(6880), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_asm] = ACTIONS(6880), + [anon_sym___asm__] = ACTIONS(6880), + [anon_sym___asm] = ACTIONS(6878), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6880), + [anon_sym_override] = ACTIONS(6880), + [anon_sym_GT2] = ACTIONS(6880), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6880), + [anon_sym_requires] = ACTIONS(6880), }, [STATE(2349)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_RPAREN] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6624), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6624), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6624), - [anon_sym_GT_GT] = ACTIONS(6624), - [anon_sym_SEMI] = ACTIONS(6626), - [anon_sym___extension__] = ACTIONS(6626), - [anon_sym___attribute__] = ACTIONS(6626), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6624), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6626), - [anon_sym_volatile] = ACTIONS(6626), - [anon_sym_restrict] = ACTIONS(6626), - [anon_sym___restrict__] = ACTIONS(6626), - [anon_sym__Atomic] = ACTIONS(6626), - [anon_sym__Noreturn] = ACTIONS(6626), - [anon_sym_noreturn] = ACTIONS(6626), - [anon_sym__Nonnull] = ACTIONS(6626), - [anon_sym_mutable] = ACTIONS(6626), - [anon_sym_constinit] = ACTIONS(6626), - [anon_sym_consteval] = ACTIONS(6626), - [anon_sym_alignas] = ACTIONS(6626), - [anon_sym__Alignas] = ACTIONS(6626), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_STAR_EQ] = ACTIONS(6626), - [anon_sym_SLASH_EQ] = ACTIONS(6626), - [anon_sym_PERCENT_EQ] = ACTIONS(6626), - [anon_sym_PLUS_EQ] = ACTIONS(6626), - [anon_sym_DASH_EQ] = ACTIONS(6626), - [anon_sym_LT_LT_EQ] = ACTIONS(6626), - [anon_sym_GT_GT_EQ] = ACTIONS(6626), - [anon_sym_AMP_EQ] = ACTIONS(6626), - [anon_sym_CARET_EQ] = ACTIONS(6626), - [anon_sym_PIPE_EQ] = ACTIONS(6626), - [anon_sym_and_eq] = ACTIONS(6626), - [anon_sym_or_eq] = ACTIONS(6626), - [anon_sym_xor_eq] = ACTIONS(6626), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6626), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6626), - [anon_sym_not_eq] = ACTIONS(6626), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_asm] = ACTIONS(6626), - [anon_sym___asm__] = ACTIONS(6626), - [anon_sym___asm] = ACTIONS(6624), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6624), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6626), - [anon_sym_decltype] = ACTIONS(6626), - [anon_sym_try] = ACTIONS(6626), - [anon_sym_DASH_GT_STAR] = ACTIONS(6626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym_SEMI] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(6604), + [anon_sym___attribute__] = ACTIONS(6604), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6604), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6604), + [anon_sym_volatile] = ACTIONS(6604), + [anon_sym_restrict] = ACTIONS(6604), + [anon_sym___restrict__] = ACTIONS(6604), + [anon_sym__Atomic] = ACTIONS(6604), + [anon_sym__Noreturn] = ACTIONS(6604), + [anon_sym_noreturn] = ACTIONS(6604), + [anon_sym__Nonnull] = ACTIONS(6604), + [anon_sym_mutable] = ACTIONS(6604), + [anon_sym_constinit] = ACTIONS(6604), + [anon_sym_consteval] = ACTIONS(6604), + [anon_sym_alignas] = ACTIONS(6604), + [anon_sym__Alignas] = ACTIONS(6604), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_STAR_EQ] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [anon_sym_PERCENT_EQ] = ACTIONS(6604), + [anon_sym_PLUS_EQ] = ACTIONS(6604), + [anon_sym_DASH_EQ] = ACTIONS(6604), + [anon_sym_LT_LT_EQ] = ACTIONS(6604), + [anon_sym_GT_GT_EQ] = ACTIONS(6604), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_and_eq] = ACTIONS(6604), + [anon_sym_or_eq] = ACTIONS(6604), + [anon_sym_xor_eq] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6604), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6604), + [anon_sym_not_eq] = ACTIONS(6604), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_asm] = ACTIONS(6604), + [anon_sym___asm__] = ACTIONS(6604), + [anon_sym___asm] = ACTIONS(6602), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6604), + [anon_sym_decltype] = ACTIONS(6604), + [anon_sym_try] = ACTIONS(6604), + [anon_sym_DASH_GT_STAR] = ACTIONS(6604), }, [STATE(2350)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6628), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6628), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6628), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6628), - [anon_sym_GT_GT] = ACTIONS(6628), - [anon_sym_SEMI] = ACTIONS(6630), - [anon_sym___extension__] = ACTIONS(6630), - [anon_sym___attribute__] = ACTIONS(6630), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6628), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6630), - [anon_sym_volatile] = ACTIONS(6630), - [anon_sym_restrict] = ACTIONS(6630), - [anon_sym___restrict__] = ACTIONS(6630), - [anon_sym__Atomic] = ACTIONS(6630), - [anon_sym__Noreturn] = ACTIONS(6630), - [anon_sym_noreturn] = ACTIONS(6630), - [anon_sym__Nonnull] = ACTIONS(6630), - [anon_sym_mutable] = ACTIONS(6630), - [anon_sym_constinit] = ACTIONS(6630), - [anon_sym_consteval] = ACTIONS(6630), - [anon_sym_alignas] = ACTIONS(6630), - [anon_sym__Alignas] = ACTIONS(6630), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_STAR_EQ] = ACTIONS(6630), - [anon_sym_SLASH_EQ] = ACTIONS(6630), - [anon_sym_PERCENT_EQ] = ACTIONS(6630), - [anon_sym_PLUS_EQ] = ACTIONS(6630), - [anon_sym_DASH_EQ] = ACTIONS(6630), - [anon_sym_LT_LT_EQ] = ACTIONS(6630), - [anon_sym_GT_GT_EQ] = ACTIONS(6630), - [anon_sym_AMP_EQ] = ACTIONS(6630), - [anon_sym_CARET_EQ] = ACTIONS(6630), - [anon_sym_PIPE_EQ] = ACTIONS(6630), - [anon_sym_and_eq] = ACTIONS(6630), - [anon_sym_or_eq] = ACTIONS(6630), - [anon_sym_xor_eq] = ACTIONS(6630), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6630), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6630), - [anon_sym_not_eq] = ACTIONS(6630), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_asm] = ACTIONS(6630), - [anon_sym___asm__] = ACTIONS(6630), - [anon_sym___asm] = ACTIONS(6628), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6628), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6630), - [anon_sym_decltype] = ACTIONS(6630), - [anon_sym_try] = ACTIONS(6630), - [anon_sym_DASH_GT_STAR] = ACTIONS(6630), + [sym__abstract_declarator] = STATE(4742), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2335), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1976), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(7095), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(7097), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(7099), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7375), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), }, [STATE(2351)] = { - [sym_decltype_auto] = STATE(3090), - [sym_template_argument_list] = STATE(2594), - [aux_sym_sized_type_specifier_repeat1] = STATE(2476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5636), - [anon_sym_SLASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5636), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5636), - [anon_sym_CARET] = ACTIONS(5636), - [anon_sym_AMP] = ACTIONS(5636), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5636), - [anon_sym_GT_EQ] = ACTIONS(5636), - [anon_sym_LT_EQ] = ACTIONS(5636), - [anon_sym_LT] = ACTIONS(8032), - [anon_sym_LT_LT] = ACTIONS(5636), - [anon_sym_GT_GT] = ACTIONS(5636), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(7032), - [anon_sym_unsigned] = ACTIONS(7032), - [anon_sym_long] = ACTIONS(7032), - [anon_sym_short] = ACTIONS(7032), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [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(5636), - [anon_sym_AMP_EQ] = ACTIONS(5643), - [anon_sym_CARET_EQ] = ACTIONS(5643), - [anon_sym_PIPE_EQ] = ACTIONS(5643), - [anon_sym_and_eq] = ACTIONS(5643), - [anon_sym_or_eq] = ACTIONS(5643), - [anon_sym_xor_eq] = ACTIONS(5643), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5636), - [anon_sym_and] = ACTIONS(5636), - [anon_sym_bitor] = ACTIONS(5643), - [anon_sym_xor] = ACTIONS(5636), - [anon_sym_bitand] = ACTIONS(5643), - [anon_sym_not_eq] = ACTIONS(5643), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7036), - [anon_sym_decltype] = ACTIONS(7038), - [anon_sym_final] = ACTIONS(5643), - [anon_sym_override] = ACTIONS(5643), - [anon_sym_GT2] = ACTIONS(5643), - [anon_sym_requires] = ACTIONS(5643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym_SEMI] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_STAR_EQ] = ACTIONS(6612), + [anon_sym_SLASH_EQ] = ACTIONS(6612), + [anon_sym_PERCENT_EQ] = ACTIONS(6612), + [anon_sym_PLUS_EQ] = ACTIONS(6612), + [anon_sym_DASH_EQ] = ACTIONS(6612), + [anon_sym_LT_LT_EQ] = ACTIONS(6612), + [anon_sym_GT_GT_EQ] = ACTIONS(6612), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_and_eq] = ACTIONS(6612), + [anon_sym_or_eq] = ACTIONS(6612), + [anon_sym_xor_eq] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_asm] = ACTIONS(6612), + [anon_sym___asm__] = ACTIONS(6612), + [anon_sym___asm] = ACTIONS(6610), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_try] = ACTIONS(6612), + [anon_sym_DASH_GT_STAR] = ACTIONS(6612), }, [STATE(2352)] = { - [sym_type_qualifier] = STATE(2352), - [sym_alignas_qualifier] = STATE(2492), - [aux_sym__type_definition_type_repeat1] = STATE(2352), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6889), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(8034), - [anon_sym___attribute__] = ACTIONS(6891), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6889), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(8037), - [anon_sym_constexpr] = ACTIONS(8034), - [anon_sym_volatile] = ACTIONS(8034), - [anon_sym_restrict] = ACTIONS(8034), - [anon_sym___restrict__] = ACTIONS(8034), - [anon_sym__Atomic] = ACTIONS(8034), - [anon_sym__Noreturn] = ACTIONS(8034), - [anon_sym_noreturn] = ACTIONS(8034), - [anon_sym__Nonnull] = ACTIONS(8034), - [anon_sym_mutable] = ACTIONS(8034), - [anon_sym_constinit] = ACTIONS(8034), - [anon_sym_consteval] = ACTIONS(8034), - [anon_sym_alignas] = ACTIONS(8040), - [anon_sym__Alignas] = ACTIONS(8040), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6889), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_and_eq] = ACTIONS(6891), - [anon_sym_or_eq] = ACTIONS(6891), - [anon_sym_xor_eq] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6891), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6891), - [anon_sym_not_eq] = ACTIONS(6891), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_asm] = ACTIONS(6891), - [anon_sym___asm__] = ACTIONS(6891), - [anon_sym___asm] = ACTIONS(6889), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6891), - [anon_sym_override] = ACTIONS(6891), - [anon_sym_GT2] = ACTIONS(6891), - [anon_sym_noexcept] = ACTIONS(6891), - [anon_sym_throw] = ACTIONS(6891), - [anon_sym_requires] = ACTIONS(6891), + [sym_type_qualifier] = STATE(2338), + [sym_alignas_qualifier] = STATE(2435), + [aux_sym__type_definition_type_repeat1] = STATE(2338), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6872), + [anon_sym_COMMA] = ACTIONS(6872), + [anon_sym_LPAREN2] = ACTIONS(6872), + [anon_sym_DASH] = ACTIONS(6870), + [anon_sym_PLUS] = ACTIONS(6870), + [anon_sym_STAR] = ACTIONS(6870), + [anon_sym_SLASH] = ACTIONS(6870), + [anon_sym_PERCENT] = ACTIONS(6870), + [anon_sym_PIPE_PIPE] = ACTIONS(6872), + [anon_sym_AMP_AMP] = ACTIONS(6872), + [anon_sym_PIPE] = ACTIONS(6870), + [anon_sym_CARET] = ACTIONS(6870), + [anon_sym_AMP] = ACTIONS(6870), + [anon_sym_EQ_EQ] = ACTIONS(6872), + [anon_sym_BANG_EQ] = ACTIONS(6872), + [anon_sym_GT] = ACTIONS(6870), + [anon_sym_GT_EQ] = ACTIONS(6872), + [anon_sym_LT_EQ] = ACTIONS(6870), + [anon_sym_LT] = ACTIONS(6870), + [anon_sym_LT_LT] = ACTIONS(6870), + [anon_sym_GT_GT] = ACTIONS(6870), + [anon_sym___extension__] = ACTIONS(6702), + [anon_sym___attribute__] = ACTIONS(6872), + [anon_sym___attribute] = ACTIONS(6870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6872), + [anon_sym_LBRACK] = ACTIONS(6870), + [anon_sym_RBRACK] = ACTIONS(6872), + [anon_sym_EQ] = ACTIONS(6870), + [anon_sym_const] = ACTIONS(6710), + [anon_sym_constexpr] = ACTIONS(6702), + [anon_sym_volatile] = ACTIONS(6702), + [anon_sym_restrict] = ACTIONS(6702), + [anon_sym___restrict__] = ACTIONS(6702), + [anon_sym__Atomic] = ACTIONS(6702), + [anon_sym__Noreturn] = ACTIONS(6702), + [anon_sym_noreturn] = ACTIONS(6702), + [anon_sym__Nonnull] = ACTIONS(6702), + [anon_sym_mutable] = ACTIONS(6702), + [anon_sym_constinit] = ACTIONS(6702), + [anon_sym_consteval] = ACTIONS(6702), + [anon_sym_alignas] = ACTIONS(6712), + [anon_sym__Alignas] = ACTIONS(6712), + [anon_sym_QMARK] = ACTIONS(6872), + [anon_sym_STAR_EQ] = ACTIONS(6872), + [anon_sym_SLASH_EQ] = ACTIONS(6872), + [anon_sym_PERCENT_EQ] = ACTIONS(6872), + [anon_sym_PLUS_EQ] = ACTIONS(6872), + [anon_sym_DASH_EQ] = ACTIONS(6872), + [anon_sym_LT_LT_EQ] = ACTIONS(6872), + [anon_sym_GT_GT_EQ] = ACTIONS(6872), + [anon_sym_AMP_EQ] = ACTIONS(6872), + [anon_sym_CARET_EQ] = ACTIONS(6872), + [anon_sym_PIPE_EQ] = ACTIONS(6872), + [anon_sym_and_eq] = ACTIONS(6872), + [anon_sym_or_eq] = ACTIONS(6872), + [anon_sym_xor_eq] = ACTIONS(6872), + [anon_sym_LT_EQ_GT] = ACTIONS(6872), + [anon_sym_or] = ACTIONS(6870), + [anon_sym_and] = ACTIONS(6870), + [anon_sym_bitor] = ACTIONS(6872), + [anon_sym_xor] = ACTIONS(6870), + [anon_sym_bitand] = ACTIONS(6872), + [anon_sym_not_eq] = ACTIONS(6872), + [anon_sym_DASH_DASH] = ACTIONS(6872), + [anon_sym_PLUS_PLUS] = ACTIONS(6872), + [anon_sym_asm] = ACTIONS(6872), + [anon_sym___asm__] = ACTIONS(6872), + [anon_sym___asm] = ACTIONS(6870), + [anon_sym_DOT] = ACTIONS(6870), + [anon_sym_DOT_STAR] = ACTIONS(6872), + [anon_sym_DASH_GT] = ACTIONS(6872), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6872), + [anon_sym_override] = ACTIONS(6872), + [anon_sym_noexcept] = ACTIONS(6872), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6872), }, [STATE(2353)] = { - [sym_attribute_specifier] = STATE(2353), - [aux_sym_type_definition_repeat1] = STATE(2353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), - [anon_sym_COMMA] = ACTIONS(6937), - [anon_sym_RPAREN] = ACTIONS(6937), - [anon_sym_LPAREN2] = ACTIONS(6937), - [anon_sym_DASH] = ACTIONS(6935), - [anon_sym_PLUS] = ACTIONS(6935), - [anon_sym_STAR] = ACTIONS(6935), - [anon_sym_SLASH] = ACTIONS(6935), - [anon_sym_PERCENT] = ACTIONS(6935), - [anon_sym_PIPE_PIPE] = ACTIONS(6937), - [anon_sym_AMP_AMP] = ACTIONS(6937), - [anon_sym_PIPE] = ACTIONS(6935), - [anon_sym_CARET] = ACTIONS(6935), - [anon_sym_AMP] = ACTIONS(6935), - [anon_sym_EQ_EQ] = ACTIONS(6937), - [anon_sym_BANG_EQ] = ACTIONS(6937), - [anon_sym_GT] = ACTIONS(6935), - [anon_sym_GT_EQ] = ACTIONS(6937), - [anon_sym_LT_EQ] = ACTIONS(6935), - [anon_sym_LT] = ACTIONS(6935), - [anon_sym_LT_LT] = ACTIONS(6935), - [anon_sym_GT_GT] = ACTIONS(6935), - [anon_sym___extension__] = ACTIONS(6937), - [anon_sym___attribute__] = ACTIONS(8043), - [anon_sym___attribute] = ACTIONS(8046), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), - [anon_sym_LBRACK] = ACTIONS(6935), - [anon_sym_EQ] = ACTIONS(6935), - [anon_sym_const] = ACTIONS(6935), - [anon_sym_constexpr] = ACTIONS(6937), - [anon_sym_volatile] = ACTIONS(6937), - [anon_sym_restrict] = ACTIONS(6937), - [anon_sym___restrict__] = ACTIONS(6937), - [anon_sym__Atomic] = ACTIONS(6937), - [anon_sym__Noreturn] = ACTIONS(6937), - [anon_sym_noreturn] = ACTIONS(6937), - [anon_sym__Nonnull] = ACTIONS(6937), - [anon_sym_mutable] = ACTIONS(6937), - [anon_sym_constinit] = ACTIONS(6937), - [anon_sym_consteval] = ACTIONS(6937), - [anon_sym_alignas] = ACTIONS(6937), - [anon_sym__Alignas] = ACTIONS(6937), - [anon_sym_QMARK] = ACTIONS(6937), - [anon_sym_STAR_EQ] = ACTIONS(6937), - [anon_sym_SLASH_EQ] = ACTIONS(6937), - [anon_sym_PERCENT_EQ] = ACTIONS(6937), - [anon_sym_PLUS_EQ] = ACTIONS(6937), - [anon_sym_DASH_EQ] = ACTIONS(6937), - [anon_sym_LT_LT_EQ] = ACTIONS(6937), - [anon_sym_GT_GT_EQ] = ACTIONS(6937), - [anon_sym_AMP_EQ] = ACTIONS(6937), - [anon_sym_CARET_EQ] = ACTIONS(6937), - [anon_sym_PIPE_EQ] = ACTIONS(6937), - [anon_sym_and_eq] = ACTIONS(6937), - [anon_sym_or_eq] = ACTIONS(6937), - [anon_sym_xor_eq] = ACTIONS(6937), - [anon_sym_LT_EQ_GT] = ACTIONS(6937), - [anon_sym_or] = ACTIONS(6935), - [anon_sym_and] = ACTIONS(6935), - [anon_sym_bitor] = ACTIONS(6937), - [anon_sym_xor] = ACTIONS(6935), - [anon_sym_bitand] = ACTIONS(6937), - [anon_sym_not_eq] = ACTIONS(6937), - [anon_sym_DASH_DASH] = ACTIONS(6937), - [anon_sym_PLUS_PLUS] = ACTIONS(6937), - [anon_sym_asm] = ACTIONS(6937), - [anon_sym___asm__] = ACTIONS(6937), - [anon_sym___asm] = ACTIONS(6935), - [anon_sym_DOT] = ACTIONS(6935), - [anon_sym_DOT_STAR] = ACTIONS(6937), - [anon_sym_DASH_GT] = ACTIONS(6935), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6937), - [anon_sym_override] = ACTIONS(6937), - [anon_sym_noexcept] = ACTIONS(6937), - [anon_sym_throw] = ACTIONS(6937), - [anon_sym_requires] = ACTIONS(6937), - [anon_sym_DASH_GT_STAR] = ACTIONS(6937), + [sym__abstract_declarator] = STATE(4747), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2355), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2355), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(7075), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7365), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7365), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7367), + [anon_sym_or_eq] = ACTIONS(7367), + [anon_sym_xor_eq] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7367), + [anon_sym_override] = ACTIONS(7367), + [anon_sym_GT2] = ACTIONS(7367), + [anon_sym_requires] = ACTIONS(7367), }, [STATE(2354)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_RPAREN] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(7528), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8049), - [anon_sym_unsigned] = ACTIONS(8049), - [anon_sym_long] = ACTIONS(8049), - [anon_sym_short] = ACTIONS(8049), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(7528), - [anon_sym_constexpr] = ACTIONS(7528), - [anon_sym_volatile] = ACTIONS(7528), - [anon_sym_restrict] = ACTIONS(7528), - [anon_sym___restrict__] = ACTIONS(7528), - [anon_sym__Atomic] = ACTIONS(7528), - [anon_sym__Noreturn] = ACTIONS(7528), - [anon_sym_noreturn] = ACTIONS(7528), - [anon_sym__Nonnull] = ACTIONS(7528), - [anon_sym_mutable] = ACTIONS(7528), - [anon_sym_constinit] = ACTIONS(7528), - [anon_sym_consteval] = ACTIONS(7528), - [anon_sym_alignas] = ACTIONS(7528), - [anon_sym__Alignas] = ACTIONS(7528), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7525), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_and_eq] = ACTIONS(7528), - [anon_sym_or_eq] = ACTIONS(7528), - [anon_sym_xor_eq] = ACTIONS(7528), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7528), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_requires] = ACTIONS(7528), - [anon_sym_DASH_GT_STAR] = ACTIONS(7525), + [sym_type_qualifier] = STATE(2348), + [sym_alignas_qualifier] = STATE(2471), + [aux_sym__type_definition_type_repeat1] = STATE(2348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6872), + [anon_sym_COMMA] = ACTIONS(6872), + [anon_sym_LPAREN2] = ACTIONS(6872), + [anon_sym_DASH] = ACTIONS(6870), + [anon_sym_PLUS] = ACTIONS(6870), + [anon_sym_STAR] = ACTIONS(6870), + [anon_sym_SLASH] = ACTIONS(6870), + [anon_sym_PERCENT] = ACTIONS(6870), + [anon_sym_PIPE_PIPE] = ACTIONS(6872), + [anon_sym_AMP_AMP] = ACTIONS(6872), + [anon_sym_PIPE] = ACTIONS(6870), + [anon_sym_CARET] = ACTIONS(6870), + [anon_sym_AMP] = ACTIONS(6870), + [anon_sym_EQ_EQ] = ACTIONS(6872), + [anon_sym_BANG_EQ] = ACTIONS(6872), + [anon_sym_GT] = ACTIONS(6870), + [anon_sym_GT_EQ] = ACTIONS(6870), + [anon_sym_LT_EQ] = ACTIONS(6870), + [anon_sym_LT] = ACTIONS(6870), + [anon_sym_LT_LT] = ACTIONS(6870), + [anon_sym_GT_GT] = ACTIONS(6870), + [anon_sym___extension__] = ACTIONS(6673), + [anon_sym___attribute__] = ACTIONS(6872), + [anon_sym___attribute] = ACTIONS(6870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6872), + [anon_sym_LBRACK] = ACTIONS(6870), + [anon_sym_EQ] = ACTIONS(6870), + [anon_sym_const] = ACTIONS(6681), + [anon_sym_constexpr] = ACTIONS(6673), + [anon_sym_volatile] = ACTIONS(6673), + [anon_sym_restrict] = ACTIONS(6673), + [anon_sym___restrict__] = ACTIONS(6673), + [anon_sym__Atomic] = ACTIONS(6673), + [anon_sym__Noreturn] = ACTIONS(6673), + [anon_sym_noreturn] = ACTIONS(6673), + [anon_sym__Nonnull] = ACTIONS(6673), + [anon_sym_mutable] = ACTIONS(6673), + [anon_sym_constinit] = ACTIONS(6673), + [anon_sym_consteval] = ACTIONS(6673), + [anon_sym_alignas] = ACTIONS(6683), + [anon_sym__Alignas] = ACTIONS(6683), + [anon_sym_QMARK] = ACTIONS(6872), + [anon_sym_STAR_EQ] = ACTIONS(6872), + [anon_sym_SLASH_EQ] = ACTIONS(6872), + [anon_sym_PERCENT_EQ] = ACTIONS(6872), + [anon_sym_PLUS_EQ] = ACTIONS(6872), + [anon_sym_DASH_EQ] = ACTIONS(6872), + [anon_sym_LT_LT_EQ] = ACTIONS(6872), + [anon_sym_GT_GT_EQ] = ACTIONS(6870), + [anon_sym_AMP_EQ] = ACTIONS(6872), + [anon_sym_CARET_EQ] = ACTIONS(6872), + [anon_sym_PIPE_EQ] = ACTIONS(6872), + [anon_sym_and_eq] = ACTIONS(6872), + [anon_sym_or_eq] = ACTIONS(6872), + [anon_sym_xor_eq] = ACTIONS(6872), + [anon_sym_LT_EQ_GT] = ACTIONS(6872), + [anon_sym_or] = ACTIONS(6870), + [anon_sym_and] = ACTIONS(6870), + [anon_sym_bitor] = ACTIONS(6872), + [anon_sym_xor] = ACTIONS(6870), + [anon_sym_bitand] = ACTIONS(6872), + [anon_sym_not_eq] = ACTIONS(6872), + [anon_sym_DASH_DASH] = ACTIONS(6872), + [anon_sym_PLUS_PLUS] = ACTIONS(6872), + [anon_sym_asm] = ACTIONS(6872), + [anon_sym___asm__] = ACTIONS(6872), + [anon_sym___asm] = ACTIONS(6870), + [anon_sym_DOT] = ACTIONS(6870), + [anon_sym_DOT_STAR] = ACTIONS(6872), + [anon_sym_DASH_GT] = ACTIONS(6872), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6872), + [anon_sym_override] = ACTIONS(6872), + [anon_sym_GT2] = ACTIONS(6872), + [anon_sym_noexcept] = ACTIONS(6872), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6872), }, [STATE(2355)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(7001), - [anon_sym_RPAREN] = ACTIONS(7001), - [anon_sym_LPAREN2] = ACTIONS(7001), - [anon_sym_DASH] = ACTIONS(6999), - [anon_sym_PLUS] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(6999), - [anon_sym_SLASH] = ACTIONS(6999), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(7001), - [anon_sym_PIPE] = ACTIONS(6999), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(6999), - [anon_sym_EQ_EQ] = ACTIONS(7001), - [anon_sym_BANG_EQ] = ACTIONS(7001), - [anon_sym_GT] = ACTIONS(6999), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(6999), - [anon_sym_LT] = ACTIONS(6999), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(6999), - [anon_sym_LBRACE] = ACTIONS(7001), - [anon_sym_signed] = ACTIONS(8049), - [anon_sym_unsigned] = ACTIONS(8049), - [anon_sym_long] = ACTIONS(8049), - [anon_sym_short] = ACTIONS(8049), - [anon_sym_LBRACK] = ACTIONS(7001), - [anon_sym_EQ] = ACTIONS(6999), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7001), - [anon_sym_STAR_EQ] = ACTIONS(7001), - [anon_sym_SLASH_EQ] = ACTIONS(7001), - [anon_sym_PERCENT_EQ] = ACTIONS(7001), - [anon_sym_PLUS_EQ] = ACTIONS(7001), - [anon_sym_DASH_EQ] = ACTIONS(7001), - [anon_sym_LT_LT_EQ] = ACTIONS(7001), - [anon_sym_GT_GT_EQ] = ACTIONS(7001), - [anon_sym_AMP_EQ] = ACTIONS(7001), - [anon_sym_CARET_EQ] = ACTIONS(7001), - [anon_sym_PIPE_EQ] = ACTIONS(7001), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(7001), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(7001), - [anon_sym_PLUS_PLUS] = ACTIONS(7001), - [anon_sym_DOT] = ACTIONS(6999), - [anon_sym_DOT_STAR] = ACTIONS(7001), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - [anon_sym_DASH_GT_STAR] = ACTIONS(7001), + [sym__abstract_declarator] = STATE(4754), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(7075), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7369), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7369), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_GT2] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), }, [STATE(2356)] = { - [sym_type_qualifier] = STATE(2359), - [sym_alignas_qualifier] = STATE(2576), - [aux_sym__type_definition_type_repeat1] = STATE(2359), - [aux_sym_sized_type_specifier_repeat1] = STATE(2483), - [sym_identifier] = ACTIONS(8052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_RPAREN] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(8054), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(8057), - [anon_sym_unsigned] = ACTIONS(8057), - [anon_sym_long] = ACTIONS(8057), - [anon_sym_short] = ACTIONS(8057), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(8054), - [anon_sym_constexpr] = ACTIONS(8054), - [anon_sym_volatile] = ACTIONS(8054), - [anon_sym_restrict] = ACTIONS(8054), - [anon_sym___restrict__] = ACTIONS(8054), - [anon_sym__Atomic] = ACTIONS(8054), - [anon_sym__Noreturn] = ACTIONS(8054), - [anon_sym_noreturn] = ACTIONS(8054), - [anon_sym__Nonnull] = ACTIONS(8054), - [anon_sym_mutable] = ACTIONS(8054), - [anon_sym_constinit] = ACTIONS(8054), - [anon_sym_consteval] = ACTIONS(8054), - [anon_sym_alignas] = ACTIONS(8059), - [anon_sym__Alignas] = ACTIONS(8059), - [sym_primitive_type] = ACTIONS(8062), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7251), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), - [anon_sym_DASH_GT_STAR] = ACTIONS(7249), + [sym__abstract_declarator] = STATE(4757), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2358), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(7075), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7373), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7373), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_GT2] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), }, [STATE(2357)] = { - [sym_decltype_auto] = STATE(3244), - [sym_template_argument_list] = STATE(2577), - [aux_sym_sized_type_specifier_repeat1] = STATE(2209), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5636), - [anon_sym_SLASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5636), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5636), - [anon_sym_CARET] = ACTIONS(5636), - [anon_sym_AMP] = ACTIONS(5636), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5636), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5636), - [anon_sym_LT] = ACTIONS(8064), - [anon_sym_LT_LT] = ACTIONS(5636), - [anon_sym_GT_GT] = ACTIONS(5636), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(7067), - [anon_sym_unsigned] = ACTIONS(7067), - [anon_sym_long] = ACTIONS(7067), - [anon_sym_short] = ACTIONS(7067), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_RBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [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(5643), - [anon_sym_or_eq] = ACTIONS(5643), - [anon_sym_xor_eq] = ACTIONS(5643), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5636), - [anon_sym_and] = ACTIONS(5636), - [anon_sym_bitor] = ACTIONS(5643), - [anon_sym_xor] = ACTIONS(5636), - [anon_sym_bitand] = ACTIONS(5643), - [anon_sym_not_eq] = ACTIONS(5643), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7071), - [anon_sym_decltype] = ACTIONS(7073), - [anon_sym_final] = ACTIONS(5643), - [anon_sym_override] = ACTIONS(5643), - [anon_sym_requires] = ACTIONS(5643), + [sym__abstract_declarator] = STATE(4743), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7075), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6841), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6841), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_GT2] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), }, [STATE(2358)] = { - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(2365), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [aux_sym_sized_type_specifier_repeat1] = STATE(2418), - [sym_identifier] = ACTIONS(7611), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_RPAREN] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(7024), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(7616), - [anon_sym_unsigned] = ACTIONS(7616), - [anon_sym_long] = ACTIONS(7616), - [anon_sym_short] = ACTIONS(7616), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7024), - [anon_sym_volatile] = ACTIONS(7024), - [anon_sym_restrict] = ACTIONS(7024), - [anon_sym___restrict__] = ACTIONS(7024), - [anon_sym__Atomic] = ACTIONS(7024), - [anon_sym__Noreturn] = ACTIONS(7024), - [anon_sym_noreturn] = ACTIONS(7024), - [anon_sym__Nonnull] = ACTIONS(7024), - [anon_sym_mutable] = ACTIONS(7024), - [anon_sym_constinit] = ACTIONS(7024), - [anon_sym_consteval] = ACTIONS(7024), - [anon_sym_alignas] = ACTIONS(8066), - [anon_sym__Alignas] = ACTIONS(8066), - [sym_primitive_type] = ACTIONS(7621), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7207), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7205), + [sym__abstract_declarator] = STATE(4663), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(7075), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_and_eq] = ACTIONS(7341), + [anon_sym_or_eq] = ACTIONS(7341), + [anon_sym_xor_eq] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_GT2] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), }, [STATE(2359)] = { - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [aux_sym__type_definition_type_repeat1] = STATE(2367), - [aux_sym_sized_type_specifier_repeat1] = STATE(2639), - [sym_identifier] = ACTIONS(8068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_RPAREN] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(8070), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(8073), - [anon_sym_unsigned] = ACTIONS(8073), - [anon_sym_long] = ACTIONS(8073), - [anon_sym_short] = ACTIONS(8073), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(8070), - [anon_sym_constexpr] = ACTIONS(8070), - [anon_sym_volatile] = ACTIONS(8070), - [anon_sym_restrict] = ACTIONS(8070), - [anon_sym___restrict__] = ACTIONS(8070), - [anon_sym__Atomic] = ACTIONS(8070), - [anon_sym__Noreturn] = ACTIONS(8070), - [anon_sym_noreturn] = ACTIONS(8070), - [anon_sym__Nonnull] = ACTIONS(8070), - [anon_sym_mutable] = ACTIONS(8070), - [anon_sym_constinit] = ACTIONS(8070), - [anon_sym_consteval] = ACTIONS(8070), - [anon_sym_alignas] = ACTIONS(8075), - [anon_sym__Alignas] = ACTIONS(8075), - [sym_primitive_type] = ACTIONS(8078), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7207), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), - [anon_sym_DASH_GT_STAR] = ACTIONS(7205), + [sym__abstract_declarator] = STATE(4745), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1975), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7073), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7075), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7077), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7347), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7347), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_GT2] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), }, [STATE(2360)] = { - [sym_type_qualifier] = STATE(2358), - [sym_alignas_qualifier] = STATE(2365), - [aux_sym__type_definition_type_repeat1] = STATE(2358), - [aux_sym_sized_type_specifier_repeat1] = STATE(2525), - [sym_identifier] = ACTIONS(7573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_RPAREN] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(7024), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(8080), - [anon_sym_unsigned] = ACTIONS(8080), - [anon_sym_long] = ACTIONS(8080), - [anon_sym_short] = ACTIONS(8080), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7024), - [anon_sym_volatile] = ACTIONS(7024), - [anon_sym_restrict] = ACTIONS(7024), - [anon_sym___restrict__] = ACTIONS(7024), - [anon_sym__Atomic] = ACTIONS(7024), - [anon_sym__Noreturn] = ACTIONS(7024), - [anon_sym_noreturn] = ACTIONS(7024), - [anon_sym__Nonnull] = ACTIONS(7024), - [anon_sym_mutable] = ACTIONS(7024), - [anon_sym_constinit] = ACTIONS(7024), - [anon_sym_consteval] = ACTIONS(7024), - [anon_sym_alignas] = ACTIONS(8066), - [anon_sym__Alignas] = ACTIONS(8066), - [sym_primitive_type] = ACTIONS(7583), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7251), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7249), + [sym_decltype_auto] = STATE(3227), + [sym_template_argument_list] = STATE(2576), + [aux_sym_sized_type_specifier_repeat1] = STATE(2494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_PERCENT] = ACTIONS(5609), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_EQ_EQ] = ACTIONS(5617), + [anon_sym_BANG_EQ] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_GT_EQ] = ACTIONS(5609), + [anon_sym_LT_EQ] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(8076), + [anon_sym_LT_LT] = ACTIONS(5609), + [anon_sym_GT_GT] = ACTIONS(5609), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(7015), + [anon_sym_unsigned] = ACTIONS(7015), + [anon_sym_long] = ACTIONS(7015), + [anon_sym_short] = ACTIONS(7015), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_EQ] = ACTIONS(5609), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_STAR_EQ] = ACTIONS(5617), + [anon_sym_SLASH_EQ] = ACTIONS(5617), + [anon_sym_PERCENT_EQ] = ACTIONS(5617), + [anon_sym_PLUS_EQ] = ACTIONS(5617), + [anon_sym_DASH_EQ] = ACTIONS(5617), + [anon_sym_LT_LT_EQ] = ACTIONS(5617), + [anon_sym_GT_GT_EQ] = ACTIONS(5609), + [anon_sym_AMP_EQ] = ACTIONS(5617), + [anon_sym_CARET_EQ] = ACTIONS(5617), + [anon_sym_PIPE_EQ] = ACTIONS(5617), + [anon_sym_and_eq] = ACTIONS(5617), + [anon_sym_or_eq] = ACTIONS(5617), + [anon_sym_xor_eq] = ACTIONS(5617), + [anon_sym_LT_EQ_GT] = ACTIONS(5617), + [anon_sym_or] = ACTIONS(5609), + [anon_sym_and] = ACTIONS(5609), + [anon_sym_bitor] = ACTIONS(5617), + [anon_sym_xor] = ACTIONS(5609), + [anon_sym_bitand] = ACTIONS(5617), + [anon_sym_not_eq] = ACTIONS(5617), + [anon_sym_DASH_DASH] = ACTIONS(5617), + [anon_sym_PLUS_PLUS] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_DOT_STAR] = ACTIONS(5617), + [anon_sym_DASH_GT] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7019), + [anon_sym_decltype] = ACTIONS(7021), + [anon_sym_final] = ACTIONS(5617), + [anon_sym_override] = ACTIONS(5617), + [anon_sym_GT2] = ACTIONS(5617), + [anon_sym_requires] = ACTIONS(5617), }, [STATE(2361)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2037), - [sym_identifier] = ACTIONS(7528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [aux_sym_preproc_if_token2] = ACTIONS(7525), - [aux_sym_preproc_else_token1] = ACTIONS(7525), - [aux_sym_preproc_elif_token1] = ACTIONS(7528), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7525), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(7003), - [anon_sym_unsigned] = ACTIONS(7003), - [anon_sym_long] = ACTIONS(7003), - [anon_sym_short] = ACTIONS(7003), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7525), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_and_eq] = ACTIONS(7528), - [anon_sym_or_eq] = ACTIONS(7528), - [anon_sym_xor_eq] = ACTIONS(7528), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2380), + [sym__abstract_declarator] = STATE(6159), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3018), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2078), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3018), + [aux_sym_pointer_declarator_repeat1] = STATE(2380), + [sym_identifier] = ACTIONS(6819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [aux_sym_preproc_if_token2] = ACTIONS(6815), + [aux_sym_preproc_else_token1] = ACTIONS(6815), + [aux_sym_preproc_elif_token1] = ACTIONS(6819), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6815), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(8080), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(8082), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(8084), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(8086), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8088), + [sym_ms_signed_ptr_modifier] = ACTIONS(8088), + [anon_sym__unaligned] = ACTIONS(8090), + [anon_sym___unaligned] = ACTIONS(8090), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6819), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6819), + [anon_sym_not_eq] = ACTIONS(6819), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6819), + [anon_sym_override] = ACTIONS(6819), + [anon_sym_requires] = ACTIONS(6819), }, [STATE(2362)] = { - [sym__abstract_declarator] = STATE(4734), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2327), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1980), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(7138), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7140), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7142), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7393), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7393), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7391), - [anon_sym_or_eq] = ACTIONS(7391), - [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_GT2] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7062), + [anon_sym_COMMA] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(7062), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7060), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7060), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7060), + [anon_sym_LT_EQ] = ACTIONS(7060), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7060), + [anon_sym_GT_GT] = ACTIONS(7060), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym_LBRACE] = ACTIONS(7062), + [anon_sym_signed] = ACTIONS(8096), + [anon_sym_unsigned] = ACTIONS(8096), + [anon_sym_long] = ACTIONS(8096), + [anon_sym_short] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(7062), + [anon_sym_EQ] = ACTIONS(7060), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_STAR_EQ] = ACTIONS(7062), + [anon_sym_SLASH_EQ] = ACTIONS(7062), + [anon_sym_PERCENT_EQ] = ACTIONS(7062), + [anon_sym_PLUS_EQ] = ACTIONS(7062), + [anon_sym_DASH_EQ] = ACTIONS(7062), + [anon_sym_LT_LT_EQ] = ACTIONS(7062), + [anon_sym_GT_GT_EQ] = ACTIONS(7060), + [anon_sym_AMP_EQ] = ACTIONS(7062), + [anon_sym_CARET_EQ] = ACTIONS(7062), + [anon_sym_PIPE_EQ] = ACTIONS(7062), + [anon_sym_and_eq] = ACTIONS(7060), + [anon_sym_or_eq] = ACTIONS(7060), + [anon_sym_xor_eq] = ACTIONS(7060), + [anon_sym_LT_EQ_GT] = ACTIONS(7062), + [anon_sym_or] = ACTIONS(7060), + [anon_sym_and] = ACTIONS(7060), + [anon_sym_bitor] = ACTIONS(7060), + [anon_sym_xor] = ACTIONS(7060), + [anon_sym_bitand] = ACTIONS(7060), + [anon_sym_not_eq] = ACTIONS(7060), + [anon_sym_DASH_DASH] = ACTIONS(7062), + [anon_sym_PLUS_PLUS] = ACTIONS(7062), + [anon_sym_DOT] = ACTIONS(7060), + [anon_sym_DOT_STAR] = ACTIONS(7062), + [anon_sym_DASH_GT] = ACTIONS(7062), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7060), + [anon_sym_override] = ACTIONS(7060), + [anon_sym_GT2] = ACTIONS(7062), + [anon_sym_requires] = ACTIONS(7060), }, [STATE(2363)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(10560), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_explicit_object_parameter_declaration] = STATE(10560), - [sym_optional_parameter_declaration] = STATE(10560), - [sym_variadic_parameter_declaration] = STATE(10560), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8082), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - [sym_this] = ACTIONS(5631), + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_RPAREN] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(8099), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACE] = ACTIONS(6880), + [anon_sym_signed] = ACTIONS(6878), + [anon_sym_unsigned] = ACTIONS(6878), + [anon_sym_long] = ACTIONS(6878), + [anon_sym_short] = ACTIONS(6878), + [anon_sym_LBRACK] = ACTIONS(6880), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(8099), + [anon_sym_constexpr] = ACTIONS(8099), + [anon_sym_volatile] = ACTIONS(8099), + [anon_sym_restrict] = ACTIONS(8099), + [anon_sym___restrict__] = ACTIONS(8099), + [anon_sym__Atomic] = ACTIONS(8099), + [anon_sym__Noreturn] = ACTIONS(8099), + [anon_sym_noreturn] = ACTIONS(8099), + [anon_sym__Nonnull] = ACTIONS(8099), + [anon_sym_mutable] = ACTIONS(8099), + [anon_sym_constinit] = ACTIONS(8099), + [anon_sym_consteval] = ACTIONS(8099), + [anon_sym_alignas] = ACTIONS(8102), + [anon_sym__Alignas] = ACTIONS(8102), + [sym_primitive_type] = ACTIONS(6878), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6880), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6878), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6878), + [anon_sym_DASH_GT_STAR] = ACTIONS(6880), }, [STATE(2364)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_RPAREN] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym___attribute__] = ACTIONS(7077), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_LBRACE] = ACTIONS(7079), - [anon_sym_signed] = ACTIONS(7077), - [anon_sym_unsigned] = ACTIONS(7077), - [anon_sym_long] = ACTIONS(7077), - [anon_sym_short] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(7079), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [sym_primitive_type] = ACTIONS(7077), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7079), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_and_eq] = ACTIONS(7077), - [anon_sym_or_eq] = ACTIONS(7077), - [anon_sym_xor_eq] = ACTIONS(7077), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7077), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7077), - [anon_sym_not_eq] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7077), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7077), - [anon_sym_override] = ACTIONS(7077), - [anon_sym_requires] = ACTIONS(7077), - [anon_sym_DASH_GT_STAR] = ACTIONS(7079), + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [aux_sym_sized_type_specifier_repeat1] = STATE(2514), + [sym_identifier] = ACTIONS(7840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7195), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7089), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7845), + [anon_sym_unsigned] = ACTIONS(7845), + [anon_sym_long] = ACTIONS(7845), + [anon_sym_short] = ACTIONS(7845), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7089), + [anon_sym_volatile] = ACTIONS(7089), + [anon_sym_restrict] = ACTIONS(7089), + [anon_sym___restrict__] = ACTIONS(7089), + [anon_sym__Atomic] = ACTIONS(7089), + [anon_sym__Noreturn] = ACTIONS(7089), + [anon_sym_noreturn] = ACTIONS(7089), + [anon_sym__Nonnull] = ACTIONS(7089), + [anon_sym_mutable] = ACTIONS(7089), + [anon_sym_constinit] = ACTIONS(7089), + [anon_sym_consteval] = ACTIONS(7089), + [anon_sym_alignas] = ACTIONS(8105), + [anon_sym__Alignas] = ACTIONS(8105), + [sym_primitive_type] = ACTIONS(7850), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7195), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7193), }, [STATE(2365)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_EQ] = 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_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_and_eq] = ACTIONS(3128), - [anon_sym_or_eq] = ACTIONS(3128), - [anon_sym_xor_eq] = ACTIONS(3128), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3128), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3128), - [anon_sym_not_eq] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [anon_sym_DASH_GT_STAR] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_and_eq] = ACTIONS(3126), + [anon_sym_or_eq] = ACTIONS(3126), + [anon_sym_xor_eq] = ACTIONS(3126), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3126), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3126), + [anon_sym_not_eq] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [anon_sym_DASH_GT_STAR] = ACTIONS(3116), }, [STATE(2366)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2595), - [sym__abstract_declarator] = STATE(6150), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2974), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2079), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2974), - [aux_sym_pointer_declarator_repeat1] = STATE(2595), - [sym_identifier] = ACTIONS(6821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [aux_sym_preproc_if_token2] = ACTIONS(6823), - [aux_sym_preproc_else_token1] = ACTIONS(6823), - [aux_sym_preproc_elif_token1] = ACTIONS(6821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8086), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8088), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8090), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8092), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8094), - [sym_ms_signed_ptr_modifier] = ACTIONS(8094), - [anon_sym__unaligned] = ACTIONS(8096), - [anon_sym___unaligned] = ACTIONS(8096), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6821), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6821), - [anon_sym_not_eq] = ACTIONS(6821), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6821), - [anon_sym_override] = ACTIONS(6821), - [anon_sym_requires] = ACTIONS(6821), + [sym_attribute_specifier] = STATE(2366), + [aux_sym_type_definition_repeat1] = STATE(2366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6966), + [anon_sym_COMMA] = ACTIONS(6966), + [anon_sym_LPAREN2] = ACTIONS(6966), + [anon_sym_DASH] = ACTIONS(6964), + [anon_sym_PLUS] = ACTIONS(6964), + [anon_sym_STAR] = ACTIONS(6964), + [anon_sym_SLASH] = ACTIONS(6964), + [anon_sym_PERCENT] = ACTIONS(6964), + [anon_sym_PIPE_PIPE] = ACTIONS(6966), + [anon_sym_AMP_AMP] = ACTIONS(6966), + [anon_sym_PIPE] = ACTIONS(6964), + [anon_sym_CARET] = ACTIONS(6964), + [anon_sym_AMP] = ACTIONS(6964), + [anon_sym_EQ_EQ] = ACTIONS(6966), + [anon_sym_BANG_EQ] = ACTIONS(6966), + [anon_sym_GT] = ACTIONS(6964), + [anon_sym_GT_EQ] = ACTIONS(6966), + [anon_sym_LT_EQ] = ACTIONS(6964), + [anon_sym_LT] = ACTIONS(6964), + [anon_sym_LT_LT] = ACTIONS(6964), + [anon_sym_GT_GT] = ACTIONS(6964), + [anon_sym___extension__] = ACTIONS(6966), + [anon_sym___attribute__] = ACTIONS(8107), + [anon_sym___attribute] = ACTIONS(8110), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6966), + [anon_sym_LBRACK] = ACTIONS(6964), + [anon_sym_RBRACK] = ACTIONS(6966), + [anon_sym_EQ] = ACTIONS(6964), + [anon_sym_const] = ACTIONS(6964), + [anon_sym_constexpr] = ACTIONS(6966), + [anon_sym_volatile] = ACTIONS(6966), + [anon_sym_restrict] = ACTIONS(6966), + [anon_sym___restrict__] = ACTIONS(6966), + [anon_sym__Atomic] = ACTIONS(6966), + [anon_sym__Noreturn] = ACTIONS(6966), + [anon_sym_noreturn] = ACTIONS(6966), + [anon_sym__Nonnull] = ACTIONS(6966), + [anon_sym_mutable] = ACTIONS(6966), + [anon_sym_constinit] = ACTIONS(6966), + [anon_sym_consteval] = ACTIONS(6966), + [anon_sym_alignas] = ACTIONS(6966), + [anon_sym__Alignas] = ACTIONS(6966), + [anon_sym_QMARK] = ACTIONS(6966), + [anon_sym_STAR_EQ] = ACTIONS(6966), + [anon_sym_SLASH_EQ] = ACTIONS(6966), + [anon_sym_PERCENT_EQ] = ACTIONS(6966), + [anon_sym_PLUS_EQ] = ACTIONS(6966), + [anon_sym_DASH_EQ] = ACTIONS(6966), + [anon_sym_LT_LT_EQ] = ACTIONS(6966), + [anon_sym_GT_GT_EQ] = ACTIONS(6966), + [anon_sym_AMP_EQ] = ACTIONS(6966), + [anon_sym_CARET_EQ] = ACTIONS(6966), + [anon_sym_PIPE_EQ] = ACTIONS(6966), + [anon_sym_and_eq] = ACTIONS(6966), + [anon_sym_or_eq] = ACTIONS(6966), + [anon_sym_xor_eq] = ACTIONS(6966), + [anon_sym_LT_EQ_GT] = ACTIONS(6966), + [anon_sym_or] = ACTIONS(6964), + [anon_sym_and] = ACTIONS(6964), + [anon_sym_bitor] = ACTIONS(6966), + [anon_sym_xor] = ACTIONS(6964), + [anon_sym_bitand] = ACTIONS(6966), + [anon_sym_not_eq] = ACTIONS(6966), + [anon_sym_DASH_DASH] = ACTIONS(6966), + [anon_sym_PLUS_PLUS] = ACTIONS(6966), + [anon_sym_asm] = ACTIONS(6966), + [anon_sym___asm__] = ACTIONS(6966), + [anon_sym___asm] = ACTIONS(6964), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_DOT_STAR] = ACTIONS(6966), + [anon_sym_DASH_GT] = ACTIONS(6966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6966), + [anon_sym_override] = ACTIONS(6966), + [anon_sym_noexcept] = ACTIONS(6966), + [anon_sym_throw] = ACTIONS(6966), + [anon_sym_requires] = ACTIONS(6966), }, [STATE(2367)] = { - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [aux_sym__type_definition_type_repeat1] = STATE(2367), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_RPAREN] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(8102), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACE] = ACTIONS(6891), - [anon_sym_signed] = ACTIONS(6889), - [anon_sym_unsigned] = ACTIONS(6889), - [anon_sym_long] = ACTIONS(6889), - [anon_sym_short] = ACTIONS(6889), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(8102), - [anon_sym_constexpr] = ACTIONS(8102), - [anon_sym_volatile] = ACTIONS(8102), - [anon_sym_restrict] = ACTIONS(8102), - [anon_sym___restrict__] = ACTIONS(8102), - [anon_sym__Atomic] = ACTIONS(8102), - [anon_sym__Noreturn] = ACTIONS(8102), - [anon_sym_noreturn] = ACTIONS(8102), - [anon_sym__Nonnull] = ACTIONS(8102), - [anon_sym_mutable] = ACTIONS(8102), - [anon_sym_constinit] = ACTIONS(8102), - [anon_sym_consteval] = ACTIONS(8102), - [anon_sym_alignas] = ACTIONS(8105), - [anon_sym__Alignas] = ACTIONS(8105), - [sym_primitive_type] = ACTIONS(6889), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6891), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6889), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_requires] = ACTIONS(6889), - [anon_sym_DASH_GT_STAR] = ACTIONS(6891), + [sym_type_qualifier] = STATE(2370), + [sym_alignas_qualifier] = STATE(2394), + [aux_sym__type_definition_type_repeat1] = STATE(2370), + [aux_sym_sized_type_specifier_repeat1] = STATE(2570), + [sym_identifier] = ACTIONS(7852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(8113), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(8115), + [anon_sym_unsigned] = ACTIONS(8115), + [anon_sym_long] = ACTIONS(8115), + [anon_sym_short] = ACTIONS(8115), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_RBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(8113), + [anon_sym_constexpr] = ACTIONS(8113), + [anon_sym_volatile] = ACTIONS(8113), + [anon_sym_restrict] = ACTIONS(8113), + [anon_sym___restrict__] = ACTIONS(8113), + [anon_sym__Atomic] = ACTIONS(8113), + [anon_sym__Noreturn] = ACTIONS(8113), + [anon_sym_noreturn] = ACTIONS(8113), + [anon_sym__Nonnull] = ACTIONS(8113), + [anon_sym_mutable] = ACTIONS(8113), + [anon_sym_constinit] = ACTIONS(8113), + [anon_sym_consteval] = ACTIONS(8113), + [anon_sym_alignas] = ACTIONS(8117), + [anon_sym__Alignas] = ACTIONS(8117), + [sym_primitive_type] = ACTIONS(7325), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), }, [STATE(2368)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2366), - [sym__abstract_declarator] = STATE(6148), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2968), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2079), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2968), - [aux_sym_pointer_declarator_repeat1] = STATE(2366), - [sym_identifier] = ACTIONS(6861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [aux_sym_preproc_if_token2] = ACTIONS(6859), - [aux_sym_preproc_else_token1] = ACTIONS(6859), - [aux_sym_preproc_elif_token1] = ACTIONS(6861), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(8086), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(8088), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6859), - [anon_sym_AMP] = ACTIONS(8090), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6859), - [anon_sym_GT_GT] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(8092), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8094), - [sym_ms_signed_ptr_modifier] = ACTIONS(8094), - [anon_sym__unaligned] = ACTIONS(8096), - [anon_sym___unaligned] = ACTIONS(8096), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6861), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6861), - [anon_sym_not_eq] = ACTIONS(6861), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6861), - [anon_sym_override] = ACTIONS(6861), - [anon_sym_requires] = ACTIONS(6861), + [sym_argument_list] = STATE(3931), + [sym_initializer_list] = STATE(3911), + [aux_sym_sized_type_specifier_repeat1] = STATE(2197), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_signed] = ACTIONS(7588), + [anon_sym_unsigned] = ACTIONS(7588), + [anon_sym_long] = ACTIONS(7588), + [anon_sym_short] = ACTIONS(7588), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7246), + [anon_sym_or_eq] = ACTIONS(7246), + [anon_sym_xor_eq] = ACTIONS(7246), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), }, [STATE(2369)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2369), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(7001), - [anon_sym_LPAREN2] = ACTIONS(7001), - [anon_sym_DASH] = ACTIONS(6999), - [anon_sym_PLUS] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(6999), - [anon_sym_SLASH] = ACTIONS(6999), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(7001), - [anon_sym_PIPE] = ACTIONS(6999), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(6999), - [anon_sym_EQ_EQ] = ACTIONS(7001), - [anon_sym_BANG_EQ] = ACTIONS(7001), - [anon_sym_GT] = ACTIONS(6999), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(6999), - [anon_sym_LT] = ACTIONS(6999), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(6999), - [anon_sym_LBRACE] = ACTIONS(7001), - [anon_sym_signed] = ACTIONS(8108), - [anon_sym_unsigned] = ACTIONS(8108), - [anon_sym_long] = ACTIONS(8108), - [anon_sym_short] = ACTIONS(8108), - [anon_sym_LBRACK] = ACTIONS(7001), - [anon_sym_EQ] = ACTIONS(6999), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7001), - [anon_sym_STAR_EQ] = ACTIONS(7001), - [anon_sym_SLASH_EQ] = ACTIONS(7001), - [anon_sym_PERCENT_EQ] = ACTIONS(7001), - [anon_sym_PLUS_EQ] = ACTIONS(7001), - [anon_sym_DASH_EQ] = ACTIONS(7001), - [anon_sym_LT_LT_EQ] = ACTIONS(7001), - [anon_sym_GT_GT_EQ] = ACTIONS(6999), - [anon_sym_AMP_EQ] = ACTIONS(7001), - [anon_sym_CARET_EQ] = ACTIONS(7001), - [anon_sym_PIPE_EQ] = ACTIONS(7001), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(7001), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(7001), - [anon_sym_PLUS_PLUS] = ACTIONS(7001), - [anon_sym_DOT] = ACTIONS(6999), - [anon_sym_DOT_STAR] = ACTIONS(7001), - [anon_sym_DASH_GT] = ACTIONS(7001), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_GT2] = ACTIONS(7001), - [anon_sym_requires] = ACTIONS(6999), + [sym__abstract_declarator] = STATE(4917), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(7266), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(7268), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(7270), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym_SEMI] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(7341), + [anon_sym___attribute] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_and_eq] = ACTIONS(7341), + [anon_sym_or_eq] = ACTIONS(7341), + [anon_sym_xor_eq] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), }, [STATE(2370)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2595), - [sym__abstract_declarator] = STATE(6179), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2970), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2069), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2970), - [aux_sym_pointer_declarator_repeat1] = STATE(2595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8111), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8113), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8115), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), - [sym_ms_signed_ptr_modifier] = ACTIONS(8119), - [anon_sym__unaligned] = ACTIONS(8121), - [anon_sym___unaligned] = ACTIONS(8121), - [anon_sym_RBRACE] = ACTIONS(6823), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - [anon_sym_COLON_RBRACK] = ACTIONS(6823), + [sym_type_qualifier] = STATE(2293), + [sym_alignas_qualifier] = STATE(2394), + [aux_sym__type_definition_type_repeat1] = STATE(2293), + [aux_sym_sized_type_specifier_repeat1] = STATE(2175), + [sym_identifier] = ACTIONS(7864), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(8113), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(7316), + [anon_sym_unsigned] = ACTIONS(7316), + [anon_sym_long] = ACTIONS(7316), + [anon_sym_short] = ACTIONS(7316), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_RBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(8113), + [anon_sym_constexpr] = ACTIONS(8113), + [anon_sym_volatile] = ACTIONS(8113), + [anon_sym_restrict] = ACTIONS(8113), + [anon_sym___restrict__] = ACTIONS(8113), + [anon_sym__Atomic] = ACTIONS(8113), + [anon_sym__Noreturn] = ACTIONS(8113), + [anon_sym_noreturn] = ACTIONS(8113), + [anon_sym__Nonnull] = ACTIONS(8113), + [anon_sym_mutable] = ACTIONS(8113), + [anon_sym_constinit] = ACTIONS(8113), + [anon_sym_consteval] = ACTIONS(8113), + [anon_sym_alignas] = ACTIONS(8117), + [anon_sym__Alignas] = ACTIONS(8117), + [sym_primitive_type] = ACTIONS(7318), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_and_eq] = ACTIONS(7195), + [anon_sym_or_eq] = ACTIONS(7195), + [anon_sym_xor_eq] = ACTIONS(7195), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), }, [STATE(2371)] = { - [sym_argument_list] = STATE(3894), - [sym_initializer_list] = STATE(3899), - [aux_sym_sized_type_specifier_repeat1] = STATE(2208), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7687), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_signed] = ACTIONS(7721), - [anon_sym_unsigned] = ACTIONS(7721), - [anon_sym_long] = ACTIONS(7721), - [anon_sym_short] = ACTIONS(7721), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7223), - [anon_sym_or_eq] = ACTIONS(7223), - [anon_sym_xor_eq] = ACTIONS(7223), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(7113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_RPAREN] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym___attribute__] = ACTIONS(7113), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_LBRACE] = ACTIONS(7115), + [anon_sym_signed] = ACTIONS(7113), + [anon_sym_unsigned] = ACTIONS(7113), + [anon_sym_long] = ACTIONS(7113), + [anon_sym_short] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(7115), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [sym_primitive_type] = ACTIONS(7113), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_and_eq] = ACTIONS(7113), + [anon_sym_or_eq] = ACTIONS(7113), + [anon_sym_xor_eq] = ACTIONS(7113), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7113), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7113), + [anon_sym_not_eq] = ACTIONS(7113), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7113), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7113), + [anon_sym_override] = ACTIONS(7113), + [anon_sym_requires] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(7115), }, [STATE(2372)] = { - [sym_template_argument_list] = STATE(3735), - [aux_sym_sized_type_specifier_repeat1] = STATE(2476), + [sym__abstract_declarator] = STATE(4866), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2373), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(7266), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(7268), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(7270), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym_SEMI] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(7367), + [anon_sym___attribute] = ACTIONS(7365), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7367), + [anon_sym_or_eq] = ACTIONS(7367), + [anon_sym_xor_eq] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + }, + [STATE(2373)] = { + [sym__abstract_declarator] = STATE(4891), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(7266), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(7268), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(7270), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym_SEMI] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(7371), + [anon_sym___attribute] = ACTIONS(7369), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + }, + [STATE(2374)] = { + [sym_attribute_specifier] = STATE(2374), + [aux_sym_type_definition_repeat1] = STATE(2374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6966), + [anon_sym_COMMA] = ACTIONS(6966), + [anon_sym_LPAREN2] = ACTIONS(6966), + [anon_sym_DASH] = ACTIONS(6964), + [anon_sym_PLUS] = ACTIONS(6964), + [anon_sym_STAR] = ACTIONS(6964), + [anon_sym_SLASH] = ACTIONS(6964), + [anon_sym_PERCENT] = ACTIONS(6964), + [anon_sym_PIPE_PIPE] = ACTIONS(6966), + [anon_sym_AMP_AMP] = ACTIONS(6966), + [anon_sym_PIPE] = ACTIONS(6964), + [anon_sym_CARET] = ACTIONS(6964), + [anon_sym_AMP] = ACTIONS(6964), + [anon_sym_EQ_EQ] = ACTIONS(6966), + [anon_sym_BANG_EQ] = ACTIONS(6966), + [anon_sym_GT] = ACTIONS(6964), + [anon_sym_GT_EQ] = ACTIONS(6964), + [anon_sym_LT_EQ] = ACTIONS(6964), + [anon_sym_LT] = ACTIONS(6964), + [anon_sym_LT_LT] = ACTIONS(6964), + [anon_sym_GT_GT] = ACTIONS(6964), + [anon_sym___extension__] = ACTIONS(6966), + [anon_sym___attribute__] = ACTIONS(8119), + [anon_sym___attribute] = ACTIONS(8122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6966), + [anon_sym_LBRACK] = ACTIONS(6964), + [anon_sym_EQ] = ACTIONS(6964), + [anon_sym_const] = ACTIONS(6964), + [anon_sym_constexpr] = ACTIONS(6966), + [anon_sym_volatile] = ACTIONS(6966), + [anon_sym_restrict] = ACTIONS(6966), + [anon_sym___restrict__] = ACTIONS(6966), + [anon_sym__Atomic] = ACTIONS(6966), + [anon_sym__Noreturn] = ACTIONS(6966), + [anon_sym_noreturn] = ACTIONS(6966), + [anon_sym__Nonnull] = ACTIONS(6966), + [anon_sym_mutable] = ACTIONS(6966), + [anon_sym_constinit] = ACTIONS(6966), + [anon_sym_consteval] = ACTIONS(6966), + [anon_sym_alignas] = ACTIONS(6966), + [anon_sym__Alignas] = ACTIONS(6966), + [anon_sym_QMARK] = ACTIONS(6966), + [anon_sym_STAR_EQ] = ACTIONS(6966), + [anon_sym_SLASH_EQ] = ACTIONS(6966), + [anon_sym_PERCENT_EQ] = ACTIONS(6966), + [anon_sym_PLUS_EQ] = ACTIONS(6966), + [anon_sym_DASH_EQ] = ACTIONS(6966), + [anon_sym_LT_LT_EQ] = ACTIONS(6966), + [anon_sym_GT_GT_EQ] = ACTIONS(6964), + [anon_sym_AMP_EQ] = ACTIONS(6966), + [anon_sym_CARET_EQ] = ACTIONS(6966), + [anon_sym_PIPE_EQ] = ACTIONS(6966), + [anon_sym_and_eq] = ACTIONS(6966), + [anon_sym_or_eq] = ACTIONS(6966), + [anon_sym_xor_eq] = ACTIONS(6966), + [anon_sym_LT_EQ_GT] = ACTIONS(6966), + [anon_sym_or] = ACTIONS(6964), + [anon_sym_and] = ACTIONS(6964), + [anon_sym_bitor] = ACTIONS(6966), + [anon_sym_xor] = ACTIONS(6964), + [anon_sym_bitand] = ACTIONS(6966), + [anon_sym_not_eq] = ACTIONS(6966), + [anon_sym_DASH_DASH] = ACTIONS(6966), + [anon_sym_PLUS_PLUS] = ACTIONS(6966), + [anon_sym_asm] = ACTIONS(6966), + [anon_sym___asm__] = ACTIONS(6966), + [anon_sym___asm] = ACTIONS(6964), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_DOT_STAR] = ACTIONS(6966), + [anon_sym_DASH_GT] = ACTIONS(6966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6966), + [anon_sym_override] = ACTIONS(6966), + [anon_sym_GT2] = ACTIONS(6966), + [anon_sym_noexcept] = ACTIONS(6966), + [anon_sym_throw] = ACTIONS(6966), + [anon_sym_requires] = ACTIONS(6966), + }, + [STATE(2375)] = { + [sym__abstract_declarator] = STATE(4895), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2369), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(7266), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(7268), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(7270), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym_SEMI] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(7375), + [anon_sym___attribute] = ACTIONS(7373), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + }, + [STATE(2376)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2377), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8125), + [anon_sym_unsigned] = ACTIONS(8125), + [anon_sym_long] = ACTIONS(8125), + [anon_sym_short] = ACTIONS(8125), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_RBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_requires] = ACTIONS(7402), + }, + [STATE(2377)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2377), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7062), + [anon_sym_COMMA] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(7062), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7060), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7060), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7062), + [anon_sym_LT_EQ] = ACTIONS(7060), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7060), + [anon_sym_GT_GT] = ACTIONS(7060), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym_LBRACE] = ACTIONS(7062), + [anon_sym_signed] = ACTIONS(8125), + [anon_sym_unsigned] = ACTIONS(8125), + [anon_sym_long] = ACTIONS(8125), + [anon_sym_short] = ACTIONS(8125), + [anon_sym_LBRACK] = ACTIONS(7062), + [anon_sym_RBRACK] = ACTIONS(7062), + [anon_sym_EQ] = ACTIONS(7060), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_STAR_EQ] = ACTIONS(7062), + [anon_sym_SLASH_EQ] = ACTIONS(7062), + [anon_sym_PERCENT_EQ] = ACTIONS(7062), + [anon_sym_PLUS_EQ] = ACTIONS(7062), + [anon_sym_DASH_EQ] = ACTIONS(7062), + [anon_sym_LT_LT_EQ] = ACTIONS(7062), + [anon_sym_GT_GT_EQ] = ACTIONS(7062), + [anon_sym_AMP_EQ] = ACTIONS(7062), + [anon_sym_CARET_EQ] = ACTIONS(7062), + [anon_sym_PIPE_EQ] = ACTIONS(7062), + [anon_sym_and_eq] = ACTIONS(7060), + [anon_sym_or_eq] = ACTIONS(7060), + [anon_sym_xor_eq] = ACTIONS(7060), + [anon_sym_LT_EQ_GT] = ACTIONS(7062), + [anon_sym_or] = ACTIONS(7060), + [anon_sym_and] = ACTIONS(7060), + [anon_sym_bitor] = ACTIONS(7060), + [anon_sym_xor] = ACTIONS(7060), + [anon_sym_bitand] = ACTIONS(7060), + [anon_sym_not_eq] = ACTIONS(7060), + [anon_sym_DASH_DASH] = ACTIONS(7062), + [anon_sym_PLUS_PLUS] = ACTIONS(7062), + [anon_sym_DOT] = ACTIONS(7060), + [anon_sym_DOT_STAR] = ACTIONS(7062), + [anon_sym_DASH_GT] = ACTIONS(7062), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7060), + [anon_sym_override] = ACTIONS(7060), + [anon_sym_requires] = ACTIONS(7060), + }, + [STATE(2378)] = { + [sym_template_argument_list] = STATE(3755), + [aux_sym_sized_type_specifier_repeat1] = STATE(2494), [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), [anon_sym_COMMA] = ACTIONS(7359), [anon_sym_LPAREN2] = ACTIONS(7359), @@ -345683,12 +346040,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(7359), [anon_sym___attribute__] = ACTIONS(7359), [anon_sym___attribute] = ACTIONS(7357), - [anon_sym_COLON_COLON] = ACTIONS(5655), + [anon_sym_COLON_COLON] = ACTIONS(5632), [anon_sym_LBRACE] = ACTIONS(7359), - [anon_sym_signed] = ACTIONS(7032), - [anon_sym_unsigned] = ACTIONS(7032), - [anon_sym_long] = ACTIONS(7032), - [anon_sym_short] = ACTIONS(7032), + [anon_sym_signed] = ACTIONS(7015), + [anon_sym_unsigned] = ACTIONS(7015), + [anon_sym_long] = ACTIONS(7015), + [anon_sym_short] = ACTIONS(7015), [anon_sym_LBRACK] = ACTIONS(7359), [anon_sym_EQ] = ACTIONS(7357), [anon_sym_const] = ACTIONS(7357), @@ -345737,922 +346094,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(7359), [anon_sym_requires] = ACTIONS(7359), }, - [STATE(2373)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2370), - [sym__abstract_declarator] = STATE(6170), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2980), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2069), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2980), - [aux_sym_pointer_declarator_repeat1] = STATE(2370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(8111), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(8113), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6859), - [anon_sym_AMP] = ACTIONS(8115), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6859), - [anon_sym_GT_GT] = ACTIONS(6859), - [anon_sym_SEMI] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6859), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), - [sym_ms_signed_ptr_modifier] = ACTIONS(8119), - [anon_sym__unaligned] = ACTIONS(8121), - [anon_sym___unaligned] = ACTIONS(8121), - [anon_sym_RBRACE] = ACTIONS(6859), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6859), - [anon_sym_and] = ACTIONS(6859), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6859), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), - [anon_sym_COLON_RBRACK] = ACTIONS(6859), - }, - [STATE(2374)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2374), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(7001), - [anon_sym_LPAREN2] = ACTIONS(7001), - [anon_sym_DASH] = ACTIONS(6999), - [anon_sym_PLUS] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(6999), - [anon_sym_SLASH] = ACTIONS(6999), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(7001), - [anon_sym_PIPE] = ACTIONS(6999), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(6999), - [anon_sym_EQ_EQ] = ACTIONS(7001), - [anon_sym_BANG_EQ] = ACTIONS(7001), - [anon_sym_GT] = ACTIONS(6999), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(6999), - [anon_sym_LT] = ACTIONS(6999), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(6999), - [anon_sym_LBRACE] = ACTIONS(7001), - [anon_sym_signed] = ACTIONS(8127), - [anon_sym_unsigned] = ACTIONS(8127), - [anon_sym_long] = ACTIONS(8127), - [anon_sym_short] = ACTIONS(8127), - [anon_sym_LBRACK] = ACTIONS(7001), - [anon_sym_RBRACK] = ACTIONS(7001), - [anon_sym_EQ] = ACTIONS(6999), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7001), - [anon_sym_STAR_EQ] = ACTIONS(7001), - [anon_sym_SLASH_EQ] = ACTIONS(7001), - [anon_sym_PERCENT_EQ] = ACTIONS(7001), - [anon_sym_PLUS_EQ] = ACTIONS(7001), - [anon_sym_DASH_EQ] = ACTIONS(7001), - [anon_sym_LT_LT_EQ] = ACTIONS(7001), - [anon_sym_GT_GT_EQ] = ACTIONS(7001), - [anon_sym_AMP_EQ] = ACTIONS(7001), - [anon_sym_CARET_EQ] = ACTIONS(7001), - [anon_sym_PIPE_EQ] = ACTIONS(7001), - [anon_sym_and_eq] = ACTIONS(6999), - [anon_sym_or_eq] = ACTIONS(6999), - [anon_sym_xor_eq] = ACTIONS(6999), - [anon_sym_LT_EQ_GT] = ACTIONS(7001), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(7001), - [anon_sym_PLUS_PLUS] = ACTIONS(7001), - [anon_sym_DOT] = ACTIONS(6999), - [anon_sym_DOT_STAR] = ACTIONS(7001), - [anon_sym_DASH_GT] = ACTIONS(7001), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - }, - [STATE(2375)] = { - [sym_attribute_specifier] = STATE(2375), - [aux_sym_type_definition_repeat1] = STATE(2375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), - [anon_sym_COMMA] = ACTIONS(6937), - [anon_sym_LPAREN2] = ACTIONS(6937), - [anon_sym_DASH] = ACTIONS(6935), - [anon_sym_PLUS] = ACTIONS(6935), - [anon_sym_STAR] = ACTIONS(6935), - [anon_sym_SLASH] = ACTIONS(6935), - [anon_sym_PERCENT] = ACTIONS(6935), - [anon_sym_PIPE_PIPE] = ACTIONS(6937), - [anon_sym_AMP_AMP] = ACTIONS(6937), - [anon_sym_PIPE] = ACTIONS(6935), - [anon_sym_CARET] = ACTIONS(6935), - [anon_sym_AMP] = ACTIONS(6935), - [anon_sym_EQ_EQ] = ACTIONS(6937), - [anon_sym_BANG_EQ] = ACTIONS(6937), - [anon_sym_GT] = ACTIONS(6935), - [anon_sym_GT_EQ] = ACTIONS(6935), - [anon_sym_LT_EQ] = ACTIONS(6935), - [anon_sym_LT] = ACTIONS(6935), - [anon_sym_LT_LT] = ACTIONS(6935), - [anon_sym_GT_GT] = ACTIONS(6935), - [anon_sym___extension__] = ACTIONS(6937), - [anon_sym___attribute__] = ACTIONS(8130), - [anon_sym___attribute] = ACTIONS(8133), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), - [anon_sym_LBRACK] = ACTIONS(6935), - [anon_sym_EQ] = ACTIONS(6935), - [anon_sym_const] = ACTIONS(6935), - [anon_sym_constexpr] = ACTIONS(6937), - [anon_sym_volatile] = ACTIONS(6937), - [anon_sym_restrict] = ACTIONS(6937), - [anon_sym___restrict__] = ACTIONS(6937), - [anon_sym__Atomic] = ACTIONS(6937), - [anon_sym__Noreturn] = ACTIONS(6937), - [anon_sym_noreturn] = ACTIONS(6937), - [anon_sym__Nonnull] = ACTIONS(6937), - [anon_sym_mutable] = ACTIONS(6937), - [anon_sym_constinit] = ACTIONS(6937), - [anon_sym_consteval] = ACTIONS(6937), - [anon_sym_alignas] = ACTIONS(6937), - [anon_sym__Alignas] = ACTIONS(6937), - [anon_sym_QMARK] = ACTIONS(6937), - [anon_sym_STAR_EQ] = ACTIONS(6937), - [anon_sym_SLASH_EQ] = ACTIONS(6937), - [anon_sym_PERCENT_EQ] = ACTIONS(6937), - [anon_sym_PLUS_EQ] = ACTIONS(6937), - [anon_sym_DASH_EQ] = ACTIONS(6937), - [anon_sym_LT_LT_EQ] = ACTIONS(6937), - [anon_sym_GT_GT_EQ] = ACTIONS(6935), - [anon_sym_AMP_EQ] = ACTIONS(6937), - [anon_sym_CARET_EQ] = ACTIONS(6937), - [anon_sym_PIPE_EQ] = ACTIONS(6937), - [anon_sym_and_eq] = ACTIONS(6937), - [anon_sym_or_eq] = ACTIONS(6937), - [anon_sym_xor_eq] = ACTIONS(6937), - [anon_sym_LT_EQ_GT] = ACTIONS(6937), - [anon_sym_or] = ACTIONS(6935), - [anon_sym_and] = ACTIONS(6935), - [anon_sym_bitor] = ACTIONS(6937), - [anon_sym_xor] = ACTIONS(6935), - [anon_sym_bitand] = ACTIONS(6937), - [anon_sym_not_eq] = ACTIONS(6937), - [anon_sym_DASH_DASH] = ACTIONS(6937), - [anon_sym_PLUS_PLUS] = ACTIONS(6937), - [anon_sym_asm] = ACTIONS(6937), - [anon_sym___asm__] = ACTIONS(6937), - [anon_sym___asm] = ACTIONS(6935), - [anon_sym_DOT] = ACTIONS(6935), - [anon_sym_DOT_STAR] = ACTIONS(6937), - [anon_sym_DASH_GT] = ACTIONS(6937), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6937), - [anon_sym_override] = ACTIONS(6937), - [anon_sym_GT2] = ACTIONS(6937), - [anon_sym_noexcept] = ACTIONS(6937), - [anon_sym_throw] = ACTIONS(6937), - [anon_sym_requires] = ACTIONS(6937), - }, - [STATE(2376)] = { - [sym__abstract_declarator] = STATE(4792), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2379), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1979), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(7162), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7164), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7166), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym_SEMI] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(7391), - [anon_sym___attribute] = ACTIONS(7393), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7391), - [anon_sym_or_eq] = ACTIONS(7391), - [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - }, - [STATE(2377)] = { - [sym_type_qualifier] = STATE(2378), - [sym_alignas_qualifier] = STATE(2423), - [aux_sym__type_definition_type_repeat1] = STATE(2378), - [aux_sym_sized_type_specifier_repeat1] = STATE(2596), - [sym_identifier] = ACTIONS(7940), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(7154), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(8136), - [anon_sym_unsigned] = ACTIONS(8136), - [anon_sym_long] = ACTIONS(8136), - [anon_sym_short] = ACTIONS(8136), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7154), - [anon_sym_volatile] = ACTIONS(7154), - [anon_sym_restrict] = ACTIONS(7154), - [anon_sym___restrict__] = ACTIONS(7154), - [anon_sym__Atomic] = ACTIONS(7154), - [anon_sym__Noreturn] = ACTIONS(7154), - [anon_sym_noreturn] = ACTIONS(7154), - [anon_sym__Nonnull] = ACTIONS(7154), - [anon_sym_mutable] = ACTIONS(7154), - [anon_sym_constinit] = ACTIONS(7154), - [anon_sym_consteval] = ACTIONS(7154), - [anon_sym_alignas] = ACTIONS(8138), - [anon_sym__Alignas] = ACTIONS(8138), - [sym_primitive_type] = ACTIONS(7950), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7251), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7249), - }, - [STATE(2378)] = { - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [aux_sym_sized_type_specifier_repeat1] = STATE(2508), - [sym_identifier] = ACTIONS(7952), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7207), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(7154), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(7957), - [anon_sym_unsigned] = ACTIONS(7957), - [anon_sym_long] = ACTIONS(7957), - [anon_sym_short] = ACTIONS(7957), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7154), - [anon_sym_volatile] = ACTIONS(7154), - [anon_sym_restrict] = ACTIONS(7154), - [anon_sym___restrict__] = ACTIONS(7154), - [anon_sym__Atomic] = ACTIONS(7154), - [anon_sym__Noreturn] = ACTIONS(7154), - [anon_sym_noreturn] = ACTIONS(7154), - [anon_sym__Nonnull] = ACTIONS(7154), - [anon_sym_mutable] = ACTIONS(7154), - [anon_sym_constinit] = ACTIONS(7154), - [anon_sym_consteval] = ACTIONS(7154), - [anon_sym_alignas] = ACTIONS(8138), - [anon_sym__Alignas] = ACTIONS(8138), - [sym_primitive_type] = ACTIONS(7962), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7207), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7205), - }, [STATE(2379)] = { - [sym__abstract_declarator] = STATE(4797), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1979), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(7162), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(7164), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(7166), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym_SEMI] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(7351), - [anon_sym___attribute] = ACTIONS(7349), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2385), + [sym__abstract_declarator] = STATE(6181), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2973), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2071), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2973), + [aux_sym_pointer_declarator_repeat1] = STATE(2385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(8128), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(8130), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(8132), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym_SEMI] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(6819), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6815), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8136), + [sym_ms_signed_ptr_modifier] = ACTIONS(8136), + [anon_sym__unaligned] = ACTIONS(8138), + [anon_sym___unaligned] = ACTIONS(8138), + [anon_sym_RBRACE] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6815), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + [anon_sym_COLON_RBRACK] = ACTIONS(6815), }, [STATE(2380)] = { - [sym__abstract_declarator] = STATE(4798), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2382), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1979), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2382), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7162), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7164), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7166), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym_SEMI] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(7343), - [anon_sym___attribute] = ACTIONS(7341), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2596), + [sym__abstract_declarator] = STATE(6162), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3082), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2078), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3082), + [aux_sym_pointer_declarator_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(6841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [aux_sym_preproc_if_token2] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8080), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8082), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8084), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8086), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8088), + [sym_ms_signed_ptr_modifier] = ACTIONS(8088), + [anon_sym__unaligned] = ACTIONS(8090), + [anon_sym___unaligned] = ACTIONS(8090), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6841), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6841), + [anon_sym_not_eq] = ACTIONS(6841), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6841), + [anon_sym_override] = ACTIONS(6841), + [anon_sym_requires] = ACTIONS(6841), }, [STATE(2381)] = { - [sym__abstract_declarator] = STATE(4807), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1979), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7162), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7164), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7166), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(6823), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - }, - [STATE(2382)] = { - [sym__abstract_declarator] = STATE(4801), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1979), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(7162), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(7164), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(7166), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym_SEMI] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(6849), - [anon_sym___attribute__] = ACTIONS(7355), - [anon_sym___attribute] = ACTIONS(7353), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7355), - [anon_sym_or_eq] = ACTIONS(7355), - [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - }, - [STATE(2383)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2369), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7528), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(7528), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8108), - [anon_sym_unsigned] = ACTIONS(8108), - [anon_sym_long] = ACTIONS(8108), - [anon_sym_short] = ACTIONS(8108), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(7528), - [anon_sym_constexpr] = ACTIONS(7528), - [anon_sym_volatile] = ACTIONS(7528), - [anon_sym_restrict] = ACTIONS(7528), - [anon_sym___restrict__] = ACTIONS(7528), - [anon_sym__Atomic] = ACTIONS(7528), - [anon_sym__Noreturn] = ACTIONS(7528), - [anon_sym_noreturn] = ACTIONS(7528), - [anon_sym__Nonnull] = ACTIONS(7528), - [anon_sym_mutable] = ACTIONS(7528), - [anon_sym_constinit] = ACTIONS(7528), - [anon_sym_consteval] = ACTIONS(7528), - [anon_sym_alignas] = ACTIONS(7528), - [anon_sym__Alignas] = ACTIONS(7528), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7528), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_and_eq] = ACTIONS(7528), - [anon_sym_or_eq] = ACTIONS(7528), - [anon_sym_xor_eq] = ACTIONS(7528), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_GT2] = ACTIONS(7525), - [anon_sym_requires] = ACTIONS(7528), - }, - [STATE(2384)] = { - [sym__abstract_declarator] = STATE(4808), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_type_qualifier] = STATE(2006), - [sym_alignas_qualifier] = STATE(2047), - [sym_parameter_list] = STATE(1979), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [aux_sym__type_definition_type_repeat1] = STATE(2006), + [sym__abstract_declarator] = STATE(4775), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(6825), + [anon_sym_LPAREN2] = ACTIONS(6817), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(7162), + [anon_sym_STAR] = ACTIONS(7266), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7347), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7164), + [anon_sym_AMP_AMP] = ACTIONS(7268), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7166), + [anon_sym_AMP] = ACTIONS(7270), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), @@ -346662,25 +346290,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7347), [anon_sym_GT_GT] = ACTIONS(7347), [anon_sym_SEMI] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(6849), + [anon_sym___extension__] = ACTIONS(6827), [anon_sym___attribute__] = ACTIONS(7345), [anon_sym___attribute] = ACTIONS(7347), - [anon_sym_LBRACK] = ACTIONS(6839), + [anon_sym_LBRACK] = ACTIONS(6835), [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(6855), - [anon_sym_constexpr] = ACTIONS(6849), - [anon_sym_volatile] = ACTIONS(6849), - [anon_sym_restrict] = ACTIONS(6849), - [anon_sym___restrict__] = ACTIONS(6849), - [anon_sym__Atomic] = ACTIONS(6849), - [anon_sym__Noreturn] = ACTIONS(6849), - [anon_sym_noreturn] = ACTIONS(6849), - [anon_sym__Nonnull] = ACTIONS(6849), - [anon_sym_mutable] = ACTIONS(6849), - [anon_sym_constinit] = ACTIONS(6849), - [anon_sym_consteval] = ACTIONS(6849), - [anon_sym_alignas] = ACTIONS(6857), - [anon_sym__Alignas] = ACTIONS(6857), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_STAR_EQ] = ACTIONS(7345), [anon_sym_SLASH_EQ] = ACTIONS(7345), @@ -346709,3716 +346337,4036 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), }, - [STATE(2385)] = { - [sym_type_qualifier] = STATE(2386), - [sym_alignas_qualifier] = STATE(2434), - [aux_sym__type_definition_type_repeat1] = STATE(2386), - [aux_sym_sized_type_specifier_repeat1] = STATE(2599), - [sym_identifier] = ACTIONS(7860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(8140), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(8142), - [anon_sym_unsigned] = ACTIONS(8142), - [anon_sym_long] = ACTIONS(8142), - [anon_sym_short] = ACTIONS(8142), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_RBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(8140), - [anon_sym_constexpr] = ACTIONS(8140), - [anon_sym_volatile] = ACTIONS(8140), - [anon_sym_restrict] = ACTIONS(8140), - [anon_sym___restrict__] = ACTIONS(8140), - [anon_sym__Atomic] = ACTIONS(8140), - [anon_sym__Noreturn] = ACTIONS(8140), - [anon_sym_noreturn] = ACTIONS(8140), - [anon_sym__Nonnull] = ACTIONS(8140), - [anon_sym_mutable] = ACTIONS(8140), - [anon_sym_constinit] = ACTIONS(8140), - [anon_sym_consteval] = ACTIONS(8140), - [anon_sym_alignas] = ACTIONS(8144), - [anon_sym__Alignas] = ACTIONS(8144), - [sym_primitive_type] = ACTIONS(7332), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_and_eq] = ACTIONS(7251), - [anon_sym_or_eq] = ACTIONS(7251), - [anon_sym_xor_eq] = ACTIONS(7251), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - }, - [STATE(2386)] = { - [sym_type_qualifier] = STATE(2305), - [sym_alignas_qualifier] = STATE(2434), - [aux_sym__type_definition_type_repeat1] = STATE(2305), - [aux_sym_sized_type_specifier_repeat1] = STATE(2217), - [sym_identifier] = ACTIONS(7852), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(8140), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(7337), - [anon_sym_unsigned] = ACTIONS(7337), - [anon_sym_long] = ACTIONS(7337), - [anon_sym_short] = ACTIONS(7337), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_RBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(8140), - [anon_sym_constexpr] = ACTIONS(8140), - [anon_sym_volatile] = ACTIONS(8140), - [anon_sym_restrict] = ACTIONS(8140), - [anon_sym___restrict__] = ACTIONS(8140), - [anon_sym__Atomic] = ACTIONS(8140), - [anon_sym__Noreturn] = ACTIONS(8140), - [anon_sym_noreturn] = ACTIONS(8140), - [anon_sym__Nonnull] = ACTIONS(8140), - [anon_sym_mutable] = ACTIONS(8140), - [anon_sym_constinit] = ACTIONS(8140), - [anon_sym_consteval] = ACTIONS(8140), - [anon_sym_alignas] = ACTIONS(8144), - [anon_sym__Alignas] = ACTIONS(8144), - [sym_primitive_type] = ACTIONS(7339), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_and_eq] = ACTIONS(7207), - [anon_sym_or_eq] = ACTIONS(7207), - [anon_sym_xor_eq] = ACTIONS(7207), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), + [STATE(2382)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7402), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8096), + [anon_sym_unsigned] = ACTIONS(8096), + [anon_sym_long] = ACTIONS(8096), + [anon_sym_short] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7402), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_GT2] = ACTIONS(7399), + [anon_sym_requires] = ACTIONS(7402), }, - [STATE(2387)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2374), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(7528), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8127), - [anon_sym_unsigned] = ACTIONS(8127), - [anon_sym_long] = ACTIONS(8127), - [anon_sym_short] = ACTIONS(8127), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_RBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(7528), - [anon_sym_constexpr] = ACTIONS(7528), - [anon_sym_volatile] = ACTIONS(7528), - [anon_sym_restrict] = ACTIONS(7528), - [anon_sym___restrict__] = ACTIONS(7528), - [anon_sym__Atomic] = ACTIONS(7528), - [anon_sym__Noreturn] = ACTIONS(7528), - [anon_sym_noreturn] = ACTIONS(7528), - [anon_sym__Nonnull] = ACTIONS(7528), - [anon_sym_mutable] = ACTIONS(7528), - [anon_sym_constinit] = ACTIONS(7528), - [anon_sym_consteval] = ACTIONS(7528), - [anon_sym_alignas] = ACTIONS(7528), - [anon_sym__Alignas] = ACTIONS(7528), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7525), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_and_eq] = ACTIONS(7528), - [anon_sym_or_eq] = ACTIONS(7528), - [anon_sym_xor_eq] = ACTIONS(7528), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), + [STATE(2383)] = { + [sym__abstract_declarator] = STATE(4774), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_type_qualifier] = STATE(2001), + [sym_alignas_qualifier] = STATE(2046), + [sym_parameter_list] = STATE(1974), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [aux_sym__type_definition_type_repeat1] = STATE(2001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7266), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7268), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7270), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(6827), + [anon_sym___attribute__] = ACTIONS(6843), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6837), + [anon_sym_constexpr] = ACTIONS(6827), + [anon_sym_volatile] = ACTIONS(6827), + [anon_sym_restrict] = ACTIONS(6827), + [anon_sym___restrict__] = ACTIONS(6827), + [anon_sym__Atomic] = ACTIONS(6827), + [anon_sym__Noreturn] = ACTIONS(6827), + [anon_sym_noreturn] = ACTIONS(6827), + [anon_sym__Nonnull] = ACTIONS(6827), + [anon_sym_mutable] = ACTIONS(6827), + [anon_sym_constinit] = ACTIONS(6827), + [anon_sym_consteval] = ACTIONS(6827), + [anon_sym_alignas] = ACTIONS(6839), + [anon_sym__Alignas] = ACTIONS(6839), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_requires] = ACTIONS(7528), + }, + [STATE(2384)] = { + [sym_type_qualifier] = STATE(2364), + [sym_alignas_qualifier] = STATE(2388), + [aux_sym__type_definition_type_repeat1] = STATE(2364), + [aux_sym_sized_type_specifier_repeat1] = STATE(2531), + [sym_identifier] = ACTIONS(7828), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7211), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(7089), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(8144), + [anon_sym_unsigned] = ACTIONS(8144), + [anon_sym_long] = ACTIONS(8144), + [anon_sym_short] = ACTIONS(8144), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7089), + [anon_sym_volatile] = ACTIONS(7089), + [anon_sym_restrict] = ACTIONS(7089), + [anon_sym___restrict__] = ACTIONS(7089), + [anon_sym__Atomic] = ACTIONS(7089), + [anon_sym__Noreturn] = ACTIONS(7089), + [anon_sym_noreturn] = ACTIONS(7089), + [anon_sym__Nonnull] = ACTIONS(7089), + [anon_sym_mutable] = ACTIONS(7089), + [anon_sym_constinit] = ACTIONS(7089), + [anon_sym_consteval] = ACTIONS(7089), + [anon_sym_alignas] = ACTIONS(8105), + [anon_sym__Alignas] = ACTIONS(8105), + [sym_primitive_type] = ACTIONS(7838), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7211), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_and_eq] = ACTIONS(7211), + [anon_sym_or_eq] = ACTIONS(7211), + [anon_sym_xor_eq] = ACTIONS(7211), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7209), + }, + [STATE(2385)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2596), + [sym__abstract_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2975), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2071), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2975), + [aux_sym_pointer_declarator_repeat1] = STATE(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8128), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8130), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8132), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(6841), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6843), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8136), + [sym_ms_signed_ptr_modifier] = ACTIONS(8136), + [anon_sym__unaligned] = ACTIONS(8138), + [anon_sym___unaligned] = ACTIONS(8138), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + [anon_sym_COLON_RBRACK] = ACTIONS(6843), + }, + [STATE(2386)] = { + [sym_identifier] = ACTIONS(7113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym___attribute__] = ACTIONS(7113), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_LBRACE] = ACTIONS(7115), + [anon_sym_signed] = ACTIONS(7113), + [anon_sym_unsigned] = ACTIONS(7113), + [anon_sym_long] = ACTIONS(7113), + [anon_sym_short] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(7115), + [anon_sym_RBRACK] = ACTIONS(7115), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [sym_primitive_type] = ACTIONS(7113), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_and_eq] = ACTIONS(7113), + [anon_sym_or_eq] = ACTIONS(7113), + [anon_sym_xor_eq] = ACTIONS(7113), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7113), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7113), + [anon_sym_not_eq] = ACTIONS(7113), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7115), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7113), + [anon_sym_override] = ACTIONS(7113), + [anon_sym_requires] = ACTIONS(7113), + }, + [STATE(2387)] = { + [sym_type_qualifier] = STATE(2387), + [sym_alignas_qualifier] = STATE(2606), + [aux_sym__type_definition_type_repeat1] = STATE(2387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_RPAREN] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(8146), + [anon_sym___attribute__] = ACTIONS(6880), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6880), + [anon_sym_LBRACK] = ACTIONS(6878), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(8149), + [anon_sym_constexpr] = ACTIONS(8146), + [anon_sym_volatile] = ACTIONS(8146), + [anon_sym_restrict] = ACTIONS(8146), + [anon_sym___restrict__] = ACTIONS(8146), + [anon_sym__Atomic] = ACTIONS(8146), + [anon_sym__Noreturn] = ACTIONS(8146), + [anon_sym_noreturn] = ACTIONS(8146), + [anon_sym__Nonnull] = ACTIONS(8146), + [anon_sym_mutable] = ACTIONS(8146), + [anon_sym_constinit] = ACTIONS(8146), + [anon_sym_consteval] = ACTIONS(8146), + [anon_sym_alignas] = ACTIONS(8152), + [anon_sym__Alignas] = ACTIONS(8152), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6880), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6880), + [anon_sym_and] = ACTIONS(6880), + [anon_sym_bitor] = ACTIONS(6880), + [anon_sym_xor] = ACTIONS(6880), + [anon_sym_bitand] = ACTIONS(6880), + [anon_sym_not_eq] = ACTIONS(6880), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_asm] = ACTIONS(6880), + [anon_sym___asm__] = ACTIONS(6880), + [anon_sym___asm] = ACTIONS(6878), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6878), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6880), + [anon_sym_override] = ACTIONS(6880), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6880), + [anon_sym_requires] = ACTIONS(6880), + [anon_sym_DASH_GT_STAR] = ACTIONS(6880), }, [STATE(2388)] = { - [sym_attribute_specifier] = STATE(2388), - [aux_sym_type_definition_repeat1] = STATE(2388), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), - [anon_sym_COMMA] = ACTIONS(6937), - [anon_sym_LPAREN2] = ACTIONS(6937), - [anon_sym_DASH] = ACTIONS(6935), - [anon_sym_PLUS] = ACTIONS(6935), - [anon_sym_STAR] = ACTIONS(6935), - [anon_sym_SLASH] = ACTIONS(6935), - [anon_sym_PERCENT] = ACTIONS(6935), - [anon_sym_PIPE_PIPE] = ACTIONS(6937), - [anon_sym_AMP_AMP] = ACTIONS(6937), - [anon_sym_PIPE] = ACTIONS(6935), - [anon_sym_CARET] = ACTIONS(6935), - [anon_sym_AMP] = ACTIONS(6935), - [anon_sym_EQ_EQ] = ACTIONS(6937), - [anon_sym_BANG_EQ] = ACTIONS(6937), - [anon_sym_GT] = ACTIONS(6935), - [anon_sym_GT_EQ] = ACTIONS(6937), - [anon_sym_LT_EQ] = ACTIONS(6935), - [anon_sym_LT] = ACTIONS(6935), - [anon_sym_LT_LT] = ACTIONS(6935), - [anon_sym_GT_GT] = ACTIONS(6935), - [anon_sym___extension__] = ACTIONS(6937), - [anon_sym___attribute__] = ACTIONS(8146), - [anon_sym___attribute] = ACTIONS(8149), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), - [anon_sym_LBRACK] = ACTIONS(6935), - [anon_sym_RBRACK] = ACTIONS(6937), - [anon_sym_EQ] = ACTIONS(6935), - [anon_sym_const] = ACTIONS(6935), - [anon_sym_constexpr] = ACTIONS(6937), - [anon_sym_volatile] = ACTIONS(6937), - [anon_sym_restrict] = ACTIONS(6937), - [anon_sym___restrict__] = ACTIONS(6937), - [anon_sym__Atomic] = ACTIONS(6937), - [anon_sym__Noreturn] = ACTIONS(6937), - [anon_sym_noreturn] = ACTIONS(6937), - [anon_sym__Nonnull] = ACTIONS(6937), - [anon_sym_mutable] = ACTIONS(6937), - [anon_sym_constinit] = ACTIONS(6937), - [anon_sym_consteval] = ACTIONS(6937), - [anon_sym_alignas] = ACTIONS(6937), - [anon_sym__Alignas] = ACTIONS(6937), - [anon_sym_QMARK] = ACTIONS(6937), - [anon_sym_STAR_EQ] = ACTIONS(6937), - [anon_sym_SLASH_EQ] = ACTIONS(6937), - [anon_sym_PERCENT_EQ] = ACTIONS(6937), - [anon_sym_PLUS_EQ] = ACTIONS(6937), - [anon_sym_DASH_EQ] = ACTIONS(6937), - [anon_sym_LT_LT_EQ] = ACTIONS(6937), - [anon_sym_GT_GT_EQ] = ACTIONS(6937), - [anon_sym_AMP_EQ] = ACTIONS(6937), - [anon_sym_CARET_EQ] = ACTIONS(6937), - [anon_sym_PIPE_EQ] = ACTIONS(6937), - [anon_sym_and_eq] = ACTIONS(6937), - [anon_sym_or_eq] = ACTIONS(6937), - [anon_sym_xor_eq] = ACTIONS(6937), - [anon_sym_LT_EQ_GT] = ACTIONS(6937), - [anon_sym_or] = ACTIONS(6935), - [anon_sym_and] = ACTIONS(6935), - [anon_sym_bitor] = ACTIONS(6937), - [anon_sym_xor] = ACTIONS(6935), - [anon_sym_bitand] = ACTIONS(6937), - [anon_sym_not_eq] = ACTIONS(6937), - [anon_sym_DASH_DASH] = ACTIONS(6937), - [anon_sym_PLUS_PLUS] = ACTIONS(6937), - [anon_sym_asm] = ACTIONS(6937), - [anon_sym___asm__] = ACTIONS(6937), - [anon_sym___asm] = ACTIONS(6935), - [anon_sym_DOT] = ACTIONS(6935), - [anon_sym_DOT_STAR] = ACTIONS(6937), - [anon_sym_DASH_GT] = ACTIONS(6937), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6937), - [anon_sym_override] = ACTIONS(6937), - [anon_sym_noexcept] = ACTIONS(6937), - [anon_sym_throw] = ACTIONS(6937), - [anon_sym_requires] = ACTIONS(6937), + [sym_identifier] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3126), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3126), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_and_eq] = ACTIONS(3126), + [anon_sym_or_eq] = ACTIONS(3126), + [anon_sym_xor_eq] = ACTIONS(3126), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3126), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3126), + [anon_sym_not_eq] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_GT2] = ACTIONS(3116), + [anon_sym_requires] = ACTIONS(3126), }, [STATE(2389)] = { - [sym_attribute_specifier] = STATE(3069), - [sym_field_declaration_list] = STATE(2668), - [sym_virtual_specifier] = STATE(9463), - [sym_base_class_clause] = STATE(10350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_RPAREN] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7235), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7235), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7235), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7235), - [anon_sym___extension__] = ACTIONS(7237), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_COLON] = ACTIONS(8156), - [anon_sym_LBRACE] = ACTIONS(8158), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_EQ] = ACTIONS(7235), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7237), - [anon_sym_volatile] = ACTIONS(7237), - [anon_sym_restrict] = ACTIONS(7237), - [anon_sym___restrict__] = ACTIONS(7237), - [anon_sym__Atomic] = ACTIONS(7237), - [anon_sym__Noreturn] = ACTIONS(7237), - [anon_sym_noreturn] = ACTIONS(7237), - [anon_sym__Nonnull] = ACTIONS(7237), - [anon_sym_mutable] = ACTIONS(7237), - [anon_sym_constinit] = ACTIONS(7237), - [anon_sym_consteval] = ACTIONS(7237), - [anon_sym_alignas] = ACTIONS(7237), - [anon_sym__Alignas] = ACTIONS(7237), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_STAR_EQ] = ACTIONS(7237), - [anon_sym_SLASH_EQ] = ACTIONS(7237), - [anon_sym_PERCENT_EQ] = ACTIONS(7237), - [anon_sym_PLUS_EQ] = ACTIONS(7237), - [anon_sym_DASH_EQ] = ACTIONS(7237), - [anon_sym_LT_LT_EQ] = ACTIONS(7237), - [anon_sym_GT_GT_EQ] = ACTIONS(7237), - [anon_sym_AMP_EQ] = ACTIONS(7237), - [anon_sym_CARET_EQ] = ACTIONS(7237), - [anon_sym_PIPE_EQ] = ACTIONS(7237), - [anon_sym_and_eq] = ACTIONS(7237), - [anon_sym_or_eq] = ACTIONS(7237), - [anon_sym_xor_eq] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7235), - [anon_sym_and] = ACTIONS(7235), - [anon_sym_bitor] = ACTIONS(7237), - [anon_sym_xor] = ACTIONS(7235), - [anon_sym_bitand] = ACTIONS(7237), - [anon_sym_not_eq] = ACTIONS(7237), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7235), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8160), - [anon_sym_override] = ACTIONS(8160), - [anon_sym_requires] = ACTIONS(7237), - [anon_sym_DASH_GT_STAR] = ACTIONS(7237), + [sym__abstract_declarator] = STATE(5222), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2272), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7285), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7287), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7289), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7347), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7345), }, [STATE(2390)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym___attribute__] = ACTIONS(7077), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_LBRACE] = ACTIONS(7079), - [anon_sym_signed] = ACTIONS(7077), - [anon_sym_unsigned] = ACTIONS(7077), - [anon_sym_long] = ACTIONS(7077), - [anon_sym_short] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(7079), - [anon_sym_RBRACK] = ACTIONS(7079), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [sym_primitive_type] = ACTIONS(7077), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7079), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_and_eq] = ACTIONS(7077), - [anon_sym_or_eq] = ACTIONS(7077), - [anon_sym_xor_eq] = ACTIONS(7077), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7077), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7077), - [anon_sym_not_eq] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7079), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7077), - [anon_sym_override] = ACTIONS(7077), - [anon_sym_requires] = ACTIONS(7077), + [sym_identifier] = ACTIONS(7113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7113), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym___attribute__] = ACTIONS(7113), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_LBRACE] = ACTIONS(7115), + [anon_sym_signed] = ACTIONS(7113), + [anon_sym_unsigned] = ACTIONS(7113), + [anon_sym_long] = ACTIONS(7113), + [anon_sym_short] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(7115), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [sym_primitive_type] = ACTIONS(7113), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7113), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_and_eq] = ACTIONS(7113), + [anon_sym_or_eq] = ACTIONS(7113), + [anon_sym_xor_eq] = ACTIONS(7113), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7113), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7113), + [anon_sym_not_eq] = ACTIONS(7113), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7115), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7113), + [anon_sym_override] = ACTIONS(7113), + [anon_sym_GT2] = ACTIONS(7115), + [anon_sym_requires] = ACTIONS(7113), }, [STATE(2391)] = { - [sym__abstract_declarator] = STATE(5246), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2403), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1991), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_RPAREN] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7309), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7393), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), - [anon_sym_DASH_GT_STAR] = ACTIONS(7391), + [sym_type_qualifier] = STATE(2387), + [sym_alignas_qualifier] = STATE(2606), + [aux_sym__type_definition_type_repeat1] = STATE(2387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6872), + [anon_sym_COMMA] = ACTIONS(6872), + [anon_sym_RPAREN] = ACTIONS(6872), + [anon_sym_LPAREN2] = ACTIONS(6872), + [anon_sym_DASH] = ACTIONS(6870), + [anon_sym_PLUS] = ACTIONS(6870), + [anon_sym_STAR] = ACTIONS(6870), + [anon_sym_SLASH] = ACTIONS(6870), + [anon_sym_PERCENT] = ACTIONS(6870), + [anon_sym_PIPE_PIPE] = ACTIONS(6872), + [anon_sym_AMP_AMP] = ACTIONS(6872), + [anon_sym_PIPE] = ACTIONS(6870), + [anon_sym_CARET] = ACTIONS(6870), + [anon_sym_AMP] = ACTIONS(6870), + [anon_sym_EQ_EQ] = ACTIONS(6872), + [anon_sym_BANG_EQ] = ACTIONS(6872), + [anon_sym_GT] = ACTIONS(6870), + [anon_sym_GT_EQ] = ACTIONS(6872), + [anon_sym_LT_EQ] = ACTIONS(6870), + [anon_sym_LT] = ACTIONS(6870), + [anon_sym_LT_LT] = ACTIONS(6870), + [anon_sym_GT_GT] = ACTIONS(6870), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(6872), + [anon_sym___attribute] = ACTIONS(6870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6872), + [anon_sym_LBRACK] = ACTIONS(6870), + [anon_sym_EQ] = ACTIONS(6870), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_mutable] = ACTIONS(6786), + [anon_sym_constinit] = ACTIONS(6786), + [anon_sym_consteval] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6796), + [anon_sym__Alignas] = ACTIONS(6796), + [anon_sym_QMARK] = ACTIONS(6872), + [anon_sym_STAR_EQ] = ACTIONS(6872), + [anon_sym_SLASH_EQ] = ACTIONS(6872), + [anon_sym_PERCENT_EQ] = ACTIONS(6872), + [anon_sym_PLUS_EQ] = ACTIONS(6872), + [anon_sym_DASH_EQ] = ACTIONS(6872), + [anon_sym_LT_LT_EQ] = ACTIONS(6872), + [anon_sym_GT_GT_EQ] = ACTIONS(6872), + [anon_sym_AMP_EQ] = ACTIONS(6872), + [anon_sym_CARET_EQ] = ACTIONS(6872), + [anon_sym_PIPE_EQ] = ACTIONS(6872), + [anon_sym_LT_EQ_GT] = ACTIONS(6872), + [anon_sym_or] = ACTIONS(6872), + [anon_sym_and] = ACTIONS(6872), + [anon_sym_bitor] = ACTIONS(6872), + [anon_sym_xor] = ACTIONS(6872), + [anon_sym_bitand] = ACTIONS(6872), + [anon_sym_not_eq] = ACTIONS(6872), + [anon_sym_DASH_DASH] = ACTIONS(6872), + [anon_sym_PLUS_PLUS] = ACTIONS(6872), + [anon_sym_asm] = ACTIONS(6872), + [anon_sym___asm__] = ACTIONS(6872), + [anon_sym___asm] = ACTIONS(6870), + [anon_sym_DOT] = ACTIONS(6870), + [anon_sym_DOT_STAR] = ACTIONS(6872), + [anon_sym_DASH_GT] = ACTIONS(6870), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6872), + [anon_sym_override] = ACTIONS(6872), + [anon_sym_noexcept] = ACTIONS(6872), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6872), + [anon_sym_DASH_GT_STAR] = ACTIONS(6872), }, [STATE(2392)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym___extension__] = ACTIONS(3118), - [anon_sym___attribute__] = ACTIONS(3118), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3118), - [anon_sym_volatile] = ACTIONS(3118), - [anon_sym_restrict] = ACTIONS(3118), - [anon_sym___restrict__] = ACTIONS(3118), - [anon_sym__Atomic] = ACTIONS(3118), - [anon_sym__Noreturn] = ACTIONS(3118), - [anon_sym_noreturn] = ACTIONS(3118), - [anon_sym__Nonnull] = ACTIONS(3118), - [anon_sym_mutable] = ACTIONS(3118), - [anon_sym_constinit] = ACTIONS(3118), - [anon_sym_consteval] = ACTIONS(3118), - [anon_sym_alignas] = ACTIONS(3118), - [anon_sym__Alignas] = ACTIONS(3118), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_and_eq] = ACTIONS(3118), - [anon_sym_or_eq] = ACTIONS(3118), - [anon_sym_xor_eq] = ACTIONS(3118), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3118), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3118), - [anon_sym_not_eq] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_asm] = ACTIONS(3118), - [anon_sym___asm__] = ACTIONS(3118), - [anon_sym___asm] = ACTIONS(3128), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3118), - [anon_sym_override] = ACTIONS(3118), - [anon_sym_noexcept] = ACTIONS(3118), - [anon_sym_throw] = ACTIONS(3118), - [anon_sym_requires] = ACTIONS(3118), - [anon_sym_DASH_GT_STAR] = ACTIONS(3118), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [aux_sym_preproc_if_token2] = ACTIONS(6880), + [aux_sym_preproc_else_token1] = ACTIONS(6880), + [aux_sym_preproc_elif_token1] = ACTIONS(6878), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6878), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6878), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6878), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6878), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(8155), + [anon_sym_LBRACK] = ACTIONS(6880), + [anon_sym_RBRACK] = ACTIONS(6880), + [anon_sym_EQ] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(8155), + [anon_sym_constexpr] = ACTIONS(8155), + [anon_sym_volatile] = ACTIONS(8155), + [anon_sym_restrict] = ACTIONS(8155), + [anon_sym___restrict__] = ACTIONS(8155), + [anon_sym__Atomic] = ACTIONS(8155), + [anon_sym__Noreturn] = ACTIONS(8155), + [anon_sym_noreturn] = ACTIONS(8155), + [anon_sym__Nonnull] = ACTIONS(8155), + [anon_sym_mutable] = ACTIONS(8155), + [anon_sym_constinit] = ACTIONS(8155), + [anon_sym_consteval] = ACTIONS(8155), + [anon_sym_alignas] = ACTIONS(8158), + [anon_sym__Alignas] = ACTIONS(8158), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_STAR_EQ] = ACTIONS(6880), + [anon_sym_SLASH_EQ] = ACTIONS(6880), + [anon_sym_PERCENT_EQ] = ACTIONS(6880), + [anon_sym_PLUS_EQ] = ACTIONS(6880), + [anon_sym_DASH_EQ] = ACTIONS(6880), + [anon_sym_LT_LT_EQ] = ACTIONS(6880), + [anon_sym_GT_GT_EQ] = ACTIONS(6880), + [anon_sym_AMP_EQ] = ACTIONS(6880), + [anon_sym_CARET_EQ] = ACTIONS(6880), + [anon_sym_PIPE_EQ] = ACTIONS(6880), + [anon_sym_and_eq] = ACTIONS(6878), + [anon_sym_or_eq] = ACTIONS(6878), + [anon_sym_xor_eq] = ACTIONS(6878), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6878), }, [STATE(2393)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_RPAREN] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym___extension__] = ACTIONS(7079), - [anon_sym___attribute__] = ACTIONS(7079), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), - [anon_sym_LBRACK] = ACTIONS(7077), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7079), - [anon_sym_volatile] = ACTIONS(7079), - [anon_sym_restrict] = ACTIONS(7079), - [anon_sym___restrict__] = ACTIONS(7079), - [anon_sym__Atomic] = ACTIONS(7079), - [anon_sym__Noreturn] = ACTIONS(7079), - [anon_sym_noreturn] = ACTIONS(7079), - [anon_sym__Nonnull] = ACTIONS(7079), - [anon_sym_mutable] = ACTIONS(7079), - [anon_sym_constinit] = ACTIONS(7079), - [anon_sym_consteval] = ACTIONS(7079), - [anon_sym_alignas] = ACTIONS(7079), - [anon_sym__Alignas] = ACTIONS(7079), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7079), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_and_eq] = ACTIONS(7079), - [anon_sym_or_eq] = ACTIONS(7079), - [anon_sym_xor_eq] = ACTIONS(7079), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7079), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7079), - [anon_sym_not_eq] = ACTIONS(7079), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_asm] = ACTIONS(7079), - [anon_sym___asm__] = ACTIONS(7079), - [anon_sym___asm] = ACTIONS(7077), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7077), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7079), - [anon_sym_override] = ACTIONS(7079), - [anon_sym_noexcept] = ACTIONS(7079), - [anon_sym_throw] = ACTIONS(7079), - [anon_sym_requires] = ACTIONS(7079), - [anon_sym_DASH_GT_STAR] = ACTIONS(7079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7154), + [anon_sym_COMMA] = ACTIONS(7154), + [anon_sym_RPAREN] = ACTIONS(7154), + [anon_sym_LPAREN2] = ACTIONS(7154), + [anon_sym_DASH] = ACTIONS(7152), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7152), + [anon_sym_PIPE_PIPE] = ACTIONS(7154), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE] = ACTIONS(7152), + [anon_sym_CARET] = ACTIONS(7152), + [anon_sym_AMP] = ACTIONS(7152), + [anon_sym_EQ_EQ] = ACTIONS(7154), + [anon_sym_BANG_EQ] = ACTIONS(7154), + [anon_sym_GT] = ACTIONS(7152), + [anon_sym_GT_EQ] = ACTIONS(7154), + [anon_sym_LT_EQ] = ACTIONS(7152), + [anon_sym_LT] = ACTIONS(7152), + [anon_sym_LT_LT] = ACTIONS(7152), + [anon_sym_GT_GT] = ACTIONS(7152), + [anon_sym___extension__] = ACTIONS(7154), + [anon_sym___attribute__] = ACTIONS(7154), + [anon_sym___attribute] = ACTIONS(7152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7154), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7152), + [anon_sym_const] = ACTIONS(7152), + [anon_sym_constexpr] = ACTIONS(7154), + [anon_sym_volatile] = ACTIONS(7154), + [anon_sym_restrict] = ACTIONS(7154), + [anon_sym___restrict__] = ACTIONS(7154), + [anon_sym__Atomic] = ACTIONS(7154), + [anon_sym__Noreturn] = ACTIONS(7154), + [anon_sym_noreturn] = ACTIONS(7154), + [anon_sym__Nonnull] = ACTIONS(7154), + [anon_sym_mutable] = ACTIONS(7154), + [anon_sym_constinit] = ACTIONS(7154), + [anon_sym_consteval] = ACTIONS(7154), + [anon_sym_alignas] = ACTIONS(7154), + [anon_sym__Alignas] = ACTIONS(7154), + [anon_sym_QMARK] = ACTIONS(7154), + [anon_sym_STAR_EQ] = ACTIONS(7154), + [anon_sym_SLASH_EQ] = ACTIONS(7154), + [anon_sym_PERCENT_EQ] = ACTIONS(7154), + [anon_sym_PLUS_EQ] = ACTIONS(7154), + [anon_sym_DASH_EQ] = ACTIONS(7154), + [anon_sym_LT_LT_EQ] = ACTIONS(7154), + [anon_sym_GT_GT_EQ] = ACTIONS(7154), + [anon_sym_AMP_EQ] = ACTIONS(7154), + [anon_sym_CARET_EQ] = ACTIONS(7154), + [anon_sym_PIPE_EQ] = ACTIONS(7154), + [anon_sym_and_eq] = ACTIONS(7154), + [anon_sym_or_eq] = ACTIONS(7154), + [anon_sym_xor_eq] = ACTIONS(7154), + [anon_sym_LT_EQ_GT] = ACTIONS(7154), + [anon_sym_or] = ACTIONS(7152), + [anon_sym_and] = ACTIONS(7152), + [anon_sym_bitor] = ACTIONS(7154), + [anon_sym_xor] = ACTIONS(7152), + [anon_sym_bitand] = ACTIONS(7154), + [anon_sym_not_eq] = ACTIONS(7154), + [anon_sym_DASH_DASH] = ACTIONS(7154), + [anon_sym_PLUS_PLUS] = ACTIONS(7154), + [anon_sym_asm] = ACTIONS(7154), + [anon_sym___asm__] = ACTIONS(7154), + [anon_sym___asm] = ACTIONS(7152), + [anon_sym_DOT] = ACTIONS(7152), + [anon_sym_DOT_STAR] = ACTIONS(7154), + [anon_sym_DASH_GT] = ACTIONS(7152), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7154), + [anon_sym_override] = ACTIONS(7154), + [anon_sym_noexcept] = ACTIONS(7154), + [anon_sym_throw] = ACTIONS(7154), + [anon_sym_requires] = ACTIONS(7154), + [anon_sym_DASH_GT_STAR] = ACTIONS(7154), }, [STATE(2394)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym_ref_qualifier] = STATE(2468), - [sym__function_exception_specification] = STATE(2943), - [sym__function_attributes_end] = STATE(4292), - [sym__function_postfix] = STATE(4840), - [sym_trailing_return_type] = STATE(4383), - [sym_noexcept] = STATE(2943), - [sym_throw_specifier] = STATE(2943), - [sym_requires_clause] = STATE(4840), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(8162), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(8165), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8168), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6669), - [anon_sym_override] = ACTIONS(6669), - [anon_sym_noexcept] = ACTIONS(6662), - [anon_sym_throw] = ACTIONS(6664), - [anon_sym_requires] = ACTIONS(6671), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), + [sym_identifier] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_and_eq] = ACTIONS(3126), + [anon_sym_or_eq] = ACTIONS(3126), + [anon_sym_xor_eq] = ACTIONS(3126), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3126), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3126), + [anon_sym_not_eq] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), }, [STATE(2395)] = { - [sym__abstract_declarator] = STATE(5151), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2270), + [sym__abstract_declarator] = STATE(5054), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2272), [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1974), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6821), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6823), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_RPAREN] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(7285), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(7287), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(7289), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7369), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7371), }, [STATE(2396)] = { - [sym_template_argument_list] = STATE(2494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), - [anon_sym_COMMA] = ACTIONS(6572), - [anon_sym_RPAREN] = ACTIONS(6572), - [anon_sym_LPAREN2] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6565), - [anon_sym_PLUS] = ACTIONS(6565), - [anon_sym_STAR] = ACTIONS(6565), - [anon_sym_SLASH] = ACTIONS(6565), - [anon_sym_PERCENT] = ACTIONS(6565), - [anon_sym_PIPE_PIPE] = ACTIONS(6572), - [anon_sym_AMP_AMP] = ACTIONS(6572), - [anon_sym_PIPE] = ACTIONS(6565), - [anon_sym_CARET] = ACTIONS(6565), - [anon_sym_AMP] = ACTIONS(6565), - [anon_sym_EQ_EQ] = ACTIONS(6572), - [anon_sym_BANG_EQ] = ACTIONS(6572), - [anon_sym_GT] = ACTIONS(6565), - [anon_sym_GT_EQ] = ACTIONS(6572), - [anon_sym_LT_EQ] = ACTIONS(6565), - [anon_sym_LT] = ACTIONS(8171), - [anon_sym_LT_LT] = ACTIONS(6565), - [anon_sym_GT_GT] = ACTIONS(6565), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym___attribute__] = ACTIONS(6572), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6572), - [anon_sym_EQ] = ACTIONS(6565), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6572), - [anon_sym_STAR_EQ] = ACTIONS(6572), - [anon_sym_SLASH_EQ] = ACTIONS(6572), - [anon_sym_PERCENT_EQ] = ACTIONS(6572), - [anon_sym_PLUS_EQ] = ACTIONS(6572), - [anon_sym_DASH_EQ] = ACTIONS(6572), - [anon_sym_LT_LT_EQ] = ACTIONS(6572), - [anon_sym_GT_GT_EQ] = ACTIONS(6572), - [anon_sym_AMP_EQ] = ACTIONS(6572), - [anon_sym_CARET_EQ] = ACTIONS(6572), - [anon_sym_PIPE_EQ] = ACTIONS(6572), - [anon_sym_and_eq] = ACTIONS(6572), - [anon_sym_or_eq] = ACTIONS(6572), - [anon_sym_xor_eq] = ACTIONS(6572), - [anon_sym_LT_EQ_GT] = ACTIONS(6572), - [anon_sym_or] = ACTIONS(6565), - [anon_sym_and] = ACTIONS(6565), - [anon_sym_bitor] = ACTIONS(6572), - [anon_sym_xor] = ACTIONS(6565), - [anon_sym_bitand] = ACTIONS(6572), - [anon_sym_not_eq] = ACTIONS(6572), - [anon_sym_DASH_DASH] = ACTIONS(6572), - [anon_sym_PLUS_PLUS] = ACTIONS(6572), - [anon_sym_DOT] = ACTIONS(6565), - [anon_sym_DOT_STAR] = ACTIONS(6572), - [anon_sym_DASH_GT] = ACTIONS(6565), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_final] = ACTIONS(6572), - [anon_sym_override] = ACTIONS(6572), - [anon_sym_requires] = ACTIONS(6572), - [anon_sym_DASH_GT_STAR] = ACTIONS(6572), + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym_ref_qualifier] = STATE(2438), + [sym__function_exception_specification] = STATE(2897), + [sym__function_attributes_end] = STATE(4276), + [sym__function_postfix] = STATE(4851), + [sym_trailing_return_type] = STATE(4331), + [sym_noexcept] = STATE(2897), + [sym_throw_specifier] = STATE(2897), + [sym_requires_clause] = STATE(4851), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(8161), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(8164), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8167), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8170), + [anon_sym_override] = ACTIONS(8170), + [anon_sym_noexcept] = ACTIONS(6642), + [anon_sym_throw] = ACTIONS(6644), + [anon_sym_requires] = ACTIONS(8173), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), }, [STATE(2397)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7077), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym___attribute__] = ACTIONS(7077), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_LBRACE] = ACTIONS(7079), - [anon_sym_signed] = ACTIONS(7077), - [anon_sym_unsigned] = ACTIONS(7077), - [anon_sym_long] = ACTIONS(7077), - [anon_sym_short] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(7079), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [sym_primitive_type] = ACTIONS(7077), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7077), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_and_eq] = ACTIONS(7077), - [anon_sym_or_eq] = ACTIONS(7077), - [anon_sym_xor_eq] = ACTIONS(7077), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7077), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7077), - [anon_sym_not_eq] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7079), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7077), - [anon_sym_override] = ACTIONS(7077), - [anon_sym_GT2] = ACTIONS(7079), - [anon_sym_requires] = ACTIONS(7077), + [sym_attribute_specifier] = STATE(2986), + [sym_field_declaration_list] = STATE(2693), + [sym_virtual_specifier] = STATE(9637), + [sym_base_class_clause] = STATE(10458), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym_RPAREN] = ACTIONS(7256), + [anon_sym_LPAREN2] = ACTIONS(7256), + [anon_sym_DASH] = ACTIONS(7254), + [anon_sym_PLUS] = ACTIONS(7254), + [anon_sym_STAR] = ACTIONS(7254), + [anon_sym_SLASH] = ACTIONS(7254), + [anon_sym_PERCENT] = ACTIONS(7254), + [anon_sym_PIPE_PIPE] = ACTIONS(7256), + [anon_sym_AMP_AMP] = ACTIONS(7256), + [anon_sym_PIPE] = ACTIONS(7254), + [anon_sym_CARET] = ACTIONS(7254), + [anon_sym_AMP] = ACTIONS(7254), + [anon_sym_EQ_EQ] = ACTIONS(7256), + [anon_sym_BANG_EQ] = ACTIONS(7256), + [anon_sym_GT] = ACTIONS(7254), + [anon_sym_GT_EQ] = ACTIONS(7256), + [anon_sym_LT_EQ] = ACTIONS(7254), + [anon_sym_LT] = ACTIONS(7254), + [anon_sym_LT_LT] = ACTIONS(7254), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym___extension__] = ACTIONS(7256), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_COLON] = ACTIONS(8180), + [anon_sym_LBRACE] = ACTIONS(8182), + [anon_sym_LBRACK] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7254), + [anon_sym_const] = ACTIONS(7254), + [anon_sym_constexpr] = ACTIONS(7256), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym___restrict__] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym__Noreturn] = ACTIONS(7256), + [anon_sym_noreturn] = ACTIONS(7256), + [anon_sym__Nonnull] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_constinit] = ACTIONS(7256), + [anon_sym_consteval] = ACTIONS(7256), + [anon_sym_alignas] = ACTIONS(7256), + [anon_sym__Alignas] = ACTIONS(7256), + [anon_sym_QMARK] = ACTIONS(7256), + [anon_sym_STAR_EQ] = ACTIONS(7256), + [anon_sym_SLASH_EQ] = ACTIONS(7256), + [anon_sym_PERCENT_EQ] = ACTIONS(7256), + [anon_sym_PLUS_EQ] = ACTIONS(7256), + [anon_sym_DASH_EQ] = ACTIONS(7256), + [anon_sym_LT_LT_EQ] = ACTIONS(7256), + [anon_sym_GT_GT_EQ] = ACTIONS(7256), + [anon_sym_AMP_EQ] = ACTIONS(7256), + [anon_sym_CARET_EQ] = ACTIONS(7256), + [anon_sym_PIPE_EQ] = ACTIONS(7256), + [anon_sym_and_eq] = ACTIONS(7256), + [anon_sym_or_eq] = ACTIONS(7256), + [anon_sym_xor_eq] = ACTIONS(7256), + [anon_sym_LT_EQ_GT] = ACTIONS(7256), + [anon_sym_or] = ACTIONS(7254), + [anon_sym_and] = ACTIONS(7254), + [anon_sym_bitor] = ACTIONS(7256), + [anon_sym_xor] = ACTIONS(7254), + [anon_sym_bitand] = ACTIONS(7256), + [anon_sym_not_eq] = ACTIONS(7256), + [anon_sym_DASH_DASH] = ACTIONS(7256), + [anon_sym_PLUS_PLUS] = ACTIONS(7256), + [anon_sym_DOT] = ACTIONS(7254), + [anon_sym_DOT_STAR] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7254), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8184), + [anon_sym_override] = ACTIONS(8184), + [anon_sym_requires] = ACTIONS(7256), + [anon_sym_DASH_GT_STAR] = ACTIONS(7256), }, [STATE(2398)] = { - [sym_type_qualifier] = STATE(2421), - [sym_alignas_qualifier] = STATE(2636), - [aux_sym__type_definition_type_repeat1] = STATE(2421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_RPAREN] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6752), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6752), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6752), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6752), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym___extension__] = ACTIONS(6762), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_EQ] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(6770), - [anon_sym_constexpr] = ACTIONS(6762), - [anon_sym_volatile] = ACTIONS(6762), - [anon_sym_restrict] = ACTIONS(6762), - [anon_sym___restrict__] = ACTIONS(6762), - [anon_sym__Atomic] = ACTIONS(6762), - [anon_sym__Noreturn] = ACTIONS(6762), - [anon_sym_noreturn] = ACTIONS(6762), - [anon_sym__Nonnull] = ACTIONS(6762), - [anon_sym_mutable] = ACTIONS(6762), - [anon_sym_constinit] = ACTIONS(6762), - [anon_sym_consteval] = ACTIONS(6762), - [anon_sym_alignas] = ACTIONS(6772), - [anon_sym__Alignas] = ACTIONS(6772), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_STAR_EQ] = ACTIONS(6754), - [anon_sym_SLASH_EQ] = ACTIONS(6754), - [anon_sym_PERCENT_EQ] = ACTIONS(6754), - [anon_sym_PLUS_EQ] = ACTIONS(6754), - [anon_sym_DASH_EQ] = ACTIONS(6754), - [anon_sym_LT_LT_EQ] = ACTIONS(6754), - [anon_sym_GT_GT_EQ] = ACTIONS(6754), - [anon_sym_AMP_EQ] = ACTIONS(6754), - [anon_sym_CARET_EQ] = ACTIONS(6754), - [anon_sym_PIPE_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6754), - [anon_sym_and] = ACTIONS(6754), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6754), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6752), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), - [anon_sym_DASH_GT_STAR] = ACTIONS(6754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7142), + [anon_sym_COMMA] = ACTIONS(7142), + [anon_sym_RPAREN] = ACTIONS(7142), + [anon_sym_LPAREN2] = ACTIONS(7142), + [anon_sym_DASH] = ACTIONS(7140), + [anon_sym_PLUS] = ACTIONS(7140), + [anon_sym_STAR] = ACTIONS(7140), + [anon_sym_SLASH] = ACTIONS(7140), + [anon_sym_PERCENT] = ACTIONS(7140), + [anon_sym_PIPE_PIPE] = ACTIONS(7142), + [anon_sym_AMP_AMP] = ACTIONS(7142), + [anon_sym_PIPE] = ACTIONS(7140), + [anon_sym_CARET] = ACTIONS(7140), + [anon_sym_AMP] = ACTIONS(7140), + [anon_sym_EQ_EQ] = ACTIONS(7142), + [anon_sym_BANG_EQ] = ACTIONS(7142), + [anon_sym_GT] = ACTIONS(7140), + [anon_sym_GT_EQ] = ACTIONS(7142), + [anon_sym_LT_EQ] = ACTIONS(7140), + [anon_sym_LT] = ACTIONS(7140), + [anon_sym_LT_LT] = ACTIONS(7140), + [anon_sym_GT_GT] = ACTIONS(7140), + [anon_sym___extension__] = ACTIONS(7142), + [anon_sym___attribute__] = ACTIONS(7142), + [anon_sym___attribute] = ACTIONS(7140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7142), + [anon_sym_LBRACK] = ACTIONS(7140), + [anon_sym_EQ] = ACTIONS(7140), + [anon_sym_const] = ACTIONS(7140), + [anon_sym_constexpr] = ACTIONS(7142), + [anon_sym_volatile] = ACTIONS(7142), + [anon_sym_restrict] = ACTIONS(7142), + [anon_sym___restrict__] = ACTIONS(7142), + [anon_sym__Atomic] = ACTIONS(7142), + [anon_sym__Noreturn] = ACTIONS(7142), + [anon_sym_noreturn] = ACTIONS(7142), + [anon_sym__Nonnull] = ACTIONS(7142), + [anon_sym_mutable] = ACTIONS(7142), + [anon_sym_constinit] = ACTIONS(7142), + [anon_sym_consteval] = ACTIONS(7142), + [anon_sym_alignas] = ACTIONS(7142), + [anon_sym__Alignas] = ACTIONS(7142), + [anon_sym_QMARK] = ACTIONS(7142), + [anon_sym_STAR_EQ] = ACTIONS(7142), + [anon_sym_SLASH_EQ] = ACTIONS(7142), + [anon_sym_PERCENT_EQ] = ACTIONS(7142), + [anon_sym_PLUS_EQ] = ACTIONS(7142), + [anon_sym_DASH_EQ] = ACTIONS(7142), + [anon_sym_LT_LT_EQ] = ACTIONS(7142), + [anon_sym_GT_GT_EQ] = ACTIONS(7142), + [anon_sym_AMP_EQ] = ACTIONS(7142), + [anon_sym_CARET_EQ] = ACTIONS(7142), + [anon_sym_PIPE_EQ] = ACTIONS(7142), + [anon_sym_and_eq] = ACTIONS(7142), + [anon_sym_or_eq] = ACTIONS(7142), + [anon_sym_xor_eq] = ACTIONS(7142), + [anon_sym_LT_EQ_GT] = ACTIONS(7142), + [anon_sym_or] = ACTIONS(7140), + [anon_sym_and] = ACTIONS(7140), + [anon_sym_bitor] = ACTIONS(7142), + [anon_sym_xor] = ACTIONS(7140), + [anon_sym_bitand] = ACTIONS(7142), + [anon_sym_not_eq] = ACTIONS(7142), + [anon_sym_DASH_DASH] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(7142), + [anon_sym_asm] = ACTIONS(7142), + [anon_sym___asm__] = ACTIONS(7142), + [anon_sym___asm] = ACTIONS(7140), + [anon_sym_DOT] = ACTIONS(7140), + [anon_sym_DOT_STAR] = ACTIONS(7142), + [anon_sym_DASH_GT] = ACTIONS(7140), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7142), + [anon_sym_override] = ACTIONS(7142), + [anon_sym_noexcept] = ACTIONS(7142), + [anon_sym_throw] = ACTIONS(7142), + [anon_sym_requires] = ACTIONS(7142), + [anon_sym_DASH_GT_STAR] = ACTIONS(7142), }, [STATE(2399)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym_ref_qualifier] = STATE(2480), - [sym__function_exception_specification] = STATE(2908), - [sym__function_attributes_end] = STATE(4298), - [sym__function_postfix] = STATE(4840), - [sym_trailing_return_type] = STATE(4339), - [sym_noexcept] = STATE(2908), - [sym_throw_specifier] = STATE(2908), - [sym_requires_clause] = STATE(4840), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(8162), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(8165), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8168), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8174), - [anon_sym_override] = ACTIONS(8174), - [anon_sym_noexcept] = ACTIONS(6662), - [anon_sym_throw] = ACTIONS(6664), - [anon_sym_requires] = ACTIONS(8177), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), + [sym_ms_unaligned_ptr_modifier] = STATE(2625), + [sym_ms_pointer_modifier] = STATE(2399), + [aux_sym_pointer_declarator_repeat1] = STATE(2399), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6919), + [anon_sym_COMMA] = ACTIONS(6919), + [anon_sym_RPAREN] = ACTIONS(6919), + [anon_sym_LPAREN2] = ACTIONS(6919), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_PERCENT] = ACTIONS(6917), + [anon_sym_PIPE_PIPE] = ACTIONS(6919), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_CARET] = ACTIONS(6917), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_EQ_EQ] = ACTIONS(6919), + [anon_sym_BANG_EQ] = ACTIONS(6919), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6919), + [anon_sym_LT_EQ] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_LT_LT] = ACTIONS(6917), + [anon_sym_GT_GT] = ACTIONS(6917), + [anon_sym___extension__] = ACTIONS(6919), + [sym_ms_restrict_modifier] = ACTIONS(8186), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8189), + [sym_ms_signed_ptr_modifier] = ACTIONS(8189), + [anon_sym__unaligned] = ACTIONS(8192), + [anon_sym___unaligned] = ACTIONS(8192), + [anon_sym_LBRACK] = ACTIONS(6919), + [anon_sym_EQ] = ACTIONS(6917), + [anon_sym_const] = ACTIONS(6917), + [anon_sym_constexpr] = ACTIONS(6919), + [anon_sym_volatile] = ACTIONS(6919), + [anon_sym_restrict] = ACTIONS(6919), + [anon_sym___restrict__] = ACTIONS(6919), + [anon_sym__Atomic] = ACTIONS(6919), + [anon_sym__Noreturn] = ACTIONS(6919), + [anon_sym_noreturn] = ACTIONS(6919), + [anon_sym__Nonnull] = ACTIONS(6919), + [anon_sym_mutable] = ACTIONS(6919), + [anon_sym_constinit] = ACTIONS(6919), + [anon_sym_consteval] = ACTIONS(6919), + [anon_sym_alignas] = ACTIONS(6919), + [anon_sym__Alignas] = ACTIONS(6919), + [anon_sym_QMARK] = ACTIONS(6919), + [anon_sym_STAR_EQ] = ACTIONS(6919), + [anon_sym_SLASH_EQ] = ACTIONS(6919), + [anon_sym_PERCENT_EQ] = ACTIONS(6919), + [anon_sym_PLUS_EQ] = ACTIONS(6919), + [anon_sym_DASH_EQ] = ACTIONS(6919), + [anon_sym_LT_LT_EQ] = ACTIONS(6919), + [anon_sym_GT_GT_EQ] = ACTIONS(6919), + [anon_sym_AMP_EQ] = ACTIONS(6919), + [anon_sym_CARET_EQ] = ACTIONS(6919), + [anon_sym_PIPE_EQ] = ACTIONS(6919), + [anon_sym_and_eq] = ACTIONS(6919), + [anon_sym_or_eq] = ACTIONS(6919), + [anon_sym_xor_eq] = ACTIONS(6919), + [anon_sym_LT_EQ_GT] = ACTIONS(6919), + [anon_sym_or] = ACTIONS(6917), + [anon_sym_and] = ACTIONS(6917), + [anon_sym_bitor] = ACTIONS(6919), + [anon_sym_xor] = ACTIONS(6917), + [anon_sym_bitand] = ACTIONS(6919), + [anon_sym_not_eq] = ACTIONS(6919), + [anon_sym_DASH_DASH] = ACTIONS(6919), + [anon_sym_PLUS_PLUS] = ACTIONS(6919), + [anon_sym_DOT] = ACTIONS(6917), + [anon_sym_DOT_STAR] = ACTIONS(6919), + [anon_sym_DASH_GT] = ACTIONS(6917), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6919), + [anon_sym_override] = ACTIONS(6919), + [anon_sym_requires] = ACTIONS(6919), + [anon_sym_DASH_GT_STAR] = ACTIONS(6919), }, [STATE(2400)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2422), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), - [anon_sym_COMMA] = ACTIONS(7703), - [anon_sym_RPAREN] = ACTIONS(7703), - [anon_sym_LPAREN2] = ACTIONS(7703), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_STAR] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7701), - [anon_sym_PERCENT] = ACTIONS(7701), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_AMP_AMP] = ACTIONS(7703), - [anon_sym_PIPE] = ACTIONS(7701), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_AMP] = ACTIONS(7701), - [anon_sym_EQ_EQ] = ACTIONS(7703), - [anon_sym_BANG_EQ] = ACTIONS(7703), - [anon_sym_GT] = ACTIONS(7701), - [anon_sym_GT_EQ] = ACTIONS(7703), - [anon_sym_LT_EQ] = ACTIONS(7701), - [anon_sym_LT] = ACTIONS(7701), - [anon_sym_LT_LT] = ACTIONS(7701), - [anon_sym_GT_GT] = ACTIONS(7701), - [anon_sym___extension__] = ACTIONS(7703), - [anon_sym___attribute__] = ACTIONS(7703), - [anon_sym___attribute] = ACTIONS(7701), - [anon_sym_LBRACE] = ACTIONS(7703), - [anon_sym_signed] = ACTIONS(8180), - [anon_sym_unsigned] = ACTIONS(8180), - [anon_sym_long] = ACTIONS(8180), - [anon_sym_short] = ACTIONS(8180), - [anon_sym_LBRACK] = ACTIONS(7703), - [anon_sym_EQ] = ACTIONS(7701), - [anon_sym_const] = ACTIONS(7701), - [anon_sym_constexpr] = ACTIONS(7703), - [anon_sym_volatile] = ACTIONS(7703), - [anon_sym_restrict] = ACTIONS(7703), - [anon_sym___restrict__] = ACTIONS(7703), - [anon_sym__Atomic] = ACTIONS(7703), - [anon_sym__Noreturn] = ACTIONS(7703), - [anon_sym_noreturn] = ACTIONS(7703), - [anon_sym__Nonnull] = ACTIONS(7703), - [anon_sym_mutable] = ACTIONS(7703), - [anon_sym_constinit] = ACTIONS(7703), - [anon_sym_consteval] = ACTIONS(7703), - [anon_sym_alignas] = ACTIONS(7703), - [anon_sym__Alignas] = ACTIONS(7703), - [anon_sym_QMARK] = ACTIONS(7703), - [anon_sym_STAR_EQ] = ACTIONS(7703), - [anon_sym_SLASH_EQ] = ACTIONS(7703), - [anon_sym_PERCENT_EQ] = ACTIONS(7703), - [anon_sym_PLUS_EQ] = ACTIONS(7703), - [anon_sym_DASH_EQ] = ACTIONS(7703), - [anon_sym_LT_LT_EQ] = ACTIONS(7703), - [anon_sym_GT_GT_EQ] = ACTIONS(7703), - [anon_sym_AMP_EQ] = ACTIONS(7703), - [anon_sym_CARET_EQ] = ACTIONS(7703), - [anon_sym_PIPE_EQ] = ACTIONS(7703), - [anon_sym_and_eq] = ACTIONS(7703), - [anon_sym_or_eq] = ACTIONS(7703), - [anon_sym_xor_eq] = ACTIONS(7703), - [anon_sym_LT_EQ_GT] = ACTIONS(7703), - [anon_sym_or] = ACTIONS(7701), - [anon_sym_and] = ACTIONS(7701), - [anon_sym_bitor] = ACTIONS(7703), - [anon_sym_xor] = ACTIONS(7701), - [anon_sym_bitand] = ACTIONS(7703), - [anon_sym_not_eq] = ACTIONS(7703), - [anon_sym_DASH_DASH] = ACTIONS(7703), - [anon_sym_PLUS_PLUS] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(7701), - [anon_sym_DOT_STAR] = ACTIONS(7703), - [anon_sym_DASH_GT] = ACTIONS(7701), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7703), - [anon_sym_override] = ACTIONS(7703), - [anon_sym_requires] = ACTIONS(7703), - [anon_sym_DASH_GT_STAR] = ACTIONS(7703), + [sym_template_argument_list] = STATE(2434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6566), + [anon_sym_COMMA] = ACTIONS(6566), + [anon_sym_RPAREN] = ACTIONS(6566), + [anon_sym_LPAREN2] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6559), + [anon_sym_STAR] = ACTIONS(6559), + [anon_sym_SLASH] = ACTIONS(6559), + [anon_sym_PERCENT] = ACTIONS(6559), + [anon_sym_PIPE_PIPE] = ACTIONS(6566), + [anon_sym_AMP_AMP] = ACTIONS(6566), + [anon_sym_PIPE] = ACTIONS(6559), + [anon_sym_CARET] = ACTIONS(6559), + [anon_sym_AMP] = ACTIONS(6559), + [anon_sym_EQ_EQ] = ACTIONS(6566), + [anon_sym_BANG_EQ] = ACTIONS(6566), + [anon_sym_GT] = ACTIONS(6559), + [anon_sym_GT_EQ] = ACTIONS(6566), + [anon_sym_LT_EQ] = ACTIONS(6559), + [anon_sym_LT] = ACTIONS(8195), + [anon_sym_LT_LT] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6559), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym___attribute__] = ACTIONS(6566), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6566), + [anon_sym_EQ] = ACTIONS(6559), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6566), + [anon_sym_STAR_EQ] = ACTIONS(6566), + [anon_sym_SLASH_EQ] = ACTIONS(6566), + [anon_sym_PERCENT_EQ] = ACTIONS(6566), + [anon_sym_PLUS_EQ] = ACTIONS(6566), + [anon_sym_DASH_EQ] = ACTIONS(6566), + [anon_sym_LT_LT_EQ] = ACTIONS(6566), + [anon_sym_GT_GT_EQ] = ACTIONS(6566), + [anon_sym_AMP_EQ] = ACTIONS(6566), + [anon_sym_CARET_EQ] = ACTIONS(6566), + [anon_sym_PIPE_EQ] = ACTIONS(6566), + [anon_sym_and_eq] = ACTIONS(6566), + [anon_sym_or_eq] = ACTIONS(6566), + [anon_sym_xor_eq] = ACTIONS(6566), + [anon_sym_LT_EQ_GT] = ACTIONS(6566), + [anon_sym_or] = ACTIONS(6559), + [anon_sym_and] = ACTIONS(6559), + [anon_sym_bitor] = ACTIONS(6566), + [anon_sym_xor] = ACTIONS(6559), + [anon_sym_bitand] = ACTIONS(6566), + [anon_sym_not_eq] = ACTIONS(6566), + [anon_sym_DASH_DASH] = ACTIONS(6566), + [anon_sym_PLUS_PLUS] = ACTIONS(6566), + [anon_sym_DOT] = ACTIONS(6559), + [anon_sym_DOT_STAR] = ACTIONS(6566), + [anon_sym_DASH_GT] = ACTIONS(6559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_final] = ACTIONS(6566), + [anon_sym_override] = ACTIONS(6566), + [anon_sym_requires] = ACTIONS(6566), + [anon_sym_DASH_GT_STAR] = ACTIONS(6566), }, [STATE(2401)] = { - [sym__abstract_declarator] = STATE(5080), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1974), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_RPAREN] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7355), - [anon_sym_or_eq] = ACTIONS(7355), - [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7353), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7355), + [sym__abstract_declarator] = STATE(5229), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2402), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1990), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_RPAREN] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(7295), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(7297), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7367), + [anon_sym_and] = ACTIONS(7367), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7367), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7365), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7367), + [anon_sym_override] = ACTIONS(7367), + [anon_sym_requires] = ACTIONS(7367), + [anon_sym_DASH_GT_STAR] = ACTIONS(7367), }, [STATE(2402)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(9862), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_optional_parameter_declaration] = STATE(9862), - [sym_variadic_parameter_declaration] = STATE(9862), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym_RPAREN] = ACTIONS(2328), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym__abstract_declarator] = STATE(5234), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1990), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_RPAREN] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(7295), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(7297), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7369), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), + [anon_sym_DASH_GT_STAR] = ACTIONS(7371), }, [STATE(2403)] = { - [sym__abstract_declarator] = STATE(5247), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1991), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_RPAREN] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(7309), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7349), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), - [anon_sym_DASH_GT_STAR] = ACTIONS(7351), + [sym__abstract_declarator] = STATE(5236), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2405), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1990), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_RPAREN] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(7295), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(7297), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7373), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), + [anon_sym_DASH_GT_STAR] = ACTIONS(7375), }, [STATE(2404)] = { - [sym__abstract_declarator] = STATE(5248), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2430), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1991), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2430), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7309), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7343), - [anon_sym_and] = ACTIONS(7343), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7343), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7341), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - [anon_sym_DASH_GT_STAR] = ACTIONS(7343), + [sym__abstract_declarator] = STATE(5242), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1990), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7295), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7297), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6841), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + [anon_sym_DASH_GT_STAR] = ACTIONS(6843), }, [STATE(2405)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7134), - [anon_sym_RPAREN] = ACTIONS(7134), - [anon_sym_LPAREN2] = ACTIONS(7134), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7132), - [anon_sym_SLASH] = ACTIONS(7132), - [anon_sym_PERCENT] = ACTIONS(7132), - [anon_sym_PIPE_PIPE] = ACTIONS(7134), - [anon_sym_AMP_AMP] = ACTIONS(7134), - [anon_sym_PIPE] = ACTIONS(7132), - [anon_sym_CARET] = ACTIONS(7132), - [anon_sym_AMP] = ACTIONS(7132), - [anon_sym_EQ_EQ] = ACTIONS(7134), - [anon_sym_BANG_EQ] = ACTIONS(7134), - [anon_sym_GT] = ACTIONS(7132), - [anon_sym_GT_EQ] = ACTIONS(7134), - [anon_sym_LT_EQ] = ACTIONS(7132), - [anon_sym_LT] = ACTIONS(7132), - [anon_sym_LT_LT] = ACTIONS(7132), - [anon_sym_GT_GT] = ACTIONS(7132), - [anon_sym___extension__] = ACTIONS(7134), - [anon_sym___attribute__] = ACTIONS(7134), - [anon_sym___attribute] = ACTIONS(7132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), - [anon_sym_LBRACK] = ACTIONS(7132), - [anon_sym_EQ] = ACTIONS(7132), - [anon_sym_const] = ACTIONS(7132), - [anon_sym_constexpr] = ACTIONS(7134), - [anon_sym_volatile] = ACTIONS(7134), - [anon_sym_restrict] = ACTIONS(7134), - [anon_sym___restrict__] = ACTIONS(7134), - [anon_sym__Atomic] = ACTIONS(7134), - [anon_sym__Noreturn] = ACTIONS(7134), - [anon_sym_noreturn] = ACTIONS(7134), - [anon_sym__Nonnull] = ACTIONS(7134), - [anon_sym_mutable] = ACTIONS(7134), - [anon_sym_constinit] = ACTIONS(7134), - [anon_sym_consteval] = ACTIONS(7134), - [anon_sym_alignas] = ACTIONS(7134), - [anon_sym__Alignas] = ACTIONS(7134), - [anon_sym_QMARK] = ACTIONS(7134), - [anon_sym_STAR_EQ] = ACTIONS(7134), - [anon_sym_SLASH_EQ] = ACTIONS(7134), - [anon_sym_PERCENT_EQ] = ACTIONS(7134), - [anon_sym_PLUS_EQ] = ACTIONS(7134), - [anon_sym_DASH_EQ] = ACTIONS(7134), - [anon_sym_LT_LT_EQ] = ACTIONS(7134), - [anon_sym_GT_GT_EQ] = ACTIONS(7134), - [anon_sym_AMP_EQ] = ACTIONS(7134), - [anon_sym_CARET_EQ] = ACTIONS(7134), - [anon_sym_PIPE_EQ] = ACTIONS(7134), - [anon_sym_and_eq] = ACTIONS(7134), - [anon_sym_or_eq] = ACTIONS(7134), - [anon_sym_xor_eq] = ACTIONS(7134), - [anon_sym_LT_EQ_GT] = ACTIONS(7134), - [anon_sym_or] = ACTIONS(7132), - [anon_sym_and] = ACTIONS(7132), - [anon_sym_bitor] = ACTIONS(7134), - [anon_sym_xor] = ACTIONS(7132), - [anon_sym_bitand] = ACTIONS(7134), - [anon_sym_not_eq] = ACTIONS(7134), - [anon_sym_DASH_DASH] = ACTIONS(7134), - [anon_sym_PLUS_PLUS] = ACTIONS(7134), - [anon_sym_asm] = ACTIONS(7134), - [anon_sym___asm__] = ACTIONS(7134), - [anon_sym___asm] = ACTIONS(7132), - [anon_sym_DOT] = ACTIONS(7132), - [anon_sym_DOT_STAR] = ACTIONS(7134), - [anon_sym_DASH_GT] = ACTIONS(7132), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7134), - [anon_sym_override] = ACTIONS(7134), - [anon_sym_noexcept] = ACTIONS(7134), - [anon_sym_throw] = ACTIONS(7134), - [anon_sym_requires] = ACTIONS(7134), - [anon_sym_DASH_GT_STAR] = ACTIONS(7134), + [sym__abstract_declarator] = STATE(5237), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1990), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_RPAREN] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(7293), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(7295), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(7297), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), + [anon_sym_DASH_GT_STAR] = ACTIONS(7341), }, [STATE(2406)] = { - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [aux_sym_preproc_if_token2] = ACTIONS(6891), - [aux_sym_preproc_else_token1] = ACTIONS(6891), - [aux_sym_preproc_elif_token1] = ACTIONS(6889), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6891), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(8182), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_RBRACK] = ACTIONS(6891), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(8182), - [anon_sym_constexpr] = ACTIONS(8182), - [anon_sym_volatile] = ACTIONS(8182), - [anon_sym_restrict] = ACTIONS(8182), - [anon_sym___restrict__] = ACTIONS(8182), - [anon_sym__Atomic] = ACTIONS(8182), - [anon_sym__Noreturn] = ACTIONS(8182), - [anon_sym_noreturn] = ACTIONS(8182), - [anon_sym__Nonnull] = ACTIONS(8182), - [anon_sym_mutable] = ACTIONS(8182), - [anon_sym_constinit] = ACTIONS(8182), - [anon_sym_consteval] = ACTIONS(8182), - [anon_sym_alignas] = ACTIONS(8185), - [anon_sym__Alignas] = ACTIONS(8185), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6891), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_and_eq] = ACTIONS(6889), - [anon_sym_or_eq] = ACTIONS(6889), - [anon_sym_xor_eq] = ACTIONS(6889), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_requires] = ACTIONS(6889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_RPAREN] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym___extension__] = ACTIONS(7146), + [anon_sym___attribute__] = ACTIONS(7146), + [anon_sym___attribute] = ACTIONS(7144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7144), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7146), + [anon_sym_volatile] = ACTIONS(7146), + [anon_sym_restrict] = ACTIONS(7146), + [anon_sym___restrict__] = ACTIONS(7146), + [anon_sym__Atomic] = ACTIONS(7146), + [anon_sym__Noreturn] = ACTIONS(7146), + [anon_sym_noreturn] = ACTIONS(7146), + [anon_sym__Nonnull] = ACTIONS(7146), + [anon_sym_mutable] = ACTIONS(7146), + [anon_sym_constinit] = ACTIONS(7146), + [anon_sym_consteval] = ACTIONS(7146), + [anon_sym_alignas] = ACTIONS(7146), + [anon_sym__Alignas] = ACTIONS(7146), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7146), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_and_eq] = ACTIONS(7146), + [anon_sym_or_eq] = ACTIONS(7146), + [anon_sym_xor_eq] = ACTIONS(7146), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7144), + [anon_sym_and] = ACTIONS(7144), + [anon_sym_bitor] = ACTIONS(7146), + [anon_sym_xor] = ACTIONS(7144), + [anon_sym_bitand] = ACTIONS(7146), + [anon_sym_not_eq] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_asm] = ACTIONS(7146), + [anon_sym___asm__] = ACTIONS(7146), + [anon_sym___asm] = ACTIONS(7144), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7144), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7146), + [anon_sym_override] = ACTIONS(7146), + [anon_sym_noexcept] = ACTIONS(7146), + [anon_sym_throw] = ACTIONS(7146), + [anon_sym_requires] = ACTIONS(7146), + [anon_sym_DASH_GT_STAR] = ACTIONS(7146), }, [STATE(2407)] = { - [sym_identifier] = ACTIONS(8188), - [anon_sym_LPAREN2] = ACTIONS(8190), - [anon_sym_BANG] = ACTIONS(8190), - [anon_sym_TILDE] = ACTIONS(8190), - [anon_sym_DASH] = ACTIONS(8188), - [anon_sym_PLUS] = ACTIONS(8188), - [anon_sym_STAR] = ACTIONS(8190), - [anon_sym_AMP] = ACTIONS(8190), - [anon_sym_SEMI] = ACTIONS(8190), - [anon_sym___extension__] = ACTIONS(8188), - [anon_sym_COLON_COLON] = ACTIONS(8190), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8190), - [anon_sym_LBRACE] = ACTIONS(8190), - [anon_sym_LBRACK] = ACTIONS(8188), - [sym_primitive_type] = ACTIONS(8188), - [anon_sym_if] = ACTIONS(8188), - [anon_sym_switch] = ACTIONS(8188), - [anon_sym_case] = ACTIONS(8188), - [anon_sym_default] = ACTIONS(8188), - [anon_sym_while] = ACTIONS(8188), - [anon_sym_do] = ACTIONS(8188), - [anon_sym_for] = ACTIONS(8188), - [anon_sym_return] = ACTIONS(8188), - [anon_sym_break] = ACTIONS(8188), - [anon_sym_continue] = ACTIONS(8188), - [anon_sym_goto] = ACTIONS(8188), - [anon_sym___try] = ACTIONS(8188), - [anon_sym___leave] = ACTIONS(8188), - [anon_sym_not] = ACTIONS(8188), - [anon_sym_compl] = ACTIONS(8188), - [anon_sym_DASH_DASH] = ACTIONS(8190), - [anon_sym_PLUS_PLUS] = ACTIONS(8190), - [anon_sym_sizeof] = ACTIONS(8188), - [anon_sym___alignof__] = ACTIONS(8188), - [anon_sym___alignof] = ACTIONS(8188), - [anon_sym__alignof] = ACTIONS(8188), - [anon_sym_alignof] = ACTIONS(8188), - [anon_sym__Alignof] = ACTIONS(8188), - [anon_sym_offsetof] = ACTIONS(8188), - [anon_sym__Generic] = ACTIONS(8188), - [anon_sym_typename] = ACTIONS(8188), - [anon_sym_asm] = ACTIONS(8188), - [anon_sym___asm__] = ACTIONS(8188), - [anon_sym___asm] = ACTIONS(8188), - [sym_number_literal] = ACTIONS(8190), - [anon_sym_L_SQUOTE] = ACTIONS(8190), - [anon_sym_u_SQUOTE] = ACTIONS(8190), - [anon_sym_U_SQUOTE] = ACTIONS(8190), - [anon_sym_u8_SQUOTE] = ACTIONS(8190), - [anon_sym_SQUOTE] = ACTIONS(8190), - [anon_sym_L_DQUOTE] = ACTIONS(8190), - [anon_sym_u_DQUOTE] = ACTIONS(8190), - [anon_sym_U_DQUOTE] = ACTIONS(8190), - [anon_sym_u8_DQUOTE] = ACTIONS(8190), - [anon_sym_DQUOTE] = ACTIONS(8190), - [sym_true] = ACTIONS(8188), - [sym_false] = ACTIONS(8188), - [anon_sym_NULL] = ACTIONS(8188), - [anon_sym_nullptr] = ACTIONS(8188), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(8188), - [anon_sym_template] = ACTIONS(8188), - [anon_sym_try] = ACTIONS(8188), - [anon_sym_delete] = ACTIONS(8188), - [anon_sym_throw] = ACTIONS(8188), - [anon_sym_co_return] = ACTIONS(8188), - [anon_sym_co_yield] = ACTIONS(8188), - [anon_sym_R_DQUOTE] = ACTIONS(8190), - [anon_sym_LR_DQUOTE] = ACTIONS(8190), - [anon_sym_uR_DQUOTE] = ACTIONS(8190), - [anon_sym_UR_DQUOTE] = ACTIONS(8190), - [anon_sym_u8R_DQUOTE] = ACTIONS(8190), - [anon_sym_co_await] = ACTIONS(8188), - [anon_sym_new] = ACTIONS(8188), - [anon_sym_requires] = ACTIONS(8188), - [anon_sym_CARET_CARET] = ACTIONS(8190), - [anon_sym_LBRACK_COLON] = ACTIONS(8190), - [sym_this] = ACTIONS(8188), + [sym__abstract_declarator] = STATE(5131), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2272), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7285), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7287), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7289), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6841), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6843), }, [STATE(2408)] = { - [sym_identifier] = ACTIONS(8192), - [anon_sym_LPAREN2] = ACTIONS(8194), - [anon_sym_BANG] = ACTIONS(8194), - [anon_sym_TILDE] = ACTIONS(8194), - [anon_sym_DASH] = ACTIONS(8192), - [anon_sym_PLUS] = ACTIONS(8192), - [anon_sym_STAR] = ACTIONS(8194), - [anon_sym_AMP] = ACTIONS(8194), - [anon_sym_SEMI] = ACTIONS(8194), - [anon_sym___extension__] = ACTIONS(8192), - [anon_sym_COLON_COLON] = ACTIONS(8194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8194), - [anon_sym_LBRACE] = ACTIONS(8194), - [anon_sym_LBRACK] = ACTIONS(8192), - [sym_primitive_type] = ACTIONS(8192), - [anon_sym_if] = ACTIONS(8192), - [anon_sym_switch] = ACTIONS(8192), - [anon_sym_case] = ACTIONS(8192), - [anon_sym_default] = ACTIONS(8192), - [anon_sym_while] = ACTIONS(8192), - [anon_sym_do] = ACTIONS(8192), - [anon_sym_for] = ACTIONS(8192), - [anon_sym_return] = ACTIONS(8192), - [anon_sym_break] = ACTIONS(8192), - [anon_sym_continue] = ACTIONS(8192), - [anon_sym_goto] = ACTIONS(8192), - [anon_sym___try] = ACTIONS(8192), - [anon_sym___leave] = ACTIONS(8192), - [anon_sym_not] = ACTIONS(8192), - [anon_sym_compl] = ACTIONS(8192), - [anon_sym_DASH_DASH] = ACTIONS(8194), - [anon_sym_PLUS_PLUS] = ACTIONS(8194), - [anon_sym_sizeof] = ACTIONS(8192), - [anon_sym___alignof__] = ACTIONS(8192), - [anon_sym___alignof] = ACTIONS(8192), - [anon_sym__alignof] = ACTIONS(8192), - [anon_sym_alignof] = ACTIONS(8192), - [anon_sym__Alignof] = ACTIONS(8192), - [anon_sym_offsetof] = ACTIONS(8192), - [anon_sym__Generic] = ACTIONS(8192), - [anon_sym_typename] = ACTIONS(8192), - [anon_sym_asm] = ACTIONS(8192), - [anon_sym___asm__] = ACTIONS(8192), - [anon_sym___asm] = ACTIONS(8192), - [sym_number_literal] = ACTIONS(8194), - [anon_sym_L_SQUOTE] = ACTIONS(8194), - [anon_sym_u_SQUOTE] = ACTIONS(8194), - [anon_sym_U_SQUOTE] = ACTIONS(8194), - [anon_sym_u8_SQUOTE] = ACTIONS(8194), - [anon_sym_SQUOTE] = ACTIONS(8194), - [anon_sym_L_DQUOTE] = ACTIONS(8194), - [anon_sym_u_DQUOTE] = ACTIONS(8194), - [anon_sym_U_DQUOTE] = ACTIONS(8194), - [anon_sym_u8_DQUOTE] = ACTIONS(8194), - [anon_sym_DQUOTE] = ACTIONS(8194), - [sym_true] = ACTIONS(8192), - [sym_false] = ACTIONS(8192), - [anon_sym_NULL] = ACTIONS(8192), - [anon_sym_nullptr] = ACTIONS(8192), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(8192), - [anon_sym_template] = ACTIONS(8192), - [anon_sym_try] = ACTIONS(8192), - [anon_sym_delete] = ACTIONS(8192), - [anon_sym_throw] = ACTIONS(8192), - [anon_sym_co_return] = ACTIONS(8192), - [anon_sym_co_yield] = ACTIONS(8192), - [anon_sym_R_DQUOTE] = ACTIONS(8194), - [anon_sym_LR_DQUOTE] = ACTIONS(8194), - [anon_sym_uR_DQUOTE] = ACTIONS(8194), - [anon_sym_UR_DQUOTE] = ACTIONS(8194), - [anon_sym_u8R_DQUOTE] = ACTIONS(8194), - [anon_sym_co_await] = ACTIONS(8192), - [anon_sym_new] = ACTIONS(8192), - [anon_sym_requires] = ACTIONS(8192), - [anon_sym_CARET_CARET] = ACTIONS(8194), - [anon_sym_LBRACK_COLON] = ACTIONS(8194), - [sym_this] = ACTIONS(8192), + [sym__abstract_declarator] = STATE(5118), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2272), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_RPAREN] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(7285), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(7287), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(7289), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_and_eq] = ACTIONS(7341), + [anon_sym_or_eq] = ACTIONS(7341), + [anon_sym_xor_eq] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7341), }, [STATE(2409)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), - [anon_sym_COMMA] = ACTIONS(7729), - [anon_sym_RPAREN] = ACTIONS(7729), - [anon_sym_LPAREN2] = ACTIONS(7729), - [anon_sym_DASH] = ACTIONS(7727), - [anon_sym_PLUS] = ACTIONS(7727), - [anon_sym_STAR] = ACTIONS(7727), - [anon_sym_SLASH] = ACTIONS(7727), - [anon_sym_PERCENT] = ACTIONS(7727), - [anon_sym_PIPE_PIPE] = ACTIONS(7729), - [anon_sym_AMP_AMP] = ACTIONS(7729), - [anon_sym_PIPE] = ACTIONS(7727), - [anon_sym_CARET] = ACTIONS(7727), - [anon_sym_AMP] = ACTIONS(7727), - [anon_sym_EQ_EQ] = ACTIONS(7729), - [anon_sym_BANG_EQ] = ACTIONS(7729), - [anon_sym_GT] = ACTIONS(7727), - [anon_sym_GT_EQ] = ACTIONS(7729), - [anon_sym_LT_EQ] = ACTIONS(7727), - [anon_sym_LT] = ACTIONS(7727), - [anon_sym_LT_LT] = ACTIONS(7727), - [anon_sym_GT_GT] = ACTIONS(7727), - [anon_sym___extension__] = ACTIONS(7729), - [anon_sym___attribute__] = ACTIONS(7729), - [anon_sym___attribute] = ACTIONS(7727), - [anon_sym_LBRACE] = ACTIONS(7729), - [anon_sym_signed] = ACTIONS(8196), - [anon_sym_unsigned] = ACTIONS(8196), - [anon_sym_long] = ACTIONS(8196), - [anon_sym_short] = ACTIONS(8196), - [anon_sym_LBRACK] = ACTIONS(7729), - [anon_sym_EQ] = ACTIONS(7727), - [anon_sym_const] = ACTIONS(7727), - [anon_sym_constexpr] = ACTIONS(7729), - [anon_sym_volatile] = ACTIONS(7729), - [anon_sym_restrict] = ACTIONS(7729), - [anon_sym___restrict__] = ACTIONS(7729), - [anon_sym__Atomic] = ACTIONS(7729), - [anon_sym__Noreturn] = ACTIONS(7729), - [anon_sym_noreturn] = ACTIONS(7729), - [anon_sym__Nonnull] = ACTIONS(7729), - [anon_sym_mutable] = ACTIONS(7729), - [anon_sym_constinit] = ACTIONS(7729), - [anon_sym_consteval] = ACTIONS(7729), - [anon_sym_alignas] = ACTIONS(7729), - [anon_sym__Alignas] = ACTIONS(7729), - [anon_sym_QMARK] = ACTIONS(7729), - [anon_sym_STAR_EQ] = ACTIONS(7729), - [anon_sym_SLASH_EQ] = ACTIONS(7729), - [anon_sym_PERCENT_EQ] = ACTIONS(7729), - [anon_sym_PLUS_EQ] = ACTIONS(7729), - [anon_sym_DASH_EQ] = ACTIONS(7729), - [anon_sym_LT_LT_EQ] = ACTIONS(7729), - [anon_sym_GT_GT_EQ] = ACTIONS(7729), - [anon_sym_AMP_EQ] = ACTIONS(7729), - [anon_sym_CARET_EQ] = ACTIONS(7729), - [anon_sym_PIPE_EQ] = ACTIONS(7729), - [anon_sym_and_eq] = ACTIONS(7729), - [anon_sym_or_eq] = ACTIONS(7729), - [anon_sym_xor_eq] = ACTIONS(7729), - [anon_sym_LT_EQ_GT] = ACTIONS(7729), - [anon_sym_or] = ACTIONS(7727), - [anon_sym_and] = ACTIONS(7727), - [anon_sym_bitor] = ACTIONS(7729), - [anon_sym_xor] = ACTIONS(7727), - [anon_sym_bitand] = ACTIONS(7729), - [anon_sym_not_eq] = ACTIONS(7729), - [anon_sym_DASH_DASH] = ACTIONS(7729), - [anon_sym_PLUS_PLUS] = ACTIONS(7729), - [anon_sym_DOT] = ACTIONS(7727), - [anon_sym_DOT_STAR] = ACTIONS(7729), - [anon_sym_DASH_GT] = ACTIONS(7727), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7729), - [anon_sym_override] = ACTIONS(7729), - [anon_sym_requires] = ACTIONS(7729), - [anon_sym_DASH_GT_STAR] = ACTIONS(7729), + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym_ref_qualifier] = STATE(2433), + [sym__function_exception_specification] = STATE(2904), + [sym__function_attributes_end] = STATE(4318), + [sym__function_postfix] = STATE(4851), + [sym_trailing_return_type] = STATE(4354), + [sym_noexcept] = STATE(2904), + [sym_throw_specifier] = STATE(2904), + [sym_requires_clause] = STATE(4851), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(8161), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(8164), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8167), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6663), + [anon_sym_override] = ACTIONS(6663), + [anon_sym_noexcept] = ACTIONS(6642), + [anon_sym_throw] = ACTIONS(6644), + [anon_sym_requires] = ACTIONS(6665), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), }, [STATE(2410)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), - [anon_sym_COMMA] = ACTIONS(7677), - [anon_sym_RPAREN] = ACTIONS(7677), - [anon_sym_LPAREN2] = ACTIONS(7677), - [anon_sym_DASH] = ACTIONS(7675), - [anon_sym_PLUS] = ACTIONS(7675), - [anon_sym_STAR] = ACTIONS(7675), - [anon_sym_SLASH] = ACTIONS(7675), - [anon_sym_PERCENT] = ACTIONS(7675), - [anon_sym_PIPE_PIPE] = ACTIONS(7677), - [anon_sym_AMP_AMP] = ACTIONS(7677), - [anon_sym_PIPE] = ACTIONS(7675), - [anon_sym_CARET] = ACTIONS(7675), - [anon_sym_AMP] = ACTIONS(7675), - [anon_sym_EQ_EQ] = ACTIONS(7677), - [anon_sym_BANG_EQ] = ACTIONS(7677), - [anon_sym_GT] = ACTIONS(7675), - [anon_sym_GT_EQ] = ACTIONS(7677), - [anon_sym_LT_EQ] = ACTIONS(7675), - [anon_sym_LT] = ACTIONS(7675), - [anon_sym_LT_LT] = ACTIONS(7675), - [anon_sym_GT_GT] = ACTIONS(7675), - [anon_sym___extension__] = ACTIONS(7677), - [anon_sym___attribute__] = ACTIONS(7677), - [anon_sym___attribute] = ACTIONS(7675), - [anon_sym_LBRACE] = ACTIONS(7677), - [anon_sym_signed] = ACTIONS(8196), - [anon_sym_unsigned] = ACTIONS(8196), - [anon_sym_long] = ACTIONS(8196), - [anon_sym_short] = ACTIONS(8196), - [anon_sym_LBRACK] = ACTIONS(7677), - [anon_sym_EQ] = ACTIONS(7675), - [anon_sym_const] = ACTIONS(7675), - [anon_sym_constexpr] = ACTIONS(7677), - [anon_sym_volatile] = ACTIONS(7677), - [anon_sym_restrict] = ACTIONS(7677), - [anon_sym___restrict__] = ACTIONS(7677), - [anon_sym__Atomic] = ACTIONS(7677), - [anon_sym__Noreturn] = ACTIONS(7677), - [anon_sym_noreturn] = ACTIONS(7677), - [anon_sym__Nonnull] = ACTIONS(7677), - [anon_sym_mutable] = ACTIONS(7677), - [anon_sym_constinit] = ACTIONS(7677), - [anon_sym_consteval] = ACTIONS(7677), - [anon_sym_alignas] = ACTIONS(7677), - [anon_sym__Alignas] = ACTIONS(7677), - [anon_sym_QMARK] = ACTIONS(7677), - [anon_sym_STAR_EQ] = ACTIONS(7677), - [anon_sym_SLASH_EQ] = ACTIONS(7677), - [anon_sym_PERCENT_EQ] = ACTIONS(7677), - [anon_sym_PLUS_EQ] = ACTIONS(7677), - [anon_sym_DASH_EQ] = ACTIONS(7677), - [anon_sym_LT_LT_EQ] = ACTIONS(7677), - [anon_sym_GT_GT_EQ] = ACTIONS(7677), - [anon_sym_AMP_EQ] = ACTIONS(7677), - [anon_sym_CARET_EQ] = ACTIONS(7677), - [anon_sym_PIPE_EQ] = ACTIONS(7677), - [anon_sym_and_eq] = ACTIONS(7677), - [anon_sym_or_eq] = ACTIONS(7677), - [anon_sym_xor_eq] = ACTIONS(7677), - [anon_sym_LT_EQ_GT] = ACTIONS(7677), - [anon_sym_or] = ACTIONS(7675), - [anon_sym_and] = ACTIONS(7675), - [anon_sym_bitor] = ACTIONS(7677), - [anon_sym_xor] = ACTIONS(7675), - [anon_sym_bitand] = ACTIONS(7677), - [anon_sym_not_eq] = ACTIONS(7677), - [anon_sym_DASH_DASH] = ACTIONS(7677), - [anon_sym_PLUS_PLUS] = ACTIONS(7677), - [anon_sym_DOT] = ACTIONS(7675), - [anon_sym_DOT_STAR] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(7675), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7677), - [anon_sym_override] = ACTIONS(7677), - [anon_sym_requires] = ACTIONS(7677), - [anon_sym_DASH_GT_STAR] = ACTIONS(7677), + [sym_identifier] = ACTIONS(8198), + [anon_sym_LPAREN2] = ACTIONS(8200), + [anon_sym_BANG] = ACTIONS(8200), + [anon_sym_TILDE] = ACTIONS(8200), + [anon_sym_DASH] = ACTIONS(8198), + [anon_sym_PLUS] = ACTIONS(8198), + [anon_sym_STAR] = ACTIONS(8200), + [anon_sym_AMP] = ACTIONS(8200), + [anon_sym_SEMI] = ACTIONS(8200), + [anon_sym___extension__] = ACTIONS(8198), + [anon_sym_COLON_COLON] = ACTIONS(8200), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8200), + [anon_sym_LBRACE] = ACTIONS(8200), + [anon_sym_LBRACK] = ACTIONS(8198), + [sym_primitive_type] = ACTIONS(8198), + [anon_sym_if] = ACTIONS(8198), + [anon_sym_switch] = ACTIONS(8198), + [anon_sym_case] = ACTIONS(8198), + [anon_sym_default] = ACTIONS(8198), + [anon_sym_while] = ACTIONS(8198), + [anon_sym_do] = ACTIONS(8198), + [anon_sym_for] = ACTIONS(8198), + [anon_sym_return] = ACTIONS(8198), + [anon_sym_break] = ACTIONS(8198), + [anon_sym_continue] = ACTIONS(8198), + [anon_sym_goto] = ACTIONS(8198), + [anon_sym___try] = ACTIONS(8198), + [anon_sym___leave] = ACTIONS(8198), + [anon_sym_not] = ACTIONS(8198), + [anon_sym_compl] = ACTIONS(8198), + [anon_sym_DASH_DASH] = ACTIONS(8200), + [anon_sym_PLUS_PLUS] = ACTIONS(8200), + [anon_sym_sizeof] = ACTIONS(8198), + [anon_sym___alignof__] = ACTIONS(8198), + [anon_sym___alignof] = ACTIONS(8198), + [anon_sym__alignof] = ACTIONS(8198), + [anon_sym_alignof] = ACTIONS(8198), + [anon_sym__Alignof] = ACTIONS(8198), + [anon_sym_offsetof] = ACTIONS(8198), + [anon_sym__Generic] = ACTIONS(8198), + [anon_sym_typename] = ACTIONS(8198), + [anon_sym_asm] = ACTIONS(8198), + [anon_sym___asm__] = ACTIONS(8198), + [anon_sym___asm] = ACTIONS(8198), + [sym_number_literal] = ACTIONS(8200), + [anon_sym_L_SQUOTE] = ACTIONS(8200), + [anon_sym_u_SQUOTE] = ACTIONS(8200), + [anon_sym_U_SQUOTE] = ACTIONS(8200), + [anon_sym_u8_SQUOTE] = ACTIONS(8200), + [anon_sym_SQUOTE] = ACTIONS(8200), + [anon_sym_L_DQUOTE] = ACTIONS(8200), + [anon_sym_u_DQUOTE] = ACTIONS(8200), + [anon_sym_U_DQUOTE] = ACTIONS(8200), + [anon_sym_u8_DQUOTE] = ACTIONS(8200), + [anon_sym_DQUOTE] = ACTIONS(8200), + [sym_true] = ACTIONS(8198), + [sym_false] = ACTIONS(8198), + [anon_sym_NULL] = ACTIONS(8198), + [anon_sym_nullptr] = ACTIONS(8198), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(8198), + [anon_sym_template] = ACTIONS(8198), + [anon_sym_try] = ACTIONS(8198), + [anon_sym_delete] = ACTIONS(8198), + [anon_sym_throw] = ACTIONS(8198), + [anon_sym_co_return] = ACTIONS(8198), + [anon_sym_co_yield] = ACTIONS(8198), + [anon_sym_R_DQUOTE] = ACTIONS(8200), + [anon_sym_LR_DQUOTE] = ACTIONS(8200), + [anon_sym_uR_DQUOTE] = ACTIONS(8200), + [anon_sym_UR_DQUOTE] = ACTIONS(8200), + [anon_sym_u8R_DQUOTE] = ACTIONS(8200), + [anon_sym_co_await] = ACTIONS(8198), + [anon_sym_new] = ACTIONS(8198), + [anon_sym_requires] = ACTIONS(8198), + [anon_sym_CARET_CARET] = ACTIONS(8200), + [anon_sym_LBRACK_COLON] = ACTIONS(8200), + [sym_this] = ACTIONS(8198), }, [STATE(2411)] = { - [sym_decltype_auto] = STATE(3535), - [sym_template_argument_list] = STATE(2648), - [aux_sym_sized_type_specifier_repeat1] = STATE(2616), - [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(5636), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5636), - [anon_sym_SLASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5636), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5636), - [anon_sym_CARET] = ACTIONS(5636), - [anon_sym_AMP] = ACTIONS(5636), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5636), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5636), - [anon_sym_LT] = ACTIONS(8198), - [anon_sym_LT_LT] = ACTIONS(5636), - [anon_sym_GT_GT] = ACTIONS(5636), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(6956), - [anon_sym_unsigned] = ACTIONS(6956), - [anon_sym_long] = ACTIONS(6956), - [anon_sym_short] = ACTIONS(6956), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_EQ] = ACTIONS(5636), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [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_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5643), - [anon_sym_and] = ACTIONS(5643), - [anon_sym_bitor] = ACTIONS(5643), - [anon_sym_xor] = ACTIONS(5643), - [anon_sym_bitand] = ACTIONS(5643), - [anon_sym_not_eq] = ACTIONS(5643), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5636), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6960), - [anon_sym_decltype] = ACTIONS(6962), - [anon_sym_final] = ACTIONS(5643), - [anon_sym_override] = ACTIONS(5643), - [anon_sym_requires] = ACTIONS(5643), - [anon_sym_DASH_GT_STAR] = ACTIONS(5643), + [sym__abstract_declarator] = STATE(5059), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2408), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_RPAREN] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(7285), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(7287), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(7289), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7373), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7375), }, [STATE(2412)] = { - [sym_type_qualifier] = STATE(2421), - [sym_alignas_qualifier] = STATE(2636), - [aux_sym__type_definition_type_repeat1] = STATE(2421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), - [anon_sym_COMMA] = ACTIONS(6901), - [anon_sym_RPAREN] = ACTIONS(6901), - [anon_sym_LPAREN2] = ACTIONS(6901), - [anon_sym_DASH] = ACTIONS(6899), - [anon_sym_PLUS] = ACTIONS(6899), - [anon_sym_STAR] = ACTIONS(6899), - [anon_sym_SLASH] = ACTIONS(6899), - [anon_sym_PERCENT] = ACTIONS(6899), - [anon_sym_PIPE_PIPE] = ACTIONS(6901), - [anon_sym_AMP_AMP] = ACTIONS(6901), - [anon_sym_PIPE] = ACTIONS(6899), - [anon_sym_CARET] = ACTIONS(6899), - [anon_sym_AMP] = ACTIONS(6899), - [anon_sym_EQ_EQ] = ACTIONS(6901), - [anon_sym_BANG_EQ] = ACTIONS(6901), - [anon_sym_GT] = ACTIONS(6899), - [anon_sym_GT_EQ] = ACTIONS(6901), - [anon_sym_LT_EQ] = ACTIONS(6899), - [anon_sym_LT] = ACTIONS(6899), - [anon_sym_LT_LT] = ACTIONS(6899), - [anon_sym_GT_GT] = ACTIONS(6899), - [anon_sym___extension__] = ACTIONS(6762), - [anon_sym___attribute__] = ACTIONS(6901), - [anon_sym___attribute] = ACTIONS(6899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(6899), - [anon_sym_EQ] = ACTIONS(6899), - [anon_sym_const] = ACTIONS(6770), - [anon_sym_constexpr] = ACTIONS(6762), - [anon_sym_volatile] = ACTIONS(6762), - [anon_sym_restrict] = ACTIONS(6762), - [anon_sym___restrict__] = ACTIONS(6762), - [anon_sym__Atomic] = ACTIONS(6762), - [anon_sym__Noreturn] = ACTIONS(6762), - [anon_sym_noreturn] = ACTIONS(6762), - [anon_sym__Nonnull] = ACTIONS(6762), - [anon_sym_mutable] = ACTIONS(6762), - [anon_sym_constinit] = ACTIONS(6762), - [anon_sym_consteval] = ACTIONS(6762), - [anon_sym_alignas] = ACTIONS(6772), - [anon_sym__Alignas] = ACTIONS(6772), - [anon_sym_QMARK] = ACTIONS(6901), - [anon_sym_STAR_EQ] = ACTIONS(6901), - [anon_sym_SLASH_EQ] = ACTIONS(6901), - [anon_sym_PERCENT_EQ] = ACTIONS(6901), - [anon_sym_PLUS_EQ] = ACTIONS(6901), - [anon_sym_DASH_EQ] = ACTIONS(6901), - [anon_sym_LT_LT_EQ] = ACTIONS(6901), - [anon_sym_GT_GT_EQ] = ACTIONS(6901), - [anon_sym_AMP_EQ] = ACTIONS(6901), - [anon_sym_CARET_EQ] = ACTIONS(6901), - [anon_sym_PIPE_EQ] = ACTIONS(6901), - [anon_sym_LT_EQ_GT] = ACTIONS(6901), - [anon_sym_or] = ACTIONS(6901), - [anon_sym_and] = ACTIONS(6901), - [anon_sym_bitor] = ACTIONS(6901), - [anon_sym_xor] = ACTIONS(6901), - [anon_sym_bitand] = ACTIONS(6901), - [anon_sym_not_eq] = ACTIONS(6901), - [anon_sym_DASH_DASH] = ACTIONS(6901), - [anon_sym_PLUS_PLUS] = ACTIONS(6901), - [anon_sym_asm] = ACTIONS(6901), - [anon_sym___asm__] = ACTIONS(6901), - [anon_sym___asm] = ACTIONS(6899), - [anon_sym_DOT] = ACTIONS(6899), - [anon_sym_DOT_STAR] = ACTIONS(6901), - [anon_sym_DASH_GT] = ACTIONS(6899), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6901), - [anon_sym_override] = ACTIONS(6901), - [anon_sym_noexcept] = ACTIONS(6901), - [anon_sym_throw] = ACTIONS(6901), - [anon_sym_requires] = ACTIONS(6901), - [anon_sym_DASH_GT_STAR] = ACTIONS(6901), + [sym_type_qualifier] = STATE(2387), + [sym_alignas_qualifier] = STATE(2606), + [aux_sym__type_definition_type_repeat1] = STATE(2387), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6746), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6746), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6746), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6746), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(6786), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_EQ] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(6794), + [anon_sym_constexpr] = ACTIONS(6786), + [anon_sym_volatile] = ACTIONS(6786), + [anon_sym_restrict] = ACTIONS(6786), + [anon_sym___restrict__] = ACTIONS(6786), + [anon_sym__Atomic] = ACTIONS(6786), + [anon_sym__Noreturn] = ACTIONS(6786), + [anon_sym_noreturn] = ACTIONS(6786), + [anon_sym__Nonnull] = ACTIONS(6786), + [anon_sym_mutable] = ACTIONS(6786), + [anon_sym_constinit] = ACTIONS(6786), + [anon_sym_consteval] = ACTIONS(6786), + [anon_sym_alignas] = ACTIONS(6796), + [anon_sym__Alignas] = ACTIONS(6796), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_STAR_EQ] = ACTIONS(6748), + [anon_sym_SLASH_EQ] = ACTIONS(6748), + [anon_sym_PERCENT_EQ] = ACTIONS(6748), + [anon_sym_PLUS_EQ] = ACTIONS(6748), + [anon_sym_DASH_EQ] = ACTIONS(6748), + [anon_sym_LT_LT_EQ] = ACTIONS(6748), + [anon_sym_GT_GT_EQ] = ACTIONS(6748), + [anon_sym_AMP_EQ] = ACTIONS(6748), + [anon_sym_CARET_EQ] = ACTIONS(6748), + [anon_sym_PIPE_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6748), + [anon_sym_and] = ACTIONS(6748), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6748), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6746), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), + [anon_sym_DASH_GT_STAR] = ACTIONS(6748), }, [STATE(2413)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), - [anon_sym_COMMA] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(7709), - [anon_sym_LPAREN2] = ACTIONS(7709), - [anon_sym_DASH] = ACTIONS(7707), - [anon_sym_PLUS] = ACTIONS(7707), - [anon_sym_STAR] = ACTIONS(7707), - [anon_sym_SLASH] = ACTIONS(7707), - [anon_sym_PERCENT] = ACTIONS(7707), - [anon_sym_PIPE_PIPE] = ACTIONS(7709), - [anon_sym_AMP_AMP] = ACTIONS(7709), - [anon_sym_PIPE] = ACTIONS(7707), - [anon_sym_CARET] = ACTIONS(7707), - [anon_sym_AMP] = ACTIONS(7707), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_BANG_EQ] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7707), - [anon_sym_GT_EQ] = ACTIONS(7709), - [anon_sym_LT_EQ] = ACTIONS(7707), - [anon_sym_LT] = ACTIONS(7707), - [anon_sym_LT_LT] = ACTIONS(7707), - [anon_sym_GT_GT] = ACTIONS(7707), - [anon_sym___extension__] = ACTIONS(7709), - [anon_sym___attribute__] = ACTIONS(7709), - [anon_sym___attribute] = ACTIONS(7707), - [anon_sym_LBRACE] = ACTIONS(7709), - [anon_sym_signed] = ACTIONS(8200), - [anon_sym_unsigned] = ACTIONS(8200), - [anon_sym_long] = ACTIONS(8200), - [anon_sym_short] = ACTIONS(8200), - [anon_sym_LBRACK] = ACTIONS(7709), - [anon_sym_EQ] = ACTIONS(7707), - [anon_sym_const] = ACTIONS(7707), - [anon_sym_constexpr] = ACTIONS(7709), - [anon_sym_volatile] = ACTIONS(7709), - [anon_sym_restrict] = ACTIONS(7709), - [anon_sym___restrict__] = ACTIONS(7709), - [anon_sym__Atomic] = ACTIONS(7709), - [anon_sym__Noreturn] = ACTIONS(7709), - [anon_sym_noreturn] = ACTIONS(7709), - [anon_sym__Nonnull] = ACTIONS(7709), - [anon_sym_mutable] = ACTIONS(7709), - [anon_sym_constinit] = ACTIONS(7709), - [anon_sym_consteval] = ACTIONS(7709), - [anon_sym_alignas] = ACTIONS(7709), - [anon_sym__Alignas] = ACTIONS(7709), - [anon_sym_QMARK] = ACTIONS(7709), - [anon_sym_STAR_EQ] = ACTIONS(7709), - [anon_sym_SLASH_EQ] = ACTIONS(7709), - [anon_sym_PERCENT_EQ] = ACTIONS(7709), - [anon_sym_PLUS_EQ] = ACTIONS(7709), - [anon_sym_DASH_EQ] = ACTIONS(7709), - [anon_sym_LT_LT_EQ] = ACTIONS(7709), - [anon_sym_GT_GT_EQ] = ACTIONS(7709), - [anon_sym_AMP_EQ] = ACTIONS(7709), - [anon_sym_CARET_EQ] = ACTIONS(7709), - [anon_sym_PIPE_EQ] = ACTIONS(7709), - [anon_sym_and_eq] = ACTIONS(7709), - [anon_sym_or_eq] = ACTIONS(7709), - [anon_sym_xor_eq] = ACTIONS(7709), - [anon_sym_LT_EQ_GT] = ACTIONS(7709), - [anon_sym_or] = ACTIONS(7707), - [anon_sym_and] = ACTIONS(7707), - [anon_sym_bitor] = ACTIONS(7709), - [anon_sym_xor] = ACTIONS(7707), - [anon_sym_bitand] = ACTIONS(7709), - [anon_sym_not_eq] = ACTIONS(7709), - [anon_sym_DASH_DASH] = ACTIONS(7709), - [anon_sym_PLUS_PLUS] = ACTIONS(7709), - [anon_sym_DOT] = ACTIONS(7707), - [anon_sym_DOT_STAR] = ACTIONS(7709), - [anon_sym_DASH_GT] = ACTIONS(7707), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7709), - [anon_sym_override] = ACTIONS(7709), - [anon_sym_requires] = ACTIONS(7709), - [anon_sym_DASH_GT_STAR] = ACTIONS(7709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [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), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_and_eq] = ACTIONS(3116), + [anon_sym_or_eq] = ACTIONS(3116), + [anon_sym_xor_eq] = ACTIONS(3116), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3116), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3116), + [anon_sym_not_eq] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym___asm__] = ACTIONS(3116), + [anon_sym___asm] = ACTIONS(3126), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_noexcept] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_requires] = ACTIONS(3116), + [anon_sym_DASH_GT_STAR] = ACTIONS(3116), }, [STATE(2414)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), - [anon_sym_COMMA] = ACTIONS(7699), - [anon_sym_RPAREN] = ACTIONS(7699), - [anon_sym_LPAREN2] = ACTIONS(7699), - [anon_sym_DASH] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7697), - [anon_sym_STAR] = ACTIONS(7697), - [anon_sym_SLASH] = ACTIONS(7697), - [anon_sym_PERCENT] = ACTIONS(7697), - [anon_sym_PIPE_PIPE] = ACTIONS(7699), - [anon_sym_AMP_AMP] = ACTIONS(7699), - [anon_sym_PIPE] = ACTIONS(7697), - [anon_sym_CARET] = ACTIONS(7697), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_EQ_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7699), - [anon_sym_GT] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_LT] = ACTIONS(7697), - [anon_sym_LT_LT] = ACTIONS(7697), - [anon_sym_GT_GT] = ACTIONS(7697), - [anon_sym___extension__] = ACTIONS(7699), - [anon_sym___attribute__] = ACTIONS(7699), - [anon_sym___attribute] = ACTIONS(7697), - [anon_sym_LBRACE] = ACTIONS(7699), - [anon_sym_signed] = ACTIONS(8196), - [anon_sym_unsigned] = ACTIONS(8196), - [anon_sym_long] = ACTIONS(8196), - [anon_sym_short] = ACTIONS(8196), - [anon_sym_LBRACK] = ACTIONS(7699), - [anon_sym_EQ] = ACTIONS(7697), - [anon_sym_const] = ACTIONS(7697), - [anon_sym_constexpr] = ACTIONS(7699), - [anon_sym_volatile] = ACTIONS(7699), - [anon_sym_restrict] = ACTIONS(7699), - [anon_sym___restrict__] = ACTIONS(7699), - [anon_sym__Atomic] = ACTIONS(7699), - [anon_sym__Noreturn] = ACTIONS(7699), - [anon_sym_noreturn] = ACTIONS(7699), - [anon_sym__Nonnull] = ACTIONS(7699), - [anon_sym_mutable] = ACTIONS(7699), - [anon_sym_constinit] = ACTIONS(7699), - [anon_sym_consteval] = ACTIONS(7699), - [anon_sym_alignas] = ACTIONS(7699), - [anon_sym__Alignas] = ACTIONS(7699), - [anon_sym_QMARK] = ACTIONS(7699), - [anon_sym_STAR_EQ] = ACTIONS(7699), - [anon_sym_SLASH_EQ] = ACTIONS(7699), - [anon_sym_PERCENT_EQ] = ACTIONS(7699), - [anon_sym_PLUS_EQ] = ACTIONS(7699), - [anon_sym_DASH_EQ] = ACTIONS(7699), - [anon_sym_LT_LT_EQ] = ACTIONS(7699), - [anon_sym_GT_GT_EQ] = ACTIONS(7699), - [anon_sym_AMP_EQ] = ACTIONS(7699), - [anon_sym_CARET_EQ] = ACTIONS(7699), - [anon_sym_PIPE_EQ] = ACTIONS(7699), - [anon_sym_and_eq] = ACTIONS(7699), - [anon_sym_or_eq] = ACTIONS(7699), - [anon_sym_xor_eq] = ACTIONS(7699), - [anon_sym_LT_EQ_GT] = ACTIONS(7699), - [anon_sym_or] = ACTIONS(7697), - [anon_sym_and] = ACTIONS(7697), - [anon_sym_bitor] = ACTIONS(7699), - [anon_sym_xor] = ACTIONS(7697), - [anon_sym_bitand] = ACTIONS(7699), - [anon_sym_not_eq] = ACTIONS(7699), - [anon_sym_DASH_DASH] = ACTIONS(7699), - [anon_sym_PLUS_PLUS] = ACTIONS(7699), - [anon_sym_DOT] = ACTIONS(7697), - [anon_sym_DOT_STAR] = ACTIONS(7699), - [anon_sym_DASH_GT] = ACTIONS(7697), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7699), - [anon_sym_override] = ACTIONS(7699), - [anon_sym_requires] = ACTIONS(7699), - [anon_sym_DASH_GT_STAR] = ACTIONS(7699), + [sym__abstract_declarator] = STATE(5252), + [sym_abstract_parenthesized_declarator] = STATE(4875), + [sym_abstract_pointer_declarator] = STATE(4875), + [sym_abstract_function_declarator] = STATE(4875), + [sym_abstract_array_declarator] = STATE(4875), + [sym_type_qualifier] = STATE(2395), + [sym_alignas_qualifier] = STATE(2365), + [sym_parameter_list] = STATE(1970), + [sym_abstract_reference_declarator] = STATE(4875), + [sym__function_declarator_seq] = STATE(4759), + [aux_sym__type_definition_type_repeat1] = STATE(2395), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_RPAREN] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(6975), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(7285), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(7287), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(7289), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(6983), + [anon_sym_LBRACK] = ACTIONS(6991), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(6993), + [anon_sym_constexpr] = ACTIONS(6983), + [anon_sym_volatile] = ACTIONS(6983), + [anon_sym_restrict] = ACTIONS(6983), + [anon_sym___restrict__] = ACTIONS(6983), + [anon_sym__Atomic] = ACTIONS(6983), + [anon_sym__Noreturn] = ACTIONS(6983), + [anon_sym_noreturn] = ACTIONS(6983), + [anon_sym__Nonnull] = ACTIONS(6983), + [anon_sym_mutable] = ACTIONS(6983), + [anon_sym_constinit] = ACTIONS(6983), + [anon_sym_consteval] = ACTIONS(6983), + [anon_sym_alignas] = ACTIONS(6995), + [anon_sym__Alignas] = ACTIONS(6995), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7367), + [anon_sym_or_eq] = ACTIONS(7367), + [anon_sym_xor_eq] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7365), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7367), }, [STATE(2415)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), - [anon_sym_COMMA] = ACTIONS(7695), - [anon_sym_RPAREN] = ACTIONS(7695), - [anon_sym_LPAREN2] = ACTIONS(7695), - [anon_sym_DASH] = ACTIONS(7693), - [anon_sym_PLUS] = ACTIONS(7693), - [anon_sym_STAR] = ACTIONS(7693), - [anon_sym_SLASH] = ACTIONS(7693), - [anon_sym_PERCENT] = ACTIONS(7693), - [anon_sym_PIPE_PIPE] = ACTIONS(7695), - [anon_sym_AMP_AMP] = ACTIONS(7695), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_CARET] = ACTIONS(7693), - [anon_sym_AMP] = ACTIONS(7693), - [anon_sym_EQ_EQ] = ACTIONS(7695), - [anon_sym_BANG_EQ] = ACTIONS(7695), - [anon_sym_GT] = ACTIONS(7693), - [anon_sym_GT_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7693), - [anon_sym_LT_LT] = ACTIONS(7693), - [anon_sym_GT_GT] = ACTIONS(7693), - [anon_sym___extension__] = ACTIONS(7695), - [anon_sym___attribute__] = ACTIONS(7695), - [anon_sym___attribute] = ACTIONS(7693), - [anon_sym_LBRACE] = ACTIONS(7695), - [anon_sym_signed] = ACTIONS(8196), - [anon_sym_unsigned] = ACTIONS(8196), - [anon_sym_long] = ACTIONS(8196), - [anon_sym_short] = ACTIONS(8196), - [anon_sym_LBRACK] = ACTIONS(7695), - [anon_sym_EQ] = ACTIONS(7693), - [anon_sym_const] = ACTIONS(7693), - [anon_sym_constexpr] = ACTIONS(7695), - [anon_sym_volatile] = ACTIONS(7695), - [anon_sym_restrict] = ACTIONS(7695), - [anon_sym___restrict__] = ACTIONS(7695), - [anon_sym__Atomic] = ACTIONS(7695), - [anon_sym__Noreturn] = ACTIONS(7695), - [anon_sym_noreturn] = ACTIONS(7695), - [anon_sym__Nonnull] = ACTIONS(7695), - [anon_sym_mutable] = ACTIONS(7695), - [anon_sym_constinit] = ACTIONS(7695), - [anon_sym_consteval] = ACTIONS(7695), - [anon_sym_alignas] = ACTIONS(7695), - [anon_sym__Alignas] = ACTIONS(7695), - [anon_sym_QMARK] = ACTIONS(7695), - [anon_sym_STAR_EQ] = ACTIONS(7695), - [anon_sym_SLASH_EQ] = ACTIONS(7695), - [anon_sym_PERCENT_EQ] = ACTIONS(7695), - [anon_sym_PLUS_EQ] = ACTIONS(7695), - [anon_sym_DASH_EQ] = ACTIONS(7695), - [anon_sym_LT_LT_EQ] = ACTIONS(7695), - [anon_sym_GT_GT_EQ] = ACTIONS(7695), - [anon_sym_AMP_EQ] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(7695), - [anon_sym_and_eq] = ACTIONS(7695), - [anon_sym_or_eq] = ACTIONS(7695), - [anon_sym_xor_eq] = ACTIONS(7695), - [anon_sym_LT_EQ_GT] = ACTIONS(7695), - [anon_sym_or] = ACTIONS(7693), - [anon_sym_and] = ACTIONS(7693), - [anon_sym_bitor] = ACTIONS(7695), - [anon_sym_xor] = ACTIONS(7693), - [anon_sym_bitand] = ACTIONS(7695), - [anon_sym_not_eq] = ACTIONS(7695), - [anon_sym_DASH_DASH] = ACTIONS(7695), - [anon_sym_PLUS_PLUS] = ACTIONS(7695), - [anon_sym_DOT] = ACTIONS(7693), - [anon_sym_DOT_STAR] = ACTIONS(7695), - [anon_sym_DASH_GT] = ACTIONS(7693), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7695), - [anon_sym_override] = ACTIONS(7695), - [anon_sym_requires] = ACTIONS(7695), - [anon_sym_DASH_GT_STAR] = ACTIONS(7695), + [aux_sym_sized_type_specifier_repeat1] = STATE(2328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7660), + [anon_sym_COMMA] = ACTIONS(7660), + [anon_sym_RPAREN] = ACTIONS(7660), + [anon_sym_LPAREN2] = ACTIONS(7660), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_STAR] = ACTIONS(7658), + [anon_sym_SLASH] = ACTIONS(7658), + [anon_sym_PERCENT] = ACTIONS(7658), + [anon_sym_PIPE_PIPE] = ACTIONS(7660), + [anon_sym_AMP_AMP] = ACTIONS(7660), + [anon_sym_PIPE] = ACTIONS(7658), + [anon_sym_CARET] = ACTIONS(7658), + [anon_sym_AMP] = ACTIONS(7658), + [anon_sym_EQ_EQ] = ACTIONS(7660), + [anon_sym_BANG_EQ] = ACTIONS(7660), + [anon_sym_GT] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7660), + [anon_sym_LT_EQ] = ACTIONS(7658), + [anon_sym_LT] = ACTIONS(7658), + [anon_sym_LT_LT] = ACTIONS(7658), + [anon_sym_GT_GT] = ACTIONS(7658), + [anon_sym___extension__] = ACTIONS(7660), + [anon_sym___attribute__] = ACTIONS(7660), + [anon_sym___attribute] = ACTIONS(7658), + [anon_sym_LBRACE] = ACTIONS(7660), + [anon_sym_signed] = ACTIONS(8202), + [anon_sym_unsigned] = ACTIONS(8202), + [anon_sym_long] = ACTIONS(8202), + [anon_sym_short] = ACTIONS(8202), + [anon_sym_LBRACK] = ACTIONS(7660), + [anon_sym_EQ] = ACTIONS(7658), + [anon_sym_const] = ACTIONS(7658), + [anon_sym_constexpr] = ACTIONS(7660), + [anon_sym_volatile] = ACTIONS(7660), + [anon_sym_restrict] = ACTIONS(7660), + [anon_sym___restrict__] = ACTIONS(7660), + [anon_sym__Atomic] = ACTIONS(7660), + [anon_sym__Noreturn] = ACTIONS(7660), + [anon_sym_noreturn] = ACTIONS(7660), + [anon_sym__Nonnull] = ACTIONS(7660), + [anon_sym_mutable] = ACTIONS(7660), + [anon_sym_constinit] = ACTIONS(7660), + [anon_sym_consteval] = ACTIONS(7660), + [anon_sym_alignas] = ACTIONS(7660), + [anon_sym__Alignas] = ACTIONS(7660), + [anon_sym_QMARK] = ACTIONS(7660), + [anon_sym_STAR_EQ] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(7660), + [anon_sym_PERCENT_EQ] = ACTIONS(7660), + [anon_sym_PLUS_EQ] = ACTIONS(7660), + [anon_sym_DASH_EQ] = ACTIONS(7660), + [anon_sym_LT_LT_EQ] = ACTIONS(7660), + [anon_sym_GT_GT_EQ] = ACTIONS(7660), + [anon_sym_AMP_EQ] = ACTIONS(7660), + [anon_sym_CARET_EQ] = ACTIONS(7660), + [anon_sym_PIPE_EQ] = ACTIONS(7660), + [anon_sym_and_eq] = ACTIONS(7660), + [anon_sym_or_eq] = ACTIONS(7660), + [anon_sym_xor_eq] = ACTIONS(7660), + [anon_sym_LT_EQ_GT] = ACTIONS(7660), + [anon_sym_or] = ACTIONS(7658), + [anon_sym_and] = ACTIONS(7658), + [anon_sym_bitor] = ACTIONS(7660), + [anon_sym_xor] = ACTIONS(7658), + [anon_sym_bitand] = ACTIONS(7660), + [anon_sym_not_eq] = ACTIONS(7660), + [anon_sym_DASH_DASH] = ACTIONS(7660), + [anon_sym_PLUS_PLUS] = ACTIONS(7660), + [anon_sym_DOT] = ACTIONS(7658), + [anon_sym_DOT_STAR] = ACTIONS(7660), + [anon_sym_DASH_GT] = ACTIONS(7658), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7660), + [anon_sym_override] = ACTIONS(7660), + [anon_sym_requires] = ACTIONS(7660), + [anon_sym_DASH_GT_STAR] = ACTIONS(7660), }, [STATE(2416)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym___extension__] = ACTIONS(7160), - [anon_sym___attribute__] = ACTIONS(7160), - [anon_sym___attribute] = ACTIONS(7158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7158), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7160), - [anon_sym_volatile] = ACTIONS(7160), - [anon_sym_restrict] = ACTIONS(7160), - [anon_sym___restrict__] = ACTIONS(7160), - [anon_sym__Atomic] = ACTIONS(7160), - [anon_sym__Noreturn] = ACTIONS(7160), - [anon_sym_noreturn] = ACTIONS(7160), - [anon_sym__Nonnull] = ACTIONS(7160), - [anon_sym_mutable] = ACTIONS(7160), - [anon_sym_constinit] = ACTIONS(7160), - [anon_sym_consteval] = ACTIONS(7160), - [anon_sym_alignas] = ACTIONS(7160), - [anon_sym__Alignas] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_and_eq] = ACTIONS(7160), - [anon_sym_or_eq] = ACTIONS(7160), - [anon_sym_xor_eq] = ACTIONS(7160), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7158), - [anon_sym_and] = ACTIONS(7158), - [anon_sym_bitor] = ACTIONS(7160), - [anon_sym_xor] = ACTIONS(7158), - [anon_sym_bitand] = ACTIONS(7160), - [anon_sym_not_eq] = ACTIONS(7160), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_asm] = ACTIONS(7160), - [anon_sym___asm__] = ACTIONS(7160), - [anon_sym___asm] = ACTIONS(7158), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7158), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7160), - [anon_sym_override] = ACTIONS(7160), - [anon_sym_noexcept] = ACTIONS(7160), - [anon_sym_throw] = ACTIONS(7160), - [anon_sym_requires] = ACTIONS(7160), - [anon_sym_DASH_GT_STAR] = ACTIONS(7160), + [aux_sym_sized_type_specifier_repeat1] = STATE(2328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7664), + [anon_sym_COMMA] = ACTIONS(7664), + [anon_sym_RPAREN] = ACTIONS(7664), + [anon_sym_LPAREN2] = ACTIONS(7664), + [anon_sym_DASH] = ACTIONS(7662), + [anon_sym_PLUS] = ACTIONS(7662), + [anon_sym_STAR] = ACTIONS(7662), + [anon_sym_SLASH] = ACTIONS(7662), + [anon_sym_PERCENT] = ACTIONS(7662), + [anon_sym_PIPE_PIPE] = ACTIONS(7664), + [anon_sym_AMP_AMP] = ACTIONS(7664), + [anon_sym_PIPE] = ACTIONS(7662), + [anon_sym_CARET] = ACTIONS(7662), + [anon_sym_AMP] = ACTIONS(7662), + [anon_sym_EQ_EQ] = ACTIONS(7664), + [anon_sym_BANG_EQ] = ACTIONS(7664), + [anon_sym_GT] = ACTIONS(7662), + [anon_sym_GT_EQ] = ACTIONS(7664), + [anon_sym_LT_EQ] = ACTIONS(7662), + [anon_sym_LT] = ACTIONS(7662), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym___extension__] = ACTIONS(7664), + [anon_sym___attribute__] = ACTIONS(7664), + [anon_sym___attribute] = ACTIONS(7662), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_signed] = ACTIONS(8202), + [anon_sym_unsigned] = ACTIONS(8202), + [anon_sym_long] = ACTIONS(8202), + [anon_sym_short] = ACTIONS(8202), + [anon_sym_LBRACK] = ACTIONS(7664), + [anon_sym_EQ] = ACTIONS(7662), + [anon_sym_const] = ACTIONS(7662), + [anon_sym_constexpr] = ACTIONS(7664), + [anon_sym_volatile] = ACTIONS(7664), + [anon_sym_restrict] = ACTIONS(7664), + [anon_sym___restrict__] = ACTIONS(7664), + [anon_sym__Atomic] = ACTIONS(7664), + [anon_sym__Noreturn] = ACTIONS(7664), + [anon_sym_noreturn] = ACTIONS(7664), + [anon_sym__Nonnull] = ACTIONS(7664), + [anon_sym_mutable] = ACTIONS(7664), + [anon_sym_constinit] = ACTIONS(7664), + [anon_sym_consteval] = ACTIONS(7664), + [anon_sym_alignas] = ACTIONS(7664), + [anon_sym__Alignas] = ACTIONS(7664), + [anon_sym_QMARK] = ACTIONS(7664), + [anon_sym_STAR_EQ] = ACTIONS(7664), + [anon_sym_SLASH_EQ] = ACTIONS(7664), + [anon_sym_PERCENT_EQ] = ACTIONS(7664), + [anon_sym_PLUS_EQ] = ACTIONS(7664), + [anon_sym_DASH_EQ] = ACTIONS(7664), + [anon_sym_LT_LT_EQ] = ACTIONS(7664), + [anon_sym_GT_GT_EQ] = ACTIONS(7664), + [anon_sym_AMP_EQ] = ACTIONS(7664), + [anon_sym_CARET_EQ] = ACTIONS(7664), + [anon_sym_PIPE_EQ] = ACTIONS(7664), + [anon_sym_and_eq] = ACTIONS(7664), + [anon_sym_or_eq] = ACTIONS(7664), + [anon_sym_xor_eq] = ACTIONS(7664), + [anon_sym_LT_EQ_GT] = ACTIONS(7664), + [anon_sym_or] = ACTIONS(7662), + [anon_sym_and] = ACTIONS(7662), + [anon_sym_bitor] = ACTIONS(7664), + [anon_sym_xor] = ACTIONS(7662), + [anon_sym_bitand] = ACTIONS(7664), + [anon_sym_not_eq] = ACTIONS(7664), + [anon_sym_DASH_DASH] = ACTIONS(7664), + [anon_sym_PLUS_PLUS] = ACTIONS(7664), + [anon_sym_DOT] = ACTIONS(7662), + [anon_sym_DOT_STAR] = ACTIONS(7664), + [anon_sym_DASH_GT] = ACTIONS(7662), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7664), + [anon_sym_override] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7664), + [anon_sym_DASH_GT_STAR] = ACTIONS(7664), }, [STATE(2417)] = { - [sym__abstract_declarator] = STATE(5214), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1974), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7345), - [anon_sym_BANG_EQ] = ACTIONS(7345), - [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ] = ACTIONS(7347), - [anon_sym_LT] = ACTIONS(7347), - [anon_sym_LT_LT] = ACTIONS(7347), - [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7345), - [anon_sym_STAR_EQ] = ACTIONS(7345), - [anon_sym_SLASH_EQ] = ACTIONS(7345), - [anon_sym_PERCENT_EQ] = ACTIONS(7345), - [anon_sym_PLUS_EQ] = ACTIONS(7345), - [anon_sym_DASH_EQ] = ACTIONS(7345), - [anon_sym_LT_LT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_EQ] = ACTIONS(7345), - [anon_sym_AMP_EQ] = ACTIONS(7345), - [anon_sym_CARET_EQ] = ACTIONS(7345), - [anon_sym_PIPE_EQ] = ACTIONS(7345), - [anon_sym_and_eq] = ACTIONS(7345), - [anon_sym_or_eq] = ACTIONS(7345), - [anon_sym_xor_eq] = ACTIONS(7345), - [anon_sym_LT_EQ_GT] = ACTIONS(7345), - [anon_sym_or] = ACTIONS(7347), - [anon_sym_and] = ACTIONS(7347), - [anon_sym_bitor] = ACTIONS(7345), - [anon_sym_xor] = ACTIONS(7347), - [anon_sym_bitand] = ACTIONS(7345), - [anon_sym_not_eq] = ACTIONS(7345), - [anon_sym_DASH_DASH] = ACTIONS(7345), - [anon_sym_PLUS_PLUS] = ACTIONS(7345), - [anon_sym_DOT] = ACTIONS(7347), - [anon_sym_DOT_STAR] = ACTIONS(7345), - [anon_sym_DASH_GT] = ACTIONS(7347), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7345), + [sym_identifier] = ACTIONS(8204), + [anon_sym_LPAREN2] = ACTIONS(8206), + [anon_sym_BANG] = ACTIONS(8206), + [anon_sym_TILDE] = ACTIONS(8206), + [anon_sym_DASH] = ACTIONS(8204), + [anon_sym_PLUS] = ACTIONS(8204), + [anon_sym_STAR] = ACTIONS(8206), + [anon_sym_AMP] = ACTIONS(8206), + [anon_sym_SEMI] = ACTIONS(8206), + [anon_sym___extension__] = ACTIONS(8204), + [anon_sym_COLON_COLON] = ACTIONS(8206), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8206), + [anon_sym_LBRACE] = ACTIONS(8206), + [anon_sym_LBRACK] = ACTIONS(8204), + [sym_primitive_type] = ACTIONS(8204), + [anon_sym_if] = ACTIONS(8204), + [anon_sym_switch] = ACTIONS(8204), + [anon_sym_case] = ACTIONS(8204), + [anon_sym_default] = ACTIONS(8204), + [anon_sym_while] = ACTIONS(8204), + [anon_sym_do] = ACTIONS(8204), + [anon_sym_for] = ACTIONS(8204), + [anon_sym_return] = ACTIONS(8204), + [anon_sym_break] = ACTIONS(8204), + [anon_sym_continue] = ACTIONS(8204), + [anon_sym_goto] = ACTIONS(8204), + [anon_sym___try] = ACTIONS(8204), + [anon_sym___leave] = ACTIONS(8204), + [anon_sym_not] = ACTIONS(8204), + [anon_sym_compl] = ACTIONS(8204), + [anon_sym_DASH_DASH] = ACTIONS(8206), + [anon_sym_PLUS_PLUS] = ACTIONS(8206), + [anon_sym_sizeof] = ACTIONS(8204), + [anon_sym___alignof__] = ACTIONS(8204), + [anon_sym___alignof] = ACTIONS(8204), + [anon_sym__alignof] = ACTIONS(8204), + [anon_sym_alignof] = ACTIONS(8204), + [anon_sym__Alignof] = ACTIONS(8204), + [anon_sym_offsetof] = ACTIONS(8204), + [anon_sym__Generic] = ACTIONS(8204), + [anon_sym_typename] = ACTIONS(8204), + [anon_sym_asm] = ACTIONS(8204), + [anon_sym___asm__] = ACTIONS(8204), + [anon_sym___asm] = ACTIONS(8204), + [sym_number_literal] = ACTIONS(8206), + [anon_sym_L_SQUOTE] = ACTIONS(8206), + [anon_sym_u_SQUOTE] = ACTIONS(8206), + [anon_sym_U_SQUOTE] = ACTIONS(8206), + [anon_sym_u8_SQUOTE] = ACTIONS(8206), + [anon_sym_SQUOTE] = ACTIONS(8206), + [anon_sym_L_DQUOTE] = ACTIONS(8206), + [anon_sym_u_DQUOTE] = ACTIONS(8206), + [anon_sym_U_DQUOTE] = ACTIONS(8206), + [anon_sym_u8_DQUOTE] = ACTIONS(8206), + [anon_sym_DQUOTE] = ACTIONS(8206), + [sym_true] = ACTIONS(8204), + [sym_false] = ACTIONS(8204), + [anon_sym_NULL] = ACTIONS(8204), + [anon_sym_nullptr] = ACTIONS(8204), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(8204), + [anon_sym_template] = ACTIONS(8204), + [anon_sym_try] = ACTIONS(8204), + [anon_sym_delete] = ACTIONS(8204), + [anon_sym_throw] = ACTIONS(8204), + [anon_sym_co_return] = ACTIONS(8204), + [anon_sym_co_yield] = ACTIONS(8204), + [anon_sym_R_DQUOTE] = ACTIONS(8206), + [anon_sym_LR_DQUOTE] = ACTIONS(8206), + [anon_sym_uR_DQUOTE] = ACTIONS(8206), + [anon_sym_UR_DQUOTE] = ACTIONS(8206), + [anon_sym_u8R_DQUOTE] = ACTIONS(8206), + [anon_sym_co_await] = ACTIONS(8204), + [anon_sym_new] = ACTIONS(8204), + [anon_sym_requires] = ACTIONS(8204), + [anon_sym_CARET_CARET] = ACTIONS(8206), + [anon_sym_LBRACK_COLON] = ACTIONS(8206), + [sym_this] = ACTIONS(8204), }, [STATE(2418)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), - [anon_sym_COMMA] = ACTIONS(7715), - [anon_sym_RPAREN] = ACTIONS(7715), - [anon_sym_LPAREN2] = ACTIONS(7715), - [anon_sym_DASH] = ACTIONS(7713), - [anon_sym_PLUS] = ACTIONS(7713), - [anon_sym_STAR] = ACTIONS(7713), - [anon_sym_SLASH] = ACTIONS(7713), - [anon_sym_PERCENT] = ACTIONS(7713), - [anon_sym_PIPE_PIPE] = ACTIONS(7715), - [anon_sym_AMP_AMP] = ACTIONS(7715), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_CARET] = ACTIONS(7713), - [anon_sym_AMP] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7715), - [anon_sym_BANG_EQ] = ACTIONS(7715), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_EQ] = ACTIONS(7715), - [anon_sym_LT_EQ] = ACTIONS(7713), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_LT_LT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7713), - [anon_sym___extension__] = ACTIONS(7715), - [anon_sym___attribute__] = ACTIONS(7715), - [anon_sym___attribute] = ACTIONS(7713), - [anon_sym_LBRACE] = ACTIONS(7715), - [anon_sym_signed] = ACTIONS(8196), - [anon_sym_unsigned] = ACTIONS(8196), - [anon_sym_long] = ACTIONS(8196), - [anon_sym_short] = ACTIONS(8196), - [anon_sym_LBRACK] = ACTIONS(7715), - [anon_sym_EQ] = ACTIONS(7713), - [anon_sym_const] = ACTIONS(7713), - [anon_sym_constexpr] = ACTIONS(7715), - [anon_sym_volatile] = ACTIONS(7715), - [anon_sym_restrict] = ACTIONS(7715), - [anon_sym___restrict__] = ACTIONS(7715), - [anon_sym__Atomic] = ACTIONS(7715), - [anon_sym__Noreturn] = ACTIONS(7715), - [anon_sym_noreturn] = ACTIONS(7715), - [anon_sym__Nonnull] = ACTIONS(7715), - [anon_sym_mutable] = ACTIONS(7715), - [anon_sym_constinit] = ACTIONS(7715), - [anon_sym_consteval] = ACTIONS(7715), - [anon_sym_alignas] = ACTIONS(7715), - [anon_sym__Alignas] = ACTIONS(7715), - [anon_sym_QMARK] = ACTIONS(7715), - [anon_sym_STAR_EQ] = ACTIONS(7715), - [anon_sym_SLASH_EQ] = ACTIONS(7715), - [anon_sym_PERCENT_EQ] = ACTIONS(7715), - [anon_sym_PLUS_EQ] = ACTIONS(7715), - [anon_sym_DASH_EQ] = ACTIONS(7715), - [anon_sym_LT_LT_EQ] = ACTIONS(7715), - [anon_sym_GT_GT_EQ] = ACTIONS(7715), - [anon_sym_AMP_EQ] = ACTIONS(7715), - [anon_sym_CARET_EQ] = ACTIONS(7715), - [anon_sym_PIPE_EQ] = ACTIONS(7715), - [anon_sym_and_eq] = ACTIONS(7715), - [anon_sym_or_eq] = ACTIONS(7715), - [anon_sym_xor_eq] = ACTIONS(7715), - [anon_sym_LT_EQ_GT] = ACTIONS(7715), - [anon_sym_or] = ACTIONS(7713), - [anon_sym_and] = ACTIONS(7713), - [anon_sym_bitor] = ACTIONS(7715), - [anon_sym_xor] = ACTIONS(7713), - [anon_sym_bitand] = ACTIONS(7715), - [anon_sym_not_eq] = ACTIONS(7715), - [anon_sym_DASH_DASH] = ACTIONS(7715), - [anon_sym_PLUS_PLUS] = ACTIONS(7715), - [anon_sym_DOT] = ACTIONS(7713), - [anon_sym_DOT_STAR] = ACTIONS(7715), - [anon_sym_DASH_GT] = ACTIONS(7713), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7715), - [anon_sym_override] = ACTIONS(7715), - [anon_sym_requires] = ACTIONS(7715), - [anon_sym_DASH_GT_STAR] = ACTIONS(7715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_RPAREN] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym___extension__] = ACTIONS(7115), + [anon_sym___attribute__] = ACTIONS(7115), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7115), + [anon_sym_LBRACK] = ACTIONS(7113), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7115), + [anon_sym_volatile] = ACTIONS(7115), + [anon_sym_restrict] = ACTIONS(7115), + [anon_sym___restrict__] = ACTIONS(7115), + [anon_sym__Atomic] = ACTIONS(7115), + [anon_sym__Noreturn] = ACTIONS(7115), + [anon_sym_noreturn] = ACTIONS(7115), + [anon_sym__Nonnull] = ACTIONS(7115), + [anon_sym_mutable] = ACTIONS(7115), + [anon_sym_constinit] = ACTIONS(7115), + [anon_sym_consteval] = ACTIONS(7115), + [anon_sym_alignas] = ACTIONS(7115), + [anon_sym__Alignas] = ACTIONS(7115), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_and_eq] = ACTIONS(7115), + [anon_sym_or_eq] = ACTIONS(7115), + [anon_sym_xor_eq] = ACTIONS(7115), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7115), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7115), + [anon_sym_not_eq] = ACTIONS(7115), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_asm] = ACTIONS(7115), + [anon_sym___asm__] = ACTIONS(7115), + [anon_sym___asm] = ACTIONS(7113), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7113), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_noexcept] = ACTIONS(7115), + [anon_sym_throw] = ACTIONS(7115), + [anon_sym_requires] = ACTIONS(7115), + [anon_sym_DASH_GT_STAR] = ACTIONS(7115), }, [STATE(2419)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), - [anon_sym_COMMA] = ACTIONS(7683), - [anon_sym_RPAREN] = ACTIONS(7683), - [anon_sym_LPAREN2] = ACTIONS(7683), - [anon_sym_DASH] = ACTIONS(7681), - [anon_sym_PLUS] = ACTIONS(7681), - [anon_sym_STAR] = ACTIONS(7681), - [anon_sym_SLASH] = ACTIONS(7681), - [anon_sym_PERCENT] = ACTIONS(7681), - [anon_sym_PIPE_PIPE] = ACTIONS(7683), - [anon_sym_AMP_AMP] = ACTIONS(7683), - [anon_sym_PIPE] = ACTIONS(7681), - [anon_sym_CARET] = ACTIONS(7681), - [anon_sym_AMP] = ACTIONS(7681), - [anon_sym_EQ_EQ] = ACTIONS(7683), - [anon_sym_BANG_EQ] = ACTIONS(7683), - [anon_sym_GT] = ACTIONS(7681), - [anon_sym_GT_EQ] = ACTIONS(7683), - [anon_sym_LT_EQ] = ACTIONS(7681), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym___extension__] = ACTIONS(7683), - [anon_sym___attribute__] = ACTIONS(7683), - [anon_sym___attribute] = ACTIONS(7681), - [anon_sym_LBRACE] = ACTIONS(7683), - [anon_sym_signed] = ACTIONS(8196), - [anon_sym_unsigned] = ACTIONS(8196), - [anon_sym_long] = ACTIONS(8196), - [anon_sym_short] = ACTIONS(8196), - [anon_sym_LBRACK] = ACTIONS(7683), - [anon_sym_EQ] = ACTIONS(7681), - [anon_sym_const] = ACTIONS(7681), - [anon_sym_constexpr] = ACTIONS(7683), - [anon_sym_volatile] = ACTIONS(7683), - [anon_sym_restrict] = ACTIONS(7683), - [anon_sym___restrict__] = ACTIONS(7683), - [anon_sym__Atomic] = ACTIONS(7683), - [anon_sym__Noreturn] = ACTIONS(7683), - [anon_sym_noreturn] = ACTIONS(7683), - [anon_sym__Nonnull] = ACTIONS(7683), - [anon_sym_mutable] = ACTIONS(7683), - [anon_sym_constinit] = ACTIONS(7683), - [anon_sym_consteval] = ACTIONS(7683), - [anon_sym_alignas] = ACTIONS(7683), - [anon_sym__Alignas] = ACTIONS(7683), - [anon_sym_QMARK] = ACTIONS(7683), - [anon_sym_STAR_EQ] = ACTIONS(7683), - [anon_sym_SLASH_EQ] = ACTIONS(7683), - [anon_sym_PERCENT_EQ] = ACTIONS(7683), - [anon_sym_PLUS_EQ] = ACTIONS(7683), - [anon_sym_DASH_EQ] = ACTIONS(7683), - [anon_sym_LT_LT_EQ] = ACTIONS(7683), - [anon_sym_GT_GT_EQ] = ACTIONS(7683), - [anon_sym_AMP_EQ] = ACTIONS(7683), - [anon_sym_CARET_EQ] = ACTIONS(7683), - [anon_sym_PIPE_EQ] = ACTIONS(7683), - [anon_sym_and_eq] = ACTIONS(7683), - [anon_sym_or_eq] = ACTIONS(7683), - [anon_sym_xor_eq] = ACTIONS(7683), - [anon_sym_LT_EQ_GT] = ACTIONS(7683), - [anon_sym_or] = ACTIONS(7681), - [anon_sym_and] = ACTIONS(7681), - [anon_sym_bitor] = ACTIONS(7683), - [anon_sym_xor] = ACTIONS(7681), - [anon_sym_bitand] = ACTIONS(7683), - [anon_sym_not_eq] = ACTIONS(7683), - [anon_sym_DASH_DASH] = ACTIONS(7683), - [anon_sym_PLUS_PLUS] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7681), - [anon_sym_DOT_STAR] = ACTIONS(7683), - [anon_sym_DASH_GT] = ACTIONS(7681), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7683), - [anon_sym_override] = ACTIONS(7683), - [anon_sym_requires] = ACTIONS(7683), - [anon_sym_DASH_GT_STAR] = ACTIONS(7683), + [aux_sym_sized_type_specifier_repeat1] = STATE(2423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7686), + [anon_sym_COMMA] = ACTIONS(7686), + [anon_sym_RPAREN] = ACTIONS(7686), + [anon_sym_LPAREN2] = ACTIONS(7686), + [anon_sym_DASH] = ACTIONS(7684), + [anon_sym_PLUS] = ACTIONS(7684), + [anon_sym_STAR] = ACTIONS(7684), + [anon_sym_SLASH] = ACTIONS(7684), + [anon_sym_PERCENT] = ACTIONS(7684), + [anon_sym_PIPE_PIPE] = ACTIONS(7686), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_PIPE] = ACTIONS(7684), + [anon_sym_CARET] = ACTIONS(7684), + [anon_sym_AMP] = ACTIONS(7684), + [anon_sym_EQ_EQ] = ACTIONS(7686), + [anon_sym_BANG_EQ] = ACTIONS(7686), + [anon_sym_GT] = ACTIONS(7684), + [anon_sym_GT_EQ] = ACTIONS(7686), + [anon_sym_LT_EQ] = ACTIONS(7684), + [anon_sym_LT] = ACTIONS(7684), + [anon_sym_LT_LT] = ACTIONS(7684), + [anon_sym_GT_GT] = ACTIONS(7684), + [anon_sym___extension__] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(7686), + [anon_sym___attribute] = ACTIONS(7684), + [anon_sym_LBRACE] = ACTIONS(7686), + [anon_sym_signed] = ACTIONS(8208), + [anon_sym_unsigned] = ACTIONS(8208), + [anon_sym_long] = ACTIONS(8208), + [anon_sym_short] = ACTIONS(8208), + [anon_sym_LBRACK] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(7684), + [anon_sym_const] = ACTIONS(7684), + [anon_sym_constexpr] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym___restrict__] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym__Noreturn] = ACTIONS(7686), + [anon_sym_noreturn] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym_mutable] = ACTIONS(7686), + [anon_sym_constinit] = ACTIONS(7686), + [anon_sym_consteval] = ACTIONS(7686), + [anon_sym_alignas] = ACTIONS(7686), + [anon_sym__Alignas] = ACTIONS(7686), + [anon_sym_QMARK] = ACTIONS(7686), + [anon_sym_STAR_EQ] = ACTIONS(7686), + [anon_sym_SLASH_EQ] = ACTIONS(7686), + [anon_sym_PERCENT_EQ] = ACTIONS(7686), + [anon_sym_PLUS_EQ] = ACTIONS(7686), + [anon_sym_DASH_EQ] = ACTIONS(7686), + [anon_sym_LT_LT_EQ] = ACTIONS(7686), + [anon_sym_GT_GT_EQ] = ACTIONS(7686), + [anon_sym_AMP_EQ] = ACTIONS(7686), + [anon_sym_CARET_EQ] = ACTIONS(7686), + [anon_sym_PIPE_EQ] = ACTIONS(7686), + [anon_sym_and_eq] = ACTIONS(7686), + [anon_sym_or_eq] = ACTIONS(7686), + [anon_sym_xor_eq] = ACTIONS(7686), + [anon_sym_LT_EQ_GT] = ACTIONS(7686), + [anon_sym_or] = ACTIONS(7684), + [anon_sym_and] = ACTIONS(7684), + [anon_sym_bitor] = ACTIONS(7686), + [anon_sym_xor] = ACTIONS(7684), + [anon_sym_bitand] = ACTIONS(7686), + [anon_sym_not_eq] = ACTIONS(7686), + [anon_sym_DASH_DASH] = ACTIONS(7686), + [anon_sym_PLUS_PLUS] = ACTIONS(7686), + [anon_sym_DOT] = ACTIONS(7684), + [anon_sym_DOT_STAR] = ACTIONS(7686), + [anon_sym_DASH_GT] = ACTIONS(7684), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7686), + [anon_sym_override] = ACTIONS(7686), + [anon_sym_requires] = ACTIONS(7686), + [anon_sym_DASH_GT_STAR] = ACTIONS(7686), }, [STATE(2420)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), - [anon_sym_COMMA] = ACTIONS(7110), - [anon_sym_RPAREN] = ACTIONS(7110), - [anon_sym_LPAREN2] = ACTIONS(7110), - [anon_sym_DASH] = ACTIONS(7108), - [anon_sym_PLUS] = ACTIONS(7108), - [anon_sym_STAR] = ACTIONS(7108), - [anon_sym_SLASH] = ACTIONS(7108), - [anon_sym_PERCENT] = ACTIONS(7108), - [anon_sym_PIPE_PIPE] = ACTIONS(7110), - [anon_sym_AMP_AMP] = ACTIONS(7110), - [anon_sym_PIPE] = ACTIONS(7108), - [anon_sym_CARET] = ACTIONS(7108), - [anon_sym_AMP] = ACTIONS(7108), - [anon_sym_EQ_EQ] = ACTIONS(7110), - [anon_sym_BANG_EQ] = ACTIONS(7110), - [anon_sym_GT] = ACTIONS(7108), - [anon_sym_GT_EQ] = ACTIONS(7110), - [anon_sym_LT_EQ] = ACTIONS(7108), - [anon_sym_LT] = ACTIONS(7108), - [anon_sym_LT_LT] = ACTIONS(7108), - [anon_sym_GT_GT] = ACTIONS(7108), - [anon_sym___extension__] = ACTIONS(7110), - [anon_sym___attribute__] = ACTIONS(7110), - [anon_sym___attribute] = ACTIONS(7108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), - [anon_sym_LBRACK] = ACTIONS(7108), - [anon_sym_EQ] = ACTIONS(7108), - [anon_sym_const] = ACTIONS(7108), - [anon_sym_constexpr] = ACTIONS(7110), - [anon_sym_volatile] = ACTIONS(7110), - [anon_sym_restrict] = ACTIONS(7110), - [anon_sym___restrict__] = ACTIONS(7110), - [anon_sym__Atomic] = ACTIONS(7110), - [anon_sym__Noreturn] = ACTIONS(7110), - [anon_sym_noreturn] = ACTIONS(7110), - [anon_sym__Nonnull] = ACTIONS(7110), - [anon_sym_mutable] = ACTIONS(7110), - [anon_sym_constinit] = ACTIONS(7110), - [anon_sym_consteval] = ACTIONS(7110), - [anon_sym_alignas] = ACTIONS(7110), - [anon_sym__Alignas] = ACTIONS(7110), - [anon_sym_QMARK] = ACTIONS(7110), - [anon_sym_STAR_EQ] = ACTIONS(7110), - [anon_sym_SLASH_EQ] = ACTIONS(7110), - [anon_sym_PERCENT_EQ] = ACTIONS(7110), - [anon_sym_PLUS_EQ] = ACTIONS(7110), - [anon_sym_DASH_EQ] = ACTIONS(7110), - [anon_sym_LT_LT_EQ] = ACTIONS(7110), - [anon_sym_GT_GT_EQ] = ACTIONS(7110), - [anon_sym_AMP_EQ] = ACTIONS(7110), - [anon_sym_CARET_EQ] = ACTIONS(7110), - [anon_sym_PIPE_EQ] = ACTIONS(7110), - [anon_sym_and_eq] = ACTIONS(7110), - [anon_sym_or_eq] = ACTIONS(7110), - [anon_sym_xor_eq] = ACTIONS(7110), - [anon_sym_LT_EQ_GT] = ACTIONS(7110), - [anon_sym_or] = ACTIONS(7108), - [anon_sym_and] = ACTIONS(7108), - [anon_sym_bitor] = ACTIONS(7110), - [anon_sym_xor] = ACTIONS(7108), - [anon_sym_bitand] = ACTIONS(7110), - [anon_sym_not_eq] = ACTIONS(7110), - [anon_sym_DASH_DASH] = ACTIONS(7110), - [anon_sym_PLUS_PLUS] = ACTIONS(7110), - [anon_sym_asm] = ACTIONS(7110), - [anon_sym___asm__] = ACTIONS(7110), - [anon_sym___asm] = ACTIONS(7108), - [anon_sym_DOT] = ACTIONS(7108), - [anon_sym_DOT_STAR] = ACTIONS(7110), - [anon_sym_DASH_GT] = ACTIONS(7108), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7110), - [anon_sym_override] = ACTIONS(7110), - [anon_sym_noexcept] = ACTIONS(7110), - [anon_sym_throw] = ACTIONS(7110), - [anon_sym_requires] = ACTIONS(7110), - [anon_sym_DASH_GT_STAR] = ACTIONS(7110), + [aux_sym_sized_type_specifier_repeat1] = STATE(2424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7692), + [anon_sym_COMMA] = ACTIONS(7692), + [anon_sym_RPAREN] = ACTIONS(7692), + [anon_sym_LPAREN2] = ACTIONS(7692), + [anon_sym_DASH] = ACTIONS(7690), + [anon_sym_PLUS] = ACTIONS(7690), + [anon_sym_STAR] = ACTIONS(7690), + [anon_sym_SLASH] = ACTIONS(7690), + [anon_sym_PERCENT] = ACTIONS(7690), + [anon_sym_PIPE_PIPE] = ACTIONS(7692), + [anon_sym_AMP_AMP] = ACTIONS(7692), + [anon_sym_PIPE] = ACTIONS(7690), + [anon_sym_CARET] = ACTIONS(7690), + [anon_sym_AMP] = ACTIONS(7690), + [anon_sym_EQ_EQ] = ACTIONS(7692), + [anon_sym_BANG_EQ] = ACTIONS(7692), + [anon_sym_GT] = ACTIONS(7690), + [anon_sym_GT_EQ] = ACTIONS(7692), + [anon_sym_LT_EQ] = ACTIONS(7690), + [anon_sym_LT] = ACTIONS(7690), + [anon_sym_LT_LT] = ACTIONS(7690), + [anon_sym_GT_GT] = ACTIONS(7690), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(7692), + [anon_sym___attribute] = ACTIONS(7690), + [anon_sym_LBRACE] = ACTIONS(7692), + [anon_sym_signed] = ACTIONS(8210), + [anon_sym_unsigned] = ACTIONS(8210), + [anon_sym_long] = ACTIONS(8210), + [anon_sym_short] = ACTIONS(8210), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_EQ] = ACTIONS(7690), + [anon_sym_const] = ACTIONS(7690), + [anon_sym_constexpr] = ACTIONS(7692), + [anon_sym_volatile] = ACTIONS(7692), + [anon_sym_restrict] = ACTIONS(7692), + [anon_sym___restrict__] = ACTIONS(7692), + [anon_sym__Atomic] = ACTIONS(7692), + [anon_sym__Noreturn] = ACTIONS(7692), + [anon_sym_noreturn] = ACTIONS(7692), + [anon_sym__Nonnull] = ACTIONS(7692), + [anon_sym_mutable] = ACTIONS(7692), + [anon_sym_constinit] = ACTIONS(7692), + [anon_sym_consteval] = ACTIONS(7692), + [anon_sym_alignas] = ACTIONS(7692), + [anon_sym__Alignas] = ACTIONS(7692), + [anon_sym_QMARK] = ACTIONS(7692), + [anon_sym_STAR_EQ] = ACTIONS(7692), + [anon_sym_SLASH_EQ] = ACTIONS(7692), + [anon_sym_PERCENT_EQ] = ACTIONS(7692), + [anon_sym_PLUS_EQ] = ACTIONS(7692), + [anon_sym_DASH_EQ] = ACTIONS(7692), + [anon_sym_LT_LT_EQ] = ACTIONS(7692), + [anon_sym_GT_GT_EQ] = ACTIONS(7692), + [anon_sym_AMP_EQ] = ACTIONS(7692), + [anon_sym_CARET_EQ] = ACTIONS(7692), + [anon_sym_PIPE_EQ] = ACTIONS(7692), + [anon_sym_and_eq] = ACTIONS(7692), + [anon_sym_or_eq] = ACTIONS(7692), + [anon_sym_xor_eq] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7692), + [anon_sym_or] = ACTIONS(7690), + [anon_sym_and] = ACTIONS(7690), + [anon_sym_bitor] = ACTIONS(7692), + [anon_sym_xor] = ACTIONS(7690), + [anon_sym_bitand] = ACTIONS(7692), + [anon_sym_not_eq] = ACTIONS(7692), + [anon_sym_DASH_DASH] = ACTIONS(7692), + [anon_sym_PLUS_PLUS] = ACTIONS(7692), + [anon_sym_DOT] = ACTIONS(7690), + [anon_sym_DOT_STAR] = ACTIONS(7692), + [anon_sym_DASH_GT] = ACTIONS(7690), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_DASH_GT_STAR] = ACTIONS(7692), }, [STATE(2421)] = { - [sym_type_qualifier] = STATE(2421), - [sym_alignas_qualifier] = STATE(2636), - [aux_sym__type_definition_type_repeat1] = STATE(2421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_RPAREN] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6889), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6889), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6889), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6889), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(8202), - [anon_sym___attribute__] = ACTIONS(6891), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6889), - [anon_sym_EQ] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(8205), - [anon_sym_constexpr] = ACTIONS(8202), - [anon_sym_volatile] = ACTIONS(8202), - [anon_sym_restrict] = ACTIONS(8202), - [anon_sym___restrict__] = ACTIONS(8202), - [anon_sym__Atomic] = ACTIONS(8202), - [anon_sym__Noreturn] = ACTIONS(8202), - [anon_sym_noreturn] = ACTIONS(8202), - [anon_sym__Nonnull] = ACTIONS(8202), - [anon_sym_mutable] = ACTIONS(8202), - [anon_sym_constinit] = ACTIONS(8202), - [anon_sym_consteval] = ACTIONS(8202), - [anon_sym_alignas] = ACTIONS(8208), - [anon_sym__Alignas] = ACTIONS(8208), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_STAR_EQ] = ACTIONS(6891), - [anon_sym_SLASH_EQ] = ACTIONS(6891), - [anon_sym_PERCENT_EQ] = ACTIONS(6891), - [anon_sym_PLUS_EQ] = ACTIONS(6891), - [anon_sym_DASH_EQ] = ACTIONS(6891), - [anon_sym_LT_LT_EQ] = ACTIONS(6891), - [anon_sym_GT_GT_EQ] = ACTIONS(6891), - [anon_sym_AMP_EQ] = ACTIONS(6891), - [anon_sym_CARET_EQ] = ACTIONS(6891), - [anon_sym_PIPE_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6891), - [anon_sym_and] = ACTIONS(6891), - [anon_sym_bitor] = ACTIONS(6891), - [anon_sym_xor] = ACTIONS(6891), - [anon_sym_bitand] = ACTIONS(6891), - [anon_sym_not_eq] = ACTIONS(6891), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_asm] = ACTIONS(6891), - [anon_sym___asm__] = ACTIONS(6891), - [anon_sym___asm] = ACTIONS(6889), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6889), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6891), - [anon_sym_override] = ACTIONS(6891), - [anon_sym_noexcept] = ACTIONS(6891), - [anon_sym_throw] = ACTIONS(6891), - [anon_sym_requires] = ACTIONS(6891), - [anon_sym_DASH_GT_STAR] = ACTIONS(6891), + [sym_decltype_auto] = STATE(3545), + [sym_template_argument_list] = STATE(2630), + [aux_sym_sized_type_specifier_repeat1] = STATE(2604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5617), + [anon_sym_RPAREN] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5609), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_PERCENT] = ACTIONS(5609), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5609), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_EQ_EQ] = ACTIONS(5617), + [anon_sym_BANG_EQ] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_GT_EQ] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(8212), + [anon_sym_LT_LT] = ACTIONS(5609), + [anon_sym_GT_GT] = ACTIONS(5609), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(6956), + [anon_sym_unsigned] = ACTIONS(6956), + [anon_sym_long] = ACTIONS(6956), + [anon_sym_short] = ACTIONS(6956), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_EQ] = ACTIONS(5609), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_STAR_EQ] = ACTIONS(5617), + [anon_sym_SLASH_EQ] = ACTIONS(5617), + [anon_sym_PERCENT_EQ] = ACTIONS(5617), + [anon_sym_PLUS_EQ] = ACTIONS(5617), + [anon_sym_DASH_EQ] = ACTIONS(5617), + [anon_sym_LT_LT_EQ] = ACTIONS(5617), + [anon_sym_GT_GT_EQ] = ACTIONS(5617), + [anon_sym_AMP_EQ] = ACTIONS(5617), + [anon_sym_CARET_EQ] = ACTIONS(5617), + [anon_sym_PIPE_EQ] = ACTIONS(5617), + [anon_sym_LT_EQ_GT] = ACTIONS(5617), + [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(5617), + [anon_sym_PLUS_PLUS] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_DOT_STAR] = ACTIONS(5617), + [anon_sym_DASH_GT] = ACTIONS(5609), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6960), + [anon_sym_decltype] = ACTIONS(6962), + [anon_sym_final] = ACTIONS(5617), + [anon_sym_override] = ACTIONS(5617), + [anon_sym_requires] = ACTIONS(5617), + [anon_sym_DASH_GT_STAR] = ACTIONS(5617), }, [STATE(2422)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), - [anon_sym_COMMA] = ACTIONS(7725), - [anon_sym_RPAREN] = ACTIONS(7725), - [anon_sym_LPAREN2] = ACTIONS(7725), - [anon_sym_DASH] = ACTIONS(7723), - [anon_sym_PLUS] = ACTIONS(7723), - [anon_sym_STAR] = ACTIONS(7723), - [anon_sym_SLASH] = ACTIONS(7723), - [anon_sym_PERCENT] = ACTIONS(7723), - [anon_sym_PIPE_PIPE] = ACTIONS(7725), - [anon_sym_AMP_AMP] = ACTIONS(7725), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_CARET] = ACTIONS(7723), - [anon_sym_AMP] = ACTIONS(7723), - [anon_sym_EQ_EQ] = ACTIONS(7725), - [anon_sym_BANG_EQ] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_EQ] = ACTIONS(7725), - [anon_sym_LT_EQ] = ACTIONS(7723), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_LT_LT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7723), - [anon_sym___extension__] = ACTIONS(7725), - [anon_sym___attribute__] = ACTIONS(7725), - [anon_sym___attribute] = ACTIONS(7723), - [anon_sym_LBRACE] = ACTIONS(7725), - [anon_sym_signed] = ACTIONS(8196), - [anon_sym_unsigned] = ACTIONS(8196), - [anon_sym_long] = ACTIONS(8196), - [anon_sym_short] = ACTIONS(8196), - [anon_sym_LBRACK] = ACTIONS(7725), - [anon_sym_EQ] = ACTIONS(7723), - [anon_sym_const] = ACTIONS(7723), - [anon_sym_constexpr] = ACTIONS(7725), - [anon_sym_volatile] = ACTIONS(7725), - [anon_sym_restrict] = ACTIONS(7725), - [anon_sym___restrict__] = ACTIONS(7725), - [anon_sym__Atomic] = ACTIONS(7725), - [anon_sym__Noreturn] = ACTIONS(7725), - [anon_sym_noreturn] = ACTIONS(7725), - [anon_sym__Nonnull] = ACTIONS(7725), - [anon_sym_mutable] = ACTIONS(7725), - [anon_sym_constinit] = ACTIONS(7725), - [anon_sym_consteval] = ACTIONS(7725), - [anon_sym_alignas] = ACTIONS(7725), - [anon_sym__Alignas] = ACTIONS(7725), - [anon_sym_QMARK] = ACTIONS(7725), - [anon_sym_STAR_EQ] = ACTIONS(7725), - [anon_sym_SLASH_EQ] = ACTIONS(7725), - [anon_sym_PERCENT_EQ] = ACTIONS(7725), - [anon_sym_PLUS_EQ] = ACTIONS(7725), - [anon_sym_DASH_EQ] = ACTIONS(7725), - [anon_sym_LT_LT_EQ] = ACTIONS(7725), - [anon_sym_GT_GT_EQ] = ACTIONS(7725), - [anon_sym_AMP_EQ] = ACTIONS(7725), - [anon_sym_CARET_EQ] = ACTIONS(7725), - [anon_sym_PIPE_EQ] = ACTIONS(7725), - [anon_sym_and_eq] = ACTIONS(7725), - [anon_sym_or_eq] = ACTIONS(7725), - [anon_sym_xor_eq] = ACTIONS(7725), - [anon_sym_LT_EQ_GT] = ACTIONS(7725), - [anon_sym_or] = ACTIONS(7723), - [anon_sym_and] = ACTIONS(7723), - [anon_sym_bitor] = ACTIONS(7725), - [anon_sym_xor] = ACTIONS(7723), - [anon_sym_bitand] = ACTIONS(7725), - [anon_sym_not_eq] = ACTIONS(7725), - [anon_sym_DASH_DASH] = ACTIONS(7725), - [anon_sym_PLUS_PLUS] = ACTIONS(7725), - [anon_sym_DOT] = ACTIONS(7723), - [anon_sym_DOT_STAR] = ACTIONS(7725), - [anon_sym_DASH_GT] = ACTIONS(7723), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7725), - [anon_sym_override] = ACTIONS(7725), - [anon_sym_requires] = ACTIONS(7725), - [anon_sym_DASH_GT_STAR] = ACTIONS(7725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7150), + [anon_sym_COMMA] = ACTIONS(7150), + [anon_sym_RPAREN] = ACTIONS(7150), + [anon_sym_LPAREN2] = ACTIONS(7150), + [anon_sym_DASH] = ACTIONS(7148), + [anon_sym_PLUS] = ACTIONS(7148), + [anon_sym_STAR] = ACTIONS(7148), + [anon_sym_SLASH] = ACTIONS(7148), + [anon_sym_PERCENT] = ACTIONS(7148), + [anon_sym_PIPE_PIPE] = ACTIONS(7150), + [anon_sym_AMP_AMP] = ACTIONS(7150), + [anon_sym_PIPE] = ACTIONS(7148), + [anon_sym_CARET] = ACTIONS(7148), + [anon_sym_AMP] = ACTIONS(7148), + [anon_sym_EQ_EQ] = ACTIONS(7150), + [anon_sym_BANG_EQ] = ACTIONS(7150), + [anon_sym_GT] = ACTIONS(7148), + [anon_sym_GT_EQ] = ACTIONS(7150), + [anon_sym_LT_EQ] = ACTIONS(7148), + [anon_sym_LT] = ACTIONS(7148), + [anon_sym_LT_LT] = ACTIONS(7148), + [anon_sym_GT_GT] = ACTIONS(7148), + [anon_sym___extension__] = ACTIONS(7150), + [anon_sym___attribute__] = ACTIONS(7150), + [anon_sym___attribute] = ACTIONS(7148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7148), + [anon_sym_EQ] = ACTIONS(7148), + [anon_sym_const] = ACTIONS(7148), + [anon_sym_constexpr] = ACTIONS(7150), + [anon_sym_volatile] = ACTIONS(7150), + [anon_sym_restrict] = ACTIONS(7150), + [anon_sym___restrict__] = ACTIONS(7150), + [anon_sym__Atomic] = ACTIONS(7150), + [anon_sym__Noreturn] = ACTIONS(7150), + [anon_sym_noreturn] = ACTIONS(7150), + [anon_sym__Nonnull] = ACTIONS(7150), + [anon_sym_mutable] = ACTIONS(7150), + [anon_sym_constinit] = ACTIONS(7150), + [anon_sym_consteval] = ACTIONS(7150), + [anon_sym_alignas] = ACTIONS(7150), + [anon_sym__Alignas] = ACTIONS(7150), + [anon_sym_QMARK] = ACTIONS(7150), + [anon_sym_STAR_EQ] = ACTIONS(7150), + [anon_sym_SLASH_EQ] = ACTIONS(7150), + [anon_sym_PERCENT_EQ] = ACTIONS(7150), + [anon_sym_PLUS_EQ] = ACTIONS(7150), + [anon_sym_DASH_EQ] = ACTIONS(7150), + [anon_sym_LT_LT_EQ] = ACTIONS(7150), + [anon_sym_GT_GT_EQ] = ACTIONS(7150), + [anon_sym_AMP_EQ] = ACTIONS(7150), + [anon_sym_CARET_EQ] = ACTIONS(7150), + [anon_sym_PIPE_EQ] = ACTIONS(7150), + [anon_sym_and_eq] = ACTIONS(7150), + [anon_sym_or_eq] = ACTIONS(7150), + [anon_sym_xor_eq] = ACTIONS(7150), + [anon_sym_LT_EQ_GT] = ACTIONS(7150), + [anon_sym_or] = ACTIONS(7148), + [anon_sym_and] = ACTIONS(7148), + [anon_sym_bitor] = ACTIONS(7150), + [anon_sym_xor] = ACTIONS(7148), + [anon_sym_bitand] = ACTIONS(7150), + [anon_sym_not_eq] = ACTIONS(7150), + [anon_sym_DASH_DASH] = ACTIONS(7150), + [anon_sym_PLUS_PLUS] = ACTIONS(7150), + [anon_sym_asm] = ACTIONS(7150), + [anon_sym___asm__] = ACTIONS(7150), + [anon_sym___asm] = ACTIONS(7148), + [anon_sym_DOT] = ACTIONS(7148), + [anon_sym_DOT_STAR] = ACTIONS(7150), + [anon_sym_DASH_GT] = ACTIONS(7148), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7150), + [anon_sym_override] = ACTIONS(7150), + [anon_sym_noexcept] = ACTIONS(7150), + [anon_sym_throw] = ACTIONS(7150), + [anon_sym_requires] = ACTIONS(7150), + [anon_sym_DASH_GT_STAR] = ACTIONS(7150), }, [STATE(2423)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3128), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_EQ] = 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_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3128), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_and_eq] = ACTIONS(3128), - [anon_sym_or_eq] = ACTIONS(3128), - [anon_sym_xor_eq] = ACTIONS(3128), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3128), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3128), - [anon_sym_not_eq] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_GT2] = ACTIONS(3118), - [anon_sym_requires] = ACTIONS(3128), + [aux_sym_sized_type_specifier_repeat1] = STATE(2328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [anon_sym_RPAREN] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7731), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7731), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7731), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7731), + [anon_sym_GT_GT] = ACTIONS(7731), + [anon_sym___extension__] = ACTIONS(7733), + [anon_sym___attribute__] = ACTIONS(7733), + [anon_sym___attribute] = ACTIONS(7731), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_signed] = ACTIONS(8202), + [anon_sym_unsigned] = ACTIONS(8202), + [anon_sym_long] = ACTIONS(8202), + [anon_sym_short] = ACTIONS(8202), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(7731), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7733), + [anon_sym_volatile] = ACTIONS(7733), + [anon_sym_restrict] = ACTIONS(7733), + [anon_sym___restrict__] = ACTIONS(7733), + [anon_sym__Atomic] = ACTIONS(7733), + [anon_sym__Noreturn] = ACTIONS(7733), + [anon_sym_noreturn] = ACTIONS(7733), + [anon_sym__Nonnull] = ACTIONS(7733), + [anon_sym_mutable] = ACTIONS(7733), + [anon_sym_constinit] = ACTIONS(7733), + [anon_sym_consteval] = ACTIONS(7733), + [anon_sym_alignas] = ACTIONS(7733), + [anon_sym__Alignas] = ACTIONS(7733), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_STAR_EQ] = ACTIONS(7733), + [anon_sym_SLASH_EQ] = ACTIONS(7733), + [anon_sym_PERCENT_EQ] = ACTIONS(7733), + [anon_sym_PLUS_EQ] = ACTIONS(7733), + [anon_sym_DASH_EQ] = ACTIONS(7733), + [anon_sym_LT_LT_EQ] = ACTIONS(7733), + [anon_sym_GT_GT_EQ] = ACTIONS(7733), + [anon_sym_AMP_EQ] = ACTIONS(7733), + [anon_sym_CARET_EQ] = ACTIONS(7733), + [anon_sym_PIPE_EQ] = ACTIONS(7733), + [anon_sym_and_eq] = ACTIONS(7733), + [anon_sym_or_eq] = ACTIONS(7733), + [anon_sym_xor_eq] = ACTIONS(7733), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7731), + [anon_sym_and] = ACTIONS(7731), + [anon_sym_bitor] = ACTIONS(7733), + [anon_sym_xor] = ACTIONS(7731), + [anon_sym_bitand] = ACTIONS(7733), + [anon_sym_not_eq] = ACTIONS(7733), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7731), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7733), + [anon_sym_override] = ACTIONS(7733), + [anon_sym_requires] = ACTIONS(7733), + [anon_sym_DASH_GT_STAR] = ACTIONS(7733), }, [STATE(2424)] = { - [sym__abstract_declarator] = STATE(5243), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2270), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1974), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2270), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_RPAREN] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7349), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7351), + [aux_sym_sized_type_specifier_repeat1] = STATE(2328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [anon_sym_RPAREN] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7739), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7739), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7739), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7739), + [anon_sym_GT_GT] = ACTIONS(7739), + [anon_sym___extension__] = ACTIONS(7741), + [anon_sym___attribute__] = ACTIONS(7741), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_signed] = ACTIONS(8202), + [anon_sym_unsigned] = ACTIONS(8202), + [anon_sym_long] = ACTIONS(8202), + [anon_sym_short] = ACTIONS(8202), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7741), + [anon_sym_volatile] = ACTIONS(7741), + [anon_sym_restrict] = ACTIONS(7741), + [anon_sym___restrict__] = ACTIONS(7741), + [anon_sym__Atomic] = ACTIONS(7741), + [anon_sym__Noreturn] = ACTIONS(7741), + [anon_sym_noreturn] = ACTIONS(7741), + [anon_sym__Nonnull] = ACTIONS(7741), + [anon_sym_mutable] = ACTIONS(7741), + [anon_sym_constinit] = ACTIONS(7741), + [anon_sym_consteval] = ACTIONS(7741), + [anon_sym_alignas] = ACTIONS(7741), + [anon_sym__Alignas] = ACTIONS(7741), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_STAR_EQ] = ACTIONS(7741), + [anon_sym_SLASH_EQ] = ACTIONS(7741), + [anon_sym_PERCENT_EQ] = ACTIONS(7741), + [anon_sym_PLUS_EQ] = ACTIONS(7741), + [anon_sym_DASH_EQ] = ACTIONS(7741), + [anon_sym_LT_LT_EQ] = ACTIONS(7741), + [anon_sym_GT_GT_EQ] = ACTIONS(7741), + [anon_sym_AMP_EQ] = ACTIONS(7741), + [anon_sym_CARET_EQ] = ACTIONS(7741), + [anon_sym_PIPE_EQ] = ACTIONS(7741), + [anon_sym_and_eq] = ACTIONS(7741), + [anon_sym_or_eq] = ACTIONS(7741), + [anon_sym_xor_eq] = ACTIONS(7741), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7739), + [anon_sym_and] = ACTIONS(7739), + [anon_sym_bitor] = ACTIONS(7741), + [anon_sym_xor] = ACTIONS(7739), + [anon_sym_bitand] = ACTIONS(7741), + [anon_sym_not_eq] = ACTIONS(7741), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7739), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7741), + [anon_sym_override] = ACTIONS(7741), + [anon_sym_requires] = ACTIONS(7741), + [anon_sym_DASH_GT_STAR] = ACTIONS(7741), }, [STATE(2425)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_RPAREN] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7717), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7717), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7717), - [anon_sym_GT_GT] = ACTIONS(7717), - [anon_sym___extension__] = ACTIONS(7719), - [anon_sym___attribute__] = ACTIONS(7719), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_signed] = ACTIONS(8211), - [anon_sym_unsigned] = ACTIONS(8211), - [anon_sym_long] = ACTIONS(8211), - [anon_sym_short] = ACTIONS(8211), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(7717), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7719), - [anon_sym_volatile] = ACTIONS(7719), - [anon_sym_restrict] = ACTIONS(7719), - [anon_sym___restrict__] = ACTIONS(7719), - [anon_sym__Atomic] = ACTIONS(7719), - [anon_sym__Noreturn] = ACTIONS(7719), - [anon_sym_noreturn] = ACTIONS(7719), - [anon_sym__Nonnull] = ACTIONS(7719), - [anon_sym_mutable] = ACTIONS(7719), - [anon_sym_constinit] = ACTIONS(7719), - [anon_sym_consteval] = ACTIONS(7719), - [anon_sym_alignas] = ACTIONS(7719), - [anon_sym__Alignas] = ACTIONS(7719), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_STAR_EQ] = ACTIONS(7719), - [anon_sym_SLASH_EQ] = ACTIONS(7719), - [anon_sym_PERCENT_EQ] = ACTIONS(7719), - [anon_sym_PLUS_EQ] = ACTIONS(7719), - [anon_sym_DASH_EQ] = ACTIONS(7719), - [anon_sym_LT_LT_EQ] = ACTIONS(7719), - [anon_sym_GT_GT_EQ] = ACTIONS(7719), - [anon_sym_AMP_EQ] = ACTIONS(7719), - [anon_sym_CARET_EQ] = ACTIONS(7719), - [anon_sym_PIPE_EQ] = ACTIONS(7719), - [anon_sym_and_eq] = ACTIONS(7719), - [anon_sym_or_eq] = ACTIONS(7719), - [anon_sym_xor_eq] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7717), - [anon_sym_and] = ACTIONS(7717), - [anon_sym_bitor] = ACTIONS(7719), - [anon_sym_xor] = ACTIONS(7717), - [anon_sym_bitand] = ACTIONS(7719), - [anon_sym_not_eq] = ACTIONS(7719), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7717), + [aux_sym_sized_type_specifier_repeat1] = STATE(2429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_RPAREN] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7755), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7755), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7755), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7755), + [anon_sym_GT_GT] = ACTIONS(7755), + [anon_sym___extension__] = ACTIONS(7757), + [anon_sym___attribute__] = ACTIONS(7757), + [anon_sym___attribute] = ACTIONS(7755), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_signed] = ACTIONS(8214), + [anon_sym_unsigned] = ACTIONS(8214), + [anon_sym_long] = ACTIONS(8214), + [anon_sym_short] = ACTIONS(8214), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7757), + [anon_sym_volatile] = ACTIONS(7757), + [anon_sym_restrict] = ACTIONS(7757), + [anon_sym___restrict__] = ACTIONS(7757), + [anon_sym__Atomic] = ACTIONS(7757), + [anon_sym__Noreturn] = ACTIONS(7757), + [anon_sym_noreturn] = ACTIONS(7757), + [anon_sym__Nonnull] = ACTIONS(7757), + [anon_sym_mutable] = ACTIONS(7757), + [anon_sym_constinit] = ACTIONS(7757), + [anon_sym_consteval] = ACTIONS(7757), + [anon_sym_alignas] = ACTIONS(7757), + [anon_sym__Alignas] = ACTIONS(7757), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_STAR_EQ] = ACTIONS(7757), + [anon_sym_SLASH_EQ] = ACTIONS(7757), + [anon_sym_PERCENT_EQ] = ACTIONS(7757), + [anon_sym_PLUS_EQ] = ACTIONS(7757), + [anon_sym_DASH_EQ] = ACTIONS(7757), + [anon_sym_LT_LT_EQ] = ACTIONS(7757), + [anon_sym_GT_GT_EQ] = ACTIONS(7757), + [anon_sym_AMP_EQ] = ACTIONS(7757), + [anon_sym_CARET_EQ] = ACTIONS(7757), + [anon_sym_PIPE_EQ] = ACTIONS(7757), + [anon_sym_and_eq] = ACTIONS(7757), + [anon_sym_or_eq] = ACTIONS(7757), + [anon_sym_xor_eq] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7755), + [anon_sym_and] = ACTIONS(7755), + [anon_sym_bitor] = ACTIONS(7757), + [anon_sym_xor] = ACTIONS(7755), + [anon_sym_bitand] = ACTIONS(7757), + [anon_sym_not_eq] = ACTIONS(7757), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7755), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7719), - [anon_sym_override] = ACTIONS(7719), - [anon_sym_requires] = ACTIONS(7719), - [anon_sym_DASH_GT_STAR] = ACTIONS(7719), + [anon_sym_final] = ACTIONS(7757), + [anon_sym_override] = ACTIONS(7757), + [anon_sym_requires] = ACTIONS(7757), + [anon_sym_DASH_GT_STAR] = ACTIONS(7757), }, [STATE(2426)] = { - [sym__abstract_declarator] = STATE(5152), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2424), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1974), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_RPAREN] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7391), - [anon_sym_or_eq] = ACTIONS(7391), - [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7393), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7391), + [aux_sym_sized_type_specifier_repeat1] = STATE(2430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7771), + [anon_sym_COMMA] = ACTIONS(7771), + [anon_sym_RPAREN] = ACTIONS(7771), + [anon_sym_LPAREN2] = ACTIONS(7771), + [anon_sym_DASH] = ACTIONS(7769), + [anon_sym_PLUS] = ACTIONS(7769), + [anon_sym_STAR] = ACTIONS(7769), + [anon_sym_SLASH] = ACTIONS(7769), + [anon_sym_PERCENT] = ACTIONS(7769), + [anon_sym_PIPE_PIPE] = ACTIONS(7771), + [anon_sym_AMP_AMP] = ACTIONS(7771), + [anon_sym_PIPE] = ACTIONS(7769), + [anon_sym_CARET] = ACTIONS(7769), + [anon_sym_AMP] = ACTIONS(7769), + [anon_sym_EQ_EQ] = ACTIONS(7771), + [anon_sym_BANG_EQ] = ACTIONS(7771), + [anon_sym_GT] = ACTIONS(7769), + [anon_sym_GT_EQ] = ACTIONS(7771), + [anon_sym_LT_EQ] = ACTIONS(7769), + [anon_sym_LT] = ACTIONS(7769), + [anon_sym_LT_LT] = ACTIONS(7769), + [anon_sym_GT_GT] = ACTIONS(7769), + [anon_sym___extension__] = ACTIONS(7771), + [anon_sym___attribute__] = ACTIONS(7771), + [anon_sym___attribute] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7771), + [anon_sym_signed] = ACTIONS(8216), + [anon_sym_unsigned] = ACTIONS(8216), + [anon_sym_long] = ACTIONS(8216), + [anon_sym_short] = ACTIONS(8216), + [anon_sym_LBRACK] = ACTIONS(7771), + [anon_sym_EQ] = ACTIONS(7769), + [anon_sym_const] = ACTIONS(7769), + [anon_sym_constexpr] = ACTIONS(7771), + [anon_sym_volatile] = ACTIONS(7771), + [anon_sym_restrict] = ACTIONS(7771), + [anon_sym___restrict__] = ACTIONS(7771), + [anon_sym__Atomic] = ACTIONS(7771), + [anon_sym__Noreturn] = ACTIONS(7771), + [anon_sym_noreturn] = ACTIONS(7771), + [anon_sym__Nonnull] = ACTIONS(7771), + [anon_sym_mutable] = ACTIONS(7771), + [anon_sym_constinit] = ACTIONS(7771), + [anon_sym_consteval] = ACTIONS(7771), + [anon_sym_alignas] = ACTIONS(7771), + [anon_sym__Alignas] = ACTIONS(7771), + [anon_sym_QMARK] = ACTIONS(7771), + [anon_sym_STAR_EQ] = ACTIONS(7771), + [anon_sym_SLASH_EQ] = ACTIONS(7771), + [anon_sym_PERCENT_EQ] = ACTIONS(7771), + [anon_sym_PLUS_EQ] = ACTIONS(7771), + [anon_sym_DASH_EQ] = ACTIONS(7771), + [anon_sym_LT_LT_EQ] = ACTIONS(7771), + [anon_sym_GT_GT_EQ] = ACTIONS(7771), + [anon_sym_AMP_EQ] = ACTIONS(7771), + [anon_sym_CARET_EQ] = ACTIONS(7771), + [anon_sym_PIPE_EQ] = ACTIONS(7771), + [anon_sym_and_eq] = ACTIONS(7771), + [anon_sym_or_eq] = ACTIONS(7771), + [anon_sym_xor_eq] = ACTIONS(7771), + [anon_sym_LT_EQ_GT] = ACTIONS(7771), + [anon_sym_or] = ACTIONS(7769), + [anon_sym_and] = ACTIONS(7769), + [anon_sym_bitor] = ACTIONS(7771), + [anon_sym_xor] = ACTIONS(7769), + [anon_sym_bitand] = ACTIONS(7771), + [anon_sym_not_eq] = ACTIONS(7771), + [anon_sym_DASH_DASH] = ACTIONS(7771), + [anon_sym_PLUS_PLUS] = ACTIONS(7771), + [anon_sym_DOT] = ACTIONS(7769), + [anon_sym_DOT_STAR] = ACTIONS(7771), + [anon_sym_DASH_GT] = ACTIONS(7769), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_DASH_GT_STAR] = ACTIONS(7771), }, [STATE(2427)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), - [anon_sym_COMMA] = ACTIONS(7557), - [anon_sym_RPAREN] = ACTIONS(7557), - [anon_sym_LPAREN2] = ACTIONS(7557), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_STAR] = ACTIONS(7555), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_PERCENT] = ACTIONS(7555), - [anon_sym_PIPE_PIPE] = ACTIONS(7557), - [anon_sym_AMP_AMP] = ACTIONS(7557), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_CARET] = ACTIONS(7555), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_EQ_EQ] = ACTIONS(7557), - [anon_sym_BANG_EQ] = ACTIONS(7557), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7557), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_LT_LT] = ACTIONS(7555), - [anon_sym_GT_GT] = ACTIONS(7555), - [anon_sym___extension__] = ACTIONS(7557), - [anon_sym___attribute__] = ACTIONS(7557), - [anon_sym___attribute] = ACTIONS(7555), - [anon_sym_LBRACE] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(8213), - [anon_sym_unsigned] = ACTIONS(8213), - [anon_sym_long] = ACTIONS(8213), - [anon_sym_short] = ACTIONS(8213), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_EQ] = ACTIONS(7555), - [anon_sym_const] = ACTIONS(7555), - [anon_sym_constexpr] = ACTIONS(7557), - [anon_sym_volatile] = ACTIONS(7557), - [anon_sym_restrict] = ACTIONS(7557), - [anon_sym___restrict__] = ACTIONS(7557), - [anon_sym__Atomic] = ACTIONS(7557), - [anon_sym__Noreturn] = ACTIONS(7557), - [anon_sym_noreturn] = ACTIONS(7557), - [anon_sym__Nonnull] = ACTIONS(7557), - [anon_sym_mutable] = ACTIONS(7557), - [anon_sym_constinit] = ACTIONS(7557), - [anon_sym_consteval] = ACTIONS(7557), - [anon_sym_alignas] = ACTIONS(7557), - [anon_sym__Alignas] = ACTIONS(7557), - [anon_sym_QMARK] = ACTIONS(7557), - [anon_sym_STAR_EQ] = ACTIONS(7557), - [anon_sym_SLASH_EQ] = ACTIONS(7557), - [anon_sym_PERCENT_EQ] = ACTIONS(7557), - [anon_sym_PLUS_EQ] = ACTIONS(7557), - [anon_sym_DASH_EQ] = ACTIONS(7557), - [anon_sym_LT_LT_EQ] = ACTIONS(7557), - [anon_sym_GT_GT_EQ] = ACTIONS(7557), - [anon_sym_AMP_EQ] = ACTIONS(7557), - [anon_sym_CARET_EQ] = ACTIONS(7557), - [anon_sym_PIPE_EQ] = ACTIONS(7557), - [anon_sym_and_eq] = ACTIONS(7557), - [anon_sym_or_eq] = ACTIONS(7557), - [anon_sym_xor_eq] = ACTIONS(7557), - [anon_sym_LT_EQ_GT] = ACTIONS(7557), - [anon_sym_or] = ACTIONS(7555), - [anon_sym_and] = ACTIONS(7555), - [anon_sym_bitor] = ACTIONS(7557), - [anon_sym_xor] = ACTIONS(7555), - [anon_sym_bitand] = ACTIONS(7557), - [anon_sym_not_eq] = ACTIONS(7557), - [anon_sym_DASH_DASH] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7557), - [anon_sym_DOT] = ACTIONS(7555), - [anon_sym_DOT_STAR] = ACTIONS(7557), - [anon_sym_DASH_GT] = ACTIONS(7555), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_requires] = ACTIONS(7557), - [anon_sym_DASH_GT_STAR] = ACTIONS(7557), + [aux_sym_sized_type_specifier_repeat1] = STATE(2328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7562), + [anon_sym_COMMA] = ACTIONS(7562), + [anon_sym_RPAREN] = ACTIONS(7562), + [anon_sym_LPAREN2] = ACTIONS(7562), + [anon_sym_DASH] = ACTIONS(7560), + [anon_sym_PLUS] = ACTIONS(7560), + [anon_sym_STAR] = ACTIONS(7560), + [anon_sym_SLASH] = ACTIONS(7560), + [anon_sym_PERCENT] = ACTIONS(7560), + [anon_sym_PIPE_PIPE] = ACTIONS(7562), + [anon_sym_AMP_AMP] = ACTIONS(7562), + [anon_sym_PIPE] = ACTIONS(7560), + [anon_sym_CARET] = ACTIONS(7560), + [anon_sym_AMP] = ACTIONS(7560), + [anon_sym_EQ_EQ] = ACTIONS(7562), + [anon_sym_BANG_EQ] = ACTIONS(7562), + [anon_sym_GT] = ACTIONS(7560), + [anon_sym_GT_EQ] = ACTIONS(7562), + [anon_sym_LT_EQ] = ACTIONS(7560), + [anon_sym_LT] = ACTIONS(7560), + [anon_sym_LT_LT] = ACTIONS(7560), + [anon_sym_GT_GT] = ACTIONS(7560), + [anon_sym___extension__] = ACTIONS(7562), + [anon_sym___attribute__] = ACTIONS(7562), + [anon_sym___attribute] = ACTIONS(7560), + [anon_sym_LBRACE] = ACTIONS(7562), + [anon_sym_signed] = ACTIONS(8202), + [anon_sym_unsigned] = ACTIONS(8202), + [anon_sym_long] = ACTIONS(8202), + [anon_sym_short] = ACTIONS(8202), + [anon_sym_LBRACK] = ACTIONS(7562), + [anon_sym_EQ] = ACTIONS(7560), + [anon_sym_const] = ACTIONS(7560), + [anon_sym_constexpr] = ACTIONS(7562), + [anon_sym_volatile] = ACTIONS(7562), + [anon_sym_restrict] = ACTIONS(7562), + [anon_sym___restrict__] = ACTIONS(7562), + [anon_sym__Atomic] = ACTIONS(7562), + [anon_sym__Noreturn] = ACTIONS(7562), + [anon_sym_noreturn] = ACTIONS(7562), + [anon_sym__Nonnull] = ACTIONS(7562), + [anon_sym_mutable] = ACTIONS(7562), + [anon_sym_constinit] = ACTIONS(7562), + [anon_sym_consteval] = ACTIONS(7562), + [anon_sym_alignas] = ACTIONS(7562), + [anon_sym__Alignas] = ACTIONS(7562), + [anon_sym_QMARK] = ACTIONS(7562), + [anon_sym_STAR_EQ] = ACTIONS(7562), + [anon_sym_SLASH_EQ] = ACTIONS(7562), + [anon_sym_PERCENT_EQ] = ACTIONS(7562), + [anon_sym_PLUS_EQ] = ACTIONS(7562), + [anon_sym_DASH_EQ] = ACTIONS(7562), + [anon_sym_LT_LT_EQ] = ACTIONS(7562), + [anon_sym_GT_GT_EQ] = ACTIONS(7562), + [anon_sym_AMP_EQ] = ACTIONS(7562), + [anon_sym_CARET_EQ] = ACTIONS(7562), + [anon_sym_PIPE_EQ] = ACTIONS(7562), + [anon_sym_and_eq] = ACTIONS(7562), + [anon_sym_or_eq] = ACTIONS(7562), + [anon_sym_xor_eq] = ACTIONS(7562), + [anon_sym_LT_EQ_GT] = ACTIONS(7562), + [anon_sym_or] = ACTIONS(7560), + [anon_sym_and] = ACTIONS(7560), + [anon_sym_bitor] = ACTIONS(7562), + [anon_sym_xor] = ACTIONS(7560), + [anon_sym_bitand] = ACTIONS(7562), + [anon_sym_not_eq] = ACTIONS(7562), + [anon_sym_DASH_DASH] = ACTIONS(7562), + [anon_sym_PLUS_PLUS] = ACTIONS(7562), + [anon_sym_DOT] = ACTIONS(7560), + [anon_sym_DOT_STAR] = ACTIONS(7562), + [anon_sym_DASH_GT] = ACTIONS(7560), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7562), + [anon_sym_override] = ACTIONS(7562), + [anon_sym_requires] = ACTIONS(7562), + [anon_sym_DASH_GT_STAR] = ACTIONS(7562), }, [STATE(2428)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2414), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), - [anon_sym_COMMA] = ACTIONS(7785), - [anon_sym_RPAREN] = ACTIONS(7785), - [anon_sym_LPAREN2] = ACTIONS(7785), - [anon_sym_DASH] = ACTIONS(7783), - [anon_sym_PLUS] = ACTIONS(7783), - [anon_sym_STAR] = ACTIONS(7783), - [anon_sym_SLASH] = ACTIONS(7783), - [anon_sym_PERCENT] = ACTIONS(7783), - [anon_sym_PIPE_PIPE] = ACTIONS(7785), - [anon_sym_AMP_AMP] = ACTIONS(7785), - [anon_sym_PIPE] = ACTIONS(7783), - [anon_sym_CARET] = ACTIONS(7783), - [anon_sym_AMP] = ACTIONS(7783), - [anon_sym_EQ_EQ] = ACTIONS(7785), - [anon_sym_BANG_EQ] = ACTIONS(7785), - [anon_sym_GT] = ACTIONS(7783), - [anon_sym_GT_EQ] = ACTIONS(7785), - [anon_sym_LT_EQ] = ACTIONS(7783), - [anon_sym_LT] = ACTIONS(7783), - [anon_sym_LT_LT] = ACTIONS(7783), - [anon_sym_GT_GT] = ACTIONS(7783), - [anon_sym___extension__] = ACTIONS(7785), - [anon_sym___attribute__] = ACTIONS(7785), - [anon_sym___attribute] = ACTIONS(7783), - [anon_sym_LBRACE] = ACTIONS(7785), - [anon_sym_signed] = ACTIONS(8215), - [anon_sym_unsigned] = ACTIONS(8215), - [anon_sym_long] = ACTIONS(8215), - [anon_sym_short] = ACTIONS(8215), - [anon_sym_LBRACK] = ACTIONS(7785), - [anon_sym_EQ] = ACTIONS(7783), - [anon_sym_const] = ACTIONS(7783), - [anon_sym_constexpr] = ACTIONS(7785), - [anon_sym_volatile] = ACTIONS(7785), - [anon_sym_restrict] = ACTIONS(7785), - [anon_sym___restrict__] = ACTIONS(7785), - [anon_sym__Atomic] = ACTIONS(7785), - [anon_sym__Noreturn] = ACTIONS(7785), - [anon_sym_noreturn] = ACTIONS(7785), - [anon_sym__Nonnull] = ACTIONS(7785), - [anon_sym_mutable] = ACTIONS(7785), - [anon_sym_constinit] = ACTIONS(7785), - [anon_sym_consteval] = ACTIONS(7785), - [anon_sym_alignas] = ACTIONS(7785), - [anon_sym__Alignas] = ACTIONS(7785), - [anon_sym_QMARK] = ACTIONS(7785), - [anon_sym_STAR_EQ] = ACTIONS(7785), - [anon_sym_SLASH_EQ] = ACTIONS(7785), - [anon_sym_PERCENT_EQ] = ACTIONS(7785), - [anon_sym_PLUS_EQ] = ACTIONS(7785), - [anon_sym_DASH_EQ] = ACTIONS(7785), - [anon_sym_LT_LT_EQ] = ACTIONS(7785), - [anon_sym_GT_GT_EQ] = ACTIONS(7785), - [anon_sym_AMP_EQ] = ACTIONS(7785), - [anon_sym_CARET_EQ] = ACTIONS(7785), - [anon_sym_PIPE_EQ] = ACTIONS(7785), - [anon_sym_and_eq] = ACTIONS(7785), - [anon_sym_or_eq] = ACTIONS(7785), - [anon_sym_xor_eq] = ACTIONS(7785), - [anon_sym_LT_EQ_GT] = ACTIONS(7785), - [anon_sym_or] = ACTIONS(7783), - [anon_sym_and] = ACTIONS(7783), - [anon_sym_bitor] = ACTIONS(7785), - [anon_sym_xor] = ACTIONS(7783), - [anon_sym_bitand] = ACTIONS(7785), - [anon_sym_not_eq] = ACTIONS(7785), - [anon_sym_DASH_DASH] = ACTIONS(7785), - [anon_sym_PLUS_PLUS] = ACTIONS(7785), - [anon_sym_DOT] = ACTIONS(7783), - [anon_sym_DOT_STAR] = ACTIONS(7785), - [anon_sym_DASH_GT] = ACTIONS(7783), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7785), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_requires] = ACTIONS(7785), - [anon_sym_DASH_GT_STAR] = ACTIONS(7785), + [aux_sym_sized_type_specifier_repeat1] = STATE(2415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_RPAREN] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7584), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7584), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7584), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7584), + [anon_sym_GT_GT] = ACTIONS(7584), + [anon_sym___extension__] = ACTIONS(7586), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_signed] = ACTIONS(8218), + [anon_sym_unsigned] = ACTIONS(8218), + [anon_sym_long] = ACTIONS(8218), + [anon_sym_short] = ACTIONS(8218), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7586), + [anon_sym_volatile] = ACTIONS(7586), + [anon_sym_restrict] = ACTIONS(7586), + [anon_sym___restrict__] = ACTIONS(7586), + [anon_sym__Atomic] = ACTIONS(7586), + [anon_sym__Noreturn] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7586), + [anon_sym__Nonnull] = ACTIONS(7586), + [anon_sym_mutable] = ACTIONS(7586), + [anon_sym_constinit] = ACTIONS(7586), + [anon_sym_consteval] = ACTIONS(7586), + [anon_sym_alignas] = ACTIONS(7586), + [anon_sym__Alignas] = ACTIONS(7586), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_STAR_EQ] = ACTIONS(7586), + [anon_sym_SLASH_EQ] = ACTIONS(7586), + [anon_sym_PERCENT_EQ] = ACTIONS(7586), + [anon_sym_PLUS_EQ] = ACTIONS(7586), + [anon_sym_DASH_EQ] = ACTIONS(7586), + [anon_sym_LT_LT_EQ] = ACTIONS(7586), + [anon_sym_GT_GT_EQ] = ACTIONS(7586), + [anon_sym_AMP_EQ] = ACTIONS(7586), + [anon_sym_CARET_EQ] = ACTIONS(7586), + [anon_sym_PIPE_EQ] = ACTIONS(7586), + [anon_sym_and_eq] = ACTIONS(7586), + [anon_sym_or_eq] = ACTIONS(7586), + [anon_sym_xor_eq] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7584), + [anon_sym_and] = ACTIONS(7584), + [anon_sym_bitor] = ACTIONS(7586), + [anon_sym_xor] = ACTIONS(7584), + [anon_sym_bitand] = ACTIONS(7586), + [anon_sym_not_eq] = ACTIONS(7586), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7584), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7586), + [anon_sym_override] = ACTIONS(7586), + [anon_sym_requires] = ACTIONS(7586), + [anon_sym_DASH_GT_STAR] = ACTIONS(7586), }, [STATE(2429)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2618), - [sym_ms_pointer_modifier] = STATE(2429), - [aux_sym_pointer_declarator_repeat1] = STATE(2429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), - [anon_sym_COMMA] = ACTIONS(6944), - [anon_sym_RPAREN] = ACTIONS(6944), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DASH] = ACTIONS(6942), - [anon_sym_PLUS] = ACTIONS(6942), - [anon_sym_STAR] = ACTIONS(6942), - [anon_sym_SLASH] = ACTIONS(6942), - [anon_sym_PERCENT] = ACTIONS(6942), - [anon_sym_PIPE_PIPE] = ACTIONS(6944), - [anon_sym_AMP_AMP] = ACTIONS(6944), - [anon_sym_PIPE] = ACTIONS(6942), - [anon_sym_CARET] = ACTIONS(6942), - [anon_sym_AMP] = ACTIONS(6942), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6942), - [anon_sym_GT_EQ] = ACTIONS(6944), - [anon_sym_LT_EQ] = ACTIONS(6942), - [anon_sym_LT] = ACTIONS(6942), - [anon_sym_LT_LT] = ACTIONS(6942), - [anon_sym_GT_GT] = ACTIONS(6942), - [anon_sym___extension__] = ACTIONS(6944), - [sym_ms_restrict_modifier] = ACTIONS(8217), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8220), - [sym_ms_signed_ptr_modifier] = ACTIONS(8220), - [anon_sym__unaligned] = ACTIONS(8223), - [anon_sym___unaligned] = ACTIONS(8223), - [anon_sym_LBRACK] = ACTIONS(6944), - [anon_sym_EQ] = ACTIONS(6942), - [anon_sym_const] = ACTIONS(6942), - [anon_sym_constexpr] = ACTIONS(6944), - [anon_sym_volatile] = ACTIONS(6944), - [anon_sym_restrict] = ACTIONS(6944), - [anon_sym___restrict__] = ACTIONS(6944), - [anon_sym__Atomic] = ACTIONS(6944), - [anon_sym__Noreturn] = ACTIONS(6944), - [anon_sym_noreturn] = ACTIONS(6944), - [anon_sym__Nonnull] = ACTIONS(6944), - [anon_sym_mutable] = ACTIONS(6944), - [anon_sym_constinit] = ACTIONS(6944), - [anon_sym_consteval] = ACTIONS(6944), - [anon_sym_alignas] = ACTIONS(6944), - [anon_sym__Alignas] = ACTIONS(6944), - [anon_sym_QMARK] = ACTIONS(6944), - [anon_sym_STAR_EQ] = ACTIONS(6944), - [anon_sym_SLASH_EQ] = ACTIONS(6944), - [anon_sym_PERCENT_EQ] = ACTIONS(6944), - [anon_sym_PLUS_EQ] = ACTIONS(6944), - [anon_sym_DASH_EQ] = ACTIONS(6944), - [anon_sym_LT_LT_EQ] = ACTIONS(6944), - [anon_sym_GT_GT_EQ] = ACTIONS(6944), - [anon_sym_AMP_EQ] = ACTIONS(6944), - [anon_sym_CARET_EQ] = ACTIONS(6944), - [anon_sym_PIPE_EQ] = ACTIONS(6944), - [anon_sym_and_eq] = ACTIONS(6944), - [anon_sym_or_eq] = ACTIONS(6944), - [anon_sym_xor_eq] = ACTIONS(6944), - [anon_sym_LT_EQ_GT] = ACTIONS(6944), - [anon_sym_or] = ACTIONS(6942), - [anon_sym_and] = ACTIONS(6942), - [anon_sym_bitor] = ACTIONS(6944), - [anon_sym_xor] = ACTIONS(6942), - [anon_sym_bitand] = ACTIONS(6944), - [anon_sym_not_eq] = ACTIONS(6944), - [anon_sym_DASH_DASH] = ACTIONS(6944), - [anon_sym_PLUS_PLUS] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6942), - [anon_sym_DOT_STAR] = ACTIONS(6944), - [anon_sym_DASH_GT] = ACTIONS(6942), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6944), - [anon_sym_override] = ACTIONS(6944), - [anon_sym_requires] = ACTIONS(6944), - [anon_sym_DASH_GT_STAR] = ACTIONS(6944), + [aux_sym_sized_type_specifier_repeat1] = STATE(2328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7620), + [anon_sym_COMMA] = ACTIONS(7620), + [anon_sym_RPAREN] = ACTIONS(7620), + [anon_sym_LPAREN2] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7618), + [anon_sym_STAR] = ACTIONS(7618), + [anon_sym_SLASH] = ACTIONS(7618), + [anon_sym_PERCENT] = ACTIONS(7618), + [anon_sym_PIPE_PIPE] = ACTIONS(7620), + [anon_sym_AMP_AMP] = ACTIONS(7620), + [anon_sym_PIPE] = ACTIONS(7618), + [anon_sym_CARET] = ACTIONS(7618), + [anon_sym_AMP] = ACTIONS(7618), + [anon_sym_EQ_EQ] = ACTIONS(7620), + [anon_sym_BANG_EQ] = ACTIONS(7620), + [anon_sym_GT] = ACTIONS(7618), + [anon_sym_GT_EQ] = ACTIONS(7620), + [anon_sym_LT_EQ] = ACTIONS(7618), + [anon_sym_LT] = ACTIONS(7618), + [anon_sym_LT_LT] = ACTIONS(7618), + [anon_sym_GT_GT] = ACTIONS(7618), + [anon_sym___extension__] = ACTIONS(7620), + [anon_sym___attribute__] = ACTIONS(7620), + [anon_sym___attribute] = ACTIONS(7618), + [anon_sym_LBRACE] = ACTIONS(7620), + [anon_sym_signed] = ACTIONS(8202), + [anon_sym_unsigned] = ACTIONS(8202), + [anon_sym_long] = ACTIONS(8202), + [anon_sym_short] = ACTIONS(8202), + [anon_sym_LBRACK] = ACTIONS(7620), + [anon_sym_EQ] = ACTIONS(7618), + [anon_sym_const] = ACTIONS(7618), + [anon_sym_constexpr] = ACTIONS(7620), + [anon_sym_volatile] = ACTIONS(7620), + [anon_sym_restrict] = ACTIONS(7620), + [anon_sym___restrict__] = ACTIONS(7620), + [anon_sym__Atomic] = ACTIONS(7620), + [anon_sym__Noreturn] = ACTIONS(7620), + [anon_sym_noreturn] = ACTIONS(7620), + [anon_sym__Nonnull] = ACTIONS(7620), + [anon_sym_mutable] = ACTIONS(7620), + [anon_sym_constinit] = ACTIONS(7620), + [anon_sym_consteval] = ACTIONS(7620), + [anon_sym_alignas] = ACTIONS(7620), + [anon_sym__Alignas] = ACTIONS(7620), + [anon_sym_QMARK] = ACTIONS(7620), + [anon_sym_STAR_EQ] = ACTIONS(7620), + [anon_sym_SLASH_EQ] = ACTIONS(7620), + [anon_sym_PERCENT_EQ] = ACTIONS(7620), + [anon_sym_PLUS_EQ] = ACTIONS(7620), + [anon_sym_DASH_EQ] = ACTIONS(7620), + [anon_sym_LT_LT_EQ] = ACTIONS(7620), + [anon_sym_GT_GT_EQ] = ACTIONS(7620), + [anon_sym_AMP_EQ] = ACTIONS(7620), + [anon_sym_CARET_EQ] = ACTIONS(7620), + [anon_sym_PIPE_EQ] = ACTIONS(7620), + [anon_sym_and_eq] = ACTIONS(7620), + [anon_sym_or_eq] = ACTIONS(7620), + [anon_sym_xor_eq] = ACTIONS(7620), + [anon_sym_LT_EQ_GT] = ACTIONS(7620), + [anon_sym_or] = ACTIONS(7618), + [anon_sym_and] = ACTIONS(7618), + [anon_sym_bitor] = ACTIONS(7620), + [anon_sym_xor] = ACTIONS(7618), + [anon_sym_bitand] = ACTIONS(7620), + [anon_sym_not_eq] = ACTIONS(7620), + [anon_sym_DASH_DASH] = ACTIONS(7620), + [anon_sym_PLUS_PLUS] = ACTIONS(7620), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_DOT_STAR] = ACTIONS(7620), + [anon_sym_DASH_GT] = ACTIONS(7618), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7620), + [anon_sym_override] = ACTIONS(7620), + [anon_sym_requires] = ACTIONS(7620), + [anon_sym_DASH_GT_STAR] = ACTIONS(7620), }, [STATE(2430)] = { - [sym__abstract_declarator] = STATE(5250), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1991), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_RPAREN] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(7309), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7353), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), - [anon_sym_DASH_GT_STAR] = ACTIONS(7355), + [aux_sym_sized_type_specifier_repeat1] = STATE(2328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7624), + [anon_sym_COMMA] = ACTIONS(7624), + [anon_sym_RPAREN] = ACTIONS(7624), + [anon_sym_LPAREN2] = ACTIONS(7624), + [anon_sym_DASH] = ACTIONS(7622), + [anon_sym_PLUS] = ACTIONS(7622), + [anon_sym_STAR] = ACTIONS(7622), + [anon_sym_SLASH] = ACTIONS(7622), + [anon_sym_PERCENT] = ACTIONS(7622), + [anon_sym_PIPE_PIPE] = ACTIONS(7624), + [anon_sym_AMP_AMP] = ACTIONS(7624), + [anon_sym_PIPE] = ACTIONS(7622), + [anon_sym_CARET] = ACTIONS(7622), + [anon_sym_AMP] = ACTIONS(7622), + [anon_sym_EQ_EQ] = ACTIONS(7624), + [anon_sym_BANG_EQ] = ACTIONS(7624), + [anon_sym_GT] = ACTIONS(7622), + [anon_sym_GT_EQ] = ACTIONS(7624), + [anon_sym_LT_EQ] = ACTIONS(7622), + [anon_sym_LT] = ACTIONS(7622), + [anon_sym_LT_LT] = ACTIONS(7622), + [anon_sym_GT_GT] = ACTIONS(7622), + [anon_sym___extension__] = ACTIONS(7624), + [anon_sym___attribute__] = ACTIONS(7624), + [anon_sym___attribute] = ACTIONS(7622), + [anon_sym_LBRACE] = ACTIONS(7624), + [anon_sym_signed] = ACTIONS(8202), + [anon_sym_unsigned] = ACTIONS(8202), + [anon_sym_long] = ACTIONS(8202), + [anon_sym_short] = ACTIONS(8202), + [anon_sym_LBRACK] = ACTIONS(7624), + [anon_sym_EQ] = ACTIONS(7622), + [anon_sym_const] = ACTIONS(7622), + [anon_sym_constexpr] = ACTIONS(7624), + [anon_sym_volatile] = ACTIONS(7624), + [anon_sym_restrict] = ACTIONS(7624), + [anon_sym___restrict__] = ACTIONS(7624), + [anon_sym__Atomic] = ACTIONS(7624), + [anon_sym__Noreturn] = ACTIONS(7624), + [anon_sym_noreturn] = ACTIONS(7624), + [anon_sym__Nonnull] = ACTIONS(7624), + [anon_sym_mutable] = ACTIONS(7624), + [anon_sym_constinit] = ACTIONS(7624), + [anon_sym_consteval] = ACTIONS(7624), + [anon_sym_alignas] = ACTIONS(7624), + [anon_sym__Alignas] = ACTIONS(7624), + [anon_sym_QMARK] = ACTIONS(7624), + [anon_sym_STAR_EQ] = ACTIONS(7624), + [anon_sym_SLASH_EQ] = ACTIONS(7624), + [anon_sym_PERCENT_EQ] = ACTIONS(7624), + [anon_sym_PLUS_EQ] = ACTIONS(7624), + [anon_sym_DASH_EQ] = ACTIONS(7624), + [anon_sym_LT_LT_EQ] = ACTIONS(7624), + [anon_sym_GT_GT_EQ] = ACTIONS(7624), + [anon_sym_AMP_EQ] = ACTIONS(7624), + [anon_sym_CARET_EQ] = ACTIONS(7624), + [anon_sym_PIPE_EQ] = ACTIONS(7624), + [anon_sym_and_eq] = ACTIONS(7624), + [anon_sym_or_eq] = ACTIONS(7624), + [anon_sym_xor_eq] = ACTIONS(7624), + [anon_sym_LT_EQ_GT] = ACTIONS(7624), + [anon_sym_or] = ACTIONS(7622), + [anon_sym_and] = ACTIONS(7622), + [anon_sym_bitor] = ACTIONS(7624), + [anon_sym_xor] = ACTIONS(7622), + [anon_sym_bitand] = ACTIONS(7624), + [anon_sym_not_eq] = ACTIONS(7624), + [anon_sym_DASH_DASH] = ACTIONS(7624), + [anon_sym_PLUS_PLUS] = ACTIONS(7624), + [anon_sym_DOT] = ACTIONS(7622), + [anon_sym_DOT_STAR] = ACTIONS(7624), + [anon_sym_DASH_GT] = ACTIONS(7622), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7624), + [anon_sym_override] = ACTIONS(7624), + [anon_sym_requires] = ACTIONS(7624), + [anon_sym_DASH_GT_STAR] = ACTIONS(7624), }, [STATE(2431)] = { - [sym__abstract_declarator] = STATE(5256), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1991), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2367), + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(9851), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_optional_parameter_declaration] = STATE(9851), + [sym_variadic_parameter_declaration] = STATE(9851), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(2432)] = { + [sym__abstract_declarator] = STATE(5243), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1990), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2363), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(7305), + [anon_sym_LPAREN2] = ACTIONS(7291), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(7307), + [anon_sym_STAR] = ACTIONS(7293), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7347), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7309), + [anon_sym_AMP_AMP] = ACTIONS(7295), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7311), + [anon_sym_AMP] = ACTIONS(7297), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), @@ -350427,23 +350375,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7347), [anon_sym_LT_LT] = ACTIONS(7347), [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_STAR_EQ] = ACTIONS(7345), [anon_sym_SLASH_EQ] = ACTIONS(7345), @@ -350473,5817 +350421,3127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7345), [anon_sym_DASH_GT_STAR] = ACTIONS(7345), }, - [STATE(2432)] = { - [sym__abstract_declarator] = STATE(5255), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1991), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7307), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7309), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7311), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6821), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - [anon_sym_DASH_GT_STAR] = ACTIONS(6823), - }, [STATE(2433)] = { - [sym__abstract_declarator] = STATE(5244), - [sym_abstract_parenthesized_declarator] = STATE(4825), - [sym_abstract_pointer_declarator] = STATE(4825), - [sym_abstract_function_declarator] = STATE(4825), - [sym_abstract_array_declarator] = STATE(4825), - [sym_type_qualifier] = STATE(2401), - [sym_alignas_qualifier] = STATE(2365), - [sym_parameter_list] = STATE(1974), - [sym_abstract_reference_declarator] = STATE(4825), - [sym__function_declarator_seq] = STATE(4934), - [aux_sym__type_definition_type_repeat1] = STATE(2401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7006), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7295), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7297), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7299), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7014), - [anon_sym_LBRACK] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7024), - [anon_sym_constexpr] = ACTIONS(7014), - [anon_sym_volatile] = ACTIONS(7014), - [anon_sym_restrict] = ACTIONS(7014), - [anon_sym___restrict__] = ACTIONS(7014), - [anon_sym__Atomic] = ACTIONS(7014), - [anon_sym__Noreturn] = ACTIONS(7014), - [anon_sym_noreturn] = ACTIONS(7014), - [anon_sym__Nonnull] = ACTIONS(7014), - [anon_sym_mutable] = ACTIONS(7014), - [anon_sym_constinit] = ACTIONS(7014), - [anon_sym_consteval] = ACTIONS(7014), - [anon_sym_alignas] = ACTIONS(7026), - [anon_sym__Alignas] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7341), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7343), + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym__function_exception_specification] = STATE(2928), + [sym__function_attributes_end] = STATE(4273), + [sym__function_postfix] = STATE(4848), + [sym_trailing_return_type] = STATE(4352), + [sym_noexcept] = STATE(2928), + [sym_throw_specifier] = STATE(2928), + [sym_requires_clause] = STATE(4848), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8220), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6663), + [anon_sym_override] = ACTIONS(6663), + [anon_sym_noexcept] = ACTIONS(6642), + [anon_sym_throw] = ACTIONS(6644), + [anon_sym_requires] = ACTIONS(6665), + [anon_sym_DASH_GT_STAR] = ACTIONS(7970), }, [STATE(2434)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_EQ] = 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_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_and_eq] = ACTIONS(3128), - [anon_sym_or_eq] = ACTIONS(3128), - [anon_sym_xor_eq] = ACTIONS(3128), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3128), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3128), - [anon_sym_not_eq] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(6656), + [anon_sym_LPAREN2] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6649), + [anon_sym_PLUS] = ACTIONS(6649), + [anon_sym_STAR] = ACTIONS(6649), + [anon_sym_SLASH] = ACTIONS(6649), + [anon_sym_PERCENT] = ACTIONS(6649), + [anon_sym_PIPE_PIPE] = ACTIONS(6656), + [anon_sym_AMP_AMP] = ACTIONS(6656), + [anon_sym_PIPE] = ACTIONS(6649), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6649), + [anon_sym_EQ_EQ] = ACTIONS(6656), + [anon_sym_BANG_EQ] = ACTIONS(6656), + [anon_sym_GT] = ACTIONS(6649), + [anon_sym_GT_EQ] = ACTIONS(6656), + [anon_sym_LT_EQ] = ACTIONS(6649), + [anon_sym_LT] = ACTIONS(6649), + [anon_sym_LT_LT] = ACTIONS(6649), + [anon_sym_GT_GT] = ACTIONS(6649), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym___attribute__] = ACTIONS(6656), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6656), + [anon_sym_EQ] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6656), + [anon_sym_STAR_EQ] = ACTIONS(6656), + [anon_sym_SLASH_EQ] = ACTIONS(6656), + [anon_sym_PERCENT_EQ] = ACTIONS(6656), + [anon_sym_PLUS_EQ] = ACTIONS(6656), + [anon_sym_DASH_EQ] = ACTIONS(6656), + [anon_sym_LT_LT_EQ] = ACTIONS(6656), + [anon_sym_GT_GT_EQ] = ACTIONS(6656), + [anon_sym_AMP_EQ] = ACTIONS(6656), + [anon_sym_CARET_EQ] = ACTIONS(6656), + [anon_sym_PIPE_EQ] = ACTIONS(6656), + [anon_sym_and_eq] = ACTIONS(6656), + [anon_sym_or_eq] = ACTIONS(6656), + [anon_sym_xor_eq] = ACTIONS(6656), + [anon_sym_LT_EQ_GT] = ACTIONS(6656), + [anon_sym_or] = ACTIONS(6649), + [anon_sym_and] = ACTIONS(6649), + [anon_sym_bitor] = ACTIONS(6656), + [anon_sym_xor] = ACTIONS(6649), + [anon_sym_bitand] = ACTIONS(6656), + [anon_sym_not_eq] = ACTIONS(6656), + [anon_sym_DASH_DASH] = ACTIONS(6656), + [anon_sym_PLUS_PLUS] = ACTIONS(6656), + [anon_sym_DOT] = ACTIONS(6649), + [anon_sym_DOT_STAR] = ACTIONS(6656), + [anon_sym_DASH_GT] = ACTIONS(6649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_final] = ACTIONS(6656), + [anon_sym_override] = ACTIONS(6656), + [anon_sym_requires] = ACTIONS(6656), + [anon_sym_DASH_GT_STAR] = ACTIONS(6656), }, [STATE(2435)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), - [anon_sym_COMMA] = ACTIONS(7083), - [anon_sym_RPAREN] = ACTIONS(7083), - [anon_sym_LPAREN2] = ACTIONS(7083), - [anon_sym_DASH] = ACTIONS(7081), - [anon_sym_PLUS] = ACTIONS(7081), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7081), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7083), - [anon_sym_AMP_AMP] = ACTIONS(7083), - [anon_sym_PIPE] = ACTIONS(7081), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7081), - [anon_sym_EQ_EQ] = ACTIONS(7083), - [anon_sym_BANG_EQ] = ACTIONS(7083), - [anon_sym_GT] = ACTIONS(7081), - [anon_sym_GT_EQ] = ACTIONS(7083), - [anon_sym_LT_EQ] = ACTIONS(7081), - [anon_sym_LT] = ACTIONS(7081), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(7083), - [anon_sym___attribute__] = ACTIONS(7083), - [anon_sym___attribute] = ACTIONS(7081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(7081), - [anon_sym_constexpr] = ACTIONS(7083), - [anon_sym_volatile] = ACTIONS(7083), - [anon_sym_restrict] = ACTIONS(7083), - [anon_sym___restrict__] = ACTIONS(7083), - [anon_sym__Atomic] = ACTIONS(7083), - [anon_sym__Noreturn] = ACTIONS(7083), - [anon_sym_noreturn] = ACTIONS(7083), - [anon_sym__Nonnull] = ACTIONS(7083), - [anon_sym_mutable] = ACTIONS(7083), - [anon_sym_constinit] = ACTIONS(7083), - [anon_sym_consteval] = ACTIONS(7083), - [anon_sym_alignas] = ACTIONS(7083), - [anon_sym__Alignas] = ACTIONS(7083), - [anon_sym_QMARK] = ACTIONS(7083), - [anon_sym_STAR_EQ] = ACTIONS(7083), - [anon_sym_SLASH_EQ] = ACTIONS(7083), - [anon_sym_PERCENT_EQ] = ACTIONS(7083), - [anon_sym_PLUS_EQ] = ACTIONS(7083), - [anon_sym_DASH_EQ] = ACTIONS(7083), - [anon_sym_LT_LT_EQ] = ACTIONS(7083), - [anon_sym_GT_GT_EQ] = ACTIONS(7083), - [anon_sym_AMP_EQ] = ACTIONS(7083), - [anon_sym_CARET_EQ] = ACTIONS(7083), - [anon_sym_PIPE_EQ] = ACTIONS(7083), - [anon_sym_and_eq] = ACTIONS(7083), - [anon_sym_or_eq] = ACTIONS(7083), - [anon_sym_xor_eq] = ACTIONS(7083), - [anon_sym_LT_EQ_GT] = ACTIONS(7083), - [anon_sym_or] = ACTIONS(7081), - [anon_sym_and] = ACTIONS(7081), - [anon_sym_bitor] = ACTIONS(7083), - [anon_sym_xor] = ACTIONS(7081), - [anon_sym_bitand] = ACTIONS(7083), - [anon_sym_not_eq] = ACTIONS(7083), - [anon_sym_DASH_DASH] = ACTIONS(7083), - [anon_sym_PLUS_PLUS] = ACTIONS(7083), - [anon_sym_asm] = ACTIONS(7083), - [anon_sym___asm__] = ACTIONS(7083), - [anon_sym___asm] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7081), - [anon_sym_DOT_STAR] = ACTIONS(7083), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7083), - [anon_sym_override] = ACTIONS(7083), - [anon_sym_noexcept] = ACTIONS(7083), - [anon_sym_throw] = ACTIONS(7083), - [anon_sym_requires] = ACTIONS(7083), - [anon_sym_DASH_GT_STAR] = ACTIONS(7083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [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), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_and_eq] = ACTIONS(3116), + [anon_sym_or_eq] = ACTIONS(3116), + [anon_sym_xor_eq] = ACTIONS(3116), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3116), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3116), + [anon_sym_not_eq] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym___asm__] = ACTIONS(3116), + [anon_sym___asm] = ACTIONS(3126), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_noexcept] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_requires] = ACTIONS(3116), }, [STATE(2436)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), - [anon_sym_COMMA] = ACTIONS(7699), - [anon_sym_LPAREN2] = ACTIONS(7699), - [anon_sym_DASH] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7697), - [anon_sym_STAR] = ACTIONS(7697), - [anon_sym_SLASH] = ACTIONS(7697), - [anon_sym_PERCENT] = ACTIONS(7697), - [anon_sym_PIPE_PIPE] = ACTIONS(7699), - [anon_sym_AMP_AMP] = ACTIONS(7699), - [anon_sym_PIPE] = ACTIONS(7697), - [anon_sym_CARET] = ACTIONS(7697), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_EQ_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7699), - [anon_sym_GT] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7697), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_LT] = ACTIONS(7697), - [anon_sym_LT_LT] = ACTIONS(7697), - [anon_sym_GT_GT] = ACTIONS(7697), - [anon_sym___extension__] = ACTIONS(7699), - [anon_sym___attribute__] = ACTIONS(7699), - [anon_sym___attribute] = ACTIONS(7697), - [anon_sym_LBRACE] = ACTIONS(7699), - [anon_sym_signed] = ACTIONS(8226), - [anon_sym_unsigned] = ACTIONS(8226), - [anon_sym_long] = ACTIONS(8226), - [anon_sym_short] = ACTIONS(8226), - [anon_sym_LBRACK] = ACTIONS(7699), - [anon_sym_EQ] = ACTIONS(7697), - [anon_sym_const] = ACTIONS(7697), - [anon_sym_constexpr] = ACTIONS(7699), - [anon_sym_volatile] = ACTIONS(7699), - [anon_sym_restrict] = ACTIONS(7699), - [anon_sym___restrict__] = ACTIONS(7699), - [anon_sym__Atomic] = ACTIONS(7699), - [anon_sym__Noreturn] = ACTIONS(7699), - [anon_sym_noreturn] = ACTIONS(7699), - [anon_sym__Nonnull] = ACTIONS(7699), - [anon_sym_mutable] = ACTIONS(7699), - [anon_sym_constinit] = ACTIONS(7699), - [anon_sym_consteval] = ACTIONS(7699), - [anon_sym_alignas] = ACTIONS(7699), - [anon_sym__Alignas] = ACTIONS(7699), - [anon_sym_QMARK] = ACTIONS(7699), - [anon_sym_STAR_EQ] = ACTIONS(7699), - [anon_sym_SLASH_EQ] = ACTIONS(7699), - [anon_sym_PERCENT_EQ] = ACTIONS(7699), - [anon_sym_PLUS_EQ] = ACTIONS(7699), - [anon_sym_DASH_EQ] = ACTIONS(7699), - [anon_sym_LT_LT_EQ] = ACTIONS(7699), - [anon_sym_GT_GT_EQ] = ACTIONS(7697), - [anon_sym_AMP_EQ] = ACTIONS(7699), - [anon_sym_CARET_EQ] = ACTIONS(7699), - [anon_sym_PIPE_EQ] = ACTIONS(7699), - [anon_sym_and_eq] = ACTIONS(7699), - [anon_sym_or_eq] = ACTIONS(7699), - [anon_sym_xor_eq] = ACTIONS(7699), - [anon_sym_LT_EQ_GT] = ACTIONS(7699), - [anon_sym_or] = ACTIONS(7697), - [anon_sym_and] = ACTIONS(7697), - [anon_sym_bitor] = ACTIONS(7699), - [anon_sym_xor] = ACTIONS(7697), - [anon_sym_bitand] = ACTIONS(7699), - [anon_sym_not_eq] = ACTIONS(7699), - [anon_sym_DASH_DASH] = ACTIONS(7699), - [anon_sym_PLUS_PLUS] = ACTIONS(7699), - [anon_sym_DOT] = ACTIONS(7697), - [anon_sym_DOT_STAR] = ACTIONS(7699), - [anon_sym_DASH_GT] = ACTIONS(7699), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7699), - [anon_sym_override] = ACTIONS(7699), - [anon_sym_GT2] = ACTIONS(7699), - [anon_sym_requires] = ACTIONS(7699), + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym__function_exception_specification] = STATE(2897), + [sym__function_attributes_end] = STATE(4276), + [sym__function_postfix] = STATE(4851), + [sym_trailing_return_type] = STATE(4331), + [sym_noexcept] = STATE(2897), + [sym_throw_specifier] = STATE(2897), + [sym_requires_clause] = STATE(4851), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8167), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8170), + [anon_sym_override] = ACTIONS(8170), + [anon_sym_noexcept] = ACTIONS(6642), + [anon_sym_throw] = ACTIONS(6644), + [anon_sym_requires] = ACTIONS(8173), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), }, [STATE(2437)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8790), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9243), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9243), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym___extension__] = ACTIONS(7115), + [anon_sym___attribute__] = ACTIONS(7115), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7115), + [anon_sym_LBRACK] = ACTIONS(7113), + [anon_sym_RBRACK] = ACTIONS(7115), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7115), + [anon_sym_volatile] = ACTIONS(7115), + [anon_sym_restrict] = ACTIONS(7115), + [anon_sym___restrict__] = ACTIONS(7115), + [anon_sym__Atomic] = ACTIONS(7115), + [anon_sym__Noreturn] = ACTIONS(7115), + [anon_sym_noreturn] = ACTIONS(7115), + [anon_sym__Nonnull] = ACTIONS(7115), + [anon_sym_mutable] = ACTIONS(7115), + [anon_sym_constinit] = ACTIONS(7115), + [anon_sym_consteval] = ACTIONS(7115), + [anon_sym_alignas] = ACTIONS(7115), + [anon_sym__Alignas] = ACTIONS(7115), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_and_eq] = ACTIONS(7115), + [anon_sym_or_eq] = ACTIONS(7115), + [anon_sym_xor_eq] = ACTIONS(7115), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7115), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7115), + [anon_sym_not_eq] = ACTIONS(7115), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_asm] = ACTIONS(7115), + [anon_sym___asm__] = ACTIONS(7115), + [anon_sym___asm] = ACTIONS(7113), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7115), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_noexcept] = ACTIONS(7115), + [anon_sym_throw] = ACTIONS(7115), + [anon_sym_requires] = ACTIONS(7115), }, [STATE(2438)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2725), - [sym_ms_pointer_modifier] = STATE(2438), - [aux_sym_pointer_declarator_repeat1] = STATE(2438), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), - [anon_sym_COMMA] = ACTIONS(6944), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DASH] = ACTIONS(6942), - [anon_sym_PLUS] = ACTIONS(6942), - [anon_sym_STAR] = ACTIONS(6942), - [anon_sym_SLASH] = ACTIONS(6942), - [anon_sym_PERCENT] = ACTIONS(6942), - [anon_sym_PIPE_PIPE] = ACTIONS(6944), - [anon_sym_AMP_AMP] = ACTIONS(6944), - [anon_sym_PIPE] = ACTIONS(6942), - [anon_sym_CARET] = ACTIONS(6942), - [anon_sym_AMP] = ACTIONS(6942), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6942), - [anon_sym_GT_EQ] = ACTIONS(6942), - [anon_sym_LT_EQ] = ACTIONS(6942), - [anon_sym_LT] = ACTIONS(6942), - [anon_sym_LT_LT] = ACTIONS(6942), - [anon_sym_GT_GT] = ACTIONS(6942), - [anon_sym___extension__] = ACTIONS(6944), - [sym_ms_restrict_modifier] = ACTIONS(8246), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8249), - [sym_ms_signed_ptr_modifier] = ACTIONS(8249), - [anon_sym__unaligned] = ACTIONS(8252), - [anon_sym___unaligned] = ACTIONS(8252), - [anon_sym_LBRACK] = ACTIONS(6944), - [anon_sym_EQ] = ACTIONS(6942), - [anon_sym_const] = ACTIONS(6942), - [anon_sym_constexpr] = ACTIONS(6944), - [anon_sym_volatile] = ACTIONS(6944), - [anon_sym_restrict] = ACTIONS(6944), - [anon_sym___restrict__] = ACTIONS(6944), - [anon_sym__Atomic] = ACTIONS(6944), - [anon_sym__Noreturn] = ACTIONS(6944), - [anon_sym_noreturn] = ACTIONS(6944), - [anon_sym__Nonnull] = ACTIONS(6944), - [anon_sym_mutable] = ACTIONS(6944), - [anon_sym_constinit] = ACTIONS(6944), - [anon_sym_consteval] = ACTIONS(6944), - [anon_sym_alignas] = ACTIONS(6944), - [anon_sym__Alignas] = ACTIONS(6944), - [anon_sym_QMARK] = ACTIONS(6944), - [anon_sym_STAR_EQ] = ACTIONS(6944), - [anon_sym_SLASH_EQ] = ACTIONS(6944), - [anon_sym_PERCENT_EQ] = ACTIONS(6944), - [anon_sym_PLUS_EQ] = ACTIONS(6944), - [anon_sym_DASH_EQ] = ACTIONS(6944), - [anon_sym_LT_LT_EQ] = ACTIONS(6944), - [anon_sym_GT_GT_EQ] = ACTIONS(6942), - [anon_sym_AMP_EQ] = ACTIONS(6944), - [anon_sym_CARET_EQ] = ACTIONS(6944), - [anon_sym_PIPE_EQ] = ACTIONS(6944), - [anon_sym_and_eq] = ACTIONS(6944), - [anon_sym_or_eq] = ACTIONS(6944), - [anon_sym_xor_eq] = ACTIONS(6944), - [anon_sym_LT_EQ_GT] = ACTIONS(6944), - [anon_sym_or] = ACTIONS(6942), - [anon_sym_and] = ACTIONS(6942), - [anon_sym_bitor] = ACTIONS(6944), - [anon_sym_xor] = ACTIONS(6942), - [anon_sym_bitand] = ACTIONS(6944), - [anon_sym_not_eq] = ACTIONS(6944), - [anon_sym_DASH_DASH] = ACTIONS(6944), - [anon_sym_PLUS_PLUS] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6942), - [anon_sym_DOT_STAR] = ACTIONS(6944), - [anon_sym_DASH_GT] = ACTIONS(6944), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6944), - [anon_sym_override] = ACTIONS(6944), - [anon_sym_GT2] = ACTIONS(6944), - [anon_sym_requires] = ACTIONS(6944), + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym__function_exception_specification] = STATE(2898), + [sym__function_attributes_end] = STATE(4283), + [sym__function_postfix] = STATE(4848), + [sym_trailing_return_type] = STATE(4388), + [sym_noexcept] = STATE(2898), + [sym_throw_specifier] = STATE(2898), + [sym_requires_clause] = STATE(4848), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8220), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8223), + [anon_sym_override] = ACTIONS(8223), + [anon_sym_noexcept] = ACTIONS(6642), + [anon_sym_throw] = ACTIONS(6644), + [anon_sym_requires] = ACTIONS(8226), + [anon_sym_DASH_GT_STAR] = ACTIONS(7970), }, [STATE(2439)] = { - [sym_template_argument_list] = STATE(2594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), - [anon_sym_COMMA] = ACTIONS(6572), - [anon_sym_LPAREN2] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6565), - [anon_sym_PLUS] = ACTIONS(6565), - [anon_sym_STAR] = ACTIONS(6565), - [anon_sym_SLASH] = ACTIONS(6565), - [anon_sym_PERCENT] = ACTIONS(6565), - [anon_sym_PIPE_PIPE] = ACTIONS(6572), - [anon_sym_AMP_AMP] = ACTIONS(6572), - [anon_sym_PIPE] = ACTIONS(6565), - [anon_sym_CARET] = ACTIONS(6565), - [anon_sym_AMP] = ACTIONS(6565), - [anon_sym_EQ_EQ] = ACTIONS(6572), - [anon_sym_BANG_EQ] = ACTIONS(6572), - [anon_sym_GT] = ACTIONS(6565), - [anon_sym_GT_EQ] = ACTIONS(6565), - [anon_sym_LT_EQ] = ACTIONS(6565), - [anon_sym_LT] = ACTIONS(8255), - [anon_sym_LT_LT] = ACTIONS(6565), - [anon_sym_GT_GT] = ACTIONS(6565), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym___attribute__] = ACTIONS(6572), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6572), - [anon_sym_EQ] = ACTIONS(6565), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6572), - [anon_sym_STAR_EQ] = ACTIONS(6572), - [anon_sym_SLASH_EQ] = ACTIONS(6572), - [anon_sym_PERCENT_EQ] = ACTIONS(6572), - [anon_sym_PLUS_EQ] = ACTIONS(6572), - [anon_sym_DASH_EQ] = ACTIONS(6572), - [anon_sym_LT_LT_EQ] = ACTIONS(6572), - [anon_sym_GT_GT_EQ] = ACTIONS(6565), - [anon_sym_AMP_EQ] = ACTIONS(6572), - [anon_sym_CARET_EQ] = ACTIONS(6572), - [anon_sym_PIPE_EQ] = ACTIONS(6572), - [anon_sym_and_eq] = ACTIONS(6572), - [anon_sym_or_eq] = ACTIONS(6572), - [anon_sym_xor_eq] = ACTIONS(6572), - [anon_sym_LT_EQ_GT] = ACTIONS(6572), - [anon_sym_or] = ACTIONS(6565), - [anon_sym_and] = ACTIONS(6565), - [anon_sym_bitor] = ACTIONS(6572), - [anon_sym_xor] = ACTIONS(6565), - [anon_sym_bitand] = ACTIONS(6572), - [anon_sym_not_eq] = ACTIONS(6572), - [anon_sym_DASH_DASH] = ACTIONS(6572), - [anon_sym_PLUS_PLUS] = ACTIONS(6572), - [anon_sym_DOT] = ACTIONS(6565), - [anon_sym_DOT_STAR] = ACTIONS(6572), - [anon_sym_DASH_GT] = ACTIONS(6572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_final] = ACTIONS(6572), - [anon_sym_override] = ACTIONS(6572), - [anon_sym_GT2] = ACTIONS(6572), - [anon_sym_requires] = ACTIONS(6572), + [sym_attribute_specifier] = STATE(3166), + [sym_field_declaration_list] = STATE(2847), + [sym_virtual_specifier] = STATE(9600), + [sym_base_class_clause] = STATE(10442), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym_LPAREN2] = ACTIONS(7256), + [anon_sym_DASH] = ACTIONS(7254), + [anon_sym_PLUS] = ACTIONS(7254), + [anon_sym_STAR] = ACTIONS(7254), + [anon_sym_SLASH] = ACTIONS(7254), + [anon_sym_PERCENT] = ACTIONS(7254), + [anon_sym_PIPE_PIPE] = ACTIONS(7256), + [anon_sym_AMP_AMP] = ACTIONS(7256), + [anon_sym_PIPE] = ACTIONS(7254), + [anon_sym_CARET] = ACTIONS(7254), + [anon_sym_AMP] = ACTIONS(7254), + [anon_sym_EQ_EQ] = ACTIONS(7256), + [anon_sym_BANG_EQ] = ACTIONS(7256), + [anon_sym_GT] = ACTIONS(7254), + [anon_sym_GT_EQ] = ACTIONS(7254), + [anon_sym_LT_EQ] = ACTIONS(7254), + [anon_sym_LT] = ACTIONS(7254), + [anon_sym_LT_LT] = ACTIONS(7254), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym___extension__] = ACTIONS(7256), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_COLON] = ACTIONS(8180), + [anon_sym_LBRACE] = ACTIONS(8233), + [anon_sym_LBRACK] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7254), + [anon_sym_const] = ACTIONS(7254), + [anon_sym_constexpr] = ACTIONS(7256), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym___restrict__] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym__Noreturn] = ACTIONS(7256), + [anon_sym_noreturn] = ACTIONS(7256), + [anon_sym__Nonnull] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_constinit] = ACTIONS(7256), + [anon_sym_consteval] = ACTIONS(7256), + [anon_sym_alignas] = ACTIONS(7256), + [anon_sym__Alignas] = ACTIONS(7256), + [anon_sym_QMARK] = ACTIONS(7256), + [anon_sym_STAR_EQ] = ACTIONS(7256), + [anon_sym_SLASH_EQ] = ACTIONS(7256), + [anon_sym_PERCENT_EQ] = ACTIONS(7256), + [anon_sym_PLUS_EQ] = ACTIONS(7256), + [anon_sym_DASH_EQ] = ACTIONS(7256), + [anon_sym_LT_LT_EQ] = ACTIONS(7256), + [anon_sym_GT_GT_EQ] = ACTIONS(7254), + [anon_sym_AMP_EQ] = ACTIONS(7256), + [anon_sym_CARET_EQ] = ACTIONS(7256), + [anon_sym_PIPE_EQ] = ACTIONS(7256), + [anon_sym_and_eq] = ACTIONS(7256), + [anon_sym_or_eq] = ACTIONS(7256), + [anon_sym_xor_eq] = ACTIONS(7256), + [anon_sym_LT_EQ_GT] = ACTIONS(7256), + [anon_sym_or] = ACTIONS(7254), + [anon_sym_and] = ACTIONS(7254), + [anon_sym_bitor] = ACTIONS(7256), + [anon_sym_xor] = ACTIONS(7254), + [anon_sym_bitand] = ACTIONS(7256), + [anon_sym_not_eq] = ACTIONS(7256), + [anon_sym_DASH_DASH] = ACTIONS(7256), + [anon_sym_PLUS_PLUS] = ACTIONS(7256), + [anon_sym_DOT] = ACTIONS(7254), + [anon_sym_DOT_STAR] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8184), + [anon_sym_override] = ACTIONS(8184), + [anon_sym_GT2] = ACTIONS(7256), + [anon_sym_requires] = ACTIONS(7256), }, [STATE(2440)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7134), - [anon_sym_LPAREN2] = ACTIONS(7134), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7132), - [anon_sym_SLASH] = ACTIONS(7132), - [anon_sym_PERCENT] = ACTIONS(7132), - [anon_sym_PIPE_PIPE] = ACTIONS(7134), - [anon_sym_AMP_AMP] = ACTIONS(7134), - [anon_sym_PIPE] = ACTIONS(7132), - [anon_sym_CARET] = ACTIONS(7132), - [anon_sym_AMP] = ACTIONS(7132), - [anon_sym_EQ_EQ] = ACTIONS(7134), - [anon_sym_BANG_EQ] = ACTIONS(7134), - [anon_sym_GT] = ACTIONS(7132), - [anon_sym_GT_EQ] = ACTIONS(7134), - [anon_sym_LT_EQ] = ACTIONS(7132), - [anon_sym_LT] = ACTIONS(7132), - [anon_sym_LT_LT] = ACTIONS(7132), - [anon_sym_GT_GT] = ACTIONS(7132), - [anon_sym___extension__] = ACTIONS(7134), - [anon_sym___attribute__] = ACTIONS(7134), - [anon_sym___attribute] = ACTIONS(7132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), - [anon_sym_LBRACK] = ACTIONS(7132), - [anon_sym_RBRACK] = ACTIONS(7134), - [anon_sym_EQ] = ACTIONS(7132), - [anon_sym_const] = ACTIONS(7132), - [anon_sym_constexpr] = ACTIONS(7134), - [anon_sym_volatile] = ACTIONS(7134), - [anon_sym_restrict] = ACTIONS(7134), - [anon_sym___restrict__] = ACTIONS(7134), - [anon_sym__Atomic] = ACTIONS(7134), - [anon_sym__Noreturn] = ACTIONS(7134), - [anon_sym_noreturn] = ACTIONS(7134), - [anon_sym__Nonnull] = ACTIONS(7134), - [anon_sym_mutable] = ACTIONS(7134), - [anon_sym_constinit] = ACTIONS(7134), - [anon_sym_consteval] = ACTIONS(7134), - [anon_sym_alignas] = ACTIONS(7134), - [anon_sym__Alignas] = ACTIONS(7134), - [anon_sym_QMARK] = ACTIONS(7134), - [anon_sym_STAR_EQ] = ACTIONS(7134), - [anon_sym_SLASH_EQ] = ACTIONS(7134), - [anon_sym_PERCENT_EQ] = ACTIONS(7134), - [anon_sym_PLUS_EQ] = ACTIONS(7134), - [anon_sym_DASH_EQ] = ACTIONS(7134), - [anon_sym_LT_LT_EQ] = ACTIONS(7134), - [anon_sym_GT_GT_EQ] = ACTIONS(7134), - [anon_sym_AMP_EQ] = ACTIONS(7134), - [anon_sym_CARET_EQ] = ACTIONS(7134), - [anon_sym_PIPE_EQ] = ACTIONS(7134), - [anon_sym_and_eq] = ACTIONS(7134), - [anon_sym_or_eq] = ACTIONS(7134), - [anon_sym_xor_eq] = ACTIONS(7134), - [anon_sym_LT_EQ_GT] = ACTIONS(7134), - [anon_sym_or] = ACTIONS(7132), - [anon_sym_and] = ACTIONS(7132), - [anon_sym_bitor] = ACTIONS(7134), - [anon_sym_xor] = ACTIONS(7132), - [anon_sym_bitand] = ACTIONS(7134), - [anon_sym_not_eq] = ACTIONS(7134), - [anon_sym_DASH_DASH] = ACTIONS(7134), - [anon_sym_PLUS_PLUS] = ACTIONS(7134), - [anon_sym_asm] = ACTIONS(7134), - [anon_sym___asm__] = ACTIONS(7134), - [anon_sym___asm] = ACTIONS(7132), - [anon_sym_DOT] = ACTIONS(7132), - [anon_sym_DOT_STAR] = ACTIONS(7134), - [anon_sym_DASH_GT] = ACTIONS(7134), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7134), - [anon_sym_override] = ACTIONS(7134), - [anon_sym_noexcept] = ACTIONS(7134), - [anon_sym_throw] = ACTIONS(7134), - [anon_sym_requires] = ACTIONS(7134), + [aux_sym_sized_type_specifier_repeat1] = STATE(2328), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_RPAREN] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8015), + [anon_sym_unsigned] = ACTIONS(8015), + [anon_sym_long] = ACTIONS(8015), + [anon_sym_short] = ACTIONS(8015), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7402), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7399), }, [STATE(2441)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_RPAREN] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6608), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6608), - [anon_sym_GT_GT] = ACTIONS(6608), - [anon_sym___extension__] = ACTIONS(6610), - [anon_sym___attribute__] = ACTIONS(6610), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6610), - [anon_sym_EQ] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6610), - [anon_sym_volatile] = ACTIONS(6610), - [anon_sym_restrict] = ACTIONS(6610), - [anon_sym___restrict__] = ACTIONS(6610), - [anon_sym__Atomic] = ACTIONS(6610), - [anon_sym__Noreturn] = ACTIONS(6610), - [anon_sym_noreturn] = ACTIONS(6610), - [anon_sym__Nonnull] = ACTIONS(6610), - [anon_sym_mutable] = ACTIONS(6610), - [anon_sym_constinit] = ACTIONS(6610), - [anon_sym_consteval] = ACTIONS(6610), - [anon_sym_alignas] = ACTIONS(6610), - [anon_sym__Alignas] = ACTIONS(6610), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_STAR_EQ] = ACTIONS(6610), - [anon_sym_SLASH_EQ] = ACTIONS(6610), - [anon_sym_PERCENT_EQ] = ACTIONS(6610), - [anon_sym_PLUS_EQ] = ACTIONS(6610), - [anon_sym_DASH_EQ] = ACTIONS(6610), - [anon_sym_LT_LT_EQ] = ACTIONS(6610), - [anon_sym_GT_GT_EQ] = ACTIONS(6610), - [anon_sym_AMP_EQ] = ACTIONS(6610), - [anon_sym_CARET_EQ] = ACTIONS(6610), - [anon_sym_PIPE_EQ] = ACTIONS(6610), - [anon_sym_and_eq] = ACTIONS(6610), - [anon_sym_or_eq] = ACTIONS(6610), - [anon_sym_xor_eq] = ACTIONS(6610), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6610), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6610), - [anon_sym_not_eq] = ACTIONS(6610), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6610), - [anon_sym_decltype] = ACTIONS(6610), - [anon_sym_final] = ACTIONS(6610), - [anon_sym_override] = ACTIONS(6610), - [anon_sym_requires] = ACTIONS(6610), - [anon_sym_DASH_GT_STAR] = ACTIONS(6610), + [sym_template_argument_list] = STATE(5597), + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7119), + [anon_sym_COMMA] = ACTIONS(7119), + [anon_sym_RPAREN] = ACTIONS(7119), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_TILDE] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7124), + [anon_sym_PLUS] = ACTIONS(7124), + [anon_sym_STAR] = ACTIONS(7119), + [anon_sym_SLASH] = ACTIONS(7124), + [anon_sym_PERCENT] = ACTIONS(7129), + [anon_sym_PIPE_PIPE] = ACTIONS(7129), + [anon_sym_AMP_AMP] = ACTIONS(7119), + [anon_sym_PIPE] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7129), + [anon_sym_AMP] = ACTIONS(7126), + [anon_sym_EQ_EQ] = ACTIONS(7129), + [anon_sym_BANG_EQ] = ACTIONS(7129), + [anon_sym_GT] = ACTIONS(7124), + [anon_sym_GT_EQ] = ACTIONS(7129), + [anon_sym_LT_EQ] = ACTIONS(7124), + [anon_sym_LT] = ACTIONS(7131), + [anon_sym_LT_LT] = ACTIONS(7129), + [anon_sym_GT_GT] = ACTIONS(7129), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym_virtual] = ACTIONS(7117), + [anon_sym_extern] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7122), + [anon_sym___declspec] = ACTIONS(7117), + [anon_sym___based] = ACTIONS(7117), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7126), + [anon_sym_static] = ACTIONS(7117), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_register] = ACTIONS(7117), + [anon_sym_inline] = ACTIONS(7117), + [anon_sym___inline] = ACTIONS(7117), + [anon_sym___inline__] = ACTIONS(7117), + [anon_sym___forceinline] = ACTIONS(7117), + [anon_sym_thread_local] = ACTIONS(7117), + [anon_sym___thread] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(7129), + [anon_sym_LT_EQ_GT] = ACTIONS(7129), + [anon_sym_or] = ACTIONS(7124), + [anon_sym_and] = ACTIONS(7124), + [anon_sym_bitor] = ACTIONS(7124), + [anon_sym_xor] = ACTIONS(7124), + [anon_sym_bitand] = ACTIONS(7124), + [anon_sym_not_eq] = ACTIONS(7124), + [anon_sym_DASH_DASH] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7129), + [anon_sym_DOT] = ACTIONS(7124), + [anon_sym_DOT_STAR] = ACTIONS(7129), + [anon_sym_DASH_GT] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7117), + [anon_sym_template] = ACTIONS(7117), + [anon_sym_operator] = ACTIONS(7117), + [anon_sym_LBRACK_COLON] = ACTIONS(7122), }, [STATE(2442)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_RPAREN] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6616), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6616), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6616), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6616), - [anon_sym_GT_GT] = ACTIONS(6616), - [anon_sym___extension__] = ACTIONS(6618), - [anon_sym___attribute__] = ACTIONS(6618), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6618), - [anon_sym_EQ] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6618), - [anon_sym_volatile] = ACTIONS(6618), - [anon_sym_restrict] = ACTIONS(6618), - [anon_sym___restrict__] = ACTIONS(6618), - [anon_sym__Atomic] = ACTIONS(6618), - [anon_sym__Noreturn] = ACTIONS(6618), - [anon_sym_noreturn] = ACTIONS(6618), - [anon_sym__Nonnull] = ACTIONS(6618), - [anon_sym_mutable] = ACTIONS(6618), - [anon_sym_constinit] = ACTIONS(6618), - [anon_sym_consteval] = ACTIONS(6618), - [anon_sym_alignas] = ACTIONS(6618), - [anon_sym__Alignas] = ACTIONS(6618), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_STAR_EQ] = ACTIONS(6618), - [anon_sym_SLASH_EQ] = ACTIONS(6618), - [anon_sym_PERCENT_EQ] = ACTIONS(6618), - [anon_sym_PLUS_EQ] = ACTIONS(6618), - [anon_sym_DASH_EQ] = ACTIONS(6618), - [anon_sym_LT_LT_EQ] = ACTIONS(6618), - [anon_sym_GT_GT_EQ] = ACTIONS(6618), - [anon_sym_AMP_EQ] = ACTIONS(6618), - [anon_sym_CARET_EQ] = ACTIONS(6618), - [anon_sym_PIPE_EQ] = ACTIONS(6618), - [anon_sym_and_eq] = ACTIONS(6618), - [anon_sym_or_eq] = ACTIONS(6618), - [anon_sym_xor_eq] = ACTIONS(6618), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6618), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6618), - [anon_sym_not_eq] = ACTIONS(6618), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6616), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6618), - [anon_sym_decltype] = ACTIONS(6618), - [anon_sym_final] = ACTIONS(6618), - [anon_sym_override] = ACTIONS(6618), - [anon_sym_requires] = ACTIONS(6618), - [anon_sym_DASH_GT_STAR] = ACTIONS(6618), + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RPAREN] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6653), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6651), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6651), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6651), + [anon_sym_GT_GT] = ACTIONS(6651), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym_virtual] = ACTIONS(6649), + [anon_sym_extern] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6656), + [anon_sym___declspec] = ACTIONS(6649), + [anon_sym___based] = ACTIONS(6649), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6660), + [anon_sym_static] = ACTIONS(6649), + [anon_sym_EQ] = ACTIONS(6649), + [anon_sym_register] = ACTIONS(6649), + [anon_sym_inline] = ACTIONS(6649), + [anon_sym___inline] = ACTIONS(6649), + [anon_sym___inline__] = ACTIONS(6649), + [anon_sym___forceinline] = ACTIONS(6649), + [anon_sym_thread_local] = ACTIONS(6649), + [anon_sym___thread] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6658), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6658), + [anon_sym_not_eq] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_template] = ACTIONS(6649), + [anon_sym_operator] = ACTIONS(6649), + [anon_sym_LBRACK_COLON] = ACTIONS(6656), }, [STATE(2443)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_RPAREN] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6620), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6620), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6620), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6620), - [anon_sym_GT_GT] = ACTIONS(6620), - [anon_sym___extension__] = ACTIONS(6622), - [anon_sym___attribute__] = ACTIONS(6622), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6622), - [anon_sym_EQ] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6622), - [anon_sym_volatile] = ACTIONS(6622), - [anon_sym_restrict] = ACTIONS(6622), - [anon_sym___restrict__] = ACTIONS(6622), - [anon_sym__Atomic] = ACTIONS(6622), - [anon_sym__Noreturn] = ACTIONS(6622), - [anon_sym_noreturn] = ACTIONS(6622), - [anon_sym__Nonnull] = ACTIONS(6622), - [anon_sym_mutable] = ACTIONS(6622), - [anon_sym_constinit] = ACTIONS(6622), - [anon_sym_consteval] = ACTIONS(6622), - [anon_sym_alignas] = ACTIONS(6622), - [anon_sym__Alignas] = ACTIONS(6622), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_STAR_EQ] = ACTIONS(6622), - [anon_sym_SLASH_EQ] = ACTIONS(6622), - [anon_sym_PERCENT_EQ] = ACTIONS(6622), - [anon_sym_PLUS_EQ] = ACTIONS(6622), - [anon_sym_DASH_EQ] = ACTIONS(6622), - [anon_sym_LT_LT_EQ] = ACTIONS(6622), - [anon_sym_GT_GT_EQ] = ACTIONS(6622), - [anon_sym_AMP_EQ] = ACTIONS(6622), - [anon_sym_CARET_EQ] = ACTIONS(6622), - [anon_sym_PIPE_EQ] = ACTIONS(6622), - [anon_sym_and_eq] = ACTIONS(6622), - [anon_sym_or_eq] = ACTIONS(6622), - [anon_sym_xor_eq] = ACTIONS(6622), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6622), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6622), - [anon_sym_not_eq] = ACTIONS(6622), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6620), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6622), - [anon_sym_decltype] = ACTIONS(6622), - [anon_sym_final] = ACTIONS(6622), - [anon_sym_override] = ACTIONS(6622), - [anon_sym_requires] = ACTIONS(6622), - [anon_sym_DASH_GT_STAR] = ACTIONS(6622), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2595), + [sym__function_exception_specification] = STATE(2948), + [sym__function_attributes_end] = STATE(4185), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3033), + [sym_noexcept] = STATE(2948), + [sym_throw_specifier] = STATE(2948), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7878), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7881), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(8235), + [anon_sym___attribute] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(6545), }, [STATE(2444)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8827), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9229), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9229), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym_ref_qualifier] = STATE(2529), + [sym__function_exception_specification] = STATE(2951), + [sym__function_attributes_end] = STATE(4324), + [sym__function_postfix] = STATE(5208), + [sym_trailing_return_type] = STATE(4426), + [sym_noexcept] = STATE(2951), + [sym_throw_specifier] = STATE(2951), + [sym_requires_clause] = STATE(5208), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(8244), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(8247), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7876), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7876), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8250), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8253), + [anon_sym_override] = ACTIONS(8253), + [anon_sym_GT2] = ACTIONS(7874), + [anon_sym_noexcept] = ACTIONS(6690), + [anon_sym_throw] = ACTIONS(6692), + [anon_sym_requires] = ACTIONS(8256), }, [STATE(2445)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), - [anon_sym_COMMA] = ACTIONS(7083), - [anon_sym_LPAREN2] = ACTIONS(7083), - [anon_sym_DASH] = ACTIONS(7081), - [anon_sym_PLUS] = ACTIONS(7081), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7081), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7083), - [anon_sym_AMP_AMP] = ACTIONS(7083), - [anon_sym_PIPE] = ACTIONS(7081), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7081), - [anon_sym_EQ_EQ] = ACTIONS(7083), - [anon_sym_BANG_EQ] = ACTIONS(7083), - [anon_sym_GT] = ACTIONS(7081), - [anon_sym_GT_EQ] = ACTIONS(7081), - [anon_sym_LT_EQ] = ACTIONS(7081), - [anon_sym_LT] = ACTIONS(7081), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(7083), - [anon_sym___attribute__] = ACTIONS(7083), - [anon_sym___attribute] = ACTIONS(7081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(7081), - [anon_sym_constexpr] = ACTIONS(7083), - [anon_sym_volatile] = ACTIONS(7083), - [anon_sym_restrict] = ACTIONS(7083), - [anon_sym___restrict__] = ACTIONS(7083), - [anon_sym__Atomic] = ACTIONS(7083), - [anon_sym__Noreturn] = ACTIONS(7083), - [anon_sym_noreturn] = ACTIONS(7083), - [anon_sym__Nonnull] = ACTIONS(7083), - [anon_sym_mutable] = ACTIONS(7083), - [anon_sym_constinit] = ACTIONS(7083), - [anon_sym_consteval] = ACTIONS(7083), - [anon_sym_alignas] = ACTIONS(7083), - [anon_sym__Alignas] = ACTIONS(7083), - [anon_sym_QMARK] = ACTIONS(7083), - [anon_sym_STAR_EQ] = ACTIONS(7083), - [anon_sym_SLASH_EQ] = ACTIONS(7083), - [anon_sym_PERCENT_EQ] = ACTIONS(7083), - [anon_sym_PLUS_EQ] = ACTIONS(7083), - [anon_sym_DASH_EQ] = ACTIONS(7083), - [anon_sym_LT_LT_EQ] = ACTIONS(7083), - [anon_sym_GT_GT_EQ] = ACTIONS(7081), - [anon_sym_AMP_EQ] = ACTIONS(7083), - [anon_sym_CARET_EQ] = ACTIONS(7083), - [anon_sym_PIPE_EQ] = ACTIONS(7083), - [anon_sym_and_eq] = ACTIONS(7083), - [anon_sym_or_eq] = ACTIONS(7083), - [anon_sym_xor_eq] = ACTIONS(7083), - [anon_sym_LT_EQ_GT] = ACTIONS(7083), - [anon_sym_or] = ACTIONS(7081), - [anon_sym_and] = ACTIONS(7081), - [anon_sym_bitor] = ACTIONS(7083), - [anon_sym_xor] = ACTIONS(7081), - [anon_sym_bitand] = ACTIONS(7083), - [anon_sym_not_eq] = ACTIONS(7083), - [anon_sym_DASH_DASH] = ACTIONS(7083), - [anon_sym_PLUS_PLUS] = ACTIONS(7083), - [anon_sym_asm] = ACTIONS(7083), - [anon_sym___asm__] = ACTIONS(7083), - [anon_sym___asm] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7081), - [anon_sym_DOT_STAR] = ACTIONS(7083), - [anon_sym_DASH_GT] = ACTIONS(7083), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7083), - [anon_sym_override] = ACTIONS(7083), - [anon_sym_GT2] = ACTIONS(7083), - [anon_sym_noexcept] = ACTIONS(7083), - [anon_sym_throw] = ACTIONS(7083), - [anon_sym_requires] = ACTIONS(7083), + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym_ref_qualifier] = STATE(2539), + [sym__function_exception_specification] = STATE(2954), + [sym__function_attributes_end] = STATE(4360), + [sym__function_postfix] = STATE(5251), + [sym_trailing_return_type] = STATE(4446), + [sym_noexcept] = STATE(2954), + [sym_throw_specifier] = STATE(2954), + [sym_requires_clause] = STATE(5251), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(8259), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(8262), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_RBRACK] = ACTIONS(7874), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8268), + [anon_sym_override] = ACTIONS(8268), + [anon_sym_noexcept] = ACTIONS(6719), + [anon_sym_throw] = ACTIONS(6721), + [anon_sym_requires] = ACTIONS(8271), }, [STATE(2446)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8696), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9229), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9229), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym_ref_qualifier] = STATE(2545), + [sym__function_exception_specification] = STATE(2960), + [sym__function_attributes_end] = STATE(4191), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3061), + [sym_noexcept] = STATE(2960), + [sym_throw_specifier] = STATE(2960), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7878), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7881), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(8235), + [anon_sym___attribute] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7887), + [anon_sym_override] = ACTIONS(7887), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(7890), + }, + [STATE(2447)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8701), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9222), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9222), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), + [anon_sym_template] = ACTIONS(5158), [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2447)] = { - [sym_string_literal] = STATE(2565), - [sym_template_argument_list] = STATE(3740), - [sym_raw_string_literal] = STATE(2565), - [sym_identifier] = ACTIONS(5645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(5638), - [aux_sym_preproc_if_token2] = ACTIONS(5638), - [aux_sym_preproc_else_token1] = ACTIONS(5638), - [aux_sym_preproc_elif_token1] = ACTIONS(5645), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5638), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(8258), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5638), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5645), - [anon_sym_or_eq] = ACTIONS(5645), - [anon_sym_xor_eq] = ACTIONS(5645), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_COLON_RBRACK] = ACTIONS(5638), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, [STATE(2448)] = { - [sym__abstract_declarator] = STATE(5512), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1975), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6821), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6821), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7144), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym___extension__] = ACTIONS(7146), + [anon_sym___attribute__] = ACTIONS(7146), + [anon_sym___attribute] = ACTIONS(7144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7144), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7146), + [anon_sym_volatile] = ACTIONS(7146), + [anon_sym_restrict] = ACTIONS(7146), + [anon_sym___restrict__] = ACTIONS(7146), + [anon_sym__Atomic] = ACTIONS(7146), + [anon_sym__Noreturn] = ACTIONS(7146), + [anon_sym_noreturn] = ACTIONS(7146), + [anon_sym__Nonnull] = ACTIONS(7146), + [anon_sym_mutable] = ACTIONS(7146), + [anon_sym_constinit] = ACTIONS(7146), + [anon_sym_consteval] = ACTIONS(7146), + [anon_sym_alignas] = ACTIONS(7146), + [anon_sym__Alignas] = ACTIONS(7146), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7144), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_and_eq] = ACTIONS(7146), + [anon_sym_or_eq] = ACTIONS(7146), + [anon_sym_xor_eq] = ACTIONS(7146), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7144), + [anon_sym_and] = ACTIONS(7144), + [anon_sym_bitor] = ACTIONS(7146), + [anon_sym_xor] = ACTIONS(7144), + [anon_sym_bitand] = ACTIONS(7146), + [anon_sym_not_eq] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_asm] = ACTIONS(7146), + [anon_sym___asm__] = ACTIONS(7146), + [anon_sym___asm] = ACTIONS(7144), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7146), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7146), + [anon_sym_override] = ACTIONS(7146), + [anon_sym_GT2] = ACTIONS(7146), + [anon_sym_noexcept] = ACTIONS(7146), + [anon_sym_throw] = ACTIONS(7146), + [anon_sym_requires] = ACTIONS(7146), }, [STATE(2449)] = { - [sym_type_qualifier] = STATE(2461), - [sym_alignas_qualifier] = STATE(2576), - [aux_sym__type_definition_type_repeat1] = STATE(2461), - [aux_sym_sized_type_specifier_repeat1] = STATE(2670), - [sym_identifier] = ACTIONS(8052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_RPAREN] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7251), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7251), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7251), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7251), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(7323), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(8261), - [anon_sym_unsigned] = ACTIONS(8261), - [anon_sym_long] = ACTIONS(8261), - [anon_sym_short] = ACTIONS(8261), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_EQ] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7323), - [anon_sym_volatile] = ACTIONS(7323), - [anon_sym_restrict] = ACTIONS(7323), - [anon_sym___restrict__] = ACTIONS(7323), - [anon_sym__Atomic] = ACTIONS(7323), - [anon_sym__Noreturn] = ACTIONS(7323), - [anon_sym_noreturn] = ACTIONS(7323), - [anon_sym__Nonnull] = ACTIONS(7323), - [anon_sym_mutable] = ACTIONS(7323), - [anon_sym_constinit] = ACTIONS(7323), - [anon_sym_consteval] = ACTIONS(7323), - [anon_sym_alignas] = ACTIONS(8263), - [anon_sym__Alignas] = ACTIONS(8263), - [sym_primitive_type] = ACTIONS(8062), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_STAR_EQ] = ACTIONS(7249), - [anon_sym_SLASH_EQ] = ACTIONS(7249), - [anon_sym_PERCENT_EQ] = ACTIONS(7249), - [anon_sym_PLUS_EQ] = ACTIONS(7249), - [anon_sym_DASH_EQ] = ACTIONS(7249), - [anon_sym_LT_LT_EQ] = ACTIONS(7249), - [anon_sym_GT_GT_EQ] = ACTIONS(7249), - [anon_sym_AMP_EQ] = ACTIONS(7249), - [anon_sym_CARET_EQ] = ACTIONS(7249), - [anon_sym_PIPE_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7251), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_RPAREN] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6586), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6586), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6586), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6586), + [anon_sym_GT_GT] = ACTIONS(6586), + [anon_sym___extension__] = ACTIONS(6588), + [anon_sym___attribute__] = ACTIONS(6588), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6588), + [anon_sym_EQ] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6588), + [anon_sym_volatile] = ACTIONS(6588), + [anon_sym_restrict] = ACTIONS(6588), + [anon_sym___restrict__] = ACTIONS(6588), + [anon_sym__Atomic] = ACTIONS(6588), + [anon_sym__Noreturn] = ACTIONS(6588), + [anon_sym_noreturn] = ACTIONS(6588), + [anon_sym__Nonnull] = ACTIONS(6588), + [anon_sym_mutable] = ACTIONS(6588), + [anon_sym_constinit] = ACTIONS(6588), + [anon_sym_consteval] = ACTIONS(6588), + [anon_sym_alignas] = ACTIONS(6588), + [anon_sym__Alignas] = ACTIONS(6588), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_STAR_EQ] = ACTIONS(6588), + [anon_sym_SLASH_EQ] = ACTIONS(6588), + [anon_sym_PERCENT_EQ] = ACTIONS(6588), + [anon_sym_PLUS_EQ] = ACTIONS(6588), + [anon_sym_DASH_EQ] = ACTIONS(6588), + [anon_sym_LT_LT_EQ] = ACTIONS(6588), + [anon_sym_GT_GT_EQ] = ACTIONS(6588), + [anon_sym_AMP_EQ] = ACTIONS(6588), + [anon_sym_CARET_EQ] = ACTIONS(6588), + [anon_sym_PIPE_EQ] = ACTIONS(6588), + [anon_sym_and_eq] = ACTIONS(6588), + [anon_sym_or_eq] = ACTIONS(6588), + [anon_sym_xor_eq] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6588), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6588), + [anon_sym_not_eq] = ACTIONS(6588), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6588), + [anon_sym_decltype] = ACTIONS(6588), + [anon_sym_final] = ACTIONS(6588), + [anon_sym_override] = ACTIONS(6588), + [anon_sym_requires] = ACTIONS(6588), + [anon_sym_DASH_GT_STAR] = ACTIONS(6588), }, [STATE(2450)] = { - [sym__abstract_declarator] = STATE(5503), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1975), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7353), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7353), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7355), - [anon_sym_or_eq] = ACTIONS(7355), - [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7355), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_RPAREN] = ACTIONS(6880), + [aux_sym_preproc_if_token2] = ACTIONS(6880), + [aux_sym_preproc_else_token1] = ACTIONS(6880), + [aux_sym_preproc_elif_token1] = ACTIONS(6878), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6880), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6880), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6880), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6880), + [anon_sym_GT_GT] = ACTIONS(6880), + [anon_sym_SEMI] = ACTIONS(6880), + [anon_sym___extension__] = ACTIONS(8292), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_COLON] = ACTIONS(6878), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6880), + [anon_sym_LBRACE] = ACTIONS(6880), + [anon_sym_RBRACE] = ACTIONS(6880), + [anon_sym_signed] = ACTIONS(6878), + [anon_sym_unsigned] = ACTIONS(6878), + [anon_sym_long] = ACTIONS(6878), + [anon_sym_short] = ACTIONS(6878), + [anon_sym_LBRACK] = ACTIONS(6880), + [anon_sym_const] = ACTIONS(8292), + [anon_sym_constexpr] = ACTIONS(8292), + [anon_sym_volatile] = ACTIONS(8292), + [anon_sym_restrict] = ACTIONS(8292), + [anon_sym___restrict__] = ACTIONS(8292), + [anon_sym__Atomic] = ACTIONS(8292), + [anon_sym__Noreturn] = ACTIONS(8292), + [anon_sym_noreturn] = ACTIONS(8292), + [anon_sym__Nonnull] = ACTIONS(8292), + [anon_sym_mutable] = ACTIONS(8292), + [anon_sym_constinit] = ACTIONS(8292), + [anon_sym_consteval] = ACTIONS(8292), + [anon_sym_alignas] = ACTIONS(8295), + [anon_sym__Alignas] = ACTIONS(8295), + [sym_primitive_type] = ACTIONS(6878), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6878), + [anon_sym_COLON_RBRACK] = ACTIONS(6880), }, [STATE(2451)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_RPAREN] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6624), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6624), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6624), - [anon_sym_GT_GT] = ACTIONS(6624), - [anon_sym___extension__] = ACTIONS(6626), - [anon_sym___attribute__] = ACTIONS(6626), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6626), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6626), - [anon_sym_volatile] = ACTIONS(6626), - [anon_sym_restrict] = ACTIONS(6626), - [anon_sym___restrict__] = ACTIONS(6626), - [anon_sym__Atomic] = ACTIONS(6626), - [anon_sym__Noreturn] = ACTIONS(6626), - [anon_sym_noreturn] = ACTIONS(6626), - [anon_sym__Nonnull] = ACTIONS(6626), - [anon_sym_mutable] = ACTIONS(6626), - [anon_sym_constinit] = ACTIONS(6626), - [anon_sym_consteval] = ACTIONS(6626), - [anon_sym_alignas] = ACTIONS(6626), - [anon_sym__Alignas] = ACTIONS(6626), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_STAR_EQ] = ACTIONS(6626), - [anon_sym_SLASH_EQ] = ACTIONS(6626), - [anon_sym_PERCENT_EQ] = ACTIONS(6626), - [anon_sym_PLUS_EQ] = ACTIONS(6626), - [anon_sym_DASH_EQ] = ACTIONS(6626), - [anon_sym_LT_LT_EQ] = ACTIONS(6626), - [anon_sym_GT_GT_EQ] = ACTIONS(6626), - [anon_sym_AMP_EQ] = ACTIONS(6626), - [anon_sym_CARET_EQ] = ACTIONS(6626), - [anon_sym_PIPE_EQ] = ACTIONS(6626), - [anon_sym_and_eq] = ACTIONS(6626), - [anon_sym_or_eq] = ACTIONS(6626), - [anon_sym_xor_eq] = ACTIONS(6626), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6626), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6626), - [anon_sym_not_eq] = ACTIONS(6626), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6624), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6626), - [anon_sym_decltype] = ACTIONS(6626), - [anon_sym_final] = ACTIONS(6626), - [anon_sym_override] = ACTIONS(6626), - [anon_sym_requires] = ACTIONS(6626), - [anon_sym_DASH_GT_STAR] = ACTIONS(6626), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7142), + [anon_sym_COMMA] = ACTIONS(7142), + [anon_sym_LPAREN2] = ACTIONS(7142), + [anon_sym_DASH] = ACTIONS(7140), + [anon_sym_PLUS] = ACTIONS(7140), + [anon_sym_STAR] = ACTIONS(7140), + [anon_sym_SLASH] = ACTIONS(7140), + [anon_sym_PERCENT] = ACTIONS(7140), + [anon_sym_PIPE_PIPE] = ACTIONS(7142), + [anon_sym_AMP_AMP] = ACTIONS(7142), + [anon_sym_PIPE] = ACTIONS(7140), + [anon_sym_CARET] = ACTIONS(7140), + [anon_sym_AMP] = ACTIONS(7140), + [anon_sym_EQ_EQ] = ACTIONS(7142), + [anon_sym_BANG_EQ] = ACTIONS(7142), + [anon_sym_GT] = ACTIONS(7140), + [anon_sym_GT_EQ] = ACTIONS(7140), + [anon_sym_LT_EQ] = ACTIONS(7140), + [anon_sym_LT] = ACTIONS(7140), + [anon_sym_LT_LT] = ACTIONS(7140), + [anon_sym_GT_GT] = ACTIONS(7140), + [anon_sym___extension__] = ACTIONS(7142), + [anon_sym___attribute__] = ACTIONS(7142), + [anon_sym___attribute] = ACTIONS(7140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7142), + [anon_sym_LBRACK] = ACTIONS(7140), + [anon_sym_EQ] = ACTIONS(7140), + [anon_sym_const] = ACTIONS(7140), + [anon_sym_constexpr] = ACTIONS(7142), + [anon_sym_volatile] = ACTIONS(7142), + [anon_sym_restrict] = ACTIONS(7142), + [anon_sym___restrict__] = ACTIONS(7142), + [anon_sym__Atomic] = ACTIONS(7142), + [anon_sym__Noreturn] = ACTIONS(7142), + [anon_sym_noreturn] = ACTIONS(7142), + [anon_sym__Nonnull] = ACTIONS(7142), + [anon_sym_mutable] = ACTIONS(7142), + [anon_sym_constinit] = ACTIONS(7142), + [anon_sym_consteval] = ACTIONS(7142), + [anon_sym_alignas] = ACTIONS(7142), + [anon_sym__Alignas] = ACTIONS(7142), + [anon_sym_QMARK] = ACTIONS(7142), + [anon_sym_STAR_EQ] = ACTIONS(7142), + [anon_sym_SLASH_EQ] = ACTIONS(7142), + [anon_sym_PERCENT_EQ] = ACTIONS(7142), + [anon_sym_PLUS_EQ] = ACTIONS(7142), + [anon_sym_DASH_EQ] = ACTIONS(7142), + [anon_sym_LT_LT_EQ] = ACTIONS(7142), + [anon_sym_GT_GT_EQ] = ACTIONS(7140), + [anon_sym_AMP_EQ] = ACTIONS(7142), + [anon_sym_CARET_EQ] = ACTIONS(7142), + [anon_sym_PIPE_EQ] = ACTIONS(7142), + [anon_sym_and_eq] = ACTIONS(7142), + [anon_sym_or_eq] = ACTIONS(7142), + [anon_sym_xor_eq] = ACTIONS(7142), + [anon_sym_LT_EQ_GT] = ACTIONS(7142), + [anon_sym_or] = ACTIONS(7140), + [anon_sym_and] = ACTIONS(7140), + [anon_sym_bitor] = ACTIONS(7142), + [anon_sym_xor] = ACTIONS(7140), + [anon_sym_bitand] = ACTIONS(7142), + [anon_sym_not_eq] = ACTIONS(7142), + [anon_sym_DASH_DASH] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(7142), + [anon_sym_asm] = ACTIONS(7142), + [anon_sym___asm__] = ACTIONS(7142), + [anon_sym___asm] = ACTIONS(7140), + [anon_sym_DOT] = ACTIONS(7140), + [anon_sym_DOT_STAR] = ACTIONS(7142), + [anon_sym_DASH_GT] = ACTIONS(7142), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7142), + [anon_sym_override] = ACTIONS(7142), + [anon_sym_GT2] = ACTIONS(7142), + [anon_sym_noexcept] = ACTIONS(7142), + [anon_sym_throw] = ACTIONS(7142), + [anon_sym_requires] = ACTIONS(7142), }, [STATE(2452)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym___extension__] = ACTIONS(3118), - [anon_sym___attribute__] = ACTIONS(3118), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_EQ] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3118), - [anon_sym_volatile] = ACTIONS(3118), - [anon_sym_restrict] = ACTIONS(3118), - [anon_sym___restrict__] = ACTIONS(3118), - [anon_sym__Atomic] = ACTIONS(3118), - [anon_sym__Noreturn] = ACTIONS(3118), - [anon_sym_noreturn] = ACTIONS(3118), - [anon_sym__Nonnull] = ACTIONS(3118), - [anon_sym_mutable] = ACTIONS(3118), - [anon_sym_constinit] = ACTIONS(3118), - [anon_sym_consteval] = ACTIONS(3118), - [anon_sym_alignas] = ACTIONS(3118), - [anon_sym__Alignas] = ACTIONS(3118), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_and_eq] = ACTIONS(3118), - [anon_sym_or_eq] = ACTIONS(3118), - [anon_sym_xor_eq] = ACTIONS(3118), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3118), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3118), - [anon_sym_not_eq] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_asm] = ACTIONS(3118), - [anon_sym___asm__] = ACTIONS(3118), - [anon_sym___asm] = ACTIONS(3128), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3118), - [anon_sym_override] = ACTIONS(3118), - [anon_sym_noexcept] = ACTIONS(3118), - [anon_sym_throw] = ACTIONS(3118), - [anon_sym_requires] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7329), + [anon_sym_or_eq] = ACTIONS(7329), + [anon_sym_xor_eq] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), + [anon_sym_DASH_GT_STAR] = ACTIONS(7329), }, [STATE(2453)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), - [anon_sym_COMMA] = ACTIONS(7110), - [anon_sym_LPAREN2] = ACTIONS(7110), - [anon_sym_DASH] = ACTIONS(7108), - [anon_sym_PLUS] = ACTIONS(7108), - [anon_sym_STAR] = ACTIONS(7108), - [anon_sym_SLASH] = ACTIONS(7108), - [anon_sym_PERCENT] = ACTIONS(7108), - [anon_sym_PIPE_PIPE] = ACTIONS(7110), - [anon_sym_AMP_AMP] = ACTIONS(7110), - [anon_sym_PIPE] = ACTIONS(7108), - [anon_sym_CARET] = ACTIONS(7108), - [anon_sym_AMP] = ACTIONS(7108), - [anon_sym_EQ_EQ] = ACTIONS(7110), - [anon_sym_BANG_EQ] = ACTIONS(7110), - [anon_sym_GT] = ACTIONS(7108), - [anon_sym_GT_EQ] = ACTIONS(7110), - [anon_sym_LT_EQ] = ACTIONS(7108), - [anon_sym_LT] = ACTIONS(7108), - [anon_sym_LT_LT] = ACTIONS(7108), - [anon_sym_GT_GT] = ACTIONS(7108), - [anon_sym___extension__] = ACTIONS(7110), - [anon_sym___attribute__] = ACTIONS(7110), - [anon_sym___attribute] = ACTIONS(7108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), - [anon_sym_LBRACK] = ACTIONS(7108), - [anon_sym_RBRACK] = ACTIONS(7110), - [anon_sym_EQ] = ACTIONS(7108), - [anon_sym_const] = ACTIONS(7108), - [anon_sym_constexpr] = ACTIONS(7110), - [anon_sym_volatile] = ACTIONS(7110), - [anon_sym_restrict] = ACTIONS(7110), - [anon_sym___restrict__] = ACTIONS(7110), - [anon_sym__Atomic] = ACTIONS(7110), - [anon_sym__Noreturn] = ACTIONS(7110), - [anon_sym_noreturn] = ACTIONS(7110), - [anon_sym__Nonnull] = ACTIONS(7110), - [anon_sym_mutable] = ACTIONS(7110), - [anon_sym_constinit] = ACTIONS(7110), - [anon_sym_consteval] = ACTIONS(7110), - [anon_sym_alignas] = ACTIONS(7110), - [anon_sym__Alignas] = ACTIONS(7110), - [anon_sym_QMARK] = ACTIONS(7110), - [anon_sym_STAR_EQ] = ACTIONS(7110), - [anon_sym_SLASH_EQ] = ACTIONS(7110), - [anon_sym_PERCENT_EQ] = ACTIONS(7110), - [anon_sym_PLUS_EQ] = ACTIONS(7110), - [anon_sym_DASH_EQ] = ACTIONS(7110), - [anon_sym_LT_LT_EQ] = ACTIONS(7110), - [anon_sym_GT_GT_EQ] = ACTIONS(7110), - [anon_sym_AMP_EQ] = ACTIONS(7110), - [anon_sym_CARET_EQ] = ACTIONS(7110), - [anon_sym_PIPE_EQ] = ACTIONS(7110), - [anon_sym_and_eq] = ACTIONS(7110), - [anon_sym_or_eq] = ACTIONS(7110), - [anon_sym_xor_eq] = ACTIONS(7110), - [anon_sym_LT_EQ_GT] = ACTIONS(7110), - [anon_sym_or] = ACTIONS(7108), - [anon_sym_and] = ACTIONS(7108), - [anon_sym_bitor] = ACTIONS(7110), - [anon_sym_xor] = ACTIONS(7108), - [anon_sym_bitand] = ACTIONS(7110), - [anon_sym_not_eq] = ACTIONS(7110), - [anon_sym_DASH_DASH] = ACTIONS(7110), - [anon_sym_PLUS_PLUS] = ACTIONS(7110), - [anon_sym_asm] = ACTIONS(7110), - [anon_sym___asm__] = ACTIONS(7110), - [anon_sym___asm] = ACTIONS(7108), - [anon_sym_DOT] = ACTIONS(7108), - [anon_sym_DOT_STAR] = ACTIONS(7110), - [anon_sym_DASH_GT] = ACTIONS(7110), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7110), - [anon_sym_override] = ACTIONS(7110), - [anon_sym_noexcept] = ACTIONS(7110), - [anon_sym_throw] = ACTIONS(7110), - [anon_sym_requires] = ACTIONS(7110), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7329), + [anon_sym_or_eq] = ACTIONS(7329), + [anon_sym_xor_eq] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), + [anon_sym_DASH_GT_STAR] = ACTIONS(7329), }, [STATE(2454)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8830), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9266), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9266), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7333), + [anon_sym_COMMA] = ACTIONS(7333), + [anon_sym_RPAREN] = ACTIONS(7333), + [anon_sym_LPAREN2] = ACTIONS(7333), + [anon_sym_DASH] = ACTIONS(7331), + [anon_sym_PLUS] = ACTIONS(7331), + [anon_sym_STAR] = ACTIONS(7331), + [anon_sym_SLASH] = ACTIONS(7331), + [anon_sym_PERCENT] = ACTIONS(7331), + [anon_sym_PIPE_PIPE] = ACTIONS(7333), + [anon_sym_AMP_AMP] = ACTIONS(7333), + [anon_sym_PIPE] = ACTIONS(7331), + [anon_sym_CARET] = ACTIONS(7331), + [anon_sym_AMP] = ACTIONS(7331), + [anon_sym_EQ_EQ] = ACTIONS(7333), + [anon_sym_BANG_EQ] = ACTIONS(7333), + [anon_sym_GT] = ACTIONS(7331), + [anon_sym_GT_EQ] = ACTIONS(7333), + [anon_sym_LT_EQ] = ACTIONS(7331), + [anon_sym_LT] = ACTIONS(7331), + [anon_sym_LT_LT] = ACTIONS(7331), + [anon_sym_GT_GT] = ACTIONS(7331), + [anon_sym___extension__] = ACTIONS(7333), + [anon_sym___attribute__] = ACTIONS(7333), + [anon_sym___attribute] = ACTIONS(7331), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_COLON_COLON] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7333), + [anon_sym_LBRACK] = ACTIONS(7333), + [anon_sym_EQ] = ACTIONS(7331), + [anon_sym_const] = ACTIONS(7331), + [anon_sym_constexpr] = ACTIONS(7333), + [anon_sym_volatile] = ACTIONS(7333), + [anon_sym_restrict] = ACTIONS(7333), + [anon_sym___restrict__] = ACTIONS(7333), + [anon_sym__Atomic] = ACTIONS(7333), + [anon_sym__Noreturn] = ACTIONS(7333), + [anon_sym_noreturn] = ACTIONS(7333), + [anon_sym__Nonnull] = ACTIONS(7333), + [anon_sym_mutable] = ACTIONS(7333), + [anon_sym_constinit] = ACTIONS(7333), + [anon_sym_consteval] = ACTIONS(7333), + [anon_sym_alignas] = ACTIONS(7333), + [anon_sym__Alignas] = ACTIONS(7333), + [anon_sym_QMARK] = ACTIONS(7333), + [anon_sym_STAR_EQ] = ACTIONS(7333), + [anon_sym_SLASH_EQ] = ACTIONS(7333), + [anon_sym_PERCENT_EQ] = ACTIONS(7333), + [anon_sym_PLUS_EQ] = ACTIONS(7333), + [anon_sym_DASH_EQ] = ACTIONS(7333), + [anon_sym_LT_LT_EQ] = ACTIONS(7333), + [anon_sym_GT_GT_EQ] = ACTIONS(7333), + [anon_sym_AMP_EQ] = ACTIONS(7333), + [anon_sym_CARET_EQ] = ACTIONS(7333), + [anon_sym_PIPE_EQ] = ACTIONS(7333), + [anon_sym_and_eq] = ACTIONS(7333), + [anon_sym_or_eq] = ACTIONS(7333), + [anon_sym_xor_eq] = ACTIONS(7333), + [anon_sym_LT_EQ_GT] = ACTIONS(7333), + [anon_sym_or] = ACTIONS(7331), + [anon_sym_and] = ACTIONS(7331), + [anon_sym_bitor] = ACTIONS(7333), + [anon_sym_xor] = ACTIONS(7331), + [anon_sym_bitand] = ACTIONS(7333), + [anon_sym_not_eq] = ACTIONS(7333), + [anon_sym_DASH_DASH] = ACTIONS(7333), + [anon_sym_PLUS_PLUS] = ACTIONS(7333), + [anon_sym_DOT] = ACTIONS(7331), + [anon_sym_DOT_STAR] = ACTIONS(7333), + [anon_sym_DASH_GT] = ACTIONS(7331), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7333), + [anon_sym_decltype] = ACTIONS(7333), + [anon_sym_final] = ACTIONS(7333), + [anon_sym_override] = ACTIONS(7333), + [anon_sym_requires] = ACTIONS(7333), + [anon_sym_DASH_GT_STAR] = ACTIONS(7333), }, [STATE(2455)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), - [anon_sym_DASH_GT_STAR] = ACTIONS(7293), + [sym_attribute_specifier] = STATE(2455), + [aux_sym_type_definition_repeat1] = STATE(2455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6966), + [anon_sym_COMMA] = ACTIONS(6966), + [anon_sym_RPAREN] = ACTIONS(6966), + [anon_sym_LPAREN2] = ACTIONS(6966), + [anon_sym_DASH] = ACTIONS(6964), + [anon_sym_PLUS] = ACTIONS(6964), + [anon_sym_STAR] = ACTIONS(6964), + [anon_sym_SLASH] = ACTIONS(6964), + [anon_sym_PERCENT] = ACTIONS(6964), + [anon_sym_PIPE_PIPE] = ACTIONS(6966), + [anon_sym_AMP_AMP] = ACTIONS(6966), + [anon_sym_PIPE] = ACTIONS(6964), + [anon_sym_CARET] = ACTIONS(6964), + [anon_sym_AMP] = ACTIONS(6964), + [anon_sym_EQ_EQ] = ACTIONS(6966), + [anon_sym_BANG_EQ] = ACTIONS(6966), + [anon_sym_GT] = ACTIONS(6964), + [anon_sym_GT_EQ] = ACTIONS(6966), + [anon_sym_LT_EQ] = ACTIONS(6964), + [anon_sym_LT] = ACTIONS(6964), + [anon_sym_LT_LT] = ACTIONS(6964), + [anon_sym_GT_GT] = ACTIONS(6964), + [anon_sym___extension__] = ACTIONS(6966), + [anon_sym___attribute__] = ACTIONS(8298), + [anon_sym___attribute] = ACTIONS(8301), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6966), + [anon_sym_LBRACK] = ACTIONS(6964), + [anon_sym_EQ] = ACTIONS(6964), + [anon_sym_const] = ACTIONS(6964), + [anon_sym_constexpr] = ACTIONS(6966), + [anon_sym_volatile] = ACTIONS(6966), + [anon_sym_restrict] = ACTIONS(6966), + [anon_sym___restrict__] = ACTIONS(6966), + [anon_sym__Atomic] = ACTIONS(6966), + [anon_sym__Noreturn] = ACTIONS(6966), + [anon_sym_noreturn] = ACTIONS(6966), + [anon_sym__Nonnull] = ACTIONS(6966), + [anon_sym_mutable] = ACTIONS(6966), + [anon_sym_constinit] = ACTIONS(6966), + [anon_sym_consteval] = ACTIONS(6966), + [anon_sym_alignas] = ACTIONS(6966), + [anon_sym__Alignas] = ACTIONS(6966), + [anon_sym_QMARK] = ACTIONS(6966), + [anon_sym_STAR_EQ] = ACTIONS(6966), + [anon_sym_SLASH_EQ] = ACTIONS(6966), + [anon_sym_PERCENT_EQ] = ACTIONS(6966), + [anon_sym_PLUS_EQ] = ACTIONS(6966), + [anon_sym_DASH_EQ] = ACTIONS(6966), + [anon_sym_LT_LT_EQ] = ACTIONS(6966), + [anon_sym_GT_GT_EQ] = ACTIONS(6966), + [anon_sym_AMP_EQ] = ACTIONS(6966), + [anon_sym_CARET_EQ] = ACTIONS(6966), + [anon_sym_PIPE_EQ] = ACTIONS(6966), + [anon_sym_LT_EQ_GT] = ACTIONS(6966), + [anon_sym_or] = ACTIONS(6966), + [anon_sym_and] = ACTIONS(6966), + [anon_sym_bitor] = ACTIONS(6966), + [anon_sym_xor] = ACTIONS(6966), + [anon_sym_bitand] = ACTIONS(6966), + [anon_sym_not_eq] = ACTIONS(6966), + [anon_sym_DASH_DASH] = ACTIONS(6966), + [anon_sym_PLUS_PLUS] = ACTIONS(6966), + [anon_sym_asm] = ACTIONS(6966), + [anon_sym___asm__] = ACTIONS(6966), + [anon_sym___asm] = ACTIONS(6964), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_DOT_STAR] = ACTIONS(6966), + [anon_sym_DASH_GT] = ACTIONS(6964), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6966), + [anon_sym_override] = ACTIONS(6966), + [anon_sym_noexcept] = ACTIONS(6966), + [anon_sym_throw] = ACTIONS(6966), + [anon_sym_requires] = ACTIONS(6966), + [anon_sym_DASH_GT_STAR] = ACTIONS(6966), }, [STATE(2456)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8759), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9214), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9214), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [sym_type_qualifier] = STATE(2520), + [sym_alignas_qualifier] = STATE(2525), + [aux_sym__type_definition_type_repeat1] = STATE(2520), + [aux_sym_sized_type_specifier_repeat1] = STATE(2682), + [sym_identifier] = ACTIONS(8055), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_RPAREN] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7211), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7211), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7211), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7211), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(7309), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(8304), + [anon_sym_unsigned] = ACTIONS(8304), + [anon_sym_long] = ACTIONS(8304), + [anon_sym_short] = ACTIONS(8304), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_EQ] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7309), + [anon_sym_volatile] = ACTIONS(7309), + [anon_sym_restrict] = ACTIONS(7309), + [anon_sym___restrict__] = ACTIONS(7309), + [anon_sym__Atomic] = ACTIONS(7309), + [anon_sym__Noreturn] = ACTIONS(7309), + [anon_sym_noreturn] = ACTIONS(7309), + [anon_sym__Nonnull] = ACTIONS(7309), + [anon_sym_mutable] = ACTIONS(7309), + [anon_sym_constinit] = ACTIONS(7309), + [anon_sym_consteval] = ACTIONS(7309), + [anon_sym_alignas] = ACTIONS(8306), + [anon_sym__Alignas] = ACTIONS(8306), + [sym_primitive_type] = ACTIONS(8065), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_STAR_EQ] = ACTIONS(7209), + [anon_sym_SLASH_EQ] = ACTIONS(7209), + [anon_sym_PERCENT_EQ] = ACTIONS(7209), + [anon_sym_PLUS_EQ] = ACTIONS(7209), + [anon_sym_DASH_EQ] = ACTIONS(7209), + [anon_sym_LT_LT_EQ] = ACTIONS(7209), + [anon_sym_GT_GT_EQ] = ACTIONS(7209), + [anon_sym_AMP_EQ] = ACTIONS(7209), + [anon_sym_CARET_EQ] = ACTIONS(7209), + [anon_sym_PIPE_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7211), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7209), }, [STATE(2457)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), - [anon_sym_DASH_GT_STAR] = ACTIONS(7293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(6604), + [anon_sym___attribute__] = ACTIONS(6604), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6604), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6604), + [anon_sym_volatile] = ACTIONS(6604), + [anon_sym_restrict] = ACTIONS(6604), + [anon_sym___restrict__] = ACTIONS(6604), + [anon_sym__Atomic] = ACTIONS(6604), + [anon_sym__Noreturn] = ACTIONS(6604), + [anon_sym_noreturn] = ACTIONS(6604), + [anon_sym__Nonnull] = ACTIONS(6604), + [anon_sym_mutable] = ACTIONS(6604), + [anon_sym_constinit] = ACTIONS(6604), + [anon_sym_consteval] = ACTIONS(6604), + [anon_sym_alignas] = ACTIONS(6604), + [anon_sym__Alignas] = ACTIONS(6604), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_STAR_EQ] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [anon_sym_PERCENT_EQ] = ACTIONS(6604), + [anon_sym_PLUS_EQ] = ACTIONS(6604), + [anon_sym_DASH_EQ] = ACTIONS(6604), + [anon_sym_LT_LT_EQ] = ACTIONS(6604), + [anon_sym_GT_GT_EQ] = ACTIONS(6604), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_and_eq] = ACTIONS(6604), + [anon_sym_or_eq] = ACTIONS(6604), + [anon_sym_xor_eq] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6604), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6604), + [anon_sym_not_eq] = ACTIONS(6604), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6604), + [anon_sym_decltype] = ACTIONS(6604), + [anon_sym_final] = ACTIONS(6604), + [anon_sym_override] = ACTIONS(6604), + [anon_sym_requires] = ACTIONS(6604), + [anon_sym_DASH_GT_STAR] = ACTIONS(6604), }, [STATE(2458)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym__function_exception_specification] = STATE(2908), - [sym__function_attributes_end] = STATE(4298), - [sym__function_postfix] = STATE(4840), - [sym_trailing_return_type] = STATE(4339), - [sym_noexcept] = STATE(2908), - [sym_throw_specifier] = STATE(2908), - [sym_requires_clause] = STATE(4840), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8168), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8174), - [anon_sym_override] = ACTIONS(8174), - [anon_sym_noexcept] = ACTIONS(6662), - [anon_sym_throw] = ACTIONS(6664), - [anon_sym_requires] = ACTIONS(8177), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6606), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_STAR_EQ] = ACTIONS(6608), + [anon_sym_SLASH_EQ] = ACTIONS(6608), + [anon_sym_PERCENT_EQ] = ACTIONS(6608), + [anon_sym_PLUS_EQ] = ACTIONS(6608), + [anon_sym_DASH_EQ] = ACTIONS(6608), + [anon_sym_LT_LT_EQ] = ACTIONS(6608), + [anon_sym_GT_GT_EQ] = ACTIONS(6608), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_and_eq] = ACTIONS(6608), + [anon_sym_or_eq] = ACTIONS(6608), + [anon_sym_xor_eq] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6606), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_final] = ACTIONS(6608), + [anon_sym_override] = ACTIONS(6608), + [anon_sym_requires] = ACTIONS(6608), + [anon_sym_DASH_GT_STAR] = ACTIONS(6608), }, [STATE(2459)] = { - [sym_type_qualifier] = STATE(2500), - [sym_alignas_qualifier] = STATE(2727), - [aux_sym__type_definition_type_repeat1] = STATE(2500), - [sym_identifier] = ACTIONS(6752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_RPAREN] = ACTIONS(6754), - [aux_sym_preproc_if_token2] = ACTIONS(6754), - [aux_sym_preproc_else_token1] = ACTIONS(6754), - [aux_sym_preproc_elif_token1] = ACTIONS(6752), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6754), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6754), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6754), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6754), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6754), - [anon_sym_GT_GT] = ACTIONS(6754), - [anon_sym_SEMI] = ACTIONS(6754), - [anon_sym___extension__] = ACTIONS(7182), - [anon_sym___attribute__] = ACTIONS(6752), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_COLON] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6754), - [anon_sym_RBRACE] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(7182), - [anon_sym_constexpr] = ACTIONS(7182), - [anon_sym_volatile] = ACTIONS(7182), - [anon_sym_restrict] = ACTIONS(7182), - [anon_sym___restrict__] = ACTIONS(7182), - [anon_sym__Atomic] = ACTIONS(7182), - [anon_sym__Noreturn] = ACTIONS(7182), - [anon_sym_noreturn] = ACTIONS(7182), - [anon_sym__Nonnull] = ACTIONS(7182), - [anon_sym_mutable] = ACTIONS(7182), - [anon_sym_constinit] = ACTIONS(7182), - [anon_sym_consteval] = ACTIONS(7182), - [anon_sym_alignas] = ACTIONS(7268), - [anon_sym__Alignas] = ACTIONS(7268), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6752), - [anon_sym_and] = ACTIONS(6752), - [anon_sym_bitor] = ACTIONS(6752), - [anon_sym_xor] = ACTIONS(6752), - [anon_sym_bitand] = ACTIONS(6752), - [anon_sym_not_eq] = ACTIONS(6752), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6752), - [anon_sym___asm__] = ACTIONS(6752), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6752), - [anon_sym_override] = ACTIONS(6752), - [anon_sym_noexcept] = ACTIONS(6752), - [anon_sym_throw] = ACTIONS(6752), - [anon_sym_requires] = ACTIONS(6752), - [anon_sym_COLON_RBRACK] = ACTIONS(6754), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_RPAREN] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6590), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6590), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6590), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6590), + [anon_sym_GT_GT] = ACTIONS(6590), + [anon_sym___extension__] = ACTIONS(6592), + [anon_sym___attribute__] = ACTIONS(6592), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6592), + [anon_sym_EQ] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6592), + [anon_sym_volatile] = ACTIONS(6592), + [anon_sym_restrict] = ACTIONS(6592), + [anon_sym___restrict__] = ACTIONS(6592), + [anon_sym__Atomic] = ACTIONS(6592), + [anon_sym__Noreturn] = ACTIONS(6592), + [anon_sym_noreturn] = ACTIONS(6592), + [anon_sym__Nonnull] = ACTIONS(6592), + [anon_sym_mutable] = ACTIONS(6592), + [anon_sym_constinit] = ACTIONS(6592), + [anon_sym_consteval] = ACTIONS(6592), + [anon_sym_alignas] = ACTIONS(6592), + [anon_sym__Alignas] = ACTIONS(6592), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_STAR_EQ] = ACTIONS(6592), + [anon_sym_SLASH_EQ] = ACTIONS(6592), + [anon_sym_PERCENT_EQ] = ACTIONS(6592), + [anon_sym_PLUS_EQ] = ACTIONS(6592), + [anon_sym_DASH_EQ] = ACTIONS(6592), + [anon_sym_LT_LT_EQ] = ACTIONS(6592), + [anon_sym_GT_GT_EQ] = ACTIONS(6592), + [anon_sym_AMP_EQ] = ACTIONS(6592), + [anon_sym_CARET_EQ] = ACTIONS(6592), + [anon_sym_PIPE_EQ] = ACTIONS(6592), + [anon_sym_and_eq] = ACTIONS(6592), + [anon_sym_or_eq] = ACTIONS(6592), + [anon_sym_xor_eq] = ACTIONS(6592), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6592), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6592), + [anon_sym_not_eq] = ACTIONS(6592), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6592), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_final] = ACTIONS(6592), + [anon_sym_override] = ACTIONS(6592), + [anon_sym_requires] = ACTIONS(6592), + [anon_sym_DASH_GT_STAR] = ACTIONS(6592), }, [STATE(2460)] = { - [sym_attribute_specifier] = STATE(3242), - [sym_field_declaration_list] = STATE(2895), - [sym_virtual_specifier] = STATE(9570), - [sym_base_class_clause] = STATE(10484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7235), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7235), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7235), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7235), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7235), - [anon_sym___extension__] = ACTIONS(7237), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_COLON] = ACTIONS(8156), - [anon_sym_LBRACE] = ACTIONS(8269), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_EQ] = ACTIONS(7235), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7237), - [anon_sym_volatile] = ACTIONS(7237), - [anon_sym_restrict] = ACTIONS(7237), - [anon_sym___restrict__] = ACTIONS(7237), - [anon_sym__Atomic] = ACTIONS(7237), - [anon_sym__Noreturn] = ACTIONS(7237), - [anon_sym_noreturn] = ACTIONS(7237), - [anon_sym__Nonnull] = ACTIONS(7237), - [anon_sym_mutable] = ACTIONS(7237), - [anon_sym_constinit] = ACTIONS(7237), - [anon_sym_consteval] = ACTIONS(7237), - [anon_sym_alignas] = ACTIONS(7237), - [anon_sym__Alignas] = ACTIONS(7237), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_STAR_EQ] = ACTIONS(7237), - [anon_sym_SLASH_EQ] = ACTIONS(7237), - [anon_sym_PERCENT_EQ] = ACTIONS(7237), - [anon_sym_PLUS_EQ] = ACTIONS(7237), - [anon_sym_DASH_EQ] = ACTIONS(7237), - [anon_sym_LT_LT_EQ] = ACTIONS(7237), - [anon_sym_GT_GT_EQ] = ACTIONS(7235), - [anon_sym_AMP_EQ] = ACTIONS(7237), - [anon_sym_CARET_EQ] = ACTIONS(7237), - [anon_sym_PIPE_EQ] = ACTIONS(7237), - [anon_sym_and_eq] = ACTIONS(7237), - [anon_sym_or_eq] = ACTIONS(7237), - [anon_sym_xor_eq] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7235), - [anon_sym_and] = ACTIONS(7235), - [anon_sym_bitor] = ACTIONS(7237), - [anon_sym_xor] = ACTIONS(7235), - [anon_sym_bitand] = ACTIONS(7237), - [anon_sym_not_eq] = ACTIONS(7237), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7237), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8160), - [anon_sym_override] = ACTIONS(8160), - [anon_sym_GT2] = ACTIONS(7237), - [anon_sym_requires] = ACTIONS(7237), + [aux_sym_sized_type_specifier_repeat1] = STATE(2469), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_RPAREN] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8308), + [anon_sym_unsigned] = ACTIONS(8308), + [anon_sym_long] = ACTIONS(8308), + [anon_sym_short] = ACTIONS(8308), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7402), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_requires] = ACTIONS(7402), + [anon_sym_DASH_GT_STAR] = ACTIONS(7399), }, [STATE(2461)] = { - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [aux_sym__type_definition_type_repeat1] = STATE(2367), - [aux_sym_sized_type_specifier_repeat1] = STATE(2639), - [sym_identifier] = ACTIONS(8068), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_RPAREN] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7207), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7207), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7207), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7207), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(7323), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(8073), - [anon_sym_unsigned] = ACTIONS(8073), - [anon_sym_long] = ACTIONS(8073), - [anon_sym_short] = ACTIONS(8073), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_EQ] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7323), - [anon_sym_volatile] = ACTIONS(7323), - [anon_sym_restrict] = ACTIONS(7323), - [anon_sym___restrict__] = ACTIONS(7323), - [anon_sym__Atomic] = ACTIONS(7323), - [anon_sym__Noreturn] = ACTIONS(7323), - [anon_sym_noreturn] = ACTIONS(7323), - [anon_sym__Nonnull] = ACTIONS(7323), - [anon_sym_mutable] = ACTIONS(7323), - [anon_sym_constinit] = ACTIONS(7323), - [anon_sym_consteval] = ACTIONS(7323), - [anon_sym_alignas] = ACTIONS(8263), - [anon_sym__Alignas] = ACTIONS(8263), - [sym_primitive_type] = ACTIONS(8078), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_STAR_EQ] = ACTIONS(7205), - [anon_sym_SLASH_EQ] = ACTIONS(7205), - [anon_sym_PERCENT_EQ] = ACTIONS(7205), - [anon_sym_PLUS_EQ] = ACTIONS(7205), - [anon_sym_DASH_EQ] = ACTIONS(7205), - [anon_sym_LT_LT_EQ] = ACTIONS(7205), - [anon_sym_GT_GT_EQ] = ACTIONS(7205), - [anon_sym_AMP_EQ] = ACTIONS(7205), - [anon_sym_CARET_EQ] = ACTIONS(7205), - [anon_sym_PIPE_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7207), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7150), + [anon_sym_COMMA] = ACTIONS(7150), + [anon_sym_LPAREN2] = ACTIONS(7150), + [anon_sym_DASH] = ACTIONS(7148), + [anon_sym_PLUS] = ACTIONS(7148), + [anon_sym_STAR] = ACTIONS(7148), + [anon_sym_SLASH] = ACTIONS(7148), + [anon_sym_PERCENT] = ACTIONS(7148), + [anon_sym_PIPE_PIPE] = ACTIONS(7150), + [anon_sym_AMP_AMP] = ACTIONS(7150), + [anon_sym_PIPE] = ACTIONS(7148), + [anon_sym_CARET] = ACTIONS(7148), + [anon_sym_AMP] = ACTIONS(7148), + [anon_sym_EQ_EQ] = ACTIONS(7150), + [anon_sym_BANG_EQ] = ACTIONS(7150), + [anon_sym_GT] = ACTIONS(7148), + [anon_sym_GT_EQ] = ACTIONS(7148), + [anon_sym_LT_EQ] = ACTIONS(7148), + [anon_sym_LT] = ACTIONS(7148), + [anon_sym_LT_LT] = ACTIONS(7148), + [anon_sym_GT_GT] = ACTIONS(7148), + [anon_sym___extension__] = ACTIONS(7150), + [anon_sym___attribute__] = ACTIONS(7150), + [anon_sym___attribute] = ACTIONS(7148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7148), + [anon_sym_EQ] = ACTIONS(7148), + [anon_sym_const] = ACTIONS(7148), + [anon_sym_constexpr] = ACTIONS(7150), + [anon_sym_volatile] = ACTIONS(7150), + [anon_sym_restrict] = ACTIONS(7150), + [anon_sym___restrict__] = ACTIONS(7150), + [anon_sym__Atomic] = ACTIONS(7150), + [anon_sym__Noreturn] = ACTIONS(7150), + [anon_sym_noreturn] = ACTIONS(7150), + [anon_sym__Nonnull] = ACTIONS(7150), + [anon_sym_mutable] = ACTIONS(7150), + [anon_sym_constinit] = ACTIONS(7150), + [anon_sym_consteval] = ACTIONS(7150), + [anon_sym_alignas] = ACTIONS(7150), + [anon_sym__Alignas] = ACTIONS(7150), + [anon_sym_QMARK] = ACTIONS(7150), + [anon_sym_STAR_EQ] = ACTIONS(7150), + [anon_sym_SLASH_EQ] = ACTIONS(7150), + [anon_sym_PERCENT_EQ] = ACTIONS(7150), + [anon_sym_PLUS_EQ] = ACTIONS(7150), + [anon_sym_DASH_EQ] = ACTIONS(7150), + [anon_sym_LT_LT_EQ] = ACTIONS(7150), + [anon_sym_GT_GT_EQ] = ACTIONS(7148), + [anon_sym_AMP_EQ] = ACTIONS(7150), + [anon_sym_CARET_EQ] = ACTIONS(7150), + [anon_sym_PIPE_EQ] = ACTIONS(7150), + [anon_sym_and_eq] = ACTIONS(7150), + [anon_sym_or_eq] = ACTIONS(7150), + [anon_sym_xor_eq] = ACTIONS(7150), + [anon_sym_LT_EQ_GT] = ACTIONS(7150), + [anon_sym_or] = ACTIONS(7148), + [anon_sym_and] = ACTIONS(7148), + [anon_sym_bitor] = ACTIONS(7150), + [anon_sym_xor] = ACTIONS(7148), + [anon_sym_bitand] = ACTIONS(7150), + [anon_sym_not_eq] = ACTIONS(7150), + [anon_sym_DASH_DASH] = ACTIONS(7150), + [anon_sym_PLUS_PLUS] = ACTIONS(7150), + [anon_sym_asm] = ACTIONS(7150), + [anon_sym___asm__] = ACTIONS(7150), + [anon_sym___asm] = ACTIONS(7148), + [anon_sym_DOT] = ACTIONS(7148), + [anon_sym_DOT_STAR] = ACTIONS(7150), + [anon_sym_DASH_GT] = ACTIONS(7150), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7150), + [anon_sym_override] = ACTIONS(7150), + [anon_sym_GT2] = ACTIONS(7150), + [anon_sym_noexcept] = ACTIONS(7150), + [anon_sym_throw] = ACTIONS(7150), + [anon_sym_requires] = ACTIONS(7150), }, [STATE(2462)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8720), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9266), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9266), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [sym_template_argument_list] = STATE(2526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6566), + [anon_sym_COMMA] = ACTIONS(6566), + [anon_sym_LPAREN2] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6559), + [anon_sym_STAR] = ACTIONS(6559), + [anon_sym_SLASH] = ACTIONS(6559), + [anon_sym_PERCENT] = ACTIONS(6559), + [anon_sym_PIPE_PIPE] = ACTIONS(6566), + [anon_sym_AMP_AMP] = ACTIONS(6566), + [anon_sym_PIPE] = ACTIONS(6559), + [anon_sym_CARET] = ACTIONS(6559), + [anon_sym_AMP] = ACTIONS(6559), + [anon_sym_EQ_EQ] = ACTIONS(6566), + [anon_sym_BANG_EQ] = ACTIONS(6566), + [anon_sym_GT] = ACTIONS(6559), + [anon_sym_GT_EQ] = ACTIONS(6566), + [anon_sym_LT_EQ] = ACTIONS(6559), + [anon_sym_LT] = ACTIONS(8311), + [anon_sym_LT_LT] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6559), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym___attribute__] = ACTIONS(6566), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6566), + [anon_sym_RBRACK] = ACTIONS(6566), + [anon_sym_EQ] = ACTIONS(6559), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6566), + [anon_sym_STAR_EQ] = ACTIONS(6566), + [anon_sym_SLASH_EQ] = ACTIONS(6566), + [anon_sym_PERCENT_EQ] = ACTIONS(6566), + [anon_sym_PLUS_EQ] = ACTIONS(6566), + [anon_sym_DASH_EQ] = ACTIONS(6566), + [anon_sym_LT_LT_EQ] = ACTIONS(6566), + [anon_sym_GT_GT_EQ] = ACTIONS(6566), + [anon_sym_AMP_EQ] = ACTIONS(6566), + [anon_sym_CARET_EQ] = ACTIONS(6566), + [anon_sym_PIPE_EQ] = ACTIONS(6566), + [anon_sym_and_eq] = ACTIONS(6566), + [anon_sym_or_eq] = ACTIONS(6566), + [anon_sym_xor_eq] = ACTIONS(6566), + [anon_sym_LT_EQ_GT] = ACTIONS(6566), + [anon_sym_or] = ACTIONS(6559), + [anon_sym_and] = ACTIONS(6559), + [anon_sym_bitor] = ACTIONS(6566), + [anon_sym_xor] = ACTIONS(6559), + [anon_sym_bitand] = ACTIONS(6566), + [anon_sym_not_eq] = ACTIONS(6566), + [anon_sym_DASH_DASH] = ACTIONS(6566), + [anon_sym_PLUS_PLUS] = ACTIONS(6566), + [anon_sym_DOT] = ACTIONS(6559), + [anon_sym_DOT_STAR] = ACTIONS(6566), + [anon_sym_DASH_GT] = ACTIONS(6566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_final] = ACTIONS(6566), + [anon_sym_override] = ACTIONS(6566), + [anon_sym_requires] = ACTIONS(6566), }, [STATE(2463)] = { - [sym__abstract_declarator] = STATE(5372), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1975), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7345), - [anon_sym_BANG_EQ] = ACTIONS(7345), - [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7347), - [anon_sym_LT_EQ] = ACTIONS(7347), - [anon_sym_LT] = ACTIONS(7347), - [anon_sym_LT_LT] = ACTIONS(7347), - [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(7345), - [anon_sym_STAR_EQ] = ACTIONS(7345), - [anon_sym_SLASH_EQ] = ACTIONS(7345), - [anon_sym_PERCENT_EQ] = ACTIONS(7345), - [anon_sym_PLUS_EQ] = ACTIONS(7345), - [anon_sym_DASH_EQ] = ACTIONS(7345), - [anon_sym_LT_LT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_EQ] = ACTIONS(7347), - [anon_sym_AMP_EQ] = ACTIONS(7345), - [anon_sym_CARET_EQ] = ACTIONS(7345), - [anon_sym_PIPE_EQ] = ACTIONS(7345), - [anon_sym_and_eq] = ACTIONS(7345), - [anon_sym_or_eq] = ACTIONS(7345), - [anon_sym_xor_eq] = ACTIONS(7345), - [anon_sym_LT_EQ_GT] = ACTIONS(7345), - [anon_sym_or] = ACTIONS(7347), - [anon_sym_and] = ACTIONS(7347), - [anon_sym_bitor] = ACTIONS(7345), - [anon_sym_xor] = ACTIONS(7347), - [anon_sym_bitand] = ACTIONS(7345), - [anon_sym_not_eq] = ACTIONS(7345), - [anon_sym_DASH_DASH] = ACTIONS(7345), - [anon_sym_PLUS_PLUS] = ACTIONS(7345), - [anon_sym_DOT] = ACTIONS(7347), - [anon_sym_DOT_STAR] = ACTIONS(7345), - [anon_sym_DASH_GT] = ACTIONS(7345), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7345), - }, - [STATE(2464)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), - [anon_sym_COMMA] = ACTIONS(7083), - [anon_sym_LPAREN2] = ACTIONS(7083), - [anon_sym_DASH] = ACTIONS(7081), - [anon_sym_PLUS] = ACTIONS(7081), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7081), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7083), - [anon_sym_AMP_AMP] = ACTIONS(7083), - [anon_sym_PIPE] = ACTIONS(7081), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7081), - [anon_sym_EQ_EQ] = ACTIONS(7083), - [anon_sym_BANG_EQ] = ACTIONS(7083), - [anon_sym_GT] = ACTIONS(7081), - [anon_sym_GT_EQ] = ACTIONS(7083), - [anon_sym_LT_EQ] = ACTIONS(7081), - [anon_sym_LT] = ACTIONS(7081), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(7083), - [anon_sym___attribute__] = ACTIONS(7083), - [anon_sym___attribute] = ACTIONS(7081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_RBRACK] = ACTIONS(7083), - [anon_sym_EQ] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(7081), - [anon_sym_constexpr] = ACTIONS(7083), - [anon_sym_volatile] = ACTIONS(7083), - [anon_sym_restrict] = ACTIONS(7083), - [anon_sym___restrict__] = ACTIONS(7083), - [anon_sym__Atomic] = ACTIONS(7083), - [anon_sym__Noreturn] = ACTIONS(7083), - [anon_sym_noreturn] = ACTIONS(7083), - [anon_sym__Nonnull] = ACTIONS(7083), - [anon_sym_mutable] = ACTIONS(7083), - [anon_sym_constinit] = ACTIONS(7083), - [anon_sym_consteval] = ACTIONS(7083), - [anon_sym_alignas] = ACTIONS(7083), - [anon_sym__Alignas] = ACTIONS(7083), - [anon_sym_QMARK] = ACTIONS(7083), - [anon_sym_STAR_EQ] = ACTIONS(7083), - [anon_sym_SLASH_EQ] = ACTIONS(7083), - [anon_sym_PERCENT_EQ] = ACTIONS(7083), - [anon_sym_PLUS_EQ] = ACTIONS(7083), - [anon_sym_DASH_EQ] = ACTIONS(7083), - [anon_sym_LT_LT_EQ] = ACTIONS(7083), - [anon_sym_GT_GT_EQ] = ACTIONS(7083), - [anon_sym_AMP_EQ] = ACTIONS(7083), - [anon_sym_CARET_EQ] = ACTIONS(7083), - [anon_sym_PIPE_EQ] = ACTIONS(7083), - [anon_sym_and_eq] = ACTIONS(7083), - [anon_sym_or_eq] = ACTIONS(7083), - [anon_sym_xor_eq] = ACTIONS(7083), - [anon_sym_LT_EQ_GT] = ACTIONS(7083), - [anon_sym_or] = ACTIONS(7081), - [anon_sym_and] = ACTIONS(7081), - [anon_sym_bitor] = ACTIONS(7083), - [anon_sym_xor] = ACTIONS(7081), - [anon_sym_bitand] = ACTIONS(7083), - [anon_sym_not_eq] = ACTIONS(7083), - [anon_sym_DASH_DASH] = ACTIONS(7083), - [anon_sym_PLUS_PLUS] = ACTIONS(7083), - [anon_sym_asm] = ACTIONS(7083), - [anon_sym___asm__] = ACTIONS(7083), - [anon_sym___asm] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7081), - [anon_sym_DOT_STAR] = ACTIONS(7083), - [anon_sym_DASH_GT] = ACTIONS(7083), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7083), - [anon_sym_override] = ACTIONS(7083), - [anon_sym_noexcept] = ACTIONS(7083), - [anon_sym_throw] = ACTIONS(7083), - [anon_sym_requires] = ACTIONS(7083), - }, - [STATE(2465)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym__function_exception_specification] = STATE(2943), - [sym__function_attributes_end] = STATE(4292), - [sym__function_postfix] = STATE(4840), - [sym_trailing_return_type] = STATE(4383), - [sym_noexcept] = STATE(2943), - [sym_throw_specifier] = STATE(2943), - [sym_requires_clause] = STATE(4840), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8168), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6669), - [anon_sym_override] = ACTIONS(6669), - [anon_sym_noexcept] = ACTIONS(6662), - [anon_sym_throw] = ACTIONS(6664), - [anon_sym_requires] = ACTIONS(6671), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), - }, - [STATE(2466)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), - [anon_sym_COMMA] = ACTIONS(7303), - [anon_sym_RPAREN] = ACTIONS(7303), - [anon_sym_LPAREN2] = ACTIONS(7303), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_STAR] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7301), - [anon_sym_PERCENT] = ACTIONS(7301), - [anon_sym_PIPE_PIPE] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7303), - [anon_sym_PIPE] = ACTIONS(7301), - [anon_sym_CARET] = ACTIONS(7301), - [anon_sym_AMP] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7303), - [anon_sym_BANG_EQ] = ACTIONS(7303), - [anon_sym_GT] = ACTIONS(7301), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_LT_EQ] = ACTIONS(7301), - [anon_sym_LT] = ACTIONS(7301), - [anon_sym_LT_LT] = ACTIONS(7301), - [anon_sym_GT_GT] = ACTIONS(7301), - [anon_sym___extension__] = ACTIONS(7303), - [anon_sym___attribute__] = ACTIONS(7303), - [anon_sym___attribute] = ACTIONS(7301), - [anon_sym_COLON] = ACTIONS(7301), - [anon_sym_COLON_COLON] = ACTIONS(7303), - [anon_sym_LBRACE] = ACTIONS(7303), - [anon_sym_LBRACK] = ACTIONS(7303), - [anon_sym_EQ] = ACTIONS(7301), - [anon_sym_const] = ACTIONS(7301), - [anon_sym_constexpr] = ACTIONS(7303), - [anon_sym_volatile] = ACTIONS(7303), - [anon_sym_restrict] = ACTIONS(7303), - [anon_sym___restrict__] = ACTIONS(7303), - [anon_sym__Atomic] = ACTIONS(7303), - [anon_sym__Noreturn] = ACTIONS(7303), - [anon_sym_noreturn] = ACTIONS(7303), - [anon_sym__Nonnull] = ACTIONS(7303), - [anon_sym_mutable] = ACTIONS(7303), - [anon_sym_constinit] = ACTIONS(7303), - [anon_sym_consteval] = ACTIONS(7303), - [anon_sym_alignas] = ACTIONS(7303), - [anon_sym__Alignas] = ACTIONS(7303), - [anon_sym_QMARK] = ACTIONS(7303), - [anon_sym_STAR_EQ] = ACTIONS(7303), - [anon_sym_SLASH_EQ] = ACTIONS(7303), - [anon_sym_PERCENT_EQ] = ACTIONS(7303), - [anon_sym_PLUS_EQ] = ACTIONS(7303), - [anon_sym_DASH_EQ] = ACTIONS(7303), - [anon_sym_LT_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_GT_EQ] = ACTIONS(7303), - [anon_sym_AMP_EQ] = ACTIONS(7303), - [anon_sym_CARET_EQ] = ACTIONS(7303), - [anon_sym_PIPE_EQ] = ACTIONS(7303), - [anon_sym_and_eq] = ACTIONS(7303), - [anon_sym_or_eq] = ACTIONS(7303), - [anon_sym_xor_eq] = ACTIONS(7303), - [anon_sym_LT_EQ_GT] = ACTIONS(7303), - [anon_sym_or] = ACTIONS(7301), - [anon_sym_and] = ACTIONS(7301), - [anon_sym_bitor] = ACTIONS(7303), - [anon_sym_xor] = ACTIONS(7301), - [anon_sym_bitand] = ACTIONS(7303), - [anon_sym_not_eq] = ACTIONS(7303), - [anon_sym_DASH_DASH] = ACTIONS(7303), - [anon_sym_PLUS_PLUS] = ACTIONS(7303), - [anon_sym_DOT] = ACTIONS(7301), - [anon_sym_DOT_STAR] = ACTIONS(7303), - [anon_sym_DASH_GT] = ACTIONS(7301), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7303), - [anon_sym_decltype] = ACTIONS(7303), - [anon_sym_final] = ACTIONS(7303), - [anon_sym_override] = ACTIONS(7303), - [anon_sym_requires] = ACTIONS(7303), - [anon_sym_DASH_GT_STAR] = ACTIONS(7303), - }, - [STATE(2467)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym___extension__] = ACTIONS(7079), - [anon_sym___attribute__] = ACTIONS(7079), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), - [anon_sym_LBRACK] = ACTIONS(7077), - [anon_sym_RBRACK] = ACTIONS(7079), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7079), - [anon_sym_volatile] = ACTIONS(7079), - [anon_sym_restrict] = ACTIONS(7079), - [anon_sym___restrict__] = ACTIONS(7079), - [anon_sym__Atomic] = ACTIONS(7079), - [anon_sym__Noreturn] = ACTIONS(7079), - [anon_sym_noreturn] = ACTIONS(7079), - [anon_sym__Nonnull] = ACTIONS(7079), - [anon_sym_mutable] = ACTIONS(7079), - [anon_sym_constinit] = ACTIONS(7079), - [anon_sym_consteval] = ACTIONS(7079), - [anon_sym_alignas] = ACTIONS(7079), - [anon_sym__Alignas] = ACTIONS(7079), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7079), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_and_eq] = ACTIONS(7079), - [anon_sym_or_eq] = ACTIONS(7079), - [anon_sym_xor_eq] = ACTIONS(7079), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7079), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7079), - [anon_sym_not_eq] = ACTIONS(7079), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_asm] = ACTIONS(7079), - [anon_sym___asm__] = ACTIONS(7079), - [anon_sym___asm] = ACTIONS(7077), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7079), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7079), - [anon_sym_override] = ACTIONS(7079), - [anon_sym_noexcept] = ACTIONS(7079), - [anon_sym_throw] = ACTIONS(7079), - [anon_sym_requires] = ACTIONS(7079), - }, - [STATE(2468)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym__function_exception_specification] = STATE(2909), - [sym__function_attributes_end] = STATE(4300), - [sym__function_postfix] = STATE(4890), - [sym_trailing_return_type] = STATE(4347), - [sym_noexcept] = STATE(2909), - [sym_throw_specifier] = STATE(2909), - [sym_requires_clause] = STATE(4890), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8271), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6669), - [anon_sym_override] = ACTIONS(6669), - [anon_sym_noexcept] = ACTIONS(6662), - [anon_sym_throw] = ACTIONS(6664), - [anon_sym_requires] = ACTIONS(6671), - [anon_sym_DASH_GT_STAR] = ACTIONS(7966), - }, - [STATE(2469)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8708), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9186), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9186), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2470)] = { - [sym_attribute_specifier] = STATE(2470), - [aux_sym_type_definition_repeat1] = STATE(2470), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), - [anon_sym_COMMA] = ACTIONS(6937), - [anon_sym_RPAREN] = ACTIONS(6937), - [anon_sym_LPAREN2] = ACTIONS(6937), - [anon_sym_DASH] = ACTIONS(6935), - [anon_sym_PLUS] = ACTIONS(6935), - [anon_sym_STAR] = ACTIONS(6935), - [anon_sym_SLASH] = ACTIONS(6935), - [anon_sym_PERCENT] = ACTIONS(6935), - [anon_sym_PIPE_PIPE] = ACTIONS(6937), - [anon_sym_AMP_AMP] = ACTIONS(6937), - [anon_sym_PIPE] = ACTIONS(6935), - [anon_sym_CARET] = ACTIONS(6935), - [anon_sym_AMP] = ACTIONS(6935), - [anon_sym_EQ_EQ] = ACTIONS(6937), - [anon_sym_BANG_EQ] = ACTIONS(6937), - [anon_sym_GT] = ACTIONS(6935), - [anon_sym_GT_EQ] = ACTIONS(6937), - [anon_sym_LT_EQ] = ACTIONS(6935), - [anon_sym_LT] = ACTIONS(6935), - [anon_sym_LT_LT] = ACTIONS(6935), - [anon_sym_GT_GT] = ACTIONS(6935), - [anon_sym___extension__] = ACTIONS(6937), - [anon_sym___attribute__] = ACTIONS(8274), - [anon_sym___attribute] = ACTIONS(8277), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), - [anon_sym_LBRACK] = ACTIONS(6935), - [anon_sym_EQ] = ACTIONS(6935), - [anon_sym_const] = ACTIONS(6935), - [anon_sym_constexpr] = ACTIONS(6937), - [anon_sym_volatile] = ACTIONS(6937), - [anon_sym_restrict] = ACTIONS(6937), - [anon_sym___restrict__] = ACTIONS(6937), - [anon_sym__Atomic] = ACTIONS(6937), - [anon_sym__Noreturn] = ACTIONS(6937), - [anon_sym_noreturn] = ACTIONS(6937), - [anon_sym__Nonnull] = ACTIONS(6937), - [anon_sym_mutable] = ACTIONS(6937), - [anon_sym_constinit] = ACTIONS(6937), - [anon_sym_consteval] = ACTIONS(6937), - [anon_sym_alignas] = ACTIONS(6937), - [anon_sym__Alignas] = ACTIONS(6937), - [anon_sym_QMARK] = ACTIONS(6937), - [anon_sym_STAR_EQ] = ACTIONS(6937), - [anon_sym_SLASH_EQ] = ACTIONS(6937), - [anon_sym_PERCENT_EQ] = ACTIONS(6937), - [anon_sym_PLUS_EQ] = ACTIONS(6937), - [anon_sym_DASH_EQ] = ACTIONS(6937), - [anon_sym_LT_LT_EQ] = ACTIONS(6937), - [anon_sym_GT_GT_EQ] = ACTIONS(6937), - [anon_sym_AMP_EQ] = ACTIONS(6937), - [anon_sym_CARET_EQ] = ACTIONS(6937), - [anon_sym_PIPE_EQ] = ACTIONS(6937), - [anon_sym_LT_EQ_GT] = ACTIONS(6937), - [anon_sym_or] = ACTIONS(6937), - [anon_sym_and] = ACTIONS(6937), - [anon_sym_bitor] = ACTIONS(6937), - [anon_sym_xor] = ACTIONS(6937), - [anon_sym_bitand] = ACTIONS(6937), - [anon_sym_not_eq] = ACTIONS(6937), - [anon_sym_DASH_DASH] = ACTIONS(6937), - [anon_sym_PLUS_PLUS] = ACTIONS(6937), - [anon_sym_asm] = ACTIONS(6937), - [anon_sym___asm__] = ACTIONS(6937), - [anon_sym___asm] = ACTIONS(6935), - [anon_sym_DOT] = ACTIONS(6935), - [anon_sym_DOT_STAR] = ACTIONS(6937), - [anon_sym_DASH_GT] = ACTIONS(6935), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6937), - [anon_sym_override] = ACTIONS(6937), - [anon_sym_noexcept] = ACTIONS(6937), - [anon_sym_throw] = ACTIONS(6937), - [anon_sym_requires] = ACTIONS(6937), - [anon_sym_DASH_GT_STAR] = ACTIONS(6937), - }, - [STATE(2471)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7158), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym___extension__] = ACTIONS(7160), - [anon_sym___attribute__] = ACTIONS(7160), - [anon_sym___attribute] = ACTIONS(7158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7158), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7160), - [anon_sym_volatile] = ACTIONS(7160), - [anon_sym_restrict] = ACTIONS(7160), - [anon_sym___restrict__] = ACTIONS(7160), - [anon_sym__Atomic] = ACTIONS(7160), - [anon_sym__Noreturn] = ACTIONS(7160), - [anon_sym_noreturn] = ACTIONS(7160), - [anon_sym__Nonnull] = ACTIONS(7160), - [anon_sym_mutable] = ACTIONS(7160), - [anon_sym_constinit] = ACTIONS(7160), - [anon_sym_consteval] = ACTIONS(7160), - [anon_sym_alignas] = ACTIONS(7160), - [anon_sym__Alignas] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7158), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_and_eq] = ACTIONS(7160), - [anon_sym_or_eq] = ACTIONS(7160), - [anon_sym_xor_eq] = ACTIONS(7160), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7158), - [anon_sym_and] = ACTIONS(7158), - [anon_sym_bitor] = ACTIONS(7160), - [anon_sym_xor] = ACTIONS(7158), - [anon_sym_bitand] = ACTIONS(7160), - [anon_sym_not_eq] = ACTIONS(7160), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_asm] = ACTIONS(7160), - [anon_sym___asm__] = ACTIONS(7160), - [anon_sym___asm] = ACTIONS(7158), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7160), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7160), - [anon_sym_override] = ACTIONS(7160), - [anon_sym_GT2] = ACTIONS(7160), - [anon_sym_noexcept] = ACTIONS(7160), - [anon_sym_throw] = ACTIONS(7160), - [anon_sym_requires] = ACTIONS(7160), - }, - [STATE(2472)] = { - [sym__abstract_declarator] = STATE(5289), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2482), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1978), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2482), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(7363), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7365), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7367), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7391), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7391), - [anon_sym_or_eq] = ACTIONS(7391), - [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - }, - [STATE(2473)] = { [sym_type_qualifier] = STATE(2473), - [sym_alignas_qualifier] = STATE(2724), - [aux_sym_array_declarator_repeat1] = STATE(2473), - [sym_identifier] = ACTIONS(8280), - [anon_sym_LPAREN2] = ACTIONS(8282), - [anon_sym_BANG] = ACTIONS(8282), - [anon_sym_TILDE] = ACTIONS(8282), - [anon_sym_DASH] = ACTIONS(8280), - [anon_sym_PLUS] = ACTIONS(8280), - [anon_sym_STAR] = ACTIONS(8282), - [anon_sym_AMP] = ACTIONS(8282), - [anon_sym___extension__] = ACTIONS(8284), - [anon_sym_COLON_COLON] = ACTIONS(8282), - [anon_sym_LBRACK] = ACTIONS(8280), - [anon_sym_static] = ACTIONS(8287), - [anon_sym_RBRACK] = ACTIONS(8282), - [anon_sym_const] = ACTIONS(8284), - [anon_sym_constexpr] = ACTIONS(8284), - [anon_sym_volatile] = ACTIONS(8284), - [anon_sym_restrict] = ACTIONS(8284), - [anon_sym___restrict__] = ACTIONS(8284), - [anon_sym__Atomic] = ACTIONS(8284), - [anon_sym__Noreturn] = ACTIONS(8284), - [anon_sym_noreturn] = ACTIONS(8284), - [anon_sym__Nonnull] = ACTIONS(8284), - [anon_sym_mutable] = ACTIONS(8284), - [anon_sym_constinit] = ACTIONS(8284), - [anon_sym_consteval] = ACTIONS(8284), - [anon_sym_alignas] = ACTIONS(8290), - [anon_sym__Alignas] = ACTIONS(8290), - [sym_primitive_type] = ACTIONS(8280), - [anon_sym_not] = ACTIONS(8280), - [anon_sym_compl] = ACTIONS(8280), - [anon_sym_DASH_DASH] = ACTIONS(8282), - [anon_sym_PLUS_PLUS] = ACTIONS(8282), - [anon_sym_sizeof] = ACTIONS(8280), - [anon_sym___alignof__] = ACTIONS(8280), - [anon_sym___alignof] = ACTIONS(8280), - [anon_sym__alignof] = ACTIONS(8280), - [anon_sym_alignof] = ACTIONS(8280), - [anon_sym__Alignof] = ACTIONS(8280), - [anon_sym_offsetof] = ACTIONS(8280), - [anon_sym__Generic] = ACTIONS(8280), - [anon_sym_typename] = ACTIONS(8280), - [anon_sym_asm] = ACTIONS(8280), - [anon_sym___asm__] = ACTIONS(8280), - [anon_sym___asm] = ACTIONS(8280), - [sym_number_literal] = ACTIONS(8282), - [anon_sym_L_SQUOTE] = ACTIONS(8282), - [anon_sym_u_SQUOTE] = ACTIONS(8282), - [anon_sym_U_SQUOTE] = ACTIONS(8282), - [anon_sym_u8_SQUOTE] = ACTIONS(8282), - [anon_sym_SQUOTE] = ACTIONS(8282), - [anon_sym_L_DQUOTE] = ACTIONS(8282), - [anon_sym_u_DQUOTE] = ACTIONS(8282), - [anon_sym_U_DQUOTE] = ACTIONS(8282), - [anon_sym_u8_DQUOTE] = ACTIONS(8282), - [anon_sym_DQUOTE] = ACTIONS(8282), - [sym_true] = ACTIONS(8280), - [sym_false] = ACTIONS(8280), - [anon_sym_NULL] = ACTIONS(8280), - [anon_sym_nullptr] = ACTIONS(8280), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(8280), - [anon_sym_template] = ACTIONS(8280), - [anon_sym_delete] = ACTIONS(8280), - [anon_sym_R_DQUOTE] = ACTIONS(8282), - [anon_sym_LR_DQUOTE] = ACTIONS(8282), - [anon_sym_uR_DQUOTE] = ACTIONS(8282), - [anon_sym_UR_DQUOTE] = ACTIONS(8282), - [anon_sym_u8R_DQUOTE] = ACTIONS(8282), - [anon_sym_co_await] = ACTIONS(8280), - [anon_sym_new] = ACTIONS(8280), - [anon_sym_requires] = ACTIONS(8280), - [anon_sym_CARET_CARET] = ACTIONS(8282), - [anon_sym_LBRACK_COLON] = ACTIONS(8282), - [sym_this] = ACTIONS(8280), - }, - [STATE(2474)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), - [anon_sym_COMMA] = ACTIONS(7677), - [anon_sym_LPAREN2] = ACTIONS(7677), - [anon_sym_DASH] = ACTIONS(7675), - [anon_sym_PLUS] = ACTIONS(7675), - [anon_sym_STAR] = ACTIONS(7675), - [anon_sym_SLASH] = ACTIONS(7675), - [anon_sym_PERCENT] = ACTIONS(7675), - [anon_sym_PIPE_PIPE] = ACTIONS(7677), - [anon_sym_AMP_AMP] = ACTIONS(7677), - [anon_sym_PIPE] = ACTIONS(7675), - [anon_sym_CARET] = ACTIONS(7675), - [anon_sym_AMP] = ACTIONS(7675), - [anon_sym_EQ_EQ] = ACTIONS(7677), - [anon_sym_BANG_EQ] = ACTIONS(7677), - [anon_sym_GT] = ACTIONS(7675), - [anon_sym_GT_EQ] = ACTIONS(7675), - [anon_sym_LT_EQ] = ACTIONS(7675), - [anon_sym_LT] = ACTIONS(7675), - [anon_sym_LT_LT] = ACTIONS(7675), - [anon_sym_GT_GT] = ACTIONS(7675), - [anon_sym___extension__] = ACTIONS(7677), - [anon_sym___attribute__] = ACTIONS(7677), - [anon_sym___attribute] = ACTIONS(7675), - [anon_sym_LBRACE] = ACTIONS(7677), - [anon_sym_signed] = ACTIONS(8226), - [anon_sym_unsigned] = ACTIONS(8226), - [anon_sym_long] = ACTIONS(8226), - [anon_sym_short] = ACTIONS(8226), - [anon_sym_LBRACK] = ACTIONS(7677), - [anon_sym_EQ] = ACTIONS(7675), - [anon_sym_const] = ACTIONS(7675), - [anon_sym_constexpr] = ACTIONS(7677), - [anon_sym_volatile] = ACTIONS(7677), - [anon_sym_restrict] = ACTIONS(7677), - [anon_sym___restrict__] = ACTIONS(7677), - [anon_sym__Atomic] = ACTIONS(7677), - [anon_sym__Noreturn] = ACTIONS(7677), - [anon_sym_noreturn] = ACTIONS(7677), - [anon_sym__Nonnull] = ACTIONS(7677), - [anon_sym_mutable] = ACTIONS(7677), - [anon_sym_constinit] = ACTIONS(7677), - [anon_sym_consteval] = ACTIONS(7677), - [anon_sym_alignas] = ACTIONS(7677), - [anon_sym__Alignas] = ACTIONS(7677), - [anon_sym_QMARK] = ACTIONS(7677), - [anon_sym_STAR_EQ] = ACTIONS(7677), - [anon_sym_SLASH_EQ] = ACTIONS(7677), - [anon_sym_PERCENT_EQ] = ACTIONS(7677), - [anon_sym_PLUS_EQ] = ACTIONS(7677), - [anon_sym_DASH_EQ] = ACTIONS(7677), - [anon_sym_LT_LT_EQ] = ACTIONS(7677), - [anon_sym_GT_GT_EQ] = ACTIONS(7675), - [anon_sym_AMP_EQ] = ACTIONS(7677), - [anon_sym_CARET_EQ] = ACTIONS(7677), - [anon_sym_PIPE_EQ] = ACTIONS(7677), - [anon_sym_and_eq] = ACTIONS(7677), - [anon_sym_or_eq] = ACTIONS(7677), - [anon_sym_xor_eq] = ACTIONS(7677), - [anon_sym_LT_EQ_GT] = ACTIONS(7677), - [anon_sym_or] = ACTIONS(7675), - [anon_sym_and] = ACTIONS(7675), - [anon_sym_bitor] = ACTIONS(7677), - [anon_sym_xor] = ACTIONS(7675), - [anon_sym_bitand] = ACTIONS(7677), - [anon_sym_not_eq] = ACTIONS(7677), - [anon_sym_DASH_DASH] = ACTIONS(7677), - [anon_sym_PLUS_PLUS] = ACTIONS(7677), - [anon_sym_DOT] = ACTIONS(7675), - [anon_sym_DOT_STAR] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(7677), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7677), - [anon_sym_override] = ACTIONS(7677), - [anon_sym_GT2] = ACTIONS(7677), - [anon_sym_requires] = ACTIONS(7677), - }, - [STATE(2475)] = { - [sym_attribute_specifier] = STATE(3202), - [sym_field_declaration_list] = STATE(2732), - [sym_virtual_specifier] = STATE(9437), - [sym_base_class_clause] = STATE(10280), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7235), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7235), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7235), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7235), - [anon_sym___extension__] = ACTIONS(7237), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_COLON] = ACTIONS(8156), - [anon_sym_LBRACE] = ACTIONS(8297), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_RBRACK] = ACTIONS(7237), - [anon_sym_EQ] = ACTIONS(7235), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7237), - [anon_sym_volatile] = ACTIONS(7237), - [anon_sym_restrict] = ACTIONS(7237), - [anon_sym___restrict__] = ACTIONS(7237), - [anon_sym__Atomic] = ACTIONS(7237), - [anon_sym__Noreturn] = ACTIONS(7237), - [anon_sym_noreturn] = ACTIONS(7237), - [anon_sym__Nonnull] = ACTIONS(7237), - [anon_sym_mutable] = ACTIONS(7237), - [anon_sym_constinit] = ACTIONS(7237), - [anon_sym_consteval] = ACTIONS(7237), - [anon_sym_alignas] = ACTIONS(7237), - [anon_sym__Alignas] = ACTIONS(7237), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_STAR_EQ] = ACTIONS(7237), - [anon_sym_SLASH_EQ] = ACTIONS(7237), - [anon_sym_PERCENT_EQ] = ACTIONS(7237), - [anon_sym_PLUS_EQ] = ACTIONS(7237), - [anon_sym_DASH_EQ] = ACTIONS(7237), - [anon_sym_LT_LT_EQ] = ACTIONS(7237), - [anon_sym_GT_GT_EQ] = ACTIONS(7237), - [anon_sym_AMP_EQ] = ACTIONS(7237), - [anon_sym_CARET_EQ] = ACTIONS(7237), - [anon_sym_PIPE_EQ] = ACTIONS(7237), - [anon_sym_and_eq] = ACTIONS(7237), - [anon_sym_or_eq] = ACTIONS(7237), - [anon_sym_xor_eq] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7235), - [anon_sym_and] = ACTIONS(7235), - [anon_sym_bitor] = ACTIONS(7237), - [anon_sym_xor] = ACTIONS(7235), - [anon_sym_bitand] = ACTIONS(7237), - [anon_sym_not_eq] = ACTIONS(7237), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7237), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8160), - [anon_sym_override] = ACTIONS(8160), - [anon_sym_requires] = ACTIONS(7237), - }, - [STATE(2476)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), - [anon_sym_COMMA] = ACTIONS(7683), - [anon_sym_LPAREN2] = ACTIONS(7683), - [anon_sym_DASH] = ACTIONS(7681), - [anon_sym_PLUS] = ACTIONS(7681), - [anon_sym_STAR] = ACTIONS(7681), - [anon_sym_SLASH] = ACTIONS(7681), - [anon_sym_PERCENT] = ACTIONS(7681), - [anon_sym_PIPE_PIPE] = ACTIONS(7683), - [anon_sym_AMP_AMP] = ACTIONS(7683), - [anon_sym_PIPE] = ACTIONS(7681), - [anon_sym_CARET] = ACTIONS(7681), - [anon_sym_AMP] = ACTIONS(7681), - [anon_sym_EQ_EQ] = ACTIONS(7683), - [anon_sym_BANG_EQ] = ACTIONS(7683), - [anon_sym_GT] = ACTIONS(7681), - [anon_sym_GT_EQ] = ACTIONS(7681), - [anon_sym_LT_EQ] = ACTIONS(7681), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym___extension__] = ACTIONS(7683), - [anon_sym___attribute__] = ACTIONS(7683), - [anon_sym___attribute] = ACTIONS(7681), - [anon_sym_LBRACE] = ACTIONS(7683), - [anon_sym_signed] = ACTIONS(8226), - [anon_sym_unsigned] = ACTIONS(8226), - [anon_sym_long] = ACTIONS(8226), - [anon_sym_short] = ACTIONS(8226), - [anon_sym_LBRACK] = ACTIONS(7683), - [anon_sym_EQ] = ACTIONS(7681), - [anon_sym_const] = ACTIONS(7681), - [anon_sym_constexpr] = ACTIONS(7683), - [anon_sym_volatile] = ACTIONS(7683), - [anon_sym_restrict] = ACTIONS(7683), - [anon_sym___restrict__] = ACTIONS(7683), - [anon_sym__Atomic] = ACTIONS(7683), - [anon_sym__Noreturn] = ACTIONS(7683), - [anon_sym_noreturn] = ACTIONS(7683), - [anon_sym__Nonnull] = ACTIONS(7683), - [anon_sym_mutable] = ACTIONS(7683), - [anon_sym_constinit] = ACTIONS(7683), - [anon_sym_consteval] = ACTIONS(7683), - [anon_sym_alignas] = ACTIONS(7683), - [anon_sym__Alignas] = ACTIONS(7683), - [anon_sym_QMARK] = ACTIONS(7683), - [anon_sym_STAR_EQ] = ACTIONS(7683), - [anon_sym_SLASH_EQ] = ACTIONS(7683), - [anon_sym_PERCENT_EQ] = ACTIONS(7683), - [anon_sym_PLUS_EQ] = ACTIONS(7683), - [anon_sym_DASH_EQ] = ACTIONS(7683), - [anon_sym_LT_LT_EQ] = ACTIONS(7683), - [anon_sym_GT_GT_EQ] = ACTIONS(7681), - [anon_sym_AMP_EQ] = ACTIONS(7683), - [anon_sym_CARET_EQ] = ACTIONS(7683), - [anon_sym_PIPE_EQ] = ACTIONS(7683), - [anon_sym_and_eq] = ACTIONS(7683), - [anon_sym_or_eq] = ACTIONS(7683), - [anon_sym_xor_eq] = ACTIONS(7683), - [anon_sym_LT_EQ_GT] = ACTIONS(7683), - [anon_sym_or] = ACTIONS(7681), - [anon_sym_and] = ACTIONS(7681), - [anon_sym_bitor] = ACTIONS(7683), - [anon_sym_xor] = ACTIONS(7681), - [anon_sym_bitand] = ACTIONS(7683), - [anon_sym_not_eq] = ACTIONS(7683), - [anon_sym_DASH_DASH] = ACTIONS(7683), - [anon_sym_PLUS_PLUS] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7681), - [anon_sym_DOT_STAR] = ACTIONS(7683), - [anon_sym_DASH_GT] = ACTIONS(7683), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7683), - [anon_sym_override] = ACTIONS(7683), - [anon_sym_GT2] = ACTIONS(7683), - [anon_sym_requires] = ACTIONS(7683), - }, - [STATE(2477)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6628), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6628), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6628), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6628), - [anon_sym_GT_GT] = ACTIONS(6628), - [anon_sym___extension__] = ACTIONS(6630), - [anon_sym___attribute__] = ACTIONS(6630), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6630), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6630), - [anon_sym_volatile] = ACTIONS(6630), - [anon_sym_restrict] = ACTIONS(6630), - [anon_sym___restrict__] = ACTIONS(6630), - [anon_sym__Atomic] = ACTIONS(6630), - [anon_sym__Noreturn] = ACTIONS(6630), - [anon_sym_noreturn] = ACTIONS(6630), - [anon_sym__Nonnull] = ACTIONS(6630), - [anon_sym_mutable] = ACTIONS(6630), - [anon_sym_constinit] = ACTIONS(6630), - [anon_sym_consteval] = ACTIONS(6630), - [anon_sym_alignas] = ACTIONS(6630), - [anon_sym__Alignas] = ACTIONS(6630), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_STAR_EQ] = ACTIONS(6630), - [anon_sym_SLASH_EQ] = ACTIONS(6630), - [anon_sym_PERCENT_EQ] = ACTIONS(6630), - [anon_sym_PLUS_EQ] = ACTIONS(6630), - [anon_sym_DASH_EQ] = ACTIONS(6630), - [anon_sym_LT_LT_EQ] = ACTIONS(6630), - [anon_sym_GT_GT_EQ] = ACTIONS(6630), - [anon_sym_AMP_EQ] = ACTIONS(6630), - [anon_sym_CARET_EQ] = ACTIONS(6630), - [anon_sym_PIPE_EQ] = ACTIONS(6630), - [anon_sym_and_eq] = ACTIONS(6630), - [anon_sym_or_eq] = ACTIONS(6630), - [anon_sym_xor_eq] = ACTIONS(6630), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6630), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6630), - [anon_sym_not_eq] = ACTIONS(6630), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6628), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6630), - [anon_sym_decltype] = ACTIONS(6630), - [anon_sym_final] = ACTIONS(6630), - [anon_sym_override] = ACTIONS(6630), - [anon_sym_requires] = ACTIONS(6630), - [anon_sym_DASH_GT_STAR] = ACTIONS(6630), - }, - [STATE(2478)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2503), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), - [anon_sym_COMMA] = ACTIONS(7557), - [anon_sym_LPAREN2] = ACTIONS(7557), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_STAR] = ACTIONS(7555), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_PERCENT] = ACTIONS(7555), - [anon_sym_PIPE_PIPE] = ACTIONS(7557), - [anon_sym_AMP_AMP] = ACTIONS(7557), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_CARET] = ACTIONS(7555), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_EQ_EQ] = ACTIONS(7557), - [anon_sym_BANG_EQ] = ACTIONS(7557), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7555), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_LT_LT] = ACTIONS(7555), - [anon_sym_GT_GT] = ACTIONS(7555), - [anon_sym___extension__] = ACTIONS(7557), - [anon_sym___attribute__] = ACTIONS(7557), - [anon_sym___attribute] = ACTIONS(7555), - [anon_sym_LBRACE] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(8299), - [anon_sym_unsigned] = ACTIONS(8299), - [anon_sym_long] = ACTIONS(8299), - [anon_sym_short] = ACTIONS(8299), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_EQ] = ACTIONS(7555), - [anon_sym_const] = ACTIONS(7555), - [anon_sym_constexpr] = ACTIONS(7557), - [anon_sym_volatile] = ACTIONS(7557), - [anon_sym_restrict] = ACTIONS(7557), - [anon_sym___restrict__] = ACTIONS(7557), - [anon_sym__Atomic] = ACTIONS(7557), - [anon_sym__Noreturn] = ACTIONS(7557), - [anon_sym_noreturn] = ACTIONS(7557), - [anon_sym__Nonnull] = ACTIONS(7557), - [anon_sym_mutable] = ACTIONS(7557), - [anon_sym_constinit] = ACTIONS(7557), - [anon_sym_consteval] = ACTIONS(7557), - [anon_sym_alignas] = ACTIONS(7557), - [anon_sym__Alignas] = ACTIONS(7557), - [anon_sym_QMARK] = ACTIONS(7557), - [anon_sym_STAR_EQ] = ACTIONS(7557), - [anon_sym_SLASH_EQ] = ACTIONS(7557), - [anon_sym_PERCENT_EQ] = ACTIONS(7557), - [anon_sym_PLUS_EQ] = ACTIONS(7557), - [anon_sym_DASH_EQ] = ACTIONS(7557), - [anon_sym_LT_LT_EQ] = ACTIONS(7557), - [anon_sym_GT_GT_EQ] = ACTIONS(7555), - [anon_sym_AMP_EQ] = ACTIONS(7557), - [anon_sym_CARET_EQ] = ACTIONS(7557), - [anon_sym_PIPE_EQ] = ACTIONS(7557), - [anon_sym_and_eq] = ACTIONS(7557), - [anon_sym_or_eq] = ACTIONS(7557), - [anon_sym_xor_eq] = ACTIONS(7557), - [anon_sym_LT_EQ_GT] = ACTIONS(7557), - [anon_sym_or] = ACTIONS(7555), - [anon_sym_and] = ACTIONS(7555), - [anon_sym_bitor] = ACTIONS(7557), - [anon_sym_xor] = ACTIONS(7555), - [anon_sym_bitand] = ACTIONS(7557), - [anon_sym_not_eq] = ACTIONS(7557), - [anon_sym_DASH_DASH] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7557), - [anon_sym_DOT] = ACTIONS(7555), - [anon_sym_DOT_STAR] = ACTIONS(7557), - [anon_sym_DASH_GT] = ACTIONS(7557), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_GT2] = ACTIONS(7557), - [anon_sym_requires] = ACTIONS(7557), - }, - [STATE(2479)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8677), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9268), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9268), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2480)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym__function_exception_specification] = STATE(2918), - [sym__function_attributes_end] = STATE(4299), - [sym__function_postfix] = STATE(4890), - [sym_trailing_return_type] = STATE(4345), - [sym_noexcept] = STATE(2918), - [sym_throw_specifier] = STATE(2918), - [sym_requires_clause] = STATE(4890), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8271), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8301), - [anon_sym_override] = ACTIONS(8301), - [anon_sym_noexcept] = ACTIONS(6662), - [anon_sym_throw] = ACTIONS(6664), - [anon_sym_requires] = ACTIONS(8304), - [anon_sym_DASH_GT_STAR] = ACTIONS(7966), - }, - [STATE(2481)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), - [anon_sym_COMMA] = ACTIONS(7785), - [anon_sym_LPAREN2] = ACTIONS(7785), - [anon_sym_DASH] = ACTIONS(7783), - [anon_sym_PLUS] = ACTIONS(7783), - [anon_sym_STAR] = ACTIONS(7783), - [anon_sym_SLASH] = ACTIONS(7783), - [anon_sym_PERCENT] = ACTIONS(7783), - [anon_sym_PIPE_PIPE] = ACTIONS(7785), - [anon_sym_AMP_AMP] = ACTIONS(7785), - [anon_sym_PIPE] = ACTIONS(7783), - [anon_sym_CARET] = ACTIONS(7783), - [anon_sym_AMP] = ACTIONS(7783), - [anon_sym_EQ_EQ] = ACTIONS(7785), - [anon_sym_BANG_EQ] = ACTIONS(7785), - [anon_sym_GT] = ACTIONS(7783), - [anon_sym_GT_EQ] = ACTIONS(7783), - [anon_sym_LT_EQ] = ACTIONS(7783), - [anon_sym_LT] = ACTIONS(7783), - [anon_sym_LT_LT] = ACTIONS(7783), - [anon_sym_GT_GT] = ACTIONS(7783), - [anon_sym___extension__] = ACTIONS(7785), - [anon_sym___attribute__] = ACTIONS(7785), - [anon_sym___attribute] = ACTIONS(7783), - [anon_sym_LBRACE] = ACTIONS(7785), - [anon_sym_signed] = ACTIONS(8307), - [anon_sym_unsigned] = ACTIONS(8307), - [anon_sym_long] = ACTIONS(8307), - [anon_sym_short] = ACTIONS(8307), - [anon_sym_LBRACK] = ACTIONS(7785), - [anon_sym_EQ] = ACTIONS(7783), - [anon_sym_const] = ACTIONS(7783), - [anon_sym_constexpr] = ACTIONS(7785), - [anon_sym_volatile] = ACTIONS(7785), - [anon_sym_restrict] = ACTIONS(7785), - [anon_sym___restrict__] = ACTIONS(7785), - [anon_sym__Atomic] = ACTIONS(7785), - [anon_sym__Noreturn] = ACTIONS(7785), - [anon_sym_noreturn] = ACTIONS(7785), - [anon_sym__Nonnull] = ACTIONS(7785), - [anon_sym_mutable] = ACTIONS(7785), - [anon_sym_constinit] = ACTIONS(7785), - [anon_sym_consteval] = ACTIONS(7785), - [anon_sym_alignas] = ACTIONS(7785), - [anon_sym__Alignas] = ACTIONS(7785), - [anon_sym_QMARK] = ACTIONS(7785), - [anon_sym_STAR_EQ] = ACTIONS(7785), - [anon_sym_SLASH_EQ] = ACTIONS(7785), - [anon_sym_PERCENT_EQ] = ACTIONS(7785), - [anon_sym_PLUS_EQ] = ACTIONS(7785), - [anon_sym_DASH_EQ] = ACTIONS(7785), - [anon_sym_LT_LT_EQ] = ACTIONS(7785), - [anon_sym_GT_GT_EQ] = ACTIONS(7783), - [anon_sym_AMP_EQ] = ACTIONS(7785), - [anon_sym_CARET_EQ] = ACTIONS(7785), - [anon_sym_PIPE_EQ] = ACTIONS(7785), - [anon_sym_and_eq] = ACTIONS(7785), - [anon_sym_or_eq] = ACTIONS(7785), - [anon_sym_xor_eq] = ACTIONS(7785), - [anon_sym_LT_EQ_GT] = ACTIONS(7785), - [anon_sym_or] = ACTIONS(7783), - [anon_sym_and] = ACTIONS(7783), - [anon_sym_bitor] = ACTIONS(7785), - [anon_sym_xor] = ACTIONS(7783), - [anon_sym_bitand] = ACTIONS(7785), - [anon_sym_not_eq] = ACTIONS(7785), - [anon_sym_DASH_DASH] = ACTIONS(7785), - [anon_sym_PLUS_PLUS] = ACTIONS(7785), - [anon_sym_DOT] = ACTIONS(7783), - [anon_sym_DOT_STAR] = ACTIONS(7785), - [anon_sym_DASH_GT] = ACTIONS(7785), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7785), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_GT2] = ACTIONS(7785), - [anon_sym_requires] = ACTIONS(7785), - }, - [STATE(2482)] = { - [sym__abstract_declarator] = STATE(5420), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1978), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(7363), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(7365), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(7367), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7351), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - }, - [STATE(2483)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2499), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_RPAREN] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(7528), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8309), - [anon_sym_unsigned] = ACTIONS(8309), - [anon_sym_long] = ACTIONS(8309), - [anon_sym_short] = ACTIONS(8309), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(7528), - [anon_sym_constexpr] = ACTIONS(7528), - [anon_sym_volatile] = ACTIONS(7528), - [anon_sym_restrict] = ACTIONS(7528), - [anon_sym___restrict__] = ACTIONS(7528), - [anon_sym__Atomic] = ACTIONS(7528), - [anon_sym__Noreturn] = ACTIONS(7528), - [anon_sym_noreturn] = ACTIONS(7528), - [anon_sym__Nonnull] = ACTIONS(7528), - [anon_sym_mutable] = ACTIONS(7528), - [anon_sym_constinit] = ACTIONS(7528), - [anon_sym_consteval] = ACTIONS(7528), - [anon_sym_alignas] = ACTIONS(7528), - [anon_sym__Alignas] = ACTIONS(7528), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7525), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7528), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_requires] = ACTIONS(7528), - [anon_sym_DASH_GT_STAR] = ACTIONS(7525), - }, - [STATE(2484)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym_ref_qualifier] = STATE(2542), - [sym__function_exception_specification] = STATE(2981), - [sym__function_attributes_end] = STATE(4353), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(4468), - [sym_noexcept] = STATE(2981), - [sym_throw_specifier] = STATE(2981), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(8312), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(8315), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7789), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7789), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8318), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8321), - [anon_sym_override] = ACTIONS(8321), - [anon_sym_GT2] = ACTIONS(7791), - [anon_sym_noexcept] = ACTIONS(6696), - [anon_sym_throw] = ACTIONS(6698), - [anon_sym_requires] = ACTIONS(8324), - }, - [STATE(2485)] = { - [sym_template_argument_list] = STATE(2577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), - [anon_sym_COMMA] = ACTIONS(6572), - [anon_sym_LPAREN2] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6565), - [anon_sym_PLUS] = ACTIONS(6565), - [anon_sym_STAR] = ACTIONS(6565), - [anon_sym_SLASH] = ACTIONS(6565), - [anon_sym_PERCENT] = ACTIONS(6565), - [anon_sym_PIPE_PIPE] = ACTIONS(6572), - [anon_sym_AMP_AMP] = ACTIONS(6572), - [anon_sym_PIPE] = ACTIONS(6565), - [anon_sym_CARET] = ACTIONS(6565), - [anon_sym_AMP] = ACTIONS(6565), - [anon_sym_EQ_EQ] = ACTIONS(6572), - [anon_sym_BANG_EQ] = ACTIONS(6572), - [anon_sym_GT] = ACTIONS(6565), - [anon_sym_GT_EQ] = ACTIONS(6572), - [anon_sym_LT_EQ] = ACTIONS(6565), - [anon_sym_LT] = ACTIONS(8327), - [anon_sym_LT_LT] = ACTIONS(6565), - [anon_sym_GT_GT] = ACTIONS(6565), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym___attribute__] = ACTIONS(6572), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6572), - [anon_sym_RBRACK] = ACTIONS(6572), - [anon_sym_EQ] = ACTIONS(6565), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6572), - [anon_sym_STAR_EQ] = ACTIONS(6572), - [anon_sym_SLASH_EQ] = ACTIONS(6572), - [anon_sym_PERCENT_EQ] = ACTIONS(6572), - [anon_sym_PLUS_EQ] = ACTIONS(6572), - [anon_sym_DASH_EQ] = ACTIONS(6572), - [anon_sym_LT_LT_EQ] = ACTIONS(6572), - [anon_sym_GT_GT_EQ] = ACTIONS(6572), - [anon_sym_AMP_EQ] = ACTIONS(6572), - [anon_sym_CARET_EQ] = ACTIONS(6572), - [anon_sym_PIPE_EQ] = ACTIONS(6572), - [anon_sym_and_eq] = ACTIONS(6572), - [anon_sym_or_eq] = ACTIONS(6572), - [anon_sym_xor_eq] = ACTIONS(6572), - [anon_sym_LT_EQ_GT] = ACTIONS(6572), - [anon_sym_or] = ACTIONS(6565), - [anon_sym_and] = ACTIONS(6565), - [anon_sym_bitor] = ACTIONS(6572), - [anon_sym_xor] = ACTIONS(6565), - [anon_sym_bitand] = ACTIONS(6572), - [anon_sym_not_eq] = ACTIONS(6572), - [anon_sym_DASH_DASH] = ACTIONS(6572), - [anon_sym_PLUS_PLUS] = ACTIONS(6572), - [anon_sym_DOT] = ACTIONS(6565), - [anon_sym_DOT_STAR] = ACTIONS(6572), - [anon_sym_DASH_GT] = ACTIONS(6572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_final] = ACTIONS(6572), - [anon_sym_override] = ACTIONS(6572), - [anon_sym_requires] = ACTIONS(6572), - }, - [STATE(2486)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2554), - [sym__function_exception_specification] = STATE(3014), - [sym__function_attributes_end] = STATE(4235), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3075), - [sym_noexcept] = STATE(3014), - [sym_throw_specifier] = STATE(3014), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7793), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7796), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(8330), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8336), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7870), - [anon_sym_override] = ACTIONS(7870), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(7873), - }, - [STATE(2487)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2683), - [sym_ms_pointer_modifier] = STATE(2487), - [aux_sym_pointer_declarator_repeat1] = STATE(2487), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), - [anon_sym_COMMA] = ACTIONS(6944), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DASH] = ACTIONS(6942), - [anon_sym_PLUS] = ACTIONS(6942), - [anon_sym_STAR] = ACTIONS(6942), - [anon_sym_SLASH] = ACTIONS(6942), - [anon_sym_PERCENT] = ACTIONS(6942), - [anon_sym_PIPE_PIPE] = ACTIONS(6944), - [anon_sym_AMP_AMP] = ACTIONS(6944), - [anon_sym_PIPE] = ACTIONS(6942), - [anon_sym_CARET] = ACTIONS(6942), - [anon_sym_AMP] = ACTIONS(6942), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6942), - [anon_sym_GT_EQ] = ACTIONS(6944), - [anon_sym_LT_EQ] = ACTIONS(6942), - [anon_sym_LT] = ACTIONS(6942), - [anon_sym_LT_LT] = ACTIONS(6942), - [anon_sym_GT_GT] = ACTIONS(6942), - [anon_sym___extension__] = ACTIONS(6944), - [sym_ms_restrict_modifier] = ACTIONS(8339), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8342), - [sym_ms_signed_ptr_modifier] = ACTIONS(8342), - [anon_sym__unaligned] = ACTIONS(8345), - [anon_sym___unaligned] = ACTIONS(8345), - [anon_sym_LBRACK] = ACTIONS(6944), - [anon_sym_RBRACK] = ACTIONS(6944), - [anon_sym_EQ] = ACTIONS(6942), - [anon_sym_const] = ACTIONS(6942), - [anon_sym_constexpr] = ACTIONS(6944), - [anon_sym_volatile] = ACTIONS(6944), - [anon_sym_restrict] = ACTIONS(6944), - [anon_sym___restrict__] = ACTIONS(6944), - [anon_sym__Atomic] = ACTIONS(6944), - [anon_sym__Noreturn] = ACTIONS(6944), - [anon_sym_noreturn] = ACTIONS(6944), - [anon_sym__Nonnull] = ACTIONS(6944), - [anon_sym_mutable] = ACTIONS(6944), - [anon_sym_constinit] = ACTIONS(6944), - [anon_sym_consteval] = ACTIONS(6944), - [anon_sym_alignas] = ACTIONS(6944), - [anon_sym__Alignas] = ACTIONS(6944), - [anon_sym_QMARK] = ACTIONS(6944), - [anon_sym_STAR_EQ] = ACTIONS(6944), - [anon_sym_SLASH_EQ] = ACTIONS(6944), - [anon_sym_PERCENT_EQ] = ACTIONS(6944), - [anon_sym_PLUS_EQ] = ACTIONS(6944), - [anon_sym_DASH_EQ] = ACTIONS(6944), - [anon_sym_LT_LT_EQ] = ACTIONS(6944), - [anon_sym_GT_GT_EQ] = ACTIONS(6944), - [anon_sym_AMP_EQ] = ACTIONS(6944), - [anon_sym_CARET_EQ] = ACTIONS(6944), - [anon_sym_PIPE_EQ] = ACTIONS(6944), - [anon_sym_and_eq] = ACTIONS(6944), - [anon_sym_or_eq] = ACTIONS(6944), - [anon_sym_xor_eq] = ACTIONS(6944), - [anon_sym_LT_EQ_GT] = ACTIONS(6944), - [anon_sym_or] = ACTIONS(6942), - [anon_sym_and] = ACTIONS(6942), - [anon_sym_bitor] = ACTIONS(6944), - [anon_sym_xor] = ACTIONS(6942), - [anon_sym_bitand] = ACTIONS(6944), - [anon_sym_not_eq] = ACTIONS(6944), - [anon_sym_DASH_DASH] = ACTIONS(6944), - [anon_sym_PLUS_PLUS] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6942), - [anon_sym_DOT_STAR] = ACTIONS(6944), - [anon_sym_DASH_GT] = ACTIONS(6944), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6944), - [anon_sym_override] = ACTIONS(6944), - [anon_sym_requires] = ACTIONS(6944), - }, - [STATE(2488)] = { - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_RPAREN] = ACTIONS(6891), - [aux_sym_preproc_if_token2] = ACTIONS(6891), - [aux_sym_preproc_else_token1] = ACTIONS(6891), - [aux_sym_preproc_elif_token1] = ACTIONS(6889), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6891), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6891), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6891), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6891), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6891), - [anon_sym_GT_GT] = ACTIONS(6891), - [anon_sym_SEMI] = ACTIONS(6891), - [anon_sym___extension__] = ACTIONS(8348), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_COLON] = ACTIONS(6889), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6891), - [anon_sym_LBRACE] = ACTIONS(6891), - [anon_sym_RBRACE] = ACTIONS(6891), - [anon_sym_signed] = ACTIONS(6889), - [anon_sym_unsigned] = ACTIONS(6889), - [anon_sym_long] = ACTIONS(6889), - [anon_sym_short] = ACTIONS(6889), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_const] = ACTIONS(8348), - [anon_sym_constexpr] = ACTIONS(8348), - [anon_sym_volatile] = ACTIONS(8348), - [anon_sym_restrict] = ACTIONS(8348), - [anon_sym___restrict__] = ACTIONS(8348), - [anon_sym__Atomic] = ACTIONS(8348), - [anon_sym__Noreturn] = ACTIONS(8348), - [anon_sym_noreturn] = ACTIONS(8348), - [anon_sym__Nonnull] = ACTIONS(8348), - [anon_sym_mutable] = ACTIONS(8348), - [anon_sym_constinit] = ACTIONS(8348), - [anon_sym_consteval] = ACTIONS(8348), - [anon_sym_alignas] = ACTIONS(8351), - [anon_sym__Alignas] = ACTIONS(8351), - [sym_primitive_type] = ACTIONS(6889), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_requires] = ACTIONS(6889), - [anon_sym_COLON_RBRACK] = ACTIONS(6891), - }, - [STATE(2489)] = { - [sym_type_qualifier] = STATE(2500), - [sym_alignas_qualifier] = STATE(2727), - [aux_sym__type_definition_type_repeat1] = STATE(2500), - [sym_identifier] = ACTIONS(6899), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), - [anon_sym_COMMA] = ACTIONS(6901), - [anon_sym_RPAREN] = ACTIONS(6901), - [aux_sym_preproc_if_token2] = ACTIONS(6901), - [aux_sym_preproc_else_token1] = ACTIONS(6901), - [aux_sym_preproc_elif_token1] = ACTIONS(6899), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6901), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6901), - [anon_sym_LPAREN2] = ACTIONS(6901), - [anon_sym_DASH] = ACTIONS(6899), - [anon_sym_PLUS] = ACTIONS(6899), - [anon_sym_STAR] = ACTIONS(6901), - [anon_sym_SLASH] = ACTIONS(6899), - [anon_sym_PERCENT] = ACTIONS(6901), - [anon_sym_PIPE_PIPE] = ACTIONS(6901), - [anon_sym_AMP_AMP] = ACTIONS(6901), - [anon_sym_PIPE] = ACTIONS(6899), - [anon_sym_CARET] = ACTIONS(6901), - [anon_sym_AMP] = ACTIONS(6899), - [anon_sym_EQ_EQ] = ACTIONS(6901), - [anon_sym_BANG_EQ] = ACTIONS(6901), - [anon_sym_GT] = ACTIONS(6899), - [anon_sym_GT_EQ] = ACTIONS(6901), - [anon_sym_LT_EQ] = ACTIONS(6899), - [anon_sym_LT] = ACTIONS(6899), - [anon_sym_LT_LT] = ACTIONS(6901), - [anon_sym_GT_GT] = ACTIONS(6901), - [anon_sym_SEMI] = ACTIONS(6901), - [anon_sym___extension__] = ACTIONS(7182), - [anon_sym___attribute__] = ACTIONS(6899), - [anon_sym___attribute] = ACTIONS(6899), - [anon_sym_COLON] = ACTIONS(6899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6901), - [anon_sym_RBRACE] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(6899), - [anon_sym_const] = ACTIONS(7182), - [anon_sym_constexpr] = ACTIONS(7182), - [anon_sym_volatile] = ACTIONS(7182), - [anon_sym_restrict] = ACTIONS(7182), - [anon_sym___restrict__] = ACTIONS(7182), - [anon_sym__Atomic] = ACTIONS(7182), - [anon_sym__Noreturn] = ACTIONS(7182), - [anon_sym_noreturn] = ACTIONS(7182), - [anon_sym__Nonnull] = ACTIONS(7182), - [anon_sym_mutable] = ACTIONS(7182), - [anon_sym_constinit] = ACTIONS(7182), - [anon_sym_consteval] = ACTIONS(7182), - [anon_sym_alignas] = ACTIONS(7268), - [anon_sym__Alignas] = ACTIONS(7268), - [anon_sym_QMARK] = ACTIONS(6901), - [anon_sym_LT_EQ_GT] = ACTIONS(6901), - [anon_sym_or] = ACTIONS(6899), - [anon_sym_and] = ACTIONS(6899), - [anon_sym_bitor] = ACTIONS(6899), - [anon_sym_xor] = ACTIONS(6899), - [anon_sym_bitand] = ACTIONS(6899), - [anon_sym_not_eq] = ACTIONS(6899), - [anon_sym_DASH_DASH] = ACTIONS(6901), - [anon_sym_PLUS_PLUS] = ACTIONS(6901), - [anon_sym_asm] = ACTIONS(6899), - [anon_sym___asm__] = ACTIONS(6899), - [anon_sym___asm] = ACTIONS(6899), - [anon_sym_DOT] = ACTIONS(6899), - [anon_sym_DOT_STAR] = ACTIONS(6901), - [anon_sym_DASH_GT] = ACTIONS(6901), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6899), - [anon_sym_override] = ACTIONS(6899), - [anon_sym_noexcept] = ACTIONS(6899), - [anon_sym_throw] = ACTIONS(6899), - [anon_sym_requires] = ACTIONS(6899), - [anon_sym_COLON_RBRACK] = ACTIONS(6901), - }, - [STATE(2490)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym_ref_qualifier] = STATE(2546), - [sym__function_exception_specification] = STATE(2961), - [sym__function_attributes_end] = STATE(4366), - [sym__function_postfix] = STATE(5110), - [sym_trailing_return_type] = STATE(4476), - [sym_noexcept] = STATE(2961), - [sym_throw_specifier] = STATE(2961), - [sym_requires_clause] = STATE(5110), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(8354), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(8357), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_RBRACK] = ACTIONS(7791), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8360), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8363), - [anon_sym_override] = ACTIONS(8363), - [anon_sym_noexcept] = ACTIONS(6735), - [anon_sym_throw] = ACTIONS(6737), - [anon_sym_requires] = ACTIONS(8366), - }, - [STATE(2491)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_RPAREN] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6612), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6612), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6612), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6612), - [anon_sym_GT_GT] = ACTIONS(6612), - [anon_sym___extension__] = ACTIONS(6614), - [anon_sym___attribute__] = ACTIONS(6614), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6614), - [anon_sym_EQ] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6614), - [anon_sym_volatile] = ACTIONS(6614), - [anon_sym_restrict] = ACTIONS(6614), - [anon_sym___restrict__] = ACTIONS(6614), - [anon_sym__Atomic] = ACTIONS(6614), - [anon_sym__Noreturn] = ACTIONS(6614), - [anon_sym_noreturn] = ACTIONS(6614), - [anon_sym__Nonnull] = ACTIONS(6614), - [anon_sym_mutable] = ACTIONS(6614), - [anon_sym_constinit] = ACTIONS(6614), - [anon_sym_consteval] = ACTIONS(6614), - [anon_sym_alignas] = ACTIONS(6614), - [anon_sym__Alignas] = ACTIONS(6614), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_STAR_EQ] = ACTIONS(6614), - [anon_sym_SLASH_EQ] = ACTIONS(6614), - [anon_sym_PERCENT_EQ] = ACTIONS(6614), - [anon_sym_PLUS_EQ] = ACTIONS(6614), - [anon_sym_DASH_EQ] = ACTIONS(6614), - [anon_sym_LT_LT_EQ] = ACTIONS(6614), - [anon_sym_GT_GT_EQ] = ACTIONS(6614), - [anon_sym_AMP_EQ] = ACTIONS(6614), - [anon_sym_CARET_EQ] = ACTIONS(6614), - [anon_sym_PIPE_EQ] = ACTIONS(6614), - [anon_sym_and_eq] = ACTIONS(6614), - [anon_sym_or_eq] = ACTIONS(6614), - [anon_sym_xor_eq] = ACTIONS(6614), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6614), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6614), - [anon_sym_not_eq] = ACTIONS(6614), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_alignas_qualifier] = STATE(2677), + [aux_sym__type_definition_type_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(6746), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_RPAREN] = ACTIONS(6748), + [aux_sym_preproc_if_token2] = ACTIONS(6748), + [aux_sym_preproc_else_token1] = ACTIONS(6748), + [aux_sym_preproc_elif_token1] = ACTIONS(6746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6748), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6748), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6748), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6748), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6748), + [anon_sym_GT_GT] = ACTIONS(6748), + [anon_sym_SEMI] = ACTIONS(6748), + [anon_sym___extension__] = ACTIONS(7166), + [anon_sym___attribute__] = ACTIONS(6746), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_COLON] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6748), + [anon_sym_RBRACE] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(7166), + [anon_sym_constexpr] = ACTIONS(7166), + [anon_sym_volatile] = ACTIONS(7166), + [anon_sym_restrict] = ACTIONS(7166), + [anon_sym___restrict__] = ACTIONS(7166), + [anon_sym__Atomic] = ACTIONS(7166), + [anon_sym__Noreturn] = ACTIONS(7166), + [anon_sym_noreturn] = ACTIONS(7166), + [anon_sym__Nonnull] = ACTIONS(7166), + [anon_sym_mutable] = ACTIONS(7166), + [anon_sym_constinit] = ACTIONS(7166), + [anon_sym_consteval] = ACTIONS(7166), + [anon_sym_alignas] = ACTIONS(7172), + [anon_sym__Alignas] = ACTIONS(7172), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6746), + [anon_sym_and] = ACTIONS(6746), + [anon_sym_bitor] = ACTIONS(6746), + [anon_sym_xor] = ACTIONS(6746), + [anon_sym_bitand] = ACTIONS(6746), + [anon_sym_not_eq] = ACTIONS(6746), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6746), + [anon_sym___asm__] = ACTIONS(6746), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6614), - [anon_sym_decltype] = ACTIONS(6614), - [anon_sym_final] = ACTIONS(6614), - [anon_sym_override] = ACTIONS(6614), - [anon_sym_requires] = ACTIONS(6614), - [anon_sym_DASH_GT_STAR] = ACTIONS(6614), - }, - [STATE(2492)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3128), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym___extension__] = ACTIONS(3118), - [anon_sym___attribute__] = ACTIONS(3118), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3118), - [anon_sym_volatile] = ACTIONS(3118), - [anon_sym_restrict] = ACTIONS(3118), - [anon_sym___restrict__] = ACTIONS(3118), - [anon_sym__Atomic] = ACTIONS(3118), - [anon_sym__Noreturn] = ACTIONS(3118), - [anon_sym_noreturn] = ACTIONS(3118), - [anon_sym__Nonnull] = ACTIONS(3118), - [anon_sym_mutable] = ACTIONS(3118), - [anon_sym_constinit] = ACTIONS(3118), - [anon_sym_consteval] = ACTIONS(3118), - [anon_sym_alignas] = ACTIONS(3118), - [anon_sym__Alignas] = ACTIONS(3118), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3128), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_and_eq] = ACTIONS(3118), - [anon_sym_or_eq] = ACTIONS(3118), - [anon_sym_xor_eq] = ACTIONS(3118), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3118), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3118), - [anon_sym_not_eq] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_asm] = ACTIONS(3118), - [anon_sym___asm__] = ACTIONS(3118), - [anon_sym___asm] = ACTIONS(3128), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3118), - [anon_sym_override] = ACTIONS(3118), - [anon_sym_GT2] = ACTIONS(3118), - [anon_sym_noexcept] = ACTIONS(3118), - [anon_sym_throw] = ACTIONS(3118), - [anon_sym_requires] = ACTIONS(3118), - }, - [STATE(2493)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_RPAREN] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6632), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6632), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6632), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6632), - [anon_sym_GT_GT] = ACTIONS(6632), - [anon_sym___extension__] = ACTIONS(6634), - [anon_sym___attribute__] = ACTIONS(6634), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6634), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6634), - [anon_sym_volatile] = ACTIONS(6634), - [anon_sym_restrict] = ACTIONS(6634), - [anon_sym___restrict__] = ACTIONS(6634), - [anon_sym__Atomic] = ACTIONS(6634), - [anon_sym__Noreturn] = ACTIONS(6634), - [anon_sym_noreturn] = ACTIONS(6634), - [anon_sym__Nonnull] = ACTIONS(6634), - [anon_sym_mutable] = ACTIONS(6634), - [anon_sym_constinit] = ACTIONS(6634), - [anon_sym_consteval] = ACTIONS(6634), - [anon_sym_alignas] = ACTIONS(6634), - [anon_sym__Alignas] = ACTIONS(6634), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_STAR_EQ] = ACTIONS(6634), - [anon_sym_SLASH_EQ] = ACTIONS(6634), - [anon_sym_PERCENT_EQ] = ACTIONS(6634), - [anon_sym_PLUS_EQ] = ACTIONS(6634), - [anon_sym_DASH_EQ] = ACTIONS(6634), - [anon_sym_LT_LT_EQ] = ACTIONS(6634), - [anon_sym_GT_GT_EQ] = ACTIONS(6634), - [anon_sym_AMP_EQ] = ACTIONS(6634), - [anon_sym_CARET_EQ] = ACTIONS(6634), - [anon_sym_PIPE_EQ] = ACTIONS(6634), - [anon_sym_and_eq] = ACTIONS(6634), - [anon_sym_or_eq] = ACTIONS(6634), - [anon_sym_xor_eq] = ACTIONS(6634), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6634), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6634), - [anon_sym_not_eq] = ACTIONS(6634), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6632), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6634), - [anon_sym_decltype] = ACTIONS(6634), - [anon_sym_final] = ACTIONS(6634), - [anon_sym_override] = ACTIONS(6634), - [anon_sym_requires] = ACTIONS(6634), - [anon_sym_DASH_GT_STAR] = ACTIONS(6634), - }, - [STATE(2494)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), - [anon_sym_COMMA] = ACTIONS(6601), - [anon_sym_RPAREN] = ACTIONS(6601), - [anon_sym_LPAREN2] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6594), - [anon_sym_PLUS] = ACTIONS(6594), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(6594), - [anon_sym_PERCENT] = ACTIONS(6594), - [anon_sym_PIPE_PIPE] = ACTIONS(6601), - [anon_sym_AMP_AMP] = ACTIONS(6601), - [anon_sym_PIPE] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6594), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_EQ_EQ] = ACTIONS(6601), - [anon_sym_BANG_EQ] = ACTIONS(6601), - [anon_sym_GT] = ACTIONS(6594), - [anon_sym_GT_EQ] = ACTIONS(6601), - [anon_sym_LT_EQ] = ACTIONS(6594), - [anon_sym_LT] = ACTIONS(6594), - [anon_sym_LT_LT] = ACTIONS(6594), - [anon_sym_GT_GT] = ACTIONS(6594), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym___attribute__] = ACTIONS(6601), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6601), - [anon_sym_EQ] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6601), - [anon_sym_STAR_EQ] = ACTIONS(6601), - [anon_sym_SLASH_EQ] = ACTIONS(6601), - [anon_sym_PERCENT_EQ] = ACTIONS(6601), - [anon_sym_PLUS_EQ] = ACTIONS(6601), - [anon_sym_DASH_EQ] = ACTIONS(6601), - [anon_sym_LT_LT_EQ] = ACTIONS(6601), - [anon_sym_GT_GT_EQ] = ACTIONS(6601), - [anon_sym_AMP_EQ] = ACTIONS(6601), - [anon_sym_CARET_EQ] = ACTIONS(6601), - [anon_sym_PIPE_EQ] = ACTIONS(6601), - [anon_sym_and_eq] = ACTIONS(6601), - [anon_sym_or_eq] = ACTIONS(6601), - [anon_sym_xor_eq] = ACTIONS(6601), - [anon_sym_LT_EQ_GT] = ACTIONS(6601), - [anon_sym_or] = ACTIONS(6594), - [anon_sym_and] = ACTIONS(6594), - [anon_sym_bitor] = ACTIONS(6601), - [anon_sym_xor] = ACTIONS(6594), - [anon_sym_bitand] = ACTIONS(6601), - [anon_sym_not_eq] = ACTIONS(6601), - [anon_sym_DASH_DASH] = ACTIONS(6601), - [anon_sym_PLUS_PLUS] = ACTIONS(6601), - [anon_sym_DOT] = ACTIONS(6594), - [anon_sym_DOT_STAR] = ACTIONS(6601), - [anon_sym_DASH_GT] = ACTIONS(6594), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_final] = ACTIONS(6601), - [anon_sym_override] = ACTIONS(6601), - [anon_sym_requires] = ACTIONS(6601), - [anon_sym_DASH_GT_STAR] = ACTIONS(6601), + [anon_sym_final] = ACTIONS(6746), + [anon_sym_override] = ACTIONS(6746), + [anon_sym_noexcept] = ACTIONS(6746), + [anon_sym_throw] = ACTIONS(6746), + [anon_sym_requires] = ACTIONS(6746), + [anon_sym_COLON_RBRACK] = ACTIONS(6748), }, - [STATE(2495)] = { - [sym_identifier] = ACTIONS(6594), + [STATE(2464)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), [anon_sym_COMMA] = ACTIONS(6598), [anon_sym_RPAREN] = ACTIONS(6598), [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_TILDE] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6598), - [anon_sym_SLASH] = ACTIONS(6603), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6596), + [anon_sym_SLASH] = ACTIONS(6596), [anon_sym_PERCENT] = ACTIONS(6596), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), + [anon_sym_PIPE] = ACTIONS(6596), [anon_sym_CARET] = ACTIONS(6596), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), [anon_sym_LT_LT] = ACTIONS(6596), [anon_sym_GT_GT] = ACTIONS(6596), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym_virtual] = ACTIONS(6594), - [anon_sym_extern] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), - [anon_sym___declspec] = ACTIONS(6594), - [anon_sym___based] = ACTIONS(6594), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6605), - [anon_sym_static] = ACTIONS(6594), - [anon_sym_EQ] = ACTIONS(6594), - [anon_sym_register] = ACTIONS(6594), - [anon_sym_inline] = ACTIONS(6594), - [anon_sym___inline] = ACTIONS(6594), - [anon_sym___inline__] = ACTIONS(6594), - [anon_sym___forceinline] = ACTIONS(6594), - [anon_sym_thread_local] = ACTIONS(6594), - [anon_sym___thread] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6603), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6603), - [anon_sym_not_eq] = ACTIONS(6603), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6598), + [anon_sym___attribute__] = ACTIONS(6598), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6598), + [anon_sym_volatile] = ACTIONS(6598), + [anon_sym_restrict] = ACTIONS(6598), + [anon_sym___restrict__] = ACTIONS(6598), + [anon_sym__Atomic] = ACTIONS(6598), + [anon_sym__Noreturn] = ACTIONS(6598), + [anon_sym_noreturn] = ACTIONS(6598), + [anon_sym__Nonnull] = ACTIONS(6598), + [anon_sym_mutable] = ACTIONS(6598), + [anon_sym_constinit] = ACTIONS(6598), + [anon_sym_consteval] = ACTIONS(6598), + [anon_sym_alignas] = ACTIONS(6598), + [anon_sym__Alignas] = ACTIONS(6598), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6598), + [anon_sym_or_eq] = ACTIONS(6598), + [anon_sym_xor_eq] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), [anon_sym_DASH_GT] = ACTIONS(6596), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_template] = ACTIONS(6594), - [anon_sym_operator] = ACTIONS(6594), - [anon_sym_LBRACK_COLON] = ACTIONS(6601), - }, - [STATE(2496)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7134), - [anon_sym_LPAREN2] = ACTIONS(7134), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7132), - [anon_sym_SLASH] = ACTIONS(7132), - [anon_sym_PERCENT] = ACTIONS(7132), - [anon_sym_PIPE_PIPE] = ACTIONS(7134), - [anon_sym_AMP_AMP] = ACTIONS(7134), - [anon_sym_PIPE] = ACTIONS(7132), - [anon_sym_CARET] = ACTIONS(7132), - [anon_sym_AMP] = ACTIONS(7132), - [anon_sym_EQ_EQ] = ACTIONS(7134), - [anon_sym_BANG_EQ] = ACTIONS(7134), - [anon_sym_GT] = ACTIONS(7132), - [anon_sym_GT_EQ] = ACTIONS(7132), - [anon_sym_LT_EQ] = ACTIONS(7132), - [anon_sym_LT] = ACTIONS(7132), - [anon_sym_LT_LT] = ACTIONS(7132), - [anon_sym_GT_GT] = ACTIONS(7132), - [anon_sym___extension__] = ACTIONS(7134), - [anon_sym___attribute__] = ACTIONS(7134), - [anon_sym___attribute] = ACTIONS(7132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), - [anon_sym_LBRACK] = ACTIONS(7132), - [anon_sym_EQ] = ACTIONS(7132), - [anon_sym_const] = ACTIONS(7132), - [anon_sym_constexpr] = ACTIONS(7134), - [anon_sym_volatile] = ACTIONS(7134), - [anon_sym_restrict] = ACTIONS(7134), - [anon_sym___restrict__] = ACTIONS(7134), - [anon_sym__Atomic] = ACTIONS(7134), - [anon_sym__Noreturn] = ACTIONS(7134), - [anon_sym_noreturn] = ACTIONS(7134), - [anon_sym__Nonnull] = ACTIONS(7134), - [anon_sym_mutable] = ACTIONS(7134), - [anon_sym_constinit] = ACTIONS(7134), - [anon_sym_consteval] = ACTIONS(7134), - [anon_sym_alignas] = ACTIONS(7134), - [anon_sym__Alignas] = ACTIONS(7134), - [anon_sym_QMARK] = ACTIONS(7134), - [anon_sym_STAR_EQ] = ACTIONS(7134), - [anon_sym_SLASH_EQ] = ACTIONS(7134), - [anon_sym_PERCENT_EQ] = ACTIONS(7134), - [anon_sym_PLUS_EQ] = ACTIONS(7134), - [anon_sym_DASH_EQ] = ACTIONS(7134), - [anon_sym_LT_LT_EQ] = ACTIONS(7134), - [anon_sym_GT_GT_EQ] = ACTIONS(7132), - [anon_sym_AMP_EQ] = ACTIONS(7134), - [anon_sym_CARET_EQ] = ACTIONS(7134), - [anon_sym_PIPE_EQ] = ACTIONS(7134), - [anon_sym_and_eq] = ACTIONS(7134), - [anon_sym_or_eq] = ACTIONS(7134), - [anon_sym_xor_eq] = ACTIONS(7134), - [anon_sym_LT_EQ_GT] = ACTIONS(7134), - [anon_sym_or] = ACTIONS(7132), - [anon_sym_and] = ACTIONS(7132), - [anon_sym_bitor] = ACTIONS(7134), - [anon_sym_xor] = ACTIONS(7132), - [anon_sym_bitand] = ACTIONS(7134), - [anon_sym_not_eq] = ACTIONS(7134), - [anon_sym_DASH_DASH] = ACTIONS(7134), - [anon_sym_PLUS_PLUS] = ACTIONS(7134), - [anon_sym_asm] = ACTIONS(7134), - [anon_sym___asm__] = ACTIONS(7134), - [anon_sym___asm] = ACTIONS(7132), - [anon_sym_DOT] = ACTIONS(7132), - [anon_sym_DOT_STAR] = ACTIONS(7134), - [anon_sym_DASH_GT] = ACTIONS(7134), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7134), - [anon_sym_override] = ACTIONS(7134), - [anon_sym_GT2] = ACTIONS(7134), - [anon_sym_noexcept] = ACTIONS(7134), - [anon_sym_throw] = ACTIONS(7134), - [anon_sym_requires] = ACTIONS(7134), - }, - [STATE(2497)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8784), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9165), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9165), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2498)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8673), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9243), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9243), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), - [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [sym_auto] = ACTIONS(6598), + [anon_sym_decltype] = ACTIONS(6598), + [anon_sym_final] = ACTIONS(6598), + [anon_sym_override] = ACTIONS(6598), + [anon_sym_requires] = ACTIONS(6598), + [anon_sym_DASH_GT_STAR] = ACTIONS(6598), }, - [STATE(2499)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2499), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(7001), - [anon_sym_RPAREN] = ACTIONS(7001), - [anon_sym_LPAREN2] = ACTIONS(7001), - [anon_sym_DASH] = ACTIONS(6999), - [anon_sym_PLUS] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(6999), - [anon_sym_SLASH] = ACTIONS(6999), - [anon_sym_PERCENT] = ACTIONS(6999), - [anon_sym_PIPE_PIPE] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(7001), - [anon_sym_PIPE] = ACTIONS(6999), - [anon_sym_CARET] = ACTIONS(6999), - [anon_sym_AMP] = ACTIONS(6999), - [anon_sym_EQ_EQ] = ACTIONS(7001), - [anon_sym_BANG_EQ] = ACTIONS(7001), - [anon_sym_GT] = ACTIONS(6999), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(6999), - [anon_sym_LT] = ACTIONS(6999), - [anon_sym_LT_LT] = ACTIONS(6999), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(6999), - [anon_sym_LBRACE] = ACTIONS(7001), - [anon_sym_signed] = ACTIONS(8309), - [anon_sym_unsigned] = ACTIONS(8309), - [anon_sym_long] = ACTIONS(8309), - [anon_sym_short] = ACTIONS(8309), - [anon_sym_LBRACK] = ACTIONS(7001), - [anon_sym_EQ] = ACTIONS(6999), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7001), - [anon_sym_STAR_EQ] = ACTIONS(7001), - [anon_sym_SLASH_EQ] = ACTIONS(7001), - [anon_sym_PERCENT_EQ] = ACTIONS(7001), - [anon_sym_PLUS_EQ] = ACTIONS(7001), - [anon_sym_DASH_EQ] = ACTIONS(7001), - [anon_sym_LT_LT_EQ] = ACTIONS(7001), - [anon_sym_GT_GT_EQ] = ACTIONS(7001), - [anon_sym_AMP_EQ] = ACTIONS(7001), - [anon_sym_CARET_EQ] = ACTIONS(7001), - [anon_sym_PIPE_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ_GT] = ACTIONS(7001), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(7001), - [anon_sym_PLUS_PLUS] = ACTIONS(7001), - [anon_sym_DOT] = ACTIONS(6999), - [anon_sym_DOT_STAR] = ACTIONS(7001), - [anon_sym_DASH_GT] = ACTIONS(6999), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - [anon_sym_DASH_GT_STAR] = ACTIONS(7001), + [STATE(2465)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_STAR_EQ] = ACTIONS(6612), + [anon_sym_SLASH_EQ] = ACTIONS(6612), + [anon_sym_PERCENT_EQ] = ACTIONS(6612), + [anon_sym_PLUS_EQ] = ACTIONS(6612), + [anon_sym_DASH_EQ] = ACTIONS(6612), + [anon_sym_LT_LT_EQ] = ACTIONS(6612), + [anon_sym_GT_GT_EQ] = ACTIONS(6612), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_and_eq] = ACTIONS(6612), + [anon_sym_or_eq] = ACTIONS(6612), + [anon_sym_xor_eq] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_final] = ACTIONS(6612), + [anon_sym_override] = ACTIONS(6612), + [anon_sym_requires] = ACTIONS(6612), + [anon_sym_DASH_GT_STAR] = ACTIONS(6612), }, - [STATE(2500)] = { - [sym_type_qualifier] = STATE(2500), - [sym_alignas_qualifier] = STATE(2727), - [aux_sym__type_definition_type_repeat1] = STATE(2500), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_RPAREN] = ACTIONS(6891), - [aux_sym_preproc_if_token2] = ACTIONS(6891), - [aux_sym_preproc_else_token1] = ACTIONS(6891), - [aux_sym_preproc_elif_token1] = ACTIONS(6889), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6891), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6891), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6891), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6891), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6891), - [anon_sym_GT_GT] = ACTIONS(6891), - [anon_sym_SEMI] = ACTIONS(6891), - [anon_sym___extension__] = ACTIONS(8369), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_COLON] = ACTIONS(6889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6891), - [anon_sym_RBRACE] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(8369), - [anon_sym_constexpr] = ACTIONS(8369), - [anon_sym_volatile] = ACTIONS(8369), - [anon_sym_restrict] = ACTIONS(8369), - [anon_sym___restrict__] = ACTIONS(8369), - [anon_sym__Atomic] = ACTIONS(8369), - [anon_sym__Noreturn] = ACTIONS(8369), - [anon_sym_noreturn] = ACTIONS(8369), - [anon_sym__Nonnull] = ACTIONS(8369), - [anon_sym_mutable] = ACTIONS(8369), - [anon_sym_constinit] = ACTIONS(8369), - [anon_sym_consteval] = ACTIONS(8369), - [anon_sym_alignas] = ACTIONS(8372), - [anon_sym__Alignas] = ACTIONS(8372), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_asm] = ACTIONS(6889), - [anon_sym___asm__] = ACTIONS(6889), - [anon_sym___asm] = ACTIONS(6889), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_noexcept] = ACTIONS(6889), - [anon_sym_throw] = ACTIONS(6889), - [anon_sym_requires] = ACTIONS(6889), - [anon_sym_COLON_RBRACK] = ACTIONS(6891), + [STATE(2466)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_STAR_EQ] = ACTIONS(6616), + [anon_sym_SLASH_EQ] = ACTIONS(6616), + [anon_sym_PERCENT_EQ] = ACTIONS(6616), + [anon_sym_PLUS_EQ] = ACTIONS(6616), + [anon_sym_DASH_EQ] = ACTIONS(6616), + [anon_sym_LT_LT_EQ] = ACTIONS(6616), + [anon_sym_GT_GT_EQ] = ACTIONS(6616), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_and_eq] = ACTIONS(6616), + [anon_sym_or_eq] = ACTIONS(6616), + [anon_sym_xor_eq] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_final] = ACTIONS(6616), + [anon_sym_override] = ACTIONS(6616), + [anon_sym_requires] = ACTIONS(6616), + [anon_sym_DASH_GT_STAR] = ACTIONS(6616), }, - [STATE(2501)] = { - [sym__abstract_declarator] = STATE(5356), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2523), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1975), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7393), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7144), + [STATE(2467)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7154), + [anon_sym_COMMA] = ACTIONS(7154), + [anon_sym_LPAREN2] = ACTIONS(7154), + [anon_sym_DASH] = ACTIONS(7152), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7152), + [anon_sym_PIPE_PIPE] = ACTIONS(7154), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE] = ACTIONS(7152), + [anon_sym_CARET] = ACTIONS(7152), + [anon_sym_AMP] = ACTIONS(7152), + [anon_sym_EQ_EQ] = ACTIONS(7154), + [anon_sym_BANG_EQ] = ACTIONS(7154), + [anon_sym_GT] = ACTIONS(7152), + [anon_sym_GT_EQ] = ACTIONS(7152), + [anon_sym_LT_EQ] = ACTIONS(7152), + [anon_sym_LT] = ACTIONS(7152), + [anon_sym_LT_LT] = ACTIONS(7152), + [anon_sym_GT_GT] = ACTIONS(7152), + [anon_sym___extension__] = ACTIONS(7154), + [anon_sym___attribute__] = ACTIONS(7154), + [anon_sym___attribute] = ACTIONS(7152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7154), [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7393), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_and_eq] = ACTIONS(7391), - [anon_sym_or_eq] = ACTIONS(7391), - [anon_sym_xor_eq] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7391), + [anon_sym_EQ] = ACTIONS(7152), + [anon_sym_const] = ACTIONS(7152), + [anon_sym_constexpr] = ACTIONS(7154), + [anon_sym_volatile] = ACTIONS(7154), + [anon_sym_restrict] = ACTIONS(7154), + [anon_sym___restrict__] = ACTIONS(7154), + [anon_sym__Atomic] = ACTIONS(7154), + [anon_sym__Noreturn] = ACTIONS(7154), + [anon_sym_noreturn] = ACTIONS(7154), + [anon_sym__Nonnull] = ACTIONS(7154), + [anon_sym_mutable] = ACTIONS(7154), + [anon_sym_constinit] = ACTIONS(7154), + [anon_sym_consteval] = ACTIONS(7154), + [anon_sym_alignas] = ACTIONS(7154), + [anon_sym__Alignas] = ACTIONS(7154), + [anon_sym_QMARK] = ACTIONS(7154), + [anon_sym_STAR_EQ] = ACTIONS(7154), + [anon_sym_SLASH_EQ] = ACTIONS(7154), + [anon_sym_PERCENT_EQ] = ACTIONS(7154), + [anon_sym_PLUS_EQ] = ACTIONS(7154), + [anon_sym_DASH_EQ] = ACTIONS(7154), + [anon_sym_LT_LT_EQ] = ACTIONS(7154), + [anon_sym_GT_GT_EQ] = ACTIONS(7152), + [anon_sym_AMP_EQ] = ACTIONS(7154), + [anon_sym_CARET_EQ] = ACTIONS(7154), + [anon_sym_PIPE_EQ] = ACTIONS(7154), + [anon_sym_and_eq] = ACTIONS(7154), + [anon_sym_or_eq] = ACTIONS(7154), + [anon_sym_xor_eq] = ACTIONS(7154), + [anon_sym_LT_EQ_GT] = ACTIONS(7154), + [anon_sym_or] = ACTIONS(7152), + [anon_sym_and] = ACTIONS(7152), + [anon_sym_bitor] = ACTIONS(7154), + [anon_sym_xor] = ACTIONS(7152), + [anon_sym_bitand] = ACTIONS(7154), + [anon_sym_not_eq] = ACTIONS(7154), + [anon_sym_DASH_DASH] = ACTIONS(7154), + [anon_sym_PLUS_PLUS] = ACTIONS(7154), + [anon_sym_asm] = ACTIONS(7154), + [anon_sym___asm__] = ACTIONS(7154), + [anon_sym___asm] = ACTIONS(7152), + [anon_sym_DOT] = ACTIONS(7152), + [anon_sym_DOT_STAR] = ACTIONS(7154), + [anon_sym_DASH_GT] = ACTIONS(7154), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7154), + [anon_sym_override] = ACTIONS(7154), + [anon_sym_GT2] = ACTIONS(7154), + [anon_sym_noexcept] = ACTIONS(7154), + [anon_sym_throw] = ACTIONS(7154), + [anon_sym_requires] = ACTIONS(7154), }, - [STATE(2502)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7077), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym___extension__] = ACTIONS(7079), - [anon_sym___attribute__] = ACTIONS(7079), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), - [anon_sym_LBRACK] = ACTIONS(7077), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7079), - [anon_sym_volatile] = ACTIONS(7079), - [anon_sym_restrict] = ACTIONS(7079), - [anon_sym___restrict__] = ACTIONS(7079), - [anon_sym__Atomic] = ACTIONS(7079), - [anon_sym__Noreturn] = ACTIONS(7079), - [anon_sym_noreturn] = ACTIONS(7079), - [anon_sym__Nonnull] = ACTIONS(7079), - [anon_sym_mutable] = ACTIONS(7079), - [anon_sym_constinit] = ACTIONS(7079), - [anon_sym_consteval] = ACTIONS(7079), - [anon_sym_alignas] = ACTIONS(7079), - [anon_sym__Alignas] = ACTIONS(7079), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7077), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_and_eq] = ACTIONS(7079), - [anon_sym_or_eq] = ACTIONS(7079), - [anon_sym_xor_eq] = ACTIONS(7079), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7079), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7079), - [anon_sym_not_eq] = ACTIONS(7079), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_asm] = ACTIONS(7079), - [anon_sym___asm__] = ACTIONS(7079), - [anon_sym___asm] = ACTIONS(7077), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7079), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7079), - [anon_sym_override] = ACTIONS(7079), - [anon_sym_GT2] = ACTIONS(7079), - [anon_sym_noexcept] = ACTIONS(7079), - [anon_sym_throw] = ACTIONS(7079), - [anon_sym_requires] = ACTIONS(7079), + [STATE(2468)] = { + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym__function_exception_specification] = STATE(2904), + [sym__function_attributes_end] = STATE(4318), + [sym__function_postfix] = STATE(4851), + [sym_trailing_return_type] = STATE(4354), + [sym_noexcept] = STATE(2904), + [sym_throw_specifier] = STATE(2904), + [sym_requires_clause] = STATE(4851), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8167), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6663), + [anon_sym_override] = ACTIONS(6663), + [anon_sym_noexcept] = ACTIONS(6642), + [anon_sym_throw] = ACTIONS(6644), + [anon_sym_requires] = ACTIONS(6665), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), }, - [STATE(2503)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), - [anon_sym_COMMA] = ACTIONS(7695), - [anon_sym_LPAREN2] = ACTIONS(7695), - [anon_sym_DASH] = ACTIONS(7693), - [anon_sym_PLUS] = ACTIONS(7693), - [anon_sym_STAR] = ACTIONS(7693), - [anon_sym_SLASH] = ACTIONS(7693), - [anon_sym_PERCENT] = ACTIONS(7693), - [anon_sym_PIPE_PIPE] = ACTIONS(7695), - [anon_sym_AMP_AMP] = ACTIONS(7695), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_CARET] = ACTIONS(7693), - [anon_sym_AMP] = ACTIONS(7693), - [anon_sym_EQ_EQ] = ACTIONS(7695), - [anon_sym_BANG_EQ] = ACTIONS(7695), - [anon_sym_GT] = ACTIONS(7693), - [anon_sym_GT_EQ] = ACTIONS(7693), - [anon_sym_LT_EQ] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7693), - [anon_sym_LT_LT] = ACTIONS(7693), - [anon_sym_GT_GT] = ACTIONS(7693), - [anon_sym___extension__] = ACTIONS(7695), - [anon_sym___attribute__] = ACTIONS(7695), - [anon_sym___attribute] = ACTIONS(7693), - [anon_sym_LBRACE] = ACTIONS(7695), - [anon_sym_signed] = ACTIONS(8226), - [anon_sym_unsigned] = ACTIONS(8226), - [anon_sym_long] = ACTIONS(8226), - [anon_sym_short] = ACTIONS(8226), - [anon_sym_LBRACK] = ACTIONS(7695), - [anon_sym_EQ] = ACTIONS(7693), - [anon_sym_const] = ACTIONS(7693), - [anon_sym_constexpr] = ACTIONS(7695), - [anon_sym_volatile] = ACTIONS(7695), - [anon_sym_restrict] = ACTIONS(7695), - [anon_sym___restrict__] = ACTIONS(7695), - [anon_sym__Atomic] = ACTIONS(7695), - [anon_sym__Noreturn] = ACTIONS(7695), - [anon_sym_noreturn] = ACTIONS(7695), - [anon_sym__Nonnull] = ACTIONS(7695), - [anon_sym_mutable] = ACTIONS(7695), - [anon_sym_constinit] = ACTIONS(7695), - [anon_sym_consteval] = ACTIONS(7695), - [anon_sym_alignas] = ACTIONS(7695), - [anon_sym__Alignas] = ACTIONS(7695), - [anon_sym_QMARK] = ACTIONS(7695), - [anon_sym_STAR_EQ] = ACTIONS(7695), - [anon_sym_SLASH_EQ] = ACTIONS(7695), - [anon_sym_PERCENT_EQ] = ACTIONS(7695), - [anon_sym_PLUS_EQ] = ACTIONS(7695), - [anon_sym_DASH_EQ] = ACTIONS(7695), - [anon_sym_LT_LT_EQ] = ACTIONS(7695), - [anon_sym_GT_GT_EQ] = ACTIONS(7693), - [anon_sym_AMP_EQ] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(7695), - [anon_sym_and_eq] = ACTIONS(7695), - [anon_sym_or_eq] = ACTIONS(7695), - [anon_sym_xor_eq] = ACTIONS(7695), - [anon_sym_LT_EQ_GT] = ACTIONS(7695), - [anon_sym_or] = ACTIONS(7693), - [anon_sym_and] = ACTIONS(7693), - [anon_sym_bitor] = ACTIONS(7695), - [anon_sym_xor] = ACTIONS(7693), - [anon_sym_bitand] = ACTIONS(7695), - [anon_sym_not_eq] = ACTIONS(7695), - [anon_sym_DASH_DASH] = ACTIONS(7695), - [anon_sym_PLUS_PLUS] = ACTIONS(7695), - [anon_sym_DOT] = ACTIONS(7693), - [anon_sym_DOT_STAR] = ACTIONS(7695), - [anon_sym_DASH_GT] = ACTIONS(7695), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7695), - [anon_sym_override] = ACTIONS(7695), - [anon_sym_GT2] = ACTIONS(7695), - [anon_sym_requires] = ACTIONS(7695), + [STATE(2469)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2469), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7062), + [anon_sym_COMMA] = ACTIONS(7062), + [anon_sym_RPAREN] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(7062), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7060), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7060), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7060), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7062), + [anon_sym_LT_EQ] = ACTIONS(7060), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7060), + [anon_sym_GT_GT] = ACTIONS(7060), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym_LBRACE] = ACTIONS(7062), + [anon_sym_signed] = ACTIONS(8308), + [anon_sym_unsigned] = ACTIONS(8308), + [anon_sym_long] = ACTIONS(8308), + [anon_sym_short] = ACTIONS(8308), + [anon_sym_LBRACK] = ACTIONS(7062), + [anon_sym_EQ] = ACTIONS(7060), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_STAR_EQ] = ACTIONS(7062), + [anon_sym_SLASH_EQ] = ACTIONS(7062), + [anon_sym_PERCENT_EQ] = ACTIONS(7062), + [anon_sym_PLUS_EQ] = ACTIONS(7062), + [anon_sym_DASH_EQ] = ACTIONS(7062), + [anon_sym_LT_LT_EQ] = ACTIONS(7062), + [anon_sym_GT_GT_EQ] = ACTIONS(7062), + [anon_sym_AMP_EQ] = ACTIONS(7062), + [anon_sym_CARET_EQ] = ACTIONS(7062), + [anon_sym_PIPE_EQ] = ACTIONS(7062), + [anon_sym_LT_EQ_GT] = ACTIONS(7062), + [anon_sym_or] = ACTIONS(7060), + [anon_sym_and] = ACTIONS(7060), + [anon_sym_bitor] = ACTIONS(7060), + [anon_sym_xor] = ACTIONS(7060), + [anon_sym_bitand] = ACTIONS(7060), + [anon_sym_not_eq] = ACTIONS(7060), + [anon_sym_DASH_DASH] = ACTIONS(7062), + [anon_sym_PLUS_PLUS] = ACTIONS(7062), + [anon_sym_DOT] = ACTIONS(7060), + [anon_sym_DOT_STAR] = ACTIONS(7062), + [anon_sym_DASH_GT] = ACTIONS(7060), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7060), + [anon_sym_override] = ACTIONS(7060), + [anon_sym_requires] = ACTIONS(7060), + [anon_sym_DASH_GT_STAR] = ACTIONS(7062), }, - [STATE(2504)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym_ref_qualifier] = STATE(2552), - [sym__function_exception_specification] = STATE(2987), - [sym__function_attributes_end] = STATE(4394), - [sym__function_postfix] = STATE(5110), - [sym_trailing_return_type] = STATE(4532), - [sym_noexcept] = STATE(2987), - [sym_throw_specifier] = STATE(2987), - [sym_requires_clause] = STATE(5110), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(8354), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(8357), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_RBRACK] = ACTIONS(7791), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8360), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6742), - [anon_sym_override] = ACTIONS(6742), - [anon_sym_noexcept] = ACTIONS(6735), - [anon_sym_throw] = ACTIONS(6737), - [anon_sym_requires] = ACTIONS(6744), + [STATE(2470)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2677), + [aux_sym__type_definition_type_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(6870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6872), + [anon_sym_COMMA] = ACTIONS(6872), + [anon_sym_RPAREN] = ACTIONS(6872), + [aux_sym_preproc_if_token2] = ACTIONS(6872), + [aux_sym_preproc_else_token1] = ACTIONS(6872), + [aux_sym_preproc_elif_token1] = ACTIONS(6870), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6872), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6872), + [anon_sym_LPAREN2] = ACTIONS(6872), + [anon_sym_DASH] = ACTIONS(6870), + [anon_sym_PLUS] = ACTIONS(6870), + [anon_sym_STAR] = ACTIONS(6872), + [anon_sym_SLASH] = ACTIONS(6870), + [anon_sym_PERCENT] = ACTIONS(6872), + [anon_sym_PIPE_PIPE] = ACTIONS(6872), + [anon_sym_AMP_AMP] = ACTIONS(6872), + [anon_sym_PIPE] = ACTIONS(6870), + [anon_sym_CARET] = ACTIONS(6872), + [anon_sym_AMP] = ACTIONS(6870), + [anon_sym_EQ_EQ] = ACTIONS(6872), + [anon_sym_BANG_EQ] = ACTIONS(6872), + [anon_sym_GT] = ACTIONS(6870), + [anon_sym_GT_EQ] = ACTIONS(6872), + [anon_sym_LT_EQ] = ACTIONS(6870), + [anon_sym_LT] = ACTIONS(6870), + [anon_sym_LT_LT] = ACTIONS(6872), + [anon_sym_GT_GT] = ACTIONS(6872), + [anon_sym_SEMI] = ACTIONS(6872), + [anon_sym___extension__] = ACTIONS(7166), + [anon_sym___attribute__] = ACTIONS(6870), + [anon_sym___attribute] = ACTIONS(6870), + [anon_sym_COLON] = ACTIONS(6870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6872), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6872), + [anon_sym_RBRACE] = ACTIONS(6872), + [anon_sym_LBRACK] = ACTIONS(6870), + [anon_sym_const] = ACTIONS(7166), + [anon_sym_constexpr] = ACTIONS(7166), + [anon_sym_volatile] = ACTIONS(7166), + [anon_sym_restrict] = ACTIONS(7166), + [anon_sym___restrict__] = ACTIONS(7166), + [anon_sym__Atomic] = ACTIONS(7166), + [anon_sym__Noreturn] = ACTIONS(7166), + [anon_sym_noreturn] = ACTIONS(7166), + [anon_sym__Nonnull] = ACTIONS(7166), + [anon_sym_mutable] = ACTIONS(7166), + [anon_sym_constinit] = ACTIONS(7166), + [anon_sym_consteval] = ACTIONS(7166), + [anon_sym_alignas] = ACTIONS(7172), + [anon_sym__Alignas] = ACTIONS(7172), + [anon_sym_QMARK] = ACTIONS(6872), + [anon_sym_LT_EQ_GT] = ACTIONS(6872), + [anon_sym_or] = ACTIONS(6870), + [anon_sym_and] = ACTIONS(6870), + [anon_sym_bitor] = ACTIONS(6870), + [anon_sym_xor] = ACTIONS(6870), + [anon_sym_bitand] = ACTIONS(6870), + [anon_sym_not_eq] = ACTIONS(6870), + [anon_sym_DASH_DASH] = ACTIONS(6872), + [anon_sym_PLUS_PLUS] = ACTIONS(6872), + [anon_sym_asm] = ACTIONS(6870), + [anon_sym___asm__] = ACTIONS(6870), + [anon_sym___asm] = ACTIONS(6870), + [anon_sym_DOT] = ACTIONS(6870), + [anon_sym_DOT_STAR] = ACTIONS(6872), + [anon_sym_DASH_GT] = ACTIONS(6872), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6870), + [anon_sym_override] = ACTIONS(6870), + [anon_sym_noexcept] = ACTIONS(6870), + [anon_sym_throw] = ACTIONS(6870), + [anon_sym_requires] = ACTIONS(6870), + [anon_sym_COLON_RBRACK] = ACTIONS(6872), }, - [STATE(2505)] = { - [sym__declaration_modifiers] = STATE(2734), - [sym__declaration_specifiers] = STATE(5388), - [sym_attribute_specifier] = STATE(2734), - [sym_attribute_declaration] = STATE(2734), - [sym_ms_declspec_modifier] = STATE(2734), - [sym_storage_class_specifier] = STATE(2734), - [sym_type_qualifier] = STATE(2734), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(10547), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_optional_parameter_declaration] = STATE(10547), - [sym_variadic_parameter_declaration] = STATE(10547), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2734), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), + [STATE(2471)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3126), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [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), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3126), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_and_eq] = ACTIONS(3116), + [anon_sym_or_eq] = ACTIONS(3116), + [anon_sym_xor_eq] = ACTIONS(3116), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3116), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3116), + [anon_sym_not_eq] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym___asm__] = ACTIONS(3116), + [anon_sym___asm] = ACTIONS(3126), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_GT2] = ACTIONS(3116), + [anon_sym_noexcept] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_requires] = ACTIONS(3116), + }, + [STATE(2472)] = { + [sym__declaration_modifiers] = STATE(2788), + [sym__declaration_specifiers] = STATE(5391), + [sym_attribute_specifier] = STATE(2788), + [sym_attribute_declaration] = STATE(2788), + [sym_ms_declspec_modifier] = STATE(2788), + [sym_storage_class_specifier] = STATE(2788), + [sym_type_qualifier] = STATE(2788), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(10352), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_optional_parameter_declaration] = STATE(10352), + [sym_variadic_parameter_declaration] = STATE(10352), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2788), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(2310), + [anon_sym_virtual] = ACTIONS(2308), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -356311,1096 +353569,1174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2506)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), - [anon_sym_COMMA] = ACTIONS(7703), - [anon_sym_LPAREN2] = ACTIONS(7703), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_STAR] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7701), - [anon_sym_PERCENT] = ACTIONS(7701), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_AMP_AMP] = ACTIONS(7703), - [anon_sym_PIPE] = ACTIONS(7701), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_AMP] = ACTIONS(7701), - [anon_sym_EQ_EQ] = ACTIONS(7703), - [anon_sym_BANG_EQ] = ACTIONS(7703), - [anon_sym_GT] = ACTIONS(7701), - [anon_sym_GT_EQ] = ACTIONS(7701), - [anon_sym_LT_EQ] = ACTIONS(7701), - [anon_sym_LT] = ACTIONS(7701), - [anon_sym_LT_LT] = ACTIONS(7701), - [anon_sym_GT_GT] = ACTIONS(7701), - [anon_sym___extension__] = ACTIONS(7703), - [anon_sym___attribute__] = ACTIONS(7703), - [anon_sym___attribute] = ACTIONS(7701), - [anon_sym_LBRACE] = ACTIONS(7703), - [anon_sym_signed] = ACTIONS(8375), - [anon_sym_unsigned] = ACTIONS(8375), - [anon_sym_long] = ACTIONS(8375), - [anon_sym_short] = ACTIONS(8375), - [anon_sym_LBRACK] = ACTIONS(7703), - [anon_sym_EQ] = ACTIONS(7701), - [anon_sym_const] = ACTIONS(7701), - [anon_sym_constexpr] = ACTIONS(7703), - [anon_sym_volatile] = ACTIONS(7703), - [anon_sym_restrict] = ACTIONS(7703), - [anon_sym___restrict__] = ACTIONS(7703), - [anon_sym__Atomic] = ACTIONS(7703), - [anon_sym__Noreturn] = ACTIONS(7703), - [anon_sym_noreturn] = ACTIONS(7703), - [anon_sym__Nonnull] = ACTIONS(7703), - [anon_sym_mutable] = ACTIONS(7703), - [anon_sym_constinit] = ACTIONS(7703), - [anon_sym_consteval] = ACTIONS(7703), - [anon_sym_alignas] = ACTIONS(7703), - [anon_sym__Alignas] = ACTIONS(7703), - [anon_sym_QMARK] = ACTIONS(7703), - [anon_sym_STAR_EQ] = ACTIONS(7703), - [anon_sym_SLASH_EQ] = ACTIONS(7703), - [anon_sym_PERCENT_EQ] = ACTIONS(7703), - [anon_sym_PLUS_EQ] = ACTIONS(7703), - [anon_sym_DASH_EQ] = ACTIONS(7703), - [anon_sym_LT_LT_EQ] = ACTIONS(7703), - [anon_sym_GT_GT_EQ] = ACTIONS(7701), - [anon_sym_AMP_EQ] = ACTIONS(7703), - [anon_sym_CARET_EQ] = ACTIONS(7703), - [anon_sym_PIPE_EQ] = ACTIONS(7703), - [anon_sym_and_eq] = ACTIONS(7703), - [anon_sym_or_eq] = ACTIONS(7703), - [anon_sym_xor_eq] = ACTIONS(7703), - [anon_sym_LT_EQ_GT] = ACTIONS(7703), - [anon_sym_or] = ACTIONS(7701), - [anon_sym_and] = ACTIONS(7701), - [anon_sym_bitor] = ACTIONS(7703), - [anon_sym_xor] = ACTIONS(7701), - [anon_sym_bitand] = ACTIONS(7703), - [anon_sym_not_eq] = ACTIONS(7703), - [anon_sym_DASH_DASH] = ACTIONS(7703), - [anon_sym_PLUS_PLUS] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(7701), - [anon_sym_DOT_STAR] = ACTIONS(7703), - [anon_sym_DASH_GT] = ACTIONS(7703), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7703), - [anon_sym_override] = ACTIONS(7703), - [anon_sym_GT2] = ACTIONS(7703), - [anon_sym_requires] = ACTIONS(7703), - }, - [STATE(2507)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), - [anon_sym_COMMA] = ACTIONS(7709), - [anon_sym_LPAREN2] = ACTIONS(7709), - [anon_sym_DASH] = ACTIONS(7707), - [anon_sym_PLUS] = ACTIONS(7707), - [anon_sym_STAR] = ACTIONS(7707), - [anon_sym_SLASH] = ACTIONS(7707), - [anon_sym_PERCENT] = ACTIONS(7707), - [anon_sym_PIPE_PIPE] = ACTIONS(7709), - [anon_sym_AMP_AMP] = ACTIONS(7709), - [anon_sym_PIPE] = ACTIONS(7707), - [anon_sym_CARET] = ACTIONS(7707), - [anon_sym_AMP] = ACTIONS(7707), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_BANG_EQ] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7707), - [anon_sym_GT_EQ] = ACTIONS(7707), - [anon_sym_LT_EQ] = ACTIONS(7707), - [anon_sym_LT] = ACTIONS(7707), - [anon_sym_LT_LT] = ACTIONS(7707), - [anon_sym_GT_GT] = ACTIONS(7707), - [anon_sym___extension__] = ACTIONS(7709), - [anon_sym___attribute__] = ACTIONS(7709), - [anon_sym___attribute] = ACTIONS(7707), - [anon_sym_LBRACE] = ACTIONS(7709), - [anon_sym_signed] = ACTIONS(8377), - [anon_sym_unsigned] = ACTIONS(8377), - [anon_sym_long] = ACTIONS(8377), - [anon_sym_short] = ACTIONS(8377), - [anon_sym_LBRACK] = ACTIONS(7709), - [anon_sym_EQ] = ACTIONS(7707), - [anon_sym_const] = ACTIONS(7707), - [anon_sym_constexpr] = ACTIONS(7709), - [anon_sym_volatile] = ACTIONS(7709), - [anon_sym_restrict] = ACTIONS(7709), - [anon_sym___restrict__] = ACTIONS(7709), - [anon_sym__Atomic] = ACTIONS(7709), - [anon_sym__Noreturn] = ACTIONS(7709), - [anon_sym_noreturn] = ACTIONS(7709), - [anon_sym__Nonnull] = ACTIONS(7709), - [anon_sym_mutable] = ACTIONS(7709), - [anon_sym_constinit] = ACTIONS(7709), - [anon_sym_consteval] = ACTIONS(7709), - [anon_sym_alignas] = ACTIONS(7709), - [anon_sym__Alignas] = ACTIONS(7709), - [anon_sym_QMARK] = ACTIONS(7709), - [anon_sym_STAR_EQ] = ACTIONS(7709), - [anon_sym_SLASH_EQ] = ACTIONS(7709), - [anon_sym_PERCENT_EQ] = ACTIONS(7709), - [anon_sym_PLUS_EQ] = ACTIONS(7709), - [anon_sym_DASH_EQ] = ACTIONS(7709), - [anon_sym_LT_LT_EQ] = ACTIONS(7709), - [anon_sym_GT_GT_EQ] = ACTIONS(7707), - [anon_sym_AMP_EQ] = ACTIONS(7709), - [anon_sym_CARET_EQ] = ACTIONS(7709), - [anon_sym_PIPE_EQ] = ACTIONS(7709), - [anon_sym_and_eq] = ACTIONS(7709), - [anon_sym_or_eq] = ACTIONS(7709), - [anon_sym_xor_eq] = ACTIONS(7709), - [anon_sym_LT_EQ_GT] = ACTIONS(7709), - [anon_sym_or] = ACTIONS(7707), - [anon_sym_and] = ACTIONS(7707), - [anon_sym_bitor] = ACTIONS(7709), - [anon_sym_xor] = ACTIONS(7707), - [anon_sym_bitand] = ACTIONS(7709), - [anon_sym_not_eq] = ACTIONS(7709), - [anon_sym_DASH_DASH] = ACTIONS(7709), - [anon_sym_PLUS_PLUS] = ACTIONS(7709), - [anon_sym_DOT] = ACTIONS(7707), - [anon_sym_DOT_STAR] = ACTIONS(7709), - [anon_sym_DASH_GT] = ACTIONS(7709), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7709), - [anon_sym_override] = ACTIONS(7709), - [anon_sym_GT2] = ACTIONS(7709), - [anon_sym_requires] = ACTIONS(7709), + [STATE(2473)] = { + [sym_type_qualifier] = STATE(2473), + [sym_alignas_qualifier] = STATE(2677), + [aux_sym__type_definition_type_repeat1] = STATE(2473), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_RPAREN] = ACTIONS(6880), + [aux_sym_preproc_if_token2] = ACTIONS(6880), + [aux_sym_preproc_else_token1] = ACTIONS(6880), + [aux_sym_preproc_elif_token1] = ACTIONS(6878), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6880), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6880), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6880), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6880), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6880), + [anon_sym_GT_GT] = ACTIONS(6880), + [anon_sym_SEMI] = ACTIONS(6880), + [anon_sym___extension__] = ACTIONS(8314), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_COLON] = ACTIONS(6878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6880), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6880), + [anon_sym_RBRACE] = ACTIONS(6880), + [anon_sym_LBRACK] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(8314), + [anon_sym_constexpr] = ACTIONS(8314), + [anon_sym_volatile] = ACTIONS(8314), + [anon_sym_restrict] = ACTIONS(8314), + [anon_sym___restrict__] = ACTIONS(8314), + [anon_sym__Atomic] = ACTIONS(8314), + [anon_sym__Noreturn] = ACTIONS(8314), + [anon_sym_noreturn] = ACTIONS(8314), + [anon_sym__Nonnull] = ACTIONS(8314), + [anon_sym_mutable] = ACTIONS(8314), + [anon_sym_constinit] = ACTIONS(8314), + [anon_sym_consteval] = ACTIONS(8314), + [anon_sym_alignas] = ACTIONS(8317), + [anon_sym__Alignas] = ACTIONS(8317), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_asm] = ACTIONS(6878), + [anon_sym___asm__] = ACTIONS(6878), + [anon_sym___asm] = ACTIONS(6878), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_noexcept] = ACTIONS(6878), + [anon_sym_throw] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6878), + [anon_sym_COLON_RBRACK] = ACTIONS(6880), }, - [STATE(2508)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), - [anon_sym_COMMA] = ACTIONS(7715), - [anon_sym_LPAREN2] = ACTIONS(7715), - [anon_sym_DASH] = ACTIONS(7713), - [anon_sym_PLUS] = ACTIONS(7713), - [anon_sym_STAR] = ACTIONS(7713), - [anon_sym_SLASH] = ACTIONS(7713), - [anon_sym_PERCENT] = ACTIONS(7713), - [anon_sym_PIPE_PIPE] = ACTIONS(7715), - [anon_sym_AMP_AMP] = ACTIONS(7715), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_CARET] = ACTIONS(7713), - [anon_sym_AMP] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7715), - [anon_sym_BANG_EQ] = ACTIONS(7715), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_EQ] = ACTIONS(7713), - [anon_sym_LT_EQ] = ACTIONS(7713), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_LT_LT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7713), - [anon_sym___extension__] = ACTIONS(7715), - [anon_sym___attribute__] = ACTIONS(7715), - [anon_sym___attribute] = ACTIONS(7713), - [anon_sym_LBRACE] = ACTIONS(7715), - [anon_sym_signed] = ACTIONS(8226), - [anon_sym_unsigned] = ACTIONS(8226), - [anon_sym_long] = ACTIONS(8226), - [anon_sym_short] = ACTIONS(8226), - [anon_sym_LBRACK] = ACTIONS(7715), - [anon_sym_EQ] = ACTIONS(7713), - [anon_sym_const] = ACTIONS(7713), - [anon_sym_constexpr] = ACTIONS(7715), - [anon_sym_volatile] = ACTIONS(7715), - [anon_sym_restrict] = ACTIONS(7715), - [anon_sym___restrict__] = ACTIONS(7715), - [anon_sym__Atomic] = ACTIONS(7715), - [anon_sym__Noreturn] = ACTIONS(7715), - [anon_sym_noreturn] = ACTIONS(7715), - [anon_sym__Nonnull] = ACTIONS(7715), - [anon_sym_mutable] = ACTIONS(7715), - [anon_sym_constinit] = ACTIONS(7715), - [anon_sym_consteval] = ACTIONS(7715), - [anon_sym_alignas] = ACTIONS(7715), - [anon_sym__Alignas] = ACTIONS(7715), - [anon_sym_QMARK] = ACTIONS(7715), - [anon_sym_STAR_EQ] = ACTIONS(7715), - [anon_sym_SLASH_EQ] = ACTIONS(7715), - [anon_sym_PERCENT_EQ] = ACTIONS(7715), - [anon_sym_PLUS_EQ] = ACTIONS(7715), - [anon_sym_DASH_EQ] = ACTIONS(7715), - [anon_sym_LT_LT_EQ] = ACTIONS(7715), - [anon_sym_GT_GT_EQ] = ACTIONS(7713), - [anon_sym_AMP_EQ] = ACTIONS(7715), - [anon_sym_CARET_EQ] = ACTIONS(7715), - [anon_sym_PIPE_EQ] = ACTIONS(7715), - [anon_sym_and_eq] = ACTIONS(7715), - [anon_sym_or_eq] = ACTIONS(7715), - [anon_sym_xor_eq] = ACTIONS(7715), - [anon_sym_LT_EQ_GT] = ACTIONS(7715), - [anon_sym_or] = ACTIONS(7713), - [anon_sym_and] = ACTIONS(7713), - [anon_sym_bitor] = ACTIONS(7715), - [anon_sym_xor] = ACTIONS(7713), - [anon_sym_bitand] = ACTIONS(7715), - [anon_sym_not_eq] = ACTIONS(7715), - [anon_sym_DASH_DASH] = ACTIONS(7715), - [anon_sym_PLUS_PLUS] = ACTIONS(7715), - [anon_sym_DOT] = ACTIONS(7713), - [anon_sym_DOT_STAR] = ACTIONS(7715), - [anon_sym_DASH_GT] = ACTIONS(7715), + [STATE(2474)] = { + [sym__abstract_declarator] = STATE(5511), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(7335), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(7337), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(7339), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7369), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7369), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7715), - [anon_sym_override] = ACTIONS(7715), - [anon_sym_GT2] = ACTIONS(7715), - [anon_sym_requires] = ACTIONS(7715), + [anon_sym_GT2] = ACTIONS(7371), }, - [STATE(2509)] = { - [sym__abstract_declarator] = STATE(5305), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1978), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7363), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7365), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7367), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(6823), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_and_eq] = ACTIONS(6823), - [anon_sym_or_eq] = ACTIONS(6823), - [anon_sym_xor_eq] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), + [STATE(2475)] = { + [sym__abstract_declarator] = STATE(5516), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2484), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2484), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(7335), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(7337), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(7339), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7373), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7373), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7375), + }, + [STATE(2476)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8811), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9171), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9171), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, - [STATE(2510)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym_ref_qualifier] = STATE(2534), - [sym__function_exception_specification] = STATE(3044), - [sym__function_attributes_end] = STATE(4231), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3071), - [sym_noexcept] = STATE(3044), - [sym_throw_specifier] = STATE(3044), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7793), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7796), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(8330), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8336), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(6563), + [STATE(2477)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2692), + [sym_ms_pointer_modifier] = STATE(2477), + [aux_sym_pointer_declarator_repeat1] = STATE(2477), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6919), + [anon_sym_COMMA] = ACTIONS(6919), + [anon_sym_LPAREN2] = ACTIONS(6919), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_PERCENT] = ACTIONS(6917), + [anon_sym_PIPE_PIPE] = ACTIONS(6919), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_CARET] = ACTIONS(6917), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_EQ_EQ] = ACTIONS(6919), + [anon_sym_BANG_EQ] = ACTIONS(6919), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6917), + [anon_sym_LT_EQ] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_LT_LT] = ACTIONS(6917), + [anon_sym_GT_GT] = ACTIONS(6917), + [anon_sym___extension__] = ACTIONS(6919), + [sym_ms_restrict_modifier] = ACTIONS(8320), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8323), + [sym_ms_signed_ptr_modifier] = ACTIONS(8323), + [anon_sym__unaligned] = ACTIONS(8326), + [anon_sym___unaligned] = ACTIONS(8326), + [anon_sym_LBRACK] = ACTIONS(6919), + [anon_sym_EQ] = ACTIONS(6917), + [anon_sym_const] = ACTIONS(6917), + [anon_sym_constexpr] = ACTIONS(6919), + [anon_sym_volatile] = ACTIONS(6919), + [anon_sym_restrict] = ACTIONS(6919), + [anon_sym___restrict__] = ACTIONS(6919), + [anon_sym__Atomic] = ACTIONS(6919), + [anon_sym__Noreturn] = ACTIONS(6919), + [anon_sym_noreturn] = ACTIONS(6919), + [anon_sym__Nonnull] = ACTIONS(6919), + [anon_sym_mutable] = ACTIONS(6919), + [anon_sym_constinit] = ACTIONS(6919), + [anon_sym_consteval] = ACTIONS(6919), + [anon_sym_alignas] = ACTIONS(6919), + [anon_sym__Alignas] = ACTIONS(6919), + [anon_sym_QMARK] = ACTIONS(6919), + [anon_sym_STAR_EQ] = ACTIONS(6919), + [anon_sym_SLASH_EQ] = ACTIONS(6919), + [anon_sym_PERCENT_EQ] = ACTIONS(6919), + [anon_sym_PLUS_EQ] = ACTIONS(6919), + [anon_sym_DASH_EQ] = ACTIONS(6919), + [anon_sym_LT_LT_EQ] = ACTIONS(6919), + [anon_sym_GT_GT_EQ] = ACTIONS(6917), + [anon_sym_AMP_EQ] = ACTIONS(6919), + [anon_sym_CARET_EQ] = ACTIONS(6919), + [anon_sym_PIPE_EQ] = ACTIONS(6919), + [anon_sym_and_eq] = ACTIONS(6919), + [anon_sym_or_eq] = ACTIONS(6919), + [anon_sym_xor_eq] = ACTIONS(6919), + [anon_sym_LT_EQ_GT] = ACTIONS(6919), + [anon_sym_or] = ACTIONS(6917), + [anon_sym_and] = ACTIONS(6917), + [anon_sym_bitor] = ACTIONS(6919), + [anon_sym_xor] = ACTIONS(6917), + [anon_sym_bitand] = ACTIONS(6919), + [anon_sym_not_eq] = ACTIONS(6919), + [anon_sym_DASH_DASH] = ACTIONS(6919), + [anon_sym_PLUS_PLUS] = ACTIONS(6919), + [anon_sym_DOT] = ACTIONS(6917), + [anon_sym_DOT_STAR] = ACTIONS(6919), + [anon_sym_DASH_GT] = ACTIONS(6919), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6919), + [anon_sym_override] = ACTIONS(6919), + [anon_sym_GT2] = ACTIONS(6919), + [anon_sym_requires] = ACTIONS(6919), }, - [STATE(2511)] = { - [sym__abstract_declarator] = STATE(5514), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1978), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2406), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(7363), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(7365), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(7367), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7355), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_and_eq] = ACTIONS(7355), - [anon_sym_or_eq] = ACTIONS(7355), - [anon_sym_xor_eq] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), + [STATE(2478)] = { + [sym_template_argument_list] = STATE(2576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6566), + [anon_sym_COMMA] = ACTIONS(6566), + [anon_sym_LPAREN2] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6559), + [anon_sym_STAR] = ACTIONS(6559), + [anon_sym_SLASH] = ACTIONS(6559), + [anon_sym_PERCENT] = ACTIONS(6559), + [anon_sym_PIPE_PIPE] = ACTIONS(6566), + [anon_sym_AMP_AMP] = ACTIONS(6566), + [anon_sym_PIPE] = ACTIONS(6559), + [anon_sym_CARET] = ACTIONS(6559), + [anon_sym_AMP] = ACTIONS(6559), + [anon_sym_EQ_EQ] = ACTIONS(6566), + [anon_sym_BANG_EQ] = ACTIONS(6566), + [anon_sym_GT] = ACTIONS(6559), + [anon_sym_GT_EQ] = ACTIONS(6559), + [anon_sym_LT_EQ] = ACTIONS(6559), + [anon_sym_LT] = ACTIONS(8329), + [anon_sym_LT_LT] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6559), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym___attribute__] = ACTIONS(6566), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6566), + [anon_sym_EQ] = ACTIONS(6559), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6566), + [anon_sym_STAR_EQ] = ACTIONS(6566), + [anon_sym_SLASH_EQ] = ACTIONS(6566), + [anon_sym_PERCENT_EQ] = ACTIONS(6566), + [anon_sym_PLUS_EQ] = ACTIONS(6566), + [anon_sym_DASH_EQ] = ACTIONS(6566), + [anon_sym_LT_LT_EQ] = ACTIONS(6566), + [anon_sym_GT_GT_EQ] = ACTIONS(6559), + [anon_sym_AMP_EQ] = ACTIONS(6566), + [anon_sym_CARET_EQ] = ACTIONS(6566), + [anon_sym_PIPE_EQ] = ACTIONS(6566), + [anon_sym_and_eq] = ACTIONS(6566), + [anon_sym_or_eq] = ACTIONS(6566), + [anon_sym_xor_eq] = ACTIONS(6566), + [anon_sym_LT_EQ_GT] = ACTIONS(6566), + [anon_sym_or] = ACTIONS(6559), + [anon_sym_and] = ACTIONS(6559), + [anon_sym_bitor] = ACTIONS(6566), + [anon_sym_xor] = ACTIONS(6559), + [anon_sym_bitand] = ACTIONS(6566), + [anon_sym_not_eq] = ACTIONS(6566), + [anon_sym_DASH_DASH] = ACTIONS(6566), + [anon_sym_PLUS_PLUS] = ACTIONS(6566), + [anon_sym_DOT] = ACTIONS(6559), + [anon_sym_DOT_STAR] = ACTIONS(6566), + [anon_sym_DASH_GT] = ACTIONS(6566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_final] = ACTIONS(6566), + [anon_sym_override] = ACTIONS(6566), + [anon_sym_GT2] = ACTIONS(6566), + [anon_sym_requires] = ACTIONS(6566), }, - [STATE(2512)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7717), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7717), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7717), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7717), - [anon_sym_GT_GT] = ACTIONS(7717), - [anon_sym___extension__] = ACTIONS(7719), - [anon_sym___attribute__] = ACTIONS(7719), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_signed] = ACTIONS(8379), - [anon_sym_unsigned] = ACTIONS(8379), - [anon_sym_long] = ACTIONS(8379), - [anon_sym_short] = ACTIONS(8379), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(7717), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7719), - [anon_sym_volatile] = ACTIONS(7719), - [anon_sym_restrict] = ACTIONS(7719), - [anon_sym___restrict__] = ACTIONS(7719), - [anon_sym__Atomic] = ACTIONS(7719), - [anon_sym__Noreturn] = ACTIONS(7719), - [anon_sym_noreturn] = ACTIONS(7719), - [anon_sym__Nonnull] = ACTIONS(7719), - [anon_sym_mutable] = ACTIONS(7719), - [anon_sym_constinit] = ACTIONS(7719), - [anon_sym_consteval] = ACTIONS(7719), - [anon_sym_alignas] = ACTIONS(7719), - [anon_sym__Alignas] = ACTIONS(7719), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_STAR_EQ] = ACTIONS(7719), - [anon_sym_SLASH_EQ] = ACTIONS(7719), - [anon_sym_PERCENT_EQ] = ACTIONS(7719), - [anon_sym_PLUS_EQ] = ACTIONS(7719), - [anon_sym_DASH_EQ] = ACTIONS(7719), - [anon_sym_LT_LT_EQ] = ACTIONS(7719), - [anon_sym_GT_GT_EQ] = ACTIONS(7717), - [anon_sym_AMP_EQ] = ACTIONS(7719), - [anon_sym_CARET_EQ] = ACTIONS(7719), - [anon_sym_PIPE_EQ] = ACTIONS(7719), - [anon_sym_and_eq] = ACTIONS(7719), - [anon_sym_or_eq] = ACTIONS(7719), - [anon_sym_xor_eq] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7717), - [anon_sym_and] = ACTIONS(7717), - [anon_sym_bitor] = ACTIONS(7719), - [anon_sym_xor] = ACTIONS(7717), - [anon_sym_bitand] = ACTIONS(7719), - [anon_sym_not_eq] = ACTIONS(7719), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7719), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7719), - [anon_sym_override] = ACTIONS(7719), - [anon_sym_GT2] = ACTIONS(7719), - [anon_sym_requires] = ACTIONS(7719), + [STATE(2479)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7142), + [anon_sym_COMMA] = ACTIONS(7142), + [anon_sym_LPAREN2] = ACTIONS(7142), + [anon_sym_DASH] = ACTIONS(7140), + [anon_sym_PLUS] = ACTIONS(7140), + [anon_sym_STAR] = ACTIONS(7140), + [anon_sym_SLASH] = ACTIONS(7140), + [anon_sym_PERCENT] = ACTIONS(7140), + [anon_sym_PIPE_PIPE] = ACTIONS(7142), + [anon_sym_AMP_AMP] = ACTIONS(7142), + [anon_sym_PIPE] = ACTIONS(7140), + [anon_sym_CARET] = ACTIONS(7140), + [anon_sym_AMP] = ACTIONS(7140), + [anon_sym_EQ_EQ] = ACTIONS(7142), + [anon_sym_BANG_EQ] = ACTIONS(7142), + [anon_sym_GT] = ACTIONS(7140), + [anon_sym_GT_EQ] = ACTIONS(7142), + [anon_sym_LT_EQ] = ACTIONS(7140), + [anon_sym_LT] = ACTIONS(7140), + [anon_sym_LT_LT] = ACTIONS(7140), + [anon_sym_GT_GT] = ACTIONS(7140), + [anon_sym___extension__] = ACTIONS(7142), + [anon_sym___attribute__] = ACTIONS(7142), + [anon_sym___attribute] = ACTIONS(7140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7142), + [anon_sym_LBRACK] = ACTIONS(7140), + [anon_sym_RBRACK] = ACTIONS(7142), + [anon_sym_EQ] = ACTIONS(7140), + [anon_sym_const] = ACTIONS(7140), + [anon_sym_constexpr] = ACTIONS(7142), + [anon_sym_volatile] = ACTIONS(7142), + [anon_sym_restrict] = ACTIONS(7142), + [anon_sym___restrict__] = ACTIONS(7142), + [anon_sym__Atomic] = ACTIONS(7142), + [anon_sym__Noreturn] = ACTIONS(7142), + [anon_sym_noreturn] = ACTIONS(7142), + [anon_sym__Nonnull] = ACTIONS(7142), + [anon_sym_mutable] = ACTIONS(7142), + [anon_sym_constinit] = ACTIONS(7142), + [anon_sym_consteval] = ACTIONS(7142), + [anon_sym_alignas] = ACTIONS(7142), + [anon_sym__Alignas] = ACTIONS(7142), + [anon_sym_QMARK] = ACTIONS(7142), + [anon_sym_STAR_EQ] = ACTIONS(7142), + [anon_sym_SLASH_EQ] = ACTIONS(7142), + [anon_sym_PERCENT_EQ] = ACTIONS(7142), + [anon_sym_PLUS_EQ] = ACTIONS(7142), + [anon_sym_DASH_EQ] = ACTIONS(7142), + [anon_sym_LT_LT_EQ] = ACTIONS(7142), + [anon_sym_GT_GT_EQ] = ACTIONS(7142), + [anon_sym_AMP_EQ] = ACTIONS(7142), + [anon_sym_CARET_EQ] = ACTIONS(7142), + [anon_sym_PIPE_EQ] = ACTIONS(7142), + [anon_sym_and_eq] = ACTIONS(7142), + [anon_sym_or_eq] = ACTIONS(7142), + [anon_sym_xor_eq] = ACTIONS(7142), + [anon_sym_LT_EQ_GT] = ACTIONS(7142), + [anon_sym_or] = ACTIONS(7140), + [anon_sym_and] = ACTIONS(7140), + [anon_sym_bitor] = ACTIONS(7142), + [anon_sym_xor] = ACTIONS(7140), + [anon_sym_bitand] = ACTIONS(7142), + [anon_sym_not_eq] = ACTIONS(7142), + [anon_sym_DASH_DASH] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(7142), + [anon_sym_asm] = ACTIONS(7142), + [anon_sym___asm__] = ACTIONS(7142), + [anon_sym___asm] = ACTIONS(7140), + [anon_sym_DOT] = ACTIONS(7140), + [anon_sym_DOT_STAR] = ACTIONS(7142), + [anon_sym_DASH_GT] = ACTIONS(7142), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7142), + [anon_sym_override] = ACTIONS(7142), + [anon_sym_noexcept] = ACTIONS(7142), + [anon_sym_throw] = ACTIONS(7142), + [anon_sym_requires] = ACTIONS(7142), }, - [STATE(2513)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym_ref_qualifier] = STATE(2598), - [sym__function_exception_specification] = STATE(3072), - [sym__function_attributes_end] = STATE(4355), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(4432), - [sym_noexcept] = STATE(3072), - [sym_throw_specifier] = STATE(3072), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(8312), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(8315), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7789), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7789), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8318), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6694), - [anon_sym_override] = ACTIONS(6694), - [anon_sym_GT2] = ACTIONS(7791), - [anon_sym_noexcept] = ACTIONS(6696), - [anon_sym_throw] = ACTIONS(6698), - [anon_sym_requires] = ACTIONS(6700), + [STATE(2480)] = { + [sym__abstract_declarator] = STATE(5454), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7335), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7337), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7339), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6841), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6841), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6843), }, - [STATE(2514)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym___extension__] = ACTIONS(7160), - [anon_sym___attribute__] = ACTIONS(7160), - [anon_sym___attribute] = ACTIONS(7158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7158), - [anon_sym_RBRACK] = ACTIONS(7160), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7160), - [anon_sym_volatile] = ACTIONS(7160), - [anon_sym_restrict] = ACTIONS(7160), - [anon_sym___restrict__] = ACTIONS(7160), - [anon_sym__Atomic] = ACTIONS(7160), - [anon_sym__Noreturn] = ACTIONS(7160), - [anon_sym_noreturn] = ACTIONS(7160), - [anon_sym__Nonnull] = ACTIONS(7160), - [anon_sym_mutable] = ACTIONS(7160), - [anon_sym_constinit] = ACTIONS(7160), - [anon_sym_consteval] = ACTIONS(7160), - [anon_sym_alignas] = ACTIONS(7160), - [anon_sym__Alignas] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_and_eq] = ACTIONS(7160), - [anon_sym_or_eq] = ACTIONS(7160), - [anon_sym_xor_eq] = ACTIONS(7160), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7158), - [anon_sym_and] = ACTIONS(7158), - [anon_sym_bitor] = ACTIONS(7160), - [anon_sym_xor] = ACTIONS(7158), - [anon_sym_bitand] = ACTIONS(7160), - [anon_sym_not_eq] = ACTIONS(7160), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_asm] = ACTIONS(7160), - [anon_sym___asm__] = ACTIONS(7160), - [anon_sym___asm] = ACTIONS(7158), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7160), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7160), - [anon_sym_override] = ACTIONS(7160), - [anon_sym_noexcept] = ACTIONS(7160), - [anon_sym_throw] = ACTIONS(7160), - [anon_sym_requires] = ACTIONS(7160), + [STATE(2481)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7113), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym___extension__] = ACTIONS(7115), + [anon_sym___attribute__] = ACTIONS(7115), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7115), + [anon_sym_LBRACK] = ACTIONS(7113), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7115), + [anon_sym_volatile] = ACTIONS(7115), + [anon_sym_restrict] = ACTIONS(7115), + [anon_sym___restrict__] = ACTIONS(7115), + [anon_sym__Atomic] = ACTIONS(7115), + [anon_sym__Noreturn] = ACTIONS(7115), + [anon_sym_noreturn] = ACTIONS(7115), + [anon_sym__Nonnull] = ACTIONS(7115), + [anon_sym_mutable] = ACTIONS(7115), + [anon_sym_constinit] = ACTIONS(7115), + [anon_sym_consteval] = ACTIONS(7115), + [anon_sym_alignas] = ACTIONS(7115), + [anon_sym__Alignas] = ACTIONS(7115), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7113), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_and_eq] = ACTIONS(7115), + [anon_sym_or_eq] = ACTIONS(7115), + [anon_sym_xor_eq] = ACTIONS(7115), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7115), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7115), + [anon_sym_not_eq] = ACTIONS(7115), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_asm] = ACTIONS(7115), + [anon_sym___asm__] = ACTIONS(7115), + [anon_sym___asm] = ACTIONS(7113), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7115), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_GT2] = ACTIONS(7115), + [anon_sym_noexcept] = ACTIONS(7115), + [anon_sym_throw] = ACTIONS(7115), + [anon_sym_requires] = ACTIONS(7115), }, - [STATE(2515)] = { - [sym__declaration_modifiers] = STATE(5072), - [sym_attribute_specifier] = STATE(5072), - [sym_attribute_declaration] = STATE(5072), - [sym_ms_declspec_modifier] = STATE(5072), - [sym_ms_based_modifier] = STATE(11554), - [sym__declarator] = STATE(9092), - [sym_parenthesized_declarator] = STATE(8555), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_function_declarator] = STATE(8729), - [sym_array_declarator] = STATE(8555), - [sym_storage_class_specifier] = STATE(5072), - [sym_type_qualifier] = STATE(5072), - [sym_alignas_qualifier] = STATE(4722), - [sym_decltype] = STATE(10768), - [sym_explicit_function_specifier] = STATE(5072), - [sym_operator_cast] = STATE(9165), - [sym__constructor_specifiers] = STATE(5072), - [sym_reference_declarator] = STATE(8555), - [sym_structured_binding_declarator] = STATE(8555), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7901), - [sym_qualified_identifier] = STATE(8555), - [sym_qualified_operator_cast_identifier] = STATE(9165), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym_operator_cast_definition_repeat1] = STATE(5072), - [sym_identifier] = ACTIONS(8228), - [anon_sym_LPAREN2] = ACTIONS(3442), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3446), + [STATE(2482)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8761), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9222), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9222), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), [anon_sym_AMP_AMP] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(3448), - [anon_sym___extension__] = ACTIONS(8230), - [anon_sym_virtual] = ACTIONS(8232), - [anon_sym_extern] = ACTIONS(8234), - [anon_sym___attribute__] = ACTIONS(8236), - [anon_sym___attribute] = ACTIONS(8236), - [anon_sym_COLON_COLON] = ACTIONS(8238), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8240), - [anon_sym___declspec] = ACTIONS(8242), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(3460), - [anon_sym_static] = ACTIONS(8234), - [anon_sym_register] = ACTIONS(8234), - [anon_sym_inline] = ACTIONS(8234), - [anon_sym___inline] = ACTIONS(8234), - [anon_sym___inline__] = ACTIONS(8234), - [anon_sym___forceinline] = ACTIONS(8234), - [anon_sym_thread_local] = ACTIONS(8234), - [anon_sym___thread] = ACTIONS(8234), - [anon_sym_const] = ACTIONS(8230), - [anon_sym_constexpr] = ACTIONS(8230), - [anon_sym_volatile] = ACTIONS(8230), - [anon_sym_restrict] = ACTIONS(8230), - [anon_sym___restrict__] = ACTIONS(8230), - [anon_sym__Atomic] = ACTIONS(8230), - [anon_sym__Noreturn] = ACTIONS(8230), - [anon_sym_noreturn] = ACTIONS(8230), - [anon_sym__Nonnull] = ACTIONS(8230), - [anon_sym_mutable] = ACTIONS(8230), - [anon_sym_constinit] = ACTIONS(8230), - [anon_sym_consteval] = ACTIONS(8230), - [anon_sym_alignas] = ACTIONS(8244), - [anon_sym__Alignas] = ACTIONS(8244), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), [anon_sym_explicit] = ACTIONS(133), - [anon_sym_template] = ACTIONS(5160), + [anon_sym_template] = ACTIONS(5158), [anon_sym_operator] = ACTIONS(143), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, - [STATE(2516)] = { - [sym_template_argument_list] = STATE(3735), - [aux_sym_sized_type_specifier_repeat1] = STATE(2616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), - [anon_sym_COMMA] = ACTIONS(7359), - [anon_sym_RPAREN] = ACTIONS(7359), - [anon_sym_LPAREN2] = ACTIONS(7359), - [anon_sym_DASH] = ACTIONS(7357), - [anon_sym_PLUS] = ACTIONS(7357), - [anon_sym_STAR] = ACTIONS(7357), - [anon_sym_SLASH] = ACTIONS(7357), - [anon_sym_PERCENT] = ACTIONS(7357), - [anon_sym_PIPE_PIPE] = ACTIONS(7359), - [anon_sym_AMP_AMP] = ACTIONS(7359), - [anon_sym_PIPE] = ACTIONS(7357), - [anon_sym_CARET] = ACTIONS(7357), - [anon_sym_AMP] = ACTIONS(7357), - [anon_sym_EQ_EQ] = ACTIONS(7359), - [anon_sym_BANG_EQ] = ACTIONS(7359), - [anon_sym_GT] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7359), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_LT] = ACTIONS(7357), - [anon_sym_LT_LT] = ACTIONS(7357), - [anon_sym_GT_GT] = ACTIONS(7357), - [anon_sym___extension__] = ACTIONS(7359), - [anon_sym___attribute__] = ACTIONS(7359), - [anon_sym___attribute] = ACTIONS(7357), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(7359), - [anon_sym_signed] = ACTIONS(6956), - [anon_sym_unsigned] = ACTIONS(6956), - [anon_sym_long] = ACTIONS(6956), - [anon_sym_short] = ACTIONS(6956), - [anon_sym_LBRACK] = ACTIONS(7359), - [anon_sym_EQ] = ACTIONS(7357), - [anon_sym_const] = ACTIONS(7357), - [anon_sym_constexpr] = ACTIONS(7359), - [anon_sym_volatile] = ACTIONS(7359), - [anon_sym_restrict] = ACTIONS(7359), - [anon_sym___restrict__] = ACTIONS(7359), - [anon_sym__Atomic] = ACTIONS(7359), - [anon_sym__Noreturn] = ACTIONS(7359), - [anon_sym_noreturn] = ACTIONS(7359), - [anon_sym__Nonnull] = ACTIONS(7359), - [anon_sym_mutable] = ACTIONS(7359), - [anon_sym_constinit] = ACTIONS(7359), - [anon_sym_consteval] = ACTIONS(7359), - [anon_sym_alignas] = ACTIONS(7359), - [anon_sym__Alignas] = ACTIONS(7359), - [anon_sym_QMARK] = ACTIONS(7359), - [anon_sym_STAR_EQ] = ACTIONS(7359), - [anon_sym_SLASH_EQ] = ACTIONS(7359), - [anon_sym_PERCENT_EQ] = ACTIONS(7359), - [anon_sym_PLUS_EQ] = ACTIONS(7359), - [anon_sym_DASH_EQ] = ACTIONS(7359), - [anon_sym_LT_LT_EQ] = ACTIONS(7359), - [anon_sym_GT_GT_EQ] = ACTIONS(7359), - [anon_sym_AMP_EQ] = ACTIONS(7359), - [anon_sym_CARET_EQ] = ACTIONS(7359), - [anon_sym_PIPE_EQ] = ACTIONS(7359), - [anon_sym_LT_EQ_GT] = ACTIONS(7359), - [anon_sym_or] = ACTIONS(7359), - [anon_sym_and] = ACTIONS(7359), - [anon_sym_bitor] = ACTIONS(7359), - [anon_sym_xor] = ACTIONS(7359), - [anon_sym_bitand] = ACTIONS(7359), - [anon_sym_not_eq] = ACTIONS(7359), - [anon_sym_DASH_DASH] = ACTIONS(7359), - [anon_sym_PLUS_PLUS] = ACTIONS(7359), - [anon_sym_DOT] = ACTIONS(7357), - [anon_sym_DOT_STAR] = ACTIONS(7359), - [anon_sym_DASH_GT] = ACTIONS(7357), + [STATE(2483)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8731), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9171), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9171), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7359), - [anon_sym_override] = ACTIONS(7359), - [anon_sym_requires] = ACTIONS(7359), - [anon_sym_DASH_GT_STAR] = ACTIONS(7359), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, - [STATE(2517)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), - [anon_sym_COMMA] = ACTIONS(7725), - [anon_sym_LPAREN2] = ACTIONS(7725), - [anon_sym_DASH] = ACTIONS(7723), - [anon_sym_PLUS] = ACTIONS(7723), - [anon_sym_STAR] = ACTIONS(7723), - [anon_sym_SLASH] = ACTIONS(7723), - [anon_sym_PERCENT] = ACTIONS(7723), - [anon_sym_PIPE_PIPE] = ACTIONS(7725), - [anon_sym_AMP_AMP] = ACTIONS(7725), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_CARET] = ACTIONS(7723), - [anon_sym_AMP] = ACTIONS(7723), - [anon_sym_EQ_EQ] = ACTIONS(7725), - [anon_sym_BANG_EQ] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_EQ] = ACTIONS(7723), - [anon_sym_LT_EQ] = ACTIONS(7723), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_LT_LT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7723), - [anon_sym___extension__] = ACTIONS(7725), - [anon_sym___attribute__] = ACTIONS(7725), - [anon_sym___attribute] = ACTIONS(7723), - [anon_sym_LBRACE] = ACTIONS(7725), - [anon_sym_signed] = ACTIONS(8226), - [anon_sym_unsigned] = ACTIONS(8226), - [anon_sym_long] = ACTIONS(8226), - [anon_sym_short] = ACTIONS(8226), - [anon_sym_LBRACK] = ACTIONS(7725), - [anon_sym_EQ] = ACTIONS(7723), - [anon_sym_const] = ACTIONS(7723), - [anon_sym_constexpr] = ACTIONS(7725), - [anon_sym_volatile] = ACTIONS(7725), - [anon_sym_restrict] = ACTIONS(7725), - [anon_sym___restrict__] = ACTIONS(7725), - [anon_sym__Atomic] = ACTIONS(7725), - [anon_sym__Noreturn] = ACTIONS(7725), - [anon_sym_noreturn] = ACTIONS(7725), - [anon_sym__Nonnull] = ACTIONS(7725), - [anon_sym_mutable] = ACTIONS(7725), - [anon_sym_constinit] = ACTIONS(7725), - [anon_sym_consteval] = ACTIONS(7725), - [anon_sym_alignas] = ACTIONS(7725), - [anon_sym__Alignas] = ACTIONS(7725), - [anon_sym_QMARK] = ACTIONS(7725), - [anon_sym_STAR_EQ] = ACTIONS(7725), - [anon_sym_SLASH_EQ] = ACTIONS(7725), - [anon_sym_PERCENT_EQ] = ACTIONS(7725), - [anon_sym_PLUS_EQ] = ACTIONS(7725), - [anon_sym_DASH_EQ] = ACTIONS(7725), - [anon_sym_LT_LT_EQ] = ACTIONS(7725), - [anon_sym_GT_GT_EQ] = ACTIONS(7723), - [anon_sym_AMP_EQ] = ACTIONS(7725), - [anon_sym_CARET_EQ] = ACTIONS(7725), - [anon_sym_PIPE_EQ] = ACTIONS(7725), - [anon_sym_and_eq] = ACTIONS(7725), - [anon_sym_or_eq] = ACTIONS(7725), - [anon_sym_xor_eq] = ACTIONS(7725), - [anon_sym_LT_EQ_GT] = ACTIONS(7725), - [anon_sym_or] = ACTIONS(7723), - [anon_sym_and] = ACTIONS(7723), - [anon_sym_bitor] = ACTIONS(7725), - [anon_sym_xor] = ACTIONS(7723), - [anon_sym_bitand] = ACTIONS(7725), - [anon_sym_not_eq] = ACTIONS(7725), - [anon_sym_DASH_DASH] = ACTIONS(7725), - [anon_sym_PLUS_PLUS] = ACTIONS(7725), - [anon_sym_DOT] = ACTIONS(7723), - [anon_sym_DOT_STAR] = ACTIONS(7725), - [anon_sym_DASH_GT] = ACTIONS(7725), + [STATE(2484)] = { + [sym__abstract_declarator] = STATE(5320), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2286), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(7335), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(7337), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(7339), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_and_eq] = ACTIONS(7341), + [anon_sym_or_eq] = ACTIONS(7341), + [anon_sym_xor_eq] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7725), - [anon_sym_override] = ACTIONS(7725), - [anon_sym_GT2] = ACTIONS(7725), - [anon_sym_requires] = ACTIONS(7725), + [anon_sym_GT2] = ACTIONS(7341), }, - [STATE(2518)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2369), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), - [anon_sym_COMMA] = ACTIONS(7729), - [anon_sym_LPAREN2] = ACTIONS(7729), - [anon_sym_DASH] = ACTIONS(7727), - [anon_sym_PLUS] = ACTIONS(7727), - [anon_sym_STAR] = ACTIONS(7727), - [anon_sym_SLASH] = ACTIONS(7727), - [anon_sym_PERCENT] = ACTIONS(7727), - [anon_sym_PIPE_PIPE] = ACTIONS(7729), - [anon_sym_AMP_AMP] = ACTIONS(7729), - [anon_sym_PIPE] = ACTIONS(7727), - [anon_sym_CARET] = ACTIONS(7727), - [anon_sym_AMP] = ACTIONS(7727), - [anon_sym_EQ_EQ] = ACTIONS(7729), - [anon_sym_BANG_EQ] = ACTIONS(7729), - [anon_sym_GT] = ACTIONS(7727), - [anon_sym_GT_EQ] = ACTIONS(7727), - [anon_sym_LT_EQ] = ACTIONS(7727), - [anon_sym_LT] = ACTIONS(7727), - [anon_sym_LT_LT] = ACTIONS(7727), - [anon_sym_GT_GT] = ACTIONS(7727), - [anon_sym___extension__] = ACTIONS(7729), - [anon_sym___attribute__] = ACTIONS(7729), - [anon_sym___attribute] = ACTIONS(7727), - [anon_sym_LBRACE] = ACTIONS(7729), - [anon_sym_signed] = ACTIONS(8226), - [anon_sym_unsigned] = ACTIONS(8226), - [anon_sym_long] = ACTIONS(8226), - [anon_sym_short] = ACTIONS(8226), - [anon_sym_LBRACK] = ACTIONS(7729), - [anon_sym_EQ] = ACTIONS(7727), - [anon_sym_const] = ACTIONS(7727), - [anon_sym_constexpr] = ACTIONS(7729), - [anon_sym_volatile] = ACTIONS(7729), - [anon_sym_restrict] = ACTIONS(7729), - [anon_sym___restrict__] = ACTIONS(7729), - [anon_sym__Atomic] = ACTIONS(7729), - [anon_sym__Noreturn] = ACTIONS(7729), - [anon_sym_noreturn] = ACTIONS(7729), - [anon_sym__Nonnull] = ACTIONS(7729), - [anon_sym_mutable] = ACTIONS(7729), - [anon_sym_constinit] = ACTIONS(7729), - [anon_sym_consteval] = ACTIONS(7729), - [anon_sym_alignas] = ACTIONS(7729), - [anon_sym__Alignas] = ACTIONS(7729), - [anon_sym_QMARK] = ACTIONS(7729), - [anon_sym_STAR_EQ] = ACTIONS(7729), - [anon_sym_SLASH_EQ] = ACTIONS(7729), - [anon_sym_PERCENT_EQ] = ACTIONS(7729), - [anon_sym_PLUS_EQ] = ACTIONS(7729), - [anon_sym_DASH_EQ] = ACTIONS(7729), - [anon_sym_LT_LT_EQ] = ACTIONS(7729), - [anon_sym_GT_GT_EQ] = ACTIONS(7727), - [anon_sym_AMP_EQ] = ACTIONS(7729), - [anon_sym_CARET_EQ] = ACTIONS(7729), - [anon_sym_PIPE_EQ] = ACTIONS(7729), - [anon_sym_and_eq] = ACTIONS(7729), - [anon_sym_or_eq] = ACTIONS(7729), - [anon_sym_xor_eq] = ACTIONS(7729), - [anon_sym_LT_EQ_GT] = ACTIONS(7729), - [anon_sym_or] = ACTIONS(7727), - [anon_sym_and] = ACTIONS(7727), - [anon_sym_bitor] = ACTIONS(7729), - [anon_sym_xor] = ACTIONS(7727), - [anon_sym_bitand] = ACTIONS(7729), - [anon_sym_not_eq] = ACTIONS(7729), - [anon_sym_DASH_DASH] = ACTIONS(7729), - [anon_sym_PLUS_PLUS] = ACTIONS(7729), - [anon_sym_DOT] = ACTIONS(7727), - [anon_sym_DOT_STAR] = ACTIONS(7729), - [anon_sym_DASH_GT] = ACTIONS(7729), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7729), - [anon_sym_override] = ACTIONS(7729), - [anon_sym_GT2] = ACTIONS(7729), - [anon_sym_requires] = ACTIONS(7729), + [STATE(2485)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7150), + [anon_sym_COMMA] = ACTIONS(7150), + [anon_sym_LPAREN2] = ACTIONS(7150), + [anon_sym_DASH] = ACTIONS(7148), + [anon_sym_PLUS] = ACTIONS(7148), + [anon_sym_STAR] = ACTIONS(7148), + [anon_sym_SLASH] = ACTIONS(7148), + [anon_sym_PERCENT] = ACTIONS(7148), + [anon_sym_PIPE_PIPE] = ACTIONS(7150), + [anon_sym_AMP_AMP] = ACTIONS(7150), + [anon_sym_PIPE] = ACTIONS(7148), + [anon_sym_CARET] = ACTIONS(7148), + [anon_sym_AMP] = ACTIONS(7148), + [anon_sym_EQ_EQ] = ACTIONS(7150), + [anon_sym_BANG_EQ] = ACTIONS(7150), + [anon_sym_GT] = ACTIONS(7148), + [anon_sym_GT_EQ] = ACTIONS(7150), + [anon_sym_LT_EQ] = ACTIONS(7148), + [anon_sym_LT] = ACTIONS(7148), + [anon_sym_LT_LT] = ACTIONS(7148), + [anon_sym_GT_GT] = ACTIONS(7148), + [anon_sym___extension__] = ACTIONS(7150), + [anon_sym___attribute__] = ACTIONS(7150), + [anon_sym___attribute] = ACTIONS(7148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7148), + [anon_sym_RBRACK] = ACTIONS(7150), + [anon_sym_EQ] = ACTIONS(7148), + [anon_sym_const] = ACTIONS(7148), + [anon_sym_constexpr] = ACTIONS(7150), + [anon_sym_volatile] = ACTIONS(7150), + [anon_sym_restrict] = ACTIONS(7150), + [anon_sym___restrict__] = ACTIONS(7150), + [anon_sym__Atomic] = ACTIONS(7150), + [anon_sym__Noreturn] = ACTIONS(7150), + [anon_sym_noreturn] = ACTIONS(7150), + [anon_sym__Nonnull] = ACTIONS(7150), + [anon_sym_mutable] = ACTIONS(7150), + [anon_sym_constinit] = ACTIONS(7150), + [anon_sym_consteval] = ACTIONS(7150), + [anon_sym_alignas] = ACTIONS(7150), + [anon_sym__Alignas] = ACTIONS(7150), + [anon_sym_QMARK] = ACTIONS(7150), + [anon_sym_STAR_EQ] = ACTIONS(7150), + [anon_sym_SLASH_EQ] = ACTIONS(7150), + [anon_sym_PERCENT_EQ] = ACTIONS(7150), + [anon_sym_PLUS_EQ] = ACTIONS(7150), + [anon_sym_DASH_EQ] = ACTIONS(7150), + [anon_sym_LT_LT_EQ] = ACTIONS(7150), + [anon_sym_GT_GT_EQ] = ACTIONS(7150), + [anon_sym_AMP_EQ] = ACTIONS(7150), + [anon_sym_CARET_EQ] = ACTIONS(7150), + [anon_sym_PIPE_EQ] = ACTIONS(7150), + [anon_sym_and_eq] = ACTIONS(7150), + [anon_sym_or_eq] = ACTIONS(7150), + [anon_sym_xor_eq] = ACTIONS(7150), + [anon_sym_LT_EQ_GT] = ACTIONS(7150), + [anon_sym_or] = ACTIONS(7148), + [anon_sym_and] = ACTIONS(7148), + [anon_sym_bitor] = ACTIONS(7150), + [anon_sym_xor] = ACTIONS(7148), + [anon_sym_bitand] = ACTIONS(7150), + [anon_sym_not_eq] = ACTIONS(7150), + [anon_sym_DASH_DASH] = ACTIONS(7150), + [anon_sym_PLUS_PLUS] = ACTIONS(7150), + [anon_sym_asm] = ACTIONS(7150), + [anon_sym___asm__] = ACTIONS(7150), + [anon_sym___asm] = ACTIONS(7148), + [anon_sym_DOT] = ACTIONS(7148), + [anon_sym_DOT_STAR] = ACTIONS(7150), + [anon_sym_DASH_GT] = ACTIONS(7150), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7150), + [anon_sym_override] = ACTIONS(7150), + [anon_sym_noexcept] = ACTIONS(7150), + [anon_sym_throw] = ACTIONS(7150), + [anon_sym_requires] = ACTIONS(7150), }, - [STATE(2519)] = { - [sym__abstract_declarator] = STATE(5318), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2406), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1978), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2406), + [STATE(2486)] = { + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym_ref_qualifier] = STATE(2542), + [sym__function_exception_specification] = STATE(3057), + [sym__function_attributes_end] = STATE(4320), + [sym__function_postfix] = STATE(5208), + [sym_trailing_return_type] = STATE(4464), + [sym_noexcept] = STATE(3057), + [sym_throw_specifier] = STATE(3057), + [sym_requires_clause] = STATE(5208), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(8244), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(8247), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7876), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7876), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8250), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6688), + [anon_sym_override] = ACTIONS(6688), + [anon_sym_GT2] = ACTIONS(7874), + [anon_sym_noexcept] = ACTIONS(6690), + [anon_sym_throw] = ACTIONS(6692), + [anon_sym_requires] = ACTIONS(6694), + }, + [STATE(2487)] = { + [sym__abstract_declarator] = STATE(5499), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2286), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2286), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(7112), + [anon_sym_LPAREN2] = ACTIONS(7071), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(7363), + [anon_sym_STAR] = ACTIONS(7335), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7347), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7365), + [anon_sym_AMP_AMP] = ACTIONS(7337), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7367), + [anon_sym_AMP] = ACTIONS(7339), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_GT_EQ] = ACTIONS(7347), [anon_sym_LT_EQ] = ACTIONS(7347), [anon_sym_LT] = ACTIONS(7347), [anon_sym_LT_LT] = ACTIONS(7347), [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_STAR_EQ] = ACTIONS(7345), [anon_sym_SLASH_EQ] = ACTIONS(7345), @@ -357408,7 +354744,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(7345), [anon_sym_DASH_EQ] = ACTIONS(7345), [anon_sym_LT_LT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7347), [anon_sym_AMP_EQ] = ACTIONS(7345), [anon_sym_CARET_EQ] = ACTIONS(7345), [anon_sym_PIPE_EQ] = ACTIONS(7345), @@ -357428,8261 +354764,8705 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(7345), [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7345), }, - [STATE(2520)] = { - [sym_attribute_specifier] = STATE(2962), - [sym_enumerator_list] = STATE(2729), - [sym__enum_base_clause] = STATE(2626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), - [anon_sym_COMMA] = ACTIONS(8002), - [anon_sym_RPAREN] = ACTIONS(8002), - [anon_sym_LPAREN2] = ACTIONS(8002), - [anon_sym_DASH] = ACTIONS(8000), - [anon_sym_PLUS] = ACTIONS(8000), - [anon_sym_STAR] = ACTIONS(8000), - [anon_sym_SLASH] = ACTIONS(8000), - [anon_sym_PERCENT] = ACTIONS(8000), - [anon_sym_PIPE_PIPE] = ACTIONS(8002), - [anon_sym_AMP_AMP] = ACTIONS(8002), - [anon_sym_PIPE] = ACTIONS(8000), - [anon_sym_CARET] = ACTIONS(8000), - [anon_sym_AMP] = ACTIONS(8000), - [anon_sym_EQ_EQ] = ACTIONS(8002), - [anon_sym_BANG_EQ] = ACTIONS(8002), - [anon_sym_GT] = ACTIONS(8000), - [anon_sym_GT_EQ] = ACTIONS(8002), - [anon_sym_LT_EQ] = ACTIONS(8000), - [anon_sym_LT] = ACTIONS(8000), - [anon_sym_LT_LT] = ACTIONS(8000), - [anon_sym_GT_GT] = ACTIONS(8000), - [anon_sym___extension__] = ACTIONS(8002), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_COLON] = ACTIONS(8381), - [anon_sym_LBRACE] = ACTIONS(8383), - [anon_sym_LBRACK] = ACTIONS(8002), - [anon_sym_EQ] = ACTIONS(8000), - [anon_sym_const] = ACTIONS(8000), - [anon_sym_constexpr] = ACTIONS(8002), - [anon_sym_volatile] = ACTIONS(8002), - [anon_sym_restrict] = ACTIONS(8002), - [anon_sym___restrict__] = ACTIONS(8002), - [anon_sym__Atomic] = ACTIONS(8002), - [anon_sym__Noreturn] = ACTIONS(8002), - [anon_sym_noreturn] = ACTIONS(8002), - [anon_sym__Nonnull] = ACTIONS(8002), - [anon_sym_mutable] = ACTIONS(8002), - [anon_sym_constinit] = ACTIONS(8002), - [anon_sym_consteval] = ACTIONS(8002), - [anon_sym_alignas] = ACTIONS(8002), - [anon_sym__Alignas] = ACTIONS(8002), - [anon_sym_QMARK] = ACTIONS(8002), - [anon_sym_STAR_EQ] = ACTIONS(8002), - [anon_sym_SLASH_EQ] = ACTIONS(8002), - [anon_sym_PERCENT_EQ] = ACTIONS(8002), - [anon_sym_PLUS_EQ] = ACTIONS(8002), - [anon_sym_DASH_EQ] = ACTIONS(8002), - [anon_sym_LT_LT_EQ] = ACTIONS(8002), - [anon_sym_GT_GT_EQ] = ACTIONS(8002), - [anon_sym_AMP_EQ] = ACTIONS(8002), - [anon_sym_CARET_EQ] = ACTIONS(8002), - [anon_sym_PIPE_EQ] = ACTIONS(8002), - [anon_sym_and_eq] = ACTIONS(8002), - [anon_sym_or_eq] = ACTIONS(8002), - [anon_sym_xor_eq] = ACTIONS(8002), - [anon_sym_LT_EQ_GT] = ACTIONS(8002), - [anon_sym_or] = ACTIONS(8000), - [anon_sym_and] = ACTIONS(8000), - [anon_sym_bitor] = ACTIONS(8002), - [anon_sym_xor] = ACTIONS(8000), - [anon_sym_bitand] = ACTIONS(8002), - [anon_sym_not_eq] = ACTIONS(8002), - [anon_sym_DASH_DASH] = ACTIONS(8002), - [anon_sym_PLUS_PLUS] = ACTIONS(8002), - [anon_sym_DOT] = ACTIONS(8000), - [anon_sym_DOT_STAR] = ACTIONS(8002), - [anon_sym_DASH_GT] = ACTIONS(8000), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8002), - [anon_sym_override] = ACTIONS(8002), - [anon_sym_requires] = ACTIONS(8002), - [anon_sym_DASH_GT_STAR] = ACTIONS(8002), + [STATE(2488)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7154), + [anon_sym_COMMA] = ACTIONS(7154), + [anon_sym_LPAREN2] = ACTIONS(7154), + [anon_sym_DASH] = ACTIONS(7152), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7152), + [anon_sym_PIPE_PIPE] = ACTIONS(7154), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE] = ACTIONS(7152), + [anon_sym_CARET] = ACTIONS(7152), + [anon_sym_AMP] = ACTIONS(7152), + [anon_sym_EQ_EQ] = ACTIONS(7154), + [anon_sym_BANG_EQ] = ACTIONS(7154), + [anon_sym_GT] = ACTIONS(7152), + [anon_sym_GT_EQ] = ACTIONS(7154), + [anon_sym_LT_EQ] = ACTIONS(7152), + [anon_sym_LT] = ACTIONS(7152), + [anon_sym_LT_LT] = ACTIONS(7152), + [anon_sym_GT_GT] = ACTIONS(7152), + [anon_sym___extension__] = ACTIONS(7154), + [anon_sym___attribute__] = ACTIONS(7154), + [anon_sym___attribute] = ACTIONS(7152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7154), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_RBRACK] = ACTIONS(7154), + [anon_sym_EQ] = ACTIONS(7152), + [anon_sym_const] = ACTIONS(7152), + [anon_sym_constexpr] = ACTIONS(7154), + [anon_sym_volatile] = ACTIONS(7154), + [anon_sym_restrict] = ACTIONS(7154), + [anon_sym___restrict__] = ACTIONS(7154), + [anon_sym__Atomic] = ACTIONS(7154), + [anon_sym__Noreturn] = ACTIONS(7154), + [anon_sym_noreturn] = ACTIONS(7154), + [anon_sym__Nonnull] = ACTIONS(7154), + [anon_sym_mutable] = ACTIONS(7154), + [anon_sym_constinit] = ACTIONS(7154), + [anon_sym_consteval] = ACTIONS(7154), + [anon_sym_alignas] = ACTIONS(7154), + [anon_sym__Alignas] = ACTIONS(7154), + [anon_sym_QMARK] = ACTIONS(7154), + [anon_sym_STAR_EQ] = ACTIONS(7154), + [anon_sym_SLASH_EQ] = ACTIONS(7154), + [anon_sym_PERCENT_EQ] = ACTIONS(7154), + [anon_sym_PLUS_EQ] = ACTIONS(7154), + [anon_sym_DASH_EQ] = ACTIONS(7154), + [anon_sym_LT_LT_EQ] = ACTIONS(7154), + [anon_sym_GT_GT_EQ] = ACTIONS(7154), + [anon_sym_AMP_EQ] = ACTIONS(7154), + [anon_sym_CARET_EQ] = ACTIONS(7154), + [anon_sym_PIPE_EQ] = ACTIONS(7154), + [anon_sym_and_eq] = ACTIONS(7154), + [anon_sym_or_eq] = ACTIONS(7154), + [anon_sym_xor_eq] = ACTIONS(7154), + [anon_sym_LT_EQ_GT] = ACTIONS(7154), + [anon_sym_or] = ACTIONS(7152), + [anon_sym_and] = ACTIONS(7152), + [anon_sym_bitor] = ACTIONS(7154), + [anon_sym_xor] = ACTIONS(7152), + [anon_sym_bitand] = ACTIONS(7154), + [anon_sym_not_eq] = ACTIONS(7154), + [anon_sym_DASH_DASH] = ACTIONS(7154), + [anon_sym_PLUS_PLUS] = ACTIONS(7154), + [anon_sym_asm] = ACTIONS(7154), + [anon_sym___asm__] = ACTIONS(7154), + [anon_sym___asm] = ACTIONS(7152), + [anon_sym_DOT] = ACTIONS(7152), + [anon_sym_DOT_STAR] = ACTIONS(7154), + [anon_sym_DASH_GT] = ACTIONS(7154), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7154), + [anon_sym_override] = ACTIONS(7154), + [anon_sym_noexcept] = ACTIONS(7154), + [anon_sym_throw] = ACTIONS(7154), + [anon_sym_requires] = ACTIONS(7154), }, - [STATE(2521)] = { - [sym_attribute_specifier] = STATE(3047), - [sym_enumerator_list] = STATE(2666), - [sym__enum_base_clause] = STATE(2608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), - [anon_sym_COMMA] = ACTIONS(8008), - [anon_sym_RPAREN] = ACTIONS(8008), - [anon_sym_LPAREN2] = ACTIONS(8008), - [anon_sym_DASH] = ACTIONS(8006), - [anon_sym_PLUS] = ACTIONS(8006), - [anon_sym_STAR] = ACTIONS(8006), - [anon_sym_SLASH] = ACTIONS(8006), - [anon_sym_PERCENT] = ACTIONS(8006), - [anon_sym_PIPE_PIPE] = ACTIONS(8008), - [anon_sym_AMP_AMP] = ACTIONS(8008), - [anon_sym_PIPE] = ACTIONS(8006), - [anon_sym_CARET] = ACTIONS(8006), - [anon_sym_AMP] = ACTIONS(8006), - [anon_sym_EQ_EQ] = ACTIONS(8008), - [anon_sym_BANG_EQ] = ACTIONS(8008), - [anon_sym_GT] = ACTIONS(8006), - [anon_sym_GT_EQ] = ACTIONS(8008), - [anon_sym_LT_EQ] = ACTIONS(8006), - [anon_sym_LT] = ACTIONS(8006), - [anon_sym_LT_LT] = ACTIONS(8006), - [anon_sym_GT_GT] = ACTIONS(8006), - [anon_sym___extension__] = ACTIONS(8008), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_COLON] = ACTIONS(8381), - [anon_sym_LBRACE] = ACTIONS(8383), - [anon_sym_LBRACK] = ACTIONS(8008), - [anon_sym_EQ] = ACTIONS(8006), - [anon_sym_const] = ACTIONS(8006), - [anon_sym_constexpr] = ACTIONS(8008), - [anon_sym_volatile] = ACTIONS(8008), - [anon_sym_restrict] = ACTIONS(8008), - [anon_sym___restrict__] = ACTIONS(8008), - [anon_sym__Atomic] = ACTIONS(8008), - [anon_sym__Noreturn] = ACTIONS(8008), - [anon_sym_noreturn] = ACTIONS(8008), - [anon_sym__Nonnull] = ACTIONS(8008), - [anon_sym_mutable] = ACTIONS(8008), - [anon_sym_constinit] = ACTIONS(8008), - [anon_sym_consteval] = ACTIONS(8008), - [anon_sym_alignas] = ACTIONS(8008), - [anon_sym__Alignas] = ACTIONS(8008), - [anon_sym_QMARK] = ACTIONS(8008), - [anon_sym_STAR_EQ] = ACTIONS(8008), - [anon_sym_SLASH_EQ] = ACTIONS(8008), - [anon_sym_PERCENT_EQ] = ACTIONS(8008), - [anon_sym_PLUS_EQ] = ACTIONS(8008), - [anon_sym_DASH_EQ] = ACTIONS(8008), - [anon_sym_LT_LT_EQ] = ACTIONS(8008), - [anon_sym_GT_GT_EQ] = ACTIONS(8008), - [anon_sym_AMP_EQ] = ACTIONS(8008), - [anon_sym_CARET_EQ] = ACTIONS(8008), - [anon_sym_PIPE_EQ] = ACTIONS(8008), - [anon_sym_and_eq] = ACTIONS(8008), - [anon_sym_or_eq] = ACTIONS(8008), - [anon_sym_xor_eq] = ACTIONS(8008), - [anon_sym_LT_EQ_GT] = ACTIONS(8008), - [anon_sym_or] = ACTIONS(8006), - [anon_sym_and] = ACTIONS(8006), - [anon_sym_bitor] = ACTIONS(8008), - [anon_sym_xor] = ACTIONS(8006), - [anon_sym_bitand] = ACTIONS(8008), - [anon_sym_not_eq] = ACTIONS(8008), - [anon_sym_DASH_DASH] = ACTIONS(8008), - [anon_sym_PLUS_PLUS] = ACTIONS(8008), - [anon_sym_DOT] = ACTIONS(8006), - [anon_sym_DOT_STAR] = ACTIONS(8008), - [anon_sym_DASH_GT] = ACTIONS(8006), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8008), - [anon_sym_override] = ACTIONS(8008), - [anon_sym_requires] = ACTIONS(8008), - [anon_sym_DASH_GT_STAR] = ACTIONS(8008), + [STATE(2489)] = { + [sym__abstract_declarator] = STATE(5358), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2497), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1973), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2497), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(7349), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(7351), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(7353), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7367), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7367), + [anon_sym_or_eq] = ACTIONS(7367), + [anon_sym_xor_eq] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), }, - [STATE(2522)] = { - [sym_template_argument_list] = STATE(5613), - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), - [anon_sym_COMMA] = ACTIONS(7087), - [anon_sym_RPAREN] = ACTIONS(7087), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_TILDE] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7092), - [anon_sym_PLUS] = ACTIONS(7092), - [anon_sym_STAR] = ACTIONS(7087), - [anon_sym_SLASH] = ACTIONS(7092), - [anon_sym_PERCENT] = ACTIONS(7097), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7087), - [anon_sym_PIPE] = ACTIONS(7092), - [anon_sym_CARET] = ACTIONS(7097), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7092), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7099), - [anon_sym_LT_LT] = ACTIONS(7097), - [anon_sym_GT_GT] = ACTIONS(7097), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym_virtual] = ACTIONS(7085), - [anon_sym_extern] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), - [anon_sym___declspec] = ACTIONS(7085), - [anon_sym___based] = ACTIONS(7085), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7094), - [anon_sym_static] = ACTIONS(7085), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_register] = ACTIONS(7085), - [anon_sym_inline] = ACTIONS(7085), - [anon_sym___inline] = ACTIONS(7085), - [anon_sym___inline__] = ACTIONS(7085), - [anon_sym___forceinline] = ACTIONS(7085), - [anon_sym_thread_local] = ACTIONS(7085), - [anon_sym___thread] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7092), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_bitor] = ACTIONS(7092), - [anon_sym_xor] = ACTIONS(7092), - [anon_sym_bitand] = ACTIONS(7092), - [anon_sym_not_eq] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7092), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7097), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7085), - [anon_sym_template] = ACTIONS(7085), - [anon_sym_operator] = ACTIONS(7085), - [anon_sym_LBRACK_COLON] = ACTIONS(7090), + [STATE(2490)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7660), + [anon_sym_COMMA] = ACTIONS(7660), + [anon_sym_LPAREN2] = ACTIONS(7660), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_STAR] = ACTIONS(7658), + [anon_sym_SLASH] = ACTIONS(7658), + [anon_sym_PERCENT] = ACTIONS(7658), + [anon_sym_PIPE_PIPE] = ACTIONS(7660), + [anon_sym_AMP_AMP] = ACTIONS(7660), + [anon_sym_PIPE] = ACTIONS(7658), + [anon_sym_CARET] = ACTIONS(7658), + [anon_sym_AMP] = ACTIONS(7658), + [anon_sym_EQ_EQ] = ACTIONS(7660), + [anon_sym_BANG_EQ] = ACTIONS(7660), + [anon_sym_GT] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7658), + [anon_sym_LT_EQ] = ACTIONS(7658), + [anon_sym_LT] = ACTIONS(7658), + [anon_sym_LT_LT] = ACTIONS(7658), + [anon_sym_GT_GT] = ACTIONS(7658), + [anon_sym___extension__] = ACTIONS(7660), + [anon_sym___attribute__] = ACTIONS(7660), + [anon_sym___attribute] = ACTIONS(7658), + [anon_sym_LBRACE] = ACTIONS(7660), + [anon_sym_signed] = ACTIONS(8332), + [anon_sym_unsigned] = ACTIONS(8332), + [anon_sym_long] = ACTIONS(8332), + [anon_sym_short] = ACTIONS(8332), + [anon_sym_LBRACK] = ACTIONS(7660), + [anon_sym_EQ] = ACTIONS(7658), + [anon_sym_const] = ACTIONS(7658), + [anon_sym_constexpr] = ACTIONS(7660), + [anon_sym_volatile] = ACTIONS(7660), + [anon_sym_restrict] = ACTIONS(7660), + [anon_sym___restrict__] = ACTIONS(7660), + [anon_sym__Atomic] = ACTIONS(7660), + [anon_sym__Noreturn] = ACTIONS(7660), + [anon_sym_noreturn] = ACTIONS(7660), + [anon_sym__Nonnull] = ACTIONS(7660), + [anon_sym_mutable] = ACTIONS(7660), + [anon_sym_constinit] = ACTIONS(7660), + [anon_sym_consteval] = ACTIONS(7660), + [anon_sym_alignas] = ACTIONS(7660), + [anon_sym__Alignas] = ACTIONS(7660), + [anon_sym_QMARK] = ACTIONS(7660), + [anon_sym_STAR_EQ] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(7660), + [anon_sym_PERCENT_EQ] = ACTIONS(7660), + [anon_sym_PLUS_EQ] = ACTIONS(7660), + [anon_sym_DASH_EQ] = ACTIONS(7660), + [anon_sym_LT_LT_EQ] = ACTIONS(7660), + [anon_sym_GT_GT_EQ] = ACTIONS(7658), + [anon_sym_AMP_EQ] = ACTIONS(7660), + [anon_sym_CARET_EQ] = ACTIONS(7660), + [anon_sym_PIPE_EQ] = ACTIONS(7660), + [anon_sym_and_eq] = ACTIONS(7660), + [anon_sym_or_eq] = ACTIONS(7660), + [anon_sym_xor_eq] = ACTIONS(7660), + [anon_sym_LT_EQ_GT] = ACTIONS(7660), + [anon_sym_or] = ACTIONS(7658), + [anon_sym_and] = ACTIONS(7658), + [anon_sym_bitor] = ACTIONS(7660), + [anon_sym_xor] = ACTIONS(7658), + [anon_sym_bitand] = ACTIONS(7660), + [anon_sym_not_eq] = ACTIONS(7660), + [anon_sym_DASH_DASH] = ACTIONS(7660), + [anon_sym_PLUS_PLUS] = ACTIONS(7660), + [anon_sym_DOT] = ACTIONS(7658), + [anon_sym_DOT_STAR] = ACTIONS(7660), + [anon_sym_DASH_GT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7660), + [anon_sym_override] = ACTIONS(7660), + [anon_sym_GT2] = ACTIONS(7660), + [anon_sym_requires] = ACTIONS(7660), }, - [STATE(2523)] = { - [sym__abstract_declarator] = STATE(5432), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2307), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1975), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7349), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7349), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_and_eq] = ACTIONS(7351), - [anon_sym_or_eq] = ACTIONS(7351), - [anon_sym_xor_eq] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7351), + [STATE(2491)] = { + [sym_attribute_specifier] = STATE(2977), + [sym_enumerator_list] = STATE(2663), + [sym__enum_base_clause] = STATE(2599), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8003), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_RPAREN] = ACTIONS(8003), + [anon_sym_LPAREN2] = ACTIONS(8003), + [anon_sym_DASH] = ACTIONS(8001), + [anon_sym_PLUS] = ACTIONS(8001), + [anon_sym_STAR] = ACTIONS(8001), + [anon_sym_SLASH] = ACTIONS(8001), + [anon_sym_PERCENT] = ACTIONS(8001), + [anon_sym_PIPE_PIPE] = ACTIONS(8003), + [anon_sym_AMP_AMP] = ACTIONS(8003), + [anon_sym_PIPE] = ACTIONS(8001), + [anon_sym_CARET] = ACTIONS(8001), + [anon_sym_AMP] = ACTIONS(8001), + [anon_sym_EQ_EQ] = ACTIONS(8003), + [anon_sym_BANG_EQ] = ACTIONS(8003), + [anon_sym_GT] = ACTIONS(8001), + [anon_sym_GT_EQ] = ACTIONS(8003), + [anon_sym_LT_EQ] = ACTIONS(8001), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_LT_LT] = ACTIONS(8001), + [anon_sym_GT_GT] = ACTIONS(8001), + [anon_sym___extension__] = ACTIONS(8003), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_COLON] = ACTIONS(8334), + [anon_sym_LBRACE] = ACTIONS(8336), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_EQ] = ACTIONS(8001), + [anon_sym_const] = ACTIONS(8001), + [anon_sym_constexpr] = ACTIONS(8003), + [anon_sym_volatile] = ACTIONS(8003), + [anon_sym_restrict] = ACTIONS(8003), + [anon_sym___restrict__] = ACTIONS(8003), + [anon_sym__Atomic] = ACTIONS(8003), + [anon_sym__Noreturn] = ACTIONS(8003), + [anon_sym_noreturn] = ACTIONS(8003), + [anon_sym__Nonnull] = ACTIONS(8003), + [anon_sym_mutable] = ACTIONS(8003), + [anon_sym_constinit] = ACTIONS(8003), + [anon_sym_consteval] = ACTIONS(8003), + [anon_sym_alignas] = ACTIONS(8003), + [anon_sym__Alignas] = ACTIONS(8003), + [anon_sym_QMARK] = ACTIONS(8003), + [anon_sym_STAR_EQ] = ACTIONS(8003), + [anon_sym_SLASH_EQ] = ACTIONS(8003), + [anon_sym_PERCENT_EQ] = ACTIONS(8003), + [anon_sym_PLUS_EQ] = ACTIONS(8003), + [anon_sym_DASH_EQ] = ACTIONS(8003), + [anon_sym_LT_LT_EQ] = ACTIONS(8003), + [anon_sym_GT_GT_EQ] = ACTIONS(8003), + [anon_sym_AMP_EQ] = ACTIONS(8003), + [anon_sym_CARET_EQ] = ACTIONS(8003), + [anon_sym_PIPE_EQ] = ACTIONS(8003), + [anon_sym_and_eq] = ACTIONS(8003), + [anon_sym_or_eq] = ACTIONS(8003), + [anon_sym_xor_eq] = ACTIONS(8003), + [anon_sym_LT_EQ_GT] = ACTIONS(8003), + [anon_sym_or] = ACTIONS(8001), + [anon_sym_and] = ACTIONS(8001), + [anon_sym_bitor] = ACTIONS(8003), + [anon_sym_xor] = ACTIONS(8001), + [anon_sym_bitand] = ACTIONS(8003), + [anon_sym_not_eq] = ACTIONS(8003), + [anon_sym_DASH_DASH] = ACTIONS(8003), + [anon_sym_PLUS_PLUS] = ACTIONS(8003), + [anon_sym_DOT] = ACTIONS(8001), + [anon_sym_DOT_STAR] = ACTIONS(8003), + [anon_sym_DASH_GT] = ACTIONS(8001), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8003), + [anon_sym_override] = ACTIONS(8003), + [anon_sym_requires] = ACTIONS(8003), + [anon_sym_DASH_GT_STAR] = ACTIONS(8003), }, - [STATE(2524)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), - [anon_sym_COMMA] = ACTIONS(7110), - [anon_sym_LPAREN2] = ACTIONS(7110), - [anon_sym_DASH] = ACTIONS(7108), - [anon_sym_PLUS] = ACTIONS(7108), - [anon_sym_STAR] = ACTIONS(7108), - [anon_sym_SLASH] = ACTIONS(7108), - [anon_sym_PERCENT] = ACTIONS(7108), - [anon_sym_PIPE_PIPE] = ACTIONS(7110), - [anon_sym_AMP_AMP] = ACTIONS(7110), - [anon_sym_PIPE] = ACTIONS(7108), - [anon_sym_CARET] = ACTIONS(7108), - [anon_sym_AMP] = ACTIONS(7108), - [anon_sym_EQ_EQ] = ACTIONS(7110), - [anon_sym_BANG_EQ] = ACTIONS(7110), - [anon_sym_GT] = ACTIONS(7108), - [anon_sym_GT_EQ] = ACTIONS(7108), - [anon_sym_LT_EQ] = ACTIONS(7108), - [anon_sym_LT] = ACTIONS(7108), - [anon_sym_LT_LT] = ACTIONS(7108), - [anon_sym_GT_GT] = ACTIONS(7108), - [anon_sym___extension__] = ACTIONS(7110), - [anon_sym___attribute__] = ACTIONS(7110), - [anon_sym___attribute] = ACTIONS(7108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), - [anon_sym_LBRACK] = ACTIONS(7108), - [anon_sym_EQ] = ACTIONS(7108), - [anon_sym_const] = ACTIONS(7108), - [anon_sym_constexpr] = ACTIONS(7110), - [anon_sym_volatile] = ACTIONS(7110), - [anon_sym_restrict] = ACTIONS(7110), - [anon_sym___restrict__] = ACTIONS(7110), - [anon_sym__Atomic] = ACTIONS(7110), - [anon_sym__Noreturn] = ACTIONS(7110), - [anon_sym_noreturn] = ACTIONS(7110), - [anon_sym__Nonnull] = ACTIONS(7110), - [anon_sym_mutable] = ACTIONS(7110), - [anon_sym_constinit] = ACTIONS(7110), - [anon_sym_consteval] = ACTIONS(7110), - [anon_sym_alignas] = ACTIONS(7110), - [anon_sym__Alignas] = ACTIONS(7110), - [anon_sym_QMARK] = ACTIONS(7110), - [anon_sym_STAR_EQ] = ACTIONS(7110), - [anon_sym_SLASH_EQ] = ACTIONS(7110), - [anon_sym_PERCENT_EQ] = ACTIONS(7110), - [anon_sym_PLUS_EQ] = ACTIONS(7110), - [anon_sym_DASH_EQ] = ACTIONS(7110), - [anon_sym_LT_LT_EQ] = ACTIONS(7110), - [anon_sym_GT_GT_EQ] = ACTIONS(7108), - [anon_sym_AMP_EQ] = ACTIONS(7110), - [anon_sym_CARET_EQ] = ACTIONS(7110), - [anon_sym_PIPE_EQ] = ACTIONS(7110), - [anon_sym_and_eq] = ACTIONS(7110), - [anon_sym_or_eq] = ACTIONS(7110), - [anon_sym_xor_eq] = ACTIONS(7110), - [anon_sym_LT_EQ_GT] = ACTIONS(7110), - [anon_sym_or] = ACTIONS(7108), - [anon_sym_and] = ACTIONS(7108), - [anon_sym_bitor] = ACTIONS(7110), - [anon_sym_xor] = ACTIONS(7108), - [anon_sym_bitand] = ACTIONS(7110), - [anon_sym_not_eq] = ACTIONS(7110), - [anon_sym_DASH_DASH] = ACTIONS(7110), - [anon_sym_PLUS_PLUS] = ACTIONS(7110), - [anon_sym_asm] = ACTIONS(7110), - [anon_sym___asm__] = ACTIONS(7110), - [anon_sym___asm] = ACTIONS(7108), - [anon_sym_DOT] = ACTIONS(7108), - [anon_sym_DOT_STAR] = ACTIONS(7110), - [anon_sym_DASH_GT] = ACTIONS(7110), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7110), - [anon_sym_override] = ACTIONS(7110), - [anon_sym_GT2] = ACTIONS(7110), - [anon_sym_noexcept] = ACTIONS(7110), - [anon_sym_throw] = ACTIONS(7110), - [anon_sym_requires] = ACTIONS(7110), + [STATE(2492)] = { + [sym_attribute_specifier] = STATE(2993), + [sym_enumerator_list] = STATE(2656), + [sym__enum_base_clause] = STATE(2607), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8009), + [anon_sym_COMMA] = ACTIONS(8009), + [anon_sym_RPAREN] = ACTIONS(8009), + [anon_sym_LPAREN2] = ACTIONS(8009), + [anon_sym_DASH] = ACTIONS(8007), + [anon_sym_PLUS] = ACTIONS(8007), + [anon_sym_STAR] = ACTIONS(8007), + [anon_sym_SLASH] = ACTIONS(8007), + [anon_sym_PERCENT] = ACTIONS(8007), + [anon_sym_PIPE_PIPE] = ACTIONS(8009), + [anon_sym_AMP_AMP] = ACTIONS(8009), + [anon_sym_PIPE] = ACTIONS(8007), + [anon_sym_CARET] = ACTIONS(8007), + [anon_sym_AMP] = ACTIONS(8007), + [anon_sym_EQ_EQ] = ACTIONS(8009), + [anon_sym_BANG_EQ] = ACTIONS(8009), + [anon_sym_GT] = ACTIONS(8007), + [anon_sym_GT_EQ] = ACTIONS(8009), + [anon_sym_LT_EQ] = ACTIONS(8007), + [anon_sym_LT] = ACTIONS(8007), + [anon_sym_LT_LT] = ACTIONS(8007), + [anon_sym_GT_GT] = ACTIONS(8007), + [anon_sym___extension__] = ACTIONS(8009), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_COLON] = ACTIONS(8334), + [anon_sym_LBRACE] = ACTIONS(8336), + [anon_sym_LBRACK] = ACTIONS(8009), + [anon_sym_EQ] = ACTIONS(8007), + [anon_sym_const] = ACTIONS(8007), + [anon_sym_constexpr] = ACTIONS(8009), + [anon_sym_volatile] = ACTIONS(8009), + [anon_sym_restrict] = ACTIONS(8009), + [anon_sym___restrict__] = ACTIONS(8009), + [anon_sym__Atomic] = ACTIONS(8009), + [anon_sym__Noreturn] = ACTIONS(8009), + [anon_sym_noreturn] = ACTIONS(8009), + [anon_sym__Nonnull] = ACTIONS(8009), + [anon_sym_mutable] = ACTIONS(8009), + [anon_sym_constinit] = ACTIONS(8009), + [anon_sym_consteval] = ACTIONS(8009), + [anon_sym_alignas] = ACTIONS(8009), + [anon_sym__Alignas] = ACTIONS(8009), + [anon_sym_QMARK] = ACTIONS(8009), + [anon_sym_STAR_EQ] = ACTIONS(8009), + [anon_sym_SLASH_EQ] = ACTIONS(8009), + [anon_sym_PERCENT_EQ] = ACTIONS(8009), + [anon_sym_PLUS_EQ] = ACTIONS(8009), + [anon_sym_DASH_EQ] = ACTIONS(8009), + [anon_sym_LT_LT_EQ] = ACTIONS(8009), + [anon_sym_GT_GT_EQ] = ACTIONS(8009), + [anon_sym_AMP_EQ] = ACTIONS(8009), + [anon_sym_CARET_EQ] = ACTIONS(8009), + [anon_sym_PIPE_EQ] = ACTIONS(8009), + [anon_sym_and_eq] = ACTIONS(8009), + [anon_sym_or_eq] = ACTIONS(8009), + [anon_sym_xor_eq] = ACTIONS(8009), + [anon_sym_LT_EQ_GT] = ACTIONS(8009), + [anon_sym_or] = ACTIONS(8007), + [anon_sym_and] = ACTIONS(8007), + [anon_sym_bitor] = ACTIONS(8009), + [anon_sym_xor] = ACTIONS(8007), + [anon_sym_bitand] = ACTIONS(8009), + [anon_sym_not_eq] = ACTIONS(8009), + [anon_sym_DASH_DASH] = ACTIONS(8009), + [anon_sym_PLUS_PLUS] = ACTIONS(8009), + [anon_sym_DOT] = ACTIONS(8007), + [anon_sym_DOT_STAR] = ACTIONS(8009), + [anon_sym_DASH_GT] = ACTIONS(8007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8009), + [anon_sym_override] = ACTIONS(8009), + [anon_sym_requires] = ACTIONS(8009), + [anon_sym_DASH_GT_STAR] = ACTIONS(8009), }, - [STATE(2525)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2355), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_RPAREN] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8049), - [anon_sym_unsigned] = ACTIONS(8049), - [anon_sym_long] = ACTIONS(8049), - [anon_sym_short] = ACTIONS(8049), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7525), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_and_eq] = ACTIONS(7528), - [anon_sym_or_eq] = ACTIONS(7528), - [anon_sym_xor_eq] = ACTIONS(7528), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7528), + [STATE(2493)] = { + [sym_attribute_specifier] = STATE(3198), + [sym_field_declaration_list] = STATE(2845), + [sym_virtual_specifier] = STATE(9513), + [sym_base_class_clause] = STATE(10467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym_LPAREN2] = ACTIONS(7256), + [anon_sym_DASH] = ACTIONS(7254), + [anon_sym_PLUS] = ACTIONS(7254), + [anon_sym_STAR] = ACTIONS(7254), + [anon_sym_SLASH] = ACTIONS(7254), + [anon_sym_PERCENT] = ACTIONS(7254), + [anon_sym_PIPE_PIPE] = ACTIONS(7256), + [anon_sym_AMP_AMP] = ACTIONS(7256), + [anon_sym_PIPE] = ACTIONS(7254), + [anon_sym_CARET] = ACTIONS(7254), + [anon_sym_AMP] = ACTIONS(7254), + [anon_sym_EQ_EQ] = ACTIONS(7256), + [anon_sym_BANG_EQ] = ACTIONS(7256), + [anon_sym_GT] = ACTIONS(7254), + [anon_sym_GT_EQ] = ACTIONS(7256), + [anon_sym_LT_EQ] = ACTIONS(7254), + [anon_sym_LT] = ACTIONS(7254), + [anon_sym_LT_LT] = ACTIONS(7254), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym___extension__] = ACTIONS(7256), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_COLON] = ACTIONS(8180), + [anon_sym_LBRACE] = ACTIONS(8342), + [anon_sym_LBRACK] = ACTIONS(7256), + [anon_sym_RBRACK] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7254), + [anon_sym_const] = ACTIONS(7254), + [anon_sym_constexpr] = ACTIONS(7256), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym___restrict__] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym__Noreturn] = ACTIONS(7256), + [anon_sym_noreturn] = ACTIONS(7256), + [anon_sym__Nonnull] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_constinit] = ACTIONS(7256), + [anon_sym_consteval] = ACTIONS(7256), + [anon_sym_alignas] = ACTIONS(7256), + [anon_sym__Alignas] = ACTIONS(7256), + [anon_sym_QMARK] = ACTIONS(7256), + [anon_sym_STAR_EQ] = ACTIONS(7256), + [anon_sym_SLASH_EQ] = ACTIONS(7256), + [anon_sym_PERCENT_EQ] = ACTIONS(7256), + [anon_sym_PLUS_EQ] = ACTIONS(7256), + [anon_sym_DASH_EQ] = ACTIONS(7256), + [anon_sym_LT_LT_EQ] = ACTIONS(7256), + [anon_sym_GT_GT_EQ] = ACTIONS(7256), + [anon_sym_AMP_EQ] = ACTIONS(7256), + [anon_sym_CARET_EQ] = ACTIONS(7256), + [anon_sym_PIPE_EQ] = ACTIONS(7256), + [anon_sym_and_eq] = ACTIONS(7256), + [anon_sym_or_eq] = ACTIONS(7256), + [anon_sym_xor_eq] = ACTIONS(7256), + [anon_sym_LT_EQ_GT] = ACTIONS(7256), + [anon_sym_or] = ACTIONS(7254), + [anon_sym_and] = ACTIONS(7254), + [anon_sym_bitor] = ACTIONS(7256), + [anon_sym_xor] = ACTIONS(7254), + [anon_sym_bitand] = ACTIONS(7256), + [anon_sym_not_eq] = ACTIONS(7256), + [anon_sym_DASH_DASH] = ACTIONS(7256), + [anon_sym_PLUS_PLUS] = ACTIONS(7256), + [anon_sym_DOT] = ACTIONS(7254), + [anon_sym_DOT_STAR] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8184), + [anon_sym_override] = ACTIONS(8184), + [anon_sym_requires] = ACTIONS(7256), + }, + [STATE(2494)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7664), + [anon_sym_COMMA] = ACTIONS(7664), + [anon_sym_LPAREN2] = ACTIONS(7664), + [anon_sym_DASH] = ACTIONS(7662), + [anon_sym_PLUS] = ACTIONS(7662), + [anon_sym_STAR] = ACTIONS(7662), + [anon_sym_SLASH] = ACTIONS(7662), + [anon_sym_PERCENT] = ACTIONS(7662), + [anon_sym_PIPE_PIPE] = ACTIONS(7664), + [anon_sym_AMP_AMP] = ACTIONS(7664), + [anon_sym_PIPE] = ACTIONS(7662), + [anon_sym_CARET] = ACTIONS(7662), + [anon_sym_AMP] = ACTIONS(7662), + [anon_sym_EQ_EQ] = ACTIONS(7664), + [anon_sym_BANG_EQ] = ACTIONS(7664), + [anon_sym_GT] = ACTIONS(7662), + [anon_sym_GT_EQ] = ACTIONS(7662), + [anon_sym_LT_EQ] = ACTIONS(7662), + [anon_sym_LT] = ACTIONS(7662), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym___extension__] = ACTIONS(7664), + [anon_sym___attribute__] = ACTIONS(7664), + [anon_sym___attribute] = ACTIONS(7662), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_signed] = ACTIONS(8332), + [anon_sym_unsigned] = ACTIONS(8332), + [anon_sym_long] = ACTIONS(8332), + [anon_sym_short] = ACTIONS(8332), + [anon_sym_LBRACK] = ACTIONS(7664), + [anon_sym_EQ] = ACTIONS(7662), + [anon_sym_const] = ACTIONS(7662), + [anon_sym_constexpr] = ACTIONS(7664), + [anon_sym_volatile] = ACTIONS(7664), + [anon_sym_restrict] = ACTIONS(7664), + [anon_sym___restrict__] = ACTIONS(7664), + [anon_sym__Atomic] = ACTIONS(7664), + [anon_sym__Noreturn] = ACTIONS(7664), + [anon_sym_noreturn] = ACTIONS(7664), + [anon_sym__Nonnull] = ACTIONS(7664), + [anon_sym_mutable] = ACTIONS(7664), + [anon_sym_constinit] = ACTIONS(7664), + [anon_sym_consteval] = ACTIONS(7664), + [anon_sym_alignas] = ACTIONS(7664), + [anon_sym__Alignas] = ACTIONS(7664), + [anon_sym_QMARK] = ACTIONS(7664), + [anon_sym_STAR_EQ] = ACTIONS(7664), + [anon_sym_SLASH_EQ] = ACTIONS(7664), + [anon_sym_PERCENT_EQ] = ACTIONS(7664), + [anon_sym_PLUS_EQ] = ACTIONS(7664), + [anon_sym_DASH_EQ] = ACTIONS(7664), + [anon_sym_LT_LT_EQ] = ACTIONS(7664), + [anon_sym_GT_GT_EQ] = ACTIONS(7662), + [anon_sym_AMP_EQ] = ACTIONS(7664), + [anon_sym_CARET_EQ] = ACTIONS(7664), + [anon_sym_PIPE_EQ] = ACTIONS(7664), + [anon_sym_and_eq] = ACTIONS(7664), + [anon_sym_or_eq] = ACTIONS(7664), + [anon_sym_xor_eq] = ACTIONS(7664), + [anon_sym_LT_EQ_GT] = ACTIONS(7664), + [anon_sym_or] = ACTIONS(7662), + [anon_sym_and] = ACTIONS(7662), + [anon_sym_bitor] = ACTIONS(7664), + [anon_sym_xor] = ACTIONS(7662), + [anon_sym_bitand] = ACTIONS(7664), + [anon_sym_not_eq] = ACTIONS(7664), + [anon_sym_DASH_DASH] = ACTIONS(7664), + [anon_sym_PLUS_PLUS] = ACTIONS(7664), + [anon_sym_DOT] = ACTIONS(7662), + [anon_sym_DOT_STAR] = ACTIONS(7664), + [anon_sym_DASH_GT] = ACTIONS(7664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7664), + [anon_sym_override] = ACTIONS(7664), + [anon_sym_GT2] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7664), + }, + [STATE(2495)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7686), + [anon_sym_COMMA] = ACTIONS(7686), + [anon_sym_LPAREN2] = ACTIONS(7686), + [anon_sym_DASH] = ACTIONS(7684), + [anon_sym_PLUS] = ACTIONS(7684), + [anon_sym_STAR] = ACTIONS(7684), + [anon_sym_SLASH] = ACTIONS(7684), + [anon_sym_PERCENT] = ACTIONS(7684), + [anon_sym_PIPE_PIPE] = ACTIONS(7686), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_PIPE] = ACTIONS(7684), + [anon_sym_CARET] = ACTIONS(7684), + [anon_sym_AMP] = ACTIONS(7684), + [anon_sym_EQ_EQ] = ACTIONS(7686), + [anon_sym_BANG_EQ] = ACTIONS(7686), + [anon_sym_GT] = ACTIONS(7684), + [anon_sym_GT_EQ] = ACTIONS(7684), + [anon_sym_LT_EQ] = ACTIONS(7684), + [anon_sym_LT] = ACTIONS(7684), + [anon_sym_LT_LT] = ACTIONS(7684), + [anon_sym_GT_GT] = ACTIONS(7684), + [anon_sym___extension__] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(7686), + [anon_sym___attribute] = ACTIONS(7684), + [anon_sym_LBRACE] = ACTIONS(7686), + [anon_sym_signed] = ACTIONS(8344), + [anon_sym_unsigned] = ACTIONS(8344), + [anon_sym_long] = ACTIONS(8344), + [anon_sym_short] = ACTIONS(8344), + [anon_sym_LBRACK] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(7684), + [anon_sym_const] = ACTIONS(7684), + [anon_sym_constexpr] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym___restrict__] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym__Noreturn] = ACTIONS(7686), + [anon_sym_noreturn] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym_mutable] = ACTIONS(7686), + [anon_sym_constinit] = ACTIONS(7686), + [anon_sym_consteval] = ACTIONS(7686), + [anon_sym_alignas] = ACTIONS(7686), + [anon_sym__Alignas] = ACTIONS(7686), + [anon_sym_QMARK] = ACTIONS(7686), + [anon_sym_STAR_EQ] = ACTIONS(7686), + [anon_sym_SLASH_EQ] = ACTIONS(7686), + [anon_sym_PERCENT_EQ] = ACTIONS(7686), + [anon_sym_PLUS_EQ] = ACTIONS(7686), + [anon_sym_DASH_EQ] = ACTIONS(7686), + [anon_sym_LT_LT_EQ] = ACTIONS(7686), + [anon_sym_GT_GT_EQ] = ACTIONS(7684), + [anon_sym_AMP_EQ] = ACTIONS(7686), + [anon_sym_CARET_EQ] = ACTIONS(7686), + [anon_sym_PIPE_EQ] = ACTIONS(7686), + [anon_sym_and_eq] = ACTIONS(7686), + [anon_sym_or_eq] = ACTIONS(7686), + [anon_sym_xor_eq] = ACTIONS(7686), + [anon_sym_LT_EQ_GT] = ACTIONS(7686), + [anon_sym_or] = ACTIONS(7684), + [anon_sym_and] = ACTIONS(7684), + [anon_sym_bitor] = ACTIONS(7686), + [anon_sym_xor] = ACTIONS(7684), + [anon_sym_bitand] = ACTIONS(7686), + [anon_sym_not_eq] = ACTIONS(7686), + [anon_sym_DASH_DASH] = ACTIONS(7686), + [anon_sym_PLUS_PLUS] = ACTIONS(7686), + [anon_sym_DOT] = ACTIONS(7684), + [anon_sym_DOT_STAR] = ACTIONS(7686), + [anon_sym_DASH_GT] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7686), + [anon_sym_override] = ACTIONS(7686), + [anon_sym_GT2] = ACTIONS(7686), + [anon_sym_requires] = ACTIONS(7686), + }, + [STATE(2496)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2511), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7692), + [anon_sym_COMMA] = ACTIONS(7692), + [anon_sym_LPAREN2] = ACTIONS(7692), + [anon_sym_DASH] = ACTIONS(7690), + [anon_sym_PLUS] = ACTIONS(7690), + [anon_sym_STAR] = ACTIONS(7690), + [anon_sym_SLASH] = ACTIONS(7690), + [anon_sym_PERCENT] = ACTIONS(7690), + [anon_sym_PIPE_PIPE] = ACTIONS(7692), + [anon_sym_AMP_AMP] = ACTIONS(7692), + [anon_sym_PIPE] = ACTIONS(7690), + [anon_sym_CARET] = ACTIONS(7690), + [anon_sym_AMP] = ACTIONS(7690), + [anon_sym_EQ_EQ] = ACTIONS(7692), + [anon_sym_BANG_EQ] = ACTIONS(7692), + [anon_sym_GT] = ACTIONS(7690), + [anon_sym_GT_EQ] = ACTIONS(7690), + [anon_sym_LT_EQ] = ACTIONS(7690), + [anon_sym_LT] = ACTIONS(7690), + [anon_sym_LT_LT] = ACTIONS(7690), + [anon_sym_GT_GT] = ACTIONS(7690), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(7692), + [anon_sym___attribute] = ACTIONS(7690), + [anon_sym_LBRACE] = ACTIONS(7692), + [anon_sym_signed] = ACTIONS(8346), + [anon_sym_unsigned] = ACTIONS(8346), + [anon_sym_long] = ACTIONS(8346), + [anon_sym_short] = ACTIONS(8346), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_EQ] = ACTIONS(7690), + [anon_sym_const] = ACTIONS(7690), + [anon_sym_constexpr] = ACTIONS(7692), + [anon_sym_volatile] = ACTIONS(7692), + [anon_sym_restrict] = ACTIONS(7692), + [anon_sym___restrict__] = ACTIONS(7692), + [anon_sym__Atomic] = ACTIONS(7692), + [anon_sym__Noreturn] = ACTIONS(7692), + [anon_sym_noreturn] = ACTIONS(7692), + [anon_sym__Nonnull] = ACTIONS(7692), + [anon_sym_mutable] = ACTIONS(7692), + [anon_sym_constinit] = ACTIONS(7692), + [anon_sym_consteval] = ACTIONS(7692), + [anon_sym_alignas] = ACTIONS(7692), + [anon_sym__Alignas] = ACTIONS(7692), + [anon_sym_QMARK] = ACTIONS(7692), + [anon_sym_STAR_EQ] = ACTIONS(7692), + [anon_sym_SLASH_EQ] = ACTIONS(7692), + [anon_sym_PERCENT_EQ] = ACTIONS(7692), + [anon_sym_PLUS_EQ] = ACTIONS(7692), + [anon_sym_DASH_EQ] = ACTIONS(7692), + [anon_sym_LT_LT_EQ] = ACTIONS(7692), + [anon_sym_GT_GT_EQ] = ACTIONS(7690), + [anon_sym_AMP_EQ] = ACTIONS(7692), + [anon_sym_CARET_EQ] = ACTIONS(7692), + [anon_sym_PIPE_EQ] = ACTIONS(7692), + [anon_sym_and_eq] = ACTIONS(7692), + [anon_sym_or_eq] = ACTIONS(7692), + [anon_sym_xor_eq] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7692), + [anon_sym_or] = ACTIONS(7690), + [anon_sym_and] = ACTIONS(7690), + [anon_sym_bitor] = ACTIONS(7692), + [anon_sym_xor] = ACTIONS(7690), + [anon_sym_bitand] = ACTIONS(7692), + [anon_sym_not_eq] = ACTIONS(7692), + [anon_sym_DASH_DASH] = ACTIONS(7692), + [anon_sym_PLUS_PLUS] = ACTIONS(7692), + [anon_sym_DOT] = ACTIONS(7690), + [anon_sym_DOT_STAR] = ACTIONS(7692), + [anon_sym_DASH_GT] = ACTIONS(7692), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_GT2] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + }, + [STATE(2497)] = { + [sym__abstract_declarator] = STATE(5418), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1973), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(7349), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(7351), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(7353), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7371), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_and_eq] = ACTIONS(7371), + [anon_sym_or_eq] = ACTIONS(7371), + [anon_sym_xor_eq] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7525), }, - [STATE(2526)] = { - [sym__abstract_declarator] = STATE(5433), - [sym_abstract_parenthesized_declarator] = STATE(5090), - [sym_abstract_pointer_declarator] = STATE(5090), - [sym_abstract_function_declarator] = STATE(5090), - [sym_abstract_array_declarator] = STATE(5090), - [sym_type_qualifier] = STATE(2450), - [sym_alignas_qualifier] = STATE(2423), - [sym_parameter_list] = STATE(1975), - [sym_abstract_reference_declarator] = STATE(5090), - [sym__function_declarator_seq] = STATE(5091), - [aux_sym__type_definition_type_repeat1] = STATE(2450), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7136), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7375), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7377), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7379), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), + [STATE(2498)] = { + [sym__abstract_declarator] = STATE(5420), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2517), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1973), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(7349), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(7351), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(7353), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7375), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_and_eq] = ACTIONS(7375), + [anon_sym_or_eq] = ACTIONS(7375), + [anon_sym_xor_eq] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + }, + [STATE(2499)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2689), + [sym_ms_pointer_modifier] = STATE(2499), + [aux_sym_pointer_declarator_repeat1] = STATE(2499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6919), + [anon_sym_COMMA] = ACTIONS(6919), + [anon_sym_LPAREN2] = ACTIONS(6919), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_PERCENT] = ACTIONS(6917), + [anon_sym_PIPE_PIPE] = ACTIONS(6919), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_CARET] = ACTIONS(6917), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_EQ_EQ] = ACTIONS(6919), + [anon_sym_BANG_EQ] = ACTIONS(6919), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6919), + [anon_sym_LT_EQ] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_LT_LT] = ACTIONS(6917), + [anon_sym_GT_GT] = ACTIONS(6917), + [anon_sym___extension__] = ACTIONS(6919), + [sym_ms_restrict_modifier] = ACTIONS(8348), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8351), + [sym_ms_signed_ptr_modifier] = ACTIONS(8351), + [anon_sym__unaligned] = ACTIONS(8354), + [anon_sym___unaligned] = ACTIONS(8354), + [anon_sym_LBRACK] = ACTIONS(6919), + [anon_sym_RBRACK] = ACTIONS(6919), + [anon_sym_EQ] = ACTIONS(6917), + [anon_sym_const] = ACTIONS(6917), + [anon_sym_constexpr] = ACTIONS(6919), + [anon_sym_volatile] = ACTIONS(6919), + [anon_sym_restrict] = ACTIONS(6919), + [anon_sym___restrict__] = ACTIONS(6919), + [anon_sym__Atomic] = ACTIONS(6919), + [anon_sym__Noreturn] = ACTIONS(6919), + [anon_sym_noreturn] = ACTIONS(6919), + [anon_sym__Nonnull] = ACTIONS(6919), + [anon_sym_mutable] = ACTIONS(6919), + [anon_sym_constinit] = ACTIONS(6919), + [anon_sym_consteval] = ACTIONS(6919), + [anon_sym_alignas] = ACTIONS(6919), + [anon_sym__Alignas] = ACTIONS(6919), + [anon_sym_QMARK] = ACTIONS(6919), + [anon_sym_STAR_EQ] = ACTIONS(6919), + [anon_sym_SLASH_EQ] = ACTIONS(6919), + [anon_sym_PERCENT_EQ] = ACTIONS(6919), + [anon_sym_PLUS_EQ] = ACTIONS(6919), + [anon_sym_DASH_EQ] = ACTIONS(6919), + [anon_sym_LT_LT_EQ] = ACTIONS(6919), + [anon_sym_GT_GT_EQ] = ACTIONS(6919), + [anon_sym_AMP_EQ] = ACTIONS(6919), + [anon_sym_CARET_EQ] = ACTIONS(6919), + [anon_sym_PIPE_EQ] = ACTIONS(6919), + [anon_sym_and_eq] = ACTIONS(6919), + [anon_sym_or_eq] = ACTIONS(6919), + [anon_sym_xor_eq] = ACTIONS(6919), + [anon_sym_LT_EQ_GT] = ACTIONS(6919), + [anon_sym_or] = ACTIONS(6917), + [anon_sym_and] = ACTIONS(6917), + [anon_sym_bitor] = ACTIONS(6919), + [anon_sym_xor] = ACTIONS(6917), + [anon_sym_bitand] = ACTIONS(6919), + [anon_sym_not_eq] = ACTIONS(6919), + [anon_sym_DASH_DASH] = ACTIONS(6919), + [anon_sym_PLUS_PLUS] = ACTIONS(6919), + [anon_sym_DOT] = ACTIONS(6917), + [anon_sym_DOT_STAR] = ACTIONS(6919), + [anon_sym_DASH_GT] = ACTIONS(6919), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6919), + [anon_sym_override] = ACTIONS(6919), + [anon_sym_requires] = ACTIONS(6919), + }, + [STATE(2500)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8827), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9257), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9257), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2501)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8671), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9257), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9257), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2502)] = { + [sym_type_qualifier] = STATE(2502), + [sym_alignas_qualifier] = STATE(2667), + [aux_sym_array_declarator_repeat1] = STATE(2502), + [sym_identifier] = ACTIONS(8357), + [anon_sym_LPAREN2] = ACTIONS(8359), + [anon_sym_BANG] = ACTIONS(8359), + [anon_sym_TILDE] = ACTIONS(8359), + [anon_sym_DASH] = ACTIONS(8357), + [anon_sym_PLUS] = ACTIONS(8357), + [anon_sym_STAR] = ACTIONS(8359), + [anon_sym_AMP] = ACTIONS(8359), + [anon_sym___extension__] = ACTIONS(8361), + [anon_sym_COLON_COLON] = ACTIONS(8359), + [anon_sym_LBRACK] = ACTIONS(8357), + [anon_sym_static] = ACTIONS(8364), + [anon_sym_RBRACK] = ACTIONS(8359), + [anon_sym_const] = ACTIONS(8361), + [anon_sym_constexpr] = ACTIONS(8361), + [anon_sym_volatile] = ACTIONS(8361), + [anon_sym_restrict] = ACTIONS(8361), + [anon_sym___restrict__] = ACTIONS(8361), + [anon_sym__Atomic] = ACTIONS(8361), + [anon_sym__Noreturn] = ACTIONS(8361), + [anon_sym_noreturn] = ACTIONS(8361), + [anon_sym__Nonnull] = ACTIONS(8361), + [anon_sym_mutable] = ACTIONS(8361), + [anon_sym_constinit] = ACTIONS(8361), + [anon_sym_consteval] = ACTIONS(8361), + [anon_sym_alignas] = ACTIONS(8367), + [anon_sym__Alignas] = ACTIONS(8367), + [sym_primitive_type] = ACTIONS(8357), + [anon_sym_not] = ACTIONS(8357), + [anon_sym_compl] = ACTIONS(8357), + [anon_sym_DASH_DASH] = ACTIONS(8359), + [anon_sym_PLUS_PLUS] = ACTIONS(8359), + [anon_sym_sizeof] = ACTIONS(8357), + [anon_sym___alignof__] = ACTIONS(8357), + [anon_sym___alignof] = ACTIONS(8357), + [anon_sym__alignof] = ACTIONS(8357), + [anon_sym_alignof] = ACTIONS(8357), + [anon_sym__Alignof] = ACTIONS(8357), + [anon_sym_offsetof] = ACTIONS(8357), + [anon_sym__Generic] = ACTIONS(8357), + [anon_sym_typename] = ACTIONS(8357), + [anon_sym_asm] = ACTIONS(8357), + [anon_sym___asm__] = ACTIONS(8357), + [anon_sym___asm] = ACTIONS(8357), + [sym_number_literal] = ACTIONS(8359), + [anon_sym_L_SQUOTE] = ACTIONS(8359), + [anon_sym_u_SQUOTE] = ACTIONS(8359), + [anon_sym_U_SQUOTE] = ACTIONS(8359), + [anon_sym_u8_SQUOTE] = ACTIONS(8359), + [anon_sym_SQUOTE] = ACTIONS(8359), + [anon_sym_L_DQUOTE] = ACTIONS(8359), + [anon_sym_u_DQUOTE] = ACTIONS(8359), + [anon_sym_U_DQUOTE] = ACTIONS(8359), + [anon_sym_u8_DQUOTE] = ACTIONS(8359), + [anon_sym_DQUOTE] = ACTIONS(8359), + [sym_true] = ACTIONS(8357), + [sym_false] = ACTIONS(8357), + [anon_sym_NULL] = ACTIONS(8357), + [anon_sym_nullptr] = ACTIONS(8357), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(8357), + [anon_sym_template] = ACTIONS(8357), + [anon_sym_delete] = ACTIONS(8357), + [anon_sym_R_DQUOTE] = ACTIONS(8359), + [anon_sym_LR_DQUOTE] = ACTIONS(8359), + [anon_sym_uR_DQUOTE] = ACTIONS(8359), + [anon_sym_UR_DQUOTE] = ACTIONS(8359), + [anon_sym_u8R_DQUOTE] = ACTIONS(8359), + [anon_sym_co_await] = ACTIONS(8357), + [anon_sym_new] = ACTIONS(8357), + [anon_sym_requires] = ACTIONS(8357), + [anon_sym_CARET_CARET] = ACTIONS(8359), + [anon_sym_LBRACK_COLON] = ACTIONS(8359), + [sym_this] = ACTIONS(8357), + }, + [STATE(2503)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8774), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9259), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9259), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2504)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8700), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9241), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9241), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2505)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym___extension__] = ACTIONS(7146), + [anon_sym___attribute__] = ACTIONS(7146), + [anon_sym___attribute] = ACTIONS(7144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7144), + [anon_sym_RBRACK] = ACTIONS(7146), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7146), + [anon_sym_volatile] = ACTIONS(7146), + [anon_sym_restrict] = ACTIONS(7146), + [anon_sym___restrict__] = ACTIONS(7146), + [anon_sym__Atomic] = ACTIONS(7146), + [anon_sym__Noreturn] = ACTIONS(7146), + [anon_sym_noreturn] = ACTIONS(7146), + [anon_sym__Nonnull] = ACTIONS(7146), + [anon_sym_mutable] = ACTIONS(7146), + [anon_sym_constinit] = ACTIONS(7146), + [anon_sym_consteval] = ACTIONS(7146), + [anon_sym_alignas] = ACTIONS(7146), + [anon_sym__Alignas] = ACTIONS(7146), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7146), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_and_eq] = ACTIONS(7146), + [anon_sym_or_eq] = ACTIONS(7146), + [anon_sym_xor_eq] = ACTIONS(7146), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7144), + [anon_sym_and] = ACTIONS(7144), + [anon_sym_bitor] = ACTIONS(7146), + [anon_sym_xor] = ACTIONS(7144), + [anon_sym_bitand] = ACTIONS(7146), + [anon_sym_not_eq] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_asm] = ACTIONS(7146), + [anon_sym___asm__] = ACTIONS(7146), + [anon_sym___asm] = ACTIONS(7144), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7146), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7146), + [anon_sym_override] = ACTIONS(7146), + [anon_sym_noexcept] = ACTIONS(7146), + [anon_sym_throw] = ACTIONS(7146), + [anon_sym_requires] = ACTIONS(7146), + }, + [STATE(2506)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8721), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9259), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9259), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2507)] = { + [sym__abstract_declarator] = STATE(5377), + [sym_abstract_parenthesized_declarator] = STATE(5173), + [sym_abstract_pointer_declarator] = STATE(5173), + [sym_abstract_function_declarator] = STATE(5173), + [sym_abstract_array_declarator] = STATE(5173), + [sym_type_qualifier] = STATE(2474), + [sym_alignas_qualifier] = STATE(2388), + [sym_parameter_list] = STATE(1972), + [sym_abstract_reference_declarator] = STATE(5173), + [sym__function_declarator_seq] = STATE(5174), + [aux_sym__type_definition_type_repeat1] = STATE(2474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(7071), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(7335), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(7337), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(7339), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7365), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(7079), + [anon_sym_LBRACK] = ACTIONS(7087), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(7089), + [anon_sym_constexpr] = ACTIONS(7079), + [anon_sym_volatile] = ACTIONS(7079), + [anon_sym_restrict] = ACTIONS(7079), + [anon_sym___restrict__] = ACTIONS(7079), + [anon_sym__Atomic] = ACTIONS(7079), + [anon_sym__Noreturn] = ACTIONS(7079), + [anon_sym_noreturn] = ACTIONS(7079), + [anon_sym__Nonnull] = ACTIONS(7079), + [anon_sym_mutable] = ACTIONS(7079), + [anon_sym_constinit] = ACTIONS(7079), + [anon_sym_consteval] = ACTIONS(7079), + [anon_sym_alignas] = ACTIONS(7091), + [anon_sym__Alignas] = ACTIONS(7091), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7365), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_and_eq] = ACTIONS(7367), + [anon_sym_or_eq] = ACTIONS(7367), + [anon_sym_xor_eq] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7367), + }, + [STATE(2508)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8682), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9160), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9160), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2509)] = { + [sym__declaration_modifiers] = STATE(5108), + [sym_attribute_specifier] = STATE(5108), + [sym_attribute_declaration] = STATE(5108), + [sym_ms_declspec_modifier] = STATE(5108), + [sym_ms_based_modifier] = STATE(11132), + [sym__declarator] = STATE(9105), + [sym_parenthesized_declarator] = STATE(8564), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_function_declarator] = STATE(8704), + [sym_array_declarator] = STATE(8564), + [sym_storage_class_specifier] = STATE(5108), + [sym_type_qualifier] = STATE(5108), + [sym_alignas_qualifier] = STATE(4659), + [sym_decltype] = STATE(11531), + [sym_explicit_function_specifier] = STATE(5108), + [sym_operator_cast] = STATE(9197), + [sym__constructor_specifiers] = STATE(5108), + [sym_reference_declarator] = STATE(8564), + [sym_structured_binding_declarator] = STATE(8564), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7878), + [sym_qualified_identifier] = STATE(8564), + [sym_qualified_operator_cast_identifier] = STATE(9197), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym_operator_cast_definition_repeat1] = STATE(5108), + [sym_identifier] = ACTIONS(8274), + [anon_sym_LPAREN2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(3446), + [anon_sym___extension__] = ACTIONS(8276), + [anon_sym_virtual] = ACTIONS(8278), + [anon_sym_extern] = ACTIONS(8280), + [anon_sym___attribute__] = ACTIONS(8282), + [anon_sym___attribute] = ACTIONS(8282), + [anon_sym_COLON_COLON] = ACTIONS(8284), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8286), + [anon_sym___declspec] = ACTIONS(8288), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(3458), + [anon_sym_static] = ACTIONS(8280), + [anon_sym_register] = ACTIONS(8280), + [anon_sym_inline] = ACTIONS(8280), + [anon_sym___inline] = ACTIONS(8280), + [anon_sym___inline__] = ACTIONS(8280), + [anon_sym___forceinline] = ACTIONS(8280), + [anon_sym_thread_local] = ACTIONS(8280), + [anon_sym___thread] = ACTIONS(8280), + [anon_sym_const] = ACTIONS(8276), + [anon_sym_constexpr] = ACTIONS(8276), + [anon_sym_volatile] = ACTIONS(8276), + [anon_sym_restrict] = ACTIONS(8276), + [anon_sym___restrict__] = ACTIONS(8276), + [anon_sym__Atomic] = ACTIONS(8276), + [anon_sym__Noreturn] = ACTIONS(8276), + [anon_sym_noreturn] = ACTIONS(8276), + [anon_sym__Nonnull] = ACTIONS(8276), + [anon_sym_mutable] = ACTIONS(8276), + [anon_sym_constinit] = ACTIONS(8276), + [anon_sym_consteval] = ACTIONS(8276), + [anon_sym_alignas] = ACTIONS(8290), + [anon_sym__Alignas] = ACTIONS(8290), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_explicit] = ACTIONS(133), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(143), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2510)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7731), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7731), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7731), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7731), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7731), + [anon_sym_GT_GT] = ACTIONS(7731), + [anon_sym___extension__] = ACTIONS(7733), + [anon_sym___attribute__] = ACTIONS(7733), + [anon_sym___attribute] = ACTIONS(7731), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_signed] = ACTIONS(8332), + [anon_sym_unsigned] = ACTIONS(8332), + [anon_sym_long] = ACTIONS(8332), + [anon_sym_short] = ACTIONS(8332), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(7731), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7733), + [anon_sym_volatile] = ACTIONS(7733), + [anon_sym_restrict] = ACTIONS(7733), + [anon_sym___restrict__] = ACTIONS(7733), + [anon_sym__Atomic] = ACTIONS(7733), + [anon_sym__Noreturn] = ACTIONS(7733), + [anon_sym_noreturn] = ACTIONS(7733), + [anon_sym__Nonnull] = ACTIONS(7733), + [anon_sym_mutable] = ACTIONS(7733), + [anon_sym_constinit] = ACTIONS(7733), + [anon_sym_consteval] = ACTIONS(7733), + [anon_sym_alignas] = ACTIONS(7733), + [anon_sym__Alignas] = ACTIONS(7733), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_STAR_EQ] = ACTIONS(7733), + [anon_sym_SLASH_EQ] = ACTIONS(7733), + [anon_sym_PERCENT_EQ] = ACTIONS(7733), + [anon_sym_PLUS_EQ] = ACTIONS(7733), + [anon_sym_DASH_EQ] = ACTIONS(7733), + [anon_sym_LT_LT_EQ] = ACTIONS(7733), + [anon_sym_GT_GT_EQ] = ACTIONS(7731), + [anon_sym_AMP_EQ] = ACTIONS(7733), + [anon_sym_CARET_EQ] = ACTIONS(7733), + [anon_sym_PIPE_EQ] = ACTIONS(7733), + [anon_sym_and_eq] = ACTIONS(7733), + [anon_sym_or_eq] = ACTIONS(7733), + [anon_sym_xor_eq] = ACTIONS(7733), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7731), + [anon_sym_and] = ACTIONS(7731), + [anon_sym_bitor] = ACTIONS(7733), + [anon_sym_xor] = ACTIONS(7731), + [anon_sym_bitand] = ACTIONS(7733), + [anon_sym_not_eq] = ACTIONS(7733), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7733), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7733), + [anon_sym_override] = ACTIONS(7733), + [anon_sym_GT2] = ACTIONS(7733), + [anon_sym_requires] = ACTIONS(7733), + }, + [STATE(2511)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7739), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7739), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7739), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7739), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7739), + [anon_sym_GT_GT] = ACTIONS(7739), + [anon_sym___extension__] = ACTIONS(7741), + [anon_sym___attribute__] = ACTIONS(7741), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_signed] = ACTIONS(8332), + [anon_sym_unsigned] = ACTIONS(8332), + [anon_sym_long] = ACTIONS(8332), + [anon_sym_short] = ACTIONS(8332), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7741), + [anon_sym_volatile] = ACTIONS(7741), + [anon_sym_restrict] = ACTIONS(7741), + [anon_sym___restrict__] = ACTIONS(7741), + [anon_sym__Atomic] = ACTIONS(7741), + [anon_sym__Noreturn] = ACTIONS(7741), + [anon_sym_noreturn] = ACTIONS(7741), + [anon_sym__Nonnull] = ACTIONS(7741), + [anon_sym_mutable] = ACTIONS(7741), + [anon_sym_constinit] = ACTIONS(7741), + [anon_sym_consteval] = ACTIONS(7741), + [anon_sym_alignas] = ACTIONS(7741), + [anon_sym__Alignas] = ACTIONS(7741), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_STAR_EQ] = ACTIONS(7741), + [anon_sym_SLASH_EQ] = ACTIONS(7741), + [anon_sym_PERCENT_EQ] = ACTIONS(7741), + [anon_sym_PLUS_EQ] = ACTIONS(7741), + [anon_sym_DASH_EQ] = ACTIONS(7741), + [anon_sym_LT_LT_EQ] = ACTIONS(7741), + [anon_sym_GT_GT_EQ] = ACTIONS(7739), + [anon_sym_AMP_EQ] = ACTIONS(7741), + [anon_sym_CARET_EQ] = ACTIONS(7741), + [anon_sym_PIPE_EQ] = ACTIONS(7741), + [anon_sym_and_eq] = ACTIONS(7741), + [anon_sym_or_eq] = ACTIONS(7741), + [anon_sym_xor_eq] = ACTIONS(7741), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7739), + [anon_sym_and] = ACTIONS(7739), + [anon_sym_bitor] = ACTIONS(7741), + [anon_sym_xor] = ACTIONS(7739), + [anon_sym_bitand] = ACTIONS(7741), + [anon_sym_not_eq] = ACTIONS(7741), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7741), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7741), + [anon_sym_override] = ACTIONS(7741), + [anon_sym_GT2] = ACTIONS(7741), + [anon_sym_requires] = ACTIONS(7741), + }, + [STATE(2512)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7755), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7755), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7755), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7755), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7755), + [anon_sym_GT_GT] = ACTIONS(7755), + [anon_sym___extension__] = ACTIONS(7757), + [anon_sym___attribute__] = ACTIONS(7757), + [anon_sym___attribute] = ACTIONS(7755), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_signed] = ACTIONS(8370), + [anon_sym_unsigned] = ACTIONS(8370), + [anon_sym_long] = ACTIONS(8370), + [anon_sym_short] = ACTIONS(8370), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7757), + [anon_sym_volatile] = ACTIONS(7757), + [anon_sym_restrict] = ACTIONS(7757), + [anon_sym___restrict__] = ACTIONS(7757), + [anon_sym__Atomic] = ACTIONS(7757), + [anon_sym__Noreturn] = ACTIONS(7757), + [anon_sym_noreturn] = ACTIONS(7757), + [anon_sym__Nonnull] = ACTIONS(7757), + [anon_sym_mutable] = ACTIONS(7757), + [anon_sym_constinit] = ACTIONS(7757), + [anon_sym_consteval] = ACTIONS(7757), + [anon_sym_alignas] = ACTIONS(7757), + [anon_sym__Alignas] = ACTIONS(7757), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_STAR_EQ] = ACTIONS(7757), + [anon_sym_SLASH_EQ] = ACTIONS(7757), + [anon_sym_PERCENT_EQ] = ACTIONS(7757), + [anon_sym_PLUS_EQ] = ACTIONS(7757), + [anon_sym_DASH_EQ] = ACTIONS(7757), + [anon_sym_LT_LT_EQ] = ACTIONS(7757), + [anon_sym_GT_GT_EQ] = ACTIONS(7755), + [anon_sym_AMP_EQ] = ACTIONS(7757), + [anon_sym_CARET_EQ] = ACTIONS(7757), + [anon_sym_PIPE_EQ] = ACTIONS(7757), + [anon_sym_and_eq] = ACTIONS(7757), + [anon_sym_or_eq] = ACTIONS(7757), + [anon_sym_xor_eq] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7755), + [anon_sym_and] = ACTIONS(7755), + [anon_sym_bitor] = ACTIONS(7757), + [anon_sym_xor] = ACTIONS(7755), + [anon_sym_bitand] = ACTIONS(7757), + [anon_sym_not_eq] = ACTIONS(7757), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7757), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7757), + [anon_sym_override] = ACTIONS(7757), + [anon_sym_GT2] = ACTIONS(7757), + [anon_sym_requires] = ACTIONS(7757), + }, + [STATE(2513)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7771), + [anon_sym_COMMA] = ACTIONS(7771), + [anon_sym_LPAREN2] = ACTIONS(7771), + [anon_sym_DASH] = ACTIONS(7769), + [anon_sym_PLUS] = ACTIONS(7769), + [anon_sym_STAR] = ACTIONS(7769), + [anon_sym_SLASH] = ACTIONS(7769), + [anon_sym_PERCENT] = ACTIONS(7769), + [anon_sym_PIPE_PIPE] = ACTIONS(7771), + [anon_sym_AMP_AMP] = ACTIONS(7771), + [anon_sym_PIPE] = ACTIONS(7769), + [anon_sym_CARET] = ACTIONS(7769), + [anon_sym_AMP] = ACTIONS(7769), + [anon_sym_EQ_EQ] = ACTIONS(7771), + [anon_sym_BANG_EQ] = ACTIONS(7771), + [anon_sym_GT] = ACTIONS(7769), + [anon_sym_GT_EQ] = ACTIONS(7769), + [anon_sym_LT_EQ] = ACTIONS(7769), + [anon_sym_LT] = ACTIONS(7769), + [anon_sym_LT_LT] = ACTIONS(7769), + [anon_sym_GT_GT] = ACTIONS(7769), + [anon_sym___extension__] = ACTIONS(7771), + [anon_sym___attribute__] = ACTIONS(7771), + [anon_sym___attribute] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7771), + [anon_sym_signed] = ACTIONS(8372), + [anon_sym_unsigned] = ACTIONS(8372), + [anon_sym_long] = ACTIONS(8372), + [anon_sym_short] = ACTIONS(8372), + [anon_sym_LBRACK] = ACTIONS(7771), + [anon_sym_EQ] = ACTIONS(7769), + [anon_sym_const] = ACTIONS(7769), + [anon_sym_constexpr] = ACTIONS(7771), + [anon_sym_volatile] = ACTIONS(7771), + [anon_sym_restrict] = ACTIONS(7771), + [anon_sym___restrict__] = ACTIONS(7771), + [anon_sym__Atomic] = ACTIONS(7771), + [anon_sym__Noreturn] = ACTIONS(7771), + [anon_sym_noreturn] = ACTIONS(7771), + [anon_sym__Nonnull] = ACTIONS(7771), + [anon_sym_mutable] = ACTIONS(7771), + [anon_sym_constinit] = ACTIONS(7771), + [anon_sym_consteval] = ACTIONS(7771), + [anon_sym_alignas] = ACTIONS(7771), + [anon_sym__Alignas] = ACTIONS(7771), + [anon_sym_QMARK] = ACTIONS(7771), + [anon_sym_STAR_EQ] = ACTIONS(7771), + [anon_sym_SLASH_EQ] = ACTIONS(7771), + [anon_sym_PERCENT_EQ] = ACTIONS(7771), + [anon_sym_PLUS_EQ] = ACTIONS(7771), + [anon_sym_DASH_EQ] = ACTIONS(7771), + [anon_sym_LT_LT_EQ] = ACTIONS(7771), + [anon_sym_GT_GT_EQ] = ACTIONS(7769), + [anon_sym_AMP_EQ] = ACTIONS(7771), + [anon_sym_CARET_EQ] = ACTIONS(7771), + [anon_sym_PIPE_EQ] = ACTIONS(7771), + [anon_sym_and_eq] = ACTIONS(7771), + [anon_sym_or_eq] = ACTIONS(7771), + [anon_sym_xor_eq] = ACTIONS(7771), + [anon_sym_LT_EQ_GT] = ACTIONS(7771), + [anon_sym_or] = ACTIONS(7769), + [anon_sym_and] = ACTIONS(7769), + [anon_sym_bitor] = ACTIONS(7771), + [anon_sym_xor] = ACTIONS(7769), + [anon_sym_bitand] = ACTIONS(7771), + [anon_sym_not_eq] = ACTIONS(7771), + [anon_sym_DASH_DASH] = ACTIONS(7771), + [anon_sym_PLUS_PLUS] = ACTIONS(7771), + [anon_sym_DOT] = ACTIONS(7769), + [anon_sym_DOT_STAR] = ACTIONS(7771), + [anon_sym_DASH_GT] = ACTIONS(7771), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_GT2] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + }, + [STATE(2514)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7562), + [anon_sym_COMMA] = ACTIONS(7562), + [anon_sym_LPAREN2] = ACTIONS(7562), + [anon_sym_DASH] = ACTIONS(7560), + [anon_sym_PLUS] = ACTIONS(7560), + [anon_sym_STAR] = ACTIONS(7560), + [anon_sym_SLASH] = ACTIONS(7560), + [anon_sym_PERCENT] = ACTIONS(7560), + [anon_sym_PIPE_PIPE] = ACTIONS(7562), + [anon_sym_AMP_AMP] = ACTIONS(7562), + [anon_sym_PIPE] = ACTIONS(7560), + [anon_sym_CARET] = ACTIONS(7560), + [anon_sym_AMP] = ACTIONS(7560), + [anon_sym_EQ_EQ] = ACTIONS(7562), + [anon_sym_BANG_EQ] = ACTIONS(7562), + [anon_sym_GT] = ACTIONS(7560), + [anon_sym_GT_EQ] = ACTIONS(7560), + [anon_sym_LT_EQ] = ACTIONS(7560), + [anon_sym_LT] = ACTIONS(7560), + [anon_sym_LT_LT] = ACTIONS(7560), + [anon_sym_GT_GT] = ACTIONS(7560), + [anon_sym___extension__] = ACTIONS(7562), + [anon_sym___attribute__] = ACTIONS(7562), + [anon_sym___attribute] = ACTIONS(7560), + [anon_sym_LBRACE] = ACTIONS(7562), + [anon_sym_signed] = ACTIONS(8332), + [anon_sym_unsigned] = ACTIONS(8332), + [anon_sym_long] = ACTIONS(8332), + [anon_sym_short] = ACTIONS(8332), + [anon_sym_LBRACK] = ACTIONS(7562), + [anon_sym_EQ] = ACTIONS(7560), + [anon_sym_const] = ACTIONS(7560), + [anon_sym_constexpr] = ACTIONS(7562), + [anon_sym_volatile] = ACTIONS(7562), + [anon_sym_restrict] = ACTIONS(7562), + [anon_sym___restrict__] = ACTIONS(7562), + [anon_sym__Atomic] = ACTIONS(7562), + [anon_sym__Noreturn] = ACTIONS(7562), + [anon_sym_noreturn] = ACTIONS(7562), + [anon_sym__Nonnull] = ACTIONS(7562), + [anon_sym_mutable] = ACTIONS(7562), + [anon_sym_constinit] = ACTIONS(7562), + [anon_sym_consteval] = ACTIONS(7562), + [anon_sym_alignas] = ACTIONS(7562), + [anon_sym__Alignas] = ACTIONS(7562), + [anon_sym_QMARK] = ACTIONS(7562), + [anon_sym_STAR_EQ] = ACTIONS(7562), + [anon_sym_SLASH_EQ] = ACTIONS(7562), + [anon_sym_PERCENT_EQ] = ACTIONS(7562), + [anon_sym_PLUS_EQ] = ACTIONS(7562), + [anon_sym_DASH_EQ] = ACTIONS(7562), + [anon_sym_LT_LT_EQ] = ACTIONS(7562), + [anon_sym_GT_GT_EQ] = ACTIONS(7560), + [anon_sym_AMP_EQ] = ACTIONS(7562), + [anon_sym_CARET_EQ] = ACTIONS(7562), + [anon_sym_PIPE_EQ] = ACTIONS(7562), + [anon_sym_and_eq] = ACTIONS(7562), + [anon_sym_or_eq] = ACTIONS(7562), + [anon_sym_xor_eq] = ACTIONS(7562), + [anon_sym_LT_EQ_GT] = ACTIONS(7562), + [anon_sym_or] = ACTIONS(7560), + [anon_sym_and] = ACTIONS(7560), + [anon_sym_bitor] = ACTIONS(7562), + [anon_sym_xor] = ACTIONS(7560), + [anon_sym_bitand] = ACTIONS(7562), + [anon_sym_not_eq] = ACTIONS(7562), + [anon_sym_DASH_DASH] = ACTIONS(7562), + [anon_sym_PLUS_PLUS] = ACTIONS(7562), + [anon_sym_DOT] = ACTIONS(7560), + [anon_sym_DOT_STAR] = ACTIONS(7562), + [anon_sym_DASH_GT] = ACTIONS(7562), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7562), + [anon_sym_override] = ACTIONS(7562), + [anon_sym_GT2] = ACTIONS(7562), + [anon_sym_requires] = ACTIONS(7562), + }, + [STATE(2515)] = { + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym_ref_qualifier] = STATE(2564), + [sym__function_exception_specification] = STATE(3072), + [sym__function_attributes_end] = STATE(4390), + [sym__function_postfix] = STATE(5251), + [sym_trailing_return_type] = STATE(4491), + [sym_noexcept] = STATE(3072), + [sym_throw_specifier] = STATE(3072), + [sym_requires_clause] = STATE(5251), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(8259), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(8262), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_RBRACK] = ACTIONS(7874), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6717), + [anon_sym_override] = ACTIONS(6717), + [anon_sym_noexcept] = ACTIONS(6719), + [anon_sym_throw] = ACTIONS(6721), + [anon_sym_requires] = ACTIONS(6723), + }, + [STATE(2516)] = { + [sym__abstract_declarator] = STATE(5522), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1973), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7349), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7351), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7353), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(6843), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_and_eq] = ACTIONS(6843), + [anon_sym_or_eq] = ACTIONS(6843), + [anon_sym_xor_eq] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + }, + [STATE(2517)] = { + [sym__abstract_declarator] = STATE(5457), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1973), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(7349), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(7351), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(7353), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), [anon_sym_GT_EQ] = ACTIONS(7341), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7144), - [anon_sym_LBRACK] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7154), - [anon_sym_constexpr] = ACTIONS(7144), - [anon_sym_volatile] = ACTIONS(7144), - [anon_sym_restrict] = ACTIONS(7144), - [anon_sym___restrict__] = ACTIONS(7144), - [anon_sym__Atomic] = ACTIONS(7144), - [anon_sym__Noreturn] = ACTIONS(7144), - [anon_sym_noreturn] = ACTIONS(7144), - [anon_sym__Nonnull] = ACTIONS(7144), - [anon_sym_mutable] = ACTIONS(7144), - [anon_sym_constinit] = ACTIONS(7144), - [anon_sym_consteval] = ACTIONS(7144), - [anon_sym_alignas] = ACTIONS(7156), - [anon_sym__Alignas] = ACTIONS(7156), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7341), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), [anon_sym_GT_GT_EQ] = ACTIONS(7341), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_and_eq] = ACTIONS(7341), + [anon_sym_or_eq] = ACTIONS(7341), + [anon_sym_xor_eq] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7343), }, - [STATE(2527)] = { - [sym__abstract_declarator] = STATE(5422), - [sym_abstract_parenthesized_declarator] = STATE(5063), - [sym_abstract_pointer_declarator] = STATE(5063), - [sym_abstract_function_declarator] = STATE(5063), - [sym_abstract_array_declarator] = STATE(5063), - [sym_type_qualifier] = STATE(2511), - [sym_alignas_qualifier] = STATE(2652), - [sym_parameter_list] = STATE(1978), - [sym_abstract_reference_declarator] = STATE(5063), - [sym__function_declarator_seq] = STATE(5065), - [aux_sym__type_definition_type_repeat1] = STATE(2511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7112), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7363), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7365), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7367), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7120), - [anon_sym_LBRACK] = ACTIONS(7128), - [anon_sym_RBRACK] = ACTIONS(7343), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(6833), - [anon_sym_constexpr] = ACTIONS(7120), - [anon_sym_volatile] = ACTIONS(7120), - [anon_sym_restrict] = ACTIONS(7120), - [anon_sym___restrict__] = ACTIONS(7120), - [anon_sym__Atomic] = ACTIONS(7120), - [anon_sym__Noreturn] = ACTIONS(7120), - [anon_sym_noreturn] = ACTIONS(7120), - [anon_sym__Nonnull] = ACTIONS(7120), - [anon_sym_mutable] = ACTIONS(7120), - [anon_sym_constinit] = ACTIONS(7120), - [anon_sym_consteval] = ACTIONS(7120), - [anon_sym_alignas] = ACTIONS(7130), - [anon_sym__Alignas] = ACTIONS(7130), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_and_eq] = ACTIONS(7343), - [anon_sym_or_eq] = ACTIONS(7343), - [anon_sym_xor_eq] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), + [STATE(2518)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7584), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7584), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7584), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7584), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7584), + [anon_sym_GT_GT] = ACTIONS(7584), + [anon_sym___extension__] = ACTIONS(7586), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_signed] = ACTIONS(8374), + [anon_sym_unsigned] = ACTIONS(8374), + [anon_sym_long] = ACTIONS(8374), + [anon_sym_short] = ACTIONS(8374), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7586), + [anon_sym_volatile] = ACTIONS(7586), + [anon_sym_restrict] = ACTIONS(7586), + [anon_sym___restrict__] = ACTIONS(7586), + [anon_sym__Atomic] = ACTIONS(7586), + [anon_sym__Noreturn] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7586), + [anon_sym__Nonnull] = ACTIONS(7586), + [anon_sym_mutable] = ACTIONS(7586), + [anon_sym_constinit] = ACTIONS(7586), + [anon_sym_consteval] = ACTIONS(7586), + [anon_sym_alignas] = ACTIONS(7586), + [anon_sym__Alignas] = ACTIONS(7586), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_STAR_EQ] = ACTIONS(7586), + [anon_sym_SLASH_EQ] = ACTIONS(7586), + [anon_sym_PERCENT_EQ] = ACTIONS(7586), + [anon_sym_PLUS_EQ] = ACTIONS(7586), + [anon_sym_DASH_EQ] = ACTIONS(7586), + [anon_sym_LT_LT_EQ] = ACTIONS(7586), + [anon_sym_GT_GT_EQ] = ACTIONS(7584), + [anon_sym_AMP_EQ] = ACTIONS(7586), + [anon_sym_CARET_EQ] = ACTIONS(7586), + [anon_sym_PIPE_EQ] = ACTIONS(7586), + [anon_sym_and_eq] = ACTIONS(7586), + [anon_sym_or_eq] = ACTIONS(7586), + [anon_sym_xor_eq] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7584), + [anon_sym_and] = ACTIONS(7584), + [anon_sym_bitor] = ACTIONS(7586), + [anon_sym_xor] = ACTIONS(7584), + [anon_sym_bitand] = ACTIONS(7586), + [anon_sym_not_eq] = ACTIONS(7586), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7586), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7586), + [anon_sym_override] = ACTIONS(7586), + [anon_sym_GT2] = ACTIONS(7586), + [anon_sym_requires] = ACTIONS(7586), + }, + [STATE(2519)] = { + [sym_template_argument_list] = STATE(3755), + [aux_sym_sized_type_specifier_repeat1] = STATE(2604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [anon_sym_RPAREN] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7357), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7357), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7357), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7357), + [anon_sym_GT_GT] = ACTIONS(7357), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6956), + [anon_sym_unsigned] = ACTIONS(6956), + [anon_sym_long] = ACTIONS(6956), + [anon_sym_short] = ACTIONS(6956), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_EQ] = ACTIONS(7357), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_STAR_EQ] = ACTIONS(7359), + [anon_sym_SLASH_EQ] = ACTIONS(7359), + [anon_sym_PERCENT_EQ] = ACTIONS(7359), + [anon_sym_PLUS_EQ] = ACTIONS(7359), + [anon_sym_DASH_EQ] = ACTIONS(7359), + [anon_sym_LT_LT_EQ] = ACTIONS(7359), + [anon_sym_GT_GT_EQ] = ACTIONS(7359), + [anon_sym_AMP_EQ] = ACTIONS(7359), + [anon_sym_CARET_EQ] = ACTIONS(7359), + [anon_sym_PIPE_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7357), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_DASH_GT_STAR] = ACTIONS(7359), + }, + [STATE(2520)] = { + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [aux_sym_sized_type_specifier_repeat1] = STATE(2612), + [sym_identifier] = ACTIONS(8043), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7195), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7195), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7195), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7195), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(7309), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(8048), + [anon_sym_unsigned] = ACTIONS(8048), + [anon_sym_long] = ACTIONS(8048), + [anon_sym_short] = ACTIONS(8048), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_EQ] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7309), + [anon_sym_volatile] = ACTIONS(7309), + [anon_sym_restrict] = ACTIONS(7309), + [anon_sym___restrict__] = ACTIONS(7309), + [anon_sym__Atomic] = ACTIONS(7309), + [anon_sym__Noreturn] = ACTIONS(7309), + [anon_sym_noreturn] = ACTIONS(7309), + [anon_sym__Nonnull] = ACTIONS(7309), + [anon_sym_mutable] = ACTIONS(7309), + [anon_sym_constinit] = ACTIONS(7309), + [anon_sym_consteval] = ACTIONS(7309), + [anon_sym_alignas] = ACTIONS(8306), + [anon_sym__Alignas] = ACTIONS(8306), + [sym_primitive_type] = ACTIONS(8053), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_STAR_EQ] = ACTIONS(7193), + [anon_sym_SLASH_EQ] = ACTIONS(7193), + [anon_sym_PERCENT_EQ] = ACTIONS(7193), + [anon_sym_PLUS_EQ] = ACTIONS(7193), + [anon_sym_DASH_EQ] = ACTIONS(7193), + [anon_sym_LT_LT_EQ] = ACTIONS(7193), + [anon_sym_GT_GT_EQ] = ACTIONS(7193), + [anon_sym_AMP_EQ] = ACTIONS(7193), + [anon_sym_CARET_EQ] = ACTIONS(7193), + [anon_sym_PIPE_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7195), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7193), + }, + [STATE(2521)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7620), + [anon_sym_COMMA] = ACTIONS(7620), + [anon_sym_LPAREN2] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7618), + [anon_sym_STAR] = ACTIONS(7618), + [anon_sym_SLASH] = ACTIONS(7618), + [anon_sym_PERCENT] = ACTIONS(7618), + [anon_sym_PIPE_PIPE] = ACTIONS(7620), + [anon_sym_AMP_AMP] = ACTIONS(7620), + [anon_sym_PIPE] = ACTIONS(7618), + [anon_sym_CARET] = ACTIONS(7618), + [anon_sym_AMP] = ACTIONS(7618), + [anon_sym_EQ_EQ] = ACTIONS(7620), + [anon_sym_BANG_EQ] = ACTIONS(7620), + [anon_sym_GT] = ACTIONS(7618), + [anon_sym_GT_EQ] = ACTIONS(7618), + [anon_sym_LT_EQ] = ACTIONS(7618), + [anon_sym_LT] = ACTIONS(7618), + [anon_sym_LT_LT] = ACTIONS(7618), + [anon_sym_GT_GT] = ACTIONS(7618), + [anon_sym___extension__] = ACTIONS(7620), + [anon_sym___attribute__] = ACTIONS(7620), + [anon_sym___attribute] = ACTIONS(7618), + [anon_sym_LBRACE] = ACTIONS(7620), + [anon_sym_signed] = ACTIONS(8332), + [anon_sym_unsigned] = ACTIONS(8332), + [anon_sym_long] = ACTIONS(8332), + [anon_sym_short] = ACTIONS(8332), + [anon_sym_LBRACK] = ACTIONS(7620), + [anon_sym_EQ] = ACTIONS(7618), + [anon_sym_const] = ACTIONS(7618), + [anon_sym_constexpr] = ACTIONS(7620), + [anon_sym_volatile] = ACTIONS(7620), + [anon_sym_restrict] = ACTIONS(7620), + [anon_sym___restrict__] = ACTIONS(7620), + [anon_sym__Atomic] = ACTIONS(7620), + [anon_sym__Noreturn] = ACTIONS(7620), + [anon_sym_noreturn] = ACTIONS(7620), + [anon_sym__Nonnull] = ACTIONS(7620), + [anon_sym_mutable] = ACTIONS(7620), + [anon_sym_constinit] = ACTIONS(7620), + [anon_sym_consteval] = ACTIONS(7620), + [anon_sym_alignas] = ACTIONS(7620), + [anon_sym__Alignas] = ACTIONS(7620), + [anon_sym_QMARK] = ACTIONS(7620), + [anon_sym_STAR_EQ] = ACTIONS(7620), + [anon_sym_SLASH_EQ] = ACTIONS(7620), + [anon_sym_PERCENT_EQ] = ACTIONS(7620), + [anon_sym_PLUS_EQ] = ACTIONS(7620), + [anon_sym_DASH_EQ] = ACTIONS(7620), + [anon_sym_LT_LT_EQ] = ACTIONS(7620), + [anon_sym_GT_GT_EQ] = ACTIONS(7618), + [anon_sym_AMP_EQ] = ACTIONS(7620), + [anon_sym_CARET_EQ] = ACTIONS(7620), + [anon_sym_PIPE_EQ] = ACTIONS(7620), + [anon_sym_and_eq] = ACTIONS(7620), + [anon_sym_or_eq] = ACTIONS(7620), + [anon_sym_xor_eq] = ACTIONS(7620), + [anon_sym_LT_EQ_GT] = ACTIONS(7620), + [anon_sym_or] = ACTIONS(7618), + [anon_sym_and] = ACTIONS(7618), + [anon_sym_bitor] = ACTIONS(7620), + [anon_sym_xor] = ACTIONS(7618), + [anon_sym_bitand] = ACTIONS(7620), + [anon_sym_not_eq] = ACTIONS(7620), + [anon_sym_DASH_DASH] = ACTIONS(7620), + [anon_sym_PLUS_PLUS] = ACTIONS(7620), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_DOT_STAR] = ACTIONS(7620), + [anon_sym_DASH_GT] = ACTIONS(7620), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7620), + [anon_sym_override] = ACTIONS(7620), + [anon_sym_GT2] = ACTIONS(7620), + [anon_sym_requires] = ACTIONS(7620), + }, + [STATE(2522)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7624), + [anon_sym_COMMA] = ACTIONS(7624), + [anon_sym_LPAREN2] = ACTIONS(7624), + [anon_sym_DASH] = ACTIONS(7622), + [anon_sym_PLUS] = ACTIONS(7622), + [anon_sym_STAR] = ACTIONS(7622), + [anon_sym_SLASH] = ACTIONS(7622), + [anon_sym_PERCENT] = ACTIONS(7622), + [anon_sym_PIPE_PIPE] = ACTIONS(7624), + [anon_sym_AMP_AMP] = ACTIONS(7624), + [anon_sym_PIPE] = ACTIONS(7622), + [anon_sym_CARET] = ACTIONS(7622), + [anon_sym_AMP] = ACTIONS(7622), + [anon_sym_EQ_EQ] = ACTIONS(7624), + [anon_sym_BANG_EQ] = ACTIONS(7624), + [anon_sym_GT] = ACTIONS(7622), + [anon_sym_GT_EQ] = ACTIONS(7622), + [anon_sym_LT_EQ] = ACTIONS(7622), + [anon_sym_LT] = ACTIONS(7622), + [anon_sym_LT_LT] = ACTIONS(7622), + [anon_sym_GT_GT] = ACTIONS(7622), + [anon_sym___extension__] = ACTIONS(7624), + [anon_sym___attribute__] = ACTIONS(7624), + [anon_sym___attribute] = ACTIONS(7622), + [anon_sym_LBRACE] = ACTIONS(7624), + [anon_sym_signed] = ACTIONS(8332), + [anon_sym_unsigned] = ACTIONS(8332), + [anon_sym_long] = ACTIONS(8332), + [anon_sym_short] = ACTIONS(8332), + [anon_sym_LBRACK] = ACTIONS(7624), + [anon_sym_EQ] = ACTIONS(7622), + [anon_sym_const] = ACTIONS(7622), + [anon_sym_constexpr] = ACTIONS(7624), + [anon_sym_volatile] = ACTIONS(7624), + [anon_sym_restrict] = ACTIONS(7624), + [anon_sym___restrict__] = ACTIONS(7624), + [anon_sym__Atomic] = ACTIONS(7624), + [anon_sym__Noreturn] = ACTIONS(7624), + [anon_sym_noreturn] = ACTIONS(7624), + [anon_sym__Nonnull] = ACTIONS(7624), + [anon_sym_mutable] = ACTIONS(7624), + [anon_sym_constinit] = ACTIONS(7624), + [anon_sym_consteval] = ACTIONS(7624), + [anon_sym_alignas] = ACTIONS(7624), + [anon_sym__Alignas] = ACTIONS(7624), + [anon_sym_QMARK] = ACTIONS(7624), + [anon_sym_STAR_EQ] = ACTIONS(7624), + [anon_sym_SLASH_EQ] = ACTIONS(7624), + [anon_sym_PERCENT_EQ] = ACTIONS(7624), + [anon_sym_PLUS_EQ] = ACTIONS(7624), + [anon_sym_DASH_EQ] = ACTIONS(7624), + [anon_sym_LT_LT_EQ] = ACTIONS(7624), + [anon_sym_GT_GT_EQ] = ACTIONS(7622), + [anon_sym_AMP_EQ] = ACTIONS(7624), + [anon_sym_CARET_EQ] = ACTIONS(7624), + [anon_sym_PIPE_EQ] = ACTIONS(7624), + [anon_sym_and_eq] = ACTIONS(7624), + [anon_sym_or_eq] = ACTIONS(7624), + [anon_sym_xor_eq] = ACTIONS(7624), + [anon_sym_LT_EQ_GT] = ACTIONS(7624), + [anon_sym_or] = ACTIONS(7622), + [anon_sym_and] = ACTIONS(7622), + [anon_sym_bitor] = ACTIONS(7624), + [anon_sym_xor] = ACTIONS(7622), + [anon_sym_bitand] = ACTIONS(7624), + [anon_sym_not_eq] = ACTIONS(7624), + [anon_sym_DASH_DASH] = ACTIONS(7624), + [anon_sym_PLUS_PLUS] = ACTIONS(7624), + [anon_sym_DOT] = ACTIONS(7622), + [anon_sym_DOT_STAR] = ACTIONS(7624), + [anon_sym_DASH_GT] = ACTIONS(7624), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7624), + [anon_sym_override] = ACTIONS(7624), + [anon_sym_GT2] = ACTIONS(7624), + [anon_sym_requires] = ACTIONS(7624), + }, + [STATE(2523)] = { + [sym__abstract_declarator] = STATE(5324), + [sym_abstract_parenthesized_declarator] = STATE(5134), + [sym_abstract_pointer_declarator] = STATE(5134), + [sym_abstract_function_declarator] = STATE(5134), + [sym_abstract_array_declarator] = STATE(5134), + [sym_type_qualifier] = STATE(2392), + [sym_alignas_qualifier] = STATE(2637), + [sym_parameter_list] = STATE(1973), + [sym_abstract_reference_declarator] = STATE(5134), + [sym__function_declarator_seq] = STATE(5138), + [aux_sym__type_definition_type_repeat1] = STATE(2392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7093), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7349), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7351), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7353), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7101), + [anon_sym_LBRACK] = ACTIONS(7109), + [anon_sym_RBRACK] = ACTIONS(7345), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(6851), + [anon_sym_constexpr] = ACTIONS(7101), + [anon_sym_volatile] = ACTIONS(7101), + [anon_sym_restrict] = ACTIONS(7101), + [anon_sym___restrict__] = ACTIONS(7101), + [anon_sym__Atomic] = ACTIONS(7101), + [anon_sym__Noreturn] = ACTIONS(7101), + [anon_sym_noreturn] = ACTIONS(7101), + [anon_sym__Nonnull] = ACTIONS(7101), + [anon_sym_mutable] = ACTIONS(7101), + [anon_sym_constinit] = ACTIONS(7101), + [anon_sym_consteval] = ACTIONS(7101), + [anon_sym_alignas] = ACTIONS(7111), + [anon_sym__Alignas] = ACTIONS(7111), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_and_eq] = ACTIONS(7345), + [anon_sym_or_eq] = ACTIONS(7345), + [anon_sym_xor_eq] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + }, + [STATE(2524)] = { + [sym_string_literal] = STATE(2577), + [sym_template_argument_list] = STATE(3708), + [sym_raw_string_literal] = STATE(2577), + [sym_identifier] = ACTIONS(5619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [aux_sym_preproc_if_token2] = ACTIONS(5611), + [aux_sym_preproc_else_token1] = ACTIONS(5611), + [aux_sym_preproc_elif_token1] = ACTIONS(5619), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5611), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(8376), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5611), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5619), + [anon_sym_or_eq] = ACTIONS(5619), + [anon_sym_xor_eq] = ACTIONS(5619), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_COLON_RBRACK] = ACTIONS(5611), + }, + [STATE(2525)] = { + [sym_identifier] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3126), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3126), + [anon_sym_not_eq] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [anon_sym_DASH_GT_STAR] = ACTIONS(3116), + }, + [STATE(2526)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(6656), + [anon_sym_LPAREN2] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6649), + [anon_sym_PLUS] = ACTIONS(6649), + [anon_sym_STAR] = ACTIONS(6649), + [anon_sym_SLASH] = ACTIONS(6649), + [anon_sym_PERCENT] = ACTIONS(6649), + [anon_sym_PIPE_PIPE] = ACTIONS(6656), + [anon_sym_AMP_AMP] = ACTIONS(6656), + [anon_sym_PIPE] = ACTIONS(6649), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6649), + [anon_sym_EQ_EQ] = ACTIONS(6656), + [anon_sym_BANG_EQ] = ACTIONS(6656), + [anon_sym_GT] = ACTIONS(6649), + [anon_sym_GT_EQ] = ACTIONS(6656), + [anon_sym_LT_EQ] = ACTIONS(6649), + [anon_sym_LT] = ACTIONS(6649), + [anon_sym_LT_LT] = ACTIONS(6649), + [anon_sym_GT_GT] = ACTIONS(6649), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym___attribute__] = ACTIONS(6656), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6656), + [anon_sym_RBRACK] = ACTIONS(6656), + [anon_sym_EQ] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6656), + [anon_sym_STAR_EQ] = ACTIONS(6656), + [anon_sym_SLASH_EQ] = ACTIONS(6656), + [anon_sym_PERCENT_EQ] = ACTIONS(6656), + [anon_sym_PLUS_EQ] = ACTIONS(6656), + [anon_sym_DASH_EQ] = ACTIONS(6656), + [anon_sym_LT_LT_EQ] = ACTIONS(6656), + [anon_sym_GT_GT_EQ] = ACTIONS(6656), + [anon_sym_AMP_EQ] = ACTIONS(6656), + [anon_sym_CARET_EQ] = ACTIONS(6656), + [anon_sym_PIPE_EQ] = ACTIONS(6656), + [anon_sym_and_eq] = ACTIONS(6656), + [anon_sym_or_eq] = ACTIONS(6656), + [anon_sym_xor_eq] = ACTIONS(6656), + [anon_sym_LT_EQ_GT] = ACTIONS(6656), + [anon_sym_or] = ACTIONS(6649), + [anon_sym_and] = ACTIONS(6649), + [anon_sym_bitor] = ACTIONS(6656), + [anon_sym_xor] = ACTIONS(6649), + [anon_sym_bitand] = ACTIONS(6656), + [anon_sym_not_eq] = ACTIONS(6656), + [anon_sym_DASH_DASH] = ACTIONS(6656), + [anon_sym_PLUS_PLUS] = ACTIONS(6656), + [anon_sym_DOT] = ACTIONS(6649), + [anon_sym_DOT_STAR] = ACTIONS(6656), + [anon_sym_DASH_GT] = ACTIONS(6656), [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_final] = ACTIONS(6656), + [anon_sym_override] = ACTIONS(6656), + [anon_sym_requires] = ACTIONS(6656), + }, + [STATE(2527)] = { + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym__function_exception_specification] = STATE(2951), + [sym__function_attributes_end] = STATE(4324), + [sym__function_postfix] = STATE(5208), + [sym_trailing_return_type] = STATE(4426), + [sym_noexcept] = STATE(2951), + [sym_throw_specifier] = STATE(2951), + [sym_requires_clause] = STATE(5208), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7876), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7876), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8250), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8253), + [anon_sym_override] = ACTIONS(8253), + [anon_sym_GT2] = ACTIONS(7874), + [anon_sym_noexcept] = ACTIONS(6690), + [anon_sym_throw] = ACTIONS(6692), + [anon_sym_requires] = ACTIONS(8256), }, [STATE(2528)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2595), - [sym__abstract_declarator] = STATE(6311), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3524), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2275), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3524), - [aux_sym_pointer_declarator_repeat1] = STATE(2595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8385), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8387), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8389), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(6823), - [anon_sym___attribute] = ACTIONS(6821), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), - [sym_ms_signed_ptr_modifier] = ACTIONS(8119), - [anon_sym__unaligned] = ACTIONS(8121), - [anon_sym___unaligned] = ACTIONS(8121), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3933), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3061), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7887), + [anon_sym_override] = ACTIONS(7887), + [anon_sym_requires] = ACTIONS(7890), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), }, [STATE(2529)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3904), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3071), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7849), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_requires] = ACTIONS(6563), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym__function_exception_specification] = STATE(2952), + [sym__function_attributes_end] = STATE(4325), + [sym__function_postfix] = STATE(5223), + [sym_trailing_return_type] = STATE(4430), + [sym_noexcept] = STATE(2952), + [sym_throw_specifier] = STATE(2952), + [sym_requires_clause] = STATE(5223), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7972), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7972), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8379), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8382), + [anon_sym_override] = ACTIONS(8382), + [anon_sym_GT2] = ACTIONS(7970), + [anon_sym_noexcept] = ACTIONS(6690), + [anon_sym_throw] = ACTIONS(6692), + [anon_sym_requires] = ACTIONS(8385), }, [STATE(2530)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6624), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6624), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6624), - [anon_sym_GT_GT] = ACTIONS(6624), - [anon_sym___extension__] = ACTIONS(6626), - [anon_sym___attribute__] = ACTIONS(6626), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6626), - [anon_sym_RBRACK] = ACTIONS(6626), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6626), - [anon_sym_volatile] = ACTIONS(6626), - [anon_sym_restrict] = ACTIONS(6626), - [anon_sym___restrict__] = ACTIONS(6626), - [anon_sym__Atomic] = ACTIONS(6626), - [anon_sym__Noreturn] = ACTIONS(6626), - [anon_sym_noreturn] = ACTIONS(6626), - [anon_sym__Nonnull] = ACTIONS(6626), - [anon_sym_mutable] = ACTIONS(6626), - [anon_sym_constinit] = ACTIONS(6626), - [anon_sym_consteval] = ACTIONS(6626), - [anon_sym_alignas] = ACTIONS(6626), - [anon_sym__Alignas] = ACTIONS(6626), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_STAR_EQ] = ACTIONS(6626), - [anon_sym_SLASH_EQ] = ACTIONS(6626), - [anon_sym_PERCENT_EQ] = ACTIONS(6626), - [anon_sym_PLUS_EQ] = ACTIONS(6626), - [anon_sym_DASH_EQ] = ACTIONS(6626), - [anon_sym_LT_LT_EQ] = ACTIONS(6626), - [anon_sym_GT_GT_EQ] = ACTIONS(6626), - [anon_sym_AMP_EQ] = ACTIONS(6626), - [anon_sym_CARET_EQ] = ACTIONS(6626), - [anon_sym_PIPE_EQ] = ACTIONS(6626), - [anon_sym_and_eq] = ACTIONS(6626), - [anon_sym_or_eq] = ACTIONS(6626), - [anon_sym_xor_eq] = ACTIONS(6626), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6626), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6626), - [anon_sym_not_eq] = ACTIONS(6626), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6626), - [anon_sym_decltype] = ACTIONS(6626), - [anon_sym_final] = ACTIONS(6626), - [anon_sym_override] = ACTIONS(6626), - [anon_sym_requires] = ACTIONS(6626), + [sym_template_argument_list] = STATE(2434), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5637), + [anon_sym_RPAREN] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7379), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7379), + [anon_sym_PIPE_PIPE] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7379), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(5637), + [anon_sym_BANG_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(8011), + [anon_sym_LT_LT] = ACTIONS(7379), + [anon_sym_GT_GT] = ACTIONS(7379), + [anon_sym___extension__] = ACTIONS(5637), + [anon_sym___attribute__] = ACTIONS(5637), + [anon_sym___attribute] = ACTIONS(7379), + [anon_sym_COLON] = ACTIONS(7379), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_EQ] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [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), + [anon_sym_QMARK] = ACTIONS(5637), + [anon_sym_STAR_EQ] = ACTIONS(5637), + [anon_sym_SLASH_EQ] = ACTIONS(5637), + [anon_sym_PERCENT_EQ] = ACTIONS(5637), + [anon_sym_PLUS_EQ] = ACTIONS(5637), + [anon_sym_DASH_EQ] = ACTIONS(5637), + [anon_sym_LT_LT_EQ] = ACTIONS(5637), + [anon_sym_GT_GT_EQ] = ACTIONS(5637), + [anon_sym_AMP_EQ] = ACTIONS(5637), + [anon_sym_CARET_EQ] = ACTIONS(5637), + [anon_sym_PIPE_EQ] = ACTIONS(5637), + [anon_sym_and_eq] = ACTIONS(5637), + [anon_sym_or_eq] = ACTIONS(5637), + [anon_sym_xor_eq] = ACTIONS(5637), + [anon_sym_LT_EQ_GT] = ACTIONS(5637), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_bitor] = ACTIONS(5637), + [anon_sym_xor] = ACTIONS(7379), + [anon_sym_bitand] = ACTIONS(5637), + [anon_sym_not_eq] = ACTIONS(5637), + [anon_sym_DASH_DASH] = ACTIONS(5637), + [anon_sym_PLUS_PLUS] = ACTIONS(5637), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(5637), + [anon_sym_DASH_GT] = ACTIONS(7379), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5637), + [anon_sym_override] = ACTIONS(5637), + [anon_sym_requires] = ACTIONS(5637), + [anon_sym_DASH_GT_STAR] = ACTIONS(5637), }, [STATE(2531)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6628), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6628), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6628), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6628), - [anon_sym_GT_GT] = ACTIONS(6628), - [anon_sym___extension__] = ACTIONS(6630), - [anon_sym___attribute__] = ACTIONS(6630), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6630), - [anon_sym_RBRACK] = ACTIONS(6630), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6630), - [anon_sym_volatile] = ACTIONS(6630), - [anon_sym_restrict] = ACTIONS(6630), - [anon_sym___restrict__] = ACTIONS(6630), - [anon_sym__Atomic] = ACTIONS(6630), - [anon_sym__Noreturn] = ACTIONS(6630), - [anon_sym_noreturn] = ACTIONS(6630), - [anon_sym__Nonnull] = ACTIONS(6630), - [anon_sym_mutable] = ACTIONS(6630), - [anon_sym_constinit] = ACTIONS(6630), - [anon_sym_consteval] = ACTIONS(6630), - [anon_sym_alignas] = ACTIONS(6630), - [anon_sym__Alignas] = ACTIONS(6630), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_STAR_EQ] = ACTIONS(6630), - [anon_sym_SLASH_EQ] = ACTIONS(6630), - [anon_sym_PERCENT_EQ] = ACTIONS(6630), - [anon_sym_PLUS_EQ] = ACTIONS(6630), - [anon_sym_DASH_EQ] = ACTIONS(6630), - [anon_sym_LT_LT_EQ] = ACTIONS(6630), - [anon_sym_GT_GT_EQ] = ACTIONS(6630), - [anon_sym_AMP_EQ] = ACTIONS(6630), - [anon_sym_CARET_EQ] = ACTIONS(6630), - [anon_sym_PIPE_EQ] = ACTIONS(6630), - [anon_sym_and_eq] = ACTIONS(6630), - [anon_sym_or_eq] = ACTIONS(6630), - [anon_sym_xor_eq] = ACTIONS(6630), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6630), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6630), - [anon_sym_not_eq] = ACTIONS(6630), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6630), - [anon_sym_decltype] = ACTIONS(6630), - [anon_sym_final] = ACTIONS(6630), - [anon_sym_override] = ACTIONS(6630), - [anon_sym_requires] = ACTIONS(6630), + [aux_sym_sized_type_specifier_repeat1] = STATE(2362), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7402), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8096), + [anon_sym_unsigned] = ACTIONS(8096), + [anon_sym_long] = ACTIONS(8096), + [anon_sym_short] = ACTIONS(8096), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7402), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7399), }, [STATE(2532)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(3044), - [sym__function_attributes_end] = STATE(4231), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3071), - [sym_noexcept] = STATE(3044), - [sym_throw_specifier] = STATE(3044), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(8330), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8336), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(6563), + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym__function_exception_specification] = STATE(2954), + [sym__function_attributes_end] = STATE(4360), + [sym__function_postfix] = STATE(5251), + [sym_trailing_return_type] = STATE(4446), + [sym_noexcept] = STATE(2954), + [sym_throw_specifier] = STATE(2954), + [sym_requires_clause] = STATE(5251), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_RBRACK] = ACTIONS(7874), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8268), + [anon_sym_override] = ACTIONS(8268), + [anon_sym_noexcept] = ACTIONS(6719), + [anon_sym_throw] = ACTIONS(6721), + [anon_sym_requires] = ACTIONS(8271), }, [STATE(2533)] = { - [sym_template_argument_list] = STATE(2494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), - [anon_sym_COMMA] = ACTIONS(5657), - [anon_sym_RPAREN] = ACTIONS(5657), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_DASH] = ACTIONS(7371), - [anon_sym_PLUS] = ACTIONS(7371), - [anon_sym_STAR] = ACTIONS(7371), - [anon_sym_SLASH] = ACTIONS(7371), - [anon_sym_PERCENT] = ACTIONS(7371), - [anon_sym_PIPE_PIPE] = ACTIONS(5657), - [anon_sym_AMP_AMP] = ACTIONS(5657), - [anon_sym_PIPE] = ACTIONS(7371), - [anon_sym_CARET] = ACTIONS(7371), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_EQ_EQ] = ACTIONS(5657), - [anon_sym_BANG_EQ] = ACTIONS(5657), - [anon_sym_GT] = ACTIONS(7371), - [anon_sym_GT_EQ] = ACTIONS(5657), - [anon_sym_LT_EQ] = ACTIONS(7371), - [anon_sym_LT] = ACTIONS(7964), - [anon_sym_LT_LT] = ACTIONS(7371), - [anon_sym_GT_GT] = ACTIONS(7371), - [anon_sym___extension__] = ACTIONS(5657), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym___attribute] = ACTIONS(7371), - [anon_sym_COLON] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5657), - [anon_sym_EQ] = ACTIONS(7371), - [anon_sym_const] = ACTIONS(7371), - [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), - [anon_sym_QMARK] = ACTIONS(5657), - [anon_sym_STAR_EQ] = ACTIONS(5657), - [anon_sym_SLASH_EQ] = ACTIONS(5657), - [anon_sym_PERCENT_EQ] = ACTIONS(5657), - [anon_sym_PLUS_EQ] = ACTIONS(5657), - [anon_sym_DASH_EQ] = ACTIONS(5657), - [anon_sym_LT_LT_EQ] = ACTIONS(5657), - [anon_sym_GT_GT_EQ] = ACTIONS(5657), - [anon_sym_AMP_EQ] = ACTIONS(5657), - [anon_sym_CARET_EQ] = ACTIONS(5657), - [anon_sym_PIPE_EQ] = ACTIONS(5657), - [anon_sym_and_eq] = ACTIONS(5657), - [anon_sym_or_eq] = ACTIONS(5657), - [anon_sym_xor_eq] = ACTIONS(5657), - [anon_sym_LT_EQ_GT] = ACTIONS(5657), - [anon_sym_or] = ACTIONS(7371), - [anon_sym_and] = ACTIONS(7371), - [anon_sym_bitor] = ACTIONS(5657), - [anon_sym_xor] = ACTIONS(7371), - [anon_sym_bitand] = ACTIONS(5657), - [anon_sym_not_eq] = ACTIONS(5657), - [anon_sym_DASH_DASH] = ACTIONS(5657), - [anon_sym_PLUS_PLUS] = ACTIONS(5657), - [anon_sym_DOT] = ACTIONS(7371), - [anon_sym_DOT_STAR] = ACTIONS(5657), - [anon_sym_DASH_GT] = ACTIONS(7371), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5657), - [anon_sym_override] = ACTIONS(5657), - [anon_sym_requires] = ACTIONS(5657), - [anon_sym_DASH_GT_STAR] = ACTIONS(5657), + [sym_catch_clause] = STATE(2533), + [aux_sym_constructor_try_statement_repeat1] = STATE(2533), + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [aux_sym_preproc_else_token1] = ACTIONS(3159), + [aux_sym_preproc_elif_token1] = ACTIONS(3159), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym___attribute] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym__Nonnull] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym__Alignas] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_private] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_friend] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_protected] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_catch] = ACTIONS(8388), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, [STATE(2534)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(3061), - [sym__function_attributes_end] = STATE(4232), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3029), - [sym_noexcept] = STATE(3061), - [sym_throw_specifier] = STATE(3061), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(8391), - [anon_sym___attribute] = ACTIONS(8394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8397), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(6563), + [sym_catch_clause] = STATE(2533), + [aux_sym_constructor_try_statement_repeat1] = STATE(2533), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [aux_sym_preproc_else_token1] = ACTIONS(3176), + [aux_sym_preproc_elif_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym___attribute] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym__Nonnull] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym__Alignas] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_friend] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_catch] = ACTIONS(8391), + [anon_sym_LBRACK_COLON] = ACTIONS(3178), }, [STATE(2535)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym__function_exception_specification] = STATE(2981), - [sym__function_attributes_end] = STATE(4353), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(4468), - [sym_noexcept] = STATE(2981), - [sym_throw_specifier] = STATE(2981), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7789), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7789), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8318), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8321), - [anon_sym_override] = ACTIONS(8321), - [anon_sym_GT2] = ACTIONS(7791), - [anon_sym_noexcept] = ACTIONS(6696), - [anon_sym_throw] = ACTIONS(6698), - [anon_sym_requires] = ACTIONS(8324), + [sym_catch_clause] = STATE(2533), + [aux_sym_constructor_try_statement_repeat1] = STATE(2533), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [aux_sym_preproc_else_token1] = ACTIONS(3180), + [aux_sym_preproc_elif_token1] = ACTIONS(3180), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym___attribute] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym__Nonnull] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym__Alignas] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_private] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_friend] = ACTIONS(3180), + [anon_sym_public] = ACTIONS(3180), + [anon_sym_protected] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_catch] = ACTIONS(8391), + [anon_sym_LBRACK_COLON] = ACTIONS(3182), }, [STATE(2536)] = { - [sym_catch_clause] = STATE(2536), - [aux_sym_constructor_try_statement_repeat1] = STATE(2536), - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token2] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [aux_sym_preproc_else_token1] = ACTIONS(3171), - [aux_sym_preproc_elif_token1] = ACTIONS(3171), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym___attribute] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym__Nonnull] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym__Alignas] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_friend] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_catch] = ACTIONS(8400), - [anon_sym_LBRACK_COLON] = ACTIONS(3173), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3947), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3062), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(7972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7970), + [anon_sym_RBRACE] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7974), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7977), + [anon_sym_override] = ACTIONS(7977), + [anon_sym_requires] = ACTIONS(7980), + [anon_sym_COLON_RBRACK] = ACTIONS(7970), }, [STATE(2537)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3914), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3029), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(7968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), - [anon_sym_RBRACE] = ACTIONS(7966), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7970), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_requires] = ACTIONS(6563), - [anon_sym_COLON_RBRACK] = ACTIONS(7966), + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym__function_exception_specification] = STATE(3057), + [sym__function_attributes_end] = STATE(4320), + [sym__function_postfix] = STATE(5208), + [sym_trailing_return_type] = STATE(4464), + [sym_noexcept] = STATE(3057), + [sym_throw_specifier] = STATE(3057), + [sym_requires_clause] = STATE(5208), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7876), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7876), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8250), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6688), + [anon_sym_override] = ACTIONS(6688), + [anon_sym_GT2] = ACTIONS(7874), + [anon_sym_noexcept] = ACTIONS(6690), + [anon_sym_throw] = ACTIONS(6692), + [anon_sym_requires] = ACTIONS(6694), }, [STATE(2538)] = { - [sym_string_literal] = STATE(2538), - [sym_raw_string_literal] = STATE(2538), - [aux_sym_concatenated_string_repeat1] = STATE(2538), - [sym_identifier] = ACTIONS(8403), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8406), - [anon_sym_COMMA] = ACTIONS(8406), - [anon_sym_RPAREN] = ACTIONS(8406), - [aux_sym_preproc_if_token2] = ACTIONS(8406), - [aux_sym_preproc_else_token1] = ACTIONS(8406), - [aux_sym_preproc_elif_token1] = ACTIONS(8408), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8406), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8406), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_DASH] = ACTIONS(8408), - [anon_sym_PLUS] = ACTIONS(8408), - [anon_sym_STAR] = ACTIONS(8408), - [anon_sym_SLASH] = ACTIONS(8408), - [anon_sym_PERCENT] = ACTIONS(8408), - [anon_sym_PIPE_PIPE] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_PIPE] = ACTIONS(8408), - [anon_sym_CARET] = ACTIONS(8408), - [anon_sym_AMP] = ACTIONS(8408), - [anon_sym_EQ_EQ] = ACTIONS(8406), - [anon_sym_BANG_EQ] = ACTIONS(8406), - [anon_sym_GT] = ACTIONS(8408), - [anon_sym_GT_EQ] = ACTIONS(8406), - [anon_sym_LT_EQ] = ACTIONS(8408), - [anon_sym_LT] = ACTIONS(8408), - [anon_sym_LT_LT] = ACTIONS(8408), - [anon_sym_GT_GT] = ACTIONS(8408), - [anon_sym_SEMI] = ACTIONS(8406), - [anon_sym_COLON] = ACTIONS(8408), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8406), - [anon_sym_RBRACE] = ACTIONS(8406), - [anon_sym_LBRACK] = ACTIONS(8406), - [anon_sym_EQ] = ACTIONS(8408), - [anon_sym_QMARK] = ACTIONS(8406), - [anon_sym_STAR_EQ] = ACTIONS(8406), - [anon_sym_SLASH_EQ] = ACTIONS(8406), - [anon_sym_PERCENT_EQ] = ACTIONS(8406), - [anon_sym_PLUS_EQ] = ACTIONS(8406), - [anon_sym_DASH_EQ] = ACTIONS(8406), - [anon_sym_LT_LT_EQ] = ACTIONS(8406), - [anon_sym_GT_GT_EQ] = ACTIONS(8406), - [anon_sym_AMP_EQ] = ACTIONS(8406), - [anon_sym_CARET_EQ] = ACTIONS(8406), - [anon_sym_PIPE_EQ] = ACTIONS(8406), - [anon_sym_and_eq] = ACTIONS(8408), - [anon_sym_or_eq] = ACTIONS(8408), - [anon_sym_xor_eq] = ACTIONS(8408), - [anon_sym_LT_EQ_GT] = ACTIONS(8406), - [anon_sym_or] = ACTIONS(8408), - [anon_sym_and] = ACTIONS(8408), - [anon_sym_bitor] = ACTIONS(8408), - [anon_sym_xor] = ACTIONS(8408), - [anon_sym_bitand] = ACTIONS(8408), - [anon_sym_not_eq] = ACTIONS(8408), - [anon_sym_DASH_DASH] = ACTIONS(8406), - [anon_sym_PLUS_PLUS] = ACTIONS(8406), - [anon_sym_DOT] = ACTIONS(8408), - [anon_sym_DOT_STAR] = ACTIONS(8406), - [anon_sym_DASH_GT] = ACTIONS(8406), - [anon_sym_L_DQUOTE] = ACTIONS(8410), - [anon_sym_u_DQUOTE] = ACTIONS(8410), - [anon_sym_U_DQUOTE] = ACTIONS(8410), - [anon_sym_u8_DQUOTE] = ACTIONS(8410), - [anon_sym_DQUOTE] = ACTIONS(8410), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8413), - [anon_sym_LR_DQUOTE] = ACTIONS(8413), - [anon_sym_uR_DQUOTE] = ACTIONS(8413), - [anon_sym_UR_DQUOTE] = ACTIONS(8413), - [anon_sym_u8R_DQUOTE] = ACTIONS(8413), - [anon_sym_COLON_RBRACK] = ACTIONS(8406), - [sym_literal_suffix] = ACTIONS(8408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_RBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7329), + [anon_sym_or_eq] = ACTIONS(7329), + [anon_sym_xor_eq] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), }, [STATE(2539)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2595), - [sym__abstract_declarator] = STATE(6358), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3515), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2080), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3515), - [aux_sym_pointer_declarator_repeat1] = STATE(2595), - [sym_identifier] = ACTIONS(6821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [aux_sym_preproc_if_token2] = ACTIONS(6823), - [aux_sym_preproc_else_token1] = ACTIONS(6823), - [aux_sym_preproc_elif_token1] = ACTIONS(6821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8416), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8418), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8420), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8092), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8094), - [sym_ms_signed_ptr_modifier] = ACTIONS(8094), - [anon_sym__unaligned] = ACTIONS(8096), - [anon_sym___unaligned] = ACTIONS(8096), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6821), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6821), - [anon_sym_not_eq] = ACTIONS(6821), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym__function_exception_specification] = STATE(2955), + [sym__function_attributes_end] = STATE(4321), + [sym__function_postfix] = STATE(5027), + [sym_trailing_return_type] = STATE(4448), + [sym_noexcept] = STATE(2955), + [sym_throw_specifier] = STATE(2955), + [sym_requires_clause] = STATE(5027), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_RBRACK] = ACTIONS(7970), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8393), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8396), + [anon_sym_override] = ACTIONS(8396), + [anon_sym_noexcept] = ACTIONS(6719), + [anon_sym_throw] = ACTIONS(6721), + [anon_sym_requires] = ACTIONS(8399), }, [STATE(2540)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2528), - [sym__abstract_declarator] = STATE(6320), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3522), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2275), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3522), - [aux_sym_pointer_declarator_repeat1] = STATE(2528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(8385), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(8387), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6859), - [anon_sym_AMP] = ACTIONS(8389), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6859), - [anon_sym_GT_GT] = ACTIONS(6859), - [anon_sym_SEMI] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6861), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), - [sym_ms_signed_ptr_modifier] = ACTIONS(8119), - [anon_sym__unaligned] = ACTIONS(8121), - [anon_sym___unaligned] = ACTIONS(8121), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6859), - [anon_sym_and] = ACTIONS(6859), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6859), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2960), + [sym__function_attributes_end] = STATE(4191), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3061), + [sym_noexcept] = STATE(2960), + [sym_throw_specifier] = STATE(2960), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(8235), + [anon_sym___attribute] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7887), + [anon_sym_override] = ACTIONS(7887), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(7890), }, [STATE(2541)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3929), - [sym__function_postfix] = STATE(3675), - [sym_trailing_return_type] = STATE(2973), - [sym_requires_clause] = STATE(3675), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_RPAREN] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(8424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8422), - [anon_sym_RBRACE] = ACTIONS(8422), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8422), - [anon_sym_or_eq] = ACTIONS(8422), - [anon_sym_xor_eq] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8426), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_requires] = ACTIONS(6563), - [anon_sym_COLON_RBRACK] = ACTIONS(8422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6586), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6586), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6586), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6586), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6586), + [anon_sym_GT_GT] = ACTIONS(6586), + [anon_sym___extension__] = ACTIONS(6588), + [anon_sym___attribute__] = ACTIONS(6588), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6588), + [anon_sym_EQ] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6588), + [anon_sym_volatile] = ACTIONS(6588), + [anon_sym_restrict] = ACTIONS(6588), + [anon_sym___restrict__] = ACTIONS(6588), + [anon_sym__Atomic] = ACTIONS(6588), + [anon_sym__Noreturn] = ACTIONS(6588), + [anon_sym_noreturn] = ACTIONS(6588), + [anon_sym__Nonnull] = ACTIONS(6588), + [anon_sym_mutable] = ACTIONS(6588), + [anon_sym_constinit] = ACTIONS(6588), + [anon_sym_consteval] = ACTIONS(6588), + [anon_sym_alignas] = ACTIONS(6588), + [anon_sym__Alignas] = ACTIONS(6588), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_STAR_EQ] = ACTIONS(6588), + [anon_sym_SLASH_EQ] = ACTIONS(6588), + [anon_sym_PERCENT_EQ] = ACTIONS(6588), + [anon_sym_PLUS_EQ] = ACTIONS(6588), + [anon_sym_DASH_EQ] = ACTIONS(6588), + [anon_sym_LT_LT_EQ] = ACTIONS(6588), + [anon_sym_GT_GT_EQ] = ACTIONS(6586), + [anon_sym_AMP_EQ] = ACTIONS(6588), + [anon_sym_CARET_EQ] = ACTIONS(6588), + [anon_sym_PIPE_EQ] = ACTIONS(6588), + [anon_sym_and_eq] = ACTIONS(6588), + [anon_sym_or_eq] = ACTIONS(6588), + [anon_sym_xor_eq] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6588), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6588), + [anon_sym_not_eq] = ACTIONS(6588), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6588), + [anon_sym_decltype] = ACTIONS(6588), + [anon_sym_final] = ACTIONS(6588), + [anon_sym_override] = ACTIONS(6588), + [anon_sym_GT2] = ACTIONS(6588), + [anon_sym_requires] = ACTIONS(6588), }, [STATE(2542)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym__function_exception_specification] = STATE(3019), - [sym__function_attributes_end] = STATE(4354), - [sym__function_postfix] = STATE(5047), - [sym_trailing_return_type] = STATE(4470), - [sym_noexcept] = STATE(3019), - [sym_throw_specifier] = STATE(3019), - [sym_requires_clause] = STATE(5047), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7968), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7968), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8432), - [anon_sym_override] = ACTIONS(8432), - [anon_sym_GT2] = ACTIONS(7966), - [anon_sym_noexcept] = ACTIONS(6696), - [anon_sym_throw] = ACTIONS(6698), - [anon_sym_requires] = ACTIONS(8435), + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym__function_exception_specification] = STATE(3058), + [sym__function_attributes_end] = STATE(4368), + [sym__function_postfix] = STATE(5223), + [sym_trailing_return_type] = STATE(4468), + [sym_noexcept] = STATE(3058), + [sym_throw_specifier] = STATE(3058), + [sym_requires_clause] = STATE(5223), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7972), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7972), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8379), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6688), + [anon_sym_override] = ACTIONS(6688), + [anon_sym_GT2] = ACTIONS(7970), + [anon_sym_noexcept] = ACTIONS(6690), + [anon_sym_throw] = ACTIONS(6692), + [anon_sym_requires] = ACTIONS(6694), }, [STATE(2543)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), - [anon_sym_DASH_GT_STAR] = ACTIONS(7293), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3847), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3067), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(7972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7970), + [anon_sym_RBRACE] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7974), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_requires] = ACTIONS(6545), + [anon_sym_COLON_RBRACK] = ACTIONS(7970), }, [STATE(2544)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3949), + [sym__function_postfix] = STATE(3654), + [sym_trailing_return_type] = STATE(3063), + [sym_requires_clause] = STATE(3654), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8402), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(8404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8402), + [anon_sym_RBRACE] = ACTIONS(8402), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8402), + [anon_sym_or_eq] = ACTIONS(8402), + [anon_sym_xor_eq] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8406), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8409), + [anon_sym_override] = ACTIONS(8409), + [anon_sym_requires] = ACTIONS(8412), + [anon_sym_COLON_RBRACK] = ACTIONS(8402), + }, + [STATE(2545)] = { + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), [sym__function_exception_specification] = STATE(2961), - [sym__function_attributes_end] = STATE(4366), - [sym__function_postfix] = STATE(5110), - [sym_trailing_return_type] = STATE(4476), + [sym__function_attributes_end] = STATE(4192), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3062), [sym_noexcept] = STATE(2961), [sym_throw_specifier] = STATE(2961), - [sym_requires_clause] = STATE(5110), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_RBRACK] = ACTIONS(7791), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8360), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8363), - [anon_sym_override] = ACTIONS(8363), - [anon_sym_noexcept] = ACTIONS(6735), - [anon_sym_throw] = ACTIONS(6737), - [anon_sym_requires] = ACTIONS(8366), - }, - [STATE(2545)] = { - [sym_catch_clause] = STATE(2536), - [aux_sym_constructor_try_statement_repeat1] = STATE(2536), - [sym_identifier] = ACTIONS(3182), - [aux_sym_preproc_def_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token2] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), - [aux_sym_preproc_else_token1] = ACTIONS(3182), - [aux_sym_preproc_elif_token1] = ACTIONS(3182), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3182), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3182), - [sym_preproc_directive] = ACTIONS(3182), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym___extension__] = ACTIONS(3182), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_virtual] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym___attribute__] = ACTIONS(3182), - [anon_sym___attribute] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [anon_sym___declspec] = ACTIONS(3182), - [anon_sym___based] = ACTIONS(3182), - [anon_sym_signed] = ACTIONS(3182), - [anon_sym_unsigned] = ACTIONS(3182), - [anon_sym_long] = ACTIONS(3182), - [anon_sym_short] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_register] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym___inline] = ACTIONS(3182), - [anon_sym___inline__] = ACTIONS(3182), - [anon_sym___forceinline] = ACTIONS(3182), - [anon_sym_thread_local] = ACTIONS(3182), - [anon_sym___thread] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_constexpr] = ACTIONS(3182), - [anon_sym_volatile] = ACTIONS(3182), - [anon_sym_restrict] = ACTIONS(3182), - [anon_sym___restrict__] = ACTIONS(3182), - [anon_sym__Atomic] = ACTIONS(3182), - [anon_sym__Noreturn] = ACTIONS(3182), - [anon_sym_noreturn] = ACTIONS(3182), - [anon_sym__Nonnull] = ACTIONS(3182), - [anon_sym_mutable] = ACTIONS(3182), - [anon_sym_constinit] = ACTIONS(3182), - [anon_sym_consteval] = ACTIONS(3182), - [anon_sym_alignas] = ACTIONS(3182), - [anon_sym__Alignas] = ACTIONS(3182), - [sym_primitive_type] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3182), - [anon_sym_union] = ACTIONS(3182), - [anon_sym_typename] = ACTIONS(3182), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3182), - [anon_sym_decltype] = ACTIONS(3182), - [anon_sym_explicit] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(3182), - [anon_sym_operator] = ACTIONS(3182), - [anon_sym_friend] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_static_assert] = ACTIONS(3182), - [anon_sym_catch] = ACTIONS(8438), - [anon_sym_LBRACK_COLON] = ACTIONS(3184), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(8415), + [anon_sym___attribute] = ACTIONS(8418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8421), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7977), + [anon_sym_override] = ACTIONS(7977), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(7980), }, [STATE(2546)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym__function_exception_specification] = STATE(2995), - [sym__function_attributes_end] = STATE(4367), - [sym__function_postfix] = STATE(5121), - [sym_trailing_return_type] = STATE(4477), - [sym_noexcept] = STATE(2995), - [sym_throw_specifier] = STATE(2995), - [sym_requires_clause] = STATE(5121), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_RBRACK] = ACTIONS(7966), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8440), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8443), - [anon_sym_override] = ACTIONS(8443), - [anon_sym_noexcept] = ACTIONS(6735), - [anon_sym_throw] = ACTIONS(6737), - [anon_sym_requires] = ACTIONS(8446), + [sym_identifier] = ACTIONS(7113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_RPAREN] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym___attribute__] = ACTIONS(7113), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_LBRACE] = ACTIONS(7115), + [anon_sym_signed] = ACTIONS(7113), + [anon_sym_unsigned] = ACTIONS(7113), + [anon_sym_long] = ACTIONS(7113), + [anon_sym_short] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(7115), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [sym_primitive_type] = ACTIONS(7113), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7113), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7113), + [anon_sym_not_eq] = ACTIONS(7113), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7113), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7113), + [anon_sym_override] = ACTIONS(7113), + [anon_sym_requires] = ACTIONS(7113), + [anon_sym_DASH_GT_STAR] = ACTIONS(7115), }, [STATE(2547)] = { - [sym_template_argument_list] = STATE(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_RPAREN] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7085), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7085), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7085), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(7964), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7090), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_and_eq] = ACTIONS(7090), - [anon_sym_or_eq] = ACTIONS(7090), - [anon_sym_xor_eq] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7090), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7090), - [anon_sym_not_eq] = ACTIONS(7090), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7085), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), - [anon_sym_DASH_GT_STAR] = ACTIONS(7090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7333), + [anon_sym_COMMA] = ACTIONS(7333), + [anon_sym_LPAREN2] = ACTIONS(7333), + [anon_sym_DASH] = ACTIONS(7331), + [anon_sym_PLUS] = ACTIONS(7331), + [anon_sym_STAR] = ACTIONS(7331), + [anon_sym_SLASH] = ACTIONS(7331), + [anon_sym_PERCENT] = ACTIONS(7331), + [anon_sym_PIPE_PIPE] = ACTIONS(7333), + [anon_sym_AMP_AMP] = ACTIONS(7333), + [anon_sym_PIPE] = ACTIONS(7331), + [anon_sym_CARET] = ACTIONS(7331), + [anon_sym_AMP] = ACTIONS(7331), + [anon_sym_EQ_EQ] = ACTIONS(7333), + [anon_sym_BANG_EQ] = ACTIONS(7333), + [anon_sym_GT] = ACTIONS(7331), + [anon_sym_GT_EQ] = ACTIONS(7333), + [anon_sym_LT_EQ] = ACTIONS(7331), + [anon_sym_LT] = ACTIONS(7331), + [anon_sym_LT_LT] = ACTIONS(7331), + [anon_sym_GT_GT] = ACTIONS(7331), + [anon_sym___extension__] = ACTIONS(7333), + [anon_sym___attribute__] = ACTIONS(7333), + [anon_sym___attribute] = ACTIONS(7331), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_COLON_COLON] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7333), + [anon_sym_LBRACK] = ACTIONS(7333), + [anon_sym_RBRACK] = ACTIONS(7333), + [anon_sym_EQ] = ACTIONS(7331), + [anon_sym_const] = ACTIONS(7331), + [anon_sym_constexpr] = ACTIONS(7333), + [anon_sym_volatile] = ACTIONS(7333), + [anon_sym_restrict] = ACTIONS(7333), + [anon_sym___restrict__] = ACTIONS(7333), + [anon_sym__Atomic] = ACTIONS(7333), + [anon_sym__Noreturn] = ACTIONS(7333), + [anon_sym_noreturn] = ACTIONS(7333), + [anon_sym__Nonnull] = ACTIONS(7333), + [anon_sym_mutable] = ACTIONS(7333), + [anon_sym_constinit] = ACTIONS(7333), + [anon_sym_consteval] = ACTIONS(7333), + [anon_sym_alignas] = ACTIONS(7333), + [anon_sym__Alignas] = ACTIONS(7333), + [anon_sym_QMARK] = ACTIONS(7333), + [anon_sym_STAR_EQ] = ACTIONS(7333), + [anon_sym_SLASH_EQ] = ACTIONS(7333), + [anon_sym_PERCENT_EQ] = ACTIONS(7333), + [anon_sym_PLUS_EQ] = ACTIONS(7333), + [anon_sym_DASH_EQ] = ACTIONS(7333), + [anon_sym_LT_LT_EQ] = ACTIONS(7333), + [anon_sym_GT_GT_EQ] = ACTIONS(7333), + [anon_sym_AMP_EQ] = ACTIONS(7333), + [anon_sym_CARET_EQ] = ACTIONS(7333), + [anon_sym_PIPE_EQ] = ACTIONS(7333), + [anon_sym_and_eq] = ACTIONS(7333), + [anon_sym_or_eq] = ACTIONS(7333), + [anon_sym_xor_eq] = ACTIONS(7333), + [anon_sym_LT_EQ_GT] = ACTIONS(7333), + [anon_sym_or] = ACTIONS(7331), + [anon_sym_and] = ACTIONS(7331), + [anon_sym_bitor] = ACTIONS(7333), + [anon_sym_xor] = ACTIONS(7331), + [anon_sym_bitand] = ACTIONS(7333), + [anon_sym_not_eq] = ACTIONS(7333), + [anon_sym_DASH_DASH] = ACTIONS(7333), + [anon_sym_PLUS_PLUS] = ACTIONS(7333), + [anon_sym_DOT] = ACTIONS(7331), + [anon_sym_DOT_STAR] = ACTIONS(7333), + [anon_sym_DASH_GT] = ACTIONS(7333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7333), + [anon_sym_decltype] = ACTIONS(7333), + [anon_sym_final] = ACTIONS(7333), + [anon_sym_override] = ACTIONS(7333), + [anon_sym_requires] = ACTIONS(7333), }, [STATE(2548)] = { - [sym_attribute_specifier] = STATE(2548), - [aux_sym_type_definition_repeat1] = STATE(2548), - [sym_identifier] = ACTIONS(6935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), - [anon_sym_COMMA] = ACTIONS(6937), - [anon_sym_RPAREN] = ACTIONS(6937), - [aux_sym_preproc_if_token2] = ACTIONS(6937), - [aux_sym_preproc_else_token1] = ACTIONS(6937), - [aux_sym_preproc_elif_token1] = ACTIONS(6935), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6937), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6937), - [anon_sym_LPAREN2] = ACTIONS(6937), - [anon_sym_DASH] = ACTIONS(6935), - [anon_sym_PLUS] = ACTIONS(6935), - [anon_sym_STAR] = ACTIONS(6937), - [anon_sym_SLASH] = ACTIONS(6935), - [anon_sym_PERCENT] = ACTIONS(6937), - [anon_sym_PIPE_PIPE] = ACTIONS(6937), - [anon_sym_AMP_AMP] = ACTIONS(6937), - [anon_sym_PIPE] = ACTIONS(6935), - [anon_sym_CARET] = ACTIONS(6937), - [anon_sym_AMP] = ACTIONS(6935), - [anon_sym_EQ_EQ] = ACTIONS(6937), - [anon_sym_BANG_EQ] = ACTIONS(6937), - [anon_sym_GT] = ACTIONS(6935), - [anon_sym_GT_EQ] = ACTIONS(6937), - [anon_sym_LT_EQ] = ACTIONS(6935), - [anon_sym_LT] = ACTIONS(6935), - [anon_sym_LT_LT] = ACTIONS(6937), - [anon_sym_GT_GT] = ACTIONS(6937), - [anon_sym_SEMI] = ACTIONS(6937), - [anon_sym___extension__] = ACTIONS(6935), - [anon_sym___attribute__] = ACTIONS(8449), - [anon_sym___attribute] = ACTIONS(8449), - [anon_sym_COLON] = ACTIONS(6935), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6937), - [anon_sym_RBRACE] = ACTIONS(6937), - [anon_sym_LBRACK] = ACTIONS(6935), - [anon_sym_const] = ACTIONS(6935), - [anon_sym_constexpr] = ACTIONS(6935), - [anon_sym_volatile] = ACTIONS(6935), - [anon_sym_restrict] = ACTIONS(6935), - [anon_sym___restrict__] = ACTIONS(6935), - [anon_sym__Atomic] = ACTIONS(6935), - [anon_sym__Noreturn] = ACTIONS(6935), - [anon_sym_noreturn] = ACTIONS(6935), - [anon_sym__Nonnull] = ACTIONS(6935), - [anon_sym_mutable] = ACTIONS(6935), - [anon_sym_constinit] = ACTIONS(6935), - [anon_sym_consteval] = ACTIONS(6935), - [anon_sym_alignas] = ACTIONS(6935), - [anon_sym__Alignas] = ACTIONS(6935), - [anon_sym_QMARK] = ACTIONS(6937), - [anon_sym_LT_EQ_GT] = ACTIONS(6937), - [anon_sym_or] = ACTIONS(6935), - [anon_sym_and] = ACTIONS(6935), - [anon_sym_bitor] = ACTIONS(6935), - [anon_sym_xor] = ACTIONS(6935), - [anon_sym_bitand] = ACTIONS(6935), - [anon_sym_not_eq] = ACTIONS(6935), - [anon_sym_DASH_DASH] = ACTIONS(6937), - [anon_sym_PLUS_PLUS] = ACTIONS(6937), - [anon_sym_asm] = ACTIONS(6935), - [anon_sym___asm__] = ACTIONS(6935), - [anon_sym___asm] = ACTIONS(6935), - [anon_sym_DOT] = ACTIONS(6935), - [anon_sym_DOT_STAR] = ACTIONS(6937), - [anon_sym_DASH_GT] = ACTIONS(6937), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6935), - [anon_sym_override] = ACTIONS(6935), - [anon_sym_noexcept] = ACTIONS(6935), - [anon_sym_throw] = ACTIONS(6935), - [anon_sym_requires] = ACTIONS(6935), - [anon_sym_COLON_RBRACK] = ACTIONS(6937), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3919), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3033), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7876), + [anon_sym_or_eq] = ACTIONS(7876), + [anon_sym_xor_eq] = ACTIONS(7876), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7949), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6557), }, [STATE(2549)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(3014), - [sym__function_attributes_end] = STATE(4235), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3075), - [sym_noexcept] = STATE(3014), - [sym_throw_specifier] = STATE(3014), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(8330), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8336), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7870), - [anon_sym_override] = ACTIONS(7870), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(7873), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3920), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3067), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_preproc_if_token2] = ACTIONS(7970), + [aux_sym_preproc_else_token1] = ACTIONS(7970), + [aux_sym_preproc_elif_token1] = ACTIONS(7972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7972), + [anon_sym_or_eq] = ACTIONS(7972), + [anon_sym_xor_eq] = ACTIONS(7972), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7972), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7972), + [anon_sym_not_eq] = ACTIONS(7972), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7992), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6557), }, [STATE(2550)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7291), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7291), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_GT2] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2563), + [sym__abstract_declarator] = STATE(6301), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3544), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2077), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3544), + [aux_sym_pointer_declarator_repeat1] = STATE(2563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym_SEMI] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(6819), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6815), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8136), + [sym_ms_signed_ptr_modifier] = ACTIONS(8136), + [anon_sym__unaligned] = ACTIONS(8138), + [anon_sym___unaligned] = ACTIONS(8138), + [anon_sym_RBRACE] = ACTIONS(6815), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6815), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6815), }, [STATE(2551)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7291), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7291), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_GT2] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3921), + [sym__function_postfix] = STATE(3654), + [sym_trailing_return_type] = STATE(3071), + [sym_requires_clause] = STATE(3654), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(8404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [aux_sym_preproc_if_token2] = ACTIONS(8402), + [aux_sym_preproc_else_token1] = ACTIONS(8402), + [aux_sym_preproc_elif_token1] = ACTIONS(8404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8402), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8404), + [anon_sym_or_eq] = ACTIONS(8404), + [anon_sym_xor_eq] = ACTIONS(8404), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8404), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8404), + [anon_sym_not_eq] = ACTIONS(8404), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8430), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6557), }, [STATE(2552)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym__function_exception_specification] = STATE(2953), - [sym__function_attributes_end] = STATE(4364), - [sym__function_postfix] = STATE(5121), - [sym_trailing_return_type] = STATE(4534), - [sym_noexcept] = STATE(2953), - [sym_throw_specifier] = STATE(2953), - [sym_requires_clause] = STATE(5121), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_RBRACK] = ACTIONS(7966), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8440), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6742), - [anon_sym_override] = ACTIONS(6742), - [anon_sym_noexcept] = ACTIONS(6735), - [anon_sym_throw] = ACTIONS(6737), - [anon_sym_requires] = ACTIONS(6744), + [sym_attribute_specifier] = STATE(3161), + [sym_enumerator_list] = STATE(2843), + [sym__enum_base_clause] = STATE(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8003), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_LPAREN2] = ACTIONS(8003), + [anon_sym_DASH] = ACTIONS(8001), + [anon_sym_PLUS] = ACTIONS(8001), + [anon_sym_STAR] = ACTIONS(8001), + [anon_sym_SLASH] = ACTIONS(8001), + [anon_sym_PERCENT] = ACTIONS(8001), + [anon_sym_PIPE_PIPE] = ACTIONS(8003), + [anon_sym_AMP_AMP] = ACTIONS(8003), + [anon_sym_PIPE] = ACTIONS(8001), + [anon_sym_CARET] = ACTIONS(8001), + [anon_sym_AMP] = ACTIONS(8001), + [anon_sym_EQ_EQ] = ACTIONS(8003), + [anon_sym_BANG_EQ] = ACTIONS(8003), + [anon_sym_GT] = ACTIONS(8001), + [anon_sym_GT_EQ] = ACTIONS(8001), + [anon_sym_LT_EQ] = ACTIONS(8001), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_LT_LT] = ACTIONS(8001), + [anon_sym_GT_GT] = ACTIONS(8001), + [anon_sym___extension__] = ACTIONS(8003), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_COLON] = ACTIONS(8433), + [anon_sym_LBRACE] = ACTIONS(8435), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_EQ] = ACTIONS(8001), + [anon_sym_const] = ACTIONS(8001), + [anon_sym_constexpr] = ACTIONS(8003), + [anon_sym_volatile] = ACTIONS(8003), + [anon_sym_restrict] = ACTIONS(8003), + [anon_sym___restrict__] = ACTIONS(8003), + [anon_sym__Atomic] = ACTIONS(8003), + [anon_sym__Noreturn] = ACTIONS(8003), + [anon_sym_noreturn] = ACTIONS(8003), + [anon_sym__Nonnull] = ACTIONS(8003), + [anon_sym_mutable] = ACTIONS(8003), + [anon_sym_constinit] = ACTIONS(8003), + [anon_sym_consteval] = ACTIONS(8003), + [anon_sym_alignas] = ACTIONS(8003), + [anon_sym__Alignas] = ACTIONS(8003), + [anon_sym_QMARK] = ACTIONS(8003), + [anon_sym_STAR_EQ] = ACTIONS(8003), + [anon_sym_SLASH_EQ] = ACTIONS(8003), + [anon_sym_PERCENT_EQ] = ACTIONS(8003), + [anon_sym_PLUS_EQ] = ACTIONS(8003), + [anon_sym_DASH_EQ] = ACTIONS(8003), + [anon_sym_LT_LT_EQ] = ACTIONS(8003), + [anon_sym_GT_GT_EQ] = ACTIONS(8001), + [anon_sym_AMP_EQ] = ACTIONS(8003), + [anon_sym_CARET_EQ] = ACTIONS(8003), + [anon_sym_PIPE_EQ] = ACTIONS(8003), + [anon_sym_and_eq] = ACTIONS(8003), + [anon_sym_or_eq] = ACTIONS(8003), + [anon_sym_xor_eq] = ACTIONS(8003), + [anon_sym_LT_EQ_GT] = ACTIONS(8003), + [anon_sym_or] = ACTIONS(8001), + [anon_sym_and] = ACTIONS(8001), + [anon_sym_bitor] = ACTIONS(8003), + [anon_sym_xor] = ACTIONS(8001), + [anon_sym_bitand] = ACTIONS(8003), + [anon_sym_not_eq] = ACTIONS(8003), + [anon_sym_DASH_DASH] = ACTIONS(8003), + [anon_sym_PLUS_PLUS] = ACTIONS(8003), + [anon_sym_DOT] = ACTIONS(8001), + [anon_sym_DOT_STAR] = ACTIONS(8003), + [anon_sym_DASH_GT] = ACTIONS(8003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8003), + [anon_sym_override] = ACTIONS(8003), + [anon_sym_GT2] = ACTIONS(8003), + [anon_sym_requires] = ACTIONS(8003), }, [STATE(2553)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), - [anon_sym_COMMA] = ACTIONS(7303), - [anon_sym_LPAREN2] = ACTIONS(7303), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_STAR] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7301), - [anon_sym_PERCENT] = ACTIONS(7301), - [anon_sym_PIPE_PIPE] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7303), - [anon_sym_PIPE] = ACTIONS(7301), - [anon_sym_CARET] = ACTIONS(7301), - [anon_sym_AMP] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7303), - [anon_sym_BANG_EQ] = ACTIONS(7303), - [anon_sym_GT] = ACTIONS(7301), - [anon_sym_GT_EQ] = ACTIONS(7301), - [anon_sym_LT_EQ] = ACTIONS(7301), - [anon_sym_LT] = ACTIONS(7301), - [anon_sym_LT_LT] = ACTIONS(7301), - [anon_sym_GT_GT] = ACTIONS(7301), - [anon_sym___extension__] = ACTIONS(7303), - [anon_sym___attribute__] = ACTIONS(7303), - [anon_sym___attribute] = ACTIONS(7301), - [anon_sym_COLON] = ACTIONS(7301), - [anon_sym_COLON_COLON] = ACTIONS(7303), - [anon_sym_LBRACE] = ACTIONS(7303), - [anon_sym_LBRACK] = ACTIONS(7303), - [anon_sym_EQ] = ACTIONS(7301), - [anon_sym_const] = ACTIONS(7301), - [anon_sym_constexpr] = ACTIONS(7303), - [anon_sym_volatile] = ACTIONS(7303), - [anon_sym_restrict] = ACTIONS(7303), - [anon_sym___restrict__] = ACTIONS(7303), - [anon_sym__Atomic] = ACTIONS(7303), - [anon_sym__Noreturn] = ACTIONS(7303), - [anon_sym_noreturn] = ACTIONS(7303), - [anon_sym__Nonnull] = ACTIONS(7303), - [anon_sym_mutable] = ACTIONS(7303), - [anon_sym_constinit] = ACTIONS(7303), - [anon_sym_consteval] = ACTIONS(7303), - [anon_sym_alignas] = ACTIONS(7303), - [anon_sym__Alignas] = ACTIONS(7303), - [anon_sym_QMARK] = ACTIONS(7303), - [anon_sym_STAR_EQ] = ACTIONS(7303), - [anon_sym_SLASH_EQ] = ACTIONS(7303), - [anon_sym_PERCENT_EQ] = ACTIONS(7303), - [anon_sym_PLUS_EQ] = ACTIONS(7303), - [anon_sym_DASH_EQ] = ACTIONS(7303), - [anon_sym_LT_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_GT_EQ] = ACTIONS(7301), - [anon_sym_AMP_EQ] = ACTIONS(7303), - [anon_sym_CARET_EQ] = ACTIONS(7303), - [anon_sym_PIPE_EQ] = ACTIONS(7303), - [anon_sym_and_eq] = ACTIONS(7303), - [anon_sym_or_eq] = ACTIONS(7303), - [anon_sym_xor_eq] = ACTIONS(7303), - [anon_sym_LT_EQ_GT] = ACTIONS(7303), - [anon_sym_or] = ACTIONS(7301), - [anon_sym_and] = ACTIONS(7301), - [anon_sym_bitor] = ACTIONS(7303), - [anon_sym_xor] = ACTIONS(7301), - [anon_sym_bitand] = ACTIONS(7303), - [anon_sym_not_eq] = ACTIONS(7303), - [anon_sym_DASH_DASH] = ACTIONS(7303), - [anon_sym_PLUS_PLUS] = ACTIONS(7303), - [anon_sym_DOT] = ACTIONS(7301), - [anon_sym_DOT_STAR] = ACTIONS(7303), - [anon_sym_DASH_GT] = ACTIONS(7303), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7303), - [anon_sym_decltype] = ACTIONS(7303), - [anon_sym_final] = ACTIONS(7303), - [anon_sym_override] = ACTIONS(7303), - [anon_sym_GT2] = ACTIONS(7303), - [anon_sym_requires] = ACTIONS(7303), + [sym_attribute_specifier] = STATE(3115), + [sym_enumerator_list] = STATE(2879), + [sym__enum_base_clause] = STATE(2653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8009), + [anon_sym_COMMA] = ACTIONS(8009), + [anon_sym_LPAREN2] = ACTIONS(8009), + [anon_sym_DASH] = ACTIONS(8007), + [anon_sym_PLUS] = ACTIONS(8007), + [anon_sym_STAR] = ACTIONS(8007), + [anon_sym_SLASH] = ACTIONS(8007), + [anon_sym_PERCENT] = ACTIONS(8007), + [anon_sym_PIPE_PIPE] = ACTIONS(8009), + [anon_sym_AMP_AMP] = ACTIONS(8009), + [anon_sym_PIPE] = ACTIONS(8007), + [anon_sym_CARET] = ACTIONS(8007), + [anon_sym_AMP] = ACTIONS(8007), + [anon_sym_EQ_EQ] = ACTIONS(8009), + [anon_sym_BANG_EQ] = ACTIONS(8009), + [anon_sym_GT] = ACTIONS(8007), + [anon_sym_GT_EQ] = ACTIONS(8007), + [anon_sym_LT_EQ] = ACTIONS(8007), + [anon_sym_LT] = ACTIONS(8007), + [anon_sym_LT_LT] = ACTIONS(8007), + [anon_sym_GT_GT] = ACTIONS(8007), + [anon_sym___extension__] = ACTIONS(8009), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_COLON] = ACTIONS(8433), + [anon_sym_LBRACE] = ACTIONS(8435), + [anon_sym_LBRACK] = ACTIONS(8009), + [anon_sym_EQ] = ACTIONS(8007), + [anon_sym_const] = ACTIONS(8007), + [anon_sym_constexpr] = ACTIONS(8009), + [anon_sym_volatile] = ACTIONS(8009), + [anon_sym_restrict] = ACTIONS(8009), + [anon_sym___restrict__] = ACTIONS(8009), + [anon_sym__Atomic] = ACTIONS(8009), + [anon_sym__Noreturn] = ACTIONS(8009), + [anon_sym_noreturn] = ACTIONS(8009), + [anon_sym__Nonnull] = ACTIONS(8009), + [anon_sym_mutable] = ACTIONS(8009), + [anon_sym_constinit] = ACTIONS(8009), + [anon_sym_consteval] = ACTIONS(8009), + [anon_sym_alignas] = ACTIONS(8009), + [anon_sym__Alignas] = ACTIONS(8009), + [anon_sym_QMARK] = ACTIONS(8009), + [anon_sym_STAR_EQ] = ACTIONS(8009), + [anon_sym_SLASH_EQ] = ACTIONS(8009), + [anon_sym_PERCENT_EQ] = ACTIONS(8009), + [anon_sym_PLUS_EQ] = ACTIONS(8009), + [anon_sym_DASH_EQ] = ACTIONS(8009), + [anon_sym_LT_LT_EQ] = ACTIONS(8009), + [anon_sym_GT_GT_EQ] = ACTIONS(8007), + [anon_sym_AMP_EQ] = ACTIONS(8009), + [anon_sym_CARET_EQ] = ACTIONS(8009), + [anon_sym_PIPE_EQ] = ACTIONS(8009), + [anon_sym_and_eq] = ACTIONS(8009), + [anon_sym_or_eq] = ACTIONS(8009), + [anon_sym_xor_eq] = ACTIONS(8009), + [anon_sym_LT_EQ_GT] = ACTIONS(8009), + [anon_sym_or] = ACTIONS(8007), + [anon_sym_and] = ACTIONS(8007), + [anon_sym_bitor] = ACTIONS(8009), + [anon_sym_xor] = ACTIONS(8007), + [anon_sym_bitand] = ACTIONS(8009), + [anon_sym_not_eq] = ACTIONS(8009), + [anon_sym_DASH_DASH] = ACTIONS(8009), + [anon_sym_PLUS_PLUS] = ACTIONS(8009), + [anon_sym_DOT] = ACTIONS(8007), + [anon_sym_DOT_STAR] = ACTIONS(8009), + [anon_sym_DASH_GT] = ACTIONS(8009), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8009), + [anon_sym_override] = ACTIONS(8009), + [anon_sym_GT2] = ACTIONS(8009), + [anon_sym_requires] = ACTIONS(8009), }, [STATE(2554)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_exception_specification] = STATE(3017), - [sym__function_attributes_end] = STATE(4236), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3076), - [sym_noexcept] = STATE(3017), - [sym_throw_specifier] = STATE(3017), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(8391), - [anon_sym___attribute] = ACTIONS(8394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8397), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7973), - [anon_sym_override] = ACTIONS(7973), - [anon_sym_noexcept] = ACTIONS(6546), - [anon_sym_throw] = ACTIONS(6548), - [anon_sym_requires] = ACTIONS(7976), + [sym_attribute_specifier] = STATE(3188), + [sym_enumerator_list] = STATE(2840), + [sym__enum_base_clause] = STATE(2706), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8003), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_LPAREN2] = ACTIONS(8003), + [anon_sym_DASH] = ACTIONS(8001), + [anon_sym_PLUS] = ACTIONS(8001), + [anon_sym_STAR] = ACTIONS(8001), + [anon_sym_SLASH] = ACTIONS(8001), + [anon_sym_PERCENT] = ACTIONS(8001), + [anon_sym_PIPE_PIPE] = ACTIONS(8003), + [anon_sym_AMP_AMP] = ACTIONS(8003), + [anon_sym_PIPE] = ACTIONS(8001), + [anon_sym_CARET] = ACTIONS(8001), + [anon_sym_AMP] = ACTIONS(8001), + [anon_sym_EQ_EQ] = ACTIONS(8003), + [anon_sym_BANG_EQ] = ACTIONS(8003), + [anon_sym_GT] = ACTIONS(8001), + [anon_sym_GT_EQ] = ACTIONS(8003), + [anon_sym_LT_EQ] = ACTIONS(8001), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_LT_LT] = ACTIONS(8001), + [anon_sym_GT_GT] = ACTIONS(8001), + [anon_sym___extension__] = ACTIONS(8003), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_COLON] = ACTIONS(8437), + [anon_sym_LBRACE] = ACTIONS(8439), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_RBRACK] = ACTIONS(8003), + [anon_sym_EQ] = ACTIONS(8001), + [anon_sym_const] = ACTIONS(8001), + [anon_sym_constexpr] = ACTIONS(8003), + [anon_sym_volatile] = ACTIONS(8003), + [anon_sym_restrict] = ACTIONS(8003), + [anon_sym___restrict__] = ACTIONS(8003), + [anon_sym__Atomic] = ACTIONS(8003), + [anon_sym__Noreturn] = ACTIONS(8003), + [anon_sym_noreturn] = ACTIONS(8003), + [anon_sym__Nonnull] = ACTIONS(8003), + [anon_sym_mutable] = ACTIONS(8003), + [anon_sym_constinit] = ACTIONS(8003), + [anon_sym_consteval] = ACTIONS(8003), + [anon_sym_alignas] = ACTIONS(8003), + [anon_sym__Alignas] = ACTIONS(8003), + [anon_sym_QMARK] = ACTIONS(8003), + [anon_sym_STAR_EQ] = ACTIONS(8003), + [anon_sym_SLASH_EQ] = ACTIONS(8003), + [anon_sym_PERCENT_EQ] = ACTIONS(8003), + [anon_sym_PLUS_EQ] = ACTIONS(8003), + [anon_sym_DASH_EQ] = ACTIONS(8003), + [anon_sym_LT_LT_EQ] = ACTIONS(8003), + [anon_sym_GT_GT_EQ] = ACTIONS(8003), + [anon_sym_AMP_EQ] = ACTIONS(8003), + [anon_sym_CARET_EQ] = ACTIONS(8003), + [anon_sym_PIPE_EQ] = ACTIONS(8003), + [anon_sym_and_eq] = ACTIONS(8003), + [anon_sym_or_eq] = ACTIONS(8003), + [anon_sym_xor_eq] = ACTIONS(8003), + [anon_sym_LT_EQ_GT] = ACTIONS(8003), + [anon_sym_or] = ACTIONS(8001), + [anon_sym_and] = ACTIONS(8001), + [anon_sym_bitor] = ACTIONS(8003), + [anon_sym_xor] = ACTIONS(8001), + [anon_sym_bitand] = ACTIONS(8003), + [anon_sym_not_eq] = ACTIONS(8003), + [anon_sym_DASH_DASH] = ACTIONS(8003), + [anon_sym_PLUS_PLUS] = ACTIONS(8003), + [anon_sym_DOT] = ACTIONS(8001), + [anon_sym_DOT_STAR] = ACTIONS(8003), + [anon_sym_DASH_GT] = ACTIONS(8003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8003), + [anon_sym_override] = ACTIONS(8003), + [anon_sym_requires] = ACTIONS(8003), }, [STATE(2555)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6608), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6608), - [anon_sym_GT_GT] = ACTIONS(6608), - [anon_sym___extension__] = ACTIONS(6610), - [anon_sym___attribute__] = ACTIONS(6610), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6610), - [anon_sym_RBRACK] = ACTIONS(6610), - [anon_sym_EQ] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6610), - [anon_sym_volatile] = ACTIONS(6610), - [anon_sym_restrict] = ACTIONS(6610), - [anon_sym___restrict__] = ACTIONS(6610), - [anon_sym__Atomic] = ACTIONS(6610), - [anon_sym__Noreturn] = ACTIONS(6610), - [anon_sym_noreturn] = ACTIONS(6610), - [anon_sym__Nonnull] = ACTIONS(6610), - [anon_sym_mutable] = ACTIONS(6610), - [anon_sym_constinit] = ACTIONS(6610), - [anon_sym_consteval] = ACTIONS(6610), - [anon_sym_alignas] = ACTIONS(6610), - [anon_sym__Alignas] = ACTIONS(6610), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_STAR_EQ] = ACTIONS(6610), - [anon_sym_SLASH_EQ] = ACTIONS(6610), - [anon_sym_PERCENT_EQ] = ACTIONS(6610), - [anon_sym_PLUS_EQ] = ACTIONS(6610), - [anon_sym_DASH_EQ] = ACTIONS(6610), - [anon_sym_LT_LT_EQ] = ACTIONS(6610), - [anon_sym_GT_GT_EQ] = ACTIONS(6610), - [anon_sym_AMP_EQ] = ACTIONS(6610), - [anon_sym_CARET_EQ] = ACTIONS(6610), - [anon_sym_PIPE_EQ] = ACTIONS(6610), - [anon_sym_and_eq] = ACTIONS(6610), - [anon_sym_or_eq] = ACTIONS(6610), - [anon_sym_xor_eq] = ACTIONS(6610), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6610), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6610), - [anon_sym_not_eq] = ACTIONS(6610), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6610), - [anon_sym_decltype] = ACTIONS(6610), - [anon_sym_final] = ACTIONS(6610), - [anon_sym_override] = ACTIONS(6610), - [anon_sym_requires] = ACTIONS(6610), + [sym_attribute_specifier] = STATE(3232), + [sym_enumerator_list] = STATE(2866), + [sym__enum_base_clause] = STATE(2715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8009), + [anon_sym_COMMA] = ACTIONS(8009), + [anon_sym_LPAREN2] = ACTIONS(8009), + [anon_sym_DASH] = ACTIONS(8007), + [anon_sym_PLUS] = ACTIONS(8007), + [anon_sym_STAR] = ACTIONS(8007), + [anon_sym_SLASH] = ACTIONS(8007), + [anon_sym_PERCENT] = ACTIONS(8007), + [anon_sym_PIPE_PIPE] = ACTIONS(8009), + [anon_sym_AMP_AMP] = ACTIONS(8009), + [anon_sym_PIPE] = ACTIONS(8007), + [anon_sym_CARET] = ACTIONS(8007), + [anon_sym_AMP] = ACTIONS(8007), + [anon_sym_EQ_EQ] = ACTIONS(8009), + [anon_sym_BANG_EQ] = ACTIONS(8009), + [anon_sym_GT] = ACTIONS(8007), + [anon_sym_GT_EQ] = ACTIONS(8009), + [anon_sym_LT_EQ] = ACTIONS(8007), + [anon_sym_LT] = ACTIONS(8007), + [anon_sym_LT_LT] = ACTIONS(8007), + [anon_sym_GT_GT] = ACTIONS(8007), + [anon_sym___extension__] = ACTIONS(8009), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_COLON] = ACTIONS(8437), + [anon_sym_LBRACE] = ACTIONS(8439), + [anon_sym_LBRACK] = ACTIONS(8009), + [anon_sym_RBRACK] = ACTIONS(8009), + [anon_sym_EQ] = ACTIONS(8007), + [anon_sym_const] = ACTIONS(8007), + [anon_sym_constexpr] = ACTIONS(8009), + [anon_sym_volatile] = ACTIONS(8009), + [anon_sym_restrict] = ACTIONS(8009), + [anon_sym___restrict__] = ACTIONS(8009), + [anon_sym__Atomic] = ACTIONS(8009), + [anon_sym__Noreturn] = ACTIONS(8009), + [anon_sym_noreturn] = ACTIONS(8009), + [anon_sym__Nonnull] = ACTIONS(8009), + [anon_sym_mutable] = ACTIONS(8009), + [anon_sym_constinit] = ACTIONS(8009), + [anon_sym_consteval] = ACTIONS(8009), + [anon_sym_alignas] = ACTIONS(8009), + [anon_sym__Alignas] = ACTIONS(8009), + [anon_sym_QMARK] = ACTIONS(8009), + [anon_sym_STAR_EQ] = ACTIONS(8009), + [anon_sym_SLASH_EQ] = ACTIONS(8009), + [anon_sym_PERCENT_EQ] = ACTIONS(8009), + [anon_sym_PLUS_EQ] = ACTIONS(8009), + [anon_sym_DASH_EQ] = ACTIONS(8009), + [anon_sym_LT_LT_EQ] = ACTIONS(8009), + [anon_sym_GT_GT_EQ] = ACTIONS(8009), + [anon_sym_AMP_EQ] = ACTIONS(8009), + [anon_sym_CARET_EQ] = ACTIONS(8009), + [anon_sym_PIPE_EQ] = ACTIONS(8009), + [anon_sym_and_eq] = ACTIONS(8009), + [anon_sym_or_eq] = ACTIONS(8009), + [anon_sym_xor_eq] = ACTIONS(8009), + [anon_sym_LT_EQ_GT] = ACTIONS(8009), + [anon_sym_or] = ACTIONS(8007), + [anon_sym_and] = ACTIONS(8007), + [anon_sym_bitor] = ACTIONS(8009), + [anon_sym_xor] = ACTIONS(8007), + [anon_sym_bitand] = ACTIONS(8009), + [anon_sym_not_eq] = ACTIONS(8009), + [anon_sym_DASH_DASH] = ACTIONS(8009), + [anon_sym_PLUS_PLUS] = ACTIONS(8009), + [anon_sym_DOT] = ACTIONS(8007), + [anon_sym_DOT_STAR] = ACTIONS(8009), + [anon_sym_DASH_GT] = ACTIONS(8009), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8009), + [anon_sym_override] = ACTIONS(8009), + [anon_sym_requires] = ACTIONS(8009), }, [STATE(2556)] = { - [sym_string_literal] = STATE(2538), - [sym_raw_string_literal] = STATE(2538), - [aux_sym_concatenated_string_repeat1] = STATE(2538), - [sym_identifier] = ACTIONS(8452), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8454), - [anon_sym_COMMA] = ACTIONS(8454), - [anon_sym_RPAREN] = ACTIONS(8454), - [aux_sym_preproc_if_token2] = ACTIONS(8454), - [aux_sym_preproc_else_token1] = ACTIONS(8454), - [aux_sym_preproc_elif_token1] = ACTIONS(8456), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8454), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8454), - [anon_sym_LPAREN2] = ACTIONS(8454), - [anon_sym_DASH] = ACTIONS(8456), - [anon_sym_PLUS] = ACTIONS(8456), - [anon_sym_STAR] = ACTIONS(8456), - [anon_sym_SLASH] = ACTIONS(8456), - [anon_sym_PERCENT] = ACTIONS(8456), - [anon_sym_PIPE_PIPE] = ACTIONS(8454), - [anon_sym_AMP_AMP] = ACTIONS(8454), - [anon_sym_PIPE] = ACTIONS(8456), - [anon_sym_CARET] = ACTIONS(8456), - [anon_sym_AMP] = ACTIONS(8456), - [anon_sym_EQ_EQ] = ACTIONS(8454), - [anon_sym_BANG_EQ] = ACTIONS(8454), - [anon_sym_GT] = ACTIONS(8456), - [anon_sym_GT_EQ] = ACTIONS(8454), - [anon_sym_LT_EQ] = ACTIONS(8456), - [anon_sym_LT] = ACTIONS(8456), - [anon_sym_LT_LT] = ACTIONS(8456), - [anon_sym_GT_GT] = ACTIONS(8456), - [anon_sym_SEMI] = ACTIONS(8454), - [anon_sym_COLON] = ACTIONS(8456), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8454), - [anon_sym_RBRACE] = ACTIONS(8454), - [anon_sym_LBRACK] = ACTIONS(8454), - [anon_sym_EQ] = ACTIONS(8456), - [anon_sym_QMARK] = ACTIONS(8454), - [anon_sym_STAR_EQ] = ACTIONS(8454), - [anon_sym_SLASH_EQ] = ACTIONS(8454), - [anon_sym_PERCENT_EQ] = ACTIONS(8454), - [anon_sym_PLUS_EQ] = ACTIONS(8454), - [anon_sym_DASH_EQ] = ACTIONS(8454), - [anon_sym_LT_LT_EQ] = ACTIONS(8454), - [anon_sym_GT_GT_EQ] = ACTIONS(8454), - [anon_sym_AMP_EQ] = ACTIONS(8454), - [anon_sym_CARET_EQ] = ACTIONS(8454), - [anon_sym_PIPE_EQ] = ACTIONS(8454), - [anon_sym_and_eq] = ACTIONS(8456), - [anon_sym_or_eq] = ACTIONS(8456), - [anon_sym_xor_eq] = ACTIONS(8456), - [anon_sym_LT_EQ_GT] = ACTIONS(8454), - [anon_sym_or] = ACTIONS(8456), - [anon_sym_and] = ACTIONS(8456), - [anon_sym_bitor] = ACTIONS(8456), - [anon_sym_xor] = ACTIONS(8456), - [anon_sym_bitand] = ACTIONS(8456), - [anon_sym_not_eq] = ACTIONS(8456), - [anon_sym_DASH_DASH] = ACTIONS(8454), - [anon_sym_PLUS_PLUS] = ACTIONS(8454), - [anon_sym_DOT] = ACTIONS(8456), - [anon_sym_DOT_STAR] = ACTIONS(8454), - [anon_sym_DASH_GT] = ACTIONS(8454), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_COLON_RBRACK] = ACTIONS(8454), - [sym_literal_suffix] = ACTIONS(8456), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3855), + [sym__function_postfix] = STATE(3654), + [sym_trailing_return_type] = STATE(3071), + [sym_requires_clause] = STATE(3654), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8402), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(8404), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8402), + [anon_sym_RBRACE] = ACTIONS(8402), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8402), + [anon_sym_or_eq] = ACTIONS(8402), + [anon_sym_xor_eq] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8406), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_requires] = ACTIONS(6545), + [anon_sym_COLON_RBRACK] = ACTIONS(8402), }, [STATE(2557)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6616), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6616), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6616), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6616), - [anon_sym_GT_GT] = ACTIONS(6616), - [anon_sym___extension__] = ACTIONS(6618), - [anon_sym___attribute__] = ACTIONS(6618), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6618), - [anon_sym_RBRACK] = ACTIONS(6618), - [anon_sym_EQ] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6618), - [anon_sym_volatile] = ACTIONS(6618), - [anon_sym_restrict] = ACTIONS(6618), - [anon_sym___restrict__] = ACTIONS(6618), - [anon_sym__Atomic] = ACTIONS(6618), - [anon_sym__Noreturn] = ACTIONS(6618), - [anon_sym_noreturn] = ACTIONS(6618), - [anon_sym__Nonnull] = ACTIONS(6618), - [anon_sym_mutable] = ACTIONS(6618), - [anon_sym_constinit] = ACTIONS(6618), - [anon_sym_consteval] = ACTIONS(6618), - [anon_sym_alignas] = ACTIONS(6618), - [anon_sym__Alignas] = ACTIONS(6618), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_STAR_EQ] = ACTIONS(6618), - [anon_sym_SLASH_EQ] = ACTIONS(6618), - [anon_sym_PERCENT_EQ] = ACTIONS(6618), - [anon_sym_PLUS_EQ] = ACTIONS(6618), - [anon_sym_DASH_EQ] = ACTIONS(6618), - [anon_sym_LT_LT_EQ] = ACTIONS(6618), - [anon_sym_GT_GT_EQ] = ACTIONS(6618), - [anon_sym_AMP_EQ] = ACTIONS(6618), - [anon_sym_CARET_EQ] = ACTIONS(6618), - [anon_sym_PIPE_EQ] = ACTIONS(6618), - [anon_sym_and_eq] = ACTIONS(6618), - [anon_sym_or_eq] = ACTIONS(6618), - [anon_sym_xor_eq] = ACTIONS(6618), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6618), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6618), - [anon_sym_not_eq] = ACTIONS(6618), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6618), - [anon_sym_decltype] = ACTIONS(6618), - [anon_sym_final] = ACTIONS(6618), - [anon_sym_override] = ACTIONS(6618), - [anon_sym_requires] = ACTIONS(6618), + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2569), + [sym__abstract_declarator] = STATE(6319), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3501), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2066), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3501), + [aux_sym_pointer_declarator_repeat1] = STATE(2569), + [sym_identifier] = ACTIONS(6819), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [aux_sym_preproc_if_token2] = ACTIONS(6815), + [aux_sym_preproc_else_token1] = ACTIONS(6815), + [aux_sym_preproc_elif_token1] = ACTIONS(6819), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6815), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(8441), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(8443), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(8445), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(8086), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8088), + [sym_ms_signed_ptr_modifier] = ACTIONS(8088), + [anon_sym__unaligned] = ACTIONS(8090), + [anon_sym___unaligned] = ACTIONS(8090), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6819), + [anon_sym_and] = ACTIONS(6819), + [anon_sym_bitor] = ACTIONS(6819), + [anon_sym_xor] = ACTIONS(6819), + [anon_sym_bitand] = ACTIONS(6819), + [anon_sym_not_eq] = ACTIONS(6819), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), }, [STATE(2558)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3891), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3075), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7849), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7870), - [anon_sym_override] = ACTIONS(7870), - [anon_sym_requires] = ACTIONS(7873), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6602), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(6604), + [anon_sym___attribute__] = ACTIONS(6604), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6604), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6604), + [anon_sym_volatile] = ACTIONS(6604), + [anon_sym_restrict] = ACTIONS(6604), + [anon_sym___restrict__] = ACTIONS(6604), + [anon_sym__Atomic] = ACTIONS(6604), + [anon_sym__Noreturn] = ACTIONS(6604), + [anon_sym_noreturn] = ACTIONS(6604), + [anon_sym__Nonnull] = ACTIONS(6604), + [anon_sym_mutable] = ACTIONS(6604), + [anon_sym_constinit] = ACTIONS(6604), + [anon_sym_consteval] = ACTIONS(6604), + [anon_sym_alignas] = ACTIONS(6604), + [anon_sym__Alignas] = ACTIONS(6604), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_STAR_EQ] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [anon_sym_PERCENT_EQ] = ACTIONS(6604), + [anon_sym_PLUS_EQ] = ACTIONS(6604), + [anon_sym_DASH_EQ] = ACTIONS(6604), + [anon_sym_LT_LT_EQ] = ACTIONS(6604), + [anon_sym_GT_GT_EQ] = ACTIONS(6602), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_and_eq] = ACTIONS(6604), + [anon_sym_or_eq] = ACTIONS(6604), + [anon_sym_xor_eq] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6604), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6604), + [anon_sym_not_eq] = ACTIONS(6604), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6604), + [anon_sym_decltype] = ACTIONS(6604), + [anon_sym_final] = ACTIONS(6604), + [anon_sym_override] = ACTIONS(6604), + [anon_sym_GT2] = ACTIONS(6604), + [anon_sym_requires] = ACTIONS(6604), }, [STATE(2559)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6632), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6632), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6632), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6632), - [anon_sym_GT_GT] = ACTIONS(6632), - [anon_sym___extension__] = ACTIONS(6634), - [anon_sym___attribute__] = ACTIONS(6634), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6634), - [anon_sym_RBRACK] = ACTIONS(6634), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6634), - [anon_sym_volatile] = ACTIONS(6634), - [anon_sym_restrict] = ACTIONS(6634), - [anon_sym___restrict__] = ACTIONS(6634), - [anon_sym__Atomic] = ACTIONS(6634), - [anon_sym__Noreturn] = ACTIONS(6634), - [anon_sym_noreturn] = ACTIONS(6634), - [anon_sym__Nonnull] = ACTIONS(6634), - [anon_sym_mutable] = ACTIONS(6634), - [anon_sym_constinit] = ACTIONS(6634), - [anon_sym_consteval] = ACTIONS(6634), - [anon_sym_alignas] = ACTIONS(6634), - [anon_sym__Alignas] = ACTIONS(6634), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_STAR_EQ] = ACTIONS(6634), - [anon_sym_SLASH_EQ] = ACTIONS(6634), - [anon_sym_PERCENT_EQ] = ACTIONS(6634), - [anon_sym_PLUS_EQ] = ACTIONS(6634), - [anon_sym_DASH_EQ] = ACTIONS(6634), - [anon_sym_LT_LT_EQ] = ACTIONS(6634), - [anon_sym_GT_GT_EQ] = ACTIONS(6634), - [anon_sym_AMP_EQ] = ACTIONS(6634), - [anon_sym_CARET_EQ] = ACTIONS(6634), - [anon_sym_PIPE_EQ] = ACTIONS(6634), - [anon_sym_and_eq] = ACTIONS(6634), - [anon_sym_or_eq] = ACTIONS(6634), - [anon_sym_xor_eq] = ACTIONS(6634), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6634), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6634), - [anon_sym_not_eq] = ACTIONS(6634), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6634), - [anon_sym_decltype] = ACTIONS(6634), - [anon_sym_final] = ACTIONS(6634), - [anon_sym_override] = ACTIONS(6634), - [anon_sym_requires] = ACTIONS(6634), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3923), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3061), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7876), + [anon_sym_or_eq] = ACTIONS(7876), + [anon_sym_xor_eq] = ACTIONS(7876), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7949), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7952), + [anon_sym_override] = ACTIONS(7952), + [anon_sym_requires] = ACTIONS(7955), }, [STATE(2560)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2539), - [sym__abstract_declarator] = STATE(6331), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3513), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2080), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3513), - [aux_sym_pointer_declarator_repeat1] = STATE(2539), - [sym_identifier] = ACTIONS(6861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [aux_sym_preproc_if_token2] = ACTIONS(6859), - [aux_sym_preproc_else_token1] = ACTIONS(6859), - [aux_sym_preproc_elif_token1] = ACTIONS(6861), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6859), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(8416), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(8418), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6859), - [anon_sym_AMP] = ACTIONS(8420), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6859), - [anon_sym_GT_GT] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(8092), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8094), - [sym_ms_signed_ptr_modifier] = ACTIONS(8094), - [anon_sym__unaligned] = ACTIONS(8096), - [anon_sym___unaligned] = ACTIONS(8096), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6861), - [anon_sym_and] = ACTIONS(6861), - [anon_sym_bitor] = ACTIONS(6861), - [anon_sym_xor] = ACTIONS(6861), - [anon_sym_bitand] = ACTIONS(6861), - [anon_sym_not_eq] = ACTIONS(6861), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3924), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3062), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_preproc_if_token2] = ACTIONS(7970), + [aux_sym_preproc_else_token1] = ACTIONS(7970), + [aux_sym_preproc_elif_token1] = ACTIONS(7972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7972), + [anon_sym_or_eq] = ACTIONS(7972), + [anon_sym_xor_eq] = ACTIONS(7972), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7972), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7972), + [anon_sym_not_eq] = ACTIONS(7972), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7992), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7995), + [anon_sym_override] = ACTIONS(7995), + [anon_sym_requires] = ACTIONS(7998), }, [STATE(2561)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3895), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3076), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(7968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), - [anon_sym_RBRACE] = ACTIONS(7966), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6606), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6606), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_STAR_EQ] = ACTIONS(6608), + [anon_sym_SLASH_EQ] = ACTIONS(6608), + [anon_sym_PERCENT_EQ] = ACTIONS(6608), + [anon_sym_PLUS_EQ] = ACTIONS(6608), + [anon_sym_DASH_EQ] = ACTIONS(6608), + [anon_sym_LT_LT_EQ] = ACTIONS(6608), + [anon_sym_GT_GT_EQ] = ACTIONS(6606), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_and_eq] = ACTIONS(6608), + [anon_sym_or_eq] = ACTIONS(6608), + [anon_sym_xor_eq] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7973), - [anon_sym_override] = ACTIONS(7973), - [anon_sym_requires] = ACTIONS(7976), - [anon_sym_COLON_RBRACK] = ACTIONS(7966), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_final] = ACTIONS(6608), + [anon_sym_override] = ACTIONS(6608), + [anon_sym_GT2] = ACTIONS(6608), + [anon_sym_requires] = ACTIONS(6608), }, [STATE(2562)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6620), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6620), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6620), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6620), - [anon_sym_GT_GT] = ACTIONS(6620), - [anon_sym___extension__] = ACTIONS(6622), - [anon_sym___attribute__] = ACTIONS(6622), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6622), - [anon_sym_RBRACK] = ACTIONS(6622), - [anon_sym_EQ] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6622), - [anon_sym_volatile] = ACTIONS(6622), - [anon_sym_restrict] = ACTIONS(6622), - [anon_sym___restrict__] = ACTIONS(6622), - [anon_sym__Atomic] = ACTIONS(6622), - [anon_sym__Noreturn] = ACTIONS(6622), - [anon_sym_noreturn] = ACTIONS(6622), - [anon_sym__Nonnull] = ACTIONS(6622), - [anon_sym_mutable] = ACTIONS(6622), - [anon_sym_constinit] = ACTIONS(6622), - [anon_sym_consteval] = ACTIONS(6622), - [anon_sym_alignas] = ACTIONS(6622), - [anon_sym__Alignas] = ACTIONS(6622), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_STAR_EQ] = ACTIONS(6622), - [anon_sym_SLASH_EQ] = ACTIONS(6622), - [anon_sym_PERCENT_EQ] = ACTIONS(6622), - [anon_sym_PLUS_EQ] = ACTIONS(6622), - [anon_sym_DASH_EQ] = ACTIONS(6622), - [anon_sym_LT_LT_EQ] = ACTIONS(6622), - [anon_sym_GT_GT_EQ] = ACTIONS(6622), - [anon_sym_AMP_EQ] = ACTIONS(6622), - [anon_sym_CARET_EQ] = ACTIONS(6622), - [anon_sym_PIPE_EQ] = ACTIONS(6622), - [anon_sym_and_eq] = ACTIONS(6622), - [anon_sym_or_eq] = ACTIONS(6622), - [anon_sym_xor_eq] = ACTIONS(6622), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6622), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6622), - [anon_sym_not_eq] = ACTIONS(6622), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6622), - [anon_sym_decltype] = ACTIONS(6622), - [anon_sym_final] = ACTIONS(6622), - [anon_sym_override] = ACTIONS(6622), - [anon_sym_requires] = ACTIONS(6622), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3925), + [sym__function_postfix] = STATE(3654), + [sym_trailing_return_type] = STATE(3063), + [sym_requires_clause] = STATE(3654), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(8404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [aux_sym_preproc_if_token2] = ACTIONS(8402), + [aux_sym_preproc_else_token1] = ACTIONS(8402), + [aux_sym_preproc_elif_token1] = ACTIONS(8404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8402), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8404), + [anon_sym_or_eq] = ACTIONS(8404), + [anon_sym_xor_eq] = ACTIONS(8404), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8404), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8404), + [anon_sym_not_eq] = ACTIONS(8404), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8430), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8447), + [anon_sym_override] = ACTIONS(8447), + [anon_sym_requires] = ACTIONS(8450), }, [STATE(2563)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3896), - [sym__function_postfix] = STATE(3675), - [sym_trailing_return_type] = STATE(3077), - [sym_requires_clause] = STATE(3675), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_RPAREN] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2596), + [sym__abstract_declarator] = STATE(6302), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3485), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2077), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3485), + [aux_sym_pointer_declarator_repeat1] = STATE(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___attribute__] = ACTIONS(6534), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(8424), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8422), - [anon_sym_RBRACE] = ACTIONS(8422), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8422), - [anon_sym_or_eq] = ACTIONS(8422), - [anon_sym_xor_eq] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8426), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8458), - [anon_sym_override] = ACTIONS(8458), - [anon_sym_requires] = ACTIONS(8461), - [anon_sym_COLON_RBRACK] = ACTIONS(8422), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(6841), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6843), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8136), + [sym_ms_signed_ptr_modifier] = ACTIONS(8136), + [anon_sym__unaligned] = ACTIONS(8138), + [anon_sym___unaligned] = ACTIONS(8138), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6843), }, [STATE(2564)] = { - [sym_catch_clause] = STATE(2536), - [aux_sym_constructor_try_statement_repeat1] = STATE(2536), - [sym_identifier] = ACTIONS(3178), - [aux_sym_preproc_def_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token2] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), - [aux_sym_preproc_else_token1] = ACTIONS(3178), - [aux_sym_preproc_elif_token1] = ACTIONS(3178), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3178), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_LPAREN2] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_AMP_AMP] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym___extension__] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_virtual] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym___attribute__] = ACTIONS(3178), - [anon_sym___attribute] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), - [anon_sym___declspec] = ACTIONS(3178), - [anon_sym___based] = ACTIONS(3178), - [anon_sym_signed] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym___inline] = ACTIONS(3178), - [anon_sym___inline__] = ACTIONS(3178), - [anon_sym___forceinline] = ACTIONS(3178), - [anon_sym_thread_local] = ACTIONS(3178), - [anon_sym___thread] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym___restrict__] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym__Noreturn] = ACTIONS(3178), - [anon_sym_noreturn] = ACTIONS(3178), - [anon_sym__Nonnull] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_constinit] = ACTIONS(3178), - [anon_sym_consteval] = ACTIONS(3178), - [anon_sym_alignas] = ACTIONS(3178), - [anon_sym__Alignas] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3178), - [anon_sym_decltype] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_operator] = ACTIONS(3178), - [anon_sym_friend] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_static_assert] = ACTIONS(3178), - [anon_sym_catch] = ACTIONS(8438), - [anon_sym_LBRACK_COLON] = ACTIONS(3180), + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym__function_exception_specification] = STATE(3076), + [sym__function_attributes_end] = STATE(4341), + [sym__function_postfix] = STATE(5027), + [sym_trailing_return_type] = STATE(4494), + [sym_noexcept] = STATE(3076), + [sym_throw_specifier] = STATE(3076), + [sym_requires_clause] = STATE(5027), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_RBRACK] = ACTIONS(7970), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8393), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6717), + [anon_sym_override] = ACTIONS(6717), + [anon_sym_noexcept] = ACTIONS(6719), + [anon_sym_throw] = ACTIONS(6721), + [anon_sym_requires] = ACTIONS(6723), }, [STATE(2565)] = { - [sym_string_literal] = STATE(2556), - [sym_raw_string_literal] = STATE(2556), - [aux_sym_concatenated_string_repeat1] = STATE(2556), - [sym_identifier] = ACTIONS(8464), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), - [anon_sym_COMMA] = ACTIONS(8466), - [anon_sym_RPAREN] = ACTIONS(8466), - [aux_sym_preproc_if_token2] = ACTIONS(8466), - [aux_sym_preproc_else_token1] = ACTIONS(8466), - [aux_sym_preproc_elif_token1] = ACTIONS(8468), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8466), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8466), - [anon_sym_LPAREN2] = ACTIONS(8466), - [anon_sym_DASH] = ACTIONS(8468), - [anon_sym_PLUS] = ACTIONS(8468), - [anon_sym_STAR] = ACTIONS(8468), - [anon_sym_SLASH] = ACTIONS(8468), - [anon_sym_PERCENT] = ACTIONS(8468), - [anon_sym_PIPE_PIPE] = ACTIONS(8466), - [anon_sym_AMP_AMP] = ACTIONS(8466), - [anon_sym_PIPE] = ACTIONS(8468), - [anon_sym_CARET] = ACTIONS(8468), - [anon_sym_AMP] = ACTIONS(8468), - [anon_sym_EQ_EQ] = ACTIONS(8466), - [anon_sym_BANG_EQ] = ACTIONS(8466), - [anon_sym_GT] = ACTIONS(8468), - [anon_sym_GT_EQ] = ACTIONS(8466), - [anon_sym_LT_EQ] = ACTIONS(8468), - [anon_sym_LT] = ACTIONS(8468), - [anon_sym_LT_LT] = ACTIONS(8468), - [anon_sym_GT_GT] = ACTIONS(8468), - [anon_sym_SEMI] = ACTIONS(8466), - [anon_sym_COLON] = ACTIONS(8468), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8466), - [anon_sym_RBRACE] = ACTIONS(8466), - [anon_sym_LBRACK] = ACTIONS(8466), - [anon_sym_EQ] = ACTIONS(8468), - [anon_sym_QMARK] = ACTIONS(8466), - [anon_sym_STAR_EQ] = ACTIONS(8466), - [anon_sym_SLASH_EQ] = ACTIONS(8466), - [anon_sym_PERCENT_EQ] = ACTIONS(8466), - [anon_sym_PLUS_EQ] = ACTIONS(8466), - [anon_sym_DASH_EQ] = ACTIONS(8466), - [anon_sym_LT_LT_EQ] = ACTIONS(8466), - [anon_sym_GT_GT_EQ] = ACTIONS(8466), - [anon_sym_AMP_EQ] = ACTIONS(8466), - [anon_sym_CARET_EQ] = ACTIONS(8466), - [anon_sym_PIPE_EQ] = ACTIONS(8466), - [anon_sym_and_eq] = ACTIONS(8468), - [anon_sym_or_eq] = ACTIONS(8468), - [anon_sym_xor_eq] = ACTIONS(8468), - [anon_sym_LT_EQ_GT] = ACTIONS(8466), - [anon_sym_or] = ACTIONS(8468), - [anon_sym_and] = ACTIONS(8468), - [anon_sym_bitor] = ACTIONS(8468), - [anon_sym_xor] = ACTIONS(8468), - [anon_sym_bitand] = ACTIONS(8468), - [anon_sym_not_eq] = ACTIONS(8468), - [anon_sym_DASH_DASH] = ACTIONS(8466), - [anon_sym_PLUS_PLUS] = ACTIONS(8466), - [anon_sym_DOT] = ACTIONS(8468), - [anon_sym_DOT_STAR] = ACTIONS(8466), - [anon_sym_DASH_GT] = ACTIONS(8466), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_COLON_RBRACK] = ACTIONS(8466), - [sym_literal_suffix] = ACTIONS(8468), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(3835), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3033), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(6516), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_requires] = ACTIONS(6545), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), }, [STATE(2566)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3919), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3071), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7789), - [anon_sym_or_eq] = ACTIONS(7789), - [anon_sym_xor_eq] = ACTIONS(7789), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7799), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_requires] = ACTIONS(6508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6590), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6590), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6590), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6590), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6590), + [anon_sym_GT_GT] = ACTIONS(6590), + [anon_sym___extension__] = ACTIONS(6592), + [anon_sym___attribute__] = ACTIONS(6592), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6592), + [anon_sym_EQ] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6592), + [anon_sym_volatile] = ACTIONS(6592), + [anon_sym_restrict] = ACTIONS(6592), + [anon_sym___restrict__] = ACTIONS(6592), + [anon_sym__Atomic] = ACTIONS(6592), + [anon_sym__Noreturn] = ACTIONS(6592), + [anon_sym_noreturn] = ACTIONS(6592), + [anon_sym__Nonnull] = ACTIONS(6592), + [anon_sym_mutable] = ACTIONS(6592), + [anon_sym_constinit] = ACTIONS(6592), + [anon_sym_consteval] = ACTIONS(6592), + [anon_sym_alignas] = ACTIONS(6592), + [anon_sym__Alignas] = ACTIONS(6592), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_STAR_EQ] = ACTIONS(6592), + [anon_sym_SLASH_EQ] = ACTIONS(6592), + [anon_sym_PERCENT_EQ] = ACTIONS(6592), + [anon_sym_PLUS_EQ] = ACTIONS(6592), + [anon_sym_DASH_EQ] = ACTIONS(6592), + [anon_sym_LT_LT_EQ] = ACTIONS(6592), + [anon_sym_GT_GT_EQ] = ACTIONS(6590), + [anon_sym_AMP_EQ] = ACTIONS(6592), + [anon_sym_CARET_EQ] = ACTIONS(6592), + [anon_sym_PIPE_EQ] = ACTIONS(6592), + [anon_sym_and_eq] = ACTIONS(6592), + [anon_sym_or_eq] = ACTIONS(6592), + [anon_sym_xor_eq] = ACTIONS(6592), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6592), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6592), + [anon_sym_not_eq] = ACTIONS(6592), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6592), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_final] = ACTIONS(6592), + [anon_sym_override] = ACTIONS(6592), + [anon_sym_GT2] = ACTIONS(6592), + [anon_sym_requires] = ACTIONS(6592), }, [STATE(2567)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3920), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3029), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [aux_sym_preproc_if_token2] = ACTIONS(7966), - [aux_sym_preproc_else_token1] = ACTIONS(7966), - [aux_sym_preproc_elif_token1] = ACTIONS(7968), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7968), - [anon_sym_or_eq] = ACTIONS(7968), - [anon_sym_xor_eq] = ACTIONS(7968), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7968), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7968), - [anon_sym_not_eq] = ACTIONS(7968), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_requires] = ACTIONS(6508), + [sym_catch_clause] = STATE(2533), + [aux_sym_constructor_try_statement_repeat1] = STATE(2533), + [sym_identifier] = ACTIONS(3170), + [aux_sym_preproc_def_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token2] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3170), + [aux_sym_preproc_else_token1] = ACTIONS(3170), + [aux_sym_preproc_elif_token1] = ACTIONS(3170), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3170), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3170), + [sym_preproc_directive] = ACTIONS(3170), + [anon_sym_LPAREN2] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3170), + [anon_sym_virtual] = ACTIONS(3170), + [anon_sym_extern] = ACTIONS(3170), + [anon_sym___attribute__] = ACTIONS(3170), + [anon_sym___attribute] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(3172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3172), + [anon_sym___declspec] = ACTIONS(3170), + [anon_sym___based] = ACTIONS(3170), + [anon_sym_signed] = ACTIONS(3170), + [anon_sym_unsigned] = ACTIONS(3170), + [anon_sym_long] = ACTIONS(3170), + [anon_sym_short] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_register] = ACTIONS(3170), + [anon_sym_inline] = ACTIONS(3170), + [anon_sym___inline] = ACTIONS(3170), + [anon_sym___inline__] = ACTIONS(3170), + [anon_sym___forceinline] = ACTIONS(3170), + [anon_sym_thread_local] = ACTIONS(3170), + [anon_sym___thread] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_constexpr] = ACTIONS(3170), + [anon_sym_volatile] = ACTIONS(3170), + [anon_sym_restrict] = ACTIONS(3170), + [anon_sym___restrict__] = ACTIONS(3170), + [anon_sym__Atomic] = ACTIONS(3170), + [anon_sym__Noreturn] = ACTIONS(3170), + [anon_sym_noreturn] = ACTIONS(3170), + [anon_sym__Nonnull] = ACTIONS(3170), + [anon_sym_mutable] = ACTIONS(3170), + [anon_sym_constinit] = ACTIONS(3170), + [anon_sym_consteval] = ACTIONS(3170), + [anon_sym_alignas] = ACTIONS(3170), + [anon_sym__Alignas] = ACTIONS(3170), + [sym_primitive_type] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_typename] = ACTIONS(3170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3170), + [anon_sym_decltype] = ACTIONS(3170), + [anon_sym_explicit] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_template] = ACTIONS(3170), + [anon_sym_operator] = ACTIONS(3170), + [anon_sym_friend] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_static_assert] = ACTIONS(3170), + [anon_sym_catch] = ACTIONS(8391), + [anon_sym_LBRACK_COLON] = ACTIONS(3172), }, [STATE(2568)] = { - [sym_catch_clause] = STATE(2536), - [aux_sym_constructor_try_statement_repeat1] = STATE(2536), - [sym_identifier] = ACTIONS(3165), - [aux_sym_preproc_def_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token2] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), - [aux_sym_preproc_else_token1] = ACTIONS(3165), - [aux_sym_preproc_elif_token1] = ACTIONS(3165), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3165), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3165), - [sym_preproc_directive] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym___extension__] = ACTIONS(3165), - [anon_sym_typedef] = ACTIONS(3165), - [anon_sym_virtual] = ACTIONS(3165), - [anon_sym_extern] = ACTIONS(3165), - [anon_sym___attribute__] = ACTIONS(3165), - [anon_sym___attribute] = ACTIONS(3165), - [anon_sym_using] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), - [anon_sym___declspec] = ACTIONS(3165), - [anon_sym___based] = ACTIONS(3165), - [anon_sym_signed] = ACTIONS(3165), - [anon_sym_unsigned] = ACTIONS(3165), - [anon_sym_long] = ACTIONS(3165), - [anon_sym_short] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_static] = ACTIONS(3165), - [anon_sym_register] = ACTIONS(3165), - [anon_sym_inline] = ACTIONS(3165), - [anon_sym___inline] = ACTIONS(3165), - [anon_sym___inline__] = ACTIONS(3165), - [anon_sym___forceinline] = ACTIONS(3165), - [anon_sym_thread_local] = ACTIONS(3165), - [anon_sym___thread] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_constexpr] = ACTIONS(3165), - [anon_sym_volatile] = ACTIONS(3165), - [anon_sym_restrict] = ACTIONS(3165), - [anon_sym___restrict__] = ACTIONS(3165), - [anon_sym__Atomic] = ACTIONS(3165), - [anon_sym__Noreturn] = ACTIONS(3165), - [anon_sym_noreturn] = ACTIONS(3165), - [anon_sym__Nonnull] = ACTIONS(3165), - [anon_sym_mutable] = ACTIONS(3165), - [anon_sym_constinit] = ACTIONS(3165), - [anon_sym_consteval] = ACTIONS(3165), - [anon_sym_alignas] = ACTIONS(3165), - [anon_sym__Alignas] = ACTIONS(3165), - [sym_primitive_type] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_typename] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3165), - [anon_sym_decltype] = ACTIONS(3165), - [anon_sym_explicit] = ACTIONS(3165), - [anon_sym_private] = ACTIONS(3165), - [anon_sym_template] = ACTIONS(3165), - [anon_sym_operator] = ACTIONS(3165), - [anon_sym_friend] = ACTIONS(3165), - [anon_sym_public] = ACTIONS(3165), - [anon_sym_protected] = ACTIONS(3165), - [anon_sym_static_assert] = ACTIONS(3165), - [anon_sym_catch] = ACTIONS(8438), - [anon_sym_LBRACK_COLON] = ACTIONS(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6596), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6596), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6598), + [anon_sym___attribute__] = ACTIONS(6598), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6598), + [anon_sym_volatile] = ACTIONS(6598), + [anon_sym_restrict] = ACTIONS(6598), + [anon_sym___restrict__] = ACTIONS(6598), + [anon_sym__Atomic] = ACTIONS(6598), + [anon_sym__Noreturn] = ACTIONS(6598), + [anon_sym_noreturn] = ACTIONS(6598), + [anon_sym__Nonnull] = ACTIONS(6598), + [anon_sym_mutable] = ACTIONS(6598), + [anon_sym_constinit] = ACTIONS(6598), + [anon_sym_consteval] = ACTIONS(6598), + [anon_sym_alignas] = ACTIONS(6598), + [anon_sym__Alignas] = ACTIONS(6598), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6596), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6598), + [anon_sym_or_eq] = ACTIONS(6598), + [anon_sym_xor_eq] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6598), + [anon_sym_decltype] = ACTIONS(6598), + [anon_sym_final] = ACTIONS(6598), + [anon_sym_override] = ACTIONS(6598), + [anon_sym_GT2] = ACTIONS(6598), + [anon_sym_requires] = ACTIONS(6598), }, [STATE(2569)] = { - [sym_attribute_specifier] = STATE(3217), - [sym_enumerator_list] = STATE(2886), - [sym__enum_base_clause] = STATE(2728), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), - [anon_sym_COMMA] = ACTIONS(8002), - [anon_sym_LPAREN2] = ACTIONS(8002), - [anon_sym_DASH] = ACTIONS(8000), - [anon_sym_PLUS] = ACTIONS(8000), - [anon_sym_STAR] = ACTIONS(8000), - [anon_sym_SLASH] = ACTIONS(8000), - [anon_sym_PERCENT] = ACTIONS(8000), - [anon_sym_PIPE_PIPE] = ACTIONS(8002), - [anon_sym_AMP_AMP] = ACTIONS(8002), - [anon_sym_PIPE] = ACTIONS(8000), - [anon_sym_CARET] = ACTIONS(8000), - [anon_sym_AMP] = ACTIONS(8000), - [anon_sym_EQ_EQ] = ACTIONS(8002), - [anon_sym_BANG_EQ] = ACTIONS(8002), - [anon_sym_GT] = ACTIONS(8000), - [anon_sym_GT_EQ] = ACTIONS(8000), - [anon_sym_LT_EQ] = ACTIONS(8000), - [anon_sym_LT] = ACTIONS(8000), - [anon_sym_LT_LT] = ACTIONS(8000), - [anon_sym_GT_GT] = ACTIONS(8000), - [anon_sym___extension__] = ACTIONS(8002), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_COLON] = ACTIONS(8470), - [anon_sym_LBRACE] = ACTIONS(8472), - [anon_sym_LBRACK] = ACTIONS(8002), - [anon_sym_EQ] = ACTIONS(8000), - [anon_sym_const] = ACTIONS(8000), - [anon_sym_constexpr] = ACTIONS(8002), - [anon_sym_volatile] = ACTIONS(8002), - [anon_sym_restrict] = ACTIONS(8002), - [anon_sym___restrict__] = ACTIONS(8002), - [anon_sym__Atomic] = ACTIONS(8002), - [anon_sym__Noreturn] = ACTIONS(8002), - [anon_sym_noreturn] = ACTIONS(8002), - [anon_sym__Nonnull] = ACTIONS(8002), - [anon_sym_mutable] = ACTIONS(8002), - [anon_sym_constinit] = ACTIONS(8002), - [anon_sym_consteval] = ACTIONS(8002), - [anon_sym_alignas] = ACTIONS(8002), - [anon_sym__Alignas] = ACTIONS(8002), - [anon_sym_QMARK] = ACTIONS(8002), - [anon_sym_STAR_EQ] = ACTIONS(8002), - [anon_sym_SLASH_EQ] = ACTIONS(8002), - [anon_sym_PERCENT_EQ] = ACTIONS(8002), - [anon_sym_PLUS_EQ] = ACTIONS(8002), - [anon_sym_DASH_EQ] = ACTIONS(8002), - [anon_sym_LT_LT_EQ] = ACTIONS(8002), - [anon_sym_GT_GT_EQ] = ACTIONS(8000), - [anon_sym_AMP_EQ] = ACTIONS(8002), - [anon_sym_CARET_EQ] = ACTIONS(8002), - [anon_sym_PIPE_EQ] = ACTIONS(8002), - [anon_sym_and_eq] = ACTIONS(8002), - [anon_sym_or_eq] = ACTIONS(8002), - [anon_sym_xor_eq] = ACTIONS(8002), - [anon_sym_LT_EQ_GT] = ACTIONS(8002), - [anon_sym_or] = ACTIONS(8000), - [anon_sym_and] = ACTIONS(8000), - [anon_sym_bitor] = ACTIONS(8002), - [anon_sym_xor] = ACTIONS(8000), - [anon_sym_bitand] = ACTIONS(8002), - [anon_sym_not_eq] = ACTIONS(8002), - [anon_sym_DASH_DASH] = ACTIONS(8002), - [anon_sym_PLUS_PLUS] = ACTIONS(8002), - [anon_sym_DOT] = ACTIONS(8000), - [anon_sym_DOT_STAR] = ACTIONS(8002), - [anon_sym_DASH_GT] = ACTIONS(8002), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8002), - [anon_sym_override] = ACTIONS(8002), - [anon_sym_GT2] = ACTIONS(8002), - [anon_sym_requires] = ACTIONS(8002), + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2596), + [sym__abstract_declarator] = STATE(6331), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3508), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2066), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3508), + [aux_sym_pointer_declarator_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(6841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [aux_sym_preproc_if_token2] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8441), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8443), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8445), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8086), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8088), + [sym_ms_signed_ptr_modifier] = ACTIONS(8088), + [anon_sym__unaligned] = ACTIONS(8090), + [anon_sym___unaligned] = ACTIONS(8090), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6841), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6841), + [anon_sym_not_eq] = ACTIONS(6841), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), }, [STATE(2570)] = { - [sym_attribute_specifier] = STATE(3147), - [sym_enumerator_list] = STATE(2774), - [sym__enum_base_clause] = STATE(2667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), - [anon_sym_COMMA] = ACTIONS(8008), - [anon_sym_LPAREN2] = ACTIONS(8008), - [anon_sym_DASH] = ACTIONS(8006), - [anon_sym_PLUS] = ACTIONS(8006), - [anon_sym_STAR] = ACTIONS(8006), - [anon_sym_SLASH] = ACTIONS(8006), - [anon_sym_PERCENT] = ACTIONS(8006), - [anon_sym_PIPE_PIPE] = ACTIONS(8008), - [anon_sym_AMP_AMP] = ACTIONS(8008), - [anon_sym_PIPE] = ACTIONS(8006), - [anon_sym_CARET] = ACTIONS(8006), - [anon_sym_AMP] = ACTIONS(8006), - [anon_sym_EQ_EQ] = ACTIONS(8008), - [anon_sym_BANG_EQ] = ACTIONS(8008), - [anon_sym_GT] = ACTIONS(8006), - [anon_sym_GT_EQ] = ACTIONS(8006), - [anon_sym_LT_EQ] = ACTIONS(8006), - [anon_sym_LT] = ACTIONS(8006), - [anon_sym_LT_LT] = ACTIONS(8006), - [anon_sym_GT_GT] = ACTIONS(8006), - [anon_sym___extension__] = ACTIONS(8008), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_COLON] = ACTIONS(8470), - [anon_sym_LBRACE] = ACTIONS(8472), - [anon_sym_LBRACK] = ACTIONS(8008), - [anon_sym_EQ] = ACTIONS(8006), - [anon_sym_const] = ACTIONS(8006), - [anon_sym_constexpr] = ACTIONS(8008), - [anon_sym_volatile] = ACTIONS(8008), - [anon_sym_restrict] = ACTIONS(8008), - [anon_sym___restrict__] = ACTIONS(8008), - [anon_sym__Atomic] = ACTIONS(8008), - [anon_sym__Noreturn] = ACTIONS(8008), - [anon_sym_noreturn] = ACTIONS(8008), - [anon_sym__Nonnull] = ACTIONS(8008), - [anon_sym_mutable] = ACTIONS(8008), - [anon_sym_constinit] = ACTIONS(8008), - [anon_sym_consteval] = ACTIONS(8008), - [anon_sym_alignas] = ACTIONS(8008), - [anon_sym__Alignas] = ACTIONS(8008), - [anon_sym_QMARK] = ACTIONS(8008), - [anon_sym_STAR_EQ] = ACTIONS(8008), - [anon_sym_SLASH_EQ] = ACTIONS(8008), - [anon_sym_PERCENT_EQ] = ACTIONS(8008), - [anon_sym_PLUS_EQ] = ACTIONS(8008), - [anon_sym_DASH_EQ] = ACTIONS(8008), - [anon_sym_LT_LT_EQ] = ACTIONS(8008), - [anon_sym_GT_GT_EQ] = ACTIONS(8006), - [anon_sym_AMP_EQ] = ACTIONS(8008), - [anon_sym_CARET_EQ] = ACTIONS(8008), - [anon_sym_PIPE_EQ] = ACTIONS(8008), - [anon_sym_and_eq] = ACTIONS(8008), - [anon_sym_or_eq] = ACTIONS(8008), - [anon_sym_xor_eq] = ACTIONS(8008), - [anon_sym_LT_EQ_GT] = ACTIONS(8008), - [anon_sym_or] = ACTIONS(8006), - [anon_sym_and] = ACTIONS(8006), - [anon_sym_bitor] = ACTIONS(8008), - [anon_sym_xor] = ACTIONS(8006), - [anon_sym_bitand] = ACTIONS(8008), - [anon_sym_not_eq] = ACTIONS(8008), - [anon_sym_DASH_DASH] = ACTIONS(8008), - [anon_sym_PLUS_PLUS] = ACTIONS(8008), - [anon_sym_DOT] = ACTIONS(8006), - [anon_sym_DOT_STAR] = ACTIONS(8008), - [anon_sym_DASH_GT] = ACTIONS(8008), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8008), - [anon_sym_override] = ACTIONS(8008), - [anon_sym_GT2] = ACTIONS(8008), - [anon_sym_requires] = ACTIONS(8008), + [aux_sym_sized_type_specifier_repeat1] = STATE(2377), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8125), + [anon_sym_unsigned] = ACTIONS(8125), + [anon_sym_long] = ACTIONS(8125), + [anon_sym_short] = ACTIONS(8125), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_RBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_and_eq] = ACTIONS(7402), + [anon_sym_or_eq] = ACTIONS(7402), + [anon_sym_xor_eq] = ACTIONS(7402), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), }, [STATE(2571)] = { - [sym_attribute_specifier] = STATE(3104), - [sym_enumerator_list] = STATE(2891), - [sym__enum_base_clause] = STATE(2665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), - [anon_sym_COMMA] = ACTIONS(8002), - [anon_sym_LPAREN2] = ACTIONS(8002), - [anon_sym_DASH] = ACTIONS(8000), - [anon_sym_PLUS] = ACTIONS(8000), - [anon_sym_STAR] = ACTIONS(8000), - [anon_sym_SLASH] = ACTIONS(8000), - [anon_sym_PERCENT] = ACTIONS(8000), - [anon_sym_PIPE_PIPE] = ACTIONS(8002), - [anon_sym_AMP_AMP] = ACTIONS(8002), - [anon_sym_PIPE] = ACTIONS(8000), - [anon_sym_CARET] = ACTIONS(8000), - [anon_sym_AMP] = ACTIONS(8000), - [anon_sym_EQ_EQ] = ACTIONS(8002), - [anon_sym_BANG_EQ] = ACTIONS(8002), - [anon_sym_GT] = ACTIONS(8000), - [anon_sym_GT_EQ] = ACTIONS(8002), - [anon_sym_LT_EQ] = ACTIONS(8000), - [anon_sym_LT] = ACTIONS(8000), - [anon_sym_LT_LT] = ACTIONS(8000), - [anon_sym_GT_GT] = ACTIONS(8000), - [anon_sym___extension__] = ACTIONS(8002), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_COLON] = ACTIONS(8474), - [anon_sym_LBRACE] = ACTIONS(8476), - [anon_sym_LBRACK] = ACTIONS(8002), - [anon_sym_RBRACK] = ACTIONS(8002), - [anon_sym_EQ] = ACTIONS(8000), - [anon_sym_const] = ACTIONS(8000), - [anon_sym_constexpr] = ACTIONS(8002), - [anon_sym_volatile] = ACTIONS(8002), - [anon_sym_restrict] = ACTIONS(8002), - [anon_sym___restrict__] = ACTIONS(8002), - [anon_sym__Atomic] = ACTIONS(8002), - [anon_sym__Noreturn] = ACTIONS(8002), - [anon_sym_noreturn] = ACTIONS(8002), - [anon_sym__Nonnull] = ACTIONS(8002), - [anon_sym_mutable] = ACTIONS(8002), - [anon_sym_constinit] = ACTIONS(8002), - [anon_sym_consteval] = ACTIONS(8002), - [anon_sym_alignas] = ACTIONS(8002), - [anon_sym__Alignas] = ACTIONS(8002), - [anon_sym_QMARK] = ACTIONS(8002), - [anon_sym_STAR_EQ] = ACTIONS(8002), - [anon_sym_SLASH_EQ] = ACTIONS(8002), - [anon_sym_PERCENT_EQ] = ACTIONS(8002), - [anon_sym_PLUS_EQ] = ACTIONS(8002), - [anon_sym_DASH_EQ] = ACTIONS(8002), - [anon_sym_LT_LT_EQ] = ACTIONS(8002), - [anon_sym_GT_GT_EQ] = ACTIONS(8002), - [anon_sym_AMP_EQ] = ACTIONS(8002), - [anon_sym_CARET_EQ] = ACTIONS(8002), - [anon_sym_PIPE_EQ] = ACTIONS(8002), - [anon_sym_and_eq] = ACTIONS(8002), - [anon_sym_or_eq] = ACTIONS(8002), - [anon_sym_xor_eq] = ACTIONS(8002), - [anon_sym_LT_EQ_GT] = ACTIONS(8002), - [anon_sym_or] = ACTIONS(8000), - [anon_sym_and] = ACTIONS(8000), - [anon_sym_bitor] = ACTIONS(8002), - [anon_sym_xor] = ACTIONS(8000), - [anon_sym_bitand] = ACTIONS(8002), - [anon_sym_not_eq] = ACTIONS(8002), - [anon_sym_DASH_DASH] = ACTIONS(8002), - [anon_sym_PLUS_PLUS] = ACTIONS(8002), - [anon_sym_DOT] = ACTIONS(8000), - [anon_sym_DOT_STAR] = ACTIONS(8002), - [anon_sym_DASH_GT] = ACTIONS(8002), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8002), - [anon_sym_override] = ACTIONS(8002), - [anon_sym_requires] = ACTIONS(8002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_STAR_EQ] = ACTIONS(6612), + [anon_sym_SLASH_EQ] = ACTIONS(6612), + [anon_sym_PERCENT_EQ] = ACTIONS(6612), + [anon_sym_PLUS_EQ] = ACTIONS(6612), + [anon_sym_DASH_EQ] = ACTIONS(6612), + [anon_sym_LT_LT_EQ] = ACTIONS(6612), + [anon_sym_GT_GT_EQ] = ACTIONS(6610), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_and_eq] = ACTIONS(6612), + [anon_sym_or_eq] = ACTIONS(6612), + [anon_sym_xor_eq] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_final] = ACTIONS(6612), + [anon_sym_override] = ACTIONS(6612), + [anon_sym_GT2] = ACTIONS(6612), + [anon_sym_requires] = ACTIONS(6612), }, [STATE(2572)] = { - [sym_attribute_specifier] = STATE(3130), - [sym_enumerator_list] = STATE(2748), - [sym__enum_base_clause] = STATE(2680), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), - [anon_sym_COMMA] = ACTIONS(8008), - [anon_sym_LPAREN2] = ACTIONS(8008), - [anon_sym_DASH] = ACTIONS(8006), - [anon_sym_PLUS] = ACTIONS(8006), - [anon_sym_STAR] = ACTIONS(8006), - [anon_sym_SLASH] = ACTIONS(8006), - [anon_sym_PERCENT] = ACTIONS(8006), - [anon_sym_PIPE_PIPE] = ACTIONS(8008), - [anon_sym_AMP_AMP] = ACTIONS(8008), - [anon_sym_PIPE] = ACTIONS(8006), - [anon_sym_CARET] = ACTIONS(8006), - [anon_sym_AMP] = ACTIONS(8006), - [anon_sym_EQ_EQ] = ACTIONS(8008), - [anon_sym_BANG_EQ] = ACTIONS(8008), - [anon_sym_GT] = ACTIONS(8006), - [anon_sym_GT_EQ] = ACTIONS(8008), - [anon_sym_LT_EQ] = ACTIONS(8006), - [anon_sym_LT] = ACTIONS(8006), - [anon_sym_LT_LT] = ACTIONS(8006), - [anon_sym_GT_GT] = ACTIONS(8006), - [anon_sym___extension__] = ACTIONS(8008), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_COLON] = ACTIONS(8474), - [anon_sym_LBRACE] = ACTIONS(8476), - [anon_sym_LBRACK] = ACTIONS(8008), - [anon_sym_RBRACK] = ACTIONS(8008), - [anon_sym_EQ] = ACTIONS(8006), - [anon_sym_const] = ACTIONS(8006), - [anon_sym_constexpr] = ACTIONS(8008), - [anon_sym_volatile] = ACTIONS(8008), - [anon_sym_restrict] = ACTIONS(8008), - [anon_sym___restrict__] = ACTIONS(8008), - [anon_sym__Atomic] = ACTIONS(8008), - [anon_sym__Noreturn] = ACTIONS(8008), - [anon_sym_noreturn] = ACTIONS(8008), - [anon_sym__Nonnull] = ACTIONS(8008), - [anon_sym_mutable] = ACTIONS(8008), - [anon_sym_constinit] = ACTIONS(8008), - [anon_sym_consteval] = ACTIONS(8008), - [anon_sym_alignas] = ACTIONS(8008), - [anon_sym__Alignas] = ACTIONS(8008), - [anon_sym_QMARK] = ACTIONS(8008), - [anon_sym_STAR_EQ] = ACTIONS(8008), - [anon_sym_SLASH_EQ] = ACTIONS(8008), - [anon_sym_PERCENT_EQ] = ACTIONS(8008), - [anon_sym_PLUS_EQ] = ACTIONS(8008), - [anon_sym_DASH_EQ] = ACTIONS(8008), - [anon_sym_LT_LT_EQ] = ACTIONS(8008), - [anon_sym_GT_GT_EQ] = ACTIONS(8008), - [anon_sym_AMP_EQ] = ACTIONS(8008), - [anon_sym_CARET_EQ] = ACTIONS(8008), - [anon_sym_PIPE_EQ] = ACTIONS(8008), - [anon_sym_and_eq] = ACTIONS(8008), - [anon_sym_or_eq] = ACTIONS(8008), - [anon_sym_xor_eq] = ACTIONS(8008), - [anon_sym_LT_EQ_GT] = ACTIONS(8008), - [anon_sym_or] = ACTIONS(8006), - [anon_sym_and] = ACTIONS(8006), - [anon_sym_bitor] = ACTIONS(8008), - [anon_sym_xor] = ACTIONS(8006), - [anon_sym_bitand] = ACTIONS(8008), - [anon_sym_not_eq] = ACTIONS(8008), - [anon_sym_DASH_DASH] = ACTIONS(8008), - [anon_sym_PLUS_PLUS] = ACTIONS(8008), - [anon_sym_DOT] = ACTIONS(8006), - [anon_sym_DOT_STAR] = ACTIONS(8008), - [anon_sym_DASH_GT] = ACTIONS(8008), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8008), - [anon_sym_override] = ACTIONS(8008), - [anon_sym_requires] = ACTIONS(8008), + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2579), + [sym__abstract_declarator] = STATE(6328), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3532), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3532), + [aux_sym_pointer_declarator_repeat1] = STATE(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(8453), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(8455), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(8457), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym_SEMI] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6819), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8136), + [sym_ms_signed_ptr_modifier] = ACTIONS(8136), + [anon_sym__unaligned] = ACTIONS(8138), + [anon_sym___unaligned] = ACTIONS(8138), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6815), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), }, [STATE(2573)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3923), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3075), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7789), - [anon_sym_or_eq] = ACTIONS(7789), - [anon_sym_xor_eq] = ACTIONS(7789), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7799), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7802), - [anon_sym_override] = ACTIONS(7802), - [anon_sym_requires] = ACTIONS(7805), + [sym_attribute_specifier] = STATE(2573), + [aux_sym_type_definition_repeat1] = STATE(2573), + [sym_identifier] = ACTIONS(6964), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6966), + [anon_sym_COMMA] = ACTIONS(6966), + [anon_sym_RPAREN] = ACTIONS(6966), + [aux_sym_preproc_if_token2] = ACTIONS(6966), + [aux_sym_preproc_else_token1] = ACTIONS(6966), + [aux_sym_preproc_elif_token1] = ACTIONS(6964), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6966), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6966), + [anon_sym_LPAREN2] = ACTIONS(6966), + [anon_sym_DASH] = ACTIONS(6964), + [anon_sym_PLUS] = ACTIONS(6964), + [anon_sym_STAR] = ACTIONS(6966), + [anon_sym_SLASH] = ACTIONS(6964), + [anon_sym_PERCENT] = ACTIONS(6966), + [anon_sym_PIPE_PIPE] = ACTIONS(6966), + [anon_sym_AMP_AMP] = ACTIONS(6966), + [anon_sym_PIPE] = ACTIONS(6964), + [anon_sym_CARET] = ACTIONS(6966), + [anon_sym_AMP] = ACTIONS(6964), + [anon_sym_EQ_EQ] = ACTIONS(6966), + [anon_sym_BANG_EQ] = ACTIONS(6966), + [anon_sym_GT] = ACTIONS(6964), + [anon_sym_GT_EQ] = ACTIONS(6966), + [anon_sym_LT_EQ] = ACTIONS(6964), + [anon_sym_LT] = ACTIONS(6964), + [anon_sym_LT_LT] = ACTIONS(6966), + [anon_sym_GT_GT] = ACTIONS(6966), + [anon_sym_SEMI] = ACTIONS(6966), + [anon_sym___extension__] = ACTIONS(6964), + [anon_sym___attribute__] = ACTIONS(8459), + [anon_sym___attribute] = ACTIONS(8459), + [anon_sym_COLON] = ACTIONS(6964), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6966), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6966), + [anon_sym_RBRACE] = ACTIONS(6966), + [anon_sym_LBRACK] = ACTIONS(6964), + [anon_sym_const] = ACTIONS(6964), + [anon_sym_constexpr] = ACTIONS(6964), + [anon_sym_volatile] = ACTIONS(6964), + [anon_sym_restrict] = ACTIONS(6964), + [anon_sym___restrict__] = ACTIONS(6964), + [anon_sym__Atomic] = ACTIONS(6964), + [anon_sym__Noreturn] = ACTIONS(6964), + [anon_sym_noreturn] = ACTIONS(6964), + [anon_sym__Nonnull] = ACTIONS(6964), + [anon_sym_mutable] = ACTIONS(6964), + [anon_sym_constinit] = ACTIONS(6964), + [anon_sym_consteval] = ACTIONS(6964), + [anon_sym_alignas] = ACTIONS(6964), + [anon_sym__Alignas] = ACTIONS(6964), + [anon_sym_QMARK] = ACTIONS(6966), + [anon_sym_LT_EQ_GT] = ACTIONS(6966), + [anon_sym_or] = ACTIONS(6964), + [anon_sym_and] = ACTIONS(6964), + [anon_sym_bitor] = ACTIONS(6964), + [anon_sym_xor] = ACTIONS(6964), + [anon_sym_bitand] = ACTIONS(6964), + [anon_sym_not_eq] = ACTIONS(6964), + [anon_sym_DASH_DASH] = ACTIONS(6966), + [anon_sym_PLUS_PLUS] = ACTIONS(6966), + [anon_sym_asm] = ACTIONS(6964), + [anon_sym___asm__] = ACTIONS(6964), + [anon_sym___asm] = ACTIONS(6964), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_DOT_STAR] = ACTIONS(6966), + [anon_sym_DASH_GT] = ACTIONS(6966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6964), + [anon_sym_override] = ACTIONS(6964), + [anon_sym_noexcept] = ACTIONS(6964), + [anon_sym_throw] = ACTIONS(6964), + [anon_sym_requires] = ACTIONS(6964), + [anon_sym_COLON_RBRACK] = ACTIONS(6966), }, [STATE(2574)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3924), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3076), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [aux_sym_preproc_if_token2] = ACTIONS(7966), - [aux_sym_preproc_else_token1] = ACTIONS(7966), - [aux_sym_preproc_elif_token1] = ACTIONS(7968), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7968), - [anon_sym_or_eq] = ACTIONS(7968), - [anon_sym_xor_eq] = ACTIONS(7968), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7968), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7968), - [anon_sym_not_eq] = ACTIONS(7968), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7991), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7994), - [anon_sym_override] = ACTIONS(7994), - [anon_sym_requires] = ACTIONS(7997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6586), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6586), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6586), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6586), + [anon_sym_GT_GT] = ACTIONS(6586), + [anon_sym___extension__] = ACTIONS(6588), + [anon_sym___attribute__] = ACTIONS(6588), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6588), + [anon_sym_RBRACK] = ACTIONS(6588), + [anon_sym_EQ] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6588), + [anon_sym_volatile] = ACTIONS(6588), + [anon_sym_restrict] = ACTIONS(6588), + [anon_sym___restrict__] = ACTIONS(6588), + [anon_sym__Atomic] = ACTIONS(6588), + [anon_sym__Noreturn] = ACTIONS(6588), + [anon_sym_noreturn] = ACTIONS(6588), + [anon_sym__Nonnull] = ACTIONS(6588), + [anon_sym_mutable] = ACTIONS(6588), + [anon_sym_constinit] = ACTIONS(6588), + [anon_sym_consteval] = ACTIONS(6588), + [anon_sym_alignas] = ACTIONS(6588), + [anon_sym__Alignas] = ACTIONS(6588), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_STAR_EQ] = ACTIONS(6588), + [anon_sym_SLASH_EQ] = ACTIONS(6588), + [anon_sym_PERCENT_EQ] = ACTIONS(6588), + [anon_sym_PLUS_EQ] = ACTIONS(6588), + [anon_sym_DASH_EQ] = ACTIONS(6588), + [anon_sym_LT_LT_EQ] = ACTIONS(6588), + [anon_sym_GT_GT_EQ] = ACTIONS(6588), + [anon_sym_AMP_EQ] = ACTIONS(6588), + [anon_sym_CARET_EQ] = ACTIONS(6588), + [anon_sym_PIPE_EQ] = ACTIONS(6588), + [anon_sym_and_eq] = ACTIONS(6588), + [anon_sym_or_eq] = ACTIONS(6588), + [anon_sym_xor_eq] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6588), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6588), + [anon_sym_not_eq] = ACTIONS(6588), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6588), + [anon_sym_decltype] = ACTIONS(6588), + [anon_sym_final] = ACTIONS(6588), + [anon_sym_override] = ACTIONS(6588), + [anon_sym_requires] = ACTIONS(6588), }, [STATE(2575)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3925), - [sym__function_postfix] = STATE(3675), - [sym_trailing_return_type] = STATE(3077), - [sym_requires_clause] = STATE(3675), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(8424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [aux_sym_preproc_if_token2] = ACTIONS(8422), - [aux_sym_preproc_else_token1] = ACTIONS(8422), - [aux_sym_preproc_elif_token1] = ACTIONS(8424), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8422), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8424), - [anon_sym_or_eq] = ACTIONS(8424), - [anon_sym_xor_eq] = ACTIONS(8424), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8424), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8424), - [anon_sym_not_eq] = ACTIONS(8424), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8478), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8481), - [anon_sym_override] = ACTIONS(8481), - [anon_sym_requires] = ACTIONS(8484), + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym__function_exception_specification] = STATE(3072), + [sym__function_attributes_end] = STATE(4390), + [sym__function_postfix] = STATE(5251), + [sym_trailing_return_type] = STATE(4491), + [sym_noexcept] = STATE(3072), + [sym_throw_specifier] = STATE(3072), + [sym_requires_clause] = STATE(5251), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_RBRACK] = ACTIONS(7874), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6717), + [anon_sym_override] = ACTIONS(6717), + [anon_sym_noexcept] = ACTIONS(6719), + [anon_sym_throw] = ACTIONS(6721), + [anon_sym_requires] = ACTIONS(6723), }, [STATE(2576)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_EQ] = 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_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3128), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3128), - [anon_sym_not_eq] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [anon_sym_DASH_GT_STAR] = ACTIONS(3118), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(6656), + [anon_sym_LPAREN2] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6649), + [anon_sym_PLUS] = ACTIONS(6649), + [anon_sym_STAR] = ACTIONS(6649), + [anon_sym_SLASH] = ACTIONS(6649), + [anon_sym_PERCENT] = ACTIONS(6649), + [anon_sym_PIPE_PIPE] = ACTIONS(6656), + [anon_sym_AMP_AMP] = ACTIONS(6656), + [anon_sym_PIPE] = ACTIONS(6649), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6649), + [anon_sym_EQ_EQ] = ACTIONS(6656), + [anon_sym_BANG_EQ] = ACTIONS(6656), + [anon_sym_GT] = ACTIONS(6649), + [anon_sym_GT_EQ] = ACTIONS(6649), + [anon_sym_LT_EQ] = ACTIONS(6649), + [anon_sym_LT] = ACTIONS(6649), + [anon_sym_LT_LT] = ACTIONS(6649), + [anon_sym_GT_GT] = ACTIONS(6649), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym___attribute__] = ACTIONS(6656), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6656), + [anon_sym_EQ] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6656), + [anon_sym_STAR_EQ] = ACTIONS(6656), + [anon_sym_SLASH_EQ] = ACTIONS(6656), + [anon_sym_PERCENT_EQ] = ACTIONS(6656), + [anon_sym_PLUS_EQ] = ACTIONS(6656), + [anon_sym_DASH_EQ] = ACTIONS(6656), + [anon_sym_LT_LT_EQ] = ACTIONS(6656), + [anon_sym_GT_GT_EQ] = ACTIONS(6649), + [anon_sym_AMP_EQ] = ACTIONS(6656), + [anon_sym_CARET_EQ] = ACTIONS(6656), + [anon_sym_PIPE_EQ] = ACTIONS(6656), + [anon_sym_and_eq] = ACTIONS(6656), + [anon_sym_or_eq] = ACTIONS(6656), + [anon_sym_xor_eq] = ACTIONS(6656), + [anon_sym_LT_EQ_GT] = ACTIONS(6656), + [anon_sym_or] = ACTIONS(6649), + [anon_sym_and] = ACTIONS(6649), + [anon_sym_bitor] = ACTIONS(6656), + [anon_sym_xor] = ACTIONS(6649), + [anon_sym_bitand] = ACTIONS(6656), + [anon_sym_not_eq] = ACTIONS(6656), + [anon_sym_DASH_DASH] = ACTIONS(6656), + [anon_sym_PLUS_PLUS] = ACTIONS(6656), + [anon_sym_DOT] = ACTIONS(6649), + [anon_sym_DOT_STAR] = ACTIONS(6656), + [anon_sym_DASH_GT] = ACTIONS(6656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_final] = ACTIONS(6656), + [anon_sym_override] = ACTIONS(6656), + [anon_sym_GT2] = ACTIONS(6656), + [anon_sym_requires] = ACTIONS(6656), }, [STATE(2577)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), - [anon_sym_COMMA] = ACTIONS(6601), - [anon_sym_LPAREN2] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6594), - [anon_sym_PLUS] = ACTIONS(6594), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(6594), - [anon_sym_PERCENT] = ACTIONS(6594), - [anon_sym_PIPE_PIPE] = ACTIONS(6601), - [anon_sym_AMP_AMP] = ACTIONS(6601), - [anon_sym_PIPE] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6594), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_EQ_EQ] = ACTIONS(6601), - [anon_sym_BANG_EQ] = ACTIONS(6601), - [anon_sym_GT] = ACTIONS(6594), - [anon_sym_GT_EQ] = ACTIONS(6601), - [anon_sym_LT_EQ] = ACTIONS(6594), - [anon_sym_LT] = ACTIONS(6594), - [anon_sym_LT_LT] = ACTIONS(6594), - [anon_sym_GT_GT] = ACTIONS(6594), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym___attribute__] = ACTIONS(6601), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6601), - [anon_sym_RBRACK] = ACTIONS(6601), - [anon_sym_EQ] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6601), - [anon_sym_STAR_EQ] = ACTIONS(6601), - [anon_sym_SLASH_EQ] = ACTIONS(6601), - [anon_sym_PERCENT_EQ] = ACTIONS(6601), - [anon_sym_PLUS_EQ] = ACTIONS(6601), - [anon_sym_DASH_EQ] = ACTIONS(6601), - [anon_sym_LT_LT_EQ] = ACTIONS(6601), - [anon_sym_GT_GT_EQ] = ACTIONS(6601), - [anon_sym_AMP_EQ] = ACTIONS(6601), - [anon_sym_CARET_EQ] = ACTIONS(6601), - [anon_sym_PIPE_EQ] = ACTIONS(6601), - [anon_sym_and_eq] = ACTIONS(6601), - [anon_sym_or_eq] = ACTIONS(6601), - [anon_sym_xor_eq] = ACTIONS(6601), - [anon_sym_LT_EQ_GT] = ACTIONS(6601), - [anon_sym_or] = ACTIONS(6594), - [anon_sym_and] = ACTIONS(6594), - [anon_sym_bitor] = ACTIONS(6601), - [anon_sym_xor] = ACTIONS(6594), - [anon_sym_bitand] = ACTIONS(6601), - [anon_sym_not_eq] = ACTIONS(6601), - [anon_sym_DASH_DASH] = ACTIONS(6601), - [anon_sym_PLUS_PLUS] = ACTIONS(6601), - [anon_sym_DOT] = ACTIONS(6594), - [anon_sym_DOT_STAR] = ACTIONS(6601), - [anon_sym_DASH_GT] = ACTIONS(6601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_final] = ACTIONS(6601), - [anon_sym_override] = ACTIONS(6601), - [anon_sym_requires] = ACTIONS(6601), + [sym_string_literal] = STATE(2591), + [sym_raw_string_literal] = STATE(2591), + [aux_sym_concatenated_string_repeat1] = STATE(2591), + [sym_identifier] = ACTIONS(8462), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8464), + [anon_sym_COMMA] = ACTIONS(8464), + [anon_sym_RPAREN] = ACTIONS(8464), + [aux_sym_preproc_if_token2] = ACTIONS(8464), + [aux_sym_preproc_else_token1] = ACTIONS(8464), + [aux_sym_preproc_elif_token1] = ACTIONS(8466), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8464), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8464), + [anon_sym_LPAREN2] = ACTIONS(8464), + [anon_sym_DASH] = ACTIONS(8466), + [anon_sym_PLUS] = ACTIONS(8466), + [anon_sym_STAR] = ACTIONS(8466), + [anon_sym_SLASH] = ACTIONS(8466), + [anon_sym_PERCENT] = ACTIONS(8466), + [anon_sym_PIPE_PIPE] = ACTIONS(8464), + [anon_sym_AMP_AMP] = ACTIONS(8464), + [anon_sym_PIPE] = ACTIONS(8466), + [anon_sym_CARET] = ACTIONS(8466), + [anon_sym_AMP] = ACTIONS(8466), + [anon_sym_EQ_EQ] = ACTIONS(8464), + [anon_sym_BANG_EQ] = ACTIONS(8464), + [anon_sym_GT] = ACTIONS(8466), + [anon_sym_GT_EQ] = ACTIONS(8464), + [anon_sym_LT_EQ] = ACTIONS(8466), + [anon_sym_LT] = ACTIONS(8466), + [anon_sym_LT_LT] = ACTIONS(8466), + [anon_sym_GT_GT] = ACTIONS(8466), + [anon_sym_SEMI] = ACTIONS(8464), + [anon_sym_COLON] = ACTIONS(8466), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8464), + [anon_sym_RBRACE] = ACTIONS(8464), + [anon_sym_LBRACK] = ACTIONS(8464), + [anon_sym_EQ] = ACTIONS(8466), + [anon_sym_QMARK] = ACTIONS(8464), + [anon_sym_STAR_EQ] = ACTIONS(8464), + [anon_sym_SLASH_EQ] = ACTIONS(8464), + [anon_sym_PERCENT_EQ] = ACTIONS(8464), + [anon_sym_PLUS_EQ] = ACTIONS(8464), + [anon_sym_DASH_EQ] = ACTIONS(8464), + [anon_sym_LT_LT_EQ] = ACTIONS(8464), + [anon_sym_GT_GT_EQ] = ACTIONS(8464), + [anon_sym_AMP_EQ] = ACTIONS(8464), + [anon_sym_CARET_EQ] = ACTIONS(8464), + [anon_sym_PIPE_EQ] = ACTIONS(8464), + [anon_sym_and_eq] = ACTIONS(8466), + [anon_sym_or_eq] = ACTIONS(8466), + [anon_sym_xor_eq] = ACTIONS(8466), + [anon_sym_LT_EQ_GT] = ACTIONS(8464), + [anon_sym_or] = ACTIONS(8466), + [anon_sym_and] = ACTIONS(8466), + [anon_sym_bitor] = ACTIONS(8466), + [anon_sym_xor] = ACTIONS(8466), + [anon_sym_bitand] = ACTIONS(8466), + [anon_sym_not_eq] = ACTIONS(8466), + [anon_sym_DASH_DASH] = ACTIONS(8464), + [anon_sym_PLUS_PLUS] = ACTIONS(8464), + [anon_sym_DOT] = ACTIONS(8466), + [anon_sym_DOT_STAR] = ACTIONS(8464), + [anon_sym_DASH_GT] = ACTIONS(8464), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_COLON_RBRACK] = ACTIONS(8464), + [sym_literal_suffix] = ACTIONS(8466), }, [STATE(2578)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_RPAREN] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym___attribute__] = ACTIONS(7077), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_LBRACE] = ACTIONS(7079), - [anon_sym_signed] = ACTIONS(7077), - [anon_sym_unsigned] = ACTIONS(7077), - [anon_sym_long] = ACTIONS(7077), - [anon_sym_short] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(7079), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [sym_primitive_type] = ACTIONS(7077), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7079), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7077), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7077), - [anon_sym_not_eq] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7077), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7077), - [anon_sym_override] = ACTIONS(7077), - [anon_sym_requires] = ACTIONS(7077), - [anon_sym_DASH_GT_STAR] = ACTIONS(7079), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6614), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_STAR_EQ] = ACTIONS(6616), + [anon_sym_SLASH_EQ] = ACTIONS(6616), + [anon_sym_PERCENT_EQ] = ACTIONS(6616), + [anon_sym_PLUS_EQ] = ACTIONS(6616), + [anon_sym_DASH_EQ] = ACTIONS(6616), + [anon_sym_LT_LT_EQ] = ACTIONS(6616), + [anon_sym_GT_GT_EQ] = ACTIONS(6614), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_and_eq] = ACTIONS(6616), + [anon_sym_or_eq] = ACTIONS(6616), + [anon_sym_xor_eq] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_final] = ACTIONS(6616), + [anon_sym_override] = ACTIONS(6616), + [anon_sym_GT2] = ACTIONS(6616), + [anon_sym_requires] = ACTIONS(6616), }, [STATE(2579)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_RBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2596), + [sym__abstract_declarator] = STATE(6310), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3546), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3546), + [aux_sym_pointer_declarator_repeat1] = STATE(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8453), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8455), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8457), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(6843), + [anon_sym___attribute] = ACTIONS(6841), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8136), + [sym_ms_signed_ptr_modifier] = ACTIONS(8136), + [anon_sym__unaligned] = ACTIONS(8138), + [anon_sym___unaligned] = ACTIONS(8138), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), }, [STATE(2580)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_RBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6596), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6598), + [anon_sym___attribute__] = ACTIONS(6598), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_RBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6598), + [anon_sym_volatile] = ACTIONS(6598), + [anon_sym_restrict] = ACTIONS(6598), + [anon_sym___restrict__] = ACTIONS(6598), + [anon_sym__Atomic] = ACTIONS(6598), + [anon_sym__Noreturn] = ACTIONS(6598), + [anon_sym_noreturn] = ACTIONS(6598), + [anon_sym__Nonnull] = ACTIONS(6598), + [anon_sym_mutable] = ACTIONS(6598), + [anon_sym_constinit] = ACTIONS(6598), + [anon_sym_consteval] = ACTIONS(6598), + [anon_sym_alignas] = ACTIONS(6598), + [anon_sym__Alignas] = ACTIONS(6598), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_and_eq] = ACTIONS(6598), + [anon_sym_or_eq] = ACTIONS(6598), + [anon_sym_xor_eq] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6598), + [anon_sym_decltype] = ACTIONS(6598), + [anon_sym_final] = ACTIONS(6598), + [anon_sym_override] = ACTIONS(6598), + [anon_sym_requires] = ACTIONS(6598), }, [STATE(2581)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym__function_exception_specification] = STATE(2987), - [sym__function_attributes_end] = STATE(4394), - [sym__function_postfix] = STATE(5110), - [sym_trailing_return_type] = STATE(4532), - [sym_noexcept] = STATE(2987), - [sym_throw_specifier] = STATE(2987), - [sym_requires_clause] = STATE(5110), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_RBRACK] = ACTIONS(7791), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8360), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6742), - [anon_sym_override] = ACTIONS(6742), - [anon_sym_noexcept] = ACTIONS(6735), - [anon_sym_throw] = ACTIONS(6737), - [anon_sym_requires] = ACTIONS(6744), + [sym_template_argument_list] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7117), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7117), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7117), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(8011), + [anon_sym_LT_LT] = ACTIONS(7117), + [anon_sym_GT_GT] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym___attribute__] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7122), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_and_eq] = ACTIONS(7122), + [anon_sym_or_eq] = ACTIONS(7122), + [anon_sym_xor_eq] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7122), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7122), + [anon_sym_not_eq] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7117), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7122), + [anon_sym_override] = ACTIONS(7122), + [anon_sym_requires] = ACTIONS(7122), + [anon_sym_DASH_GT_STAR] = ACTIONS(7122), }, [STATE(2582)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), - [anon_sym_COMMA] = ACTIONS(7303), - [anon_sym_LPAREN2] = ACTIONS(7303), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_STAR] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7301), - [anon_sym_PERCENT] = ACTIONS(7301), - [anon_sym_PIPE_PIPE] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7303), - [anon_sym_PIPE] = ACTIONS(7301), - [anon_sym_CARET] = ACTIONS(7301), - [anon_sym_AMP] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7303), - [anon_sym_BANG_EQ] = ACTIONS(7303), - [anon_sym_GT] = ACTIONS(7301), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_LT_EQ] = ACTIONS(7301), - [anon_sym_LT] = ACTIONS(7301), - [anon_sym_LT_LT] = ACTIONS(7301), - [anon_sym_GT_GT] = ACTIONS(7301), - [anon_sym___extension__] = ACTIONS(7303), - [anon_sym___attribute__] = ACTIONS(7303), - [anon_sym___attribute] = ACTIONS(7301), - [anon_sym_COLON] = ACTIONS(7301), - [anon_sym_COLON_COLON] = ACTIONS(7303), - [anon_sym_LBRACE] = ACTIONS(7303), - [anon_sym_LBRACK] = ACTIONS(7303), - [anon_sym_RBRACK] = ACTIONS(7303), - [anon_sym_EQ] = ACTIONS(7301), - [anon_sym_const] = ACTIONS(7301), - [anon_sym_constexpr] = ACTIONS(7303), - [anon_sym_volatile] = ACTIONS(7303), - [anon_sym_restrict] = ACTIONS(7303), - [anon_sym___restrict__] = ACTIONS(7303), - [anon_sym__Atomic] = ACTIONS(7303), - [anon_sym__Noreturn] = ACTIONS(7303), - [anon_sym_noreturn] = ACTIONS(7303), - [anon_sym__Nonnull] = ACTIONS(7303), - [anon_sym_mutable] = ACTIONS(7303), - [anon_sym_constinit] = ACTIONS(7303), - [anon_sym_consteval] = ACTIONS(7303), - [anon_sym_alignas] = ACTIONS(7303), - [anon_sym__Alignas] = ACTIONS(7303), - [anon_sym_QMARK] = ACTIONS(7303), - [anon_sym_STAR_EQ] = ACTIONS(7303), - [anon_sym_SLASH_EQ] = ACTIONS(7303), - [anon_sym_PERCENT_EQ] = ACTIONS(7303), - [anon_sym_PLUS_EQ] = ACTIONS(7303), - [anon_sym_DASH_EQ] = ACTIONS(7303), - [anon_sym_LT_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_GT_EQ] = ACTIONS(7303), - [anon_sym_AMP_EQ] = ACTIONS(7303), - [anon_sym_CARET_EQ] = ACTIONS(7303), - [anon_sym_PIPE_EQ] = ACTIONS(7303), - [anon_sym_and_eq] = ACTIONS(7303), - [anon_sym_or_eq] = ACTIONS(7303), - [anon_sym_xor_eq] = ACTIONS(7303), - [anon_sym_LT_EQ_GT] = ACTIONS(7303), - [anon_sym_or] = ACTIONS(7301), - [anon_sym_and] = ACTIONS(7301), - [anon_sym_bitor] = ACTIONS(7303), - [anon_sym_xor] = ACTIONS(7301), - [anon_sym_bitand] = ACTIONS(7303), - [anon_sym_not_eq] = ACTIONS(7303), - [anon_sym_DASH_DASH] = ACTIONS(7303), - [anon_sym_PLUS_PLUS] = ACTIONS(7303), - [anon_sym_DOT] = ACTIONS(7301), - [anon_sym_DOT_STAR] = ACTIONS(7303), - [anon_sym_DASH_GT] = ACTIONS(7303), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7303), - [anon_sym_decltype] = ACTIONS(7303), - [anon_sym_final] = ACTIONS(7303), - [anon_sym_override] = ACTIONS(7303), - [anon_sym_requires] = ACTIONS(7303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_RBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7329), + [anon_sym_or_eq] = ACTIONS(7329), + [anon_sym_xor_eq] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), }, [STATE(2583)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6612), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6612), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6612), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6612), - [anon_sym_GT_GT] = ACTIONS(6612), - [anon_sym___extension__] = ACTIONS(6614), - [anon_sym___attribute__] = ACTIONS(6614), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6614), - [anon_sym_RBRACK] = ACTIONS(6614), - [anon_sym_EQ] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6614), - [anon_sym_volatile] = ACTIONS(6614), - [anon_sym_restrict] = ACTIONS(6614), - [anon_sym___restrict__] = ACTIONS(6614), - [anon_sym__Atomic] = ACTIONS(6614), - [anon_sym__Noreturn] = ACTIONS(6614), - [anon_sym_noreturn] = ACTIONS(6614), - [anon_sym__Nonnull] = ACTIONS(6614), - [anon_sym_mutable] = ACTIONS(6614), - [anon_sym_constinit] = ACTIONS(6614), - [anon_sym_consteval] = ACTIONS(6614), - [anon_sym_alignas] = ACTIONS(6614), - [anon_sym__Alignas] = ACTIONS(6614), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_STAR_EQ] = ACTIONS(6614), - [anon_sym_SLASH_EQ] = ACTIONS(6614), - [anon_sym_PERCENT_EQ] = ACTIONS(6614), - [anon_sym_PLUS_EQ] = ACTIONS(6614), - [anon_sym_DASH_EQ] = ACTIONS(6614), - [anon_sym_LT_LT_EQ] = ACTIONS(6614), - [anon_sym_GT_GT_EQ] = ACTIONS(6614), - [anon_sym_AMP_EQ] = ACTIONS(6614), - [anon_sym_CARET_EQ] = ACTIONS(6614), - [anon_sym_PIPE_EQ] = ACTIONS(6614), - [anon_sym_and_eq] = ACTIONS(6614), - [anon_sym_or_eq] = ACTIONS(6614), - [anon_sym_xor_eq] = ACTIONS(6614), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6614), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6614), - [anon_sym_not_eq] = ACTIONS(6614), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6614), - [anon_sym_decltype] = ACTIONS(6614), - [anon_sym_final] = ACTIONS(6614), - [anon_sym_override] = ACTIONS(6614), - [anon_sym_requires] = ACTIONS(6614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7327), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7327), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7329), + [anon_sym_or_eq] = ACTIONS(7329), + [anon_sym_xor_eq] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_GT2] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), }, [STATE(2584)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2586), - [sym__abstract_declarator] = STATE(6302), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3579), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2072), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3579), - [aux_sym_pointer_declarator_repeat1] = STATE(2586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(8487), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(8489), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6859), - [anon_sym_AMP] = ACTIONS(8491), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6859), - [anon_sym_GT_GT] = ACTIONS(6859), - [anon_sym_SEMI] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(6861), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6859), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), - [sym_ms_signed_ptr_modifier] = ACTIONS(8119), - [anon_sym__unaligned] = ACTIONS(8121), - [anon_sym___unaligned] = ACTIONS(8121), - [anon_sym_RBRACE] = ACTIONS(6859), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6859), - [anon_sym_and] = ACTIONS(6859), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6859), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6859), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2948), + [sym__function_attributes_end] = STATE(4185), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3033), + [sym_noexcept] = STATE(2948), + [sym_throw_specifier] = STATE(2948), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(8235), + [anon_sym___attribute] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(6545), }, [STATE(2585)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6632), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6632), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6632), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6632), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6632), - [anon_sym_GT_GT] = ACTIONS(6632), - [anon_sym___extension__] = ACTIONS(6634), - [anon_sym___attribute__] = ACTIONS(6634), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6634), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6634), - [anon_sym_volatile] = ACTIONS(6634), - [anon_sym_restrict] = ACTIONS(6634), - [anon_sym___restrict__] = ACTIONS(6634), - [anon_sym__Atomic] = ACTIONS(6634), - [anon_sym__Noreturn] = ACTIONS(6634), - [anon_sym_noreturn] = ACTIONS(6634), - [anon_sym__Nonnull] = ACTIONS(6634), - [anon_sym_mutable] = ACTIONS(6634), - [anon_sym_constinit] = ACTIONS(6634), - [anon_sym_consteval] = ACTIONS(6634), - [anon_sym_alignas] = ACTIONS(6634), - [anon_sym__Alignas] = ACTIONS(6634), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_STAR_EQ] = ACTIONS(6634), - [anon_sym_SLASH_EQ] = ACTIONS(6634), - [anon_sym_PERCENT_EQ] = ACTIONS(6634), - [anon_sym_PLUS_EQ] = ACTIONS(6634), - [anon_sym_DASH_EQ] = ACTIONS(6634), - [anon_sym_LT_LT_EQ] = ACTIONS(6634), - [anon_sym_GT_GT_EQ] = ACTIONS(6632), - [anon_sym_AMP_EQ] = ACTIONS(6634), - [anon_sym_CARET_EQ] = ACTIONS(6634), - [anon_sym_PIPE_EQ] = ACTIONS(6634), - [anon_sym_and_eq] = ACTIONS(6634), - [anon_sym_or_eq] = ACTIONS(6634), - [anon_sym_xor_eq] = ACTIONS(6634), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6634), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6634), - [anon_sym_not_eq] = ACTIONS(6634), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6634), - [anon_sym_decltype] = ACTIONS(6634), - [anon_sym_final] = ACTIONS(6634), - [anon_sym_override] = ACTIONS(6634), - [anon_sym_GT2] = ACTIONS(6634), - [anon_sym_requires] = ACTIONS(6634), + [sym_string_literal] = STATE(2585), + [sym_raw_string_literal] = STATE(2585), + [aux_sym_concatenated_string_repeat1] = STATE(2585), + [sym_identifier] = ACTIONS(8468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8471), + [anon_sym_COMMA] = ACTIONS(8471), + [anon_sym_RPAREN] = ACTIONS(8471), + [aux_sym_preproc_if_token2] = ACTIONS(8471), + [aux_sym_preproc_else_token1] = ACTIONS(8471), + [aux_sym_preproc_elif_token1] = ACTIONS(8473), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8471), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8471), + [anon_sym_LPAREN2] = ACTIONS(8471), + [anon_sym_DASH] = ACTIONS(8473), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_STAR] = ACTIONS(8473), + [anon_sym_SLASH] = ACTIONS(8473), + [anon_sym_PERCENT] = ACTIONS(8473), + [anon_sym_PIPE_PIPE] = ACTIONS(8471), + [anon_sym_AMP_AMP] = ACTIONS(8471), + [anon_sym_PIPE] = ACTIONS(8473), + [anon_sym_CARET] = ACTIONS(8473), + [anon_sym_AMP] = ACTIONS(8473), + [anon_sym_EQ_EQ] = ACTIONS(8471), + [anon_sym_BANG_EQ] = ACTIONS(8471), + [anon_sym_GT] = ACTIONS(8473), + [anon_sym_GT_EQ] = ACTIONS(8471), + [anon_sym_LT_EQ] = ACTIONS(8473), + [anon_sym_LT] = ACTIONS(8473), + [anon_sym_LT_LT] = ACTIONS(8473), + [anon_sym_GT_GT] = ACTIONS(8473), + [anon_sym_SEMI] = ACTIONS(8471), + [anon_sym_COLON] = ACTIONS(8473), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8471), + [anon_sym_RBRACE] = ACTIONS(8471), + [anon_sym_LBRACK] = ACTIONS(8471), + [anon_sym_EQ] = ACTIONS(8473), + [anon_sym_QMARK] = ACTIONS(8471), + [anon_sym_STAR_EQ] = ACTIONS(8471), + [anon_sym_SLASH_EQ] = ACTIONS(8471), + [anon_sym_PERCENT_EQ] = ACTIONS(8471), + [anon_sym_PLUS_EQ] = ACTIONS(8471), + [anon_sym_DASH_EQ] = ACTIONS(8471), + [anon_sym_LT_LT_EQ] = ACTIONS(8471), + [anon_sym_GT_GT_EQ] = ACTIONS(8471), + [anon_sym_AMP_EQ] = ACTIONS(8471), + [anon_sym_CARET_EQ] = ACTIONS(8471), + [anon_sym_PIPE_EQ] = ACTIONS(8471), + [anon_sym_and_eq] = ACTIONS(8473), + [anon_sym_or_eq] = ACTIONS(8473), + [anon_sym_xor_eq] = ACTIONS(8473), + [anon_sym_LT_EQ_GT] = ACTIONS(8471), + [anon_sym_or] = ACTIONS(8473), + [anon_sym_and] = ACTIONS(8473), + [anon_sym_bitor] = ACTIONS(8473), + [anon_sym_xor] = ACTIONS(8473), + [anon_sym_bitand] = ACTIONS(8473), + [anon_sym_not_eq] = ACTIONS(8473), + [anon_sym_DASH_DASH] = ACTIONS(8471), + [anon_sym_PLUS_PLUS] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8473), + [anon_sym_DOT_STAR] = ACTIONS(8471), + [anon_sym_DASH_GT] = ACTIONS(8471), + [anon_sym_L_DQUOTE] = ACTIONS(8475), + [anon_sym_u_DQUOTE] = ACTIONS(8475), + [anon_sym_U_DQUOTE] = ACTIONS(8475), + [anon_sym_u8_DQUOTE] = ACTIONS(8475), + [anon_sym_DQUOTE] = ACTIONS(8475), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8478), + [anon_sym_LR_DQUOTE] = ACTIONS(8478), + [anon_sym_uR_DQUOTE] = ACTIONS(8478), + [anon_sym_UR_DQUOTE] = ACTIONS(8478), + [anon_sym_u8R_DQUOTE] = ACTIONS(8478), + [anon_sym_COLON_RBRACK] = ACTIONS(8471), + [sym_literal_suffix] = ACTIONS(8473), }, [STATE(2586)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2595), - [sym__abstract_declarator] = STATE(6346), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3584), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2072), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3584), - [aux_sym_pointer_declarator_repeat1] = STATE(2595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8487), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8489), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8491), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), - [sym_ms_signed_ptr_modifier] = ACTIONS(8119), - [anon_sym__unaligned] = ACTIONS(8121), - [anon_sym___unaligned] = ACTIONS(8121), - [anon_sym_RBRACE] = ACTIONS(6823), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7327), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7327), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7329), + [anon_sym_or_eq] = ACTIONS(7329), + [anon_sym_xor_eq] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_GT2] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), }, [STATE(2587)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6612), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6612), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6612), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6612), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6612), - [anon_sym_GT_GT] = ACTIONS(6612), - [anon_sym___extension__] = ACTIONS(6614), - [anon_sym___attribute__] = ACTIONS(6614), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6614), - [anon_sym_EQ] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6614), - [anon_sym_volatile] = ACTIONS(6614), - [anon_sym_restrict] = ACTIONS(6614), - [anon_sym___restrict__] = ACTIONS(6614), - [anon_sym__Atomic] = ACTIONS(6614), - [anon_sym__Noreturn] = ACTIONS(6614), - [anon_sym_noreturn] = ACTIONS(6614), - [anon_sym__Nonnull] = ACTIONS(6614), - [anon_sym_mutable] = ACTIONS(6614), - [anon_sym_constinit] = ACTIONS(6614), - [anon_sym_consteval] = ACTIONS(6614), - [anon_sym_alignas] = ACTIONS(6614), - [anon_sym__Alignas] = ACTIONS(6614), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_STAR_EQ] = ACTIONS(6614), - [anon_sym_SLASH_EQ] = ACTIONS(6614), - [anon_sym_PERCENT_EQ] = ACTIONS(6614), - [anon_sym_PLUS_EQ] = ACTIONS(6614), - [anon_sym_DASH_EQ] = ACTIONS(6614), - [anon_sym_LT_LT_EQ] = ACTIONS(6614), - [anon_sym_GT_GT_EQ] = ACTIONS(6612), - [anon_sym_AMP_EQ] = ACTIONS(6614), - [anon_sym_CARET_EQ] = ACTIONS(6614), - [anon_sym_PIPE_EQ] = ACTIONS(6614), - [anon_sym_and_eq] = ACTIONS(6614), - [anon_sym_or_eq] = ACTIONS(6614), - [anon_sym_xor_eq] = ACTIONS(6614), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6614), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6614), - [anon_sym_not_eq] = ACTIONS(6614), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6614), - [anon_sym_decltype] = ACTIONS(6614), - [anon_sym_final] = ACTIONS(6614), - [anon_sym_override] = ACTIONS(6614), - [anon_sym_GT2] = ACTIONS(6614), - [anon_sym_requires] = ACTIONS(6614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7333), + [anon_sym_COMMA] = ACTIONS(7333), + [anon_sym_LPAREN2] = ACTIONS(7333), + [anon_sym_DASH] = ACTIONS(7331), + [anon_sym_PLUS] = ACTIONS(7331), + [anon_sym_STAR] = ACTIONS(7331), + [anon_sym_SLASH] = ACTIONS(7331), + [anon_sym_PERCENT] = ACTIONS(7331), + [anon_sym_PIPE_PIPE] = ACTIONS(7333), + [anon_sym_AMP_AMP] = ACTIONS(7333), + [anon_sym_PIPE] = ACTIONS(7331), + [anon_sym_CARET] = ACTIONS(7331), + [anon_sym_AMP] = ACTIONS(7331), + [anon_sym_EQ_EQ] = ACTIONS(7333), + [anon_sym_BANG_EQ] = ACTIONS(7333), + [anon_sym_GT] = ACTIONS(7331), + [anon_sym_GT_EQ] = ACTIONS(7331), + [anon_sym_LT_EQ] = ACTIONS(7331), + [anon_sym_LT] = ACTIONS(7331), + [anon_sym_LT_LT] = ACTIONS(7331), + [anon_sym_GT_GT] = ACTIONS(7331), + [anon_sym___extension__] = ACTIONS(7333), + [anon_sym___attribute__] = ACTIONS(7333), + [anon_sym___attribute] = ACTIONS(7331), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_COLON_COLON] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7333), + [anon_sym_LBRACK] = ACTIONS(7333), + [anon_sym_EQ] = ACTIONS(7331), + [anon_sym_const] = ACTIONS(7331), + [anon_sym_constexpr] = ACTIONS(7333), + [anon_sym_volatile] = ACTIONS(7333), + [anon_sym_restrict] = ACTIONS(7333), + [anon_sym___restrict__] = ACTIONS(7333), + [anon_sym__Atomic] = ACTIONS(7333), + [anon_sym__Noreturn] = ACTIONS(7333), + [anon_sym_noreturn] = ACTIONS(7333), + [anon_sym__Nonnull] = ACTIONS(7333), + [anon_sym_mutable] = ACTIONS(7333), + [anon_sym_constinit] = ACTIONS(7333), + [anon_sym_consteval] = ACTIONS(7333), + [anon_sym_alignas] = ACTIONS(7333), + [anon_sym__Alignas] = ACTIONS(7333), + [anon_sym_QMARK] = ACTIONS(7333), + [anon_sym_STAR_EQ] = ACTIONS(7333), + [anon_sym_SLASH_EQ] = ACTIONS(7333), + [anon_sym_PERCENT_EQ] = ACTIONS(7333), + [anon_sym_PLUS_EQ] = ACTIONS(7333), + [anon_sym_DASH_EQ] = ACTIONS(7333), + [anon_sym_LT_LT_EQ] = ACTIONS(7333), + [anon_sym_GT_GT_EQ] = ACTIONS(7331), + [anon_sym_AMP_EQ] = ACTIONS(7333), + [anon_sym_CARET_EQ] = ACTIONS(7333), + [anon_sym_PIPE_EQ] = ACTIONS(7333), + [anon_sym_and_eq] = ACTIONS(7333), + [anon_sym_or_eq] = ACTIONS(7333), + [anon_sym_xor_eq] = ACTIONS(7333), + [anon_sym_LT_EQ_GT] = ACTIONS(7333), + [anon_sym_or] = ACTIONS(7331), + [anon_sym_and] = ACTIONS(7331), + [anon_sym_bitor] = ACTIONS(7333), + [anon_sym_xor] = ACTIONS(7331), + [anon_sym_bitand] = ACTIONS(7333), + [anon_sym_not_eq] = ACTIONS(7333), + [anon_sym_DASH_DASH] = ACTIONS(7333), + [anon_sym_PLUS_PLUS] = ACTIONS(7333), + [anon_sym_DOT] = ACTIONS(7331), + [anon_sym_DOT_STAR] = ACTIONS(7333), + [anon_sym_DASH_GT] = ACTIONS(7333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7333), + [anon_sym_decltype] = ACTIONS(7333), + [anon_sym_final] = ACTIONS(7333), + [anon_sym_override] = ACTIONS(7333), + [anon_sym_GT2] = ACTIONS(7333), + [anon_sym_requires] = ACTIONS(7333), }, [STATE(2588)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6624), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6624), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6624), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6624), - [anon_sym_GT_GT] = ACTIONS(6624), - [anon_sym___extension__] = ACTIONS(6626), - [anon_sym___attribute__] = ACTIONS(6626), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6626), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6626), - [anon_sym_volatile] = ACTIONS(6626), - [anon_sym_restrict] = ACTIONS(6626), - [anon_sym___restrict__] = ACTIONS(6626), - [anon_sym__Atomic] = ACTIONS(6626), - [anon_sym__Noreturn] = ACTIONS(6626), - [anon_sym_noreturn] = ACTIONS(6626), - [anon_sym__Nonnull] = ACTIONS(6626), - [anon_sym_mutable] = ACTIONS(6626), - [anon_sym_constinit] = ACTIONS(6626), - [anon_sym_consteval] = ACTIONS(6626), - [anon_sym_alignas] = ACTIONS(6626), - [anon_sym__Alignas] = ACTIONS(6626), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_STAR_EQ] = ACTIONS(6626), - [anon_sym_SLASH_EQ] = ACTIONS(6626), - [anon_sym_PERCENT_EQ] = ACTIONS(6626), - [anon_sym_PLUS_EQ] = ACTIONS(6626), - [anon_sym_DASH_EQ] = ACTIONS(6626), - [anon_sym_LT_LT_EQ] = ACTIONS(6626), - [anon_sym_GT_GT_EQ] = ACTIONS(6624), - [anon_sym_AMP_EQ] = ACTIONS(6626), - [anon_sym_CARET_EQ] = ACTIONS(6626), - [anon_sym_PIPE_EQ] = ACTIONS(6626), - [anon_sym_and_eq] = ACTIONS(6626), - [anon_sym_or_eq] = ACTIONS(6626), - [anon_sym_xor_eq] = ACTIONS(6626), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6626), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6626), - [anon_sym_not_eq] = ACTIONS(6626), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6626), - [anon_sym_decltype] = ACTIONS(6626), - [anon_sym_final] = ACTIONS(6626), - [anon_sym_override] = ACTIONS(6626), - [anon_sym_GT2] = ACTIONS(6626), - [anon_sym_requires] = ACTIONS(6626), + [aux_sym_sized_type_specifier_repeat1] = STATE(2415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(8218), + [anon_sym_unsigned] = ACTIONS(8218), + [anon_sym_long] = ACTIONS(8218), + [anon_sym_short] = ACTIONS(8218), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(2589)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6628), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6628), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6628), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6628), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6628), - [anon_sym_GT_GT] = ACTIONS(6628), - [anon_sym___extension__] = ACTIONS(6630), - [anon_sym___attribute__] = ACTIONS(6630), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6630), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6630), - [anon_sym_volatile] = ACTIONS(6630), - [anon_sym_restrict] = ACTIONS(6630), - [anon_sym___restrict__] = ACTIONS(6630), - [anon_sym__Atomic] = ACTIONS(6630), - [anon_sym__Noreturn] = ACTIONS(6630), - [anon_sym_noreturn] = ACTIONS(6630), - [anon_sym__Nonnull] = ACTIONS(6630), - [anon_sym_mutable] = ACTIONS(6630), - [anon_sym_constinit] = ACTIONS(6630), - [anon_sym_consteval] = ACTIONS(6630), - [anon_sym_alignas] = ACTIONS(6630), - [anon_sym__Alignas] = ACTIONS(6630), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_STAR_EQ] = ACTIONS(6630), - [anon_sym_SLASH_EQ] = ACTIONS(6630), - [anon_sym_PERCENT_EQ] = ACTIONS(6630), - [anon_sym_PLUS_EQ] = ACTIONS(6630), - [anon_sym_DASH_EQ] = ACTIONS(6630), - [anon_sym_LT_LT_EQ] = ACTIONS(6630), - [anon_sym_GT_GT_EQ] = ACTIONS(6628), - [anon_sym_AMP_EQ] = ACTIONS(6630), - [anon_sym_CARET_EQ] = ACTIONS(6630), - [anon_sym_PIPE_EQ] = ACTIONS(6630), - [anon_sym_and_eq] = ACTIONS(6630), - [anon_sym_or_eq] = ACTIONS(6630), - [anon_sym_xor_eq] = ACTIONS(6630), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6630), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6630), - [anon_sym_not_eq] = ACTIONS(6630), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6630), - [anon_sym_decltype] = ACTIONS(6630), - [anon_sym_final] = ACTIONS(6630), - [anon_sym_override] = ACTIONS(6630), - [anon_sym_GT2] = ACTIONS(6630), - [anon_sym_requires] = ACTIONS(6630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(6604), + [anon_sym___attribute__] = ACTIONS(6604), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6604), + [anon_sym_RBRACK] = ACTIONS(6604), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6604), + [anon_sym_volatile] = ACTIONS(6604), + [anon_sym_restrict] = ACTIONS(6604), + [anon_sym___restrict__] = ACTIONS(6604), + [anon_sym__Atomic] = ACTIONS(6604), + [anon_sym__Noreturn] = ACTIONS(6604), + [anon_sym_noreturn] = ACTIONS(6604), + [anon_sym__Nonnull] = ACTIONS(6604), + [anon_sym_mutable] = ACTIONS(6604), + [anon_sym_constinit] = ACTIONS(6604), + [anon_sym_consteval] = ACTIONS(6604), + [anon_sym_alignas] = ACTIONS(6604), + [anon_sym__Alignas] = ACTIONS(6604), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_STAR_EQ] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [anon_sym_PERCENT_EQ] = ACTIONS(6604), + [anon_sym_PLUS_EQ] = ACTIONS(6604), + [anon_sym_DASH_EQ] = ACTIONS(6604), + [anon_sym_LT_LT_EQ] = ACTIONS(6604), + [anon_sym_GT_GT_EQ] = ACTIONS(6604), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_and_eq] = ACTIONS(6604), + [anon_sym_or_eq] = ACTIONS(6604), + [anon_sym_xor_eq] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6604), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6604), + [anon_sym_not_eq] = ACTIONS(6604), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6604), + [anon_sym_decltype] = ACTIONS(6604), + [anon_sym_final] = ACTIONS(6604), + [anon_sym_override] = ACTIONS(6604), + [anon_sym_requires] = ACTIONS(6604), }, [STATE(2590)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(8211), - [anon_sym_unsigned] = ACTIONS(8211), - [anon_sym_long] = ACTIONS(8211), - [anon_sym_short] = ACTIONS(8211), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(2591)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6608), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), [anon_sym_GT_EQ] = ACTIONS(6608), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6608), - [anon_sym_GT_GT] = ACTIONS(6608), - [anon_sym___extension__] = ACTIONS(6610), - [anon_sym___attribute__] = ACTIONS(6610), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6610), - [anon_sym_EQ] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6610), - [anon_sym_volatile] = ACTIONS(6610), - [anon_sym_restrict] = ACTIONS(6610), - [anon_sym___restrict__] = ACTIONS(6610), - [anon_sym__Atomic] = ACTIONS(6610), - [anon_sym__Noreturn] = ACTIONS(6610), - [anon_sym_noreturn] = ACTIONS(6610), - [anon_sym__Nonnull] = ACTIONS(6610), - [anon_sym_mutable] = ACTIONS(6610), - [anon_sym_constinit] = ACTIONS(6610), - [anon_sym_consteval] = ACTIONS(6610), - [anon_sym_alignas] = ACTIONS(6610), - [anon_sym__Alignas] = ACTIONS(6610), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_STAR_EQ] = ACTIONS(6610), - [anon_sym_SLASH_EQ] = ACTIONS(6610), - [anon_sym_PERCENT_EQ] = ACTIONS(6610), - [anon_sym_PLUS_EQ] = ACTIONS(6610), - [anon_sym_DASH_EQ] = ACTIONS(6610), - [anon_sym_LT_LT_EQ] = ACTIONS(6610), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6606), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_RBRACK] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_STAR_EQ] = ACTIONS(6608), + [anon_sym_SLASH_EQ] = ACTIONS(6608), + [anon_sym_PERCENT_EQ] = ACTIONS(6608), + [anon_sym_PLUS_EQ] = ACTIONS(6608), + [anon_sym_DASH_EQ] = ACTIONS(6608), + [anon_sym_LT_LT_EQ] = ACTIONS(6608), [anon_sym_GT_GT_EQ] = ACTIONS(6608), - [anon_sym_AMP_EQ] = ACTIONS(6610), - [anon_sym_CARET_EQ] = ACTIONS(6610), - [anon_sym_PIPE_EQ] = ACTIONS(6610), - [anon_sym_and_eq] = ACTIONS(6610), - [anon_sym_or_eq] = ACTIONS(6610), - [anon_sym_xor_eq] = ACTIONS(6610), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6610), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6610), - [anon_sym_not_eq] = ACTIONS(6610), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6610), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_and_eq] = ACTIONS(6608), + [anon_sym_or_eq] = ACTIONS(6608), + [anon_sym_xor_eq] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6610), - [anon_sym_decltype] = ACTIONS(6610), - [anon_sym_final] = ACTIONS(6610), - [anon_sym_override] = ACTIONS(6610), - [anon_sym_GT2] = ACTIONS(6610), - [anon_sym_requires] = ACTIONS(6610), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_final] = ACTIONS(6608), + [anon_sym_override] = ACTIONS(6608), + [anon_sym_requires] = ACTIONS(6608), + }, + [STATE(2591)] = { + [sym_string_literal] = STATE(2585), + [sym_raw_string_literal] = STATE(2585), + [aux_sym_concatenated_string_repeat1] = STATE(2585), + [sym_identifier] = ACTIONS(8481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(8483), + [anon_sym_RPAREN] = ACTIONS(8483), + [aux_sym_preproc_if_token2] = ACTIONS(8483), + [aux_sym_preproc_else_token1] = ACTIONS(8483), + [aux_sym_preproc_elif_token1] = ACTIONS(8485), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8483), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8483), + [anon_sym_LPAREN2] = ACTIONS(8483), + [anon_sym_DASH] = ACTIONS(8485), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_STAR] = ACTIONS(8485), + [anon_sym_SLASH] = ACTIONS(8485), + [anon_sym_PERCENT] = ACTIONS(8485), + [anon_sym_PIPE_PIPE] = ACTIONS(8483), + [anon_sym_AMP_AMP] = ACTIONS(8483), + [anon_sym_PIPE] = ACTIONS(8485), + [anon_sym_CARET] = ACTIONS(8485), + [anon_sym_AMP] = ACTIONS(8485), + [anon_sym_EQ_EQ] = ACTIONS(8483), + [anon_sym_BANG_EQ] = ACTIONS(8483), + [anon_sym_GT] = ACTIONS(8485), + [anon_sym_GT_EQ] = ACTIONS(8483), + [anon_sym_LT_EQ] = ACTIONS(8485), + [anon_sym_LT] = ACTIONS(8485), + [anon_sym_LT_LT] = ACTIONS(8485), + [anon_sym_GT_GT] = ACTIONS(8485), + [anon_sym_SEMI] = ACTIONS(8483), + [anon_sym_COLON] = ACTIONS(8485), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8483), + [anon_sym_RBRACE] = ACTIONS(8483), + [anon_sym_LBRACK] = ACTIONS(8483), + [anon_sym_EQ] = ACTIONS(8485), + [anon_sym_QMARK] = ACTIONS(8483), + [anon_sym_STAR_EQ] = ACTIONS(8483), + [anon_sym_SLASH_EQ] = ACTIONS(8483), + [anon_sym_PERCENT_EQ] = ACTIONS(8483), + [anon_sym_PLUS_EQ] = ACTIONS(8483), + [anon_sym_DASH_EQ] = ACTIONS(8483), + [anon_sym_LT_LT_EQ] = ACTIONS(8483), + [anon_sym_GT_GT_EQ] = ACTIONS(8483), + [anon_sym_AMP_EQ] = ACTIONS(8483), + [anon_sym_CARET_EQ] = ACTIONS(8483), + [anon_sym_PIPE_EQ] = ACTIONS(8483), + [anon_sym_and_eq] = ACTIONS(8485), + [anon_sym_or_eq] = ACTIONS(8485), + [anon_sym_xor_eq] = ACTIONS(8485), + [anon_sym_LT_EQ_GT] = ACTIONS(8483), + [anon_sym_or] = ACTIONS(8485), + [anon_sym_and] = ACTIONS(8485), + [anon_sym_bitor] = ACTIONS(8485), + [anon_sym_xor] = ACTIONS(8485), + [anon_sym_bitand] = ACTIONS(8485), + [anon_sym_not_eq] = ACTIONS(8485), + [anon_sym_DASH_DASH] = ACTIONS(8483), + [anon_sym_PLUS_PLUS] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8485), + [anon_sym_DOT_STAR] = ACTIONS(8483), + [anon_sym_DASH_GT] = ACTIONS(8483), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_COLON_RBRACK] = ACTIONS(8483), + [sym_literal_suffix] = ACTIONS(8485), }, [STATE(2592)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6616), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6616), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6616), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6616), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6616), - [anon_sym_GT_GT] = ACTIONS(6616), - [anon_sym___extension__] = ACTIONS(6618), - [anon_sym___attribute__] = ACTIONS(6618), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6618), - [anon_sym_EQ] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6618), - [anon_sym_volatile] = ACTIONS(6618), - [anon_sym_restrict] = ACTIONS(6618), - [anon_sym___restrict__] = ACTIONS(6618), - [anon_sym__Atomic] = ACTIONS(6618), - [anon_sym__Noreturn] = ACTIONS(6618), - [anon_sym_noreturn] = ACTIONS(6618), - [anon_sym__Nonnull] = ACTIONS(6618), - [anon_sym_mutable] = ACTIONS(6618), - [anon_sym_constinit] = ACTIONS(6618), - [anon_sym_consteval] = ACTIONS(6618), - [anon_sym_alignas] = ACTIONS(6618), - [anon_sym__Alignas] = ACTIONS(6618), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_STAR_EQ] = ACTIONS(6618), - [anon_sym_SLASH_EQ] = ACTIONS(6618), - [anon_sym_PERCENT_EQ] = ACTIONS(6618), - [anon_sym_PLUS_EQ] = ACTIONS(6618), - [anon_sym_DASH_EQ] = ACTIONS(6618), - [anon_sym_LT_LT_EQ] = ACTIONS(6618), - [anon_sym_GT_GT_EQ] = ACTIONS(6616), - [anon_sym_AMP_EQ] = ACTIONS(6618), - [anon_sym_CARET_EQ] = ACTIONS(6618), - [anon_sym_PIPE_EQ] = ACTIONS(6618), - [anon_sym_and_eq] = ACTIONS(6618), - [anon_sym_or_eq] = ACTIONS(6618), - [anon_sym_xor_eq] = ACTIONS(6618), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6618), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6618), - [anon_sym_not_eq] = ACTIONS(6618), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6618), - [anon_sym_decltype] = ACTIONS(6618), - [anon_sym_final] = ACTIONS(6618), - [anon_sym_override] = ACTIONS(6618), - [anon_sym_GT2] = ACTIONS(6618), - [anon_sym_requires] = ACTIONS(6618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6590), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6590), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6590), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6590), + [anon_sym_GT_GT] = ACTIONS(6590), + [anon_sym___extension__] = ACTIONS(6592), + [anon_sym___attribute__] = ACTIONS(6592), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6592), + [anon_sym_RBRACK] = ACTIONS(6592), + [anon_sym_EQ] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6592), + [anon_sym_volatile] = ACTIONS(6592), + [anon_sym_restrict] = ACTIONS(6592), + [anon_sym___restrict__] = ACTIONS(6592), + [anon_sym__Atomic] = ACTIONS(6592), + [anon_sym__Noreturn] = ACTIONS(6592), + [anon_sym_noreturn] = ACTIONS(6592), + [anon_sym__Nonnull] = ACTIONS(6592), + [anon_sym_mutable] = ACTIONS(6592), + [anon_sym_constinit] = ACTIONS(6592), + [anon_sym_consteval] = ACTIONS(6592), + [anon_sym_alignas] = ACTIONS(6592), + [anon_sym__Alignas] = ACTIONS(6592), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_STAR_EQ] = ACTIONS(6592), + [anon_sym_SLASH_EQ] = ACTIONS(6592), + [anon_sym_PERCENT_EQ] = ACTIONS(6592), + [anon_sym_PLUS_EQ] = ACTIONS(6592), + [anon_sym_DASH_EQ] = ACTIONS(6592), + [anon_sym_LT_LT_EQ] = ACTIONS(6592), + [anon_sym_GT_GT_EQ] = ACTIONS(6592), + [anon_sym_AMP_EQ] = ACTIONS(6592), + [anon_sym_CARET_EQ] = ACTIONS(6592), + [anon_sym_PIPE_EQ] = ACTIONS(6592), + [anon_sym_and_eq] = ACTIONS(6592), + [anon_sym_or_eq] = ACTIONS(6592), + [anon_sym_xor_eq] = ACTIONS(6592), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6592), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6592), + [anon_sym_not_eq] = ACTIONS(6592), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6592), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_final] = ACTIONS(6592), + [anon_sym_override] = ACTIONS(6592), + [anon_sym_requires] = ACTIONS(6592), }, [STATE(2593)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6620), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6620), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6620), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6620), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6620), - [anon_sym_GT_GT] = ACTIONS(6620), - [anon_sym___extension__] = ACTIONS(6622), - [anon_sym___attribute__] = ACTIONS(6622), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6622), - [anon_sym_EQ] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6622), - [anon_sym_volatile] = ACTIONS(6622), - [anon_sym_restrict] = ACTIONS(6622), - [anon_sym___restrict__] = ACTIONS(6622), - [anon_sym__Atomic] = ACTIONS(6622), - [anon_sym__Noreturn] = ACTIONS(6622), - [anon_sym_noreturn] = ACTIONS(6622), - [anon_sym__Nonnull] = ACTIONS(6622), - [anon_sym_mutable] = ACTIONS(6622), - [anon_sym_constinit] = ACTIONS(6622), - [anon_sym_consteval] = ACTIONS(6622), - [anon_sym_alignas] = ACTIONS(6622), - [anon_sym__Alignas] = ACTIONS(6622), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_STAR_EQ] = ACTIONS(6622), - [anon_sym_SLASH_EQ] = ACTIONS(6622), - [anon_sym_PERCENT_EQ] = ACTIONS(6622), - [anon_sym_PLUS_EQ] = ACTIONS(6622), - [anon_sym_DASH_EQ] = ACTIONS(6622), - [anon_sym_LT_LT_EQ] = ACTIONS(6622), - [anon_sym_GT_GT_EQ] = ACTIONS(6620), - [anon_sym_AMP_EQ] = ACTIONS(6622), - [anon_sym_CARET_EQ] = ACTIONS(6622), - [anon_sym_PIPE_EQ] = ACTIONS(6622), - [anon_sym_and_eq] = ACTIONS(6622), - [anon_sym_or_eq] = ACTIONS(6622), - [anon_sym_xor_eq] = ACTIONS(6622), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6622), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6622), - [anon_sym_not_eq] = ACTIONS(6622), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6622), - [anon_sym_decltype] = ACTIONS(6622), - [anon_sym_final] = ACTIONS(6622), - [anon_sym_override] = ACTIONS(6622), - [anon_sym_GT2] = ACTIONS(6622), - [anon_sym_requires] = ACTIONS(6622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_RBRACK] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_STAR_EQ] = ACTIONS(6612), + [anon_sym_SLASH_EQ] = ACTIONS(6612), + [anon_sym_PERCENT_EQ] = ACTIONS(6612), + [anon_sym_PLUS_EQ] = ACTIONS(6612), + [anon_sym_DASH_EQ] = ACTIONS(6612), + [anon_sym_LT_LT_EQ] = ACTIONS(6612), + [anon_sym_GT_GT_EQ] = ACTIONS(6612), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_and_eq] = ACTIONS(6612), + [anon_sym_or_eq] = ACTIONS(6612), + [anon_sym_xor_eq] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_final] = ACTIONS(6612), + [anon_sym_override] = ACTIONS(6612), + [anon_sym_requires] = ACTIONS(6612), }, [STATE(2594)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), - [anon_sym_COMMA] = ACTIONS(6601), - [anon_sym_LPAREN2] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6594), - [anon_sym_PLUS] = ACTIONS(6594), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(6594), - [anon_sym_PERCENT] = ACTIONS(6594), - [anon_sym_PIPE_PIPE] = ACTIONS(6601), - [anon_sym_AMP_AMP] = ACTIONS(6601), - [anon_sym_PIPE] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6594), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_EQ_EQ] = ACTIONS(6601), - [anon_sym_BANG_EQ] = ACTIONS(6601), - [anon_sym_GT] = ACTIONS(6594), - [anon_sym_GT_EQ] = ACTIONS(6594), - [anon_sym_LT_EQ] = ACTIONS(6594), - [anon_sym_LT] = ACTIONS(6594), - [anon_sym_LT_LT] = ACTIONS(6594), - [anon_sym_GT_GT] = ACTIONS(6594), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym___attribute__] = ACTIONS(6601), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6601), - [anon_sym_EQ] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6601), - [anon_sym_STAR_EQ] = ACTIONS(6601), - [anon_sym_SLASH_EQ] = ACTIONS(6601), - [anon_sym_PERCENT_EQ] = ACTIONS(6601), - [anon_sym_PLUS_EQ] = ACTIONS(6601), - [anon_sym_DASH_EQ] = ACTIONS(6601), - [anon_sym_LT_LT_EQ] = ACTIONS(6601), - [anon_sym_GT_GT_EQ] = ACTIONS(6594), - [anon_sym_AMP_EQ] = ACTIONS(6601), - [anon_sym_CARET_EQ] = ACTIONS(6601), - [anon_sym_PIPE_EQ] = ACTIONS(6601), - [anon_sym_and_eq] = ACTIONS(6601), - [anon_sym_or_eq] = ACTIONS(6601), - [anon_sym_xor_eq] = ACTIONS(6601), - [anon_sym_LT_EQ_GT] = ACTIONS(6601), - [anon_sym_or] = ACTIONS(6594), - [anon_sym_and] = ACTIONS(6594), - [anon_sym_bitor] = ACTIONS(6601), - [anon_sym_xor] = ACTIONS(6594), - [anon_sym_bitand] = ACTIONS(6601), - [anon_sym_not_eq] = ACTIONS(6601), - [anon_sym_DASH_DASH] = ACTIONS(6601), - [anon_sym_PLUS_PLUS] = ACTIONS(6601), - [anon_sym_DOT] = ACTIONS(6594), - [anon_sym_DOT_STAR] = ACTIONS(6601), - [anon_sym_DASH_GT] = ACTIONS(6601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_final] = ACTIONS(6601), - [anon_sym_override] = ACTIONS(6601), - [anon_sym_GT2] = ACTIONS(6601), - [anon_sym_requires] = ACTIONS(6601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7329), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7329), + [anon_sym_or_eq] = ACTIONS(7329), + [anon_sym_xor_eq] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), + [anon_sym_DASH_GT_STAR] = ACTIONS(7329), }, [STATE(2595)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2595), - [aux_sym_pointer_declarator_repeat1] = STATE(2595), - [sym_identifier] = ACTIONS(6942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), - [anon_sym_COMMA] = ACTIONS(6944), - [anon_sym_RPAREN] = ACTIONS(6944), - [aux_sym_preproc_if_token2] = ACTIONS(6944), - [aux_sym_preproc_else_token1] = ACTIONS(6944), - [aux_sym_preproc_elif_token1] = ACTIONS(6942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6944), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6944), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DASH] = ACTIONS(6942), - [anon_sym_PLUS] = ACTIONS(6942), - [anon_sym_STAR] = ACTIONS(6944), - [anon_sym_SLASH] = ACTIONS(6942), - [anon_sym_PERCENT] = ACTIONS(6944), - [anon_sym_PIPE_PIPE] = ACTIONS(6944), - [anon_sym_AMP_AMP] = ACTIONS(6944), - [anon_sym_PIPE] = ACTIONS(6942), - [anon_sym_CARET] = ACTIONS(6944), - [anon_sym_AMP] = ACTIONS(6942), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6942), - [anon_sym_GT_EQ] = ACTIONS(6944), - [anon_sym_LT_EQ] = ACTIONS(6942), - [anon_sym_LT] = ACTIONS(6942), - [anon_sym_LT_LT] = ACTIONS(6944), - [anon_sym_GT_GT] = ACTIONS(6944), - [anon_sym_SEMI] = ACTIONS(6944), - [anon_sym___extension__] = ACTIONS(6942), - [anon_sym___attribute__] = ACTIONS(6942), - [anon_sym___attribute] = ACTIONS(6942), - [anon_sym_COLON] = ACTIONS(6942), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6944), - [sym_ms_restrict_modifier] = ACTIONS(8493), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8493), - [sym_ms_signed_ptr_modifier] = ACTIONS(8493), - [anon_sym__unaligned] = ACTIONS(8496), - [anon_sym___unaligned] = ACTIONS(8496), - [anon_sym_RBRACE] = ACTIONS(6944), - [anon_sym_LBRACK] = ACTIONS(6944), - [anon_sym_const] = ACTIONS(6942), - [anon_sym_constexpr] = ACTIONS(6942), - [anon_sym_volatile] = ACTIONS(6942), - [anon_sym_restrict] = ACTIONS(6942), - [anon_sym___restrict__] = ACTIONS(6942), - [anon_sym__Atomic] = ACTIONS(6942), - [anon_sym__Noreturn] = ACTIONS(6942), - [anon_sym_noreturn] = ACTIONS(6942), - [anon_sym__Nonnull] = ACTIONS(6942), - [anon_sym_mutable] = ACTIONS(6942), - [anon_sym_constinit] = ACTIONS(6942), - [anon_sym_consteval] = ACTIONS(6942), - [anon_sym_alignas] = ACTIONS(6942), - [anon_sym__Alignas] = ACTIONS(6942), - [anon_sym_QMARK] = ACTIONS(6944), - [anon_sym_LT_EQ_GT] = ACTIONS(6944), - [anon_sym_or] = ACTIONS(6942), - [anon_sym_and] = ACTIONS(6942), - [anon_sym_bitor] = ACTIONS(6942), - [anon_sym_xor] = ACTIONS(6942), - [anon_sym_bitand] = ACTIONS(6942), - [anon_sym_not_eq] = ACTIONS(6942), - [anon_sym_DASH_DASH] = ACTIONS(6944), - [anon_sym_PLUS_PLUS] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6942), - [anon_sym_DOT_STAR] = ACTIONS(6944), - [anon_sym_DASH_GT] = ACTIONS(6944), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6942), - [anon_sym_override] = ACTIONS(6942), - [anon_sym_requires] = ACTIONS(6942), - [anon_sym_COLON_RBRACK] = ACTIONS(6944), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_exception_specification] = STATE(2949), + [sym__function_attributes_end] = STATE(4186), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3067), + [sym_noexcept] = STATE(2949), + [sym_throw_specifier] = STATE(2949), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(8415), + [anon_sym___attribute] = ACTIONS(8418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8421), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_noexcept] = ACTIONS(6528), + [anon_sym_throw] = ACTIONS(6530), + [anon_sym_requires] = ACTIONS(6545), }, [STATE(2596)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2369), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7528), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8108), - [anon_sym_unsigned] = ACTIONS(8108), - [anon_sym_long] = ACTIONS(8108), - [anon_sym_short] = ACTIONS(8108), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7528), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_and_eq] = ACTIONS(7528), - [anon_sym_or_eq] = ACTIONS(7528), - [anon_sym_xor_eq] = ACTIONS(7528), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7525), + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2596), + [aux_sym_pointer_declarator_repeat1] = STATE(2596), + [sym_identifier] = ACTIONS(6917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6919), + [anon_sym_COMMA] = ACTIONS(6919), + [anon_sym_RPAREN] = ACTIONS(6919), + [aux_sym_preproc_if_token2] = ACTIONS(6919), + [aux_sym_preproc_else_token1] = ACTIONS(6919), + [aux_sym_preproc_elif_token1] = ACTIONS(6917), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6919), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6919), + [anon_sym_LPAREN2] = ACTIONS(6919), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6919), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_PERCENT] = ACTIONS(6919), + [anon_sym_PIPE_PIPE] = ACTIONS(6919), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_CARET] = ACTIONS(6919), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_EQ_EQ] = ACTIONS(6919), + [anon_sym_BANG_EQ] = ACTIONS(6919), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6919), + [anon_sym_LT_EQ] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_LT_LT] = ACTIONS(6919), + [anon_sym_GT_GT] = ACTIONS(6919), + [anon_sym_SEMI] = ACTIONS(6919), + [anon_sym___extension__] = ACTIONS(6917), + [anon_sym___attribute__] = ACTIONS(6917), + [anon_sym___attribute] = ACTIONS(6917), + [anon_sym_COLON] = ACTIONS(6917), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6919), + [sym_ms_restrict_modifier] = ACTIONS(8487), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8487), + [sym_ms_signed_ptr_modifier] = ACTIONS(8487), + [anon_sym__unaligned] = ACTIONS(8490), + [anon_sym___unaligned] = ACTIONS(8490), + [anon_sym_RBRACE] = ACTIONS(6919), + [anon_sym_LBRACK] = ACTIONS(6919), + [anon_sym_const] = ACTIONS(6917), + [anon_sym_constexpr] = ACTIONS(6917), + [anon_sym_volatile] = ACTIONS(6917), + [anon_sym_restrict] = ACTIONS(6917), + [anon_sym___restrict__] = ACTIONS(6917), + [anon_sym__Atomic] = ACTIONS(6917), + [anon_sym__Noreturn] = ACTIONS(6917), + [anon_sym_noreturn] = ACTIONS(6917), + [anon_sym__Nonnull] = ACTIONS(6917), + [anon_sym_mutable] = ACTIONS(6917), + [anon_sym_constinit] = ACTIONS(6917), + [anon_sym_consteval] = ACTIONS(6917), + [anon_sym_alignas] = ACTIONS(6917), + [anon_sym__Alignas] = ACTIONS(6917), + [anon_sym_QMARK] = ACTIONS(6919), + [anon_sym_LT_EQ_GT] = ACTIONS(6919), + [anon_sym_or] = ACTIONS(6917), + [anon_sym_and] = ACTIONS(6917), + [anon_sym_bitor] = ACTIONS(6917), + [anon_sym_xor] = ACTIONS(6917), + [anon_sym_bitand] = ACTIONS(6917), + [anon_sym_not_eq] = ACTIONS(6917), + [anon_sym_DASH_DASH] = ACTIONS(6919), + [anon_sym_PLUS_PLUS] = ACTIONS(6919), + [anon_sym_DOT] = ACTIONS(6917), + [anon_sym_DOT_STAR] = ACTIONS(6919), + [anon_sym_DASH_GT] = ACTIONS(6919), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6917), + [anon_sym_override] = ACTIONS(6917), + [anon_sym_requires] = ACTIONS(6917), + [anon_sym_COLON_RBRACK] = ACTIONS(6919), }, [STATE(2597)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym__function_exception_specification] = STATE(3072), - [sym__function_attributes_end] = STATE(4355), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(4432), - [sym_noexcept] = STATE(3072), - [sym_throw_specifier] = STATE(3072), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7789), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7789), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8318), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6694), - [anon_sym_override] = ACTIONS(6694), - [anon_sym_GT2] = ACTIONS(7791), - [anon_sym_noexcept] = ACTIONS(6696), - [anon_sym_throw] = ACTIONS(6698), - [anon_sym_requires] = ACTIONS(6700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_RBRACK] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_STAR_EQ] = ACTIONS(6616), + [anon_sym_SLASH_EQ] = ACTIONS(6616), + [anon_sym_PERCENT_EQ] = ACTIONS(6616), + [anon_sym_PLUS_EQ] = ACTIONS(6616), + [anon_sym_DASH_EQ] = ACTIONS(6616), + [anon_sym_LT_LT_EQ] = ACTIONS(6616), + [anon_sym_GT_GT_EQ] = ACTIONS(6616), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_and_eq] = ACTIONS(6616), + [anon_sym_or_eq] = ACTIONS(6616), + [anon_sym_xor_eq] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_final] = ACTIONS(6616), + [anon_sym_override] = ACTIONS(6616), + [anon_sym_requires] = ACTIONS(6616), }, [STATE(2598)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym__function_exception_specification] = STATE(3073), - [sym__function_attributes_end] = STATE(4361), - [sym__function_postfix] = STATE(5047), - [sym_trailing_return_type] = STATE(4440), - [sym_noexcept] = STATE(3073), - [sym_throw_specifier] = STATE(3073), - [sym_requires_clause] = STATE(5047), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7968), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7968), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6694), - [anon_sym_override] = ACTIONS(6694), - [anon_sym_GT2] = ACTIONS(7966), - [anon_sym_noexcept] = ACTIONS(6696), - [anon_sym_throw] = ACTIONS(6698), - [anon_sym_requires] = ACTIONS(6700), + [aux_sym_sized_type_specifier_repeat1] = STATE(2609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7692), + [anon_sym_COMMA] = ACTIONS(7692), + [anon_sym_RPAREN] = ACTIONS(7692), + [anon_sym_LPAREN2] = ACTIONS(7692), + [anon_sym_DASH] = ACTIONS(7690), + [anon_sym_PLUS] = ACTIONS(7690), + [anon_sym_STAR] = ACTIONS(7690), + [anon_sym_SLASH] = ACTIONS(7690), + [anon_sym_PERCENT] = ACTIONS(7690), + [anon_sym_PIPE_PIPE] = ACTIONS(7692), + [anon_sym_AMP_AMP] = ACTIONS(7692), + [anon_sym_PIPE] = ACTIONS(7690), + [anon_sym_CARET] = ACTIONS(7690), + [anon_sym_AMP] = ACTIONS(7690), + [anon_sym_EQ_EQ] = ACTIONS(7692), + [anon_sym_BANG_EQ] = ACTIONS(7692), + [anon_sym_GT] = ACTIONS(7690), + [anon_sym_GT_EQ] = ACTIONS(7692), + [anon_sym_LT_EQ] = ACTIONS(7690), + [anon_sym_LT] = ACTIONS(7690), + [anon_sym_LT_LT] = ACTIONS(7690), + [anon_sym_GT_GT] = ACTIONS(7690), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(7692), + [anon_sym___attribute] = ACTIONS(7690), + [anon_sym_LBRACE] = ACTIONS(7692), + [anon_sym_signed] = ACTIONS(8493), + [anon_sym_unsigned] = ACTIONS(8493), + [anon_sym_long] = ACTIONS(8493), + [anon_sym_short] = ACTIONS(8493), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_EQ] = ACTIONS(7690), + [anon_sym_const] = ACTIONS(7690), + [anon_sym_constexpr] = ACTIONS(7692), + [anon_sym_volatile] = ACTIONS(7692), + [anon_sym_restrict] = ACTIONS(7692), + [anon_sym___restrict__] = ACTIONS(7692), + [anon_sym__Atomic] = ACTIONS(7692), + [anon_sym__Noreturn] = ACTIONS(7692), + [anon_sym_noreturn] = ACTIONS(7692), + [anon_sym__Nonnull] = ACTIONS(7692), + [anon_sym_mutable] = ACTIONS(7692), + [anon_sym_constinit] = ACTIONS(7692), + [anon_sym_consteval] = ACTIONS(7692), + [anon_sym_alignas] = ACTIONS(7692), + [anon_sym__Alignas] = ACTIONS(7692), + [anon_sym_QMARK] = ACTIONS(7692), + [anon_sym_STAR_EQ] = ACTIONS(7692), + [anon_sym_SLASH_EQ] = ACTIONS(7692), + [anon_sym_PERCENT_EQ] = ACTIONS(7692), + [anon_sym_PLUS_EQ] = ACTIONS(7692), + [anon_sym_DASH_EQ] = ACTIONS(7692), + [anon_sym_LT_LT_EQ] = ACTIONS(7692), + [anon_sym_GT_GT_EQ] = ACTIONS(7692), + [anon_sym_AMP_EQ] = ACTIONS(7692), + [anon_sym_CARET_EQ] = ACTIONS(7692), + [anon_sym_PIPE_EQ] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7692), + [anon_sym_or] = ACTIONS(7692), + [anon_sym_and] = ACTIONS(7692), + [anon_sym_bitor] = ACTIONS(7692), + [anon_sym_xor] = ACTIONS(7692), + [anon_sym_bitand] = ACTIONS(7692), + [anon_sym_not_eq] = ACTIONS(7692), + [anon_sym_DASH_DASH] = ACTIONS(7692), + [anon_sym_PLUS_PLUS] = ACTIONS(7692), + [anon_sym_DOT] = ACTIONS(7690), + [anon_sym_DOT_STAR] = ACTIONS(7692), + [anon_sym_DASH_GT] = ACTIONS(7690), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_DASH_GT_STAR] = ACTIONS(7692), }, [STATE(2599)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2374), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8127), - [anon_sym_unsigned] = ACTIONS(8127), - [anon_sym_long] = ACTIONS(8127), - [anon_sym_short] = ACTIONS(8127), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_RBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7525), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_and_eq] = ACTIONS(7528), - [anon_sym_or_eq] = ACTIONS(7528), - [anon_sym_xor_eq] = ACTIONS(7528), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), - }, - [STATE(2600)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(3921), - [sym__function_postfix] = STATE(3675), - [sym_trailing_return_type] = STATE(2973), - [sym_requires_clause] = STATE(3675), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(8424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [aux_sym_preproc_if_token2] = ACTIONS(8422), - [aux_sym_preproc_else_token1] = ACTIONS(8422), - [aux_sym_preproc_elif_token1] = ACTIONS(8424), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8422), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8424), - [anon_sym_or_eq] = ACTIONS(8424), - [anon_sym_xor_eq] = ACTIONS(8424), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8424), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8424), - [anon_sym_not_eq] = ACTIONS(8424), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8478), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_requires] = ACTIONS(6508), - }, - [STATE(2601)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_RPAREN] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7085), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7085), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7085), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(7085), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7090), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7090), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_and_eq] = ACTIONS(7090), - [anon_sym_or_eq] = ACTIONS(7090), - [anon_sym_xor_eq] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7090), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7090), - [anon_sym_not_eq] = ACTIONS(7090), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7085), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), - [anon_sym_DASH_GT_STAR] = ACTIONS(7090), - }, - [STATE(2602)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7134), - [anon_sym_RPAREN] = ACTIONS(7134), - [anon_sym_LPAREN2] = ACTIONS(7134), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7132), - [anon_sym_SLASH] = ACTIONS(7132), - [anon_sym_PERCENT] = ACTIONS(7132), - [anon_sym_PIPE_PIPE] = ACTIONS(7134), - [anon_sym_AMP_AMP] = ACTIONS(7134), - [anon_sym_PIPE] = ACTIONS(7132), - [anon_sym_CARET] = ACTIONS(7132), - [anon_sym_AMP] = ACTIONS(7132), - [anon_sym_EQ_EQ] = ACTIONS(7134), - [anon_sym_BANG_EQ] = ACTIONS(7134), - [anon_sym_GT] = ACTIONS(7132), - [anon_sym_GT_EQ] = ACTIONS(7134), - [anon_sym_LT_EQ] = ACTIONS(7132), - [anon_sym_LT] = ACTIONS(7132), - [anon_sym_LT_LT] = ACTIONS(7132), - [anon_sym_GT_GT] = ACTIONS(7132), - [anon_sym___extension__] = ACTIONS(7134), - [anon_sym___attribute__] = ACTIONS(7134), - [anon_sym___attribute] = ACTIONS(7132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), - [anon_sym_LBRACK] = ACTIONS(7132), - [anon_sym_EQ] = ACTIONS(7132), - [anon_sym_const] = ACTIONS(7132), - [anon_sym_constexpr] = ACTIONS(7134), - [anon_sym_volatile] = ACTIONS(7134), - [anon_sym_restrict] = ACTIONS(7134), - [anon_sym___restrict__] = ACTIONS(7134), - [anon_sym__Atomic] = ACTIONS(7134), - [anon_sym__Noreturn] = ACTIONS(7134), - [anon_sym_noreturn] = ACTIONS(7134), - [anon_sym__Nonnull] = ACTIONS(7134), - [anon_sym_mutable] = ACTIONS(7134), - [anon_sym_constinit] = ACTIONS(7134), - [anon_sym_consteval] = ACTIONS(7134), - [anon_sym_alignas] = ACTIONS(7134), - [anon_sym__Alignas] = ACTIONS(7134), - [anon_sym_QMARK] = ACTIONS(7134), - [anon_sym_STAR_EQ] = ACTIONS(7134), - [anon_sym_SLASH_EQ] = ACTIONS(7134), - [anon_sym_PERCENT_EQ] = ACTIONS(7134), - [anon_sym_PLUS_EQ] = ACTIONS(7134), - [anon_sym_DASH_EQ] = ACTIONS(7134), - [anon_sym_LT_LT_EQ] = ACTIONS(7134), - [anon_sym_GT_GT_EQ] = ACTIONS(7134), - [anon_sym_AMP_EQ] = ACTIONS(7134), - [anon_sym_CARET_EQ] = ACTIONS(7134), - [anon_sym_PIPE_EQ] = ACTIONS(7134), - [anon_sym_LT_EQ_GT] = ACTIONS(7134), - [anon_sym_or] = ACTIONS(7134), - [anon_sym_and] = ACTIONS(7134), - [anon_sym_bitor] = ACTIONS(7134), - [anon_sym_xor] = ACTIONS(7134), - [anon_sym_bitand] = ACTIONS(7134), - [anon_sym_not_eq] = ACTIONS(7134), - [anon_sym_DASH_DASH] = ACTIONS(7134), - [anon_sym_PLUS_PLUS] = ACTIONS(7134), - [anon_sym_asm] = ACTIONS(7134), - [anon_sym___asm__] = ACTIONS(7134), - [anon_sym___asm] = ACTIONS(7132), - [anon_sym_DOT] = ACTIONS(7132), - [anon_sym_DOT_STAR] = ACTIONS(7134), - [anon_sym_DASH_GT] = ACTIONS(7132), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7134), - [anon_sym_override] = ACTIONS(7134), - [anon_sym_noexcept] = ACTIONS(7134), - [anon_sym_throw] = ACTIONS(7134), - [anon_sym_requires] = ACTIONS(7134), - [anon_sym_DASH_GT_STAR] = ACTIONS(7134), - }, - [STATE(2603)] = { - [sym__abstract_declarator] = STATE(5892), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2629), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1989), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2629), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_RPAREN] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(7589), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7393), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(7591), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7393), - [anon_sym_AMP] = ACTIONS(7593), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7393), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(7393), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_STAR_EQ] = ACTIONS(7391), - [anon_sym_SLASH_EQ] = ACTIONS(7391), - [anon_sym_PERCENT_EQ] = ACTIONS(7391), - [anon_sym_PLUS_EQ] = ACTIONS(7391), - [anon_sym_DASH_EQ] = ACTIONS(7391), - [anon_sym_LT_LT_EQ] = ACTIONS(7391), - [anon_sym_GT_GT_EQ] = ACTIONS(7391), - [anon_sym_AMP_EQ] = ACTIONS(7391), - [anon_sym_CARET_EQ] = ACTIONS(7391), - [anon_sym_PIPE_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7393), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7391), - }, - [STATE(2604)] = { - [sym__abstract_declarator] = STATE(5922), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1989), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(7589), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7347), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(7591), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7347), - [anon_sym_AMP] = ACTIONS(7593), - [anon_sym_EQ_EQ] = ACTIONS(7345), - [anon_sym_BANG_EQ] = ACTIONS(7345), - [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ] = ACTIONS(7347), - [anon_sym_LT] = ACTIONS(7347), - [anon_sym_LT_LT] = ACTIONS(7347), - [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(7347), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7345), - [anon_sym_STAR_EQ] = ACTIONS(7345), - [anon_sym_SLASH_EQ] = ACTIONS(7345), - [anon_sym_PERCENT_EQ] = ACTIONS(7345), - [anon_sym_PLUS_EQ] = ACTIONS(7345), - [anon_sym_DASH_EQ] = ACTIONS(7345), - [anon_sym_LT_LT_EQ] = ACTIONS(7345), - [anon_sym_GT_GT_EQ] = ACTIONS(7345), - [anon_sym_AMP_EQ] = ACTIONS(7345), - [anon_sym_CARET_EQ] = ACTIONS(7345), - [anon_sym_PIPE_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ_GT] = ACTIONS(7345), - [anon_sym_or] = ACTIONS(7345), - [anon_sym_and] = ACTIONS(7345), - [anon_sym_bitor] = ACTIONS(7345), - [anon_sym_xor] = ACTIONS(7345), - [anon_sym_bitand] = ACTIONS(7345), - [anon_sym_not_eq] = ACTIONS(7345), - [anon_sym_DASH_DASH] = ACTIONS(7345), - [anon_sym_PLUS_PLUS] = ACTIONS(7345), - [anon_sym_DOT] = ACTIONS(7347), - [anon_sym_DOT_STAR] = ACTIONS(7345), - [anon_sym_DASH_GT] = ACTIONS(7347), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7345), - }, - [STATE(2605)] = { - [sym_template_argument_list] = STATE(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7085), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7085), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7085), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(8064), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7090), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_and_eq] = ACTIONS(7090), - [anon_sym_or_eq] = ACTIONS(7090), - [anon_sym_xor_eq] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7090), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7090), - [anon_sym_not_eq] = ACTIONS(7090), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), - }, - [STATE(2606)] = { - [sym_attribute_specifier] = STATE(3547), - [sym_field_declaration_list] = STATE(3020), - [sym_virtual_specifier] = STATE(9449), - [sym_base_class_clause] = STATE(10567), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_RPAREN] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7235), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7235), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7235), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7235), - [anon_sym_GT_GT] = ACTIONS(7235), - [anon_sym___extension__] = ACTIONS(7237), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_COLON] = ACTIONS(8156), - [anon_sym_LBRACE] = ACTIONS(8503), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_EQ] = ACTIONS(7235), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7237), - [anon_sym_volatile] = ACTIONS(7237), - [anon_sym_restrict] = ACTIONS(7237), - [anon_sym___restrict__] = ACTIONS(7237), - [anon_sym__Atomic] = ACTIONS(7237), - [anon_sym__Noreturn] = ACTIONS(7237), - [anon_sym_noreturn] = ACTIONS(7237), - [anon_sym__Nonnull] = ACTIONS(7237), - [anon_sym_mutable] = ACTIONS(7237), - [anon_sym_constinit] = ACTIONS(7237), - [anon_sym_consteval] = ACTIONS(7237), - [anon_sym_alignas] = ACTIONS(7237), - [anon_sym__Alignas] = ACTIONS(7237), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_STAR_EQ] = ACTIONS(7237), - [anon_sym_SLASH_EQ] = ACTIONS(7237), - [anon_sym_PERCENT_EQ] = ACTIONS(7237), - [anon_sym_PLUS_EQ] = ACTIONS(7237), - [anon_sym_DASH_EQ] = ACTIONS(7237), - [anon_sym_LT_LT_EQ] = ACTIONS(7237), - [anon_sym_GT_GT_EQ] = ACTIONS(7237), - [anon_sym_AMP_EQ] = ACTIONS(7237), - [anon_sym_CARET_EQ] = ACTIONS(7237), - [anon_sym_PIPE_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7237), - [anon_sym_and] = ACTIONS(7237), - [anon_sym_bitor] = ACTIONS(7237), - [anon_sym_xor] = ACTIONS(7237), - [anon_sym_bitand] = ACTIONS(7237), - [anon_sym_not_eq] = ACTIONS(7237), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7235), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8160), - [anon_sym_override] = ACTIONS(8160), - [anon_sym_requires] = ACTIONS(7237), - [anon_sym_DASH_GT_STAR] = ACTIONS(7237), - }, - [STATE(2607)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(7001), - [anon_sym_RPAREN] = ACTIONS(7001), - [aux_sym_preproc_if_token2] = ACTIONS(7001), - [aux_sym_preproc_else_token1] = ACTIONS(7001), - [aux_sym_preproc_elif_token1] = ACTIONS(6999), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7001), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7001), - [anon_sym_LPAREN2] = ACTIONS(7001), - [anon_sym_DASH] = ACTIONS(6999), - [anon_sym_PLUS] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(7001), - [anon_sym_SLASH] = ACTIONS(6999), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(7001), - [anon_sym_PIPE] = ACTIONS(6999), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6999), - [anon_sym_EQ_EQ] = ACTIONS(7001), - [anon_sym_BANG_EQ] = ACTIONS(7001), - [anon_sym_GT] = ACTIONS(6999), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(6999), - [anon_sym_LT] = ACTIONS(6999), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym_SEMI] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(6999), - [anon_sym_COLON] = ACTIONS(6999), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7001), - [anon_sym_LBRACE] = ACTIONS(7001), - [anon_sym_RBRACE] = ACTIONS(7001), - [anon_sym_signed] = ACTIONS(8505), - [anon_sym_unsigned] = ACTIONS(8505), - [anon_sym_long] = ACTIONS(8505), - [anon_sym_short] = ACTIONS(8505), - [anon_sym_LBRACK] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7001), - [anon_sym_LT_EQ_GT] = ACTIONS(7001), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(7001), - [anon_sym_PLUS_PLUS] = ACTIONS(7001), - [anon_sym_DOT] = ACTIONS(6999), - [anon_sym_DOT_STAR] = ACTIONS(7001), - [anon_sym_DASH_GT] = ACTIONS(7001), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), - [anon_sym_COLON_RBRACK] = ACTIONS(7001), - }, - [STATE(2608)] = { - [sym_attribute_specifier] = STATE(3033), - [sym_enumerator_list] = STATE(2662), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), - [anon_sym_COMMA] = ACTIONS(7383), - [anon_sym_RPAREN] = ACTIONS(7383), - [anon_sym_LPAREN2] = ACTIONS(7383), - [anon_sym_DASH] = ACTIONS(7381), - [anon_sym_PLUS] = ACTIONS(7381), - [anon_sym_STAR] = ACTIONS(7381), - [anon_sym_SLASH] = ACTIONS(7381), - [anon_sym_PERCENT] = ACTIONS(7381), - [anon_sym_PIPE_PIPE] = ACTIONS(7383), - [anon_sym_AMP_AMP] = ACTIONS(7383), - [anon_sym_PIPE] = ACTIONS(7381), - [anon_sym_CARET] = ACTIONS(7381), - [anon_sym_AMP] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7383), - [anon_sym_BANG_EQ] = ACTIONS(7383), - [anon_sym_GT] = ACTIONS(7381), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_LT_EQ] = ACTIONS(7381), - [anon_sym_LT] = ACTIONS(7381), - [anon_sym_LT_LT] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7381), - [anon_sym___extension__] = ACTIONS(7383), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(8383), - [anon_sym_LBRACK] = ACTIONS(7383), - [anon_sym_EQ] = ACTIONS(7381), - [anon_sym_const] = ACTIONS(7381), - [anon_sym_constexpr] = ACTIONS(7383), - [anon_sym_volatile] = ACTIONS(7383), - [anon_sym_restrict] = ACTIONS(7383), - [anon_sym___restrict__] = ACTIONS(7383), - [anon_sym__Atomic] = ACTIONS(7383), - [anon_sym__Noreturn] = ACTIONS(7383), - [anon_sym_noreturn] = ACTIONS(7383), - [anon_sym__Nonnull] = ACTIONS(7383), - [anon_sym_mutable] = ACTIONS(7383), - [anon_sym_constinit] = ACTIONS(7383), - [anon_sym_consteval] = ACTIONS(7383), - [anon_sym_alignas] = ACTIONS(7383), - [anon_sym__Alignas] = ACTIONS(7383), - [anon_sym_QMARK] = ACTIONS(7383), - [anon_sym_STAR_EQ] = ACTIONS(7383), - [anon_sym_SLASH_EQ] = ACTIONS(7383), - [anon_sym_PERCENT_EQ] = ACTIONS(7383), - [anon_sym_PLUS_EQ] = ACTIONS(7383), - [anon_sym_DASH_EQ] = ACTIONS(7383), - [anon_sym_LT_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_GT_EQ] = ACTIONS(7383), - [anon_sym_AMP_EQ] = ACTIONS(7383), - [anon_sym_CARET_EQ] = ACTIONS(7383), - [anon_sym_PIPE_EQ] = ACTIONS(7383), - [anon_sym_and_eq] = ACTIONS(7383), - [anon_sym_or_eq] = ACTIONS(7383), - [anon_sym_xor_eq] = ACTIONS(7383), - [anon_sym_LT_EQ_GT] = ACTIONS(7383), - [anon_sym_or] = ACTIONS(7381), - [anon_sym_and] = ACTIONS(7381), - [anon_sym_bitor] = ACTIONS(7383), - [anon_sym_xor] = ACTIONS(7381), - [anon_sym_bitand] = ACTIONS(7383), - [anon_sym_not_eq] = ACTIONS(7383), - [anon_sym_DASH_DASH] = ACTIONS(7383), - [anon_sym_PLUS_PLUS] = ACTIONS(7383), - [anon_sym_DOT] = ACTIONS(7381), - [anon_sym_DOT_STAR] = ACTIONS(7383), - [anon_sym_DASH_GT] = ACTIONS(7381), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7383), - [anon_sym_override] = ACTIONS(7383), - [anon_sym_requires] = ACTIONS(7383), - [anon_sym_DASH_GT_STAR] = ACTIONS(7383), - }, - [STATE(2609)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(8379), - [anon_sym_unsigned] = ACTIONS(8379), - [anon_sym_long] = ACTIONS(8379), - [anon_sym_short] = ACTIONS(8379), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_GT2] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - }, - [STATE(2610)] = { - [sym__abstract_declarator] = STATE(5783), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1989), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(7589), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6821), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(7591), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6821), - [anon_sym_AMP] = ACTIONS(7593), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6821), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(6821), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_STAR_EQ] = ACTIONS(6823), - [anon_sym_SLASH_EQ] = ACTIONS(6823), - [anon_sym_PERCENT_EQ] = ACTIONS(6823), - [anon_sym_PLUS_EQ] = ACTIONS(6823), - [anon_sym_DASH_EQ] = ACTIONS(6823), - [anon_sym_LT_LT_EQ] = ACTIONS(6823), - [anon_sym_GT_GT_EQ] = ACTIONS(6823), - [anon_sym_AMP_EQ] = ACTIONS(6823), - [anon_sym_CARET_EQ] = ACTIONS(6823), - [anon_sym_PIPE_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6821), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(6823), - }, - [STATE(2611)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym_ref_qualifier] = STATE(2702), - [sym__function_exception_specification] = STATE(3383), - [sym__function_attributes_end] = STATE(4576), - [sym__function_postfix] = STATE(5696), - [sym_trailing_return_type] = STATE(4740), - [sym_noexcept] = STATE(3383), - [sym_throw_specifier] = STATE(3383), - [sym_requires_clause] = STATE(5696), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(8508), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(8511), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7791), - [anon_sym_and] = ACTIONS(7791), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7791), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8514), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8517), - [anon_sym_override] = ACTIONS(8517), - [anon_sym_noexcept] = ACTIONS(6779), - [anon_sym_throw] = ACTIONS(6781), - [anon_sym_requires] = ACTIONS(8520), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), - }, - [STATE(2612)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), - [anon_sym_COMMA] = ACTIONS(7083), - [anon_sym_RPAREN] = ACTIONS(7083), - [anon_sym_LPAREN2] = ACTIONS(7083), - [anon_sym_DASH] = ACTIONS(7081), - [anon_sym_PLUS] = ACTIONS(7081), - [anon_sym_STAR] = ACTIONS(7081), - [anon_sym_SLASH] = ACTIONS(7081), - [anon_sym_PERCENT] = ACTIONS(7081), - [anon_sym_PIPE_PIPE] = ACTIONS(7083), - [anon_sym_AMP_AMP] = ACTIONS(7083), - [anon_sym_PIPE] = ACTIONS(7081), - [anon_sym_CARET] = ACTIONS(7081), - [anon_sym_AMP] = ACTIONS(7081), - [anon_sym_EQ_EQ] = ACTIONS(7083), - [anon_sym_BANG_EQ] = ACTIONS(7083), - [anon_sym_GT] = ACTIONS(7081), - [anon_sym_GT_EQ] = ACTIONS(7083), - [anon_sym_LT_EQ] = ACTIONS(7081), - [anon_sym_LT] = ACTIONS(7081), - [anon_sym_LT_LT] = ACTIONS(7081), - [anon_sym_GT_GT] = ACTIONS(7081), - [anon_sym___extension__] = ACTIONS(7083), - [anon_sym___attribute__] = ACTIONS(7083), - [anon_sym___attribute] = ACTIONS(7081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_EQ] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(7081), - [anon_sym_constexpr] = ACTIONS(7083), - [anon_sym_volatile] = ACTIONS(7083), - [anon_sym_restrict] = ACTIONS(7083), - [anon_sym___restrict__] = ACTIONS(7083), - [anon_sym__Atomic] = ACTIONS(7083), - [anon_sym__Noreturn] = ACTIONS(7083), - [anon_sym_noreturn] = ACTIONS(7083), - [anon_sym__Nonnull] = ACTIONS(7083), - [anon_sym_mutable] = ACTIONS(7083), - [anon_sym_constinit] = ACTIONS(7083), - [anon_sym_consteval] = ACTIONS(7083), - [anon_sym_alignas] = ACTIONS(7083), - [anon_sym__Alignas] = ACTIONS(7083), - [anon_sym_QMARK] = ACTIONS(7083), - [anon_sym_STAR_EQ] = ACTIONS(7083), - [anon_sym_SLASH_EQ] = ACTIONS(7083), - [anon_sym_PERCENT_EQ] = ACTIONS(7083), - [anon_sym_PLUS_EQ] = ACTIONS(7083), - [anon_sym_DASH_EQ] = ACTIONS(7083), - [anon_sym_LT_LT_EQ] = ACTIONS(7083), - [anon_sym_GT_GT_EQ] = ACTIONS(7083), - [anon_sym_AMP_EQ] = ACTIONS(7083), - [anon_sym_CARET_EQ] = ACTIONS(7083), - [anon_sym_PIPE_EQ] = ACTIONS(7083), - [anon_sym_LT_EQ_GT] = ACTIONS(7083), - [anon_sym_or] = ACTIONS(7083), - [anon_sym_and] = ACTIONS(7083), - [anon_sym_bitor] = ACTIONS(7083), - [anon_sym_xor] = ACTIONS(7083), - [anon_sym_bitand] = ACTIONS(7083), - [anon_sym_not_eq] = ACTIONS(7083), - [anon_sym_DASH_DASH] = ACTIONS(7083), - [anon_sym_PLUS_PLUS] = ACTIONS(7083), - [anon_sym_asm] = ACTIONS(7083), - [anon_sym___asm__] = ACTIONS(7083), - [anon_sym___asm] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7081), - [anon_sym_DOT_STAR] = ACTIONS(7083), - [anon_sym_DASH_GT] = ACTIONS(7081), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7083), - [anon_sym_override] = ACTIONS(7083), - [anon_sym_noexcept] = ACTIONS(7083), - [anon_sym_throw] = ACTIONS(7083), - [anon_sym_requires] = ACTIONS(7083), - [anon_sym_DASH_GT_STAR] = ACTIONS(7083), - }, - [STATE(2613)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), - [anon_sym_COMMA] = ACTIONS(7106), - [anon_sym_RPAREN] = ACTIONS(7106), - [anon_sym_LPAREN2] = ACTIONS(7106), - [anon_sym_DASH] = ACTIONS(7104), - [anon_sym_PLUS] = ACTIONS(7104), - [anon_sym_STAR] = ACTIONS(7104), - [anon_sym_SLASH] = ACTIONS(7104), - [anon_sym_PERCENT] = ACTIONS(7104), - [anon_sym_PIPE_PIPE] = ACTIONS(7106), - [anon_sym_AMP_AMP] = ACTIONS(7106), - [anon_sym_PIPE] = ACTIONS(7104), - [anon_sym_CARET] = ACTIONS(7104), - [anon_sym_AMP] = ACTIONS(7104), - [anon_sym_EQ_EQ] = ACTIONS(7106), - [anon_sym_BANG_EQ] = ACTIONS(7106), - [anon_sym_GT] = ACTIONS(7104), - [anon_sym_GT_EQ] = ACTIONS(7106), - [anon_sym_LT_EQ] = ACTIONS(7104), - [anon_sym_LT] = ACTIONS(7104), - [anon_sym_LT_LT] = ACTIONS(7104), - [anon_sym_GT_GT] = ACTIONS(7104), - [anon_sym___extension__] = ACTIONS(7106), - [anon_sym___attribute__] = ACTIONS(7106), - [anon_sym___attribute] = ACTIONS(7104), - [anon_sym_COLON] = ACTIONS(7104), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [anon_sym_LBRACE] = ACTIONS(7106), - [anon_sym_LBRACK] = ACTIONS(7106), - [anon_sym_EQ] = ACTIONS(7104), - [anon_sym_const] = ACTIONS(7104), - [anon_sym_constexpr] = ACTIONS(7106), - [anon_sym_volatile] = ACTIONS(7106), - [anon_sym_restrict] = ACTIONS(7106), - [anon_sym___restrict__] = ACTIONS(7106), - [anon_sym__Atomic] = ACTIONS(7106), - [anon_sym__Noreturn] = ACTIONS(7106), - [anon_sym_noreturn] = ACTIONS(7106), - [anon_sym__Nonnull] = ACTIONS(7106), - [anon_sym_mutable] = ACTIONS(7106), - [anon_sym_constinit] = ACTIONS(7106), - [anon_sym_consteval] = ACTIONS(7106), - [anon_sym_alignas] = ACTIONS(7106), - [anon_sym__Alignas] = ACTIONS(7106), - [anon_sym_QMARK] = ACTIONS(7106), - [anon_sym_STAR_EQ] = ACTIONS(7106), - [anon_sym_SLASH_EQ] = ACTIONS(7106), - [anon_sym_PERCENT_EQ] = ACTIONS(7106), - [anon_sym_PLUS_EQ] = ACTIONS(7106), - [anon_sym_DASH_EQ] = ACTIONS(7106), - [anon_sym_LT_LT_EQ] = ACTIONS(7106), - [anon_sym_GT_GT_EQ] = ACTIONS(7106), - [anon_sym_AMP_EQ] = ACTIONS(7106), - [anon_sym_CARET_EQ] = ACTIONS(7106), - [anon_sym_PIPE_EQ] = ACTIONS(7106), - [anon_sym_and_eq] = ACTIONS(7106), - [anon_sym_or_eq] = ACTIONS(7106), - [anon_sym_xor_eq] = ACTIONS(7106), - [anon_sym_LT_EQ_GT] = ACTIONS(7106), - [anon_sym_or] = ACTIONS(7104), - [anon_sym_and] = ACTIONS(7104), - [anon_sym_bitor] = ACTIONS(7106), - [anon_sym_xor] = ACTIONS(7104), - [anon_sym_bitand] = ACTIONS(7106), - [anon_sym_not_eq] = ACTIONS(7106), - [anon_sym_DASH_DASH] = ACTIONS(7106), - [anon_sym_PLUS_PLUS] = ACTIONS(7106), - [anon_sym_DOT] = ACTIONS(7104), - [anon_sym_DOT_STAR] = ACTIONS(7106), - [anon_sym_DASH_GT] = ACTIONS(7104), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7106), - [anon_sym_override] = ACTIONS(7106), - [anon_sym_requires] = ACTIONS(7106), - [anon_sym_DASH_GT_STAR] = ACTIONS(7106), - }, - [STATE(2614)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), - [anon_sym_COMMA] = ACTIONS(7677), - [anon_sym_RPAREN] = ACTIONS(7677), - [anon_sym_LPAREN2] = ACTIONS(7677), - [anon_sym_DASH] = ACTIONS(7675), - [anon_sym_PLUS] = ACTIONS(7675), - [anon_sym_STAR] = ACTIONS(7675), - [anon_sym_SLASH] = ACTIONS(7675), - [anon_sym_PERCENT] = ACTIONS(7675), - [anon_sym_PIPE_PIPE] = ACTIONS(7677), - [anon_sym_AMP_AMP] = ACTIONS(7677), - [anon_sym_PIPE] = ACTIONS(7675), - [anon_sym_CARET] = ACTIONS(7675), - [anon_sym_AMP] = ACTIONS(7675), - [anon_sym_EQ_EQ] = ACTIONS(7677), - [anon_sym_BANG_EQ] = ACTIONS(7677), - [anon_sym_GT] = ACTIONS(7675), - [anon_sym_GT_EQ] = ACTIONS(7677), - [anon_sym_LT_EQ] = ACTIONS(7675), - [anon_sym_LT] = ACTIONS(7675), - [anon_sym_LT_LT] = ACTIONS(7675), - [anon_sym_GT_GT] = ACTIONS(7675), - [anon_sym___extension__] = ACTIONS(7677), - [anon_sym___attribute__] = ACTIONS(7677), - [anon_sym___attribute] = ACTIONS(7675), - [anon_sym_LBRACE] = ACTIONS(7677), - [anon_sym_signed] = ACTIONS(8523), - [anon_sym_unsigned] = ACTIONS(8523), - [anon_sym_long] = ACTIONS(8523), - [anon_sym_short] = ACTIONS(8523), - [anon_sym_LBRACK] = ACTIONS(7677), - [anon_sym_EQ] = ACTIONS(7675), - [anon_sym_const] = ACTIONS(7675), - [anon_sym_constexpr] = ACTIONS(7677), - [anon_sym_volatile] = ACTIONS(7677), - [anon_sym_restrict] = ACTIONS(7677), - [anon_sym___restrict__] = ACTIONS(7677), - [anon_sym__Atomic] = ACTIONS(7677), - [anon_sym__Noreturn] = ACTIONS(7677), - [anon_sym_noreturn] = ACTIONS(7677), - [anon_sym__Nonnull] = ACTIONS(7677), - [anon_sym_mutable] = ACTIONS(7677), - [anon_sym_constinit] = ACTIONS(7677), - [anon_sym_consteval] = ACTIONS(7677), - [anon_sym_alignas] = ACTIONS(7677), - [anon_sym__Alignas] = ACTIONS(7677), - [anon_sym_QMARK] = ACTIONS(7677), - [anon_sym_STAR_EQ] = ACTIONS(7677), - [anon_sym_SLASH_EQ] = ACTIONS(7677), - [anon_sym_PERCENT_EQ] = ACTIONS(7677), - [anon_sym_PLUS_EQ] = ACTIONS(7677), - [anon_sym_DASH_EQ] = ACTIONS(7677), - [anon_sym_LT_LT_EQ] = ACTIONS(7677), - [anon_sym_GT_GT_EQ] = ACTIONS(7677), - [anon_sym_AMP_EQ] = ACTIONS(7677), - [anon_sym_CARET_EQ] = ACTIONS(7677), - [anon_sym_PIPE_EQ] = ACTIONS(7677), - [anon_sym_LT_EQ_GT] = ACTIONS(7677), - [anon_sym_or] = ACTIONS(7677), - [anon_sym_and] = ACTIONS(7677), - [anon_sym_bitor] = ACTIONS(7677), - [anon_sym_xor] = ACTIONS(7677), - [anon_sym_bitand] = ACTIONS(7677), - [anon_sym_not_eq] = ACTIONS(7677), - [anon_sym_DASH_DASH] = ACTIONS(7677), - [anon_sym_PLUS_PLUS] = ACTIONS(7677), - [anon_sym_DOT] = ACTIONS(7675), - [anon_sym_DOT_STAR] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(7675), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7677), - [anon_sym_override] = ACTIONS(7677), - [anon_sym_requires] = ACTIONS(7677), - [anon_sym_DASH_GT_STAR] = ACTIONS(7677), - }, - [STATE(2615)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), - [anon_sym_COMMA] = ACTIONS(7457), - [anon_sym_RPAREN] = ACTIONS(7457), - [anon_sym_LPAREN2] = ACTIONS(7457), - [anon_sym_DASH] = ACTIONS(7459), - [anon_sym_PLUS] = ACTIONS(7459), - [anon_sym_STAR] = ACTIONS(7459), - [anon_sym_SLASH] = ACTIONS(7459), - [anon_sym_PERCENT] = ACTIONS(7459), - [anon_sym_PIPE_PIPE] = ACTIONS(7457), - [anon_sym_AMP_AMP] = ACTIONS(7457), - [anon_sym_PIPE] = ACTIONS(7459), - [anon_sym_CARET] = ACTIONS(7459), - [anon_sym_AMP] = ACTIONS(7459), - [anon_sym_EQ_EQ] = ACTIONS(7457), - [anon_sym_BANG_EQ] = ACTIONS(7457), - [anon_sym_GT] = ACTIONS(7459), - [anon_sym_GT_EQ] = ACTIONS(7457), - [anon_sym_LT_EQ] = ACTIONS(7459), - [anon_sym_LT] = ACTIONS(7459), - [anon_sym_LT_LT] = ACTIONS(7459), - [anon_sym_GT_GT] = ACTIONS(7459), - [anon_sym___extension__] = ACTIONS(7457), - [anon_sym___attribute__] = ACTIONS(7457), - [anon_sym___attribute] = ACTIONS(7459), - [anon_sym_COLON] = ACTIONS(7459), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7457), - [anon_sym_EQ] = ACTIONS(7459), - [anon_sym_const] = ACTIONS(7459), - [anon_sym_constexpr] = ACTIONS(7457), - [anon_sym_volatile] = ACTIONS(7457), - [anon_sym_restrict] = ACTIONS(7457), - [anon_sym___restrict__] = ACTIONS(7457), - [anon_sym__Atomic] = ACTIONS(7457), - [anon_sym__Noreturn] = ACTIONS(7457), - [anon_sym_noreturn] = ACTIONS(7457), - [anon_sym__Nonnull] = ACTIONS(7457), - [anon_sym_mutable] = ACTIONS(7457), - [anon_sym_constinit] = ACTIONS(7457), - [anon_sym_consteval] = ACTIONS(7457), - [anon_sym_alignas] = ACTIONS(7457), - [anon_sym__Alignas] = ACTIONS(7457), - [anon_sym_QMARK] = ACTIONS(7457), - [anon_sym_STAR_EQ] = ACTIONS(7457), - [anon_sym_SLASH_EQ] = ACTIONS(7457), - [anon_sym_PERCENT_EQ] = ACTIONS(7457), - [anon_sym_PLUS_EQ] = ACTIONS(7457), - [anon_sym_DASH_EQ] = ACTIONS(7457), - [anon_sym_LT_LT_EQ] = ACTIONS(7457), - [anon_sym_GT_GT_EQ] = ACTIONS(7457), - [anon_sym_AMP_EQ] = ACTIONS(7457), - [anon_sym_CARET_EQ] = ACTIONS(7457), - [anon_sym_PIPE_EQ] = ACTIONS(7457), - [anon_sym_and_eq] = ACTIONS(7457), - [anon_sym_or_eq] = ACTIONS(7457), - [anon_sym_xor_eq] = ACTIONS(7457), - [anon_sym_LT_EQ_GT] = ACTIONS(7457), - [anon_sym_or] = ACTIONS(7459), - [anon_sym_and] = ACTIONS(7459), - [anon_sym_bitor] = ACTIONS(7457), - [anon_sym_xor] = ACTIONS(7459), - [anon_sym_bitand] = ACTIONS(7457), - [anon_sym_not_eq] = ACTIONS(7457), - [anon_sym_DASH_DASH] = ACTIONS(7457), - [anon_sym_PLUS_PLUS] = ACTIONS(7457), - [anon_sym_DOT] = ACTIONS(7459), - [anon_sym_DOT_STAR] = ACTIONS(7457), - [anon_sym_DASH_GT] = ACTIONS(7459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7457), - [anon_sym_override] = ACTIONS(7457), - [anon_sym_requires] = ACTIONS(7457), - [anon_sym_DASH_GT_STAR] = ACTIONS(7457), - }, - [STATE(2616)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), - [anon_sym_COMMA] = ACTIONS(7683), - [anon_sym_RPAREN] = ACTIONS(7683), - [anon_sym_LPAREN2] = ACTIONS(7683), - [anon_sym_DASH] = ACTIONS(7681), - [anon_sym_PLUS] = ACTIONS(7681), - [anon_sym_STAR] = ACTIONS(7681), - [anon_sym_SLASH] = ACTIONS(7681), - [anon_sym_PERCENT] = ACTIONS(7681), - [anon_sym_PIPE_PIPE] = ACTIONS(7683), - [anon_sym_AMP_AMP] = ACTIONS(7683), - [anon_sym_PIPE] = ACTIONS(7681), - [anon_sym_CARET] = ACTIONS(7681), - [anon_sym_AMP] = ACTIONS(7681), - [anon_sym_EQ_EQ] = ACTIONS(7683), - [anon_sym_BANG_EQ] = ACTIONS(7683), - [anon_sym_GT] = ACTIONS(7681), - [anon_sym_GT_EQ] = ACTIONS(7683), - [anon_sym_LT_EQ] = ACTIONS(7681), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(7681), - [anon_sym_GT_GT] = ACTIONS(7681), - [anon_sym___extension__] = ACTIONS(7683), - [anon_sym___attribute__] = ACTIONS(7683), - [anon_sym___attribute] = ACTIONS(7681), - [anon_sym_LBRACE] = ACTIONS(7683), - [anon_sym_signed] = ACTIONS(8523), - [anon_sym_unsigned] = ACTIONS(8523), - [anon_sym_long] = ACTIONS(8523), - [anon_sym_short] = ACTIONS(8523), - [anon_sym_LBRACK] = ACTIONS(7683), - [anon_sym_EQ] = ACTIONS(7681), - [anon_sym_const] = ACTIONS(7681), - [anon_sym_constexpr] = ACTIONS(7683), - [anon_sym_volatile] = ACTIONS(7683), - [anon_sym_restrict] = ACTIONS(7683), - [anon_sym___restrict__] = ACTIONS(7683), - [anon_sym__Atomic] = ACTIONS(7683), - [anon_sym__Noreturn] = ACTIONS(7683), - [anon_sym_noreturn] = ACTIONS(7683), - [anon_sym__Nonnull] = ACTIONS(7683), - [anon_sym_mutable] = ACTIONS(7683), - [anon_sym_constinit] = ACTIONS(7683), - [anon_sym_consteval] = ACTIONS(7683), - [anon_sym_alignas] = ACTIONS(7683), - [anon_sym__Alignas] = ACTIONS(7683), - [anon_sym_QMARK] = ACTIONS(7683), - [anon_sym_STAR_EQ] = ACTIONS(7683), - [anon_sym_SLASH_EQ] = ACTIONS(7683), - [anon_sym_PERCENT_EQ] = ACTIONS(7683), - [anon_sym_PLUS_EQ] = ACTIONS(7683), - [anon_sym_DASH_EQ] = ACTIONS(7683), - [anon_sym_LT_LT_EQ] = ACTIONS(7683), - [anon_sym_GT_GT_EQ] = ACTIONS(7683), - [anon_sym_AMP_EQ] = ACTIONS(7683), - [anon_sym_CARET_EQ] = ACTIONS(7683), - [anon_sym_PIPE_EQ] = ACTIONS(7683), - [anon_sym_LT_EQ_GT] = ACTIONS(7683), - [anon_sym_or] = ACTIONS(7683), - [anon_sym_and] = ACTIONS(7683), - [anon_sym_bitor] = ACTIONS(7683), - [anon_sym_xor] = ACTIONS(7683), - [anon_sym_bitand] = ACTIONS(7683), - [anon_sym_not_eq] = ACTIONS(7683), - [anon_sym_DASH_DASH] = ACTIONS(7683), - [anon_sym_PLUS_PLUS] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7681), - [anon_sym_DOT_STAR] = ACTIONS(7683), - [anon_sym_DASH_GT] = ACTIONS(7681), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7683), - [anon_sym_override] = ACTIONS(7683), - [anon_sym_requires] = ACTIONS(7683), - [anon_sym_DASH_GT_STAR] = ACTIONS(7683), - }, - [STATE(2617)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym___extension__] = ACTIONS(7160), - [anon_sym___attribute__] = ACTIONS(7160), - [anon_sym___attribute] = ACTIONS(7158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7158), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7160), - [anon_sym_volatile] = ACTIONS(7160), - [anon_sym_restrict] = ACTIONS(7160), - [anon_sym___restrict__] = ACTIONS(7160), - [anon_sym__Atomic] = ACTIONS(7160), - [anon_sym__Noreturn] = ACTIONS(7160), - [anon_sym_noreturn] = ACTIONS(7160), - [anon_sym__Nonnull] = ACTIONS(7160), - [anon_sym_mutable] = ACTIONS(7160), - [anon_sym_constinit] = ACTIONS(7160), - [anon_sym_consteval] = ACTIONS(7160), - [anon_sym_alignas] = ACTIONS(7160), - [anon_sym__Alignas] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7160), - [anon_sym_and] = ACTIONS(7160), - [anon_sym_bitor] = ACTIONS(7160), - [anon_sym_xor] = ACTIONS(7160), - [anon_sym_bitand] = ACTIONS(7160), - [anon_sym_not_eq] = ACTIONS(7160), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_asm] = ACTIONS(7160), - [anon_sym___asm__] = ACTIONS(7160), - [anon_sym___asm] = ACTIONS(7158), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7158), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7160), - [anon_sym_override] = ACTIONS(7160), - [anon_sym_noexcept] = ACTIONS(7160), - [anon_sym_throw] = ACTIONS(7160), - [anon_sym_requires] = ACTIONS(7160), - [anon_sym_DASH_GT_STAR] = ACTIONS(7160), - }, - [STATE(2618)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym___extension__] = ACTIONS(7289), - [sym_ms_restrict_modifier] = ACTIONS(7287), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7289), - [sym_ms_signed_ptr_modifier] = ACTIONS(7289), - [anon_sym__unaligned] = ACTIONS(7289), - [anon_sym___unaligned] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7289), - [anon_sym_volatile] = ACTIONS(7289), - [anon_sym_restrict] = ACTIONS(7289), - [anon_sym___restrict__] = ACTIONS(7289), - [anon_sym__Atomic] = ACTIONS(7289), - [anon_sym__Noreturn] = ACTIONS(7289), - [anon_sym_noreturn] = ACTIONS(7289), - [anon_sym__Nonnull] = ACTIONS(7289), - [anon_sym_mutable] = ACTIONS(7289), - [anon_sym_constinit] = ACTIONS(7289), - [anon_sym_consteval] = ACTIONS(7289), - [anon_sym_alignas] = ACTIONS(7289), - [anon_sym__Alignas] = ACTIONS(7289), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7289), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_and_eq] = ACTIONS(7289), - [anon_sym_or_eq] = ACTIONS(7289), - [anon_sym_xor_eq] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7289), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7289), - [anon_sym_not_eq] = ACTIONS(7289), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7287), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7289), - [anon_sym_override] = ACTIONS(7289), - [anon_sym_requires] = ACTIONS(7289), - [anon_sym_DASH_GT_STAR] = ACTIONS(7289), - }, - [STATE(2619)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_RPAREN] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7199), - [anon_sym_GT_GT] = ACTIONS(7199), - [anon_sym___extension__] = ACTIONS(7201), - [sym_ms_restrict_modifier] = ACTIONS(7199), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7201), - [sym_ms_signed_ptr_modifier] = ACTIONS(7201), - [anon_sym__unaligned] = ACTIONS(7201), - [anon_sym___unaligned] = ACTIONS(7201), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_EQ] = ACTIONS(7199), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7201), - [anon_sym_volatile] = ACTIONS(7201), - [anon_sym_restrict] = ACTIONS(7201), - [anon_sym___restrict__] = ACTIONS(7201), - [anon_sym__Atomic] = ACTIONS(7201), - [anon_sym__Noreturn] = ACTIONS(7201), - [anon_sym_noreturn] = ACTIONS(7201), - [anon_sym__Nonnull] = ACTIONS(7201), - [anon_sym_mutable] = ACTIONS(7201), - [anon_sym_constinit] = ACTIONS(7201), - [anon_sym_consteval] = ACTIONS(7201), - [anon_sym_alignas] = ACTIONS(7201), - [anon_sym__Alignas] = ACTIONS(7201), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_STAR_EQ] = ACTIONS(7201), - [anon_sym_SLASH_EQ] = ACTIONS(7201), - [anon_sym_PERCENT_EQ] = ACTIONS(7201), - [anon_sym_PLUS_EQ] = ACTIONS(7201), - [anon_sym_DASH_EQ] = ACTIONS(7201), - [anon_sym_LT_LT_EQ] = ACTIONS(7201), - [anon_sym_GT_GT_EQ] = ACTIONS(7201), - [anon_sym_AMP_EQ] = ACTIONS(7201), - [anon_sym_CARET_EQ] = ACTIONS(7201), - [anon_sym_PIPE_EQ] = ACTIONS(7201), - [anon_sym_and_eq] = ACTIONS(7201), - [anon_sym_or_eq] = ACTIONS(7201), - [anon_sym_xor_eq] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7199), - [anon_sym_and] = ACTIONS(7199), - [anon_sym_bitor] = ACTIONS(7201), - [anon_sym_xor] = ACTIONS(7199), - [anon_sym_bitand] = ACTIONS(7201), - [anon_sym_not_eq] = ACTIONS(7201), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7199), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7201), - [anon_sym_override] = ACTIONS(7201), - [anon_sym_requires] = ACTIONS(7201), - [anon_sym_DASH_GT_STAR] = ACTIONS(7201), - }, - [STATE(2620)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), - [anon_sym_COMMA] = ACTIONS(7557), - [anon_sym_RPAREN] = ACTIONS(7557), - [anon_sym_LPAREN2] = ACTIONS(7557), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_STAR] = ACTIONS(7555), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_PERCENT] = ACTIONS(7555), - [anon_sym_PIPE_PIPE] = ACTIONS(7557), - [anon_sym_AMP_AMP] = ACTIONS(7557), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_CARET] = ACTIONS(7555), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_EQ_EQ] = ACTIONS(7557), - [anon_sym_BANG_EQ] = ACTIONS(7557), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7557), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_LT_LT] = ACTIONS(7555), - [anon_sym_GT_GT] = ACTIONS(7555), - [anon_sym___extension__] = ACTIONS(7557), - [anon_sym___attribute__] = ACTIONS(7557), - [anon_sym___attribute] = ACTIONS(7555), - [anon_sym_LBRACE] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(8525), - [anon_sym_unsigned] = ACTIONS(8525), - [anon_sym_long] = ACTIONS(8525), - [anon_sym_short] = ACTIONS(8525), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_EQ] = ACTIONS(7555), - [anon_sym_const] = ACTIONS(7555), - [anon_sym_constexpr] = ACTIONS(7557), - [anon_sym_volatile] = ACTIONS(7557), - [anon_sym_restrict] = ACTIONS(7557), - [anon_sym___restrict__] = ACTIONS(7557), - [anon_sym__Atomic] = ACTIONS(7557), - [anon_sym__Noreturn] = ACTIONS(7557), - [anon_sym_noreturn] = ACTIONS(7557), - [anon_sym__Nonnull] = ACTIONS(7557), - [anon_sym_mutable] = ACTIONS(7557), - [anon_sym_constinit] = ACTIONS(7557), - [anon_sym_consteval] = ACTIONS(7557), - [anon_sym_alignas] = ACTIONS(7557), - [anon_sym__Alignas] = ACTIONS(7557), - [anon_sym_QMARK] = ACTIONS(7557), - [anon_sym_STAR_EQ] = ACTIONS(7557), - [anon_sym_SLASH_EQ] = ACTIONS(7557), - [anon_sym_PERCENT_EQ] = ACTIONS(7557), - [anon_sym_PLUS_EQ] = ACTIONS(7557), - [anon_sym_DASH_EQ] = ACTIONS(7557), - [anon_sym_LT_LT_EQ] = ACTIONS(7557), - [anon_sym_GT_GT_EQ] = ACTIONS(7557), - [anon_sym_AMP_EQ] = ACTIONS(7557), - [anon_sym_CARET_EQ] = ACTIONS(7557), - [anon_sym_PIPE_EQ] = ACTIONS(7557), - [anon_sym_LT_EQ_GT] = ACTIONS(7557), - [anon_sym_or] = ACTIONS(7557), - [anon_sym_and] = ACTIONS(7557), - [anon_sym_bitor] = ACTIONS(7557), - [anon_sym_xor] = ACTIONS(7557), - [anon_sym_bitand] = ACTIONS(7557), - [anon_sym_not_eq] = ACTIONS(7557), - [anon_sym_DASH_DASH] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7557), - [anon_sym_DOT] = ACTIONS(7555), - [anon_sym_DOT_STAR] = ACTIONS(7557), - [anon_sym_DASH_GT] = ACTIONS(7555), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_requires] = ACTIONS(7557), - [anon_sym_DASH_GT_STAR] = ACTIONS(7557), - }, - [STATE(2621)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2631), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), - [anon_sym_COMMA] = ACTIONS(7785), - [anon_sym_RPAREN] = ACTIONS(7785), - [anon_sym_LPAREN2] = ACTIONS(7785), - [anon_sym_DASH] = ACTIONS(7783), - [anon_sym_PLUS] = ACTIONS(7783), - [anon_sym_STAR] = ACTIONS(7783), - [anon_sym_SLASH] = ACTIONS(7783), - [anon_sym_PERCENT] = ACTIONS(7783), - [anon_sym_PIPE_PIPE] = ACTIONS(7785), - [anon_sym_AMP_AMP] = ACTIONS(7785), - [anon_sym_PIPE] = ACTIONS(7783), - [anon_sym_CARET] = ACTIONS(7783), - [anon_sym_AMP] = ACTIONS(7783), - [anon_sym_EQ_EQ] = ACTIONS(7785), - [anon_sym_BANG_EQ] = ACTIONS(7785), - [anon_sym_GT] = ACTIONS(7783), - [anon_sym_GT_EQ] = ACTIONS(7785), - [anon_sym_LT_EQ] = ACTIONS(7783), - [anon_sym_LT] = ACTIONS(7783), - [anon_sym_LT_LT] = ACTIONS(7783), - [anon_sym_GT_GT] = ACTIONS(7783), - [anon_sym___extension__] = ACTIONS(7785), - [anon_sym___attribute__] = ACTIONS(7785), - [anon_sym___attribute] = ACTIONS(7783), - [anon_sym_LBRACE] = ACTIONS(7785), - [anon_sym_signed] = ACTIONS(8527), - [anon_sym_unsigned] = ACTIONS(8527), - [anon_sym_long] = ACTIONS(8527), - [anon_sym_short] = ACTIONS(8527), - [anon_sym_LBRACK] = ACTIONS(7785), - [anon_sym_EQ] = ACTIONS(7783), - [anon_sym_const] = ACTIONS(7783), - [anon_sym_constexpr] = ACTIONS(7785), - [anon_sym_volatile] = ACTIONS(7785), - [anon_sym_restrict] = ACTIONS(7785), - [anon_sym___restrict__] = ACTIONS(7785), - [anon_sym__Atomic] = ACTIONS(7785), - [anon_sym__Noreturn] = ACTIONS(7785), - [anon_sym_noreturn] = ACTIONS(7785), - [anon_sym__Nonnull] = ACTIONS(7785), - [anon_sym_mutable] = ACTIONS(7785), - [anon_sym_constinit] = ACTIONS(7785), - [anon_sym_consteval] = ACTIONS(7785), - [anon_sym_alignas] = ACTIONS(7785), - [anon_sym__Alignas] = ACTIONS(7785), - [anon_sym_QMARK] = ACTIONS(7785), - [anon_sym_STAR_EQ] = ACTIONS(7785), - [anon_sym_SLASH_EQ] = ACTIONS(7785), - [anon_sym_PERCENT_EQ] = ACTIONS(7785), - [anon_sym_PLUS_EQ] = ACTIONS(7785), - [anon_sym_DASH_EQ] = ACTIONS(7785), - [anon_sym_LT_LT_EQ] = ACTIONS(7785), - [anon_sym_GT_GT_EQ] = ACTIONS(7785), - [anon_sym_AMP_EQ] = ACTIONS(7785), - [anon_sym_CARET_EQ] = ACTIONS(7785), - [anon_sym_PIPE_EQ] = ACTIONS(7785), - [anon_sym_LT_EQ_GT] = ACTIONS(7785), - [anon_sym_or] = ACTIONS(7785), - [anon_sym_and] = ACTIONS(7785), - [anon_sym_bitor] = ACTIONS(7785), - [anon_sym_xor] = ACTIONS(7785), - [anon_sym_bitand] = ACTIONS(7785), - [anon_sym_not_eq] = ACTIONS(7785), - [anon_sym_DASH_DASH] = ACTIONS(7785), - [anon_sym_PLUS_PLUS] = ACTIONS(7785), - [anon_sym_DOT] = ACTIONS(7783), - [anon_sym_DOT_STAR] = ACTIONS(7785), - [anon_sym_DASH_GT] = ACTIONS(7783), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7785), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_requires] = ACTIONS(7785), - [anon_sym_DASH_GT_STAR] = ACTIONS(7785), - }, - [STATE(2622)] = { - [sym_decltype_auto] = STATE(3016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8529), - [anon_sym_decltype] = ACTIONS(6975), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(2623)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), - [anon_sym_COMMA] = ACTIONS(7110), - [anon_sym_RPAREN] = ACTIONS(7110), - [anon_sym_LPAREN2] = ACTIONS(7110), - [anon_sym_DASH] = ACTIONS(7108), - [anon_sym_PLUS] = ACTIONS(7108), - [anon_sym_STAR] = ACTIONS(7108), - [anon_sym_SLASH] = ACTIONS(7108), - [anon_sym_PERCENT] = ACTIONS(7108), - [anon_sym_PIPE_PIPE] = ACTIONS(7110), - [anon_sym_AMP_AMP] = ACTIONS(7110), - [anon_sym_PIPE] = ACTIONS(7108), - [anon_sym_CARET] = ACTIONS(7108), - [anon_sym_AMP] = ACTIONS(7108), - [anon_sym_EQ_EQ] = ACTIONS(7110), - [anon_sym_BANG_EQ] = ACTIONS(7110), - [anon_sym_GT] = ACTIONS(7108), - [anon_sym_GT_EQ] = ACTIONS(7110), - [anon_sym_LT_EQ] = ACTIONS(7108), - [anon_sym_LT] = ACTIONS(7108), - [anon_sym_LT_LT] = ACTIONS(7108), - [anon_sym_GT_GT] = ACTIONS(7108), - [anon_sym___extension__] = ACTIONS(7110), - [anon_sym___attribute__] = ACTIONS(7110), - [anon_sym___attribute] = ACTIONS(7108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), - [anon_sym_LBRACK] = ACTIONS(7108), - [anon_sym_EQ] = ACTIONS(7108), - [anon_sym_const] = ACTIONS(7108), - [anon_sym_constexpr] = ACTIONS(7110), - [anon_sym_volatile] = ACTIONS(7110), - [anon_sym_restrict] = ACTIONS(7110), - [anon_sym___restrict__] = ACTIONS(7110), - [anon_sym__Atomic] = ACTIONS(7110), - [anon_sym__Noreturn] = ACTIONS(7110), - [anon_sym_noreturn] = ACTIONS(7110), - [anon_sym__Nonnull] = ACTIONS(7110), - [anon_sym_mutable] = ACTIONS(7110), - [anon_sym_constinit] = ACTIONS(7110), - [anon_sym_consteval] = ACTIONS(7110), - [anon_sym_alignas] = ACTIONS(7110), - [anon_sym__Alignas] = ACTIONS(7110), - [anon_sym_QMARK] = ACTIONS(7110), - [anon_sym_STAR_EQ] = ACTIONS(7110), - [anon_sym_SLASH_EQ] = ACTIONS(7110), - [anon_sym_PERCENT_EQ] = ACTIONS(7110), - [anon_sym_PLUS_EQ] = ACTIONS(7110), - [anon_sym_DASH_EQ] = ACTIONS(7110), - [anon_sym_LT_LT_EQ] = ACTIONS(7110), - [anon_sym_GT_GT_EQ] = ACTIONS(7110), - [anon_sym_AMP_EQ] = ACTIONS(7110), - [anon_sym_CARET_EQ] = ACTIONS(7110), - [anon_sym_PIPE_EQ] = ACTIONS(7110), - [anon_sym_LT_EQ_GT] = ACTIONS(7110), - [anon_sym_or] = ACTIONS(7110), - [anon_sym_and] = ACTIONS(7110), - [anon_sym_bitor] = ACTIONS(7110), - [anon_sym_xor] = ACTIONS(7110), - [anon_sym_bitand] = ACTIONS(7110), - [anon_sym_not_eq] = ACTIONS(7110), - [anon_sym_DASH_DASH] = ACTIONS(7110), - [anon_sym_PLUS_PLUS] = ACTIONS(7110), - [anon_sym_asm] = ACTIONS(7110), - [anon_sym___asm__] = ACTIONS(7110), - [anon_sym___asm] = ACTIONS(7108), - [anon_sym_DOT] = ACTIONS(7108), - [anon_sym_DOT_STAR] = ACTIONS(7110), - [anon_sym_DASH_GT] = ACTIONS(7108), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7110), - [anon_sym_override] = ACTIONS(7110), - [anon_sym_noexcept] = ACTIONS(7110), - [anon_sym_throw] = ACTIONS(7110), - [anon_sym_requires] = ACTIONS(7110), - [anon_sym_DASH_GT_STAR] = ACTIONS(7110), - }, - [STATE(2624)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), - [anon_sym_COMMA] = ACTIONS(7695), - [anon_sym_RPAREN] = ACTIONS(7695), - [anon_sym_LPAREN2] = ACTIONS(7695), - [anon_sym_DASH] = ACTIONS(7693), - [anon_sym_PLUS] = ACTIONS(7693), - [anon_sym_STAR] = ACTIONS(7693), - [anon_sym_SLASH] = ACTIONS(7693), - [anon_sym_PERCENT] = ACTIONS(7693), - [anon_sym_PIPE_PIPE] = ACTIONS(7695), - [anon_sym_AMP_AMP] = ACTIONS(7695), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_CARET] = ACTIONS(7693), - [anon_sym_AMP] = ACTIONS(7693), - [anon_sym_EQ_EQ] = ACTIONS(7695), - [anon_sym_BANG_EQ] = ACTIONS(7695), - [anon_sym_GT] = ACTIONS(7693), - [anon_sym_GT_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7693), - [anon_sym_LT_LT] = ACTIONS(7693), - [anon_sym_GT_GT] = ACTIONS(7693), - [anon_sym___extension__] = ACTIONS(7695), - [anon_sym___attribute__] = ACTIONS(7695), - [anon_sym___attribute] = ACTIONS(7693), - [anon_sym_LBRACE] = ACTIONS(7695), - [anon_sym_signed] = ACTIONS(8523), - [anon_sym_unsigned] = ACTIONS(8523), - [anon_sym_long] = ACTIONS(8523), - [anon_sym_short] = ACTIONS(8523), - [anon_sym_LBRACK] = ACTIONS(7695), - [anon_sym_EQ] = ACTIONS(7693), - [anon_sym_const] = ACTIONS(7693), - [anon_sym_constexpr] = ACTIONS(7695), - [anon_sym_volatile] = ACTIONS(7695), - [anon_sym_restrict] = ACTIONS(7695), - [anon_sym___restrict__] = ACTIONS(7695), - [anon_sym__Atomic] = ACTIONS(7695), - [anon_sym__Noreturn] = ACTIONS(7695), - [anon_sym_noreturn] = ACTIONS(7695), - [anon_sym__Nonnull] = ACTIONS(7695), - [anon_sym_mutable] = ACTIONS(7695), - [anon_sym_constinit] = ACTIONS(7695), - [anon_sym_consteval] = ACTIONS(7695), - [anon_sym_alignas] = ACTIONS(7695), - [anon_sym__Alignas] = ACTIONS(7695), - [anon_sym_QMARK] = ACTIONS(7695), - [anon_sym_STAR_EQ] = ACTIONS(7695), - [anon_sym_SLASH_EQ] = ACTIONS(7695), - [anon_sym_PERCENT_EQ] = ACTIONS(7695), - [anon_sym_PLUS_EQ] = ACTIONS(7695), - [anon_sym_DASH_EQ] = ACTIONS(7695), - [anon_sym_LT_LT_EQ] = ACTIONS(7695), - [anon_sym_GT_GT_EQ] = ACTIONS(7695), - [anon_sym_AMP_EQ] = ACTIONS(7695), - [anon_sym_CARET_EQ] = ACTIONS(7695), - [anon_sym_PIPE_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ_GT] = ACTIONS(7695), - [anon_sym_or] = ACTIONS(7695), - [anon_sym_and] = ACTIONS(7695), - [anon_sym_bitor] = ACTIONS(7695), - [anon_sym_xor] = ACTIONS(7695), - [anon_sym_bitand] = ACTIONS(7695), - [anon_sym_not_eq] = ACTIONS(7695), - [anon_sym_DASH_DASH] = ACTIONS(7695), - [anon_sym_PLUS_PLUS] = ACTIONS(7695), - [anon_sym_DOT] = ACTIONS(7693), - [anon_sym_DOT_STAR] = ACTIONS(7695), - [anon_sym_DASH_GT] = ACTIONS(7693), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7695), - [anon_sym_override] = ACTIONS(7695), - [anon_sym_requires] = ACTIONS(7695), - [anon_sym_DASH_GT_STAR] = ACTIONS(7695), - }, - [STATE(2625)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7291), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7291), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_GT2] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), - }, - [STATE(2626)] = { - [sym_attribute_specifier] = STATE(3051), - [sym_enumerator_list] = STATE(2674), + [sym_attribute_specifier] = STATE(3000), + [sym_enumerator_list] = STATE(2658), [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), [anon_sym_COMMA] = ACTIONS(7389), [anon_sym_RPAREN] = ACTIONS(7389), @@ -365706,9 +363486,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7387), [anon_sym_GT_GT] = ACTIONS(7387), [anon_sym___extension__] = ACTIONS(7389), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(8383), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(8336), [anon_sym_LBRACK] = ACTIONS(7389), [anon_sym_EQ] = ACTIONS(7387), [anon_sym_const] = ACTIONS(7387), @@ -365757,44 +363537,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7389), [anon_sym_DASH_GT_STAR] = ACTIONS(7389), }, - [STATE(2627)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6079), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_parameter_declaration] = STATE(10413), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2600)] = { + [sym__abstract_declarator] = STATE(5725), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_RPAREN] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7343), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7343), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7343), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(7343), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_STAR_EQ] = ACTIONS(7341), + [anon_sym_SLASH_EQ] = ACTIONS(7341), + [anon_sym_PERCENT_EQ] = ACTIONS(7341), + [anon_sym_PLUS_EQ] = ACTIONS(7341), + [anon_sym_DASH_EQ] = ACTIONS(7341), + [anon_sym_LT_LT_EQ] = ACTIONS(7341), + [anon_sym_GT_GT_EQ] = ACTIONS(7341), + [anon_sym_AMP_EQ] = ACTIONS(7341), + [anon_sym_CARET_EQ] = ACTIONS(7341), + [anon_sym_PIPE_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7343), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7341), + }, + [STATE(2601)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6034), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_parameter_declaration] = STATE(10328), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -365822,3014 +363679,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2628)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_RPAREN] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7231), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7231), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7231), - [anon_sym_GT_GT] = ACTIONS(7231), - [anon_sym___extension__] = ACTIONS(7233), - [anon_sym___attribute__] = ACTIONS(7233), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(7233), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7233), - [anon_sym_EQ] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7233), - [anon_sym_volatile] = ACTIONS(7233), - [anon_sym_restrict] = ACTIONS(7233), - [anon_sym___restrict__] = ACTIONS(7233), - [anon_sym__Atomic] = ACTIONS(7233), - [anon_sym__Noreturn] = ACTIONS(7233), - [anon_sym_noreturn] = ACTIONS(7233), - [anon_sym__Nonnull] = ACTIONS(7233), - [anon_sym_mutable] = ACTIONS(7233), - [anon_sym_constinit] = ACTIONS(7233), - [anon_sym_consteval] = ACTIONS(7233), - [anon_sym_alignas] = ACTIONS(7233), - [anon_sym__Alignas] = ACTIONS(7233), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_STAR_EQ] = ACTIONS(7233), - [anon_sym_SLASH_EQ] = ACTIONS(7233), - [anon_sym_PERCENT_EQ] = ACTIONS(7233), - [anon_sym_PLUS_EQ] = ACTIONS(7233), - [anon_sym_DASH_EQ] = ACTIONS(7233), - [anon_sym_LT_LT_EQ] = ACTIONS(7233), - [anon_sym_GT_GT_EQ] = ACTIONS(7233), - [anon_sym_AMP_EQ] = ACTIONS(7233), - [anon_sym_CARET_EQ] = ACTIONS(7233), - [anon_sym_PIPE_EQ] = ACTIONS(7233), - [anon_sym_and_eq] = ACTIONS(7233), - [anon_sym_or_eq] = ACTIONS(7233), - [anon_sym_xor_eq] = ACTIONS(7233), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_bitor] = ACTIONS(7233), - [anon_sym_xor] = ACTIONS(7231), - [anon_sym_bitand] = ACTIONS(7233), - [anon_sym_not_eq] = ACTIONS(7233), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7231), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7233), - [anon_sym_override] = ACTIONS(7233), - [anon_sym_requires] = ACTIONS(7233), - [anon_sym_DASH_GT_STAR] = ACTIONS(7233), - }, - [STATE(2629)] = { - [sym__abstract_declarator] = STATE(5798), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1989), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_RPAREN] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(7589), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7349), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(7591), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7349), - [anon_sym_AMP] = ACTIONS(7593), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7349), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(7349), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_STAR_EQ] = ACTIONS(7351), - [anon_sym_SLASH_EQ] = ACTIONS(7351), - [anon_sym_PERCENT_EQ] = ACTIONS(7351), - [anon_sym_PLUS_EQ] = ACTIONS(7351), - [anon_sym_DASH_EQ] = ACTIONS(7351), - [anon_sym_LT_LT_EQ] = ACTIONS(7351), - [anon_sym_GT_GT_EQ] = ACTIONS(7351), - [anon_sym_AMP_EQ] = ACTIONS(7351), - [anon_sym_CARET_EQ] = ACTIONS(7351), - [anon_sym_PIPE_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7349), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7351), - }, - [STATE(2630)] = { - [sym__abstract_declarator] = STATE(5802), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2644), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1989), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2644), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(7589), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7341), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(7591), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7341), - [anon_sym_AMP] = ACTIONS(7593), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7341), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(7341), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_STAR_EQ] = ACTIONS(7343), - [anon_sym_SLASH_EQ] = ACTIONS(7343), - [anon_sym_PERCENT_EQ] = ACTIONS(7343), - [anon_sym_PLUS_EQ] = ACTIONS(7343), - [anon_sym_DASH_EQ] = ACTIONS(7343), - [anon_sym_LT_LT_EQ] = ACTIONS(7343), - [anon_sym_GT_GT_EQ] = ACTIONS(7343), - [anon_sym_AMP_EQ] = ACTIONS(7343), - [anon_sym_CARET_EQ] = ACTIONS(7343), - [anon_sym_PIPE_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7343), - [anon_sym_and] = ACTIONS(7343), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7343), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7341), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7343), - }, - [STATE(2631)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), - [anon_sym_COMMA] = ACTIONS(7699), - [anon_sym_RPAREN] = ACTIONS(7699), - [anon_sym_LPAREN2] = ACTIONS(7699), - [anon_sym_DASH] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7697), - [anon_sym_STAR] = ACTIONS(7697), - [anon_sym_SLASH] = ACTIONS(7697), - [anon_sym_PERCENT] = ACTIONS(7697), - [anon_sym_PIPE_PIPE] = ACTIONS(7699), - [anon_sym_AMP_AMP] = ACTIONS(7699), - [anon_sym_PIPE] = ACTIONS(7697), - [anon_sym_CARET] = ACTIONS(7697), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_EQ_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7699), - [anon_sym_GT] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_LT] = ACTIONS(7697), - [anon_sym_LT_LT] = ACTIONS(7697), - [anon_sym_GT_GT] = ACTIONS(7697), - [anon_sym___extension__] = ACTIONS(7699), - [anon_sym___attribute__] = ACTIONS(7699), - [anon_sym___attribute] = ACTIONS(7697), - [anon_sym_LBRACE] = ACTIONS(7699), - [anon_sym_signed] = ACTIONS(8523), - [anon_sym_unsigned] = ACTIONS(8523), - [anon_sym_long] = ACTIONS(8523), - [anon_sym_short] = ACTIONS(8523), - [anon_sym_LBRACK] = ACTIONS(7699), - [anon_sym_EQ] = ACTIONS(7697), - [anon_sym_const] = ACTIONS(7697), - [anon_sym_constexpr] = ACTIONS(7699), - [anon_sym_volatile] = ACTIONS(7699), - [anon_sym_restrict] = ACTIONS(7699), - [anon_sym___restrict__] = ACTIONS(7699), - [anon_sym__Atomic] = ACTIONS(7699), - [anon_sym__Noreturn] = ACTIONS(7699), - [anon_sym_noreturn] = ACTIONS(7699), - [anon_sym__Nonnull] = ACTIONS(7699), - [anon_sym_mutable] = ACTIONS(7699), - [anon_sym_constinit] = ACTIONS(7699), - [anon_sym_consteval] = ACTIONS(7699), - [anon_sym_alignas] = ACTIONS(7699), - [anon_sym__Alignas] = ACTIONS(7699), - [anon_sym_QMARK] = ACTIONS(7699), - [anon_sym_STAR_EQ] = ACTIONS(7699), - [anon_sym_SLASH_EQ] = ACTIONS(7699), - [anon_sym_PERCENT_EQ] = ACTIONS(7699), - [anon_sym_PLUS_EQ] = ACTIONS(7699), - [anon_sym_DASH_EQ] = ACTIONS(7699), - [anon_sym_LT_LT_EQ] = ACTIONS(7699), - [anon_sym_GT_GT_EQ] = ACTIONS(7699), - [anon_sym_AMP_EQ] = ACTIONS(7699), - [anon_sym_CARET_EQ] = ACTIONS(7699), - [anon_sym_PIPE_EQ] = ACTIONS(7699), - [anon_sym_LT_EQ_GT] = ACTIONS(7699), - [anon_sym_or] = ACTIONS(7699), - [anon_sym_and] = ACTIONS(7699), - [anon_sym_bitor] = ACTIONS(7699), - [anon_sym_xor] = ACTIONS(7699), - [anon_sym_bitand] = ACTIONS(7699), - [anon_sym_not_eq] = ACTIONS(7699), - [anon_sym_DASH_DASH] = ACTIONS(7699), - [anon_sym_PLUS_PLUS] = ACTIONS(7699), - [anon_sym_DOT] = ACTIONS(7697), - [anon_sym_DOT_STAR] = ACTIONS(7699), - [anon_sym_DASH_GT] = ACTIONS(7697), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7699), - [anon_sym_override] = ACTIONS(7699), - [anon_sym_requires] = ACTIONS(7699), - [anon_sym_DASH_GT_STAR] = ACTIONS(7699), - }, - [STATE(2632)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2642), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), - [anon_sym_COMMA] = ACTIONS(7703), - [anon_sym_RPAREN] = ACTIONS(7703), - [anon_sym_LPAREN2] = ACTIONS(7703), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_STAR] = ACTIONS(7701), - [anon_sym_SLASH] = ACTIONS(7701), - [anon_sym_PERCENT] = ACTIONS(7701), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_AMP_AMP] = ACTIONS(7703), - [anon_sym_PIPE] = ACTIONS(7701), - [anon_sym_CARET] = ACTIONS(7701), - [anon_sym_AMP] = ACTIONS(7701), - [anon_sym_EQ_EQ] = ACTIONS(7703), - [anon_sym_BANG_EQ] = ACTIONS(7703), - [anon_sym_GT] = ACTIONS(7701), - [anon_sym_GT_EQ] = ACTIONS(7703), - [anon_sym_LT_EQ] = ACTIONS(7701), - [anon_sym_LT] = ACTIONS(7701), - [anon_sym_LT_LT] = ACTIONS(7701), - [anon_sym_GT_GT] = ACTIONS(7701), - [anon_sym___extension__] = ACTIONS(7703), - [anon_sym___attribute__] = ACTIONS(7703), - [anon_sym___attribute] = ACTIONS(7701), - [anon_sym_LBRACE] = ACTIONS(7703), - [anon_sym_signed] = ACTIONS(8531), - [anon_sym_unsigned] = ACTIONS(8531), - [anon_sym_long] = ACTIONS(8531), - [anon_sym_short] = ACTIONS(8531), - [anon_sym_LBRACK] = ACTIONS(7703), - [anon_sym_EQ] = ACTIONS(7701), - [anon_sym_const] = ACTIONS(7701), - [anon_sym_constexpr] = ACTIONS(7703), - [anon_sym_volatile] = ACTIONS(7703), - [anon_sym_restrict] = ACTIONS(7703), - [anon_sym___restrict__] = ACTIONS(7703), - [anon_sym__Atomic] = ACTIONS(7703), - [anon_sym__Noreturn] = ACTIONS(7703), - [anon_sym_noreturn] = ACTIONS(7703), - [anon_sym__Nonnull] = ACTIONS(7703), - [anon_sym_mutable] = ACTIONS(7703), - [anon_sym_constinit] = ACTIONS(7703), - [anon_sym_consteval] = ACTIONS(7703), - [anon_sym_alignas] = ACTIONS(7703), - [anon_sym__Alignas] = ACTIONS(7703), - [anon_sym_QMARK] = ACTIONS(7703), - [anon_sym_STAR_EQ] = ACTIONS(7703), - [anon_sym_SLASH_EQ] = ACTIONS(7703), - [anon_sym_PERCENT_EQ] = ACTIONS(7703), - [anon_sym_PLUS_EQ] = ACTIONS(7703), - [anon_sym_DASH_EQ] = ACTIONS(7703), - [anon_sym_LT_LT_EQ] = ACTIONS(7703), - [anon_sym_GT_GT_EQ] = ACTIONS(7703), - [anon_sym_AMP_EQ] = ACTIONS(7703), - [anon_sym_CARET_EQ] = ACTIONS(7703), - [anon_sym_PIPE_EQ] = ACTIONS(7703), - [anon_sym_LT_EQ_GT] = ACTIONS(7703), - [anon_sym_or] = ACTIONS(7703), - [anon_sym_and] = ACTIONS(7703), - [anon_sym_bitor] = ACTIONS(7703), - [anon_sym_xor] = ACTIONS(7703), - [anon_sym_bitand] = ACTIONS(7703), - [anon_sym_not_eq] = ACTIONS(7703), - [anon_sym_DASH_DASH] = ACTIONS(7703), - [anon_sym_PLUS_PLUS] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(7701), - [anon_sym_DOT_STAR] = ACTIONS(7703), - [anon_sym_DASH_GT] = ACTIONS(7701), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7703), - [anon_sym_override] = ACTIONS(7703), - [anon_sym_requires] = ACTIONS(7703), - [anon_sym_DASH_GT_STAR] = ACTIONS(7703), - }, - [STATE(2633)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_RBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_and_eq] = ACTIONS(7293), - [anon_sym_or_eq] = ACTIONS(7293), - [anon_sym_xor_eq] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), - }, - [STATE(2634)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), - [anon_sym_COMMA] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(7709), - [anon_sym_LPAREN2] = ACTIONS(7709), - [anon_sym_DASH] = ACTIONS(7707), - [anon_sym_PLUS] = ACTIONS(7707), - [anon_sym_STAR] = ACTIONS(7707), - [anon_sym_SLASH] = ACTIONS(7707), - [anon_sym_PERCENT] = ACTIONS(7707), - [anon_sym_PIPE_PIPE] = ACTIONS(7709), - [anon_sym_AMP_AMP] = ACTIONS(7709), - [anon_sym_PIPE] = ACTIONS(7707), - [anon_sym_CARET] = ACTIONS(7707), - [anon_sym_AMP] = ACTIONS(7707), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_BANG_EQ] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7707), - [anon_sym_GT_EQ] = ACTIONS(7709), - [anon_sym_LT_EQ] = ACTIONS(7707), - [anon_sym_LT] = ACTIONS(7707), - [anon_sym_LT_LT] = ACTIONS(7707), - [anon_sym_GT_GT] = ACTIONS(7707), - [anon_sym___extension__] = ACTIONS(7709), - [anon_sym___attribute__] = ACTIONS(7709), - [anon_sym___attribute] = ACTIONS(7707), - [anon_sym_LBRACE] = ACTIONS(7709), - [anon_sym_signed] = ACTIONS(8533), - [anon_sym_unsigned] = ACTIONS(8533), - [anon_sym_long] = ACTIONS(8533), - [anon_sym_short] = ACTIONS(8533), - [anon_sym_LBRACK] = ACTIONS(7709), - [anon_sym_EQ] = ACTIONS(7707), - [anon_sym_const] = ACTIONS(7707), - [anon_sym_constexpr] = ACTIONS(7709), - [anon_sym_volatile] = ACTIONS(7709), - [anon_sym_restrict] = ACTIONS(7709), - [anon_sym___restrict__] = ACTIONS(7709), - [anon_sym__Atomic] = ACTIONS(7709), - [anon_sym__Noreturn] = ACTIONS(7709), - [anon_sym_noreturn] = ACTIONS(7709), - [anon_sym__Nonnull] = ACTIONS(7709), - [anon_sym_mutable] = ACTIONS(7709), - [anon_sym_constinit] = ACTIONS(7709), - [anon_sym_consteval] = ACTIONS(7709), - [anon_sym_alignas] = ACTIONS(7709), - [anon_sym__Alignas] = ACTIONS(7709), - [anon_sym_QMARK] = ACTIONS(7709), - [anon_sym_STAR_EQ] = ACTIONS(7709), - [anon_sym_SLASH_EQ] = ACTIONS(7709), - [anon_sym_PERCENT_EQ] = ACTIONS(7709), - [anon_sym_PLUS_EQ] = ACTIONS(7709), - [anon_sym_DASH_EQ] = ACTIONS(7709), - [anon_sym_LT_LT_EQ] = ACTIONS(7709), - [anon_sym_GT_GT_EQ] = ACTIONS(7709), - [anon_sym_AMP_EQ] = ACTIONS(7709), - [anon_sym_CARET_EQ] = ACTIONS(7709), - [anon_sym_PIPE_EQ] = ACTIONS(7709), - [anon_sym_LT_EQ_GT] = ACTIONS(7709), - [anon_sym_or] = ACTIONS(7709), - [anon_sym_and] = ACTIONS(7709), - [anon_sym_bitor] = ACTIONS(7709), - [anon_sym_xor] = ACTIONS(7709), - [anon_sym_bitand] = ACTIONS(7709), - [anon_sym_not_eq] = ACTIONS(7709), - [anon_sym_DASH_DASH] = ACTIONS(7709), - [anon_sym_PLUS_PLUS] = ACTIONS(7709), - [anon_sym_DOT] = ACTIONS(7707), - [anon_sym_DOT_STAR] = ACTIONS(7709), - [anon_sym_DASH_GT] = ACTIONS(7707), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7709), - [anon_sym_override] = ACTIONS(7709), - [anon_sym_requires] = ACTIONS(7709), - [anon_sym_DASH_GT_STAR] = ACTIONS(7709), - }, - [STATE(2635)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym_ref_qualifier] = STATE(2677), - [sym__function_exception_specification] = STATE(3352), - [sym__function_attributes_end] = STATE(4579), - [sym__function_postfix] = STATE(5696), - [sym_trailing_return_type] = STATE(4642), - [sym_noexcept] = STATE(3352), - [sym_throw_specifier] = STATE(3352), - [sym_requires_clause] = STATE(5696), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(8508), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(8511), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7791), - [anon_sym_and] = ACTIONS(7791), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7791), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8514), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6777), - [anon_sym_override] = ACTIONS(6777), - [anon_sym_noexcept] = ACTIONS(6779), - [anon_sym_throw] = ACTIONS(6781), - [anon_sym_requires] = ACTIONS(6783), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), - }, - [STATE(2636)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym___extension__] = ACTIONS(3118), - [anon_sym___attribute__] = ACTIONS(3118), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_EQ] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3118), - [anon_sym_volatile] = ACTIONS(3118), - [anon_sym_restrict] = ACTIONS(3118), - [anon_sym___restrict__] = ACTIONS(3118), - [anon_sym__Atomic] = ACTIONS(3118), - [anon_sym__Noreturn] = ACTIONS(3118), - [anon_sym_noreturn] = ACTIONS(3118), - [anon_sym__Nonnull] = ACTIONS(3118), - [anon_sym_mutable] = ACTIONS(3118), - [anon_sym_constinit] = ACTIONS(3118), - [anon_sym_consteval] = ACTIONS(3118), - [anon_sym_alignas] = ACTIONS(3118), - [anon_sym__Alignas] = ACTIONS(3118), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3118), - [anon_sym_and] = ACTIONS(3118), - [anon_sym_bitor] = ACTIONS(3118), - [anon_sym_xor] = ACTIONS(3118), - [anon_sym_bitand] = ACTIONS(3118), - [anon_sym_not_eq] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_asm] = ACTIONS(3118), - [anon_sym___asm__] = ACTIONS(3118), - [anon_sym___asm] = ACTIONS(3128), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3118), - [anon_sym_override] = ACTIONS(3118), - [anon_sym_noexcept] = ACTIONS(3118), - [anon_sym_throw] = ACTIONS(3118), - [anon_sym_requires] = ACTIONS(3118), - [anon_sym_DASH_GT_STAR] = ACTIONS(3118), - }, - [STATE(2637)] = { - [sym_template_argument_list] = STATE(2577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), - [anon_sym_COMMA] = ACTIONS(5657), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_DASH] = ACTIONS(7371), - [anon_sym_PLUS] = ACTIONS(7371), - [anon_sym_STAR] = ACTIONS(7371), - [anon_sym_SLASH] = ACTIONS(7371), - [anon_sym_PERCENT] = ACTIONS(7371), - [anon_sym_PIPE_PIPE] = ACTIONS(5657), - [anon_sym_AMP_AMP] = ACTIONS(5657), - [anon_sym_PIPE] = ACTIONS(7371), - [anon_sym_CARET] = ACTIONS(7371), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_EQ_EQ] = ACTIONS(5657), - [anon_sym_BANG_EQ] = ACTIONS(5657), - [anon_sym_GT] = ACTIONS(7371), - [anon_sym_GT_EQ] = ACTIONS(5657), - [anon_sym_LT_EQ] = ACTIONS(7371), - [anon_sym_LT] = ACTIONS(8064), - [anon_sym_LT_LT] = ACTIONS(7371), - [anon_sym_GT_GT] = ACTIONS(7371), - [anon_sym___extension__] = ACTIONS(5657), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym___attribute] = ACTIONS(7371), - [anon_sym_COLON] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5657), - [anon_sym_RBRACK] = ACTIONS(5657), - [anon_sym_EQ] = ACTIONS(7371), - [anon_sym_const] = ACTIONS(7371), - [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), - [anon_sym_QMARK] = ACTIONS(5657), - [anon_sym_STAR_EQ] = ACTIONS(5657), - [anon_sym_SLASH_EQ] = ACTIONS(5657), - [anon_sym_PERCENT_EQ] = ACTIONS(5657), - [anon_sym_PLUS_EQ] = ACTIONS(5657), - [anon_sym_DASH_EQ] = ACTIONS(5657), - [anon_sym_LT_LT_EQ] = ACTIONS(5657), - [anon_sym_GT_GT_EQ] = ACTIONS(5657), - [anon_sym_AMP_EQ] = ACTIONS(5657), - [anon_sym_CARET_EQ] = ACTIONS(5657), - [anon_sym_PIPE_EQ] = ACTIONS(5657), - [anon_sym_and_eq] = ACTIONS(5657), - [anon_sym_or_eq] = ACTIONS(5657), - [anon_sym_xor_eq] = ACTIONS(5657), - [anon_sym_LT_EQ_GT] = ACTIONS(5657), - [anon_sym_or] = ACTIONS(7371), - [anon_sym_and] = ACTIONS(7371), - [anon_sym_bitor] = ACTIONS(5657), - [anon_sym_xor] = ACTIONS(7371), - [anon_sym_bitand] = ACTIONS(5657), - [anon_sym_not_eq] = ACTIONS(5657), - [anon_sym_DASH_DASH] = ACTIONS(5657), - [anon_sym_PLUS_PLUS] = ACTIONS(5657), - [anon_sym_DOT] = ACTIONS(7371), - [anon_sym_DOT_STAR] = ACTIONS(5657), - [anon_sym_DASH_GT] = ACTIONS(5657), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5657), - [anon_sym_override] = ACTIONS(5657), - [anon_sym_requires] = ACTIONS(5657), - }, - [STATE(2638)] = { - [sym_template_argument_list] = STATE(2721), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7085), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7085), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7085), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7085), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(8032), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7085), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_and_eq] = ACTIONS(7090), - [anon_sym_or_eq] = ACTIONS(7090), - [anon_sym_xor_eq] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7090), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7090), - [anon_sym_not_eq] = ACTIONS(7090), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_GT2] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), - }, - [STATE(2639)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), - [anon_sym_COMMA] = ACTIONS(7715), - [anon_sym_RPAREN] = ACTIONS(7715), - [anon_sym_LPAREN2] = ACTIONS(7715), - [anon_sym_DASH] = ACTIONS(7713), - [anon_sym_PLUS] = ACTIONS(7713), - [anon_sym_STAR] = ACTIONS(7713), - [anon_sym_SLASH] = ACTIONS(7713), - [anon_sym_PERCENT] = ACTIONS(7713), - [anon_sym_PIPE_PIPE] = ACTIONS(7715), - [anon_sym_AMP_AMP] = ACTIONS(7715), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_CARET] = ACTIONS(7713), - [anon_sym_AMP] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7715), - [anon_sym_BANG_EQ] = ACTIONS(7715), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_EQ] = ACTIONS(7715), - [anon_sym_LT_EQ] = ACTIONS(7713), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_LT_LT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7713), - [anon_sym___extension__] = ACTIONS(7715), - [anon_sym___attribute__] = ACTIONS(7715), - [anon_sym___attribute] = ACTIONS(7713), - [anon_sym_LBRACE] = ACTIONS(7715), - [anon_sym_signed] = ACTIONS(8523), - [anon_sym_unsigned] = ACTIONS(8523), - [anon_sym_long] = ACTIONS(8523), - [anon_sym_short] = ACTIONS(8523), - [anon_sym_LBRACK] = ACTIONS(7715), - [anon_sym_EQ] = ACTIONS(7713), - [anon_sym_const] = ACTIONS(7713), - [anon_sym_constexpr] = ACTIONS(7715), - [anon_sym_volatile] = ACTIONS(7715), - [anon_sym_restrict] = ACTIONS(7715), - [anon_sym___restrict__] = ACTIONS(7715), - [anon_sym__Atomic] = ACTIONS(7715), - [anon_sym__Noreturn] = ACTIONS(7715), - [anon_sym_noreturn] = ACTIONS(7715), - [anon_sym__Nonnull] = ACTIONS(7715), - [anon_sym_mutable] = ACTIONS(7715), - [anon_sym_constinit] = ACTIONS(7715), - [anon_sym_consteval] = ACTIONS(7715), - [anon_sym_alignas] = ACTIONS(7715), - [anon_sym__Alignas] = ACTIONS(7715), - [anon_sym_QMARK] = ACTIONS(7715), - [anon_sym_STAR_EQ] = ACTIONS(7715), - [anon_sym_SLASH_EQ] = ACTIONS(7715), - [anon_sym_PERCENT_EQ] = ACTIONS(7715), - [anon_sym_PLUS_EQ] = ACTIONS(7715), - [anon_sym_DASH_EQ] = ACTIONS(7715), - [anon_sym_LT_LT_EQ] = ACTIONS(7715), - [anon_sym_GT_GT_EQ] = ACTIONS(7715), - [anon_sym_AMP_EQ] = ACTIONS(7715), - [anon_sym_CARET_EQ] = ACTIONS(7715), - [anon_sym_PIPE_EQ] = ACTIONS(7715), - [anon_sym_LT_EQ_GT] = ACTIONS(7715), - [anon_sym_or] = ACTIONS(7715), - [anon_sym_and] = ACTIONS(7715), - [anon_sym_bitor] = ACTIONS(7715), - [anon_sym_xor] = ACTIONS(7715), - [anon_sym_bitand] = ACTIONS(7715), - [anon_sym_not_eq] = ACTIONS(7715), - [anon_sym_DASH_DASH] = ACTIONS(7715), - [anon_sym_PLUS_PLUS] = ACTIONS(7715), - [anon_sym_DOT] = ACTIONS(7713), - [anon_sym_DOT_STAR] = ACTIONS(7715), - [anon_sym_DASH_GT] = ACTIONS(7713), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7715), - [anon_sym_override] = ACTIONS(7715), - [anon_sym_requires] = ACTIONS(7715), - [anon_sym_DASH_GT_STAR] = ACTIONS(7715), - }, - [STATE(2640)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_RPAREN] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7717), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7717), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7717), - [anon_sym_GT_GT] = ACTIONS(7717), - [anon_sym___extension__] = ACTIONS(7719), - [anon_sym___attribute__] = ACTIONS(7719), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_signed] = ACTIONS(8535), - [anon_sym_unsigned] = ACTIONS(8535), - [anon_sym_long] = ACTIONS(8535), - [anon_sym_short] = ACTIONS(8535), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(7717), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7719), - [anon_sym_volatile] = ACTIONS(7719), - [anon_sym_restrict] = ACTIONS(7719), - [anon_sym___restrict__] = ACTIONS(7719), - [anon_sym__Atomic] = ACTIONS(7719), - [anon_sym__Noreturn] = ACTIONS(7719), - [anon_sym_noreturn] = ACTIONS(7719), - [anon_sym__Nonnull] = ACTIONS(7719), - [anon_sym_mutable] = ACTIONS(7719), - [anon_sym_constinit] = ACTIONS(7719), - [anon_sym_consteval] = ACTIONS(7719), - [anon_sym_alignas] = ACTIONS(7719), - [anon_sym__Alignas] = ACTIONS(7719), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_STAR_EQ] = ACTIONS(7719), - [anon_sym_SLASH_EQ] = ACTIONS(7719), - [anon_sym_PERCENT_EQ] = ACTIONS(7719), - [anon_sym_PLUS_EQ] = ACTIONS(7719), - [anon_sym_DASH_EQ] = ACTIONS(7719), - [anon_sym_LT_LT_EQ] = ACTIONS(7719), - [anon_sym_GT_GT_EQ] = ACTIONS(7719), - [anon_sym_AMP_EQ] = ACTIONS(7719), - [anon_sym_CARET_EQ] = ACTIONS(7719), - [anon_sym_PIPE_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7719), - [anon_sym_and] = ACTIONS(7719), - [anon_sym_bitor] = ACTIONS(7719), - [anon_sym_xor] = ACTIONS(7719), - [anon_sym_bitand] = ACTIONS(7719), - [anon_sym_not_eq] = ACTIONS(7719), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7717), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7719), - [anon_sym_override] = ACTIONS(7719), - [anon_sym_requires] = ACTIONS(7719), - [anon_sym_DASH_GT_STAR] = ACTIONS(7719), - }, - [STATE(2641)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_RPAREN] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym___extension__] = ACTIONS(7079), - [anon_sym___attribute__] = ACTIONS(7079), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), - [anon_sym_LBRACK] = ACTIONS(7077), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7079), - [anon_sym_volatile] = ACTIONS(7079), - [anon_sym_restrict] = ACTIONS(7079), - [anon_sym___restrict__] = ACTIONS(7079), - [anon_sym__Atomic] = ACTIONS(7079), - [anon_sym__Noreturn] = ACTIONS(7079), - [anon_sym_noreturn] = ACTIONS(7079), - [anon_sym__Nonnull] = ACTIONS(7079), - [anon_sym_mutable] = ACTIONS(7079), - [anon_sym_constinit] = ACTIONS(7079), - [anon_sym_consteval] = ACTIONS(7079), - [anon_sym_alignas] = ACTIONS(7079), - [anon_sym__Alignas] = ACTIONS(7079), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7079), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7079), - [anon_sym_and] = ACTIONS(7079), - [anon_sym_bitor] = ACTIONS(7079), - [anon_sym_xor] = ACTIONS(7079), - [anon_sym_bitand] = ACTIONS(7079), - [anon_sym_not_eq] = ACTIONS(7079), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_asm] = ACTIONS(7079), - [anon_sym___asm__] = ACTIONS(7079), - [anon_sym___asm] = ACTIONS(7077), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7077), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7079), - [anon_sym_override] = ACTIONS(7079), - [anon_sym_noexcept] = ACTIONS(7079), - [anon_sym_throw] = ACTIONS(7079), - [anon_sym_requires] = ACTIONS(7079), - [anon_sym_DASH_GT_STAR] = ACTIONS(7079), - }, - [STATE(2642)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), - [anon_sym_COMMA] = ACTIONS(7725), - [anon_sym_RPAREN] = ACTIONS(7725), - [anon_sym_LPAREN2] = ACTIONS(7725), - [anon_sym_DASH] = ACTIONS(7723), - [anon_sym_PLUS] = ACTIONS(7723), - [anon_sym_STAR] = ACTIONS(7723), - [anon_sym_SLASH] = ACTIONS(7723), - [anon_sym_PERCENT] = ACTIONS(7723), - [anon_sym_PIPE_PIPE] = ACTIONS(7725), - [anon_sym_AMP_AMP] = ACTIONS(7725), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_CARET] = ACTIONS(7723), - [anon_sym_AMP] = ACTIONS(7723), - [anon_sym_EQ_EQ] = ACTIONS(7725), - [anon_sym_BANG_EQ] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_EQ] = ACTIONS(7725), - [anon_sym_LT_EQ] = ACTIONS(7723), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_LT_LT] = ACTIONS(7723), - [anon_sym_GT_GT] = ACTIONS(7723), - [anon_sym___extension__] = ACTIONS(7725), - [anon_sym___attribute__] = ACTIONS(7725), - [anon_sym___attribute] = ACTIONS(7723), - [anon_sym_LBRACE] = ACTIONS(7725), - [anon_sym_signed] = ACTIONS(8523), - [anon_sym_unsigned] = ACTIONS(8523), - [anon_sym_long] = ACTIONS(8523), - [anon_sym_short] = ACTIONS(8523), - [anon_sym_LBRACK] = ACTIONS(7725), - [anon_sym_EQ] = ACTIONS(7723), - [anon_sym_const] = ACTIONS(7723), - [anon_sym_constexpr] = ACTIONS(7725), - [anon_sym_volatile] = ACTIONS(7725), - [anon_sym_restrict] = ACTIONS(7725), - [anon_sym___restrict__] = ACTIONS(7725), - [anon_sym__Atomic] = ACTIONS(7725), - [anon_sym__Noreturn] = ACTIONS(7725), - [anon_sym_noreturn] = ACTIONS(7725), - [anon_sym__Nonnull] = ACTIONS(7725), - [anon_sym_mutable] = ACTIONS(7725), - [anon_sym_constinit] = ACTIONS(7725), - [anon_sym_consteval] = ACTIONS(7725), - [anon_sym_alignas] = ACTIONS(7725), - [anon_sym__Alignas] = ACTIONS(7725), - [anon_sym_QMARK] = ACTIONS(7725), - [anon_sym_STAR_EQ] = ACTIONS(7725), - [anon_sym_SLASH_EQ] = ACTIONS(7725), - [anon_sym_PERCENT_EQ] = ACTIONS(7725), - [anon_sym_PLUS_EQ] = ACTIONS(7725), - [anon_sym_DASH_EQ] = ACTIONS(7725), - [anon_sym_LT_LT_EQ] = ACTIONS(7725), - [anon_sym_GT_GT_EQ] = ACTIONS(7725), - [anon_sym_AMP_EQ] = ACTIONS(7725), - [anon_sym_CARET_EQ] = ACTIONS(7725), - [anon_sym_PIPE_EQ] = ACTIONS(7725), - [anon_sym_LT_EQ_GT] = ACTIONS(7725), - [anon_sym_or] = ACTIONS(7725), - [anon_sym_and] = ACTIONS(7725), - [anon_sym_bitor] = ACTIONS(7725), - [anon_sym_xor] = ACTIONS(7725), - [anon_sym_bitand] = ACTIONS(7725), - [anon_sym_not_eq] = ACTIONS(7725), - [anon_sym_DASH_DASH] = ACTIONS(7725), - [anon_sym_PLUS_PLUS] = ACTIONS(7725), - [anon_sym_DOT] = ACTIONS(7723), - [anon_sym_DOT_STAR] = ACTIONS(7725), - [anon_sym_DASH_GT] = ACTIONS(7723), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7725), - [anon_sym_override] = ACTIONS(7725), - [anon_sym_requires] = ACTIONS(7725), - [anon_sym_DASH_GT_STAR] = ACTIONS(7725), - }, - [STATE(2643)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2499), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), - [anon_sym_COMMA] = ACTIONS(7729), - [anon_sym_RPAREN] = ACTIONS(7729), - [anon_sym_LPAREN2] = ACTIONS(7729), - [anon_sym_DASH] = ACTIONS(7727), - [anon_sym_PLUS] = ACTIONS(7727), - [anon_sym_STAR] = ACTIONS(7727), - [anon_sym_SLASH] = ACTIONS(7727), - [anon_sym_PERCENT] = ACTIONS(7727), - [anon_sym_PIPE_PIPE] = ACTIONS(7729), - [anon_sym_AMP_AMP] = ACTIONS(7729), - [anon_sym_PIPE] = ACTIONS(7727), - [anon_sym_CARET] = ACTIONS(7727), - [anon_sym_AMP] = ACTIONS(7727), - [anon_sym_EQ_EQ] = ACTIONS(7729), - [anon_sym_BANG_EQ] = ACTIONS(7729), - [anon_sym_GT] = ACTIONS(7727), - [anon_sym_GT_EQ] = ACTIONS(7729), - [anon_sym_LT_EQ] = ACTIONS(7727), - [anon_sym_LT] = ACTIONS(7727), - [anon_sym_LT_LT] = ACTIONS(7727), - [anon_sym_GT_GT] = ACTIONS(7727), - [anon_sym___extension__] = ACTIONS(7729), - [anon_sym___attribute__] = ACTIONS(7729), - [anon_sym___attribute] = ACTIONS(7727), - [anon_sym_LBRACE] = ACTIONS(7729), - [anon_sym_signed] = ACTIONS(8523), - [anon_sym_unsigned] = ACTIONS(8523), - [anon_sym_long] = ACTIONS(8523), - [anon_sym_short] = ACTIONS(8523), - [anon_sym_LBRACK] = ACTIONS(7729), - [anon_sym_EQ] = ACTIONS(7727), - [anon_sym_const] = ACTIONS(7727), - [anon_sym_constexpr] = ACTIONS(7729), - [anon_sym_volatile] = ACTIONS(7729), - [anon_sym_restrict] = ACTIONS(7729), - [anon_sym___restrict__] = ACTIONS(7729), - [anon_sym__Atomic] = ACTIONS(7729), - [anon_sym__Noreturn] = ACTIONS(7729), - [anon_sym_noreturn] = ACTIONS(7729), - [anon_sym__Nonnull] = ACTIONS(7729), - [anon_sym_mutable] = ACTIONS(7729), - [anon_sym_constinit] = ACTIONS(7729), - [anon_sym_consteval] = ACTIONS(7729), - [anon_sym_alignas] = ACTIONS(7729), - [anon_sym__Alignas] = ACTIONS(7729), - [anon_sym_QMARK] = ACTIONS(7729), - [anon_sym_STAR_EQ] = ACTIONS(7729), - [anon_sym_SLASH_EQ] = ACTIONS(7729), - [anon_sym_PERCENT_EQ] = ACTIONS(7729), - [anon_sym_PLUS_EQ] = ACTIONS(7729), - [anon_sym_DASH_EQ] = ACTIONS(7729), - [anon_sym_LT_LT_EQ] = ACTIONS(7729), - [anon_sym_GT_GT_EQ] = ACTIONS(7729), - [anon_sym_AMP_EQ] = ACTIONS(7729), - [anon_sym_CARET_EQ] = ACTIONS(7729), - [anon_sym_PIPE_EQ] = ACTIONS(7729), - [anon_sym_LT_EQ_GT] = ACTIONS(7729), - [anon_sym_or] = ACTIONS(7729), - [anon_sym_and] = ACTIONS(7729), - [anon_sym_bitor] = ACTIONS(7729), - [anon_sym_xor] = ACTIONS(7729), - [anon_sym_bitand] = ACTIONS(7729), - [anon_sym_not_eq] = ACTIONS(7729), - [anon_sym_DASH_DASH] = ACTIONS(7729), - [anon_sym_PLUS_PLUS] = ACTIONS(7729), - [anon_sym_DOT] = ACTIONS(7727), - [anon_sym_DOT_STAR] = ACTIONS(7729), - [anon_sym_DASH_GT] = ACTIONS(7727), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7729), - [anon_sym_override] = ACTIONS(7729), - [anon_sym_requires] = ACTIONS(7729), - [anon_sym_DASH_GT_STAR] = ACTIONS(7729), - }, - [STATE(2644)] = { - [sym__abstract_declarator] = STATE(5745), - [sym_abstract_parenthesized_declarator] = STATE(5693), - [sym_abstract_pointer_declarator] = STATE(5693), - [sym_abstract_function_declarator] = STATE(5693), - [sym_abstract_array_declarator] = STATE(5693), - [sym_type_qualifier] = STATE(2367), - [sym_alignas_qualifier] = STATE(2576), - [sym_parameter_list] = STATE(1989), - [sym_abstract_reference_declarator] = STATE(5693), - [sym__function_declarator_seq] = STATE(5694), - [aux_sym__type_definition_type_repeat1] = STATE(2367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_RPAREN] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(7305), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(7589), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7353), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(7591), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7353), - [anon_sym_AMP] = ACTIONS(7593), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7353), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(7313), - [anon_sym_LBRACK] = ACTIONS(7321), - [anon_sym_EQ] = ACTIONS(7353), - [anon_sym_const] = ACTIONS(7323), - [anon_sym_constexpr] = ACTIONS(7313), - [anon_sym_volatile] = ACTIONS(7313), - [anon_sym_restrict] = ACTIONS(7313), - [anon_sym___restrict__] = ACTIONS(7313), - [anon_sym__Atomic] = ACTIONS(7313), - [anon_sym__Noreturn] = ACTIONS(7313), - [anon_sym_noreturn] = ACTIONS(7313), - [anon_sym__Nonnull] = ACTIONS(7313), - [anon_sym_mutable] = ACTIONS(7313), - [anon_sym_constinit] = ACTIONS(7313), - [anon_sym_consteval] = ACTIONS(7313), - [anon_sym_alignas] = ACTIONS(7325), - [anon_sym__Alignas] = ACTIONS(7325), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_STAR_EQ] = ACTIONS(7355), - [anon_sym_SLASH_EQ] = ACTIONS(7355), - [anon_sym_PERCENT_EQ] = ACTIONS(7355), - [anon_sym_PLUS_EQ] = ACTIONS(7355), - [anon_sym_DASH_EQ] = ACTIONS(7355), - [anon_sym_LT_LT_EQ] = ACTIONS(7355), - [anon_sym_GT_GT_EQ] = ACTIONS(7355), - [anon_sym_AMP_EQ] = ACTIONS(7355), - [anon_sym_CARET_EQ] = ACTIONS(7355), - [anon_sym_PIPE_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7353), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7355), - }, - [STATE(2645)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2931), - [sym_ms_pointer_modifier] = STATE(2645), - [aux_sym_pointer_declarator_repeat1] = STATE(2645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6944), - [anon_sym_COMMA] = ACTIONS(6944), - [anon_sym_RPAREN] = ACTIONS(6944), - [anon_sym_LPAREN2] = ACTIONS(6944), - [anon_sym_DASH] = ACTIONS(6942), - [anon_sym_PLUS] = ACTIONS(6942), - [anon_sym_STAR] = ACTIONS(6942), - [anon_sym_SLASH] = ACTIONS(6942), - [anon_sym_PERCENT] = ACTIONS(6942), - [anon_sym_PIPE_PIPE] = ACTIONS(6944), - [anon_sym_AMP_AMP] = ACTIONS(6944), - [anon_sym_PIPE] = ACTIONS(6942), - [anon_sym_CARET] = ACTIONS(6942), - [anon_sym_AMP] = ACTIONS(6942), - [anon_sym_EQ_EQ] = ACTIONS(6944), - [anon_sym_BANG_EQ] = ACTIONS(6944), - [anon_sym_GT] = ACTIONS(6942), - [anon_sym_GT_EQ] = ACTIONS(6944), - [anon_sym_LT_EQ] = ACTIONS(6942), - [anon_sym_LT] = ACTIONS(6942), - [anon_sym_LT_LT] = ACTIONS(6942), - [anon_sym_GT_GT] = ACTIONS(6942), - [anon_sym___extension__] = ACTIONS(6944), - [sym_ms_restrict_modifier] = ACTIONS(8537), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8540), - [sym_ms_signed_ptr_modifier] = ACTIONS(8540), - [anon_sym__unaligned] = ACTIONS(8543), - [anon_sym___unaligned] = ACTIONS(8543), - [anon_sym_LBRACK] = ACTIONS(6944), - [anon_sym_EQ] = ACTIONS(6942), - [anon_sym_const] = ACTIONS(6942), - [anon_sym_constexpr] = ACTIONS(6944), - [anon_sym_volatile] = ACTIONS(6944), - [anon_sym_restrict] = ACTIONS(6944), - [anon_sym___restrict__] = ACTIONS(6944), - [anon_sym__Atomic] = ACTIONS(6944), - [anon_sym__Noreturn] = ACTIONS(6944), - [anon_sym_noreturn] = ACTIONS(6944), - [anon_sym__Nonnull] = ACTIONS(6944), - [anon_sym_mutable] = ACTIONS(6944), - [anon_sym_constinit] = ACTIONS(6944), - [anon_sym_consteval] = ACTIONS(6944), - [anon_sym_alignas] = ACTIONS(6944), - [anon_sym__Alignas] = ACTIONS(6944), - [anon_sym_QMARK] = ACTIONS(6944), - [anon_sym_STAR_EQ] = ACTIONS(6944), - [anon_sym_SLASH_EQ] = ACTIONS(6944), - [anon_sym_PERCENT_EQ] = ACTIONS(6944), - [anon_sym_PLUS_EQ] = ACTIONS(6944), - [anon_sym_DASH_EQ] = ACTIONS(6944), - [anon_sym_LT_LT_EQ] = ACTIONS(6944), - [anon_sym_GT_GT_EQ] = ACTIONS(6944), - [anon_sym_AMP_EQ] = ACTIONS(6944), - [anon_sym_CARET_EQ] = ACTIONS(6944), - [anon_sym_PIPE_EQ] = ACTIONS(6944), - [anon_sym_LT_EQ_GT] = ACTIONS(6944), - [anon_sym_or] = ACTIONS(6944), - [anon_sym_and] = ACTIONS(6944), - [anon_sym_bitor] = ACTIONS(6944), - [anon_sym_xor] = ACTIONS(6944), - [anon_sym_bitand] = ACTIONS(6944), - [anon_sym_not_eq] = ACTIONS(6944), - [anon_sym_DASH_DASH] = ACTIONS(6944), - [anon_sym_PLUS_PLUS] = ACTIONS(6944), - [anon_sym_DOT] = ACTIONS(6942), - [anon_sym_DOT_STAR] = ACTIONS(6944), - [anon_sym_DASH_GT] = ACTIONS(6942), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6944), - [anon_sym_override] = ACTIONS(6944), - [anon_sym_requires] = ACTIONS(6944), - [anon_sym_DASH_GT_STAR] = ACTIONS(6944), - }, - [STATE(2646)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(2647), - [sym__declarator] = STATE(8823), - [sym__abstract_declarator] = STATE(8953), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(3685), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(4779), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(3685), - [aux_sym_pointer_declarator_repeat1] = STATE(2647), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8548), - [anon_sym_AMP_AMP] = ACTIONS(8550), - [anon_sym_AMP] = ACTIONS(8552), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6861), - [anon_sym___attribute] = ACTIONS(6861), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_EQ] = ACTIONS(6859), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_GT2] = ACTIONS(6859), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2647)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(6427), - [sym__declarator] = STATE(8808), - [sym__abstract_declarator] = STATE(8954), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(3686), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(4779), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(3686), - [aux_sym_pointer_declarator_repeat1] = STATE(6427), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8548), - [anon_sym_AMP_AMP] = ACTIONS(8550), - [anon_sym_AMP] = ACTIONS(8552), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6821), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_EQ] = ACTIONS(6823), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_GT2] = ACTIONS(6823), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2648)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), - [anon_sym_COMMA] = ACTIONS(6601), - [anon_sym_RPAREN] = ACTIONS(6601), - [anon_sym_LPAREN2] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6594), - [anon_sym_PLUS] = ACTIONS(6594), - [anon_sym_STAR] = ACTIONS(6594), - [anon_sym_SLASH] = ACTIONS(6594), - [anon_sym_PERCENT] = ACTIONS(6594), - [anon_sym_PIPE_PIPE] = ACTIONS(6601), - [anon_sym_AMP_AMP] = ACTIONS(6601), - [anon_sym_PIPE] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6594), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_EQ_EQ] = ACTIONS(6601), - [anon_sym_BANG_EQ] = ACTIONS(6601), - [anon_sym_GT] = ACTIONS(6594), - [anon_sym_GT_EQ] = ACTIONS(6601), - [anon_sym_LT_EQ] = ACTIONS(6594), - [anon_sym_LT] = ACTIONS(6594), - [anon_sym_LT_LT] = ACTIONS(6594), - [anon_sym_GT_GT] = ACTIONS(6594), - [anon_sym_SEMI] = ACTIONS(6601), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym___attribute__] = ACTIONS(6601), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6601), - [anon_sym_EQ] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6601), - [anon_sym_STAR_EQ] = ACTIONS(6601), - [anon_sym_SLASH_EQ] = ACTIONS(6601), - [anon_sym_PERCENT_EQ] = ACTIONS(6601), - [anon_sym_PLUS_EQ] = ACTIONS(6601), - [anon_sym_DASH_EQ] = ACTIONS(6601), - [anon_sym_LT_LT_EQ] = ACTIONS(6601), - [anon_sym_GT_GT_EQ] = ACTIONS(6601), - [anon_sym_AMP_EQ] = ACTIONS(6601), - [anon_sym_CARET_EQ] = ACTIONS(6601), - [anon_sym_PIPE_EQ] = ACTIONS(6601), - [anon_sym_LT_EQ_GT] = ACTIONS(6601), - [anon_sym_or] = ACTIONS(6601), - [anon_sym_and] = ACTIONS(6601), - [anon_sym_bitor] = ACTIONS(6601), - [anon_sym_xor] = ACTIONS(6601), - [anon_sym_bitand] = ACTIONS(6601), - [anon_sym_not_eq] = ACTIONS(6601), - [anon_sym_DASH_DASH] = ACTIONS(6601), - [anon_sym_PLUS_PLUS] = ACTIONS(6601), - [anon_sym_DOT] = ACTIONS(6594), - [anon_sym_DOT_STAR] = ACTIONS(6601), - [anon_sym_DASH_GT] = ACTIONS(6594), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_final] = ACTIONS(6601), - [anon_sym_override] = ACTIONS(6601), - [anon_sym_requires] = ACTIONS(6601), - [anon_sym_DASH_GT_STAR] = ACTIONS(6601), - }, - [STATE(2649)] = { - [sym_template_argument_list] = STATE(2648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), - [anon_sym_COMMA] = ACTIONS(6572), - [anon_sym_RPAREN] = ACTIONS(6572), - [anon_sym_LPAREN2] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6565), - [anon_sym_PLUS] = ACTIONS(6565), - [anon_sym_STAR] = ACTIONS(6565), - [anon_sym_SLASH] = ACTIONS(6565), - [anon_sym_PERCENT] = ACTIONS(6565), - [anon_sym_PIPE_PIPE] = ACTIONS(6572), - [anon_sym_AMP_AMP] = ACTIONS(6572), - [anon_sym_PIPE] = ACTIONS(6565), - [anon_sym_CARET] = ACTIONS(6565), - [anon_sym_AMP] = ACTIONS(6565), - [anon_sym_EQ_EQ] = ACTIONS(6572), - [anon_sym_BANG_EQ] = ACTIONS(6572), - [anon_sym_GT] = ACTIONS(6565), - [anon_sym_GT_EQ] = ACTIONS(6572), - [anon_sym_LT_EQ] = ACTIONS(6565), - [anon_sym_LT] = ACTIONS(8556), - [anon_sym_LT_LT] = ACTIONS(6565), - [anon_sym_GT_GT] = ACTIONS(6565), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym___attribute__] = ACTIONS(6572), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6572), - [anon_sym_EQ] = ACTIONS(6565), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6572), - [anon_sym_STAR_EQ] = ACTIONS(6572), - [anon_sym_SLASH_EQ] = ACTIONS(6572), - [anon_sym_PERCENT_EQ] = ACTIONS(6572), - [anon_sym_PLUS_EQ] = ACTIONS(6572), - [anon_sym_DASH_EQ] = ACTIONS(6572), - [anon_sym_LT_LT_EQ] = ACTIONS(6572), - [anon_sym_GT_GT_EQ] = ACTIONS(6572), - [anon_sym_AMP_EQ] = ACTIONS(6572), - [anon_sym_CARET_EQ] = ACTIONS(6572), - [anon_sym_PIPE_EQ] = ACTIONS(6572), - [anon_sym_LT_EQ_GT] = ACTIONS(6572), - [anon_sym_or] = ACTIONS(6572), - [anon_sym_and] = ACTIONS(6572), - [anon_sym_bitor] = ACTIONS(6572), - [anon_sym_xor] = ACTIONS(6572), - [anon_sym_bitand] = ACTIONS(6572), - [anon_sym_not_eq] = ACTIONS(6572), - [anon_sym_DASH_DASH] = ACTIONS(6572), - [anon_sym_PLUS_PLUS] = ACTIONS(6572), - [anon_sym_DOT] = ACTIONS(6565), - [anon_sym_DOT_STAR] = ACTIONS(6572), - [anon_sym_DASH_GT] = ACTIONS(6565), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_final] = ACTIONS(6572), - [anon_sym_override] = ACTIONS(6572), - [anon_sym_requires] = ACTIONS(6572), - [anon_sym_DASH_GT_STAR] = ACTIONS(6572), - }, - [STATE(2650)] = { - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8559), - [anon_sym_COMMA] = ACTIONS(8559), - [anon_sym_LPAREN2] = ACTIONS(8561), - [anon_sym_TILDE] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(8564), - [anon_sym_PLUS] = ACTIONS(8564), - [anon_sym_STAR] = ACTIONS(8561), - [anon_sym_SLASH] = ACTIONS(8564), - [anon_sym_PERCENT] = ACTIONS(8559), - [anon_sym_PIPE_PIPE] = ACTIONS(8559), - [anon_sym_AMP_AMP] = ACTIONS(8561), - [anon_sym_PIPE] = ACTIONS(8564), - [anon_sym_CARET] = ACTIONS(8559), - [anon_sym_AMP] = ACTIONS(8566), - [anon_sym_EQ_EQ] = ACTIONS(8559), - [anon_sym_BANG_EQ] = ACTIONS(8559), - [anon_sym_GT] = ACTIONS(8564), - [anon_sym_GT_EQ] = ACTIONS(8559), - [anon_sym_LT_EQ] = ACTIONS(8564), - [anon_sym_LT] = ACTIONS(8564), - [anon_sym_LT_LT] = ACTIONS(8559), - [anon_sym_GT_GT] = ACTIONS(8559), - [anon_sym_SEMI] = ACTIONS(8559), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym_virtual] = ACTIONS(7085), - [anon_sym_extern] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(8561), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), - [anon_sym___declspec] = ACTIONS(7085), - [anon_sym___based] = ACTIONS(7085), - [anon_sym_RBRACE] = ACTIONS(8559), - [anon_sym_LBRACK] = ACTIONS(8566), - [anon_sym_static] = ACTIONS(7085), - [anon_sym_register] = ACTIONS(7085), - [anon_sym_inline] = ACTIONS(7085), - [anon_sym___inline] = ACTIONS(7085), - [anon_sym___inline__] = ACTIONS(7085), - [anon_sym___forceinline] = ACTIONS(7085), - [anon_sym_thread_local] = ACTIONS(7085), - [anon_sym___thread] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(8559), - [anon_sym_LT_EQ_GT] = ACTIONS(8559), - [anon_sym_or] = ACTIONS(8564), - [anon_sym_and] = ACTIONS(8564), - [anon_sym_bitor] = ACTIONS(8564), - [anon_sym_xor] = ACTIONS(8564), - [anon_sym_bitand] = ACTIONS(8564), - [anon_sym_not_eq] = ACTIONS(8564), - [anon_sym_DASH_DASH] = ACTIONS(8559), - [anon_sym_PLUS_PLUS] = ACTIONS(8559), - [anon_sym_DOT] = ACTIONS(8564), - [anon_sym_DOT_STAR] = ACTIONS(8559), - [anon_sym_DASH_GT] = ACTIONS(8559), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7085), - [anon_sym_template] = ACTIONS(7085), - [anon_sym_operator] = ACTIONS(7085), - [anon_sym_LBRACK_COLON] = ACTIONS(7090), - }, - [STATE(2651)] = { - [sym_argument_list] = STATE(5537), - [sym_initializer_list] = STATE(5538), - [aux_sym_sized_type_specifier_repeat1] = STATE(2410), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8569), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_signed] = ACTIONS(8211), - [anon_sym_unsigned] = ACTIONS(8211), - [anon_sym_long] = ACTIONS(8211), - [anon_sym_short] = ACTIONS(8211), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(2652)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [aux_sym_preproc_if_token2] = ACTIONS(3118), - [aux_sym_preproc_else_token1] = ACTIONS(3118), - [aux_sym_preproc_elif_token1] = ACTIONS(3128), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3118), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3128), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3128), - [anon_sym_GT_GT] = ACTIONS(3128), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_RBRACK] = ACTIONS(3118), - [anon_sym_EQ] = 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), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_STAR_EQ] = ACTIONS(3118), - [anon_sym_SLASH_EQ] = ACTIONS(3118), - [anon_sym_PERCENT_EQ] = ACTIONS(3118), - [anon_sym_PLUS_EQ] = ACTIONS(3118), - [anon_sym_DASH_EQ] = ACTIONS(3118), - [anon_sym_LT_LT_EQ] = ACTIONS(3118), - [anon_sym_GT_GT_EQ] = ACTIONS(3118), - [anon_sym_AMP_EQ] = ACTIONS(3118), - [anon_sym_CARET_EQ] = ACTIONS(3118), - [anon_sym_PIPE_EQ] = ACTIONS(3118), - [anon_sym_and_eq] = ACTIONS(3128), - [anon_sym_or_eq] = ACTIONS(3128), - [anon_sym_xor_eq] = ACTIONS(3128), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3128), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3128), - [anon_sym_not_eq] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - }, - [STATE(2653)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [aux_sym_preproc_if_token2] = ACTIONS(7079), - [aux_sym_preproc_else_token1] = ACTIONS(7079), - [aux_sym_preproc_elif_token1] = ACTIONS(7077), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7079), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7077), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7077), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7077), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7077), - [anon_sym_GT_GT] = ACTIONS(7077), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(7079), - [anon_sym_RBRACK] = ACTIONS(7079), - [anon_sym_EQ] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_STAR_EQ] = ACTIONS(7079), - [anon_sym_SLASH_EQ] = ACTIONS(7079), - [anon_sym_PERCENT_EQ] = ACTIONS(7079), - [anon_sym_PLUS_EQ] = ACTIONS(7079), - [anon_sym_DASH_EQ] = ACTIONS(7079), - [anon_sym_LT_LT_EQ] = ACTIONS(7079), - [anon_sym_GT_GT_EQ] = ACTIONS(7079), - [anon_sym_AMP_EQ] = ACTIONS(7079), - [anon_sym_CARET_EQ] = ACTIONS(7079), - [anon_sym_PIPE_EQ] = ACTIONS(7079), - [anon_sym_and_eq] = ACTIONS(7077), - [anon_sym_or_eq] = ACTIONS(7077), - [anon_sym_xor_eq] = ACTIONS(7077), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7077), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7077), - [anon_sym_not_eq] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7079), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7077), - [anon_sym_override] = ACTIONS(7077), - [anon_sym_requires] = ACTIONS(7077), - }, - [STATE(2654)] = { - [sym_template_argument_list] = STATE(2594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), - [anon_sym_COMMA] = ACTIONS(5657), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_DASH] = ACTIONS(7371), - [anon_sym_PLUS] = ACTIONS(7371), - [anon_sym_STAR] = ACTIONS(7371), - [anon_sym_SLASH] = ACTIONS(7371), - [anon_sym_PERCENT] = ACTIONS(7371), - [anon_sym_PIPE_PIPE] = ACTIONS(5657), - [anon_sym_AMP_AMP] = ACTIONS(5657), - [anon_sym_PIPE] = ACTIONS(7371), - [anon_sym_CARET] = ACTIONS(7371), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_EQ_EQ] = ACTIONS(5657), - [anon_sym_BANG_EQ] = ACTIONS(5657), - [anon_sym_GT] = ACTIONS(7371), - [anon_sym_GT_EQ] = ACTIONS(7371), - [anon_sym_LT_EQ] = ACTIONS(7371), - [anon_sym_LT] = ACTIONS(8032), - [anon_sym_LT_LT] = ACTIONS(7371), - [anon_sym_GT_GT] = ACTIONS(7371), - [anon_sym___extension__] = ACTIONS(5657), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym___attribute] = ACTIONS(7371), - [anon_sym_COLON] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5657), - [anon_sym_EQ] = ACTIONS(7371), - [anon_sym_const] = ACTIONS(7371), - [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), - [anon_sym_QMARK] = ACTIONS(5657), - [anon_sym_STAR_EQ] = ACTIONS(5657), - [anon_sym_SLASH_EQ] = ACTIONS(5657), - [anon_sym_PERCENT_EQ] = ACTIONS(5657), - [anon_sym_PLUS_EQ] = ACTIONS(5657), - [anon_sym_DASH_EQ] = ACTIONS(5657), - [anon_sym_LT_LT_EQ] = ACTIONS(5657), - [anon_sym_GT_GT_EQ] = ACTIONS(7371), - [anon_sym_AMP_EQ] = ACTIONS(5657), - [anon_sym_CARET_EQ] = ACTIONS(5657), - [anon_sym_PIPE_EQ] = ACTIONS(5657), - [anon_sym_and_eq] = ACTIONS(5657), - [anon_sym_or_eq] = ACTIONS(5657), - [anon_sym_xor_eq] = ACTIONS(5657), - [anon_sym_LT_EQ_GT] = ACTIONS(5657), - [anon_sym_or] = ACTIONS(7371), - [anon_sym_and] = ACTIONS(7371), - [anon_sym_bitor] = ACTIONS(5657), - [anon_sym_xor] = ACTIONS(7371), - [anon_sym_bitand] = ACTIONS(5657), - [anon_sym_not_eq] = ACTIONS(5657), - [anon_sym_DASH_DASH] = ACTIONS(5657), - [anon_sym_PLUS_PLUS] = ACTIONS(5657), - [anon_sym_DOT] = ACTIONS(7371), - [anon_sym_DOT_STAR] = ACTIONS(5657), - [anon_sym_DASH_GT] = ACTIONS(5657), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5657), - [anon_sym_override] = ACTIONS(5657), - [anon_sym_GT2] = ACTIONS(5657), - [anon_sym_requires] = ACTIONS(5657), - }, - [STATE(2655)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_RPAREN] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6616), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6616), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6616), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6616), - [anon_sym_GT_GT] = ACTIONS(6616), - [anon_sym___extension__] = ACTIONS(6618), - [anon_sym___attribute__] = ACTIONS(6618), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6618), - [anon_sym_EQ] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6618), - [anon_sym_volatile] = ACTIONS(6618), - [anon_sym_restrict] = ACTIONS(6618), - [anon_sym___restrict__] = ACTIONS(6618), - [anon_sym__Atomic] = ACTIONS(6618), - [anon_sym__Noreturn] = ACTIONS(6618), - [anon_sym_noreturn] = ACTIONS(6618), - [anon_sym__Nonnull] = ACTIONS(6618), - [anon_sym_mutable] = ACTIONS(6618), - [anon_sym_constinit] = ACTIONS(6618), - [anon_sym_consteval] = ACTIONS(6618), - [anon_sym_alignas] = ACTIONS(6618), - [anon_sym__Alignas] = ACTIONS(6618), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_STAR_EQ] = ACTIONS(6618), - [anon_sym_SLASH_EQ] = ACTIONS(6618), - [anon_sym_PERCENT_EQ] = ACTIONS(6618), - [anon_sym_PLUS_EQ] = ACTIONS(6618), - [anon_sym_DASH_EQ] = ACTIONS(6618), - [anon_sym_LT_LT_EQ] = ACTIONS(6618), - [anon_sym_GT_GT_EQ] = ACTIONS(6618), - [anon_sym_AMP_EQ] = ACTIONS(6618), - [anon_sym_CARET_EQ] = ACTIONS(6618), - [anon_sym_PIPE_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6618), - [anon_sym_and] = ACTIONS(6618), - [anon_sym_bitor] = ACTIONS(6618), - [anon_sym_xor] = ACTIONS(6618), - [anon_sym_bitand] = ACTIONS(6618), - [anon_sym_not_eq] = ACTIONS(6618), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6616), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6618), - [anon_sym_decltype] = ACTIONS(6618), - [anon_sym_final] = ACTIONS(6618), - [anon_sym_override] = ACTIONS(6618), - [anon_sym_requires] = ACTIONS(6618), - [anon_sym_DASH_GT_STAR] = ACTIONS(6618), - }, - [STATE(2656)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7231), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7231), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7231), - [anon_sym_GT_GT] = ACTIONS(7231), - [anon_sym___extension__] = ACTIONS(7233), - [anon_sym___attribute__] = ACTIONS(7233), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(7233), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7233), - [anon_sym_RBRACK] = ACTIONS(7233), - [anon_sym_EQ] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7233), - [anon_sym_volatile] = ACTIONS(7233), - [anon_sym_restrict] = ACTIONS(7233), - [anon_sym___restrict__] = ACTIONS(7233), - [anon_sym__Atomic] = ACTIONS(7233), - [anon_sym__Noreturn] = ACTIONS(7233), - [anon_sym_noreturn] = ACTIONS(7233), - [anon_sym__Nonnull] = ACTIONS(7233), - [anon_sym_mutable] = ACTIONS(7233), - [anon_sym_constinit] = ACTIONS(7233), - [anon_sym_consteval] = ACTIONS(7233), - [anon_sym_alignas] = ACTIONS(7233), - [anon_sym__Alignas] = ACTIONS(7233), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_STAR_EQ] = ACTIONS(7233), - [anon_sym_SLASH_EQ] = ACTIONS(7233), - [anon_sym_PERCENT_EQ] = ACTIONS(7233), - [anon_sym_PLUS_EQ] = ACTIONS(7233), - [anon_sym_DASH_EQ] = ACTIONS(7233), - [anon_sym_LT_LT_EQ] = ACTIONS(7233), - [anon_sym_GT_GT_EQ] = ACTIONS(7233), - [anon_sym_AMP_EQ] = ACTIONS(7233), - [anon_sym_CARET_EQ] = ACTIONS(7233), - [anon_sym_PIPE_EQ] = ACTIONS(7233), - [anon_sym_and_eq] = ACTIONS(7233), - [anon_sym_or_eq] = ACTIONS(7233), - [anon_sym_xor_eq] = ACTIONS(7233), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_bitor] = ACTIONS(7233), - [anon_sym_xor] = ACTIONS(7231), - [anon_sym_bitand] = ACTIONS(7233), - [anon_sym_not_eq] = ACTIONS(7233), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7233), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7233), - [anon_sym_override] = ACTIONS(7233), - [anon_sym_requires] = ACTIONS(7233), - }, - [STATE(2657)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4309), - [sym_ms_pointer_modifier] = STATE(2669), - [sym__abstract_declarator] = STATE(6438), - [sym_abstract_parenthesized_declarator] = STATE(6607), - [sym_abstract_pointer_declarator] = STATE(6607), - [sym_abstract_function_declarator] = STATE(6607), - [sym_abstract_array_declarator] = STATE(6607), - [sym_type_qualifier] = STATE(3722), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2281), - [sym_abstract_reference_declarator] = STATE(6607), - [sym__function_declarator_seq] = STATE(6608), - [aux_sym__type_definition_type_repeat1] = STATE(3722), - [aux_sym_pointer_declarator_repeat1] = STATE(2669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(8572), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(8574), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(8576), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6859), - [anon_sym_AMP] = ACTIONS(8578), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6859), - [anon_sym_GT_GT] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(8580), - [sym_ms_restrict_modifier] = ACTIONS(8582), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8584), - [sym_ms_signed_ptr_modifier] = ACTIONS(8584), - [anon_sym__unaligned] = ACTIONS(8586), - [anon_sym___unaligned] = ACTIONS(8586), - [anon_sym_LBRACK] = ACTIONS(8588), - [anon_sym_RBRACK] = ACTIONS(6859), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym___restrict__] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym__Noreturn] = ACTIONS(8580), - [anon_sym_noreturn] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym_mutable] = ACTIONS(8580), - [anon_sym_constinit] = ACTIONS(8580), - [anon_sym_consteval] = ACTIONS(8580), - [anon_sym_alignas] = ACTIONS(8590), - [anon_sym__Alignas] = ACTIONS(8590), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6859), - [anon_sym_and] = ACTIONS(6859), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6859), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), - }, - [STATE(2658)] = { - [sym_argument_list] = STATE(5862), - [sym_initializer_list] = STATE(5876), - [aux_sym_sized_type_specifier_repeat1] = STATE(2474), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8592), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_signed] = ACTIONS(8379), - [anon_sym_unsigned] = ACTIONS(8379), - [anon_sym_long] = ACTIONS(8379), - [anon_sym_short] = ACTIONS(8379), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7225), - }, - [STATE(2659)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7085), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7085), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7085), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(7085), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7090), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7090), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_and_eq] = ACTIONS(7090), - [anon_sym_or_eq] = ACTIONS(7090), - [anon_sym_xor_eq] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7090), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7090), - [anon_sym_not_eq] = ACTIONS(7090), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2660)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_RPAREN] = ACTIONS(7079), - [aux_sym_preproc_if_token2] = ACTIONS(7079), - [aux_sym_preproc_else_token1] = ACTIONS(7079), - [aux_sym_preproc_elif_token1] = ACTIONS(7077), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7079), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7079), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7079), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7079), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7079), - [anon_sym_GT_GT] = ACTIONS(7079), - [anon_sym_SEMI] = ACTIONS(7079), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym___attribute__] = ACTIONS(7077), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_COLON] = ACTIONS(7077), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7079), - [anon_sym_LBRACE] = ACTIONS(7079), - [anon_sym_RBRACE] = ACTIONS(7079), - [anon_sym_signed] = ACTIONS(7077), - [anon_sym_unsigned] = ACTIONS(7077), - [anon_sym_long] = ACTIONS(7077), - [anon_sym_short] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(7079), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [sym_primitive_type] = ACTIONS(7077), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7077), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7077), - [anon_sym_not_eq] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7079), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7077), - [anon_sym_override] = ACTIONS(7077), - [anon_sym_requires] = ACTIONS(7077), - [anon_sym_COLON_RBRACK] = ACTIONS(7079), - }, - [STATE(2661)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), - [anon_sym_COMMA] = ACTIONS(7457), - [anon_sym_LPAREN2] = ACTIONS(7457), - [anon_sym_DASH] = ACTIONS(7459), - [anon_sym_PLUS] = ACTIONS(7459), - [anon_sym_STAR] = ACTIONS(7459), - [anon_sym_SLASH] = ACTIONS(7459), - [anon_sym_PERCENT] = ACTIONS(7459), - [anon_sym_PIPE_PIPE] = ACTIONS(7457), - [anon_sym_AMP_AMP] = ACTIONS(7457), - [anon_sym_PIPE] = ACTIONS(7459), - [anon_sym_CARET] = ACTIONS(7459), - [anon_sym_AMP] = ACTIONS(7459), - [anon_sym_EQ_EQ] = ACTIONS(7457), - [anon_sym_BANG_EQ] = ACTIONS(7457), - [anon_sym_GT] = ACTIONS(7459), - [anon_sym_GT_EQ] = ACTIONS(7457), - [anon_sym_LT_EQ] = ACTIONS(7459), - [anon_sym_LT] = ACTIONS(7459), - [anon_sym_LT_LT] = ACTIONS(7459), - [anon_sym_GT_GT] = ACTIONS(7459), - [anon_sym___extension__] = ACTIONS(7457), - [anon_sym___attribute__] = ACTIONS(7457), - [anon_sym___attribute] = ACTIONS(7459), - [anon_sym_COLON] = ACTIONS(7459), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7457), - [anon_sym_RBRACK] = ACTIONS(7457), - [anon_sym_EQ] = ACTIONS(7459), - [anon_sym_const] = ACTIONS(7459), - [anon_sym_constexpr] = ACTIONS(7457), - [anon_sym_volatile] = ACTIONS(7457), - [anon_sym_restrict] = ACTIONS(7457), - [anon_sym___restrict__] = ACTIONS(7457), - [anon_sym__Atomic] = ACTIONS(7457), - [anon_sym__Noreturn] = ACTIONS(7457), - [anon_sym_noreturn] = ACTIONS(7457), - [anon_sym__Nonnull] = ACTIONS(7457), - [anon_sym_mutable] = ACTIONS(7457), - [anon_sym_constinit] = ACTIONS(7457), - [anon_sym_consteval] = ACTIONS(7457), - [anon_sym_alignas] = ACTIONS(7457), - [anon_sym__Alignas] = ACTIONS(7457), - [anon_sym_QMARK] = ACTIONS(7457), - [anon_sym_STAR_EQ] = ACTIONS(7457), - [anon_sym_SLASH_EQ] = ACTIONS(7457), - [anon_sym_PERCENT_EQ] = ACTIONS(7457), - [anon_sym_PLUS_EQ] = ACTIONS(7457), - [anon_sym_DASH_EQ] = ACTIONS(7457), - [anon_sym_LT_LT_EQ] = ACTIONS(7457), - [anon_sym_GT_GT_EQ] = ACTIONS(7457), - [anon_sym_AMP_EQ] = ACTIONS(7457), - [anon_sym_CARET_EQ] = ACTIONS(7457), - [anon_sym_PIPE_EQ] = ACTIONS(7457), - [anon_sym_and_eq] = ACTIONS(7457), - [anon_sym_or_eq] = ACTIONS(7457), - [anon_sym_xor_eq] = ACTIONS(7457), - [anon_sym_LT_EQ_GT] = ACTIONS(7457), - [anon_sym_or] = ACTIONS(7459), - [anon_sym_and] = ACTIONS(7459), - [anon_sym_bitor] = ACTIONS(7457), - [anon_sym_xor] = ACTIONS(7459), - [anon_sym_bitand] = ACTIONS(7457), - [anon_sym_not_eq] = ACTIONS(7457), - [anon_sym_DASH_DASH] = ACTIONS(7457), - [anon_sym_PLUS_PLUS] = ACTIONS(7457), - [anon_sym_DOT] = ACTIONS(7459), - [anon_sym_DOT_STAR] = ACTIONS(7457), - [anon_sym_DASH_GT] = ACTIONS(7457), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7457), - [anon_sym_override] = ACTIONS(7457), - [anon_sym_requires] = ACTIONS(7457), - }, - [STATE(2662)] = { - [sym_attribute_specifier] = STATE(3001), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), - [anon_sym_COMMA] = ACTIONS(7523), - [anon_sym_RPAREN] = ACTIONS(7523), - [anon_sym_LPAREN2] = ACTIONS(7523), - [anon_sym_DASH] = ACTIONS(7521), - [anon_sym_PLUS] = ACTIONS(7521), - [anon_sym_STAR] = ACTIONS(7521), - [anon_sym_SLASH] = ACTIONS(7521), - [anon_sym_PERCENT] = ACTIONS(7521), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_AMP_AMP] = ACTIONS(7523), - [anon_sym_PIPE] = ACTIONS(7521), - [anon_sym_CARET] = ACTIONS(7521), - [anon_sym_AMP] = ACTIONS(7521), - [anon_sym_EQ_EQ] = ACTIONS(7523), - [anon_sym_BANG_EQ] = ACTIONS(7523), - [anon_sym_GT] = ACTIONS(7521), - [anon_sym_GT_EQ] = ACTIONS(7523), - [anon_sym_LT_EQ] = ACTIONS(7521), - [anon_sym_LT] = ACTIONS(7521), - [anon_sym_LT_LT] = ACTIONS(7521), - [anon_sym_GT_GT] = ACTIONS(7521), - [anon_sym___extension__] = ACTIONS(7523), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7523), - [anon_sym_LBRACK] = ACTIONS(7523), - [anon_sym_EQ] = ACTIONS(7521), - [anon_sym_const] = ACTIONS(7521), - [anon_sym_constexpr] = ACTIONS(7523), - [anon_sym_volatile] = ACTIONS(7523), - [anon_sym_restrict] = ACTIONS(7523), - [anon_sym___restrict__] = ACTIONS(7523), - [anon_sym__Atomic] = ACTIONS(7523), - [anon_sym__Noreturn] = ACTIONS(7523), - [anon_sym_noreturn] = ACTIONS(7523), - [anon_sym__Nonnull] = ACTIONS(7523), - [anon_sym_mutable] = ACTIONS(7523), - [anon_sym_constinit] = ACTIONS(7523), - [anon_sym_consteval] = ACTIONS(7523), - [anon_sym_alignas] = ACTIONS(7523), - [anon_sym__Alignas] = ACTIONS(7523), - [anon_sym_QMARK] = ACTIONS(7523), - [anon_sym_STAR_EQ] = ACTIONS(7523), - [anon_sym_SLASH_EQ] = ACTIONS(7523), - [anon_sym_PERCENT_EQ] = ACTIONS(7523), - [anon_sym_PLUS_EQ] = ACTIONS(7523), - [anon_sym_DASH_EQ] = ACTIONS(7523), - [anon_sym_LT_LT_EQ] = ACTIONS(7523), - [anon_sym_GT_GT_EQ] = ACTIONS(7523), - [anon_sym_AMP_EQ] = ACTIONS(7523), - [anon_sym_CARET_EQ] = ACTIONS(7523), - [anon_sym_PIPE_EQ] = ACTIONS(7523), - [anon_sym_and_eq] = ACTIONS(7523), - [anon_sym_or_eq] = ACTIONS(7523), - [anon_sym_xor_eq] = ACTIONS(7523), - [anon_sym_LT_EQ_GT] = ACTIONS(7523), - [anon_sym_or] = ACTIONS(7521), - [anon_sym_and] = ACTIONS(7521), - [anon_sym_bitor] = ACTIONS(7523), - [anon_sym_xor] = ACTIONS(7521), - [anon_sym_bitand] = ACTIONS(7523), - [anon_sym_not_eq] = ACTIONS(7523), - [anon_sym_DASH_DASH] = ACTIONS(7523), - [anon_sym_PLUS_PLUS] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(7521), - [anon_sym_DOT_STAR] = ACTIONS(7523), - [anon_sym_DASH_GT] = ACTIONS(7521), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7523), - [anon_sym_override] = ACTIONS(7523), - [anon_sym_requires] = ACTIONS(7523), - [anon_sym_DASH_GT_STAR] = ACTIONS(7523), + [STATE(2602)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7142), + [anon_sym_COMMA] = ACTIONS(7142), + [anon_sym_RPAREN] = ACTIONS(7142), + [anon_sym_LPAREN2] = ACTIONS(7142), + [anon_sym_DASH] = ACTIONS(7140), + [anon_sym_PLUS] = ACTIONS(7140), + [anon_sym_STAR] = ACTIONS(7140), + [anon_sym_SLASH] = ACTIONS(7140), + [anon_sym_PERCENT] = ACTIONS(7140), + [anon_sym_PIPE_PIPE] = ACTIONS(7142), + [anon_sym_AMP_AMP] = ACTIONS(7142), + [anon_sym_PIPE] = ACTIONS(7140), + [anon_sym_CARET] = ACTIONS(7140), + [anon_sym_AMP] = ACTIONS(7140), + [anon_sym_EQ_EQ] = ACTIONS(7142), + [anon_sym_BANG_EQ] = ACTIONS(7142), + [anon_sym_GT] = ACTIONS(7140), + [anon_sym_GT_EQ] = ACTIONS(7142), + [anon_sym_LT_EQ] = ACTIONS(7140), + [anon_sym_LT] = ACTIONS(7140), + [anon_sym_LT_LT] = ACTIONS(7140), + [anon_sym_GT_GT] = ACTIONS(7140), + [anon_sym___extension__] = ACTIONS(7142), + [anon_sym___attribute__] = ACTIONS(7142), + [anon_sym___attribute] = ACTIONS(7140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7142), + [anon_sym_LBRACK] = ACTIONS(7140), + [anon_sym_EQ] = ACTIONS(7140), + [anon_sym_const] = ACTIONS(7140), + [anon_sym_constexpr] = ACTIONS(7142), + [anon_sym_volatile] = ACTIONS(7142), + [anon_sym_restrict] = ACTIONS(7142), + [anon_sym___restrict__] = ACTIONS(7142), + [anon_sym__Atomic] = ACTIONS(7142), + [anon_sym__Noreturn] = ACTIONS(7142), + [anon_sym_noreturn] = ACTIONS(7142), + [anon_sym__Nonnull] = ACTIONS(7142), + [anon_sym_mutable] = ACTIONS(7142), + [anon_sym_constinit] = ACTIONS(7142), + [anon_sym_consteval] = ACTIONS(7142), + [anon_sym_alignas] = ACTIONS(7142), + [anon_sym__Alignas] = ACTIONS(7142), + [anon_sym_QMARK] = ACTIONS(7142), + [anon_sym_STAR_EQ] = ACTIONS(7142), + [anon_sym_SLASH_EQ] = ACTIONS(7142), + [anon_sym_PERCENT_EQ] = ACTIONS(7142), + [anon_sym_PLUS_EQ] = ACTIONS(7142), + [anon_sym_DASH_EQ] = ACTIONS(7142), + [anon_sym_LT_LT_EQ] = ACTIONS(7142), + [anon_sym_GT_GT_EQ] = ACTIONS(7142), + [anon_sym_AMP_EQ] = ACTIONS(7142), + [anon_sym_CARET_EQ] = ACTIONS(7142), + [anon_sym_PIPE_EQ] = ACTIONS(7142), + [anon_sym_LT_EQ_GT] = ACTIONS(7142), + [anon_sym_or] = ACTIONS(7142), + [anon_sym_and] = ACTIONS(7142), + [anon_sym_bitor] = ACTIONS(7142), + [anon_sym_xor] = ACTIONS(7142), + [anon_sym_bitand] = ACTIONS(7142), + [anon_sym_not_eq] = ACTIONS(7142), + [anon_sym_DASH_DASH] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(7142), + [anon_sym_asm] = ACTIONS(7142), + [anon_sym___asm__] = ACTIONS(7142), + [anon_sym___asm] = ACTIONS(7140), + [anon_sym_DOT] = ACTIONS(7140), + [anon_sym_DOT_STAR] = ACTIONS(7142), + [anon_sym_DASH_GT] = ACTIONS(7140), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7142), + [anon_sym_override] = ACTIONS(7142), + [anon_sym_noexcept] = ACTIONS(7142), + [anon_sym_throw] = ACTIONS(7142), + [anon_sym_requires] = ACTIONS(7142), + [anon_sym_DASH_GT_STAR] = ACTIONS(7142), }, - [STATE(2663)] = { - [sym_identifier] = ACTIONS(7132), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7134), - [anon_sym_COMMA] = ACTIONS(7134), - [anon_sym_RPAREN] = ACTIONS(7134), - [aux_sym_preproc_if_token2] = ACTIONS(7134), - [aux_sym_preproc_else_token1] = ACTIONS(7134), - [aux_sym_preproc_elif_token1] = ACTIONS(7132), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7134), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7134), - [anon_sym_LPAREN2] = ACTIONS(7134), - [anon_sym_DASH] = ACTIONS(7132), - [anon_sym_PLUS] = ACTIONS(7132), - [anon_sym_STAR] = ACTIONS(7134), - [anon_sym_SLASH] = ACTIONS(7132), - [anon_sym_PERCENT] = ACTIONS(7134), - [anon_sym_PIPE_PIPE] = ACTIONS(7134), - [anon_sym_AMP_AMP] = ACTIONS(7134), - [anon_sym_PIPE] = ACTIONS(7132), - [anon_sym_CARET] = ACTIONS(7134), - [anon_sym_AMP] = ACTIONS(7132), - [anon_sym_EQ_EQ] = ACTIONS(7134), - [anon_sym_BANG_EQ] = ACTIONS(7134), - [anon_sym_GT] = ACTIONS(7132), - [anon_sym_GT_EQ] = ACTIONS(7134), - [anon_sym_LT_EQ] = ACTIONS(7132), - [anon_sym_LT] = ACTIONS(7132), - [anon_sym_LT_LT] = ACTIONS(7134), - [anon_sym_GT_GT] = ACTIONS(7134), - [anon_sym_SEMI] = ACTIONS(7134), - [anon_sym___extension__] = ACTIONS(7132), - [anon_sym___attribute__] = ACTIONS(7132), - [anon_sym___attribute] = ACTIONS(7132), - [anon_sym_COLON] = ACTIONS(7132), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7134), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7134), - [anon_sym_RBRACE] = ACTIONS(7134), - [anon_sym_LBRACK] = ACTIONS(7132), - [anon_sym_const] = ACTIONS(7132), - [anon_sym_constexpr] = ACTIONS(7132), - [anon_sym_volatile] = ACTIONS(7132), - [anon_sym_restrict] = ACTIONS(7132), - [anon_sym___restrict__] = ACTIONS(7132), - [anon_sym__Atomic] = ACTIONS(7132), - [anon_sym__Noreturn] = ACTIONS(7132), - [anon_sym_noreturn] = ACTIONS(7132), - [anon_sym__Nonnull] = ACTIONS(7132), - [anon_sym_mutable] = ACTIONS(7132), - [anon_sym_constinit] = ACTIONS(7132), - [anon_sym_consteval] = ACTIONS(7132), - [anon_sym_alignas] = ACTIONS(7132), - [anon_sym__Alignas] = ACTIONS(7132), - [anon_sym_QMARK] = ACTIONS(7134), - [anon_sym_LT_EQ_GT] = ACTIONS(7134), - [anon_sym_or] = ACTIONS(7132), - [anon_sym_and] = ACTIONS(7132), - [anon_sym_bitor] = ACTIONS(7132), - [anon_sym_xor] = ACTIONS(7132), - [anon_sym_bitand] = ACTIONS(7132), - [anon_sym_not_eq] = ACTIONS(7132), - [anon_sym_DASH_DASH] = ACTIONS(7134), - [anon_sym_PLUS_PLUS] = ACTIONS(7134), - [anon_sym_asm] = ACTIONS(7132), - [anon_sym___asm__] = ACTIONS(7132), - [anon_sym___asm] = ACTIONS(7132), - [anon_sym_DOT] = ACTIONS(7132), - [anon_sym_DOT_STAR] = ACTIONS(7134), - [anon_sym_DASH_GT] = ACTIONS(7134), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7132), - [anon_sym_override] = ACTIONS(7132), - [anon_sym_noexcept] = ACTIONS(7132), - [anon_sym_throw] = ACTIONS(7132), - [anon_sym_requires] = ACTIONS(7132), - [anon_sym_COLON_RBRACK] = ACTIONS(7134), + [STATE(2603)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7660), + [anon_sym_COMMA] = ACTIONS(7660), + [anon_sym_RPAREN] = ACTIONS(7660), + [anon_sym_LPAREN2] = ACTIONS(7660), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_STAR] = ACTIONS(7658), + [anon_sym_SLASH] = ACTIONS(7658), + [anon_sym_PERCENT] = ACTIONS(7658), + [anon_sym_PIPE_PIPE] = ACTIONS(7660), + [anon_sym_AMP_AMP] = ACTIONS(7660), + [anon_sym_PIPE] = ACTIONS(7658), + [anon_sym_CARET] = ACTIONS(7658), + [anon_sym_AMP] = ACTIONS(7658), + [anon_sym_EQ_EQ] = ACTIONS(7660), + [anon_sym_BANG_EQ] = ACTIONS(7660), + [anon_sym_GT] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7660), + [anon_sym_LT_EQ] = ACTIONS(7658), + [anon_sym_LT] = ACTIONS(7658), + [anon_sym_LT_LT] = ACTIONS(7658), + [anon_sym_GT_GT] = ACTIONS(7658), + [anon_sym___extension__] = ACTIONS(7660), + [anon_sym___attribute__] = ACTIONS(7660), + [anon_sym___attribute] = ACTIONS(7658), + [anon_sym_LBRACE] = ACTIONS(7660), + [anon_sym_signed] = ACTIONS(8495), + [anon_sym_unsigned] = ACTIONS(8495), + [anon_sym_long] = ACTIONS(8495), + [anon_sym_short] = ACTIONS(8495), + [anon_sym_LBRACK] = ACTIONS(7660), + [anon_sym_EQ] = ACTIONS(7658), + [anon_sym_const] = ACTIONS(7658), + [anon_sym_constexpr] = ACTIONS(7660), + [anon_sym_volatile] = ACTIONS(7660), + [anon_sym_restrict] = ACTIONS(7660), + [anon_sym___restrict__] = ACTIONS(7660), + [anon_sym__Atomic] = ACTIONS(7660), + [anon_sym__Noreturn] = ACTIONS(7660), + [anon_sym_noreturn] = ACTIONS(7660), + [anon_sym__Nonnull] = ACTIONS(7660), + [anon_sym_mutable] = ACTIONS(7660), + [anon_sym_constinit] = ACTIONS(7660), + [anon_sym_consteval] = ACTIONS(7660), + [anon_sym_alignas] = ACTIONS(7660), + [anon_sym__Alignas] = ACTIONS(7660), + [anon_sym_QMARK] = ACTIONS(7660), + [anon_sym_STAR_EQ] = ACTIONS(7660), + [anon_sym_SLASH_EQ] = ACTIONS(7660), + [anon_sym_PERCENT_EQ] = ACTIONS(7660), + [anon_sym_PLUS_EQ] = ACTIONS(7660), + [anon_sym_DASH_EQ] = ACTIONS(7660), + [anon_sym_LT_LT_EQ] = ACTIONS(7660), + [anon_sym_GT_GT_EQ] = ACTIONS(7660), + [anon_sym_AMP_EQ] = ACTIONS(7660), + [anon_sym_CARET_EQ] = ACTIONS(7660), + [anon_sym_PIPE_EQ] = ACTIONS(7660), + [anon_sym_LT_EQ_GT] = ACTIONS(7660), + [anon_sym_or] = ACTIONS(7660), + [anon_sym_and] = ACTIONS(7660), + [anon_sym_bitor] = ACTIONS(7660), + [anon_sym_xor] = ACTIONS(7660), + [anon_sym_bitand] = ACTIONS(7660), + [anon_sym_not_eq] = ACTIONS(7660), + [anon_sym_DASH_DASH] = ACTIONS(7660), + [anon_sym_PLUS_PLUS] = ACTIONS(7660), + [anon_sym_DOT] = ACTIONS(7658), + [anon_sym_DOT_STAR] = ACTIONS(7660), + [anon_sym_DASH_GT] = ACTIONS(7658), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7660), + [anon_sym_override] = ACTIONS(7660), + [anon_sym_requires] = ACTIONS(7660), + [anon_sym_DASH_GT_STAR] = ACTIONS(7660), }, - [STATE(2664)] = { - [sym_identifier] = ACTIONS(7081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7083), - [anon_sym_COMMA] = ACTIONS(7083), - [anon_sym_RPAREN] = ACTIONS(7083), - [aux_sym_preproc_if_token2] = ACTIONS(7083), - [aux_sym_preproc_else_token1] = ACTIONS(7083), - [aux_sym_preproc_elif_token1] = ACTIONS(7081), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7083), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7083), - [anon_sym_LPAREN2] = ACTIONS(7083), - [anon_sym_DASH] = ACTIONS(7081), - [anon_sym_PLUS] = ACTIONS(7081), - [anon_sym_STAR] = ACTIONS(7083), - [anon_sym_SLASH] = ACTIONS(7081), - [anon_sym_PERCENT] = ACTIONS(7083), - [anon_sym_PIPE_PIPE] = ACTIONS(7083), - [anon_sym_AMP_AMP] = ACTIONS(7083), - [anon_sym_PIPE] = ACTIONS(7081), - [anon_sym_CARET] = ACTIONS(7083), - [anon_sym_AMP] = ACTIONS(7081), - [anon_sym_EQ_EQ] = ACTIONS(7083), - [anon_sym_BANG_EQ] = ACTIONS(7083), - [anon_sym_GT] = ACTIONS(7081), - [anon_sym_GT_EQ] = ACTIONS(7083), - [anon_sym_LT_EQ] = ACTIONS(7081), - [anon_sym_LT] = ACTIONS(7081), - [anon_sym_LT_LT] = ACTIONS(7083), - [anon_sym_GT_GT] = ACTIONS(7083), - [anon_sym_SEMI] = ACTIONS(7083), - [anon_sym___extension__] = ACTIONS(7081), - [anon_sym___attribute__] = ACTIONS(7081), - [anon_sym___attribute] = ACTIONS(7081), - [anon_sym_COLON] = ACTIONS(7081), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7083), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7083), - [anon_sym_RBRACE] = ACTIONS(7083), - [anon_sym_LBRACK] = ACTIONS(7081), - [anon_sym_const] = ACTIONS(7081), - [anon_sym_constexpr] = ACTIONS(7081), - [anon_sym_volatile] = ACTIONS(7081), - [anon_sym_restrict] = ACTIONS(7081), - [anon_sym___restrict__] = ACTIONS(7081), - [anon_sym__Atomic] = ACTIONS(7081), - [anon_sym__Noreturn] = ACTIONS(7081), - [anon_sym_noreturn] = ACTIONS(7081), - [anon_sym__Nonnull] = ACTIONS(7081), - [anon_sym_mutable] = ACTIONS(7081), - [anon_sym_constinit] = ACTIONS(7081), - [anon_sym_consteval] = ACTIONS(7081), - [anon_sym_alignas] = ACTIONS(7081), - [anon_sym__Alignas] = ACTIONS(7081), - [anon_sym_QMARK] = ACTIONS(7083), - [anon_sym_LT_EQ_GT] = ACTIONS(7083), - [anon_sym_or] = ACTIONS(7081), - [anon_sym_and] = ACTIONS(7081), - [anon_sym_bitor] = ACTIONS(7081), - [anon_sym_xor] = ACTIONS(7081), - [anon_sym_bitand] = ACTIONS(7081), - [anon_sym_not_eq] = ACTIONS(7081), - [anon_sym_DASH_DASH] = ACTIONS(7083), - [anon_sym_PLUS_PLUS] = ACTIONS(7083), - [anon_sym_asm] = ACTIONS(7081), - [anon_sym___asm__] = ACTIONS(7081), - [anon_sym___asm] = ACTIONS(7081), - [anon_sym_DOT] = ACTIONS(7081), - [anon_sym_DOT_STAR] = ACTIONS(7083), - [anon_sym_DASH_GT] = ACTIONS(7083), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7081), - [anon_sym_override] = ACTIONS(7081), - [anon_sym_noexcept] = ACTIONS(7081), - [anon_sym_throw] = ACTIONS(7081), - [anon_sym_requires] = ACTIONS(7081), - [anon_sym_COLON_RBRACK] = ACTIONS(7083), + [STATE(2604)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7664), + [anon_sym_COMMA] = ACTIONS(7664), + [anon_sym_RPAREN] = ACTIONS(7664), + [anon_sym_LPAREN2] = ACTIONS(7664), + [anon_sym_DASH] = ACTIONS(7662), + [anon_sym_PLUS] = ACTIONS(7662), + [anon_sym_STAR] = ACTIONS(7662), + [anon_sym_SLASH] = ACTIONS(7662), + [anon_sym_PERCENT] = ACTIONS(7662), + [anon_sym_PIPE_PIPE] = ACTIONS(7664), + [anon_sym_AMP_AMP] = ACTIONS(7664), + [anon_sym_PIPE] = ACTIONS(7662), + [anon_sym_CARET] = ACTIONS(7662), + [anon_sym_AMP] = ACTIONS(7662), + [anon_sym_EQ_EQ] = ACTIONS(7664), + [anon_sym_BANG_EQ] = ACTIONS(7664), + [anon_sym_GT] = ACTIONS(7662), + [anon_sym_GT_EQ] = ACTIONS(7664), + [anon_sym_LT_EQ] = ACTIONS(7662), + [anon_sym_LT] = ACTIONS(7662), + [anon_sym_LT_LT] = ACTIONS(7662), + [anon_sym_GT_GT] = ACTIONS(7662), + [anon_sym___extension__] = ACTIONS(7664), + [anon_sym___attribute__] = ACTIONS(7664), + [anon_sym___attribute] = ACTIONS(7662), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_signed] = ACTIONS(8495), + [anon_sym_unsigned] = ACTIONS(8495), + [anon_sym_long] = ACTIONS(8495), + [anon_sym_short] = ACTIONS(8495), + [anon_sym_LBRACK] = ACTIONS(7664), + [anon_sym_EQ] = ACTIONS(7662), + [anon_sym_const] = ACTIONS(7662), + [anon_sym_constexpr] = ACTIONS(7664), + [anon_sym_volatile] = ACTIONS(7664), + [anon_sym_restrict] = ACTIONS(7664), + [anon_sym___restrict__] = ACTIONS(7664), + [anon_sym__Atomic] = ACTIONS(7664), + [anon_sym__Noreturn] = ACTIONS(7664), + [anon_sym_noreturn] = ACTIONS(7664), + [anon_sym__Nonnull] = ACTIONS(7664), + [anon_sym_mutable] = ACTIONS(7664), + [anon_sym_constinit] = ACTIONS(7664), + [anon_sym_consteval] = ACTIONS(7664), + [anon_sym_alignas] = ACTIONS(7664), + [anon_sym__Alignas] = ACTIONS(7664), + [anon_sym_QMARK] = ACTIONS(7664), + [anon_sym_STAR_EQ] = ACTIONS(7664), + [anon_sym_SLASH_EQ] = ACTIONS(7664), + [anon_sym_PERCENT_EQ] = ACTIONS(7664), + [anon_sym_PLUS_EQ] = ACTIONS(7664), + [anon_sym_DASH_EQ] = ACTIONS(7664), + [anon_sym_LT_LT_EQ] = ACTIONS(7664), + [anon_sym_GT_GT_EQ] = ACTIONS(7664), + [anon_sym_AMP_EQ] = ACTIONS(7664), + [anon_sym_CARET_EQ] = ACTIONS(7664), + [anon_sym_PIPE_EQ] = ACTIONS(7664), + [anon_sym_LT_EQ_GT] = ACTIONS(7664), + [anon_sym_or] = ACTIONS(7664), + [anon_sym_and] = ACTIONS(7664), + [anon_sym_bitor] = ACTIONS(7664), + [anon_sym_xor] = ACTIONS(7664), + [anon_sym_bitand] = ACTIONS(7664), + [anon_sym_not_eq] = ACTIONS(7664), + [anon_sym_DASH_DASH] = ACTIONS(7664), + [anon_sym_PLUS_PLUS] = ACTIONS(7664), + [anon_sym_DOT] = ACTIONS(7662), + [anon_sym_DOT_STAR] = ACTIONS(7664), + [anon_sym_DASH_GT] = ACTIONS(7662), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7664), + [anon_sym_override] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7664), + [anon_sym_DASH_GT_STAR] = ACTIONS(7664), }, - [STATE(2665)] = { - [sym_attribute_specifier] = STATE(3093), - [sym_enumerator_list] = STATE(2752), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7387), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7387), - [anon_sym_AMP] = ACTIONS(7387), - [anon_sym_EQ_EQ] = ACTIONS(7389), - [anon_sym_BANG_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_LT_EQ] = ACTIONS(7387), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_LT] = ACTIONS(7387), - [anon_sym_GT_GT] = ACTIONS(7387), - [anon_sym___extension__] = ACTIONS(7389), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(8476), - [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_RBRACK] = ACTIONS(7389), - [anon_sym_EQ] = ACTIONS(7387), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7389), - [anon_sym_volatile] = ACTIONS(7389), - [anon_sym_restrict] = ACTIONS(7389), - [anon_sym___restrict__] = ACTIONS(7389), - [anon_sym__Atomic] = ACTIONS(7389), - [anon_sym__Noreturn] = ACTIONS(7389), - [anon_sym_noreturn] = ACTIONS(7389), - [anon_sym__Nonnull] = ACTIONS(7389), - [anon_sym_mutable] = ACTIONS(7389), - [anon_sym_constinit] = ACTIONS(7389), - [anon_sym_consteval] = ACTIONS(7389), - [anon_sym_alignas] = ACTIONS(7389), - [anon_sym__Alignas] = ACTIONS(7389), - [anon_sym_QMARK] = ACTIONS(7389), - [anon_sym_STAR_EQ] = ACTIONS(7389), - [anon_sym_SLASH_EQ] = ACTIONS(7389), - [anon_sym_PERCENT_EQ] = ACTIONS(7389), - [anon_sym_PLUS_EQ] = ACTIONS(7389), - [anon_sym_DASH_EQ] = ACTIONS(7389), - [anon_sym_LT_LT_EQ] = ACTIONS(7389), - [anon_sym_GT_GT_EQ] = ACTIONS(7389), - [anon_sym_AMP_EQ] = ACTIONS(7389), - [anon_sym_CARET_EQ] = ACTIONS(7389), - [anon_sym_PIPE_EQ] = ACTIONS(7389), - [anon_sym_and_eq] = ACTIONS(7389), - [anon_sym_or_eq] = ACTIONS(7389), - [anon_sym_xor_eq] = ACTIONS(7389), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7387), - [anon_sym_and] = ACTIONS(7387), - [anon_sym_bitor] = ACTIONS(7389), - [anon_sym_xor] = ACTIONS(7387), - [anon_sym_bitand] = ACTIONS(7389), - [anon_sym_not_eq] = ACTIONS(7389), - [anon_sym_DASH_DASH] = ACTIONS(7389), - [anon_sym_PLUS_PLUS] = ACTIONS(7389), - [anon_sym_DOT] = ACTIONS(7387), - [anon_sym_DOT_STAR] = ACTIONS(7389), - [anon_sym_DASH_GT] = ACTIONS(7389), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7389), - [anon_sym_override] = ACTIONS(7389), - [anon_sym_requires] = ACTIONS(7389), + [STATE(2605)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2608), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7686), + [anon_sym_COMMA] = ACTIONS(7686), + [anon_sym_RPAREN] = ACTIONS(7686), + [anon_sym_LPAREN2] = ACTIONS(7686), + [anon_sym_DASH] = ACTIONS(7684), + [anon_sym_PLUS] = ACTIONS(7684), + [anon_sym_STAR] = ACTIONS(7684), + [anon_sym_SLASH] = ACTIONS(7684), + [anon_sym_PERCENT] = ACTIONS(7684), + [anon_sym_PIPE_PIPE] = ACTIONS(7686), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_PIPE] = ACTIONS(7684), + [anon_sym_CARET] = ACTIONS(7684), + [anon_sym_AMP] = ACTIONS(7684), + [anon_sym_EQ_EQ] = ACTIONS(7686), + [anon_sym_BANG_EQ] = ACTIONS(7686), + [anon_sym_GT] = ACTIONS(7684), + [anon_sym_GT_EQ] = ACTIONS(7686), + [anon_sym_LT_EQ] = ACTIONS(7684), + [anon_sym_LT] = ACTIONS(7684), + [anon_sym_LT_LT] = ACTIONS(7684), + [anon_sym_GT_GT] = ACTIONS(7684), + [anon_sym___extension__] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(7686), + [anon_sym___attribute] = ACTIONS(7684), + [anon_sym_LBRACE] = ACTIONS(7686), + [anon_sym_signed] = ACTIONS(8497), + [anon_sym_unsigned] = ACTIONS(8497), + [anon_sym_long] = ACTIONS(8497), + [anon_sym_short] = ACTIONS(8497), + [anon_sym_LBRACK] = ACTIONS(7686), + [anon_sym_EQ] = ACTIONS(7684), + [anon_sym_const] = ACTIONS(7684), + [anon_sym_constexpr] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym___restrict__] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym__Noreturn] = ACTIONS(7686), + [anon_sym_noreturn] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym_mutable] = ACTIONS(7686), + [anon_sym_constinit] = ACTIONS(7686), + [anon_sym_consteval] = ACTIONS(7686), + [anon_sym_alignas] = ACTIONS(7686), + [anon_sym__Alignas] = ACTIONS(7686), + [anon_sym_QMARK] = ACTIONS(7686), + [anon_sym_STAR_EQ] = ACTIONS(7686), + [anon_sym_SLASH_EQ] = ACTIONS(7686), + [anon_sym_PERCENT_EQ] = ACTIONS(7686), + [anon_sym_PLUS_EQ] = ACTIONS(7686), + [anon_sym_DASH_EQ] = ACTIONS(7686), + [anon_sym_LT_LT_EQ] = ACTIONS(7686), + [anon_sym_GT_GT_EQ] = ACTIONS(7686), + [anon_sym_AMP_EQ] = ACTIONS(7686), + [anon_sym_CARET_EQ] = ACTIONS(7686), + [anon_sym_PIPE_EQ] = ACTIONS(7686), + [anon_sym_LT_EQ_GT] = ACTIONS(7686), + [anon_sym_or] = ACTIONS(7686), + [anon_sym_and] = ACTIONS(7686), + [anon_sym_bitor] = ACTIONS(7686), + [anon_sym_xor] = ACTIONS(7686), + [anon_sym_bitand] = ACTIONS(7686), + [anon_sym_not_eq] = ACTIONS(7686), + [anon_sym_DASH_DASH] = ACTIONS(7686), + [anon_sym_PLUS_PLUS] = ACTIONS(7686), + [anon_sym_DOT] = ACTIONS(7684), + [anon_sym_DOT_STAR] = ACTIONS(7686), + [anon_sym_DASH_GT] = ACTIONS(7684), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7686), + [anon_sym_override] = ACTIONS(7686), + [anon_sym_requires] = ACTIONS(7686), + [anon_sym_DASH_GT_STAR] = ACTIONS(7686), }, - [STATE(2666)] = { - [sym_attribute_specifier] = STATE(2947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7425), - [anon_sym_COMMA] = ACTIONS(7425), - [anon_sym_RPAREN] = ACTIONS(7425), - [anon_sym_LPAREN2] = ACTIONS(7425), - [anon_sym_DASH] = ACTIONS(7423), - [anon_sym_PLUS] = ACTIONS(7423), - [anon_sym_STAR] = ACTIONS(7423), - [anon_sym_SLASH] = ACTIONS(7423), - [anon_sym_PERCENT] = ACTIONS(7423), - [anon_sym_PIPE_PIPE] = ACTIONS(7425), - [anon_sym_AMP_AMP] = ACTIONS(7425), - [anon_sym_PIPE] = ACTIONS(7423), - [anon_sym_CARET] = ACTIONS(7423), - [anon_sym_AMP] = ACTIONS(7423), - [anon_sym_EQ_EQ] = ACTIONS(7425), - [anon_sym_BANG_EQ] = ACTIONS(7425), - [anon_sym_GT] = ACTIONS(7423), - [anon_sym_GT_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7423), - [anon_sym_LT] = ACTIONS(7423), - [anon_sym_LT_LT] = ACTIONS(7423), - [anon_sym_GT_GT] = ACTIONS(7423), - [anon_sym___extension__] = ACTIONS(7425), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7425), - [anon_sym_LBRACK] = ACTIONS(7425), - [anon_sym_EQ] = ACTIONS(7423), - [anon_sym_const] = ACTIONS(7423), - [anon_sym_constexpr] = ACTIONS(7425), - [anon_sym_volatile] = ACTIONS(7425), - [anon_sym_restrict] = ACTIONS(7425), - [anon_sym___restrict__] = ACTIONS(7425), - [anon_sym__Atomic] = ACTIONS(7425), - [anon_sym__Noreturn] = ACTIONS(7425), - [anon_sym_noreturn] = ACTIONS(7425), - [anon_sym__Nonnull] = ACTIONS(7425), - [anon_sym_mutable] = ACTIONS(7425), - [anon_sym_constinit] = ACTIONS(7425), - [anon_sym_consteval] = ACTIONS(7425), - [anon_sym_alignas] = ACTIONS(7425), - [anon_sym__Alignas] = ACTIONS(7425), - [anon_sym_QMARK] = ACTIONS(7425), - [anon_sym_STAR_EQ] = ACTIONS(7425), - [anon_sym_SLASH_EQ] = ACTIONS(7425), - [anon_sym_PERCENT_EQ] = ACTIONS(7425), - [anon_sym_PLUS_EQ] = ACTIONS(7425), - [anon_sym_DASH_EQ] = ACTIONS(7425), - [anon_sym_LT_LT_EQ] = ACTIONS(7425), - [anon_sym_GT_GT_EQ] = ACTIONS(7425), - [anon_sym_AMP_EQ] = ACTIONS(7425), - [anon_sym_CARET_EQ] = ACTIONS(7425), - [anon_sym_PIPE_EQ] = ACTIONS(7425), - [anon_sym_and_eq] = ACTIONS(7425), - [anon_sym_or_eq] = ACTIONS(7425), - [anon_sym_xor_eq] = ACTIONS(7425), - [anon_sym_LT_EQ_GT] = ACTIONS(7425), - [anon_sym_or] = ACTIONS(7423), - [anon_sym_and] = ACTIONS(7423), - [anon_sym_bitor] = ACTIONS(7425), - [anon_sym_xor] = ACTIONS(7423), - [anon_sym_bitand] = ACTIONS(7425), - [anon_sym_not_eq] = ACTIONS(7425), - [anon_sym_DASH_DASH] = ACTIONS(7425), - [anon_sym_PLUS_PLUS] = ACTIONS(7425), - [anon_sym_DOT] = ACTIONS(7423), - [anon_sym_DOT_STAR] = ACTIONS(7425), - [anon_sym_DASH_GT] = ACTIONS(7423), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7425), - [anon_sym_override] = ACTIONS(7425), - [anon_sym_requires] = ACTIONS(7425), - [anon_sym_DASH_GT_STAR] = ACTIONS(7425), + [STATE(2606)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3116), + [anon_sym___attribute__] = ACTIONS(3116), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [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), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3116), + [anon_sym_and] = ACTIONS(3116), + [anon_sym_bitor] = ACTIONS(3116), + [anon_sym_xor] = ACTIONS(3116), + [anon_sym_bitand] = ACTIONS(3116), + [anon_sym_not_eq] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3116), + [anon_sym___asm__] = ACTIONS(3116), + [anon_sym___asm] = ACTIONS(3126), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_noexcept] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_requires] = ACTIONS(3116), + [anon_sym_DASH_GT_STAR] = ACTIONS(3116), }, - [STATE(2667)] = { - [sym_attribute_specifier] = STATE(3127), - [sym_enumerator_list] = STATE(2825), + [STATE(2607)] = { + [sym_attribute_specifier] = STATE(3022), + [sym_enumerator_list] = STATE(2668), [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), [anon_sym_COMMA] = ACTIONS(7383), + [anon_sym_RPAREN] = ACTIONS(7383), [anon_sym_LPAREN2] = ACTIONS(7383), [anon_sym_DASH] = ACTIONS(7381), [anon_sym_PLUS] = ACTIONS(7381), @@ -368844,15 +364096,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(7383), [anon_sym_BANG_EQ] = ACTIONS(7383), [anon_sym_GT] = ACTIONS(7381), - [anon_sym_GT_EQ] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7383), [anon_sym_LT_EQ] = ACTIONS(7381), [anon_sym_LT] = ACTIONS(7381), [anon_sym_LT_LT] = ACTIONS(7381), [anon_sym_GT_GT] = ACTIONS(7381), [anon_sym___extension__] = ACTIONS(7383), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(8472), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(8336), [anon_sym_LBRACK] = ACTIONS(7383), [anon_sym_EQ] = ACTIONS(7381), [anon_sym_const] = ACTIONS(7381), @@ -368876,7 +364128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(7383), [anon_sym_DASH_EQ] = ACTIONS(7383), [anon_sym_LT_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_GT_EQ] = ACTIONS(7381), + [anon_sym_GT_GT_EQ] = ACTIONS(7383), [anon_sym_AMP_EQ] = ACTIONS(7383), [anon_sym_CARET_EQ] = ACTIONS(7383), [anon_sym_PIPE_EQ] = ACTIONS(7383), @@ -368894,319 +364146,4011 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(7383), [anon_sym_DOT] = ACTIONS(7381), [anon_sym_DOT_STAR] = ACTIONS(7383), - [anon_sym_DASH_GT] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7381), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7383), [anon_sym_override] = ACTIONS(7383), - [anon_sym_GT2] = ACTIONS(7383), [anon_sym_requires] = ACTIONS(7383), + [anon_sym_DASH_GT_STAR] = ACTIONS(7383), }, - [STATE(2668)] = { - [sym_attribute_specifier] = STATE(3063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), - [anon_sym_COMMA] = ACTIONS(7399), - [anon_sym_RPAREN] = ACTIONS(7399), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(7397), - [anon_sym_PLUS] = ACTIONS(7397), - [anon_sym_STAR] = ACTIONS(7397), - [anon_sym_SLASH] = ACTIONS(7397), - [anon_sym_PERCENT] = ACTIONS(7397), - [anon_sym_PIPE_PIPE] = ACTIONS(7399), - [anon_sym_AMP_AMP] = ACTIONS(7399), - [anon_sym_PIPE] = ACTIONS(7397), - [anon_sym_CARET] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7397), - [anon_sym_EQ_EQ] = ACTIONS(7399), - [anon_sym_BANG_EQ] = ACTIONS(7399), - [anon_sym_GT] = ACTIONS(7397), - [anon_sym_GT_EQ] = ACTIONS(7399), - [anon_sym_LT_EQ] = ACTIONS(7397), - [anon_sym_LT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_GT_GT] = ACTIONS(7397), - [anon_sym___extension__] = ACTIONS(7399), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7399), - [anon_sym_LBRACK] = ACTIONS(7399), - [anon_sym_EQ] = ACTIONS(7397), - [anon_sym_const] = ACTIONS(7397), - [anon_sym_constexpr] = ACTIONS(7399), - [anon_sym_volatile] = ACTIONS(7399), - [anon_sym_restrict] = ACTIONS(7399), - [anon_sym___restrict__] = ACTIONS(7399), - [anon_sym__Atomic] = ACTIONS(7399), - [anon_sym__Noreturn] = ACTIONS(7399), - [anon_sym_noreturn] = ACTIONS(7399), - [anon_sym__Nonnull] = ACTIONS(7399), - [anon_sym_mutable] = ACTIONS(7399), - [anon_sym_constinit] = ACTIONS(7399), - [anon_sym_consteval] = ACTIONS(7399), - [anon_sym_alignas] = ACTIONS(7399), - [anon_sym__Alignas] = ACTIONS(7399), - [anon_sym_QMARK] = ACTIONS(7399), - [anon_sym_STAR_EQ] = ACTIONS(7399), - [anon_sym_SLASH_EQ] = ACTIONS(7399), - [anon_sym_PERCENT_EQ] = ACTIONS(7399), - [anon_sym_PLUS_EQ] = ACTIONS(7399), - [anon_sym_DASH_EQ] = ACTIONS(7399), - [anon_sym_LT_LT_EQ] = ACTIONS(7399), - [anon_sym_GT_GT_EQ] = ACTIONS(7399), - [anon_sym_AMP_EQ] = ACTIONS(7399), - [anon_sym_CARET_EQ] = ACTIONS(7399), - [anon_sym_PIPE_EQ] = ACTIONS(7399), - [anon_sym_and_eq] = ACTIONS(7399), - [anon_sym_or_eq] = ACTIONS(7399), - [anon_sym_xor_eq] = ACTIONS(7399), - [anon_sym_LT_EQ_GT] = ACTIONS(7399), - [anon_sym_or] = ACTIONS(7397), - [anon_sym_and] = ACTIONS(7397), - [anon_sym_bitor] = ACTIONS(7399), - [anon_sym_xor] = ACTIONS(7397), - [anon_sym_bitand] = ACTIONS(7399), - [anon_sym_not_eq] = ACTIONS(7399), - [anon_sym_DASH_DASH] = ACTIONS(7399), - [anon_sym_PLUS_PLUS] = ACTIONS(7399), - [anon_sym_DOT] = ACTIONS(7397), - [anon_sym_DOT_STAR] = ACTIONS(7399), - [anon_sym_DASH_GT] = ACTIONS(7397), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7399), - [anon_sym_override] = ACTIONS(7399), - [anon_sym_requires] = ACTIONS(7399), - [anon_sym_DASH_GT_STAR] = ACTIONS(7399), - }, - [STATE(2669)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4309), - [sym_ms_pointer_modifier] = STATE(3965), - [sym__abstract_declarator] = STATE(6443), - [sym_abstract_parenthesized_declarator] = STATE(6607), - [sym_abstract_pointer_declarator] = STATE(6607), - [sym_abstract_function_declarator] = STATE(6607), - [sym_abstract_array_declarator] = STATE(6607), - [sym_type_qualifier] = STATE(3724), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2281), - [sym_abstract_reference_declarator] = STATE(6607), - [sym__function_declarator_seq] = STATE(6608), - [aux_sym__type_definition_type_repeat1] = STATE(3724), - [aux_sym_pointer_declarator_repeat1] = STATE(3965), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8572), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8574), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8576), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8578), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8580), - [sym_ms_restrict_modifier] = ACTIONS(8582), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8584), - [sym_ms_signed_ptr_modifier] = ACTIONS(8584), - [anon_sym__unaligned] = ACTIONS(8586), - [anon_sym___unaligned] = ACTIONS(8586), - [anon_sym_LBRACK] = ACTIONS(8588), - [anon_sym_RBRACK] = ACTIONS(6823), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym___restrict__] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym__Noreturn] = ACTIONS(8580), - [anon_sym_noreturn] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym_mutable] = ACTIONS(8580), - [anon_sym_constinit] = ACTIONS(8580), - [anon_sym_consteval] = ACTIONS(8580), - [anon_sym_alignas] = ACTIONS(8590), - [anon_sym__Alignas] = ACTIONS(8590), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - }, - [STATE(2670)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2499), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_RPAREN] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7528), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7528), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7528), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7528), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8309), - [anon_sym_unsigned] = ACTIONS(8309), - [anon_sym_long] = ACTIONS(8309), - [anon_sym_short] = ACTIONS(8309), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_EQ] = ACTIONS(7528), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_STAR_EQ] = ACTIONS(7525), - [anon_sym_SLASH_EQ] = ACTIONS(7525), - [anon_sym_PERCENT_EQ] = ACTIONS(7525), - [anon_sym_PLUS_EQ] = ACTIONS(7525), - [anon_sym_DASH_EQ] = ACTIONS(7525), - [anon_sym_LT_LT_EQ] = ACTIONS(7525), - [anon_sym_GT_GT_EQ] = ACTIONS(7525), - [anon_sym_AMP_EQ] = ACTIONS(7525), - [anon_sym_CARET_EQ] = ACTIONS(7525), - [anon_sym_PIPE_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7528), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7525), - }, - [STATE(2671)] = { - [sym_attribute_specifier] = STATE(3064), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), - [anon_sym_COMMA] = ACTIONS(7507), - [anon_sym_RPAREN] = ACTIONS(7507), - [anon_sym_LPAREN2] = ACTIONS(7507), - [anon_sym_DASH] = ACTIONS(7505), - [anon_sym_PLUS] = ACTIONS(7505), - [anon_sym_STAR] = ACTIONS(7505), - [anon_sym_SLASH] = ACTIONS(7505), - [anon_sym_PERCENT] = ACTIONS(7505), - [anon_sym_PIPE_PIPE] = ACTIONS(7507), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE] = ACTIONS(7505), - [anon_sym_CARET] = ACTIONS(7505), - [anon_sym_AMP] = ACTIONS(7505), - [anon_sym_EQ_EQ] = ACTIONS(7507), - [anon_sym_BANG_EQ] = ACTIONS(7507), - [anon_sym_GT] = ACTIONS(7505), - [anon_sym_GT_EQ] = ACTIONS(7507), - [anon_sym_LT_EQ] = ACTIONS(7505), - [anon_sym_LT] = ACTIONS(7505), - [anon_sym_LT_LT] = ACTIONS(7505), - [anon_sym_GT_GT] = ACTIONS(7505), - [anon_sym___extension__] = ACTIONS(7507), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7507), - [anon_sym_LBRACK] = ACTIONS(7507), - [anon_sym_EQ] = ACTIONS(7505), - [anon_sym_const] = ACTIONS(7505), - [anon_sym_constexpr] = ACTIONS(7507), - [anon_sym_volatile] = ACTIONS(7507), - [anon_sym_restrict] = ACTIONS(7507), - [anon_sym___restrict__] = ACTIONS(7507), - [anon_sym__Atomic] = ACTIONS(7507), - [anon_sym__Noreturn] = ACTIONS(7507), - [anon_sym_noreturn] = ACTIONS(7507), - [anon_sym__Nonnull] = ACTIONS(7507), - [anon_sym_mutable] = ACTIONS(7507), - [anon_sym_constinit] = ACTIONS(7507), - [anon_sym_consteval] = ACTIONS(7507), - [anon_sym_alignas] = ACTIONS(7507), - [anon_sym__Alignas] = ACTIONS(7507), - [anon_sym_QMARK] = ACTIONS(7507), - [anon_sym_STAR_EQ] = ACTIONS(7507), - [anon_sym_SLASH_EQ] = ACTIONS(7507), - [anon_sym_PERCENT_EQ] = ACTIONS(7507), - [anon_sym_PLUS_EQ] = ACTIONS(7507), - [anon_sym_DASH_EQ] = ACTIONS(7507), - [anon_sym_LT_LT_EQ] = ACTIONS(7507), - [anon_sym_GT_GT_EQ] = ACTIONS(7507), - [anon_sym_AMP_EQ] = ACTIONS(7507), - [anon_sym_CARET_EQ] = ACTIONS(7507), - [anon_sym_PIPE_EQ] = ACTIONS(7507), - [anon_sym_and_eq] = ACTIONS(7507), - [anon_sym_or_eq] = ACTIONS(7507), - [anon_sym_xor_eq] = ACTIONS(7507), - [anon_sym_LT_EQ_GT] = ACTIONS(7507), - [anon_sym_or] = ACTIONS(7505), - [anon_sym_and] = ACTIONS(7505), - [anon_sym_bitor] = ACTIONS(7507), - [anon_sym_xor] = ACTIONS(7505), - [anon_sym_bitand] = ACTIONS(7507), - [anon_sym_not_eq] = ACTIONS(7507), - [anon_sym_DASH_DASH] = ACTIONS(7507), - [anon_sym_PLUS_PLUS] = ACTIONS(7507), - [anon_sym_DOT] = ACTIONS(7505), - [anon_sym_DOT_STAR] = ACTIONS(7507), - [anon_sym_DASH_GT] = ACTIONS(7505), + [STATE(2608)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [anon_sym_RPAREN] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7731), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7731), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7731), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7731), + [anon_sym_GT_GT] = ACTIONS(7731), + [anon_sym___extension__] = ACTIONS(7733), + [anon_sym___attribute__] = ACTIONS(7733), + [anon_sym___attribute] = ACTIONS(7731), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_signed] = ACTIONS(8495), + [anon_sym_unsigned] = ACTIONS(8495), + [anon_sym_long] = ACTIONS(8495), + [anon_sym_short] = ACTIONS(8495), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(7731), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7733), + [anon_sym_volatile] = ACTIONS(7733), + [anon_sym_restrict] = ACTIONS(7733), + [anon_sym___restrict__] = ACTIONS(7733), + [anon_sym__Atomic] = ACTIONS(7733), + [anon_sym__Noreturn] = ACTIONS(7733), + [anon_sym_noreturn] = ACTIONS(7733), + [anon_sym__Nonnull] = ACTIONS(7733), + [anon_sym_mutable] = ACTIONS(7733), + [anon_sym_constinit] = ACTIONS(7733), + [anon_sym_consteval] = ACTIONS(7733), + [anon_sym_alignas] = ACTIONS(7733), + [anon_sym__Alignas] = ACTIONS(7733), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_STAR_EQ] = ACTIONS(7733), + [anon_sym_SLASH_EQ] = ACTIONS(7733), + [anon_sym_PERCENT_EQ] = ACTIONS(7733), + [anon_sym_PLUS_EQ] = ACTIONS(7733), + [anon_sym_DASH_EQ] = ACTIONS(7733), + [anon_sym_LT_LT_EQ] = ACTIONS(7733), + [anon_sym_GT_GT_EQ] = ACTIONS(7733), + [anon_sym_AMP_EQ] = ACTIONS(7733), + [anon_sym_CARET_EQ] = ACTIONS(7733), + [anon_sym_PIPE_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7733), + [anon_sym_and] = ACTIONS(7733), + [anon_sym_bitor] = ACTIONS(7733), + [anon_sym_xor] = ACTIONS(7733), + [anon_sym_bitand] = ACTIONS(7733), + [anon_sym_not_eq] = ACTIONS(7733), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7731), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7507), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_requires] = ACTIONS(7507), - [anon_sym_DASH_GT_STAR] = ACTIONS(7507), + [anon_sym_final] = ACTIONS(7733), + [anon_sym_override] = ACTIONS(7733), + [anon_sym_requires] = ACTIONS(7733), + [anon_sym_DASH_GT_STAR] = ACTIONS(7733), }, - [STATE(2672)] = { - [sym_attribute_specifier] = STATE(3005), + [STATE(2609)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [anon_sym_RPAREN] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7739), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7739), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7739), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7739), + [anon_sym_GT_GT] = ACTIONS(7739), + [anon_sym___extension__] = ACTIONS(7741), + [anon_sym___attribute__] = ACTIONS(7741), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_signed] = ACTIONS(8495), + [anon_sym_unsigned] = ACTIONS(8495), + [anon_sym_long] = ACTIONS(8495), + [anon_sym_short] = ACTIONS(8495), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(7739), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7741), + [anon_sym_volatile] = ACTIONS(7741), + [anon_sym_restrict] = ACTIONS(7741), + [anon_sym___restrict__] = ACTIONS(7741), + [anon_sym__Atomic] = ACTIONS(7741), + [anon_sym__Noreturn] = ACTIONS(7741), + [anon_sym_noreturn] = ACTIONS(7741), + [anon_sym__Nonnull] = ACTIONS(7741), + [anon_sym_mutable] = ACTIONS(7741), + [anon_sym_constinit] = ACTIONS(7741), + [anon_sym_consteval] = ACTIONS(7741), + [anon_sym_alignas] = ACTIONS(7741), + [anon_sym__Alignas] = ACTIONS(7741), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_STAR_EQ] = ACTIONS(7741), + [anon_sym_SLASH_EQ] = ACTIONS(7741), + [anon_sym_PERCENT_EQ] = ACTIONS(7741), + [anon_sym_PLUS_EQ] = ACTIONS(7741), + [anon_sym_DASH_EQ] = ACTIONS(7741), + [anon_sym_LT_LT_EQ] = ACTIONS(7741), + [anon_sym_GT_GT_EQ] = ACTIONS(7741), + [anon_sym_AMP_EQ] = ACTIONS(7741), + [anon_sym_CARET_EQ] = ACTIONS(7741), + [anon_sym_PIPE_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7741), + [anon_sym_and] = ACTIONS(7741), + [anon_sym_bitor] = ACTIONS(7741), + [anon_sym_xor] = ACTIONS(7741), + [anon_sym_bitand] = ACTIONS(7741), + [anon_sym_not_eq] = ACTIONS(7741), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7739), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7741), + [anon_sym_override] = ACTIONS(7741), + [anon_sym_requires] = ACTIONS(7741), + [anon_sym_DASH_GT_STAR] = ACTIONS(7741), + }, + [STATE(2610)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2616), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_RPAREN] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7755), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7755), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7755), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7755), + [anon_sym_GT_GT] = ACTIONS(7755), + [anon_sym___extension__] = ACTIONS(7757), + [anon_sym___attribute__] = ACTIONS(7757), + [anon_sym___attribute] = ACTIONS(7755), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_signed] = ACTIONS(8499), + [anon_sym_unsigned] = ACTIONS(8499), + [anon_sym_long] = ACTIONS(8499), + [anon_sym_short] = ACTIONS(8499), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(7755), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7757), + [anon_sym_volatile] = ACTIONS(7757), + [anon_sym_restrict] = ACTIONS(7757), + [anon_sym___restrict__] = ACTIONS(7757), + [anon_sym__Atomic] = ACTIONS(7757), + [anon_sym__Noreturn] = ACTIONS(7757), + [anon_sym_noreturn] = ACTIONS(7757), + [anon_sym__Nonnull] = ACTIONS(7757), + [anon_sym_mutable] = ACTIONS(7757), + [anon_sym_constinit] = ACTIONS(7757), + [anon_sym_consteval] = ACTIONS(7757), + [anon_sym_alignas] = ACTIONS(7757), + [anon_sym__Alignas] = ACTIONS(7757), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_STAR_EQ] = ACTIONS(7757), + [anon_sym_SLASH_EQ] = ACTIONS(7757), + [anon_sym_PERCENT_EQ] = ACTIONS(7757), + [anon_sym_PLUS_EQ] = ACTIONS(7757), + [anon_sym_DASH_EQ] = ACTIONS(7757), + [anon_sym_LT_LT_EQ] = ACTIONS(7757), + [anon_sym_GT_GT_EQ] = ACTIONS(7757), + [anon_sym_AMP_EQ] = ACTIONS(7757), + [anon_sym_CARET_EQ] = ACTIONS(7757), + [anon_sym_PIPE_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7757), + [anon_sym_and] = ACTIONS(7757), + [anon_sym_bitor] = ACTIONS(7757), + [anon_sym_xor] = ACTIONS(7757), + [anon_sym_bitand] = ACTIONS(7757), + [anon_sym_not_eq] = ACTIONS(7757), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7755), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7757), + [anon_sym_override] = ACTIONS(7757), + [anon_sym_requires] = ACTIONS(7757), + [anon_sym_DASH_GT_STAR] = ACTIONS(7757), + }, + [STATE(2611)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7771), + [anon_sym_COMMA] = ACTIONS(7771), + [anon_sym_RPAREN] = ACTIONS(7771), + [anon_sym_LPAREN2] = ACTIONS(7771), + [anon_sym_DASH] = ACTIONS(7769), + [anon_sym_PLUS] = ACTIONS(7769), + [anon_sym_STAR] = ACTIONS(7769), + [anon_sym_SLASH] = ACTIONS(7769), + [anon_sym_PERCENT] = ACTIONS(7769), + [anon_sym_PIPE_PIPE] = ACTIONS(7771), + [anon_sym_AMP_AMP] = ACTIONS(7771), + [anon_sym_PIPE] = ACTIONS(7769), + [anon_sym_CARET] = ACTIONS(7769), + [anon_sym_AMP] = ACTIONS(7769), + [anon_sym_EQ_EQ] = ACTIONS(7771), + [anon_sym_BANG_EQ] = ACTIONS(7771), + [anon_sym_GT] = ACTIONS(7769), + [anon_sym_GT_EQ] = ACTIONS(7771), + [anon_sym_LT_EQ] = ACTIONS(7769), + [anon_sym_LT] = ACTIONS(7769), + [anon_sym_LT_LT] = ACTIONS(7769), + [anon_sym_GT_GT] = ACTIONS(7769), + [anon_sym___extension__] = ACTIONS(7771), + [anon_sym___attribute__] = ACTIONS(7771), + [anon_sym___attribute] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7771), + [anon_sym_signed] = ACTIONS(8501), + [anon_sym_unsigned] = ACTIONS(8501), + [anon_sym_long] = ACTIONS(8501), + [anon_sym_short] = ACTIONS(8501), + [anon_sym_LBRACK] = ACTIONS(7771), + [anon_sym_EQ] = ACTIONS(7769), + [anon_sym_const] = ACTIONS(7769), + [anon_sym_constexpr] = ACTIONS(7771), + [anon_sym_volatile] = ACTIONS(7771), + [anon_sym_restrict] = ACTIONS(7771), + [anon_sym___restrict__] = ACTIONS(7771), + [anon_sym__Atomic] = ACTIONS(7771), + [anon_sym__Noreturn] = ACTIONS(7771), + [anon_sym_noreturn] = ACTIONS(7771), + [anon_sym__Nonnull] = ACTIONS(7771), + [anon_sym_mutable] = ACTIONS(7771), + [anon_sym_constinit] = ACTIONS(7771), + [anon_sym_consteval] = ACTIONS(7771), + [anon_sym_alignas] = ACTIONS(7771), + [anon_sym__Alignas] = ACTIONS(7771), + [anon_sym_QMARK] = ACTIONS(7771), + [anon_sym_STAR_EQ] = ACTIONS(7771), + [anon_sym_SLASH_EQ] = ACTIONS(7771), + [anon_sym_PERCENT_EQ] = ACTIONS(7771), + [anon_sym_PLUS_EQ] = ACTIONS(7771), + [anon_sym_DASH_EQ] = ACTIONS(7771), + [anon_sym_LT_LT_EQ] = ACTIONS(7771), + [anon_sym_GT_GT_EQ] = ACTIONS(7771), + [anon_sym_AMP_EQ] = ACTIONS(7771), + [anon_sym_CARET_EQ] = ACTIONS(7771), + [anon_sym_PIPE_EQ] = ACTIONS(7771), + [anon_sym_LT_EQ_GT] = ACTIONS(7771), + [anon_sym_or] = ACTIONS(7771), + [anon_sym_and] = ACTIONS(7771), + [anon_sym_bitor] = ACTIONS(7771), + [anon_sym_xor] = ACTIONS(7771), + [anon_sym_bitand] = ACTIONS(7771), + [anon_sym_not_eq] = ACTIONS(7771), + [anon_sym_DASH_DASH] = ACTIONS(7771), + [anon_sym_PLUS_PLUS] = ACTIONS(7771), + [anon_sym_DOT] = ACTIONS(7769), + [anon_sym_DOT_STAR] = ACTIONS(7771), + [anon_sym_DASH_GT] = ACTIONS(7769), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_DASH_GT_STAR] = ACTIONS(7771), + }, + [STATE(2612)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7562), + [anon_sym_COMMA] = ACTIONS(7562), + [anon_sym_RPAREN] = ACTIONS(7562), + [anon_sym_LPAREN2] = ACTIONS(7562), + [anon_sym_DASH] = ACTIONS(7560), + [anon_sym_PLUS] = ACTIONS(7560), + [anon_sym_STAR] = ACTIONS(7560), + [anon_sym_SLASH] = ACTIONS(7560), + [anon_sym_PERCENT] = ACTIONS(7560), + [anon_sym_PIPE_PIPE] = ACTIONS(7562), + [anon_sym_AMP_AMP] = ACTIONS(7562), + [anon_sym_PIPE] = ACTIONS(7560), + [anon_sym_CARET] = ACTIONS(7560), + [anon_sym_AMP] = ACTIONS(7560), + [anon_sym_EQ_EQ] = ACTIONS(7562), + [anon_sym_BANG_EQ] = ACTIONS(7562), + [anon_sym_GT] = ACTIONS(7560), + [anon_sym_GT_EQ] = ACTIONS(7562), + [anon_sym_LT_EQ] = ACTIONS(7560), + [anon_sym_LT] = ACTIONS(7560), + [anon_sym_LT_LT] = ACTIONS(7560), + [anon_sym_GT_GT] = ACTIONS(7560), + [anon_sym___extension__] = ACTIONS(7562), + [anon_sym___attribute__] = ACTIONS(7562), + [anon_sym___attribute] = ACTIONS(7560), + [anon_sym_LBRACE] = ACTIONS(7562), + [anon_sym_signed] = ACTIONS(8495), + [anon_sym_unsigned] = ACTIONS(8495), + [anon_sym_long] = ACTIONS(8495), + [anon_sym_short] = ACTIONS(8495), + [anon_sym_LBRACK] = ACTIONS(7562), + [anon_sym_EQ] = ACTIONS(7560), + [anon_sym_const] = ACTIONS(7560), + [anon_sym_constexpr] = ACTIONS(7562), + [anon_sym_volatile] = ACTIONS(7562), + [anon_sym_restrict] = ACTIONS(7562), + [anon_sym___restrict__] = ACTIONS(7562), + [anon_sym__Atomic] = ACTIONS(7562), + [anon_sym__Noreturn] = ACTIONS(7562), + [anon_sym_noreturn] = ACTIONS(7562), + [anon_sym__Nonnull] = ACTIONS(7562), + [anon_sym_mutable] = ACTIONS(7562), + [anon_sym_constinit] = ACTIONS(7562), + [anon_sym_consteval] = ACTIONS(7562), + [anon_sym_alignas] = ACTIONS(7562), + [anon_sym__Alignas] = ACTIONS(7562), + [anon_sym_QMARK] = ACTIONS(7562), + [anon_sym_STAR_EQ] = ACTIONS(7562), + [anon_sym_SLASH_EQ] = ACTIONS(7562), + [anon_sym_PERCENT_EQ] = ACTIONS(7562), + [anon_sym_PLUS_EQ] = ACTIONS(7562), + [anon_sym_DASH_EQ] = ACTIONS(7562), + [anon_sym_LT_LT_EQ] = ACTIONS(7562), + [anon_sym_GT_GT_EQ] = ACTIONS(7562), + [anon_sym_AMP_EQ] = ACTIONS(7562), + [anon_sym_CARET_EQ] = ACTIONS(7562), + [anon_sym_PIPE_EQ] = ACTIONS(7562), + [anon_sym_LT_EQ_GT] = ACTIONS(7562), + [anon_sym_or] = ACTIONS(7562), + [anon_sym_and] = ACTIONS(7562), + [anon_sym_bitor] = ACTIONS(7562), + [anon_sym_xor] = ACTIONS(7562), + [anon_sym_bitand] = ACTIONS(7562), + [anon_sym_not_eq] = ACTIONS(7562), + [anon_sym_DASH_DASH] = ACTIONS(7562), + [anon_sym_PLUS_PLUS] = ACTIONS(7562), + [anon_sym_DOT] = ACTIONS(7560), + [anon_sym_DOT_STAR] = ACTIONS(7562), + [anon_sym_DASH_GT] = ACTIONS(7560), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7562), + [anon_sym_override] = ACTIONS(7562), + [anon_sym_requires] = ACTIONS(7562), + [anon_sym_DASH_GT_STAR] = ACTIONS(7562), + }, + [STATE(2613)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_RPAREN] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7584), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7584), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7584), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7584), + [anon_sym_GT_GT] = ACTIONS(7584), + [anon_sym___extension__] = ACTIONS(7586), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_signed] = ACTIONS(8503), + [anon_sym_unsigned] = ACTIONS(8503), + [anon_sym_long] = ACTIONS(8503), + [anon_sym_short] = ACTIONS(8503), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7586), + [anon_sym_volatile] = ACTIONS(7586), + [anon_sym_restrict] = ACTIONS(7586), + [anon_sym___restrict__] = ACTIONS(7586), + [anon_sym__Atomic] = ACTIONS(7586), + [anon_sym__Noreturn] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7586), + [anon_sym__Nonnull] = ACTIONS(7586), + [anon_sym_mutable] = ACTIONS(7586), + [anon_sym_constinit] = ACTIONS(7586), + [anon_sym_consteval] = ACTIONS(7586), + [anon_sym_alignas] = ACTIONS(7586), + [anon_sym__Alignas] = ACTIONS(7586), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_STAR_EQ] = ACTIONS(7586), + [anon_sym_SLASH_EQ] = ACTIONS(7586), + [anon_sym_PERCENT_EQ] = ACTIONS(7586), + [anon_sym_PLUS_EQ] = ACTIONS(7586), + [anon_sym_DASH_EQ] = ACTIONS(7586), + [anon_sym_LT_LT_EQ] = ACTIONS(7586), + [anon_sym_GT_GT_EQ] = ACTIONS(7586), + [anon_sym_AMP_EQ] = ACTIONS(7586), + [anon_sym_CARET_EQ] = ACTIONS(7586), + [anon_sym_PIPE_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7586), + [anon_sym_and] = ACTIONS(7586), + [anon_sym_bitor] = ACTIONS(7586), + [anon_sym_xor] = ACTIONS(7586), + [anon_sym_bitand] = ACTIONS(7586), + [anon_sym_not_eq] = ACTIONS(7586), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7584), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7586), + [anon_sym_override] = ACTIONS(7586), + [anon_sym_requires] = ACTIONS(7586), + [anon_sym_DASH_GT_STAR] = ACTIONS(7586), + }, + [STATE(2614)] = { + [sym_template_argument_list] = STATE(2526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7379), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7379), + [anon_sym_PIPE_PIPE] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7379), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(5637), + [anon_sym_BANG_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(8022), + [anon_sym_LT_LT] = ACTIONS(7379), + [anon_sym_GT_GT] = ACTIONS(7379), + [anon_sym___extension__] = ACTIONS(5637), + [anon_sym___attribute__] = ACTIONS(5637), + [anon_sym___attribute] = ACTIONS(7379), + [anon_sym_COLON] = ACTIONS(7379), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_RBRACK] = ACTIONS(5637), + [anon_sym_EQ] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [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), + [anon_sym_QMARK] = ACTIONS(5637), + [anon_sym_STAR_EQ] = ACTIONS(5637), + [anon_sym_SLASH_EQ] = ACTIONS(5637), + [anon_sym_PERCENT_EQ] = ACTIONS(5637), + [anon_sym_PLUS_EQ] = ACTIONS(5637), + [anon_sym_DASH_EQ] = ACTIONS(5637), + [anon_sym_LT_LT_EQ] = ACTIONS(5637), + [anon_sym_GT_GT_EQ] = ACTIONS(5637), + [anon_sym_AMP_EQ] = ACTIONS(5637), + [anon_sym_CARET_EQ] = ACTIONS(5637), + [anon_sym_PIPE_EQ] = ACTIONS(5637), + [anon_sym_and_eq] = ACTIONS(5637), + [anon_sym_or_eq] = ACTIONS(5637), + [anon_sym_xor_eq] = ACTIONS(5637), + [anon_sym_LT_EQ_GT] = ACTIONS(5637), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_bitor] = ACTIONS(5637), + [anon_sym_xor] = ACTIONS(7379), + [anon_sym_bitand] = ACTIONS(5637), + [anon_sym_not_eq] = ACTIONS(5637), + [anon_sym_DASH_DASH] = ACTIONS(5637), + [anon_sym_PLUS_PLUS] = ACTIONS(5637), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(5637), + [anon_sym_DASH_GT] = ACTIONS(5637), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5637), + [anon_sym_override] = ACTIONS(5637), + [anon_sym_requires] = ACTIONS(5637), + }, + [STATE(2615)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7062), + [anon_sym_COMMA] = ACTIONS(7062), + [anon_sym_RPAREN] = ACTIONS(7062), + [aux_sym_preproc_if_token2] = ACTIONS(7062), + [aux_sym_preproc_else_token1] = ACTIONS(7062), + [aux_sym_preproc_elif_token1] = ACTIONS(7060), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7062), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(7062), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7062), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7062), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7062), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7062), + [anon_sym_LT_EQ] = ACTIONS(7060), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7062), + [anon_sym_GT_GT] = ACTIONS(7062), + [anon_sym_SEMI] = ACTIONS(7062), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym_COLON] = ACTIONS(7060), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7062), + [anon_sym_LBRACE] = ACTIONS(7062), + [anon_sym_RBRACE] = ACTIONS(7062), + [anon_sym_signed] = ACTIONS(8505), + [anon_sym_unsigned] = ACTIONS(8505), + [anon_sym_long] = ACTIONS(8505), + [anon_sym_short] = ACTIONS(8505), + [anon_sym_LBRACK] = ACTIONS(7062), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_LT_EQ_GT] = ACTIONS(7062), + [anon_sym_or] = ACTIONS(7060), + [anon_sym_and] = ACTIONS(7060), + [anon_sym_bitor] = ACTIONS(7060), + [anon_sym_xor] = ACTIONS(7060), + [anon_sym_bitand] = ACTIONS(7060), + [anon_sym_not_eq] = ACTIONS(7060), + [anon_sym_DASH_DASH] = ACTIONS(7062), + [anon_sym_PLUS_PLUS] = ACTIONS(7062), + [anon_sym_DOT] = ACTIONS(7060), + [anon_sym_DOT_STAR] = ACTIONS(7062), + [anon_sym_DASH_GT] = ACTIONS(7062), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7060), + [anon_sym_override] = ACTIONS(7060), + [anon_sym_requires] = ACTIONS(7060), + [anon_sym_COLON_RBRACK] = ACTIONS(7062), + }, + [STATE(2616)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7620), + [anon_sym_COMMA] = ACTIONS(7620), + [anon_sym_RPAREN] = ACTIONS(7620), + [anon_sym_LPAREN2] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7618), + [anon_sym_STAR] = ACTIONS(7618), + [anon_sym_SLASH] = ACTIONS(7618), + [anon_sym_PERCENT] = ACTIONS(7618), + [anon_sym_PIPE_PIPE] = ACTIONS(7620), + [anon_sym_AMP_AMP] = ACTIONS(7620), + [anon_sym_PIPE] = ACTIONS(7618), + [anon_sym_CARET] = ACTIONS(7618), + [anon_sym_AMP] = ACTIONS(7618), + [anon_sym_EQ_EQ] = ACTIONS(7620), + [anon_sym_BANG_EQ] = ACTIONS(7620), + [anon_sym_GT] = ACTIONS(7618), + [anon_sym_GT_EQ] = ACTIONS(7620), + [anon_sym_LT_EQ] = ACTIONS(7618), + [anon_sym_LT] = ACTIONS(7618), + [anon_sym_LT_LT] = ACTIONS(7618), + [anon_sym_GT_GT] = ACTIONS(7618), + [anon_sym___extension__] = ACTIONS(7620), + [anon_sym___attribute__] = ACTIONS(7620), + [anon_sym___attribute] = ACTIONS(7618), + [anon_sym_LBRACE] = ACTIONS(7620), + [anon_sym_signed] = ACTIONS(8495), + [anon_sym_unsigned] = ACTIONS(8495), + [anon_sym_long] = ACTIONS(8495), + [anon_sym_short] = ACTIONS(8495), + [anon_sym_LBRACK] = ACTIONS(7620), + [anon_sym_EQ] = ACTIONS(7618), + [anon_sym_const] = ACTIONS(7618), + [anon_sym_constexpr] = ACTIONS(7620), + [anon_sym_volatile] = ACTIONS(7620), + [anon_sym_restrict] = ACTIONS(7620), + [anon_sym___restrict__] = ACTIONS(7620), + [anon_sym__Atomic] = ACTIONS(7620), + [anon_sym__Noreturn] = ACTIONS(7620), + [anon_sym_noreturn] = ACTIONS(7620), + [anon_sym__Nonnull] = ACTIONS(7620), + [anon_sym_mutable] = ACTIONS(7620), + [anon_sym_constinit] = ACTIONS(7620), + [anon_sym_consteval] = ACTIONS(7620), + [anon_sym_alignas] = ACTIONS(7620), + [anon_sym__Alignas] = ACTIONS(7620), + [anon_sym_QMARK] = ACTIONS(7620), + [anon_sym_STAR_EQ] = ACTIONS(7620), + [anon_sym_SLASH_EQ] = ACTIONS(7620), + [anon_sym_PERCENT_EQ] = ACTIONS(7620), + [anon_sym_PLUS_EQ] = ACTIONS(7620), + [anon_sym_DASH_EQ] = ACTIONS(7620), + [anon_sym_LT_LT_EQ] = ACTIONS(7620), + [anon_sym_GT_GT_EQ] = ACTIONS(7620), + [anon_sym_AMP_EQ] = ACTIONS(7620), + [anon_sym_CARET_EQ] = ACTIONS(7620), + [anon_sym_PIPE_EQ] = ACTIONS(7620), + [anon_sym_LT_EQ_GT] = ACTIONS(7620), + [anon_sym_or] = ACTIONS(7620), + [anon_sym_and] = ACTIONS(7620), + [anon_sym_bitor] = ACTIONS(7620), + [anon_sym_xor] = ACTIONS(7620), + [anon_sym_bitand] = ACTIONS(7620), + [anon_sym_not_eq] = ACTIONS(7620), + [anon_sym_DASH_DASH] = ACTIONS(7620), + [anon_sym_PLUS_PLUS] = ACTIONS(7620), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_DOT_STAR] = ACTIONS(7620), + [anon_sym_DASH_GT] = ACTIONS(7618), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7620), + [anon_sym_override] = ACTIONS(7620), + [anon_sym_requires] = ACTIONS(7620), + [anon_sym_DASH_GT_STAR] = ACTIONS(7620), + }, + [STATE(2617)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7624), + [anon_sym_COMMA] = ACTIONS(7624), + [anon_sym_RPAREN] = ACTIONS(7624), + [anon_sym_LPAREN2] = ACTIONS(7624), + [anon_sym_DASH] = ACTIONS(7622), + [anon_sym_PLUS] = ACTIONS(7622), + [anon_sym_STAR] = ACTIONS(7622), + [anon_sym_SLASH] = ACTIONS(7622), + [anon_sym_PERCENT] = ACTIONS(7622), + [anon_sym_PIPE_PIPE] = ACTIONS(7624), + [anon_sym_AMP_AMP] = ACTIONS(7624), + [anon_sym_PIPE] = ACTIONS(7622), + [anon_sym_CARET] = ACTIONS(7622), + [anon_sym_AMP] = ACTIONS(7622), + [anon_sym_EQ_EQ] = ACTIONS(7624), + [anon_sym_BANG_EQ] = ACTIONS(7624), + [anon_sym_GT] = ACTIONS(7622), + [anon_sym_GT_EQ] = ACTIONS(7624), + [anon_sym_LT_EQ] = ACTIONS(7622), + [anon_sym_LT] = ACTIONS(7622), + [anon_sym_LT_LT] = ACTIONS(7622), + [anon_sym_GT_GT] = ACTIONS(7622), + [anon_sym___extension__] = ACTIONS(7624), + [anon_sym___attribute__] = ACTIONS(7624), + [anon_sym___attribute] = ACTIONS(7622), + [anon_sym_LBRACE] = ACTIONS(7624), + [anon_sym_signed] = ACTIONS(8495), + [anon_sym_unsigned] = ACTIONS(8495), + [anon_sym_long] = ACTIONS(8495), + [anon_sym_short] = ACTIONS(8495), + [anon_sym_LBRACK] = ACTIONS(7624), + [anon_sym_EQ] = ACTIONS(7622), + [anon_sym_const] = ACTIONS(7622), + [anon_sym_constexpr] = ACTIONS(7624), + [anon_sym_volatile] = ACTIONS(7624), + [anon_sym_restrict] = ACTIONS(7624), + [anon_sym___restrict__] = ACTIONS(7624), + [anon_sym__Atomic] = ACTIONS(7624), + [anon_sym__Noreturn] = ACTIONS(7624), + [anon_sym_noreturn] = ACTIONS(7624), + [anon_sym__Nonnull] = ACTIONS(7624), + [anon_sym_mutable] = ACTIONS(7624), + [anon_sym_constinit] = ACTIONS(7624), + [anon_sym_consteval] = ACTIONS(7624), + [anon_sym_alignas] = ACTIONS(7624), + [anon_sym__Alignas] = ACTIONS(7624), + [anon_sym_QMARK] = ACTIONS(7624), + [anon_sym_STAR_EQ] = ACTIONS(7624), + [anon_sym_SLASH_EQ] = ACTIONS(7624), + [anon_sym_PERCENT_EQ] = ACTIONS(7624), + [anon_sym_PLUS_EQ] = ACTIONS(7624), + [anon_sym_DASH_EQ] = ACTIONS(7624), + [anon_sym_LT_LT_EQ] = ACTIONS(7624), + [anon_sym_GT_GT_EQ] = ACTIONS(7624), + [anon_sym_AMP_EQ] = ACTIONS(7624), + [anon_sym_CARET_EQ] = ACTIONS(7624), + [anon_sym_PIPE_EQ] = ACTIONS(7624), + [anon_sym_LT_EQ_GT] = ACTIONS(7624), + [anon_sym_or] = ACTIONS(7624), + [anon_sym_and] = ACTIONS(7624), + [anon_sym_bitor] = ACTIONS(7624), + [anon_sym_xor] = ACTIONS(7624), + [anon_sym_bitand] = ACTIONS(7624), + [anon_sym_not_eq] = ACTIONS(7624), + [anon_sym_DASH_DASH] = ACTIONS(7624), + [anon_sym_PLUS_PLUS] = ACTIONS(7624), + [anon_sym_DOT] = ACTIONS(7622), + [anon_sym_DOT_STAR] = ACTIONS(7624), + [anon_sym_DASH_GT] = ACTIONS(7622), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7624), + [anon_sym_override] = ACTIONS(7624), + [anon_sym_requires] = ACTIONS(7624), + [anon_sym_DASH_GT_STAR] = ACTIONS(7624), + }, + [STATE(2618)] = { + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8508), + [anon_sym_COMMA] = ACTIONS(8508), + [anon_sym_LPAREN2] = ACTIONS(8510), + [anon_sym_TILDE] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8513), + [anon_sym_STAR] = ACTIONS(8510), + [anon_sym_SLASH] = ACTIONS(8513), + [anon_sym_PERCENT] = ACTIONS(8508), + [anon_sym_PIPE_PIPE] = ACTIONS(8508), + [anon_sym_AMP_AMP] = ACTIONS(8510), + [anon_sym_PIPE] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8508), + [anon_sym_AMP] = ACTIONS(8515), + [anon_sym_EQ_EQ] = ACTIONS(8508), + [anon_sym_BANG_EQ] = ACTIONS(8508), + [anon_sym_GT] = ACTIONS(8513), + [anon_sym_GT_EQ] = ACTIONS(8508), + [anon_sym_LT_EQ] = ACTIONS(8513), + [anon_sym_LT] = ACTIONS(8513), + [anon_sym_LT_LT] = ACTIONS(8508), + [anon_sym_GT_GT] = ACTIONS(8508), + [anon_sym_SEMI] = ACTIONS(8508), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym_virtual] = ACTIONS(7117), + [anon_sym_extern] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(8510), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7122), + [anon_sym___declspec] = ACTIONS(7117), + [anon_sym___based] = ACTIONS(7117), + [anon_sym_RBRACE] = ACTIONS(8508), + [anon_sym_LBRACK] = ACTIONS(8515), + [anon_sym_static] = ACTIONS(7117), + [anon_sym_register] = ACTIONS(7117), + [anon_sym_inline] = ACTIONS(7117), + [anon_sym___inline] = ACTIONS(7117), + [anon_sym___inline__] = ACTIONS(7117), + [anon_sym___forceinline] = ACTIONS(7117), + [anon_sym_thread_local] = ACTIONS(7117), + [anon_sym___thread] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(8508), + [anon_sym_LT_EQ_GT] = ACTIONS(8508), + [anon_sym_or] = ACTIONS(8513), + [anon_sym_and] = ACTIONS(8513), + [anon_sym_bitor] = ACTIONS(8513), + [anon_sym_xor] = ACTIONS(8513), + [anon_sym_bitand] = ACTIONS(8513), + [anon_sym_not_eq] = ACTIONS(8513), + [anon_sym_DASH_DASH] = ACTIONS(8508), + [anon_sym_PLUS_PLUS] = ACTIONS(8508), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_DOT_STAR] = ACTIONS(8508), + [anon_sym_DASH_GT] = ACTIONS(8508), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7117), + [anon_sym_template] = ACTIONS(7117), + [anon_sym_operator] = ACTIONS(7117), + [anon_sym_LBRACK_COLON] = ACTIONS(7122), + }, + [STATE(2619)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7329), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_RBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7329), + [anon_sym_or_eq] = ACTIONS(7329), + [anon_sym_xor_eq] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), + }, + [STATE(2620)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7327), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7329), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7327), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_and_eq] = ACTIONS(7329), + [anon_sym_or_eq] = ACTIONS(7329), + [anon_sym_xor_eq] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_GT2] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), + }, + [STATE(2621)] = { + [sym_attribute_specifier] = STATE(3585), + [sym_field_declaration_list] = STATE(3039), + [sym_virtual_specifier] = STATE(9445), + [sym_base_class_clause] = STATE(10297), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym_RPAREN] = ACTIONS(7256), + [anon_sym_LPAREN2] = ACTIONS(7256), + [anon_sym_DASH] = ACTIONS(7254), + [anon_sym_PLUS] = ACTIONS(7254), + [anon_sym_STAR] = ACTIONS(7254), + [anon_sym_SLASH] = ACTIONS(7254), + [anon_sym_PERCENT] = ACTIONS(7254), + [anon_sym_PIPE_PIPE] = ACTIONS(7256), + [anon_sym_AMP_AMP] = ACTIONS(7256), + [anon_sym_PIPE] = ACTIONS(7254), + [anon_sym_CARET] = ACTIONS(7254), + [anon_sym_AMP] = ACTIONS(7254), + [anon_sym_EQ_EQ] = ACTIONS(7256), + [anon_sym_BANG_EQ] = ACTIONS(7256), + [anon_sym_GT] = ACTIONS(7254), + [anon_sym_GT_EQ] = ACTIONS(7256), + [anon_sym_LT_EQ] = ACTIONS(7254), + [anon_sym_LT] = ACTIONS(7254), + [anon_sym_LT_LT] = ACTIONS(7254), + [anon_sym_GT_GT] = ACTIONS(7254), + [anon_sym___extension__] = ACTIONS(7256), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_COLON] = ACTIONS(8180), + [anon_sym_LBRACE] = ACTIONS(8522), + [anon_sym_LBRACK] = ACTIONS(7256), + [anon_sym_EQ] = ACTIONS(7254), + [anon_sym_const] = ACTIONS(7254), + [anon_sym_constexpr] = ACTIONS(7256), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym___restrict__] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym__Noreturn] = ACTIONS(7256), + [anon_sym_noreturn] = ACTIONS(7256), + [anon_sym__Nonnull] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_constinit] = ACTIONS(7256), + [anon_sym_consteval] = ACTIONS(7256), + [anon_sym_alignas] = ACTIONS(7256), + [anon_sym__Alignas] = ACTIONS(7256), + [anon_sym_QMARK] = ACTIONS(7256), + [anon_sym_STAR_EQ] = ACTIONS(7256), + [anon_sym_SLASH_EQ] = ACTIONS(7256), + [anon_sym_PERCENT_EQ] = ACTIONS(7256), + [anon_sym_PLUS_EQ] = ACTIONS(7256), + [anon_sym_DASH_EQ] = ACTIONS(7256), + [anon_sym_LT_LT_EQ] = ACTIONS(7256), + [anon_sym_GT_GT_EQ] = ACTIONS(7256), + [anon_sym_AMP_EQ] = ACTIONS(7256), + [anon_sym_CARET_EQ] = ACTIONS(7256), + [anon_sym_PIPE_EQ] = ACTIONS(7256), + [anon_sym_LT_EQ_GT] = ACTIONS(7256), + [anon_sym_or] = ACTIONS(7256), + [anon_sym_and] = ACTIONS(7256), + [anon_sym_bitor] = ACTIONS(7256), + [anon_sym_xor] = ACTIONS(7256), + [anon_sym_bitand] = ACTIONS(7256), + [anon_sym_not_eq] = ACTIONS(7256), + [anon_sym_DASH_DASH] = ACTIONS(7256), + [anon_sym_PLUS_PLUS] = ACTIONS(7256), + [anon_sym_DOT] = ACTIONS(7254), + [anon_sym_DOT_STAR] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7254), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8184), + [anon_sym_override] = ACTIONS(8184), + [anon_sym_requires] = ACTIONS(7256), + [anon_sym_DASH_GT_STAR] = ACTIONS(7256), + }, + [STATE(2622)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7150), + [anon_sym_COMMA] = ACTIONS(7150), + [anon_sym_RPAREN] = ACTIONS(7150), + [anon_sym_LPAREN2] = ACTIONS(7150), + [anon_sym_DASH] = ACTIONS(7148), + [anon_sym_PLUS] = ACTIONS(7148), + [anon_sym_STAR] = ACTIONS(7148), + [anon_sym_SLASH] = ACTIONS(7148), + [anon_sym_PERCENT] = ACTIONS(7148), + [anon_sym_PIPE_PIPE] = ACTIONS(7150), + [anon_sym_AMP_AMP] = ACTIONS(7150), + [anon_sym_PIPE] = ACTIONS(7148), + [anon_sym_CARET] = ACTIONS(7148), + [anon_sym_AMP] = ACTIONS(7148), + [anon_sym_EQ_EQ] = ACTIONS(7150), + [anon_sym_BANG_EQ] = ACTIONS(7150), + [anon_sym_GT] = ACTIONS(7148), + [anon_sym_GT_EQ] = ACTIONS(7150), + [anon_sym_LT_EQ] = ACTIONS(7148), + [anon_sym_LT] = ACTIONS(7148), + [anon_sym_LT_LT] = ACTIONS(7148), + [anon_sym_GT_GT] = ACTIONS(7148), + [anon_sym___extension__] = ACTIONS(7150), + [anon_sym___attribute__] = ACTIONS(7150), + [anon_sym___attribute] = ACTIONS(7148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7148), + [anon_sym_EQ] = ACTIONS(7148), + [anon_sym_const] = ACTIONS(7148), + [anon_sym_constexpr] = ACTIONS(7150), + [anon_sym_volatile] = ACTIONS(7150), + [anon_sym_restrict] = ACTIONS(7150), + [anon_sym___restrict__] = ACTIONS(7150), + [anon_sym__Atomic] = ACTIONS(7150), + [anon_sym__Noreturn] = ACTIONS(7150), + [anon_sym_noreturn] = ACTIONS(7150), + [anon_sym__Nonnull] = ACTIONS(7150), + [anon_sym_mutable] = ACTIONS(7150), + [anon_sym_constinit] = ACTIONS(7150), + [anon_sym_consteval] = ACTIONS(7150), + [anon_sym_alignas] = ACTIONS(7150), + [anon_sym__Alignas] = ACTIONS(7150), + [anon_sym_QMARK] = ACTIONS(7150), + [anon_sym_STAR_EQ] = ACTIONS(7150), + [anon_sym_SLASH_EQ] = ACTIONS(7150), + [anon_sym_PERCENT_EQ] = ACTIONS(7150), + [anon_sym_PLUS_EQ] = ACTIONS(7150), + [anon_sym_DASH_EQ] = ACTIONS(7150), + [anon_sym_LT_LT_EQ] = ACTIONS(7150), + [anon_sym_GT_GT_EQ] = ACTIONS(7150), + [anon_sym_AMP_EQ] = ACTIONS(7150), + [anon_sym_CARET_EQ] = ACTIONS(7150), + [anon_sym_PIPE_EQ] = ACTIONS(7150), + [anon_sym_LT_EQ_GT] = ACTIONS(7150), + [anon_sym_or] = ACTIONS(7150), + [anon_sym_and] = ACTIONS(7150), + [anon_sym_bitor] = ACTIONS(7150), + [anon_sym_xor] = ACTIONS(7150), + [anon_sym_bitand] = ACTIONS(7150), + [anon_sym_not_eq] = ACTIONS(7150), + [anon_sym_DASH_DASH] = ACTIONS(7150), + [anon_sym_PLUS_PLUS] = ACTIONS(7150), + [anon_sym_asm] = ACTIONS(7150), + [anon_sym___asm__] = ACTIONS(7150), + [anon_sym___asm] = ACTIONS(7148), + [anon_sym_DOT] = ACTIONS(7148), + [anon_sym_DOT_STAR] = ACTIONS(7150), + [anon_sym_DASH_GT] = ACTIONS(7148), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7150), + [anon_sym_override] = ACTIONS(7150), + [anon_sym_noexcept] = ACTIONS(7150), + [anon_sym_throw] = ACTIONS(7150), + [anon_sym_requires] = ACTIONS(7150), + [anon_sym_DASH_GT_STAR] = ACTIONS(7150), + }, + [STATE(2623)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_RPAREN] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym___extension__] = ACTIONS(7115), + [anon_sym___attribute__] = ACTIONS(7115), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7115), + [anon_sym_LBRACK] = ACTIONS(7113), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7115), + [anon_sym_volatile] = ACTIONS(7115), + [anon_sym_restrict] = ACTIONS(7115), + [anon_sym___restrict__] = ACTIONS(7115), + [anon_sym__Atomic] = ACTIONS(7115), + [anon_sym__Noreturn] = ACTIONS(7115), + [anon_sym_noreturn] = ACTIONS(7115), + [anon_sym__Nonnull] = ACTIONS(7115), + [anon_sym_mutable] = ACTIONS(7115), + [anon_sym_constinit] = ACTIONS(7115), + [anon_sym_consteval] = ACTIONS(7115), + [anon_sym_alignas] = ACTIONS(7115), + [anon_sym__Alignas] = ACTIONS(7115), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7115), + [anon_sym_and] = ACTIONS(7115), + [anon_sym_bitor] = ACTIONS(7115), + [anon_sym_xor] = ACTIONS(7115), + [anon_sym_bitand] = ACTIONS(7115), + [anon_sym_not_eq] = ACTIONS(7115), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_asm] = ACTIONS(7115), + [anon_sym___asm__] = ACTIONS(7115), + [anon_sym___asm] = ACTIONS(7113), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7113), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7115), + [anon_sym_override] = ACTIONS(7115), + [anon_sym_noexcept] = ACTIONS(7115), + [anon_sym_throw] = ACTIONS(7115), + [anon_sym_requires] = ACTIONS(7115), + [anon_sym_DASH_GT_STAR] = ACTIONS(7115), + }, + [STATE(2624)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7479), + [anon_sym_COMMA] = ACTIONS(7479), + [anon_sym_RPAREN] = ACTIONS(7479), + [anon_sym_LPAREN2] = ACTIONS(7479), + [anon_sym_DASH] = ACTIONS(7499), + [anon_sym_PLUS] = ACTIONS(7499), + [anon_sym_STAR] = ACTIONS(7499), + [anon_sym_SLASH] = ACTIONS(7499), + [anon_sym_PERCENT] = ACTIONS(7499), + [anon_sym_PIPE_PIPE] = ACTIONS(7479), + [anon_sym_AMP_AMP] = ACTIONS(7479), + [anon_sym_PIPE] = ACTIONS(7499), + [anon_sym_CARET] = ACTIONS(7499), + [anon_sym_AMP] = ACTIONS(7499), + [anon_sym_EQ_EQ] = ACTIONS(7479), + [anon_sym_BANG_EQ] = ACTIONS(7479), + [anon_sym_GT] = ACTIONS(7499), + [anon_sym_GT_EQ] = ACTIONS(7479), + [anon_sym_LT_EQ] = ACTIONS(7499), + [anon_sym_LT] = ACTIONS(7499), + [anon_sym_LT_LT] = ACTIONS(7499), + [anon_sym_GT_GT] = ACTIONS(7499), + [anon_sym___extension__] = ACTIONS(7479), + [anon_sym___attribute__] = ACTIONS(7479), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_COLON] = ACTIONS(7499), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7479), + [anon_sym_EQ] = ACTIONS(7499), + [anon_sym_const] = ACTIONS(7499), + [anon_sym_constexpr] = ACTIONS(7479), + [anon_sym_volatile] = ACTIONS(7479), + [anon_sym_restrict] = ACTIONS(7479), + [anon_sym___restrict__] = ACTIONS(7479), + [anon_sym__Atomic] = ACTIONS(7479), + [anon_sym__Noreturn] = ACTIONS(7479), + [anon_sym_noreturn] = ACTIONS(7479), + [anon_sym__Nonnull] = ACTIONS(7479), + [anon_sym_mutable] = ACTIONS(7479), + [anon_sym_constinit] = ACTIONS(7479), + [anon_sym_consteval] = ACTIONS(7479), + [anon_sym_alignas] = ACTIONS(7479), + [anon_sym__Alignas] = ACTIONS(7479), + [anon_sym_QMARK] = ACTIONS(7479), + [anon_sym_STAR_EQ] = ACTIONS(7479), + [anon_sym_SLASH_EQ] = ACTIONS(7479), + [anon_sym_PERCENT_EQ] = ACTIONS(7479), + [anon_sym_PLUS_EQ] = ACTIONS(7479), + [anon_sym_DASH_EQ] = ACTIONS(7479), + [anon_sym_LT_LT_EQ] = ACTIONS(7479), + [anon_sym_GT_GT_EQ] = ACTIONS(7479), + [anon_sym_AMP_EQ] = ACTIONS(7479), + [anon_sym_CARET_EQ] = ACTIONS(7479), + [anon_sym_PIPE_EQ] = ACTIONS(7479), + [anon_sym_and_eq] = ACTIONS(7479), + [anon_sym_or_eq] = ACTIONS(7479), + [anon_sym_xor_eq] = ACTIONS(7479), + [anon_sym_LT_EQ_GT] = ACTIONS(7479), + [anon_sym_or] = ACTIONS(7499), + [anon_sym_and] = ACTIONS(7499), + [anon_sym_bitor] = ACTIONS(7479), + [anon_sym_xor] = ACTIONS(7499), + [anon_sym_bitand] = ACTIONS(7479), + [anon_sym_not_eq] = ACTIONS(7479), + [anon_sym_DASH_DASH] = ACTIONS(7479), + [anon_sym_PLUS_PLUS] = ACTIONS(7479), + [anon_sym_DOT] = ACTIONS(7499), + [anon_sym_DOT_STAR] = ACTIONS(7479), + [anon_sym_DASH_GT] = ACTIONS(7499), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7479), + [anon_sym_override] = ACTIONS(7479), + [anon_sym_requires] = ACTIONS(7479), + [anon_sym_DASH_GT_STAR] = ACTIONS(7479), + }, + [STATE(2625)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7158), + [anon_sym_COMMA] = ACTIONS(7158), + [anon_sym_RPAREN] = ACTIONS(7158), + [anon_sym_LPAREN2] = ACTIONS(7158), + [anon_sym_DASH] = ACTIONS(7156), + [anon_sym_PLUS] = ACTIONS(7156), + [anon_sym_STAR] = ACTIONS(7156), + [anon_sym_SLASH] = ACTIONS(7156), + [anon_sym_PERCENT] = ACTIONS(7156), + [anon_sym_PIPE_PIPE] = ACTIONS(7158), + [anon_sym_AMP_AMP] = ACTIONS(7158), + [anon_sym_PIPE] = ACTIONS(7156), + [anon_sym_CARET] = ACTIONS(7156), + [anon_sym_AMP] = ACTIONS(7156), + [anon_sym_EQ_EQ] = ACTIONS(7158), + [anon_sym_BANG_EQ] = ACTIONS(7158), + [anon_sym_GT] = ACTIONS(7156), + [anon_sym_GT_EQ] = ACTIONS(7158), + [anon_sym_LT_EQ] = ACTIONS(7156), + [anon_sym_LT] = ACTIONS(7156), + [anon_sym_LT_LT] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7156), + [anon_sym___extension__] = ACTIONS(7158), + [sym_ms_restrict_modifier] = ACTIONS(7156), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7158), + [sym_ms_signed_ptr_modifier] = ACTIONS(7158), + [anon_sym__unaligned] = ACTIONS(7158), + [anon_sym___unaligned] = ACTIONS(7158), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(7156), + [anon_sym_const] = ACTIONS(7156), + [anon_sym_constexpr] = ACTIONS(7158), + [anon_sym_volatile] = ACTIONS(7158), + [anon_sym_restrict] = ACTIONS(7158), + [anon_sym___restrict__] = ACTIONS(7158), + [anon_sym__Atomic] = ACTIONS(7158), + [anon_sym__Noreturn] = ACTIONS(7158), + [anon_sym_noreturn] = ACTIONS(7158), + [anon_sym__Nonnull] = ACTIONS(7158), + [anon_sym_mutable] = ACTIONS(7158), + [anon_sym_constinit] = ACTIONS(7158), + [anon_sym_consteval] = ACTIONS(7158), + [anon_sym_alignas] = ACTIONS(7158), + [anon_sym__Alignas] = ACTIONS(7158), + [anon_sym_QMARK] = ACTIONS(7158), + [anon_sym_STAR_EQ] = ACTIONS(7158), + [anon_sym_SLASH_EQ] = ACTIONS(7158), + [anon_sym_PERCENT_EQ] = ACTIONS(7158), + [anon_sym_PLUS_EQ] = ACTIONS(7158), + [anon_sym_DASH_EQ] = ACTIONS(7158), + [anon_sym_LT_LT_EQ] = ACTIONS(7158), + [anon_sym_GT_GT_EQ] = ACTIONS(7158), + [anon_sym_AMP_EQ] = ACTIONS(7158), + [anon_sym_CARET_EQ] = ACTIONS(7158), + [anon_sym_PIPE_EQ] = ACTIONS(7158), + [anon_sym_and_eq] = ACTIONS(7158), + [anon_sym_or_eq] = ACTIONS(7158), + [anon_sym_xor_eq] = ACTIONS(7158), + [anon_sym_LT_EQ_GT] = ACTIONS(7158), + [anon_sym_or] = ACTIONS(7156), + [anon_sym_and] = ACTIONS(7156), + [anon_sym_bitor] = ACTIONS(7158), + [anon_sym_xor] = ACTIONS(7156), + [anon_sym_bitand] = ACTIONS(7158), + [anon_sym_not_eq] = ACTIONS(7158), + [anon_sym_DASH_DASH] = ACTIONS(7158), + [anon_sym_PLUS_PLUS] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7156), + [anon_sym_DOT_STAR] = ACTIONS(7158), + [anon_sym_DASH_GT] = ACTIONS(7156), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7158), + [anon_sym_override] = ACTIONS(7158), + [anon_sym_requires] = ACTIONS(7158), + [anon_sym_DASH_GT_STAR] = ACTIONS(7158), + }, + [STATE(2626)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7244), + [anon_sym_COMMA] = ACTIONS(7244), + [anon_sym_RPAREN] = ACTIONS(7244), + [anon_sym_LPAREN2] = ACTIONS(7244), + [anon_sym_DASH] = ACTIONS(7242), + [anon_sym_PLUS] = ACTIONS(7242), + [anon_sym_STAR] = ACTIONS(7242), + [anon_sym_SLASH] = ACTIONS(7242), + [anon_sym_PERCENT] = ACTIONS(7242), + [anon_sym_PIPE_PIPE] = ACTIONS(7244), + [anon_sym_AMP_AMP] = ACTIONS(7244), + [anon_sym_PIPE] = ACTIONS(7242), + [anon_sym_CARET] = ACTIONS(7242), + [anon_sym_AMP] = ACTIONS(7242), + [anon_sym_EQ_EQ] = ACTIONS(7244), + [anon_sym_BANG_EQ] = ACTIONS(7244), + [anon_sym_GT] = ACTIONS(7242), + [anon_sym_GT_EQ] = ACTIONS(7244), + [anon_sym_LT_EQ] = ACTIONS(7242), + [anon_sym_LT] = ACTIONS(7242), + [anon_sym_LT_LT] = ACTIONS(7242), + [anon_sym_GT_GT] = ACTIONS(7242), + [anon_sym___extension__] = ACTIONS(7244), + [sym_ms_restrict_modifier] = ACTIONS(7242), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7244), + [sym_ms_signed_ptr_modifier] = ACTIONS(7244), + [anon_sym__unaligned] = ACTIONS(7244), + [anon_sym___unaligned] = ACTIONS(7244), + [anon_sym_LBRACK] = ACTIONS(7244), + [anon_sym_EQ] = ACTIONS(7242), + [anon_sym_const] = ACTIONS(7242), + [anon_sym_constexpr] = ACTIONS(7244), + [anon_sym_volatile] = ACTIONS(7244), + [anon_sym_restrict] = ACTIONS(7244), + [anon_sym___restrict__] = ACTIONS(7244), + [anon_sym__Atomic] = ACTIONS(7244), + [anon_sym__Noreturn] = ACTIONS(7244), + [anon_sym_noreturn] = ACTIONS(7244), + [anon_sym__Nonnull] = ACTIONS(7244), + [anon_sym_mutable] = ACTIONS(7244), + [anon_sym_constinit] = ACTIONS(7244), + [anon_sym_consteval] = ACTIONS(7244), + [anon_sym_alignas] = ACTIONS(7244), + [anon_sym__Alignas] = ACTIONS(7244), + [anon_sym_QMARK] = ACTIONS(7244), + [anon_sym_STAR_EQ] = ACTIONS(7244), + [anon_sym_SLASH_EQ] = ACTIONS(7244), + [anon_sym_PERCENT_EQ] = ACTIONS(7244), + [anon_sym_PLUS_EQ] = ACTIONS(7244), + [anon_sym_DASH_EQ] = ACTIONS(7244), + [anon_sym_LT_LT_EQ] = ACTIONS(7244), + [anon_sym_GT_GT_EQ] = ACTIONS(7244), + [anon_sym_AMP_EQ] = ACTIONS(7244), + [anon_sym_CARET_EQ] = ACTIONS(7244), + [anon_sym_PIPE_EQ] = ACTIONS(7244), + [anon_sym_and_eq] = ACTIONS(7244), + [anon_sym_or_eq] = ACTIONS(7244), + [anon_sym_xor_eq] = ACTIONS(7244), + [anon_sym_LT_EQ_GT] = ACTIONS(7244), + [anon_sym_or] = ACTIONS(7242), + [anon_sym_and] = ACTIONS(7242), + [anon_sym_bitor] = ACTIONS(7244), + [anon_sym_xor] = ACTIONS(7242), + [anon_sym_bitand] = ACTIONS(7244), + [anon_sym_not_eq] = ACTIONS(7244), + [anon_sym_DASH_DASH] = ACTIONS(7244), + [anon_sym_PLUS_PLUS] = ACTIONS(7244), + [anon_sym_DOT] = ACTIONS(7242), + [anon_sym_DOT_STAR] = ACTIONS(7244), + [anon_sym_DASH_GT] = ACTIONS(7242), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7244), + [anon_sym_override] = ACTIONS(7244), + [anon_sym_requires] = ACTIONS(7244), + [anon_sym_DASH_GT_STAR] = ACTIONS(7244), + }, + [STATE(2627)] = { + [sym_template_argument_list] = STATE(2576), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7379), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7379), + [anon_sym_PIPE_PIPE] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7379), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(5637), + [anon_sym_BANG_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(7379), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(8076), + [anon_sym_LT_LT] = ACTIONS(7379), + [anon_sym_GT_GT] = ACTIONS(7379), + [anon_sym___extension__] = ACTIONS(5637), + [anon_sym___attribute__] = ACTIONS(5637), + [anon_sym___attribute] = ACTIONS(7379), + [anon_sym_COLON] = ACTIONS(7379), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_EQ] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [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), + [anon_sym_QMARK] = ACTIONS(5637), + [anon_sym_STAR_EQ] = ACTIONS(5637), + [anon_sym_SLASH_EQ] = ACTIONS(5637), + [anon_sym_PERCENT_EQ] = ACTIONS(5637), + [anon_sym_PLUS_EQ] = ACTIONS(5637), + [anon_sym_DASH_EQ] = ACTIONS(5637), + [anon_sym_LT_LT_EQ] = ACTIONS(5637), + [anon_sym_GT_GT_EQ] = ACTIONS(7379), + [anon_sym_AMP_EQ] = ACTIONS(5637), + [anon_sym_CARET_EQ] = ACTIONS(5637), + [anon_sym_PIPE_EQ] = ACTIONS(5637), + [anon_sym_and_eq] = ACTIONS(5637), + [anon_sym_or_eq] = ACTIONS(5637), + [anon_sym_xor_eq] = ACTIONS(5637), + [anon_sym_LT_EQ_GT] = ACTIONS(5637), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_bitor] = ACTIONS(5637), + [anon_sym_xor] = ACTIONS(7379), + [anon_sym_bitand] = ACTIONS(5637), + [anon_sym_not_eq] = ACTIONS(5637), + [anon_sym_DASH_DASH] = ACTIONS(5637), + [anon_sym_PLUS_PLUS] = ACTIONS(5637), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(5637), + [anon_sym_DASH_GT] = ACTIONS(5637), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5637), + [anon_sym_override] = ACTIONS(5637), + [anon_sym_GT2] = ACTIONS(5637), + [anon_sym_requires] = ACTIONS(5637), + }, + [STATE(2628)] = { + [sym_decltype_auto] = STATE(2968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8524), + [anon_sym_decltype] = ACTIONS(6935), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), + }, + [STATE(2629)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2939), + [sym_ms_pointer_modifier] = STATE(2629), + [aux_sym_pointer_declarator_repeat1] = STATE(2629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6919), + [anon_sym_COMMA] = ACTIONS(6919), + [anon_sym_RPAREN] = ACTIONS(6919), + [anon_sym_LPAREN2] = ACTIONS(6919), + [anon_sym_DASH] = ACTIONS(6917), + [anon_sym_PLUS] = ACTIONS(6917), + [anon_sym_STAR] = ACTIONS(6917), + [anon_sym_SLASH] = ACTIONS(6917), + [anon_sym_PERCENT] = ACTIONS(6917), + [anon_sym_PIPE_PIPE] = ACTIONS(6919), + [anon_sym_AMP_AMP] = ACTIONS(6919), + [anon_sym_PIPE] = ACTIONS(6917), + [anon_sym_CARET] = ACTIONS(6917), + [anon_sym_AMP] = ACTIONS(6917), + [anon_sym_EQ_EQ] = ACTIONS(6919), + [anon_sym_BANG_EQ] = ACTIONS(6919), + [anon_sym_GT] = ACTIONS(6917), + [anon_sym_GT_EQ] = ACTIONS(6919), + [anon_sym_LT_EQ] = ACTIONS(6917), + [anon_sym_LT] = ACTIONS(6917), + [anon_sym_LT_LT] = ACTIONS(6917), + [anon_sym_GT_GT] = ACTIONS(6917), + [anon_sym___extension__] = ACTIONS(6919), + [sym_ms_restrict_modifier] = ACTIONS(8526), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8529), + [sym_ms_signed_ptr_modifier] = ACTIONS(8529), + [anon_sym__unaligned] = ACTIONS(8532), + [anon_sym___unaligned] = ACTIONS(8532), + [anon_sym_LBRACK] = ACTIONS(6919), + [anon_sym_EQ] = ACTIONS(6917), + [anon_sym_const] = ACTIONS(6917), + [anon_sym_constexpr] = ACTIONS(6919), + [anon_sym_volatile] = ACTIONS(6919), + [anon_sym_restrict] = ACTIONS(6919), + [anon_sym___restrict__] = ACTIONS(6919), + [anon_sym__Atomic] = ACTIONS(6919), + [anon_sym__Noreturn] = ACTIONS(6919), + [anon_sym_noreturn] = ACTIONS(6919), + [anon_sym__Nonnull] = ACTIONS(6919), + [anon_sym_mutable] = ACTIONS(6919), + [anon_sym_constinit] = ACTIONS(6919), + [anon_sym_consteval] = ACTIONS(6919), + [anon_sym_alignas] = ACTIONS(6919), + [anon_sym__Alignas] = ACTIONS(6919), + [anon_sym_QMARK] = ACTIONS(6919), + [anon_sym_STAR_EQ] = ACTIONS(6919), + [anon_sym_SLASH_EQ] = ACTIONS(6919), + [anon_sym_PERCENT_EQ] = ACTIONS(6919), + [anon_sym_PLUS_EQ] = ACTIONS(6919), + [anon_sym_DASH_EQ] = ACTIONS(6919), + [anon_sym_LT_LT_EQ] = ACTIONS(6919), + [anon_sym_GT_GT_EQ] = ACTIONS(6919), + [anon_sym_AMP_EQ] = ACTIONS(6919), + [anon_sym_CARET_EQ] = ACTIONS(6919), + [anon_sym_PIPE_EQ] = ACTIONS(6919), + [anon_sym_LT_EQ_GT] = ACTIONS(6919), + [anon_sym_or] = ACTIONS(6919), + [anon_sym_and] = ACTIONS(6919), + [anon_sym_bitor] = ACTIONS(6919), + [anon_sym_xor] = ACTIONS(6919), + [anon_sym_bitand] = ACTIONS(6919), + [anon_sym_not_eq] = ACTIONS(6919), + [anon_sym_DASH_DASH] = ACTIONS(6919), + [anon_sym_PLUS_PLUS] = ACTIONS(6919), + [anon_sym_DOT] = ACTIONS(6917), + [anon_sym_DOT_STAR] = ACTIONS(6919), + [anon_sym_DASH_GT] = ACTIONS(6917), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6919), + [anon_sym_override] = ACTIONS(6919), + [anon_sym_requires] = ACTIONS(6919), + [anon_sym_DASH_GT_STAR] = ACTIONS(6919), + }, + [STATE(2630)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(6656), + [anon_sym_LPAREN2] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6649), + [anon_sym_PLUS] = ACTIONS(6649), + [anon_sym_STAR] = ACTIONS(6649), + [anon_sym_SLASH] = ACTIONS(6649), + [anon_sym_PERCENT] = ACTIONS(6649), + [anon_sym_PIPE_PIPE] = ACTIONS(6656), + [anon_sym_AMP_AMP] = ACTIONS(6656), + [anon_sym_PIPE] = ACTIONS(6649), + [anon_sym_CARET] = ACTIONS(6649), + [anon_sym_AMP] = ACTIONS(6649), + [anon_sym_EQ_EQ] = ACTIONS(6656), + [anon_sym_BANG_EQ] = ACTIONS(6656), + [anon_sym_GT] = ACTIONS(6649), + [anon_sym_GT_EQ] = ACTIONS(6656), + [anon_sym_LT_EQ] = ACTIONS(6649), + [anon_sym_LT] = ACTIONS(6649), + [anon_sym_LT_LT] = ACTIONS(6649), + [anon_sym_GT_GT] = ACTIONS(6649), + [anon_sym_SEMI] = ACTIONS(6656), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym___attribute__] = ACTIONS(6656), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6656), + [anon_sym_EQ] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6656), + [anon_sym_STAR_EQ] = ACTIONS(6656), + [anon_sym_SLASH_EQ] = ACTIONS(6656), + [anon_sym_PERCENT_EQ] = ACTIONS(6656), + [anon_sym_PLUS_EQ] = ACTIONS(6656), + [anon_sym_DASH_EQ] = ACTIONS(6656), + [anon_sym_LT_LT_EQ] = ACTIONS(6656), + [anon_sym_GT_GT_EQ] = ACTIONS(6656), + [anon_sym_AMP_EQ] = ACTIONS(6656), + [anon_sym_CARET_EQ] = ACTIONS(6656), + [anon_sym_PIPE_EQ] = ACTIONS(6656), + [anon_sym_LT_EQ_GT] = ACTIONS(6656), + [anon_sym_or] = ACTIONS(6656), + [anon_sym_and] = ACTIONS(6656), + [anon_sym_bitor] = ACTIONS(6656), + [anon_sym_xor] = ACTIONS(6656), + [anon_sym_bitand] = ACTIONS(6656), + [anon_sym_not_eq] = ACTIONS(6656), + [anon_sym_DASH_DASH] = ACTIONS(6656), + [anon_sym_PLUS_PLUS] = ACTIONS(6656), + [anon_sym_DOT] = ACTIONS(6649), + [anon_sym_DOT_STAR] = ACTIONS(6656), + [anon_sym_DASH_GT] = ACTIONS(6649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_final] = ACTIONS(6656), + [anon_sym_override] = ACTIONS(6656), + [anon_sym_requires] = ACTIONS(6656), + [anon_sym_DASH_GT_STAR] = ACTIONS(6656), + }, + [STATE(2631)] = { + [sym_template_argument_list] = STATE(2676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7117), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7117), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7117), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7117), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(8076), + [anon_sym_LT_LT] = ACTIONS(7117), + [anon_sym_GT_GT] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym___attribute__] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7117), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_and_eq] = ACTIONS(7122), + [anon_sym_or_eq] = ACTIONS(7122), + [anon_sym_xor_eq] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7122), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7122), + [anon_sym_not_eq] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7122), + [anon_sym_override] = ACTIONS(7122), + [anon_sym_GT2] = ACTIONS(7122), + [anon_sym_requires] = ACTIONS(7122), + }, + [STATE(2632)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(8374), + [anon_sym_unsigned] = ACTIONS(8374), + [anon_sym_long] = ACTIONS(8374), + [anon_sym_short] = ACTIONS(8374), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7246), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_GT2] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + }, + [STATE(2633)] = { + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym_ref_qualifier] = STATE(2694), + [sym__function_exception_specification] = STATE(3452), + [sym__function_attributes_end] = STATE(4625), + [sym__function_postfix] = STATE(5619), + [sym_trailing_return_type] = STATE(4750), + [sym_noexcept] = STATE(3452), + [sym_throw_specifier] = STATE(3452), + [sym_requires_clause] = STATE(5619), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(8535), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(8538), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7874), + [anon_sym_and] = ACTIONS(7874), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7874), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8541), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8544), + [anon_sym_override] = ACTIONS(8544), + [anon_sym_noexcept] = ACTIONS(6803), + [anon_sym_throw] = ACTIONS(6805), + [anon_sym_requires] = ACTIONS(8547), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), + }, + [STATE(2634)] = { + [sym_template_argument_list] = STATE(2630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6566), + [anon_sym_COMMA] = ACTIONS(6566), + [anon_sym_RPAREN] = ACTIONS(6566), + [anon_sym_LPAREN2] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6559), + [anon_sym_STAR] = ACTIONS(6559), + [anon_sym_SLASH] = ACTIONS(6559), + [anon_sym_PERCENT] = ACTIONS(6559), + [anon_sym_PIPE_PIPE] = ACTIONS(6566), + [anon_sym_AMP_AMP] = ACTIONS(6566), + [anon_sym_PIPE] = ACTIONS(6559), + [anon_sym_CARET] = ACTIONS(6559), + [anon_sym_AMP] = ACTIONS(6559), + [anon_sym_EQ_EQ] = ACTIONS(6566), + [anon_sym_BANG_EQ] = ACTIONS(6566), + [anon_sym_GT] = ACTIONS(6559), + [anon_sym_GT_EQ] = ACTIONS(6566), + [anon_sym_LT_EQ] = ACTIONS(6559), + [anon_sym_LT] = ACTIONS(8550), + [anon_sym_LT_LT] = ACTIONS(6559), + [anon_sym_GT_GT] = ACTIONS(6559), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym___attribute__] = ACTIONS(6566), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6566), + [anon_sym_EQ] = ACTIONS(6559), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6566), + [anon_sym_STAR_EQ] = ACTIONS(6566), + [anon_sym_SLASH_EQ] = ACTIONS(6566), + [anon_sym_PERCENT_EQ] = ACTIONS(6566), + [anon_sym_PLUS_EQ] = ACTIONS(6566), + [anon_sym_DASH_EQ] = ACTIONS(6566), + [anon_sym_LT_LT_EQ] = ACTIONS(6566), + [anon_sym_GT_GT_EQ] = ACTIONS(6566), + [anon_sym_AMP_EQ] = ACTIONS(6566), + [anon_sym_CARET_EQ] = ACTIONS(6566), + [anon_sym_PIPE_EQ] = ACTIONS(6566), + [anon_sym_LT_EQ_GT] = ACTIONS(6566), + [anon_sym_or] = ACTIONS(6566), + [anon_sym_and] = ACTIONS(6566), + [anon_sym_bitor] = ACTIONS(6566), + [anon_sym_xor] = ACTIONS(6566), + [anon_sym_bitand] = ACTIONS(6566), + [anon_sym_not_eq] = ACTIONS(6566), + [anon_sym_DASH_DASH] = ACTIONS(6566), + [anon_sym_PLUS_PLUS] = ACTIONS(6566), + [anon_sym_DOT] = ACTIONS(6559), + [anon_sym_DOT_STAR] = ACTIONS(6566), + [anon_sym_DASH_GT] = ACTIONS(6559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_final] = ACTIONS(6566), + [anon_sym_override] = ACTIONS(6566), + [anon_sym_requires] = ACTIONS(6566), + [anon_sym_DASH_GT_STAR] = ACTIONS(6566), + }, + [STATE(2635)] = { + [sym__abstract_declarator] = STATE(5827), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7347), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7347), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7347), + [anon_sym_GT_GT] = ACTIONS(7347), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(7347), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_STAR_EQ] = ACTIONS(7345), + [anon_sym_SLASH_EQ] = ACTIONS(7345), + [anon_sym_PERCENT_EQ] = ACTIONS(7345), + [anon_sym_PLUS_EQ] = ACTIONS(7345), + [anon_sym_DASH_EQ] = ACTIONS(7345), + [anon_sym_LT_LT_EQ] = ACTIONS(7345), + [anon_sym_GT_GT_EQ] = ACTIONS(7345), + [anon_sym_AMP_EQ] = ACTIONS(7345), + [anon_sym_CARET_EQ] = ACTIONS(7345), + [anon_sym_PIPE_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7347), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7345), + }, + [STATE(2636)] = { + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym_ref_qualifier] = STATE(2718), + [sym__function_exception_specification] = STATE(3381), + [sym__function_attributes_end] = STATE(4561), + [sym__function_postfix] = STATE(5619), + [sym_trailing_return_type] = STATE(4705), + [sym_noexcept] = STATE(3381), + [sym_throw_specifier] = STATE(3381), + [sym_requires_clause] = STATE(5619), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(8535), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(8538), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7874), + [anon_sym_and] = ACTIONS(7874), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7874), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8541), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_noexcept] = ACTIONS(6803), + [anon_sym_throw] = ACTIONS(6805), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), + }, + [STATE(2637)] = { + [sym_identifier] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [aux_sym_preproc_if_token2] = ACTIONS(3116), + [aux_sym_preproc_else_token1] = ACTIONS(3116), + [aux_sym_preproc_elif_token1] = ACTIONS(3126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3126), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3126), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3126), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3126), + [anon_sym_GT_GT] = ACTIONS(3126), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_EQ] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_STAR_EQ] = ACTIONS(3116), + [anon_sym_SLASH_EQ] = ACTIONS(3116), + [anon_sym_PERCENT_EQ] = ACTIONS(3116), + [anon_sym_PLUS_EQ] = ACTIONS(3116), + [anon_sym_DASH_EQ] = ACTIONS(3116), + [anon_sym_LT_LT_EQ] = ACTIONS(3116), + [anon_sym_GT_GT_EQ] = ACTIONS(3116), + [anon_sym_AMP_EQ] = ACTIONS(3116), + [anon_sym_CARET_EQ] = ACTIONS(3116), + [anon_sym_PIPE_EQ] = ACTIONS(3116), + [anon_sym_and_eq] = ACTIONS(3126), + [anon_sym_or_eq] = ACTIONS(3126), + [anon_sym_xor_eq] = ACTIONS(3126), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3126), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3126), + [anon_sym_not_eq] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + }, + [STATE(2638)] = { + [sym_identifier] = ACTIONS(7113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [aux_sym_preproc_if_token2] = ACTIONS(7115), + [aux_sym_preproc_else_token1] = ACTIONS(7115), + [aux_sym_preproc_elif_token1] = ACTIONS(7113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7113), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7113), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7113), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7113), + [anon_sym_GT_GT] = ACTIONS(7113), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(7115), + [anon_sym_RBRACK] = ACTIONS(7115), + [anon_sym_EQ] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_STAR_EQ] = ACTIONS(7115), + [anon_sym_SLASH_EQ] = ACTIONS(7115), + [anon_sym_PERCENT_EQ] = ACTIONS(7115), + [anon_sym_PLUS_EQ] = ACTIONS(7115), + [anon_sym_DASH_EQ] = ACTIONS(7115), + [anon_sym_LT_LT_EQ] = ACTIONS(7115), + [anon_sym_GT_GT_EQ] = ACTIONS(7115), + [anon_sym_AMP_EQ] = ACTIONS(7115), + [anon_sym_CARET_EQ] = ACTIONS(7115), + [anon_sym_PIPE_EQ] = ACTIONS(7115), + [anon_sym_and_eq] = ACTIONS(7113), + [anon_sym_or_eq] = ACTIONS(7113), + [anon_sym_xor_eq] = ACTIONS(7113), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7113), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7113), + [anon_sym_not_eq] = ACTIONS(7113), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7115), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7113), + [anon_sym_override] = ACTIONS(7113), + [anon_sym_requires] = ACTIONS(7113), + }, + [STATE(2639)] = { + [sym_template_argument_list] = STATE(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7117), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7117), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7117), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(8022), + [anon_sym_LT_LT] = ACTIONS(7117), + [anon_sym_GT_GT] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym___attribute__] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_RBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7122), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_and_eq] = ACTIONS(7122), + [anon_sym_or_eq] = ACTIONS(7122), + [anon_sym_xor_eq] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7122), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7122), + [anon_sym_not_eq] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7122), + [anon_sym_override] = ACTIONS(7122), + [anon_sym_requires] = ACTIONS(7122), + }, + [STATE(2640)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7117), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7117), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7117), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(7117), + [anon_sym_LT_LT] = ACTIONS(7117), + [anon_sym_GT_GT] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym___attribute__] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7122), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7122), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_and_eq] = ACTIONS(7122), + [anon_sym_or_eq] = ACTIONS(7122), + [anon_sym_xor_eq] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7122), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7122), + [anon_sym_not_eq] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7117), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7122), + [anon_sym_override] = ACTIONS(7122), + [anon_sym_requires] = ACTIONS(7122), + [anon_sym_DASH_GT_STAR] = ACTIONS(7122), + }, + [STATE(2641)] = { + [sym__abstract_declarator] = STATE(5888), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6841), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6841), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6841), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(6841), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_STAR_EQ] = ACTIONS(6843), + [anon_sym_SLASH_EQ] = ACTIONS(6843), + [anon_sym_PERCENT_EQ] = ACTIONS(6843), + [anon_sym_PLUS_EQ] = ACTIONS(6843), + [anon_sym_DASH_EQ] = ACTIONS(6843), + [anon_sym_LT_LT_EQ] = ACTIONS(6843), + [anon_sym_GT_GT_EQ] = ACTIONS(6843), + [anon_sym_AMP_EQ] = ACTIONS(6843), + [anon_sym_CARET_EQ] = ACTIONS(6843), + [anon_sym_PIPE_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6841), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(6843), + }, + [STATE(2642)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_RPAREN] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym___extension__] = ACTIONS(7146), + [anon_sym___attribute__] = ACTIONS(7146), + [anon_sym___attribute] = ACTIONS(7144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7144), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7146), + [anon_sym_volatile] = ACTIONS(7146), + [anon_sym_restrict] = ACTIONS(7146), + [anon_sym___restrict__] = ACTIONS(7146), + [anon_sym__Atomic] = ACTIONS(7146), + [anon_sym__Noreturn] = ACTIONS(7146), + [anon_sym_noreturn] = ACTIONS(7146), + [anon_sym__Nonnull] = ACTIONS(7146), + [anon_sym_mutable] = ACTIONS(7146), + [anon_sym_constinit] = ACTIONS(7146), + [anon_sym_consteval] = ACTIONS(7146), + [anon_sym_alignas] = ACTIONS(7146), + [anon_sym__Alignas] = ACTIONS(7146), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7146), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7146), + [anon_sym_and] = ACTIONS(7146), + [anon_sym_bitor] = ACTIONS(7146), + [anon_sym_xor] = ACTIONS(7146), + [anon_sym_bitand] = ACTIONS(7146), + [anon_sym_not_eq] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_asm] = ACTIONS(7146), + [anon_sym___asm__] = ACTIONS(7146), + [anon_sym___asm] = ACTIONS(7144), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7144), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7146), + [anon_sym_override] = ACTIONS(7146), + [anon_sym_noexcept] = ACTIONS(7146), + [anon_sym_throw] = ACTIONS(7146), + [anon_sym_requires] = ACTIONS(7146), + [anon_sym_DASH_GT_STAR] = ACTIONS(7146), + }, + [STATE(2643)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_RPAREN] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7133), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7133), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7133), + [anon_sym_GT_GT] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7135), + [anon_sym___attribute__] = ACTIONS(7135), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_COLON] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7135), + [anon_sym_volatile] = ACTIONS(7135), + [anon_sym_restrict] = ACTIONS(7135), + [anon_sym___restrict__] = ACTIONS(7135), + [anon_sym__Atomic] = ACTIONS(7135), + [anon_sym__Noreturn] = ACTIONS(7135), + [anon_sym_noreturn] = ACTIONS(7135), + [anon_sym__Nonnull] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7135), + [anon_sym_constinit] = ACTIONS(7135), + [anon_sym_consteval] = ACTIONS(7135), + [anon_sym_alignas] = ACTIONS(7135), + [anon_sym__Alignas] = ACTIONS(7135), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_and_eq] = ACTIONS(7135), + [anon_sym_or_eq] = ACTIONS(7135), + [anon_sym_xor_eq] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7135), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7135), + [anon_sym_not_eq] = ACTIONS(7135), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7133), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7135), + [anon_sym_override] = ACTIONS(7135), + [anon_sym_requires] = ACTIONS(7135), + [anon_sym_DASH_GT_STAR] = ACTIONS(7135), + }, + [STATE(2644)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7154), + [anon_sym_COMMA] = ACTIONS(7154), + [anon_sym_RPAREN] = ACTIONS(7154), + [anon_sym_LPAREN2] = ACTIONS(7154), + [anon_sym_DASH] = ACTIONS(7152), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_STAR] = ACTIONS(7152), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7152), + [anon_sym_PIPE_PIPE] = ACTIONS(7154), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE] = ACTIONS(7152), + [anon_sym_CARET] = ACTIONS(7152), + [anon_sym_AMP] = ACTIONS(7152), + [anon_sym_EQ_EQ] = ACTIONS(7154), + [anon_sym_BANG_EQ] = ACTIONS(7154), + [anon_sym_GT] = ACTIONS(7152), + [anon_sym_GT_EQ] = ACTIONS(7154), + [anon_sym_LT_EQ] = ACTIONS(7152), + [anon_sym_LT] = ACTIONS(7152), + [anon_sym_LT_LT] = ACTIONS(7152), + [anon_sym_GT_GT] = ACTIONS(7152), + [anon_sym___extension__] = ACTIONS(7154), + [anon_sym___attribute__] = ACTIONS(7154), + [anon_sym___attribute] = ACTIONS(7152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7154), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(7152), + [anon_sym_const] = ACTIONS(7152), + [anon_sym_constexpr] = ACTIONS(7154), + [anon_sym_volatile] = ACTIONS(7154), + [anon_sym_restrict] = ACTIONS(7154), + [anon_sym___restrict__] = ACTIONS(7154), + [anon_sym__Atomic] = ACTIONS(7154), + [anon_sym__Noreturn] = ACTIONS(7154), + [anon_sym_noreturn] = ACTIONS(7154), + [anon_sym__Nonnull] = ACTIONS(7154), + [anon_sym_mutable] = ACTIONS(7154), + [anon_sym_constinit] = ACTIONS(7154), + [anon_sym_consteval] = ACTIONS(7154), + [anon_sym_alignas] = ACTIONS(7154), + [anon_sym__Alignas] = ACTIONS(7154), + [anon_sym_QMARK] = ACTIONS(7154), + [anon_sym_STAR_EQ] = ACTIONS(7154), + [anon_sym_SLASH_EQ] = ACTIONS(7154), + [anon_sym_PERCENT_EQ] = ACTIONS(7154), + [anon_sym_PLUS_EQ] = ACTIONS(7154), + [anon_sym_DASH_EQ] = ACTIONS(7154), + [anon_sym_LT_LT_EQ] = ACTIONS(7154), + [anon_sym_GT_GT_EQ] = ACTIONS(7154), + [anon_sym_AMP_EQ] = ACTIONS(7154), + [anon_sym_CARET_EQ] = ACTIONS(7154), + [anon_sym_PIPE_EQ] = ACTIONS(7154), + [anon_sym_LT_EQ_GT] = ACTIONS(7154), + [anon_sym_or] = ACTIONS(7154), + [anon_sym_and] = ACTIONS(7154), + [anon_sym_bitor] = ACTIONS(7154), + [anon_sym_xor] = ACTIONS(7154), + [anon_sym_bitand] = ACTIONS(7154), + [anon_sym_not_eq] = ACTIONS(7154), + [anon_sym_DASH_DASH] = ACTIONS(7154), + [anon_sym_PLUS_PLUS] = ACTIONS(7154), + [anon_sym_asm] = ACTIONS(7154), + [anon_sym___asm__] = ACTIONS(7154), + [anon_sym___asm] = ACTIONS(7152), + [anon_sym_DOT] = ACTIONS(7152), + [anon_sym_DOT_STAR] = ACTIONS(7154), + [anon_sym_DASH_GT] = ACTIONS(7152), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7154), + [anon_sym_override] = ACTIONS(7154), + [anon_sym_noexcept] = ACTIONS(7154), + [anon_sym_throw] = ACTIONS(7154), + [anon_sym_requires] = ACTIONS(7154), + [anon_sym_DASH_GT_STAR] = ACTIONS(7154), + }, + [STATE(2645)] = { + [sym_ms_based_modifier] = STATE(10831), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(2646), + [sym__declarator] = STATE(8815), + [sym__abstract_declarator] = STATE(8972), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(3699), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(4787), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(3699), + [aux_sym_pointer_declarator_repeat1] = STATE(2646), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8555), + [anon_sym_AMP_AMP] = ACTIONS(8557), + [anon_sym_AMP] = ACTIONS(8559), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6819), + [anon_sym___attribute] = ACTIONS(6819), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_EQ] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2646)] = { + [sym_ms_based_modifier] = STATE(10831), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(6415), + [sym__declarator] = STATE(8775), + [sym__abstract_declarator] = STATE(8975), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(3648), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(4787), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(3648), + [aux_sym_pointer_declarator_repeat1] = STATE(6415), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8555), + [anon_sym_AMP_AMP] = ACTIONS(8557), + [anon_sym_AMP] = ACTIONS(8559), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_EQ] = ACTIONS(6843), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(6843), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2647)] = { + [sym__abstract_declarator] = STATE(5894), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2363), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_RPAREN] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7369), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7369), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7369), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(7369), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_STAR_EQ] = ACTIONS(7371), + [anon_sym_SLASH_EQ] = ACTIONS(7371), + [anon_sym_PERCENT_EQ] = ACTIONS(7371), + [anon_sym_PLUS_EQ] = ACTIONS(7371), + [anon_sym_DASH_EQ] = ACTIONS(7371), + [anon_sym_LT_LT_EQ] = ACTIONS(7371), + [anon_sym_GT_GT_EQ] = ACTIONS(7371), + [anon_sym_AMP_EQ] = ACTIONS(7371), + [anon_sym_CARET_EQ] = ACTIONS(7371), + [anon_sym_PIPE_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7369), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7371), + }, + [STATE(2648)] = { + [sym__abstract_declarator] = STATE(5902), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2647), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2647), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_RPAREN] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7365), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7365), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7365), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(7365), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_STAR_EQ] = ACTIONS(7367), + [anon_sym_SLASH_EQ] = ACTIONS(7367), + [anon_sym_PERCENT_EQ] = ACTIONS(7367), + [anon_sym_PLUS_EQ] = ACTIONS(7367), + [anon_sym_DASH_EQ] = ACTIONS(7367), + [anon_sym_LT_LT_EQ] = ACTIONS(7367), + [anon_sym_GT_GT_EQ] = ACTIONS(7367), + [anon_sym_AMP_EQ] = ACTIONS(7367), + [anon_sym_CARET_EQ] = ACTIONS(7367), + [anon_sym_PIPE_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7367), + [anon_sym_and] = ACTIONS(7367), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7367), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7365), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7367), + }, + [STATE(2649)] = { + [sym__abstract_declarator] = STATE(5913), + [sym_abstract_parenthesized_declarator] = STATE(5606), + [sym_abstract_pointer_declarator] = STATE(5606), + [sym_abstract_function_declarator] = STATE(5606), + [sym_abstract_array_declarator] = STATE(5606), + [sym_type_qualifier] = STATE(2600), + [sym_alignas_qualifier] = STATE(2525), + [sym_parameter_list] = STATE(1989), + [sym_abstract_reference_declarator] = STATE(5606), + [sym__function_declarator_seq] = STATE(5658), + [aux_sym__type_definition_type_repeat1] = STATE(2600), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_RPAREN] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(7291), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(7566), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7373), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(7568), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7373), + [anon_sym_AMP] = ACTIONS(7570), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7373), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(7299), + [anon_sym_LBRACK] = ACTIONS(7307), + [anon_sym_EQ] = ACTIONS(7373), + [anon_sym_const] = ACTIONS(7309), + [anon_sym_constexpr] = ACTIONS(7299), + [anon_sym_volatile] = ACTIONS(7299), + [anon_sym_restrict] = ACTIONS(7299), + [anon_sym___restrict__] = ACTIONS(7299), + [anon_sym__Atomic] = ACTIONS(7299), + [anon_sym__Noreturn] = ACTIONS(7299), + [anon_sym_noreturn] = ACTIONS(7299), + [anon_sym__Nonnull] = ACTIONS(7299), + [anon_sym_mutable] = ACTIONS(7299), + [anon_sym_constinit] = ACTIONS(7299), + [anon_sym_consteval] = ACTIONS(7299), + [anon_sym_alignas] = ACTIONS(7311), + [anon_sym__Alignas] = ACTIONS(7311), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_STAR_EQ] = ACTIONS(7375), + [anon_sym_SLASH_EQ] = ACTIONS(7375), + [anon_sym_PERCENT_EQ] = ACTIONS(7375), + [anon_sym_PLUS_EQ] = ACTIONS(7375), + [anon_sym_DASH_EQ] = ACTIONS(7375), + [anon_sym_LT_LT_EQ] = ACTIONS(7375), + [anon_sym_GT_GT_EQ] = ACTIONS(7375), + [anon_sym_AMP_EQ] = ACTIONS(7375), + [anon_sym_CARET_EQ] = ACTIONS(7375), + [anon_sym_PIPE_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7373), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7375), + }, + [STATE(2650)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_RPAREN] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7189), + [anon_sym___attribute__] = ACTIONS(7189), + [anon_sym___attribute] = ACTIONS(7187), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7189), + [anon_sym_volatile] = ACTIONS(7189), + [anon_sym_restrict] = ACTIONS(7189), + [anon_sym___restrict__] = ACTIONS(7189), + [anon_sym__Atomic] = ACTIONS(7189), + [anon_sym__Noreturn] = ACTIONS(7189), + [anon_sym_noreturn] = ACTIONS(7189), + [anon_sym__Nonnull] = ACTIONS(7189), + [anon_sym_mutable] = ACTIONS(7189), + [anon_sym_constinit] = ACTIONS(7189), + [anon_sym_consteval] = ACTIONS(7189), + [anon_sym_alignas] = ACTIONS(7189), + [anon_sym__Alignas] = ACTIONS(7189), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7189), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_and_eq] = ACTIONS(7189), + [anon_sym_or_eq] = ACTIONS(7189), + [anon_sym_xor_eq] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7189), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7189), + [anon_sym_not_eq] = ACTIONS(7189), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7187), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7189), + [anon_sym_override] = ACTIONS(7189), + [anon_sym_requires] = ACTIONS(7189), + [anon_sym_DASH_GT_STAR] = ACTIONS(7189), + }, + [STATE(2651)] = { + [sym_argument_list] = STATE(5560), + [sym_initializer_list] = STATE(5570), + [aux_sym_sized_type_specifier_repeat1] = STATE(2415), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_signed] = ACTIONS(8218), + [anon_sym_unsigned] = ACTIONS(8218), + [anon_sym_long] = ACTIONS(8218), + [anon_sym_short] = ACTIONS(8218), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), + }, + [STATE(2652)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7117), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7117), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7117), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(7117), + [anon_sym_LT_LT] = ACTIONS(7117), + [anon_sym_GT_GT] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym___attribute__] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7122), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_RBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7122), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_and_eq] = ACTIONS(7122), + [anon_sym_or_eq] = ACTIONS(7122), + [anon_sym_xor_eq] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7122), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7122), + [anon_sym_not_eq] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7122), + [anon_sym_override] = ACTIONS(7122), + [anon_sym_requires] = ACTIONS(7122), + }, + [STATE(2653)] = { + [sym_attribute_specifier] = STATE(3244), + [sym_enumerator_list] = STATE(2835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), + [anon_sym_COMMA] = ACTIONS(7383), + [anon_sym_LPAREN2] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7381), + [anon_sym_SLASH] = ACTIONS(7381), + [anon_sym_PERCENT] = ACTIONS(7381), + [anon_sym_PIPE_PIPE] = ACTIONS(7383), + [anon_sym_AMP_AMP] = ACTIONS(7383), + [anon_sym_PIPE] = ACTIONS(7381), + [anon_sym_CARET] = ACTIONS(7381), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(7383), + [anon_sym_BANG_EQ] = ACTIONS(7383), + [anon_sym_GT] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7381), + [anon_sym_LT_EQ] = ACTIONS(7381), + [anon_sym_LT] = ACTIONS(7381), + [anon_sym_LT_LT] = ACTIONS(7381), + [anon_sym_GT_GT] = ACTIONS(7381), + [anon_sym___extension__] = ACTIONS(7383), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(8435), + [anon_sym_LBRACK] = ACTIONS(7383), + [anon_sym_EQ] = ACTIONS(7381), + [anon_sym_const] = ACTIONS(7381), + [anon_sym_constexpr] = ACTIONS(7383), + [anon_sym_volatile] = ACTIONS(7383), + [anon_sym_restrict] = ACTIONS(7383), + [anon_sym___restrict__] = ACTIONS(7383), + [anon_sym__Atomic] = ACTIONS(7383), + [anon_sym__Noreturn] = ACTIONS(7383), + [anon_sym_noreturn] = ACTIONS(7383), + [anon_sym__Nonnull] = ACTIONS(7383), + [anon_sym_mutable] = ACTIONS(7383), + [anon_sym_constinit] = ACTIONS(7383), + [anon_sym_consteval] = ACTIONS(7383), + [anon_sym_alignas] = ACTIONS(7383), + [anon_sym__Alignas] = ACTIONS(7383), + [anon_sym_QMARK] = ACTIONS(7383), + [anon_sym_STAR_EQ] = ACTIONS(7383), + [anon_sym_SLASH_EQ] = ACTIONS(7383), + [anon_sym_PERCENT_EQ] = ACTIONS(7383), + [anon_sym_PLUS_EQ] = ACTIONS(7383), + [anon_sym_DASH_EQ] = ACTIONS(7383), + [anon_sym_LT_LT_EQ] = ACTIONS(7383), + [anon_sym_GT_GT_EQ] = ACTIONS(7381), + [anon_sym_AMP_EQ] = ACTIONS(7383), + [anon_sym_CARET_EQ] = ACTIONS(7383), + [anon_sym_PIPE_EQ] = ACTIONS(7383), + [anon_sym_and_eq] = ACTIONS(7383), + [anon_sym_or_eq] = ACTIONS(7383), + [anon_sym_xor_eq] = ACTIONS(7383), + [anon_sym_LT_EQ_GT] = ACTIONS(7383), + [anon_sym_or] = ACTIONS(7381), + [anon_sym_and] = ACTIONS(7381), + [anon_sym_bitor] = ACTIONS(7383), + [anon_sym_xor] = ACTIONS(7381), + [anon_sym_bitand] = ACTIONS(7383), + [anon_sym_not_eq] = ACTIONS(7383), + [anon_sym_DASH_DASH] = ACTIONS(7383), + [anon_sym_PLUS_PLUS] = ACTIONS(7383), + [anon_sym_DOT] = ACTIONS(7381), + [anon_sym_DOT_STAR] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7383), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7383), + [anon_sym_override] = ACTIONS(7383), + [anon_sym_GT2] = ACTIONS(7383), + [anon_sym_requires] = ACTIONS(7383), + }, + [STATE(2654)] = { + [sym_identifier] = ACTIONS(7113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_RPAREN] = ACTIONS(7115), + [aux_sym_preproc_if_token2] = ACTIONS(7115), + [aux_sym_preproc_else_token1] = ACTIONS(7115), + [aux_sym_preproc_elif_token1] = ACTIONS(7113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7115), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7115), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7115), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7115), + [anon_sym_GT_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(7115), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym___attribute__] = ACTIONS(7113), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_COLON] = ACTIONS(7113), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7115), + [anon_sym_LBRACE] = ACTIONS(7115), + [anon_sym_RBRACE] = ACTIONS(7115), + [anon_sym_signed] = ACTIONS(7113), + [anon_sym_unsigned] = ACTIONS(7113), + [anon_sym_long] = ACTIONS(7113), + [anon_sym_short] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(7115), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [sym_primitive_type] = ACTIONS(7113), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7113), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7113), + [anon_sym_not_eq] = ACTIONS(7113), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7115), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7113), + [anon_sym_override] = ACTIONS(7113), + [anon_sym_requires] = ACTIONS(7113), + [anon_sym_COLON_RBRACK] = ACTIONS(7115), + }, + [STATE(2655)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7187), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7189), + [anon_sym___attribute__] = ACTIONS(7189), + [anon_sym___attribute] = ACTIONS(7187), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7189), + [anon_sym_volatile] = ACTIONS(7189), + [anon_sym_restrict] = ACTIONS(7189), + [anon_sym___restrict__] = ACTIONS(7189), + [anon_sym__Atomic] = ACTIONS(7189), + [anon_sym__Noreturn] = ACTIONS(7189), + [anon_sym_noreturn] = ACTIONS(7189), + [anon_sym__Nonnull] = ACTIONS(7189), + [anon_sym_mutable] = ACTIONS(7189), + [anon_sym_constinit] = ACTIONS(7189), + [anon_sym_consteval] = ACTIONS(7189), + [anon_sym_alignas] = ACTIONS(7189), + [anon_sym__Alignas] = ACTIONS(7189), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7187), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_and_eq] = ACTIONS(7189), + [anon_sym_or_eq] = ACTIONS(7189), + [anon_sym_xor_eq] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7189), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7189), + [anon_sym_not_eq] = ACTIONS(7189), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7189), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7189), + [anon_sym_override] = ACTIONS(7189), + [anon_sym_GT2] = ACTIONS(7189), + [anon_sym_requires] = ACTIONS(7189), + }, + [STATE(2656)] = { + [sym_attribute_specifier] = STATE(3021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_RPAREN] = ACTIONS(7521), + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_DASH] = ACTIONS(7519), + [anon_sym_PLUS] = ACTIONS(7519), + [anon_sym_STAR] = ACTIONS(7519), + [anon_sym_SLASH] = ACTIONS(7519), + [anon_sym_PERCENT] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7519), + [anon_sym_CARET] = ACTIONS(7519), + [anon_sym_AMP] = ACTIONS(7519), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_GT] = ACTIONS(7519), + [anon_sym_GT_EQ] = ACTIONS(7521), + [anon_sym_LT_EQ] = ACTIONS(7519), + [anon_sym_LT] = ACTIONS(7519), + [anon_sym_LT_LT] = ACTIONS(7519), + [anon_sym_GT_GT] = ACTIONS(7519), + [anon_sym___extension__] = ACTIONS(7521), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_EQ] = ACTIONS(7519), + [anon_sym_const] = ACTIONS(7519), + [anon_sym_constexpr] = ACTIONS(7521), + [anon_sym_volatile] = ACTIONS(7521), + [anon_sym_restrict] = ACTIONS(7521), + [anon_sym___restrict__] = ACTIONS(7521), + [anon_sym__Atomic] = ACTIONS(7521), + [anon_sym__Noreturn] = ACTIONS(7521), + [anon_sym_noreturn] = ACTIONS(7521), + [anon_sym__Nonnull] = ACTIONS(7521), + [anon_sym_mutable] = ACTIONS(7521), + [anon_sym_constinit] = ACTIONS(7521), + [anon_sym_consteval] = ACTIONS(7521), + [anon_sym_alignas] = ACTIONS(7521), + [anon_sym__Alignas] = ACTIONS(7521), + [anon_sym_QMARK] = ACTIONS(7521), + [anon_sym_STAR_EQ] = ACTIONS(7521), + [anon_sym_SLASH_EQ] = ACTIONS(7521), + [anon_sym_PERCENT_EQ] = ACTIONS(7521), + [anon_sym_PLUS_EQ] = ACTIONS(7521), + [anon_sym_DASH_EQ] = ACTIONS(7521), + [anon_sym_LT_LT_EQ] = ACTIONS(7521), + [anon_sym_GT_GT_EQ] = ACTIONS(7521), + [anon_sym_AMP_EQ] = ACTIONS(7521), + [anon_sym_CARET_EQ] = ACTIONS(7521), + [anon_sym_PIPE_EQ] = ACTIONS(7521), + [anon_sym_and_eq] = ACTIONS(7521), + [anon_sym_or_eq] = ACTIONS(7521), + [anon_sym_xor_eq] = ACTIONS(7521), + [anon_sym_LT_EQ_GT] = ACTIONS(7521), + [anon_sym_or] = ACTIONS(7519), + [anon_sym_and] = ACTIONS(7519), + [anon_sym_bitor] = ACTIONS(7521), + [anon_sym_xor] = ACTIONS(7519), + [anon_sym_bitand] = ACTIONS(7521), + [anon_sym_not_eq] = ACTIONS(7521), + [anon_sym_DASH_DASH] = ACTIONS(7521), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7519), + [anon_sym_DOT_STAR] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7519), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7521), + [anon_sym_override] = ACTIONS(7521), + [anon_sym_requires] = ACTIONS(7521), + [anon_sym_DASH_GT_STAR] = ACTIONS(7521), + }, + [STATE(2657)] = { + [sym_identifier] = ACTIONS(7148), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7150), + [anon_sym_COMMA] = ACTIONS(7150), + [anon_sym_RPAREN] = ACTIONS(7150), + [aux_sym_preproc_if_token2] = ACTIONS(7150), + [aux_sym_preproc_else_token1] = ACTIONS(7150), + [aux_sym_preproc_elif_token1] = ACTIONS(7148), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7150), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7150), + [anon_sym_LPAREN2] = ACTIONS(7150), + [anon_sym_DASH] = ACTIONS(7148), + [anon_sym_PLUS] = ACTIONS(7148), + [anon_sym_STAR] = ACTIONS(7150), + [anon_sym_SLASH] = ACTIONS(7148), + [anon_sym_PERCENT] = ACTIONS(7150), + [anon_sym_PIPE_PIPE] = ACTIONS(7150), + [anon_sym_AMP_AMP] = ACTIONS(7150), + [anon_sym_PIPE] = ACTIONS(7148), + [anon_sym_CARET] = ACTIONS(7150), + [anon_sym_AMP] = ACTIONS(7148), + [anon_sym_EQ_EQ] = ACTIONS(7150), + [anon_sym_BANG_EQ] = ACTIONS(7150), + [anon_sym_GT] = ACTIONS(7148), + [anon_sym_GT_EQ] = ACTIONS(7150), + [anon_sym_LT_EQ] = ACTIONS(7148), + [anon_sym_LT] = ACTIONS(7148), + [anon_sym_LT_LT] = ACTIONS(7150), + [anon_sym_GT_GT] = ACTIONS(7150), + [anon_sym_SEMI] = ACTIONS(7150), + [anon_sym___extension__] = ACTIONS(7148), + [anon_sym___attribute__] = ACTIONS(7148), + [anon_sym___attribute] = ACTIONS(7148), + [anon_sym_COLON] = ACTIONS(7148), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7150), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7150), + [anon_sym_RBRACE] = ACTIONS(7150), + [anon_sym_LBRACK] = ACTIONS(7148), + [anon_sym_const] = ACTIONS(7148), + [anon_sym_constexpr] = ACTIONS(7148), + [anon_sym_volatile] = ACTIONS(7148), + [anon_sym_restrict] = ACTIONS(7148), + [anon_sym___restrict__] = ACTIONS(7148), + [anon_sym__Atomic] = ACTIONS(7148), + [anon_sym__Noreturn] = ACTIONS(7148), + [anon_sym_noreturn] = ACTIONS(7148), + [anon_sym__Nonnull] = ACTIONS(7148), + [anon_sym_mutable] = ACTIONS(7148), + [anon_sym_constinit] = ACTIONS(7148), + [anon_sym_consteval] = ACTIONS(7148), + [anon_sym_alignas] = ACTIONS(7148), + [anon_sym__Alignas] = ACTIONS(7148), + [anon_sym_QMARK] = ACTIONS(7150), + [anon_sym_LT_EQ_GT] = ACTIONS(7150), + [anon_sym_or] = ACTIONS(7148), + [anon_sym_and] = ACTIONS(7148), + [anon_sym_bitor] = ACTIONS(7148), + [anon_sym_xor] = ACTIONS(7148), + [anon_sym_bitand] = ACTIONS(7148), + [anon_sym_not_eq] = ACTIONS(7148), + [anon_sym_DASH_DASH] = ACTIONS(7150), + [anon_sym_PLUS_PLUS] = ACTIONS(7150), + [anon_sym_asm] = ACTIONS(7148), + [anon_sym___asm__] = ACTIONS(7148), + [anon_sym___asm] = ACTIONS(7148), + [anon_sym_DOT] = ACTIONS(7148), + [anon_sym_DOT_STAR] = ACTIONS(7150), + [anon_sym_DASH_GT] = ACTIONS(7150), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7148), + [anon_sym_override] = ACTIONS(7148), + [anon_sym_noexcept] = ACTIONS(7148), + [anon_sym_throw] = ACTIONS(7148), + [anon_sym_requires] = ACTIONS(7148), + [anon_sym_COLON_RBRACK] = ACTIONS(7150), + }, + [STATE(2658)] = { + [sym_attribute_specifier] = STATE(3023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_STAR] = ACTIONS(7523), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_PERCENT] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_CARET] = ACTIONS(7523), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_LT_LT] = ACTIONS(7523), + [anon_sym_GT_GT] = ACTIONS(7523), + [anon_sym___extension__] = ACTIONS(7525), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7523), + [anon_sym_const] = ACTIONS(7523), + [anon_sym_constexpr] = ACTIONS(7525), + [anon_sym_volatile] = ACTIONS(7525), + [anon_sym_restrict] = ACTIONS(7525), + [anon_sym___restrict__] = ACTIONS(7525), + [anon_sym__Atomic] = ACTIONS(7525), + [anon_sym__Noreturn] = ACTIONS(7525), + [anon_sym_noreturn] = ACTIONS(7525), + [anon_sym__Nonnull] = ACTIONS(7525), + [anon_sym_mutable] = ACTIONS(7525), + [anon_sym_constinit] = ACTIONS(7525), + [anon_sym_consteval] = ACTIONS(7525), + [anon_sym_alignas] = ACTIONS(7525), + [anon_sym__Alignas] = ACTIONS(7525), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7525), + [anon_sym_or_eq] = ACTIONS(7525), + [anon_sym_xor_eq] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7523), + [anon_sym_and] = ACTIONS(7523), + [anon_sym_bitor] = ACTIONS(7525), + [anon_sym_xor] = ACTIONS(7523), + [anon_sym_bitand] = ACTIONS(7525), + [anon_sym_not_eq] = ACTIONS(7525), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7523), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7523), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7525), + [anon_sym_override] = ACTIONS(7525), + [anon_sym_requires] = ACTIONS(7525), + [anon_sym_DASH_GT_STAR] = ACTIONS(7525), + }, + [STATE(2659)] = { + [sym_attribute_specifier] = STATE(3024), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7529), + [anon_sym_COMMA] = ACTIONS(7529), + [anon_sym_RPAREN] = ACTIONS(7529), + [anon_sym_LPAREN2] = ACTIONS(7529), + [anon_sym_DASH] = ACTIONS(7527), + [anon_sym_PLUS] = ACTIONS(7527), + [anon_sym_STAR] = ACTIONS(7527), + [anon_sym_SLASH] = ACTIONS(7527), + [anon_sym_PERCENT] = ACTIONS(7527), + [anon_sym_PIPE_PIPE] = ACTIONS(7529), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE] = ACTIONS(7527), + [anon_sym_CARET] = ACTIONS(7527), + [anon_sym_AMP] = ACTIONS(7527), + [anon_sym_EQ_EQ] = ACTIONS(7529), + [anon_sym_BANG_EQ] = ACTIONS(7529), + [anon_sym_GT] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_LT] = ACTIONS(7527), + [anon_sym_LT_LT] = ACTIONS(7527), + [anon_sym_GT_GT] = ACTIONS(7527), + [anon_sym___extension__] = ACTIONS(7529), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7529), + [anon_sym_LBRACK] = ACTIONS(7529), + [anon_sym_EQ] = ACTIONS(7527), + [anon_sym_const] = ACTIONS(7527), + [anon_sym_constexpr] = ACTIONS(7529), + [anon_sym_volatile] = ACTIONS(7529), + [anon_sym_restrict] = ACTIONS(7529), + [anon_sym___restrict__] = ACTIONS(7529), + [anon_sym__Atomic] = ACTIONS(7529), + [anon_sym__Noreturn] = ACTIONS(7529), + [anon_sym_noreturn] = ACTIONS(7529), + [anon_sym__Nonnull] = ACTIONS(7529), + [anon_sym_mutable] = ACTIONS(7529), + [anon_sym_constinit] = ACTIONS(7529), + [anon_sym_consteval] = ACTIONS(7529), + [anon_sym_alignas] = ACTIONS(7529), + [anon_sym__Alignas] = ACTIONS(7529), + [anon_sym_QMARK] = ACTIONS(7529), + [anon_sym_STAR_EQ] = ACTIONS(7529), + [anon_sym_SLASH_EQ] = ACTIONS(7529), + [anon_sym_PERCENT_EQ] = ACTIONS(7529), + [anon_sym_PLUS_EQ] = ACTIONS(7529), + [anon_sym_DASH_EQ] = ACTIONS(7529), + [anon_sym_LT_LT_EQ] = ACTIONS(7529), + [anon_sym_GT_GT_EQ] = ACTIONS(7529), + [anon_sym_AMP_EQ] = ACTIONS(7529), + [anon_sym_CARET_EQ] = ACTIONS(7529), + [anon_sym_PIPE_EQ] = ACTIONS(7529), + [anon_sym_and_eq] = ACTIONS(7529), + [anon_sym_or_eq] = ACTIONS(7529), + [anon_sym_xor_eq] = ACTIONS(7529), + [anon_sym_LT_EQ_GT] = ACTIONS(7529), + [anon_sym_or] = ACTIONS(7527), + [anon_sym_and] = ACTIONS(7527), + [anon_sym_bitor] = ACTIONS(7529), + [anon_sym_xor] = ACTIONS(7527), + [anon_sym_bitand] = ACTIONS(7529), + [anon_sym_not_eq] = ACTIONS(7529), + [anon_sym_DASH_DASH] = ACTIONS(7529), + [anon_sym_PLUS_PLUS] = ACTIONS(7529), + [anon_sym_DOT] = ACTIONS(7527), + [anon_sym_DOT_STAR] = ACTIONS(7529), + [anon_sym_DASH_GT] = ACTIONS(7527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7529), + [anon_sym_override] = ACTIONS(7529), + [anon_sym_requires] = ACTIONS(7529), + [anon_sym_DASH_GT_STAR] = ACTIONS(7529), + }, + [STATE(2660)] = { + [sym_attribute_specifier] = STATE(3026), [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), [anon_sym_COMMA] = ACTIONS(7533), [anon_sym_RPAREN] = ACTIONS(7533), @@ -369230,8 +368174,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7531), [anon_sym_GT_GT] = ACTIONS(7531), [anon_sym___extension__] = ACTIONS(7533), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), [anon_sym_LBRACE] = ACTIONS(7533), [anon_sym_LBRACK] = ACTIONS(7533), [anon_sym_EQ] = ACTIONS(7531), @@ -369281,1109 +368225,2166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7533), [anon_sym_DASH_GT_STAR] = ACTIONS(7533), }, + [STATE(2661)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(8566), + [anon_sym___attribute] = ACTIONS(8566), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + }, + [STATE(2662)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4311), + [sym_ms_pointer_modifier] = STATE(4006), + [sym__abstract_declarator] = STATE(6446), + [sym_abstract_parenthesized_declarator] = STATE(6694), + [sym_abstract_pointer_declarator] = STATE(6694), + [sym_abstract_function_declarator] = STATE(6694), + [sym_abstract_array_declarator] = STATE(6694), + [sym_type_qualifier] = STATE(3701), + [sym_alignas_qualifier] = STATE(3830), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(6694), + [sym__function_declarator_seq] = STATE(6695), + [aux_sym__type_definition_type_repeat1] = STATE(3701), + [aux_sym_pointer_declarator_repeat1] = STATE(4006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8568), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8570), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8572), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8574), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6841), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(8576), + [sym_ms_restrict_modifier] = ACTIONS(8578), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8580), + [sym_ms_signed_ptr_modifier] = ACTIONS(8580), + [anon_sym__unaligned] = ACTIONS(8582), + [anon_sym___unaligned] = ACTIONS(8582), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8576), + [anon_sym_volatile] = ACTIONS(8576), + [anon_sym_restrict] = ACTIONS(8576), + [anon_sym___restrict__] = ACTIONS(8576), + [anon_sym__Atomic] = ACTIONS(8576), + [anon_sym__Noreturn] = ACTIONS(8576), + [anon_sym_noreturn] = ACTIONS(8576), + [anon_sym__Nonnull] = ACTIONS(8576), + [anon_sym_mutable] = ACTIONS(8576), + [anon_sym_constinit] = ACTIONS(8576), + [anon_sym_consteval] = ACTIONS(8576), + [anon_sym_alignas] = ACTIONS(8588), + [anon_sym__Alignas] = ACTIONS(8588), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_GT2] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + }, + [STATE(2663)] = { + [sym_attribute_specifier] = STATE(2999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), + [anon_sym_COMMA] = ACTIONS(7507), + [anon_sym_RPAREN] = ACTIONS(7507), + [anon_sym_LPAREN2] = ACTIONS(7507), + [anon_sym_DASH] = ACTIONS(7505), + [anon_sym_PLUS] = ACTIONS(7505), + [anon_sym_STAR] = ACTIONS(7505), + [anon_sym_SLASH] = ACTIONS(7505), + [anon_sym_PERCENT] = ACTIONS(7505), + [anon_sym_PIPE_PIPE] = ACTIONS(7507), + [anon_sym_AMP_AMP] = ACTIONS(7507), + [anon_sym_PIPE] = ACTIONS(7505), + [anon_sym_CARET] = ACTIONS(7505), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(7507), + [anon_sym_BANG_EQ] = ACTIONS(7507), + [anon_sym_GT] = ACTIONS(7505), + [anon_sym_GT_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7505), + [anon_sym_LT] = ACTIONS(7505), + [anon_sym_LT_LT] = ACTIONS(7505), + [anon_sym_GT_GT] = ACTIONS(7505), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7507), + [anon_sym_LBRACK] = ACTIONS(7507), + [anon_sym_EQ] = ACTIONS(7505), + [anon_sym_const] = ACTIONS(7505), + [anon_sym_constexpr] = ACTIONS(7507), + [anon_sym_volatile] = ACTIONS(7507), + [anon_sym_restrict] = ACTIONS(7507), + [anon_sym___restrict__] = ACTIONS(7507), + [anon_sym__Atomic] = ACTIONS(7507), + [anon_sym__Noreturn] = ACTIONS(7507), + [anon_sym_noreturn] = ACTIONS(7507), + [anon_sym__Nonnull] = ACTIONS(7507), + [anon_sym_mutable] = ACTIONS(7507), + [anon_sym_constinit] = ACTIONS(7507), + [anon_sym_consteval] = ACTIONS(7507), + [anon_sym_alignas] = ACTIONS(7507), + [anon_sym__Alignas] = ACTIONS(7507), + [anon_sym_QMARK] = ACTIONS(7507), + [anon_sym_STAR_EQ] = ACTIONS(7507), + [anon_sym_SLASH_EQ] = ACTIONS(7507), + [anon_sym_PERCENT_EQ] = ACTIONS(7507), + [anon_sym_PLUS_EQ] = ACTIONS(7507), + [anon_sym_DASH_EQ] = ACTIONS(7507), + [anon_sym_LT_LT_EQ] = ACTIONS(7507), + [anon_sym_GT_GT_EQ] = ACTIONS(7507), + [anon_sym_AMP_EQ] = ACTIONS(7507), + [anon_sym_CARET_EQ] = ACTIONS(7507), + [anon_sym_PIPE_EQ] = ACTIONS(7507), + [anon_sym_and_eq] = ACTIONS(7507), + [anon_sym_or_eq] = ACTIONS(7507), + [anon_sym_xor_eq] = ACTIONS(7507), + [anon_sym_LT_EQ_GT] = ACTIONS(7507), + [anon_sym_or] = ACTIONS(7505), + [anon_sym_and] = ACTIONS(7505), + [anon_sym_bitor] = ACTIONS(7507), + [anon_sym_xor] = ACTIONS(7505), + [anon_sym_bitand] = ACTIONS(7507), + [anon_sym_not_eq] = ACTIONS(7507), + [anon_sym_DASH_DASH] = ACTIONS(7507), + [anon_sym_PLUS_PLUS] = ACTIONS(7507), + [anon_sym_DOT] = ACTIONS(7505), + [anon_sym_DOT_STAR] = ACTIONS(7507), + [anon_sym_DASH_GT] = ACTIONS(7505), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7507), + [anon_sym_override] = ACTIONS(7507), + [anon_sym_requires] = ACTIONS(7507), + [anon_sym_DASH_GT_STAR] = ACTIONS(7507), + }, + [STATE(2664)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7133), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7133), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7133), + [anon_sym_GT_GT] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7135), + [anon_sym___attribute__] = ACTIONS(7135), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_COLON] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_RBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7135), + [anon_sym_volatile] = ACTIONS(7135), + [anon_sym_restrict] = ACTIONS(7135), + [anon_sym___restrict__] = ACTIONS(7135), + [anon_sym__Atomic] = ACTIONS(7135), + [anon_sym__Noreturn] = ACTIONS(7135), + [anon_sym_noreturn] = ACTIONS(7135), + [anon_sym__Nonnull] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7135), + [anon_sym_constinit] = ACTIONS(7135), + [anon_sym_consteval] = ACTIONS(7135), + [anon_sym_alignas] = ACTIONS(7135), + [anon_sym__Alignas] = ACTIONS(7135), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_and_eq] = ACTIONS(7135), + [anon_sym_or_eq] = ACTIONS(7135), + [anon_sym_xor_eq] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7135), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7135), + [anon_sym_not_eq] = ACTIONS(7135), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7135), + [anon_sym_override] = ACTIONS(7135), + [anon_sym_requires] = ACTIONS(7135), + }, + [STATE(2665)] = { + [sym_decltype_auto] = STATE(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7246), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8590), + [anon_sym_decltype] = ACTIONS(7021), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_GT2] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + }, + [STATE(2666)] = { + [sym_identifier] = ACTIONS(7113), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_BANG] = ACTIONS(7115), + [anon_sym_TILDE] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7115), + [anon_sym_AMP] = ACTIONS(7115), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym_COLON_COLON] = ACTIONS(7115), + [anon_sym_LBRACK] = ACTIONS(7113), + [anon_sym_static] = ACTIONS(7113), + [anon_sym_RBRACK] = ACTIONS(7115), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [sym_primitive_type] = ACTIONS(7113), + [anon_sym_not] = ACTIONS(7113), + [anon_sym_compl] = ACTIONS(7113), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_sizeof] = ACTIONS(7113), + [anon_sym___alignof__] = ACTIONS(7113), + [anon_sym___alignof] = ACTIONS(7113), + [anon_sym__alignof] = ACTIONS(7113), + [anon_sym_alignof] = ACTIONS(7113), + [anon_sym__Alignof] = ACTIONS(7113), + [anon_sym_offsetof] = ACTIONS(7113), + [anon_sym__Generic] = ACTIONS(7113), + [anon_sym_typename] = ACTIONS(7113), + [anon_sym_asm] = ACTIONS(7113), + [anon_sym___asm__] = ACTIONS(7113), + [anon_sym___asm] = ACTIONS(7113), + [sym_number_literal] = ACTIONS(7115), + [anon_sym_L_SQUOTE] = ACTIONS(7115), + [anon_sym_u_SQUOTE] = ACTIONS(7115), + [anon_sym_U_SQUOTE] = ACTIONS(7115), + [anon_sym_u8_SQUOTE] = ACTIONS(7115), + [anon_sym_SQUOTE] = ACTIONS(7115), + [anon_sym_L_DQUOTE] = ACTIONS(7115), + [anon_sym_u_DQUOTE] = ACTIONS(7115), + [anon_sym_U_DQUOTE] = ACTIONS(7115), + [anon_sym_u8_DQUOTE] = ACTIONS(7115), + [anon_sym_DQUOTE] = ACTIONS(7115), + [sym_true] = ACTIONS(7113), + [sym_false] = ACTIONS(7113), + [anon_sym_NULL] = ACTIONS(7113), + [anon_sym_nullptr] = ACTIONS(7113), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7113), + [anon_sym_template] = ACTIONS(7113), + [anon_sym_delete] = ACTIONS(7113), + [anon_sym_R_DQUOTE] = ACTIONS(7115), + [anon_sym_LR_DQUOTE] = ACTIONS(7115), + [anon_sym_uR_DQUOTE] = ACTIONS(7115), + [anon_sym_UR_DQUOTE] = ACTIONS(7115), + [anon_sym_u8R_DQUOTE] = ACTIONS(7115), + [anon_sym_co_await] = ACTIONS(7113), + [anon_sym_new] = ACTIONS(7113), + [anon_sym_requires] = ACTIONS(7113), + [anon_sym_CARET_CARET] = ACTIONS(7115), + [anon_sym_LBRACK_COLON] = ACTIONS(7115), + [sym_this] = ACTIONS(7113), + }, + [STATE(2667)] = { + [sym_identifier] = ACTIONS(3126), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3116), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_RBRACK] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_not] = ACTIONS(3126), + [anon_sym_compl] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_sizeof] = ACTIONS(3126), + [anon_sym___alignof__] = ACTIONS(3126), + [anon_sym___alignof] = ACTIONS(3126), + [anon_sym__alignof] = ACTIONS(3126), + [anon_sym_alignof] = ACTIONS(3126), + [anon_sym__Alignof] = ACTIONS(3126), + [anon_sym_offsetof] = ACTIONS(3126), + [anon_sym__Generic] = ACTIONS(3126), + [anon_sym_typename] = ACTIONS(3126), + [anon_sym_asm] = ACTIONS(3126), + [anon_sym___asm__] = ACTIONS(3126), + [anon_sym___asm] = ACTIONS(3126), + [sym_number_literal] = ACTIONS(3116), + [anon_sym_L_SQUOTE] = ACTIONS(3116), + [anon_sym_u_SQUOTE] = ACTIONS(3116), + [anon_sym_U_SQUOTE] = ACTIONS(3116), + [anon_sym_u8_SQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_L_DQUOTE] = ACTIONS(3116), + [anon_sym_u_DQUOTE] = ACTIONS(3116), + [anon_sym_U_DQUOTE] = ACTIONS(3116), + [anon_sym_u8_DQUOTE] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [anon_sym_NULL] = ACTIONS(3126), + [anon_sym_nullptr] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_R_DQUOTE] = ACTIONS(3116), + [anon_sym_LR_DQUOTE] = ACTIONS(3116), + [anon_sym_uR_DQUOTE] = ACTIONS(3116), + [anon_sym_UR_DQUOTE] = ACTIONS(3116), + [anon_sym_u8R_DQUOTE] = ACTIONS(3116), + [anon_sym_co_await] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [anon_sym_CARET_CARET] = ACTIONS(3116), + [anon_sym_LBRACK_COLON] = ACTIONS(3116), + [sym_this] = ACTIONS(3126), + }, + [STATE(2668)] = { + [sym_attribute_specifier] = STATE(3034), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7541), + [anon_sym_COMMA] = ACTIONS(7541), + [anon_sym_RPAREN] = ACTIONS(7541), + [anon_sym_LPAREN2] = ACTIONS(7541), + [anon_sym_DASH] = ACTIONS(7539), + [anon_sym_PLUS] = ACTIONS(7539), + [anon_sym_STAR] = ACTIONS(7539), + [anon_sym_SLASH] = ACTIONS(7539), + [anon_sym_PERCENT] = ACTIONS(7539), + [anon_sym_PIPE_PIPE] = ACTIONS(7541), + [anon_sym_AMP_AMP] = ACTIONS(7541), + [anon_sym_PIPE] = ACTIONS(7539), + [anon_sym_CARET] = ACTIONS(7539), + [anon_sym_AMP] = ACTIONS(7539), + [anon_sym_EQ_EQ] = ACTIONS(7541), + [anon_sym_BANG_EQ] = ACTIONS(7541), + [anon_sym_GT] = ACTIONS(7539), + [anon_sym_GT_EQ] = ACTIONS(7541), + [anon_sym_LT_EQ] = ACTIONS(7539), + [anon_sym_LT] = ACTIONS(7539), + [anon_sym_LT_LT] = ACTIONS(7539), + [anon_sym_GT_GT] = ACTIONS(7539), + [anon_sym___extension__] = ACTIONS(7541), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7541), + [anon_sym_LBRACK] = ACTIONS(7541), + [anon_sym_EQ] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7539), + [anon_sym_constexpr] = ACTIONS(7541), + [anon_sym_volatile] = ACTIONS(7541), + [anon_sym_restrict] = ACTIONS(7541), + [anon_sym___restrict__] = ACTIONS(7541), + [anon_sym__Atomic] = ACTIONS(7541), + [anon_sym__Noreturn] = ACTIONS(7541), + [anon_sym_noreturn] = ACTIONS(7541), + [anon_sym__Nonnull] = ACTIONS(7541), + [anon_sym_mutable] = ACTIONS(7541), + [anon_sym_constinit] = ACTIONS(7541), + [anon_sym_consteval] = ACTIONS(7541), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(7541), + [anon_sym_STAR_EQ] = ACTIONS(7541), + [anon_sym_SLASH_EQ] = ACTIONS(7541), + [anon_sym_PERCENT_EQ] = ACTIONS(7541), + [anon_sym_PLUS_EQ] = ACTIONS(7541), + [anon_sym_DASH_EQ] = ACTIONS(7541), + [anon_sym_LT_LT_EQ] = ACTIONS(7541), + [anon_sym_GT_GT_EQ] = ACTIONS(7541), + [anon_sym_AMP_EQ] = ACTIONS(7541), + [anon_sym_CARET_EQ] = ACTIONS(7541), + [anon_sym_PIPE_EQ] = ACTIONS(7541), + [anon_sym_and_eq] = ACTIONS(7541), + [anon_sym_or_eq] = ACTIONS(7541), + [anon_sym_xor_eq] = ACTIONS(7541), + [anon_sym_LT_EQ_GT] = ACTIONS(7541), + [anon_sym_or] = ACTIONS(7539), + [anon_sym_and] = ACTIONS(7539), + [anon_sym_bitor] = ACTIONS(7541), + [anon_sym_xor] = ACTIONS(7539), + [anon_sym_bitand] = ACTIONS(7541), + [anon_sym_not_eq] = ACTIONS(7541), + [anon_sym_DASH_DASH] = ACTIONS(7541), + [anon_sym_PLUS_PLUS] = ACTIONS(7541), + [anon_sym_DOT] = ACTIONS(7539), + [anon_sym_DOT_STAR] = ACTIONS(7541), + [anon_sym_DASH_GT] = ACTIONS(7539), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7541), + [anon_sym_override] = ACTIONS(7541), + [anon_sym_requires] = ACTIONS(7541), + [anon_sym_DASH_GT_STAR] = ACTIONS(7541), + }, + [STATE(2669)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7189), + [anon_sym___attribute__] = ACTIONS(7189), + [anon_sym___attribute] = ACTIONS(7187), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_RBRACK] = ACTIONS(7189), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7189), + [anon_sym_volatile] = ACTIONS(7189), + [anon_sym_restrict] = ACTIONS(7189), + [anon_sym___restrict__] = ACTIONS(7189), + [anon_sym__Atomic] = ACTIONS(7189), + [anon_sym__Noreturn] = ACTIONS(7189), + [anon_sym_noreturn] = ACTIONS(7189), + [anon_sym__Nonnull] = ACTIONS(7189), + [anon_sym_mutable] = ACTIONS(7189), + [anon_sym_constinit] = ACTIONS(7189), + [anon_sym_consteval] = ACTIONS(7189), + [anon_sym_alignas] = ACTIONS(7189), + [anon_sym__Alignas] = ACTIONS(7189), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7189), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_and_eq] = ACTIONS(7189), + [anon_sym_or_eq] = ACTIONS(7189), + [anon_sym_xor_eq] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7189), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7189), + [anon_sym_not_eq] = ACTIONS(7189), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7189), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7189), + [anon_sym_override] = ACTIONS(7189), + [anon_sym_requires] = ACTIONS(7189), + }, + [STATE(2670)] = { + [sym_attribute_specifier] = STATE(3035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7483), + [anon_sym_RPAREN] = ACTIONS(7483), + [anon_sym_LPAREN2] = ACTIONS(7483), + [anon_sym_DASH] = ACTIONS(7481), + [anon_sym_PLUS] = ACTIONS(7481), + [anon_sym_STAR] = ACTIONS(7481), + [anon_sym_SLASH] = ACTIONS(7481), + [anon_sym_PERCENT] = ACTIONS(7481), + [anon_sym_PIPE_PIPE] = ACTIONS(7483), + [anon_sym_AMP_AMP] = ACTIONS(7483), + [anon_sym_PIPE] = ACTIONS(7481), + [anon_sym_CARET] = ACTIONS(7481), + [anon_sym_AMP] = ACTIONS(7481), + [anon_sym_EQ_EQ] = ACTIONS(7483), + [anon_sym_BANG_EQ] = ACTIONS(7483), + [anon_sym_GT] = ACTIONS(7481), + [anon_sym_GT_EQ] = ACTIONS(7483), + [anon_sym_LT_EQ] = ACTIONS(7481), + [anon_sym_LT] = ACTIONS(7481), + [anon_sym_LT_LT] = ACTIONS(7481), + [anon_sym_GT_GT] = ACTIONS(7481), + [anon_sym___extension__] = ACTIONS(7483), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7483), + [anon_sym_LBRACK] = ACTIONS(7483), + [anon_sym_EQ] = ACTIONS(7481), + [anon_sym_const] = ACTIONS(7481), + [anon_sym_constexpr] = ACTIONS(7483), + [anon_sym_volatile] = ACTIONS(7483), + [anon_sym_restrict] = ACTIONS(7483), + [anon_sym___restrict__] = ACTIONS(7483), + [anon_sym__Atomic] = ACTIONS(7483), + [anon_sym__Noreturn] = ACTIONS(7483), + [anon_sym_noreturn] = ACTIONS(7483), + [anon_sym__Nonnull] = ACTIONS(7483), + [anon_sym_mutable] = ACTIONS(7483), + [anon_sym_constinit] = ACTIONS(7483), + [anon_sym_consteval] = ACTIONS(7483), + [anon_sym_alignas] = ACTIONS(7483), + [anon_sym__Alignas] = ACTIONS(7483), + [anon_sym_QMARK] = ACTIONS(7483), + [anon_sym_STAR_EQ] = ACTIONS(7483), + [anon_sym_SLASH_EQ] = ACTIONS(7483), + [anon_sym_PERCENT_EQ] = ACTIONS(7483), + [anon_sym_PLUS_EQ] = ACTIONS(7483), + [anon_sym_DASH_EQ] = ACTIONS(7483), + [anon_sym_LT_LT_EQ] = ACTIONS(7483), + [anon_sym_GT_GT_EQ] = ACTIONS(7483), + [anon_sym_AMP_EQ] = ACTIONS(7483), + [anon_sym_CARET_EQ] = ACTIONS(7483), + [anon_sym_PIPE_EQ] = ACTIONS(7483), + [anon_sym_and_eq] = ACTIONS(7483), + [anon_sym_or_eq] = ACTIONS(7483), + [anon_sym_xor_eq] = ACTIONS(7483), + [anon_sym_LT_EQ_GT] = ACTIONS(7483), + [anon_sym_or] = ACTIONS(7481), + [anon_sym_and] = ACTIONS(7481), + [anon_sym_bitor] = ACTIONS(7483), + [anon_sym_xor] = ACTIONS(7481), + [anon_sym_bitand] = ACTIONS(7483), + [anon_sym_not_eq] = ACTIONS(7483), + [anon_sym_DASH_DASH] = ACTIONS(7483), + [anon_sym_PLUS_PLUS] = ACTIONS(7483), + [anon_sym_DOT] = ACTIONS(7481), + [anon_sym_DOT_STAR] = ACTIONS(7483), + [anon_sym_DASH_GT] = ACTIONS(7481), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7483), + [anon_sym_override] = ACTIONS(7483), + [anon_sym_requires] = ACTIONS(7483), + [anon_sym_DASH_GT_STAR] = ACTIONS(7483), + }, + [STATE(2671)] = { + [sym_argument_list] = STATE(5856), + [sym_initializer_list] = STATE(5744), + [aux_sym_sized_type_specifier_repeat1] = STATE(2197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8592), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_signed] = ACTIONS(8595), + [anon_sym_unsigned] = ACTIONS(8595), + [anon_sym_long] = ACTIONS(8595), + [anon_sym_short] = ACTIONS(8595), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + }, + [STATE(2672)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7117), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7117), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7117), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7117), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(7117), + [anon_sym_LT_LT] = ACTIONS(7117), + [anon_sym_GT_GT] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym___attribute__] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7122), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7117), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_and_eq] = ACTIONS(7122), + [anon_sym_or_eq] = ACTIONS(7122), + [anon_sym_xor_eq] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7122), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7122), + [anon_sym_not_eq] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7122), + [anon_sym_override] = ACTIONS(7122), + [anon_sym_GT2] = ACTIONS(7122), + [anon_sym_requires] = ACTIONS(7122), + }, [STATE(2673)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym__function_exception_specification] = STATE(3352), - [sym__function_attributes_end] = STATE(4579), - [sym__function_postfix] = STATE(5696), - [sym_trailing_return_type] = STATE(4642), - [sym_noexcept] = STATE(3352), - [sym_throw_specifier] = STATE(3352), - [sym_requires_clause] = STATE(5696), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7791), - [anon_sym_and] = ACTIONS(7791), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7791), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8514), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6777), - [anon_sym_override] = ACTIONS(6777), - [anon_sym_noexcept] = ACTIONS(6779), - [anon_sym_throw] = ACTIONS(6781), - [anon_sym_requires] = ACTIONS(6783), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), + [sym_identifier] = ACTIONS(7152), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7154), + [anon_sym_COMMA] = ACTIONS(7154), + [anon_sym_RPAREN] = ACTIONS(7154), + [aux_sym_preproc_if_token2] = ACTIONS(7154), + [aux_sym_preproc_else_token1] = ACTIONS(7154), + [aux_sym_preproc_elif_token1] = ACTIONS(7152), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7154), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7154), + [anon_sym_LPAREN2] = ACTIONS(7154), + [anon_sym_DASH] = ACTIONS(7152), + [anon_sym_PLUS] = ACTIONS(7152), + [anon_sym_STAR] = ACTIONS(7154), + [anon_sym_SLASH] = ACTIONS(7152), + [anon_sym_PERCENT] = ACTIONS(7154), + [anon_sym_PIPE_PIPE] = ACTIONS(7154), + [anon_sym_AMP_AMP] = ACTIONS(7154), + [anon_sym_PIPE] = ACTIONS(7152), + [anon_sym_CARET] = ACTIONS(7154), + [anon_sym_AMP] = ACTIONS(7152), + [anon_sym_EQ_EQ] = ACTIONS(7154), + [anon_sym_BANG_EQ] = ACTIONS(7154), + [anon_sym_GT] = ACTIONS(7152), + [anon_sym_GT_EQ] = ACTIONS(7154), + [anon_sym_LT_EQ] = ACTIONS(7152), + [anon_sym_LT] = ACTIONS(7152), + [anon_sym_LT_LT] = ACTIONS(7154), + [anon_sym_GT_GT] = ACTIONS(7154), + [anon_sym_SEMI] = ACTIONS(7154), + [anon_sym___extension__] = ACTIONS(7152), + [anon_sym___attribute__] = ACTIONS(7152), + [anon_sym___attribute] = ACTIONS(7152), + [anon_sym_COLON] = ACTIONS(7152), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7154), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7154), + [anon_sym_RBRACE] = ACTIONS(7154), + [anon_sym_LBRACK] = ACTIONS(7152), + [anon_sym_const] = ACTIONS(7152), + [anon_sym_constexpr] = ACTIONS(7152), + [anon_sym_volatile] = ACTIONS(7152), + [anon_sym_restrict] = ACTIONS(7152), + [anon_sym___restrict__] = ACTIONS(7152), + [anon_sym__Atomic] = ACTIONS(7152), + [anon_sym__Noreturn] = ACTIONS(7152), + [anon_sym_noreturn] = ACTIONS(7152), + [anon_sym__Nonnull] = ACTIONS(7152), + [anon_sym_mutable] = ACTIONS(7152), + [anon_sym_constinit] = ACTIONS(7152), + [anon_sym_consteval] = ACTIONS(7152), + [anon_sym_alignas] = ACTIONS(7152), + [anon_sym__Alignas] = ACTIONS(7152), + [anon_sym_QMARK] = ACTIONS(7154), + [anon_sym_LT_EQ_GT] = ACTIONS(7154), + [anon_sym_or] = ACTIONS(7152), + [anon_sym_and] = ACTIONS(7152), + [anon_sym_bitor] = ACTIONS(7152), + [anon_sym_xor] = ACTIONS(7152), + [anon_sym_bitand] = ACTIONS(7152), + [anon_sym_not_eq] = ACTIONS(7152), + [anon_sym_DASH_DASH] = ACTIONS(7154), + [anon_sym_PLUS_PLUS] = ACTIONS(7154), + [anon_sym_asm] = ACTIONS(7152), + [anon_sym___asm__] = ACTIONS(7152), + [anon_sym___asm] = ACTIONS(7152), + [anon_sym_DOT] = ACTIONS(7152), + [anon_sym_DOT_STAR] = ACTIONS(7154), + [anon_sym_DASH_GT] = ACTIONS(7154), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7152), + [anon_sym_override] = ACTIONS(7152), + [anon_sym_noexcept] = ACTIONS(7152), + [anon_sym_throw] = ACTIONS(7152), + [anon_sym_requires] = ACTIONS(7152), + [anon_sym_COLON_RBRACK] = ACTIONS(7154), }, [STATE(2674)] = { - [sym_attribute_specifier] = STATE(3081), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7433), - [anon_sym_COMMA] = ACTIONS(7433), - [anon_sym_RPAREN] = ACTIONS(7433), - [anon_sym_LPAREN2] = ACTIONS(7433), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7431), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_PIPE_PIPE] = ACTIONS(7433), - [anon_sym_AMP_AMP] = ACTIONS(7433), - [anon_sym_PIPE] = ACTIONS(7431), - [anon_sym_CARET] = ACTIONS(7431), - [anon_sym_AMP] = ACTIONS(7431), - [anon_sym_EQ_EQ] = ACTIONS(7433), - [anon_sym_BANG_EQ] = ACTIONS(7433), - [anon_sym_GT] = ACTIONS(7431), - [anon_sym_GT_EQ] = ACTIONS(7433), - [anon_sym_LT_EQ] = ACTIONS(7431), - [anon_sym_LT] = ACTIONS(7431), - [anon_sym_LT_LT] = ACTIONS(7431), - [anon_sym_GT_GT] = ACTIONS(7431), - [anon_sym___extension__] = ACTIONS(7433), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7433), - [anon_sym_LBRACK] = ACTIONS(7433), - [anon_sym_EQ] = ACTIONS(7431), - [anon_sym_const] = ACTIONS(7431), - [anon_sym_constexpr] = ACTIONS(7433), - [anon_sym_volatile] = ACTIONS(7433), - [anon_sym_restrict] = ACTIONS(7433), - [anon_sym___restrict__] = ACTIONS(7433), - [anon_sym__Atomic] = ACTIONS(7433), - [anon_sym__Noreturn] = ACTIONS(7433), - [anon_sym_noreturn] = ACTIONS(7433), - [anon_sym__Nonnull] = ACTIONS(7433), - [anon_sym_mutable] = ACTIONS(7433), - [anon_sym_constinit] = ACTIONS(7433), - [anon_sym_consteval] = ACTIONS(7433), - [anon_sym_alignas] = ACTIONS(7433), - [anon_sym__Alignas] = ACTIONS(7433), - [anon_sym_QMARK] = ACTIONS(7433), - [anon_sym_STAR_EQ] = ACTIONS(7433), - [anon_sym_SLASH_EQ] = ACTIONS(7433), - [anon_sym_PERCENT_EQ] = ACTIONS(7433), - [anon_sym_PLUS_EQ] = ACTIONS(7433), - [anon_sym_DASH_EQ] = ACTIONS(7433), - [anon_sym_LT_LT_EQ] = ACTIONS(7433), - [anon_sym_GT_GT_EQ] = ACTIONS(7433), - [anon_sym_AMP_EQ] = ACTIONS(7433), - [anon_sym_CARET_EQ] = ACTIONS(7433), - [anon_sym_PIPE_EQ] = ACTIONS(7433), - [anon_sym_and_eq] = ACTIONS(7433), - [anon_sym_or_eq] = ACTIONS(7433), - [anon_sym_xor_eq] = ACTIONS(7433), - [anon_sym_LT_EQ_GT] = ACTIONS(7433), - [anon_sym_or] = ACTIONS(7431), - [anon_sym_and] = ACTIONS(7431), - [anon_sym_bitor] = ACTIONS(7433), - [anon_sym_xor] = ACTIONS(7431), - [anon_sym_bitand] = ACTIONS(7433), - [anon_sym_not_eq] = ACTIONS(7433), - [anon_sym_DASH_DASH] = ACTIONS(7433), - [anon_sym_PLUS_PLUS] = ACTIONS(7433), - [anon_sym_DOT] = ACTIONS(7431), - [anon_sym_DOT_STAR] = ACTIONS(7433), - [anon_sym_DASH_GT] = ACTIONS(7431), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7433), - [anon_sym_override] = ACTIONS(7433), - [anon_sym_requires] = ACTIONS(7433), - [anon_sym_DASH_GT_STAR] = ACTIONS(7433), + [sym_identifier] = ACTIONS(7144), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_RPAREN] = ACTIONS(7146), + [aux_sym_preproc_if_token2] = ACTIONS(7146), + [aux_sym_preproc_else_token1] = ACTIONS(7146), + [aux_sym_preproc_elif_token1] = ACTIONS(7144), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7146), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7146), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7146), + [anon_sym_GT_GT] = ACTIONS(7146), + [anon_sym_SEMI] = ACTIONS(7146), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym___attribute__] = ACTIONS(7144), + [anon_sym___attribute] = ACTIONS(7144), + [anon_sym_COLON] = ACTIONS(7144), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7146), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7146), + [anon_sym_RBRACE] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7144), + [anon_sym__Alignas] = ACTIONS(7144), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7144), + [anon_sym_and] = ACTIONS(7144), + [anon_sym_bitor] = ACTIONS(7144), + [anon_sym_xor] = ACTIONS(7144), + [anon_sym_bitand] = ACTIONS(7144), + [anon_sym_not_eq] = ACTIONS(7144), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_asm] = ACTIONS(7144), + [anon_sym___asm__] = ACTIONS(7144), + [anon_sym___asm] = ACTIONS(7144), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7146), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7144), + [anon_sym_override] = ACTIONS(7144), + [anon_sym_noexcept] = ACTIONS(7144), + [anon_sym_throw] = ACTIONS(7144), + [anon_sym_requires] = ACTIONS(7144), + [anon_sym_COLON_RBRACK] = ACTIONS(7146), }, [STATE(2675)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7293), - [anon_sym_and] = ACTIONS(7293), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7293), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), - [anon_sym_DASH_GT_STAR] = ACTIONS(7293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7479), + [anon_sym_COMMA] = ACTIONS(7479), + [anon_sym_LPAREN2] = ACTIONS(7479), + [anon_sym_DASH] = ACTIONS(7499), + [anon_sym_PLUS] = ACTIONS(7499), + [anon_sym_STAR] = ACTIONS(7499), + [anon_sym_SLASH] = ACTIONS(7499), + [anon_sym_PERCENT] = ACTIONS(7499), + [anon_sym_PIPE_PIPE] = ACTIONS(7479), + [anon_sym_AMP_AMP] = ACTIONS(7479), + [anon_sym_PIPE] = ACTIONS(7499), + [anon_sym_CARET] = ACTIONS(7499), + [anon_sym_AMP] = ACTIONS(7499), + [anon_sym_EQ_EQ] = ACTIONS(7479), + [anon_sym_BANG_EQ] = ACTIONS(7479), + [anon_sym_GT] = ACTIONS(7499), + [anon_sym_GT_EQ] = ACTIONS(7479), + [anon_sym_LT_EQ] = ACTIONS(7499), + [anon_sym_LT] = ACTIONS(7499), + [anon_sym_LT_LT] = ACTIONS(7499), + [anon_sym_GT_GT] = ACTIONS(7499), + [anon_sym___extension__] = ACTIONS(7479), + [anon_sym___attribute__] = ACTIONS(7479), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_COLON] = ACTIONS(7499), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7479), + [anon_sym_RBRACK] = ACTIONS(7479), + [anon_sym_EQ] = ACTIONS(7499), + [anon_sym_const] = ACTIONS(7499), + [anon_sym_constexpr] = ACTIONS(7479), + [anon_sym_volatile] = ACTIONS(7479), + [anon_sym_restrict] = ACTIONS(7479), + [anon_sym___restrict__] = ACTIONS(7479), + [anon_sym__Atomic] = ACTIONS(7479), + [anon_sym__Noreturn] = ACTIONS(7479), + [anon_sym_noreturn] = ACTIONS(7479), + [anon_sym__Nonnull] = ACTIONS(7479), + [anon_sym_mutable] = ACTIONS(7479), + [anon_sym_constinit] = ACTIONS(7479), + [anon_sym_consteval] = ACTIONS(7479), + [anon_sym_alignas] = ACTIONS(7479), + [anon_sym__Alignas] = ACTIONS(7479), + [anon_sym_QMARK] = ACTIONS(7479), + [anon_sym_STAR_EQ] = ACTIONS(7479), + [anon_sym_SLASH_EQ] = ACTIONS(7479), + [anon_sym_PERCENT_EQ] = ACTIONS(7479), + [anon_sym_PLUS_EQ] = ACTIONS(7479), + [anon_sym_DASH_EQ] = ACTIONS(7479), + [anon_sym_LT_LT_EQ] = ACTIONS(7479), + [anon_sym_GT_GT_EQ] = ACTIONS(7479), + [anon_sym_AMP_EQ] = ACTIONS(7479), + [anon_sym_CARET_EQ] = ACTIONS(7479), + [anon_sym_PIPE_EQ] = ACTIONS(7479), + [anon_sym_and_eq] = ACTIONS(7479), + [anon_sym_or_eq] = ACTIONS(7479), + [anon_sym_xor_eq] = ACTIONS(7479), + [anon_sym_LT_EQ_GT] = ACTIONS(7479), + [anon_sym_or] = ACTIONS(7499), + [anon_sym_and] = ACTIONS(7499), + [anon_sym_bitor] = ACTIONS(7479), + [anon_sym_xor] = ACTIONS(7499), + [anon_sym_bitand] = ACTIONS(7479), + [anon_sym_not_eq] = ACTIONS(7479), + [anon_sym_DASH_DASH] = ACTIONS(7479), + [anon_sym_PLUS_PLUS] = ACTIONS(7479), + [anon_sym_DOT] = ACTIONS(7499), + [anon_sym_DOT_STAR] = ACTIONS(7479), + [anon_sym_DASH_GT] = ACTIONS(7479), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7479), + [anon_sym_override] = ACTIONS(7479), + [anon_sym_requires] = ACTIONS(7479), }, [STATE(2676)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7293), - [anon_sym_and] = ACTIONS(7293), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7293), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), - [anon_sym_DASH_GT_STAR] = ACTIONS(7293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7133), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7133), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7133), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7133), + [anon_sym_GT_GT] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7135), + [anon_sym___attribute__] = ACTIONS(7135), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_COLON] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7135), + [anon_sym_volatile] = ACTIONS(7135), + [anon_sym_restrict] = ACTIONS(7135), + [anon_sym___restrict__] = ACTIONS(7135), + [anon_sym__Atomic] = ACTIONS(7135), + [anon_sym__Noreturn] = ACTIONS(7135), + [anon_sym_noreturn] = ACTIONS(7135), + [anon_sym__Nonnull] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7135), + [anon_sym_constinit] = ACTIONS(7135), + [anon_sym_consteval] = ACTIONS(7135), + [anon_sym_alignas] = ACTIONS(7135), + [anon_sym__Alignas] = ACTIONS(7135), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7133), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_and_eq] = ACTIONS(7135), + [anon_sym_or_eq] = ACTIONS(7135), + [anon_sym_xor_eq] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7135), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7135), + [anon_sym_not_eq] = ACTIONS(7135), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7135), + [anon_sym_override] = ACTIONS(7135), + [anon_sym_GT2] = ACTIONS(7135), + [anon_sym_requires] = ACTIONS(7135), }, [STATE(2677)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym__function_exception_specification] = STATE(3353), - [sym__function_attributes_end] = STATE(4572), - [sym__function_postfix] = STATE(5681), - [sym_trailing_return_type] = STATE(4639), - [sym_noexcept] = STATE(3353), - [sym_throw_specifier] = STATE(3353), - [sym_requires_clause] = STATE(5681), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7966), - [anon_sym_and] = ACTIONS(7966), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7966), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8595), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6777), - [anon_sym_override] = ACTIONS(6777), - [anon_sym_noexcept] = ACTIONS(6779), - [anon_sym_throw] = ACTIONS(6781), - [anon_sym_requires] = ACTIONS(6783), - [anon_sym_DASH_GT_STAR] = ACTIONS(7966), + [sym_identifier] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [aux_sym_preproc_if_token2] = ACTIONS(3116), + [aux_sym_preproc_else_token1] = ACTIONS(3116), + [aux_sym_preproc_elif_token1] = ACTIONS(3126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3116), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON] = ACTIONS(3126), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3116), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3126), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3126), + [anon_sym_not_eq] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_asm] = ACTIONS(3126), + [anon_sym___asm__] = ACTIONS(3126), + [anon_sym___asm] = ACTIONS(3126), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_noexcept] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [anon_sym_COLON_RBRACK] = ACTIONS(3116), }, [STATE(2678)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), - [anon_sym_COMMA] = ACTIONS(7457), - [anon_sym_LPAREN2] = ACTIONS(7457), - [anon_sym_DASH] = ACTIONS(7459), - [anon_sym_PLUS] = ACTIONS(7459), - [anon_sym_STAR] = ACTIONS(7459), - [anon_sym_SLASH] = ACTIONS(7459), - [anon_sym_PERCENT] = ACTIONS(7459), - [anon_sym_PIPE_PIPE] = ACTIONS(7457), - [anon_sym_AMP_AMP] = ACTIONS(7457), - [anon_sym_PIPE] = ACTIONS(7459), - [anon_sym_CARET] = ACTIONS(7459), - [anon_sym_AMP] = ACTIONS(7459), - [anon_sym_EQ_EQ] = ACTIONS(7457), - [anon_sym_BANG_EQ] = ACTIONS(7457), - [anon_sym_GT] = ACTIONS(7459), - [anon_sym_GT_EQ] = ACTIONS(7459), - [anon_sym_LT_EQ] = ACTIONS(7459), - [anon_sym_LT] = ACTIONS(7459), - [anon_sym_LT_LT] = ACTIONS(7459), - [anon_sym_GT_GT] = ACTIONS(7459), - [anon_sym___extension__] = ACTIONS(7457), - [anon_sym___attribute__] = ACTIONS(7457), - [anon_sym___attribute] = ACTIONS(7459), - [anon_sym_COLON] = ACTIONS(7459), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7457), - [anon_sym_EQ] = ACTIONS(7459), - [anon_sym_const] = ACTIONS(7459), - [anon_sym_constexpr] = ACTIONS(7457), - [anon_sym_volatile] = ACTIONS(7457), - [anon_sym_restrict] = ACTIONS(7457), - [anon_sym___restrict__] = ACTIONS(7457), - [anon_sym__Atomic] = ACTIONS(7457), - [anon_sym__Noreturn] = ACTIONS(7457), - [anon_sym_noreturn] = ACTIONS(7457), - [anon_sym__Nonnull] = ACTIONS(7457), - [anon_sym_mutable] = ACTIONS(7457), - [anon_sym_constinit] = ACTIONS(7457), - [anon_sym_consteval] = ACTIONS(7457), - [anon_sym_alignas] = ACTIONS(7457), - [anon_sym__Alignas] = ACTIONS(7457), - [anon_sym_QMARK] = ACTIONS(7457), - [anon_sym_STAR_EQ] = ACTIONS(7457), - [anon_sym_SLASH_EQ] = ACTIONS(7457), - [anon_sym_PERCENT_EQ] = ACTIONS(7457), - [anon_sym_PLUS_EQ] = ACTIONS(7457), - [anon_sym_DASH_EQ] = ACTIONS(7457), - [anon_sym_LT_LT_EQ] = ACTIONS(7457), - [anon_sym_GT_GT_EQ] = ACTIONS(7459), - [anon_sym_AMP_EQ] = ACTIONS(7457), - [anon_sym_CARET_EQ] = ACTIONS(7457), - [anon_sym_PIPE_EQ] = ACTIONS(7457), - [anon_sym_and_eq] = ACTIONS(7457), - [anon_sym_or_eq] = ACTIONS(7457), - [anon_sym_xor_eq] = ACTIONS(7457), - [anon_sym_LT_EQ_GT] = ACTIONS(7457), - [anon_sym_or] = ACTIONS(7459), - [anon_sym_and] = ACTIONS(7459), - [anon_sym_bitor] = ACTIONS(7457), - [anon_sym_xor] = ACTIONS(7459), - [anon_sym_bitand] = ACTIONS(7457), - [anon_sym_not_eq] = ACTIONS(7457), - [anon_sym_DASH_DASH] = ACTIONS(7457), - [anon_sym_PLUS_PLUS] = ACTIONS(7457), - [anon_sym_DOT] = ACTIONS(7459), - [anon_sym_DOT_STAR] = ACTIONS(7457), - [anon_sym_DASH_GT] = ACTIONS(7457), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7457), - [anon_sym_override] = ACTIONS(7457), - [anon_sym_GT2] = ACTIONS(7457), - [anon_sym_requires] = ACTIONS(7457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7329), + [anon_sym_and] = ACTIONS(7329), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7329), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), + [anon_sym_DASH_GT_STAR] = ACTIONS(7329), }, [STATE(2679)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [aux_sym_preproc_else_token1] = ACTIONS(3163), - [aux_sym_preproc_elif_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_friend] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7329), + [anon_sym_and] = ACTIONS(7329), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7329), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), + [anon_sym_DASH_GT_STAR] = ACTIONS(7329), }, [STATE(2680)] = { - [sym_attribute_specifier] = STATE(3189), - [sym_enumerator_list] = STATE(2759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), - [anon_sym_COMMA] = ACTIONS(7383), - [anon_sym_LPAREN2] = ACTIONS(7383), - [anon_sym_DASH] = ACTIONS(7381), - [anon_sym_PLUS] = ACTIONS(7381), - [anon_sym_STAR] = ACTIONS(7381), - [anon_sym_SLASH] = ACTIONS(7381), - [anon_sym_PERCENT] = ACTIONS(7381), - [anon_sym_PIPE_PIPE] = ACTIONS(7383), - [anon_sym_AMP_AMP] = ACTIONS(7383), - [anon_sym_PIPE] = ACTIONS(7381), - [anon_sym_CARET] = ACTIONS(7381), - [anon_sym_AMP] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7383), - [anon_sym_BANG_EQ] = ACTIONS(7383), - [anon_sym_GT] = ACTIONS(7381), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_LT_EQ] = ACTIONS(7381), - [anon_sym_LT] = ACTIONS(7381), - [anon_sym_LT_LT] = ACTIONS(7381), - [anon_sym_GT_GT] = ACTIONS(7381), - [anon_sym___extension__] = ACTIONS(7383), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(8476), - [anon_sym_LBRACK] = ACTIONS(7383), - [anon_sym_RBRACK] = ACTIONS(7383), - [anon_sym_EQ] = ACTIONS(7381), - [anon_sym_const] = ACTIONS(7381), - [anon_sym_constexpr] = ACTIONS(7383), - [anon_sym_volatile] = ACTIONS(7383), - [anon_sym_restrict] = ACTIONS(7383), - [anon_sym___restrict__] = ACTIONS(7383), - [anon_sym__Atomic] = ACTIONS(7383), - [anon_sym__Noreturn] = ACTIONS(7383), - [anon_sym_noreturn] = ACTIONS(7383), - [anon_sym__Nonnull] = ACTIONS(7383), - [anon_sym_mutable] = ACTIONS(7383), - [anon_sym_constinit] = ACTIONS(7383), - [anon_sym_consteval] = ACTIONS(7383), - [anon_sym_alignas] = ACTIONS(7383), - [anon_sym__Alignas] = ACTIONS(7383), - [anon_sym_QMARK] = ACTIONS(7383), - [anon_sym_STAR_EQ] = ACTIONS(7383), - [anon_sym_SLASH_EQ] = ACTIONS(7383), - [anon_sym_PERCENT_EQ] = ACTIONS(7383), - [anon_sym_PLUS_EQ] = ACTIONS(7383), - [anon_sym_DASH_EQ] = ACTIONS(7383), - [anon_sym_LT_LT_EQ] = ACTIONS(7383), - [anon_sym_GT_GT_EQ] = ACTIONS(7383), - [anon_sym_AMP_EQ] = ACTIONS(7383), - [anon_sym_CARET_EQ] = ACTIONS(7383), - [anon_sym_PIPE_EQ] = ACTIONS(7383), - [anon_sym_and_eq] = ACTIONS(7383), - [anon_sym_or_eq] = ACTIONS(7383), - [anon_sym_xor_eq] = ACTIONS(7383), - [anon_sym_LT_EQ_GT] = ACTIONS(7383), - [anon_sym_or] = ACTIONS(7381), - [anon_sym_and] = ACTIONS(7381), - [anon_sym_bitor] = ACTIONS(7383), - [anon_sym_xor] = ACTIONS(7381), - [anon_sym_bitand] = ACTIONS(7383), - [anon_sym_not_eq] = ACTIONS(7383), - [anon_sym_DASH_DASH] = ACTIONS(7383), - [anon_sym_PLUS_PLUS] = ACTIONS(7383), - [anon_sym_DOT] = ACTIONS(7381), - [anon_sym_DOT_STAR] = ACTIONS(7383), - [anon_sym_DASH_GT] = ACTIONS(7383), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7383), - [anon_sym_override] = ACTIONS(7383), - [anon_sym_requires] = ACTIONS(7383), + [sym_identifier] = ACTIONS(7113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_RPAREN] = ACTIONS(7115), + [aux_sym_preproc_if_token2] = ACTIONS(7115), + [aux_sym_preproc_else_token1] = ACTIONS(7115), + [aux_sym_preproc_elif_token1] = ACTIONS(7113), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7115), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_DASH] = ACTIONS(7113), + [anon_sym_PLUS] = ACTIONS(7113), + [anon_sym_STAR] = ACTIONS(7115), + [anon_sym_SLASH] = ACTIONS(7113), + [anon_sym_PERCENT] = ACTIONS(7115), + [anon_sym_PIPE_PIPE] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_PIPE] = ACTIONS(7113), + [anon_sym_CARET] = ACTIONS(7115), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_EQ_EQ] = ACTIONS(7115), + [anon_sym_BANG_EQ] = ACTIONS(7115), + [anon_sym_GT] = ACTIONS(7113), + [anon_sym_GT_EQ] = ACTIONS(7115), + [anon_sym_LT_EQ] = ACTIONS(7113), + [anon_sym_LT] = ACTIONS(7113), + [anon_sym_LT_LT] = ACTIONS(7115), + [anon_sym_GT_GT] = ACTIONS(7115), + [anon_sym_SEMI] = ACTIONS(7115), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym___attribute__] = ACTIONS(7113), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_COLON] = ACTIONS(7113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7115), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7115), + [anon_sym_RBRACE] = ACTIONS(7115), + [anon_sym_LBRACK] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [anon_sym_QMARK] = ACTIONS(7115), + [anon_sym_LT_EQ_GT] = ACTIONS(7115), + [anon_sym_or] = ACTIONS(7113), + [anon_sym_and] = ACTIONS(7113), + [anon_sym_bitor] = ACTIONS(7113), + [anon_sym_xor] = ACTIONS(7113), + [anon_sym_bitand] = ACTIONS(7113), + [anon_sym_not_eq] = ACTIONS(7113), + [anon_sym_DASH_DASH] = ACTIONS(7115), + [anon_sym_PLUS_PLUS] = ACTIONS(7115), + [anon_sym_asm] = ACTIONS(7113), + [anon_sym___asm__] = ACTIONS(7113), + [anon_sym___asm] = ACTIONS(7113), + [anon_sym_DOT] = ACTIONS(7113), + [anon_sym_DOT_STAR] = ACTIONS(7115), + [anon_sym_DASH_GT] = ACTIONS(7115), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7113), + [anon_sym_override] = ACTIONS(7113), + [anon_sym_noexcept] = ACTIONS(7113), + [anon_sym_throw] = ACTIONS(7113), + [anon_sym_requires] = ACTIONS(7113), + [anon_sym_COLON_RBRACK] = ACTIONS(7115), }, [STATE(2681)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), - [anon_sym_COMMA] = ACTIONS(7106), - [anon_sym_LPAREN2] = ACTIONS(7106), - [anon_sym_DASH] = ACTIONS(7104), - [anon_sym_PLUS] = ACTIONS(7104), - [anon_sym_STAR] = ACTIONS(7104), - [anon_sym_SLASH] = ACTIONS(7104), - [anon_sym_PERCENT] = ACTIONS(7104), - [anon_sym_PIPE_PIPE] = ACTIONS(7106), - [anon_sym_AMP_AMP] = ACTIONS(7106), - [anon_sym_PIPE] = ACTIONS(7104), - [anon_sym_CARET] = ACTIONS(7104), - [anon_sym_AMP] = ACTIONS(7104), - [anon_sym_EQ_EQ] = ACTIONS(7106), - [anon_sym_BANG_EQ] = ACTIONS(7106), - [anon_sym_GT] = ACTIONS(7104), - [anon_sym_GT_EQ] = ACTIONS(7106), - [anon_sym_LT_EQ] = ACTIONS(7104), - [anon_sym_LT] = ACTIONS(7104), - [anon_sym_LT_LT] = ACTIONS(7104), - [anon_sym_GT_GT] = ACTIONS(7104), - [anon_sym___extension__] = ACTIONS(7106), - [anon_sym___attribute__] = ACTIONS(7106), - [anon_sym___attribute] = ACTIONS(7104), - [anon_sym_COLON] = ACTIONS(7104), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [anon_sym_LBRACE] = ACTIONS(7106), - [anon_sym_LBRACK] = ACTIONS(7106), - [anon_sym_RBRACK] = ACTIONS(7106), - [anon_sym_EQ] = ACTIONS(7104), - [anon_sym_const] = ACTIONS(7104), - [anon_sym_constexpr] = ACTIONS(7106), - [anon_sym_volatile] = ACTIONS(7106), - [anon_sym_restrict] = ACTIONS(7106), - [anon_sym___restrict__] = ACTIONS(7106), - [anon_sym__Atomic] = ACTIONS(7106), - [anon_sym__Noreturn] = ACTIONS(7106), - [anon_sym_noreturn] = ACTIONS(7106), - [anon_sym__Nonnull] = ACTIONS(7106), - [anon_sym_mutable] = ACTIONS(7106), - [anon_sym_constinit] = ACTIONS(7106), - [anon_sym_consteval] = ACTIONS(7106), - [anon_sym_alignas] = ACTIONS(7106), - [anon_sym__Alignas] = ACTIONS(7106), - [anon_sym_QMARK] = ACTIONS(7106), - [anon_sym_STAR_EQ] = ACTIONS(7106), - [anon_sym_SLASH_EQ] = ACTIONS(7106), - [anon_sym_PERCENT_EQ] = ACTIONS(7106), - [anon_sym_PLUS_EQ] = ACTIONS(7106), - [anon_sym_DASH_EQ] = ACTIONS(7106), - [anon_sym_LT_LT_EQ] = ACTIONS(7106), - [anon_sym_GT_GT_EQ] = ACTIONS(7106), - [anon_sym_AMP_EQ] = ACTIONS(7106), - [anon_sym_CARET_EQ] = ACTIONS(7106), - [anon_sym_PIPE_EQ] = ACTIONS(7106), - [anon_sym_and_eq] = ACTIONS(7106), - [anon_sym_or_eq] = ACTIONS(7106), - [anon_sym_xor_eq] = ACTIONS(7106), - [anon_sym_LT_EQ_GT] = ACTIONS(7106), - [anon_sym_or] = ACTIONS(7104), - [anon_sym_and] = ACTIONS(7104), - [anon_sym_bitor] = ACTIONS(7106), - [anon_sym_xor] = ACTIONS(7104), - [anon_sym_bitand] = ACTIONS(7106), - [anon_sym_not_eq] = ACTIONS(7106), - [anon_sym_DASH_DASH] = ACTIONS(7106), - [anon_sym_PLUS_PLUS] = ACTIONS(7106), - [anon_sym_DOT] = ACTIONS(7104), - [anon_sym_DOT_STAR] = ACTIONS(7106), - [anon_sym_DASH_GT] = ACTIONS(7106), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7106), - [anon_sym_override] = ACTIONS(7106), - [anon_sym_requires] = ACTIONS(7106), + [sym_ms_unaligned_ptr_modifier] = STATE(4294), + [sym_ms_pointer_modifier] = STATE(4009), + [sym__abstract_declarator] = STATE(6454), + [sym_abstract_parenthesized_declarator] = STATE(6601), + [sym_abstract_pointer_declarator] = STATE(6601), + [sym_abstract_function_declarator] = STATE(6601), + [sym_abstract_array_declarator] = STATE(6601), + [sym_type_qualifier] = STATE(3706), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2276), + [sym_abstract_reference_declarator] = STATE(6601), + [sym__function_declarator_seq] = STATE(6602), + [aux_sym__type_definition_type_repeat1] = STATE(3706), + [aux_sym_pointer_declarator_repeat1] = STATE(4009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8599), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8601), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8605), + [sym_ms_restrict_modifier] = ACTIONS(8607), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8609), + [sym_ms_signed_ptr_modifier] = ACTIONS(8609), + [anon_sym__unaligned] = ACTIONS(8611), + [anon_sym___unaligned] = ACTIONS(8611), + [anon_sym_LBRACK] = ACTIONS(8613), + [anon_sym_RBRACK] = ACTIONS(6843), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8605), + [anon_sym_volatile] = ACTIONS(8605), + [anon_sym_restrict] = ACTIONS(8605), + [anon_sym___restrict__] = ACTIONS(8605), + [anon_sym__Atomic] = ACTIONS(8605), + [anon_sym__Noreturn] = ACTIONS(8605), + [anon_sym_noreturn] = ACTIONS(8605), + [anon_sym__Nonnull] = ACTIONS(8605), + [anon_sym_mutable] = ACTIONS(8605), + [anon_sym_constinit] = ACTIONS(8605), + [anon_sym_consteval] = ACTIONS(8605), + [anon_sym_alignas] = ACTIONS(8615), + [anon_sym__Alignas] = ACTIONS(8615), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), }, [STATE(2682)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), - [anon_sym_COMMA] = ACTIONS(7303), - [anon_sym_RPAREN] = ACTIONS(7303), - [anon_sym_LPAREN2] = ACTIONS(7303), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_STAR] = ACTIONS(7301), - [anon_sym_SLASH] = ACTIONS(7301), - [anon_sym_PERCENT] = ACTIONS(7301), - [anon_sym_PIPE_PIPE] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7303), - [anon_sym_PIPE] = ACTIONS(7301), - [anon_sym_CARET] = ACTIONS(7301), - [anon_sym_AMP] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7303), - [anon_sym_BANG_EQ] = ACTIONS(7303), - [anon_sym_GT] = ACTIONS(7301), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_LT_EQ] = ACTIONS(7301), - [anon_sym_LT] = ACTIONS(7301), - [anon_sym_LT_LT] = ACTIONS(7301), - [anon_sym_GT_GT] = ACTIONS(7301), - [anon_sym___extension__] = ACTIONS(7303), - [anon_sym___attribute__] = ACTIONS(7303), - [anon_sym___attribute] = ACTIONS(7301), - [anon_sym_COLON] = ACTIONS(7301), - [anon_sym_COLON_COLON] = ACTIONS(7303), - [anon_sym_LBRACE] = ACTIONS(7303), - [anon_sym_LBRACK] = ACTIONS(7303), - [anon_sym_EQ] = ACTIONS(7301), - [anon_sym_const] = ACTIONS(7301), - [anon_sym_constexpr] = ACTIONS(7303), - [anon_sym_volatile] = ACTIONS(7303), - [anon_sym_restrict] = ACTIONS(7303), - [anon_sym___restrict__] = ACTIONS(7303), - [anon_sym__Atomic] = ACTIONS(7303), - [anon_sym__Noreturn] = ACTIONS(7303), - [anon_sym_noreturn] = ACTIONS(7303), - [anon_sym__Nonnull] = ACTIONS(7303), - [anon_sym_mutable] = ACTIONS(7303), - [anon_sym_constinit] = ACTIONS(7303), - [anon_sym_consteval] = ACTIONS(7303), - [anon_sym_alignas] = ACTIONS(7303), - [anon_sym__Alignas] = ACTIONS(7303), - [anon_sym_QMARK] = ACTIONS(7303), - [anon_sym_STAR_EQ] = ACTIONS(7303), - [anon_sym_SLASH_EQ] = ACTIONS(7303), - [anon_sym_PERCENT_EQ] = ACTIONS(7303), - [anon_sym_PLUS_EQ] = ACTIONS(7303), - [anon_sym_DASH_EQ] = ACTIONS(7303), - [anon_sym_LT_LT_EQ] = ACTIONS(7303), - [anon_sym_GT_GT_EQ] = ACTIONS(7303), - [anon_sym_AMP_EQ] = ACTIONS(7303), - [anon_sym_CARET_EQ] = ACTIONS(7303), - [anon_sym_PIPE_EQ] = ACTIONS(7303), - [anon_sym_LT_EQ_GT] = ACTIONS(7303), - [anon_sym_or] = ACTIONS(7303), - [anon_sym_and] = ACTIONS(7303), - [anon_sym_bitor] = ACTIONS(7303), - [anon_sym_xor] = ACTIONS(7303), - [anon_sym_bitand] = ACTIONS(7303), - [anon_sym_not_eq] = ACTIONS(7303), - [anon_sym_DASH_DASH] = ACTIONS(7303), - [anon_sym_PLUS_PLUS] = ACTIONS(7303), - [anon_sym_DOT] = ACTIONS(7301), - [anon_sym_DOT_STAR] = ACTIONS(7303), - [anon_sym_DASH_GT] = ACTIONS(7301), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7303), - [anon_sym_decltype] = ACTIONS(7303), - [anon_sym_final] = ACTIONS(7303), - [anon_sym_override] = ACTIONS(7303), - [anon_sym_requires] = ACTIONS(7303), - [anon_sym_DASH_GT_STAR] = ACTIONS(7303), + [aux_sym_sized_type_specifier_repeat1] = STATE(2469), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_RPAREN] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7402), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7402), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7402), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7402), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8308), + [anon_sym_unsigned] = ACTIONS(8308), + [anon_sym_long] = ACTIONS(8308), + [anon_sym_short] = ACTIONS(8308), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_EQ] = ACTIONS(7402), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_STAR_EQ] = ACTIONS(7399), + [anon_sym_SLASH_EQ] = ACTIONS(7399), + [anon_sym_PERCENT_EQ] = ACTIONS(7399), + [anon_sym_PLUS_EQ] = ACTIONS(7399), + [anon_sym_DASH_EQ] = ACTIONS(7399), + [anon_sym_LT_LT_EQ] = ACTIONS(7399), + [anon_sym_GT_GT_EQ] = ACTIONS(7399), + [anon_sym_AMP_EQ] = ACTIONS(7399), + [anon_sym_CARET_EQ] = ACTIONS(7399), + [anon_sym_PIPE_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7402), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7399), }, [STATE(2683)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym___extension__] = ACTIONS(7289), - [sym_ms_restrict_modifier] = ACTIONS(7287), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7289), - [sym_ms_signed_ptr_modifier] = ACTIONS(7289), - [anon_sym__unaligned] = ACTIONS(7289), - [anon_sym___unaligned] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_RBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7289), - [anon_sym_volatile] = ACTIONS(7289), - [anon_sym_restrict] = ACTIONS(7289), - [anon_sym___restrict__] = ACTIONS(7289), - [anon_sym__Atomic] = ACTIONS(7289), - [anon_sym__Noreturn] = ACTIONS(7289), - [anon_sym_noreturn] = ACTIONS(7289), - [anon_sym__Nonnull] = ACTIONS(7289), - [anon_sym_mutable] = ACTIONS(7289), - [anon_sym_constinit] = ACTIONS(7289), - [anon_sym_consteval] = ACTIONS(7289), - [anon_sym_alignas] = ACTIONS(7289), - [anon_sym__Alignas] = ACTIONS(7289), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7289), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_and_eq] = ACTIONS(7289), - [anon_sym_or_eq] = ACTIONS(7289), - [anon_sym_xor_eq] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7289), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7289), - [anon_sym_not_eq] = ACTIONS(7289), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7289), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7289), - [anon_sym_override] = ACTIONS(7289), - [anon_sym_requires] = ACTIONS(7289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7244), + [anon_sym_COMMA] = ACTIONS(7244), + [anon_sym_LPAREN2] = ACTIONS(7244), + [anon_sym_DASH] = ACTIONS(7242), + [anon_sym_PLUS] = ACTIONS(7242), + [anon_sym_STAR] = ACTIONS(7242), + [anon_sym_SLASH] = ACTIONS(7242), + [anon_sym_PERCENT] = ACTIONS(7242), + [anon_sym_PIPE_PIPE] = ACTIONS(7244), + [anon_sym_AMP_AMP] = ACTIONS(7244), + [anon_sym_PIPE] = ACTIONS(7242), + [anon_sym_CARET] = ACTIONS(7242), + [anon_sym_AMP] = ACTIONS(7242), + [anon_sym_EQ_EQ] = ACTIONS(7244), + [anon_sym_BANG_EQ] = ACTIONS(7244), + [anon_sym_GT] = ACTIONS(7242), + [anon_sym_GT_EQ] = ACTIONS(7242), + [anon_sym_LT_EQ] = ACTIONS(7242), + [anon_sym_LT] = ACTIONS(7242), + [anon_sym_LT_LT] = ACTIONS(7242), + [anon_sym_GT_GT] = ACTIONS(7242), + [anon_sym___extension__] = ACTIONS(7244), + [sym_ms_restrict_modifier] = ACTIONS(7242), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7244), + [sym_ms_signed_ptr_modifier] = ACTIONS(7244), + [anon_sym__unaligned] = ACTIONS(7244), + [anon_sym___unaligned] = ACTIONS(7244), + [anon_sym_LBRACK] = ACTIONS(7244), + [anon_sym_EQ] = ACTIONS(7242), + [anon_sym_const] = ACTIONS(7242), + [anon_sym_constexpr] = ACTIONS(7244), + [anon_sym_volatile] = ACTIONS(7244), + [anon_sym_restrict] = ACTIONS(7244), + [anon_sym___restrict__] = ACTIONS(7244), + [anon_sym__Atomic] = ACTIONS(7244), + [anon_sym__Noreturn] = ACTIONS(7244), + [anon_sym_noreturn] = ACTIONS(7244), + [anon_sym__Nonnull] = ACTIONS(7244), + [anon_sym_mutable] = ACTIONS(7244), + [anon_sym_constinit] = ACTIONS(7244), + [anon_sym_consteval] = ACTIONS(7244), + [anon_sym_alignas] = ACTIONS(7244), + [anon_sym__Alignas] = ACTIONS(7244), + [anon_sym_QMARK] = ACTIONS(7244), + [anon_sym_STAR_EQ] = ACTIONS(7244), + [anon_sym_SLASH_EQ] = ACTIONS(7244), + [anon_sym_PERCENT_EQ] = ACTIONS(7244), + [anon_sym_PLUS_EQ] = ACTIONS(7244), + [anon_sym_DASH_EQ] = ACTIONS(7244), + [anon_sym_LT_LT_EQ] = ACTIONS(7244), + [anon_sym_GT_GT_EQ] = ACTIONS(7242), + [anon_sym_AMP_EQ] = ACTIONS(7244), + [anon_sym_CARET_EQ] = ACTIONS(7244), + [anon_sym_PIPE_EQ] = ACTIONS(7244), + [anon_sym_and_eq] = ACTIONS(7244), + [anon_sym_or_eq] = ACTIONS(7244), + [anon_sym_xor_eq] = ACTIONS(7244), + [anon_sym_LT_EQ_GT] = ACTIONS(7244), + [anon_sym_or] = ACTIONS(7242), + [anon_sym_and] = ACTIONS(7242), + [anon_sym_bitor] = ACTIONS(7244), + [anon_sym_xor] = ACTIONS(7242), + [anon_sym_bitand] = ACTIONS(7244), + [anon_sym_not_eq] = ACTIONS(7244), + [anon_sym_DASH_DASH] = ACTIONS(7244), + [anon_sym_PLUS_PLUS] = ACTIONS(7244), + [anon_sym_DOT] = ACTIONS(7242), + [anon_sym_DOT_STAR] = ACTIONS(7244), + [anon_sym_DASH_GT] = ACTIONS(7244), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7244), + [anon_sym_override] = ACTIONS(7244), + [anon_sym_GT2] = ACTIONS(7244), + [anon_sym_requires] = ACTIONS(7244), }, [STATE(2684)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6500), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_ms_unaligned_ptr_modifier] = STATE(4311), + [sym_ms_pointer_modifier] = STATE(2662), + [sym__abstract_declarator] = STATE(6442), + [sym_abstract_parenthesized_declarator] = STATE(6694), + [sym_abstract_pointer_declarator] = STATE(6694), + [sym_abstract_function_declarator] = STATE(6694), + [sym_abstract_array_declarator] = STATE(6694), + [sym_type_qualifier] = STATE(3733), + [sym_alignas_qualifier] = STATE(3830), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(6694), + [sym__function_declarator_seq] = STATE(6695), + [aux_sym__type_definition_type_repeat1] = STATE(3733), + [aux_sym_pointer_declarator_repeat1] = STATE(2662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(8568), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(8570), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(8572), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(8574), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(8576), + [sym_ms_restrict_modifier] = ACTIONS(8578), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8580), + [sym_ms_signed_ptr_modifier] = ACTIONS(8580), + [anon_sym__unaligned] = ACTIONS(8582), + [anon_sym___unaligned] = ACTIONS(8582), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8576), + [anon_sym_volatile] = ACTIONS(8576), + [anon_sym_restrict] = ACTIONS(8576), + [anon_sym___restrict__] = ACTIONS(8576), + [anon_sym__Atomic] = ACTIONS(8576), + [anon_sym__Noreturn] = ACTIONS(8576), + [anon_sym_noreturn] = ACTIONS(8576), + [anon_sym__Nonnull] = ACTIONS(8576), + [anon_sym_mutable] = ACTIONS(8576), + [anon_sym_constinit] = ACTIONS(8576), + [anon_sym_consteval] = ACTIONS(8576), + [anon_sym_alignas] = ACTIONS(8588), + [anon_sym__Alignas] = ACTIONS(8588), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6815), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_GT2] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), }, [STATE(2685)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [aux_sym_preproc_else_token1] = ACTIONS(3163), - [aux_sym_preproc_elif_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(8598), - [anon_sym___attribute] = ACTIONS(8598), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_friend] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [sym_decltype_auto] = STATE(2968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8524), + [anon_sym_decltype] = ACTIONS(6935), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(2686)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7199), - [anon_sym_GT_GT] = ACTIONS(7199), - [anon_sym___extension__] = ACTIONS(7201), - [sym_ms_restrict_modifier] = ACTIONS(7199), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7201), - [sym_ms_signed_ptr_modifier] = ACTIONS(7201), - [anon_sym__unaligned] = ACTIONS(7201), - [anon_sym___unaligned] = ACTIONS(7201), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_RBRACK] = ACTIONS(7201), - [anon_sym_EQ] = ACTIONS(7199), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7201), - [anon_sym_volatile] = ACTIONS(7201), - [anon_sym_restrict] = ACTIONS(7201), - [anon_sym___restrict__] = ACTIONS(7201), - [anon_sym__Atomic] = ACTIONS(7201), - [anon_sym__Noreturn] = ACTIONS(7201), - [anon_sym_noreturn] = ACTIONS(7201), - [anon_sym__Nonnull] = ACTIONS(7201), - [anon_sym_mutable] = ACTIONS(7201), - [anon_sym_constinit] = ACTIONS(7201), - [anon_sym_consteval] = ACTIONS(7201), - [anon_sym_alignas] = ACTIONS(7201), - [anon_sym__Alignas] = ACTIONS(7201), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_STAR_EQ] = ACTIONS(7201), - [anon_sym_SLASH_EQ] = ACTIONS(7201), - [anon_sym_PERCENT_EQ] = ACTIONS(7201), - [anon_sym_PLUS_EQ] = ACTIONS(7201), - [anon_sym_DASH_EQ] = ACTIONS(7201), - [anon_sym_LT_LT_EQ] = ACTIONS(7201), - [anon_sym_GT_GT_EQ] = ACTIONS(7201), - [anon_sym_AMP_EQ] = ACTIONS(7201), - [anon_sym_CARET_EQ] = ACTIONS(7201), - [anon_sym_PIPE_EQ] = ACTIONS(7201), - [anon_sym_and_eq] = ACTIONS(7201), - [anon_sym_or_eq] = ACTIONS(7201), - [anon_sym_xor_eq] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7199), - [anon_sym_and] = ACTIONS(7199), - [anon_sym_bitor] = ACTIONS(7201), - [anon_sym_xor] = ACTIONS(7199), - [anon_sym_bitand] = ACTIONS(7201), - [anon_sym_not_eq] = ACTIONS(7201), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7201), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7201), - [anon_sym_override] = ACTIONS(7201), - [anon_sym_requires] = ACTIONS(7201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7333), + [anon_sym_COMMA] = ACTIONS(7333), + [anon_sym_RPAREN] = ACTIONS(7333), + [anon_sym_LPAREN2] = ACTIONS(7333), + [anon_sym_DASH] = ACTIONS(7331), + [anon_sym_PLUS] = ACTIONS(7331), + [anon_sym_STAR] = ACTIONS(7331), + [anon_sym_SLASH] = ACTIONS(7331), + [anon_sym_PERCENT] = ACTIONS(7331), + [anon_sym_PIPE_PIPE] = ACTIONS(7333), + [anon_sym_AMP_AMP] = ACTIONS(7333), + [anon_sym_PIPE] = ACTIONS(7331), + [anon_sym_CARET] = ACTIONS(7331), + [anon_sym_AMP] = ACTIONS(7331), + [anon_sym_EQ_EQ] = ACTIONS(7333), + [anon_sym_BANG_EQ] = ACTIONS(7333), + [anon_sym_GT] = ACTIONS(7331), + [anon_sym_GT_EQ] = ACTIONS(7333), + [anon_sym_LT_EQ] = ACTIONS(7331), + [anon_sym_LT] = ACTIONS(7331), + [anon_sym_LT_LT] = ACTIONS(7331), + [anon_sym_GT_GT] = ACTIONS(7331), + [anon_sym___extension__] = ACTIONS(7333), + [anon_sym___attribute__] = ACTIONS(7333), + [anon_sym___attribute] = ACTIONS(7331), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_COLON_COLON] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7333), + [anon_sym_LBRACK] = ACTIONS(7333), + [anon_sym_EQ] = ACTIONS(7331), + [anon_sym_const] = ACTIONS(7331), + [anon_sym_constexpr] = ACTIONS(7333), + [anon_sym_volatile] = ACTIONS(7333), + [anon_sym_restrict] = ACTIONS(7333), + [anon_sym___restrict__] = ACTIONS(7333), + [anon_sym__Atomic] = ACTIONS(7333), + [anon_sym__Noreturn] = ACTIONS(7333), + [anon_sym_noreturn] = ACTIONS(7333), + [anon_sym__Nonnull] = ACTIONS(7333), + [anon_sym_mutable] = ACTIONS(7333), + [anon_sym_constinit] = ACTIONS(7333), + [anon_sym_consteval] = ACTIONS(7333), + [anon_sym_alignas] = ACTIONS(7333), + [anon_sym__Alignas] = ACTIONS(7333), + [anon_sym_QMARK] = ACTIONS(7333), + [anon_sym_STAR_EQ] = ACTIONS(7333), + [anon_sym_SLASH_EQ] = ACTIONS(7333), + [anon_sym_PERCENT_EQ] = ACTIONS(7333), + [anon_sym_PLUS_EQ] = ACTIONS(7333), + [anon_sym_DASH_EQ] = ACTIONS(7333), + [anon_sym_LT_LT_EQ] = ACTIONS(7333), + [anon_sym_GT_GT_EQ] = ACTIONS(7333), + [anon_sym_AMP_EQ] = ACTIONS(7333), + [anon_sym_CARET_EQ] = ACTIONS(7333), + [anon_sym_PIPE_EQ] = ACTIONS(7333), + [anon_sym_LT_EQ_GT] = ACTIONS(7333), + [anon_sym_or] = ACTIONS(7333), + [anon_sym_and] = ACTIONS(7333), + [anon_sym_bitor] = ACTIONS(7333), + [anon_sym_xor] = ACTIONS(7333), + [anon_sym_bitand] = ACTIONS(7333), + [anon_sym_not_eq] = ACTIONS(7333), + [anon_sym_DASH_DASH] = ACTIONS(7333), + [anon_sym_PLUS_PLUS] = ACTIONS(7333), + [anon_sym_DOT] = ACTIONS(7331), + [anon_sym_DOT_STAR] = ACTIONS(7333), + [anon_sym_DASH_GT] = ACTIONS(7331), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7333), + [anon_sym_decltype] = ACTIONS(7333), + [anon_sym_final] = ACTIONS(7333), + [anon_sym_override] = ACTIONS(7333), + [anon_sym_requires] = ACTIONS(7333), + [anon_sym_DASH_GT_STAR] = ACTIONS(7333), }, [STATE(2687)] = { - [sym_identifier] = ACTIONS(7158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [aux_sym_preproc_if_token2] = ACTIONS(7160), - [aux_sym_preproc_else_token1] = ACTIONS(7160), - [aux_sym_preproc_elif_token1] = ACTIONS(7158), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7160), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7160), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7160), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7160), - [anon_sym_GT_GT] = ACTIONS(7160), - [anon_sym_SEMI] = ACTIONS(7160), + [sym_ms_unaligned_ptr_modifier] = STATE(4294), + [sym_ms_pointer_modifier] = STATE(2681), + [sym__abstract_declarator] = STATE(6452), + [sym_abstract_parenthesized_declarator] = STATE(6601), + [sym_abstract_pointer_declarator] = STATE(6601), + [sym_abstract_function_declarator] = STATE(6601), + [sym_abstract_array_declarator] = STATE(6601), + [sym_type_qualifier] = STATE(3744), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2276), + [sym_abstract_reference_declarator] = STATE(6601), + [sym__function_declarator_seq] = STATE(6602), + [aux_sym__type_definition_type_repeat1] = STATE(3744), + [aux_sym_pointer_declarator_repeat1] = STATE(2681), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(8599), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(8601), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(8605), + [sym_ms_restrict_modifier] = ACTIONS(8607), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8609), + [sym_ms_signed_ptr_modifier] = ACTIONS(8609), + [anon_sym__unaligned] = ACTIONS(8611), + [anon_sym___unaligned] = ACTIONS(8611), + [anon_sym_LBRACK] = ACTIONS(8613), + [anon_sym_RBRACK] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8605), + [anon_sym_volatile] = ACTIONS(8605), + [anon_sym_restrict] = ACTIONS(8605), + [anon_sym___restrict__] = ACTIONS(8605), + [anon_sym__Atomic] = ACTIONS(8605), + [anon_sym__Noreturn] = ACTIONS(8605), + [anon_sym_noreturn] = ACTIONS(8605), + [anon_sym__Nonnull] = ACTIONS(8605), + [anon_sym_mutable] = ACTIONS(8605), + [anon_sym_constinit] = ACTIONS(8605), + [anon_sym_consteval] = ACTIONS(8605), + [anon_sym_alignas] = ACTIONS(8615), + [anon_sym__Alignas] = ACTIONS(8615), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6815), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6815), + [anon_sym_override] = ACTIONS(6815), + [anon_sym_requires] = ACTIONS(6815), + }, + [STATE(2688)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7479), + [anon_sym_COMMA] = ACTIONS(7479), + [anon_sym_LPAREN2] = ACTIONS(7479), + [anon_sym_DASH] = ACTIONS(7499), + [anon_sym_PLUS] = ACTIONS(7499), + [anon_sym_STAR] = ACTIONS(7499), + [anon_sym_SLASH] = ACTIONS(7499), + [anon_sym_PERCENT] = ACTIONS(7499), + [anon_sym_PIPE_PIPE] = ACTIONS(7479), + [anon_sym_AMP_AMP] = ACTIONS(7479), + [anon_sym_PIPE] = ACTIONS(7499), + [anon_sym_CARET] = ACTIONS(7499), + [anon_sym_AMP] = ACTIONS(7499), + [anon_sym_EQ_EQ] = ACTIONS(7479), + [anon_sym_BANG_EQ] = ACTIONS(7479), + [anon_sym_GT] = ACTIONS(7499), + [anon_sym_GT_EQ] = ACTIONS(7499), + [anon_sym_LT_EQ] = ACTIONS(7499), + [anon_sym_LT] = ACTIONS(7499), + [anon_sym_LT_LT] = ACTIONS(7499), + [anon_sym_GT_GT] = ACTIONS(7499), + [anon_sym___extension__] = ACTIONS(7479), + [anon_sym___attribute__] = ACTIONS(7479), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_COLON] = ACTIONS(7499), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7479), + [anon_sym_EQ] = ACTIONS(7499), + [anon_sym_const] = ACTIONS(7499), + [anon_sym_constexpr] = ACTIONS(7479), + [anon_sym_volatile] = ACTIONS(7479), + [anon_sym_restrict] = ACTIONS(7479), + [anon_sym___restrict__] = ACTIONS(7479), + [anon_sym__Atomic] = ACTIONS(7479), + [anon_sym__Noreturn] = ACTIONS(7479), + [anon_sym_noreturn] = ACTIONS(7479), + [anon_sym__Nonnull] = ACTIONS(7479), + [anon_sym_mutable] = ACTIONS(7479), + [anon_sym_constinit] = ACTIONS(7479), + [anon_sym_consteval] = ACTIONS(7479), + [anon_sym_alignas] = ACTIONS(7479), + [anon_sym__Alignas] = ACTIONS(7479), + [anon_sym_QMARK] = ACTIONS(7479), + [anon_sym_STAR_EQ] = ACTIONS(7479), + [anon_sym_SLASH_EQ] = ACTIONS(7479), + [anon_sym_PERCENT_EQ] = ACTIONS(7479), + [anon_sym_PLUS_EQ] = ACTIONS(7479), + [anon_sym_DASH_EQ] = ACTIONS(7479), + [anon_sym_LT_LT_EQ] = ACTIONS(7479), + [anon_sym_GT_GT_EQ] = ACTIONS(7499), + [anon_sym_AMP_EQ] = ACTIONS(7479), + [anon_sym_CARET_EQ] = ACTIONS(7479), + [anon_sym_PIPE_EQ] = ACTIONS(7479), + [anon_sym_and_eq] = ACTIONS(7479), + [anon_sym_or_eq] = ACTIONS(7479), + [anon_sym_xor_eq] = ACTIONS(7479), + [anon_sym_LT_EQ_GT] = ACTIONS(7479), + [anon_sym_or] = ACTIONS(7499), + [anon_sym_and] = ACTIONS(7499), + [anon_sym_bitor] = ACTIONS(7479), + [anon_sym_xor] = ACTIONS(7499), + [anon_sym_bitand] = ACTIONS(7479), + [anon_sym_not_eq] = ACTIONS(7479), + [anon_sym_DASH_DASH] = ACTIONS(7479), + [anon_sym_PLUS_PLUS] = ACTIONS(7479), + [anon_sym_DOT] = ACTIONS(7499), + [anon_sym_DOT_STAR] = ACTIONS(7479), + [anon_sym_DASH_GT] = ACTIONS(7479), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7479), + [anon_sym_override] = ACTIONS(7479), + [anon_sym_GT2] = ACTIONS(7479), + [anon_sym_requires] = ACTIONS(7479), + }, + [STATE(2689)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7158), + [anon_sym_COMMA] = ACTIONS(7158), + [anon_sym_LPAREN2] = ACTIONS(7158), + [anon_sym_DASH] = ACTIONS(7156), + [anon_sym_PLUS] = ACTIONS(7156), + [anon_sym_STAR] = ACTIONS(7156), + [anon_sym_SLASH] = ACTIONS(7156), + [anon_sym_PERCENT] = ACTIONS(7156), + [anon_sym_PIPE_PIPE] = ACTIONS(7158), + [anon_sym_AMP_AMP] = ACTIONS(7158), + [anon_sym_PIPE] = ACTIONS(7156), + [anon_sym_CARET] = ACTIONS(7156), + [anon_sym_AMP] = ACTIONS(7156), + [anon_sym_EQ_EQ] = ACTIONS(7158), + [anon_sym_BANG_EQ] = ACTIONS(7158), + [anon_sym_GT] = ACTIONS(7156), + [anon_sym_GT_EQ] = ACTIONS(7158), + [anon_sym_LT_EQ] = ACTIONS(7156), + [anon_sym_LT] = ACTIONS(7156), + [anon_sym_LT_LT] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7156), [anon_sym___extension__] = ACTIONS(7158), - [anon_sym___attribute__] = ACTIONS(7158), - [anon_sym___attribute] = ACTIONS(7158), - [anon_sym_COLON] = ACTIONS(7158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7160), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7160), - [anon_sym_RBRACE] = ACTIONS(7160), + [sym_ms_restrict_modifier] = ACTIONS(7156), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7158), + [sym_ms_signed_ptr_modifier] = ACTIONS(7158), + [anon_sym__unaligned] = ACTIONS(7158), + [anon_sym___unaligned] = ACTIONS(7158), [anon_sym_LBRACK] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), + [anon_sym_RBRACK] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(7156), + [anon_sym_const] = ACTIONS(7156), [anon_sym_constexpr] = ACTIONS(7158), [anon_sym_volatile] = ACTIONS(7158), [anon_sym_restrict] = ACTIONS(7158), @@ -370397,524 +370398,1443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(7158), [anon_sym_alignas] = ACTIONS(7158), [anon_sym__Alignas] = ACTIONS(7158), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7158), - [anon_sym_and] = ACTIONS(7158), + [anon_sym_QMARK] = ACTIONS(7158), + [anon_sym_STAR_EQ] = ACTIONS(7158), + [anon_sym_SLASH_EQ] = ACTIONS(7158), + [anon_sym_PERCENT_EQ] = ACTIONS(7158), + [anon_sym_PLUS_EQ] = ACTIONS(7158), + [anon_sym_DASH_EQ] = ACTIONS(7158), + [anon_sym_LT_LT_EQ] = ACTIONS(7158), + [anon_sym_GT_GT_EQ] = ACTIONS(7158), + [anon_sym_AMP_EQ] = ACTIONS(7158), + [anon_sym_CARET_EQ] = ACTIONS(7158), + [anon_sym_PIPE_EQ] = ACTIONS(7158), + [anon_sym_and_eq] = ACTIONS(7158), + [anon_sym_or_eq] = ACTIONS(7158), + [anon_sym_xor_eq] = ACTIONS(7158), + [anon_sym_LT_EQ_GT] = ACTIONS(7158), + [anon_sym_or] = ACTIONS(7156), + [anon_sym_and] = ACTIONS(7156), [anon_sym_bitor] = ACTIONS(7158), - [anon_sym_xor] = ACTIONS(7158), + [anon_sym_xor] = ACTIONS(7156), [anon_sym_bitand] = ACTIONS(7158), [anon_sym_not_eq] = ACTIONS(7158), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_asm] = ACTIONS(7158), - [anon_sym___asm__] = ACTIONS(7158), - [anon_sym___asm] = ACTIONS(7158), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7160), + [anon_sym_DASH_DASH] = ACTIONS(7158), + [anon_sym_PLUS_PLUS] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7156), + [anon_sym_DOT_STAR] = ACTIONS(7158), + [anon_sym_DASH_GT] = ACTIONS(7158), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7158), [anon_sym_override] = ACTIONS(7158), - [anon_sym_noexcept] = ACTIONS(7158), - [anon_sym_throw] = ACTIONS(7158), [anon_sym_requires] = ACTIONS(7158), - [anon_sym_COLON_RBRACK] = ACTIONS(7160), - }, - [STATE(2688)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4321), - [sym_ms_pointer_modifier] = STATE(3970), - [sym__abstract_declarator] = STATE(6494), - [sym_abstract_parenthesized_declarator] = STATE(6708), - [sym_abstract_pointer_declarator] = STATE(6708), - [sym_abstract_function_declarator] = STATE(6708), - [sym_abstract_array_declarator] = STATE(6708), - [sym_type_qualifier] = STATE(3718), - [sym_alignas_qualifier] = STATE(3945), - [sym_parameter_list] = STATE(2277), - [sym_abstract_reference_declarator] = STATE(6708), - [sym__function_declarator_seq] = STATE(6709), - [aux_sym__type_definition_type_repeat1] = STATE(3718), - [aux_sym_pointer_declarator_repeat1] = STATE(3970), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8600), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8602), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8604), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8606), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6821), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(8608), - [sym_ms_restrict_modifier] = ACTIONS(8610), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8612), - [sym_ms_signed_ptr_modifier] = ACTIONS(8612), - [anon_sym__unaligned] = ACTIONS(8614), - [anon_sym___unaligned] = ACTIONS(8614), - [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym___restrict__] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym__Noreturn] = ACTIONS(8608), - [anon_sym_noreturn] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym_mutable] = ACTIONS(8608), - [anon_sym_constinit] = ACTIONS(8608), - [anon_sym_consteval] = ACTIONS(8608), - [anon_sym_alignas] = ACTIONS(8620), - [anon_sym__Alignas] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_GT2] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - }, - [STATE(2689)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4321), - [sym_ms_pointer_modifier] = STATE(2688), - [sym__abstract_declarator] = STATE(6490), - [sym_abstract_parenthesized_declarator] = STATE(6708), - [sym_abstract_pointer_declarator] = STATE(6708), - [sym_abstract_function_declarator] = STATE(6708), - [sym_abstract_array_declarator] = STATE(6708), - [sym_type_qualifier] = STATE(3716), - [sym_alignas_qualifier] = STATE(3945), - [sym_parameter_list] = STATE(2277), - [sym_abstract_reference_declarator] = STATE(6708), - [sym__function_declarator_seq] = STATE(6709), - [aux_sym__type_definition_type_repeat1] = STATE(3716), - [aux_sym_pointer_declarator_repeat1] = STATE(2688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(8600), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(8602), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(8604), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6859), - [anon_sym_AMP] = ACTIONS(8606), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6861), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6859), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(8608), - [sym_ms_restrict_modifier] = ACTIONS(8610), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8612), - [sym_ms_signed_ptr_modifier] = ACTIONS(8612), - [anon_sym__unaligned] = ACTIONS(8614), - [anon_sym___unaligned] = ACTIONS(8614), - [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym___restrict__] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym__Noreturn] = ACTIONS(8608), - [anon_sym_noreturn] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym_mutable] = ACTIONS(8608), - [anon_sym_constinit] = ACTIONS(8608), - [anon_sym_consteval] = ACTIONS(8608), - [anon_sym_alignas] = ACTIONS(8620), - [anon_sym__Alignas] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6859), - [anon_sym_and] = ACTIONS(6859), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6859), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6859), - [anon_sym_override] = ACTIONS(6859), - [anon_sym_GT2] = ACTIONS(6859), - [anon_sym_requires] = ACTIONS(6859), }, [STATE(2690)] = { - [sym_attribute_specifier] = STATE(3544), - [sym_enumerator_list] = STATE(3008), - [sym__enum_base_clause] = STATE(2929), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), - [anon_sym_COMMA] = ACTIONS(8002), - [anon_sym_RPAREN] = ACTIONS(8002), - [anon_sym_LPAREN2] = ACTIONS(8002), - [anon_sym_DASH] = ACTIONS(8000), - [anon_sym_PLUS] = ACTIONS(8000), - [anon_sym_STAR] = ACTIONS(8000), - [anon_sym_SLASH] = ACTIONS(8000), - [anon_sym_PERCENT] = ACTIONS(8000), - [anon_sym_PIPE_PIPE] = ACTIONS(8002), - [anon_sym_AMP_AMP] = ACTIONS(8002), - [anon_sym_PIPE] = ACTIONS(8000), - [anon_sym_CARET] = ACTIONS(8000), - [anon_sym_AMP] = ACTIONS(8000), - [anon_sym_EQ_EQ] = ACTIONS(8002), - [anon_sym_BANG_EQ] = ACTIONS(8002), - [anon_sym_GT] = ACTIONS(8000), - [anon_sym_GT_EQ] = ACTIONS(8002), - [anon_sym_LT_EQ] = ACTIONS(8000), - [anon_sym_LT] = ACTIONS(8000), - [anon_sym_LT_LT] = ACTIONS(8000), - [anon_sym_GT_GT] = ACTIONS(8000), - [anon_sym___extension__] = ACTIONS(8002), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_COLON] = ACTIONS(8622), - [anon_sym_LBRACE] = ACTIONS(8624), - [anon_sym_LBRACK] = ACTIONS(8002), - [anon_sym_EQ] = ACTIONS(8000), - [anon_sym_const] = ACTIONS(8000), - [anon_sym_constexpr] = ACTIONS(8002), - [anon_sym_volatile] = ACTIONS(8002), - [anon_sym_restrict] = ACTIONS(8002), - [anon_sym___restrict__] = ACTIONS(8002), - [anon_sym__Atomic] = ACTIONS(8002), - [anon_sym__Noreturn] = ACTIONS(8002), - [anon_sym_noreturn] = ACTIONS(8002), - [anon_sym__Nonnull] = ACTIONS(8002), - [anon_sym_mutable] = ACTIONS(8002), - [anon_sym_constinit] = ACTIONS(8002), - [anon_sym_consteval] = ACTIONS(8002), - [anon_sym_alignas] = ACTIONS(8002), - [anon_sym__Alignas] = ACTIONS(8002), - [anon_sym_QMARK] = ACTIONS(8002), - [anon_sym_STAR_EQ] = ACTIONS(8002), - [anon_sym_SLASH_EQ] = ACTIONS(8002), - [anon_sym_PERCENT_EQ] = ACTIONS(8002), - [anon_sym_PLUS_EQ] = ACTIONS(8002), - [anon_sym_DASH_EQ] = ACTIONS(8002), - [anon_sym_LT_LT_EQ] = ACTIONS(8002), - [anon_sym_GT_GT_EQ] = ACTIONS(8002), - [anon_sym_AMP_EQ] = ACTIONS(8002), - [anon_sym_CARET_EQ] = ACTIONS(8002), - [anon_sym_PIPE_EQ] = ACTIONS(8002), - [anon_sym_LT_EQ_GT] = ACTIONS(8002), - [anon_sym_or] = ACTIONS(8002), - [anon_sym_and] = ACTIONS(8002), - [anon_sym_bitor] = ACTIONS(8002), - [anon_sym_xor] = ACTIONS(8002), - [anon_sym_bitand] = ACTIONS(8002), - [anon_sym_not_eq] = ACTIONS(8002), - [anon_sym_DASH_DASH] = ACTIONS(8002), - [anon_sym_PLUS_PLUS] = ACTIONS(8002), - [anon_sym_DOT] = ACTIONS(8000), - [anon_sym_DOT_STAR] = ACTIONS(8002), - [anon_sym_DASH_GT] = ACTIONS(8000), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8002), - [anon_sym_override] = ACTIONS(8002), - [anon_sym_requires] = ACTIONS(8002), - [anon_sym_DASH_GT_STAR] = ACTIONS(8002), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7244), + [anon_sym_COMMA] = ACTIONS(7244), + [anon_sym_LPAREN2] = ACTIONS(7244), + [anon_sym_DASH] = ACTIONS(7242), + [anon_sym_PLUS] = ACTIONS(7242), + [anon_sym_STAR] = ACTIONS(7242), + [anon_sym_SLASH] = ACTIONS(7242), + [anon_sym_PERCENT] = ACTIONS(7242), + [anon_sym_PIPE_PIPE] = ACTIONS(7244), + [anon_sym_AMP_AMP] = ACTIONS(7244), + [anon_sym_PIPE] = ACTIONS(7242), + [anon_sym_CARET] = ACTIONS(7242), + [anon_sym_AMP] = ACTIONS(7242), + [anon_sym_EQ_EQ] = ACTIONS(7244), + [anon_sym_BANG_EQ] = ACTIONS(7244), + [anon_sym_GT] = ACTIONS(7242), + [anon_sym_GT_EQ] = ACTIONS(7244), + [anon_sym_LT_EQ] = ACTIONS(7242), + [anon_sym_LT] = ACTIONS(7242), + [anon_sym_LT_LT] = ACTIONS(7242), + [anon_sym_GT_GT] = ACTIONS(7242), + [anon_sym___extension__] = ACTIONS(7244), + [sym_ms_restrict_modifier] = ACTIONS(7242), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7244), + [sym_ms_signed_ptr_modifier] = ACTIONS(7244), + [anon_sym__unaligned] = ACTIONS(7244), + [anon_sym___unaligned] = ACTIONS(7244), + [anon_sym_LBRACK] = ACTIONS(7244), + [anon_sym_RBRACK] = ACTIONS(7244), + [anon_sym_EQ] = ACTIONS(7242), + [anon_sym_const] = ACTIONS(7242), + [anon_sym_constexpr] = ACTIONS(7244), + [anon_sym_volatile] = ACTIONS(7244), + [anon_sym_restrict] = ACTIONS(7244), + [anon_sym___restrict__] = ACTIONS(7244), + [anon_sym__Atomic] = ACTIONS(7244), + [anon_sym__Noreturn] = ACTIONS(7244), + [anon_sym_noreturn] = ACTIONS(7244), + [anon_sym__Nonnull] = ACTIONS(7244), + [anon_sym_mutable] = ACTIONS(7244), + [anon_sym_constinit] = ACTIONS(7244), + [anon_sym_consteval] = ACTIONS(7244), + [anon_sym_alignas] = ACTIONS(7244), + [anon_sym__Alignas] = ACTIONS(7244), + [anon_sym_QMARK] = ACTIONS(7244), + [anon_sym_STAR_EQ] = ACTIONS(7244), + [anon_sym_SLASH_EQ] = ACTIONS(7244), + [anon_sym_PERCENT_EQ] = ACTIONS(7244), + [anon_sym_PLUS_EQ] = ACTIONS(7244), + [anon_sym_DASH_EQ] = ACTIONS(7244), + [anon_sym_LT_LT_EQ] = ACTIONS(7244), + [anon_sym_GT_GT_EQ] = ACTIONS(7244), + [anon_sym_AMP_EQ] = ACTIONS(7244), + [anon_sym_CARET_EQ] = ACTIONS(7244), + [anon_sym_PIPE_EQ] = ACTIONS(7244), + [anon_sym_and_eq] = ACTIONS(7244), + [anon_sym_or_eq] = ACTIONS(7244), + [anon_sym_xor_eq] = ACTIONS(7244), + [anon_sym_LT_EQ_GT] = ACTIONS(7244), + [anon_sym_or] = ACTIONS(7242), + [anon_sym_and] = ACTIONS(7242), + [anon_sym_bitor] = ACTIONS(7244), + [anon_sym_xor] = ACTIONS(7242), + [anon_sym_bitand] = ACTIONS(7244), + [anon_sym_not_eq] = ACTIONS(7244), + [anon_sym_DASH_DASH] = ACTIONS(7244), + [anon_sym_PLUS_PLUS] = ACTIONS(7244), + [anon_sym_DOT] = ACTIONS(7242), + [anon_sym_DOT_STAR] = ACTIONS(7244), + [anon_sym_DASH_GT] = ACTIONS(7244), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7244), + [anon_sym_override] = ACTIONS(7244), + [anon_sym_requires] = ACTIONS(7244), }, [STATE(2691)] = { - [sym_attribute_specifier] = STATE(2959), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_RPAREN] = ACTIONS(7549), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7547), - [anon_sym_PLUS] = ACTIONS(7547), - [anon_sym_STAR] = ACTIONS(7547), - [anon_sym_SLASH] = ACTIONS(7547), - [anon_sym_PERCENT] = ACTIONS(7547), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7547), - [anon_sym_CARET] = ACTIONS(7547), - [anon_sym_AMP] = ACTIONS(7547), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7547), - [anon_sym_LT] = ACTIONS(7547), - [anon_sym_LT_LT] = ACTIONS(7547), - [anon_sym_GT_GT] = ACTIONS(7547), - [anon_sym___extension__] = ACTIONS(7549), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7547), - [anon_sym_const] = ACTIONS(7547), - [anon_sym_constexpr] = ACTIONS(7549), - [anon_sym_volatile] = ACTIONS(7549), - [anon_sym_restrict] = ACTIONS(7549), - [anon_sym___restrict__] = ACTIONS(7549), - [anon_sym__Atomic] = ACTIONS(7549), - [anon_sym__Noreturn] = ACTIONS(7549), - [anon_sym_noreturn] = ACTIONS(7549), - [anon_sym__Nonnull] = ACTIONS(7549), - [anon_sym_mutable] = ACTIONS(7549), - [anon_sym_constinit] = ACTIONS(7549), - [anon_sym_consteval] = ACTIONS(7549), - [anon_sym_alignas] = ACTIONS(7549), - [anon_sym__Alignas] = ACTIONS(7549), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_and_eq] = ACTIONS(7549), - [anon_sym_or_eq] = ACTIONS(7549), - [anon_sym_xor_eq] = ACTIONS(7549), - [anon_sym_LT_EQ_GT] = ACTIONS(7549), - [anon_sym_or] = ACTIONS(7547), - [anon_sym_and] = ACTIONS(7547), - [anon_sym_bitor] = ACTIONS(7549), - [anon_sym_xor] = ACTIONS(7547), - [anon_sym_bitand] = ACTIONS(7549), - [anon_sym_not_eq] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7547), - [anon_sym_DOT_STAR] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7547), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7549), - [anon_sym_override] = ACTIONS(7549), - [anon_sym_requires] = ACTIONS(7549), - [anon_sym_DASH_GT_STAR] = ACTIONS(7549), + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym__function_exception_specification] = STATE(3452), + [sym__function_attributes_end] = STATE(4625), + [sym__function_postfix] = STATE(5619), + [sym_trailing_return_type] = STATE(4750), + [sym_noexcept] = STATE(3452), + [sym_throw_specifier] = STATE(3452), + [sym_requires_clause] = STATE(5619), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7874), + [anon_sym_and] = ACTIONS(7874), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7874), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8541), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8544), + [anon_sym_override] = ACTIONS(8544), + [anon_sym_noexcept] = ACTIONS(6803), + [anon_sym_throw] = ACTIONS(6805), + [anon_sym_requires] = ACTIONS(8547), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), }, [STATE(2692)] = { - [sym_attribute_specifier] = STATE(3052), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7553), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_RPAREN] = ACTIONS(7553), - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_PERCENT] = ACTIONS(7551), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7553), - [anon_sym_LT_EQ] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7551), - [anon_sym___extension__] = ACTIONS(7553), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7553), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_const] = ACTIONS(7551), - [anon_sym_constexpr] = ACTIONS(7553), - [anon_sym_volatile] = ACTIONS(7553), - [anon_sym_restrict] = ACTIONS(7553), - [anon_sym___restrict__] = ACTIONS(7553), - [anon_sym__Atomic] = ACTIONS(7553), - [anon_sym__Noreturn] = ACTIONS(7553), - [anon_sym_noreturn] = ACTIONS(7553), - [anon_sym__Nonnull] = ACTIONS(7553), - [anon_sym_mutable] = ACTIONS(7553), - [anon_sym_constinit] = ACTIONS(7553), - [anon_sym_consteval] = ACTIONS(7553), - [anon_sym_alignas] = ACTIONS(7553), - [anon_sym__Alignas] = ACTIONS(7553), - [anon_sym_QMARK] = ACTIONS(7553), - [anon_sym_STAR_EQ] = ACTIONS(7553), - [anon_sym_SLASH_EQ] = ACTIONS(7553), - [anon_sym_PERCENT_EQ] = ACTIONS(7553), - [anon_sym_PLUS_EQ] = ACTIONS(7553), - [anon_sym_DASH_EQ] = ACTIONS(7553), - [anon_sym_LT_LT_EQ] = ACTIONS(7553), - [anon_sym_GT_GT_EQ] = ACTIONS(7553), - [anon_sym_AMP_EQ] = ACTIONS(7553), - [anon_sym_CARET_EQ] = ACTIONS(7553), - [anon_sym_PIPE_EQ] = ACTIONS(7553), - [anon_sym_and_eq] = ACTIONS(7553), - [anon_sym_or_eq] = ACTIONS(7553), - [anon_sym_xor_eq] = ACTIONS(7553), - [anon_sym_LT_EQ_GT] = ACTIONS(7553), - [anon_sym_or] = ACTIONS(7551), - [anon_sym_and] = ACTIONS(7551), - [anon_sym_bitor] = ACTIONS(7553), - [anon_sym_xor] = ACTIONS(7551), - [anon_sym_bitand] = ACTIONS(7553), - [anon_sym_not_eq] = ACTIONS(7553), - [anon_sym_DASH_DASH] = ACTIONS(7553), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7551), - [anon_sym_DOT_STAR] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7553), - [anon_sym_override] = ACTIONS(7553), - [anon_sym_requires] = ACTIONS(7553), - [anon_sym_DASH_GT_STAR] = ACTIONS(7553), - }, - [STATE(2693)] = { - [sym_argument_list] = STATE(5772), - [sym_initializer_list] = STATE(5843), - [aux_sym_sized_type_specifier_repeat1] = STATE(2208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8626), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_signed] = ACTIONS(8629), - [anon_sym_unsigned] = ACTIONS(8629), - [anon_sym_long] = ACTIONS(8629), - [anon_sym_short] = ACTIONS(8629), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - }, - [STATE(2694)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6481), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [anon_sym___declspec] = ACTIONS(51), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7158), + [anon_sym_COMMA] = ACTIONS(7158), + [anon_sym_LPAREN2] = ACTIONS(7158), + [anon_sym_DASH] = ACTIONS(7156), + [anon_sym_PLUS] = ACTIONS(7156), + [anon_sym_STAR] = ACTIONS(7156), + [anon_sym_SLASH] = ACTIONS(7156), + [anon_sym_PERCENT] = ACTIONS(7156), + [anon_sym_PIPE_PIPE] = ACTIONS(7158), + [anon_sym_AMP_AMP] = ACTIONS(7158), + [anon_sym_PIPE] = ACTIONS(7156), + [anon_sym_CARET] = ACTIONS(7156), + [anon_sym_AMP] = ACTIONS(7156), + [anon_sym_EQ_EQ] = ACTIONS(7158), + [anon_sym_BANG_EQ] = ACTIONS(7158), + [anon_sym_GT] = ACTIONS(7156), + [anon_sym_GT_EQ] = ACTIONS(7156), + [anon_sym_LT_EQ] = ACTIONS(7156), + [anon_sym_LT] = ACTIONS(7156), + [anon_sym_LT_LT] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7156), + [anon_sym___extension__] = ACTIONS(7158), + [sym_ms_restrict_modifier] = ACTIONS(7156), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7158), + [sym_ms_signed_ptr_modifier] = ACTIONS(7158), + [anon_sym__unaligned] = ACTIONS(7158), + [anon_sym___unaligned] = ACTIONS(7158), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(7156), + [anon_sym_const] = ACTIONS(7156), + [anon_sym_constexpr] = ACTIONS(7158), + [anon_sym_volatile] = ACTIONS(7158), + [anon_sym_restrict] = ACTIONS(7158), + [anon_sym___restrict__] = ACTIONS(7158), + [anon_sym__Atomic] = ACTIONS(7158), + [anon_sym__Noreturn] = ACTIONS(7158), + [anon_sym_noreturn] = ACTIONS(7158), + [anon_sym__Nonnull] = ACTIONS(7158), + [anon_sym_mutable] = ACTIONS(7158), + [anon_sym_constinit] = ACTIONS(7158), + [anon_sym_consteval] = ACTIONS(7158), + [anon_sym_alignas] = ACTIONS(7158), + [anon_sym__Alignas] = ACTIONS(7158), + [anon_sym_QMARK] = ACTIONS(7158), + [anon_sym_STAR_EQ] = ACTIONS(7158), + [anon_sym_SLASH_EQ] = ACTIONS(7158), + [anon_sym_PERCENT_EQ] = ACTIONS(7158), + [anon_sym_PLUS_EQ] = ACTIONS(7158), + [anon_sym_DASH_EQ] = ACTIONS(7158), + [anon_sym_LT_LT_EQ] = ACTIONS(7158), + [anon_sym_GT_GT_EQ] = ACTIONS(7156), + [anon_sym_AMP_EQ] = ACTIONS(7158), + [anon_sym_CARET_EQ] = ACTIONS(7158), + [anon_sym_PIPE_EQ] = ACTIONS(7158), + [anon_sym_and_eq] = ACTIONS(7158), + [anon_sym_or_eq] = ACTIONS(7158), + [anon_sym_xor_eq] = ACTIONS(7158), + [anon_sym_LT_EQ_GT] = ACTIONS(7158), + [anon_sym_or] = ACTIONS(7156), + [anon_sym_and] = ACTIONS(7156), + [anon_sym_bitor] = ACTIONS(7158), + [anon_sym_xor] = ACTIONS(7156), + [anon_sym_bitand] = ACTIONS(7158), + [anon_sym_not_eq] = ACTIONS(7158), + [anon_sym_DASH_DASH] = ACTIONS(7158), + [anon_sym_PLUS_PLUS] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7156), + [anon_sym_DOT_STAR] = ACTIONS(7158), + [anon_sym_DASH_GT] = ACTIONS(7158), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7158), + [anon_sym_override] = ACTIONS(7158), + [anon_sym_GT2] = ACTIONS(7158), + [anon_sym_requires] = ACTIONS(7158), + }, + [STATE(2693)] = { + [sym_attribute_specifier] = STATE(3004), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7513), + [anon_sym_COMMA] = ACTIONS(7513), + [anon_sym_RPAREN] = ACTIONS(7513), + [anon_sym_LPAREN2] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_STAR] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7511), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7513), + [anon_sym_AMP_AMP] = ACTIONS(7513), + [anon_sym_PIPE] = ACTIONS(7511), + [anon_sym_CARET] = ACTIONS(7511), + [anon_sym_AMP] = ACTIONS(7511), + [anon_sym_EQ_EQ] = ACTIONS(7513), + [anon_sym_BANG_EQ] = ACTIONS(7513), + [anon_sym_GT] = ACTIONS(7511), + [anon_sym_GT_EQ] = ACTIONS(7513), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_LT] = ACTIONS(7511), + [anon_sym_LT_LT] = ACTIONS(7511), + [anon_sym_GT_GT] = ACTIONS(7511), + [anon_sym___extension__] = ACTIONS(7513), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7513), + [anon_sym_EQ] = ACTIONS(7511), + [anon_sym_const] = ACTIONS(7511), + [anon_sym_constexpr] = ACTIONS(7513), + [anon_sym_volatile] = ACTIONS(7513), + [anon_sym_restrict] = ACTIONS(7513), + [anon_sym___restrict__] = ACTIONS(7513), + [anon_sym__Atomic] = ACTIONS(7513), + [anon_sym__Noreturn] = ACTIONS(7513), + [anon_sym_noreturn] = ACTIONS(7513), + [anon_sym__Nonnull] = ACTIONS(7513), + [anon_sym_mutable] = ACTIONS(7513), + [anon_sym_constinit] = ACTIONS(7513), + [anon_sym_consteval] = ACTIONS(7513), + [anon_sym_alignas] = ACTIONS(7513), + [anon_sym__Alignas] = ACTIONS(7513), + [anon_sym_QMARK] = ACTIONS(7513), + [anon_sym_STAR_EQ] = ACTIONS(7513), + [anon_sym_SLASH_EQ] = ACTIONS(7513), + [anon_sym_PERCENT_EQ] = ACTIONS(7513), + [anon_sym_PLUS_EQ] = ACTIONS(7513), + [anon_sym_DASH_EQ] = ACTIONS(7513), + [anon_sym_LT_LT_EQ] = ACTIONS(7513), + [anon_sym_GT_GT_EQ] = ACTIONS(7513), + [anon_sym_AMP_EQ] = ACTIONS(7513), + [anon_sym_CARET_EQ] = ACTIONS(7513), + [anon_sym_PIPE_EQ] = ACTIONS(7513), + [anon_sym_and_eq] = ACTIONS(7513), + [anon_sym_or_eq] = ACTIONS(7513), + [anon_sym_xor_eq] = ACTIONS(7513), + [anon_sym_LT_EQ_GT] = ACTIONS(7513), + [anon_sym_or] = ACTIONS(7511), + [anon_sym_and] = ACTIONS(7511), + [anon_sym_bitor] = ACTIONS(7513), + [anon_sym_xor] = ACTIONS(7511), + [anon_sym_bitand] = ACTIONS(7513), + [anon_sym_not_eq] = ACTIONS(7513), + [anon_sym_DASH_DASH] = ACTIONS(7513), + [anon_sym_PLUS_PLUS] = ACTIONS(7513), + [anon_sym_DOT] = ACTIONS(7511), + [anon_sym_DOT_STAR] = ACTIONS(7513), + [anon_sym_DASH_GT] = ACTIONS(7511), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7513), + [anon_sym_override] = ACTIONS(7513), + [anon_sym_requires] = ACTIONS(7513), + [anon_sym_DASH_GT_STAR] = ACTIONS(7513), + }, + [STATE(2694)] = { + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym__function_exception_specification] = STATE(3467), + [sym__function_attributes_end] = STATE(4598), + [sym__function_postfix] = STATE(5706), + [sym_trailing_return_type] = STATE(4628), + [sym_noexcept] = STATE(3467), + [sym_throw_specifier] = STATE(3467), + [sym_requires_clause] = STATE(5706), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7970), + [anon_sym_and] = ACTIONS(7970), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7970), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8617), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8620), + [anon_sym_override] = ACTIONS(8620), + [anon_sym_noexcept] = ACTIONS(6803), + [anon_sym_throw] = ACTIONS(6805), + [anon_sym_requires] = ACTIONS(8623), + [anon_sym_DASH_GT_STAR] = ACTIONS(7970), + }, + [STATE(2695)] = { + [sym_attribute_specifier] = STATE(3005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(7517), + [anon_sym_RPAREN] = ACTIONS(7517), + [anon_sym_LPAREN2] = ACTIONS(7517), + [anon_sym_DASH] = ACTIONS(7515), + [anon_sym_PLUS] = ACTIONS(7515), + [anon_sym_STAR] = ACTIONS(7515), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7517), + [anon_sym_PIPE] = ACTIONS(7515), + [anon_sym_CARET] = ACTIONS(7515), + [anon_sym_AMP] = ACTIONS(7515), + [anon_sym_EQ_EQ] = ACTIONS(7517), + [anon_sym_BANG_EQ] = ACTIONS(7517), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_GT_EQ] = ACTIONS(7517), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_LT] = ACTIONS(7515), + [anon_sym_LT_LT] = ACTIONS(7515), + [anon_sym_GT_GT] = ACTIONS(7515), + [anon_sym___extension__] = ACTIONS(7517), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7517), + [anon_sym_LBRACK] = ACTIONS(7517), + [anon_sym_EQ] = ACTIONS(7515), + [anon_sym_const] = ACTIONS(7515), + [anon_sym_constexpr] = ACTIONS(7517), + [anon_sym_volatile] = ACTIONS(7517), + [anon_sym_restrict] = ACTIONS(7517), + [anon_sym___restrict__] = ACTIONS(7517), + [anon_sym__Atomic] = ACTIONS(7517), + [anon_sym__Noreturn] = ACTIONS(7517), + [anon_sym_noreturn] = ACTIONS(7517), + [anon_sym__Nonnull] = ACTIONS(7517), + [anon_sym_mutable] = ACTIONS(7517), + [anon_sym_constinit] = ACTIONS(7517), + [anon_sym_consteval] = ACTIONS(7517), + [anon_sym_alignas] = ACTIONS(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(7517), + [anon_sym_STAR_EQ] = ACTIONS(7517), + [anon_sym_SLASH_EQ] = ACTIONS(7517), + [anon_sym_PERCENT_EQ] = ACTIONS(7517), + [anon_sym_PLUS_EQ] = ACTIONS(7517), + [anon_sym_DASH_EQ] = ACTIONS(7517), + [anon_sym_LT_LT_EQ] = ACTIONS(7517), + [anon_sym_GT_GT_EQ] = ACTIONS(7517), + [anon_sym_AMP_EQ] = ACTIONS(7517), + [anon_sym_CARET_EQ] = ACTIONS(7517), + [anon_sym_PIPE_EQ] = ACTIONS(7517), + [anon_sym_and_eq] = ACTIONS(7517), + [anon_sym_or_eq] = ACTIONS(7517), + [anon_sym_xor_eq] = ACTIONS(7517), + [anon_sym_LT_EQ_GT] = ACTIONS(7517), + [anon_sym_or] = ACTIONS(7515), + [anon_sym_and] = ACTIONS(7515), + [anon_sym_bitor] = ACTIONS(7517), + [anon_sym_xor] = ACTIONS(7515), + [anon_sym_bitand] = ACTIONS(7517), + [anon_sym_not_eq] = ACTIONS(7517), + [anon_sym_DASH_DASH] = ACTIONS(7517), + [anon_sym_PLUS_PLUS] = ACTIONS(7517), + [anon_sym_DOT] = ACTIONS(7515), + [anon_sym_DOT_STAR] = ACTIONS(7517), + [anon_sym_DASH_GT] = ACTIONS(7515), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7517), + [anon_sym_override] = ACTIONS(7517), + [anon_sym_requires] = ACTIONS(7517), + [anon_sym_DASH_GT_STAR] = ACTIONS(7517), + }, + [STATE(2696)] = { + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym__function_exception_specification] = STATE(3381), + [sym__function_attributes_end] = STATE(4561), + [sym__function_postfix] = STATE(5619), + [sym_trailing_return_type] = STATE(4705), + [sym_noexcept] = STATE(3381), + [sym_throw_specifier] = STATE(3381), + [sym_requires_clause] = STATE(5619), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7874), + [anon_sym_and] = ACTIONS(7874), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7874), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8541), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_noexcept] = ACTIONS(6803), + [anon_sym_throw] = ACTIONS(6805), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), + }, + [STATE(2697)] = { + [sym_attribute_specifier] = STATE(3567), + [sym_enumerator_list] = STATE(3031), + [sym__enum_base_clause] = STATE(2902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8003), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_RPAREN] = ACTIONS(8003), + [anon_sym_LPAREN2] = ACTIONS(8003), + [anon_sym_DASH] = ACTIONS(8001), + [anon_sym_PLUS] = ACTIONS(8001), + [anon_sym_STAR] = ACTIONS(8001), + [anon_sym_SLASH] = ACTIONS(8001), + [anon_sym_PERCENT] = ACTIONS(8001), + [anon_sym_PIPE_PIPE] = ACTIONS(8003), + [anon_sym_AMP_AMP] = ACTIONS(8003), + [anon_sym_PIPE] = ACTIONS(8001), + [anon_sym_CARET] = ACTIONS(8001), + [anon_sym_AMP] = ACTIONS(8001), + [anon_sym_EQ_EQ] = ACTIONS(8003), + [anon_sym_BANG_EQ] = ACTIONS(8003), + [anon_sym_GT] = ACTIONS(8001), + [anon_sym_GT_EQ] = ACTIONS(8003), + [anon_sym_LT_EQ] = ACTIONS(8001), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_LT_LT] = ACTIONS(8001), + [anon_sym_GT_GT] = ACTIONS(8001), + [anon_sym___extension__] = ACTIONS(8003), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_COLON] = ACTIONS(8626), + [anon_sym_LBRACE] = ACTIONS(8628), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_EQ] = ACTIONS(8001), + [anon_sym_const] = ACTIONS(8001), + [anon_sym_constexpr] = ACTIONS(8003), + [anon_sym_volatile] = ACTIONS(8003), + [anon_sym_restrict] = ACTIONS(8003), + [anon_sym___restrict__] = ACTIONS(8003), + [anon_sym__Atomic] = ACTIONS(8003), + [anon_sym__Noreturn] = ACTIONS(8003), + [anon_sym_noreturn] = ACTIONS(8003), + [anon_sym__Nonnull] = ACTIONS(8003), + [anon_sym_mutable] = ACTIONS(8003), + [anon_sym_constinit] = ACTIONS(8003), + [anon_sym_consteval] = ACTIONS(8003), + [anon_sym_alignas] = ACTIONS(8003), + [anon_sym__Alignas] = ACTIONS(8003), + [anon_sym_QMARK] = ACTIONS(8003), + [anon_sym_STAR_EQ] = ACTIONS(8003), + [anon_sym_SLASH_EQ] = ACTIONS(8003), + [anon_sym_PERCENT_EQ] = ACTIONS(8003), + [anon_sym_PLUS_EQ] = ACTIONS(8003), + [anon_sym_DASH_EQ] = ACTIONS(8003), + [anon_sym_LT_LT_EQ] = ACTIONS(8003), + [anon_sym_GT_GT_EQ] = ACTIONS(8003), + [anon_sym_AMP_EQ] = ACTIONS(8003), + [anon_sym_CARET_EQ] = ACTIONS(8003), + [anon_sym_PIPE_EQ] = ACTIONS(8003), + [anon_sym_LT_EQ_GT] = ACTIONS(8003), + [anon_sym_or] = ACTIONS(8003), + [anon_sym_and] = ACTIONS(8003), + [anon_sym_bitor] = ACTIONS(8003), + [anon_sym_xor] = ACTIONS(8003), + [anon_sym_bitand] = ACTIONS(8003), + [anon_sym_not_eq] = ACTIONS(8003), + [anon_sym_DASH_DASH] = ACTIONS(8003), + [anon_sym_PLUS_PLUS] = ACTIONS(8003), + [anon_sym_DOT] = ACTIONS(8001), + [anon_sym_DOT_STAR] = ACTIONS(8003), + [anon_sym_DASH_GT] = ACTIONS(8001), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8003), + [anon_sym_override] = ACTIONS(8003), + [anon_sym_requires] = ACTIONS(8003), + [anon_sym_DASH_GT_STAR] = ACTIONS(8003), + }, + [STATE(2698)] = { + [sym_attribute_specifier] = STATE(3549), + [sym_enumerator_list] = STATE(2983), + [sym__enum_base_clause] = STATE(2923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8009), + [anon_sym_COMMA] = ACTIONS(8009), + [anon_sym_RPAREN] = ACTIONS(8009), + [anon_sym_LPAREN2] = ACTIONS(8009), + [anon_sym_DASH] = ACTIONS(8007), + [anon_sym_PLUS] = ACTIONS(8007), + [anon_sym_STAR] = ACTIONS(8007), + [anon_sym_SLASH] = ACTIONS(8007), + [anon_sym_PERCENT] = ACTIONS(8007), + [anon_sym_PIPE_PIPE] = ACTIONS(8009), + [anon_sym_AMP_AMP] = ACTIONS(8009), + [anon_sym_PIPE] = ACTIONS(8007), + [anon_sym_CARET] = ACTIONS(8007), + [anon_sym_AMP] = ACTIONS(8007), + [anon_sym_EQ_EQ] = ACTIONS(8009), + [anon_sym_BANG_EQ] = ACTIONS(8009), + [anon_sym_GT] = ACTIONS(8007), + [anon_sym_GT_EQ] = ACTIONS(8009), + [anon_sym_LT_EQ] = ACTIONS(8007), + [anon_sym_LT] = ACTIONS(8007), + [anon_sym_LT_LT] = ACTIONS(8007), + [anon_sym_GT_GT] = ACTIONS(8007), + [anon_sym___extension__] = ACTIONS(8009), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_COLON] = ACTIONS(8626), + [anon_sym_LBRACE] = ACTIONS(8628), + [anon_sym_LBRACK] = ACTIONS(8009), + [anon_sym_EQ] = ACTIONS(8007), + [anon_sym_const] = ACTIONS(8007), + [anon_sym_constexpr] = ACTIONS(8009), + [anon_sym_volatile] = ACTIONS(8009), + [anon_sym_restrict] = ACTIONS(8009), + [anon_sym___restrict__] = ACTIONS(8009), + [anon_sym__Atomic] = ACTIONS(8009), + [anon_sym__Noreturn] = ACTIONS(8009), + [anon_sym_noreturn] = ACTIONS(8009), + [anon_sym__Nonnull] = ACTIONS(8009), + [anon_sym_mutable] = ACTIONS(8009), + [anon_sym_constinit] = ACTIONS(8009), + [anon_sym_consteval] = ACTIONS(8009), + [anon_sym_alignas] = ACTIONS(8009), + [anon_sym__Alignas] = ACTIONS(8009), + [anon_sym_QMARK] = ACTIONS(8009), + [anon_sym_STAR_EQ] = ACTIONS(8009), + [anon_sym_SLASH_EQ] = ACTIONS(8009), + [anon_sym_PERCENT_EQ] = ACTIONS(8009), + [anon_sym_PLUS_EQ] = ACTIONS(8009), + [anon_sym_DASH_EQ] = ACTIONS(8009), + [anon_sym_LT_LT_EQ] = ACTIONS(8009), + [anon_sym_GT_GT_EQ] = ACTIONS(8009), + [anon_sym_AMP_EQ] = ACTIONS(8009), + [anon_sym_CARET_EQ] = ACTIONS(8009), + [anon_sym_PIPE_EQ] = ACTIONS(8009), + [anon_sym_LT_EQ_GT] = ACTIONS(8009), + [anon_sym_or] = ACTIONS(8009), + [anon_sym_and] = ACTIONS(8009), + [anon_sym_bitor] = ACTIONS(8009), + [anon_sym_xor] = ACTIONS(8009), + [anon_sym_bitand] = ACTIONS(8009), + [anon_sym_not_eq] = ACTIONS(8009), + [anon_sym_DASH_DASH] = ACTIONS(8009), + [anon_sym_PLUS_PLUS] = ACTIONS(8009), + [anon_sym_DOT] = ACTIONS(8007), + [anon_sym_DOT_STAR] = ACTIONS(8009), + [anon_sym_DASH_GT] = ACTIONS(8007), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8009), + [anon_sym_override] = ACTIONS(8009), + [anon_sym_requires] = ACTIONS(8009), + [anon_sym_DASH_GT_STAR] = ACTIONS(8009), + }, + [STATE(2699)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_catch] = ACTIONS(3168), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + }, + [STATE(2700)] = { + [sym_identifier] = ACTIONS(3157), + [aux_sym_preproc_def_token1] = ACTIONS(3157), + [aux_sym_preproc_if_token1] = ACTIONS(3157), + [aux_sym_preproc_if_token2] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3157), + [aux_sym_preproc_else_token1] = ACTIONS(3157), + [aux_sym_preproc_elif_token1] = ACTIONS(3157), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3157), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3157), + [sym_preproc_directive] = ACTIONS(3157), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3157), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym___attribute__] = ACTIONS(3157), + [anon_sym___attribute] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3155), + [anon_sym___declspec] = ACTIONS(3157), + [anon_sym___based] = ACTIONS(3157), + [anon_sym_signed] = ACTIONS(3157), + [anon_sym_unsigned] = ACTIONS(3157), + [anon_sym_long] = ACTIONS(3157), + [anon_sym_short] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_register] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym___inline] = ACTIONS(3157), + [anon_sym___inline__] = ACTIONS(3157), + [anon_sym___forceinline] = ACTIONS(3157), + [anon_sym_thread_local] = ACTIONS(3157), + [anon_sym___thread] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_constexpr] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_restrict] = ACTIONS(3157), + [anon_sym___restrict__] = ACTIONS(3157), + [anon_sym__Atomic] = ACTIONS(3157), + [anon_sym__Noreturn] = ACTIONS(3157), + [anon_sym_noreturn] = ACTIONS(3157), + [anon_sym__Nonnull] = ACTIONS(3157), + [anon_sym_mutable] = ACTIONS(3157), + [anon_sym_constinit] = ACTIONS(3157), + [anon_sym_consteval] = ACTIONS(3157), + [anon_sym_alignas] = ACTIONS(3157), + [anon_sym__Alignas] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_typename] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3157), + [anon_sym_decltype] = ACTIONS(3157), + [anon_sym_explicit] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_template] = ACTIONS(3157), + [anon_sym_operator] = ACTIONS(3157), + [anon_sym_friend] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_static_assert] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_LBRACK_COLON] = ACTIONS(3155), + }, + [STATE(2701)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_RPAREN] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6586), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6586), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6586), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6586), + [anon_sym_GT_GT] = ACTIONS(6586), + [anon_sym___extension__] = ACTIONS(6588), + [anon_sym___attribute__] = ACTIONS(6588), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6588), + [anon_sym_EQ] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6588), + [anon_sym_volatile] = ACTIONS(6588), + [anon_sym_restrict] = ACTIONS(6588), + [anon_sym___restrict__] = ACTIONS(6588), + [anon_sym__Atomic] = ACTIONS(6588), + [anon_sym__Noreturn] = ACTIONS(6588), + [anon_sym_noreturn] = ACTIONS(6588), + [anon_sym__Nonnull] = ACTIONS(6588), + [anon_sym_mutable] = ACTIONS(6588), + [anon_sym_constinit] = ACTIONS(6588), + [anon_sym_consteval] = ACTIONS(6588), + [anon_sym_alignas] = ACTIONS(6588), + [anon_sym__Alignas] = ACTIONS(6588), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_STAR_EQ] = ACTIONS(6588), + [anon_sym_SLASH_EQ] = ACTIONS(6588), + [anon_sym_PERCENT_EQ] = ACTIONS(6588), + [anon_sym_PLUS_EQ] = ACTIONS(6588), + [anon_sym_DASH_EQ] = ACTIONS(6588), + [anon_sym_LT_LT_EQ] = ACTIONS(6588), + [anon_sym_GT_GT_EQ] = ACTIONS(6588), + [anon_sym_AMP_EQ] = ACTIONS(6588), + [anon_sym_CARET_EQ] = ACTIONS(6588), + [anon_sym_PIPE_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6588), + [anon_sym_and] = ACTIONS(6588), + [anon_sym_bitor] = ACTIONS(6588), + [anon_sym_xor] = ACTIONS(6588), + [anon_sym_bitand] = ACTIONS(6588), + [anon_sym_not_eq] = ACTIONS(6588), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6588), + [anon_sym_decltype] = ACTIONS(6588), + [anon_sym_final] = ACTIONS(6588), + [anon_sym_override] = ACTIONS(6588), + [anon_sym_requires] = ACTIONS(6588), + [anon_sym_DASH_GT_STAR] = ACTIONS(6588), + }, + [STATE(2702)] = { + [sym_attribute_specifier] = STATE(2976), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7493), + [anon_sym_COMMA] = ACTIONS(7493), + [anon_sym_RPAREN] = ACTIONS(7493), + [anon_sym_LPAREN2] = ACTIONS(7493), + [anon_sym_DASH] = ACTIONS(7491), + [anon_sym_PLUS] = ACTIONS(7491), + [anon_sym_STAR] = ACTIONS(7491), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7491), + [anon_sym_PIPE_PIPE] = ACTIONS(7493), + [anon_sym_AMP_AMP] = ACTIONS(7493), + [anon_sym_PIPE] = ACTIONS(7491), + [anon_sym_CARET] = ACTIONS(7491), + [anon_sym_AMP] = ACTIONS(7491), + [anon_sym_EQ_EQ] = ACTIONS(7493), + [anon_sym_BANG_EQ] = ACTIONS(7493), + [anon_sym_GT] = ACTIONS(7491), + [anon_sym_GT_EQ] = ACTIONS(7493), + [anon_sym_LT_EQ] = ACTIONS(7491), + [anon_sym_LT] = ACTIONS(7491), + [anon_sym_LT_LT] = ACTIONS(7491), + [anon_sym_GT_GT] = ACTIONS(7491), + [anon_sym___extension__] = ACTIONS(7493), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7493), + [anon_sym_EQ] = ACTIONS(7491), + [anon_sym_const] = ACTIONS(7491), + [anon_sym_constexpr] = ACTIONS(7493), + [anon_sym_volatile] = ACTIONS(7493), + [anon_sym_restrict] = ACTIONS(7493), + [anon_sym___restrict__] = ACTIONS(7493), + [anon_sym__Atomic] = ACTIONS(7493), + [anon_sym__Noreturn] = ACTIONS(7493), + [anon_sym_noreturn] = ACTIONS(7493), + [anon_sym__Nonnull] = ACTIONS(7493), + [anon_sym_mutable] = ACTIONS(7493), + [anon_sym_constinit] = ACTIONS(7493), + [anon_sym_consteval] = ACTIONS(7493), + [anon_sym_alignas] = ACTIONS(7493), + [anon_sym__Alignas] = ACTIONS(7493), + [anon_sym_QMARK] = ACTIONS(7493), + [anon_sym_STAR_EQ] = ACTIONS(7493), + [anon_sym_SLASH_EQ] = ACTIONS(7493), + [anon_sym_PERCENT_EQ] = ACTIONS(7493), + [anon_sym_PLUS_EQ] = ACTIONS(7493), + [anon_sym_DASH_EQ] = ACTIONS(7493), + [anon_sym_LT_LT_EQ] = ACTIONS(7493), + [anon_sym_GT_GT_EQ] = ACTIONS(7493), + [anon_sym_AMP_EQ] = ACTIONS(7493), + [anon_sym_CARET_EQ] = ACTIONS(7493), + [anon_sym_PIPE_EQ] = ACTIONS(7493), + [anon_sym_and_eq] = ACTIONS(7493), + [anon_sym_or_eq] = ACTIONS(7493), + [anon_sym_xor_eq] = ACTIONS(7493), + [anon_sym_LT_EQ_GT] = ACTIONS(7493), + [anon_sym_or] = ACTIONS(7491), + [anon_sym_and] = ACTIONS(7491), + [anon_sym_bitor] = ACTIONS(7493), + [anon_sym_xor] = ACTIONS(7491), + [anon_sym_bitand] = ACTIONS(7493), + [anon_sym_not_eq] = ACTIONS(7493), + [anon_sym_DASH_DASH] = ACTIONS(7493), + [anon_sym_PLUS_PLUS] = ACTIONS(7493), + [anon_sym_DOT] = ACTIONS(7491), + [anon_sym_DOT_STAR] = ACTIONS(7493), + [anon_sym_DASH_GT] = ACTIONS(7491), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7493), + [anon_sym_override] = ACTIONS(7493), + [anon_sym_requires] = ACTIONS(7493), + [anon_sym_DASH_GT_STAR] = ACTIONS(7493), + }, + [STATE(2703)] = { + [sym_attribute_specifier] = STATE(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7497), + [anon_sym_COMMA] = ACTIONS(7497), + [anon_sym_RPAREN] = ACTIONS(7497), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_DASH] = ACTIONS(7495), + [anon_sym_PLUS] = ACTIONS(7495), + [anon_sym_STAR] = ACTIONS(7495), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7495), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7495), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym_EQ_EQ] = ACTIONS(7497), + [anon_sym_BANG_EQ] = ACTIONS(7497), + [anon_sym_GT] = ACTIONS(7495), + [anon_sym_GT_EQ] = ACTIONS(7497), + [anon_sym_LT_EQ] = ACTIONS(7495), + [anon_sym_LT] = ACTIONS(7495), + [anon_sym_LT_LT] = ACTIONS(7495), + [anon_sym_GT_GT] = ACTIONS(7495), + [anon_sym___extension__] = ACTIONS(7497), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7497), + [anon_sym_EQ] = ACTIONS(7495), + [anon_sym_const] = ACTIONS(7495), + [anon_sym_constexpr] = ACTIONS(7497), + [anon_sym_volatile] = ACTIONS(7497), + [anon_sym_restrict] = ACTIONS(7497), + [anon_sym___restrict__] = ACTIONS(7497), + [anon_sym__Atomic] = ACTIONS(7497), + [anon_sym__Noreturn] = ACTIONS(7497), + [anon_sym_noreturn] = ACTIONS(7497), + [anon_sym__Nonnull] = ACTIONS(7497), + [anon_sym_mutable] = ACTIONS(7497), + [anon_sym_constinit] = ACTIONS(7497), + [anon_sym_consteval] = ACTIONS(7497), + [anon_sym_alignas] = ACTIONS(7497), + [anon_sym__Alignas] = ACTIONS(7497), + [anon_sym_QMARK] = ACTIONS(7497), + [anon_sym_STAR_EQ] = ACTIONS(7497), + [anon_sym_SLASH_EQ] = ACTIONS(7497), + [anon_sym_PERCENT_EQ] = ACTIONS(7497), + [anon_sym_PLUS_EQ] = ACTIONS(7497), + [anon_sym_DASH_EQ] = ACTIONS(7497), + [anon_sym_LT_LT_EQ] = ACTIONS(7497), + [anon_sym_GT_GT_EQ] = ACTIONS(7497), + [anon_sym_AMP_EQ] = ACTIONS(7497), + [anon_sym_CARET_EQ] = ACTIONS(7497), + [anon_sym_PIPE_EQ] = ACTIONS(7497), + [anon_sym_and_eq] = ACTIONS(7497), + [anon_sym_or_eq] = ACTIONS(7497), + [anon_sym_xor_eq] = ACTIONS(7497), + [anon_sym_LT_EQ_GT] = ACTIONS(7497), + [anon_sym_or] = ACTIONS(7495), + [anon_sym_and] = ACTIONS(7495), + [anon_sym_bitor] = ACTIONS(7497), + [anon_sym_xor] = ACTIONS(7495), + [anon_sym_bitand] = ACTIONS(7497), + [anon_sym_not_eq] = ACTIONS(7497), + [anon_sym_DASH_DASH] = ACTIONS(7497), + [anon_sym_PLUS_PLUS] = ACTIONS(7497), + [anon_sym_DOT] = ACTIONS(7495), + [anon_sym_DOT_STAR] = ACTIONS(7497), + [anon_sym_DASH_GT] = ACTIONS(7495), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7497), + [anon_sym_override] = ACTIONS(7497), + [anon_sym_requires] = ACTIONS(7497), + [anon_sym_DASH_GT_STAR] = ACTIONS(7497), + }, + [STATE(2704)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6602), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6602), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6602), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6602), + [anon_sym_GT_GT] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(6604), + [anon_sym___attribute__] = ACTIONS(6604), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6604), + [anon_sym_EQ] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6604), + [anon_sym_volatile] = ACTIONS(6604), + [anon_sym_restrict] = ACTIONS(6604), + [anon_sym___restrict__] = ACTIONS(6604), + [anon_sym__Atomic] = ACTIONS(6604), + [anon_sym__Noreturn] = ACTIONS(6604), + [anon_sym_noreturn] = ACTIONS(6604), + [anon_sym__Nonnull] = ACTIONS(6604), + [anon_sym_mutable] = ACTIONS(6604), + [anon_sym_constinit] = ACTIONS(6604), + [anon_sym_consteval] = ACTIONS(6604), + [anon_sym_alignas] = ACTIONS(6604), + [anon_sym__Alignas] = ACTIONS(6604), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_STAR_EQ] = ACTIONS(6604), + [anon_sym_SLASH_EQ] = ACTIONS(6604), + [anon_sym_PERCENT_EQ] = ACTIONS(6604), + [anon_sym_PLUS_EQ] = ACTIONS(6604), + [anon_sym_DASH_EQ] = ACTIONS(6604), + [anon_sym_LT_LT_EQ] = ACTIONS(6604), + [anon_sym_GT_GT_EQ] = ACTIONS(6604), + [anon_sym_AMP_EQ] = ACTIONS(6604), + [anon_sym_CARET_EQ] = ACTIONS(6604), + [anon_sym_PIPE_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6604), + [anon_sym_and] = ACTIONS(6604), + [anon_sym_bitor] = ACTIONS(6604), + [anon_sym_xor] = ACTIONS(6604), + [anon_sym_bitand] = ACTIONS(6604), + [anon_sym_not_eq] = ACTIONS(6604), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6604), + [anon_sym_decltype] = ACTIONS(6604), + [anon_sym_final] = ACTIONS(6604), + [anon_sym_override] = ACTIONS(6604), + [anon_sym_requires] = ACTIONS(6604), + [anon_sym_DASH_GT_STAR] = ACTIONS(6604), + }, + [STATE(2705)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6606), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6606), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6606), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6606), + [anon_sym_GT_GT] = ACTIONS(6606), + [anon_sym___extension__] = ACTIONS(6608), + [anon_sym___attribute__] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_EQ] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6608), + [anon_sym_volatile] = ACTIONS(6608), + [anon_sym_restrict] = ACTIONS(6608), + [anon_sym___restrict__] = ACTIONS(6608), + [anon_sym__Atomic] = ACTIONS(6608), + [anon_sym__Noreturn] = ACTIONS(6608), + [anon_sym_noreturn] = ACTIONS(6608), + [anon_sym__Nonnull] = ACTIONS(6608), + [anon_sym_mutable] = ACTIONS(6608), + [anon_sym_constinit] = ACTIONS(6608), + [anon_sym_consteval] = ACTIONS(6608), + [anon_sym_alignas] = ACTIONS(6608), + [anon_sym__Alignas] = ACTIONS(6608), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_STAR_EQ] = ACTIONS(6608), + [anon_sym_SLASH_EQ] = ACTIONS(6608), + [anon_sym_PERCENT_EQ] = ACTIONS(6608), + [anon_sym_PLUS_EQ] = ACTIONS(6608), + [anon_sym_DASH_EQ] = ACTIONS(6608), + [anon_sym_LT_LT_EQ] = ACTIONS(6608), + [anon_sym_GT_GT_EQ] = ACTIONS(6608), + [anon_sym_AMP_EQ] = ACTIONS(6608), + [anon_sym_CARET_EQ] = ACTIONS(6608), + [anon_sym_PIPE_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6608), + [anon_sym_and] = ACTIONS(6608), + [anon_sym_bitor] = ACTIONS(6608), + [anon_sym_xor] = ACTIONS(6608), + [anon_sym_bitand] = ACTIONS(6608), + [anon_sym_not_eq] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6606), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6608), + [anon_sym_decltype] = ACTIONS(6608), + [anon_sym_final] = ACTIONS(6608), + [anon_sym_override] = ACTIONS(6608), + [anon_sym_requires] = ACTIONS(6608), + [anon_sym_DASH_GT_STAR] = ACTIONS(6608), + }, + [STATE(2706)] = { + [sym_attribute_specifier] = STATE(3088), + [sym_enumerator_list] = STATE(2869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(8439), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_RBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7389), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_and_eq] = ACTIONS(7389), + [anon_sym_or_eq] = ACTIONS(7389), + [anon_sym_xor_eq] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), + }, + [STATE(2707)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_RPAREN] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6590), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6590), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6590), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6590), + [anon_sym_GT_GT] = ACTIONS(6590), + [anon_sym___extension__] = ACTIONS(6592), + [anon_sym___attribute__] = ACTIONS(6592), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6592), + [anon_sym_EQ] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6592), + [anon_sym_volatile] = ACTIONS(6592), + [anon_sym_restrict] = ACTIONS(6592), + [anon_sym___restrict__] = ACTIONS(6592), + [anon_sym__Atomic] = ACTIONS(6592), + [anon_sym__Noreturn] = ACTIONS(6592), + [anon_sym_noreturn] = ACTIONS(6592), + [anon_sym__Nonnull] = ACTIONS(6592), + [anon_sym_mutable] = ACTIONS(6592), + [anon_sym_constinit] = ACTIONS(6592), + [anon_sym_consteval] = ACTIONS(6592), + [anon_sym_alignas] = ACTIONS(6592), + [anon_sym__Alignas] = ACTIONS(6592), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_STAR_EQ] = ACTIONS(6592), + [anon_sym_SLASH_EQ] = ACTIONS(6592), + [anon_sym_PERCENT_EQ] = ACTIONS(6592), + [anon_sym_PLUS_EQ] = ACTIONS(6592), + [anon_sym_DASH_EQ] = ACTIONS(6592), + [anon_sym_LT_LT_EQ] = ACTIONS(6592), + [anon_sym_GT_GT_EQ] = ACTIONS(6592), + [anon_sym_AMP_EQ] = ACTIONS(6592), + [anon_sym_CARET_EQ] = ACTIONS(6592), + [anon_sym_PIPE_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6592), + [anon_sym_and] = ACTIONS(6592), + [anon_sym_bitor] = ACTIONS(6592), + [anon_sym_xor] = ACTIONS(6592), + [anon_sym_bitand] = ACTIONS(6592), + [anon_sym_not_eq] = ACTIONS(6592), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6592), + [anon_sym_decltype] = ACTIONS(6592), + [anon_sym_final] = ACTIONS(6592), + [anon_sym_override] = ACTIONS(6592), + [anon_sym_requires] = ACTIONS(6592), + [anon_sym_DASH_GT_STAR] = ACTIONS(6592), + }, + [STATE(2708)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6427), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), [anon_sym_long] = ACTIONS(59), @@ -370941,815 +371861,587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2695)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym__function_exception_specification] = STATE(3383), - [sym__function_attributes_end] = STATE(4576), - [sym__function_postfix] = STATE(5696), - [sym_trailing_return_type] = STATE(4740), - [sym_noexcept] = STATE(3383), - [sym_throw_specifier] = STATE(3383), - [sym_requires_clause] = STATE(5696), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7791), - [anon_sym_and] = ACTIONS(7791), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7791), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8514), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8517), - [anon_sym_override] = ACTIONS(8517), - [anon_sym_noexcept] = ACTIONS(6779), - [anon_sym_throw] = ACTIONS(6781), - [anon_sym_requires] = ACTIONS(8520), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), - }, - [STATE(2696)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7085), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7085), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7085), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7085), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(7085), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7090), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7085), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_and_eq] = ACTIONS(7090), - [anon_sym_or_eq] = ACTIONS(7090), - [anon_sym_xor_eq] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7090), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7090), - [anon_sym_not_eq] = ACTIONS(7090), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_GT2] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), - }, - [STATE(2697)] = { - [sym_attribute_specifier] = STATE(2950), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7437), - [anon_sym_COMMA] = ACTIONS(7437), - [anon_sym_RPAREN] = ACTIONS(7437), - [anon_sym_LPAREN2] = ACTIONS(7437), - [anon_sym_DASH] = ACTIONS(7435), - [anon_sym_PLUS] = ACTIONS(7435), - [anon_sym_STAR] = ACTIONS(7435), - [anon_sym_SLASH] = ACTIONS(7435), - [anon_sym_PERCENT] = ACTIONS(7435), - [anon_sym_PIPE_PIPE] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7437), - [anon_sym_PIPE] = ACTIONS(7435), - [anon_sym_CARET] = ACTIONS(7435), - [anon_sym_AMP] = ACTIONS(7435), - [anon_sym_EQ_EQ] = ACTIONS(7437), - [anon_sym_BANG_EQ] = ACTIONS(7437), - [anon_sym_GT] = ACTIONS(7435), - [anon_sym_GT_EQ] = ACTIONS(7437), - [anon_sym_LT_EQ] = ACTIONS(7435), - [anon_sym_LT] = ACTIONS(7435), - [anon_sym_LT_LT] = ACTIONS(7435), - [anon_sym_GT_GT] = ACTIONS(7435), - [anon_sym___extension__] = ACTIONS(7437), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7437), - [anon_sym_LBRACK] = ACTIONS(7437), - [anon_sym_EQ] = ACTIONS(7435), - [anon_sym_const] = ACTIONS(7435), - [anon_sym_constexpr] = ACTIONS(7437), - [anon_sym_volatile] = ACTIONS(7437), - [anon_sym_restrict] = ACTIONS(7437), - [anon_sym___restrict__] = ACTIONS(7437), - [anon_sym__Atomic] = ACTIONS(7437), - [anon_sym__Noreturn] = ACTIONS(7437), - [anon_sym_noreturn] = ACTIONS(7437), - [anon_sym__Nonnull] = ACTIONS(7437), - [anon_sym_mutable] = ACTIONS(7437), - [anon_sym_constinit] = ACTIONS(7437), - [anon_sym_consteval] = ACTIONS(7437), - [anon_sym_alignas] = ACTIONS(7437), - [anon_sym__Alignas] = ACTIONS(7437), - [anon_sym_QMARK] = ACTIONS(7437), - [anon_sym_STAR_EQ] = ACTIONS(7437), - [anon_sym_SLASH_EQ] = ACTIONS(7437), - [anon_sym_PERCENT_EQ] = ACTIONS(7437), - [anon_sym_PLUS_EQ] = ACTIONS(7437), - [anon_sym_DASH_EQ] = ACTIONS(7437), - [anon_sym_LT_LT_EQ] = ACTIONS(7437), - [anon_sym_GT_GT_EQ] = ACTIONS(7437), - [anon_sym_AMP_EQ] = ACTIONS(7437), - [anon_sym_CARET_EQ] = ACTIONS(7437), - [anon_sym_PIPE_EQ] = ACTIONS(7437), - [anon_sym_and_eq] = ACTIONS(7437), - [anon_sym_or_eq] = ACTIONS(7437), - [anon_sym_xor_eq] = ACTIONS(7437), - [anon_sym_LT_EQ_GT] = ACTIONS(7437), - [anon_sym_or] = ACTIONS(7435), - [anon_sym_and] = ACTIONS(7435), - [anon_sym_bitor] = ACTIONS(7437), - [anon_sym_xor] = ACTIONS(7435), - [anon_sym_bitand] = ACTIONS(7437), - [anon_sym_not_eq] = ACTIONS(7437), - [anon_sym_DASH_DASH] = ACTIONS(7437), - [anon_sym_PLUS_PLUS] = ACTIONS(7437), - [anon_sym_DOT] = ACTIONS(7435), - [anon_sym_DOT_STAR] = ACTIONS(7437), - [anon_sym_DASH_GT] = ACTIONS(7435), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7437), - [anon_sym_override] = ACTIONS(7437), - [anon_sym_requires] = ACTIONS(7437), - [anon_sym_DASH_GT_STAR] = ACTIONS(7437), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2698)] = { - [sym_decltype_auto] = STATE(3016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8529), - [anon_sym_decltype] = ACTIONS(6975), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + [STATE(2709)] = { + [sym_attribute_specifier] = STATE(3127), + [sym_enumerator_list] = STATE(2789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7387), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(8435), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7387), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_and_eq] = ACTIONS(7389), + [anon_sym_or_eq] = ACTIONS(7389), + [anon_sym_xor_eq] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7387), + [anon_sym_and] = ACTIONS(7387), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7387), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7389), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_GT2] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), }, - [STATE(2699)] = { - [sym_attribute_specifier] = STATE(2963), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7455), - [anon_sym_COMMA] = ACTIONS(7455), - [anon_sym_RPAREN] = ACTIONS(7455), - [anon_sym_LPAREN2] = ACTIONS(7455), - [anon_sym_DASH] = ACTIONS(7453), - [anon_sym_PLUS] = ACTIONS(7453), - [anon_sym_STAR] = ACTIONS(7453), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7453), - [anon_sym_PIPE_PIPE] = ACTIONS(7455), - [anon_sym_AMP_AMP] = ACTIONS(7455), - [anon_sym_PIPE] = ACTIONS(7453), - [anon_sym_CARET] = ACTIONS(7453), - [anon_sym_AMP] = ACTIONS(7453), - [anon_sym_EQ_EQ] = ACTIONS(7455), - [anon_sym_BANG_EQ] = ACTIONS(7455), - [anon_sym_GT] = ACTIONS(7453), - [anon_sym_GT_EQ] = ACTIONS(7455), - [anon_sym_LT_EQ] = ACTIONS(7453), - [anon_sym_LT] = ACTIONS(7453), - [anon_sym_LT_LT] = ACTIONS(7453), - [anon_sym_GT_GT] = ACTIONS(7453), - [anon_sym___extension__] = ACTIONS(7455), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7455), - [anon_sym_LBRACK] = ACTIONS(7455), - [anon_sym_EQ] = ACTIONS(7453), - [anon_sym_const] = ACTIONS(7453), - [anon_sym_constexpr] = ACTIONS(7455), - [anon_sym_volatile] = ACTIONS(7455), - [anon_sym_restrict] = ACTIONS(7455), - [anon_sym___restrict__] = ACTIONS(7455), - [anon_sym__Atomic] = ACTIONS(7455), - [anon_sym__Noreturn] = ACTIONS(7455), - [anon_sym_noreturn] = ACTIONS(7455), - [anon_sym__Nonnull] = ACTIONS(7455), - [anon_sym_mutable] = ACTIONS(7455), - [anon_sym_constinit] = ACTIONS(7455), - [anon_sym_consteval] = ACTIONS(7455), - [anon_sym_alignas] = ACTIONS(7455), - [anon_sym__Alignas] = ACTIONS(7455), - [anon_sym_QMARK] = ACTIONS(7455), - [anon_sym_STAR_EQ] = ACTIONS(7455), - [anon_sym_SLASH_EQ] = ACTIONS(7455), - [anon_sym_PERCENT_EQ] = ACTIONS(7455), - [anon_sym_PLUS_EQ] = ACTIONS(7455), - [anon_sym_DASH_EQ] = ACTIONS(7455), - [anon_sym_LT_LT_EQ] = ACTIONS(7455), - [anon_sym_GT_GT_EQ] = ACTIONS(7455), - [anon_sym_AMP_EQ] = ACTIONS(7455), - [anon_sym_CARET_EQ] = ACTIONS(7455), - [anon_sym_PIPE_EQ] = ACTIONS(7455), - [anon_sym_and_eq] = ACTIONS(7455), - [anon_sym_or_eq] = ACTIONS(7455), - [anon_sym_xor_eq] = ACTIONS(7455), - [anon_sym_LT_EQ_GT] = ACTIONS(7455), - [anon_sym_or] = ACTIONS(7453), - [anon_sym_and] = ACTIONS(7453), - [anon_sym_bitor] = ACTIONS(7455), - [anon_sym_xor] = ACTIONS(7453), - [anon_sym_bitand] = ACTIONS(7455), - [anon_sym_not_eq] = ACTIONS(7455), - [anon_sym_DASH_DASH] = ACTIONS(7455), - [anon_sym_PLUS_PLUS] = ACTIONS(7455), - [anon_sym_DOT] = ACTIONS(7453), - [anon_sym_DOT_STAR] = ACTIONS(7455), - [anon_sym_DASH_GT] = ACTIONS(7453), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7455), - [anon_sym_override] = ACTIONS(7455), - [anon_sym_requires] = ACTIONS(7455), - [anon_sym_DASH_GT_STAR] = ACTIONS(7455), + [STATE(2710)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(7525), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(1664), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2700)] = { - [sym_identifier] = ACTIONS(7108), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7110), - [anon_sym_COMMA] = ACTIONS(7110), - [anon_sym_RPAREN] = ACTIONS(7110), - [aux_sym_preproc_if_token2] = ACTIONS(7110), - [aux_sym_preproc_else_token1] = ACTIONS(7110), - [aux_sym_preproc_elif_token1] = ACTIONS(7108), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7110), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7110), - [anon_sym_LPAREN2] = ACTIONS(7110), - [anon_sym_DASH] = ACTIONS(7108), - [anon_sym_PLUS] = ACTIONS(7108), - [anon_sym_STAR] = ACTIONS(7110), - [anon_sym_SLASH] = ACTIONS(7108), - [anon_sym_PERCENT] = ACTIONS(7110), - [anon_sym_PIPE_PIPE] = ACTIONS(7110), - [anon_sym_AMP_AMP] = ACTIONS(7110), - [anon_sym_PIPE] = ACTIONS(7108), - [anon_sym_CARET] = ACTIONS(7110), - [anon_sym_AMP] = ACTIONS(7108), - [anon_sym_EQ_EQ] = ACTIONS(7110), - [anon_sym_BANG_EQ] = ACTIONS(7110), - [anon_sym_GT] = ACTIONS(7108), - [anon_sym_GT_EQ] = ACTIONS(7110), - [anon_sym_LT_EQ] = ACTIONS(7108), - [anon_sym_LT] = ACTIONS(7108), - [anon_sym_LT_LT] = ACTIONS(7110), - [anon_sym_GT_GT] = ACTIONS(7110), - [anon_sym_SEMI] = ACTIONS(7110), - [anon_sym___extension__] = ACTIONS(7108), - [anon_sym___attribute__] = ACTIONS(7108), - [anon_sym___attribute] = ACTIONS(7108), - [anon_sym_COLON] = ACTIONS(7108), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7110), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7110), - [anon_sym_RBRACE] = ACTIONS(7110), - [anon_sym_LBRACK] = ACTIONS(7108), - [anon_sym_const] = ACTIONS(7108), - [anon_sym_constexpr] = ACTIONS(7108), - [anon_sym_volatile] = ACTIONS(7108), - [anon_sym_restrict] = ACTIONS(7108), - [anon_sym___restrict__] = ACTIONS(7108), - [anon_sym__Atomic] = ACTIONS(7108), - [anon_sym__Noreturn] = ACTIONS(7108), - [anon_sym_noreturn] = ACTIONS(7108), - [anon_sym__Nonnull] = ACTIONS(7108), - [anon_sym_mutable] = ACTIONS(7108), - [anon_sym_constinit] = ACTIONS(7108), - [anon_sym_consteval] = ACTIONS(7108), - [anon_sym_alignas] = ACTIONS(7108), - [anon_sym__Alignas] = ACTIONS(7108), - [anon_sym_QMARK] = ACTIONS(7110), - [anon_sym_LT_EQ_GT] = ACTIONS(7110), - [anon_sym_or] = ACTIONS(7108), - [anon_sym_and] = ACTIONS(7108), - [anon_sym_bitor] = ACTIONS(7108), - [anon_sym_xor] = ACTIONS(7108), - [anon_sym_bitand] = ACTIONS(7108), - [anon_sym_not_eq] = ACTIONS(7108), - [anon_sym_DASH_DASH] = ACTIONS(7110), - [anon_sym_PLUS_PLUS] = ACTIONS(7110), - [anon_sym_asm] = ACTIONS(7108), - [anon_sym___asm__] = ACTIONS(7108), - [anon_sym___asm] = ACTIONS(7108), - [anon_sym_DOT] = ACTIONS(7108), - [anon_sym_DOT_STAR] = ACTIONS(7110), - [anon_sym_DASH_GT] = ACTIONS(7110), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7108), - [anon_sym_override] = ACTIONS(7108), - [anon_sym_noexcept] = ACTIONS(7108), - [anon_sym_throw] = ACTIONS(7108), - [anon_sym_requires] = ACTIONS(7108), - [anon_sym_COLON_RBRACK] = ACTIONS(7110), + [STATE(2711)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6596), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6596), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6596), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6596), + [anon_sym_GT_GT] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6598), + [anon_sym___attribute__] = ACTIONS(6598), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_EQ] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6598), + [anon_sym_volatile] = ACTIONS(6598), + [anon_sym_restrict] = ACTIONS(6598), + [anon_sym___restrict__] = ACTIONS(6598), + [anon_sym__Atomic] = ACTIONS(6598), + [anon_sym__Noreturn] = ACTIONS(6598), + [anon_sym_noreturn] = ACTIONS(6598), + [anon_sym__Nonnull] = ACTIONS(6598), + [anon_sym_mutable] = ACTIONS(6598), + [anon_sym_constinit] = ACTIONS(6598), + [anon_sym_consteval] = ACTIONS(6598), + [anon_sym_alignas] = ACTIONS(6598), + [anon_sym__Alignas] = ACTIONS(6598), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_STAR_EQ] = ACTIONS(6598), + [anon_sym_SLASH_EQ] = ACTIONS(6598), + [anon_sym_PERCENT_EQ] = ACTIONS(6598), + [anon_sym_PLUS_EQ] = ACTIONS(6598), + [anon_sym_DASH_EQ] = ACTIONS(6598), + [anon_sym_LT_LT_EQ] = ACTIONS(6598), + [anon_sym_GT_GT_EQ] = ACTIONS(6598), + [anon_sym_AMP_EQ] = ACTIONS(6598), + [anon_sym_CARET_EQ] = ACTIONS(6598), + [anon_sym_PIPE_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6598), + [anon_sym_and] = ACTIONS(6598), + [anon_sym_bitor] = ACTIONS(6598), + [anon_sym_xor] = ACTIONS(6598), + [anon_sym_bitand] = ACTIONS(6598), + [anon_sym_not_eq] = ACTIONS(6598), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6598), + [anon_sym_decltype] = ACTIONS(6598), + [anon_sym_final] = ACTIONS(6598), + [anon_sym_override] = ACTIONS(6598), + [anon_sym_requires] = ACTIONS(6598), + [anon_sym_DASH_GT_STAR] = ACTIONS(6598), }, - [STATE(2701)] = { - [sym_decltype_auto] = STATE(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8631), - [anon_sym_decltype] = ACTIONS(7038), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_GT2] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), + [STATE(2712)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6610), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6610), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6610), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6610), + [anon_sym_GT_GT] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6612), + [anon_sym___attribute__] = ACTIONS(6612), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_EQ] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6612), + [anon_sym_volatile] = ACTIONS(6612), + [anon_sym_restrict] = ACTIONS(6612), + [anon_sym___restrict__] = ACTIONS(6612), + [anon_sym__Atomic] = ACTIONS(6612), + [anon_sym__Noreturn] = ACTIONS(6612), + [anon_sym_noreturn] = ACTIONS(6612), + [anon_sym__Nonnull] = ACTIONS(6612), + [anon_sym_mutable] = ACTIONS(6612), + [anon_sym_constinit] = ACTIONS(6612), + [anon_sym_consteval] = ACTIONS(6612), + [anon_sym_alignas] = ACTIONS(6612), + [anon_sym__Alignas] = ACTIONS(6612), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_STAR_EQ] = ACTIONS(6612), + [anon_sym_SLASH_EQ] = ACTIONS(6612), + [anon_sym_PERCENT_EQ] = ACTIONS(6612), + [anon_sym_PLUS_EQ] = ACTIONS(6612), + [anon_sym_DASH_EQ] = ACTIONS(6612), + [anon_sym_LT_LT_EQ] = ACTIONS(6612), + [anon_sym_GT_GT_EQ] = ACTIONS(6612), + [anon_sym_AMP_EQ] = ACTIONS(6612), + [anon_sym_CARET_EQ] = ACTIONS(6612), + [anon_sym_PIPE_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6612), + [anon_sym_and] = ACTIONS(6612), + [anon_sym_bitor] = ACTIONS(6612), + [anon_sym_xor] = ACTIONS(6612), + [anon_sym_bitand] = ACTIONS(6612), + [anon_sym_not_eq] = ACTIONS(6612), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6612), + [anon_sym_decltype] = ACTIONS(6612), + [anon_sym_final] = ACTIONS(6612), + [anon_sym_override] = ACTIONS(6612), + [anon_sym_requires] = ACTIONS(6612), + [anon_sym_DASH_GT_STAR] = ACTIONS(6612), }, - [STATE(2702)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym__function_exception_specification] = STATE(3384), - [sym__function_attributes_end] = STATE(4591), - [sym__function_postfix] = STATE(5681), - [sym_trailing_return_type] = STATE(4660), - [sym_noexcept] = STATE(3384), - [sym_throw_specifier] = STATE(3384), - [sym_requires_clause] = STATE(5681), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7966), - [anon_sym_and] = ACTIONS(7966), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7966), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8595), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8633), - [anon_sym_override] = ACTIONS(8633), - [anon_sym_noexcept] = ACTIONS(6779), - [anon_sym_throw] = ACTIONS(6781), - [anon_sym_requires] = ACTIONS(8636), - [anon_sym_DASH_GT_STAR] = ACTIONS(7966), + [STATE(2713)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6614), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6614), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6614), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6614), + [anon_sym_GT_GT] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6616), + [anon_sym___attribute__] = ACTIONS(6616), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_EQ] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6616), + [anon_sym_volatile] = ACTIONS(6616), + [anon_sym_restrict] = ACTIONS(6616), + [anon_sym___restrict__] = ACTIONS(6616), + [anon_sym__Atomic] = ACTIONS(6616), + [anon_sym__Noreturn] = ACTIONS(6616), + [anon_sym_noreturn] = ACTIONS(6616), + [anon_sym__Nonnull] = ACTIONS(6616), + [anon_sym_mutable] = ACTIONS(6616), + [anon_sym_constinit] = ACTIONS(6616), + [anon_sym_consteval] = ACTIONS(6616), + [anon_sym_alignas] = ACTIONS(6616), + [anon_sym__Alignas] = ACTIONS(6616), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_STAR_EQ] = ACTIONS(6616), + [anon_sym_SLASH_EQ] = ACTIONS(6616), + [anon_sym_PERCENT_EQ] = ACTIONS(6616), + [anon_sym_PLUS_EQ] = ACTIONS(6616), + [anon_sym_DASH_EQ] = ACTIONS(6616), + [anon_sym_LT_LT_EQ] = ACTIONS(6616), + [anon_sym_GT_GT_EQ] = ACTIONS(6616), + [anon_sym_AMP_EQ] = ACTIONS(6616), + [anon_sym_CARET_EQ] = ACTIONS(6616), + [anon_sym_PIPE_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6616), + [anon_sym_and] = ACTIONS(6616), + [anon_sym_bitor] = ACTIONS(6616), + [anon_sym_xor] = ACTIONS(6616), + [anon_sym_bitand] = ACTIONS(6616), + [anon_sym_not_eq] = ACTIONS(6616), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6614), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6616), + [anon_sym_decltype] = ACTIONS(6616), + [anon_sym_final] = ACTIONS(6616), + [anon_sym_override] = ACTIONS(6616), + [anon_sym_requires] = ACTIONS(6616), + [anon_sym_DASH_GT_STAR] = ACTIONS(6616), }, - [STATE(2703)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7231), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7231), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7231), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7231), - [anon_sym_GT_GT] = ACTIONS(7231), - [anon_sym___extension__] = ACTIONS(7233), - [anon_sym___attribute__] = ACTIONS(7233), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(7233), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7233), - [anon_sym_EQ] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7233), - [anon_sym_volatile] = ACTIONS(7233), - [anon_sym_restrict] = ACTIONS(7233), - [anon_sym___restrict__] = ACTIONS(7233), - [anon_sym__Atomic] = ACTIONS(7233), - [anon_sym__Noreturn] = ACTIONS(7233), - [anon_sym_noreturn] = ACTIONS(7233), - [anon_sym__Nonnull] = ACTIONS(7233), - [anon_sym_mutable] = ACTIONS(7233), - [anon_sym_constinit] = ACTIONS(7233), - [anon_sym_consteval] = ACTIONS(7233), - [anon_sym_alignas] = ACTIONS(7233), - [anon_sym__Alignas] = ACTIONS(7233), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_STAR_EQ] = ACTIONS(7233), - [anon_sym_SLASH_EQ] = ACTIONS(7233), - [anon_sym_PERCENT_EQ] = ACTIONS(7233), - [anon_sym_PLUS_EQ] = ACTIONS(7233), - [anon_sym_DASH_EQ] = ACTIONS(7233), - [anon_sym_LT_LT_EQ] = ACTIONS(7233), - [anon_sym_GT_GT_EQ] = ACTIONS(7231), - [anon_sym_AMP_EQ] = ACTIONS(7233), - [anon_sym_CARET_EQ] = ACTIONS(7233), - [anon_sym_PIPE_EQ] = ACTIONS(7233), - [anon_sym_and_eq] = ACTIONS(7233), - [anon_sym_or_eq] = ACTIONS(7233), - [anon_sym_xor_eq] = ACTIONS(7233), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_bitor] = ACTIONS(7233), - [anon_sym_xor] = ACTIONS(7231), - [anon_sym_bitand] = ACTIONS(7233), - [anon_sym_not_eq] = ACTIONS(7233), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7233), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7233), - [anon_sym_override] = ACTIONS(7233), - [anon_sym_GT2] = ACTIONS(7233), - [anon_sym_requires] = ACTIONS(7233), + [STATE(2714)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [aux_sym_preproc_else_token1] = ACTIONS(3168), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), }, - [STATE(2704)] = { - [sym_attribute_specifier] = STATE(3046), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7415), - [anon_sym_COMMA] = ACTIONS(7415), - [anon_sym_RPAREN] = ACTIONS(7415), - [anon_sym_LPAREN2] = ACTIONS(7415), - [anon_sym_DASH] = ACTIONS(7413), - [anon_sym_PLUS] = ACTIONS(7413), - [anon_sym_STAR] = ACTIONS(7413), - [anon_sym_SLASH] = ACTIONS(7413), - [anon_sym_PERCENT] = ACTIONS(7413), - [anon_sym_PIPE_PIPE] = ACTIONS(7415), - [anon_sym_AMP_AMP] = ACTIONS(7415), - [anon_sym_PIPE] = ACTIONS(7413), - [anon_sym_CARET] = ACTIONS(7413), - [anon_sym_AMP] = ACTIONS(7413), - [anon_sym_EQ_EQ] = ACTIONS(7415), - [anon_sym_BANG_EQ] = ACTIONS(7415), - [anon_sym_GT] = ACTIONS(7413), - [anon_sym_GT_EQ] = ACTIONS(7415), - [anon_sym_LT_EQ] = ACTIONS(7413), - [anon_sym_LT] = ACTIONS(7413), - [anon_sym_LT_LT] = ACTIONS(7413), - [anon_sym_GT_GT] = ACTIONS(7413), - [anon_sym___extension__] = ACTIONS(7415), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7415), - [anon_sym_LBRACK] = ACTIONS(7415), - [anon_sym_EQ] = ACTIONS(7413), - [anon_sym_const] = ACTIONS(7413), - [anon_sym_constexpr] = ACTIONS(7415), - [anon_sym_volatile] = ACTIONS(7415), - [anon_sym_restrict] = ACTIONS(7415), - [anon_sym___restrict__] = ACTIONS(7415), - [anon_sym__Atomic] = ACTIONS(7415), - [anon_sym__Noreturn] = ACTIONS(7415), - [anon_sym_noreturn] = ACTIONS(7415), - [anon_sym__Nonnull] = ACTIONS(7415), - [anon_sym_mutable] = ACTIONS(7415), - [anon_sym_constinit] = ACTIONS(7415), - [anon_sym_consteval] = ACTIONS(7415), - [anon_sym_alignas] = ACTIONS(7415), - [anon_sym__Alignas] = ACTIONS(7415), - [anon_sym_QMARK] = ACTIONS(7415), - [anon_sym_STAR_EQ] = ACTIONS(7415), - [anon_sym_SLASH_EQ] = ACTIONS(7415), - [anon_sym_PERCENT_EQ] = ACTIONS(7415), - [anon_sym_PLUS_EQ] = ACTIONS(7415), - [anon_sym_DASH_EQ] = ACTIONS(7415), - [anon_sym_LT_LT_EQ] = ACTIONS(7415), - [anon_sym_GT_GT_EQ] = ACTIONS(7415), - [anon_sym_AMP_EQ] = ACTIONS(7415), - [anon_sym_CARET_EQ] = ACTIONS(7415), - [anon_sym_PIPE_EQ] = ACTIONS(7415), - [anon_sym_and_eq] = ACTIONS(7415), - [anon_sym_or_eq] = ACTIONS(7415), - [anon_sym_xor_eq] = ACTIONS(7415), - [anon_sym_LT_EQ_GT] = ACTIONS(7415), - [anon_sym_or] = ACTIONS(7413), - [anon_sym_and] = ACTIONS(7413), - [anon_sym_bitor] = ACTIONS(7415), - [anon_sym_xor] = ACTIONS(7413), - [anon_sym_bitand] = ACTIONS(7415), - [anon_sym_not_eq] = ACTIONS(7415), - [anon_sym_DASH_DASH] = ACTIONS(7415), - [anon_sym_PLUS_PLUS] = ACTIONS(7415), - [anon_sym_DOT] = ACTIONS(7413), - [anon_sym_DOT_STAR] = ACTIONS(7415), - [anon_sym_DASH_GT] = ACTIONS(7413), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7415), - [anon_sym_override] = ACTIONS(7415), - [anon_sym_requires] = ACTIONS(7415), - [anon_sym_DASH_GT_STAR] = ACTIONS(7415), + [STATE(2715)] = { + [sym_attribute_specifier] = STATE(3100), + [sym_enumerator_list] = STATE(2888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), + [anon_sym_COMMA] = ACTIONS(7383), + [anon_sym_LPAREN2] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7381), + [anon_sym_SLASH] = ACTIONS(7381), + [anon_sym_PERCENT] = ACTIONS(7381), + [anon_sym_PIPE_PIPE] = ACTIONS(7383), + [anon_sym_AMP_AMP] = ACTIONS(7383), + [anon_sym_PIPE] = ACTIONS(7381), + [anon_sym_CARET] = ACTIONS(7381), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(7383), + [anon_sym_BANG_EQ] = ACTIONS(7383), + [anon_sym_GT] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7383), + [anon_sym_LT_EQ] = ACTIONS(7381), + [anon_sym_LT] = ACTIONS(7381), + [anon_sym_LT_LT] = ACTIONS(7381), + [anon_sym_GT_GT] = ACTIONS(7381), + [anon_sym___extension__] = ACTIONS(7383), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(8439), + [anon_sym_LBRACK] = ACTIONS(7383), + [anon_sym_RBRACK] = ACTIONS(7383), + [anon_sym_EQ] = ACTIONS(7381), + [anon_sym_const] = ACTIONS(7381), + [anon_sym_constexpr] = ACTIONS(7383), + [anon_sym_volatile] = ACTIONS(7383), + [anon_sym_restrict] = ACTIONS(7383), + [anon_sym___restrict__] = ACTIONS(7383), + [anon_sym__Atomic] = ACTIONS(7383), + [anon_sym__Noreturn] = ACTIONS(7383), + [anon_sym_noreturn] = ACTIONS(7383), + [anon_sym__Nonnull] = ACTIONS(7383), + [anon_sym_mutable] = ACTIONS(7383), + [anon_sym_constinit] = ACTIONS(7383), + [anon_sym_consteval] = ACTIONS(7383), + [anon_sym_alignas] = ACTIONS(7383), + [anon_sym__Alignas] = ACTIONS(7383), + [anon_sym_QMARK] = ACTIONS(7383), + [anon_sym_STAR_EQ] = ACTIONS(7383), + [anon_sym_SLASH_EQ] = ACTIONS(7383), + [anon_sym_PERCENT_EQ] = ACTIONS(7383), + [anon_sym_PLUS_EQ] = ACTIONS(7383), + [anon_sym_DASH_EQ] = ACTIONS(7383), + [anon_sym_LT_LT_EQ] = ACTIONS(7383), + [anon_sym_GT_GT_EQ] = ACTIONS(7383), + [anon_sym_AMP_EQ] = ACTIONS(7383), + [anon_sym_CARET_EQ] = ACTIONS(7383), + [anon_sym_PIPE_EQ] = ACTIONS(7383), + [anon_sym_and_eq] = ACTIONS(7383), + [anon_sym_or_eq] = ACTIONS(7383), + [anon_sym_xor_eq] = ACTIONS(7383), + [anon_sym_LT_EQ_GT] = ACTIONS(7383), + [anon_sym_or] = ACTIONS(7381), + [anon_sym_and] = ACTIONS(7381), + [anon_sym_bitor] = ACTIONS(7383), + [anon_sym_xor] = ACTIONS(7381), + [anon_sym_bitand] = ACTIONS(7383), + [anon_sym_not_eq] = ACTIONS(7383), + [anon_sym_DASH_DASH] = ACTIONS(7383), + [anon_sym_PLUS_PLUS] = ACTIONS(7383), + [anon_sym_DOT] = ACTIONS(7381), + [anon_sym_DOT_STAR] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7383), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7383), + [anon_sym_override] = ACTIONS(7383), + [anon_sym_requires] = ACTIONS(7383), }, - [STATE(2705)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6484), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2716)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6487), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -371777,55 +372469,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2706)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(7515), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2717)] = { + [sym_identifier] = ACTIONS(3326), + [aux_sym_preproc_def_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token2] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3326), + [aux_sym_preproc_else_token1] = ACTIONS(3326), + [aux_sym_preproc_elif_token1] = ACTIONS(3326), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3326), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3326), + [sym_preproc_directive] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym___extension__] = ACTIONS(3326), + [anon_sym_typedef] = ACTIONS(3326), + [anon_sym_virtual] = ACTIONS(3326), + [anon_sym_extern] = ACTIONS(3326), + [anon_sym___attribute__] = ACTIONS(3326), + [anon_sym___attribute] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3328), + [anon_sym___declspec] = ACTIONS(3326), + [anon_sym___based] = ACTIONS(3326), + [anon_sym_signed] = ACTIONS(3326), + [anon_sym_unsigned] = ACTIONS(3326), + [anon_sym_long] = ACTIONS(3326), + [anon_sym_short] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_register] = ACTIONS(3326), + [anon_sym_inline] = ACTIONS(3326), + [anon_sym___inline] = ACTIONS(3326), + [anon_sym___inline__] = ACTIONS(3326), + [anon_sym___forceinline] = ACTIONS(3326), + [anon_sym_thread_local] = ACTIONS(3326), + [anon_sym___thread] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_constexpr] = ACTIONS(3326), + [anon_sym_volatile] = ACTIONS(3326), + [anon_sym_restrict] = ACTIONS(3326), + [anon_sym___restrict__] = ACTIONS(3326), + [anon_sym__Atomic] = ACTIONS(3326), + [anon_sym__Noreturn] = ACTIONS(3326), + [anon_sym_noreturn] = ACTIONS(3326), + [anon_sym__Nonnull] = ACTIONS(3326), + [anon_sym_mutable] = ACTIONS(3326), + [anon_sym_constinit] = ACTIONS(3326), + [anon_sym_consteval] = ACTIONS(3326), + [anon_sym_alignas] = ACTIONS(3326), + [anon_sym__Alignas] = ACTIONS(3326), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_union] = ACTIONS(3326), + [anon_sym_typename] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3326), + [anon_sym_decltype] = ACTIONS(3326), + [anon_sym_explicit] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_template] = ACTIONS(3326), + [anon_sym_operator] = ACTIONS(3326), + [anon_sym_friend] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_static_assert] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_LBRACK_COLON] = ACTIONS(3328), + }, + [STATE(2718)] = { + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym__function_exception_specification] = STATE(3385), + [sym__function_attributes_end] = STATE(4581), + [sym__function_postfix] = STATE(5706), + [sym_trailing_return_type] = STATE(4724), + [sym_noexcept] = STATE(3385), + [sym_throw_specifier] = STATE(3385), + [sym_requires_clause] = STATE(5706), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7970), + [anon_sym_and] = ACTIONS(7970), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7970), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8617), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_noexcept] = ACTIONS(6803), + [anon_sym_throw] = ACTIONS(6805), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(7970), + }, + [STATE(2719)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6489), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -371853,55 +372697,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2707)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6485), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2720)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6490), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -371929,55 +372773,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2708)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6486), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2721)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6491), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -372005,131 +372849,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2709)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7199), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7199), - [anon_sym_GT_GT] = ACTIONS(7199), - [anon_sym___extension__] = ACTIONS(7201), - [sym_ms_restrict_modifier] = ACTIONS(7199), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7201), - [sym_ms_signed_ptr_modifier] = ACTIONS(7201), - [anon_sym__unaligned] = ACTIONS(7201), - [anon_sym___unaligned] = ACTIONS(7201), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_EQ] = ACTIONS(7199), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7201), - [anon_sym_volatile] = ACTIONS(7201), - [anon_sym_restrict] = ACTIONS(7201), - [anon_sym___restrict__] = ACTIONS(7201), - [anon_sym__Atomic] = ACTIONS(7201), - [anon_sym__Noreturn] = ACTIONS(7201), - [anon_sym_noreturn] = ACTIONS(7201), - [anon_sym__Nonnull] = ACTIONS(7201), - [anon_sym_mutable] = ACTIONS(7201), - [anon_sym_constinit] = ACTIONS(7201), - [anon_sym_consteval] = ACTIONS(7201), - [anon_sym_alignas] = ACTIONS(7201), - [anon_sym__Alignas] = ACTIONS(7201), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_STAR_EQ] = ACTIONS(7201), - [anon_sym_SLASH_EQ] = ACTIONS(7201), - [anon_sym_PERCENT_EQ] = ACTIONS(7201), - [anon_sym_PLUS_EQ] = ACTIONS(7201), - [anon_sym_DASH_EQ] = ACTIONS(7201), - [anon_sym_LT_LT_EQ] = ACTIONS(7201), - [anon_sym_GT_GT_EQ] = ACTIONS(7199), - [anon_sym_AMP_EQ] = ACTIONS(7201), - [anon_sym_CARET_EQ] = ACTIONS(7201), - [anon_sym_PIPE_EQ] = ACTIONS(7201), - [anon_sym_and_eq] = ACTIONS(7201), - [anon_sym_or_eq] = ACTIONS(7201), - [anon_sym_xor_eq] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7199), - [anon_sym_and] = ACTIONS(7199), - [anon_sym_bitor] = ACTIONS(7201), - [anon_sym_xor] = ACTIONS(7199), - [anon_sym_bitand] = ACTIONS(7201), - [anon_sym_not_eq] = ACTIONS(7201), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7201), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7201), - [anon_sym_override] = ACTIONS(7201), - [anon_sym_GT2] = ACTIONS(7201), - [anon_sym_requires] = ACTIONS(7201), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2710)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6488), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2722)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6492), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -372157,55 +372925,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2711)] = { - [sym__declaration_modifiers] = STATE(2856), - [sym__declaration_specifiers] = STATE(6489), - [sym_attribute_specifier] = STATE(2856), - [sym_attribute_declaration] = STATE(2856), - [sym_ms_declspec_modifier] = STATE(2856), - [sym_storage_class_specifier] = STATE(2856), - [sym_type_qualifier] = STATE(2856), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4017), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(2856), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2723)] = { + [sym__declaration_modifiers] = STATE(2819), + [sym__declaration_specifiers] = STATE(6493), + [sym_attribute_specifier] = STATE(2819), + [sym_attribute_declaration] = STATE(2819), + [sym_ms_declspec_modifier] = STATE(2819), + [sym_storage_class_specifier] = STATE(2819), + [sym_type_qualifier] = STATE(2819), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3985), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(2819), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(1666), + [anon_sym_virtual] = ACTIONS(1664), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -372233,658 +373001,663 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), + [sym_primitive_type] = ACTIONS(3464), [anon_sym_enum] = ACTIONS(75), [anon_sym_class] = ACTIONS(77), [anon_sym_struct] = ACTIONS(79), [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [anon_sym_typename] = ACTIONS(5462), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2712)] = { - [sym_decltype_auto] = STATE(3205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8639), - [anon_sym_decltype] = ACTIONS(7073), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), + [STATE(2724)] = { + [sym_identifier] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [aux_sym_preproc_if_token2] = ACTIONS(3116), + [aux_sym_preproc_else_token1] = ACTIONS(3116), + [aux_sym_preproc_elif_token1] = ACTIONS(3126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3116), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_PERCENT] = ACTIONS(3116), + [anon_sym_PIPE_PIPE] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_PIPE] = ACTIONS(3126), + [anon_sym_CARET] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_EQ_EQ] = ACTIONS(3116), + [anon_sym_BANG_EQ] = ACTIONS(3116), + [anon_sym_GT] = ACTIONS(3126), + [anon_sym_GT_EQ] = ACTIONS(3116), + [anon_sym_LT_EQ] = ACTIONS(3126), + [anon_sym_LT] = ACTIONS(3126), + [anon_sym_LT_LT] = ACTIONS(3116), + [anon_sym_GT_GT] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON] = ACTIONS(3126), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_QMARK] = ACTIONS(3116), + [anon_sym_LT_EQ_GT] = ACTIONS(3116), + [anon_sym_or] = ACTIONS(3126), + [anon_sym_and] = ACTIONS(3126), + [anon_sym_bitor] = ACTIONS(3126), + [anon_sym_xor] = ACTIONS(3126), + [anon_sym_bitand] = ACTIONS(3126), + [anon_sym_not_eq] = ACTIONS(3126), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DOT_STAR] = ACTIONS(3116), + [anon_sym_DASH_GT] = ACTIONS(3116), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3126), + [anon_sym_override] = ACTIONS(3126), + [anon_sym_requires] = ACTIONS(3126), + [anon_sym_COLON_RBRACK] = ACTIONS(3116), }, - [STATE(2713)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [aux_sym_preproc_else_token1] = ACTIONS(3163), - [aux_sym_preproc_elif_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_friend] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_catch] = ACTIONS(3163), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [STATE(2725)] = { + [sym_argument_list] = STATE(5813), + [sym_initializer_list] = STATE(5760), + [aux_sym_sized_type_specifier_repeat1] = STATE(2490), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8630), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_signed] = ACTIONS(8374), + [anon_sym_unsigned] = ACTIONS(8374), + [anon_sym_long] = ACTIONS(8374), + [anon_sym_short] = ACTIONS(8374), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7246), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7248), }, - [STATE(2714)] = { - [sym_identifier] = ACTIONS(3155), - [aux_sym_preproc_def_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token2] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), - [aux_sym_preproc_else_token1] = ACTIONS(3155), - [aux_sym_preproc_elif_token1] = ACTIONS(3155), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3155), - [sym_preproc_directive] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym___attribute] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym__Nonnull] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym__Alignas] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_friend] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_protected] = ACTIONS(3155), - [anon_sym_static_assert] = ACTIONS(3155), - [anon_sym_catch] = ACTIONS(3155), - [anon_sym_LBRACK_COLON] = ACTIONS(3153), + [STATE(2726)] = { + [sym_attribute_specifier] = STATE(2991), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7503), + [anon_sym_COMMA] = ACTIONS(7503), + [anon_sym_RPAREN] = ACTIONS(7503), + [anon_sym_LPAREN2] = ACTIONS(7503), + [anon_sym_DASH] = ACTIONS(7501), + [anon_sym_PLUS] = ACTIONS(7501), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(7501), + [anon_sym_PERCENT] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(7501), + [anon_sym_CARET] = ACTIONS(7501), + [anon_sym_AMP] = ACTIONS(7501), + [anon_sym_EQ_EQ] = ACTIONS(7503), + [anon_sym_BANG_EQ] = ACTIONS(7503), + [anon_sym_GT] = ACTIONS(7501), + [anon_sym_GT_EQ] = ACTIONS(7503), + [anon_sym_LT_EQ] = ACTIONS(7501), + [anon_sym_LT] = ACTIONS(7501), + [anon_sym_LT_LT] = ACTIONS(7501), + [anon_sym_GT_GT] = ACTIONS(7501), + [anon_sym___extension__] = ACTIONS(7503), + [anon_sym___attribute__] = ACTIONS(8176), + [anon_sym___attribute] = ACTIONS(8178), + [anon_sym_LBRACE] = ACTIONS(7503), + [anon_sym_LBRACK] = ACTIONS(7503), + [anon_sym_EQ] = ACTIONS(7501), + [anon_sym_const] = ACTIONS(7501), + [anon_sym_constexpr] = ACTIONS(7503), + [anon_sym_volatile] = ACTIONS(7503), + [anon_sym_restrict] = ACTIONS(7503), + [anon_sym___restrict__] = ACTIONS(7503), + [anon_sym__Atomic] = ACTIONS(7503), + [anon_sym__Noreturn] = ACTIONS(7503), + [anon_sym_noreturn] = ACTIONS(7503), + [anon_sym__Nonnull] = ACTIONS(7503), + [anon_sym_mutable] = ACTIONS(7503), + [anon_sym_constinit] = ACTIONS(7503), + [anon_sym_consteval] = ACTIONS(7503), + [anon_sym_alignas] = ACTIONS(7503), + [anon_sym__Alignas] = ACTIONS(7503), + [anon_sym_QMARK] = ACTIONS(7503), + [anon_sym_STAR_EQ] = ACTIONS(7503), + [anon_sym_SLASH_EQ] = ACTIONS(7503), + [anon_sym_PERCENT_EQ] = ACTIONS(7503), + [anon_sym_PLUS_EQ] = ACTIONS(7503), + [anon_sym_DASH_EQ] = ACTIONS(7503), + [anon_sym_LT_LT_EQ] = ACTIONS(7503), + [anon_sym_GT_GT_EQ] = ACTIONS(7503), + [anon_sym_AMP_EQ] = ACTIONS(7503), + [anon_sym_CARET_EQ] = ACTIONS(7503), + [anon_sym_PIPE_EQ] = ACTIONS(7503), + [anon_sym_and_eq] = ACTIONS(7503), + [anon_sym_or_eq] = ACTIONS(7503), + [anon_sym_xor_eq] = ACTIONS(7503), + [anon_sym_LT_EQ_GT] = ACTIONS(7503), + [anon_sym_or] = ACTIONS(7501), + [anon_sym_and] = ACTIONS(7501), + [anon_sym_bitor] = ACTIONS(7503), + [anon_sym_xor] = ACTIONS(7501), + [anon_sym_bitand] = ACTIONS(7503), + [anon_sym_not_eq] = ACTIONS(7503), + [anon_sym_DASH_DASH] = ACTIONS(7503), + [anon_sym_PLUS_PLUS] = ACTIONS(7503), + [anon_sym_DOT] = ACTIONS(7501), + [anon_sym_DOT_STAR] = ACTIONS(7503), + [anon_sym_DASH_GT] = ACTIONS(7501), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7503), + [anon_sym_override] = ACTIONS(7503), + [anon_sym_requires] = ACTIONS(7503), + [anon_sym_DASH_GT_STAR] = ACTIONS(7503), }, - [STATE(2715)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_RPAREN] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6632), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6632), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6632), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6632), - [anon_sym_GT_GT] = ACTIONS(6632), - [anon_sym___extension__] = ACTIONS(6634), - [anon_sym___attribute__] = ACTIONS(6634), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6634), - [anon_sym_EQ] = ACTIONS(6632), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6634), - [anon_sym_volatile] = ACTIONS(6634), - [anon_sym_restrict] = ACTIONS(6634), - [anon_sym___restrict__] = ACTIONS(6634), - [anon_sym__Atomic] = ACTIONS(6634), - [anon_sym__Noreturn] = ACTIONS(6634), - [anon_sym_noreturn] = ACTIONS(6634), - [anon_sym__Nonnull] = ACTIONS(6634), - [anon_sym_mutable] = ACTIONS(6634), - [anon_sym_constinit] = ACTIONS(6634), - [anon_sym_consteval] = ACTIONS(6634), - [anon_sym_alignas] = ACTIONS(6634), - [anon_sym__Alignas] = ACTIONS(6634), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_STAR_EQ] = ACTIONS(6634), - [anon_sym_SLASH_EQ] = ACTIONS(6634), - [anon_sym_PERCENT_EQ] = ACTIONS(6634), - [anon_sym_PLUS_EQ] = ACTIONS(6634), - [anon_sym_DASH_EQ] = ACTIONS(6634), - [anon_sym_LT_LT_EQ] = ACTIONS(6634), - [anon_sym_GT_GT_EQ] = ACTIONS(6634), - [anon_sym_AMP_EQ] = ACTIONS(6634), - [anon_sym_CARET_EQ] = ACTIONS(6634), - [anon_sym_PIPE_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6634), - [anon_sym_and] = ACTIONS(6634), - [anon_sym_bitor] = ACTIONS(6634), - [anon_sym_xor] = ACTIONS(6634), - [anon_sym_bitand] = ACTIONS(6634), - [anon_sym_not_eq] = ACTIONS(6634), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6632), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6634), - [anon_sym_decltype] = ACTIONS(6634), - [anon_sym_final] = ACTIONS(6634), - [anon_sym_override] = ACTIONS(6634), - [anon_sym_requires] = ACTIONS(6634), - [anon_sym_DASH_GT_STAR] = ACTIONS(6634), + [STATE(2727)] = { + [sym_identifier] = ACTIONS(7140), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7142), + [anon_sym_COMMA] = ACTIONS(7142), + [anon_sym_RPAREN] = ACTIONS(7142), + [aux_sym_preproc_if_token2] = ACTIONS(7142), + [aux_sym_preproc_else_token1] = ACTIONS(7142), + [aux_sym_preproc_elif_token1] = ACTIONS(7140), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7142), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7142), + [anon_sym_LPAREN2] = ACTIONS(7142), + [anon_sym_DASH] = ACTIONS(7140), + [anon_sym_PLUS] = ACTIONS(7140), + [anon_sym_STAR] = ACTIONS(7142), + [anon_sym_SLASH] = ACTIONS(7140), + [anon_sym_PERCENT] = ACTIONS(7142), + [anon_sym_PIPE_PIPE] = ACTIONS(7142), + [anon_sym_AMP_AMP] = ACTIONS(7142), + [anon_sym_PIPE] = ACTIONS(7140), + [anon_sym_CARET] = ACTIONS(7142), + [anon_sym_AMP] = ACTIONS(7140), + [anon_sym_EQ_EQ] = ACTIONS(7142), + [anon_sym_BANG_EQ] = ACTIONS(7142), + [anon_sym_GT] = ACTIONS(7140), + [anon_sym_GT_EQ] = ACTIONS(7142), + [anon_sym_LT_EQ] = ACTIONS(7140), + [anon_sym_LT] = ACTIONS(7140), + [anon_sym_LT_LT] = ACTIONS(7142), + [anon_sym_GT_GT] = ACTIONS(7142), + [anon_sym_SEMI] = ACTIONS(7142), + [anon_sym___extension__] = ACTIONS(7140), + [anon_sym___attribute__] = ACTIONS(7140), + [anon_sym___attribute] = ACTIONS(7140), + [anon_sym_COLON] = ACTIONS(7140), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7142), + [anon_sym_RBRACE] = ACTIONS(7142), + [anon_sym_LBRACK] = ACTIONS(7140), + [anon_sym_const] = ACTIONS(7140), + [anon_sym_constexpr] = ACTIONS(7140), + [anon_sym_volatile] = ACTIONS(7140), + [anon_sym_restrict] = ACTIONS(7140), + [anon_sym___restrict__] = ACTIONS(7140), + [anon_sym__Atomic] = ACTIONS(7140), + [anon_sym__Noreturn] = ACTIONS(7140), + [anon_sym_noreturn] = ACTIONS(7140), + [anon_sym__Nonnull] = ACTIONS(7140), + [anon_sym_mutable] = ACTIONS(7140), + [anon_sym_constinit] = ACTIONS(7140), + [anon_sym_consteval] = ACTIONS(7140), + [anon_sym_alignas] = ACTIONS(7140), + [anon_sym__Alignas] = ACTIONS(7140), + [anon_sym_QMARK] = ACTIONS(7142), + [anon_sym_LT_EQ_GT] = ACTIONS(7142), + [anon_sym_or] = ACTIONS(7140), + [anon_sym_and] = ACTIONS(7140), + [anon_sym_bitor] = ACTIONS(7140), + [anon_sym_xor] = ACTIONS(7140), + [anon_sym_bitand] = ACTIONS(7140), + [anon_sym_not_eq] = ACTIONS(7140), + [anon_sym_DASH_DASH] = ACTIONS(7142), + [anon_sym_PLUS_PLUS] = ACTIONS(7142), + [anon_sym_asm] = ACTIONS(7140), + [anon_sym___asm__] = ACTIONS(7140), + [anon_sym___asm] = ACTIONS(7140), + [anon_sym_DOT] = ACTIONS(7140), + [anon_sym_DOT_STAR] = ACTIONS(7142), + [anon_sym_DASH_GT] = ACTIONS(7142), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7140), + [anon_sym_override] = ACTIONS(7140), + [anon_sym_noexcept] = ACTIONS(7140), + [anon_sym_throw] = ACTIONS(7140), + [anon_sym_requires] = ACTIONS(7140), + [anon_sym_COLON_RBRACK] = ACTIONS(7142), }, - [STATE(2716)] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [aux_sym_preproc_else_token1] = ACTIONS(3362), - [aux_sym_preproc_elif_token1] = ACTIONS(3362), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym___attribute] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym__Nonnull] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym__Alignas] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_friend] = ACTIONS(3362), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_catch] = ACTIONS(3362), - [anon_sym_LBRACK_COLON] = ACTIONS(3364), + [STATE(2728)] = { + [sym_decltype_auto] = STATE(3149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8633), + [anon_sym_decltype] = ACTIONS(7056), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), }, - [STATE(2717)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_RPAREN] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), + [STATE(2729)] = { + [sym_identifier] = ACTIONS(4239), + [aux_sym_preproc_def_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token2] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4239), + [aux_sym_preproc_else_token1] = ACTIONS(4239), + [aux_sym_preproc_elif_token1] = ACTIONS(4239), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4239), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4239), + [sym_preproc_directive] = ACTIONS(4239), + [anon_sym_LPAREN2] = ACTIONS(4241), + [anon_sym_TILDE] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym___extension__] = ACTIONS(4239), + [anon_sym_typedef] = ACTIONS(4239), + [anon_sym_virtual] = ACTIONS(4239), + [anon_sym_extern] = ACTIONS(4239), + [anon_sym___attribute__] = ACTIONS(4239), + [anon_sym___attribute] = ACTIONS(4239), + [anon_sym_using] = ACTIONS(4239), + [anon_sym_COLON_COLON] = ACTIONS(4241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4241), + [anon_sym___declspec] = ACTIONS(4239), + [anon_sym___based] = ACTIONS(4239), + [anon_sym_signed] = ACTIONS(4239), + [anon_sym_unsigned] = ACTIONS(4239), + [anon_sym_long] = ACTIONS(4239), + [anon_sym_short] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_static] = ACTIONS(4239), + [anon_sym_register] = ACTIONS(4239), + [anon_sym_inline] = ACTIONS(4239), + [anon_sym___inline] = ACTIONS(4239), + [anon_sym___inline__] = ACTIONS(4239), + [anon_sym___forceinline] = ACTIONS(4239), + [anon_sym_thread_local] = ACTIONS(4239), + [anon_sym___thread] = ACTIONS(4239), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_constexpr] = ACTIONS(4239), + [anon_sym_volatile] = ACTIONS(4239), + [anon_sym_restrict] = ACTIONS(4239), + [anon_sym___restrict__] = ACTIONS(4239), + [anon_sym__Atomic] = ACTIONS(4239), + [anon_sym__Noreturn] = ACTIONS(4239), + [anon_sym_noreturn] = ACTIONS(4239), + [anon_sym__Nonnull] = ACTIONS(4239), + [anon_sym_mutable] = ACTIONS(4239), + [anon_sym_constinit] = ACTIONS(4239), + [anon_sym_consteval] = ACTIONS(4239), + [anon_sym_alignas] = ACTIONS(4239), + [anon_sym__Alignas] = ACTIONS(4239), + [sym_primitive_type] = ACTIONS(4239), + [anon_sym_enum] = ACTIONS(4239), + [anon_sym_class] = ACTIONS(4239), + [anon_sym_struct] = ACTIONS(4239), + [anon_sym_union] = ACTIONS(4239), + [anon_sym_typename] = ACTIONS(4239), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4239), + [anon_sym_decltype] = ACTIONS(4239), + [anon_sym_explicit] = ACTIONS(4239), + [anon_sym_private] = ACTIONS(4239), + [anon_sym_template] = ACTIONS(4239), + [anon_sym_operator] = ACTIONS(4239), + [anon_sym_friend] = ACTIONS(4239), + [anon_sym_public] = ACTIONS(4239), + [anon_sym_protected] = ACTIONS(4239), + [anon_sym_static_assert] = ACTIONS(4239), + [anon_sym_LBRACK_COLON] = ACTIONS(4241), + }, + [STATE(2730)] = { + [sym_identifier] = ACTIONS(6602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [anon_sym_RPAREN] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6604), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym_SEMI] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(6602), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6604), + [anon_sym___based] = ACTIONS(6602), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_RBRACE] = ACTIONS(6604), + [anon_sym_signed] = ACTIONS(6602), + [anon_sym_unsigned] = ACTIONS(6602), + [anon_sym_long] = ACTIONS(6602), + [anon_sym_short] = ACTIONS(6602), + [anon_sym_LBRACK] = ACTIONS(6604), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [sym_primitive_type] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6602), + [anon_sym_decltype] = ACTIONS(6602), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_requires] = ACTIONS(6602), + [anon_sym_COLON_RBRACK] = ACTIONS(6604), + }, + [STATE(2731)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_RPAREN] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7743), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7743), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7743), + [anon_sym_AMP] = ACTIONS(7743), + [anon_sym_EQ_EQ] = ACTIONS(7745), + [anon_sym_BANG_EQ] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7743), + [anon_sym_GT_EQ] = ACTIONS(7745), + [anon_sym_LT_EQ] = ACTIONS(7743), + [anon_sym_LT] = ACTIONS(7743), + [anon_sym_LT_LT] = ACTIONS(7743), + [anon_sym_GT_GT] = ACTIONS(7743), + [anon_sym___extension__] = ACTIONS(7745), + [anon_sym___attribute__] = ACTIONS(7745), + [anon_sym___attribute] = ACTIONS(7743), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7745), + [anon_sym_volatile] = ACTIONS(7745), + [anon_sym_restrict] = ACTIONS(7745), + [anon_sym___restrict__] = ACTIONS(7745), + [anon_sym__Atomic] = ACTIONS(7745), + [anon_sym__Noreturn] = ACTIONS(7745), + [anon_sym_noreturn] = ACTIONS(7745), + [anon_sym__Nonnull] = ACTIONS(7745), + [anon_sym_mutable] = ACTIONS(7745), + [anon_sym_constinit] = ACTIONS(7745), + [anon_sym_consteval] = ACTIONS(7745), + [anon_sym_alignas] = ACTIONS(7745), + [anon_sym__Alignas] = ACTIONS(7745), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_STAR_EQ] = ACTIONS(7745), + [anon_sym_SLASH_EQ] = ACTIONS(7745), + [anon_sym_PERCENT_EQ] = ACTIONS(7745), + [anon_sym_PLUS_EQ] = ACTIONS(7745), + [anon_sym_DASH_EQ] = ACTIONS(7745), + [anon_sym_LT_LT_EQ] = ACTIONS(7745), + [anon_sym_GT_GT_EQ] = ACTIONS(7745), + [anon_sym_AMP_EQ] = ACTIONS(7745), + [anon_sym_CARET_EQ] = ACTIONS(7745), + [anon_sym_PIPE_EQ] = ACTIONS(7745), + [anon_sym_and_eq] = ACTIONS(7745), + [anon_sym_or_eq] = ACTIONS(7745), + [anon_sym_xor_eq] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7745), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7745), + [anon_sym_not_eq] = ACTIONS(7745), + [anon_sym_DASH_DASH] = ACTIONS(7745), + [anon_sym_PLUS_PLUS] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(7743), + [anon_sym_DOT_STAR] = ACTIONS(7745), + [anon_sym_DASH_GT] = ACTIONS(7743), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7745), + [anon_sym_override] = ACTIONS(7745), + [anon_sym_requires] = ACTIONS(7745), + [anon_sym_DASH_GT_STAR] = ACTIONS(7745), + }, + [STATE(2732)] = { + [sym_identifier] = ACTIONS(6610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [anon_sym_RPAREN] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), [anon_sym_STAR] = ACTIONS(6612), - [anon_sym_SLASH] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6610), [anon_sym_PERCENT] = ACTIONS(6612), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), [anon_sym_CARET] = ACTIONS(6612), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), [anon_sym_LT_LT] = ACTIONS(6612), [anon_sym_GT_GT] = ACTIONS(6612), - [anon_sym___extension__] = ACTIONS(6614), - [anon_sym___attribute__] = ACTIONS(6614), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6614), - [anon_sym_EQ] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6614), - [anon_sym_volatile] = ACTIONS(6614), - [anon_sym_restrict] = ACTIONS(6614), - [anon_sym___restrict__] = ACTIONS(6614), - [anon_sym__Atomic] = ACTIONS(6614), - [anon_sym__Noreturn] = ACTIONS(6614), - [anon_sym_noreturn] = ACTIONS(6614), - [anon_sym__Nonnull] = ACTIONS(6614), - [anon_sym_mutable] = ACTIONS(6614), - [anon_sym_constinit] = ACTIONS(6614), - [anon_sym_consteval] = ACTIONS(6614), - [anon_sym_alignas] = ACTIONS(6614), - [anon_sym__Alignas] = ACTIONS(6614), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_STAR_EQ] = ACTIONS(6614), - [anon_sym_SLASH_EQ] = ACTIONS(6614), - [anon_sym_PERCENT_EQ] = ACTIONS(6614), - [anon_sym_PLUS_EQ] = ACTIONS(6614), - [anon_sym_DASH_EQ] = ACTIONS(6614), - [anon_sym_LT_LT_EQ] = ACTIONS(6614), - [anon_sym_GT_GT_EQ] = ACTIONS(6614), - [anon_sym_AMP_EQ] = ACTIONS(6614), - [anon_sym_CARET_EQ] = ACTIONS(6614), - [anon_sym_PIPE_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6614), - [anon_sym_and] = ACTIONS(6614), - [anon_sym_bitor] = ACTIONS(6614), - [anon_sym_xor] = ACTIONS(6614), - [anon_sym_bitand] = ACTIONS(6614), - [anon_sym_not_eq] = ACTIONS(6614), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6612), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6614), - [anon_sym_decltype] = ACTIONS(6614), - [anon_sym_final] = ACTIONS(6614), - [anon_sym_override] = ACTIONS(6614), - [anon_sym_requires] = ACTIONS(6614), - [anon_sym_DASH_GT_STAR] = ACTIONS(6614), - }, - [STATE(2718)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_RPAREN] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6624), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6624), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6624), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6624), - [anon_sym_GT_GT] = ACTIONS(6624), - [anon_sym___extension__] = ACTIONS(6626), - [anon_sym___attribute__] = ACTIONS(6626), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6626), - [anon_sym_EQ] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6626), - [anon_sym_volatile] = ACTIONS(6626), - [anon_sym_restrict] = ACTIONS(6626), - [anon_sym___restrict__] = ACTIONS(6626), - [anon_sym__Atomic] = ACTIONS(6626), - [anon_sym__Noreturn] = ACTIONS(6626), - [anon_sym_noreturn] = ACTIONS(6626), - [anon_sym__Nonnull] = ACTIONS(6626), - [anon_sym_mutable] = ACTIONS(6626), - [anon_sym_constinit] = ACTIONS(6626), - [anon_sym_consteval] = ACTIONS(6626), - [anon_sym_alignas] = ACTIONS(6626), - [anon_sym__Alignas] = ACTIONS(6626), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_STAR_EQ] = ACTIONS(6626), - [anon_sym_SLASH_EQ] = ACTIONS(6626), - [anon_sym_PERCENT_EQ] = ACTIONS(6626), - [anon_sym_PLUS_EQ] = ACTIONS(6626), - [anon_sym_DASH_EQ] = ACTIONS(6626), - [anon_sym_LT_LT_EQ] = ACTIONS(6626), - [anon_sym_GT_GT_EQ] = ACTIONS(6626), - [anon_sym_AMP_EQ] = ACTIONS(6626), - [anon_sym_CARET_EQ] = ACTIONS(6626), - [anon_sym_PIPE_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6626), - [anon_sym_and] = ACTIONS(6626), - [anon_sym_bitor] = ACTIONS(6626), - [anon_sym_xor] = ACTIONS(6626), - [anon_sym_bitand] = ACTIONS(6626), - [anon_sym_not_eq] = ACTIONS(6626), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6624), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6626), - [anon_sym_decltype] = ACTIONS(6626), - [anon_sym_final] = ACTIONS(6626), - [anon_sym_override] = ACTIONS(6626), - [anon_sym_requires] = ACTIONS(6626), - [anon_sym_DASH_GT_STAR] = ACTIONS(6626), - }, - [STATE(2719)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6628), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6628), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6628), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6628), - [anon_sym_GT_GT] = ACTIONS(6628), - [anon_sym___extension__] = ACTIONS(6630), - [anon_sym___attribute__] = ACTIONS(6630), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6630), - [anon_sym_EQ] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6630), - [anon_sym_volatile] = ACTIONS(6630), - [anon_sym_restrict] = ACTIONS(6630), - [anon_sym___restrict__] = ACTIONS(6630), - [anon_sym__Atomic] = ACTIONS(6630), - [anon_sym__Noreturn] = ACTIONS(6630), - [anon_sym_noreturn] = ACTIONS(6630), - [anon_sym__Nonnull] = ACTIONS(6630), - [anon_sym_mutable] = ACTIONS(6630), - [anon_sym_constinit] = ACTIONS(6630), - [anon_sym_consteval] = ACTIONS(6630), - [anon_sym_alignas] = ACTIONS(6630), - [anon_sym__Alignas] = ACTIONS(6630), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_STAR_EQ] = ACTIONS(6630), - [anon_sym_SLASH_EQ] = ACTIONS(6630), - [anon_sym_PERCENT_EQ] = ACTIONS(6630), - [anon_sym_PLUS_EQ] = ACTIONS(6630), - [anon_sym_DASH_EQ] = ACTIONS(6630), - [anon_sym_LT_LT_EQ] = ACTIONS(6630), - [anon_sym_GT_GT_EQ] = ACTIONS(6630), - [anon_sym_AMP_EQ] = ACTIONS(6630), - [anon_sym_CARET_EQ] = ACTIONS(6630), - [anon_sym_PIPE_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6630), - [anon_sym_and] = ACTIONS(6630), - [anon_sym_bitor] = ACTIONS(6630), - [anon_sym_xor] = ACTIONS(6630), - [anon_sym_bitand] = ACTIONS(6630), - [anon_sym_not_eq] = ACTIONS(6630), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6628), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6630), - [anon_sym_decltype] = ACTIONS(6630), - [anon_sym_final] = ACTIONS(6630), - [anon_sym_override] = ACTIONS(6630), - [anon_sym_requires] = ACTIONS(6630), - [anon_sym_DASH_GT_STAR] = ACTIONS(6630), - }, - [STATE(2720)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_RPAREN] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6608), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6608), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6608), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6608), - [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym_SEMI] = ACTIONS(6612), [anon_sym___extension__] = ACTIONS(6610), [anon_sym___attribute__] = ACTIONS(6610), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6610), - [anon_sym_EQ] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6612), + [anon_sym___based] = ACTIONS(6610), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_RBRACE] = ACTIONS(6612), + [anon_sym_signed] = ACTIONS(6610), + [anon_sym_unsigned] = ACTIONS(6610), + [anon_sym_long] = ACTIONS(6610), + [anon_sym_short] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6610), [anon_sym_constexpr] = ACTIONS(6610), [anon_sym_volatile] = ACTIONS(6610), [anon_sym_restrict] = ACTIONS(6610), @@ -372898,1999 +373671,629 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(6610), [anon_sym_alignas] = ACTIONS(6610), [anon_sym__Alignas] = ACTIONS(6610), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_STAR_EQ] = ACTIONS(6610), - [anon_sym_SLASH_EQ] = ACTIONS(6610), - [anon_sym_PERCENT_EQ] = ACTIONS(6610), - [anon_sym_PLUS_EQ] = ACTIONS(6610), - [anon_sym_DASH_EQ] = ACTIONS(6610), - [anon_sym_LT_LT_EQ] = ACTIONS(6610), - [anon_sym_GT_GT_EQ] = ACTIONS(6610), - [anon_sym_AMP_EQ] = ACTIONS(6610), - [anon_sym_CARET_EQ] = ACTIONS(6610), - [anon_sym_PIPE_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), + [sym_primitive_type] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), [anon_sym_or] = ACTIONS(6610), [anon_sym_and] = ACTIONS(6610), [anon_sym_bitor] = ACTIONS(6610), [anon_sym_xor] = ACTIONS(6610), [anon_sym_bitand] = ACTIONS(6610), [anon_sym_not_eq] = ACTIONS(6610), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6608), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(6610), [anon_sym_decltype] = ACTIONS(6610), [anon_sym_final] = ACTIONS(6610), [anon_sym_override] = ACTIONS(6610), [anon_sym_requires] = ACTIONS(6610), - [anon_sym_DASH_GT_STAR] = ACTIONS(6610), - }, - [STATE(2721)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), - [anon_sym_COMMA] = ACTIONS(7106), - [anon_sym_LPAREN2] = ACTIONS(7106), - [anon_sym_DASH] = ACTIONS(7104), - [anon_sym_PLUS] = ACTIONS(7104), - [anon_sym_STAR] = ACTIONS(7104), - [anon_sym_SLASH] = ACTIONS(7104), - [anon_sym_PERCENT] = ACTIONS(7104), - [anon_sym_PIPE_PIPE] = ACTIONS(7106), - [anon_sym_AMP_AMP] = ACTIONS(7106), - [anon_sym_PIPE] = ACTIONS(7104), - [anon_sym_CARET] = ACTIONS(7104), - [anon_sym_AMP] = ACTIONS(7104), - [anon_sym_EQ_EQ] = ACTIONS(7106), - [anon_sym_BANG_EQ] = ACTIONS(7106), - [anon_sym_GT] = ACTIONS(7104), - [anon_sym_GT_EQ] = ACTIONS(7104), - [anon_sym_LT_EQ] = ACTIONS(7104), - [anon_sym_LT] = ACTIONS(7104), - [anon_sym_LT_LT] = ACTIONS(7104), - [anon_sym_GT_GT] = ACTIONS(7104), - [anon_sym___extension__] = ACTIONS(7106), - [anon_sym___attribute__] = ACTIONS(7106), - [anon_sym___attribute] = ACTIONS(7104), - [anon_sym_COLON] = ACTIONS(7104), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [anon_sym_LBRACE] = ACTIONS(7106), - [anon_sym_LBRACK] = ACTIONS(7106), - [anon_sym_EQ] = ACTIONS(7104), - [anon_sym_const] = ACTIONS(7104), - [anon_sym_constexpr] = ACTIONS(7106), - [anon_sym_volatile] = ACTIONS(7106), - [anon_sym_restrict] = ACTIONS(7106), - [anon_sym___restrict__] = ACTIONS(7106), - [anon_sym__Atomic] = ACTIONS(7106), - [anon_sym__Noreturn] = ACTIONS(7106), - [anon_sym_noreturn] = ACTIONS(7106), - [anon_sym__Nonnull] = ACTIONS(7106), - [anon_sym_mutable] = ACTIONS(7106), - [anon_sym_constinit] = ACTIONS(7106), - [anon_sym_consteval] = ACTIONS(7106), - [anon_sym_alignas] = ACTIONS(7106), - [anon_sym__Alignas] = ACTIONS(7106), - [anon_sym_QMARK] = ACTIONS(7106), - [anon_sym_STAR_EQ] = ACTIONS(7106), - [anon_sym_SLASH_EQ] = ACTIONS(7106), - [anon_sym_PERCENT_EQ] = ACTIONS(7106), - [anon_sym_PLUS_EQ] = ACTIONS(7106), - [anon_sym_DASH_EQ] = ACTIONS(7106), - [anon_sym_LT_LT_EQ] = ACTIONS(7106), - [anon_sym_GT_GT_EQ] = ACTIONS(7104), - [anon_sym_AMP_EQ] = ACTIONS(7106), - [anon_sym_CARET_EQ] = ACTIONS(7106), - [anon_sym_PIPE_EQ] = ACTIONS(7106), - [anon_sym_and_eq] = ACTIONS(7106), - [anon_sym_or_eq] = ACTIONS(7106), - [anon_sym_xor_eq] = ACTIONS(7106), - [anon_sym_LT_EQ_GT] = ACTIONS(7106), - [anon_sym_or] = ACTIONS(7104), - [anon_sym_and] = ACTIONS(7104), - [anon_sym_bitor] = ACTIONS(7106), - [anon_sym_xor] = ACTIONS(7104), - [anon_sym_bitand] = ACTIONS(7106), - [anon_sym_not_eq] = ACTIONS(7106), - [anon_sym_DASH_DASH] = ACTIONS(7106), - [anon_sym_PLUS_PLUS] = ACTIONS(7106), - [anon_sym_DOT] = ACTIONS(7104), - [anon_sym_DOT_STAR] = ACTIONS(7106), - [anon_sym_DASH_GT] = ACTIONS(7106), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7106), - [anon_sym_override] = ACTIONS(7106), - [anon_sym_GT2] = ACTIONS(7106), - [anon_sym_requires] = ACTIONS(7106), - }, - [STATE(2722)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_RPAREN] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6620), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6620), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6620), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6620), - [anon_sym_GT_GT] = ACTIONS(6620), - [anon_sym___extension__] = ACTIONS(6622), - [anon_sym___attribute__] = ACTIONS(6622), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6622), - [anon_sym_EQ] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6622), - [anon_sym_volatile] = ACTIONS(6622), - [anon_sym_restrict] = ACTIONS(6622), - [anon_sym___restrict__] = ACTIONS(6622), - [anon_sym__Atomic] = ACTIONS(6622), - [anon_sym__Noreturn] = ACTIONS(6622), - [anon_sym_noreturn] = ACTIONS(6622), - [anon_sym__Nonnull] = ACTIONS(6622), - [anon_sym_mutable] = ACTIONS(6622), - [anon_sym_constinit] = ACTIONS(6622), - [anon_sym_consteval] = ACTIONS(6622), - [anon_sym_alignas] = ACTIONS(6622), - [anon_sym__Alignas] = ACTIONS(6622), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_STAR_EQ] = ACTIONS(6622), - [anon_sym_SLASH_EQ] = ACTIONS(6622), - [anon_sym_PERCENT_EQ] = ACTIONS(6622), - [anon_sym_PLUS_EQ] = ACTIONS(6622), - [anon_sym_DASH_EQ] = ACTIONS(6622), - [anon_sym_LT_LT_EQ] = ACTIONS(6622), - [anon_sym_GT_GT_EQ] = ACTIONS(6622), - [anon_sym_AMP_EQ] = ACTIONS(6622), - [anon_sym_CARET_EQ] = ACTIONS(6622), - [anon_sym_PIPE_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6622), - [anon_sym_and] = ACTIONS(6622), - [anon_sym_bitor] = ACTIONS(6622), - [anon_sym_xor] = ACTIONS(6622), - [anon_sym_bitand] = ACTIONS(6622), - [anon_sym_not_eq] = ACTIONS(6622), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6620), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6622), - [anon_sym_decltype] = ACTIONS(6622), - [anon_sym_final] = ACTIONS(6622), - [anon_sym_override] = ACTIONS(6622), - [anon_sym_requires] = ACTIONS(6622), - [anon_sym_DASH_GT_STAR] = ACTIONS(6622), - }, - [STATE(2723)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_BANG] = ACTIONS(7079), - [anon_sym_TILDE] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7079), - [anon_sym_AMP] = ACTIONS(7079), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym_COLON_COLON] = ACTIONS(7079), - [anon_sym_LBRACK] = ACTIONS(7077), - [anon_sym_static] = ACTIONS(7077), - [anon_sym_RBRACK] = ACTIONS(7079), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [sym_primitive_type] = ACTIONS(7077), - [anon_sym_not] = ACTIONS(7077), - [anon_sym_compl] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_sizeof] = ACTIONS(7077), - [anon_sym___alignof__] = ACTIONS(7077), - [anon_sym___alignof] = ACTIONS(7077), - [anon_sym__alignof] = ACTIONS(7077), - [anon_sym_alignof] = ACTIONS(7077), - [anon_sym__Alignof] = ACTIONS(7077), - [anon_sym_offsetof] = ACTIONS(7077), - [anon_sym__Generic] = ACTIONS(7077), - [anon_sym_typename] = ACTIONS(7077), - [anon_sym_asm] = ACTIONS(7077), - [anon_sym___asm__] = ACTIONS(7077), - [anon_sym___asm] = ACTIONS(7077), - [sym_number_literal] = ACTIONS(7079), - [anon_sym_L_SQUOTE] = ACTIONS(7079), - [anon_sym_u_SQUOTE] = ACTIONS(7079), - [anon_sym_U_SQUOTE] = ACTIONS(7079), - [anon_sym_u8_SQUOTE] = ACTIONS(7079), - [anon_sym_SQUOTE] = ACTIONS(7079), - [anon_sym_L_DQUOTE] = ACTIONS(7079), - [anon_sym_u_DQUOTE] = ACTIONS(7079), - [anon_sym_U_DQUOTE] = ACTIONS(7079), - [anon_sym_u8_DQUOTE] = ACTIONS(7079), - [anon_sym_DQUOTE] = ACTIONS(7079), - [sym_true] = ACTIONS(7077), - [sym_false] = ACTIONS(7077), - [anon_sym_NULL] = ACTIONS(7077), - [anon_sym_nullptr] = ACTIONS(7077), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7077), - [anon_sym_template] = ACTIONS(7077), - [anon_sym_delete] = ACTIONS(7077), - [anon_sym_R_DQUOTE] = ACTIONS(7079), - [anon_sym_LR_DQUOTE] = ACTIONS(7079), - [anon_sym_uR_DQUOTE] = ACTIONS(7079), - [anon_sym_UR_DQUOTE] = ACTIONS(7079), - [anon_sym_u8R_DQUOTE] = ACTIONS(7079), - [anon_sym_co_await] = ACTIONS(7077), - [anon_sym_new] = ACTIONS(7077), - [anon_sym_requires] = ACTIONS(7077), - [anon_sym_CARET_CARET] = ACTIONS(7079), - [anon_sym_LBRACK_COLON] = ACTIONS(7079), - [sym_this] = ACTIONS(7077), - }, - [STATE(2724)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_RBRACK] = ACTIONS(3118), - [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_not] = ACTIONS(3128), - [anon_sym_compl] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [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_typename] = ACTIONS(3128), - [anon_sym_asm] = ACTIONS(3128), - [anon_sym___asm__] = ACTIONS(3128), - [anon_sym___asm] = ACTIONS(3128), - [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(3128), - [sym_false] = ACTIONS(3128), - [anon_sym_NULL] = ACTIONS(3128), - [anon_sym_nullptr] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [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(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [anon_sym_CARET_CARET] = ACTIONS(3118), - [anon_sym_LBRACK_COLON] = ACTIONS(3118), - [sym_this] = ACTIONS(3128), - }, - [STATE(2725)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7287), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym___extension__] = ACTIONS(7289), - [sym_ms_restrict_modifier] = ACTIONS(7287), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7289), - [sym_ms_signed_ptr_modifier] = ACTIONS(7289), - [anon_sym__unaligned] = ACTIONS(7289), - [anon_sym___unaligned] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7289), - [anon_sym_volatile] = ACTIONS(7289), - [anon_sym_restrict] = ACTIONS(7289), - [anon_sym___restrict__] = ACTIONS(7289), - [anon_sym__Atomic] = ACTIONS(7289), - [anon_sym__Noreturn] = ACTIONS(7289), - [anon_sym_noreturn] = ACTIONS(7289), - [anon_sym__Nonnull] = ACTIONS(7289), - [anon_sym_mutable] = ACTIONS(7289), - [anon_sym_constinit] = ACTIONS(7289), - [anon_sym_consteval] = ACTIONS(7289), - [anon_sym_alignas] = ACTIONS(7289), - [anon_sym__Alignas] = ACTIONS(7289), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7287), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_and_eq] = ACTIONS(7289), - [anon_sym_or_eq] = ACTIONS(7289), - [anon_sym_xor_eq] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7289), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7289), - [anon_sym_not_eq] = ACTIONS(7289), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7289), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7289), - [anon_sym_override] = ACTIONS(7289), - [anon_sym_GT2] = ACTIONS(7289), - [anon_sym_requires] = ACTIONS(7289), - }, - [STATE(2726)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [aux_sym_preproc_if_token2] = ACTIONS(3118), - [aux_sym_preproc_else_token1] = ACTIONS(3118), - [aux_sym_preproc_elif_token1] = ACTIONS(3128), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3118), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON] = ACTIONS(3128), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3118), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_signed] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3118), - [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_QMARK] = ACTIONS(3118), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3128), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3128), - [anon_sym_not_eq] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [anon_sym_COLON_RBRACK] = ACTIONS(3118), - }, - [STATE(2727)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [aux_sym_preproc_if_token2] = ACTIONS(3118), - [aux_sym_preproc_else_token1] = ACTIONS(3118), - [aux_sym_preproc_elif_token1] = ACTIONS(3128), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3118), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3118), - [anon_sym_LPAREN2] = ACTIONS(3118), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_STAR] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_PERCENT] = ACTIONS(3118), - [anon_sym_PIPE_PIPE] = ACTIONS(3118), - [anon_sym_AMP_AMP] = ACTIONS(3118), - [anon_sym_PIPE] = ACTIONS(3128), - [anon_sym_CARET] = ACTIONS(3118), - [anon_sym_AMP] = ACTIONS(3128), - [anon_sym_EQ_EQ] = ACTIONS(3118), - [anon_sym_BANG_EQ] = ACTIONS(3118), - [anon_sym_GT] = ACTIONS(3128), - [anon_sym_GT_EQ] = ACTIONS(3118), - [anon_sym_LT_EQ] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_LT_LT] = ACTIONS(3118), - [anon_sym_GT_GT] = ACTIONS(3118), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON] = ACTIONS(3128), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3118), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_LBRACK] = 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), - [anon_sym_QMARK] = ACTIONS(3118), - [anon_sym_LT_EQ_GT] = ACTIONS(3118), - [anon_sym_or] = ACTIONS(3128), - [anon_sym_and] = ACTIONS(3128), - [anon_sym_bitor] = ACTIONS(3128), - [anon_sym_xor] = ACTIONS(3128), - [anon_sym_bitand] = ACTIONS(3128), - [anon_sym_not_eq] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_asm] = ACTIONS(3128), - [anon_sym___asm__] = ACTIONS(3128), - [anon_sym___asm] = ACTIONS(3128), - [anon_sym_DOT] = ACTIONS(3128), - [anon_sym_DOT_STAR] = ACTIONS(3118), - [anon_sym_DASH_GT] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_noexcept] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_requires] = ACTIONS(3128), - [anon_sym_COLON_RBRACK] = ACTIONS(3118), - }, - [STATE(2728)] = { - [sym_attribute_specifier] = STATE(3218), - [sym_enumerator_list] = STATE(2824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7387), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7387), - [anon_sym_AMP] = ACTIONS(7387), - [anon_sym_EQ_EQ] = ACTIONS(7389), - [anon_sym_BANG_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [anon_sym_GT_EQ] = ACTIONS(7387), - [anon_sym_LT_EQ] = ACTIONS(7387), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_LT] = ACTIONS(7387), - [anon_sym_GT_GT] = ACTIONS(7387), - [anon_sym___extension__] = ACTIONS(7389), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(8472), - [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_EQ] = ACTIONS(7387), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7389), - [anon_sym_volatile] = ACTIONS(7389), - [anon_sym_restrict] = ACTIONS(7389), - [anon_sym___restrict__] = ACTIONS(7389), - [anon_sym__Atomic] = ACTIONS(7389), - [anon_sym__Noreturn] = ACTIONS(7389), - [anon_sym_noreturn] = ACTIONS(7389), - [anon_sym__Nonnull] = ACTIONS(7389), - [anon_sym_mutable] = ACTIONS(7389), - [anon_sym_constinit] = ACTIONS(7389), - [anon_sym_consteval] = ACTIONS(7389), - [anon_sym_alignas] = ACTIONS(7389), - [anon_sym__Alignas] = ACTIONS(7389), - [anon_sym_QMARK] = ACTIONS(7389), - [anon_sym_STAR_EQ] = ACTIONS(7389), - [anon_sym_SLASH_EQ] = ACTIONS(7389), - [anon_sym_PERCENT_EQ] = ACTIONS(7389), - [anon_sym_PLUS_EQ] = ACTIONS(7389), - [anon_sym_DASH_EQ] = ACTIONS(7389), - [anon_sym_LT_LT_EQ] = ACTIONS(7389), - [anon_sym_GT_GT_EQ] = ACTIONS(7387), - [anon_sym_AMP_EQ] = ACTIONS(7389), - [anon_sym_CARET_EQ] = ACTIONS(7389), - [anon_sym_PIPE_EQ] = ACTIONS(7389), - [anon_sym_and_eq] = ACTIONS(7389), - [anon_sym_or_eq] = ACTIONS(7389), - [anon_sym_xor_eq] = ACTIONS(7389), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7387), - [anon_sym_and] = ACTIONS(7387), - [anon_sym_bitor] = ACTIONS(7389), - [anon_sym_xor] = ACTIONS(7387), - [anon_sym_bitand] = ACTIONS(7389), - [anon_sym_not_eq] = ACTIONS(7389), - [anon_sym_DASH_DASH] = ACTIONS(7389), - [anon_sym_PLUS_PLUS] = ACTIONS(7389), - [anon_sym_DOT] = ACTIONS(7387), - [anon_sym_DOT_STAR] = ACTIONS(7389), - [anon_sym_DASH_GT] = ACTIONS(7389), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7389), - [anon_sym_override] = ACTIONS(7389), - [anon_sym_GT2] = ACTIONS(7389), - [anon_sym_requires] = ACTIONS(7389), - }, - [STATE(2729)] = { - [sym_attribute_specifier] = STATE(3050), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7429), - [anon_sym_COMMA] = ACTIONS(7429), - [anon_sym_RPAREN] = ACTIONS(7429), - [anon_sym_LPAREN2] = ACTIONS(7429), - [anon_sym_DASH] = ACTIONS(7427), - [anon_sym_PLUS] = ACTIONS(7427), - [anon_sym_STAR] = ACTIONS(7427), - [anon_sym_SLASH] = ACTIONS(7427), - [anon_sym_PERCENT] = ACTIONS(7427), - [anon_sym_PIPE_PIPE] = ACTIONS(7429), - [anon_sym_AMP_AMP] = ACTIONS(7429), - [anon_sym_PIPE] = ACTIONS(7427), - [anon_sym_CARET] = ACTIONS(7427), - [anon_sym_AMP] = ACTIONS(7427), - [anon_sym_EQ_EQ] = ACTIONS(7429), - [anon_sym_BANG_EQ] = ACTIONS(7429), - [anon_sym_GT] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7429), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_LT] = ACTIONS(7427), - [anon_sym_LT_LT] = ACTIONS(7427), - [anon_sym_GT_GT] = ACTIONS(7427), - [anon_sym___extension__] = ACTIONS(7429), - [anon_sym___attribute__] = ACTIONS(8152), - [anon_sym___attribute] = ACTIONS(8154), - [anon_sym_LBRACE] = ACTIONS(7429), - [anon_sym_LBRACK] = ACTIONS(7429), - [anon_sym_EQ] = ACTIONS(7427), - [anon_sym_const] = ACTIONS(7427), - [anon_sym_constexpr] = ACTIONS(7429), - [anon_sym_volatile] = ACTIONS(7429), - [anon_sym_restrict] = ACTIONS(7429), - [anon_sym___restrict__] = ACTIONS(7429), - [anon_sym__Atomic] = ACTIONS(7429), - [anon_sym__Noreturn] = ACTIONS(7429), - [anon_sym_noreturn] = ACTIONS(7429), - [anon_sym__Nonnull] = ACTIONS(7429), - [anon_sym_mutable] = ACTIONS(7429), - [anon_sym_constinit] = ACTIONS(7429), - [anon_sym_consteval] = ACTIONS(7429), - [anon_sym_alignas] = ACTIONS(7429), - [anon_sym__Alignas] = ACTIONS(7429), - [anon_sym_QMARK] = ACTIONS(7429), - [anon_sym_STAR_EQ] = ACTIONS(7429), - [anon_sym_SLASH_EQ] = ACTIONS(7429), - [anon_sym_PERCENT_EQ] = ACTIONS(7429), - [anon_sym_PLUS_EQ] = ACTIONS(7429), - [anon_sym_DASH_EQ] = ACTIONS(7429), - [anon_sym_LT_LT_EQ] = ACTIONS(7429), - [anon_sym_GT_GT_EQ] = ACTIONS(7429), - [anon_sym_AMP_EQ] = ACTIONS(7429), - [anon_sym_CARET_EQ] = ACTIONS(7429), - [anon_sym_PIPE_EQ] = ACTIONS(7429), - [anon_sym_and_eq] = ACTIONS(7429), - [anon_sym_or_eq] = ACTIONS(7429), - [anon_sym_xor_eq] = ACTIONS(7429), - [anon_sym_LT_EQ_GT] = ACTIONS(7429), - [anon_sym_or] = ACTIONS(7427), - [anon_sym_and] = ACTIONS(7427), - [anon_sym_bitor] = ACTIONS(7429), - [anon_sym_xor] = ACTIONS(7427), - [anon_sym_bitand] = ACTIONS(7429), - [anon_sym_not_eq] = ACTIONS(7429), - [anon_sym_DASH_DASH] = ACTIONS(7429), - [anon_sym_PLUS_PLUS] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(7427), - [anon_sym_DOT_STAR] = ACTIONS(7429), - [anon_sym_DASH_GT] = ACTIONS(7427), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7429), - [anon_sym_override] = ACTIONS(7429), - [anon_sym_requires] = ACTIONS(7429), - [anon_sym_DASH_GT_STAR] = ACTIONS(7429), - }, - [STATE(2730)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_RPAREN] = ACTIONS(7079), - [aux_sym_preproc_if_token2] = ACTIONS(7079), - [aux_sym_preproc_else_token1] = ACTIONS(7079), - [aux_sym_preproc_elif_token1] = ACTIONS(7077), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7079), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_DASH] = ACTIONS(7077), - [anon_sym_PLUS] = ACTIONS(7077), - [anon_sym_STAR] = ACTIONS(7079), - [anon_sym_SLASH] = ACTIONS(7077), - [anon_sym_PERCENT] = ACTIONS(7079), - [anon_sym_PIPE_PIPE] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_PIPE] = ACTIONS(7077), - [anon_sym_CARET] = ACTIONS(7079), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_EQ_EQ] = ACTIONS(7079), - [anon_sym_BANG_EQ] = ACTIONS(7079), - [anon_sym_GT] = ACTIONS(7077), - [anon_sym_GT_EQ] = ACTIONS(7079), - [anon_sym_LT_EQ] = ACTIONS(7077), - [anon_sym_LT] = ACTIONS(7077), - [anon_sym_LT_LT] = ACTIONS(7079), - [anon_sym_GT_GT] = ACTIONS(7079), - [anon_sym_SEMI] = ACTIONS(7079), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym___attribute__] = ACTIONS(7077), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_COLON] = ACTIONS(7077), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7079), - [anon_sym_RBRACE] = ACTIONS(7079), - [anon_sym_LBRACK] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [anon_sym_QMARK] = ACTIONS(7079), - [anon_sym_LT_EQ_GT] = ACTIONS(7079), - [anon_sym_or] = ACTIONS(7077), - [anon_sym_and] = ACTIONS(7077), - [anon_sym_bitor] = ACTIONS(7077), - [anon_sym_xor] = ACTIONS(7077), - [anon_sym_bitand] = ACTIONS(7077), - [anon_sym_not_eq] = ACTIONS(7077), - [anon_sym_DASH_DASH] = ACTIONS(7079), - [anon_sym_PLUS_PLUS] = ACTIONS(7079), - [anon_sym_asm] = ACTIONS(7077), - [anon_sym___asm__] = ACTIONS(7077), - [anon_sym___asm] = ACTIONS(7077), - [anon_sym_DOT] = ACTIONS(7077), - [anon_sym_DOT_STAR] = ACTIONS(7079), - [anon_sym_DASH_GT] = ACTIONS(7079), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7077), - [anon_sym_override] = ACTIONS(7077), - [anon_sym_noexcept] = ACTIONS(7077), - [anon_sym_throw] = ACTIONS(7077), - [anon_sym_requires] = ACTIONS(7077), - [anon_sym_COLON_RBRACK] = ACTIONS(7079), - }, - [STATE(2731)] = { - [sym_attribute_specifier] = STATE(3555), - [sym_enumerator_list] = STATE(2965), - [sym__enum_base_clause] = STATE(2916), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), - [anon_sym_COMMA] = ACTIONS(8008), - [anon_sym_RPAREN] = ACTIONS(8008), - [anon_sym_LPAREN2] = ACTIONS(8008), - [anon_sym_DASH] = ACTIONS(8006), - [anon_sym_PLUS] = ACTIONS(8006), - [anon_sym_STAR] = ACTIONS(8006), - [anon_sym_SLASH] = ACTIONS(8006), - [anon_sym_PERCENT] = ACTIONS(8006), - [anon_sym_PIPE_PIPE] = ACTIONS(8008), - [anon_sym_AMP_AMP] = ACTIONS(8008), - [anon_sym_PIPE] = ACTIONS(8006), - [anon_sym_CARET] = ACTIONS(8006), - [anon_sym_AMP] = ACTIONS(8006), - [anon_sym_EQ_EQ] = ACTIONS(8008), - [anon_sym_BANG_EQ] = ACTIONS(8008), - [anon_sym_GT] = ACTIONS(8006), - [anon_sym_GT_EQ] = ACTIONS(8008), - [anon_sym_LT_EQ] = ACTIONS(8006), - [anon_sym_LT] = ACTIONS(8006), - [anon_sym_LT_LT] = ACTIONS(8006), - [anon_sym_GT_GT] = ACTIONS(8006), - [anon_sym___extension__] = ACTIONS(8008), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_COLON] = ACTIONS(8622), - [anon_sym_LBRACE] = ACTIONS(8624), - [anon_sym_LBRACK] = ACTIONS(8008), - [anon_sym_EQ] = ACTIONS(8006), - [anon_sym_const] = ACTIONS(8006), - [anon_sym_constexpr] = ACTIONS(8008), - [anon_sym_volatile] = ACTIONS(8008), - [anon_sym_restrict] = ACTIONS(8008), - [anon_sym___restrict__] = ACTIONS(8008), - [anon_sym__Atomic] = ACTIONS(8008), - [anon_sym__Noreturn] = ACTIONS(8008), - [anon_sym_noreturn] = ACTIONS(8008), - [anon_sym__Nonnull] = ACTIONS(8008), - [anon_sym_mutable] = ACTIONS(8008), - [anon_sym_constinit] = ACTIONS(8008), - [anon_sym_consteval] = ACTIONS(8008), - [anon_sym_alignas] = ACTIONS(8008), - [anon_sym__Alignas] = ACTIONS(8008), - [anon_sym_QMARK] = ACTIONS(8008), - [anon_sym_STAR_EQ] = ACTIONS(8008), - [anon_sym_SLASH_EQ] = ACTIONS(8008), - [anon_sym_PERCENT_EQ] = ACTIONS(8008), - [anon_sym_PLUS_EQ] = ACTIONS(8008), - [anon_sym_DASH_EQ] = ACTIONS(8008), - [anon_sym_LT_LT_EQ] = ACTIONS(8008), - [anon_sym_GT_GT_EQ] = ACTIONS(8008), - [anon_sym_AMP_EQ] = ACTIONS(8008), - [anon_sym_CARET_EQ] = ACTIONS(8008), - [anon_sym_PIPE_EQ] = ACTIONS(8008), - [anon_sym_LT_EQ_GT] = ACTIONS(8008), - [anon_sym_or] = ACTIONS(8008), - [anon_sym_and] = ACTIONS(8008), - [anon_sym_bitor] = ACTIONS(8008), - [anon_sym_xor] = ACTIONS(8008), - [anon_sym_bitand] = ACTIONS(8008), - [anon_sym_not_eq] = ACTIONS(8008), - [anon_sym_DASH_DASH] = ACTIONS(8008), - [anon_sym_PLUS_PLUS] = ACTIONS(8008), - [anon_sym_DOT] = ACTIONS(8006), - [anon_sym_DOT_STAR] = ACTIONS(8008), - [anon_sym_DASH_GT] = ACTIONS(8006), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8008), - [anon_sym_override] = ACTIONS(8008), - [anon_sym_requires] = ACTIONS(8008), - [anon_sym_DASH_GT_STAR] = ACTIONS(8008), - }, - [STATE(2732)] = { - [sym_attribute_specifier] = STATE(3107), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), - [anon_sym_COMMA] = ACTIONS(7399), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(7397), - [anon_sym_PLUS] = ACTIONS(7397), - [anon_sym_STAR] = ACTIONS(7397), - [anon_sym_SLASH] = ACTIONS(7397), - [anon_sym_PERCENT] = ACTIONS(7397), - [anon_sym_PIPE_PIPE] = ACTIONS(7399), - [anon_sym_AMP_AMP] = ACTIONS(7399), - [anon_sym_PIPE] = ACTIONS(7397), - [anon_sym_CARET] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7397), - [anon_sym_EQ_EQ] = ACTIONS(7399), - [anon_sym_BANG_EQ] = ACTIONS(7399), - [anon_sym_GT] = ACTIONS(7397), - [anon_sym_GT_EQ] = ACTIONS(7399), - [anon_sym_LT_EQ] = ACTIONS(7397), - [anon_sym_LT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_GT_GT] = ACTIONS(7397), - [anon_sym___extension__] = ACTIONS(7399), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7399), - [anon_sym_LBRACK] = ACTIONS(7399), - [anon_sym_RBRACK] = ACTIONS(7399), - [anon_sym_EQ] = ACTIONS(7397), - [anon_sym_const] = ACTIONS(7397), - [anon_sym_constexpr] = ACTIONS(7399), - [anon_sym_volatile] = ACTIONS(7399), - [anon_sym_restrict] = ACTIONS(7399), - [anon_sym___restrict__] = ACTIONS(7399), - [anon_sym__Atomic] = ACTIONS(7399), - [anon_sym__Noreturn] = ACTIONS(7399), - [anon_sym_noreturn] = ACTIONS(7399), - [anon_sym__Nonnull] = ACTIONS(7399), - [anon_sym_mutable] = ACTIONS(7399), - [anon_sym_constinit] = ACTIONS(7399), - [anon_sym_consteval] = ACTIONS(7399), - [anon_sym_alignas] = ACTIONS(7399), - [anon_sym__Alignas] = ACTIONS(7399), - [anon_sym_QMARK] = ACTIONS(7399), - [anon_sym_STAR_EQ] = ACTIONS(7399), - [anon_sym_SLASH_EQ] = ACTIONS(7399), - [anon_sym_PERCENT_EQ] = ACTIONS(7399), - [anon_sym_PLUS_EQ] = ACTIONS(7399), - [anon_sym_DASH_EQ] = ACTIONS(7399), - [anon_sym_LT_LT_EQ] = ACTIONS(7399), - [anon_sym_GT_GT_EQ] = ACTIONS(7399), - [anon_sym_AMP_EQ] = ACTIONS(7399), - [anon_sym_CARET_EQ] = ACTIONS(7399), - [anon_sym_PIPE_EQ] = ACTIONS(7399), - [anon_sym_and_eq] = ACTIONS(7399), - [anon_sym_or_eq] = ACTIONS(7399), - [anon_sym_xor_eq] = ACTIONS(7399), - [anon_sym_LT_EQ_GT] = ACTIONS(7399), - [anon_sym_or] = ACTIONS(7397), - [anon_sym_and] = ACTIONS(7397), - [anon_sym_bitor] = ACTIONS(7399), - [anon_sym_xor] = ACTIONS(7397), - [anon_sym_bitand] = ACTIONS(7399), - [anon_sym_not_eq] = ACTIONS(7399), - [anon_sym_DASH_DASH] = ACTIONS(7399), - [anon_sym_PLUS_PLUS] = ACTIONS(7399), - [anon_sym_DOT] = ACTIONS(7397), - [anon_sym_DOT_STAR] = ACTIONS(7399), - [anon_sym_DASH_GT] = ACTIONS(7399), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7399), - [anon_sym_override] = ACTIONS(7399), - [anon_sym_requires] = ACTIONS(7399), + [anon_sym_COLON_RBRACK] = ACTIONS(6612), }, [STATE(2733)] = { - [sym_attribute_specifier] = STATE(3121), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), - [anon_sym_COMMA] = ACTIONS(7507), - [anon_sym_LPAREN2] = ACTIONS(7507), - [anon_sym_DASH] = ACTIONS(7505), - [anon_sym_PLUS] = ACTIONS(7505), - [anon_sym_STAR] = ACTIONS(7505), - [anon_sym_SLASH] = ACTIONS(7505), - [anon_sym_PERCENT] = ACTIONS(7505), - [anon_sym_PIPE_PIPE] = ACTIONS(7507), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE] = ACTIONS(7505), - [anon_sym_CARET] = ACTIONS(7505), - [anon_sym_AMP] = ACTIONS(7505), - [anon_sym_EQ_EQ] = ACTIONS(7507), - [anon_sym_BANG_EQ] = ACTIONS(7507), - [anon_sym_GT] = ACTIONS(7505), - [anon_sym_GT_EQ] = ACTIONS(7507), - [anon_sym_LT_EQ] = ACTIONS(7505), - [anon_sym_LT] = ACTIONS(7505), - [anon_sym_LT_LT] = ACTIONS(7505), - [anon_sym_GT_GT] = ACTIONS(7505), - [anon_sym___extension__] = ACTIONS(7507), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7507), - [anon_sym_LBRACK] = ACTIONS(7507), - [anon_sym_RBRACK] = ACTIONS(7507), - [anon_sym_EQ] = ACTIONS(7505), - [anon_sym_const] = ACTIONS(7505), - [anon_sym_constexpr] = ACTIONS(7507), - [anon_sym_volatile] = ACTIONS(7507), - [anon_sym_restrict] = ACTIONS(7507), - [anon_sym___restrict__] = ACTIONS(7507), - [anon_sym__Atomic] = ACTIONS(7507), - [anon_sym__Noreturn] = ACTIONS(7507), - [anon_sym_noreturn] = ACTIONS(7507), - [anon_sym__Nonnull] = ACTIONS(7507), - [anon_sym_mutable] = ACTIONS(7507), - [anon_sym_constinit] = ACTIONS(7507), - [anon_sym_consteval] = ACTIONS(7507), - [anon_sym_alignas] = ACTIONS(7507), - [anon_sym__Alignas] = ACTIONS(7507), - [anon_sym_QMARK] = ACTIONS(7507), - [anon_sym_STAR_EQ] = ACTIONS(7507), - [anon_sym_SLASH_EQ] = ACTIONS(7507), - [anon_sym_PERCENT_EQ] = ACTIONS(7507), - [anon_sym_PLUS_EQ] = ACTIONS(7507), - [anon_sym_DASH_EQ] = ACTIONS(7507), - [anon_sym_LT_LT_EQ] = ACTIONS(7507), - [anon_sym_GT_GT_EQ] = ACTIONS(7507), - [anon_sym_AMP_EQ] = ACTIONS(7507), - [anon_sym_CARET_EQ] = ACTIONS(7507), - [anon_sym_PIPE_EQ] = ACTIONS(7507), - [anon_sym_and_eq] = ACTIONS(7507), - [anon_sym_or_eq] = ACTIONS(7507), - [anon_sym_xor_eq] = ACTIONS(7507), - [anon_sym_LT_EQ_GT] = ACTIONS(7507), - [anon_sym_or] = ACTIONS(7505), - [anon_sym_and] = ACTIONS(7505), - [anon_sym_bitor] = ACTIONS(7507), - [anon_sym_xor] = ACTIONS(7505), - [anon_sym_bitand] = ACTIONS(7507), - [anon_sym_not_eq] = ACTIONS(7507), - [anon_sym_DASH_DASH] = ACTIONS(7507), - [anon_sym_PLUS_PLUS] = ACTIONS(7507), - [anon_sym_DOT] = ACTIONS(7505), - [anon_sym_DOT_STAR] = ACTIONS(7507), - [anon_sym_DASH_GT] = ACTIONS(7507), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7507), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_requires] = ACTIONS(7507), + [sym_decltype_auto] = STATE(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7246), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8590), + [anon_sym_decltype] = ACTIONS(7021), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_GT2] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), }, [STATE(2734)] = { - [sym__declaration_modifiers] = STATE(5048), - [sym_attribute_specifier] = STATE(5048), - [sym_attribute_declaration] = STATE(5048), - [sym_ms_declspec_modifier] = STATE(5048), - [sym_storage_class_specifier] = STATE(5048), - [sym_type_qualifier] = STATE(5048), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4006), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8756), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(5157), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(5048), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(6455), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(8641), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(6469), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2320), - [anon_sym_typename] = ACTIONS(5629), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3514), + [aux_sym_preproc_def_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token2] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3514), + [aux_sym_preproc_else_token1] = ACTIONS(3514), + [aux_sym_preproc_elif_token1] = ACTIONS(3514), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3514), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3514), + [sym_preproc_directive] = ACTIONS(3514), + [anon_sym_LPAREN2] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym___extension__] = ACTIONS(3514), + [anon_sym_typedef] = ACTIONS(3514), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3514), + [anon_sym___attribute__] = ACTIONS(3514), + [anon_sym___attribute] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_COLON_COLON] = ACTIONS(3516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3514), + [anon_sym___based] = ACTIONS(3514), + [anon_sym_signed] = ACTIONS(3514), + [anon_sym_unsigned] = ACTIONS(3514), + [anon_sym_long] = ACTIONS(3514), + [anon_sym_short] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_register] = ACTIONS(3514), + [anon_sym_inline] = ACTIONS(3514), + [anon_sym___inline] = ACTIONS(3514), + [anon_sym___inline__] = ACTIONS(3514), + [anon_sym___forceinline] = ACTIONS(3514), + [anon_sym_thread_local] = ACTIONS(3514), + [anon_sym___thread] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_constexpr] = ACTIONS(3514), + [anon_sym_volatile] = ACTIONS(3514), + [anon_sym_restrict] = ACTIONS(3514), + [anon_sym___restrict__] = ACTIONS(3514), + [anon_sym__Atomic] = ACTIONS(3514), + [anon_sym__Noreturn] = ACTIONS(3514), + [anon_sym_noreturn] = ACTIONS(3514), + [anon_sym__Nonnull] = ACTIONS(3514), + [anon_sym_mutable] = ACTIONS(3514), + [anon_sym_constinit] = ACTIONS(3514), + [anon_sym_consteval] = ACTIONS(3514), + [anon_sym_alignas] = ACTIONS(3514), + [anon_sym__Alignas] = ACTIONS(3514), + [sym_primitive_type] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_struct] = ACTIONS(3514), + [anon_sym_union] = ACTIONS(3514), + [anon_sym_typename] = ACTIONS(3514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3514), + [anon_sym_decltype] = ACTIONS(3514), + [anon_sym_explicit] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_template] = ACTIONS(3514), + [anon_sym_operator] = ACTIONS(3514), + [anon_sym_friend] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_static_assert] = ACTIONS(3514), + [anon_sym_LBRACK_COLON] = ACTIONS(3516), }, [STATE(2735)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [aux_sym_preproc_else_token1] = ACTIONS(3622), - [aux_sym_preproc_elif_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_friend] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token2] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [aux_sym_preproc_else_token1] = ACTIONS(3518), + [aux_sym_preproc_elif_token1] = ACTIONS(3518), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_friend] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), }, [STATE(2736)] = { - [sym_identifier] = ACTIONS(7301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), - [anon_sym_COMMA] = ACTIONS(7303), - [anon_sym_RPAREN] = ACTIONS(7303), - [anon_sym_LPAREN2] = ACTIONS(7303), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_STAR] = ACTIONS(7303), - [anon_sym_SLASH] = ACTIONS(7301), - [anon_sym_PERCENT] = ACTIONS(7303), - [anon_sym_PIPE_PIPE] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7303), - [anon_sym_PIPE] = ACTIONS(7301), - [anon_sym_CARET] = ACTIONS(7303), - [anon_sym_AMP] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7303), - [anon_sym_BANG_EQ] = ACTIONS(7303), - [anon_sym_GT] = ACTIONS(7301), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_LT_EQ] = ACTIONS(7301), - [anon_sym_LT] = ACTIONS(7301), - [anon_sym_LT_LT] = ACTIONS(7303), - [anon_sym_GT_GT] = ACTIONS(7303), - [anon_sym_SEMI] = ACTIONS(7303), - [anon_sym___extension__] = ACTIONS(7301), - [anon_sym___attribute__] = ACTIONS(7301), - [anon_sym___attribute] = ACTIONS(7301), - [anon_sym_COLON] = ACTIONS(7301), - [anon_sym_COLON_COLON] = ACTIONS(7303), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7303), - [anon_sym___based] = ACTIONS(7301), - [anon_sym_LBRACE] = ACTIONS(7303), - [anon_sym_RBRACE] = ACTIONS(7303), - [anon_sym_signed] = ACTIONS(7301), - [anon_sym_unsigned] = ACTIONS(7301), - [anon_sym_long] = ACTIONS(7301), - [anon_sym_short] = ACTIONS(7301), - [anon_sym_LBRACK] = ACTIONS(7303), - [anon_sym_const] = ACTIONS(7301), - [anon_sym_constexpr] = ACTIONS(7301), - [anon_sym_volatile] = ACTIONS(7301), - [anon_sym_restrict] = ACTIONS(7301), - [anon_sym___restrict__] = ACTIONS(7301), - [anon_sym__Atomic] = ACTIONS(7301), - [anon_sym__Noreturn] = ACTIONS(7301), - [anon_sym_noreturn] = ACTIONS(7301), - [anon_sym__Nonnull] = ACTIONS(7301), - [anon_sym_mutable] = ACTIONS(7301), - [anon_sym_constinit] = ACTIONS(7301), - [anon_sym_consteval] = ACTIONS(7301), - [anon_sym_alignas] = ACTIONS(7301), - [anon_sym__Alignas] = ACTIONS(7301), - [sym_primitive_type] = ACTIONS(7301), - [anon_sym_QMARK] = ACTIONS(7303), - [anon_sym_LT_EQ_GT] = ACTIONS(7303), - [anon_sym_or] = ACTIONS(7301), - [anon_sym_and] = ACTIONS(7301), - [anon_sym_bitor] = ACTIONS(7301), - [anon_sym_xor] = ACTIONS(7301), - [anon_sym_bitand] = ACTIONS(7301), - [anon_sym_not_eq] = ACTIONS(7301), - [anon_sym_DASH_DASH] = ACTIONS(7303), - [anon_sym_PLUS_PLUS] = ACTIONS(7303), - [anon_sym_DOT] = ACTIONS(7301), - [anon_sym_DOT_STAR] = ACTIONS(7303), - [anon_sym_DASH_GT] = ACTIONS(7303), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7301), - [anon_sym_decltype] = ACTIONS(7301), - [anon_sym_final] = ACTIONS(7301), - [anon_sym_override] = ACTIONS(7301), - [anon_sym_requires] = ACTIONS(7301), - [anon_sym_COLON_RBRACK] = ACTIONS(7303), + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token2] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [aux_sym_preproc_else_token1] = ACTIONS(3518), + [aux_sym_preproc_elif_token1] = ACTIONS(3518), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_friend] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), }, [STATE(2737)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(8535), - [anon_sym_unsigned] = ACTIONS(8535), - [anon_sym_long] = ACTIONS(8535), - [anon_sym_short] = ACTIONS(8535), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + [sym_identifier] = ACTIONS(3522), + [aux_sym_preproc_def_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token2] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3522), + [aux_sym_preproc_else_token1] = ACTIONS(3522), + [aux_sym_preproc_elif_token1] = ACTIONS(3522), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3522), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3522), + [sym_preproc_directive] = ACTIONS(3522), + [anon_sym_LPAREN2] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3524), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_virtual] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym___attribute__] = ACTIONS(3522), + [anon_sym___attribute] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_COLON_COLON] = ACTIONS(3524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3524), + [anon_sym___declspec] = ACTIONS(3522), + [anon_sym___based] = ACTIONS(3522), + [anon_sym_signed] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym___inline] = ACTIONS(3522), + [anon_sym___inline__] = ACTIONS(3522), + [anon_sym___forceinline] = ACTIONS(3522), + [anon_sym_thread_local] = ACTIONS(3522), + [anon_sym___thread] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_constexpr] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym___restrict__] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym__Noreturn] = ACTIONS(3522), + [anon_sym_noreturn] = ACTIONS(3522), + [anon_sym__Nonnull] = ACTIONS(3522), + [anon_sym_mutable] = ACTIONS(3522), + [anon_sym_constinit] = ACTIONS(3522), + [anon_sym_consteval] = ACTIONS(3522), + [anon_sym_alignas] = ACTIONS(3522), + [anon_sym__Alignas] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_typename] = ACTIONS(3522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3522), + [anon_sym_decltype] = ACTIONS(3522), + [anon_sym_explicit] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_template] = ACTIONS(3522), + [anon_sym_operator] = ACTIONS(3522), + [anon_sym_friend] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_static_assert] = ACTIONS(3522), + [anon_sym_LBRACK_COLON] = ACTIONS(3524), }, [STATE(2738)] = { - [sym_identifier] = ACTIONS(3988), - [aux_sym_preproc_def_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token2] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), - [aux_sym_preproc_else_token1] = ACTIONS(3988), - [aux_sym_preproc_elif_token1] = ACTIONS(3988), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3988), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3988), - [sym_preproc_directive] = ACTIONS(3988), - [anon_sym_LPAREN2] = ACTIONS(3990), - [anon_sym_TILDE] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3988), - [anon_sym_SEMI] = ACTIONS(3990), - [anon_sym___extension__] = ACTIONS(3988), - [anon_sym_typedef] = ACTIONS(3988), - [anon_sym_virtual] = ACTIONS(3988), - [anon_sym_extern] = ACTIONS(3988), - [anon_sym___attribute__] = ACTIONS(3988), - [anon_sym___attribute] = ACTIONS(3988), - [anon_sym_using] = ACTIONS(3988), - [anon_sym_COLON_COLON] = ACTIONS(3990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), - [anon_sym___declspec] = ACTIONS(3988), - [anon_sym___based] = ACTIONS(3988), - [anon_sym_signed] = ACTIONS(3988), - [anon_sym_unsigned] = ACTIONS(3988), - [anon_sym_long] = ACTIONS(3988), - [anon_sym_short] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_static] = ACTIONS(3988), - [anon_sym_register] = ACTIONS(3988), - [anon_sym_inline] = ACTIONS(3988), - [anon_sym___inline] = ACTIONS(3988), - [anon_sym___inline__] = ACTIONS(3988), - [anon_sym___forceinline] = ACTIONS(3988), - [anon_sym_thread_local] = ACTIONS(3988), - [anon_sym___thread] = ACTIONS(3988), - [anon_sym_const] = ACTIONS(3988), - [anon_sym_constexpr] = ACTIONS(3988), - [anon_sym_volatile] = ACTIONS(3988), - [anon_sym_restrict] = ACTIONS(3988), - [anon_sym___restrict__] = ACTIONS(3988), - [anon_sym__Atomic] = ACTIONS(3988), - [anon_sym__Noreturn] = ACTIONS(3988), - [anon_sym_noreturn] = ACTIONS(3988), - [anon_sym__Nonnull] = ACTIONS(3988), - [anon_sym_mutable] = ACTIONS(3988), - [anon_sym_constinit] = ACTIONS(3988), - [anon_sym_consteval] = ACTIONS(3988), - [anon_sym_alignas] = ACTIONS(3988), - [anon_sym__Alignas] = ACTIONS(3988), - [sym_primitive_type] = ACTIONS(3988), - [anon_sym_enum] = ACTIONS(3988), - [anon_sym_class] = ACTIONS(3988), - [anon_sym_struct] = ACTIONS(3988), - [anon_sym_union] = ACTIONS(3988), - [anon_sym_typename] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3988), - [anon_sym_decltype] = ACTIONS(3988), - [anon_sym_explicit] = ACTIONS(3988), - [anon_sym_private] = ACTIONS(3988), - [anon_sym_template] = ACTIONS(3988), - [anon_sym_operator] = ACTIONS(3988), - [anon_sym_friend] = ACTIONS(3988), - [anon_sym_public] = ACTIONS(3988), - [anon_sym_protected] = ACTIONS(3988), - [anon_sym_static_assert] = ACTIONS(3988), - [anon_sym_LBRACK_COLON] = ACTIONS(3990), + [sym_identifier] = ACTIONS(3758), + [aux_sym_preproc_def_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token2] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3758), + [aux_sym_preproc_else_token1] = ACTIONS(3758), + [aux_sym_preproc_elif_token1] = ACTIONS(3758), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3758), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3758), + [sym_preproc_directive] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_STAR] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym___extension__] = ACTIONS(3758), + [anon_sym_typedef] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym___attribute] = ACTIONS(3758), + [anon_sym_using] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym_signed] = ACTIONS(3758), + [anon_sym_unsigned] = ACTIONS(3758), + [anon_sym_long] = ACTIONS(3758), + [anon_sym_short] = ACTIONS(3758), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym___restrict__] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym__Noreturn] = ACTIONS(3758), + [anon_sym_noreturn] = ACTIONS(3758), + [anon_sym__Nonnull] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_alignas] = ACTIONS(3758), + [anon_sym__Alignas] = ACTIONS(3758), + [sym_primitive_type] = ACTIONS(3758), + [anon_sym_enum] = ACTIONS(3758), + [anon_sym_class] = ACTIONS(3758), + [anon_sym_struct] = ACTIONS(3758), + [anon_sym_union] = ACTIONS(3758), + [anon_sym_typename] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_explicit] = ACTIONS(3758), + [anon_sym_private] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + [anon_sym_friend] = ACTIONS(3758), + [anon_sym_public] = ACTIONS(3758), + [anon_sym_protected] = ACTIONS(3758), + [anon_sym_static_assert] = ACTIONS(3758), + [anon_sym_LBRACK_COLON] = ACTIONS(3760), }, [STATE(2739)] = { - [sym_identifier] = ACTIONS(3992), - [aux_sym_preproc_def_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token2] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), - [aux_sym_preproc_else_token1] = ACTIONS(3992), - [aux_sym_preproc_elif_token1] = ACTIONS(3992), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3992), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3992), - [sym_preproc_directive] = ACTIONS(3992), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_TILDE] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3992), - [anon_sym_SEMI] = ACTIONS(3994), - [anon_sym___extension__] = ACTIONS(3992), - [anon_sym_typedef] = ACTIONS(3992), - [anon_sym_virtual] = ACTIONS(3992), - [anon_sym_extern] = ACTIONS(3992), - [anon_sym___attribute__] = ACTIONS(3992), - [anon_sym___attribute] = ACTIONS(3992), - [anon_sym_using] = ACTIONS(3992), - [anon_sym_COLON_COLON] = ACTIONS(3994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), - [anon_sym___declspec] = ACTIONS(3992), - [anon_sym___based] = ACTIONS(3992), - [anon_sym_signed] = ACTIONS(3992), - [anon_sym_unsigned] = ACTIONS(3992), - [anon_sym_long] = ACTIONS(3992), - [anon_sym_short] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_register] = ACTIONS(3992), - [anon_sym_inline] = ACTIONS(3992), - [anon_sym___inline] = ACTIONS(3992), - [anon_sym___inline__] = ACTIONS(3992), - [anon_sym___forceinline] = ACTIONS(3992), - [anon_sym_thread_local] = ACTIONS(3992), - [anon_sym___thread] = ACTIONS(3992), - [anon_sym_const] = ACTIONS(3992), - [anon_sym_constexpr] = ACTIONS(3992), - [anon_sym_volatile] = ACTIONS(3992), - [anon_sym_restrict] = ACTIONS(3992), - [anon_sym___restrict__] = ACTIONS(3992), - [anon_sym__Atomic] = ACTIONS(3992), - [anon_sym__Noreturn] = ACTIONS(3992), - [anon_sym_noreturn] = ACTIONS(3992), - [anon_sym__Nonnull] = ACTIONS(3992), - [anon_sym_mutable] = ACTIONS(3992), - [anon_sym_constinit] = ACTIONS(3992), - [anon_sym_consteval] = ACTIONS(3992), - [anon_sym_alignas] = ACTIONS(3992), - [anon_sym__Alignas] = ACTIONS(3992), - [sym_primitive_type] = ACTIONS(3992), - [anon_sym_enum] = ACTIONS(3992), - [anon_sym_class] = ACTIONS(3992), - [anon_sym_struct] = ACTIONS(3992), - [anon_sym_union] = ACTIONS(3992), - [anon_sym_typename] = ACTIONS(3992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3992), - [anon_sym_decltype] = ACTIONS(3992), - [anon_sym_explicit] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_template] = ACTIONS(3992), - [anon_sym_operator] = ACTIONS(3992), - [anon_sym_friend] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_protected] = ACTIONS(3992), - [anon_sym_static_assert] = ACTIONS(3992), - [anon_sym_LBRACK_COLON] = ACTIONS(3994), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [aux_sym_sized_type_specifier_repeat1] = STATE(3540), + [sym_identifier] = ACTIONS(8635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7193), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7193), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7193), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7193), + [anon_sym_GT_GT] = ACTIONS(7193), + [anon_sym_SEMI] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(8637), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_COLON] = ACTIONS(7195), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7193), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_RBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(8640), + [anon_sym_unsigned] = ACTIONS(8640), + [anon_sym_long] = ACTIONS(8640), + [anon_sym_short] = ACTIONS(8640), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_const] = ACTIONS(8637), + [anon_sym_constexpr] = ACTIONS(8637), + [anon_sym_volatile] = ACTIONS(8637), + [anon_sym_restrict] = ACTIONS(8637), + [anon_sym___restrict__] = ACTIONS(8637), + [anon_sym__Atomic] = ACTIONS(8637), + [anon_sym__Noreturn] = ACTIONS(8637), + [anon_sym_noreturn] = ACTIONS(8637), + [anon_sym__Nonnull] = ACTIONS(8637), + [anon_sym_mutable] = ACTIONS(8637), + [anon_sym_constinit] = ACTIONS(8637), + [anon_sym_consteval] = ACTIONS(8637), + [anon_sym_alignas] = ACTIONS(8642), + [anon_sym__Alignas] = ACTIONS(8642), + [sym_primitive_type] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_requires] = ACTIONS(7195), + [anon_sym_COLON_RBRACK] = ACTIONS(7193), }, [STATE(2740)] = { - [sym_identifier] = ACTIONS(4112), - [aux_sym_preproc_def_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token2] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), - [aux_sym_preproc_else_token1] = ACTIONS(4112), - [aux_sym_preproc_elif_token1] = ACTIONS(4112), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4112), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4112), - [sym_preproc_directive] = ACTIONS(4112), - [anon_sym_LPAREN2] = ACTIONS(4114), - [anon_sym_TILDE] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym___extension__] = ACTIONS(4112), - [anon_sym_typedef] = ACTIONS(4112), - [anon_sym_virtual] = ACTIONS(4112), - [anon_sym_extern] = ACTIONS(4112), - [anon_sym___attribute__] = ACTIONS(4112), - [anon_sym___attribute] = ACTIONS(4112), - [anon_sym_using] = ACTIONS(4112), - [anon_sym_COLON_COLON] = ACTIONS(4114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), - [anon_sym___declspec] = ACTIONS(4112), - [anon_sym___based] = ACTIONS(4112), - [anon_sym_signed] = ACTIONS(4112), - [anon_sym_unsigned] = ACTIONS(4112), - [anon_sym_long] = ACTIONS(4112), - [anon_sym_short] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_static] = ACTIONS(4112), - [anon_sym_register] = ACTIONS(4112), - [anon_sym_inline] = ACTIONS(4112), - [anon_sym___inline] = ACTIONS(4112), - [anon_sym___inline__] = ACTIONS(4112), - [anon_sym___forceinline] = ACTIONS(4112), - [anon_sym_thread_local] = ACTIONS(4112), - [anon_sym___thread] = ACTIONS(4112), - [anon_sym_const] = ACTIONS(4112), - [anon_sym_constexpr] = ACTIONS(4112), - [anon_sym_volatile] = ACTIONS(4112), - [anon_sym_restrict] = ACTIONS(4112), - [anon_sym___restrict__] = ACTIONS(4112), - [anon_sym__Atomic] = ACTIONS(4112), - [anon_sym__Noreturn] = ACTIONS(4112), - [anon_sym_noreturn] = ACTIONS(4112), - [anon_sym__Nonnull] = ACTIONS(4112), - [anon_sym_mutable] = ACTIONS(4112), - [anon_sym_constinit] = ACTIONS(4112), - [anon_sym_consteval] = ACTIONS(4112), - [anon_sym_alignas] = ACTIONS(4112), - [anon_sym__Alignas] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(4112), - [anon_sym_enum] = ACTIONS(4112), - [anon_sym_class] = ACTIONS(4112), - [anon_sym_struct] = ACTIONS(4112), - [anon_sym_union] = ACTIONS(4112), - [anon_sym_typename] = ACTIONS(4112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4112), - [anon_sym_decltype] = ACTIONS(4112), - [anon_sym_explicit] = ACTIONS(4112), - [anon_sym_private] = ACTIONS(4112), - [anon_sym_template] = ACTIONS(4112), - [anon_sym_operator] = ACTIONS(4112), - [anon_sym_friend] = ACTIONS(4112), - [anon_sym_public] = ACTIONS(4112), - [anon_sym_protected] = ACTIONS(4112), - [anon_sym_static_assert] = ACTIONS(4112), - [anon_sym_LBRACK_COLON] = ACTIONS(4114), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token2] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [aux_sym_preproc_else_token1] = ACTIONS(3534), + [aux_sym_preproc_elif_token1] = ACTIONS(3534), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_friend] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), }, [STATE(2741)] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token2] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [aux_sym_preproc_else_token1] = ACTIONS(3626), - [aux_sym_preproc_elif_token1] = ACTIONS(3626), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_friend] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), - }, - [STATE(2742)] = { - [sym_template_argument_list] = STATE(2928), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_RPAREN] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7085), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7085), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7085), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(8198), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7090), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7090), - [anon_sym_and] = ACTIONS(7090), - [anon_sym_bitor] = ACTIONS(7090), - [anon_sym_xor] = ACTIONS(7090), - [anon_sym_bitand] = ACTIONS(7090), - [anon_sym_not_eq] = ACTIONS(7090), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7085), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), - [anon_sym_DASH_GT_STAR] = ACTIONS(7090), - }, - [STATE(2743)] = { - [sym_identifier] = ACTIONS(8643), - [aux_sym_preproc_def_token1] = ACTIONS(8643), - [aux_sym_preproc_if_token1] = ACTIONS(8643), - [aux_sym_preproc_if_token2] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), - [aux_sym_preproc_else_token1] = ACTIONS(8643), - [aux_sym_preproc_elif_token1] = ACTIONS(8643), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8643), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8643), - [sym_preproc_directive] = ACTIONS(8643), - [anon_sym_LPAREN2] = ACTIONS(8645), - [anon_sym_TILDE] = ACTIONS(8645), - [anon_sym_STAR] = ACTIONS(8645), - [anon_sym_AMP_AMP] = ACTIONS(8645), - [anon_sym_AMP] = ACTIONS(8643), - [anon_sym_SEMI] = ACTIONS(8645), - [anon_sym___extension__] = ACTIONS(8643), - [anon_sym_typedef] = ACTIONS(8643), - [anon_sym_virtual] = ACTIONS(8643), - [anon_sym_extern] = ACTIONS(8643), - [anon_sym___attribute__] = ACTIONS(8643), - [anon_sym___attribute] = ACTIONS(8643), - [anon_sym_using] = ACTIONS(8643), - [anon_sym_COLON_COLON] = ACTIONS(8645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), - [anon_sym___declspec] = ACTIONS(8643), - [anon_sym___based] = ACTIONS(8643), - [anon_sym_signed] = ACTIONS(8643), - [anon_sym_unsigned] = ACTIONS(8643), - [anon_sym_long] = ACTIONS(8643), - [anon_sym_short] = ACTIONS(8643), - [anon_sym_LBRACK] = ACTIONS(8643), - [anon_sym_static] = ACTIONS(8643), - [anon_sym_register] = ACTIONS(8643), - [anon_sym_inline] = ACTIONS(8643), - [anon_sym___inline] = ACTIONS(8643), - [anon_sym___inline__] = ACTIONS(8643), - [anon_sym___forceinline] = ACTIONS(8643), - [anon_sym_thread_local] = ACTIONS(8643), - [anon_sym___thread] = ACTIONS(8643), - [anon_sym_const] = ACTIONS(8643), - [anon_sym_constexpr] = ACTIONS(8643), - [anon_sym_volatile] = ACTIONS(8643), - [anon_sym_restrict] = ACTIONS(8643), - [anon_sym___restrict__] = ACTIONS(8643), - [anon_sym__Atomic] = ACTIONS(8643), - [anon_sym__Noreturn] = ACTIONS(8643), - [anon_sym_noreturn] = ACTIONS(8643), - [anon_sym__Nonnull] = ACTIONS(8643), - [anon_sym_mutable] = ACTIONS(8643), - [anon_sym_constinit] = ACTIONS(8643), - [anon_sym_consteval] = ACTIONS(8643), - [anon_sym_alignas] = ACTIONS(8643), - [anon_sym__Alignas] = ACTIONS(8643), - [sym_primitive_type] = ACTIONS(8643), - [anon_sym_enum] = ACTIONS(8643), - [anon_sym_class] = ACTIONS(8643), - [anon_sym_struct] = ACTIONS(8643), - [anon_sym_union] = ACTIONS(8643), - [anon_sym_typename] = ACTIONS(8643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8643), - [anon_sym_decltype] = ACTIONS(8643), - [anon_sym_explicit] = ACTIONS(8643), - [anon_sym_private] = ACTIONS(8643), - [anon_sym_template] = ACTIONS(8643), - [anon_sym_operator] = ACTIONS(8643), - [anon_sym_friend] = ACTIONS(8643), - [anon_sym_public] = ACTIONS(8643), - [anon_sym_protected] = ACTIONS(8643), - [anon_sym_static_assert] = ACTIONS(8643), - [anon_sym_LBRACK_COLON] = ACTIONS(8645), - }, - [STATE(2744)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [aux_sym_preproc_else_token1] = ACTIONS(3630), - [aux_sym_preproc_elif_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - }, - [STATE(2745)] = { - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token2] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [aux_sym_preproc_else_token1] = ACTIONS(4192), - [aux_sym_preproc_elif_token1] = ACTIONS(4192), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_private] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_friend] = ACTIONS(4192), - [anon_sym_public] = ACTIONS(4192), - [anon_sym_protected] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - }, - [STATE(2746)] = { - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token2] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [aux_sym_preproc_else_token1] = ACTIONS(4168), - [aux_sym_preproc_elif_token1] = ACTIONS(4168), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_private] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_friend] = ACTIONS(4168), - [anon_sym_public] = ACTIONS(4168), - [anon_sym_protected] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), - }, - [STATE(2747)] = { [sym_identifier] = ACTIONS(8647), [aux_sym_preproc_def_token1] = ACTIONS(8647), [aux_sym_preproc_if_token1] = ACTIONS(8647), @@ -374965,908 +374368,4283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(8647), [anon_sym_LBRACK_COLON] = ACTIONS(8649), }, + [STATE(2742)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7698), + [anon_sym_COMMA] = ACTIONS(7698), + [anon_sym_RPAREN] = ACTIONS(7698), + [anon_sym_LPAREN2] = ACTIONS(7698), + [anon_sym_DASH] = ACTIONS(7696), + [anon_sym_PLUS] = ACTIONS(7696), + [anon_sym_STAR] = ACTIONS(7696), + [anon_sym_SLASH] = ACTIONS(7696), + [anon_sym_PERCENT] = ACTIONS(7696), + [anon_sym_PIPE_PIPE] = ACTIONS(7698), + [anon_sym_AMP_AMP] = ACTIONS(7698), + [anon_sym_PIPE] = ACTIONS(7696), + [anon_sym_CARET] = ACTIONS(7696), + [anon_sym_AMP] = ACTIONS(7696), + [anon_sym_EQ_EQ] = ACTIONS(7698), + [anon_sym_BANG_EQ] = ACTIONS(7698), + [anon_sym_GT] = ACTIONS(7696), + [anon_sym_GT_EQ] = ACTIONS(7698), + [anon_sym_LT_EQ] = ACTIONS(7696), + [anon_sym_LT] = ACTIONS(7696), + [anon_sym_LT_LT] = ACTIONS(7696), + [anon_sym_GT_GT] = ACTIONS(7696), + [anon_sym___extension__] = ACTIONS(7698), + [anon_sym___attribute__] = ACTIONS(7698), + [anon_sym___attribute] = ACTIONS(7696), + [anon_sym_LBRACE] = ACTIONS(7698), + [anon_sym_LBRACK] = ACTIONS(7698), + [anon_sym_EQ] = ACTIONS(7696), + [anon_sym_const] = ACTIONS(7696), + [anon_sym_constexpr] = ACTIONS(7698), + [anon_sym_volatile] = ACTIONS(7698), + [anon_sym_restrict] = ACTIONS(7698), + [anon_sym___restrict__] = ACTIONS(7698), + [anon_sym__Atomic] = ACTIONS(7698), + [anon_sym__Noreturn] = ACTIONS(7698), + [anon_sym_noreturn] = ACTIONS(7698), + [anon_sym__Nonnull] = ACTIONS(7698), + [anon_sym_mutable] = ACTIONS(7698), + [anon_sym_constinit] = ACTIONS(7698), + [anon_sym_consteval] = ACTIONS(7698), + [anon_sym_alignas] = ACTIONS(7698), + [anon_sym__Alignas] = ACTIONS(7698), + [anon_sym_QMARK] = ACTIONS(7698), + [anon_sym_STAR_EQ] = ACTIONS(7698), + [anon_sym_SLASH_EQ] = ACTIONS(7698), + [anon_sym_PERCENT_EQ] = ACTIONS(7698), + [anon_sym_PLUS_EQ] = ACTIONS(7698), + [anon_sym_DASH_EQ] = ACTIONS(7698), + [anon_sym_LT_LT_EQ] = ACTIONS(7698), + [anon_sym_GT_GT_EQ] = ACTIONS(7698), + [anon_sym_AMP_EQ] = ACTIONS(7698), + [anon_sym_CARET_EQ] = ACTIONS(7698), + [anon_sym_PIPE_EQ] = ACTIONS(7698), + [anon_sym_and_eq] = ACTIONS(7698), + [anon_sym_or_eq] = ACTIONS(7698), + [anon_sym_xor_eq] = ACTIONS(7698), + [anon_sym_LT_EQ_GT] = ACTIONS(7698), + [anon_sym_or] = ACTIONS(7696), + [anon_sym_and] = ACTIONS(7696), + [anon_sym_bitor] = ACTIONS(7698), + [anon_sym_xor] = ACTIONS(7696), + [anon_sym_bitand] = ACTIONS(7698), + [anon_sym_not_eq] = ACTIONS(7698), + [anon_sym_DASH_DASH] = ACTIONS(7698), + [anon_sym_PLUS_PLUS] = ACTIONS(7698), + [anon_sym_DOT] = ACTIONS(7696), + [anon_sym_DOT_STAR] = ACTIONS(7698), + [anon_sym_DASH_GT] = ACTIONS(7696), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7698), + [anon_sym_override] = ACTIONS(7698), + [anon_sym_requires] = ACTIONS(7698), + [anon_sym_DASH_GT_STAR] = ACTIONS(7698), + }, + [STATE(2743)] = { + [sym_identifier] = ACTIONS(8651), + [aux_sym_preproc_def_token1] = ACTIONS(8651), + [aux_sym_preproc_if_token1] = ACTIONS(8651), + [aux_sym_preproc_if_token2] = ACTIONS(8651), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8651), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8651), + [aux_sym_preproc_else_token1] = ACTIONS(8651), + [aux_sym_preproc_elif_token1] = ACTIONS(8651), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8651), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8651), + [sym_preproc_directive] = ACTIONS(8651), + [anon_sym_LPAREN2] = ACTIONS(8653), + [anon_sym_TILDE] = ACTIONS(8653), + [anon_sym_STAR] = ACTIONS(8653), + [anon_sym_AMP_AMP] = ACTIONS(8653), + [anon_sym_AMP] = ACTIONS(8651), + [anon_sym_SEMI] = ACTIONS(8653), + [anon_sym___extension__] = ACTIONS(8651), + [anon_sym_typedef] = ACTIONS(8651), + [anon_sym_virtual] = ACTIONS(8651), + [anon_sym_extern] = ACTIONS(8651), + [anon_sym___attribute__] = ACTIONS(8651), + [anon_sym___attribute] = ACTIONS(8651), + [anon_sym_using] = ACTIONS(8651), + [anon_sym_COLON_COLON] = ACTIONS(8653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8653), + [anon_sym___declspec] = ACTIONS(8651), + [anon_sym___based] = ACTIONS(8651), + [anon_sym_signed] = ACTIONS(8651), + [anon_sym_unsigned] = ACTIONS(8651), + [anon_sym_long] = ACTIONS(8651), + [anon_sym_short] = ACTIONS(8651), + [anon_sym_LBRACK] = ACTIONS(8651), + [anon_sym_static] = ACTIONS(8651), + [anon_sym_register] = ACTIONS(8651), + [anon_sym_inline] = ACTIONS(8651), + [anon_sym___inline] = ACTIONS(8651), + [anon_sym___inline__] = ACTIONS(8651), + [anon_sym___forceinline] = ACTIONS(8651), + [anon_sym_thread_local] = ACTIONS(8651), + [anon_sym___thread] = ACTIONS(8651), + [anon_sym_const] = ACTIONS(8651), + [anon_sym_constexpr] = ACTIONS(8651), + [anon_sym_volatile] = ACTIONS(8651), + [anon_sym_restrict] = ACTIONS(8651), + [anon_sym___restrict__] = ACTIONS(8651), + [anon_sym__Atomic] = ACTIONS(8651), + [anon_sym__Noreturn] = ACTIONS(8651), + [anon_sym_noreturn] = ACTIONS(8651), + [anon_sym__Nonnull] = ACTIONS(8651), + [anon_sym_mutable] = ACTIONS(8651), + [anon_sym_constinit] = ACTIONS(8651), + [anon_sym_consteval] = ACTIONS(8651), + [anon_sym_alignas] = ACTIONS(8651), + [anon_sym__Alignas] = ACTIONS(8651), + [sym_primitive_type] = ACTIONS(8651), + [anon_sym_enum] = ACTIONS(8651), + [anon_sym_class] = ACTIONS(8651), + [anon_sym_struct] = ACTIONS(8651), + [anon_sym_union] = ACTIONS(8651), + [anon_sym_typename] = ACTIONS(8651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8651), + [anon_sym_decltype] = ACTIONS(8651), + [anon_sym_explicit] = ACTIONS(8651), + [anon_sym_private] = ACTIONS(8651), + [anon_sym_template] = ACTIONS(8651), + [anon_sym_operator] = ACTIONS(8651), + [anon_sym_friend] = ACTIONS(8651), + [anon_sym_public] = ACTIONS(8651), + [anon_sym_protected] = ACTIONS(8651), + [anon_sym_static_assert] = ACTIONS(8651), + [anon_sym_LBRACK_COLON] = ACTIONS(8653), + }, + [STATE(2744)] = { + [sym_decltype_auto] = STATE(3215), + [sym_template_argument_list] = STATE(2919), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5617), + [anon_sym_RPAREN] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5617), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_PERCENT] = ACTIONS(5617), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5617), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_EQ_EQ] = ACTIONS(5617), + [anon_sym_BANG_EQ] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_GT_EQ] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(8655), + [anon_sym_LT_LT] = ACTIONS(5617), + [anon_sym_GT_GT] = ACTIONS(5617), + [anon_sym_SEMI] = ACTIONS(5617), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym___attribute__] = ACTIONS(5617), + [anon_sym___attribute] = ACTIONS(5609), + [anon_sym_COLON] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5617), + [anon_sym_LBRACE] = ACTIONS(5617), + [anon_sym_RBRACE] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(6864), + [anon_sym_unsigned] = ACTIONS(6864), + [anon_sym_long] = ACTIONS(6864), + [anon_sym_short] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_LT_EQ_GT] = ACTIONS(5617), + [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(5617), + [anon_sym_PLUS_PLUS] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_DOT_STAR] = ACTIONS(5617), + [anon_sym_DASH_GT] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6866), + [anon_sym_decltype] = ACTIONS(6868), + [anon_sym_final] = ACTIONS(5617), + [anon_sym_override] = ACTIONS(5617), + [anon_sym_requires] = ACTIONS(5617), + [anon_sym_COLON_RBRACK] = ACTIONS(5617), + }, + [STATE(2745)] = { + [sym_identifier] = ACTIONS(3754), + [aux_sym_preproc_def_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token2] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3754), + [aux_sym_preproc_else_token1] = ACTIONS(3754), + [aux_sym_preproc_elif_token1] = ACTIONS(3754), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3754), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3754), + [sym_preproc_directive] = ACTIONS(3754), + [anon_sym_LPAREN2] = ACTIONS(3756), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_STAR] = ACTIONS(3756), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(3756), + [anon_sym___extension__] = ACTIONS(3754), + [anon_sym_typedef] = ACTIONS(3754), + [anon_sym_virtual] = ACTIONS(3754), + [anon_sym_extern] = ACTIONS(3754), + [anon_sym___attribute__] = ACTIONS(3754), + [anon_sym___attribute] = ACTIONS(3754), + [anon_sym_using] = ACTIONS(3754), + [anon_sym_COLON_COLON] = ACTIONS(3756), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3756), + [anon_sym___declspec] = ACTIONS(3754), + [anon_sym___based] = ACTIONS(3754), + [anon_sym_signed] = ACTIONS(3754), + [anon_sym_unsigned] = ACTIONS(3754), + [anon_sym_long] = ACTIONS(3754), + [anon_sym_short] = ACTIONS(3754), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_static] = ACTIONS(3754), + [anon_sym_register] = ACTIONS(3754), + [anon_sym_inline] = ACTIONS(3754), + [anon_sym___inline] = ACTIONS(3754), + [anon_sym___inline__] = ACTIONS(3754), + [anon_sym___forceinline] = ACTIONS(3754), + [anon_sym_thread_local] = ACTIONS(3754), + [anon_sym___thread] = ACTIONS(3754), + [anon_sym_const] = ACTIONS(3754), + [anon_sym_constexpr] = ACTIONS(3754), + [anon_sym_volatile] = ACTIONS(3754), + [anon_sym_restrict] = ACTIONS(3754), + [anon_sym___restrict__] = ACTIONS(3754), + [anon_sym__Atomic] = ACTIONS(3754), + [anon_sym__Noreturn] = ACTIONS(3754), + [anon_sym_noreturn] = ACTIONS(3754), + [anon_sym__Nonnull] = ACTIONS(3754), + [anon_sym_mutable] = ACTIONS(3754), + [anon_sym_constinit] = ACTIONS(3754), + [anon_sym_consteval] = ACTIONS(3754), + [anon_sym_alignas] = ACTIONS(3754), + [anon_sym__Alignas] = ACTIONS(3754), + [sym_primitive_type] = ACTIONS(3754), + [anon_sym_enum] = ACTIONS(3754), + [anon_sym_class] = ACTIONS(3754), + [anon_sym_struct] = ACTIONS(3754), + [anon_sym_union] = ACTIONS(3754), + [anon_sym_typename] = ACTIONS(3754), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3754), + [anon_sym_decltype] = ACTIONS(3754), + [anon_sym_explicit] = ACTIONS(3754), + [anon_sym_private] = ACTIONS(3754), + [anon_sym_template] = ACTIONS(3754), + [anon_sym_operator] = ACTIONS(3754), + [anon_sym_friend] = ACTIONS(3754), + [anon_sym_public] = ACTIONS(3754), + [anon_sym_protected] = ACTIONS(3754), + [anon_sym_static_assert] = ACTIONS(3754), + [anon_sym_LBRACK_COLON] = ACTIONS(3756), + }, + [STATE(2746)] = { + [sym_ms_based_modifier] = STATE(10831), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(2894), + [sym__declarator] = STATE(8815), + [sym__abstract_declarator] = STATE(9045), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(3771), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5335), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(3771), + [aux_sym_pointer_declarator_repeat1] = STATE(2894), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8657), + [anon_sym_AMP_AMP] = ACTIONS(8659), + [anon_sym_AMP] = ACTIONS(8661), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6819), + [anon_sym___attribute] = ACTIONS(6819), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(6815), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2747)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7670), + [anon_sym_COMMA] = ACTIONS(7670), + [anon_sym_RPAREN] = ACTIONS(7670), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_DASH] = ACTIONS(7668), + [anon_sym_PLUS] = ACTIONS(7668), + [anon_sym_STAR] = ACTIONS(7668), + [anon_sym_SLASH] = ACTIONS(7668), + [anon_sym_PERCENT] = ACTIONS(7668), + [anon_sym_PIPE_PIPE] = ACTIONS(7670), + [anon_sym_AMP_AMP] = ACTIONS(7670), + [anon_sym_PIPE] = ACTIONS(7668), + [anon_sym_CARET] = ACTIONS(7668), + [anon_sym_AMP] = ACTIONS(7668), + [anon_sym_EQ_EQ] = ACTIONS(7670), + [anon_sym_BANG_EQ] = ACTIONS(7670), + [anon_sym_GT] = ACTIONS(7668), + [anon_sym_GT_EQ] = ACTIONS(7670), + [anon_sym_LT_EQ] = ACTIONS(7668), + [anon_sym_LT] = ACTIONS(7668), + [anon_sym_LT_LT] = ACTIONS(7668), + [anon_sym_GT_GT] = ACTIONS(7668), + [anon_sym___extension__] = ACTIONS(7670), + [anon_sym___attribute__] = ACTIONS(7670), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7670), + [anon_sym_EQ] = ACTIONS(7668), + [anon_sym_const] = ACTIONS(7668), + [anon_sym_constexpr] = ACTIONS(7670), + [anon_sym_volatile] = ACTIONS(7670), + [anon_sym_restrict] = ACTIONS(7670), + [anon_sym___restrict__] = ACTIONS(7670), + [anon_sym__Atomic] = ACTIONS(7670), + [anon_sym__Noreturn] = ACTIONS(7670), + [anon_sym_noreturn] = ACTIONS(7670), + [anon_sym__Nonnull] = ACTIONS(7670), + [anon_sym_mutable] = ACTIONS(7670), + [anon_sym_constinit] = ACTIONS(7670), + [anon_sym_consteval] = ACTIONS(7670), + [anon_sym_alignas] = ACTIONS(7670), + [anon_sym__Alignas] = ACTIONS(7670), + [anon_sym_QMARK] = ACTIONS(7670), + [anon_sym_STAR_EQ] = ACTIONS(7670), + [anon_sym_SLASH_EQ] = ACTIONS(7670), + [anon_sym_PERCENT_EQ] = ACTIONS(7670), + [anon_sym_PLUS_EQ] = ACTIONS(7670), + [anon_sym_DASH_EQ] = ACTIONS(7670), + [anon_sym_LT_LT_EQ] = ACTIONS(7670), + [anon_sym_GT_GT_EQ] = ACTIONS(7670), + [anon_sym_AMP_EQ] = ACTIONS(7670), + [anon_sym_CARET_EQ] = ACTIONS(7670), + [anon_sym_PIPE_EQ] = ACTIONS(7670), + [anon_sym_and_eq] = ACTIONS(7670), + [anon_sym_or_eq] = ACTIONS(7670), + [anon_sym_xor_eq] = ACTIONS(7670), + [anon_sym_LT_EQ_GT] = ACTIONS(7670), + [anon_sym_or] = ACTIONS(7668), + [anon_sym_and] = ACTIONS(7668), + [anon_sym_bitor] = ACTIONS(7670), + [anon_sym_xor] = ACTIONS(7668), + [anon_sym_bitand] = ACTIONS(7670), + [anon_sym_not_eq] = ACTIONS(7670), + [anon_sym_DASH_DASH] = ACTIONS(7670), + [anon_sym_PLUS_PLUS] = ACTIONS(7670), + [anon_sym_DOT] = ACTIONS(7668), + [anon_sym_DOT_STAR] = ACTIONS(7670), + [anon_sym_DASH_GT] = ACTIONS(7668), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7670), + [anon_sym_override] = ACTIONS(7670), + [anon_sym_requires] = ACTIONS(7670), + [anon_sym_DASH_GT_STAR] = ACTIONS(7670), + }, [STATE(2748)] = { - [sym_attribute_specifier] = STATE(3188), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7425), - [anon_sym_COMMA] = ACTIONS(7425), - [anon_sym_LPAREN2] = ACTIONS(7425), - [anon_sym_DASH] = ACTIONS(7423), - [anon_sym_PLUS] = ACTIONS(7423), - [anon_sym_STAR] = ACTIONS(7423), - [anon_sym_SLASH] = ACTIONS(7423), - [anon_sym_PERCENT] = ACTIONS(7423), - [anon_sym_PIPE_PIPE] = ACTIONS(7425), - [anon_sym_AMP_AMP] = ACTIONS(7425), - [anon_sym_PIPE] = ACTIONS(7423), - [anon_sym_CARET] = ACTIONS(7423), - [anon_sym_AMP] = ACTIONS(7423), - [anon_sym_EQ_EQ] = ACTIONS(7425), - [anon_sym_BANG_EQ] = ACTIONS(7425), - [anon_sym_GT] = ACTIONS(7423), - [anon_sym_GT_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7423), - [anon_sym_LT] = ACTIONS(7423), - [anon_sym_LT_LT] = ACTIONS(7423), - [anon_sym_GT_GT] = ACTIONS(7423), - [anon_sym___extension__] = ACTIONS(7425), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7425), - [anon_sym_LBRACK] = ACTIONS(7425), - [anon_sym_RBRACK] = ACTIONS(7425), - [anon_sym_EQ] = ACTIONS(7423), - [anon_sym_const] = ACTIONS(7423), - [anon_sym_constexpr] = ACTIONS(7425), - [anon_sym_volatile] = ACTIONS(7425), - [anon_sym_restrict] = ACTIONS(7425), - [anon_sym___restrict__] = ACTIONS(7425), - [anon_sym__Atomic] = ACTIONS(7425), - [anon_sym__Noreturn] = ACTIONS(7425), - [anon_sym_noreturn] = ACTIONS(7425), - [anon_sym__Nonnull] = ACTIONS(7425), - [anon_sym_mutable] = ACTIONS(7425), - [anon_sym_constinit] = ACTIONS(7425), - [anon_sym_consteval] = ACTIONS(7425), - [anon_sym_alignas] = ACTIONS(7425), - [anon_sym__Alignas] = ACTIONS(7425), - [anon_sym_QMARK] = ACTIONS(7425), - [anon_sym_STAR_EQ] = ACTIONS(7425), - [anon_sym_SLASH_EQ] = ACTIONS(7425), - [anon_sym_PERCENT_EQ] = ACTIONS(7425), - [anon_sym_PLUS_EQ] = ACTIONS(7425), - [anon_sym_DASH_EQ] = ACTIONS(7425), - [anon_sym_LT_LT_EQ] = ACTIONS(7425), - [anon_sym_GT_GT_EQ] = ACTIONS(7425), - [anon_sym_AMP_EQ] = ACTIONS(7425), - [anon_sym_CARET_EQ] = ACTIONS(7425), - [anon_sym_PIPE_EQ] = ACTIONS(7425), - [anon_sym_and_eq] = ACTIONS(7425), - [anon_sym_or_eq] = ACTIONS(7425), - [anon_sym_xor_eq] = ACTIONS(7425), - [anon_sym_LT_EQ_GT] = ACTIONS(7425), - [anon_sym_or] = ACTIONS(7423), - [anon_sym_and] = ACTIONS(7423), - [anon_sym_bitor] = ACTIONS(7425), - [anon_sym_xor] = ACTIONS(7423), - [anon_sym_bitand] = ACTIONS(7425), - [anon_sym_not_eq] = ACTIONS(7425), - [anon_sym_DASH_DASH] = ACTIONS(7425), - [anon_sym_PLUS_PLUS] = ACTIONS(7425), - [anon_sym_DOT] = ACTIONS(7423), - [anon_sym_DOT_STAR] = ACTIONS(7425), - [anon_sym_DASH_GT] = ACTIONS(7425), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7425), - [anon_sym_override] = ACTIONS(7425), - [anon_sym_requires] = ACTIONS(7425), + [sym__declaration_modifiers] = STATE(5086), + [sym_attribute_specifier] = STATE(5086), + [sym_attribute_declaration] = STATE(5086), + [sym_ms_declspec_modifier] = STATE(5086), + [sym_storage_class_specifier] = STATE(5086), + [sym_type_qualifier] = STATE(5086), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(6412), + [sym_sized_type_specifier] = STATE(6059), + [sym_enum_specifier] = STATE(6059), + [sym_struct_specifier] = STATE(6059), + [sym_union_specifier] = STATE(6059), + [sym_placeholder_type_specifier] = STATE(6059), + [sym_decltype_auto] = STATE(6056), + [sym_decltype] = STATE(5990), + [sym_class_specifier] = STATE(6059), + [sym_dependent_type] = STATE(6059), + [sym_template_type] = STATE(5341), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8753), + [sym_qualified_type_identifier] = STATE(5691), + [sym_splice_specifier] = STATE(4989), + [sym__splice_specialization_specifier] = STATE(5354), + [sym_splice_type_specifier] = STATE(5990), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(5086), + [aux_sym_sized_type_specifier_repeat1] = STATE(4393), + [sym_identifier] = ACTIONS(5130), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8663), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5138), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [anon_sym___declspec] = ACTIONS(51), + [anon_sym_signed] = ACTIONS(5140), + [anon_sym_unsigned] = ACTIONS(5140), + [anon_sym_long] = ACTIONS(5140), + [anon_sym_short] = ACTIONS(5140), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(5142), + [anon_sym_enum] = ACTIONS(5144), + [anon_sym_class] = ACTIONS(5146), + [anon_sym_struct] = ACTIONS(5148), + [anon_sym_union] = ACTIONS(5150), + [anon_sym_typename] = ACTIONS(5152), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(5154), + [anon_sym_decltype] = ACTIONS(5156), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, [STATE(2749)] = { - [sym_identifier] = ACTIONS(4172), - [aux_sym_preproc_def_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token2] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), - [aux_sym_preproc_else_token1] = ACTIONS(4172), - [aux_sym_preproc_elif_token1] = ACTIONS(4172), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4172), - [sym_preproc_directive] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4172), - [anon_sym_typedef] = ACTIONS(4172), - [anon_sym_virtual] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(4172), - [anon_sym___attribute] = ACTIONS(4172), - [anon_sym_using] = ACTIONS(4172), - [anon_sym_COLON_COLON] = ACTIONS(4174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), - [anon_sym___declspec] = ACTIONS(4172), - [anon_sym___based] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4172), - [anon_sym_unsigned] = ACTIONS(4172), - [anon_sym_long] = ACTIONS(4172), - [anon_sym_short] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_static] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_inline] = ACTIONS(4172), - [anon_sym___inline] = ACTIONS(4172), - [anon_sym___inline__] = ACTIONS(4172), - [anon_sym___forceinline] = ACTIONS(4172), - [anon_sym_thread_local] = ACTIONS(4172), - [anon_sym___thread] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [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), - [sym_primitive_type] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_class] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_typename] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4172), - [anon_sym_decltype] = ACTIONS(4172), - [anon_sym_explicit] = ACTIONS(4172), - [anon_sym_private] = ACTIONS(4172), - [anon_sym_template] = ACTIONS(4172), - [anon_sym_operator] = ACTIONS(4172), - [anon_sym_friend] = ACTIONS(4172), - [anon_sym_public] = ACTIONS(4172), - [anon_sym_protected] = ACTIONS(4172), - [anon_sym_static_assert] = ACTIONS(4172), - [anon_sym_LBRACK_COLON] = ACTIONS(4174), + [sym_type_qualifier] = STATE(2739), + [sym_alignas_qualifier] = STATE(2724), + [aux_sym__type_definition_type_repeat1] = STATE(2739), + [aux_sym_sized_type_specifier_repeat1] = STATE(3084), + [sym_identifier] = ACTIONS(8665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_RPAREN] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym_SEMI] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(8667), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_COLON] = ACTIONS(7211), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7209), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_RBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(8670), + [anon_sym_unsigned] = ACTIONS(8670), + [anon_sym_long] = ACTIONS(8670), + [anon_sym_short] = ACTIONS(8670), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(8667), + [anon_sym_constexpr] = ACTIONS(8667), + [anon_sym_volatile] = ACTIONS(8667), + [anon_sym_restrict] = ACTIONS(8667), + [anon_sym___restrict__] = ACTIONS(8667), + [anon_sym__Atomic] = ACTIONS(8667), + [anon_sym__Noreturn] = ACTIONS(8667), + [anon_sym_noreturn] = ACTIONS(8667), + [anon_sym__Nonnull] = ACTIONS(8667), + [anon_sym_mutable] = ACTIONS(8667), + [anon_sym_constinit] = ACTIONS(8667), + [anon_sym_consteval] = ACTIONS(8667), + [anon_sym_alignas] = ACTIONS(8672), + [anon_sym__Alignas] = ACTIONS(8672), + [sym_primitive_type] = ACTIONS(8675), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), + [anon_sym_COLON_RBRACK] = ACTIONS(7209), }, [STATE(2750)] = { - [sym_identifier] = ACTIONS(4274), - [aux_sym_preproc_def_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token2] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), - [aux_sym_preproc_else_token1] = ACTIONS(4274), - [aux_sym_preproc_elif_token1] = ACTIONS(4274), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4274), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4274), - [sym_preproc_directive] = ACTIONS(4274), - [anon_sym_LPAREN2] = ACTIONS(4276), - [anon_sym_TILDE] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_AMP_AMP] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4274), - [anon_sym_SEMI] = ACTIONS(4276), - [anon_sym___extension__] = ACTIONS(4274), - [anon_sym_typedef] = ACTIONS(4274), - [anon_sym_virtual] = ACTIONS(4274), - [anon_sym_extern] = ACTIONS(4274), - [anon_sym___attribute__] = ACTIONS(4274), - [anon_sym___attribute] = ACTIONS(4274), - [anon_sym_using] = ACTIONS(4274), - [anon_sym_COLON_COLON] = ACTIONS(4276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), - [anon_sym___declspec] = ACTIONS(4274), - [anon_sym___based] = ACTIONS(4274), - [anon_sym_signed] = ACTIONS(4274), - [anon_sym_unsigned] = ACTIONS(4274), - [anon_sym_long] = ACTIONS(4274), - [anon_sym_short] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_static] = ACTIONS(4274), - [anon_sym_register] = ACTIONS(4274), - [anon_sym_inline] = ACTIONS(4274), - [anon_sym___inline] = ACTIONS(4274), - [anon_sym___inline__] = ACTIONS(4274), - [anon_sym___forceinline] = ACTIONS(4274), - [anon_sym_thread_local] = ACTIONS(4274), - [anon_sym___thread] = ACTIONS(4274), - [anon_sym_const] = ACTIONS(4274), - [anon_sym_constexpr] = ACTIONS(4274), - [anon_sym_volatile] = ACTIONS(4274), - [anon_sym_restrict] = ACTIONS(4274), - [anon_sym___restrict__] = ACTIONS(4274), - [anon_sym__Atomic] = ACTIONS(4274), - [anon_sym__Noreturn] = ACTIONS(4274), - [anon_sym_noreturn] = ACTIONS(4274), - [anon_sym__Nonnull] = ACTIONS(4274), - [anon_sym_mutable] = ACTIONS(4274), - [anon_sym_constinit] = ACTIONS(4274), - [anon_sym_consteval] = ACTIONS(4274), - [anon_sym_alignas] = ACTIONS(4274), - [anon_sym__Alignas] = ACTIONS(4274), - [sym_primitive_type] = ACTIONS(4274), - [anon_sym_enum] = ACTIONS(4274), - [anon_sym_class] = ACTIONS(4274), - [anon_sym_struct] = ACTIONS(4274), - [anon_sym_union] = ACTIONS(4274), - [anon_sym_typename] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4274), - [anon_sym_decltype] = ACTIONS(4274), - [anon_sym_explicit] = ACTIONS(4274), - [anon_sym_private] = ACTIONS(4274), - [anon_sym_template] = ACTIONS(4274), - [anon_sym_operator] = ACTIONS(4274), - [anon_sym_friend] = ACTIONS(4274), - [anon_sym_public] = ACTIONS(4274), - [anon_sym_protected] = ACTIONS(4274), - [anon_sym_static_assert] = ACTIONS(4274), - [anon_sym_LBRACK_COLON] = ACTIONS(4276), + [sym_identifier] = ACTIONS(6606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [anon_sym_RPAREN] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym_SEMI] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6606), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6608), + [anon_sym___based] = ACTIONS(6606), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_RBRACE] = ACTIONS(6608), + [anon_sym_signed] = ACTIONS(6606), + [anon_sym_unsigned] = ACTIONS(6606), + [anon_sym_long] = ACTIONS(6606), + [anon_sym_short] = ACTIONS(6606), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6606), + [anon_sym_volatile] = ACTIONS(6606), + [anon_sym_restrict] = ACTIONS(6606), + [anon_sym___restrict__] = ACTIONS(6606), + [anon_sym__Atomic] = ACTIONS(6606), + [anon_sym__Noreturn] = ACTIONS(6606), + [anon_sym_noreturn] = ACTIONS(6606), + [anon_sym__Nonnull] = ACTIONS(6606), + [anon_sym_mutable] = ACTIONS(6606), + [anon_sym_constinit] = ACTIONS(6606), + [anon_sym_consteval] = ACTIONS(6606), + [anon_sym_alignas] = ACTIONS(6606), + [anon_sym__Alignas] = ACTIONS(6606), + [sym_primitive_type] = ACTIONS(6606), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6606), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6606), + [anon_sym_not_eq] = ACTIONS(6606), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6606), + [anon_sym_decltype] = ACTIONS(6606), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_requires] = ACTIONS(6606), + [anon_sym_COLON_RBRACK] = ACTIONS(6608), }, [STATE(2751)] = { - [sym_identifier] = ACTIONS(4278), - [aux_sym_preproc_def_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token2] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), - [aux_sym_preproc_else_token1] = ACTIONS(4278), - [aux_sym_preproc_elif_token1] = ACTIONS(4278), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4278), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4278), - [sym_preproc_directive] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4280), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_AMP] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym___extension__] = ACTIONS(4278), - [anon_sym_typedef] = ACTIONS(4278), - [anon_sym_virtual] = ACTIONS(4278), - [anon_sym_extern] = ACTIONS(4278), - [anon_sym___attribute__] = ACTIONS(4278), - [anon_sym___attribute] = ACTIONS(4278), - [anon_sym_using] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), - [anon_sym___declspec] = ACTIONS(4278), - [anon_sym___based] = ACTIONS(4278), - [anon_sym_signed] = ACTIONS(4278), - [anon_sym_unsigned] = ACTIONS(4278), - [anon_sym_long] = ACTIONS(4278), - [anon_sym_short] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_static] = ACTIONS(4278), - [anon_sym_register] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym___inline] = ACTIONS(4278), - [anon_sym___inline__] = ACTIONS(4278), - [anon_sym___forceinline] = ACTIONS(4278), - [anon_sym_thread_local] = ACTIONS(4278), - [anon_sym___thread] = ACTIONS(4278), - [anon_sym_const] = ACTIONS(4278), - [anon_sym_constexpr] = ACTIONS(4278), - [anon_sym_volatile] = ACTIONS(4278), - [anon_sym_restrict] = ACTIONS(4278), - [anon_sym___restrict__] = ACTIONS(4278), - [anon_sym__Atomic] = ACTIONS(4278), - [anon_sym__Noreturn] = ACTIONS(4278), - [anon_sym_noreturn] = ACTIONS(4278), - [anon_sym__Nonnull] = ACTIONS(4278), - [anon_sym_mutable] = ACTIONS(4278), - [anon_sym_constinit] = ACTIONS(4278), - [anon_sym_consteval] = ACTIONS(4278), - [anon_sym_alignas] = ACTIONS(4278), - [anon_sym__Alignas] = ACTIONS(4278), - [sym_primitive_type] = ACTIONS(4278), - [anon_sym_enum] = ACTIONS(4278), - [anon_sym_class] = ACTIONS(4278), - [anon_sym_struct] = ACTIONS(4278), - [anon_sym_union] = ACTIONS(4278), - [anon_sym_typename] = ACTIONS(4278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4278), - [anon_sym_decltype] = ACTIONS(4278), - [anon_sym_explicit] = ACTIONS(4278), - [anon_sym_private] = ACTIONS(4278), - [anon_sym_template] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_friend] = ACTIONS(4278), - [anon_sym_public] = ACTIONS(4278), - [anon_sym_protected] = ACTIONS(4278), - [anon_sym_static_assert] = ACTIONS(4278), - [anon_sym_LBRACK_COLON] = ACTIONS(4280), + [sym_template_argument_list] = STATE(2630), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5637), + [anon_sym_RPAREN] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(7379), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(7379), + [anon_sym_PIPE_PIPE] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(7379), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(5637), + [anon_sym_BANG_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(8212), + [anon_sym_LT_LT] = ACTIONS(7379), + [anon_sym_GT_GT] = ACTIONS(7379), + [anon_sym___extension__] = ACTIONS(5637), + [anon_sym___attribute__] = ACTIONS(5637), + [anon_sym___attribute] = ACTIONS(7379), + [anon_sym_COLON] = ACTIONS(7379), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_EQ] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [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), + [anon_sym_QMARK] = ACTIONS(5637), + [anon_sym_STAR_EQ] = ACTIONS(5637), + [anon_sym_SLASH_EQ] = ACTIONS(5637), + [anon_sym_PERCENT_EQ] = ACTIONS(5637), + [anon_sym_PLUS_EQ] = ACTIONS(5637), + [anon_sym_DASH_EQ] = ACTIONS(5637), + [anon_sym_LT_LT_EQ] = ACTIONS(5637), + [anon_sym_GT_GT_EQ] = ACTIONS(5637), + [anon_sym_AMP_EQ] = ACTIONS(5637), + [anon_sym_CARET_EQ] = ACTIONS(5637), + [anon_sym_PIPE_EQ] = ACTIONS(5637), + [anon_sym_LT_EQ_GT] = ACTIONS(5637), + [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(5637), + [anon_sym_PLUS_PLUS] = ACTIONS(5637), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(5637), + [anon_sym_DASH_GT] = ACTIONS(7379), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5637), + [anon_sym_override] = ACTIONS(5637), + [anon_sym_requires] = ACTIONS(5637), + [anon_sym_DASH_GT_STAR] = ACTIONS(5637), }, [STATE(2752)] = { - [sym_attribute_specifier] = STATE(3194), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7433), - [anon_sym_COMMA] = ACTIONS(7433), - [anon_sym_LPAREN2] = ACTIONS(7433), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7431), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_PIPE_PIPE] = ACTIONS(7433), - [anon_sym_AMP_AMP] = ACTIONS(7433), - [anon_sym_PIPE] = ACTIONS(7431), - [anon_sym_CARET] = ACTIONS(7431), - [anon_sym_AMP] = ACTIONS(7431), - [anon_sym_EQ_EQ] = ACTIONS(7433), - [anon_sym_BANG_EQ] = ACTIONS(7433), - [anon_sym_GT] = ACTIONS(7431), - [anon_sym_GT_EQ] = ACTIONS(7433), - [anon_sym_LT_EQ] = ACTIONS(7431), - [anon_sym_LT] = ACTIONS(7431), - [anon_sym_LT_LT] = ACTIONS(7431), - [anon_sym_GT_GT] = ACTIONS(7431), - [anon_sym___extension__] = ACTIONS(7433), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7433), - [anon_sym_LBRACK] = ACTIONS(7433), - [anon_sym_RBRACK] = ACTIONS(7433), - [anon_sym_EQ] = ACTIONS(7431), - [anon_sym_const] = ACTIONS(7431), - [anon_sym_constexpr] = ACTIONS(7433), - [anon_sym_volatile] = ACTIONS(7433), - [anon_sym_restrict] = ACTIONS(7433), - [anon_sym___restrict__] = ACTIONS(7433), - [anon_sym__Atomic] = ACTIONS(7433), - [anon_sym__Noreturn] = ACTIONS(7433), - [anon_sym_noreturn] = ACTIONS(7433), - [anon_sym__Nonnull] = ACTIONS(7433), - [anon_sym_mutable] = ACTIONS(7433), - [anon_sym_constinit] = ACTIONS(7433), - [anon_sym_consteval] = ACTIONS(7433), - [anon_sym_alignas] = ACTIONS(7433), - [anon_sym__Alignas] = ACTIONS(7433), - [anon_sym_QMARK] = ACTIONS(7433), - [anon_sym_STAR_EQ] = ACTIONS(7433), - [anon_sym_SLASH_EQ] = ACTIONS(7433), - [anon_sym_PERCENT_EQ] = ACTIONS(7433), - [anon_sym_PLUS_EQ] = ACTIONS(7433), - [anon_sym_DASH_EQ] = ACTIONS(7433), - [anon_sym_LT_LT_EQ] = ACTIONS(7433), - [anon_sym_GT_GT_EQ] = ACTIONS(7433), - [anon_sym_AMP_EQ] = ACTIONS(7433), - [anon_sym_CARET_EQ] = ACTIONS(7433), - [anon_sym_PIPE_EQ] = ACTIONS(7433), - [anon_sym_and_eq] = ACTIONS(7433), - [anon_sym_or_eq] = ACTIONS(7433), - [anon_sym_xor_eq] = ACTIONS(7433), - [anon_sym_LT_EQ_GT] = ACTIONS(7433), - [anon_sym_or] = ACTIONS(7431), - [anon_sym_and] = ACTIONS(7431), - [anon_sym_bitor] = ACTIONS(7433), - [anon_sym_xor] = ACTIONS(7431), - [anon_sym_bitand] = ACTIONS(7433), - [anon_sym_not_eq] = ACTIONS(7433), - [anon_sym_DASH_DASH] = ACTIONS(7433), - [anon_sym_PLUS_PLUS] = ACTIONS(7433), - [anon_sym_DOT] = ACTIONS(7431), - [anon_sym_DOT_STAR] = ACTIONS(7433), - [anon_sym_DASH_GT] = ACTIONS(7433), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7433), - [anon_sym_override] = ACTIONS(7433), - [anon_sym_requires] = ACTIONS(7433), + [sym_identifier] = ACTIONS(4321), + [aux_sym_preproc_def_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token2] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4321), + [aux_sym_preproc_else_token1] = ACTIONS(4321), + [aux_sym_preproc_elif_token1] = ACTIONS(4321), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4321), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4321), + [sym_preproc_directive] = ACTIONS(4321), + [anon_sym_LPAREN2] = ACTIONS(4323), + [anon_sym_TILDE] = ACTIONS(4323), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_AMP] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym___extension__] = ACTIONS(4321), + [anon_sym_typedef] = ACTIONS(4321), + [anon_sym_virtual] = ACTIONS(4321), + [anon_sym_extern] = ACTIONS(4321), + [anon_sym___attribute__] = ACTIONS(4321), + [anon_sym___attribute] = ACTIONS(4321), + [anon_sym_using] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4323), + [anon_sym___declspec] = ACTIONS(4321), + [anon_sym___based] = ACTIONS(4321), + [anon_sym_signed] = ACTIONS(4321), + [anon_sym_unsigned] = ACTIONS(4321), + [anon_sym_long] = ACTIONS(4321), + [anon_sym_short] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_static] = ACTIONS(4321), + [anon_sym_register] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym___inline] = ACTIONS(4321), + [anon_sym___inline__] = ACTIONS(4321), + [anon_sym___forceinline] = ACTIONS(4321), + [anon_sym_thread_local] = ACTIONS(4321), + [anon_sym___thread] = ACTIONS(4321), + [anon_sym_const] = ACTIONS(4321), + [anon_sym_constexpr] = ACTIONS(4321), + [anon_sym_volatile] = ACTIONS(4321), + [anon_sym_restrict] = ACTIONS(4321), + [anon_sym___restrict__] = ACTIONS(4321), + [anon_sym__Atomic] = ACTIONS(4321), + [anon_sym__Noreturn] = ACTIONS(4321), + [anon_sym_noreturn] = ACTIONS(4321), + [anon_sym__Nonnull] = ACTIONS(4321), + [anon_sym_mutable] = ACTIONS(4321), + [anon_sym_constinit] = ACTIONS(4321), + [anon_sym_consteval] = ACTIONS(4321), + [anon_sym_alignas] = ACTIONS(4321), + [anon_sym__Alignas] = ACTIONS(4321), + [sym_primitive_type] = ACTIONS(4321), + [anon_sym_enum] = ACTIONS(4321), + [anon_sym_class] = ACTIONS(4321), + [anon_sym_struct] = ACTIONS(4321), + [anon_sym_union] = ACTIONS(4321), + [anon_sym_typename] = ACTIONS(4321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4321), + [anon_sym_decltype] = ACTIONS(4321), + [anon_sym_explicit] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_template] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_friend] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_static_assert] = ACTIONS(4321), + [anon_sym_LBRACK_COLON] = ACTIONS(4323), }, [STATE(2753)] = { - [sym_attribute_specifier] = STATE(3207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7437), - [anon_sym_COMMA] = ACTIONS(7437), - [anon_sym_LPAREN2] = ACTIONS(7437), - [anon_sym_DASH] = ACTIONS(7435), - [anon_sym_PLUS] = ACTIONS(7435), - [anon_sym_STAR] = ACTIONS(7435), - [anon_sym_SLASH] = ACTIONS(7435), - [anon_sym_PERCENT] = ACTIONS(7435), - [anon_sym_PIPE_PIPE] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7437), - [anon_sym_PIPE] = ACTIONS(7435), - [anon_sym_CARET] = ACTIONS(7435), - [anon_sym_AMP] = ACTIONS(7435), - [anon_sym_EQ_EQ] = ACTIONS(7437), - [anon_sym_BANG_EQ] = ACTIONS(7437), - [anon_sym_GT] = ACTIONS(7435), - [anon_sym_GT_EQ] = ACTIONS(7437), - [anon_sym_LT_EQ] = ACTIONS(7435), - [anon_sym_LT] = ACTIONS(7435), - [anon_sym_LT_LT] = ACTIONS(7435), - [anon_sym_GT_GT] = ACTIONS(7435), - [anon_sym___extension__] = ACTIONS(7437), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7437), - [anon_sym_LBRACK] = ACTIONS(7437), - [anon_sym_RBRACK] = ACTIONS(7437), - [anon_sym_EQ] = ACTIONS(7435), - [anon_sym_const] = ACTIONS(7435), - [anon_sym_constexpr] = ACTIONS(7437), - [anon_sym_volatile] = ACTIONS(7437), - [anon_sym_restrict] = ACTIONS(7437), - [anon_sym___restrict__] = ACTIONS(7437), - [anon_sym__Atomic] = ACTIONS(7437), - [anon_sym__Noreturn] = ACTIONS(7437), - [anon_sym_noreturn] = ACTIONS(7437), - [anon_sym__Nonnull] = ACTIONS(7437), - [anon_sym_mutable] = ACTIONS(7437), - [anon_sym_constinit] = ACTIONS(7437), - [anon_sym_consteval] = ACTIONS(7437), - [anon_sym_alignas] = ACTIONS(7437), - [anon_sym__Alignas] = ACTIONS(7437), - [anon_sym_QMARK] = ACTIONS(7437), - [anon_sym_STAR_EQ] = ACTIONS(7437), - [anon_sym_SLASH_EQ] = ACTIONS(7437), - [anon_sym_PERCENT_EQ] = ACTIONS(7437), - [anon_sym_PLUS_EQ] = ACTIONS(7437), - [anon_sym_DASH_EQ] = ACTIONS(7437), - [anon_sym_LT_LT_EQ] = ACTIONS(7437), - [anon_sym_GT_GT_EQ] = ACTIONS(7437), - [anon_sym_AMP_EQ] = ACTIONS(7437), - [anon_sym_CARET_EQ] = ACTIONS(7437), - [anon_sym_PIPE_EQ] = ACTIONS(7437), - [anon_sym_and_eq] = ACTIONS(7437), - [anon_sym_or_eq] = ACTIONS(7437), - [anon_sym_xor_eq] = ACTIONS(7437), - [anon_sym_LT_EQ_GT] = ACTIONS(7437), - [anon_sym_or] = ACTIONS(7435), - [anon_sym_and] = ACTIONS(7435), - [anon_sym_bitor] = ACTIONS(7437), - [anon_sym_xor] = ACTIONS(7435), - [anon_sym_bitand] = ACTIONS(7437), - [anon_sym_not_eq] = ACTIONS(7437), - [anon_sym_DASH_DASH] = ACTIONS(7437), - [anon_sym_PLUS_PLUS] = ACTIONS(7437), - [anon_sym_DOT] = ACTIONS(7435), - [anon_sym_DOT_STAR] = ACTIONS(7437), - [anon_sym_DASH_GT] = ACTIONS(7437), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7437), - [anon_sym_override] = ACTIONS(7437), - [anon_sym_requires] = ACTIONS(7437), - }, - [STATE(2754)] = { - [sym_attribute_specifier] = STATE(3224), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7455), - [anon_sym_COMMA] = ACTIONS(7455), - [anon_sym_LPAREN2] = ACTIONS(7455), - [anon_sym_DASH] = ACTIONS(7453), - [anon_sym_PLUS] = ACTIONS(7453), - [anon_sym_STAR] = ACTIONS(7453), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7453), - [anon_sym_PIPE_PIPE] = ACTIONS(7455), - [anon_sym_AMP_AMP] = ACTIONS(7455), - [anon_sym_PIPE] = ACTIONS(7453), - [anon_sym_CARET] = ACTIONS(7453), - [anon_sym_AMP] = ACTIONS(7453), - [anon_sym_EQ_EQ] = ACTIONS(7455), - [anon_sym_BANG_EQ] = ACTIONS(7455), - [anon_sym_GT] = ACTIONS(7453), - [anon_sym_GT_EQ] = ACTIONS(7455), - [anon_sym_LT_EQ] = ACTIONS(7453), - [anon_sym_LT] = ACTIONS(7453), - [anon_sym_LT_LT] = ACTIONS(7453), - [anon_sym_GT_GT] = ACTIONS(7453), - [anon_sym___extension__] = ACTIONS(7455), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7455), - [anon_sym_LBRACK] = ACTIONS(7455), - [anon_sym_RBRACK] = ACTIONS(7455), - [anon_sym_EQ] = ACTIONS(7453), - [anon_sym_const] = ACTIONS(7453), - [anon_sym_constexpr] = ACTIONS(7455), - [anon_sym_volatile] = ACTIONS(7455), - [anon_sym_restrict] = ACTIONS(7455), - [anon_sym___restrict__] = ACTIONS(7455), - [anon_sym__Atomic] = ACTIONS(7455), - [anon_sym__Noreturn] = ACTIONS(7455), - [anon_sym_noreturn] = ACTIONS(7455), - [anon_sym__Nonnull] = ACTIONS(7455), - [anon_sym_mutable] = ACTIONS(7455), - [anon_sym_constinit] = ACTIONS(7455), - [anon_sym_consteval] = ACTIONS(7455), - [anon_sym_alignas] = ACTIONS(7455), - [anon_sym__Alignas] = ACTIONS(7455), - [anon_sym_QMARK] = ACTIONS(7455), - [anon_sym_STAR_EQ] = ACTIONS(7455), - [anon_sym_SLASH_EQ] = ACTIONS(7455), - [anon_sym_PERCENT_EQ] = ACTIONS(7455), - [anon_sym_PLUS_EQ] = ACTIONS(7455), - [anon_sym_DASH_EQ] = ACTIONS(7455), - [anon_sym_LT_LT_EQ] = ACTIONS(7455), - [anon_sym_GT_GT_EQ] = ACTIONS(7455), - [anon_sym_AMP_EQ] = ACTIONS(7455), - [anon_sym_CARET_EQ] = ACTIONS(7455), - [anon_sym_PIPE_EQ] = ACTIONS(7455), - [anon_sym_and_eq] = ACTIONS(7455), - [anon_sym_or_eq] = ACTIONS(7455), - [anon_sym_xor_eq] = ACTIONS(7455), - [anon_sym_LT_EQ_GT] = ACTIONS(7455), - [anon_sym_or] = ACTIONS(7453), - [anon_sym_and] = ACTIONS(7453), - [anon_sym_bitor] = ACTIONS(7455), - [anon_sym_xor] = ACTIONS(7453), - [anon_sym_bitand] = ACTIONS(7455), - [anon_sym_not_eq] = ACTIONS(7455), - [anon_sym_DASH_DASH] = ACTIONS(7455), - [anon_sym_PLUS_PLUS] = ACTIONS(7455), - [anon_sym_DOT] = ACTIONS(7453), - [anon_sym_DOT_STAR] = ACTIONS(7455), - [anon_sym_DASH_GT] = ACTIONS(7455), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7455), - [anon_sym_override] = ACTIONS(7455), - [anon_sym_requires] = ACTIONS(7455), - }, - [STATE(2755)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_GT_GT] = ACTIONS(7293), - [anon_sym_SEMI] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), - [anon_sym___based] = ACTIONS(7291), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_RBRACE] = ACTIONS(7293), - [anon_sym_signed] = ACTIONS(7291), - [anon_sym_unsigned] = ACTIONS(7291), - [anon_sym_long] = ACTIONS(7291), - [anon_sym_short] = ACTIONS(7291), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [sym_primitive_type] = ACTIONS(7291), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7291), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7291), - [anon_sym_not_eq] = ACTIONS(7291), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_requires] = ACTIONS(7291), - [anon_sym_COLON_RBRACK] = ACTIONS(7293), - }, - [STATE(2756)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(2770), - [sym__declarator] = STATE(8823), - [sym__abstract_declarator] = STATE(9052), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(3822), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5327), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(3822), - [aux_sym_pointer_declarator_repeat1] = STATE(2770), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8651), - [anon_sym_AMP_AMP] = ACTIONS(8653), - [anon_sym_AMP] = ACTIONS(8655), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6861), - [anon_sym___attribute] = ACTIONS(6861), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_GT2] = ACTIONS(6859), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2757)] = { - [sym_identifier] = ACTIONS(8657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8659), - [anon_sym_COMMA] = ACTIONS(8659), - [anon_sym_RPAREN] = ACTIONS(8659), - [aux_sym_preproc_if_token2] = ACTIONS(8659), - [aux_sym_preproc_else_token1] = ACTIONS(8659), - [aux_sym_preproc_elif_token1] = ACTIONS(8657), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8659), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8659), - [anon_sym_LPAREN2] = ACTIONS(8659), - [anon_sym_DASH] = ACTIONS(8657), - [anon_sym_PLUS] = ACTIONS(8657), - [anon_sym_STAR] = ACTIONS(8657), - [anon_sym_SLASH] = ACTIONS(8657), - [anon_sym_PERCENT] = ACTIONS(8657), - [anon_sym_PIPE_PIPE] = ACTIONS(8659), - [anon_sym_AMP_AMP] = ACTIONS(8659), - [anon_sym_PIPE] = ACTIONS(8657), - [anon_sym_CARET] = ACTIONS(8657), - [anon_sym_AMP] = ACTIONS(8657), - [anon_sym_EQ_EQ] = ACTIONS(8659), - [anon_sym_BANG_EQ] = ACTIONS(8659), - [anon_sym_GT] = ACTIONS(8657), - [anon_sym_GT_EQ] = ACTIONS(8659), - [anon_sym_LT_EQ] = ACTIONS(8657), - [anon_sym_LT] = ACTIONS(8657), - [anon_sym_LT_LT] = ACTIONS(8657), - [anon_sym_GT_GT] = ACTIONS(8657), - [anon_sym_SEMI] = ACTIONS(8659), - [anon_sym_COLON] = ACTIONS(8657), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8659), - [anon_sym_RBRACE] = ACTIONS(8659), - [anon_sym_LBRACK] = ACTIONS(8659), - [anon_sym_EQ] = ACTIONS(8657), - [anon_sym_QMARK] = ACTIONS(8659), - [anon_sym_STAR_EQ] = ACTIONS(8659), - [anon_sym_SLASH_EQ] = ACTIONS(8659), - [anon_sym_PERCENT_EQ] = ACTIONS(8659), - [anon_sym_PLUS_EQ] = ACTIONS(8659), - [anon_sym_DASH_EQ] = ACTIONS(8659), - [anon_sym_LT_LT_EQ] = ACTIONS(8659), - [anon_sym_GT_GT_EQ] = ACTIONS(8659), - [anon_sym_AMP_EQ] = ACTIONS(8659), - [anon_sym_CARET_EQ] = ACTIONS(8659), - [anon_sym_PIPE_EQ] = ACTIONS(8659), - [anon_sym_and_eq] = ACTIONS(8657), - [anon_sym_or_eq] = ACTIONS(8657), - [anon_sym_xor_eq] = ACTIONS(8657), - [anon_sym_LT_EQ_GT] = ACTIONS(8659), - [anon_sym_or] = ACTIONS(8657), - [anon_sym_and] = ACTIONS(8657), - [anon_sym_bitor] = ACTIONS(8657), - [anon_sym_xor] = ACTIONS(8657), - [anon_sym_bitand] = ACTIONS(8657), - [anon_sym_not_eq] = ACTIONS(8657), - [anon_sym_DASH_DASH] = ACTIONS(8659), - [anon_sym_PLUS_PLUS] = ACTIONS(8659), - [anon_sym_DOT] = ACTIONS(8657), - [anon_sym_DOT_STAR] = ACTIONS(8659), - [anon_sym_DASH_GT] = ACTIONS(8659), - [anon_sym_L_DQUOTE] = ACTIONS(8659), - [anon_sym_u_DQUOTE] = ACTIONS(8659), - [anon_sym_U_DQUOTE] = ACTIONS(8659), - [anon_sym_u8_DQUOTE] = ACTIONS(8659), - [anon_sym_DQUOTE] = ACTIONS(8659), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8659), - [anon_sym_LR_DQUOTE] = ACTIONS(8659), - [anon_sym_uR_DQUOTE] = ACTIONS(8659), - [anon_sym_UR_DQUOTE] = ACTIONS(8659), - [anon_sym_u8R_DQUOTE] = ACTIONS(8659), - [anon_sym_COLON_RBRACK] = ACTIONS(8659), - [sym_literal_suffix] = ACTIONS(8657), - }, - [STATE(2758)] = { - [sym_identifier] = ACTIONS(4387), - [aux_sym_preproc_def_token1] = ACTIONS(4387), - [aux_sym_preproc_if_token1] = ACTIONS(4387), - [aux_sym_preproc_if_token2] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), - [aux_sym_preproc_else_token1] = ACTIONS(4387), - [aux_sym_preproc_elif_token1] = ACTIONS(4387), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4387), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4387), - [sym_preproc_directive] = ACTIONS(4387), - [anon_sym_LPAREN2] = ACTIONS(4389), - [anon_sym_TILDE] = ACTIONS(4389), - [anon_sym_STAR] = ACTIONS(4389), - [anon_sym_AMP_AMP] = ACTIONS(4389), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_SEMI] = ACTIONS(4389), - [anon_sym___extension__] = ACTIONS(4387), - [anon_sym_typedef] = ACTIONS(4387), - [anon_sym_virtual] = ACTIONS(4387), - [anon_sym_extern] = ACTIONS(4387), - [anon_sym___attribute__] = ACTIONS(4387), - [anon_sym___attribute] = ACTIONS(4387), - [anon_sym_using] = ACTIONS(4387), - [anon_sym_COLON_COLON] = ACTIONS(4389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), - [anon_sym___declspec] = ACTIONS(4387), - [anon_sym___based] = ACTIONS(4387), - [anon_sym_signed] = ACTIONS(4387), - [anon_sym_unsigned] = ACTIONS(4387), - [anon_sym_long] = ACTIONS(4387), - [anon_sym_short] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_static] = ACTIONS(4387), - [anon_sym_register] = ACTIONS(4387), - [anon_sym_inline] = ACTIONS(4387), - [anon_sym___inline] = ACTIONS(4387), - [anon_sym___inline__] = ACTIONS(4387), - [anon_sym___forceinline] = ACTIONS(4387), - [anon_sym_thread_local] = ACTIONS(4387), - [anon_sym___thread] = ACTIONS(4387), - [anon_sym_const] = ACTIONS(4387), - [anon_sym_constexpr] = ACTIONS(4387), - [anon_sym_volatile] = ACTIONS(4387), - [anon_sym_restrict] = ACTIONS(4387), - [anon_sym___restrict__] = ACTIONS(4387), - [anon_sym__Atomic] = ACTIONS(4387), - [anon_sym__Noreturn] = ACTIONS(4387), - [anon_sym_noreturn] = ACTIONS(4387), - [anon_sym__Nonnull] = ACTIONS(4387), - [anon_sym_mutable] = ACTIONS(4387), - [anon_sym_constinit] = ACTIONS(4387), - [anon_sym_consteval] = ACTIONS(4387), - [anon_sym_alignas] = ACTIONS(4387), - [anon_sym__Alignas] = ACTIONS(4387), - [sym_primitive_type] = ACTIONS(4387), - [anon_sym_enum] = ACTIONS(4387), - [anon_sym_class] = ACTIONS(4387), - [anon_sym_struct] = ACTIONS(4387), - [anon_sym_union] = ACTIONS(4387), - [anon_sym_typename] = ACTIONS(4387), + [sym_identifier] = ACTIONS(4092), + [aux_sym_preproc_def_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token2] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), + [aux_sym_preproc_else_token1] = ACTIONS(4092), + [aux_sym_preproc_elif_token1] = ACTIONS(4092), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4092), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4092), + [sym_preproc_directive] = ACTIONS(4092), + [anon_sym_LPAREN2] = ACTIONS(4094), + [anon_sym_TILDE] = ACTIONS(4094), + [anon_sym_STAR] = ACTIONS(4094), + [anon_sym_AMP_AMP] = ACTIONS(4094), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_SEMI] = ACTIONS(4094), + [anon_sym___extension__] = ACTIONS(4092), + [anon_sym_typedef] = ACTIONS(4092), + [anon_sym_virtual] = ACTIONS(4092), + [anon_sym_extern] = ACTIONS(4092), + [anon_sym___attribute__] = ACTIONS(4092), + [anon_sym___attribute] = ACTIONS(4092), + [anon_sym_using] = ACTIONS(4092), + [anon_sym_COLON_COLON] = ACTIONS(4094), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), + [anon_sym___declspec] = ACTIONS(4092), + [anon_sym___based] = ACTIONS(4092), + [anon_sym_signed] = ACTIONS(4092), + [anon_sym_unsigned] = ACTIONS(4092), + [anon_sym_long] = ACTIONS(4092), + [anon_sym_short] = ACTIONS(4092), + [anon_sym_LBRACK] = ACTIONS(4092), + [anon_sym_static] = ACTIONS(4092), + [anon_sym_register] = ACTIONS(4092), + [anon_sym_inline] = ACTIONS(4092), + [anon_sym___inline] = ACTIONS(4092), + [anon_sym___inline__] = ACTIONS(4092), + [anon_sym___forceinline] = ACTIONS(4092), + [anon_sym_thread_local] = ACTIONS(4092), + [anon_sym___thread] = ACTIONS(4092), + [anon_sym_const] = ACTIONS(4092), + [anon_sym_constexpr] = ACTIONS(4092), + [anon_sym_volatile] = ACTIONS(4092), + [anon_sym_restrict] = ACTIONS(4092), + [anon_sym___restrict__] = ACTIONS(4092), + [anon_sym__Atomic] = ACTIONS(4092), + [anon_sym__Noreturn] = ACTIONS(4092), + [anon_sym_noreturn] = ACTIONS(4092), + [anon_sym__Nonnull] = ACTIONS(4092), + [anon_sym_mutable] = ACTIONS(4092), + [anon_sym_constinit] = ACTIONS(4092), + [anon_sym_consteval] = ACTIONS(4092), + [anon_sym_alignas] = ACTIONS(4092), + [anon_sym__Alignas] = ACTIONS(4092), + [sym_primitive_type] = ACTIONS(4092), + [anon_sym_enum] = ACTIONS(4092), + [anon_sym_class] = ACTIONS(4092), + [anon_sym_struct] = ACTIONS(4092), + [anon_sym_union] = ACTIONS(4092), + [anon_sym_typename] = ACTIONS(4092), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4387), - [anon_sym_decltype] = ACTIONS(4387), - [anon_sym_explicit] = ACTIONS(4387), - [anon_sym_private] = ACTIONS(4387), - [anon_sym_template] = ACTIONS(4387), - [anon_sym_operator] = ACTIONS(4387), - [anon_sym_friend] = ACTIONS(4387), - [anon_sym_public] = ACTIONS(4387), - [anon_sym_protected] = ACTIONS(4387), - [anon_sym_static_assert] = ACTIONS(4387), - [anon_sym_LBRACK_COLON] = ACTIONS(4389), + [sym_auto] = ACTIONS(4092), + [anon_sym_decltype] = ACTIONS(4092), + [anon_sym_explicit] = ACTIONS(4092), + [anon_sym_private] = ACTIONS(4092), + [anon_sym_template] = ACTIONS(4092), + [anon_sym_operator] = ACTIONS(4092), + [anon_sym_friend] = ACTIONS(4092), + [anon_sym_public] = ACTIONS(4092), + [anon_sym_protected] = ACTIONS(4092), + [anon_sym_static_assert] = ACTIONS(4092), + [anon_sym_LBRACK_COLON] = ACTIONS(4094), + }, + [STATE(2754)] = { + [sym_identifier] = ACTIONS(6590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [anon_sym_RPAREN] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6592), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6592), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6592), + [anon_sym_GT_GT] = ACTIONS(6592), + [anon_sym_SEMI] = ACTIONS(6592), + [anon_sym___extension__] = ACTIONS(6590), + [anon_sym___attribute__] = ACTIONS(6590), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6592), + [anon_sym___based] = ACTIONS(6590), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_RBRACE] = ACTIONS(6592), + [anon_sym_signed] = ACTIONS(6590), + [anon_sym_unsigned] = ACTIONS(6590), + [anon_sym_long] = ACTIONS(6590), + [anon_sym_short] = ACTIONS(6590), + [anon_sym_LBRACK] = ACTIONS(6592), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6590), + [anon_sym_volatile] = ACTIONS(6590), + [anon_sym_restrict] = ACTIONS(6590), + [anon_sym___restrict__] = ACTIONS(6590), + [anon_sym__Atomic] = ACTIONS(6590), + [anon_sym__Noreturn] = ACTIONS(6590), + [anon_sym_noreturn] = ACTIONS(6590), + [anon_sym__Nonnull] = ACTIONS(6590), + [anon_sym_mutable] = ACTIONS(6590), + [anon_sym_constinit] = ACTIONS(6590), + [anon_sym_consteval] = ACTIONS(6590), + [anon_sym_alignas] = ACTIONS(6590), + [anon_sym__Alignas] = ACTIONS(6590), + [sym_primitive_type] = ACTIONS(6590), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6590), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6590), + [anon_sym_not_eq] = ACTIONS(6590), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6590), + [anon_sym_decltype] = ACTIONS(6590), + [anon_sym_final] = ACTIONS(6590), + [anon_sym_override] = ACTIONS(6590), + [anon_sym_requires] = ACTIONS(6590), + [anon_sym_COLON_RBRACK] = ACTIONS(6592), + }, + [STATE(2755)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(8503), + [anon_sym_unsigned] = ACTIONS(8503), + [anon_sym_long] = ACTIONS(8503), + [anon_sym_short] = ACTIONS(8503), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), + }, + [STATE(2756)] = { + [sym_identifier] = ACTIONS(8677), + [aux_sym_preproc_def_token1] = ACTIONS(8677), + [aux_sym_preproc_if_token1] = ACTIONS(8677), + [aux_sym_preproc_if_token2] = ACTIONS(8677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8677), + [aux_sym_preproc_else_token1] = ACTIONS(8677), + [aux_sym_preproc_elif_token1] = ACTIONS(8677), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8677), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8677), + [sym_preproc_directive] = ACTIONS(8677), + [anon_sym_LPAREN2] = ACTIONS(8679), + [anon_sym_TILDE] = ACTIONS(8679), + [anon_sym_STAR] = ACTIONS(8679), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_AMP] = ACTIONS(8677), + [anon_sym_SEMI] = ACTIONS(8679), + [anon_sym___extension__] = ACTIONS(8677), + [anon_sym_typedef] = ACTIONS(8677), + [anon_sym_virtual] = ACTIONS(8677), + [anon_sym_extern] = ACTIONS(8677), + [anon_sym___attribute__] = ACTIONS(8677), + [anon_sym___attribute] = ACTIONS(8677), + [anon_sym_using] = ACTIONS(8677), + [anon_sym_COLON_COLON] = ACTIONS(8679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8679), + [anon_sym___declspec] = ACTIONS(8677), + [anon_sym___based] = ACTIONS(8677), + [anon_sym_signed] = ACTIONS(8677), + [anon_sym_unsigned] = ACTIONS(8677), + [anon_sym_long] = ACTIONS(8677), + [anon_sym_short] = ACTIONS(8677), + [anon_sym_LBRACK] = ACTIONS(8677), + [anon_sym_static] = ACTIONS(8677), + [anon_sym_register] = ACTIONS(8677), + [anon_sym_inline] = ACTIONS(8677), + [anon_sym___inline] = ACTIONS(8677), + [anon_sym___inline__] = ACTIONS(8677), + [anon_sym___forceinline] = ACTIONS(8677), + [anon_sym_thread_local] = ACTIONS(8677), + [anon_sym___thread] = ACTIONS(8677), + [anon_sym_const] = ACTIONS(8677), + [anon_sym_constexpr] = ACTIONS(8677), + [anon_sym_volatile] = ACTIONS(8677), + [anon_sym_restrict] = ACTIONS(8677), + [anon_sym___restrict__] = ACTIONS(8677), + [anon_sym__Atomic] = ACTIONS(8677), + [anon_sym__Noreturn] = ACTIONS(8677), + [anon_sym_noreturn] = ACTIONS(8677), + [anon_sym__Nonnull] = ACTIONS(8677), + [anon_sym_mutable] = ACTIONS(8677), + [anon_sym_constinit] = ACTIONS(8677), + [anon_sym_consteval] = ACTIONS(8677), + [anon_sym_alignas] = ACTIONS(8677), + [anon_sym__Alignas] = ACTIONS(8677), + [sym_primitive_type] = ACTIONS(8677), + [anon_sym_enum] = ACTIONS(8677), + [anon_sym_class] = ACTIONS(8677), + [anon_sym_struct] = ACTIONS(8677), + [anon_sym_union] = ACTIONS(8677), + [anon_sym_typename] = ACTIONS(8677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8677), + [anon_sym_decltype] = ACTIONS(8677), + [anon_sym_explicit] = ACTIONS(8677), + [anon_sym_private] = ACTIONS(8677), + [anon_sym_template] = ACTIONS(8677), + [anon_sym_operator] = ACTIONS(8677), + [anon_sym_friend] = ACTIONS(8677), + [anon_sym_public] = ACTIONS(8677), + [anon_sym_protected] = ACTIONS(8677), + [anon_sym_static_assert] = ACTIONS(8677), + [anon_sym_LBRACK_COLON] = ACTIONS(8679), + }, + [STATE(2757)] = { + [sym_identifier] = ACTIONS(8681), + [aux_sym_preproc_def_token1] = ACTIONS(8681), + [aux_sym_preproc_if_token1] = ACTIONS(8681), + [aux_sym_preproc_if_token2] = ACTIONS(8681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8681), + [aux_sym_preproc_else_token1] = ACTIONS(8681), + [aux_sym_preproc_elif_token1] = ACTIONS(8681), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8681), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8681), + [sym_preproc_directive] = ACTIONS(8681), + [anon_sym_LPAREN2] = ACTIONS(8683), + [anon_sym_TILDE] = ACTIONS(8683), + [anon_sym_STAR] = ACTIONS(8683), + [anon_sym_AMP_AMP] = ACTIONS(8683), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_SEMI] = ACTIONS(8683), + [anon_sym___extension__] = ACTIONS(8681), + [anon_sym_typedef] = ACTIONS(8681), + [anon_sym_virtual] = ACTIONS(8681), + [anon_sym_extern] = ACTIONS(8681), + [anon_sym___attribute__] = ACTIONS(8681), + [anon_sym___attribute] = ACTIONS(8681), + [anon_sym_using] = ACTIONS(8681), + [anon_sym_COLON_COLON] = ACTIONS(8683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8683), + [anon_sym___declspec] = ACTIONS(8681), + [anon_sym___based] = ACTIONS(8681), + [anon_sym_signed] = ACTIONS(8681), + [anon_sym_unsigned] = ACTIONS(8681), + [anon_sym_long] = ACTIONS(8681), + [anon_sym_short] = ACTIONS(8681), + [anon_sym_LBRACK] = ACTIONS(8681), + [anon_sym_static] = ACTIONS(8681), + [anon_sym_register] = ACTIONS(8681), + [anon_sym_inline] = ACTIONS(8681), + [anon_sym___inline] = ACTIONS(8681), + [anon_sym___inline__] = ACTIONS(8681), + [anon_sym___forceinline] = ACTIONS(8681), + [anon_sym_thread_local] = ACTIONS(8681), + [anon_sym___thread] = ACTIONS(8681), + [anon_sym_const] = ACTIONS(8681), + [anon_sym_constexpr] = ACTIONS(8681), + [anon_sym_volatile] = ACTIONS(8681), + [anon_sym_restrict] = ACTIONS(8681), + [anon_sym___restrict__] = ACTIONS(8681), + [anon_sym__Atomic] = ACTIONS(8681), + [anon_sym__Noreturn] = ACTIONS(8681), + [anon_sym_noreturn] = ACTIONS(8681), + [anon_sym__Nonnull] = ACTIONS(8681), + [anon_sym_mutable] = ACTIONS(8681), + [anon_sym_constinit] = ACTIONS(8681), + [anon_sym_consteval] = ACTIONS(8681), + [anon_sym_alignas] = ACTIONS(8681), + [anon_sym__Alignas] = ACTIONS(8681), + [sym_primitive_type] = ACTIONS(8681), + [anon_sym_enum] = ACTIONS(8681), + [anon_sym_class] = ACTIONS(8681), + [anon_sym_struct] = ACTIONS(8681), + [anon_sym_union] = ACTIONS(8681), + [anon_sym_typename] = ACTIONS(8681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8681), + [anon_sym_decltype] = ACTIONS(8681), + [anon_sym_explicit] = ACTIONS(8681), + [anon_sym_private] = ACTIONS(8681), + [anon_sym_template] = ACTIONS(8681), + [anon_sym_operator] = ACTIONS(8681), + [anon_sym_friend] = ACTIONS(8681), + [anon_sym_public] = ACTIONS(8681), + [anon_sym_protected] = ACTIONS(8681), + [anon_sym_static_assert] = ACTIONS(8681), + [anon_sym_LBRACK_COLON] = ACTIONS(8683), + }, + [STATE(2758)] = { + [sym_identifier] = ACTIONS(8685), + [aux_sym_preproc_def_token1] = ACTIONS(8685), + [aux_sym_preproc_if_token1] = ACTIONS(8685), + [aux_sym_preproc_if_token2] = ACTIONS(8685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8685), + [aux_sym_preproc_else_token1] = ACTIONS(8685), + [aux_sym_preproc_elif_token1] = ACTIONS(8685), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8685), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8685), + [sym_preproc_directive] = ACTIONS(8685), + [anon_sym_LPAREN2] = ACTIONS(8687), + [anon_sym_TILDE] = ACTIONS(8687), + [anon_sym_STAR] = ACTIONS(8687), + [anon_sym_AMP_AMP] = ACTIONS(8687), + [anon_sym_AMP] = ACTIONS(8685), + [anon_sym_SEMI] = ACTIONS(8687), + [anon_sym___extension__] = ACTIONS(8685), + [anon_sym_typedef] = ACTIONS(8685), + [anon_sym_virtual] = ACTIONS(8685), + [anon_sym_extern] = ACTIONS(8685), + [anon_sym___attribute__] = ACTIONS(8685), + [anon_sym___attribute] = ACTIONS(8685), + [anon_sym_using] = ACTIONS(8685), + [anon_sym_COLON_COLON] = ACTIONS(8687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8687), + [anon_sym___declspec] = ACTIONS(8685), + [anon_sym___based] = ACTIONS(8685), + [anon_sym_signed] = ACTIONS(8685), + [anon_sym_unsigned] = ACTIONS(8685), + [anon_sym_long] = ACTIONS(8685), + [anon_sym_short] = ACTIONS(8685), + [anon_sym_LBRACK] = ACTIONS(8685), + [anon_sym_static] = ACTIONS(8685), + [anon_sym_register] = ACTIONS(8685), + [anon_sym_inline] = ACTIONS(8685), + [anon_sym___inline] = ACTIONS(8685), + [anon_sym___inline__] = ACTIONS(8685), + [anon_sym___forceinline] = ACTIONS(8685), + [anon_sym_thread_local] = ACTIONS(8685), + [anon_sym___thread] = ACTIONS(8685), + [anon_sym_const] = ACTIONS(8685), + [anon_sym_constexpr] = ACTIONS(8685), + [anon_sym_volatile] = ACTIONS(8685), + [anon_sym_restrict] = ACTIONS(8685), + [anon_sym___restrict__] = ACTIONS(8685), + [anon_sym__Atomic] = ACTIONS(8685), + [anon_sym__Noreturn] = ACTIONS(8685), + [anon_sym_noreturn] = ACTIONS(8685), + [anon_sym__Nonnull] = ACTIONS(8685), + [anon_sym_mutable] = ACTIONS(8685), + [anon_sym_constinit] = ACTIONS(8685), + [anon_sym_consteval] = ACTIONS(8685), + [anon_sym_alignas] = ACTIONS(8685), + [anon_sym__Alignas] = ACTIONS(8685), + [sym_primitive_type] = ACTIONS(8685), + [anon_sym_enum] = ACTIONS(8685), + [anon_sym_class] = ACTIONS(8685), + [anon_sym_struct] = ACTIONS(8685), + [anon_sym_union] = ACTIONS(8685), + [anon_sym_typename] = ACTIONS(8685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8685), + [anon_sym_decltype] = ACTIONS(8685), + [anon_sym_explicit] = ACTIONS(8685), + [anon_sym_private] = ACTIONS(8685), + [anon_sym_template] = ACTIONS(8685), + [anon_sym_operator] = ACTIONS(8685), + [anon_sym_friend] = ACTIONS(8685), + [anon_sym_public] = ACTIONS(8685), + [anon_sym_protected] = ACTIONS(8685), + [anon_sym_static_assert] = ACTIONS(8685), + [anon_sym_LBRACK_COLON] = ACTIONS(8687), }, [STATE(2759)] = { - [sym_attribute_specifier] = STATE(3119), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), - [anon_sym_COMMA] = ACTIONS(7523), - [anon_sym_LPAREN2] = ACTIONS(7523), - [anon_sym_DASH] = ACTIONS(7521), - [anon_sym_PLUS] = ACTIONS(7521), - [anon_sym_STAR] = ACTIONS(7521), - [anon_sym_SLASH] = ACTIONS(7521), - [anon_sym_PERCENT] = ACTIONS(7521), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_AMP_AMP] = ACTIONS(7523), - [anon_sym_PIPE] = ACTIONS(7521), - [anon_sym_CARET] = ACTIONS(7521), - [anon_sym_AMP] = ACTIONS(7521), - [anon_sym_EQ_EQ] = ACTIONS(7523), - [anon_sym_BANG_EQ] = ACTIONS(7523), - [anon_sym_GT] = ACTIONS(7521), + [sym_identifier] = ACTIONS(8689), + [aux_sym_preproc_def_token1] = ACTIONS(8689), + [aux_sym_preproc_if_token1] = ACTIONS(8689), + [aux_sym_preproc_if_token2] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8689), + [aux_sym_preproc_else_token1] = ACTIONS(8689), + [aux_sym_preproc_elif_token1] = ACTIONS(8689), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8689), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8689), + [sym_preproc_directive] = ACTIONS(8689), + [anon_sym_LPAREN2] = ACTIONS(8691), + [anon_sym_TILDE] = ACTIONS(8691), + [anon_sym_STAR] = ACTIONS(8691), + [anon_sym_AMP_AMP] = ACTIONS(8691), + [anon_sym_AMP] = ACTIONS(8689), + [anon_sym_SEMI] = ACTIONS(8691), + [anon_sym___extension__] = ACTIONS(8689), + [anon_sym_typedef] = ACTIONS(8689), + [anon_sym_virtual] = ACTIONS(8689), + [anon_sym_extern] = ACTIONS(8689), + [anon_sym___attribute__] = ACTIONS(8689), + [anon_sym___attribute] = ACTIONS(8689), + [anon_sym_using] = ACTIONS(8689), + [anon_sym_COLON_COLON] = ACTIONS(8691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8691), + [anon_sym___declspec] = ACTIONS(8689), + [anon_sym___based] = ACTIONS(8689), + [anon_sym_signed] = ACTIONS(8689), + [anon_sym_unsigned] = ACTIONS(8689), + [anon_sym_long] = ACTIONS(8689), + [anon_sym_short] = ACTIONS(8689), + [anon_sym_LBRACK] = ACTIONS(8689), + [anon_sym_static] = ACTIONS(8689), + [anon_sym_register] = ACTIONS(8689), + [anon_sym_inline] = ACTIONS(8689), + [anon_sym___inline] = ACTIONS(8689), + [anon_sym___inline__] = ACTIONS(8689), + [anon_sym___forceinline] = ACTIONS(8689), + [anon_sym_thread_local] = ACTIONS(8689), + [anon_sym___thread] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(8689), + [anon_sym_constexpr] = ACTIONS(8689), + [anon_sym_volatile] = ACTIONS(8689), + [anon_sym_restrict] = ACTIONS(8689), + [anon_sym___restrict__] = ACTIONS(8689), + [anon_sym__Atomic] = ACTIONS(8689), + [anon_sym__Noreturn] = ACTIONS(8689), + [anon_sym_noreturn] = ACTIONS(8689), + [anon_sym__Nonnull] = ACTIONS(8689), + [anon_sym_mutable] = ACTIONS(8689), + [anon_sym_constinit] = ACTIONS(8689), + [anon_sym_consteval] = ACTIONS(8689), + [anon_sym_alignas] = ACTIONS(8689), + [anon_sym__Alignas] = ACTIONS(8689), + [sym_primitive_type] = ACTIONS(8689), + [anon_sym_enum] = ACTIONS(8689), + [anon_sym_class] = ACTIONS(8689), + [anon_sym_struct] = ACTIONS(8689), + [anon_sym_union] = ACTIONS(8689), + [anon_sym_typename] = ACTIONS(8689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8689), + [anon_sym_decltype] = ACTIONS(8689), + [anon_sym_explicit] = ACTIONS(8689), + [anon_sym_private] = ACTIONS(8689), + [anon_sym_template] = ACTIONS(8689), + [anon_sym_operator] = ACTIONS(8689), + [anon_sym_friend] = ACTIONS(8689), + [anon_sym_public] = ACTIONS(8689), + [anon_sym_protected] = ACTIONS(8689), + [anon_sym_static_assert] = ACTIONS(8689), + [anon_sym_LBRACK_COLON] = ACTIONS(8691), + }, + [STATE(2760)] = { + [sym_identifier] = ACTIONS(8689), + [aux_sym_preproc_def_token1] = ACTIONS(8689), + [aux_sym_preproc_if_token1] = ACTIONS(8689), + [aux_sym_preproc_if_token2] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8689), + [aux_sym_preproc_else_token1] = ACTIONS(8689), + [aux_sym_preproc_elif_token1] = ACTIONS(8689), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8689), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8689), + [sym_preproc_directive] = ACTIONS(8689), + [anon_sym_LPAREN2] = ACTIONS(8691), + [anon_sym_TILDE] = ACTIONS(8691), + [anon_sym_STAR] = ACTIONS(8691), + [anon_sym_AMP_AMP] = ACTIONS(8691), + [anon_sym_AMP] = ACTIONS(8689), + [anon_sym_SEMI] = ACTIONS(8691), + [anon_sym___extension__] = ACTIONS(8689), + [anon_sym_typedef] = ACTIONS(8689), + [anon_sym_virtual] = ACTIONS(8689), + [anon_sym_extern] = ACTIONS(8689), + [anon_sym___attribute__] = ACTIONS(8689), + [anon_sym___attribute] = ACTIONS(8689), + [anon_sym_using] = ACTIONS(8689), + [anon_sym_COLON_COLON] = ACTIONS(8691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8691), + [anon_sym___declspec] = ACTIONS(8689), + [anon_sym___based] = ACTIONS(8689), + [anon_sym_signed] = ACTIONS(8689), + [anon_sym_unsigned] = ACTIONS(8689), + [anon_sym_long] = ACTIONS(8689), + [anon_sym_short] = ACTIONS(8689), + [anon_sym_LBRACK] = ACTIONS(8689), + [anon_sym_static] = ACTIONS(8689), + [anon_sym_register] = ACTIONS(8689), + [anon_sym_inline] = ACTIONS(8689), + [anon_sym___inline] = ACTIONS(8689), + [anon_sym___inline__] = ACTIONS(8689), + [anon_sym___forceinline] = ACTIONS(8689), + [anon_sym_thread_local] = ACTIONS(8689), + [anon_sym___thread] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(8689), + [anon_sym_constexpr] = ACTIONS(8689), + [anon_sym_volatile] = ACTIONS(8689), + [anon_sym_restrict] = ACTIONS(8689), + [anon_sym___restrict__] = ACTIONS(8689), + [anon_sym__Atomic] = ACTIONS(8689), + [anon_sym__Noreturn] = ACTIONS(8689), + [anon_sym_noreturn] = ACTIONS(8689), + [anon_sym__Nonnull] = ACTIONS(8689), + [anon_sym_mutable] = ACTIONS(8689), + [anon_sym_constinit] = ACTIONS(8689), + [anon_sym_consteval] = ACTIONS(8689), + [anon_sym_alignas] = ACTIONS(8689), + [anon_sym__Alignas] = ACTIONS(8689), + [sym_primitive_type] = ACTIONS(8689), + [anon_sym_enum] = ACTIONS(8689), + [anon_sym_class] = ACTIONS(8689), + [anon_sym_struct] = ACTIONS(8689), + [anon_sym_union] = ACTIONS(8689), + [anon_sym_typename] = ACTIONS(8689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8689), + [anon_sym_decltype] = ACTIONS(8689), + [anon_sym_explicit] = ACTIONS(8689), + [anon_sym_private] = ACTIONS(8689), + [anon_sym_template] = ACTIONS(8689), + [anon_sym_operator] = ACTIONS(8689), + [anon_sym_friend] = ACTIONS(8689), + [anon_sym_public] = ACTIONS(8689), + [anon_sym_protected] = ACTIONS(8689), + [anon_sym_static_assert] = ACTIONS(8689), + [anon_sym_LBRACK_COLON] = ACTIONS(8691), + }, + [STATE(2761)] = { + [sym_identifier] = ACTIONS(8693), + [aux_sym_preproc_def_token1] = ACTIONS(8693), + [aux_sym_preproc_if_token1] = ACTIONS(8693), + [aux_sym_preproc_if_token2] = ACTIONS(8693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8693), + [aux_sym_preproc_else_token1] = ACTIONS(8693), + [aux_sym_preproc_elif_token1] = ACTIONS(8693), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8693), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8693), + [sym_preproc_directive] = ACTIONS(8693), + [anon_sym_LPAREN2] = ACTIONS(8695), + [anon_sym_TILDE] = ACTIONS(8695), + [anon_sym_STAR] = ACTIONS(8695), + [anon_sym_AMP_AMP] = ACTIONS(8695), + [anon_sym_AMP] = ACTIONS(8693), + [anon_sym_SEMI] = ACTIONS(8695), + [anon_sym___extension__] = ACTIONS(8693), + [anon_sym_typedef] = ACTIONS(8693), + [anon_sym_virtual] = ACTIONS(8693), + [anon_sym_extern] = ACTIONS(8693), + [anon_sym___attribute__] = ACTIONS(8693), + [anon_sym___attribute] = ACTIONS(8693), + [anon_sym_using] = ACTIONS(8693), + [anon_sym_COLON_COLON] = ACTIONS(8695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8695), + [anon_sym___declspec] = ACTIONS(8693), + [anon_sym___based] = ACTIONS(8693), + [anon_sym_signed] = ACTIONS(8693), + [anon_sym_unsigned] = ACTIONS(8693), + [anon_sym_long] = ACTIONS(8693), + [anon_sym_short] = ACTIONS(8693), + [anon_sym_LBRACK] = ACTIONS(8693), + [anon_sym_static] = ACTIONS(8693), + [anon_sym_register] = ACTIONS(8693), + [anon_sym_inline] = ACTIONS(8693), + [anon_sym___inline] = ACTIONS(8693), + [anon_sym___inline__] = ACTIONS(8693), + [anon_sym___forceinline] = ACTIONS(8693), + [anon_sym_thread_local] = ACTIONS(8693), + [anon_sym___thread] = ACTIONS(8693), + [anon_sym_const] = ACTIONS(8693), + [anon_sym_constexpr] = ACTIONS(8693), + [anon_sym_volatile] = ACTIONS(8693), + [anon_sym_restrict] = ACTIONS(8693), + [anon_sym___restrict__] = ACTIONS(8693), + [anon_sym__Atomic] = ACTIONS(8693), + [anon_sym__Noreturn] = ACTIONS(8693), + [anon_sym_noreturn] = ACTIONS(8693), + [anon_sym__Nonnull] = ACTIONS(8693), + [anon_sym_mutable] = ACTIONS(8693), + [anon_sym_constinit] = ACTIONS(8693), + [anon_sym_consteval] = ACTIONS(8693), + [anon_sym_alignas] = ACTIONS(8693), + [anon_sym__Alignas] = ACTIONS(8693), + [sym_primitive_type] = ACTIONS(8693), + [anon_sym_enum] = ACTIONS(8693), + [anon_sym_class] = ACTIONS(8693), + [anon_sym_struct] = ACTIONS(8693), + [anon_sym_union] = ACTIONS(8693), + [anon_sym_typename] = ACTIONS(8693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8693), + [anon_sym_decltype] = ACTIONS(8693), + [anon_sym_explicit] = ACTIONS(8693), + [anon_sym_private] = ACTIONS(8693), + [anon_sym_template] = ACTIONS(8693), + [anon_sym_operator] = ACTIONS(8693), + [anon_sym_friend] = ACTIONS(8693), + [anon_sym_public] = ACTIONS(8693), + [anon_sym_protected] = ACTIONS(8693), + [anon_sym_static_assert] = ACTIONS(8693), + [anon_sym_LBRACK_COLON] = ACTIONS(8695), + }, + [STATE(2762)] = { + [sym_identifier] = ACTIONS(8697), + [aux_sym_preproc_def_token1] = ACTIONS(8697), + [aux_sym_preproc_if_token1] = ACTIONS(8697), + [aux_sym_preproc_if_token2] = ACTIONS(8697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8697), + [aux_sym_preproc_else_token1] = ACTIONS(8697), + [aux_sym_preproc_elif_token1] = ACTIONS(8697), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8697), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8697), + [sym_preproc_directive] = ACTIONS(8697), + [anon_sym_LPAREN2] = ACTIONS(8699), + [anon_sym_TILDE] = ACTIONS(8699), + [anon_sym_STAR] = ACTIONS(8699), + [anon_sym_AMP_AMP] = ACTIONS(8699), + [anon_sym_AMP] = ACTIONS(8697), + [anon_sym_SEMI] = ACTIONS(8699), + [anon_sym___extension__] = ACTIONS(8697), + [anon_sym_typedef] = ACTIONS(8697), + [anon_sym_virtual] = ACTIONS(8697), + [anon_sym_extern] = ACTIONS(8697), + [anon_sym___attribute__] = ACTIONS(8697), + [anon_sym___attribute] = ACTIONS(8697), + [anon_sym_using] = ACTIONS(8697), + [anon_sym_COLON_COLON] = ACTIONS(8699), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8699), + [anon_sym___declspec] = ACTIONS(8697), + [anon_sym___based] = ACTIONS(8697), + [anon_sym_signed] = ACTIONS(8697), + [anon_sym_unsigned] = ACTIONS(8697), + [anon_sym_long] = ACTIONS(8697), + [anon_sym_short] = ACTIONS(8697), + [anon_sym_LBRACK] = ACTIONS(8697), + [anon_sym_static] = ACTIONS(8697), + [anon_sym_register] = ACTIONS(8697), + [anon_sym_inline] = ACTIONS(8697), + [anon_sym___inline] = ACTIONS(8697), + [anon_sym___inline__] = ACTIONS(8697), + [anon_sym___forceinline] = ACTIONS(8697), + [anon_sym_thread_local] = ACTIONS(8697), + [anon_sym___thread] = ACTIONS(8697), + [anon_sym_const] = ACTIONS(8697), + [anon_sym_constexpr] = ACTIONS(8697), + [anon_sym_volatile] = ACTIONS(8697), + [anon_sym_restrict] = ACTIONS(8697), + [anon_sym___restrict__] = ACTIONS(8697), + [anon_sym__Atomic] = ACTIONS(8697), + [anon_sym__Noreturn] = ACTIONS(8697), + [anon_sym_noreturn] = ACTIONS(8697), + [anon_sym__Nonnull] = ACTIONS(8697), + [anon_sym_mutable] = ACTIONS(8697), + [anon_sym_constinit] = ACTIONS(8697), + [anon_sym_consteval] = ACTIONS(8697), + [anon_sym_alignas] = ACTIONS(8697), + [anon_sym__Alignas] = ACTIONS(8697), + [sym_primitive_type] = ACTIONS(8697), + [anon_sym_enum] = ACTIONS(8697), + [anon_sym_class] = ACTIONS(8697), + [anon_sym_struct] = ACTIONS(8697), + [anon_sym_union] = ACTIONS(8697), + [anon_sym_typename] = ACTIONS(8697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8697), + [anon_sym_decltype] = ACTIONS(8697), + [anon_sym_explicit] = ACTIONS(8697), + [anon_sym_private] = ACTIONS(8697), + [anon_sym_template] = ACTIONS(8697), + [anon_sym_operator] = ACTIONS(8697), + [anon_sym_friend] = ACTIONS(8697), + [anon_sym_public] = ACTIONS(8697), + [anon_sym_protected] = ACTIONS(8697), + [anon_sym_static_assert] = ACTIONS(8697), + [anon_sym_LBRACK_COLON] = ACTIONS(8699), + }, + [STATE(2763)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token2] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_friend] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + }, + [STATE(2764)] = { + [sym_identifier] = ACTIONS(8701), + [aux_sym_preproc_def_token1] = ACTIONS(8701), + [aux_sym_preproc_if_token1] = ACTIONS(8701), + [aux_sym_preproc_if_token2] = ACTIONS(8701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8701), + [aux_sym_preproc_else_token1] = ACTIONS(8701), + [aux_sym_preproc_elif_token1] = ACTIONS(8701), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8701), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8701), + [sym_preproc_directive] = ACTIONS(8701), + [anon_sym_LPAREN2] = ACTIONS(8703), + [anon_sym_TILDE] = ACTIONS(8703), + [anon_sym_STAR] = ACTIONS(8703), + [anon_sym_AMP_AMP] = ACTIONS(8703), + [anon_sym_AMP] = ACTIONS(8701), + [anon_sym_SEMI] = ACTIONS(8703), + [anon_sym___extension__] = ACTIONS(8701), + [anon_sym_typedef] = ACTIONS(8701), + [anon_sym_virtual] = ACTIONS(8701), + [anon_sym_extern] = ACTIONS(8701), + [anon_sym___attribute__] = ACTIONS(8701), + [anon_sym___attribute] = ACTIONS(8701), + [anon_sym_using] = ACTIONS(8701), + [anon_sym_COLON_COLON] = ACTIONS(8703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8703), + [anon_sym___declspec] = ACTIONS(8701), + [anon_sym___based] = ACTIONS(8701), + [anon_sym_signed] = ACTIONS(8701), + [anon_sym_unsigned] = ACTIONS(8701), + [anon_sym_long] = ACTIONS(8701), + [anon_sym_short] = ACTIONS(8701), + [anon_sym_LBRACK] = ACTIONS(8701), + [anon_sym_static] = ACTIONS(8701), + [anon_sym_register] = ACTIONS(8701), + [anon_sym_inline] = ACTIONS(8701), + [anon_sym___inline] = ACTIONS(8701), + [anon_sym___inline__] = ACTIONS(8701), + [anon_sym___forceinline] = ACTIONS(8701), + [anon_sym_thread_local] = ACTIONS(8701), + [anon_sym___thread] = ACTIONS(8701), + [anon_sym_const] = ACTIONS(8701), + [anon_sym_constexpr] = ACTIONS(8701), + [anon_sym_volatile] = ACTIONS(8701), + [anon_sym_restrict] = ACTIONS(8701), + [anon_sym___restrict__] = ACTIONS(8701), + [anon_sym__Atomic] = ACTIONS(8701), + [anon_sym__Noreturn] = ACTIONS(8701), + [anon_sym_noreturn] = ACTIONS(8701), + [anon_sym__Nonnull] = ACTIONS(8701), + [anon_sym_mutable] = ACTIONS(8701), + [anon_sym_constinit] = ACTIONS(8701), + [anon_sym_consteval] = ACTIONS(8701), + [anon_sym_alignas] = ACTIONS(8701), + [anon_sym__Alignas] = ACTIONS(8701), + [sym_primitive_type] = ACTIONS(8701), + [anon_sym_enum] = ACTIONS(8701), + [anon_sym_class] = ACTIONS(8701), + [anon_sym_struct] = ACTIONS(8701), + [anon_sym_union] = ACTIONS(8701), + [anon_sym_typename] = ACTIONS(8701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8701), + [anon_sym_decltype] = ACTIONS(8701), + [anon_sym_explicit] = ACTIONS(8701), + [anon_sym_private] = ACTIONS(8701), + [anon_sym_template] = ACTIONS(8701), + [anon_sym_operator] = ACTIONS(8701), + [anon_sym_friend] = ACTIONS(8701), + [anon_sym_public] = ACTIONS(8701), + [anon_sym_protected] = ACTIONS(8701), + [anon_sym_static_assert] = ACTIONS(8701), + [anon_sym_LBRACK_COLON] = ACTIONS(8703), + }, + [STATE(2765)] = { + [sym_identifier] = ACTIONS(8705), + [aux_sym_preproc_def_token1] = ACTIONS(8705), + [aux_sym_preproc_if_token1] = ACTIONS(8705), + [aux_sym_preproc_if_token2] = ACTIONS(8705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8705), + [aux_sym_preproc_else_token1] = ACTIONS(8705), + [aux_sym_preproc_elif_token1] = ACTIONS(8705), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8705), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8705), + [sym_preproc_directive] = ACTIONS(8705), + [anon_sym_LPAREN2] = ACTIONS(8707), + [anon_sym_TILDE] = ACTIONS(8707), + [anon_sym_STAR] = ACTIONS(8707), + [anon_sym_AMP_AMP] = ACTIONS(8707), + [anon_sym_AMP] = ACTIONS(8705), + [anon_sym_SEMI] = ACTIONS(8707), + [anon_sym___extension__] = ACTIONS(8705), + [anon_sym_typedef] = ACTIONS(8705), + [anon_sym_virtual] = ACTIONS(8705), + [anon_sym_extern] = ACTIONS(8705), + [anon_sym___attribute__] = ACTIONS(8705), + [anon_sym___attribute] = ACTIONS(8705), + [anon_sym_using] = ACTIONS(8705), + [anon_sym_COLON_COLON] = ACTIONS(8707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8707), + [anon_sym___declspec] = ACTIONS(8705), + [anon_sym___based] = ACTIONS(8705), + [anon_sym_signed] = ACTIONS(8705), + [anon_sym_unsigned] = ACTIONS(8705), + [anon_sym_long] = ACTIONS(8705), + [anon_sym_short] = ACTIONS(8705), + [anon_sym_LBRACK] = ACTIONS(8705), + [anon_sym_static] = ACTIONS(8705), + [anon_sym_register] = ACTIONS(8705), + [anon_sym_inline] = ACTIONS(8705), + [anon_sym___inline] = ACTIONS(8705), + [anon_sym___inline__] = ACTIONS(8705), + [anon_sym___forceinline] = ACTIONS(8705), + [anon_sym_thread_local] = ACTIONS(8705), + [anon_sym___thread] = ACTIONS(8705), + [anon_sym_const] = ACTIONS(8705), + [anon_sym_constexpr] = ACTIONS(8705), + [anon_sym_volatile] = ACTIONS(8705), + [anon_sym_restrict] = ACTIONS(8705), + [anon_sym___restrict__] = ACTIONS(8705), + [anon_sym__Atomic] = ACTIONS(8705), + [anon_sym__Noreturn] = ACTIONS(8705), + [anon_sym_noreturn] = ACTIONS(8705), + [anon_sym__Nonnull] = ACTIONS(8705), + [anon_sym_mutable] = ACTIONS(8705), + [anon_sym_constinit] = ACTIONS(8705), + [anon_sym_consteval] = ACTIONS(8705), + [anon_sym_alignas] = ACTIONS(8705), + [anon_sym__Alignas] = ACTIONS(8705), + [sym_primitive_type] = ACTIONS(8705), + [anon_sym_enum] = ACTIONS(8705), + [anon_sym_class] = ACTIONS(8705), + [anon_sym_struct] = ACTIONS(8705), + [anon_sym_union] = ACTIONS(8705), + [anon_sym_typename] = ACTIONS(8705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8705), + [anon_sym_decltype] = ACTIONS(8705), + [anon_sym_explicit] = ACTIONS(8705), + [anon_sym_private] = ACTIONS(8705), + [anon_sym_template] = ACTIONS(8705), + [anon_sym_operator] = ACTIONS(8705), + [anon_sym_friend] = ACTIONS(8705), + [anon_sym_public] = ACTIONS(8705), + [anon_sym_protected] = ACTIONS(8705), + [anon_sym_static_assert] = ACTIONS(8705), + [anon_sym_LBRACK_COLON] = ACTIONS(8707), + }, + [STATE(2766)] = { + [sym_identifier] = ACTIONS(8709), + [aux_sym_preproc_def_token1] = ACTIONS(8709), + [aux_sym_preproc_if_token1] = ACTIONS(8709), + [aux_sym_preproc_if_token2] = ACTIONS(8709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8709), + [aux_sym_preproc_else_token1] = ACTIONS(8709), + [aux_sym_preproc_elif_token1] = ACTIONS(8709), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8709), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8709), + [sym_preproc_directive] = ACTIONS(8709), + [anon_sym_LPAREN2] = ACTIONS(8711), + [anon_sym_TILDE] = ACTIONS(8711), + [anon_sym_STAR] = ACTIONS(8711), + [anon_sym_AMP_AMP] = ACTIONS(8711), + [anon_sym_AMP] = ACTIONS(8709), + [anon_sym_SEMI] = ACTIONS(8711), + [anon_sym___extension__] = ACTIONS(8709), + [anon_sym_typedef] = ACTIONS(8709), + [anon_sym_virtual] = ACTIONS(8709), + [anon_sym_extern] = ACTIONS(8709), + [anon_sym___attribute__] = ACTIONS(8709), + [anon_sym___attribute] = ACTIONS(8709), + [anon_sym_using] = ACTIONS(8709), + [anon_sym_COLON_COLON] = ACTIONS(8711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8711), + [anon_sym___declspec] = ACTIONS(8709), + [anon_sym___based] = ACTIONS(8709), + [anon_sym_signed] = ACTIONS(8709), + [anon_sym_unsigned] = ACTIONS(8709), + [anon_sym_long] = ACTIONS(8709), + [anon_sym_short] = ACTIONS(8709), + [anon_sym_LBRACK] = ACTIONS(8709), + [anon_sym_static] = ACTIONS(8709), + [anon_sym_register] = ACTIONS(8709), + [anon_sym_inline] = ACTIONS(8709), + [anon_sym___inline] = ACTIONS(8709), + [anon_sym___inline__] = ACTIONS(8709), + [anon_sym___forceinline] = ACTIONS(8709), + [anon_sym_thread_local] = ACTIONS(8709), + [anon_sym___thread] = ACTIONS(8709), + [anon_sym_const] = ACTIONS(8709), + [anon_sym_constexpr] = ACTIONS(8709), + [anon_sym_volatile] = ACTIONS(8709), + [anon_sym_restrict] = ACTIONS(8709), + [anon_sym___restrict__] = ACTIONS(8709), + [anon_sym__Atomic] = ACTIONS(8709), + [anon_sym__Noreturn] = ACTIONS(8709), + [anon_sym_noreturn] = ACTIONS(8709), + [anon_sym__Nonnull] = ACTIONS(8709), + [anon_sym_mutable] = ACTIONS(8709), + [anon_sym_constinit] = ACTIONS(8709), + [anon_sym_consteval] = ACTIONS(8709), + [anon_sym_alignas] = ACTIONS(8709), + [anon_sym__Alignas] = ACTIONS(8709), + [sym_primitive_type] = ACTIONS(8709), + [anon_sym_enum] = ACTIONS(8709), + [anon_sym_class] = ACTIONS(8709), + [anon_sym_struct] = ACTIONS(8709), + [anon_sym_union] = ACTIONS(8709), + [anon_sym_typename] = ACTIONS(8709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8709), + [anon_sym_decltype] = ACTIONS(8709), + [anon_sym_explicit] = ACTIONS(8709), + [anon_sym_private] = ACTIONS(8709), + [anon_sym_template] = ACTIONS(8709), + [anon_sym_operator] = ACTIONS(8709), + [anon_sym_friend] = ACTIONS(8709), + [anon_sym_public] = ACTIONS(8709), + [anon_sym_protected] = ACTIONS(8709), + [anon_sym_static_assert] = ACTIONS(8709), + [anon_sym_LBRACK_COLON] = ACTIONS(8711), + }, + [STATE(2767)] = { + [sym_identifier] = ACTIONS(8713), + [aux_sym_preproc_def_token1] = ACTIONS(8713), + [aux_sym_preproc_if_token1] = ACTIONS(8713), + [aux_sym_preproc_if_token2] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8713), + [aux_sym_preproc_else_token1] = ACTIONS(8713), + [aux_sym_preproc_elif_token1] = ACTIONS(8713), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8713), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8713), + [sym_preproc_directive] = ACTIONS(8713), + [anon_sym_LPAREN2] = ACTIONS(8715), + [anon_sym_TILDE] = ACTIONS(8715), + [anon_sym_STAR] = ACTIONS(8715), + [anon_sym_AMP_AMP] = ACTIONS(8715), + [anon_sym_AMP] = ACTIONS(8713), + [anon_sym_SEMI] = ACTIONS(8715), + [anon_sym___extension__] = ACTIONS(8713), + [anon_sym_typedef] = ACTIONS(8713), + [anon_sym_virtual] = ACTIONS(8713), + [anon_sym_extern] = ACTIONS(8713), + [anon_sym___attribute__] = ACTIONS(8713), + [anon_sym___attribute] = ACTIONS(8713), + [anon_sym_using] = ACTIONS(8713), + [anon_sym_COLON_COLON] = ACTIONS(8715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8715), + [anon_sym___declspec] = ACTIONS(8713), + [anon_sym___based] = ACTIONS(8713), + [anon_sym_signed] = ACTIONS(8713), + [anon_sym_unsigned] = ACTIONS(8713), + [anon_sym_long] = ACTIONS(8713), + [anon_sym_short] = ACTIONS(8713), + [anon_sym_LBRACK] = ACTIONS(8713), + [anon_sym_static] = ACTIONS(8713), + [anon_sym_register] = ACTIONS(8713), + [anon_sym_inline] = ACTIONS(8713), + [anon_sym___inline] = ACTIONS(8713), + [anon_sym___inline__] = ACTIONS(8713), + [anon_sym___forceinline] = ACTIONS(8713), + [anon_sym_thread_local] = ACTIONS(8713), + [anon_sym___thread] = ACTIONS(8713), + [anon_sym_const] = ACTIONS(8713), + [anon_sym_constexpr] = ACTIONS(8713), + [anon_sym_volatile] = ACTIONS(8713), + [anon_sym_restrict] = ACTIONS(8713), + [anon_sym___restrict__] = ACTIONS(8713), + [anon_sym__Atomic] = ACTIONS(8713), + [anon_sym__Noreturn] = ACTIONS(8713), + [anon_sym_noreturn] = ACTIONS(8713), + [anon_sym__Nonnull] = ACTIONS(8713), + [anon_sym_mutable] = ACTIONS(8713), + [anon_sym_constinit] = ACTIONS(8713), + [anon_sym_consteval] = ACTIONS(8713), + [anon_sym_alignas] = ACTIONS(8713), + [anon_sym__Alignas] = ACTIONS(8713), + [sym_primitive_type] = ACTIONS(8713), + [anon_sym_enum] = ACTIONS(8713), + [anon_sym_class] = ACTIONS(8713), + [anon_sym_struct] = ACTIONS(8713), + [anon_sym_union] = ACTIONS(8713), + [anon_sym_typename] = ACTIONS(8713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8713), + [anon_sym_decltype] = ACTIONS(8713), + [anon_sym_explicit] = ACTIONS(8713), + [anon_sym_private] = ACTIONS(8713), + [anon_sym_template] = ACTIONS(8713), + [anon_sym_operator] = ACTIONS(8713), + [anon_sym_friend] = ACTIONS(8713), + [anon_sym_public] = ACTIONS(8713), + [anon_sym_protected] = ACTIONS(8713), + [anon_sym_static_assert] = ACTIONS(8713), + [anon_sym_LBRACK_COLON] = ACTIONS(8715), + }, + [STATE(2768)] = { + [sym_identifier] = ACTIONS(8713), + [aux_sym_preproc_def_token1] = ACTIONS(8713), + [aux_sym_preproc_if_token1] = ACTIONS(8713), + [aux_sym_preproc_if_token2] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8713), + [aux_sym_preproc_else_token1] = ACTIONS(8713), + [aux_sym_preproc_elif_token1] = ACTIONS(8713), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8713), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8713), + [sym_preproc_directive] = ACTIONS(8713), + [anon_sym_LPAREN2] = ACTIONS(8715), + [anon_sym_TILDE] = ACTIONS(8715), + [anon_sym_STAR] = ACTIONS(8715), + [anon_sym_AMP_AMP] = ACTIONS(8715), + [anon_sym_AMP] = ACTIONS(8713), + [anon_sym_SEMI] = ACTIONS(8715), + [anon_sym___extension__] = ACTIONS(8713), + [anon_sym_typedef] = ACTIONS(8713), + [anon_sym_virtual] = ACTIONS(8713), + [anon_sym_extern] = ACTIONS(8713), + [anon_sym___attribute__] = ACTIONS(8713), + [anon_sym___attribute] = ACTIONS(8713), + [anon_sym_using] = ACTIONS(8713), + [anon_sym_COLON_COLON] = ACTIONS(8715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8715), + [anon_sym___declspec] = ACTIONS(8713), + [anon_sym___based] = ACTIONS(8713), + [anon_sym_signed] = ACTIONS(8713), + [anon_sym_unsigned] = ACTIONS(8713), + [anon_sym_long] = ACTIONS(8713), + [anon_sym_short] = ACTIONS(8713), + [anon_sym_LBRACK] = ACTIONS(8713), + [anon_sym_static] = ACTIONS(8713), + [anon_sym_register] = ACTIONS(8713), + [anon_sym_inline] = ACTIONS(8713), + [anon_sym___inline] = ACTIONS(8713), + [anon_sym___inline__] = ACTIONS(8713), + [anon_sym___forceinline] = ACTIONS(8713), + [anon_sym_thread_local] = ACTIONS(8713), + [anon_sym___thread] = ACTIONS(8713), + [anon_sym_const] = ACTIONS(8713), + [anon_sym_constexpr] = ACTIONS(8713), + [anon_sym_volatile] = ACTIONS(8713), + [anon_sym_restrict] = ACTIONS(8713), + [anon_sym___restrict__] = ACTIONS(8713), + [anon_sym__Atomic] = ACTIONS(8713), + [anon_sym__Noreturn] = ACTIONS(8713), + [anon_sym_noreturn] = ACTIONS(8713), + [anon_sym__Nonnull] = ACTIONS(8713), + [anon_sym_mutable] = ACTIONS(8713), + [anon_sym_constinit] = ACTIONS(8713), + [anon_sym_consteval] = ACTIONS(8713), + [anon_sym_alignas] = ACTIONS(8713), + [anon_sym__Alignas] = ACTIONS(8713), + [sym_primitive_type] = ACTIONS(8713), + [anon_sym_enum] = ACTIONS(8713), + [anon_sym_class] = ACTIONS(8713), + [anon_sym_struct] = ACTIONS(8713), + [anon_sym_union] = ACTIONS(8713), + [anon_sym_typename] = ACTIONS(8713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8713), + [anon_sym_decltype] = ACTIONS(8713), + [anon_sym_explicit] = ACTIONS(8713), + [anon_sym_private] = ACTIONS(8713), + [anon_sym_template] = ACTIONS(8713), + [anon_sym_operator] = ACTIONS(8713), + [anon_sym_friend] = ACTIONS(8713), + [anon_sym_public] = ACTIONS(8713), + [anon_sym_protected] = ACTIONS(8713), + [anon_sym_static_assert] = ACTIONS(8713), + [anon_sym_LBRACK_COLON] = ACTIONS(8715), + }, + [STATE(2769)] = { + [sym_identifier] = ACTIONS(8717), + [aux_sym_preproc_def_token1] = ACTIONS(8717), + [aux_sym_preproc_if_token1] = ACTIONS(8717), + [aux_sym_preproc_if_token2] = ACTIONS(8717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8717), + [aux_sym_preproc_else_token1] = ACTIONS(8717), + [aux_sym_preproc_elif_token1] = ACTIONS(8717), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8717), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8717), + [sym_preproc_directive] = ACTIONS(8717), + [anon_sym_LPAREN2] = ACTIONS(8719), + [anon_sym_TILDE] = ACTIONS(8719), + [anon_sym_STAR] = ACTIONS(8719), + [anon_sym_AMP_AMP] = ACTIONS(8719), + [anon_sym_AMP] = ACTIONS(8717), + [anon_sym_SEMI] = ACTIONS(8719), + [anon_sym___extension__] = ACTIONS(8717), + [anon_sym_typedef] = ACTIONS(8717), + [anon_sym_virtual] = ACTIONS(8717), + [anon_sym_extern] = ACTIONS(8717), + [anon_sym___attribute__] = ACTIONS(8717), + [anon_sym___attribute] = ACTIONS(8717), + [anon_sym_using] = ACTIONS(8717), + [anon_sym_COLON_COLON] = ACTIONS(8719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8719), + [anon_sym___declspec] = ACTIONS(8717), + [anon_sym___based] = ACTIONS(8717), + [anon_sym_signed] = ACTIONS(8717), + [anon_sym_unsigned] = ACTIONS(8717), + [anon_sym_long] = ACTIONS(8717), + [anon_sym_short] = ACTIONS(8717), + [anon_sym_LBRACK] = ACTIONS(8717), + [anon_sym_static] = ACTIONS(8717), + [anon_sym_register] = ACTIONS(8717), + [anon_sym_inline] = ACTIONS(8717), + [anon_sym___inline] = ACTIONS(8717), + [anon_sym___inline__] = ACTIONS(8717), + [anon_sym___forceinline] = ACTIONS(8717), + [anon_sym_thread_local] = ACTIONS(8717), + [anon_sym___thread] = ACTIONS(8717), + [anon_sym_const] = ACTIONS(8717), + [anon_sym_constexpr] = ACTIONS(8717), + [anon_sym_volatile] = ACTIONS(8717), + [anon_sym_restrict] = ACTIONS(8717), + [anon_sym___restrict__] = ACTIONS(8717), + [anon_sym__Atomic] = ACTIONS(8717), + [anon_sym__Noreturn] = ACTIONS(8717), + [anon_sym_noreturn] = ACTIONS(8717), + [anon_sym__Nonnull] = ACTIONS(8717), + [anon_sym_mutable] = ACTIONS(8717), + [anon_sym_constinit] = ACTIONS(8717), + [anon_sym_consteval] = ACTIONS(8717), + [anon_sym_alignas] = ACTIONS(8717), + [anon_sym__Alignas] = ACTIONS(8717), + [sym_primitive_type] = ACTIONS(8717), + [anon_sym_enum] = ACTIONS(8717), + [anon_sym_class] = ACTIONS(8717), + [anon_sym_struct] = ACTIONS(8717), + [anon_sym_union] = ACTIONS(8717), + [anon_sym_typename] = ACTIONS(8717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8717), + [anon_sym_decltype] = ACTIONS(8717), + [anon_sym_explicit] = ACTIONS(8717), + [anon_sym_private] = ACTIONS(8717), + [anon_sym_template] = ACTIONS(8717), + [anon_sym_operator] = ACTIONS(8717), + [anon_sym_friend] = ACTIONS(8717), + [anon_sym_public] = ACTIONS(8717), + [anon_sym_protected] = ACTIONS(8717), + [anon_sym_static_assert] = ACTIONS(8717), + [anon_sym_LBRACK_COLON] = ACTIONS(8719), + }, + [STATE(2770)] = { + [sym_identifier] = ACTIONS(8721), + [aux_sym_preproc_def_token1] = ACTIONS(8721), + [aux_sym_preproc_if_token1] = ACTIONS(8721), + [aux_sym_preproc_if_token2] = ACTIONS(8721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8721), + [aux_sym_preproc_else_token1] = ACTIONS(8721), + [aux_sym_preproc_elif_token1] = ACTIONS(8721), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8721), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8721), + [sym_preproc_directive] = ACTIONS(8721), + [anon_sym_LPAREN2] = ACTIONS(8723), + [anon_sym_TILDE] = ACTIONS(8723), + [anon_sym_STAR] = ACTIONS(8723), + [anon_sym_AMP_AMP] = ACTIONS(8723), + [anon_sym_AMP] = ACTIONS(8721), + [anon_sym_SEMI] = ACTIONS(8723), + [anon_sym___extension__] = ACTIONS(8721), + [anon_sym_typedef] = ACTIONS(8721), + [anon_sym_virtual] = ACTIONS(8721), + [anon_sym_extern] = ACTIONS(8721), + [anon_sym___attribute__] = ACTIONS(8721), + [anon_sym___attribute] = ACTIONS(8721), + [anon_sym_using] = ACTIONS(8721), + [anon_sym_COLON_COLON] = ACTIONS(8723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8723), + [anon_sym___declspec] = ACTIONS(8721), + [anon_sym___based] = ACTIONS(8721), + [anon_sym_signed] = ACTIONS(8721), + [anon_sym_unsigned] = ACTIONS(8721), + [anon_sym_long] = ACTIONS(8721), + [anon_sym_short] = ACTIONS(8721), + [anon_sym_LBRACK] = ACTIONS(8721), + [anon_sym_static] = ACTIONS(8721), + [anon_sym_register] = ACTIONS(8721), + [anon_sym_inline] = ACTIONS(8721), + [anon_sym___inline] = ACTIONS(8721), + [anon_sym___inline__] = ACTIONS(8721), + [anon_sym___forceinline] = ACTIONS(8721), + [anon_sym_thread_local] = ACTIONS(8721), + [anon_sym___thread] = ACTIONS(8721), + [anon_sym_const] = ACTIONS(8721), + [anon_sym_constexpr] = ACTIONS(8721), + [anon_sym_volatile] = ACTIONS(8721), + [anon_sym_restrict] = ACTIONS(8721), + [anon_sym___restrict__] = ACTIONS(8721), + [anon_sym__Atomic] = ACTIONS(8721), + [anon_sym__Noreturn] = ACTIONS(8721), + [anon_sym_noreturn] = ACTIONS(8721), + [anon_sym__Nonnull] = ACTIONS(8721), + [anon_sym_mutable] = ACTIONS(8721), + [anon_sym_constinit] = ACTIONS(8721), + [anon_sym_consteval] = ACTIONS(8721), + [anon_sym_alignas] = ACTIONS(8721), + [anon_sym__Alignas] = ACTIONS(8721), + [sym_primitive_type] = ACTIONS(8721), + [anon_sym_enum] = ACTIONS(8721), + [anon_sym_class] = ACTIONS(8721), + [anon_sym_struct] = ACTIONS(8721), + [anon_sym_union] = ACTIONS(8721), + [anon_sym_typename] = ACTIONS(8721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8721), + [anon_sym_decltype] = ACTIONS(8721), + [anon_sym_explicit] = ACTIONS(8721), + [anon_sym_private] = ACTIONS(8721), + [anon_sym_template] = ACTIONS(8721), + [anon_sym_operator] = ACTIONS(8721), + [anon_sym_friend] = ACTIONS(8721), + [anon_sym_public] = ACTIONS(8721), + [anon_sym_protected] = ACTIONS(8721), + [anon_sym_static_assert] = ACTIONS(8721), + [anon_sym_LBRACK_COLON] = ACTIONS(8723), + }, + [STATE(2771)] = { + [sym_identifier] = ACTIONS(8725), + [aux_sym_preproc_def_token1] = ACTIONS(8725), + [aux_sym_preproc_if_token1] = ACTIONS(8725), + [aux_sym_preproc_if_token2] = ACTIONS(8725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8725), + [aux_sym_preproc_else_token1] = ACTIONS(8725), + [aux_sym_preproc_elif_token1] = ACTIONS(8725), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8725), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8725), + [sym_preproc_directive] = ACTIONS(8725), + [anon_sym_LPAREN2] = ACTIONS(8727), + [anon_sym_TILDE] = ACTIONS(8727), + [anon_sym_STAR] = ACTIONS(8727), + [anon_sym_AMP_AMP] = ACTIONS(8727), + [anon_sym_AMP] = ACTIONS(8725), + [anon_sym_SEMI] = ACTIONS(8727), + [anon_sym___extension__] = ACTIONS(8725), + [anon_sym_typedef] = ACTIONS(8725), + [anon_sym_virtual] = ACTIONS(8725), + [anon_sym_extern] = ACTIONS(8725), + [anon_sym___attribute__] = ACTIONS(8725), + [anon_sym___attribute] = ACTIONS(8725), + [anon_sym_using] = ACTIONS(8725), + [anon_sym_COLON_COLON] = ACTIONS(8727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8727), + [anon_sym___declspec] = ACTIONS(8725), + [anon_sym___based] = ACTIONS(8725), + [anon_sym_signed] = ACTIONS(8725), + [anon_sym_unsigned] = ACTIONS(8725), + [anon_sym_long] = ACTIONS(8725), + [anon_sym_short] = ACTIONS(8725), + [anon_sym_LBRACK] = ACTIONS(8725), + [anon_sym_static] = ACTIONS(8725), + [anon_sym_register] = ACTIONS(8725), + [anon_sym_inline] = ACTIONS(8725), + [anon_sym___inline] = ACTIONS(8725), + [anon_sym___inline__] = ACTIONS(8725), + [anon_sym___forceinline] = ACTIONS(8725), + [anon_sym_thread_local] = ACTIONS(8725), + [anon_sym___thread] = ACTIONS(8725), + [anon_sym_const] = ACTIONS(8725), + [anon_sym_constexpr] = ACTIONS(8725), + [anon_sym_volatile] = ACTIONS(8725), + [anon_sym_restrict] = ACTIONS(8725), + [anon_sym___restrict__] = ACTIONS(8725), + [anon_sym__Atomic] = ACTIONS(8725), + [anon_sym__Noreturn] = ACTIONS(8725), + [anon_sym_noreturn] = ACTIONS(8725), + [anon_sym__Nonnull] = ACTIONS(8725), + [anon_sym_mutable] = ACTIONS(8725), + [anon_sym_constinit] = ACTIONS(8725), + [anon_sym_consteval] = ACTIONS(8725), + [anon_sym_alignas] = ACTIONS(8725), + [anon_sym__Alignas] = ACTIONS(8725), + [sym_primitive_type] = ACTIONS(8725), + [anon_sym_enum] = ACTIONS(8725), + [anon_sym_class] = ACTIONS(8725), + [anon_sym_struct] = ACTIONS(8725), + [anon_sym_union] = ACTIONS(8725), + [anon_sym_typename] = ACTIONS(8725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8725), + [anon_sym_decltype] = ACTIONS(8725), + [anon_sym_explicit] = ACTIONS(8725), + [anon_sym_private] = ACTIONS(8725), + [anon_sym_template] = ACTIONS(8725), + [anon_sym_operator] = ACTIONS(8725), + [anon_sym_friend] = ACTIONS(8725), + [anon_sym_public] = ACTIONS(8725), + [anon_sym_protected] = ACTIONS(8725), + [anon_sym_static_assert] = ACTIONS(8725), + [anon_sym_LBRACK_COLON] = ACTIONS(8727), + }, + [STATE(2772)] = { + [sym_identifier] = ACTIONS(8729), + [aux_sym_preproc_def_token1] = ACTIONS(8729), + [aux_sym_preproc_if_token1] = ACTIONS(8729), + [aux_sym_preproc_if_token2] = ACTIONS(8729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8729), + [aux_sym_preproc_else_token1] = ACTIONS(8729), + [aux_sym_preproc_elif_token1] = ACTIONS(8729), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8729), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8729), + [sym_preproc_directive] = ACTIONS(8729), + [anon_sym_LPAREN2] = ACTIONS(8731), + [anon_sym_TILDE] = ACTIONS(8731), + [anon_sym_STAR] = ACTIONS(8731), + [anon_sym_AMP_AMP] = ACTIONS(8731), + [anon_sym_AMP] = ACTIONS(8729), + [anon_sym_SEMI] = ACTIONS(8731), + [anon_sym___extension__] = ACTIONS(8729), + [anon_sym_typedef] = ACTIONS(8729), + [anon_sym_virtual] = ACTIONS(8729), + [anon_sym_extern] = ACTIONS(8729), + [anon_sym___attribute__] = ACTIONS(8729), + [anon_sym___attribute] = ACTIONS(8729), + [anon_sym_using] = ACTIONS(8729), + [anon_sym_COLON_COLON] = ACTIONS(8731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8731), + [anon_sym___declspec] = ACTIONS(8729), + [anon_sym___based] = ACTIONS(8729), + [anon_sym_signed] = ACTIONS(8729), + [anon_sym_unsigned] = ACTIONS(8729), + [anon_sym_long] = ACTIONS(8729), + [anon_sym_short] = ACTIONS(8729), + [anon_sym_LBRACK] = ACTIONS(8729), + [anon_sym_static] = ACTIONS(8729), + [anon_sym_register] = ACTIONS(8729), + [anon_sym_inline] = ACTIONS(8729), + [anon_sym___inline] = ACTIONS(8729), + [anon_sym___inline__] = ACTIONS(8729), + [anon_sym___forceinline] = ACTIONS(8729), + [anon_sym_thread_local] = ACTIONS(8729), + [anon_sym___thread] = ACTIONS(8729), + [anon_sym_const] = ACTIONS(8729), + [anon_sym_constexpr] = ACTIONS(8729), + [anon_sym_volatile] = ACTIONS(8729), + [anon_sym_restrict] = ACTIONS(8729), + [anon_sym___restrict__] = ACTIONS(8729), + [anon_sym__Atomic] = ACTIONS(8729), + [anon_sym__Noreturn] = ACTIONS(8729), + [anon_sym_noreturn] = ACTIONS(8729), + [anon_sym__Nonnull] = ACTIONS(8729), + [anon_sym_mutable] = ACTIONS(8729), + [anon_sym_constinit] = ACTIONS(8729), + [anon_sym_consteval] = ACTIONS(8729), + [anon_sym_alignas] = ACTIONS(8729), + [anon_sym__Alignas] = ACTIONS(8729), + [sym_primitive_type] = ACTIONS(8729), + [anon_sym_enum] = ACTIONS(8729), + [anon_sym_class] = ACTIONS(8729), + [anon_sym_struct] = ACTIONS(8729), + [anon_sym_union] = ACTIONS(8729), + [anon_sym_typename] = ACTIONS(8729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8729), + [anon_sym_decltype] = ACTIONS(8729), + [anon_sym_explicit] = ACTIONS(8729), + [anon_sym_private] = ACTIONS(8729), + [anon_sym_template] = ACTIONS(8729), + [anon_sym_operator] = ACTIONS(8729), + [anon_sym_friend] = ACTIONS(8729), + [anon_sym_public] = ACTIONS(8729), + [anon_sym_protected] = ACTIONS(8729), + [anon_sym_static_assert] = ACTIONS(8729), + [anon_sym_LBRACK_COLON] = ACTIONS(8731), + }, + [STATE(2773)] = { + [sym_identifier] = ACTIONS(8733), + [aux_sym_preproc_def_token1] = ACTIONS(8733), + [aux_sym_preproc_if_token1] = ACTIONS(8733), + [aux_sym_preproc_if_token2] = ACTIONS(8733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8733), + [aux_sym_preproc_else_token1] = ACTIONS(8733), + [aux_sym_preproc_elif_token1] = ACTIONS(8733), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8733), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8733), + [sym_preproc_directive] = ACTIONS(8733), + [anon_sym_LPAREN2] = ACTIONS(8735), + [anon_sym_TILDE] = ACTIONS(8735), + [anon_sym_STAR] = ACTIONS(8735), + [anon_sym_AMP_AMP] = ACTIONS(8735), + [anon_sym_AMP] = ACTIONS(8733), + [anon_sym_SEMI] = ACTIONS(8735), + [anon_sym___extension__] = ACTIONS(8733), + [anon_sym_typedef] = ACTIONS(8733), + [anon_sym_virtual] = ACTIONS(8733), + [anon_sym_extern] = ACTIONS(8733), + [anon_sym___attribute__] = ACTIONS(8733), + [anon_sym___attribute] = ACTIONS(8733), + [anon_sym_using] = ACTIONS(8733), + [anon_sym_COLON_COLON] = ACTIONS(8735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8735), + [anon_sym___declspec] = ACTIONS(8733), + [anon_sym___based] = ACTIONS(8733), + [anon_sym_signed] = ACTIONS(8733), + [anon_sym_unsigned] = ACTIONS(8733), + [anon_sym_long] = ACTIONS(8733), + [anon_sym_short] = ACTIONS(8733), + [anon_sym_LBRACK] = ACTIONS(8733), + [anon_sym_static] = ACTIONS(8733), + [anon_sym_register] = ACTIONS(8733), + [anon_sym_inline] = ACTIONS(8733), + [anon_sym___inline] = ACTIONS(8733), + [anon_sym___inline__] = ACTIONS(8733), + [anon_sym___forceinline] = ACTIONS(8733), + [anon_sym_thread_local] = ACTIONS(8733), + [anon_sym___thread] = ACTIONS(8733), + [anon_sym_const] = ACTIONS(8733), + [anon_sym_constexpr] = ACTIONS(8733), + [anon_sym_volatile] = ACTIONS(8733), + [anon_sym_restrict] = ACTIONS(8733), + [anon_sym___restrict__] = ACTIONS(8733), + [anon_sym__Atomic] = ACTIONS(8733), + [anon_sym__Noreturn] = ACTIONS(8733), + [anon_sym_noreturn] = ACTIONS(8733), + [anon_sym__Nonnull] = ACTIONS(8733), + [anon_sym_mutable] = ACTIONS(8733), + [anon_sym_constinit] = ACTIONS(8733), + [anon_sym_consteval] = ACTIONS(8733), + [anon_sym_alignas] = ACTIONS(8733), + [anon_sym__Alignas] = ACTIONS(8733), + [sym_primitive_type] = ACTIONS(8733), + [anon_sym_enum] = ACTIONS(8733), + [anon_sym_class] = ACTIONS(8733), + [anon_sym_struct] = ACTIONS(8733), + [anon_sym_union] = ACTIONS(8733), + [anon_sym_typename] = ACTIONS(8733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8733), + [anon_sym_decltype] = ACTIONS(8733), + [anon_sym_explicit] = ACTIONS(8733), + [anon_sym_private] = ACTIONS(8733), + [anon_sym_template] = ACTIONS(8733), + [anon_sym_operator] = ACTIONS(8733), + [anon_sym_friend] = ACTIONS(8733), + [anon_sym_public] = ACTIONS(8733), + [anon_sym_protected] = ACTIONS(8733), + [anon_sym_static_assert] = ACTIONS(8733), + [anon_sym_LBRACK_COLON] = ACTIONS(8735), + }, + [STATE(2774)] = { + [sym_identifier] = ACTIONS(8737), + [aux_sym_preproc_def_token1] = ACTIONS(8737), + [aux_sym_preproc_if_token1] = ACTIONS(8737), + [aux_sym_preproc_if_token2] = ACTIONS(8737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8737), + [aux_sym_preproc_else_token1] = ACTIONS(8737), + [aux_sym_preproc_elif_token1] = ACTIONS(8737), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8737), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8737), + [sym_preproc_directive] = ACTIONS(8737), + [anon_sym_LPAREN2] = ACTIONS(8739), + [anon_sym_TILDE] = ACTIONS(8739), + [anon_sym_STAR] = ACTIONS(8739), + [anon_sym_AMP_AMP] = ACTIONS(8739), + [anon_sym_AMP] = ACTIONS(8737), + [anon_sym_SEMI] = ACTIONS(8739), + [anon_sym___extension__] = ACTIONS(8737), + [anon_sym_typedef] = ACTIONS(8737), + [anon_sym_virtual] = ACTIONS(8737), + [anon_sym_extern] = ACTIONS(8737), + [anon_sym___attribute__] = ACTIONS(8737), + [anon_sym___attribute] = ACTIONS(8737), + [anon_sym_using] = ACTIONS(8737), + [anon_sym_COLON_COLON] = ACTIONS(8739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8739), + [anon_sym___declspec] = ACTIONS(8737), + [anon_sym___based] = ACTIONS(8737), + [anon_sym_signed] = ACTIONS(8737), + [anon_sym_unsigned] = ACTIONS(8737), + [anon_sym_long] = ACTIONS(8737), + [anon_sym_short] = ACTIONS(8737), + [anon_sym_LBRACK] = ACTIONS(8737), + [anon_sym_static] = ACTIONS(8737), + [anon_sym_register] = ACTIONS(8737), + [anon_sym_inline] = ACTIONS(8737), + [anon_sym___inline] = ACTIONS(8737), + [anon_sym___inline__] = ACTIONS(8737), + [anon_sym___forceinline] = ACTIONS(8737), + [anon_sym_thread_local] = ACTIONS(8737), + [anon_sym___thread] = ACTIONS(8737), + [anon_sym_const] = ACTIONS(8737), + [anon_sym_constexpr] = ACTIONS(8737), + [anon_sym_volatile] = ACTIONS(8737), + [anon_sym_restrict] = ACTIONS(8737), + [anon_sym___restrict__] = ACTIONS(8737), + [anon_sym__Atomic] = ACTIONS(8737), + [anon_sym__Noreturn] = ACTIONS(8737), + [anon_sym_noreturn] = ACTIONS(8737), + [anon_sym__Nonnull] = ACTIONS(8737), + [anon_sym_mutable] = ACTIONS(8737), + [anon_sym_constinit] = ACTIONS(8737), + [anon_sym_consteval] = ACTIONS(8737), + [anon_sym_alignas] = ACTIONS(8737), + [anon_sym__Alignas] = ACTIONS(8737), + [sym_primitive_type] = ACTIONS(8737), + [anon_sym_enum] = ACTIONS(8737), + [anon_sym_class] = ACTIONS(8737), + [anon_sym_struct] = ACTIONS(8737), + [anon_sym_union] = ACTIONS(8737), + [anon_sym_typename] = ACTIONS(8737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8737), + [anon_sym_decltype] = ACTIONS(8737), + [anon_sym_explicit] = ACTIONS(8737), + [anon_sym_private] = ACTIONS(8737), + [anon_sym_template] = ACTIONS(8737), + [anon_sym_operator] = ACTIONS(8737), + [anon_sym_friend] = ACTIONS(8737), + [anon_sym_public] = ACTIONS(8737), + [anon_sym_protected] = ACTIONS(8737), + [anon_sym_static_assert] = ACTIONS(8737), + [anon_sym_LBRACK_COLON] = ACTIONS(8739), + }, + [STATE(2775)] = { + [sym_identifier] = ACTIONS(8741), + [aux_sym_preproc_def_token1] = ACTIONS(8741), + [aux_sym_preproc_if_token1] = ACTIONS(8741), + [aux_sym_preproc_if_token2] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8741), + [aux_sym_preproc_else_token1] = ACTIONS(8741), + [aux_sym_preproc_elif_token1] = ACTIONS(8741), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8741), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8741), + [sym_preproc_directive] = ACTIONS(8741), + [anon_sym_LPAREN2] = ACTIONS(8743), + [anon_sym_TILDE] = ACTIONS(8743), + [anon_sym_STAR] = ACTIONS(8743), + [anon_sym_AMP_AMP] = ACTIONS(8743), + [anon_sym_AMP] = ACTIONS(8741), + [anon_sym_SEMI] = ACTIONS(8743), + [anon_sym___extension__] = ACTIONS(8741), + [anon_sym_typedef] = ACTIONS(8741), + [anon_sym_virtual] = ACTIONS(8741), + [anon_sym_extern] = ACTIONS(8741), + [anon_sym___attribute__] = ACTIONS(8741), + [anon_sym___attribute] = ACTIONS(8741), + [anon_sym_using] = ACTIONS(8741), + [anon_sym_COLON_COLON] = ACTIONS(8743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8743), + [anon_sym___declspec] = ACTIONS(8741), + [anon_sym___based] = ACTIONS(8741), + [anon_sym_signed] = ACTIONS(8741), + [anon_sym_unsigned] = ACTIONS(8741), + [anon_sym_long] = ACTIONS(8741), + [anon_sym_short] = ACTIONS(8741), + [anon_sym_LBRACK] = ACTIONS(8741), + [anon_sym_static] = ACTIONS(8741), + [anon_sym_register] = ACTIONS(8741), + [anon_sym_inline] = ACTIONS(8741), + [anon_sym___inline] = ACTIONS(8741), + [anon_sym___inline__] = ACTIONS(8741), + [anon_sym___forceinline] = ACTIONS(8741), + [anon_sym_thread_local] = ACTIONS(8741), + [anon_sym___thread] = ACTIONS(8741), + [anon_sym_const] = ACTIONS(8741), + [anon_sym_constexpr] = ACTIONS(8741), + [anon_sym_volatile] = ACTIONS(8741), + [anon_sym_restrict] = ACTIONS(8741), + [anon_sym___restrict__] = ACTIONS(8741), + [anon_sym__Atomic] = ACTIONS(8741), + [anon_sym__Noreturn] = ACTIONS(8741), + [anon_sym_noreturn] = ACTIONS(8741), + [anon_sym__Nonnull] = ACTIONS(8741), + [anon_sym_mutable] = ACTIONS(8741), + [anon_sym_constinit] = ACTIONS(8741), + [anon_sym_consteval] = ACTIONS(8741), + [anon_sym_alignas] = ACTIONS(8741), + [anon_sym__Alignas] = ACTIONS(8741), + [sym_primitive_type] = ACTIONS(8741), + [anon_sym_enum] = ACTIONS(8741), + [anon_sym_class] = ACTIONS(8741), + [anon_sym_struct] = ACTIONS(8741), + [anon_sym_union] = ACTIONS(8741), + [anon_sym_typename] = ACTIONS(8741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8741), + [anon_sym_decltype] = ACTIONS(8741), + [anon_sym_explicit] = ACTIONS(8741), + [anon_sym_private] = ACTIONS(8741), + [anon_sym_template] = ACTIONS(8741), + [anon_sym_operator] = ACTIONS(8741), + [anon_sym_friend] = ACTIONS(8741), + [anon_sym_public] = ACTIONS(8741), + [anon_sym_protected] = ACTIONS(8741), + [anon_sym_static_assert] = ACTIONS(8741), + [anon_sym_LBRACK_COLON] = ACTIONS(8743), + }, + [STATE(2776)] = { + [sym_identifier] = ACTIONS(8745), + [aux_sym_preproc_def_token1] = ACTIONS(8745), + [aux_sym_preproc_if_token1] = ACTIONS(8745), + [aux_sym_preproc_if_token2] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8745), + [aux_sym_preproc_else_token1] = ACTIONS(8745), + [aux_sym_preproc_elif_token1] = ACTIONS(8745), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8745), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8745), + [sym_preproc_directive] = ACTIONS(8745), + [anon_sym_LPAREN2] = ACTIONS(8747), + [anon_sym_TILDE] = ACTIONS(8747), + [anon_sym_STAR] = ACTIONS(8747), + [anon_sym_AMP_AMP] = ACTIONS(8747), + [anon_sym_AMP] = ACTIONS(8745), + [anon_sym_SEMI] = ACTIONS(8747), + [anon_sym___extension__] = ACTIONS(8745), + [anon_sym_typedef] = ACTIONS(8745), + [anon_sym_virtual] = ACTIONS(8745), + [anon_sym_extern] = ACTIONS(8745), + [anon_sym___attribute__] = ACTIONS(8745), + [anon_sym___attribute] = ACTIONS(8745), + [anon_sym_using] = ACTIONS(8745), + [anon_sym_COLON_COLON] = ACTIONS(8747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8747), + [anon_sym___declspec] = ACTIONS(8745), + [anon_sym___based] = ACTIONS(8745), + [anon_sym_signed] = ACTIONS(8745), + [anon_sym_unsigned] = ACTIONS(8745), + [anon_sym_long] = ACTIONS(8745), + [anon_sym_short] = ACTIONS(8745), + [anon_sym_LBRACK] = ACTIONS(8745), + [anon_sym_static] = ACTIONS(8745), + [anon_sym_register] = ACTIONS(8745), + [anon_sym_inline] = ACTIONS(8745), + [anon_sym___inline] = ACTIONS(8745), + [anon_sym___inline__] = ACTIONS(8745), + [anon_sym___forceinline] = ACTIONS(8745), + [anon_sym_thread_local] = ACTIONS(8745), + [anon_sym___thread] = ACTIONS(8745), + [anon_sym_const] = ACTIONS(8745), + [anon_sym_constexpr] = ACTIONS(8745), + [anon_sym_volatile] = ACTIONS(8745), + [anon_sym_restrict] = ACTIONS(8745), + [anon_sym___restrict__] = ACTIONS(8745), + [anon_sym__Atomic] = ACTIONS(8745), + [anon_sym__Noreturn] = ACTIONS(8745), + [anon_sym_noreturn] = ACTIONS(8745), + [anon_sym__Nonnull] = ACTIONS(8745), + [anon_sym_mutable] = ACTIONS(8745), + [anon_sym_constinit] = ACTIONS(8745), + [anon_sym_consteval] = ACTIONS(8745), + [anon_sym_alignas] = ACTIONS(8745), + [anon_sym__Alignas] = ACTIONS(8745), + [sym_primitive_type] = ACTIONS(8745), + [anon_sym_enum] = ACTIONS(8745), + [anon_sym_class] = ACTIONS(8745), + [anon_sym_struct] = ACTIONS(8745), + [anon_sym_union] = ACTIONS(8745), + [anon_sym_typename] = ACTIONS(8745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8745), + [anon_sym_decltype] = ACTIONS(8745), + [anon_sym_explicit] = ACTIONS(8745), + [anon_sym_private] = ACTIONS(8745), + [anon_sym_template] = ACTIONS(8745), + [anon_sym_operator] = ACTIONS(8745), + [anon_sym_friend] = ACTIONS(8745), + [anon_sym_public] = ACTIONS(8745), + [anon_sym_protected] = ACTIONS(8745), + [anon_sym_static_assert] = ACTIONS(8745), + [anon_sym_LBRACK_COLON] = ACTIONS(8747), + }, + [STATE(2777)] = { + [sym_identifier] = ACTIONS(8741), + [aux_sym_preproc_def_token1] = ACTIONS(8741), + [aux_sym_preproc_if_token1] = ACTIONS(8741), + [aux_sym_preproc_if_token2] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8741), + [aux_sym_preproc_else_token1] = ACTIONS(8741), + [aux_sym_preproc_elif_token1] = ACTIONS(8741), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8741), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8741), + [sym_preproc_directive] = ACTIONS(8741), + [anon_sym_LPAREN2] = ACTIONS(8743), + [anon_sym_TILDE] = ACTIONS(8743), + [anon_sym_STAR] = ACTIONS(8743), + [anon_sym_AMP_AMP] = ACTIONS(8743), + [anon_sym_AMP] = ACTIONS(8741), + [anon_sym_SEMI] = ACTIONS(8743), + [anon_sym___extension__] = ACTIONS(8741), + [anon_sym_typedef] = ACTIONS(8741), + [anon_sym_virtual] = ACTIONS(8741), + [anon_sym_extern] = ACTIONS(8741), + [anon_sym___attribute__] = ACTIONS(8741), + [anon_sym___attribute] = ACTIONS(8741), + [anon_sym_using] = ACTIONS(8741), + [anon_sym_COLON_COLON] = ACTIONS(8743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8743), + [anon_sym___declspec] = ACTIONS(8741), + [anon_sym___based] = ACTIONS(8741), + [anon_sym_signed] = ACTIONS(8741), + [anon_sym_unsigned] = ACTIONS(8741), + [anon_sym_long] = ACTIONS(8741), + [anon_sym_short] = ACTIONS(8741), + [anon_sym_LBRACK] = ACTIONS(8741), + [anon_sym_static] = ACTIONS(8741), + [anon_sym_register] = ACTIONS(8741), + [anon_sym_inline] = ACTIONS(8741), + [anon_sym___inline] = ACTIONS(8741), + [anon_sym___inline__] = ACTIONS(8741), + [anon_sym___forceinline] = ACTIONS(8741), + [anon_sym_thread_local] = ACTIONS(8741), + [anon_sym___thread] = ACTIONS(8741), + [anon_sym_const] = ACTIONS(8741), + [anon_sym_constexpr] = ACTIONS(8741), + [anon_sym_volatile] = ACTIONS(8741), + [anon_sym_restrict] = ACTIONS(8741), + [anon_sym___restrict__] = ACTIONS(8741), + [anon_sym__Atomic] = ACTIONS(8741), + [anon_sym__Noreturn] = ACTIONS(8741), + [anon_sym_noreturn] = ACTIONS(8741), + [anon_sym__Nonnull] = ACTIONS(8741), + [anon_sym_mutable] = ACTIONS(8741), + [anon_sym_constinit] = ACTIONS(8741), + [anon_sym_consteval] = ACTIONS(8741), + [anon_sym_alignas] = ACTIONS(8741), + [anon_sym__Alignas] = ACTIONS(8741), + [sym_primitive_type] = ACTIONS(8741), + [anon_sym_enum] = ACTIONS(8741), + [anon_sym_class] = ACTIONS(8741), + [anon_sym_struct] = ACTIONS(8741), + [anon_sym_union] = ACTIONS(8741), + [anon_sym_typename] = ACTIONS(8741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8741), + [anon_sym_decltype] = ACTIONS(8741), + [anon_sym_explicit] = ACTIONS(8741), + [anon_sym_private] = ACTIONS(8741), + [anon_sym_template] = ACTIONS(8741), + [anon_sym_operator] = ACTIONS(8741), + [anon_sym_friend] = ACTIONS(8741), + [anon_sym_public] = ACTIONS(8741), + [anon_sym_protected] = ACTIONS(8741), + [anon_sym_static_assert] = ACTIONS(8741), + [anon_sym_LBRACK_COLON] = ACTIONS(8743), + }, + [STATE(2778)] = { + [sym_identifier] = ACTIONS(8745), + [aux_sym_preproc_def_token1] = ACTIONS(8745), + [aux_sym_preproc_if_token1] = ACTIONS(8745), + [aux_sym_preproc_if_token2] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8745), + [aux_sym_preproc_else_token1] = ACTIONS(8745), + [aux_sym_preproc_elif_token1] = ACTIONS(8745), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8745), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8745), + [sym_preproc_directive] = ACTIONS(8745), + [anon_sym_LPAREN2] = ACTIONS(8747), + [anon_sym_TILDE] = ACTIONS(8747), + [anon_sym_STAR] = ACTIONS(8747), + [anon_sym_AMP_AMP] = ACTIONS(8747), + [anon_sym_AMP] = ACTIONS(8745), + [anon_sym_SEMI] = ACTIONS(8747), + [anon_sym___extension__] = ACTIONS(8745), + [anon_sym_typedef] = ACTIONS(8745), + [anon_sym_virtual] = ACTIONS(8745), + [anon_sym_extern] = ACTIONS(8745), + [anon_sym___attribute__] = ACTIONS(8745), + [anon_sym___attribute] = ACTIONS(8745), + [anon_sym_using] = ACTIONS(8745), + [anon_sym_COLON_COLON] = ACTIONS(8747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8747), + [anon_sym___declspec] = ACTIONS(8745), + [anon_sym___based] = ACTIONS(8745), + [anon_sym_signed] = ACTIONS(8745), + [anon_sym_unsigned] = ACTIONS(8745), + [anon_sym_long] = ACTIONS(8745), + [anon_sym_short] = ACTIONS(8745), + [anon_sym_LBRACK] = ACTIONS(8745), + [anon_sym_static] = ACTIONS(8745), + [anon_sym_register] = ACTIONS(8745), + [anon_sym_inline] = ACTIONS(8745), + [anon_sym___inline] = ACTIONS(8745), + [anon_sym___inline__] = ACTIONS(8745), + [anon_sym___forceinline] = ACTIONS(8745), + [anon_sym_thread_local] = ACTIONS(8745), + [anon_sym___thread] = ACTIONS(8745), + [anon_sym_const] = ACTIONS(8745), + [anon_sym_constexpr] = ACTIONS(8745), + [anon_sym_volatile] = ACTIONS(8745), + [anon_sym_restrict] = ACTIONS(8745), + [anon_sym___restrict__] = ACTIONS(8745), + [anon_sym__Atomic] = ACTIONS(8745), + [anon_sym__Noreturn] = ACTIONS(8745), + [anon_sym_noreturn] = ACTIONS(8745), + [anon_sym__Nonnull] = ACTIONS(8745), + [anon_sym_mutable] = ACTIONS(8745), + [anon_sym_constinit] = ACTIONS(8745), + [anon_sym_consteval] = ACTIONS(8745), + [anon_sym_alignas] = ACTIONS(8745), + [anon_sym__Alignas] = ACTIONS(8745), + [sym_primitive_type] = ACTIONS(8745), + [anon_sym_enum] = ACTIONS(8745), + [anon_sym_class] = ACTIONS(8745), + [anon_sym_struct] = ACTIONS(8745), + [anon_sym_union] = ACTIONS(8745), + [anon_sym_typename] = ACTIONS(8745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8745), + [anon_sym_decltype] = ACTIONS(8745), + [anon_sym_explicit] = ACTIONS(8745), + [anon_sym_private] = ACTIONS(8745), + [anon_sym_template] = ACTIONS(8745), + [anon_sym_operator] = ACTIONS(8745), + [anon_sym_friend] = ACTIONS(8745), + [anon_sym_public] = ACTIONS(8745), + [anon_sym_protected] = ACTIONS(8745), + [anon_sym_static_assert] = ACTIONS(8745), + [anon_sym_LBRACK_COLON] = ACTIONS(8747), + }, + [STATE(2779)] = { + [sym_identifier] = ACTIONS(8749), + [aux_sym_preproc_def_token1] = ACTIONS(8749), + [aux_sym_preproc_if_token1] = ACTIONS(8749), + [aux_sym_preproc_if_token2] = ACTIONS(8749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8749), + [aux_sym_preproc_else_token1] = ACTIONS(8749), + [aux_sym_preproc_elif_token1] = ACTIONS(8749), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8749), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8749), + [sym_preproc_directive] = ACTIONS(8749), + [anon_sym_LPAREN2] = ACTIONS(8751), + [anon_sym_TILDE] = ACTIONS(8751), + [anon_sym_STAR] = ACTIONS(8751), + [anon_sym_AMP_AMP] = ACTIONS(8751), + [anon_sym_AMP] = ACTIONS(8749), + [anon_sym_SEMI] = ACTIONS(8751), + [anon_sym___extension__] = ACTIONS(8749), + [anon_sym_typedef] = ACTIONS(8749), + [anon_sym_virtual] = ACTIONS(8749), + [anon_sym_extern] = ACTIONS(8749), + [anon_sym___attribute__] = ACTIONS(8749), + [anon_sym___attribute] = ACTIONS(8749), + [anon_sym_using] = ACTIONS(8749), + [anon_sym_COLON_COLON] = ACTIONS(8751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8751), + [anon_sym___declspec] = ACTIONS(8749), + [anon_sym___based] = ACTIONS(8749), + [anon_sym_signed] = ACTIONS(8749), + [anon_sym_unsigned] = ACTIONS(8749), + [anon_sym_long] = ACTIONS(8749), + [anon_sym_short] = ACTIONS(8749), + [anon_sym_LBRACK] = ACTIONS(8749), + [anon_sym_static] = ACTIONS(8749), + [anon_sym_register] = ACTIONS(8749), + [anon_sym_inline] = ACTIONS(8749), + [anon_sym___inline] = ACTIONS(8749), + [anon_sym___inline__] = ACTIONS(8749), + [anon_sym___forceinline] = ACTIONS(8749), + [anon_sym_thread_local] = ACTIONS(8749), + [anon_sym___thread] = ACTIONS(8749), + [anon_sym_const] = ACTIONS(8749), + [anon_sym_constexpr] = ACTIONS(8749), + [anon_sym_volatile] = ACTIONS(8749), + [anon_sym_restrict] = ACTIONS(8749), + [anon_sym___restrict__] = ACTIONS(8749), + [anon_sym__Atomic] = ACTIONS(8749), + [anon_sym__Noreturn] = ACTIONS(8749), + [anon_sym_noreturn] = ACTIONS(8749), + [anon_sym__Nonnull] = ACTIONS(8749), + [anon_sym_mutable] = ACTIONS(8749), + [anon_sym_constinit] = ACTIONS(8749), + [anon_sym_consteval] = ACTIONS(8749), + [anon_sym_alignas] = ACTIONS(8749), + [anon_sym__Alignas] = ACTIONS(8749), + [sym_primitive_type] = ACTIONS(8749), + [anon_sym_enum] = ACTIONS(8749), + [anon_sym_class] = ACTIONS(8749), + [anon_sym_struct] = ACTIONS(8749), + [anon_sym_union] = ACTIONS(8749), + [anon_sym_typename] = ACTIONS(8749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8749), + [anon_sym_decltype] = ACTIONS(8749), + [anon_sym_explicit] = ACTIONS(8749), + [anon_sym_private] = ACTIONS(8749), + [anon_sym_template] = ACTIONS(8749), + [anon_sym_operator] = ACTIONS(8749), + [anon_sym_friend] = ACTIONS(8749), + [anon_sym_public] = ACTIONS(8749), + [anon_sym_protected] = ACTIONS(8749), + [anon_sym_static_assert] = ACTIONS(8749), + [anon_sym_LBRACK_COLON] = ACTIONS(8751), + }, + [STATE(2780)] = { + [sym_identifier] = ACTIONS(8753), + [aux_sym_preproc_def_token1] = ACTIONS(8753), + [aux_sym_preproc_if_token1] = ACTIONS(8753), + [aux_sym_preproc_if_token2] = ACTIONS(8753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8753), + [aux_sym_preproc_else_token1] = ACTIONS(8753), + [aux_sym_preproc_elif_token1] = ACTIONS(8753), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8753), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8753), + [sym_preproc_directive] = ACTIONS(8753), + [anon_sym_LPAREN2] = ACTIONS(8755), + [anon_sym_TILDE] = ACTIONS(8755), + [anon_sym_STAR] = ACTIONS(8755), + [anon_sym_AMP_AMP] = ACTIONS(8755), + [anon_sym_AMP] = ACTIONS(8753), + [anon_sym_SEMI] = ACTIONS(8755), + [anon_sym___extension__] = ACTIONS(8753), + [anon_sym_typedef] = ACTIONS(8753), + [anon_sym_virtual] = ACTIONS(8753), + [anon_sym_extern] = ACTIONS(8753), + [anon_sym___attribute__] = ACTIONS(8753), + [anon_sym___attribute] = ACTIONS(8753), + [anon_sym_using] = ACTIONS(8753), + [anon_sym_COLON_COLON] = ACTIONS(8755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8755), + [anon_sym___declspec] = ACTIONS(8753), + [anon_sym___based] = ACTIONS(8753), + [anon_sym_signed] = ACTIONS(8753), + [anon_sym_unsigned] = ACTIONS(8753), + [anon_sym_long] = ACTIONS(8753), + [anon_sym_short] = ACTIONS(8753), + [anon_sym_LBRACK] = ACTIONS(8753), + [anon_sym_static] = ACTIONS(8753), + [anon_sym_register] = ACTIONS(8753), + [anon_sym_inline] = ACTIONS(8753), + [anon_sym___inline] = ACTIONS(8753), + [anon_sym___inline__] = ACTIONS(8753), + [anon_sym___forceinline] = ACTIONS(8753), + [anon_sym_thread_local] = ACTIONS(8753), + [anon_sym___thread] = ACTIONS(8753), + [anon_sym_const] = ACTIONS(8753), + [anon_sym_constexpr] = ACTIONS(8753), + [anon_sym_volatile] = ACTIONS(8753), + [anon_sym_restrict] = ACTIONS(8753), + [anon_sym___restrict__] = ACTIONS(8753), + [anon_sym__Atomic] = ACTIONS(8753), + [anon_sym__Noreturn] = ACTIONS(8753), + [anon_sym_noreturn] = ACTIONS(8753), + [anon_sym__Nonnull] = ACTIONS(8753), + [anon_sym_mutable] = ACTIONS(8753), + [anon_sym_constinit] = ACTIONS(8753), + [anon_sym_consteval] = ACTIONS(8753), + [anon_sym_alignas] = ACTIONS(8753), + [anon_sym__Alignas] = ACTIONS(8753), + [sym_primitive_type] = ACTIONS(8753), + [anon_sym_enum] = ACTIONS(8753), + [anon_sym_class] = ACTIONS(8753), + [anon_sym_struct] = ACTIONS(8753), + [anon_sym_union] = ACTIONS(8753), + [anon_sym_typename] = ACTIONS(8753), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8753), + [anon_sym_decltype] = ACTIONS(8753), + [anon_sym_explicit] = ACTIONS(8753), + [anon_sym_private] = ACTIONS(8753), + [anon_sym_template] = ACTIONS(8753), + [anon_sym_operator] = ACTIONS(8753), + [anon_sym_friend] = ACTIONS(8753), + [anon_sym_public] = ACTIONS(8753), + [anon_sym_protected] = ACTIONS(8753), + [anon_sym_static_assert] = ACTIONS(8753), + [anon_sym_LBRACK_COLON] = ACTIONS(8755), + }, + [STATE(2781)] = { + [sym_identifier] = ACTIONS(8757), + [aux_sym_preproc_def_token1] = ACTIONS(8757), + [aux_sym_preproc_if_token1] = ACTIONS(8757), + [aux_sym_preproc_if_token2] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8757), + [aux_sym_preproc_else_token1] = ACTIONS(8757), + [aux_sym_preproc_elif_token1] = ACTIONS(8757), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8757), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8757), + [sym_preproc_directive] = ACTIONS(8757), + [anon_sym_LPAREN2] = ACTIONS(8759), + [anon_sym_TILDE] = ACTIONS(8759), + [anon_sym_STAR] = ACTIONS(8759), + [anon_sym_AMP_AMP] = ACTIONS(8759), + [anon_sym_AMP] = ACTIONS(8757), + [anon_sym_SEMI] = ACTIONS(8759), + [anon_sym___extension__] = ACTIONS(8757), + [anon_sym_typedef] = ACTIONS(8757), + [anon_sym_virtual] = ACTIONS(8757), + [anon_sym_extern] = ACTIONS(8757), + [anon_sym___attribute__] = ACTIONS(8757), + [anon_sym___attribute] = ACTIONS(8757), + [anon_sym_using] = ACTIONS(8757), + [anon_sym_COLON_COLON] = ACTIONS(8759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8759), + [anon_sym___declspec] = ACTIONS(8757), + [anon_sym___based] = ACTIONS(8757), + [anon_sym_signed] = ACTIONS(8757), + [anon_sym_unsigned] = ACTIONS(8757), + [anon_sym_long] = ACTIONS(8757), + [anon_sym_short] = ACTIONS(8757), + [anon_sym_LBRACK] = ACTIONS(8757), + [anon_sym_static] = ACTIONS(8757), + [anon_sym_register] = ACTIONS(8757), + [anon_sym_inline] = ACTIONS(8757), + [anon_sym___inline] = ACTIONS(8757), + [anon_sym___inline__] = ACTIONS(8757), + [anon_sym___forceinline] = ACTIONS(8757), + [anon_sym_thread_local] = ACTIONS(8757), + [anon_sym___thread] = ACTIONS(8757), + [anon_sym_const] = ACTIONS(8757), + [anon_sym_constexpr] = ACTIONS(8757), + [anon_sym_volatile] = ACTIONS(8757), + [anon_sym_restrict] = ACTIONS(8757), + [anon_sym___restrict__] = ACTIONS(8757), + [anon_sym__Atomic] = ACTIONS(8757), + [anon_sym__Noreturn] = ACTIONS(8757), + [anon_sym_noreturn] = ACTIONS(8757), + [anon_sym__Nonnull] = ACTIONS(8757), + [anon_sym_mutable] = ACTIONS(8757), + [anon_sym_constinit] = ACTIONS(8757), + [anon_sym_consteval] = ACTIONS(8757), + [anon_sym_alignas] = ACTIONS(8757), + [anon_sym__Alignas] = ACTIONS(8757), + [sym_primitive_type] = ACTIONS(8757), + [anon_sym_enum] = ACTIONS(8757), + [anon_sym_class] = ACTIONS(8757), + [anon_sym_struct] = ACTIONS(8757), + [anon_sym_union] = ACTIONS(8757), + [anon_sym_typename] = ACTIONS(8757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8757), + [anon_sym_decltype] = ACTIONS(8757), + [anon_sym_explicit] = ACTIONS(8757), + [anon_sym_private] = ACTIONS(8757), + [anon_sym_template] = ACTIONS(8757), + [anon_sym_operator] = ACTIONS(8757), + [anon_sym_friend] = ACTIONS(8757), + [anon_sym_public] = ACTIONS(8757), + [anon_sym_protected] = ACTIONS(8757), + [anon_sym_static_assert] = ACTIONS(8757), + [anon_sym_LBRACK_COLON] = ACTIONS(8759), + }, + [STATE(2782)] = { + [sym_identifier] = ACTIONS(8757), + [aux_sym_preproc_def_token1] = ACTIONS(8757), + [aux_sym_preproc_if_token1] = ACTIONS(8757), + [aux_sym_preproc_if_token2] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8757), + [aux_sym_preproc_else_token1] = ACTIONS(8757), + [aux_sym_preproc_elif_token1] = ACTIONS(8757), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8757), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8757), + [sym_preproc_directive] = ACTIONS(8757), + [anon_sym_LPAREN2] = ACTIONS(8759), + [anon_sym_TILDE] = ACTIONS(8759), + [anon_sym_STAR] = ACTIONS(8759), + [anon_sym_AMP_AMP] = ACTIONS(8759), + [anon_sym_AMP] = ACTIONS(8757), + [anon_sym_SEMI] = ACTIONS(8759), + [anon_sym___extension__] = ACTIONS(8757), + [anon_sym_typedef] = ACTIONS(8757), + [anon_sym_virtual] = ACTIONS(8757), + [anon_sym_extern] = ACTIONS(8757), + [anon_sym___attribute__] = ACTIONS(8757), + [anon_sym___attribute] = ACTIONS(8757), + [anon_sym_using] = ACTIONS(8757), + [anon_sym_COLON_COLON] = ACTIONS(8759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8759), + [anon_sym___declspec] = ACTIONS(8757), + [anon_sym___based] = ACTIONS(8757), + [anon_sym_signed] = ACTIONS(8757), + [anon_sym_unsigned] = ACTIONS(8757), + [anon_sym_long] = ACTIONS(8757), + [anon_sym_short] = ACTIONS(8757), + [anon_sym_LBRACK] = ACTIONS(8757), + [anon_sym_static] = ACTIONS(8757), + [anon_sym_register] = ACTIONS(8757), + [anon_sym_inline] = ACTIONS(8757), + [anon_sym___inline] = ACTIONS(8757), + [anon_sym___inline__] = ACTIONS(8757), + [anon_sym___forceinline] = ACTIONS(8757), + [anon_sym_thread_local] = ACTIONS(8757), + [anon_sym___thread] = ACTIONS(8757), + [anon_sym_const] = ACTIONS(8757), + [anon_sym_constexpr] = ACTIONS(8757), + [anon_sym_volatile] = ACTIONS(8757), + [anon_sym_restrict] = ACTIONS(8757), + [anon_sym___restrict__] = ACTIONS(8757), + [anon_sym__Atomic] = ACTIONS(8757), + [anon_sym__Noreturn] = ACTIONS(8757), + [anon_sym_noreturn] = ACTIONS(8757), + [anon_sym__Nonnull] = ACTIONS(8757), + [anon_sym_mutable] = ACTIONS(8757), + [anon_sym_constinit] = ACTIONS(8757), + [anon_sym_consteval] = ACTIONS(8757), + [anon_sym_alignas] = ACTIONS(8757), + [anon_sym__Alignas] = ACTIONS(8757), + [sym_primitive_type] = ACTIONS(8757), + [anon_sym_enum] = ACTIONS(8757), + [anon_sym_class] = ACTIONS(8757), + [anon_sym_struct] = ACTIONS(8757), + [anon_sym_union] = ACTIONS(8757), + [anon_sym_typename] = ACTIONS(8757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8757), + [anon_sym_decltype] = ACTIONS(8757), + [anon_sym_explicit] = ACTIONS(8757), + [anon_sym_private] = ACTIONS(8757), + [anon_sym_template] = ACTIONS(8757), + [anon_sym_operator] = ACTIONS(8757), + [anon_sym_friend] = ACTIONS(8757), + [anon_sym_public] = ACTIONS(8757), + [anon_sym_protected] = ACTIONS(8757), + [anon_sym_static_assert] = ACTIONS(8757), + [anon_sym_LBRACK_COLON] = ACTIONS(8759), + }, + [STATE(2783)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token2] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [aux_sym_preproc_else_token1] = ACTIONS(3640), + [aux_sym_preproc_elif_token1] = ACTIONS(3640), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_friend] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), + }, + [STATE(2784)] = { + [sym_identifier] = ACTIONS(3822), + [aux_sym_preproc_def_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token2] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3822), + [aux_sym_preproc_else_token1] = ACTIONS(3822), + [aux_sym_preproc_elif_token1] = ACTIONS(3822), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3822), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3822), + [sym_preproc_directive] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3824), + [anon_sym___extension__] = ACTIONS(3822), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_virtual] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym___attribute__] = ACTIONS(3822), + [anon_sym___attribute] = ACTIONS(3822), + [anon_sym_using] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3824), + [anon_sym___declspec] = ACTIONS(3822), + [anon_sym___based] = ACTIONS(3822), + [anon_sym_signed] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3822), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_inline] = ACTIONS(3822), + [anon_sym___inline] = ACTIONS(3822), + [anon_sym___inline__] = ACTIONS(3822), + [anon_sym___forceinline] = ACTIONS(3822), + [anon_sym_thread_local] = ACTIONS(3822), + [anon_sym___thread] = ACTIONS(3822), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_constexpr] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym___restrict__] = ACTIONS(3822), + [anon_sym__Atomic] = ACTIONS(3822), + [anon_sym__Noreturn] = ACTIONS(3822), + [anon_sym_noreturn] = ACTIONS(3822), + [anon_sym__Nonnull] = ACTIONS(3822), + [anon_sym_mutable] = ACTIONS(3822), + [anon_sym_constinit] = ACTIONS(3822), + [anon_sym_consteval] = ACTIONS(3822), + [anon_sym_alignas] = ACTIONS(3822), + [anon_sym__Alignas] = ACTIONS(3822), + [sym_primitive_type] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_class] = ACTIONS(3822), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_typename] = ACTIONS(3822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3822), + [anon_sym_decltype] = ACTIONS(3822), + [anon_sym_explicit] = ACTIONS(3822), + [anon_sym_private] = ACTIONS(3822), + [anon_sym_template] = ACTIONS(3822), + [anon_sym_operator] = ACTIONS(3822), + [anon_sym_friend] = ACTIONS(3822), + [anon_sym_public] = ACTIONS(3822), + [anon_sym_protected] = ACTIONS(3822), + [anon_sym_static_assert] = ACTIONS(3822), + [anon_sym_LBRACK_COLON] = ACTIONS(3824), + }, + [STATE(2785)] = { + [sym_identifier] = ACTIONS(4281), + [aux_sym_preproc_def_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token2] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4281), + [aux_sym_preproc_else_token1] = ACTIONS(4281), + [aux_sym_preproc_elif_token1] = ACTIONS(4281), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4281), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4281), + [sym_preproc_directive] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym___extension__] = ACTIONS(4281), + [anon_sym_typedef] = ACTIONS(4281), + [anon_sym_virtual] = ACTIONS(4281), + [anon_sym_extern] = ACTIONS(4281), + [anon_sym___attribute__] = ACTIONS(4281), + [anon_sym___attribute] = ACTIONS(4281), + [anon_sym_using] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4283), + [anon_sym___declspec] = ACTIONS(4281), + [anon_sym___based] = ACTIONS(4281), + [anon_sym_signed] = ACTIONS(4281), + [anon_sym_unsigned] = ACTIONS(4281), + [anon_sym_long] = ACTIONS(4281), + [anon_sym_short] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_static] = ACTIONS(4281), + [anon_sym_register] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym___inline] = ACTIONS(4281), + [anon_sym___inline__] = ACTIONS(4281), + [anon_sym___forceinline] = ACTIONS(4281), + [anon_sym_thread_local] = ACTIONS(4281), + [anon_sym___thread] = ACTIONS(4281), + [anon_sym_const] = ACTIONS(4281), + [anon_sym_constexpr] = ACTIONS(4281), + [anon_sym_volatile] = ACTIONS(4281), + [anon_sym_restrict] = ACTIONS(4281), + [anon_sym___restrict__] = ACTIONS(4281), + [anon_sym__Atomic] = ACTIONS(4281), + [anon_sym__Noreturn] = ACTIONS(4281), + [anon_sym_noreturn] = ACTIONS(4281), + [anon_sym__Nonnull] = ACTIONS(4281), + [anon_sym_mutable] = ACTIONS(4281), + [anon_sym_constinit] = ACTIONS(4281), + [anon_sym_consteval] = ACTIONS(4281), + [anon_sym_alignas] = ACTIONS(4281), + [anon_sym__Alignas] = ACTIONS(4281), + [sym_primitive_type] = ACTIONS(4281), + [anon_sym_enum] = ACTIONS(4281), + [anon_sym_class] = ACTIONS(4281), + [anon_sym_struct] = ACTIONS(4281), + [anon_sym_union] = ACTIONS(4281), + [anon_sym_typename] = ACTIONS(4281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4281), + [anon_sym_decltype] = ACTIONS(4281), + [anon_sym_explicit] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_template] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_friend] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_static_assert] = ACTIONS(4281), + [anon_sym_LBRACK_COLON] = ACTIONS(4283), + }, + [STATE(2786)] = { + [sym_attribute_specifier] = STATE(3165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7497), + [anon_sym_COMMA] = ACTIONS(7497), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_DASH] = ACTIONS(7495), + [anon_sym_PLUS] = ACTIONS(7495), + [anon_sym_STAR] = ACTIONS(7495), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7495), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7495), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym_EQ_EQ] = ACTIONS(7497), + [anon_sym_BANG_EQ] = ACTIONS(7497), + [anon_sym_GT] = ACTIONS(7495), + [anon_sym_GT_EQ] = ACTIONS(7495), + [anon_sym_LT_EQ] = ACTIONS(7495), + [anon_sym_LT] = ACTIONS(7495), + [anon_sym_LT_LT] = ACTIONS(7495), + [anon_sym_GT_GT] = ACTIONS(7495), + [anon_sym___extension__] = ACTIONS(7497), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7497), + [anon_sym_EQ] = ACTIONS(7495), + [anon_sym_const] = ACTIONS(7495), + [anon_sym_constexpr] = ACTIONS(7497), + [anon_sym_volatile] = ACTIONS(7497), + [anon_sym_restrict] = ACTIONS(7497), + [anon_sym___restrict__] = ACTIONS(7497), + [anon_sym__Atomic] = ACTIONS(7497), + [anon_sym__Noreturn] = ACTIONS(7497), + [anon_sym_noreturn] = ACTIONS(7497), + [anon_sym__Nonnull] = ACTIONS(7497), + [anon_sym_mutable] = ACTIONS(7497), + [anon_sym_constinit] = ACTIONS(7497), + [anon_sym_consteval] = ACTIONS(7497), + [anon_sym_alignas] = ACTIONS(7497), + [anon_sym__Alignas] = ACTIONS(7497), + [anon_sym_QMARK] = ACTIONS(7497), + [anon_sym_STAR_EQ] = ACTIONS(7497), + [anon_sym_SLASH_EQ] = ACTIONS(7497), + [anon_sym_PERCENT_EQ] = ACTIONS(7497), + [anon_sym_PLUS_EQ] = ACTIONS(7497), + [anon_sym_DASH_EQ] = ACTIONS(7497), + [anon_sym_LT_LT_EQ] = ACTIONS(7497), + [anon_sym_GT_GT_EQ] = ACTIONS(7495), + [anon_sym_AMP_EQ] = ACTIONS(7497), + [anon_sym_CARET_EQ] = ACTIONS(7497), + [anon_sym_PIPE_EQ] = ACTIONS(7497), + [anon_sym_and_eq] = ACTIONS(7497), + [anon_sym_or_eq] = ACTIONS(7497), + [anon_sym_xor_eq] = ACTIONS(7497), + [anon_sym_LT_EQ_GT] = ACTIONS(7497), + [anon_sym_or] = ACTIONS(7495), + [anon_sym_and] = ACTIONS(7495), + [anon_sym_bitor] = ACTIONS(7497), + [anon_sym_xor] = ACTIONS(7495), + [anon_sym_bitand] = ACTIONS(7497), + [anon_sym_not_eq] = ACTIONS(7497), + [anon_sym_DASH_DASH] = ACTIONS(7497), + [anon_sym_PLUS_PLUS] = ACTIONS(7497), + [anon_sym_DOT] = ACTIONS(7495), + [anon_sym_DOT_STAR] = ACTIONS(7497), + [anon_sym_DASH_GT] = ACTIONS(7497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7497), + [anon_sym_override] = ACTIONS(7497), + [anon_sym_GT2] = ACTIONS(7497), + [anon_sym_requires] = ACTIONS(7497), + }, + [STATE(2787)] = { + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym_SEMI] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7329), + [anon_sym___based] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_RBRACE] = ACTIONS(7329), + [anon_sym_signed] = ACTIONS(7327), + [anon_sym_unsigned] = ACTIONS(7327), + [anon_sym_long] = ACTIONS(7327), + [anon_sym_short] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [sym_primitive_type] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), + [anon_sym_COLON_RBRACK] = ACTIONS(7329), + }, + [STATE(2788)] = { + [sym__declaration_modifiers] = STATE(5086), + [sym_attribute_specifier] = STATE(5086), + [sym_attribute_declaration] = STATE(5086), + [sym_ms_declspec_modifier] = STATE(5086), + [sym_storage_class_specifier] = STATE(5086), + [sym_type_qualifier] = STATE(5086), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3997), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8667), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(5032), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(5086), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(6449), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8663), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(6463), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_class] = ACTIONS(2314), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2318), + [anon_sym_typename] = ACTIONS(5671), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), + }, + [STATE(2789)] = { + [sym_attribute_specifier] = STATE(3172), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_STAR] = ACTIONS(7523), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_PERCENT] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_CARET] = ACTIONS(7523), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7523), [anon_sym_GT_EQ] = ACTIONS(7523), - [anon_sym_LT_EQ] = ACTIONS(7521), - [anon_sym_LT] = ACTIONS(7521), - [anon_sym_LT_LT] = ACTIONS(7521), - [anon_sym_GT_GT] = ACTIONS(7521), - [anon_sym___extension__] = ACTIONS(7523), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7523), - [anon_sym_LBRACK] = ACTIONS(7523), - [anon_sym_RBRACK] = ACTIONS(7523), - [anon_sym_EQ] = ACTIONS(7521), - [anon_sym_const] = ACTIONS(7521), - [anon_sym_constexpr] = ACTIONS(7523), - [anon_sym_volatile] = ACTIONS(7523), - [anon_sym_restrict] = ACTIONS(7523), - [anon_sym___restrict__] = ACTIONS(7523), - [anon_sym__Atomic] = ACTIONS(7523), - [anon_sym__Noreturn] = ACTIONS(7523), - [anon_sym_noreturn] = ACTIONS(7523), - [anon_sym__Nonnull] = ACTIONS(7523), - [anon_sym_mutable] = ACTIONS(7523), - [anon_sym_constinit] = ACTIONS(7523), - [anon_sym_consteval] = ACTIONS(7523), - [anon_sym_alignas] = ACTIONS(7523), - [anon_sym__Alignas] = ACTIONS(7523), - [anon_sym_QMARK] = ACTIONS(7523), - [anon_sym_STAR_EQ] = ACTIONS(7523), - [anon_sym_SLASH_EQ] = ACTIONS(7523), - [anon_sym_PERCENT_EQ] = ACTIONS(7523), - [anon_sym_PLUS_EQ] = ACTIONS(7523), - [anon_sym_DASH_EQ] = ACTIONS(7523), - [anon_sym_LT_LT_EQ] = ACTIONS(7523), + [anon_sym_LT_EQ] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_LT_LT] = ACTIONS(7523), + [anon_sym_GT_GT] = ACTIONS(7523), + [anon_sym___extension__] = ACTIONS(7525), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7523), + [anon_sym_const] = ACTIONS(7523), + [anon_sym_constexpr] = ACTIONS(7525), + [anon_sym_volatile] = ACTIONS(7525), + [anon_sym_restrict] = ACTIONS(7525), + [anon_sym___restrict__] = ACTIONS(7525), + [anon_sym__Atomic] = ACTIONS(7525), + [anon_sym__Noreturn] = ACTIONS(7525), + [anon_sym_noreturn] = ACTIONS(7525), + [anon_sym__Nonnull] = ACTIONS(7525), + [anon_sym_mutable] = ACTIONS(7525), + [anon_sym_constinit] = ACTIONS(7525), + [anon_sym_consteval] = ACTIONS(7525), + [anon_sym_alignas] = ACTIONS(7525), + [anon_sym__Alignas] = ACTIONS(7525), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), [anon_sym_GT_GT_EQ] = ACTIONS(7523), - [anon_sym_AMP_EQ] = ACTIONS(7523), - [anon_sym_CARET_EQ] = ACTIONS(7523), - [anon_sym_PIPE_EQ] = ACTIONS(7523), - [anon_sym_and_eq] = ACTIONS(7523), - [anon_sym_or_eq] = ACTIONS(7523), - [anon_sym_xor_eq] = ACTIONS(7523), - [anon_sym_LT_EQ_GT] = ACTIONS(7523), - [anon_sym_or] = ACTIONS(7521), - [anon_sym_and] = ACTIONS(7521), - [anon_sym_bitor] = ACTIONS(7523), - [anon_sym_xor] = ACTIONS(7521), - [anon_sym_bitand] = ACTIONS(7523), - [anon_sym_not_eq] = ACTIONS(7523), - [anon_sym_DASH_DASH] = ACTIONS(7523), - [anon_sym_PLUS_PLUS] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(7521), - [anon_sym_DOT_STAR] = ACTIONS(7523), - [anon_sym_DASH_GT] = ACTIONS(7523), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7525), + [anon_sym_or_eq] = ACTIONS(7525), + [anon_sym_xor_eq] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7523), + [anon_sym_and] = ACTIONS(7523), + [anon_sym_bitor] = ACTIONS(7525), + [anon_sym_xor] = ACTIONS(7523), + [anon_sym_bitand] = ACTIONS(7525), + [anon_sym_not_eq] = ACTIONS(7525), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7523), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7523), - [anon_sym_override] = ACTIONS(7523), - [anon_sym_requires] = ACTIONS(7523), + [anon_sym_final] = ACTIONS(7525), + [anon_sym_override] = ACTIONS(7525), + [anon_sym_GT2] = ACTIONS(7525), + [anon_sym_requires] = ACTIONS(7525), }, - [STATE(2760)] = { - [sym_attribute_specifier] = STATE(3134), + [STATE(2790)] = { + [sym_identifier] = ACTIONS(8761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8763), + [anon_sym_COMMA] = ACTIONS(8763), + [anon_sym_RPAREN] = ACTIONS(8763), + [aux_sym_preproc_if_token2] = ACTIONS(8763), + [aux_sym_preproc_else_token1] = ACTIONS(8763), + [aux_sym_preproc_elif_token1] = ACTIONS(8761), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8763), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8763), + [anon_sym_LPAREN2] = ACTIONS(8763), + [anon_sym_DASH] = ACTIONS(8761), + [anon_sym_PLUS] = ACTIONS(8761), + [anon_sym_STAR] = ACTIONS(8761), + [anon_sym_SLASH] = ACTIONS(8761), + [anon_sym_PERCENT] = ACTIONS(8761), + [anon_sym_PIPE_PIPE] = ACTIONS(8763), + [anon_sym_AMP_AMP] = ACTIONS(8763), + [anon_sym_PIPE] = ACTIONS(8761), + [anon_sym_CARET] = ACTIONS(8761), + [anon_sym_AMP] = ACTIONS(8761), + [anon_sym_EQ_EQ] = ACTIONS(8763), + [anon_sym_BANG_EQ] = ACTIONS(8763), + [anon_sym_GT] = ACTIONS(8761), + [anon_sym_GT_EQ] = ACTIONS(8763), + [anon_sym_LT_EQ] = ACTIONS(8761), + [anon_sym_LT] = ACTIONS(8761), + [anon_sym_LT_LT] = ACTIONS(8761), + [anon_sym_GT_GT] = ACTIONS(8761), + [anon_sym_SEMI] = ACTIONS(8763), + [anon_sym_COLON] = ACTIONS(8761), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8763), + [anon_sym_RBRACE] = ACTIONS(8763), + [anon_sym_LBRACK] = ACTIONS(8763), + [anon_sym_EQ] = ACTIONS(8761), + [anon_sym_QMARK] = ACTIONS(8763), + [anon_sym_STAR_EQ] = ACTIONS(8763), + [anon_sym_SLASH_EQ] = ACTIONS(8763), + [anon_sym_PERCENT_EQ] = ACTIONS(8763), + [anon_sym_PLUS_EQ] = ACTIONS(8763), + [anon_sym_DASH_EQ] = ACTIONS(8763), + [anon_sym_LT_LT_EQ] = ACTIONS(8763), + [anon_sym_GT_GT_EQ] = ACTIONS(8763), + [anon_sym_AMP_EQ] = ACTIONS(8763), + [anon_sym_CARET_EQ] = ACTIONS(8763), + [anon_sym_PIPE_EQ] = ACTIONS(8763), + [anon_sym_and_eq] = ACTIONS(8761), + [anon_sym_or_eq] = ACTIONS(8761), + [anon_sym_xor_eq] = ACTIONS(8761), + [anon_sym_LT_EQ_GT] = ACTIONS(8763), + [anon_sym_or] = ACTIONS(8761), + [anon_sym_and] = ACTIONS(8761), + [anon_sym_bitor] = ACTIONS(8761), + [anon_sym_xor] = ACTIONS(8761), + [anon_sym_bitand] = ACTIONS(8761), + [anon_sym_not_eq] = ACTIONS(8761), + [anon_sym_DASH_DASH] = ACTIONS(8763), + [anon_sym_PLUS_PLUS] = ACTIONS(8763), + [anon_sym_DOT] = ACTIONS(8761), + [anon_sym_DOT_STAR] = ACTIONS(8763), + [anon_sym_DASH_GT] = ACTIONS(8763), + [anon_sym_L_DQUOTE] = ACTIONS(8763), + [anon_sym_u_DQUOTE] = ACTIONS(8763), + [anon_sym_U_DQUOTE] = ACTIONS(8763), + [anon_sym_u8_DQUOTE] = ACTIONS(8763), + [anon_sym_DQUOTE] = ACTIONS(8763), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8763), + [anon_sym_LR_DQUOTE] = ACTIONS(8763), + [anon_sym_uR_DQUOTE] = ACTIONS(8763), + [anon_sym_UR_DQUOTE] = ACTIONS(8763), + [anon_sym_u8R_DQUOTE] = ACTIONS(8763), + [anon_sym_COLON_RBRACK] = ACTIONS(8763), + [sym_literal_suffix] = ACTIONS(8761), + }, + [STATE(2791)] = { + [sym_template_argument_list] = STATE(2853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6561), + [anon_sym_COMMA] = ACTIONS(6561), + [anon_sym_RPAREN] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6568), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_PIPE_PIPE] = ACTIONS(6561), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6568), + [anon_sym_CARET] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6561), + [anon_sym_BANG_EQ] = ACTIONS(6561), + [anon_sym_GT] = ACTIONS(6568), + [anon_sym_GT_EQ] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(8765), + [anon_sym_LT_LT] = ACTIONS(6568), + [anon_sym_GT_GT] = ACTIONS(6568), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6561), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6570), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6561), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6561), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6561), + [anon_sym_or_eq] = ACTIONS(6561), + [anon_sym_xor_eq] = ACTIONS(6561), + [anon_sym_LT_EQ_GT] = ACTIONS(6561), + [anon_sym_or] = ACTIONS(6568), + [anon_sym_and] = ACTIONS(6568), + [anon_sym_bitor] = ACTIONS(6561), + [anon_sym_xor] = ACTIONS(6568), + [anon_sym_bitand] = ACTIONS(6561), + [anon_sym_not_eq] = ACTIONS(6561), + [anon_sym_DASH_DASH] = ACTIONS(6561), + [anon_sym_PLUS_PLUS] = ACTIONS(6561), + [anon_sym_DOT] = ACTIONS(6568), + [anon_sym_DOT_STAR] = ACTIONS(6561), + [anon_sym_DASH_GT] = ACTIONS(6568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_DASH_GT_STAR] = ACTIONS(6561), + }, + [STATE(2792)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7327), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7327), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7327), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7327), + [anon_sym_GT_GT] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7329), + [anon_sym___attribute__] = ACTIONS(7329), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7329), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_EQ] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7329), + [anon_sym_volatile] = ACTIONS(7329), + [anon_sym_restrict] = ACTIONS(7329), + [anon_sym___restrict__] = ACTIONS(7329), + [anon_sym__Atomic] = ACTIONS(7329), + [anon_sym__Noreturn] = ACTIONS(7329), + [anon_sym_noreturn] = ACTIONS(7329), + [anon_sym__Nonnull] = ACTIONS(7329), + [anon_sym_mutable] = ACTIONS(7329), + [anon_sym_constinit] = ACTIONS(7329), + [anon_sym_consteval] = ACTIONS(7329), + [anon_sym_alignas] = ACTIONS(7329), + [anon_sym__Alignas] = ACTIONS(7329), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_STAR_EQ] = ACTIONS(7329), + [anon_sym_SLASH_EQ] = ACTIONS(7329), + [anon_sym_PERCENT_EQ] = ACTIONS(7329), + [anon_sym_PLUS_EQ] = ACTIONS(7329), + [anon_sym_DASH_EQ] = ACTIONS(7329), + [anon_sym_LT_LT_EQ] = ACTIONS(7329), + [anon_sym_GT_GT_EQ] = ACTIONS(7329), + [anon_sym_AMP_EQ] = ACTIONS(7329), + [anon_sym_CARET_EQ] = ACTIONS(7329), + [anon_sym_PIPE_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7329), + [anon_sym_and] = ACTIONS(7329), + [anon_sym_bitor] = ACTIONS(7329), + [anon_sym_xor] = ACTIONS(7329), + [anon_sym_bitand] = ACTIONS(7329), + [anon_sym_not_eq] = ACTIONS(7329), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7329), + [anon_sym_decltype] = ACTIONS(7329), + [anon_sym_final] = ACTIONS(7329), + [anon_sym_override] = ACTIONS(7329), + [anon_sym_requires] = ACTIONS(7329), + [anon_sym_DASH_GT_STAR] = ACTIONS(7329), + }, + [STATE(2793)] = { + [sym_attribute_specifier] = STATE(3175), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7529), + [anon_sym_COMMA] = ACTIONS(7529), + [anon_sym_LPAREN2] = ACTIONS(7529), + [anon_sym_DASH] = ACTIONS(7527), + [anon_sym_PLUS] = ACTIONS(7527), + [anon_sym_STAR] = ACTIONS(7527), + [anon_sym_SLASH] = ACTIONS(7527), + [anon_sym_PERCENT] = ACTIONS(7527), + [anon_sym_PIPE_PIPE] = ACTIONS(7529), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE] = ACTIONS(7527), + [anon_sym_CARET] = ACTIONS(7527), + [anon_sym_AMP] = ACTIONS(7527), + [anon_sym_EQ_EQ] = ACTIONS(7529), + [anon_sym_BANG_EQ] = ACTIONS(7529), + [anon_sym_GT] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7527), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_LT] = ACTIONS(7527), + [anon_sym_LT_LT] = ACTIONS(7527), + [anon_sym_GT_GT] = ACTIONS(7527), + [anon_sym___extension__] = ACTIONS(7529), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7529), + [anon_sym_LBRACK] = ACTIONS(7529), + [anon_sym_EQ] = ACTIONS(7527), + [anon_sym_const] = ACTIONS(7527), + [anon_sym_constexpr] = ACTIONS(7529), + [anon_sym_volatile] = ACTIONS(7529), + [anon_sym_restrict] = ACTIONS(7529), + [anon_sym___restrict__] = ACTIONS(7529), + [anon_sym__Atomic] = ACTIONS(7529), + [anon_sym__Noreturn] = ACTIONS(7529), + [anon_sym_noreturn] = ACTIONS(7529), + [anon_sym__Nonnull] = ACTIONS(7529), + [anon_sym_mutable] = ACTIONS(7529), + [anon_sym_constinit] = ACTIONS(7529), + [anon_sym_consteval] = ACTIONS(7529), + [anon_sym_alignas] = ACTIONS(7529), + [anon_sym__Alignas] = ACTIONS(7529), + [anon_sym_QMARK] = ACTIONS(7529), + [anon_sym_STAR_EQ] = ACTIONS(7529), + [anon_sym_SLASH_EQ] = ACTIONS(7529), + [anon_sym_PERCENT_EQ] = ACTIONS(7529), + [anon_sym_PLUS_EQ] = ACTIONS(7529), + [anon_sym_DASH_EQ] = ACTIONS(7529), + [anon_sym_LT_LT_EQ] = ACTIONS(7529), + [anon_sym_GT_GT_EQ] = ACTIONS(7527), + [anon_sym_AMP_EQ] = ACTIONS(7529), + [anon_sym_CARET_EQ] = ACTIONS(7529), + [anon_sym_PIPE_EQ] = ACTIONS(7529), + [anon_sym_and_eq] = ACTIONS(7529), + [anon_sym_or_eq] = ACTIONS(7529), + [anon_sym_xor_eq] = ACTIONS(7529), + [anon_sym_LT_EQ_GT] = ACTIONS(7529), + [anon_sym_or] = ACTIONS(7527), + [anon_sym_and] = ACTIONS(7527), + [anon_sym_bitor] = ACTIONS(7529), + [anon_sym_xor] = ACTIONS(7527), + [anon_sym_bitand] = ACTIONS(7529), + [anon_sym_not_eq] = ACTIONS(7529), + [anon_sym_DASH_DASH] = ACTIONS(7529), + [anon_sym_PLUS_PLUS] = ACTIONS(7529), + [anon_sym_DOT] = ACTIONS(7527), + [anon_sym_DOT_STAR] = ACTIONS(7529), + [anon_sym_DASH_GT] = ACTIONS(7529), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7529), + [anon_sym_override] = ACTIONS(7529), + [anon_sym_GT2] = ACTIONS(7529), + [anon_sym_requires] = ACTIONS(7529), + }, + [STATE(2794)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_RPAREN] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7584), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7584), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7584), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7584), + [anon_sym_GT_GT] = ACTIONS(7584), + [anon_sym___extension__] = ACTIONS(7586), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7586), + [anon_sym_volatile] = ACTIONS(7586), + [anon_sym_restrict] = ACTIONS(7586), + [anon_sym___restrict__] = ACTIONS(7586), + [anon_sym__Atomic] = ACTIONS(7586), + [anon_sym__Noreturn] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7586), + [anon_sym__Nonnull] = ACTIONS(7586), + [anon_sym_mutable] = ACTIONS(7586), + [anon_sym_constinit] = ACTIONS(7586), + [anon_sym_consteval] = ACTIONS(7586), + [anon_sym_alignas] = ACTIONS(7586), + [anon_sym__Alignas] = ACTIONS(7586), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_STAR_EQ] = ACTIONS(7586), + [anon_sym_SLASH_EQ] = ACTIONS(7586), + [anon_sym_PERCENT_EQ] = ACTIONS(7586), + [anon_sym_PLUS_EQ] = ACTIONS(7586), + [anon_sym_DASH_EQ] = ACTIONS(7586), + [anon_sym_LT_LT_EQ] = ACTIONS(7586), + [anon_sym_GT_GT_EQ] = ACTIONS(7586), + [anon_sym_AMP_EQ] = ACTIONS(7586), + [anon_sym_CARET_EQ] = ACTIONS(7586), + [anon_sym_PIPE_EQ] = ACTIONS(7586), + [anon_sym_and_eq] = ACTIONS(7586), + [anon_sym_or_eq] = ACTIONS(7586), + [anon_sym_xor_eq] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7584), + [anon_sym_and] = ACTIONS(7584), + [anon_sym_bitor] = ACTIONS(7586), + [anon_sym_xor] = ACTIONS(7584), + [anon_sym_bitand] = ACTIONS(7586), + [anon_sym_not_eq] = ACTIONS(7586), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7584), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7586), + [anon_sym_override] = ACTIONS(7586), + [anon_sym_requires] = ACTIONS(7586), + [anon_sym_DASH_GT_STAR] = ACTIONS(7586), + }, + [STATE(2795)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7644), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_RPAREN] = ACTIONS(7644), + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_PERCENT] = ACTIONS(7642), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_LT_LT] = ACTIONS(7642), + [anon_sym_GT_GT] = ACTIONS(7642), + [anon_sym___extension__] = ACTIONS(7644), + [anon_sym___attribute__] = ACTIONS(7644), + [anon_sym___attribute] = ACTIONS(7642), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_const] = ACTIONS(7642), + [anon_sym_constexpr] = ACTIONS(7644), + [anon_sym_volatile] = ACTIONS(7644), + [anon_sym_restrict] = ACTIONS(7644), + [anon_sym___restrict__] = ACTIONS(7644), + [anon_sym__Atomic] = ACTIONS(7644), + [anon_sym__Noreturn] = ACTIONS(7644), + [anon_sym_noreturn] = ACTIONS(7644), + [anon_sym__Nonnull] = ACTIONS(7644), + [anon_sym_mutable] = ACTIONS(7644), + [anon_sym_constinit] = ACTIONS(7644), + [anon_sym_consteval] = ACTIONS(7644), + [anon_sym_alignas] = ACTIONS(7644), + [anon_sym__Alignas] = ACTIONS(7644), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_STAR_EQ] = ACTIONS(7644), + [anon_sym_SLASH_EQ] = ACTIONS(7644), + [anon_sym_PERCENT_EQ] = ACTIONS(7644), + [anon_sym_PLUS_EQ] = ACTIONS(7644), + [anon_sym_DASH_EQ] = ACTIONS(7644), + [anon_sym_LT_LT_EQ] = ACTIONS(7644), + [anon_sym_GT_GT_EQ] = ACTIONS(7644), + [anon_sym_AMP_EQ] = ACTIONS(7644), + [anon_sym_CARET_EQ] = ACTIONS(7644), + [anon_sym_PIPE_EQ] = ACTIONS(7644), + [anon_sym_and_eq] = ACTIONS(7644), + [anon_sym_or_eq] = ACTIONS(7644), + [anon_sym_xor_eq] = ACTIONS(7644), + [anon_sym_LT_EQ_GT] = ACTIONS(7644), + [anon_sym_or] = ACTIONS(7642), + [anon_sym_and] = ACTIONS(7642), + [anon_sym_bitor] = ACTIONS(7644), + [anon_sym_xor] = ACTIONS(7642), + [anon_sym_bitand] = ACTIONS(7644), + [anon_sym_not_eq] = ACTIONS(7644), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7642), + [anon_sym_DOT_STAR] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7644), + [anon_sym_override] = ACTIONS(7644), + [anon_sym_requires] = ACTIONS(7644), + [anon_sym_DASH_GT_STAR] = ACTIONS(7644), + }, + [STATE(2796)] = { + [sym_identifier] = ACTIONS(3909), + [aux_sym_preproc_def_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token2] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3909), + [aux_sym_preproc_else_token1] = ACTIONS(3909), + [aux_sym_preproc_elif_token1] = ACTIONS(3909), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3909), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3909), + [sym_preproc_directive] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_TILDE] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym___extension__] = ACTIONS(3909), + [anon_sym_typedef] = ACTIONS(3909), + [anon_sym_virtual] = ACTIONS(3909), + [anon_sym_extern] = ACTIONS(3909), + [anon_sym___attribute__] = ACTIONS(3909), + [anon_sym___attribute] = ACTIONS(3909), + [anon_sym_using] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(3911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3911), + [anon_sym___declspec] = ACTIONS(3909), + [anon_sym___based] = ACTIONS(3909), + [anon_sym_signed] = ACTIONS(3909), + [anon_sym_unsigned] = ACTIONS(3909), + [anon_sym_long] = ACTIONS(3909), + [anon_sym_short] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_static] = ACTIONS(3909), + [anon_sym_register] = ACTIONS(3909), + [anon_sym_inline] = ACTIONS(3909), + [anon_sym___inline] = ACTIONS(3909), + [anon_sym___inline__] = ACTIONS(3909), + [anon_sym___forceinline] = ACTIONS(3909), + [anon_sym_thread_local] = ACTIONS(3909), + [anon_sym___thread] = ACTIONS(3909), + [anon_sym_const] = ACTIONS(3909), + [anon_sym_constexpr] = ACTIONS(3909), + [anon_sym_volatile] = ACTIONS(3909), + [anon_sym_restrict] = ACTIONS(3909), + [anon_sym___restrict__] = ACTIONS(3909), + [anon_sym__Atomic] = ACTIONS(3909), + [anon_sym__Noreturn] = ACTIONS(3909), + [anon_sym_noreturn] = ACTIONS(3909), + [anon_sym__Nonnull] = ACTIONS(3909), + [anon_sym_mutable] = ACTIONS(3909), + [anon_sym_constinit] = ACTIONS(3909), + [anon_sym_consteval] = ACTIONS(3909), + [anon_sym_alignas] = ACTIONS(3909), + [anon_sym__Alignas] = ACTIONS(3909), + [sym_primitive_type] = ACTIONS(3909), + [anon_sym_enum] = ACTIONS(3909), + [anon_sym_class] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(3909), + [anon_sym_union] = ACTIONS(3909), + [anon_sym_typename] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3909), + [anon_sym_decltype] = ACTIONS(3909), + [anon_sym_explicit] = ACTIONS(3909), + [anon_sym_private] = ACTIONS(3909), + [anon_sym_template] = ACTIONS(3909), + [anon_sym_operator] = ACTIONS(3909), + [anon_sym_friend] = ACTIONS(3909), + [anon_sym_public] = ACTIONS(3909), + [anon_sym_protected] = ACTIONS(3909), + [anon_sym_static_assert] = ACTIONS(3909), + [anon_sym_LBRACK_COLON] = ACTIONS(3911), + }, + [STATE(2797)] = { + [sym_identifier] = ACTIONS(3913), + [aux_sym_preproc_def_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token2] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3913), + [aux_sym_preproc_else_token1] = ACTIONS(3913), + [aux_sym_preproc_elif_token1] = ACTIONS(3913), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3913), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3913), + [sym_preproc_directive] = ACTIONS(3913), + [anon_sym_LPAREN2] = ACTIONS(3915), + [anon_sym_TILDE] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym___extension__] = ACTIONS(3913), + [anon_sym_typedef] = ACTIONS(3913), + [anon_sym_virtual] = ACTIONS(3913), + [anon_sym_extern] = ACTIONS(3913), + [anon_sym___attribute__] = ACTIONS(3913), + [anon_sym___attribute] = ACTIONS(3913), + [anon_sym_using] = ACTIONS(3913), + [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3915), + [anon_sym___declspec] = ACTIONS(3913), + [anon_sym___based] = ACTIONS(3913), + [anon_sym_signed] = ACTIONS(3913), + [anon_sym_unsigned] = ACTIONS(3913), + [anon_sym_long] = ACTIONS(3913), + [anon_sym_short] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(3913), + [anon_sym_static] = ACTIONS(3913), + [anon_sym_register] = ACTIONS(3913), + [anon_sym_inline] = ACTIONS(3913), + [anon_sym___inline] = ACTIONS(3913), + [anon_sym___inline__] = ACTIONS(3913), + [anon_sym___forceinline] = ACTIONS(3913), + [anon_sym_thread_local] = ACTIONS(3913), + [anon_sym___thread] = ACTIONS(3913), + [anon_sym_const] = ACTIONS(3913), + [anon_sym_constexpr] = ACTIONS(3913), + [anon_sym_volatile] = ACTIONS(3913), + [anon_sym_restrict] = ACTIONS(3913), + [anon_sym___restrict__] = ACTIONS(3913), + [anon_sym__Atomic] = ACTIONS(3913), + [anon_sym__Noreturn] = ACTIONS(3913), + [anon_sym_noreturn] = ACTIONS(3913), + [anon_sym__Nonnull] = ACTIONS(3913), + [anon_sym_mutable] = ACTIONS(3913), + [anon_sym_constinit] = ACTIONS(3913), + [anon_sym_consteval] = ACTIONS(3913), + [anon_sym_alignas] = ACTIONS(3913), + [anon_sym__Alignas] = ACTIONS(3913), + [sym_primitive_type] = ACTIONS(3913), + [anon_sym_enum] = ACTIONS(3913), + [anon_sym_class] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(3913), + [anon_sym_union] = ACTIONS(3913), + [anon_sym_typename] = ACTIONS(3913), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3913), + [anon_sym_decltype] = ACTIONS(3913), + [anon_sym_explicit] = ACTIONS(3913), + [anon_sym_private] = ACTIONS(3913), + [anon_sym_template] = ACTIONS(3913), + [anon_sym_operator] = ACTIONS(3913), + [anon_sym_friend] = ACTIONS(3913), + [anon_sym_public] = ACTIONS(3913), + [anon_sym_protected] = ACTIONS(3913), + [anon_sym_static_assert] = ACTIONS(3913), + [anon_sym_LBRACK_COLON] = ACTIONS(3915), + }, + [STATE(2798)] = { + [sym_identifier] = ACTIONS(4126), + [aux_sym_preproc_def_token1] = ACTIONS(4126), + [aux_sym_preproc_if_token1] = ACTIONS(4126), + [aux_sym_preproc_if_token2] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4126), + [aux_sym_preproc_else_token1] = ACTIONS(4126), + [aux_sym_preproc_elif_token1] = ACTIONS(4126), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4126), + [sym_preproc_directive] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4128), + [anon_sym_TILDE] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_AMP_AMP] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(4128), + [anon_sym___extension__] = ACTIONS(4126), + [anon_sym_typedef] = ACTIONS(4126), + [anon_sym_virtual] = ACTIONS(4126), + [anon_sym_extern] = ACTIONS(4126), + [anon_sym___attribute__] = ACTIONS(4126), + [anon_sym___attribute] = ACTIONS(4126), + [anon_sym_using] = ACTIONS(4126), + [anon_sym_COLON_COLON] = ACTIONS(4128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4128), + [anon_sym___declspec] = ACTIONS(4126), + [anon_sym___based] = ACTIONS(4126), + [anon_sym_signed] = ACTIONS(4126), + [anon_sym_unsigned] = ACTIONS(4126), + [anon_sym_long] = ACTIONS(4126), + [anon_sym_short] = ACTIONS(4126), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_static] = ACTIONS(4126), + [anon_sym_register] = ACTIONS(4126), + [anon_sym_inline] = ACTIONS(4126), + [anon_sym___inline] = ACTIONS(4126), + [anon_sym___inline__] = ACTIONS(4126), + [anon_sym___forceinline] = ACTIONS(4126), + [anon_sym_thread_local] = ACTIONS(4126), + [anon_sym___thread] = ACTIONS(4126), + [anon_sym_const] = ACTIONS(4126), + [anon_sym_constexpr] = ACTIONS(4126), + [anon_sym_volatile] = ACTIONS(4126), + [anon_sym_restrict] = ACTIONS(4126), + [anon_sym___restrict__] = ACTIONS(4126), + [anon_sym__Atomic] = ACTIONS(4126), + [anon_sym__Noreturn] = ACTIONS(4126), + [anon_sym_noreturn] = ACTIONS(4126), + [anon_sym__Nonnull] = ACTIONS(4126), + [anon_sym_mutable] = ACTIONS(4126), + [anon_sym_constinit] = ACTIONS(4126), + [anon_sym_consteval] = ACTIONS(4126), + [anon_sym_alignas] = ACTIONS(4126), + [anon_sym__Alignas] = ACTIONS(4126), + [sym_primitive_type] = ACTIONS(4126), + [anon_sym_enum] = ACTIONS(4126), + [anon_sym_class] = ACTIONS(4126), + [anon_sym_struct] = ACTIONS(4126), + [anon_sym_union] = ACTIONS(4126), + [anon_sym_typename] = ACTIONS(4126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4126), + [anon_sym_decltype] = ACTIONS(4126), + [anon_sym_explicit] = ACTIONS(4126), + [anon_sym_private] = ACTIONS(4126), + [anon_sym_template] = ACTIONS(4126), + [anon_sym_operator] = ACTIONS(4126), + [anon_sym_friend] = ACTIONS(4126), + [anon_sym_public] = ACTIONS(4126), + [anon_sym_protected] = ACTIONS(4126), + [anon_sym_static_assert] = ACTIONS(4126), + [anon_sym_LBRACK_COLON] = ACTIONS(4128), + }, + [STATE(2799)] = { + [sym_attribute_specifier] = STATE(3178), [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), [anon_sym_COMMA] = ACTIONS(7533), [anon_sym_LPAREN2] = ACTIONS(7533), @@ -375883,17 +378661,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(7533), [anon_sym_BANG_EQ] = ACTIONS(7533), [anon_sym_GT] = ACTIONS(7531), - [anon_sym_GT_EQ] = ACTIONS(7533), + [anon_sym_GT_EQ] = ACTIONS(7531), [anon_sym_LT_EQ] = ACTIONS(7531), [anon_sym_LT] = ACTIONS(7531), [anon_sym_LT_LT] = ACTIONS(7531), [anon_sym_GT_GT] = ACTIONS(7531), [anon_sym___extension__] = ACTIONS(7533), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), [anon_sym_LBRACE] = ACTIONS(7533), [anon_sym_LBRACK] = ACTIONS(7533), - [anon_sym_RBRACK] = ACTIONS(7533), [anon_sym_EQ] = ACTIONS(7531), [anon_sym_const] = ACTIONS(7531), [anon_sym_constexpr] = ACTIONS(7533), @@ -375916,7 +378693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(7533), [anon_sym_DASH_EQ] = ACTIONS(7533), [anon_sym_LT_LT_EQ] = ACTIONS(7533), - [anon_sym_GT_GT_EQ] = ACTIONS(7533), + [anon_sym_GT_GT_EQ] = ACTIONS(7531), [anon_sym_AMP_EQ] = ACTIONS(7533), [anon_sym_CARET_EQ] = ACTIONS(7533), [anon_sym_PIPE_EQ] = ACTIONS(7533), @@ -375938,2109 +378715,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7533), [anon_sym_override] = ACTIONS(7533), + [anon_sym_GT2] = ACTIONS(7533), [anon_sym_requires] = ACTIONS(7533), }, - [STATE(2761)] = { - [sym_identifier] = ACTIONS(8661), - [aux_sym_preproc_def_token1] = ACTIONS(8661), - [aux_sym_preproc_if_token1] = ACTIONS(8661), - [aux_sym_preproc_if_token2] = ACTIONS(8661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8661), - [aux_sym_preproc_else_token1] = ACTIONS(8661), - [aux_sym_preproc_elif_token1] = ACTIONS(8661), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8661), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8661), - [sym_preproc_directive] = ACTIONS(8661), - [anon_sym_LPAREN2] = ACTIONS(8663), - [anon_sym_TILDE] = ACTIONS(8663), - [anon_sym_STAR] = ACTIONS(8663), - [anon_sym_AMP_AMP] = ACTIONS(8663), - [anon_sym_AMP] = ACTIONS(8661), - [anon_sym_SEMI] = ACTIONS(8663), - [anon_sym___extension__] = ACTIONS(8661), - [anon_sym_typedef] = ACTIONS(8661), - [anon_sym_virtual] = ACTIONS(8661), - [anon_sym_extern] = ACTIONS(8661), - [anon_sym___attribute__] = ACTIONS(8661), - [anon_sym___attribute] = ACTIONS(8661), - [anon_sym_using] = ACTIONS(8661), - [anon_sym_COLON_COLON] = ACTIONS(8663), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8663), - [anon_sym___declspec] = ACTIONS(8661), - [anon_sym___based] = ACTIONS(8661), - [anon_sym_signed] = ACTIONS(8661), - [anon_sym_unsigned] = ACTIONS(8661), - [anon_sym_long] = ACTIONS(8661), - [anon_sym_short] = ACTIONS(8661), - [anon_sym_LBRACK] = ACTIONS(8661), - [anon_sym_static] = ACTIONS(8661), - [anon_sym_register] = ACTIONS(8661), - [anon_sym_inline] = ACTIONS(8661), - [anon_sym___inline] = ACTIONS(8661), - [anon_sym___inline__] = ACTIONS(8661), - [anon_sym___forceinline] = ACTIONS(8661), - [anon_sym_thread_local] = ACTIONS(8661), - [anon_sym___thread] = ACTIONS(8661), - [anon_sym_const] = ACTIONS(8661), - [anon_sym_constexpr] = ACTIONS(8661), - [anon_sym_volatile] = ACTIONS(8661), - [anon_sym_restrict] = ACTIONS(8661), - [anon_sym___restrict__] = ACTIONS(8661), - [anon_sym__Atomic] = ACTIONS(8661), - [anon_sym__Noreturn] = ACTIONS(8661), - [anon_sym_noreturn] = ACTIONS(8661), - [anon_sym__Nonnull] = ACTIONS(8661), - [anon_sym_mutable] = ACTIONS(8661), - [anon_sym_constinit] = ACTIONS(8661), - [anon_sym_consteval] = ACTIONS(8661), - [anon_sym_alignas] = ACTIONS(8661), - [anon_sym__Alignas] = ACTIONS(8661), - [sym_primitive_type] = ACTIONS(8661), - [anon_sym_enum] = ACTIONS(8661), - [anon_sym_class] = ACTIONS(8661), - [anon_sym_struct] = ACTIONS(8661), - [anon_sym_union] = ACTIONS(8661), - [anon_sym_typename] = ACTIONS(8661), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8661), - [anon_sym_decltype] = ACTIONS(8661), - [anon_sym_explicit] = ACTIONS(8661), - [anon_sym_private] = ACTIONS(8661), - [anon_sym_template] = ACTIONS(8661), - [anon_sym_operator] = ACTIONS(8661), - [anon_sym_friend] = ACTIONS(8661), - [anon_sym_public] = ACTIONS(8661), - [anon_sym_protected] = ACTIONS(8661), - [anon_sym_static_assert] = ACTIONS(8661), - [anon_sym_LBRACK_COLON] = ACTIONS(8663), - }, - [STATE(2762)] = { - [sym_identifier] = ACTIONS(8665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8667), - [anon_sym_COMMA] = ACTIONS(8667), - [anon_sym_RPAREN] = ACTIONS(8667), - [aux_sym_preproc_if_token2] = ACTIONS(8667), - [aux_sym_preproc_else_token1] = ACTIONS(8667), - [aux_sym_preproc_elif_token1] = ACTIONS(8665), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8667), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8667), - [anon_sym_LPAREN2] = ACTIONS(8667), - [anon_sym_DASH] = ACTIONS(8665), - [anon_sym_PLUS] = ACTIONS(8665), - [anon_sym_STAR] = ACTIONS(8665), - [anon_sym_SLASH] = ACTIONS(8665), - [anon_sym_PERCENT] = ACTIONS(8665), - [anon_sym_PIPE_PIPE] = ACTIONS(8667), - [anon_sym_AMP_AMP] = ACTIONS(8667), - [anon_sym_PIPE] = ACTIONS(8665), - [anon_sym_CARET] = ACTIONS(8665), - [anon_sym_AMP] = ACTIONS(8665), - [anon_sym_EQ_EQ] = ACTIONS(8667), - [anon_sym_BANG_EQ] = ACTIONS(8667), - [anon_sym_GT] = ACTIONS(8665), - [anon_sym_GT_EQ] = ACTIONS(8667), - [anon_sym_LT_EQ] = ACTIONS(8665), - [anon_sym_LT] = ACTIONS(8665), - [anon_sym_LT_LT] = ACTIONS(8665), - [anon_sym_GT_GT] = ACTIONS(8665), - [anon_sym_SEMI] = ACTIONS(8667), - [anon_sym_COLON] = ACTIONS(8665), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8667), - [anon_sym_RBRACE] = ACTIONS(8667), - [anon_sym_LBRACK] = ACTIONS(8667), - [anon_sym_EQ] = ACTIONS(8665), - [anon_sym_QMARK] = ACTIONS(8667), - [anon_sym_STAR_EQ] = ACTIONS(8667), - [anon_sym_SLASH_EQ] = ACTIONS(8667), - [anon_sym_PERCENT_EQ] = ACTIONS(8667), - [anon_sym_PLUS_EQ] = ACTIONS(8667), - [anon_sym_DASH_EQ] = ACTIONS(8667), - [anon_sym_LT_LT_EQ] = ACTIONS(8667), - [anon_sym_GT_GT_EQ] = ACTIONS(8667), - [anon_sym_AMP_EQ] = ACTIONS(8667), - [anon_sym_CARET_EQ] = ACTIONS(8667), - [anon_sym_PIPE_EQ] = ACTIONS(8667), - [anon_sym_and_eq] = ACTIONS(8665), - [anon_sym_or_eq] = ACTIONS(8665), - [anon_sym_xor_eq] = ACTIONS(8665), - [anon_sym_LT_EQ_GT] = ACTIONS(8667), - [anon_sym_or] = ACTIONS(8665), - [anon_sym_and] = ACTIONS(8665), - [anon_sym_bitor] = ACTIONS(8665), - [anon_sym_xor] = ACTIONS(8665), - [anon_sym_bitand] = ACTIONS(8665), - [anon_sym_not_eq] = ACTIONS(8665), - [anon_sym_DASH_DASH] = ACTIONS(8667), - [anon_sym_PLUS_PLUS] = ACTIONS(8667), - [anon_sym_DOT] = ACTIONS(8665), - [anon_sym_DOT_STAR] = ACTIONS(8667), - [anon_sym_DASH_GT] = ACTIONS(8667), - [anon_sym_L_DQUOTE] = ACTIONS(8667), - [anon_sym_u_DQUOTE] = ACTIONS(8667), - [anon_sym_U_DQUOTE] = ACTIONS(8667), - [anon_sym_u8_DQUOTE] = ACTIONS(8667), - [anon_sym_DQUOTE] = ACTIONS(8667), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8667), - [anon_sym_LR_DQUOTE] = ACTIONS(8667), - [anon_sym_uR_DQUOTE] = ACTIONS(8667), - [anon_sym_UR_DQUOTE] = ACTIONS(8667), - [anon_sym_u8R_DQUOTE] = ACTIONS(8667), - [anon_sym_COLON_RBRACK] = ACTIONS(8667), - [sym_literal_suffix] = ACTIONS(8665), - }, - [STATE(2763)] = { - [sym_identifier] = ACTIONS(3658), - [aux_sym_preproc_def_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token2] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), - [aux_sym_preproc_else_token1] = ACTIONS(3658), - [aux_sym_preproc_elif_token1] = ACTIONS(3658), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3658), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3658), - [sym_preproc_directive] = ACTIONS(3658), - [anon_sym_LPAREN2] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym___extension__] = ACTIONS(3658), - [anon_sym_typedef] = ACTIONS(3658), - [anon_sym_virtual] = ACTIONS(3658), - [anon_sym_extern] = ACTIONS(3658), - [anon_sym___attribute__] = ACTIONS(3658), - [anon_sym___attribute] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), - [anon_sym___declspec] = ACTIONS(3658), - [anon_sym___based] = ACTIONS(3658), - [anon_sym_signed] = ACTIONS(3658), - [anon_sym_unsigned] = ACTIONS(3658), - [anon_sym_long] = ACTIONS(3658), - [anon_sym_short] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_register] = ACTIONS(3658), - [anon_sym_inline] = ACTIONS(3658), - [anon_sym___inline] = ACTIONS(3658), - [anon_sym___inline__] = ACTIONS(3658), - [anon_sym___forceinline] = ACTIONS(3658), - [anon_sym_thread_local] = ACTIONS(3658), - [anon_sym___thread] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_constexpr] = ACTIONS(3658), - [anon_sym_volatile] = ACTIONS(3658), - [anon_sym_restrict] = ACTIONS(3658), - [anon_sym___restrict__] = ACTIONS(3658), - [anon_sym__Atomic] = ACTIONS(3658), - [anon_sym__Noreturn] = ACTIONS(3658), - [anon_sym_noreturn] = ACTIONS(3658), - [anon_sym__Nonnull] = ACTIONS(3658), - [anon_sym_mutable] = ACTIONS(3658), - [anon_sym_constinit] = ACTIONS(3658), - [anon_sym_consteval] = ACTIONS(3658), - [anon_sym_alignas] = ACTIONS(3658), - [anon_sym__Alignas] = ACTIONS(3658), - [sym_primitive_type] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3658), - [anon_sym_union] = ACTIONS(3658), - [anon_sym_typename] = ACTIONS(3658), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3658), - [anon_sym_decltype] = ACTIONS(3658), - [anon_sym_explicit] = ACTIONS(3658), - [anon_sym_private] = ACTIONS(3658), - [anon_sym_template] = ACTIONS(3658), - [anon_sym_operator] = ACTIONS(3658), - [anon_sym_friend] = ACTIONS(3658), - [anon_sym_public] = ACTIONS(3658), - [anon_sym_protected] = ACTIONS(3658), - [anon_sym_static_assert] = ACTIONS(3658), - [anon_sym_LBRACK_COLON] = ACTIONS(3660), - }, - [STATE(2764)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token2] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_friend] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - }, - [STATE(2765)] = { - [sym_identifier] = ACTIONS(4000), - [aux_sym_preproc_def_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token2] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), - [aux_sym_preproc_else_token1] = ACTIONS(4000), - [aux_sym_preproc_elif_token1] = ACTIONS(4000), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4000), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4000), - [sym_preproc_directive] = ACTIONS(4000), - [anon_sym_LPAREN2] = ACTIONS(4002), - [anon_sym_TILDE] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym___extension__] = ACTIONS(4000), - [anon_sym_typedef] = ACTIONS(4000), - [anon_sym_virtual] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym___attribute__] = ACTIONS(4000), - [anon_sym___attribute] = ACTIONS(4000), - [anon_sym_using] = ACTIONS(4000), - [anon_sym_COLON_COLON] = ACTIONS(4002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), - [anon_sym___declspec] = ACTIONS(4000), - [anon_sym___based] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(4000), - [anon_sym_unsigned] = ACTIONS(4000), - [anon_sym_long] = ACTIONS(4000), - [anon_sym_short] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_static] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_inline] = ACTIONS(4000), - [anon_sym___inline] = ACTIONS(4000), - [anon_sym___inline__] = ACTIONS(4000), - [anon_sym___forceinline] = ACTIONS(4000), - [anon_sym_thread_local] = ACTIONS(4000), - [anon_sym___thread] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_constexpr] = ACTIONS(4000), - [anon_sym_volatile] = ACTIONS(4000), - [anon_sym_restrict] = ACTIONS(4000), - [anon_sym___restrict__] = ACTIONS(4000), - [anon_sym__Atomic] = ACTIONS(4000), - [anon_sym__Noreturn] = ACTIONS(4000), - [anon_sym_noreturn] = ACTIONS(4000), - [anon_sym__Nonnull] = ACTIONS(4000), - [anon_sym_mutable] = ACTIONS(4000), - [anon_sym_constinit] = ACTIONS(4000), - [anon_sym_consteval] = ACTIONS(4000), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym__Alignas] = ACTIONS(4000), - [sym_primitive_type] = ACTIONS(4000), - [anon_sym_enum] = ACTIONS(4000), - [anon_sym_class] = ACTIONS(4000), - [anon_sym_struct] = ACTIONS(4000), - [anon_sym_union] = ACTIONS(4000), - [anon_sym_typename] = ACTIONS(4000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4000), - [anon_sym_decltype] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4000), - [anon_sym_private] = ACTIONS(4000), - [anon_sym_template] = ACTIONS(4000), - [anon_sym_operator] = ACTIONS(4000), - [anon_sym_friend] = ACTIONS(4000), - [anon_sym_public] = ACTIONS(4000), - [anon_sym_protected] = ACTIONS(4000), - [anon_sym_static_assert] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4002), - }, - [STATE(2766)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token2] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [aux_sym_preproc_else_token1] = ACTIONS(3662), - [aux_sym_preproc_elif_token1] = ACTIONS(3662), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_friend] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - }, - [STATE(2767)] = { - [sym_identifier] = ACTIONS(3666), - [aux_sym_preproc_def_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token2] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), - [aux_sym_preproc_else_token1] = ACTIONS(3666), - [aux_sym_preproc_elif_token1] = ACTIONS(3666), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3666), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3666), - [sym_preproc_directive] = ACTIONS(3666), - [anon_sym_LPAREN2] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym___extension__] = ACTIONS(3666), - [anon_sym_typedef] = ACTIONS(3666), - [anon_sym_virtual] = ACTIONS(3666), - [anon_sym_extern] = ACTIONS(3666), - [anon_sym___attribute__] = ACTIONS(3666), - [anon_sym___attribute] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_COLON_COLON] = ACTIONS(3668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), - [anon_sym___declspec] = ACTIONS(3666), - [anon_sym___based] = ACTIONS(3666), - [anon_sym_signed] = ACTIONS(3666), - [anon_sym_unsigned] = ACTIONS(3666), - [anon_sym_long] = ACTIONS(3666), - [anon_sym_short] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_register] = ACTIONS(3666), - [anon_sym_inline] = ACTIONS(3666), - [anon_sym___inline] = ACTIONS(3666), - [anon_sym___inline__] = ACTIONS(3666), - [anon_sym___forceinline] = ACTIONS(3666), - [anon_sym_thread_local] = ACTIONS(3666), - [anon_sym___thread] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_constexpr] = ACTIONS(3666), - [anon_sym_volatile] = ACTIONS(3666), - [anon_sym_restrict] = ACTIONS(3666), - [anon_sym___restrict__] = ACTIONS(3666), - [anon_sym__Atomic] = ACTIONS(3666), - [anon_sym__Noreturn] = ACTIONS(3666), - [anon_sym_noreturn] = ACTIONS(3666), - [anon_sym__Nonnull] = ACTIONS(3666), - [anon_sym_mutable] = ACTIONS(3666), - [anon_sym_constinit] = ACTIONS(3666), - [anon_sym_consteval] = ACTIONS(3666), - [anon_sym_alignas] = ACTIONS(3666), - [anon_sym__Alignas] = ACTIONS(3666), - [sym_primitive_type] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_union] = ACTIONS(3666), - [anon_sym_typename] = ACTIONS(3666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3666), - [anon_sym_decltype] = ACTIONS(3666), - [anon_sym_explicit] = ACTIONS(3666), - [anon_sym_private] = ACTIONS(3666), - [anon_sym_template] = ACTIONS(3666), - [anon_sym_operator] = ACTIONS(3666), - [anon_sym_friend] = ACTIONS(3666), - [anon_sym_public] = ACTIONS(3666), - [anon_sym_protected] = ACTIONS(3666), - [anon_sym_static_assert] = ACTIONS(3666), - [anon_sym_LBRACK_COLON] = ACTIONS(3668), - }, - [STATE(2768)] = { - [sym_identifier] = ACTIONS(4282), - [aux_sym_preproc_def_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token2] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), - [aux_sym_preproc_else_token1] = ACTIONS(4282), - [aux_sym_preproc_elif_token1] = ACTIONS(4282), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4282), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4282), - [sym_preproc_directive] = ACTIONS(4282), - [anon_sym_LPAREN2] = ACTIONS(4284), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [anon_sym_AMP_AMP] = ACTIONS(4284), - [anon_sym_AMP] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4284), - [anon_sym___extension__] = ACTIONS(4282), - [anon_sym_typedef] = ACTIONS(4282), - [anon_sym_virtual] = ACTIONS(4282), - [anon_sym_extern] = ACTIONS(4282), - [anon_sym___attribute__] = ACTIONS(4282), - [anon_sym___attribute] = ACTIONS(4282), - [anon_sym_using] = ACTIONS(4282), - [anon_sym_COLON_COLON] = ACTIONS(4284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4282), - [anon_sym___based] = ACTIONS(4282), - [anon_sym_signed] = ACTIONS(4282), - [anon_sym_unsigned] = ACTIONS(4282), - [anon_sym_long] = ACTIONS(4282), - [anon_sym_short] = ACTIONS(4282), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_static] = ACTIONS(4282), - [anon_sym_register] = ACTIONS(4282), - [anon_sym_inline] = ACTIONS(4282), - [anon_sym___inline] = ACTIONS(4282), - [anon_sym___inline__] = ACTIONS(4282), - [anon_sym___forceinline] = ACTIONS(4282), - [anon_sym_thread_local] = ACTIONS(4282), - [anon_sym___thread] = ACTIONS(4282), - [anon_sym_const] = ACTIONS(4282), - [anon_sym_constexpr] = ACTIONS(4282), - [anon_sym_volatile] = ACTIONS(4282), - [anon_sym_restrict] = ACTIONS(4282), - [anon_sym___restrict__] = ACTIONS(4282), - [anon_sym__Atomic] = ACTIONS(4282), - [anon_sym__Noreturn] = ACTIONS(4282), - [anon_sym_noreturn] = ACTIONS(4282), - [anon_sym__Nonnull] = ACTIONS(4282), - [anon_sym_mutable] = ACTIONS(4282), - [anon_sym_constinit] = ACTIONS(4282), - [anon_sym_consteval] = ACTIONS(4282), - [anon_sym_alignas] = ACTIONS(4282), - [anon_sym__Alignas] = ACTIONS(4282), - [sym_primitive_type] = ACTIONS(4282), - [anon_sym_enum] = ACTIONS(4282), - [anon_sym_class] = ACTIONS(4282), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_union] = ACTIONS(4282), - [anon_sym_typename] = ACTIONS(4282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4282), - [anon_sym_decltype] = ACTIONS(4282), - [anon_sym_explicit] = ACTIONS(4282), - [anon_sym_private] = ACTIONS(4282), - [anon_sym_template] = ACTIONS(4282), - [anon_sym_operator] = ACTIONS(4282), - [anon_sym_friend] = ACTIONS(4282), - [anon_sym_public] = ACTIONS(4282), - [anon_sym_protected] = ACTIONS(4282), - [anon_sym_static_assert] = ACTIONS(4282), - [anon_sym_LBRACK_COLON] = ACTIONS(4284), - }, - [STATE(2769)] = { - [sym_identifier] = ACTIONS(3678), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token2] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), - [aux_sym_preproc_else_token1] = ACTIONS(3678), - [aux_sym_preproc_elif_token1] = ACTIONS(3678), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3678), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3678), - [sym_preproc_directive] = ACTIONS(3678), - [anon_sym_LPAREN2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3678), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym___extension__] = ACTIONS(3678), - [anon_sym_typedef] = ACTIONS(3678), - [anon_sym_virtual] = ACTIONS(3678), - [anon_sym_extern] = ACTIONS(3678), - [anon_sym___attribute__] = ACTIONS(3678), - [anon_sym___attribute] = ACTIONS(3678), - [anon_sym_using] = ACTIONS(3678), - [anon_sym_COLON_COLON] = ACTIONS(3680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), - [anon_sym___declspec] = ACTIONS(3678), - [anon_sym___based] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3678), - [anon_sym_unsigned] = ACTIONS(3678), - [anon_sym_long] = ACTIONS(3678), - [anon_sym_short] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_register] = ACTIONS(3678), - [anon_sym_inline] = ACTIONS(3678), - [anon_sym___inline] = ACTIONS(3678), - [anon_sym___inline__] = ACTIONS(3678), - [anon_sym___forceinline] = ACTIONS(3678), - [anon_sym_thread_local] = ACTIONS(3678), - [anon_sym___thread] = ACTIONS(3678), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_constexpr] = ACTIONS(3678), - [anon_sym_volatile] = ACTIONS(3678), - [anon_sym_restrict] = ACTIONS(3678), - [anon_sym___restrict__] = ACTIONS(3678), - [anon_sym__Atomic] = ACTIONS(3678), - [anon_sym__Noreturn] = ACTIONS(3678), - [anon_sym_noreturn] = ACTIONS(3678), - [anon_sym__Nonnull] = ACTIONS(3678), - [anon_sym_mutable] = ACTIONS(3678), - [anon_sym_constinit] = ACTIONS(3678), - [anon_sym_consteval] = ACTIONS(3678), - [anon_sym_alignas] = ACTIONS(3678), - [anon_sym__Alignas] = ACTIONS(3678), - [sym_primitive_type] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_struct] = ACTIONS(3678), - [anon_sym_union] = ACTIONS(3678), - [anon_sym_typename] = ACTIONS(3678), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3678), - [anon_sym_decltype] = ACTIONS(3678), - [anon_sym_explicit] = ACTIONS(3678), - [anon_sym_private] = ACTIONS(3678), - [anon_sym_template] = ACTIONS(3678), - [anon_sym_operator] = ACTIONS(3678), - [anon_sym_friend] = ACTIONS(3678), - [anon_sym_public] = ACTIONS(3678), - [anon_sym_protected] = ACTIONS(3678), - [anon_sym_static_assert] = ACTIONS(3678), - [anon_sym_LBRACK_COLON] = ACTIONS(3680), - }, - [STATE(2770)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(6427), - [sym__declarator] = STATE(8808), - [sym__abstract_declarator] = STATE(9023), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(3810), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5327), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(3810), - [aux_sym_pointer_declarator_repeat1] = STATE(6427), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8651), - [anon_sym_AMP_AMP] = ACTIONS(8653), - [anon_sym_AMP] = ACTIONS(8655), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6821), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_GT2] = ACTIONS(6823), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2771)] = { - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token2] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [aux_sym_preproc_else_token1] = ACTIONS(4176), - [aux_sym_preproc_elif_token1] = ACTIONS(4176), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_private] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(4176), - [anon_sym_protected] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - }, - [STATE(2772)] = { - [sym_identifier] = ACTIONS(4104), - [aux_sym_preproc_def_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token2] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), - [aux_sym_preproc_else_token1] = ACTIONS(4104), - [aux_sym_preproc_elif_token1] = ACTIONS(4104), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4104), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4104), - [sym_preproc_directive] = ACTIONS(4104), - [anon_sym_LPAREN2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym___extension__] = ACTIONS(4104), - [anon_sym_typedef] = ACTIONS(4104), - [anon_sym_virtual] = ACTIONS(4104), - [anon_sym_extern] = ACTIONS(4104), - [anon_sym___attribute__] = ACTIONS(4104), - [anon_sym___attribute] = ACTIONS(4104), - [anon_sym_using] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), - [anon_sym___declspec] = ACTIONS(4104), - [anon_sym___based] = ACTIONS(4104), - [anon_sym_signed] = ACTIONS(4104), - [anon_sym_unsigned] = ACTIONS(4104), - [anon_sym_long] = ACTIONS(4104), - [anon_sym_short] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(4104), - [anon_sym_static] = ACTIONS(4104), - [anon_sym_register] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym___inline] = ACTIONS(4104), - [anon_sym___inline__] = ACTIONS(4104), - [anon_sym___forceinline] = ACTIONS(4104), - [anon_sym_thread_local] = ACTIONS(4104), - [anon_sym___thread] = ACTIONS(4104), - [anon_sym_const] = ACTIONS(4104), - [anon_sym_constexpr] = ACTIONS(4104), - [anon_sym_volatile] = ACTIONS(4104), - [anon_sym_restrict] = ACTIONS(4104), - [anon_sym___restrict__] = ACTIONS(4104), - [anon_sym__Atomic] = ACTIONS(4104), - [anon_sym__Noreturn] = ACTIONS(4104), - [anon_sym_noreturn] = ACTIONS(4104), - [anon_sym__Nonnull] = ACTIONS(4104), - [anon_sym_mutable] = ACTIONS(4104), - [anon_sym_constinit] = ACTIONS(4104), - [anon_sym_consteval] = ACTIONS(4104), - [anon_sym_alignas] = ACTIONS(4104), - [anon_sym__Alignas] = ACTIONS(4104), - [sym_primitive_type] = ACTIONS(4104), - [anon_sym_enum] = ACTIONS(4104), - [anon_sym_class] = ACTIONS(4104), - [anon_sym_struct] = ACTIONS(4104), - [anon_sym_union] = ACTIONS(4104), - [anon_sym_typename] = ACTIONS(4104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4104), - [anon_sym_decltype] = ACTIONS(4104), - [anon_sym_explicit] = ACTIONS(4104), - [anon_sym_private] = ACTIONS(4104), - [anon_sym_template] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_friend] = ACTIONS(4104), - [anon_sym_public] = ACTIONS(4104), - [anon_sym_protected] = ACTIONS(4104), - [anon_sym_static_assert] = ACTIONS(4104), - [anon_sym_LBRACK_COLON] = ACTIONS(4106), - }, - [STATE(2773)] = { - [sym_identifier] = ACTIONS(4004), - [aux_sym_preproc_def_token1] = ACTIONS(4004), - [aux_sym_preproc_if_token1] = ACTIONS(4004), - [aux_sym_preproc_if_token2] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), - [aux_sym_preproc_else_token1] = ACTIONS(4004), - [aux_sym_preproc_elif_token1] = ACTIONS(4004), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4004), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4004), - [sym_preproc_directive] = ACTIONS(4004), - [anon_sym_LPAREN2] = ACTIONS(4006), - [anon_sym_TILDE] = ACTIONS(4006), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym___extension__] = ACTIONS(4004), - [anon_sym_typedef] = ACTIONS(4004), - [anon_sym_virtual] = ACTIONS(4004), - [anon_sym_extern] = ACTIONS(4004), - [anon_sym___attribute__] = ACTIONS(4004), - [anon_sym___attribute] = ACTIONS(4004), - [anon_sym_using] = ACTIONS(4004), - [anon_sym_COLON_COLON] = ACTIONS(4006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), - [anon_sym___declspec] = ACTIONS(4004), - [anon_sym___based] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4004), - [anon_sym_unsigned] = ACTIONS(4004), - [anon_sym_long] = ACTIONS(4004), - [anon_sym_short] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(4004), - [anon_sym_static] = ACTIONS(4004), - [anon_sym_register] = ACTIONS(4004), - [anon_sym_inline] = ACTIONS(4004), - [anon_sym___inline] = ACTIONS(4004), - [anon_sym___inline__] = ACTIONS(4004), - [anon_sym___forceinline] = ACTIONS(4004), - [anon_sym_thread_local] = ACTIONS(4004), - [anon_sym___thread] = ACTIONS(4004), - [anon_sym_const] = ACTIONS(4004), - [anon_sym_constexpr] = ACTIONS(4004), - [anon_sym_volatile] = ACTIONS(4004), - [anon_sym_restrict] = ACTIONS(4004), - [anon_sym___restrict__] = ACTIONS(4004), - [anon_sym__Atomic] = ACTIONS(4004), - [anon_sym__Noreturn] = ACTIONS(4004), - [anon_sym_noreturn] = ACTIONS(4004), - [anon_sym__Nonnull] = ACTIONS(4004), - [anon_sym_mutable] = ACTIONS(4004), - [anon_sym_constinit] = ACTIONS(4004), - [anon_sym_consteval] = ACTIONS(4004), - [anon_sym_alignas] = ACTIONS(4004), - [anon_sym__Alignas] = ACTIONS(4004), - [sym_primitive_type] = ACTIONS(4004), - [anon_sym_enum] = ACTIONS(4004), - [anon_sym_class] = ACTIONS(4004), - [anon_sym_struct] = ACTIONS(4004), - [anon_sym_union] = ACTIONS(4004), - [anon_sym_typename] = ACTIONS(4004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4004), - [anon_sym_decltype] = ACTIONS(4004), - [anon_sym_explicit] = ACTIONS(4004), - [anon_sym_private] = ACTIONS(4004), - [anon_sym_template] = ACTIONS(4004), - [anon_sym_operator] = ACTIONS(4004), - [anon_sym_friend] = ACTIONS(4004), - [anon_sym_public] = ACTIONS(4004), - [anon_sym_protected] = ACTIONS(4004), - [anon_sym_static_assert] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4006), - }, - [STATE(2774)] = { - [sym_attribute_specifier] = STATE(3113), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7425), - [anon_sym_COMMA] = ACTIONS(7425), - [anon_sym_LPAREN2] = ACTIONS(7425), - [anon_sym_DASH] = ACTIONS(7423), - [anon_sym_PLUS] = ACTIONS(7423), - [anon_sym_STAR] = ACTIONS(7423), - [anon_sym_SLASH] = ACTIONS(7423), - [anon_sym_PERCENT] = ACTIONS(7423), - [anon_sym_PIPE_PIPE] = ACTIONS(7425), - [anon_sym_AMP_AMP] = ACTIONS(7425), - [anon_sym_PIPE] = ACTIONS(7423), - [anon_sym_CARET] = ACTIONS(7423), - [anon_sym_AMP] = ACTIONS(7423), - [anon_sym_EQ_EQ] = ACTIONS(7425), - [anon_sym_BANG_EQ] = ACTIONS(7425), - [anon_sym_GT] = ACTIONS(7423), - [anon_sym_GT_EQ] = ACTIONS(7423), - [anon_sym_LT_EQ] = ACTIONS(7423), - [anon_sym_LT] = ACTIONS(7423), - [anon_sym_LT_LT] = ACTIONS(7423), - [anon_sym_GT_GT] = ACTIONS(7423), - [anon_sym___extension__] = ACTIONS(7425), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7425), - [anon_sym_LBRACK] = ACTIONS(7425), - [anon_sym_EQ] = ACTIONS(7423), - [anon_sym_const] = ACTIONS(7423), - [anon_sym_constexpr] = ACTIONS(7425), - [anon_sym_volatile] = ACTIONS(7425), - [anon_sym_restrict] = ACTIONS(7425), - [anon_sym___restrict__] = ACTIONS(7425), - [anon_sym__Atomic] = ACTIONS(7425), - [anon_sym__Noreturn] = ACTIONS(7425), - [anon_sym_noreturn] = ACTIONS(7425), - [anon_sym__Nonnull] = ACTIONS(7425), - [anon_sym_mutable] = ACTIONS(7425), - [anon_sym_constinit] = ACTIONS(7425), - [anon_sym_consteval] = ACTIONS(7425), - [anon_sym_alignas] = ACTIONS(7425), - [anon_sym__Alignas] = ACTIONS(7425), - [anon_sym_QMARK] = ACTIONS(7425), - [anon_sym_STAR_EQ] = ACTIONS(7425), - [anon_sym_SLASH_EQ] = ACTIONS(7425), - [anon_sym_PERCENT_EQ] = ACTIONS(7425), - [anon_sym_PLUS_EQ] = ACTIONS(7425), - [anon_sym_DASH_EQ] = ACTIONS(7425), - [anon_sym_LT_LT_EQ] = ACTIONS(7425), - [anon_sym_GT_GT_EQ] = ACTIONS(7423), - [anon_sym_AMP_EQ] = ACTIONS(7425), - [anon_sym_CARET_EQ] = ACTIONS(7425), - [anon_sym_PIPE_EQ] = ACTIONS(7425), - [anon_sym_and_eq] = ACTIONS(7425), - [anon_sym_or_eq] = ACTIONS(7425), - [anon_sym_xor_eq] = ACTIONS(7425), - [anon_sym_LT_EQ_GT] = ACTIONS(7425), - [anon_sym_or] = ACTIONS(7423), - [anon_sym_and] = ACTIONS(7423), - [anon_sym_bitor] = ACTIONS(7425), - [anon_sym_xor] = ACTIONS(7423), - [anon_sym_bitand] = ACTIONS(7425), - [anon_sym_not_eq] = ACTIONS(7425), - [anon_sym_DASH_DASH] = ACTIONS(7425), - [anon_sym_PLUS_PLUS] = ACTIONS(7425), - [anon_sym_DOT] = ACTIONS(7423), - [anon_sym_DOT_STAR] = ACTIONS(7425), - [anon_sym_DASH_GT] = ACTIONS(7425), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7425), - [anon_sym_override] = ACTIONS(7425), - [anon_sym_GT2] = ACTIONS(7425), - [anon_sym_requires] = ACTIONS(7425), + [STATE(2800)] = { + [sym_template_argument_list] = STATE(2906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7117), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7117), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7117), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(8212), + [anon_sym_LT_LT] = ACTIONS(7117), + [anon_sym_GT_GT] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym___attribute__] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7122), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7122), + [anon_sym_and] = ACTIONS(7122), + [anon_sym_bitor] = ACTIONS(7122), + [anon_sym_xor] = ACTIONS(7122), + [anon_sym_bitand] = ACTIONS(7122), + [anon_sym_not_eq] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7117), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7122), + [anon_sym_override] = ACTIONS(7122), + [anon_sym_requires] = ACTIONS(7122), + [anon_sym_DASH_GT_STAR] = ACTIONS(7122), }, - [STATE(2775)] = { - [sym_ms_based_modifier] = STATE(11008), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(2779), - [sym__declarator] = STATE(8823), - [sym__abstract_declarator] = STATE(9053), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(3788), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5340), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7993), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(3788), - [aux_sym_pointer_declarator_repeat1] = STATE(2779), - [sym_identifier] = ACTIONS(8228), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8669), - [anon_sym_AMP_AMP] = ACTIONS(8671), - [anon_sym_AMP] = ACTIONS(8673), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6861), - [anon_sym___attribute] = ACTIONS(6861), - [anon_sym_COLON_COLON] = ACTIONS(8675), + [STATE(2801)] = { + [sym_ms_based_modifier] = STATE(11002), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(2803), + [sym__declarator] = STATE(8815), + [sym__abstract_declarator] = STATE(9030), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(3800), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5445), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7984), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(3800), + [aux_sym_pointer_declarator_repeat1] = STATE(2803), + [sym_identifier] = ACTIONS(8274), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_AMP_AMP] = ACTIONS(8770), + [anon_sym_AMP] = ACTIONS(8772), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6819), + [anon_sym___attribute] = ACTIONS(6819), + [anon_sym_COLON_COLON] = ACTIONS(8774), [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2776)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2853), - [sym__abstract_declarator] = STATE(6546), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3776), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2274), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3776), - [aux_sym_pointer_declarator_repeat1] = STATE(2853), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(8677), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(8679), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6859), - [anon_sym_AMP] = ACTIONS(8681), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6859), - [anon_sym_GT_GT] = ACTIONS(6859), - [anon_sym_SEMI] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(6859), - [anon_sym___attribute] = ACTIONS(6861), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), - [sym_ms_signed_ptr_modifier] = ACTIONS(8119), - [anon_sym__unaligned] = ACTIONS(8121), - [anon_sym___unaligned] = ACTIONS(8121), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6859), - [anon_sym_and] = ACTIONS(6859), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6859), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, - [STATE(2777)] = { - [sym_identifier] = ACTIONS(8643), - [aux_sym_preproc_def_token1] = ACTIONS(8643), - [aux_sym_preproc_if_token1] = ACTIONS(8643), - [aux_sym_preproc_if_token2] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), - [aux_sym_preproc_else_token1] = ACTIONS(8643), - [aux_sym_preproc_elif_token1] = ACTIONS(8643), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8643), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8643), - [sym_preproc_directive] = ACTIONS(8643), - [anon_sym_LPAREN2] = ACTIONS(8645), - [anon_sym_TILDE] = ACTIONS(8645), - [anon_sym_STAR] = ACTIONS(8645), - [anon_sym_AMP_AMP] = ACTIONS(8645), - [anon_sym_AMP] = ACTIONS(8643), - [anon_sym_SEMI] = ACTIONS(8645), - [anon_sym___extension__] = ACTIONS(8643), - [anon_sym_typedef] = ACTIONS(8643), - [anon_sym_virtual] = ACTIONS(8643), - [anon_sym_extern] = ACTIONS(8643), - [anon_sym___attribute__] = ACTIONS(8643), - [anon_sym___attribute] = ACTIONS(8643), - [anon_sym_using] = ACTIONS(8643), - [anon_sym_COLON_COLON] = ACTIONS(8645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), - [anon_sym___declspec] = ACTIONS(8643), - [anon_sym___based] = ACTIONS(8643), - [anon_sym_signed] = ACTIONS(8643), - [anon_sym_unsigned] = ACTIONS(8643), - [anon_sym_long] = ACTIONS(8643), - [anon_sym_short] = ACTIONS(8643), - [anon_sym_LBRACK] = ACTIONS(8643), - [anon_sym_static] = ACTIONS(8643), - [anon_sym_register] = ACTIONS(8643), - [anon_sym_inline] = ACTIONS(8643), - [anon_sym___inline] = ACTIONS(8643), - [anon_sym___inline__] = ACTIONS(8643), - [anon_sym___forceinline] = ACTIONS(8643), - [anon_sym_thread_local] = ACTIONS(8643), - [anon_sym___thread] = ACTIONS(8643), - [anon_sym_const] = ACTIONS(8643), - [anon_sym_constexpr] = ACTIONS(8643), - [anon_sym_volatile] = ACTIONS(8643), - [anon_sym_restrict] = ACTIONS(8643), - [anon_sym___restrict__] = ACTIONS(8643), - [anon_sym__Atomic] = ACTIONS(8643), - [anon_sym__Noreturn] = ACTIONS(8643), - [anon_sym_noreturn] = ACTIONS(8643), - [anon_sym__Nonnull] = ACTIONS(8643), - [anon_sym_mutable] = ACTIONS(8643), - [anon_sym_constinit] = ACTIONS(8643), - [anon_sym_consteval] = ACTIONS(8643), - [anon_sym_alignas] = ACTIONS(8643), - [anon_sym__Alignas] = ACTIONS(8643), - [sym_primitive_type] = ACTIONS(8643), - [anon_sym_enum] = ACTIONS(8643), - [anon_sym_class] = ACTIONS(8643), - [anon_sym_struct] = ACTIONS(8643), - [anon_sym_union] = ACTIONS(8643), - [anon_sym_typename] = ACTIONS(8643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8643), - [anon_sym_decltype] = ACTIONS(8643), - [anon_sym_explicit] = ACTIONS(8643), - [anon_sym_private] = ACTIONS(8643), - [anon_sym_template] = ACTIONS(8643), - [anon_sym_operator] = ACTIONS(8643), - [anon_sym_friend] = ACTIONS(8643), - [anon_sym_public] = ACTIONS(8643), - [anon_sym_protected] = ACTIONS(8643), - [anon_sym_static_assert] = ACTIONS(8643), - [anon_sym_LBRACK_COLON] = ACTIONS(8645), - }, - [STATE(2778)] = { - [sym_identifier] = ACTIONS(8683), - [aux_sym_preproc_def_token1] = ACTIONS(8683), - [aux_sym_preproc_if_token1] = ACTIONS(8683), - [aux_sym_preproc_if_token2] = ACTIONS(8683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8683), - [aux_sym_preproc_else_token1] = ACTIONS(8683), - [aux_sym_preproc_elif_token1] = ACTIONS(8683), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8683), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8683), - [sym_preproc_directive] = ACTIONS(8683), - [anon_sym_LPAREN2] = ACTIONS(8685), - [anon_sym_TILDE] = ACTIONS(8685), - [anon_sym_STAR] = ACTIONS(8685), - [anon_sym_AMP_AMP] = ACTIONS(8685), - [anon_sym_AMP] = ACTIONS(8683), - [anon_sym_SEMI] = ACTIONS(8685), - [anon_sym___extension__] = ACTIONS(8683), - [anon_sym_typedef] = ACTIONS(8683), - [anon_sym_virtual] = ACTIONS(8683), - [anon_sym_extern] = ACTIONS(8683), - [anon_sym___attribute__] = ACTIONS(8683), - [anon_sym___attribute] = ACTIONS(8683), - [anon_sym_using] = ACTIONS(8683), - [anon_sym_COLON_COLON] = ACTIONS(8685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8685), - [anon_sym___declspec] = ACTIONS(8683), - [anon_sym___based] = ACTIONS(8683), - [anon_sym_signed] = ACTIONS(8683), - [anon_sym_unsigned] = ACTIONS(8683), - [anon_sym_long] = ACTIONS(8683), - [anon_sym_short] = ACTIONS(8683), - [anon_sym_LBRACK] = ACTIONS(8683), - [anon_sym_static] = ACTIONS(8683), - [anon_sym_register] = ACTIONS(8683), - [anon_sym_inline] = ACTIONS(8683), - [anon_sym___inline] = ACTIONS(8683), - [anon_sym___inline__] = ACTIONS(8683), - [anon_sym___forceinline] = ACTIONS(8683), - [anon_sym_thread_local] = ACTIONS(8683), - [anon_sym___thread] = ACTIONS(8683), - [anon_sym_const] = ACTIONS(8683), - [anon_sym_constexpr] = ACTIONS(8683), - [anon_sym_volatile] = ACTIONS(8683), - [anon_sym_restrict] = ACTIONS(8683), - [anon_sym___restrict__] = ACTIONS(8683), - [anon_sym__Atomic] = ACTIONS(8683), - [anon_sym__Noreturn] = ACTIONS(8683), - [anon_sym_noreturn] = ACTIONS(8683), - [anon_sym__Nonnull] = ACTIONS(8683), - [anon_sym_mutable] = ACTIONS(8683), - [anon_sym_constinit] = ACTIONS(8683), - [anon_sym_consteval] = ACTIONS(8683), - [anon_sym_alignas] = ACTIONS(8683), - [anon_sym__Alignas] = ACTIONS(8683), - [sym_primitive_type] = ACTIONS(8683), - [anon_sym_enum] = ACTIONS(8683), - [anon_sym_class] = ACTIONS(8683), - [anon_sym_struct] = ACTIONS(8683), - [anon_sym_union] = ACTIONS(8683), - [anon_sym_typename] = ACTIONS(8683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8683), - [anon_sym_decltype] = ACTIONS(8683), - [anon_sym_explicit] = ACTIONS(8683), - [anon_sym_private] = ACTIONS(8683), - [anon_sym_template] = ACTIONS(8683), - [anon_sym_operator] = ACTIONS(8683), - [anon_sym_friend] = ACTIONS(8683), - [anon_sym_public] = ACTIONS(8683), - [anon_sym_protected] = ACTIONS(8683), - [anon_sym_static_assert] = ACTIONS(8683), - [anon_sym_LBRACK_COLON] = ACTIONS(8685), + [STATE(2802)] = { + [sym_identifier] = ACTIONS(3917), + [aux_sym_preproc_def_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token2] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), + [aux_sym_preproc_else_token1] = ACTIONS(3917), + [aux_sym_preproc_elif_token1] = ACTIONS(3917), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3917), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3917), + [sym_preproc_directive] = ACTIONS(3917), + [anon_sym_LPAREN2] = ACTIONS(3919), + [anon_sym_TILDE] = ACTIONS(3919), + [anon_sym_STAR] = ACTIONS(3919), + [anon_sym_AMP_AMP] = ACTIONS(3919), + [anon_sym_AMP] = ACTIONS(3917), + [anon_sym_SEMI] = ACTIONS(3919), + [anon_sym___extension__] = ACTIONS(3917), + [anon_sym_typedef] = ACTIONS(3917), + [anon_sym_virtual] = ACTIONS(3917), + [anon_sym_extern] = ACTIONS(3917), + [anon_sym___attribute__] = ACTIONS(3917), + [anon_sym___attribute] = ACTIONS(3917), + [anon_sym_using] = ACTIONS(3917), + [anon_sym_COLON_COLON] = ACTIONS(3919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), + [anon_sym___declspec] = ACTIONS(3917), + [anon_sym___based] = ACTIONS(3917), + [anon_sym_signed] = ACTIONS(3917), + [anon_sym_unsigned] = ACTIONS(3917), + [anon_sym_long] = ACTIONS(3917), + [anon_sym_short] = ACTIONS(3917), + [anon_sym_LBRACK] = ACTIONS(3917), + [anon_sym_static] = ACTIONS(3917), + [anon_sym_register] = ACTIONS(3917), + [anon_sym_inline] = ACTIONS(3917), + [anon_sym___inline] = ACTIONS(3917), + [anon_sym___inline__] = ACTIONS(3917), + [anon_sym___forceinline] = ACTIONS(3917), + [anon_sym_thread_local] = ACTIONS(3917), + [anon_sym___thread] = ACTIONS(3917), + [anon_sym_const] = ACTIONS(3917), + [anon_sym_constexpr] = ACTIONS(3917), + [anon_sym_volatile] = ACTIONS(3917), + [anon_sym_restrict] = ACTIONS(3917), + [anon_sym___restrict__] = ACTIONS(3917), + [anon_sym__Atomic] = ACTIONS(3917), + [anon_sym__Noreturn] = ACTIONS(3917), + [anon_sym_noreturn] = ACTIONS(3917), + [anon_sym__Nonnull] = ACTIONS(3917), + [anon_sym_mutable] = ACTIONS(3917), + [anon_sym_constinit] = ACTIONS(3917), + [anon_sym_consteval] = ACTIONS(3917), + [anon_sym_alignas] = ACTIONS(3917), + [anon_sym__Alignas] = ACTIONS(3917), + [sym_primitive_type] = ACTIONS(3917), + [anon_sym_enum] = ACTIONS(3917), + [anon_sym_class] = ACTIONS(3917), + [anon_sym_struct] = ACTIONS(3917), + [anon_sym_union] = ACTIONS(3917), + [anon_sym_typename] = ACTIONS(3917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3917), + [anon_sym_decltype] = ACTIONS(3917), + [anon_sym_explicit] = ACTIONS(3917), + [anon_sym_private] = ACTIONS(3917), + [anon_sym_template] = ACTIONS(3917), + [anon_sym_operator] = ACTIONS(3917), + [anon_sym_friend] = ACTIONS(3917), + [anon_sym_public] = ACTIONS(3917), + [anon_sym_protected] = ACTIONS(3917), + [anon_sym_static_assert] = ACTIONS(3917), + [anon_sym_LBRACK_COLON] = ACTIONS(3919), }, - [STATE(2779)] = { - [sym_ms_based_modifier] = STATE(11008), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(6427), - [sym__declarator] = STATE(8808), - [sym__abstract_declarator] = STATE(9080), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(3789), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5340), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7993), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(3789), - [aux_sym_pointer_declarator_repeat1] = STATE(6427), - [sym_identifier] = ACTIONS(8228), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8669), - [anon_sym_AMP_AMP] = ACTIONS(8671), - [anon_sym_AMP] = ACTIONS(8673), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6821), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_COLON_COLON] = ACTIONS(8675), + [STATE(2803)] = { + [sym_ms_based_modifier] = STATE(11002), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(6415), + [sym__declarator] = STATE(8775), + [sym__abstract_declarator] = STATE(9007), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(3801), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5445), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7984), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(3801), + [aux_sym_pointer_declarator_repeat1] = STATE(6415), + [sym_identifier] = ACTIONS(8274), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_AMP_AMP] = ACTIONS(8770), + [anon_sym_AMP] = ACTIONS(8772), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_COLON_COLON] = ACTIONS(8774), [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2780)] = { - [sym_identifier] = ACTIONS(8687), - [aux_sym_preproc_def_token1] = ACTIONS(8687), - [aux_sym_preproc_if_token1] = ACTIONS(8687), - [aux_sym_preproc_if_token2] = ACTIONS(8687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8687), - [aux_sym_preproc_else_token1] = ACTIONS(8687), - [aux_sym_preproc_elif_token1] = ACTIONS(8687), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8687), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8687), - [sym_preproc_directive] = ACTIONS(8687), - [anon_sym_LPAREN2] = ACTIONS(8689), - [anon_sym_TILDE] = ACTIONS(8689), - [anon_sym_STAR] = ACTIONS(8689), - [anon_sym_AMP_AMP] = ACTIONS(8689), - [anon_sym_AMP] = ACTIONS(8687), - [anon_sym_SEMI] = ACTIONS(8689), - [anon_sym___extension__] = ACTIONS(8687), - [anon_sym_typedef] = ACTIONS(8687), - [anon_sym_virtual] = ACTIONS(8687), - [anon_sym_extern] = ACTIONS(8687), - [anon_sym___attribute__] = ACTIONS(8687), - [anon_sym___attribute] = ACTIONS(8687), - [anon_sym_using] = ACTIONS(8687), - [anon_sym_COLON_COLON] = ACTIONS(8689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8689), - [anon_sym___declspec] = ACTIONS(8687), - [anon_sym___based] = ACTIONS(8687), - [anon_sym_signed] = ACTIONS(8687), - [anon_sym_unsigned] = ACTIONS(8687), - [anon_sym_long] = ACTIONS(8687), - [anon_sym_short] = ACTIONS(8687), - [anon_sym_LBRACK] = ACTIONS(8687), - [anon_sym_static] = ACTIONS(8687), - [anon_sym_register] = ACTIONS(8687), - [anon_sym_inline] = ACTIONS(8687), - [anon_sym___inline] = ACTIONS(8687), - [anon_sym___inline__] = ACTIONS(8687), - [anon_sym___forceinline] = ACTIONS(8687), - [anon_sym_thread_local] = ACTIONS(8687), - [anon_sym___thread] = ACTIONS(8687), - [anon_sym_const] = ACTIONS(8687), - [anon_sym_constexpr] = ACTIONS(8687), - [anon_sym_volatile] = ACTIONS(8687), - [anon_sym_restrict] = ACTIONS(8687), - [anon_sym___restrict__] = ACTIONS(8687), - [anon_sym__Atomic] = ACTIONS(8687), - [anon_sym__Noreturn] = ACTIONS(8687), - [anon_sym_noreturn] = ACTIONS(8687), - [anon_sym__Nonnull] = ACTIONS(8687), - [anon_sym_mutable] = ACTIONS(8687), - [anon_sym_constinit] = ACTIONS(8687), - [anon_sym_consteval] = ACTIONS(8687), - [anon_sym_alignas] = ACTIONS(8687), - [anon_sym__Alignas] = ACTIONS(8687), - [sym_primitive_type] = ACTIONS(8687), - [anon_sym_enum] = ACTIONS(8687), - [anon_sym_class] = ACTIONS(8687), - [anon_sym_struct] = ACTIONS(8687), - [anon_sym_union] = ACTIONS(8687), - [anon_sym_typename] = ACTIONS(8687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8687), - [anon_sym_decltype] = ACTIONS(8687), - [anon_sym_explicit] = ACTIONS(8687), - [anon_sym_private] = ACTIONS(8687), - [anon_sym_template] = ACTIONS(8687), - [anon_sym_operator] = ACTIONS(8687), - [anon_sym_friend] = ACTIONS(8687), - [anon_sym_public] = ACTIONS(8687), - [anon_sym_protected] = ACTIONS(8687), - [anon_sym_static_assert] = ACTIONS(8687), - [anon_sym_LBRACK_COLON] = ACTIONS(8689), - }, - [STATE(2781)] = { - [sym_decltype_auto] = STATE(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8631), - [anon_sym_decltype] = ACTIONS(7038), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_GT2] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - }, - [STATE(2782)] = { - [sym_template_argument_list] = STATE(2648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), - [anon_sym_COMMA] = ACTIONS(5657), - [anon_sym_RPAREN] = ACTIONS(5657), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_DASH] = ACTIONS(7371), - [anon_sym_PLUS] = ACTIONS(7371), - [anon_sym_STAR] = ACTIONS(7371), - [anon_sym_SLASH] = ACTIONS(7371), - [anon_sym_PERCENT] = ACTIONS(7371), - [anon_sym_PIPE_PIPE] = ACTIONS(5657), - [anon_sym_AMP_AMP] = ACTIONS(5657), - [anon_sym_PIPE] = ACTIONS(7371), - [anon_sym_CARET] = ACTIONS(7371), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_EQ_EQ] = ACTIONS(5657), - [anon_sym_BANG_EQ] = ACTIONS(5657), - [anon_sym_GT] = ACTIONS(7371), - [anon_sym_GT_EQ] = ACTIONS(5657), - [anon_sym_LT_EQ] = ACTIONS(7371), - [anon_sym_LT] = ACTIONS(8198), - [anon_sym_LT_LT] = ACTIONS(7371), - [anon_sym_GT_GT] = ACTIONS(7371), - [anon_sym___extension__] = ACTIONS(5657), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym___attribute] = ACTIONS(7371), - [anon_sym_COLON] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5657), - [anon_sym_EQ] = ACTIONS(7371), - [anon_sym_const] = ACTIONS(7371), - [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), - [anon_sym_QMARK] = ACTIONS(5657), - [anon_sym_STAR_EQ] = ACTIONS(5657), - [anon_sym_SLASH_EQ] = ACTIONS(5657), - [anon_sym_PERCENT_EQ] = ACTIONS(5657), - [anon_sym_PLUS_EQ] = ACTIONS(5657), - [anon_sym_DASH_EQ] = ACTIONS(5657), - [anon_sym_LT_LT_EQ] = ACTIONS(5657), - [anon_sym_GT_GT_EQ] = ACTIONS(5657), - [anon_sym_AMP_EQ] = ACTIONS(5657), - [anon_sym_CARET_EQ] = ACTIONS(5657), - [anon_sym_PIPE_EQ] = ACTIONS(5657), - [anon_sym_LT_EQ_GT] = ACTIONS(5657), - [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(5657), - [anon_sym_PLUS_PLUS] = ACTIONS(5657), - [anon_sym_DOT] = ACTIONS(7371), - [anon_sym_DOT_STAR] = ACTIONS(5657), - [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5657), - [anon_sym_override] = ACTIONS(5657), - [anon_sym_requires] = ACTIONS(5657), - [anon_sym_DASH_GT_STAR] = ACTIONS(5657), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, - [STATE(2783)] = { - [sym_identifier] = ACTIONS(8691), - [aux_sym_preproc_def_token1] = ACTIONS(8691), - [aux_sym_preproc_if_token1] = ACTIONS(8691), - [aux_sym_preproc_if_token2] = ACTIONS(8691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8691), - [aux_sym_preproc_else_token1] = ACTIONS(8691), - [aux_sym_preproc_elif_token1] = ACTIONS(8691), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8691), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8691), - [sym_preproc_directive] = ACTIONS(8691), - [anon_sym_LPAREN2] = ACTIONS(8693), - [anon_sym_TILDE] = ACTIONS(8693), - [anon_sym_STAR] = ACTIONS(8693), - [anon_sym_AMP_AMP] = ACTIONS(8693), - [anon_sym_AMP] = ACTIONS(8691), - [anon_sym_SEMI] = ACTIONS(8693), - [anon_sym___extension__] = ACTIONS(8691), - [anon_sym_typedef] = ACTIONS(8691), - [anon_sym_virtual] = ACTIONS(8691), - [anon_sym_extern] = ACTIONS(8691), - [anon_sym___attribute__] = ACTIONS(8691), - [anon_sym___attribute] = ACTIONS(8691), - [anon_sym_using] = ACTIONS(8691), - [anon_sym_COLON_COLON] = ACTIONS(8693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8693), - [anon_sym___declspec] = ACTIONS(8691), - [anon_sym___based] = ACTIONS(8691), - [anon_sym_signed] = ACTIONS(8691), - [anon_sym_unsigned] = ACTIONS(8691), - [anon_sym_long] = ACTIONS(8691), - [anon_sym_short] = ACTIONS(8691), - [anon_sym_LBRACK] = ACTIONS(8691), - [anon_sym_static] = ACTIONS(8691), - [anon_sym_register] = ACTIONS(8691), - [anon_sym_inline] = ACTIONS(8691), - [anon_sym___inline] = ACTIONS(8691), - [anon_sym___inline__] = ACTIONS(8691), - [anon_sym___forceinline] = ACTIONS(8691), - [anon_sym_thread_local] = ACTIONS(8691), - [anon_sym___thread] = ACTIONS(8691), - [anon_sym_const] = ACTIONS(8691), - [anon_sym_constexpr] = ACTIONS(8691), - [anon_sym_volatile] = ACTIONS(8691), - [anon_sym_restrict] = ACTIONS(8691), - [anon_sym___restrict__] = ACTIONS(8691), - [anon_sym__Atomic] = ACTIONS(8691), - [anon_sym__Noreturn] = ACTIONS(8691), - [anon_sym_noreturn] = ACTIONS(8691), - [anon_sym__Nonnull] = ACTIONS(8691), - [anon_sym_mutable] = ACTIONS(8691), - [anon_sym_constinit] = ACTIONS(8691), - [anon_sym_consteval] = ACTIONS(8691), - [anon_sym_alignas] = ACTIONS(8691), - [anon_sym__Alignas] = ACTIONS(8691), - [sym_primitive_type] = ACTIONS(8691), - [anon_sym_enum] = ACTIONS(8691), - [anon_sym_class] = ACTIONS(8691), - [anon_sym_struct] = ACTIONS(8691), - [anon_sym_union] = ACTIONS(8691), - [anon_sym_typename] = ACTIONS(8691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8691), - [anon_sym_decltype] = ACTIONS(8691), - [anon_sym_explicit] = ACTIONS(8691), - [anon_sym_private] = ACTIONS(8691), - [anon_sym_template] = ACTIONS(8691), - [anon_sym_operator] = ACTIONS(8691), - [anon_sym_friend] = ACTIONS(8691), - [anon_sym_public] = ACTIONS(8691), - [anon_sym_protected] = ACTIONS(8691), - [anon_sym_static_assert] = ACTIONS(8691), - [anon_sym_LBRACK_COLON] = ACTIONS(8693), - }, - [STATE(2784)] = { - [sym_identifier] = ACTIONS(7287), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), - [aux_sym_preproc_if_token2] = ACTIONS(7289), - [aux_sym_preproc_else_token1] = ACTIONS(7289), - [aux_sym_preproc_elif_token1] = ACTIONS(7287), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7289), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7289), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7289), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7289), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7289), - [anon_sym_GT_GT] = ACTIONS(7289), - [anon_sym_SEMI] = ACTIONS(7289), - [anon_sym___extension__] = ACTIONS(7287), - [anon_sym___attribute__] = ACTIONS(7287), - [anon_sym___attribute] = ACTIONS(7287), - [anon_sym_COLON] = ACTIONS(7287), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7289), - [sym_ms_restrict_modifier] = ACTIONS(7287), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7287), - [sym_ms_signed_ptr_modifier] = ACTIONS(7287), - [anon_sym__unaligned] = ACTIONS(7287), - [anon_sym___unaligned] = ACTIONS(7287), - [anon_sym_RBRACE] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7287), - [anon_sym_volatile] = ACTIONS(7287), - [anon_sym_restrict] = ACTIONS(7287), - [anon_sym___restrict__] = ACTIONS(7287), - [anon_sym__Atomic] = ACTIONS(7287), - [anon_sym__Noreturn] = ACTIONS(7287), - [anon_sym_noreturn] = ACTIONS(7287), - [anon_sym__Nonnull] = ACTIONS(7287), - [anon_sym_mutable] = ACTIONS(7287), - [anon_sym_constinit] = ACTIONS(7287), - [anon_sym_consteval] = ACTIONS(7287), - [anon_sym_alignas] = ACTIONS(7287), - [anon_sym__Alignas] = ACTIONS(7287), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7287), - [anon_sym_and] = ACTIONS(7287), - [anon_sym_bitor] = ACTIONS(7287), - [anon_sym_xor] = ACTIONS(7287), - [anon_sym_bitand] = ACTIONS(7287), - [anon_sym_not_eq] = ACTIONS(7287), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7289), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7287), - [anon_sym_override] = ACTIONS(7287), - [anon_sym_requires] = ACTIONS(7287), - [anon_sym_COLON_RBRACK] = ACTIONS(7289), - }, - [STATE(2785)] = { - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token2] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [aux_sym_preproc_else_token1] = ACTIONS(4152), - [aux_sym_preproc_elif_token1] = ACTIONS(4152), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_private] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_friend] = ACTIONS(4152), - [anon_sym_public] = ACTIONS(4152), - [anon_sym_protected] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), - }, - [STATE(2786)] = { - [sym_identifier] = ACTIONS(7199), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_RPAREN] = ACTIONS(7201), - [aux_sym_preproc_if_token2] = ACTIONS(7201), - [aux_sym_preproc_else_token1] = ACTIONS(7201), - [aux_sym_preproc_elif_token1] = ACTIONS(7199), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7201), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7201), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7201), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7201), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7201), - [anon_sym_GT_GT] = ACTIONS(7201), - [anon_sym_SEMI] = ACTIONS(7201), - [anon_sym___extension__] = ACTIONS(7199), - [anon_sym___attribute__] = ACTIONS(7199), - [anon_sym___attribute] = ACTIONS(7199), - [anon_sym_COLON] = ACTIONS(7199), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7201), - [sym_ms_restrict_modifier] = ACTIONS(7199), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7199), - [sym_ms_signed_ptr_modifier] = ACTIONS(7199), - [anon_sym__unaligned] = ACTIONS(7199), - [anon_sym___unaligned] = ACTIONS(7199), - [anon_sym_RBRACE] = ACTIONS(7201), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7199), - [anon_sym_volatile] = ACTIONS(7199), - [anon_sym_restrict] = ACTIONS(7199), - [anon_sym___restrict__] = ACTIONS(7199), - [anon_sym__Atomic] = ACTIONS(7199), - [anon_sym__Noreturn] = ACTIONS(7199), - [anon_sym_noreturn] = ACTIONS(7199), - [anon_sym__Nonnull] = ACTIONS(7199), - [anon_sym_mutable] = ACTIONS(7199), - [anon_sym_constinit] = ACTIONS(7199), - [anon_sym_consteval] = ACTIONS(7199), - [anon_sym_alignas] = ACTIONS(7199), - [anon_sym__Alignas] = ACTIONS(7199), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7199), - [anon_sym_and] = ACTIONS(7199), - [anon_sym_bitor] = ACTIONS(7199), - [anon_sym_xor] = ACTIONS(7199), - [anon_sym_bitand] = ACTIONS(7199), - [anon_sym_not_eq] = ACTIONS(7199), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7201), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7199), - [anon_sym_override] = ACTIONS(7199), - [anon_sym_requires] = ACTIONS(7199), - [anon_sym_COLON_RBRACK] = ACTIONS(7201), + [STATE(2804)] = { + [sym_identifier] = ACTIONS(4301), + [aux_sym_preproc_def_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token2] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4301), + [aux_sym_preproc_else_token1] = ACTIONS(4301), + [aux_sym_preproc_elif_token1] = ACTIONS(4301), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4301), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4301), + [sym_preproc_directive] = ACTIONS(4301), + [anon_sym_LPAREN2] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4301), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym___extension__] = ACTIONS(4301), + [anon_sym_typedef] = ACTIONS(4301), + [anon_sym_virtual] = ACTIONS(4301), + [anon_sym_extern] = ACTIONS(4301), + [anon_sym___attribute__] = ACTIONS(4301), + [anon_sym___attribute] = ACTIONS(4301), + [anon_sym_using] = ACTIONS(4301), + [anon_sym_COLON_COLON] = ACTIONS(4303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4303), + [anon_sym___declspec] = ACTIONS(4301), + [anon_sym___based] = ACTIONS(4301), + [anon_sym_signed] = ACTIONS(4301), + [anon_sym_unsigned] = ACTIONS(4301), + [anon_sym_long] = ACTIONS(4301), + [anon_sym_short] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_static] = ACTIONS(4301), + [anon_sym_register] = ACTIONS(4301), + [anon_sym_inline] = ACTIONS(4301), + [anon_sym___inline] = ACTIONS(4301), + [anon_sym___inline__] = ACTIONS(4301), + [anon_sym___forceinline] = ACTIONS(4301), + [anon_sym_thread_local] = ACTIONS(4301), + [anon_sym___thread] = ACTIONS(4301), + [anon_sym_const] = ACTIONS(4301), + [anon_sym_constexpr] = ACTIONS(4301), + [anon_sym_volatile] = ACTIONS(4301), + [anon_sym_restrict] = ACTIONS(4301), + [anon_sym___restrict__] = ACTIONS(4301), + [anon_sym__Atomic] = ACTIONS(4301), + [anon_sym__Noreturn] = ACTIONS(4301), + [anon_sym_noreturn] = ACTIONS(4301), + [anon_sym__Nonnull] = ACTIONS(4301), + [anon_sym_mutable] = ACTIONS(4301), + [anon_sym_constinit] = ACTIONS(4301), + [anon_sym_consteval] = ACTIONS(4301), + [anon_sym_alignas] = ACTIONS(4301), + [anon_sym__Alignas] = ACTIONS(4301), + [sym_primitive_type] = ACTIONS(4301), + [anon_sym_enum] = ACTIONS(4301), + [anon_sym_class] = ACTIONS(4301), + [anon_sym_struct] = ACTIONS(4301), + [anon_sym_union] = ACTIONS(4301), + [anon_sym_typename] = ACTIONS(4301), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4301), + [anon_sym_decltype] = ACTIONS(4301), + [anon_sym_explicit] = ACTIONS(4301), + [anon_sym_private] = ACTIONS(4301), + [anon_sym_template] = ACTIONS(4301), + [anon_sym_operator] = ACTIONS(4301), + [anon_sym_friend] = ACTIONS(4301), + [anon_sym_public] = ACTIONS(4301), + [anon_sym_protected] = ACTIONS(4301), + [anon_sym_static_assert] = ACTIONS(4301), + [anon_sym_LBRACK_COLON] = ACTIONS(4303), }, - [STATE(2787)] = { - [sym_identifier] = ACTIONS(6612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [anon_sym_RPAREN] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6614), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6614), - [anon_sym_GT_GT] = ACTIONS(6614), - [anon_sym_SEMI] = ACTIONS(6614), - [anon_sym___extension__] = ACTIONS(6612), - [anon_sym___attribute__] = ACTIONS(6612), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6614), - [anon_sym___based] = ACTIONS(6612), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_RBRACE] = ACTIONS(6614), - [anon_sym_signed] = ACTIONS(6612), - [anon_sym_unsigned] = ACTIONS(6612), - [anon_sym_long] = ACTIONS(6612), - [anon_sym_short] = ACTIONS(6612), - [anon_sym_LBRACK] = ACTIONS(6614), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6612), - [anon_sym_volatile] = ACTIONS(6612), - [anon_sym_restrict] = ACTIONS(6612), - [anon_sym___restrict__] = ACTIONS(6612), - [anon_sym__Atomic] = ACTIONS(6612), - [anon_sym__Noreturn] = ACTIONS(6612), - [anon_sym_noreturn] = ACTIONS(6612), - [anon_sym__Nonnull] = ACTIONS(6612), - [anon_sym_mutable] = ACTIONS(6612), - [anon_sym_constinit] = ACTIONS(6612), - [anon_sym_consteval] = ACTIONS(6612), - [anon_sym_alignas] = ACTIONS(6612), - [anon_sym__Alignas] = ACTIONS(6612), - [sym_primitive_type] = ACTIONS(6612), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6612), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6612), - [anon_sym_not_eq] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6614), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6612), - [anon_sym_decltype] = ACTIONS(6612), - [anon_sym_final] = ACTIONS(6612), - [anon_sym_override] = ACTIONS(6612), - [anon_sym_requires] = ACTIONS(6612), - [anon_sym_COLON_RBRACK] = ACTIONS(6614), + [STATE(2805)] = { + [sym_identifier] = ACTIONS(8776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8778), + [anon_sym_COMMA] = ACTIONS(8778), + [anon_sym_RPAREN] = ACTIONS(8778), + [aux_sym_preproc_if_token2] = ACTIONS(8778), + [aux_sym_preproc_else_token1] = ACTIONS(8778), + [aux_sym_preproc_elif_token1] = ACTIONS(8776), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8778), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8778), + [anon_sym_LPAREN2] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8776), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_SLASH] = ACTIONS(8776), + [anon_sym_PERCENT] = ACTIONS(8776), + [anon_sym_PIPE_PIPE] = ACTIONS(8778), + [anon_sym_AMP_AMP] = ACTIONS(8778), + [anon_sym_PIPE] = ACTIONS(8776), + [anon_sym_CARET] = ACTIONS(8776), + [anon_sym_AMP] = ACTIONS(8776), + [anon_sym_EQ_EQ] = ACTIONS(8778), + [anon_sym_BANG_EQ] = ACTIONS(8778), + [anon_sym_GT] = ACTIONS(8776), + [anon_sym_GT_EQ] = ACTIONS(8778), + [anon_sym_LT_EQ] = ACTIONS(8776), + [anon_sym_LT] = ACTIONS(8776), + [anon_sym_LT_LT] = ACTIONS(8776), + [anon_sym_GT_GT] = ACTIONS(8776), + [anon_sym_SEMI] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8776), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8778), + [anon_sym_RBRACE] = ACTIONS(8778), + [anon_sym_LBRACK] = ACTIONS(8778), + [anon_sym_EQ] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [anon_sym_STAR_EQ] = ACTIONS(8778), + [anon_sym_SLASH_EQ] = ACTIONS(8778), + [anon_sym_PERCENT_EQ] = ACTIONS(8778), + [anon_sym_PLUS_EQ] = ACTIONS(8778), + [anon_sym_DASH_EQ] = ACTIONS(8778), + [anon_sym_LT_LT_EQ] = ACTIONS(8778), + [anon_sym_GT_GT_EQ] = ACTIONS(8778), + [anon_sym_AMP_EQ] = ACTIONS(8778), + [anon_sym_CARET_EQ] = ACTIONS(8778), + [anon_sym_PIPE_EQ] = ACTIONS(8778), + [anon_sym_and_eq] = ACTIONS(8776), + [anon_sym_or_eq] = ACTIONS(8776), + [anon_sym_xor_eq] = ACTIONS(8776), + [anon_sym_LT_EQ_GT] = ACTIONS(8778), + [anon_sym_or] = ACTIONS(8776), + [anon_sym_and] = ACTIONS(8776), + [anon_sym_bitor] = ACTIONS(8776), + [anon_sym_xor] = ACTIONS(8776), + [anon_sym_bitand] = ACTIONS(8776), + [anon_sym_not_eq] = ACTIONS(8776), + [anon_sym_DASH_DASH] = ACTIONS(8778), + [anon_sym_PLUS_PLUS] = ACTIONS(8778), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_DOT_STAR] = ACTIONS(8778), + [anon_sym_DASH_GT] = ACTIONS(8778), + [anon_sym_L_DQUOTE] = ACTIONS(8778), + [anon_sym_u_DQUOTE] = ACTIONS(8778), + [anon_sym_U_DQUOTE] = ACTIONS(8778), + [anon_sym_u8_DQUOTE] = ACTIONS(8778), + [anon_sym_DQUOTE] = ACTIONS(8778), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8778), + [anon_sym_LR_DQUOTE] = ACTIONS(8778), + [anon_sym_uR_DQUOTE] = ACTIONS(8778), + [anon_sym_UR_DQUOTE] = ACTIONS(8778), + [anon_sym_u8R_DQUOTE] = ACTIONS(8778), + [anon_sym_COLON_RBRACK] = ACTIONS(8778), + [sym_literal_suffix] = ACTIONS(8776), }, - [STATE(2788)] = { - [sym_decltype_auto] = STATE(3203), - [sym_template_argument_list] = STATE(2938), - [aux_sym_sized_type_specifier_repeat1] = STATE(3552), - [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(5636), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5643), - [anon_sym_SLASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5643), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5636), - [anon_sym_CARET] = ACTIONS(5643), - [anon_sym_AMP] = ACTIONS(5636), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5636), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5636), - [anon_sym_LT] = ACTIONS(8695), - [anon_sym_LT_LT] = ACTIONS(5643), - [anon_sym_GT_GT] = ACTIONS(5643), - [anon_sym_SEMI] = ACTIONS(5643), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym___attribute__] = ACTIONS(5643), - [anon_sym___attribute] = ACTIONS(5636), - [anon_sym_COLON] = ACTIONS(5636), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5643), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_RBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(6867), - [anon_sym_unsigned] = ACTIONS(6867), - [anon_sym_long] = ACTIONS(6867), - [anon_sym_short] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5643), - [anon_sym_and] = ACTIONS(5643), - [anon_sym_bitor] = ACTIONS(5643), - [anon_sym_xor] = ACTIONS(5643), - [anon_sym_bitand] = ACTIONS(5643), - [anon_sym_not_eq] = ACTIONS(5643), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6869), - [anon_sym_decltype] = ACTIONS(6871), - [anon_sym_final] = ACTIONS(5643), - [anon_sym_override] = ACTIONS(5643), - [anon_sym_requires] = ACTIONS(5643), - [anon_sym_COLON_RBRACK] = ACTIONS(5643), + [STATE(2806)] = { + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4271), + [aux_sym_preproc_elif_token1] = ACTIONS(4271), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_friend] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), }, - [STATE(2789)] = { + [STATE(2807)] = { [sym_identifier] = ACTIONS(3921), [aux_sym_preproc_def_token1] = ACTIONS(3921), [aux_sym_preproc_if_token1] = ACTIONS(3921), @@ -378115,6682 +379318,2182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(3921), [anon_sym_LBRACK_COLON] = ACTIONS(3923), }, - [STATE(2790)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [aux_sym_preproc_else_token1] = ACTIONS(4156), - [aux_sym_preproc_elif_token1] = ACTIONS(4156), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_private] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_friend] = ACTIONS(4156), - [anon_sym_public] = ACTIONS(4156), - [anon_sym_protected] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - }, - [STATE(2791)] = { - [sym_identifier] = ACTIONS(3935), - [aux_sym_preproc_def_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token2] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), - [aux_sym_preproc_else_token1] = ACTIONS(3935), - [aux_sym_preproc_elif_token1] = ACTIONS(3935), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3935), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3935), - [sym_preproc_directive] = ACTIONS(3935), - [anon_sym_LPAREN2] = ACTIONS(3937), - [anon_sym_TILDE] = ACTIONS(3937), - [anon_sym_STAR] = ACTIONS(3937), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_SEMI] = ACTIONS(3937), - [anon_sym___extension__] = ACTIONS(3935), - [anon_sym_typedef] = ACTIONS(3935), - [anon_sym_virtual] = ACTIONS(3935), - [anon_sym_extern] = ACTIONS(3935), - [anon_sym___attribute__] = ACTIONS(3935), - [anon_sym___attribute] = ACTIONS(3935), - [anon_sym_using] = ACTIONS(3935), - [anon_sym_COLON_COLON] = ACTIONS(3937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), - [anon_sym___declspec] = ACTIONS(3935), - [anon_sym___based] = ACTIONS(3935), - [anon_sym_signed] = ACTIONS(3935), - [anon_sym_unsigned] = ACTIONS(3935), - [anon_sym_long] = ACTIONS(3935), - [anon_sym_short] = ACTIONS(3935), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_static] = ACTIONS(3935), - [anon_sym_register] = ACTIONS(3935), - [anon_sym_inline] = ACTIONS(3935), - [anon_sym___inline] = ACTIONS(3935), - [anon_sym___inline__] = ACTIONS(3935), - [anon_sym___forceinline] = ACTIONS(3935), - [anon_sym_thread_local] = ACTIONS(3935), - [anon_sym___thread] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_constexpr] = ACTIONS(3935), - [anon_sym_volatile] = ACTIONS(3935), - [anon_sym_restrict] = ACTIONS(3935), - [anon_sym___restrict__] = ACTIONS(3935), - [anon_sym__Atomic] = ACTIONS(3935), - [anon_sym__Noreturn] = ACTIONS(3935), - [anon_sym_noreturn] = ACTIONS(3935), - [anon_sym__Nonnull] = ACTIONS(3935), - [anon_sym_mutable] = ACTIONS(3935), - [anon_sym_constinit] = ACTIONS(3935), - [anon_sym_consteval] = ACTIONS(3935), - [anon_sym_alignas] = ACTIONS(3935), - [anon_sym__Alignas] = ACTIONS(3935), - [sym_primitive_type] = ACTIONS(3935), - [anon_sym_enum] = ACTIONS(3935), - [anon_sym_class] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3935), - [anon_sym_typename] = ACTIONS(3935), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3935), - [anon_sym_decltype] = ACTIONS(3935), - [anon_sym_explicit] = ACTIONS(3935), - [anon_sym_private] = ACTIONS(3935), - [anon_sym_template] = ACTIONS(3935), - [anon_sym_operator] = ACTIONS(3935), - [anon_sym_friend] = ACTIONS(3935), - [anon_sym_public] = ACTIONS(3935), - [anon_sym_protected] = ACTIONS(3935), - [anon_sym_static_assert] = ACTIONS(3935), - [anon_sym_LBRACK_COLON] = ACTIONS(3937), - }, - [STATE(2792)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [aux_sym_preproc_else_token1] = ACTIONS(4156), - [aux_sym_preproc_elif_token1] = ACTIONS(4156), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_private] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_friend] = ACTIONS(4156), - [anon_sym_public] = ACTIONS(4156), - [anon_sym_protected] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [STATE(2808)] = { + [sym_identifier] = ACTIONS(3778), + [aux_sym_preproc_def_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token2] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3778), + [aux_sym_preproc_else_token1] = ACTIONS(3778), + [aux_sym_preproc_elif_token1] = ACTIONS(3778), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3778), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3778), + [sym_preproc_directive] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_TILDE] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_AMP_AMP] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym___extension__] = ACTIONS(3778), + [anon_sym_typedef] = ACTIONS(3778), + [anon_sym_virtual] = ACTIONS(3778), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym___attribute__] = ACTIONS(3778), + [anon_sym___attribute] = ACTIONS(3778), + [anon_sym_using] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3780), + [anon_sym___declspec] = ACTIONS(3778), + [anon_sym___based] = ACTIONS(3778), + [anon_sym_signed] = ACTIONS(3778), + [anon_sym_unsigned] = ACTIONS(3778), + [anon_sym_long] = ACTIONS(3778), + [anon_sym_short] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym___inline] = ACTIONS(3778), + [anon_sym___inline__] = ACTIONS(3778), + [anon_sym___forceinline] = ACTIONS(3778), + [anon_sym_thread_local] = ACTIONS(3778), + [anon_sym___thread] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym___restrict__] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym__Noreturn] = ACTIONS(3778), + [anon_sym_noreturn] = ACTIONS(3778), + [anon_sym__Nonnull] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_constinit] = ACTIONS(3778), + [anon_sym_consteval] = ACTIONS(3778), + [anon_sym_alignas] = ACTIONS(3778), + [anon_sym__Alignas] = ACTIONS(3778), + [sym_primitive_type] = ACTIONS(3778), + [anon_sym_enum] = ACTIONS(3778), + [anon_sym_class] = ACTIONS(3778), + [anon_sym_struct] = ACTIONS(3778), + [anon_sym_union] = ACTIONS(3778), + [anon_sym_typename] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3778), + [anon_sym_decltype] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_private] = ACTIONS(3778), + [anon_sym_template] = ACTIONS(3778), + [anon_sym_operator] = ACTIONS(3778), + [anon_sym_friend] = ACTIONS(3778), + [anon_sym_public] = ACTIONS(3778), + [anon_sym_protected] = ACTIONS(3778), + [anon_sym_static_assert] = ACTIONS(3778), + [anon_sym_LBRACK_COLON] = ACTIONS(3780), }, - [STATE(2793)] = { - [sym_identifier] = ACTIONS(4180), - [aux_sym_preproc_def_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token2] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), - [aux_sym_preproc_else_token1] = ACTIONS(4180), - [aux_sym_preproc_elif_token1] = ACTIONS(4180), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4180), - [sym_preproc_directive] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(4182), - [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_STAR] = ACTIONS(4182), - [anon_sym_AMP_AMP] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym___extension__] = ACTIONS(4180), - [anon_sym_typedef] = ACTIONS(4180), - [anon_sym_virtual] = ACTIONS(4180), - [anon_sym_extern] = ACTIONS(4180), - [anon_sym___attribute__] = ACTIONS(4180), - [anon_sym___attribute] = ACTIONS(4180), - [anon_sym_using] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), - [anon_sym___declspec] = ACTIONS(4180), - [anon_sym___based] = ACTIONS(4180), - [anon_sym_signed] = ACTIONS(4180), - [anon_sym_unsigned] = ACTIONS(4180), - [anon_sym_long] = ACTIONS(4180), - [anon_sym_short] = ACTIONS(4180), - [anon_sym_LBRACK] = ACTIONS(4180), - [anon_sym_static] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4180), - [anon_sym_inline] = ACTIONS(4180), - [anon_sym___inline] = ACTIONS(4180), - [anon_sym___inline__] = ACTIONS(4180), - [anon_sym___forceinline] = ACTIONS(4180), - [anon_sym_thread_local] = ACTIONS(4180), - [anon_sym___thread] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_constexpr] = ACTIONS(4180), - [anon_sym_volatile] = ACTIONS(4180), - [anon_sym_restrict] = ACTIONS(4180), - [anon_sym___restrict__] = ACTIONS(4180), - [anon_sym__Atomic] = ACTIONS(4180), - [anon_sym__Noreturn] = ACTIONS(4180), - [anon_sym_noreturn] = ACTIONS(4180), - [anon_sym__Nonnull] = ACTIONS(4180), - [anon_sym_mutable] = ACTIONS(4180), - [anon_sym_constinit] = ACTIONS(4180), - [anon_sym_consteval] = ACTIONS(4180), - [anon_sym_alignas] = ACTIONS(4180), - [anon_sym__Alignas] = ACTIONS(4180), - [sym_primitive_type] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_class] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_typename] = ACTIONS(4180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4180), - [anon_sym_decltype] = ACTIONS(4180), - [anon_sym_explicit] = ACTIONS(4180), - [anon_sym_private] = ACTIONS(4180), - [anon_sym_template] = ACTIONS(4180), - [anon_sym_operator] = ACTIONS(4180), - [anon_sym_friend] = ACTIONS(4180), - [anon_sym_public] = ACTIONS(4180), - [anon_sym_protected] = ACTIONS(4180), - [anon_sym_static_assert] = ACTIONS(4180), - [anon_sym_LBRACK_COLON] = ACTIONS(4182), + [STATE(2809)] = { + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [aux_sym_preproc_else_token1] = ACTIONS(4271), + [aux_sym_preproc_elif_token1] = ACTIONS(4271), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_friend] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), }, - [STATE(2794)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [aux_sym_preproc_else_token1] = ACTIONS(4160), - [aux_sym_preproc_elif_token1] = ACTIONS(4160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_private] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_friend] = ACTIONS(4160), - [anon_sym_public] = ACTIONS(4160), - [anon_sym_protected] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [STATE(2810)] = { + [sym_identifier] = ACTIONS(4044), + [aux_sym_preproc_def_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token2] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), + [aux_sym_preproc_else_token1] = ACTIONS(4044), + [aux_sym_preproc_elif_token1] = ACTIONS(4044), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4044), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4044), + [sym_preproc_directive] = ACTIONS(4044), + [anon_sym_LPAREN2] = ACTIONS(4046), + [anon_sym_TILDE] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4044), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym___extension__] = ACTIONS(4044), + [anon_sym_typedef] = ACTIONS(4044), + [anon_sym_virtual] = ACTIONS(4044), + [anon_sym_extern] = ACTIONS(4044), + [anon_sym___attribute__] = ACTIONS(4044), + [anon_sym___attribute] = ACTIONS(4044), + [anon_sym_using] = ACTIONS(4044), + [anon_sym_COLON_COLON] = ACTIONS(4046), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), + [anon_sym___declspec] = ACTIONS(4044), + [anon_sym___based] = ACTIONS(4044), + [anon_sym_signed] = ACTIONS(4044), + [anon_sym_unsigned] = ACTIONS(4044), + [anon_sym_long] = ACTIONS(4044), + [anon_sym_short] = ACTIONS(4044), + [anon_sym_LBRACK] = ACTIONS(4044), + [anon_sym_static] = ACTIONS(4044), + [anon_sym_register] = ACTIONS(4044), + [anon_sym_inline] = ACTIONS(4044), + [anon_sym___inline] = ACTIONS(4044), + [anon_sym___inline__] = ACTIONS(4044), + [anon_sym___forceinline] = ACTIONS(4044), + [anon_sym_thread_local] = ACTIONS(4044), + [anon_sym___thread] = ACTIONS(4044), + [anon_sym_const] = ACTIONS(4044), + [anon_sym_constexpr] = ACTIONS(4044), + [anon_sym_volatile] = ACTIONS(4044), + [anon_sym_restrict] = ACTIONS(4044), + [anon_sym___restrict__] = ACTIONS(4044), + [anon_sym__Atomic] = ACTIONS(4044), + [anon_sym__Noreturn] = ACTIONS(4044), + [anon_sym_noreturn] = ACTIONS(4044), + [anon_sym__Nonnull] = ACTIONS(4044), + [anon_sym_mutable] = ACTIONS(4044), + [anon_sym_constinit] = ACTIONS(4044), + [anon_sym_consteval] = ACTIONS(4044), + [anon_sym_alignas] = ACTIONS(4044), + [anon_sym__Alignas] = ACTIONS(4044), + [sym_primitive_type] = ACTIONS(4044), + [anon_sym_enum] = ACTIONS(4044), + [anon_sym_class] = ACTIONS(4044), + [anon_sym_struct] = ACTIONS(4044), + [anon_sym_union] = ACTIONS(4044), + [anon_sym_typename] = ACTIONS(4044), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4044), + [anon_sym_decltype] = ACTIONS(4044), + [anon_sym_explicit] = ACTIONS(4044), + [anon_sym_private] = ACTIONS(4044), + [anon_sym_template] = ACTIONS(4044), + [anon_sym_operator] = ACTIONS(4044), + [anon_sym_friend] = ACTIONS(4044), + [anon_sym_public] = ACTIONS(4044), + [anon_sym_protected] = ACTIONS(4044), + [anon_sym_static_assert] = ACTIONS(4044), + [anon_sym_LBRACK_COLON] = ACTIONS(4046), }, - [STATE(2795)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [aux_sym_preproc_else_token1] = ACTIONS(4160), - [aux_sym_preproc_elif_token1] = ACTIONS(4160), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_private] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_friend] = ACTIONS(4160), - [anon_sym_public] = ACTIONS(4160), - [anon_sym_protected] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [STATE(2811)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2596), + [sym__abstract_declarator] = STATE(6505), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3798), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2273), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3798), + [aux_sym_pointer_declarator_repeat1] = STATE(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8780), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8782), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8784), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(6843), + [anon_sym___attribute] = ACTIONS(6841), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8136), + [sym_ms_signed_ptr_modifier] = ACTIONS(8136), + [anon_sym__unaligned] = ACTIONS(8138), + [anon_sym___unaligned] = ACTIONS(8138), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), }, - [STATE(2796)] = { - [sym_attribute_specifier] = STATE(3208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7547), - [anon_sym_PLUS] = ACTIONS(7547), - [anon_sym_STAR] = ACTIONS(7547), - [anon_sym_SLASH] = ACTIONS(7547), - [anon_sym_PERCENT] = ACTIONS(7547), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7547), - [anon_sym_CARET] = ACTIONS(7547), - [anon_sym_AMP] = ACTIONS(7547), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_GT_EQ] = ACTIONS(7547), - [anon_sym_LT_EQ] = ACTIONS(7547), - [anon_sym_LT] = ACTIONS(7547), - [anon_sym_LT_LT] = ACTIONS(7547), - [anon_sym_GT_GT] = ACTIONS(7547), - [anon_sym___extension__] = ACTIONS(7549), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7547), - [anon_sym_const] = ACTIONS(7547), - [anon_sym_constexpr] = ACTIONS(7549), - [anon_sym_volatile] = ACTIONS(7549), - [anon_sym_restrict] = ACTIONS(7549), - [anon_sym___restrict__] = ACTIONS(7549), - [anon_sym__Atomic] = ACTIONS(7549), - [anon_sym__Noreturn] = ACTIONS(7549), - [anon_sym_noreturn] = ACTIONS(7549), - [anon_sym__Nonnull] = ACTIONS(7549), - [anon_sym_mutable] = ACTIONS(7549), - [anon_sym_constinit] = ACTIONS(7549), - [anon_sym_consteval] = ACTIONS(7549), - [anon_sym_alignas] = ACTIONS(7549), - [anon_sym__Alignas] = ACTIONS(7549), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7547), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_and_eq] = ACTIONS(7549), - [anon_sym_or_eq] = ACTIONS(7549), - [anon_sym_xor_eq] = ACTIONS(7549), - [anon_sym_LT_EQ_GT] = ACTIONS(7549), - [anon_sym_or] = ACTIONS(7547), - [anon_sym_and] = ACTIONS(7547), - [anon_sym_bitor] = ACTIONS(7549), - [anon_sym_xor] = ACTIONS(7547), - [anon_sym_bitand] = ACTIONS(7549), - [anon_sym_not_eq] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7547), - [anon_sym_DOT_STAR] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), + [STATE(2812)] = { + [sym_identifier] = ACTIONS(6596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [anon_sym_RPAREN] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6598), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6598), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6598), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6598), + [anon_sym_GT_GT] = ACTIONS(6598), + [anon_sym_SEMI] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6596), + [anon_sym___attribute__] = ACTIONS(6596), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6598), + [anon_sym___based] = ACTIONS(6596), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_RBRACE] = ACTIONS(6598), + [anon_sym_signed] = ACTIONS(6596), + [anon_sym_unsigned] = ACTIONS(6596), + [anon_sym_long] = ACTIONS(6596), + [anon_sym_short] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6596), + [anon_sym_volatile] = ACTIONS(6596), + [anon_sym_restrict] = ACTIONS(6596), + [anon_sym___restrict__] = ACTIONS(6596), + [anon_sym__Atomic] = ACTIONS(6596), + [anon_sym__Noreturn] = ACTIONS(6596), + [anon_sym_noreturn] = ACTIONS(6596), + [anon_sym__Nonnull] = ACTIONS(6596), + [anon_sym_mutable] = ACTIONS(6596), + [anon_sym_constinit] = ACTIONS(6596), + [anon_sym_consteval] = ACTIONS(6596), + [anon_sym_alignas] = ACTIONS(6596), + [anon_sym__Alignas] = ACTIONS(6596), + [sym_primitive_type] = ACTIONS(6596), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7549), - [anon_sym_override] = ACTIONS(7549), - [anon_sym_GT2] = ACTIONS(7549), - [anon_sym_requires] = ACTIONS(7549), + [sym_auto] = ACTIONS(6596), + [anon_sym_decltype] = ACTIONS(6596), + [anon_sym_final] = ACTIONS(6596), + [anon_sym_override] = ACTIONS(6596), + [anon_sym_requires] = ACTIONS(6596), + [anon_sym_COLON_RBRACK] = ACTIONS(6598), }, - [STATE(2797)] = { - [sym_identifier] = ACTIONS(6624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [anon_sym_RPAREN] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6626), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6626), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6626), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6626), - [anon_sym_GT_GT] = ACTIONS(6626), - [anon_sym_SEMI] = ACTIONS(6626), - [anon_sym___extension__] = ACTIONS(6624), - [anon_sym___attribute__] = ACTIONS(6624), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6626), - [anon_sym___based] = ACTIONS(6624), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_RBRACE] = ACTIONS(6626), - [anon_sym_signed] = ACTIONS(6624), - [anon_sym_unsigned] = ACTIONS(6624), - [anon_sym_long] = ACTIONS(6624), - [anon_sym_short] = ACTIONS(6624), - [anon_sym_LBRACK] = ACTIONS(6626), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6624), - [anon_sym_volatile] = ACTIONS(6624), - [anon_sym_restrict] = ACTIONS(6624), - [anon_sym___restrict__] = ACTIONS(6624), - [anon_sym__Atomic] = ACTIONS(6624), - [anon_sym__Noreturn] = ACTIONS(6624), - [anon_sym_noreturn] = ACTIONS(6624), - [anon_sym__Nonnull] = ACTIONS(6624), - [anon_sym_mutable] = ACTIONS(6624), - [anon_sym_constinit] = ACTIONS(6624), - [anon_sym_consteval] = ACTIONS(6624), - [anon_sym_alignas] = ACTIONS(6624), - [anon_sym__Alignas] = ACTIONS(6624), - [sym_primitive_type] = ACTIONS(6624), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6624), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6624), - [anon_sym_not_eq] = ACTIONS(6624), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6624), - [anon_sym_decltype] = ACTIONS(6624), - [anon_sym_final] = ACTIONS(6624), - [anon_sym_override] = ACTIONS(6624), - [anon_sym_requires] = ACTIONS(6624), - [anon_sym_COLON_RBRACK] = ACTIONS(6626), + [STATE(2813)] = { + [sym_identifier] = ACTIONS(3706), + [aux_sym_preproc_def_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token2] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3706), + [aux_sym_preproc_else_token1] = ACTIONS(3706), + [aux_sym_preproc_elif_token1] = ACTIONS(3706), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3706), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3706), + [sym_preproc_directive] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym___extension__] = ACTIONS(3706), + [anon_sym_typedef] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym___attribute] = ACTIONS(3706), + [anon_sym_using] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3706), + [anon_sym_unsigned] = ACTIONS(3706), + [anon_sym_long] = ACTIONS(3706), + [anon_sym_short] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym___inline] = ACTIONS(3706), + [anon_sym___inline__] = ACTIONS(3706), + [anon_sym___forceinline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym___thread] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym___restrict__] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym__Noreturn] = ACTIONS(3706), + [anon_sym_noreturn] = ACTIONS(3706), + [anon_sym__Nonnull] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_alignas] = ACTIONS(3706), + [anon_sym__Alignas] = ACTIONS(3706), + [sym_primitive_type] = ACTIONS(3706), + [anon_sym_enum] = ACTIONS(3706), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3706), + [anon_sym_union] = ACTIONS(3706), + [anon_sym_typename] = ACTIONS(3706), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_explicit] = ACTIONS(3706), + [anon_sym_private] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + [anon_sym_friend] = ACTIONS(3706), + [anon_sym_public] = ACTIONS(3706), + [anon_sym_protected] = ACTIONS(3706), + [anon_sym_static_assert] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3708), }, - [STATE(2798)] = { - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token2] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [aux_sym_preproc_else_token1] = ACTIONS(4184), - [aux_sym_preproc_elif_token1] = ACTIONS(4184), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_private] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_friend] = ACTIONS(4184), - [anon_sym_public] = ACTIONS(4184), - [anon_sym_protected] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), + [STATE(2814)] = { + [sym_identifier] = ACTIONS(4309), + [aux_sym_preproc_def_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token2] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4309), + [aux_sym_preproc_else_token1] = ACTIONS(4309), + [aux_sym_preproc_elif_token1] = ACTIONS(4309), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4309), + [sym_preproc_directive] = ACTIONS(4309), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_TILDE] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_AMP_AMP] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), + [anon_sym_SEMI] = ACTIONS(4311), + [anon_sym___extension__] = ACTIONS(4309), + [anon_sym_typedef] = ACTIONS(4309), + [anon_sym_virtual] = ACTIONS(4309), + [anon_sym_extern] = ACTIONS(4309), + [anon_sym___attribute__] = ACTIONS(4309), + [anon_sym___attribute] = ACTIONS(4309), + [anon_sym_using] = ACTIONS(4309), + [anon_sym_COLON_COLON] = ACTIONS(4311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4311), + [anon_sym___declspec] = ACTIONS(4309), + [anon_sym___based] = ACTIONS(4309), + [anon_sym_signed] = ACTIONS(4309), + [anon_sym_unsigned] = ACTIONS(4309), + [anon_sym_long] = ACTIONS(4309), + [anon_sym_short] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_static] = ACTIONS(4309), + [anon_sym_register] = ACTIONS(4309), + [anon_sym_inline] = ACTIONS(4309), + [anon_sym___inline] = ACTIONS(4309), + [anon_sym___inline__] = ACTIONS(4309), + [anon_sym___forceinline] = ACTIONS(4309), + [anon_sym_thread_local] = ACTIONS(4309), + [anon_sym___thread] = ACTIONS(4309), + [anon_sym_const] = ACTIONS(4309), + [anon_sym_constexpr] = ACTIONS(4309), + [anon_sym_volatile] = ACTIONS(4309), + [anon_sym_restrict] = ACTIONS(4309), + [anon_sym___restrict__] = ACTIONS(4309), + [anon_sym__Atomic] = ACTIONS(4309), + [anon_sym__Noreturn] = ACTIONS(4309), + [anon_sym_noreturn] = ACTIONS(4309), + [anon_sym__Nonnull] = ACTIONS(4309), + [anon_sym_mutable] = ACTIONS(4309), + [anon_sym_constinit] = ACTIONS(4309), + [anon_sym_consteval] = ACTIONS(4309), + [anon_sym_alignas] = ACTIONS(4309), + [anon_sym__Alignas] = ACTIONS(4309), + [sym_primitive_type] = ACTIONS(4309), + [anon_sym_enum] = ACTIONS(4309), + [anon_sym_class] = ACTIONS(4309), + [anon_sym_struct] = ACTIONS(4309), + [anon_sym_union] = ACTIONS(4309), + [anon_sym_typename] = ACTIONS(4309), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4309), + [anon_sym_decltype] = ACTIONS(4309), + [anon_sym_explicit] = ACTIONS(4309), + [anon_sym_private] = ACTIONS(4309), + [anon_sym_template] = ACTIONS(4309), + [anon_sym_operator] = ACTIONS(4309), + [anon_sym_friend] = ACTIONS(4309), + [anon_sym_public] = ACTIONS(4309), + [anon_sym_protected] = ACTIONS(4309), + [anon_sym_static_assert] = ACTIONS(4309), + [anon_sym_LBRACK_COLON] = ACTIONS(4311), }, - [STATE(2799)] = { - [sym_identifier] = ACTIONS(8697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8699), - [anon_sym_COMMA] = ACTIONS(8699), - [anon_sym_RPAREN] = ACTIONS(8699), - [aux_sym_preproc_if_token2] = ACTIONS(8699), - [aux_sym_preproc_else_token1] = ACTIONS(8699), - [aux_sym_preproc_elif_token1] = ACTIONS(8697), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8699), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8699), - [anon_sym_LPAREN2] = ACTIONS(8699), - [anon_sym_DASH] = ACTIONS(8697), - [anon_sym_PLUS] = ACTIONS(8697), - [anon_sym_STAR] = ACTIONS(8697), - [anon_sym_SLASH] = ACTIONS(8697), - [anon_sym_PERCENT] = ACTIONS(8697), - [anon_sym_PIPE_PIPE] = ACTIONS(8699), - [anon_sym_AMP_AMP] = ACTIONS(8699), - [anon_sym_PIPE] = ACTIONS(8697), - [anon_sym_CARET] = ACTIONS(8697), - [anon_sym_AMP] = ACTIONS(8697), - [anon_sym_EQ_EQ] = ACTIONS(8699), - [anon_sym_BANG_EQ] = ACTIONS(8699), - [anon_sym_GT] = ACTIONS(8697), - [anon_sym_GT_EQ] = ACTIONS(8699), - [anon_sym_LT_EQ] = ACTIONS(8697), - [anon_sym_LT] = ACTIONS(8697), - [anon_sym_LT_LT] = ACTIONS(8697), - [anon_sym_GT_GT] = ACTIONS(8697), - [anon_sym_SEMI] = ACTIONS(8699), - [anon_sym_COLON] = ACTIONS(8697), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8699), - [anon_sym_RBRACE] = ACTIONS(8699), - [anon_sym_LBRACK] = ACTIONS(8699), - [anon_sym_EQ] = ACTIONS(8697), - [anon_sym_QMARK] = ACTIONS(8699), - [anon_sym_STAR_EQ] = ACTIONS(8699), - [anon_sym_SLASH_EQ] = ACTIONS(8699), - [anon_sym_PERCENT_EQ] = ACTIONS(8699), - [anon_sym_PLUS_EQ] = ACTIONS(8699), - [anon_sym_DASH_EQ] = ACTIONS(8699), - [anon_sym_LT_LT_EQ] = ACTIONS(8699), - [anon_sym_GT_GT_EQ] = ACTIONS(8699), - [anon_sym_AMP_EQ] = ACTIONS(8699), - [anon_sym_CARET_EQ] = ACTIONS(8699), - [anon_sym_PIPE_EQ] = ACTIONS(8699), - [anon_sym_and_eq] = ACTIONS(8697), - [anon_sym_or_eq] = ACTIONS(8697), - [anon_sym_xor_eq] = ACTIONS(8697), - [anon_sym_LT_EQ_GT] = ACTIONS(8699), - [anon_sym_or] = ACTIONS(8697), - [anon_sym_and] = ACTIONS(8697), - [anon_sym_bitor] = ACTIONS(8697), - [anon_sym_xor] = ACTIONS(8697), - [anon_sym_bitand] = ACTIONS(8697), - [anon_sym_not_eq] = ACTIONS(8697), - [anon_sym_DASH_DASH] = ACTIONS(8699), - [anon_sym_PLUS_PLUS] = ACTIONS(8699), - [anon_sym_DOT] = ACTIONS(8697), - [anon_sym_DOT_STAR] = ACTIONS(8699), - [anon_sym_DASH_GT] = ACTIONS(8699), - [anon_sym_L_DQUOTE] = ACTIONS(8699), - [anon_sym_u_DQUOTE] = ACTIONS(8699), - [anon_sym_U_DQUOTE] = ACTIONS(8699), - [anon_sym_u8_DQUOTE] = ACTIONS(8699), - [anon_sym_DQUOTE] = ACTIONS(8699), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8699), - [anon_sym_LR_DQUOTE] = ACTIONS(8699), - [anon_sym_uR_DQUOTE] = ACTIONS(8699), - [anon_sym_UR_DQUOTE] = ACTIONS(8699), - [anon_sym_u8R_DQUOTE] = ACTIONS(8699), - [anon_sym_COLON_RBRACK] = ACTIONS(8699), - [sym_literal_suffix] = ACTIONS(8697), + [STATE(2815)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7721), + [anon_sym_COMMA] = ACTIONS(7721), + [anon_sym_RPAREN] = ACTIONS(7721), + [anon_sym_LPAREN2] = ACTIONS(7721), + [anon_sym_DASH] = ACTIONS(7719), + [anon_sym_PLUS] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_SLASH] = ACTIONS(7719), + [anon_sym_PERCENT] = ACTIONS(7719), + [anon_sym_PIPE_PIPE] = ACTIONS(7721), + [anon_sym_AMP_AMP] = ACTIONS(7721), + [anon_sym_PIPE] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_AMP] = ACTIONS(7719), + [anon_sym_EQ_EQ] = ACTIONS(7721), + [anon_sym_BANG_EQ] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7719), + [anon_sym_GT_EQ] = ACTIONS(7721), + [anon_sym_LT_EQ] = ACTIONS(7719), + [anon_sym_LT] = ACTIONS(7719), + [anon_sym_LT_LT] = ACTIONS(7719), + [anon_sym_GT_GT] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7721), + [anon_sym___attribute__] = ACTIONS(7721), + [anon_sym___attribute] = ACTIONS(7719), + [anon_sym_LBRACE] = ACTIONS(7721), + [anon_sym_LBRACK] = ACTIONS(7721), + [anon_sym_EQ] = ACTIONS(7719), + [anon_sym_const] = ACTIONS(7719), + [anon_sym_constexpr] = ACTIONS(7721), + [anon_sym_volatile] = ACTIONS(7721), + [anon_sym_restrict] = ACTIONS(7721), + [anon_sym___restrict__] = ACTIONS(7721), + [anon_sym__Atomic] = ACTIONS(7721), + [anon_sym__Noreturn] = ACTIONS(7721), + [anon_sym_noreturn] = ACTIONS(7721), + [anon_sym__Nonnull] = ACTIONS(7721), + [anon_sym_mutable] = ACTIONS(7721), + [anon_sym_constinit] = ACTIONS(7721), + [anon_sym_consteval] = ACTIONS(7721), + [anon_sym_alignas] = ACTIONS(7721), + [anon_sym__Alignas] = ACTIONS(7721), + [anon_sym_QMARK] = ACTIONS(7721), + [anon_sym_STAR_EQ] = ACTIONS(7721), + [anon_sym_SLASH_EQ] = ACTIONS(7721), + [anon_sym_PERCENT_EQ] = ACTIONS(7721), + [anon_sym_PLUS_EQ] = ACTIONS(7721), + [anon_sym_DASH_EQ] = ACTIONS(7721), + [anon_sym_LT_LT_EQ] = ACTIONS(7721), + [anon_sym_GT_GT_EQ] = ACTIONS(7721), + [anon_sym_AMP_EQ] = ACTIONS(7721), + [anon_sym_CARET_EQ] = ACTIONS(7721), + [anon_sym_PIPE_EQ] = ACTIONS(7721), + [anon_sym_and_eq] = ACTIONS(7721), + [anon_sym_or_eq] = ACTIONS(7721), + [anon_sym_xor_eq] = ACTIONS(7721), + [anon_sym_LT_EQ_GT] = ACTIONS(7721), + [anon_sym_or] = ACTIONS(7719), + [anon_sym_and] = ACTIONS(7719), + [anon_sym_bitor] = ACTIONS(7721), + [anon_sym_xor] = ACTIONS(7719), + [anon_sym_bitand] = ACTIONS(7721), + [anon_sym_not_eq] = ACTIONS(7721), + [anon_sym_DASH_DASH] = ACTIONS(7721), + [anon_sym_PLUS_PLUS] = ACTIONS(7721), + [anon_sym_DOT] = ACTIONS(7719), + [anon_sym_DOT_STAR] = ACTIONS(7721), + [anon_sym_DASH_GT] = ACTIONS(7719), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7721), + [anon_sym_override] = ACTIONS(7721), + [anon_sym_requires] = ACTIONS(7721), + [anon_sym_DASH_GT_STAR] = ACTIONS(7721), }, - [STATE(2800)] = { - [sym_attribute_specifier] = STATE(3241), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7553), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_PERCENT] = ACTIONS(7551), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7551), - [anon_sym_LT_EQ] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7551), - [anon_sym___extension__] = ACTIONS(7553), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7553), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_const] = ACTIONS(7551), - [anon_sym_constexpr] = ACTIONS(7553), - [anon_sym_volatile] = ACTIONS(7553), - [anon_sym_restrict] = ACTIONS(7553), - [anon_sym___restrict__] = ACTIONS(7553), - [anon_sym__Atomic] = ACTIONS(7553), - [anon_sym__Noreturn] = ACTIONS(7553), - [anon_sym_noreturn] = ACTIONS(7553), - [anon_sym__Nonnull] = ACTIONS(7553), - [anon_sym_mutable] = ACTIONS(7553), - [anon_sym_constinit] = ACTIONS(7553), - [anon_sym_consteval] = ACTIONS(7553), - [anon_sym_alignas] = ACTIONS(7553), - [anon_sym__Alignas] = ACTIONS(7553), - [anon_sym_QMARK] = ACTIONS(7553), - [anon_sym_STAR_EQ] = ACTIONS(7553), - [anon_sym_SLASH_EQ] = ACTIONS(7553), - [anon_sym_PERCENT_EQ] = ACTIONS(7553), - [anon_sym_PLUS_EQ] = ACTIONS(7553), - [anon_sym_DASH_EQ] = ACTIONS(7553), - [anon_sym_LT_LT_EQ] = ACTIONS(7553), - [anon_sym_GT_GT_EQ] = ACTIONS(7551), - [anon_sym_AMP_EQ] = ACTIONS(7553), - [anon_sym_CARET_EQ] = ACTIONS(7553), - [anon_sym_PIPE_EQ] = ACTIONS(7553), - [anon_sym_and_eq] = ACTIONS(7553), - [anon_sym_or_eq] = ACTIONS(7553), - [anon_sym_xor_eq] = ACTIONS(7553), - [anon_sym_LT_EQ_GT] = ACTIONS(7553), - [anon_sym_or] = ACTIONS(7551), - [anon_sym_and] = ACTIONS(7551), - [anon_sym_bitor] = ACTIONS(7553), - [anon_sym_xor] = ACTIONS(7551), - [anon_sym_bitand] = ACTIONS(7553), - [anon_sym_not_eq] = ACTIONS(7553), - [anon_sym_DASH_DASH] = ACTIONS(7553), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7551), - [anon_sym_DOT_STAR] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7553), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7553), - [anon_sym_override] = ACTIONS(7553), - [anon_sym_GT2] = ACTIONS(7553), - [anon_sym_requires] = ACTIONS(7553), + [STATE(2816)] = { + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token2] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [aux_sym_preproc_else_token1] = ACTIONS(3782), + [aux_sym_preproc_elif_token1] = ACTIONS(3782), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_private] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_friend] = ACTIONS(3782), + [anon_sym_public] = ACTIONS(3782), + [anon_sym_protected] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), }, - [STATE(2801)] = { - [sym_template_argument_list] = STATE(2846), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), - [anon_sym_COMMA] = ACTIONS(6567), - [anon_sym_RPAREN] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6574), - [anon_sym_PLUS] = ACTIONS(6574), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6574), - [anon_sym_PIPE_PIPE] = ACTIONS(6567), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6574), - [anon_sym_CARET] = ACTIONS(6574), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6567), - [anon_sym_BANG_EQ] = ACTIONS(6567), - [anon_sym_GT] = ACTIONS(6574), - [anon_sym_GT_EQ] = ACTIONS(6567), - [anon_sym_LT_EQ] = ACTIONS(6574), - [anon_sym_LT] = ACTIONS(8701), - [anon_sym_LT_LT] = ACTIONS(6574), - [anon_sym_GT_GT] = ACTIONS(6574), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6567), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6576), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6567), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6567), - [anon_sym_or_eq] = ACTIONS(6567), - [anon_sym_xor_eq] = ACTIONS(6567), - [anon_sym_LT_EQ_GT] = ACTIONS(6567), - [anon_sym_or] = ACTIONS(6574), - [anon_sym_and] = ACTIONS(6574), - [anon_sym_bitor] = ACTIONS(6567), - [anon_sym_xor] = ACTIONS(6574), - [anon_sym_bitand] = ACTIONS(6567), - [anon_sym_not_eq] = ACTIONS(6567), - [anon_sym_DASH_DASH] = ACTIONS(6567), - [anon_sym_PLUS_PLUS] = ACTIONS(6567), - [anon_sym_DOT] = ACTIONS(6574), - [anon_sym_DOT_STAR] = ACTIONS(6567), - [anon_sym_DASH_GT] = ACTIONS(6574), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_DASH_GT_STAR] = ACTIONS(6567), + [STATE(2817)] = { + [sym_identifier] = ACTIONS(3750), + [aux_sym_preproc_def_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token2] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3750), + [aux_sym_preproc_else_token1] = ACTIONS(3750), + [aux_sym_preproc_elif_token1] = ACTIONS(3750), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3750), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3750), + [sym_preproc_directive] = ACTIONS(3750), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym___extension__] = ACTIONS(3750), + [anon_sym_typedef] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym___attribute] = ACTIONS(3750), + [anon_sym_using] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym_signed] = ACTIONS(3750), + [anon_sym_unsigned] = ACTIONS(3750), + [anon_sym_long] = ACTIONS(3750), + [anon_sym_short] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym___inline] = ACTIONS(3750), + [anon_sym___inline__] = ACTIONS(3750), + [anon_sym___forceinline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym___thread] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym___restrict__] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym__Noreturn] = ACTIONS(3750), + [anon_sym_noreturn] = ACTIONS(3750), + [anon_sym__Nonnull] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_alignas] = ACTIONS(3750), + [anon_sym__Alignas] = ACTIONS(3750), + [sym_primitive_type] = ACTIONS(3750), + [anon_sym_enum] = ACTIONS(3750), + [anon_sym_class] = ACTIONS(3750), + [anon_sym_struct] = ACTIONS(3750), + [anon_sym_union] = ACTIONS(3750), + [anon_sym_typename] = ACTIONS(3750), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_private] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + [anon_sym_friend] = ACTIONS(3750), + [anon_sym_public] = ACTIONS(3750), + [anon_sym_protected] = ACTIONS(3750), + [anon_sym_static_assert] = ACTIONS(3750), + [anon_sym_LBRACK_COLON] = ACTIONS(3752), }, - [STATE(2802)] = { - [sym_identifier] = ACTIONS(4012), - [aux_sym_preproc_def_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token2] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), - [aux_sym_preproc_else_token1] = ACTIONS(4012), - [aux_sym_preproc_elif_token1] = ACTIONS(4012), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4012), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4012), - [sym_preproc_directive] = ACTIONS(4012), - [anon_sym_LPAREN2] = ACTIONS(4014), - [anon_sym_TILDE] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym___extension__] = ACTIONS(4012), - [anon_sym_typedef] = ACTIONS(4012), - [anon_sym_virtual] = ACTIONS(4012), - [anon_sym_extern] = ACTIONS(4012), - [anon_sym___attribute__] = ACTIONS(4012), - [anon_sym___attribute] = ACTIONS(4012), - [anon_sym_using] = ACTIONS(4012), - [anon_sym_COLON_COLON] = ACTIONS(4014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), - [anon_sym___declspec] = ACTIONS(4012), - [anon_sym___based] = ACTIONS(4012), - [anon_sym_signed] = ACTIONS(4012), - [anon_sym_unsigned] = ACTIONS(4012), - [anon_sym_long] = ACTIONS(4012), - [anon_sym_short] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4012), - [anon_sym_static] = ACTIONS(4012), - [anon_sym_register] = ACTIONS(4012), - [anon_sym_inline] = ACTIONS(4012), - [anon_sym___inline] = ACTIONS(4012), - [anon_sym___inline__] = ACTIONS(4012), - [anon_sym___forceinline] = ACTIONS(4012), - [anon_sym_thread_local] = ACTIONS(4012), - [anon_sym___thread] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4012), - [anon_sym_constexpr] = ACTIONS(4012), - [anon_sym_volatile] = ACTIONS(4012), - [anon_sym_restrict] = ACTIONS(4012), - [anon_sym___restrict__] = ACTIONS(4012), - [anon_sym__Atomic] = ACTIONS(4012), - [anon_sym__Noreturn] = ACTIONS(4012), - [anon_sym_noreturn] = ACTIONS(4012), - [anon_sym__Nonnull] = ACTIONS(4012), - [anon_sym_mutable] = ACTIONS(4012), - [anon_sym_constinit] = ACTIONS(4012), - [anon_sym_consteval] = ACTIONS(4012), - [anon_sym_alignas] = ACTIONS(4012), - [anon_sym__Alignas] = ACTIONS(4012), - [sym_primitive_type] = ACTIONS(4012), - [anon_sym_enum] = ACTIONS(4012), - [anon_sym_class] = ACTIONS(4012), - [anon_sym_struct] = ACTIONS(4012), - [anon_sym_union] = ACTIONS(4012), - [anon_sym_typename] = ACTIONS(4012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4012), - [anon_sym_decltype] = ACTIONS(4012), - [anon_sym_explicit] = ACTIONS(4012), - [anon_sym_private] = ACTIONS(4012), - [anon_sym_template] = ACTIONS(4012), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_friend] = ACTIONS(4012), - [anon_sym_public] = ACTIONS(4012), - [anon_sym_protected] = ACTIONS(4012), - [anon_sym_static_assert] = ACTIONS(4012), - [anon_sym_LBRACK_COLON] = ACTIONS(4014), + [STATE(2818)] = { + [sym_decltype_auto] = STATE(3149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8633), + [anon_sym_decltype] = ACTIONS(7056), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), }, - [STATE(2803)] = { - [sym_identifier] = ACTIONS(8704), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8706), - [anon_sym_COMMA] = ACTIONS(8706), - [anon_sym_RPAREN] = ACTIONS(8706), - [aux_sym_preproc_if_token2] = ACTIONS(8706), - [aux_sym_preproc_else_token1] = ACTIONS(8706), - [aux_sym_preproc_elif_token1] = ACTIONS(8704), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8706), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8706), - [anon_sym_LPAREN2] = ACTIONS(8706), - [anon_sym_DASH] = ACTIONS(8704), - [anon_sym_PLUS] = ACTIONS(8704), - [anon_sym_STAR] = ACTIONS(8704), - [anon_sym_SLASH] = ACTIONS(8704), - [anon_sym_PERCENT] = ACTIONS(8704), - [anon_sym_PIPE_PIPE] = ACTIONS(8706), - [anon_sym_AMP_AMP] = ACTIONS(8706), - [anon_sym_PIPE] = ACTIONS(8704), - [anon_sym_CARET] = ACTIONS(8704), - [anon_sym_AMP] = ACTIONS(8704), - [anon_sym_EQ_EQ] = ACTIONS(8706), - [anon_sym_BANG_EQ] = ACTIONS(8706), - [anon_sym_GT] = ACTIONS(8704), - [anon_sym_GT_EQ] = ACTIONS(8706), - [anon_sym_LT_EQ] = ACTIONS(8704), - [anon_sym_LT] = ACTIONS(8704), - [anon_sym_LT_LT] = ACTIONS(8704), - [anon_sym_GT_GT] = ACTIONS(8704), - [anon_sym_SEMI] = ACTIONS(8706), - [anon_sym___attribute__] = ACTIONS(8704), - [anon_sym___attribute] = ACTIONS(8704), - [anon_sym_COLON] = ACTIONS(8704), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8706), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8706), - [anon_sym_RBRACE] = ACTIONS(8706), - [anon_sym_LBRACK] = ACTIONS(8704), - [anon_sym_EQ] = ACTIONS(8704), - [anon_sym_QMARK] = ACTIONS(8706), - [anon_sym_STAR_EQ] = ACTIONS(8706), - [anon_sym_SLASH_EQ] = ACTIONS(8706), - [anon_sym_PERCENT_EQ] = ACTIONS(8706), - [anon_sym_PLUS_EQ] = ACTIONS(8706), - [anon_sym_DASH_EQ] = ACTIONS(8706), - [anon_sym_LT_LT_EQ] = ACTIONS(8706), - [anon_sym_GT_GT_EQ] = ACTIONS(8706), - [anon_sym_AMP_EQ] = ACTIONS(8706), - [anon_sym_CARET_EQ] = ACTIONS(8706), - [anon_sym_PIPE_EQ] = ACTIONS(8706), - [anon_sym_and_eq] = ACTIONS(8704), - [anon_sym_or_eq] = ACTIONS(8704), - [anon_sym_xor_eq] = ACTIONS(8704), - [anon_sym_LT_EQ_GT] = ACTIONS(8706), - [anon_sym_or] = ACTIONS(8704), - [anon_sym_and] = ACTIONS(8704), - [anon_sym_bitor] = ACTIONS(8704), - [anon_sym_xor] = ACTIONS(8704), - [anon_sym_bitand] = ACTIONS(8704), - [anon_sym_not_eq] = ACTIONS(8704), - [anon_sym_DASH_DASH] = ACTIONS(8706), - [anon_sym_PLUS_PLUS] = ACTIONS(8706), - [anon_sym_asm] = ACTIONS(8704), - [anon_sym___asm__] = ACTIONS(8704), - [anon_sym___asm] = ACTIONS(8704), - [anon_sym_DOT] = ACTIONS(8704), - [anon_sym_DOT_STAR] = ACTIONS(8706), - [anon_sym_DASH_GT] = ACTIONS(8706), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8704), - [anon_sym_override] = ACTIONS(8704), - [anon_sym_noexcept] = ACTIONS(8704), - [anon_sym_throw] = ACTIONS(8704), - [anon_sym_requires] = ACTIONS(8704), - [anon_sym_COLON_RBRACK] = ACTIONS(8706), + [STATE(2819)] = { + [sym__declaration_modifiers] = STATE(5086), + [sym_attribute_specifier] = STATE(5086), + [sym_attribute_declaration] = STATE(5086), + [sym_ms_declspec_modifier] = STATE(5086), + [sym_storage_class_specifier] = STATE(5086), + [sym_type_qualifier] = STATE(5086), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3997), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(5086), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), + [anon_sym___extension__] = ACTIONS(67), + [anon_sym_virtual] = ACTIONS(8663), + [anon_sym_extern] = ACTIONS(63), + [anon_sym___attribute__] = ACTIONS(43), + [anon_sym___attribute] = ACTIONS(43), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), + [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(71), + [anon_sym__Alignas] = ACTIONS(71), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(75), + [anon_sym_class] = ACTIONS(77), + [anon_sym_struct] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_typename] = ACTIONS(5462), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(129), + [anon_sym_decltype] = ACTIONS(131), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2804)] = { - [sym_identifier] = ACTIONS(6632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [anon_sym_RPAREN] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6634), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6634), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6634), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6634), - [anon_sym_GT_GT] = ACTIONS(6634), - [anon_sym_SEMI] = ACTIONS(6634), - [anon_sym___extension__] = ACTIONS(6632), - [anon_sym___attribute__] = ACTIONS(6632), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6634), - [anon_sym___based] = ACTIONS(6632), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_RBRACE] = ACTIONS(6634), - [anon_sym_signed] = ACTIONS(6632), - [anon_sym_unsigned] = ACTIONS(6632), - [anon_sym_long] = ACTIONS(6632), - [anon_sym_short] = ACTIONS(6632), - [anon_sym_LBRACK] = ACTIONS(6634), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6632), - [anon_sym_volatile] = ACTIONS(6632), - [anon_sym_restrict] = ACTIONS(6632), - [anon_sym___restrict__] = ACTIONS(6632), - [anon_sym__Atomic] = ACTIONS(6632), - [anon_sym__Noreturn] = ACTIONS(6632), - [anon_sym_noreturn] = ACTIONS(6632), - [anon_sym__Nonnull] = ACTIONS(6632), - [anon_sym_mutable] = ACTIONS(6632), - [anon_sym_constinit] = ACTIONS(6632), - [anon_sym_consteval] = ACTIONS(6632), - [anon_sym_alignas] = ACTIONS(6632), - [anon_sym__Alignas] = ACTIONS(6632), - [sym_primitive_type] = ACTIONS(6632), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6632), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6632), - [anon_sym_not_eq] = ACTIONS(6632), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6632), - [anon_sym_decltype] = ACTIONS(6632), - [anon_sym_final] = ACTIONS(6632), - [anon_sym_override] = ACTIONS(6632), - [anon_sym_requires] = ACTIONS(6632), - [anon_sym_COLON_RBRACK] = ACTIONS(6634), + [STATE(2820)] = { + [sym_identifier] = ACTIONS(3710), + [aux_sym_preproc_def_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token2] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3710), + [aux_sym_preproc_else_token1] = ACTIONS(3710), + [aux_sym_preproc_elif_token1] = ACTIONS(3710), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3710), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3710), + [sym_preproc_directive] = ACTIONS(3710), + [anon_sym_LPAREN2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_AMP] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(3712), + [anon_sym___extension__] = ACTIONS(3710), + [anon_sym_typedef] = ACTIONS(3710), + [anon_sym_virtual] = ACTIONS(3710), + [anon_sym_extern] = ACTIONS(3710), + [anon_sym___attribute__] = ACTIONS(3710), + [anon_sym___attribute] = ACTIONS(3710), + [anon_sym_using] = ACTIONS(3710), + [anon_sym_COLON_COLON] = ACTIONS(3712), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3712), + [anon_sym___declspec] = ACTIONS(3710), + [anon_sym___based] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3710), + [anon_sym_unsigned] = ACTIONS(3710), + [anon_sym_long] = ACTIONS(3710), + [anon_sym_short] = ACTIONS(3710), + [anon_sym_LBRACK] = ACTIONS(3710), + [anon_sym_static] = ACTIONS(3710), + [anon_sym_register] = ACTIONS(3710), + [anon_sym_inline] = ACTIONS(3710), + [anon_sym___inline] = ACTIONS(3710), + [anon_sym___inline__] = ACTIONS(3710), + [anon_sym___forceinline] = ACTIONS(3710), + [anon_sym_thread_local] = ACTIONS(3710), + [anon_sym___thread] = ACTIONS(3710), + [anon_sym_const] = ACTIONS(3710), + [anon_sym_constexpr] = ACTIONS(3710), + [anon_sym_volatile] = ACTIONS(3710), + [anon_sym_restrict] = ACTIONS(3710), + [anon_sym___restrict__] = ACTIONS(3710), + [anon_sym__Atomic] = ACTIONS(3710), + [anon_sym__Noreturn] = ACTIONS(3710), + [anon_sym_noreturn] = ACTIONS(3710), + [anon_sym__Nonnull] = ACTIONS(3710), + [anon_sym_mutable] = ACTIONS(3710), + [anon_sym_constinit] = ACTIONS(3710), + [anon_sym_consteval] = ACTIONS(3710), + [anon_sym_alignas] = ACTIONS(3710), + [anon_sym__Alignas] = ACTIONS(3710), + [sym_primitive_type] = ACTIONS(3710), + [anon_sym_enum] = ACTIONS(3710), + [anon_sym_class] = ACTIONS(3710), + [anon_sym_struct] = ACTIONS(3710), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_typename] = ACTIONS(3710), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3710), + [anon_sym_decltype] = ACTIONS(3710), + [anon_sym_explicit] = ACTIONS(3710), + [anon_sym_private] = ACTIONS(3710), + [anon_sym_template] = ACTIONS(3710), + [anon_sym_operator] = ACTIONS(3710), + [anon_sym_friend] = ACTIONS(3710), + [anon_sym_public] = ACTIONS(3710), + [anon_sym_protected] = ACTIONS(3710), + [anon_sym_static_assert] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3712), }, - [STATE(2805)] = { - [sym_identifier] = ACTIONS(6628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [anon_sym_RPAREN] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6630), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6630), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6630), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6630), - [anon_sym_GT_GT] = ACTIONS(6630), - [anon_sym_SEMI] = ACTIONS(6630), - [anon_sym___extension__] = ACTIONS(6628), - [anon_sym___attribute__] = ACTIONS(6628), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6630), - [anon_sym___based] = ACTIONS(6628), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_RBRACE] = ACTIONS(6630), - [anon_sym_signed] = ACTIONS(6628), - [anon_sym_unsigned] = ACTIONS(6628), - [anon_sym_long] = ACTIONS(6628), - [anon_sym_short] = ACTIONS(6628), - [anon_sym_LBRACK] = ACTIONS(6630), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6628), - [anon_sym_volatile] = ACTIONS(6628), - [anon_sym_restrict] = ACTIONS(6628), - [anon_sym___restrict__] = ACTIONS(6628), - [anon_sym__Atomic] = ACTIONS(6628), - [anon_sym__Noreturn] = ACTIONS(6628), - [anon_sym_noreturn] = ACTIONS(6628), - [anon_sym__Nonnull] = ACTIONS(6628), - [anon_sym_mutable] = ACTIONS(6628), - [anon_sym_constinit] = ACTIONS(6628), - [anon_sym_consteval] = ACTIONS(6628), - [anon_sym_alignas] = ACTIONS(6628), - [anon_sym__Alignas] = ACTIONS(6628), - [sym_primitive_type] = ACTIONS(6628), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6628), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6628), - [anon_sym_not_eq] = ACTIONS(6628), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6628), - [anon_sym_decltype] = ACTIONS(6628), - [anon_sym_final] = ACTIONS(6628), - [anon_sym_override] = ACTIONS(6628), - [anon_sym_requires] = ACTIONS(6628), - [anon_sym_COLON_RBRACK] = ACTIONS(6630), + [STATE(2821)] = { + [sym_attribute_specifier] = STATE(3187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7493), + [anon_sym_COMMA] = ACTIONS(7493), + [anon_sym_LPAREN2] = ACTIONS(7493), + [anon_sym_DASH] = ACTIONS(7491), + [anon_sym_PLUS] = ACTIONS(7491), + [anon_sym_STAR] = ACTIONS(7491), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7491), + [anon_sym_PIPE_PIPE] = ACTIONS(7493), + [anon_sym_AMP_AMP] = ACTIONS(7493), + [anon_sym_PIPE] = ACTIONS(7491), + [anon_sym_CARET] = ACTIONS(7491), + [anon_sym_AMP] = ACTIONS(7491), + [anon_sym_EQ_EQ] = ACTIONS(7493), + [anon_sym_BANG_EQ] = ACTIONS(7493), + [anon_sym_GT] = ACTIONS(7491), + [anon_sym_GT_EQ] = ACTIONS(7493), + [anon_sym_LT_EQ] = ACTIONS(7491), + [anon_sym_LT] = ACTIONS(7491), + [anon_sym_LT_LT] = ACTIONS(7491), + [anon_sym_GT_GT] = ACTIONS(7491), + [anon_sym___extension__] = ACTIONS(7493), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7493), + [anon_sym_RBRACK] = ACTIONS(7493), + [anon_sym_EQ] = ACTIONS(7491), + [anon_sym_const] = ACTIONS(7491), + [anon_sym_constexpr] = ACTIONS(7493), + [anon_sym_volatile] = ACTIONS(7493), + [anon_sym_restrict] = ACTIONS(7493), + [anon_sym___restrict__] = ACTIONS(7493), + [anon_sym__Atomic] = ACTIONS(7493), + [anon_sym__Noreturn] = ACTIONS(7493), + [anon_sym_noreturn] = ACTIONS(7493), + [anon_sym__Nonnull] = ACTIONS(7493), + [anon_sym_mutable] = ACTIONS(7493), + [anon_sym_constinit] = ACTIONS(7493), + [anon_sym_consteval] = ACTIONS(7493), + [anon_sym_alignas] = ACTIONS(7493), + [anon_sym__Alignas] = ACTIONS(7493), + [anon_sym_QMARK] = ACTIONS(7493), + [anon_sym_STAR_EQ] = ACTIONS(7493), + [anon_sym_SLASH_EQ] = ACTIONS(7493), + [anon_sym_PERCENT_EQ] = ACTIONS(7493), + [anon_sym_PLUS_EQ] = ACTIONS(7493), + [anon_sym_DASH_EQ] = ACTIONS(7493), + [anon_sym_LT_LT_EQ] = ACTIONS(7493), + [anon_sym_GT_GT_EQ] = ACTIONS(7493), + [anon_sym_AMP_EQ] = ACTIONS(7493), + [anon_sym_CARET_EQ] = ACTIONS(7493), + [anon_sym_PIPE_EQ] = ACTIONS(7493), + [anon_sym_and_eq] = ACTIONS(7493), + [anon_sym_or_eq] = ACTIONS(7493), + [anon_sym_xor_eq] = ACTIONS(7493), + [anon_sym_LT_EQ_GT] = ACTIONS(7493), + [anon_sym_or] = ACTIONS(7491), + [anon_sym_and] = ACTIONS(7491), + [anon_sym_bitor] = ACTIONS(7493), + [anon_sym_xor] = ACTIONS(7491), + [anon_sym_bitand] = ACTIONS(7493), + [anon_sym_not_eq] = ACTIONS(7493), + [anon_sym_DASH_DASH] = ACTIONS(7493), + [anon_sym_PLUS_PLUS] = ACTIONS(7493), + [anon_sym_DOT] = ACTIONS(7491), + [anon_sym_DOT_STAR] = ACTIONS(7493), + [anon_sym_DASH_GT] = ACTIONS(7493), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7493), + [anon_sym_override] = ACTIONS(7493), + [anon_sym_requires] = ACTIONS(7493), }, - [STATE(2806)] = { - [sym_identifier] = ACTIONS(3954), - [aux_sym_preproc_def_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token2] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), - [aux_sym_preproc_else_token1] = ACTIONS(3954), - [aux_sym_preproc_elif_token1] = ACTIONS(3954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3954), - [sym_preproc_directive] = ACTIONS(3954), - [anon_sym_LPAREN2] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_STAR] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym___extension__] = ACTIONS(3954), - [anon_sym_typedef] = ACTIONS(3954), - [anon_sym_virtual] = ACTIONS(3954), - [anon_sym_extern] = ACTIONS(3954), - [anon_sym___attribute__] = ACTIONS(3954), - [anon_sym___attribute] = ACTIONS(3954), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_COLON_COLON] = ACTIONS(3956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), - [anon_sym___declspec] = ACTIONS(3954), - [anon_sym___based] = ACTIONS(3954), - [anon_sym_signed] = ACTIONS(3954), - [anon_sym_unsigned] = ACTIONS(3954), - [anon_sym_long] = ACTIONS(3954), - [anon_sym_short] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3954), - [anon_sym_register] = ACTIONS(3954), - [anon_sym_inline] = ACTIONS(3954), - [anon_sym___inline] = ACTIONS(3954), - [anon_sym___inline__] = ACTIONS(3954), - [anon_sym___forceinline] = ACTIONS(3954), - [anon_sym_thread_local] = ACTIONS(3954), - [anon_sym___thread] = ACTIONS(3954), - [anon_sym_const] = ACTIONS(3954), - [anon_sym_constexpr] = ACTIONS(3954), - [anon_sym_volatile] = ACTIONS(3954), - [anon_sym_restrict] = ACTIONS(3954), - [anon_sym___restrict__] = ACTIONS(3954), - [anon_sym__Atomic] = ACTIONS(3954), - [anon_sym__Noreturn] = ACTIONS(3954), - [anon_sym_noreturn] = ACTIONS(3954), - [anon_sym__Nonnull] = ACTIONS(3954), - [anon_sym_mutable] = ACTIONS(3954), - [anon_sym_constinit] = ACTIONS(3954), - [anon_sym_consteval] = ACTIONS(3954), - [anon_sym_alignas] = ACTIONS(3954), - [anon_sym__Alignas] = ACTIONS(3954), - [sym_primitive_type] = ACTIONS(3954), - [anon_sym_enum] = ACTIONS(3954), - [anon_sym_class] = ACTIONS(3954), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3954), - [anon_sym_typename] = ACTIONS(3954), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3954), - [anon_sym_decltype] = ACTIONS(3954), - [anon_sym_explicit] = ACTIONS(3954), - [anon_sym_private] = ACTIONS(3954), - [anon_sym_template] = ACTIONS(3954), - [anon_sym_operator] = ACTIONS(3954), - [anon_sym_friend] = ACTIONS(3954), - [anon_sym_public] = ACTIONS(3954), - [anon_sym_protected] = ACTIONS(3954), - [anon_sym_static_assert] = ACTIONS(3954), - [anon_sym_LBRACK_COLON] = ACTIONS(3956), + [STATE(2822)] = { + [sym_identifier] = ACTIONS(3854), + [aux_sym_preproc_def_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token2] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3854), + [aux_sym_preproc_else_token1] = ACTIONS(3854), + [aux_sym_preproc_elif_token1] = ACTIONS(3854), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3854), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3854), + [sym_preproc_directive] = ACTIONS(3854), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_TILDE] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + [anon_sym_SEMI] = ACTIONS(3856), + [anon_sym___extension__] = ACTIONS(3854), + [anon_sym_typedef] = ACTIONS(3854), + [anon_sym_virtual] = ACTIONS(3854), + [anon_sym_extern] = ACTIONS(3854), + [anon_sym___attribute__] = ACTIONS(3854), + [anon_sym___attribute] = ACTIONS(3854), + [anon_sym_using] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3856), + [anon_sym___declspec] = ACTIONS(3854), + [anon_sym___based] = ACTIONS(3854), + [anon_sym_signed] = ACTIONS(3854), + [anon_sym_unsigned] = ACTIONS(3854), + [anon_sym_long] = ACTIONS(3854), + [anon_sym_short] = ACTIONS(3854), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_static] = ACTIONS(3854), + [anon_sym_register] = ACTIONS(3854), + [anon_sym_inline] = ACTIONS(3854), + [anon_sym___inline] = ACTIONS(3854), + [anon_sym___inline__] = ACTIONS(3854), + [anon_sym___forceinline] = ACTIONS(3854), + [anon_sym_thread_local] = ACTIONS(3854), + [anon_sym___thread] = ACTIONS(3854), + [anon_sym_const] = ACTIONS(3854), + [anon_sym_constexpr] = ACTIONS(3854), + [anon_sym_volatile] = ACTIONS(3854), + [anon_sym_restrict] = ACTIONS(3854), + [anon_sym___restrict__] = ACTIONS(3854), + [anon_sym__Atomic] = ACTIONS(3854), + [anon_sym__Noreturn] = ACTIONS(3854), + [anon_sym_noreturn] = ACTIONS(3854), + [anon_sym__Nonnull] = ACTIONS(3854), + [anon_sym_mutable] = ACTIONS(3854), + [anon_sym_constinit] = ACTIONS(3854), + [anon_sym_consteval] = ACTIONS(3854), + [anon_sym_alignas] = ACTIONS(3854), + [anon_sym__Alignas] = ACTIONS(3854), + [sym_primitive_type] = ACTIONS(3854), + [anon_sym_enum] = ACTIONS(3854), + [anon_sym_class] = ACTIONS(3854), + [anon_sym_struct] = ACTIONS(3854), + [anon_sym_union] = ACTIONS(3854), + [anon_sym_typename] = ACTIONS(3854), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3854), + [anon_sym_decltype] = ACTIONS(3854), + [anon_sym_explicit] = ACTIONS(3854), + [anon_sym_private] = ACTIONS(3854), + [anon_sym_template] = ACTIONS(3854), + [anon_sym_operator] = ACTIONS(3854), + [anon_sym_friend] = ACTIONS(3854), + [anon_sym_public] = ACTIONS(3854), + [anon_sym_protected] = ACTIONS(3854), + [anon_sym_static_assert] = ACTIONS(3854), + [anon_sym_LBRACK_COLON] = ACTIONS(3856), }, - [STATE(2807)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(2830), - [sym__declarator] = STATE(8823), - [sym__abstract_declarator] = STATE(9053), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(3787), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5340), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(3787), - [aux_sym_pointer_declarator_repeat1] = STATE(2830), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8708), - [anon_sym_AMP_AMP] = ACTIONS(8710), - [anon_sym_AMP] = ACTIONS(8712), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6861), - [anon_sym___attribute] = ACTIONS(6861), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [STATE(2823)] = { + [sym_identifier] = ACTIONS(4313), + [aux_sym_preproc_def_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token2] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), + [aux_sym_preproc_else_token1] = ACTIONS(4313), + [aux_sym_preproc_elif_token1] = ACTIONS(4313), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4313), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4313), + [sym_preproc_directive] = ACTIONS(4313), + [anon_sym_LPAREN2] = ACTIONS(4315), + [anon_sym_TILDE] = ACTIONS(4315), + [anon_sym_STAR] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym___extension__] = ACTIONS(4313), + [anon_sym_typedef] = ACTIONS(4313), + [anon_sym_virtual] = ACTIONS(4313), + [anon_sym_extern] = ACTIONS(4313), + [anon_sym___attribute__] = ACTIONS(4313), + [anon_sym___attribute] = ACTIONS(4313), + [anon_sym_using] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4315), + [anon_sym___declspec] = ACTIONS(4313), + [anon_sym___based] = ACTIONS(4313), + [anon_sym_signed] = ACTIONS(4313), + [anon_sym_unsigned] = ACTIONS(4313), + [anon_sym_long] = ACTIONS(4313), + [anon_sym_short] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_static] = ACTIONS(4313), + [anon_sym_register] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym___inline] = ACTIONS(4313), + [anon_sym___inline__] = ACTIONS(4313), + [anon_sym___forceinline] = ACTIONS(4313), + [anon_sym_thread_local] = ACTIONS(4313), + [anon_sym___thread] = ACTIONS(4313), + [anon_sym_const] = ACTIONS(4313), + [anon_sym_constexpr] = ACTIONS(4313), + [anon_sym_volatile] = ACTIONS(4313), + [anon_sym_restrict] = ACTIONS(4313), + [anon_sym___restrict__] = ACTIONS(4313), + [anon_sym__Atomic] = ACTIONS(4313), + [anon_sym__Noreturn] = ACTIONS(4313), + [anon_sym_noreturn] = ACTIONS(4313), + [anon_sym__Nonnull] = ACTIONS(4313), + [anon_sym_mutable] = ACTIONS(4313), + [anon_sym_constinit] = ACTIONS(4313), + [anon_sym_consteval] = ACTIONS(4313), + [anon_sym_alignas] = ACTIONS(4313), + [anon_sym__Alignas] = ACTIONS(4313), + [sym_primitive_type] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_struct] = ACTIONS(4313), + [anon_sym_union] = ACTIONS(4313), + [anon_sym_typename] = ACTIONS(4313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4313), + [anon_sym_decltype] = ACTIONS(4313), + [anon_sym_explicit] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_template] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_friend] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_static_assert] = ACTIONS(4313), + [anon_sym_LBRACK_COLON] = ACTIONS(4315), }, - [STATE(2808)] = { - [sym_identifier] = ACTIONS(3931), - [aux_sym_preproc_def_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token2] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), - [aux_sym_preproc_else_token1] = ACTIONS(3931), - [aux_sym_preproc_elif_token1] = ACTIONS(3931), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3931), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3931), - [sym_preproc_directive] = ACTIONS(3931), - [anon_sym_LPAREN2] = ACTIONS(3933), - [anon_sym_TILDE] = ACTIONS(3933), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(3931), - [anon_sym_SEMI] = ACTIONS(3933), - [anon_sym___extension__] = ACTIONS(3931), - [anon_sym_typedef] = ACTIONS(3931), - [anon_sym_virtual] = ACTIONS(3931), - [anon_sym_extern] = ACTIONS(3931), - [anon_sym___attribute__] = ACTIONS(3931), - [anon_sym___attribute] = ACTIONS(3931), - [anon_sym_using] = ACTIONS(3931), - [anon_sym_COLON_COLON] = ACTIONS(3933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), - [anon_sym___declspec] = ACTIONS(3931), - [anon_sym___based] = ACTIONS(3931), - [anon_sym_signed] = ACTIONS(3931), - [anon_sym_unsigned] = ACTIONS(3931), - [anon_sym_long] = ACTIONS(3931), - [anon_sym_short] = ACTIONS(3931), - [anon_sym_LBRACK] = ACTIONS(3931), - [anon_sym_static] = ACTIONS(3931), - [anon_sym_register] = ACTIONS(3931), - [anon_sym_inline] = ACTIONS(3931), - [anon_sym___inline] = ACTIONS(3931), - [anon_sym___inline__] = ACTIONS(3931), - [anon_sym___forceinline] = ACTIONS(3931), - [anon_sym_thread_local] = ACTIONS(3931), - [anon_sym___thread] = ACTIONS(3931), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_constexpr] = ACTIONS(3931), - [anon_sym_volatile] = ACTIONS(3931), - [anon_sym_restrict] = ACTIONS(3931), - [anon_sym___restrict__] = ACTIONS(3931), - [anon_sym__Atomic] = ACTIONS(3931), - [anon_sym__Noreturn] = ACTIONS(3931), - [anon_sym_noreturn] = ACTIONS(3931), - [anon_sym__Nonnull] = ACTIONS(3931), - [anon_sym_mutable] = ACTIONS(3931), - [anon_sym_constinit] = ACTIONS(3931), - [anon_sym_consteval] = ACTIONS(3931), - [anon_sym_alignas] = ACTIONS(3931), - [anon_sym__Alignas] = ACTIONS(3931), - [sym_primitive_type] = ACTIONS(3931), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3931), - [anon_sym_struct] = ACTIONS(3931), - [anon_sym_union] = ACTIONS(3931), - [anon_sym_typename] = ACTIONS(3931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3931), - [anon_sym_decltype] = ACTIONS(3931), - [anon_sym_explicit] = ACTIONS(3931), - [anon_sym_private] = ACTIONS(3931), - [anon_sym_template] = ACTIONS(3931), - [anon_sym_operator] = ACTIONS(3931), - [anon_sym_friend] = ACTIONS(3931), - [anon_sym_public] = ACTIONS(3931), - [anon_sym_protected] = ACTIONS(3931), - [anon_sym_static_assert] = ACTIONS(3931), - [anon_sym_LBRACK_COLON] = ACTIONS(3933), + [STATE(2824)] = { + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token2] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [aux_sym_preproc_else_token1] = ACTIONS(3644), + [aux_sym_preproc_elif_token1] = ACTIONS(3644), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_friend] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), }, - [STATE(2809)] = { - [sym_identifier] = ACTIONS(3958), - [aux_sym_preproc_def_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token2] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), - [aux_sym_preproc_else_token1] = ACTIONS(3958), - [aux_sym_preproc_elif_token1] = ACTIONS(3958), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3958), - [sym_preproc_directive] = ACTIONS(3958), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_typedef] = ACTIONS(3958), - [anon_sym_virtual] = ACTIONS(3958), - [anon_sym_extern] = ACTIONS(3958), - [anon_sym___attribute__] = ACTIONS(3958), - [anon_sym___attribute] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), - [anon_sym___declspec] = ACTIONS(3958), - [anon_sym___based] = ACTIONS(3958), - [anon_sym_signed] = ACTIONS(3958), - [anon_sym_unsigned] = ACTIONS(3958), - [anon_sym_long] = ACTIONS(3958), - [anon_sym_short] = ACTIONS(3958), - [anon_sym_LBRACK] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3958), - [anon_sym_register] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym___inline] = ACTIONS(3958), - [anon_sym___inline__] = ACTIONS(3958), - [anon_sym___forceinline] = ACTIONS(3958), - [anon_sym_thread_local] = ACTIONS(3958), - [anon_sym___thread] = ACTIONS(3958), - [anon_sym_const] = ACTIONS(3958), - [anon_sym_constexpr] = ACTIONS(3958), - [anon_sym_volatile] = ACTIONS(3958), - [anon_sym_restrict] = ACTIONS(3958), - [anon_sym___restrict__] = ACTIONS(3958), - [anon_sym__Atomic] = ACTIONS(3958), - [anon_sym__Noreturn] = ACTIONS(3958), - [anon_sym_noreturn] = ACTIONS(3958), - [anon_sym__Nonnull] = ACTIONS(3958), - [anon_sym_mutable] = ACTIONS(3958), - [anon_sym_constinit] = ACTIONS(3958), - [anon_sym_consteval] = ACTIONS(3958), - [anon_sym_alignas] = ACTIONS(3958), - [anon_sym__Alignas] = ACTIONS(3958), - [sym_primitive_type] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_union] = ACTIONS(3958), - [anon_sym_typename] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3958), - [anon_sym_decltype] = ACTIONS(3958), - [anon_sym_explicit] = ACTIONS(3958), - [anon_sym_private] = ACTIONS(3958), - [anon_sym_template] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_friend] = ACTIONS(3958), - [anon_sym_public] = ACTIONS(3958), - [anon_sym_protected] = ACTIONS(3958), - [anon_sym_static_assert] = ACTIONS(3958), - [anon_sym_LBRACK_COLON] = ACTIONS(3960), + [STATE(2825)] = { + [sym_attribute_specifier] = STATE(3150), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7493), + [anon_sym_COMMA] = ACTIONS(7493), + [anon_sym_LPAREN2] = ACTIONS(7493), + [anon_sym_DASH] = ACTIONS(7491), + [anon_sym_PLUS] = ACTIONS(7491), + [anon_sym_STAR] = ACTIONS(7491), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7491), + [anon_sym_PIPE_PIPE] = ACTIONS(7493), + [anon_sym_AMP_AMP] = ACTIONS(7493), + [anon_sym_PIPE] = ACTIONS(7491), + [anon_sym_CARET] = ACTIONS(7491), + [anon_sym_AMP] = ACTIONS(7491), + [anon_sym_EQ_EQ] = ACTIONS(7493), + [anon_sym_BANG_EQ] = ACTIONS(7493), + [anon_sym_GT] = ACTIONS(7491), + [anon_sym_GT_EQ] = ACTIONS(7491), + [anon_sym_LT_EQ] = ACTIONS(7491), + [anon_sym_LT] = ACTIONS(7491), + [anon_sym_LT_LT] = ACTIONS(7491), + [anon_sym_GT_GT] = ACTIONS(7491), + [anon_sym___extension__] = ACTIONS(7493), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7493), + [anon_sym_EQ] = ACTIONS(7491), + [anon_sym_const] = ACTIONS(7491), + [anon_sym_constexpr] = ACTIONS(7493), + [anon_sym_volatile] = ACTIONS(7493), + [anon_sym_restrict] = ACTIONS(7493), + [anon_sym___restrict__] = ACTIONS(7493), + [anon_sym__Atomic] = ACTIONS(7493), + [anon_sym__Noreturn] = ACTIONS(7493), + [anon_sym_noreturn] = ACTIONS(7493), + [anon_sym__Nonnull] = ACTIONS(7493), + [anon_sym_mutable] = ACTIONS(7493), + [anon_sym_constinit] = ACTIONS(7493), + [anon_sym_consteval] = ACTIONS(7493), + [anon_sym_alignas] = ACTIONS(7493), + [anon_sym__Alignas] = ACTIONS(7493), + [anon_sym_QMARK] = ACTIONS(7493), + [anon_sym_STAR_EQ] = ACTIONS(7493), + [anon_sym_SLASH_EQ] = ACTIONS(7493), + [anon_sym_PERCENT_EQ] = ACTIONS(7493), + [anon_sym_PLUS_EQ] = ACTIONS(7493), + [anon_sym_DASH_EQ] = ACTIONS(7493), + [anon_sym_LT_LT_EQ] = ACTIONS(7493), + [anon_sym_GT_GT_EQ] = ACTIONS(7491), + [anon_sym_AMP_EQ] = ACTIONS(7493), + [anon_sym_CARET_EQ] = ACTIONS(7493), + [anon_sym_PIPE_EQ] = ACTIONS(7493), + [anon_sym_and_eq] = ACTIONS(7493), + [anon_sym_or_eq] = ACTIONS(7493), + [anon_sym_xor_eq] = ACTIONS(7493), + [anon_sym_LT_EQ_GT] = ACTIONS(7493), + [anon_sym_or] = ACTIONS(7491), + [anon_sym_and] = ACTIONS(7491), + [anon_sym_bitor] = ACTIONS(7493), + [anon_sym_xor] = ACTIONS(7491), + [anon_sym_bitand] = ACTIONS(7493), + [anon_sym_not_eq] = ACTIONS(7493), + [anon_sym_DASH_DASH] = ACTIONS(7493), + [anon_sym_PLUS_PLUS] = ACTIONS(7493), + [anon_sym_DOT] = ACTIONS(7491), + [anon_sym_DOT_STAR] = ACTIONS(7493), + [anon_sym_DASH_GT] = ACTIONS(7493), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7493), + [anon_sym_override] = ACTIONS(7493), + [anon_sym_GT2] = ACTIONS(7493), + [anon_sym_requires] = ACTIONS(7493), }, - [STATE(2810)] = { - [sym_identifier] = ACTIONS(4108), - [aux_sym_preproc_def_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token2] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), - [aux_sym_preproc_else_token1] = ACTIONS(4108), - [aux_sym_preproc_elif_token1] = ACTIONS(4108), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4108), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_LPAREN2] = ACTIONS(4110), - [anon_sym_TILDE] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym___extension__] = ACTIONS(4108), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_virtual] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym___attribute__] = ACTIONS(4108), - [anon_sym___attribute] = ACTIONS(4108), - [anon_sym_using] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), - [anon_sym___declspec] = ACTIONS(4108), - [anon_sym___based] = ACTIONS(4108), - [anon_sym_signed] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4108), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym___inline] = ACTIONS(4108), - [anon_sym___inline__] = ACTIONS(4108), - [anon_sym___forceinline] = ACTIONS(4108), - [anon_sym_thread_local] = ACTIONS(4108), - [anon_sym___thread] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym___restrict__] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym__Noreturn] = ACTIONS(4108), - [anon_sym_noreturn] = ACTIONS(4108), - [anon_sym__Nonnull] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_constinit] = ACTIONS(4108), - [anon_sym_consteval] = ACTIONS(4108), - [anon_sym_alignas] = ACTIONS(4108), - [anon_sym__Alignas] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_class] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4108), - [anon_sym_decltype] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_private] = ACTIONS(4108), - [anon_sym_template] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_friend] = ACTIONS(4108), - [anon_sym_public] = ACTIONS(4108), - [anon_sym_protected] = ACTIONS(4108), - [anon_sym_static_assert] = ACTIONS(4108), - [anon_sym_LBRACK_COLON] = ACTIONS(4110), + [STATE(2826)] = { + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token2] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [aux_sym_preproc_else_token1] = ACTIONS(3782), + [aux_sym_preproc_elif_token1] = ACTIONS(3782), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_private] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_friend] = ACTIONS(3782), + [anon_sym_public] = ACTIONS(3782), + [anon_sym_protected] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), }, - [STATE(2811)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7291), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7291), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7291), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7291), - [anon_sym_GT_GT] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7293), - [anon_sym___attribute__] = ACTIONS(7293), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_EQ] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7293), - [anon_sym_volatile] = ACTIONS(7293), - [anon_sym_restrict] = ACTIONS(7293), - [anon_sym___restrict__] = ACTIONS(7293), - [anon_sym__Atomic] = ACTIONS(7293), - [anon_sym__Noreturn] = ACTIONS(7293), - [anon_sym_noreturn] = ACTIONS(7293), - [anon_sym__Nonnull] = ACTIONS(7293), - [anon_sym_mutable] = ACTIONS(7293), - [anon_sym_constinit] = ACTIONS(7293), - [anon_sym_consteval] = ACTIONS(7293), - [anon_sym_alignas] = ACTIONS(7293), - [anon_sym__Alignas] = ACTIONS(7293), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_STAR_EQ] = ACTIONS(7293), - [anon_sym_SLASH_EQ] = ACTIONS(7293), - [anon_sym_PERCENT_EQ] = ACTIONS(7293), - [anon_sym_PLUS_EQ] = ACTIONS(7293), - [anon_sym_DASH_EQ] = ACTIONS(7293), - [anon_sym_LT_LT_EQ] = ACTIONS(7293), - [anon_sym_GT_GT_EQ] = ACTIONS(7293), - [anon_sym_AMP_EQ] = ACTIONS(7293), - [anon_sym_CARET_EQ] = ACTIONS(7293), - [anon_sym_PIPE_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7293), - [anon_sym_and] = ACTIONS(7293), - [anon_sym_bitor] = ACTIONS(7293), - [anon_sym_xor] = ACTIONS(7293), - [anon_sym_bitand] = ACTIONS(7293), - [anon_sym_not_eq] = ACTIONS(7293), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7293), - [anon_sym_decltype] = ACTIONS(7293), - [anon_sym_final] = ACTIONS(7293), - [anon_sym_override] = ACTIONS(7293), - [anon_sym_requires] = ACTIONS(7293), - [anon_sym_DASH_GT_STAR] = ACTIONS(7293), + [STATE(2827)] = { + [sym_identifier] = ACTIONS(4293), + [aux_sym_preproc_def_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token2] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), + [aux_sym_preproc_else_token1] = ACTIONS(4293), + [aux_sym_preproc_elif_token1] = ACTIONS(4293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4293), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4293), + [sym_preproc_directive] = ACTIONS(4293), + [anon_sym_LPAREN2] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym___extension__] = ACTIONS(4293), + [anon_sym_typedef] = ACTIONS(4293), + [anon_sym_virtual] = ACTIONS(4293), + [anon_sym_extern] = ACTIONS(4293), + [anon_sym___attribute__] = ACTIONS(4293), + [anon_sym___attribute] = ACTIONS(4293), + [anon_sym_using] = ACTIONS(4293), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4295), + [anon_sym___declspec] = ACTIONS(4293), + [anon_sym___based] = ACTIONS(4293), + [anon_sym_signed] = ACTIONS(4293), + [anon_sym_unsigned] = ACTIONS(4293), + [anon_sym_long] = ACTIONS(4293), + [anon_sym_short] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_static] = ACTIONS(4293), + [anon_sym_register] = ACTIONS(4293), + [anon_sym_inline] = ACTIONS(4293), + [anon_sym___inline] = ACTIONS(4293), + [anon_sym___inline__] = ACTIONS(4293), + [anon_sym___forceinline] = ACTIONS(4293), + [anon_sym_thread_local] = ACTIONS(4293), + [anon_sym___thread] = ACTIONS(4293), + [anon_sym_const] = ACTIONS(4293), + [anon_sym_constexpr] = ACTIONS(4293), + [anon_sym_volatile] = ACTIONS(4293), + [anon_sym_restrict] = ACTIONS(4293), + [anon_sym___restrict__] = ACTIONS(4293), + [anon_sym__Atomic] = ACTIONS(4293), + [anon_sym__Noreturn] = ACTIONS(4293), + [anon_sym_noreturn] = ACTIONS(4293), + [anon_sym__Nonnull] = ACTIONS(4293), + [anon_sym_mutable] = ACTIONS(4293), + [anon_sym_constinit] = ACTIONS(4293), + [anon_sym_consteval] = ACTIONS(4293), + [anon_sym_alignas] = ACTIONS(4293), + [anon_sym__Alignas] = ACTIONS(4293), + [sym_primitive_type] = ACTIONS(4293), + [anon_sym_enum] = ACTIONS(4293), + [anon_sym_class] = ACTIONS(4293), + [anon_sym_struct] = ACTIONS(4293), + [anon_sym_union] = ACTIONS(4293), + [anon_sym_typename] = ACTIONS(4293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4293), + [anon_sym_decltype] = ACTIONS(4293), + [anon_sym_explicit] = ACTIONS(4293), + [anon_sym_private] = ACTIONS(4293), + [anon_sym_template] = ACTIONS(4293), + [anon_sym_operator] = ACTIONS(4293), + [anon_sym_friend] = ACTIONS(4293), + [anon_sym_public] = ACTIONS(4293), + [anon_sym_protected] = ACTIONS(4293), + [anon_sym_static_assert] = ACTIONS(4293), + [anon_sym_LBRACK_COLON] = ACTIONS(4295), }, - [STATE(2812)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_GT_GT] = ACTIONS(7293), - [anon_sym_SEMI] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), - [anon_sym___based] = ACTIONS(7291), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_RBRACE] = ACTIONS(7293), - [anon_sym_signed] = ACTIONS(7291), - [anon_sym_unsigned] = ACTIONS(7291), - [anon_sym_long] = ACTIONS(7291), - [anon_sym_short] = ACTIONS(7291), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [sym_primitive_type] = ACTIONS(7291), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7291), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7291), - [anon_sym_not_eq] = ACTIONS(7291), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_requires] = ACTIONS(7291), - [anon_sym_COLON_RBRACK] = ACTIONS(7293), + [STATE(2828)] = { + [sym_identifier] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token2] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [aux_sym_preproc_else_token1] = ACTIONS(4297), + [aux_sym_preproc_elif_token1] = ACTIONS(4297), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4299), + [anon_sym_TILDE] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_AMP_AMP] = ACTIONS(4299), + [anon_sym_AMP] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4299), + [anon_sym___extension__] = ACTIONS(4297), + [anon_sym_typedef] = ACTIONS(4297), + [anon_sym_virtual] = ACTIONS(4297), + [anon_sym_extern] = ACTIONS(4297), + [anon_sym___attribute__] = ACTIONS(4297), + [anon_sym___attribute] = ACTIONS(4297), + [anon_sym_using] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), + [anon_sym___declspec] = ACTIONS(4297), + [anon_sym___based] = ACTIONS(4297), + [anon_sym_signed] = ACTIONS(4297), + [anon_sym_unsigned] = ACTIONS(4297), + [anon_sym_long] = ACTIONS(4297), + [anon_sym_short] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_static] = ACTIONS(4297), + [anon_sym_register] = ACTIONS(4297), + [anon_sym_inline] = ACTIONS(4297), + [anon_sym___inline] = ACTIONS(4297), + [anon_sym___inline__] = ACTIONS(4297), + [anon_sym___forceinline] = ACTIONS(4297), + [anon_sym_thread_local] = ACTIONS(4297), + [anon_sym___thread] = ACTIONS(4297), + [anon_sym_const] = ACTIONS(4297), + [anon_sym_constexpr] = ACTIONS(4297), + [anon_sym_volatile] = ACTIONS(4297), + [anon_sym_restrict] = ACTIONS(4297), + [anon_sym___restrict__] = ACTIONS(4297), + [anon_sym__Atomic] = ACTIONS(4297), + [anon_sym__Noreturn] = ACTIONS(4297), + [anon_sym_noreturn] = ACTIONS(4297), + [anon_sym__Nonnull] = ACTIONS(4297), + [anon_sym_mutable] = ACTIONS(4297), + [anon_sym_constinit] = ACTIONS(4297), + [anon_sym_consteval] = ACTIONS(4297), + [anon_sym_alignas] = ACTIONS(4297), + [anon_sym__Alignas] = ACTIONS(4297), + [sym_primitive_type] = ACTIONS(4297), + [anon_sym_enum] = ACTIONS(4297), + [anon_sym_class] = ACTIONS(4297), + [anon_sym_struct] = ACTIONS(4297), + [anon_sym_union] = ACTIONS(4297), + [anon_sym_typename] = ACTIONS(4297), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4297), + [anon_sym_decltype] = ACTIONS(4297), + [anon_sym_explicit] = ACTIONS(4297), + [anon_sym_private] = ACTIONS(4297), + [anon_sym_template] = ACTIONS(4297), + [anon_sym_operator] = ACTIONS(4297), + [anon_sym_friend] = ACTIONS(4297), + [anon_sym_public] = ACTIONS(4297), + [anon_sym_protected] = ACTIONS(4297), + [anon_sym_static_assert] = ACTIONS(4297), + [anon_sym_LBRACK_COLON] = ACTIONS(4299), }, - [STATE(2813)] = { - [sym_identifier] = ACTIONS(6608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [anon_sym_RPAREN] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6610), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6610), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6610), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6610), - [anon_sym_GT_GT] = ACTIONS(6610), - [anon_sym_SEMI] = ACTIONS(6610), - [anon_sym___extension__] = ACTIONS(6608), - [anon_sym___attribute__] = ACTIONS(6608), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6610), - [anon_sym___based] = ACTIONS(6608), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_RBRACE] = ACTIONS(6610), - [anon_sym_signed] = ACTIONS(6608), - [anon_sym_unsigned] = ACTIONS(6608), - [anon_sym_long] = ACTIONS(6608), - [anon_sym_short] = ACTIONS(6608), - [anon_sym_LBRACK] = ACTIONS(6610), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6608), - [anon_sym_volatile] = ACTIONS(6608), - [anon_sym_restrict] = ACTIONS(6608), - [anon_sym___restrict__] = ACTIONS(6608), - [anon_sym__Atomic] = ACTIONS(6608), - [anon_sym__Noreturn] = ACTIONS(6608), - [anon_sym_noreturn] = ACTIONS(6608), - [anon_sym__Nonnull] = ACTIONS(6608), - [anon_sym_mutable] = ACTIONS(6608), - [anon_sym_constinit] = ACTIONS(6608), - [anon_sym_consteval] = ACTIONS(6608), - [anon_sym_alignas] = ACTIONS(6608), - [anon_sym__Alignas] = ACTIONS(6608), - [sym_primitive_type] = ACTIONS(6608), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6608), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6608), - [anon_sym_not_eq] = ACTIONS(6608), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6608), - [anon_sym_decltype] = ACTIONS(6608), - [anon_sym_final] = ACTIONS(6608), - [anon_sym_override] = ACTIONS(6608), - [anon_sym_requires] = ACTIONS(6608), - [anon_sym_COLON_RBRACK] = ACTIONS(6610), + [STATE(2829)] = { + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token2] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [aux_sym_preproc_else_token1] = ACTIONS(4289), + [aux_sym_preproc_elif_token1] = ACTIONS(4289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_friend] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), }, - [STATE(2814)] = { - [sym_identifier] = ACTIONS(6616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [anon_sym_RPAREN] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6618), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6618), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6618), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6618), - [anon_sym_GT_GT] = ACTIONS(6618), - [anon_sym_SEMI] = ACTIONS(6618), - [anon_sym___extension__] = ACTIONS(6616), - [anon_sym___attribute__] = ACTIONS(6616), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6618), - [anon_sym___based] = ACTIONS(6616), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_RBRACE] = ACTIONS(6618), - [anon_sym_signed] = ACTIONS(6616), - [anon_sym_unsigned] = ACTIONS(6616), - [anon_sym_long] = ACTIONS(6616), - [anon_sym_short] = ACTIONS(6616), - [anon_sym_LBRACK] = ACTIONS(6618), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6616), - [anon_sym_volatile] = ACTIONS(6616), - [anon_sym_restrict] = ACTIONS(6616), - [anon_sym___restrict__] = ACTIONS(6616), - [anon_sym__Atomic] = ACTIONS(6616), - [anon_sym__Noreturn] = ACTIONS(6616), - [anon_sym_noreturn] = ACTIONS(6616), - [anon_sym__Nonnull] = ACTIONS(6616), - [anon_sym_mutable] = ACTIONS(6616), - [anon_sym_constinit] = ACTIONS(6616), - [anon_sym_consteval] = ACTIONS(6616), - [anon_sym_alignas] = ACTIONS(6616), - [anon_sym__Alignas] = ACTIONS(6616), - [sym_primitive_type] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6616), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6616), - [anon_sym_not_eq] = ACTIONS(6616), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6616), - [anon_sym_decltype] = ACTIONS(6616), - [anon_sym_final] = ACTIONS(6616), - [anon_sym_override] = ACTIONS(6616), - [anon_sym_requires] = ACTIONS(6616), - [anon_sym_COLON_RBRACK] = ACTIONS(6618), + [STATE(2830)] = { + [sym_identifier] = ACTIONS(3722), + [aux_sym_preproc_def_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token2] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3722), + [aux_sym_preproc_else_token1] = ACTIONS(3722), + [aux_sym_preproc_elif_token1] = ACTIONS(3722), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3722), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3722), + [sym_preproc_directive] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_SEMI] = ACTIONS(3724), + [anon_sym___extension__] = ACTIONS(3722), + [anon_sym_typedef] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym___attribute] = ACTIONS(3722), + [anon_sym_using] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3724), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym_signed] = ACTIONS(3722), + [anon_sym_unsigned] = ACTIONS(3722), + [anon_sym_long] = ACTIONS(3722), + [anon_sym_short] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym___inline] = ACTIONS(3722), + [anon_sym___inline__] = ACTIONS(3722), + [anon_sym___forceinline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym___thread] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym___restrict__] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym__Noreturn] = ACTIONS(3722), + [anon_sym_noreturn] = ACTIONS(3722), + [anon_sym__Nonnull] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_alignas] = ACTIONS(3722), + [anon_sym__Alignas] = ACTIONS(3722), + [sym_primitive_type] = ACTIONS(3722), + [anon_sym_enum] = ACTIONS(3722), + [anon_sym_class] = ACTIONS(3722), + [anon_sym_struct] = ACTIONS(3722), + [anon_sym_union] = ACTIONS(3722), + [anon_sym_typename] = ACTIONS(3722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_explicit] = ACTIONS(3722), + [anon_sym_private] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + [anon_sym_friend] = ACTIONS(3722), + [anon_sym_public] = ACTIONS(3722), + [anon_sym_protected] = ACTIONS(3722), + [anon_sym_static_assert] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(3724), }, - [STATE(2815)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token2] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [aux_sym_preproc_else_token1] = ACTIONS(3600), - [aux_sym_preproc_elif_token1] = ACTIONS(3600), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_private] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_friend] = ACTIONS(3600), - [anon_sym_public] = ACTIONS(3600), - [anon_sym_protected] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [STATE(2831)] = { + [sym_identifier] = ACTIONS(4305), + [aux_sym_preproc_def_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token2] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4305), + [aux_sym_preproc_else_token1] = ACTIONS(4305), + [aux_sym_preproc_elif_token1] = ACTIONS(4305), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4305), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4305), + [sym_preproc_directive] = ACTIONS(4305), + [anon_sym_LPAREN2] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_typedef] = ACTIONS(4305), + [anon_sym_virtual] = ACTIONS(4305), + [anon_sym_extern] = ACTIONS(4305), + [anon_sym___attribute__] = ACTIONS(4305), + [anon_sym___attribute] = ACTIONS(4305), + [anon_sym_using] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4307), + [anon_sym___declspec] = ACTIONS(4305), + [anon_sym___based] = ACTIONS(4305), + [anon_sym_signed] = ACTIONS(4305), + [anon_sym_unsigned] = ACTIONS(4305), + [anon_sym_long] = ACTIONS(4305), + [anon_sym_short] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_static] = ACTIONS(4305), + [anon_sym_register] = ACTIONS(4305), + [anon_sym_inline] = ACTIONS(4305), + [anon_sym___inline] = ACTIONS(4305), + [anon_sym___inline__] = ACTIONS(4305), + [anon_sym___forceinline] = ACTIONS(4305), + [anon_sym_thread_local] = ACTIONS(4305), + [anon_sym___thread] = ACTIONS(4305), + [anon_sym_const] = ACTIONS(4305), + [anon_sym_constexpr] = ACTIONS(4305), + [anon_sym_volatile] = ACTIONS(4305), + [anon_sym_restrict] = ACTIONS(4305), + [anon_sym___restrict__] = ACTIONS(4305), + [anon_sym__Atomic] = ACTIONS(4305), + [anon_sym__Noreturn] = ACTIONS(4305), + [anon_sym_noreturn] = ACTIONS(4305), + [anon_sym__Nonnull] = ACTIONS(4305), + [anon_sym_mutable] = ACTIONS(4305), + [anon_sym_constinit] = ACTIONS(4305), + [anon_sym_consteval] = ACTIONS(4305), + [anon_sym_alignas] = ACTIONS(4305), + [anon_sym__Alignas] = ACTIONS(4305), + [sym_primitive_type] = ACTIONS(4305), + [anon_sym_enum] = ACTIONS(4305), + [anon_sym_class] = ACTIONS(4305), + [anon_sym_struct] = ACTIONS(4305), + [anon_sym_union] = ACTIONS(4305), + [anon_sym_typename] = ACTIONS(4305), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4305), + [anon_sym_decltype] = ACTIONS(4305), + [anon_sym_explicit] = ACTIONS(4305), + [anon_sym_private] = ACTIONS(4305), + [anon_sym_template] = ACTIONS(4305), + [anon_sym_operator] = ACTIONS(4305), + [anon_sym_friend] = ACTIONS(4305), + [anon_sym_public] = ACTIONS(4305), + [anon_sym_protected] = ACTIONS(4305), + [anon_sym_static_assert] = ACTIONS(4305), + [anon_sym_LBRACK_COLON] = ACTIONS(4307), }, - [STATE(2816)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token2] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [aux_sym_preproc_else_token1] = ACTIONS(3600), - [aux_sym_preproc_elif_token1] = ACTIONS(3600), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_private] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_friend] = ACTIONS(3600), - [anon_sym_public] = ACTIONS(3600), - [anon_sym_protected] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [STATE(2832)] = { + [sym_identifier] = ACTIONS(4317), + [aux_sym_preproc_def_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token2] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4317), + [aux_sym_preproc_else_token1] = ACTIONS(4317), + [aux_sym_preproc_elif_token1] = ACTIONS(4317), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4317), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4317), + [sym_preproc_directive] = ACTIONS(4317), + [anon_sym_LPAREN2] = ACTIONS(4319), + [anon_sym_TILDE] = ACTIONS(4319), + [anon_sym_STAR] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym___extension__] = ACTIONS(4317), + [anon_sym_typedef] = ACTIONS(4317), + [anon_sym_virtual] = ACTIONS(4317), + [anon_sym_extern] = ACTIONS(4317), + [anon_sym___attribute__] = ACTIONS(4317), + [anon_sym___attribute] = ACTIONS(4317), + [anon_sym_using] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4319), + [anon_sym___declspec] = ACTIONS(4317), + [anon_sym___based] = ACTIONS(4317), + [anon_sym_signed] = ACTIONS(4317), + [anon_sym_unsigned] = ACTIONS(4317), + [anon_sym_long] = ACTIONS(4317), + [anon_sym_short] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [anon_sym_static] = ACTIONS(4317), + [anon_sym_register] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym___inline] = ACTIONS(4317), + [anon_sym___inline__] = ACTIONS(4317), + [anon_sym___forceinline] = ACTIONS(4317), + [anon_sym_thread_local] = ACTIONS(4317), + [anon_sym___thread] = ACTIONS(4317), + [anon_sym_const] = ACTIONS(4317), + [anon_sym_constexpr] = ACTIONS(4317), + [anon_sym_volatile] = ACTIONS(4317), + [anon_sym_restrict] = ACTIONS(4317), + [anon_sym___restrict__] = ACTIONS(4317), + [anon_sym__Atomic] = ACTIONS(4317), + [anon_sym__Noreturn] = ACTIONS(4317), + [anon_sym_noreturn] = ACTIONS(4317), + [anon_sym__Nonnull] = ACTIONS(4317), + [anon_sym_mutable] = ACTIONS(4317), + [anon_sym_constinit] = ACTIONS(4317), + [anon_sym_consteval] = ACTIONS(4317), + [anon_sym_alignas] = ACTIONS(4317), + [anon_sym__Alignas] = ACTIONS(4317), + [sym_primitive_type] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_class] = ACTIONS(4317), + [anon_sym_struct] = ACTIONS(4317), + [anon_sym_union] = ACTIONS(4317), + [anon_sym_typename] = ACTIONS(4317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4317), + [anon_sym_decltype] = ACTIONS(4317), + [anon_sym_explicit] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_template] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_friend] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_static_assert] = ACTIONS(4317), + [anon_sym_LBRACK_COLON] = ACTIONS(4319), }, - [STATE(2817)] = { - [sym_identifier] = ACTIONS(6620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [anon_sym_RPAREN] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6622), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6622), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6622), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6622), - [anon_sym_GT_GT] = ACTIONS(6622), - [anon_sym_SEMI] = ACTIONS(6622), - [anon_sym___extension__] = ACTIONS(6620), - [anon_sym___attribute__] = ACTIONS(6620), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6622), - [anon_sym___based] = ACTIONS(6620), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_RBRACE] = ACTIONS(6622), - [anon_sym_signed] = ACTIONS(6620), - [anon_sym_unsigned] = ACTIONS(6620), - [anon_sym_long] = ACTIONS(6620), - [anon_sym_short] = ACTIONS(6620), - [anon_sym_LBRACK] = ACTIONS(6622), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6620), - [anon_sym_volatile] = ACTIONS(6620), - [anon_sym_restrict] = ACTIONS(6620), - [anon_sym___restrict__] = ACTIONS(6620), - [anon_sym__Atomic] = ACTIONS(6620), - [anon_sym__Noreturn] = ACTIONS(6620), - [anon_sym_noreturn] = ACTIONS(6620), - [anon_sym__Nonnull] = ACTIONS(6620), - [anon_sym_mutable] = ACTIONS(6620), - [anon_sym_constinit] = ACTIONS(6620), - [anon_sym_consteval] = ACTIONS(6620), - [anon_sym_alignas] = ACTIONS(6620), - [anon_sym__Alignas] = ACTIONS(6620), - [sym_primitive_type] = ACTIONS(6620), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6620), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6620), - [anon_sym_not_eq] = ACTIONS(6620), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6620), - [anon_sym_decltype] = ACTIONS(6620), - [anon_sym_final] = ACTIONS(6620), - [anon_sym_override] = ACTIONS(6620), - [anon_sym_requires] = ACTIONS(6620), - [anon_sym_COLON_RBRACK] = ACTIONS(6622), + [STATE(2833)] = { + [sym_attribute_specifier] = STATE(3112), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7503), + [anon_sym_COMMA] = ACTIONS(7503), + [anon_sym_LPAREN2] = ACTIONS(7503), + [anon_sym_DASH] = ACTIONS(7501), + [anon_sym_PLUS] = ACTIONS(7501), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(7501), + [anon_sym_PERCENT] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(7501), + [anon_sym_CARET] = ACTIONS(7501), + [anon_sym_AMP] = ACTIONS(7501), + [anon_sym_EQ_EQ] = ACTIONS(7503), + [anon_sym_BANG_EQ] = ACTIONS(7503), + [anon_sym_GT] = ACTIONS(7501), + [anon_sym_GT_EQ] = ACTIONS(7501), + [anon_sym_LT_EQ] = ACTIONS(7501), + [anon_sym_LT] = ACTIONS(7501), + [anon_sym_LT_LT] = ACTIONS(7501), + [anon_sym_GT_GT] = ACTIONS(7501), + [anon_sym___extension__] = ACTIONS(7503), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7503), + [anon_sym_LBRACK] = ACTIONS(7503), + [anon_sym_EQ] = ACTIONS(7501), + [anon_sym_const] = ACTIONS(7501), + [anon_sym_constexpr] = ACTIONS(7503), + [anon_sym_volatile] = ACTIONS(7503), + [anon_sym_restrict] = ACTIONS(7503), + [anon_sym___restrict__] = ACTIONS(7503), + [anon_sym__Atomic] = ACTIONS(7503), + [anon_sym__Noreturn] = ACTIONS(7503), + [anon_sym_noreturn] = ACTIONS(7503), + [anon_sym__Nonnull] = ACTIONS(7503), + [anon_sym_mutable] = ACTIONS(7503), + [anon_sym_constinit] = ACTIONS(7503), + [anon_sym_consteval] = ACTIONS(7503), + [anon_sym_alignas] = ACTIONS(7503), + [anon_sym__Alignas] = ACTIONS(7503), + [anon_sym_QMARK] = ACTIONS(7503), + [anon_sym_STAR_EQ] = ACTIONS(7503), + [anon_sym_SLASH_EQ] = ACTIONS(7503), + [anon_sym_PERCENT_EQ] = ACTIONS(7503), + [anon_sym_PLUS_EQ] = ACTIONS(7503), + [anon_sym_DASH_EQ] = ACTIONS(7503), + [anon_sym_LT_LT_EQ] = ACTIONS(7503), + [anon_sym_GT_GT_EQ] = ACTIONS(7501), + [anon_sym_AMP_EQ] = ACTIONS(7503), + [anon_sym_CARET_EQ] = ACTIONS(7503), + [anon_sym_PIPE_EQ] = ACTIONS(7503), + [anon_sym_and_eq] = ACTIONS(7503), + [anon_sym_or_eq] = ACTIONS(7503), + [anon_sym_xor_eq] = ACTIONS(7503), + [anon_sym_LT_EQ_GT] = ACTIONS(7503), + [anon_sym_or] = ACTIONS(7501), + [anon_sym_and] = ACTIONS(7501), + [anon_sym_bitor] = ACTIONS(7503), + [anon_sym_xor] = ACTIONS(7501), + [anon_sym_bitand] = ACTIONS(7503), + [anon_sym_not_eq] = ACTIONS(7503), + [anon_sym_DASH_DASH] = ACTIONS(7503), + [anon_sym_PLUS_PLUS] = ACTIONS(7503), + [anon_sym_DOT] = ACTIONS(7501), + [anon_sym_DOT_STAR] = ACTIONS(7503), + [anon_sym_DASH_GT] = ACTIONS(7503), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7503), + [anon_sym_override] = ACTIONS(7503), + [anon_sym_GT2] = ACTIONS(7503), + [anon_sym_requires] = ACTIONS(7503), }, - [STATE(2818)] = { - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [aux_sym_sized_type_specifier_repeat1] = STATE(3564), - [sym_identifier] = ACTIONS(8714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_RPAREN] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym_SEMI] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(8716), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_COLON] = ACTIONS(7207), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7205), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_RBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(8719), - [anon_sym_unsigned] = ACTIONS(8719), - [anon_sym_long] = ACTIONS(8719), - [anon_sym_short] = ACTIONS(8719), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(8716), - [anon_sym_constexpr] = ACTIONS(8716), - [anon_sym_volatile] = ACTIONS(8716), - [anon_sym_restrict] = ACTIONS(8716), - [anon_sym___restrict__] = ACTIONS(8716), - [anon_sym__Atomic] = ACTIONS(8716), - [anon_sym__Noreturn] = ACTIONS(8716), - [anon_sym_noreturn] = ACTIONS(8716), - [anon_sym__Nonnull] = ACTIONS(8716), - [anon_sym_mutable] = ACTIONS(8716), - [anon_sym_constinit] = ACTIONS(8716), - [anon_sym_consteval] = ACTIONS(8716), - [anon_sym_alignas] = ACTIONS(8721), - [anon_sym__Alignas] = ACTIONS(8721), - [sym_primitive_type] = ACTIONS(8724), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), - [anon_sym_COLON_RBRACK] = ACTIONS(7205), + [STATE(2834)] = { + [sym_identifier] = ACTIONS(3746), + [aux_sym_preproc_def_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token2] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3746), + [aux_sym_preproc_else_token1] = ACTIONS(3746), + [aux_sym_preproc_elif_token1] = ACTIONS(3746), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3746), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3746), + [sym_preproc_directive] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_TILDE] = ACTIONS(3748), + [anon_sym_STAR] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym___extension__] = ACTIONS(3746), + [anon_sym_typedef] = ACTIONS(3746), + [anon_sym_virtual] = ACTIONS(3746), + [anon_sym_extern] = ACTIONS(3746), + [anon_sym___attribute__] = ACTIONS(3746), + [anon_sym___attribute] = ACTIONS(3746), + [anon_sym_using] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3748), + [anon_sym___declspec] = ACTIONS(3746), + [anon_sym___based] = ACTIONS(3746), + [anon_sym_signed] = ACTIONS(3746), + [anon_sym_unsigned] = ACTIONS(3746), + [anon_sym_long] = ACTIONS(3746), + [anon_sym_short] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_static] = ACTIONS(3746), + [anon_sym_register] = ACTIONS(3746), + [anon_sym_inline] = ACTIONS(3746), + [anon_sym___inline] = ACTIONS(3746), + [anon_sym___inline__] = ACTIONS(3746), + [anon_sym___forceinline] = ACTIONS(3746), + [anon_sym_thread_local] = ACTIONS(3746), + [anon_sym___thread] = ACTIONS(3746), + [anon_sym_const] = ACTIONS(3746), + [anon_sym_constexpr] = ACTIONS(3746), + [anon_sym_volatile] = ACTIONS(3746), + [anon_sym_restrict] = ACTIONS(3746), + [anon_sym___restrict__] = ACTIONS(3746), + [anon_sym__Atomic] = ACTIONS(3746), + [anon_sym__Noreturn] = ACTIONS(3746), + [anon_sym_noreturn] = ACTIONS(3746), + [anon_sym__Nonnull] = ACTIONS(3746), + [anon_sym_mutable] = ACTIONS(3746), + [anon_sym_constinit] = ACTIONS(3746), + [anon_sym_consteval] = ACTIONS(3746), + [anon_sym_alignas] = ACTIONS(3746), + [anon_sym__Alignas] = ACTIONS(3746), + [sym_primitive_type] = ACTIONS(3746), + [anon_sym_enum] = ACTIONS(3746), + [anon_sym_class] = ACTIONS(3746), + [anon_sym_struct] = ACTIONS(3746), + [anon_sym_union] = ACTIONS(3746), + [anon_sym_typename] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3746), + [anon_sym_decltype] = ACTIONS(3746), + [anon_sym_explicit] = ACTIONS(3746), + [anon_sym_private] = ACTIONS(3746), + [anon_sym_template] = ACTIONS(3746), + [anon_sym_operator] = ACTIONS(3746), + [anon_sym_friend] = ACTIONS(3746), + [anon_sym_public] = ACTIONS(3746), + [anon_sym_protected] = ACTIONS(3746), + [anon_sym_static_assert] = ACTIONS(3746), + [anon_sym_LBRACK_COLON] = ACTIONS(3748), }, - [STATE(2819)] = { - [sym_identifier] = ACTIONS(4262), - [aux_sym_preproc_def_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token2] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), - [aux_sym_preproc_else_token1] = ACTIONS(4262), - [aux_sym_preproc_elif_token1] = ACTIONS(4262), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4262), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4262), - [sym_preproc_directive] = ACTIONS(4262), - [anon_sym_LPAREN2] = ACTIONS(4264), - [anon_sym_TILDE] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym___extension__] = ACTIONS(4262), - [anon_sym_typedef] = ACTIONS(4262), - [anon_sym_virtual] = ACTIONS(4262), - [anon_sym_extern] = ACTIONS(4262), - [anon_sym___attribute__] = ACTIONS(4262), - [anon_sym___attribute] = ACTIONS(4262), - [anon_sym_using] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), - [anon_sym___declspec] = ACTIONS(4262), - [anon_sym___based] = ACTIONS(4262), - [anon_sym_signed] = ACTIONS(4262), - [anon_sym_unsigned] = ACTIONS(4262), - [anon_sym_long] = ACTIONS(4262), - [anon_sym_short] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_static] = ACTIONS(4262), - [anon_sym_register] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym___inline] = ACTIONS(4262), - [anon_sym___inline__] = ACTIONS(4262), - [anon_sym___forceinline] = ACTIONS(4262), - [anon_sym_thread_local] = ACTIONS(4262), - [anon_sym___thread] = ACTIONS(4262), - [anon_sym_const] = ACTIONS(4262), - [anon_sym_constexpr] = ACTIONS(4262), - [anon_sym_volatile] = ACTIONS(4262), - [anon_sym_restrict] = ACTIONS(4262), - [anon_sym___restrict__] = ACTIONS(4262), - [anon_sym__Atomic] = ACTIONS(4262), - [anon_sym__Noreturn] = ACTIONS(4262), - [anon_sym_noreturn] = ACTIONS(4262), - [anon_sym__Nonnull] = ACTIONS(4262), - [anon_sym_mutable] = ACTIONS(4262), - [anon_sym_constinit] = ACTIONS(4262), - [anon_sym_consteval] = ACTIONS(4262), - [anon_sym_alignas] = ACTIONS(4262), - [anon_sym__Alignas] = ACTIONS(4262), - [sym_primitive_type] = ACTIONS(4262), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_class] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4262), - [anon_sym_union] = ACTIONS(4262), - [anon_sym_typename] = ACTIONS(4262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4262), - [anon_sym_decltype] = ACTIONS(4262), - [anon_sym_explicit] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_template] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_friend] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_static_assert] = ACTIONS(4262), - [anon_sym_LBRACK_COLON] = ACTIONS(4264), - }, - [STATE(2820)] = { - [sym_attribute_specifier] = STATE(3142), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), - [anon_sym_COMMA] = ACTIONS(7507), - [anon_sym_LPAREN2] = ACTIONS(7507), - [anon_sym_DASH] = ACTIONS(7505), - [anon_sym_PLUS] = ACTIONS(7505), - [anon_sym_STAR] = ACTIONS(7505), - [anon_sym_SLASH] = ACTIONS(7505), - [anon_sym_PERCENT] = ACTIONS(7505), - [anon_sym_PIPE_PIPE] = ACTIONS(7507), - [anon_sym_AMP_AMP] = ACTIONS(7507), - [anon_sym_PIPE] = ACTIONS(7505), - [anon_sym_CARET] = ACTIONS(7505), - [anon_sym_AMP] = ACTIONS(7505), - [anon_sym_EQ_EQ] = ACTIONS(7507), - [anon_sym_BANG_EQ] = ACTIONS(7507), - [anon_sym_GT] = ACTIONS(7505), - [anon_sym_GT_EQ] = ACTIONS(7505), - [anon_sym_LT_EQ] = ACTIONS(7505), - [anon_sym_LT] = ACTIONS(7505), - [anon_sym_LT_LT] = ACTIONS(7505), - [anon_sym_GT_GT] = ACTIONS(7505), - [anon_sym___extension__] = ACTIONS(7507), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7507), - [anon_sym_LBRACK] = ACTIONS(7507), - [anon_sym_EQ] = ACTIONS(7505), - [anon_sym_const] = ACTIONS(7505), - [anon_sym_constexpr] = ACTIONS(7507), - [anon_sym_volatile] = ACTIONS(7507), - [anon_sym_restrict] = ACTIONS(7507), - [anon_sym___restrict__] = ACTIONS(7507), - [anon_sym__Atomic] = ACTIONS(7507), - [anon_sym__Noreturn] = ACTIONS(7507), - [anon_sym_noreturn] = ACTIONS(7507), - [anon_sym__Nonnull] = ACTIONS(7507), - [anon_sym_mutable] = ACTIONS(7507), - [anon_sym_constinit] = ACTIONS(7507), - [anon_sym_consteval] = ACTIONS(7507), - [anon_sym_alignas] = ACTIONS(7507), - [anon_sym__Alignas] = ACTIONS(7507), - [anon_sym_QMARK] = ACTIONS(7507), - [anon_sym_STAR_EQ] = ACTIONS(7507), - [anon_sym_SLASH_EQ] = ACTIONS(7507), - [anon_sym_PERCENT_EQ] = ACTIONS(7507), - [anon_sym_PLUS_EQ] = ACTIONS(7507), - [anon_sym_DASH_EQ] = ACTIONS(7507), - [anon_sym_LT_LT_EQ] = ACTIONS(7507), - [anon_sym_GT_GT_EQ] = ACTIONS(7505), - [anon_sym_AMP_EQ] = ACTIONS(7507), - [anon_sym_CARET_EQ] = ACTIONS(7507), - [anon_sym_PIPE_EQ] = ACTIONS(7507), - [anon_sym_and_eq] = ACTIONS(7507), - [anon_sym_or_eq] = ACTIONS(7507), - [anon_sym_xor_eq] = ACTIONS(7507), - [anon_sym_LT_EQ_GT] = ACTIONS(7507), - [anon_sym_or] = ACTIONS(7505), - [anon_sym_and] = ACTIONS(7505), - [anon_sym_bitor] = ACTIONS(7507), - [anon_sym_xor] = ACTIONS(7505), - [anon_sym_bitand] = ACTIONS(7507), - [anon_sym_not_eq] = ACTIONS(7507), - [anon_sym_DASH_DASH] = ACTIONS(7507), - [anon_sym_PLUS_PLUS] = ACTIONS(7507), - [anon_sym_DOT] = ACTIONS(7505), - [anon_sym_DOT_STAR] = ACTIONS(7507), - [anon_sym_DASH_GT] = ACTIONS(7507), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7507), - [anon_sym_override] = ACTIONS(7507), - [anon_sym_GT2] = ACTIONS(7507), - [anon_sym_requires] = ACTIONS(7507), - }, - [STATE(2821)] = { - [sym_identifier] = ACTIONS(4088), - [aux_sym_preproc_def_token1] = ACTIONS(4088), - [aux_sym_preproc_if_token1] = ACTIONS(4088), - [aux_sym_preproc_if_token2] = ACTIONS(4088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), - [aux_sym_preproc_else_token1] = ACTIONS(4088), - [aux_sym_preproc_elif_token1] = ACTIONS(4088), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4088), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4088), - [sym_preproc_directive] = ACTIONS(4088), - [anon_sym_LPAREN2] = ACTIONS(4090), - [anon_sym_TILDE] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym___extension__] = ACTIONS(4088), - [anon_sym_typedef] = ACTIONS(4088), - [anon_sym_virtual] = ACTIONS(4088), - [anon_sym_extern] = ACTIONS(4088), - [anon_sym___attribute__] = ACTIONS(4088), - [anon_sym___attribute] = ACTIONS(4088), - [anon_sym_using] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), - [anon_sym___declspec] = ACTIONS(4088), - [anon_sym___based] = ACTIONS(4088), - [anon_sym_signed] = ACTIONS(4088), - [anon_sym_unsigned] = ACTIONS(4088), - [anon_sym_long] = ACTIONS(4088), - [anon_sym_short] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(4088), - [anon_sym_static] = ACTIONS(4088), - [anon_sym_register] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym___inline] = ACTIONS(4088), - [anon_sym___inline__] = ACTIONS(4088), - [anon_sym___forceinline] = ACTIONS(4088), - [anon_sym_thread_local] = ACTIONS(4088), - [anon_sym___thread] = ACTIONS(4088), - [anon_sym_const] = ACTIONS(4088), - [anon_sym_constexpr] = ACTIONS(4088), - [anon_sym_volatile] = ACTIONS(4088), - [anon_sym_restrict] = ACTIONS(4088), - [anon_sym___restrict__] = ACTIONS(4088), - [anon_sym__Atomic] = ACTIONS(4088), - [anon_sym__Noreturn] = ACTIONS(4088), - [anon_sym_noreturn] = ACTIONS(4088), - [anon_sym__Nonnull] = ACTIONS(4088), - [anon_sym_mutable] = ACTIONS(4088), - [anon_sym_constinit] = ACTIONS(4088), - [anon_sym_consteval] = ACTIONS(4088), - [anon_sym_alignas] = ACTIONS(4088), - [anon_sym__Alignas] = ACTIONS(4088), - [sym_primitive_type] = ACTIONS(4088), - [anon_sym_enum] = ACTIONS(4088), - [anon_sym_class] = ACTIONS(4088), - [anon_sym_struct] = ACTIONS(4088), - [anon_sym_union] = ACTIONS(4088), - [anon_sym_typename] = ACTIONS(4088), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4088), - [anon_sym_decltype] = ACTIONS(4088), - [anon_sym_explicit] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_template] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_friend] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_static_assert] = ACTIONS(4088), - [anon_sym_LBRACK_COLON] = ACTIONS(4090), - }, - [STATE(2822)] = { - [sym_identifier] = ACTIONS(3917), - [aux_sym_preproc_def_token1] = ACTIONS(3917), - [aux_sym_preproc_if_token1] = ACTIONS(3917), - [aux_sym_preproc_if_token2] = ACTIONS(3917), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), - [aux_sym_preproc_else_token1] = ACTIONS(3917), - [aux_sym_preproc_elif_token1] = ACTIONS(3917), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3917), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3917), - [sym_preproc_directive] = ACTIONS(3917), - [anon_sym_LPAREN2] = ACTIONS(3919), - [anon_sym_TILDE] = ACTIONS(3919), - [anon_sym_STAR] = ACTIONS(3919), - [anon_sym_AMP_AMP] = ACTIONS(3919), - [anon_sym_AMP] = ACTIONS(3917), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym___extension__] = ACTIONS(3917), - [anon_sym_typedef] = ACTIONS(3917), - [anon_sym_virtual] = ACTIONS(3917), - [anon_sym_extern] = ACTIONS(3917), - [anon_sym___attribute__] = ACTIONS(3917), - [anon_sym___attribute] = ACTIONS(3917), - [anon_sym_using] = ACTIONS(3917), - [anon_sym_COLON_COLON] = ACTIONS(3919), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), - [anon_sym___declspec] = ACTIONS(3917), - [anon_sym___based] = ACTIONS(3917), - [anon_sym_signed] = ACTIONS(3917), - [anon_sym_unsigned] = ACTIONS(3917), - [anon_sym_long] = ACTIONS(3917), - [anon_sym_short] = ACTIONS(3917), - [anon_sym_LBRACK] = ACTIONS(3917), - [anon_sym_static] = ACTIONS(3917), - [anon_sym_register] = ACTIONS(3917), - [anon_sym_inline] = ACTIONS(3917), - [anon_sym___inline] = ACTIONS(3917), - [anon_sym___inline__] = ACTIONS(3917), - [anon_sym___forceinline] = ACTIONS(3917), - [anon_sym_thread_local] = ACTIONS(3917), - [anon_sym___thread] = ACTIONS(3917), - [anon_sym_const] = ACTIONS(3917), - [anon_sym_constexpr] = ACTIONS(3917), - [anon_sym_volatile] = ACTIONS(3917), - [anon_sym_restrict] = ACTIONS(3917), - [anon_sym___restrict__] = ACTIONS(3917), - [anon_sym__Atomic] = ACTIONS(3917), - [anon_sym__Noreturn] = ACTIONS(3917), - [anon_sym_noreturn] = ACTIONS(3917), - [anon_sym__Nonnull] = ACTIONS(3917), - [anon_sym_mutable] = ACTIONS(3917), - [anon_sym_constinit] = ACTIONS(3917), - [anon_sym_consteval] = ACTIONS(3917), - [anon_sym_alignas] = ACTIONS(3917), - [anon_sym__Alignas] = ACTIONS(3917), - [sym_primitive_type] = ACTIONS(3917), - [anon_sym_enum] = ACTIONS(3917), - [anon_sym_class] = ACTIONS(3917), - [anon_sym_struct] = ACTIONS(3917), - [anon_sym_union] = ACTIONS(3917), - [anon_sym_typename] = ACTIONS(3917), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3917), - [anon_sym_decltype] = ACTIONS(3917), - [anon_sym_explicit] = ACTIONS(3917), - [anon_sym_private] = ACTIONS(3917), - [anon_sym_template] = ACTIONS(3917), - [anon_sym_operator] = ACTIONS(3917), - [anon_sym_friend] = ACTIONS(3917), - [anon_sym_public] = ACTIONS(3917), - [anon_sym_protected] = ACTIONS(3917), - [anon_sym_static_assert] = ACTIONS(3917), - [anon_sym_LBRACK_COLON] = ACTIONS(3919), - }, - [STATE(2823)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), - [anon_sym_COMMA] = ACTIONS(7649), - [anon_sym_RPAREN] = ACTIONS(7649), - [anon_sym_LPAREN2] = ACTIONS(7649), - [anon_sym_DASH] = ACTIONS(7647), - [anon_sym_PLUS] = ACTIONS(7647), - [anon_sym_STAR] = ACTIONS(7647), - [anon_sym_SLASH] = ACTIONS(7647), - [anon_sym_PERCENT] = ACTIONS(7647), - [anon_sym_PIPE_PIPE] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7649), - [anon_sym_PIPE] = ACTIONS(7647), - [anon_sym_CARET] = ACTIONS(7647), - [anon_sym_AMP] = ACTIONS(7647), - [anon_sym_EQ_EQ] = ACTIONS(7649), - [anon_sym_BANG_EQ] = ACTIONS(7649), - [anon_sym_GT] = ACTIONS(7647), - [anon_sym_GT_EQ] = ACTIONS(7649), - [anon_sym_LT_EQ] = ACTIONS(7647), - [anon_sym_LT] = ACTIONS(7647), - [anon_sym_LT_LT] = ACTIONS(7647), - [anon_sym_GT_GT] = ACTIONS(7647), - [anon_sym___extension__] = ACTIONS(7649), - [anon_sym___attribute__] = ACTIONS(7649), - [anon_sym___attribute] = ACTIONS(7647), - [anon_sym_LBRACE] = ACTIONS(7649), - [anon_sym_LBRACK] = ACTIONS(7649), - [anon_sym_EQ] = ACTIONS(7647), - [anon_sym_const] = ACTIONS(7647), - [anon_sym_constexpr] = ACTIONS(7649), - [anon_sym_volatile] = ACTIONS(7649), - [anon_sym_restrict] = ACTIONS(7649), - [anon_sym___restrict__] = ACTIONS(7649), - [anon_sym__Atomic] = ACTIONS(7649), - [anon_sym__Noreturn] = ACTIONS(7649), - [anon_sym_noreturn] = ACTIONS(7649), - [anon_sym__Nonnull] = ACTIONS(7649), - [anon_sym_mutable] = ACTIONS(7649), - [anon_sym_constinit] = ACTIONS(7649), - [anon_sym_consteval] = ACTIONS(7649), - [anon_sym_alignas] = ACTIONS(7649), - [anon_sym__Alignas] = ACTIONS(7649), - [anon_sym_QMARK] = ACTIONS(7649), - [anon_sym_STAR_EQ] = ACTIONS(7649), - [anon_sym_SLASH_EQ] = ACTIONS(7649), - [anon_sym_PERCENT_EQ] = ACTIONS(7649), - [anon_sym_PLUS_EQ] = ACTIONS(7649), - [anon_sym_DASH_EQ] = ACTIONS(7649), - [anon_sym_LT_LT_EQ] = ACTIONS(7649), - [anon_sym_GT_GT_EQ] = ACTIONS(7649), - [anon_sym_AMP_EQ] = ACTIONS(7649), - [anon_sym_CARET_EQ] = ACTIONS(7649), - [anon_sym_PIPE_EQ] = ACTIONS(7649), - [anon_sym_and_eq] = ACTIONS(7649), - [anon_sym_or_eq] = ACTIONS(7649), - [anon_sym_xor_eq] = ACTIONS(7649), - [anon_sym_LT_EQ_GT] = ACTIONS(7649), - [anon_sym_or] = ACTIONS(7647), - [anon_sym_and] = ACTIONS(7647), - [anon_sym_bitor] = ACTIONS(7649), - [anon_sym_xor] = ACTIONS(7647), - [anon_sym_bitand] = ACTIONS(7649), - [anon_sym_not_eq] = ACTIONS(7649), - [anon_sym_DASH_DASH] = ACTIONS(7649), - [anon_sym_PLUS_PLUS] = ACTIONS(7649), - [anon_sym_DOT] = ACTIONS(7647), - [anon_sym_DOT_STAR] = ACTIONS(7649), - [anon_sym_DASH_GT] = ACTIONS(7647), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7649), - [anon_sym_override] = ACTIONS(7649), - [anon_sym_requires] = ACTIONS(7649), - [anon_sym_DASH_GT_STAR] = ACTIONS(7649), - }, - [STATE(2824)] = { - [sym_attribute_specifier] = STATE(3132), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7433), - [anon_sym_COMMA] = ACTIONS(7433), - [anon_sym_LPAREN2] = ACTIONS(7433), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7431), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_PIPE_PIPE] = ACTIONS(7433), - [anon_sym_AMP_AMP] = ACTIONS(7433), - [anon_sym_PIPE] = ACTIONS(7431), - [anon_sym_CARET] = ACTIONS(7431), - [anon_sym_AMP] = ACTIONS(7431), - [anon_sym_EQ_EQ] = ACTIONS(7433), - [anon_sym_BANG_EQ] = ACTIONS(7433), - [anon_sym_GT] = ACTIONS(7431), - [anon_sym_GT_EQ] = ACTIONS(7431), - [anon_sym_LT_EQ] = ACTIONS(7431), - [anon_sym_LT] = ACTIONS(7431), - [anon_sym_LT_LT] = ACTIONS(7431), - [anon_sym_GT_GT] = ACTIONS(7431), - [anon_sym___extension__] = ACTIONS(7433), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7433), - [anon_sym_LBRACK] = ACTIONS(7433), - [anon_sym_EQ] = ACTIONS(7431), - [anon_sym_const] = ACTIONS(7431), - [anon_sym_constexpr] = ACTIONS(7433), - [anon_sym_volatile] = ACTIONS(7433), - [anon_sym_restrict] = ACTIONS(7433), - [anon_sym___restrict__] = ACTIONS(7433), - [anon_sym__Atomic] = ACTIONS(7433), - [anon_sym__Noreturn] = ACTIONS(7433), - [anon_sym_noreturn] = ACTIONS(7433), - [anon_sym__Nonnull] = ACTIONS(7433), - [anon_sym_mutable] = ACTIONS(7433), - [anon_sym_constinit] = ACTIONS(7433), - [anon_sym_consteval] = ACTIONS(7433), - [anon_sym_alignas] = ACTIONS(7433), - [anon_sym__Alignas] = ACTIONS(7433), - [anon_sym_QMARK] = ACTIONS(7433), - [anon_sym_STAR_EQ] = ACTIONS(7433), - [anon_sym_SLASH_EQ] = ACTIONS(7433), - [anon_sym_PERCENT_EQ] = ACTIONS(7433), - [anon_sym_PLUS_EQ] = ACTIONS(7433), - [anon_sym_DASH_EQ] = ACTIONS(7433), - [anon_sym_LT_LT_EQ] = ACTIONS(7433), - [anon_sym_GT_GT_EQ] = ACTIONS(7431), - [anon_sym_AMP_EQ] = ACTIONS(7433), - [anon_sym_CARET_EQ] = ACTIONS(7433), - [anon_sym_PIPE_EQ] = ACTIONS(7433), - [anon_sym_and_eq] = ACTIONS(7433), - [anon_sym_or_eq] = ACTIONS(7433), - [anon_sym_xor_eq] = ACTIONS(7433), - [anon_sym_LT_EQ_GT] = ACTIONS(7433), - [anon_sym_or] = ACTIONS(7431), - [anon_sym_and] = ACTIONS(7431), - [anon_sym_bitor] = ACTIONS(7433), - [anon_sym_xor] = ACTIONS(7431), - [anon_sym_bitand] = ACTIONS(7433), - [anon_sym_not_eq] = ACTIONS(7433), - [anon_sym_DASH_DASH] = ACTIONS(7433), - [anon_sym_PLUS_PLUS] = ACTIONS(7433), - [anon_sym_DOT] = ACTIONS(7431), - [anon_sym_DOT_STAR] = ACTIONS(7433), - [anon_sym_DASH_GT] = ACTIONS(7433), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7433), - [anon_sym_override] = ACTIONS(7433), - [anon_sym_GT2] = ACTIONS(7433), - [anon_sym_requires] = ACTIONS(7433), - }, - [STATE(2825)] = { - [sym_attribute_specifier] = STATE(3088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), - [anon_sym_COMMA] = ACTIONS(7523), - [anon_sym_LPAREN2] = ACTIONS(7523), - [anon_sym_DASH] = ACTIONS(7521), - [anon_sym_PLUS] = ACTIONS(7521), - [anon_sym_STAR] = ACTIONS(7521), - [anon_sym_SLASH] = ACTIONS(7521), - [anon_sym_PERCENT] = ACTIONS(7521), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_AMP_AMP] = ACTIONS(7523), - [anon_sym_PIPE] = ACTIONS(7521), - [anon_sym_CARET] = ACTIONS(7521), - [anon_sym_AMP] = ACTIONS(7521), - [anon_sym_EQ_EQ] = ACTIONS(7523), - [anon_sym_BANG_EQ] = ACTIONS(7523), - [anon_sym_GT] = ACTIONS(7521), - [anon_sym_GT_EQ] = ACTIONS(7521), - [anon_sym_LT_EQ] = ACTIONS(7521), - [anon_sym_LT] = ACTIONS(7521), - [anon_sym_LT_LT] = ACTIONS(7521), - [anon_sym_GT_GT] = ACTIONS(7521), - [anon_sym___extension__] = ACTIONS(7523), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7523), - [anon_sym_LBRACK] = ACTIONS(7523), - [anon_sym_EQ] = ACTIONS(7521), - [anon_sym_const] = ACTIONS(7521), - [anon_sym_constexpr] = ACTIONS(7523), - [anon_sym_volatile] = ACTIONS(7523), - [anon_sym_restrict] = ACTIONS(7523), - [anon_sym___restrict__] = ACTIONS(7523), - [anon_sym__Atomic] = ACTIONS(7523), - [anon_sym__Noreturn] = ACTIONS(7523), - [anon_sym_noreturn] = ACTIONS(7523), - [anon_sym__Nonnull] = ACTIONS(7523), - [anon_sym_mutable] = ACTIONS(7523), - [anon_sym_constinit] = ACTIONS(7523), - [anon_sym_consteval] = ACTIONS(7523), - [anon_sym_alignas] = ACTIONS(7523), - [anon_sym__Alignas] = ACTIONS(7523), - [anon_sym_QMARK] = ACTIONS(7523), - [anon_sym_STAR_EQ] = ACTIONS(7523), - [anon_sym_SLASH_EQ] = ACTIONS(7523), - [anon_sym_PERCENT_EQ] = ACTIONS(7523), - [anon_sym_PLUS_EQ] = ACTIONS(7523), - [anon_sym_DASH_EQ] = ACTIONS(7523), - [anon_sym_LT_LT_EQ] = ACTIONS(7523), - [anon_sym_GT_GT_EQ] = ACTIONS(7521), - [anon_sym_AMP_EQ] = ACTIONS(7523), - [anon_sym_CARET_EQ] = ACTIONS(7523), - [anon_sym_PIPE_EQ] = ACTIONS(7523), - [anon_sym_and_eq] = ACTIONS(7523), - [anon_sym_or_eq] = ACTIONS(7523), - [anon_sym_xor_eq] = ACTIONS(7523), - [anon_sym_LT_EQ_GT] = ACTIONS(7523), - [anon_sym_or] = ACTIONS(7521), - [anon_sym_and] = ACTIONS(7521), - [anon_sym_bitor] = ACTIONS(7523), - [anon_sym_xor] = ACTIONS(7521), - [anon_sym_bitand] = ACTIONS(7523), - [anon_sym_not_eq] = ACTIONS(7523), - [anon_sym_DASH_DASH] = ACTIONS(7523), - [anon_sym_PLUS_PLUS] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(7521), - [anon_sym_DOT_STAR] = ACTIONS(7523), - [anon_sym_DASH_GT] = ACTIONS(7523), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7523), - [anon_sym_override] = ACTIONS(7523), - [anon_sym_GT2] = ACTIONS(7523), - [anon_sym_requires] = ACTIONS(7523), - }, - [STATE(2826)] = { - [sym_attribute_specifier] = STATE(3098), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), - [anon_sym_COMMA] = ACTIONS(7533), - [anon_sym_LPAREN2] = ACTIONS(7533), - [anon_sym_DASH] = ACTIONS(7531), - [anon_sym_PLUS] = ACTIONS(7531), - [anon_sym_STAR] = ACTIONS(7531), - [anon_sym_SLASH] = ACTIONS(7531), - [anon_sym_PERCENT] = ACTIONS(7531), - [anon_sym_PIPE_PIPE] = ACTIONS(7533), - [anon_sym_AMP_AMP] = ACTIONS(7533), - [anon_sym_PIPE] = ACTIONS(7531), - [anon_sym_CARET] = ACTIONS(7531), - [anon_sym_AMP] = ACTIONS(7531), - [anon_sym_EQ_EQ] = ACTIONS(7533), - [anon_sym_BANG_EQ] = ACTIONS(7533), - [anon_sym_GT] = ACTIONS(7531), - [anon_sym_GT_EQ] = ACTIONS(7531), - [anon_sym_LT_EQ] = ACTIONS(7531), - [anon_sym_LT] = ACTIONS(7531), - [anon_sym_LT_LT] = ACTIONS(7531), - [anon_sym_GT_GT] = ACTIONS(7531), - [anon_sym___extension__] = ACTIONS(7533), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7533), - [anon_sym_LBRACK] = ACTIONS(7533), - [anon_sym_EQ] = ACTIONS(7531), - [anon_sym_const] = ACTIONS(7531), - [anon_sym_constexpr] = ACTIONS(7533), - [anon_sym_volatile] = ACTIONS(7533), - [anon_sym_restrict] = ACTIONS(7533), - [anon_sym___restrict__] = ACTIONS(7533), - [anon_sym__Atomic] = ACTIONS(7533), - [anon_sym__Noreturn] = ACTIONS(7533), - [anon_sym_noreturn] = ACTIONS(7533), - [anon_sym__Nonnull] = ACTIONS(7533), - [anon_sym_mutable] = ACTIONS(7533), - [anon_sym_constinit] = ACTIONS(7533), - [anon_sym_consteval] = ACTIONS(7533), - [anon_sym_alignas] = ACTIONS(7533), - [anon_sym__Alignas] = ACTIONS(7533), - [anon_sym_QMARK] = ACTIONS(7533), - [anon_sym_STAR_EQ] = ACTIONS(7533), - [anon_sym_SLASH_EQ] = ACTIONS(7533), - [anon_sym_PERCENT_EQ] = ACTIONS(7533), - [anon_sym_PLUS_EQ] = ACTIONS(7533), - [anon_sym_DASH_EQ] = ACTIONS(7533), - [anon_sym_LT_LT_EQ] = ACTIONS(7533), - [anon_sym_GT_GT_EQ] = ACTIONS(7531), - [anon_sym_AMP_EQ] = ACTIONS(7533), - [anon_sym_CARET_EQ] = ACTIONS(7533), - [anon_sym_PIPE_EQ] = ACTIONS(7533), - [anon_sym_and_eq] = ACTIONS(7533), - [anon_sym_or_eq] = ACTIONS(7533), - [anon_sym_xor_eq] = ACTIONS(7533), - [anon_sym_LT_EQ_GT] = ACTIONS(7533), - [anon_sym_or] = ACTIONS(7531), - [anon_sym_and] = ACTIONS(7531), - [anon_sym_bitor] = ACTIONS(7533), - [anon_sym_xor] = ACTIONS(7531), - [anon_sym_bitand] = ACTIONS(7533), - [anon_sym_not_eq] = ACTIONS(7533), - [anon_sym_DASH_DASH] = ACTIONS(7533), - [anon_sym_PLUS_PLUS] = ACTIONS(7533), - [anon_sym_DOT] = ACTIONS(7531), - [anon_sym_DOT_STAR] = ACTIONS(7533), - [anon_sym_DASH_GT] = ACTIONS(7533), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7533), - [anon_sym_override] = ACTIONS(7533), - [anon_sym_GT2] = ACTIONS(7533), - [anon_sym_requires] = ACTIONS(7533), - }, - [STATE(2827)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_RPAREN] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7717), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7717), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7717), - [anon_sym_GT_GT] = ACTIONS(7717), - [anon_sym___extension__] = ACTIONS(7719), - [anon_sym___attribute__] = ACTIONS(7719), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(7717), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7719), - [anon_sym_volatile] = ACTIONS(7719), - [anon_sym_restrict] = ACTIONS(7719), - [anon_sym___restrict__] = ACTIONS(7719), - [anon_sym__Atomic] = ACTIONS(7719), - [anon_sym__Noreturn] = ACTIONS(7719), - [anon_sym_noreturn] = ACTIONS(7719), - [anon_sym__Nonnull] = ACTIONS(7719), - [anon_sym_mutable] = ACTIONS(7719), - [anon_sym_constinit] = ACTIONS(7719), - [anon_sym_consteval] = ACTIONS(7719), - [anon_sym_alignas] = ACTIONS(7719), - [anon_sym__Alignas] = ACTIONS(7719), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_STAR_EQ] = ACTIONS(7719), - [anon_sym_SLASH_EQ] = ACTIONS(7719), - [anon_sym_PERCENT_EQ] = ACTIONS(7719), - [anon_sym_PLUS_EQ] = ACTIONS(7719), - [anon_sym_DASH_EQ] = ACTIONS(7719), - [anon_sym_LT_LT_EQ] = ACTIONS(7719), - [anon_sym_GT_GT_EQ] = ACTIONS(7719), - [anon_sym_AMP_EQ] = ACTIONS(7719), - [anon_sym_CARET_EQ] = ACTIONS(7719), - [anon_sym_PIPE_EQ] = ACTIONS(7719), - [anon_sym_and_eq] = ACTIONS(7719), - [anon_sym_or_eq] = ACTIONS(7719), - [anon_sym_xor_eq] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7717), - [anon_sym_and] = ACTIONS(7717), - [anon_sym_bitor] = ACTIONS(7719), - [anon_sym_xor] = ACTIONS(7717), - [anon_sym_bitand] = ACTIONS(7719), - [anon_sym_not_eq] = ACTIONS(7719), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7717), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7719), - [anon_sym_override] = ACTIONS(7719), - [anon_sym_requires] = ACTIONS(7719), - [anon_sym_DASH_GT_STAR] = ACTIONS(7719), - }, - [STATE(2828)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), - [anon_sym_COMMA] = ACTIONS(7749), - [anon_sym_RPAREN] = ACTIONS(7749), - [anon_sym_LPAREN2] = ACTIONS(7749), - [anon_sym_DASH] = ACTIONS(7747), - [anon_sym_PLUS] = ACTIONS(7747), - [anon_sym_STAR] = ACTIONS(7747), - [anon_sym_SLASH] = ACTIONS(7747), - [anon_sym_PERCENT] = ACTIONS(7747), - [anon_sym_PIPE_PIPE] = ACTIONS(7749), - [anon_sym_AMP_AMP] = ACTIONS(7749), - [anon_sym_PIPE] = ACTIONS(7747), - [anon_sym_CARET] = ACTIONS(7747), - [anon_sym_AMP] = ACTIONS(7747), - [anon_sym_EQ_EQ] = ACTIONS(7749), - [anon_sym_BANG_EQ] = ACTIONS(7749), - [anon_sym_GT] = ACTIONS(7747), - [anon_sym_GT_EQ] = ACTIONS(7749), - [anon_sym_LT_EQ] = ACTIONS(7747), - [anon_sym_LT] = ACTIONS(7747), - [anon_sym_LT_LT] = ACTIONS(7747), - [anon_sym_GT_GT] = ACTIONS(7747), - [anon_sym___extension__] = ACTIONS(7749), - [anon_sym___attribute__] = ACTIONS(7749), - [anon_sym___attribute] = ACTIONS(7747), - [anon_sym_LBRACE] = ACTIONS(7749), - [anon_sym_LBRACK] = ACTIONS(7749), - [anon_sym_EQ] = ACTIONS(7747), - [anon_sym_const] = ACTIONS(7747), - [anon_sym_constexpr] = ACTIONS(7749), - [anon_sym_volatile] = ACTIONS(7749), - [anon_sym_restrict] = ACTIONS(7749), - [anon_sym___restrict__] = ACTIONS(7749), - [anon_sym__Atomic] = ACTIONS(7749), - [anon_sym__Noreturn] = ACTIONS(7749), - [anon_sym_noreturn] = ACTIONS(7749), - [anon_sym__Nonnull] = ACTIONS(7749), - [anon_sym_mutable] = ACTIONS(7749), - [anon_sym_constinit] = ACTIONS(7749), - [anon_sym_consteval] = ACTIONS(7749), - [anon_sym_alignas] = ACTIONS(7749), - [anon_sym__Alignas] = ACTIONS(7749), - [anon_sym_QMARK] = ACTIONS(7749), - [anon_sym_STAR_EQ] = ACTIONS(7749), - [anon_sym_SLASH_EQ] = ACTIONS(7749), - [anon_sym_PERCENT_EQ] = ACTIONS(7749), - [anon_sym_PLUS_EQ] = ACTIONS(7749), - [anon_sym_DASH_EQ] = ACTIONS(7749), - [anon_sym_LT_LT_EQ] = ACTIONS(7749), - [anon_sym_GT_GT_EQ] = ACTIONS(7749), - [anon_sym_AMP_EQ] = ACTIONS(7749), - [anon_sym_CARET_EQ] = ACTIONS(7749), - [anon_sym_PIPE_EQ] = ACTIONS(7749), - [anon_sym_and_eq] = ACTIONS(7749), - [anon_sym_or_eq] = ACTIONS(7749), - [anon_sym_xor_eq] = ACTIONS(7749), - [anon_sym_LT_EQ_GT] = ACTIONS(7749), - [anon_sym_or] = ACTIONS(7747), - [anon_sym_and] = ACTIONS(7747), - [anon_sym_bitor] = ACTIONS(7749), - [anon_sym_xor] = ACTIONS(7747), - [anon_sym_bitand] = ACTIONS(7749), - [anon_sym_not_eq] = ACTIONS(7749), - [anon_sym_DASH_DASH] = ACTIONS(7749), - [anon_sym_PLUS_PLUS] = ACTIONS(7749), - [anon_sym_DOT] = ACTIONS(7747), - [anon_sym_DOT_STAR] = ACTIONS(7749), - [anon_sym_DASH_GT] = ACTIONS(7747), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7749), - [anon_sym_override] = ACTIONS(7749), - [anon_sym_requires] = ACTIONS(7749), - [anon_sym_DASH_GT_STAR] = ACTIONS(7749), - }, - [STATE(2829)] = { - [sym_identifier] = ACTIONS(8726), - [aux_sym_preproc_def_token1] = ACTIONS(8726), - [aux_sym_preproc_if_token1] = ACTIONS(8726), - [aux_sym_preproc_if_token2] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), - [aux_sym_preproc_else_token1] = ACTIONS(8726), - [aux_sym_preproc_elif_token1] = ACTIONS(8726), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8726), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8726), - [sym_preproc_directive] = ACTIONS(8726), - [anon_sym_LPAREN2] = ACTIONS(8728), - [anon_sym_TILDE] = ACTIONS(8728), - [anon_sym_STAR] = ACTIONS(8728), - [anon_sym_AMP_AMP] = ACTIONS(8728), - [anon_sym_AMP] = ACTIONS(8726), - [anon_sym_SEMI] = ACTIONS(8728), - [anon_sym___extension__] = ACTIONS(8726), - [anon_sym_typedef] = ACTIONS(8726), - [anon_sym_virtual] = ACTIONS(8726), - [anon_sym_extern] = ACTIONS(8726), - [anon_sym___attribute__] = ACTIONS(8726), - [anon_sym___attribute] = ACTIONS(8726), - [anon_sym_using] = ACTIONS(8726), - [anon_sym_COLON_COLON] = ACTIONS(8728), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), - [anon_sym___declspec] = ACTIONS(8726), - [anon_sym___based] = ACTIONS(8726), - [anon_sym_signed] = ACTIONS(8726), - [anon_sym_unsigned] = ACTIONS(8726), - [anon_sym_long] = ACTIONS(8726), - [anon_sym_short] = ACTIONS(8726), - [anon_sym_LBRACK] = ACTIONS(8726), - [anon_sym_static] = ACTIONS(8726), - [anon_sym_register] = ACTIONS(8726), - [anon_sym_inline] = ACTIONS(8726), - [anon_sym___inline] = ACTIONS(8726), - [anon_sym___inline__] = ACTIONS(8726), - [anon_sym___forceinline] = ACTIONS(8726), - [anon_sym_thread_local] = ACTIONS(8726), - [anon_sym___thread] = ACTIONS(8726), - [anon_sym_const] = ACTIONS(8726), - [anon_sym_constexpr] = ACTIONS(8726), - [anon_sym_volatile] = ACTIONS(8726), - [anon_sym_restrict] = ACTIONS(8726), - [anon_sym___restrict__] = ACTIONS(8726), - [anon_sym__Atomic] = ACTIONS(8726), - [anon_sym__Noreturn] = ACTIONS(8726), - [anon_sym_noreturn] = ACTIONS(8726), - [anon_sym__Nonnull] = ACTIONS(8726), - [anon_sym_mutable] = ACTIONS(8726), - [anon_sym_constinit] = ACTIONS(8726), - [anon_sym_consteval] = ACTIONS(8726), - [anon_sym_alignas] = ACTIONS(8726), - [anon_sym__Alignas] = ACTIONS(8726), - [sym_primitive_type] = ACTIONS(8726), - [anon_sym_enum] = ACTIONS(8726), - [anon_sym_class] = ACTIONS(8726), - [anon_sym_struct] = ACTIONS(8726), - [anon_sym_union] = ACTIONS(8726), - [anon_sym_typename] = ACTIONS(8726), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8726), - [anon_sym_decltype] = ACTIONS(8726), - [anon_sym_explicit] = ACTIONS(8726), - [anon_sym_private] = ACTIONS(8726), - [anon_sym_template] = ACTIONS(8726), - [anon_sym_operator] = ACTIONS(8726), - [anon_sym_friend] = ACTIONS(8726), - [anon_sym_public] = ACTIONS(8726), - [anon_sym_protected] = ACTIONS(8726), - [anon_sym_static_assert] = ACTIONS(8726), - [anon_sym_LBRACK_COLON] = ACTIONS(8728), - }, - [STATE(2830)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(6427), - [sym__declarator] = STATE(8808), - [sym__abstract_declarator] = STATE(9080), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(3825), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5340), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(3825), - [aux_sym_pointer_declarator_repeat1] = STATE(6427), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8708), - [anon_sym_AMP_AMP] = ACTIONS(8710), - [anon_sym_AMP] = ACTIONS(8712), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6821), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2831)] = { - [sym__declaration_modifiers] = STATE(5048), - [sym_attribute_specifier] = STATE(5048), - [sym_attribute_declaration] = STATE(5048), - [sym_ms_declspec_modifier] = STATE(5048), - [sym_storage_class_specifier] = STATE(5048), - [sym_type_qualifier] = STATE(5048), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(6392), - [sym_sized_type_specifier] = STATE(6050), - [sym_enum_specifier] = STATE(6050), - [sym_struct_specifier] = STATE(6050), - [sym_union_specifier] = STATE(6050), - [sym_placeholder_type_specifier] = STATE(6050), - [sym_decltype_auto] = STATE(6031), - [sym_decltype] = STATE(5973), - [sym_class_specifier] = STATE(6050), - [sym_dependent_type] = STATE(6050), - [sym_template_type] = STATE(5365), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8757), - [sym_qualified_type_identifier] = STATE(5574), - [sym_splice_specifier] = STATE(4802), - [sym__splice_specialization_specifier] = STATE(5472), - [sym_splice_type_specifier] = STATE(5973), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(5048), - [aux_sym_sized_type_specifier_repeat1] = STATE(4387), - [sym_identifier] = ACTIONS(5132), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(8641), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5140), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [anon_sym___declspec] = ACTIONS(51), - [anon_sym_signed] = ACTIONS(5142), - [anon_sym_unsigned] = ACTIONS(5142), - [anon_sym_long] = ACTIONS(5142), - [anon_sym_short] = ACTIONS(5142), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(5144), - [anon_sym_enum] = ACTIONS(5146), - [anon_sym_class] = ACTIONS(5148), - [anon_sym_struct] = ACTIONS(5150), - [anon_sym_union] = ACTIONS(5152), - [anon_sym_typename] = ACTIONS(5154), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(5156), - [anon_sym_decltype] = ACTIONS(5158), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(2832)] = { - [sym_identifier] = ACTIONS(8730), - [aux_sym_preproc_def_token1] = ACTIONS(8730), - [aux_sym_preproc_if_token1] = ACTIONS(8730), - [aux_sym_preproc_if_token2] = ACTIONS(8730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8730), - [aux_sym_preproc_else_token1] = ACTIONS(8730), - [aux_sym_preproc_elif_token1] = ACTIONS(8730), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8730), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8730), - [sym_preproc_directive] = ACTIONS(8730), - [anon_sym_LPAREN2] = ACTIONS(8732), - [anon_sym_TILDE] = ACTIONS(8732), - [anon_sym_STAR] = ACTIONS(8732), - [anon_sym_AMP_AMP] = ACTIONS(8732), - [anon_sym_AMP] = ACTIONS(8730), - [anon_sym_SEMI] = ACTIONS(8732), - [anon_sym___extension__] = ACTIONS(8730), - [anon_sym_typedef] = ACTIONS(8730), - [anon_sym_virtual] = ACTIONS(8730), - [anon_sym_extern] = ACTIONS(8730), - [anon_sym___attribute__] = ACTIONS(8730), - [anon_sym___attribute] = ACTIONS(8730), - [anon_sym_using] = ACTIONS(8730), - [anon_sym_COLON_COLON] = ACTIONS(8732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8732), - [anon_sym___declspec] = ACTIONS(8730), - [anon_sym___based] = ACTIONS(8730), - [anon_sym_signed] = ACTIONS(8730), - [anon_sym_unsigned] = ACTIONS(8730), - [anon_sym_long] = ACTIONS(8730), - [anon_sym_short] = ACTIONS(8730), - [anon_sym_LBRACK] = ACTIONS(8730), - [anon_sym_static] = ACTIONS(8730), - [anon_sym_register] = ACTIONS(8730), - [anon_sym_inline] = ACTIONS(8730), - [anon_sym___inline] = ACTIONS(8730), - [anon_sym___inline__] = ACTIONS(8730), - [anon_sym___forceinline] = ACTIONS(8730), - [anon_sym_thread_local] = ACTIONS(8730), - [anon_sym___thread] = ACTIONS(8730), - [anon_sym_const] = ACTIONS(8730), - [anon_sym_constexpr] = ACTIONS(8730), - [anon_sym_volatile] = ACTIONS(8730), - [anon_sym_restrict] = ACTIONS(8730), - [anon_sym___restrict__] = ACTIONS(8730), - [anon_sym__Atomic] = ACTIONS(8730), - [anon_sym__Noreturn] = ACTIONS(8730), - [anon_sym_noreturn] = ACTIONS(8730), - [anon_sym__Nonnull] = ACTIONS(8730), - [anon_sym_mutable] = ACTIONS(8730), - [anon_sym_constinit] = ACTIONS(8730), - [anon_sym_consteval] = ACTIONS(8730), - [anon_sym_alignas] = ACTIONS(8730), - [anon_sym__Alignas] = ACTIONS(8730), - [sym_primitive_type] = ACTIONS(8730), - [anon_sym_enum] = ACTIONS(8730), - [anon_sym_class] = ACTIONS(8730), - [anon_sym_struct] = ACTIONS(8730), - [anon_sym_union] = ACTIONS(8730), - [anon_sym_typename] = ACTIONS(8730), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8730), - [anon_sym_decltype] = ACTIONS(8730), - [anon_sym_explicit] = ACTIONS(8730), - [anon_sym_private] = ACTIONS(8730), - [anon_sym_template] = ACTIONS(8730), - [anon_sym_operator] = ACTIONS(8730), - [anon_sym_friend] = ACTIONS(8730), - [anon_sym_public] = ACTIONS(8730), - [anon_sym_protected] = ACTIONS(8730), - [anon_sym_static_assert] = ACTIONS(8730), - [anon_sym_LBRACK_COLON] = ACTIONS(8732), - }, - [STATE(2833)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), - [anon_sym_COMMA] = ACTIONS(7587), - [anon_sym_RPAREN] = ACTIONS(7587), - [anon_sym_LPAREN2] = ACTIONS(7587), - [anon_sym_DASH] = ACTIONS(7585), - [anon_sym_PLUS] = ACTIONS(7585), - [anon_sym_STAR] = ACTIONS(7585), - [anon_sym_SLASH] = ACTIONS(7585), - [anon_sym_PERCENT] = ACTIONS(7585), - [anon_sym_PIPE_PIPE] = ACTIONS(7587), - [anon_sym_AMP_AMP] = ACTIONS(7587), - [anon_sym_PIPE] = ACTIONS(7585), - [anon_sym_CARET] = ACTIONS(7585), - [anon_sym_AMP] = ACTIONS(7585), - [anon_sym_EQ_EQ] = ACTIONS(7587), - [anon_sym_BANG_EQ] = ACTIONS(7587), - [anon_sym_GT] = ACTIONS(7585), - [anon_sym_GT_EQ] = ACTIONS(7587), - [anon_sym_LT_EQ] = ACTIONS(7585), - [anon_sym_LT] = ACTIONS(7585), - [anon_sym_LT_LT] = ACTIONS(7585), - [anon_sym_GT_GT] = ACTIONS(7585), - [anon_sym___extension__] = ACTIONS(7587), - [anon_sym___attribute__] = ACTIONS(7587), - [anon_sym___attribute] = ACTIONS(7585), - [anon_sym_LBRACE] = ACTIONS(7587), - [anon_sym_LBRACK] = ACTIONS(7587), - [anon_sym_EQ] = ACTIONS(7585), - [anon_sym_const] = ACTIONS(7585), - [anon_sym_constexpr] = ACTIONS(7587), - [anon_sym_volatile] = ACTIONS(7587), - [anon_sym_restrict] = ACTIONS(7587), - [anon_sym___restrict__] = ACTIONS(7587), - [anon_sym__Atomic] = ACTIONS(7587), - [anon_sym__Noreturn] = ACTIONS(7587), - [anon_sym_noreturn] = ACTIONS(7587), - [anon_sym__Nonnull] = ACTIONS(7587), - [anon_sym_mutable] = ACTIONS(7587), - [anon_sym_constinit] = ACTIONS(7587), - [anon_sym_consteval] = ACTIONS(7587), - [anon_sym_alignas] = ACTIONS(7587), - [anon_sym__Alignas] = ACTIONS(7587), - [anon_sym_QMARK] = ACTIONS(7587), - [anon_sym_STAR_EQ] = ACTIONS(7587), - [anon_sym_SLASH_EQ] = ACTIONS(7587), - [anon_sym_PERCENT_EQ] = ACTIONS(7587), - [anon_sym_PLUS_EQ] = ACTIONS(7587), - [anon_sym_DASH_EQ] = ACTIONS(7587), - [anon_sym_LT_LT_EQ] = ACTIONS(7587), - [anon_sym_GT_GT_EQ] = ACTIONS(7587), - [anon_sym_AMP_EQ] = ACTIONS(7587), - [anon_sym_CARET_EQ] = ACTIONS(7587), - [anon_sym_PIPE_EQ] = ACTIONS(7587), - [anon_sym_and_eq] = ACTIONS(7587), - [anon_sym_or_eq] = ACTIONS(7587), - [anon_sym_xor_eq] = ACTIONS(7587), - [anon_sym_LT_EQ_GT] = ACTIONS(7587), - [anon_sym_or] = ACTIONS(7585), - [anon_sym_and] = ACTIONS(7585), - [anon_sym_bitor] = ACTIONS(7587), - [anon_sym_xor] = ACTIONS(7585), - [anon_sym_bitand] = ACTIONS(7587), - [anon_sym_not_eq] = ACTIONS(7587), - [anon_sym_DASH_DASH] = ACTIONS(7587), - [anon_sym_PLUS_PLUS] = ACTIONS(7587), - [anon_sym_DOT] = ACTIONS(7585), - [anon_sym_DOT_STAR] = ACTIONS(7587), - [anon_sym_DASH_GT] = ACTIONS(7585), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7587), - [anon_sym_override] = ACTIONS(7587), - [anon_sym_requires] = ACTIONS(7587), - [anon_sym_DASH_GT_STAR] = ACTIONS(7587), - }, - [STATE(2834)] = { - [sym_attribute_specifier] = STATE(3136), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7437), - [anon_sym_COMMA] = ACTIONS(7437), - [anon_sym_LPAREN2] = ACTIONS(7437), - [anon_sym_DASH] = ACTIONS(7435), - [anon_sym_PLUS] = ACTIONS(7435), - [anon_sym_STAR] = ACTIONS(7435), - [anon_sym_SLASH] = ACTIONS(7435), - [anon_sym_PERCENT] = ACTIONS(7435), - [anon_sym_PIPE_PIPE] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7437), - [anon_sym_PIPE] = ACTIONS(7435), - [anon_sym_CARET] = ACTIONS(7435), - [anon_sym_AMP] = ACTIONS(7435), - [anon_sym_EQ_EQ] = ACTIONS(7437), - [anon_sym_BANG_EQ] = ACTIONS(7437), - [anon_sym_GT] = ACTIONS(7435), - [anon_sym_GT_EQ] = ACTIONS(7435), - [anon_sym_LT_EQ] = ACTIONS(7435), - [anon_sym_LT] = ACTIONS(7435), - [anon_sym_LT_LT] = ACTIONS(7435), - [anon_sym_GT_GT] = ACTIONS(7435), - [anon_sym___extension__] = ACTIONS(7437), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7437), - [anon_sym_LBRACK] = ACTIONS(7437), - [anon_sym_EQ] = ACTIONS(7435), - [anon_sym_const] = ACTIONS(7435), - [anon_sym_constexpr] = ACTIONS(7437), - [anon_sym_volatile] = ACTIONS(7437), - [anon_sym_restrict] = ACTIONS(7437), - [anon_sym___restrict__] = ACTIONS(7437), - [anon_sym__Atomic] = ACTIONS(7437), - [anon_sym__Noreturn] = ACTIONS(7437), - [anon_sym_noreturn] = ACTIONS(7437), - [anon_sym__Nonnull] = ACTIONS(7437), - [anon_sym_mutable] = ACTIONS(7437), - [anon_sym_constinit] = ACTIONS(7437), - [anon_sym_consteval] = ACTIONS(7437), - [anon_sym_alignas] = ACTIONS(7437), - [anon_sym__Alignas] = ACTIONS(7437), - [anon_sym_QMARK] = ACTIONS(7437), - [anon_sym_STAR_EQ] = ACTIONS(7437), - [anon_sym_SLASH_EQ] = ACTIONS(7437), - [anon_sym_PERCENT_EQ] = ACTIONS(7437), - [anon_sym_PLUS_EQ] = ACTIONS(7437), - [anon_sym_DASH_EQ] = ACTIONS(7437), - [anon_sym_LT_LT_EQ] = ACTIONS(7437), - [anon_sym_GT_GT_EQ] = ACTIONS(7435), - [anon_sym_AMP_EQ] = ACTIONS(7437), - [anon_sym_CARET_EQ] = ACTIONS(7437), - [anon_sym_PIPE_EQ] = ACTIONS(7437), - [anon_sym_and_eq] = ACTIONS(7437), - [anon_sym_or_eq] = ACTIONS(7437), - [anon_sym_xor_eq] = ACTIONS(7437), - [anon_sym_LT_EQ_GT] = ACTIONS(7437), - [anon_sym_or] = ACTIONS(7435), - [anon_sym_and] = ACTIONS(7435), - [anon_sym_bitor] = ACTIONS(7437), - [anon_sym_xor] = ACTIONS(7435), - [anon_sym_bitand] = ACTIONS(7437), - [anon_sym_not_eq] = ACTIONS(7437), - [anon_sym_DASH_DASH] = ACTIONS(7437), - [anon_sym_PLUS_PLUS] = ACTIONS(7437), - [anon_sym_DOT] = ACTIONS(7435), - [anon_sym_DOT_STAR] = ACTIONS(7437), - [anon_sym_DASH_GT] = ACTIONS(7437), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7437), - [anon_sym_override] = ACTIONS(7437), - [anon_sym_GT2] = ACTIONS(7437), - [anon_sym_requires] = ACTIONS(7437), - }, - [STATE(2835)] = { - [sym_identifier] = ACTIONS(4092), - [aux_sym_preproc_def_token1] = ACTIONS(4092), - [aux_sym_preproc_if_token1] = ACTIONS(4092), - [aux_sym_preproc_if_token2] = ACTIONS(4092), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), - [aux_sym_preproc_else_token1] = ACTIONS(4092), - [aux_sym_preproc_elif_token1] = ACTIONS(4092), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4092), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4092), - [sym_preproc_directive] = ACTIONS(4092), - [anon_sym_LPAREN2] = ACTIONS(4094), - [anon_sym_TILDE] = ACTIONS(4094), - [anon_sym_STAR] = ACTIONS(4094), - [anon_sym_AMP_AMP] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4092), - [anon_sym_SEMI] = ACTIONS(4094), - [anon_sym___extension__] = ACTIONS(4092), - [anon_sym_typedef] = ACTIONS(4092), - [anon_sym_virtual] = ACTIONS(4092), - [anon_sym_extern] = ACTIONS(4092), - [anon_sym___attribute__] = ACTIONS(4092), - [anon_sym___attribute] = ACTIONS(4092), - [anon_sym_using] = ACTIONS(4092), - [anon_sym_COLON_COLON] = ACTIONS(4094), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), - [anon_sym___declspec] = ACTIONS(4092), - [anon_sym___based] = ACTIONS(4092), - [anon_sym_signed] = ACTIONS(4092), - [anon_sym_unsigned] = ACTIONS(4092), - [anon_sym_long] = ACTIONS(4092), - [anon_sym_short] = ACTIONS(4092), - [anon_sym_LBRACK] = ACTIONS(4092), - [anon_sym_static] = ACTIONS(4092), - [anon_sym_register] = ACTIONS(4092), - [anon_sym_inline] = ACTIONS(4092), - [anon_sym___inline] = ACTIONS(4092), - [anon_sym___inline__] = ACTIONS(4092), - [anon_sym___forceinline] = ACTIONS(4092), - [anon_sym_thread_local] = ACTIONS(4092), - [anon_sym___thread] = ACTIONS(4092), - [anon_sym_const] = ACTIONS(4092), - [anon_sym_constexpr] = ACTIONS(4092), - [anon_sym_volatile] = ACTIONS(4092), - [anon_sym_restrict] = ACTIONS(4092), - [anon_sym___restrict__] = ACTIONS(4092), - [anon_sym__Atomic] = ACTIONS(4092), - [anon_sym__Noreturn] = ACTIONS(4092), - [anon_sym_noreturn] = ACTIONS(4092), - [anon_sym__Nonnull] = ACTIONS(4092), - [anon_sym_mutable] = ACTIONS(4092), - [anon_sym_constinit] = ACTIONS(4092), - [anon_sym_consteval] = ACTIONS(4092), - [anon_sym_alignas] = ACTIONS(4092), - [anon_sym__Alignas] = ACTIONS(4092), - [sym_primitive_type] = ACTIONS(4092), - [anon_sym_enum] = ACTIONS(4092), - [anon_sym_class] = ACTIONS(4092), - [anon_sym_struct] = ACTIONS(4092), - [anon_sym_union] = ACTIONS(4092), - [anon_sym_typename] = ACTIONS(4092), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4092), - [anon_sym_decltype] = ACTIONS(4092), - [anon_sym_explicit] = ACTIONS(4092), - [anon_sym_private] = ACTIONS(4092), - [anon_sym_template] = ACTIONS(4092), - [anon_sym_operator] = ACTIONS(4092), - [anon_sym_friend] = ACTIONS(4092), - [anon_sym_public] = ACTIONS(4092), - [anon_sym_protected] = ACTIONS(4092), - [anon_sym_static_assert] = ACTIONS(4092), - [anon_sym_LBRACK_COLON] = ACTIONS(4094), + [STATE(2835)] = { + [sym_attribute_specifier] = STATE(3183), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7541), + [anon_sym_COMMA] = ACTIONS(7541), + [anon_sym_LPAREN2] = ACTIONS(7541), + [anon_sym_DASH] = ACTIONS(7539), + [anon_sym_PLUS] = ACTIONS(7539), + [anon_sym_STAR] = ACTIONS(7539), + [anon_sym_SLASH] = ACTIONS(7539), + [anon_sym_PERCENT] = ACTIONS(7539), + [anon_sym_PIPE_PIPE] = ACTIONS(7541), + [anon_sym_AMP_AMP] = ACTIONS(7541), + [anon_sym_PIPE] = ACTIONS(7539), + [anon_sym_CARET] = ACTIONS(7539), + [anon_sym_AMP] = ACTIONS(7539), + [anon_sym_EQ_EQ] = ACTIONS(7541), + [anon_sym_BANG_EQ] = ACTIONS(7541), + [anon_sym_GT] = ACTIONS(7539), + [anon_sym_GT_EQ] = ACTIONS(7539), + [anon_sym_LT_EQ] = ACTIONS(7539), + [anon_sym_LT] = ACTIONS(7539), + [anon_sym_LT_LT] = ACTIONS(7539), + [anon_sym_GT_GT] = ACTIONS(7539), + [anon_sym___extension__] = ACTIONS(7541), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7541), + [anon_sym_LBRACK] = ACTIONS(7541), + [anon_sym_EQ] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7539), + [anon_sym_constexpr] = ACTIONS(7541), + [anon_sym_volatile] = ACTIONS(7541), + [anon_sym_restrict] = ACTIONS(7541), + [anon_sym___restrict__] = ACTIONS(7541), + [anon_sym__Atomic] = ACTIONS(7541), + [anon_sym__Noreturn] = ACTIONS(7541), + [anon_sym_noreturn] = ACTIONS(7541), + [anon_sym__Nonnull] = ACTIONS(7541), + [anon_sym_mutable] = ACTIONS(7541), + [anon_sym_constinit] = ACTIONS(7541), + [anon_sym_consteval] = ACTIONS(7541), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(7541), + [anon_sym_STAR_EQ] = ACTIONS(7541), + [anon_sym_SLASH_EQ] = ACTIONS(7541), + [anon_sym_PERCENT_EQ] = ACTIONS(7541), + [anon_sym_PLUS_EQ] = ACTIONS(7541), + [anon_sym_DASH_EQ] = ACTIONS(7541), + [anon_sym_LT_LT_EQ] = ACTIONS(7541), + [anon_sym_GT_GT_EQ] = ACTIONS(7539), + [anon_sym_AMP_EQ] = ACTIONS(7541), + [anon_sym_CARET_EQ] = ACTIONS(7541), + [anon_sym_PIPE_EQ] = ACTIONS(7541), + [anon_sym_and_eq] = ACTIONS(7541), + [anon_sym_or_eq] = ACTIONS(7541), + [anon_sym_xor_eq] = ACTIONS(7541), + [anon_sym_LT_EQ_GT] = ACTIONS(7541), + [anon_sym_or] = ACTIONS(7539), + [anon_sym_and] = ACTIONS(7539), + [anon_sym_bitor] = ACTIONS(7541), + [anon_sym_xor] = ACTIONS(7539), + [anon_sym_bitand] = ACTIONS(7541), + [anon_sym_not_eq] = ACTIONS(7541), + [anon_sym_DASH_DASH] = ACTIONS(7541), + [anon_sym_PLUS_PLUS] = ACTIONS(7541), + [anon_sym_DOT] = ACTIONS(7539), + [anon_sym_DOT_STAR] = ACTIONS(7541), + [anon_sym_DASH_GT] = ACTIONS(7541), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7541), + [anon_sym_override] = ACTIONS(7541), + [anon_sym_GT2] = ACTIONS(7541), + [anon_sym_requires] = ACTIONS(7541), }, [STATE(2836)] = { - [sym_identifier] = ACTIONS(8726), - [aux_sym_preproc_def_token1] = ACTIONS(8726), - [aux_sym_preproc_if_token1] = ACTIONS(8726), - [aux_sym_preproc_if_token2] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), - [aux_sym_preproc_else_token1] = ACTIONS(8726), - [aux_sym_preproc_elif_token1] = ACTIONS(8726), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8726), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8726), - [sym_preproc_directive] = ACTIONS(8726), - [anon_sym_LPAREN2] = ACTIONS(8728), - [anon_sym_TILDE] = ACTIONS(8728), - [anon_sym_STAR] = ACTIONS(8728), - [anon_sym_AMP_AMP] = ACTIONS(8728), - [anon_sym_AMP] = ACTIONS(8726), - [anon_sym_SEMI] = ACTIONS(8728), - [anon_sym___extension__] = ACTIONS(8726), - [anon_sym_typedef] = ACTIONS(8726), - [anon_sym_virtual] = ACTIONS(8726), - [anon_sym_extern] = ACTIONS(8726), - [anon_sym___attribute__] = ACTIONS(8726), - [anon_sym___attribute] = ACTIONS(8726), - [anon_sym_using] = ACTIONS(8726), - [anon_sym_COLON_COLON] = ACTIONS(8728), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), - [anon_sym___declspec] = ACTIONS(8726), - [anon_sym___based] = ACTIONS(8726), - [anon_sym_signed] = ACTIONS(8726), - [anon_sym_unsigned] = ACTIONS(8726), - [anon_sym_long] = ACTIONS(8726), - [anon_sym_short] = ACTIONS(8726), - [anon_sym_LBRACK] = ACTIONS(8726), - [anon_sym_static] = ACTIONS(8726), - [anon_sym_register] = ACTIONS(8726), - [anon_sym_inline] = ACTIONS(8726), - [anon_sym___inline] = ACTIONS(8726), - [anon_sym___inline__] = ACTIONS(8726), - [anon_sym___forceinline] = ACTIONS(8726), - [anon_sym_thread_local] = ACTIONS(8726), - [anon_sym___thread] = ACTIONS(8726), - [anon_sym_const] = ACTIONS(8726), - [anon_sym_constexpr] = ACTIONS(8726), - [anon_sym_volatile] = ACTIONS(8726), - [anon_sym_restrict] = ACTIONS(8726), - [anon_sym___restrict__] = ACTIONS(8726), - [anon_sym__Atomic] = ACTIONS(8726), - [anon_sym__Noreturn] = ACTIONS(8726), - [anon_sym_noreturn] = ACTIONS(8726), - [anon_sym__Nonnull] = ACTIONS(8726), - [anon_sym_mutable] = ACTIONS(8726), - [anon_sym_constinit] = ACTIONS(8726), - [anon_sym_consteval] = ACTIONS(8726), - [anon_sym_alignas] = ACTIONS(8726), - [anon_sym__Alignas] = ACTIONS(8726), - [sym_primitive_type] = ACTIONS(8726), - [anon_sym_enum] = ACTIONS(8726), - [anon_sym_class] = ACTIONS(8726), - [anon_sym_struct] = ACTIONS(8726), - [anon_sym_union] = ACTIONS(8726), - [anon_sym_typename] = ACTIONS(8726), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8726), - [anon_sym_decltype] = ACTIONS(8726), - [anon_sym_explicit] = ACTIONS(8726), - [anon_sym_private] = ACTIONS(8726), - [anon_sym_template] = ACTIONS(8726), - [anon_sym_operator] = ACTIONS(8726), - [anon_sym_friend] = ACTIONS(8726), - [anon_sym_public] = ACTIONS(8726), - [anon_sym_protected] = ACTIONS(8726), - [anon_sym_static_assert] = ACTIONS(8726), - [anon_sym_LBRACK_COLON] = ACTIONS(8728), - }, - [STATE(2837)] = { - [sym_identifier] = ACTIONS(4044), - [aux_sym_preproc_def_token1] = ACTIONS(4044), - [aux_sym_preproc_if_token1] = ACTIONS(4044), - [aux_sym_preproc_if_token2] = ACTIONS(4044), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), - [aux_sym_preproc_else_token1] = ACTIONS(4044), - [aux_sym_preproc_elif_token1] = ACTIONS(4044), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4044), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4044), - [sym_preproc_directive] = ACTIONS(4044), - [anon_sym_LPAREN2] = ACTIONS(4046), - [anon_sym_TILDE] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(4046), - [anon_sym_AMP_AMP] = ACTIONS(4046), - [anon_sym_AMP] = ACTIONS(4044), - [anon_sym_SEMI] = ACTIONS(4046), - [anon_sym___extension__] = ACTIONS(4044), - [anon_sym_typedef] = ACTIONS(4044), - [anon_sym_virtual] = ACTIONS(4044), - [anon_sym_extern] = ACTIONS(4044), - [anon_sym___attribute__] = ACTIONS(4044), - [anon_sym___attribute] = ACTIONS(4044), - [anon_sym_using] = ACTIONS(4044), - [anon_sym_COLON_COLON] = ACTIONS(4046), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), - [anon_sym___declspec] = ACTIONS(4044), - [anon_sym___based] = ACTIONS(4044), - [anon_sym_signed] = ACTIONS(4044), - [anon_sym_unsigned] = ACTIONS(4044), - [anon_sym_long] = ACTIONS(4044), - [anon_sym_short] = ACTIONS(4044), - [anon_sym_LBRACK] = ACTIONS(4044), - [anon_sym_static] = ACTIONS(4044), - [anon_sym_register] = ACTIONS(4044), - [anon_sym_inline] = ACTIONS(4044), - [anon_sym___inline] = ACTIONS(4044), - [anon_sym___inline__] = ACTIONS(4044), - [anon_sym___forceinline] = ACTIONS(4044), - [anon_sym_thread_local] = ACTIONS(4044), - [anon_sym___thread] = ACTIONS(4044), - [anon_sym_const] = ACTIONS(4044), - [anon_sym_constexpr] = ACTIONS(4044), - [anon_sym_volatile] = ACTIONS(4044), - [anon_sym_restrict] = ACTIONS(4044), - [anon_sym___restrict__] = ACTIONS(4044), - [anon_sym__Atomic] = ACTIONS(4044), - [anon_sym__Noreturn] = ACTIONS(4044), - [anon_sym_noreturn] = ACTIONS(4044), - [anon_sym__Nonnull] = ACTIONS(4044), - [anon_sym_mutable] = ACTIONS(4044), - [anon_sym_constinit] = ACTIONS(4044), - [anon_sym_consteval] = ACTIONS(4044), - [anon_sym_alignas] = ACTIONS(4044), - [anon_sym__Alignas] = ACTIONS(4044), - [sym_primitive_type] = ACTIONS(4044), - [anon_sym_enum] = ACTIONS(4044), - [anon_sym_class] = ACTIONS(4044), - [anon_sym_struct] = ACTIONS(4044), - [anon_sym_union] = ACTIONS(4044), - [anon_sym_typename] = ACTIONS(4044), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4044), - [anon_sym_decltype] = ACTIONS(4044), - [anon_sym_explicit] = ACTIONS(4044), - [anon_sym_private] = ACTIONS(4044), - [anon_sym_template] = ACTIONS(4044), - [anon_sym_operator] = ACTIONS(4044), - [anon_sym_friend] = ACTIONS(4044), - [anon_sym_public] = ACTIONS(4044), - [anon_sym_protected] = ACTIONS(4044), - [anon_sym_static_assert] = ACTIONS(4044), - [anon_sym_LBRACK_COLON] = ACTIONS(4046), - }, - [STATE(2838)] = { - [sym_identifier] = ACTIONS(4096), - [aux_sym_preproc_def_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token2] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), - [aux_sym_preproc_else_token1] = ACTIONS(4096), - [aux_sym_preproc_elif_token1] = ACTIONS(4096), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4096), - [sym_preproc_directive] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym___extension__] = ACTIONS(4096), - [anon_sym_typedef] = ACTIONS(4096), - [anon_sym_virtual] = ACTIONS(4096), - [anon_sym_extern] = ACTIONS(4096), - [anon_sym___attribute__] = ACTIONS(4096), - [anon_sym___attribute] = ACTIONS(4096), - [anon_sym_using] = ACTIONS(4096), - [anon_sym_COLON_COLON] = ACTIONS(4098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), - [anon_sym___declspec] = ACTIONS(4096), - [anon_sym___based] = ACTIONS(4096), - [anon_sym_signed] = ACTIONS(4096), - [anon_sym_unsigned] = ACTIONS(4096), - [anon_sym_long] = ACTIONS(4096), - [anon_sym_short] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_static] = ACTIONS(4096), - [anon_sym_register] = ACTIONS(4096), - [anon_sym_inline] = ACTIONS(4096), - [anon_sym___inline] = ACTIONS(4096), - [anon_sym___inline__] = ACTIONS(4096), - [anon_sym___forceinline] = ACTIONS(4096), - [anon_sym_thread_local] = ACTIONS(4096), - [anon_sym___thread] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_constexpr] = ACTIONS(4096), - [anon_sym_volatile] = ACTIONS(4096), - [anon_sym_restrict] = ACTIONS(4096), - [anon_sym___restrict__] = ACTIONS(4096), - [anon_sym__Atomic] = ACTIONS(4096), - [anon_sym__Noreturn] = ACTIONS(4096), - [anon_sym_noreturn] = ACTIONS(4096), - [anon_sym__Nonnull] = ACTIONS(4096), - [anon_sym_mutable] = ACTIONS(4096), - [anon_sym_constinit] = ACTIONS(4096), - [anon_sym_consteval] = ACTIONS(4096), - [anon_sym_alignas] = ACTIONS(4096), - [anon_sym__Alignas] = ACTIONS(4096), - [sym_primitive_type] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_class] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_typename] = ACTIONS(4096), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_private] = ACTIONS(4096), - [anon_sym_template] = ACTIONS(4096), - [anon_sym_operator] = ACTIONS(4096), - [anon_sym_friend] = ACTIONS(4096), - [anon_sym_public] = ACTIONS(4096), - [anon_sym_protected] = ACTIONS(4096), - [anon_sym_static_assert] = ACTIONS(4096), - [anon_sym_LBRACK_COLON] = ACTIONS(4098), - }, - [STATE(2839)] = { - [sym_identifier] = ACTIONS(4084), - [aux_sym_preproc_def_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token2] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), - [aux_sym_preproc_else_token1] = ACTIONS(4084), - [aux_sym_preproc_elif_token1] = ACTIONS(4084), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4084), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4084), - [sym_preproc_directive] = ACTIONS(4084), - [anon_sym_LPAREN2] = ACTIONS(4086), - [anon_sym_TILDE] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_AMP_AMP] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym___extension__] = ACTIONS(4084), - [anon_sym_typedef] = ACTIONS(4084), - [anon_sym_virtual] = ACTIONS(4084), - [anon_sym_extern] = ACTIONS(4084), - [anon_sym___attribute__] = ACTIONS(4084), - [anon_sym___attribute] = ACTIONS(4084), - [anon_sym_using] = ACTIONS(4084), - [anon_sym_COLON_COLON] = ACTIONS(4086), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), - [anon_sym___declspec] = ACTIONS(4084), - [anon_sym___based] = ACTIONS(4084), - [anon_sym_signed] = ACTIONS(4084), - [anon_sym_unsigned] = ACTIONS(4084), - [anon_sym_long] = ACTIONS(4084), - [anon_sym_short] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_register] = ACTIONS(4084), - [anon_sym_inline] = ACTIONS(4084), - [anon_sym___inline] = ACTIONS(4084), - [anon_sym___inline__] = ACTIONS(4084), - [anon_sym___forceinline] = ACTIONS(4084), - [anon_sym_thread_local] = ACTIONS(4084), - [anon_sym___thread] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_constexpr] = ACTIONS(4084), - [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_restrict] = ACTIONS(4084), - [anon_sym___restrict__] = ACTIONS(4084), - [anon_sym__Atomic] = ACTIONS(4084), - [anon_sym__Noreturn] = ACTIONS(4084), - [anon_sym_noreturn] = ACTIONS(4084), - [anon_sym__Nonnull] = ACTIONS(4084), - [anon_sym_mutable] = ACTIONS(4084), - [anon_sym_constinit] = ACTIONS(4084), - [anon_sym_consteval] = ACTIONS(4084), - [anon_sym_alignas] = ACTIONS(4084), - [anon_sym__Alignas] = ACTIONS(4084), - [sym_primitive_type] = ACTIONS(4084), - [anon_sym_enum] = ACTIONS(4084), - [anon_sym_class] = ACTIONS(4084), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_union] = ACTIONS(4084), - [anon_sym_typename] = ACTIONS(4084), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4084), - [anon_sym_decltype] = ACTIONS(4084), - [anon_sym_explicit] = ACTIONS(4084), - [anon_sym_private] = ACTIONS(4084), - [anon_sym_template] = ACTIONS(4084), - [anon_sym_operator] = ACTIONS(4084), - [anon_sym_friend] = ACTIONS(4084), - [anon_sym_public] = ACTIONS(4084), - [anon_sym_protected] = ACTIONS(4084), - [anon_sym_static_assert] = ACTIONS(4084), - [anon_sym_LBRACK_COLON] = ACTIONS(4086), - }, - [STATE(2840)] = { - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token2] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [aux_sym_preproc_else_token1] = ACTIONS(4100), - [aux_sym_preproc_elif_token1] = ACTIONS(4100), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_private] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_friend] = ACTIONS(4100), - [anon_sym_public] = ACTIONS(4100), - [anon_sym_protected] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), - }, - [STATE(2841)] = { - [sym_identifier] = ACTIONS(3604), - [aux_sym_preproc_def_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token2] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), - [aux_sym_preproc_else_token1] = ACTIONS(3604), - [aux_sym_preproc_elif_token1] = ACTIONS(3604), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3604), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3604), - [sym_preproc_directive] = ACTIONS(3604), - [anon_sym_LPAREN2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym___extension__] = ACTIONS(3604), - [anon_sym_typedef] = ACTIONS(3604), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_extern] = ACTIONS(3604), - [anon_sym___attribute__] = ACTIONS(3604), - [anon_sym___attribute] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_COLON_COLON] = ACTIONS(3606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), - [anon_sym___declspec] = ACTIONS(3604), - [anon_sym___based] = ACTIONS(3604), - [anon_sym_signed] = ACTIONS(3604), - [anon_sym_unsigned] = ACTIONS(3604), - [anon_sym_long] = ACTIONS(3604), - [anon_sym_short] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_register] = ACTIONS(3604), - [anon_sym_inline] = ACTIONS(3604), - [anon_sym___inline] = ACTIONS(3604), - [anon_sym___inline__] = ACTIONS(3604), - [anon_sym___forceinline] = ACTIONS(3604), - [anon_sym_thread_local] = ACTIONS(3604), - [anon_sym___thread] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_constexpr] = ACTIONS(3604), - [anon_sym_volatile] = ACTIONS(3604), - [anon_sym_restrict] = ACTIONS(3604), - [anon_sym___restrict__] = ACTIONS(3604), - [anon_sym__Atomic] = ACTIONS(3604), - [anon_sym__Noreturn] = ACTIONS(3604), - [anon_sym_noreturn] = ACTIONS(3604), - [anon_sym__Nonnull] = ACTIONS(3604), - [anon_sym_mutable] = ACTIONS(3604), - [anon_sym_constinit] = ACTIONS(3604), - [anon_sym_consteval] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3604), - [anon_sym__Alignas] = ACTIONS(3604), - [sym_primitive_type] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_union] = ACTIONS(3604), - [anon_sym_typename] = ACTIONS(3604), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3604), - [anon_sym_decltype] = ACTIONS(3604), - [anon_sym_explicit] = ACTIONS(3604), - [anon_sym_private] = ACTIONS(3604), - [anon_sym_template] = ACTIONS(3604), - [anon_sym_operator] = ACTIONS(3604), - [anon_sym_friend] = ACTIONS(3604), - [anon_sym_public] = ACTIONS(3604), - [anon_sym_protected] = ACTIONS(3604), - [anon_sym_static_assert] = ACTIONS(3604), - [anon_sym_LBRACK_COLON] = ACTIONS(3606), - }, - [STATE(2842)] = { - [sym_identifier] = ACTIONS(8734), - [aux_sym_preproc_def_token1] = ACTIONS(8734), - [aux_sym_preproc_if_token1] = ACTIONS(8734), - [aux_sym_preproc_if_token2] = ACTIONS(8734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8734), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8734), - [aux_sym_preproc_else_token1] = ACTIONS(8734), - [aux_sym_preproc_elif_token1] = ACTIONS(8734), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8734), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8734), - [sym_preproc_directive] = ACTIONS(8734), - [anon_sym_LPAREN2] = ACTIONS(8736), - [anon_sym_TILDE] = ACTIONS(8736), - [anon_sym_STAR] = ACTIONS(8736), - [anon_sym_AMP_AMP] = ACTIONS(8736), - [anon_sym_AMP] = ACTIONS(8734), - [anon_sym_SEMI] = ACTIONS(8736), - [anon_sym___extension__] = ACTIONS(8734), - [anon_sym_typedef] = ACTIONS(8734), - [anon_sym_virtual] = ACTIONS(8734), - [anon_sym_extern] = ACTIONS(8734), - [anon_sym___attribute__] = ACTIONS(8734), - [anon_sym___attribute] = ACTIONS(8734), - [anon_sym_using] = ACTIONS(8734), - [anon_sym_COLON_COLON] = ACTIONS(8736), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8736), - [anon_sym___declspec] = ACTIONS(8734), - [anon_sym___based] = ACTIONS(8734), - [anon_sym_signed] = ACTIONS(8734), - [anon_sym_unsigned] = ACTIONS(8734), - [anon_sym_long] = ACTIONS(8734), - [anon_sym_short] = ACTIONS(8734), - [anon_sym_LBRACK] = ACTIONS(8734), - [anon_sym_static] = ACTIONS(8734), - [anon_sym_register] = ACTIONS(8734), - [anon_sym_inline] = ACTIONS(8734), - [anon_sym___inline] = ACTIONS(8734), - [anon_sym___inline__] = ACTIONS(8734), - [anon_sym___forceinline] = ACTIONS(8734), - [anon_sym_thread_local] = ACTIONS(8734), - [anon_sym___thread] = ACTIONS(8734), - [anon_sym_const] = ACTIONS(8734), - [anon_sym_constexpr] = ACTIONS(8734), - [anon_sym_volatile] = ACTIONS(8734), - [anon_sym_restrict] = ACTIONS(8734), - [anon_sym___restrict__] = ACTIONS(8734), - [anon_sym__Atomic] = ACTIONS(8734), - [anon_sym__Noreturn] = ACTIONS(8734), - [anon_sym_noreturn] = ACTIONS(8734), - [anon_sym__Nonnull] = ACTIONS(8734), - [anon_sym_mutable] = ACTIONS(8734), - [anon_sym_constinit] = ACTIONS(8734), - [anon_sym_consteval] = ACTIONS(8734), - [anon_sym_alignas] = ACTIONS(8734), - [anon_sym__Alignas] = ACTIONS(8734), - [sym_primitive_type] = ACTIONS(8734), - [anon_sym_enum] = ACTIONS(8734), - [anon_sym_class] = ACTIONS(8734), - [anon_sym_struct] = ACTIONS(8734), - [anon_sym_union] = ACTIONS(8734), - [anon_sym_typename] = ACTIONS(8734), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8734), - [anon_sym_decltype] = ACTIONS(8734), - [anon_sym_explicit] = ACTIONS(8734), - [anon_sym_private] = ACTIONS(8734), - [anon_sym_template] = ACTIONS(8734), - [anon_sym_operator] = ACTIONS(8734), - [anon_sym_friend] = ACTIONS(8734), - [anon_sym_public] = ACTIONS(8734), - [anon_sym_protected] = ACTIONS(8734), - [anon_sym_static_assert] = ACTIONS(8734), - [anon_sym_LBRACK_COLON] = ACTIONS(8736), - }, - [STATE(2843)] = { - [sym_decltype_auto] = STATE(3205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8639), - [anon_sym_decltype] = ACTIONS(7073), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - }, - [STATE(2844)] = { - [sym_identifier] = ACTIONS(8738), - [aux_sym_preproc_def_token1] = ACTIONS(8738), - [aux_sym_preproc_if_token1] = ACTIONS(8738), - [aux_sym_preproc_if_token2] = ACTIONS(8738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8738), - [aux_sym_preproc_else_token1] = ACTIONS(8738), - [aux_sym_preproc_elif_token1] = ACTIONS(8738), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8738), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8738), - [sym_preproc_directive] = ACTIONS(8738), - [anon_sym_LPAREN2] = ACTIONS(8740), - [anon_sym_TILDE] = ACTIONS(8740), - [anon_sym_STAR] = ACTIONS(8740), - [anon_sym_AMP_AMP] = ACTIONS(8740), - [anon_sym_AMP] = ACTIONS(8738), - [anon_sym_SEMI] = ACTIONS(8740), - [anon_sym___extension__] = ACTIONS(8738), - [anon_sym_typedef] = ACTIONS(8738), - [anon_sym_virtual] = ACTIONS(8738), - [anon_sym_extern] = ACTIONS(8738), - [anon_sym___attribute__] = ACTIONS(8738), - [anon_sym___attribute] = ACTIONS(8738), - [anon_sym_using] = ACTIONS(8738), - [anon_sym_COLON_COLON] = ACTIONS(8740), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8740), - [anon_sym___declspec] = ACTIONS(8738), - [anon_sym___based] = ACTIONS(8738), - [anon_sym_signed] = ACTIONS(8738), - [anon_sym_unsigned] = ACTIONS(8738), - [anon_sym_long] = ACTIONS(8738), - [anon_sym_short] = ACTIONS(8738), - [anon_sym_LBRACK] = ACTIONS(8738), - [anon_sym_static] = ACTIONS(8738), - [anon_sym_register] = ACTIONS(8738), - [anon_sym_inline] = ACTIONS(8738), - [anon_sym___inline] = ACTIONS(8738), - [anon_sym___inline__] = ACTIONS(8738), - [anon_sym___forceinline] = ACTIONS(8738), - [anon_sym_thread_local] = ACTIONS(8738), - [anon_sym___thread] = ACTIONS(8738), - [anon_sym_const] = ACTIONS(8738), - [anon_sym_constexpr] = ACTIONS(8738), - [anon_sym_volatile] = ACTIONS(8738), - [anon_sym_restrict] = ACTIONS(8738), - [anon_sym___restrict__] = ACTIONS(8738), - [anon_sym__Atomic] = ACTIONS(8738), - [anon_sym__Noreturn] = ACTIONS(8738), - [anon_sym_noreturn] = ACTIONS(8738), - [anon_sym__Nonnull] = ACTIONS(8738), - [anon_sym_mutable] = ACTIONS(8738), - [anon_sym_constinit] = ACTIONS(8738), - [anon_sym_consteval] = ACTIONS(8738), - [anon_sym_alignas] = ACTIONS(8738), - [anon_sym__Alignas] = ACTIONS(8738), - [sym_primitive_type] = ACTIONS(8738), - [anon_sym_enum] = ACTIONS(8738), - [anon_sym_class] = ACTIONS(8738), - [anon_sym_struct] = ACTIONS(8738), - [anon_sym_union] = ACTIONS(8738), - [anon_sym_typename] = ACTIONS(8738), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8738), - [anon_sym_decltype] = ACTIONS(8738), - [anon_sym_explicit] = ACTIONS(8738), - [anon_sym_private] = ACTIONS(8738), - [anon_sym_template] = ACTIONS(8738), - [anon_sym_operator] = ACTIONS(8738), - [anon_sym_friend] = ACTIONS(8738), - [anon_sym_public] = ACTIONS(8738), - [anon_sym_protected] = ACTIONS(8738), - [anon_sym_static_assert] = ACTIONS(8738), - [anon_sym_LBRACK_COLON] = ACTIONS(8740), - }, - [STATE(2845)] = { - [sym_identifier] = ACTIONS(4266), - [aux_sym_preproc_def_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token2] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), - [aux_sym_preproc_else_token1] = ACTIONS(4266), - [aux_sym_preproc_elif_token1] = ACTIONS(4266), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4266), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4266), - [sym_preproc_directive] = ACTIONS(4266), - [anon_sym_LPAREN2] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym___extension__] = ACTIONS(4266), - [anon_sym_typedef] = ACTIONS(4266), - [anon_sym_virtual] = ACTIONS(4266), - [anon_sym_extern] = ACTIONS(4266), - [anon_sym___attribute__] = ACTIONS(4266), - [anon_sym___attribute] = ACTIONS(4266), - [anon_sym_using] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), - [anon_sym___declspec] = ACTIONS(4266), - [anon_sym___based] = ACTIONS(4266), - [anon_sym_signed] = ACTIONS(4266), - [anon_sym_unsigned] = ACTIONS(4266), - [anon_sym_long] = ACTIONS(4266), - [anon_sym_short] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_static] = ACTIONS(4266), - [anon_sym_register] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym___inline] = ACTIONS(4266), - [anon_sym___inline__] = ACTIONS(4266), - [anon_sym___forceinline] = ACTIONS(4266), - [anon_sym_thread_local] = ACTIONS(4266), - [anon_sym___thread] = ACTIONS(4266), - [anon_sym_const] = ACTIONS(4266), - [anon_sym_constexpr] = ACTIONS(4266), - [anon_sym_volatile] = ACTIONS(4266), - [anon_sym_restrict] = ACTIONS(4266), - [anon_sym___restrict__] = ACTIONS(4266), - [anon_sym__Atomic] = ACTIONS(4266), - [anon_sym__Noreturn] = ACTIONS(4266), - [anon_sym_noreturn] = ACTIONS(4266), - [anon_sym__Nonnull] = ACTIONS(4266), - [anon_sym_mutable] = ACTIONS(4266), - [anon_sym_constinit] = ACTIONS(4266), - [anon_sym_consteval] = ACTIONS(4266), - [anon_sym_alignas] = ACTIONS(4266), - [anon_sym__Alignas] = ACTIONS(4266), - [sym_primitive_type] = ACTIONS(4266), - [anon_sym_enum] = ACTIONS(4266), - [anon_sym_class] = ACTIONS(4266), - [anon_sym_struct] = ACTIONS(4266), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_typename] = ACTIONS(4266), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4266), - [anon_sym_decltype] = ACTIONS(4266), - [anon_sym_explicit] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_template] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_friend] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_static_assert] = ACTIONS(4266), - [anon_sym_LBRACK_COLON] = ACTIONS(4268), - }, - [STATE(2846)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), - [anon_sym_COMMA] = ACTIONS(6596), - [anon_sym_RPAREN] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6603), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6603), - [anon_sym_GT_GT] = ACTIONS(6603), - [anon_sym_SEMI] = ACTIONS(6596), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6596), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6605), - [anon_sym_EQ] = ACTIONS(6603), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6596), - [anon_sym_or_eq] = ACTIONS(6596), - [anon_sym_xor_eq] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6596), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6596), - [anon_sym_not_eq] = ACTIONS(6596), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6603), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_DASH_GT_STAR] = ACTIONS(6596), - }, - [STATE(2847)] = { - [sym_attribute_specifier] = STATE(3102), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7547), - [anon_sym_PLUS] = ACTIONS(7547), - [anon_sym_STAR] = ACTIONS(7547), - [anon_sym_SLASH] = ACTIONS(7547), - [anon_sym_PERCENT] = ACTIONS(7547), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7547), - [anon_sym_CARET] = ACTIONS(7547), - [anon_sym_AMP] = ACTIONS(7547), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7547), - [anon_sym_LT] = ACTIONS(7547), - [anon_sym_LT_LT] = ACTIONS(7547), - [anon_sym_GT_GT] = ACTIONS(7547), - [anon_sym___extension__] = ACTIONS(7549), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(7549), - [anon_sym_RBRACK] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7547), - [anon_sym_const] = ACTIONS(7547), - [anon_sym_constexpr] = ACTIONS(7549), - [anon_sym_volatile] = ACTIONS(7549), - [anon_sym_restrict] = ACTIONS(7549), - [anon_sym___restrict__] = ACTIONS(7549), - [anon_sym__Atomic] = ACTIONS(7549), - [anon_sym__Noreturn] = ACTIONS(7549), - [anon_sym_noreturn] = ACTIONS(7549), - [anon_sym__Nonnull] = ACTIONS(7549), - [anon_sym_mutable] = ACTIONS(7549), - [anon_sym_constinit] = ACTIONS(7549), - [anon_sym_consteval] = ACTIONS(7549), - [anon_sym_alignas] = ACTIONS(7549), - [anon_sym__Alignas] = ACTIONS(7549), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_and_eq] = ACTIONS(7549), - [anon_sym_or_eq] = ACTIONS(7549), - [anon_sym_xor_eq] = ACTIONS(7549), - [anon_sym_LT_EQ_GT] = ACTIONS(7549), - [anon_sym_or] = ACTIONS(7547), - [anon_sym_and] = ACTIONS(7547), - [anon_sym_bitor] = ACTIONS(7549), - [anon_sym_xor] = ACTIONS(7547), - [anon_sym_bitand] = ACTIONS(7549), - [anon_sym_not_eq] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7547), - [anon_sym_DOT_STAR] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7549), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7549), - [anon_sym_override] = ACTIONS(7549), - [anon_sym_requires] = ACTIONS(7549), - }, - [STATE(2848)] = { - [sym_attribute_specifier] = STATE(3196), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7553), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_PERCENT] = ACTIONS(7551), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7553), - [anon_sym_LT_EQ] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7551), - [anon_sym___extension__] = ACTIONS(7553), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7553), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_RBRACK] = ACTIONS(7553), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_const] = ACTIONS(7551), - [anon_sym_constexpr] = ACTIONS(7553), - [anon_sym_volatile] = ACTIONS(7553), - [anon_sym_restrict] = ACTIONS(7553), - [anon_sym___restrict__] = ACTIONS(7553), - [anon_sym__Atomic] = ACTIONS(7553), - [anon_sym__Noreturn] = ACTIONS(7553), - [anon_sym_noreturn] = ACTIONS(7553), - [anon_sym__Nonnull] = ACTIONS(7553), - [anon_sym_mutable] = ACTIONS(7553), - [anon_sym_constinit] = ACTIONS(7553), - [anon_sym_consteval] = ACTIONS(7553), - [anon_sym_alignas] = ACTIONS(7553), - [anon_sym__Alignas] = ACTIONS(7553), - [anon_sym_QMARK] = ACTIONS(7553), - [anon_sym_STAR_EQ] = ACTIONS(7553), - [anon_sym_SLASH_EQ] = ACTIONS(7553), - [anon_sym_PERCENT_EQ] = ACTIONS(7553), - [anon_sym_PLUS_EQ] = ACTIONS(7553), - [anon_sym_DASH_EQ] = ACTIONS(7553), - [anon_sym_LT_LT_EQ] = ACTIONS(7553), - [anon_sym_GT_GT_EQ] = ACTIONS(7553), - [anon_sym_AMP_EQ] = ACTIONS(7553), - [anon_sym_CARET_EQ] = ACTIONS(7553), - [anon_sym_PIPE_EQ] = ACTIONS(7553), - [anon_sym_and_eq] = ACTIONS(7553), - [anon_sym_or_eq] = ACTIONS(7553), - [anon_sym_xor_eq] = ACTIONS(7553), - [anon_sym_LT_EQ_GT] = ACTIONS(7553), - [anon_sym_or] = ACTIONS(7551), - [anon_sym_and] = ACTIONS(7551), - [anon_sym_bitor] = ACTIONS(7553), - [anon_sym_xor] = ACTIONS(7551), - [anon_sym_bitand] = ACTIONS(7553), - [anon_sym_not_eq] = ACTIONS(7553), - [anon_sym_DASH_DASH] = ACTIONS(7553), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7551), - [anon_sym_DOT_STAR] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7553), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7553), - [anon_sym_override] = ACTIONS(7553), - [anon_sym_requires] = ACTIONS(7553), - }, - [STATE(2849)] = { - [sym_identifier] = ACTIONS(8742), - [aux_sym_preproc_def_token1] = ACTIONS(8742), - [aux_sym_preproc_if_token1] = ACTIONS(8742), - [aux_sym_preproc_if_token2] = ACTIONS(8742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8742), - [aux_sym_preproc_else_token1] = ACTIONS(8742), - [aux_sym_preproc_elif_token1] = ACTIONS(8742), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8742), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8742), - [sym_preproc_directive] = ACTIONS(8742), - [anon_sym_LPAREN2] = ACTIONS(8744), - [anon_sym_TILDE] = ACTIONS(8744), - [anon_sym_STAR] = ACTIONS(8744), - [anon_sym_AMP_AMP] = ACTIONS(8744), - [anon_sym_AMP] = ACTIONS(8742), - [anon_sym_SEMI] = ACTIONS(8744), - [anon_sym___extension__] = ACTIONS(8742), - [anon_sym_typedef] = ACTIONS(8742), - [anon_sym_virtual] = ACTIONS(8742), - [anon_sym_extern] = ACTIONS(8742), - [anon_sym___attribute__] = ACTIONS(8742), - [anon_sym___attribute] = ACTIONS(8742), - [anon_sym_using] = ACTIONS(8742), - [anon_sym_COLON_COLON] = ACTIONS(8744), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8744), - [anon_sym___declspec] = ACTIONS(8742), - [anon_sym___based] = ACTIONS(8742), - [anon_sym_signed] = ACTIONS(8742), - [anon_sym_unsigned] = ACTIONS(8742), - [anon_sym_long] = ACTIONS(8742), - [anon_sym_short] = ACTIONS(8742), - [anon_sym_LBRACK] = ACTIONS(8742), - [anon_sym_static] = ACTIONS(8742), - [anon_sym_register] = ACTIONS(8742), - [anon_sym_inline] = ACTIONS(8742), - [anon_sym___inline] = ACTIONS(8742), - [anon_sym___inline__] = ACTIONS(8742), - [anon_sym___forceinline] = ACTIONS(8742), - [anon_sym_thread_local] = ACTIONS(8742), - [anon_sym___thread] = ACTIONS(8742), - [anon_sym_const] = ACTIONS(8742), - [anon_sym_constexpr] = ACTIONS(8742), - [anon_sym_volatile] = ACTIONS(8742), - [anon_sym_restrict] = ACTIONS(8742), - [anon_sym___restrict__] = ACTIONS(8742), - [anon_sym__Atomic] = ACTIONS(8742), - [anon_sym__Noreturn] = ACTIONS(8742), - [anon_sym_noreturn] = ACTIONS(8742), - [anon_sym__Nonnull] = ACTIONS(8742), - [anon_sym_mutable] = ACTIONS(8742), - [anon_sym_constinit] = ACTIONS(8742), - [anon_sym_consteval] = ACTIONS(8742), - [anon_sym_alignas] = ACTIONS(8742), - [anon_sym__Alignas] = ACTIONS(8742), - [sym_primitive_type] = ACTIONS(8742), - [anon_sym_enum] = ACTIONS(8742), - [anon_sym_class] = ACTIONS(8742), - [anon_sym_struct] = ACTIONS(8742), - [anon_sym_union] = ACTIONS(8742), - [anon_sym_typename] = ACTIONS(8742), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8742), - [anon_sym_decltype] = ACTIONS(8742), - [anon_sym_explicit] = ACTIONS(8742), - [anon_sym_private] = ACTIONS(8742), - [anon_sym_template] = ACTIONS(8742), - [anon_sym_operator] = ACTIONS(8742), - [anon_sym_friend] = ACTIONS(8742), - [anon_sym_public] = ACTIONS(8742), - [anon_sym_protected] = ACTIONS(8742), - [anon_sym_static_assert] = ACTIONS(8742), - [anon_sym_LBRACK_COLON] = ACTIONS(8744), - }, - [STATE(2850)] = { - [sym_identifier] = ACTIONS(8746), - [aux_sym_preproc_def_token1] = ACTIONS(8746), - [aux_sym_preproc_if_token1] = ACTIONS(8746), - [aux_sym_preproc_if_token2] = ACTIONS(8746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8746), - [aux_sym_preproc_else_token1] = ACTIONS(8746), - [aux_sym_preproc_elif_token1] = ACTIONS(8746), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8746), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8746), - [sym_preproc_directive] = ACTIONS(8746), - [anon_sym_LPAREN2] = ACTIONS(8748), - [anon_sym_TILDE] = ACTIONS(8748), - [anon_sym_STAR] = ACTIONS(8748), - [anon_sym_AMP_AMP] = ACTIONS(8748), - [anon_sym_AMP] = ACTIONS(8746), - [anon_sym_SEMI] = ACTIONS(8748), - [anon_sym___extension__] = ACTIONS(8746), - [anon_sym_typedef] = ACTIONS(8746), - [anon_sym_virtual] = ACTIONS(8746), - [anon_sym_extern] = ACTIONS(8746), - [anon_sym___attribute__] = ACTIONS(8746), - [anon_sym___attribute] = ACTIONS(8746), - [anon_sym_using] = ACTIONS(8746), - [anon_sym_COLON_COLON] = ACTIONS(8748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8748), - [anon_sym___declspec] = ACTIONS(8746), - [anon_sym___based] = ACTIONS(8746), - [anon_sym_signed] = ACTIONS(8746), - [anon_sym_unsigned] = ACTIONS(8746), - [anon_sym_long] = ACTIONS(8746), - [anon_sym_short] = ACTIONS(8746), - [anon_sym_LBRACK] = ACTIONS(8746), - [anon_sym_static] = ACTIONS(8746), - [anon_sym_register] = ACTIONS(8746), - [anon_sym_inline] = ACTIONS(8746), - [anon_sym___inline] = ACTIONS(8746), - [anon_sym___inline__] = ACTIONS(8746), - [anon_sym___forceinline] = ACTIONS(8746), - [anon_sym_thread_local] = ACTIONS(8746), - [anon_sym___thread] = ACTIONS(8746), - [anon_sym_const] = ACTIONS(8746), - [anon_sym_constexpr] = ACTIONS(8746), - [anon_sym_volatile] = ACTIONS(8746), - [anon_sym_restrict] = ACTIONS(8746), - [anon_sym___restrict__] = ACTIONS(8746), - [anon_sym__Atomic] = ACTIONS(8746), - [anon_sym__Noreturn] = ACTIONS(8746), - [anon_sym_noreturn] = ACTIONS(8746), - [anon_sym__Nonnull] = ACTIONS(8746), - [anon_sym_mutable] = ACTIONS(8746), - [anon_sym_constinit] = ACTIONS(8746), - [anon_sym_consteval] = ACTIONS(8746), - [anon_sym_alignas] = ACTIONS(8746), - [anon_sym__Alignas] = ACTIONS(8746), - [sym_primitive_type] = ACTIONS(8746), - [anon_sym_enum] = ACTIONS(8746), - [anon_sym_class] = ACTIONS(8746), - [anon_sym_struct] = ACTIONS(8746), - [anon_sym_union] = ACTIONS(8746), - [anon_sym_typename] = ACTIONS(8746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8746), - [anon_sym_decltype] = ACTIONS(8746), - [anon_sym_explicit] = ACTIONS(8746), - [anon_sym_private] = ACTIONS(8746), - [anon_sym_template] = ACTIONS(8746), - [anon_sym_operator] = ACTIONS(8746), - [anon_sym_friend] = ACTIONS(8746), - [anon_sym_public] = ACTIONS(8746), - [anon_sym_protected] = ACTIONS(8746), - [anon_sym_static_assert] = ACTIONS(8746), - [anon_sym_LBRACK_COLON] = ACTIONS(8748), - }, - [STATE(2851)] = { - [sym_identifier] = ACTIONS(8750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8752), - [anon_sym_COMMA] = ACTIONS(8752), - [anon_sym_RPAREN] = ACTIONS(8752), - [aux_sym_preproc_if_token2] = ACTIONS(8752), - [aux_sym_preproc_else_token1] = ACTIONS(8752), - [aux_sym_preproc_elif_token1] = ACTIONS(8750), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8752), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8752), - [anon_sym_LPAREN2] = ACTIONS(8752), - [anon_sym_DASH] = ACTIONS(8750), - [anon_sym_PLUS] = ACTIONS(8750), - [anon_sym_STAR] = ACTIONS(8750), - [anon_sym_SLASH] = ACTIONS(8750), - [anon_sym_PERCENT] = ACTIONS(8750), - [anon_sym_PIPE_PIPE] = ACTIONS(8752), - [anon_sym_AMP_AMP] = ACTIONS(8752), - [anon_sym_PIPE] = ACTIONS(8750), - [anon_sym_CARET] = ACTIONS(8750), - [anon_sym_AMP] = ACTIONS(8750), - [anon_sym_EQ_EQ] = ACTIONS(8752), - [anon_sym_BANG_EQ] = ACTIONS(8752), - [anon_sym_GT] = ACTIONS(8750), - [anon_sym_GT_EQ] = ACTIONS(8752), - [anon_sym_LT_EQ] = ACTIONS(8750), - [anon_sym_LT] = ACTIONS(8750), - [anon_sym_LT_LT] = ACTIONS(8750), - [anon_sym_GT_GT] = ACTIONS(8750), - [anon_sym_SEMI] = ACTIONS(8752), - [anon_sym_COLON] = ACTIONS(8750), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8752), - [anon_sym_RBRACE] = ACTIONS(8752), - [anon_sym_LBRACK] = ACTIONS(8752), - [anon_sym_EQ] = ACTIONS(8750), - [anon_sym_QMARK] = ACTIONS(8752), - [anon_sym_STAR_EQ] = ACTIONS(8752), - [anon_sym_SLASH_EQ] = ACTIONS(8752), - [anon_sym_PERCENT_EQ] = ACTIONS(8752), - [anon_sym_PLUS_EQ] = ACTIONS(8752), - [anon_sym_DASH_EQ] = ACTIONS(8752), - [anon_sym_LT_LT_EQ] = ACTIONS(8752), - [anon_sym_GT_GT_EQ] = ACTIONS(8752), - [anon_sym_AMP_EQ] = ACTIONS(8752), - [anon_sym_CARET_EQ] = ACTIONS(8752), - [anon_sym_PIPE_EQ] = ACTIONS(8752), - [anon_sym_and_eq] = ACTIONS(8750), - [anon_sym_or_eq] = ACTIONS(8750), - [anon_sym_xor_eq] = ACTIONS(8750), - [anon_sym_LT_EQ_GT] = ACTIONS(8752), - [anon_sym_or] = ACTIONS(8750), - [anon_sym_and] = ACTIONS(8750), - [anon_sym_bitor] = ACTIONS(8750), - [anon_sym_xor] = ACTIONS(8750), - [anon_sym_bitand] = ACTIONS(8750), - [anon_sym_not_eq] = ACTIONS(8750), - [anon_sym_DASH_DASH] = ACTIONS(8752), - [anon_sym_PLUS_PLUS] = ACTIONS(8752), - [anon_sym_DOT] = ACTIONS(8750), - [anon_sym_DOT_STAR] = ACTIONS(8752), - [anon_sym_DASH_GT] = ACTIONS(8752), - [anon_sym_L_DQUOTE] = ACTIONS(8752), - [anon_sym_u_DQUOTE] = ACTIONS(8752), - [anon_sym_U_DQUOTE] = ACTIONS(8752), - [anon_sym_u8_DQUOTE] = ACTIONS(8752), - [anon_sym_DQUOTE] = ACTIONS(8752), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8752), - [anon_sym_LR_DQUOTE] = ACTIONS(8752), - [anon_sym_uR_DQUOTE] = ACTIONS(8752), - [anon_sym_UR_DQUOTE] = ACTIONS(8752), - [anon_sym_u8R_DQUOTE] = ACTIONS(8752), - [anon_sym_COLON_RBRACK] = ACTIONS(8752), - [sym_literal_suffix] = ACTIONS(8750), - }, - [STATE(2852)] = { - [sym_type_qualifier] = STATE(2818), - [sym_alignas_qualifier] = STATE(2726), - [aux_sym__type_definition_type_repeat1] = STATE(2818), - [aux_sym_sized_type_specifier_repeat1] = STATE(3156), - [sym_identifier] = ACTIONS(8754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_RPAREN] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_SEMI] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(8756), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_COLON] = ACTIONS(7251), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7249), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_RBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(8759), - [anon_sym_unsigned] = ACTIONS(8759), - [anon_sym_long] = ACTIONS(8759), - [anon_sym_short] = ACTIONS(8759), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(8756), - [anon_sym_constexpr] = ACTIONS(8756), - [anon_sym_volatile] = ACTIONS(8756), - [anon_sym_restrict] = ACTIONS(8756), - [anon_sym___restrict__] = ACTIONS(8756), - [anon_sym__Atomic] = ACTIONS(8756), - [anon_sym__Noreturn] = ACTIONS(8756), - [anon_sym_noreturn] = ACTIONS(8756), - [anon_sym__Nonnull] = ACTIONS(8756), - [anon_sym_mutable] = ACTIONS(8756), - [anon_sym_constinit] = ACTIONS(8756), - [anon_sym_consteval] = ACTIONS(8756), - [anon_sym_alignas] = ACTIONS(8761), - [anon_sym__Alignas] = ACTIONS(8761), - [sym_primitive_type] = ACTIONS(8764), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), - [anon_sym_COLON_RBRACK] = ACTIONS(7249), - }, - [STATE(2853)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(2784), - [sym_ms_pointer_modifier] = STATE(2595), - [sym__abstract_declarator] = STATE(6548), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3778), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2274), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3778), - [aux_sym_pointer_declarator_repeat1] = STATE(2595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8677), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8679), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8681), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(6823), - [anon_sym___attribute] = ACTIONS(6821), - [sym_ms_restrict_modifier] = ACTIONS(8094), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8119), - [sym_ms_signed_ptr_modifier] = ACTIONS(8119), - [anon_sym__unaligned] = ACTIONS(8121), - [anon_sym___unaligned] = ACTIONS(8121), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - }, - [STATE(2854)] = { - [sym_identifier] = ACTIONS(8766), - [aux_sym_preproc_def_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token2] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), - [aux_sym_preproc_else_token1] = ACTIONS(8766), - [aux_sym_preproc_elif_token1] = ACTIONS(8766), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8766), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8766), - [sym_preproc_directive] = ACTIONS(8766), - [anon_sym_LPAREN2] = ACTIONS(8768), - [anon_sym_TILDE] = ACTIONS(8768), - [anon_sym_STAR] = ACTIONS(8768), - [anon_sym_AMP_AMP] = ACTIONS(8768), - [anon_sym_AMP] = ACTIONS(8766), - [anon_sym_SEMI] = ACTIONS(8768), - [anon_sym___extension__] = ACTIONS(8766), - [anon_sym_typedef] = ACTIONS(8766), - [anon_sym_virtual] = ACTIONS(8766), - [anon_sym_extern] = ACTIONS(8766), - [anon_sym___attribute__] = ACTIONS(8766), - [anon_sym___attribute] = ACTIONS(8766), - [anon_sym_using] = ACTIONS(8766), - [anon_sym_COLON_COLON] = ACTIONS(8768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), - [anon_sym___declspec] = ACTIONS(8766), - [anon_sym___based] = ACTIONS(8766), - [anon_sym_signed] = ACTIONS(8766), - [anon_sym_unsigned] = ACTIONS(8766), - [anon_sym_long] = ACTIONS(8766), - [anon_sym_short] = ACTIONS(8766), - [anon_sym_LBRACK] = ACTIONS(8766), - [anon_sym_static] = ACTIONS(8766), - [anon_sym_register] = ACTIONS(8766), - [anon_sym_inline] = ACTIONS(8766), - [anon_sym___inline] = ACTIONS(8766), - [anon_sym___inline__] = ACTIONS(8766), - [anon_sym___forceinline] = ACTIONS(8766), - [anon_sym_thread_local] = ACTIONS(8766), - [anon_sym___thread] = ACTIONS(8766), - [anon_sym_const] = ACTIONS(8766), - [anon_sym_constexpr] = ACTIONS(8766), - [anon_sym_volatile] = ACTIONS(8766), - [anon_sym_restrict] = ACTIONS(8766), - [anon_sym___restrict__] = ACTIONS(8766), - [anon_sym__Atomic] = ACTIONS(8766), - [anon_sym__Noreturn] = ACTIONS(8766), - [anon_sym_noreturn] = ACTIONS(8766), - [anon_sym__Nonnull] = ACTIONS(8766), - [anon_sym_mutable] = ACTIONS(8766), - [anon_sym_constinit] = ACTIONS(8766), - [anon_sym_consteval] = ACTIONS(8766), - [anon_sym_alignas] = ACTIONS(8766), - [anon_sym__Alignas] = ACTIONS(8766), - [sym_primitive_type] = ACTIONS(8766), - [anon_sym_enum] = ACTIONS(8766), - [anon_sym_class] = ACTIONS(8766), - [anon_sym_struct] = ACTIONS(8766), - [anon_sym_union] = ACTIONS(8766), - [anon_sym_typename] = ACTIONS(8766), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8766), - [anon_sym_decltype] = ACTIONS(8766), - [anon_sym_explicit] = ACTIONS(8766), - [anon_sym_private] = ACTIONS(8766), - [anon_sym_template] = ACTIONS(8766), - [anon_sym_operator] = ACTIONS(8766), - [anon_sym_friend] = ACTIONS(8766), - [anon_sym_public] = ACTIONS(8766), - [anon_sym_protected] = ACTIONS(8766), - [anon_sym_static_assert] = ACTIONS(8766), - [anon_sym_LBRACK_COLON] = ACTIONS(8768), - }, - [STATE(2855)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token2] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [aux_sym_preproc_else_token1] = ACTIONS(4080), - [aux_sym_preproc_elif_token1] = ACTIONS(4080), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_private] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_friend] = ACTIONS(4080), - [anon_sym_public] = ACTIONS(4080), - [anon_sym_protected] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), - }, - [STATE(2856)] = { - [sym__declaration_modifiers] = STATE(5048), - [sym_attribute_specifier] = STATE(5048), - [sym_attribute_declaration] = STATE(5048), - [sym_ms_declspec_modifier] = STATE(5048), - [sym_storage_class_specifier] = STATE(5048), - [sym_type_qualifier] = STATE(5048), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4006), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(5048), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), - [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(8641), - [anon_sym_extern] = ACTIONS(63), - [anon_sym___attribute__] = ACTIONS(43), - [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), - [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(71), - [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(75), - [anon_sym_class] = ACTIONS(77), - [anon_sym_struct] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_typename] = ACTIONS(5464), + [sym_identifier] = ACTIONS(6614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [anon_sym_RPAREN] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym_SEMI] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6616), + [anon_sym___based] = ACTIONS(6614), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_RBRACE] = ACTIONS(6616), + [anon_sym_signed] = ACTIONS(6614), + [anon_sym_unsigned] = ACTIONS(6614), + [anon_sym_long] = ACTIONS(6614), + [anon_sym_short] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [sym_primitive_type] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(129), - [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2857)] = { - [sym_identifier] = ACTIONS(8770), - [aux_sym_preproc_def_token1] = ACTIONS(8770), - [aux_sym_preproc_if_token1] = ACTIONS(8770), - [aux_sym_preproc_if_token2] = ACTIONS(8770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8770), - [aux_sym_preproc_else_token1] = ACTIONS(8770), - [aux_sym_preproc_elif_token1] = ACTIONS(8770), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8770), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8770), - [sym_preproc_directive] = ACTIONS(8770), - [anon_sym_LPAREN2] = ACTIONS(8772), - [anon_sym_TILDE] = ACTIONS(8772), - [anon_sym_STAR] = ACTIONS(8772), - [anon_sym_AMP_AMP] = ACTIONS(8772), - [anon_sym_AMP] = ACTIONS(8770), - [anon_sym_SEMI] = ACTIONS(8772), - [anon_sym___extension__] = ACTIONS(8770), - [anon_sym_typedef] = ACTIONS(8770), - [anon_sym_virtual] = ACTIONS(8770), - [anon_sym_extern] = ACTIONS(8770), - [anon_sym___attribute__] = ACTIONS(8770), - [anon_sym___attribute] = ACTIONS(8770), - [anon_sym_using] = ACTIONS(8770), - [anon_sym_COLON_COLON] = ACTIONS(8772), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8772), - [anon_sym___declspec] = ACTIONS(8770), - [anon_sym___based] = ACTIONS(8770), - [anon_sym_signed] = ACTIONS(8770), - [anon_sym_unsigned] = ACTIONS(8770), - [anon_sym_long] = ACTIONS(8770), - [anon_sym_short] = ACTIONS(8770), - [anon_sym_LBRACK] = ACTIONS(8770), - [anon_sym_static] = ACTIONS(8770), - [anon_sym_register] = ACTIONS(8770), - [anon_sym_inline] = ACTIONS(8770), - [anon_sym___inline] = ACTIONS(8770), - [anon_sym___inline__] = ACTIONS(8770), - [anon_sym___forceinline] = ACTIONS(8770), - [anon_sym_thread_local] = ACTIONS(8770), - [anon_sym___thread] = ACTIONS(8770), - [anon_sym_const] = ACTIONS(8770), - [anon_sym_constexpr] = ACTIONS(8770), - [anon_sym_volatile] = ACTIONS(8770), - [anon_sym_restrict] = ACTIONS(8770), - [anon_sym___restrict__] = ACTIONS(8770), - [anon_sym__Atomic] = ACTIONS(8770), - [anon_sym__Noreturn] = ACTIONS(8770), - [anon_sym_noreturn] = ACTIONS(8770), - [anon_sym__Nonnull] = ACTIONS(8770), - [anon_sym_mutable] = ACTIONS(8770), - [anon_sym_constinit] = ACTIONS(8770), - [anon_sym_consteval] = ACTIONS(8770), - [anon_sym_alignas] = ACTIONS(8770), - [anon_sym__Alignas] = ACTIONS(8770), - [sym_primitive_type] = ACTIONS(8770), - [anon_sym_enum] = ACTIONS(8770), - [anon_sym_class] = ACTIONS(8770), - [anon_sym_struct] = ACTIONS(8770), - [anon_sym_union] = ACTIONS(8770), - [anon_sym_typename] = ACTIONS(8770), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8770), - [anon_sym_decltype] = ACTIONS(8770), - [anon_sym_explicit] = ACTIONS(8770), - [anon_sym_private] = ACTIONS(8770), - [anon_sym_template] = ACTIONS(8770), - [anon_sym_operator] = ACTIONS(8770), - [anon_sym_friend] = ACTIONS(8770), - [anon_sym_public] = ACTIONS(8770), - [anon_sym_protected] = ACTIONS(8770), - [anon_sym_static_assert] = ACTIONS(8770), - [anon_sym_LBRACK_COLON] = ACTIONS(8772), - }, - [STATE(2858)] = { - [sym_attribute_specifier] = STATE(3158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7455), - [anon_sym_COMMA] = ACTIONS(7455), - [anon_sym_LPAREN2] = ACTIONS(7455), - [anon_sym_DASH] = ACTIONS(7453), - [anon_sym_PLUS] = ACTIONS(7453), - [anon_sym_STAR] = ACTIONS(7453), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7453), - [anon_sym_PIPE_PIPE] = ACTIONS(7455), - [anon_sym_AMP_AMP] = ACTIONS(7455), - [anon_sym_PIPE] = ACTIONS(7453), - [anon_sym_CARET] = ACTIONS(7453), - [anon_sym_AMP] = ACTIONS(7453), - [anon_sym_EQ_EQ] = ACTIONS(7455), - [anon_sym_BANG_EQ] = ACTIONS(7455), - [anon_sym_GT] = ACTIONS(7453), - [anon_sym_GT_EQ] = ACTIONS(7453), - [anon_sym_LT_EQ] = ACTIONS(7453), - [anon_sym_LT] = ACTIONS(7453), - [anon_sym_LT_LT] = ACTIONS(7453), - [anon_sym_GT_GT] = ACTIONS(7453), - [anon_sym___extension__] = ACTIONS(7455), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7455), - [anon_sym_LBRACK] = ACTIONS(7455), - [anon_sym_EQ] = ACTIONS(7453), - [anon_sym_const] = ACTIONS(7453), - [anon_sym_constexpr] = ACTIONS(7455), - [anon_sym_volatile] = ACTIONS(7455), - [anon_sym_restrict] = ACTIONS(7455), - [anon_sym___restrict__] = ACTIONS(7455), - [anon_sym__Atomic] = ACTIONS(7455), - [anon_sym__Noreturn] = ACTIONS(7455), - [anon_sym_noreturn] = ACTIONS(7455), - [anon_sym__Nonnull] = ACTIONS(7455), - [anon_sym_mutable] = ACTIONS(7455), - [anon_sym_constinit] = ACTIONS(7455), - [anon_sym_consteval] = ACTIONS(7455), - [anon_sym_alignas] = ACTIONS(7455), - [anon_sym__Alignas] = ACTIONS(7455), - [anon_sym_QMARK] = ACTIONS(7455), - [anon_sym_STAR_EQ] = ACTIONS(7455), - [anon_sym_SLASH_EQ] = ACTIONS(7455), - [anon_sym_PERCENT_EQ] = ACTIONS(7455), - [anon_sym_PLUS_EQ] = ACTIONS(7455), - [anon_sym_DASH_EQ] = ACTIONS(7455), - [anon_sym_LT_LT_EQ] = ACTIONS(7455), - [anon_sym_GT_GT_EQ] = ACTIONS(7453), - [anon_sym_AMP_EQ] = ACTIONS(7455), - [anon_sym_CARET_EQ] = ACTIONS(7455), - [anon_sym_PIPE_EQ] = ACTIONS(7455), - [anon_sym_and_eq] = ACTIONS(7455), - [anon_sym_or_eq] = ACTIONS(7455), - [anon_sym_xor_eq] = ACTIONS(7455), - [anon_sym_LT_EQ_GT] = ACTIONS(7455), - [anon_sym_or] = ACTIONS(7453), - [anon_sym_and] = ACTIONS(7453), - [anon_sym_bitor] = ACTIONS(7455), - [anon_sym_xor] = ACTIONS(7453), - [anon_sym_bitand] = ACTIONS(7455), - [anon_sym_not_eq] = ACTIONS(7455), - [anon_sym_DASH_DASH] = ACTIONS(7455), - [anon_sym_PLUS_PLUS] = ACTIONS(7455), - [anon_sym_DOT] = ACTIONS(7453), - [anon_sym_DOT_STAR] = ACTIONS(7455), - [anon_sym_DASH_GT] = ACTIONS(7455), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7455), - [anon_sym_override] = ACTIONS(7455), - [anon_sym_GT2] = ACTIONS(7455), - [anon_sym_requires] = ACTIONS(7455), - }, - [STATE(2859)] = { - [sym_identifier] = ACTIONS(8774), - [aux_sym_preproc_def_token1] = ACTIONS(8774), - [aux_sym_preproc_if_token1] = ACTIONS(8774), - [aux_sym_preproc_if_token2] = ACTIONS(8774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8774), - [aux_sym_preproc_else_token1] = ACTIONS(8774), - [aux_sym_preproc_elif_token1] = ACTIONS(8774), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8774), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8774), - [sym_preproc_directive] = ACTIONS(8774), - [anon_sym_LPAREN2] = ACTIONS(8776), - [anon_sym_TILDE] = ACTIONS(8776), - [anon_sym_STAR] = ACTIONS(8776), - [anon_sym_AMP_AMP] = ACTIONS(8776), - [anon_sym_AMP] = ACTIONS(8774), - [anon_sym_SEMI] = ACTIONS(8776), - [anon_sym___extension__] = ACTIONS(8774), - [anon_sym_typedef] = ACTIONS(8774), - [anon_sym_virtual] = ACTIONS(8774), - [anon_sym_extern] = ACTIONS(8774), - [anon_sym___attribute__] = ACTIONS(8774), - [anon_sym___attribute] = ACTIONS(8774), - [anon_sym_using] = ACTIONS(8774), - [anon_sym_COLON_COLON] = ACTIONS(8776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8776), - [anon_sym___declspec] = ACTIONS(8774), - [anon_sym___based] = ACTIONS(8774), - [anon_sym_signed] = ACTIONS(8774), - [anon_sym_unsigned] = ACTIONS(8774), - [anon_sym_long] = ACTIONS(8774), - [anon_sym_short] = ACTIONS(8774), - [anon_sym_LBRACK] = ACTIONS(8774), - [anon_sym_static] = ACTIONS(8774), - [anon_sym_register] = ACTIONS(8774), - [anon_sym_inline] = ACTIONS(8774), - [anon_sym___inline] = ACTIONS(8774), - [anon_sym___inline__] = ACTIONS(8774), - [anon_sym___forceinline] = ACTIONS(8774), - [anon_sym_thread_local] = ACTIONS(8774), - [anon_sym___thread] = ACTIONS(8774), - [anon_sym_const] = ACTIONS(8774), - [anon_sym_constexpr] = ACTIONS(8774), - [anon_sym_volatile] = ACTIONS(8774), - [anon_sym_restrict] = ACTIONS(8774), - [anon_sym___restrict__] = ACTIONS(8774), - [anon_sym__Atomic] = ACTIONS(8774), - [anon_sym__Noreturn] = ACTIONS(8774), - [anon_sym_noreturn] = ACTIONS(8774), - [anon_sym__Nonnull] = ACTIONS(8774), - [anon_sym_mutable] = ACTIONS(8774), - [anon_sym_constinit] = ACTIONS(8774), - [anon_sym_consteval] = ACTIONS(8774), - [anon_sym_alignas] = ACTIONS(8774), - [anon_sym__Alignas] = ACTIONS(8774), - [sym_primitive_type] = ACTIONS(8774), - [anon_sym_enum] = ACTIONS(8774), - [anon_sym_class] = ACTIONS(8774), - [anon_sym_struct] = ACTIONS(8774), - [anon_sym_union] = ACTIONS(8774), - [anon_sym_typename] = ACTIONS(8774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8774), - [anon_sym_decltype] = ACTIONS(8774), - [anon_sym_explicit] = ACTIONS(8774), - [anon_sym_private] = ACTIONS(8774), - [anon_sym_template] = ACTIONS(8774), - [anon_sym_operator] = ACTIONS(8774), - [anon_sym_friend] = ACTIONS(8774), - [anon_sym_public] = ACTIONS(8774), - [anon_sym_protected] = ACTIONS(8774), - [anon_sym_static_assert] = ACTIONS(8774), - [anon_sym_LBRACK_COLON] = ACTIONS(8776), - }, - [STATE(2860)] = { - [sym_identifier] = ACTIONS(8778), - [aux_sym_preproc_def_token1] = ACTIONS(8778), - [aux_sym_preproc_if_token1] = ACTIONS(8778), - [aux_sym_preproc_if_token2] = ACTIONS(8778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8778), - [aux_sym_preproc_else_token1] = ACTIONS(8778), - [aux_sym_preproc_elif_token1] = ACTIONS(8778), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8778), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8778), - [sym_preproc_directive] = ACTIONS(8778), - [anon_sym_LPAREN2] = ACTIONS(8780), - [anon_sym_TILDE] = ACTIONS(8780), - [anon_sym_STAR] = ACTIONS(8780), - [anon_sym_AMP_AMP] = ACTIONS(8780), - [anon_sym_AMP] = ACTIONS(8778), - [anon_sym_SEMI] = ACTIONS(8780), - [anon_sym___extension__] = ACTIONS(8778), - [anon_sym_typedef] = ACTIONS(8778), - [anon_sym_virtual] = ACTIONS(8778), - [anon_sym_extern] = ACTIONS(8778), - [anon_sym___attribute__] = ACTIONS(8778), - [anon_sym___attribute] = ACTIONS(8778), - [anon_sym_using] = ACTIONS(8778), - [anon_sym_COLON_COLON] = ACTIONS(8780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8780), - [anon_sym___declspec] = ACTIONS(8778), - [anon_sym___based] = ACTIONS(8778), - [anon_sym_signed] = ACTIONS(8778), - [anon_sym_unsigned] = ACTIONS(8778), - [anon_sym_long] = ACTIONS(8778), - [anon_sym_short] = ACTIONS(8778), - [anon_sym_LBRACK] = ACTIONS(8778), - [anon_sym_static] = ACTIONS(8778), - [anon_sym_register] = ACTIONS(8778), - [anon_sym_inline] = ACTIONS(8778), - [anon_sym___inline] = ACTIONS(8778), - [anon_sym___inline__] = ACTIONS(8778), - [anon_sym___forceinline] = ACTIONS(8778), - [anon_sym_thread_local] = ACTIONS(8778), - [anon_sym___thread] = ACTIONS(8778), - [anon_sym_const] = ACTIONS(8778), - [anon_sym_constexpr] = ACTIONS(8778), - [anon_sym_volatile] = ACTIONS(8778), - [anon_sym_restrict] = ACTIONS(8778), - [anon_sym___restrict__] = ACTIONS(8778), - [anon_sym__Atomic] = ACTIONS(8778), - [anon_sym__Noreturn] = ACTIONS(8778), - [anon_sym_noreturn] = ACTIONS(8778), - [anon_sym__Nonnull] = ACTIONS(8778), - [anon_sym_mutable] = ACTIONS(8778), - [anon_sym_constinit] = ACTIONS(8778), - [anon_sym_consteval] = ACTIONS(8778), - [anon_sym_alignas] = ACTIONS(8778), - [anon_sym__Alignas] = ACTIONS(8778), - [sym_primitive_type] = ACTIONS(8778), - [anon_sym_enum] = ACTIONS(8778), - [anon_sym_class] = ACTIONS(8778), - [anon_sym_struct] = ACTIONS(8778), - [anon_sym_union] = ACTIONS(8778), - [anon_sym_typename] = ACTIONS(8778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8778), - [anon_sym_decltype] = ACTIONS(8778), - [anon_sym_explicit] = ACTIONS(8778), - [anon_sym_private] = ACTIONS(8778), - [anon_sym_template] = ACTIONS(8778), - [anon_sym_operator] = ACTIONS(8778), - [anon_sym_friend] = ACTIONS(8778), - [anon_sym_public] = ACTIONS(8778), - [anon_sym_protected] = ACTIONS(8778), - [anon_sym_static_assert] = ACTIONS(8778), - [anon_sym_LBRACK_COLON] = ACTIONS(8780), - }, - [STATE(2861)] = { - [sym_identifier] = ACTIONS(8782), - [aux_sym_preproc_def_token1] = ACTIONS(8782), - [aux_sym_preproc_if_token1] = ACTIONS(8782), - [aux_sym_preproc_if_token2] = ACTIONS(8782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8782), - [aux_sym_preproc_else_token1] = ACTIONS(8782), - [aux_sym_preproc_elif_token1] = ACTIONS(8782), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8782), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8782), - [sym_preproc_directive] = ACTIONS(8782), - [anon_sym_LPAREN2] = ACTIONS(8784), - [anon_sym_TILDE] = ACTIONS(8784), - [anon_sym_STAR] = ACTIONS(8784), - [anon_sym_AMP_AMP] = ACTIONS(8784), - [anon_sym_AMP] = ACTIONS(8782), - [anon_sym_SEMI] = ACTIONS(8784), - [anon_sym___extension__] = ACTIONS(8782), - [anon_sym_typedef] = ACTIONS(8782), - [anon_sym_virtual] = ACTIONS(8782), - [anon_sym_extern] = ACTIONS(8782), - [anon_sym___attribute__] = ACTIONS(8782), - [anon_sym___attribute] = ACTIONS(8782), - [anon_sym_using] = ACTIONS(8782), - [anon_sym_COLON_COLON] = ACTIONS(8784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8784), - [anon_sym___declspec] = ACTIONS(8782), - [anon_sym___based] = ACTIONS(8782), - [anon_sym_signed] = ACTIONS(8782), - [anon_sym_unsigned] = ACTIONS(8782), - [anon_sym_long] = ACTIONS(8782), - [anon_sym_short] = ACTIONS(8782), - [anon_sym_LBRACK] = ACTIONS(8782), - [anon_sym_static] = ACTIONS(8782), - [anon_sym_register] = ACTIONS(8782), - [anon_sym_inline] = ACTIONS(8782), - [anon_sym___inline] = ACTIONS(8782), - [anon_sym___inline__] = ACTIONS(8782), - [anon_sym___forceinline] = ACTIONS(8782), - [anon_sym_thread_local] = ACTIONS(8782), - [anon_sym___thread] = ACTIONS(8782), - [anon_sym_const] = ACTIONS(8782), - [anon_sym_constexpr] = ACTIONS(8782), - [anon_sym_volatile] = ACTIONS(8782), - [anon_sym_restrict] = ACTIONS(8782), - [anon_sym___restrict__] = ACTIONS(8782), - [anon_sym__Atomic] = ACTIONS(8782), - [anon_sym__Noreturn] = ACTIONS(8782), - [anon_sym_noreturn] = ACTIONS(8782), - [anon_sym__Nonnull] = ACTIONS(8782), - [anon_sym_mutable] = ACTIONS(8782), - [anon_sym_constinit] = ACTIONS(8782), - [anon_sym_consteval] = ACTIONS(8782), - [anon_sym_alignas] = ACTIONS(8782), - [anon_sym__Alignas] = ACTIONS(8782), - [sym_primitive_type] = ACTIONS(8782), - [anon_sym_enum] = ACTIONS(8782), - [anon_sym_class] = ACTIONS(8782), - [anon_sym_struct] = ACTIONS(8782), - [anon_sym_union] = ACTIONS(8782), - [anon_sym_typename] = ACTIONS(8782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8782), - [anon_sym_decltype] = ACTIONS(8782), - [anon_sym_explicit] = ACTIONS(8782), - [anon_sym_private] = ACTIONS(8782), - [anon_sym_template] = ACTIONS(8782), - [anon_sym_operator] = ACTIONS(8782), - [anon_sym_friend] = ACTIONS(8782), - [anon_sym_public] = ACTIONS(8782), - [anon_sym_protected] = ACTIONS(8782), - [anon_sym_static_assert] = ACTIONS(8782), - [anon_sym_LBRACK_COLON] = ACTIONS(8784), - }, - [STATE(2862)] = { - [sym_identifier] = ACTIONS(8786), - [aux_sym_preproc_def_token1] = ACTIONS(8786), - [aux_sym_preproc_if_token1] = ACTIONS(8786), - [aux_sym_preproc_if_token2] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), - [aux_sym_preproc_else_token1] = ACTIONS(8786), - [aux_sym_preproc_elif_token1] = ACTIONS(8786), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8786), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8786), - [sym_preproc_directive] = ACTIONS(8786), - [anon_sym_LPAREN2] = ACTIONS(8788), - [anon_sym_TILDE] = ACTIONS(8788), - [anon_sym_STAR] = ACTIONS(8788), - [anon_sym_AMP_AMP] = ACTIONS(8788), - [anon_sym_AMP] = ACTIONS(8786), - [anon_sym_SEMI] = ACTIONS(8788), - [anon_sym___extension__] = ACTIONS(8786), - [anon_sym_typedef] = ACTIONS(8786), - [anon_sym_virtual] = ACTIONS(8786), - [anon_sym_extern] = ACTIONS(8786), - [anon_sym___attribute__] = ACTIONS(8786), - [anon_sym___attribute] = ACTIONS(8786), - [anon_sym_using] = ACTIONS(8786), - [anon_sym_COLON_COLON] = ACTIONS(8788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), - [anon_sym___declspec] = ACTIONS(8786), - [anon_sym___based] = ACTIONS(8786), - [anon_sym_signed] = ACTIONS(8786), - [anon_sym_unsigned] = ACTIONS(8786), - [anon_sym_long] = ACTIONS(8786), - [anon_sym_short] = ACTIONS(8786), - [anon_sym_LBRACK] = ACTIONS(8786), - [anon_sym_static] = ACTIONS(8786), - [anon_sym_register] = ACTIONS(8786), - [anon_sym_inline] = ACTIONS(8786), - [anon_sym___inline] = ACTIONS(8786), - [anon_sym___inline__] = ACTIONS(8786), - [anon_sym___forceinline] = ACTIONS(8786), - [anon_sym_thread_local] = ACTIONS(8786), - [anon_sym___thread] = ACTIONS(8786), - [anon_sym_const] = ACTIONS(8786), - [anon_sym_constexpr] = ACTIONS(8786), - [anon_sym_volatile] = ACTIONS(8786), - [anon_sym_restrict] = ACTIONS(8786), - [anon_sym___restrict__] = ACTIONS(8786), - [anon_sym__Atomic] = ACTIONS(8786), - [anon_sym__Noreturn] = ACTIONS(8786), - [anon_sym_noreturn] = ACTIONS(8786), - [anon_sym__Nonnull] = ACTIONS(8786), - [anon_sym_mutable] = ACTIONS(8786), - [anon_sym_constinit] = ACTIONS(8786), - [anon_sym_consteval] = ACTIONS(8786), - [anon_sym_alignas] = ACTIONS(8786), - [anon_sym__Alignas] = ACTIONS(8786), - [sym_primitive_type] = ACTIONS(8786), - [anon_sym_enum] = ACTIONS(8786), - [anon_sym_class] = ACTIONS(8786), - [anon_sym_struct] = ACTIONS(8786), - [anon_sym_union] = ACTIONS(8786), - [anon_sym_typename] = ACTIONS(8786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8786), - [anon_sym_decltype] = ACTIONS(8786), - [anon_sym_explicit] = ACTIONS(8786), - [anon_sym_private] = ACTIONS(8786), - [anon_sym_template] = ACTIONS(8786), - [anon_sym_operator] = ACTIONS(8786), - [anon_sym_friend] = ACTIONS(8786), - [anon_sym_public] = ACTIONS(8786), - [anon_sym_protected] = ACTIONS(8786), - [anon_sym_static_assert] = ACTIONS(8786), - [anon_sym_LBRACK_COLON] = ACTIONS(8788), - }, - [STATE(2863)] = { - [sym_identifier] = ACTIONS(8790), - [aux_sym_preproc_def_token1] = ACTIONS(8790), - [aux_sym_preproc_if_token1] = ACTIONS(8790), - [aux_sym_preproc_if_token2] = ACTIONS(8790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8790), - [aux_sym_preproc_else_token1] = ACTIONS(8790), - [aux_sym_preproc_elif_token1] = ACTIONS(8790), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8790), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8790), - [sym_preproc_directive] = ACTIONS(8790), - [anon_sym_LPAREN2] = ACTIONS(8792), - [anon_sym_TILDE] = ACTIONS(8792), - [anon_sym_STAR] = ACTIONS(8792), - [anon_sym_AMP_AMP] = ACTIONS(8792), - [anon_sym_AMP] = ACTIONS(8790), - [anon_sym_SEMI] = ACTIONS(8792), - [anon_sym___extension__] = ACTIONS(8790), - [anon_sym_typedef] = ACTIONS(8790), - [anon_sym_virtual] = ACTIONS(8790), - [anon_sym_extern] = ACTIONS(8790), - [anon_sym___attribute__] = ACTIONS(8790), - [anon_sym___attribute] = ACTIONS(8790), - [anon_sym_using] = ACTIONS(8790), - [anon_sym_COLON_COLON] = ACTIONS(8792), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8792), - [anon_sym___declspec] = ACTIONS(8790), - [anon_sym___based] = ACTIONS(8790), - [anon_sym_signed] = ACTIONS(8790), - [anon_sym_unsigned] = ACTIONS(8790), - [anon_sym_long] = ACTIONS(8790), - [anon_sym_short] = ACTIONS(8790), - [anon_sym_LBRACK] = ACTIONS(8790), - [anon_sym_static] = ACTIONS(8790), - [anon_sym_register] = ACTIONS(8790), - [anon_sym_inline] = ACTIONS(8790), - [anon_sym___inline] = ACTIONS(8790), - [anon_sym___inline__] = ACTIONS(8790), - [anon_sym___forceinline] = ACTIONS(8790), - [anon_sym_thread_local] = ACTIONS(8790), - [anon_sym___thread] = ACTIONS(8790), - [anon_sym_const] = ACTIONS(8790), - [anon_sym_constexpr] = ACTIONS(8790), - [anon_sym_volatile] = ACTIONS(8790), - [anon_sym_restrict] = ACTIONS(8790), - [anon_sym___restrict__] = ACTIONS(8790), - [anon_sym__Atomic] = ACTIONS(8790), - [anon_sym__Noreturn] = ACTIONS(8790), - [anon_sym_noreturn] = ACTIONS(8790), - [anon_sym__Nonnull] = ACTIONS(8790), - [anon_sym_mutable] = ACTIONS(8790), - [anon_sym_constinit] = ACTIONS(8790), - [anon_sym_consteval] = ACTIONS(8790), - [anon_sym_alignas] = ACTIONS(8790), - [anon_sym__Alignas] = ACTIONS(8790), - [sym_primitive_type] = ACTIONS(8790), - [anon_sym_enum] = ACTIONS(8790), - [anon_sym_class] = ACTIONS(8790), - [anon_sym_struct] = ACTIONS(8790), - [anon_sym_union] = ACTIONS(8790), - [anon_sym_typename] = ACTIONS(8790), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8790), - [anon_sym_decltype] = ACTIONS(8790), - [anon_sym_explicit] = ACTIONS(8790), - [anon_sym_private] = ACTIONS(8790), - [anon_sym_template] = ACTIONS(8790), - [anon_sym_operator] = ACTIONS(8790), - [anon_sym_friend] = ACTIONS(8790), - [anon_sym_public] = ACTIONS(8790), - [anon_sym_protected] = ACTIONS(8790), - [anon_sym_static_assert] = ACTIONS(8790), - [anon_sym_LBRACK_COLON] = ACTIONS(8792), - }, - [STATE(2864)] = { - [sym_identifier] = ACTIONS(8794), - [aux_sym_preproc_def_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token2] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), - [aux_sym_preproc_else_token1] = ACTIONS(8794), - [aux_sym_preproc_elif_token1] = ACTIONS(8794), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8794), - [sym_preproc_directive] = ACTIONS(8794), - [anon_sym_LPAREN2] = ACTIONS(8796), - [anon_sym_TILDE] = ACTIONS(8796), - [anon_sym_STAR] = ACTIONS(8796), - [anon_sym_AMP_AMP] = ACTIONS(8796), - [anon_sym_AMP] = ACTIONS(8794), - [anon_sym_SEMI] = ACTIONS(8796), - [anon_sym___extension__] = ACTIONS(8794), - [anon_sym_typedef] = ACTIONS(8794), - [anon_sym_virtual] = ACTIONS(8794), - [anon_sym_extern] = ACTIONS(8794), - [anon_sym___attribute__] = ACTIONS(8794), - [anon_sym___attribute] = ACTIONS(8794), - [anon_sym_using] = ACTIONS(8794), - [anon_sym_COLON_COLON] = ACTIONS(8796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), - [anon_sym___declspec] = ACTIONS(8794), - [anon_sym___based] = ACTIONS(8794), - [anon_sym_signed] = ACTIONS(8794), - [anon_sym_unsigned] = ACTIONS(8794), - [anon_sym_long] = ACTIONS(8794), - [anon_sym_short] = ACTIONS(8794), - [anon_sym_LBRACK] = ACTIONS(8794), - [anon_sym_static] = ACTIONS(8794), - [anon_sym_register] = ACTIONS(8794), - [anon_sym_inline] = ACTIONS(8794), - [anon_sym___inline] = ACTIONS(8794), - [anon_sym___inline__] = ACTIONS(8794), - [anon_sym___forceinline] = ACTIONS(8794), - [anon_sym_thread_local] = ACTIONS(8794), - [anon_sym___thread] = ACTIONS(8794), - [anon_sym_const] = ACTIONS(8794), - [anon_sym_constexpr] = ACTIONS(8794), - [anon_sym_volatile] = ACTIONS(8794), - [anon_sym_restrict] = ACTIONS(8794), - [anon_sym___restrict__] = ACTIONS(8794), - [anon_sym__Atomic] = ACTIONS(8794), - [anon_sym__Noreturn] = ACTIONS(8794), - [anon_sym_noreturn] = ACTIONS(8794), - [anon_sym__Nonnull] = ACTIONS(8794), - [anon_sym_mutable] = ACTIONS(8794), - [anon_sym_constinit] = ACTIONS(8794), - [anon_sym_consteval] = ACTIONS(8794), - [anon_sym_alignas] = ACTIONS(8794), - [anon_sym__Alignas] = ACTIONS(8794), - [sym_primitive_type] = ACTIONS(8794), - [anon_sym_enum] = ACTIONS(8794), - [anon_sym_class] = ACTIONS(8794), - [anon_sym_struct] = ACTIONS(8794), - [anon_sym_union] = ACTIONS(8794), - [anon_sym_typename] = ACTIONS(8794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8794), - [anon_sym_decltype] = ACTIONS(8794), - [anon_sym_explicit] = ACTIONS(8794), - [anon_sym_private] = ACTIONS(8794), - [anon_sym_template] = ACTIONS(8794), - [anon_sym_operator] = ACTIONS(8794), - [anon_sym_friend] = ACTIONS(8794), - [anon_sym_public] = ACTIONS(8794), - [anon_sym_protected] = ACTIONS(8794), - [anon_sym_static_assert] = ACTIONS(8794), - [anon_sym_LBRACK_COLON] = ACTIONS(8796), - }, - [STATE(2865)] = { - [sym_identifier] = ACTIONS(8794), - [aux_sym_preproc_def_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token2] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), - [aux_sym_preproc_else_token1] = ACTIONS(8794), - [aux_sym_preproc_elif_token1] = ACTIONS(8794), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8794), - [sym_preproc_directive] = ACTIONS(8794), - [anon_sym_LPAREN2] = ACTIONS(8796), - [anon_sym_TILDE] = ACTIONS(8796), - [anon_sym_STAR] = ACTIONS(8796), - [anon_sym_AMP_AMP] = ACTIONS(8796), - [anon_sym_AMP] = ACTIONS(8794), - [anon_sym_SEMI] = ACTIONS(8796), - [anon_sym___extension__] = ACTIONS(8794), - [anon_sym_typedef] = ACTIONS(8794), - [anon_sym_virtual] = ACTIONS(8794), - [anon_sym_extern] = ACTIONS(8794), - [anon_sym___attribute__] = ACTIONS(8794), - [anon_sym___attribute] = ACTIONS(8794), - [anon_sym_using] = ACTIONS(8794), - [anon_sym_COLON_COLON] = ACTIONS(8796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), - [anon_sym___declspec] = ACTIONS(8794), - [anon_sym___based] = ACTIONS(8794), - [anon_sym_signed] = ACTIONS(8794), - [anon_sym_unsigned] = ACTIONS(8794), - [anon_sym_long] = ACTIONS(8794), - [anon_sym_short] = ACTIONS(8794), - [anon_sym_LBRACK] = ACTIONS(8794), - [anon_sym_static] = ACTIONS(8794), - [anon_sym_register] = ACTIONS(8794), - [anon_sym_inline] = ACTIONS(8794), - [anon_sym___inline] = ACTIONS(8794), - [anon_sym___inline__] = ACTIONS(8794), - [anon_sym___forceinline] = ACTIONS(8794), - [anon_sym_thread_local] = ACTIONS(8794), - [anon_sym___thread] = ACTIONS(8794), - [anon_sym_const] = ACTIONS(8794), - [anon_sym_constexpr] = ACTIONS(8794), - [anon_sym_volatile] = ACTIONS(8794), - [anon_sym_restrict] = ACTIONS(8794), - [anon_sym___restrict__] = ACTIONS(8794), - [anon_sym__Atomic] = ACTIONS(8794), - [anon_sym__Noreturn] = ACTIONS(8794), - [anon_sym_noreturn] = ACTIONS(8794), - [anon_sym__Nonnull] = ACTIONS(8794), - [anon_sym_mutable] = ACTIONS(8794), - [anon_sym_constinit] = ACTIONS(8794), - [anon_sym_consteval] = ACTIONS(8794), - [anon_sym_alignas] = ACTIONS(8794), - [anon_sym__Alignas] = ACTIONS(8794), - [sym_primitive_type] = ACTIONS(8794), - [anon_sym_enum] = ACTIONS(8794), - [anon_sym_class] = ACTIONS(8794), - [anon_sym_struct] = ACTIONS(8794), - [anon_sym_union] = ACTIONS(8794), - [anon_sym_typename] = ACTIONS(8794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8794), - [anon_sym_decltype] = ACTIONS(8794), - [anon_sym_explicit] = ACTIONS(8794), - [anon_sym_private] = ACTIONS(8794), - [anon_sym_template] = ACTIONS(8794), - [anon_sym_operator] = ACTIONS(8794), - [anon_sym_friend] = ACTIONS(8794), - [anon_sym_public] = ACTIONS(8794), - [anon_sym_protected] = ACTIONS(8794), - [anon_sym_static_assert] = ACTIONS(8794), - [anon_sym_LBRACK_COLON] = ACTIONS(8796), - }, - [STATE(2866)] = { - [sym_identifier] = ACTIONS(8794), - [aux_sym_preproc_def_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token2] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), - [aux_sym_preproc_else_token1] = ACTIONS(8794), - [aux_sym_preproc_elif_token1] = ACTIONS(8794), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8794), - [sym_preproc_directive] = ACTIONS(8794), - [anon_sym_LPAREN2] = ACTIONS(8796), - [anon_sym_TILDE] = ACTIONS(8796), - [anon_sym_STAR] = ACTIONS(8796), - [anon_sym_AMP_AMP] = ACTIONS(8796), - [anon_sym_AMP] = ACTIONS(8794), - [anon_sym_SEMI] = ACTIONS(8796), - [anon_sym___extension__] = ACTIONS(8794), - [anon_sym_typedef] = ACTIONS(8794), - [anon_sym_virtual] = ACTIONS(8794), - [anon_sym_extern] = ACTIONS(8794), - [anon_sym___attribute__] = ACTIONS(8794), - [anon_sym___attribute] = ACTIONS(8794), - [anon_sym_using] = ACTIONS(8794), - [anon_sym_COLON_COLON] = ACTIONS(8796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), - [anon_sym___declspec] = ACTIONS(8794), - [anon_sym___based] = ACTIONS(8794), - [anon_sym_signed] = ACTIONS(8794), - [anon_sym_unsigned] = ACTIONS(8794), - [anon_sym_long] = ACTIONS(8794), - [anon_sym_short] = ACTIONS(8794), - [anon_sym_LBRACK] = ACTIONS(8794), - [anon_sym_static] = ACTIONS(8794), - [anon_sym_register] = ACTIONS(8794), - [anon_sym_inline] = ACTIONS(8794), - [anon_sym___inline] = ACTIONS(8794), - [anon_sym___inline__] = ACTIONS(8794), - [anon_sym___forceinline] = ACTIONS(8794), - [anon_sym_thread_local] = ACTIONS(8794), - [anon_sym___thread] = ACTIONS(8794), - [anon_sym_const] = ACTIONS(8794), - [anon_sym_constexpr] = ACTIONS(8794), - [anon_sym_volatile] = ACTIONS(8794), - [anon_sym_restrict] = ACTIONS(8794), - [anon_sym___restrict__] = ACTIONS(8794), - [anon_sym__Atomic] = ACTIONS(8794), - [anon_sym__Noreturn] = ACTIONS(8794), - [anon_sym_noreturn] = ACTIONS(8794), - [anon_sym__Nonnull] = ACTIONS(8794), - [anon_sym_mutable] = ACTIONS(8794), - [anon_sym_constinit] = ACTIONS(8794), - [anon_sym_consteval] = ACTIONS(8794), - [anon_sym_alignas] = ACTIONS(8794), - [anon_sym__Alignas] = ACTIONS(8794), - [sym_primitive_type] = ACTIONS(8794), - [anon_sym_enum] = ACTIONS(8794), - [anon_sym_class] = ACTIONS(8794), - [anon_sym_struct] = ACTIONS(8794), - [anon_sym_union] = ACTIONS(8794), - [anon_sym_typename] = ACTIONS(8794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8794), - [anon_sym_decltype] = ACTIONS(8794), - [anon_sym_explicit] = ACTIONS(8794), - [anon_sym_private] = ACTIONS(8794), - [anon_sym_template] = ACTIONS(8794), - [anon_sym_operator] = ACTIONS(8794), - [anon_sym_friend] = ACTIONS(8794), - [anon_sym_public] = ACTIONS(8794), - [anon_sym_protected] = ACTIONS(8794), - [anon_sym_static_assert] = ACTIONS(8794), - [anon_sym_LBRACK_COLON] = ACTIONS(8796), - }, - [STATE(2867)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token2] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [aux_sym_preproc_else_token1] = ACTIONS(4270), - [aux_sym_preproc_elif_token1] = ACTIONS(4270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_friend] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - }, - [STATE(2868)] = { - [sym_identifier] = ACTIONS(8786), - [aux_sym_preproc_def_token1] = ACTIONS(8786), - [aux_sym_preproc_if_token1] = ACTIONS(8786), - [aux_sym_preproc_if_token2] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), - [aux_sym_preproc_else_token1] = ACTIONS(8786), - [aux_sym_preproc_elif_token1] = ACTIONS(8786), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8786), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8786), - [sym_preproc_directive] = ACTIONS(8786), - [anon_sym_LPAREN2] = ACTIONS(8788), - [anon_sym_TILDE] = ACTIONS(8788), - [anon_sym_STAR] = ACTIONS(8788), - [anon_sym_AMP_AMP] = ACTIONS(8788), - [anon_sym_AMP] = ACTIONS(8786), - [anon_sym_SEMI] = ACTIONS(8788), - [anon_sym___extension__] = ACTIONS(8786), - [anon_sym_typedef] = ACTIONS(8786), - [anon_sym_virtual] = ACTIONS(8786), - [anon_sym_extern] = ACTIONS(8786), - [anon_sym___attribute__] = ACTIONS(8786), - [anon_sym___attribute] = ACTIONS(8786), - [anon_sym_using] = ACTIONS(8786), - [anon_sym_COLON_COLON] = ACTIONS(8788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), - [anon_sym___declspec] = ACTIONS(8786), - [anon_sym___based] = ACTIONS(8786), - [anon_sym_signed] = ACTIONS(8786), - [anon_sym_unsigned] = ACTIONS(8786), - [anon_sym_long] = ACTIONS(8786), - [anon_sym_short] = ACTIONS(8786), - [anon_sym_LBRACK] = ACTIONS(8786), - [anon_sym_static] = ACTIONS(8786), - [anon_sym_register] = ACTIONS(8786), - [anon_sym_inline] = ACTIONS(8786), - [anon_sym___inline] = ACTIONS(8786), - [anon_sym___inline__] = ACTIONS(8786), - [anon_sym___forceinline] = ACTIONS(8786), - [anon_sym_thread_local] = ACTIONS(8786), - [anon_sym___thread] = ACTIONS(8786), - [anon_sym_const] = ACTIONS(8786), - [anon_sym_constexpr] = ACTIONS(8786), - [anon_sym_volatile] = ACTIONS(8786), - [anon_sym_restrict] = ACTIONS(8786), - [anon_sym___restrict__] = ACTIONS(8786), - [anon_sym__Atomic] = ACTIONS(8786), - [anon_sym__Noreturn] = ACTIONS(8786), - [anon_sym_noreturn] = ACTIONS(8786), - [anon_sym__Nonnull] = ACTIONS(8786), - [anon_sym_mutable] = ACTIONS(8786), - [anon_sym_constinit] = ACTIONS(8786), - [anon_sym_consteval] = ACTIONS(8786), - [anon_sym_alignas] = ACTIONS(8786), - [anon_sym__Alignas] = ACTIONS(8786), - [sym_primitive_type] = ACTIONS(8786), - [anon_sym_enum] = ACTIONS(8786), - [anon_sym_class] = ACTIONS(8786), - [anon_sym_struct] = ACTIONS(8786), - [anon_sym_union] = ACTIONS(8786), - [anon_sym_typename] = ACTIONS(8786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8786), - [anon_sym_decltype] = ACTIONS(8786), - [anon_sym_explicit] = ACTIONS(8786), - [anon_sym_private] = ACTIONS(8786), - [anon_sym_template] = ACTIONS(8786), - [anon_sym_operator] = ACTIONS(8786), - [anon_sym_friend] = ACTIONS(8786), - [anon_sym_public] = ACTIONS(8786), - [anon_sym_protected] = ACTIONS(8786), - [anon_sym_static_assert] = ACTIONS(8786), - [anon_sym_LBRACK_COLON] = ACTIONS(8788), - }, - [STATE(2869)] = { - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token2] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [aux_sym_preproc_else_token1] = ACTIONS(3950), - [aux_sym_preproc_elif_token1] = ACTIONS(3950), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_friend] = ACTIONS(3950), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), - }, - [STATE(2870)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token2] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [aux_sym_preproc_else_token1] = ACTIONS(4164), - [aux_sym_preproc_elif_token1] = ACTIONS(4164), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [anon_sym___declspec] = ACTIONS(4164), - [anon_sym___based] = ACTIONS(4164), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = 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), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_friend] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), - }, - [STATE(2871)] = { - [sym_identifier] = ACTIONS(3962), - [aux_sym_preproc_def_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token2] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), - [aux_sym_preproc_else_token1] = ACTIONS(3962), - [aux_sym_preproc_elif_token1] = ACTIONS(3962), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3962), - [sym_preproc_directive] = ACTIONS(3962), - [anon_sym_LPAREN2] = ACTIONS(3964), - [anon_sym_TILDE] = ACTIONS(3964), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym___extension__] = ACTIONS(3962), - [anon_sym_typedef] = ACTIONS(3962), - [anon_sym_virtual] = ACTIONS(3962), - [anon_sym_extern] = ACTIONS(3962), - [anon_sym___attribute__] = ACTIONS(3962), - [anon_sym___attribute] = ACTIONS(3962), - [anon_sym_using] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), - [anon_sym___declspec] = ACTIONS(3962), - [anon_sym___based] = ACTIONS(3962), - [anon_sym_signed] = ACTIONS(3962), - [anon_sym_unsigned] = ACTIONS(3962), - [anon_sym_long] = ACTIONS(3962), - [anon_sym_short] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3962), - [anon_sym_register] = ACTIONS(3962), - [anon_sym_inline] = ACTIONS(3962), - [anon_sym___inline] = ACTIONS(3962), - [anon_sym___inline__] = ACTIONS(3962), - [anon_sym___forceinline] = ACTIONS(3962), - [anon_sym_thread_local] = ACTIONS(3962), - [anon_sym___thread] = ACTIONS(3962), - [anon_sym_const] = ACTIONS(3962), - [anon_sym_constexpr] = ACTIONS(3962), - [anon_sym_volatile] = ACTIONS(3962), - [anon_sym_restrict] = ACTIONS(3962), - [anon_sym___restrict__] = ACTIONS(3962), - [anon_sym__Atomic] = ACTIONS(3962), - [anon_sym__Noreturn] = ACTIONS(3962), - [anon_sym_noreturn] = ACTIONS(3962), - [anon_sym__Nonnull] = ACTIONS(3962), - [anon_sym_mutable] = ACTIONS(3962), - [anon_sym_constinit] = ACTIONS(3962), - [anon_sym_consteval] = ACTIONS(3962), - [anon_sym_alignas] = ACTIONS(3962), - [anon_sym__Alignas] = ACTIONS(3962), - [sym_primitive_type] = ACTIONS(3962), - [anon_sym_enum] = ACTIONS(3962), - [anon_sym_class] = ACTIONS(3962), - [anon_sym_struct] = ACTIONS(3962), - [anon_sym_union] = ACTIONS(3962), - [anon_sym_typename] = ACTIONS(3962), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3962), - [anon_sym_decltype] = ACTIONS(3962), - [anon_sym_explicit] = ACTIONS(3962), - [anon_sym_private] = ACTIONS(3962), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(3962), - [anon_sym_friend] = ACTIONS(3962), - [anon_sym_public] = ACTIONS(3962), - [anon_sym_protected] = ACTIONS(3962), - [anon_sym_static_assert] = ACTIONS(3962), - [anon_sym_LBRACK_COLON] = ACTIONS(3964), - }, - [STATE(2872)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token2] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [aux_sym_preproc_else_token1] = ACTIONS(4270), - [aux_sym_preproc_elif_token1] = ACTIONS(4270), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_friend] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - }, - [STATE(2873)] = { - [sym_identifier] = ACTIONS(3984), - [aux_sym_preproc_def_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token2] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), - [aux_sym_preproc_else_token1] = ACTIONS(3984), - [aux_sym_preproc_elif_token1] = ACTIONS(3984), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3984), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3984), - [sym_preproc_directive] = ACTIONS(3984), - [anon_sym_LPAREN2] = ACTIONS(3986), - [anon_sym_TILDE] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_SEMI] = ACTIONS(3986), - [anon_sym___extension__] = ACTIONS(3984), - [anon_sym_typedef] = ACTIONS(3984), - [anon_sym_virtual] = ACTIONS(3984), - [anon_sym_extern] = ACTIONS(3984), - [anon_sym___attribute__] = ACTIONS(3984), - [anon_sym___attribute] = ACTIONS(3984), - [anon_sym_using] = ACTIONS(3984), - [anon_sym_COLON_COLON] = ACTIONS(3986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), - [anon_sym___declspec] = ACTIONS(3984), - [anon_sym___based] = ACTIONS(3984), - [anon_sym_signed] = ACTIONS(3984), - [anon_sym_unsigned] = ACTIONS(3984), - [anon_sym_long] = ACTIONS(3984), - [anon_sym_short] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_register] = ACTIONS(3984), - [anon_sym_inline] = ACTIONS(3984), - [anon_sym___inline] = ACTIONS(3984), - [anon_sym___inline__] = ACTIONS(3984), - [anon_sym___forceinline] = ACTIONS(3984), - [anon_sym_thread_local] = ACTIONS(3984), - [anon_sym___thread] = ACTIONS(3984), - [anon_sym_const] = ACTIONS(3984), - [anon_sym_constexpr] = ACTIONS(3984), - [anon_sym_volatile] = ACTIONS(3984), - [anon_sym_restrict] = ACTIONS(3984), - [anon_sym___restrict__] = ACTIONS(3984), - [anon_sym__Atomic] = ACTIONS(3984), - [anon_sym__Noreturn] = ACTIONS(3984), - [anon_sym_noreturn] = ACTIONS(3984), - [anon_sym__Nonnull] = ACTIONS(3984), - [anon_sym_mutable] = ACTIONS(3984), - [anon_sym_constinit] = ACTIONS(3984), - [anon_sym_consteval] = ACTIONS(3984), - [anon_sym_alignas] = ACTIONS(3984), - [anon_sym__Alignas] = ACTIONS(3984), - [sym_primitive_type] = ACTIONS(3984), - [anon_sym_enum] = ACTIONS(3984), - [anon_sym_class] = ACTIONS(3984), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3984), - [anon_sym_typename] = ACTIONS(3984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3984), - [anon_sym_decltype] = ACTIONS(3984), - [anon_sym_explicit] = ACTIONS(3984), - [anon_sym_private] = ACTIONS(3984), - [anon_sym_template] = ACTIONS(3984), - [anon_sym_operator] = ACTIONS(3984), - [anon_sym_friend] = ACTIONS(3984), - [anon_sym_public] = ACTIONS(3984), - [anon_sym_protected] = ACTIONS(3984), - [anon_sym_static_assert] = ACTIONS(3984), - [anon_sym_LBRACK_COLON] = ACTIONS(3986), - }, - [STATE(2874)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token2] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [aux_sym_preproc_else_token1] = ACTIONS(4080), - [aux_sym_preproc_elif_token1] = ACTIONS(4080), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_private] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_friend] = ACTIONS(4080), - [anon_sym_public] = ACTIONS(4080), - [anon_sym_protected] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), - }, - [STATE(2875)] = { - [sym_identifier] = ACTIONS(4020), - [aux_sym_preproc_def_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token2] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), - [aux_sym_preproc_else_token1] = ACTIONS(4020), - [aux_sym_preproc_elif_token1] = ACTIONS(4020), - [aux_sym_preproc_elifdef_token1] = ACTIONS(4020), - [aux_sym_preproc_elifdef_token2] = ACTIONS(4020), - [sym_preproc_directive] = ACTIONS(4020), - [anon_sym_LPAREN2] = ACTIONS(4022), - [anon_sym_TILDE] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4022), - [anon_sym_AMP_AMP] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_SEMI] = ACTIONS(4022), - [anon_sym___extension__] = ACTIONS(4020), - [anon_sym_typedef] = ACTIONS(4020), - [anon_sym_virtual] = ACTIONS(4020), - [anon_sym_extern] = ACTIONS(4020), - [anon_sym___attribute__] = ACTIONS(4020), - [anon_sym___attribute] = ACTIONS(4020), - [anon_sym_using] = ACTIONS(4020), - [anon_sym_COLON_COLON] = ACTIONS(4022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), - [anon_sym___declspec] = ACTIONS(4020), - [anon_sym___based] = ACTIONS(4020), - [anon_sym_signed] = ACTIONS(4020), - [anon_sym_unsigned] = ACTIONS(4020), - [anon_sym_long] = ACTIONS(4020), - [anon_sym_short] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_static] = ACTIONS(4020), - [anon_sym_register] = ACTIONS(4020), - [anon_sym_inline] = ACTIONS(4020), - [anon_sym___inline] = ACTIONS(4020), - [anon_sym___inline__] = ACTIONS(4020), - [anon_sym___forceinline] = ACTIONS(4020), - [anon_sym_thread_local] = ACTIONS(4020), - [anon_sym___thread] = ACTIONS(4020), - [anon_sym_const] = ACTIONS(4020), - [anon_sym_constexpr] = ACTIONS(4020), - [anon_sym_volatile] = ACTIONS(4020), - [anon_sym_restrict] = ACTIONS(4020), - [anon_sym___restrict__] = ACTIONS(4020), - [anon_sym__Atomic] = ACTIONS(4020), - [anon_sym__Noreturn] = ACTIONS(4020), - [anon_sym_noreturn] = ACTIONS(4020), - [anon_sym__Nonnull] = ACTIONS(4020), - [anon_sym_mutable] = ACTIONS(4020), - [anon_sym_constinit] = ACTIONS(4020), - [anon_sym_consteval] = ACTIONS(4020), - [anon_sym_alignas] = ACTIONS(4020), - [anon_sym__Alignas] = ACTIONS(4020), - [sym_primitive_type] = ACTIONS(4020), - [anon_sym_enum] = ACTIONS(4020), - [anon_sym_class] = ACTIONS(4020), - [anon_sym_struct] = ACTIONS(4020), - [anon_sym_union] = ACTIONS(4020), - [anon_sym_typename] = ACTIONS(4020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4020), - [anon_sym_decltype] = ACTIONS(4020), - [anon_sym_explicit] = ACTIONS(4020), - [anon_sym_private] = ACTIONS(4020), - [anon_sym_template] = ACTIONS(4020), - [anon_sym_operator] = ACTIONS(4020), - [anon_sym_friend] = ACTIONS(4020), - [anon_sym_public] = ACTIONS(4020), - [anon_sym_protected] = ACTIONS(4020), - [anon_sym_static_assert] = ACTIONS(4020), - [anon_sym_LBRACK_COLON] = ACTIONS(4022), - }, - [STATE(2876)] = { - [sym_identifier] = ACTIONS(8766), - [aux_sym_preproc_def_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token2] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), - [aux_sym_preproc_else_token1] = ACTIONS(8766), - [aux_sym_preproc_elif_token1] = ACTIONS(8766), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8766), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8766), - [sym_preproc_directive] = ACTIONS(8766), - [anon_sym_LPAREN2] = ACTIONS(8768), - [anon_sym_TILDE] = ACTIONS(8768), - [anon_sym_STAR] = ACTIONS(8768), - [anon_sym_AMP_AMP] = ACTIONS(8768), - [anon_sym_AMP] = ACTIONS(8766), - [anon_sym_SEMI] = ACTIONS(8768), - [anon_sym___extension__] = ACTIONS(8766), - [anon_sym_typedef] = ACTIONS(8766), - [anon_sym_virtual] = ACTIONS(8766), - [anon_sym_extern] = ACTIONS(8766), - [anon_sym___attribute__] = ACTIONS(8766), - [anon_sym___attribute] = ACTIONS(8766), - [anon_sym_using] = ACTIONS(8766), - [anon_sym_COLON_COLON] = ACTIONS(8768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), - [anon_sym___declspec] = ACTIONS(8766), - [anon_sym___based] = ACTIONS(8766), - [anon_sym_signed] = ACTIONS(8766), - [anon_sym_unsigned] = ACTIONS(8766), - [anon_sym_long] = ACTIONS(8766), - [anon_sym_short] = ACTIONS(8766), - [anon_sym_LBRACK] = ACTIONS(8766), - [anon_sym_static] = ACTIONS(8766), - [anon_sym_register] = ACTIONS(8766), - [anon_sym_inline] = ACTIONS(8766), - [anon_sym___inline] = ACTIONS(8766), - [anon_sym___inline__] = ACTIONS(8766), - [anon_sym___forceinline] = ACTIONS(8766), - [anon_sym_thread_local] = ACTIONS(8766), - [anon_sym___thread] = ACTIONS(8766), - [anon_sym_const] = ACTIONS(8766), - [anon_sym_constexpr] = ACTIONS(8766), - [anon_sym_volatile] = ACTIONS(8766), - [anon_sym_restrict] = ACTIONS(8766), - [anon_sym___restrict__] = ACTIONS(8766), - [anon_sym__Atomic] = ACTIONS(8766), - [anon_sym__Noreturn] = ACTIONS(8766), - [anon_sym_noreturn] = ACTIONS(8766), - [anon_sym__Nonnull] = ACTIONS(8766), - [anon_sym_mutable] = ACTIONS(8766), - [anon_sym_constinit] = ACTIONS(8766), - [anon_sym_consteval] = ACTIONS(8766), - [anon_sym_alignas] = ACTIONS(8766), - [anon_sym__Alignas] = ACTIONS(8766), - [sym_primitive_type] = ACTIONS(8766), - [anon_sym_enum] = ACTIONS(8766), - [anon_sym_class] = ACTIONS(8766), - [anon_sym_struct] = ACTIONS(8766), - [anon_sym_union] = ACTIONS(8766), - [anon_sym_typename] = ACTIONS(8766), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8766), - [anon_sym_decltype] = ACTIONS(8766), - [anon_sym_explicit] = ACTIONS(8766), - [anon_sym_private] = ACTIONS(8766), - [anon_sym_template] = ACTIONS(8766), - [anon_sym_operator] = ACTIONS(8766), - [anon_sym_friend] = ACTIONS(8766), - [anon_sym_public] = ACTIONS(8766), - [anon_sym_protected] = ACTIONS(8766), - [anon_sym_static_assert] = ACTIONS(8766), - [anon_sym_LBRACK_COLON] = ACTIONS(8768), - }, - [STATE(2877)] = { - [sym_identifier] = ACTIONS(8798), - [aux_sym_preproc_def_token1] = ACTIONS(8798), - [aux_sym_preproc_if_token1] = ACTIONS(8798), - [aux_sym_preproc_if_token2] = ACTIONS(8798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8798), - [aux_sym_preproc_else_token1] = ACTIONS(8798), - [aux_sym_preproc_elif_token1] = ACTIONS(8798), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8798), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8798), - [sym_preproc_directive] = ACTIONS(8798), - [anon_sym_LPAREN2] = ACTIONS(8800), - [anon_sym_TILDE] = ACTIONS(8800), - [anon_sym_STAR] = ACTIONS(8800), - [anon_sym_AMP_AMP] = ACTIONS(8800), - [anon_sym_AMP] = ACTIONS(8798), - [anon_sym_SEMI] = ACTIONS(8800), - [anon_sym___extension__] = ACTIONS(8798), - [anon_sym_typedef] = ACTIONS(8798), - [anon_sym_virtual] = ACTIONS(8798), - [anon_sym_extern] = ACTIONS(8798), - [anon_sym___attribute__] = ACTIONS(8798), - [anon_sym___attribute] = ACTIONS(8798), - [anon_sym_using] = ACTIONS(8798), - [anon_sym_COLON_COLON] = ACTIONS(8800), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8800), - [anon_sym___declspec] = ACTIONS(8798), - [anon_sym___based] = ACTIONS(8798), - [anon_sym_signed] = ACTIONS(8798), - [anon_sym_unsigned] = ACTIONS(8798), - [anon_sym_long] = ACTIONS(8798), - [anon_sym_short] = ACTIONS(8798), - [anon_sym_LBRACK] = ACTIONS(8798), - [anon_sym_static] = ACTIONS(8798), - [anon_sym_register] = ACTIONS(8798), - [anon_sym_inline] = ACTIONS(8798), - [anon_sym___inline] = ACTIONS(8798), - [anon_sym___inline__] = ACTIONS(8798), - [anon_sym___forceinline] = ACTIONS(8798), - [anon_sym_thread_local] = ACTIONS(8798), - [anon_sym___thread] = ACTIONS(8798), - [anon_sym_const] = ACTIONS(8798), - [anon_sym_constexpr] = ACTIONS(8798), - [anon_sym_volatile] = ACTIONS(8798), - [anon_sym_restrict] = ACTIONS(8798), - [anon_sym___restrict__] = ACTIONS(8798), - [anon_sym__Atomic] = ACTIONS(8798), - [anon_sym__Noreturn] = ACTIONS(8798), - [anon_sym_noreturn] = ACTIONS(8798), - [anon_sym__Nonnull] = ACTIONS(8798), - [anon_sym_mutable] = ACTIONS(8798), - [anon_sym_constinit] = ACTIONS(8798), - [anon_sym_consteval] = ACTIONS(8798), - [anon_sym_alignas] = ACTIONS(8798), - [anon_sym__Alignas] = ACTIONS(8798), - [sym_primitive_type] = ACTIONS(8798), - [anon_sym_enum] = ACTIONS(8798), - [anon_sym_class] = ACTIONS(8798), - [anon_sym_struct] = ACTIONS(8798), - [anon_sym_union] = ACTIONS(8798), - [anon_sym_typename] = ACTIONS(8798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8798), - [anon_sym_decltype] = ACTIONS(8798), - [anon_sym_explicit] = ACTIONS(8798), - [anon_sym_private] = ACTIONS(8798), - [anon_sym_template] = ACTIONS(8798), - [anon_sym_operator] = ACTIONS(8798), - [anon_sym_friend] = ACTIONS(8798), - [anon_sym_public] = ACTIONS(8798), - [anon_sym_protected] = ACTIONS(8798), - [anon_sym_static_assert] = ACTIONS(8798), - [anon_sym_LBRACK_COLON] = ACTIONS(8800), - }, - [STATE(2878)] = { - [sym_identifier] = ACTIONS(8802), - [aux_sym_preproc_def_token1] = ACTIONS(8802), - [aux_sym_preproc_if_token1] = ACTIONS(8802), - [aux_sym_preproc_if_token2] = ACTIONS(8802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8802), - [aux_sym_preproc_else_token1] = ACTIONS(8802), - [aux_sym_preproc_elif_token1] = ACTIONS(8802), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8802), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8802), - [sym_preproc_directive] = ACTIONS(8802), - [anon_sym_LPAREN2] = ACTIONS(8804), - [anon_sym_TILDE] = ACTIONS(8804), - [anon_sym_STAR] = ACTIONS(8804), - [anon_sym_AMP_AMP] = ACTIONS(8804), - [anon_sym_AMP] = ACTIONS(8802), - [anon_sym_SEMI] = ACTIONS(8804), - [anon_sym___extension__] = ACTIONS(8802), - [anon_sym_typedef] = ACTIONS(8802), - [anon_sym_virtual] = ACTIONS(8802), - [anon_sym_extern] = ACTIONS(8802), - [anon_sym___attribute__] = ACTIONS(8802), - [anon_sym___attribute] = ACTIONS(8802), - [anon_sym_using] = ACTIONS(8802), - [anon_sym_COLON_COLON] = ACTIONS(8804), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8804), - [anon_sym___declspec] = ACTIONS(8802), - [anon_sym___based] = ACTIONS(8802), - [anon_sym_signed] = ACTIONS(8802), - [anon_sym_unsigned] = ACTIONS(8802), - [anon_sym_long] = ACTIONS(8802), - [anon_sym_short] = ACTIONS(8802), - [anon_sym_LBRACK] = ACTIONS(8802), - [anon_sym_static] = ACTIONS(8802), - [anon_sym_register] = ACTIONS(8802), - [anon_sym_inline] = ACTIONS(8802), - [anon_sym___inline] = ACTIONS(8802), - [anon_sym___inline__] = ACTIONS(8802), - [anon_sym___forceinline] = ACTIONS(8802), - [anon_sym_thread_local] = ACTIONS(8802), - [anon_sym___thread] = ACTIONS(8802), - [anon_sym_const] = ACTIONS(8802), - [anon_sym_constexpr] = ACTIONS(8802), - [anon_sym_volatile] = ACTIONS(8802), - [anon_sym_restrict] = ACTIONS(8802), - [anon_sym___restrict__] = ACTIONS(8802), - [anon_sym__Atomic] = ACTIONS(8802), - [anon_sym__Noreturn] = ACTIONS(8802), - [anon_sym_noreturn] = ACTIONS(8802), - [anon_sym__Nonnull] = ACTIONS(8802), - [anon_sym_mutable] = ACTIONS(8802), - [anon_sym_constinit] = ACTIONS(8802), - [anon_sym_consteval] = ACTIONS(8802), - [anon_sym_alignas] = ACTIONS(8802), - [anon_sym__Alignas] = ACTIONS(8802), - [sym_primitive_type] = ACTIONS(8802), - [anon_sym_enum] = ACTIONS(8802), - [anon_sym_class] = ACTIONS(8802), - [anon_sym_struct] = ACTIONS(8802), - [anon_sym_union] = ACTIONS(8802), - [anon_sym_typename] = ACTIONS(8802), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8802), - [anon_sym_decltype] = ACTIONS(8802), - [anon_sym_explicit] = ACTIONS(8802), - [anon_sym_private] = ACTIONS(8802), - [anon_sym_template] = ACTIONS(8802), - [anon_sym_operator] = ACTIONS(8802), - [anon_sym_friend] = ACTIONS(8802), - [anon_sym_public] = ACTIONS(8802), - [anon_sym_protected] = ACTIONS(8802), - [anon_sym_static_assert] = ACTIONS(8802), - [anon_sym_LBRACK_COLON] = ACTIONS(8804), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_requires] = ACTIONS(6614), + [anon_sym_COLON_RBRACK] = ACTIONS(6616), }, - [STATE(2879)] = { + [STATE(2837)] = { [sym_identifier] = ACTIONS(4048), [aux_sym_preproc_def_token1] = ACTIONS(4048), [aux_sym_preproc_if_token1] = ACTIONS(4048), @@ -384865,267 +381568,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4048), [anon_sym_LBRACK_COLON] = ACTIONS(4050), }, - [STATE(2880)] = { - [sym_identifier] = ACTIONS(8806), - [aux_sym_preproc_def_token1] = ACTIONS(8806), - [aux_sym_preproc_if_token1] = ACTIONS(8806), - [aux_sym_preproc_if_token2] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), - [aux_sym_preproc_else_token1] = ACTIONS(8806), - [aux_sym_preproc_elif_token1] = ACTIONS(8806), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8806), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8806), - [sym_preproc_directive] = ACTIONS(8806), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_TILDE] = ACTIONS(8808), - [anon_sym_STAR] = ACTIONS(8808), - [anon_sym_AMP_AMP] = ACTIONS(8808), - [anon_sym_AMP] = ACTIONS(8806), - [anon_sym_SEMI] = ACTIONS(8808), - [anon_sym___extension__] = ACTIONS(8806), - [anon_sym_typedef] = ACTIONS(8806), - [anon_sym_virtual] = ACTIONS(8806), - [anon_sym_extern] = ACTIONS(8806), - [anon_sym___attribute__] = ACTIONS(8806), - [anon_sym___attribute] = ACTIONS(8806), - [anon_sym_using] = ACTIONS(8806), - [anon_sym_COLON_COLON] = ACTIONS(8808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), - [anon_sym___declspec] = ACTIONS(8806), - [anon_sym___based] = ACTIONS(8806), - [anon_sym_signed] = ACTIONS(8806), - [anon_sym_unsigned] = ACTIONS(8806), - [anon_sym_long] = ACTIONS(8806), - [anon_sym_short] = ACTIONS(8806), - [anon_sym_LBRACK] = ACTIONS(8806), - [anon_sym_static] = ACTIONS(8806), - [anon_sym_register] = ACTIONS(8806), - [anon_sym_inline] = ACTIONS(8806), - [anon_sym___inline] = ACTIONS(8806), - [anon_sym___inline__] = ACTIONS(8806), - [anon_sym___forceinline] = ACTIONS(8806), - [anon_sym_thread_local] = ACTIONS(8806), - [anon_sym___thread] = ACTIONS(8806), - [anon_sym_const] = ACTIONS(8806), - [anon_sym_constexpr] = ACTIONS(8806), - [anon_sym_volatile] = ACTIONS(8806), - [anon_sym_restrict] = ACTIONS(8806), - [anon_sym___restrict__] = ACTIONS(8806), - [anon_sym__Atomic] = ACTIONS(8806), - [anon_sym__Noreturn] = ACTIONS(8806), - [anon_sym_noreturn] = ACTIONS(8806), - [anon_sym__Nonnull] = ACTIONS(8806), - [anon_sym_mutable] = ACTIONS(8806), - [anon_sym_constinit] = ACTIONS(8806), - [anon_sym_consteval] = ACTIONS(8806), - [anon_sym_alignas] = ACTIONS(8806), - [anon_sym__Alignas] = ACTIONS(8806), - [sym_primitive_type] = ACTIONS(8806), - [anon_sym_enum] = ACTIONS(8806), - [anon_sym_class] = ACTIONS(8806), - [anon_sym_struct] = ACTIONS(8806), - [anon_sym_union] = ACTIONS(8806), - [anon_sym_typename] = ACTIONS(8806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8806), - [anon_sym_decltype] = ACTIONS(8806), - [anon_sym_explicit] = ACTIONS(8806), - [anon_sym_private] = ACTIONS(8806), - [anon_sym_template] = ACTIONS(8806), - [anon_sym_operator] = ACTIONS(8806), - [anon_sym_friend] = ACTIONS(8806), - [anon_sym_public] = ACTIONS(8806), - [anon_sym_protected] = ACTIONS(8806), - [anon_sym_static_assert] = ACTIONS(8806), - [anon_sym_LBRACK_COLON] = ACTIONS(8808), + [STATE(2838)] = { + [sym_attribute_specifier] = STATE(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7503), + [anon_sym_COMMA] = ACTIONS(7503), + [anon_sym_LPAREN2] = ACTIONS(7503), + [anon_sym_DASH] = ACTIONS(7501), + [anon_sym_PLUS] = ACTIONS(7501), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(7501), + [anon_sym_PERCENT] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(7501), + [anon_sym_CARET] = ACTIONS(7501), + [anon_sym_AMP] = ACTIONS(7501), + [anon_sym_EQ_EQ] = ACTIONS(7503), + [anon_sym_BANG_EQ] = ACTIONS(7503), + [anon_sym_GT] = ACTIONS(7501), + [anon_sym_GT_EQ] = ACTIONS(7503), + [anon_sym_LT_EQ] = ACTIONS(7501), + [anon_sym_LT] = ACTIONS(7501), + [anon_sym_LT_LT] = ACTIONS(7501), + [anon_sym_GT_GT] = ACTIONS(7501), + [anon_sym___extension__] = ACTIONS(7503), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7503), + [anon_sym_LBRACK] = ACTIONS(7503), + [anon_sym_RBRACK] = ACTIONS(7503), + [anon_sym_EQ] = ACTIONS(7501), + [anon_sym_const] = ACTIONS(7501), + [anon_sym_constexpr] = ACTIONS(7503), + [anon_sym_volatile] = ACTIONS(7503), + [anon_sym_restrict] = ACTIONS(7503), + [anon_sym___restrict__] = ACTIONS(7503), + [anon_sym__Atomic] = ACTIONS(7503), + [anon_sym__Noreturn] = ACTIONS(7503), + [anon_sym_noreturn] = ACTIONS(7503), + [anon_sym__Nonnull] = ACTIONS(7503), + [anon_sym_mutable] = ACTIONS(7503), + [anon_sym_constinit] = ACTIONS(7503), + [anon_sym_consteval] = ACTIONS(7503), + [anon_sym_alignas] = ACTIONS(7503), + [anon_sym__Alignas] = ACTIONS(7503), + [anon_sym_QMARK] = ACTIONS(7503), + [anon_sym_STAR_EQ] = ACTIONS(7503), + [anon_sym_SLASH_EQ] = ACTIONS(7503), + [anon_sym_PERCENT_EQ] = ACTIONS(7503), + [anon_sym_PLUS_EQ] = ACTIONS(7503), + [anon_sym_DASH_EQ] = ACTIONS(7503), + [anon_sym_LT_LT_EQ] = ACTIONS(7503), + [anon_sym_GT_GT_EQ] = ACTIONS(7503), + [anon_sym_AMP_EQ] = ACTIONS(7503), + [anon_sym_CARET_EQ] = ACTIONS(7503), + [anon_sym_PIPE_EQ] = ACTIONS(7503), + [anon_sym_and_eq] = ACTIONS(7503), + [anon_sym_or_eq] = ACTIONS(7503), + [anon_sym_xor_eq] = ACTIONS(7503), + [anon_sym_LT_EQ_GT] = ACTIONS(7503), + [anon_sym_or] = ACTIONS(7501), + [anon_sym_and] = ACTIONS(7501), + [anon_sym_bitor] = ACTIONS(7503), + [anon_sym_xor] = ACTIONS(7501), + [anon_sym_bitand] = ACTIONS(7503), + [anon_sym_not_eq] = ACTIONS(7503), + [anon_sym_DASH_DASH] = ACTIONS(7503), + [anon_sym_PLUS_PLUS] = ACTIONS(7503), + [anon_sym_DOT] = ACTIONS(7501), + [anon_sym_DOT_STAR] = ACTIONS(7503), + [anon_sym_DASH_GT] = ACTIONS(7503), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7503), + [anon_sym_override] = ACTIONS(7503), + [anon_sym_requires] = ACTIONS(7503), }, - [STATE(2881)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [aux_sym_preproc_else_token1] = ACTIONS(3618), - [aux_sym_preproc_elif_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_friend] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [STATE(2839)] = { + [sym_attribute_specifier] = STATE(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7483), + [anon_sym_LPAREN2] = ACTIONS(7483), + [anon_sym_DASH] = ACTIONS(7481), + [anon_sym_PLUS] = ACTIONS(7481), + [anon_sym_STAR] = ACTIONS(7481), + [anon_sym_SLASH] = ACTIONS(7481), + [anon_sym_PERCENT] = ACTIONS(7481), + [anon_sym_PIPE_PIPE] = ACTIONS(7483), + [anon_sym_AMP_AMP] = ACTIONS(7483), + [anon_sym_PIPE] = ACTIONS(7481), + [anon_sym_CARET] = ACTIONS(7481), + [anon_sym_AMP] = ACTIONS(7481), + [anon_sym_EQ_EQ] = ACTIONS(7483), + [anon_sym_BANG_EQ] = ACTIONS(7483), + [anon_sym_GT] = ACTIONS(7481), + [anon_sym_GT_EQ] = ACTIONS(7481), + [anon_sym_LT_EQ] = ACTIONS(7481), + [anon_sym_LT] = ACTIONS(7481), + [anon_sym_LT_LT] = ACTIONS(7481), + [anon_sym_GT_GT] = ACTIONS(7481), + [anon_sym___extension__] = ACTIONS(7483), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7483), + [anon_sym_LBRACK] = ACTIONS(7483), + [anon_sym_EQ] = ACTIONS(7481), + [anon_sym_const] = ACTIONS(7481), + [anon_sym_constexpr] = ACTIONS(7483), + [anon_sym_volatile] = ACTIONS(7483), + [anon_sym_restrict] = ACTIONS(7483), + [anon_sym___restrict__] = ACTIONS(7483), + [anon_sym__Atomic] = ACTIONS(7483), + [anon_sym__Noreturn] = ACTIONS(7483), + [anon_sym_noreturn] = ACTIONS(7483), + [anon_sym__Nonnull] = ACTIONS(7483), + [anon_sym_mutable] = ACTIONS(7483), + [anon_sym_constinit] = ACTIONS(7483), + [anon_sym_consteval] = ACTIONS(7483), + [anon_sym_alignas] = ACTIONS(7483), + [anon_sym__Alignas] = ACTIONS(7483), + [anon_sym_QMARK] = ACTIONS(7483), + [anon_sym_STAR_EQ] = ACTIONS(7483), + [anon_sym_SLASH_EQ] = ACTIONS(7483), + [anon_sym_PERCENT_EQ] = ACTIONS(7483), + [anon_sym_PLUS_EQ] = ACTIONS(7483), + [anon_sym_DASH_EQ] = ACTIONS(7483), + [anon_sym_LT_LT_EQ] = ACTIONS(7483), + [anon_sym_GT_GT_EQ] = ACTIONS(7481), + [anon_sym_AMP_EQ] = ACTIONS(7483), + [anon_sym_CARET_EQ] = ACTIONS(7483), + [anon_sym_PIPE_EQ] = ACTIONS(7483), + [anon_sym_and_eq] = ACTIONS(7483), + [anon_sym_or_eq] = ACTIONS(7483), + [anon_sym_xor_eq] = ACTIONS(7483), + [anon_sym_LT_EQ_GT] = ACTIONS(7483), + [anon_sym_or] = ACTIONS(7481), + [anon_sym_and] = ACTIONS(7481), + [anon_sym_bitor] = ACTIONS(7483), + [anon_sym_xor] = ACTIONS(7481), + [anon_sym_bitand] = ACTIONS(7483), + [anon_sym_not_eq] = ACTIONS(7483), + [anon_sym_DASH_DASH] = ACTIONS(7483), + [anon_sym_PLUS_PLUS] = ACTIONS(7483), + [anon_sym_DOT] = ACTIONS(7481), + [anon_sym_DOT_STAR] = ACTIONS(7483), + [anon_sym_DASH_GT] = ACTIONS(7483), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7483), + [anon_sym_override] = ACTIONS(7483), + [anon_sym_GT2] = ACTIONS(7483), + [anon_sym_requires] = ACTIONS(7483), }, - [STATE(2882)] = { - [sym_attribute_specifier] = STATE(3096), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7415), - [anon_sym_COMMA] = ACTIONS(7415), - [anon_sym_LPAREN2] = ACTIONS(7415), - [anon_sym_DASH] = ACTIONS(7413), - [anon_sym_PLUS] = ACTIONS(7413), - [anon_sym_STAR] = ACTIONS(7413), - [anon_sym_SLASH] = ACTIONS(7413), - [anon_sym_PERCENT] = ACTIONS(7413), - [anon_sym_PIPE_PIPE] = ACTIONS(7415), - [anon_sym_AMP_AMP] = ACTIONS(7415), - [anon_sym_PIPE] = ACTIONS(7413), - [anon_sym_CARET] = ACTIONS(7413), - [anon_sym_AMP] = ACTIONS(7413), - [anon_sym_EQ_EQ] = ACTIONS(7415), - [anon_sym_BANG_EQ] = ACTIONS(7415), - [anon_sym_GT] = ACTIONS(7413), - [anon_sym_GT_EQ] = ACTIONS(7413), - [anon_sym_LT_EQ] = ACTIONS(7413), - [anon_sym_LT] = ACTIONS(7413), - [anon_sym_LT_LT] = ACTIONS(7413), - [anon_sym_GT_GT] = ACTIONS(7413), - [anon_sym___extension__] = ACTIONS(7415), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7415), - [anon_sym_LBRACK] = ACTIONS(7415), - [anon_sym_EQ] = ACTIONS(7413), - [anon_sym_const] = ACTIONS(7413), - [anon_sym_constexpr] = ACTIONS(7415), - [anon_sym_volatile] = ACTIONS(7415), - [anon_sym_restrict] = ACTIONS(7415), - [anon_sym___restrict__] = ACTIONS(7415), - [anon_sym__Atomic] = ACTIONS(7415), - [anon_sym__Noreturn] = ACTIONS(7415), - [anon_sym_noreturn] = ACTIONS(7415), - [anon_sym__Nonnull] = ACTIONS(7415), - [anon_sym_mutable] = ACTIONS(7415), - [anon_sym_constinit] = ACTIONS(7415), - [anon_sym_consteval] = ACTIONS(7415), - [anon_sym_alignas] = ACTIONS(7415), - [anon_sym__Alignas] = ACTIONS(7415), - [anon_sym_QMARK] = ACTIONS(7415), - [anon_sym_STAR_EQ] = ACTIONS(7415), - [anon_sym_SLASH_EQ] = ACTIONS(7415), - [anon_sym_PERCENT_EQ] = ACTIONS(7415), - [anon_sym_PLUS_EQ] = ACTIONS(7415), - [anon_sym_DASH_EQ] = ACTIONS(7415), - [anon_sym_LT_LT_EQ] = ACTIONS(7415), - [anon_sym_GT_GT_EQ] = ACTIONS(7413), - [anon_sym_AMP_EQ] = ACTIONS(7415), - [anon_sym_CARET_EQ] = ACTIONS(7415), - [anon_sym_PIPE_EQ] = ACTIONS(7415), - [anon_sym_and_eq] = ACTIONS(7415), - [anon_sym_or_eq] = ACTIONS(7415), - [anon_sym_xor_eq] = ACTIONS(7415), - [anon_sym_LT_EQ_GT] = ACTIONS(7415), - [anon_sym_or] = ACTIONS(7413), - [anon_sym_and] = ACTIONS(7413), - [anon_sym_bitor] = ACTIONS(7415), - [anon_sym_xor] = ACTIONS(7413), - [anon_sym_bitand] = ACTIONS(7415), - [anon_sym_not_eq] = ACTIONS(7415), - [anon_sym_DASH_DASH] = ACTIONS(7415), - [anon_sym_PLUS_PLUS] = ACTIONS(7415), - [anon_sym_DOT] = ACTIONS(7413), - [anon_sym_DOT_STAR] = ACTIONS(7415), - [anon_sym_DASH_GT] = ACTIONS(7415), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7415), - [anon_sym_override] = ACTIONS(7415), - [anon_sym_GT2] = ACTIONS(7415), - [anon_sym_requires] = ACTIONS(7415), + [STATE(2840)] = { + [sym_attribute_specifier] = STATE(3086), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), + [anon_sym_COMMA] = ACTIONS(7507), + [anon_sym_LPAREN2] = ACTIONS(7507), + [anon_sym_DASH] = ACTIONS(7505), + [anon_sym_PLUS] = ACTIONS(7505), + [anon_sym_STAR] = ACTIONS(7505), + [anon_sym_SLASH] = ACTIONS(7505), + [anon_sym_PERCENT] = ACTIONS(7505), + [anon_sym_PIPE_PIPE] = ACTIONS(7507), + [anon_sym_AMP_AMP] = ACTIONS(7507), + [anon_sym_PIPE] = ACTIONS(7505), + [anon_sym_CARET] = ACTIONS(7505), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(7507), + [anon_sym_BANG_EQ] = ACTIONS(7507), + [anon_sym_GT] = ACTIONS(7505), + [anon_sym_GT_EQ] = ACTIONS(7507), + [anon_sym_LT_EQ] = ACTIONS(7505), + [anon_sym_LT] = ACTIONS(7505), + [anon_sym_LT_LT] = ACTIONS(7505), + [anon_sym_GT_GT] = ACTIONS(7505), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7507), + [anon_sym_LBRACK] = ACTIONS(7507), + [anon_sym_RBRACK] = ACTIONS(7507), + [anon_sym_EQ] = ACTIONS(7505), + [anon_sym_const] = ACTIONS(7505), + [anon_sym_constexpr] = ACTIONS(7507), + [anon_sym_volatile] = ACTIONS(7507), + [anon_sym_restrict] = ACTIONS(7507), + [anon_sym___restrict__] = ACTIONS(7507), + [anon_sym__Atomic] = ACTIONS(7507), + [anon_sym__Noreturn] = ACTIONS(7507), + [anon_sym_noreturn] = ACTIONS(7507), + [anon_sym__Nonnull] = ACTIONS(7507), + [anon_sym_mutable] = ACTIONS(7507), + [anon_sym_constinit] = ACTIONS(7507), + [anon_sym_consteval] = ACTIONS(7507), + [anon_sym_alignas] = ACTIONS(7507), + [anon_sym__Alignas] = ACTIONS(7507), + [anon_sym_QMARK] = ACTIONS(7507), + [anon_sym_STAR_EQ] = ACTIONS(7507), + [anon_sym_SLASH_EQ] = ACTIONS(7507), + [anon_sym_PERCENT_EQ] = ACTIONS(7507), + [anon_sym_PLUS_EQ] = ACTIONS(7507), + [anon_sym_DASH_EQ] = ACTIONS(7507), + [anon_sym_LT_LT_EQ] = ACTIONS(7507), + [anon_sym_GT_GT_EQ] = ACTIONS(7507), + [anon_sym_AMP_EQ] = ACTIONS(7507), + [anon_sym_CARET_EQ] = ACTIONS(7507), + [anon_sym_PIPE_EQ] = ACTIONS(7507), + [anon_sym_and_eq] = ACTIONS(7507), + [anon_sym_or_eq] = ACTIONS(7507), + [anon_sym_xor_eq] = ACTIONS(7507), + [anon_sym_LT_EQ_GT] = ACTIONS(7507), + [anon_sym_or] = ACTIONS(7505), + [anon_sym_and] = ACTIONS(7505), + [anon_sym_bitor] = ACTIONS(7507), + [anon_sym_xor] = ACTIONS(7505), + [anon_sym_bitand] = ACTIONS(7507), + [anon_sym_not_eq] = ACTIONS(7507), + [anon_sym_DASH_DASH] = ACTIONS(7507), + [anon_sym_PLUS_PLUS] = ACTIONS(7507), + [anon_sym_DOT] = ACTIONS(7505), + [anon_sym_DOT_STAR] = ACTIONS(7507), + [anon_sym_DASH_GT] = ACTIONS(7507), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7507), + [anon_sym_override] = ACTIONS(7507), + [anon_sym_requires] = ACTIONS(7507), }, - [STATE(2883)] = { - [sym__declaration_modifiers] = STATE(5048), - [sym_attribute_specifier] = STATE(5048), - [sym_attribute_declaration] = STATE(5048), - [sym_ms_declspec_modifier] = STATE(5048), - [sym_storage_class_specifier] = STATE(5048), - [sym_type_qualifier] = STATE(5048), - [sym_alignas_qualifier] = STATE(3497), - [sym_type_specifier] = STATE(4006), - [sym_sized_type_specifier] = STATE(4935), - [sym_enum_specifier] = STATE(4935), - [sym_struct_specifier] = STATE(4935), - [sym_union_specifier] = STATE(4935), - [sym_placeholder_type_specifier] = STATE(4935), - [sym_decltype_auto] = STATE(4948), - [sym_decltype] = STATE(4830), - [sym_class_specifier] = STATE(4935), - [sym_dependent_type] = STATE(4935), - [sym_template_type] = STATE(4578), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(8716), - [sym_qualified_type_identifier] = STATE(4601), - [sym_splice_specifier] = STATE(4504), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(4830), - [sym_splice_expression] = STATE(10768), - [aux_sym__declaration_specifiers_repeat1] = STATE(5048), - [aux_sym_sized_type_specifier_repeat1] = STATE(3824), - [sym_identifier] = ACTIONS(5936), + [STATE(2841)] = { + [sym__declaration_modifiers] = STATE(5086), + [sym_attribute_specifier] = STATE(5086), + [sym_attribute_declaration] = STATE(5086), + [sym_ms_declspec_modifier] = STATE(5086), + [sym_storage_class_specifier] = STATE(5086), + [sym_type_qualifier] = STATE(5086), + [sym_alignas_qualifier] = STATE(3492), + [sym_type_specifier] = STATE(3997), + [sym_sized_type_specifier] = STATE(4852), + [sym_enum_specifier] = STATE(4852), + [sym_struct_specifier] = STATE(4852), + [sym_union_specifier] = STATE(4852), + [sym_placeholder_type_specifier] = STATE(4852), + [sym_decltype_auto] = STATE(4839), + [sym_decltype] = STATE(4927), + [sym_class_specifier] = STATE(4852), + [sym_dependent_type] = STATE(4852), + [sym_template_type] = STATE(4577), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(8757), + [sym_qualified_type_identifier] = STATE(4597), + [sym_splice_specifier] = STATE(4461), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(4927), + [sym_splice_expression] = STATE(11531), + [aux_sym__declaration_specifiers_repeat1] = STATE(5086), + [aux_sym_sized_type_specifier_repeat1] = STATE(3785), + [sym_identifier] = ACTIONS(5930), [anon_sym___extension__] = ACTIONS(67), - [anon_sym_virtual] = ACTIONS(8641), + [anon_sym_virtual] = ACTIONS(8663), [anon_sym_extern] = ACTIONS(63), [anon_sym___attribute__] = ACTIONS(43), [anon_sym___attribute] = ACTIONS(43), - [anon_sym_COLON_COLON] = ACTIONS(5938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(5932), + [anon_sym_LBRACK_LBRACK] = ACTIONS(2214), [anon_sym___declspec] = ACTIONS(51), [anon_sym_signed] = ACTIONS(59), [anon_sym_unsigned] = ACTIONS(59), @@ -385153,2404 +381856,6069 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(67), [anon_sym_alignas] = ACTIONS(71), [anon_sym__Alignas] = ACTIONS(71), - [sym_primitive_type] = ACTIONS(3466), - [anon_sym_enum] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3470), - [anon_sym_struct] = ACTIONS(3472), - [anon_sym_union] = ACTIONS(3474), - [anon_sym_typename] = ACTIONS(3476), + [sym_primitive_type] = ACTIONS(3464), + [anon_sym_enum] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3468), + [anon_sym_struct] = ACTIONS(3470), + [anon_sym_union] = ACTIONS(3472), + [anon_sym_typename] = ACTIONS(3474), [sym_comment] = ACTIONS(3), [sym_auto] = ACTIONS(129), [anon_sym_decltype] = ACTIONS(131), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_LBRACK_COLON] = ACTIONS(3486), - }, - [STATE(2884)] = { - [sym_identifier] = ACTIONS(8810), - [aux_sym_preproc_def_token1] = ACTIONS(8810), - [aux_sym_preproc_if_token1] = ACTIONS(8810), - [aux_sym_preproc_if_token2] = ACTIONS(8810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8810), - [aux_sym_preproc_else_token1] = ACTIONS(8810), - [aux_sym_preproc_elif_token1] = ACTIONS(8810), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8810), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8810), - [sym_preproc_directive] = ACTIONS(8810), - [anon_sym_LPAREN2] = ACTIONS(8812), - [anon_sym_TILDE] = ACTIONS(8812), - [anon_sym_STAR] = ACTIONS(8812), - [anon_sym_AMP_AMP] = ACTIONS(8812), - [anon_sym_AMP] = ACTIONS(8810), - [anon_sym_SEMI] = ACTIONS(8812), - [anon_sym___extension__] = ACTIONS(8810), - [anon_sym_typedef] = ACTIONS(8810), - [anon_sym_virtual] = ACTIONS(8810), - [anon_sym_extern] = ACTIONS(8810), - [anon_sym___attribute__] = ACTIONS(8810), - [anon_sym___attribute] = ACTIONS(8810), - [anon_sym_using] = ACTIONS(8810), - [anon_sym_COLON_COLON] = ACTIONS(8812), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8812), - [anon_sym___declspec] = ACTIONS(8810), - [anon_sym___based] = ACTIONS(8810), - [anon_sym_signed] = ACTIONS(8810), - [anon_sym_unsigned] = ACTIONS(8810), - [anon_sym_long] = ACTIONS(8810), - [anon_sym_short] = ACTIONS(8810), - [anon_sym_LBRACK] = ACTIONS(8810), - [anon_sym_static] = ACTIONS(8810), - [anon_sym_register] = ACTIONS(8810), - [anon_sym_inline] = ACTIONS(8810), - [anon_sym___inline] = ACTIONS(8810), - [anon_sym___inline__] = ACTIONS(8810), - [anon_sym___forceinline] = ACTIONS(8810), - [anon_sym_thread_local] = ACTIONS(8810), - [anon_sym___thread] = ACTIONS(8810), - [anon_sym_const] = ACTIONS(8810), - [anon_sym_constexpr] = ACTIONS(8810), - [anon_sym_volatile] = ACTIONS(8810), - [anon_sym_restrict] = ACTIONS(8810), - [anon_sym___restrict__] = ACTIONS(8810), - [anon_sym__Atomic] = ACTIONS(8810), - [anon_sym__Noreturn] = ACTIONS(8810), - [anon_sym_noreturn] = ACTIONS(8810), - [anon_sym__Nonnull] = ACTIONS(8810), - [anon_sym_mutable] = ACTIONS(8810), - [anon_sym_constinit] = ACTIONS(8810), - [anon_sym_consteval] = ACTIONS(8810), - [anon_sym_alignas] = ACTIONS(8810), - [anon_sym__Alignas] = ACTIONS(8810), - [sym_primitive_type] = ACTIONS(8810), - [anon_sym_enum] = ACTIONS(8810), - [anon_sym_class] = ACTIONS(8810), - [anon_sym_struct] = ACTIONS(8810), - [anon_sym_union] = ACTIONS(8810), - [anon_sym_typename] = ACTIONS(8810), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8810), - [anon_sym_decltype] = ACTIONS(8810), - [anon_sym_explicit] = ACTIONS(8810), - [anon_sym_private] = ACTIONS(8810), - [anon_sym_template] = ACTIONS(8810), - [anon_sym_operator] = ACTIONS(8810), - [anon_sym_friend] = ACTIONS(8810), - [anon_sym_public] = ACTIONS(8810), - [anon_sym_protected] = ACTIONS(8810), - [anon_sym_static_assert] = ACTIONS(8810), - [anon_sym_LBRACK_COLON] = ACTIONS(8812), - }, - [STATE(2885)] = { - [sym_attribute_specifier] = STATE(3110), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7415), - [anon_sym_COMMA] = ACTIONS(7415), - [anon_sym_LPAREN2] = ACTIONS(7415), - [anon_sym_DASH] = ACTIONS(7413), - [anon_sym_PLUS] = ACTIONS(7413), - [anon_sym_STAR] = ACTIONS(7413), - [anon_sym_SLASH] = ACTIONS(7413), - [anon_sym_PERCENT] = ACTIONS(7413), - [anon_sym_PIPE_PIPE] = ACTIONS(7415), - [anon_sym_AMP_AMP] = ACTIONS(7415), - [anon_sym_PIPE] = ACTIONS(7413), - [anon_sym_CARET] = ACTIONS(7413), - [anon_sym_AMP] = ACTIONS(7413), - [anon_sym_EQ_EQ] = ACTIONS(7415), - [anon_sym_BANG_EQ] = ACTIONS(7415), - [anon_sym_GT] = ACTIONS(7413), - [anon_sym_GT_EQ] = ACTIONS(7415), - [anon_sym_LT_EQ] = ACTIONS(7413), - [anon_sym_LT] = ACTIONS(7413), - [anon_sym_LT_LT] = ACTIONS(7413), - [anon_sym_GT_GT] = ACTIONS(7413), - [anon_sym___extension__] = ACTIONS(7415), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7415), - [anon_sym_LBRACK] = ACTIONS(7415), - [anon_sym_RBRACK] = ACTIONS(7415), - [anon_sym_EQ] = ACTIONS(7413), - [anon_sym_const] = ACTIONS(7413), - [anon_sym_constexpr] = ACTIONS(7415), - [anon_sym_volatile] = ACTIONS(7415), - [anon_sym_restrict] = ACTIONS(7415), - [anon_sym___restrict__] = ACTIONS(7415), - [anon_sym__Atomic] = ACTIONS(7415), - [anon_sym__Noreturn] = ACTIONS(7415), - [anon_sym_noreturn] = ACTIONS(7415), - [anon_sym__Nonnull] = ACTIONS(7415), - [anon_sym_mutable] = ACTIONS(7415), - [anon_sym_constinit] = ACTIONS(7415), - [anon_sym_consteval] = ACTIONS(7415), - [anon_sym_alignas] = ACTIONS(7415), - [anon_sym__Alignas] = ACTIONS(7415), - [anon_sym_QMARK] = ACTIONS(7415), - [anon_sym_STAR_EQ] = ACTIONS(7415), - [anon_sym_SLASH_EQ] = ACTIONS(7415), - [anon_sym_PERCENT_EQ] = ACTIONS(7415), - [anon_sym_PLUS_EQ] = ACTIONS(7415), - [anon_sym_DASH_EQ] = ACTIONS(7415), - [anon_sym_LT_LT_EQ] = ACTIONS(7415), - [anon_sym_GT_GT_EQ] = ACTIONS(7415), - [anon_sym_AMP_EQ] = ACTIONS(7415), - [anon_sym_CARET_EQ] = ACTIONS(7415), - [anon_sym_PIPE_EQ] = ACTIONS(7415), - [anon_sym_and_eq] = ACTIONS(7415), - [anon_sym_or_eq] = ACTIONS(7415), - [anon_sym_xor_eq] = ACTIONS(7415), - [anon_sym_LT_EQ_GT] = ACTIONS(7415), - [anon_sym_or] = ACTIONS(7413), - [anon_sym_and] = ACTIONS(7413), - [anon_sym_bitor] = ACTIONS(7415), - [anon_sym_xor] = ACTIONS(7413), - [anon_sym_bitand] = ACTIONS(7415), - [anon_sym_not_eq] = ACTIONS(7415), - [anon_sym_DASH_DASH] = ACTIONS(7415), - [anon_sym_PLUS_PLUS] = ACTIONS(7415), - [anon_sym_DOT] = ACTIONS(7413), - [anon_sym_DOT_STAR] = ACTIONS(7415), - [anon_sym_DASH_GT] = ACTIONS(7415), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7415), - [anon_sym_override] = ACTIONS(7415), - [anon_sym_requires] = ACTIONS(7415), - }, - [STATE(2886)] = { - [sym_attribute_specifier] = STATE(3183), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7429), - [anon_sym_COMMA] = ACTIONS(7429), - [anon_sym_LPAREN2] = ACTIONS(7429), - [anon_sym_DASH] = ACTIONS(7427), - [anon_sym_PLUS] = ACTIONS(7427), - [anon_sym_STAR] = ACTIONS(7427), - [anon_sym_SLASH] = ACTIONS(7427), - [anon_sym_PERCENT] = ACTIONS(7427), - [anon_sym_PIPE_PIPE] = ACTIONS(7429), - [anon_sym_AMP_AMP] = ACTIONS(7429), - [anon_sym_PIPE] = ACTIONS(7427), - [anon_sym_CARET] = ACTIONS(7427), - [anon_sym_AMP] = ACTIONS(7427), - [anon_sym_EQ_EQ] = ACTIONS(7429), - [anon_sym_BANG_EQ] = ACTIONS(7429), - [anon_sym_GT] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7427), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_LT] = ACTIONS(7427), - [anon_sym_LT_LT] = ACTIONS(7427), - [anon_sym_GT_GT] = ACTIONS(7427), - [anon_sym___extension__] = ACTIONS(7429), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7429), - [anon_sym_LBRACK] = ACTIONS(7429), - [anon_sym_EQ] = ACTIONS(7427), - [anon_sym_const] = ACTIONS(7427), - [anon_sym_constexpr] = ACTIONS(7429), - [anon_sym_volatile] = ACTIONS(7429), - [anon_sym_restrict] = ACTIONS(7429), - [anon_sym___restrict__] = ACTIONS(7429), - [anon_sym__Atomic] = ACTIONS(7429), - [anon_sym__Noreturn] = ACTIONS(7429), - [anon_sym_noreturn] = ACTIONS(7429), - [anon_sym__Nonnull] = ACTIONS(7429), - [anon_sym_mutable] = ACTIONS(7429), - [anon_sym_constinit] = ACTIONS(7429), - [anon_sym_consteval] = ACTIONS(7429), - [anon_sym_alignas] = ACTIONS(7429), - [anon_sym__Alignas] = ACTIONS(7429), - [anon_sym_QMARK] = ACTIONS(7429), - [anon_sym_STAR_EQ] = ACTIONS(7429), - [anon_sym_SLASH_EQ] = ACTIONS(7429), - [anon_sym_PERCENT_EQ] = ACTIONS(7429), - [anon_sym_PLUS_EQ] = ACTIONS(7429), - [anon_sym_DASH_EQ] = ACTIONS(7429), - [anon_sym_LT_LT_EQ] = ACTIONS(7429), - [anon_sym_GT_GT_EQ] = ACTIONS(7427), - [anon_sym_AMP_EQ] = ACTIONS(7429), - [anon_sym_CARET_EQ] = ACTIONS(7429), - [anon_sym_PIPE_EQ] = ACTIONS(7429), - [anon_sym_and_eq] = ACTIONS(7429), - [anon_sym_or_eq] = ACTIONS(7429), - [anon_sym_xor_eq] = ACTIONS(7429), - [anon_sym_LT_EQ_GT] = ACTIONS(7429), - [anon_sym_or] = ACTIONS(7427), - [anon_sym_and] = ACTIONS(7427), - [anon_sym_bitor] = ACTIONS(7429), - [anon_sym_xor] = ACTIONS(7427), - [anon_sym_bitand] = ACTIONS(7429), - [anon_sym_not_eq] = ACTIONS(7429), - [anon_sym_DASH_DASH] = ACTIONS(7429), - [anon_sym_PLUS_PLUS] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(7427), - [anon_sym_DOT_STAR] = ACTIONS(7429), - [anon_sym_DASH_GT] = ACTIONS(7429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7429), - [anon_sym_override] = ACTIONS(7429), - [anon_sym_GT2] = ACTIONS(7429), - [anon_sym_requires] = ACTIONS(7429), - }, - [STATE(2887)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), - [anon_sym_COMMA] = ACTIONS(7633), - [anon_sym_RPAREN] = ACTIONS(7633), - [anon_sym_LPAREN2] = ACTIONS(7633), - [anon_sym_DASH] = ACTIONS(7631), - [anon_sym_PLUS] = ACTIONS(7631), - [anon_sym_STAR] = ACTIONS(7631), - [anon_sym_SLASH] = ACTIONS(7631), - [anon_sym_PERCENT] = ACTIONS(7631), - [anon_sym_PIPE_PIPE] = ACTIONS(7633), - [anon_sym_AMP_AMP] = ACTIONS(7633), - [anon_sym_PIPE] = ACTIONS(7631), - [anon_sym_CARET] = ACTIONS(7631), - [anon_sym_AMP] = ACTIONS(7631), - [anon_sym_EQ_EQ] = ACTIONS(7633), - [anon_sym_BANG_EQ] = ACTIONS(7633), - [anon_sym_GT] = ACTIONS(7631), - [anon_sym_GT_EQ] = ACTIONS(7633), - [anon_sym_LT_EQ] = ACTIONS(7631), - [anon_sym_LT] = ACTIONS(7631), - [anon_sym_LT_LT] = ACTIONS(7631), - [anon_sym_GT_GT] = ACTIONS(7631), - [anon_sym___extension__] = ACTIONS(7633), - [anon_sym___attribute__] = ACTIONS(7633), - [anon_sym___attribute] = ACTIONS(7631), - [anon_sym_LBRACE] = ACTIONS(7633), - [anon_sym_LBRACK] = ACTIONS(7633), - [anon_sym_EQ] = ACTIONS(7631), - [anon_sym_const] = ACTIONS(7631), - [anon_sym_constexpr] = ACTIONS(7633), - [anon_sym_volatile] = ACTIONS(7633), - [anon_sym_restrict] = ACTIONS(7633), - [anon_sym___restrict__] = ACTIONS(7633), - [anon_sym__Atomic] = ACTIONS(7633), - [anon_sym__Noreturn] = ACTIONS(7633), - [anon_sym_noreturn] = ACTIONS(7633), - [anon_sym__Nonnull] = ACTIONS(7633), - [anon_sym_mutable] = ACTIONS(7633), - [anon_sym_constinit] = ACTIONS(7633), - [anon_sym_consteval] = ACTIONS(7633), - [anon_sym_alignas] = ACTIONS(7633), - [anon_sym__Alignas] = ACTIONS(7633), - [anon_sym_QMARK] = ACTIONS(7633), - [anon_sym_STAR_EQ] = ACTIONS(7633), - [anon_sym_SLASH_EQ] = ACTIONS(7633), - [anon_sym_PERCENT_EQ] = ACTIONS(7633), - [anon_sym_PLUS_EQ] = ACTIONS(7633), - [anon_sym_DASH_EQ] = ACTIONS(7633), - [anon_sym_LT_LT_EQ] = ACTIONS(7633), - [anon_sym_GT_GT_EQ] = ACTIONS(7633), - [anon_sym_AMP_EQ] = ACTIONS(7633), - [anon_sym_CARET_EQ] = ACTIONS(7633), - [anon_sym_PIPE_EQ] = ACTIONS(7633), - [anon_sym_and_eq] = ACTIONS(7633), - [anon_sym_or_eq] = ACTIONS(7633), - [anon_sym_xor_eq] = ACTIONS(7633), - [anon_sym_LT_EQ_GT] = ACTIONS(7633), - [anon_sym_or] = ACTIONS(7631), - [anon_sym_and] = ACTIONS(7631), - [anon_sym_bitor] = ACTIONS(7633), - [anon_sym_xor] = ACTIONS(7631), - [anon_sym_bitand] = ACTIONS(7633), - [anon_sym_not_eq] = ACTIONS(7633), - [anon_sym_DASH_DASH] = ACTIONS(7633), - [anon_sym_PLUS_PLUS] = ACTIONS(7633), - [anon_sym_DOT] = ACTIONS(7631), - [anon_sym_DOT_STAR] = ACTIONS(7633), - [anon_sym_DASH_GT] = ACTIONS(7631), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7633), - [anon_sym_override] = ACTIONS(7633), - [anon_sym_requires] = ACTIONS(7633), - [anon_sym_DASH_GT_STAR] = ACTIONS(7633), - }, - [STATE(2888)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [aux_sym_preproc_else_token1] = ACTIONS(3618), - [aux_sym_preproc_elif_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_friend] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - }, - [STATE(2889)] = { - [sym_identifier] = ACTIONS(8814), - [aux_sym_preproc_def_token1] = ACTIONS(8814), - [aux_sym_preproc_if_token1] = ACTIONS(8814), - [aux_sym_preproc_if_token2] = ACTIONS(8814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8814), - [aux_sym_preproc_else_token1] = ACTIONS(8814), - [aux_sym_preproc_elif_token1] = ACTIONS(8814), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8814), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8814), - [sym_preproc_directive] = ACTIONS(8814), - [anon_sym_LPAREN2] = ACTIONS(8816), - [anon_sym_TILDE] = ACTIONS(8816), - [anon_sym_STAR] = ACTIONS(8816), - [anon_sym_AMP_AMP] = ACTIONS(8816), - [anon_sym_AMP] = ACTIONS(8814), - [anon_sym_SEMI] = ACTIONS(8816), - [anon_sym___extension__] = ACTIONS(8814), - [anon_sym_typedef] = ACTIONS(8814), - [anon_sym_virtual] = ACTIONS(8814), - [anon_sym_extern] = ACTIONS(8814), - [anon_sym___attribute__] = ACTIONS(8814), - [anon_sym___attribute] = ACTIONS(8814), - [anon_sym_using] = ACTIONS(8814), - [anon_sym_COLON_COLON] = ACTIONS(8816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8816), - [anon_sym___declspec] = ACTIONS(8814), - [anon_sym___based] = ACTIONS(8814), - [anon_sym_signed] = ACTIONS(8814), - [anon_sym_unsigned] = ACTIONS(8814), - [anon_sym_long] = ACTIONS(8814), - [anon_sym_short] = ACTIONS(8814), - [anon_sym_LBRACK] = ACTIONS(8814), - [anon_sym_static] = ACTIONS(8814), - [anon_sym_register] = ACTIONS(8814), - [anon_sym_inline] = ACTIONS(8814), - [anon_sym___inline] = ACTIONS(8814), - [anon_sym___inline__] = ACTIONS(8814), - [anon_sym___forceinline] = ACTIONS(8814), - [anon_sym_thread_local] = ACTIONS(8814), - [anon_sym___thread] = ACTIONS(8814), - [anon_sym_const] = ACTIONS(8814), - [anon_sym_constexpr] = ACTIONS(8814), - [anon_sym_volatile] = ACTIONS(8814), - [anon_sym_restrict] = ACTIONS(8814), - [anon_sym___restrict__] = ACTIONS(8814), - [anon_sym__Atomic] = ACTIONS(8814), - [anon_sym__Noreturn] = ACTIONS(8814), - [anon_sym_noreturn] = ACTIONS(8814), - [anon_sym__Nonnull] = ACTIONS(8814), - [anon_sym_mutable] = ACTIONS(8814), - [anon_sym_constinit] = ACTIONS(8814), - [anon_sym_consteval] = ACTIONS(8814), - [anon_sym_alignas] = ACTIONS(8814), - [anon_sym__Alignas] = ACTIONS(8814), - [sym_primitive_type] = ACTIONS(8814), - [anon_sym_enum] = ACTIONS(8814), - [anon_sym_class] = ACTIONS(8814), - [anon_sym_struct] = ACTIONS(8814), - [anon_sym_union] = ACTIONS(8814), - [anon_sym_typename] = ACTIONS(8814), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8814), - [anon_sym_decltype] = ACTIONS(8814), - [anon_sym_explicit] = ACTIONS(8814), - [anon_sym_private] = ACTIONS(8814), - [anon_sym_template] = ACTIONS(8814), - [anon_sym_operator] = ACTIONS(8814), - [anon_sym_friend] = ACTIONS(8814), - [anon_sym_public] = ACTIONS(8814), - [anon_sym_protected] = ACTIONS(8814), - [anon_sym_static_assert] = ACTIONS(8814), - [anon_sym_LBRACK_COLON] = ACTIONS(8816), - }, - [STATE(2890)] = { - [sym_identifier] = ACTIONS(8818), - [aux_sym_preproc_def_token1] = ACTIONS(8818), - [aux_sym_preproc_if_token1] = ACTIONS(8818), - [aux_sym_preproc_if_token2] = ACTIONS(8818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8818), - [aux_sym_preproc_else_token1] = ACTIONS(8818), - [aux_sym_preproc_elif_token1] = ACTIONS(8818), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8818), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8818), - [sym_preproc_directive] = ACTIONS(8818), - [anon_sym_LPAREN2] = ACTIONS(8820), - [anon_sym_TILDE] = ACTIONS(8820), - [anon_sym_STAR] = ACTIONS(8820), - [anon_sym_AMP_AMP] = ACTIONS(8820), - [anon_sym_AMP] = ACTIONS(8818), - [anon_sym_SEMI] = ACTIONS(8820), - [anon_sym___extension__] = ACTIONS(8818), - [anon_sym_typedef] = ACTIONS(8818), - [anon_sym_virtual] = ACTIONS(8818), - [anon_sym_extern] = ACTIONS(8818), - [anon_sym___attribute__] = ACTIONS(8818), - [anon_sym___attribute] = ACTIONS(8818), - [anon_sym_using] = ACTIONS(8818), - [anon_sym_COLON_COLON] = ACTIONS(8820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8820), - [anon_sym___declspec] = ACTIONS(8818), - [anon_sym___based] = ACTIONS(8818), - [anon_sym_signed] = ACTIONS(8818), - [anon_sym_unsigned] = ACTIONS(8818), - [anon_sym_long] = ACTIONS(8818), - [anon_sym_short] = ACTIONS(8818), - [anon_sym_LBRACK] = ACTIONS(8818), - [anon_sym_static] = ACTIONS(8818), - [anon_sym_register] = ACTIONS(8818), - [anon_sym_inline] = ACTIONS(8818), - [anon_sym___inline] = ACTIONS(8818), - [anon_sym___inline__] = ACTIONS(8818), - [anon_sym___forceinline] = ACTIONS(8818), - [anon_sym_thread_local] = ACTIONS(8818), - [anon_sym___thread] = ACTIONS(8818), - [anon_sym_const] = ACTIONS(8818), - [anon_sym_constexpr] = ACTIONS(8818), - [anon_sym_volatile] = ACTIONS(8818), - [anon_sym_restrict] = ACTIONS(8818), - [anon_sym___restrict__] = ACTIONS(8818), - [anon_sym__Atomic] = ACTIONS(8818), - [anon_sym__Noreturn] = ACTIONS(8818), - [anon_sym_noreturn] = ACTIONS(8818), - [anon_sym__Nonnull] = ACTIONS(8818), - [anon_sym_mutable] = ACTIONS(8818), - [anon_sym_constinit] = ACTIONS(8818), - [anon_sym_consteval] = ACTIONS(8818), - [anon_sym_alignas] = ACTIONS(8818), - [anon_sym__Alignas] = ACTIONS(8818), - [sym_primitive_type] = ACTIONS(8818), - [anon_sym_enum] = ACTIONS(8818), - [anon_sym_class] = ACTIONS(8818), - [anon_sym_struct] = ACTIONS(8818), - [anon_sym_union] = ACTIONS(8818), - [anon_sym_typename] = ACTIONS(8818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8818), - [anon_sym_decltype] = ACTIONS(8818), - [anon_sym_explicit] = ACTIONS(8818), - [anon_sym_private] = ACTIONS(8818), - [anon_sym_template] = ACTIONS(8818), - [anon_sym_operator] = ACTIONS(8818), - [anon_sym_friend] = ACTIONS(8818), - [anon_sym_public] = ACTIONS(8818), - [anon_sym_protected] = ACTIONS(8818), - [anon_sym_static_assert] = ACTIONS(8818), - [anon_sym_LBRACK_COLON] = ACTIONS(8820), - }, - [STATE(2891)] = { - [sym_attribute_specifier] = STATE(3087), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7429), - [anon_sym_COMMA] = ACTIONS(7429), - [anon_sym_LPAREN2] = ACTIONS(7429), - [anon_sym_DASH] = ACTIONS(7427), - [anon_sym_PLUS] = ACTIONS(7427), - [anon_sym_STAR] = ACTIONS(7427), - [anon_sym_SLASH] = ACTIONS(7427), - [anon_sym_PERCENT] = ACTIONS(7427), - [anon_sym_PIPE_PIPE] = ACTIONS(7429), - [anon_sym_AMP_AMP] = ACTIONS(7429), - [anon_sym_PIPE] = ACTIONS(7427), - [anon_sym_CARET] = ACTIONS(7427), - [anon_sym_AMP] = ACTIONS(7427), - [anon_sym_EQ_EQ] = ACTIONS(7429), - [anon_sym_BANG_EQ] = ACTIONS(7429), - [anon_sym_GT] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7429), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_LT] = ACTIONS(7427), - [anon_sym_LT_LT] = ACTIONS(7427), - [anon_sym_GT_GT] = ACTIONS(7427), - [anon_sym___extension__] = ACTIONS(7429), - [anon_sym___attribute__] = ACTIONS(8293), - [anon_sym___attribute] = ACTIONS(8295), - [anon_sym_LBRACE] = ACTIONS(7429), - [anon_sym_LBRACK] = ACTIONS(7429), - [anon_sym_RBRACK] = ACTIONS(7429), - [anon_sym_EQ] = ACTIONS(7427), - [anon_sym_const] = ACTIONS(7427), - [anon_sym_constexpr] = ACTIONS(7429), - [anon_sym_volatile] = ACTIONS(7429), - [anon_sym_restrict] = ACTIONS(7429), - [anon_sym___restrict__] = ACTIONS(7429), - [anon_sym__Atomic] = ACTIONS(7429), - [anon_sym__Noreturn] = ACTIONS(7429), - [anon_sym_noreturn] = ACTIONS(7429), - [anon_sym__Nonnull] = ACTIONS(7429), - [anon_sym_mutable] = ACTIONS(7429), - [anon_sym_constinit] = ACTIONS(7429), - [anon_sym_consteval] = ACTIONS(7429), - [anon_sym_alignas] = ACTIONS(7429), - [anon_sym__Alignas] = ACTIONS(7429), - [anon_sym_QMARK] = ACTIONS(7429), - [anon_sym_STAR_EQ] = ACTIONS(7429), - [anon_sym_SLASH_EQ] = ACTIONS(7429), - [anon_sym_PERCENT_EQ] = ACTIONS(7429), - [anon_sym_PLUS_EQ] = ACTIONS(7429), - [anon_sym_DASH_EQ] = ACTIONS(7429), - [anon_sym_LT_LT_EQ] = ACTIONS(7429), - [anon_sym_GT_GT_EQ] = ACTIONS(7429), - [anon_sym_AMP_EQ] = ACTIONS(7429), - [anon_sym_CARET_EQ] = ACTIONS(7429), - [anon_sym_PIPE_EQ] = ACTIONS(7429), - [anon_sym_and_eq] = ACTIONS(7429), - [anon_sym_or_eq] = ACTIONS(7429), - [anon_sym_xor_eq] = ACTIONS(7429), - [anon_sym_LT_EQ_GT] = ACTIONS(7429), - [anon_sym_or] = ACTIONS(7427), - [anon_sym_and] = ACTIONS(7427), - [anon_sym_bitor] = ACTIONS(7429), - [anon_sym_xor] = ACTIONS(7427), - [anon_sym_bitand] = ACTIONS(7429), - [anon_sym_not_eq] = ACTIONS(7429), - [anon_sym_DASH_DASH] = ACTIONS(7429), - [anon_sym_PLUS_PLUS] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(7427), - [anon_sym_DOT_STAR] = ACTIONS(7429), - [anon_sym_DASH_GT] = ACTIONS(7429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7429), - [anon_sym_override] = ACTIONS(7429), - [anon_sym_requires] = ACTIONS(7429), - }, - [STATE(2892)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [aux_sym_preproc_else_token1] = ACTIONS(3622), - [aux_sym_preproc_elif_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_friend] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - }, - [STATE(2893)] = { - [sym_identifier] = ACTIONS(8822), - [aux_sym_preproc_def_token1] = ACTIONS(8822), - [aux_sym_preproc_if_token1] = ACTIONS(8822), - [aux_sym_preproc_if_token2] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), - [aux_sym_preproc_else_token1] = ACTIONS(8822), - [aux_sym_preproc_elif_token1] = ACTIONS(8822), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8822), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8822), - [sym_preproc_directive] = ACTIONS(8822), - [anon_sym_LPAREN2] = ACTIONS(8824), - [anon_sym_TILDE] = ACTIONS(8824), - [anon_sym_STAR] = ACTIONS(8824), - [anon_sym_AMP_AMP] = ACTIONS(8824), - [anon_sym_AMP] = ACTIONS(8822), - [anon_sym_SEMI] = ACTIONS(8824), - [anon_sym___extension__] = ACTIONS(8822), - [anon_sym_typedef] = ACTIONS(8822), - [anon_sym_virtual] = ACTIONS(8822), - [anon_sym_extern] = ACTIONS(8822), - [anon_sym___attribute__] = ACTIONS(8822), - [anon_sym___attribute] = ACTIONS(8822), - [anon_sym_using] = ACTIONS(8822), - [anon_sym_COLON_COLON] = ACTIONS(8824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), - [anon_sym___declspec] = ACTIONS(8822), - [anon_sym___based] = ACTIONS(8822), - [anon_sym_signed] = ACTIONS(8822), - [anon_sym_unsigned] = ACTIONS(8822), - [anon_sym_long] = ACTIONS(8822), - [anon_sym_short] = ACTIONS(8822), - [anon_sym_LBRACK] = ACTIONS(8822), - [anon_sym_static] = ACTIONS(8822), - [anon_sym_register] = ACTIONS(8822), - [anon_sym_inline] = ACTIONS(8822), - [anon_sym___inline] = ACTIONS(8822), - [anon_sym___inline__] = ACTIONS(8822), - [anon_sym___forceinline] = ACTIONS(8822), - [anon_sym_thread_local] = ACTIONS(8822), - [anon_sym___thread] = ACTIONS(8822), - [anon_sym_const] = ACTIONS(8822), - [anon_sym_constexpr] = ACTIONS(8822), - [anon_sym_volatile] = ACTIONS(8822), - [anon_sym_restrict] = ACTIONS(8822), - [anon_sym___restrict__] = ACTIONS(8822), - [anon_sym__Atomic] = ACTIONS(8822), - [anon_sym__Noreturn] = ACTIONS(8822), - [anon_sym_noreturn] = ACTIONS(8822), - [anon_sym__Nonnull] = ACTIONS(8822), - [anon_sym_mutable] = ACTIONS(8822), - [anon_sym_constinit] = ACTIONS(8822), - [anon_sym_consteval] = ACTIONS(8822), - [anon_sym_alignas] = ACTIONS(8822), - [anon_sym__Alignas] = ACTIONS(8822), - [sym_primitive_type] = ACTIONS(8822), - [anon_sym_enum] = ACTIONS(8822), - [anon_sym_class] = ACTIONS(8822), - [anon_sym_struct] = ACTIONS(8822), - [anon_sym_union] = ACTIONS(8822), - [anon_sym_typename] = ACTIONS(8822), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8822), - [anon_sym_decltype] = ACTIONS(8822), - [anon_sym_explicit] = ACTIONS(8822), - [anon_sym_private] = ACTIONS(8822), - [anon_sym_template] = ACTIONS(8822), - [anon_sym_operator] = ACTIONS(8822), - [anon_sym_friend] = ACTIONS(8822), - [anon_sym_public] = ACTIONS(8822), - [anon_sym_protected] = ACTIONS(8822), - [anon_sym_static_assert] = ACTIONS(8822), - [anon_sym_LBRACK_COLON] = ACTIONS(8824), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_LBRACK_COLON] = ACTIONS(3484), }, - [STATE(2894)] = { - [sym_identifier] = ACTIONS(8826), - [aux_sym_preproc_def_token1] = ACTIONS(8826), - [aux_sym_preproc_if_token1] = ACTIONS(8826), - [aux_sym_preproc_if_token2] = ACTIONS(8826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8826), - [aux_sym_preproc_else_token1] = ACTIONS(8826), - [aux_sym_preproc_elif_token1] = ACTIONS(8826), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8826), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8826), - [sym_preproc_directive] = ACTIONS(8826), - [anon_sym_LPAREN2] = ACTIONS(8828), - [anon_sym_TILDE] = ACTIONS(8828), - [anon_sym_STAR] = ACTIONS(8828), - [anon_sym_AMP_AMP] = ACTIONS(8828), - [anon_sym_AMP] = ACTIONS(8826), - [anon_sym_SEMI] = ACTIONS(8828), - [anon_sym___extension__] = ACTIONS(8826), - [anon_sym_typedef] = ACTIONS(8826), - [anon_sym_virtual] = ACTIONS(8826), - [anon_sym_extern] = ACTIONS(8826), - [anon_sym___attribute__] = ACTIONS(8826), - [anon_sym___attribute] = ACTIONS(8826), - [anon_sym_using] = ACTIONS(8826), - [anon_sym_COLON_COLON] = ACTIONS(8828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8828), - [anon_sym___declspec] = ACTIONS(8826), - [anon_sym___based] = ACTIONS(8826), - [anon_sym_signed] = ACTIONS(8826), - [anon_sym_unsigned] = ACTIONS(8826), - [anon_sym_long] = ACTIONS(8826), - [anon_sym_short] = ACTIONS(8826), - [anon_sym_LBRACK] = ACTIONS(8826), - [anon_sym_static] = ACTIONS(8826), - [anon_sym_register] = ACTIONS(8826), - [anon_sym_inline] = ACTIONS(8826), - [anon_sym___inline] = ACTIONS(8826), - [anon_sym___inline__] = ACTIONS(8826), - [anon_sym___forceinline] = ACTIONS(8826), - [anon_sym_thread_local] = ACTIONS(8826), - [anon_sym___thread] = ACTIONS(8826), - [anon_sym_const] = ACTIONS(8826), - [anon_sym_constexpr] = ACTIONS(8826), - [anon_sym_volatile] = ACTIONS(8826), - [anon_sym_restrict] = ACTIONS(8826), - [anon_sym___restrict__] = ACTIONS(8826), - [anon_sym__Atomic] = ACTIONS(8826), - [anon_sym__Noreturn] = ACTIONS(8826), - [anon_sym_noreturn] = ACTIONS(8826), - [anon_sym__Nonnull] = ACTIONS(8826), - [anon_sym_mutable] = ACTIONS(8826), - [anon_sym_constinit] = ACTIONS(8826), - [anon_sym_consteval] = ACTIONS(8826), - [anon_sym_alignas] = ACTIONS(8826), - [anon_sym__Alignas] = ACTIONS(8826), - [sym_primitive_type] = ACTIONS(8826), - [anon_sym_enum] = ACTIONS(8826), - [anon_sym_class] = ACTIONS(8826), - [anon_sym_struct] = ACTIONS(8826), - [anon_sym_union] = ACTIONS(8826), - [anon_sym_typename] = ACTIONS(8826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8826), - [anon_sym_decltype] = ACTIONS(8826), - [anon_sym_explicit] = ACTIONS(8826), - [anon_sym_private] = ACTIONS(8826), - [anon_sym_template] = ACTIONS(8826), - [anon_sym_operator] = ACTIONS(8826), - [anon_sym_friend] = ACTIONS(8826), - [anon_sym_public] = ACTIONS(8826), - [anon_sym_protected] = ACTIONS(8826), - [anon_sym_static_assert] = ACTIONS(8826), - [anon_sym_LBRACK_COLON] = ACTIONS(8828), + [STATE(2842)] = { + [sym_identifier] = ACTIONS(8786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8788), + [anon_sym_COMMA] = ACTIONS(8788), + [anon_sym_RPAREN] = ACTIONS(8788), + [aux_sym_preproc_if_token2] = ACTIONS(8788), + [aux_sym_preproc_else_token1] = ACTIONS(8788), + [aux_sym_preproc_elif_token1] = ACTIONS(8786), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8788), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8788), + [anon_sym_LPAREN2] = ACTIONS(8788), + [anon_sym_DASH] = ACTIONS(8786), + [anon_sym_PLUS] = ACTIONS(8786), + [anon_sym_STAR] = ACTIONS(8786), + [anon_sym_SLASH] = ACTIONS(8786), + [anon_sym_PERCENT] = ACTIONS(8786), + [anon_sym_PIPE_PIPE] = ACTIONS(8788), + [anon_sym_AMP_AMP] = ACTIONS(8788), + [anon_sym_PIPE] = ACTIONS(8786), + [anon_sym_CARET] = ACTIONS(8786), + [anon_sym_AMP] = ACTIONS(8786), + [anon_sym_EQ_EQ] = ACTIONS(8788), + [anon_sym_BANG_EQ] = ACTIONS(8788), + [anon_sym_GT] = ACTIONS(8786), + [anon_sym_GT_EQ] = ACTIONS(8788), + [anon_sym_LT_EQ] = ACTIONS(8786), + [anon_sym_LT] = ACTIONS(8786), + [anon_sym_LT_LT] = ACTIONS(8786), + [anon_sym_GT_GT] = ACTIONS(8786), + [anon_sym_SEMI] = ACTIONS(8788), + [anon_sym_COLON] = ACTIONS(8786), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8788), + [anon_sym_RBRACE] = ACTIONS(8788), + [anon_sym_LBRACK] = ACTIONS(8788), + [anon_sym_EQ] = ACTIONS(8786), + [anon_sym_QMARK] = ACTIONS(8788), + [anon_sym_STAR_EQ] = ACTIONS(8788), + [anon_sym_SLASH_EQ] = ACTIONS(8788), + [anon_sym_PERCENT_EQ] = ACTIONS(8788), + [anon_sym_PLUS_EQ] = ACTIONS(8788), + [anon_sym_DASH_EQ] = ACTIONS(8788), + [anon_sym_LT_LT_EQ] = ACTIONS(8788), + [anon_sym_GT_GT_EQ] = ACTIONS(8788), + [anon_sym_AMP_EQ] = ACTIONS(8788), + [anon_sym_CARET_EQ] = ACTIONS(8788), + [anon_sym_PIPE_EQ] = ACTIONS(8788), + [anon_sym_and_eq] = ACTIONS(8786), + [anon_sym_or_eq] = ACTIONS(8786), + [anon_sym_xor_eq] = ACTIONS(8786), + [anon_sym_LT_EQ_GT] = ACTIONS(8788), + [anon_sym_or] = ACTIONS(8786), + [anon_sym_and] = ACTIONS(8786), + [anon_sym_bitor] = ACTIONS(8786), + [anon_sym_xor] = ACTIONS(8786), + [anon_sym_bitand] = ACTIONS(8786), + [anon_sym_not_eq] = ACTIONS(8786), + [anon_sym_DASH_DASH] = ACTIONS(8788), + [anon_sym_PLUS_PLUS] = ACTIONS(8788), + [anon_sym_DOT] = ACTIONS(8786), + [anon_sym_DOT_STAR] = ACTIONS(8788), + [anon_sym_DASH_GT] = ACTIONS(8788), + [anon_sym_L_DQUOTE] = ACTIONS(8788), + [anon_sym_u_DQUOTE] = ACTIONS(8788), + [anon_sym_U_DQUOTE] = ACTIONS(8788), + [anon_sym_u8_DQUOTE] = ACTIONS(8788), + [anon_sym_DQUOTE] = ACTIONS(8788), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8788), + [anon_sym_LR_DQUOTE] = ACTIONS(8788), + [anon_sym_uR_DQUOTE] = ACTIONS(8788), + [anon_sym_UR_DQUOTE] = ACTIONS(8788), + [anon_sym_u8R_DQUOTE] = ACTIONS(8788), + [anon_sym_COLON_RBRACK] = ACTIONS(8788), + [sym_literal_suffix] = ACTIONS(8786), }, - [STATE(2895)] = { - [sym_attribute_specifier] = STATE(3122), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), - [anon_sym_COMMA] = ACTIONS(7399), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(7397), - [anon_sym_PLUS] = ACTIONS(7397), - [anon_sym_STAR] = ACTIONS(7397), - [anon_sym_SLASH] = ACTIONS(7397), - [anon_sym_PERCENT] = ACTIONS(7397), - [anon_sym_PIPE_PIPE] = ACTIONS(7399), - [anon_sym_AMP_AMP] = ACTIONS(7399), - [anon_sym_PIPE] = ACTIONS(7397), - [anon_sym_CARET] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7397), - [anon_sym_EQ_EQ] = ACTIONS(7399), - [anon_sym_BANG_EQ] = ACTIONS(7399), - [anon_sym_GT] = ACTIONS(7397), - [anon_sym_GT_EQ] = ACTIONS(7397), - [anon_sym_LT_EQ] = ACTIONS(7397), - [anon_sym_LT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_GT_GT] = ACTIONS(7397), - [anon_sym___extension__] = ACTIONS(7399), - [anon_sym___attribute__] = ACTIONS(8265), - [anon_sym___attribute] = ACTIONS(8267), - [anon_sym_LBRACE] = ACTIONS(7399), - [anon_sym_LBRACK] = ACTIONS(7399), - [anon_sym_EQ] = ACTIONS(7397), - [anon_sym_const] = ACTIONS(7397), - [anon_sym_constexpr] = ACTIONS(7399), - [anon_sym_volatile] = ACTIONS(7399), - [anon_sym_restrict] = ACTIONS(7399), - [anon_sym___restrict__] = ACTIONS(7399), - [anon_sym__Atomic] = ACTIONS(7399), - [anon_sym__Noreturn] = ACTIONS(7399), - [anon_sym_noreturn] = ACTIONS(7399), - [anon_sym__Nonnull] = ACTIONS(7399), - [anon_sym_mutable] = ACTIONS(7399), - [anon_sym_constinit] = ACTIONS(7399), - [anon_sym_consteval] = ACTIONS(7399), - [anon_sym_alignas] = ACTIONS(7399), - [anon_sym__Alignas] = ACTIONS(7399), - [anon_sym_QMARK] = ACTIONS(7399), - [anon_sym_STAR_EQ] = ACTIONS(7399), - [anon_sym_SLASH_EQ] = ACTIONS(7399), - [anon_sym_PERCENT_EQ] = ACTIONS(7399), - [anon_sym_PLUS_EQ] = ACTIONS(7399), - [anon_sym_DASH_EQ] = ACTIONS(7399), - [anon_sym_LT_LT_EQ] = ACTIONS(7399), - [anon_sym_GT_GT_EQ] = ACTIONS(7397), - [anon_sym_AMP_EQ] = ACTIONS(7399), - [anon_sym_CARET_EQ] = ACTIONS(7399), - [anon_sym_PIPE_EQ] = ACTIONS(7399), - [anon_sym_and_eq] = ACTIONS(7399), - [anon_sym_or_eq] = ACTIONS(7399), - [anon_sym_xor_eq] = ACTIONS(7399), - [anon_sym_LT_EQ_GT] = ACTIONS(7399), - [anon_sym_or] = ACTIONS(7397), - [anon_sym_and] = ACTIONS(7397), - [anon_sym_bitor] = ACTIONS(7399), - [anon_sym_xor] = ACTIONS(7397), - [anon_sym_bitand] = ACTIONS(7399), - [anon_sym_not_eq] = ACTIONS(7399), - [anon_sym_DASH_DASH] = ACTIONS(7399), - [anon_sym_PLUS_PLUS] = ACTIONS(7399), - [anon_sym_DOT] = ACTIONS(7397), - [anon_sym_DOT_STAR] = ACTIONS(7399), - [anon_sym_DASH_GT] = ACTIONS(7399), + [STATE(2843)] = { + [sym_attribute_specifier] = STATE(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), + [anon_sym_COMMA] = ACTIONS(7507), + [anon_sym_LPAREN2] = ACTIONS(7507), + [anon_sym_DASH] = ACTIONS(7505), + [anon_sym_PLUS] = ACTIONS(7505), + [anon_sym_STAR] = ACTIONS(7505), + [anon_sym_SLASH] = ACTIONS(7505), + [anon_sym_PERCENT] = ACTIONS(7505), + [anon_sym_PIPE_PIPE] = ACTIONS(7507), + [anon_sym_AMP_AMP] = ACTIONS(7507), + [anon_sym_PIPE] = ACTIONS(7505), + [anon_sym_CARET] = ACTIONS(7505), + [anon_sym_AMP] = ACTIONS(7505), + [anon_sym_EQ_EQ] = ACTIONS(7507), + [anon_sym_BANG_EQ] = ACTIONS(7507), + [anon_sym_GT] = ACTIONS(7505), + [anon_sym_GT_EQ] = ACTIONS(7505), + [anon_sym_LT_EQ] = ACTIONS(7505), + [anon_sym_LT] = ACTIONS(7505), + [anon_sym_LT_LT] = ACTIONS(7505), + [anon_sym_GT_GT] = ACTIONS(7505), + [anon_sym___extension__] = ACTIONS(7507), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7507), + [anon_sym_LBRACK] = ACTIONS(7507), + [anon_sym_EQ] = ACTIONS(7505), + [anon_sym_const] = ACTIONS(7505), + [anon_sym_constexpr] = ACTIONS(7507), + [anon_sym_volatile] = ACTIONS(7507), + [anon_sym_restrict] = ACTIONS(7507), + [anon_sym___restrict__] = ACTIONS(7507), + [anon_sym__Atomic] = ACTIONS(7507), + [anon_sym__Noreturn] = ACTIONS(7507), + [anon_sym_noreturn] = ACTIONS(7507), + [anon_sym__Nonnull] = ACTIONS(7507), + [anon_sym_mutable] = ACTIONS(7507), + [anon_sym_constinit] = ACTIONS(7507), + [anon_sym_consteval] = ACTIONS(7507), + [anon_sym_alignas] = ACTIONS(7507), + [anon_sym__Alignas] = ACTIONS(7507), + [anon_sym_QMARK] = ACTIONS(7507), + [anon_sym_STAR_EQ] = ACTIONS(7507), + [anon_sym_SLASH_EQ] = ACTIONS(7507), + [anon_sym_PERCENT_EQ] = ACTIONS(7507), + [anon_sym_PLUS_EQ] = ACTIONS(7507), + [anon_sym_DASH_EQ] = ACTIONS(7507), + [anon_sym_LT_LT_EQ] = ACTIONS(7507), + [anon_sym_GT_GT_EQ] = ACTIONS(7505), + [anon_sym_AMP_EQ] = ACTIONS(7507), + [anon_sym_CARET_EQ] = ACTIONS(7507), + [anon_sym_PIPE_EQ] = ACTIONS(7507), + [anon_sym_and_eq] = ACTIONS(7507), + [anon_sym_or_eq] = ACTIONS(7507), + [anon_sym_xor_eq] = ACTIONS(7507), + [anon_sym_LT_EQ_GT] = ACTIONS(7507), + [anon_sym_or] = ACTIONS(7505), + [anon_sym_and] = ACTIONS(7505), + [anon_sym_bitor] = ACTIONS(7507), + [anon_sym_xor] = ACTIONS(7505), + [anon_sym_bitand] = ACTIONS(7507), + [anon_sym_not_eq] = ACTIONS(7507), + [anon_sym_DASH_DASH] = ACTIONS(7507), + [anon_sym_PLUS_PLUS] = ACTIONS(7507), + [anon_sym_DOT] = ACTIONS(7505), + [anon_sym_DOT_STAR] = ACTIONS(7507), + [anon_sym_DASH_GT] = ACTIONS(7507), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7399), - [anon_sym_override] = ACTIONS(7399), - [anon_sym_GT2] = ACTIONS(7399), - [anon_sym_requires] = ACTIONS(7399), + [anon_sym_final] = ACTIONS(7507), + [anon_sym_override] = ACTIONS(7507), + [anon_sym_GT2] = ACTIONS(7507), + [anon_sym_requires] = ACTIONS(7507), }, - [STATE(2896)] = { - [sym_identifier] = ACTIONS(8806), - [aux_sym_preproc_def_token1] = ACTIONS(8806), - [aux_sym_preproc_if_token1] = ACTIONS(8806), - [aux_sym_preproc_if_token2] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), - [aux_sym_preproc_else_token1] = ACTIONS(8806), - [aux_sym_preproc_elif_token1] = ACTIONS(8806), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8806), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8806), - [sym_preproc_directive] = ACTIONS(8806), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_TILDE] = ACTIONS(8808), - [anon_sym_STAR] = ACTIONS(8808), - [anon_sym_AMP_AMP] = ACTIONS(8808), - [anon_sym_AMP] = ACTIONS(8806), - [anon_sym_SEMI] = ACTIONS(8808), - [anon_sym___extension__] = ACTIONS(8806), - [anon_sym_typedef] = ACTIONS(8806), - [anon_sym_virtual] = ACTIONS(8806), - [anon_sym_extern] = ACTIONS(8806), - [anon_sym___attribute__] = ACTIONS(8806), - [anon_sym___attribute] = ACTIONS(8806), - [anon_sym_using] = ACTIONS(8806), - [anon_sym_COLON_COLON] = ACTIONS(8808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), - [anon_sym___declspec] = ACTIONS(8806), - [anon_sym___based] = ACTIONS(8806), - [anon_sym_signed] = ACTIONS(8806), - [anon_sym_unsigned] = ACTIONS(8806), - [anon_sym_long] = ACTIONS(8806), - [anon_sym_short] = ACTIONS(8806), - [anon_sym_LBRACK] = ACTIONS(8806), - [anon_sym_static] = ACTIONS(8806), - [anon_sym_register] = ACTIONS(8806), - [anon_sym_inline] = ACTIONS(8806), - [anon_sym___inline] = ACTIONS(8806), - [anon_sym___inline__] = ACTIONS(8806), - [anon_sym___forceinline] = ACTIONS(8806), - [anon_sym_thread_local] = ACTIONS(8806), - [anon_sym___thread] = ACTIONS(8806), - [anon_sym_const] = ACTIONS(8806), - [anon_sym_constexpr] = ACTIONS(8806), - [anon_sym_volatile] = ACTIONS(8806), - [anon_sym_restrict] = ACTIONS(8806), - [anon_sym___restrict__] = ACTIONS(8806), - [anon_sym__Atomic] = ACTIONS(8806), - [anon_sym__Noreturn] = ACTIONS(8806), - [anon_sym_noreturn] = ACTIONS(8806), - [anon_sym__Nonnull] = ACTIONS(8806), - [anon_sym_mutable] = ACTIONS(8806), - [anon_sym_constinit] = ACTIONS(8806), - [anon_sym_consteval] = ACTIONS(8806), - [anon_sym_alignas] = ACTIONS(8806), - [anon_sym__Alignas] = ACTIONS(8806), - [sym_primitive_type] = ACTIONS(8806), - [anon_sym_enum] = ACTIONS(8806), - [anon_sym_class] = ACTIONS(8806), - [anon_sym_struct] = ACTIONS(8806), - [anon_sym_union] = ACTIONS(8806), - [anon_sym_typename] = ACTIONS(8806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8806), - [anon_sym_decltype] = ACTIONS(8806), - [anon_sym_explicit] = ACTIONS(8806), - [anon_sym_private] = ACTIONS(8806), - [anon_sym_template] = ACTIONS(8806), - [anon_sym_operator] = ACTIONS(8806), - [anon_sym_friend] = ACTIONS(8806), - [anon_sym_public] = ACTIONS(8806), - [anon_sym_protected] = ACTIONS(8806), - [anon_sym_static_assert] = ACTIONS(8806), - [anon_sym_LBRACK_COLON] = ACTIONS(8808), + [STATE(2844)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token2] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [aux_sym_preproc_else_token1] = ACTIONS(3660), + [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_friend] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), }, - [STATE(2897)] = { - [sym_identifier] = ACTIONS(8822), - [aux_sym_preproc_def_token1] = ACTIONS(8822), - [aux_sym_preproc_if_token1] = ACTIONS(8822), + [STATE(2845)] = { + [sym_attribute_specifier] = STATE(3090), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7513), + [anon_sym_COMMA] = ACTIONS(7513), + [anon_sym_LPAREN2] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_STAR] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7511), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7513), + [anon_sym_AMP_AMP] = ACTIONS(7513), + [anon_sym_PIPE] = ACTIONS(7511), + [anon_sym_CARET] = ACTIONS(7511), + [anon_sym_AMP] = ACTIONS(7511), + [anon_sym_EQ_EQ] = ACTIONS(7513), + [anon_sym_BANG_EQ] = ACTIONS(7513), + [anon_sym_GT] = ACTIONS(7511), + [anon_sym_GT_EQ] = ACTIONS(7513), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_LT] = ACTIONS(7511), + [anon_sym_LT_LT] = ACTIONS(7511), + [anon_sym_GT_GT] = ACTIONS(7511), + [anon_sym___extension__] = ACTIONS(7513), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7513), + [anon_sym_RBRACK] = ACTIONS(7513), + [anon_sym_EQ] = ACTIONS(7511), + [anon_sym_const] = ACTIONS(7511), + [anon_sym_constexpr] = ACTIONS(7513), + [anon_sym_volatile] = ACTIONS(7513), + [anon_sym_restrict] = ACTIONS(7513), + [anon_sym___restrict__] = ACTIONS(7513), + [anon_sym__Atomic] = ACTIONS(7513), + [anon_sym__Noreturn] = ACTIONS(7513), + [anon_sym_noreturn] = ACTIONS(7513), + [anon_sym__Nonnull] = ACTIONS(7513), + [anon_sym_mutable] = ACTIONS(7513), + [anon_sym_constinit] = ACTIONS(7513), + [anon_sym_consteval] = ACTIONS(7513), + [anon_sym_alignas] = ACTIONS(7513), + [anon_sym__Alignas] = ACTIONS(7513), + [anon_sym_QMARK] = ACTIONS(7513), + [anon_sym_STAR_EQ] = ACTIONS(7513), + [anon_sym_SLASH_EQ] = ACTIONS(7513), + [anon_sym_PERCENT_EQ] = ACTIONS(7513), + [anon_sym_PLUS_EQ] = ACTIONS(7513), + [anon_sym_DASH_EQ] = ACTIONS(7513), + [anon_sym_LT_LT_EQ] = ACTIONS(7513), + [anon_sym_GT_GT_EQ] = ACTIONS(7513), + [anon_sym_AMP_EQ] = ACTIONS(7513), + [anon_sym_CARET_EQ] = ACTIONS(7513), + [anon_sym_PIPE_EQ] = ACTIONS(7513), + [anon_sym_and_eq] = ACTIONS(7513), + [anon_sym_or_eq] = ACTIONS(7513), + [anon_sym_xor_eq] = ACTIONS(7513), + [anon_sym_LT_EQ_GT] = ACTIONS(7513), + [anon_sym_or] = ACTIONS(7511), + [anon_sym_and] = ACTIONS(7511), + [anon_sym_bitor] = ACTIONS(7513), + [anon_sym_xor] = ACTIONS(7511), + [anon_sym_bitand] = ACTIONS(7513), + [anon_sym_not_eq] = ACTIONS(7513), + [anon_sym_DASH_DASH] = ACTIONS(7513), + [anon_sym_PLUS_PLUS] = ACTIONS(7513), + [anon_sym_DOT] = ACTIONS(7511), + [anon_sym_DOT_STAR] = ACTIONS(7513), + [anon_sym_DASH_GT] = ACTIONS(7513), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7513), + [anon_sym_override] = ACTIONS(7513), + [anon_sym_requires] = ACTIONS(7513), + }, + [STATE(2846)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(2868), + [sym_ms_pointer_modifier] = STATE(2811), + [sym__abstract_declarator] = STATE(6503), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3796), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2273), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3796), + [aux_sym_pointer_declarator_repeat1] = STATE(2811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(8780), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(8782), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(8784), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym_SEMI] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(6815), + [anon_sym___attribute] = ACTIONS(6819), + [sym_ms_restrict_modifier] = ACTIONS(8088), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8136), + [sym_ms_signed_ptr_modifier] = ACTIONS(8136), + [anon_sym__unaligned] = ACTIONS(8138), + [anon_sym___unaligned] = ACTIONS(8138), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6815), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + }, + [STATE(2847)] = { + [sym_attribute_specifier] = STATE(3141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7513), + [anon_sym_COMMA] = ACTIONS(7513), + [anon_sym_LPAREN2] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_STAR] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7511), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7513), + [anon_sym_AMP_AMP] = ACTIONS(7513), + [anon_sym_PIPE] = ACTIONS(7511), + [anon_sym_CARET] = ACTIONS(7511), + [anon_sym_AMP] = ACTIONS(7511), + [anon_sym_EQ_EQ] = ACTIONS(7513), + [anon_sym_BANG_EQ] = ACTIONS(7513), + [anon_sym_GT] = ACTIONS(7511), + [anon_sym_GT_EQ] = ACTIONS(7511), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_LT] = ACTIONS(7511), + [anon_sym_LT_LT] = ACTIONS(7511), + [anon_sym_GT_GT] = ACTIONS(7511), + [anon_sym___extension__] = ACTIONS(7513), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7513), + [anon_sym_EQ] = ACTIONS(7511), + [anon_sym_const] = ACTIONS(7511), + [anon_sym_constexpr] = ACTIONS(7513), + [anon_sym_volatile] = ACTIONS(7513), + [anon_sym_restrict] = ACTIONS(7513), + [anon_sym___restrict__] = ACTIONS(7513), + [anon_sym__Atomic] = ACTIONS(7513), + [anon_sym__Noreturn] = ACTIONS(7513), + [anon_sym_noreturn] = ACTIONS(7513), + [anon_sym__Nonnull] = ACTIONS(7513), + [anon_sym_mutable] = ACTIONS(7513), + [anon_sym_constinit] = ACTIONS(7513), + [anon_sym_consteval] = ACTIONS(7513), + [anon_sym_alignas] = ACTIONS(7513), + [anon_sym__Alignas] = ACTIONS(7513), + [anon_sym_QMARK] = ACTIONS(7513), + [anon_sym_STAR_EQ] = ACTIONS(7513), + [anon_sym_SLASH_EQ] = ACTIONS(7513), + [anon_sym_PERCENT_EQ] = ACTIONS(7513), + [anon_sym_PLUS_EQ] = ACTIONS(7513), + [anon_sym_DASH_EQ] = ACTIONS(7513), + [anon_sym_LT_LT_EQ] = ACTIONS(7513), + [anon_sym_GT_GT_EQ] = ACTIONS(7511), + [anon_sym_AMP_EQ] = ACTIONS(7513), + [anon_sym_CARET_EQ] = ACTIONS(7513), + [anon_sym_PIPE_EQ] = ACTIONS(7513), + [anon_sym_and_eq] = ACTIONS(7513), + [anon_sym_or_eq] = ACTIONS(7513), + [anon_sym_xor_eq] = ACTIONS(7513), + [anon_sym_LT_EQ_GT] = ACTIONS(7513), + [anon_sym_or] = ACTIONS(7511), + [anon_sym_and] = ACTIONS(7511), + [anon_sym_bitor] = ACTIONS(7513), + [anon_sym_xor] = ACTIONS(7511), + [anon_sym_bitand] = ACTIONS(7513), + [anon_sym_not_eq] = ACTIONS(7513), + [anon_sym_DASH_DASH] = ACTIONS(7513), + [anon_sym_PLUS_PLUS] = ACTIONS(7513), + [anon_sym_DOT] = ACTIONS(7511), + [anon_sym_DOT_STAR] = ACTIONS(7513), + [anon_sym_DASH_GT] = ACTIONS(7513), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7513), + [anon_sym_override] = ACTIONS(7513), + [anon_sym_GT2] = ACTIONS(7513), + [anon_sym_requires] = ACTIONS(7513), + }, + [STATE(2848)] = { + [sym_attribute_specifier] = STATE(3146), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(7517), + [anon_sym_LPAREN2] = ACTIONS(7517), + [anon_sym_DASH] = ACTIONS(7515), + [anon_sym_PLUS] = ACTIONS(7515), + [anon_sym_STAR] = ACTIONS(7515), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7517), + [anon_sym_PIPE] = ACTIONS(7515), + [anon_sym_CARET] = ACTIONS(7515), + [anon_sym_AMP] = ACTIONS(7515), + [anon_sym_EQ_EQ] = ACTIONS(7517), + [anon_sym_BANG_EQ] = ACTIONS(7517), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_GT_EQ] = ACTIONS(7515), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_LT] = ACTIONS(7515), + [anon_sym_LT_LT] = ACTIONS(7515), + [anon_sym_GT_GT] = ACTIONS(7515), + [anon_sym___extension__] = ACTIONS(7517), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7517), + [anon_sym_LBRACK] = ACTIONS(7517), + [anon_sym_EQ] = ACTIONS(7515), + [anon_sym_const] = ACTIONS(7515), + [anon_sym_constexpr] = ACTIONS(7517), + [anon_sym_volatile] = ACTIONS(7517), + [anon_sym_restrict] = ACTIONS(7517), + [anon_sym___restrict__] = ACTIONS(7517), + [anon_sym__Atomic] = ACTIONS(7517), + [anon_sym__Noreturn] = ACTIONS(7517), + [anon_sym_noreturn] = ACTIONS(7517), + [anon_sym__Nonnull] = ACTIONS(7517), + [anon_sym_mutable] = ACTIONS(7517), + [anon_sym_constinit] = ACTIONS(7517), + [anon_sym_consteval] = ACTIONS(7517), + [anon_sym_alignas] = ACTIONS(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(7517), + [anon_sym_STAR_EQ] = ACTIONS(7517), + [anon_sym_SLASH_EQ] = ACTIONS(7517), + [anon_sym_PERCENT_EQ] = ACTIONS(7517), + [anon_sym_PLUS_EQ] = ACTIONS(7517), + [anon_sym_DASH_EQ] = ACTIONS(7517), + [anon_sym_LT_LT_EQ] = ACTIONS(7517), + [anon_sym_GT_GT_EQ] = ACTIONS(7515), + [anon_sym_AMP_EQ] = ACTIONS(7517), + [anon_sym_CARET_EQ] = ACTIONS(7517), + [anon_sym_PIPE_EQ] = ACTIONS(7517), + [anon_sym_and_eq] = ACTIONS(7517), + [anon_sym_or_eq] = ACTIONS(7517), + [anon_sym_xor_eq] = ACTIONS(7517), + [anon_sym_LT_EQ_GT] = ACTIONS(7517), + [anon_sym_or] = ACTIONS(7515), + [anon_sym_and] = ACTIONS(7515), + [anon_sym_bitor] = ACTIONS(7517), + [anon_sym_xor] = ACTIONS(7515), + [anon_sym_bitand] = ACTIONS(7517), + [anon_sym_not_eq] = ACTIONS(7517), + [anon_sym_DASH_DASH] = ACTIONS(7517), + [anon_sym_PLUS_PLUS] = ACTIONS(7517), + [anon_sym_DOT] = ACTIONS(7515), + [anon_sym_DOT_STAR] = ACTIONS(7517), + [anon_sym_DASH_GT] = ACTIONS(7517), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7517), + [anon_sym_override] = ACTIONS(7517), + [anon_sym_GT2] = ACTIONS(7517), + [anon_sym_requires] = ACTIONS(7517), + }, + [STATE(2849)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token2] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [aux_sym_preproc_else_token1] = ACTIONS(3660), + [aux_sym_preproc_elif_token1] = ACTIONS(3660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_friend] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + }, + [STATE(2850)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token2] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_friend] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + }, + [STATE(2851)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token2] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [aux_sym_preproc_else_token1] = ACTIONS(3664), + [aux_sym_preproc_elif_token1] = ACTIONS(3664), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_friend] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + }, + [STATE(2852)] = { + [sym_identifier] = ACTIONS(3726), + [aux_sym_preproc_def_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token2] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3726), + [aux_sym_preproc_else_token1] = ACTIONS(3726), + [aux_sym_preproc_elif_token1] = ACTIONS(3726), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3726), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3726), + [sym_preproc_directive] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(3726), + [anon_sym_typedef] = ACTIONS(3726), + [anon_sym_virtual] = ACTIONS(3726), + [anon_sym_extern] = ACTIONS(3726), + [anon_sym___attribute__] = ACTIONS(3726), + [anon_sym___attribute] = ACTIONS(3726), + [anon_sym_using] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3728), + [anon_sym___declspec] = ACTIONS(3726), + [anon_sym___based] = ACTIONS(3726), + [anon_sym_signed] = ACTIONS(3726), + [anon_sym_unsigned] = ACTIONS(3726), + [anon_sym_long] = ACTIONS(3726), + [anon_sym_short] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_static] = ACTIONS(3726), + [anon_sym_register] = ACTIONS(3726), + [anon_sym_inline] = ACTIONS(3726), + [anon_sym___inline] = ACTIONS(3726), + [anon_sym___inline__] = ACTIONS(3726), + [anon_sym___forceinline] = ACTIONS(3726), + [anon_sym_thread_local] = ACTIONS(3726), + [anon_sym___thread] = ACTIONS(3726), + [anon_sym_const] = ACTIONS(3726), + [anon_sym_constexpr] = ACTIONS(3726), + [anon_sym_volatile] = ACTIONS(3726), + [anon_sym_restrict] = ACTIONS(3726), + [anon_sym___restrict__] = ACTIONS(3726), + [anon_sym__Atomic] = ACTIONS(3726), + [anon_sym__Noreturn] = ACTIONS(3726), + [anon_sym_noreturn] = ACTIONS(3726), + [anon_sym__Nonnull] = ACTIONS(3726), + [anon_sym_mutable] = ACTIONS(3726), + [anon_sym_constinit] = ACTIONS(3726), + [anon_sym_consteval] = ACTIONS(3726), + [anon_sym_alignas] = ACTIONS(3726), + [anon_sym__Alignas] = ACTIONS(3726), + [sym_primitive_type] = ACTIONS(3726), + [anon_sym_enum] = ACTIONS(3726), + [anon_sym_class] = ACTIONS(3726), + [anon_sym_struct] = ACTIONS(3726), + [anon_sym_union] = ACTIONS(3726), + [anon_sym_typename] = ACTIONS(3726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3726), + [anon_sym_decltype] = ACTIONS(3726), + [anon_sym_explicit] = ACTIONS(3726), + [anon_sym_private] = ACTIONS(3726), + [anon_sym_template] = ACTIONS(3726), + [anon_sym_operator] = ACTIONS(3726), + [anon_sym_friend] = ACTIONS(3726), + [anon_sym_public] = ACTIONS(3726), + [anon_sym_protected] = ACTIONS(3726), + [anon_sym_static_assert] = ACTIONS(3726), + [anon_sym_LBRACK_COLON] = ACTIONS(3728), + }, + [STATE(2853)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6651), + [anon_sym_COMMA] = ACTIONS(6651), + [anon_sym_RPAREN] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6658), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6658), + [anon_sym_GT_GT] = ACTIONS(6658), + [anon_sym_SEMI] = ACTIONS(6651), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6651), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6660), + [anon_sym_EQ] = ACTIONS(6658), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6651), + [anon_sym_or_eq] = ACTIONS(6651), + [anon_sym_xor_eq] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6651), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6651), + [anon_sym_not_eq] = ACTIONS(6651), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_DASH_GT_STAR] = ACTIONS(6651), + }, + [STATE(2854)] = { + [sym_identifier] = ACTIONS(8790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8792), + [anon_sym_COMMA] = ACTIONS(8792), + [anon_sym_RPAREN] = ACTIONS(8792), + [aux_sym_preproc_if_token2] = ACTIONS(8792), + [aux_sym_preproc_else_token1] = ACTIONS(8792), + [aux_sym_preproc_elif_token1] = ACTIONS(8790), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8792), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8792), + [anon_sym_LPAREN2] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8790), + [anon_sym_STAR] = ACTIONS(8790), + [anon_sym_SLASH] = ACTIONS(8790), + [anon_sym_PERCENT] = ACTIONS(8790), + [anon_sym_PIPE_PIPE] = ACTIONS(8792), + [anon_sym_AMP_AMP] = ACTIONS(8792), + [anon_sym_PIPE] = ACTIONS(8790), + [anon_sym_CARET] = ACTIONS(8790), + [anon_sym_AMP] = ACTIONS(8790), + [anon_sym_EQ_EQ] = ACTIONS(8792), + [anon_sym_BANG_EQ] = ACTIONS(8792), + [anon_sym_GT] = ACTIONS(8790), + [anon_sym_GT_EQ] = ACTIONS(8792), + [anon_sym_LT_EQ] = ACTIONS(8790), + [anon_sym_LT] = ACTIONS(8790), + [anon_sym_LT_LT] = ACTIONS(8790), + [anon_sym_GT_GT] = ACTIONS(8790), + [anon_sym_SEMI] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8790), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8792), + [anon_sym_RBRACE] = ACTIONS(8792), + [anon_sym_LBRACK] = ACTIONS(8792), + [anon_sym_EQ] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [anon_sym_STAR_EQ] = ACTIONS(8792), + [anon_sym_SLASH_EQ] = ACTIONS(8792), + [anon_sym_PERCENT_EQ] = ACTIONS(8792), + [anon_sym_PLUS_EQ] = ACTIONS(8792), + [anon_sym_DASH_EQ] = ACTIONS(8792), + [anon_sym_LT_LT_EQ] = ACTIONS(8792), + [anon_sym_GT_GT_EQ] = ACTIONS(8792), + [anon_sym_AMP_EQ] = ACTIONS(8792), + [anon_sym_CARET_EQ] = ACTIONS(8792), + [anon_sym_PIPE_EQ] = ACTIONS(8792), + [anon_sym_and_eq] = ACTIONS(8790), + [anon_sym_or_eq] = ACTIONS(8790), + [anon_sym_xor_eq] = ACTIONS(8790), + [anon_sym_LT_EQ_GT] = ACTIONS(8792), + [anon_sym_or] = ACTIONS(8790), + [anon_sym_and] = ACTIONS(8790), + [anon_sym_bitor] = ACTIONS(8790), + [anon_sym_xor] = ACTIONS(8790), + [anon_sym_bitand] = ACTIONS(8790), + [anon_sym_not_eq] = ACTIONS(8790), + [anon_sym_DASH_DASH] = ACTIONS(8792), + [anon_sym_PLUS_PLUS] = ACTIONS(8792), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_DOT_STAR] = ACTIONS(8792), + [anon_sym_DASH_GT] = ACTIONS(8792), + [anon_sym_L_DQUOTE] = ACTIONS(8792), + [anon_sym_u_DQUOTE] = ACTIONS(8792), + [anon_sym_U_DQUOTE] = ACTIONS(8792), + [anon_sym_u8_DQUOTE] = ACTIONS(8792), + [anon_sym_DQUOTE] = ACTIONS(8792), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8792), + [anon_sym_LR_DQUOTE] = ACTIONS(8792), + [anon_sym_uR_DQUOTE] = ACTIONS(8792), + [anon_sym_UR_DQUOTE] = ACTIONS(8792), + [anon_sym_u8R_DQUOTE] = ACTIONS(8792), + [anon_sym_COLON_RBRACK] = ACTIONS(8792), + [sym_literal_suffix] = ACTIONS(8790), + }, + [STATE(2855)] = { + [sym_attribute_specifier] = STATE(3091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(7517), + [anon_sym_LPAREN2] = ACTIONS(7517), + [anon_sym_DASH] = ACTIONS(7515), + [anon_sym_PLUS] = ACTIONS(7515), + [anon_sym_STAR] = ACTIONS(7515), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7517), + [anon_sym_PIPE] = ACTIONS(7515), + [anon_sym_CARET] = ACTIONS(7515), + [anon_sym_AMP] = ACTIONS(7515), + [anon_sym_EQ_EQ] = ACTIONS(7517), + [anon_sym_BANG_EQ] = ACTIONS(7517), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_GT_EQ] = ACTIONS(7517), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_LT] = ACTIONS(7515), + [anon_sym_LT_LT] = ACTIONS(7515), + [anon_sym_GT_GT] = ACTIONS(7515), + [anon_sym___extension__] = ACTIONS(7517), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7517), + [anon_sym_LBRACK] = ACTIONS(7517), + [anon_sym_RBRACK] = ACTIONS(7517), + [anon_sym_EQ] = ACTIONS(7515), + [anon_sym_const] = ACTIONS(7515), + [anon_sym_constexpr] = ACTIONS(7517), + [anon_sym_volatile] = ACTIONS(7517), + [anon_sym_restrict] = ACTIONS(7517), + [anon_sym___restrict__] = ACTIONS(7517), + [anon_sym__Atomic] = ACTIONS(7517), + [anon_sym__Noreturn] = ACTIONS(7517), + [anon_sym_noreturn] = ACTIONS(7517), + [anon_sym__Nonnull] = ACTIONS(7517), + [anon_sym_mutable] = ACTIONS(7517), + [anon_sym_constinit] = ACTIONS(7517), + [anon_sym_consteval] = ACTIONS(7517), + [anon_sym_alignas] = ACTIONS(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(7517), + [anon_sym_STAR_EQ] = ACTIONS(7517), + [anon_sym_SLASH_EQ] = ACTIONS(7517), + [anon_sym_PERCENT_EQ] = ACTIONS(7517), + [anon_sym_PLUS_EQ] = ACTIONS(7517), + [anon_sym_DASH_EQ] = ACTIONS(7517), + [anon_sym_LT_LT_EQ] = ACTIONS(7517), + [anon_sym_GT_GT_EQ] = ACTIONS(7517), + [anon_sym_AMP_EQ] = ACTIONS(7517), + [anon_sym_CARET_EQ] = ACTIONS(7517), + [anon_sym_PIPE_EQ] = ACTIONS(7517), + [anon_sym_and_eq] = ACTIONS(7517), + [anon_sym_or_eq] = ACTIONS(7517), + [anon_sym_xor_eq] = ACTIONS(7517), + [anon_sym_LT_EQ_GT] = ACTIONS(7517), + [anon_sym_or] = ACTIONS(7515), + [anon_sym_and] = ACTIONS(7515), + [anon_sym_bitor] = ACTIONS(7517), + [anon_sym_xor] = ACTIONS(7515), + [anon_sym_bitand] = ACTIONS(7517), + [anon_sym_not_eq] = ACTIONS(7517), + [anon_sym_DASH_DASH] = ACTIONS(7517), + [anon_sym_PLUS_PLUS] = ACTIONS(7517), + [anon_sym_DOT] = ACTIONS(7515), + [anon_sym_DOT_STAR] = ACTIONS(7517), + [anon_sym_DASH_GT] = ACTIONS(7517), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7517), + [anon_sym_override] = ACTIONS(7517), + [anon_sym_requires] = ACTIONS(7517), + }, + [STATE(2856)] = { + [sym_identifier] = ACTIONS(3842), + [aux_sym_preproc_def_token1] = ACTIONS(3842), + [aux_sym_preproc_if_token1] = ACTIONS(3842), + [aux_sym_preproc_if_token2] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3842), + [aux_sym_preproc_else_token1] = ACTIONS(3842), + [aux_sym_preproc_elif_token1] = ACTIONS(3842), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3842), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3842), + [sym_preproc_directive] = ACTIONS(3842), + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_TILDE] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym___extension__] = ACTIONS(3842), + [anon_sym_typedef] = ACTIONS(3842), + [anon_sym_virtual] = ACTIONS(3842), + [anon_sym_extern] = ACTIONS(3842), + [anon_sym___attribute__] = ACTIONS(3842), + [anon_sym___attribute] = ACTIONS(3842), + [anon_sym_using] = ACTIONS(3842), + [anon_sym_COLON_COLON] = ACTIONS(3844), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3844), + [anon_sym___declspec] = ACTIONS(3842), + [anon_sym___based] = ACTIONS(3842), + [anon_sym_signed] = ACTIONS(3842), + [anon_sym_unsigned] = ACTIONS(3842), + [anon_sym_long] = ACTIONS(3842), + [anon_sym_short] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_static] = ACTIONS(3842), + [anon_sym_register] = ACTIONS(3842), + [anon_sym_inline] = ACTIONS(3842), + [anon_sym___inline] = ACTIONS(3842), + [anon_sym___inline__] = ACTIONS(3842), + [anon_sym___forceinline] = ACTIONS(3842), + [anon_sym_thread_local] = ACTIONS(3842), + [anon_sym___thread] = ACTIONS(3842), + [anon_sym_const] = ACTIONS(3842), + [anon_sym_constexpr] = ACTIONS(3842), + [anon_sym_volatile] = ACTIONS(3842), + [anon_sym_restrict] = ACTIONS(3842), + [anon_sym___restrict__] = ACTIONS(3842), + [anon_sym__Atomic] = ACTIONS(3842), + [anon_sym__Noreturn] = ACTIONS(3842), + [anon_sym_noreturn] = ACTIONS(3842), + [anon_sym__Nonnull] = ACTIONS(3842), + [anon_sym_mutable] = ACTIONS(3842), + [anon_sym_constinit] = ACTIONS(3842), + [anon_sym_consteval] = ACTIONS(3842), + [anon_sym_alignas] = ACTIONS(3842), + [anon_sym__Alignas] = ACTIONS(3842), + [sym_primitive_type] = ACTIONS(3842), + [anon_sym_enum] = ACTIONS(3842), + [anon_sym_class] = ACTIONS(3842), + [anon_sym_struct] = ACTIONS(3842), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_typename] = ACTIONS(3842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3842), + [anon_sym_decltype] = ACTIONS(3842), + [anon_sym_explicit] = ACTIONS(3842), + [anon_sym_private] = ACTIONS(3842), + [anon_sym_template] = ACTIONS(3842), + [anon_sym_operator] = ACTIONS(3842), + [anon_sym_friend] = ACTIONS(3842), + [anon_sym_public] = ACTIONS(3842), + [anon_sym_protected] = ACTIONS(3842), + [anon_sym_static_assert] = ACTIONS(3842), + [anon_sym_LBRACK_COLON] = ACTIONS(3844), + }, + [STATE(2857)] = { + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token2] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [aux_sym_preproc_else_token1] = ACTIONS(3742), + [aux_sym_preproc_elif_token1] = ACTIONS(3742), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_private] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_friend] = ACTIONS(3742), + [anon_sym_public] = ACTIONS(3742), + [anon_sym_protected] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + }, + [STATE(2858)] = { + [sym_ms_based_modifier] = STATE(10831), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(2860), + [sym__declarator] = STATE(8815), + [sym__abstract_declarator] = STATE(9030), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(3783), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5445), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(3783), + [aux_sym_pointer_declarator_repeat1] = STATE(2860), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8794), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8798), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6819), + [anon_sym___attribute] = ACTIONS(6819), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2859)] = { + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token2] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [aux_sym_preproc_else_token1] = ACTIONS(4289), + [aux_sym_preproc_elif_token1] = ACTIONS(4289), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_friend] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), + }, + [STATE(2860)] = { + [sym_ms_based_modifier] = STATE(10831), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(6415), + [sym__declarator] = STATE(8775), + [sym__abstract_declarator] = STATE(9007), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(3784), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5445), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(3784), + [aux_sym_pointer_declarator_repeat1] = STATE(6415), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8794), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8798), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2861)] = { + [sym_identifier] = ACTIONS(3881), + [aux_sym_preproc_def_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token2] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3881), + [aux_sym_preproc_else_token1] = ACTIONS(3881), + [aux_sym_preproc_elif_token1] = ACTIONS(3881), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3881), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3881), + [sym_preproc_directive] = ACTIONS(3881), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_TILDE] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_SEMI] = ACTIONS(3883), + [anon_sym___extension__] = ACTIONS(3881), + [anon_sym_typedef] = ACTIONS(3881), + [anon_sym_virtual] = ACTIONS(3881), + [anon_sym_extern] = ACTIONS(3881), + [anon_sym___attribute__] = ACTIONS(3881), + [anon_sym___attribute] = ACTIONS(3881), + [anon_sym_using] = ACTIONS(3881), + [anon_sym_COLON_COLON] = ACTIONS(3883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3883), + [anon_sym___declspec] = ACTIONS(3881), + [anon_sym___based] = ACTIONS(3881), + [anon_sym_signed] = ACTIONS(3881), + [anon_sym_unsigned] = ACTIONS(3881), + [anon_sym_long] = ACTIONS(3881), + [anon_sym_short] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_static] = ACTIONS(3881), + [anon_sym_register] = ACTIONS(3881), + [anon_sym_inline] = ACTIONS(3881), + [anon_sym___inline] = ACTIONS(3881), + [anon_sym___inline__] = ACTIONS(3881), + [anon_sym___forceinline] = ACTIONS(3881), + [anon_sym_thread_local] = ACTIONS(3881), + [anon_sym___thread] = ACTIONS(3881), + [anon_sym_const] = ACTIONS(3881), + [anon_sym_constexpr] = ACTIONS(3881), + [anon_sym_volatile] = ACTIONS(3881), + [anon_sym_restrict] = ACTIONS(3881), + [anon_sym___restrict__] = ACTIONS(3881), + [anon_sym__Atomic] = ACTIONS(3881), + [anon_sym__Noreturn] = ACTIONS(3881), + [anon_sym_noreturn] = ACTIONS(3881), + [anon_sym__Nonnull] = ACTIONS(3881), + [anon_sym_mutable] = ACTIONS(3881), + [anon_sym_constinit] = ACTIONS(3881), + [anon_sym_consteval] = ACTIONS(3881), + [anon_sym_alignas] = ACTIONS(3881), + [anon_sym__Alignas] = ACTIONS(3881), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_enum] = ACTIONS(3881), + [anon_sym_class] = ACTIONS(3881), + [anon_sym_struct] = ACTIONS(3881), + [anon_sym_union] = ACTIONS(3881), + [anon_sym_typename] = ACTIONS(3881), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3881), + [anon_sym_decltype] = ACTIONS(3881), + [anon_sym_explicit] = ACTIONS(3881), + [anon_sym_private] = ACTIONS(3881), + [anon_sym_template] = ACTIONS(3881), + [anon_sym_operator] = ACTIONS(3881), + [anon_sym_friend] = ACTIONS(3881), + [anon_sym_public] = ACTIONS(3881), + [anon_sym_protected] = ACTIONS(3881), + [anon_sym_static_assert] = ACTIONS(3881), + [anon_sym_LBRACK_COLON] = ACTIONS(3883), + }, + [STATE(2862)] = { + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token2] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [aux_sym_preproc_else_token1] = ACTIONS(3742), + [aux_sym_preproc_elif_token1] = ACTIONS(3742), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_private] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_friend] = ACTIONS(3742), + [anon_sym_public] = ACTIONS(3742), + [anon_sym_protected] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + }, + [STATE(2863)] = { + [sym_identifier] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token2] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [aux_sym_preproc_else_token1] = ACTIONS(4285), + [aux_sym_preproc_elif_token1] = ACTIONS(4285), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4287), + [anon_sym_TILDE] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_AMP] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym___extension__] = ACTIONS(4285), + [anon_sym_typedef] = ACTIONS(4285), + [anon_sym_virtual] = ACTIONS(4285), + [anon_sym_extern] = ACTIONS(4285), + [anon_sym___attribute__] = ACTIONS(4285), + [anon_sym___attribute] = ACTIONS(4285), + [anon_sym_using] = ACTIONS(4285), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4287), + [anon_sym___declspec] = ACTIONS(4285), + [anon_sym___based] = ACTIONS(4285), + [anon_sym_signed] = ACTIONS(4285), + [anon_sym_unsigned] = ACTIONS(4285), + [anon_sym_long] = ACTIONS(4285), + [anon_sym_short] = ACTIONS(4285), + [anon_sym_LBRACK] = ACTIONS(4285), + [anon_sym_static] = ACTIONS(4285), + [anon_sym_register] = ACTIONS(4285), + [anon_sym_inline] = ACTIONS(4285), + [anon_sym___inline] = ACTIONS(4285), + [anon_sym___inline__] = ACTIONS(4285), + [anon_sym___forceinline] = ACTIONS(4285), + [anon_sym_thread_local] = ACTIONS(4285), + [anon_sym___thread] = ACTIONS(4285), + [anon_sym_const] = ACTIONS(4285), + [anon_sym_constexpr] = ACTIONS(4285), + [anon_sym_volatile] = ACTIONS(4285), + [anon_sym_restrict] = ACTIONS(4285), + [anon_sym___restrict__] = ACTIONS(4285), + [anon_sym__Atomic] = ACTIONS(4285), + [anon_sym__Noreturn] = ACTIONS(4285), + [anon_sym_noreturn] = ACTIONS(4285), + [anon_sym__Nonnull] = ACTIONS(4285), + [anon_sym_mutable] = ACTIONS(4285), + [anon_sym_constinit] = ACTIONS(4285), + [anon_sym_consteval] = ACTIONS(4285), + [anon_sym_alignas] = ACTIONS(4285), + [anon_sym__Alignas] = ACTIONS(4285), + [sym_primitive_type] = ACTIONS(4285), + [anon_sym_enum] = ACTIONS(4285), + [anon_sym_class] = ACTIONS(4285), + [anon_sym_struct] = ACTIONS(4285), + [anon_sym_union] = ACTIONS(4285), + [anon_sym_typename] = ACTIONS(4285), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4285), + [anon_sym_decltype] = ACTIONS(4285), + [anon_sym_explicit] = ACTIONS(4285), + [anon_sym_private] = ACTIONS(4285), + [anon_sym_template] = ACTIONS(4285), + [anon_sym_operator] = ACTIONS(4285), + [anon_sym_friend] = ACTIONS(4285), + [anon_sym_public] = ACTIONS(4285), + [anon_sym_protected] = ACTIONS(4285), + [anon_sym_static_assert] = ACTIONS(4285), + [anon_sym_LBRACK_COLON] = ACTIONS(4287), + }, + [STATE(2864)] = { + [sym_identifier] = ACTIONS(3858), + [aux_sym_preproc_def_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token2] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3858), + [aux_sym_preproc_else_token1] = ACTIONS(3858), + [aux_sym_preproc_elif_token1] = ACTIONS(3858), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3858), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3858), + [sym_preproc_directive] = ACTIONS(3858), + [anon_sym_LPAREN2] = ACTIONS(3860), + [anon_sym_TILDE] = ACTIONS(3860), + [anon_sym_STAR] = ACTIONS(3860), + [anon_sym_AMP_AMP] = ACTIONS(3860), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym___extension__] = ACTIONS(3858), + [anon_sym_typedef] = ACTIONS(3858), + [anon_sym_virtual] = ACTIONS(3858), + [anon_sym_extern] = ACTIONS(3858), + [anon_sym___attribute__] = ACTIONS(3858), + [anon_sym___attribute] = ACTIONS(3858), + [anon_sym_using] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3860), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), + [anon_sym___declspec] = ACTIONS(3858), + [anon_sym___based] = ACTIONS(3858), + [anon_sym_signed] = ACTIONS(3858), + [anon_sym_unsigned] = ACTIONS(3858), + [anon_sym_long] = ACTIONS(3858), + [anon_sym_short] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3858), + [anon_sym_static] = ACTIONS(3858), + [anon_sym_register] = ACTIONS(3858), + [anon_sym_inline] = ACTIONS(3858), + [anon_sym___inline] = ACTIONS(3858), + [anon_sym___inline__] = ACTIONS(3858), + [anon_sym___forceinline] = ACTIONS(3858), + [anon_sym_thread_local] = ACTIONS(3858), + [anon_sym___thread] = ACTIONS(3858), + [anon_sym_const] = ACTIONS(3858), + [anon_sym_constexpr] = ACTIONS(3858), + [anon_sym_volatile] = ACTIONS(3858), + [anon_sym_restrict] = ACTIONS(3858), + [anon_sym___restrict__] = ACTIONS(3858), + [anon_sym__Atomic] = ACTIONS(3858), + [anon_sym__Noreturn] = ACTIONS(3858), + [anon_sym_noreturn] = ACTIONS(3858), + [anon_sym__Nonnull] = ACTIONS(3858), + [anon_sym_mutable] = ACTIONS(3858), + [anon_sym_constinit] = ACTIONS(3858), + [anon_sym_consteval] = ACTIONS(3858), + [anon_sym_alignas] = ACTIONS(3858), + [anon_sym__Alignas] = ACTIONS(3858), + [sym_primitive_type] = ACTIONS(3858), + [anon_sym_enum] = ACTIONS(3858), + [anon_sym_class] = ACTIONS(3858), + [anon_sym_struct] = ACTIONS(3858), + [anon_sym_union] = ACTIONS(3858), + [anon_sym_typename] = ACTIONS(3858), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3858), + [anon_sym_decltype] = ACTIONS(3858), + [anon_sym_explicit] = ACTIONS(3858), + [anon_sym_private] = ACTIONS(3858), + [anon_sym_template] = ACTIONS(3858), + [anon_sym_operator] = ACTIONS(3858), + [anon_sym_friend] = ACTIONS(3858), + [anon_sym_public] = ACTIONS(3858), + [anon_sym_protected] = ACTIONS(3858), + [anon_sym_static_assert] = ACTIONS(3858), + [anon_sym_LBRACK_COLON] = ACTIONS(3860), + }, + [STATE(2865)] = { + [sym_identifier] = ACTIONS(3862), + [aux_sym_preproc_def_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token2] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3862), + [aux_sym_preproc_else_token1] = ACTIONS(3862), + [aux_sym_preproc_elif_token1] = ACTIONS(3862), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3862), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3862), + [sym_preproc_directive] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym___extension__] = ACTIONS(3862), + [anon_sym_typedef] = ACTIONS(3862), + [anon_sym_virtual] = ACTIONS(3862), + [anon_sym_extern] = ACTIONS(3862), + [anon_sym___attribute__] = ACTIONS(3862), + [anon_sym___attribute] = ACTIONS(3862), + [anon_sym_using] = ACTIONS(3862), + [anon_sym_COLON_COLON] = ACTIONS(3864), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), + [anon_sym___declspec] = ACTIONS(3862), + [anon_sym___based] = ACTIONS(3862), + [anon_sym_signed] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3862), + [anon_sym_long] = ACTIONS(3862), + [anon_sym_short] = ACTIONS(3862), + [anon_sym_LBRACK] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3862), + [anon_sym_register] = ACTIONS(3862), + [anon_sym_inline] = ACTIONS(3862), + [anon_sym___inline] = ACTIONS(3862), + [anon_sym___inline__] = ACTIONS(3862), + [anon_sym___forceinline] = ACTIONS(3862), + [anon_sym_thread_local] = ACTIONS(3862), + [anon_sym___thread] = ACTIONS(3862), + [anon_sym_const] = ACTIONS(3862), + [anon_sym_constexpr] = ACTIONS(3862), + [anon_sym_volatile] = ACTIONS(3862), + [anon_sym_restrict] = ACTIONS(3862), + [anon_sym___restrict__] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3862), + [anon_sym__Noreturn] = ACTIONS(3862), + [anon_sym_noreturn] = ACTIONS(3862), + [anon_sym__Nonnull] = ACTIONS(3862), + [anon_sym_mutable] = ACTIONS(3862), + [anon_sym_constinit] = ACTIONS(3862), + [anon_sym_consteval] = ACTIONS(3862), + [anon_sym_alignas] = ACTIONS(3862), + [anon_sym__Alignas] = ACTIONS(3862), + [sym_primitive_type] = ACTIONS(3862), + [anon_sym_enum] = ACTIONS(3862), + [anon_sym_class] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3862), + [anon_sym_union] = ACTIONS(3862), + [anon_sym_typename] = ACTIONS(3862), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3862), + [anon_sym_decltype] = ACTIONS(3862), + [anon_sym_explicit] = ACTIONS(3862), + [anon_sym_private] = ACTIONS(3862), + [anon_sym_template] = ACTIONS(3862), + [anon_sym_operator] = ACTIONS(3862), + [anon_sym_friend] = ACTIONS(3862), + [anon_sym_public] = ACTIONS(3862), + [anon_sym_protected] = ACTIONS(3862), + [anon_sym_static_assert] = ACTIONS(3862), + [anon_sym_LBRACK_COLON] = ACTIONS(3864), + }, + [STATE(2866)] = { + [sym_attribute_specifier] = STATE(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_DASH] = ACTIONS(7519), + [anon_sym_PLUS] = ACTIONS(7519), + [anon_sym_STAR] = ACTIONS(7519), + [anon_sym_SLASH] = ACTIONS(7519), + [anon_sym_PERCENT] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7519), + [anon_sym_CARET] = ACTIONS(7519), + [anon_sym_AMP] = ACTIONS(7519), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_GT] = ACTIONS(7519), + [anon_sym_GT_EQ] = ACTIONS(7521), + [anon_sym_LT_EQ] = ACTIONS(7519), + [anon_sym_LT] = ACTIONS(7519), + [anon_sym_LT_LT] = ACTIONS(7519), + [anon_sym_GT_GT] = ACTIONS(7519), + [anon_sym___extension__] = ACTIONS(7521), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_RBRACK] = ACTIONS(7521), + [anon_sym_EQ] = ACTIONS(7519), + [anon_sym_const] = ACTIONS(7519), + [anon_sym_constexpr] = ACTIONS(7521), + [anon_sym_volatile] = ACTIONS(7521), + [anon_sym_restrict] = ACTIONS(7521), + [anon_sym___restrict__] = ACTIONS(7521), + [anon_sym__Atomic] = ACTIONS(7521), + [anon_sym__Noreturn] = ACTIONS(7521), + [anon_sym_noreturn] = ACTIONS(7521), + [anon_sym__Nonnull] = ACTIONS(7521), + [anon_sym_mutable] = ACTIONS(7521), + [anon_sym_constinit] = ACTIONS(7521), + [anon_sym_consteval] = ACTIONS(7521), + [anon_sym_alignas] = ACTIONS(7521), + [anon_sym__Alignas] = ACTIONS(7521), + [anon_sym_QMARK] = ACTIONS(7521), + [anon_sym_STAR_EQ] = ACTIONS(7521), + [anon_sym_SLASH_EQ] = ACTIONS(7521), + [anon_sym_PERCENT_EQ] = ACTIONS(7521), + [anon_sym_PLUS_EQ] = ACTIONS(7521), + [anon_sym_DASH_EQ] = ACTIONS(7521), + [anon_sym_LT_LT_EQ] = ACTIONS(7521), + [anon_sym_GT_GT_EQ] = ACTIONS(7521), + [anon_sym_AMP_EQ] = ACTIONS(7521), + [anon_sym_CARET_EQ] = ACTIONS(7521), + [anon_sym_PIPE_EQ] = ACTIONS(7521), + [anon_sym_and_eq] = ACTIONS(7521), + [anon_sym_or_eq] = ACTIONS(7521), + [anon_sym_xor_eq] = ACTIONS(7521), + [anon_sym_LT_EQ_GT] = ACTIONS(7521), + [anon_sym_or] = ACTIONS(7519), + [anon_sym_and] = ACTIONS(7519), + [anon_sym_bitor] = ACTIONS(7521), + [anon_sym_xor] = ACTIONS(7519), + [anon_sym_bitand] = ACTIONS(7521), + [anon_sym_not_eq] = ACTIONS(7521), + [anon_sym_DASH_DASH] = ACTIONS(7521), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7519), + [anon_sym_DOT_STAR] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7521), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7521), + [anon_sym_override] = ACTIONS(7521), + [anon_sym_requires] = ACTIONS(7521), + }, + [STATE(2867)] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [aux_sym_preproc_else_token1] = ACTIONS(3668), + [aux_sym_preproc_elif_token1] = ACTIONS(3668), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_friend] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + }, + [STATE(2868)] = { + [sym_identifier] = ACTIONS(7156), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7158), + [anon_sym_COMMA] = ACTIONS(7158), + [anon_sym_RPAREN] = ACTIONS(7158), + [aux_sym_preproc_if_token2] = ACTIONS(7158), + [aux_sym_preproc_else_token1] = ACTIONS(7158), + [aux_sym_preproc_elif_token1] = ACTIONS(7156), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7158), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7158), + [anon_sym_LPAREN2] = ACTIONS(7158), + [anon_sym_DASH] = ACTIONS(7156), + [anon_sym_PLUS] = ACTIONS(7156), + [anon_sym_STAR] = ACTIONS(7158), + [anon_sym_SLASH] = ACTIONS(7156), + [anon_sym_PERCENT] = ACTIONS(7158), + [anon_sym_PIPE_PIPE] = ACTIONS(7158), + [anon_sym_AMP_AMP] = ACTIONS(7158), + [anon_sym_PIPE] = ACTIONS(7156), + [anon_sym_CARET] = ACTIONS(7158), + [anon_sym_AMP] = ACTIONS(7156), + [anon_sym_EQ_EQ] = ACTIONS(7158), + [anon_sym_BANG_EQ] = ACTIONS(7158), + [anon_sym_GT] = ACTIONS(7156), + [anon_sym_GT_EQ] = ACTIONS(7158), + [anon_sym_LT_EQ] = ACTIONS(7156), + [anon_sym_LT] = ACTIONS(7156), + [anon_sym_LT_LT] = ACTIONS(7158), + [anon_sym_GT_GT] = ACTIONS(7158), + [anon_sym_SEMI] = ACTIONS(7158), + [anon_sym___extension__] = ACTIONS(7156), + [anon_sym___attribute__] = ACTIONS(7156), + [anon_sym___attribute] = ACTIONS(7156), + [anon_sym_COLON] = ACTIONS(7156), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7158), + [sym_ms_restrict_modifier] = ACTIONS(7156), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7156), + [sym_ms_signed_ptr_modifier] = ACTIONS(7156), + [anon_sym__unaligned] = ACTIONS(7156), + [anon_sym___unaligned] = ACTIONS(7156), + [anon_sym_RBRACE] = ACTIONS(7158), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_const] = ACTIONS(7156), + [anon_sym_constexpr] = ACTIONS(7156), + [anon_sym_volatile] = ACTIONS(7156), + [anon_sym_restrict] = ACTIONS(7156), + [anon_sym___restrict__] = ACTIONS(7156), + [anon_sym__Atomic] = ACTIONS(7156), + [anon_sym__Noreturn] = ACTIONS(7156), + [anon_sym_noreturn] = ACTIONS(7156), + [anon_sym__Nonnull] = ACTIONS(7156), + [anon_sym_mutable] = ACTIONS(7156), + [anon_sym_constinit] = ACTIONS(7156), + [anon_sym_consteval] = ACTIONS(7156), + [anon_sym_alignas] = ACTIONS(7156), + [anon_sym__Alignas] = ACTIONS(7156), + [anon_sym_QMARK] = ACTIONS(7158), + [anon_sym_LT_EQ_GT] = ACTIONS(7158), + [anon_sym_or] = ACTIONS(7156), + [anon_sym_and] = ACTIONS(7156), + [anon_sym_bitor] = ACTIONS(7156), + [anon_sym_xor] = ACTIONS(7156), + [anon_sym_bitand] = ACTIONS(7156), + [anon_sym_not_eq] = ACTIONS(7156), + [anon_sym_DASH_DASH] = ACTIONS(7158), + [anon_sym_PLUS_PLUS] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7156), + [anon_sym_DOT_STAR] = ACTIONS(7158), + [anon_sym_DASH_GT] = ACTIONS(7158), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7156), + [anon_sym_override] = ACTIONS(7156), + [anon_sym_requires] = ACTIONS(7156), + [anon_sym_COLON_RBRACK] = ACTIONS(7158), + }, + [STATE(2869)] = { + [sym_attribute_specifier] = STATE(3102), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_STAR] = ACTIONS(7523), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_PERCENT] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_CARET] = ACTIONS(7523), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_LT_LT] = ACTIONS(7523), + [anon_sym_GT_GT] = ACTIONS(7523), + [anon_sym___extension__] = ACTIONS(7525), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_RBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7523), + [anon_sym_const] = ACTIONS(7523), + [anon_sym_constexpr] = ACTIONS(7525), + [anon_sym_volatile] = ACTIONS(7525), + [anon_sym_restrict] = ACTIONS(7525), + [anon_sym___restrict__] = ACTIONS(7525), + [anon_sym__Atomic] = ACTIONS(7525), + [anon_sym__Noreturn] = ACTIONS(7525), + [anon_sym_noreturn] = ACTIONS(7525), + [anon_sym__Nonnull] = ACTIONS(7525), + [anon_sym_mutable] = ACTIONS(7525), + [anon_sym_constinit] = ACTIONS(7525), + [anon_sym_consteval] = ACTIONS(7525), + [anon_sym_alignas] = ACTIONS(7525), + [anon_sym__Alignas] = ACTIONS(7525), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_and_eq] = ACTIONS(7525), + [anon_sym_or_eq] = ACTIONS(7525), + [anon_sym_xor_eq] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7523), + [anon_sym_and] = ACTIONS(7523), + [anon_sym_bitor] = ACTIONS(7525), + [anon_sym_xor] = ACTIONS(7523), + [anon_sym_bitand] = ACTIONS(7525), + [anon_sym_not_eq] = ACTIONS(7525), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7523), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7525), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7525), + [anon_sym_override] = ACTIONS(7525), + [anon_sym_requires] = ACTIONS(7525), + }, + [STATE(2870)] = { + [sym_attribute_specifier] = STATE(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7529), + [anon_sym_COMMA] = ACTIONS(7529), + [anon_sym_LPAREN2] = ACTIONS(7529), + [anon_sym_DASH] = ACTIONS(7527), + [anon_sym_PLUS] = ACTIONS(7527), + [anon_sym_STAR] = ACTIONS(7527), + [anon_sym_SLASH] = ACTIONS(7527), + [anon_sym_PERCENT] = ACTIONS(7527), + [anon_sym_PIPE_PIPE] = ACTIONS(7529), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE] = ACTIONS(7527), + [anon_sym_CARET] = ACTIONS(7527), + [anon_sym_AMP] = ACTIONS(7527), + [anon_sym_EQ_EQ] = ACTIONS(7529), + [anon_sym_BANG_EQ] = ACTIONS(7529), + [anon_sym_GT] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_LT] = ACTIONS(7527), + [anon_sym_LT_LT] = ACTIONS(7527), + [anon_sym_GT_GT] = ACTIONS(7527), + [anon_sym___extension__] = ACTIONS(7529), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7529), + [anon_sym_LBRACK] = ACTIONS(7529), + [anon_sym_RBRACK] = ACTIONS(7529), + [anon_sym_EQ] = ACTIONS(7527), + [anon_sym_const] = ACTIONS(7527), + [anon_sym_constexpr] = ACTIONS(7529), + [anon_sym_volatile] = ACTIONS(7529), + [anon_sym_restrict] = ACTIONS(7529), + [anon_sym___restrict__] = ACTIONS(7529), + [anon_sym__Atomic] = ACTIONS(7529), + [anon_sym__Noreturn] = ACTIONS(7529), + [anon_sym_noreturn] = ACTIONS(7529), + [anon_sym__Nonnull] = ACTIONS(7529), + [anon_sym_mutable] = ACTIONS(7529), + [anon_sym_constinit] = ACTIONS(7529), + [anon_sym_consteval] = ACTIONS(7529), + [anon_sym_alignas] = ACTIONS(7529), + [anon_sym__Alignas] = ACTIONS(7529), + [anon_sym_QMARK] = ACTIONS(7529), + [anon_sym_STAR_EQ] = ACTIONS(7529), + [anon_sym_SLASH_EQ] = ACTIONS(7529), + [anon_sym_PERCENT_EQ] = ACTIONS(7529), + [anon_sym_PLUS_EQ] = ACTIONS(7529), + [anon_sym_DASH_EQ] = ACTIONS(7529), + [anon_sym_LT_LT_EQ] = ACTIONS(7529), + [anon_sym_GT_GT_EQ] = ACTIONS(7529), + [anon_sym_AMP_EQ] = ACTIONS(7529), + [anon_sym_CARET_EQ] = ACTIONS(7529), + [anon_sym_PIPE_EQ] = ACTIONS(7529), + [anon_sym_and_eq] = ACTIONS(7529), + [anon_sym_or_eq] = ACTIONS(7529), + [anon_sym_xor_eq] = ACTIONS(7529), + [anon_sym_LT_EQ_GT] = ACTIONS(7529), + [anon_sym_or] = ACTIONS(7527), + [anon_sym_and] = ACTIONS(7527), + [anon_sym_bitor] = ACTIONS(7529), + [anon_sym_xor] = ACTIONS(7527), + [anon_sym_bitand] = ACTIONS(7529), + [anon_sym_not_eq] = ACTIONS(7529), + [anon_sym_DASH_DASH] = ACTIONS(7529), + [anon_sym_PLUS_PLUS] = ACTIONS(7529), + [anon_sym_DOT] = ACTIONS(7527), + [anon_sym_DOT_STAR] = ACTIONS(7529), + [anon_sym_DASH_GT] = ACTIONS(7529), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7529), + [anon_sym_override] = ACTIONS(7529), + [anon_sym_requires] = ACTIONS(7529), + }, + [STATE(2871)] = { + [sym_identifier] = ACTIONS(3596), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token2] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [aux_sym_preproc_else_token1] = ACTIONS(3596), + [aux_sym_preproc_elif_token1] = ACTIONS(3596), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3596), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym___attribute__] = ACTIONS(3596), + [anon_sym___attribute] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym___declspec] = ACTIONS(3596), + [anon_sym___based] = ACTIONS(3596), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym___inline] = ACTIONS(3596), + [anon_sym___inline__] = ACTIONS(3596), + [anon_sym___forceinline] = ACTIONS(3596), + [anon_sym_thread_local] = ACTIONS(3596), + [anon_sym___thread] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_restrict] = ACTIONS(3596), + [anon_sym___restrict__] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [anon_sym__Noreturn] = ACTIONS(3596), + [anon_sym_noreturn] = ACTIONS(3596), + [anon_sym__Nonnull] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [anon_sym_constinit] = ACTIONS(3596), + [anon_sym_consteval] = ACTIONS(3596), + [anon_sym_alignas] = ACTIONS(3596), + [anon_sym__Alignas] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_operator] = ACTIONS(3596), + [anon_sym_friend] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_static_assert] = ACTIONS(3596), + [anon_sym_LBRACK_COLON] = ACTIONS(3598), + }, + [STATE(2872)] = { + [sym_identifier] = ACTIONS(7242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7244), + [anon_sym_COMMA] = ACTIONS(7244), + [anon_sym_RPAREN] = ACTIONS(7244), + [aux_sym_preproc_if_token2] = ACTIONS(7244), + [aux_sym_preproc_else_token1] = ACTIONS(7244), + [aux_sym_preproc_elif_token1] = ACTIONS(7242), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7244), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7244), + [anon_sym_LPAREN2] = ACTIONS(7244), + [anon_sym_DASH] = ACTIONS(7242), + [anon_sym_PLUS] = ACTIONS(7242), + [anon_sym_STAR] = ACTIONS(7244), + [anon_sym_SLASH] = ACTIONS(7242), + [anon_sym_PERCENT] = ACTIONS(7244), + [anon_sym_PIPE_PIPE] = ACTIONS(7244), + [anon_sym_AMP_AMP] = ACTIONS(7244), + [anon_sym_PIPE] = ACTIONS(7242), + [anon_sym_CARET] = ACTIONS(7244), + [anon_sym_AMP] = ACTIONS(7242), + [anon_sym_EQ_EQ] = ACTIONS(7244), + [anon_sym_BANG_EQ] = ACTIONS(7244), + [anon_sym_GT] = ACTIONS(7242), + [anon_sym_GT_EQ] = ACTIONS(7244), + [anon_sym_LT_EQ] = ACTIONS(7242), + [anon_sym_LT] = ACTIONS(7242), + [anon_sym_LT_LT] = ACTIONS(7244), + [anon_sym_GT_GT] = ACTIONS(7244), + [anon_sym_SEMI] = ACTIONS(7244), + [anon_sym___extension__] = ACTIONS(7242), + [anon_sym___attribute__] = ACTIONS(7242), + [anon_sym___attribute] = ACTIONS(7242), + [anon_sym_COLON] = ACTIONS(7242), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7244), + [sym_ms_restrict_modifier] = ACTIONS(7242), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7242), + [sym_ms_signed_ptr_modifier] = ACTIONS(7242), + [anon_sym__unaligned] = ACTIONS(7242), + [anon_sym___unaligned] = ACTIONS(7242), + [anon_sym_RBRACE] = ACTIONS(7244), + [anon_sym_LBRACK] = ACTIONS(7244), + [anon_sym_const] = ACTIONS(7242), + [anon_sym_constexpr] = ACTIONS(7242), + [anon_sym_volatile] = ACTIONS(7242), + [anon_sym_restrict] = ACTIONS(7242), + [anon_sym___restrict__] = ACTIONS(7242), + [anon_sym__Atomic] = ACTIONS(7242), + [anon_sym__Noreturn] = ACTIONS(7242), + [anon_sym_noreturn] = ACTIONS(7242), + [anon_sym__Nonnull] = ACTIONS(7242), + [anon_sym_mutable] = ACTIONS(7242), + [anon_sym_constinit] = ACTIONS(7242), + [anon_sym_consteval] = ACTIONS(7242), + [anon_sym_alignas] = ACTIONS(7242), + [anon_sym__Alignas] = ACTIONS(7242), + [anon_sym_QMARK] = ACTIONS(7244), + [anon_sym_LT_EQ_GT] = ACTIONS(7244), + [anon_sym_or] = ACTIONS(7242), + [anon_sym_and] = ACTIONS(7242), + [anon_sym_bitor] = ACTIONS(7242), + [anon_sym_xor] = ACTIONS(7242), + [anon_sym_bitand] = ACTIONS(7242), + [anon_sym_not_eq] = ACTIONS(7242), + [anon_sym_DASH_DASH] = ACTIONS(7244), + [anon_sym_PLUS_PLUS] = ACTIONS(7244), + [anon_sym_DOT] = ACTIONS(7242), + [anon_sym_DOT_STAR] = ACTIONS(7244), + [anon_sym_DASH_GT] = ACTIONS(7244), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7242), + [anon_sym_override] = ACTIONS(7242), + [anon_sym_requires] = ACTIONS(7242), + [anon_sym_COLON_RBRACK] = ACTIONS(7244), + }, + [STATE(2873)] = { + [sym_identifier] = ACTIONS(8800), + [aux_sym_preproc_def_token1] = ACTIONS(8800), + [aux_sym_preproc_if_token1] = ACTIONS(8800), + [aux_sym_preproc_if_token2] = ACTIONS(8800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8800), + [aux_sym_preproc_else_token1] = ACTIONS(8800), + [aux_sym_preproc_elif_token1] = ACTIONS(8800), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8800), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8800), + [sym_preproc_directive] = ACTIONS(8800), + [anon_sym_LPAREN2] = ACTIONS(8802), + [anon_sym_TILDE] = ACTIONS(8802), + [anon_sym_STAR] = ACTIONS(8802), + [anon_sym_AMP_AMP] = ACTIONS(8802), + [anon_sym_AMP] = ACTIONS(8800), + [anon_sym_SEMI] = ACTIONS(8802), + [anon_sym___extension__] = ACTIONS(8800), + [anon_sym_typedef] = ACTIONS(8800), + [anon_sym_virtual] = ACTIONS(8800), + [anon_sym_extern] = ACTIONS(8800), + [anon_sym___attribute__] = ACTIONS(8800), + [anon_sym___attribute] = ACTIONS(8800), + [anon_sym_using] = ACTIONS(8800), + [anon_sym_COLON_COLON] = ACTIONS(8802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8802), + [anon_sym___declspec] = ACTIONS(8800), + [anon_sym___based] = ACTIONS(8800), + [anon_sym_signed] = ACTIONS(8800), + [anon_sym_unsigned] = ACTIONS(8800), + [anon_sym_long] = ACTIONS(8800), + [anon_sym_short] = ACTIONS(8800), + [anon_sym_LBRACK] = ACTIONS(8800), + [anon_sym_static] = ACTIONS(8800), + [anon_sym_register] = ACTIONS(8800), + [anon_sym_inline] = ACTIONS(8800), + [anon_sym___inline] = ACTIONS(8800), + [anon_sym___inline__] = ACTIONS(8800), + [anon_sym___forceinline] = ACTIONS(8800), + [anon_sym_thread_local] = ACTIONS(8800), + [anon_sym___thread] = ACTIONS(8800), + [anon_sym_const] = ACTIONS(8800), + [anon_sym_constexpr] = ACTIONS(8800), + [anon_sym_volatile] = ACTIONS(8800), + [anon_sym_restrict] = ACTIONS(8800), + [anon_sym___restrict__] = ACTIONS(8800), + [anon_sym__Atomic] = ACTIONS(8800), + [anon_sym__Noreturn] = ACTIONS(8800), + [anon_sym_noreturn] = ACTIONS(8800), + [anon_sym__Nonnull] = ACTIONS(8800), + [anon_sym_mutable] = ACTIONS(8800), + [anon_sym_constinit] = ACTIONS(8800), + [anon_sym_consteval] = ACTIONS(8800), + [anon_sym_alignas] = ACTIONS(8800), + [anon_sym__Alignas] = ACTIONS(8800), + [sym_primitive_type] = ACTIONS(8800), + [anon_sym_enum] = ACTIONS(8800), + [anon_sym_class] = ACTIONS(8800), + [anon_sym_struct] = ACTIONS(8800), + [anon_sym_union] = ACTIONS(8800), + [anon_sym_typename] = ACTIONS(8800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8800), + [anon_sym_decltype] = ACTIONS(8800), + [anon_sym_explicit] = ACTIONS(8800), + [anon_sym_private] = ACTIONS(8800), + [anon_sym_template] = ACTIONS(8800), + [anon_sym_operator] = ACTIONS(8800), + [anon_sym_friend] = ACTIONS(8800), + [anon_sym_public] = ACTIONS(8800), + [anon_sym_protected] = ACTIONS(8800), + [anon_sym_static_assert] = ACTIONS(8800), + [anon_sym_LBRACK_COLON] = ACTIONS(8802), + }, + [STATE(2874)] = { + [sym_identifier] = ACTIONS(8804), + [aux_sym_preproc_def_token1] = ACTIONS(8804), + [aux_sym_preproc_if_token1] = ACTIONS(8804), + [aux_sym_preproc_if_token2] = ACTIONS(8804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8804), + [aux_sym_preproc_else_token1] = ACTIONS(8804), + [aux_sym_preproc_elif_token1] = ACTIONS(8804), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8804), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8804), + [sym_preproc_directive] = ACTIONS(8804), + [anon_sym_LPAREN2] = ACTIONS(8806), + [anon_sym_TILDE] = ACTIONS(8806), + [anon_sym_STAR] = ACTIONS(8806), + [anon_sym_AMP_AMP] = ACTIONS(8806), + [anon_sym_AMP] = ACTIONS(8804), + [anon_sym_SEMI] = ACTIONS(8806), + [anon_sym___extension__] = ACTIONS(8804), + [anon_sym_typedef] = ACTIONS(8804), + [anon_sym_virtual] = ACTIONS(8804), + [anon_sym_extern] = ACTIONS(8804), + [anon_sym___attribute__] = ACTIONS(8804), + [anon_sym___attribute] = ACTIONS(8804), + [anon_sym_using] = ACTIONS(8804), + [anon_sym_COLON_COLON] = ACTIONS(8806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8806), + [anon_sym___declspec] = ACTIONS(8804), + [anon_sym___based] = ACTIONS(8804), + [anon_sym_signed] = ACTIONS(8804), + [anon_sym_unsigned] = ACTIONS(8804), + [anon_sym_long] = ACTIONS(8804), + [anon_sym_short] = ACTIONS(8804), + [anon_sym_LBRACK] = ACTIONS(8804), + [anon_sym_static] = ACTIONS(8804), + [anon_sym_register] = ACTIONS(8804), + [anon_sym_inline] = ACTIONS(8804), + [anon_sym___inline] = ACTIONS(8804), + [anon_sym___inline__] = ACTIONS(8804), + [anon_sym___forceinline] = ACTIONS(8804), + [anon_sym_thread_local] = ACTIONS(8804), + [anon_sym___thread] = ACTIONS(8804), + [anon_sym_const] = ACTIONS(8804), + [anon_sym_constexpr] = ACTIONS(8804), + [anon_sym_volatile] = ACTIONS(8804), + [anon_sym_restrict] = ACTIONS(8804), + [anon_sym___restrict__] = ACTIONS(8804), + [anon_sym__Atomic] = ACTIONS(8804), + [anon_sym__Noreturn] = ACTIONS(8804), + [anon_sym_noreturn] = ACTIONS(8804), + [anon_sym__Nonnull] = ACTIONS(8804), + [anon_sym_mutable] = ACTIONS(8804), + [anon_sym_constinit] = ACTIONS(8804), + [anon_sym_consteval] = ACTIONS(8804), + [anon_sym_alignas] = ACTIONS(8804), + [anon_sym__Alignas] = ACTIONS(8804), + [sym_primitive_type] = ACTIONS(8804), + [anon_sym_enum] = ACTIONS(8804), + [anon_sym_class] = ACTIONS(8804), + [anon_sym_struct] = ACTIONS(8804), + [anon_sym_union] = ACTIONS(8804), + [anon_sym_typename] = ACTIONS(8804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8804), + [anon_sym_decltype] = ACTIONS(8804), + [anon_sym_explicit] = ACTIONS(8804), + [anon_sym_private] = ACTIONS(8804), + [anon_sym_template] = ACTIONS(8804), + [anon_sym_operator] = ACTIONS(8804), + [anon_sym_friend] = ACTIONS(8804), + [anon_sym_public] = ACTIONS(8804), + [anon_sym_protected] = ACTIONS(8804), + [anon_sym_static_assert] = ACTIONS(8804), + [anon_sym_LBRACK_COLON] = ACTIONS(8806), + }, + [STATE(2875)] = { + [sym_identifier] = ACTIONS(8808), + [aux_sym_preproc_def_token1] = ACTIONS(8808), + [aux_sym_preproc_if_token1] = ACTIONS(8808), + [aux_sym_preproc_if_token2] = ACTIONS(8808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8808), + [aux_sym_preproc_else_token1] = ACTIONS(8808), + [aux_sym_preproc_elif_token1] = ACTIONS(8808), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8808), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8808), + [sym_preproc_directive] = ACTIONS(8808), + [anon_sym_LPAREN2] = ACTIONS(8810), + [anon_sym_TILDE] = ACTIONS(8810), + [anon_sym_STAR] = ACTIONS(8810), + [anon_sym_AMP_AMP] = ACTIONS(8810), + [anon_sym_AMP] = ACTIONS(8808), + [anon_sym_SEMI] = ACTIONS(8810), + [anon_sym___extension__] = ACTIONS(8808), + [anon_sym_typedef] = ACTIONS(8808), + [anon_sym_virtual] = ACTIONS(8808), + [anon_sym_extern] = ACTIONS(8808), + [anon_sym___attribute__] = ACTIONS(8808), + [anon_sym___attribute] = ACTIONS(8808), + [anon_sym_using] = ACTIONS(8808), + [anon_sym_COLON_COLON] = ACTIONS(8810), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8810), + [anon_sym___declspec] = ACTIONS(8808), + [anon_sym___based] = ACTIONS(8808), + [anon_sym_signed] = ACTIONS(8808), + [anon_sym_unsigned] = ACTIONS(8808), + [anon_sym_long] = ACTIONS(8808), + [anon_sym_short] = ACTIONS(8808), + [anon_sym_LBRACK] = ACTIONS(8808), + [anon_sym_static] = ACTIONS(8808), + [anon_sym_register] = ACTIONS(8808), + [anon_sym_inline] = ACTIONS(8808), + [anon_sym___inline] = ACTIONS(8808), + [anon_sym___inline__] = ACTIONS(8808), + [anon_sym___forceinline] = ACTIONS(8808), + [anon_sym_thread_local] = ACTIONS(8808), + [anon_sym___thread] = ACTIONS(8808), + [anon_sym_const] = ACTIONS(8808), + [anon_sym_constexpr] = ACTIONS(8808), + [anon_sym_volatile] = ACTIONS(8808), + [anon_sym_restrict] = ACTIONS(8808), + [anon_sym___restrict__] = ACTIONS(8808), + [anon_sym__Atomic] = ACTIONS(8808), + [anon_sym__Noreturn] = ACTIONS(8808), + [anon_sym_noreturn] = ACTIONS(8808), + [anon_sym__Nonnull] = ACTIONS(8808), + [anon_sym_mutable] = ACTIONS(8808), + [anon_sym_constinit] = ACTIONS(8808), + [anon_sym_consteval] = ACTIONS(8808), + [anon_sym_alignas] = ACTIONS(8808), + [anon_sym__Alignas] = ACTIONS(8808), + [sym_primitive_type] = ACTIONS(8808), + [anon_sym_enum] = ACTIONS(8808), + [anon_sym_class] = ACTIONS(8808), + [anon_sym_struct] = ACTIONS(8808), + [anon_sym_union] = ACTIONS(8808), + [anon_sym_typename] = ACTIONS(8808), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8808), + [anon_sym_decltype] = ACTIONS(8808), + [anon_sym_explicit] = ACTIONS(8808), + [anon_sym_private] = ACTIONS(8808), + [anon_sym_template] = ACTIONS(8808), + [anon_sym_operator] = ACTIONS(8808), + [anon_sym_friend] = ACTIONS(8808), + [anon_sym_public] = ACTIONS(8808), + [anon_sym_protected] = ACTIONS(8808), + [anon_sym_static_assert] = ACTIONS(8808), + [anon_sym_LBRACK_COLON] = ACTIONS(8810), + }, + [STATE(2876)] = { + [sym_identifier] = ACTIONS(4367), + [aux_sym_preproc_def_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token2] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4367), + [aux_sym_preproc_else_token1] = ACTIONS(4367), + [aux_sym_preproc_elif_token1] = ACTIONS(4367), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4367), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4367), + [sym_preproc_directive] = ACTIONS(4367), + [anon_sym_LPAREN2] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_AMP_AMP] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4369), + [anon_sym___extension__] = ACTIONS(4367), + [anon_sym_typedef] = ACTIONS(4367), + [anon_sym_virtual] = ACTIONS(4367), + [anon_sym_extern] = ACTIONS(4367), + [anon_sym___attribute__] = ACTIONS(4367), + [anon_sym___attribute] = ACTIONS(4367), + [anon_sym_using] = ACTIONS(4367), + [anon_sym_COLON_COLON] = ACTIONS(4369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4369), + [anon_sym___declspec] = ACTIONS(4367), + [anon_sym___based] = ACTIONS(4367), + [anon_sym_signed] = ACTIONS(4367), + [anon_sym_unsigned] = ACTIONS(4367), + [anon_sym_long] = ACTIONS(4367), + [anon_sym_short] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4367), + [anon_sym_static] = ACTIONS(4367), + [anon_sym_register] = ACTIONS(4367), + [anon_sym_inline] = ACTIONS(4367), + [anon_sym___inline] = ACTIONS(4367), + [anon_sym___inline__] = ACTIONS(4367), + [anon_sym___forceinline] = ACTIONS(4367), + [anon_sym_thread_local] = ACTIONS(4367), + [anon_sym___thread] = ACTIONS(4367), + [anon_sym_const] = ACTIONS(4367), + [anon_sym_constexpr] = ACTIONS(4367), + [anon_sym_volatile] = ACTIONS(4367), + [anon_sym_restrict] = ACTIONS(4367), + [anon_sym___restrict__] = ACTIONS(4367), + [anon_sym__Atomic] = ACTIONS(4367), + [anon_sym__Noreturn] = ACTIONS(4367), + [anon_sym_noreturn] = ACTIONS(4367), + [anon_sym__Nonnull] = ACTIONS(4367), + [anon_sym_mutable] = ACTIONS(4367), + [anon_sym_constinit] = ACTIONS(4367), + [anon_sym_consteval] = ACTIONS(4367), + [anon_sym_alignas] = ACTIONS(4367), + [anon_sym__Alignas] = ACTIONS(4367), + [sym_primitive_type] = ACTIONS(4367), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_class] = ACTIONS(4367), + [anon_sym_struct] = ACTIONS(4367), + [anon_sym_union] = ACTIONS(4367), + [anon_sym_typename] = ACTIONS(4367), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4367), + [anon_sym_decltype] = ACTIONS(4367), + [anon_sym_explicit] = ACTIONS(4367), + [anon_sym_private] = ACTIONS(4367), + [anon_sym_template] = ACTIONS(4367), + [anon_sym_operator] = ACTIONS(4367), + [anon_sym_friend] = ACTIONS(4367), + [anon_sym_public] = ACTIONS(4367), + [anon_sym_protected] = ACTIONS(4367), + [anon_sym_static_assert] = ACTIONS(4367), + [anon_sym_LBRACK_COLON] = ACTIONS(4369), + }, + [STATE(2877)] = { + [sym_identifier] = ACTIONS(8812), + [aux_sym_preproc_def_token1] = ACTIONS(8812), + [aux_sym_preproc_if_token1] = ACTIONS(8812), + [aux_sym_preproc_if_token2] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8812), + [aux_sym_preproc_else_token1] = ACTIONS(8812), + [aux_sym_preproc_elif_token1] = ACTIONS(8812), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8812), + [sym_preproc_directive] = ACTIONS(8812), + [anon_sym_LPAREN2] = ACTIONS(8814), + [anon_sym_TILDE] = ACTIONS(8814), + [anon_sym_STAR] = ACTIONS(8814), + [anon_sym_AMP_AMP] = ACTIONS(8814), + [anon_sym_AMP] = ACTIONS(8812), + [anon_sym_SEMI] = ACTIONS(8814), + [anon_sym___extension__] = ACTIONS(8812), + [anon_sym_typedef] = ACTIONS(8812), + [anon_sym_virtual] = ACTIONS(8812), + [anon_sym_extern] = ACTIONS(8812), + [anon_sym___attribute__] = ACTIONS(8812), + [anon_sym___attribute] = ACTIONS(8812), + [anon_sym_using] = ACTIONS(8812), + [anon_sym_COLON_COLON] = ACTIONS(8814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8814), + [anon_sym___declspec] = ACTIONS(8812), + [anon_sym___based] = ACTIONS(8812), + [anon_sym_signed] = ACTIONS(8812), + [anon_sym_unsigned] = ACTIONS(8812), + [anon_sym_long] = ACTIONS(8812), + [anon_sym_short] = ACTIONS(8812), + [anon_sym_LBRACK] = ACTIONS(8812), + [anon_sym_static] = ACTIONS(8812), + [anon_sym_register] = ACTIONS(8812), + [anon_sym_inline] = ACTIONS(8812), + [anon_sym___inline] = ACTIONS(8812), + [anon_sym___inline__] = ACTIONS(8812), + [anon_sym___forceinline] = ACTIONS(8812), + [anon_sym_thread_local] = ACTIONS(8812), + [anon_sym___thread] = ACTIONS(8812), + [anon_sym_const] = ACTIONS(8812), + [anon_sym_constexpr] = ACTIONS(8812), + [anon_sym_volatile] = ACTIONS(8812), + [anon_sym_restrict] = ACTIONS(8812), + [anon_sym___restrict__] = ACTIONS(8812), + [anon_sym__Atomic] = ACTIONS(8812), + [anon_sym__Noreturn] = ACTIONS(8812), + [anon_sym_noreturn] = ACTIONS(8812), + [anon_sym__Nonnull] = ACTIONS(8812), + [anon_sym_mutable] = ACTIONS(8812), + [anon_sym_constinit] = ACTIONS(8812), + [anon_sym_consteval] = ACTIONS(8812), + [anon_sym_alignas] = ACTIONS(8812), + [anon_sym__Alignas] = ACTIONS(8812), + [sym_primitive_type] = ACTIONS(8812), + [anon_sym_enum] = ACTIONS(8812), + [anon_sym_class] = ACTIONS(8812), + [anon_sym_struct] = ACTIONS(8812), + [anon_sym_union] = ACTIONS(8812), + [anon_sym_typename] = ACTIONS(8812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8812), + [anon_sym_decltype] = ACTIONS(8812), + [anon_sym_explicit] = ACTIONS(8812), + [anon_sym_private] = ACTIONS(8812), + [anon_sym_template] = ACTIONS(8812), + [anon_sym_operator] = ACTIONS(8812), + [anon_sym_friend] = ACTIONS(8812), + [anon_sym_public] = ACTIONS(8812), + [anon_sym_protected] = ACTIONS(8812), + [anon_sym_static_assert] = ACTIONS(8812), + [anon_sym_LBRACK_COLON] = ACTIONS(8814), + }, + [STATE(2878)] = { + [sym_identifier] = ACTIONS(6586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [anon_sym_RPAREN] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6588), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6588), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6588), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6588), + [anon_sym_GT_GT] = ACTIONS(6588), + [anon_sym_SEMI] = ACTIONS(6588), + [anon_sym___extension__] = ACTIONS(6586), + [anon_sym___attribute__] = ACTIONS(6586), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6588), + [anon_sym___based] = ACTIONS(6586), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_RBRACE] = ACTIONS(6588), + [anon_sym_signed] = ACTIONS(6586), + [anon_sym_unsigned] = ACTIONS(6586), + [anon_sym_long] = ACTIONS(6586), + [anon_sym_short] = ACTIONS(6586), + [anon_sym_LBRACK] = ACTIONS(6588), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6586), + [anon_sym_volatile] = ACTIONS(6586), + [anon_sym_restrict] = ACTIONS(6586), + [anon_sym___restrict__] = ACTIONS(6586), + [anon_sym__Atomic] = ACTIONS(6586), + [anon_sym__Noreturn] = ACTIONS(6586), + [anon_sym_noreturn] = ACTIONS(6586), + [anon_sym__Nonnull] = ACTIONS(6586), + [anon_sym_mutable] = ACTIONS(6586), + [anon_sym_constinit] = ACTIONS(6586), + [anon_sym_consteval] = ACTIONS(6586), + [anon_sym_alignas] = ACTIONS(6586), + [anon_sym__Alignas] = ACTIONS(6586), + [sym_primitive_type] = ACTIONS(6586), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6586), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6586), + [anon_sym_not_eq] = ACTIONS(6586), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6586), + [anon_sym_decltype] = ACTIONS(6586), + [anon_sym_final] = ACTIONS(6586), + [anon_sym_override] = ACTIONS(6586), + [anon_sym_requires] = ACTIONS(6586), + [anon_sym_COLON_RBRACK] = ACTIONS(6588), + }, + [STATE(2879)] = { + [sym_attribute_specifier] = STATE(3168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_DASH] = ACTIONS(7519), + [anon_sym_PLUS] = ACTIONS(7519), + [anon_sym_STAR] = ACTIONS(7519), + [anon_sym_SLASH] = ACTIONS(7519), + [anon_sym_PERCENT] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7519), + [anon_sym_CARET] = ACTIONS(7519), + [anon_sym_AMP] = ACTIONS(7519), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_GT] = ACTIONS(7519), + [anon_sym_GT_EQ] = ACTIONS(7519), + [anon_sym_LT_EQ] = ACTIONS(7519), + [anon_sym_LT] = ACTIONS(7519), + [anon_sym_LT_LT] = ACTIONS(7519), + [anon_sym_GT_GT] = ACTIONS(7519), + [anon_sym___extension__] = ACTIONS(7521), + [anon_sym___attribute__] = ACTIONS(8229), + [anon_sym___attribute] = ACTIONS(8231), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_EQ] = ACTIONS(7519), + [anon_sym_const] = ACTIONS(7519), + [anon_sym_constexpr] = ACTIONS(7521), + [anon_sym_volatile] = ACTIONS(7521), + [anon_sym_restrict] = ACTIONS(7521), + [anon_sym___restrict__] = ACTIONS(7521), + [anon_sym__Atomic] = ACTIONS(7521), + [anon_sym__Noreturn] = ACTIONS(7521), + [anon_sym_noreturn] = ACTIONS(7521), + [anon_sym__Nonnull] = ACTIONS(7521), + [anon_sym_mutable] = ACTIONS(7521), + [anon_sym_constinit] = ACTIONS(7521), + [anon_sym_consteval] = ACTIONS(7521), + [anon_sym_alignas] = ACTIONS(7521), + [anon_sym__Alignas] = ACTIONS(7521), + [anon_sym_QMARK] = ACTIONS(7521), + [anon_sym_STAR_EQ] = ACTIONS(7521), + [anon_sym_SLASH_EQ] = ACTIONS(7521), + [anon_sym_PERCENT_EQ] = ACTIONS(7521), + [anon_sym_PLUS_EQ] = ACTIONS(7521), + [anon_sym_DASH_EQ] = ACTIONS(7521), + [anon_sym_LT_LT_EQ] = ACTIONS(7521), + [anon_sym_GT_GT_EQ] = ACTIONS(7519), + [anon_sym_AMP_EQ] = ACTIONS(7521), + [anon_sym_CARET_EQ] = ACTIONS(7521), + [anon_sym_PIPE_EQ] = ACTIONS(7521), + [anon_sym_and_eq] = ACTIONS(7521), + [anon_sym_or_eq] = ACTIONS(7521), + [anon_sym_xor_eq] = ACTIONS(7521), + [anon_sym_LT_EQ_GT] = ACTIONS(7521), + [anon_sym_or] = ACTIONS(7519), + [anon_sym_and] = ACTIONS(7519), + [anon_sym_bitor] = ACTIONS(7521), + [anon_sym_xor] = ACTIONS(7519), + [anon_sym_bitand] = ACTIONS(7521), + [anon_sym_not_eq] = ACTIONS(7521), + [anon_sym_DASH_DASH] = ACTIONS(7521), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7519), + [anon_sym_DOT_STAR] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7521), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7521), + [anon_sym_override] = ACTIONS(7521), + [anon_sym_GT2] = ACTIONS(7521), + [anon_sym_requires] = ACTIONS(7521), + }, + [STATE(2880)] = { + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym_SEMI] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7329), + [anon_sym___based] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_RBRACE] = ACTIONS(7329), + [anon_sym_signed] = ACTIONS(7327), + [anon_sym_unsigned] = ACTIONS(7327), + [anon_sym_long] = ACTIONS(7327), + [anon_sym_short] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [sym_primitive_type] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), + [anon_sym_COLON_RBRACK] = ACTIONS(7329), + }, + [STATE(2881)] = { + [sym_attribute_specifier] = STATE(3104), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), + [anon_sym_COMMA] = ACTIONS(7533), + [anon_sym_LPAREN2] = ACTIONS(7533), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_STAR] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7531), + [anon_sym_PERCENT] = ACTIONS(7531), + [anon_sym_PIPE_PIPE] = ACTIONS(7533), + [anon_sym_AMP_AMP] = ACTIONS(7533), + [anon_sym_PIPE] = ACTIONS(7531), + [anon_sym_CARET] = ACTIONS(7531), + [anon_sym_AMP] = ACTIONS(7531), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_GT] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7533), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_LT] = ACTIONS(7531), + [anon_sym_LT_LT] = ACTIONS(7531), + [anon_sym_GT_GT] = ACTIONS(7531), + [anon_sym___extension__] = ACTIONS(7533), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7533), + [anon_sym_RBRACK] = ACTIONS(7533), + [anon_sym_EQ] = ACTIONS(7531), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7533), + [anon_sym_volatile] = ACTIONS(7533), + [anon_sym_restrict] = ACTIONS(7533), + [anon_sym___restrict__] = ACTIONS(7533), + [anon_sym__Atomic] = ACTIONS(7533), + [anon_sym__Noreturn] = ACTIONS(7533), + [anon_sym_noreturn] = ACTIONS(7533), + [anon_sym__Nonnull] = ACTIONS(7533), + [anon_sym_mutable] = ACTIONS(7533), + [anon_sym_constinit] = ACTIONS(7533), + [anon_sym_consteval] = ACTIONS(7533), + [anon_sym_alignas] = ACTIONS(7533), + [anon_sym__Alignas] = ACTIONS(7533), + [anon_sym_QMARK] = ACTIONS(7533), + [anon_sym_STAR_EQ] = ACTIONS(7533), + [anon_sym_SLASH_EQ] = ACTIONS(7533), + [anon_sym_PERCENT_EQ] = ACTIONS(7533), + [anon_sym_PLUS_EQ] = ACTIONS(7533), + [anon_sym_DASH_EQ] = ACTIONS(7533), + [anon_sym_LT_LT_EQ] = ACTIONS(7533), + [anon_sym_GT_GT_EQ] = ACTIONS(7533), + [anon_sym_AMP_EQ] = ACTIONS(7533), + [anon_sym_CARET_EQ] = ACTIONS(7533), + [anon_sym_PIPE_EQ] = ACTIONS(7533), + [anon_sym_and_eq] = ACTIONS(7533), + [anon_sym_or_eq] = ACTIONS(7533), + [anon_sym_xor_eq] = ACTIONS(7533), + [anon_sym_LT_EQ_GT] = ACTIONS(7533), + [anon_sym_or] = ACTIONS(7531), + [anon_sym_and] = ACTIONS(7531), + [anon_sym_bitor] = ACTIONS(7533), + [anon_sym_xor] = ACTIONS(7531), + [anon_sym_bitand] = ACTIONS(7533), + [anon_sym_not_eq] = ACTIONS(7533), + [anon_sym_DASH_DASH] = ACTIONS(7533), + [anon_sym_PLUS_PLUS] = ACTIONS(7533), + [anon_sym_DOT] = ACTIONS(7531), + [anon_sym_DOT_STAR] = ACTIONS(7533), + [anon_sym_DASH_GT] = ACTIONS(7533), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7533), + [anon_sym_override] = ACTIONS(7533), + [anon_sym_requires] = ACTIONS(7533), + }, + [STATE(2882)] = { + [sym_identifier] = ACTIONS(8816), + [aux_sym_preproc_def_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token2] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8816), + [aux_sym_preproc_else_token1] = ACTIONS(8816), + [aux_sym_preproc_elif_token1] = ACTIONS(8816), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8816), + [sym_preproc_directive] = ACTIONS(8816), + [anon_sym_LPAREN2] = ACTIONS(8818), + [anon_sym_TILDE] = ACTIONS(8818), + [anon_sym_STAR] = ACTIONS(8818), + [anon_sym_AMP_AMP] = ACTIONS(8818), + [anon_sym_AMP] = ACTIONS(8816), + [anon_sym_SEMI] = ACTIONS(8818), + [anon_sym___extension__] = ACTIONS(8816), + [anon_sym_typedef] = ACTIONS(8816), + [anon_sym_virtual] = ACTIONS(8816), + [anon_sym_extern] = ACTIONS(8816), + [anon_sym___attribute__] = ACTIONS(8816), + [anon_sym___attribute] = ACTIONS(8816), + [anon_sym_using] = ACTIONS(8816), + [anon_sym_COLON_COLON] = ACTIONS(8818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8818), + [anon_sym___declspec] = ACTIONS(8816), + [anon_sym___based] = ACTIONS(8816), + [anon_sym_signed] = ACTIONS(8816), + [anon_sym_unsigned] = ACTIONS(8816), + [anon_sym_long] = ACTIONS(8816), + [anon_sym_short] = ACTIONS(8816), + [anon_sym_LBRACK] = ACTIONS(8816), + [anon_sym_static] = ACTIONS(8816), + [anon_sym_register] = ACTIONS(8816), + [anon_sym_inline] = ACTIONS(8816), + [anon_sym___inline] = ACTIONS(8816), + [anon_sym___inline__] = ACTIONS(8816), + [anon_sym___forceinline] = ACTIONS(8816), + [anon_sym_thread_local] = ACTIONS(8816), + [anon_sym___thread] = ACTIONS(8816), + [anon_sym_const] = ACTIONS(8816), + [anon_sym_constexpr] = ACTIONS(8816), + [anon_sym_volatile] = ACTIONS(8816), + [anon_sym_restrict] = ACTIONS(8816), + [anon_sym___restrict__] = ACTIONS(8816), + [anon_sym__Atomic] = ACTIONS(8816), + [anon_sym__Noreturn] = ACTIONS(8816), + [anon_sym_noreturn] = ACTIONS(8816), + [anon_sym__Nonnull] = ACTIONS(8816), + [anon_sym_mutable] = ACTIONS(8816), + [anon_sym_constinit] = ACTIONS(8816), + [anon_sym_consteval] = ACTIONS(8816), + [anon_sym_alignas] = ACTIONS(8816), + [anon_sym__Alignas] = ACTIONS(8816), + [sym_primitive_type] = ACTIONS(8816), + [anon_sym_enum] = ACTIONS(8816), + [anon_sym_class] = ACTIONS(8816), + [anon_sym_struct] = ACTIONS(8816), + [anon_sym_union] = ACTIONS(8816), + [anon_sym_typename] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8816), + [anon_sym_decltype] = ACTIONS(8816), + [anon_sym_explicit] = ACTIONS(8816), + [anon_sym_private] = ACTIONS(8816), + [anon_sym_template] = ACTIONS(8816), + [anon_sym_operator] = ACTIONS(8816), + [anon_sym_friend] = ACTIONS(8816), + [anon_sym_public] = ACTIONS(8816), + [anon_sym_protected] = ACTIONS(8816), + [anon_sym_static_assert] = ACTIONS(8816), + [anon_sym_LBRACK_COLON] = ACTIONS(8818), + }, + [STATE(2883)] = { + [sym_identifier] = ACTIONS(8816), + [aux_sym_preproc_def_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token2] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8816), + [aux_sym_preproc_else_token1] = ACTIONS(8816), + [aux_sym_preproc_elif_token1] = ACTIONS(8816), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8816), + [sym_preproc_directive] = ACTIONS(8816), + [anon_sym_LPAREN2] = ACTIONS(8818), + [anon_sym_TILDE] = ACTIONS(8818), + [anon_sym_STAR] = ACTIONS(8818), + [anon_sym_AMP_AMP] = ACTIONS(8818), + [anon_sym_AMP] = ACTIONS(8816), + [anon_sym_SEMI] = ACTIONS(8818), + [anon_sym___extension__] = ACTIONS(8816), + [anon_sym_typedef] = ACTIONS(8816), + [anon_sym_virtual] = ACTIONS(8816), + [anon_sym_extern] = ACTIONS(8816), + [anon_sym___attribute__] = ACTIONS(8816), + [anon_sym___attribute] = ACTIONS(8816), + [anon_sym_using] = ACTIONS(8816), + [anon_sym_COLON_COLON] = ACTIONS(8818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8818), + [anon_sym___declspec] = ACTIONS(8816), + [anon_sym___based] = ACTIONS(8816), + [anon_sym_signed] = ACTIONS(8816), + [anon_sym_unsigned] = ACTIONS(8816), + [anon_sym_long] = ACTIONS(8816), + [anon_sym_short] = ACTIONS(8816), + [anon_sym_LBRACK] = ACTIONS(8816), + [anon_sym_static] = ACTIONS(8816), + [anon_sym_register] = ACTIONS(8816), + [anon_sym_inline] = ACTIONS(8816), + [anon_sym___inline] = ACTIONS(8816), + [anon_sym___inline__] = ACTIONS(8816), + [anon_sym___forceinline] = ACTIONS(8816), + [anon_sym_thread_local] = ACTIONS(8816), + [anon_sym___thread] = ACTIONS(8816), + [anon_sym_const] = ACTIONS(8816), + [anon_sym_constexpr] = ACTIONS(8816), + [anon_sym_volatile] = ACTIONS(8816), + [anon_sym_restrict] = ACTIONS(8816), + [anon_sym___restrict__] = ACTIONS(8816), + [anon_sym__Atomic] = ACTIONS(8816), + [anon_sym__Noreturn] = ACTIONS(8816), + [anon_sym_noreturn] = ACTIONS(8816), + [anon_sym__Nonnull] = ACTIONS(8816), + [anon_sym_mutable] = ACTIONS(8816), + [anon_sym_constinit] = ACTIONS(8816), + [anon_sym_consteval] = ACTIONS(8816), + [anon_sym_alignas] = ACTIONS(8816), + [anon_sym__Alignas] = ACTIONS(8816), + [sym_primitive_type] = ACTIONS(8816), + [anon_sym_enum] = ACTIONS(8816), + [anon_sym_class] = ACTIONS(8816), + [anon_sym_struct] = ACTIONS(8816), + [anon_sym_union] = ACTIONS(8816), + [anon_sym_typename] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8816), + [anon_sym_decltype] = ACTIONS(8816), + [anon_sym_explicit] = ACTIONS(8816), + [anon_sym_private] = ACTIONS(8816), + [anon_sym_template] = ACTIONS(8816), + [anon_sym_operator] = ACTIONS(8816), + [anon_sym_friend] = ACTIONS(8816), + [anon_sym_public] = ACTIONS(8816), + [anon_sym_protected] = ACTIONS(8816), + [anon_sym_static_assert] = ACTIONS(8816), + [anon_sym_LBRACK_COLON] = ACTIONS(8818), + }, + [STATE(2884)] = { + [sym_identifier] = ACTIONS(7331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7333), + [anon_sym_COMMA] = ACTIONS(7333), + [anon_sym_RPAREN] = ACTIONS(7333), + [anon_sym_LPAREN2] = ACTIONS(7333), + [anon_sym_DASH] = ACTIONS(7331), + [anon_sym_PLUS] = ACTIONS(7331), + [anon_sym_STAR] = ACTIONS(7333), + [anon_sym_SLASH] = ACTIONS(7331), + [anon_sym_PERCENT] = ACTIONS(7333), + [anon_sym_PIPE_PIPE] = ACTIONS(7333), + [anon_sym_AMP_AMP] = ACTIONS(7333), + [anon_sym_PIPE] = ACTIONS(7331), + [anon_sym_CARET] = ACTIONS(7333), + [anon_sym_AMP] = ACTIONS(7331), + [anon_sym_EQ_EQ] = ACTIONS(7333), + [anon_sym_BANG_EQ] = ACTIONS(7333), + [anon_sym_GT] = ACTIONS(7331), + [anon_sym_GT_EQ] = ACTIONS(7333), + [anon_sym_LT_EQ] = ACTIONS(7331), + [anon_sym_LT] = ACTIONS(7331), + [anon_sym_LT_LT] = ACTIONS(7333), + [anon_sym_GT_GT] = ACTIONS(7333), + [anon_sym_SEMI] = ACTIONS(7333), + [anon_sym___extension__] = ACTIONS(7331), + [anon_sym___attribute__] = ACTIONS(7331), + [anon_sym___attribute] = ACTIONS(7331), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_COLON_COLON] = ACTIONS(7333), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7333), + [anon_sym___based] = ACTIONS(7331), + [anon_sym_LBRACE] = ACTIONS(7333), + [anon_sym_RBRACE] = ACTIONS(7333), + [anon_sym_signed] = ACTIONS(7331), + [anon_sym_unsigned] = ACTIONS(7331), + [anon_sym_long] = ACTIONS(7331), + [anon_sym_short] = ACTIONS(7331), + [anon_sym_LBRACK] = ACTIONS(7333), + [anon_sym_const] = ACTIONS(7331), + [anon_sym_constexpr] = ACTIONS(7331), + [anon_sym_volatile] = ACTIONS(7331), + [anon_sym_restrict] = ACTIONS(7331), + [anon_sym___restrict__] = ACTIONS(7331), + [anon_sym__Atomic] = ACTIONS(7331), + [anon_sym__Noreturn] = ACTIONS(7331), + [anon_sym_noreturn] = ACTIONS(7331), + [anon_sym__Nonnull] = ACTIONS(7331), + [anon_sym_mutable] = ACTIONS(7331), + [anon_sym_constinit] = ACTIONS(7331), + [anon_sym_consteval] = ACTIONS(7331), + [anon_sym_alignas] = ACTIONS(7331), + [anon_sym__Alignas] = ACTIONS(7331), + [sym_primitive_type] = ACTIONS(7331), + [anon_sym_QMARK] = ACTIONS(7333), + [anon_sym_LT_EQ_GT] = ACTIONS(7333), + [anon_sym_or] = ACTIONS(7331), + [anon_sym_and] = ACTIONS(7331), + [anon_sym_bitor] = ACTIONS(7331), + [anon_sym_xor] = ACTIONS(7331), + [anon_sym_bitand] = ACTIONS(7331), + [anon_sym_not_eq] = ACTIONS(7331), + [anon_sym_DASH_DASH] = ACTIONS(7333), + [anon_sym_PLUS_PLUS] = ACTIONS(7333), + [anon_sym_DOT] = ACTIONS(7331), + [anon_sym_DOT_STAR] = ACTIONS(7333), + [anon_sym_DASH_GT] = ACTIONS(7333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7331), + [anon_sym_decltype] = ACTIONS(7331), + [anon_sym_final] = ACTIONS(7331), + [anon_sym_override] = ACTIONS(7331), + [anon_sym_requires] = ACTIONS(7331), + [anon_sym_COLON_RBRACK] = ACTIONS(7333), + }, + [STATE(2885)] = { + [sym_identifier] = ACTIONS(8816), + [aux_sym_preproc_def_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token2] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8816), + [aux_sym_preproc_else_token1] = ACTIONS(8816), + [aux_sym_preproc_elif_token1] = ACTIONS(8816), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8816), + [sym_preproc_directive] = ACTIONS(8816), + [anon_sym_LPAREN2] = ACTIONS(8818), + [anon_sym_TILDE] = ACTIONS(8818), + [anon_sym_STAR] = ACTIONS(8818), + [anon_sym_AMP_AMP] = ACTIONS(8818), + [anon_sym_AMP] = ACTIONS(8816), + [anon_sym_SEMI] = ACTIONS(8818), + [anon_sym___extension__] = ACTIONS(8816), + [anon_sym_typedef] = ACTIONS(8816), + [anon_sym_virtual] = ACTIONS(8816), + [anon_sym_extern] = ACTIONS(8816), + [anon_sym___attribute__] = ACTIONS(8816), + [anon_sym___attribute] = ACTIONS(8816), + [anon_sym_using] = ACTIONS(8816), + [anon_sym_COLON_COLON] = ACTIONS(8818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8818), + [anon_sym___declspec] = ACTIONS(8816), + [anon_sym___based] = ACTIONS(8816), + [anon_sym_signed] = ACTIONS(8816), + [anon_sym_unsigned] = ACTIONS(8816), + [anon_sym_long] = ACTIONS(8816), + [anon_sym_short] = ACTIONS(8816), + [anon_sym_LBRACK] = ACTIONS(8816), + [anon_sym_static] = ACTIONS(8816), + [anon_sym_register] = ACTIONS(8816), + [anon_sym_inline] = ACTIONS(8816), + [anon_sym___inline] = ACTIONS(8816), + [anon_sym___inline__] = ACTIONS(8816), + [anon_sym___forceinline] = ACTIONS(8816), + [anon_sym_thread_local] = ACTIONS(8816), + [anon_sym___thread] = ACTIONS(8816), + [anon_sym_const] = ACTIONS(8816), + [anon_sym_constexpr] = ACTIONS(8816), + [anon_sym_volatile] = ACTIONS(8816), + [anon_sym_restrict] = ACTIONS(8816), + [anon_sym___restrict__] = ACTIONS(8816), + [anon_sym__Atomic] = ACTIONS(8816), + [anon_sym__Noreturn] = ACTIONS(8816), + [anon_sym_noreturn] = ACTIONS(8816), + [anon_sym__Nonnull] = ACTIONS(8816), + [anon_sym_mutable] = ACTIONS(8816), + [anon_sym_constinit] = ACTIONS(8816), + [anon_sym_consteval] = ACTIONS(8816), + [anon_sym_alignas] = ACTIONS(8816), + [anon_sym__Alignas] = ACTIONS(8816), + [sym_primitive_type] = ACTIONS(8816), + [anon_sym_enum] = ACTIONS(8816), + [anon_sym_class] = ACTIONS(8816), + [anon_sym_struct] = ACTIONS(8816), + [anon_sym_union] = ACTIONS(8816), + [anon_sym_typename] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8816), + [anon_sym_decltype] = ACTIONS(8816), + [anon_sym_explicit] = ACTIONS(8816), + [anon_sym_private] = ACTIONS(8816), + [anon_sym_template] = ACTIONS(8816), + [anon_sym_operator] = ACTIONS(8816), + [anon_sym_friend] = ACTIONS(8816), + [anon_sym_public] = ACTIONS(8816), + [anon_sym_protected] = ACTIONS(8816), + [anon_sym_static_assert] = ACTIONS(8816), + [anon_sym_LBRACK_COLON] = ACTIONS(8818), + }, + [STATE(2886)] = { + [sym_identifier] = ACTIONS(3869), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token2] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3869), + [aux_sym_preproc_else_token1] = ACTIONS(3869), + [aux_sym_preproc_elif_token1] = ACTIONS(3869), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3869), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3869), + [sym_preproc_directive] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(3871), + [anon_sym_TILDE] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym___extension__] = ACTIONS(3869), + [anon_sym_typedef] = ACTIONS(3869), + [anon_sym_virtual] = ACTIONS(3869), + [anon_sym_extern] = ACTIONS(3869), + [anon_sym___attribute__] = ACTIONS(3869), + [anon_sym___attribute] = ACTIONS(3869), + [anon_sym_using] = ACTIONS(3869), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3871), + [anon_sym___declspec] = ACTIONS(3869), + [anon_sym___based] = ACTIONS(3869), + [anon_sym_signed] = ACTIONS(3869), + [anon_sym_unsigned] = ACTIONS(3869), + [anon_sym_long] = ACTIONS(3869), + [anon_sym_short] = ACTIONS(3869), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_static] = ACTIONS(3869), + [anon_sym_register] = ACTIONS(3869), + [anon_sym_inline] = ACTIONS(3869), + [anon_sym___inline] = ACTIONS(3869), + [anon_sym___inline__] = ACTIONS(3869), + [anon_sym___forceinline] = ACTIONS(3869), + [anon_sym_thread_local] = ACTIONS(3869), + [anon_sym___thread] = ACTIONS(3869), + [anon_sym_const] = ACTIONS(3869), + [anon_sym_constexpr] = ACTIONS(3869), + [anon_sym_volatile] = ACTIONS(3869), + [anon_sym_restrict] = ACTIONS(3869), + [anon_sym___restrict__] = ACTIONS(3869), + [anon_sym__Atomic] = ACTIONS(3869), + [anon_sym__Noreturn] = ACTIONS(3869), + [anon_sym_noreturn] = ACTIONS(3869), + [anon_sym__Nonnull] = ACTIONS(3869), + [anon_sym_mutable] = ACTIONS(3869), + [anon_sym_constinit] = ACTIONS(3869), + [anon_sym_consteval] = ACTIONS(3869), + [anon_sym_alignas] = ACTIONS(3869), + [anon_sym__Alignas] = ACTIONS(3869), + [sym_primitive_type] = ACTIONS(3869), + [anon_sym_enum] = ACTIONS(3869), + [anon_sym_class] = ACTIONS(3869), + [anon_sym_struct] = ACTIONS(3869), + [anon_sym_union] = ACTIONS(3869), + [anon_sym_typename] = ACTIONS(3869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3869), + [anon_sym_decltype] = ACTIONS(3869), + [anon_sym_explicit] = ACTIONS(3869), + [anon_sym_private] = ACTIONS(3869), + [anon_sym_template] = ACTIONS(3869), + [anon_sym_operator] = ACTIONS(3869), + [anon_sym_friend] = ACTIONS(3869), + [anon_sym_public] = ACTIONS(3869), + [anon_sym_protected] = ACTIONS(3869), + [anon_sym_static_assert] = ACTIONS(3869), + [anon_sym_LBRACK_COLON] = ACTIONS(3871), + }, + [STATE(2887)] = { + [sym_identifier] = ACTIONS(3873), + [aux_sym_preproc_def_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token2] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [aux_sym_preproc_else_token1] = ACTIONS(3873), + [aux_sym_preproc_elif_token1] = ACTIONS(3873), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3875), + [anon_sym_TILDE] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym___extension__] = ACTIONS(3873), + [anon_sym_typedef] = ACTIONS(3873), + [anon_sym_virtual] = ACTIONS(3873), + [anon_sym_extern] = ACTIONS(3873), + [anon_sym___attribute__] = ACTIONS(3873), + [anon_sym___attribute] = ACTIONS(3873), + [anon_sym_using] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3875), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), + [anon_sym___declspec] = ACTIONS(3873), + [anon_sym___based] = ACTIONS(3873), + [anon_sym_signed] = ACTIONS(3873), + [anon_sym_unsigned] = ACTIONS(3873), + [anon_sym_long] = ACTIONS(3873), + [anon_sym_short] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3873), + [anon_sym_static] = ACTIONS(3873), + [anon_sym_register] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym___inline] = ACTIONS(3873), + [anon_sym___inline__] = ACTIONS(3873), + [anon_sym___forceinline] = ACTIONS(3873), + [anon_sym_thread_local] = ACTIONS(3873), + [anon_sym___thread] = ACTIONS(3873), + [anon_sym_const] = ACTIONS(3873), + [anon_sym_constexpr] = ACTIONS(3873), + [anon_sym_volatile] = ACTIONS(3873), + [anon_sym_restrict] = ACTIONS(3873), + [anon_sym___restrict__] = ACTIONS(3873), + [anon_sym__Atomic] = ACTIONS(3873), + [anon_sym__Noreturn] = ACTIONS(3873), + [anon_sym_noreturn] = ACTIONS(3873), + [anon_sym__Nonnull] = ACTIONS(3873), + [anon_sym_mutable] = ACTIONS(3873), + [anon_sym_constinit] = ACTIONS(3873), + [anon_sym_consteval] = ACTIONS(3873), + [anon_sym_alignas] = ACTIONS(3873), + [anon_sym__Alignas] = ACTIONS(3873), + [sym_primitive_type] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3873), + [anon_sym_union] = ACTIONS(3873), + [anon_sym_typename] = ACTIONS(3873), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3873), + [anon_sym_decltype] = ACTIONS(3873), + [anon_sym_explicit] = ACTIONS(3873), + [anon_sym_private] = ACTIONS(3873), + [anon_sym_template] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_friend] = ACTIONS(3873), + [anon_sym_public] = ACTIONS(3873), + [anon_sym_protected] = ACTIONS(3873), + [anon_sym_static_assert] = ACTIONS(3873), + [anon_sym_LBRACK_COLON] = ACTIONS(3875), + }, + [STATE(2888)] = { + [sym_attribute_specifier] = STATE(3113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7541), + [anon_sym_COMMA] = ACTIONS(7541), + [anon_sym_LPAREN2] = ACTIONS(7541), + [anon_sym_DASH] = ACTIONS(7539), + [anon_sym_PLUS] = ACTIONS(7539), + [anon_sym_STAR] = ACTIONS(7539), + [anon_sym_SLASH] = ACTIONS(7539), + [anon_sym_PERCENT] = ACTIONS(7539), + [anon_sym_PIPE_PIPE] = ACTIONS(7541), + [anon_sym_AMP_AMP] = ACTIONS(7541), + [anon_sym_PIPE] = ACTIONS(7539), + [anon_sym_CARET] = ACTIONS(7539), + [anon_sym_AMP] = ACTIONS(7539), + [anon_sym_EQ_EQ] = ACTIONS(7541), + [anon_sym_BANG_EQ] = ACTIONS(7541), + [anon_sym_GT] = ACTIONS(7539), + [anon_sym_GT_EQ] = ACTIONS(7541), + [anon_sym_LT_EQ] = ACTIONS(7539), + [anon_sym_LT] = ACTIONS(7539), + [anon_sym_LT_LT] = ACTIONS(7539), + [anon_sym_GT_GT] = ACTIONS(7539), + [anon_sym___extension__] = ACTIONS(7541), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7541), + [anon_sym_LBRACK] = ACTIONS(7541), + [anon_sym_RBRACK] = ACTIONS(7541), + [anon_sym_EQ] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7539), + [anon_sym_constexpr] = ACTIONS(7541), + [anon_sym_volatile] = ACTIONS(7541), + [anon_sym_restrict] = ACTIONS(7541), + [anon_sym___restrict__] = ACTIONS(7541), + [anon_sym__Atomic] = ACTIONS(7541), + [anon_sym__Noreturn] = ACTIONS(7541), + [anon_sym_noreturn] = ACTIONS(7541), + [anon_sym__Nonnull] = ACTIONS(7541), + [anon_sym_mutable] = ACTIONS(7541), + [anon_sym_constinit] = ACTIONS(7541), + [anon_sym_consteval] = ACTIONS(7541), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(7541), + [anon_sym_STAR_EQ] = ACTIONS(7541), + [anon_sym_SLASH_EQ] = ACTIONS(7541), + [anon_sym_PERCENT_EQ] = ACTIONS(7541), + [anon_sym_PLUS_EQ] = ACTIONS(7541), + [anon_sym_DASH_EQ] = ACTIONS(7541), + [anon_sym_LT_LT_EQ] = ACTIONS(7541), + [anon_sym_GT_GT_EQ] = ACTIONS(7541), + [anon_sym_AMP_EQ] = ACTIONS(7541), + [anon_sym_CARET_EQ] = ACTIONS(7541), + [anon_sym_PIPE_EQ] = ACTIONS(7541), + [anon_sym_and_eq] = ACTIONS(7541), + [anon_sym_or_eq] = ACTIONS(7541), + [anon_sym_xor_eq] = ACTIONS(7541), + [anon_sym_LT_EQ_GT] = ACTIONS(7541), + [anon_sym_or] = ACTIONS(7539), + [anon_sym_and] = ACTIONS(7539), + [anon_sym_bitor] = ACTIONS(7541), + [anon_sym_xor] = ACTIONS(7539), + [anon_sym_bitand] = ACTIONS(7541), + [anon_sym_not_eq] = ACTIONS(7541), + [anon_sym_DASH_DASH] = ACTIONS(7541), + [anon_sym_PLUS_PLUS] = ACTIONS(7541), + [anon_sym_DOT] = ACTIONS(7539), + [anon_sym_DOT_STAR] = ACTIONS(7541), + [anon_sym_DASH_GT] = ACTIONS(7541), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7541), + [anon_sym_override] = ACTIONS(7541), + [anon_sym_requires] = ACTIONS(7541), + }, + [STATE(2889)] = { + [sym_attribute_specifier] = STATE(3114), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7483), + [anon_sym_LPAREN2] = ACTIONS(7483), + [anon_sym_DASH] = ACTIONS(7481), + [anon_sym_PLUS] = ACTIONS(7481), + [anon_sym_STAR] = ACTIONS(7481), + [anon_sym_SLASH] = ACTIONS(7481), + [anon_sym_PERCENT] = ACTIONS(7481), + [anon_sym_PIPE_PIPE] = ACTIONS(7483), + [anon_sym_AMP_AMP] = ACTIONS(7483), + [anon_sym_PIPE] = ACTIONS(7481), + [anon_sym_CARET] = ACTIONS(7481), + [anon_sym_AMP] = ACTIONS(7481), + [anon_sym_EQ_EQ] = ACTIONS(7483), + [anon_sym_BANG_EQ] = ACTIONS(7483), + [anon_sym_GT] = ACTIONS(7481), + [anon_sym_GT_EQ] = ACTIONS(7483), + [anon_sym_LT_EQ] = ACTIONS(7481), + [anon_sym_LT] = ACTIONS(7481), + [anon_sym_LT_LT] = ACTIONS(7481), + [anon_sym_GT_GT] = ACTIONS(7481), + [anon_sym___extension__] = ACTIONS(7483), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7483), + [anon_sym_LBRACK] = ACTIONS(7483), + [anon_sym_RBRACK] = ACTIONS(7483), + [anon_sym_EQ] = ACTIONS(7481), + [anon_sym_const] = ACTIONS(7481), + [anon_sym_constexpr] = ACTIONS(7483), + [anon_sym_volatile] = ACTIONS(7483), + [anon_sym_restrict] = ACTIONS(7483), + [anon_sym___restrict__] = ACTIONS(7483), + [anon_sym__Atomic] = ACTIONS(7483), + [anon_sym__Noreturn] = ACTIONS(7483), + [anon_sym_noreturn] = ACTIONS(7483), + [anon_sym__Nonnull] = ACTIONS(7483), + [anon_sym_mutable] = ACTIONS(7483), + [anon_sym_constinit] = ACTIONS(7483), + [anon_sym_consteval] = ACTIONS(7483), + [anon_sym_alignas] = ACTIONS(7483), + [anon_sym__Alignas] = ACTIONS(7483), + [anon_sym_QMARK] = ACTIONS(7483), + [anon_sym_STAR_EQ] = ACTIONS(7483), + [anon_sym_SLASH_EQ] = ACTIONS(7483), + [anon_sym_PERCENT_EQ] = ACTIONS(7483), + [anon_sym_PLUS_EQ] = ACTIONS(7483), + [anon_sym_DASH_EQ] = ACTIONS(7483), + [anon_sym_LT_LT_EQ] = ACTIONS(7483), + [anon_sym_GT_GT_EQ] = ACTIONS(7483), + [anon_sym_AMP_EQ] = ACTIONS(7483), + [anon_sym_CARET_EQ] = ACTIONS(7483), + [anon_sym_PIPE_EQ] = ACTIONS(7483), + [anon_sym_and_eq] = ACTIONS(7483), + [anon_sym_or_eq] = ACTIONS(7483), + [anon_sym_xor_eq] = ACTIONS(7483), + [anon_sym_LT_EQ_GT] = ACTIONS(7483), + [anon_sym_or] = ACTIONS(7481), + [anon_sym_and] = ACTIONS(7481), + [anon_sym_bitor] = ACTIONS(7483), + [anon_sym_xor] = ACTIONS(7481), + [anon_sym_bitand] = ACTIONS(7483), + [anon_sym_not_eq] = ACTIONS(7483), + [anon_sym_DASH_DASH] = ACTIONS(7483), + [anon_sym_PLUS_PLUS] = ACTIONS(7483), + [anon_sym_DOT] = ACTIONS(7481), + [anon_sym_DOT_STAR] = ACTIONS(7483), + [anon_sym_DASH_GT] = ACTIONS(7483), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7483), + [anon_sym_override] = ACTIONS(7483), + [anon_sym_requires] = ACTIONS(7483), + }, + [STATE(2890)] = { + [sym_identifier] = ACTIONS(3877), + [aux_sym_preproc_def_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token2] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3877), + [aux_sym_preproc_else_token1] = ACTIONS(3877), + [aux_sym_preproc_elif_token1] = ACTIONS(3877), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3877), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3877), + [sym_preproc_directive] = ACTIONS(3877), + [anon_sym_LPAREN2] = ACTIONS(3879), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_STAR] = ACTIONS(3879), + [anon_sym_AMP_AMP] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_SEMI] = ACTIONS(3879), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_typedef] = ACTIONS(3877), + [anon_sym_virtual] = ACTIONS(3877), + [anon_sym_extern] = ACTIONS(3877), + [anon_sym___attribute__] = ACTIONS(3877), + [anon_sym___attribute] = ACTIONS(3877), + [anon_sym_using] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3879), + [anon_sym___declspec] = ACTIONS(3877), + [anon_sym___based] = ACTIONS(3877), + [anon_sym_signed] = ACTIONS(3877), + [anon_sym_unsigned] = ACTIONS(3877), + [anon_sym_long] = ACTIONS(3877), + [anon_sym_short] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_static] = ACTIONS(3877), + [anon_sym_register] = ACTIONS(3877), + [anon_sym_inline] = ACTIONS(3877), + [anon_sym___inline] = ACTIONS(3877), + [anon_sym___inline__] = ACTIONS(3877), + [anon_sym___forceinline] = ACTIONS(3877), + [anon_sym_thread_local] = ACTIONS(3877), + [anon_sym___thread] = ACTIONS(3877), + [anon_sym_const] = ACTIONS(3877), + [anon_sym_constexpr] = ACTIONS(3877), + [anon_sym_volatile] = ACTIONS(3877), + [anon_sym_restrict] = ACTIONS(3877), + [anon_sym___restrict__] = ACTIONS(3877), + [anon_sym__Atomic] = ACTIONS(3877), + [anon_sym__Noreturn] = ACTIONS(3877), + [anon_sym_noreturn] = ACTIONS(3877), + [anon_sym__Nonnull] = ACTIONS(3877), + [anon_sym_mutable] = ACTIONS(3877), + [anon_sym_constinit] = ACTIONS(3877), + [anon_sym_consteval] = ACTIONS(3877), + [anon_sym_alignas] = ACTIONS(3877), + [anon_sym__Alignas] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(3877), + [anon_sym_enum] = ACTIONS(3877), + [anon_sym_class] = ACTIONS(3877), + [anon_sym_struct] = ACTIONS(3877), + [anon_sym_union] = ACTIONS(3877), + [anon_sym_typename] = ACTIONS(3877), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3877), + [anon_sym_decltype] = ACTIONS(3877), + [anon_sym_explicit] = ACTIONS(3877), + [anon_sym_private] = ACTIONS(3877), + [anon_sym_template] = ACTIONS(3877), + [anon_sym_operator] = ACTIONS(3877), + [anon_sym_friend] = ACTIONS(3877), + [anon_sym_public] = ACTIONS(3877), + [anon_sym_protected] = ACTIONS(3877), + [anon_sym_static_assert] = ACTIONS(3877), + [anon_sym_LBRACK_COLON] = ACTIONS(3879), + }, + [STATE(2891)] = { + [sym_identifier] = ACTIONS(8820), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8822), + [anon_sym_COMMA] = ACTIONS(8822), + [anon_sym_RPAREN] = ACTIONS(8822), [aux_sym_preproc_if_token2] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), [aux_sym_preproc_else_token1] = ACTIONS(8822), - [aux_sym_preproc_elif_token1] = ACTIONS(8822), + [aux_sym_preproc_elif_token1] = ACTIONS(8820), [aux_sym_preproc_elifdef_token1] = ACTIONS(8822), [aux_sym_preproc_elifdef_token2] = ACTIONS(8822), - [sym_preproc_directive] = ACTIONS(8822), - [anon_sym_LPAREN2] = ACTIONS(8824), - [anon_sym_TILDE] = ACTIONS(8824), - [anon_sym_STAR] = ACTIONS(8824), - [anon_sym_AMP_AMP] = ACTIONS(8824), - [anon_sym_AMP] = ACTIONS(8822), - [anon_sym_SEMI] = ACTIONS(8824), - [anon_sym___extension__] = ACTIONS(8822), - [anon_sym_typedef] = ACTIONS(8822), - [anon_sym_virtual] = ACTIONS(8822), - [anon_sym_extern] = ACTIONS(8822), - [anon_sym___attribute__] = ACTIONS(8822), - [anon_sym___attribute] = ACTIONS(8822), - [anon_sym_using] = ACTIONS(8822), - [anon_sym_COLON_COLON] = ACTIONS(8824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), - [anon_sym___declspec] = ACTIONS(8822), - [anon_sym___based] = ACTIONS(8822), - [anon_sym_signed] = ACTIONS(8822), - [anon_sym_unsigned] = ACTIONS(8822), - [anon_sym_long] = ACTIONS(8822), - [anon_sym_short] = ACTIONS(8822), - [anon_sym_LBRACK] = ACTIONS(8822), - [anon_sym_static] = ACTIONS(8822), - [anon_sym_register] = ACTIONS(8822), - [anon_sym_inline] = ACTIONS(8822), - [anon_sym___inline] = ACTIONS(8822), - [anon_sym___inline__] = ACTIONS(8822), - [anon_sym___forceinline] = ACTIONS(8822), - [anon_sym_thread_local] = ACTIONS(8822), - [anon_sym___thread] = ACTIONS(8822), - [anon_sym_const] = ACTIONS(8822), - [anon_sym_constexpr] = ACTIONS(8822), - [anon_sym_volatile] = ACTIONS(8822), - [anon_sym_restrict] = ACTIONS(8822), - [anon_sym___restrict__] = ACTIONS(8822), - [anon_sym__Atomic] = ACTIONS(8822), - [anon_sym__Noreturn] = ACTIONS(8822), - [anon_sym_noreturn] = ACTIONS(8822), - [anon_sym__Nonnull] = ACTIONS(8822), - [anon_sym_mutable] = ACTIONS(8822), - [anon_sym_constinit] = ACTIONS(8822), - [anon_sym_consteval] = ACTIONS(8822), - [anon_sym_alignas] = ACTIONS(8822), - [anon_sym__Alignas] = ACTIONS(8822), - [sym_primitive_type] = ACTIONS(8822), - [anon_sym_enum] = ACTIONS(8822), - [anon_sym_class] = ACTIONS(8822), - [anon_sym_struct] = ACTIONS(8822), - [anon_sym_union] = ACTIONS(8822), - [anon_sym_typename] = ACTIONS(8822), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8822), - [anon_sym_decltype] = ACTIONS(8822), - [anon_sym_explicit] = ACTIONS(8822), - [anon_sym_private] = ACTIONS(8822), - [anon_sym_template] = ACTIONS(8822), - [anon_sym_operator] = ACTIONS(8822), - [anon_sym_friend] = ACTIONS(8822), - [anon_sym_public] = ACTIONS(8822), - [anon_sym_protected] = ACTIONS(8822), - [anon_sym_static_assert] = ACTIONS(8822), - [anon_sym_LBRACK_COLON] = ACTIONS(8824), + [anon_sym_LPAREN2] = ACTIONS(8822), + [anon_sym_DASH] = ACTIONS(8820), + [anon_sym_PLUS] = ACTIONS(8820), + [anon_sym_STAR] = ACTIONS(8820), + [anon_sym_SLASH] = ACTIONS(8820), + [anon_sym_PERCENT] = ACTIONS(8820), + [anon_sym_PIPE_PIPE] = ACTIONS(8822), + [anon_sym_AMP_AMP] = ACTIONS(8822), + [anon_sym_PIPE] = ACTIONS(8820), + [anon_sym_CARET] = ACTIONS(8820), + [anon_sym_AMP] = ACTIONS(8820), + [anon_sym_EQ_EQ] = ACTIONS(8822), + [anon_sym_BANG_EQ] = ACTIONS(8822), + [anon_sym_GT] = ACTIONS(8820), + [anon_sym_GT_EQ] = ACTIONS(8822), + [anon_sym_LT_EQ] = ACTIONS(8820), + [anon_sym_LT] = ACTIONS(8820), + [anon_sym_LT_LT] = ACTIONS(8820), + [anon_sym_GT_GT] = ACTIONS(8820), + [anon_sym_SEMI] = ACTIONS(8822), + [anon_sym___attribute__] = ACTIONS(8820), + [anon_sym___attribute] = ACTIONS(8820), + [anon_sym_COLON] = ACTIONS(8820), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8822), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8822), + [anon_sym_RBRACE] = ACTIONS(8822), + [anon_sym_LBRACK] = ACTIONS(8820), + [anon_sym_EQ] = ACTIONS(8820), + [anon_sym_QMARK] = ACTIONS(8822), + [anon_sym_STAR_EQ] = ACTIONS(8822), + [anon_sym_SLASH_EQ] = ACTIONS(8822), + [anon_sym_PERCENT_EQ] = ACTIONS(8822), + [anon_sym_PLUS_EQ] = ACTIONS(8822), + [anon_sym_DASH_EQ] = ACTIONS(8822), + [anon_sym_LT_LT_EQ] = ACTIONS(8822), + [anon_sym_GT_GT_EQ] = ACTIONS(8822), + [anon_sym_AMP_EQ] = ACTIONS(8822), + [anon_sym_CARET_EQ] = ACTIONS(8822), + [anon_sym_PIPE_EQ] = ACTIONS(8822), + [anon_sym_and_eq] = ACTIONS(8820), + [anon_sym_or_eq] = ACTIONS(8820), + [anon_sym_xor_eq] = ACTIONS(8820), + [anon_sym_LT_EQ_GT] = ACTIONS(8822), + [anon_sym_or] = ACTIONS(8820), + [anon_sym_and] = ACTIONS(8820), + [anon_sym_bitor] = ACTIONS(8820), + [anon_sym_xor] = ACTIONS(8820), + [anon_sym_bitand] = ACTIONS(8820), + [anon_sym_not_eq] = ACTIONS(8820), + [anon_sym_DASH_DASH] = ACTIONS(8822), + [anon_sym_PLUS_PLUS] = ACTIONS(8822), + [anon_sym_asm] = ACTIONS(8820), + [anon_sym___asm__] = ACTIONS(8820), + [anon_sym___asm] = ACTIONS(8820), + [anon_sym_DOT] = ACTIONS(8820), + [anon_sym_DOT_STAR] = ACTIONS(8822), + [anon_sym_DASH_GT] = ACTIONS(8822), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8820), + [anon_sym_override] = ACTIONS(8820), + [anon_sym_noexcept] = ACTIONS(8820), + [anon_sym_throw] = ACTIONS(8820), + [anon_sym_requires] = ACTIONS(8820), + [anon_sym_COLON_RBRACK] = ACTIONS(8822), }, - [STATE(2898)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), - [anon_sym_COMMA] = ACTIONS(7737), - [anon_sym_RPAREN] = ACTIONS(7737), - [anon_sym_LPAREN2] = ACTIONS(7737), - [anon_sym_DASH] = ACTIONS(7735), - [anon_sym_PLUS] = ACTIONS(7735), - [anon_sym_STAR] = ACTIONS(7735), - [anon_sym_SLASH] = ACTIONS(7735), - [anon_sym_PERCENT] = ACTIONS(7735), - [anon_sym_PIPE_PIPE] = ACTIONS(7737), - [anon_sym_AMP_AMP] = ACTIONS(7737), - [anon_sym_PIPE] = ACTIONS(7735), - [anon_sym_CARET] = ACTIONS(7735), - [anon_sym_AMP] = ACTIONS(7735), - [anon_sym_EQ_EQ] = ACTIONS(7737), - [anon_sym_BANG_EQ] = ACTIONS(7737), - [anon_sym_GT] = ACTIONS(7735), - [anon_sym_GT_EQ] = ACTIONS(7737), - [anon_sym_LT_EQ] = ACTIONS(7735), - [anon_sym_LT] = ACTIONS(7735), - [anon_sym_LT_LT] = ACTIONS(7735), - [anon_sym_GT_GT] = ACTIONS(7735), - [anon_sym___extension__] = ACTIONS(7737), - [anon_sym___attribute__] = ACTIONS(7737), - [anon_sym___attribute] = ACTIONS(7735), - [anon_sym_LBRACE] = ACTIONS(7737), - [anon_sym_LBRACK] = ACTIONS(7737), - [anon_sym_EQ] = ACTIONS(7735), - [anon_sym_const] = ACTIONS(7735), - [anon_sym_constexpr] = ACTIONS(7737), - [anon_sym_volatile] = ACTIONS(7737), - [anon_sym_restrict] = ACTIONS(7737), - [anon_sym___restrict__] = ACTIONS(7737), - [anon_sym__Atomic] = ACTIONS(7737), - [anon_sym__Noreturn] = ACTIONS(7737), - [anon_sym_noreturn] = ACTIONS(7737), - [anon_sym__Nonnull] = ACTIONS(7737), - [anon_sym_mutable] = ACTIONS(7737), - [anon_sym_constinit] = ACTIONS(7737), - [anon_sym_consteval] = ACTIONS(7737), - [anon_sym_alignas] = ACTIONS(7737), - [anon_sym__Alignas] = ACTIONS(7737), - [anon_sym_QMARK] = ACTIONS(7737), - [anon_sym_STAR_EQ] = ACTIONS(7737), - [anon_sym_SLASH_EQ] = ACTIONS(7737), - [anon_sym_PERCENT_EQ] = ACTIONS(7737), - [anon_sym_PLUS_EQ] = ACTIONS(7737), - [anon_sym_DASH_EQ] = ACTIONS(7737), - [anon_sym_LT_LT_EQ] = ACTIONS(7737), - [anon_sym_GT_GT_EQ] = ACTIONS(7737), - [anon_sym_AMP_EQ] = ACTIONS(7737), - [anon_sym_CARET_EQ] = ACTIONS(7737), - [anon_sym_PIPE_EQ] = ACTIONS(7737), - [anon_sym_and_eq] = ACTIONS(7737), - [anon_sym_or_eq] = ACTIONS(7737), - [anon_sym_xor_eq] = ACTIONS(7737), - [anon_sym_LT_EQ_GT] = ACTIONS(7737), - [anon_sym_or] = ACTIONS(7735), - [anon_sym_and] = ACTIONS(7735), - [anon_sym_bitor] = ACTIONS(7737), - [anon_sym_xor] = ACTIONS(7735), - [anon_sym_bitand] = ACTIONS(7737), - [anon_sym_not_eq] = ACTIONS(7737), - [anon_sym_DASH_DASH] = ACTIONS(7737), - [anon_sym_PLUS_PLUS] = ACTIONS(7737), - [anon_sym_DOT] = ACTIONS(7735), - [anon_sym_DOT_STAR] = ACTIONS(7737), - [anon_sym_DASH_GT] = ACTIONS(7735), + [STATE(2892)] = { + [sym_identifier] = ACTIONS(4102), + [aux_sym_preproc_def_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token2] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4102), + [aux_sym_preproc_else_token1] = ACTIONS(4102), + [aux_sym_preproc_elif_token1] = ACTIONS(4102), + [aux_sym_preproc_elifdef_token1] = ACTIONS(4102), + [aux_sym_preproc_elifdef_token2] = ACTIONS(4102), + [sym_preproc_directive] = ACTIONS(4102), + [anon_sym_LPAREN2] = ACTIONS(4104), + [anon_sym_TILDE] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym___extension__] = ACTIONS(4102), + [anon_sym_typedef] = ACTIONS(4102), + [anon_sym_virtual] = ACTIONS(4102), + [anon_sym_extern] = ACTIONS(4102), + [anon_sym___attribute__] = ACTIONS(4102), + [anon_sym___attribute] = ACTIONS(4102), + [anon_sym_using] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4104), + [anon_sym___declspec] = ACTIONS(4102), + [anon_sym___based] = ACTIONS(4102), + [anon_sym_signed] = ACTIONS(4102), + [anon_sym_unsigned] = ACTIONS(4102), + [anon_sym_long] = ACTIONS(4102), + [anon_sym_short] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_static] = ACTIONS(4102), + [anon_sym_register] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym___inline] = ACTIONS(4102), + [anon_sym___inline__] = ACTIONS(4102), + [anon_sym___forceinline] = ACTIONS(4102), + [anon_sym_thread_local] = ACTIONS(4102), + [anon_sym___thread] = ACTIONS(4102), + [anon_sym_const] = ACTIONS(4102), + [anon_sym_constexpr] = ACTIONS(4102), + [anon_sym_volatile] = ACTIONS(4102), + [anon_sym_restrict] = ACTIONS(4102), + [anon_sym___restrict__] = ACTIONS(4102), + [anon_sym__Atomic] = ACTIONS(4102), + [anon_sym__Noreturn] = ACTIONS(4102), + [anon_sym_noreturn] = ACTIONS(4102), + [anon_sym__Nonnull] = ACTIONS(4102), + [anon_sym_mutable] = ACTIONS(4102), + [anon_sym_constinit] = ACTIONS(4102), + [anon_sym_consteval] = ACTIONS(4102), + [anon_sym_alignas] = ACTIONS(4102), + [anon_sym__Alignas] = ACTIONS(4102), + [sym_primitive_type] = ACTIONS(4102), + [anon_sym_enum] = ACTIONS(4102), + [anon_sym_class] = ACTIONS(4102), + [anon_sym_struct] = ACTIONS(4102), + [anon_sym_union] = ACTIONS(4102), + [anon_sym_typename] = ACTIONS(4102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4102), + [anon_sym_decltype] = ACTIONS(4102), + [anon_sym_explicit] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_template] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_friend] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_static_assert] = ACTIONS(4102), + [anon_sym_LBRACK_COLON] = ACTIONS(4104), + }, + [STATE(2893)] = { + [sym_identifier] = ACTIONS(8812), + [aux_sym_preproc_def_token1] = ACTIONS(8812), + [aux_sym_preproc_if_token1] = ACTIONS(8812), + [aux_sym_preproc_if_token2] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8812), + [aux_sym_preproc_else_token1] = ACTIONS(8812), + [aux_sym_preproc_elif_token1] = ACTIONS(8812), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8812), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8812), + [sym_preproc_directive] = ACTIONS(8812), + [anon_sym_LPAREN2] = ACTIONS(8814), + [anon_sym_TILDE] = ACTIONS(8814), + [anon_sym_STAR] = ACTIONS(8814), + [anon_sym_AMP_AMP] = ACTIONS(8814), + [anon_sym_AMP] = ACTIONS(8812), + [anon_sym_SEMI] = ACTIONS(8814), + [anon_sym___extension__] = ACTIONS(8812), + [anon_sym_typedef] = ACTIONS(8812), + [anon_sym_virtual] = ACTIONS(8812), + [anon_sym_extern] = ACTIONS(8812), + [anon_sym___attribute__] = ACTIONS(8812), + [anon_sym___attribute] = ACTIONS(8812), + [anon_sym_using] = ACTIONS(8812), + [anon_sym_COLON_COLON] = ACTIONS(8814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8814), + [anon_sym___declspec] = ACTIONS(8812), + [anon_sym___based] = ACTIONS(8812), + [anon_sym_signed] = ACTIONS(8812), + [anon_sym_unsigned] = ACTIONS(8812), + [anon_sym_long] = ACTIONS(8812), + [anon_sym_short] = ACTIONS(8812), + [anon_sym_LBRACK] = ACTIONS(8812), + [anon_sym_static] = ACTIONS(8812), + [anon_sym_register] = ACTIONS(8812), + [anon_sym_inline] = ACTIONS(8812), + [anon_sym___inline] = ACTIONS(8812), + [anon_sym___inline__] = ACTIONS(8812), + [anon_sym___forceinline] = ACTIONS(8812), + [anon_sym_thread_local] = ACTIONS(8812), + [anon_sym___thread] = ACTIONS(8812), + [anon_sym_const] = ACTIONS(8812), + [anon_sym_constexpr] = ACTIONS(8812), + [anon_sym_volatile] = ACTIONS(8812), + [anon_sym_restrict] = ACTIONS(8812), + [anon_sym___restrict__] = ACTIONS(8812), + [anon_sym__Atomic] = ACTIONS(8812), + [anon_sym__Noreturn] = ACTIONS(8812), + [anon_sym_noreturn] = ACTIONS(8812), + [anon_sym__Nonnull] = ACTIONS(8812), + [anon_sym_mutable] = ACTIONS(8812), + [anon_sym_constinit] = ACTIONS(8812), + [anon_sym_consteval] = ACTIONS(8812), + [anon_sym_alignas] = ACTIONS(8812), + [anon_sym__Alignas] = ACTIONS(8812), + [sym_primitive_type] = ACTIONS(8812), + [anon_sym_enum] = ACTIONS(8812), + [anon_sym_class] = ACTIONS(8812), + [anon_sym_struct] = ACTIONS(8812), + [anon_sym_union] = ACTIONS(8812), + [anon_sym_typename] = ACTIONS(8812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8812), + [anon_sym_decltype] = ACTIONS(8812), + [anon_sym_explicit] = ACTIONS(8812), + [anon_sym_private] = ACTIONS(8812), + [anon_sym_template] = ACTIONS(8812), + [anon_sym_operator] = ACTIONS(8812), + [anon_sym_friend] = ACTIONS(8812), + [anon_sym_public] = ACTIONS(8812), + [anon_sym_protected] = ACTIONS(8812), + [anon_sym_static_assert] = ACTIONS(8812), + [anon_sym_LBRACK_COLON] = ACTIONS(8814), + }, + [STATE(2894)] = { + [sym_ms_based_modifier] = STATE(10831), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(6415), + [sym__declarator] = STATE(8775), + [sym__abstract_declarator] = STATE(9054), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(3767), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5335), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(3767), + [aux_sym_pointer_declarator_repeat1] = STATE(6415), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8657), + [anon_sym_AMP_AMP] = ACTIONS(8659), + [anon_sym_AMP] = ACTIONS(8661), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7737), - [anon_sym_override] = ACTIONS(7737), - [anon_sym_requires] = ACTIONS(7737), - [anon_sym_DASH_GT_STAR] = ACTIONS(7737), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(6843), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(2895)] = { + [sym_attribute_specifier] = STATE(3197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7497), + [anon_sym_COMMA] = ACTIONS(7497), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_DASH] = ACTIONS(7495), + [anon_sym_PLUS] = ACTIONS(7495), + [anon_sym_STAR] = ACTIONS(7495), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7495), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7495), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym_EQ_EQ] = ACTIONS(7497), + [anon_sym_BANG_EQ] = ACTIONS(7497), + [anon_sym_GT] = ACTIONS(7495), + [anon_sym_GT_EQ] = ACTIONS(7497), + [anon_sym_LT_EQ] = ACTIONS(7495), + [anon_sym_LT] = ACTIONS(7495), + [anon_sym_LT_LT] = ACTIONS(7495), + [anon_sym_GT_GT] = ACTIONS(7495), + [anon_sym___extension__] = ACTIONS(7497), + [anon_sym___attribute__] = ACTIONS(8338), + [anon_sym___attribute] = ACTIONS(8340), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7497), + [anon_sym_RBRACK] = ACTIONS(7497), + [anon_sym_EQ] = ACTIONS(7495), + [anon_sym_const] = ACTIONS(7495), + [anon_sym_constexpr] = ACTIONS(7497), + [anon_sym_volatile] = ACTIONS(7497), + [anon_sym_restrict] = ACTIONS(7497), + [anon_sym___restrict__] = ACTIONS(7497), + [anon_sym__Atomic] = ACTIONS(7497), + [anon_sym__Noreturn] = ACTIONS(7497), + [anon_sym_noreturn] = ACTIONS(7497), + [anon_sym__Nonnull] = ACTIONS(7497), + [anon_sym_mutable] = ACTIONS(7497), + [anon_sym_constinit] = ACTIONS(7497), + [anon_sym_consteval] = ACTIONS(7497), + [anon_sym_alignas] = ACTIONS(7497), + [anon_sym__Alignas] = ACTIONS(7497), + [anon_sym_QMARK] = ACTIONS(7497), + [anon_sym_STAR_EQ] = ACTIONS(7497), + [anon_sym_SLASH_EQ] = ACTIONS(7497), + [anon_sym_PERCENT_EQ] = ACTIONS(7497), + [anon_sym_PLUS_EQ] = ACTIONS(7497), + [anon_sym_DASH_EQ] = ACTIONS(7497), + [anon_sym_LT_LT_EQ] = ACTIONS(7497), + [anon_sym_GT_GT_EQ] = ACTIONS(7497), + [anon_sym_AMP_EQ] = ACTIONS(7497), + [anon_sym_CARET_EQ] = ACTIONS(7497), + [anon_sym_PIPE_EQ] = ACTIONS(7497), + [anon_sym_and_eq] = ACTIONS(7497), + [anon_sym_or_eq] = ACTIONS(7497), + [anon_sym_xor_eq] = ACTIONS(7497), + [anon_sym_LT_EQ_GT] = ACTIONS(7497), + [anon_sym_or] = ACTIONS(7495), + [anon_sym_and] = ACTIONS(7495), + [anon_sym_bitor] = ACTIONS(7497), + [anon_sym_xor] = ACTIONS(7495), + [anon_sym_bitand] = ACTIONS(7497), + [anon_sym_not_eq] = ACTIONS(7497), + [anon_sym_DASH_DASH] = ACTIONS(7497), + [anon_sym_PLUS_PLUS] = ACTIONS(7497), + [anon_sym_DOT] = ACTIONS(7495), + [anon_sym_DOT_STAR] = ACTIONS(7497), + [anon_sym_DASH_GT] = ACTIONS(7497), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7497), + [anon_sym_override] = ACTIONS(7497), + [anon_sym_requires] = ACTIONS(7497), + }, + [STATE(2896)] = { + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym__function_attributes_end] = STATE(4318), + [sym__function_postfix] = STATE(4851), + [sym_trailing_return_type] = STATE(4354), + [sym_requires_clause] = STATE(4851), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8167), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6663), + [anon_sym_override] = ACTIONS(6663), + [anon_sym_requires] = ACTIONS(6665), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), + }, + [STATE(2897)] = { + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym__function_attributes_end] = STATE(4283), + [sym__function_postfix] = STATE(4848), + [sym_trailing_return_type] = STATE(4388), + [sym_requires_clause] = STATE(4848), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8220), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8223), + [anon_sym_override] = ACTIONS(8223), + [anon_sym_requires] = ACTIONS(8226), + [anon_sym_DASH_GT_STAR] = ACTIONS(7970), + }, + [STATE(2898)] = { + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym__function_attributes_end] = STATE(4289), + [sym__function_postfix] = STATE(4971), + [sym_trailing_return_type] = STATE(4323), + [sym_requires_clause] = STATE(4971), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8402), + [anon_sym_or_eq] = ACTIONS(8402), + [anon_sym_xor_eq] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8824), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8827), + [anon_sym_override] = ACTIONS(8827), + [anon_sym_requires] = ACTIONS(8830), + [anon_sym_DASH_GT_STAR] = ACTIONS(8402), }, [STATE(2899)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), - [anon_sym_COMMA] = ACTIONS(7475), - [anon_sym_RPAREN] = ACTIONS(7475), - [anon_sym_LPAREN2] = ACTIONS(7475), - [anon_sym_DASH] = ACTIONS(7473), - [anon_sym_PLUS] = ACTIONS(7473), - [anon_sym_STAR] = ACTIONS(7473), - [anon_sym_SLASH] = ACTIONS(7473), - [anon_sym_PERCENT] = ACTIONS(7473), - [anon_sym_PIPE_PIPE] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7475), - [anon_sym_PIPE] = ACTIONS(7473), - [anon_sym_CARET] = ACTIONS(7473), - [anon_sym_AMP] = ACTIONS(7473), - [anon_sym_EQ_EQ] = ACTIONS(7475), - [anon_sym_BANG_EQ] = ACTIONS(7475), - [anon_sym_GT] = ACTIONS(7473), - [anon_sym_GT_EQ] = ACTIONS(7475), - [anon_sym_LT_EQ] = ACTIONS(7473), - [anon_sym_LT] = ACTIONS(7473), - [anon_sym_LT_LT] = ACTIONS(7473), - [anon_sym_GT_GT] = ACTIONS(7473), - [anon_sym___extension__] = ACTIONS(7475), - [anon_sym_COLON_COLON] = ACTIONS(7475), - [anon_sym_LBRACE] = ACTIONS(7475), - [anon_sym_LBRACK] = ACTIONS(7475), - [anon_sym_EQ] = ACTIONS(7473), - [anon_sym_const] = ACTIONS(7473), - [anon_sym_constexpr] = ACTIONS(7475), - [anon_sym_volatile] = ACTIONS(7475), - [anon_sym_restrict] = ACTIONS(7475), - [anon_sym___restrict__] = ACTIONS(7475), - [anon_sym__Atomic] = ACTIONS(7475), - [anon_sym__Noreturn] = ACTIONS(7475), - [anon_sym_noreturn] = ACTIONS(7475), - [anon_sym__Nonnull] = ACTIONS(7475), - [anon_sym_mutable] = ACTIONS(7475), - [anon_sym_constinit] = ACTIONS(7475), - [anon_sym_consteval] = ACTIONS(7475), - [anon_sym_alignas] = ACTIONS(7475), - [anon_sym__Alignas] = ACTIONS(7475), - [anon_sym_QMARK] = ACTIONS(7475), - [anon_sym_STAR_EQ] = ACTIONS(7475), - [anon_sym_SLASH_EQ] = ACTIONS(7475), - [anon_sym_PERCENT_EQ] = ACTIONS(7475), - [anon_sym_PLUS_EQ] = ACTIONS(7475), - [anon_sym_DASH_EQ] = ACTIONS(7475), - [anon_sym_LT_LT_EQ] = ACTIONS(7475), - [anon_sym_GT_GT_EQ] = ACTIONS(7475), - [anon_sym_AMP_EQ] = ACTIONS(7475), - [anon_sym_CARET_EQ] = ACTIONS(7475), - [anon_sym_PIPE_EQ] = ACTIONS(7475), - [anon_sym_and_eq] = ACTIONS(7475), - [anon_sym_or_eq] = ACTIONS(7475), - [anon_sym_xor_eq] = ACTIONS(7475), - [anon_sym_LT_EQ_GT] = ACTIONS(7475), - [anon_sym_or] = ACTIONS(7473), - [anon_sym_and] = ACTIONS(7473), - [anon_sym_bitor] = ACTIONS(7475), - [anon_sym_xor] = ACTIONS(7473), - [anon_sym_bitand] = ACTIONS(7475), - [anon_sym_not_eq] = ACTIONS(7475), - [anon_sym_DASH_DASH] = ACTIONS(7475), - [anon_sym_PLUS_PLUS] = ACTIONS(7475), - [anon_sym_DOT] = ACTIONS(7473), - [anon_sym_DOT_STAR] = ACTIONS(7475), - [anon_sym_DASH_GT] = ACTIONS(7473), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7475), - [anon_sym_override] = ACTIONS(7475), - [anon_sym_requires] = ACTIONS(7475), - [anon_sym_DASH_GT_STAR] = ACTIONS(7475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7117), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7117), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7117), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(7117), + [anon_sym_LT_LT] = ACTIONS(7117), + [anon_sym_GT_GT] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym___attribute__] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7122), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_EQ] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_STAR_EQ] = ACTIONS(7122), + [anon_sym_SLASH_EQ] = ACTIONS(7122), + [anon_sym_PERCENT_EQ] = ACTIONS(7122), + [anon_sym_PLUS_EQ] = ACTIONS(7122), + [anon_sym_DASH_EQ] = ACTIONS(7122), + [anon_sym_LT_LT_EQ] = ACTIONS(7122), + [anon_sym_GT_GT_EQ] = ACTIONS(7122), + [anon_sym_AMP_EQ] = ACTIONS(7122), + [anon_sym_CARET_EQ] = ACTIONS(7122), + [anon_sym_PIPE_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7122), + [anon_sym_and] = ACTIONS(7122), + [anon_sym_bitor] = ACTIONS(7122), + [anon_sym_xor] = ACTIONS(7122), + [anon_sym_bitand] = ACTIONS(7122), + [anon_sym_not_eq] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7117), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7122), + [anon_sym_override] = ACTIONS(7122), + [anon_sym_requires] = ACTIONS(7122), + [anon_sym_DASH_GT_STAR] = ACTIONS(7122), }, [STATE(2900)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym__function_attributes_end] = STATE(4292), - [sym__function_postfix] = STATE(4840), - [sym_trailing_return_type] = STATE(4383), - [sym_requires_clause] = STATE(4840), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8168), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6669), - [anon_sym_override] = ACTIONS(6669), - [anon_sym_requires] = ACTIONS(6671), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7537), + [anon_sym_COMMA] = ACTIONS(7537), + [anon_sym_RPAREN] = ACTIONS(7537), + [anon_sym_LPAREN2] = ACTIONS(7537), + [anon_sym_DASH] = ACTIONS(7535), + [anon_sym_PLUS] = ACTIONS(7535), + [anon_sym_STAR] = ACTIONS(7535), + [anon_sym_SLASH] = ACTIONS(7535), + [anon_sym_PERCENT] = ACTIONS(7535), + [anon_sym_PIPE_PIPE] = ACTIONS(7537), + [anon_sym_AMP_AMP] = ACTIONS(7537), + [anon_sym_PIPE] = ACTIONS(7535), + [anon_sym_CARET] = ACTIONS(7535), + [anon_sym_AMP] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7537), + [anon_sym_BANG_EQ] = ACTIONS(7537), + [anon_sym_GT] = ACTIONS(7535), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_LT_EQ] = ACTIONS(7535), + [anon_sym_LT] = ACTIONS(7535), + [anon_sym_LT_LT] = ACTIONS(7535), + [anon_sym_GT_GT] = ACTIONS(7535), + [anon_sym___extension__] = ACTIONS(7537), + [anon_sym_COLON_COLON] = ACTIONS(7537), + [anon_sym_LBRACE] = ACTIONS(7537), + [anon_sym_LBRACK] = ACTIONS(7537), + [anon_sym_EQ] = ACTIONS(7535), + [anon_sym_const] = ACTIONS(7535), + [anon_sym_constexpr] = ACTIONS(7537), + [anon_sym_volatile] = ACTIONS(7537), + [anon_sym_restrict] = ACTIONS(7537), + [anon_sym___restrict__] = ACTIONS(7537), + [anon_sym__Atomic] = ACTIONS(7537), + [anon_sym__Noreturn] = ACTIONS(7537), + [anon_sym_noreturn] = ACTIONS(7537), + [anon_sym__Nonnull] = ACTIONS(7537), + [anon_sym_mutable] = ACTIONS(7537), + [anon_sym_constinit] = ACTIONS(7537), + [anon_sym_consteval] = ACTIONS(7537), + [anon_sym_alignas] = ACTIONS(7537), + [anon_sym__Alignas] = ACTIONS(7537), + [anon_sym_QMARK] = ACTIONS(7537), + [anon_sym_STAR_EQ] = ACTIONS(7537), + [anon_sym_SLASH_EQ] = ACTIONS(7537), + [anon_sym_PERCENT_EQ] = ACTIONS(7537), + [anon_sym_PLUS_EQ] = ACTIONS(7537), + [anon_sym_DASH_EQ] = ACTIONS(7537), + [anon_sym_LT_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_GT_EQ] = ACTIONS(7537), + [anon_sym_AMP_EQ] = ACTIONS(7537), + [anon_sym_CARET_EQ] = ACTIONS(7537), + [anon_sym_PIPE_EQ] = ACTIONS(7537), + [anon_sym_and_eq] = ACTIONS(7537), + [anon_sym_or_eq] = ACTIONS(7537), + [anon_sym_xor_eq] = ACTIONS(7537), + [anon_sym_LT_EQ_GT] = ACTIONS(7537), + [anon_sym_or] = ACTIONS(7535), + [anon_sym_and] = ACTIONS(7535), + [anon_sym_bitor] = ACTIONS(7537), + [anon_sym_xor] = ACTIONS(7535), + [anon_sym_bitand] = ACTIONS(7537), + [anon_sym_not_eq] = ACTIONS(7537), + [anon_sym_DASH_DASH] = ACTIONS(7537), + [anon_sym_PLUS_PLUS] = ACTIONS(7537), + [anon_sym_DOT] = ACTIONS(7535), + [anon_sym_DOT_STAR] = ACTIONS(7537), + [anon_sym_DASH_GT] = ACTIONS(7535), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7537), + [anon_sym_override] = ACTIONS(7537), + [anon_sym_requires] = ACTIONS(7537), + [anon_sym_DASH_GT_STAR] = ACTIONS(7537), }, [STATE(2901)] = { - [sym_template_argument_list] = STATE(2999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), - [anon_sym_COMMA] = ACTIONS(6567), - [anon_sym_RPAREN] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6574), - [anon_sym_PLUS] = ACTIONS(6574), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6574), - [anon_sym_PIPE_PIPE] = ACTIONS(6567), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6574), - [anon_sym_CARET] = ACTIONS(6574), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6567), - [anon_sym_BANG_EQ] = ACTIONS(6567), - [anon_sym_GT] = ACTIONS(6574), - [anon_sym_GT_EQ] = ACTIONS(6567), - [anon_sym_LT_EQ] = ACTIONS(6574), - [anon_sym_LT] = ACTIONS(8830), - [anon_sym_LT_LT] = ACTIONS(6574), - [anon_sym_GT_GT] = ACTIONS(6574), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6567), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6567), - [anon_sym_or_eq] = ACTIONS(6567), - [anon_sym_xor_eq] = ACTIONS(6567), - [anon_sym_LT_EQ_GT] = ACTIONS(6567), - [anon_sym_or] = ACTIONS(6574), - [anon_sym_and] = ACTIONS(6574), - [anon_sym_bitor] = ACTIONS(6567), - [anon_sym_xor] = ACTIONS(6574), - [anon_sym_bitand] = ACTIONS(6567), - [anon_sym_not_eq] = ACTIONS(6567), - [anon_sym_DASH_DASH] = ACTIONS(6567), - [anon_sym_PLUS_PLUS] = ACTIONS(6567), - [anon_sym_DOT] = ACTIONS(6574), - [anon_sym_DOT_STAR] = ACTIONS(6567), - [anon_sym_DASH_GT] = ACTIONS(6574), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_DASH_GT_STAR] = ACTIONS(6567), + [sym_decltype_auto] = STATE(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8833), + [anon_sym_decltype] = ACTIONS(6962), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(2902)] = { - [sym_attribute_specifier] = STATE(2026), - [sym_attribute_declaration] = STATE(3169), - [aux_sym_type_definition_repeat1] = STATE(2026), - [aux_sym_attributed_declarator_repeat1] = STATE(3169), - [sym_identifier] = ACTIONS(8833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8835), - [anon_sym_COMMA] = ACTIONS(8835), - [anon_sym_RPAREN] = ACTIONS(8835), - [aux_sym_preproc_if_token2] = ACTIONS(8835), - [aux_sym_preproc_else_token1] = ACTIONS(8835), - [aux_sym_preproc_elif_token1] = ACTIONS(8833), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8835), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8835), - [anon_sym_LPAREN2] = ACTIONS(8835), - [anon_sym_DASH] = ACTIONS(8833), - [anon_sym_PLUS] = ACTIONS(8833), - [anon_sym_STAR] = ACTIONS(8833), - [anon_sym_SLASH] = ACTIONS(8833), - [anon_sym_PERCENT] = ACTIONS(8833), - [anon_sym_PIPE_PIPE] = ACTIONS(8835), - [anon_sym_AMP_AMP] = ACTIONS(8835), - [anon_sym_PIPE] = ACTIONS(8833), - [anon_sym_CARET] = ACTIONS(8833), - [anon_sym_AMP] = ACTIONS(8833), - [anon_sym_EQ_EQ] = ACTIONS(8835), - [anon_sym_BANG_EQ] = ACTIONS(8835), - [anon_sym_GT] = ACTIONS(8833), - [anon_sym_GT_EQ] = ACTIONS(8835), - [anon_sym_LT_EQ] = ACTIONS(8833), - [anon_sym_LT] = ACTIONS(8833), - [anon_sym_LT_LT] = ACTIONS(8833), - [anon_sym_GT_GT] = ACTIONS(8833), - [anon_sym_SEMI] = ACTIONS(8835), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(8833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8835), - [anon_sym_RBRACE] = ACTIONS(8835), - [anon_sym_LBRACK] = ACTIONS(8833), - [anon_sym_EQ] = ACTIONS(8833), - [anon_sym_QMARK] = ACTIONS(8835), - [anon_sym_STAR_EQ] = ACTIONS(8835), - [anon_sym_SLASH_EQ] = ACTIONS(8835), - [anon_sym_PERCENT_EQ] = ACTIONS(8835), - [anon_sym_PLUS_EQ] = ACTIONS(8835), - [anon_sym_DASH_EQ] = ACTIONS(8835), - [anon_sym_LT_LT_EQ] = ACTIONS(8835), - [anon_sym_GT_GT_EQ] = ACTIONS(8835), - [anon_sym_AMP_EQ] = ACTIONS(8835), - [anon_sym_CARET_EQ] = ACTIONS(8835), - [anon_sym_PIPE_EQ] = ACTIONS(8835), - [anon_sym_and_eq] = ACTIONS(8833), - [anon_sym_or_eq] = ACTIONS(8833), - [anon_sym_xor_eq] = ACTIONS(8833), - [anon_sym_LT_EQ_GT] = ACTIONS(8835), - [anon_sym_or] = ACTIONS(8833), - [anon_sym_and] = ACTIONS(8833), - [anon_sym_bitor] = ACTIONS(8833), - [anon_sym_xor] = ACTIONS(8833), - [anon_sym_bitand] = ACTIONS(8833), - [anon_sym_not_eq] = ACTIONS(8833), - [anon_sym_DASH_DASH] = ACTIONS(8835), - [anon_sym_PLUS_PLUS] = ACTIONS(8835), - [anon_sym_DOT] = ACTIONS(8833), - [anon_sym_DOT_STAR] = ACTIONS(8835), - [anon_sym_DASH_GT] = ACTIONS(8835), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8833), - [anon_sym_override] = ACTIONS(8833), - [anon_sym_requires] = ACTIONS(8833), - [anon_sym_COLON_RBRACK] = ACTIONS(8835), + [sym_attribute_specifier] = STATE(3539), + [sym_enumerator_list] = STATE(2990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), + [anon_sym_COMMA] = ACTIONS(7389), + [anon_sym_RPAREN] = ACTIONS(7389), + [anon_sym_LPAREN2] = ACTIONS(7389), + [anon_sym_DASH] = ACTIONS(7387), + [anon_sym_PLUS] = ACTIONS(7387), + [anon_sym_STAR] = ACTIONS(7387), + [anon_sym_SLASH] = ACTIONS(7387), + [anon_sym_PERCENT] = ACTIONS(7387), + [anon_sym_PIPE_PIPE] = ACTIONS(7389), + [anon_sym_AMP_AMP] = ACTIONS(7389), + [anon_sym_PIPE] = ACTIONS(7387), + [anon_sym_CARET] = ACTIONS(7387), + [anon_sym_AMP] = ACTIONS(7387), + [anon_sym_EQ_EQ] = ACTIONS(7389), + [anon_sym_BANG_EQ] = ACTIONS(7389), + [anon_sym_GT] = ACTIONS(7387), + [anon_sym_GT_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ] = ACTIONS(7387), + [anon_sym_LT] = ACTIONS(7387), + [anon_sym_LT_LT] = ACTIONS(7387), + [anon_sym_GT_GT] = ACTIONS(7387), + [anon_sym___extension__] = ACTIONS(7389), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(8628), + [anon_sym_LBRACK] = ACTIONS(7389), + [anon_sym_EQ] = ACTIONS(7387), + [anon_sym_const] = ACTIONS(7387), + [anon_sym_constexpr] = ACTIONS(7389), + [anon_sym_volatile] = ACTIONS(7389), + [anon_sym_restrict] = ACTIONS(7389), + [anon_sym___restrict__] = ACTIONS(7389), + [anon_sym__Atomic] = ACTIONS(7389), + [anon_sym__Noreturn] = ACTIONS(7389), + [anon_sym_noreturn] = ACTIONS(7389), + [anon_sym__Nonnull] = ACTIONS(7389), + [anon_sym_mutable] = ACTIONS(7389), + [anon_sym_constinit] = ACTIONS(7389), + [anon_sym_consteval] = ACTIONS(7389), + [anon_sym_alignas] = ACTIONS(7389), + [anon_sym__Alignas] = ACTIONS(7389), + [anon_sym_QMARK] = ACTIONS(7389), + [anon_sym_STAR_EQ] = ACTIONS(7389), + [anon_sym_SLASH_EQ] = ACTIONS(7389), + [anon_sym_PERCENT_EQ] = ACTIONS(7389), + [anon_sym_PLUS_EQ] = ACTIONS(7389), + [anon_sym_DASH_EQ] = ACTIONS(7389), + [anon_sym_LT_LT_EQ] = ACTIONS(7389), + [anon_sym_GT_GT_EQ] = ACTIONS(7389), + [anon_sym_AMP_EQ] = ACTIONS(7389), + [anon_sym_CARET_EQ] = ACTIONS(7389), + [anon_sym_PIPE_EQ] = ACTIONS(7389), + [anon_sym_LT_EQ_GT] = ACTIONS(7389), + [anon_sym_or] = ACTIONS(7389), + [anon_sym_and] = ACTIONS(7389), + [anon_sym_bitor] = ACTIONS(7389), + [anon_sym_xor] = ACTIONS(7389), + [anon_sym_bitand] = ACTIONS(7389), + [anon_sym_not_eq] = ACTIONS(7389), + [anon_sym_DASH_DASH] = ACTIONS(7389), + [anon_sym_PLUS_PLUS] = ACTIONS(7389), + [anon_sym_DOT] = ACTIONS(7387), + [anon_sym_DOT_STAR] = ACTIONS(7389), + [anon_sym_DASH_GT] = ACTIONS(7387), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7389), + [anon_sym_override] = ACTIONS(7389), + [anon_sym_requires] = ACTIONS(7389), + [anon_sym_DASH_GT_STAR] = ACTIONS(7389), }, [STATE(2903)] = { - [sym_attribute_specifier] = STATE(2026), - [sym_attribute_declaration] = STATE(3129), - [aux_sym_type_definition_repeat1] = STATE(2026), - [aux_sym_attributed_declarator_repeat1] = STATE(3129), - [sym_identifier] = ACTIONS(8837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8839), - [anon_sym_COMMA] = ACTIONS(8839), - [anon_sym_RPAREN] = ACTIONS(8839), - [aux_sym_preproc_if_token2] = ACTIONS(8839), - [aux_sym_preproc_else_token1] = ACTIONS(8839), - [aux_sym_preproc_elif_token1] = ACTIONS(8837), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8839), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8839), - [anon_sym_LPAREN2] = ACTIONS(8839), - [anon_sym_DASH] = ACTIONS(8837), - [anon_sym_PLUS] = ACTIONS(8837), - [anon_sym_STAR] = ACTIONS(8837), - [anon_sym_SLASH] = ACTIONS(8837), - [anon_sym_PERCENT] = ACTIONS(8837), - [anon_sym_PIPE_PIPE] = ACTIONS(8839), - [anon_sym_AMP_AMP] = ACTIONS(8839), - [anon_sym_PIPE] = ACTIONS(8837), - [anon_sym_CARET] = ACTIONS(8837), - [anon_sym_AMP] = ACTIONS(8837), - [anon_sym_EQ_EQ] = ACTIONS(8839), - [anon_sym_BANG_EQ] = ACTIONS(8839), - [anon_sym_GT] = ACTIONS(8837), - [anon_sym_GT_EQ] = ACTIONS(8839), - [anon_sym_LT_EQ] = ACTIONS(8837), - [anon_sym_LT] = ACTIONS(8837), - [anon_sym_LT_LT] = ACTIONS(8837), - [anon_sym_GT_GT] = ACTIONS(8837), - [anon_sym_SEMI] = ACTIONS(8839), - [anon_sym___attribute__] = ACTIONS(6491), - [anon_sym___attribute] = ACTIONS(6491), - [anon_sym_COLON] = ACTIONS(8837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8839), - [anon_sym_RBRACE] = ACTIONS(8839), - [anon_sym_LBRACK] = ACTIONS(8837), - [anon_sym_EQ] = ACTIONS(8837), - [anon_sym_QMARK] = ACTIONS(8839), - [anon_sym_STAR_EQ] = ACTIONS(8839), - [anon_sym_SLASH_EQ] = ACTIONS(8839), - [anon_sym_PERCENT_EQ] = ACTIONS(8839), - [anon_sym_PLUS_EQ] = ACTIONS(8839), - [anon_sym_DASH_EQ] = ACTIONS(8839), - [anon_sym_LT_LT_EQ] = ACTIONS(8839), - [anon_sym_GT_GT_EQ] = ACTIONS(8839), - [anon_sym_AMP_EQ] = ACTIONS(8839), - [anon_sym_CARET_EQ] = ACTIONS(8839), - [anon_sym_PIPE_EQ] = ACTIONS(8839), - [anon_sym_and_eq] = ACTIONS(8837), - [anon_sym_or_eq] = ACTIONS(8837), - [anon_sym_xor_eq] = ACTIONS(8837), - [anon_sym_LT_EQ_GT] = ACTIONS(8839), - [anon_sym_or] = ACTIONS(8837), - [anon_sym_and] = ACTIONS(8837), - [anon_sym_bitor] = ACTIONS(8837), - [anon_sym_xor] = ACTIONS(8837), - [anon_sym_bitand] = ACTIONS(8837), - [anon_sym_not_eq] = ACTIONS(8837), - [anon_sym_DASH_DASH] = ACTIONS(8839), - [anon_sym_PLUS_PLUS] = ACTIONS(8839), - [anon_sym_DOT] = ACTIONS(8837), - [anon_sym_DOT_STAR] = ACTIONS(8839), - [anon_sym_DASH_GT] = ACTIONS(8839), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8837), - [anon_sym_override] = ACTIONS(8837), - [anon_sym_requires] = ACTIONS(8837), - [anon_sym_COLON_RBRACK] = ACTIONS(8839), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7584), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7584), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7584), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7584), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7584), + [anon_sym_GT_GT] = ACTIONS(7584), + [anon_sym___extension__] = ACTIONS(7586), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7586), + [anon_sym_volatile] = ACTIONS(7586), + [anon_sym_restrict] = ACTIONS(7586), + [anon_sym___restrict__] = ACTIONS(7586), + [anon_sym__Atomic] = ACTIONS(7586), + [anon_sym__Noreturn] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7586), + [anon_sym__Nonnull] = ACTIONS(7586), + [anon_sym_mutable] = ACTIONS(7586), + [anon_sym_constinit] = ACTIONS(7586), + [anon_sym_consteval] = ACTIONS(7586), + [anon_sym_alignas] = ACTIONS(7586), + [anon_sym__Alignas] = ACTIONS(7586), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_STAR_EQ] = ACTIONS(7586), + [anon_sym_SLASH_EQ] = ACTIONS(7586), + [anon_sym_PERCENT_EQ] = ACTIONS(7586), + [anon_sym_PLUS_EQ] = ACTIONS(7586), + [anon_sym_DASH_EQ] = ACTIONS(7586), + [anon_sym_LT_LT_EQ] = ACTIONS(7586), + [anon_sym_GT_GT_EQ] = ACTIONS(7584), + [anon_sym_AMP_EQ] = ACTIONS(7586), + [anon_sym_CARET_EQ] = ACTIONS(7586), + [anon_sym_PIPE_EQ] = ACTIONS(7586), + [anon_sym_and_eq] = ACTIONS(7586), + [anon_sym_or_eq] = ACTIONS(7586), + [anon_sym_xor_eq] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7584), + [anon_sym_and] = ACTIONS(7584), + [anon_sym_bitor] = ACTIONS(7586), + [anon_sym_xor] = ACTIONS(7584), + [anon_sym_bitand] = ACTIONS(7586), + [anon_sym_not_eq] = ACTIONS(7586), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7586), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7586), + [anon_sym_override] = ACTIONS(7586), + [anon_sym_GT2] = ACTIONS(7586), + [anon_sym_requires] = ACTIONS(7586), }, [STATE(2904)] = { - [sym_catch_clause] = STATE(2926), - [aux_sym_constructor_try_statement_repeat1] = STATE(2926), - [sym_identifier] = ACTIONS(3182), - [aux_sym_preproc_def_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token1] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), - [sym_preproc_directive] = ACTIONS(3182), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym___extension__] = ACTIONS(3182), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_virtual] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym___attribute__] = ACTIONS(3182), - [anon_sym___attribute] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [anon_sym___declspec] = ACTIONS(3182), - [anon_sym___based] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_signed] = ACTIONS(3182), - [anon_sym_unsigned] = ACTIONS(3182), - [anon_sym_long] = ACTIONS(3182), - [anon_sym_short] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_register] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym___inline] = ACTIONS(3182), - [anon_sym___inline__] = ACTIONS(3182), - [anon_sym___forceinline] = ACTIONS(3182), - [anon_sym_thread_local] = ACTIONS(3182), - [anon_sym___thread] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_constexpr] = ACTIONS(3182), - [anon_sym_volatile] = ACTIONS(3182), - [anon_sym_restrict] = ACTIONS(3182), - [anon_sym___restrict__] = ACTIONS(3182), - [anon_sym__Atomic] = ACTIONS(3182), - [anon_sym__Noreturn] = ACTIONS(3182), - [anon_sym_noreturn] = ACTIONS(3182), - [anon_sym__Nonnull] = ACTIONS(3182), - [anon_sym_mutable] = ACTIONS(3182), - [anon_sym_constinit] = ACTIONS(3182), - [anon_sym_consteval] = ACTIONS(3182), - [anon_sym_alignas] = ACTIONS(3182), - [anon_sym__Alignas] = ACTIONS(3182), - [sym_primitive_type] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3182), - [anon_sym_union] = ACTIONS(3182), - [anon_sym_typename] = ACTIONS(3182), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3182), - [anon_sym_decltype] = ACTIONS(3182), - [anon_sym_explicit] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(3182), - [anon_sym_operator] = ACTIONS(3182), - [anon_sym_friend] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_static_assert] = ACTIONS(3182), - [anon_sym_catch] = ACTIONS(8841), - [anon_sym_LBRACK_COLON] = ACTIONS(3184), + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym__function_attributes_end] = STATE(4273), + [sym__function_postfix] = STATE(4848), + [sym_trailing_return_type] = STATE(4352), + [sym_requires_clause] = STATE(4848), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8220), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6663), + [anon_sym_override] = ACTIONS(6663), + [anon_sym_requires] = ACTIONS(6665), + [anon_sym_DASH_GT_STAR] = ACTIONS(7970), }, [STATE(2905)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), - [anon_sym_COMMA] = ACTIONS(7737), - [anon_sym_LPAREN2] = ACTIONS(7737), - [anon_sym_DASH] = ACTIONS(7735), - [anon_sym_PLUS] = ACTIONS(7735), - [anon_sym_STAR] = ACTIONS(7735), - [anon_sym_SLASH] = ACTIONS(7735), - [anon_sym_PERCENT] = ACTIONS(7735), - [anon_sym_PIPE_PIPE] = ACTIONS(7737), - [anon_sym_AMP_AMP] = ACTIONS(7737), - [anon_sym_PIPE] = ACTIONS(7735), - [anon_sym_CARET] = ACTIONS(7735), - [anon_sym_AMP] = ACTIONS(7735), - [anon_sym_EQ_EQ] = ACTIONS(7737), - [anon_sym_BANG_EQ] = ACTIONS(7737), - [anon_sym_GT] = ACTIONS(7735), - [anon_sym_GT_EQ] = ACTIONS(7737), - [anon_sym_LT_EQ] = ACTIONS(7735), - [anon_sym_LT] = ACTIONS(7735), - [anon_sym_LT_LT] = ACTIONS(7735), - [anon_sym_GT_GT] = ACTIONS(7735), - [anon_sym___extension__] = ACTIONS(7737), - [anon_sym___attribute__] = ACTIONS(7737), - [anon_sym___attribute] = ACTIONS(7735), - [anon_sym_LBRACE] = ACTIONS(7737), - [anon_sym_LBRACK] = ACTIONS(7737), - [anon_sym_RBRACK] = ACTIONS(7737), - [anon_sym_EQ] = ACTIONS(7735), - [anon_sym_const] = ACTIONS(7735), - [anon_sym_constexpr] = ACTIONS(7737), - [anon_sym_volatile] = ACTIONS(7737), - [anon_sym_restrict] = ACTIONS(7737), - [anon_sym___restrict__] = ACTIONS(7737), - [anon_sym__Atomic] = ACTIONS(7737), - [anon_sym__Noreturn] = ACTIONS(7737), - [anon_sym_noreturn] = ACTIONS(7737), - [anon_sym__Nonnull] = ACTIONS(7737), - [anon_sym_mutable] = ACTIONS(7737), - [anon_sym_constinit] = ACTIONS(7737), - [anon_sym_consteval] = ACTIONS(7737), - [anon_sym_alignas] = ACTIONS(7737), - [anon_sym__Alignas] = ACTIONS(7737), - [anon_sym_QMARK] = ACTIONS(7737), - [anon_sym_STAR_EQ] = ACTIONS(7737), - [anon_sym_SLASH_EQ] = ACTIONS(7737), - [anon_sym_PERCENT_EQ] = ACTIONS(7737), - [anon_sym_PLUS_EQ] = ACTIONS(7737), - [anon_sym_DASH_EQ] = ACTIONS(7737), - [anon_sym_LT_LT_EQ] = ACTIONS(7737), - [anon_sym_GT_GT_EQ] = ACTIONS(7737), - [anon_sym_AMP_EQ] = ACTIONS(7737), - [anon_sym_CARET_EQ] = ACTIONS(7737), - [anon_sym_PIPE_EQ] = ACTIONS(7737), - [anon_sym_and_eq] = ACTIONS(7737), - [anon_sym_or_eq] = ACTIONS(7737), - [anon_sym_xor_eq] = ACTIONS(7737), - [anon_sym_LT_EQ_GT] = ACTIONS(7737), - [anon_sym_or] = ACTIONS(7735), - [anon_sym_and] = ACTIONS(7735), - [anon_sym_bitor] = ACTIONS(7737), - [anon_sym_xor] = ACTIONS(7735), - [anon_sym_bitand] = ACTIONS(7737), - [anon_sym_not_eq] = ACTIONS(7737), - [anon_sym_DASH_DASH] = ACTIONS(7737), - [anon_sym_PLUS_PLUS] = ACTIONS(7737), - [anon_sym_DOT] = ACTIONS(7735), - [anon_sym_DOT_STAR] = ACTIONS(7737), - [anon_sym_DASH_GT] = ACTIONS(7737), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7737), - [anon_sym_override] = ACTIONS(7737), - [anon_sym_requires] = ACTIONS(7737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7698), + [anon_sym_COMMA] = ACTIONS(7698), + [anon_sym_LPAREN2] = ACTIONS(7698), + [anon_sym_DASH] = ACTIONS(7696), + [anon_sym_PLUS] = ACTIONS(7696), + [anon_sym_STAR] = ACTIONS(7696), + [anon_sym_SLASH] = ACTIONS(7696), + [anon_sym_PERCENT] = ACTIONS(7696), + [anon_sym_PIPE_PIPE] = ACTIONS(7698), + [anon_sym_AMP_AMP] = ACTIONS(7698), + [anon_sym_PIPE] = ACTIONS(7696), + [anon_sym_CARET] = ACTIONS(7696), + [anon_sym_AMP] = ACTIONS(7696), + [anon_sym_EQ_EQ] = ACTIONS(7698), + [anon_sym_BANG_EQ] = ACTIONS(7698), + [anon_sym_GT] = ACTIONS(7696), + [anon_sym_GT_EQ] = ACTIONS(7698), + [anon_sym_LT_EQ] = ACTIONS(7696), + [anon_sym_LT] = ACTIONS(7696), + [anon_sym_LT_LT] = ACTIONS(7696), + [anon_sym_GT_GT] = ACTIONS(7696), + [anon_sym___extension__] = ACTIONS(7698), + [anon_sym___attribute__] = ACTIONS(7698), + [anon_sym___attribute] = ACTIONS(7696), + [anon_sym_LBRACE] = ACTIONS(7698), + [anon_sym_LBRACK] = ACTIONS(7698), + [anon_sym_RBRACK] = ACTIONS(7698), + [anon_sym_EQ] = ACTIONS(7696), + [anon_sym_const] = ACTIONS(7696), + [anon_sym_constexpr] = ACTIONS(7698), + [anon_sym_volatile] = ACTIONS(7698), + [anon_sym_restrict] = ACTIONS(7698), + [anon_sym___restrict__] = ACTIONS(7698), + [anon_sym__Atomic] = ACTIONS(7698), + [anon_sym__Noreturn] = ACTIONS(7698), + [anon_sym_noreturn] = ACTIONS(7698), + [anon_sym__Nonnull] = ACTIONS(7698), + [anon_sym_mutable] = ACTIONS(7698), + [anon_sym_constinit] = ACTIONS(7698), + [anon_sym_consteval] = ACTIONS(7698), + [anon_sym_alignas] = ACTIONS(7698), + [anon_sym__Alignas] = ACTIONS(7698), + [anon_sym_QMARK] = ACTIONS(7698), + [anon_sym_STAR_EQ] = ACTIONS(7698), + [anon_sym_SLASH_EQ] = ACTIONS(7698), + [anon_sym_PERCENT_EQ] = ACTIONS(7698), + [anon_sym_PLUS_EQ] = ACTIONS(7698), + [anon_sym_DASH_EQ] = ACTIONS(7698), + [anon_sym_LT_LT_EQ] = ACTIONS(7698), + [anon_sym_GT_GT_EQ] = ACTIONS(7698), + [anon_sym_AMP_EQ] = ACTIONS(7698), + [anon_sym_CARET_EQ] = ACTIONS(7698), + [anon_sym_PIPE_EQ] = ACTIONS(7698), + [anon_sym_and_eq] = ACTIONS(7698), + [anon_sym_or_eq] = ACTIONS(7698), + [anon_sym_xor_eq] = ACTIONS(7698), + [anon_sym_LT_EQ_GT] = ACTIONS(7698), + [anon_sym_or] = ACTIONS(7696), + [anon_sym_and] = ACTIONS(7696), + [anon_sym_bitor] = ACTIONS(7698), + [anon_sym_xor] = ACTIONS(7696), + [anon_sym_bitand] = ACTIONS(7698), + [anon_sym_not_eq] = ACTIONS(7698), + [anon_sym_DASH_DASH] = ACTIONS(7698), + [anon_sym_PLUS_PLUS] = ACTIONS(7698), + [anon_sym_DOT] = ACTIONS(7696), + [anon_sym_DOT_STAR] = ACTIONS(7698), + [anon_sym_DASH_GT] = ACTIONS(7698), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7698), + [anon_sym_override] = ACTIONS(7698), + [anon_sym_requires] = ACTIONS(7698), }, [STATE(2906)] = { - [sym_catch_clause] = STATE(2912), - [aux_sym_constructor_try_statement_repeat1] = STATE(2912), - [sym_identifier] = ACTIONS(3165), - [aux_sym_preproc_def_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token2] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), - [sym_preproc_directive] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym___extension__] = ACTIONS(3165), - [anon_sym_typedef] = ACTIONS(3165), - [anon_sym_virtual] = ACTIONS(3165), - [anon_sym_extern] = ACTIONS(3165), - [anon_sym___attribute__] = ACTIONS(3165), - [anon_sym___attribute] = ACTIONS(3165), - [anon_sym_using] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), - [anon_sym___declspec] = ACTIONS(3165), - [anon_sym___based] = ACTIONS(3165), - [anon_sym_signed] = ACTIONS(3165), - [anon_sym_unsigned] = ACTIONS(3165), - [anon_sym_long] = ACTIONS(3165), - [anon_sym_short] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_static] = ACTIONS(3165), - [anon_sym_register] = ACTIONS(3165), - [anon_sym_inline] = ACTIONS(3165), - [anon_sym___inline] = ACTIONS(3165), - [anon_sym___inline__] = ACTIONS(3165), - [anon_sym___forceinline] = ACTIONS(3165), - [anon_sym_thread_local] = ACTIONS(3165), - [anon_sym___thread] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_constexpr] = ACTIONS(3165), - [anon_sym_volatile] = ACTIONS(3165), - [anon_sym_restrict] = ACTIONS(3165), - [anon_sym___restrict__] = ACTIONS(3165), - [anon_sym__Atomic] = ACTIONS(3165), - [anon_sym__Noreturn] = ACTIONS(3165), - [anon_sym_noreturn] = ACTIONS(3165), - [anon_sym__Nonnull] = ACTIONS(3165), - [anon_sym_mutable] = ACTIONS(3165), - [anon_sym_constinit] = ACTIONS(3165), - [anon_sym_consteval] = ACTIONS(3165), - [anon_sym_alignas] = ACTIONS(3165), - [anon_sym__Alignas] = ACTIONS(3165), - [sym_primitive_type] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_typename] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3165), - [anon_sym_decltype] = ACTIONS(3165), - [anon_sym_explicit] = ACTIONS(3165), - [anon_sym_private] = ACTIONS(3165), - [anon_sym_template] = ACTIONS(3165), - [anon_sym_operator] = ACTIONS(3165), - [anon_sym_friend] = ACTIONS(3165), - [anon_sym_public] = ACTIONS(3165), - [anon_sym_protected] = ACTIONS(3165), - [anon_sym_static_assert] = ACTIONS(3165), - [anon_sym_catch] = ACTIONS(8843), - [anon_sym_LBRACK_COLON] = ACTIONS(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_RPAREN] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7133), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7133), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7133), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7133), + [anon_sym_GT_GT] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7135), + [anon_sym___attribute__] = ACTIONS(7135), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_COLON] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_EQ] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7135), + [anon_sym_volatile] = ACTIONS(7135), + [anon_sym_restrict] = ACTIONS(7135), + [anon_sym___restrict__] = ACTIONS(7135), + [anon_sym__Atomic] = ACTIONS(7135), + [anon_sym__Noreturn] = ACTIONS(7135), + [anon_sym_noreturn] = ACTIONS(7135), + [anon_sym__Nonnull] = ACTIONS(7135), + [anon_sym_mutable] = ACTIONS(7135), + [anon_sym_constinit] = ACTIONS(7135), + [anon_sym_consteval] = ACTIONS(7135), + [anon_sym_alignas] = ACTIONS(7135), + [anon_sym__Alignas] = ACTIONS(7135), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_STAR_EQ] = ACTIONS(7135), + [anon_sym_SLASH_EQ] = ACTIONS(7135), + [anon_sym_PERCENT_EQ] = ACTIONS(7135), + [anon_sym_PLUS_EQ] = ACTIONS(7135), + [anon_sym_DASH_EQ] = ACTIONS(7135), + [anon_sym_LT_LT_EQ] = ACTIONS(7135), + [anon_sym_GT_GT_EQ] = ACTIONS(7135), + [anon_sym_AMP_EQ] = ACTIONS(7135), + [anon_sym_CARET_EQ] = ACTIONS(7135), + [anon_sym_PIPE_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7135), + [anon_sym_and] = ACTIONS(7135), + [anon_sym_bitor] = ACTIONS(7135), + [anon_sym_xor] = ACTIONS(7135), + [anon_sym_bitand] = ACTIONS(7135), + [anon_sym_not_eq] = ACTIONS(7135), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7133), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7135), + [anon_sym_override] = ACTIONS(7135), + [anon_sym_requires] = ACTIONS(7135), + [anon_sym_DASH_GT_STAR] = ACTIONS(7135), }, [STATE(2907)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), - [anon_sym_COMMA] = ACTIONS(7749), - [anon_sym_LPAREN2] = ACTIONS(7749), - [anon_sym_DASH] = ACTIONS(7747), - [anon_sym_PLUS] = ACTIONS(7747), - [anon_sym_STAR] = ACTIONS(7747), - [anon_sym_SLASH] = ACTIONS(7747), - [anon_sym_PERCENT] = ACTIONS(7747), - [anon_sym_PIPE_PIPE] = ACTIONS(7749), - [anon_sym_AMP_AMP] = ACTIONS(7749), - [anon_sym_PIPE] = ACTIONS(7747), - [anon_sym_CARET] = ACTIONS(7747), - [anon_sym_AMP] = ACTIONS(7747), - [anon_sym_EQ_EQ] = ACTIONS(7749), - [anon_sym_BANG_EQ] = ACTIONS(7749), - [anon_sym_GT] = ACTIONS(7747), - [anon_sym_GT_EQ] = ACTIONS(7749), - [anon_sym_LT_EQ] = ACTIONS(7747), - [anon_sym_LT] = ACTIONS(7747), - [anon_sym_LT_LT] = ACTIONS(7747), - [anon_sym_GT_GT] = ACTIONS(7747), - [anon_sym___extension__] = ACTIONS(7749), - [anon_sym___attribute__] = ACTIONS(7749), - [anon_sym___attribute] = ACTIONS(7747), - [anon_sym_LBRACE] = ACTIONS(7749), - [anon_sym_LBRACK] = ACTIONS(7749), - [anon_sym_RBRACK] = ACTIONS(7749), - [anon_sym_EQ] = ACTIONS(7747), - [anon_sym_const] = ACTIONS(7747), - [anon_sym_constexpr] = ACTIONS(7749), - [anon_sym_volatile] = ACTIONS(7749), - [anon_sym_restrict] = ACTIONS(7749), - [anon_sym___restrict__] = ACTIONS(7749), - [anon_sym__Atomic] = ACTIONS(7749), - [anon_sym__Noreturn] = ACTIONS(7749), - [anon_sym_noreturn] = ACTIONS(7749), - [anon_sym__Nonnull] = ACTIONS(7749), - [anon_sym_mutable] = ACTIONS(7749), - [anon_sym_constinit] = ACTIONS(7749), - [anon_sym_consteval] = ACTIONS(7749), - [anon_sym_alignas] = ACTIONS(7749), - [anon_sym__Alignas] = ACTIONS(7749), - [anon_sym_QMARK] = ACTIONS(7749), - [anon_sym_STAR_EQ] = ACTIONS(7749), - [anon_sym_SLASH_EQ] = ACTIONS(7749), - [anon_sym_PERCENT_EQ] = ACTIONS(7749), - [anon_sym_PLUS_EQ] = ACTIONS(7749), - [anon_sym_DASH_EQ] = ACTIONS(7749), - [anon_sym_LT_LT_EQ] = ACTIONS(7749), - [anon_sym_GT_GT_EQ] = ACTIONS(7749), - [anon_sym_AMP_EQ] = ACTIONS(7749), - [anon_sym_CARET_EQ] = ACTIONS(7749), - [anon_sym_PIPE_EQ] = ACTIONS(7749), - [anon_sym_and_eq] = ACTIONS(7749), - [anon_sym_or_eq] = ACTIONS(7749), - [anon_sym_xor_eq] = ACTIONS(7749), - [anon_sym_LT_EQ_GT] = ACTIONS(7749), - [anon_sym_or] = ACTIONS(7747), - [anon_sym_and] = ACTIONS(7747), - [anon_sym_bitor] = ACTIONS(7749), - [anon_sym_xor] = ACTIONS(7747), - [anon_sym_bitand] = ACTIONS(7749), - [anon_sym_not_eq] = ACTIONS(7749), - [anon_sym_DASH_DASH] = ACTIONS(7749), - [anon_sym_PLUS_PLUS] = ACTIONS(7749), - [anon_sym_DOT] = ACTIONS(7747), - [anon_sym_DOT_STAR] = ACTIONS(7749), - [anon_sym_DASH_GT] = ACTIONS(7749), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7749), - [anon_sym_override] = ACTIONS(7749), - [anon_sym_requires] = ACTIONS(7749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7698), + [anon_sym_COMMA] = ACTIONS(7698), + [anon_sym_LPAREN2] = ACTIONS(7698), + [anon_sym_DASH] = ACTIONS(7696), + [anon_sym_PLUS] = ACTIONS(7696), + [anon_sym_STAR] = ACTIONS(7696), + [anon_sym_SLASH] = ACTIONS(7696), + [anon_sym_PERCENT] = ACTIONS(7696), + [anon_sym_PIPE_PIPE] = ACTIONS(7698), + [anon_sym_AMP_AMP] = ACTIONS(7698), + [anon_sym_PIPE] = ACTIONS(7696), + [anon_sym_CARET] = ACTIONS(7696), + [anon_sym_AMP] = ACTIONS(7696), + [anon_sym_EQ_EQ] = ACTIONS(7698), + [anon_sym_BANG_EQ] = ACTIONS(7698), + [anon_sym_GT] = ACTIONS(7696), + [anon_sym_GT_EQ] = ACTIONS(7696), + [anon_sym_LT_EQ] = ACTIONS(7696), + [anon_sym_LT] = ACTIONS(7696), + [anon_sym_LT_LT] = ACTIONS(7696), + [anon_sym_GT_GT] = ACTIONS(7696), + [anon_sym___extension__] = ACTIONS(7698), + [anon_sym___attribute__] = ACTIONS(7698), + [anon_sym___attribute] = ACTIONS(7696), + [anon_sym_LBRACE] = ACTIONS(7698), + [anon_sym_LBRACK] = ACTIONS(7698), + [anon_sym_EQ] = ACTIONS(7696), + [anon_sym_const] = ACTIONS(7696), + [anon_sym_constexpr] = ACTIONS(7698), + [anon_sym_volatile] = ACTIONS(7698), + [anon_sym_restrict] = ACTIONS(7698), + [anon_sym___restrict__] = ACTIONS(7698), + [anon_sym__Atomic] = ACTIONS(7698), + [anon_sym__Noreturn] = ACTIONS(7698), + [anon_sym_noreturn] = ACTIONS(7698), + [anon_sym__Nonnull] = ACTIONS(7698), + [anon_sym_mutable] = ACTIONS(7698), + [anon_sym_constinit] = ACTIONS(7698), + [anon_sym_consteval] = ACTIONS(7698), + [anon_sym_alignas] = ACTIONS(7698), + [anon_sym__Alignas] = ACTIONS(7698), + [anon_sym_QMARK] = ACTIONS(7698), + [anon_sym_STAR_EQ] = ACTIONS(7698), + [anon_sym_SLASH_EQ] = ACTIONS(7698), + [anon_sym_PERCENT_EQ] = ACTIONS(7698), + [anon_sym_PLUS_EQ] = ACTIONS(7698), + [anon_sym_DASH_EQ] = ACTIONS(7698), + [anon_sym_LT_LT_EQ] = ACTIONS(7698), + [anon_sym_GT_GT_EQ] = ACTIONS(7696), + [anon_sym_AMP_EQ] = ACTIONS(7698), + [anon_sym_CARET_EQ] = ACTIONS(7698), + [anon_sym_PIPE_EQ] = ACTIONS(7698), + [anon_sym_and_eq] = ACTIONS(7698), + [anon_sym_or_eq] = ACTIONS(7698), + [anon_sym_xor_eq] = ACTIONS(7698), + [anon_sym_LT_EQ_GT] = ACTIONS(7698), + [anon_sym_or] = ACTIONS(7696), + [anon_sym_and] = ACTIONS(7696), + [anon_sym_bitor] = ACTIONS(7698), + [anon_sym_xor] = ACTIONS(7696), + [anon_sym_bitand] = ACTIONS(7698), + [anon_sym_not_eq] = ACTIONS(7698), + [anon_sym_DASH_DASH] = ACTIONS(7698), + [anon_sym_PLUS_PLUS] = ACTIONS(7698), + [anon_sym_DOT] = ACTIONS(7696), + [anon_sym_DOT_STAR] = ACTIONS(7698), + [anon_sym_DASH_GT] = ACTIONS(7698), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7698), + [anon_sym_override] = ACTIONS(7698), + [anon_sym_GT2] = ACTIONS(7698), + [anon_sym_requires] = ACTIONS(7698), }, [STATE(2908)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym__function_attributes_end] = STATE(4299), - [sym__function_postfix] = STATE(4890), - [sym_trailing_return_type] = STATE(4345), - [sym_requires_clause] = STATE(4890), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8271), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8301), - [anon_sym_override] = ACTIONS(8301), - [anon_sym_requires] = ACTIONS(8304), - [anon_sym_DASH_GT_STAR] = ACTIONS(7966), + [sym_catch_clause] = STATE(2917), + [aux_sym_constructor_try_statement_repeat1] = STATE(2917), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym___attribute] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym__Nonnull] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym__Alignas] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_friend] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_catch] = ACTIONS(8835), + [anon_sym_LBRACK_COLON] = ACTIONS(3178), }, [STATE(2909)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym__function_attributes_end] = STATE(4312), - [sym__function_postfix] = STATE(4813), - [sym_trailing_return_type] = STATE(4365), - [sym_requires_clause] = STATE(4813), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_RPAREN] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8422), - [anon_sym_or_eq] = ACTIONS(8422), - [anon_sym_xor_eq] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8845), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6669), - [anon_sym_override] = ACTIONS(6669), - [anon_sym_requires] = ACTIONS(6671), - [anon_sym_DASH_GT_STAR] = ACTIONS(8422), + [sym_catch_clause] = STATE(2909), + [aux_sym_constructor_try_statement_repeat1] = STATE(2909), + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token2] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym___attribute] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym__Nonnull] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym__Alignas] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_private] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_friend] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_protected] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_catch] = ACTIONS(8837), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), }, [STATE(2910)] = { - [sym_catch_clause] = STATE(2912), - [aux_sym_constructor_try_statement_repeat1] = STATE(2912), - [sym_identifier] = ACTIONS(3182), - [aux_sym_preproc_def_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token1] = ACTIONS(3182), - [aux_sym_preproc_if_token2] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3182), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3182), - [sym_preproc_directive] = ACTIONS(3182), - [anon_sym_LPAREN2] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_STAR] = ACTIONS(3184), - [anon_sym_AMP_AMP] = ACTIONS(3184), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym___extension__] = ACTIONS(3182), - [anon_sym_typedef] = ACTIONS(3182), - [anon_sym_virtual] = ACTIONS(3182), - [anon_sym_extern] = ACTIONS(3182), - [anon_sym___attribute__] = ACTIONS(3182), - [anon_sym___attribute] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3184), - [anon_sym___declspec] = ACTIONS(3182), - [anon_sym___based] = ACTIONS(3182), - [anon_sym_signed] = ACTIONS(3182), - [anon_sym_unsigned] = ACTIONS(3182), - [anon_sym_long] = ACTIONS(3182), - [anon_sym_short] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_register] = ACTIONS(3182), - [anon_sym_inline] = ACTIONS(3182), - [anon_sym___inline] = ACTIONS(3182), - [anon_sym___inline__] = ACTIONS(3182), - [anon_sym___forceinline] = ACTIONS(3182), - [anon_sym_thread_local] = ACTIONS(3182), - [anon_sym___thread] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_constexpr] = ACTIONS(3182), - [anon_sym_volatile] = ACTIONS(3182), - [anon_sym_restrict] = ACTIONS(3182), - [anon_sym___restrict__] = ACTIONS(3182), - [anon_sym__Atomic] = ACTIONS(3182), - [anon_sym__Noreturn] = ACTIONS(3182), - [anon_sym_noreturn] = ACTIONS(3182), - [anon_sym__Nonnull] = ACTIONS(3182), - [anon_sym_mutable] = ACTIONS(3182), - [anon_sym_constinit] = ACTIONS(3182), - [anon_sym_consteval] = ACTIONS(3182), - [anon_sym_alignas] = ACTIONS(3182), - [anon_sym__Alignas] = ACTIONS(3182), - [sym_primitive_type] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_struct] = ACTIONS(3182), - [anon_sym_union] = ACTIONS(3182), - [anon_sym_typename] = ACTIONS(3182), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3182), - [anon_sym_decltype] = ACTIONS(3182), - [anon_sym_explicit] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_template] = ACTIONS(3182), - [anon_sym_operator] = ACTIONS(3182), - [anon_sym_friend] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_static_assert] = ACTIONS(3182), - [anon_sym_catch] = ACTIONS(8843), - [anon_sym_LBRACK_COLON] = ACTIONS(3184), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7644), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_PERCENT] = ACTIONS(7642), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_LT_LT] = ACTIONS(7642), + [anon_sym_GT_GT] = ACTIONS(7642), + [anon_sym___extension__] = ACTIONS(7644), + [anon_sym___attribute__] = ACTIONS(7644), + [anon_sym___attribute] = ACTIONS(7642), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_RBRACK] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_const] = ACTIONS(7642), + [anon_sym_constexpr] = ACTIONS(7644), + [anon_sym_volatile] = ACTIONS(7644), + [anon_sym_restrict] = ACTIONS(7644), + [anon_sym___restrict__] = ACTIONS(7644), + [anon_sym__Atomic] = ACTIONS(7644), + [anon_sym__Noreturn] = ACTIONS(7644), + [anon_sym_noreturn] = ACTIONS(7644), + [anon_sym__Nonnull] = ACTIONS(7644), + [anon_sym_mutable] = ACTIONS(7644), + [anon_sym_constinit] = ACTIONS(7644), + [anon_sym_consteval] = ACTIONS(7644), + [anon_sym_alignas] = ACTIONS(7644), + [anon_sym__Alignas] = ACTIONS(7644), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_STAR_EQ] = ACTIONS(7644), + [anon_sym_SLASH_EQ] = ACTIONS(7644), + [anon_sym_PERCENT_EQ] = ACTIONS(7644), + [anon_sym_PLUS_EQ] = ACTIONS(7644), + [anon_sym_DASH_EQ] = ACTIONS(7644), + [anon_sym_LT_LT_EQ] = ACTIONS(7644), + [anon_sym_GT_GT_EQ] = ACTIONS(7644), + [anon_sym_AMP_EQ] = ACTIONS(7644), + [anon_sym_CARET_EQ] = ACTIONS(7644), + [anon_sym_PIPE_EQ] = ACTIONS(7644), + [anon_sym_and_eq] = ACTIONS(7644), + [anon_sym_or_eq] = ACTIONS(7644), + [anon_sym_xor_eq] = ACTIONS(7644), + [anon_sym_LT_EQ_GT] = ACTIONS(7644), + [anon_sym_or] = ACTIONS(7642), + [anon_sym_and] = ACTIONS(7642), + [anon_sym_bitor] = ACTIONS(7644), + [anon_sym_xor] = ACTIONS(7642), + [anon_sym_bitand] = ACTIONS(7644), + [anon_sym_not_eq] = ACTIONS(7644), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7642), + [anon_sym_DOT_STAR] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7644), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7644), + [anon_sym_override] = ACTIONS(7644), + [anon_sym_requires] = ACTIONS(7644), }, [STATE(2911)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), - [anon_sym_COMMA] = ACTIONS(7649), - [anon_sym_LPAREN2] = ACTIONS(7649), - [anon_sym_DASH] = ACTIONS(7647), - [anon_sym_PLUS] = ACTIONS(7647), - [anon_sym_STAR] = ACTIONS(7647), - [anon_sym_SLASH] = ACTIONS(7647), - [anon_sym_PERCENT] = ACTIONS(7647), - [anon_sym_PIPE_PIPE] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7649), - [anon_sym_PIPE] = ACTIONS(7647), - [anon_sym_CARET] = ACTIONS(7647), - [anon_sym_AMP] = ACTIONS(7647), - [anon_sym_EQ_EQ] = ACTIONS(7649), - [anon_sym_BANG_EQ] = ACTIONS(7649), - [anon_sym_GT] = ACTIONS(7647), - [anon_sym_GT_EQ] = ACTIONS(7649), - [anon_sym_LT_EQ] = ACTIONS(7647), - [anon_sym_LT] = ACTIONS(7647), - [anon_sym_LT_LT] = ACTIONS(7647), - [anon_sym_GT_GT] = ACTIONS(7647), - [anon_sym___extension__] = ACTIONS(7649), - [anon_sym___attribute__] = ACTIONS(7649), - [anon_sym___attribute] = ACTIONS(7647), - [anon_sym_LBRACE] = ACTIONS(7649), - [anon_sym_LBRACK] = ACTIONS(7649), - [anon_sym_RBRACK] = ACTIONS(7649), - [anon_sym_EQ] = ACTIONS(7647), - [anon_sym_const] = ACTIONS(7647), - [anon_sym_constexpr] = ACTIONS(7649), - [anon_sym_volatile] = ACTIONS(7649), - [anon_sym_restrict] = ACTIONS(7649), - [anon_sym___restrict__] = ACTIONS(7649), - [anon_sym__Atomic] = ACTIONS(7649), - [anon_sym__Noreturn] = ACTIONS(7649), - [anon_sym_noreturn] = ACTIONS(7649), - [anon_sym__Nonnull] = ACTIONS(7649), - [anon_sym_mutable] = ACTIONS(7649), - [anon_sym_constinit] = ACTIONS(7649), - [anon_sym_consteval] = ACTIONS(7649), - [anon_sym_alignas] = ACTIONS(7649), - [anon_sym__Alignas] = ACTIONS(7649), - [anon_sym_QMARK] = ACTIONS(7649), - [anon_sym_STAR_EQ] = ACTIONS(7649), - [anon_sym_SLASH_EQ] = ACTIONS(7649), - [anon_sym_PERCENT_EQ] = ACTIONS(7649), - [anon_sym_PLUS_EQ] = ACTIONS(7649), - [anon_sym_DASH_EQ] = ACTIONS(7649), - [anon_sym_LT_LT_EQ] = ACTIONS(7649), - [anon_sym_GT_GT_EQ] = ACTIONS(7649), - [anon_sym_AMP_EQ] = ACTIONS(7649), - [anon_sym_CARET_EQ] = ACTIONS(7649), - [anon_sym_PIPE_EQ] = ACTIONS(7649), - [anon_sym_and_eq] = ACTIONS(7649), - [anon_sym_or_eq] = ACTIONS(7649), - [anon_sym_xor_eq] = ACTIONS(7649), - [anon_sym_LT_EQ_GT] = ACTIONS(7649), - [anon_sym_or] = ACTIONS(7647), - [anon_sym_and] = ACTIONS(7647), - [anon_sym_bitor] = ACTIONS(7649), - [anon_sym_xor] = ACTIONS(7647), - [anon_sym_bitand] = ACTIONS(7649), - [anon_sym_not_eq] = ACTIONS(7649), - [anon_sym_DASH_DASH] = ACTIONS(7649), - [anon_sym_PLUS_PLUS] = ACTIONS(7649), - [anon_sym_DOT] = ACTIONS(7647), - [anon_sym_DOT_STAR] = ACTIONS(7649), - [anon_sym_DASH_GT] = ACTIONS(7649), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7649), - [anon_sym_override] = ACTIONS(7649), - [anon_sym_requires] = ACTIONS(7649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7584), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7584), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7584), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7584), + [anon_sym_GT_GT] = ACTIONS(7584), + [anon_sym___extension__] = ACTIONS(7586), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_RBRACK] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7586), + [anon_sym_volatile] = ACTIONS(7586), + [anon_sym_restrict] = ACTIONS(7586), + [anon_sym___restrict__] = ACTIONS(7586), + [anon_sym__Atomic] = ACTIONS(7586), + [anon_sym__Noreturn] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7586), + [anon_sym__Nonnull] = ACTIONS(7586), + [anon_sym_mutable] = ACTIONS(7586), + [anon_sym_constinit] = ACTIONS(7586), + [anon_sym_consteval] = ACTIONS(7586), + [anon_sym_alignas] = ACTIONS(7586), + [anon_sym__Alignas] = ACTIONS(7586), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_STAR_EQ] = ACTIONS(7586), + [anon_sym_SLASH_EQ] = ACTIONS(7586), + [anon_sym_PERCENT_EQ] = ACTIONS(7586), + [anon_sym_PLUS_EQ] = ACTIONS(7586), + [anon_sym_DASH_EQ] = ACTIONS(7586), + [anon_sym_LT_LT_EQ] = ACTIONS(7586), + [anon_sym_GT_GT_EQ] = ACTIONS(7586), + [anon_sym_AMP_EQ] = ACTIONS(7586), + [anon_sym_CARET_EQ] = ACTIONS(7586), + [anon_sym_PIPE_EQ] = ACTIONS(7586), + [anon_sym_and_eq] = ACTIONS(7586), + [anon_sym_or_eq] = ACTIONS(7586), + [anon_sym_xor_eq] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7584), + [anon_sym_and] = ACTIONS(7584), + [anon_sym_bitor] = ACTIONS(7586), + [anon_sym_xor] = ACTIONS(7584), + [anon_sym_bitand] = ACTIONS(7586), + [anon_sym_not_eq] = ACTIONS(7586), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7586), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7586), + [anon_sym_override] = ACTIONS(7586), + [anon_sym_requires] = ACTIONS(7586), }, [STATE(2912)] = { - [sym_catch_clause] = STATE(2912), - [aux_sym_constructor_try_statement_repeat1] = STATE(2912), - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token2] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym___attribute] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym__Nonnull] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym__Alignas] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_friend] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_catch] = ACTIONS(8848), - [anon_sym_LBRACK_COLON] = ACTIONS(3173), + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym_SEMI] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7329), + [anon_sym___based] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_RBRACE] = ACTIONS(7329), + [anon_sym_signed] = ACTIONS(7327), + [anon_sym_unsigned] = ACTIONS(7327), + [anon_sym_long] = ACTIONS(7327), + [anon_sym_short] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [sym_primitive_type] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), + [anon_sym_COLON_RBRACK] = ACTIONS(7329), }, [STATE(2913)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7717), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7717), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7717), - [anon_sym_GT_GT] = ACTIONS(7717), - [anon_sym___extension__] = ACTIONS(7719), - [anon_sym___attribute__] = ACTIONS(7719), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_RBRACK] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(7717), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7719), - [anon_sym_volatile] = ACTIONS(7719), - [anon_sym_restrict] = ACTIONS(7719), - [anon_sym___restrict__] = ACTIONS(7719), - [anon_sym__Atomic] = ACTIONS(7719), - [anon_sym__Noreturn] = ACTIONS(7719), - [anon_sym_noreturn] = ACTIONS(7719), - [anon_sym__Nonnull] = ACTIONS(7719), - [anon_sym_mutable] = ACTIONS(7719), - [anon_sym_constinit] = ACTIONS(7719), - [anon_sym_consteval] = ACTIONS(7719), - [anon_sym_alignas] = ACTIONS(7719), - [anon_sym__Alignas] = ACTIONS(7719), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_STAR_EQ] = ACTIONS(7719), - [anon_sym_SLASH_EQ] = ACTIONS(7719), - [anon_sym_PERCENT_EQ] = ACTIONS(7719), - [anon_sym_PLUS_EQ] = ACTIONS(7719), - [anon_sym_DASH_EQ] = ACTIONS(7719), - [anon_sym_LT_LT_EQ] = ACTIONS(7719), - [anon_sym_GT_GT_EQ] = ACTIONS(7719), - [anon_sym_AMP_EQ] = ACTIONS(7719), - [anon_sym_CARET_EQ] = ACTIONS(7719), - [anon_sym_PIPE_EQ] = ACTIONS(7719), - [anon_sym_and_eq] = ACTIONS(7719), - [anon_sym_or_eq] = ACTIONS(7719), - [anon_sym_xor_eq] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7717), - [anon_sym_and] = ACTIONS(7717), - [anon_sym_bitor] = ACTIONS(7719), - [anon_sym_xor] = ACTIONS(7717), - [anon_sym_bitand] = ACTIONS(7719), - [anon_sym_not_eq] = ACTIONS(7719), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7719), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7719), - [anon_sym_override] = ACTIONS(7719), - [anon_sym_requires] = ACTIONS(7719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7721), + [anon_sym_COMMA] = ACTIONS(7721), + [anon_sym_LPAREN2] = ACTIONS(7721), + [anon_sym_DASH] = ACTIONS(7719), + [anon_sym_PLUS] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_SLASH] = ACTIONS(7719), + [anon_sym_PERCENT] = ACTIONS(7719), + [anon_sym_PIPE_PIPE] = ACTIONS(7721), + [anon_sym_AMP_AMP] = ACTIONS(7721), + [anon_sym_PIPE] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_AMP] = ACTIONS(7719), + [anon_sym_EQ_EQ] = ACTIONS(7721), + [anon_sym_BANG_EQ] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7719), + [anon_sym_GT_EQ] = ACTIONS(7721), + [anon_sym_LT_EQ] = ACTIONS(7719), + [anon_sym_LT] = ACTIONS(7719), + [anon_sym_LT_LT] = ACTIONS(7719), + [anon_sym_GT_GT] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7721), + [anon_sym___attribute__] = ACTIONS(7721), + [anon_sym___attribute] = ACTIONS(7719), + [anon_sym_LBRACE] = ACTIONS(7721), + [anon_sym_LBRACK] = ACTIONS(7721), + [anon_sym_RBRACK] = ACTIONS(7721), + [anon_sym_EQ] = ACTIONS(7719), + [anon_sym_const] = ACTIONS(7719), + [anon_sym_constexpr] = ACTIONS(7721), + [anon_sym_volatile] = ACTIONS(7721), + [anon_sym_restrict] = ACTIONS(7721), + [anon_sym___restrict__] = ACTIONS(7721), + [anon_sym__Atomic] = ACTIONS(7721), + [anon_sym__Noreturn] = ACTIONS(7721), + [anon_sym_noreturn] = ACTIONS(7721), + [anon_sym__Nonnull] = ACTIONS(7721), + [anon_sym_mutable] = ACTIONS(7721), + [anon_sym_constinit] = ACTIONS(7721), + [anon_sym_consteval] = ACTIONS(7721), + [anon_sym_alignas] = ACTIONS(7721), + [anon_sym__Alignas] = ACTIONS(7721), + [anon_sym_QMARK] = ACTIONS(7721), + [anon_sym_STAR_EQ] = ACTIONS(7721), + [anon_sym_SLASH_EQ] = ACTIONS(7721), + [anon_sym_PERCENT_EQ] = ACTIONS(7721), + [anon_sym_PLUS_EQ] = ACTIONS(7721), + [anon_sym_DASH_EQ] = ACTIONS(7721), + [anon_sym_LT_LT_EQ] = ACTIONS(7721), + [anon_sym_GT_GT_EQ] = ACTIONS(7721), + [anon_sym_AMP_EQ] = ACTIONS(7721), + [anon_sym_CARET_EQ] = ACTIONS(7721), + [anon_sym_PIPE_EQ] = ACTIONS(7721), + [anon_sym_and_eq] = ACTIONS(7721), + [anon_sym_or_eq] = ACTIONS(7721), + [anon_sym_xor_eq] = ACTIONS(7721), + [anon_sym_LT_EQ_GT] = ACTIONS(7721), + [anon_sym_or] = ACTIONS(7719), + [anon_sym_and] = ACTIONS(7719), + [anon_sym_bitor] = ACTIONS(7721), + [anon_sym_xor] = ACTIONS(7719), + [anon_sym_bitand] = ACTIONS(7721), + [anon_sym_not_eq] = ACTIONS(7721), + [anon_sym_DASH_DASH] = ACTIONS(7721), + [anon_sym_PLUS_PLUS] = ACTIONS(7721), + [anon_sym_DOT] = ACTIONS(7719), + [anon_sym_DOT_STAR] = ACTIONS(7721), + [anon_sym_DASH_GT] = ACTIONS(7721), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7721), + [anon_sym_override] = ACTIONS(7721), + [anon_sym_requires] = ACTIONS(7721), }, [STATE(2914)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), - [anon_sym_COMMA] = ACTIONS(7587), - [anon_sym_LPAREN2] = ACTIONS(7587), - [anon_sym_DASH] = ACTIONS(7585), - [anon_sym_PLUS] = ACTIONS(7585), - [anon_sym_STAR] = ACTIONS(7585), - [anon_sym_SLASH] = ACTIONS(7585), - [anon_sym_PERCENT] = ACTIONS(7585), - [anon_sym_PIPE_PIPE] = ACTIONS(7587), - [anon_sym_AMP_AMP] = ACTIONS(7587), - [anon_sym_PIPE] = ACTIONS(7585), - [anon_sym_CARET] = ACTIONS(7585), - [anon_sym_AMP] = ACTIONS(7585), - [anon_sym_EQ_EQ] = ACTIONS(7587), - [anon_sym_BANG_EQ] = ACTIONS(7587), - [anon_sym_GT] = ACTIONS(7585), - [anon_sym_GT_EQ] = ACTIONS(7587), - [anon_sym_LT_EQ] = ACTIONS(7585), - [anon_sym_LT] = ACTIONS(7585), - [anon_sym_LT_LT] = ACTIONS(7585), - [anon_sym_GT_GT] = ACTIONS(7585), - [anon_sym___extension__] = ACTIONS(7587), - [anon_sym___attribute__] = ACTIONS(7587), - [anon_sym___attribute] = ACTIONS(7585), - [anon_sym_LBRACE] = ACTIONS(7587), - [anon_sym_LBRACK] = ACTIONS(7587), - [anon_sym_RBRACK] = ACTIONS(7587), - [anon_sym_EQ] = ACTIONS(7585), - [anon_sym_const] = ACTIONS(7585), - [anon_sym_constexpr] = ACTIONS(7587), - [anon_sym_volatile] = ACTIONS(7587), - [anon_sym_restrict] = ACTIONS(7587), - [anon_sym___restrict__] = ACTIONS(7587), - [anon_sym__Atomic] = ACTIONS(7587), - [anon_sym__Noreturn] = ACTIONS(7587), - [anon_sym_noreturn] = ACTIONS(7587), - [anon_sym__Nonnull] = ACTIONS(7587), - [anon_sym_mutable] = ACTIONS(7587), - [anon_sym_constinit] = ACTIONS(7587), - [anon_sym_consteval] = ACTIONS(7587), - [anon_sym_alignas] = ACTIONS(7587), - [anon_sym__Alignas] = ACTIONS(7587), - [anon_sym_QMARK] = ACTIONS(7587), - [anon_sym_STAR_EQ] = ACTIONS(7587), - [anon_sym_SLASH_EQ] = ACTIONS(7587), - [anon_sym_PERCENT_EQ] = ACTIONS(7587), - [anon_sym_PLUS_EQ] = ACTIONS(7587), - [anon_sym_DASH_EQ] = ACTIONS(7587), - [anon_sym_LT_LT_EQ] = ACTIONS(7587), - [anon_sym_GT_GT_EQ] = ACTIONS(7587), - [anon_sym_AMP_EQ] = ACTIONS(7587), - [anon_sym_CARET_EQ] = ACTIONS(7587), - [anon_sym_PIPE_EQ] = ACTIONS(7587), - [anon_sym_and_eq] = ACTIONS(7587), - [anon_sym_or_eq] = ACTIONS(7587), - [anon_sym_xor_eq] = ACTIONS(7587), - [anon_sym_LT_EQ_GT] = ACTIONS(7587), - [anon_sym_or] = ACTIONS(7585), - [anon_sym_and] = ACTIONS(7585), - [anon_sym_bitor] = ACTIONS(7587), - [anon_sym_xor] = ACTIONS(7585), - [anon_sym_bitand] = ACTIONS(7587), - [anon_sym_not_eq] = ACTIONS(7587), - [anon_sym_DASH_DASH] = ACTIONS(7587), - [anon_sym_PLUS_PLUS] = ACTIONS(7587), - [anon_sym_DOT] = ACTIONS(7585), - [anon_sym_DOT_STAR] = ACTIONS(7587), - [anon_sym_DASH_GT] = ACTIONS(7587), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7587), - [anon_sym_override] = ACTIONS(7587), - [anon_sym_requires] = ACTIONS(7587), + [sym_type_qualifier] = STATE(2920), + [sym_alignas_qualifier] = STATE(2724), + [aux_sym__type_definition_type_repeat1] = STATE(2920), + [aux_sym_sized_type_specifier_repeat1] = STATE(3462), + [sym_identifier] = ACTIONS(8840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [aux_sym_preproc_if_token2] = ACTIONS(7209), + [aux_sym_preproc_else_token1] = ACTIONS(7209), + [aux_sym_preproc_elif_token1] = ACTIONS(7211), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7209), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(8667), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(8843), + [anon_sym_unsigned] = ACTIONS(8843), + [anon_sym_long] = ACTIONS(8843), + [anon_sym_short] = ACTIONS(8843), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(8667), + [anon_sym_constexpr] = ACTIONS(8667), + [anon_sym_volatile] = ACTIONS(8667), + [anon_sym_restrict] = ACTIONS(8667), + [anon_sym___restrict__] = ACTIONS(8667), + [anon_sym__Atomic] = ACTIONS(8667), + [anon_sym__Noreturn] = ACTIONS(8667), + [anon_sym_noreturn] = ACTIONS(8667), + [anon_sym__Nonnull] = ACTIONS(8667), + [anon_sym_mutable] = ACTIONS(8667), + [anon_sym_constinit] = ACTIONS(8667), + [anon_sym_consteval] = ACTIONS(8667), + [anon_sym_alignas] = ACTIONS(8672), + [anon_sym__Alignas] = ACTIONS(8672), + [sym_primitive_type] = ACTIONS(8845), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), }, [STATE(2915)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), - [anon_sym_COMMA] = ACTIONS(7633), - [anon_sym_LPAREN2] = ACTIONS(7633), - [anon_sym_DASH] = ACTIONS(7631), - [anon_sym_PLUS] = ACTIONS(7631), - [anon_sym_STAR] = ACTIONS(7631), - [anon_sym_SLASH] = ACTIONS(7631), - [anon_sym_PERCENT] = ACTIONS(7631), - [anon_sym_PIPE_PIPE] = ACTIONS(7633), - [anon_sym_AMP_AMP] = ACTIONS(7633), - [anon_sym_PIPE] = ACTIONS(7631), - [anon_sym_CARET] = ACTIONS(7631), - [anon_sym_AMP] = ACTIONS(7631), - [anon_sym_EQ_EQ] = ACTIONS(7633), - [anon_sym_BANG_EQ] = ACTIONS(7633), - [anon_sym_GT] = ACTIONS(7631), - [anon_sym_GT_EQ] = ACTIONS(7633), - [anon_sym_LT_EQ] = ACTIONS(7631), - [anon_sym_LT] = ACTIONS(7631), - [anon_sym_LT_LT] = ACTIONS(7631), - [anon_sym_GT_GT] = ACTIONS(7631), - [anon_sym___extension__] = ACTIONS(7633), - [anon_sym___attribute__] = ACTIONS(7633), - [anon_sym___attribute] = ACTIONS(7631), - [anon_sym_LBRACE] = ACTIONS(7633), - [anon_sym_LBRACK] = ACTIONS(7633), - [anon_sym_RBRACK] = ACTIONS(7633), - [anon_sym_EQ] = ACTIONS(7631), - [anon_sym_const] = ACTIONS(7631), - [anon_sym_constexpr] = ACTIONS(7633), - [anon_sym_volatile] = ACTIONS(7633), - [anon_sym_restrict] = ACTIONS(7633), - [anon_sym___restrict__] = ACTIONS(7633), - [anon_sym__Atomic] = ACTIONS(7633), - [anon_sym__Noreturn] = ACTIONS(7633), - [anon_sym_noreturn] = ACTIONS(7633), - [anon_sym__Nonnull] = ACTIONS(7633), - [anon_sym_mutable] = ACTIONS(7633), - [anon_sym_constinit] = ACTIONS(7633), - [anon_sym_consteval] = ACTIONS(7633), - [anon_sym_alignas] = ACTIONS(7633), - [anon_sym__Alignas] = ACTIONS(7633), - [anon_sym_QMARK] = ACTIONS(7633), - [anon_sym_STAR_EQ] = ACTIONS(7633), - [anon_sym_SLASH_EQ] = ACTIONS(7633), - [anon_sym_PERCENT_EQ] = ACTIONS(7633), - [anon_sym_PLUS_EQ] = ACTIONS(7633), - [anon_sym_DASH_EQ] = ACTIONS(7633), - [anon_sym_LT_LT_EQ] = ACTIONS(7633), - [anon_sym_GT_GT_EQ] = ACTIONS(7633), - [anon_sym_AMP_EQ] = ACTIONS(7633), - [anon_sym_CARET_EQ] = ACTIONS(7633), - [anon_sym_PIPE_EQ] = ACTIONS(7633), - [anon_sym_and_eq] = ACTIONS(7633), - [anon_sym_or_eq] = ACTIONS(7633), - [anon_sym_xor_eq] = ACTIONS(7633), - [anon_sym_LT_EQ_GT] = ACTIONS(7633), - [anon_sym_or] = ACTIONS(7631), - [anon_sym_and] = ACTIONS(7631), - [anon_sym_bitor] = ACTIONS(7633), - [anon_sym_xor] = ACTIONS(7631), - [anon_sym_bitand] = ACTIONS(7633), - [anon_sym_not_eq] = ACTIONS(7633), - [anon_sym_DASH_DASH] = ACTIONS(7633), - [anon_sym_PLUS_PLUS] = ACTIONS(7633), - [anon_sym_DOT] = ACTIONS(7631), - [anon_sym_DOT_STAR] = ACTIONS(7633), - [anon_sym_DASH_GT] = ACTIONS(7633), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7633), - [anon_sym_override] = ACTIONS(7633), - [anon_sym_requires] = ACTIONS(7633), + [sym_template_argument_list] = STATE(3015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_RPAREN] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6570), + [anon_sym_PLUS] = ACTIONS(6570), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6570), + [anon_sym_PIPE_PIPE] = ACTIONS(6563), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6570), + [anon_sym_CARET] = ACTIONS(6570), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6563), + [anon_sym_BANG_EQ] = ACTIONS(6563), + [anon_sym_GT] = ACTIONS(6570), + [anon_sym_GT_EQ] = ACTIONS(6563), + [anon_sym_LT_EQ] = ACTIONS(6570), + [anon_sym_LT] = ACTIONS(8847), + [anon_sym_LT_LT] = ACTIONS(6570), + [anon_sym_GT_GT] = ACTIONS(6570), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6570), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6563), + [anon_sym_STAR_EQ] = ACTIONS(6563), + [anon_sym_SLASH_EQ] = ACTIONS(6563), + [anon_sym_PERCENT_EQ] = ACTIONS(6563), + [anon_sym_PLUS_EQ] = ACTIONS(6563), + [anon_sym_DASH_EQ] = ACTIONS(6563), + [anon_sym_LT_LT_EQ] = ACTIONS(6563), + [anon_sym_GT_GT_EQ] = ACTIONS(6563), + [anon_sym_AMP_EQ] = ACTIONS(6563), + [anon_sym_CARET_EQ] = ACTIONS(6563), + [anon_sym_PIPE_EQ] = ACTIONS(6563), + [anon_sym_and_eq] = ACTIONS(6563), + [anon_sym_or_eq] = ACTIONS(6563), + [anon_sym_xor_eq] = ACTIONS(6563), + [anon_sym_LT_EQ_GT] = ACTIONS(6563), + [anon_sym_or] = ACTIONS(6570), + [anon_sym_and] = ACTIONS(6570), + [anon_sym_bitor] = ACTIONS(6563), + [anon_sym_xor] = ACTIONS(6570), + [anon_sym_bitand] = ACTIONS(6563), + [anon_sym_not_eq] = ACTIONS(6563), + [anon_sym_DASH_DASH] = ACTIONS(6563), + [anon_sym_PLUS_PLUS] = ACTIONS(6563), + [anon_sym_DOT] = ACTIONS(6570), + [anon_sym_DOT_STAR] = ACTIONS(6563), + [anon_sym_DASH_GT] = ACTIONS(6570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_DASH_GT_STAR] = ACTIONS(6563), }, [STATE(2916)] = { - [sym_attribute_specifier] = STATE(3571), - [sym_enumerator_list] = STATE(3026), + [sym_template_argument_list] = STATE(2956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_RPAREN] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6570), + [anon_sym_PLUS] = ACTIONS(6570), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6570), + [anon_sym_PIPE_PIPE] = ACTIONS(6563), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6570), + [anon_sym_CARET] = ACTIONS(6570), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6563), + [anon_sym_BANG_EQ] = ACTIONS(6563), + [anon_sym_GT] = ACTIONS(6570), + [anon_sym_GT_EQ] = ACTIONS(6563), + [anon_sym_LT_EQ] = ACTIONS(6570), + [anon_sym_LT] = ACTIONS(8847), + [anon_sym_LT_LT] = ACTIONS(6570), + [anon_sym_GT_GT] = ACTIONS(6570), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6570), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6563), + [anon_sym_STAR_EQ] = ACTIONS(6563), + [anon_sym_SLASH_EQ] = ACTIONS(6563), + [anon_sym_PERCENT_EQ] = ACTIONS(6563), + [anon_sym_PLUS_EQ] = ACTIONS(6563), + [anon_sym_DASH_EQ] = ACTIONS(6563), + [anon_sym_LT_LT_EQ] = ACTIONS(6563), + [anon_sym_GT_GT_EQ] = ACTIONS(6563), + [anon_sym_AMP_EQ] = ACTIONS(6563), + [anon_sym_CARET_EQ] = ACTIONS(6563), + [anon_sym_PIPE_EQ] = ACTIONS(6563), + [anon_sym_and_eq] = ACTIONS(6561), + [anon_sym_or_eq] = ACTIONS(6561), + [anon_sym_xor_eq] = ACTIONS(6561), + [anon_sym_LT_EQ_GT] = ACTIONS(6563), + [anon_sym_or] = ACTIONS(6570), + [anon_sym_and] = ACTIONS(6570), + [anon_sym_bitor] = ACTIONS(6563), + [anon_sym_xor] = ACTIONS(6570), + [anon_sym_bitand] = ACTIONS(6563), + [anon_sym_not_eq] = ACTIONS(6563), + [anon_sym_DASH_DASH] = ACTIONS(6563), + [anon_sym_PLUS_PLUS] = ACTIONS(6563), + [anon_sym_DOT] = ACTIONS(6570), + [anon_sym_DOT_STAR] = ACTIONS(6563), + [anon_sym_DASH_GT] = ACTIONS(6570), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_DASH_GT_STAR] = ACTIONS(6563), + }, + [STATE(2917)] = { + [sym_catch_clause] = STATE(2917), + [aux_sym_constructor_try_statement_repeat1] = STATE(2917), + [sym_identifier] = ACTIONS(3159), + [aux_sym_preproc_def_token1] = ACTIONS(3159), + [aux_sym_preproc_if_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3159), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3159), + [sym_preproc_directive] = ACTIONS(3159), + [anon_sym_LPAREN2] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_AMP_AMP] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym___extension__] = ACTIONS(3159), + [anon_sym_typedef] = ACTIONS(3159), + [anon_sym_virtual] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym___attribute__] = ACTIONS(3159), + [anon_sym___attribute] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3159), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), + [anon_sym___declspec] = ACTIONS(3159), + [anon_sym___based] = ACTIONS(3159), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_signed] = ACTIONS(3159), + [anon_sym_unsigned] = ACTIONS(3159), + [anon_sym_long] = ACTIONS(3159), + [anon_sym_short] = ACTIONS(3159), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_register] = ACTIONS(3159), + [anon_sym_inline] = ACTIONS(3159), + [anon_sym___inline] = ACTIONS(3159), + [anon_sym___inline__] = ACTIONS(3159), + [anon_sym___forceinline] = ACTIONS(3159), + [anon_sym_thread_local] = ACTIONS(3159), + [anon_sym___thread] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_constexpr] = ACTIONS(3159), + [anon_sym_volatile] = ACTIONS(3159), + [anon_sym_restrict] = ACTIONS(3159), + [anon_sym___restrict__] = ACTIONS(3159), + [anon_sym__Atomic] = ACTIONS(3159), + [anon_sym__Noreturn] = ACTIONS(3159), + [anon_sym_noreturn] = ACTIONS(3159), + [anon_sym__Nonnull] = ACTIONS(3159), + [anon_sym_mutable] = ACTIONS(3159), + [anon_sym_constinit] = ACTIONS(3159), + [anon_sym_consteval] = ACTIONS(3159), + [anon_sym_alignas] = ACTIONS(3159), + [anon_sym__Alignas] = ACTIONS(3159), + [sym_primitive_type] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_class] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_typename] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3159), + [anon_sym_decltype] = ACTIONS(3159), + [anon_sym_explicit] = ACTIONS(3159), + [anon_sym_private] = ACTIONS(3159), + [anon_sym_template] = ACTIONS(3159), + [anon_sym_operator] = ACTIONS(3159), + [anon_sym_friend] = ACTIONS(3159), + [anon_sym_public] = ACTIONS(3159), + [anon_sym_protected] = ACTIONS(3159), + [anon_sym_static_assert] = ACTIONS(3159), + [anon_sym_catch] = ACTIONS(8851), + [anon_sym_LBRACK_COLON] = ACTIONS(3161), + }, + [STATE(2918)] = { + [sym_attribute_specifier] = STATE(2031), + [sym_attribute_declaration] = STATE(3098), + [aux_sym_type_definition_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(3098), + [sym_identifier] = ACTIONS(8854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8856), + [anon_sym_COMMA] = ACTIONS(8856), + [anon_sym_RPAREN] = ACTIONS(8856), + [aux_sym_preproc_if_token2] = ACTIONS(8856), + [aux_sym_preproc_else_token1] = ACTIONS(8856), + [aux_sym_preproc_elif_token1] = ACTIONS(8854), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8856), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8856), + [anon_sym_LPAREN2] = ACTIONS(8856), + [anon_sym_DASH] = ACTIONS(8854), + [anon_sym_PLUS] = ACTIONS(8854), + [anon_sym_STAR] = ACTIONS(8854), + [anon_sym_SLASH] = ACTIONS(8854), + [anon_sym_PERCENT] = ACTIONS(8854), + [anon_sym_PIPE_PIPE] = ACTIONS(8856), + [anon_sym_AMP_AMP] = ACTIONS(8856), + [anon_sym_PIPE] = ACTIONS(8854), + [anon_sym_CARET] = ACTIONS(8854), + [anon_sym_AMP] = ACTIONS(8854), + [anon_sym_EQ_EQ] = ACTIONS(8856), + [anon_sym_BANG_EQ] = ACTIONS(8856), + [anon_sym_GT] = ACTIONS(8854), + [anon_sym_GT_EQ] = ACTIONS(8856), + [anon_sym_LT_EQ] = ACTIONS(8854), + [anon_sym_LT] = ACTIONS(8854), + [anon_sym_LT_LT] = ACTIONS(8854), + [anon_sym_GT_GT] = ACTIONS(8854), + [anon_sym_SEMI] = ACTIONS(8856), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(8854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8856), + [anon_sym_RBRACE] = ACTIONS(8856), + [anon_sym_LBRACK] = ACTIONS(8854), + [anon_sym_EQ] = ACTIONS(8854), + [anon_sym_QMARK] = ACTIONS(8856), + [anon_sym_STAR_EQ] = ACTIONS(8856), + [anon_sym_SLASH_EQ] = ACTIONS(8856), + [anon_sym_PERCENT_EQ] = ACTIONS(8856), + [anon_sym_PLUS_EQ] = ACTIONS(8856), + [anon_sym_DASH_EQ] = ACTIONS(8856), + [anon_sym_LT_LT_EQ] = ACTIONS(8856), + [anon_sym_GT_GT_EQ] = ACTIONS(8856), + [anon_sym_AMP_EQ] = ACTIONS(8856), + [anon_sym_CARET_EQ] = ACTIONS(8856), + [anon_sym_PIPE_EQ] = ACTIONS(8856), + [anon_sym_and_eq] = ACTIONS(8854), + [anon_sym_or_eq] = ACTIONS(8854), + [anon_sym_xor_eq] = ACTIONS(8854), + [anon_sym_LT_EQ_GT] = ACTIONS(8856), + [anon_sym_or] = ACTIONS(8854), + [anon_sym_and] = ACTIONS(8854), + [anon_sym_bitor] = ACTIONS(8854), + [anon_sym_xor] = ACTIONS(8854), + [anon_sym_bitand] = ACTIONS(8854), + [anon_sym_not_eq] = ACTIONS(8854), + [anon_sym_DASH_DASH] = ACTIONS(8856), + [anon_sym_PLUS_PLUS] = ACTIONS(8856), + [anon_sym_DOT] = ACTIONS(8854), + [anon_sym_DOT_STAR] = ACTIONS(8856), + [anon_sym_DASH_GT] = ACTIONS(8856), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8854), + [anon_sym_override] = ACTIONS(8854), + [anon_sym_requires] = ACTIONS(8854), + [anon_sym_COLON_RBRACK] = ACTIONS(8856), + }, + [STATE(2919)] = { + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(6656), + [aux_sym_preproc_if_token2] = ACTIONS(6656), + [aux_sym_preproc_else_token1] = ACTIONS(6656), + [aux_sym_preproc_elif_token1] = ACTIONS(6649), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6656), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6656), + [anon_sym_LPAREN2] = ACTIONS(6656), + [anon_sym_DASH] = ACTIONS(6649), + [anon_sym_PLUS] = ACTIONS(6649), + [anon_sym_STAR] = ACTIONS(6656), + [anon_sym_SLASH] = ACTIONS(6649), + [anon_sym_PERCENT] = ACTIONS(6656), + [anon_sym_PIPE_PIPE] = ACTIONS(6656), + [anon_sym_AMP_AMP] = ACTIONS(6656), + [anon_sym_PIPE] = ACTIONS(6649), + [anon_sym_CARET] = ACTIONS(6656), + [anon_sym_AMP] = ACTIONS(6649), + [anon_sym_EQ_EQ] = ACTIONS(6656), + [anon_sym_BANG_EQ] = ACTIONS(6656), + [anon_sym_GT] = ACTIONS(6649), + [anon_sym_GT_EQ] = ACTIONS(6656), + [anon_sym_LT_EQ] = ACTIONS(6649), + [anon_sym_LT] = ACTIONS(6649), + [anon_sym_LT_LT] = ACTIONS(6656), + [anon_sym_GT_GT] = ACTIONS(6656), + [anon_sym_SEMI] = ACTIONS(6656), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_RBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6656), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6656), + [anon_sym_LT_EQ_GT] = ACTIONS(6656), + [anon_sym_or] = ACTIONS(6649), + [anon_sym_and] = ACTIONS(6649), + [anon_sym_bitor] = ACTIONS(6649), + [anon_sym_xor] = ACTIONS(6649), + [anon_sym_bitand] = ACTIONS(6649), + [anon_sym_not_eq] = ACTIONS(6649), + [anon_sym_DASH_DASH] = ACTIONS(6656), + [anon_sym_PLUS_PLUS] = ACTIONS(6656), + [anon_sym_DOT] = ACTIONS(6649), + [anon_sym_DOT_STAR] = ACTIONS(6656), + [anon_sym_DASH_GT] = ACTIONS(6656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_final] = ACTIONS(6649), + [anon_sym_override] = ACTIONS(6649), + [anon_sym_requires] = ACTIONS(6649), + [anon_sym_COLON_RBRACK] = ACTIONS(6656), + }, + [STATE(2920)] = { + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [aux_sym_sized_type_specifier_repeat1] = STATE(3259), + [sym_identifier] = ACTIONS(8858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [aux_sym_preproc_if_token2] = ACTIONS(7193), + [aux_sym_preproc_else_token1] = ACTIONS(7193), + [aux_sym_preproc_elif_token1] = ACTIONS(7195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7193), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7193), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7193), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7193), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7193), + [anon_sym_GT_GT] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(8637), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(8861), + [anon_sym_unsigned] = ACTIONS(8861), + [anon_sym_long] = ACTIONS(8861), + [anon_sym_short] = ACTIONS(8861), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_const] = ACTIONS(8637), + [anon_sym_constexpr] = ACTIONS(8637), + [anon_sym_volatile] = ACTIONS(8637), + [anon_sym_restrict] = ACTIONS(8637), + [anon_sym___restrict__] = ACTIONS(8637), + [anon_sym__Atomic] = ACTIONS(8637), + [anon_sym__Noreturn] = ACTIONS(8637), + [anon_sym_noreturn] = ACTIONS(8637), + [anon_sym__Nonnull] = ACTIONS(8637), + [anon_sym_mutable] = ACTIONS(8637), + [anon_sym_constinit] = ACTIONS(8637), + [anon_sym_consteval] = ACTIONS(8637), + [anon_sym_alignas] = ACTIONS(8642), + [anon_sym__Alignas] = ACTIONS(8642), + [sym_primitive_type] = ACTIONS(8863), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_requires] = ACTIONS(7195), + }, + [STATE(2921)] = { + [sym_catch_clause] = STATE(2917), + [aux_sym_constructor_try_statement_repeat1] = STATE(2917), + [sym_identifier] = ACTIONS(3170), + [aux_sym_preproc_def_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token1] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3170), + [sym_preproc_directive] = ACTIONS(3170), + [anon_sym_LPAREN2] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3170), + [anon_sym_virtual] = ACTIONS(3170), + [anon_sym_extern] = ACTIONS(3170), + [anon_sym___attribute__] = ACTIONS(3170), + [anon_sym___attribute] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(3172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3172), + [anon_sym___declspec] = ACTIONS(3170), + [anon_sym___based] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_signed] = ACTIONS(3170), + [anon_sym_unsigned] = ACTIONS(3170), + [anon_sym_long] = ACTIONS(3170), + [anon_sym_short] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_register] = ACTIONS(3170), + [anon_sym_inline] = ACTIONS(3170), + [anon_sym___inline] = ACTIONS(3170), + [anon_sym___inline__] = ACTIONS(3170), + [anon_sym___forceinline] = ACTIONS(3170), + [anon_sym_thread_local] = ACTIONS(3170), + [anon_sym___thread] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_constexpr] = ACTIONS(3170), + [anon_sym_volatile] = ACTIONS(3170), + [anon_sym_restrict] = ACTIONS(3170), + [anon_sym___restrict__] = ACTIONS(3170), + [anon_sym__Atomic] = ACTIONS(3170), + [anon_sym__Noreturn] = ACTIONS(3170), + [anon_sym_noreturn] = ACTIONS(3170), + [anon_sym__Nonnull] = ACTIONS(3170), + [anon_sym_mutable] = ACTIONS(3170), + [anon_sym_constinit] = ACTIONS(3170), + [anon_sym_consteval] = ACTIONS(3170), + [anon_sym_alignas] = ACTIONS(3170), + [anon_sym__Alignas] = ACTIONS(3170), + [sym_primitive_type] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_typename] = ACTIONS(3170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3170), + [anon_sym_decltype] = ACTIONS(3170), + [anon_sym_explicit] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_template] = ACTIONS(3170), + [anon_sym_operator] = ACTIONS(3170), + [anon_sym_friend] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_static_assert] = ACTIONS(3170), + [anon_sym_catch] = ACTIONS(8835), + [anon_sym_LBRACK_COLON] = ACTIONS(3172), + }, + [STATE(2922)] = { + [sym_catch_clause] = STATE(2909), + [aux_sym_constructor_try_statement_repeat1] = STATE(2909), + [sym_identifier] = ACTIONS(3176), + [aux_sym_preproc_def_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token1] = ACTIONS(3176), + [aux_sym_preproc_if_token2] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3176), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3176), + [sym_preproc_directive] = ACTIONS(3176), + [anon_sym_LPAREN2] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_AMP_AMP] = ACTIONS(3178), + [anon_sym_AMP] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym___extension__] = ACTIONS(3176), + [anon_sym_typedef] = ACTIONS(3176), + [anon_sym_virtual] = ACTIONS(3176), + [anon_sym_extern] = ACTIONS(3176), + [anon_sym___attribute__] = ACTIONS(3176), + [anon_sym___attribute] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_COLON_COLON] = ACTIONS(3178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3178), + [anon_sym___declspec] = ACTIONS(3176), + [anon_sym___based] = ACTIONS(3176), + [anon_sym_signed] = ACTIONS(3176), + [anon_sym_unsigned] = ACTIONS(3176), + [anon_sym_long] = ACTIONS(3176), + [anon_sym_short] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_register] = ACTIONS(3176), + [anon_sym_inline] = ACTIONS(3176), + [anon_sym___inline] = ACTIONS(3176), + [anon_sym___inline__] = ACTIONS(3176), + [anon_sym___forceinline] = ACTIONS(3176), + [anon_sym_thread_local] = ACTIONS(3176), + [anon_sym___thread] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_constexpr] = ACTIONS(3176), + [anon_sym_volatile] = ACTIONS(3176), + [anon_sym_restrict] = ACTIONS(3176), + [anon_sym___restrict__] = ACTIONS(3176), + [anon_sym__Atomic] = ACTIONS(3176), + [anon_sym__Noreturn] = ACTIONS(3176), + [anon_sym_noreturn] = ACTIONS(3176), + [anon_sym__Nonnull] = ACTIONS(3176), + [anon_sym_mutable] = ACTIONS(3176), + [anon_sym_constinit] = ACTIONS(3176), + [anon_sym_consteval] = ACTIONS(3176), + [anon_sym_alignas] = ACTIONS(3176), + [anon_sym__Alignas] = ACTIONS(3176), + [sym_primitive_type] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_struct] = ACTIONS(3176), + [anon_sym_union] = ACTIONS(3176), + [anon_sym_typename] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3176), + [anon_sym_decltype] = ACTIONS(3176), + [anon_sym_explicit] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_template] = ACTIONS(3176), + [anon_sym_operator] = ACTIONS(3176), + [anon_sym_friend] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_static_assert] = ACTIONS(3176), + [anon_sym_catch] = ACTIONS(8865), + [anon_sym_LBRACK_COLON] = ACTIONS(3178), + }, + [STATE(2923)] = { + [sym_attribute_specifier] = STATE(3504), + [sym_enumerator_list] = STATE(3050), [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), [anon_sym_COMMA] = ACTIONS(7383), [anon_sym_RPAREN] = ACTIONS(7383), @@ -387574,9 +387942,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7381), [anon_sym_GT_GT] = ACTIONS(7381), [anon_sym___extension__] = ACTIONS(7383), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(8624), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(8628), [anon_sym_LBRACK] = ACTIONS(7383), [anon_sym_EQ] = ACTIONS(7381), [anon_sym_const] = ACTIONS(7381), @@ -387622,3931 +387990,3775 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7383), [anon_sym_DASH_GT_STAR] = ACTIONS(7383), }, - [STATE(2917)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), - [anon_sym_COMMA] = ACTIONS(7633), - [anon_sym_LPAREN2] = ACTIONS(7633), - [anon_sym_DASH] = ACTIONS(7631), - [anon_sym_PLUS] = ACTIONS(7631), - [anon_sym_STAR] = ACTIONS(7631), - [anon_sym_SLASH] = ACTIONS(7631), - [anon_sym_PERCENT] = ACTIONS(7631), - [anon_sym_PIPE_PIPE] = ACTIONS(7633), - [anon_sym_AMP_AMP] = ACTIONS(7633), - [anon_sym_PIPE] = ACTIONS(7631), - [anon_sym_CARET] = ACTIONS(7631), - [anon_sym_AMP] = ACTIONS(7631), - [anon_sym_EQ_EQ] = ACTIONS(7633), - [anon_sym_BANG_EQ] = ACTIONS(7633), - [anon_sym_GT] = ACTIONS(7631), - [anon_sym_GT_EQ] = ACTIONS(7631), - [anon_sym_LT_EQ] = ACTIONS(7631), - [anon_sym_LT] = ACTIONS(7631), - [anon_sym_LT_LT] = ACTIONS(7631), - [anon_sym_GT_GT] = ACTIONS(7631), - [anon_sym___extension__] = ACTIONS(7633), - [anon_sym___attribute__] = ACTIONS(7633), - [anon_sym___attribute] = ACTIONS(7631), - [anon_sym_LBRACE] = ACTIONS(7633), - [anon_sym_LBRACK] = ACTIONS(7633), - [anon_sym_EQ] = ACTIONS(7631), - [anon_sym_const] = ACTIONS(7631), - [anon_sym_constexpr] = ACTIONS(7633), - [anon_sym_volatile] = ACTIONS(7633), - [anon_sym_restrict] = ACTIONS(7633), - [anon_sym___restrict__] = ACTIONS(7633), - [anon_sym__Atomic] = ACTIONS(7633), - [anon_sym__Noreturn] = ACTIONS(7633), - [anon_sym_noreturn] = ACTIONS(7633), - [anon_sym__Nonnull] = ACTIONS(7633), - [anon_sym_mutable] = ACTIONS(7633), - [anon_sym_constinit] = ACTIONS(7633), - [anon_sym_consteval] = ACTIONS(7633), - [anon_sym_alignas] = ACTIONS(7633), - [anon_sym__Alignas] = ACTIONS(7633), - [anon_sym_QMARK] = ACTIONS(7633), - [anon_sym_STAR_EQ] = ACTIONS(7633), - [anon_sym_SLASH_EQ] = ACTIONS(7633), - [anon_sym_PERCENT_EQ] = ACTIONS(7633), - [anon_sym_PLUS_EQ] = ACTIONS(7633), - [anon_sym_DASH_EQ] = ACTIONS(7633), - [anon_sym_LT_LT_EQ] = ACTIONS(7633), - [anon_sym_GT_GT_EQ] = ACTIONS(7631), - [anon_sym_AMP_EQ] = ACTIONS(7633), - [anon_sym_CARET_EQ] = ACTIONS(7633), - [anon_sym_PIPE_EQ] = ACTIONS(7633), - [anon_sym_and_eq] = ACTIONS(7633), - [anon_sym_or_eq] = ACTIONS(7633), - [anon_sym_xor_eq] = ACTIONS(7633), - [anon_sym_LT_EQ_GT] = ACTIONS(7633), - [anon_sym_or] = ACTIONS(7631), - [anon_sym_and] = ACTIONS(7631), - [anon_sym_bitor] = ACTIONS(7633), - [anon_sym_xor] = ACTIONS(7631), - [anon_sym_bitand] = ACTIONS(7633), - [anon_sym_not_eq] = ACTIONS(7633), - [anon_sym_DASH_DASH] = ACTIONS(7633), - [anon_sym_PLUS_PLUS] = ACTIONS(7633), - [anon_sym_DOT] = ACTIONS(7631), - [anon_sym_DOT_STAR] = ACTIONS(7633), - [anon_sym_DASH_GT] = ACTIONS(7633), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7633), - [anon_sym_override] = ACTIONS(7633), - [anon_sym_GT2] = ACTIONS(7633), - [anon_sym_requires] = ACTIONS(7633), - }, - [STATE(2918)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym__function_attributes_end] = STATE(4301), - [sym__function_postfix] = STATE(4813), - [sym_trailing_return_type] = STATE(4349), - [sym_requires_clause] = STATE(4813), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_RPAREN] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8422), - [anon_sym_or_eq] = ACTIONS(8422), - [anon_sym_xor_eq] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8845), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8851), - [anon_sym_override] = ACTIONS(8851), - [anon_sym_requires] = ACTIONS(8854), - [anon_sym_DASH_GT_STAR] = ACTIONS(8422), - }, - [STATE(2919)] = { - [sym_template_argument_list] = STATE(2998), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_RPAREN] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6576), - [anon_sym_PLUS] = ACTIONS(6576), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6576), - [anon_sym_PERCENT] = ACTIONS(6576), - [anon_sym_PIPE_PIPE] = ACTIONS(6569), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6576), - [anon_sym_CARET] = ACTIONS(6576), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6569), - [anon_sym_BANG_EQ] = ACTIONS(6569), - [anon_sym_GT] = ACTIONS(6576), - [anon_sym_GT_EQ] = ACTIONS(6569), - [anon_sym_LT_EQ] = ACTIONS(6576), - [anon_sym_LT] = ACTIONS(8857), - [anon_sym_LT_LT] = ACTIONS(6576), - [anon_sym_GT_GT] = ACTIONS(6576), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6576), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6569), - [anon_sym_STAR_EQ] = ACTIONS(6569), - [anon_sym_SLASH_EQ] = ACTIONS(6569), - [anon_sym_PERCENT_EQ] = ACTIONS(6569), - [anon_sym_PLUS_EQ] = ACTIONS(6569), - [anon_sym_DASH_EQ] = ACTIONS(6569), - [anon_sym_LT_LT_EQ] = ACTIONS(6569), - [anon_sym_GT_GT_EQ] = ACTIONS(6569), - [anon_sym_AMP_EQ] = ACTIONS(6569), - [anon_sym_CARET_EQ] = ACTIONS(6569), - [anon_sym_PIPE_EQ] = ACTIONS(6569), - [anon_sym_and_eq] = ACTIONS(6567), - [anon_sym_or_eq] = ACTIONS(6567), - [anon_sym_xor_eq] = ACTIONS(6567), - [anon_sym_LT_EQ_GT] = ACTIONS(6569), - [anon_sym_or] = ACTIONS(6576), - [anon_sym_and] = ACTIONS(6576), - [anon_sym_bitor] = ACTIONS(6569), - [anon_sym_xor] = ACTIONS(6576), - [anon_sym_bitand] = ACTIONS(6569), - [anon_sym_not_eq] = ACTIONS(6569), - [anon_sym_DASH_DASH] = ACTIONS(6569), - [anon_sym_PLUS_PLUS] = ACTIONS(6569), - [anon_sym_DOT] = ACTIONS(6576), - [anon_sym_DOT_STAR] = ACTIONS(6569), - [anon_sym_DASH_GT] = ACTIONS(6576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_DASH_GT_STAR] = ACTIONS(6569), - }, - [STATE(2920)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_GT_GT] = ACTIONS(7293), - [anon_sym_SEMI] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7293), - [anon_sym___based] = ACTIONS(7291), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_RBRACE] = ACTIONS(7293), - [anon_sym_signed] = ACTIONS(7291), - [anon_sym_unsigned] = ACTIONS(7291), - [anon_sym_long] = ACTIONS(7291), - [anon_sym_short] = ACTIONS(7291), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [sym_primitive_type] = ACTIONS(7291), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7291), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7291), - [anon_sym_not_eq] = ACTIONS(7291), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_requires] = ACTIONS(7291), - [anon_sym_COLON_RBRACK] = ACTIONS(7293), - }, - [STATE(2921)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_RPAREN] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7085), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7085), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7085), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(7085), - [anon_sym_LT_LT] = ACTIONS(7085), - [anon_sym_GT_GT] = ACTIONS(7085), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7090), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_EQ] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_STAR_EQ] = ACTIONS(7090), - [anon_sym_SLASH_EQ] = ACTIONS(7090), - [anon_sym_PERCENT_EQ] = ACTIONS(7090), - [anon_sym_PLUS_EQ] = ACTIONS(7090), - [anon_sym_DASH_EQ] = ACTIONS(7090), - [anon_sym_LT_LT_EQ] = ACTIONS(7090), - [anon_sym_GT_GT_EQ] = ACTIONS(7090), - [anon_sym_AMP_EQ] = ACTIONS(7090), - [anon_sym_CARET_EQ] = ACTIONS(7090), - [anon_sym_PIPE_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7090), - [anon_sym_and] = ACTIONS(7090), - [anon_sym_bitor] = ACTIONS(7090), - [anon_sym_xor] = ACTIONS(7090), - [anon_sym_bitand] = ACTIONS(7090), - [anon_sym_not_eq] = ACTIONS(7090), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7085), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), - [anon_sym_DASH_GT_STAR] = ACTIONS(7090), - }, - [STATE(2922)] = { - [sym_catch_clause] = STATE(2926), - [aux_sym_constructor_try_statement_repeat1] = STATE(2926), - [sym_identifier] = ACTIONS(3178), - [aux_sym_preproc_def_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token1] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_LPAREN2] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_AMP_AMP] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym___extension__] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_virtual] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym___attribute__] = ACTIONS(3178), - [anon_sym___attribute] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), - [anon_sym___declspec] = ACTIONS(3178), - [anon_sym___based] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_signed] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym___inline] = ACTIONS(3178), - [anon_sym___inline__] = ACTIONS(3178), - [anon_sym___forceinline] = ACTIONS(3178), - [anon_sym_thread_local] = ACTIONS(3178), - [anon_sym___thread] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym___restrict__] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym__Noreturn] = ACTIONS(3178), - [anon_sym_noreturn] = ACTIONS(3178), - [anon_sym__Nonnull] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_constinit] = ACTIONS(3178), - [anon_sym_consteval] = ACTIONS(3178), - [anon_sym_alignas] = ACTIONS(3178), - [anon_sym__Alignas] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3178), - [anon_sym_decltype] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_operator] = ACTIONS(3178), - [anon_sym_friend] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_static_assert] = ACTIONS(3178), - [anon_sym_catch] = ACTIONS(8841), - [anon_sym_LBRACK_COLON] = ACTIONS(3180), - }, - [STATE(2923)] = { - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [aux_sym_sized_type_specifier_repeat1] = STATE(3303), - [sym_identifier] = ACTIONS(8861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [aux_sym_preproc_if_token2] = ACTIONS(7205), - [aux_sym_preproc_else_token1] = ACTIONS(7205), - [aux_sym_preproc_elif_token1] = ACTIONS(7207), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7205), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(8716), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(8864), - [anon_sym_unsigned] = ACTIONS(8864), - [anon_sym_long] = ACTIONS(8864), - [anon_sym_short] = ACTIONS(8864), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(8716), - [anon_sym_constexpr] = ACTIONS(8716), - [anon_sym_volatile] = ACTIONS(8716), - [anon_sym_restrict] = ACTIONS(8716), - [anon_sym___restrict__] = ACTIONS(8716), - [anon_sym__Atomic] = ACTIONS(8716), - [anon_sym__Noreturn] = ACTIONS(8716), - [anon_sym_noreturn] = ACTIONS(8716), - [anon_sym__Nonnull] = ACTIONS(8716), - [anon_sym_mutable] = ACTIONS(8716), - [anon_sym_constinit] = ACTIONS(8716), - [anon_sym_consteval] = ACTIONS(8716), - [anon_sym_alignas] = ACTIONS(8721), - [anon_sym__Alignas] = ACTIONS(8721), - [sym_primitive_type] = ACTIONS(8866), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), - }, [STATE(2924)] = { - [sym_catch_clause] = STATE(2912), - [aux_sym_constructor_try_statement_repeat1] = STATE(2912), - [sym_identifier] = ACTIONS(3178), - [aux_sym_preproc_def_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token1] = ACTIONS(3178), - [aux_sym_preproc_if_token2] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3178), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_LPAREN2] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_STAR] = ACTIONS(3180), - [anon_sym_AMP_AMP] = ACTIONS(3180), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym___extension__] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_virtual] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym___attribute__] = ACTIONS(3178), - [anon_sym___attribute] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3180), - [anon_sym___declspec] = ACTIONS(3178), - [anon_sym___based] = ACTIONS(3178), - [anon_sym_signed] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym___inline] = ACTIONS(3178), - [anon_sym___inline__] = ACTIONS(3178), - [anon_sym___forceinline] = ACTIONS(3178), - [anon_sym_thread_local] = ACTIONS(3178), - [anon_sym___thread] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym___restrict__] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym__Noreturn] = ACTIONS(3178), - [anon_sym_noreturn] = ACTIONS(3178), - [anon_sym__Nonnull] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_constinit] = ACTIONS(3178), - [anon_sym_consteval] = ACTIONS(3178), - [anon_sym_alignas] = ACTIONS(3178), - [anon_sym__Alignas] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3178), - [anon_sym_decltype] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_operator] = ACTIONS(3178), - [anon_sym_friend] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_static_assert] = ACTIONS(3178), - [anon_sym_catch] = ACTIONS(8843), - [anon_sym_LBRACK_COLON] = ACTIONS(3180), + [sym_catch_clause] = STATE(2909), + [aux_sym_constructor_try_statement_repeat1] = STATE(2909), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token2] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym___attribute] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym__Nonnull] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym__Alignas] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_private] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_friend] = ACTIONS(3180), + [anon_sym_public] = ACTIONS(3180), + [anon_sym_protected] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_catch] = ACTIONS(8865), + [anon_sym_LBRACK_COLON] = ACTIONS(3182), }, [STATE(2925)] = { - [sym_template_argument_list] = STATE(2985), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_RPAREN] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6576), - [anon_sym_PLUS] = ACTIONS(6576), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6576), - [anon_sym_PERCENT] = ACTIONS(6576), - [anon_sym_PIPE_PIPE] = ACTIONS(6569), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6576), - [anon_sym_CARET] = ACTIONS(6576), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6569), - [anon_sym_BANG_EQ] = ACTIONS(6569), - [anon_sym_GT] = ACTIONS(6576), - [anon_sym_GT_EQ] = ACTIONS(6569), - [anon_sym_LT_EQ] = ACTIONS(6576), - [anon_sym_LT] = ACTIONS(8857), - [anon_sym_LT_LT] = ACTIONS(6576), - [anon_sym_GT_GT] = ACTIONS(6576), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6576), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6569), - [anon_sym_STAR_EQ] = ACTIONS(6569), - [anon_sym_SLASH_EQ] = ACTIONS(6569), - [anon_sym_PERCENT_EQ] = ACTIONS(6569), - [anon_sym_PLUS_EQ] = ACTIONS(6569), - [anon_sym_DASH_EQ] = ACTIONS(6569), - [anon_sym_LT_LT_EQ] = ACTIONS(6569), - [anon_sym_GT_GT_EQ] = ACTIONS(6569), - [anon_sym_AMP_EQ] = ACTIONS(6569), - [anon_sym_CARET_EQ] = ACTIONS(6569), - [anon_sym_PIPE_EQ] = ACTIONS(6569), - [anon_sym_and_eq] = ACTIONS(6569), - [anon_sym_or_eq] = ACTIONS(6569), - [anon_sym_xor_eq] = ACTIONS(6569), - [anon_sym_LT_EQ_GT] = ACTIONS(6569), - [anon_sym_or] = ACTIONS(6576), - [anon_sym_and] = ACTIONS(6576), - [anon_sym_bitor] = ACTIONS(6569), - [anon_sym_xor] = ACTIONS(6576), - [anon_sym_bitand] = ACTIONS(6569), - [anon_sym_not_eq] = ACTIONS(6569), - [anon_sym_DASH_DASH] = ACTIONS(6569), - [anon_sym_PLUS_PLUS] = ACTIONS(6569), - [anon_sym_DOT] = ACTIONS(6576), - [anon_sym_DOT_STAR] = ACTIONS(6569), - [anon_sym_DASH_GT] = ACTIONS(6576), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_DASH_GT_STAR] = ACTIONS(6569), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7670), + [anon_sym_COMMA] = ACTIONS(7670), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_DASH] = ACTIONS(7668), + [anon_sym_PLUS] = ACTIONS(7668), + [anon_sym_STAR] = ACTIONS(7668), + [anon_sym_SLASH] = ACTIONS(7668), + [anon_sym_PERCENT] = ACTIONS(7668), + [anon_sym_PIPE_PIPE] = ACTIONS(7670), + [anon_sym_AMP_AMP] = ACTIONS(7670), + [anon_sym_PIPE] = ACTIONS(7668), + [anon_sym_CARET] = ACTIONS(7668), + [anon_sym_AMP] = ACTIONS(7668), + [anon_sym_EQ_EQ] = ACTIONS(7670), + [anon_sym_BANG_EQ] = ACTIONS(7670), + [anon_sym_GT] = ACTIONS(7668), + [anon_sym_GT_EQ] = ACTIONS(7670), + [anon_sym_LT_EQ] = ACTIONS(7668), + [anon_sym_LT] = ACTIONS(7668), + [anon_sym_LT_LT] = ACTIONS(7668), + [anon_sym_GT_GT] = ACTIONS(7668), + [anon_sym___extension__] = ACTIONS(7670), + [anon_sym___attribute__] = ACTIONS(7670), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7670), + [anon_sym_RBRACK] = ACTIONS(7670), + [anon_sym_EQ] = ACTIONS(7668), + [anon_sym_const] = ACTIONS(7668), + [anon_sym_constexpr] = ACTIONS(7670), + [anon_sym_volatile] = ACTIONS(7670), + [anon_sym_restrict] = ACTIONS(7670), + [anon_sym___restrict__] = ACTIONS(7670), + [anon_sym__Atomic] = ACTIONS(7670), + [anon_sym__Noreturn] = ACTIONS(7670), + [anon_sym_noreturn] = ACTIONS(7670), + [anon_sym__Nonnull] = ACTIONS(7670), + [anon_sym_mutable] = ACTIONS(7670), + [anon_sym_constinit] = ACTIONS(7670), + [anon_sym_consteval] = ACTIONS(7670), + [anon_sym_alignas] = ACTIONS(7670), + [anon_sym__Alignas] = ACTIONS(7670), + [anon_sym_QMARK] = ACTIONS(7670), + [anon_sym_STAR_EQ] = ACTIONS(7670), + [anon_sym_SLASH_EQ] = ACTIONS(7670), + [anon_sym_PERCENT_EQ] = ACTIONS(7670), + [anon_sym_PLUS_EQ] = ACTIONS(7670), + [anon_sym_DASH_EQ] = ACTIONS(7670), + [anon_sym_LT_LT_EQ] = ACTIONS(7670), + [anon_sym_GT_GT_EQ] = ACTIONS(7670), + [anon_sym_AMP_EQ] = ACTIONS(7670), + [anon_sym_CARET_EQ] = ACTIONS(7670), + [anon_sym_PIPE_EQ] = ACTIONS(7670), + [anon_sym_and_eq] = ACTIONS(7670), + [anon_sym_or_eq] = ACTIONS(7670), + [anon_sym_xor_eq] = ACTIONS(7670), + [anon_sym_LT_EQ_GT] = ACTIONS(7670), + [anon_sym_or] = ACTIONS(7668), + [anon_sym_and] = ACTIONS(7668), + [anon_sym_bitor] = ACTIONS(7670), + [anon_sym_xor] = ACTIONS(7668), + [anon_sym_bitand] = ACTIONS(7670), + [anon_sym_not_eq] = ACTIONS(7670), + [anon_sym_DASH_DASH] = ACTIONS(7670), + [anon_sym_PLUS_PLUS] = ACTIONS(7670), + [anon_sym_DOT] = ACTIONS(7668), + [anon_sym_DOT_STAR] = ACTIONS(7670), + [anon_sym_DASH_GT] = ACTIONS(7670), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7670), + [anon_sym_override] = ACTIONS(7670), + [anon_sym_requires] = ACTIONS(7670), }, [STATE(2926)] = { - [sym_catch_clause] = STATE(2926), - [aux_sym_constructor_try_statement_repeat1] = STATE(2926), - [sym_identifier] = ACTIONS(3171), - [aux_sym_preproc_def_token1] = ACTIONS(3171), - [aux_sym_preproc_if_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3171), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3171), - [sym_preproc_directive] = ACTIONS(3171), - [anon_sym_LPAREN2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3171), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym___extension__] = ACTIONS(3171), - [anon_sym_typedef] = ACTIONS(3171), - [anon_sym_virtual] = ACTIONS(3171), - [anon_sym_extern] = ACTIONS(3171), - [anon_sym___attribute__] = ACTIONS(3171), - [anon_sym___attribute] = ACTIONS(3171), - [anon_sym_using] = ACTIONS(3171), - [anon_sym_COLON_COLON] = ACTIONS(3173), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3173), - [anon_sym___declspec] = ACTIONS(3171), - [anon_sym___based] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_signed] = ACTIONS(3171), - [anon_sym_unsigned] = ACTIONS(3171), - [anon_sym_long] = ACTIONS(3171), - [anon_sym_short] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_static] = ACTIONS(3171), - [anon_sym_register] = ACTIONS(3171), - [anon_sym_inline] = ACTIONS(3171), - [anon_sym___inline] = ACTIONS(3171), - [anon_sym___inline__] = ACTIONS(3171), - [anon_sym___forceinline] = ACTIONS(3171), - [anon_sym_thread_local] = ACTIONS(3171), - [anon_sym___thread] = ACTIONS(3171), - [anon_sym_const] = ACTIONS(3171), - [anon_sym_constexpr] = ACTIONS(3171), - [anon_sym_volatile] = ACTIONS(3171), - [anon_sym_restrict] = ACTIONS(3171), - [anon_sym___restrict__] = ACTIONS(3171), - [anon_sym__Atomic] = ACTIONS(3171), - [anon_sym__Noreturn] = ACTIONS(3171), - [anon_sym_noreturn] = ACTIONS(3171), - [anon_sym__Nonnull] = ACTIONS(3171), - [anon_sym_mutable] = ACTIONS(3171), - [anon_sym_constinit] = ACTIONS(3171), - [anon_sym_consteval] = ACTIONS(3171), - [anon_sym_alignas] = ACTIONS(3171), - [anon_sym__Alignas] = ACTIONS(3171), - [sym_primitive_type] = ACTIONS(3171), - [anon_sym_enum] = ACTIONS(3171), - [anon_sym_class] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3171), - [anon_sym_union] = ACTIONS(3171), - [anon_sym_typename] = ACTIONS(3171), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3171), - [anon_sym_decltype] = ACTIONS(3171), - [anon_sym_explicit] = ACTIONS(3171), - [anon_sym_private] = ACTIONS(3171), - [anon_sym_template] = ACTIONS(3171), - [anon_sym_operator] = ACTIONS(3171), - [anon_sym_friend] = ACTIONS(3171), - [anon_sym_public] = ACTIONS(3171), - [anon_sym_protected] = ACTIONS(3171), - [anon_sym_static_assert] = ACTIONS(3171), - [anon_sym_catch] = ACTIONS(8868), - [anon_sym_LBRACK_COLON] = ACTIONS(3173), + [sym_catch_clause] = STATE(2909), + [aux_sym_constructor_try_statement_repeat1] = STATE(2909), + [sym_identifier] = ACTIONS(3170), + [aux_sym_preproc_def_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token1] = ACTIONS(3170), + [aux_sym_preproc_if_token2] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3170), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3170), + [sym_preproc_directive] = ACTIONS(3170), + [anon_sym_LPAREN2] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_AMP_AMP] = ACTIONS(3172), + [anon_sym_AMP] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym___extension__] = ACTIONS(3170), + [anon_sym_typedef] = ACTIONS(3170), + [anon_sym_virtual] = ACTIONS(3170), + [anon_sym_extern] = ACTIONS(3170), + [anon_sym___attribute__] = ACTIONS(3170), + [anon_sym___attribute] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_COLON_COLON] = ACTIONS(3172), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3172), + [anon_sym___declspec] = ACTIONS(3170), + [anon_sym___based] = ACTIONS(3170), + [anon_sym_signed] = ACTIONS(3170), + [anon_sym_unsigned] = ACTIONS(3170), + [anon_sym_long] = ACTIONS(3170), + [anon_sym_short] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_register] = ACTIONS(3170), + [anon_sym_inline] = ACTIONS(3170), + [anon_sym___inline] = ACTIONS(3170), + [anon_sym___inline__] = ACTIONS(3170), + [anon_sym___forceinline] = ACTIONS(3170), + [anon_sym_thread_local] = ACTIONS(3170), + [anon_sym___thread] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_constexpr] = ACTIONS(3170), + [anon_sym_volatile] = ACTIONS(3170), + [anon_sym_restrict] = ACTIONS(3170), + [anon_sym___restrict__] = ACTIONS(3170), + [anon_sym__Atomic] = ACTIONS(3170), + [anon_sym__Noreturn] = ACTIONS(3170), + [anon_sym_noreturn] = ACTIONS(3170), + [anon_sym__Nonnull] = ACTIONS(3170), + [anon_sym_mutable] = ACTIONS(3170), + [anon_sym_constinit] = ACTIONS(3170), + [anon_sym_consteval] = ACTIONS(3170), + [anon_sym_alignas] = ACTIONS(3170), + [anon_sym__Alignas] = ACTIONS(3170), + [sym_primitive_type] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_struct] = ACTIONS(3170), + [anon_sym_union] = ACTIONS(3170), + [anon_sym_typename] = ACTIONS(3170), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3170), + [anon_sym_decltype] = ACTIONS(3170), + [anon_sym_explicit] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_template] = ACTIONS(3170), + [anon_sym_operator] = ACTIONS(3170), + [anon_sym_friend] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_static_assert] = ACTIONS(3170), + [anon_sym_catch] = ACTIONS(8865), + [anon_sym_LBRACK_COLON] = ACTIONS(3172), }, [STATE(2927)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), - [anon_sym_COMMA] = ACTIONS(7587), - [anon_sym_LPAREN2] = ACTIONS(7587), - [anon_sym_DASH] = ACTIONS(7585), - [anon_sym_PLUS] = ACTIONS(7585), - [anon_sym_STAR] = ACTIONS(7585), - [anon_sym_SLASH] = ACTIONS(7585), - [anon_sym_PERCENT] = ACTIONS(7585), - [anon_sym_PIPE_PIPE] = ACTIONS(7587), - [anon_sym_AMP_AMP] = ACTIONS(7587), - [anon_sym_PIPE] = ACTIONS(7585), - [anon_sym_CARET] = ACTIONS(7585), - [anon_sym_AMP] = ACTIONS(7585), - [anon_sym_EQ_EQ] = ACTIONS(7587), - [anon_sym_BANG_EQ] = ACTIONS(7587), - [anon_sym_GT] = ACTIONS(7585), - [anon_sym_GT_EQ] = ACTIONS(7585), - [anon_sym_LT_EQ] = ACTIONS(7585), - [anon_sym_LT] = ACTIONS(7585), - [anon_sym_LT_LT] = ACTIONS(7585), - [anon_sym_GT_GT] = ACTIONS(7585), - [anon_sym___extension__] = ACTIONS(7587), - [anon_sym___attribute__] = ACTIONS(7587), - [anon_sym___attribute] = ACTIONS(7585), - [anon_sym_LBRACE] = ACTIONS(7587), - [anon_sym_LBRACK] = ACTIONS(7587), - [anon_sym_EQ] = ACTIONS(7585), - [anon_sym_const] = ACTIONS(7585), - [anon_sym_constexpr] = ACTIONS(7587), - [anon_sym_volatile] = ACTIONS(7587), - [anon_sym_restrict] = ACTIONS(7587), - [anon_sym___restrict__] = ACTIONS(7587), - [anon_sym__Atomic] = ACTIONS(7587), - [anon_sym__Noreturn] = ACTIONS(7587), - [anon_sym_noreturn] = ACTIONS(7587), - [anon_sym__Nonnull] = ACTIONS(7587), - [anon_sym_mutable] = ACTIONS(7587), - [anon_sym_constinit] = ACTIONS(7587), - [anon_sym_consteval] = ACTIONS(7587), - [anon_sym_alignas] = ACTIONS(7587), - [anon_sym__Alignas] = ACTIONS(7587), - [anon_sym_QMARK] = ACTIONS(7587), - [anon_sym_STAR_EQ] = ACTIONS(7587), - [anon_sym_SLASH_EQ] = ACTIONS(7587), - [anon_sym_PERCENT_EQ] = ACTIONS(7587), - [anon_sym_PLUS_EQ] = ACTIONS(7587), - [anon_sym_DASH_EQ] = ACTIONS(7587), - [anon_sym_LT_LT_EQ] = ACTIONS(7587), - [anon_sym_GT_GT_EQ] = ACTIONS(7585), - [anon_sym_AMP_EQ] = ACTIONS(7587), - [anon_sym_CARET_EQ] = ACTIONS(7587), - [anon_sym_PIPE_EQ] = ACTIONS(7587), - [anon_sym_and_eq] = ACTIONS(7587), - [anon_sym_or_eq] = ACTIONS(7587), - [anon_sym_xor_eq] = ACTIONS(7587), - [anon_sym_LT_EQ_GT] = ACTIONS(7587), - [anon_sym_or] = ACTIONS(7585), - [anon_sym_and] = ACTIONS(7585), - [anon_sym_bitor] = ACTIONS(7587), - [anon_sym_xor] = ACTIONS(7585), - [anon_sym_bitand] = ACTIONS(7587), - [anon_sym_not_eq] = ACTIONS(7587), - [anon_sym_DASH_DASH] = ACTIONS(7587), - [anon_sym_PLUS_PLUS] = ACTIONS(7587), - [anon_sym_DOT] = ACTIONS(7585), - [anon_sym_DOT_STAR] = ACTIONS(7587), - [anon_sym_DASH_GT] = ACTIONS(7587), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7587), - [anon_sym_override] = ACTIONS(7587), - [anon_sym_GT2] = ACTIONS(7587), - [anon_sym_requires] = ACTIONS(7587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7644), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_PERCENT] = ACTIONS(7642), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7642), + [anon_sym_LT_EQ] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_LT_LT] = ACTIONS(7642), + [anon_sym_GT_GT] = ACTIONS(7642), + [anon_sym___extension__] = ACTIONS(7644), + [anon_sym___attribute__] = ACTIONS(7644), + [anon_sym___attribute] = ACTIONS(7642), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_const] = ACTIONS(7642), + [anon_sym_constexpr] = ACTIONS(7644), + [anon_sym_volatile] = ACTIONS(7644), + [anon_sym_restrict] = ACTIONS(7644), + [anon_sym___restrict__] = ACTIONS(7644), + [anon_sym__Atomic] = ACTIONS(7644), + [anon_sym__Noreturn] = ACTIONS(7644), + [anon_sym_noreturn] = ACTIONS(7644), + [anon_sym__Nonnull] = ACTIONS(7644), + [anon_sym_mutable] = ACTIONS(7644), + [anon_sym_constinit] = ACTIONS(7644), + [anon_sym_consteval] = ACTIONS(7644), + [anon_sym_alignas] = ACTIONS(7644), + [anon_sym__Alignas] = ACTIONS(7644), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_STAR_EQ] = ACTIONS(7644), + [anon_sym_SLASH_EQ] = ACTIONS(7644), + [anon_sym_PERCENT_EQ] = ACTIONS(7644), + [anon_sym_PLUS_EQ] = ACTIONS(7644), + [anon_sym_DASH_EQ] = ACTIONS(7644), + [anon_sym_LT_LT_EQ] = ACTIONS(7644), + [anon_sym_GT_GT_EQ] = ACTIONS(7642), + [anon_sym_AMP_EQ] = ACTIONS(7644), + [anon_sym_CARET_EQ] = ACTIONS(7644), + [anon_sym_PIPE_EQ] = ACTIONS(7644), + [anon_sym_and_eq] = ACTIONS(7644), + [anon_sym_or_eq] = ACTIONS(7644), + [anon_sym_xor_eq] = ACTIONS(7644), + [anon_sym_LT_EQ_GT] = ACTIONS(7644), + [anon_sym_or] = ACTIONS(7642), + [anon_sym_and] = ACTIONS(7642), + [anon_sym_bitor] = ACTIONS(7644), + [anon_sym_xor] = ACTIONS(7642), + [anon_sym_bitand] = ACTIONS(7644), + [anon_sym_not_eq] = ACTIONS(7644), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7642), + [anon_sym_DOT_STAR] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7644), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7644), + [anon_sym_override] = ACTIONS(7644), + [anon_sym_GT2] = ACTIONS(7644), + [anon_sym_requires] = ACTIONS(7644), }, [STATE(2928)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), - [anon_sym_COMMA] = ACTIONS(7106), - [anon_sym_RPAREN] = ACTIONS(7106), - [anon_sym_LPAREN2] = ACTIONS(7106), - [anon_sym_DASH] = ACTIONS(7104), - [anon_sym_PLUS] = ACTIONS(7104), - [anon_sym_STAR] = ACTIONS(7104), - [anon_sym_SLASH] = ACTIONS(7104), - [anon_sym_PERCENT] = ACTIONS(7104), - [anon_sym_PIPE_PIPE] = ACTIONS(7106), - [anon_sym_AMP_AMP] = ACTIONS(7106), - [anon_sym_PIPE] = ACTIONS(7104), - [anon_sym_CARET] = ACTIONS(7104), - [anon_sym_AMP] = ACTIONS(7104), - [anon_sym_EQ_EQ] = ACTIONS(7106), - [anon_sym_BANG_EQ] = ACTIONS(7106), - [anon_sym_GT] = ACTIONS(7104), - [anon_sym_GT_EQ] = ACTIONS(7106), - [anon_sym_LT_EQ] = ACTIONS(7104), - [anon_sym_LT] = ACTIONS(7104), - [anon_sym_LT_LT] = ACTIONS(7104), - [anon_sym_GT_GT] = ACTIONS(7104), - [anon_sym___extension__] = ACTIONS(7106), - [anon_sym___attribute__] = ACTIONS(7106), - [anon_sym___attribute] = ACTIONS(7104), - [anon_sym_COLON] = ACTIONS(7104), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [anon_sym_LBRACE] = ACTIONS(7106), - [anon_sym_LBRACK] = ACTIONS(7106), - [anon_sym_EQ] = ACTIONS(7104), - [anon_sym_const] = ACTIONS(7104), - [anon_sym_constexpr] = ACTIONS(7106), - [anon_sym_volatile] = ACTIONS(7106), - [anon_sym_restrict] = ACTIONS(7106), - [anon_sym___restrict__] = ACTIONS(7106), - [anon_sym__Atomic] = ACTIONS(7106), - [anon_sym__Noreturn] = ACTIONS(7106), - [anon_sym_noreturn] = ACTIONS(7106), - [anon_sym__Nonnull] = ACTIONS(7106), - [anon_sym_mutable] = ACTIONS(7106), - [anon_sym_constinit] = ACTIONS(7106), - [anon_sym_consteval] = ACTIONS(7106), - [anon_sym_alignas] = ACTIONS(7106), - [anon_sym__Alignas] = ACTIONS(7106), - [anon_sym_QMARK] = ACTIONS(7106), - [anon_sym_STAR_EQ] = ACTIONS(7106), - [anon_sym_SLASH_EQ] = ACTIONS(7106), - [anon_sym_PERCENT_EQ] = ACTIONS(7106), - [anon_sym_PLUS_EQ] = ACTIONS(7106), - [anon_sym_DASH_EQ] = ACTIONS(7106), - [anon_sym_LT_LT_EQ] = ACTIONS(7106), - [anon_sym_GT_GT_EQ] = ACTIONS(7106), - [anon_sym_AMP_EQ] = ACTIONS(7106), - [anon_sym_CARET_EQ] = ACTIONS(7106), - [anon_sym_PIPE_EQ] = ACTIONS(7106), - [anon_sym_LT_EQ_GT] = ACTIONS(7106), - [anon_sym_or] = ACTIONS(7106), - [anon_sym_and] = ACTIONS(7106), - [anon_sym_bitor] = ACTIONS(7106), - [anon_sym_xor] = ACTIONS(7106), - [anon_sym_bitand] = ACTIONS(7106), - [anon_sym_not_eq] = ACTIONS(7106), - [anon_sym_DASH_DASH] = ACTIONS(7106), - [anon_sym_PLUS_PLUS] = ACTIONS(7106), - [anon_sym_DOT] = ACTIONS(7104), - [anon_sym_DOT_STAR] = ACTIONS(7106), - [anon_sym_DASH_GT] = ACTIONS(7104), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7106), - [anon_sym_override] = ACTIONS(7106), - [anon_sym_requires] = ACTIONS(7106), - [anon_sym_DASH_GT_STAR] = ACTIONS(7106), + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym__function_attributes_end] = STATE(4292), + [sym__function_postfix] = STATE(4971), + [sym_trailing_return_type] = STATE(4365), + [sym_requires_clause] = STATE(4971), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8402), + [anon_sym_or_eq] = ACTIONS(8402), + [anon_sym_xor_eq] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8824), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6663), + [anon_sym_override] = ACTIONS(6663), + [anon_sym_requires] = ACTIONS(6665), + [anon_sym_DASH_GT_STAR] = ACTIONS(8402), }, [STATE(2929)] = { - [sym_attribute_specifier] = STATE(3557), - [sym_enumerator_list] = STATE(3003), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), - [anon_sym_COMMA] = ACTIONS(7389), - [anon_sym_RPAREN] = ACTIONS(7389), - [anon_sym_LPAREN2] = ACTIONS(7389), - [anon_sym_DASH] = ACTIONS(7387), - [anon_sym_PLUS] = ACTIONS(7387), - [anon_sym_STAR] = ACTIONS(7387), - [anon_sym_SLASH] = ACTIONS(7387), - [anon_sym_PERCENT] = ACTIONS(7387), - [anon_sym_PIPE_PIPE] = ACTIONS(7389), - [anon_sym_AMP_AMP] = ACTIONS(7389), - [anon_sym_PIPE] = ACTIONS(7387), - [anon_sym_CARET] = ACTIONS(7387), - [anon_sym_AMP] = ACTIONS(7387), - [anon_sym_EQ_EQ] = ACTIONS(7389), - [anon_sym_BANG_EQ] = ACTIONS(7389), - [anon_sym_GT] = ACTIONS(7387), - [anon_sym_GT_EQ] = ACTIONS(7389), - [anon_sym_LT_EQ] = ACTIONS(7387), - [anon_sym_LT] = ACTIONS(7387), - [anon_sym_LT_LT] = ACTIONS(7387), - [anon_sym_GT_GT] = ACTIONS(7387), - [anon_sym___extension__] = ACTIONS(7389), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(8624), - [anon_sym_LBRACK] = ACTIONS(7389), - [anon_sym_EQ] = ACTIONS(7387), - [anon_sym_const] = ACTIONS(7387), - [anon_sym_constexpr] = ACTIONS(7389), - [anon_sym_volatile] = ACTIONS(7389), - [anon_sym_restrict] = ACTIONS(7389), - [anon_sym___restrict__] = ACTIONS(7389), - [anon_sym__Atomic] = ACTIONS(7389), - [anon_sym__Noreturn] = ACTIONS(7389), - [anon_sym_noreturn] = ACTIONS(7389), - [anon_sym__Nonnull] = ACTIONS(7389), - [anon_sym_mutable] = ACTIONS(7389), - [anon_sym_constinit] = ACTIONS(7389), - [anon_sym_consteval] = ACTIONS(7389), - [anon_sym_alignas] = ACTIONS(7389), - [anon_sym__Alignas] = ACTIONS(7389), - [anon_sym_QMARK] = ACTIONS(7389), - [anon_sym_STAR_EQ] = ACTIONS(7389), - [anon_sym_SLASH_EQ] = ACTIONS(7389), - [anon_sym_PERCENT_EQ] = ACTIONS(7389), - [anon_sym_PLUS_EQ] = ACTIONS(7389), - [anon_sym_DASH_EQ] = ACTIONS(7389), - [anon_sym_LT_LT_EQ] = ACTIONS(7389), - [anon_sym_GT_GT_EQ] = ACTIONS(7389), - [anon_sym_AMP_EQ] = ACTIONS(7389), - [anon_sym_CARET_EQ] = ACTIONS(7389), - [anon_sym_PIPE_EQ] = ACTIONS(7389), - [anon_sym_LT_EQ_GT] = ACTIONS(7389), - [anon_sym_or] = ACTIONS(7389), - [anon_sym_and] = ACTIONS(7389), - [anon_sym_bitor] = ACTIONS(7389), - [anon_sym_xor] = ACTIONS(7389), - [anon_sym_bitand] = ACTIONS(7389), - [anon_sym_not_eq] = ACTIONS(7389), - [anon_sym_DASH_DASH] = ACTIONS(7389), - [anon_sym_PLUS_PLUS] = ACTIONS(7389), - [anon_sym_DOT] = ACTIONS(7387), - [anon_sym_DOT_STAR] = ACTIONS(7389), - [anon_sym_DASH_GT] = ACTIONS(7387), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7389), - [anon_sym_override] = ACTIONS(7389), - [anon_sym_requires] = ACTIONS(7389), - [anon_sym_DASH_GT_STAR] = ACTIONS(7389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7670), + [anon_sym_COMMA] = ACTIONS(7670), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_DASH] = ACTIONS(7668), + [anon_sym_PLUS] = ACTIONS(7668), + [anon_sym_STAR] = ACTIONS(7668), + [anon_sym_SLASH] = ACTIONS(7668), + [anon_sym_PERCENT] = ACTIONS(7668), + [anon_sym_PIPE_PIPE] = ACTIONS(7670), + [anon_sym_AMP_AMP] = ACTIONS(7670), + [anon_sym_PIPE] = ACTIONS(7668), + [anon_sym_CARET] = ACTIONS(7668), + [anon_sym_AMP] = ACTIONS(7668), + [anon_sym_EQ_EQ] = ACTIONS(7670), + [anon_sym_BANG_EQ] = ACTIONS(7670), + [anon_sym_GT] = ACTIONS(7668), + [anon_sym_GT_EQ] = ACTIONS(7668), + [anon_sym_LT_EQ] = ACTIONS(7668), + [anon_sym_LT] = ACTIONS(7668), + [anon_sym_LT_LT] = ACTIONS(7668), + [anon_sym_GT_GT] = ACTIONS(7668), + [anon_sym___extension__] = ACTIONS(7670), + [anon_sym___attribute__] = ACTIONS(7670), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7670), + [anon_sym_EQ] = ACTIONS(7668), + [anon_sym_const] = ACTIONS(7668), + [anon_sym_constexpr] = ACTIONS(7670), + [anon_sym_volatile] = ACTIONS(7670), + [anon_sym_restrict] = ACTIONS(7670), + [anon_sym___restrict__] = ACTIONS(7670), + [anon_sym__Atomic] = ACTIONS(7670), + [anon_sym__Noreturn] = ACTIONS(7670), + [anon_sym_noreturn] = ACTIONS(7670), + [anon_sym__Nonnull] = ACTIONS(7670), + [anon_sym_mutable] = ACTIONS(7670), + [anon_sym_constinit] = ACTIONS(7670), + [anon_sym_consteval] = ACTIONS(7670), + [anon_sym_alignas] = ACTIONS(7670), + [anon_sym__Alignas] = ACTIONS(7670), + [anon_sym_QMARK] = ACTIONS(7670), + [anon_sym_STAR_EQ] = ACTIONS(7670), + [anon_sym_SLASH_EQ] = ACTIONS(7670), + [anon_sym_PERCENT_EQ] = ACTIONS(7670), + [anon_sym_PLUS_EQ] = ACTIONS(7670), + [anon_sym_DASH_EQ] = ACTIONS(7670), + [anon_sym_LT_LT_EQ] = ACTIONS(7670), + [anon_sym_GT_GT_EQ] = ACTIONS(7668), + [anon_sym_AMP_EQ] = ACTIONS(7670), + [anon_sym_CARET_EQ] = ACTIONS(7670), + [anon_sym_PIPE_EQ] = ACTIONS(7670), + [anon_sym_and_eq] = ACTIONS(7670), + [anon_sym_or_eq] = ACTIONS(7670), + [anon_sym_xor_eq] = ACTIONS(7670), + [anon_sym_LT_EQ_GT] = ACTIONS(7670), + [anon_sym_or] = ACTIONS(7668), + [anon_sym_and] = ACTIONS(7668), + [anon_sym_bitor] = ACTIONS(7670), + [anon_sym_xor] = ACTIONS(7668), + [anon_sym_bitand] = ACTIONS(7670), + [anon_sym_not_eq] = ACTIONS(7670), + [anon_sym_DASH_DASH] = ACTIONS(7670), + [anon_sym_PLUS_PLUS] = ACTIONS(7670), + [anon_sym_DOT] = ACTIONS(7668), + [anon_sym_DOT_STAR] = ACTIONS(7670), + [anon_sym_DASH_GT] = ACTIONS(7670), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7670), + [anon_sym_override] = ACTIONS(7670), + [anon_sym_GT2] = ACTIONS(7670), + [anon_sym_requires] = ACTIONS(7670), }, [STATE(2930)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_RPAREN] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7231), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7231), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7231), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7231), - [anon_sym_GT_GT] = ACTIONS(7231), - [anon_sym___extension__] = ACTIONS(7233), - [anon_sym___attribute__] = ACTIONS(7233), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(7233), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7233), - [anon_sym_EQ] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7233), - [anon_sym_volatile] = ACTIONS(7233), - [anon_sym_restrict] = ACTIONS(7233), - [anon_sym___restrict__] = ACTIONS(7233), - [anon_sym__Atomic] = ACTIONS(7233), - [anon_sym__Noreturn] = ACTIONS(7233), - [anon_sym_noreturn] = ACTIONS(7233), - [anon_sym__Nonnull] = ACTIONS(7233), - [anon_sym_mutable] = ACTIONS(7233), - [anon_sym_constinit] = ACTIONS(7233), - [anon_sym_consteval] = ACTIONS(7233), - [anon_sym_alignas] = ACTIONS(7233), - [anon_sym__Alignas] = ACTIONS(7233), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_STAR_EQ] = ACTIONS(7233), - [anon_sym_SLASH_EQ] = ACTIONS(7233), - [anon_sym_PERCENT_EQ] = ACTIONS(7233), - [anon_sym_PLUS_EQ] = ACTIONS(7233), - [anon_sym_DASH_EQ] = ACTIONS(7233), - [anon_sym_LT_LT_EQ] = ACTIONS(7233), - [anon_sym_GT_GT_EQ] = ACTIONS(7233), - [anon_sym_AMP_EQ] = ACTIONS(7233), - [anon_sym_CARET_EQ] = ACTIONS(7233), - [anon_sym_PIPE_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7233), - [anon_sym_and] = ACTIONS(7233), - [anon_sym_bitor] = ACTIONS(7233), - [anon_sym_xor] = ACTIONS(7233), - [anon_sym_bitand] = ACTIONS(7233), - [anon_sym_not_eq] = ACTIONS(7233), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7231), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7233), - [anon_sym_override] = ACTIONS(7233), - [anon_sym_requires] = ACTIONS(7233), - [anon_sym_DASH_GT_STAR] = ACTIONS(7233), + [sym_attribute_specifier] = STATE(4057), + [sym_attribute_declaration] = STATE(4480), + [sym_gnu_asm_expression] = STATE(9100), + [sym_virtual_specifier] = STATE(4618), + [sym__function_attributes_end] = STATE(4276), + [sym__function_postfix] = STATE(4851), + [sym_trailing_return_type] = STATE(4331), + [sym_requires_clause] = STATE(4851), + [aux_sym_type_definition_repeat1] = STATE(4057), + [aux_sym_attributed_declarator_repeat1] = STATE(4480), + [aux_sym__function_postfix_repeat1] = STATE(4618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6626), + [anon_sym___attribute] = ACTIONS(6628), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8167), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8170), + [anon_sym_override] = ACTIONS(8170), + [anon_sym_requires] = ACTIONS(8173), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), }, [STATE(2931)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7289), - [anon_sym_COMMA] = ACTIONS(7289), - [anon_sym_RPAREN] = ACTIONS(7289), - [anon_sym_LPAREN2] = ACTIONS(7289), - [anon_sym_DASH] = ACTIONS(7287), - [anon_sym_PLUS] = ACTIONS(7287), - [anon_sym_STAR] = ACTIONS(7287), - [anon_sym_SLASH] = ACTIONS(7287), - [anon_sym_PERCENT] = ACTIONS(7287), - [anon_sym_PIPE_PIPE] = ACTIONS(7289), - [anon_sym_AMP_AMP] = ACTIONS(7289), - [anon_sym_PIPE] = ACTIONS(7287), - [anon_sym_CARET] = ACTIONS(7287), - [anon_sym_AMP] = ACTIONS(7287), - [anon_sym_EQ_EQ] = ACTIONS(7289), - [anon_sym_BANG_EQ] = ACTIONS(7289), - [anon_sym_GT] = ACTIONS(7287), - [anon_sym_GT_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ] = ACTIONS(7287), - [anon_sym_LT] = ACTIONS(7287), - [anon_sym_LT_LT] = ACTIONS(7287), - [anon_sym_GT_GT] = ACTIONS(7287), - [anon_sym___extension__] = ACTIONS(7289), - [sym_ms_restrict_modifier] = ACTIONS(7287), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7289), - [sym_ms_signed_ptr_modifier] = ACTIONS(7289), - [anon_sym__unaligned] = ACTIONS(7289), - [anon_sym___unaligned] = ACTIONS(7289), - [anon_sym_LBRACK] = ACTIONS(7289), - [anon_sym_EQ] = ACTIONS(7287), - [anon_sym_const] = ACTIONS(7287), - [anon_sym_constexpr] = ACTIONS(7289), - [anon_sym_volatile] = ACTIONS(7289), - [anon_sym_restrict] = ACTIONS(7289), - [anon_sym___restrict__] = ACTIONS(7289), - [anon_sym__Atomic] = ACTIONS(7289), - [anon_sym__Noreturn] = ACTIONS(7289), - [anon_sym_noreturn] = ACTIONS(7289), - [anon_sym__Nonnull] = ACTIONS(7289), - [anon_sym_mutable] = ACTIONS(7289), - [anon_sym_constinit] = ACTIONS(7289), - [anon_sym_consteval] = ACTIONS(7289), - [anon_sym_alignas] = ACTIONS(7289), - [anon_sym__Alignas] = ACTIONS(7289), - [anon_sym_QMARK] = ACTIONS(7289), - [anon_sym_STAR_EQ] = ACTIONS(7289), - [anon_sym_SLASH_EQ] = ACTIONS(7289), - [anon_sym_PERCENT_EQ] = ACTIONS(7289), - [anon_sym_PLUS_EQ] = ACTIONS(7289), - [anon_sym_DASH_EQ] = ACTIONS(7289), - [anon_sym_LT_LT_EQ] = ACTIONS(7289), - [anon_sym_GT_GT_EQ] = ACTIONS(7289), - [anon_sym_AMP_EQ] = ACTIONS(7289), - [anon_sym_CARET_EQ] = ACTIONS(7289), - [anon_sym_PIPE_EQ] = ACTIONS(7289), - [anon_sym_LT_EQ_GT] = ACTIONS(7289), - [anon_sym_or] = ACTIONS(7289), - [anon_sym_and] = ACTIONS(7289), - [anon_sym_bitor] = ACTIONS(7289), - [anon_sym_xor] = ACTIONS(7289), - [anon_sym_bitand] = ACTIONS(7289), - [anon_sym_not_eq] = ACTIONS(7289), - [anon_sym_DASH_DASH] = ACTIONS(7289), - [anon_sym_PLUS_PLUS] = ACTIONS(7289), - [anon_sym_DOT] = ACTIONS(7287), - [anon_sym_DOT_STAR] = ACTIONS(7289), - [anon_sym_DASH_GT] = ACTIONS(7287), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7289), - [anon_sym_override] = ACTIONS(7289), - [anon_sym_requires] = ACTIONS(7289), - [anon_sym_DASH_GT_STAR] = ACTIONS(7289), + [sym_template_argument_list] = STATE(3032), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6561), + [anon_sym_COMMA] = ACTIONS(6561), + [anon_sym_RPAREN] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6568), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_PIPE_PIPE] = ACTIONS(6561), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6568), + [anon_sym_CARET] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6561), + [anon_sym_BANG_EQ] = ACTIONS(6561), + [anon_sym_GT] = ACTIONS(6568), + [anon_sym_GT_EQ] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(8867), + [anon_sym_LT_LT] = ACTIONS(6568), + [anon_sym_GT_GT] = ACTIONS(6568), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6561), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6561), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6561), + [anon_sym_or_eq] = ACTIONS(6561), + [anon_sym_xor_eq] = ACTIONS(6561), + [anon_sym_LT_EQ_GT] = ACTIONS(6561), + [anon_sym_or] = ACTIONS(6568), + [anon_sym_and] = ACTIONS(6568), + [anon_sym_bitor] = ACTIONS(6561), + [anon_sym_xor] = ACTIONS(6568), + [anon_sym_bitand] = ACTIONS(6561), + [anon_sym_not_eq] = ACTIONS(6561), + [anon_sym_DASH_DASH] = ACTIONS(6561), + [anon_sym_PLUS_PLUS] = ACTIONS(6561), + [anon_sym_DOT] = ACTIONS(6568), + [anon_sym_DOT_STAR] = ACTIONS(6561), + [anon_sym_DASH_GT] = ACTIONS(6568), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_DASH_GT_STAR] = ACTIONS(6561), }, [STATE(2932)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7201), - [anon_sym_COMMA] = ACTIONS(7201), - [anon_sym_RPAREN] = ACTIONS(7201), - [anon_sym_LPAREN2] = ACTIONS(7201), - [anon_sym_DASH] = ACTIONS(7199), - [anon_sym_PLUS] = ACTIONS(7199), - [anon_sym_STAR] = ACTIONS(7199), - [anon_sym_SLASH] = ACTIONS(7199), - [anon_sym_PERCENT] = ACTIONS(7199), - [anon_sym_PIPE_PIPE] = ACTIONS(7201), - [anon_sym_AMP_AMP] = ACTIONS(7201), - [anon_sym_PIPE] = ACTIONS(7199), - [anon_sym_CARET] = ACTIONS(7199), - [anon_sym_AMP] = ACTIONS(7199), - [anon_sym_EQ_EQ] = ACTIONS(7201), - [anon_sym_BANG_EQ] = ACTIONS(7201), - [anon_sym_GT] = ACTIONS(7199), - [anon_sym_GT_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ] = ACTIONS(7199), - [anon_sym_LT] = ACTIONS(7199), - [anon_sym_LT_LT] = ACTIONS(7199), - [anon_sym_GT_GT] = ACTIONS(7199), - [anon_sym___extension__] = ACTIONS(7201), - [sym_ms_restrict_modifier] = ACTIONS(7199), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(7201), - [sym_ms_signed_ptr_modifier] = ACTIONS(7201), - [anon_sym__unaligned] = ACTIONS(7201), - [anon_sym___unaligned] = ACTIONS(7201), - [anon_sym_LBRACK] = ACTIONS(7201), - [anon_sym_EQ] = ACTIONS(7199), - [anon_sym_const] = ACTIONS(7199), - [anon_sym_constexpr] = ACTIONS(7201), - [anon_sym_volatile] = ACTIONS(7201), - [anon_sym_restrict] = ACTIONS(7201), - [anon_sym___restrict__] = ACTIONS(7201), - [anon_sym__Atomic] = ACTIONS(7201), - [anon_sym__Noreturn] = ACTIONS(7201), - [anon_sym_noreturn] = ACTIONS(7201), - [anon_sym__Nonnull] = ACTIONS(7201), - [anon_sym_mutable] = ACTIONS(7201), - [anon_sym_constinit] = ACTIONS(7201), - [anon_sym_consteval] = ACTIONS(7201), - [anon_sym_alignas] = ACTIONS(7201), - [anon_sym__Alignas] = ACTIONS(7201), - [anon_sym_QMARK] = ACTIONS(7201), - [anon_sym_STAR_EQ] = ACTIONS(7201), - [anon_sym_SLASH_EQ] = ACTIONS(7201), - [anon_sym_PERCENT_EQ] = ACTIONS(7201), - [anon_sym_PLUS_EQ] = ACTIONS(7201), - [anon_sym_DASH_EQ] = ACTIONS(7201), - [anon_sym_LT_LT_EQ] = ACTIONS(7201), - [anon_sym_GT_GT_EQ] = ACTIONS(7201), - [anon_sym_AMP_EQ] = ACTIONS(7201), - [anon_sym_CARET_EQ] = ACTIONS(7201), - [anon_sym_PIPE_EQ] = ACTIONS(7201), - [anon_sym_LT_EQ_GT] = ACTIONS(7201), - [anon_sym_or] = ACTIONS(7201), - [anon_sym_and] = ACTIONS(7201), - [anon_sym_bitor] = ACTIONS(7201), - [anon_sym_xor] = ACTIONS(7201), - [anon_sym_bitand] = ACTIONS(7201), - [anon_sym_not_eq] = ACTIONS(7201), - [anon_sym_DASH_DASH] = ACTIONS(7201), - [anon_sym_PLUS_PLUS] = ACTIONS(7201), - [anon_sym_DOT] = ACTIONS(7199), - [anon_sym_DOT_STAR] = ACTIONS(7201), - [anon_sym_DASH_GT] = ACTIONS(7199), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7201), - [anon_sym_override] = ACTIONS(7201), - [anon_sym_requires] = ACTIONS(7201), - [anon_sym_DASH_GT_STAR] = ACTIONS(7201), + [sym_argument_list] = STATE(5560), + [sym_initializer_list] = STATE(6047), + [aux_sym_sized_type_specifier_repeat1] = STATE(2603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_signed] = ACTIONS(8503), + [anon_sym_unsigned] = ACTIONS(8503), + [anon_sym_long] = ACTIONS(8503), + [anon_sym_short] = ACTIONS(8503), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(2933)] = { - [sym_decltype_auto] = STATE(3593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8871), - [anon_sym_decltype] = ACTIONS(6962), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(2934)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), - [anon_sym_COMMA] = ACTIONS(7457), - [anon_sym_RPAREN] = ACTIONS(7457), - [anon_sym_LPAREN2] = ACTIONS(7457), - [anon_sym_DASH] = ACTIONS(7459), - [anon_sym_PLUS] = ACTIONS(7459), - [anon_sym_STAR] = ACTIONS(7459), - [anon_sym_SLASH] = ACTIONS(7459), - [anon_sym_PERCENT] = ACTIONS(7459), - [anon_sym_PIPE_PIPE] = ACTIONS(7457), - [anon_sym_AMP_AMP] = ACTIONS(7457), - [anon_sym_PIPE] = ACTIONS(7459), - [anon_sym_CARET] = ACTIONS(7459), - [anon_sym_AMP] = ACTIONS(7459), - [anon_sym_EQ_EQ] = ACTIONS(7457), - [anon_sym_BANG_EQ] = ACTIONS(7457), - [anon_sym_GT] = ACTIONS(7459), - [anon_sym_GT_EQ] = ACTIONS(7457), - [anon_sym_LT_EQ] = ACTIONS(7459), - [anon_sym_LT] = ACTIONS(7459), - [anon_sym_LT_LT] = ACTIONS(7459), - [anon_sym_GT_GT] = ACTIONS(7459), - [anon_sym___extension__] = ACTIONS(7457), - [anon_sym___attribute__] = ACTIONS(7457), - [anon_sym___attribute] = ACTIONS(7459), - [anon_sym_COLON] = ACTIONS(7459), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7457), - [anon_sym_EQ] = ACTIONS(7459), - [anon_sym_const] = ACTIONS(7459), - [anon_sym_constexpr] = ACTIONS(7457), - [anon_sym_volatile] = ACTIONS(7457), - [anon_sym_restrict] = ACTIONS(7457), - [anon_sym___restrict__] = ACTIONS(7457), - [anon_sym__Atomic] = ACTIONS(7457), - [anon_sym__Noreturn] = ACTIONS(7457), - [anon_sym_noreturn] = ACTIONS(7457), - [anon_sym__Nonnull] = ACTIONS(7457), - [anon_sym_mutable] = ACTIONS(7457), - [anon_sym_constinit] = ACTIONS(7457), - [anon_sym_consteval] = ACTIONS(7457), - [anon_sym_alignas] = ACTIONS(7457), - [anon_sym__Alignas] = ACTIONS(7457), - [anon_sym_QMARK] = ACTIONS(7457), - [anon_sym_STAR_EQ] = ACTIONS(7457), - [anon_sym_SLASH_EQ] = ACTIONS(7457), - [anon_sym_PERCENT_EQ] = ACTIONS(7457), - [anon_sym_PLUS_EQ] = ACTIONS(7457), - [anon_sym_DASH_EQ] = ACTIONS(7457), - [anon_sym_LT_LT_EQ] = ACTIONS(7457), - [anon_sym_GT_GT_EQ] = ACTIONS(7457), - [anon_sym_AMP_EQ] = ACTIONS(7457), - [anon_sym_CARET_EQ] = ACTIONS(7457), - [anon_sym_PIPE_EQ] = ACTIONS(7457), - [anon_sym_LT_EQ_GT] = ACTIONS(7457), - [anon_sym_or] = ACTIONS(7457), - [anon_sym_and] = ACTIONS(7457), - [anon_sym_bitor] = ACTIONS(7457), - [anon_sym_xor] = ACTIONS(7457), - [anon_sym_bitand] = ACTIONS(7457), - [anon_sym_not_eq] = ACTIONS(7457), - [anon_sym_DASH_DASH] = ACTIONS(7457), - [anon_sym_PLUS_PLUS] = ACTIONS(7457), - [anon_sym_DOT] = ACTIONS(7459), - [anon_sym_DOT_STAR] = ACTIONS(7457), - [anon_sym_DASH_GT] = ACTIONS(7459), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7457), - [anon_sym_override] = ACTIONS(7457), - [anon_sym_requires] = ACTIONS(7457), - [anon_sym_DASH_GT_STAR] = ACTIONS(7457), - }, - [STATE(2935)] = { - [sym_decltype_auto] = STATE(3016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8529), - [anon_sym_decltype] = ACTIONS(6975), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(2936)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym__function_attributes_end] = STATE(4298), - [sym__function_postfix] = STATE(4840), - [sym_trailing_return_type] = STATE(4339), - [sym_requires_clause] = STATE(4840), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8168), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8174), - [anon_sym_override] = ACTIONS(8174), - [anon_sym_requires] = ACTIONS(8177), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), - }, - [STATE(2937)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), - [anon_sym_COMMA] = ACTIONS(7737), - [anon_sym_LPAREN2] = ACTIONS(7737), - [anon_sym_DASH] = ACTIONS(7735), - [anon_sym_PLUS] = ACTIONS(7735), - [anon_sym_STAR] = ACTIONS(7735), - [anon_sym_SLASH] = ACTIONS(7735), - [anon_sym_PERCENT] = ACTIONS(7735), - [anon_sym_PIPE_PIPE] = ACTIONS(7737), - [anon_sym_AMP_AMP] = ACTIONS(7737), - [anon_sym_PIPE] = ACTIONS(7735), - [anon_sym_CARET] = ACTIONS(7735), - [anon_sym_AMP] = ACTIONS(7735), - [anon_sym_EQ_EQ] = ACTIONS(7737), - [anon_sym_BANG_EQ] = ACTIONS(7737), - [anon_sym_GT] = ACTIONS(7735), - [anon_sym_GT_EQ] = ACTIONS(7735), - [anon_sym_LT_EQ] = ACTIONS(7735), - [anon_sym_LT] = ACTIONS(7735), - [anon_sym_LT_LT] = ACTIONS(7735), - [anon_sym_GT_GT] = ACTIONS(7735), - [anon_sym___extension__] = ACTIONS(7737), - [anon_sym___attribute__] = ACTIONS(7737), - [anon_sym___attribute] = ACTIONS(7735), - [anon_sym_LBRACE] = ACTIONS(7737), - [anon_sym_LBRACK] = ACTIONS(7737), - [anon_sym_EQ] = ACTIONS(7735), - [anon_sym_const] = ACTIONS(7735), - [anon_sym_constexpr] = ACTIONS(7737), - [anon_sym_volatile] = ACTIONS(7737), - [anon_sym_restrict] = ACTIONS(7737), - [anon_sym___restrict__] = ACTIONS(7737), - [anon_sym__Atomic] = ACTIONS(7737), - [anon_sym__Noreturn] = ACTIONS(7737), - [anon_sym_noreturn] = ACTIONS(7737), - [anon_sym__Nonnull] = ACTIONS(7737), - [anon_sym_mutable] = ACTIONS(7737), - [anon_sym_constinit] = ACTIONS(7737), - [anon_sym_consteval] = ACTIONS(7737), - [anon_sym_alignas] = ACTIONS(7737), - [anon_sym__Alignas] = ACTIONS(7737), - [anon_sym_QMARK] = ACTIONS(7737), - [anon_sym_STAR_EQ] = ACTIONS(7737), - [anon_sym_SLASH_EQ] = ACTIONS(7737), - [anon_sym_PERCENT_EQ] = ACTIONS(7737), - [anon_sym_PLUS_EQ] = ACTIONS(7737), - [anon_sym_DASH_EQ] = ACTIONS(7737), - [anon_sym_LT_LT_EQ] = ACTIONS(7737), - [anon_sym_GT_GT_EQ] = ACTIONS(7735), - [anon_sym_AMP_EQ] = ACTIONS(7737), - [anon_sym_CARET_EQ] = ACTIONS(7737), - [anon_sym_PIPE_EQ] = ACTIONS(7737), - [anon_sym_and_eq] = ACTIONS(7737), - [anon_sym_or_eq] = ACTIONS(7737), - [anon_sym_xor_eq] = ACTIONS(7737), - [anon_sym_LT_EQ_GT] = ACTIONS(7737), - [anon_sym_or] = ACTIONS(7735), - [anon_sym_and] = ACTIONS(7735), - [anon_sym_bitor] = ACTIONS(7737), - [anon_sym_xor] = ACTIONS(7735), - [anon_sym_bitand] = ACTIONS(7737), - [anon_sym_not_eq] = ACTIONS(7737), - [anon_sym_DASH_DASH] = ACTIONS(7737), - [anon_sym_PLUS_PLUS] = ACTIONS(7737), - [anon_sym_DOT] = ACTIONS(7735), - [anon_sym_DOT_STAR] = ACTIONS(7737), - [anon_sym_DASH_GT] = ACTIONS(7737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7743), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7743), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7743), + [anon_sym_AMP] = ACTIONS(7743), + [anon_sym_EQ_EQ] = ACTIONS(7745), + [anon_sym_BANG_EQ] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7743), + [anon_sym_GT_EQ] = ACTIONS(7745), + [anon_sym_LT_EQ] = ACTIONS(7743), + [anon_sym_LT] = ACTIONS(7743), + [anon_sym_LT_LT] = ACTIONS(7743), + [anon_sym_GT_GT] = ACTIONS(7743), + [anon_sym___extension__] = ACTIONS(7745), + [anon_sym___attribute__] = ACTIONS(7745), + [anon_sym___attribute] = ACTIONS(7743), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_RBRACK] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7745), + [anon_sym_volatile] = ACTIONS(7745), + [anon_sym_restrict] = ACTIONS(7745), + [anon_sym___restrict__] = ACTIONS(7745), + [anon_sym__Atomic] = ACTIONS(7745), + [anon_sym__Noreturn] = ACTIONS(7745), + [anon_sym_noreturn] = ACTIONS(7745), + [anon_sym__Nonnull] = ACTIONS(7745), + [anon_sym_mutable] = ACTIONS(7745), + [anon_sym_constinit] = ACTIONS(7745), + [anon_sym_consteval] = ACTIONS(7745), + [anon_sym_alignas] = ACTIONS(7745), + [anon_sym__Alignas] = ACTIONS(7745), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_STAR_EQ] = ACTIONS(7745), + [anon_sym_SLASH_EQ] = ACTIONS(7745), + [anon_sym_PERCENT_EQ] = ACTIONS(7745), + [anon_sym_PLUS_EQ] = ACTIONS(7745), + [anon_sym_DASH_EQ] = ACTIONS(7745), + [anon_sym_LT_LT_EQ] = ACTIONS(7745), + [anon_sym_GT_GT_EQ] = ACTIONS(7745), + [anon_sym_AMP_EQ] = ACTIONS(7745), + [anon_sym_CARET_EQ] = ACTIONS(7745), + [anon_sym_PIPE_EQ] = ACTIONS(7745), + [anon_sym_and_eq] = ACTIONS(7745), + [anon_sym_or_eq] = ACTIONS(7745), + [anon_sym_xor_eq] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7745), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7745), + [anon_sym_not_eq] = ACTIONS(7745), + [anon_sym_DASH_DASH] = ACTIONS(7745), + [anon_sym_PLUS_PLUS] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(7743), + [anon_sym_DOT_STAR] = ACTIONS(7745), + [anon_sym_DASH_GT] = ACTIONS(7745), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7737), - [anon_sym_override] = ACTIONS(7737), - [anon_sym_GT2] = ACTIONS(7737), - [anon_sym_requires] = ACTIONS(7737), + [anon_sym_final] = ACTIONS(7745), + [anon_sym_override] = ACTIONS(7745), + [anon_sym_requires] = ACTIONS(7745), + }, + [STATE(2934)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), + }, + [STATE(2935)] = { + [sym_catch_clause] = STATE(2917), + [aux_sym_constructor_try_statement_repeat1] = STATE(2917), + [sym_identifier] = ACTIONS(3180), + [aux_sym_preproc_def_token1] = ACTIONS(3180), + [aux_sym_preproc_if_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3180), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3180), + [sym_preproc_directive] = ACTIONS(3180), + [anon_sym_LPAREN2] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym___extension__] = ACTIONS(3180), + [anon_sym_typedef] = ACTIONS(3180), + [anon_sym_virtual] = ACTIONS(3180), + [anon_sym_extern] = ACTIONS(3180), + [anon_sym___attribute__] = ACTIONS(3180), + [anon_sym___attribute] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3182), + [anon_sym___declspec] = ACTIONS(3180), + [anon_sym___based] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_signed] = ACTIONS(3180), + [anon_sym_unsigned] = ACTIONS(3180), + [anon_sym_long] = ACTIONS(3180), + [anon_sym_short] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_register] = ACTIONS(3180), + [anon_sym_inline] = ACTIONS(3180), + [anon_sym___inline] = ACTIONS(3180), + [anon_sym___inline__] = ACTIONS(3180), + [anon_sym___forceinline] = ACTIONS(3180), + [anon_sym_thread_local] = ACTIONS(3180), + [anon_sym___thread] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_constexpr] = ACTIONS(3180), + [anon_sym_volatile] = ACTIONS(3180), + [anon_sym_restrict] = ACTIONS(3180), + [anon_sym___restrict__] = ACTIONS(3180), + [anon_sym__Atomic] = ACTIONS(3180), + [anon_sym__Noreturn] = ACTIONS(3180), + [anon_sym_noreturn] = ACTIONS(3180), + [anon_sym__Nonnull] = ACTIONS(3180), + [anon_sym_mutable] = ACTIONS(3180), + [anon_sym_constinit] = ACTIONS(3180), + [anon_sym_consteval] = ACTIONS(3180), + [anon_sym_alignas] = ACTIONS(3180), + [anon_sym__Alignas] = ACTIONS(3180), + [sym_primitive_type] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_struct] = ACTIONS(3180), + [anon_sym_union] = ACTIONS(3180), + [anon_sym_typename] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3180), + [anon_sym_decltype] = ACTIONS(3180), + [anon_sym_explicit] = ACTIONS(3180), + [anon_sym_private] = ACTIONS(3180), + [anon_sym_template] = ACTIONS(3180), + [anon_sym_operator] = ACTIONS(3180), + [anon_sym_friend] = ACTIONS(3180), + [anon_sym_public] = ACTIONS(3180), + [anon_sym_protected] = ACTIONS(3180), + [anon_sym_static_assert] = ACTIONS(3180), + [anon_sym_catch] = ACTIONS(8835), + [anon_sym_LBRACK_COLON] = ACTIONS(3182), + }, + [STATE(2936)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7721), + [anon_sym_COMMA] = ACTIONS(7721), + [anon_sym_LPAREN2] = ACTIONS(7721), + [anon_sym_DASH] = ACTIONS(7719), + [anon_sym_PLUS] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_SLASH] = ACTIONS(7719), + [anon_sym_PERCENT] = ACTIONS(7719), + [anon_sym_PIPE_PIPE] = ACTIONS(7721), + [anon_sym_AMP_AMP] = ACTIONS(7721), + [anon_sym_PIPE] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_AMP] = ACTIONS(7719), + [anon_sym_EQ_EQ] = ACTIONS(7721), + [anon_sym_BANG_EQ] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7719), + [anon_sym_GT_EQ] = ACTIONS(7719), + [anon_sym_LT_EQ] = ACTIONS(7719), + [anon_sym_LT] = ACTIONS(7719), + [anon_sym_LT_LT] = ACTIONS(7719), + [anon_sym_GT_GT] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7721), + [anon_sym___attribute__] = ACTIONS(7721), + [anon_sym___attribute] = ACTIONS(7719), + [anon_sym_LBRACE] = ACTIONS(7721), + [anon_sym_LBRACK] = ACTIONS(7721), + [anon_sym_EQ] = ACTIONS(7719), + [anon_sym_const] = ACTIONS(7719), + [anon_sym_constexpr] = ACTIONS(7721), + [anon_sym_volatile] = ACTIONS(7721), + [anon_sym_restrict] = ACTIONS(7721), + [anon_sym___restrict__] = ACTIONS(7721), + [anon_sym__Atomic] = ACTIONS(7721), + [anon_sym__Noreturn] = ACTIONS(7721), + [anon_sym_noreturn] = ACTIONS(7721), + [anon_sym__Nonnull] = ACTIONS(7721), + [anon_sym_mutable] = ACTIONS(7721), + [anon_sym_constinit] = ACTIONS(7721), + [anon_sym_consteval] = ACTIONS(7721), + [anon_sym_alignas] = ACTIONS(7721), + [anon_sym__Alignas] = ACTIONS(7721), + [anon_sym_QMARK] = ACTIONS(7721), + [anon_sym_STAR_EQ] = ACTIONS(7721), + [anon_sym_SLASH_EQ] = ACTIONS(7721), + [anon_sym_PERCENT_EQ] = ACTIONS(7721), + [anon_sym_PLUS_EQ] = ACTIONS(7721), + [anon_sym_DASH_EQ] = ACTIONS(7721), + [anon_sym_LT_LT_EQ] = ACTIONS(7721), + [anon_sym_GT_GT_EQ] = ACTIONS(7719), + [anon_sym_AMP_EQ] = ACTIONS(7721), + [anon_sym_CARET_EQ] = ACTIONS(7721), + [anon_sym_PIPE_EQ] = ACTIONS(7721), + [anon_sym_and_eq] = ACTIONS(7721), + [anon_sym_or_eq] = ACTIONS(7721), + [anon_sym_xor_eq] = ACTIONS(7721), + [anon_sym_LT_EQ_GT] = ACTIONS(7721), + [anon_sym_or] = ACTIONS(7719), + [anon_sym_and] = ACTIONS(7719), + [anon_sym_bitor] = ACTIONS(7721), + [anon_sym_xor] = ACTIONS(7719), + [anon_sym_bitand] = ACTIONS(7721), + [anon_sym_not_eq] = ACTIONS(7721), + [anon_sym_DASH_DASH] = ACTIONS(7721), + [anon_sym_PLUS_PLUS] = ACTIONS(7721), + [anon_sym_DOT] = ACTIONS(7719), + [anon_sym_DOT_STAR] = ACTIONS(7721), + [anon_sym_DASH_GT] = ACTIONS(7721), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7721), + [anon_sym_override] = ACTIONS(7721), + [anon_sym_GT2] = ACTIONS(7721), + [anon_sym_requires] = ACTIONS(7721), + }, + [STATE(2937)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7479), + [anon_sym_COMMA] = ACTIONS(7479), + [anon_sym_RPAREN] = ACTIONS(7479), + [anon_sym_LPAREN2] = ACTIONS(7479), + [anon_sym_DASH] = ACTIONS(7499), + [anon_sym_PLUS] = ACTIONS(7499), + [anon_sym_STAR] = ACTIONS(7499), + [anon_sym_SLASH] = ACTIONS(7499), + [anon_sym_PERCENT] = ACTIONS(7499), + [anon_sym_PIPE_PIPE] = ACTIONS(7479), + [anon_sym_AMP_AMP] = ACTIONS(7479), + [anon_sym_PIPE] = ACTIONS(7499), + [anon_sym_CARET] = ACTIONS(7499), + [anon_sym_AMP] = ACTIONS(7499), + [anon_sym_EQ_EQ] = ACTIONS(7479), + [anon_sym_BANG_EQ] = ACTIONS(7479), + [anon_sym_GT] = ACTIONS(7499), + [anon_sym_GT_EQ] = ACTIONS(7479), + [anon_sym_LT_EQ] = ACTIONS(7499), + [anon_sym_LT] = ACTIONS(7499), + [anon_sym_LT_LT] = ACTIONS(7499), + [anon_sym_GT_GT] = ACTIONS(7499), + [anon_sym___extension__] = ACTIONS(7479), + [anon_sym___attribute__] = ACTIONS(7479), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_COLON] = ACTIONS(7499), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7479), + [anon_sym_EQ] = ACTIONS(7499), + [anon_sym_const] = ACTIONS(7499), + [anon_sym_constexpr] = ACTIONS(7479), + [anon_sym_volatile] = ACTIONS(7479), + [anon_sym_restrict] = ACTIONS(7479), + [anon_sym___restrict__] = ACTIONS(7479), + [anon_sym__Atomic] = ACTIONS(7479), + [anon_sym__Noreturn] = ACTIONS(7479), + [anon_sym_noreturn] = ACTIONS(7479), + [anon_sym__Nonnull] = ACTIONS(7479), + [anon_sym_mutable] = ACTIONS(7479), + [anon_sym_constinit] = ACTIONS(7479), + [anon_sym_consteval] = ACTIONS(7479), + [anon_sym_alignas] = ACTIONS(7479), + [anon_sym__Alignas] = ACTIONS(7479), + [anon_sym_QMARK] = ACTIONS(7479), + [anon_sym_STAR_EQ] = ACTIONS(7479), + [anon_sym_SLASH_EQ] = ACTIONS(7479), + [anon_sym_PERCENT_EQ] = ACTIONS(7479), + [anon_sym_PLUS_EQ] = ACTIONS(7479), + [anon_sym_DASH_EQ] = ACTIONS(7479), + [anon_sym_LT_LT_EQ] = ACTIONS(7479), + [anon_sym_GT_GT_EQ] = ACTIONS(7479), + [anon_sym_AMP_EQ] = ACTIONS(7479), + [anon_sym_CARET_EQ] = ACTIONS(7479), + [anon_sym_PIPE_EQ] = ACTIONS(7479), + [anon_sym_LT_EQ_GT] = ACTIONS(7479), + [anon_sym_or] = ACTIONS(7479), + [anon_sym_and] = ACTIONS(7479), + [anon_sym_bitor] = ACTIONS(7479), + [anon_sym_xor] = ACTIONS(7479), + [anon_sym_bitand] = ACTIONS(7479), + [anon_sym_not_eq] = ACTIONS(7479), + [anon_sym_DASH_DASH] = ACTIONS(7479), + [anon_sym_PLUS_PLUS] = ACTIONS(7479), + [anon_sym_DOT] = ACTIONS(7499), + [anon_sym_DOT_STAR] = ACTIONS(7479), + [anon_sym_DASH_GT] = ACTIONS(7499), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7479), + [anon_sym_override] = ACTIONS(7479), + [anon_sym_requires] = ACTIONS(7479), + [anon_sym_DASH_GT_STAR] = ACTIONS(7479), }, [STATE(2938)] = { - [sym_identifier] = ACTIONS(6594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), - [anon_sym_COMMA] = ACTIONS(6601), - [anon_sym_RPAREN] = ACTIONS(6601), - [aux_sym_preproc_if_token2] = ACTIONS(6601), - [aux_sym_preproc_else_token1] = ACTIONS(6601), - [aux_sym_preproc_elif_token1] = ACTIONS(6594), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6601), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6601), - [anon_sym_LPAREN2] = ACTIONS(6601), - [anon_sym_DASH] = ACTIONS(6594), - [anon_sym_PLUS] = ACTIONS(6594), - [anon_sym_STAR] = ACTIONS(6601), - [anon_sym_SLASH] = ACTIONS(6594), - [anon_sym_PERCENT] = ACTIONS(6601), - [anon_sym_PIPE_PIPE] = ACTIONS(6601), - [anon_sym_AMP_AMP] = ACTIONS(6601), - [anon_sym_PIPE] = ACTIONS(6594), - [anon_sym_CARET] = ACTIONS(6601), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_EQ_EQ] = ACTIONS(6601), - [anon_sym_BANG_EQ] = ACTIONS(6601), - [anon_sym_GT] = ACTIONS(6594), - [anon_sym_GT_EQ] = ACTIONS(6601), - [anon_sym_LT_EQ] = ACTIONS(6594), - [anon_sym_LT] = ACTIONS(6594), - [anon_sym_LT_LT] = ACTIONS(6601), - [anon_sym_GT_GT] = ACTIONS(6601), - [anon_sym_SEMI] = ACTIONS(6601), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_RBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6601), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6601), - [anon_sym_LT_EQ_GT] = ACTIONS(6601), - [anon_sym_or] = ACTIONS(6594), - [anon_sym_and] = ACTIONS(6594), - [anon_sym_bitor] = ACTIONS(6594), - [anon_sym_xor] = ACTIONS(6594), - [anon_sym_bitand] = ACTIONS(6594), - [anon_sym_not_eq] = ACTIONS(6594), - [anon_sym_DASH_DASH] = ACTIONS(6601), - [anon_sym_PLUS_PLUS] = ACTIONS(6601), - [anon_sym_DOT] = ACTIONS(6594), - [anon_sym_DOT_STAR] = ACTIONS(6601), - [anon_sym_DASH_GT] = ACTIONS(6601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_final] = ACTIONS(6594), - [anon_sym_override] = ACTIONS(6594), - [anon_sym_requires] = ACTIONS(6594), - [anon_sym_COLON_RBRACK] = ACTIONS(6601), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_RPAREN] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7187), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7187), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7187), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7187), + [anon_sym_GT_GT] = ACTIONS(7187), + [anon_sym___extension__] = ACTIONS(7189), + [anon_sym___attribute__] = ACTIONS(7189), + [anon_sym___attribute] = ACTIONS(7187), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_EQ] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7189), + [anon_sym_volatile] = ACTIONS(7189), + [anon_sym_restrict] = ACTIONS(7189), + [anon_sym___restrict__] = ACTIONS(7189), + [anon_sym__Atomic] = ACTIONS(7189), + [anon_sym__Noreturn] = ACTIONS(7189), + [anon_sym_noreturn] = ACTIONS(7189), + [anon_sym__Nonnull] = ACTIONS(7189), + [anon_sym_mutable] = ACTIONS(7189), + [anon_sym_constinit] = ACTIONS(7189), + [anon_sym_consteval] = ACTIONS(7189), + [anon_sym_alignas] = ACTIONS(7189), + [anon_sym__Alignas] = ACTIONS(7189), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_STAR_EQ] = ACTIONS(7189), + [anon_sym_SLASH_EQ] = ACTIONS(7189), + [anon_sym_PERCENT_EQ] = ACTIONS(7189), + [anon_sym_PLUS_EQ] = ACTIONS(7189), + [anon_sym_DASH_EQ] = ACTIONS(7189), + [anon_sym_LT_LT_EQ] = ACTIONS(7189), + [anon_sym_GT_GT_EQ] = ACTIONS(7189), + [anon_sym_AMP_EQ] = ACTIONS(7189), + [anon_sym_CARET_EQ] = ACTIONS(7189), + [anon_sym_PIPE_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7189), + [anon_sym_and] = ACTIONS(7189), + [anon_sym_bitor] = ACTIONS(7189), + [anon_sym_xor] = ACTIONS(7189), + [anon_sym_bitand] = ACTIONS(7189), + [anon_sym_not_eq] = ACTIONS(7189), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7187), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7189), + [anon_sym_override] = ACTIONS(7189), + [anon_sym_requires] = ACTIONS(7189), + [anon_sym_DASH_GT_STAR] = ACTIONS(7189), }, [STATE(2939)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), - [anon_sym_COMMA] = ACTIONS(7649), - [anon_sym_LPAREN2] = ACTIONS(7649), - [anon_sym_DASH] = ACTIONS(7647), - [anon_sym_PLUS] = ACTIONS(7647), - [anon_sym_STAR] = ACTIONS(7647), - [anon_sym_SLASH] = ACTIONS(7647), - [anon_sym_PERCENT] = ACTIONS(7647), - [anon_sym_PIPE_PIPE] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7649), - [anon_sym_PIPE] = ACTIONS(7647), - [anon_sym_CARET] = ACTIONS(7647), - [anon_sym_AMP] = ACTIONS(7647), - [anon_sym_EQ_EQ] = ACTIONS(7649), - [anon_sym_BANG_EQ] = ACTIONS(7649), - [anon_sym_GT] = ACTIONS(7647), - [anon_sym_GT_EQ] = ACTIONS(7647), - [anon_sym_LT_EQ] = ACTIONS(7647), - [anon_sym_LT] = ACTIONS(7647), - [anon_sym_LT_LT] = ACTIONS(7647), - [anon_sym_GT_GT] = ACTIONS(7647), - [anon_sym___extension__] = ACTIONS(7649), - [anon_sym___attribute__] = ACTIONS(7649), - [anon_sym___attribute] = ACTIONS(7647), - [anon_sym_LBRACE] = ACTIONS(7649), - [anon_sym_LBRACK] = ACTIONS(7649), - [anon_sym_EQ] = ACTIONS(7647), - [anon_sym_const] = ACTIONS(7647), - [anon_sym_constexpr] = ACTIONS(7649), - [anon_sym_volatile] = ACTIONS(7649), - [anon_sym_restrict] = ACTIONS(7649), - [anon_sym___restrict__] = ACTIONS(7649), - [anon_sym__Atomic] = ACTIONS(7649), - [anon_sym__Noreturn] = ACTIONS(7649), - [anon_sym_noreturn] = ACTIONS(7649), - [anon_sym__Nonnull] = ACTIONS(7649), - [anon_sym_mutable] = ACTIONS(7649), - [anon_sym_constinit] = ACTIONS(7649), - [anon_sym_consteval] = ACTIONS(7649), - [anon_sym_alignas] = ACTIONS(7649), - [anon_sym__Alignas] = ACTIONS(7649), - [anon_sym_QMARK] = ACTIONS(7649), - [anon_sym_STAR_EQ] = ACTIONS(7649), - [anon_sym_SLASH_EQ] = ACTIONS(7649), - [anon_sym_PERCENT_EQ] = ACTIONS(7649), - [anon_sym_PLUS_EQ] = ACTIONS(7649), - [anon_sym_DASH_EQ] = ACTIONS(7649), - [anon_sym_LT_LT_EQ] = ACTIONS(7649), - [anon_sym_GT_GT_EQ] = ACTIONS(7647), - [anon_sym_AMP_EQ] = ACTIONS(7649), - [anon_sym_CARET_EQ] = ACTIONS(7649), - [anon_sym_PIPE_EQ] = ACTIONS(7649), - [anon_sym_and_eq] = ACTIONS(7649), - [anon_sym_or_eq] = ACTIONS(7649), - [anon_sym_xor_eq] = ACTIONS(7649), - [anon_sym_LT_EQ_GT] = ACTIONS(7649), - [anon_sym_or] = ACTIONS(7647), - [anon_sym_and] = ACTIONS(7647), - [anon_sym_bitor] = ACTIONS(7649), - [anon_sym_xor] = ACTIONS(7647), - [anon_sym_bitand] = ACTIONS(7649), - [anon_sym_not_eq] = ACTIONS(7649), - [anon_sym_DASH_DASH] = ACTIONS(7649), - [anon_sym_PLUS_PLUS] = ACTIONS(7649), - [anon_sym_DOT] = ACTIONS(7647), - [anon_sym_DOT_STAR] = ACTIONS(7649), - [anon_sym_DASH_GT] = ACTIONS(7649), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7649), - [anon_sym_override] = ACTIONS(7649), - [anon_sym_GT2] = ACTIONS(7649), - [anon_sym_requires] = ACTIONS(7649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7158), + [anon_sym_COMMA] = ACTIONS(7158), + [anon_sym_RPAREN] = ACTIONS(7158), + [anon_sym_LPAREN2] = ACTIONS(7158), + [anon_sym_DASH] = ACTIONS(7156), + [anon_sym_PLUS] = ACTIONS(7156), + [anon_sym_STAR] = ACTIONS(7156), + [anon_sym_SLASH] = ACTIONS(7156), + [anon_sym_PERCENT] = ACTIONS(7156), + [anon_sym_PIPE_PIPE] = ACTIONS(7158), + [anon_sym_AMP_AMP] = ACTIONS(7158), + [anon_sym_PIPE] = ACTIONS(7156), + [anon_sym_CARET] = ACTIONS(7156), + [anon_sym_AMP] = ACTIONS(7156), + [anon_sym_EQ_EQ] = ACTIONS(7158), + [anon_sym_BANG_EQ] = ACTIONS(7158), + [anon_sym_GT] = ACTIONS(7156), + [anon_sym_GT_EQ] = ACTIONS(7158), + [anon_sym_LT_EQ] = ACTIONS(7156), + [anon_sym_LT] = ACTIONS(7156), + [anon_sym_LT_LT] = ACTIONS(7156), + [anon_sym_GT_GT] = ACTIONS(7156), + [anon_sym___extension__] = ACTIONS(7158), + [sym_ms_restrict_modifier] = ACTIONS(7156), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7158), + [sym_ms_signed_ptr_modifier] = ACTIONS(7158), + [anon_sym__unaligned] = ACTIONS(7158), + [anon_sym___unaligned] = ACTIONS(7158), + [anon_sym_LBRACK] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(7156), + [anon_sym_const] = ACTIONS(7156), + [anon_sym_constexpr] = ACTIONS(7158), + [anon_sym_volatile] = ACTIONS(7158), + [anon_sym_restrict] = ACTIONS(7158), + [anon_sym___restrict__] = ACTIONS(7158), + [anon_sym__Atomic] = ACTIONS(7158), + [anon_sym__Noreturn] = ACTIONS(7158), + [anon_sym_noreturn] = ACTIONS(7158), + [anon_sym__Nonnull] = ACTIONS(7158), + [anon_sym_mutable] = ACTIONS(7158), + [anon_sym_constinit] = ACTIONS(7158), + [anon_sym_consteval] = ACTIONS(7158), + [anon_sym_alignas] = ACTIONS(7158), + [anon_sym__Alignas] = ACTIONS(7158), + [anon_sym_QMARK] = ACTIONS(7158), + [anon_sym_STAR_EQ] = ACTIONS(7158), + [anon_sym_SLASH_EQ] = ACTIONS(7158), + [anon_sym_PERCENT_EQ] = ACTIONS(7158), + [anon_sym_PLUS_EQ] = ACTIONS(7158), + [anon_sym_DASH_EQ] = ACTIONS(7158), + [anon_sym_LT_LT_EQ] = ACTIONS(7158), + [anon_sym_GT_GT_EQ] = ACTIONS(7158), + [anon_sym_AMP_EQ] = ACTIONS(7158), + [anon_sym_CARET_EQ] = ACTIONS(7158), + [anon_sym_PIPE_EQ] = ACTIONS(7158), + [anon_sym_LT_EQ_GT] = ACTIONS(7158), + [anon_sym_or] = ACTIONS(7158), + [anon_sym_and] = ACTIONS(7158), + [anon_sym_bitor] = ACTIONS(7158), + [anon_sym_xor] = ACTIONS(7158), + [anon_sym_bitand] = ACTIONS(7158), + [anon_sym_not_eq] = ACTIONS(7158), + [anon_sym_DASH_DASH] = ACTIONS(7158), + [anon_sym_PLUS_PLUS] = ACTIONS(7158), + [anon_sym_DOT] = ACTIONS(7156), + [anon_sym_DOT_STAR] = ACTIONS(7158), + [anon_sym_DASH_GT] = ACTIONS(7156), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7158), + [anon_sym_override] = ACTIONS(7158), + [anon_sym_requires] = ACTIONS(7158), + [anon_sym_DASH_GT_STAR] = ACTIONS(7158), }, [STATE(2940)] = { - [sym_catch_clause] = STATE(2926), - [aux_sym_constructor_try_statement_repeat1] = STATE(2926), - [sym_identifier] = ACTIONS(3165), - [aux_sym_preproc_def_token1] = ACTIONS(3165), - [aux_sym_preproc_if_token1] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3165), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3165), - [sym_preproc_directive] = ACTIONS(3165), - [anon_sym_LPAREN2] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym___extension__] = ACTIONS(3165), - [anon_sym_typedef] = ACTIONS(3165), - [anon_sym_virtual] = ACTIONS(3165), - [anon_sym_extern] = ACTIONS(3165), - [anon_sym___attribute__] = ACTIONS(3165), - [anon_sym___attribute] = ACTIONS(3165), - [anon_sym_using] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3167), - [anon_sym___declspec] = ACTIONS(3165), - [anon_sym___based] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_signed] = ACTIONS(3165), - [anon_sym_unsigned] = ACTIONS(3165), - [anon_sym_long] = ACTIONS(3165), - [anon_sym_short] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_static] = ACTIONS(3165), - [anon_sym_register] = ACTIONS(3165), - [anon_sym_inline] = ACTIONS(3165), - [anon_sym___inline] = ACTIONS(3165), - [anon_sym___inline__] = ACTIONS(3165), - [anon_sym___forceinline] = ACTIONS(3165), - [anon_sym_thread_local] = ACTIONS(3165), - [anon_sym___thread] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_constexpr] = ACTIONS(3165), - [anon_sym_volatile] = ACTIONS(3165), - [anon_sym_restrict] = ACTIONS(3165), - [anon_sym___restrict__] = ACTIONS(3165), - [anon_sym__Atomic] = ACTIONS(3165), - [anon_sym__Noreturn] = ACTIONS(3165), - [anon_sym_noreturn] = ACTIONS(3165), - [anon_sym__Nonnull] = ACTIONS(3165), - [anon_sym_mutable] = ACTIONS(3165), - [anon_sym_constinit] = ACTIONS(3165), - [anon_sym_consteval] = ACTIONS(3165), - [anon_sym_alignas] = ACTIONS(3165), - [anon_sym__Alignas] = ACTIONS(3165), - [sym_primitive_type] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_typename] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3165), - [anon_sym_decltype] = ACTIONS(3165), - [anon_sym_explicit] = ACTIONS(3165), - [anon_sym_private] = ACTIONS(3165), - [anon_sym_template] = ACTIONS(3165), - [anon_sym_operator] = ACTIONS(3165), - [anon_sym_friend] = ACTIONS(3165), - [anon_sym_public] = ACTIONS(3165), - [anon_sym_protected] = ACTIONS(3165), - [anon_sym_static_assert] = ACTIONS(3165), - [anon_sym_catch] = ACTIONS(8841), - [anon_sym_LBRACK_COLON] = ACTIONS(3167), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7244), + [anon_sym_COMMA] = ACTIONS(7244), + [anon_sym_RPAREN] = ACTIONS(7244), + [anon_sym_LPAREN2] = ACTIONS(7244), + [anon_sym_DASH] = ACTIONS(7242), + [anon_sym_PLUS] = ACTIONS(7242), + [anon_sym_STAR] = ACTIONS(7242), + [anon_sym_SLASH] = ACTIONS(7242), + [anon_sym_PERCENT] = ACTIONS(7242), + [anon_sym_PIPE_PIPE] = ACTIONS(7244), + [anon_sym_AMP_AMP] = ACTIONS(7244), + [anon_sym_PIPE] = ACTIONS(7242), + [anon_sym_CARET] = ACTIONS(7242), + [anon_sym_AMP] = ACTIONS(7242), + [anon_sym_EQ_EQ] = ACTIONS(7244), + [anon_sym_BANG_EQ] = ACTIONS(7244), + [anon_sym_GT] = ACTIONS(7242), + [anon_sym_GT_EQ] = ACTIONS(7244), + [anon_sym_LT_EQ] = ACTIONS(7242), + [anon_sym_LT] = ACTIONS(7242), + [anon_sym_LT_LT] = ACTIONS(7242), + [anon_sym_GT_GT] = ACTIONS(7242), + [anon_sym___extension__] = ACTIONS(7244), + [sym_ms_restrict_modifier] = ACTIONS(7242), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(7244), + [sym_ms_signed_ptr_modifier] = ACTIONS(7244), + [anon_sym__unaligned] = ACTIONS(7244), + [anon_sym___unaligned] = ACTIONS(7244), + [anon_sym_LBRACK] = ACTIONS(7244), + [anon_sym_EQ] = ACTIONS(7242), + [anon_sym_const] = ACTIONS(7242), + [anon_sym_constexpr] = ACTIONS(7244), + [anon_sym_volatile] = ACTIONS(7244), + [anon_sym_restrict] = ACTIONS(7244), + [anon_sym___restrict__] = ACTIONS(7244), + [anon_sym__Atomic] = ACTIONS(7244), + [anon_sym__Noreturn] = ACTIONS(7244), + [anon_sym_noreturn] = ACTIONS(7244), + [anon_sym__Nonnull] = ACTIONS(7244), + [anon_sym_mutable] = ACTIONS(7244), + [anon_sym_constinit] = ACTIONS(7244), + [anon_sym_consteval] = ACTIONS(7244), + [anon_sym_alignas] = ACTIONS(7244), + [anon_sym__Alignas] = ACTIONS(7244), + [anon_sym_QMARK] = ACTIONS(7244), + [anon_sym_STAR_EQ] = ACTIONS(7244), + [anon_sym_SLASH_EQ] = ACTIONS(7244), + [anon_sym_PERCENT_EQ] = ACTIONS(7244), + [anon_sym_PLUS_EQ] = ACTIONS(7244), + [anon_sym_DASH_EQ] = ACTIONS(7244), + [anon_sym_LT_LT_EQ] = ACTIONS(7244), + [anon_sym_GT_GT_EQ] = ACTIONS(7244), + [anon_sym_AMP_EQ] = ACTIONS(7244), + [anon_sym_CARET_EQ] = ACTIONS(7244), + [anon_sym_PIPE_EQ] = ACTIONS(7244), + [anon_sym_LT_EQ_GT] = ACTIONS(7244), + [anon_sym_or] = ACTIONS(7244), + [anon_sym_and] = ACTIONS(7244), + [anon_sym_bitor] = ACTIONS(7244), + [anon_sym_xor] = ACTIONS(7244), + [anon_sym_bitand] = ACTIONS(7244), + [anon_sym_not_eq] = ACTIONS(7244), + [anon_sym_DASH_DASH] = ACTIONS(7244), + [anon_sym_PLUS_PLUS] = ACTIONS(7244), + [anon_sym_DOT] = ACTIONS(7242), + [anon_sym_DOT_STAR] = ACTIONS(7244), + [anon_sym_DASH_GT] = ACTIONS(7242), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7244), + [anon_sym_override] = ACTIONS(7244), + [anon_sym_requires] = ACTIONS(7244), + [anon_sym_DASH_GT_STAR] = ACTIONS(7244), }, [STATE(2941)] = { - [sym_type_qualifier] = STATE(2923), - [sym_alignas_qualifier] = STATE(2726), - [aux_sym__type_definition_type_repeat1] = STATE(2923), - [aux_sym_sized_type_specifier_repeat1] = STATE(3378), - [sym_identifier] = ACTIONS(8873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [aux_sym_preproc_if_token2] = ACTIONS(7249), - [aux_sym_preproc_else_token1] = ACTIONS(7249), - [aux_sym_preproc_elif_token1] = ACTIONS(7251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7249), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(8756), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(8876), - [anon_sym_unsigned] = ACTIONS(8876), - [anon_sym_long] = ACTIONS(8876), - [anon_sym_short] = ACTIONS(8876), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(8756), - [anon_sym_constexpr] = ACTIONS(8756), - [anon_sym_volatile] = ACTIONS(8756), - [anon_sym_restrict] = ACTIONS(8756), - [anon_sym___restrict__] = ACTIONS(8756), - [anon_sym__Atomic] = ACTIONS(8756), - [anon_sym__Noreturn] = ACTIONS(8756), - [anon_sym_noreturn] = ACTIONS(8756), - [anon_sym__Nonnull] = ACTIONS(8756), - [anon_sym_mutable] = ACTIONS(8756), - [anon_sym_constinit] = ACTIONS(8756), - [anon_sym_consteval] = ACTIONS(8756), - [anon_sym_alignas] = ACTIONS(8761), - [anon_sym__Alignas] = ACTIONS(8761), - [sym_primitive_type] = ACTIONS(8878), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7743), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7743), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7743), + [anon_sym_AMP] = ACTIONS(7743), + [anon_sym_EQ_EQ] = ACTIONS(7745), + [anon_sym_BANG_EQ] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7743), + [anon_sym_GT_EQ] = ACTIONS(7743), + [anon_sym_LT_EQ] = ACTIONS(7743), + [anon_sym_LT] = ACTIONS(7743), + [anon_sym_LT_LT] = ACTIONS(7743), + [anon_sym_GT_GT] = ACTIONS(7743), + [anon_sym___extension__] = ACTIONS(7745), + [anon_sym___attribute__] = ACTIONS(7745), + [anon_sym___attribute] = ACTIONS(7743), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7745), + [anon_sym_volatile] = ACTIONS(7745), + [anon_sym_restrict] = ACTIONS(7745), + [anon_sym___restrict__] = ACTIONS(7745), + [anon_sym__Atomic] = ACTIONS(7745), + [anon_sym__Noreturn] = ACTIONS(7745), + [anon_sym_noreturn] = ACTIONS(7745), + [anon_sym__Nonnull] = ACTIONS(7745), + [anon_sym_mutable] = ACTIONS(7745), + [anon_sym_constinit] = ACTIONS(7745), + [anon_sym_consteval] = ACTIONS(7745), + [anon_sym_alignas] = ACTIONS(7745), + [anon_sym__Alignas] = ACTIONS(7745), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_STAR_EQ] = ACTIONS(7745), + [anon_sym_SLASH_EQ] = ACTIONS(7745), + [anon_sym_PERCENT_EQ] = ACTIONS(7745), + [anon_sym_PLUS_EQ] = ACTIONS(7745), + [anon_sym_DASH_EQ] = ACTIONS(7745), + [anon_sym_LT_LT_EQ] = ACTIONS(7745), + [anon_sym_GT_GT_EQ] = ACTIONS(7743), + [anon_sym_AMP_EQ] = ACTIONS(7745), + [anon_sym_CARET_EQ] = ACTIONS(7745), + [anon_sym_PIPE_EQ] = ACTIONS(7745), + [anon_sym_and_eq] = ACTIONS(7745), + [anon_sym_or_eq] = ACTIONS(7745), + [anon_sym_xor_eq] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7743), + [anon_sym_and] = ACTIONS(7743), + [anon_sym_bitor] = ACTIONS(7745), + [anon_sym_xor] = ACTIONS(7743), + [anon_sym_bitand] = ACTIONS(7745), + [anon_sym_not_eq] = ACTIONS(7745), + [anon_sym_DASH_DASH] = ACTIONS(7745), + [anon_sym_PLUS_PLUS] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(7743), + [anon_sym_DOT_STAR] = ACTIONS(7745), + [anon_sym_DASH_GT] = ACTIONS(7745), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7745), + [anon_sym_override] = ACTIONS(7745), + [anon_sym_GT2] = ACTIONS(7745), + [anon_sym_requires] = ACTIONS(7745), }, [STATE(2942)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + [sym_decltype_auto] = STATE(2968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8524), + [anon_sym_decltype] = ACTIONS(6935), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(2943)] = { - [sym_attribute_specifier] = STATE(4124), - [sym_attribute_declaration] = STATE(4490), - [sym_gnu_asm_expression] = STATE(9129), - [sym_virtual_specifier] = STATE(4610), - [sym__function_attributes_end] = STATE(4300), - [sym__function_postfix] = STATE(4890), - [sym_trailing_return_type] = STATE(4347), - [sym_requires_clause] = STATE(4890), - [aux_sym_type_definition_repeat1] = STATE(4124), - [aux_sym_attributed_declarator_repeat1] = STATE(4490), - [aux_sym__function_postfix_repeat1] = STATE(4610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6646), - [anon_sym___attribute] = ACTIONS(6648), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6650), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8271), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6669), - [anon_sym_override] = ACTIONS(6669), - [anon_sym_requires] = ACTIONS(6671), - [anon_sym_DASH_GT_STAR] = ACTIONS(7966), + [sym_attribute_specifier] = STATE(2031), + [sym_attribute_declaration] = STATE(3148), + [aux_sym_type_definition_repeat1] = STATE(2031), + [aux_sym_attributed_declarator_repeat1] = STATE(3148), + [sym_identifier] = ACTIONS(8870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8872), + [anon_sym_COMMA] = ACTIONS(8872), + [anon_sym_RPAREN] = ACTIONS(8872), + [aux_sym_preproc_if_token2] = ACTIONS(8872), + [aux_sym_preproc_else_token1] = ACTIONS(8872), + [aux_sym_preproc_elif_token1] = ACTIONS(8870), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8872), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8872), + [anon_sym_LPAREN2] = ACTIONS(8872), + [anon_sym_DASH] = ACTIONS(8870), + [anon_sym_PLUS] = ACTIONS(8870), + [anon_sym_STAR] = ACTIONS(8870), + [anon_sym_SLASH] = ACTIONS(8870), + [anon_sym_PERCENT] = ACTIONS(8870), + [anon_sym_PIPE_PIPE] = ACTIONS(8872), + [anon_sym_AMP_AMP] = ACTIONS(8872), + [anon_sym_PIPE] = ACTIONS(8870), + [anon_sym_CARET] = ACTIONS(8870), + [anon_sym_AMP] = ACTIONS(8870), + [anon_sym_EQ_EQ] = ACTIONS(8872), + [anon_sym_BANG_EQ] = ACTIONS(8872), + [anon_sym_GT] = ACTIONS(8870), + [anon_sym_GT_EQ] = ACTIONS(8872), + [anon_sym_LT_EQ] = ACTIONS(8870), + [anon_sym_LT] = ACTIONS(8870), + [anon_sym_LT_LT] = ACTIONS(8870), + [anon_sym_GT_GT] = ACTIONS(8870), + [anon_sym_SEMI] = ACTIONS(8872), + [anon_sym___attribute__] = ACTIONS(6481), + [anon_sym___attribute] = ACTIONS(6481), + [anon_sym_COLON] = ACTIONS(8870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8872), + [anon_sym_RBRACE] = ACTIONS(8872), + [anon_sym_LBRACK] = ACTIONS(8870), + [anon_sym_EQ] = ACTIONS(8870), + [anon_sym_QMARK] = ACTIONS(8872), + [anon_sym_STAR_EQ] = ACTIONS(8872), + [anon_sym_SLASH_EQ] = ACTIONS(8872), + [anon_sym_PERCENT_EQ] = ACTIONS(8872), + [anon_sym_PLUS_EQ] = ACTIONS(8872), + [anon_sym_DASH_EQ] = ACTIONS(8872), + [anon_sym_LT_LT_EQ] = ACTIONS(8872), + [anon_sym_GT_GT_EQ] = ACTIONS(8872), + [anon_sym_AMP_EQ] = ACTIONS(8872), + [anon_sym_CARET_EQ] = ACTIONS(8872), + [anon_sym_PIPE_EQ] = ACTIONS(8872), + [anon_sym_and_eq] = ACTIONS(8870), + [anon_sym_or_eq] = ACTIONS(8870), + [anon_sym_xor_eq] = ACTIONS(8870), + [anon_sym_LT_EQ_GT] = ACTIONS(8872), + [anon_sym_or] = ACTIONS(8870), + [anon_sym_and] = ACTIONS(8870), + [anon_sym_bitor] = ACTIONS(8870), + [anon_sym_xor] = ACTIONS(8870), + [anon_sym_bitand] = ACTIONS(8870), + [anon_sym_not_eq] = ACTIONS(8870), + [anon_sym_DASH_DASH] = ACTIONS(8872), + [anon_sym_PLUS_PLUS] = ACTIONS(8872), + [anon_sym_DOT] = ACTIONS(8870), + [anon_sym_DOT_STAR] = ACTIONS(8872), + [anon_sym_DASH_GT] = ACTIONS(8872), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8870), + [anon_sym_override] = ACTIONS(8870), + [anon_sym_requires] = ACTIONS(8870), + [anon_sym_COLON_RBRACK] = ACTIONS(8872), }, [STATE(2944)] = { - [sym_argument_list] = STATE(5537), - [sym_initializer_list] = STATE(6093), - [aux_sym_sized_type_specifier_repeat1] = STATE(2614), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8569), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_signed] = ACTIONS(8535), - [anon_sym_unsigned] = ACTIONS(8535), - [anon_sym_long] = ACTIONS(8535), - [anon_sym_short] = ACTIONS(8535), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + [sym_virtual_specifier] = STATE(3431), + [sym__function_postfix] = STATE(3658), + [sym_requires_clause] = STATE(3658), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7874), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7876), + [anon_sym_or_eq] = ACTIONS(7876), + [anon_sym_xor_eq] = ACTIONS(7876), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7874), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6557), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), }, [STATE(2945)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), - [anon_sym_COMMA] = ACTIONS(7749), - [anon_sym_LPAREN2] = ACTIONS(7749), - [anon_sym_DASH] = ACTIONS(7747), - [anon_sym_PLUS] = ACTIONS(7747), - [anon_sym_STAR] = ACTIONS(7747), - [anon_sym_SLASH] = ACTIONS(7747), - [anon_sym_PERCENT] = ACTIONS(7747), - [anon_sym_PIPE_PIPE] = ACTIONS(7749), - [anon_sym_AMP_AMP] = ACTIONS(7749), - [anon_sym_PIPE] = ACTIONS(7747), - [anon_sym_CARET] = ACTIONS(7747), - [anon_sym_AMP] = ACTIONS(7747), - [anon_sym_EQ_EQ] = ACTIONS(7749), - [anon_sym_BANG_EQ] = ACTIONS(7749), - [anon_sym_GT] = ACTIONS(7747), - [anon_sym_GT_EQ] = ACTIONS(7747), - [anon_sym_LT_EQ] = ACTIONS(7747), - [anon_sym_LT] = ACTIONS(7747), - [anon_sym_LT_LT] = ACTIONS(7747), - [anon_sym_GT_GT] = ACTIONS(7747), - [anon_sym___extension__] = ACTIONS(7749), - [anon_sym___attribute__] = ACTIONS(7749), - [anon_sym___attribute] = ACTIONS(7747), - [anon_sym_LBRACE] = ACTIONS(7749), - [anon_sym_LBRACK] = ACTIONS(7749), - [anon_sym_EQ] = ACTIONS(7747), - [anon_sym_const] = ACTIONS(7747), - [anon_sym_constexpr] = ACTIONS(7749), - [anon_sym_volatile] = ACTIONS(7749), - [anon_sym_restrict] = ACTIONS(7749), - [anon_sym___restrict__] = ACTIONS(7749), - [anon_sym__Atomic] = ACTIONS(7749), - [anon_sym__Noreturn] = ACTIONS(7749), - [anon_sym_noreturn] = ACTIONS(7749), - [anon_sym__Nonnull] = ACTIONS(7749), - [anon_sym_mutable] = ACTIONS(7749), - [anon_sym_constinit] = ACTIONS(7749), - [anon_sym_consteval] = ACTIONS(7749), - [anon_sym_alignas] = ACTIONS(7749), - [anon_sym__Alignas] = ACTIONS(7749), - [anon_sym_QMARK] = ACTIONS(7749), - [anon_sym_STAR_EQ] = ACTIONS(7749), - [anon_sym_SLASH_EQ] = ACTIONS(7749), - [anon_sym_PERCENT_EQ] = ACTIONS(7749), - [anon_sym_PLUS_EQ] = ACTIONS(7749), - [anon_sym_DASH_EQ] = ACTIONS(7749), - [anon_sym_LT_LT_EQ] = ACTIONS(7749), - [anon_sym_GT_GT_EQ] = ACTIONS(7747), - [anon_sym_AMP_EQ] = ACTIONS(7749), - [anon_sym_CARET_EQ] = ACTIONS(7749), - [anon_sym_PIPE_EQ] = ACTIONS(7749), - [anon_sym_and_eq] = ACTIONS(7749), - [anon_sym_or_eq] = ACTIONS(7749), - [anon_sym_xor_eq] = ACTIONS(7749), - [anon_sym_LT_EQ_GT] = ACTIONS(7749), - [anon_sym_or] = ACTIONS(7747), - [anon_sym_and] = ACTIONS(7747), - [anon_sym_bitor] = ACTIONS(7749), - [anon_sym_xor] = ACTIONS(7747), - [anon_sym_bitand] = ACTIONS(7749), - [anon_sym_not_eq] = ACTIONS(7749), - [anon_sym_DASH_DASH] = ACTIONS(7749), - [anon_sym_PLUS_PLUS] = ACTIONS(7749), - [anon_sym_DOT] = ACTIONS(7747), - [anon_sym_DOT_STAR] = ACTIONS(7749), - [anon_sym_DASH_GT] = ACTIONS(7749), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7749), - [anon_sym_override] = ACTIONS(7749), - [anon_sym_GT2] = ACTIONS(7749), - [anon_sym_requires] = ACTIONS(7749), + [sym_template_argument_list] = STATE(3093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6570), + [anon_sym_PLUS] = ACTIONS(6570), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6570), + [anon_sym_PIPE_PIPE] = ACTIONS(6563), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6570), + [anon_sym_CARET] = ACTIONS(6570), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6563), + [anon_sym_BANG_EQ] = ACTIONS(6563), + [anon_sym_GT] = ACTIONS(6570), + [anon_sym_GT_EQ] = ACTIONS(6563), + [anon_sym_LT_EQ] = ACTIONS(6570), + [anon_sym_LT] = ACTIONS(8874), + [anon_sym_LT_LT] = ACTIONS(6570), + [anon_sym_GT_GT] = ACTIONS(6570), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_RBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6563), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6561), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6561), + [anon_sym_or_eq] = ACTIONS(6561), + [anon_sym_xor_eq] = ACTIONS(6561), + [anon_sym_LT_EQ_GT] = ACTIONS(6563), + [anon_sym_or] = ACTIONS(6570), + [anon_sym_and] = ACTIONS(6570), + [anon_sym_bitor] = ACTIONS(6563), + [anon_sym_xor] = ACTIONS(6570), + [anon_sym_bitand] = ACTIONS(6563), + [anon_sym_not_eq] = ACTIONS(6563), + [anon_sym_DASH_DASH] = ACTIONS(6563), + [anon_sym_PLUS_PLUS] = ACTIONS(6563), + [anon_sym_DOT] = ACTIONS(6570), + [anon_sym_DOT_STAR] = ACTIONS(6563), + [anon_sym_DASH_GT] = ACTIONS(6563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), }, [STATE(2946)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7717), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7717), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7717), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7717), - [anon_sym_GT_GT] = ACTIONS(7717), - [anon_sym___extension__] = ACTIONS(7719), - [anon_sym___attribute__] = ACTIONS(7719), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(7717), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7719), - [anon_sym_volatile] = ACTIONS(7719), - [anon_sym_restrict] = ACTIONS(7719), - [anon_sym___restrict__] = ACTIONS(7719), - [anon_sym__Atomic] = ACTIONS(7719), - [anon_sym__Noreturn] = ACTIONS(7719), - [anon_sym_noreturn] = ACTIONS(7719), - [anon_sym__Nonnull] = ACTIONS(7719), - [anon_sym_mutable] = ACTIONS(7719), - [anon_sym_constinit] = ACTIONS(7719), - [anon_sym_consteval] = ACTIONS(7719), - [anon_sym_alignas] = ACTIONS(7719), - [anon_sym__Alignas] = ACTIONS(7719), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_STAR_EQ] = ACTIONS(7719), - [anon_sym_SLASH_EQ] = ACTIONS(7719), - [anon_sym_PERCENT_EQ] = ACTIONS(7719), - [anon_sym_PLUS_EQ] = ACTIONS(7719), - [anon_sym_DASH_EQ] = ACTIONS(7719), - [anon_sym_LT_LT_EQ] = ACTIONS(7719), - [anon_sym_GT_GT_EQ] = ACTIONS(7717), - [anon_sym_AMP_EQ] = ACTIONS(7719), - [anon_sym_CARET_EQ] = ACTIONS(7719), - [anon_sym_PIPE_EQ] = ACTIONS(7719), - [anon_sym_and_eq] = ACTIONS(7719), - [anon_sym_or_eq] = ACTIONS(7719), - [anon_sym_xor_eq] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7717), - [anon_sym_and] = ACTIONS(7717), - [anon_sym_bitor] = ACTIONS(7719), - [anon_sym_xor] = ACTIONS(7717), - [anon_sym_bitand] = ACTIONS(7719), - [anon_sym_not_eq] = ACTIONS(7719), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7719), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7719), - [anon_sym_override] = ACTIONS(7719), - [anon_sym_GT2] = ACTIONS(7719), - [anon_sym_requires] = ACTIONS(7719), + [sym_template_argument_list] = STATE(3087), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6570), + [anon_sym_PLUS] = ACTIONS(6570), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6570), + [anon_sym_PIPE_PIPE] = ACTIONS(6563), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6570), + [anon_sym_CARET] = ACTIONS(6570), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6563), + [anon_sym_BANG_EQ] = ACTIONS(6563), + [anon_sym_GT] = ACTIONS(6570), + [anon_sym_GT_EQ] = ACTIONS(6563), + [anon_sym_LT_EQ] = ACTIONS(6570), + [anon_sym_LT] = ACTIONS(8874), + [anon_sym_LT_LT] = ACTIONS(6570), + [anon_sym_GT_GT] = ACTIONS(6570), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_RBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6570), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6563), + [anon_sym_STAR_EQ] = ACTIONS(6563), + [anon_sym_SLASH_EQ] = ACTIONS(6563), + [anon_sym_PERCENT_EQ] = ACTIONS(6563), + [anon_sym_PLUS_EQ] = ACTIONS(6563), + [anon_sym_DASH_EQ] = ACTIONS(6563), + [anon_sym_LT_LT_EQ] = ACTIONS(6563), + [anon_sym_GT_GT_EQ] = ACTIONS(6563), + [anon_sym_AMP_EQ] = ACTIONS(6563), + [anon_sym_CARET_EQ] = ACTIONS(6563), + [anon_sym_PIPE_EQ] = ACTIONS(6563), + [anon_sym_and_eq] = ACTIONS(6563), + [anon_sym_or_eq] = ACTIONS(6563), + [anon_sym_xor_eq] = ACTIONS(6563), + [anon_sym_LT_EQ_GT] = ACTIONS(6563), + [anon_sym_or] = ACTIONS(6570), + [anon_sym_and] = ACTIONS(6570), + [anon_sym_bitor] = ACTIONS(6563), + [anon_sym_xor] = ACTIONS(6570), + [anon_sym_bitand] = ACTIONS(6563), + [anon_sym_not_eq] = ACTIONS(6563), + [anon_sym_DASH_DASH] = ACTIONS(6563), + [anon_sym_PLUS_PLUS] = ACTIONS(6563), + [anon_sym_DOT] = ACTIONS(6570), + [anon_sym_DOT_STAR] = ACTIONS(6563), + [anon_sym_DASH_GT] = ACTIONS(6563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), }, [STATE(2947)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), - [anon_sym_COMMA] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(7637), - [anon_sym_LPAREN2] = ACTIONS(7637), - [anon_sym_DASH] = ACTIONS(7635), - [anon_sym_PLUS] = ACTIONS(7635), - [anon_sym_STAR] = ACTIONS(7635), - [anon_sym_SLASH] = ACTIONS(7635), - [anon_sym_PERCENT] = ACTIONS(7635), - [anon_sym_PIPE_PIPE] = ACTIONS(7637), - [anon_sym_AMP_AMP] = ACTIONS(7637), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_CARET] = ACTIONS(7635), - [anon_sym_AMP] = ACTIONS(7635), - [anon_sym_EQ_EQ] = ACTIONS(7637), - [anon_sym_BANG_EQ] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_EQ] = ACTIONS(7637), - [anon_sym_LT_EQ] = ACTIONS(7635), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(7635), - [anon_sym___extension__] = ACTIONS(7637), - [anon_sym_LBRACE] = ACTIONS(7637), - [anon_sym_LBRACK] = ACTIONS(7637), - [anon_sym_EQ] = ACTIONS(7635), - [anon_sym_const] = ACTIONS(7635), - [anon_sym_constexpr] = ACTIONS(7637), - [anon_sym_volatile] = ACTIONS(7637), - [anon_sym_restrict] = ACTIONS(7637), - [anon_sym___restrict__] = ACTIONS(7637), - [anon_sym__Atomic] = ACTIONS(7637), - [anon_sym__Noreturn] = ACTIONS(7637), - [anon_sym_noreturn] = ACTIONS(7637), - [anon_sym__Nonnull] = ACTIONS(7637), - [anon_sym_mutable] = ACTIONS(7637), - [anon_sym_constinit] = ACTIONS(7637), - [anon_sym_consteval] = ACTIONS(7637), - [anon_sym_alignas] = ACTIONS(7637), - [anon_sym__Alignas] = ACTIONS(7637), - [anon_sym_QMARK] = ACTIONS(7637), - [anon_sym_STAR_EQ] = ACTIONS(7637), - [anon_sym_SLASH_EQ] = ACTIONS(7637), - [anon_sym_PERCENT_EQ] = ACTIONS(7637), - [anon_sym_PLUS_EQ] = ACTIONS(7637), - [anon_sym_DASH_EQ] = ACTIONS(7637), - [anon_sym_LT_LT_EQ] = ACTIONS(7637), - [anon_sym_GT_GT_EQ] = ACTIONS(7637), - [anon_sym_AMP_EQ] = ACTIONS(7637), - [anon_sym_CARET_EQ] = ACTIONS(7637), - [anon_sym_PIPE_EQ] = ACTIONS(7637), - [anon_sym_and_eq] = ACTIONS(7637), - [anon_sym_or_eq] = ACTIONS(7637), - [anon_sym_xor_eq] = ACTIONS(7637), - [anon_sym_LT_EQ_GT] = ACTIONS(7637), - [anon_sym_or] = ACTIONS(7635), - [anon_sym_and] = ACTIONS(7635), - [anon_sym_bitor] = ACTIONS(7637), - [anon_sym_xor] = ACTIONS(7635), - [anon_sym_bitand] = ACTIONS(7637), - [anon_sym_not_eq] = ACTIONS(7637), - [anon_sym_DASH_DASH] = ACTIONS(7637), - [anon_sym_PLUS_PLUS] = ACTIONS(7637), - [anon_sym_DOT] = ACTIONS(7635), - [anon_sym_DOT_STAR] = ACTIONS(7637), - [anon_sym_DASH_GT] = ACTIONS(7635), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7637), - [anon_sym_override] = ACTIONS(7637), - [anon_sym_requires] = ACTIONS(7637), - [anon_sym_DASH_GT_STAR] = ACTIONS(7637), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(4185), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3033), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(8235), + [anon_sym___attribute] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_requires] = ACTIONS(6545), }, [STATE(2948)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym__function_attributes_end] = STATE(4366), - [sym__function_postfix] = STATE(5110), - [sym_trailing_return_type] = STATE(4476), - [sym_requires_clause] = STATE(5110), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_RBRACK] = ACTIONS(7791), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8360), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8363), - [anon_sym_override] = ACTIONS(8363), - [anon_sym_requires] = ACTIONS(8366), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(4186), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3067), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(8415), + [anon_sym___attribute] = ACTIONS(8418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8421), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_requires] = ACTIONS(6545), }, [STATE(2949)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7563), - [anon_sym_or_eq] = ACTIONS(7563), - [anon_sym_xor_eq] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), - [anon_sym_DASH_GT_STAR] = ACTIONS(7563), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(4187), + [sym__function_postfix] = STATE(3654), + [sym_trailing_return_type] = STATE(3071), + [sym_requires_clause] = STATE(3654), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8402), + [anon_sym___attribute__] = ACTIONS(8878), + [anon_sym___attribute] = ACTIONS(8881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8402), + [anon_sym_or_eq] = ACTIONS(8402), + [anon_sym_xor_eq] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6543), + [anon_sym_override] = ACTIONS(6543), + [anon_sym_requires] = ACTIONS(6545), }, [STATE(2950)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), - [anon_sym_COMMA] = ACTIONS(7665), - [anon_sym_RPAREN] = ACTIONS(7665), - [anon_sym_LPAREN2] = ACTIONS(7665), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_STAR] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7663), - [anon_sym_PERCENT] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7665), - [anon_sym_AMP_AMP] = ACTIONS(7665), - [anon_sym_PIPE] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7663), - [anon_sym_AMP] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7665), - [anon_sym_BANG_EQ] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7663), - [anon_sym_GT_EQ] = ACTIONS(7665), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_LT] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7663), - [anon_sym_GT_GT] = ACTIONS(7663), - [anon_sym___extension__] = ACTIONS(7665), - [anon_sym_LBRACE] = ACTIONS(7665), - [anon_sym_LBRACK] = ACTIONS(7665), - [anon_sym_EQ] = ACTIONS(7663), - [anon_sym_const] = ACTIONS(7663), - [anon_sym_constexpr] = ACTIONS(7665), - [anon_sym_volatile] = ACTIONS(7665), - [anon_sym_restrict] = ACTIONS(7665), - [anon_sym___restrict__] = ACTIONS(7665), - [anon_sym__Atomic] = ACTIONS(7665), - [anon_sym__Noreturn] = ACTIONS(7665), - [anon_sym_noreturn] = ACTIONS(7665), - [anon_sym__Nonnull] = ACTIONS(7665), - [anon_sym_mutable] = ACTIONS(7665), - [anon_sym_constinit] = ACTIONS(7665), - [anon_sym_consteval] = ACTIONS(7665), - [anon_sym_alignas] = ACTIONS(7665), - [anon_sym__Alignas] = ACTIONS(7665), - [anon_sym_QMARK] = ACTIONS(7665), - [anon_sym_STAR_EQ] = ACTIONS(7665), - [anon_sym_SLASH_EQ] = ACTIONS(7665), - [anon_sym_PERCENT_EQ] = ACTIONS(7665), - [anon_sym_PLUS_EQ] = ACTIONS(7665), - [anon_sym_DASH_EQ] = ACTIONS(7665), - [anon_sym_LT_LT_EQ] = ACTIONS(7665), - [anon_sym_GT_GT_EQ] = ACTIONS(7665), - [anon_sym_AMP_EQ] = ACTIONS(7665), - [anon_sym_CARET_EQ] = ACTIONS(7665), - [anon_sym_PIPE_EQ] = ACTIONS(7665), - [anon_sym_and_eq] = ACTIONS(7665), - [anon_sym_or_eq] = ACTIONS(7665), - [anon_sym_xor_eq] = ACTIONS(7665), - [anon_sym_LT_EQ_GT] = ACTIONS(7665), - [anon_sym_or] = ACTIONS(7663), - [anon_sym_and] = ACTIONS(7663), - [anon_sym_bitor] = ACTIONS(7665), - [anon_sym_xor] = ACTIONS(7663), - [anon_sym_bitand] = ACTIONS(7665), - [anon_sym_not_eq] = ACTIONS(7665), - [anon_sym_DASH_DASH] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7665), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym_DOT_STAR] = ACTIONS(7665), - [anon_sym_DASH_GT] = ACTIONS(7663), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7665), - [anon_sym_override] = ACTIONS(7665), - [anon_sym_requires] = ACTIONS(7665), - [anon_sym_DASH_GT_STAR] = ACTIONS(7665), + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym__function_attributes_end] = STATE(4324), + [sym__function_postfix] = STATE(5208), + [sym_trailing_return_type] = STATE(4426), + [sym_requires_clause] = STATE(5208), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7876), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7876), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8250), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8253), + [anon_sym_override] = ACTIONS(8253), + [anon_sym_GT2] = ACTIONS(7874), + [anon_sym_requires] = ACTIONS(8256), }, [STATE(2951)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), - [anon_sym_COMMA] = ACTIONS(7475), - [anon_sym_LPAREN2] = ACTIONS(7475), - [anon_sym_DASH] = ACTIONS(7473), - [anon_sym_PLUS] = ACTIONS(7473), - [anon_sym_STAR] = ACTIONS(7473), - [anon_sym_SLASH] = ACTIONS(7473), - [anon_sym_PERCENT] = ACTIONS(7473), - [anon_sym_PIPE_PIPE] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7475), - [anon_sym_PIPE] = ACTIONS(7473), - [anon_sym_CARET] = ACTIONS(7473), - [anon_sym_AMP] = ACTIONS(7473), - [anon_sym_EQ_EQ] = ACTIONS(7475), - [anon_sym_BANG_EQ] = ACTIONS(7475), - [anon_sym_GT] = ACTIONS(7473), - [anon_sym_GT_EQ] = ACTIONS(7473), - [anon_sym_LT_EQ] = ACTIONS(7473), - [anon_sym_LT] = ACTIONS(7473), - [anon_sym_LT_LT] = ACTIONS(7473), - [anon_sym_GT_GT] = ACTIONS(7473), - [anon_sym___extension__] = ACTIONS(7475), - [anon_sym_COLON_COLON] = ACTIONS(7475), - [anon_sym_LBRACE] = ACTIONS(7475), - [anon_sym_LBRACK] = ACTIONS(7475), - [anon_sym_EQ] = ACTIONS(7473), - [anon_sym_const] = ACTIONS(7473), - [anon_sym_constexpr] = ACTIONS(7475), - [anon_sym_volatile] = ACTIONS(7475), - [anon_sym_restrict] = ACTIONS(7475), - [anon_sym___restrict__] = ACTIONS(7475), - [anon_sym__Atomic] = ACTIONS(7475), - [anon_sym__Noreturn] = ACTIONS(7475), - [anon_sym_noreturn] = ACTIONS(7475), - [anon_sym__Nonnull] = ACTIONS(7475), - [anon_sym_mutable] = ACTIONS(7475), - [anon_sym_constinit] = ACTIONS(7475), - [anon_sym_consteval] = ACTIONS(7475), - [anon_sym_alignas] = ACTIONS(7475), - [anon_sym__Alignas] = ACTIONS(7475), - [anon_sym_QMARK] = ACTIONS(7475), - [anon_sym_STAR_EQ] = ACTIONS(7475), - [anon_sym_SLASH_EQ] = ACTIONS(7475), - [anon_sym_PERCENT_EQ] = ACTIONS(7475), - [anon_sym_PLUS_EQ] = ACTIONS(7475), - [anon_sym_DASH_EQ] = ACTIONS(7475), - [anon_sym_LT_LT_EQ] = ACTIONS(7475), - [anon_sym_GT_GT_EQ] = ACTIONS(7473), - [anon_sym_AMP_EQ] = ACTIONS(7475), - [anon_sym_CARET_EQ] = ACTIONS(7475), - [anon_sym_PIPE_EQ] = ACTIONS(7475), - [anon_sym_and_eq] = ACTIONS(7475), - [anon_sym_or_eq] = ACTIONS(7475), - [anon_sym_xor_eq] = ACTIONS(7475), - [anon_sym_LT_EQ_GT] = ACTIONS(7475), - [anon_sym_or] = ACTIONS(7473), - [anon_sym_and] = ACTIONS(7473), - [anon_sym_bitor] = ACTIONS(7475), - [anon_sym_xor] = ACTIONS(7473), - [anon_sym_bitand] = ACTIONS(7475), - [anon_sym_not_eq] = ACTIONS(7475), - [anon_sym_DASH_DASH] = ACTIONS(7475), - [anon_sym_PLUS_PLUS] = ACTIONS(7475), - [anon_sym_DOT] = ACTIONS(7473), - [anon_sym_DOT_STAR] = ACTIONS(7475), - [anon_sym_DASH_GT] = ACTIONS(7475), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7475), - [anon_sym_override] = ACTIONS(7475), - [anon_sym_GT2] = ACTIONS(7475), - [anon_sym_requires] = ACTIONS(7475), + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym__function_attributes_end] = STATE(4325), + [sym__function_postfix] = STATE(5223), + [sym_trailing_return_type] = STATE(4430), + [sym_requires_clause] = STATE(5223), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7972), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7972), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8379), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8382), + [anon_sym_override] = ACTIONS(8382), + [anon_sym_GT2] = ACTIONS(7970), + [anon_sym_requires] = ACTIONS(8385), }, [STATE(2952)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), - [anon_sym_COMMA] = ACTIONS(7765), - [anon_sym_RPAREN] = ACTIONS(7765), - [anon_sym_LPAREN2] = ACTIONS(7765), - [anon_sym_DASH] = ACTIONS(7763), - [anon_sym_PLUS] = ACTIONS(7763), - [anon_sym_STAR] = ACTIONS(7763), - [anon_sym_SLASH] = ACTIONS(7763), - [anon_sym_PERCENT] = ACTIONS(7763), - [anon_sym_PIPE_PIPE] = ACTIONS(7765), - [anon_sym_AMP_AMP] = ACTIONS(7765), - [anon_sym_PIPE] = ACTIONS(7763), - [anon_sym_CARET] = ACTIONS(7763), - [anon_sym_AMP] = ACTIONS(7763), - [anon_sym_EQ_EQ] = ACTIONS(7765), - [anon_sym_BANG_EQ] = ACTIONS(7765), - [anon_sym_GT] = ACTIONS(7763), - [anon_sym_GT_EQ] = ACTIONS(7765), - [anon_sym_LT_EQ] = ACTIONS(7763), - [anon_sym_LT] = ACTIONS(7763), - [anon_sym_LT_LT] = ACTIONS(7763), - [anon_sym_GT_GT] = ACTIONS(7763), - [anon_sym___extension__] = ACTIONS(7765), - [anon_sym_LBRACE] = ACTIONS(7765), - [anon_sym_LBRACK] = ACTIONS(7765), - [anon_sym_EQ] = ACTIONS(7763), - [anon_sym_const] = ACTIONS(7763), - [anon_sym_constexpr] = ACTIONS(7765), - [anon_sym_volatile] = ACTIONS(7765), - [anon_sym_restrict] = ACTIONS(7765), - [anon_sym___restrict__] = ACTIONS(7765), - [anon_sym__Atomic] = ACTIONS(7765), - [anon_sym__Noreturn] = ACTIONS(7765), - [anon_sym_noreturn] = ACTIONS(7765), - [anon_sym__Nonnull] = ACTIONS(7765), - [anon_sym_mutable] = ACTIONS(7765), - [anon_sym_constinit] = ACTIONS(7765), - [anon_sym_consteval] = ACTIONS(7765), - [anon_sym_alignas] = ACTIONS(7765), - [anon_sym__Alignas] = ACTIONS(7765), - [anon_sym_QMARK] = ACTIONS(7765), - [anon_sym_STAR_EQ] = ACTIONS(7765), - [anon_sym_SLASH_EQ] = ACTIONS(7765), - [anon_sym_PERCENT_EQ] = ACTIONS(7765), - [anon_sym_PLUS_EQ] = ACTIONS(7765), - [anon_sym_DASH_EQ] = ACTIONS(7765), - [anon_sym_LT_LT_EQ] = ACTIONS(7765), - [anon_sym_GT_GT_EQ] = ACTIONS(7765), - [anon_sym_AMP_EQ] = ACTIONS(7765), - [anon_sym_CARET_EQ] = ACTIONS(7765), - [anon_sym_PIPE_EQ] = ACTIONS(7765), - [anon_sym_and_eq] = ACTIONS(7765), - [anon_sym_or_eq] = ACTIONS(7765), - [anon_sym_xor_eq] = ACTIONS(7765), - [anon_sym_LT_EQ_GT] = ACTIONS(7765), - [anon_sym_or] = ACTIONS(7763), - [anon_sym_and] = ACTIONS(7763), - [anon_sym_bitor] = ACTIONS(7765), - [anon_sym_xor] = ACTIONS(7763), - [anon_sym_bitand] = ACTIONS(7765), - [anon_sym_not_eq] = ACTIONS(7765), - [anon_sym_DASH_DASH] = ACTIONS(7765), - [anon_sym_PLUS_PLUS] = ACTIONS(7765), - [anon_sym_DOT] = ACTIONS(7763), - [anon_sym_DOT_STAR] = ACTIONS(7765), - [anon_sym_DASH_GT] = ACTIONS(7763), + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym__function_attributes_end] = STATE(4326), + [sym__function_postfix] = STATE(5230), + [sym_trailing_return_type] = STATE(4431), + [sym_requires_clause] = STATE(5230), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8404), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8404), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8402), + [anon_sym_or_eq] = ACTIONS(8402), + [anon_sym_xor_eq] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8887), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7765), - [anon_sym_override] = ACTIONS(7765), - [anon_sym_requires] = ACTIONS(7765), - [anon_sym_DASH_GT_STAR] = ACTIONS(7765), + [anon_sym_final] = ACTIONS(8890), + [anon_sym_override] = ACTIONS(8890), + [anon_sym_GT2] = ACTIONS(8402), + [anon_sym_requires] = ACTIONS(8893), }, [STATE(2953)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym__function_attributes_end] = STATE(4326), - [sym__function_postfix] = STATE(5126), - [sym_trailing_return_type] = STATE(4535), - [sym_requires_clause] = STATE(5126), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_RBRACK] = ACTIONS(8422), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8422), - [anon_sym_or_eq] = ACTIONS(8422), - [anon_sym_xor_eq] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8880), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6742), - [anon_sym_override] = ACTIONS(6742), - [anon_sym_requires] = ACTIONS(6744), + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym__function_attributes_end] = STATE(4360), + [sym__function_postfix] = STATE(5251), + [sym_trailing_return_type] = STATE(4446), + [sym_requires_clause] = STATE(5251), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_RBRACK] = ACTIONS(7874), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8268), + [anon_sym_override] = ACTIONS(8268), + [anon_sym_requires] = ACTIONS(8271), }, [STATE(2954)] = { - [sym_decltype_auto] = STATE(4116), - [sym_template_argument_list] = STATE(2938), - [aux_sym_sized_type_specifier_repeat1] = STATE(3285), - [sym_identifier] = ACTIONS(5636), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [aux_sym_preproc_if_token2] = ACTIONS(5643), - [aux_sym_preproc_else_token1] = ACTIONS(5643), - [aux_sym_preproc_elif_token1] = ACTIONS(5636), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5643), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5643), - [anon_sym_SLASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5643), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5636), - [anon_sym_CARET] = ACTIONS(5643), - [anon_sym_AMP] = ACTIONS(5636), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5636), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5636), - [anon_sym_LT] = ACTIONS(8883), - [anon_sym_LT_LT] = ACTIONS(5643), - [anon_sym_GT_GT] = ACTIONS(5643), - [anon_sym___extension__] = ACTIONS(5636), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(6805), - [anon_sym_unsigned] = ACTIONS(6805), - [anon_sym_long] = ACTIONS(6805), - [anon_sym_short] = ACTIONS(6805), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5636), - [anon_sym_volatile] = ACTIONS(5636), - [anon_sym_restrict] = ACTIONS(5636), - [anon_sym___restrict__] = ACTIONS(5636), - [anon_sym__Atomic] = ACTIONS(5636), - [anon_sym__Noreturn] = ACTIONS(5636), - [anon_sym_noreturn] = ACTIONS(5636), - [anon_sym__Nonnull] = ACTIONS(5636), - [anon_sym_mutable] = ACTIONS(5636), - [anon_sym_constinit] = ACTIONS(5636), - [anon_sym_consteval] = ACTIONS(5636), - [anon_sym_alignas] = ACTIONS(5636), - [anon_sym__Alignas] = ACTIONS(5636), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5636), - [anon_sym_and] = ACTIONS(5636), - [anon_sym_bitor] = ACTIONS(5636), - [anon_sym_xor] = ACTIONS(5636), - [anon_sym_bitand] = ACTIONS(5636), - [anon_sym_not_eq] = ACTIONS(5636), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6811), - [anon_sym_decltype] = ACTIONS(6813), - [anon_sym_final] = ACTIONS(5636), - [anon_sym_override] = ACTIONS(5636), - [anon_sym_requires] = ACTIONS(5636), + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym__function_attributes_end] = STATE(4321), + [sym__function_postfix] = STATE(5027), + [sym_trailing_return_type] = STATE(4448), + [sym_requires_clause] = STATE(5027), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_RBRACK] = ACTIONS(7970), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8393), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8396), + [anon_sym_override] = ACTIONS(8396), + [anon_sym_requires] = ACTIONS(8399), }, [STATE(2955)] = { - [sym_identifier] = ACTIONS(8885), - [anon_sym_LPAREN2] = ACTIONS(8887), - [anon_sym_TILDE] = ACTIONS(8887), - [anon_sym_STAR] = ACTIONS(8887), - [anon_sym_PIPE_PIPE] = ACTIONS(8887), - [anon_sym_AMP_AMP] = ACTIONS(8887), - [anon_sym_AMP] = ACTIONS(8885), - [anon_sym___extension__] = ACTIONS(8885), - [anon_sym_virtual] = ACTIONS(8885), - [anon_sym_extern] = ACTIONS(8885), - [anon_sym___attribute__] = ACTIONS(8885), - [anon_sym___attribute] = ACTIONS(8885), - [anon_sym_using] = ACTIONS(8885), - [anon_sym_COLON_COLON] = ACTIONS(8887), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8887), - [anon_sym___declspec] = ACTIONS(8885), - [anon_sym___based] = ACTIONS(8885), - [anon_sym___cdecl] = ACTIONS(8885), - [anon_sym___clrcall] = ACTIONS(8885), - [anon_sym___stdcall] = ACTIONS(8885), - [anon_sym___fastcall] = ACTIONS(8885), - [anon_sym___thiscall] = ACTIONS(8885), - [anon_sym___vectorcall] = ACTIONS(8885), - [anon_sym_LBRACE] = ACTIONS(8887), - [anon_sym_signed] = ACTIONS(8885), - [anon_sym_unsigned] = ACTIONS(8885), - [anon_sym_long] = ACTIONS(8885), - [anon_sym_short] = ACTIONS(8885), - [anon_sym_LBRACK] = ACTIONS(8885), - [anon_sym_static] = ACTIONS(8885), - [anon_sym_register] = ACTIONS(8885), - [anon_sym_inline] = ACTIONS(8885), - [anon_sym___inline] = ACTIONS(8885), - [anon_sym___inline__] = ACTIONS(8885), - [anon_sym___forceinline] = ACTIONS(8885), - [anon_sym_thread_local] = ACTIONS(8885), - [anon_sym___thread] = ACTIONS(8885), - [anon_sym_const] = ACTIONS(8885), - [anon_sym_constexpr] = ACTIONS(8885), - [anon_sym_volatile] = ACTIONS(8885), - [anon_sym_restrict] = ACTIONS(8885), - [anon_sym___restrict__] = ACTIONS(8885), - [anon_sym__Atomic] = ACTIONS(8885), - [anon_sym__Noreturn] = ACTIONS(8885), - [anon_sym_noreturn] = ACTIONS(8885), - [anon_sym__Nonnull] = ACTIONS(8885), - [anon_sym_mutable] = ACTIONS(8885), - [anon_sym_constinit] = ACTIONS(8885), - [anon_sym_consteval] = ACTIONS(8885), - [anon_sym_alignas] = ACTIONS(8885), - [anon_sym__Alignas] = ACTIONS(8885), - [sym_primitive_type] = ACTIONS(8885), - [anon_sym_enum] = ACTIONS(8885), - [anon_sym_class] = ACTIONS(8885), - [anon_sym_struct] = ACTIONS(8885), - [anon_sym_union] = ACTIONS(8885), - [anon_sym_or] = ACTIONS(8885), - [anon_sym_and] = ACTIONS(8885), - [anon_sym_typename] = ACTIONS(8885), - [anon_sym_DASH_GT] = ACTIONS(8887), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8885), - [anon_sym_decltype] = ACTIONS(8885), - [anon_sym_explicit] = ACTIONS(8885), - [anon_sym_template] = ACTIONS(8885), - [anon_sym_operator] = ACTIONS(8885), - [anon_sym_friend] = ACTIONS(8885), - [anon_sym_noexcept] = ACTIONS(8885), - [anon_sym_throw] = ACTIONS(8885), - [anon_sym_concept] = ACTIONS(8885), - [anon_sym_LBRACK_COLON] = ACTIONS(8887), + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym__function_attributes_end] = STATE(4322), + [sym__function_postfix] = STATE(5040), + [sym_trailing_return_type] = STATE(4449), + [sym_requires_clause] = STATE(5040), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_RBRACK] = ACTIONS(8402), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8402), + [anon_sym_or_eq] = ACTIONS(8402), + [anon_sym_xor_eq] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8896), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8899), + [anon_sym_override] = ACTIONS(8899), + [anon_sym_requires] = ACTIONS(8902), }, [STATE(2956)] = { - [sym_identifier] = ACTIONS(8889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8891), - [anon_sym_COMMA] = ACTIONS(8891), - [anon_sym_RPAREN] = ACTIONS(8891), - [aux_sym_preproc_if_token2] = ACTIONS(8891), - [aux_sym_preproc_else_token1] = ACTIONS(8891), - [aux_sym_preproc_elif_token1] = ACTIONS(8889), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8891), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8891), - [anon_sym_LPAREN2] = ACTIONS(8891), - [anon_sym_DASH] = ACTIONS(8889), - [anon_sym_PLUS] = ACTIONS(8889), - [anon_sym_STAR] = ACTIONS(8889), - [anon_sym_SLASH] = ACTIONS(8889), - [anon_sym_PERCENT] = ACTIONS(8889), - [anon_sym_PIPE_PIPE] = ACTIONS(8891), - [anon_sym_AMP_AMP] = ACTIONS(8891), - [anon_sym_PIPE] = ACTIONS(8889), - [anon_sym_CARET] = ACTIONS(8889), - [anon_sym_AMP] = ACTIONS(8889), - [anon_sym_EQ_EQ] = ACTIONS(8891), - [anon_sym_BANG_EQ] = ACTIONS(8891), - [anon_sym_GT] = ACTIONS(8889), - [anon_sym_GT_EQ] = ACTIONS(8891), - [anon_sym_LT_EQ] = ACTIONS(8889), - [anon_sym_LT] = ACTIONS(8889), - [anon_sym_LT_LT] = ACTIONS(8889), - [anon_sym_GT_GT] = ACTIONS(8889), - [anon_sym_SEMI] = ACTIONS(8891), - [anon_sym___attribute__] = ACTIONS(8889), - [anon_sym___attribute] = ACTIONS(8889), - [anon_sym_COLON] = ACTIONS(8889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8891), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8891), - [anon_sym_RBRACE] = ACTIONS(8891), - [anon_sym_LBRACK] = ACTIONS(8889), - [anon_sym_EQ] = ACTIONS(8889), - [anon_sym_QMARK] = ACTIONS(8891), - [anon_sym_STAR_EQ] = ACTIONS(8891), - [anon_sym_SLASH_EQ] = ACTIONS(8891), - [anon_sym_PERCENT_EQ] = ACTIONS(8891), - [anon_sym_PLUS_EQ] = ACTIONS(8891), - [anon_sym_DASH_EQ] = ACTIONS(8891), - [anon_sym_LT_LT_EQ] = ACTIONS(8891), - [anon_sym_GT_GT_EQ] = ACTIONS(8891), - [anon_sym_AMP_EQ] = ACTIONS(8891), - [anon_sym_CARET_EQ] = ACTIONS(8891), - [anon_sym_PIPE_EQ] = ACTIONS(8891), - [anon_sym_and_eq] = ACTIONS(8889), - [anon_sym_or_eq] = ACTIONS(8889), - [anon_sym_xor_eq] = ACTIONS(8889), - [anon_sym_LT_EQ_GT] = ACTIONS(8891), - [anon_sym_or] = ACTIONS(8889), - [anon_sym_and] = ACTIONS(8889), - [anon_sym_bitor] = ACTIONS(8889), - [anon_sym_xor] = ACTIONS(8889), - [anon_sym_bitand] = ACTIONS(8889), - [anon_sym_not_eq] = ACTIONS(8889), - [anon_sym_DASH_DASH] = ACTIONS(8891), - [anon_sym_PLUS_PLUS] = ACTIONS(8891), - [anon_sym_asm] = ACTIONS(8889), - [anon_sym___asm__] = ACTIONS(8889), - [anon_sym___asm] = ACTIONS(8889), - [anon_sym_DOT] = ACTIONS(8889), - [anon_sym_DOT_STAR] = ACTIONS(8891), - [anon_sym_DASH_GT] = ACTIONS(8891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8889), - [anon_sym_override] = ACTIONS(8889), - [anon_sym_requires] = ACTIONS(8889), - [anon_sym_COLON_RBRACK] = ACTIONS(8891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RPAREN] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_PIPE_PIPE] = ACTIONS(6653), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6660), + [anon_sym_CARET] = ACTIONS(6660), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6653), + [anon_sym_BANG_EQ] = ACTIONS(6653), + [anon_sym_GT] = ACTIONS(6660), + [anon_sym_GT_EQ] = ACTIONS(6653), + [anon_sym_LT_EQ] = ACTIONS(6660), + [anon_sym_LT] = ACTIONS(6660), + [anon_sym_LT_LT] = ACTIONS(6660), + [anon_sym_GT_GT] = ACTIONS(6660), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6660), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_STAR_EQ] = ACTIONS(6653), + [anon_sym_SLASH_EQ] = ACTIONS(6653), + [anon_sym_PERCENT_EQ] = ACTIONS(6653), + [anon_sym_PLUS_EQ] = ACTIONS(6653), + [anon_sym_DASH_EQ] = ACTIONS(6653), + [anon_sym_LT_LT_EQ] = ACTIONS(6653), + [anon_sym_GT_GT_EQ] = ACTIONS(6653), + [anon_sym_AMP_EQ] = ACTIONS(6653), + [anon_sym_CARET_EQ] = ACTIONS(6653), + [anon_sym_PIPE_EQ] = ACTIONS(6653), + [anon_sym_and_eq] = ACTIONS(6651), + [anon_sym_or_eq] = ACTIONS(6651), + [anon_sym_xor_eq] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6653), + [anon_sym_or] = ACTIONS(6660), + [anon_sym_and] = ACTIONS(6660), + [anon_sym_bitor] = ACTIONS(6653), + [anon_sym_xor] = ACTIONS(6660), + [anon_sym_bitand] = ACTIONS(6653), + [anon_sym_not_eq] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_DOT] = ACTIONS(6660), + [anon_sym_DOT_STAR] = ACTIONS(6653), + [anon_sym_DASH_GT] = ACTIONS(6660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_DASH_GT_STAR] = ACTIONS(6653), }, [STATE(2957)] = { - [sym_identifier] = ACTIONS(8893), - [anon_sym_LPAREN2] = ACTIONS(8895), - [anon_sym_TILDE] = ACTIONS(8895), - [anon_sym_STAR] = ACTIONS(8895), - [anon_sym_PIPE_PIPE] = ACTIONS(8895), - [anon_sym_AMP_AMP] = ACTIONS(8895), - [anon_sym_AMP] = ACTIONS(8893), - [anon_sym___extension__] = ACTIONS(8893), - [anon_sym_virtual] = ACTIONS(8893), - [anon_sym_extern] = ACTIONS(8893), - [anon_sym___attribute__] = ACTIONS(8893), - [anon_sym___attribute] = ACTIONS(8893), - [anon_sym_using] = ACTIONS(8893), - [anon_sym_COLON_COLON] = ACTIONS(8895), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8895), - [anon_sym___declspec] = ACTIONS(8893), - [anon_sym___based] = ACTIONS(8893), - [anon_sym___cdecl] = ACTIONS(8893), - [anon_sym___clrcall] = ACTIONS(8893), - [anon_sym___stdcall] = ACTIONS(8893), - [anon_sym___fastcall] = ACTIONS(8893), - [anon_sym___thiscall] = ACTIONS(8893), - [anon_sym___vectorcall] = ACTIONS(8893), - [anon_sym_LBRACE] = ACTIONS(8895), - [anon_sym_signed] = ACTIONS(8893), - [anon_sym_unsigned] = ACTIONS(8893), - [anon_sym_long] = ACTIONS(8893), - [anon_sym_short] = ACTIONS(8893), - [anon_sym_LBRACK] = ACTIONS(8893), - [anon_sym_static] = ACTIONS(8893), - [anon_sym_register] = ACTIONS(8893), - [anon_sym_inline] = ACTIONS(8893), - [anon_sym___inline] = ACTIONS(8893), - [anon_sym___inline__] = ACTIONS(8893), - [anon_sym___forceinline] = ACTIONS(8893), - [anon_sym_thread_local] = ACTIONS(8893), - [anon_sym___thread] = ACTIONS(8893), - [anon_sym_const] = ACTIONS(8893), - [anon_sym_constexpr] = ACTIONS(8893), - [anon_sym_volatile] = ACTIONS(8893), - [anon_sym_restrict] = ACTIONS(8893), - [anon_sym___restrict__] = ACTIONS(8893), - [anon_sym__Atomic] = ACTIONS(8893), - [anon_sym__Noreturn] = ACTIONS(8893), - [anon_sym_noreturn] = ACTIONS(8893), - [anon_sym__Nonnull] = ACTIONS(8893), - [anon_sym_mutable] = ACTIONS(8893), - [anon_sym_constinit] = ACTIONS(8893), - [anon_sym_consteval] = ACTIONS(8893), - [anon_sym_alignas] = ACTIONS(8893), - [anon_sym__Alignas] = ACTIONS(8893), - [sym_primitive_type] = ACTIONS(8893), - [anon_sym_enum] = ACTIONS(8893), - [anon_sym_class] = ACTIONS(8893), - [anon_sym_struct] = ACTIONS(8893), - [anon_sym_union] = ACTIONS(8893), - [anon_sym_or] = ACTIONS(8893), - [anon_sym_and] = ACTIONS(8893), - [anon_sym_typename] = ACTIONS(8893), - [anon_sym_DASH_GT] = ACTIONS(8895), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8893), - [anon_sym_decltype] = ACTIONS(8893), - [anon_sym_explicit] = ACTIONS(8893), - [anon_sym_template] = ACTIONS(8893), - [anon_sym_operator] = ACTIONS(8893), - [anon_sym_friend] = ACTIONS(8893), - [anon_sym_noexcept] = ACTIONS(8893), - [anon_sym_throw] = ACTIONS(8893), - [anon_sym_concept] = ACTIONS(8893), - [anon_sym_LBRACK_COLON] = ACTIONS(8895), + [sym_identifier] = ACTIONS(8905), + [anon_sym_LPAREN2] = ACTIONS(8907), + [anon_sym_TILDE] = ACTIONS(8907), + [anon_sym_STAR] = ACTIONS(8907), + [anon_sym_PIPE_PIPE] = ACTIONS(8907), + [anon_sym_AMP_AMP] = ACTIONS(8907), + [anon_sym_AMP] = ACTIONS(8905), + [anon_sym___extension__] = ACTIONS(8905), + [anon_sym_virtual] = ACTIONS(8905), + [anon_sym_extern] = ACTIONS(8905), + [anon_sym___attribute__] = ACTIONS(8905), + [anon_sym___attribute] = ACTIONS(8905), + [anon_sym_using] = ACTIONS(8905), + [anon_sym_COLON_COLON] = ACTIONS(8907), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8907), + [anon_sym___declspec] = ACTIONS(8905), + [anon_sym___based] = ACTIONS(8905), + [anon_sym___cdecl] = ACTIONS(8905), + [anon_sym___clrcall] = ACTIONS(8905), + [anon_sym___stdcall] = ACTIONS(8905), + [anon_sym___fastcall] = ACTIONS(8905), + [anon_sym___thiscall] = ACTIONS(8905), + [anon_sym___vectorcall] = ACTIONS(8905), + [anon_sym_LBRACE] = ACTIONS(8907), + [anon_sym_signed] = ACTIONS(8905), + [anon_sym_unsigned] = ACTIONS(8905), + [anon_sym_long] = ACTIONS(8905), + [anon_sym_short] = ACTIONS(8905), + [anon_sym_LBRACK] = ACTIONS(8905), + [anon_sym_static] = ACTIONS(8905), + [anon_sym_register] = ACTIONS(8905), + [anon_sym_inline] = ACTIONS(8905), + [anon_sym___inline] = ACTIONS(8905), + [anon_sym___inline__] = ACTIONS(8905), + [anon_sym___forceinline] = ACTIONS(8905), + [anon_sym_thread_local] = ACTIONS(8905), + [anon_sym___thread] = ACTIONS(8905), + [anon_sym_const] = ACTIONS(8905), + [anon_sym_constexpr] = ACTIONS(8905), + [anon_sym_volatile] = ACTIONS(8905), + [anon_sym_restrict] = ACTIONS(8905), + [anon_sym___restrict__] = ACTIONS(8905), + [anon_sym__Atomic] = ACTIONS(8905), + [anon_sym__Noreturn] = ACTIONS(8905), + [anon_sym_noreturn] = ACTIONS(8905), + [anon_sym__Nonnull] = ACTIONS(8905), + [anon_sym_mutable] = ACTIONS(8905), + [anon_sym_constinit] = ACTIONS(8905), + [anon_sym_consteval] = ACTIONS(8905), + [anon_sym_alignas] = ACTIONS(8905), + [anon_sym__Alignas] = ACTIONS(8905), + [sym_primitive_type] = ACTIONS(8905), + [anon_sym_enum] = ACTIONS(8905), + [anon_sym_class] = ACTIONS(8905), + [anon_sym_struct] = ACTIONS(8905), + [anon_sym_union] = ACTIONS(8905), + [anon_sym_or] = ACTIONS(8905), + [anon_sym_and] = ACTIONS(8905), + [anon_sym_typename] = ACTIONS(8905), + [anon_sym_DASH_GT] = ACTIONS(8907), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8905), + [anon_sym_decltype] = ACTIONS(8905), + [anon_sym_explicit] = ACTIONS(8905), + [anon_sym_template] = ACTIONS(8905), + [anon_sym_operator] = ACTIONS(8905), + [anon_sym_friend] = ACTIONS(8905), + [anon_sym_noexcept] = ACTIONS(8905), + [anon_sym_throw] = ACTIONS(8905), + [anon_sym_concept] = ACTIONS(8905), + [anon_sym_LBRACK_COLON] = ACTIONS(8907), }, [STATE(2958)] = { - [sym_identifier] = ACTIONS(8897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8899), - [anon_sym_COMMA] = ACTIONS(8899), - [anon_sym_RPAREN] = ACTIONS(8899), - [aux_sym_preproc_if_token2] = ACTIONS(8899), - [aux_sym_preproc_else_token1] = ACTIONS(8899), - [aux_sym_preproc_elif_token1] = ACTIONS(8897), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8899), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8899), - [anon_sym_LPAREN2] = ACTIONS(8899), - [anon_sym_DASH] = ACTIONS(8897), - [anon_sym_PLUS] = ACTIONS(8897), - [anon_sym_STAR] = ACTIONS(8897), - [anon_sym_SLASH] = ACTIONS(8897), - [anon_sym_PERCENT] = ACTIONS(8897), - [anon_sym_PIPE_PIPE] = ACTIONS(8899), - [anon_sym_AMP_AMP] = ACTIONS(8899), - [anon_sym_PIPE] = ACTIONS(8897), - [anon_sym_CARET] = ACTIONS(8897), - [anon_sym_AMP] = ACTIONS(8897), - [anon_sym_EQ_EQ] = ACTIONS(8899), - [anon_sym_BANG_EQ] = ACTIONS(8899), - [anon_sym_GT] = ACTIONS(8897), - [anon_sym_GT_EQ] = ACTIONS(8899), - [anon_sym_LT_EQ] = ACTIONS(8897), - [anon_sym_LT] = ACTIONS(8897), - [anon_sym_LT_LT] = ACTIONS(8897), - [anon_sym_GT_GT] = ACTIONS(8897), - [anon_sym_SEMI] = ACTIONS(8899), - [anon_sym___attribute__] = ACTIONS(8897), - [anon_sym___attribute] = ACTIONS(8897), - [anon_sym_COLON] = ACTIONS(8897), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8899), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8899), - [anon_sym_RBRACE] = ACTIONS(8899), - [anon_sym_LBRACK] = ACTIONS(8897), - [anon_sym_EQ] = ACTIONS(8897), - [anon_sym_QMARK] = ACTIONS(8899), - [anon_sym_STAR_EQ] = ACTIONS(8899), - [anon_sym_SLASH_EQ] = ACTIONS(8899), - [anon_sym_PERCENT_EQ] = ACTIONS(8899), - [anon_sym_PLUS_EQ] = ACTIONS(8899), - [anon_sym_DASH_EQ] = ACTIONS(8899), - [anon_sym_LT_LT_EQ] = ACTIONS(8899), - [anon_sym_GT_GT_EQ] = ACTIONS(8899), - [anon_sym_AMP_EQ] = ACTIONS(8899), - [anon_sym_CARET_EQ] = ACTIONS(8899), - [anon_sym_PIPE_EQ] = ACTIONS(8899), - [anon_sym_and_eq] = ACTIONS(8897), - [anon_sym_or_eq] = ACTIONS(8897), - [anon_sym_xor_eq] = ACTIONS(8897), - [anon_sym_LT_EQ_GT] = ACTIONS(8899), - [anon_sym_or] = ACTIONS(8897), - [anon_sym_and] = ACTIONS(8897), - [anon_sym_bitor] = ACTIONS(8897), - [anon_sym_xor] = ACTIONS(8897), - [anon_sym_bitand] = ACTIONS(8897), - [anon_sym_not_eq] = ACTIONS(8897), - [anon_sym_DASH_DASH] = ACTIONS(8899), - [anon_sym_PLUS_PLUS] = ACTIONS(8899), - [anon_sym_asm] = ACTIONS(8897), - [anon_sym___asm__] = ACTIONS(8897), - [anon_sym___asm] = ACTIONS(8897), - [anon_sym_DOT] = ACTIONS(8897), - [anon_sym_DOT_STAR] = ACTIONS(8899), - [anon_sym_DASH_GT] = ACTIONS(8899), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8897), - [anon_sym_override] = ACTIONS(8897), - [anon_sym_requires] = ACTIONS(8897), - [anon_sym_COLON_RBRACK] = ACTIONS(8899), + [sym_ms_unaligned_ptr_modifier] = STATE(4294), + [sym_ms_pointer_modifier] = STATE(3010), + [sym__abstract_declarator] = STATE(6741), + [sym_abstract_parenthesized_declarator] = STATE(6601), + [sym_abstract_pointer_declarator] = STATE(6601), + [sym_abstract_function_declarator] = STATE(6601), + [sym_abstract_array_declarator] = STATE(6601), + [sym_type_qualifier] = STATE(4013), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2244), + [sym_abstract_reference_declarator] = STATE(6601), + [sym__function_declarator_seq] = STATE(6602), + [aux_sym__type_definition_type_repeat1] = STATE(4013), + [aux_sym_pointer_declarator_repeat1] = STATE(3010), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(8909), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(8911), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(8913), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6815), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6815), + [anon_sym___extension__] = ACTIONS(8605), + [sym_ms_restrict_modifier] = ACTIONS(8607), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8609), + [sym_ms_signed_ptr_modifier] = ACTIONS(8609), + [anon_sym__unaligned] = ACTIONS(8611), + [anon_sym___unaligned] = ACTIONS(8611), + [anon_sym_LBRACK] = ACTIONS(8613), + [anon_sym_RBRACK] = ACTIONS(6815), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8605), + [anon_sym_volatile] = ACTIONS(8605), + [anon_sym_restrict] = ACTIONS(8605), + [anon_sym___restrict__] = ACTIONS(8605), + [anon_sym__Atomic] = ACTIONS(8605), + [anon_sym__Noreturn] = ACTIONS(8605), + [anon_sym_noreturn] = ACTIONS(8605), + [anon_sym__Nonnull] = ACTIONS(8605), + [anon_sym_mutable] = ACTIONS(8605), + [anon_sym_constinit] = ACTIONS(8605), + [anon_sym_consteval] = ACTIONS(8605), + [anon_sym_alignas] = ACTIONS(8615), + [anon_sym__Alignas] = ACTIONS(8615), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6815), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), }, [STATE(2959)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), - [anon_sym_COMMA] = ACTIONS(7629), - [anon_sym_RPAREN] = ACTIONS(7629), - [anon_sym_LPAREN2] = ACTIONS(7629), - [anon_sym_DASH] = ACTIONS(7627), - [anon_sym_PLUS] = ACTIONS(7627), - [anon_sym_STAR] = ACTIONS(7627), - [anon_sym_SLASH] = ACTIONS(7627), - [anon_sym_PERCENT] = ACTIONS(7627), - [anon_sym_PIPE_PIPE] = ACTIONS(7629), - [anon_sym_AMP_AMP] = ACTIONS(7629), - [anon_sym_PIPE] = ACTIONS(7627), - [anon_sym_CARET] = ACTIONS(7627), - [anon_sym_AMP] = ACTIONS(7627), - [anon_sym_EQ_EQ] = ACTIONS(7629), - [anon_sym_BANG_EQ] = ACTIONS(7629), - [anon_sym_GT] = ACTIONS(7627), - [anon_sym_GT_EQ] = ACTIONS(7629), - [anon_sym_LT_EQ] = ACTIONS(7627), - [anon_sym_LT] = ACTIONS(7627), - [anon_sym_LT_LT] = ACTIONS(7627), - [anon_sym_GT_GT] = ACTIONS(7627), - [anon_sym___extension__] = ACTIONS(7629), - [anon_sym_LBRACE] = ACTIONS(7629), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7627), - [anon_sym_const] = ACTIONS(7627), - [anon_sym_constexpr] = ACTIONS(7629), - [anon_sym_volatile] = ACTIONS(7629), - [anon_sym_restrict] = ACTIONS(7629), - [anon_sym___restrict__] = ACTIONS(7629), - [anon_sym__Atomic] = ACTIONS(7629), - [anon_sym__Noreturn] = ACTIONS(7629), - [anon_sym_noreturn] = ACTIONS(7629), - [anon_sym__Nonnull] = ACTIONS(7629), - [anon_sym_mutable] = ACTIONS(7629), - [anon_sym_constinit] = ACTIONS(7629), - [anon_sym_consteval] = ACTIONS(7629), - [anon_sym_alignas] = ACTIONS(7629), - [anon_sym__Alignas] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7629), - [anon_sym_STAR_EQ] = ACTIONS(7629), - [anon_sym_SLASH_EQ] = ACTIONS(7629), - [anon_sym_PERCENT_EQ] = ACTIONS(7629), - [anon_sym_PLUS_EQ] = ACTIONS(7629), - [anon_sym_DASH_EQ] = ACTIONS(7629), - [anon_sym_LT_LT_EQ] = ACTIONS(7629), - [anon_sym_GT_GT_EQ] = ACTIONS(7629), - [anon_sym_AMP_EQ] = ACTIONS(7629), - [anon_sym_CARET_EQ] = ACTIONS(7629), - [anon_sym_PIPE_EQ] = ACTIONS(7629), - [anon_sym_and_eq] = ACTIONS(7629), - [anon_sym_or_eq] = ACTIONS(7629), - [anon_sym_xor_eq] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7629), - [anon_sym_or] = ACTIONS(7627), - [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7629), - [anon_sym_PLUS_PLUS] = ACTIONS(7629), - [anon_sym_DOT] = ACTIONS(7627), - [anon_sym_DOT_STAR] = ACTIONS(7629), - [anon_sym_DASH_GT] = ACTIONS(7627), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7629), - [anon_sym_override] = ACTIONS(7629), - [anon_sym_requires] = ACTIONS(7629), - [anon_sym_DASH_GT_STAR] = ACTIONS(7629), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(4191), + [sym__function_postfix] = STATE(3658), + [sym_trailing_return_type] = STATE(3061), + [sym_requires_clause] = STATE(3658), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(8235), + [anon_sym___attribute] = ACTIONS(8238), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8241), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7887), + [anon_sym_override] = ACTIONS(7887), + [anon_sym_requires] = ACTIONS(7890), }, [STATE(2960)] = { - [sym_identifier] = ACTIONS(8901), - [anon_sym_LPAREN2] = ACTIONS(8903), - [anon_sym_TILDE] = ACTIONS(8903), - [anon_sym_STAR] = ACTIONS(8903), - [anon_sym_PIPE_PIPE] = ACTIONS(8903), - [anon_sym_AMP_AMP] = ACTIONS(8903), - [anon_sym_AMP] = ACTIONS(8901), - [anon_sym___extension__] = ACTIONS(8901), - [anon_sym_virtual] = ACTIONS(8901), - [anon_sym_extern] = ACTIONS(8901), - [anon_sym___attribute__] = ACTIONS(8901), - [anon_sym___attribute] = ACTIONS(8901), - [anon_sym_using] = ACTIONS(8901), - [anon_sym_COLON_COLON] = ACTIONS(8903), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8903), - [anon_sym___declspec] = ACTIONS(8901), - [anon_sym___based] = ACTIONS(8901), - [anon_sym___cdecl] = ACTIONS(8901), - [anon_sym___clrcall] = ACTIONS(8901), - [anon_sym___stdcall] = ACTIONS(8901), - [anon_sym___fastcall] = ACTIONS(8901), - [anon_sym___thiscall] = ACTIONS(8901), - [anon_sym___vectorcall] = ACTIONS(8901), - [anon_sym_LBRACE] = ACTIONS(8903), - [anon_sym_signed] = ACTIONS(8901), - [anon_sym_unsigned] = ACTIONS(8901), - [anon_sym_long] = ACTIONS(8901), - [anon_sym_short] = ACTIONS(8901), - [anon_sym_LBRACK] = ACTIONS(8901), - [anon_sym_static] = ACTIONS(8901), - [anon_sym_register] = ACTIONS(8901), - [anon_sym_inline] = ACTIONS(8901), - [anon_sym___inline] = ACTIONS(8901), - [anon_sym___inline__] = ACTIONS(8901), - [anon_sym___forceinline] = ACTIONS(8901), - [anon_sym_thread_local] = ACTIONS(8901), - [anon_sym___thread] = ACTIONS(8901), - [anon_sym_const] = ACTIONS(8901), - [anon_sym_constexpr] = ACTIONS(8901), - [anon_sym_volatile] = ACTIONS(8901), - [anon_sym_restrict] = ACTIONS(8901), - [anon_sym___restrict__] = ACTIONS(8901), - [anon_sym__Atomic] = ACTIONS(8901), - [anon_sym__Noreturn] = ACTIONS(8901), - [anon_sym_noreturn] = ACTIONS(8901), - [anon_sym__Nonnull] = ACTIONS(8901), - [anon_sym_mutable] = ACTIONS(8901), - [anon_sym_constinit] = ACTIONS(8901), - [anon_sym_consteval] = ACTIONS(8901), - [anon_sym_alignas] = ACTIONS(8901), - [anon_sym__Alignas] = ACTIONS(8901), - [sym_primitive_type] = ACTIONS(8901), - [anon_sym_enum] = ACTIONS(8901), - [anon_sym_class] = ACTIONS(8901), - [anon_sym_struct] = ACTIONS(8901), - [anon_sym_union] = ACTIONS(8901), - [anon_sym_or] = ACTIONS(8901), - [anon_sym_and] = ACTIONS(8901), - [anon_sym_typename] = ACTIONS(8901), - [anon_sym_DASH_GT] = ACTIONS(8903), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8901), - [anon_sym_decltype] = ACTIONS(8901), - [anon_sym_explicit] = ACTIONS(8901), - [anon_sym_template] = ACTIONS(8901), - [anon_sym_operator] = ACTIONS(8901), - [anon_sym_friend] = ACTIONS(8901), - [anon_sym_noexcept] = ACTIONS(8901), - [anon_sym_throw] = ACTIONS(8901), - [anon_sym_concept] = ACTIONS(8901), - [anon_sym_LBRACK_COLON] = ACTIONS(8903), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(4192), + [sym__function_postfix] = STATE(3690), + [sym_trailing_return_type] = STATE(3062), + [sym_requires_clause] = STATE(3690), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(8415), + [anon_sym___attribute] = ACTIONS(8418), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8421), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7977), + [anon_sym_override] = ACTIONS(7977), + [anon_sym_requires] = ACTIONS(7980), }, [STATE(2961)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym__function_attributes_end] = STATE(4367), - [sym__function_postfix] = STATE(5121), - [sym_trailing_return_type] = STATE(4477), - [sym_requires_clause] = STATE(5121), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_RBRACK] = ACTIONS(7966), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8440), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8443), - [anon_sym_override] = ACTIONS(8443), - [anon_sym_requires] = ACTIONS(8446), + [sym_attribute_specifier] = STATE(2918), + [sym_attribute_declaration] = STATE(3164), + [sym_gnu_asm_expression] = STATE(9078), + [sym_virtual_specifier] = STATE(3431), + [sym__function_attributes_end] = STATE(4193), + [sym__function_postfix] = STATE(3654), + [sym_trailing_return_type] = STATE(3063), + [sym_requires_clause] = STATE(3654), + [aux_sym_type_definition_repeat1] = STATE(2918), + [aux_sym_attributed_declarator_repeat1] = STATE(3164), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8402), + [anon_sym___attribute__] = ACTIONS(8878), + [anon_sym___attribute] = ACTIONS(8881), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8402), + [anon_sym_or_eq] = ACTIONS(8402), + [anon_sym_xor_eq] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8884), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8409), + [anon_sym_override] = ACTIONS(8409), + [anon_sym_requires] = ACTIONS(8412), }, [STATE(2962)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), - [anon_sym_COMMA] = ACTIONS(7645), - [anon_sym_RPAREN] = ACTIONS(7645), - [anon_sym_LPAREN2] = ACTIONS(7645), - [anon_sym_DASH] = ACTIONS(7643), - [anon_sym_PLUS] = ACTIONS(7643), - [anon_sym_STAR] = ACTIONS(7643), - [anon_sym_SLASH] = ACTIONS(7643), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_PIPE_PIPE] = ACTIONS(7645), - [anon_sym_AMP_AMP] = ACTIONS(7645), - [anon_sym_PIPE] = ACTIONS(7643), - [anon_sym_CARET] = ACTIONS(7643), - [anon_sym_AMP] = ACTIONS(7643), - [anon_sym_EQ_EQ] = ACTIONS(7645), - [anon_sym_BANG_EQ] = ACTIONS(7645), - [anon_sym_GT] = ACTIONS(7643), - [anon_sym_GT_EQ] = ACTIONS(7645), - [anon_sym_LT_EQ] = ACTIONS(7643), - [anon_sym_LT] = ACTIONS(7643), - [anon_sym_LT_LT] = ACTIONS(7643), - [anon_sym_GT_GT] = ACTIONS(7643), - [anon_sym___extension__] = ACTIONS(7645), - [anon_sym_LBRACE] = ACTIONS(7645), - [anon_sym_LBRACK] = ACTIONS(7645), - [anon_sym_EQ] = ACTIONS(7643), - [anon_sym_const] = ACTIONS(7643), - [anon_sym_constexpr] = ACTIONS(7645), - [anon_sym_volatile] = ACTIONS(7645), - [anon_sym_restrict] = ACTIONS(7645), - [anon_sym___restrict__] = ACTIONS(7645), - [anon_sym__Atomic] = ACTIONS(7645), - [anon_sym__Noreturn] = ACTIONS(7645), - [anon_sym_noreturn] = ACTIONS(7645), - [anon_sym__Nonnull] = ACTIONS(7645), - [anon_sym_mutable] = ACTIONS(7645), - [anon_sym_constinit] = ACTIONS(7645), - [anon_sym_consteval] = ACTIONS(7645), - [anon_sym_alignas] = ACTIONS(7645), - [anon_sym__Alignas] = ACTIONS(7645), - [anon_sym_QMARK] = ACTIONS(7645), - [anon_sym_STAR_EQ] = ACTIONS(7645), - [anon_sym_SLASH_EQ] = ACTIONS(7645), - [anon_sym_PERCENT_EQ] = ACTIONS(7645), - [anon_sym_PLUS_EQ] = ACTIONS(7645), - [anon_sym_DASH_EQ] = ACTIONS(7645), - [anon_sym_LT_LT_EQ] = ACTIONS(7645), - [anon_sym_GT_GT_EQ] = ACTIONS(7645), - [anon_sym_AMP_EQ] = ACTIONS(7645), - [anon_sym_CARET_EQ] = ACTIONS(7645), - [anon_sym_PIPE_EQ] = ACTIONS(7645), - [anon_sym_and_eq] = ACTIONS(7645), - [anon_sym_or_eq] = ACTIONS(7645), - [anon_sym_xor_eq] = ACTIONS(7645), - [anon_sym_LT_EQ_GT] = ACTIONS(7645), - [anon_sym_or] = ACTIONS(7643), - [anon_sym_and] = ACTIONS(7643), - [anon_sym_bitor] = ACTIONS(7645), - [anon_sym_xor] = ACTIONS(7643), - [anon_sym_bitand] = ACTIONS(7645), - [anon_sym_not_eq] = ACTIONS(7645), - [anon_sym_DASH_DASH] = ACTIONS(7645), - [anon_sym_PLUS_PLUS] = ACTIONS(7645), - [anon_sym_DOT] = ACTIONS(7643), - [anon_sym_DOT_STAR] = ACTIONS(7645), - [anon_sym_DASH_GT] = ACTIONS(7643), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7645), - [anon_sym_override] = ACTIONS(7645), - [anon_sym_requires] = ACTIONS(7645), - [anon_sym_DASH_GT_STAR] = ACTIONS(7645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7592), + [anon_sym_COMMA] = ACTIONS(7592), + [anon_sym_RPAREN] = ACTIONS(7592), + [anon_sym_LPAREN2] = ACTIONS(7592), + [anon_sym_DASH] = ACTIONS(7590), + [anon_sym_PLUS] = ACTIONS(7590), + [anon_sym_STAR] = ACTIONS(7590), + [anon_sym_SLASH] = ACTIONS(7590), + [anon_sym_PERCENT] = ACTIONS(7590), + [anon_sym_PIPE_PIPE] = ACTIONS(7592), + [anon_sym_AMP_AMP] = ACTIONS(7592), + [anon_sym_PIPE] = ACTIONS(7590), + [anon_sym_CARET] = ACTIONS(7590), + [anon_sym_AMP] = ACTIONS(7590), + [anon_sym_EQ_EQ] = ACTIONS(7592), + [anon_sym_BANG_EQ] = ACTIONS(7592), + [anon_sym_GT] = ACTIONS(7590), + [anon_sym_GT_EQ] = ACTIONS(7592), + [anon_sym_LT_EQ] = ACTIONS(7590), + [anon_sym_LT] = ACTIONS(7590), + [anon_sym_LT_LT] = ACTIONS(7590), + [anon_sym_GT_GT] = ACTIONS(7590), + [anon_sym___extension__] = ACTIONS(7592), + [anon_sym_LBRACE] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7592), + [anon_sym_EQ] = ACTIONS(7590), + [anon_sym_const] = ACTIONS(7590), + [anon_sym_constexpr] = ACTIONS(7592), + [anon_sym_volatile] = ACTIONS(7592), + [anon_sym_restrict] = ACTIONS(7592), + [anon_sym___restrict__] = ACTIONS(7592), + [anon_sym__Atomic] = ACTIONS(7592), + [anon_sym__Noreturn] = ACTIONS(7592), + [anon_sym_noreturn] = ACTIONS(7592), + [anon_sym__Nonnull] = ACTIONS(7592), + [anon_sym_mutable] = ACTIONS(7592), + [anon_sym_constinit] = ACTIONS(7592), + [anon_sym_consteval] = ACTIONS(7592), + [anon_sym_alignas] = ACTIONS(7592), + [anon_sym__Alignas] = ACTIONS(7592), + [anon_sym_QMARK] = ACTIONS(7592), + [anon_sym_STAR_EQ] = ACTIONS(7592), + [anon_sym_SLASH_EQ] = ACTIONS(7592), + [anon_sym_PERCENT_EQ] = ACTIONS(7592), + [anon_sym_PLUS_EQ] = ACTIONS(7592), + [anon_sym_DASH_EQ] = ACTIONS(7592), + [anon_sym_LT_LT_EQ] = ACTIONS(7592), + [anon_sym_GT_GT_EQ] = ACTIONS(7592), + [anon_sym_AMP_EQ] = ACTIONS(7592), + [anon_sym_CARET_EQ] = ACTIONS(7592), + [anon_sym_PIPE_EQ] = ACTIONS(7592), + [anon_sym_and_eq] = ACTIONS(7592), + [anon_sym_or_eq] = ACTIONS(7592), + [anon_sym_xor_eq] = ACTIONS(7592), + [anon_sym_LT_EQ_GT] = ACTIONS(7592), + [anon_sym_or] = ACTIONS(7590), + [anon_sym_and] = ACTIONS(7590), + [anon_sym_bitor] = ACTIONS(7592), + [anon_sym_xor] = ACTIONS(7590), + [anon_sym_bitand] = ACTIONS(7592), + [anon_sym_not_eq] = ACTIONS(7592), + [anon_sym_DASH_DASH] = ACTIONS(7592), + [anon_sym_PLUS_PLUS] = ACTIONS(7592), + [anon_sym_DOT] = ACTIONS(7590), + [anon_sym_DOT_STAR] = ACTIONS(7592), + [anon_sym_DASH_GT] = ACTIONS(7590), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7592), + [anon_sym_override] = ACTIONS(7592), + [anon_sym_requires] = ACTIONS(7592), + [anon_sym_DASH_GT_STAR] = ACTIONS(7592), }, [STATE(2963)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), - [anon_sym_COMMA] = ACTIONS(7669), - [anon_sym_RPAREN] = ACTIONS(7669), - [anon_sym_LPAREN2] = ACTIONS(7669), - [anon_sym_DASH] = ACTIONS(7667), - [anon_sym_PLUS] = ACTIONS(7667), - [anon_sym_STAR] = ACTIONS(7667), - [anon_sym_SLASH] = ACTIONS(7667), - [anon_sym_PERCENT] = ACTIONS(7667), - [anon_sym_PIPE_PIPE] = ACTIONS(7669), - [anon_sym_AMP_AMP] = ACTIONS(7669), - [anon_sym_PIPE] = ACTIONS(7667), - [anon_sym_CARET] = ACTIONS(7667), - [anon_sym_AMP] = ACTIONS(7667), - [anon_sym_EQ_EQ] = ACTIONS(7669), - [anon_sym_BANG_EQ] = ACTIONS(7669), - [anon_sym_GT] = ACTIONS(7667), - [anon_sym_GT_EQ] = ACTIONS(7669), - [anon_sym_LT_EQ] = ACTIONS(7667), - [anon_sym_LT] = ACTIONS(7667), - [anon_sym_LT_LT] = ACTIONS(7667), - [anon_sym_GT_GT] = ACTIONS(7667), - [anon_sym___extension__] = ACTIONS(7669), - [anon_sym_LBRACE] = ACTIONS(7669), - [anon_sym_LBRACK] = ACTIONS(7669), - [anon_sym_EQ] = ACTIONS(7667), - [anon_sym_const] = ACTIONS(7667), - [anon_sym_constexpr] = ACTIONS(7669), - [anon_sym_volatile] = ACTIONS(7669), - [anon_sym_restrict] = ACTIONS(7669), - [anon_sym___restrict__] = ACTIONS(7669), - [anon_sym__Atomic] = ACTIONS(7669), - [anon_sym__Noreturn] = ACTIONS(7669), - [anon_sym_noreturn] = ACTIONS(7669), - [anon_sym__Nonnull] = ACTIONS(7669), - [anon_sym_mutable] = ACTIONS(7669), - [anon_sym_constinit] = ACTIONS(7669), - [anon_sym_consteval] = ACTIONS(7669), - [anon_sym_alignas] = ACTIONS(7669), - [anon_sym__Alignas] = ACTIONS(7669), - [anon_sym_QMARK] = ACTIONS(7669), - [anon_sym_STAR_EQ] = ACTIONS(7669), - [anon_sym_SLASH_EQ] = ACTIONS(7669), - [anon_sym_PERCENT_EQ] = ACTIONS(7669), - [anon_sym_PLUS_EQ] = ACTIONS(7669), - [anon_sym_DASH_EQ] = ACTIONS(7669), - [anon_sym_LT_LT_EQ] = ACTIONS(7669), - [anon_sym_GT_GT_EQ] = ACTIONS(7669), - [anon_sym_AMP_EQ] = ACTIONS(7669), - [anon_sym_CARET_EQ] = ACTIONS(7669), - [anon_sym_PIPE_EQ] = ACTIONS(7669), - [anon_sym_and_eq] = ACTIONS(7669), - [anon_sym_or_eq] = ACTIONS(7669), - [anon_sym_xor_eq] = ACTIONS(7669), - [anon_sym_LT_EQ_GT] = ACTIONS(7669), - [anon_sym_or] = ACTIONS(7667), - [anon_sym_and] = ACTIONS(7667), - [anon_sym_bitor] = ACTIONS(7669), - [anon_sym_xor] = ACTIONS(7667), - [anon_sym_bitand] = ACTIONS(7669), - [anon_sym_not_eq] = ACTIONS(7669), - [anon_sym_DASH_DASH] = ACTIONS(7669), - [anon_sym_PLUS_PLUS] = ACTIONS(7669), - [anon_sym_DOT] = ACTIONS(7667), - [anon_sym_DOT_STAR] = ACTIONS(7669), - [anon_sym_DASH_GT] = ACTIONS(7667), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7669), - [anon_sym_override] = ACTIONS(7669), - [anon_sym_requires] = ACTIONS(7669), - [anon_sym_DASH_GT_STAR] = ACTIONS(7669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7596), + [anon_sym_COMMA] = ACTIONS(7596), + [anon_sym_RPAREN] = ACTIONS(7596), + [anon_sym_LPAREN2] = ACTIONS(7596), + [anon_sym_DASH] = ACTIONS(7594), + [anon_sym_PLUS] = ACTIONS(7594), + [anon_sym_STAR] = ACTIONS(7594), + [anon_sym_SLASH] = ACTIONS(7594), + [anon_sym_PERCENT] = ACTIONS(7594), + [anon_sym_PIPE_PIPE] = ACTIONS(7596), + [anon_sym_AMP_AMP] = ACTIONS(7596), + [anon_sym_PIPE] = ACTIONS(7594), + [anon_sym_CARET] = ACTIONS(7594), + [anon_sym_AMP] = ACTIONS(7594), + [anon_sym_EQ_EQ] = ACTIONS(7596), + [anon_sym_BANG_EQ] = ACTIONS(7596), + [anon_sym_GT] = ACTIONS(7594), + [anon_sym_GT_EQ] = ACTIONS(7596), + [anon_sym_LT_EQ] = ACTIONS(7594), + [anon_sym_LT] = ACTIONS(7594), + [anon_sym_LT_LT] = ACTIONS(7594), + [anon_sym_GT_GT] = ACTIONS(7594), + [anon_sym___extension__] = ACTIONS(7596), + [anon_sym_LBRACE] = ACTIONS(7596), + [anon_sym_LBRACK] = ACTIONS(7596), + [anon_sym_EQ] = ACTIONS(7594), + [anon_sym_const] = ACTIONS(7594), + [anon_sym_constexpr] = ACTIONS(7596), + [anon_sym_volatile] = ACTIONS(7596), + [anon_sym_restrict] = ACTIONS(7596), + [anon_sym___restrict__] = ACTIONS(7596), + [anon_sym__Atomic] = ACTIONS(7596), + [anon_sym__Noreturn] = ACTIONS(7596), + [anon_sym_noreturn] = ACTIONS(7596), + [anon_sym__Nonnull] = ACTIONS(7596), + [anon_sym_mutable] = ACTIONS(7596), + [anon_sym_constinit] = ACTIONS(7596), + [anon_sym_consteval] = ACTIONS(7596), + [anon_sym_alignas] = ACTIONS(7596), + [anon_sym__Alignas] = ACTIONS(7596), + [anon_sym_QMARK] = ACTIONS(7596), + [anon_sym_STAR_EQ] = ACTIONS(7596), + [anon_sym_SLASH_EQ] = ACTIONS(7596), + [anon_sym_PERCENT_EQ] = ACTIONS(7596), + [anon_sym_PLUS_EQ] = ACTIONS(7596), + [anon_sym_DASH_EQ] = ACTIONS(7596), + [anon_sym_LT_LT_EQ] = ACTIONS(7596), + [anon_sym_GT_GT_EQ] = ACTIONS(7596), + [anon_sym_AMP_EQ] = ACTIONS(7596), + [anon_sym_CARET_EQ] = ACTIONS(7596), + [anon_sym_PIPE_EQ] = ACTIONS(7596), + [anon_sym_and_eq] = ACTIONS(7596), + [anon_sym_or_eq] = ACTIONS(7596), + [anon_sym_xor_eq] = ACTIONS(7596), + [anon_sym_LT_EQ_GT] = ACTIONS(7596), + [anon_sym_or] = ACTIONS(7594), + [anon_sym_and] = ACTIONS(7594), + [anon_sym_bitor] = ACTIONS(7596), + [anon_sym_xor] = ACTIONS(7594), + [anon_sym_bitand] = ACTIONS(7596), + [anon_sym_not_eq] = ACTIONS(7596), + [anon_sym_DASH_DASH] = ACTIONS(7596), + [anon_sym_PLUS_PLUS] = ACTIONS(7596), + [anon_sym_DOT] = ACTIONS(7594), + [anon_sym_DOT_STAR] = ACTIONS(7596), + [anon_sym_DASH_GT] = ACTIONS(7594), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7596), + [anon_sym_override] = ACTIONS(7596), + [anon_sym_requires] = ACTIONS(7596), + [anon_sym_DASH_GT_STAR] = ACTIONS(7596), }, [STATE(2964)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), - [anon_sym_COMMA] = ACTIONS(7673), - [anon_sym_RPAREN] = ACTIONS(7673), - [anon_sym_LPAREN2] = ACTIONS(7673), - [anon_sym_DASH] = ACTIONS(7671), - [anon_sym_PLUS] = ACTIONS(7671), - [anon_sym_STAR] = ACTIONS(7671), - [anon_sym_SLASH] = ACTIONS(7671), - [anon_sym_PERCENT] = ACTIONS(7671), - [anon_sym_PIPE_PIPE] = ACTIONS(7673), - [anon_sym_AMP_AMP] = ACTIONS(7673), - [anon_sym_PIPE] = ACTIONS(7671), - [anon_sym_CARET] = ACTIONS(7671), - [anon_sym_AMP] = ACTIONS(7671), - [anon_sym_EQ_EQ] = ACTIONS(7673), - [anon_sym_BANG_EQ] = ACTIONS(7673), - [anon_sym_GT] = ACTIONS(7671), - [anon_sym_GT_EQ] = ACTIONS(7673), - [anon_sym_LT_EQ] = ACTIONS(7671), - [anon_sym_LT] = ACTIONS(7671), - [anon_sym_LT_LT] = ACTIONS(7671), - [anon_sym_GT_GT] = ACTIONS(7671), - [anon_sym___extension__] = ACTIONS(7673), - [anon_sym_LBRACE] = ACTIONS(7673), - [anon_sym_LBRACK] = ACTIONS(7673), - [anon_sym_EQ] = ACTIONS(7671), - [anon_sym_const] = ACTIONS(7671), - [anon_sym_constexpr] = ACTIONS(7673), - [anon_sym_volatile] = ACTIONS(7673), - [anon_sym_restrict] = ACTIONS(7673), - [anon_sym___restrict__] = ACTIONS(7673), - [anon_sym__Atomic] = ACTIONS(7673), - [anon_sym__Noreturn] = ACTIONS(7673), - [anon_sym_noreturn] = ACTIONS(7673), - [anon_sym__Nonnull] = ACTIONS(7673), - [anon_sym_mutable] = ACTIONS(7673), - [anon_sym_constinit] = ACTIONS(7673), - [anon_sym_consteval] = ACTIONS(7673), - [anon_sym_alignas] = ACTIONS(7673), - [anon_sym__Alignas] = ACTIONS(7673), - [anon_sym_QMARK] = ACTIONS(7673), - [anon_sym_STAR_EQ] = ACTIONS(7673), - [anon_sym_SLASH_EQ] = ACTIONS(7673), - [anon_sym_PERCENT_EQ] = ACTIONS(7673), - [anon_sym_PLUS_EQ] = ACTIONS(7673), - [anon_sym_DASH_EQ] = ACTIONS(7673), - [anon_sym_LT_LT_EQ] = ACTIONS(7673), - [anon_sym_GT_GT_EQ] = ACTIONS(7673), - [anon_sym_AMP_EQ] = ACTIONS(7673), - [anon_sym_CARET_EQ] = ACTIONS(7673), - [anon_sym_PIPE_EQ] = ACTIONS(7673), - [anon_sym_and_eq] = ACTIONS(7673), - [anon_sym_or_eq] = ACTIONS(7673), - [anon_sym_xor_eq] = ACTIONS(7673), - [anon_sym_LT_EQ_GT] = ACTIONS(7673), - [anon_sym_or] = ACTIONS(7671), - [anon_sym_and] = ACTIONS(7671), - [anon_sym_bitor] = ACTIONS(7673), - [anon_sym_xor] = ACTIONS(7671), - [anon_sym_bitand] = ACTIONS(7673), - [anon_sym_not_eq] = ACTIONS(7673), - [anon_sym_DASH_DASH] = ACTIONS(7673), - [anon_sym_PLUS_PLUS] = ACTIONS(7673), - [anon_sym_DOT] = ACTIONS(7671), - [anon_sym_DOT_STAR] = ACTIONS(7673), - [anon_sym_DASH_GT] = ACTIONS(7671), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7673), - [anon_sym_override] = ACTIONS(7673), - [anon_sym_requires] = ACTIONS(7673), - [anon_sym_DASH_GT_STAR] = ACTIONS(7673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7600), + [anon_sym_COMMA] = ACTIONS(7600), + [anon_sym_RPAREN] = ACTIONS(7600), + [anon_sym_LPAREN2] = ACTIONS(7600), + [anon_sym_DASH] = ACTIONS(7598), + [anon_sym_PLUS] = ACTIONS(7598), + [anon_sym_STAR] = ACTIONS(7598), + [anon_sym_SLASH] = ACTIONS(7598), + [anon_sym_PERCENT] = ACTIONS(7598), + [anon_sym_PIPE_PIPE] = ACTIONS(7600), + [anon_sym_AMP_AMP] = ACTIONS(7600), + [anon_sym_PIPE] = ACTIONS(7598), + [anon_sym_CARET] = ACTIONS(7598), + [anon_sym_AMP] = ACTIONS(7598), + [anon_sym_EQ_EQ] = ACTIONS(7600), + [anon_sym_BANG_EQ] = ACTIONS(7600), + [anon_sym_GT] = ACTIONS(7598), + [anon_sym_GT_EQ] = ACTIONS(7600), + [anon_sym_LT_EQ] = ACTIONS(7598), + [anon_sym_LT] = ACTIONS(7598), + [anon_sym_LT_LT] = ACTIONS(7598), + [anon_sym_GT_GT] = ACTIONS(7598), + [anon_sym___extension__] = ACTIONS(7600), + [anon_sym_LBRACE] = ACTIONS(7600), + [anon_sym_LBRACK] = ACTIONS(7600), + [anon_sym_EQ] = ACTIONS(7598), + [anon_sym_const] = ACTIONS(7598), + [anon_sym_constexpr] = ACTIONS(7600), + [anon_sym_volatile] = ACTIONS(7600), + [anon_sym_restrict] = ACTIONS(7600), + [anon_sym___restrict__] = ACTIONS(7600), + [anon_sym__Atomic] = ACTIONS(7600), + [anon_sym__Noreturn] = ACTIONS(7600), + [anon_sym_noreturn] = ACTIONS(7600), + [anon_sym__Nonnull] = ACTIONS(7600), + [anon_sym_mutable] = ACTIONS(7600), + [anon_sym_constinit] = ACTIONS(7600), + [anon_sym_consteval] = ACTIONS(7600), + [anon_sym_alignas] = ACTIONS(7600), + [anon_sym__Alignas] = ACTIONS(7600), + [anon_sym_QMARK] = ACTIONS(7600), + [anon_sym_STAR_EQ] = ACTIONS(7600), + [anon_sym_SLASH_EQ] = ACTIONS(7600), + [anon_sym_PERCENT_EQ] = ACTIONS(7600), + [anon_sym_PLUS_EQ] = ACTIONS(7600), + [anon_sym_DASH_EQ] = ACTIONS(7600), + [anon_sym_LT_LT_EQ] = ACTIONS(7600), + [anon_sym_GT_GT_EQ] = ACTIONS(7600), + [anon_sym_AMP_EQ] = ACTIONS(7600), + [anon_sym_CARET_EQ] = ACTIONS(7600), + [anon_sym_PIPE_EQ] = ACTIONS(7600), + [anon_sym_and_eq] = ACTIONS(7600), + [anon_sym_or_eq] = ACTIONS(7600), + [anon_sym_xor_eq] = ACTIONS(7600), + [anon_sym_LT_EQ_GT] = ACTIONS(7600), + [anon_sym_or] = ACTIONS(7598), + [anon_sym_and] = ACTIONS(7598), + [anon_sym_bitor] = ACTIONS(7600), + [anon_sym_xor] = ACTIONS(7598), + [anon_sym_bitand] = ACTIONS(7600), + [anon_sym_not_eq] = ACTIONS(7600), + [anon_sym_DASH_DASH] = ACTIONS(7600), + [anon_sym_PLUS_PLUS] = ACTIONS(7600), + [anon_sym_DOT] = ACTIONS(7598), + [anon_sym_DOT_STAR] = ACTIONS(7600), + [anon_sym_DASH_GT] = ACTIONS(7598), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7600), + [anon_sym_override] = ACTIONS(7600), + [anon_sym_requires] = ACTIONS(7600), + [anon_sym_DASH_GT_STAR] = ACTIONS(7600), }, [STATE(2965)] = { - [sym_attribute_specifier] = STATE(3570), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7425), - [anon_sym_COMMA] = ACTIONS(7425), - [anon_sym_RPAREN] = ACTIONS(7425), - [anon_sym_LPAREN2] = ACTIONS(7425), - [anon_sym_DASH] = ACTIONS(7423), - [anon_sym_PLUS] = ACTIONS(7423), - [anon_sym_STAR] = ACTIONS(7423), - [anon_sym_SLASH] = ACTIONS(7423), - [anon_sym_PERCENT] = ACTIONS(7423), - [anon_sym_PIPE_PIPE] = ACTIONS(7425), - [anon_sym_AMP_AMP] = ACTIONS(7425), - [anon_sym_PIPE] = ACTIONS(7423), - [anon_sym_CARET] = ACTIONS(7423), - [anon_sym_AMP] = ACTIONS(7423), - [anon_sym_EQ_EQ] = ACTIONS(7425), - [anon_sym_BANG_EQ] = ACTIONS(7425), - [anon_sym_GT] = ACTIONS(7423), - [anon_sym_GT_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ] = ACTIONS(7423), - [anon_sym_LT] = ACTIONS(7423), - [anon_sym_LT_LT] = ACTIONS(7423), - [anon_sym_GT_GT] = ACTIONS(7423), - [anon_sym___extension__] = ACTIONS(7425), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7425), - [anon_sym_LBRACK] = ACTIONS(7425), - [anon_sym_EQ] = ACTIONS(7423), - [anon_sym_const] = ACTIONS(7423), - [anon_sym_constexpr] = ACTIONS(7425), - [anon_sym_volatile] = ACTIONS(7425), - [anon_sym_restrict] = ACTIONS(7425), - [anon_sym___restrict__] = ACTIONS(7425), - [anon_sym__Atomic] = ACTIONS(7425), - [anon_sym__Noreturn] = ACTIONS(7425), - [anon_sym_noreturn] = ACTIONS(7425), - [anon_sym__Nonnull] = ACTIONS(7425), - [anon_sym_mutable] = ACTIONS(7425), - [anon_sym_constinit] = ACTIONS(7425), - [anon_sym_consteval] = ACTIONS(7425), - [anon_sym_alignas] = ACTIONS(7425), - [anon_sym__Alignas] = ACTIONS(7425), - [anon_sym_QMARK] = ACTIONS(7425), - [anon_sym_STAR_EQ] = ACTIONS(7425), - [anon_sym_SLASH_EQ] = ACTIONS(7425), - [anon_sym_PERCENT_EQ] = ACTIONS(7425), - [anon_sym_PLUS_EQ] = ACTIONS(7425), - [anon_sym_DASH_EQ] = ACTIONS(7425), - [anon_sym_LT_LT_EQ] = ACTIONS(7425), - [anon_sym_GT_GT_EQ] = ACTIONS(7425), - [anon_sym_AMP_EQ] = ACTIONS(7425), - [anon_sym_CARET_EQ] = ACTIONS(7425), - [anon_sym_PIPE_EQ] = ACTIONS(7425), - [anon_sym_LT_EQ_GT] = ACTIONS(7425), - [anon_sym_or] = ACTIONS(7425), - [anon_sym_and] = ACTIONS(7425), - [anon_sym_bitor] = ACTIONS(7425), - [anon_sym_xor] = ACTIONS(7425), - [anon_sym_bitand] = ACTIONS(7425), - [anon_sym_not_eq] = ACTIONS(7425), - [anon_sym_DASH_DASH] = ACTIONS(7425), - [anon_sym_PLUS_PLUS] = ACTIONS(7425), - [anon_sym_DOT] = ACTIONS(7423), - [anon_sym_DOT_STAR] = ACTIONS(7425), - [anon_sym_DASH_GT] = ACTIONS(7423), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7425), - [anon_sym_override] = ACTIONS(7425), - [anon_sym_requires] = ACTIONS(7425), - [anon_sym_DASH_GT_STAR] = ACTIONS(7425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7604), + [anon_sym_COMMA] = ACTIONS(7604), + [anon_sym_RPAREN] = ACTIONS(7604), + [anon_sym_LPAREN2] = ACTIONS(7604), + [anon_sym_DASH] = ACTIONS(7602), + [anon_sym_PLUS] = ACTIONS(7602), + [anon_sym_STAR] = ACTIONS(7602), + [anon_sym_SLASH] = ACTIONS(7602), + [anon_sym_PERCENT] = ACTIONS(7602), + [anon_sym_PIPE_PIPE] = ACTIONS(7604), + [anon_sym_AMP_AMP] = ACTIONS(7604), + [anon_sym_PIPE] = ACTIONS(7602), + [anon_sym_CARET] = ACTIONS(7602), + [anon_sym_AMP] = ACTIONS(7602), + [anon_sym_EQ_EQ] = ACTIONS(7604), + [anon_sym_BANG_EQ] = ACTIONS(7604), + [anon_sym_GT] = ACTIONS(7602), + [anon_sym_GT_EQ] = ACTIONS(7604), + [anon_sym_LT_EQ] = ACTIONS(7602), + [anon_sym_LT] = ACTIONS(7602), + [anon_sym_LT_LT] = ACTIONS(7602), + [anon_sym_GT_GT] = ACTIONS(7602), + [anon_sym___extension__] = ACTIONS(7604), + [anon_sym_LBRACE] = ACTIONS(7604), + [anon_sym_LBRACK] = ACTIONS(7604), + [anon_sym_EQ] = ACTIONS(7602), + [anon_sym_const] = ACTIONS(7602), + [anon_sym_constexpr] = ACTIONS(7604), + [anon_sym_volatile] = ACTIONS(7604), + [anon_sym_restrict] = ACTIONS(7604), + [anon_sym___restrict__] = ACTIONS(7604), + [anon_sym__Atomic] = ACTIONS(7604), + [anon_sym__Noreturn] = ACTIONS(7604), + [anon_sym_noreturn] = ACTIONS(7604), + [anon_sym__Nonnull] = ACTIONS(7604), + [anon_sym_mutable] = ACTIONS(7604), + [anon_sym_constinit] = ACTIONS(7604), + [anon_sym_consteval] = ACTIONS(7604), + [anon_sym_alignas] = ACTIONS(7604), + [anon_sym__Alignas] = ACTIONS(7604), + [anon_sym_QMARK] = ACTIONS(7604), + [anon_sym_STAR_EQ] = ACTIONS(7604), + [anon_sym_SLASH_EQ] = ACTIONS(7604), + [anon_sym_PERCENT_EQ] = ACTIONS(7604), + [anon_sym_PLUS_EQ] = ACTIONS(7604), + [anon_sym_DASH_EQ] = ACTIONS(7604), + [anon_sym_LT_LT_EQ] = ACTIONS(7604), + [anon_sym_GT_GT_EQ] = ACTIONS(7604), + [anon_sym_AMP_EQ] = ACTIONS(7604), + [anon_sym_CARET_EQ] = ACTIONS(7604), + [anon_sym_PIPE_EQ] = ACTIONS(7604), + [anon_sym_and_eq] = ACTIONS(7604), + [anon_sym_or_eq] = ACTIONS(7604), + [anon_sym_xor_eq] = ACTIONS(7604), + [anon_sym_LT_EQ_GT] = ACTIONS(7604), + [anon_sym_or] = ACTIONS(7602), + [anon_sym_and] = ACTIONS(7602), + [anon_sym_bitor] = ACTIONS(7604), + [anon_sym_xor] = ACTIONS(7602), + [anon_sym_bitand] = ACTIONS(7604), + [anon_sym_not_eq] = ACTIONS(7604), + [anon_sym_DASH_DASH] = ACTIONS(7604), + [anon_sym_PLUS_PLUS] = ACTIONS(7604), + [anon_sym_DOT] = ACTIONS(7602), + [anon_sym_DOT_STAR] = ACTIONS(7604), + [anon_sym_DASH_GT] = ACTIONS(7602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7604), + [anon_sym_override] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(7604), + [anon_sym_DASH_GT_STAR] = ACTIONS(7604), }, [STATE(2966)] = { - [sym__abstract_declarator] = STATE(6166), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2079), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(7349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [aux_sym_preproc_if_token2] = ACTIONS(7351), - [aux_sym_preproc_else_token1] = ACTIONS(7351), - [aux_sym_preproc_elif_token1] = ACTIONS(7349), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7351), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(8086), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(8088), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(8090), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7349), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7349), - [anon_sym_not_eq] = ACTIONS(7349), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7349), - [anon_sym_override] = ACTIONS(7349), - [anon_sym_requires] = ACTIONS(7349), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7608), + [anon_sym_COMMA] = ACTIONS(7608), + [anon_sym_RPAREN] = ACTIONS(7608), + [anon_sym_LPAREN2] = ACTIONS(7608), + [anon_sym_DASH] = ACTIONS(7606), + [anon_sym_PLUS] = ACTIONS(7606), + [anon_sym_STAR] = ACTIONS(7606), + [anon_sym_SLASH] = ACTIONS(7606), + [anon_sym_PERCENT] = ACTIONS(7606), + [anon_sym_PIPE_PIPE] = ACTIONS(7608), + [anon_sym_AMP_AMP] = ACTIONS(7608), + [anon_sym_PIPE] = ACTIONS(7606), + [anon_sym_CARET] = ACTIONS(7606), + [anon_sym_AMP] = ACTIONS(7606), + [anon_sym_EQ_EQ] = ACTIONS(7608), + [anon_sym_BANG_EQ] = ACTIONS(7608), + [anon_sym_GT] = ACTIONS(7606), + [anon_sym_GT_EQ] = ACTIONS(7608), + [anon_sym_LT_EQ] = ACTIONS(7606), + [anon_sym_LT] = ACTIONS(7606), + [anon_sym_LT_LT] = ACTIONS(7606), + [anon_sym_GT_GT] = ACTIONS(7606), + [anon_sym___extension__] = ACTIONS(7608), + [anon_sym_LBRACE] = ACTIONS(7608), + [anon_sym_LBRACK] = ACTIONS(7608), + [anon_sym_EQ] = ACTIONS(7606), + [anon_sym_const] = ACTIONS(7606), + [anon_sym_constexpr] = ACTIONS(7608), + [anon_sym_volatile] = ACTIONS(7608), + [anon_sym_restrict] = ACTIONS(7608), + [anon_sym___restrict__] = ACTIONS(7608), + [anon_sym__Atomic] = ACTIONS(7608), + [anon_sym__Noreturn] = ACTIONS(7608), + [anon_sym_noreturn] = ACTIONS(7608), + [anon_sym__Nonnull] = ACTIONS(7608), + [anon_sym_mutable] = ACTIONS(7608), + [anon_sym_constinit] = ACTIONS(7608), + [anon_sym_consteval] = ACTIONS(7608), + [anon_sym_alignas] = ACTIONS(7608), + [anon_sym__Alignas] = ACTIONS(7608), + [anon_sym_QMARK] = ACTIONS(7608), + [anon_sym_STAR_EQ] = ACTIONS(7608), + [anon_sym_SLASH_EQ] = ACTIONS(7608), + [anon_sym_PERCENT_EQ] = ACTIONS(7608), + [anon_sym_PLUS_EQ] = ACTIONS(7608), + [anon_sym_DASH_EQ] = ACTIONS(7608), + [anon_sym_LT_LT_EQ] = ACTIONS(7608), + [anon_sym_GT_GT_EQ] = ACTIONS(7608), + [anon_sym_AMP_EQ] = ACTIONS(7608), + [anon_sym_CARET_EQ] = ACTIONS(7608), + [anon_sym_PIPE_EQ] = ACTIONS(7608), + [anon_sym_and_eq] = ACTIONS(7608), + [anon_sym_or_eq] = ACTIONS(7608), + [anon_sym_xor_eq] = ACTIONS(7608), + [anon_sym_LT_EQ_GT] = ACTIONS(7608), + [anon_sym_or] = ACTIONS(7606), + [anon_sym_and] = ACTIONS(7606), + [anon_sym_bitor] = ACTIONS(7608), + [anon_sym_xor] = ACTIONS(7606), + [anon_sym_bitand] = ACTIONS(7608), + [anon_sym_not_eq] = ACTIONS(7608), + [anon_sym_DASH_DASH] = ACTIONS(7608), + [anon_sym_PLUS_PLUS] = ACTIONS(7608), + [anon_sym_DOT] = ACTIONS(7606), + [anon_sym_DOT_STAR] = ACTIONS(7608), + [anon_sym_DASH_GT] = ACTIONS(7606), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7608), + [anon_sym_override] = ACTIONS(7608), + [anon_sym_requires] = ACTIONS(7608), + [anon_sym_DASH_GT_STAR] = ACTIONS(7608), }, [STATE(2967)] = { - [sym__abstract_declarator] = STATE(6171), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2971), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2079), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2971), - [sym_identifier] = ACTIONS(7341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [aux_sym_preproc_if_token2] = ACTIONS(7343), - [aux_sym_preproc_else_token1] = ACTIONS(7343), - [aux_sym_preproc_elif_token1] = ACTIONS(7341), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7343), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(8086), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7343), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(8088), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7343), - [anon_sym_AMP] = ACTIONS(8090), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7343), - [anon_sym_GT_GT] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7612), + [anon_sym_COMMA] = ACTIONS(7612), + [anon_sym_RPAREN] = ACTIONS(7612), + [anon_sym_LPAREN2] = ACTIONS(7612), + [anon_sym_DASH] = ACTIONS(7610), + [anon_sym_PLUS] = ACTIONS(7610), + [anon_sym_STAR] = ACTIONS(7610), + [anon_sym_SLASH] = ACTIONS(7610), + [anon_sym_PERCENT] = ACTIONS(7610), + [anon_sym_PIPE_PIPE] = ACTIONS(7612), + [anon_sym_AMP_AMP] = ACTIONS(7612), + [anon_sym_PIPE] = ACTIONS(7610), + [anon_sym_CARET] = ACTIONS(7610), + [anon_sym_AMP] = ACTIONS(7610), + [anon_sym_EQ_EQ] = ACTIONS(7612), + [anon_sym_BANG_EQ] = ACTIONS(7612), + [anon_sym_GT] = ACTIONS(7610), + [anon_sym_GT_EQ] = ACTIONS(7612), + [anon_sym_LT_EQ] = ACTIONS(7610), + [anon_sym_LT] = ACTIONS(7610), + [anon_sym_LT_LT] = ACTIONS(7610), + [anon_sym_GT_GT] = ACTIONS(7610), + [anon_sym___extension__] = ACTIONS(7612), + [anon_sym_LBRACE] = ACTIONS(7612), + [anon_sym_LBRACK] = ACTIONS(7612), + [anon_sym_EQ] = ACTIONS(7610), + [anon_sym_const] = ACTIONS(7610), + [anon_sym_constexpr] = ACTIONS(7612), + [anon_sym_volatile] = ACTIONS(7612), + [anon_sym_restrict] = ACTIONS(7612), + [anon_sym___restrict__] = ACTIONS(7612), + [anon_sym__Atomic] = ACTIONS(7612), + [anon_sym__Noreturn] = ACTIONS(7612), + [anon_sym_noreturn] = ACTIONS(7612), + [anon_sym__Nonnull] = ACTIONS(7612), + [anon_sym_mutable] = ACTIONS(7612), + [anon_sym_constinit] = ACTIONS(7612), + [anon_sym_consteval] = ACTIONS(7612), + [anon_sym_alignas] = ACTIONS(7612), + [anon_sym__Alignas] = ACTIONS(7612), + [anon_sym_QMARK] = ACTIONS(7612), + [anon_sym_STAR_EQ] = ACTIONS(7612), + [anon_sym_SLASH_EQ] = ACTIONS(7612), + [anon_sym_PERCENT_EQ] = ACTIONS(7612), + [anon_sym_PLUS_EQ] = ACTIONS(7612), + [anon_sym_DASH_EQ] = ACTIONS(7612), + [anon_sym_LT_LT_EQ] = ACTIONS(7612), + [anon_sym_GT_GT_EQ] = ACTIONS(7612), + [anon_sym_AMP_EQ] = ACTIONS(7612), + [anon_sym_CARET_EQ] = ACTIONS(7612), + [anon_sym_PIPE_EQ] = ACTIONS(7612), + [anon_sym_and_eq] = ACTIONS(7612), + [anon_sym_or_eq] = ACTIONS(7612), + [anon_sym_xor_eq] = ACTIONS(7612), + [anon_sym_LT_EQ_GT] = ACTIONS(7612), + [anon_sym_or] = ACTIONS(7610), + [anon_sym_and] = ACTIONS(7610), + [anon_sym_bitor] = ACTIONS(7612), + [anon_sym_xor] = ACTIONS(7610), + [anon_sym_bitand] = ACTIONS(7612), + [anon_sym_not_eq] = ACTIONS(7612), + [anon_sym_DASH_DASH] = ACTIONS(7612), + [anon_sym_PLUS_PLUS] = ACTIONS(7612), + [anon_sym_DOT] = ACTIONS(7610), + [anon_sym_DOT_STAR] = ACTIONS(7612), + [anon_sym_DASH_GT] = ACTIONS(7610), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7612), + [anon_sym_override] = ACTIONS(7612), + [anon_sym_requires] = ACTIONS(7612), + [anon_sym_DASH_GT_STAR] = ACTIONS(7612), + }, + [STATE(2968)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7616), + [anon_sym_COMMA] = ACTIONS(7616), + [anon_sym_RPAREN] = ACTIONS(7616), + [anon_sym_LPAREN2] = ACTIONS(7616), + [anon_sym_DASH] = ACTIONS(7614), + [anon_sym_PLUS] = ACTIONS(7614), + [anon_sym_STAR] = ACTIONS(7614), + [anon_sym_SLASH] = ACTIONS(7614), + [anon_sym_PERCENT] = ACTIONS(7614), + [anon_sym_PIPE_PIPE] = ACTIONS(7616), + [anon_sym_AMP_AMP] = ACTIONS(7616), + [anon_sym_PIPE] = ACTIONS(7614), + [anon_sym_CARET] = ACTIONS(7614), + [anon_sym_AMP] = ACTIONS(7614), + [anon_sym_EQ_EQ] = ACTIONS(7616), + [anon_sym_BANG_EQ] = ACTIONS(7616), + [anon_sym_GT] = ACTIONS(7614), + [anon_sym_GT_EQ] = ACTIONS(7616), + [anon_sym_LT_EQ] = ACTIONS(7614), + [anon_sym_LT] = ACTIONS(7614), + [anon_sym_LT_LT] = ACTIONS(7614), + [anon_sym_GT_GT] = ACTIONS(7614), + [anon_sym___extension__] = ACTIONS(7616), + [anon_sym_LBRACE] = ACTIONS(7616), + [anon_sym_LBRACK] = ACTIONS(7616), + [anon_sym_EQ] = ACTIONS(7614), + [anon_sym_const] = ACTIONS(7614), + [anon_sym_constexpr] = ACTIONS(7616), + [anon_sym_volatile] = ACTIONS(7616), + [anon_sym_restrict] = ACTIONS(7616), + [anon_sym___restrict__] = ACTIONS(7616), + [anon_sym__Atomic] = ACTIONS(7616), + [anon_sym__Noreturn] = ACTIONS(7616), + [anon_sym_noreturn] = ACTIONS(7616), + [anon_sym__Nonnull] = ACTIONS(7616), + [anon_sym_mutable] = ACTIONS(7616), + [anon_sym_constinit] = ACTIONS(7616), + [anon_sym_consteval] = ACTIONS(7616), + [anon_sym_alignas] = ACTIONS(7616), + [anon_sym__Alignas] = ACTIONS(7616), + [anon_sym_QMARK] = ACTIONS(7616), + [anon_sym_STAR_EQ] = ACTIONS(7616), + [anon_sym_SLASH_EQ] = ACTIONS(7616), + [anon_sym_PERCENT_EQ] = ACTIONS(7616), + [anon_sym_PLUS_EQ] = ACTIONS(7616), + [anon_sym_DASH_EQ] = ACTIONS(7616), + [anon_sym_LT_LT_EQ] = ACTIONS(7616), + [anon_sym_GT_GT_EQ] = ACTIONS(7616), + [anon_sym_AMP_EQ] = ACTIONS(7616), + [anon_sym_CARET_EQ] = ACTIONS(7616), + [anon_sym_PIPE_EQ] = ACTIONS(7616), + [anon_sym_and_eq] = ACTIONS(7616), + [anon_sym_or_eq] = ACTIONS(7616), + [anon_sym_xor_eq] = ACTIONS(7616), + [anon_sym_LT_EQ_GT] = ACTIONS(7616), + [anon_sym_or] = ACTIONS(7614), + [anon_sym_and] = ACTIONS(7614), + [anon_sym_bitor] = ACTIONS(7616), + [anon_sym_xor] = ACTIONS(7614), + [anon_sym_bitand] = ACTIONS(7616), + [anon_sym_not_eq] = ACTIONS(7616), + [anon_sym_DASH_DASH] = ACTIONS(7616), + [anon_sym_PLUS_PLUS] = ACTIONS(7616), + [anon_sym_DOT] = ACTIONS(7614), + [anon_sym_DOT_STAR] = ACTIONS(7616), + [anon_sym_DASH_GT] = ACTIONS(7614), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7616), + [anon_sym_override] = ACTIONS(7616), + [anon_sym_requires] = ACTIONS(7616), + [anon_sym_DASH_GT_STAR] = ACTIONS(7616), + }, + [STATE(2969)] = { + [sym_identifier] = ACTIONS(8915), + [anon_sym_LPAREN2] = ACTIONS(8917), + [anon_sym_TILDE] = ACTIONS(8917), + [anon_sym_STAR] = ACTIONS(8917), + [anon_sym_PIPE_PIPE] = ACTIONS(8917), + [anon_sym_AMP_AMP] = ACTIONS(8917), + [anon_sym_AMP] = ACTIONS(8915), + [anon_sym___extension__] = ACTIONS(8915), + [anon_sym_virtual] = ACTIONS(8915), + [anon_sym_extern] = ACTIONS(8915), + [anon_sym___attribute__] = ACTIONS(8915), + [anon_sym___attribute] = ACTIONS(8915), + [anon_sym_using] = ACTIONS(8915), + [anon_sym_COLON_COLON] = ACTIONS(8917), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8917), + [anon_sym___declspec] = ACTIONS(8915), + [anon_sym___based] = ACTIONS(8915), + [anon_sym___cdecl] = ACTIONS(8915), + [anon_sym___clrcall] = ACTIONS(8915), + [anon_sym___stdcall] = ACTIONS(8915), + [anon_sym___fastcall] = ACTIONS(8915), + [anon_sym___thiscall] = ACTIONS(8915), + [anon_sym___vectorcall] = ACTIONS(8915), + [anon_sym_LBRACE] = ACTIONS(8917), + [anon_sym_signed] = ACTIONS(8915), + [anon_sym_unsigned] = ACTIONS(8915), + [anon_sym_long] = ACTIONS(8915), + [anon_sym_short] = ACTIONS(8915), + [anon_sym_LBRACK] = ACTIONS(8915), + [anon_sym_static] = ACTIONS(8915), + [anon_sym_register] = ACTIONS(8915), + [anon_sym_inline] = ACTIONS(8915), + [anon_sym___inline] = ACTIONS(8915), + [anon_sym___inline__] = ACTIONS(8915), + [anon_sym___forceinline] = ACTIONS(8915), + [anon_sym_thread_local] = ACTIONS(8915), + [anon_sym___thread] = ACTIONS(8915), + [anon_sym_const] = ACTIONS(8915), + [anon_sym_constexpr] = ACTIONS(8915), + [anon_sym_volatile] = ACTIONS(8915), + [anon_sym_restrict] = ACTIONS(8915), + [anon_sym___restrict__] = ACTIONS(8915), + [anon_sym__Atomic] = ACTIONS(8915), + [anon_sym__Noreturn] = ACTIONS(8915), + [anon_sym_noreturn] = ACTIONS(8915), + [anon_sym__Nonnull] = ACTIONS(8915), + [anon_sym_mutable] = ACTIONS(8915), + [anon_sym_constinit] = ACTIONS(8915), + [anon_sym_consteval] = ACTIONS(8915), + [anon_sym_alignas] = ACTIONS(8915), + [anon_sym__Alignas] = ACTIONS(8915), + [sym_primitive_type] = ACTIONS(8915), + [anon_sym_enum] = ACTIONS(8915), + [anon_sym_class] = ACTIONS(8915), + [anon_sym_struct] = ACTIONS(8915), + [anon_sym_union] = ACTIONS(8915), + [anon_sym_or] = ACTIONS(8915), + [anon_sym_and] = ACTIONS(8915), + [anon_sym_typename] = ACTIONS(8915), + [anon_sym_DASH_GT] = ACTIONS(8917), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8915), + [anon_sym_decltype] = ACTIONS(8915), + [anon_sym_explicit] = ACTIONS(8915), + [anon_sym_template] = ACTIONS(8915), + [anon_sym_operator] = ACTIONS(8915), + [anon_sym_friend] = ACTIONS(8915), + [anon_sym_noexcept] = ACTIONS(8915), + [anon_sym_throw] = ACTIONS(8915), + [anon_sym_concept] = ACTIONS(8915), + [anon_sym_LBRACK_COLON] = ACTIONS(8917), + }, + [STATE(2970)] = { + [sym_identifier] = ACTIONS(8919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8921), + [anon_sym_COMMA] = ACTIONS(8921), + [anon_sym_RPAREN] = ACTIONS(8921), + [aux_sym_preproc_if_token2] = ACTIONS(8921), + [aux_sym_preproc_else_token1] = ACTIONS(8921), + [aux_sym_preproc_elif_token1] = ACTIONS(8919), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8921), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8921), + [anon_sym_LPAREN2] = ACTIONS(8921), + [anon_sym_DASH] = ACTIONS(8919), + [anon_sym_PLUS] = ACTIONS(8919), + [anon_sym_STAR] = ACTIONS(8919), + [anon_sym_SLASH] = ACTIONS(8919), + [anon_sym_PERCENT] = ACTIONS(8919), + [anon_sym_PIPE_PIPE] = ACTIONS(8921), + [anon_sym_AMP_AMP] = ACTIONS(8921), + [anon_sym_PIPE] = ACTIONS(8919), + [anon_sym_CARET] = ACTIONS(8919), + [anon_sym_AMP] = ACTIONS(8919), + [anon_sym_EQ_EQ] = ACTIONS(8921), + [anon_sym_BANG_EQ] = ACTIONS(8921), + [anon_sym_GT] = ACTIONS(8919), + [anon_sym_GT_EQ] = ACTIONS(8921), + [anon_sym_LT_EQ] = ACTIONS(8919), + [anon_sym_LT] = ACTIONS(8919), + [anon_sym_LT_LT] = ACTIONS(8919), + [anon_sym_GT_GT] = ACTIONS(8919), + [anon_sym_SEMI] = ACTIONS(8921), + [anon_sym___attribute__] = ACTIONS(8919), + [anon_sym___attribute] = ACTIONS(8919), + [anon_sym_COLON] = ACTIONS(8919), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8921), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8921), + [anon_sym_RBRACE] = ACTIONS(8921), + [anon_sym_LBRACK] = ACTIONS(8919), + [anon_sym_EQ] = ACTIONS(8919), + [anon_sym_QMARK] = ACTIONS(8921), + [anon_sym_STAR_EQ] = ACTIONS(8921), + [anon_sym_SLASH_EQ] = ACTIONS(8921), + [anon_sym_PERCENT_EQ] = ACTIONS(8921), + [anon_sym_PLUS_EQ] = ACTIONS(8921), + [anon_sym_DASH_EQ] = ACTIONS(8921), + [anon_sym_LT_LT_EQ] = ACTIONS(8921), + [anon_sym_GT_GT_EQ] = ACTIONS(8921), + [anon_sym_AMP_EQ] = ACTIONS(8921), + [anon_sym_CARET_EQ] = ACTIONS(8921), + [anon_sym_PIPE_EQ] = ACTIONS(8921), + [anon_sym_and_eq] = ACTIONS(8919), + [anon_sym_or_eq] = ACTIONS(8919), + [anon_sym_xor_eq] = ACTIONS(8919), + [anon_sym_LT_EQ_GT] = ACTIONS(8921), + [anon_sym_or] = ACTIONS(8919), + [anon_sym_and] = ACTIONS(8919), + [anon_sym_bitor] = ACTIONS(8919), + [anon_sym_xor] = ACTIONS(8919), + [anon_sym_bitand] = ACTIONS(8919), + [anon_sym_not_eq] = ACTIONS(8919), + [anon_sym_DASH_DASH] = ACTIONS(8921), + [anon_sym_PLUS_PLUS] = ACTIONS(8921), + [anon_sym_asm] = ACTIONS(8919), + [anon_sym___asm__] = ACTIONS(8919), + [anon_sym___asm] = ACTIONS(8919), + [anon_sym_DOT] = ACTIONS(8919), + [anon_sym_DOT_STAR] = ACTIONS(8921), + [anon_sym_DASH_GT] = ACTIONS(8921), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8919), + [anon_sym_override] = ACTIONS(8919), + [anon_sym_requires] = ACTIONS(8919), + [anon_sym_COLON_RBRACK] = ACTIONS(8921), + }, + [STATE(2971)] = { + [sym__abstract_declarator] = STATE(6176), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2071), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_RPAREN] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(8128), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(8130), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(8132), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym_SEMI] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(7369), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7371), + [anon_sym_RBRACE] = ACTIONS(7371), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), + [anon_sym_COLON_RBRACK] = ACTIONS(7371), + }, + [STATE(2972)] = { + [sym__abstract_declarator] = STATE(6177), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2974), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2071), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2974), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_RPAREN] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(8128), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(8130), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(8132), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym_SEMI] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(7373), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7375), + [anon_sym_RBRACE] = ACTIONS(7375), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), + [anon_sym_COLON_RBRACK] = ACTIONS(7375), + }, + [STATE(2973)] = { + [sym__abstract_declarator] = STATE(6145), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2071), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8128), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8130), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8132), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(6841), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6843), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + [anon_sym_COLON_RBRACK] = ACTIONS(6843), + }, + [STATE(2974)] = { + [sym__abstract_declarator] = STATE(6184), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2071), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_RPAREN] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(8128), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(8130), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(8132), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym_SEMI] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(7343), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7341), + [anon_sym_RBRACE] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), [anon_sym_or] = ACTIONS(7341), [anon_sym_and] = ACTIONS(7341), [anon_sym_bitor] = ACTIONS(7341), [anon_sym_xor] = ACTIONS(7341), [anon_sym_bitand] = ACTIONS(7341), [anon_sym_not_eq] = ACTIONS(7341), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7341), [anon_sym_override] = ACTIONS(7341), [anon_sym_requires] = ACTIONS(7341), + [anon_sym_COLON_RBRACK] = ACTIONS(7341), }, - [STATE(2968)] = { - [sym__abstract_declarator] = STATE(6150), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2079), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(6821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [aux_sym_preproc_if_token2] = ACTIONS(6823), - [aux_sym_preproc_else_token1] = ACTIONS(6823), - [aux_sym_preproc_elif_token1] = ACTIONS(6821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8086), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8088), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8090), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6821), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6821), - [anon_sym_not_eq] = ACTIONS(6821), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6821), - [anon_sym_override] = ACTIONS(6821), - [anon_sym_requires] = ACTIONS(6821), - }, - [STATE(2969)] = { - [sym_argument_list] = STATE(5569), - [sym_initializer_list] = STATE(5579), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8569), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(2970)] = { - [sym__abstract_declarator] = STATE(6182), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2069), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), + [STATE(2975)] = { + [sym__abstract_declarator] = STATE(6151), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2071), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_LPAREN2] = ACTIONS(8078), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(8111), + [anon_sym_STAR] = ACTIONS(8128), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7345), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8113), + [anon_sym_AMP_AMP] = ACTIONS(8130), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8115), + [anon_sym_AMP] = ACTIONS(8132), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), @@ -391556,25 +391768,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7345), [anon_sym_GT_GT] = ACTIONS(7345), [anon_sym_SEMI] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___extension__] = ACTIONS(8134), [anon_sym_COLON] = ACTIONS(7347), [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), [anon_sym_RBRACE] = ACTIONS(7345), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_LT_EQ_GT] = ACTIONS(7345), [anon_sym_or] = ACTIONS(7345), @@ -391594,3292 +391806,3730 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7345), [anon_sym_COLON_RBRACK] = ACTIONS(7345), }, - [STATE(2971)] = { - [sym__abstract_declarator] = STATE(6177), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2079), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(7353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [aux_sym_preproc_if_token2] = ACTIONS(7355), - [aux_sym_preproc_else_token1] = ACTIONS(7355), - [aux_sym_preproc_elif_token1] = ACTIONS(7353), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7355), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(8086), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(8088), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(8090), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7353), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7353), - [anon_sym_not_eq] = ACTIONS(7353), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7353), - [anon_sym_override] = ACTIONS(7353), - [anon_sym_requires] = ACTIONS(7353), - }, - [STATE(2972)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), - [anon_sym_COMMA] = ACTIONS(7475), - [anon_sym_LPAREN2] = ACTIONS(7475), - [anon_sym_DASH] = ACTIONS(7473), - [anon_sym_PLUS] = ACTIONS(7473), - [anon_sym_STAR] = ACTIONS(7473), - [anon_sym_SLASH] = ACTIONS(7473), - [anon_sym_PERCENT] = ACTIONS(7473), - [anon_sym_PIPE_PIPE] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7475), - [anon_sym_PIPE] = ACTIONS(7473), - [anon_sym_CARET] = ACTIONS(7473), - [anon_sym_AMP] = ACTIONS(7473), - [anon_sym_EQ_EQ] = ACTIONS(7475), - [anon_sym_BANG_EQ] = ACTIONS(7475), - [anon_sym_GT] = ACTIONS(7473), - [anon_sym_GT_EQ] = ACTIONS(7475), - [anon_sym_LT_EQ] = ACTIONS(7473), - [anon_sym_LT] = ACTIONS(7473), - [anon_sym_LT_LT] = ACTIONS(7473), - [anon_sym_GT_GT] = ACTIONS(7473), - [anon_sym___extension__] = ACTIONS(7475), - [anon_sym_COLON_COLON] = ACTIONS(7475), - [anon_sym_LBRACE] = ACTIONS(7475), - [anon_sym_LBRACK] = ACTIONS(7475), - [anon_sym_RBRACK] = ACTIONS(7475), - [anon_sym_EQ] = ACTIONS(7473), - [anon_sym_const] = ACTIONS(7473), - [anon_sym_constexpr] = ACTIONS(7475), - [anon_sym_volatile] = ACTIONS(7475), - [anon_sym_restrict] = ACTIONS(7475), - [anon_sym___restrict__] = ACTIONS(7475), - [anon_sym__Atomic] = ACTIONS(7475), - [anon_sym__Noreturn] = ACTIONS(7475), - [anon_sym_noreturn] = ACTIONS(7475), - [anon_sym__Nonnull] = ACTIONS(7475), - [anon_sym_mutable] = ACTIONS(7475), - [anon_sym_constinit] = ACTIONS(7475), - [anon_sym_consteval] = ACTIONS(7475), - [anon_sym_alignas] = ACTIONS(7475), - [anon_sym__Alignas] = ACTIONS(7475), - [anon_sym_QMARK] = ACTIONS(7475), - [anon_sym_STAR_EQ] = ACTIONS(7475), - [anon_sym_SLASH_EQ] = ACTIONS(7475), - [anon_sym_PERCENT_EQ] = ACTIONS(7475), - [anon_sym_PLUS_EQ] = ACTIONS(7475), - [anon_sym_DASH_EQ] = ACTIONS(7475), - [anon_sym_LT_LT_EQ] = ACTIONS(7475), - [anon_sym_GT_GT_EQ] = ACTIONS(7475), - [anon_sym_AMP_EQ] = ACTIONS(7475), - [anon_sym_CARET_EQ] = ACTIONS(7475), - [anon_sym_PIPE_EQ] = ACTIONS(7475), - [anon_sym_and_eq] = ACTIONS(7475), - [anon_sym_or_eq] = ACTIONS(7475), - [anon_sym_xor_eq] = ACTIONS(7475), - [anon_sym_LT_EQ_GT] = ACTIONS(7475), - [anon_sym_or] = ACTIONS(7473), - [anon_sym_and] = ACTIONS(7473), - [anon_sym_bitor] = ACTIONS(7475), - [anon_sym_xor] = ACTIONS(7473), - [anon_sym_bitand] = ACTIONS(7475), - [anon_sym_not_eq] = ACTIONS(7475), - [anon_sym_DASH_DASH] = ACTIONS(7475), - [anon_sym_PLUS_PLUS] = ACTIONS(7475), - [anon_sym_DOT] = ACTIONS(7473), - [anon_sym_DOT_STAR] = ACTIONS(7475), - [anon_sym_DASH_GT] = ACTIONS(7475), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7475), - [anon_sym_override] = ACTIONS(7475), - [anon_sym_requires] = ACTIONS(7475), - }, - [STATE(2973)] = { - [sym_virtual_specifier] = STATE(3433), - [sym__function_postfix] = STATE(3687), - [sym_requires_clause] = STATE(3687), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(8905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8907), - [anon_sym_COMMA] = ACTIONS(8907), - [anon_sym_RPAREN] = ACTIONS(8907), - [aux_sym_preproc_if_token2] = ACTIONS(8907), - [aux_sym_preproc_else_token1] = ACTIONS(8907), - [aux_sym_preproc_elif_token1] = ACTIONS(8905), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8907), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8907), - [anon_sym_LPAREN2] = ACTIONS(8907), - [anon_sym_DASH] = ACTIONS(8905), - [anon_sym_PLUS] = ACTIONS(8905), - [anon_sym_STAR] = ACTIONS(8905), - [anon_sym_SLASH] = ACTIONS(8905), - [anon_sym_PERCENT] = ACTIONS(8905), - [anon_sym_PIPE_PIPE] = ACTIONS(8907), - [anon_sym_AMP_AMP] = ACTIONS(8907), - [anon_sym_PIPE] = ACTIONS(8905), - [anon_sym_CARET] = ACTIONS(8905), - [anon_sym_AMP] = ACTIONS(8905), - [anon_sym_EQ_EQ] = ACTIONS(8907), - [anon_sym_BANG_EQ] = ACTIONS(8907), - [anon_sym_GT] = ACTIONS(8905), - [anon_sym_GT_EQ] = ACTIONS(8907), - [anon_sym_LT_EQ] = ACTIONS(8905), - [anon_sym_LT] = ACTIONS(8905), - [anon_sym_LT_LT] = ACTIONS(8905), - [anon_sym_GT_GT] = ACTIONS(8905), - [anon_sym_SEMI] = ACTIONS(8907), - [anon_sym___attribute__] = ACTIONS(8905), - [anon_sym___attribute] = ACTIONS(8905), - [anon_sym_COLON] = ACTIONS(8905), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8907), - [anon_sym_RBRACE] = ACTIONS(8907), - [anon_sym_LBRACK] = ACTIONS(8907), - [anon_sym_EQ] = ACTIONS(8905), - [anon_sym_QMARK] = ACTIONS(8907), - [anon_sym_STAR_EQ] = ACTIONS(8907), - [anon_sym_SLASH_EQ] = ACTIONS(8907), - [anon_sym_PERCENT_EQ] = ACTIONS(8907), - [anon_sym_PLUS_EQ] = ACTIONS(8907), - [anon_sym_DASH_EQ] = ACTIONS(8907), - [anon_sym_LT_LT_EQ] = ACTIONS(8907), - [anon_sym_GT_GT_EQ] = ACTIONS(8907), - [anon_sym_AMP_EQ] = ACTIONS(8907), - [anon_sym_CARET_EQ] = ACTIONS(8907), - [anon_sym_PIPE_EQ] = ACTIONS(8907), - [anon_sym_and_eq] = ACTIONS(8905), - [anon_sym_or_eq] = ACTIONS(8905), - [anon_sym_xor_eq] = ACTIONS(8905), - [anon_sym_LT_EQ_GT] = ACTIONS(8907), - [anon_sym_or] = ACTIONS(8905), - [anon_sym_and] = ACTIONS(8905), - [anon_sym_bitor] = ACTIONS(8905), - [anon_sym_xor] = ACTIONS(8905), - [anon_sym_bitand] = ACTIONS(8905), - [anon_sym_not_eq] = ACTIONS(8905), - [anon_sym_DASH_DASH] = ACTIONS(8907), - [anon_sym_PLUS_PLUS] = ACTIONS(8907), - [anon_sym_DOT] = ACTIONS(8905), - [anon_sym_DOT_STAR] = ACTIONS(8907), - [anon_sym_DASH_GT] = ACTIONS(8907), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_requires] = ACTIONS(6508), - [anon_sym_COLON_RBRACK] = ACTIONS(8907), - }, - [STATE(2974)] = { - [sym__abstract_declarator] = STATE(6151), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2079), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(7347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [aux_sym_preproc_if_token2] = ACTIONS(7345), - [aux_sym_preproc_else_token1] = ACTIONS(7345), - [aux_sym_preproc_elif_token1] = ACTIONS(7347), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(8086), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8088), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8090), - [anon_sym_EQ_EQ] = ACTIONS(7345), - [anon_sym_BANG_EQ] = ACTIONS(7345), - [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ] = ACTIONS(7347), - [anon_sym_LT] = ACTIONS(7347), - [anon_sym_LT_LT] = ACTIONS(7345), - [anon_sym_GT_GT] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(7345), - [anon_sym_LT_EQ_GT] = ACTIONS(7345), - [anon_sym_or] = ACTIONS(7347), - [anon_sym_and] = ACTIONS(7347), - [anon_sym_bitor] = ACTIONS(7347), - [anon_sym_xor] = ACTIONS(7347), - [anon_sym_bitand] = ACTIONS(7347), - [anon_sym_not_eq] = ACTIONS(7347), - [anon_sym_DASH_DASH] = ACTIONS(7345), - [anon_sym_PLUS_PLUS] = ACTIONS(7345), - [anon_sym_DOT] = ACTIONS(7347), - [anon_sym_DOT_STAR] = ACTIONS(7345), - [anon_sym_DASH_GT] = ACTIONS(7345), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7347), - [anon_sym_override] = ACTIONS(7347), - [anon_sym_requires] = ACTIONS(7347), - }, - [STATE(2975)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym__function_attributes_end] = STATE(4353), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(4468), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7789), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7789), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8318), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8321), - [anon_sym_override] = ACTIONS(8321), - [anon_sym_GT2] = ACTIONS(7791), - [anon_sym_requires] = ACTIONS(8324), - }, [STATE(2976)] = { - [sym_identifier] = ACTIONS(8909), - [anon_sym_LPAREN2] = ACTIONS(8911), - [anon_sym_TILDE] = ACTIONS(8911), - [anon_sym_STAR] = ACTIONS(8911), - [anon_sym_PIPE_PIPE] = ACTIONS(8911), - [anon_sym_AMP_AMP] = ACTIONS(8911), - [anon_sym_AMP] = ACTIONS(8909), - [anon_sym___extension__] = ACTIONS(8909), - [anon_sym_virtual] = ACTIONS(8909), - [anon_sym_extern] = ACTIONS(8909), - [anon_sym___attribute__] = ACTIONS(8909), - [anon_sym___attribute] = ACTIONS(8909), - [anon_sym_using] = ACTIONS(8909), - [anon_sym_COLON_COLON] = ACTIONS(8911), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8911), - [anon_sym___declspec] = ACTIONS(8909), - [anon_sym___based] = ACTIONS(8909), - [anon_sym___cdecl] = ACTIONS(8909), - [anon_sym___clrcall] = ACTIONS(8909), - [anon_sym___stdcall] = ACTIONS(8909), - [anon_sym___fastcall] = ACTIONS(8909), - [anon_sym___thiscall] = ACTIONS(8909), - [anon_sym___vectorcall] = ACTIONS(8909), - [anon_sym_LBRACE] = ACTIONS(8911), - [anon_sym_signed] = ACTIONS(8909), - [anon_sym_unsigned] = ACTIONS(8909), - [anon_sym_long] = ACTIONS(8909), - [anon_sym_short] = ACTIONS(8909), - [anon_sym_LBRACK] = ACTIONS(8909), - [anon_sym_static] = ACTIONS(8909), - [anon_sym_register] = ACTIONS(8909), - [anon_sym_inline] = ACTIONS(8909), - [anon_sym___inline] = ACTIONS(8909), - [anon_sym___inline__] = ACTIONS(8909), - [anon_sym___forceinline] = ACTIONS(8909), - [anon_sym_thread_local] = ACTIONS(8909), - [anon_sym___thread] = ACTIONS(8909), - [anon_sym_const] = ACTIONS(8909), - [anon_sym_constexpr] = ACTIONS(8909), - [anon_sym_volatile] = ACTIONS(8909), - [anon_sym_restrict] = ACTIONS(8909), - [anon_sym___restrict__] = ACTIONS(8909), - [anon_sym__Atomic] = ACTIONS(8909), - [anon_sym__Noreturn] = ACTIONS(8909), - [anon_sym_noreturn] = ACTIONS(8909), - [anon_sym__Nonnull] = ACTIONS(8909), - [anon_sym_mutable] = ACTIONS(8909), - [anon_sym_constinit] = ACTIONS(8909), - [anon_sym_consteval] = ACTIONS(8909), - [anon_sym_alignas] = ACTIONS(8909), - [anon_sym__Alignas] = ACTIONS(8909), - [sym_primitive_type] = ACTIONS(8909), - [anon_sym_enum] = ACTIONS(8909), - [anon_sym_class] = ACTIONS(8909), - [anon_sym_struct] = ACTIONS(8909), - [anon_sym_union] = ACTIONS(8909), - [anon_sym_or] = ACTIONS(8909), - [anon_sym_and] = ACTIONS(8909), - [anon_sym_typename] = ACTIONS(8909), - [anon_sym_DASH_GT] = ACTIONS(8911), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8909), - [anon_sym_decltype] = ACTIONS(8909), - [anon_sym_explicit] = ACTIONS(8909), - [anon_sym_template] = ACTIONS(8909), - [anon_sym_operator] = ACTIONS(8909), - [anon_sym_friend] = ACTIONS(8909), - [anon_sym_noexcept] = ACTIONS(8909), - [anon_sym_throw] = ACTIONS(8909), - [anon_sym_concept] = ACTIONS(8909), - [anon_sym_LBRACK_COLON] = ACTIONS(8911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7652), + [anon_sym_COMMA] = ACTIONS(7652), + [anon_sym_RPAREN] = ACTIONS(7652), + [anon_sym_LPAREN2] = ACTIONS(7652), + [anon_sym_DASH] = ACTIONS(7650), + [anon_sym_PLUS] = ACTIONS(7650), + [anon_sym_STAR] = ACTIONS(7650), + [anon_sym_SLASH] = ACTIONS(7650), + [anon_sym_PERCENT] = ACTIONS(7650), + [anon_sym_PIPE_PIPE] = ACTIONS(7652), + [anon_sym_AMP_AMP] = ACTIONS(7652), + [anon_sym_PIPE] = ACTIONS(7650), + [anon_sym_CARET] = ACTIONS(7650), + [anon_sym_AMP] = ACTIONS(7650), + [anon_sym_EQ_EQ] = ACTIONS(7652), + [anon_sym_BANG_EQ] = ACTIONS(7652), + [anon_sym_GT] = ACTIONS(7650), + [anon_sym_GT_EQ] = ACTIONS(7652), + [anon_sym_LT_EQ] = ACTIONS(7650), + [anon_sym_LT] = ACTIONS(7650), + [anon_sym_LT_LT] = ACTIONS(7650), + [anon_sym_GT_GT] = ACTIONS(7650), + [anon_sym___extension__] = ACTIONS(7652), + [anon_sym_LBRACE] = ACTIONS(7652), + [anon_sym_LBRACK] = ACTIONS(7652), + [anon_sym_EQ] = ACTIONS(7650), + [anon_sym_const] = ACTIONS(7650), + [anon_sym_constexpr] = ACTIONS(7652), + [anon_sym_volatile] = ACTIONS(7652), + [anon_sym_restrict] = ACTIONS(7652), + [anon_sym___restrict__] = ACTIONS(7652), + [anon_sym__Atomic] = ACTIONS(7652), + [anon_sym__Noreturn] = ACTIONS(7652), + [anon_sym_noreturn] = ACTIONS(7652), + [anon_sym__Nonnull] = ACTIONS(7652), + [anon_sym_mutable] = ACTIONS(7652), + [anon_sym_constinit] = ACTIONS(7652), + [anon_sym_consteval] = ACTIONS(7652), + [anon_sym_alignas] = ACTIONS(7652), + [anon_sym__Alignas] = ACTIONS(7652), + [anon_sym_QMARK] = ACTIONS(7652), + [anon_sym_STAR_EQ] = ACTIONS(7652), + [anon_sym_SLASH_EQ] = ACTIONS(7652), + [anon_sym_PERCENT_EQ] = ACTIONS(7652), + [anon_sym_PLUS_EQ] = ACTIONS(7652), + [anon_sym_DASH_EQ] = ACTIONS(7652), + [anon_sym_LT_LT_EQ] = ACTIONS(7652), + [anon_sym_GT_GT_EQ] = ACTIONS(7652), + [anon_sym_AMP_EQ] = ACTIONS(7652), + [anon_sym_CARET_EQ] = ACTIONS(7652), + [anon_sym_PIPE_EQ] = ACTIONS(7652), + [anon_sym_and_eq] = ACTIONS(7652), + [anon_sym_or_eq] = ACTIONS(7652), + [anon_sym_xor_eq] = ACTIONS(7652), + [anon_sym_LT_EQ_GT] = ACTIONS(7652), + [anon_sym_or] = ACTIONS(7650), + [anon_sym_and] = ACTIONS(7650), + [anon_sym_bitor] = ACTIONS(7652), + [anon_sym_xor] = ACTIONS(7650), + [anon_sym_bitand] = ACTIONS(7652), + [anon_sym_not_eq] = ACTIONS(7652), + [anon_sym_DASH_DASH] = ACTIONS(7652), + [anon_sym_PLUS_PLUS] = ACTIONS(7652), + [anon_sym_DOT] = ACTIONS(7650), + [anon_sym_DOT_STAR] = ACTIONS(7652), + [anon_sym_DASH_GT] = ACTIONS(7650), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7652), + [anon_sym_override] = ACTIONS(7652), + [anon_sym_requires] = ACTIONS(7652), + [anon_sym_DASH_GT_STAR] = ACTIONS(7652), }, [STATE(2977)] = { - [sym_virtual_specifier] = STATE(3433), - [sym__function_postfix] = STATE(3688), - [sym_requires_clause] = STATE(3688), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(8913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8915), - [anon_sym_COMMA] = ACTIONS(8915), - [anon_sym_RPAREN] = ACTIONS(8915), - [aux_sym_preproc_if_token2] = ACTIONS(8915), - [aux_sym_preproc_else_token1] = ACTIONS(8915), - [aux_sym_preproc_elif_token1] = ACTIONS(8913), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8915), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8915), - [anon_sym_LPAREN2] = ACTIONS(8915), - [anon_sym_DASH] = ACTIONS(8913), - [anon_sym_PLUS] = ACTIONS(8913), - [anon_sym_STAR] = ACTIONS(8913), - [anon_sym_SLASH] = ACTIONS(8913), - [anon_sym_PERCENT] = ACTIONS(8913), - [anon_sym_PIPE_PIPE] = ACTIONS(8915), - [anon_sym_AMP_AMP] = ACTIONS(8915), - [anon_sym_PIPE] = ACTIONS(8913), - [anon_sym_CARET] = ACTIONS(8913), - [anon_sym_AMP] = ACTIONS(8913), - [anon_sym_EQ_EQ] = ACTIONS(8915), - [anon_sym_BANG_EQ] = ACTIONS(8915), - [anon_sym_GT] = ACTIONS(8913), - [anon_sym_GT_EQ] = ACTIONS(8915), - [anon_sym_LT_EQ] = ACTIONS(8913), - [anon_sym_LT] = ACTIONS(8913), - [anon_sym_LT_LT] = ACTIONS(8913), - [anon_sym_GT_GT] = ACTIONS(8913), - [anon_sym_SEMI] = ACTIONS(8915), - [anon_sym___attribute__] = ACTIONS(8913), - [anon_sym___attribute] = ACTIONS(8913), - [anon_sym_COLON] = ACTIONS(8913), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8915), - [anon_sym_RBRACE] = ACTIONS(8915), - [anon_sym_LBRACK] = ACTIONS(8915), - [anon_sym_EQ] = ACTIONS(8913), - [anon_sym_QMARK] = ACTIONS(8915), - [anon_sym_STAR_EQ] = ACTIONS(8915), - [anon_sym_SLASH_EQ] = ACTIONS(8915), - [anon_sym_PERCENT_EQ] = ACTIONS(8915), - [anon_sym_PLUS_EQ] = ACTIONS(8915), - [anon_sym_DASH_EQ] = ACTIONS(8915), - [anon_sym_LT_LT_EQ] = ACTIONS(8915), - [anon_sym_GT_GT_EQ] = ACTIONS(8915), - [anon_sym_AMP_EQ] = ACTIONS(8915), - [anon_sym_CARET_EQ] = ACTIONS(8915), - [anon_sym_PIPE_EQ] = ACTIONS(8915), - [anon_sym_and_eq] = ACTIONS(8913), - [anon_sym_or_eq] = ACTIONS(8913), - [anon_sym_xor_eq] = ACTIONS(8913), - [anon_sym_LT_EQ_GT] = ACTIONS(8915), - [anon_sym_or] = ACTIONS(8913), - [anon_sym_and] = ACTIONS(8913), - [anon_sym_bitor] = ACTIONS(8913), - [anon_sym_xor] = ACTIONS(8913), - [anon_sym_bitand] = ACTIONS(8913), - [anon_sym_not_eq] = ACTIONS(8913), - [anon_sym_DASH_DASH] = ACTIONS(8915), - [anon_sym_PLUS_PLUS] = ACTIONS(8915), - [anon_sym_DOT] = ACTIONS(8913), - [anon_sym_DOT_STAR] = ACTIONS(8915), - [anon_sym_DASH_GT] = ACTIONS(8915), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_requires] = ACTIONS(6508), - [anon_sym_COLON_RBRACK] = ACTIONS(8915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7656), + [anon_sym_COMMA] = ACTIONS(7656), + [anon_sym_RPAREN] = ACTIONS(7656), + [anon_sym_LPAREN2] = ACTIONS(7656), + [anon_sym_DASH] = ACTIONS(7654), + [anon_sym_PLUS] = ACTIONS(7654), + [anon_sym_STAR] = ACTIONS(7654), + [anon_sym_SLASH] = ACTIONS(7654), + [anon_sym_PERCENT] = ACTIONS(7654), + [anon_sym_PIPE_PIPE] = ACTIONS(7656), + [anon_sym_AMP_AMP] = ACTIONS(7656), + [anon_sym_PIPE] = ACTIONS(7654), + [anon_sym_CARET] = ACTIONS(7654), + [anon_sym_AMP] = ACTIONS(7654), + [anon_sym_EQ_EQ] = ACTIONS(7656), + [anon_sym_BANG_EQ] = ACTIONS(7656), + [anon_sym_GT] = ACTIONS(7654), + [anon_sym_GT_EQ] = ACTIONS(7656), + [anon_sym_LT_EQ] = ACTIONS(7654), + [anon_sym_LT] = ACTIONS(7654), + [anon_sym_LT_LT] = ACTIONS(7654), + [anon_sym_GT_GT] = ACTIONS(7654), + [anon_sym___extension__] = ACTIONS(7656), + [anon_sym_LBRACE] = ACTIONS(7656), + [anon_sym_LBRACK] = ACTIONS(7656), + [anon_sym_EQ] = ACTIONS(7654), + [anon_sym_const] = ACTIONS(7654), + [anon_sym_constexpr] = ACTIONS(7656), + [anon_sym_volatile] = ACTIONS(7656), + [anon_sym_restrict] = ACTIONS(7656), + [anon_sym___restrict__] = ACTIONS(7656), + [anon_sym__Atomic] = ACTIONS(7656), + [anon_sym__Noreturn] = ACTIONS(7656), + [anon_sym_noreturn] = ACTIONS(7656), + [anon_sym__Nonnull] = ACTIONS(7656), + [anon_sym_mutable] = ACTIONS(7656), + [anon_sym_constinit] = ACTIONS(7656), + [anon_sym_consteval] = ACTIONS(7656), + [anon_sym_alignas] = ACTIONS(7656), + [anon_sym__Alignas] = ACTIONS(7656), + [anon_sym_QMARK] = ACTIONS(7656), + [anon_sym_STAR_EQ] = ACTIONS(7656), + [anon_sym_SLASH_EQ] = ACTIONS(7656), + [anon_sym_PERCENT_EQ] = ACTIONS(7656), + [anon_sym_PLUS_EQ] = ACTIONS(7656), + [anon_sym_DASH_EQ] = ACTIONS(7656), + [anon_sym_LT_LT_EQ] = ACTIONS(7656), + [anon_sym_GT_GT_EQ] = ACTIONS(7656), + [anon_sym_AMP_EQ] = ACTIONS(7656), + [anon_sym_CARET_EQ] = ACTIONS(7656), + [anon_sym_PIPE_EQ] = ACTIONS(7656), + [anon_sym_and_eq] = ACTIONS(7656), + [anon_sym_or_eq] = ACTIONS(7656), + [anon_sym_xor_eq] = ACTIONS(7656), + [anon_sym_LT_EQ_GT] = ACTIONS(7656), + [anon_sym_or] = ACTIONS(7654), + [anon_sym_and] = ACTIONS(7654), + [anon_sym_bitor] = ACTIONS(7656), + [anon_sym_xor] = ACTIONS(7654), + [anon_sym_bitand] = ACTIONS(7656), + [anon_sym_not_eq] = ACTIONS(7656), + [anon_sym_DASH_DASH] = ACTIONS(7656), + [anon_sym_PLUS_PLUS] = ACTIONS(7656), + [anon_sym_DOT] = ACTIONS(7654), + [anon_sym_DOT_STAR] = ACTIONS(7656), + [anon_sym_DASH_GT] = ACTIONS(7654), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7656), + [anon_sym_override] = ACTIONS(7656), + [anon_sym_requires] = ACTIONS(7656), + [anon_sym_DASH_GT_STAR] = ACTIONS(7656), }, [STATE(2978)] = { - [sym_template_argument_list] = STATE(3137), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6576), - [anon_sym_PLUS] = ACTIONS(6576), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6576), - [anon_sym_PERCENT] = ACTIONS(6576), - [anon_sym_PIPE_PIPE] = ACTIONS(6569), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6576), - [anon_sym_CARET] = ACTIONS(6576), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6569), - [anon_sym_BANG_EQ] = ACTIONS(6569), - [anon_sym_GT] = ACTIONS(6576), - [anon_sym_GT_EQ] = ACTIONS(6569), - [anon_sym_LT_EQ] = ACTIONS(6576), - [anon_sym_LT] = ACTIONS(8917), - [anon_sym_LT_LT] = ACTIONS(6576), - [anon_sym_GT_GT] = ACTIONS(6576), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_RBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6569), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6567), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6567), - [anon_sym_or_eq] = ACTIONS(6567), - [anon_sym_xor_eq] = ACTIONS(6567), - [anon_sym_LT_EQ_GT] = ACTIONS(6569), - [anon_sym_or] = ACTIONS(6576), - [anon_sym_and] = ACTIONS(6576), - [anon_sym_bitor] = ACTIONS(6569), - [anon_sym_xor] = ACTIONS(6576), - [anon_sym_bitand] = ACTIONS(6569), - [anon_sym_not_eq] = ACTIONS(6569), - [anon_sym_DASH_DASH] = ACTIONS(6569), - [anon_sym_PLUS_PLUS] = ACTIONS(6569), - [anon_sym_DOT] = ACTIONS(6576), - [anon_sym_DOT_STAR] = ACTIONS(6569), - [anon_sym_DASH_GT] = ACTIONS(6569), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), }, [STATE(2979)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym__function_attributes_end] = STATE(4394), - [sym__function_postfix] = STATE(5110), - [sym_trailing_return_type] = STATE(4532), - [sym_requires_clause] = STATE(5110), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_RBRACK] = ACTIONS(7791), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8360), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6742), - [anon_sym_override] = ACTIONS(6742), - [anon_sym_requires] = ACTIONS(6744), + [sym_decltype_auto] = STATE(3149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8633), + [anon_sym_decltype] = ACTIONS(7056), }, [STATE(2980)] = { - [sym__abstract_declarator] = STATE(6179), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2069), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8111), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8113), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8115), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), - [anon_sym_RBRACE] = ACTIONS(6823), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - [anon_sym_COLON_RBRACK] = ACTIONS(6823), + [sym_identifier] = ACTIONS(8923), + [anon_sym_LPAREN2] = ACTIONS(8925), + [anon_sym_TILDE] = ACTIONS(8925), + [anon_sym_STAR] = ACTIONS(8925), + [anon_sym_PIPE_PIPE] = ACTIONS(8925), + [anon_sym_AMP_AMP] = ACTIONS(8925), + [anon_sym_AMP] = ACTIONS(8923), + [anon_sym___extension__] = ACTIONS(8923), + [anon_sym_virtual] = ACTIONS(8923), + [anon_sym_extern] = ACTIONS(8923), + [anon_sym___attribute__] = ACTIONS(8923), + [anon_sym___attribute] = ACTIONS(8923), + [anon_sym_using] = ACTIONS(8923), + [anon_sym_COLON_COLON] = ACTIONS(8925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8925), + [anon_sym___declspec] = ACTIONS(8923), + [anon_sym___based] = ACTIONS(8923), + [anon_sym___cdecl] = ACTIONS(8923), + [anon_sym___clrcall] = ACTIONS(8923), + [anon_sym___stdcall] = ACTIONS(8923), + [anon_sym___fastcall] = ACTIONS(8923), + [anon_sym___thiscall] = ACTIONS(8923), + [anon_sym___vectorcall] = ACTIONS(8923), + [anon_sym_LBRACE] = ACTIONS(8925), + [anon_sym_signed] = ACTIONS(8923), + [anon_sym_unsigned] = ACTIONS(8923), + [anon_sym_long] = ACTIONS(8923), + [anon_sym_short] = ACTIONS(8923), + [anon_sym_LBRACK] = ACTIONS(8923), + [anon_sym_static] = ACTIONS(8923), + [anon_sym_register] = ACTIONS(8923), + [anon_sym_inline] = ACTIONS(8923), + [anon_sym___inline] = ACTIONS(8923), + [anon_sym___inline__] = ACTIONS(8923), + [anon_sym___forceinline] = ACTIONS(8923), + [anon_sym_thread_local] = ACTIONS(8923), + [anon_sym___thread] = ACTIONS(8923), + [anon_sym_const] = ACTIONS(8923), + [anon_sym_constexpr] = ACTIONS(8923), + [anon_sym_volatile] = ACTIONS(8923), + [anon_sym_restrict] = ACTIONS(8923), + [anon_sym___restrict__] = ACTIONS(8923), + [anon_sym__Atomic] = ACTIONS(8923), + [anon_sym__Noreturn] = ACTIONS(8923), + [anon_sym_noreturn] = ACTIONS(8923), + [anon_sym__Nonnull] = ACTIONS(8923), + [anon_sym_mutable] = ACTIONS(8923), + [anon_sym_constinit] = ACTIONS(8923), + [anon_sym_consteval] = ACTIONS(8923), + [anon_sym_alignas] = ACTIONS(8923), + [anon_sym__Alignas] = ACTIONS(8923), + [sym_primitive_type] = ACTIONS(8923), + [anon_sym_enum] = ACTIONS(8923), + [anon_sym_class] = ACTIONS(8923), + [anon_sym_struct] = ACTIONS(8923), + [anon_sym_union] = ACTIONS(8923), + [anon_sym_or] = ACTIONS(8923), + [anon_sym_and] = ACTIONS(8923), + [anon_sym_typename] = ACTIONS(8923), + [anon_sym_DASH_GT] = ACTIONS(8925), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8923), + [anon_sym_decltype] = ACTIONS(8923), + [anon_sym_explicit] = ACTIONS(8923), + [anon_sym_template] = ACTIONS(8923), + [anon_sym_operator] = ACTIONS(8923), + [anon_sym_friend] = ACTIONS(8923), + [anon_sym_noexcept] = ACTIONS(8923), + [anon_sym_throw] = ACTIONS(8923), + [anon_sym_concept] = ACTIONS(8923), + [anon_sym_LBRACK_COLON] = ACTIONS(8925), }, [STATE(2981)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym__function_attributes_end] = STATE(4354), - [sym__function_postfix] = STATE(5047), - [sym_trailing_return_type] = STATE(4470), - [sym_requires_clause] = STATE(5047), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7968), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7968), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8432), - [anon_sym_override] = ACTIONS(8432), - [anon_sym_GT2] = ACTIONS(7966), - [anon_sym_requires] = ACTIONS(8435), + [sym_identifier] = ACTIONS(8923), + [anon_sym_LPAREN2] = ACTIONS(8925), + [anon_sym_TILDE] = ACTIONS(8925), + [anon_sym_STAR] = ACTIONS(8925), + [anon_sym_PIPE_PIPE] = ACTIONS(8925), + [anon_sym_AMP_AMP] = ACTIONS(8925), + [anon_sym_AMP] = ACTIONS(8923), + [anon_sym___extension__] = ACTIONS(8923), + [anon_sym_virtual] = ACTIONS(8923), + [anon_sym_extern] = ACTIONS(8923), + [anon_sym___attribute__] = ACTIONS(8923), + [anon_sym___attribute] = ACTIONS(8923), + [anon_sym_using] = ACTIONS(8923), + [anon_sym_COLON_COLON] = ACTIONS(8925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8925), + [anon_sym___declspec] = ACTIONS(8923), + [anon_sym___based] = ACTIONS(8923), + [anon_sym___cdecl] = ACTIONS(8923), + [anon_sym___clrcall] = ACTIONS(8923), + [anon_sym___stdcall] = ACTIONS(8923), + [anon_sym___fastcall] = ACTIONS(8923), + [anon_sym___thiscall] = ACTIONS(8923), + [anon_sym___vectorcall] = ACTIONS(8923), + [anon_sym_LBRACE] = ACTIONS(8925), + [anon_sym_signed] = ACTIONS(8923), + [anon_sym_unsigned] = ACTIONS(8923), + [anon_sym_long] = ACTIONS(8923), + [anon_sym_short] = ACTIONS(8923), + [anon_sym_LBRACK] = ACTIONS(8923), + [anon_sym_static] = ACTIONS(8923), + [anon_sym_register] = ACTIONS(8923), + [anon_sym_inline] = ACTIONS(8923), + [anon_sym___inline] = ACTIONS(8923), + [anon_sym___inline__] = ACTIONS(8923), + [anon_sym___forceinline] = ACTIONS(8923), + [anon_sym_thread_local] = ACTIONS(8923), + [anon_sym___thread] = ACTIONS(8923), + [anon_sym_const] = ACTIONS(8923), + [anon_sym_constexpr] = ACTIONS(8923), + [anon_sym_volatile] = ACTIONS(8923), + [anon_sym_restrict] = ACTIONS(8923), + [anon_sym___restrict__] = ACTIONS(8923), + [anon_sym__Atomic] = ACTIONS(8923), + [anon_sym__Noreturn] = ACTIONS(8923), + [anon_sym_noreturn] = ACTIONS(8923), + [anon_sym__Nonnull] = ACTIONS(8923), + [anon_sym_mutable] = ACTIONS(8923), + [anon_sym_constinit] = ACTIONS(8923), + [anon_sym_consteval] = ACTIONS(8923), + [anon_sym_alignas] = ACTIONS(8923), + [anon_sym__Alignas] = ACTIONS(8923), + [sym_primitive_type] = ACTIONS(8923), + [anon_sym_enum] = ACTIONS(8923), + [anon_sym_class] = ACTIONS(8923), + [anon_sym_struct] = ACTIONS(8923), + [anon_sym_union] = ACTIONS(8923), + [anon_sym_or] = ACTIONS(8923), + [anon_sym_and] = ACTIONS(8923), + [anon_sym_typename] = ACTIONS(8923), + [anon_sym_DASH_GT] = ACTIONS(8925), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8923), + [anon_sym_decltype] = ACTIONS(8923), + [anon_sym_explicit] = ACTIONS(8923), + [anon_sym_template] = ACTIONS(8923), + [anon_sym_operator] = ACTIONS(8923), + [anon_sym_friend] = ACTIONS(8923), + [anon_sym_noexcept] = ACTIONS(8923), + [anon_sym_throw] = ACTIONS(8923), + [anon_sym_concept] = ACTIONS(8923), + [anon_sym_LBRACK_COLON] = ACTIONS(8925), }, [STATE(2982)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7563), - [anon_sym_or_eq] = ACTIONS(7563), - [anon_sym_xor_eq] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), - [anon_sym_DASH_GT_STAR] = ACTIONS(7563), + [sym_identifier] = ACTIONS(8923), + [anon_sym_LPAREN2] = ACTIONS(8925), + [anon_sym_TILDE] = ACTIONS(8925), + [anon_sym_STAR] = ACTIONS(8925), + [anon_sym_PIPE_PIPE] = ACTIONS(8925), + [anon_sym_AMP_AMP] = ACTIONS(8925), + [anon_sym_AMP] = ACTIONS(8923), + [anon_sym___extension__] = ACTIONS(8923), + [anon_sym_virtual] = ACTIONS(8923), + [anon_sym_extern] = ACTIONS(8923), + [anon_sym___attribute__] = ACTIONS(8923), + [anon_sym___attribute] = ACTIONS(8923), + [anon_sym_using] = ACTIONS(8923), + [anon_sym_COLON_COLON] = ACTIONS(8925), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8925), + [anon_sym___declspec] = ACTIONS(8923), + [anon_sym___based] = ACTIONS(8923), + [anon_sym___cdecl] = ACTIONS(8923), + [anon_sym___clrcall] = ACTIONS(8923), + [anon_sym___stdcall] = ACTIONS(8923), + [anon_sym___fastcall] = ACTIONS(8923), + [anon_sym___thiscall] = ACTIONS(8923), + [anon_sym___vectorcall] = ACTIONS(8923), + [anon_sym_LBRACE] = ACTIONS(8925), + [anon_sym_signed] = ACTIONS(8923), + [anon_sym_unsigned] = ACTIONS(8923), + [anon_sym_long] = ACTIONS(8923), + [anon_sym_short] = ACTIONS(8923), + [anon_sym_LBRACK] = ACTIONS(8923), + [anon_sym_static] = ACTIONS(8923), + [anon_sym_register] = ACTIONS(8923), + [anon_sym_inline] = ACTIONS(8923), + [anon_sym___inline] = ACTIONS(8923), + [anon_sym___inline__] = ACTIONS(8923), + [anon_sym___forceinline] = ACTIONS(8923), + [anon_sym_thread_local] = ACTIONS(8923), + [anon_sym___thread] = ACTIONS(8923), + [anon_sym_const] = ACTIONS(8923), + [anon_sym_constexpr] = ACTIONS(8923), + [anon_sym_volatile] = ACTIONS(8923), + [anon_sym_restrict] = ACTIONS(8923), + [anon_sym___restrict__] = ACTIONS(8923), + [anon_sym__Atomic] = ACTIONS(8923), + [anon_sym__Noreturn] = ACTIONS(8923), + [anon_sym_noreturn] = ACTIONS(8923), + [anon_sym__Nonnull] = ACTIONS(8923), + [anon_sym_mutable] = ACTIONS(8923), + [anon_sym_constinit] = ACTIONS(8923), + [anon_sym_consteval] = ACTIONS(8923), + [anon_sym_alignas] = ACTIONS(8923), + [anon_sym__Alignas] = ACTIONS(8923), + [sym_primitive_type] = ACTIONS(8923), + [anon_sym_enum] = ACTIONS(8923), + [anon_sym_class] = ACTIONS(8923), + [anon_sym_struct] = ACTIONS(8923), + [anon_sym_union] = ACTIONS(8923), + [anon_sym_or] = ACTIONS(8923), + [anon_sym_and] = ACTIONS(8923), + [anon_sym_typename] = ACTIONS(8923), + [anon_sym_DASH_GT] = ACTIONS(8925), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8923), + [anon_sym_decltype] = ACTIONS(8923), + [anon_sym_explicit] = ACTIONS(8923), + [anon_sym_template] = ACTIONS(8923), + [anon_sym_operator] = ACTIONS(8923), + [anon_sym_friend] = ACTIONS(8923), + [anon_sym_noexcept] = ACTIONS(8923), + [anon_sym_throw] = ACTIONS(8923), + [anon_sym_concept] = ACTIONS(8923), + [anon_sym_LBRACK_COLON] = ACTIONS(8925), }, [STATE(2983)] = { - [sym_identifier] = ACTIONS(8921), - [anon_sym_LPAREN2] = ACTIONS(8923), - [anon_sym_TILDE] = ACTIONS(8923), - [anon_sym_STAR] = ACTIONS(8923), - [anon_sym_PIPE_PIPE] = ACTIONS(8923), - [anon_sym_AMP_AMP] = ACTIONS(8923), - [anon_sym_AMP] = ACTIONS(8921), - [anon_sym___extension__] = ACTIONS(8921), - [anon_sym_virtual] = ACTIONS(8921), - [anon_sym_extern] = ACTIONS(8921), - [anon_sym___attribute__] = ACTIONS(8921), - [anon_sym___attribute] = ACTIONS(8921), - [anon_sym_using] = ACTIONS(8921), - [anon_sym_COLON_COLON] = ACTIONS(8923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8923), - [anon_sym___declspec] = ACTIONS(8921), - [anon_sym___based] = ACTIONS(8921), - [anon_sym___cdecl] = ACTIONS(8921), - [anon_sym___clrcall] = ACTIONS(8921), - [anon_sym___stdcall] = ACTIONS(8921), - [anon_sym___fastcall] = ACTIONS(8921), - [anon_sym___thiscall] = ACTIONS(8921), - [anon_sym___vectorcall] = ACTIONS(8921), - [anon_sym_LBRACE] = ACTIONS(8923), - [anon_sym_signed] = ACTIONS(8921), - [anon_sym_unsigned] = ACTIONS(8921), - [anon_sym_long] = ACTIONS(8921), - [anon_sym_short] = ACTIONS(8921), - [anon_sym_LBRACK] = ACTIONS(8921), - [anon_sym_static] = ACTIONS(8921), - [anon_sym_register] = ACTIONS(8921), - [anon_sym_inline] = ACTIONS(8921), - [anon_sym___inline] = ACTIONS(8921), - [anon_sym___inline__] = ACTIONS(8921), - [anon_sym___forceinline] = ACTIONS(8921), - [anon_sym_thread_local] = ACTIONS(8921), - [anon_sym___thread] = ACTIONS(8921), - [anon_sym_const] = ACTIONS(8921), - [anon_sym_constexpr] = ACTIONS(8921), - [anon_sym_volatile] = ACTIONS(8921), - [anon_sym_restrict] = ACTIONS(8921), - [anon_sym___restrict__] = ACTIONS(8921), - [anon_sym__Atomic] = ACTIONS(8921), - [anon_sym__Noreturn] = ACTIONS(8921), - [anon_sym_noreturn] = ACTIONS(8921), - [anon_sym__Nonnull] = ACTIONS(8921), - [anon_sym_mutable] = ACTIONS(8921), - [anon_sym_constinit] = ACTIONS(8921), - [anon_sym_consteval] = ACTIONS(8921), - [anon_sym_alignas] = ACTIONS(8921), - [anon_sym__Alignas] = ACTIONS(8921), - [sym_primitive_type] = ACTIONS(8921), - [anon_sym_enum] = ACTIONS(8921), - [anon_sym_class] = ACTIONS(8921), - [anon_sym_struct] = ACTIONS(8921), - [anon_sym_union] = ACTIONS(8921), - [anon_sym_or] = ACTIONS(8921), - [anon_sym_and] = ACTIONS(8921), - [anon_sym_typename] = ACTIONS(8921), - [anon_sym_DASH_GT] = ACTIONS(8923), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8921), - [anon_sym_decltype] = ACTIONS(8921), - [anon_sym_explicit] = ACTIONS(8921), - [anon_sym_template] = ACTIONS(8921), - [anon_sym_operator] = ACTIONS(8921), - [anon_sym_friend] = ACTIONS(8921), - [anon_sym_noexcept] = ACTIONS(8921), - [anon_sym_throw] = ACTIONS(8921), - [anon_sym_concept] = ACTIONS(8921), - [anon_sym_LBRACK_COLON] = ACTIONS(8923), + [sym_attribute_specifier] = STATE(3503), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7521), + [anon_sym_COMMA] = ACTIONS(7521), + [anon_sym_RPAREN] = ACTIONS(7521), + [anon_sym_LPAREN2] = ACTIONS(7521), + [anon_sym_DASH] = ACTIONS(7519), + [anon_sym_PLUS] = ACTIONS(7519), + [anon_sym_STAR] = ACTIONS(7519), + [anon_sym_SLASH] = ACTIONS(7519), + [anon_sym_PERCENT] = ACTIONS(7519), + [anon_sym_PIPE_PIPE] = ACTIONS(7521), + [anon_sym_AMP_AMP] = ACTIONS(7521), + [anon_sym_PIPE] = ACTIONS(7519), + [anon_sym_CARET] = ACTIONS(7519), + [anon_sym_AMP] = ACTIONS(7519), + [anon_sym_EQ_EQ] = ACTIONS(7521), + [anon_sym_BANG_EQ] = ACTIONS(7521), + [anon_sym_GT] = ACTIONS(7519), + [anon_sym_GT_EQ] = ACTIONS(7521), + [anon_sym_LT_EQ] = ACTIONS(7519), + [anon_sym_LT] = ACTIONS(7519), + [anon_sym_LT_LT] = ACTIONS(7519), + [anon_sym_GT_GT] = ACTIONS(7519), + [anon_sym___extension__] = ACTIONS(7521), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7521), + [anon_sym_LBRACK] = ACTIONS(7521), + [anon_sym_EQ] = ACTIONS(7519), + [anon_sym_const] = ACTIONS(7519), + [anon_sym_constexpr] = ACTIONS(7521), + [anon_sym_volatile] = ACTIONS(7521), + [anon_sym_restrict] = ACTIONS(7521), + [anon_sym___restrict__] = ACTIONS(7521), + [anon_sym__Atomic] = ACTIONS(7521), + [anon_sym__Noreturn] = ACTIONS(7521), + [anon_sym_noreturn] = ACTIONS(7521), + [anon_sym__Nonnull] = ACTIONS(7521), + [anon_sym_mutable] = ACTIONS(7521), + [anon_sym_constinit] = ACTIONS(7521), + [anon_sym_consteval] = ACTIONS(7521), + [anon_sym_alignas] = ACTIONS(7521), + [anon_sym__Alignas] = ACTIONS(7521), + [anon_sym_QMARK] = ACTIONS(7521), + [anon_sym_STAR_EQ] = ACTIONS(7521), + [anon_sym_SLASH_EQ] = ACTIONS(7521), + [anon_sym_PERCENT_EQ] = ACTIONS(7521), + [anon_sym_PLUS_EQ] = ACTIONS(7521), + [anon_sym_DASH_EQ] = ACTIONS(7521), + [anon_sym_LT_LT_EQ] = ACTIONS(7521), + [anon_sym_GT_GT_EQ] = ACTIONS(7521), + [anon_sym_AMP_EQ] = ACTIONS(7521), + [anon_sym_CARET_EQ] = ACTIONS(7521), + [anon_sym_PIPE_EQ] = ACTIONS(7521), + [anon_sym_LT_EQ_GT] = ACTIONS(7521), + [anon_sym_or] = ACTIONS(7521), + [anon_sym_and] = ACTIONS(7521), + [anon_sym_bitor] = ACTIONS(7521), + [anon_sym_xor] = ACTIONS(7521), + [anon_sym_bitand] = ACTIONS(7521), + [anon_sym_not_eq] = ACTIONS(7521), + [anon_sym_DASH_DASH] = ACTIONS(7521), + [anon_sym_PLUS_PLUS] = ACTIONS(7521), + [anon_sym_DOT] = ACTIONS(7519), + [anon_sym_DOT_STAR] = ACTIONS(7521), + [anon_sym_DASH_GT] = ACTIONS(7519), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7521), + [anon_sym_override] = ACTIONS(7521), + [anon_sym_requires] = ACTIONS(7521), + [anon_sym_DASH_GT_STAR] = ACTIONS(7521), }, [STATE(2984)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_GT2] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7674), + [anon_sym_or_eq] = ACTIONS(7674), + [anon_sym_xor_eq] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7672), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + [anon_sym_DASH_GT_STAR] = ACTIONS(7674), }, [STATE(2985)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_RPAREN] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6605), - [anon_sym_PERCENT] = ACTIONS(6605), - [anon_sym_PIPE_PIPE] = ACTIONS(6598), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6605), - [anon_sym_CARET] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_BANG_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6605), - [anon_sym_GT_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(6605), - [anon_sym_LT_LT] = ACTIONS(6605), - [anon_sym_GT_GT] = ACTIONS(6605), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6598), - [anon_sym_STAR_EQ] = ACTIONS(6598), - [anon_sym_SLASH_EQ] = ACTIONS(6598), - [anon_sym_PERCENT_EQ] = ACTIONS(6598), - [anon_sym_PLUS_EQ] = ACTIONS(6598), - [anon_sym_DASH_EQ] = ACTIONS(6598), - [anon_sym_LT_LT_EQ] = ACTIONS(6598), - [anon_sym_GT_GT_EQ] = ACTIONS(6598), - [anon_sym_AMP_EQ] = ACTIONS(6598), - [anon_sym_CARET_EQ] = ACTIONS(6598), - [anon_sym_PIPE_EQ] = ACTIONS(6598), - [anon_sym_and_eq] = ACTIONS(6598), - [anon_sym_or_eq] = ACTIONS(6598), - [anon_sym_xor_eq] = ACTIONS(6598), - [anon_sym_LT_EQ_GT] = ACTIONS(6598), - [anon_sym_or] = ACTIONS(6605), - [anon_sym_and] = ACTIONS(6605), - [anon_sym_bitor] = ACTIONS(6598), - [anon_sym_xor] = ACTIONS(6605), - [anon_sym_bitand] = ACTIONS(6598), - [anon_sym_not_eq] = ACTIONS(6598), - [anon_sym_DASH_DASH] = ACTIONS(6598), - [anon_sym_PLUS_PLUS] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6605), - [anon_sym_DOT_STAR] = ACTIONS(6598), - [anon_sym_DASH_GT] = ACTIONS(6605), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_DASH_GT_STAR] = ACTIONS(6598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7678), + [anon_sym_COMMA] = ACTIONS(7678), + [anon_sym_RPAREN] = ACTIONS(7678), + [anon_sym_LPAREN2] = ACTIONS(7678), + [anon_sym_DASH] = ACTIONS(7676), + [anon_sym_PLUS] = ACTIONS(7676), + [anon_sym_STAR] = ACTIONS(7676), + [anon_sym_SLASH] = ACTIONS(7676), + [anon_sym_PERCENT] = ACTIONS(7676), + [anon_sym_PIPE_PIPE] = ACTIONS(7678), + [anon_sym_AMP_AMP] = ACTIONS(7678), + [anon_sym_PIPE] = ACTIONS(7676), + [anon_sym_CARET] = ACTIONS(7676), + [anon_sym_AMP] = ACTIONS(7676), + [anon_sym_EQ_EQ] = ACTIONS(7678), + [anon_sym_BANG_EQ] = ACTIONS(7678), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_GT_EQ] = ACTIONS(7678), + [anon_sym_LT_EQ] = ACTIONS(7676), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_LT_LT] = ACTIONS(7676), + [anon_sym_GT_GT] = ACTIONS(7676), + [anon_sym___extension__] = ACTIONS(7678), + [anon_sym_LBRACE] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7678), + [anon_sym_EQ] = ACTIONS(7676), + [anon_sym_const] = ACTIONS(7676), + [anon_sym_constexpr] = ACTIONS(7678), + [anon_sym_volatile] = ACTIONS(7678), + [anon_sym_restrict] = ACTIONS(7678), + [anon_sym___restrict__] = ACTIONS(7678), + [anon_sym__Atomic] = ACTIONS(7678), + [anon_sym__Noreturn] = ACTIONS(7678), + [anon_sym_noreturn] = ACTIONS(7678), + [anon_sym__Nonnull] = ACTIONS(7678), + [anon_sym_mutable] = ACTIONS(7678), + [anon_sym_constinit] = ACTIONS(7678), + [anon_sym_consteval] = ACTIONS(7678), + [anon_sym_alignas] = ACTIONS(7678), + [anon_sym__Alignas] = ACTIONS(7678), + [anon_sym_QMARK] = ACTIONS(7678), + [anon_sym_STAR_EQ] = ACTIONS(7678), + [anon_sym_SLASH_EQ] = ACTIONS(7678), + [anon_sym_PERCENT_EQ] = ACTIONS(7678), + [anon_sym_PLUS_EQ] = ACTIONS(7678), + [anon_sym_DASH_EQ] = ACTIONS(7678), + [anon_sym_LT_LT_EQ] = ACTIONS(7678), + [anon_sym_GT_GT_EQ] = ACTIONS(7678), + [anon_sym_AMP_EQ] = ACTIONS(7678), + [anon_sym_CARET_EQ] = ACTIONS(7678), + [anon_sym_PIPE_EQ] = ACTIONS(7678), + [anon_sym_and_eq] = ACTIONS(7678), + [anon_sym_or_eq] = ACTIONS(7678), + [anon_sym_xor_eq] = ACTIONS(7678), + [anon_sym_LT_EQ_GT] = ACTIONS(7678), + [anon_sym_or] = ACTIONS(7676), + [anon_sym_and] = ACTIONS(7676), + [anon_sym_bitor] = ACTIONS(7678), + [anon_sym_xor] = ACTIONS(7676), + [anon_sym_bitand] = ACTIONS(7678), + [anon_sym_not_eq] = ACTIONS(7678), + [anon_sym_DASH_DASH] = ACTIONS(7678), + [anon_sym_PLUS_PLUS] = ACTIONS(7678), + [anon_sym_DOT] = ACTIONS(7676), + [anon_sym_DOT_STAR] = ACTIONS(7678), + [anon_sym_DASH_GT] = ACTIONS(7676), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7678), + [anon_sym_override] = ACTIONS(7678), + [anon_sym_requires] = ACTIONS(7678), + [anon_sym_DASH_GT_STAR] = ACTIONS(7678), }, [STATE(2986)] = { - [sym_decltype_auto] = STATE(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8631), - [anon_sym_decltype] = ACTIONS(7038), - [anon_sym_GT2] = ACTIONS(7225), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7682), + [anon_sym_COMMA] = ACTIONS(7682), + [anon_sym_RPAREN] = ACTIONS(7682), + [anon_sym_LPAREN2] = ACTIONS(7682), + [anon_sym_DASH] = ACTIONS(7680), + [anon_sym_PLUS] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7680), + [anon_sym_SLASH] = ACTIONS(7680), + [anon_sym_PERCENT] = ACTIONS(7680), + [anon_sym_PIPE_PIPE] = ACTIONS(7682), + [anon_sym_AMP_AMP] = ACTIONS(7682), + [anon_sym_PIPE] = ACTIONS(7680), + [anon_sym_CARET] = ACTIONS(7680), + [anon_sym_AMP] = ACTIONS(7680), + [anon_sym_EQ_EQ] = ACTIONS(7682), + [anon_sym_BANG_EQ] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7680), + [anon_sym_GT_EQ] = ACTIONS(7682), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_LT] = ACTIONS(7680), + [anon_sym_LT_LT] = ACTIONS(7680), + [anon_sym_GT_GT] = ACTIONS(7680), + [anon_sym___extension__] = ACTIONS(7682), + [anon_sym_LBRACE] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7682), + [anon_sym_EQ] = ACTIONS(7680), + [anon_sym_const] = ACTIONS(7680), + [anon_sym_constexpr] = ACTIONS(7682), + [anon_sym_volatile] = ACTIONS(7682), + [anon_sym_restrict] = ACTIONS(7682), + [anon_sym___restrict__] = ACTIONS(7682), + [anon_sym__Atomic] = ACTIONS(7682), + [anon_sym__Noreturn] = ACTIONS(7682), + [anon_sym_noreturn] = ACTIONS(7682), + [anon_sym__Nonnull] = ACTIONS(7682), + [anon_sym_mutable] = ACTIONS(7682), + [anon_sym_constinit] = ACTIONS(7682), + [anon_sym_consteval] = ACTIONS(7682), + [anon_sym_alignas] = ACTIONS(7682), + [anon_sym__Alignas] = ACTIONS(7682), + [anon_sym_QMARK] = ACTIONS(7682), + [anon_sym_STAR_EQ] = ACTIONS(7682), + [anon_sym_SLASH_EQ] = ACTIONS(7682), + [anon_sym_PERCENT_EQ] = ACTIONS(7682), + [anon_sym_PLUS_EQ] = ACTIONS(7682), + [anon_sym_DASH_EQ] = ACTIONS(7682), + [anon_sym_LT_LT_EQ] = ACTIONS(7682), + [anon_sym_GT_GT_EQ] = ACTIONS(7682), + [anon_sym_AMP_EQ] = ACTIONS(7682), + [anon_sym_CARET_EQ] = ACTIONS(7682), + [anon_sym_PIPE_EQ] = ACTIONS(7682), + [anon_sym_and_eq] = ACTIONS(7682), + [anon_sym_or_eq] = ACTIONS(7682), + [anon_sym_xor_eq] = ACTIONS(7682), + [anon_sym_LT_EQ_GT] = ACTIONS(7682), + [anon_sym_or] = ACTIONS(7680), + [anon_sym_and] = ACTIONS(7680), + [anon_sym_bitor] = ACTIONS(7682), + [anon_sym_xor] = ACTIONS(7680), + [anon_sym_bitand] = ACTIONS(7682), + [anon_sym_not_eq] = ACTIONS(7682), + [anon_sym_DASH_DASH] = ACTIONS(7682), + [anon_sym_PLUS_PLUS] = ACTIONS(7682), + [anon_sym_DOT] = ACTIONS(7680), + [anon_sym_DOT_STAR] = ACTIONS(7682), + [anon_sym_DASH_GT] = ACTIONS(7680), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7682), + [anon_sym_override] = ACTIONS(7682), + [anon_sym_requires] = ACTIONS(7682), + [anon_sym_DASH_GT_STAR] = ACTIONS(7682), }, [STATE(2987)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym__function_attributes_end] = STATE(4364), - [sym__function_postfix] = STATE(5121), - [sym_trailing_return_type] = STATE(4534), - [sym_requires_clause] = STATE(5121), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_RBRACK] = ACTIONS(7966), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8440), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6742), - [anon_sym_override] = ACTIONS(6742), - [anon_sym_requires] = ACTIONS(6744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7674), + [anon_sym_or_eq] = ACTIONS(7674), + [anon_sym_xor_eq] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7672), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + [anon_sym_DASH_GT_STAR] = ACTIONS(7674), }, [STATE(2988)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [sym_identifier] = ACTIONS(5645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [aux_sym_preproc_if_token2] = ACTIONS(5638), - [aux_sym_preproc_else_token1] = ACTIONS(5638), - [aux_sym_preproc_elif_token1] = ACTIONS(5645), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5638), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(8925), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(6807), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(6809), - [anon_sym_SLASH_EQ] = ACTIONS(6809), - [anon_sym_PERCENT_EQ] = ACTIONS(6809), - [anon_sym_PLUS_EQ] = ACTIONS(6809), - [anon_sym_DASH_EQ] = ACTIONS(6809), - [anon_sym_LT_LT_EQ] = ACTIONS(6809), - [anon_sym_GT_GT_EQ] = ACTIONS(6809), - [anon_sym_AMP_EQ] = ACTIONS(6809), - [anon_sym_CARET_EQ] = ACTIONS(6809), - [anon_sym_PIPE_EQ] = ACTIONS(6809), - [anon_sym_and_eq] = ACTIONS(6807), - [anon_sym_or_eq] = ACTIONS(6807), - [anon_sym_xor_eq] = ACTIONS(6807), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [sym_decltype_auto] = STATE(4087), + [sym_template_argument_list] = STATE(2919), + [aux_sym_sized_type_specifier_repeat1] = STATE(3274), + [sym_identifier] = ACTIONS(5609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5617), + [aux_sym_preproc_if_token2] = ACTIONS(5617), + [aux_sym_preproc_else_token1] = ACTIONS(5617), + [aux_sym_preproc_elif_token1] = ACTIONS(5609), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5617), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5617), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_PERCENT] = ACTIONS(5617), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5617), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_EQ_EQ] = ACTIONS(5617), + [anon_sym_BANG_EQ] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_GT_EQ] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(8927), + [anon_sym_LT_LT] = ACTIONS(5617), + [anon_sym_GT_GT] = ACTIONS(5617), + [anon_sym___extension__] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(6764), + [anon_sym_unsigned] = ACTIONS(6764), + [anon_sym_long] = ACTIONS(6764), + [anon_sym_short] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(5617), + [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), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_LT_EQ_GT] = ACTIONS(5617), + [anon_sym_or] = ACTIONS(5609), + [anon_sym_and] = ACTIONS(5609), + [anon_sym_bitor] = ACTIONS(5609), + [anon_sym_xor] = ACTIONS(5609), + [anon_sym_bitand] = ACTIONS(5609), + [anon_sym_not_eq] = ACTIONS(5609), + [anon_sym_DASH_DASH] = ACTIONS(5617), + [anon_sym_PLUS_PLUS] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_DOT_STAR] = ACTIONS(5617), + [anon_sym_DASH_GT] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6770), + [anon_sym_decltype] = ACTIONS(6772), + [anon_sym_final] = ACTIONS(5609), + [anon_sym_override] = ACTIONS(5609), + [anon_sym_requires] = ACTIONS(5609), }, [STATE(2989)] = { - [sym_template_argument_list] = STATE(3131), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6576), - [anon_sym_PLUS] = ACTIONS(6576), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6576), - [anon_sym_PERCENT] = ACTIONS(6576), - [anon_sym_PIPE_PIPE] = ACTIONS(6569), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6576), - [anon_sym_CARET] = ACTIONS(6576), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6569), - [anon_sym_BANG_EQ] = ACTIONS(6569), - [anon_sym_GT] = ACTIONS(6576), - [anon_sym_GT_EQ] = ACTIONS(6569), - [anon_sym_LT_EQ] = ACTIONS(6576), - [anon_sym_LT] = ACTIONS(8917), - [anon_sym_LT_LT] = ACTIONS(6576), - [anon_sym_GT_GT] = ACTIONS(6576), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_RBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6576), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6569), - [anon_sym_STAR_EQ] = ACTIONS(6569), - [anon_sym_SLASH_EQ] = ACTIONS(6569), - [anon_sym_PERCENT_EQ] = ACTIONS(6569), - [anon_sym_PLUS_EQ] = ACTIONS(6569), - [anon_sym_DASH_EQ] = ACTIONS(6569), - [anon_sym_LT_LT_EQ] = ACTIONS(6569), - [anon_sym_GT_GT_EQ] = ACTIONS(6569), - [anon_sym_AMP_EQ] = ACTIONS(6569), - [anon_sym_CARET_EQ] = ACTIONS(6569), - [anon_sym_PIPE_EQ] = ACTIONS(6569), - [anon_sym_and_eq] = ACTIONS(6569), - [anon_sym_or_eq] = ACTIONS(6569), - [anon_sym_xor_eq] = ACTIONS(6569), - [anon_sym_LT_EQ_GT] = ACTIONS(6569), - [anon_sym_or] = ACTIONS(6576), - [anon_sym_and] = ACTIONS(6576), - [anon_sym_bitor] = ACTIONS(6569), - [anon_sym_xor] = ACTIONS(6576), - [anon_sym_bitand] = ACTIONS(6569), - [anon_sym_not_eq] = ACTIONS(6569), - [anon_sym_DASH_DASH] = ACTIONS(6569), - [anon_sym_PLUS_PLUS] = ACTIONS(6569), - [anon_sym_DOT] = ACTIONS(6576), - [anon_sym_DOT_STAR] = ACTIONS(6569), - [anon_sym_DASH_GT] = ACTIONS(6569), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7674), + [anon_sym_or_eq] = ACTIONS(7674), + [anon_sym_xor_eq] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7672), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + [anon_sym_DASH_GT_STAR] = ACTIONS(7674), }, [STATE(2990)] = { - [sym_template_argument_list] = STATE(3735), - [aux_sym_sized_type_specifier_repeat1] = STATE(3285), - [sym_identifier] = ACTIONS(7357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), - [anon_sym_COMMA] = ACTIONS(7359), - [aux_sym_preproc_if_token2] = ACTIONS(7359), - [aux_sym_preproc_else_token1] = ACTIONS(7359), - [aux_sym_preproc_elif_token1] = ACTIONS(7357), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7359), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7359), - [anon_sym_LPAREN2] = ACTIONS(7359), - [anon_sym_DASH] = ACTIONS(7357), - [anon_sym_PLUS] = ACTIONS(7357), - [anon_sym_STAR] = ACTIONS(7359), - [anon_sym_SLASH] = ACTIONS(7357), - [anon_sym_PERCENT] = ACTIONS(7359), - [anon_sym_PIPE_PIPE] = ACTIONS(7359), - [anon_sym_AMP_AMP] = ACTIONS(7359), - [anon_sym_PIPE] = ACTIONS(7357), - [anon_sym_CARET] = ACTIONS(7359), - [anon_sym_AMP] = ACTIONS(7357), - [anon_sym_EQ_EQ] = ACTIONS(7359), - [anon_sym_BANG_EQ] = ACTIONS(7359), - [anon_sym_GT] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7359), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_LT] = ACTIONS(7357), - [anon_sym_LT_LT] = ACTIONS(7359), - [anon_sym_GT_GT] = ACTIONS(7359), - [anon_sym___extension__] = ACTIONS(7357), - [anon_sym___attribute__] = ACTIONS(7357), - [anon_sym___attribute] = ACTIONS(7357), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(7359), - [anon_sym_signed] = ACTIONS(6805), - [anon_sym_unsigned] = ACTIONS(6805), - [anon_sym_long] = ACTIONS(6805), - [anon_sym_short] = ACTIONS(6805), - [anon_sym_LBRACK] = ACTIONS(7359), - [anon_sym_RBRACK] = ACTIONS(7359), - [anon_sym_const] = ACTIONS(7357), - [anon_sym_constexpr] = ACTIONS(7357), - [anon_sym_volatile] = ACTIONS(7357), - [anon_sym_restrict] = ACTIONS(7357), - [anon_sym___restrict__] = ACTIONS(7357), - [anon_sym__Atomic] = ACTIONS(7357), - [anon_sym__Noreturn] = ACTIONS(7357), - [anon_sym_noreturn] = ACTIONS(7357), - [anon_sym__Nonnull] = ACTIONS(7357), - [anon_sym_mutable] = ACTIONS(7357), - [anon_sym_constinit] = ACTIONS(7357), - [anon_sym_consteval] = ACTIONS(7357), - [anon_sym_alignas] = ACTIONS(7357), - [anon_sym__Alignas] = ACTIONS(7357), - [anon_sym_QMARK] = ACTIONS(7359), - [anon_sym_LT_EQ_GT] = ACTIONS(7359), - [anon_sym_or] = ACTIONS(7357), - [anon_sym_and] = ACTIONS(7357), - [anon_sym_bitor] = ACTIONS(7357), - [anon_sym_xor] = ACTIONS(7357), - [anon_sym_bitand] = ACTIONS(7357), - [anon_sym_not_eq] = ACTIONS(7357), - [anon_sym_DASH_DASH] = ACTIONS(7359), - [anon_sym_PLUS_PLUS] = ACTIONS(7359), - [anon_sym_DOT] = ACTIONS(7357), - [anon_sym_DOT_STAR] = ACTIONS(7359), - [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_attribute_specifier] = STATE(3506), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), + [anon_sym_COMMA] = ACTIONS(7525), + [anon_sym_RPAREN] = ACTIONS(7525), + [anon_sym_LPAREN2] = ACTIONS(7525), + [anon_sym_DASH] = ACTIONS(7523), + [anon_sym_PLUS] = ACTIONS(7523), + [anon_sym_STAR] = ACTIONS(7523), + [anon_sym_SLASH] = ACTIONS(7523), + [anon_sym_PERCENT] = ACTIONS(7523), + [anon_sym_PIPE_PIPE] = ACTIONS(7525), + [anon_sym_AMP_AMP] = ACTIONS(7525), + [anon_sym_PIPE] = ACTIONS(7523), + [anon_sym_CARET] = ACTIONS(7523), + [anon_sym_AMP] = ACTIONS(7523), + [anon_sym_EQ_EQ] = ACTIONS(7525), + [anon_sym_BANG_EQ] = ACTIONS(7525), + [anon_sym_GT] = ACTIONS(7523), + [anon_sym_GT_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ] = ACTIONS(7523), + [anon_sym_LT] = ACTIONS(7523), + [anon_sym_LT_LT] = ACTIONS(7523), + [anon_sym_GT_GT] = ACTIONS(7523), + [anon_sym___extension__] = ACTIONS(7525), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7525), + [anon_sym_LBRACK] = ACTIONS(7525), + [anon_sym_EQ] = ACTIONS(7523), + [anon_sym_const] = ACTIONS(7523), + [anon_sym_constexpr] = ACTIONS(7525), + [anon_sym_volatile] = ACTIONS(7525), + [anon_sym_restrict] = ACTIONS(7525), + [anon_sym___restrict__] = ACTIONS(7525), + [anon_sym__Atomic] = ACTIONS(7525), + [anon_sym__Noreturn] = ACTIONS(7525), + [anon_sym_noreturn] = ACTIONS(7525), + [anon_sym__Nonnull] = ACTIONS(7525), + [anon_sym_mutable] = ACTIONS(7525), + [anon_sym_constinit] = ACTIONS(7525), + [anon_sym_consteval] = ACTIONS(7525), + [anon_sym_alignas] = ACTIONS(7525), + [anon_sym__Alignas] = ACTIONS(7525), + [anon_sym_QMARK] = ACTIONS(7525), + [anon_sym_STAR_EQ] = ACTIONS(7525), + [anon_sym_SLASH_EQ] = ACTIONS(7525), + [anon_sym_PERCENT_EQ] = ACTIONS(7525), + [anon_sym_PLUS_EQ] = ACTIONS(7525), + [anon_sym_DASH_EQ] = ACTIONS(7525), + [anon_sym_LT_LT_EQ] = ACTIONS(7525), + [anon_sym_GT_GT_EQ] = ACTIONS(7525), + [anon_sym_AMP_EQ] = ACTIONS(7525), + [anon_sym_CARET_EQ] = ACTIONS(7525), + [anon_sym_PIPE_EQ] = ACTIONS(7525), + [anon_sym_LT_EQ_GT] = ACTIONS(7525), + [anon_sym_or] = ACTIONS(7525), + [anon_sym_and] = ACTIONS(7525), + [anon_sym_bitor] = ACTIONS(7525), + [anon_sym_xor] = ACTIONS(7525), + [anon_sym_bitand] = ACTIONS(7525), + [anon_sym_not_eq] = ACTIONS(7525), + [anon_sym_DASH_DASH] = ACTIONS(7525), + [anon_sym_PLUS_PLUS] = ACTIONS(7525), + [anon_sym_DOT] = ACTIONS(7523), + [anon_sym_DOT_STAR] = ACTIONS(7525), + [anon_sym_DASH_GT] = ACTIONS(7523), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7357), - [anon_sym_override] = ACTIONS(7357), - [anon_sym_requires] = ACTIONS(7357), + [anon_sym_final] = ACTIONS(7525), + [anon_sym_override] = ACTIONS(7525), + [anon_sym_requires] = ACTIONS(7525), + [anon_sym_DASH_GT_STAR] = ACTIONS(7525), }, [STATE(2991)] = { - [sym_identifier] = ACTIONS(7473), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), - [anon_sym_COMMA] = ACTIONS(7475), - [anon_sym_RPAREN] = ACTIONS(7475), - [anon_sym_LPAREN2] = ACTIONS(7475), - [anon_sym_DASH] = ACTIONS(7473), - [anon_sym_PLUS] = ACTIONS(7473), - [anon_sym_STAR] = ACTIONS(7475), - [anon_sym_SLASH] = ACTIONS(7473), - [anon_sym_PERCENT] = ACTIONS(7475), - [anon_sym_PIPE_PIPE] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7475), - [anon_sym_PIPE] = ACTIONS(7473), - [anon_sym_CARET] = ACTIONS(7475), - [anon_sym_AMP] = ACTIONS(7473), - [anon_sym_EQ_EQ] = ACTIONS(7475), - [anon_sym_BANG_EQ] = ACTIONS(7475), - [anon_sym_GT] = ACTIONS(7473), - [anon_sym_GT_EQ] = ACTIONS(7475), - [anon_sym_LT_EQ] = ACTIONS(7473), - [anon_sym_LT] = ACTIONS(7473), - [anon_sym_LT_LT] = ACTIONS(7475), - [anon_sym_GT_GT] = ACTIONS(7475), - [anon_sym_SEMI] = ACTIONS(7475), - [anon_sym___extension__] = ACTIONS(7473), - [anon_sym___attribute__] = ACTIONS(7473), - [anon_sym___attribute] = ACTIONS(7473), - [anon_sym_COLON] = ACTIONS(7473), - [anon_sym_COLON_COLON] = ACTIONS(7475), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7475), - [anon_sym___based] = ACTIONS(7473), - [anon_sym_LBRACE] = ACTIONS(7475), - [anon_sym_RBRACE] = ACTIONS(7475), - [anon_sym_signed] = ACTIONS(7473), - [anon_sym_unsigned] = ACTIONS(7473), - [anon_sym_long] = ACTIONS(7473), - [anon_sym_short] = ACTIONS(7473), - [anon_sym_LBRACK] = ACTIONS(7475), - [anon_sym_const] = ACTIONS(7473), - [anon_sym_constexpr] = ACTIONS(7473), - [anon_sym_volatile] = ACTIONS(7473), - [anon_sym_restrict] = ACTIONS(7473), - [anon_sym___restrict__] = ACTIONS(7473), - [anon_sym__Atomic] = ACTIONS(7473), - [anon_sym__Noreturn] = ACTIONS(7473), - [anon_sym_noreturn] = ACTIONS(7473), - [anon_sym__Nonnull] = ACTIONS(7473), - [anon_sym_mutable] = ACTIONS(7473), - [anon_sym_constinit] = ACTIONS(7473), - [anon_sym_consteval] = ACTIONS(7473), - [anon_sym_alignas] = ACTIONS(7473), - [anon_sym__Alignas] = ACTIONS(7473), - [sym_primitive_type] = ACTIONS(7473), - [anon_sym_QMARK] = ACTIONS(7475), - [anon_sym_LT_EQ_GT] = ACTIONS(7475), - [anon_sym_or] = ACTIONS(7473), - [anon_sym_and] = ACTIONS(7473), - [anon_sym_bitor] = ACTIONS(7473), - [anon_sym_xor] = ACTIONS(7473), - [anon_sym_bitand] = ACTIONS(7473), - [anon_sym_not_eq] = ACTIONS(7473), - [anon_sym_DASH_DASH] = ACTIONS(7475), - [anon_sym_PLUS_PLUS] = ACTIONS(7475), - [anon_sym_DOT] = ACTIONS(7473), - [anon_sym_DOT_STAR] = ACTIONS(7475), - [anon_sym_DASH_GT] = ACTIONS(7475), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7473), - [anon_sym_override] = ACTIONS(7473), - [anon_sym_requires] = ACTIONS(7473), - [anon_sym_COLON_RBRACK] = ACTIONS(7475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7702), + [anon_sym_COMMA] = ACTIONS(7702), + [anon_sym_RPAREN] = ACTIONS(7702), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_DASH] = ACTIONS(7700), + [anon_sym_PLUS] = ACTIONS(7700), + [anon_sym_STAR] = ACTIONS(7700), + [anon_sym_SLASH] = ACTIONS(7700), + [anon_sym_PERCENT] = ACTIONS(7700), + [anon_sym_PIPE_PIPE] = ACTIONS(7702), + [anon_sym_AMP_AMP] = ACTIONS(7702), + [anon_sym_PIPE] = ACTIONS(7700), + [anon_sym_CARET] = ACTIONS(7700), + [anon_sym_AMP] = ACTIONS(7700), + [anon_sym_EQ_EQ] = ACTIONS(7702), + [anon_sym_BANG_EQ] = ACTIONS(7702), + [anon_sym_GT] = ACTIONS(7700), + [anon_sym_GT_EQ] = ACTIONS(7702), + [anon_sym_LT_EQ] = ACTIONS(7700), + [anon_sym_LT] = ACTIONS(7700), + [anon_sym_LT_LT] = ACTIONS(7700), + [anon_sym_GT_GT] = ACTIONS(7700), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym_LBRACE] = ACTIONS(7702), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_EQ] = ACTIONS(7700), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7702), + [anon_sym_volatile] = ACTIONS(7702), + [anon_sym_restrict] = ACTIONS(7702), + [anon_sym___restrict__] = ACTIONS(7702), + [anon_sym__Atomic] = ACTIONS(7702), + [anon_sym__Noreturn] = ACTIONS(7702), + [anon_sym_noreturn] = ACTIONS(7702), + [anon_sym__Nonnull] = ACTIONS(7702), + [anon_sym_mutable] = ACTIONS(7702), + [anon_sym_constinit] = ACTIONS(7702), + [anon_sym_consteval] = ACTIONS(7702), + [anon_sym_alignas] = ACTIONS(7702), + [anon_sym__Alignas] = ACTIONS(7702), + [anon_sym_QMARK] = ACTIONS(7702), + [anon_sym_STAR_EQ] = ACTIONS(7702), + [anon_sym_SLASH_EQ] = ACTIONS(7702), + [anon_sym_PERCENT_EQ] = ACTIONS(7702), + [anon_sym_PLUS_EQ] = ACTIONS(7702), + [anon_sym_DASH_EQ] = ACTIONS(7702), + [anon_sym_LT_LT_EQ] = ACTIONS(7702), + [anon_sym_GT_GT_EQ] = ACTIONS(7702), + [anon_sym_AMP_EQ] = ACTIONS(7702), + [anon_sym_CARET_EQ] = ACTIONS(7702), + [anon_sym_PIPE_EQ] = ACTIONS(7702), + [anon_sym_and_eq] = ACTIONS(7702), + [anon_sym_or_eq] = ACTIONS(7702), + [anon_sym_xor_eq] = ACTIONS(7702), + [anon_sym_LT_EQ_GT] = ACTIONS(7702), + [anon_sym_or] = ACTIONS(7700), + [anon_sym_and] = ACTIONS(7700), + [anon_sym_bitor] = ACTIONS(7702), + [anon_sym_xor] = ACTIONS(7700), + [anon_sym_bitand] = ACTIONS(7702), + [anon_sym_not_eq] = ACTIONS(7702), + [anon_sym_DASH_DASH] = ACTIONS(7702), + [anon_sym_PLUS_PLUS] = ACTIONS(7702), + [anon_sym_DOT] = ACTIONS(7700), + [anon_sym_DOT_STAR] = ACTIONS(7702), + [anon_sym_DASH_GT] = ACTIONS(7700), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_requires] = ACTIONS(7702), + [anon_sym_DASH_GT_STAR] = ACTIONS(7702), }, [STATE(2992)] = { - [sym_identifier] = ACTIONS(7104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), - [anon_sym_COMMA] = ACTIONS(7106), - [anon_sym_RPAREN] = ACTIONS(7106), - [anon_sym_LPAREN2] = ACTIONS(7106), - [anon_sym_DASH] = ACTIONS(7104), - [anon_sym_PLUS] = ACTIONS(7104), - [anon_sym_STAR] = ACTIONS(7106), - [anon_sym_SLASH] = ACTIONS(7104), - [anon_sym_PERCENT] = ACTIONS(7106), - [anon_sym_PIPE_PIPE] = ACTIONS(7106), - [anon_sym_AMP_AMP] = ACTIONS(7106), - [anon_sym_PIPE] = ACTIONS(7104), - [anon_sym_CARET] = ACTIONS(7106), - [anon_sym_AMP] = ACTIONS(7104), - [anon_sym_EQ_EQ] = ACTIONS(7106), - [anon_sym_BANG_EQ] = ACTIONS(7106), - [anon_sym_GT] = ACTIONS(7104), - [anon_sym_GT_EQ] = ACTIONS(7106), - [anon_sym_LT_EQ] = ACTIONS(7104), - [anon_sym_LT] = ACTIONS(7104), - [anon_sym_LT_LT] = ACTIONS(7106), - [anon_sym_GT_GT] = ACTIONS(7106), - [anon_sym_SEMI] = ACTIONS(7106), - [anon_sym___extension__] = ACTIONS(7104), - [anon_sym___attribute__] = ACTIONS(7104), - [anon_sym___attribute] = ACTIONS(7104), - [anon_sym_COLON] = ACTIONS(7104), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7106), - [anon_sym___based] = ACTIONS(7104), - [anon_sym_LBRACE] = ACTIONS(7106), - [anon_sym_RBRACE] = ACTIONS(7106), - [anon_sym_signed] = ACTIONS(7104), - [anon_sym_unsigned] = ACTIONS(7104), - [anon_sym_long] = ACTIONS(7104), - [anon_sym_short] = ACTIONS(7104), - [anon_sym_LBRACK] = ACTIONS(7106), - [anon_sym_const] = ACTIONS(7104), - [anon_sym_constexpr] = ACTIONS(7104), - [anon_sym_volatile] = ACTIONS(7104), - [anon_sym_restrict] = ACTIONS(7104), - [anon_sym___restrict__] = ACTIONS(7104), - [anon_sym__Atomic] = ACTIONS(7104), - [anon_sym__Noreturn] = ACTIONS(7104), - [anon_sym_noreturn] = ACTIONS(7104), - [anon_sym__Nonnull] = ACTIONS(7104), - [anon_sym_mutable] = ACTIONS(7104), - [anon_sym_constinit] = ACTIONS(7104), - [anon_sym_consteval] = ACTIONS(7104), - [anon_sym_alignas] = ACTIONS(7104), - [anon_sym__Alignas] = ACTIONS(7104), - [sym_primitive_type] = ACTIONS(7104), - [anon_sym_QMARK] = ACTIONS(7106), - [anon_sym_LT_EQ_GT] = ACTIONS(7106), - [anon_sym_or] = ACTIONS(7104), - [anon_sym_and] = ACTIONS(7104), - [anon_sym_bitor] = ACTIONS(7104), - [anon_sym_xor] = ACTIONS(7104), - [anon_sym_bitand] = ACTIONS(7104), - [anon_sym_not_eq] = ACTIONS(7104), - [anon_sym_DASH_DASH] = ACTIONS(7106), - [anon_sym_PLUS_PLUS] = ACTIONS(7106), - [anon_sym_DOT] = ACTIONS(7104), - [anon_sym_DOT_STAR] = ACTIONS(7106), - [anon_sym_DASH_GT] = ACTIONS(7106), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7104), - [anon_sym_override] = ACTIONS(7104), - [anon_sym_requires] = ACTIONS(7104), - [anon_sym_COLON_RBRACK] = ACTIONS(7106), + [sym_identifier] = ACTIONS(8929), + [anon_sym_LPAREN2] = ACTIONS(8931), + [anon_sym_TILDE] = ACTIONS(8931), + [anon_sym_STAR] = ACTIONS(8931), + [anon_sym_PIPE_PIPE] = ACTIONS(8931), + [anon_sym_AMP_AMP] = ACTIONS(8931), + [anon_sym_AMP] = ACTIONS(8929), + [anon_sym___extension__] = ACTIONS(8929), + [anon_sym_virtual] = ACTIONS(8929), + [anon_sym_extern] = ACTIONS(8929), + [anon_sym___attribute__] = ACTIONS(8929), + [anon_sym___attribute] = ACTIONS(8929), + [anon_sym_using] = ACTIONS(8929), + [anon_sym_COLON_COLON] = ACTIONS(8931), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8931), + [anon_sym___declspec] = ACTIONS(8929), + [anon_sym___based] = ACTIONS(8929), + [anon_sym___cdecl] = ACTIONS(8929), + [anon_sym___clrcall] = ACTIONS(8929), + [anon_sym___stdcall] = ACTIONS(8929), + [anon_sym___fastcall] = ACTIONS(8929), + [anon_sym___thiscall] = ACTIONS(8929), + [anon_sym___vectorcall] = ACTIONS(8929), + [anon_sym_LBRACE] = ACTIONS(8931), + [anon_sym_signed] = ACTIONS(8929), + [anon_sym_unsigned] = ACTIONS(8929), + [anon_sym_long] = ACTIONS(8929), + [anon_sym_short] = ACTIONS(8929), + [anon_sym_LBRACK] = ACTIONS(8929), + [anon_sym_static] = ACTIONS(8929), + [anon_sym_register] = ACTIONS(8929), + [anon_sym_inline] = ACTIONS(8929), + [anon_sym___inline] = ACTIONS(8929), + [anon_sym___inline__] = ACTIONS(8929), + [anon_sym___forceinline] = ACTIONS(8929), + [anon_sym_thread_local] = ACTIONS(8929), + [anon_sym___thread] = ACTIONS(8929), + [anon_sym_const] = ACTIONS(8929), + [anon_sym_constexpr] = ACTIONS(8929), + [anon_sym_volatile] = ACTIONS(8929), + [anon_sym_restrict] = ACTIONS(8929), + [anon_sym___restrict__] = ACTIONS(8929), + [anon_sym__Atomic] = ACTIONS(8929), + [anon_sym__Noreturn] = ACTIONS(8929), + [anon_sym_noreturn] = ACTIONS(8929), + [anon_sym__Nonnull] = ACTIONS(8929), + [anon_sym_mutable] = ACTIONS(8929), + [anon_sym_constinit] = ACTIONS(8929), + [anon_sym_consteval] = ACTIONS(8929), + [anon_sym_alignas] = ACTIONS(8929), + [anon_sym__Alignas] = ACTIONS(8929), + [sym_primitive_type] = ACTIONS(8929), + [anon_sym_enum] = ACTIONS(8929), + [anon_sym_class] = ACTIONS(8929), + [anon_sym_struct] = ACTIONS(8929), + [anon_sym_union] = ACTIONS(8929), + [anon_sym_or] = ACTIONS(8929), + [anon_sym_and] = ACTIONS(8929), + [anon_sym_typename] = ACTIONS(8929), + [anon_sym_DASH_GT] = ACTIONS(8931), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8929), + [anon_sym_decltype] = ACTIONS(8929), + [anon_sym_explicit] = ACTIONS(8929), + [anon_sym_template] = ACTIONS(8929), + [anon_sym_operator] = ACTIONS(8929), + [anon_sym_friend] = ACTIONS(8929), + [anon_sym_noexcept] = ACTIONS(8929), + [anon_sym_throw] = ACTIONS(8929), + [anon_sym_concept] = ACTIONS(8929), + [anon_sym_LBRACK_COLON] = ACTIONS(8931), }, [STATE(2993)] = { - [sym__abstract_declarator] = STATE(6181), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3083), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2069), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3083), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_RPAREN] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(8111), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(8113), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(8115), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym_SEMI] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(7393), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7391), - [anon_sym_RBRACE] = ACTIONS(7391), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), - [anon_sym_COLON_RBRACK] = ACTIONS(7391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7706), + [anon_sym_COMMA] = ACTIONS(7706), + [anon_sym_RPAREN] = ACTIONS(7706), + [anon_sym_LPAREN2] = ACTIONS(7706), + [anon_sym_DASH] = ACTIONS(7704), + [anon_sym_PLUS] = ACTIONS(7704), + [anon_sym_STAR] = ACTIONS(7704), + [anon_sym_SLASH] = ACTIONS(7704), + [anon_sym_PERCENT] = ACTIONS(7704), + [anon_sym_PIPE_PIPE] = ACTIONS(7706), + [anon_sym_AMP_AMP] = ACTIONS(7706), + [anon_sym_PIPE] = ACTIONS(7704), + [anon_sym_CARET] = ACTIONS(7704), + [anon_sym_AMP] = ACTIONS(7704), + [anon_sym_EQ_EQ] = ACTIONS(7706), + [anon_sym_BANG_EQ] = ACTIONS(7706), + [anon_sym_GT] = ACTIONS(7704), + [anon_sym_GT_EQ] = ACTIONS(7706), + [anon_sym_LT_EQ] = ACTIONS(7704), + [anon_sym_LT] = ACTIONS(7704), + [anon_sym_LT_LT] = ACTIONS(7704), + [anon_sym_GT_GT] = ACTIONS(7704), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym_LBRACE] = ACTIONS(7706), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_EQ] = ACTIONS(7704), + [anon_sym_const] = ACTIONS(7704), + [anon_sym_constexpr] = ACTIONS(7706), + [anon_sym_volatile] = ACTIONS(7706), + [anon_sym_restrict] = ACTIONS(7706), + [anon_sym___restrict__] = ACTIONS(7706), + [anon_sym__Atomic] = ACTIONS(7706), + [anon_sym__Noreturn] = ACTIONS(7706), + [anon_sym_noreturn] = ACTIONS(7706), + [anon_sym__Nonnull] = ACTIONS(7706), + [anon_sym_mutable] = ACTIONS(7706), + [anon_sym_constinit] = ACTIONS(7706), + [anon_sym_consteval] = ACTIONS(7706), + [anon_sym_alignas] = ACTIONS(7706), + [anon_sym__Alignas] = ACTIONS(7706), + [anon_sym_QMARK] = ACTIONS(7706), + [anon_sym_STAR_EQ] = ACTIONS(7706), + [anon_sym_SLASH_EQ] = ACTIONS(7706), + [anon_sym_PERCENT_EQ] = ACTIONS(7706), + [anon_sym_PLUS_EQ] = ACTIONS(7706), + [anon_sym_DASH_EQ] = ACTIONS(7706), + [anon_sym_LT_LT_EQ] = ACTIONS(7706), + [anon_sym_GT_GT_EQ] = ACTIONS(7706), + [anon_sym_AMP_EQ] = ACTIONS(7706), + [anon_sym_CARET_EQ] = ACTIONS(7706), + [anon_sym_PIPE_EQ] = ACTIONS(7706), + [anon_sym_and_eq] = ACTIONS(7706), + [anon_sym_or_eq] = ACTIONS(7706), + [anon_sym_xor_eq] = ACTIONS(7706), + [anon_sym_LT_EQ_GT] = ACTIONS(7706), + [anon_sym_or] = ACTIONS(7704), + [anon_sym_and] = ACTIONS(7704), + [anon_sym_bitor] = ACTIONS(7706), + [anon_sym_xor] = ACTIONS(7704), + [anon_sym_bitand] = ACTIONS(7706), + [anon_sym_not_eq] = ACTIONS(7706), + [anon_sym_DASH_DASH] = ACTIONS(7706), + [anon_sym_PLUS_PLUS] = ACTIONS(7706), + [anon_sym_DOT] = ACTIONS(7704), + [anon_sym_DOT_STAR] = ACTIONS(7706), + [anon_sym_DASH_GT] = ACTIONS(7704), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_requires] = ACTIONS(7706), + [anon_sym_DASH_GT_STAR] = ACTIONS(7706), }, [STATE(2994)] = { - [sym_virtual_specifier] = STATE(3433), - [sym__function_postfix] = STATE(3628), - [sym_requires_clause] = STATE(3628), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7789), - [anon_sym___attribute] = ACTIONS(7789), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7791), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7789), - [anon_sym_or_eq] = ACTIONS(7789), - [anon_sym_xor_eq] = ACTIONS(7789), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7791), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_requires] = ACTIONS(6508), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), + [sym_identifier] = ACTIONS(8933), + [anon_sym_LPAREN2] = ACTIONS(8935), + [anon_sym_TILDE] = ACTIONS(8935), + [anon_sym_STAR] = ACTIONS(8935), + [anon_sym_PIPE_PIPE] = ACTIONS(8935), + [anon_sym_AMP_AMP] = ACTIONS(8935), + [anon_sym_AMP] = ACTIONS(8933), + [anon_sym___extension__] = ACTIONS(8933), + [anon_sym_virtual] = ACTIONS(8933), + [anon_sym_extern] = ACTIONS(8933), + [anon_sym___attribute__] = ACTIONS(8933), + [anon_sym___attribute] = ACTIONS(8933), + [anon_sym_using] = ACTIONS(8933), + [anon_sym_COLON_COLON] = ACTIONS(8935), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8935), + [anon_sym___declspec] = ACTIONS(8933), + [anon_sym___based] = ACTIONS(8933), + [anon_sym___cdecl] = ACTIONS(8933), + [anon_sym___clrcall] = ACTIONS(8933), + [anon_sym___stdcall] = ACTIONS(8933), + [anon_sym___fastcall] = ACTIONS(8933), + [anon_sym___thiscall] = ACTIONS(8933), + [anon_sym___vectorcall] = ACTIONS(8933), + [anon_sym_LBRACE] = ACTIONS(8935), + [anon_sym_signed] = ACTIONS(8933), + [anon_sym_unsigned] = ACTIONS(8933), + [anon_sym_long] = ACTIONS(8933), + [anon_sym_short] = ACTIONS(8933), + [anon_sym_LBRACK] = ACTIONS(8933), + [anon_sym_static] = ACTIONS(8933), + [anon_sym_register] = ACTIONS(8933), + [anon_sym_inline] = ACTIONS(8933), + [anon_sym___inline] = ACTIONS(8933), + [anon_sym___inline__] = ACTIONS(8933), + [anon_sym___forceinline] = ACTIONS(8933), + [anon_sym_thread_local] = ACTIONS(8933), + [anon_sym___thread] = ACTIONS(8933), + [anon_sym_const] = ACTIONS(8933), + [anon_sym_constexpr] = ACTIONS(8933), + [anon_sym_volatile] = ACTIONS(8933), + [anon_sym_restrict] = ACTIONS(8933), + [anon_sym___restrict__] = ACTIONS(8933), + [anon_sym__Atomic] = ACTIONS(8933), + [anon_sym__Noreturn] = ACTIONS(8933), + [anon_sym_noreturn] = ACTIONS(8933), + [anon_sym__Nonnull] = ACTIONS(8933), + [anon_sym_mutable] = ACTIONS(8933), + [anon_sym_constinit] = ACTIONS(8933), + [anon_sym_consteval] = ACTIONS(8933), + [anon_sym_alignas] = ACTIONS(8933), + [anon_sym__Alignas] = ACTIONS(8933), + [sym_primitive_type] = ACTIONS(8933), + [anon_sym_enum] = ACTIONS(8933), + [anon_sym_class] = ACTIONS(8933), + [anon_sym_struct] = ACTIONS(8933), + [anon_sym_union] = ACTIONS(8933), + [anon_sym_or] = ACTIONS(8933), + [anon_sym_and] = ACTIONS(8933), + [anon_sym_typename] = ACTIONS(8933), + [anon_sym_DASH_GT] = ACTIONS(8935), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8933), + [anon_sym_decltype] = ACTIONS(8933), + [anon_sym_explicit] = ACTIONS(8933), + [anon_sym_template] = ACTIONS(8933), + [anon_sym_operator] = ACTIONS(8933), + [anon_sym_friend] = ACTIONS(8933), + [anon_sym_noexcept] = ACTIONS(8933), + [anon_sym_throw] = ACTIONS(8933), + [anon_sym_concept] = ACTIONS(8933), + [anon_sym_LBRACK_COLON] = ACTIONS(8935), }, [STATE(2995)] = { - [sym_attribute_specifier] = STATE(4179), - [sym_attribute_declaration] = STATE(4554), - [sym_gnu_asm_expression] = STATE(9153), - [sym_virtual_specifier] = STATE(4653), - [sym__function_attributes_end] = STATE(4369), - [sym__function_postfix] = STATE(5126), - [sym_trailing_return_type] = STATE(4549), - [sym_requires_clause] = STATE(5126), - [aux_sym_type_definition_repeat1] = STATE(4179), - [aux_sym_attributed_declarator_repeat1] = STATE(4554), - [aux_sym__function_postfix_repeat1] = STATE(4653), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym___attribute__] = ACTIONS(6719), - [anon_sym___attribute] = ACTIONS(6721), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6723), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_RBRACK] = ACTIONS(8422), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8422), - [anon_sym_or_eq] = ACTIONS(8422), - [anon_sym_xor_eq] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8880), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8928), - [anon_sym_override] = ACTIONS(8928), - [anon_sym_requires] = ACTIONS(8931), + [sym_attribute_specifier] = STATE(3518), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7529), + [anon_sym_COMMA] = ACTIONS(7529), + [anon_sym_RPAREN] = ACTIONS(7529), + [anon_sym_LPAREN2] = ACTIONS(7529), + [anon_sym_DASH] = ACTIONS(7527), + [anon_sym_PLUS] = ACTIONS(7527), + [anon_sym_STAR] = ACTIONS(7527), + [anon_sym_SLASH] = ACTIONS(7527), + [anon_sym_PERCENT] = ACTIONS(7527), + [anon_sym_PIPE_PIPE] = ACTIONS(7529), + [anon_sym_AMP_AMP] = ACTIONS(7529), + [anon_sym_PIPE] = ACTIONS(7527), + [anon_sym_CARET] = ACTIONS(7527), + [anon_sym_AMP] = ACTIONS(7527), + [anon_sym_EQ_EQ] = ACTIONS(7529), + [anon_sym_BANG_EQ] = ACTIONS(7529), + [anon_sym_GT] = ACTIONS(7527), + [anon_sym_GT_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ] = ACTIONS(7527), + [anon_sym_LT] = ACTIONS(7527), + [anon_sym_LT_LT] = ACTIONS(7527), + [anon_sym_GT_GT] = ACTIONS(7527), + [anon_sym___extension__] = ACTIONS(7529), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7529), + [anon_sym_LBRACK] = ACTIONS(7529), + [anon_sym_EQ] = ACTIONS(7527), + [anon_sym_const] = ACTIONS(7527), + [anon_sym_constexpr] = ACTIONS(7529), + [anon_sym_volatile] = ACTIONS(7529), + [anon_sym_restrict] = ACTIONS(7529), + [anon_sym___restrict__] = ACTIONS(7529), + [anon_sym__Atomic] = ACTIONS(7529), + [anon_sym__Noreturn] = ACTIONS(7529), + [anon_sym_noreturn] = ACTIONS(7529), + [anon_sym__Nonnull] = ACTIONS(7529), + [anon_sym_mutable] = ACTIONS(7529), + [anon_sym_constinit] = ACTIONS(7529), + [anon_sym_consteval] = ACTIONS(7529), + [anon_sym_alignas] = ACTIONS(7529), + [anon_sym__Alignas] = ACTIONS(7529), + [anon_sym_QMARK] = ACTIONS(7529), + [anon_sym_STAR_EQ] = ACTIONS(7529), + [anon_sym_SLASH_EQ] = ACTIONS(7529), + [anon_sym_PERCENT_EQ] = ACTIONS(7529), + [anon_sym_PLUS_EQ] = ACTIONS(7529), + [anon_sym_DASH_EQ] = ACTIONS(7529), + [anon_sym_LT_LT_EQ] = ACTIONS(7529), + [anon_sym_GT_GT_EQ] = ACTIONS(7529), + [anon_sym_AMP_EQ] = ACTIONS(7529), + [anon_sym_CARET_EQ] = ACTIONS(7529), + [anon_sym_PIPE_EQ] = ACTIONS(7529), + [anon_sym_LT_EQ_GT] = ACTIONS(7529), + [anon_sym_or] = ACTIONS(7529), + [anon_sym_and] = ACTIONS(7529), + [anon_sym_bitor] = ACTIONS(7529), + [anon_sym_xor] = ACTIONS(7529), + [anon_sym_bitand] = ACTIONS(7529), + [anon_sym_not_eq] = ACTIONS(7529), + [anon_sym_DASH_DASH] = ACTIONS(7529), + [anon_sym_PLUS_PLUS] = ACTIONS(7529), + [anon_sym_DOT] = ACTIONS(7527), + [anon_sym_DOT_STAR] = ACTIONS(7529), + [anon_sym_DASH_GT] = ACTIONS(7527), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7529), + [anon_sym_override] = ACTIONS(7529), + [anon_sym_requires] = ACTIONS(7529), + [anon_sym_DASH_GT_STAR] = ACTIONS(7529), }, [STATE(2996)] = { - [sym_template_argument_list] = STATE(3193), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6576), - [anon_sym_PLUS] = ACTIONS(6576), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6576), - [anon_sym_PERCENT] = ACTIONS(6576), - [anon_sym_PIPE_PIPE] = ACTIONS(6569), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6576), - [anon_sym_CARET] = ACTIONS(6576), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6569), - [anon_sym_BANG_EQ] = ACTIONS(6569), - [anon_sym_GT] = ACTIONS(6576), - [anon_sym_GT_EQ] = ACTIONS(6576), - [anon_sym_LT_EQ] = ACTIONS(6576), - [anon_sym_LT] = ACTIONS(8934), - [anon_sym_LT_LT] = ACTIONS(6576), - [anon_sym_GT_GT] = ACTIONS(6576), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6576), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6569), - [anon_sym_STAR_EQ] = ACTIONS(6569), - [anon_sym_SLASH_EQ] = ACTIONS(6569), - [anon_sym_PERCENT_EQ] = ACTIONS(6569), - [anon_sym_PLUS_EQ] = ACTIONS(6569), - [anon_sym_DASH_EQ] = ACTIONS(6569), - [anon_sym_LT_LT_EQ] = ACTIONS(6569), - [anon_sym_GT_GT_EQ] = ACTIONS(6576), - [anon_sym_AMP_EQ] = ACTIONS(6569), - [anon_sym_CARET_EQ] = ACTIONS(6569), - [anon_sym_PIPE_EQ] = ACTIONS(6569), - [anon_sym_and_eq] = ACTIONS(6569), - [anon_sym_or_eq] = ACTIONS(6569), - [anon_sym_xor_eq] = ACTIONS(6569), - [anon_sym_LT_EQ_GT] = ACTIONS(6569), - [anon_sym_or] = ACTIONS(6576), - [anon_sym_and] = ACTIONS(6576), - [anon_sym_bitor] = ACTIONS(6569), - [anon_sym_xor] = ACTIONS(6576), - [anon_sym_bitand] = ACTIONS(6569), - [anon_sym_not_eq] = ACTIONS(6569), - [anon_sym_DASH_DASH] = ACTIONS(6569), - [anon_sym_PLUS_PLUS] = ACTIONS(6569), - [anon_sym_DOT] = ACTIONS(6576), - [anon_sym_DOT_STAR] = ACTIONS(6569), - [anon_sym_DASH_GT] = ACTIONS(6569), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_GT2] = ACTIONS(6569), + [sym_attribute_specifier] = STATE(3521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), + [anon_sym_COMMA] = ACTIONS(7533), + [anon_sym_RPAREN] = ACTIONS(7533), + [anon_sym_LPAREN2] = ACTIONS(7533), + [anon_sym_DASH] = ACTIONS(7531), + [anon_sym_PLUS] = ACTIONS(7531), + [anon_sym_STAR] = ACTIONS(7531), + [anon_sym_SLASH] = ACTIONS(7531), + [anon_sym_PERCENT] = ACTIONS(7531), + [anon_sym_PIPE_PIPE] = ACTIONS(7533), + [anon_sym_AMP_AMP] = ACTIONS(7533), + [anon_sym_PIPE] = ACTIONS(7531), + [anon_sym_CARET] = ACTIONS(7531), + [anon_sym_AMP] = ACTIONS(7531), + [anon_sym_EQ_EQ] = ACTIONS(7533), + [anon_sym_BANG_EQ] = ACTIONS(7533), + [anon_sym_GT] = ACTIONS(7531), + [anon_sym_GT_EQ] = ACTIONS(7533), + [anon_sym_LT_EQ] = ACTIONS(7531), + [anon_sym_LT] = ACTIONS(7531), + [anon_sym_LT_LT] = ACTIONS(7531), + [anon_sym_GT_GT] = ACTIONS(7531), + [anon_sym___extension__] = ACTIONS(7533), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7533), + [anon_sym_LBRACK] = ACTIONS(7533), + [anon_sym_EQ] = ACTIONS(7531), + [anon_sym_const] = ACTIONS(7531), + [anon_sym_constexpr] = ACTIONS(7533), + [anon_sym_volatile] = ACTIONS(7533), + [anon_sym_restrict] = ACTIONS(7533), + [anon_sym___restrict__] = ACTIONS(7533), + [anon_sym__Atomic] = ACTIONS(7533), + [anon_sym__Noreturn] = ACTIONS(7533), + [anon_sym_noreturn] = ACTIONS(7533), + [anon_sym__Nonnull] = ACTIONS(7533), + [anon_sym_mutable] = ACTIONS(7533), + [anon_sym_constinit] = ACTIONS(7533), + [anon_sym_consteval] = ACTIONS(7533), + [anon_sym_alignas] = ACTIONS(7533), + [anon_sym__Alignas] = ACTIONS(7533), + [anon_sym_QMARK] = ACTIONS(7533), + [anon_sym_STAR_EQ] = ACTIONS(7533), + [anon_sym_SLASH_EQ] = ACTIONS(7533), + [anon_sym_PERCENT_EQ] = ACTIONS(7533), + [anon_sym_PLUS_EQ] = ACTIONS(7533), + [anon_sym_DASH_EQ] = ACTIONS(7533), + [anon_sym_LT_LT_EQ] = ACTIONS(7533), + [anon_sym_GT_GT_EQ] = ACTIONS(7533), + [anon_sym_AMP_EQ] = ACTIONS(7533), + [anon_sym_CARET_EQ] = ACTIONS(7533), + [anon_sym_PIPE_EQ] = ACTIONS(7533), + [anon_sym_LT_EQ_GT] = ACTIONS(7533), + [anon_sym_or] = ACTIONS(7533), + [anon_sym_and] = ACTIONS(7533), + [anon_sym_bitor] = ACTIONS(7533), + [anon_sym_xor] = ACTIONS(7533), + [anon_sym_bitand] = ACTIONS(7533), + [anon_sym_not_eq] = ACTIONS(7533), + [anon_sym_DASH_DASH] = ACTIONS(7533), + [anon_sym_PLUS_PLUS] = ACTIONS(7533), + [anon_sym_DOT] = ACTIONS(7531), + [anon_sym_DOT_STAR] = ACTIONS(7533), + [anon_sym_DASH_GT] = ACTIONS(7531), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7533), + [anon_sym_override] = ACTIONS(7533), + [anon_sym_requires] = ACTIONS(7533), + [anon_sym_DASH_GT_STAR] = ACTIONS(7533), }, [STATE(2997)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), - [anon_sym_COMMA] = ACTIONS(7733), - [anon_sym_RPAREN] = ACTIONS(7733), - [anon_sym_LPAREN2] = ACTIONS(7733), - [anon_sym_DASH] = ACTIONS(7731), - [anon_sym_PLUS] = ACTIONS(7731), - [anon_sym_STAR] = ACTIONS(7731), - [anon_sym_SLASH] = ACTIONS(7731), - [anon_sym_PERCENT] = ACTIONS(7731), - [anon_sym_PIPE_PIPE] = ACTIONS(7733), - [anon_sym_AMP_AMP] = ACTIONS(7733), - [anon_sym_PIPE] = ACTIONS(7731), - [anon_sym_CARET] = ACTIONS(7731), - [anon_sym_AMP] = ACTIONS(7731), - [anon_sym_EQ_EQ] = ACTIONS(7733), - [anon_sym_BANG_EQ] = ACTIONS(7733), - [anon_sym_GT] = ACTIONS(7731), - [anon_sym_GT_EQ] = ACTIONS(7733), - [anon_sym_LT_EQ] = ACTIONS(7731), - [anon_sym_LT] = ACTIONS(7731), - [anon_sym_LT_LT] = ACTIONS(7731), - [anon_sym_GT_GT] = ACTIONS(7731), - [anon_sym___extension__] = ACTIONS(7733), - [anon_sym_LBRACE] = ACTIONS(7733), - [anon_sym_LBRACK] = ACTIONS(7733), - [anon_sym_EQ] = ACTIONS(7731), - [anon_sym_const] = ACTIONS(7731), - [anon_sym_constexpr] = ACTIONS(7733), - [anon_sym_volatile] = ACTIONS(7733), - [anon_sym_restrict] = ACTIONS(7733), - [anon_sym___restrict__] = ACTIONS(7733), - [anon_sym__Atomic] = ACTIONS(7733), - [anon_sym__Noreturn] = ACTIONS(7733), - [anon_sym_noreturn] = ACTIONS(7733), - [anon_sym__Nonnull] = ACTIONS(7733), - [anon_sym_mutable] = ACTIONS(7733), - [anon_sym_constinit] = ACTIONS(7733), - [anon_sym_consteval] = ACTIONS(7733), - [anon_sym_alignas] = ACTIONS(7733), - [anon_sym__Alignas] = ACTIONS(7733), - [anon_sym_QMARK] = ACTIONS(7733), - [anon_sym_STAR_EQ] = ACTIONS(7733), - [anon_sym_SLASH_EQ] = ACTIONS(7733), - [anon_sym_PERCENT_EQ] = ACTIONS(7733), - [anon_sym_PLUS_EQ] = ACTIONS(7733), - [anon_sym_DASH_EQ] = ACTIONS(7733), - [anon_sym_LT_LT_EQ] = ACTIONS(7733), - [anon_sym_GT_GT_EQ] = ACTIONS(7733), - [anon_sym_AMP_EQ] = ACTIONS(7733), - [anon_sym_CARET_EQ] = ACTIONS(7733), - [anon_sym_PIPE_EQ] = ACTIONS(7733), - [anon_sym_and_eq] = ACTIONS(7733), - [anon_sym_or_eq] = ACTIONS(7733), - [anon_sym_xor_eq] = ACTIONS(7733), - [anon_sym_LT_EQ_GT] = ACTIONS(7733), - [anon_sym_or] = ACTIONS(7731), - [anon_sym_and] = ACTIONS(7731), - [anon_sym_bitor] = ACTIONS(7733), - [anon_sym_xor] = ACTIONS(7731), - [anon_sym_bitand] = ACTIONS(7733), - [anon_sym_not_eq] = ACTIONS(7733), - [anon_sym_DASH_DASH] = ACTIONS(7733), - [anon_sym_PLUS_PLUS] = ACTIONS(7733), - [anon_sym_DOT] = ACTIONS(7731), - [anon_sym_DOT_STAR] = ACTIONS(7733), - [anon_sym_DASH_GT] = ACTIONS(7731), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7733), - [anon_sym_override] = ACTIONS(7733), - [anon_sym_requires] = ACTIONS(7733), - [anon_sym_DASH_GT_STAR] = ACTIONS(7733), + [sym_identifier] = ACTIONS(7535), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7537), + [anon_sym_COMMA] = ACTIONS(7537), + [anon_sym_RPAREN] = ACTIONS(7537), + [anon_sym_LPAREN2] = ACTIONS(7537), + [anon_sym_DASH] = ACTIONS(7535), + [anon_sym_PLUS] = ACTIONS(7535), + [anon_sym_STAR] = ACTIONS(7537), + [anon_sym_SLASH] = ACTIONS(7535), + [anon_sym_PERCENT] = ACTIONS(7537), + [anon_sym_PIPE_PIPE] = ACTIONS(7537), + [anon_sym_AMP_AMP] = ACTIONS(7537), + [anon_sym_PIPE] = ACTIONS(7535), + [anon_sym_CARET] = ACTIONS(7537), + [anon_sym_AMP] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7537), + [anon_sym_BANG_EQ] = ACTIONS(7537), + [anon_sym_GT] = ACTIONS(7535), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_LT_EQ] = ACTIONS(7535), + [anon_sym_LT] = ACTIONS(7535), + [anon_sym_LT_LT] = ACTIONS(7537), + [anon_sym_GT_GT] = ACTIONS(7537), + [anon_sym_SEMI] = ACTIONS(7537), + [anon_sym___extension__] = ACTIONS(7535), + [anon_sym___attribute__] = ACTIONS(7535), + [anon_sym___attribute] = ACTIONS(7535), + [anon_sym_COLON] = ACTIONS(7535), + [anon_sym_COLON_COLON] = ACTIONS(7537), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7537), + [anon_sym___based] = ACTIONS(7535), + [anon_sym_LBRACE] = ACTIONS(7537), + [anon_sym_RBRACE] = ACTIONS(7537), + [anon_sym_signed] = ACTIONS(7535), + [anon_sym_unsigned] = ACTIONS(7535), + [anon_sym_long] = ACTIONS(7535), + [anon_sym_short] = ACTIONS(7535), + [anon_sym_LBRACK] = ACTIONS(7537), + [anon_sym_const] = ACTIONS(7535), + [anon_sym_constexpr] = ACTIONS(7535), + [anon_sym_volatile] = ACTIONS(7535), + [anon_sym_restrict] = ACTIONS(7535), + [anon_sym___restrict__] = ACTIONS(7535), + [anon_sym__Atomic] = ACTIONS(7535), + [anon_sym__Noreturn] = ACTIONS(7535), + [anon_sym_noreturn] = ACTIONS(7535), + [anon_sym__Nonnull] = ACTIONS(7535), + [anon_sym_mutable] = ACTIONS(7535), + [anon_sym_constinit] = ACTIONS(7535), + [anon_sym_consteval] = ACTIONS(7535), + [anon_sym_alignas] = ACTIONS(7535), + [anon_sym__Alignas] = ACTIONS(7535), + [sym_primitive_type] = ACTIONS(7535), + [anon_sym_QMARK] = ACTIONS(7537), + [anon_sym_LT_EQ_GT] = ACTIONS(7537), + [anon_sym_or] = ACTIONS(7535), + [anon_sym_and] = ACTIONS(7535), + [anon_sym_bitor] = ACTIONS(7535), + [anon_sym_xor] = ACTIONS(7535), + [anon_sym_bitand] = ACTIONS(7535), + [anon_sym_not_eq] = ACTIONS(7535), + [anon_sym_DASH_DASH] = ACTIONS(7537), + [anon_sym_PLUS_PLUS] = ACTIONS(7537), + [anon_sym_DOT] = ACTIONS(7535), + [anon_sym_DOT_STAR] = ACTIONS(7537), + [anon_sym_DASH_GT] = ACTIONS(7537), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7535), + [anon_sym_override] = ACTIONS(7535), + [anon_sym_requires] = ACTIONS(7535), + [anon_sym_COLON_RBRACK] = ACTIONS(7537), }, [STATE(2998)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_RPAREN] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6605), - [anon_sym_PERCENT] = ACTIONS(6605), - [anon_sym_PIPE_PIPE] = ACTIONS(6598), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6605), - [anon_sym_CARET] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_BANG_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6605), - [anon_sym_GT_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(6605), - [anon_sym_LT_LT] = ACTIONS(6605), - [anon_sym_GT_GT] = ACTIONS(6605), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6598), - [anon_sym_STAR_EQ] = ACTIONS(6598), - [anon_sym_SLASH_EQ] = ACTIONS(6598), - [anon_sym_PERCENT_EQ] = ACTIONS(6598), - [anon_sym_PLUS_EQ] = ACTIONS(6598), - [anon_sym_DASH_EQ] = ACTIONS(6598), - [anon_sym_LT_LT_EQ] = ACTIONS(6598), - [anon_sym_GT_GT_EQ] = ACTIONS(6598), - [anon_sym_AMP_EQ] = ACTIONS(6598), - [anon_sym_CARET_EQ] = ACTIONS(6598), - [anon_sym_PIPE_EQ] = ACTIONS(6598), - [anon_sym_and_eq] = ACTIONS(6596), - [anon_sym_or_eq] = ACTIONS(6596), - [anon_sym_xor_eq] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6598), - [anon_sym_or] = ACTIONS(6605), - [anon_sym_and] = ACTIONS(6605), - [anon_sym_bitor] = ACTIONS(6598), - [anon_sym_xor] = ACTIONS(6605), - [anon_sym_bitand] = ACTIONS(6598), - [anon_sym_not_eq] = ACTIONS(6598), - [anon_sym_DASH_DASH] = ACTIONS(6598), - [anon_sym_PLUS_PLUS] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6605), - [anon_sym_DOT_STAR] = ACTIONS(6598), - [anon_sym_DASH_GT] = ACTIONS(6605), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_DASH_GT_STAR] = ACTIONS(6598), + [sym_attribute_specifier] = STATE(3551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7493), + [anon_sym_COMMA] = ACTIONS(7493), + [anon_sym_RPAREN] = ACTIONS(7493), + [anon_sym_LPAREN2] = ACTIONS(7493), + [anon_sym_DASH] = ACTIONS(7491), + [anon_sym_PLUS] = ACTIONS(7491), + [anon_sym_STAR] = ACTIONS(7491), + [anon_sym_SLASH] = ACTIONS(7491), + [anon_sym_PERCENT] = ACTIONS(7491), + [anon_sym_PIPE_PIPE] = ACTIONS(7493), + [anon_sym_AMP_AMP] = ACTIONS(7493), + [anon_sym_PIPE] = ACTIONS(7491), + [anon_sym_CARET] = ACTIONS(7491), + [anon_sym_AMP] = ACTIONS(7491), + [anon_sym_EQ_EQ] = ACTIONS(7493), + [anon_sym_BANG_EQ] = ACTIONS(7493), + [anon_sym_GT] = ACTIONS(7491), + [anon_sym_GT_EQ] = ACTIONS(7493), + [anon_sym_LT_EQ] = ACTIONS(7491), + [anon_sym_LT] = ACTIONS(7491), + [anon_sym_LT_LT] = ACTIONS(7491), + [anon_sym_GT_GT] = ACTIONS(7491), + [anon_sym___extension__] = ACTIONS(7493), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7493), + [anon_sym_LBRACK] = ACTIONS(7493), + [anon_sym_EQ] = ACTIONS(7491), + [anon_sym_const] = ACTIONS(7491), + [anon_sym_constexpr] = ACTIONS(7493), + [anon_sym_volatile] = ACTIONS(7493), + [anon_sym_restrict] = ACTIONS(7493), + [anon_sym___restrict__] = ACTIONS(7493), + [anon_sym__Atomic] = ACTIONS(7493), + [anon_sym__Noreturn] = ACTIONS(7493), + [anon_sym_noreturn] = ACTIONS(7493), + [anon_sym__Nonnull] = ACTIONS(7493), + [anon_sym_mutable] = ACTIONS(7493), + [anon_sym_constinit] = ACTIONS(7493), + [anon_sym_consteval] = ACTIONS(7493), + [anon_sym_alignas] = ACTIONS(7493), + [anon_sym__Alignas] = ACTIONS(7493), + [anon_sym_QMARK] = ACTIONS(7493), + [anon_sym_STAR_EQ] = ACTIONS(7493), + [anon_sym_SLASH_EQ] = ACTIONS(7493), + [anon_sym_PERCENT_EQ] = ACTIONS(7493), + [anon_sym_PLUS_EQ] = ACTIONS(7493), + [anon_sym_DASH_EQ] = ACTIONS(7493), + [anon_sym_LT_LT_EQ] = ACTIONS(7493), + [anon_sym_GT_GT_EQ] = ACTIONS(7493), + [anon_sym_AMP_EQ] = ACTIONS(7493), + [anon_sym_CARET_EQ] = ACTIONS(7493), + [anon_sym_PIPE_EQ] = ACTIONS(7493), + [anon_sym_LT_EQ_GT] = ACTIONS(7493), + [anon_sym_or] = ACTIONS(7493), + [anon_sym_and] = ACTIONS(7493), + [anon_sym_bitor] = ACTIONS(7493), + [anon_sym_xor] = ACTIONS(7493), + [anon_sym_bitand] = ACTIONS(7493), + [anon_sym_not_eq] = ACTIONS(7493), + [anon_sym_DASH_DASH] = ACTIONS(7493), + [anon_sym_PLUS_PLUS] = ACTIONS(7493), + [anon_sym_DOT] = ACTIONS(7491), + [anon_sym_DOT_STAR] = ACTIONS(7493), + [anon_sym_DASH_GT] = ACTIONS(7491), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7493), + [anon_sym_override] = ACTIONS(7493), + [anon_sym_requires] = ACTIONS(7493), + [anon_sym_DASH_GT_STAR] = ACTIONS(7493), }, [STATE(2999)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), - [anon_sym_COMMA] = ACTIONS(6596), - [anon_sym_RPAREN] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6603), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6603), - [anon_sym_GT_GT] = ACTIONS(6603), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6603), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6596), - [anon_sym_or_eq] = ACTIONS(6596), - [anon_sym_xor_eq] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6596), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6596), - [anon_sym_not_eq] = ACTIONS(6596), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6603), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7713), + [anon_sym_COMMA] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7713), + [anon_sym_LPAREN2] = ACTIONS(7713), + [anon_sym_DASH] = ACTIONS(7711), + [anon_sym_PLUS] = ACTIONS(7711), + [anon_sym_STAR] = ACTIONS(7711), + [anon_sym_SLASH] = ACTIONS(7711), + [anon_sym_PERCENT] = ACTIONS(7711), + [anon_sym_PIPE_PIPE] = ACTIONS(7713), + [anon_sym_AMP_AMP] = ACTIONS(7713), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_CARET] = ACTIONS(7711), + [anon_sym_AMP] = ACTIONS(7711), + [anon_sym_EQ_EQ] = ACTIONS(7713), + [anon_sym_BANG_EQ] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_EQ] = ACTIONS(7713), + [anon_sym_LT_EQ] = ACTIONS(7711), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_LT_LT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7711), + [anon_sym___extension__] = ACTIONS(7713), + [anon_sym_LBRACE] = ACTIONS(7713), + [anon_sym_LBRACK] = ACTIONS(7713), + [anon_sym_EQ] = ACTIONS(7711), + [anon_sym_const] = ACTIONS(7711), + [anon_sym_constexpr] = ACTIONS(7713), + [anon_sym_volatile] = ACTIONS(7713), + [anon_sym_restrict] = ACTIONS(7713), + [anon_sym___restrict__] = ACTIONS(7713), + [anon_sym__Atomic] = ACTIONS(7713), + [anon_sym__Noreturn] = ACTIONS(7713), + [anon_sym_noreturn] = ACTIONS(7713), + [anon_sym__Nonnull] = ACTIONS(7713), + [anon_sym_mutable] = ACTIONS(7713), + [anon_sym_constinit] = ACTIONS(7713), + [anon_sym_consteval] = ACTIONS(7713), + [anon_sym_alignas] = ACTIONS(7713), + [anon_sym__Alignas] = ACTIONS(7713), + [anon_sym_QMARK] = ACTIONS(7713), + [anon_sym_STAR_EQ] = ACTIONS(7713), + [anon_sym_SLASH_EQ] = ACTIONS(7713), + [anon_sym_PERCENT_EQ] = ACTIONS(7713), + [anon_sym_PLUS_EQ] = ACTIONS(7713), + [anon_sym_DASH_EQ] = ACTIONS(7713), + [anon_sym_LT_LT_EQ] = ACTIONS(7713), + [anon_sym_GT_GT_EQ] = ACTIONS(7713), + [anon_sym_AMP_EQ] = ACTIONS(7713), + [anon_sym_CARET_EQ] = ACTIONS(7713), + [anon_sym_PIPE_EQ] = ACTIONS(7713), + [anon_sym_and_eq] = ACTIONS(7713), + [anon_sym_or_eq] = ACTIONS(7713), + [anon_sym_xor_eq] = ACTIONS(7713), + [anon_sym_LT_EQ_GT] = ACTIONS(7713), + [anon_sym_or] = ACTIONS(7711), + [anon_sym_and] = ACTIONS(7711), + [anon_sym_bitor] = ACTIONS(7713), + [anon_sym_xor] = ACTIONS(7711), + [anon_sym_bitand] = ACTIONS(7713), + [anon_sym_not_eq] = ACTIONS(7713), + [anon_sym_DASH_DASH] = ACTIONS(7713), + [anon_sym_PLUS_PLUS] = ACTIONS(7713), + [anon_sym_DOT] = ACTIONS(7711), + [anon_sym_DOT_STAR] = ACTIONS(7713), + [anon_sym_DASH_GT] = ACTIONS(7711), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_DASH_GT_STAR] = ACTIONS(6596), + [anon_sym_final] = ACTIONS(7713), + [anon_sym_override] = ACTIONS(7713), + [anon_sym_requires] = ACTIONS(7713), + [anon_sym_DASH_GT_STAR] = ACTIONS(7713), }, [STATE(3000)] = { - [sym_identifier] = ACTIONS(8938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8940), - [anon_sym_COMMA] = ACTIONS(8940), - [anon_sym_RPAREN] = ACTIONS(8940), - [aux_sym_preproc_if_token2] = ACTIONS(8940), - [aux_sym_preproc_else_token1] = ACTIONS(8940), - [aux_sym_preproc_elif_token1] = ACTIONS(8938), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8940), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8940), - [anon_sym_LPAREN2] = ACTIONS(8940), - [anon_sym_DASH] = ACTIONS(8938), - [anon_sym_PLUS] = ACTIONS(8938), - [anon_sym_STAR] = ACTIONS(8938), - [anon_sym_SLASH] = ACTIONS(8938), - [anon_sym_PERCENT] = ACTIONS(8938), - [anon_sym_PIPE_PIPE] = ACTIONS(8940), - [anon_sym_AMP_AMP] = ACTIONS(8940), - [anon_sym_PIPE] = ACTIONS(8938), - [anon_sym_CARET] = ACTIONS(8938), - [anon_sym_AMP] = ACTIONS(8938), - [anon_sym_EQ_EQ] = ACTIONS(8940), - [anon_sym_BANG_EQ] = ACTIONS(8940), - [anon_sym_GT] = ACTIONS(8938), - [anon_sym_GT_EQ] = ACTIONS(8940), - [anon_sym_LT_EQ] = ACTIONS(8938), - [anon_sym_LT] = ACTIONS(8938), - [anon_sym_LT_LT] = ACTIONS(8938), - [anon_sym_GT_GT] = ACTIONS(8938), - [anon_sym_SEMI] = ACTIONS(8940), - [anon_sym___attribute__] = ACTIONS(8938), - [anon_sym___attribute] = ACTIONS(8938), - [anon_sym_COLON] = ACTIONS(8938), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8940), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8940), - [anon_sym_RBRACE] = ACTIONS(8940), - [anon_sym_LBRACK] = ACTIONS(8938), - [anon_sym_EQ] = ACTIONS(8938), - [anon_sym_QMARK] = ACTIONS(8940), - [anon_sym_STAR_EQ] = ACTIONS(8940), - [anon_sym_SLASH_EQ] = ACTIONS(8940), - [anon_sym_PERCENT_EQ] = ACTIONS(8940), - [anon_sym_PLUS_EQ] = ACTIONS(8940), - [anon_sym_DASH_EQ] = ACTIONS(8940), - [anon_sym_LT_LT_EQ] = ACTIONS(8940), - [anon_sym_GT_GT_EQ] = ACTIONS(8940), - [anon_sym_AMP_EQ] = ACTIONS(8940), - [anon_sym_CARET_EQ] = ACTIONS(8940), - [anon_sym_PIPE_EQ] = ACTIONS(8940), - [anon_sym_and_eq] = ACTIONS(8938), - [anon_sym_or_eq] = ACTIONS(8938), - [anon_sym_xor_eq] = ACTIONS(8938), - [anon_sym_LT_EQ_GT] = ACTIONS(8940), - [anon_sym_or] = ACTIONS(8938), - [anon_sym_and] = ACTIONS(8938), - [anon_sym_bitor] = ACTIONS(8938), - [anon_sym_xor] = ACTIONS(8938), - [anon_sym_bitand] = ACTIONS(8938), - [anon_sym_not_eq] = ACTIONS(8938), - [anon_sym_DASH_DASH] = ACTIONS(8940), - [anon_sym_PLUS_PLUS] = ACTIONS(8940), - [anon_sym_asm] = ACTIONS(8938), - [anon_sym___asm__] = ACTIONS(8938), - [anon_sym___asm] = ACTIONS(8938), - [anon_sym_DOT] = ACTIONS(8938), - [anon_sym_DOT_STAR] = ACTIONS(8940), - [anon_sym_DASH_GT] = ACTIONS(8940), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8938), - [anon_sym_override] = ACTIONS(8938), - [anon_sym_requires] = ACTIONS(8938), - [anon_sym_COLON_RBRACK] = ACTIONS(8940), - }, - [STATE(3001)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), - [anon_sym_COMMA] = ACTIONS(7769), - [anon_sym_RPAREN] = ACTIONS(7769), - [anon_sym_LPAREN2] = ACTIONS(7769), - [anon_sym_DASH] = ACTIONS(7767), - [anon_sym_PLUS] = ACTIONS(7767), - [anon_sym_STAR] = ACTIONS(7767), - [anon_sym_SLASH] = ACTIONS(7767), - [anon_sym_PERCENT] = ACTIONS(7767), - [anon_sym_PIPE_PIPE] = ACTIONS(7769), - [anon_sym_AMP_AMP] = ACTIONS(7769), - [anon_sym_PIPE] = ACTIONS(7767), - [anon_sym_CARET] = ACTIONS(7767), - [anon_sym_AMP] = ACTIONS(7767), - [anon_sym_EQ_EQ] = ACTIONS(7769), - [anon_sym_BANG_EQ] = ACTIONS(7769), - [anon_sym_GT] = ACTIONS(7767), - [anon_sym_GT_EQ] = ACTIONS(7769), - [anon_sym_LT_EQ] = ACTIONS(7767), - [anon_sym_LT] = ACTIONS(7767), - [anon_sym_LT_LT] = ACTIONS(7767), - [anon_sym_GT_GT] = ACTIONS(7767), - [anon_sym___extension__] = ACTIONS(7769), - [anon_sym_LBRACE] = ACTIONS(7769), - [anon_sym_LBRACK] = ACTIONS(7769), - [anon_sym_EQ] = ACTIONS(7767), - [anon_sym_const] = ACTIONS(7767), - [anon_sym_constexpr] = ACTIONS(7769), - [anon_sym_volatile] = ACTIONS(7769), - [anon_sym_restrict] = ACTIONS(7769), - [anon_sym___restrict__] = ACTIONS(7769), - [anon_sym__Atomic] = ACTIONS(7769), - [anon_sym__Noreturn] = ACTIONS(7769), - [anon_sym_noreturn] = ACTIONS(7769), - [anon_sym__Nonnull] = ACTIONS(7769), - [anon_sym_mutable] = ACTIONS(7769), - [anon_sym_constinit] = ACTIONS(7769), - [anon_sym_consteval] = ACTIONS(7769), - [anon_sym_alignas] = ACTIONS(7769), - [anon_sym__Alignas] = ACTIONS(7769), - [anon_sym_QMARK] = ACTIONS(7769), - [anon_sym_STAR_EQ] = ACTIONS(7769), - [anon_sym_SLASH_EQ] = ACTIONS(7769), - [anon_sym_PERCENT_EQ] = ACTIONS(7769), - [anon_sym_PLUS_EQ] = ACTIONS(7769), - [anon_sym_DASH_EQ] = ACTIONS(7769), - [anon_sym_LT_LT_EQ] = ACTIONS(7769), - [anon_sym_GT_GT_EQ] = ACTIONS(7769), - [anon_sym_AMP_EQ] = ACTIONS(7769), - [anon_sym_CARET_EQ] = ACTIONS(7769), - [anon_sym_PIPE_EQ] = ACTIONS(7769), - [anon_sym_and_eq] = ACTIONS(7769), - [anon_sym_or_eq] = ACTIONS(7769), - [anon_sym_xor_eq] = ACTIONS(7769), - [anon_sym_LT_EQ_GT] = ACTIONS(7769), - [anon_sym_or] = ACTIONS(7767), - [anon_sym_and] = ACTIONS(7767), - [anon_sym_bitor] = ACTIONS(7769), - [anon_sym_xor] = ACTIONS(7767), - [anon_sym_bitand] = ACTIONS(7769), - [anon_sym_not_eq] = ACTIONS(7769), - [anon_sym_DASH_DASH] = ACTIONS(7769), - [anon_sym_PLUS_PLUS] = ACTIONS(7769), - [anon_sym_DOT] = ACTIONS(7767), - [anon_sym_DOT_STAR] = ACTIONS(7769), - [anon_sym_DASH_GT] = ACTIONS(7767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7717), + [anon_sym_COMMA] = ACTIONS(7717), + [anon_sym_RPAREN] = ACTIONS(7717), + [anon_sym_LPAREN2] = ACTIONS(7717), + [anon_sym_DASH] = ACTIONS(7715), + [anon_sym_PLUS] = ACTIONS(7715), + [anon_sym_STAR] = ACTIONS(7715), + [anon_sym_SLASH] = ACTIONS(7715), + [anon_sym_PERCENT] = ACTIONS(7715), + [anon_sym_PIPE_PIPE] = ACTIONS(7717), + [anon_sym_AMP_AMP] = ACTIONS(7717), + [anon_sym_PIPE] = ACTIONS(7715), + [anon_sym_CARET] = ACTIONS(7715), + [anon_sym_AMP] = ACTIONS(7715), + [anon_sym_EQ_EQ] = ACTIONS(7717), + [anon_sym_BANG_EQ] = ACTIONS(7717), + [anon_sym_GT] = ACTIONS(7715), + [anon_sym_GT_EQ] = ACTIONS(7717), + [anon_sym_LT_EQ] = ACTIONS(7715), + [anon_sym_LT] = ACTIONS(7715), + [anon_sym_LT_LT] = ACTIONS(7715), + [anon_sym_GT_GT] = ACTIONS(7715), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7717), + [anon_sym_EQ] = ACTIONS(7715), + [anon_sym_const] = ACTIONS(7715), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_mutable] = ACTIONS(7717), + [anon_sym_constinit] = ACTIONS(7717), + [anon_sym_consteval] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [anon_sym_QMARK] = ACTIONS(7717), + [anon_sym_STAR_EQ] = ACTIONS(7717), + [anon_sym_SLASH_EQ] = ACTIONS(7717), + [anon_sym_PERCENT_EQ] = ACTIONS(7717), + [anon_sym_PLUS_EQ] = ACTIONS(7717), + [anon_sym_DASH_EQ] = ACTIONS(7717), + [anon_sym_LT_LT_EQ] = ACTIONS(7717), + [anon_sym_GT_GT_EQ] = ACTIONS(7717), + [anon_sym_AMP_EQ] = ACTIONS(7717), + [anon_sym_CARET_EQ] = ACTIONS(7717), + [anon_sym_PIPE_EQ] = ACTIONS(7717), + [anon_sym_and_eq] = ACTIONS(7717), + [anon_sym_or_eq] = ACTIONS(7717), + [anon_sym_xor_eq] = ACTIONS(7717), + [anon_sym_LT_EQ_GT] = ACTIONS(7717), + [anon_sym_or] = ACTIONS(7715), + [anon_sym_and] = ACTIONS(7715), + [anon_sym_bitor] = ACTIONS(7717), + [anon_sym_xor] = ACTIONS(7715), + [anon_sym_bitand] = ACTIONS(7717), + [anon_sym_not_eq] = ACTIONS(7717), + [anon_sym_DASH_DASH] = ACTIONS(7717), + [anon_sym_PLUS_PLUS] = ACTIONS(7717), + [anon_sym_DOT] = ACTIONS(7715), + [anon_sym_DOT_STAR] = ACTIONS(7717), + [anon_sym_DASH_GT] = ACTIONS(7715), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7769), - [anon_sym_override] = ACTIONS(7769), - [anon_sym_requires] = ACTIONS(7769), - [anon_sym_DASH_GT_STAR] = ACTIONS(7769), + [anon_sym_final] = ACTIONS(7717), + [anon_sym_override] = ACTIONS(7717), + [anon_sym_requires] = ACTIONS(7717), + [anon_sym_DASH_GT_STAR] = ACTIONS(7717), + }, + [STATE(3001)] = { + [sym_identifier] = ACTIONS(8937), + [anon_sym_LPAREN2] = ACTIONS(8939), + [anon_sym_TILDE] = ACTIONS(8939), + [anon_sym_STAR] = ACTIONS(8939), + [anon_sym_PIPE_PIPE] = ACTIONS(8939), + [anon_sym_AMP_AMP] = ACTIONS(8939), + [anon_sym_AMP] = ACTIONS(8937), + [anon_sym___extension__] = ACTIONS(8937), + [anon_sym_virtual] = ACTIONS(8937), + [anon_sym_extern] = ACTIONS(8937), + [anon_sym___attribute__] = ACTIONS(8937), + [anon_sym___attribute] = ACTIONS(8937), + [anon_sym_using] = ACTIONS(8937), + [anon_sym_COLON_COLON] = ACTIONS(8939), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8939), + [anon_sym___declspec] = ACTIONS(8937), + [anon_sym___based] = ACTIONS(8937), + [anon_sym___cdecl] = ACTIONS(8937), + [anon_sym___clrcall] = ACTIONS(8937), + [anon_sym___stdcall] = ACTIONS(8937), + [anon_sym___fastcall] = ACTIONS(8937), + [anon_sym___thiscall] = ACTIONS(8937), + [anon_sym___vectorcall] = ACTIONS(8937), + [anon_sym_LBRACE] = ACTIONS(8939), + [anon_sym_signed] = ACTIONS(8937), + [anon_sym_unsigned] = ACTIONS(8937), + [anon_sym_long] = ACTIONS(8937), + [anon_sym_short] = ACTIONS(8937), + [anon_sym_LBRACK] = ACTIONS(8937), + [anon_sym_static] = ACTIONS(8937), + [anon_sym_register] = ACTIONS(8937), + [anon_sym_inline] = ACTIONS(8937), + [anon_sym___inline] = ACTIONS(8937), + [anon_sym___inline__] = ACTIONS(8937), + [anon_sym___forceinline] = ACTIONS(8937), + [anon_sym_thread_local] = ACTIONS(8937), + [anon_sym___thread] = ACTIONS(8937), + [anon_sym_const] = ACTIONS(8937), + [anon_sym_constexpr] = ACTIONS(8937), + [anon_sym_volatile] = ACTIONS(8937), + [anon_sym_restrict] = ACTIONS(8937), + [anon_sym___restrict__] = ACTIONS(8937), + [anon_sym__Atomic] = ACTIONS(8937), + [anon_sym__Noreturn] = ACTIONS(8937), + [anon_sym_noreturn] = ACTIONS(8937), + [anon_sym__Nonnull] = ACTIONS(8937), + [anon_sym_mutable] = ACTIONS(8937), + [anon_sym_constinit] = ACTIONS(8937), + [anon_sym_consteval] = ACTIONS(8937), + [anon_sym_alignas] = ACTIONS(8937), + [anon_sym__Alignas] = ACTIONS(8937), + [sym_primitive_type] = ACTIONS(8937), + [anon_sym_enum] = ACTIONS(8937), + [anon_sym_class] = ACTIONS(8937), + [anon_sym_struct] = ACTIONS(8937), + [anon_sym_union] = ACTIONS(8937), + [anon_sym_or] = ACTIONS(8937), + [anon_sym_and] = ACTIONS(8937), + [anon_sym_typename] = ACTIONS(8937), + [anon_sym_DASH_GT] = ACTIONS(8939), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8937), + [anon_sym_decltype] = ACTIONS(8937), + [anon_sym_explicit] = ACTIONS(8937), + [anon_sym_template] = ACTIONS(8937), + [anon_sym_operator] = ACTIONS(8937), + [anon_sym_friend] = ACTIONS(8937), + [anon_sym_noexcept] = ACTIONS(8937), + [anon_sym_throw] = ACTIONS(8937), + [anon_sym_concept] = ACTIONS(8937), + [anon_sym_LBRACK_COLON] = ACTIONS(8939), }, [STATE(3002)] = { - [sym_identifier] = ACTIONS(8942), - [anon_sym_LPAREN2] = ACTIONS(8944), - [anon_sym_TILDE] = ACTIONS(8944), - [anon_sym_STAR] = ACTIONS(8944), - [anon_sym_PIPE_PIPE] = ACTIONS(8944), - [anon_sym_AMP_AMP] = ACTIONS(8944), - [anon_sym_AMP] = ACTIONS(8942), - [anon_sym___extension__] = ACTIONS(8942), - [anon_sym_virtual] = ACTIONS(8942), - [anon_sym_extern] = ACTIONS(8942), - [anon_sym___attribute__] = ACTIONS(8942), - [anon_sym___attribute] = ACTIONS(8942), - [anon_sym_using] = ACTIONS(8942), - [anon_sym_COLON_COLON] = ACTIONS(8944), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8944), - [anon_sym___declspec] = ACTIONS(8942), - [anon_sym___based] = ACTIONS(8942), - [anon_sym___cdecl] = ACTIONS(8942), - [anon_sym___clrcall] = ACTIONS(8942), - [anon_sym___stdcall] = ACTIONS(8942), - [anon_sym___fastcall] = ACTIONS(8942), - [anon_sym___thiscall] = ACTIONS(8942), - [anon_sym___vectorcall] = ACTIONS(8942), - [anon_sym_LBRACE] = ACTIONS(8944), - [anon_sym_signed] = ACTIONS(8942), - [anon_sym_unsigned] = ACTIONS(8942), - [anon_sym_long] = ACTIONS(8942), - [anon_sym_short] = ACTIONS(8942), - [anon_sym_LBRACK] = ACTIONS(8942), - [anon_sym_static] = ACTIONS(8942), - [anon_sym_register] = ACTIONS(8942), - [anon_sym_inline] = ACTIONS(8942), - [anon_sym___inline] = ACTIONS(8942), - [anon_sym___inline__] = ACTIONS(8942), - [anon_sym___forceinline] = ACTIONS(8942), - [anon_sym_thread_local] = ACTIONS(8942), - [anon_sym___thread] = ACTIONS(8942), - [anon_sym_const] = ACTIONS(8942), - [anon_sym_constexpr] = ACTIONS(8942), - [anon_sym_volatile] = ACTIONS(8942), - [anon_sym_restrict] = ACTIONS(8942), - [anon_sym___restrict__] = ACTIONS(8942), - [anon_sym__Atomic] = ACTIONS(8942), - [anon_sym__Noreturn] = ACTIONS(8942), - [anon_sym_noreturn] = ACTIONS(8942), - [anon_sym__Nonnull] = ACTIONS(8942), - [anon_sym_mutable] = ACTIONS(8942), - [anon_sym_constinit] = ACTIONS(8942), - [anon_sym_consteval] = ACTIONS(8942), - [anon_sym_alignas] = ACTIONS(8942), - [anon_sym__Alignas] = ACTIONS(8942), - [sym_primitive_type] = ACTIONS(8942), - [anon_sym_enum] = ACTIONS(8942), - [anon_sym_class] = ACTIONS(8942), - [anon_sym_struct] = ACTIONS(8942), - [anon_sym_union] = ACTIONS(8942), - [anon_sym_or] = ACTIONS(8942), - [anon_sym_and] = ACTIONS(8942), - [anon_sym_typename] = ACTIONS(8942), - [anon_sym_DASH_GT] = ACTIONS(8944), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8942), - [anon_sym_decltype] = ACTIONS(8942), - [anon_sym_explicit] = ACTIONS(8942), - [anon_sym_template] = ACTIONS(8942), - [anon_sym_operator] = ACTIONS(8942), - [anon_sym_friend] = ACTIONS(8942), - [anon_sym_noexcept] = ACTIONS(8942), - [anon_sym_throw] = ACTIONS(8942), - [anon_sym_concept] = ACTIONS(8942), - [anon_sym_LBRACK_COLON] = ACTIONS(8944), + [sym_identifier] = ACTIONS(8941), + [anon_sym_LPAREN2] = ACTIONS(8943), + [anon_sym_TILDE] = ACTIONS(8943), + [anon_sym_STAR] = ACTIONS(8943), + [anon_sym_PIPE_PIPE] = ACTIONS(8943), + [anon_sym_AMP_AMP] = ACTIONS(8943), + [anon_sym_AMP] = ACTIONS(8941), + [anon_sym___extension__] = ACTIONS(8941), + [anon_sym_virtual] = ACTIONS(8941), + [anon_sym_extern] = ACTIONS(8941), + [anon_sym___attribute__] = ACTIONS(8941), + [anon_sym___attribute] = ACTIONS(8941), + [anon_sym_using] = ACTIONS(8941), + [anon_sym_COLON_COLON] = ACTIONS(8943), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8943), + [anon_sym___declspec] = ACTIONS(8941), + [anon_sym___based] = ACTIONS(8941), + [anon_sym___cdecl] = ACTIONS(8941), + [anon_sym___clrcall] = ACTIONS(8941), + [anon_sym___stdcall] = ACTIONS(8941), + [anon_sym___fastcall] = ACTIONS(8941), + [anon_sym___thiscall] = ACTIONS(8941), + [anon_sym___vectorcall] = ACTIONS(8941), + [anon_sym_LBRACE] = ACTIONS(8943), + [anon_sym_signed] = ACTIONS(8941), + [anon_sym_unsigned] = ACTIONS(8941), + [anon_sym_long] = ACTIONS(8941), + [anon_sym_short] = ACTIONS(8941), + [anon_sym_LBRACK] = ACTIONS(8941), + [anon_sym_static] = ACTIONS(8941), + [anon_sym_register] = ACTIONS(8941), + [anon_sym_inline] = ACTIONS(8941), + [anon_sym___inline] = ACTIONS(8941), + [anon_sym___inline__] = ACTIONS(8941), + [anon_sym___forceinline] = ACTIONS(8941), + [anon_sym_thread_local] = ACTIONS(8941), + [anon_sym___thread] = ACTIONS(8941), + [anon_sym_const] = ACTIONS(8941), + [anon_sym_constexpr] = ACTIONS(8941), + [anon_sym_volatile] = ACTIONS(8941), + [anon_sym_restrict] = ACTIONS(8941), + [anon_sym___restrict__] = ACTIONS(8941), + [anon_sym__Atomic] = ACTIONS(8941), + [anon_sym__Noreturn] = ACTIONS(8941), + [anon_sym_noreturn] = ACTIONS(8941), + [anon_sym__Nonnull] = ACTIONS(8941), + [anon_sym_mutable] = ACTIONS(8941), + [anon_sym_constinit] = ACTIONS(8941), + [anon_sym_consteval] = ACTIONS(8941), + [anon_sym_alignas] = ACTIONS(8941), + [anon_sym__Alignas] = ACTIONS(8941), + [sym_primitive_type] = ACTIONS(8941), + [anon_sym_enum] = ACTIONS(8941), + [anon_sym_class] = ACTIONS(8941), + [anon_sym_struct] = ACTIONS(8941), + [anon_sym_union] = ACTIONS(8941), + [anon_sym_or] = ACTIONS(8941), + [anon_sym_and] = ACTIONS(8941), + [anon_sym_typename] = ACTIONS(8941), + [anon_sym_DASH_GT] = ACTIONS(8943), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8941), + [anon_sym_decltype] = ACTIONS(8941), + [anon_sym_explicit] = ACTIONS(8941), + [anon_sym_template] = ACTIONS(8941), + [anon_sym_operator] = ACTIONS(8941), + [anon_sym_friend] = ACTIONS(8941), + [anon_sym_noexcept] = ACTIONS(8941), + [anon_sym_throw] = ACTIONS(8941), + [anon_sym_concept] = ACTIONS(8941), + [anon_sym_LBRACK_COLON] = ACTIONS(8943), }, [STATE(3003)] = { - [sym_attribute_specifier] = STATE(3572), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7433), - [anon_sym_COMMA] = ACTIONS(7433), - [anon_sym_RPAREN] = ACTIONS(7433), - [anon_sym_LPAREN2] = ACTIONS(7433), - [anon_sym_DASH] = ACTIONS(7431), - [anon_sym_PLUS] = ACTIONS(7431), - [anon_sym_STAR] = ACTIONS(7431), - [anon_sym_SLASH] = ACTIONS(7431), - [anon_sym_PERCENT] = ACTIONS(7431), - [anon_sym_PIPE_PIPE] = ACTIONS(7433), - [anon_sym_AMP_AMP] = ACTIONS(7433), - [anon_sym_PIPE] = ACTIONS(7431), - [anon_sym_CARET] = ACTIONS(7431), - [anon_sym_AMP] = ACTIONS(7431), - [anon_sym_EQ_EQ] = ACTIONS(7433), - [anon_sym_BANG_EQ] = ACTIONS(7433), - [anon_sym_GT] = ACTIONS(7431), - [anon_sym_GT_EQ] = ACTIONS(7433), - [anon_sym_LT_EQ] = ACTIONS(7431), - [anon_sym_LT] = ACTIONS(7431), - [anon_sym_LT_LT] = ACTIONS(7431), - [anon_sym_GT_GT] = ACTIONS(7431), - [anon_sym___extension__] = ACTIONS(7433), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7433), - [anon_sym_LBRACK] = ACTIONS(7433), - [anon_sym_EQ] = ACTIONS(7431), - [anon_sym_const] = ACTIONS(7431), - [anon_sym_constexpr] = ACTIONS(7433), - [anon_sym_volatile] = ACTIONS(7433), - [anon_sym_restrict] = ACTIONS(7433), - [anon_sym___restrict__] = ACTIONS(7433), - [anon_sym__Atomic] = ACTIONS(7433), - [anon_sym__Noreturn] = ACTIONS(7433), - [anon_sym_noreturn] = ACTIONS(7433), - [anon_sym__Nonnull] = ACTIONS(7433), - [anon_sym_mutable] = ACTIONS(7433), - [anon_sym_constinit] = ACTIONS(7433), - [anon_sym_consteval] = ACTIONS(7433), - [anon_sym_alignas] = ACTIONS(7433), - [anon_sym__Alignas] = ACTIONS(7433), - [anon_sym_QMARK] = ACTIONS(7433), - [anon_sym_STAR_EQ] = ACTIONS(7433), - [anon_sym_SLASH_EQ] = ACTIONS(7433), - [anon_sym_PERCENT_EQ] = ACTIONS(7433), - [anon_sym_PLUS_EQ] = ACTIONS(7433), - [anon_sym_DASH_EQ] = ACTIONS(7433), - [anon_sym_LT_LT_EQ] = ACTIONS(7433), - [anon_sym_GT_GT_EQ] = ACTIONS(7433), - [anon_sym_AMP_EQ] = ACTIONS(7433), - [anon_sym_CARET_EQ] = ACTIONS(7433), - [anon_sym_PIPE_EQ] = ACTIONS(7433), - [anon_sym_LT_EQ_GT] = ACTIONS(7433), - [anon_sym_or] = ACTIONS(7433), - [anon_sym_and] = ACTIONS(7433), - [anon_sym_bitor] = ACTIONS(7433), - [anon_sym_xor] = ACTIONS(7433), - [anon_sym_bitand] = ACTIONS(7433), - [anon_sym_not_eq] = ACTIONS(7433), - [anon_sym_DASH_DASH] = ACTIONS(7433), - [anon_sym_PLUS_PLUS] = ACTIONS(7433), - [anon_sym_DOT] = ACTIONS(7431), - [anon_sym_DOT_STAR] = ACTIONS(7433), - [anon_sym_DASH_GT] = ACTIONS(7431), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7433), - [anon_sym_override] = ACTIONS(7433), - [anon_sym_requires] = ACTIONS(7433), - [anon_sym_DASH_GT_STAR] = ACTIONS(7433), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7725), + [anon_sym_or_eq] = ACTIONS(7725), + [anon_sym_xor_eq] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7723), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + [anon_sym_DASH_GT_STAR] = ACTIONS(7725), }, [STATE(3004)] = { - [sym_identifier] = ACTIONS(8946), - [anon_sym_LPAREN2] = ACTIONS(8948), - [anon_sym_TILDE] = ACTIONS(8948), - [anon_sym_STAR] = ACTIONS(8948), - [anon_sym_PIPE_PIPE] = ACTIONS(8948), - [anon_sym_AMP_AMP] = ACTIONS(8948), - [anon_sym_AMP] = ACTIONS(8946), - [anon_sym___extension__] = ACTIONS(8946), - [anon_sym_virtual] = ACTIONS(8946), - [anon_sym_extern] = ACTIONS(8946), - [anon_sym___attribute__] = ACTIONS(8946), - [anon_sym___attribute] = ACTIONS(8946), - [anon_sym_using] = ACTIONS(8946), - [anon_sym_COLON_COLON] = ACTIONS(8948), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8948), - [anon_sym___declspec] = ACTIONS(8946), - [anon_sym___based] = ACTIONS(8946), - [anon_sym___cdecl] = ACTIONS(8946), - [anon_sym___clrcall] = ACTIONS(8946), - [anon_sym___stdcall] = ACTIONS(8946), - [anon_sym___fastcall] = ACTIONS(8946), - [anon_sym___thiscall] = ACTIONS(8946), - [anon_sym___vectorcall] = ACTIONS(8946), - [anon_sym_LBRACE] = ACTIONS(8948), - [anon_sym_signed] = ACTIONS(8946), - [anon_sym_unsigned] = ACTIONS(8946), - [anon_sym_long] = ACTIONS(8946), - [anon_sym_short] = ACTIONS(8946), - [anon_sym_LBRACK] = ACTIONS(8946), - [anon_sym_static] = ACTIONS(8946), - [anon_sym_register] = ACTIONS(8946), - [anon_sym_inline] = ACTIONS(8946), - [anon_sym___inline] = ACTIONS(8946), - [anon_sym___inline__] = ACTIONS(8946), - [anon_sym___forceinline] = ACTIONS(8946), - [anon_sym_thread_local] = ACTIONS(8946), - [anon_sym___thread] = ACTIONS(8946), - [anon_sym_const] = ACTIONS(8946), - [anon_sym_constexpr] = ACTIONS(8946), - [anon_sym_volatile] = ACTIONS(8946), - [anon_sym_restrict] = ACTIONS(8946), - [anon_sym___restrict__] = ACTIONS(8946), - [anon_sym__Atomic] = ACTIONS(8946), - [anon_sym__Noreturn] = ACTIONS(8946), - [anon_sym_noreturn] = ACTIONS(8946), - [anon_sym__Nonnull] = ACTIONS(8946), - [anon_sym_mutable] = ACTIONS(8946), - [anon_sym_constinit] = ACTIONS(8946), - [anon_sym_consteval] = ACTIONS(8946), - [anon_sym_alignas] = ACTIONS(8946), - [anon_sym__Alignas] = ACTIONS(8946), - [sym_primitive_type] = ACTIONS(8946), - [anon_sym_enum] = ACTIONS(8946), - [anon_sym_class] = ACTIONS(8946), - [anon_sym_struct] = ACTIONS(8946), - [anon_sym_union] = ACTIONS(8946), - [anon_sym_or] = ACTIONS(8946), - [anon_sym_and] = ACTIONS(8946), - [anon_sym_typename] = ACTIONS(8946), - [anon_sym_DASH_GT] = ACTIONS(8948), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8946), - [anon_sym_decltype] = ACTIONS(8946), - [anon_sym_explicit] = ACTIONS(8946), - [anon_sym_template] = ACTIONS(8946), - [anon_sym_operator] = ACTIONS(8946), - [anon_sym_friend] = ACTIONS(8946), - [anon_sym_noexcept] = ACTIONS(8946), - [anon_sym_throw] = ACTIONS(8946), - [anon_sym_concept] = ACTIONS(8946), - [anon_sym_LBRACK_COLON] = ACTIONS(8948), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [anon_sym_RPAREN] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7727), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7727), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7727), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7729), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7727), + [anon_sym_GT_GT] = ACTIONS(7727), + [anon_sym___extension__] = ACTIONS(7729), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(7727), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7729), + [anon_sym_volatile] = ACTIONS(7729), + [anon_sym_restrict] = ACTIONS(7729), + [anon_sym___restrict__] = ACTIONS(7729), + [anon_sym__Atomic] = ACTIONS(7729), + [anon_sym__Noreturn] = ACTIONS(7729), + [anon_sym_noreturn] = ACTIONS(7729), + [anon_sym__Nonnull] = ACTIONS(7729), + [anon_sym_mutable] = ACTIONS(7729), + [anon_sym_constinit] = ACTIONS(7729), + [anon_sym_consteval] = ACTIONS(7729), + [anon_sym_alignas] = ACTIONS(7729), + [anon_sym__Alignas] = ACTIONS(7729), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_STAR_EQ] = ACTIONS(7729), + [anon_sym_SLASH_EQ] = ACTIONS(7729), + [anon_sym_PERCENT_EQ] = ACTIONS(7729), + [anon_sym_PLUS_EQ] = ACTIONS(7729), + [anon_sym_DASH_EQ] = ACTIONS(7729), + [anon_sym_LT_LT_EQ] = ACTIONS(7729), + [anon_sym_GT_GT_EQ] = ACTIONS(7729), + [anon_sym_AMP_EQ] = ACTIONS(7729), + [anon_sym_CARET_EQ] = ACTIONS(7729), + [anon_sym_PIPE_EQ] = ACTIONS(7729), + [anon_sym_and_eq] = ACTIONS(7729), + [anon_sym_or_eq] = ACTIONS(7729), + [anon_sym_xor_eq] = ACTIONS(7729), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7727), + [anon_sym_and] = ACTIONS(7727), + [anon_sym_bitor] = ACTIONS(7729), + [anon_sym_xor] = ACTIONS(7727), + [anon_sym_bitand] = ACTIONS(7729), + [anon_sym_not_eq] = ACTIONS(7729), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7727), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7729), + [anon_sym_override] = ACTIONS(7729), + [anon_sym_requires] = ACTIONS(7729), + [anon_sym_DASH_GT_STAR] = ACTIONS(7729), }, [STATE(3005)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), - [anon_sym_COMMA] = ACTIONS(7773), - [anon_sym_RPAREN] = ACTIONS(7773), - [anon_sym_LPAREN2] = ACTIONS(7773), - [anon_sym_DASH] = ACTIONS(7771), - [anon_sym_PLUS] = ACTIONS(7771), - [anon_sym_STAR] = ACTIONS(7771), - [anon_sym_SLASH] = ACTIONS(7771), - [anon_sym_PERCENT] = ACTIONS(7771), - [anon_sym_PIPE_PIPE] = ACTIONS(7773), - [anon_sym_AMP_AMP] = ACTIONS(7773), - [anon_sym_PIPE] = ACTIONS(7771), - [anon_sym_CARET] = ACTIONS(7771), - [anon_sym_AMP] = ACTIONS(7771), - [anon_sym_EQ_EQ] = ACTIONS(7773), - [anon_sym_BANG_EQ] = ACTIONS(7773), - [anon_sym_GT] = ACTIONS(7771), - [anon_sym_GT_EQ] = ACTIONS(7773), - [anon_sym_LT_EQ] = ACTIONS(7771), - [anon_sym_LT] = ACTIONS(7771), - [anon_sym_LT_LT] = ACTIONS(7771), - [anon_sym_GT_GT] = ACTIONS(7771), - [anon_sym___extension__] = ACTIONS(7773), - [anon_sym_LBRACE] = ACTIONS(7773), - [anon_sym_LBRACK] = ACTIONS(7773), - [anon_sym_EQ] = ACTIONS(7771), - [anon_sym_const] = ACTIONS(7771), - [anon_sym_constexpr] = ACTIONS(7773), - [anon_sym_volatile] = ACTIONS(7773), - [anon_sym_restrict] = ACTIONS(7773), - [anon_sym___restrict__] = ACTIONS(7773), - [anon_sym__Atomic] = ACTIONS(7773), - [anon_sym__Noreturn] = ACTIONS(7773), - [anon_sym_noreturn] = ACTIONS(7773), - [anon_sym__Nonnull] = ACTIONS(7773), - [anon_sym_mutable] = ACTIONS(7773), - [anon_sym_constinit] = ACTIONS(7773), - [anon_sym_consteval] = ACTIONS(7773), - [anon_sym_alignas] = ACTIONS(7773), - [anon_sym__Alignas] = ACTIONS(7773), - [anon_sym_QMARK] = ACTIONS(7773), - [anon_sym_STAR_EQ] = ACTIONS(7773), - [anon_sym_SLASH_EQ] = ACTIONS(7773), - [anon_sym_PERCENT_EQ] = ACTIONS(7773), - [anon_sym_PLUS_EQ] = ACTIONS(7773), - [anon_sym_DASH_EQ] = ACTIONS(7773), - [anon_sym_LT_LT_EQ] = ACTIONS(7773), - [anon_sym_GT_GT_EQ] = ACTIONS(7773), - [anon_sym_AMP_EQ] = ACTIONS(7773), - [anon_sym_CARET_EQ] = ACTIONS(7773), - [anon_sym_PIPE_EQ] = ACTIONS(7773), - [anon_sym_and_eq] = ACTIONS(7773), - [anon_sym_or_eq] = ACTIONS(7773), - [anon_sym_xor_eq] = ACTIONS(7773), - [anon_sym_LT_EQ_GT] = ACTIONS(7773), - [anon_sym_or] = ACTIONS(7771), - [anon_sym_and] = ACTIONS(7771), - [anon_sym_bitor] = ACTIONS(7773), - [anon_sym_xor] = ACTIONS(7771), - [anon_sym_bitand] = ACTIONS(7773), - [anon_sym_not_eq] = ACTIONS(7773), - [anon_sym_DASH_DASH] = ACTIONS(7773), - [anon_sym_PLUS_PLUS] = ACTIONS(7773), - [anon_sym_DOT] = ACTIONS(7771), - [anon_sym_DOT_STAR] = ACTIONS(7773), - [anon_sym_DASH_GT] = ACTIONS(7771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7551), + [anon_sym_COMMA] = ACTIONS(7551), + [anon_sym_RPAREN] = ACTIONS(7551), + [anon_sym_LPAREN2] = ACTIONS(7551), + [anon_sym_DASH] = ACTIONS(7549), + [anon_sym_PLUS] = ACTIONS(7549), + [anon_sym_STAR] = ACTIONS(7549), + [anon_sym_SLASH] = ACTIONS(7549), + [anon_sym_PERCENT] = ACTIONS(7549), + [anon_sym_PIPE_PIPE] = ACTIONS(7551), + [anon_sym_AMP_AMP] = ACTIONS(7551), + [anon_sym_PIPE] = ACTIONS(7549), + [anon_sym_CARET] = ACTIONS(7549), + [anon_sym_AMP] = ACTIONS(7549), + [anon_sym_EQ_EQ] = ACTIONS(7551), + [anon_sym_BANG_EQ] = ACTIONS(7551), + [anon_sym_GT] = ACTIONS(7549), + [anon_sym_GT_EQ] = ACTIONS(7551), + [anon_sym_LT_EQ] = ACTIONS(7549), + [anon_sym_LT] = ACTIONS(7549), + [anon_sym_LT_LT] = ACTIONS(7549), + [anon_sym_GT_GT] = ACTIONS(7549), + [anon_sym___extension__] = ACTIONS(7551), + [anon_sym_LBRACE] = ACTIONS(7551), + [anon_sym_LBRACK] = ACTIONS(7551), + [anon_sym_EQ] = ACTIONS(7549), + [anon_sym_const] = ACTIONS(7549), + [anon_sym_constexpr] = ACTIONS(7551), + [anon_sym_volatile] = ACTIONS(7551), + [anon_sym_restrict] = ACTIONS(7551), + [anon_sym___restrict__] = ACTIONS(7551), + [anon_sym__Atomic] = ACTIONS(7551), + [anon_sym__Noreturn] = ACTIONS(7551), + [anon_sym_noreturn] = ACTIONS(7551), + [anon_sym__Nonnull] = ACTIONS(7551), + [anon_sym_mutable] = ACTIONS(7551), + [anon_sym_constinit] = ACTIONS(7551), + [anon_sym_consteval] = ACTIONS(7551), + [anon_sym_alignas] = ACTIONS(7551), + [anon_sym__Alignas] = ACTIONS(7551), + [anon_sym_QMARK] = ACTIONS(7551), + [anon_sym_STAR_EQ] = ACTIONS(7551), + [anon_sym_SLASH_EQ] = ACTIONS(7551), + [anon_sym_PERCENT_EQ] = ACTIONS(7551), + [anon_sym_PLUS_EQ] = ACTIONS(7551), + [anon_sym_DASH_EQ] = ACTIONS(7551), + [anon_sym_LT_LT_EQ] = ACTIONS(7551), + [anon_sym_GT_GT_EQ] = ACTIONS(7551), + [anon_sym_AMP_EQ] = ACTIONS(7551), + [anon_sym_CARET_EQ] = ACTIONS(7551), + [anon_sym_PIPE_EQ] = ACTIONS(7551), + [anon_sym_and_eq] = ACTIONS(7551), + [anon_sym_or_eq] = ACTIONS(7551), + [anon_sym_xor_eq] = ACTIONS(7551), + [anon_sym_LT_EQ_GT] = ACTIONS(7551), + [anon_sym_or] = ACTIONS(7549), + [anon_sym_and] = ACTIONS(7549), + [anon_sym_bitor] = ACTIONS(7551), + [anon_sym_xor] = ACTIONS(7549), + [anon_sym_bitand] = ACTIONS(7551), + [anon_sym_not_eq] = ACTIONS(7551), + [anon_sym_DASH_DASH] = ACTIONS(7551), + [anon_sym_PLUS_PLUS] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7549), + [anon_sym_DOT_STAR] = ACTIONS(7551), + [anon_sym_DASH_GT] = ACTIONS(7549), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7773), - [anon_sym_override] = ACTIONS(7773), - [anon_sym_requires] = ACTIONS(7773), - [anon_sym_DASH_GT_STAR] = ACTIONS(7773), + [anon_sym_final] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7551), + [anon_sym_requires] = ACTIONS(7551), + [anon_sym_DASH_GT_STAR] = ACTIONS(7551), }, [STATE(3006)] = { - [sym_identifier] = ACTIONS(8950), - [anon_sym_LPAREN2] = ACTIONS(8952), - [anon_sym_TILDE] = ACTIONS(8952), - [anon_sym_STAR] = ACTIONS(8952), - [anon_sym_PIPE_PIPE] = ACTIONS(8952), - [anon_sym_AMP_AMP] = ACTIONS(8952), - [anon_sym_AMP] = ACTIONS(8950), - [anon_sym___extension__] = ACTIONS(8950), - [anon_sym_virtual] = ACTIONS(8950), - [anon_sym_extern] = ACTIONS(8950), - [anon_sym___attribute__] = ACTIONS(8950), - [anon_sym___attribute] = ACTIONS(8950), - [anon_sym_using] = ACTIONS(8950), - [anon_sym_COLON_COLON] = ACTIONS(8952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8952), - [anon_sym___declspec] = ACTIONS(8950), - [anon_sym___based] = ACTIONS(8950), - [anon_sym___cdecl] = ACTIONS(8950), - [anon_sym___clrcall] = ACTIONS(8950), - [anon_sym___stdcall] = ACTIONS(8950), - [anon_sym___fastcall] = ACTIONS(8950), - [anon_sym___thiscall] = ACTIONS(8950), - [anon_sym___vectorcall] = ACTIONS(8950), - [anon_sym_LBRACE] = ACTIONS(8952), - [anon_sym_signed] = ACTIONS(8950), - [anon_sym_unsigned] = ACTIONS(8950), - [anon_sym_long] = ACTIONS(8950), - [anon_sym_short] = ACTIONS(8950), - [anon_sym_LBRACK] = ACTIONS(8950), - [anon_sym_static] = ACTIONS(8950), - [anon_sym_register] = ACTIONS(8950), - [anon_sym_inline] = ACTIONS(8950), - [anon_sym___inline] = ACTIONS(8950), - [anon_sym___inline__] = ACTIONS(8950), - [anon_sym___forceinline] = ACTIONS(8950), - [anon_sym_thread_local] = ACTIONS(8950), - [anon_sym___thread] = ACTIONS(8950), - [anon_sym_const] = ACTIONS(8950), - [anon_sym_constexpr] = ACTIONS(8950), - [anon_sym_volatile] = ACTIONS(8950), - [anon_sym_restrict] = ACTIONS(8950), - [anon_sym___restrict__] = ACTIONS(8950), - [anon_sym__Atomic] = ACTIONS(8950), - [anon_sym__Noreturn] = ACTIONS(8950), - [anon_sym_noreturn] = ACTIONS(8950), - [anon_sym__Nonnull] = ACTIONS(8950), - [anon_sym_mutable] = ACTIONS(8950), - [anon_sym_constinit] = ACTIONS(8950), - [anon_sym_consteval] = ACTIONS(8950), - [anon_sym_alignas] = ACTIONS(8950), - [anon_sym__Alignas] = ACTIONS(8950), - [sym_primitive_type] = ACTIONS(8950), - [anon_sym_enum] = ACTIONS(8950), - [anon_sym_class] = ACTIONS(8950), - [anon_sym_struct] = ACTIONS(8950), - [anon_sym_union] = ACTIONS(8950), - [anon_sym_or] = ACTIONS(8950), - [anon_sym_and] = ACTIONS(8950), - [anon_sym_typename] = ACTIONS(8950), - [anon_sym_DASH_GT] = ACTIONS(8952), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8950), - [anon_sym_decltype] = ACTIONS(8950), - [anon_sym_explicit] = ACTIONS(8950), - [anon_sym_template] = ACTIONS(8950), - [anon_sym_operator] = ACTIONS(8950), - [anon_sym_friend] = ACTIONS(8950), - [anon_sym_noexcept] = ACTIONS(8950), - [anon_sym_throw] = ACTIONS(8950), - [anon_sym_concept] = ACTIONS(8950), - [anon_sym_LBRACK_COLON] = ACTIONS(8952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7725), + [anon_sym_or_eq] = ACTIONS(7725), + [anon_sym_xor_eq] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7723), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + [anon_sym_DASH_GT_STAR] = ACTIONS(7725), }, [STATE(3007)] = { - [sym_attribute_specifier] = STATE(3554), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7415), - [anon_sym_COMMA] = ACTIONS(7415), - [anon_sym_RPAREN] = ACTIONS(7415), - [anon_sym_LPAREN2] = ACTIONS(7415), - [anon_sym_DASH] = ACTIONS(7413), - [anon_sym_PLUS] = ACTIONS(7413), - [anon_sym_STAR] = ACTIONS(7413), - [anon_sym_SLASH] = ACTIONS(7413), - [anon_sym_PERCENT] = ACTIONS(7413), - [anon_sym_PIPE_PIPE] = ACTIONS(7415), - [anon_sym_AMP_AMP] = ACTIONS(7415), - [anon_sym_PIPE] = ACTIONS(7413), - [anon_sym_CARET] = ACTIONS(7413), - [anon_sym_AMP] = ACTIONS(7413), - [anon_sym_EQ_EQ] = ACTIONS(7415), - [anon_sym_BANG_EQ] = ACTIONS(7415), - [anon_sym_GT] = ACTIONS(7413), - [anon_sym_GT_EQ] = ACTIONS(7415), - [anon_sym_LT_EQ] = ACTIONS(7413), - [anon_sym_LT] = ACTIONS(7413), - [anon_sym_LT_LT] = ACTIONS(7413), - [anon_sym_GT_GT] = ACTIONS(7413), - [anon_sym___extension__] = ACTIONS(7415), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7415), - [anon_sym_LBRACK] = ACTIONS(7415), - [anon_sym_EQ] = ACTIONS(7413), - [anon_sym_const] = ACTIONS(7413), - [anon_sym_constexpr] = ACTIONS(7415), - [anon_sym_volatile] = ACTIONS(7415), - [anon_sym_restrict] = ACTIONS(7415), - [anon_sym___restrict__] = ACTIONS(7415), - [anon_sym__Atomic] = ACTIONS(7415), - [anon_sym__Noreturn] = ACTIONS(7415), - [anon_sym_noreturn] = ACTIONS(7415), - [anon_sym__Nonnull] = ACTIONS(7415), - [anon_sym_mutable] = ACTIONS(7415), - [anon_sym_constinit] = ACTIONS(7415), - [anon_sym_consteval] = ACTIONS(7415), - [anon_sym_alignas] = ACTIONS(7415), - [anon_sym__Alignas] = ACTIONS(7415), - [anon_sym_QMARK] = ACTIONS(7415), - [anon_sym_STAR_EQ] = ACTIONS(7415), - [anon_sym_SLASH_EQ] = ACTIONS(7415), - [anon_sym_PERCENT_EQ] = ACTIONS(7415), - [anon_sym_PLUS_EQ] = ACTIONS(7415), - [anon_sym_DASH_EQ] = ACTIONS(7415), - [anon_sym_LT_LT_EQ] = ACTIONS(7415), - [anon_sym_GT_GT_EQ] = ACTIONS(7415), - [anon_sym_AMP_EQ] = ACTIONS(7415), - [anon_sym_CARET_EQ] = ACTIONS(7415), - [anon_sym_PIPE_EQ] = ACTIONS(7415), - [anon_sym_LT_EQ_GT] = ACTIONS(7415), - [anon_sym_or] = ACTIONS(7415), - [anon_sym_and] = ACTIONS(7415), - [anon_sym_bitor] = ACTIONS(7415), - [anon_sym_xor] = ACTIONS(7415), - [anon_sym_bitand] = ACTIONS(7415), - [anon_sym_not_eq] = ACTIONS(7415), - [anon_sym_DASH_DASH] = ACTIONS(7415), - [anon_sym_PLUS_PLUS] = ACTIONS(7415), - [anon_sym_DOT] = ACTIONS(7413), - [anon_sym_DOT_STAR] = ACTIONS(7415), - [anon_sym_DASH_GT] = ACTIONS(7413), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7415), - [anon_sym_override] = ACTIONS(7415), - [anon_sym_requires] = ACTIONS(7415), - [anon_sym_DASH_GT_STAR] = ACTIONS(7415), + [sym__abstract_declarator] = STATE(6155), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2971), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2071), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2971), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_RPAREN] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(8128), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7367), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(8130), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7367), + [anon_sym_AMP] = ACTIONS(8132), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7367), + [anon_sym_GT_GT] = ACTIONS(7367), + [anon_sym_SEMI] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(7365), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7367), + [anon_sym_RBRACE] = ACTIONS(7367), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7367), + [anon_sym_and] = ACTIONS(7367), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7367), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7367), + [anon_sym_override] = ACTIONS(7367), + [anon_sym_requires] = ACTIONS(7367), + [anon_sym_COLON_RBRACK] = ACTIONS(7367), }, [STATE(3008)] = { - [sym_attribute_specifier] = STATE(3556), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7429), - [anon_sym_COMMA] = ACTIONS(7429), - [anon_sym_RPAREN] = ACTIONS(7429), - [anon_sym_LPAREN2] = ACTIONS(7429), - [anon_sym_DASH] = ACTIONS(7427), - [anon_sym_PLUS] = ACTIONS(7427), - [anon_sym_STAR] = ACTIONS(7427), - [anon_sym_SLASH] = ACTIONS(7427), - [anon_sym_PERCENT] = ACTIONS(7427), - [anon_sym_PIPE_PIPE] = ACTIONS(7429), - [anon_sym_AMP_AMP] = ACTIONS(7429), - [anon_sym_PIPE] = ACTIONS(7427), - [anon_sym_CARET] = ACTIONS(7427), - [anon_sym_AMP] = ACTIONS(7427), - [anon_sym_EQ_EQ] = ACTIONS(7429), - [anon_sym_BANG_EQ] = ACTIONS(7429), - [anon_sym_GT] = ACTIONS(7427), - [anon_sym_GT_EQ] = ACTIONS(7429), - [anon_sym_LT_EQ] = ACTIONS(7427), - [anon_sym_LT] = ACTIONS(7427), - [anon_sym_LT_LT] = ACTIONS(7427), - [anon_sym_GT_GT] = ACTIONS(7427), - [anon_sym___extension__] = ACTIONS(7429), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7429), - [anon_sym_LBRACK] = ACTIONS(7429), - [anon_sym_EQ] = ACTIONS(7427), - [anon_sym_const] = ACTIONS(7427), - [anon_sym_constexpr] = ACTIONS(7429), - [anon_sym_volatile] = ACTIONS(7429), - [anon_sym_restrict] = ACTIONS(7429), - [anon_sym___restrict__] = ACTIONS(7429), - [anon_sym__Atomic] = ACTIONS(7429), - [anon_sym__Noreturn] = ACTIONS(7429), - [anon_sym_noreturn] = ACTIONS(7429), - [anon_sym__Nonnull] = ACTIONS(7429), - [anon_sym_mutable] = ACTIONS(7429), - [anon_sym_constinit] = ACTIONS(7429), - [anon_sym_consteval] = ACTIONS(7429), - [anon_sym_alignas] = ACTIONS(7429), - [anon_sym__Alignas] = ACTIONS(7429), - [anon_sym_QMARK] = ACTIONS(7429), - [anon_sym_STAR_EQ] = ACTIONS(7429), - [anon_sym_SLASH_EQ] = ACTIONS(7429), - [anon_sym_PERCENT_EQ] = ACTIONS(7429), - [anon_sym_PLUS_EQ] = ACTIONS(7429), - [anon_sym_DASH_EQ] = ACTIONS(7429), - [anon_sym_LT_LT_EQ] = ACTIONS(7429), - [anon_sym_GT_GT_EQ] = ACTIONS(7429), - [anon_sym_AMP_EQ] = ACTIONS(7429), - [anon_sym_CARET_EQ] = ACTIONS(7429), - [anon_sym_PIPE_EQ] = ACTIONS(7429), - [anon_sym_LT_EQ_GT] = ACTIONS(7429), - [anon_sym_or] = ACTIONS(7429), - [anon_sym_and] = ACTIONS(7429), - [anon_sym_bitor] = ACTIONS(7429), - [anon_sym_xor] = ACTIONS(7429), - [anon_sym_bitand] = ACTIONS(7429), - [anon_sym_not_eq] = ACTIONS(7429), - [anon_sym_DASH_DASH] = ACTIONS(7429), - [anon_sym_PLUS_PLUS] = ACTIONS(7429), - [anon_sym_DOT] = ACTIONS(7427), - [anon_sym_DOT_STAR] = ACTIONS(7429), - [anon_sym_DASH_GT] = ACTIONS(7427), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7429), - [anon_sym_override] = ACTIONS(7429), - [anon_sym_requires] = ACTIONS(7429), - [anon_sym_DASH_GT_STAR] = ACTIONS(7429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_RPAREN] = ACTIONS(7737), + [anon_sym_LPAREN2] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(7735), + [anon_sym_STAR] = ACTIONS(7735), + [anon_sym_SLASH] = ACTIONS(7735), + [anon_sym_PERCENT] = ACTIONS(7735), + [anon_sym_PIPE_PIPE] = ACTIONS(7737), + [anon_sym_AMP_AMP] = ACTIONS(7737), + [anon_sym_PIPE] = ACTIONS(7735), + [anon_sym_CARET] = ACTIONS(7735), + [anon_sym_AMP] = ACTIONS(7735), + [anon_sym_EQ_EQ] = ACTIONS(7737), + [anon_sym_BANG_EQ] = ACTIONS(7737), + [anon_sym_GT] = ACTIONS(7735), + [anon_sym_GT_EQ] = ACTIONS(7737), + [anon_sym_LT_EQ] = ACTIONS(7735), + [anon_sym_LT] = ACTIONS(7735), + [anon_sym_LT_LT] = ACTIONS(7735), + [anon_sym_GT_GT] = ACTIONS(7735), + [anon_sym___extension__] = ACTIONS(7737), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(7735), + [anon_sym_const] = ACTIONS(7735), + [anon_sym_constexpr] = ACTIONS(7737), + [anon_sym_volatile] = ACTIONS(7737), + [anon_sym_restrict] = ACTIONS(7737), + [anon_sym___restrict__] = ACTIONS(7737), + [anon_sym__Atomic] = ACTIONS(7737), + [anon_sym__Noreturn] = ACTIONS(7737), + [anon_sym_noreturn] = ACTIONS(7737), + [anon_sym__Nonnull] = ACTIONS(7737), + [anon_sym_mutable] = ACTIONS(7737), + [anon_sym_constinit] = ACTIONS(7737), + [anon_sym_consteval] = ACTIONS(7737), + [anon_sym_alignas] = ACTIONS(7737), + [anon_sym__Alignas] = ACTIONS(7737), + [anon_sym_QMARK] = ACTIONS(7737), + [anon_sym_STAR_EQ] = ACTIONS(7737), + [anon_sym_SLASH_EQ] = ACTIONS(7737), + [anon_sym_PERCENT_EQ] = ACTIONS(7737), + [anon_sym_PLUS_EQ] = ACTIONS(7737), + [anon_sym_DASH_EQ] = ACTIONS(7737), + [anon_sym_LT_LT_EQ] = ACTIONS(7737), + [anon_sym_GT_GT_EQ] = ACTIONS(7737), + [anon_sym_AMP_EQ] = ACTIONS(7737), + [anon_sym_CARET_EQ] = ACTIONS(7737), + [anon_sym_PIPE_EQ] = ACTIONS(7737), + [anon_sym_and_eq] = ACTIONS(7737), + [anon_sym_or_eq] = ACTIONS(7737), + [anon_sym_xor_eq] = ACTIONS(7737), + [anon_sym_LT_EQ_GT] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7735), + [anon_sym_and] = ACTIONS(7735), + [anon_sym_bitor] = ACTIONS(7737), + [anon_sym_xor] = ACTIONS(7735), + [anon_sym_bitand] = ACTIONS(7737), + [anon_sym_not_eq] = ACTIONS(7737), + [anon_sym_DASH_DASH] = ACTIONS(7737), + [anon_sym_PLUS_PLUS] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(7735), + [anon_sym_DOT_STAR] = ACTIONS(7737), + [anon_sym_DASH_GT] = ACTIONS(7735), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7737), + [anon_sym_override] = ACTIONS(7737), + [anon_sym_requires] = ACTIONS(7737), + [anon_sym_DASH_GT_STAR] = ACTIONS(7737), }, [STATE(3009)] = { - [sym_identifier] = ACTIONS(8954), - [anon_sym_LPAREN2] = ACTIONS(8956), - [anon_sym_TILDE] = ACTIONS(8956), - [anon_sym_STAR] = ACTIONS(8956), - [anon_sym_PIPE_PIPE] = ACTIONS(8956), - [anon_sym_AMP_AMP] = ACTIONS(8956), - [anon_sym_AMP] = ACTIONS(8954), - [anon_sym___extension__] = ACTIONS(8954), - [anon_sym_virtual] = ACTIONS(8954), - [anon_sym_extern] = ACTIONS(8954), - [anon_sym___attribute__] = ACTIONS(8954), - [anon_sym___attribute] = ACTIONS(8954), - [anon_sym_using] = ACTIONS(8954), - [anon_sym_COLON_COLON] = ACTIONS(8956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8956), - [anon_sym___declspec] = ACTIONS(8954), - [anon_sym___based] = ACTIONS(8954), - [anon_sym___cdecl] = ACTIONS(8954), - [anon_sym___clrcall] = ACTIONS(8954), - [anon_sym___stdcall] = ACTIONS(8954), - [anon_sym___fastcall] = ACTIONS(8954), - [anon_sym___thiscall] = ACTIONS(8954), - [anon_sym___vectorcall] = ACTIONS(8954), - [anon_sym_LBRACE] = ACTIONS(8956), - [anon_sym_signed] = ACTIONS(8954), - [anon_sym_unsigned] = ACTIONS(8954), - [anon_sym_long] = ACTIONS(8954), - [anon_sym_short] = ACTIONS(8954), - [anon_sym_LBRACK] = ACTIONS(8954), - [anon_sym_static] = ACTIONS(8954), - [anon_sym_register] = ACTIONS(8954), - [anon_sym_inline] = ACTIONS(8954), - [anon_sym___inline] = ACTIONS(8954), - [anon_sym___inline__] = ACTIONS(8954), - [anon_sym___forceinline] = ACTIONS(8954), - [anon_sym_thread_local] = ACTIONS(8954), - [anon_sym___thread] = ACTIONS(8954), - [anon_sym_const] = ACTIONS(8954), - [anon_sym_constexpr] = ACTIONS(8954), - [anon_sym_volatile] = ACTIONS(8954), - [anon_sym_restrict] = ACTIONS(8954), - [anon_sym___restrict__] = ACTIONS(8954), - [anon_sym__Atomic] = ACTIONS(8954), - [anon_sym__Noreturn] = ACTIONS(8954), - [anon_sym_noreturn] = ACTIONS(8954), - [anon_sym__Nonnull] = ACTIONS(8954), - [anon_sym_mutable] = ACTIONS(8954), - [anon_sym_constinit] = ACTIONS(8954), - [anon_sym_consteval] = ACTIONS(8954), - [anon_sym_alignas] = ACTIONS(8954), - [anon_sym__Alignas] = ACTIONS(8954), - [sym_primitive_type] = ACTIONS(8954), - [anon_sym_enum] = ACTIONS(8954), - [anon_sym_class] = ACTIONS(8954), - [anon_sym_struct] = ACTIONS(8954), - [anon_sym_union] = ACTIONS(8954), - [anon_sym_or] = ACTIONS(8954), - [anon_sym_and] = ACTIONS(8954), - [anon_sym_typename] = ACTIONS(8954), - [anon_sym_DASH_GT] = ACTIONS(8956), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8954), - [anon_sym_decltype] = ACTIONS(8954), - [anon_sym_explicit] = ACTIONS(8954), - [anon_sym_template] = ACTIONS(8954), - [anon_sym_operator] = ACTIONS(8954), - [anon_sym_friend] = ACTIONS(8954), - [anon_sym_noexcept] = ACTIONS(8954), - [anon_sym_throw] = ACTIONS(8954), - [anon_sym_concept] = ACTIONS(8954), - [anon_sym_LBRACK_COLON] = ACTIONS(8956), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7537), + [anon_sym_COMMA] = ACTIONS(7537), + [anon_sym_LPAREN2] = ACTIONS(7537), + [anon_sym_DASH] = ACTIONS(7535), + [anon_sym_PLUS] = ACTIONS(7535), + [anon_sym_STAR] = ACTIONS(7535), + [anon_sym_SLASH] = ACTIONS(7535), + [anon_sym_PERCENT] = ACTIONS(7535), + [anon_sym_PIPE_PIPE] = ACTIONS(7537), + [anon_sym_AMP_AMP] = ACTIONS(7537), + [anon_sym_PIPE] = ACTIONS(7535), + [anon_sym_CARET] = ACTIONS(7535), + [anon_sym_AMP] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7537), + [anon_sym_BANG_EQ] = ACTIONS(7537), + [anon_sym_GT] = ACTIONS(7535), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_LT_EQ] = ACTIONS(7535), + [anon_sym_LT] = ACTIONS(7535), + [anon_sym_LT_LT] = ACTIONS(7535), + [anon_sym_GT_GT] = ACTIONS(7535), + [anon_sym___extension__] = ACTIONS(7537), + [anon_sym_COLON_COLON] = ACTIONS(7537), + [anon_sym_LBRACE] = ACTIONS(7537), + [anon_sym_LBRACK] = ACTIONS(7537), + [anon_sym_RBRACK] = ACTIONS(7537), + [anon_sym_EQ] = ACTIONS(7535), + [anon_sym_const] = ACTIONS(7535), + [anon_sym_constexpr] = ACTIONS(7537), + [anon_sym_volatile] = ACTIONS(7537), + [anon_sym_restrict] = ACTIONS(7537), + [anon_sym___restrict__] = ACTIONS(7537), + [anon_sym__Atomic] = ACTIONS(7537), + [anon_sym__Noreturn] = ACTIONS(7537), + [anon_sym_noreturn] = ACTIONS(7537), + [anon_sym__Nonnull] = ACTIONS(7537), + [anon_sym_mutable] = ACTIONS(7537), + [anon_sym_constinit] = ACTIONS(7537), + [anon_sym_consteval] = ACTIONS(7537), + [anon_sym_alignas] = ACTIONS(7537), + [anon_sym__Alignas] = ACTIONS(7537), + [anon_sym_QMARK] = ACTIONS(7537), + [anon_sym_STAR_EQ] = ACTIONS(7537), + [anon_sym_SLASH_EQ] = ACTIONS(7537), + [anon_sym_PERCENT_EQ] = ACTIONS(7537), + [anon_sym_PLUS_EQ] = ACTIONS(7537), + [anon_sym_DASH_EQ] = ACTIONS(7537), + [anon_sym_LT_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_GT_EQ] = ACTIONS(7537), + [anon_sym_AMP_EQ] = ACTIONS(7537), + [anon_sym_CARET_EQ] = ACTIONS(7537), + [anon_sym_PIPE_EQ] = ACTIONS(7537), + [anon_sym_and_eq] = ACTIONS(7537), + [anon_sym_or_eq] = ACTIONS(7537), + [anon_sym_xor_eq] = ACTIONS(7537), + [anon_sym_LT_EQ_GT] = ACTIONS(7537), + [anon_sym_or] = ACTIONS(7535), + [anon_sym_and] = ACTIONS(7535), + [anon_sym_bitor] = ACTIONS(7537), + [anon_sym_xor] = ACTIONS(7535), + [anon_sym_bitand] = ACTIONS(7537), + [anon_sym_not_eq] = ACTIONS(7537), + [anon_sym_DASH_DASH] = ACTIONS(7537), + [anon_sym_PLUS_PLUS] = ACTIONS(7537), + [anon_sym_DOT] = ACTIONS(7535), + [anon_sym_DOT_STAR] = ACTIONS(7537), + [anon_sym_DASH_GT] = ACTIONS(7537), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7537), + [anon_sym_override] = ACTIONS(7537), + [anon_sym_requires] = ACTIONS(7537), }, [STATE(3010)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4321), - [sym_ms_pointer_modifier] = STATE(3970), - [sym__abstract_declarator] = STATE(6902), - [sym_abstract_parenthesized_declarator] = STATE(6708), - [sym_abstract_pointer_declarator] = STATE(6708), - [sym_abstract_function_declarator] = STATE(6708), - [sym_abstract_array_declarator] = STATE(6708), - [sym_type_qualifier] = STATE(3986), - [sym_alignas_qualifier] = STATE(3945), - [sym_parameter_list] = STATE(2249), - [sym_abstract_reference_declarator] = STATE(6708), - [sym__function_declarator_seq] = STATE(6709), - [aux_sym__type_definition_type_repeat1] = STATE(3986), - [aux_sym_pointer_declarator_repeat1] = STATE(3970), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8600), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8958), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8960), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8962), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6821), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(8608), - [sym_ms_restrict_modifier] = ACTIONS(8610), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8612), - [sym_ms_signed_ptr_modifier] = ACTIONS(8612), - [anon_sym__unaligned] = ACTIONS(8614), - [anon_sym___unaligned] = ACTIONS(8614), - [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym___restrict__] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym__Noreturn] = ACTIONS(8608), - [anon_sym_noreturn] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym_mutable] = ACTIONS(8608), - [anon_sym_constinit] = ACTIONS(8608), - [anon_sym_consteval] = ACTIONS(8608), - [anon_sym_alignas] = ACTIONS(8620), - [anon_sym__Alignas] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6823), + [sym_ms_unaligned_ptr_modifier] = STATE(4294), + [sym_ms_pointer_modifier] = STATE(4009), + [sym__abstract_declarator] = STATE(6759), + [sym_abstract_parenthesized_declarator] = STATE(6601), + [sym_abstract_pointer_declarator] = STATE(6601), + [sym_abstract_function_declarator] = STATE(6601), + [sym_abstract_array_declarator] = STATE(6601), + [sym_type_qualifier] = STATE(4029), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2244), + [sym_abstract_reference_declarator] = STATE(6601), + [sym__function_declarator_seq] = STATE(6602), + [aux_sym__type_definition_type_repeat1] = STATE(4029), + [aux_sym_pointer_declarator_repeat1] = STATE(4009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8909), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8911), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8913), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8605), + [sym_ms_restrict_modifier] = ACTIONS(8607), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8609), + [sym_ms_signed_ptr_modifier] = ACTIONS(8609), + [anon_sym__unaligned] = ACTIONS(8611), + [anon_sym___unaligned] = ACTIONS(8611), + [anon_sym_LBRACK] = ACTIONS(8613), + [anon_sym_RBRACK] = ACTIONS(6843), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8605), + [anon_sym_volatile] = ACTIONS(8605), + [anon_sym_restrict] = ACTIONS(8605), + [anon_sym___restrict__] = ACTIONS(8605), + [anon_sym__Atomic] = ACTIONS(8605), + [anon_sym__Noreturn] = ACTIONS(8605), + [anon_sym_noreturn] = ACTIONS(8605), + [anon_sym__Nonnull] = ACTIONS(8605), + [anon_sym_mutable] = ACTIONS(8605), + [anon_sym_constinit] = ACTIONS(8605), + [anon_sym_consteval] = ACTIONS(8605), + [anon_sym_alignas] = ACTIONS(8615), + [anon_sym__Alignas] = ACTIONS(8615), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), }, [STATE(3011)] = { - [sym__abstract_declarator] = STATE(6152), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2069), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_RPAREN] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(8111), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(8113), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(8115), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym_SEMI] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(7353), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7355), - [anon_sym_RBRACE] = ACTIONS(7355), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), - [anon_sym_COLON_RBRACK] = ACTIONS(7355), + [sym_identifier] = ACTIONS(7133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [anon_sym_RPAREN] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7135), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7135), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7135), + [anon_sym_GT_GT] = ACTIONS(7135), + [anon_sym_SEMI] = ACTIONS(7135), + [anon_sym___extension__] = ACTIONS(7133), + [anon_sym___attribute__] = ACTIONS(7133), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_COLON] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7135), + [anon_sym___based] = ACTIONS(7133), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_RBRACE] = ACTIONS(7135), + [anon_sym_signed] = ACTIONS(7133), + [anon_sym_unsigned] = ACTIONS(7133), + [anon_sym_long] = ACTIONS(7133), + [anon_sym_short] = ACTIONS(7133), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7133), + [anon_sym_volatile] = ACTIONS(7133), + [anon_sym_restrict] = ACTIONS(7133), + [anon_sym___restrict__] = ACTIONS(7133), + [anon_sym__Atomic] = ACTIONS(7133), + [anon_sym__Noreturn] = ACTIONS(7133), + [anon_sym_noreturn] = ACTIONS(7133), + [anon_sym__Nonnull] = ACTIONS(7133), + [anon_sym_mutable] = ACTIONS(7133), + [anon_sym_constinit] = ACTIONS(7133), + [anon_sym_consteval] = ACTIONS(7133), + [anon_sym_alignas] = ACTIONS(7133), + [anon_sym__Alignas] = ACTIONS(7133), + [sym_primitive_type] = ACTIONS(7133), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7133), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7133), + [anon_sym_not_eq] = ACTIONS(7133), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7133), + [anon_sym_override] = ACTIONS(7133), + [anon_sym_requires] = ACTIONS(7133), + [anon_sym_COLON_RBRACK] = ACTIONS(7135), }, [STATE(3012)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4309), - [sym_ms_pointer_modifier] = STATE(3032), - [sym__abstract_declarator] = STATE(6750), - [sym_abstract_parenthesized_declarator] = STATE(6607), - [sym_abstract_pointer_declarator] = STATE(6607), - [sym_abstract_function_declarator] = STATE(6607), - [sym_abstract_array_declarator] = STATE(6607), - [sym_type_qualifier] = STATE(3969), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2267), - [sym_abstract_reference_declarator] = STATE(6607), - [sym__function_declarator_seq] = STATE(6608), - [aux_sym__type_definition_type_repeat1] = STATE(3969), - [aux_sym_pointer_declarator_repeat1] = STATE(3032), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(8572), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(8964), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(8966), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6859), - [anon_sym_AMP] = ACTIONS(8968), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6859), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6859), - [anon_sym_GT_GT] = ACTIONS(6859), - [anon_sym___extension__] = ACTIONS(8580), - [sym_ms_restrict_modifier] = ACTIONS(8582), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8584), - [sym_ms_signed_ptr_modifier] = ACTIONS(8584), - [anon_sym__unaligned] = ACTIONS(8586), - [anon_sym___unaligned] = ACTIONS(8586), - [anon_sym_LBRACK] = ACTIONS(8588), - [anon_sym_RBRACK] = ACTIONS(6859), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym___restrict__] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym__Noreturn] = ACTIONS(8580), - [anon_sym_noreturn] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym_mutable] = ACTIONS(8580), - [anon_sym_constinit] = ACTIONS(8580), - [anon_sym_consteval] = ACTIONS(8580), - [anon_sym_alignas] = ACTIONS(8590), - [anon_sym__Alignas] = ACTIONS(8590), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6859), - [anon_sym_and] = ACTIONS(6859), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6859), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(8945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8947), + [anon_sym_COMMA] = ACTIONS(8947), + [anon_sym_RPAREN] = ACTIONS(8947), + [aux_sym_preproc_if_token2] = ACTIONS(8947), + [aux_sym_preproc_else_token1] = ACTIONS(8947), + [aux_sym_preproc_elif_token1] = ACTIONS(8945), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8947), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8947), + [anon_sym_LPAREN2] = ACTIONS(8947), + [anon_sym_DASH] = ACTIONS(8945), + [anon_sym_PLUS] = ACTIONS(8945), + [anon_sym_STAR] = ACTIONS(8945), + [anon_sym_SLASH] = ACTIONS(8945), + [anon_sym_PERCENT] = ACTIONS(8945), + [anon_sym_PIPE_PIPE] = ACTIONS(8947), + [anon_sym_AMP_AMP] = ACTIONS(8947), + [anon_sym_PIPE] = ACTIONS(8945), + [anon_sym_CARET] = ACTIONS(8945), + [anon_sym_AMP] = ACTIONS(8945), + [anon_sym_EQ_EQ] = ACTIONS(8947), + [anon_sym_BANG_EQ] = ACTIONS(8947), + [anon_sym_GT] = ACTIONS(8945), + [anon_sym_GT_EQ] = ACTIONS(8947), + [anon_sym_LT_EQ] = ACTIONS(8945), + [anon_sym_LT] = ACTIONS(8945), + [anon_sym_LT_LT] = ACTIONS(8945), + [anon_sym_GT_GT] = ACTIONS(8945), + [anon_sym_SEMI] = ACTIONS(8947), + [anon_sym___attribute__] = ACTIONS(8945), + [anon_sym___attribute] = ACTIONS(8945), + [anon_sym_COLON] = ACTIONS(8945), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8947), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8947), + [anon_sym_RBRACE] = ACTIONS(8947), + [anon_sym_LBRACK] = ACTIONS(8945), + [anon_sym_EQ] = ACTIONS(8945), + [anon_sym_QMARK] = ACTIONS(8947), + [anon_sym_STAR_EQ] = ACTIONS(8947), + [anon_sym_SLASH_EQ] = ACTIONS(8947), + [anon_sym_PERCENT_EQ] = ACTIONS(8947), + [anon_sym_PLUS_EQ] = ACTIONS(8947), + [anon_sym_DASH_EQ] = ACTIONS(8947), + [anon_sym_LT_LT_EQ] = ACTIONS(8947), + [anon_sym_GT_GT_EQ] = ACTIONS(8947), + [anon_sym_AMP_EQ] = ACTIONS(8947), + [anon_sym_CARET_EQ] = ACTIONS(8947), + [anon_sym_PIPE_EQ] = ACTIONS(8947), + [anon_sym_and_eq] = ACTIONS(8945), + [anon_sym_or_eq] = ACTIONS(8945), + [anon_sym_xor_eq] = ACTIONS(8945), + [anon_sym_LT_EQ_GT] = ACTIONS(8947), + [anon_sym_or] = ACTIONS(8945), + [anon_sym_and] = ACTIONS(8945), + [anon_sym_bitor] = ACTIONS(8945), + [anon_sym_xor] = ACTIONS(8945), + [anon_sym_bitand] = ACTIONS(8945), + [anon_sym_not_eq] = ACTIONS(8945), + [anon_sym_DASH_DASH] = ACTIONS(8947), + [anon_sym_PLUS_PLUS] = ACTIONS(8947), + [anon_sym_asm] = ACTIONS(8945), + [anon_sym___asm__] = ACTIONS(8945), + [anon_sym___asm] = ACTIONS(8945), + [anon_sym_DOT] = ACTIONS(8945), + [anon_sym_DOT_STAR] = ACTIONS(8947), + [anon_sym_DASH_GT] = ACTIONS(8947), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8945), + [anon_sym_override] = ACTIONS(8945), + [anon_sym_requires] = ACTIONS(8945), + [anon_sym_COLON_RBRACK] = ACTIONS(8947), }, [STATE(3013)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(4235), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3075), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(8330), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8336), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7870), - [anon_sym_override] = ACTIONS(7870), - [anon_sym_requires] = ACTIONS(7873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7558), + [anon_sym_COMMA] = ACTIONS(7558), + [anon_sym_RPAREN] = ACTIONS(7558), + [anon_sym_LPAREN2] = ACTIONS(7558), + [anon_sym_DASH] = ACTIONS(7556), + [anon_sym_PLUS] = ACTIONS(7556), + [anon_sym_STAR] = ACTIONS(7556), + [anon_sym_SLASH] = ACTIONS(7556), + [anon_sym_PERCENT] = ACTIONS(7556), + [anon_sym_PIPE_PIPE] = ACTIONS(7558), + [anon_sym_AMP_AMP] = ACTIONS(7558), + [anon_sym_PIPE] = ACTIONS(7556), + [anon_sym_CARET] = ACTIONS(7556), + [anon_sym_AMP] = ACTIONS(7556), + [anon_sym_EQ_EQ] = ACTIONS(7558), + [anon_sym_BANG_EQ] = ACTIONS(7558), + [anon_sym_GT] = ACTIONS(7556), + [anon_sym_GT_EQ] = ACTIONS(7558), + [anon_sym_LT_EQ] = ACTIONS(7556), + [anon_sym_LT] = ACTIONS(7556), + [anon_sym_LT_LT] = ACTIONS(7556), + [anon_sym_GT_GT] = ACTIONS(7556), + [anon_sym___extension__] = ACTIONS(7558), + [anon_sym_LBRACE] = ACTIONS(7558), + [anon_sym_LBRACK] = ACTIONS(7558), + [anon_sym_EQ] = ACTIONS(7556), + [anon_sym_const] = ACTIONS(7556), + [anon_sym_constexpr] = ACTIONS(7558), + [anon_sym_volatile] = ACTIONS(7558), + [anon_sym_restrict] = ACTIONS(7558), + [anon_sym___restrict__] = ACTIONS(7558), + [anon_sym__Atomic] = ACTIONS(7558), + [anon_sym__Noreturn] = ACTIONS(7558), + [anon_sym_noreturn] = ACTIONS(7558), + [anon_sym__Nonnull] = ACTIONS(7558), + [anon_sym_mutable] = ACTIONS(7558), + [anon_sym_constinit] = ACTIONS(7558), + [anon_sym_consteval] = ACTIONS(7558), + [anon_sym_alignas] = ACTIONS(7558), + [anon_sym__Alignas] = ACTIONS(7558), + [anon_sym_QMARK] = ACTIONS(7558), + [anon_sym_STAR_EQ] = ACTIONS(7558), + [anon_sym_SLASH_EQ] = ACTIONS(7558), + [anon_sym_PERCENT_EQ] = ACTIONS(7558), + [anon_sym_PLUS_EQ] = ACTIONS(7558), + [anon_sym_DASH_EQ] = ACTIONS(7558), + [anon_sym_LT_LT_EQ] = ACTIONS(7558), + [anon_sym_GT_GT_EQ] = ACTIONS(7558), + [anon_sym_AMP_EQ] = ACTIONS(7558), + [anon_sym_CARET_EQ] = ACTIONS(7558), + [anon_sym_PIPE_EQ] = ACTIONS(7558), + [anon_sym_and_eq] = ACTIONS(7558), + [anon_sym_or_eq] = ACTIONS(7558), + [anon_sym_xor_eq] = ACTIONS(7558), + [anon_sym_LT_EQ_GT] = ACTIONS(7558), + [anon_sym_or] = ACTIONS(7556), + [anon_sym_and] = ACTIONS(7556), + [anon_sym_bitor] = ACTIONS(7558), + [anon_sym_xor] = ACTIONS(7556), + [anon_sym_bitand] = ACTIONS(7558), + [anon_sym_not_eq] = ACTIONS(7558), + [anon_sym_DASH_DASH] = ACTIONS(7558), + [anon_sym_PLUS_PLUS] = ACTIONS(7558), + [anon_sym_DOT] = ACTIONS(7556), + [anon_sym_DOT_STAR] = ACTIONS(7558), + [anon_sym_DASH_GT] = ACTIONS(7556), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7558), + [anon_sym_override] = ACTIONS(7558), + [anon_sym_requires] = ACTIONS(7558), + [anon_sym_DASH_GT_STAR] = ACTIONS(7558), }, [STATE(3014)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(4236), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3076), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(8391), - [anon_sym___attribute] = ACTIONS(8394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8397), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7973), - [anon_sym_override] = ACTIONS(7973), - [anon_sym_requires] = ACTIONS(7976), + [sym_attribute_specifier] = STATE(3582), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7497), + [anon_sym_COMMA] = ACTIONS(7497), + [anon_sym_RPAREN] = ACTIONS(7497), + [anon_sym_LPAREN2] = ACTIONS(7497), + [anon_sym_DASH] = ACTIONS(7495), + [anon_sym_PLUS] = ACTIONS(7495), + [anon_sym_STAR] = ACTIONS(7495), + [anon_sym_SLASH] = ACTIONS(7495), + [anon_sym_PERCENT] = ACTIONS(7495), + [anon_sym_PIPE_PIPE] = ACTIONS(7497), + [anon_sym_AMP_AMP] = ACTIONS(7497), + [anon_sym_PIPE] = ACTIONS(7495), + [anon_sym_CARET] = ACTIONS(7495), + [anon_sym_AMP] = ACTIONS(7495), + [anon_sym_EQ_EQ] = ACTIONS(7497), + [anon_sym_BANG_EQ] = ACTIONS(7497), + [anon_sym_GT] = ACTIONS(7495), + [anon_sym_GT_EQ] = ACTIONS(7497), + [anon_sym_LT_EQ] = ACTIONS(7495), + [anon_sym_LT] = ACTIONS(7495), + [anon_sym_LT_LT] = ACTIONS(7495), + [anon_sym_GT_GT] = ACTIONS(7495), + [anon_sym___extension__] = ACTIONS(7497), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7497), + [anon_sym_LBRACK] = ACTIONS(7497), + [anon_sym_EQ] = ACTIONS(7495), + [anon_sym_const] = ACTIONS(7495), + [anon_sym_constexpr] = ACTIONS(7497), + [anon_sym_volatile] = ACTIONS(7497), + [anon_sym_restrict] = ACTIONS(7497), + [anon_sym___restrict__] = ACTIONS(7497), + [anon_sym__Atomic] = ACTIONS(7497), + [anon_sym__Noreturn] = ACTIONS(7497), + [anon_sym_noreturn] = ACTIONS(7497), + [anon_sym__Nonnull] = ACTIONS(7497), + [anon_sym_mutable] = ACTIONS(7497), + [anon_sym_constinit] = ACTIONS(7497), + [anon_sym_consteval] = ACTIONS(7497), + [anon_sym_alignas] = ACTIONS(7497), + [anon_sym__Alignas] = ACTIONS(7497), + [anon_sym_QMARK] = ACTIONS(7497), + [anon_sym_STAR_EQ] = ACTIONS(7497), + [anon_sym_SLASH_EQ] = ACTIONS(7497), + [anon_sym_PERCENT_EQ] = ACTIONS(7497), + [anon_sym_PLUS_EQ] = ACTIONS(7497), + [anon_sym_DASH_EQ] = ACTIONS(7497), + [anon_sym_LT_LT_EQ] = ACTIONS(7497), + [anon_sym_GT_GT_EQ] = ACTIONS(7497), + [anon_sym_AMP_EQ] = ACTIONS(7497), + [anon_sym_CARET_EQ] = ACTIONS(7497), + [anon_sym_PIPE_EQ] = ACTIONS(7497), + [anon_sym_LT_EQ_GT] = ACTIONS(7497), + [anon_sym_or] = ACTIONS(7497), + [anon_sym_and] = ACTIONS(7497), + [anon_sym_bitor] = ACTIONS(7497), + [anon_sym_xor] = ACTIONS(7497), + [anon_sym_bitand] = ACTIONS(7497), + [anon_sym_not_eq] = ACTIONS(7497), + [anon_sym_DASH_DASH] = ACTIONS(7497), + [anon_sym_PLUS_PLUS] = ACTIONS(7497), + [anon_sym_DOT] = ACTIONS(7495), + [anon_sym_DOT_STAR] = ACTIONS(7497), + [anon_sym_DASH_GT] = ACTIONS(7495), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7497), + [anon_sym_override] = ACTIONS(7497), + [anon_sym_requires] = ACTIONS(7497), + [anon_sym_DASH_GT_STAR] = ACTIONS(7497), }, [STATE(3015)] = { - [sym_identifier] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym___cdecl] = ACTIONS(3163), - [anon_sym___clrcall] = ACTIONS(3163), - [anon_sym___stdcall] = ACTIONS(3163), - [anon_sym___fastcall] = ACTIONS(3163), - [anon_sym___thiscall] = ACTIONS(3163), - [anon_sym___vectorcall] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3163), - [anon_sym_and] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [anon_sym_DASH_GT] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_friend] = ACTIONS(3163), - [anon_sym_noexcept] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_concept] = ACTIONS(3163), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RPAREN] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_PIPE_PIPE] = ACTIONS(6653), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6660), + [anon_sym_CARET] = ACTIONS(6660), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6653), + [anon_sym_BANG_EQ] = ACTIONS(6653), + [anon_sym_GT] = ACTIONS(6660), + [anon_sym_GT_EQ] = ACTIONS(6653), + [anon_sym_LT_EQ] = ACTIONS(6660), + [anon_sym_LT] = ACTIONS(6660), + [anon_sym_LT_LT] = ACTIONS(6660), + [anon_sym_GT_GT] = ACTIONS(6660), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6660), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_STAR_EQ] = ACTIONS(6653), + [anon_sym_SLASH_EQ] = ACTIONS(6653), + [anon_sym_PERCENT_EQ] = ACTIONS(6653), + [anon_sym_PLUS_EQ] = ACTIONS(6653), + [anon_sym_DASH_EQ] = ACTIONS(6653), + [anon_sym_LT_LT_EQ] = ACTIONS(6653), + [anon_sym_GT_GT_EQ] = ACTIONS(6653), + [anon_sym_AMP_EQ] = ACTIONS(6653), + [anon_sym_CARET_EQ] = ACTIONS(6653), + [anon_sym_PIPE_EQ] = ACTIONS(6653), + [anon_sym_and_eq] = ACTIONS(6653), + [anon_sym_or_eq] = ACTIONS(6653), + [anon_sym_xor_eq] = ACTIONS(6653), + [anon_sym_LT_EQ_GT] = ACTIONS(6653), + [anon_sym_or] = ACTIONS(6660), + [anon_sym_and] = ACTIONS(6660), + [anon_sym_bitor] = ACTIONS(6653), + [anon_sym_xor] = ACTIONS(6660), + [anon_sym_bitand] = ACTIONS(6653), + [anon_sym_not_eq] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_DOT] = ACTIONS(6660), + [anon_sym_DOT_STAR] = ACTIONS(6653), + [anon_sym_DASH_GT] = ACTIONS(6660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_DASH_GT_STAR] = ACTIONS(6653), }, [STATE(3016)] = { + [sym__abstract_declarator] = STATE(6149), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2078), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3888), + [sym_identifier] = ACTIONS(7369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [aux_sym_preproc_if_token2] = ACTIONS(7371), + [aux_sym_preproc_else_token1] = ACTIONS(7371), + [aux_sym_preproc_elif_token1] = ACTIONS(7369), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7371), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(8080), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(8082), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(8084), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7369), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7369), + [anon_sym_not_eq] = ACTIONS(7369), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7369), + [anon_sym_override] = ACTIONS(7369), + [anon_sym_requires] = ACTIONS(7369), + }, + [STATE(3017)] = { + [sym__abstract_declarator] = STATE(6152), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3019), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2078), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3019), + [sym_identifier] = ACTIONS(7373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [aux_sym_preproc_if_token2] = ACTIONS(7375), + [aux_sym_preproc_else_token1] = ACTIONS(7375), + [aux_sym_preproc_elif_token1] = ACTIONS(7373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7375), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(8080), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(8082), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(8084), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7373), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7373), + [anon_sym_not_eq] = ACTIONS(7373), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7373), + [anon_sym_override] = ACTIONS(7373), + [anon_sym_requires] = ACTIONS(7373), + }, + [STATE(3018)] = { + [sym__abstract_declarator] = STATE(6162), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2078), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3888), + [sym_identifier] = ACTIONS(6841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [aux_sym_preproc_if_token2] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8080), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8082), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8084), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6841), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6841), + [anon_sym_not_eq] = ACTIONS(6841), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6841), + [anon_sym_override] = ACTIONS(6841), + [anon_sym_requires] = ACTIONS(6841), + }, + [STATE(3019)] = { + [sym__abstract_declarator] = STATE(6154), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2078), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3888), + [sym_identifier] = ACTIONS(7343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [aux_sym_preproc_if_token2] = ACTIONS(7341), + [aux_sym_preproc_else_token1] = ACTIONS(7341), + [aux_sym_preproc_elif_token1] = ACTIONS(7343), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7341), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(8080), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(8082), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(8084), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7343), + [anon_sym_override] = ACTIONS(7343), + [anon_sym_requires] = ACTIONS(7343), + }, + [STATE(3020)] = { + [sym_identifier] = ACTIONS(8949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8951), + [anon_sym_COMMA] = ACTIONS(8951), + [anon_sym_RPAREN] = ACTIONS(8951), + [aux_sym_preproc_if_token2] = ACTIONS(8951), + [aux_sym_preproc_else_token1] = ACTIONS(8951), + [aux_sym_preproc_elif_token1] = ACTIONS(8949), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8951), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8951), + [anon_sym_LPAREN2] = ACTIONS(8951), + [anon_sym_DASH] = ACTIONS(8949), + [anon_sym_PLUS] = ACTIONS(8949), + [anon_sym_STAR] = ACTIONS(8949), + [anon_sym_SLASH] = ACTIONS(8949), + [anon_sym_PERCENT] = ACTIONS(8949), + [anon_sym_PIPE_PIPE] = ACTIONS(8951), + [anon_sym_AMP_AMP] = ACTIONS(8951), + [anon_sym_PIPE] = ACTIONS(8949), + [anon_sym_CARET] = ACTIONS(8949), + [anon_sym_AMP] = ACTIONS(8949), + [anon_sym_EQ_EQ] = ACTIONS(8951), + [anon_sym_BANG_EQ] = ACTIONS(8951), + [anon_sym_GT] = ACTIONS(8949), + [anon_sym_GT_EQ] = ACTIONS(8951), + [anon_sym_LT_EQ] = ACTIONS(8949), + [anon_sym_LT] = ACTIONS(8949), + [anon_sym_LT_LT] = ACTIONS(8949), + [anon_sym_GT_GT] = ACTIONS(8949), + [anon_sym_SEMI] = ACTIONS(8951), + [anon_sym___attribute__] = ACTIONS(8949), + [anon_sym___attribute] = ACTIONS(8949), + [anon_sym_COLON] = ACTIONS(8949), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8951), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8951), + [anon_sym_RBRACE] = ACTIONS(8951), + [anon_sym_LBRACK] = ACTIONS(8949), + [anon_sym_EQ] = ACTIONS(8949), + [anon_sym_QMARK] = ACTIONS(8951), + [anon_sym_STAR_EQ] = ACTIONS(8951), + [anon_sym_SLASH_EQ] = ACTIONS(8951), + [anon_sym_PERCENT_EQ] = ACTIONS(8951), + [anon_sym_PLUS_EQ] = ACTIONS(8951), + [anon_sym_DASH_EQ] = ACTIONS(8951), + [anon_sym_LT_LT_EQ] = ACTIONS(8951), + [anon_sym_GT_GT_EQ] = ACTIONS(8951), + [anon_sym_AMP_EQ] = ACTIONS(8951), + [anon_sym_CARET_EQ] = ACTIONS(8951), + [anon_sym_PIPE_EQ] = ACTIONS(8951), + [anon_sym_and_eq] = ACTIONS(8949), + [anon_sym_or_eq] = ACTIONS(8949), + [anon_sym_xor_eq] = ACTIONS(8949), + [anon_sym_LT_EQ_GT] = ACTIONS(8951), + [anon_sym_or] = ACTIONS(8949), + [anon_sym_and] = ACTIONS(8949), + [anon_sym_bitor] = ACTIONS(8949), + [anon_sym_xor] = ACTIONS(8949), + [anon_sym_bitand] = ACTIONS(8949), + [anon_sym_not_eq] = ACTIONS(8949), + [anon_sym_DASH_DASH] = ACTIONS(8951), + [anon_sym_PLUS_PLUS] = ACTIONS(8951), + [anon_sym_asm] = ACTIONS(8949), + [anon_sym___asm__] = ACTIONS(8949), + [anon_sym___asm] = ACTIONS(8949), + [anon_sym_DOT] = ACTIONS(8949), + [anon_sym_DOT_STAR] = ACTIONS(8951), + [anon_sym_DASH_GT] = ACTIONS(8951), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8949), + [anon_sym_override] = ACTIONS(8949), + [anon_sym_requires] = ACTIONS(8949), + [anon_sym_COLON_RBRACK] = ACTIONS(8951), + }, + [STATE(3021)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_RPAREN] = ACTIONS(7749), + [anon_sym_LPAREN2] = ACTIONS(7749), + [anon_sym_DASH] = ACTIONS(7747), + [anon_sym_PLUS] = ACTIONS(7747), + [anon_sym_STAR] = ACTIONS(7747), + [anon_sym_SLASH] = ACTIONS(7747), + [anon_sym_PERCENT] = ACTIONS(7747), + [anon_sym_PIPE_PIPE] = ACTIONS(7749), + [anon_sym_AMP_AMP] = ACTIONS(7749), + [anon_sym_PIPE] = ACTIONS(7747), + [anon_sym_CARET] = ACTIONS(7747), + [anon_sym_AMP] = ACTIONS(7747), + [anon_sym_EQ_EQ] = ACTIONS(7749), + [anon_sym_BANG_EQ] = ACTIONS(7749), + [anon_sym_GT] = ACTIONS(7747), + [anon_sym_GT_EQ] = ACTIONS(7749), + [anon_sym_LT_EQ] = ACTIONS(7747), + [anon_sym_LT] = ACTIONS(7747), + [anon_sym_LT_LT] = ACTIONS(7747), + [anon_sym_GT_GT] = ACTIONS(7747), + [anon_sym___extension__] = ACTIONS(7749), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(7747), + [anon_sym_const] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7749), + [anon_sym_volatile] = ACTIONS(7749), + [anon_sym_restrict] = ACTIONS(7749), + [anon_sym___restrict__] = ACTIONS(7749), + [anon_sym__Atomic] = ACTIONS(7749), + [anon_sym__Noreturn] = ACTIONS(7749), + [anon_sym_noreturn] = ACTIONS(7749), + [anon_sym__Nonnull] = ACTIONS(7749), + [anon_sym_mutable] = ACTIONS(7749), + [anon_sym_constinit] = ACTIONS(7749), + [anon_sym_consteval] = ACTIONS(7749), + [anon_sym_alignas] = ACTIONS(7749), + [anon_sym__Alignas] = ACTIONS(7749), + [anon_sym_QMARK] = ACTIONS(7749), + [anon_sym_STAR_EQ] = ACTIONS(7749), + [anon_sym_SLASH_EQ] = ACTIONS(7749), + [anon_sym_PERCENT_EQ] = ACTIONS(7749), + [anon_sym_PLUS_EQ] = ACTIONS(7749), + [anon_sym_DASH_EQ] = ACTIONS(7749), + [anon_sym_LT_LT_EQ] = ACTIONS(7749), + [anon_sym_GT_GT_EQ] = ACTIONS(7749), + [anon_sym_AMP_EQ] = ACTIONS(7749), + [anon_sym_CARET_EQ] = ACTIONS(7749), + [anon_sym_PIPE_EQ] = ACTIONS(7749), + [anon_sym_and_eq] = ACTIONS(7749), + [anon_sym_or_eq] = ACTIONS(7749), + [anon_sym_xor_eq] = ACTIONS(7749), + [anon_sym_LT_EQ_GT] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7747), + [anon_sym_and] = ACTIONS(7747), + [anon_sym_bitor] = ACTIONS(7749), + [anon_sym_xor] = ACTIONS(7747), + [anon_sym_bitand] = ACTIONS(7749), + [anon_sym_not_eq] = ACTIONS(7749), + [anon_sym_DASH_DASH] = ACTIONS(7749), + [anon_sym_PLUS_PLUS] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(7747), + [anon_sym_DOT_STAR] = ACTIONS(7749), + [anon_sym_DASH_GT] = ACTIONS(7747), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7749), + [anon_sym_override] = ACTIONS(7749), + [anon_sym_requires] = ACTIONS(7749), + [anon_sym_DASH_GT_STAR] = ACTIONS(7749), + }, + [STATE(3022)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_RPAREN] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7751), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7751), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_EQ_EQ] = ACTIONS(7753), + [anon_sym_BANG_EQ] = ACTIONS(7753), + [anon_sym_GT] = ACTIONS(7751), + [anon_sym_GT_EQ] = ACTIONS(7753), + [anon_sym_LT_EQ] = ACTIONS(7751), + [anon_sym_LT] = ACTIONS(7751), + [anon_sym_LT_LT] = ACTIONS(7751), + [anon_sym_GT_GT] = ACTIONS(7751), + [anon_sym___extension__] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7753), + [anon_sym_volatile] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7753), + [anon_sym___restrict__] = ACTIONS(7753), + [anon_sym__Atomic] = ACTIONS(7753), + [anon_sym__Noreturn] = ACTIONS(7753), + [anon_sym_noreturn] = ACTIONS(7753), + [anon_sym__Nonnull] = ACTIONS(7753), + [anon_sym_mutable] = ACTIONS(7753), + [anon_sym_constinit] = ACTIONS(7753), + [anon_sym_consteval] = ACTIONS(7753), + [anon_sym_alignas] = ACTIONS(7753), + [anon_sym__Alignas] = ACTIONS(7753), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_STAR_EQ] = ACTIONS(7753), + [anon_sym_SLASH_EQ] = ACTIONS(7753), + [anon_sym_PERCENT_EQ] = ACTIONS(7753), + [anon_sym_PLUS_EQ] = ACTIONS(7753), + [anon_sym_DASH_EQ] = ACTIONS(7753), + [anon_sym_LT_LT_EQ] = ACTIONS(7753), + [anon_sym_GT_GT_EQ] = ACTIONS(7753), + [anon_sym_AMP_EQ] = ACTIONS(7753), + [anon_sym_CARET_EQ] = ACTIONS(7753), + [anon_sym_PIPE_EQ] = ACTIONS(7753), + [anon_sym_and_eq] = ACTIONS(7753), + [anon_sym_or_eq] = ACTIONS(7753), + [anon_sym_xor_eq] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7753), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7753), + [anon_sym_not_eq] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_DOT] = ACTIONS(7751), + [anon_sym_DOT_STAR] = ACTIONS(7753), + [anon_sym_DASH_GT] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7753), + [anon_sym_override] = ACTIONS(7753), + [anon_sym_requires] = ACTIONS(7753), + [anon_sym_DASH_GT_STAR] = ACTIONS(7753), + }, + [STATE(3023)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7763), + [anon_sym_COMMA] = ACTIONS(7763), + [anon_sym_RPAREN] = ACTIONS(7763), + [anon_sym_LPAREN2] = ACTIONS(7763), + [anon_sym_DASH] = ACTIONS(7761), + [anon_sym_PLUS] = ACTIONS(7761), + [anon_sym_STAR] = ACTIONS(7761), + [anon_sym_SLASH] = ACTIONS(7761), + [anon_sym_PERCENT] = ACTIONS(7761), + [anon_sym_PIPE_PIPE] = ACTIONS(7763), + [anon_sym_AMP_AMP] = ACTIONS(7763), + [anon_sym_PIPE] = ACTIONS(7761), + [anon_sym_CARET] = ACTIONS(7761), + [anon_sym_AMP] = ACTIONS(7761), + [anon_sym_EQ_EQ] = ACTIONS(7763), + [anon_sym_BANG_EQ] = ACTIONS(7763), + [anon_sym_GT] = ACTIONS(7761), + [anon_sym_GT_EQ] = ACTIONS(7763), + [anon_sym_LT_EQ] = ACTIONS(7761), + [anon_sym_LT] = ACTIONS(7761), + [anon_sym_LT_LT] = ACTIONS(7761), + [anon_sym_GT_GT] = ACTIONS(7761), + [anon_sym___extension__] = ACTIONS(7763), + [anon_sym_LBRACE] = ACTIONS(7763), + [anon_sym_LBRACK] = ACTIONS(7763), + [anon_sym_EQ] = ACTIONS(7761), + [anon_sym_const] = ACTIONS(7761), + [anon_sym_constexpr] = ACTIONS(7763), + [anon_sym_volatile] = ACTIONS(7763), + [anon_sym_restrict] = ACTIONS(7763), + [anon_sym___restrict__] = ACTIONS(7763), + [anon_sym__Atomic] = ACTIONS(7763), + [anon_sym__Noreturn] = ACTIONS(7763), + [anon_sym_noreturn] = ACTIONS(7763), + [anon_sym__Nonnull] = ACTIONS(7763), + [anon_sym_mutable] = ACTIONS(7763), + [anon_sym_constinit] = ACTIONS(7763), + [anon_sym_consteval] = ACTIONS(7763), + [anon_sym_alignas] = ACTIONS(7763), + [anon_sym__Alignas] = ACTIONS(7763), + [anon_sym_QMARK] = ACTIONS(7763), + [anon_sym_STAR_EQ] = ACTIONS(7763), + [anon_sym_SLASH_EQ] = ACTIONS(7763), + [anon_sym_PERCENT_EQ] = ACTIONS(7763), + [anon_sym_PLUS_EQ] = ACTIONS(7763), + [anon_sym_DASH_EQ] = ACTIONS(7763), + [anon_sym_LT_LT_EQ] = ACTIONS(7763), + [anon_sym_GT_GT_EQ] = ACTIONS(7763), + [anon_sym_AMP_EQ] = ACTIONS(7763), + [anon_sym_CARET_EQ] = ACTIONS(7763), + [anon_sym_PIPE_EQ] = ACTIONS(7763), + [anon_sym_and_eq] = ACTIONS(7763), + [anon_sym_or_eq] = ACTIONS(7763), + [anon_sym_xor_eq] = ACTIONS(7763), + [anon_sym_LT_EQ_GT] = ACTIONS(7763), + [anon_sym_or] = ACTIONS(7761), + [anon_sym_and] = ACTIONS(7761), + [anon_sym_bitor] = ACTIONS(7763), + [anon_sym_xor] = ACTIONS(7761), + [anon_sym_bitand] = ACTIONS(7763), + [anon_sym_not_eq] = ACTIONS(7763), + [anon_sym_DASH_DASH] = ACTIONS(7763), + [anon_sym_PLUS_PLUS] = ACTIONS(7763), + [anon_sym_DOT] = ACTIONS(7761), + [anon_sym_DOT_STAR] = ACTIONS(7763), + [anon_sym_DASH_GT] = ACTIONS(7761), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7763), + [anon_sym_override] = ACTIONS(7763), + [anon_sym_requires] = ACTIONS(7763), + [anon_sym_DASH_GT_STAR] = ACTIONS(7763), + }, + [STATE(3024)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7767), + [anon_sym_COMMA] = ACTIONS(7767), + [anon_sym_RPAREN] = ACTIONS(7767), + [anon_sym_LPAREN2] = ACTIONS(7767), + [anon_sym_DASH] = ACTIONS(7765), + [anon_sym_PLUS] = ACTIONS(7765), + [anon_sym_STAR] = ACTIONS(7765), + [anon_sym_SLASH] = ACTIONS(7765), + [anon_sym_PERCENT] = ACTIONS(7765), + [anon_sym_PIPE_PIPE] = ACTIONS(7767), + [anon_sym_AMP_AMP] = ACTIONS(7767), + [anon_sym_PIPE] = ACTIONS(7765), + [anon_sym_CARET] = ACTIONS(7765), + [anon_sym_AMP] = ACTIONS(7765), + [anon_sym_EQ_EQ] = ACTIONS(7767), + [anon_sym_BANG_EQ] = ACTIONS(7767), + [anon_sym_GT] = ACTIONS(7765), + [anon_sym_GT_EQ] = ACTIONS(7767), + [anon_sym_LT_EQ] = ACTIONS(7765), + [anon_sym_LT] = ACTIONS(7765), + [anon_sym_LT_LT] = ACTIONS(7765), + [anon_sym_GT_GT] = ACTIONS(7765), + [anon_sym___extension__] = ACTIONS(7767), + [anon_sym_LBRACE] = ACTIONS(7767), + [anon_sym_LBRACK] = ACTIONS(7767), + [anon_sym_EQ] = ACTIONS(7765), + [anon_sym_const] = ACTIONS(7765), + [anon_sym_constexpr] = ACTIONS(7767), + [anon_sym_volatile] = ACTIONS(7767), + [anon_sym_restrict] = ACTIONS(7767), + [anon_sym___restrict__] = ACTIONS(7767), + [anon_sym__Atomic] = ACTIONS(7767), + [anon_sym__Noreturn] = ACTIONS(7767), + [anon_sym_noreturn] = ACTIONS(7767), + [anon_sym__Nonnull] = ACTIONS(7767), + [anon_sym_mutable] = ACTIONS(7767), + [anon_sym_constinit] = ACTIONS(7767), + [anon_sym_consteval] = ACTIONS(7767), + [anon_sym_alignas] = ACTIONS(7767), + [anon_sym__Alignas] = ACTIONS(7767), + [anon_sym_QMARK] = ACTIONS(7767), + [anon_sym_STAR_EQ] = ACTIONS(7767), + [anon_sym_SLASH_EQ] = ACTIONS(7767), + [anon_sym_PERCENT_EQ] = ACTIONS(7767), + [anon_sym_PLUS_EQ] = ACTIONS(7767), + [anon_sym_DASH_EQ] = ACTIONS(7767), + [anon_sym_LT_LT_EQ] = ACTIONS(7767), + [anon_sym_GT_GT_EQ] = ACTIONS(7767), + [anon_sym_AMP_EQ] = ACTIONS(7767), + [anon_sym_CARET_EQ] = ACTIONS(7767), + [anon_sym_PIPE_EQ] = ACTIONS(7767), + [anon_sym_and_eq] = ACTIONS(7767), + [anon_sym_or_eq] = ACTIONS(7767), + [anon_sym_xor_eq] = ACTIONS(7767), + [anon_sym_LT_EQ_GT] = ACTIONS(7767), + [anon_sym_or] = ACTIONS(7765), + [anon_sym_and] = ACTIONS(7765), + [anon_sym_bitor] = ACTIONS(7767), + [anon_sym_xor] = ACTIONS(7765), + [anon_sym_bitand] = ACTIONS(7767), + [anon_sym_not_eq] = ACTIONS(7767), + [anon_sym_DASH_DASH] = ACTIONS(7767), + [anon_sym_PLUS_PLUS] = ACTIONS(7767), + [anon_sym_DOT] = ACTIONS(7765), + [anon_sym_DOT_STAR] = ACTIONS(7767), + [anon_sym_DASH_GT] = ACTIONS(7765), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7767), + [anon_sym_override] = ACTIONS(7767), + [anon_sym_requires] = ACTIONS(7767), + [anon_sym_DASH_GT_STAR] = ACTIONS(7767), + }, + [STATE(3025)] = { + [sym_template_argument_list] = STATE(3755), + [aux_sym_sized_type_specifier_repeat1] = STATE(3274), + [sym_identifier] = ACTIONS(7357), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [aux_sym_preproc_if_token2] = ACTIONS(7359), + [aux_sym_preproc_else_token1] = ACTIONS(7359), + [aux_sym_preproc_elif_token1] = ACTIONS(7357), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7359), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7357), + [anon_sym___attribute__] = ACTIONS(7357), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6764), + [anon_sym_unsigned] = ACTIONS(6764), + [anon_sym_long] = ACTIONS(6764), + [anon_sym_short] = ACTIONS(6764), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_RBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7357), + [anon_sym_volatile] = ACTIONS(7357), + [anon_sym_restrict] = ACTIONS(7357), + [anon_sym___restrict__] = ACTIONS(7357), + [anon_sym__Atomic] = ACTIONS(7357), + [anon_sym__Noreturn] = ACTIONS(7357), + [anon_sym_noreturn] = ACTIONS(7357), + [anon_sym__Nonnull] = ACTIONS(7357), + [anon_sym_mutable] = ACTIONS(7357), + [anon_sym_constinit] = ACTIONS(7357), + [anon_sym_consteval] = ACTIONS(7357), + [anon_sym_alignas] = ACTIONS(7357), + [anon_sym__Alignas] = ACTIONS(7357), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7357), + [anon_sym_and] = ACTIONS(7357), + [anon_sym_bitor] = ACTIONS(7357), + [anon_sym_xor] = ACTIONS(7357), + [anon_sym_bitand] = ACTIONS(7357), + [anon_sym_not_eq] = ACTIONS(7357), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7357), + [anon_sym_override] = ACTIONS(7357), + [anon_sym_requires] = ACTIONS(7357), + }, + [STATE(3026)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), + [anon_sym_COMMA] = ACTIONS(7777), + [anon_sym_RPAREN] = ACTIONS(7777), + [anon_sym_LPAREN2] = ACTIONS(7777), + [anon_sym_DASH] = ACTIONS(7775), + [anon_sym_PLUS] = ACTIONS(7775), + [anon_sym_STAR] = ACTIONS(7775), + [anon_sym_SLASH] = ACTIONS(7775), + [anon_sym_PERCENT] = ACTIONS(7775), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_CARET] = ACTIONS(7775), + [anon_sym_AMP] = ACTIONS(7775), + [anon_sym_EQ_EQ] = ACTIONS(7777), + [anon_sym_BANG_EQ] = ACTIONS(7777), + [anon_sym_GT] = ACTIONS(7775), + [anon_sym_GT_EQ] = ACTIONS(7777), + [anon_sym_LT_EQ] = ACTIONS(7775), + [anon_sym_LT] = ACTIONS(7775), + [anon_sym_LT_LT] = ACTIONS(7775), + [anon_sym_GT_GT] = ACTIONS(7775), + [anon_sym___extension__] = ACTIONS(7777), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7777), + [anon_sym_volatile] = ACTIONS(7777), + [anon_sym_restrict] = ACTIONS(7777), + [anon_sym___restrict__] = ACTIONS(7777), + [anon_sym__Atomic] = ACTIONS(7777), + [anon_sym__Noreturn] = ACTIONS(7777), + [anon_sym_noreturn] = ACTIONS(7777), + [anon_sym__Nonnull] = ACTIONS(7777), + [anon_sym_mutable] = ACTIONS(7777), + [anon_sym_constinit] = ACTIONS(7777), + [anon_sym_consteval] = ACTIONS(7777), + [anon_sym_alignas] = ACTIONS(7777), + [anon_sym__Alignas] = ACTIONS(7777), + [anon_sym_QMARK] = ACTIONS(7777), + [anon_sym_STAR_EQ] = ACTIONS(7777), + [anon_sym_SLASH_EQ] = ACTIONS(7777), + [anon_sym_PERCENT_EQ] = ACTIONS(7777), + [anon_sym_PLUS_EQ] = ACTIONS(7777), + [anon_sym_DASH_EQ] = ACTIONS(7777), + [anon_sym_LT_LT_EQ] = ACTIONS(7777), + [anon_sym_GT_GT_EQ] = ACTIONS(7777), + [anon_sym_AMP_EQ] = ACTIONS(7777), + [anon_sym_CARET_EQ] = ACTIONS(7777), + [anon_sym_PIPE_EQ] = ACTIONS(7777), + [anon_sym_and_eq] = ACTIONS(7777), + [anon_sym_or_eq] = ACTIONS(7777), + [anon_sym_xor_eq] = ACTIONS(7777), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7777), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7777), + [anon_sym_not_eq] = ACTIONS(7777), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(7775), + [anon_sym_DOT_STAR] = ACTIONS(7777), + [anon_sym_DASH_GT] = ACTIONS(7775), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7777), + [anon_sym_override] = ACTIONS(7777), + [anon_sym_requires] = ACTIONS(7777), + [anon_sym_DASH_GT_STAR] = ACTIONS(7777), + }, + [STATE(3027)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), [anon_sym_COMMA] = ACTIONS(7781), [anon_sym_RPAREN] = ACTIONS(7781), @@ -394952,1395 +395602,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7781), [anon_sym_DASH_GT_STAR] = ACTIONS(7781), }, - [STATE(3017)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(4237), - [sym__function_postfix] = STATE(3675), - [sym_trailing_return_type] = STATE(3077), - [sym_requires_clause] = STATE(3675), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___attribute__] = ACTIONS(8970), - [anon_sym___attribute] = ACTIONS(8973), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8422), - [anon_sym_or_eq] = ACTIONS(8422), - [anon_sym_xor_eq] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8976), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8458), - [anon_sym_override] = ACTIONS(8458), - [anon_sym_requires] = ACTIONS(8461), - }, - [STATE(3018)] = { - [sym_identifier] = ACTIONS(8979), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8981), - [anon_sym_COMMA] = ACTIONS(8981), - [anon_sym_RPAREN] = ACTIONS(8981), - [aux_sym_preproc_if_token2] = ACTIONS(8981), - [aux_sym_preproc_else_token1] = ACTIONS(8981), - [aux_sym_preproc_elif_token1] = ACTIONS(8979), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8981), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8981), - [anon_sym_LPAREN2] = ACTIONS(8981), - [anon_sym_DASH] = ACTIONS(8979), - [anon_sym_PLUS] = ACTIONS(8979), - [anon_sym_STAR] = ACTIONS(8979), - [anon_sym_SLASH] = ACTIONS(8979), - [anon_sym_PERCENT] = ACTIONS(8979), - [anon_sym_PIPE_PIPE] = ACTIONS(8981), - [anon_sym_AMP_AMP] = ACTIONS(8981), - [anon_sym_PIPE] = ACTIONS(8979), - [anon_sym_CARET] = ACTIONS(8979), - [anon_sym_AMP] = ACTIONS(8979), - [anon_sym_EQ_EQ] = ACTIONS(8981), - [anon_sym_BANG_EQ] = ACTIONS(8981), - [anon_sym_GT] = ACTIONS(8979), - [anon_sym_GT_EQ] = ACTIONS(8981), - [anon_sym_LT_EQ] = ACTIONS(8979), - [anon_sym_LT] = ACTIONS(8979), - [anon_sym_LT_LT] = ACTIONS(8979), - [anon_sym_GT_GT] = ACTIONS(8979), - [anon_sym_SEMI] = ACTIONS(8981), - [anon_sym___attribute__] = ACTIONS(8979), - [anon_sym___attribute] = ACTIONS(8979), - [anon_sym_COLON] = ACTIONS(8979), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8981), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8981), - [anon_sym_RBRACE] = ACTIONS(8981), - [anon_sym_LBRACK] = ACTIONS(8979), - [anon_sym_EQ] = ACTIONS(8979), - [anon_sym_QMARK] = ACTIONS(8981), - [anon_sym_STAR_EQ] = ACTIONS(8981), - [anon_sym_SLASH_EQ] = ACTIONS(8981), - [anon_sym_PERCENT_EQ] = ACTIONS(8981), - [anon_sym_PLUS_EQ] = ACTIONS(8981), - [anon_sym_DASH_EQ] = ACTIONS(8981), - [anon_sym_LT_LT_EQ] = ACTIONS(8981), - [anon_sym_GT_GT_EQ] = ACTIONS(8981), - [anon_sym_AMP_EQ] = ACTIONS(8981), - [anon_sym_CARET_EQ] = ACTIONS(8981), - [anon_sym_PIPE_EQ] = ACTIONS(8981), - [anon_sym_and_eq] = ACTIONS(8979), - [anon_sym_or_eq] = ACTIONS(8979), - [anon_sym_xor_eq] = ACTIONS(8979), - [anon_sym_LT_EQ_GT] = ACTIONS(8981), - [anon_sym_or] = ACTIONS(8979), - [anon_sym_and] = ACTIONS(8979), - [anon_sym_bitor] = ACTIONS(8979), - [anon_sym_xor] = ACTIONS(8979), - [anon_sym_bitand] = ACTIONS(8979), - [anon_sym_not_eq] = ACTIONS(8979), - [anon_sym_DASH_DASH] = ACTIONS(8981), - [anon_sym_PLUS_PLUS] = ACTIONS(8981), - [anon_sym_asm] = ACTIONS(8979), - [anon_sym___asm__] = ACTIONS(8979), - [anon_sym___asm] = ACTIONS(8979), - [anon_sym_DOT] = ACTIONS(8979), - [anon_sym_DOT_STAR] = ACTIONS(8981), - [anon_sym_DASH_GT] = ACTIONS(8981), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8979), - [anon_sym_override] = ACTIONS(8979), - [anon_sym_requires] = ACTIONS(8979), - [anon_sym_COLON_RBRACK] = ACTIONS(8981), - }, - [STATE(3019)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym__function_attributes_end] = STATE(4356), - [sym__function_postfix] = STATE(5066), - [sym_trailing_return_type] = STATE(4471), - [sym_requires_clause] = STATE(5066), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8424), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8424), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8422), - [anon_sym_or_eq] = ACTIONS(8422), - [anon_sym_xor_eq] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8983), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8986), - [anon_sym_override] = ACTIONS(8986), - [anon_sym_GT2] = ACTIONS(8422), - [anon_sym_requires] = ACTIONS(8989), - }, - [STATE(3020)] = { - [sym_attribute_specifier] = STATE(3559), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), - [anon_sym_COMMA] = ACTIONS(7399), - [anon_sym_RPAREN] = ACTIONS(7399), - [anon_sym_LPAREN2] = ACTIONS(7399), - [anon_sym_DASH] = ACTIONS(7397), - [anon_sym_PLUS] = ACTIONS(7397), - [anon_sym_STAR] = ACTIONS(7397), - [anon_sym_SLASH] = ACTIONS(7397), - [anon_sym_PERCENT] = ACTIONS(7397), - [anon_sym_PIPE_PIPE] = ACTIONS(7399), - [anon_sym_AMP_AMP] = ACTIONS(7399), - [anon_sym_PIPE] = ACTIONS(7397), - [anon_sym_CARET] = ACTIONS(7397), - [anon_sym_AMP] = ACTIONS(7397), - [anon_sym_EQ_EQ] = ACTIONS(7399), - [anon_sym_BANG_EQ] = ACTIONS(7399), - [anon_sym_GT] = ACTIONS(7397), - [anon_sym_GT_EQ] = ACTIONS(7399), - [anon_sym_LT_EQ] = ACTIONS(7397), - [anon_sym_LT] = ACTIONS(7397), - [anon_sym_LT_LT] = ACTIONS(7397), - [anon_sym_GT_GT] = ACTIONS(7397), - [anon_sym___extension__] = ACTIONS(7399), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7399), - [anon_sym_LBRACK] = ACTIONS(7399), - [anon_sym_EQ] = ACTIONS(7397), - [anon_sym_const] = ACTIONS(7397), - [anon_sym_constexpr] = ACTIONS(7399), - [anon_sym_volatile] = ACTIONS(7399), - [anon_sym_restrict] = ACTIONS(7399), - [anon_sym___restrict__] = ACTIONS(7399), - [anon_sym__Atomic] = ACTIONS(7399), - [anon_sym__Noreturn] = ACTIONS(7399), - [anon_sym_noreturn] = ACTIONS(7399), - [anon_sym__Nonnull] = ACTIONS(7399), - [anon_sym_mutable] = ACTIONS(7399), - [anon_sym_constinit] = ACTIONS(7399), - [anon_sym_consteval] = ACTIONS(7399), - [anon_sym_alignas] = ACTIONS(7399), - [anon_sym__Alignas] = ACTIONS(7399), - [anon_sym_QMARK] = ACTIONS(7399), - [anon_sym_STAR_EQ] = ACTIONS(7399), - [anon_sym_SLASH_EQ] = ACTIONS(7399), - [anon_sym_PERCENT_EQ] = ACTIONS(7399), - [anon_sym_PLUS_EQ] = ACTIONS(7399), - [anon_sym_DASH_EQ] = ACTIONS(7399), - [anon_sym_LT_LT_EQ] = ACTIONS(7399), - [anon_sym_GT_GT_EQ] = ACTIONS(7399), - [anon_sym_AMP_EQ] = ACTIONS(7399), - [anon_sym_CARET_EQ] = ACTIONS(7399), - [anon_sym_PIPE_EQ] = ACTIONS(7399), - [anon_sym_LT_EQ_GT] = ACTIONS(7399), - [anon_sym_or] = ACTIONS(7399), - [anon_sym_and] = ACTIONS(7399), - [anon_sym_bitor] = ACTIONS(7399), - [anon_sym_xor] = ACTIONS(7399), - [anon_sym_bitand] = ACTIONS(7399), - [anon_sym_not_eq] = ACTIONS(7399), - [anon_sym_DASH_DASH] = ACTIONS(7399), - [anon_sym_PLUS_PLUS] = ACTIONS(7399), - [anon_sym_DOT] = ACTIONS(7397), - [anon_sym_DOT_STAR] = ACTIONS(7399), - [anon_sym_DASH_GT] = ACTIONS(7397), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7399), - [anon_sym_override] = ACTIONS(7399), - [anon_sym_requires] = ACTIONS(7399), - [anon_sym_DASH_GT_STAR] = ACTIONS(7399), - }, - [STATE(3021)] = { - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym___based] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(7223), - [anon_sym_unsigned] = ACTIONS(7223), - [anon_sym_long] = ACTIONS(7223), - [anon_sym_short] = ACTIONS(7223), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [sym_primitive_type] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), - }, - [STATE(3022)] = { - [sym_identifier] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym___attribute] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym___cdecl] = ACTIONS(3155), - [anon_sym___clrcall] = ACTIONS(3155), - [anon_sym___stdcall] = ACTIONS(3155), - [anon_sym___fastcall] = ACTIONS(3155), - [anon_sym___thiscall] = ACTIONS(3155), - [anon_sym___vectorcall] = ACTIONS(3155), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym__Nonnull] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym__Alignas] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3155), - [anon_sym_and] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [anon_sym_DASH_GT] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_friend] = ACTIONS(3155), - [anon_sym_noexcept] = ACTIONS(3155), - [anon_sym_throw] = ACTIONS(3155), - [anon_sym_concept] = ACTIONS(3155), - [anon_sym_LBRACK_COLON] = ACTIONS(3153), - }, - [STATE(3023)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), - [anon_sym_COMMA] = ACTIONS(7761), - [anon_sym_RPAREN] = ACTIONS(7761), - [anon_sym_LPAREN2] = ACTIONS(7761), - [anon_sym_DASH] = ACTIONS(7759), - [anon_sym_PLUS] = ACTIONS(7759), - [anon_sym_STAR] = ACTIONS(7759), - [anon_sym_SLASH] = ACTIONS(7759), - [anon_sym_PERCENT] = ACTIONS(7759), - [anon_sym_PIPE_PIPE] = ACTIONS(7761), - [anon_sym_AMP_AMP] = ACTIONS(7761), - [anon_sym_PIPE] = ACTIONS(7759), - [anon_sym_CARET] = ACTIONS(7759), - [anon_sym_AMP] = ACTIONS(7759), - [anon_sym_EQ_EQ] = ACTIONS(7761), - [anon_sym_BANG_EQ] = ACTIONS(7761), - [anon_sym_GT] = ACTIONS(7759), - [anon_sym_GT_EQ] = ACTIONS(7761), - [anon_sym_LT_EQ] = ACTIONS(7759), - [anon_sym_LT] = ACTIONS(7759), - [anon_sym_LT_LT] = ACTIONS(7759), - [anon_sym_GT_GT] = ACTIONS(7759), - [anon_sym___extension__] = ACTIONS(7761), - [anon_sym_LBRACE] = ACTIONS(7761), - [anon_sym_LBRACK] = ACTIONS(7761), - [anon_sym_EQ] = ACTIONS(7759), - [anon_sym_const] = ACTIONS(7759), - [anon_sym_constexpr] = ACTIONS(7761), - [anon_sym_volatile] = ACTIONS(7761), - [anon_sym_restrict] = ACTIONS(7761), - [anon_sym___restrict__] = ACTIONS(7761), - [anon_sym__Atomic] = ACTIONS(7761), - [anon_sym__Noreturn] = ACTIONS(7761), - [anon_sym_noreturn] = ACTIONS(7761), - [anon_sym__Nonnull] = ACTIONS(7761), - [anon_sym_mutable] = ACTIONS(7761), - [anon_sym_constinit] = ACTIONS(7761), - [anon_sym_consteval] = ACTIONS(7761), - [anon_sym_alignas] = ACTIONS(7761), - [anon_sym__Alignas] = ACTIONS(7761), - [anon_sym_QMARK] = ACTIONS(7761), - [anon_sym_STAR_EQ] = ACTIONS(7761), - [anon_sym_SLASH_EQ] = ACTIONS(7761), - [anon_sym_PERCENT_EQ] = ACTIONS(7761), - [anon_sym_PLUS_EQ] = ACTIONS(7761), - [anon_sym_DASH_EQ] = ACTIONS(7761), - [anon_sym_LT_LT_EQ] = ACTIONS(7761), - [anon_sym_GT_GT_EQ] = ACTIONS(7761), - [anon_sym_AMP_EQ] = ACTIONS(7761), - [anon_sym_CARET_EQ] = ACTIONS(7761), - [anon_sym_PIPE_EQ] = ACTIONS(7761), - [anon_sym_and_eq] = ACTIONS(7761), - [anon_sym_or_eq] = ACTIONS(7761), - [anon_sym_xor_eq] = ACTIONS(7761), - [anon_sym_LT_EQ_GT] = ACTIONS(7761), - [anon_sym_or] = ACTIONS(7759), - [anon_sym_and] = ACTIONS(7759), - [anon_sym_bitor] = ACTIONS(7761), - [anon_sym_xor] = ACTIONS(7759), - [anon_sym_bitand] = ACTIONS(7761), - [anon_sym_not_eq] = ACTIONS(7761), - [anon_sym_DASH_DASH] = ACTIONS(7761), - [anon_sym_PLUS_PLUS] = ACTIONS(7761), - [anon_sym_DOT] = ACTIONS(7759), - [anon_sym_DOT_STAR] = ACTIONS(7761), - [anon_sym_DASH_GT] = ACTIONS(7759), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7761), - [anon_sym_override] = ACTIONS(7761), - [anon_sym_requires] = ACTIONS(7761), - [anon_sym_DASH_GT_STAR] = ACTIONS(7761), - }, - [STATE(3024)] = { - [sym_identifier] = ACTIONS(8992), - [anon_sym_LPAREN2] = ACTIONS(8994), - [anon_sym_TILDE] = ACTIONS(8994), - [anon_sym_STAR] = ACTIONS(8994), - [anon_sym_PIPE_PIPE] = ACTIONS(8994), - [anon_sym_AMP_AMP] = ACTIONS(8994), - [anon_sym_AMP] = ACTIONS(8992), - [anon_sym___extension__] = ACTIONS(8992), - [anon_sym_virtual] = ACTIONS(8992), - [anon_sym_extern] = ACTIONS(8992), - [anon_sym___attribute__] = ACTIONS(8992), - [anon_sym___attribute] = ACTIONS(8992), - [anon_sym_using] = ACTIONS(8992), - [anon_sym_COLON_COLON] = ACTIONS(8994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8994), - [anon_sym___declspec] = ACTIONS(8992), - [anon_sym___based] = ACTIONS(8992), - [anon_sym___cdecl] = ACTIONS(8992), - [anon_sym___clrcall] = ACTIONS(8992), - [anon_sym___stdcall] = ACTIONS(8992), - [anon_sym___fastcall] = ACTIONS(8992), - [anon_sym___thiscall] = ACTIONS(8992), - [anon_sym___vectorcall] = ACTIONS(8992), - [anon_sym_LBRACE] = ACTIONS(8994), - [anon_sym_signed] = ACTIONS(8992), - [anon_sym_unsigned] = ACTIONS(8992), - [anon_sym_long] = ACTIONS(8992), - [anon_sym_short] = ACTIONS(8992), - [anon_sym_LBRACK] = ACTIONS(8992), - [anon_sym_static] = ACTIONS(8992), - [anon_sym_register] = ACTIONS(8992), - [anon_sym_inline] = ACTIONS(8992), - [anon_sym___inline] = ACTIONS(8992), - [anon_sym___inline__] = ACTIONS(8992), - [anon_sym___forceinline] = ACTIONS(8992), - [anon_sym_thread_local] = ACTIONS(8992), - [anon_sym___thread] = ACTIONS(8992), - [anon_sym_const] = ACTIONS(8992), - [anon_sym_constexpr] = ACTIONS(8992), - [anon_sym_volatile] = ACTIONS(8992), - [anon_sym_restrict] = ACTIONS(8992), - [anon_sym___restrict__] = ACTIONS(8992), - [anon_sym__Atomic] = ACTIONS(8992), - [anon_sym__Noreturn] = ACTIONS(8992), - [anon_sym_noreturn] = ACTIONS(8992), - [anon_sym__Nonnull] = ACTIONS(8992), - [anon_sym_mutable] = ACTIONS(8992), - [anon_sym_constinit] = ACTIONS(8992), - [anon_sym_consteval] = ACTIONS(8992), - [anon_sym_alignas] = ACTIONS(8992), - [anon_sym__Alignas] = ACTIONS(8992), - [sym_primitive_type] = ACTIONS(8992), - [anon_sym_enum] = ACTIONS(8992), - [anon_sym_class] = ACTIONS(8992), - [anon_sym_struct] = ACTIONS(8992), - [anon_sym_union] = ACTIONS(8992), - [anon_sym_or] = ACTIONS(8992), - [anon_sym_and] = ACTIONS(8992), - [anon_sym_typename] = ACTIONS(8992), - [anon_sym_DASH_GT] = ACTIONS(8994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8992), - [anon_sym_decltype] = ACTIONS(8992), - [anon_sym_explicit] = ACTIONS(8992), - [anon_sym_template] = ACTIONS(8992), - [anon_sym_operator] = ACTIONS(8992), - [anon_sym_friend] = ACTIONS(8992), - [anon_sym_noexcept] = ACTIONS(8992), - [anon_sym_throw] = ACTIONS(8992), - [anon_sym_concept] = ACTIONS(8992), - [anon_sym_LBRACK_COLON] = ACTIONS(8994), - }, - [STATE(3025)] = { - [sym_attribute_specifier] = STATE(3573), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7437), - [anon_sym_COMMA] = ACTIONS(7437), - [anon_sym_RPAREN] = ACTIONS(7437), - [anon_sym_LPAREN2] = ACTIONS(7437), - [anon_sym_DASH] = ACTIONS(7435), - [anon_sym_PLUS] = ACTIONS(7435), - [anon_sym_STAR] = ACTIONS(7435), - [anon_sym_SLASH] = ACTIONS(7435), - [anon_sym_PERCENT] = ACTIONS(7435), - [anon_sym_PIPE_PIPE] = ACTIONS(7437), - [anon_sym_AMP_AMP] = ACTIONS(7437), - [anon_sym_PIPE] = ACTIONS(7435), - [anon_sym_CARET] = ACTIONS(7435), - [anon_sym_AMP] = ACTIONS(7435), - [anon_sym_EQ_EQ] = ACTIONS(7437), - [anon_sym_BANG_EQ] = ACTIONS(7437), - [anon_sym_GT] = ACTIONS(7435), - [anon_sym_GT_EQ] = ACTIONS(7437), - [anon_sym_LT_EQ] = ACTIONS(7435), - [anon_sym_LT] = ACTIONS(7435), - [anon_sym_LT_LT] = ACTIONS(7435), - [anon_sym_GT_GT] = ACTIONS(7435), - [anon_sym___extension__] = ACTIONS(7437), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7437), - [anon_sym_LBRACK] = ACTIONS(7437), - [anon_sym_EQ] = ACTIONS(7435), - [anon_sym_const] = ACTIONS(7435), - [anon_sym_constexpr] = ACTIONS(7437), - [anon_sym_volatile] = ACTIONS(7437), - [anon_sym_restrict] = ACTIONS(7437), - [anon_sym___restrict__] = ACTIONS(7437), - [anon_sym__Atomic] = ACTIONS(7437), - [anon_sym__Noreturn] = ACTIONS(7437), - [anon_sym_noreturn] = ACTIONS(7437), - [anon_sym__Nonnull] = ACTIONS(7437), - [anon_sym_mutable] = ACTIONS(7437), - [anon_sym_constinit] = ACTIONS(7437), - [anon_sym_consteval] = ACTIONS(7437), - [anon_sym_alignas] = ACTIONS(7437), - [anon_sym__Alignas] = ACTIONS(7437), - [anon_sym_QMARK] = ACTIONS(7437), - [anon_sym_STAR_EQ] = ACTIONS(7437), - [anon_sym_SLASH_EQ] = ACTIONS(7437), - [anon_sym_PERCENT_EQ] = ACTIONS(7437), - [anon_sym_PLUS_EQ] = ACTIONS(7437), - [anon_sym_DASH_EQ] = ACTIONS(7437), - [anon_sym_LT_LT_EQ] = ACTIONS(7437), - [anon_sym_GT_GT_EQ] = ACTIONS(7437), - [anon_sym_AMP_EQ] = ACTIONS(7437), - [anon_sym_CARET_EQ] = ACTIONS(7437), - [anon_sym_PIPE_EQ] = ACTIONS(7437), - [anon_sym_LT_EQ_GT] = ACTIONS(7437), - [anon_sym_or] = ACTIONS(7437), - [anon_sym_and] = ACTIONS(7437), - [anon_sym_bitor] = ACTIONS(7437), - [anon_sym_xor] = ACTIONS(7437), - [anon_sym_bitand] = ACTIONS(7437), - [anon_sym_not_eq] = ACTIONS(7437), - [anon_sym_DASH_DASH] = ACTIONS(7437), - [anon_sym_PLUS_PLUS] = ACTIONS(7437), - [anon_sym_DOT] = ACTIONS(7435), - [anon_sym_DOT_STAR] = ACTIONS(7437), - [anon_sym_DASH_GT] = ACTIONS(7435), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7437), - [anon_sym_override] = ACTIONS(7437), - [anon_sym_requires] = ACTIONS(7437), - [anon_sym_DASH_GT_STAR] = ACTIONS(7437), - }, - [STATE(3026)] = { - [sym_attribute_specifier] = STATE(3577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7523), - [anon_sym_COMMA] = ACTIONS(7523), - [anon_sym_RPAREN] = ACTIONS(7523), - [anon_sym_LPAREN2] = ACTIONS(7523), - [anon_sym_DASH] = ACTIONS(7521), - [anon_sym_PLUS] = ACTIONS(7521), - [anon_sym_STAR] = ACTIONS(7521), - [anon_sym_SLASH] = ACTIONS(7521), - [anon_sym_PERCENT] = ACTIONS(7521), - [anon_sym_PIPE_PIPE] = ACTIONS(7523), - [anon_sym_AMP_AMP] = ACTIONS(7523), - [anon_sym_PIPE] = ACTIONS(7521), - [anon_sym_CARET] = ACTIONS(7521), - [anon_sym_AMP] = ACTIONS(7521), - [anon_sym_EQ_EQ] = ACTIONS(7523), - [anon_sym_BANG_EQ] = ACTIONS(7523), - [anon_sym_GT] = ACTIONS(7521), - [anon_sym_GT_EQ] = ACTIONS(7523), - [anon_sym_LT_EQ] = ACTIONS(7521), - [anon_sym_LT] = ACTIONS(7521), - [anon_sym_LT_LT] = ACTIONS(7521), - [anon_sym_GT_GT] = ACTIONS(7521), - [anon_sym___extension__] = ACTIONS(7523), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7523), - [anon_sym_LBRACK] = ACTIONS(7523), - [anon_sym_EQ] = ACTIONS(7521), - [anon_sym_const] = ACTIONS(7521), - [anon_sym_constexpr] = ACTIONS(7523), - [anon_sym_volatile] = ACTIONS(7523), - [anon_sym_restrict] = ACTIONS(7523), - [anon_sym___restrict__] = ACTIONS(7523), - [anon_sym__Atomic] = ACTIONS(7523), - [anon_sym__Noreturn] = ACTIONS(7523), - [anon_sym_noreturn] = ACTIONS(7523), - [anon_sym__Nonnull] = ACTIONS(7523), - [anon_sym_mutable] = ACTIONS(7523), - [anon_sym_constinit] = ACTIONS(7523), - [anon_sym_consteval] = ACTIONS(7523), - [anon_sym_alignas] = ACTIONS(7523), - [anon_sym__Alignas] = ACTIONS(7523), - [anon_sym_QMARK] = ACTIONS(7523), - [anon_sym_STAR_EQ] = ACTIONS(7523), - [anon_sym_SLASH_EQ] = ACTIONS(7523), - [anon_sym_PERCENT_EQ] = ACTIONS(7523), - [anon_sym_PLUS_EQ] = ACTIONS(7523), - [anon_sym_DASH_EQ] = ACTIONS(7523), - [anon_sym_LT_LT_EQ] = ACTIONS(7523), - [anon_sym_GT_GT_EQ] = ACTIONS(7523), - [anon_sym_AMP_EQ] = ACTIONS(7523), - [anon_sym_CARET_EQ] = ACTIONS(7523), - [anon_sym_PIPE_EQ] = ACTIONS(7523), - [anon_sym_LT_EQ_GT] = ACTIONS(7523), - [anon_sym_or] = ACTIONS(7523), - [anon_sym_and] = ACTIONS(7523), - [anon_sym_bitor] = ACTIONS(7523), - [anon_sym_xor] = ACTIONS(7523), - [anon_sym_bitand] = ACTIONS(7523), - [anon_sym_not_eq] = ACTIONS(7523), - [anon_sym_DASH_DASH] = ACTIONS(7523), - [anon_sym_PLUS_PLUS] = ACTIONS(7523), - [anon_sym_DOT] = ACTIONS(7521), - [anon_sym_DOT_STAR] = ACTIONS(7523), - [anon_sym_DASH_GT] = ACTIONS(7521), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7523), - [anon_sym_override] = ACTIONS(7523), - [anon_sym_requires] = ACTIONS(7523), - [anon_sym_DASH_GT_STAR] = ACTIONS(7523), - }, - [STATE(3027)] = { - [sym_identifier] = ACTIONS(8996), - [anon_sym_LPAREN2] = ACTIONS(8998), - [anon_sym_TILDE] = ACTIONS(8998), - [anon_sym_STAR] = ACTIONS(8998), - [anon_sym_PIPE_PIPE] = ACTIONS(8998), - [anon_sym_AMP_AMP] = ACTIONS(8998), - [anon_sym_AMP] = ACTIONS(8996), - [anon_sym___extension__] = ACTIONS(8996), - [anon_sym_virtual] = ACTIONS(8996), - [anon_sym_extern] = ACTIONS(8996), - [anon_sym___attribute__] = ACTIONS(8996), - [anon_sym___attribute] = ACTIONS(8996), - [anon_sym_using] = ACTIONS(8996), - [anon_sym_COLON_COLON] = ACTIONS(8998), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8998), - [anon_sym___declspec] = ACTIONS(8996), - [anon_sym___based] = ACTIONS(8996), - [anon_sym___cdecl] = ACTIONS(8996), - [anon_sym___clrcall] = ACTIONS(8996), - [anon_sym___stdcall] = ACTIONS(8996), - [anon_sym___fastcall] = ACTIONS(8996), - [anon_sym___thiscall] = ACTIONS(8996), - [anon_sym___vectorcall] = ACTIONS(8996), - [anon_sym_LBRACE] = ACTIONS(8998), - [anon_sym_signed] = ACTIONS(8996), - [anon_sym_unsigned] = ACTIONS(8996), - [anon_sym_long] = ACTIONS(8996), - [anon_sym_short] = ACTIONS(8996), - [anon_sym_LBRACK] = ACTIONS(8996), - [anon_sym_static] = ACTIONS(8996), - [anon_sym_register] = ACTIONS(8996), - [anon_sym_inline] = ACTIONS(8996), - [anon_sym___inline] = ACTIONS(8996), - [anon_sym___inline__] = ACTIONS(8996), - [anon_sym___forceinline] = ACTIONS(8996), - [anon_sym_thread_local] = ACTIONS(8996), - [anon_sym___thread] = ACTIONS(8996), - [anon_sym_const] = ACTIONS(8996), - [anon_sym_constexpr] = ACTIONS(8996), - [anon_sym_volatile] = ACTIONS(8996), - [anon_sym_restrict] = ACTIONS(8996), - [anon_sym___restrict__] = ACTIONS(8996), - [anon_sym__Atomic] = ACTIONS(8996), - [anon_sym__Noreturn] = ACTIONS(8996), - [anon_sym_noreturn] = ACTIONS(8996), - [anon_sym__Nonnull] = ACTIONS(8996), - [anon_sym_mutable] = ACTIONS(8996), - [anon_sym_constinit] = ACTIONS(8996), - [anon_sym_consteval] = ACTIONS(8996), - [anon_sym_alignas] = ACTIONS(8996), - [anon_sym__Alignas] = ACTIONS(8996), - [sym_primitive_type] = ACTIONS(8996), - [anon_sym_enum] = ACTIONS(8996), - [anon_sym_class] = ACTIONS(8996), - [anon_sym_struct] = ACTIONS(8996), - [anon_sym_union] = ACTIONS(8996), - [anon_sym_or] = ACTIONS(8996), - [anon_sym_and] = ACTIONS(8996), - [anon_sym_typename] = ACTIONS(8996), - [anon_sym_DASH_GT] = ACTIONS(8998), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8996), - [anon_sym_decltype] = ACTIONS(8996), - [anon_sym_explicit] = ACTIONS(8996), - [anon_sym_template] = ACTIONS(8996), - [anon_sym_operator] = ACTIONS(8996), - [anon_sym_friend] = ACTIONS(8996), - [anon_sym_noexcept] = ACTIONS(8996), - [anon_sym_throw] = ACTIONS(8996), - [anon_sym_concept] = ACTIONS(8996), - [anon_sym_LBRACK_COLON] = ACTIONS(8998), - }, [STATE(3028)] = { - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_RPAREN] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7090), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(7085), - [anon_sym_LT_LT] = ACTIONS(7090), - [anon_sym_GT_GT] = ACTIONS(7090), - [anon_sym_SEMI] = ACTIONS(7090), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7090), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7090), - [anon_sym___based] = ACTIONS(7085), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7090), - [anon_sym_signed] = ACTIONS(7085), - [anon_sym_unsigned] = ACTIONS(7085), - [anon_sym_long] = ACTIONS(7085), - [anon_sym_short] = ACTIONS(7085), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [sym_primitive_type] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7085), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7085), - [anon_sym_not_eq] = ACTIONS(7085), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7085), - [anon_sym_override] = ACTIONS(7085), - [anon_sym_requires] = ACTIONS(7085), - [anon_sym_COLON_RBRACK] = ACTIONS(7090), + [sym_attribute_specifier] = STATE(3533), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7503), + [anon_sym_COMMA] = ACTIONS(7503), + [anon_sym_RPAREN] = ACTIONS(7503), + [anon_sym_LPAREN2] = ACTIONS(7503), + [anon_sym_DASH] = ACTIONS(7501), + [anon_sym_PLUS] = ACTIONS(7501), + [anon_sym_STAR] = ACTIONS(7501), + [anon_sym_SLASH] = ACTIONS(7501), + [anon_sym_PERCENT] = ACTIONS(7501), + [anon_sym_PIPE_PIPE] = ACTIONS(7503), + [anon_sym_AMP_AMP] = ACTIONS(7503), + [anon_sym_PIPE] = ACTIONS(7501), + [anon_sym_CARET] = ACTIONS(7501), + [anon_sym_AMP] = ACTIONS(7501), + [anon_sym_EQ_EQ] = ACTIONS(7503), + [anon_sym_BANG_EQ] = ACTIONS(7503), + [anon_sym_GT] = ACTIONS(7501), + [anon_sym_GT_EQ] = ACTIONS(7503), + [anon_sym_LT_EQ] = ACTIONS(7501), + [anon_sym_LT] = ACTIONS(7501), + [anon_sym_LT_LT] = ACTIONS(7501), + [anon_sym_GT_GT] = ACTIONS(7501), + [anon_sym___extension__] = ACTIONS(7503), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7503), + [anon_sym_LBRACK] = ACTIONS(7503), + [anon_sym_EQ] = ACTIONS(7501), + [anon_sym_const] = ACTIONS(7501), + [anon_sym_constexpr] = ACTIONS(7503), + [anon_sym_volatile] = ACTIONS(7503), + [anon_sym_restrict] = ACTIONS(7503), + [anon_sym___restrict__] = ACTIONS(7503), + [anon_sym__Atomic] = ACTIONS(7503), + [anon_sym__Noreturn] = ACTIONS(7503), + [anon_sym_noreturn] = ACTIONS(7503), + [anon_sym__Nonnull] = ACTIONS(7503), + [anon_sym_mutable] = ACTIONS(7503), + [anon_sym_constinit] = ACTIONS(7503), + [anon_sym_consteval] = ACTIONS(7503), + [anon_sym_alignas] = ACTIONS(7503), + [anon_sym__Alignas] = ACTIONS(7503), + [anon_sym_QMARK] = ACTIONS(7503), + [anon_sym_STAR_EQ] = ACTIONS(7503), + [anon_sym_SLASH_EQ] = ACTIONS(7503), + [anon_sym_PERCENT_EQ] = ACTIONS(7503), + [anon_sym_PLUS_EQ] = ACTIONS(7503), + [anon_sym_DASH_EQ] = ACTIONS(7503), + [anon_sym_LT_LT_EQ] = ACTIONS(7503), + [anon_sym_GT_GT_EQ] = ACTIONS(7503), + [anon_sym_AMP_EQ] = ACTIONS(7503), + [anon_sym_CARET_EQ] = ACTIONS(7503), + [anon_sym_PIPE_EQ] = ACTIONS(7503), + [anon_sym_LT_EQ_GT] = ACTIONS(7503), + [anon_sym_or] = ACTIONS(7503), + [anon_sym_and] = ACTIONS(7503), + [anon_sym_bitor] = ACTIONS(7503), + [anon_sym_xor] = ACTIONS(7503), + [anon_sym_bitand] = ACTIONS(7503), + [anon_sym_not_eq] = ACTIONS(7503), + [anon_sym_DASH_DASH] = ACTIONS(7503), + [anon_sym_PLUS_PLUS] = ACTIONS(7503), + [anon_sym_DOT] = ACTIONS(7501), + [anon_sym_DOT_STAR] = ACTIONS(7503), + [anon_sym_DASH_GT] = ACTIONS(7501), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7503), + [anon_sym_override] = ACTIONS(7503), + [anon_sym_requires] = ACTIONS(7503), + [anon_sym_DASH_GT_STAR] = ACTIONS(7503), }, [STATE(3029)] = { - [sym_virtual_specifier] = STATE(3433), - [sym__function_postfix] = STATE(3675), - [sym_requires_clause] = STATE(3675), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(8424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_RPAREN] = ACTIONS(8422), - [aux_sym_preproc_if_token2] = ACTIONS(8422), - [aux_sym_preproc_else_token1] = ACTIONS(8422), - [aux_sym_preproc_elif_token1] = ACTIONS(8424), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8422), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___attribute__] = ACTIONS(8424), - [anon_sym___attribute] = ACTIONS(8424), - [anon_sym_COLON] = ACTIONS(8424), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8422), - [anon_sym_RBRACE] = ACTIONS(8422), - [anon_sym_LBRACK] = ACTIONS(8422), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8424), - [anon_sym_or_eq] = ACTIONS(8424), - [anon_sym_xor_eq] = ACTIONS(8424), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8424), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8424), - [anon_sym_not_eq] = ACTIONS(8424), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8422), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_requires] = ACTIONS(6508), - [anon_sym_COLON_RBRACK] = ACTIONS(8422), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym___based] = ACTIONS(7246), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(7246), + [anon_sym_unsigned] = ACTIONS(7246), + [anon_sym_long] = ACTIONS(7246), + [anon_sym_short] = ACTIONS(7246), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [sym_primitive_type] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7246), + [anon_sym_override] = ACTIONS(7246), + [anon_sym_requires] = ACTIONS(7246), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), }, [STATE(3030)] = { - [sym_attribute_specifier] = STATE(3578), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7533), - [anon_sym_COMMA] = ACTIONS(7533), - [anon_sym_RPAREN] = ACTIONS(7533), - [anon_sym_LPAREN2] = ACTIONS(7533), - [anon_sym_DASH] = ACTIONS(7531), - [anon_sym_PLUS] = ACTIONS(7531), - [anon_sym_STAR] = ACTIONS(7531), - [anon_sym_SLASH] = ACTIONS(7531), - [anon_sym_PERCENT] = ACTIONS(7531), - [anon_sym_PIPE_PIPE] = ACTIONS(7533), - [anon_sym_AMP_AMP] = ACTIONS(7533), - [anon_sym_PIPE] = ACTIONS(7531), - [anon_sym_CARET] = ACTIONS(7531), - [anon_sym_AMP] = ACTIONS(7531), - [anon_sym_EQ_EQ] = ACTIONS(7533), - [anon_sym_BANG_EQ] = ACTIONS(7533), - [anon_sym_GT] = ACTIONS(7531), - [anon_sym_GT_EQ] = ACTIONS(7533), - [anon_sym_LT_EQ] = ACTIONS(7531), - [anon_sym_LT] = ACTIONS(7531), - [anon_sym_LT_LT] = ACTIONS(7531), - [anon_sym_GT_GT] = ACTIONS(7531), - [anon_sym___extension__] = ACTIONS(7533), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7533), - [anon_sym_LBRACK] = ACTIONS(7533), - [anon_sym_EQ] = ACTIONS(7531), - [anon_sym_const] = ACTIONS(7531), - [anon_sym_constexpr] = ACTIONS(7533), - [anon_sym_volatile] = ACTIONS(7533), - [anon_sym_restrict] = ACTIONS(7533), - [anon_sym___restrict__] = ACTIONS(7533), - [anon_sym__Atomic] = ACTIONS(7533), - [anon_sym__Noreturn] = ACTIONS(7533), - [anon_sym_noreturn] = ACTIONS(7533), - [anon_sym__Nonnull] = ACTIONS(7533), - [anon_sym_mutable] = ACTIONS(7533), - [anon_sym_constinit] = ACTIONS(7533), - [anon_sym_consteval] = ACTIONS(7533), - [anon_sym_alignas] = ACTIONS(7533), - [anon_sym__Alignas] = ACTIONS(7533), - [anon_sym_QMARK] = ACTIONS(7533), - [anon_sym_STAR_EQ] = ACTIONS(7533), - [anon_sym_SLASH_EQ] = ACTIONS(7533), - [anon_sym_PERCENT_EQ] = ACTIONS(7533), - [anon_sym_PLUS_EQ] = ACTIONS(7533), - [anon_sym_DASH_EQ] = ACTIONS(7533), - [anon_sym_LT_LT_EQ] = ACTIONS(7533), - [anon_sym_GT_GT_EQ] = ACTIONS(7533), - [anon_sym_AMP_EQ] = ACTIONS(7533), - [anon_sym_CARET_EQ] = ACTIONS(7533), - [anon_sym_PIPE_EQ] = ACTIONS(7533), - [anon_sym_LT_EQ_GT] = ACTIONS(7533), - [anon_sym_or] = ACTIONS(7533), - [anon_sym_and] = ACTIONS(7533), - [anon_sym_bitor] = ACTIONS(7533), - [anon_sym_xor] = ACTIONS(7533), - [anon_sym_bitand] = ACTIONS(7533), - [anon_sym_not_eq] = ACTIONS(7533), - [anon_sym_DASH_DASH] = ACTIONS(7533), - [anon_sym_PLUS_PLUS] = ACTIONS(7533), - [anon_sym_DOT] = ACTIONS(7531), - [anon_sym_DOT_STAR] = ACTIONS(7533), - [anon_sym_DASH_GT] = ACTIONS(7531), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7533), - [anon_sym_override] = ACTIONS(7533), - [anon_sym_requires] = ACTIONS(7533), - [anon_sym_DASH_GT_STAR] = ACTIONS(7533), + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7122), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7122), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(7117), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_GT_GT] = ACTIONS(7122), + [anon_sym_SEMI] = ACTIONS(7122), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7122), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7122), + [anon_sym___based] = ACTIONS(7117), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_RBRACE] = ACTIONS(7122), + [anon_sym_signed] = ACTIONS(7117), + [anon_sym_unsigned] = ACTIONS(7117), + [anon_sym_long] = ACTIONS(7117), + [anon_sym_short] = ACTIONS(7117), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [sym_primitive_type] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7117), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7117), + [anon_sym_not_eq] = ACTIONS(7117), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7117), + [anon_sym_override] = ACTIONS(7117), + [anon_sym_requires] = ACTIONS(7117), + [anon_sym_COLON_RBRACK] = ACTIONS(7122), }, [STATE(3031)] = { - [sym_decltype_auto] = STATE(3593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8871), - [anon_sym_decltype] = ACTIONS(6962), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(3032)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4309), - [sym_ms_pointer_modifier] = STATE(3965), - [sym__abstract_declarator] = STATE(6772), - [sym_abstract_parenthesized_declarator] = STATE(6607), - [sym_abstract_pointer_declarator] = STATE(6607), - [sym_abstract_function_declarator] = STATE(6607), - [sym_abstract_array_declarator] = STATE(6607), - [sym_type_qualifier] = STATE(3959), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2267), - [sym_abstract_reference_declarator] = STATE(6607), - [sym__function_declarator_seq] = STATE(6608), - [aux_sym__type_definition_type_repeat1] = STATE(3959), - [aux_sym_pointer_declarator_repeat1] = STATE(3965), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8572), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8964), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8966), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8968), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8580), - [sym_ms_restrict_modifier] = ACTIONS(8582), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8584), - [sym_ms_signed_ptr_modifier] = ACTIONS(8584), - [anon_sym__unaligned] = ACTIONS(8586), - [anon_sym___unaligned] = ACTIONS(8586), - [anon_sym_LBRACK] = ACTIONS(8588), - [anon_sym_RBRACK] = ACTIONS(6823), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym___restrict__] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym__Noreturn] = ACTIONS(8580), - [anon_sym_noreturn] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym_mutable] = ACTIONS(8580), - [anon_sym_constinit] = ACTIONS(8580), - [anon_sym_consteval] = ACTIONS(8580), - [anon_sym_alignas] = ACTIONS(8590), - [anon_sym__Alignas] = ACTIONS(8590), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - }, - [STATE(3033)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), - [anon_sym_COMMA] = ACTIONS(7641), - [anon_sym_RPAREN] = ACTIONS(7641), - [anon_sym_LPAREN2] = ACTIONS(7641), - [anon_sym_DASH] = ACTIONS(7639), - [anon_sym_PLUS] = ACTIONS(7639), - [anon_sym_STAR] = ACTIONS(7639), - [anon_sym_SLASH] = ACTIONS(7639), - [anon_sym_PERCENT] = ACTIONS(7639), - [anon_sym_PIPE_PIPE] = ACTIONS(7641), - [anon_sym_AMP_AMP] = ACTIONS(7641), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_CARET] = ACTIONS(7639), - [anon_sym_AMP] = ACTIONS(7639), - [anon_sym_EQ_EQ] = ACTIONS(7641), - [anon_sym_BANG_EQ] = ACTIONS(7641), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_EQ] = ACTIONS(7641), - [anon_sym_LT_EQ] = ACTIONS(7639), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_LT_LT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(7639), - [anon_sym___extension__] = ACTIONS(7641), - [anon_sym_LBRACE] = ACTIONS(7641), - [anon_sym_LBRACK] = ACTIONS(7641), - [anon_sym_EQ] = ACTIONS(7639), - [anon_sym_const] = ACTIONS(7639), - [anon_sym_constexpr] = ACTIONS(7641), - [anon_sym_volatile] = ACTIONS(7641), - [anon_sym_restrict] = ACTIONS(7641), - [anon_sym___restrict__] = ACTIONS(7641), - [anon_sym__Atomic] = ACTIONS(7641), - [anon_sym__Noreturn] = ACTIONS(7641), - [anon_sym_noreturn] = ACTIONS(7641), - [anon_sym__Nonnull] = ACTIONS(7641), - [anon_sym_mutable] = ACTIONS(7641), - [anon_sym_constinit] = ACTIONS(7641), - [anon_sym_consteval] = ACTIONS(7641), - [anon_sym_alignas] = ACTIONS(7641), - [anon_sym__Alignas] = ACTIONS(7641), - [anon_sym_QMARK] = ACTIONS(7641), - [anon_sym_STAR_EQ] = ACTIONS(7641), - [anon_sym_SLASH_EQ] = ACTIONS(7641), - [anon_sym_PERCENT_EQ] = ACTIONS(7641), - [anon_sym_PLUS_EQ] = ACTIONS(7641), - [anon_sym_DASH_EQ] = ACTIONS(7641), - [anon_sym_LT_LT_EQ] = ACTIONS(7641), - [anon_sym_GT_GT_EQ] = ACTIONS(7641), - [anon_sym_AMP_EQ] = ACTIONS(7641), - [anon_sym_CARET_EQ] = ACTIONS(7641), - [anon_sym_PIPE_EQ] = ACTIONS(7641), - [anon_sym_and_eq] = ACTIONS(7641), - [anon_sym_or_eq] = ACTIONS(7641), - [anon_sym_xor_eq] = ACTIONS(7641), - [anon_sym_LT_EQ_GT] = ACTIONS(7641), - [anon_sym_or] = ACTIONS(7639), - [anon_sym_and] = ACTIONS(7639), - [anon_sym_bitor] = ACTIONS(7641), - [anon_sym_xor] = ACTIONS(7639), - [anon_sym_bitand] = ACTIONS(7641), - [anon_sym_not_eq] = ACTIONS(7641), - [anon_sym_DASH_DASH] = ACTIONS(7641), - [anon_sym_PLUS_PLUS] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(7639), - [anon_sym_DOT_STAR] = ACTIONS(7641), - [anon_sym_DASH_GT] = ACTIONS(7639), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7641), - [anon_sym_requires] = ACTIONS(7641), - [anon_sym_DASH_GT_STAR] = ACTIONS(7641), - }, - [STATE(3034)] = { - [sym_identifier] = ACTIONS(8992), - [anon_sym_LPAREN2] = ACTIONS(8994), - [anon_sym_TILDE] = ACTIONS(8994), - [anon_sym_STAR] = ACTIONS(8994), - [anon_sym_PIPE_PIPE] = ACTIONS(8994), - [anon_sym_AMP_AMP] = ACTIONS(8994), - [anon_sym_AMP] = ACTIONS(8992), - [anon_sym___extension__] = ACTIONS(8992), - [anon_sym_virtual] = ACTIONS(8992), - [anon_sym_extern] = ACTIONS(8992), - [anon_sym___attribute__] = ACTIONS(8992), - [anon_sym___attribute] = ACTIONS(8992), - [anon_sym_using] = ACTIONS(8992), - [anon_sym_COLON_COLON] = ACTIONS(8994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8994), - [anon_sym___declspec] = ACTIONS(8992), - [anon_sym___based] = ACTIONS(8992), - [anon_sym___cdecl] = ACTIONS(8992), - [anon_sym___clrcall] = ACTIONS(8992), - [anon_sym___stdcall] = ACTIONS(8992), - [anon_sym___fastcall] = ACTIONS(8992), - [anon_sym___thiscall] = ACTIONS(8992), - [anon_sym___vectorcall] = ACTIONS(8992), - [anon_sym_LBRACE] = ACTIONS(8994), - [anon_sym_signed] = ACTIONS(8992), - [anon_sym_unsigned] = ACTIONS(8992), - [anon_sym_long] = ACTIONS(8992), - [anon_sym_short] = ACTIONS(8992), - [anon_sym_LBRACK] = ACTIONS(8992), - [anon_sym_static] = ACTIONS(8992), - [anon_sym_register] = ACTIONS(8992), - [anon_sym_inline] = ACTIONS(8992), - [anon_sym___inline] = ACTIONS(8992), - [anon_sym___inline__] = ACTIONS(8992), - [anon_sym___forceinline] = ACTIONS(8992), - [anon_sym_thread_local] = ACTIONS(8992), - [anon_sym___thread] = ACTIONS(8992), - [anon_sym_const] = ACTIONS(8992), - [anon_sym_constexpr] = ACTIONS(8992), - [anon_sym_volatile] = ACTIONS(8992), - [anon_sym_restrict] = ACTIONS(8992), - [anon_sym___restrict__] = ACTIONS(8992), - [anon_sym__Atomic] = ACTIONS(8992), - [anon_sym__Noreturn] = ACTIONS(8992), - [anon_sym_noreturn] = ACTIONS(8992), - [anon_sym__Nonnull] = ACTIONS(8992), - [anon_sym_mutable] = ACTIONS(8992), - [anon_sym_constinit] = ACTIONS(8992), - [anon_sym_consteval] = ACTIONS(8992), - [anon_sym_alignas] = ACTIONS(8992), - [anon_sym__Alignas] = ACTIONS(8992), - [sym_primitive_type] = ACTIONS(8992), - [anon_sym_enum] = ACTIONS(8992), - [anon_sym_class] = ACTIONS(8992), - [anon_sym_struct] = ACTIONS(8992), - [anon_sym_union] = ACTIONS(8992), - [anon_sym_or] = ACTIONS(8992), - [anon_sym_and] = ACTIONS(8992), - [anon_sym_typename] = ACTIONS(8992), - [anon_sym_DASH_GT] = ACTIONS(8994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8992), - [anon_sym_decltype] = ACTIONS(8992), - [anon_sym_explicit] = ACTIONS(8992), - [anon_sym_template] = ACTIONS(8992), - [anon_sym_operator] = ACTIONS(8992), - [anon_sym_friend] = ACTIONS(8992), - [anon_sym_noexcept] = ACTIONS(8992), - [anon_sym_throw] = ACTIONS(8992), - [anon_sym_concept] = ACTIONS(8992), - [anon_sym_LBRACK_COLON] = ACTIONS(8994), - }, - [STATE(3035)] = { - [sym_attribute_specifier] = STATE(3574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7455), - [anon_sym_COMMA] = ACTIONS(7455), - [anon_sym_RPAREN] = ACTIONS(7455), - [anon_sym_LPAREN2] = ACTIONS(7455), - [anon_sym_DASH] = ACTIONS(7453), - [anon_sym_PLUS] = ACTIONS(7453), - [anon_sym_STAR] = ACTIONS(7453), - [anon_sym_SLASH] = ACTIONS(7453), - [anon_sym_PERCENT] = ACTIONS(7453), - [anon_sym_PIPE_PIPE] = ACTIONS(7455), - [anon_sym_AMP_AMP] = ACTIONS(7455), - [anon_sym_PIPE] = ACTIONS(7453), - [anon_sym_CARET] = ACTIONS(7453), - [anon_sym_AMP] = ACTIONS(7453), - [anon_sym_EQ_EQ] = ACTIONS(7455), - [anon_sym_BANG_EQ] = ACTIONS(7455), - [anon_sym_GT] = ACTIONS(7453), - [anon_sym_GT_EQ] = ACTIONS(7455), - [anon_sym_LT_EQ] = ACTIONS(7453), - [anon_sym_LT] = ACTIONS(7453), - [anon_sym_LT_LT] = ACTIONS(7453), - [anon_sym_GT_GT] = ACTIONS(7453), - [anon_sym___extension__] = ACTIONS(7455), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7455), - [anon_sym_LBRACK] = ACTIONS(7455), - [anon_sym_EQ] = ACTIONS(7453), - [anon_sym_const] = ACTIONS(7453), - [anon_sym_constexpr] = ACTIONS(7455), - [anon_sym_volatile] = ACTIONS(7455), - [anon_sym_restrict] = ACTIONS(7455), - [anon_sym___restrict__] = ACTIONS(7455), - [anon_sym__Atomic] = ACTIONS(7455), - [anon_sym__Noreturn] = ACTIONS(7455), - [anon_sym_noreturn] = ACTIONS(7455), - [anon_sym__Nonnull] = ACTIONS(7455), - [anon_sym_mutable] = ACTIONS(7455), - [anon_sym_constinit] = ACTIONS(7455), - [anon_sym_consteval] = ACTIONS(7455), - [anon_sym_alignas] = ACTIONS(7455), - [anon_sym__Alignas] = ACTIONS(7455), - [anon_sym_QMARK] = ACTIONS(7455), - [anon_sym_STAR_EQ] = ACTIONS(7455), - [anon_sym_SLASH_EQ] = ACTIONS(7455), - [anon_sym_PERCENT_EQ] = ACTIONS(7455), - [anon_sym_PLUS_EQ] = ACTIONS(7455), - [anon_sym_DASH_EQ] = ACTIONS(7455), - [anon_sym_LT_LT_EQ] = ACTIONS(7455), - [anon_sym_GT_GT_EQ] = ACTIONS(7455), - [anon_sym_AMP_EQ] = ACTIONS(7455), - [anon_sym_CARET_EQ] = ACTIONS(7455), - [anon_sym_PIPE_EQ] = ACTIONS(7455), - [anon_sym_LT_EQ_GT] = ACTIONS(7455), - [anon_sym_or] = ACTIONS(7455), - [anon_sym_and] = ACTIONS(7455), - [anon_sym_bitor] = ACTIONS(7455), - [anon_sym_xor] = ACTIONS(7455), - [anon_sym_bitand] = ACTIONS(7455), - [anon_sym_not_eq] = ACTIONS(7455), - [anon_sym_DASH_DASH] = ACTIONS(7455), - [anon_sym_PLUS_PLUS] = ACTIONS(7455), - [anon_sym_DOT] = ACTIONS(7453), - [anon_sym_DOT_STAR] = ACTIONS(7455), - [anon_sym_DASH_GT] = ACTIONS(7453), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7455), - [anon_sym_override] = ACTIONS(7455), - [anon_sym_requires] = ACTIONS(7455), - [anon_sym_DASH_GT_STAR] = ACTIONS(7455), - }, - [STATE(3036)] = { - [sym_attribute_specifier] = STATE(3560), + [sym_attribute_specifier] = STATE(3534), [anon_sym_DOT_DOT_DOT] = ACTIONS(7507), [anon_sym_COMMA] = ACTIONS(7507), [anon_sym_RPAREN] = ACTIONS(7507), @@ -396364,8 +395846,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7505), [anon_sym_GT_GT] = ACTIONS(7505), [anon_sym___extension__] = ACTIONS(7507), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), [anon_sym_LBRACE] = ACTIONS(7507), [anon_sym_LBRACK] = ACTIONS(7507), [anon_sym_EQ] = ACTIONS(7505), @@ -396412,2270 +395894,3073 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7507), [anon_sym_DASH_GT_STAR] = ACTIONS(7507), }, - [STATE(3037)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym___extension__] = ACTIONS(7160), - [anon_sym_LBRACE] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7160), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7160), - [anon_sym_volatile] = ACTIONS(7160), - [anon_sym_restrict] = ACTIONS(7160), - [anon_sym___restrict__] = ACTIONS(7160), - [anon_sym__Atomic] = ACTIONS(7160), - [anon_sym__Noreturn] = ACTIONS(7160), - [anon_sym_noreturn] = ACTIONS(7160), - [anon_sym__Nonnull] = ACTIONS(7160), - [anon_sym_mutable] = ACTIONS(7160), - [anon_sym_constinit] = ACTIONS(7160), - [anon_sym_consteval] = ACTIONS(7160), - [anon_sym_alignas] = ACTIONS(7160), - [anon_sym__Alignas] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_and_eq] = ACTIONS(7160), - [anon_sym_or_eq] = ACTIONS(7160), - [anon_sym_xor_eq] = ACTIONS(7160), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7158), - [anon_sym_and] = ACTIONS(7158), - [anon_sym_bitor] = ACTIONS(7160), - [anon_sym_xor] = ACTIONS(7158), - [anon_sym_bitand] = ACTIONS(7160), - [anon_sym_not_eq] = ACTIONS(7160), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7158), + [STATE(3032)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6651), + [anon_sym_COMMA] = ACTIONS(6651), + [anon_sym_RPAREN] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6658), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6658), + [anon_sym_GT_GT] = ACTIONS(6658), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6658), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6651), + [anon_sym_or_eq] = ACTIONS(6651), + [anon_sym_xor_eq] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6651), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6651), + [anon_sym_not_eq] = ACTIONS(6651), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6658), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_DASH_GT_STAR] = ACTIONS(6651), + }, + [STATE(3033)] = { + [sym_virtual_specifier] = STATE(3431), + [sym__function_postfix] = STATE(3690), + [sym_requires_clause] = STATE(3690), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [aux_sym_preproc_if_token2] = ACTIONS(7970), + [aux_sym_preproc_else_token1] = ACTIONS(7970), + [aux_sym_preproc_elif_token1] = ACTIONS(7972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(7972), + [anon_sym___attribute] = ACTIONS(7972), + [anon_sym_COLON] = ACTIONS(7972), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7970), + [anon_sym_RBRACE] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(7970), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7972), + [anon_sym_or_eq] = ACTIONS(7972), + [anon_sym_xor_eq] = ACTIONS(7972), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7972), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7972), + [anon_sym_not_eq] = ACTIONS(7972), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7970), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7160), - [anon_sym_override] = ACTIONS(7160), - [anon_sym_requires] = ACTIONS(7160), - [anon_sym_DASH_GT_STAR] = ACTIONS(7160), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6557), + [anon_sym_COLON_RBRACK] = ACTIONS(7970), + }, + [STATE(3034)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_RPAREN] = ACTIONS(7640), + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7638), + [anon_sym_PLUS] = ACTIONS(7638), + [anon_sym_STAR] = ACTIONS(7638), + [anon_sym_SLASH] = ACTIONS(7638), + [anon_sym_PERCENT] = ACTIONS(7638), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7638), + [anon_sym_CARET] = ACTIONS(7638), + [anon_sym_AMP] = ACTIONS(7638), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_GT] = ACTIONS(7638), + [anon_sym_GT_EQ] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7638), + [anon_sym_LT] = ACTIONS(7638), + [anon_sym_LT_LT] = ACTIONS(7638), + [anon_sym_GT_GT] = ACTIONS(7638), + [anon_sym___extension__] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(7638), + [anon_sym_const] = ACTIONS(7638), + [anon_sym_constexpr] = ACTIONS(7640), + [anon_sym_volatile] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7640), + [anon_sym___restrict__] = ACTIONS(7640), + [anon_sym__Atomic] = ACTIONS(7640), + [anon_sym__Noreturn] = ACTIONS(7640), + [anon_sym_noreturn] = ACTIONS(7640), + [anon_sym__Nonnull] = ACTIONS(7640), + [anon_sym_mutable] = ACTIONS(7640), + [anon_sym_constinit] = ACTIONS(7640), + [anon_sym_consteval] = ACTIONS(7640), + [anon_sym_alignas] = ACTIONS(7640), + [anon_sym__Alignas] = ACTIONS(7640), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_STAR_EQ] = ACTIONS(7640), + [anon_sym_SLASH_EQ] = ACTIONS(7640), + [anon_sym_PERCENT_EQ] = ACTIONS(7640), + [anon_sym_PLUS_EQ] = ACTIONS(7640), + [anon_sym_DASH_EQ] = ACTIONS(7640), + [anon_sym_LT_LT_EQ] = ACTIONS(7640), + [anon_sym_GT_GT_EQ] = ACTIONS(7640), + [anon_sym_AMP_EQ] = ACTIONS(7640), + [anon_sym_CARET_EQ] = ACTIONS(7640), + [anon_sym_PIPE_EQ] = ACTIONS(7640), + [anon_sym_and_eq] = ACTIONS(7640), + [anon_sym_or_eq] = ACTIONS(7640), + [anon_sym_xor_eq] = ACTIONS(7640), + [anon_sym_LT_EQ_GT] = ACTIONS(7640), + [anon_sym_or] = ACTIONS(7638), + [anon_sym_and] = ACTIONS(7638), + [anon_sym_bitor] = ACTIONS(7640), + [anon_sym_xor] = ACTIONS(7638), + [anon_sym_bitand] = ACTIONS(7640), + [anon_sym_not_eq] = ACTIONS(7640), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7638), + [anon_sym_DOT_STAR] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7638), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7640), + [anon_sym_override] = ACTIONS(7640), + [anon_sym_requires] = ACTIONS(7640), + [anon_sym_DASH_GT_STAR] = ACTIONS(7640), + }, + [STATE(3035)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7648), + [anon_sym_COMMA] = ACTIONS(7648), + [anon_sym_RPAREN] = ACTIONS(7648), + [anon_sym_LPAREN2] = ACTIONS(7648), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_STAR] = ACTIONS(7646), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_PERCENT] = ACTIONS(7646), + [anon_sym_PIPE_PIPE] = ACTIONS(7648), + [anon_sym_AMP_AMP] = ACTIONS(7648), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_CARET] = ACTIONS(7646), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_EQ_EQ] = ACTIONS(7648), + [anon_sym_BANG_EQ] = ACTIONS(7648), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7648), + [anon_sym_LT_EQ] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_LT_LT] = ACTIONS(7646), + [anon_sym_GT_GT] = ACTIONS(7646), + [anon_sym___extension__] = ACTIONS(7648), + [anon_sym_LBRACE] = ACTIONS(7648), + [anon_sym_LBRACK] = ACTIONS(7648), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_const] = ACTIONS(7646), + [anon_sym_constexpr] = ACTIONS(7648), + [anon_sym_volatile] = ACTIONS(7648), + [anon_sym_restrict] = ACTIONS(7648), + [anon_sym___restrict__] = ACTIONS(7648), + [anon_sym__Atomic] = ACTIONS(7648), + [anon_sym__Noreturn] = ACTIONS(7648), + [anon_sym_noreturn] = ACTIONS(7648), + [anon_sym__Nonnull] = ACTIONS(7648), + [anon_sym_mutable] = ACTIONS(7648), + [anon_sym_constinit] = ACTIONS(7648), + [anon_sym_consteval] = ACTIONS(7648), + [anon_sym_alignas] = ACTIONS(7648), + [anon_sym__Alignas] = ACTIONS(7648), + [anon_sym_QMARK] = ACTIONS(7648), + [anon_sym_STAR_EQ] = ACTIONS(7648), + [anon_sym_SLASH_EQ] = ACTIONS(7648), + [anon_sym_PERCENT_EQ] = ACTIONS(7648), + [anon_sym_PLUS_EQ] = ACTIONS(7648), + [anon_sym_DASH_EQ] = ACTIONS(7648), + [anon_sym_LT_LT_EQ] = ACTIONS(7648), + [anon_sym_GT_GT_EQ] = ACTIONS(7648), + [anon_sym_AMP_EQ] = ACTIONS(7648), + [anon_sym_CARET_EQ] = ACTIONS(7648), + [anon_sym_PIPE_EQ] = ACTIONS(7648), + [anon_sym_and_eq] = ACTIONS(7648), + [anon_sym_or_eq] = ACTIONS(7648), + [anon_sym_xor_eq] = ACTIONS(7648), + [anon_sym_LT_EQ_GT] = ACTIONS(7648), + [anon_sym_or] = ACTIONS(7646), + [anon_sym_and] = ACTIONS(7646), + [anon_sym_bitor] = ACTIONS(7648), + [anon_sym_xor] = ACTIONS(7646), + [anon_sym_bitand] = ACTIONS(7648), + [anon_sym_not_eq] = ACTIONS(7648), + [anon_sym_DASH_DASH] = ACTIONS(7648), + [anon_sym_PLUS_PLUS] = ACTIONS(7648), + [anon_sym_DOT] = ACTIONS(7646), + [anon_sym_DOT_STAR] = ACTIONS(7648), + [anon_sym_DASH_GT] = ACTIONS(7646), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7648), + [anon_sym_override] = ACTIONS(7648), + [anon_sym_requires] = ACTIONS(7648), + [anon_sym_DASH_GT_STAR] = ACTIONS(7648), + }, + [STATE(3036)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7537), + [anon_sym_COMMA] = ACTIONS(7537), + [anon_sym_LPAREN2] = ACTIONS(7537), + [anon_sym_DASH] = ACTIONS(7535), + [anon_sym_PLUS] = ACTIONS(7535), + [anon_sym_STAR] = ACTIONS(7535), + [anon_sym_SLASH] = ACTIONS(7535), + [anon_sym_PERCENT] = ACTIONS(7535), + [anon_sym_PIPE_PIPE] = ACTIONS(7537), + [anon_sym_AMP_AMP] = ACTIONS(7537), + [anon_sym_PIPE] = ACTIONS(7535), + [anon_sym_CARET] = ACTIONS(7535), + [anon_sym_AMP] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7537), + [anon_sym_BANG_EQ] = ACTIONS(7537), + [anon_sym_GT] = ACTIONS(7535), + [anon_sym_GT_EQ] = ACTIONS(7535), + [anon_sym_LT_EQ] = ACTIONS(7535), + [anon_sym_LT] = ACTIONS(7535), + [anon_sym_LT_LT] = ACTIONS(7535), + [anon_sym_GT_GT] = ACTIONS(7535), + [anon_sym___extension__] = ACTIONS(7537), + [anon_sym_COLON_COLON] = ACTIONS(7537), + [anon_sym_LBRACE] = ACTIONS(7537), + [anon_sym_LBRACK] = ACTIONS(7537), + [anon_sym_EQ] = ACTIONS(7535), + [anon_sym_const] = ACTIONS(7535), + [anon_sym_constexpr] = ACTIONS(7537), + [anon_sym_volatile] = ACTIONS(7537), + [anon_sym_restrict] = ACTIONS(7537), + [anon_sym___restrict__] = ACTIONS(7537), + [anon_sym__Atomic] = ACTIONS(7537), + [anon_sym__Noreturn] = ACTIONS(7537), + [anon_sym_noreturn] = ACTIONS(7537), + [anon_sym__Nonnull] = ACTIONS(7537), + [anon_sym_mutable] = ACTIONS(7537), + [anon_sym_constinit] = ACTIONS(7537), + [anon_sym_consteval] = ACTIONS(7537), + [anon_sym_alignas] = ACTIONS(7537), + [anon_sym__Alignas] = ACTIONS(7537), + [anon_sym_QMARK] = ACTIONS(7537), + [anon_sym_STAR_EQ] = ACTIONS(7537), + [anon_sym_SLASH_EQ] = ACTIONS(7537), + [anon_sym_PERCENT_EQ] = ACTIONS(7537), + [anon_sym_PLUS_EQ] = ACTIONS(7537), + [anon_sym_DASH_EQ] = ACTIONS(7537), + [anon_sym_LT_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_GT_EQ] = ACTIONS(7535), + [anon_sym_AMP_EQ] = ACTIONS(7537), + [anon_sym_CARET_EQ] = ACTIONS(7537), + [anon_sym_PIPE_EQ] = ACTIONS(7537), + [anon_sym_and_eq] = ACTIONS(7537), + [anon_sym_or_eq] = ACTIONS(7537), + [anon_sym_xor_eq] = ACTIONS(7537), + [anon_sym_LT_EQ_GT] = ACTIONS(7537), + [anon_sym_or] = ACTIONS(7535), + [anon_sym_and] = ACTIONS(7535), + [anon_sym_bitor] = ACTIONS(7537), + [anon_sym_xor] = ACTIONS(7535), + [anon_sym_bitand] = ACTIONS(7537), + [anon_sym_not_eq] = ACTIONS(7537), + [anon_sym_DASH_DASH] = ACTIONS(7537), + [anon_sym_PLUS_PLUS] = ACTIONS(7537), + [anon_sym_DOT] = ACTIONS(7535), + [anon_sym_DOT_STAR] = ACTIONS(7537), + [anon_sym_DASH_GT] = ACTIONS(7537), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7537), + [anon_sym_override] = ACTIONS(7537), + [anon_sym_GT2] = ACTIONS(7537), + [anon_sym_requires] = ACTIONS(7537), + }, + [STATE(3037)] = { + [sym_identifier] = ACTIONS(8953), + [anon_sym_LPAREN2] = ACTIONS(8955), + [anon_sym_TILDE] = ACTIONS(8955), + [anon_sym_STAR] = ACTIONS(8955), + [anon_sym_PIPE_PIPE] = ACTIONS(8955), + [anon_sym_AMP_AMP] = ACTIONS(8955), + [anon_sym_AMP] = ACTIONS(8953), + [anon_sym___extension__] = ACTIONS(8953), + [anon_sym_virtual] = ACTIONS(8953), + [anon_sym_extern] = ACTIONS(8953), + [anon_sym___attribute__] = ACTIONS(8953), + [anon_sym___attribute] = ACTIONS(8953), + [anon_sym_using] = ACTIONS(8953), + [anon_sym_COLON_COLON] = ACTIONS(8955), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8955), + [anon_sym___declspec] = ACTIONS(8953), + [anon_sym___based] = ACTIONS(8953), + [anon_sym___cdecl] = ACTIONS(8953), + [anon_sym___clrcall] = ACTIONS(8953), + [anon_sym___stdcall] = ACTIONS(8953), + [anon_sym___fastcall] = ACTIONS(8953), + [anon_sym___thiscall] = ACTIONS(8953), + [anon_sym___vectorcall] = ACTIONS(8953), + [anon_sym_LBRACE] = ACTIONS(8955), + [anon_sym_signed] = ACTIONS(8953), + [anon_sym_unsigned] = ACTIONS(8953), + [anon_sym_long] = ACTIONS(8953), + [anon_sym_short] = ACTIONS(8953), + [anon_sym_LBRACK] = ACTIONS(8953), + [anon_sym_static] = ACTIONS(8953), + [anon_sym_register] = ACTIONS(8953), + [anon_sym_inline] = ACTIONS(8953), + [anon_sym___inline] = ACTIONS(8953), + [anon_sym___inline__] = ACTIONS(8953), + [anon_sym___forceinline] = ACTIONS(8953), + [anon_sym_thread_local] = ACTIONS(8953), + [anon_sym___thread] = ACTIONS(8953), + [anon_sym_const] = ACTIONS(8953), + [anon_sym_constexpr] = ACTIONS(8953), + [anon_sym_volatile] = ACTIONS(8953), + [anon_sym_restrict] = ACTIONS(8953), + [anon_sym___restrict__] = ACTIONS(8953), + [anon_sym__Atomic] = ACTIONS(8953), + [anon_sym__Noreturn] = ACTIONS(8953), + [anon_sym_noreturn] = ACTIONS(8953), + [anon_sym__Nonnull] = ACTIONS(8953), + [anon_sym_mutable] = ACTIONS(8953), + [anon_sym_constinit] = ACTIONS(8953), + [anon_sym_consteval] = ACTIONS(8953), + [anon_sym_alignas] = ACTIONS(8953), + [anon_sym__Alignas] = ACTIONS(8953), + [sym_primitive_type] = ACTIONS(8953), + [anon_sym_enum] = ACTIONS(8953), + [anon_sym_class] = ACTIONS(8953), + [anon_sym_struct] = ACTIONS(8953), + [anon_sym_union] = ACTIONS(8953), + [anon_sym_or] = ACTIONS(8953), + [anon_sym_and] = ACTIONS(8953), + [anon_sym_typename] = ACTIONS(8953), + [anon_sym_DASH_GT] = ACTIONS(8955), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8953), + [anon_sym_decltype] = ACTIONS(8953), + [anon_sym_explicit] = ACTIONS(8953), + [anon_sym_template] = ACTIONS(8953), + [anon_sym_operator] = ACTIONS(8953), + [anon_sym_friend] = ACTIONS(8953), + [anon_sym_noexcept] = ACTIONS(8953), + [anon_sym_throw] = ACTIONS(8953), + [anon_sym_concept] = ACTIONS(8953), + [anon_sym_LBRACK_COLON] = ACTIONS(8955), }, [STATE(3038)] = { - [sym_identifier] = ACTIONS(9000), - [anon_sym_LPAREN2] = ACTIONS(9002), - [anon_sym_TILDE] = ACTIONS(9002), - [anon_sym_STAR] = ACTIONS(9002), - [anon_sym_PIPE_PIPE] = ACTIONS(9002), - [anon_sym_AMP_AMP] = ACTIONS(9002), - [anon_sym_AMP] = ACTIONS(9000), - [anon_sym___extension__] = ACTIONS(9000), - [anon_sym_virtual] = ACTIONS(9000), - [anon_sym_extern] = ACTIONS(9000), - [anon_sym___attribute__] = ACTIONS(9000), - [anon_sym___attribute] = ACTIONS(9000), - [anon_sym_using] = ACTIONS(9000), - [anon_sym_COLON_COLON] = ACTIONS(9002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9002), - [anon_sym___declspec] = ACTIONS(9000), - [anon_sym___based] = ACTIONS(9000), - [anon_sym___cdecl] = ACTIONS(9000), - [anon_sym___clrcall] = ACTIONS(9000), - [anon_sym___stdcall] = ACTIONS(9000), - [anon_sym___fastcall] = ACTIONS(9000), - [anon_sym___thiscall] = ACTIONS(9000), - [anon_sym___vectorcall] = ACTIONS(9000), - [anon_sym_LBRACE] = ACTIONS(9002), - [anon_sym_signed] = ACTIONS(9000), - [anon_sym_unsigned] = ACTIONS(9000), - [anon_sym_long] = ACTIONS(9000), - [anon_sym_short] = ACTIONS(9000), - [anon_sym_LBRACK] = ACTIONS(9000), - [anon_sym_static] = ACTIONS(9000), - [anon_sym_register] = ACTIONS(9000), - [anon_sym_inline] = ACTIONS(9000), - [anon_sym___inline] = ACTIONS(9000), - [anon_sym___inline__] = ACTIONS(9000), - [anon_sym___forceinline] = ACTIONS(9000), - [anon_sym_thread_local] = ACTIONS(9000), - [anon_sym___thread] = ACTIONS(9000), - [anon_sym_const] = ACTIONS(9000), - [anon_sym_constexpr] = ACTIONS(9000), - [anon_sym_volatile] = ACTIONS(9000), - [anon_sym_restrict] = ACTIONS(9000), - [anon_sym___restrict__] = ACTIONS(9000), - [anon_sym__Atomic] = ACTIONS(9000), - [anon_sym__Noreturn] = ACTIONS(9000), - [anon_sym_noreturn] = ACTIONS(9000), - [anon_sym__Nonnull] = ACTIONS(9000), - [anon_sym_mutable] = ACTIONS(9000), - [anon_sym_constinit] = ACTIONS(9000), - [anon_sym_consteval] = ACTIONS(9000), - [anon_sym_alignas] = ACTIONS(9000), - [anon_sym__Alignas] = ACTIONS(9000), - [sym_primitive_type] = ACTIONS(9000), - [anon_sym_enum] = ACTIONS(9000), - [anon_sym_class] = ACTIONS(9000), - [anon_sym_struct] = ACTIONS(9000), - [anon_sym_union] = ACTIONS(9000), - [anon_sym_or] = ACTIONS(9000), - [anon_sym_and] = ACTIONS(9000), - [anon_sym_typename] = ACTIONS(9000), - [anon_sym_DASH_GT] = ACTIONS(9002), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9000), - [anon_sym_decltype] = ACTIONS(9000), - [anon_sym_explicit] = ACTIONS(9000), - [anon_sym_template] = ACTIONS(9000), - [anon_sym_operator] = ACTIONS(9000), - [anon_sym_friend] = ACTIONS(9000), - [anon_sym_noexcept] = ACTIONS(9000), - [anon_sym_throw] = ACTIONS(9000), - [anon_sym_concept] = ACTIONS(9000), - [anon_sym_LBRACK_COLON] = ACTIONS(9002), + [sym__abstract_declarator] = STATE(6179), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3016), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2078), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3016), + [sym_identifier] = ACTIONS(7365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [aux_sym_preproc_if_token2] = ACTIONS(7367), + [aux_sym_preproc_else_token1] = ACTIONS(7367), + [aux_sym_preproc_elif_token1] = ACTIONS(7365), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7367), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(8080), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7367), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(8082), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7367), + [anon_sym_AMP] = ACTIONS(8084), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7367), + [anon_sym_GT_GT] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7365), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7365), + [anon_sym_not_eq] = ACTIONS(7365), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7365), + [anon_sym_override] = ACTIONS(7365), + [anon_sym_requires] = ACTIONS(7365), }, [STATE(3039)] = { - [sym_attribute_specifier] = STATE(3543), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7549), - [anon_sym_COMMA] = ACTIONS(7549), - [anon_sym_RPAREN] = ACTIONS(7549), - [anon_sym_LPAREN2] = ACTIONS(7549), - [anon_sym_DASH] = ACTIONS(7547), - [anon_sym_PLUS] = ACTIONS(7547), - [anon_sym_STAR] = ACTIONS(7547), - [anon_sym_SLASH] = ACTIONS(7547), - [anon_sym_PERCENT] = ACTIONS(7547), - [anon_sym_PIPE_PIPE] = ACTIONS(7549), - [anon_sym_AMP_AMP] = ACTIONS(7549), - [anon_sym_PIPE] = ACTIONS(7547), - [anon_sym_CARET] = ACTIONS(7547), - [anon_sym_AMP] = ACTIONS(7547), - [anon_sym_EQ_EQ] = ACTIONS(7549), - [anon_sym_BANG_EQ] = ACTIONS(7549), - [anon_sym_GT] = ACTIONS(7547), - [anon_sym_GT_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ] = ACTIONS(7547), - [anon_sym_LT] = ACTIONS(7547), - [anon_sym_LT_LT] = ACTIONS(7547), - [anon_sym_GT_GT] = ACTIONS(7547), - [anon_sym___extension__] = ACTIONS(7549), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7549), - [anon_sym_LBRACK] = ACTIONS(7549), - [anon_sym_EQ] = ACTIONS(7547), - [anon_sym_const] = ACTIONS(7547), - [anon_sym_constexpr] = ACTIONS(7549), - [anon_sym_volatile] = ACTIONS(7549), - [anon_sym_restrict] = ACTIONS(7549), - [anon_sym___restrict__] = ACTIONS(7549), - [anon_sym__Atomic] = ACTIONS(7549), - [anon_sym__Noreturn] = ACTIONS(7549), - [anon_sym_noreturn] = ACTIONS(7549), - [anon_sym__Nonnull] = ACTIONS(7549), - [anon_sym_mutable] = ACTIONS(7549), - [anon_sym_constinit] = ACTIONS(7549), - [anon_sym_consteval] = ACTIONS(7549), - [anon_sym_alignas] = ACTIONS(7549), - [anon_sym__Alignas] = ACTIONS(7549), - [anon_sym_QMARK] = ACTIONS(7549), - [anon_sym_STAR_EQ] = ACTIONS(7549), - [anon_sym_SLASH_EQ] = ACTIONS(7549), - [anon_sym_PERCENT_EQ] = ACTIONS(7549), - [anon_sym_PLUS_EQ] = ACTIONS(7549), - [anon_sym_DASH_EQ] = ACTIONS(7549), - [anon_sym_LT_LT_EQ] = ACTIONS(7549), - [anon_sym_GT_GT_EQ] = ACTIONS(7549), - [anon_sym_AMP_EQ] = ACTIONS(7549), - [anon_sym_CARET_EQ] = ACTIONS(7549), - [anon_sym_PIPE_EQ] = ACTIONS(7549), - [anon_sym_LT_EQ_GT] = ACTIONS(7549), - [anon_sym_or] = ACTIONS(7549), - [anon_sym_and] = ACTIONS(7549), - [anon_sym_bitor] = ACTIONS(7549), - [anon_sym_xor] = ACTIONS(7549), - [anon_sym_bitand] = ACTIONS(7549), - [anon_sym_not_eq] = ACTIONS(7549), - [anon_sym_DASH_DASH] = ACTIONS(7549), - [anon_sym_PLUS_PLUS] = ACTIONS(7549), - [anon_sym_DOT] = ACTIONS(7547), - [anon_sym_DOT_STAR] = ACTIONS(7549), - [anon_sym_DASH_GT] = ACTIONS(7547), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7549), - [anon_sym_override] = ACTIONS(7549), - [anon_sym_requires] = ACTIONS(7549), - [anon_sym_DASH_GT_STAR] = ACTIONS(7549), + [sym_attribute_specifier] = STATE(3562), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7513), + [anon_sym_COMMA] = ACTIONS(7513), + [anon_sym_RPAREN] = ACTIONS(7513), + [anon_sym_LPAREN2] = ACTIONS(7513), + [anon_sym_DASH] = ACTIONS(7511), + [anon_sym_PLUS] = ACTIONS(7511), + [anon_sym_STAR] = ACTIONS(7511), + [anon_sym_SLASH] = ACTIONS(7511), + [anon_sym_PERCENT] = ACTIONS(7511), + [anon_sym_PIPE_PIPE] = ACTIONS(7513), + [anon_sym_AMP_AMP] = ACTIONS(7513), + [anon_sym_PIPE] = ACTIONS(7511), + [anon_sym_CARET] = ACTIONS(7511), + [anon_sym_AMP] = ACTIONS(7511), + [anon_sym_EQ_EQ] = ACTIONS(7513), + [anon_sym_BANG_EQ] = ACTIONS(7513), + [anon_sym_GT] = ACTIONS(7511), + [anon_sym_GT_EQ] = ACTIONS(7513), + [anon_sym_LT_EQ] = ACTIONS(7511), + [anon_sym_LT] = ACTIONS(7511), + [anon_sym_LT_LT] = ACTIONS(7511), + [anon_sym_GT_GT] = ACTIONS(7511), + [anon_sym___extension__] = ACTIONS(7513), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7513), + [anon_sym_LBRACK] = ACTIONS(7513), + [anon_sym_EQ] = ACTIONS(7511), + [anon_sym_const] = ACTIONS(7511), + [anon_sym_constexpr] = ACTIONS(7513), + [anon_sym_volatile] = ACTIONS(7513), + [anon_sym_restrict] = ACTIONS(7513), + [anon_sym___restrict__] = ACTIONS(7513), + [anon_sym__Atomic] = ACTIONS(7513), + [anon_sym__Noreturn] = ACTIONS(7513), + [anon_sym_noreturn] = ACTIONS(7513), + [anon_sym__Nonnull] = ACTIONS(7513), + [anon_sym_mutable] = ACTIONS(7513), + [anon_sym_constinit] = ACTIONS(7513), + [anon_sym_consteval] = ACTIONS(7513), + [anon_sym_alignas] = ACTIONS(7513), + [anon_sym__Alignas] = ACTIONS(7513), + [anon_sym_QMARK] = ACTIONS(7513), + [anon_sym_STAR_EQ] = ACTIONS(7513), + [anon_sym_SLASH_EQ] = ACTIONS(7513), + [anon_sym_PERCENT_EQ] = ACTIONS(7513), + [anon_sym_PLUS_EQ] = ACTIONS(7513), + [anon_sym_DASH_EQ] = ACTIONS(7513), + [anon_sym_LT_LT_EQ] = ACTIONS(7513), + [anon_sym_GT_GT_EQ] = ACTIONS(7513), + [anon_sym_AMP_EQ] = ACTIONS(7513), + [anon_sym_CARET_EQ] = ACTIONS(7513), + [anon_sym_PIPE_EQ] = ACTIONS(7513), + [anon_sym_LT_EQ_GT] = ACTIONS(7513), + [anon_sym_or] = ACTIONS(7513), + [anon_sym_and] = ACTIONS(7513), + [anon_sym_bitor] = ACTIONS(7513), + [anon_sym_xor] = ACTIONS(7513), + [anon_sym_bitand] = ACTIONS(7513), + [anon_sym_not_eq] = ACTIONS(7513), + [anon_sym_DASH_DASH] = ACTIONS(7513), + [anon_sym_PLUS_PLUS] = ACTIONS(7513), + [anon_sym_DOT] = ACTIONS(7511), + [anon_sym_DOT_STAR] = ACTIONS(7513), + [anon_sym_DASH_GT] = ACTIONS(7511), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7513), + [anon_sym_override] = ACTIONS(7513), + [anon_sym_requires] = ACTIONS(7513), + [anon_sym_DASH_GT_STAR] = ACTIONS(7513), }, [STATE(3040)] = { - [sym_attribute_specifier] = STATE(3546), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7553), - [anon_sym_COMMA] = ACTIONS(7553), - [anon_sym_RPAREN] = ACTIONS(7553), - [anon_sym_LPAREN2] = ACTIONS(7553), - [anon_sym_DASH] = ACTIONS(7551), - [anon_sym_PLUS] = ACTIONS(7551), - [anon_sym_STAR] = ACTIONS(7551), - [anon_sym_SLASH] = ACTIONS(7551), - [anon_sym_PERCENT] = ACTIONS(7551), - [anon_sym_PIPE_PIPE] = ACTIONS(7553), - [anon_sym_AMP_AMP] = ACTIONS(7553), - [anon_sym_PIPE] = ACTIONS(7551), - [anon_sym_CARET] = ACTIONS(7551), - [anon_sym_AMP] = ACTIONS(7551), - [anon_sym_EQ_EQ] = ACTIONS(7553), - [anon_sym_BANG_EQ] = ACTIONS(7553), - [anon_sym_GT] = ACTIONS(7551), - [anon_sym_GT_EQ] = ACTIONS(7553), - [anon_sym_LT_EQ] = ACTIONS(7551), - [anon_sym_LT] = ACTIONS(7551), - [anon_sym_LT_LT] = ACTIONS(7551), - [anon_sym_GT_GT] = ACTIONS(7551), - [anon_sym___extension__] = ACTIONS(7553), - [anon_sym___attribute__] = ACTIONS(8499), - [anon_sym___attribute] = ACTIONS(8501), - [anon_sym_LBRACE] = ACTIONS(7553), - [anon_sym_LBRACK] = ACTIONS(7553), - [anon_sym_EQ] = ACTIONS(7551), - [anon_sym_const] = ACTIONS(7551), - [anon_sym_constexpr] = ACTIONS(7553), - [anon_sym_volatile] = ACTIONS(7553), - [anon_sym_restrict] = ACTIONS(7553), - [anon_sym___restrict__] = ACTIONS(7553), - [anon_sym__Atomic] = ACTIONS(7553), - [anon_sym__Noreturn] = ACTIONS(7553), - [anon_sym_noreturn] = ACTIONS(7553), - [anon_sym__Nonnull] = ACTIONS(7553), - [anon_sym_mutable] = ACTIONS(7553), - [anon_sym_constinit] = ACTIONS(7553), - [anon_sym_consteval] = ACTIONS(7553), - [anon_sym_alignas] = ACTIONS(7553), - [anon_sym__Alignas] = ACTIONS(7553), - [anon_sym_QMARK] = ACTIONS(7553), - [anon_sym_STAR_EQ] = ACTIONS(7553), - [anon_sym_SLASH_EQ] = ACTIONS(7553), - [anon_sym_PERCENT_EQ] = ACTIONS(7553), - [anon_sym_PLUS_EQ] = ACTIONS(7553), - [anon_sym_DASH_EQ] = ACTIONS(7553), - [anon_sym_LT_LT_EQ] = ACTIONS(7553), - [anon_sym_GT_GT_EQ] = ACTIONS(7553), - [anon_sym_AMP_EQ] = ACTIONS(7553), - [anon_sym_CARET_EQ] = ACTIONS(7553), - [anon_sym_PIPE_EQ] = ACTIONS(7553), - [anon_sym_LT_EQ_GT] = ACTIONS(7553), - [anon_sym_or] = ACTIONS(7553), - [anon_sym_and] = ACTIONS(7553), - [anon_sym_bitor] = ACTIONS(7553), - [anon_sym_xor] = ACTIONS(7553), - [anon_sym_bitand] = ACTIONS(7553), - [anon_sym_not_eq] = ACTIONS(7553), - [anon_sym_DASH_DASH] = ACTIONS(7553), - [anon_sym_PLUS_PLUS] = ACTIONS(7553), - [anon_sym_DOT] = ACTIONS(7551), - [anon_sym_DOT_STAR] = ACTIONS(7553), - [anon_sym_DASH_GT] = ACTIONS(7551), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7553), - [anon_sym_override] = ACTIONS(7553), - [anon_sym_requires] = ACTIONS(7553), - [anon_sym_DASH_GT_STAR] = ACTIONS(7553), + [sym_attribute_specifier] = STATE(3587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7517), + [anon_sym_COMMA] = ACTIONS(7517), + [anon_sym_RPAREN] = ACTIONS(7517), + [anon_sym_LPAREN2] = ACTIONS(7517), + [anon_sym_DASH] = ACTIONS(7515), + [anon_sym_PLUS] = ACTIONS(7515), + [anon_sym_STAR] = ACTIONS(7515), + [anon_sym_SLASH] = ACTIONS(7515), + [anon_sym_PERCENT] = ACTIONS(7515), + [anon_sym_PIPE_PIPE] = ACTIONS(7517), + [anon_sym_AMP_AMP] = ACTIONS(7517), + [anon_sym_PIPE] = ACTIONS(7515), + [anon_sym_CARET] = ACTIONS(7515), + [anon_sym_AMP] = ACTIONS(7515), + [anon_sym_EQ_EQ] = ACTIONS(7517), + [anon_sym_BANG_EQ] = ACTIONS(7517), + [anon_sym_GT] = ACTIONS(7515), + [anon_sym_GT_EQ] = ACTIONS(7517), + [anon_sym_LT_EQ] = ACTIONS(7515), + [anon_sym_LT] = ACTIONS(7515), + [anon_sym_LT_LT] = ACTIONS(7515), + [anon_sym_GT_GT] = ACTIONS(7515), + [anon_sym___extension__] = ACTIONS(7517), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7517), + [anon_sym_LBRACK] = ACTIONS(7517), + [anon_sym_EQ] = ACTIONS(7515), + [anon_sym_const] = ACTIONS(7515), + [anon_sym_constexpr] = ACTIONS(7517), + [anon_sym_volatile] = ACTIONS(7517), + [anon_sym_restrict] = ACTIONS(7517), + [anon_sym___restrict__] = ACTIONS(7517), + [anon_sym__Atomic] = ACTIONS(7517), + [anon_sym__Noreturn] = ACTIONS(7517), + [anon_sym_noreturn] = ACTIONS(7517), + [anon_sym__Nonnull] = ACTIONS(7517), + [anon_sym_mutable] = ACTIONS(7517), + [anon_sym_constinit] = ACTIONS(7517), + [anon_sym_consteval] = ACTIONS(7517), + [anon_sym_alignas] = ACTIONS(7517), + [anon_sym__Alignas] = ACTIONS(7517), + [anon_sym_QMARK] = ACTIONS(7517), + [anon_sym_STAR_EQ] = ACTIONS(7517), + [anon_sym_SLASH_EQ] = ACTIONS(7517), + [anon_sym_PERCENT_EQ] = ACTIONS(7517), + [anon_sym_PLUS_EQ] = ACTIONS(7517), + [anon_sym_DASH_EQ] = ACTIONS(7517), + [anon_sym_LT_LT_EQ] = ACTIONS(7517), + [anon_sym_GT_GT_EQ] = ACTIONS(7517), + [anon_sym_AMP_EQ] = ACTIONS(7517), + [anon_sym_CARET_EQ] = ACTIONS(7517), + [anon_sym_PIPE_EQ] = ACTIONS(7517), + [anon_sym_LT_EQ_GT] = ACTIONS(7517), + [anon_sym_or] = ACTIONS(7517), + [anon_sym_and] = ACTIONS(7517), + [anon_sym_bitor] = ACTIONS(7517), + [anon_sym_xor] = ACTIONS(7517), + [anon_sym_bitand] = ACTIONS(7517), + [anon_sym_not_eq] = ACTIONS(7517), + [anon_sym_DASH_DASH] = ACTIONS(7517), + [anon_sym_PLUS_PLUS] = ACTIONS(7517), + [anon_sym_DOT] = ACTIONS(7515), + [anon_sym_DOT_STAR] = ACTIONS(7517), + [anon_sym_DASH_GT] = ACTIONS(7515), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7517), + [anon_sym_override] = ACTIONS(7517), + [anon_sym_requires] = ACTIONS(7517), + [anon_sym_DASH_GT_STAR] = ACTIONS(7517), }, [STATE(3041)] = { - [sym_argument_list] = STATE(5537), - [sym_initializer_list] = STATE(5538), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8569), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + [sym_identifier] = ACTIONS(8957), + [anon_sym_LPAREN2] = ACTIONS(8959), + [anon_sym_TILDE] = ACTIONS(8959), + [anon_sym_STAR] = ACTIONS(8959), + [anon_sym_PIPE_PIPE] = ACTIONS(8959), + [anon_sym_AMP_AMP] = ACTIONS(8959), + [anon_sym_AMP] = ACTIONS(8957), + [anon_sym___extension__] = ACTIONS(8957), + [anon_sym_virtual] = ACTIONS(8957), + [anon_sym_extern] = ACTIONS(8957), + [anon_sym___attribute__] = ACTIONS(8957), + [anon_sym___attribute] = ACTIONS(8957), + [anon_sym_using] = ACTIONS(8957), + [anon_sym_COLON_COLON] = ACTIONS(8959), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8959), + [anon_sym___declspec] = ACTIONS(8957), + [anon_sym___based] = ACTIONS(8957), + [anon_sym___cdecl] = ACTIONS(8957), + [anon_sym___clrcall] = ACTIONS(8957), + [anon_sym___stdcall] = ACTIONS(8957), + [anon_sym___fastcall] = ACTIONS(8957), + [anon_sym___thiscall] = ACTIONS(8957), + [anon_sym___vectorcall] = ACTIONS(8957), + [anon_sym_LBRACE] = ACTIONS(8959), + [anon_sym_signed] = ACTIONS(8957), + [anon_sym_unsigned] = ACTIONS(8957), + [anon_sym_long] = ACTIONS(8957), + [anon_sym_short] = ACTIONS(8957), + [anon_sym_LBRACK] = ACTIONS(8957), + [anon_sym_static] = ACTIONS(8957), + [anon_sym_register] = ACTIONS(8957), + [anon_sym_inline] = ACTIONS(8957), + [anon_sym___inline] = ACTIONS(8957), + [anon_sym___inline__] = ACTIONS(8957), + [anon_sym___forceinline] = ACTIONS(8957), + [anon_sym_thread_local] = ACTIONS(8957), + [anon_sym___thread] = ACTIONS(8957), + [anon_sym_const] = ACTIONS(8957), + [anon_sym_constexpr] = ACTIONS(8957), + [anon_sym_volatile] = ACTIONS(8957), + [anon_sym_restrict] = ACTIONS(8957), + [anon_sym___restrict__] = ACTIONS(8957), + [anon_sym__Atomic] = ACTIONS(8957), + [anon_sym__Noreturn] = ACTIONS(8957), + [anon_sym_noreturn] = ACTIONS(8957), + [anon_sym__Nonnull] = ACTIONS(8957), + [anon_sym_mutable] = ACTIONS(8957), + [anon_sym_constinit] = ACTIONS(8957), + [anon_sym_consteval] = ACTIONS(8957), + [anon_sym_alignas] = ACTIONS(8957), + [anon_sym__Alignas] = ACTIONS(8957), + [sym_primitive_type] = ACTIONS(8957), + [anon_sym_enum] = ACTIONS(8957), + [anon_sym_class] = ACTIONS(8957), + [anon_sym_struct] = ACTIONS(8957), + [anon_sym_union] = ACTIONS(8957), + [anon_sym_or] = ACTIONS(8957), + [anon_sym_and] = ACTIONS(8957), + [anon_sym_typename] = ACTIONS(8957), + [anon_sym_DASH_GT] = ACTIONS(8959), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8957), + [anon_sym_decltype] = ACTIONS(8957), + [anon_sym_explicit] = ACTIONS(8957), + [anon_sym_template] = ACTIONS(8957), + [anon_sym_operator] = ACTIONS(8957), + [anon_sym_friend] = ACTIONS(8957), + [anon_sym_noexcept] = ACTIONS(8957), + [anon_sym_throw] = ACTIONS(8957), + [anon_sym_concept] = ACTIONS(8957), + [anon_sym_LBRACK_COLON] = ACTIONS(8959), }, [STATE(3042)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7563), - [anon_sym_or_eq] = ACTIONS(7563), - [anon_sym_xor_eq] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), - [anon_sym_DASH_GT_STAR] = ACTIONS(7563), + [sym_identifier] = ACTIONS(8961), + [anon_sym_LPAREN2] = ACTIONS(8963), + [anon_sym_TILDE] = ACTIONS(8963), + [anon_sym_STAR] = ACTIONS(8963), + [anon_sym_PIPE_PIPE] = ACTIONS(8963), + [anon_sym_AMP_AMP] = ACTIONS(8963), + [anon_sym_AMP] = ACTIONS(8961), + [anon_sym___extension__] = ACTIONS(8961), + [anon_sym_virtual] = ACTIONS(8961), + [anon_sym_extern] = ACTIONS(8961), + [anon_sym___attribute__] = ACTIONS(8961), + [anon_sym___attribute] = ACTIONS(8961), + [anon_sym_using] = ACTIONS(8961), + [anon_sym_COLON_COLON] = ACTIONS(8963), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8963), + [anon_sym___declspec] = ACTIONS(8961), + [anon_sym___based] = ACTIONS(8961), + [anon_sym___cdecl] = ACTIONS(8961), + [anon_sym___clrcall] = ACTIONS(8961), + [anon_sym___stdcall] = ACTIONS(8961), + [anon_sym___fastcall] = ACTIONS(8961), + [anon_sym___thiscall] = ACTIONS(8961), + [anon_sym___vectorcall] = ACTIONS(8961), + [anon_sym_LBRACE] = ACTIONS(8963), + [anon_sym_signed] = ACTIONS(8961), + [anon_sym_unsigned] = ACTIONS(8961), + [anon_sym_long] = ACTIONS(8961), + [anon_sym_short] = ACTIONS(8961), + [anon_sym_LBRACK] = ACTIONS(8961), + [anon_sym_static] = ACTIONS(8961), + [anon_sym_register] = ACTIONS(8961), + [anon_sym_inline] = ACTIONS(8961), + [anon_sym___inline] = ACTIONS(8961), + [anon_sym___inline__] = ACTIONS(8961), + [anon_sym___forceinline] = ACTIONS(8961), + [anon_sym_thread_local] = ACTIONS(8961), + [anon_sym___thread] = ACTIONS(8961), + [anon_sym_const] = ACTIONS(8961), + [anon_sym_constexpr] = ACTIONS(8961), + [anon_sym_volatile] = ACTIONS(8961), + [anon_sym_restrict] = ACTIONS(8961), + [anon_sym___restrict__] = ACTIONS(8961), + [anon_sym__Atomic] = ACTIONS(8961), + [anon_sym__Noreturn] = ACTIONS(8961), + [anon_sym_noreturn] = ACTIONS(8961), + [anon_sym__Nonnull] = ACTIONS(8961), + [anon_sym_mutable] = ACTIONS(8961), + [anon_sym_constinit] = ACTIONS(8961), + [anon_sym_consteval] = ACTIONS(8961), + [anon_sym_alignas] = ACTIONS(8961), + [anon_sym__Alignas] = ACTIONS(8961), + [sym_primitive_type] = ACTIONS(8961), + [anon_sym_enum] = ACTIONS(8961), + [anon_sym_class] = ACTIONS(8961), + [anon_sym_struct] = ACTIONS(8961), + [anon_sym_union] = ACTIONS(8961), + [anon_sym_or] = ACTIONS(8961), + [anon_sym_and] = ACTIONS(8961), + [anon_sym_typename] = ACTIONS(8961), + [anon_sym_DASH_GT] = ACTIONS(8963), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8961), + [anon_sym_decltype] = ACTIONS(8961), + [anon_sym_explicit] = ACTIONS(8961), + [anon_sym_template] = ACTIONS(8961), + [anon_sym_operator] = ACTIONS(8961), + [anon_sym_friend] = ACTIONS(8961), + [anon_sym_noexcept] = ACTIONS(8961), + [anon_sym_throw] = ACTIONS(8961), + [anon_sym_concept] = ACTIONS(8961), + [anon_sym_LBRACK_COLON] = ACTIONS(8963), }, [STATE(3043)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(4231), - [sym__function_postfix] = STATE(3628), - [sym_trailing_return_type] = STATE(3071), - [sym_requires_clause] = STATE(3628), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(8330), - [anon_sym___attribute] = ACTIONS(8333), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8336), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_requires] = ACTIONS(6563), + [sym_identifier] = ACTIONS(7499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7479), + [anon_sym_COMMA] = ACTIONS(7479), + [anon_sym_RPAREN] = ACTIONS(7479), + [anon_sym_LPAREN2] = ACTIONS(7479), + [anon_sym_DASH] = ACTIONS(7499), + [anon_sym_PLUS] = ACTIONS(7499), + [anon_sym_STAR] = ACTIONS(7479), + [anon_sym_SLASH] = ACTIONS(7499), + [anon_sym_PERCENT] = ACTIONS(7479), + [anon_sym_PIPE_PIPE] = ACTIONS(7479), + [anon_sym_AMP_AMP] = ACTIONS(7479), + [anon_sym_PIPE] = ACTIONS(7499), + [anon_sym_CARET] = ACTIONS(7479), + [anon_sym_AMP] = ACTIONS(7499), + [anon_sym_EQ_EQ] = ACTIONS(7479), + [anon_sym_BANG_EQ] = ACTIONS(7479), + [anon_sym_GT] = ACTIONS(7499), + [anon_sym_GT_EQ] = ACTIONS(7479), + [anon_sym_LT_EQ] = ACTIONS(7499), + [anon_sym_LT] = ACTIONS(7499), + [anon_sym_LT_LT] = ACTIONS(7479), + [anon_sym_GT_GT] = ACTIONS(7479), + [anon_sym_SEMI] = ACTIONS(7479), + [anon_sym___extension__] = ACTIONS(7499), + [anon_sym___attribute__] = ACTIONS(7499), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_COLON] = ACTIONS(7499), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7479), + [anon_sym___based] = ACTIONS(7499), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_RBRACE] = ACTIONS(7479), + [anon_sym_signed] = ACTIONS(7499), + [anon_sym_unsigned] = ACTIONS(7499), + [anon_sym_long] = ACTIONS(7499), + [anon_sym_short] = ACTIONS(7499), + [anon_sym_LBRACK] = ACTIONS(7479), + [anon_sym_const] = ACTIONS(7499), + [anon_sym_constexpr] = ACTIONS(7499), + [anon_sym_volatile] = ACTIONS(7499), + [anon_sym_restrict] = ACTIONS(7499), + [anon_sym___restrict__] = ACTIONS(7499), + [anon_sym__Atomic] = ACTIONS(7499), + [anon_sym__Noreturn] = ACTIONS(7499), + [anon_sym_noreturn] = ACTIONS(7499), + [anon_sym__Nonnull] = ACTIONS(7499), + [anon_sym_mutable] = ACTIONS(7499), + [anon_sym_constinit] = ACTIONS(7499), + [anon_sym_consteval] = ACTIONS(7499), + [anon_sym_alignas] = ACTIONS(7499), + [anon_sym__Alignas] = ACTIONS(7499), + [sym_primitive_type] = ACTIONS(7499), + [anon_sym_QMARK] = ACTIONS(7479), + [anon_sym_LT_EQ_GT] = ACTIONS(7479), + [anon_sym_or] = ACTIONS(7499), + [anon_sym_and] = ACTIONS(7499), + [anon_sym_bitor] = ACTIONS(7499), + [anon_sym_xor] = ACTIONS(7499), + [anon_sym_bitand] = ACTIONS(7499), + [anon_sym_not_eq] = ACTIONS(7499), + [anon_sym_DASH_DASH] = ACTIONS(7479), + [anon_sym_PLUS_PLUS] = ACTIONS(7479), + [anon_sym_DOT] = ACTIONS(7499), + [anon_sym_DOT_STAR] = ACTIONS(7479), + [anon_sym_DASH_GT] = ACTIONS(7479), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7499), + [anon_sym_override] = ACTIONS(7499), + [anon_sym_requires] = ACTIONS(7499), + [anon_sym_COLON_RBRACK] = ACTIONS(7479), }, [STATE(3044)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(4232), - [sym__function_postfix] = STATE(3655), - [sym_trailing_return_type] = STATE(3029), - [sym_requires_clause] = STATE(3655), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(8391), - [anon_sym___attribute] = ACTIONS(8394), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8397), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_requires] = ACTIONS(6563), + [sym_identifier] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym___cdecl] = ACTIONS(3168), + [anon_sym___clrcall] = ACTIONS(3168), + [anon_sym___stdcall] = ACTIONS(3168), + [anon_sym___fastcall] = ACTIONS(3168), + [anon_sym___thiscall] = ACTIONS(3168), + [anon_sym___vectorcall] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_or] = ACTIONS(3168), + [anon_sym_and] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [anon_sym_DASH_GT] = ACTIONS(3166), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_noexcept] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_concept] = ACTIONS(3168), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), }, [STATE(3045)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), - [anon_sym_COMMA] = ACTIONS(7741), - [anon_sym_RPAREN] = ACTIONS(7741), - [anon_sym_LPAREN2] = ACTIONS(7741), - [anon_sym_DASH] = ACTIONS(7739), - [anon_sym_PLUS] = ACTIONS(7739), - [anon_sym_STAR] = ACTIONS(7739), - [anon_sym_SLASH] = ACTIONS(7739), - [anon_sym_PERCENT] = ACTIONS(7739), - [anon_sym_PIPE_PIPE] = ACTIONS(7741), - [anon_sym_AMP_AMP] = ACTIONS(7741), - [anon_sym_PIPE] = ACTIONS(7739), - [anon_sym_CARET] = ACTIONS(7739), - [anon_sym_AMP] = ACTIONS(7739), - [anon_sym_EQ_EQ] = ACTIONS(7741), - [anon_sym_BANG_EQ] = ACTIONS(7741), - [anon_sym_GT] = ACTIONS(7739), - [anon_sym_GT_EQ] = ACTIONS(7741), - [anon_sym_LT_EQ] = ACTIONS(7739), - [anon_sym_LT] = ACTIONS(7739), - [anon_sym_LT_LT] = ACTIONS(7739), - [anon_sym_GT_GT] = ACTIONS(7739), - [anon_sym___extension__] = ACTIONS(7741), - [anon_sym_LBRACE] = ACTIONS(7741), - [anon_sym_LBRACK] = ACTIONS(7741), - [anon_sym_EQ] = ACTIONS(7739), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7741), - [anon_sym_volatile] = ACTIONS(7741), - [anon_sym_restrict] = ACTIONS(7741), - [anon_sym___restrict__] = ACTIONS(7741), - [anon_sym__Atomic] = ACTIONS(7741), - [anon_sym__Noreturn] = ACTIONS(7741), - [anon_sym_noreturn] = ACTIONS(7741), - [anon_sym__Nonnull] = ACTIONS(7741), - [anon_sym_mutable] = ACTIONS(7741), - [anon_sym_constinit] = ACTIONS(7741), - [anon_sym_consteval] = ACTIONS(7741), - [anon_sym_alignas] = ACTIONS(7741), - [anon_sym__Alignas] = ACTIONS(7741), - [anon_sym_QMARK] = ACTIONS(7741), - [anon_sym_STAR_EQ] = ACTIONS(7741), - [anon_sym_SLASH_EQ] = ACTIONS(7741), - [anon_sym_PERCENT_EQ] = ACTIONS(7741), - [anon_sym_PLUS_EQ] = ACTIONS(7741), - [anon_sym_DASH_EQ] = ACTIONS(7741), - [anon_sym_LT_LT_EQ] = ACTIONS(7741), - [anon_sym_GT_GT_EQ] = ACTIONS(7741), - [anon_sym_AMP_EQ] = ACTIONS(7741), - [anon_sym_CARET_EQ] = ACTIONS(7741), - [anon_sym_PIPE_EQ] = ACTIONS(7741), - [anon_sym_and_eq] = ACTIONS(7741), - [anon_sym_or_eq] = ACTIONS(7741), - [anon_sym_xor_eq] = ACTIONS(7741), - [anon_sym_LT_EQ_GT] = ACTIONS(7741), - [anon_sym_or] = ACTIONS(7739), - [anon_sym_and] = ACTIONS(7739), - [anon_sym_bitor] = ACTIONS(7741), - [anon_sym_xor] = ACTIONS(7739), - [anon_sym_bitand] = ACTIONS(7741), - [anon_sym_not_eq] = ACTIONS(7741), - [anon_sym_DASH_DASH] = ACTIONS(7741), - [anon_sym_PLUS_PLUS] = ACTIONS(7741), - [anon_sym_DOT] = ACTIONS(7739), - [anon_sym_DOT_STAR] = ACTIONS(7741), - [anon_sym_DASH_GT] = ACTIONS(7739), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7741), - [anon_sym_override] = ACTIONS(7741), - [anon_sym_requires] = ACTIONS(7741), - [anon_sym_DASH_GT_STAR] = ACTIONS(7741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(3046)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_RPAREN] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7651), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7651), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7651), - [anon_sym_GT_GT] = ACTIONS(7651), - [anon_sym___extension__] = ACTIONS(7653), - [anon_sym_LBRACE] = ACTIONS(7653), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(7651), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7653), - [anon_sym_volatile] = ACTIONS(7653), - [anon_sym_restrict] = ACTIONS(7653), - [anon_sym___restrict__] = ACTIONS(7653), - [anon_sym__Atomic] = ACTIONS(7653), - [anon_sym__Noreturn] = ACTIONS(7653), - [anon_sym_noreturn] = ACTIONS(7653), - [anon_sym__Nonnull] = ACTIONS(7653), - [anon_sym_mutable] = ACTIONS(7653), - [anon_sym_constinit] = ACTIONS(7653), - [anon_sym_consteval] = ACTIONS(7653), - [anon_sym_alignas] = ACTIONS(7653), - [anon_sym__Alignas] = ACTIONS(7653), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_STAR_EQ] = ACTIONS(7653), - [anon_sym_SLASH_EQ] = ACTIONS(7653), - [anon_sym_PERCENT_EQ] = ACTIONS(7653), - [anon_sym_PLUS_EQ] = ACTIONS(7653), - [anon_sym_DASH_EQ] = ACTIONS(7653), - [anon_sym_LT_LT_EQ] = ACTIONS(7653), - [anon_sym_GT_GT_EQ] = ACTIONS(7653), - [anon_sym_AMP_EQ] = ACTIONS(7653), - [anon_sym_CARET_EQ] = ACTIONS(7653), - [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_and_eq] = ACTIONS(7653), - [anon_sym_or_eq] = ACTIONS(7653), - [anon_sym_xor_eq] = ACTIONS(7653), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7651), - [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7653), - [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7653), - [anon_sym_not_eq] = ACTIONS(7653), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7651), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7653), - [anon_sym_override] = ACTIONS(7653), - [anon_sym_requires] = ACTIONS(7653), - [anon_sym_DASH_GT_STAR] = ACTIONS(7653), + [sym_decltype_auto] = STATE(2968), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8524), + [anon_sym_decltype] = ACTIONS(6935), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(3047)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), - [anon_sym_COMMA] = ACTIONS(7661), - [anon_sym_RPAREN] = ACTIONS(7661), - [anon_sym_LPAREN2] = ACTIONS(7661), - [anon_sym_DASH] = ACTIONS(7659), - [anon_sym_PLUS] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7659), - [anon_sym_SLASH] = ACTIONS(7659), - [anon_sym_PERCENT] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7661), - [anon_sym_AMP_AMP] = ACTIONS(7661), - [anon_sym_PIPE] = ACTIONS(7659), - [anon_sym_CARET] = ACTIONS(7659), - [anon_sym_AMP] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7661), - [anon_sym_BANG_EQ] = ACTIONS(7661), - [anon_sym_GT] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7661), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_LT] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7659), - [anon_sym_GT_GT] = ACTIONS(7659), - [anon_sym___extension__] = ACTIONS(7661), - [anon_sym_LBRACE] = ACTIONS(7661), - [anon_sym_LBRACK] = ACTIONS(7661), - [anon_sym_EQ] = ACTIONS(7659), - [anon_sym_const] = ACTIONS(7659), - [anon_sym_constexpr] = ACTIONS(7661), - [anon_sym_volatile] = ACTIONS(7661), - [anon_sym_restrict] = ACTIONS(7661), - [anon_sym___restrict__] = ACTIONS(7661), - [anon_sym__Atomic] = ACTIONS(7661), - [anon_sym__Noreturn] = ACTIONS(7661), - [anon_sym_noreturn] = ACTIONS(7661), - [anon_sym__Nonnull] = ACTIONS(7661), - [anon_sym_mutable] = ACTIONS(7661), - [anon_sym_constinit] = ACTIONS(7661), - [anon_sym_consteval] = ACTIONS(7661), - [anon_sym_alignas] = ACTIONS(7661), - [anon_sym__Alignas] = ACTIONS(7661), - [anon_sym_QMARK] = ACTIONS(7661), - [anon_sym_STAR_EQ] = ACTIONS(7661), - [anon_sym_SLASH_EQ] = ACTIONS(7661), - [anon_sym_PERCENT_EQ] = ACTIONS(7661), - [anon_sym_PLUS_EQ] = ACTIONS(7661), - [anon_sym_DASH_EQ] = ACTIONS(7661), - [anon_sym_LT_LT_EQ] = ACTIONS(7661), - [anon_sym_GT_GT_EQ] = ACTIONS(7661), - [anon_sym_AMP_EQ] = ACTIONS(7661), - [anon_sym_CARET_EQ] = ACTIONS(7661), - [anon_sym_PIPE_EQ] = ACTIONS(7661), - [anon_sym_and_eq] = ACTIONS(7661), - [anon_sym_or_eq] = ACTIONS(7661), - [anon_sym_xor_eq] = ACTIONS(7661), - [anon_sym_LT_EQ_GT] = ACTIONS(7661), - [anon_sym_or] = ACTIONS(7659), - [anon_sym_and] = ACTIONS(7659), - [anon_sym_bitor] = ACTIONS(7661), - [anon_sym_xor] = ACTIONS(7659), - [anon_sym_bitand] = ACTIONS(7661), - [anon_sym_not_eq] = ACTIONS(7661), - [anon_sym_DASH_DASH] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7661), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym_DOT_STAR] = ACTIONS(7661), - [anon_sym_DASH_GT] = ACTIONS(7659), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7661), - [anon_sym_override] = ACTIONS(7661), - [anon_sym_requires] = ACTIONS(7661), - [anon_sym_DASH_GT_STAR] = ACTIONS(7661), + [sym_argument_list] = STATE(5560), + [sym_initializer_list] = STATE(5570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(3048)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), - [anon_sym_COMMA] = ACTIONS(7745), - [anon_sym_RPAREN] = ACTIONS(7745), - [anon_sym_LPAREN2] = ACTIONS(7745), - [anon_sym_DASH] = ACTIONS(7743), - [anon_sym_PLUS] = ACTIONS(7743), - [anon_sym_STAR] = ACTIONS(7743), - [anon_sym_SLASH] = ACTIONS(7743), - [anon_sym_PERCENT] = ACTIONS(7743), - [anon_sym_PIPE_PIPE] = ACTIONS(7745), - [anon_sym_AMP_AMP] = ACTIONS(7745), - [anon_sym_PIPE] = ACTIONS(7743), - [anon_sym_CARET] = ACTIONS(7743), - [anon_sym_AMP] = ACTIONS(7743), - [anon_sym_EQ_EQ] = ACTIONS(7745), - [anon_sym_BANG_EQ] = ACTIONS(7745), - [anon_sym_GT] = ACTIONS(7743), - [anon_sym_GT_EQ] = ACTIONS(7745), - [anon_sym_LT_EQ] = ACTIONS(7743), - [anon_sym_LT] = ACTIONS(7743), - [anon_sym_LT_LT] = ACTIONS(7743), - [anon_sym_GT_GT] = ACTIONS(7743), - [anon_sym___extension__] = ACTIONS(7745), - [anon_sym_LBRACE] = ACTIONS(7745), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_EQ] = ACTIONS(7743), - [anon_sym_const] = ACTIONS(7743), - [anon_sym_constexpr] = ACTIONS(7745), - [anon_sym_volatile] = ACTIONS(7745), - [anon_sym_restrict] = ACTIONS(7745), - [anon_sym___restrict__] = ACTIONS(7745), - [anon_sym__Atomic] = ACTIONS(7745), - [anon_sym__Noreturn] = ACTIONS(7745), - [anon_sym_noreturn] = ACTIONS(7745), - [anon_sym__Nonnull] = ACTIONS(7745), - [anon_sym_mutable] = ACTIONS(7745), - [anon_sym_constinit] = ACTIONS(7745), - [anon_sym_consteval] = ACTIONS(7745), - [anon_sym_alignas] = ACTIONS(7745), - [anon_sym__Alignas] = ACTIONS(7745), - [anon_sym_QMARK] = ACTIONS(7745), - [anon_sym_STAR_EQ] = ACTIONS(7745), - [anon_sym_SLASH_EQ] = ACTIONS(7745), - [anon_sym_PERCENT_EQ] = ACTIONS(7745), - [anon_sym_PLUS_EQ] = ACTIONS(7745), - [anon_sym_DASH_EQ] = ACTIONS(7745), - [anon_sym_LT_LT_EQ] = ACTIONS(7745), - [anon_sym_GT_GT_EQ] = ACTIONS(7745), - [anon_sym_AMP_EQ] = ACTIONS(7745), - [anon_sym_CARET_EQ] = ACTIONS(7745), - [anon_sym_PIPE_EQ] = ACTIONS(7745), - [anon_sym_and_eq] = ACTIONS(7745), - [anon_sym_or_eq] = ACTIONS(7745), - [anon_sym_xor_eq] = ACTIONS(7745), - [anon_sym_LT_EQ_GT] = ACTIONS(7745), - [anon_sym_or] = ACTIONS(7743), - [anon_sym_and] = ACTIONS(7743), - [anon_sym_bitor] = ACTIONS(7745), - [anon_sym_xor] = ACTIONS(7743), - [anon_sym_bitand] = ACTIONS(7745), - [anon_sym_not_eq] = ACTIONS(7745), - [anon_sym_DASH_DASH] = ACTIONS(7745), - [anon_sym_PLUS_PLUS] = ACTIONS(7745), - [anon_sym_DOT] = ACTIONS(7743), - [anon_sym_DOT_STAR] = ACTIONS(7745), - [anon_sym_DASH_GT] = ACTIONS(7743), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7745), - [anon_sym_override] = ACTIONS(7745), - [anon_sym_requires] = ACTIONS(7745), - [anon_sym_DASH_GT_STAR] = ACTIONS(7745), + [sym_decltype_auto] = STATE(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8833), + [anon_sym_decltype] = ACTIONS(6962), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(3049)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), - [anon_sym_COMMA] = ACTIONS(7753), - [anon_sym_RPAREN] = ACTIONS(7753), - [anon_sym_LPAREN2] = ACTIONS(7753), - [anon_sym_DASH] = ACTIONS(7751), - [anon_sym_PLUS] = ACTIONS(7751), - [anon_sym_STAR] = ACTIONS(7751), - [anon_sym_SLASH] = ACTIONS(7751), - [anon_sym_PERCENT] = ACTIONS(7751), - [anon_sym_PIPE_PIPE] = ACTIONS(7753), - [anon_sym_AMP_AMP] = ACTIONS(7753), - [anon_sym_PIPE] = ACTIONS(7751), - [anon_sym_CARET] = ACTIONS(7751), - [anon_sym_AMP] = ACTIONS(7751), - [anon_sym_EQ_EQ] = ACTIONS(7753), - [anon_sym_BANG_EQ] = ACTIONS(7753), - [anon_sym_GT] = ACTIONS(7751), - [anon_sym_GT_EQ] = ACTIONS(7753), - [anon_sym_LT_EQ] = ACTIONS(7751), - [anon_sym_LT] = ACTIONS(7751), - [anon_sym_LT_LT] = ACTIONS(7751), - [anon_sym_GT_GT] = ACTIONS(7751), - [anon_sym___extension__] = ACTIONS(7753), - [anon_sym_LBRACE] = ACTIONS(7753), - [anon_sym_LBRACK] = ACTIONS(7753), - [anon_sym_EQ] = ACTIONS(7751), - [anon_sym_const] = ACTIONS(7751), - [anon_sym_constexpr] = ACTIONS(7753), - [anon_sym_volatile] = ACTIONS(7753), - [anon_sym_restrict] = ACTIONS(7753), - [anon_sym___restrict__] = ACTIONS(7753), - [anon_sym__Atomic] = ACTIONS(7753), - [anon_sym__Noreturn] = ACTIONS(7753), - [anon_sym_noreturn] = ACTIONS(7753), - [anon_sym__Nonnull] = ACTIONS(7753), - [anon_sym_mutable] = ACTIONS(7753), - [anon_sym_constinit] = ACTIONS(7753), - [anon_sym_consteval] = ACTIONS(7753), - [anon_sym_alignas] = ACTIONS(7753), - [anon_sym__Alignas] = ACTIONS(7753), - [anon_sym_QMARK] = ACTIONS(7753), - [anon_sym_STAR_EQ] = ACTIONS(7753), - [anon_sym_SLASH_EQ] = ACTIONS(7753), - [anon_sym_PERCENT_EQ] = ACTIONS(7753), - [anon_sym_PLUS_EQ] = ACTIONS(7753), - [anon_sym_DASH_EQ] = ACTIONS(7753), - [anon_sym_LT_LT_EQ] = ACTIONS(7753), - [anon_sym_GT_GT_EQ] = ACTIONS(7753), - [anon_sym_AMP_EQ] = ACTIONS(7753), - [anon_sym_CARET_EQ] = ACTIONS(7753), - [anon_sym_PIPE_EQ] = ACTIONS(7753), - [anon_sym_and_eq] = ACTIONS(7753), - [anon_sym_or_eq] = ACTIONS(7753), - [anon_sym_xor_eq] = ACTIONS(7753), - [anon_sym_LT_EQ_GT] = ACTIONS(7753), - [anon_sym_or] = ACTIONS(7751), - [anon_sym_and] = ACTIONS(7751), - [anon_sym_bitor] = ACTIONS(7753), - [anon_sym_xor] = ACTIONS(7751), - [anon_sym_bitand] = ACTIONS(7753), - [anon_sym_not_eq] = ACTIONS(7753), - [anon_sym_DASH_DASH] = ACTIONS(7753), - [anon_sym_PLUS_PLUS] = ACTIONS(7753), - [anon_sym_DOT] = ACTIONS(7751), - [anon_sym_DOT_STAR] = ACTIONS(7753), - [anon_sym_DASH_GT] = ACTIONS(7751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7753), - [anon_sym_override] = ACTIONS(7753), - [anon_sym_requires] = ACTIONS(7753), - [anon_sym_DASH_GT_STAR] = ACTIONS(7753), + [sym_identifier] = ACTIONS(3157), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym___extension__] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym___attribute__] = ACTIONS(3157), + [anon_sym___attribute] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3155), + [anon_sym___declspec] = ACTIONS(3157), + [anon_sym___based] = ACTIONS(3157), + [anon_sym___cdecl] = ACTIONS(3157), + [anon_sym___clrcall] = ACTIONS(3157), + [anon_sym___stdcall] = ACTIONS(3157), + [anon_sym___fastcall] = ACTIONS(3157), + [anon_sym___thiscall] = ACTIONS(3157), + [anon_sym___vectorcall] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_signed] = ACTIONS(3157), + [anon_sym_unsigned] = ACTIONS(3157), + [anon_sym_long] = ACTIONS(3157), + [anon_sym_short] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_register] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym___inline] = ACTIONS(3157), + [anon_sym___inline__] = ACTIONS(3157), + [anon_sym___forceinline] = ACTIONS(3157), + [anon_sym_thread_local] = ACTIONS(3157), + [anon_sym___thread] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_constexpr] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_restrict] = ACTIONS(3157), + [anon_sym___restrict__] = ACTIONS(3157), + [anon_sym__Atomic] = ACTIONS(3157), + [anon_sym__Noreturn] = ACTIONS(3157), + [anon_sym_noreturn] = ACTIONS(3157), + [anon_sym__Nonnull] = ACTIONS(3157), + [anon_sym_mutable] = ACTIONS(3157), + [anon_sym_constinit] = ACTIONS(3157), + [anon_sym_consteval] = ACTIONS(3157), + [anon_sym_alignas] = ACTIONS(3157), + [anon_sym__Alignas] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_or] = ACTIONS(3157), + [anon_sym_and] = ACTIONS(3157), + [anon_sym_typename] = ACTIONS(3157), + [anon_sym_DASH_GT] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3157), + [anon_sym_decltype] = ACTIONS(3157), + [anon_sym_explicit] = ACTIONS(3157), + [anon_sym_template] = ACTIONS(3157), + [anon_sym_operator] = ACTIONS(3157), + [anon_sym_friend] = ACTIONS(3157), + [anon_sym_noexcept] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_concept] = ACTIONS(3157), + [anon_sym_LBRACK_COLON] = ACTIONS(3155), }, [STATE(3050)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), - [anon_sym_COMMA] = ACTIONS(7777), - [anon_sym_RPAREN] = ACTIONS(7777), - [anon_sym_LPAREN2] = ACTIONS(7777), - [anon_sym_DASH] = ACTIONS(7775), - [anon_sym_PLUS] = ACTIONS(7775), - [anon_sym_STAR] = ACTIONS(7775), - [anon_sym_SLASH] = ACTIONS(7775), - [anon_sym_PERCENT] = ACTIONS(7775), - [anon_sym_PIPE_PIPE] = ACTIONS(7777), - [anon_sym_AMP_AMP] = ACTIONS(7777), - [anon_sym_PIPE] = ACTIONS(7775), - [anon_sym_CARET] = ACTIONS(7775), - [anon_sym_AMP] = ACTIONS(7775), - [anon_sym_EQ_EQ] = ACTIONS(7777), - [anon_sym_BANG_EQ] = ACTIONS(7777), - [anon_sym_GT] = ACTIONS(7775), - [anon_sym_GT_EQ] = ACTIONS(7777), - [anon_sym_LT_EQ] = ACTIONS(7775), - [anon_sym_LT] = ACTIONS(7775), - [anon_sym_LT_LT] = ACTIONS(7775), - [anon_sym_GT_GT] = ACTIONS(7775), - [anon_sym___extension__] = ACTIONS(7777), - [anon_sym_LBRACE] = ACTIONS(7777), - [anon_sym_LBRACK] = ACTIONS(7777), - [anon_sym_EQ] = ACTIONS(7775), - [anon_sym_const] = ACTIONS(7775), - [anon_sym_constexpr] = ACTIONS(7777), - [anon_sym_volatile] = ACTIONS(7777), - [anon_sym_restrict] = ACTIONS(7777), - [anon_sym___restrict__] = ACTIONS(7777), - [anon_sym__Atomic] = ACTIONS(7777), - [anon_sym__Noreturn] = ACTIONS(7777), - [anon_sym_noreturn] = ACTIONS(7777), - [anon_sym__Nonnull] = ACTIONS(7777), - [anon_sym_mutable] = ACTIONS(7777), - [anon_sym_constinit] = ACTIONS(7777), - [anon_sym_consteval] = ACTIONS(7777), - [anon_sym_alignas] = ACTIONS(7777), - [anon_sym__Alignas] = ACTIONS(7777), - [anon_sym_QMARK] = ACTIONS(7777), - [anon_sym_STAR_EQ] = ACTIONS(7777), - [anon_sym_SLASH_EQ] = ACTIONS(7777), - [anon_sym_PERCENT_EQ] = ACTIONS(7777), - [anon_sym_PLUS_EQ] = ACTIONS(7777), - [anon_sym_DASH_EQ] = ACTIONS(7777), - [anon_sym_LT_LT_EQ] = ACTIONS(7777), - [anon_sym_GT_GT_EQ] = ACTIONS(7777), - [anon_sym_AMP_EQ] = ACTIONS(7777), - [anon_sym_CARET_EQ] = ACTIONS(7777), - [anon_sym_PIPE_EQ] = ACTIONS(7777), - [anon_sym_and_eq] = ACTIONS(7777), - [anon_sym_or_eq] = ACTIONS(7777), - [anon_sym_xor_eq] = ACTIONS(7777), - [anon_sym_LT_EQ_GT] = ACTIONS(7777), - [anon_sym_or] = ACTIONS(7775), - [anon_sym_and] = ACTIONS(7775), - [anon_sym_bitor] = ACTIONS(7777), - [anon_sym_xor] = ACTIONS(7775), - [anon_sym_bitand] = ACTIONS(7777), - [anon_sym_not_eq] = ACTIONS(7777), - [anon_sym_DASH_DASH] = ACTIONS(7777), - [anon_sym_PLUS_PLUS] = ACTIONS(7777), - [anon_sym_DOT] = ACTIONS(7775), - [anon_sym_DOT_STAR] = ACTIONS(7777), - [anon_sym_DASH_GT] = ACTIONS(7775), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7777), - [anon_sym_override] = ACTIONS(7777), - [anon_sym_requires] = ACTIONS(7777), - [anon_sym_DASH_GT_STAR] = ACTIONS(7777), + [sym_attribute_specifier] = STATE(3565), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7541), + [anon_sym_COMMA] = ACTIONS(7541), + [anon_sym_RPAREN] = ACTIONS(7541), + [anon_sym_LPAREN2] = ACTIONS(7541), + [anon_sym_DASH] = ACTIONS(7539), + [anon_sym_PLUS] = ACTIONS(7539), + [anon_sym_STAR] = ACTIONS(7539), + [anon_sym_SLASH] = ACTIONS(7539), + [anon_sym_PERCENT] = ACTIONS(7539), + [anon_sym_PIPE_PIPE] = ACTIONS(7541), + [anon_sym_AMP_AMP] = ACTIONS(7541), + [anon_sym_PIPE] = ACTIONS(7539), + [anon_sym_CARET] = ACTIONS(7539), + [anon_sym_AMP] = ACTIONS(7539), + [anon_sym_EQ_EQ] = ACTIONS(7541), + [anon_sym_BANG_EQ] = ACTIONS(7541), + [anon_sym_GT] = ACTIONS(7539), + [anon_sym_GT_EQ] = ACTIONS(7541), + [anon_sym_LT_EQ] = ACTIONS(7539), + [anon_sym_LT] = ACTIONS(7539), + [anon_sym_LT_LT] = ACTIONS(7539), + [anon_sym_GT_GT] = ACTIONS(7539), + [anon_sym___extension__] = ACTIONS(7541), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7541), + [anon_sym_LBRACK] = ACTIONS(7541), + [anon_sym_EQ] = ACTIONS(7539), + [anon_sym_const] = ACTIONS(7539), + [anon_sym_constexpr] = ACTIONS(7541), + [anon_sym_volatile] = ACTIONS(7541), + [anon_sym_restrict] = ACTIONS(7541), + [anon_sym___restrict__] = ACTIONS(7541), + [anon_sym__Atomic] = ACTIONS(7541), + [anon_sym__Noreturn] = ACTIONS(7541), + [anon_sym_noreturn] = ACTIONS(7541), + [anon_sym__Nonnull] = ACTIONS(7541), + [anon_sym_mutable] = ACTIONS(7541), + [anon_sym_constinit] = ACTIONS(7541), + [anon_sym_consteval] = ACTIONS(7541), + [anon_sym_alignas] = ACTIONS(7541), + [anon_sym__Alignas] = ACTIONS(7541), + [anon_sym_QMARK] = ACTIONS(7541), + [anon_sym_STAR_EQ] = ACTIONS(7541), + [anon_sym_SLASH_EQ] = ACTIONS(7541), + [anon_sym_PERCENT_EQ] = ACTIONS(7541), + [anon_sym_PLUS_EQ] = ACTIONS(7541), + [anon_sym_DASH_EQ] = ACTIONS(7541), + [anon_sym_LT_LT_EQ] = ACTIONS(7541), + [anon_sym_GT_GT_EQ] = ACTIONS(7541), + [anon_sym_AMP_EQ] = ACTIONS(7541), + [anon_sym_CARET_EQ] = ACTIONS(7541), + [anon_sym_PIPE_EQ] = ACTIONS(7541), + [anon_sym_LT_EQ_GT] = ACTIONS(7541), + [anon_sym_or] = ACTIONS(7541), + [anon_sym_and] = ACTIONS(7541), + [anon_sym_bitor] = ACTIONS(7541), + [anon_sym_xor] = ACTIONS(7541), + [anon_sym_bitand] = ACTIONS(7541), + [anon_sym_not_eq] = ACTIONS(7541), + [anon_sym_DASH_DASH] = ACTIONS(7541), + [anon_sym_PLUS_PLUS] = ACTIONS(7541), + [anon_sym_DOT] = ACTIONS(7539), + [anon_sym_DOT_STAR] = ACTIONS(7541), + [anon_sym_DASH_GT] = ACTIONS(7539), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7541), + [anon_sym_override] = ACTIONS(7541), + [anon_sym_requires] = ACTIONS(7541), + [anon_sym_DASH_GT_STAR] = ACTIONS(7541), }, [STATE(3051)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), - [anon_sym_COMMA] = ACTIONS(7571), - [anon_sym_RPAREN] = ACTIONS(7571), - [anon_sym_LPAREN2] = ACTIONS(7571), - [anon_sym_DASH] = ACTIONS(7569), - [anon_sym_PLUS] = ACTIONS(7569), - [anon_sym_STAR] = ACTIONS(7569), - [anon_sym_SLASH] = ACTIONS(7569), - [anon_sym_PERCENT] = ACTIONS(7569), - [anon_sym_PIPE_PIPE] = ACTIONS(7571), - [anon_sym_AMP_AMP] = ACTIONS(7571), - [anon_sym_PIPE] = ACTIONS(7569), - [anon_sym_CARET] = ACTIONS(7569), - [anon_sym_AMP] = ACTIONS(7569), - [anon_sym_EQ_EQ] = ACTIONS(7571), - [anon_sym_BANG_EQ] = ACTIONS(7571), - [anon_sym_GT] = ACTIONS(7569), - [anon_sym_GT_EQ] = ACTIONS(7571), - [anon_sym_LT_EQ] = ACTIONS(7569), - [anon_sym_LT] = ACTIONS(7569), - [anon_sym_LT_LT] = ACTIONS(7569), - [anon_sym_GT_GT] = ACTIONS(7569), - [anon_sym___extension__] = ACTIONS(7571), - [anon_sym_LBRACE] = ACTIONS(7571), - [anon_sym_LBRACK] = ACTIONS(7571), - [anon_sym_EQ] = ACTIONS(7569), - [anon_sym_const] = ACTIONS(7569), - [anon_sym_constexpr] = ACTIONS(7571), - [anon_sym_volatile] = ACTIONS(7571), - [anon_sym_restrict] = ACTIONS(7571), - [anon_sym___restrict__] = ACTIONS(7571), - [anon_sym__Atomic] = ACTIONS(7571), - [anon_sym__Noreturn] = ACTIONS(7571), - [anon_sym_noreturn] = ACTIONS(7571), - [anon_sym__Nonnull] = ACTIONS(7571), - [anon_sym_mutable] = ACTIONS(7571), - [anon_sym_constinit] = ACTIONS(7571), - [anon_sym_consteval] = ACTIONS(7571), - [anon_sym_alignas] = ACTIONS(7571), - [anon_sym__Alignas] = ACTIONS(7571), - [anon_sym_QMARK] = ACTIONS(7571), - [anon_sym_STAR_EQ] = ACTIONS(7571), - [anon_sym_SLASH_EQ] = ACTIONS(7571), - [anon_sym_PERCENT_EQ] = ACTIONS(7571), - [anon_sym_PLUS_EQ] = ACTIONS(7571), - [anon_sym_DASH_EQ] = ACTIONS(7571), - [anon_sym_LT_LT_EQ] = ACTIONS(7571), - [anon_sym_GT_GT_EQ] = ACTIONS(7571), - [anon_sym_AMP_EQ] = ACTIONS(7571), - [anon_sym_CARET_EQ] = ACTIONS(7571), - [anon_sym_PIPE_EQ] = ACTIONS(7571), - [anon_sym_and_eq] = ACTIONS(7571), - [anon_sym_or_eq] = ACTIONS(7571), - [anon_sym_xor_eq] = ACTIONS(7571), - [anon_sym_LT_EQ_GT] = ACTIONS(7571), - [anon_sym_or] = ACTIONS(7569), - [anon_sym_and] = ACTIONS(7569), - [anon_sym_bitor] = ACTIONS(7571), - [anon_sym_xor] = ACTIONS(7569), - [anon_sym_bitand] = ACTIONS(7571), - [anon_sym_not_eq] = ACTIONS(7571), - [anon_sym_DASH_DASH] = ACTIONS(7571), - [anon_sym_PLUS_PLUS] = ACTIONS(7571), - [anon_sym_DOT] = ACTIONS(7569), - [anon_sym_DOT_STAR] = ACTIONS(7571), - [anon_sym_DASH_GT] = ACTIONS(7569), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7571), - [anon_sym_override] = ACTIONS(7571), - [anon_sym_requires] = ACTIONS(7571), - [anon_sym_DASH_GT_STAR] = ACTIONS(7571), + [sym_identifier] = ACTIONS(8965), + [anon_sym_LPAREN2] = ACTIONS(8967), + [anon_sym_TILDE] = ACTIONS(8967), + [anon_sym_STAR] = ACTIONS(8967), + [anon_sym_PIPE_PIPE] = ACTIONS(8967), + [anon_sym_AMP_AMP] = ACTIONS(8967), + [anon_sym_AMP] = ACTIONS(8965), + [anon_sym___extension__] = ACTIONS(8965), + [anon_sym_virtual] = ACTIONS(8965), + [anon_sym_extern] = ACTIONS(8965), + [anon_sym___attribute__] = ACTIONS(8965), + [anon_sym___attribute] = ACTIONS(8965), + [anon_sym_using] = ACTIONS(8965), + [anon_sym_COLON_COLON] = ACTIONS(8967), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8967), + [anon_sym___declspec] = ACTIONS(8965), + [anon_sym___based] = ACTIONS(8965), + [anon_sym___cdecl] = ACTIONS(8965), + [anon_sym___clrcall] = ACTIONS(8965), + [anon_sym___stdcall] = ACTIONS(8965), + [anon_sym___fastcall] = ACTIONS(8965), + [anon_sym___thiscall] = ACTIONS(8965), + [anon_sym___vectorcall] = ACTIONS(8965), + [anon_sym_LBRACE] = ACTIONS(8967), + [anon_sym_signed] = ACTIONS(8965), + [anon_sym_unsigned] = ACTIONS(8965), + [anon_sym_long] = ACTIONS(8965), + [anon_sym_short] = ACTIONS(8965), + [anon_sym_LBRACK] = ACTIONS(8965), + [anon_sym_static] = ACTIONS(8965), + [anon_sym_register] = ACTIONS(8965), + [anon_sym_inline] = ACTIONS(8965), + [anon_sym___inline] = ACTIONS(8965), + [anon_sym___inline__] = ACTIONS(8965), + [anon_sym___forceinline] = ACTIONS(8965), + [anon_sym_thread_local] = ACTIONS(8965), + [anon_sym___thread] = ACTIONS(8965), + [anon_sym_const] = ACTIONS(8965), + [anon_sym_constexpr] = ACTIONS(8965), + [anon_sym_volatile] = ACTIONS(8965), + [anon_sym_restrict] = ACTIONS(8965), + [anon_sym___restrict__] = ACTIONS(8965), + [anon_sym__Atomic] = ACTIONS(8965), + [anon_sym__Noreturn] = ACTIONS(8965), + [anon_sym_noreturn] = ACTIONS(8965), + [anon_sym__Nonnull] = ACTIONS(8965), + [anon_sym_mutable] = ACTIONS(8965), + [anon_sym_constinit] = ACTIONS(8965), + [anon_sym_consteval] = ACTIONS(8965), + [anon_sym_alignas] = ACTIONS(8965), + [anon_sym__Alignas] = ACTIONS(8965), + [sym_primitive_type] = ACTIONS(8965), + [anon_sym_enum] = ACTIONS(8965), + [anon_sym_class] = ACTIONS(8965), + [anon_sym_struct] = ACTIONS(8965), + [anon_sym_union] = ACTIONS(8965), + [anon_sym_or] = ACTIONS(8965), + [anon_sym_and] = ACTIONS(8965), + [anon_sym_typename] = ACTIONS(8965), + [anon_sym_DASH_GT] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8965), + [anon_sym_decltype] = ACTIONS(8965), + [anon_sym_explicit] = ACTIONS(8965), + [anon_sym_template] = ACTIONS(8965), + [anon_sym_operator] = ACTIONS(8965), + [anon_sym_friend] = ACTIONS(8965), + [anon_sym_noexcept] = ACTIONS(8965), + [anon_sym_throw] = ACTIONS(8965), + [anon_sym_concept] = ACTIONS(8965), + [anon_sym_LBRACK_COLON] = ACTIONS(8967), }, [STATE(3052)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), - [anon_sym_COMMA] = ACTIONS(7601), - [anon_sym_RPAREN] = ACTIONS(7601), - [anon_sym_LPAREN2] = ACTIONS(7601), - [anon_sym_DASH] = ACTIONS(7599), - [anon_sym_PLUS] = ACTIONS(7599), - [anon_sym_STAR] = ACTIONS(7599), - [anon_sym_SLASH] = ACTIONS(7599), - [anon_sym_PERCENT] = ACTIONS(7599), - [anon_sym_PIPE_PIPE] = ACTIONS(7601), - [anon_sym_AMP_AMP] = ACTIONS(7601), - [anon_sym_PIPE] = ACTIONS(7599), - [anon_sym_CARET] = ACTIONS(7599), - [anon_sym_AMP] = ACTIONS(7599), - [anon_sym_EQ_EQ] = ACTIONS(7601), - [anon_sym_BANG_EQ] = ACTIONS(7601), - [anon_sym_GT] = ACTIONS(7599), - [anon_sym_GT_EQ] = ACTIONS(7601), - [anon_sym_LT_EQ] = ACTIONS(7599), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_LT_LT] = ACTIONS(7599), - [anon_sym_GT_GT] = ACTIONS(7599), - [anon_sym___extension__] = ACTIONS(7601), - [anon_sym_LBRACE] = ACTIONS(7601), - [anon_sym_LBRACK] = ACTIONS(7601), - [anon_sym_EQ] = ACTIONS(7599), - [anon_sym_const] = ACTIONS(7599), - [anon_sym_constexpr] = ACTIONS(7601), - [anon_sym_volatile] = ACTIONS(7601), - [anon_sym_restrict] = ACTIONS(7601), - [anon_sym___restrict__] = ACTIONS(7601), - [anon_sym__Atomic] = ACTIONS(7601), - [anon_sym__Noreturn] = ACTIONS(7601), - [anon_sym_noreturn] = ACTIONS(7601), - [anon_sym__Nonnull] = ACTIONS(7601), - [anon_sym_mutable] = ACTIONS(7601), - [anon_sym_constinit] = ACTIONS(7601), - [anon_sym_consteval] = ACTIONS(7601), - [anon_sym_alignas] = ACTIONS(7601), - [anon_sym__Alignas] = ACTIONS(7601), - [anon_sym_QMARK] = ACTIONS(7601), - [anon_sym_STAR_EQ] = ACTIONS(7601), - [anon_sym_SLASH_EQ] = ACTIONS(7601), - [anon_sym_PERCENT_EQ] = ACTIONS(7601), - [anon_sym_PLUS_EQ] = ACTIONS(7601), - [anon_sym_DASH_EQ] = ACTIONS(7601), - [anon_sym_LT_LT_EQ] = ACTIONS(7601), - [anon_sym_GT_GT_EQ] = ACTIONS(7601), - [anon_sym_AMP_EQ] = ACTIONS(7601), - [anon_sym_CARET_EQ] = ACTIONS(7601), - [anon_sym_PIPE_EQ] = ACTIONS(7601), - [anon_sym_and_eq] = ACTIONS(7601), - [anon_sym_or_eq] = ACTIONS(7601), - [anon_sym_xor_eq] = ACTIONS(7601), - [anon_sym_LT_EQ_GT] = ACTIONS(7601), - [anon_sym_or] = ACTIONS(7599), - [anon_sym_and] = ACTIONS(7599), - [anon_sym_bitor] = ACTIONS(7601), - [anon_sym_xor] = ACTIONS(7599), - [anon_sym_bitand] = ACTIONS(7601), - [anon_sym_not_eq] = ACTIONS(7601), - [anon_sym_DASH_DASH] = ACTIONS(7601), - [anon_sym_PLUS_PLUS] = ACTIONS(7601), - [anon_sym_DOT] = ACTIONS(7599), - [anon_sym_DOT_STAR] = ACTIONS(7601), - [anon_sym_DASH_GT] = ACTIONS(7599), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7601), - [anon_sym_override] = ACTIONS(7601), - [anon_sym_requires] = ACTIONS(7601), - [anon_sym_DASH_GT_STAR] = ACTIONS(7601), + [sym_identifier] = ACTIONS(8969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8971), + [anon_sym_COMMA] = ACTIONS(8971), + [anon_sym_RPAREN] = ACTIONS(8971), + [aux_sym_preproc_if_token2] = ACTIONS(8971), + [aux_sym_preproc_else_token1] = ACTIONS(8971), + [aux_sym_preproc_elif_token1] = ACTIONS(8969), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8971), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8971), + [anon_sym_LPAREN2] = ACTIONS(8973), + [anon_sym_DASH] = ACTIONS(8969), + [anon_sym_PLUS] = ACTIONS(8969), + [anon_sym_STAR] = ACTIONS(8969), + [anon_sym_SLASH] = ACTIONS(8969), + [anon_sym_PERCENT] = ACTIONS(8969), + [anon_sym_PIPE_PIPE] = ACTIONS(8971), + [anon_sym_AMP_AMP] = ACTIONS(8971), + [anon_sym_PIPE] = ACTIONS(8969), + [anon_sym_CARET] = ACTIONS(8969), + [anon_sym_AMP] = ACTIONS(8969), + [anon_sym_EQ_EQ] = ACTIONS(8971), + [anon_sym_BANG_EQ] = ACTIONS(8971), + [anon_sym_GT] = ACTIONS(8969), + [anon_sym_GT_EQ] = ACTIONS(8971), + [anon_sym_LT_EQ] = ACTIONS(8969), + [anon_sym_LT] = ACTIONS(8969), + [anon_sym_LT_LT] = ACTIONS(8969), + [anon_sym_GT_GT] = ACTIONS(8969), + [anon_sym_SEMI] = ACTIONS(8971), + [anon_sym___attribute__] = ACTIONS(8969), + [anon_sym___attribute] = ACTIONS(8969), + [anon_sym_COLON] = ACTIONS(8969), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8971), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8971), + [anon_sym_RBRACE] = ACTIONS(8971), + [anon_sym_LBRACK] = ACTIONS(8969), + [anon_sym_EQ] = ACTIONS(8969), + [anon_sym_QMARK] = ACTIONS(8971), + [anon_sym_STAR_EQ] = ACTIONS(8971), + [anon_sym_SLASH_EQ] = ACTIONS(8971), + [anon_sym_PERCENT_EQ] = ACTIONS(8971), + [anon_sym_PLUS_EQ] = ACTIONS(8971), + [anon_sym_DASH_EQ] = ACTIONS(8971), + [anon_sym_LT_LT_EQ] = ACTIONS(8971), + [anon_sym_GT_GT_EQ] = ACTIONS(8971), + [anon_sym_AMP_EQ] = ACTIONS(8971), + [anon_sym_CARET_EQ] = ACTIONS(8971), + [anon_sym_PIPE_EQ] = ACTIONS(8971), + [anon_sym_and_eq] = ACTIONS(8969), + [anon_sym_or_eq] = ACTIONS(8969), + [anon_sym_xor_eq] = ACTIONS(8969), + [anon_sym_LT_EQ_GT] = ACTIONS(8971), + [anon_sym_or] = ACTIONS(8969), + [anon_sym_and] = ACTIONS(8969), + [anon_sym_bitor] = ACTIONS(8969), + [anon_sym_xor] = ACTIONS(8969), + [anon_sym_bitand] = ACTIONS(8969), + [anon_sym_not_eq] = ACTIONS(8969), + [anon_sym_DASH_DASH] = ACTIONS(8971), + [anon_sym_PLUS_PLUS] = ACTIONS(8971), + [anon_sym_asm] = ACTIONS(8969), + [anon_sym___asm__] = ACTIONS(8969), + [anon_sym___asm] = ACTIONS(8969), + [anon_sym_DOT] = ACTIONS(8969), + [anon_sym_DOT_STAR] = ACTIONS(8971), + [anon_sym_DASH_GT] = ACTIONS(8971), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8969), + [anon_sym_override] = ACTIONS(8969), + [anon_sym_requires] = ACTIONS(8969), + [anon_sym_COLON_RBRACK] = ACTIONS(8971), }, [STATE(3053)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), + [sym_template_argument_list] = STATE(3120), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6568), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_PIPE_PIPE] = ACTIONS(6561), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6568), + [anon_sym_CARET] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6561), + [anon_sym_BANG_EQ] = ACTIONS(6561), + [anon_sym_GT] = ACTIONS(6568), + [anon_sym_GT_EQ] = ACTIONS(6568), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(8975), + [anon_sym_LT_LT] = ACTIONS(6568), + [anon_sym_GT_GT] = ACTIONS(6568), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6561), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6568), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6561), + [anon_sym_or_eq] = ACTIONS(6561), + [anon_sym_xor_eq] = ACTIONS(6561), + [anon_sym_LT_EQ_GT] = ACTIONS(6561), + [anon_sym_or] = ACTIONS(6568), + [anon_sym_and] = ACTIONS(6568), + [anon_sym_bitor] = ACTIONS(6561), + [anon_sym_xor] = ACTIONS(6568), + [anon_sym_bitand] = ACTIONS(6561), + [anon_sym_not_eq] = ACTIONS(6561), + [anon_sym_DASH_DASH] = ACTIONS(6561), + [anon_sym_PLUS_PLUS] = ACTIONS(6561), + [anon_sym_DOT] = ACTIONS(6568), + [anon_sym_DOT_STAR] = ACTIONS(6561), + [anon_sym_DASH_GT] = ACTIONS(6561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_GT2] = ACTIONS(6563), }, [STATE(3054)] = { - [sym_decltype_auto] = STATE(3205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8639), - [anon_sym_decltype] = ACTIONS(7073), + [sym_attribute_specifier] = STATE(3566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7483), + [anon_sym_COMMA] = ACTIONS(7483), + [anon_sym_RPAREN] = ACTIONS(7483), + [anon_sym_LPAREN2] = ACTIONS(7483), + [anon_sym_DASH] = ACTIONS(7481), + [anon_sym_PLUS] = ACTIONS(7481), + [anon_sym_STAR] = ACTIONS(7481), + [anon_sym_SLASH] = ACTIONS(7481), + [anon_sym_PERCENT] = ACTIONS(7481), + [anon_sym_PIPE_PIPE] = ACTIONS(7483), + [anon_sym_AMP_AMP] = ACTIONS(7483), + [anon_sym_PIPE] = ACTIONS(7481), + [anon_sym_CARET] = ACTIONS(7481), + [anon_sym_AMP] = ACTIONS(7481), + [anon_sym_EQ_EQ] = ACTIONS(7483), + [anon_sym_BANG_EQ] = ACTIONS(7483), + [anon_sym_GT] = ACTIONS(7481), + [anon_sym_GT_EQ] = ACTIONS(7483), + [anon_sym_LT_EQ] = ACTIONS(7481), + [anon_sym_LT] = ACTIONS(7481), + [anon_sym_LT_LT] = ACTIONS(7481), + [anon_sym_GT_GT] = ACTIONS(7481), + [anon_sym___extension__] = ACTIONS(7483), + [anon_sym___attribute__] = ACTIONS(8518), + [anon_sym___attribute] = ACTIONS(8520), + [anon_sym_LBRACE] = ACTIONS(7483), + [anon_sym_LBRACK] = ACTIONS(7483), + [anon_sym_EQ] = ACTIONS(7481), + [anon_sym_const] = ACTIONS(7481), + [anon_sym_constexpr] = ACTIONS(7483), + [anon_sym_volatile] = ACTIONS(7483), + [anon_sym_restrict] = ACTIONS(7483), + [anon_sym___restrict__] = ACTIONS(7483), + [anon_sym__Atomic] = ACTIONS(7483), + [anon_sym__Noreturn] = ACTIONS(7483), + [anon_sym_noreturn] = ACTIONS(7483), + [anon_sym__Nonnull] = ACTIONS(7483), + [anon_sym_mutable] = ACTIONS(7483), + [anon_sym_constinit] = ACTIONS(7483), + [anon_sym_consteval] = ACTIONS(7483), + [anon_sym_alignas] = ACTIONS(7483), + [anon_sym__Alignas] = ACTIONS(7483), + [anon_sym_QMARK] = ACTIONS(7483), + [anon_sym_STAR_EQ] = ACTIONS(7483), + [anon_sym_SLASH_EQ] = ACTIONS(7483), + [anon_sym_PERCENT_EQ] = ACTIONS(7483), + [anon_sym_PLUS_EQ] = ACTIONS(7483), + [anon_sym_DASH_EQ] = ACTIONS(7483), + [anon_sym_LT_LT_EQ] = ACTIONS(7483), + [anon_sym_GT_GT_EQ] = ACTIONS(7483), + [anon_sym_AMP_EQ] = ACTIONS(7483), + [anon_sym_CARET_EQ] = ACTIONS(7483), + [anon_sym_PIPE_EQ] = ACTIONS(7483), + [anon_sym_LT_EQ_GT] = ACTIONS(7483), + [anon_sym_or] = ACTIONS(7483), + [anon_sym_and] = ACTIONS(7483), + [anon_sym_bitor] = ACTIONS(7483), + [anon_sym_xor] = ACTIONS(7483), + [anon_sym_bitand] = ACTIONS(7483), + [anon_sym_not_eq] = ACTIONS(7483), + [anon_sym_DASH_DASH] = ACTIONS(7483), + [anon_sym_PLUS_PLUS] = ACTIONS(7483), + [anon_sym_DOT] = ACTIONS(7481), + [anon_sym_DOT_STAR] = ACTIONS(7483), + [anon_sym_DASH_GT] = ACTIONS(7481), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7483), + [anon_sym_override] = ACTIONS(7483), + [anon_sym_requires] = ACTIONS(7483), + [anon_sym_DASH_GT_STAR] = ACTIONS(7483), }, [STATE(3055)] = { - [sym_template_argument_list] = STATE(3157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6574), - [anon_sym_PLUS] = ACTIONS(6574), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6574), - [anon_sym_PIPE_PIPE] = ACTIONS(6567), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6574), - [anon_sym_CARET] = ACTIONS(6574), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6567), - [anon_sym_BANG_EQ] = ACTIONS(6567), - [anon_sym_GT] = ACTIONS(6574), - [anon_sym_GT_EQ] = ACTIONS(6574), - [anon_sym_LT_EQ] = ACTIONS(6574), - [anon_sym_LT] = ACTIONS(9004), - [anon_sym_LT_LT] = ACTIONS(6574), - [anon_sym_GT_GT] = ACTIONS(6574), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6574), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6567), - [anon_sym_or_eq] = ACTIONS(6567), - [anon_sym_xor_eq] = ACTIONS(6567), - [anon_sym_LT_EQ_GT] = ACTIONS(6567), - [anon_sym_or] = ACTIONS(6574), - [anon_sym_and] = ACTIONS(6574), - [anon_sym_bitor] = ACTIONS(6567), - [anon_sym_xor] = ACTIONS(6574), - [anon_sym_bitand] = ACTIONS(6567), - [anon_sym_not_eq] = ACTIONS(6567), - [anon_sym_DASH_DASH] = ACTIONS(6567), - [anon_sym_PLUS_PLUS] = ACTIONS(6567), - [anon_sym_DOT] = ACTIONS(6574), - [anon_sym_DOT_STAR] = ACTIONS(6567), - [anon_sym_DASH_GT] = ACTIONS(6567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_GT2] = ACTIONS(6569), + [sym_ms_unaligned_ptr_modifier] = STATE(4311), + [sym_ms_pointer_modifier] = STATE(3068), + [sym__abstract_declarator] = STATE(6906), + [sym_abstract_parenthesized_declarator] = STATE(6694), + [sym_abstract_pointer_declarator] = STATE(6694), + [sym_abstract_function_declarator] = STATE(6694), + [sym_abstract_array_declarator] = STATE(6694), + [sym_type_qualifier] = STATE(3954), + [sym_alignas_qualifier] = STATE(3830), + [sym_parameter_list] = STATE(2275), + [sym_abstract_reference_declarator] = STATE(6694), + [sym__function_declarator_seq] = STATE(6695), + [aux_sym__type_definition_type_repeat1] = STATE(3954), + [aux_sym_pointer_declarator_repeat1] = STATE(3068), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6815), + [anon_sym_COMMA] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(8568), + [anon_sym_DASH] = ACTIONS(6819), + [anon_sym_PLUS] = ACTIONS(6819), + [anon_sym_STAR] = ACTIONS(8978), + [anon_sym_SLASH] = ACTIONS(6819), + [anon_sym_PERCENT] = ACTIONS(6815), + [anon_sym_PIPE_PIPE] = ACTIONS(6815), + [anon_sym_AMP_AMP] = ACTIONS(8980), + [anon_sym_PIPE] = ACTIONS(6819), + [anon_sym_CARET] = ACTIONS(6815), + [anon_sym_AMP] = ACTIONS(8982), + [anon_sym_EQ_EQ] = ACTIONS(6815), + [anon_sym_BANG_EQ] = ACTIONS(6815), + [anon_sym_GT] = ACTIONS(6819), + [anon_sym_GT_EQ] = ACTIONS(6819), + [anon_sym_LT_EQ] = ACTIONS(6819), + [anon_sym_LT] = ACTIONS(6819), + [anon_sym_LT_LT] = ACTIONS(6815), + [anon_sym_GT_GT] = ACTIONS(6819), + [anon_sym___extension__] = ACTIONS(8576), + [sym_ms_restrict_modifier] = ACTIONS(8578), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8580), + [sym_ms_signed_ptr_modifier] = ACTIONS(8580), + [anon_sym__unaligned] = ACTIONS(8582), + [anon_sym___unaligned] = ACTIONS(8582), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8576), + [anon_sym_volatile] = ACTIONS(8576), + [anon_sym_restrict] = ACTIONS(8576), + [anon_sym___restrict__] = ACTIONS(8576), + [anon_sym__Atomic] = ACTIONS(8576), + [anon_sym__Noreturn] = ACTIONS(8576), + [anon_sym_noreturn] = ACTIONS(8576), + [anon_sym__Nonnull] = ACTIONS(8576), + [anon_sym_mutable] = ACTIONS(8576), + [anon_sym_constinit] = ACTIONS(8576), + [anon_sym_consteval] = ACTIONS(8576), + [anon_sym_alignas] = ACTIONS(8588), + [anon_sym__Alignas] = ACTIONS(8588), + [anon_sym_QMARK] = ACTIONS(6815), + [anon_sym_LT_EQ_GT] = ACTIONS(6815), + [anon_sym_or] = ACTIONS(6815), + [anon_sym_and] = ACTIONS(6815), + [anon_sym_bitor] = ACTIONS(6815), + [anon_sym_xor] = ACTIONS(6815), + [anon_sym_bitand] = ACTIONS(6815), + [anon_sym_not_eq] = ACTIONS(6815), + [anon_sym_DASH_DASH] = ACTIONS(6815), + [anon_sym_PLUS_PLUS] = ACTIONS(6815), + [anon_sym_DOT] = ACTIONS(6819), + [anon_sym_DOT_STAR] = ACTIONS(6815), + [anon_sym_DASH_GT] = ACTIONS(6815), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6815), }, [STATE(3056)] = { - [sym_ms_unaligned_ptr_modifier] = STATE(4321), - [sym_ms_pointer_modifier] = STATE(3010), - [sym__abstract_declarator] = STATE(6914), - [sym_abstract_parenthesized_declarator] = STATE(6708), - [sym_abstract_pointer_declarator] = STATE(6708), - [sym_abstract_function_declarator] = STATE(6708), - [sym_abstract_array_declarator] = STATE(6708), - [sym_type_qualifier] = STATE(3956), - [sym_alignas_qualifier] = STATE(3945), - [sym_parameter_list] = STATE(2249), - [sym_abstract_reference_declarator] = STATE(6708), - [sym__function_declarator_seq] = STATE(6709), - [aux_sym__type_definition_type_repeat1] = STATE(3956), - [aux_sym_pointer_declarator_repeat1] = STATE(3010), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6859), - [anon_sym_COMMA] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(8600), - [anon_sym_DASH] = ACTIONS(6861), - [anon_sym_PLUS] = ACTIONS(6861), - [anon_sym_STAR] = ACTIONS(8958), - [anon_sym_SLASH] = ACTIONS(6861), - [anon_sym_PERCENT] = ACTIONS(6859), - [anon_sym_PIPE_PIPE] = ACTIONS(6859), - [anon_sym_AMP_AMP] = ACTIONS(8960), - [anon_sym_PIPE] = ACTIONS(6861), - [anon_sym_CARET] = ACTIONS(6859), - [anon_sym_AMP] = ACTIONS(8962), - [anon_sym_EQ_EQ] = ACTIONS(6859), - [anon_sym_BANG_EQ] = ACTIONS(6859), - [anon_sym_GT] = ACTIONS(6861), - [anon_sym_GT_EQ] = ACTIONS(6861), - [anon_sym_LT_EQ] = ACTIONS(6861), - [anon_sym_LT] = ACTIONS(6861), - [anon_sym_LT_LT] = ACTIONS(6859), - [anon_sym_GT_GT] = ACTIONS(6861), - [anon_sym___extension__] = ACTIONS(8608), - [sym_ms_restrict_modifier] = ACTIONS(8610), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(8612), - [sym_ms_signed_ptr_modifier] = ACTIONS(8612), - [anon_sym__unaligned] = ACTIONS(8614), - [anon_sym___unaligned] = ACTIONS(8614), - [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym___restrict__] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym__Noreturn] = ACTIONS(8608), - [anon_sym_noreturn] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym_mutable] = ACTIONS(8608), - [anon_sym_constinit] = ACTIONS(8608), - [anon_sym_consteval] = ACTIONS(8608), - [anon_sym_alignas] = ACTIONS(8620), - [anon_sym__Alignas] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(6859), - [anon_sym_LT_EQ_GT] = ACTIONS(6859), - [anon_sym_or] = ACTIONS(6859), - [anon_sym_and] = ACTIONS(6859), - [anon_sym_bitor] = ACTIONS(6859), - [anon_sym_xor] = ACTIONS(6859), - [anon_sym_bitand] = ACTIONS(6859), - [anon_sym_not_eq] = ACTIONS(6859), - [anon_sym_DASH_DASH] = ACTIONS(6859), - [anon_sym_PLUS_PLUS] = ACTIONS(6859), - [anon_sym_DOT] = ACTIONS(6861), - [anon_sym_DOT_STAR] = ACTIONS(6859), - [anon_sym_DASH_GT] = ACTIONS(6859), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(6859), + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym__function_attributes_end] = STATE(4320), + [sym__function_postfix] = STATE(5208), + [sym_trailing_return_type] = STATE(4464), + [sym_requires_clause] = STATE(5208), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7876), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7876), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8250), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6688), + [anon_sym_override] = ACTIONS(6688), + [anon_sym_GT2] = ACTIONS(7874), + [anon_sym_requires] = ACTIONS(6694), }, [STATE(3057)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), - [anon_sym_COMMA] = ACTIONS(7757), - [anon_sym_RPAREN] = ACTIONS(7757), - [anon_sym_LPAREN2] = ACTIONS(7757), - [anon_sym_DASH] = ACTIONS(7755), - [anon_sym_PLUS] = ACTIONS(7755), - [anon_sym_STAR] = ACTIONS(7755), - [anon_sym_SLASH] = ACTIONS(7755), - [anon_sym_PERCENT] = ACTIONS(7755), - [anon_sym_PIPE_PIPE] = ACTIONS(7757), - [anon_sym_AMP_AMP] = ACTIONS(7757), - [anon_sym_PIPE] = ACTIONS(7755), - [anon_sym_CARET] = ACTIONS(7755), - [anon_sym_AMP] = ACTIONS(7755), - [anon_sym_EQ_EQ] = ACTIONS(7757), - [anon_sym_BANG_EQ] = ACTIONS(7757), - [anon_sym_GT] = ACTIONS(7755), - [anon_sym_GT_EQ] = ACTIONS(7757), - [anon_sym_LT_EQ] = ACTIONS(7755), - [anon_sym_LT] = ACTIONS(7755), - [anon_sym_LT_LT] = ACTIONS(7755), - [anon_sym_GT_GT] = ACTIONS(7755), - [anon_sym___extension__] = ACTIONS(7757), - [anon_sym_LBRACE] = ACTIONS(7757), - [anon_sym_LBRACK] = ACTIONS(7757), - [anon_sym_EQ] = ACTIONS(7755), - [anon_sym_const] = ACTIONS(7755), - [anon_sym_constexpr] = ACTIONS(7757), - [anon_sym_volatile] = ACTIONS(7757), - [anon_sym_restrict] = ACTIONS(7757), - [anon_sym___restrict__] = ACTIONS(7757), - [anon_sym__Atomic] = ACTIONS(7757), - [anon_sym__Noreturn] = ACTIONS(7757), - [anon_sym_noreturn] = ACTIONS(7757), - [anon_sym__Nonnull] = ACTIONS(7757), - [anon_sym_mutable] = ACTIONS(7757), - [anon_sym_constinit] = ACTIONS(7757), - [anon_sym_consteval] = ACTIONS(7757), - [anon_sym_alignas] = ACTIONS(7757), - [anon_sym__Alignas] = ACTIONS(7757), - [anon_sym_QMARK] = ACTIONS(7757), - [anon_sym_STAR_EQ] = ACTIONS(7757), - [anon_sym_SLASH_EQ] = ACTIONS(7757), - [anon_sym_PERCENT_EQ] = ACTIONS(7757), - [anon_sym_PLUS_EQ] = ACTIONS(7757), - [anon_sym_DASH_EQ] = ACTIONS(7757), - [anon_sym_LT_LT_EQ] = ACTIONS(7757), - [anon_sym_GT_GT_EQ] = ACTIONS(7757), - [anon_sym_AMP_EQ] = ACTIONS(7757), - [anon_sym_CARET_EQ] = ACTIONS(7757), - [anon_sym_PIPE_EQ] = ACTIONS(7757), - [anon_sym_and_eq] = ACTIONS(7757), - [anon_sym_or_eq] = ACTIONS(7757), - [anon_sym_xor_eq] = ACTIONS(7757), - [anon_sym_LT_EQ_GT] = ACTIONS(7757), - [anon_sym_or] = ACTIONS(7755), - [anon_sym_and] = ACTIONS(7755), - [anon_sym_bitor] = ACTIONS(7757), - [anon_sym_xor] = ACTIONS(7755), - [anon_sym_bitand] = ACTIONS(7757), - [anon_sym_not_eq] = ACTIONS(7757), - [anon_sym_DASH_DASH] = ACTIONS(7757), - [anon_sym_PLUS_PLUS] = ACTIONS(7757), - [anon_sym_DOT] = ACTIONS(7755), - [anon_sym_DOT_STAR] = ACTIONS(7757), - [anon_sym_DASH_GT] = ACTIONS(7755), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7757), - [anon_sym_override] = ACTIONS(7757), - [anon_sym_requires] = ACTIONS(7757), - [anon_sym_DASH_GT_STAR] = ACTIONS(7757), + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym__function_attributes_end] = STATE(4368), + [sym__function_postfix] = STATE(5223), + [sym_trailing_return_type] = STATE(4468), + [sym_requires_clause] = STATE(5223), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7972), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7972), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8379), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6688), + [anon_sym_override] = ACTIONS(6688), + [anon_sym_GT2] = ACTIONS(7970), + [anon_sym_requires] = ACTIONS(6694), }, [STATE(3058)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_RPAREN] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7595), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7595), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7595), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7595), - [anon_sym_GT_GT] = ACTIONS(7595), - [anon_sym___extension__] = ACTIONS(7597), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_EQ] = ACTIONS(7595), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7597), - [anon_sym_volatile] = ACTIONS(7597), - [anon_sym_restrict] = ACTIONS(7597), - [anon_sym___restrict__] = ACTIONS(7597), - [anon_sym__Atomic] = ACTIONS(7597), - [anon_sym__Noreturn] = ACTIONS(7597), - [anon_sym_noreturn] = ACTIONS(7597), - [anon_sym__Nonnull] = ACTIONS(7597), - [anon_sym_mutable] = ACTIONS(7597), - [anon_sym_constinit] = ACTIONS(7597), - [anon_sym_consteval] = ACTIONS(7597), - [anon_sym_alignas] = ACTIONS(7597), - [anon_sym__Alignas] = ACTIONS(7597), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_STAR_EQ] = ACTIONS(7597), - [anon_sym_SLASH_EQ] = ACTIONS(7597), - [anon_sym_PERCENT_EQ] = ACTIONS(7597), - [anon_sym_PLUS_EQ] = ACTIONS(7597), - [anon_sym_DASH_EQ] = ACTIONS(7597), - [anon_sym_LT_LT_EQ] = ACTIONS(7597), - [anon_sym_GT_GT_EQ] = ACTIONS(7597), - [anon_sym_AMP_EQ] = ACTIONS(7597), - [anon_sym_CARET_EQ] = ACTIONS(7597), - [anon_sym_PIPE_EQ] = ACTIONS(7597), - [anon_sym_and_eq] = ACTIONS(7597), - [anon_sym_or_eq] = ACTIONS(7597), - [anon_sym_xor_eq] = ACTIONS(7597), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7595), - [anon_sym_and] = ACTIONS(7595), - [anon_sym_bitor] = ACTIONS(7597), - [anon_sym_xor] = ACTIONS(7595), - [anon_sym_bitand] = ACTIONS(7597), - [anon_sym_not_eq] = ACTIONS(7597), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7595), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7597), - [anon_sym_override] = ACTIONS(7597), - [anon_sym_requires] = ACTIONS(7597), - [anon_sym_DASH_GT_STAR] = ACTIONS(7597), + [sym_attribute_specifier] = STATE(4210), + [sym_attribute_declaration] = STATE(4599), + [sym_gnu_asm_expression] = STATE(9092), + [sym_virtual_specifier] = STATE(4669), + [sym__function_attributes_end] = STATE(4375), + [sym__function_postfix] = STATE(5230), + [sym_trailing_return_type] = STATE(4469), + [sym_requires_clause] = STATE(5230), + [aux_sym_type_definition_repeat1] = STATE(4210), + [aux_sym_attributed_declarator_repeat1] = STATE(4599), + [aux_sym__function_postfix_repeat1] = STATE(4669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8404), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(6675), + [anon_sym___attribute] = ACTIONS(6677), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6679), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8404), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8402), + [anon_sym_or_eq] = ACTIONS(8402), + [anon_sym_xor_eq] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8887), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6688), + [anon_sym_override] = ACTIONS(6688), + [anon_sym_GT2] = ACTIONS(8402), + [anon_sym_requires] = ACTIONS(6694), }, [STATE(3059)] = { - [sym_decltype_auto] = STATE(3016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8529), - [anon_sym_decltype] = ACTIONS(6975), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + [sym_virtual_specifier] = STATE(3431), + [sym__function_postfix] = STATE(3658), + [sym_requires_clause] = STATE(3658), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7874), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7876), + [anon_sym_or_eq] = ACTIONS(7876), + [anon_sym_xor_eq] = ACTIONS(7876), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7874), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7952), + [anon_sym_override] = ACTIONS(7952), + [anon_sym_requires] = ACTIONS(7955), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), }, [STATE(3060)] = { - [sym_identifier] = ACTIONS(7459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), - [anon_sym_COMMA] = ACTIONS(7457), - [anon_sym_RPAREN] = ACTIONS(7457), - [anon_sym_LPAREN2] = ACTIONS(7457), - [anon_sym_DASH] = ACTIONS(7459), - [anon_sym_PLUS] = ACTIONS(7459), - [anon_sym_STAR] = ACTIONS(7457), - [anon_sym_SLASH] = ACTIONS(7459), - [anon_sym_PERCENT] = ACTIONS(7457), - [anon_sym_PIPE_PIPE] = ACTIONS(7457), - [anon_sym_AMP_AMP] = ACTIONS(7457), - [anon_sym_PIPE] = ACTIONS(7459), - [anon_sym_CARET] = ACTIONS(7457), - [anon_sym_AMP] = ACTIONS(7459), - [anon_sym_EQ_EQ] = ACTIONS(7457), - [anon_sym_BANG_EQ] = ACTIONS(7457), - [anon_sym_GT] = ACTIONS(7459), - [anon_sym_GT_EQ] = ACTIONS(7457), - [anon_sym_LT_EQ] = ACTIONS(7459), - [anon_sym_LT] = ACTIONS(7459), - [anon_sym_LT_LT] = ACTIONS(7457), - [anon_sym_GT_GT] = ACTIONS(7457), - [anon_sym_SEMI] = ACTIONS(7457), - [anon_sym___extension__] = ACTIONS(7459), - [anon_sym___attribute__] = ACTIONS(7459), - [anon_sym___attribute] = ACTIONS(7459), - [anon_sym_COLON] = ACTIONS(7459), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7457), - [anon_sym___based] = ACTIONS(7459), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_RBRACE] = ACTIONS(7457), - [anon_sym_signed] = ACTIONS(7459), - [anon_sym_unsigned] = ACTIONS(7459), - [anon_sym_long] = ACTIONS(7459), - [anon_sym_short] = ACTIONS(7459), - [anon_sym_LBRACK] = ACTIONS(7457), - [anon_sym_const] = ACTIONS(7459), - [anon_sym_constexpr] = ACTIONS(7459), - [anon_sym_volatile] = ACTIONS(7459), - [anon_sym_restrict] = ACTIONS(7459), - [anon_sym___restrict__] = ACTIONS(7459), - [anon_sym__Atomic] = ACTIONS(7459), - [anon_sym__Noreturn] = ACTIONS(7459), - [anon_sym_noreturn] = ACTIONS(7459), - [anon_sym__Nonnull] = ACTIONS(7459), - [anon_sym_mutable] = ACTIONS(7459), - [anon_sym_constinit] = ACTIONS(7459), - [anon_sym_consteval] = ACTIONS(7459), - [anon_sym_alignas] = ACTIONS(7459), - [anon_sym__Alignas] = ACTIONS(7459), - [sym_primitive_type] = ACTIONS(7459), - [anon_sym_QMARK] = ACTIONS(7457), - [anon_sym_LT_EQ_GT] = ACTIONS(7457), - [anon_sym_or] = ACTIONS(7459), - [anon_sym_and] = ACTIONS(7459), - [anon_sym_bitor] = ACTIONS(7459), - [anon_sym_xor] = ACTIONS(7459), - [anon_sym_bitand] = ACTIONS(7459), - [anon_sym_not_eq] = ACTIONS(7459), - [anon_sym_DASH_DASH] = ACTIONS(7457), - [anon_sym_PLUS_PLUS] = ACTIONS(7457), - [anon_sym_DOT] = ACTIONS(7459), - [anon_sym_DOT_STAR] = ACTIONS(7457), - [anon_sym_DASH_GT] = ACTIONS(7457), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7459), - [anon_sym_override] = ACTIONS(7459), - [anon_sym_requires] = ACTIONS(7459), - [anon_sym_COLON_RBRACK] = ACTIONS(7457), + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [sym_identifier] = ACTIONS(5619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [aux_sym_preproc_if_token2] = ACTIONS(5611), + [aux_sym_preproc_else_token1] = ACTIONS(5611), + [aux_sym_preproc_elif_token1] = ACTIONS(5619), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5611), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(8984), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(6766), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(6768), + [anon_sym_SLASH_EQ] = ACTIONS(6768), + [anon_sym_PERCENT_EQ] = ACTIONS(6768), + [anon_sym_PLUS_EQ] = ACTIONS(6768), + [anon_sym_DASH_EQ] = ACTIONS(6768), + [anon_sym_LT_LT_EQ] = ACTIONS(6768), + [anon_sym_GT_GT_EQ] = ACTIONS(6768), + [anon_sym_AMP_EQ] = ACTIONS(6768), + [anon_sym_CARET_EQ] = ACTIONS(6768), + [anon_sym_PIPE_EQ] = ACTIONS(6768), + [anon_sym_and_eq] = ACTIONS(6766), + [anon_sym_or_eq] = ACTIONS(6766), + [anon_sym_xor_eq] = ACTIONS(6766), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), }, [STATE(3061)] = { - [sym_attribute_specifier] = STATE(2903), - [sym_attribute_declaration] = STATE(3125), - [sym_gnu_asm_expression] = STATE(9090), - [sym_virtual_specifier] = STATE(3433), - [sym__function_attributes_end] = STATE(4233), - [sym__function_postfix] = STATE(3675), - [sym_trailing_return_type] = STATE(2973), - [sym_requires_clause] = STATE(3675), - [aux_sym_type_definition_repeat1] = STATE(2903), - [aux_sym_attributed_declarator_repeat1] = STATE(3125), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___attribute__] = ACTIONS(8970), - [anon_sym___attribute] = ACTIONS(8973), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8422), - [anon_sym_or_eq] = ACTIONS(8422), - [anon_sym_xor_eq] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8976), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6561), - [anon_sym_override] = ACTIONS(6561), - [anon_sym_requires] = ACTIONS(6563), + [sym_virtual_specifier] = STATE(3431), + [sym__function_postfix] = STATE(3690), + [sym_requires_clause] = STATE(3690), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(7972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [aux_sym_preproc_if_token2] = ACTIONS(7970), + [aux_sym_preproc_else_token1] = ACTIONS(7970), + [aux_sym_preproc_elif_token1] = ACTIONS(7972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(7972), + [anon_sym___attribute] = ACTIONS(7972), + [anon_sym_COLON] = ACTIONS(7972), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7970), + [anon_sym_RBRACE] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(7970), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7972), + [anon_sym_or_eq] = ACTIONS(7972), + [anon_sym_xor_eq] = ACTIONS(7972), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7972), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7972), + [anon_sym_not_eq] = ACTIONS(7972), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7970), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7995), + [anon_sym_override] = ACTIONS(7995), + [anon_sym_requires] = ACTIONS(7998), + [anon_sym_COLON_RBRACK] = ACTIONS(7970), }, [STATE(3062)] = { - [sym__abstract_declarator] = STATE(6158), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2966), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2079), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2966), - [sym_identifier] = ACTIONS(7393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [aux_sym_preproc_if_token2] = ACTIONS(7391), - [aux_sym_preproc_else_token1] = ACTIONS(7391), - [aux_sym_preproc_elif_token1] = ACTIONS(7393), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7391), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(8086), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(8088), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(8090), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7393), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7393), - [anon_sym_not_eq] = ACTIONS(7393), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7393), - [anon_sym_override] = ACTIONS(7393), - [anon_sym_requires] = ACTIONS(7393), + [sym_virtual_specifier] = STATE(3431), + [sym__function_postfix] = STATE(3654), + [sym_requires_clause] = STATE(3654), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(8404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [aux_sym_preproc_if_token2] = ACTIONS(8402), + [aux_sym_preproc_else_token1] = ACTIONS(8402), + [aux_sym_preproc_elif_token1] = ACTIONS(8404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8402), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8402), + [anon_sym___attribute__] = ACTIONS(8404), + [anon_sym___attribute] = ACTIONS(8404), + [anon_sym_COLON] = ACTIONS(8404), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8402), + [anon_sym_RBRACE] = ACTIONS(8402), + [anon_sym_LBRACK] = ACTIONS(8402), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8404), + [anon_sym_or_eq] = ACTIONS(8404), + [anon_sym_xor_eq] = ACTIONS(8404), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8404), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8404), + [anon_sym_not_eq] = ACTIONS(8404), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8402), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8447), + [anon_sym_override] = ACTIONS(8447), + [anon_sym_requires] = ACTIONS(8450), + [anon_sym_COLON_RBRACK] = ACTIONS(8402), }, [STATE(3063)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), - [anon_sym_COMMA] = ACTIONS(7609), - [anon_sym_RPAREN] = ACTIONS(7609), - [anon_sym_LPAREN2] = ACTIONS(7609), - [anon_sym_DASH] = ACTIONS(7607), - [anon_sym_PLUS] = ACTIONS(7607), - [anon_sym_STAR] = ACTIONS(7607), - [anon_sym_SLASH] = ACTIONS(7607), - [anon_sym_PERCENT] = ACTIONS(7607), - [anon_sym_PIPE_PIPE] = ACTIONS(7609), - [anon_sym_AMP_AMP] = ACTIONS(7609), - [anon_sym_PIPE] = ACTIONS(7607), - [anon_sym_CARET] = ACTIONS(7607), - [anon_sym_AMP] = ACTIONS(7607), - [anon_sym_EQ_EQ] = ACTIONS(7609), - [anon_sym_BANG_EQ] = ACTIONS(7609), - [anon_sym_GT] = ACTIONS(7607), - [anon_sym_GT_EQ] = ACTIONS(7609), - [anon_sym_LT_EQ] = ACTIONS(7607), - [anon_sym_LT] = ACTIONS(7607), - [anon_sym_LT_LT] = ACTIONS(7607), - [anon_sym_GT_GT] = ACTIONS(7607), - [anon_sym___extension__] = ACTIONS(7609), - [anon_sym_LBRACE] = ACTIONS(7609), - [anon_sym_LBRACK] = ACTIONS(7609), - [anon_sym_EQ] = ACTIONS(7607), - [anon_sym_const] = ACTIONS(7607), - [anon_sym_constexpr] = ACTIONS(7609), - [anon_sym_volatile] = ACTIONS(7609), - [anon_sym_restrict] = ACTIONS(7609), - [anon_sym___restrict__] = ACTIONS(7609), - [anon_sym__Atomic] = ACTIONS(7609), - [anon_sym__Noreturn] = ACTIONS(7609), - [anon_sym_noreturn] = ACTIONS(7609), - [anon_sym__Nonnull] = ACTIONS(7609), - [anon_sym_mutable] = ACTIONS(7609), - [anon_sym_constinit] = ACTIONS(7609), - [anon_sym_consteval] = ACTIONS(7609), - [anon_sym_alignas] = ACTIONS(7609), - [anon_sym__Alignas] = ACTIONS(7609), - [anon_sym_QMARK] = ACTIONS(7609), - [anon_sym_STAR_EQ] = ACTIONS(7609), - [anon_sym_SLASH_EQ] = ACTIONS(7609), - [anon_sym_PERCENT_EQ] = ACTIONS(7609), - [anon_sym_PLUS_EQ] = ACTIONS(7609), - [anon_sym_DASH_EQ] = ACTIONS(7609), - [anon_sym_LT_LT_EQ] = ACTIONS(7609), - [anon_sym_GT_GT_EQ] = ACTIONS(7609), - [anon_sym_AMP_EQ] = ACTIONS(7609), - [anon_sym_CARET_EQ] = ACTIONS(7609), - [anon_sym_PIPE_EQ] = ACTIONS(7609), - [anon_sym_and_eq] = ACTIONS(7609), - [anon_sym_or_eq] = ACTIONS(7609), - [anon_sym_xor_eq] = ACTIONS(7609), - [anon_sym_LT_EQ_GT] = ACTIONS(7609), - [anon_sym_or] = ACTIONS(7607), - [anon_sym_and] = ACTIONS(7607), - [anon_sym_bitor] = ACTIONS(7609), - [anon_sym_xor] = ACTIONS(7607), - [anon_sym_bitand] = ACTIONS(7609), - [anon_sym_not_eq] = ACTIONS(7609), - [anon_sym_DASH_DASH] = ACTIONS(7609), - [anon_sym_PLUS_PLUS] = ACTIONS(7609), - [anon_sym_DOT] = ACTIONS(7607), - [anon_sym_DOT_STAR] = ACTIONS(7609), - [anon_sym_DASH_GT] = ACTIONS(7607), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7609), - [anon_sym_override] = ACTIONS(7609), - [anon_sym_requires] = ACTIONS(7609), - [anon_sym_DASH_GT_STAR] = ACTIONS(7609), + [sym_virtual_specifier] = STATE(3431), + [sym__function_postfix] = STATE(3595), + [sym_requires_clause] = STATE(3595), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(8987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8989), + [anon_sym_COMMA] = ACTIONS(8989), + [anon_sym_RPAREN] = ACTIONS(8989), + [aux_sym_preproc_if_token2] = ACTIONS(8989), + [aux_sym_preproc_else_token1] = ACTIONS(8989), + [aux_sym_preproc_elif_token1] = ACTIONS(8987), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8989), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8989), + [anon_sym_LPAREN2] = ACTIONS(8989), + [anon_sym_DASH] = ACTIONS(8987), + [anon_sym_PLUS] = ACTIONS(8987), + [anon_sym_STAR] = ACTIONS(8987), + [anon_sym_SLASH] = ACTIONS(8987), + [anon_sym_PERCENT] = ACTIONS(8987), + [anon_sym_PIPE_PIPE] = ACTIONS(8989), + [anon_sym_AMP_AMP] = ACTIONS(8989), + [anon_sym_PIPE] = ACTIONS(8987), + [anon_sym_CARET] = ACTIONS(8987), + [anon_sym_AMP] = ACTIONS(8987), + [anon_sym_EQ_EQ] = ACTIONS(8989), + [anon_sym_BANG_EQ] = ACTIONS(8989), + [anon_sym_GT] = ACTIONS(8987), + [anon_sym_GT_EQ] = ACTIONS(8989), + [anon_sym_LT_EQ] = ACTIONS(8987), + [anon_sym_LT] = ACTIONS(8987), + [anon_sym_LT_LT] = ACTIONS(8987), + [anon_sym_GT_GT] = ACTIONS(8987), + [anon_sym_SEMI] = ACTIONS(8989), + [anon_sym___attribute__] = ACTIONS(8987), + [anon_sym___attribute] = ACTIONS(8987), + [anon_sym_COLON] = ACTIONS(8987), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8989), + [anon_sym_RBRACE] = ACTIONS(8989), + [anon_sym_LBRACK] = ACTIONS(8989), + [anon_sym_EQ] = ACTIONS(8987), + [anon_sym_QMARK] = ACTIONS(8989), + [anon_sym_STAR_EQ] = ACTIONS(8989), + [anon_sym_SLASH_EQ] = ACTIONS(8989), + [anon_sym_PERCENT_EQ] = ACTIONS(8989), + [anon_sym_PLUS_EQ] = ACTIONS(8989), + [anon_sym_DASH_EQ] = ACTIONS(8989), + [anon_sym_LT_LT_EQ] = ACTIONS(8989), + [anon_sym_GT_GT_EQ] = ACTIONS(8989), + [anon_sym_AMP_EQ] = ACTIONS(8989), + [anon_sym_CARET_EQ] = ACTIONS(8989), + [anon_sym_PIPE_EQ] = ACTIONS(8989), + [anon_sym_and_eq] = ACTIONS(8987), + [anon_sym_or_eq] = ACTIONS(8987), + [anon_sym_xor_eq] = ACTIONS(8987), + [anon_sym_LT_EQ_GT] = ACTIONS(8989), + [anon_sym_or] = ACTIONS(8987), + [anon_sym_and] = ACTIONS(8987), + [anon_sym_bitor] = ACTIONS(8987), + [anon_sym_xor] = ACTIONS(8987), + [anon_sym_bitand] = ACTIONS(8987), + [anon_sym_not_eq] = ACTIONS(8987), + [anon_sym_DASH_DASH] = ACTIONS(8989), + [anon_sym_PLUS_PLUS] = ACTIONS(8989), + [anon_sym_DOT] = ACTIONS(8987), + [anon_sym_DOT_STAR] = ACTIONS(8989), + [anon_sym_DASH_GT] = ACTIONS(8989), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8991), + [anon_sym_override] = ACTIONS(8991), + [anon_sym_requires] = ACTIONS(8994), + [anon_sym_COLON_RBRACK] = ACTIONS(8989), }, [STATE(3064)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), - [anon_sym_COMMA] = ACTIONS(7625), - [anon_sym_RPAREN] = ACTIONS(7625), - [anon_sym_LPAREN2] = ACTIONS(7625), - [anon_sym_DASH] = ACTIONS(7623), - [anon_sym_PLUS] = ACTIONS(7623), - [anon_sym_STAR] = ACTIONS(7623), - [anon_sym_SLASH] = ACTIONS(7623), - [anon_sym_PERCENT] = ACTIONS(7623), - [anon_sym_PIPE_PIPE] = ACTIONS(7625), - [anon_sym_AMP_AMP] = ACTIONS(7625), - [anon_sym_PIPE] = ACTIONS(7623), - [anon_sym_CARET] = ACTIONS(7623), - [anon_sym_AMP] = ACTIONS(7623), - [anon_sym_EQ_EQ] = ACTIONS(7625), - [anon_sym_BANG_EQ] = ACTIONS(7625), - [anon_sym_GT] = ACTIONS(7623), - [anon_sym_GT_EQ] = ACTIONS(7625), - [anon_sym_LT_EQ] = ACTIONS(7623), - [anon_sym_LT] = ACTIONS(7623), - [anon_sym_LT_LT] = ACTIONS(7623), - [anon_sym_GT_GT] = ACTIONS(7623), - [anon_sym___extension__] = ACTIONS(7625), - [anon_sym_LBRACE] = ACTIONS(7625), - [anon_sym_LBRACK] = ACTIONS(7625), - [anon_sym_EQ] = ACTIONS(7623), - [anon_sym_const] = ACTIONS(7623), - [anon_sym_constexpr] = ACTIONS(7625), - [anon_sym_volatile] = ACTIONS(7625), - [anon_sym_restrict] = ACTIONS(7625), - [anon_sym___restrict__] = ACTIONS(7625), - [anon_sym__Atomic] = ACTIONS(7625), - [anon_sym__Noreturn] = ACTIONS(7625), - [anon_sym_noreturn] = ACTIONS(7625), - [anon_sym__Nonnull] = ACTIONS(7625), - [anon_sym_mutable] = ACTIONS(7625), - [anon_sym_constinit] = ACTIONS(7625), - [anon_sym_consteval] = ACTIONS(7625), - [anon_sym_alignas] = ACTIONS(7625), - [anon_sym__Alignas] = ACTIONS(7625), - [anon_sym_QMARK] = ACTIONS(7625), - [anon_sym_STAR_EQ] = ACTIONS(7625), - [anon_sym_SLASH_EQ] = ACTIONS(7625), - [anon_sym_PERCENT_EQ] = ACTIONS(7625), - [anon_sym_PLUS_EQ] = ACTIONS(7625), - [anon_sym_DASH_EQ] = ACTIONS(7625), - [anon_sym_LT_LT_EQ] = ACTIONS(7625), - [anon_sym_GT_GT_EQ] = ACTIONS(7625), - [anon_sym_AMP_EQ] = ACTIONS(7625), - [anon_sym_CARET_EQ] = ACTIONS(7625), - [anon_sym_PIPE_EQ] = ACTIONS(7625), - [anon_sym_and_eq] = ACTIONS(7625), - [anon_sym_or_eq] = ACTIONS(7625), - [anon_sym_xor_eq] = ACTIONS(7625), - [anon_sym_LT_EQ_GT] = ACTIONS(7625), - [anon_sym_or] = ACTIONS(7623), - [anon_sym_and] = ACTIONS(7623), - [anon_sym_bitor] = ACTIONS(7625), - [anon_sym_xor] = ACTIONS(7623), - [anon_sym_bitand] = ACTIONS(7625), - [anon_sym_not_eq] = ACTIONS(7625), - [anon_sym_DASH_DASH] = ACTIONS(7625), - [anon_sym_PLUS_PLUS] = ACTIONS(7625), - [anon_sym_DOT] = ACTIONS(7623), - [anon_sym_DOT_STAR] = ACTIONS(7625), - [anon_sym_DASH_GT] = ACTIONS(7623), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7625), - [anon_sym_override] = ACTIONS(7625), - [anon_sym_requires] = ACTIONS(7625), - [anon_sym_DASH_GT_STAR] = ACTIONS(7625), + [sym_virtual_specifier] = STATE(3431), + [sym__function_postfix] = STATE(3679), + [sym_requires_clause] = STATE(3679), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(8997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8999), + [anon_sym_COMMA] = ACTIONS(8999), + [anon_sym_RPAREN] = ACTIONS(8999), + [aux_sym_preproc_if_token2] = ACTIONS(8999), + [aux_sym_preproc_else_token1] = ACTIONS(8999), + [aux_sym_preproc_elif_token1] = ACTIONS(8997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8999), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8999), + [anon_sym_LPAREN2] = ACTIONS(8999), + [anon_sym_DASH] = ACTIONS(8997), + [anon_sym_PLUS] = ACTIONS(8997), + [anon_sym_STAR] = ACTIONS(8997), + [anon_sym_SLASH] = ACTIONS(8997), + [anon_sym_PERCENT] = ACTIONS(8997), + [anon_sym_PIPE_PIPE] = ACTIONS(8999), + [anon_sym_AMP_AMP] = ACTIONS(8999), + [anon_sym_PIPE] = ACTIONS(8997), + [anon_sym_CARET] = ACTIONS(8997), + [anon_sym_AMP] = ACTIONS(8997), + [anon_sym_EQ_EQ] = ACTIONS(8999), + [anon_sym_BANG_EQ] = ACTIONS(8999), + [anon_sym_GT] = ACTIONS(8997), + [anon_sym_GT_EQ] = ACTIONS(8999), + [anon_sym_LT_EQ] = ACTIONS(8997), + [anon_sym_LT] = ACTIONS(8997), + [anon_sym_LT_LT] = ACTIONS(8997), + [anon_sym_GT_GT] = ACTIONS(8997), + [anon_sym_SEMI] = ACTIONS(8999), + [anon_sym___attribute__] = ACTIONS(8997), + [anon_sym___attribute] = ACTIONS(8997), + [anon_sym_COLON] = ACTIONS(8997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8999), + [anon_sym_RBRACE] = ACTIONS(8999), + [anon_sym_LBRACK] = ACTIONS(8999), + [anon_sym_EQ] = ACTIONS(8997), + [anon_sym_QMARK] = ACTIONS(8999), + [anon_sym_STAR_EQ] = ACTIONS(8999), + [anon_sym_SLASH_EQ] = ACTIONS(8999), + [anon_sym_PERCENT_EQ] = ACTIONS(8999), + [anon_sym_PLUS_EQ] = ACTIONS(8999), + [anon_sym_DASH_EQ] = ACTIONS(8999), + [anon_sym_LT_LT_EQ] = ACTIONS(8999), + [anon_sym_GT_GT_EQ] = ACTIONS(8999), + [anon_sym_AMP_EQ] = ACTIONS(8999), + [anon_sym_CARET_EQ] = ACTIONS(8999), + [anon_sym_PIPE_EQ] = ACTIONS(8999), + [anon_sym_and_eq] = ACTIONS(8997), + [anon_sym_or_eq] = ACTIONS(8997), + [anon_sym_xor_eq] = ACTIONS(8997), + [anon_sym_LT_EQ_GT] = ACTIONS(8999), + [anon_sym_or] = ACTIONS(8997), + [anon_sym_and] = ACTIONS(8997), + [anon_sym_bitor] = ACTIONS(8997), + [anon_sym_xor] = ACTIONS(8997), + [anon_sym_bitand] = ACTIONS(8997), + [anon_sym_not_eq] = ACTIONS(8997), + [anon_sym_DASH_DASH] = ACTIONS(8999), + [anon_sym_PLUS_PLUS] = ACTIONS(8999), + [anon_sym_DOT] = ACTIONS(8997), + [anon_sym_DOT_STAR] = ACTIONS(8999), + [anon_sym_DASH_GT] = ACTIONS(8999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9001), + [anon_sym_override] = ACTIONS(9001), + [anon_sym_requires] = ACTIONS(9004), + [anon_sym_COLON_RBRACK] = ACTIONS(8999), }, [STATE(3065)] = { - [sym_identifier] = ACTIONS(9007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9009), - [anon_sym_COMMA] = ACTIONS(9009), - [anon_sym_RPAREN] = ACTIONS(9009), - [aux_sym_preproc_if_token2] = ACTIONS(9009), - [aux_sym_preproc_else_token1] = ACTIONS(9009), - [aux_sym_preproc_elif_token1] = ACTIONS(9007), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9009), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9009), - [anon_sym_LPAREN2] = ACTIONS(9009), - [anon_sym_DASH] = ACTIONS(9007), - [anon_sym_PLUS] = ACTIONS(9007), - [anon_sym_STAR] = ACTIONS(9007), - [anon_sym_SLASH] = ACTIONS(9007), - [anon_sym_PERCENT] = ACTIONS(9007), - [anon_sym_PIPE_PIPE] = ACTIONS(9009), - [anon_sym_AMP_AMP] = ACTIONS(9009), - [anon_sym_PIPE] = ACTIONS(9007), - [anon_sym_CARET] = ACTIONS(9007), - [anon_sym_AMP] = ACTIONS(9007), - [anon_sym_EQ_EQ] = ACTIONS(9009), - [anon_sym_BANG_EQ] = ACTIONS(9009), - [anon_sym_GT] = ACTIONS(9007), - [anon_sym_GT_EQ] = ACTIONS(9009), - [anon_sym_LT_EQ] = ACTIONS(9007), + [sym_template_argument_list] = STATE(3085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6570), + [anon_sym_PLUS] = ACTIONS(6570), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6570), + [anon_sym_PIPE_PIPE] = ACTIONS(6563), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6570), + [anon_sym_CARET] = ACTIONS(6570), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6563), + [anon_sym_BANG_EQ] = ACTIONS(6563), + [anon_sym_GT] = ACTIONS(6570), + [anon_sym_GT_EQ] = ACTIONS(6570), + [anon_sym_LT_EQ] = ACTIONS(6570), [anon_sym_LT] = ACTIONS(9007), - [anon_sym_LT_LT] = ACTIONS(9007), - [anon_sym_GT_GT] = ACTIONS(9007), - [anon_sym_SEMI] = ACTIONS(9009), - [anon_sym___attribute__] = ACTIONS(9007), - [anon_sym___attribute] = ACTIONS(9007), - [anon_sym_COLON] = ACTIONS(9007), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9009), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9009), - [anon_sym_RBRACE] = ACTIONS(9009), - [anon_sym_LBRACK] = ACTIONS(9007), - [anon_sym_EQ] = ACTIONS(9007), - [anon_sym_QMARK] = ACTIONS(9009), - [anon_sym_STAR_EQ] = ACTIONS(9009), - [anon_sym_SLASH_EQ] = ACTIONS(9009), - [anon_sym_PERCENT_EQ] = ACTIONS(9009), - [anon_sym_PLUS_EQ] = ACTIONS(9009), - [anon_sym_DASH_EQ] = ACTIONS(9009), - [anon_sym_LT_LT_EQ] = ACTIONS(9009), - [anon_sym_GT_GT_EQ] = ACTIONS(9009), - [anon_sym_AMP_EQ] = ACTIONS(9009), - [anon_sym_CARET_EQ] = ACTIONS(9009), - [anon_sym_PIPE_EQ] = ACTIONS(9009), - [anon_sym_and_eq] = ACTIONS(9007), - [anon_sym_or_eq] = ACTIONS(9007), - [anon_sym_xor_eq] = ACTIONS(9007), - [anon_sym_LT_EQ_GT] = ACTIONS(9009), - [anon_sym_or] = ACTIONS(9007), - [anon_sym_and] = ACTIONS(9007), - [anon_sym_bitor] = ACTIONS(9007), - [anon_sym_xor] = ACTIONS(9007), - [anon_sym_bitand] = ACTIONS(9007), - [anon_sym_not_eq] = ACTIONS(9007), - [anon_sym_DASH_DASH] = ACTIONS(9009), - [anon_sym_PLUS_PLUS] = ACTIONS(9009), - [anon_sym_asm] = ACTIONS(9007), - [anon_sym___asm__] = ACTIONS(9007), - [anon_sym___asm] = ACTIONS(9007), - [anon_sym_DOT] = ACTIONS(9007), - [anon_sym_DOT_STAR] = ACTIONS(9009), - [anon_sym_DASH_GT] = ACTIONS(9009), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9007), - [anon_sym_override] = ACTIONS(9007), - [anon_sym_requires] = ACTIONS(9007), - [anon_sym_COLON_RBRACK] = ACTIONS(9009), + [anon_sym_LT_LT] = ACTIONS(6570), + [anon_sym_GT_GT] = ACTIONS(6570), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6563), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6568), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6561), + [anon_sym_or_eq] = ACTIONS(6561), + [anon_sym_xor_eq] = ACTIONS(6561), + [anon_sym_LT_EQ_GT] = ACTIONS(6563), + [anon_sym_or] = ACTIONS(6570), + [anon_sym_and] = ACTIONS(6570), + [anon_sym_bitor] = ACTIONS(6563), + [anon_sym_xor] = ACTIONS(6570), + [anon_sym_bitand] = ACTIONS(6563), + [anon_sym_not_eq] = ACTIONS(6563), + [anon_sym_DASH_DASH] = ACTIONS(6563), + [anon_sym_PLUS_PLUS] = ACTIONS(6563), + [anon_sym_DOT] = ACTIONS(6570), + [anon_sym_DOT_STAR] = ACTIONS(6563), + [anon_sym_DASH_GT] = ACTIONS(6563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_GT2] = ACTIONS(6563), }, [STATE(3066)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_RPAREN] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7595), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7595), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7595), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7595), - [anon_sym_GT_GT] = ACTIONS(7595), - [anon_sym___extension__] = ACTIONS(7597), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_EQ] = ACTIONS(7595), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7597), - [anon_sym_volatile] = ACTIONS(7597), - [anon_sym_restrict] = ACTIONS(7597), - [anon_sym___restrict__] = ACTIONS(7597), - [anon_sym__Atomic] = ACTIONS(7597), - [anon_sym__Noreturn] = ACTIONS(7597), - [anon_sym_noreturn] = ACTIONS(7597), - [anon_sym__Nonnull] = ACTIONS(7597), - [anon_sym_mutable] = ACTIONS(7597), - [anon_sym_constinit] = ACTIONS(7597), - [anon_sym_consteval] = ACTIONS(7597), - [anon_sym_alignas] = ACTIONS(7597), - [anon_sym__Alignas] = ACTIONS(7597), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_STAR_EQ] = ACTIONS(7597), - [anon_sym_SLASH_EQ] = ACTIONS(7597), - [anon_sym_PERCENT_EQ] = ACTIONS(7597), - [anon_sym_PLUS_EQ] = ACTIONS(7597), - [anon_sym_DASH_EQ] = ACTIONS(7597), - [anon_sym_LT_LT_EQ] = ACTIONS(7597), - [anon_sym_GT_GT_EQ] = ACTIONS(7597), - [anon_sym_AMP_EQ] = ACTIONS(7597), - [anon_sym_CARET_EQ] = ACTIONS(7597), - [anon_sym_PIPE_EQ] = ACTIONS(7597), - [anon_sym_and_eq] = ACTIONS(7597), - [anon_sym_or_eq] = ACTIONS(7597), - [anon_sym_xor_eq] = ACTIONS(7597), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7595), - [anon_sym_and] = ACTIONS(7595), - [anon_sym_bitor] = ACTIONS(7597), - [anon_sym_xor] = ACTIONS(7595), - [anon_sym_bitand] = ACTIONS(7597), - [anon_sym_not_eq] = ACTIONS(7597), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7595), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7597), - [anon_sym_override] = ACTIONS(7597), - [anon_sym_requires] = ACTIONS(7597), - [anon_sym_DASH_GT_STAR] = ACTIONS(7597), + [sym_argument_list] = STATE(5602), + [sym_initializer_list] = STATE(5604), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(3067)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + [sym_virtual_specifier] = STATE(3431), + [sym__function_postfix] = STATE(3654), + [sym_requires_clause] = STATE(3654), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(8404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [aux_sym_preproc_if_token2] = ACTIONS(8402), + [aux_sym_preproc_else_token1] = ACTIONS(8402), + [aux_sym_preproc_elif_token1] = ACTIONS(8404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8402), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8402), + [anon_sym___attribute__] = ACTIONS(8404), + [anon_sym___attribute] = ACTIONS(8404), + [anon_sym_COLON] = ACTIONS(8404), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8402), + [anon_sym_RBRACE] = ACTIONS(8402), + [anon_sym_LBRACK] = ACTIONS(8402), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8404), + [anon_sym_or_eq] = ACTIONS(8404), + [anon_sym_xor_eq] = ACTIONS(8404), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8404), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8404), + [anon_sym_not_eq] = ACTIONS(8404), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8402), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6557), + [anon_sym_COLON_RBRACK] = ACTIONS(8402), }, [STATE(3068)] = { + [sym_ms_unaligned_ptr_modifier] = STATE(4311), + [sym_ms_pointer_modifier] = STATE(4006), + [sym__abstract_declarator] = STATE(6744), + [sym_abstract_parenthesized_declarator] = STATE(6694), + [sym_abstract_pointer_declarator] = STATE(6694), + [sym_abstract_function_declarator] = STATE(6694), + [sym_abstract_array_declarator] = STATE(6694), + [sym_type_qualifier] = STATE(3986), + [sym_alignas_qualifier] = STATE(3830), + [sym_parameter_list] = STATE(2275), + [sym_abstract_reference_declarator] = STATE(6694), + [sym__function_declarator_seq] = STATE(6695), + [aux_sym__type_definition_type_repeat1] = STATE(3986), + [aux_sym_pointer_declarator_repeat1] = STATE(4006), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8568), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8978), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8980), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8982), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6841), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(8576), + [sym_ms_restrict_modifier] = ACTIONS(8578), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(8580), + [sym_ms_signed_ptr_modifier] = ACTIONS(8580), + [anon_sym__unaligned] = ACTIONS(8582), + [anon_sym___unaligned] = ACTIONS(8582), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8576), + [anon_sym_volatile] = ACTIONS(8576), + [anon_sym_restrict] = ACTIONS(8576), + [anon_sym___restrict__] = ACTIONS(8576), + [anon_sym__Atomic] = ACTIONS(8576), + [anon_sym__Noreturn] = ACTIONS(8576), + [anon_sym_noreturn] = ACTIONS(8576), + [anon_sym__Nonnull] = ACTIONS(8576), + [anon_sym_mutable] = ACTIONS(8576), + [anon_sym_constinit] = ACTIONS(8576), + [anon_sym_consteval] = ACTIONS(8576), + [anon_sym_alignas] = ACTIONS(8588), + [anon_sym__Alignas] = ACTIONS(8588), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(6843), + }, + [STATE(3069)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_RPAREN] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym___extension__] = ACTIONS(7146), + [anon_sym_LBRACE] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7146), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7146), + [anon_sym_volatile] = ACTIONS(7146), + [anon_sym_restrict] = ACTIONS(7146), + [anon_sym___restrict__] = ACTIONS(7146), + [anon_sym__Atomic] = ACTIONS(7146), + [anon_sym__Noreturn] = ACTIONS(7146), + [anon_sym_noreturn] = ACTIONS(7146), + [anon_sym__Nonnull] = ACTIONS(7146), + [anon_sym_mutable] = ACTIONS(7146), + [anon_sym_constinit] = ACTIONS(7146), + [anon_sym_consteval] = ACTIONS(7146), + [anon_sym_alignas] = ACTIONS(7146), + [anon_sym__Alignas] = ACTIONS(7146), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7146), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_and_eq] = ACTIONS(7146), + [anon_sym_or_eq] = ACTIONS(7146), + [anon_sym_xor_eq] = ACTIONS(7146), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7144), + [anon_sym_and] = ACTIONS(7144), + [anon_sym_bitor] = ACTIONS(7146), + [anon_sym_xor] = ACTIONS(7144), + [anon_sym_bitand] = ACTIONS(7146), + [anon_sym_not_eq] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7144), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7146), + [anon_sym_override] = ACTIONS(7146), + [anon_sym_requires] = ACTIONS(7146), + [anon_sym_DASH_GT_STAR] = ACTIONS(7146), + }, + [STATE(3070)] = { + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym__function_attributes_end] = STATE(4390), + [sym__function_postfix] = STATE(5251), + [sym_trailing_return_type] = STATE(4491), + [sym_requires_clause] = STATE(5251), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_RBRACK] = ACTIONS(7874), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7874), + [anon_sym_or_eq] = ACTIONS(7874), + [anon_sym_xor_eq] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8265), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6717), + [anon_sym_override] = ACTIONS(6717), + [anon_sym_requires] = ACTIONS(6723), + }, + [STATE(3071)] = { + [sym_virtual_specifier] = STATE(3431), + [sym__function_postfix] = STATE(3595), + [sym_requires_clause] = STATE(3595), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(8987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8989), + [anon_sym_COMMA] = ACTIONS(8989), + [anon_sym_RPAREN] = ACTIONS(8989), + [aux_sym_preproc_if_token2] = ACTIONS(8989), + [aux_sym_preproc_else_token1] = ACTIONS(8989), + [aux_sym_preproc_elif_token1] = ACTIONS(8987), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8989), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8989), + [anon_sym_LPAREN2] = ACTIONS(8989), + [anon_sym_DASH] = ACTIONS(8987), + [anon_sym_PLUS] = ACTIONS(8987), + [anon_sym_STAR] = ACTIONS(8987), + [anon_sym_SLASH] = ACTIONS(8987), + [anon_sym_PERCENT] = ACTIONS(8987), + [anon_sym_PIPE_PIPE] = ACTIONS(8989), + [anon_sym_AMP_AMP] = ACTIONS(8989), + [anon_sym_PIPE] = ACTIONS(8987), + [anon_sym_CARET] = ACTIONS(8987), + [anon_sym_AMP] = ACTIONS(8987), + [anon_sym_EQ_EQ] = ACTIONS(8989), + [anon_sym_BANG_EQ] = ACTIONS(8989), + [anon_sym_GT] = ACTIONS(8987), + [anon_sym_GT_EQ] = ACTIONS(8989), + [anon_sym_LT_EQ] = ACTIONS(8987), + [anon_sym_LT] = ACTIONS(8987), + [anon_sym_LT_LT] = ACTIONS(8987), + [anon_sym_GT_GT] = ACTIONS(8987), + [anon_sym_SEMI] = ACTIONS(8989), + [anon_sym___attribute__] = ACTIONS(8987), + [anon_sym___attribute] = ACTIONS(8987), + [anon_sym_COLON] = ACTIONS(8987), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8989), + [anon_sym_RBRACE] = ACTIONS(8989), + [anon_sym_LBRACK] = ACTIONS(8989), + [anon_sym_EQ] = ACTIONS(8987), + [anon_sym_QMARK] = ACTIONS(8989), + [anon_sym_STAR_EQ] = ACTIONS(8989), + [anon_sym_SLASH_EQ] = ACTIONS(8989), + [anon_sym_PERCENT_EQ] = ACTIONS(8989), + [anon_sym_PLUS_EQ] = ACTIONS(8989), + [anon_sym_DASH_EQ] = ACTIONS(8989), + [anon_sym_LT_LT_EQ] = ACTIONS(8989), + [anon_sym_GT_GT_EQ] = ACTIONS(8989), + [anon_sym_AMP_EQ] = ACTIONS(8989), + [anon_sym_CARET_EQ] = ACTIONS(8989), + [anon_sym_PIPE_EQ] = ACTIONS(8989), + [anon_sym_and_eq] = ACTIONS(8987), + [anon_sym_or_eq] = ACTIONS(8987), + [anon_sym_xor_eq] = ACTIONS(8987), + [anon_sym_LT_EQ_GT] = ACTIONS(8989), + [anon_sym_or] = ACTIONS(8987), + [anon_sym_and] = ACTIONS(8987), + [anon_sym_bitor] = ACTIONS(8987), + [anon_sym_xor] = ACTIONS(8987), + [anon_sym_bitand] = ACTIONS(8987), + [anon_sym_not_eq] = ACTIONS(8987), + [anon_sym_DASH_DASH] = ACTIONS(8989), + [anon_sym_PLUS_PLUS] = ACTIONS(8989), + [anon_sym_DOT] = ACTIONS(8987), + [anon_sym_DOT_STAR] = ACTIONS(8989), + [anon_sym_DASH_GT] = ACTIONS(8989), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6557), + [anon_sym_COLON_RBRACK] = ACTIONS(8989), + }, + [STATE(3072)] = { + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym__function_attributes_end] = STATE(4341), + [sym__function_postfix] = STATE(5027), + [sym_trailing_return_type] = STATE(4494), + [sym_requires_clause] = STATE(5027), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_RBRACK] = ACTIONS(7970), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7970), + [anon_sym_or_eq] = ACTIONS(7970), + [anon_sym_xor_eq] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8393), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6717), + [anon_sym_override] = ACTIONS(6717), + [anon_sym_requires] = ACTIONS(6723), + }, + [STATE(3073)] = { + [sym_virtual_specifier] = STATE(3431), + [sym__function_postfix] = STATE(3679), + [sym_requires_clause] = STATE(3679), + [aux_sym__function_postfix_repeat1] = STATE(3431), + [sym_identifier] = ACTIONS(8997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8999), + [anon_sym_COMMA] = ACTIONS(8999), + [anon_sym_RPAREN] = ACTIONS(8999), + [aux_sym_preproc_if_token2] = ACTIONS(8999), + [aux_sym_preproc_else_token1] = ACTIONS(8999), + [aux_sym_preproc_elif_token1] = ACTIONS(8997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8999), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8999), + [anon_sym_LPAREN2] = ACTIONS(8999), + [anon_sym_DASH] = ACTIONS(8997), + [anon_sym_PLUS] = ACTIONS(8997), + [anon_sym_STAR] = ACTIONS(8997), + [anon_sym_SLASH] = ACTIONS(8997), + [anon_sym_PERCENT] = ACTIONS(8997), + [anon_sym_PIPE_PIPE] = ACTIONS(8999), + [anon_sym_AMP_AMP] = ACTIONS(8999), + [anon_sym_PIPE] = ACTIONS(8997), + [anon_sym_CARET] = ACTIONS(8997), + [anon_sym_AMP] = ACTIONS(8997), + [anon_sym_EQ_EQ] = ACTIONS(8999), + [anon_sym_BANG_EQ] = ACTIONS(8999), + [anon_sym_GT] = ACTIONS(8997), + [anon_sym_GT_EQ] = ACTIONS(8999), + [anon_sym_LT_EQ] = ACTIONS(8997), + [anon_sym_LT] = ACTIONS(8997), + [anon_sym_LT_LT] = ACTIONS(8997), + [anon_sym_GT_GT] = ACTIONS(8997), + [anon_sym_SEMI] = ACTIONS(8999), + [anon_sym___attribute__] = ACTIONS(8997), + [anon_sym___attribute] = ACTIONS(8997), + [anon_sym_COLON] = ACTIONS(8997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8999), + [anon_sym_RBRACE] = ACTIONS(8999), + [anon_sym_LBRACK] = ACTIONS(8999), + [anon_sym_EQ] = ACTIONS(8997), + [anon_sym_QMARK] = ACTIONS(8999), + [anon_sym_STAR_EQ] = ACTIONS(8999), + [anon_sym_SLASH_EQ] = ACTIONS(8999), + [anon_sym_PERCENT_EQ] = ACTIONS(8999), + [anon_sym_PLUS_EQ] = ACTIONS(8999), + [anon_sym_DASH_EQ] = ACTIONS(8999), + [anon_sym_LT_LT_EQ] = ACTIONS(8999), + [anon_sym_GT_GT_EQ] = ACTIONS(8999), + [anon_sym_AMP_EQ] = ACTIONS(8999), + [anon_sym_CARET_EQ] = ACTIONS(8999), + [anon_sym_PIPE_EQ] = ACTIONS(8999), + [anon_sym_and_eq] = ACTIONS(8997), + [anon_sym_or_eq] = ACTIONS(8997), + [anon_sym_xor_eq] = ACTIONS(8997), + [anon_sym_LT_EQ_GT] = ACTIONS(8999), + [anon_sym_or] = ACTIONS(8997), + [anon_sym_and] = ACTIONS(8997), + [anon_sym_bitor] = ACTIONS(8997), + [anon_sym_xor] = ACTIONS(8997), + [anon_sym_bitand] = ACTIONS(8997), + [anon_sym_not_eq] = ACTIONS(8997), + [anon_sym_DASH_DASH] = ACTIONS(8999), + [anon_sym_PLUS_PLUS] = ACTIONS(8999), + [anon_sym_DOT] = ACTIONS(8997), + [anon_sym_DOT_STAR] = ACTIONS(8999), + [anon_sym_DASH_GT] = ACTIONS(8999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(6557), + [anon_sym_COLON_RBRACK] = ACTIONS(8999), + }, + [STATE(3074)] = { [sym_identifier] = ACTIONS(9011), [anon_sym_LPAREN2] = ACTIONS(9013), [anon_sym_TILDE] = ACTIONS(9013), @@ -398748,1683 +399033,1457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_concept] = ACTIONS(9011), [anon_sym_LBRACK_COLON] = ACTIONS(9013), }, - [STATE(3069)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), - [anon_sym_COMMA] = ACTIONS(7605), - [anon_sym_RPAREN] = ACTIONS(7605), - [anon_sym_LPAREN2] = ACTIONS(7605), - [anon_sym_DASH] = ACTIONS(7603), - [anon_sym_PLUS] = ACTIONS(7603), - [anon_sym_STAR] = ACTIONS(7603), - [anon_sym_SLASH] = ACTIONS(7603), - [anon_sym_PERCENT] = ACTIONS(7603), - [anon_sym_PIPE_PIPE] = ACTIONS(7605), - [anon_sym_AMP_AMP] = ACTIONS(7605), - [anon_sym_PIPE] = ACTIONS(7603), - [anon_sym_CARET] = ACTIONS(7603), - [anon_sym_AMP] = ACTIONS(7603), - [anon_sym_EQ_EQ] = ACTIONS(7605), - [anon_sym_BANG_EQ] = ACTIONS(7605), - [anon_sym_GT] = ACTIONS(7603), - [anon_sym_GT_EQ] = ACTIONS(7605), - [anon_sym_LT_EQ] = ACTIONS(7603), - [anon_sym_LT] = ACTIONS(7603), - [anon_sym_LT_LT] = ACTIONS(7603), - [anon_sym_GT_GT] = ACTIONS(7603), - [anon_sym___extension__] = ACTIONS(7605), - [anon_sym_LBRACE] = ACTIONS(7605), - [anon_sym_LBRACK] = ACTIONS(7605), - [anon_sym_EQ] = ACTIONS(7603), - [anon_sym_const] = ACTIONS(7603), - [anon_sym_constexpr] = ACTIONS(7605), - [anon_sym_volatile] = ACTIONS(7605), - [anon_sym_restrict] = ACTIONS(7605), - [anon_sym___restrict__] = ACTIONS(7605), - [anon_sym__Atomic] = ACTIONS(7605), - [anon_sym__Noreturn] = ACTIONS(7605), - [anon_sym_noreturn] = ACTIONS(7605), - [anon_sym__Nonnull] = ACTIONS(7605), - [anon_sym_mutable] = ACTIONS(7605), - [anon_sym_constinit] = ACTIONS(7605), - [anon_sym_consteval] = ACTIONS(7605), - [anon_sym_alignas] = ACTIONS(7605), - [anon_sym__Alignas] = ACTIONS(7605), - [anon_sym_QMARK] = ACTIONS(7605), - [anon_sym_STAR_EQ] = ACTIONS(7605), - [anon_sym_SLASH_EQ] = ACTIONS(7605), - [anon_sym_PERCENT_EQ] = ACTIONS(7605), - [anon_sym_PLUS_EQ] = ACTIONS(7605), - [anon_sym_DASH_EQ] = ACTIONS(7605), - [anon_sym_LT_LT_EQ] = ACTIONS(7605), - [anon_sym_GT_GT_EQ] = ACTIONS(7605), - [anon_sym_AMP_EQ] = ACTIONS(7605), - [anon_sym_CARET_EQ] = ACTIONS(7605), - [anon_sym_PIPE_EQ] = ACTIONS(7605), - [anon_sym_and_eq] = ACTIONS(7605), - [anon_sym_or_eq] = ACTIONS(7605), - [anon_sym_xor_eq] = ACTIONS(7605), - [anon_sym_LT_EQ_GT] = ACTIONS(7605), - [anon_sym_or] = ACTIONS(7603), - [anon_sym_and] = ACTIONS(7603), - [anon_sym_bitor] = ACTIONS(7605), - [anon_sym_xor] = ACTIONS(7603), - [anon_sym_bitand] = ACTIONS(7605), - [anon_sym_not_eq] = ACTIONS(7605), - [anon_sym_DASH_DASH] = ACTIONS(7605), - [anon_sym_PLUS_PLUS] = ACTIONS(7605), - [anon_sym_DOT] = ACTIONS(7603), - [anon_sym_DOT_STAR] = ACTIONS(7605), - [anon_sym_DASH_GT] = ACTIONS(7603), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7605), - [anon_sym_override] = ACTIONS(7605), - [anon_sym_requires] = ACTIONS(7605), - [anon_sym_DASH_GT_STAR] = ACTIONS(7605), - }, - [STATE(3070)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym__function_attributes_end] = STATE(4355), - [sym__function_postfix] = STATE(5258), - [sym_trailing_return_type] = STATE(4432), - [sym_requires_clause] = STATE(5258), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7789), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7789), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7791), - [anon_sym_or_eq] = ACTIONS(7791), - [anon_sym_xor_eq] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8318), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6694), - [anon_sym_override] = ACTIONS(6694), - [anon_sym_GT2] = ACTIONS(7791), - [anon_sym_requires] = ACTIONS(6700), - }, - [STATE(3071)] = { - [sym_virtual_specifier] = STATE(3433), - [sym__function_postfix] = STATE(3655), - [sym_requires_clause] = STATE(3655), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [aux_sym_preproc_if_token2] = ACTIONS(7966), - [aux_sym_preproc_else_token1] = ACTIONS(7966), - [aux_sym_preproc_elif_token1] = ACTIONS(7968), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(7968), - [anon_sym___attribute] = ACTIONS(7968), - [anon_sym_COLON] = ACTIONS(7968), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), - [anon_sym_RBRACE] = ACTIONS(7966), - [anon_sym_LBRACK] = ACTIONS(7966), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7968), - [anon_sym_or_eq] = ACTIONS(7968), - [anon_sym_xor_eq] = ACTIONS(7968), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7968), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7968), - [anon_sym_not_eq] = ACTIONS(7968), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7966), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_requires] = ACTIONS(6508), - [anon_sym_COLON_RBRACK] = ACTIONS(7966), - }, - [STATE(3072)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym__function_attributes_end] = STATE(4361), - [sym__function_postfix] = STATE(5047), - [sym_trailing_return_type] = STATE(4440), - [sym_requires_clause] = STATE(5047), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7968), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7968), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7966), - [anon_sym_or_eq] = ACTIONS(7966), - [anon_sym_xor_eq] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8429), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6694), - [anon_sym_override] = ACTIONS(6694), - [anon_sym_GT2] = ACTIONS(7966), - [anon_sym_requires] = ACTIONS(6700), - }, - [STATE(3073)] = { - [sym_attribute_specifier] = STATE(4161), - [sym_attribute_declaration] = STATE(4617), - [sym_gnu_asm_expression] = STATE(9112), - [sym_virtual_specifier] = STATE(4705), - [sym__function_attributes_end] = STATE(4331), - [sym__function_postfix] = STATE(5066), - [sym_trailing_return_type] = STATE(4443), - [sym_requires_clause] = STATE(5066), - [aux_sym_type_definition_repeat1] = STATE(4161), - [aux_sym_attributed_declarator_repeat1] = STATE(4617), - [aux_sym__function_postfix_repeat1] = STATE(4705), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8424), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym___attribute__] = ACTIONS(6681), - [anon_sym___attribute] = ACTIONS(6683), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6685), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8424), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8422), - [anon_sym_or_eq] = ACTIONS(8422), - [anon_sym_xor_eq] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8983), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6694), - [anon_sym_override] = ACTIONS(6694), - [anon_sym_GT2] = ACTIONS(8422), - [anon_sym_requires] = ACTIONS(6700), - }, - [STATE(3074)] = { - [sym_virtual_specifier] = STATE(3433), - [sym__function_postfix] = STATE(3628), - [sym_requires_clause] = STATE(3628), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7789), - [anon_sym___attribute] = ACTIONS(7789), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7791), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7789), - [anon_sym_or_eq] = ACTIONS(7789), - [anon_sym_xor_eq] = ACTIONS(7789), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7791), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7802), - [anon_sym_override] = ACTIONS(7802), - [anon_sym_requires] = ACTIONS(7805), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), - }, [STATE(3075)] = { - [sym_virtual_specifier] = STATE(3433), - [sym__function_postfix] = STATE(3655), - [sym_requires_clause] = STATE(3655), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(7968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [aux_sym_preproc_if_token2] = ACTIONS(7966), - [aux_sym_preproc_else_token1] = ACTIONS(7966), - [aux_sym_preproc_elif_token1] = ACTIONS(7968), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(7968), - [anon_sym___attribute] = ACTIONS(7968), - [anon_sym_COLON] = ACTIONS(7968), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), - [anon_sym_RBRACE] = ACTIONS(7966), - [anon_sym_LBRACK] = ACTIONS(7966), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7968), - [anon_sym_or_eq] = ACTIONS(7968), - [anon_sym_xor_eq] = ACTIONS(7968), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7968), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7968), - [anon_sym_not_eq] = ACTIONS(7968), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7966), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7994), - [anon_sym_override] = ACTIONS(7994), - [anon_sym_requires] = ACTIONS(7997), - [anon_sym_COLON_RBRACK] = ACTIONS(7966), + [sym_identifier] = ACTIONS(9015), + [anon_sym_LPAREN2] = ACTIONS(9017), + [anon_sym_TILDE] = ACTIONS(9017), + [anon_sym_STAR] = ACTIONS(9017), + [anon_sym_PIPE_PIPE] = ACTIONS(9017), + [anon_sym_AMP_AMP] = ACTIONS(9017), + [anon_sym_AMP] = ACTIONS(9015), + [anon_sym___extension__] = ACTIONS(9015), + [anon_sym_virtual] = ACTIONS(9015), + [anon_sym_extern] = ACTIONS(9015), + [anon_sym___attribute__] = ACTIONS(9015), + [anon_sym___attribute] = ACTIONS(9015), + [anon_sym_using] = ACTIONS(9015), + [anon_sym_COLON_COLON] = ACTIONS(9017), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9017), + [anon_sym___declspec] = ACTIONS(9015), + [anon_sym___based] = ACTIONS(9015), + [anon_sym___cdecl] = ACTIONS(9015), + [anon_sym___clrcall] = ACTIONS(9015), + [anon_sym___stdcall] = ACTIONS(9015), + [anon_sym___fastcall] = ACTIONS(9015), + [anon_sym___thiscall] = ACTIONS(9015), + [anon_sym___vectorcall] = ACTIONS(9015), + [anon_sym_LBRACE] = ACTIONS(9017), + [anon_sym_signed] = ACTIONS(9015), + [anon_sym_unsigned] = ACTIONS(9015), + [anon_sym_long] = ACTIONS(9015), + [anon_sym_short] = ACTIONS(9015), + [anon_sym_LBRACK] = ACTIONS(9015), + [anon_sym_static] = ACTIONS(9015), + [anon_sym_register] = ACTIONS(9015), + [anon_sym_inline] = ACTIONS(9015), + [anon_sym___inline] = ACTIONS(9015), + [anon_sym___inline__] = ACTIONS(9015), + [anon_sym___forceinline] = ACTIONS(9015), + [anon_sym_thread_local] = ACTIONS(9015), + [anon_sym___thread] = ACTIONS(9015), + [anon_sym_const] = ACTIONS(9015), + [anon_sym_constexpr] = ACTIONS(9015), + [anon_sym_volatile] = ACTIONS(9015), + [anon_sym_restrict] = ACTIONS(9015), + [anon_sym___restrict__] = ACTIONS(9015), + [anon_sym__Atomic] = ACTIONS(9015), + [anon_sym__Noreturn] = ACTIONS(9015), + [anon_sym_noreturn] = ACTIONS(9015), + [anon_sym__Nonnull] = ACTIONS(9015), + [anon_sym_mutable] = ACTIONS(9015), + [anon_sym_constinit] = ACTIONS(9015), + [anon_sym_consteval] = ACTIONS(9015), + [anon_sym_alignas] = ACTIONS(9015), + [anon_sym__Alignas] = ACTIONS(9015), + [sym_primitive_type] = ACTIONS(9015), + [anon_sym_enum] = ACTIONS(9015), + [anon_sym_class] = ACTIONS(9015), + [anon_sym_struct] = ACTIONS(9015), + [anon_sym_union] = ACTIONS(9015), + [anon_sym_or] = ACTIONS(9015), + [anon_sym_and] = ACTIONS(9015), + [anon_sym_typename] = ACTIONS(9015), + [anon_sym_DASH_GT] = ACTIONS(9017), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9015), + [anon_sym_decltype] = ACTIONS(9015), + [anon_sym_explicit] = ACTIONS(9015), + [anon_sym_template] = ACTIONS(9015), + [anon_sym_operator] = ACTIONS(9015), + [anon_sym_friend] = ACTIONS(9015), + [anon_sym_noexcept] = ACTIONS(9015), + [anon_sym_throw] = ACTIONS(9015), + [anon_sym_concept] = ACTIONS(9015), + [anon_sym_LBRACK_COLON] = ACTIONS(9017), }, [STATE(3076)] = { - [sym_virtual_specifier] = STATE(3433), - [sym__function_postfix] = STATE(3675), - [sym_requires_clause] = STATE(3675), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(8424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_RPAREN] = ACTIONS(8422), - [aux_sym_preproc_if_token2] = ACTIONS(8422), - [aux_sym_preproc_else_token1] = ACTIONS(8422), - [aux_sym_preproc_elif_token1] = ACTIONS(8424), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8422), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___attribute__] = ACTIONS(8424), - [anon_sym___attribute] = ACTIONS(8424), - [anon_sym_COLON] = ACTIONS(8424), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8422), - [anon_sym_RBRACE] = ACTIONS(8422), - [anon_sym_LBRACK] = ACTIONS(8422), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8424), - [anon_sym_or_eq] = ACTIONS(8424), - [anon_sym_xor_eq] = ACTIONS(8424), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8424), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8424), - [anon_sym_not_eq] = ACTIONS(8424), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8422), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8481), - [anon_sym_override] = ACTIONS(8481), - [anon_sym_requires] = ACTIONS(8484), - [anon_sym_COLON_RBRACK] = ACTIONS(8422), + [sym_attribute_specifier] = STATE(4165), + [sym_attribute_declaration] = STATE(4555), + [sym_gnu_asm_expression] = STATE(9150), + [sym_virtual_specifier] = STATE(4702), + [sym__function_attributes_end] = STATE(4364), + [sym__function_postfix] = STATE(5040), + [sym_trailing_return_type] = STATE(4495), + [sym_requires_clause] = STATE(5040), + [aux_sym_type_definition_repeat1] = STATE(4165), + [aux_sym_attributed_declarator_repeat1] = STATE(4555), + [aux_sym__function_postfix_repeat1] = STATE(4702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(6704), + [anon_sym___attribute] = ACTIONS(6706), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6708), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_RBRACK] = ACTIONS(8402), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8402), + [anon_sym_or_eq] = ACTIONS(8402), + [anon_sym_xor_eq] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8896), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6717), + [anon_sym_override] = ACTIONS(6717), + [anon_sym_requires] = ACTIONS(6723), }, [STATE(3077)] = { - [sym_virtual_specifier] = STATE(3433), - [sym__function_postfix] = STATE(3687), - [sym_requires_clause] = STATE(3687), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(8905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8907), - [anon_sym_COMMA] = ACTIONS(8907), - [anon_sym_RPAREN] = ACTIONS(8907), - [aux_sym_preproc_if_token2] = ACTIONS(8907), - [aux_sym_preproc_else_token1] = ACTIONS(8907), - [aux_sym_preproc_elif_token1] = ACTIONS(8905), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8907), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8907), - [anon_sym_LPAREN2] = ACTIONS(8907), - [anon_sym_DASH] = ACTIONS(8905), - [anon_sym_PLUS] = ACTIONS(8905), - [anon_sym_STAR] = ACTIONS(8905), - [anon_sym_SLASH] = ACTIONS(8905), - [anon_sym_PERCENT] = ACTIONS(8905), - [anon_sym_PIPE_PIPE] = ACTIONS(8907), - [anon_sym_AMP_AMP] = ACTIONS(8907), - [anon_sym_PIPE] = ACTIONS(8905), - [anon_sym_CARET] = ACTIONS(8905), - [anon_sym_AMP] = ACTIONS(8905), - [anon_sym_EQ_EQ] = ACTIONS(8907), - [anon_sym_BANG_EQ] = ACTIONS(8907), - [anon_sym_GT] = ACTIONS(8905), - [anon_sym_GT_EQ] = ACTIONS(8907), - [anon_sym_LT_EQ] = ACTIONS(8905), - [anon_sym_LT] = ACTIONS(8905), - [anon_sym_LT_LT] = ACTIONS(8905), - [anon_sym_GT_GT] = ACTIONS(8905), - [anon_sym_SEMI] = ACTIONS(8907), - [anon_sym___attribute__] = ACTIONS(8905), - [anon_sym___attribute] = ACTIONS(8905), - [anon_sym_COLON] = ACTIONS(8905), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8907), - [anon_sym_RBRACE] = ACTIONS(8907), - [anon_sym_LBRACK] = ACTIONS(8907), - [anon_sym_EQ] = ACTIONS(8905), - [anon_sym_QMARK] = ACTIONS(8907), - [anon_sym_STAR_EQ] = ACTIONS(8907), - [anon_sym_SLASH_EQ] = ACTIONS(8907), - [anon_sym_PERCENT_EQ] = ACTIONS(8907), - [anon_sym_PLUS_EQ] = ACTIONS(8907), - [anon_sym_DASH_EQ] = ACTIONS(8907), - [anon_sym_LT_LT_EQ] = ACTIONS(8907), - [anon_sym_GT_GT_EQ] = ACTIONS(8907), - [anon_sym_AMP_EQ] = ACTIONS(8907), - [anon_sym_CARET_EQ] = ACTIONS(8907), - [anon_sym_PIPE_EQ] = ACTIONS(8907), - [anon_sym_and_eq] = ACTIONS(8905), - [anon_sym_or_eq] = ACTIONS(8905), - [anon_sym_xor_eq] = ACTIONS(8905), - [anon_sym_LT_EQ_GT] = ACTIONS(8907), - [anon_sym_or] = ACTIONS(8905), - [anon_sym_and] = ACTIONS(8905), - [anon_sym_bitor] = ACTIONS(8905), - [anon_sym_xor] = ACTIONS(8905), - [anon_sym_bitand] = ACTIONS(8905), - [anon_sym_not_eq] = ACTIONS(8905), - [anon_sym_DASH_DASH] = ACTIONS(8907), - [anon_sym_PLUS_PLUS] = ACTIONS(8907), - [anon_sym_DOT] = ACTIONS(8905), - [anon_sym_DOT_STAR] = ACTIONS(8907), - [anon_sym_DASH_GT] = ACTIONS(8907), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9015), - [anon_sym_override] = ACTIONS(9015), - [anon_sym_requires] = ACTIONS(9018), - [anon_sym_COLON_RBRACK] = ACTIONS(8907), + [sym_identifier] = ACTIONS(9019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9021), + [anon_sym_COMMA] = ACTIONS(9021), + [anon_sym_RPAREN] = ACTIONS(9021), + [aux_sym_preproc_if_token2] = ACTIONS(9021), + [aux_sym_preproc_else_token1] = ACTIONS(9021), + [aux_sym_preproc_elif_token1] = ACTIONS(9019), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9021), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9021), + [anon_sym_LPAREN2] = ACTIONS(9021), + [anon_sym_DASH] = ACTIONS(9019), + [anon_sym_PLUS] = ACTIONS(9019), + [anon_sym_STAR] = ACTIONS(9019), + [anon_sym_SLASH] = ACTIONS(9019), + [anon_sym_PERCENT] = ACTIONS(9019), + [anon_sym_PIPE_PIPE] = ACTIONS(9021), + [anon_sym_AMP_AMP] = ACTIONS(9021), + [anon_sym_PIPE] = ACTIONS(9019), + [anon_sym_CARET] = ACTIONS(9019), + [anon_sym_AMP] = ACTIONS(9019), + [anon_sym_EQ_EQ] = ACTIONS(9021), + [anon_sym_BANG_EQ] = ACTIONS(9021), + [anon_sym_GT] = ACTIONS(9019), + [anon_sym_GT_EQ] = ACTIONS(9021), + [anon_sym_LT_EQ] = ACTIONS(9019), + [anon_sym_LT] = ACTIONS(9019), + [anon_sym_LT_LT] = ACTIONS(9019), + [anon_sym_GT_GT] = ACTIONS(9019), + [anon_sym_SEMI] = ACTIONS(9021), + [anon_sym___attribute__] = ACTIONS(9019), + [anon_sym___attribute] = ACTIONS(9019), + [anon_sym_COLON] = ACTIONS(9019), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9021), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9021), + [anon_sym_RBRACE] = ACTIONS(9021), + [anon_sym_LBRACK] = ACTIONS(9019), + [anon_sym_EQ] = ACTIONS(9019), + [anon_sym_QMARK] = ACTIONS(9021), + [anon_sym_STAR_EQ] = ACTIONS(9021), + [anon_sym_SLASH_EQ] = ACTIONS(9021), + [anon_sym_PERCENT_EQ] = ACTIONS(9021), + [anon_sym_PLUS_EQ] = ACTIONS(9021), + [anon_sym_DASH_EQ] = ACTIONS(9021), + [anon_sym_LT_LT_EQ] = ACTIONS(9021), + [anon_sym_GT_GT_EQ] = ACTIONS(9021), + [anon_sym_AMP_EQ] = ACTIONS(9021), + [anon_sym_CARET_EQ] = ACTIONS(9021), + [anon_sym_PIPE_EQ] = ACTIONS(9021), + [anon_sym_and_eq] = ACTIONS(9019), + [anon_sym_or_eq] = ACTIONS(9019), + [anon_sym_xor_eq] = ACTIONS(9019), + [anon_sym_LT_EQ_GT] = ACTIONS(9021), + [anon_sym_or] = ACTIONS(9019), + [anon_sym_and] = ACTIONS(9019), + [anon_sym_bitor] = ACTIONS(9019), + [anon_sym_xor] = ACTIONS(9019), + [anon_sym_bitand] = ACTIONS(9019), + [anon_sym_not_eq] = ACTIONS(9019), + [anon_sym_DASH_DASH] = ACTIONS(9021), + [anon_sym_PLUS_PLUS] = ACTIONS(9021), + [anon_sym_asm] = ACTIONS(9019), + [anon_sym___asm__] = ACTIONS(9019), + [anon_sym___asm] = ACTIONS(9019), + [anon_sym_DOT] = ACTIONS(9019), + [anon_sym_DOT_STAR] = ACTIONS(9021), + [anon_sym_DASH_GT] = ACTIONS(9021), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9019), + [anon_sym_override] = ACTIONS(9019), + [anon_sym_requires] = ACTIONS(9019), + [anon_sym_COLON_RBRACK] = ACTIONS(9021), }, [STATE(3078)] = { - [sym_virtual_specifier] = STATE(3433), - [sym__function_postfix] = STATE(3688), - [sym_requires_clause] = STATE(3688), - [aux_sym__function_postfix_repeat1] = STATE(3433), - [sym_identifier] = ACTIONS(8913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8915), - [anon_sym_COMMA] = ACTIONS(8915), - [anon_sym_RPAREN] = ACTIONS(8915), - [aux_sym_preproc_if_token2] = ACTIONS(8915), - [aux_sym_preproc_else_token1] = ACTIONS(8915), - [aux_sym_preproc_elif_token1] = ACTIONS(8913), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8915), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8915), - [anon_sym_LPAREN2] = ACTIONS(8915), - [anon_sym_DASH] = ACTIONS(8913), - [anon_sym_PLUS] = ACTIONS(8913), - [anon_sym_STAR] = ACTIONS(8913), - [anon_sym_SLASH] = ACTIONS(8913), - [anon_sym_PERCENT] = ACTIONS(8913), - [anon_sym_PIPE_PIPE] = ACTIONS(8915), - [anon_sym_AMP_AMP] = ACTIONS(8915), - [anon_sym_PIPE] = ACTIONS(8913), - [anon_sym_CARET] = ACTIONS(8913), - [anon_sym_AMP] = ACTIONS(8913), - [anon_sym_EQ_EQ] = ACTIONS(8915), - [anon_sym_BANG_EQ] = ACTIONS(8915), - [anon_sym_GT] = ACTIONS(8913), - [anon_sym_GT_EQ] = ACTIONS(8915), - [anon_sym_LT_EQ] = ACTIONS(8913), - [anon_sym_LT] = ACTIONS(8913), - [anon_sym_LT_LT] = ACTIONS(8913), - [anon_sym_GT_GT] = ACTIONS(8913), - [anon_sym_SEMI] = ACTIONS(8915), - [anon_sym___attribute__] = ACTIONS(8913), - [anon_sym___attribute] = ACTIONS(8913), - [anon_sym_COLON] = ACTIONS(8913), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8915), - [anon_sym_RBRACE] = ACTIONS(8915), - [anon_sym_LBRACK] = ACTIONS(8915), - [anon_sym_EQ] = ACTIONS(8913), - [anon_sym_QMARK] = ACTIONS(8915), - [anon_sym_STAR_EQ] = ACTIONS(8915), - [anon_sym_SLASH_EQ] = ACTIONS(8915), - [anon_sym_PERCENT_EQ] = ACTIONS(8915), - [anon_sym_PLUS_EQ] = ACTIONS(8915), - [anon_sym_DASH_EQ] = ACTIONS(8915), - [anon_sym_LT_LT_EQ] = ACTIONS(8915), - [anon_sym_GT_GT_EQ] = ACTIONS(8915), - [anon_sym_AMP_EQ] = ACTIONS(8915), - [anon_sym_CARET_EQ] = ACTIONS(8915), - [anon_sym_PIPE_EQ] = ACTIONS(8915), - [anon_sym_and_eq] = ACTIONS(8913), - [anon_sym_or_eq] = ACTIONS(8913), - [anon_sym_xor_eq] = ACTIONS(8913), - [anon_sym_LT_EQ_GT] = ACTIONS(8915), - [anon_sym_or] = ACTIONS(8913), - [anon_sym_and] = ACTIONS(8913), - [anon_sym_bitor] = ACTIONS(8913), - [anon_sym_xor] = ACTIONS(8913), - [anon_sym_bitand] = ACTIONS(8913), - [anon_sym_not_eq] = ACTIONS(8913), - [anon_sym_DASH_DASH] = ACTIONS(8915), - [anon_sym_PLUS_PLUS] = ACTIONS(8915), - [anon_sym_DOT] = ACTIONS(8913), - [anon_sym_DOT_STAR] = ACTIONS(8915), - [anon_sym_DASH_GT] = ACTIONS(8915), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9021), - [anon_sym_override] = ACTIONS(9021), - [anon_sym_requires] = ACTIONS(9024), - [anon_sym_COLON_RBRACK] = ACTIONS(8915), + [sym_identifier] = ACTIONS(9023), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9025), + [anon_sym_COMMA] = ACTIONS(9025), + [anon_sym_RPAREN] = ACTIONS(9025), + [aux_sym_preproc_if_token2] = ACTIONS(9025), + [aux_sym_preproc_else_token1] = ACTIONS(9025), + [aux_sym_preproc_elif_token1] = ACTIONS(9023), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9025), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9025), + [anon_sym_LPAREN2] = ACTIONS(9025), + [anon_sym_DASH] = ACTIONS(9023), + [anon_sym_PLUS] = ACTIONS(9023), + [anon_sym_STAR] = ACTIONS(9023), + [anon_sym_SLASH] = ACTIONS(9023), + [anon_sym_PERCENT] = ACTIONS(9023), + [anon_sym_PIPE_PIPE] = ACTIONS(9025), + [anon_sym_AMP_AMP] = ACTIONS(9025), + [anon_sym_PIPE] = ACTIONS(9023), + [anon_sym_CARET] = ACTIONS(9023), + [anon_sym_AMP] = ACTIONS(9023), + [anon_sym_EQ_EQ] = ACTIONS(9025), + [anon_sym_BANG_EQ] = ACTIONS(9025), + [anon_sym_GT] = ACTIONS(9023), + [anon_sym_GT_EQ] = ACTIONS(9025), + [anon_sym_LT_EQ] = ACTIONS(9023), + [anon_sym_LT] = ACTIONS(9023), + [anon_sym_LT_LT] = ACTIONS(9023), + [anon_sym_GT_GT] = ACTIONS(9023), + [anon_sym_SEMI] = ACTIONS(9025), + [anon_sym___attribute__] = ACTIONS(9023), + [anon_sym___attribute] = ACTIONS(9023), + [anon_sym_COLON] = ACTIONS(9023), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9025), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9025), + [anon_sym_RBRACE] = ACTIONS(9025), + [anon_sym_LBRACK] = ACTIONS(9023), + [anon_sym_EQ] = ACTIONS(9023), + [anon_sym_QMARK] = ACTIONS(9025), + [anon_sym_STAR_EQ] = ACTIONS(9025), + [anon_sym_SLASH_EQ] = ACTIONS(9025), + [anon_sym_PERCENT_EQ] = ACTIONS(9025), + [anon_sym_PLUS_EQ] = ACTIONS(9025), + [anon_sym_DASH_EQ] = ACTIONS(9025), + [anon_sym_LT_LT_EQ] = ACTIONS(9025), + [anon_sym_GT_GT_EQ] = ACTIONS(9025), + [anon_sym_AMP_EQ] = ACTIONS(9025), + [anon_sym_CARET_EQ] = ACTIONS(9025), + [anon_sym_PIPE_EQ] = ACTIONS(9025), + [anon_sym_and_eq] = ACTIONS(9023), + [anon_sym_or_eq] = ACTIONS(9023), + [anon_sym_xor_eq] = ACTIONS(9023), + [anon_sym_LT_EQ_GT] = ACTIONS(9025), + [anon_sym_or] = ACTIONS(9023), + [anon_sym_and] = ACTIONS(9023), + [anon_sym_bitor] = ACTIONS(9023), + [anon_sym_xor] = ACTIONS(9023), + [anon_sym_bitand] = ACTIONS(9023), + [anon_sym_not_eq] = ACTIONS(9023), + [anon_sym_DASH_DASH] = ACTIONS(9025), + [anon_sym_PLUS_PLUS] = ACTIONS(9025), + [anon_sym_asm] = ACTIONS(9023), + [anon_sym___asm__] = ACTIONS(9023), + [anon_sym___asm] = ACTIONS(9023), + [anon_sym_DOT] = ACTIONS(9023), + [anon_sym_DOT_STAR] = ACTIONS(9025), + [anon_sym_DASH_GT] = ACTIONS(9025), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9023), + [anon_sym_override] = ACTIONS(9023), + [anon_sym_requires] = ACTIONS(9023), + [anon_sym_COLON_RBRACK] = ACTIONS(9025), }, [STATE(3079)] = { - [sym_identifier] = ACTIONS(9027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9029), - [anon_sym_COMMA] = ACTIONS(9029), - [anon_sym_RPAREN] = ACTIONS(9029), - [aux_sym_preproc_if_token2] = ACTIONS(9029), - [aux_sym_preproc_else_token1] = ACTIONS(9029), - [aux_sym_preproc_elif_token1] = ACTIONS(9027), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9029), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9029), - [anon_sym_LPAREN2] = ACTIONS(9031), - [anon_sym_DASH] = ACTIONS(9027), - [anon_sym_PLUS] = ACTIONS(9027), - [anon_sym_STAR] = ACTIONS(9027), - [anon_sym_SLASH] = ACTIONS(9027), - [anon_sym_PERCENT] = ACTIONS(9027), - [anon_sym_PIPE_PIPE] = ACTIONS(9029), - [anon_sym_AMP_AMP] = ACTIONS(9029), - [anon_sym_PIPE] = ACTIONS(9027), - [anon_sym_CARET] = ACTIONS(9027), - [anon_sym_AMP] = ACTIONS(9027), - [anon_sym_EQ_EQ] = ACTIONS(9029), - [anon_sym_BANG_EQ] = ACTIONS(9029), - [anon_sym_GT] = ACTIONS(9027), - [anon_sym_GT_EQ] = ACTIONS(9029), - [anon_sym_LT_EQ] = ACTIONS(9027), - [anon_sym_LT] = ACTIONS(9027), - [anon_sym_LT_LT] = ACTIONS(9027), - [anon_sym_GT_GT] = ACTIONS(9027), - [anon_sym_SEMI] = ACTIONS(9029), - [anon_sym___attribute__] = ACTIONS(9027), - [anon_sym___attribute] = ACTIONS(9027), - [anon_sym_COLON] = ACTIONS(9027), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9029), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9029), - [anon_sym_RBRACE] = ACTIONS(9029), - [anon_sym_LBRACK] = ACTIONS(9027), - [anon_sym_EQ] = ACTIONS(9027), - [anon_sym_QMARK] = ACTIONS(9029), - [anon_sym_STAR_EQ] = ACTIONS(9029), - [anon_sym_SLASH_EQ] = ACTIONS(9029), - [anon_sym_PERCENT_EQ] = ACTIONS(9029), - [anon_sym_PLUS_EQ] = ACTIONS(9029), - [anon_sym_DASH_EQ] = ACTIONS(9029), - [anon_sym_LT_LT_EQ] = ACTIONS(9029), - [anon_sym_GT_GT_EQ] = ACTIONS(9029), - [anon_sym_AMP_EQ] = ACTIONS(9029), - [anon_sym_CARET_EQ] = ACTIONS(9029), - [anon_sym_PIPE_EQ] = ACTIONS(9029), - [anon_sym_and_eq] = ACTIONS(9027), - [anon_sym_or_eq] = ACTIONS(9027), - [anon_sym_xor_eq] = ACTIONS(9027), - [anon_sym_LT_EQ_GT] = ACTIONS(9029), - [anon_sym_or] = ACTIONS(9027), - [anon_sym_and] = ACTIONS(9027), - [anon_sym_bitor] = ACTIONS(9027), - [anon_sym_xor] = ACTIONS(9027), - [anon_sym_bitand] = ACTIONS(9027), - [anon_sym_not_eq] = ACTIONS(9027), - [anon_sym_DASH_DASH] = ACTIONS(9029), - [anon_sym_PLUS_PLUS] = ACTIONS(9029), - [anon_sym_asm] = ACTIONS(9027), - [anon_sym___asm__] = ACTIONS(9027), - [anon_sym___asm] = ACTIONS(9027), - [anon_sym_DOT] = ACTIONS(9027), - [anon_sym_DOT_STAR] = ACTIONS(9029), - [anon_sym_DASH_GT] = ACTIONS(9029), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9027), - [anon_sym_override] = ACTIONS(9027), - [anon_sym_requires] = ACTIONS(9027), - [anon_sym_COLON_RBRACK] = ACTIONS(9029), + [sym_template_argument_list] = STATE(3121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6563), + [anon_sym_COMMA] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6570), + [anon_sym_PLUS] = ACTIONS(6570), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6570), + [anon_sym_PERCENT] = ACTIONS(6570), + [anon_sym_PIPE_PIPE] = ACTIONS(6563), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6570), + [anon_sym_CARET] = ACTIONS(6570), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6563), + [anon_sym_BANG_EQ] = ACTIONS(6563), + [anon_sym_GT] = ACTIONS(6570), + [anon_sym_GT_EQ] = ACTIONS(6570), + [anon_sym_LT_EQ] = ACTIONS(6570), + [anon_sym_LT] = ACTIONS(9007), + [anon_sym_LT_LT] = ACTIONS(6570), + [anon_sym_GT_GT] = ACTIONS(6570), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6570), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6563), + [anon_sym_STAR_EQ] = ACTIONS(6563), + [anon_sym_SLASH_EQ] = ACTIONS(6563), + [anon_sym_PERCENT_EQ] = ACTIONS(6563), + [anon_sym_PLUS_EQ] = ACTIONS(6563), + [anon_sym_DASH_EQ] = ACTIONS(6563), + [anon_sym_LT_LT_EQ] = ACTIONS(6563), + [anon_sym_GT_GT_EQ] = ACTIONS(6570), + [anon_sym_AMP_EQ] = ACTIONS(6563), + [anon_sym_CARET_EQ] = ACTIONS(6563), + [anon_sym_PIPE_EQ] = ACTIONS(6563), + [anon_sym_and_eq] = ACTIONS(6563), + [anon_sym_or_eq] = ACTIONS(6563), + [anon_sym_xor_eq] = ACTIONS(6563), + [anon_sym_LT_EQ_GT] = ACTIONS(6563), + [anon_sym_or] = ACTIONS(6570), + [anon_sym_and] = ACTIONS(6570), + [anon_sym_bitor] = ACTIONS(6563), + [anon_sym_xor] = ACTIONS(6570), + [anon_sym_bitand] = ACTIONS(6563), + [anon_sym_not_eq] = ACTIONS(6563), + [anon_sym_DASH_DASH] = ACTIONS(6563), + [anon_sym_PLUS_PLUS] = ACTIONS(6563), + [anon_sym_DOT] = ACTIONS(6570), + [anon_sym_DOT_STAR] = ACTIONS(6563), + [anon_sym_DASH_GT] = ACTIONS(6563), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_GT2] = ACTIONS(6563), }, [STATE(3080)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), - [anon_sym_COMMA] = ACTIONS(7567), - [anon_sym_RPAREN] = ACTIONS(7567), - [anon_sym_LPAREN2] = ACTIONS(7567), - [anon_sym_DASH] = ACTIONS(7565), - [anon_sym_PLUS] = ACTIONS(7565), - [anon_sym_STAR] = ACTIONS(7565), - [anon_sym_SLASH] = ACTIONS(7565), - [anon_sym_PERCENT] = ACTIONS(7565), - [anon_sym_PIPE_PIPE] = ACTIONS(7567), - [anon_sym_AMP_AMP] = ACTIONS(7567), - [anon_sym_PIPE] = ACTIONS(7565), - [anon_sym_CARET] = ACTIONS(7565), - [anon_sym_AMP] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7567), - [anon_sym_BANG_EQ] = ACTIONS(7567), - [anon_sym_GT] = ACTIONS(7565), - [anon_sym_GT_EQ] = ACTIONS(7567), - [anon_sym_LT_EQ] = ACTIONS(7565), - [anon_sym_LT] = ACTIONS(7565), - [anon_sym_LT_LT] = ACTIONS(7565), - [anon_sym_GT_GT] = ACTIONS(7565), - [anon_sym___extension__] = ACTIONS(7567), - [anon_sym_LBRACE] = ACTIONS(7567), - [anon_sym_LBRACK] = ACTIONS(7567), - [anon_sym_EQ] = ACTIONS(7565), - [anon_sym_const] = ACTIONS(7565), - [anon_sym_constexpr] = ACTIONS(7567), - [anon_sym_volatile] = ACTIONS(7567), - [anon_sym_restrict] = ACTIONS(7567), - [anon_sym___restrict__] = ACTIONS(7567), - [anon_sym__Atomic] = ACTIONS(7567), - [anon_sym__Noreturn] = ACTIONS(7567), - [anon_sym_noreturn] = ACTIONS(7567), - [anon_sym__Nonnull] = ACTIONS(7567), - [anon_sym_mutable] = ACTIONS(7567), - [anon_sym_constinit] = ACTIONS(7567), - [anon_sym_consteval] = ACTIONS(7567), - [anon_sym_alignas] = ACTIONS(7567), - [anon_sym__Alignas] = ACTIONS(7567), - [anon_sym_QMARK] = ACTIONS(7567), - [anon_sym_STAR_EQ] = ACTIONS(7567), - [anon_sym_SLASH_EQ] = ACTIONS(7567), - [anon_sym_PERCENT_EQ] = ACTIONS(7567), - [anon_sym_PLUS_EQ] = ACTIONS(7567), - [anon_sym_DASH_EQ] = ACTIONS(7567), - [anon_sym_LT_LT_EQ] = ACTIONS(7567), - [anon_sym_GT_GT_EQ] = ACTIONS(7567), - [anon_sym_AMP_EQ] = ACTIONS(7567), - [anon_sym_CARET_EQ] = ACTIONS(7567), - [anon_sym_PIPE_EQ] = ACTIONS(7567), - [anon_sym_and_eq] = ACTIONS(7567), - [anon_sym_or_eq] = ACTIONS(7567), - [anon_sym_xor_eq] = ACTIONS(7567), - [anon_sym_LT_EQ_GT] = ACTIONS(7567), - [anon_sym_or] = ACTIONS(7565), - [anon_sym_and] = ACTIONS(7565), - [anon_sym_bitor] = ACTIONS(7567), - [anon_sym_xor] = ACTIONS(7565), - [anon_sym_bitand] = ACTIONS(7567), - [anon_sym_not_eq] = ACTIONS(7567), - [anon_sym_DASH_DASH] = ACTIONS(7567), - [anon_sym_PLUS_PLUS] = ACTIONS(7567), - [anon_sym_DOT] = ACTIONS(7565), - [anon_sym_DOT_STAR] = ACTIONS(7567), - [anon_sym_DASH_GT] = ACTIONS(7565), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7567), - [anon_sym_override] = ACTIONS(7567), - [anon_sym_requires] = ACTIONS(7567), - [anon_sym_DASH_GT_STAR] = ACTIONS(7567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7246), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_GT2] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), }, [STATE(3081)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), - [anon_sym_COMMA] = ACTIONS(7657), - [anon_sym_RPAREN] = ACTIONS(7657), - [anon_sym_LPAREN2] = ACTIONS(7657), - [anon_sym_DASH] = ACTIONS(7655), - [anon_sym_PLUS] = ACTIONS(7655), - [anon_sym_STAR] = ACTIONS(7655), - [anon_sym_SLASH] = ACTIONS(7655), - [anon_sym_PERCENT] = ACTIONS(7655), - [anon_sym_PIPE_PIPE] = ACTIONS(7657), - [anon_sym_AMP_AMP] = ACTIONS(7657), - [anon_sym_PIPE] = ACTIONS(7655), - [anon_sym_CARET] = ACTIONS(7655), - [anon_sym_AMP] = ACTIONS(7655), - [anon_sym_EQ_EQ] = ACTIONS(7657), - [anon_sym_BANG_EQ] = ACTIONS(7657), - [anon_sym_GT] = ACTIONS(7655), - [anon_sym_GT_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7655), - [anon_sym_LT] = ACTIONS(7655), - [anon_sym_LT_LT] = ACTIONS(7655), - [anon_sym_GT_GT] = ACTIONS(7655), - [anon_sym___extension__] = ACTIONS(7657), - [anon_sym_LBRACE] = ACTIONS(7657), - [anon_sym_LBRACK] = ACTIONS(7657), - [anon_sym_EQ] = ACTIONS(7655), - [anon_sym_const] = ACTIONS(7655), - [anon_sym_constexpr] = ACTIONS(7657), - [anon_sym_volatile] = ACTIONS(7657), - [anon_sym_restrict] = ACTIONS(7657), - [anon_sym___restrict__] = ACTIONS(7657), - [anon_sym__Atomic] = ACTIONS(7657), - [anon_sym__Noreturn] = ACTIONS(7657), - [anon_sym_noreturn] = ACTIONS(7657), - [anon_sym__Nonnull] = ACTIONS(7657), - [anon_sym_mutable] = ACTIONS(7657), - [anon_sym_constinit] = ACTIONS(7657), - [anon_sym_consteval] = ACTIONS(7657), - [anon_sym_alignas] = ACTIONS(7657), - [anon_sym__Alignas] = ACTIONS(7657), - [anon_sym_QMARK] = ACTIONS(7657), - [anon_sym_STAR_EQ] = ACTIONS(7657), - [anon_sym_SLASH_EQ] = ACTIONS(7657), - [anon_sym_PERCENT_EQ] = ACTIONS(7657), - [anon_sym_PLUS_EQ] = ACTIONS(7657), - [anon_sym_DASH_EQ] = ACTIONS(7657), - [anon_sym_LT_LT_EQ] = ACTIONS(7657), - [anon_sym_GT_GT_EQ] = ACTIONS(7657), - [anon_sym_AMP_EQ] = ACTIONS(7657), - [anon_sym_CARET_EQ] = ACTIONS(7657), - [anon_sym_PIPE_EQ] = ACTIONS(7657), - [anon_sym_and_eq] = ACTIONS(7657), - [anon_sym_or_eq] = ACTIONS(7657), - [anon_sym_xor_eq] = ACTIONS(7657), - [anon_sym_LT_EQ_GT] = ACTIONS(7657), - [anon_sym_or] = ACTIONS(7655), - [anon_sym_and] = ACTIONS(7655), - [anon_sym_bitor] = ACTIONS(7657), - [anon_sym_xor] = ACTIONS(7655), - [anon_sym_bitand] = ACTIONS(7657), - [anon_sym_not_eq] = ACTIONS(7657), - [anon_sym_DASH_DASH] = ACTIONS(7657), - [anon_sym_PLUS_PLUS] = ACTIONS(7657), - [anon_sym_DOT] = ACTIONS(7655), - [anon_sym_DOT_STAR] = ACTIONS(7657), - [anon_sym_DASH_GT] = ACTIONS(7655), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7657), - [anon_sym_override] = ACTIONS(7657), - [anon_sym_requires] = ACTIONS(7657), - [anon_sym_DASH_GT_STAR] = ACTIONS(7657), + [sym_decltype_auto] = STATE(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7246), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8590), + [anon_sym_decltype] = ACTIONS(7021), + [anon_sym_GT2] = ACTIONS(7248), }, [STATE(3082)] = { - [sym_template_argument_list] = STATE(3151), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6569), - [anon_sym_COMMA] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6576), - [anon_sym_PLUS] = ACTIONS(6576), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6576), - [anon_sym_PERCENT] = ACTIONS(6576), - [anon_sym_PIPE_PIPE] = ACTIONS(6569), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6576), - [anon_sym_CARET] = ACTIONS(6576), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6569), - [anon_sym_BANG_EQ] = ACTIONS(6569), - [anon_sym_GT] = ACTIONS(6576), - [anon_sym_GT_EQ] = ACTIONS(6576), - [anon_sym_LT_EQ] = ACTIONS(6576), - [anon_sym_LT] = ACTIONS(8934), - [anon_sym_LT_LT] = ACTIONS(6576), - [anon_sym_GT_GT] = ACTIONS(6576), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6569), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6574), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6567), - [anon_sym_or_eq] = ACTIONS(6567), - [anon_sym_xor_eq] = ACTIONS(6567), - [anon_sym_LT_EQ_GT] = ACTIONS(6569), - [anon_sym_or] = ACTIONS(6576), - [anon_sym_and] = ACTIONS(6576), - [anon_sym_bitor] = ACTIONS(6569), - [anon_sym_xor] = ACTIONS(6576), - [anon_sym_bitand] = ACTIONS(6569), - [anon_sym_not_eq] = ACTIONS(6569), - [anon_sym_DASH_DASH] = ACTIONS(6569), - [anon_sym_PLUS_PLUS] = ACTIONS(6569), - [anon_sym_DOT] = ACTIONS(6576), - [anon_sym_DOT_STAR] = ACTIONS(6569), - [anon_sym_DASH_GT] = ACTIONS(6569), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_GT2] = ACTIONS(6569), + [sym__abstract_declarator] = STATE(6164), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2078), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3888), + [sym_identifier] = ACTIONS(7347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [aux_sym_preproc_if_token2] = ACTIONS(7345), + [aux_sym_preproc_else_token1] = ACTIONS(7345), + [aux_sym_preproc_elif_token1] = ACTIONS(7347), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8080), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8082), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8084), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7347), + [anon_sym_and] = ACTIONS(7347), + [anon_sym_bitor] = ACTIONS(7347), + [anon_sym_xor] = ACTIONS(7347), + [anon_sym_bitand] = ACTIONS(7347), + [anon_sym_not_eq] = ACTIONS(7347), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7347), + [anon_sym_override] = ACTIONS(7347), + [anon_sym_requires] = ACTIONS(7347), }, [STATE(3083)] = { - [sym__abstract_declarator] = STATE(6156), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2069), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_RPAREN] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(8111), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(8113), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(8115), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym_SEMI] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(7349), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7351), - [anon_sym_RBRACE] = ACTIONS(7351), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), - [anon_sym_COLON_RBRACK] = ACTIONS(7351), + [sym_identifier] = ACTIONS(7747), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_RPAREN] = ACTIONS(7749), + [anon_sym_LPAREN2] = ACTIONS(7749), + [anon_sym_DASH] = ACTIONS(7747), + [anon_sym_PLUS] = ACTIONS(7747), + [anon_sym_STAR] = ACTIONS(7749), + [anon_sym_SLASH] = ACTIONS(7747), + [anon_sym_PERCENT] = ACTIONS(7749), + [anon_sym_PIPE_PIPE] = ACTIONS(7749), + [anon_sym_AMP_AMP] = ACTIONS(7749), + [anon_sym_PIPE] = ACTIONS(7747), + [anon_sym_CARET] = ACTIONS(7749), + [anon_sym_AMP] = ACTIONS(7747), + [anon_sym_EQ_EQ] = ACTIONS(7749), + [anon_sym_BANG_EQ] = ACTIONS(7749), + [anon_sym_GT] = ACTIONS(7747), + [anon_sym_GT_EQ] = ACTIONS(7749), + [anon_sym_LT_EQ] = ACTIONS(7747), + [anon_sym_LT] = ACTIONS(7747), + [anon_sym_LT_LT] = ACTIONS(7749), + [anon_sym_GT_GT] = ACTIONS(7749), + [anon_sym_SEMI] = ACTIONS(7749), + [anon_sym___extension__] = ACTIONS(7747), + [anon_sym___attribute__] = ACTIONS(7747), + [anon_sym___attribute] = ACTIONS(7747), + [anon_sym_COLON] = ACTIONS(7747), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7749), + [anon_sym___based] = ACTIONS(7747), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_RBRACE] = ACTIONS(7749), + [anon_sym_signed] = ACTIONS(7747), + [anon_sym_unsigned] = ACTIONS(7747), + [anon_sym_long] = ACTIONS(7747), + [anon_sym_short] = ACTIONS(7747), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_const] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7747), + [anon_sym_volatile] = ACTIONS(7747), + [anon_sym_restrict] = ACTIONS(7747), + [anon_sym___restrict__] = ACTIONS(7747), + [anon_sym__Atomic] = ACTIONS(7747), + [anon_sym__Noreturn] = ACTIONS(7747), + [anon_sym_noreturn] = ACTIONS(7747), + [anon_sym__Nonnull] = ACTIONS(7747), + [anon_sym_mutable] = ACTIONS(7747), + [anon_sym_constinit] = ACTIONS(7747), + [anon_sym_consteval] = ACTIONS(7747), + [anon_sym_alignas] = ACTIONS(7747), + [anon_sym__Alignas] = ACTIONS(7747), + [sym_primitive_type] = ACTIONS(7747), + [anon_sym_QMARK] = ACTIONS(7749), + [anon_sym_LT_EQ_GT] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7747), + [anon_sym_and] = ACTIONS(7747), + [anon_sym_bitor] = ACTIONS(7747), + [anon_sym_xor] = ACTIONS(7747), + [anon_sym_bitand] = ACTIONS(7747), + [anon_sym_not_eq] = ACTIONS(7747), + [anon_sym_DASH_DASH] = ACTIONS(7749), + [anon_sym_PLUS_PLUS] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(7747), + [anon_sym_DOT_STAR] = ACTIONS(7749), + [anon_sym_DASH_GT] = ACTIONS(7749), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7747), + [anon_sym_override] = ACTIONS(7747), + [anon_sym_requires] = ACTIONS(7747), + [anon_sym_COLON_RBRACK] = ACTIONS(7749), }, [STATE(3084)] = { - [sym__abstract_declarator] = STATE(6161), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3011), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2069), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(8111), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7343), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(8113), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7343), - [anon_sym_AMP] = ACTIONS(8115), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7343), - [anon_sym_GT_GT] = ACTIONS(7343), - [anon_sym_SEMI] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(7341), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), - [anon_sym_RBRACE] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7343), - [anon_sym_and] = ACTIONS(7343), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7343), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_RPAREN] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7399), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7399), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7399), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7399), + [anon_sym_GT_GT] = ACTIONS(7399), + [anon_sym_SEMI] = ACTIONS(7399), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_COLON] = ACTIONS(7402), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7399), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_RBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8505), + [anon_sym_unsigned] = ACTIONS(8505), + [anon_sym_long] = ACTIONS(8505), + [anon_sym_short] = ACTIONS(8505), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - [anon_sym_COLON_RBRACK] = ACTIONS(7343), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_requires] = ACTIONS(7402), + [anon_sym_COLON_RBRACK] = ACTIONS(7399), }, [STATE(3085)] = { - [sym_identifier] = ACTIONS(8992), - [anon_sym_LPAREN2] = ACTIONS(8994), - [anon_sym_TILDE] = ACTIONS(8994), - [anon_sym_STAR] = ACTIONS(8994), - [anon_sym_PIPE_PIPE] = ACTIONS(8994), - [anon_sym_AMP_AMP] = ACTIONS(8994), - [anon_sym_AMP] = ACTIONS(8992), - [anon_sym___extension__] = ACTIONS(8992), - [anon_sym_virtual] = ACTIONS(8992), - [anon_sym_extern] = ACTIONS(8992), - [anon_sym___attribute__] = ACTIONS(8992), - [anon_sym___attribute] = ACTIONS(8992), - [anon_sym_using] = ACTIONS(8992), - [anon_sym_COLON_COLON] = ACTIONS(8994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8994), - [anon_sym___declspec] = ACTIONS(8992), - [anon_sym___based] = ACTIONS(8992), - [anon_sym___cdecl] = ACTIONS(8992), - [anon_sym___clrcall] = ACTIONS(8992), - [anon_sym___stdcall] = ACTIONS(8992), - [anon_sym___fastcall] = ACTIONS(8992), - [anon_sym___thiscall] = ACTIONS(8992), - [anon_sym___vectorcall] = ACTIONS(8992), - [anon_sym_LBRACE] = ACTIONS(8994), - [anon_sym_signed] = ACTIONS(8992), - [anon_sym_unsigned] = ACTIONS(8992), - [anon_sym_long] = ACTIONS(8992), - [anon_sym_short] = ACTIONS(8992), - [anon_sym_LBRACK] = ACTIONS(8992), - [anon_sym_static] = ACTIONS(8992), - [anon_sym_register] = ACTIONS(8992), - [anon_sym_inline] = ACTIONS(8992), - [anon_sym___inline] = ACTIONS(8992), - [anon_sym___inline__] = ACTIONS(8992), - [anon_sym___forceinline] = ACTIONS(8992), - [anon_sym_thread_local] = ACTIONS(8992), - [anon_sym___thread] = ACTIONS(8992), - [anon_sym_const] = ACTIONS(8992), - [anon_sym_constexpr] = ACTIONS(8992), - [anon_sym_volatile] = ACTIONS(8992), - [anon_sym_restrict] = ACTIONS(8992), - [anon_sym___restrict__] = ACTIONS(8992), - [anon_sym__Atomic] = ACTIONS(8992), - [anon_sym__Noreturn] = ACTIONS(8992), - [anon_sym_noreturn] = ACTIONS(8992), - [anon_sym__Nonnull] = ACTIONS(8992), - [anon_sym_mutable] = ACTIONS(8992), - [anon_sym_constinit] = ACTIONS(8992), - [anon_sym_consteval] = ACTIONS(8992), - [anon_sym_alignas] = ACTIONS(8992), - [anon_sym__Alignas] = ACTIONS(8992), - [sym_primitive_type] = ACTIONS(8992), - [anon_sym_enum] = ACTIONS(8992), - [anon_sym_class] = ACTIONS(8992), - [anon_sym_struct] = ACTIONS(8992), - [anon_sym_union] = ACTIONS(8992), - [anon_sym_or] = ACTIONS(8992), - [anon_sym_and] = ACTIONS(8992), - [anon_sym_typename] = ACTIONS(8992), - [anon_sym_DASH_GT] = ACTIONS(8994), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8992), - [anon_sym_decltype] = ACTIONS(8992), - [anon_sym_explicit] = ACTIONS(8992), - [anon_sym_template] = ACTIONS(8992), - [anon_sym_operator] = ACTIONS(8992), - [anon_sym_friend] = ACTIONS(8992), - [anon_sym_noexcept] = ACTIONS(8992), - [anon_sym_throw] = ACTIONS(8992), - [anon_sym_concept] = ACTIONS(8992), - [anon_sym_LBRACK_COLON] = ACTIONS(8994), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_PIPE_PIPE] = ACTIONS(6653), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6660), + [anon_sym_CARET] = ACTIONS(6660), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6653), + [anon_sym_BANG_EQ] = ACTIONS(6653), + [anon_sym_GT] = ACTIONS(6660), + [anon_sym_GT_EQ] = ACTIONS(6660), + [anon_sym_LT_EQ] = ACTIONS(6660), + [anon_sym_LT] = ACTIONS(6660), + [anon_sym_LT_LT] = ACTIONS(6660), + [anon_sym_GT_GT] = ACTIONS(6660), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6658), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6658), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6651), + [anon_sym_or_eq] = ACTIONS(6651), + [anon_sym_xor_eq] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6653), + [anon_sym_or] = ACTIONS(6660), + [anon_sym_and] = ACTIONS(6660), + [anon_sym_bitor] = ACTIONS(6653), + [anon_sym_xor] = ACTIONS(6660), + [anon_sym_bitand] = ACTIONS(6653), + [anon_sym_not_eq] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_DOT] = ACTIONS(6660), + [anon_sym_DOT_STAR] = ACTIONS(6653), + [anon_sym_DASH_GT] = ACTIONS(6653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_GT2] = ACTIONS(6653), }, [STATE(3086)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7561), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7561), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7563), - [anon_sym_or_eq] = ACTIONS(7563), - [anon_sym_xor_eq] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_GT2] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7713), + [anon_sym_COMMA] = ACTIONS(7713), + [anon_sym_LPAREN2] = ACTIONS(7713), + [anon_sym_DASH] = ACTIONS(7711), + [anon_sym_PLUS] = ACTIONS(7711), + [anon_sym_STAR] = ACTIONS(7711), + [anon_sym_SLASH] = ACTIONS(7711), + [anon_sym_PERCENT] = ACTIONS(7711), + [anon_sym_PIPE_PIPE] = ACTIONS(7713), + [anon_sym_AMP_AMP] = ACTIONS(7713), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_CARET] = ACTIONS(7711), + [anon_sym_AMP] = ACTIONS(7711), + [anon_sym_EQ_EQ] = ACTIONS(7713), + [anon_sym_BANG_EQ] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_EQ] = ACTIONS(7713), + [anon_sym_LT_EQ] = ACTIONS(7711), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_LT_LT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7711), + [anon_sym___extension__] = ACTIONS(7713), + [anon_sym_LBRACE] = ACTIONS(7713), + [anon_sym_LBRACK] = ACTIONS(7713), + [anon_sym_RBRACK] = ACTIONS(7713), + [anon_sym_EQ] = ACTIONS(7711), + [anon_sym_const] = ACTIONS(7711), + [anon_sym_constexpr] = ACTIONS(7713), + [anon_sym_volatile] = ACTIONS(7713), + [anon_sym_restrict] = ACTIONS(7713), + [anon_sym___restrict__] = ACTIONS(7713), + [anon_sym__Atomic] = ACTIONS(7713), + [anon_sym__Noreturn] = ACTIONS(7713), + [anon_sym_noreturn] = ACTIONS(7713), + [anon_sym__Nonnull] = ACTIONS(7713), + [anon_sym_mutable] = ACTIONS(7713), + [anon_sym_constinit] = ACTIONS(7713), + [anon_sym_consteval] = ACTIONS(7713), + [anon_sym_alignas] = ACTIONS(7713), + [anon_sym__Alignas] = ACTIONS(7713), + [anon_sym_QMARK] = ACTIONS(7713), + [anon_sym_STAR_EQ] = ACTIONS(7713), + [anon_sym_SLASH_EQ] = ACTIONS(7713), + [anon_sym_PERCENT_EQ] = ACTIONS(7713), + [anon_sym_PLUS_EQ] = ACTIONS(7713), + [anon_sym_DASH_EQ] = ACTIONS(7713), + [anon_sym_LT_LT_EQ] = ACTIONS(7713), + [anon_sym_GT_GT_EQ] = ACTIONS(7713), + [anon_sym_AMP_EQ] = ACTIONS(7713), + [anon_sym_CARET_EQ] = ACTIONS(7713), + [anon_sym_PIPE_EQ] = ACTIONS(7713), + [anon_sym_and_eq] = ACTIONS(7713), + [anon_sym_or_eq] = ACTIONS(7713), + [anon_sym_xor_eq] = ACTIONS(7713), + [anon_sym_LT_EQ_GT] = ACTIONS(7713), + [anon_sym_or] = ACTIONS(7711), + [anon_sym_and] = ACTIONS(7711), + [anon_sym_bitor] = ACTIONS(7713), + [anon_sym_xor] = ACTIONS(7711), + [anon_sym_bitand] = ACTIONS(7713), + [anon_sym_not_eq] = ACTIONS(7713), + [anon_sym_DASH_DASH] = ACTIONS(7713), + [anon_sym_PLUS_PLUS] = ACTIONS(7713), + [anon_sym_DOT] = ACTIONS(7711), + [anon_sym_DOT_STAR] = ACTIONS(7713), + [anon_sym_DASH_GT] = ACTIONS(7713), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7713), + [anon_sym_override] = ACTIONS(7713), + [anon_sym_requires] = ACTIONS(7713), }, [STATE(3087)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), - [anon_sym_COMMA] = ACTIONS(7777), - [anon_sym_LPAREN2] = ACTIONS(7777), - [anon_sym_DASH] = ACTIONS(7775), - [anon_sym_PLUS] = ACTIONS(7775), - [anon_sym_STAR] = ACTIONS(7775), - [anon_sym_SLASH] = ACTIONS(7775), - [anon_sym_PERCENT] = ACTIONS(7775), - [anon_sym_PIPE_PIPE] = ACTIONS(7777), - [anon_sym_AMP_AMP] = ACTIONS(7777), - [anon_sym_PIPE] = ACTIONS(7775), - [anon_sym_CARET] = ACTIONS(7775), - [anon_sym_AMP] = ACTIONS(7775), - [anon_sym_EQ_EQ] = ACTIONS(7777), - [anon_sym_BANG_EQ] = ACTIONS(7777), - [anon_sym_GT] = ACTIONS(7775), - [anon_sym_GT_EQ] = ACTIONS(7777), - [anon_sym_LT_EQ] = ACTIONS(7775), - [anon_sym_LT] = ACTIONS(7775), - [anon_sym_LT_LT] = ACTIONS(7775), - [anon_sym_GT_GT] = ACTIONS(7775), - [anon_sym___extension__] = ACTIONS(7777), - [anon_sym_LBRACE] = ACTIONS(7777), - [anon_sym_LBRACK] = ACTIONS(7777), - [anon_sym_RBRACK] = ACTIONS(7777), - [anon_sym_EQ] = ACTIONS(7775), - [anon_sym_const] = ACTIONS(7775), - [anon_sym_constexpr] = ACTIONS(7777), - [anon_sym_volatile] = ACTIONS(7777), - [anon_sym_restrict] = ACTIONS(7777), - [anon_sym___restrict__] = ACTIONS(7777), - [anon_sym__Atomic] = ACTIONS(7777), - [anon_sym__Noreturn] = ACTIONS(7777), - [anon_sym_noreturn] = ACTIONS(7777), - [anon_sym__Nonnull] = ACTIONS(7777), - [anon_sym_mutable] = ACTIONS(7777), - [anon_sym_constinit] = ACTIONS(7777), - [anon_sym_consteval] = ACTIONS(7777), - [anon_sym_alignas] = ACTIONS(7777), - [anon_sym__Alignas] = ACTIONS(7777), - [anon_sym_QMARK] = ACTIONS(7777), - [anon_sym_STAR_EQ] = ACTIONS(7777), - [anon_sym_SLASH_EQ] = ACTIONS(7777), - [anon_sym_PERCENT_EQ] = ACTIONS(7777), - [anon_sym_PLUS_EQ] = ACTIONS(7777), - [anon_sym_DASH_EQ] = ACTIONS(7777), - [anon_sym_LT_LT_EQ] = ACTIONS(7777), - [anon_sym_GT_GT_EQ] = ACTIONS(7777), - [anon_sym_AMP_EQ] = ACTIONS(7777), - [anon_sym_CARET_EQ] = ACTIONS(7777), - [anon_sym_PIPE_EQ] = ACTIONS(7777), - [anon_sym_and_eq] = ACTIONS(7777), - [anon_sym_or_eq] = ACTIONS(7777), - [anon_sym_xor_eq] = ACTIONS(7777), - [anon_sym_LT_EQ_GT] = ACTIONS(7777), - [anon_sym_or] = ACTIONS(7775), - [anon_sym_and] = ACTIONS(7775), - [anon_sym_bitor] = ACTIONS(7777), - [anon_sym_xor] = ACTIONS(7775), - [anon_sym_bitand] = ACTIONS(7777), - [anon_sym_not_eq] = ACTIONS(7777), - [anon_sym_DASH_DASH] = ACTIONS(7777), - [anon_sym_PLUS_PLUS] = ACTIONS(7777), - [anon_sym_DOT] = ACTIONS(7775), - [anon_sym_DOT_STAR] = ACTIONS(7777), - [anon_sym_DASH_GT] = ACTIONS(7777), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7777), - [anon_sym_override] = ACTIONS(7777), - [anon_sym_requires] = ACTIONS(7777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_PIPE_PIPE] = ACTIONS(6653), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6660), + [anon_sym_CARET] = ACTIONS(6660), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6653), + [anon_sym_BANG_EQ] = ACTIONS(6653), + [anon_sym_GT] = ACTIONS(6660), + [anon_sym_GT_EQ] = ACTIONS(6653), + [anon_sym_LT_EQ] = ACTIONS(6660), + [anon_sym_LT] = ACTIONS(6660), + [anon_sym_LT_LT] = ACTIONS(6660), + [anon_sym_GT_GT] = ACTIONS(6660), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_RBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6660), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_STAR_EQ] = ACTIONS(6653), + [anon_sym_SLASH_EQ] = ACTIONS(6653), + [anon_sym_PERCENT_EQ] = ACTIONS(6653), + [anon_sym_PLUS_EQ] = ACTIONS(6653), + [anon_sym_DASH_EQ] = ACTIONS(6653), + [anon_sym_LT_LT_EQ] = ACTIONS(6653), + [anon_sym_GT_GT_EQ] = ACTIONS(6653), + [anon_sym_AMP_EQ] = ACTIONS(6653), + [anon_sym_CARET_EQ] = ACTIONS(6653), + [anon_sym_PIPE_EQ] = ACTIONS(6653), + [anon_sym_and_eq] = ACTIONS(6653), + [anon_sym_or_eq] = ACTIONS(6653), + [anon_sym_xor_eq] = ACTIONS(6653), + [anon_sym_LT_EQ_GT] = ACTIONS(6653), + [anon_sym_or] = ACTIONS(6660), + [anon_sym_and] = ACTIONS(6660), + [anon_sym_bitor] = ACTIONS(6653), + [anon_sym_xor] = ACTIONS(6660), + [anon_sym_bitand] = ACTIONS(6653), + [anon_sym_not_eq] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_DOT] = ACTIONS(6660), + [anon_sym_DOT_STAR] = ACTIONS(6653), + [anon_sym_DASH_GT] = ACTIONS(6653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), }, [STATE(3088)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), - [anon_sym_COMMA] = ACTIONS(7769), - [anon_sym_LPAREN2] = ACTIONS(7769), - [anon_sym_DASH] = ACTIONS(7767), - [anon_sym_PLUS] = ACTIONS(7767), - [anon_sym_STAR] = ACTIONS(7767), - [anon_sym_SLASH] = ACTIONS(7767), - [anon_sym_PERCENT] = ACTIONS(7767), - [anon_sym_PIPE_PIPE] = ACTIONS(7769), - [anon_sym_AMP_AMP] = ACTIONS(7769), - [anon_sym_PIPE] = ACTIONS(7767), - [anon_sym_CARET] = ACTIONS(7767), - [anon_sym_AMP] = ACTIONS(7767), - [anon_sym_EQ_EQ] = ACTIONS(7769), - [anon_sym_BANG_EQ] = ACTIONS(7769), - [anon_sym_GT] = ACTIONS(7767), - [anon_sym_GT_EQ] = ACTIONS(7767), - [anon_sym_LT_EQ] = ACTIONS(7767), - [anon_sym_LT] = ACTIONS(7767), - [anon_sym_LT_LT] = ACTIONS(7767), - [anon_sym_GT_GT] = ACTIONS(7767), - [anon_sym___extension__] = ACTIONS(7769), - [anon_sym_LBRACE] = ACTIONS(7769), - [anon_sym_LBRACK] = ACTIONS(7769), - [anon_sym_EQ] = ACTIONS(7767), - [anon_sym_const] = ACTIONS(7767), - [anon_sym_constexpr] = ACTIONS(7769), - [anon_sym_volatile] = ACTIONS(7769), - [anon_sym_restrict] = ACTIONS(7769), - [anon_sym___restrict__] = ACTIONS(7769), - [anon_sym__Atomic] = ACTIONS(7769), - [anon_sym__Noreturn] = ACTIONS(7769), - [anon_sym_noreturn] = ACTIONS(7769), - [anon_sym__Nonnull] = ACTIONS(7769), - [anon_sym_mutable] = ACTIONS(7769), - [anon_sym_constinit] = ACTIONS(7769), - [anon_sym_consteval] = ACTIONS(7769), - [anon_sym_alignas] = ACTIONS(7769), - [anon_sym__Alignas] = ACTIONS(7769), - [anon_sym_QMARK] = ACTIONS(7769), - [anon_sym_STAR_EQ] = ACTIONS(7769), - [anon_sym_SLASH_EQ] = ACTIONS(7769), - [anon_sym_PERCENT_EQ] = ACTIONS(7769), - [anon_sym_PLUS_EQ] = ACTIONS(7769), - [anon_sym_DASH_EQ] = ACTIONS(7769), - [anon_sym_LT_LT_EQ] = ACTIONS(7769), - [anon_sym_GT_GT_EQ] = ACTIONS(7767), - [anon_sym_AMP_EQ] = ACTIONS(7769), - [anon_sym_CARET_EQ] = ACTIONS(7769), - [anon_sym_PIPE_EQ] = ACTIONS(7769), - [anon_sym_and_eq] = ACTIONS(7769), - [anon_sym_or_eq] = ACTIONS(7769), - [anon_sym_xor_eq] = ACTIONS(7769), - [anon_sym_LT_EQ_GT] = ACTIONS(7769), - [anon_sym_or] = ACTIONS(7767), - [anon_sym_and] = ACTIONS(7767), - [anon_sym_bitor] = ACTIONS(7769), - [anon_sym_xor] = ACTIONS(7767), - [anon_sym_bitand] = ACTIONS(7769), - [anon_sym_not_eq] = ACTIONS(7769), - [anon_sym_DASH_DASH] = ACTIONS(7769), - [anon_sym_PLUS_PLUS] = ACTIONS(7769), - [anon_sym_DOT] = ACTIONS(7767), - [anon_sym_DOT_STAR] = ACTIONS(7769), - [anon_sym_DASH_GT] = ACTIONS(7769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7717), + [anon_sym_COMMA] = ACTIONS(7717), + [anon_sym_LPAREN2] = ACTIONS(7717), + [anon_sym_DASH] = ACTIONS(7715), + [anon_sym_PLUS] = ACTIONS(7715), + [anon_sym_STAR] = ACTIONS(7715), + [anon_sym_SLASH] = ACTIONS(7715), + [anon_sym_PERCENT] = ACTIONS(7715), + [anon_sym_PIPE_PIPE] = ACTIONS(7717), + [anon_sym_AMP_AMP] = ACTIONS(7717), + [anon_sym_PIPE] = ACTIONS(7715), + [anon_sym_CARET] = ACTIONS(7715), + [anon_sym_AMP] = ACTIONS(7715), + [anon_sym_EQ_EQ] = ACTIONS(7717), + [anon_sym_BANG_EQ] = ACTIONS(7717), + [anon_sym_GT] = ACTIONS(7715), + [anon_sym_GT_EQ] = ACTIONS(7717), + [anon_sym_LT_EQ] = ACTIONS(7715), + [anon_sym_LT] = ACTIONS(7715), + [anon_sym_LT_LT] = ACTIONS(7715), + [anon_sym_GT_GT] = ACTIONS(7715), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7717), + [anon_sym_RBRACK] = ACTIONS(7717), + [anon_sym_EQ] = ACTIONS(7715), + [anon_sym_const] = ACTIONS(7715), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_mutable] = ACTIONS(7717), + [anon_sym_constinit] = ACTIONS(7717), + [anon_sym_consteval] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [anon_sym_QMARK] = ACTIONS(7717), + [anon_sym_STAR_EQ] = ACTIONS(7717), + [anon_sym_SLASH_EQ] = ACTIONS(7717), + [anon_sym_PERCENT_EQ] = ACTIONS(7717), + [anon_sym_PLUS_EQ] = ACTIONS(7717), + [anon_sym_DASH_EQ] = ACTIONS(7717), + [anon_sym_LT_LT_EQ] = ACTIONS(7717), + [anon_sym_GT_GT_EQ] = ACTIONS(7717), + [anon_sym_AMP_EQ] = ACTIONS(7717), + [anon_sym_CARET_EQ] = ACTIONS(7717), + [anon_sym_PIPE_EQ] = ACTIONS(7717), + [anon_sym_and_eq] = ACTIONS(7717), + [anon_sym_or_eq] = ACTIONS(7717), + [anon_sym_xor_eq] = ACTIONS(7717), + [anon_sym_LT_EQ_GT] = ACTIONS(7717), + [anon_sym_or] = ACTIONS(7715), + [anon_sym_and] = ACTIONS(7715), + [anon_sym_bitor] = ACTIONS(7717), + [anon_sym_xor] = ACTIONS(7715), + [anon_sym_bitand] = ACTIONS(7717), + [anon_sym_not_eq] = ACTIONS(7717), + [anon_sym_DASH_DASH] = ACTIONS(7717), + [anon_sym_PLUS_PLUS] = ACTIONS(7717), + [anon_sym_DOT] = ACTIONS(7715), + [anon_sym_DOT_STAR] = ACTIONS(7717), + [anon_sym_DASH_GT] = ACTIONS(7717), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7769), - [anon_sym_override] = ACTIONS(7769), - [anon_sym_GT2] = ACTIONS(7769), - [anon_sym_requires] = ACTIONS(7769), + [anon_sym_final] = ACTIONS(7717), + [anon_sym_override] = ACTIONS(7717), + [anon_sym_requires] = ACTIONS(7717), }, [STATE(3089)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), - [anon_sym_COMMA] = ACTIONS(7761), - [anon_sym_LPAREN2] = ACTIONS(7761), - [anon_sym_DASH] = ACTIONS(7759), - [anon_sym_PLUS] = ACTIONS(7759), - [anon_sym_STAR] = ACTIONS(7759), - [anon_sym_SLASH] = ACTIONS(7759), - [anon_sym_PERCENT] = ACTIONS(7759), - [anon_sym_PIPE_PIPE] = ACTIONS(7761), - [anon_sym_AMP_AMP] = ACTIONS(7761), - [anon_sym_PIPE] = ACTIONS(7759), - [anon_sym_CARET] = ACTIONS(7759), - [anon_sym_AMP] = ACTIONS(7759), - [anon_sym_EQ_EQ] = ACTIONS(7761), - [anon_sym_BANG_EQ] = ACTIONS(7761), - [anon_sym_GT] = ACTIONS(7759), - [anon_sym_GT_EQ] = ACTIONS(7759), - [anon_sym_LT_EQ] = ACTIONS(7759), - [anon_sym_LT] = ACTIONS(7759), - [anon_sym_LT_LT] = ACTIONS(7759), - [anon_sym_GT_GT] = ACTIONS(7759), - [anon_sym___extension__] = ACTIONS(7761), - [anon_sym_LBRACE] = ACTIONS(7761), - [anon_sym_LBRACK] = ACTIONS(7761), - [anon_sym_EQ] = ACTIONS(7759), - [anon_sym_const] = ACTIONS(7759), - [anon_sym_constexpr] = ACTIONS(7761), - [anon_sym_volatile] = ACTIONS(7761), - [anon_sym_restrict] = ACTIONS(7761), - [anon_sym___restrict__] = ACTIONS(7761), - [anon_sym__Atomic] = ACTIONS(7761), - [anon_sym__Noreturn] = ACTIONS(7761), - [anon_sym_noreturn] = ACTIONS(7761), - [anon_sym__Nonnull] = ACTIONS(7761), - [anon_sym_mutable] = ACTIONS(7761), - [anon_sym_constinit] = ACTIONS(7761), - [anon_sym_consteval] = ACTIONS(7761), - [anon_sym_alignas] = ACTIONS(7761), - [anon_sym__Alignas] = ACTIONS(7761), - [anon_sym_QMARK] = ACTIONS(7761), - [anon_sym_STAR_EQ] = ACTIONS(7761), - [anon_sym_SLASH_EQ] = ACTIONS(7761), - [anon_sym_PERCENT_EQ] = ACTIONS(7761), - [anon_sym_PLUS_EQ] = ACTIONS(7761), - [anon_sym_DASH_EQ] = ACTIONS(7761), - [anon_sym_LT_LT_EQ] = ACTIONS(7761), - [anon_sym_GT_GT_EQ] = ACTIONS(7759), - [anon_sym_AMP_EQ] = ACTIONS(7761), - [anon_sym_CARET_EQ] = ACTIONS(7761), - [anon_sym_PIPE_EQ] = ACTIONS(7761), - [anon_sym_and_eq] = ACTIONS(7761), - [anon_sym_or_eq] = ACTIONS(7761), - [anon_sym_xor_eq] = ACTIONS(7761), - [anon_sym_LT_EQ_GT] = ACTIONS(7761), - [anon_sym_or] = ACTIONS(7759), - [anon_sym_and] = ACTIONS(7759), - [anon_sym_bitor] = ACTIONS(7761), - [anon_sym_xor] = ACTIONS(7759), - [anon_sym_bitand] = ACTIONS(7761), - [anon_sym_not_eq] = ACTIONS(7761), - [anon_sym_DASH_DASH] = ACTIONS(7761), - [anon_sym_PLUS_PLUS] = ACTIONS(7761), - [anon_sym_DOT] = ACTIONS(7759), - [anon_sym_DOT_STAR] = ACTIONS(7761), - [anon_sym_DASH_GT] = ACTIONS(7761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_RBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7725), + [anon_sym_or_eq] = ACTIONS(7725), + [anon_sym_xor_eq] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7761), - [anon_sym_override] = ACTIONS(7761), - [anon_sym_GT2] = ACTIONS(7761), - [anon_sym_requires] = ACTIONS(7761), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), }, [STATE(3090)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), - [anon_sym_COMMA] = ACTIONS(7765), - [anon_sym_LPAREN2] = ACTIONS(7765), - [anon_sym_DASH] = ACTIONS(7763), - [anon_sym_PLUS] = ACTIONS(7763), - [anon_sym_STAR] = ACTIONS(7763), - [anon_sym_SLASH] = ACTIONS(7763), - [anon_sym_PERCENT] = ACTIONS(7763), - [anon_sym_PIPE_PIPE] = ACTIONS(7765), - [anon_sym_AMP_AMP] = ACTIONS(7765), - [anon_sym_PIPE] = ACTIONS(7763), - [anon_sym_CARET] = ACTIONS(7763), - [anon_sym_AMP] = ACTIONS(7763), - [anon_sym_EQ_EQ] = ACTIONS(7765), - [anon_sym_BANG_EQ] = ACTIONS(7765), - [anon_sym_GT] = ACTIONS(7763), - [anon_sym_GT_EQ] = ACTIONS(7763), - [anon_sym_LT_EQ] = ACTIONS(7763), - [anon_sym_LT] = ACTIONS(7763), - [anon_sym_LT_LT] = ACTIONS(7763), - [anon_sym_GT_GT] = ACTIONS(7763), - [anon_sym___extension__] = ACTIONS(7765), - [anon_sym_LBRACE] = ACTIONS(7765), - [anon_sym_LBRACK] = ACTIONS(7765), - [anon_sym_EQ] = ACTIONS(7763), - [anon_sym_const] = ACTIONS(7763), - [anon_sym_constexpr] = ACTIONS(7765), - [anon_sym_volatile] = ACTIONS(7765), - [anon_sym_restrict] = ACTIONS(7765), - [anon_sym___restrict__] = ACTIONS(7765), - [anon_sym__Atomic] = ACTIONS(7765), - [anon_sym__Noreturn] = ACTIONS(7765), - [anon_sym_noreturn] = ACTIONS(7765), - [anon_sym__Nonnull] = ACTIONS(7765), - [anon_sym_mutable] = ACTIONS(7765), - [anon_sym_constinit] = ACTIONS(7765), - [anon_sym_consteval] = ACTIONS(7765), - [anon_sym_alignas] = ACTIONS(7765), - [anon_sym__Alignas] = ACTIONS(7765), - [anon_sym_QMARK] = ACTIONS(7765), - [anon_sym_STAR_EQ] = ACTIONS(7765), - [anon_sym_SLASH_EQ] = ACTIONS(7765), - [anon_sym_PERCENT_EQ] = ACTIONS(7765), - [anon_sym_PLUS_EQ] = ACTIONS(7765), - [anon_sym_DASH_EQ] = ACTIONS(7765), - [anon_sym_LT_LT_EQ] = ACTIONS(7765), - [anon_sym_GT_GT_EQ] = ACTIONS(7763), - [anon_sym_AMP_EQ] = ACTIONS(7765), - [anon_sym_CARET_EQ] = ACTIONS(7765), - [anon_sym_PIPE_EQ] = ACTIONS(7765), - [anon_sym_and_eq] = ACTIONS(7765), - [anon_sym_or_eq] = ACTIONS(7765), - [anon_sym_xor_eq] = ACTIONS(7765), - [anon_sym_LT_EQ_GT] = ACTIONS(7765), - [anon_sym_or] = ACTIONS(7763), - [anon_sym_and] = ACTIONS(7763), - [anon_sym_bitor] = ACTIONS(7765), - [anon_sym_xor] = ACTIONS(7763), - [anon_sym_bitand] = ACTIONS(7765), - [anon_sym_not_eq] = ACTIONS(7765), - [anon_sym_DASH_DASH] = ACTIONS(7765), - [anon_sym_PLUS_PLUS] = ACTIONS(7765), - [anon_sym_DOT] = ACTIONS(7763), - [anon_sym_DOT_STAR] = ACTIONS(7765), - [anon_sym_DASH_GT] = ACTIONS(7765), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7765), - [anon_sym_override] = ACTIONS(7765), - [anon_sym_GT2] = ACTIONS(7765), - [anon_sym_requires] = ACTIONS(7765), - }, - [STATE(3091)] = { - [sym_identifier] = ACTIONS(7755), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), - [anon_sym_COMMA] = ACTIONS(7757), - [anon_sym_RPAREN] = ACTIONS(7757), - [anon_sym_LPAREN2] = ACTIONS(7757), - [anon_sym_DASH] = ACTIONS(7755), - [anon_sym_PLUS] = ACTIONS(7755), - [anon_sym_STAR] = ACTIONS(7757), - [anon_sym_SLASH] = ACTIONS(7755), - [anon_sym_PERCENT] = ACTIONS(7757), - [anon_sym_PIPE_PIPE] = ACTIONS(7757), - [anon_sym_AMP_AMP] = ACTIONS(7757), - [anon_sym_PIPE] = ACTIONS(7755), - [anon_sym_CARET] = ACTIONS(7757), - [anon_sym_AMP] = ACTIONS(7755), - [anon_sym_EQ_EQ] = ACTIONS(7757), - [anon_sym_BANG_EQ] = ACTIONS(7757), - [anon_sym_GT] = ACTIONS(7755), - [anon_sym_GT_EQ] = ACTIONS(7757), - [anon_sym_LT_EQ] = ACTIONS(7755), - [anon_sym_LT] = ACTIONS(7755), - [anon_sym_LT_LT] = ACTIONS(7757), - [anon_sym_GT_GT] = ACTIONS(7757), - [anon_sym_SEMI] = ACTIONS(7757), - [anon_sym___extension__] = ACTIONS(7755), - [anon_sym___attribute__] = ACTIONS(7755), - [anon_sym___attribute] = ACTIONS(7755), - [anon_sym_COLON] = ACTIONS(7755), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7757), - [anon_sym___based] = ACTIONS(7755), - [anon_sym_LBRACE] = ACTIONS(7757), - [anon_sym_RBRACE] = ACTIONS(7757), - [anon_sym_signed] = ACTIONS(7755), - [anon_sym_unsigned] = ACTIONS(7755), - [anon_sym_long] = ACTIONS(7755), - [anon_sym_short] = ACTIONS(7755), - [anon_sym_LBRACK] = ACTIONS(7757), - [anon_sym_const] = ACTIONS(7755), - [anon_sym_constexpr] = ACTIONS(7755), - [anon_sym_volatile] = ACTIONS(7755), - [anon_sym_restrict] = ACTIONS(7755), - [anon_sym___restrict__] = ACTIONS(7755), - [anon_sym__Atomic] = ACTIONS(7755), - [anon_sym__Noreturn] = ACTIONS(7755), - [anon_sym_noreturn] = ACTIONS(7755), - [anon_sym__Nonnull] = ACTIONS(7755), - [anon_sym_mutable] = ACTIONS(7755), - [anon_sym_constinit] = ACTIONS(7755), - [anon_sym_consteval] = ACTIONS(7755), - [anon_sym_alignas] = ACTIONS(7755), - [anon_sym__Alignas] = ACTIONS(7755), - [sym_primitive_type] = ACTIONS(7755), - [anon_sym_QMARK] = ACTIONS(7757), - [anon_sym_LT_EQ_GT] = ACTIONS(7757), - [anon_sym_or] = ACTIONS(7755), - [anon_sym_and] = ACTIONS(7755), - [anon_sym_bitor] = ACTIONS(7755), - [anon_sym_xor] = ACTIONS(7755), - [anon_sym_bitand] = ACTIONS(7755), - [anon_sym_not_eq] = ACTIONS(7755), - [anon_sym_DASH_DASH] = ACTIONS(7757), - [anon_sym_PLUS_PLUS] = ACTIONS(7757), - [anon_sym_DOT] = ACTIONS(7755), - [anon_sym_DOT_STAR] = ACTIONS(7757), - [anon_sym_DASH_GT] = ACTIONS(7757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7727), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7727), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7727), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7729), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7727), + [anon_sym_GT_GT] = ACTIONS(7727), + [anon_sym___extension__] = ACTIONS(7729), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_RBRACK] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(7727), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7729), + [anon_sym_volatile] = ACTIONS(7729), + [anon_sym_restrict] = ACTIONS(7729), + [anon_sym___restrict__] = ACTIONS(7729), + [anon_sym__Atomic] = ACTIONS(7729), + [anon_sym__Noreturn] = ACTIONS(7729), + [anon_sym_noreturn] = ACTIONS(7729), + [anon_sym__Nonnull] = ACTIONS(7729), + [anon_sym_mutable] = ACTIONS(7729), + [anon_sym_constinit] = ACTIONS(7729), + [anon_sym_consteval] = ACTIONS(7729), + [anon_sym_alignas] = ACTIONS(7729), + [anon_sym__Alignas] = ACTIONS(7729), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_STAR_EQ] = ACTIONS(7729), + [anon_sym_SLASH_EQ] = ACTIONS(7729), + [anon_sym_PERCENT_EQ] = ACTIONS(7729), + [anon_sym_PLUS_EQ] = ACTIONS(7729), + [anon_sym_DASH_EQ] = ACTIONS(7729), + [anon_sym_LT_LT_EQ] = ACTIONS(7729), + [anon_sym_GT_GT_EQ] = ACTIONS(7729), + [anon_sym_AMP_EQ] = ACTIONS(7729), + [anon_sym_CARET_EQ] = ACTIONS(7729), + [anon_sym_PIPE_EQ] = ACTIONS(7729), + [anon_sym_and_eq] = ACTIONS(7729), + [anon_sym_or_eq] = ACTIONS(7729), + [anon_sym_xor_eq] = ACTIONS(7729), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7727), + [anon_sym_and] = ACTIONS(7727), + [anon_sym_bitor] = ACTIONS(7729), + [anon_sym_xor] = ACTIONS(7727), + [anon_sym_bitand] = ACTIONS(7729), + [anon_sym_not_eq] = ACTIONS(7729), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7729), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7755), - [anon_sym_override] = ACTIONS(7755), - [anon_sym_requires] = ACTIONS(7755), - [anon_sym_COLON_RBRACK] = ACTIONS(7757), + [anon_sym_final] = ACTIONS(7729), + [anon_sym_override] = ACTIONS(7729), + [anon_sym_requires] = ACTIONS(7729), + }, + [STATE(3091)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7551), + [anon_sym_COMMA] = ACTIONS(7551), + [anon_sym_LPAREN2] = ACTIONS(7551), + [anon_sym_DASH] = ACTIONS(7549), + [anon_sym_PLUS] = ACTIONS(7549), + [anon_sym_STAR] = ACTIONS(7549), + [anon_sym_SLASH] = ACTIONS(7549), + [anon_sym_PERCENT] = ACTIONS(7549), + [anon_sym_PIPE_PIPE] = ACTIONS(7551), + [anon_sym_AMP_AMP] = ACTIONS(7551), + [anon_sym_PIPE] = ACTIONS(7549), + [anon_sym_CARET] = ACTIONS(7549), + [anon_sym_AMP] = ACTIONS(7549), + [anon_sym_EQ_EQ] = ACTIONS(7551), + [anon_sym_BANG_EQ] = ACTIONS(7551), + [anon_sym_GT] = ACTIONS(7549), + [anon_sym_GT_EQ] = ACTIONS(7551), + [anon_sym_LT_EQ] = ACTIONS(7549), + [anon_sym_LT] = ACTIONS(7549), + [anon_sym_LT_LT] = ACTIONS(7549), + [anon_sym_GT_GT] = ACTIONS(7549), + [anon_sym___extension__] = ACTIONS(7551), + [anon_sym_LBRACE] = ACTIONS(7551), + [anon_sym_LBRACK] = ACTIONS(7551), + [anon_sym_RBRACK] = ACTIONS(7551), + [anon_sym_EQ] = ACTIONS(7549), + [anon_sym_const] = ACTIONS(7549), + [anon_sym_constexpr] = ACTIONS(7551), + [anon_sym_volatile] = ACTIONS(7551), + [anon_sym_restrict] = ACTIONS(7551), + [anon_sym___restrict__] = ACTIONS(7551), + [anon_sym__Atomic] = ACTIONS(7551), + [anon_sym__Noreturn] = ACTIONS(7551), + [anon_sym_noreturn] = ACTIONS(7551), + [anon_sym__Nonnull] = ACTIONS(7551), + [anon_sym_mutable] = ACTIONS(7551), + [anon_sym_constinit] = ACTIONS(7551), + [anon_sym_consteval] = ACTIONS(7551), + [anon_sym_alignas] = ACTIONS(7551), + [anon_sym__Alignas] = ACTIONS(7551), + [anon_sym_QMARK] = ACTIONS(7551), + [anon_sym_STAR_EQ] = ACTIONS(7551), + [anon_sym_SLASH_EQ] = ACTIONS(7551), + [anon_sym_PERCENT_EQ] = ACTIONS(7551), + [anon_sym_PLUS_EQ] = ACTIONS(7551), + [anon_sym_DASH_EQ] = ACTIONS(7551), + [anon_sym_LT_LT_EQ] = ACTIONS(7551), + [anon_sym_GT_GT_EQ] = ACTIONS(7551), + [anon_sym_AMP_EQ] = ACTIONS(7551), + [anon_sym_CARET_EQ] = ACTIONS(7551), + [anon_sym_PIPE_EQ] = ACTIONS(7551), + [anon_sym_and_eq] = ACTIONS(7551), + [anon_sym_or_eq] = ACTIONS(7551), + [anon_sym_xor_eq] = ACTIONS(7551), + [anon_sym_LT_EQ_GT] = ACTIONS(7551), + [anon_sym_or] = ACTIONS(7549), + [anon_sym_and] = ACTIONS(7549), + [anon_sym_bitor] = ACTIONS(7551), + [anon_sym_xor] = ACTIONS(7549), + [anon_sym_bitand] = ACTIONS(7551), + [anon_sym_not_eq] = ACTIONS(7551), + [anon_sym_DASH_DASH] = ACTIONS(7551), + [anon_sym_PLUS_PLUS] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7549), + [anon_sym_DOT_STAR] = ACTIONS(7551), + [anon_sym_DASH_GT] = ACTIONS(7551), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7551), + [anon_sym_requires] = ACTIONS(7551), }, [STATE(3092)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_RBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7725), + [anon_sym_or_eq] = ACTIONS(7725), + [anon_sym_xor_eq] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + }, + [STATE(3093)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_PIPE_PIPE] = ACTIONS(6653), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6660), + [anon_sym_CARET] = ACTIONS(6660), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6653), + [anon_sym_BANG_EQ] = ACTIONS(6653), + [anon_sym_GT] = ACTIONS(6660), + [anon_sym_GT_EQ] = ACTIONS(6653), + [anon_sym_LT_EQ] = ACTIONS(6660), + [anon_sym_LT] = ACTIONS(6660), + [anon_sym_LT_LT] = ACTIONS(6660), + [anon_sym_GT_GT] = ACTIONS(6660), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_RBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6658), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6651), + [anon_sym_or_eq] = ACTIONS(6651), + [anon_sym_xor_eq] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6653), + [anon_sym_or] = ACTIONS(6660), + [anon_sym_and] = ACTIONS(6660), + [anon_sym_bitor] = ACTIONS(6653), + [anon_sym_xor] = ACTIONS(6660), + [anon_sym_bitand] = ACTIONS(6653), + [anon_sym_not_eq] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_DOT] = ACTIONS(6660), + [anon_sym_DOT_STAR] = ACTIONS(6653), + [anon_sym_DASH_GT] = ACTIONS(6653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + }, + [STATE(3094)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7604), + [anon_sym_COMMA] = ACTIONS(7604), + [anon_sym_LPAREN2] = ACTIONS(7604), + [anon_sym_DASH] = ACTIONS(7602), + [anon_sym_PLUS] = ACTIONS(7602), + [anon_sym_STAR] = ACTIONS(7602), + [anon_sym_SLASH] = ACTIONS(7602), + [anon_sym_PERCENT] = ACTIONS(7602), + [anon_sym_PIPE_PIPE] = ACTIONS(7604), + [anon_sym_AMP_AMP] = ACTIONS(7604), + [anon_sym_PIPE] = ACTIONS(7602), + [anon_sym_CARET] = ACTIONS(7602), + [anon_sym_AMP] = ACTIONS(7602), + [anon_sym_EQ_EQ] = ACTIONS(7604), + [anon_sym_BANG_EQ] = ACTIONS(7604), + [anon_sym_GT] = ACTIONS(7602), + [anon_sym_GT_EQ] = ACTIONS(7602), + [anon_sym_LT_EQ] = ACTIONS(7602), + [anon_sym_LT] = ACTIONS(7602), + [anon_sym_LT_LT] = ACTIONS(7602), + [anon_sym_GT_GT] = ACTIONS(7602), + [anon_sym___extension__] = ACTIONS(7604), + [anon_sym_LBRACE] = ACTIONS(7604), + [anon_sym_LBRACK] = ACTIONS(7604), + [anon_sym_EQ] = ACTIONS(7602), + [anon_sym_const] = ACTIONS(7602), + [anon_sym_constexpr] = ACTIONS(7604), + [anon_sym_volatile] = ACTIONS(7604), + [anon_sym_restrict] = ACTIONS(7604), + [anon_sym___restrict__] = ACTIONS(7604), + [anon_sym__Atomic] = ACTIONS(7604), + [anon_sym__Noreturn] = ACTIONS(7604), + [anon_sym_noreturn] = ACTIONS(7604), + [anon_sym__Nonnull] = ACTIONS(7604), + [anon_sym_mutable] = ACTIONS(7604), + [anon_sym_constinit] = ACTIONS(7604), + [anon_sym_consteval] = ACTIONS(7604), + [anon_sym_alignas] = ACTIONS(7604), + [anon_sym__Alignas] = ACTIONS(7604), + [anon_sym_QMARK] = ACTIONS(7604), + [anon_sym_STAR_EQ] = ACTIONS(7604), + [anon_sym_SLASH_EQ] = ACTIONS(7604), + [anon_sym_PERCENT_EQ] = ACTIONS(7604), + [anon_sym_PLUS_EQ] = ACTIONS(7604), + [anon_sym_DASH_EQ] = ACTIONS(7604), + [anon_sym_LT_LT_EQ] = ACTIONS(7604), + [anon_sym_GT_GT_EQ] = ACTIONS(7602), + [anon_sym_AMP_EQ] = ACTIONS(7604), + [anon_sym_CARET_EQ] = ACTIONS(7604), + [anon_sym_PIPE_EQ] = ACTIONS(7604), + [anon_sym_and_eq] = ACTIONS(7604), + [anon_sym_or_eq] = ACTIONS(7604), + [anon_sym_xor_eq] = ACTIONS(7604), + [anon_sym_LT_EQ_GT] = ACTIONS(7604), + [anon_sym_or] = ACTIONS(7602), + [anon_sym_and] = ACTIONS(7602), + [anon_sym_bitor] = ACTIONS(7604), + [anon_sym_xor] = ACTIONS(7602), + [anon_sym_bitand] = ACTIONS(7604), + [anon_sym_not_eq] = ACTIONS(7604), + [anon_sym_DASH_DASH] = ACTIONS(7604), + [anon_sym_PLUS_PLUS] = ACTIONS(7604), + [anon_sym_DOT] = ACTIONS(7602), + [anon_sym_DOT_STAR] = ACTIONS(7604), + [anon_sym_DASH_GT] = ACTIONS(7604), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7604), + [anon_sym_override] = ACTIONS(7604), + [anon_sym_GT2] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(7604), + }, + [STATE(3095)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), [anon_sym_COMMA] = ACTIONS(7737), - [anon_sym_RPAREN] = ACTIONS(7737), [anon_sym_LPAREN2] = ACTIONS(7737), [anon_sym_DASH] = ACTIONS(7735), [anon_sym_PLUS] = ACTIONS(7735), @@ -400445,10 +400504,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7735), [anon_sym_GT_GT] = ACTIONS(7735), [anon_sym___extension__] = ACTIONS(7737), - [anon_sym___attribute__] = ACTIONS(7737), - [anon_sym___attribute] = ACTIONS(7735), [anon_sym_LBRACE] = ACTIONS(7737), [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_RBRACK] = ACTIONS(7737), [anon_sym_EQ] = ACTIONS(7735), [anon_sym_const] = ACTIONS(7735), [anon_sym_constexpr] = ACTIONS(7737), @@ -400475,1612 +400533,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7737), [anon_sym_CARET_EQ] = ACTIONS(7737), [anon_sym_PIPE_EQ] = ACTIONS(7737), + [anon_sym_and_eq] = ACTIONS(7737), + [anon_sym_or_eq] = ACTIONS(7737), + [anon_sym_xor_eq] = ACTIONS(7737), [anon_sym_LT_EQ_GT] = ACTIONS(7737), - [anon_sym_or] = ACTIONS(7737), - [anon_sym_and] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7735), + [anon_sym_and] = ACTIONS(7735), [anon_sym_bitor] = ACTIONS(7737), - [anon_sym_xor] = ACTIONS(7737), + [anon_sym_xor] = ACTIONS(7735), [anon_sym_bitand] = ACTIONS(7737), [anon_sym_not_eq] = ACTIONS(7737), [anon_sym_DASH_DASH] = ACTIONS(7737), [anon_sym_PLUS_PLUS] = ACTIONS(7737), [anon_sym_DOT] = ACTIONS(7735), [anon_sym_DOT_STAR] = ACTIONS(7737), - [anon_sym_DASH_GT] = ACTIONS(7735), + [anon_sym_DASH_GT] = ACTIONS(7737), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7737), [anon_sym_override] = ACTIONS(7737), [anon_sym_requires] = ACTIONS(7737), - [anon_sym_DASH_GT_STAR] = ACTIONS(7737), - }, - [STATE(3093)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), - [anon_sym_COMMA] = ACTIONS(7571), - [anon_sym_LPAREN2] = ACTIONS(7571), - [anon_sym_DASH] = ACTIONS(7569), - [anon_sym_PLUS] = ACTIONS(7569), - [anon_sym_STAR] = ACTIONS(7569), - [anon_sym_SLASH] = ACTIONS(7569), - [anon_sym_PERCENT] = ACTIONS(7569), - [anon_sym_PIPE_PIPE] = ACTIONS(7571), - [anon_sym_AMP_AMP] = ACTIONS(7571), - [anon_sym_PIPE] = ACTIONS(7569), - [anon_sym_CARET] = ACTIONS(7569), - [anon_sym_AMP] = ACTIONS(7569), - [anon_sym_EQ_EQ] = ACTIONS(7571), - [anon_sym_BANG_EQ] = ACTIONS(7571), - [anon_sym_GT] = ACTIONS(7569), - [anon_sym_GT_EQ] = ACTIONS(7571), - [anon_sym_LT_EQ] = ACTIONS(7569), - [anon_sym_LT] = ACTIONS(7569), - [anon_sym_LT_LT] = ACTIONS(7569), - [anon_sym_GT_GT] = ACTIONS(7569), - [anon_sym___extension__] = ACTIONS(7571), - [anon_sym_LBRACE] = ACTIONS(7571), - [anon_sym_LBRACK] = ACTIONS(7571), - [anon_sym_RBRACK] = ACTIONS(7571), - [anon_sym_EQ] = ACTIONS(7569), - [anon_sym_const] = ACTIONS(7569), - [anon_sym_constexpr] = ACTIONS(7571), - [anon_sym_volatile] = ACTIONS(7571), - [anon_sym_restrict] = ACTIONS(7571), - [anon_sym___restrict__] = ACTIONS(7571), - [anon_sym__Atomic] = ACTIONS(7571), - [anon_sym__Noreturn] = ACTIONS(7571), - [anon_sym_noreturn] = ACTIONS(7571), - [anon_sym__Nonnull] = ACTIONS(7571), - [anon_sym_mutable] = ACTIONS(7571), - [anon_sym_constinit] = ACTIONS(7571), - [anon_sym_consteval] = ACTIONS(7571), - [anon_sym_alignas] = ACTIONS(7571), - [anon_sym__Alignas] = ACTIONS(7571), - [anon_sym_QMARK] = ACTIONS(7571), - [anon_sym_STAR_EQ] = ACTIONS(7571), - [anon_sym_SLASH_EQ] = ACTIONS(7571), - [anon_sym_PERCENT_EQ] = ACTIONS(7571), - [anon_sym_PLUS_EQ] = ACTIONS(7571), - [anon_sym_DASH_EQ] = ACTIONS(7571), - [anon_sym_LT_LT_EQ] = ACTIONS(7571), - [anon_sym_GT_GT_EQ] = ACTIONS(7571), - [anon_sym_AMP_EQ] = ACTIONS(7571), - [anon_sym_CARET_EQ] = ACTIONS(7571), - [anon_sym_PIPE_EQ] = ACTIONS(7571), - [anon_sym_and_eq] = ACTIONS(7571), - [anon_sym_or_eq] = ACTIONS(7571), - [anon_sym_xor_eq] = ACTIONS(7571), - [anon_sym_LT_EQ_GT] = ACTIONS(7571), - [anon_sym_or] = ACTIONS(7569), - [anon_sym_and] = ACTIONS(7569), - [anon_sym_bitor] = ACTIONS(7571), - [anon_sym_xor] = ACTIONS(7569), - [anon_sym_bitand] = ACTIONS(7571), - [anon_sym_not_eq] = ACTIONS(7571), - [anon_sym_DASH_DASH] = ACTIONS(7571), - [anon_sym_PLUS_PLUS] = ACTIONS(7571), - [anon_sym_DOT] = ACTIONS(7569), - [anon_sym_DOT_STAR] = ACTIONS(7571), - [anon_sym_DASH_GT] = ACTIONS(7571), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7571), - [anon_sym_override] = ACTIONS(7571), - [anon_sym_requires] = ACTIONS(7571), - }, - [STATE(3094)] = { - [sym_identifier] = ACTIONS(9033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9035), - [anon_sym_COMMA] = ACTIONS(9035), - [anon_sym_RPAREN] = ACTIONS(9035), - [aux_sym_preproc_if_token2] = ACTIONS(9035), - [aux_sym_preproc_else_token1] = ACTIONS(9035), - [aux_sym_preproc_elif_token1] = ACTIONS(9033), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9035), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9035), - [anon_sym_LPAREN2] = ACTIONS(9035), - [anon_sym_DASH] = ACTIONS(9033), - [anon_sym_PLUS] = ACTIONS(9033), - [anon_sym_STAR] = ACTIONS(9033), - [anon_sym_SLASH] = ACTIONS(9033), - [anon_sym_PERCENT] = ACTIONS(9033), - [anon_sym_PIPE_PIPE] = ACTIONS(9035), - [anon_sym_AMP_AMP] = ACTIONS(9035), - [anon_sym_PIPE] = ACTIONS(9033), - [anon_sym_CARET] = ACTIONS(9033), - [anon_sym_AMP] = ACTIONS(9033), - [anon_sym_EQ_EQ] = ACTIONS(9035), - [anon_sym_BANG_EQ] = ACTIONS(9035), - [anon_sym_GT] = ACTIONS(9033), - [anon_sym_GT_EQ] = ACTIONS(9035), - [anon_sym_LT_EQ] = ACTIONS(9033), - [anon_sym_LT] = ACTIONS(9033), - [anon_sym_LT_LT] = ACTIONS(9033), - [anon_sym_GT_GT] = ACTIONS(9033), - [anon_sym_SEMI] = ACTIONS(9035), - [anon_sym___attribute__] = ACTIONS(9033), - [anon_sym___attribute] = ACTIONS(9033), - [anon_sym_COLON] = ACTIONS(9033), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9035), - [anon_sym_LBRACE] = ACTIONS(9035), - [anon_sym_RBRACE] = ACTIONS(9035), - [anon_sym_LBRACK] = ACTIONS(9033), - [anon_sym_RBRACK] = ACTIONS(9035), - [anon_sym_EQ] = ACTIONS(9033), - [anon_sym_QMARK] = ACTIONS(9035), - [anon_sym_STAR_EQ] = ACTIONS(9035), - [anon_sym_SLASH_EQ] = ACTIONS(9035), - [anon_sym_PERCENT_EQ] = ACTIONS(9035), - [anon_sym_PLUS_EQ] = ACTIONS(9035), - [anon_sym_DASH_EQ] = ACTIONS(9035), - [anon_sym_LT_LT_EQ] = ACTIONS(9035), - [anon_sym_GT_GT_EQ] = ACTIONS(9035), - [anon_sym_AMP_EQ] = ACTIONS(9035), - [anon_sym_CARET_EQ] = ACTIONS(9035), - [anon_sym_PIPE_EQ] = ACTIONS(9035), - [anon_sym_and_eq] = ACTIONS(9033), - [anon_sym_or_eq] = ACTIONS(9033), - [anon_sym_xor_eq] = ACTIONS(9033), - [anon_sym_LT_EQ_GT] = ACTIONS(9035), - [anon_sym_or] = ACTIONS(9033), - [anon_sym_and] = ACTIONS(9033), - [anon_sym_bitor] = ACTIONS(9033), - [anon_sym_xor] = ACTIONS(9033), - [anon_sym_bitand] = ACTIONS(9033), - [anon_sym_not_eq] = ACTIONS(9033), - [anon_sym_DASH_DASH] = ACTIONS(9035), - [anon_sym_PLUS_PLUS] = ACTIONS(9035), - [anon_sym_asm] = ACTIONS(9033), - [anon_sym___asm__] = ACTIONS(9033), - [anon_sym___asm] = ACTIONS(9033), - [anon_sym_DOT] = ACTIONS(9033), - [anon_sym_DOT_STAR] = ACTIONS(9035), - [anon_sym_DASH_GT] = ACTIONS(9035), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9033), - [anon_sym_COLON_RBRACK] = ACTIONS(9035), - }, - [STATE(3095)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), - [anon_sym_COMMA] = ACTIONS(7781), - [anon_sym_LPAREN2] = ACTIONS(7781), - [anon_sym_DASH] = ACTIONS(7779), - [anon_sym_PLUS] = ACTIONS(7779), - [anon_sym_STAR] = ACTIONS(7779), - [anon_sym_SLASH] = ACTIONS(7779), - [anon_sym_PERCENT] = ACTIONS(7779), - [anon_sym_PIPE_PIPE] = ACTIONS(7781), - [anon_sym_AMP_AMP] = ACTIONS(7781), - [anon_sym_PIPE] = ACTIONS(7779), - [anon_sym_CARET] = ACTIONS(7779), - [anon_sym_AMP] = ACTIONS(7779), - [anon_sym_EQ_EQ] = ACTIONS(7781), - [anon_sym_BANG_EQ] = ACTIONS(7781), - [anon_sym_GT] = ACTIONS(7779), - [anon_sym_GT_EQ] = ACTIONS(7779), - [anon_sym_LT_EQ] = ACTIONS(7779), - [anon_sym_LT] = ACTIONS(7779), - [anon_sym_LT_LT] = ACTIONS(7779), - [anon_sym_GT_GT] = ACTIONS(7779), - [anon_sym___extension__] = ACTIONS(7781), - [anon_sym_LBRACE] = ACTIONS(7781), - [anon_sym_LBRACK] = ACTIONS(7781), - [anon_sym_EQ] = ACTIONS(7779), - [anon_sym_const] = ACTIONS(7779), - [anon_sym_constexpr] = ACTIONS(7781), - [anon_sym_volatile] = ACTIONS(7781), - [anon_sym_restrict] = ACTIONS(7781), - [anon_sym___restrict__] = ACTIONS(7781), - [anon_sym__Atomic] = ACTIONS(7781), - [anon_sym__Noreturn] = ACTIONS(7781), - [anon_sym_noreturn] = ACTIONS(7781), - [anon_sym__Nonnull] = ACTIONS(7781), - [anon_sym_mutable] = ACTIONS(7781), - [anon_sym_constinit] = ACTIONS(7781), - [anon_sym_consteval] = ACTIONS(7781), - [anon_sym_alignas] = ACTIONS(7781), - [anon_sym__Alignas] = ACTIONS(7781), - [anon_sym_QMARK] = ACTIONS(7781), - [anon_sym_STAR_EQ] = ACTIONS(7781), - [anon_sym_SLASH_EQ] = ACTIONS(7781), - [anon_sym_PERCENT_EQ] = ACTIONS(7781), - [anon_sym_PLUS_EQ] = ACTIONS(7781), - [anon_sym_DASH_EQ] = ACTIONS(7781), - [anon_sym_LT_LT_EQ] = ACTIONS(7781), - [anon_sym_GT_GT_EQ] = ACTIONS(7779), - [anon_sym_AMP_EQ] = ACTIONS(7781), - [anon_sym_CARET_EQ] = ACTIONS(7781), - [anon_sym_PIPE_EQ] = ACTIONS(7781), - [anon_sym_and_eq] = ACTIONS(7781), - [anon_sym_or_eq] = ACTIONS(7781), - [anon_sym_xor_eq] = ACTIONS(7781), - [anon_sym_LT_EQ_GT] = ACTIONS(7781), - [anon_sym_or] = ACTIONS(7779), - [anon_sym_and] = ACTIONS(7779), - [anon_sym_bitor] = ACTIONS(7781), - [anon_sym_xor] = ACTIONS(7779), - [anon_sym_bitand] = ACTIONS(7781), - [anon_sym_not_eq] = ACTIONS(7781), - [anon_sym_DASH_DASH] = ACTIONS(7781), - [anon_sym_PLUS_PLUS] = ACTIONS(7781), - [anon_sym_DOT] = ACTIONS(7779), - [anon_sym_DOT_STAR] = ACTIONS(7781), - [anon_sym_DASH_GT] = ACTIONS(7781), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7781), - [anon_sym_override] = ACTIONS(7781), - [anon_sym_GT2] = ACTIONS(7781), - [anon_sym_requires] = ACTIONS(7781), }, [STATE(3096)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7651), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7651), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7651), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7651), - [anon_sym_GT_GT] = ACTIONS(7651), - [anon_sym___extension__] = ACTIONS(7653), - [anon_sym_LBRACE] = ACTIONS(7653), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(7651), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7653), - [anon_sym_volatile] = ACTIONS(7653), - [anon_sym_restrict] = ACTIONS(7653), - [anon_sym___restrict__] = ACTIONS(7653), - [anon_sym__Atomic] = ACTIONS(7653), - [anon_sym__Noreturn] = ACTIONS(7653), - [anon_sym_noreturn] = ACTIONS(7653), - [anon_sym__Nonnull] = ACTIONS(7653), - [anon_sym_mutable] = ACTIONS(7653), - [anon_sym_constinit] = ACTIONS(7653), - [anon_sym_consteval] = ACTIONS(7653), - [anon_sym_alignas] = ACTIONS(7653), - [anon_sym__Alignas] = ACTIONS(7653), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_STAR_EQ] = ACTIONS(7653), - [anon_sym_SLASH_EQ] = ACTIONS(7653), - [anon_sym_PERCENT_EQ] = ACTIONS(7653), - [anon_sym_PLUS_EQ] = ACTIONS(7653), - [anon_sym_DASH_EQ] = ACTIONS(7653), - [anon_sym_LT_LT_EQ] = ACTIONS(7653), - [anon_sym_GT_GT_EQ] = ACTIONS(7651), - [anon_sym_AMP_EQ] = ACTIONS(7653), - [anon_sym_CARET_EQ] = ACTIONS(7653), - [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_and_eq] = ACTIONS(7653), - [anon_sym_or_eq] = ACTIONS(7653), - [anon_sym_xor_eq] = ACTIONS(7653), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7651), - [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7653), - [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7653), - [anon_sym_not_eq] = ACTIONS(7653), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7653), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7653), - [anon_sym_override] = ACTIONS(7653), - [anon_sym_GT2] = ACTIONS(7653), - [anon_sym_requires] = ACTIONS(7653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7558), + [anon_sym_COMMA] = ACTIONS(7558), + [anon_sym_LPAREN2] = ACTIONS(7558), + [anon_sym_DASH] = ACTIONS(7556), + [anon_sym_PLUS] = ACTIONS(7556), + [anon_sym_STAR] = ACTIONS(7556), + [anon_sym_SLASH] = ACTIONS(7556), + [anon_sym_PERCENT] = ACTIONS(7556), + [anon_sym_PIPE_PIPE] = ACTIONS(7558), + [anon_sym_AMP_AMP] = ACTIONS(7558), + [anon_sym_PIPE] = ACTIONS(7556), + [anon_sym_CARET] = ACTIONS(7556), + [anon_sym_AMP] = ACTIONS(7556), + [anon_sym_EQ_EQ] = ACTIONS(7558), + [anon_sym_BANG_EQ] = ACTIONS(7558), + [anon_sym_GT] = ACTIONS(7556), + [anon_sym_GT_EQ] = ACTIONS(7558), + [anon_sym_LT_EQ] = ACTIONS(7556), + [anon_sym_LT] = ACTIONS(7556), + [anon_sym_LT_LT] = ACTIONS(7556), + [anon_sym_GT_GT] = ACTIONS(7556), + [anon_sym___extension__] = ACTIONS(7558), + [anon_sym_LBRACE] = ACTIONS(7558), + [anon_sym_LBRACK] = ACTIONS(7558), + [anon_sym_RBRACK] = ACTIONS(7558), + [anon_sym_EQ] = ACTIONS(7556), + [anon_sym_const] = ACTIONS(7556), + [anon_sym_constexpr] = ACTIONS(7558), + [anon_sym_volatile] = ACTIONS(7558), + [anon_sym_restrict] = ACTIONS(7558), + [anon_sym___restrict__] = ACTIONS(7558), + [anon_sym__Atomic] = ACTIONS(7558), + [anon_sym__Noreturn] = ACTIONS(7558), + [anon_sym_noreturn] = ACTIONS(7558), + [anon_sym__Nonnull] = ACTIONS(7558), + [anon_sym_mutable] = ACTIONS(7558), + [anon_sym_constinit] = ACTIONS(7558), + [anon_sym_consteval] = ACTIONS(7558), + [anon_sym_alignas] = ACTIONS(7558), + [anon_sym__Alignas] = ACTIONS(7558), + [anon_sym_QMARK] = ACTIONS(7558), + [anon_sym_STAR_EQ] = ACTIONS(7558), + [anon_sym_SLASH_EQ] = ACTIONS(7558), + [anon_sym_PERCENT_EQ] = ACTIONS(7558), + [anon_sym_PLUS_EQ] = ACTIONS(7558), + [anon_sym_DASH_EQ] = ACTIONS(7558), + [anon_sym_LT_LT_EQ] = ACTIONS(7558), + [anon_sym_GT_GT_EQ] = ACTIONS(7558), + [anon_sym_AMP_EQ] = ACTIONS(7558), + [anon_sym_CARET_EQ] = ACTIONS(7558), + [anon_sym_PIPE_EQ] = ACTIONS(7558), + [anon_sym_and_eq] = ACTIONS(7558), + [anon_sym_or_eq] = ACTIONS(7558), + [anon_sym_xor_eq] = ACTIONS(7558), + [anon_sym_LT_EQ_GT] = ACTIONS(7558), + [anon_sym_or] = ACTIONS(7556), + [anon_sym_and] = ACTIONS(7556), + [anon_sym_bitor] = ACTIONS(7558), + [anon_sym_xor] = ACTIONS(7556), + [anon_sym_bitand] = ACTIONS(7558), + [anon_sym_not_eq] = ACTIONS(7558), + [anon_sym_DASH_DASH] = ACTIONS(7558), + [anon_sym_PLUS_PLUS] = ACTIONS(7558), + [anon_sym_DOT] = ACTIONS(7556), + [anon_sym_DOT_STAR] = ACTIONS(7558), + [anon_sym_DASH_GT] = ACTIONS(7558), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7558), + [anon_sym_override] = ACTIONS(7558), + [anon_sym_requires] = ACTIONS(7558), }, [STATE(3097)] = { - [sym_identifier] = ACTIONS(7759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), - [anon_sym_COMMA] = ACTIONS(7761), - [anon_sym_RPAREN] = ACTIONS(7761), - [anon_sym_LPAREN2] = ACTIONS(7761), - [anon_sym_DASH] = ACTIONS(7759), - [anon_sym_PLUS] = ACTIONS(7759), - [anon_sym_STAR] = ACTIONS(7761), - [anon_sym_SLASH] = ACTIONS(7759), - [anon_sym_PERCENT] = ACTIONS(7761), - [anon_sym_PIPE_PIPE] = ACTIONS(7761), - [anon_sym_AMP_AMP] = ACTIONS(7761), - [anon_sym_PIPE] = ACTIONS(7759), - [anon_sym_CARET] = ACTIONS(7761), - [anon_sym_AMP] = ACTIONS(7759), - [anon_sym_EQ_EQ] = ACTIONS(7761), - [anon_sym_BANG_EQ] = ACTIONS(7761), - [anon_sym_GT] = ACTIONS(7759), - [anon_sym_GT_EQ] = ACTIONS(7761), - [anon_sym_LT_EQ] = ACTIONS(7759), - [anon_sym_LT] = ACTIONS(7759), - [anon_sym_LT_LT] = ACTIONS(7761), - [anon_sym_GT_GT] = ACTIONS(7761), - [anon_sym_SEMI] = ACTIONS(7761), - [anon_sym___extension__] = ACTIONS(7759), - [anon_sym___attribute__] = ACTIONS(7759), - [anon_sym___attribute] = ACTIONS(7759), - [anon_sym_COLON] = ACTIONS(7759), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7761), - [anon_sym___based] = ACTIONS(7759), - [anon_sym_LBRACE] = ACTIONS(7761), - [anon_sym_RBRACE] = ACTIONS(7761), - [anon_sym_signed] = ACTIONS(7759), - [anon_sym_unsigned] = ACTIONS(7759), - [anon_sym_long] = ACTIONS(7759), - [anon_sym_short] = ACTIONS(7759), - [anon_sym_LBRACK] = ACTIONS(7761), - [anon_sym_const] = ACTIONS(7759), - [anon_sym_constexpr] = ACTIONS(7759), - [anon_sym_volatile] = ACTIONS(7759), - [anon_sym_restrict] = ACTIONS(7759), - [anon_sym___restrict__] = ACTIONS(7759), - [anon_sym__Atomic] = ACTIONS(7759), - [anon_sym__Noreturn] = ACTIONS(7759), - [anon_sym_noreturn] = ACTIONS(7759), - [anon_sym__Nonnull] = ACTIONS(7759), - [anon_sym_mutable] = ACTIONS(7759), - [anon_sym_constinit] = ACTIONS(7759), - [anon_sym_consteval] = ACTIONS(7759), - [anon_sym_alignas] = ACTIONS(7759), - [anon_sym__Alignas] = ACTIONS(7759), - [sym_primitive_type] = ACTIONS(7759), - [anon_sym_QMARK] = ACTIONS(7761), - [anon_sym_LT_EQ_GT] = ACTIONS(7761), - [anon_sym_or] = ACTIONS(7759), - [anon_sym_and] = ACTIONS(7759), - [anon_sym_bitor] = ACTIONS(7759), - [anon_sym_xor] = ACTIONS(7759), - [anon_sym_bitand] = ACTIONS(7759), - [anon_sym_not_eq] = ACTIONS(7759), - [anon_sym_DASH_DASH] = ACTIONS(7761), - [anon_sym_PLUS_PLUS] = ACTIONS(7761), - [anon_sym_DOT] = ACTIONS(7759), - [anon_sym_DOT_STAR] = ACTIONS(7761), - [anon_sym_DASH_GT] = ACTIONS(7761), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7759), - [anon_sym_override] = ACTIONS(7759), - [anon_sym_requires] = ACTIONS(7759), - [anon_sym_COLON_RBRACK] = ACTIONS(7761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), }, [STATE(3098)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), - [anon_sym_COMMA] = ACTIONS(7773), - [anon_sym_LPAREN2] = ACTIONS(7773), - [anon_sym_DASH] = ACTIONS(7771), - [anon_sym_PLUS] = ACTIONS(7771), - [anon_sym_STAR] = ACTIONS(7771), - [anon_sym_SLASH] = ACTIONS(7771), - [anon_sym_PERCENT] = ACTIONS(7771), - [anon_sym_PIPE_PIPE] = ACTIONS(7773), - [anon_sym_AMP_AMP] = ACTIONS(7773), - [anon_sym_PIPE] = ACTIONS(7771), - [anon_sym_CARET] = ACTIONS(7771), - [anon_sym_AMP] = ACTIONS(7771), - [anon_sym_EQ_EQ] = ACTIONS(7773), - [anon_sym_BANG_EQ] = ACTIONS(7773), - [anon_sym_GT] = ACTIONS(7771), - [anon_sym_GT_EQ] = ACTIONS(7771), - [anon_sym_LT_EQ] = ACTIONS(7771), - [anon_sym_LT] = ACTIONS(7771), - [anon_sym_LT_LT] = ACTIONS(7771), - [anon_sym_GT_GT] = ACTIONS(7771), - [anon_sym___extension__] = ACTIONS(7773), - [anon_sym_LBRACE] = ACTIONS(7773), - [anon_sym_LBRACK] = ACTIONS(7773), - [anon_sym_EQ] = ACTIONS(7771), - [anon_sym_const] = ACTIONS(7771), - [anon_sym_constexpr] = ACTIONS(7773), - [anon_sym_volatile] = ACTIONS(7773), - [anon_sym_restrict] = ACTIONS(7773), - [anon_sym___restrict__] = ACTIONS(7773), - [anon_sym__Atomic] = ACTIONS(7773), - [anon_sym__Noreturn] = ACTIONS(7773), - [anon_sym_noreturn] = ACTIONS(7773), - [anon_sym__Nonnull] = ACTIONS(7773), - [anon_sym_mutable] = ACTIONS(7773), - [anon_sym_constinit] = ACTIONS(7773), - [anon_sym_consteval] = ACTIONS(7773), - [anon_sym_alignas] = ACTIONS(7773), - [anon_sym__Alignas] = ACTIONS(7773), - [anon_sym_QMARK] = ACTIONS(7773), - [anon_sym_STAR_EQ] = ACTIONS(7773), - [anon_sym_SLASH_EQ] = ACTIONS(7773), - [anon_sym_PERCENT_EQ] = ACTIONS(7773), - [anon_sym_PLUS_EQ] = ACTIONS(7773), - [anon_sym_DASH_EQ] = ACTIONS(7773), - [anon_sym_LT_LT_EQ] = ACTIONS(7773), - [anon_sym_GT_GT_EQ] = ACTIONS(7771), - [anon_sym_AMP_EQ] = ACTIONS(7773), - [anon_sym_CARET_EQ] = ACTIONS(7773), - [anon_sym_PIPE_EQ] = ACTIONS(7773), - [anon_sym_and_eq] = ACTIONS(7773), - [anon_sym_or_eq] = ACTIONS(7773), - [anon_sym_xor_eq] = ACTIONS(7773), - [anon_sym_LT_EQ_GT] = ACTIONS(7773), - [anon_sym_or] = ACTIONS(7771), - [anon_sym_and] = ACTIONS(7771), - [anon_sym_bitor] = ACTIONS(7773), - [anon_sym_xor] = ACTIONS(7771), - [anon_sym_bitand] = ACTIONS(7773), - [anon_sym_not_eq] = ACTIONS(7773), - [anon_sym_DASH_DASH] = ACTIONS(7773), - [anon_sym_PLUS_PLUS] = ACTIONS(7773), - [anon_sym_DOT] = ACTIONS(7771), - [anon_sym_DOT_STAR] = ACTIONS(7773), - [anon_sym_DASH_GT] = ACTIONS(7773), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7773), - [anon_sym_override] = ACTIONS(7773), - [anon_sym_GT2] = ACTIONS(7773), - [anon_sym_requires] = ACTIONS(7773), + [sym_attribute_declaration] = STATE(3152), + [aux_sym_attributed_declarator_repeat1] = STATE(3152), + [sym_identifier] = ACTIONS(8870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8872), + [anon_sym_COMMA] = ACTIONS(8872), + [anon_sym_RPAREN] = ACTIONS(8872), + [aux_sym_preproc_if_token2] = ACTIONS(8872), + [aux_sym_preproc_else_token1] = ACTIONS(8872), + [aux_sym_preproc_elif_token1] = ACTIONS(8870), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8872), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8872), + [anon_sym_LPAREN2] = ACTIONS(8872), + [anon_sym_DASH] = ACTIONS(8870), + [anon_sym_PLUS] = ACTIONS(8870), + [anon_sym_STAR] = ACTIONS(8870), + [anon_sym_SLASH] = ACTIONS(8870), + [anon_sym_PERCENT] = ACTIONS(8870), + [anon_sym_PIPE_PIPE] = ACTIONS(8872), + [anon_sym_AMP_AMP] = ACTIONS(8872), + [anon_sym_PIPE] = ACTIONS(8870), + [anon_sym_CARET] = ACTIONS(8870), + [anon_sym_AMP] = ACTIONS(8870), + [anon_sym_EQ_EQ] = ACTIONS(8872), + [anon_sym_BANG_EQ] = ACTIONS(8872), + [anon_sym_GT] = ACTIONS(8870), + [anon_sym_GT_EQ] = ACTIONS(8872), + [anon_sym_LT_EQ] = ACTIONS(8870), + [anon_sym_LT] = ACTIONS(8870), + [anon_sym_LT_LT] = ACTIONS(8870), + [anon_sym_GT_GT] = ACTIONS(8870), + [anon_sym_SEMI] = ACTIONS(8872), + [anon_sym___attribute__] = ACTIONS(8870), + [anon_sym___attribute] = ACTIONS(8870), + [anon_sym_COLON] = ACTIONS(8870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8872), + [anon_sym_RBRACE] = ACTIONS(8872), + [anon_sym_LBRACK] = ACTIONS(8870), + [anon_sym_EQ] = ACTIONS(8870), + [anon_sym_QMARK] = ACTIONS(8872), + [anon_sym_STAR_EQ] = ACTIONS(8872), + [anon_sym_SLASH_EQ] = ACTIONS(8872), + [anon_sym_PERCENT_EQ] = ACTIONS(8872), + [anon_sym_PLUS_EQ] = ACTIONS(8872), + [anon_sym_DASH_EQ] = ACTIONS(8872), + [anon_sym_LT_LT_EQ] = ACTIONS(8872), + [anon_sym_GT_GT_EQ] = ACTIONS(8872), + [anon_sym_AMP_EQ] = ACTIONS(8872), + [anon_sym_CARET_EQ] = ACTIONS(8872), + [anon_sym_PIPE_EQ] = ACTIONS(8872), + [anon_sym_and_eq] = ACTIONS(8870), + [anon_sym_or_eq] = ACTIONS(8870), + [anon_sym_xor_eq] = ACTIONS(8870), + [anon_sym_LT_EQ_GT] = ACTIONS(8872), + [anon_sym_or] = ACTIONS(8870), + [anon_sym_and] = ACTIONS(8870), + [anon_sym_bitor] = ACTIONS(8870), + [anon_sym_xor] = ACTIONS(8870), + [anon_sym_bitand] = ACTIONS(8870), + [anon_sym_not_eq] = ACTIONS(8870), + [anon_sym_DASH_DASH] = ACTIONS(8872), + [anon_sym_PLUS_PLUS] = ACTIONS(8872), + [anon_sym_DOT] = ACTIONS(8870), + [anon_sym_DOT_STAR] = ACTIONS(8872), + [anon_sym_DASH_GT] = ACTIONS(8872), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8870), + [anon_sym_override] = ACTIONS(8870), + [anon_sym_requires] = ACTIONS(8870), + [anon_sym_COLON_RBRACK] = ACTIONS(8872), }, [STATE(3099)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), - [anon_sym_COMMA] = ACTIONS(7733), - [anon_sym_LPAREN2] = ACTIONS(7733), - [anon_sym_DASH] = ACTIONS(7731), - [anon_sym_PLUS] = ACTIONS(7731), - [anon_sym_STAR] = ACTIONS(7731), - [anon_sym_SLASH] = ACTIONS(7731), - [anon_sym_PERCENT] = ACTIONS(7731), - [anon_sym_PIPE_PIPE] = ACTIONS(7733), - [anon_sym_AMP_AMP] = ACTIONS(7733), - [anon_sym_PIPE] = ACTIONS(7731), - [anon_sym_CARET] = ACTIONS(7731), - [anon_sym_AMP] = ACTIONS(7731), - [anon_sym_EQ_EQ] = ACTIONS(7733), - [anon_sym_BANG_EQ] = ACTIONS(7733), - [anon_sym_GT] = ACTIONS(7731), - [anon_sym_GT_EQ] = ACTIONS(7731), - [anon_sym_LT_EQ] = ACTIONS(7731), - [anon_sym_LT] = ACTIONS(7731), - [anon_sym_LT_LT] = ACTIONS(7731), - [anon_sym_GT_GT] = ACTIONS(7731), - [anon_sym___extension__] = ACTIONS(7733), - [anon_sym_LBRACE] = ACTIONS(7733), - [anon_sym_LBRACK] = ACTIONS(7733), - [anon_sym_EQ] = ACTIONS(7731), - [anon_sym_const] = ACTIONS(7731), - [anon_sym_constexpr] = ACTIONS(7733), - [anon_sym_volatile] = ACTIONS(7733), - [anon_sym_restrict] = ACTIONS(7733), - [anon_sym___restrict__] = ACTIONS(7733), - [anon_sym__Atomic] = ACTIONS(7733), - [anon_sym__Noreturn] = ACTIONS(7733), - [anon_sym_noreturn] = ACTIONS(7733), - [anon_sym__Nonnull] = ACTIONS(7733), - [anon_sym_mutable] = ACTIONS(7733), - [anon_sym_constinit] = ACTIONS(7733), - [anon_sym_consteval] = ACTIONS(7733), - [anon_sym_alignas] = ACTIONS(7733), - [anon_sym__Alignas] = ACTIONS(7733), - [anon_sym_QMARK] = ACTIONS(7733), - [anon_sym_STAR_EQ] = ACTIONS(7733), - [anon_sym_SLASH_EQ] = ACTIONS(7733), - [anon_sym_PERCENT_EQ] = ACTIONS(7733), - [anon_sym_PLUS_EQ] = ACTIONS(7733), - [anon_sym_DASH_EQ] = ACTIONS(7733), - [anon_sym_LT_LT_EQ] = ACTIONS(7733), - [anon_sym_GT_GT_EQ] = ACTIONS(7731), - [anon_sym_AMP_EQ] = ACTIONS(7733), - [anon_sym_CARET_EQ] = ACTIONS(7733), - [anon_sym_PIPE_EQ] = ACTIONS(7733), - [anon_sym_and_eq] = ACTIONS(7733), - [anon_sym_or_eq] = ACTIONS(7733), - [anon_sym_xor_eq] = ACTIONS(7733), - [anon_sym_LT_EQ_GT] = ACTIONS(7733), - [anon_sym_or] = ACTIONS(7731), - [anon_sym_and] = ACTIONS(7731), - [anon_sym_bitor] = ACTIONS(7733), - [anon_sym_xor] = ACTIONS(7731), - [anon_sym_bitand] = ACTIONS(7733), - [anon_sym_not_eq] = ACTIONS(7733), - [anon_sym_DASH_DASH] = ACTIONS(7733), - [anon_sym_PLUS_PLUS] = ACTIONS(7733), - [anon_sym_DOT] = ACTIONS(7731), - [anon_sym_DOT_STAR] = ACTIONS(7733), - [anon_sym_DASH_GT] = ACTIONS(7733), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7733), - [anon_sym_override] = ACTIONS(7733), - [anon_sym_GT2] = ACTIONS(7733), - [anon_sym_requires] = ACTIONS(7733), - }, - [STATE(3100)] = { - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym___based] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(7223), - [anon_sym_unsigned] = ACTIONS(7223), - [anon_sym_long] = ACTIONS(7223), - [anon_sym_short] = ACTIONS(7223), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [sym_primitive_type] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), - }, - [STATE(3101)] = { - [sym_identifier] = ACTIONS(9037), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9039), - [anon_sym_COMMA] = ACTIONS(9039), - [anon_sym_RPAREN] = ACTIONS(9039), - [aux_sym_preproc_if_token2] = ACTIONS(9039), - [aux_sym_preproc_else_token1] = ACTIONS(9039), - [aux_sym_preproc_elif_token1] = ACTIONS(9037), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9039), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9039), - [anon_sym_LPAREN2] = ACTIONS(9039), - [anon_sym_DASH] = ACTIONS(9037), - [anon_sym_PLUS] = ACTIONS(9037), - [anon_sym_STAR] = ACTIONS(9037), - [anon_sym_SLASH] = ACTIONS(9037), - [anon_sym_PERCENT] = ACTIONS(9037), - [anon_sym_PIPE_PIPE] = ACTIONS(9039), - [anon_sym_AMP_AMP] = ACTIONS(9039), - [anon_sym_PIPE] = ACTIONS(9037), - [anon_sym_CARET] = ACTIONS(9037), - [anon_sym_AMP] = ACTIONS(9037), - [anon_sym_EQ_EQ] = ACTIONS(9039), - [anon_sym_BANG_EQ] = ACTIONS(9039), - [anon_sym_GT] = ACTIONS(9037), - [anon_sym_GT_EQ] = ACTIONS(9039), - [anon_sym_LT_EQ] = ACTIONS(9037), - [anon_sym_LT] = ACTIONS(9037), - [anon_sym_LT_LT] = ACTIONS(9037), - [anon_sym_GT_GT] = ACTIONS(9037), - [anon_sym_SEMI] = ACTIONS(9039), - [anon_sym___attribute__] = ACTIONS(9037), - [anon_sym___attribute] = ACTIONS(9037), - [anon_sym_COLON] = ACTIONS(9037), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9039), - [anon_sym_LBRACE] = ACTIONS(9039), - [anon_sym_RBRACE] = ACTIONS(9039), - [anon_sym_LBRACK] = ACTIONS(9037), - [anon_sym_RBRACK] = ACTIONS(9039), - [anon_sym_EQ] = ACTIONS(9037), - [anon_sym_QMARK] = ACTIONS(9039), - [anon_sym_STAR_EQ] = ACTIONS(9039), - [anon_sym_SLASH_EQ] = ACTIONS(9039), - [anon_sym_PERCENT_EQ] = ACTIONS(9039), - [anon_sym_PLUS_EQ] = ACTIONS(9039), - [anon_sym_DASH_EQ] = ACTIONS(9039), - [anon_sym_LT_LT_EQ] = ACTIONS(9039), - [anon_sym_GT_GT_EQ] = ACTIONS(9039), - [anon_sym_AMP_EQ] = ACTIONS(9039), - [anon_sym_CARET_EQ] = ACTIONS(9039), - [anon_sym_PIPE_EQ] = ACTIONS(9039), - [anon_sym_and_eq] = ACTIONS(9037), - [anon_sym_or_eq] = ACTIONS(9037), - [anon_sym_xor_eq] = ACTIONS(9037), - [anon_sym_LT_EQ_GT] = ACTIONS(9039), - [anon_sym_or] = ACTIONS(9037), - [anon_sym_and] = ACTIONS(9037), - [anon_sym_bitor] = ACTIONS(9037), - [anon_sym_xor] = ACTIONS(9037), - [anon_sym_bitand] = ACTIONS(9037), - [anon_sym_not_eq] = ACTIONS(9037), - [anon_sym_DASH_DASH] = ACTIONS(9039), - [anon_sym_PLUS_PLUS] = ACTIONS(9039), - [anon_sym_asm] = ACTIONS(9037), - [anon_sym___asm__] = ACTIONS(9037), - [anon_sym___asm] = ACTIONS(9037), - [anon_sym_DOT] = ACTIONS(9037), - [anon_sym_DOT_STAR] = ACTIONS(9039), - [anon_sym_DASH_GT] = ACTIONS(9039), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9037), - [anon_sym_COLON_RBRACK] = ACTIONS(9039), - }, - [STATE(3102)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), - [anon_sym_COMMA] = ACTIONS(7629), - [anon_sym_LPAREN2] = ACTIONS(7629), - [anon_sym_DASH] = ACTIONS(7627), - [anon_sym_PLUS] = ACTIONS(7627), - [anon_sym_STAR] = ACTIONS(7627), - [anon_sym_SLASH] = ACTIONS(7627), - [anon_sym_PERCENT] = ACTIONS(7627), - [anon_sym_PIPE_PIPE] = ACTIONS(7629), - [anon_sym_AMP_AMP] = ACTIONS(7629), - [anon_sym_PIPE] = ACTIONS(7627), - [anon_sym_CARET] = ACTIONS(7627), - [anon_sym_AMP] = ACTIONS(7627), - [anon_sym_EQ_EQ] = ACTIONS(7629), - [anon_sym_BANG_EQ] = ACTIONS(7629), - [anon_sym_GT] = ACTIONS(7627), - [anon_sym_GT_EQ] = ACTIONS(7629), - [anon_sym_LT_EQ] = ACTIONS(7627), - [anon_sym_LT] = ACTIONS(7627), - [anon_sym_LT_LT] = ACTIONS(7627), - [anon_sym_GT_GT] = ACTIONS(7627), - [anon_sym___extension__] = ACTIONS(7629), - [anon_sym_LBRACE] = ACTIONS(7629), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_RBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7627), - [anon_sym_const] = ACTIONS(7627), - [anon_sym_constexpr] = ACTIONS(7629), - [anon_sym_volatile] = ACTIONS(7629), - [anon_sym_restrict] = ACTIONS(7629), - [anon_sym___restrict__] = ACTIONS(7629), - [anon_sym__Atomic] = ACTIONS(7629), - [anon_sym__Noreturn] = ACTIONS(7629), - [anon_sym_noreturn] = ACTIONS(7629), - [anon_sym__Nonnull] = ACTIONS(7629), - [anon_sym_mutable] = ACTIONS(7629), - [anon_sym_constinit] = ACTIONS(7629), - [anon_sym_consteval] = ACTIONS(7629), - [anon_sym_alignas] = ACTIONS(7629), - [anon_sym__Alignas] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7629), - [anon_sym_STAR_EQ] = ACTIONS(7629), - [anon_sym_SLASH_EQ] = ACTIONS(7629), - [anon_sym_PERCENT_EQ] = ACTIONS(7629), - [anon_sym_PLUS_EQ] = ACTIONS(7629), - [anon_sym_DASH_EQ] = ACTIONS(7629), - [anon_sym_LT_LT_EQ] = ACTIONS(7629), - [anon_sym_GT_GT_EQ] = ACTIONS(7629), - [anon_sym_AMP_EQ] = ACTIONS(7629), - [anon_sym_CARET_EQ] = ACTIONS(7629), - [anon_sym_PIPE_EQ] = ACTIONS(7629), - [anon_sym_and_eq] = ACTIONS(7629), - [anon_sym_or_eq] = ACTIONS(7629), - [anon_sym_xor_eq] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7629), - [anon_sym_or] = ACTIONS(7627), - [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7629), - [anon_sym_PLUS_PLUS] = ACTIONS(7629), - [anon_sym_DOT] = ACTIONS(7627), - [anon_sym_DOT_STAR] = ACTIONS(7629), - [anon_sym_DASH_GT] = ACTIONS(7629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7629), - [anon_sym_override] = ACTIONS(7629), - [anon_sym_requires] = ACTIONS(7629), - }, - [STATE(3103)] = { - [sym_identifier] = ACTIONS(7663), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), - [anon_sym_COMMA] = ACTIONS(7665), - [anon_sym_RPAREN] = ACTIONS(7665), - [anon_sym_LPAREN2] = ACTIONS(7665), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_STAR] = ACTIONS(7665), - [anon_sym_SLASH] = ACTIONS(7663), - [anon_sym_PERCENT] = ACTIONS(7665), - [anon_sym_PIPE_PIPE] = ACTIONS(7665), - [anon_sym_AMP_AMP] = ACTIONS(7665), - [anon_sym_PIPE] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7665), - [anon_sym_AMP] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7665), - [anon_sym_BANG_EQ] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7663), - [anon_sym_GT_EQ] = ACTIONS(7665), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_LT] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7665), - [anon_sym_GT_GT] = ACTIONS(7665), - [anon_sym_SEMI] = ACTIONS(7665), - [anon_sym___extension__] = ACTIONS(7663), - [anon_sym___attribute__] = ACTIONS(7663), - [anon_sym___attribute] = ACTIONS(7663), - [anon_sym_COLON] = ACTIONS(7663), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7665), - [anon_sym___based] = ACTIONS(7663), - [anon_sym_LBRACE] = ACTIONS(7665), - [anon_sym_RBRACE] = ACTIONS(7665), - [anon_sym_signed] = ACTIONS(7663), - [anon_sym_unsigned] = ACTIONS(7663), - [anon_sym_long] = ACTIONS(7663), - [anon_sym_short] = ACTIONS(7663), - [anon_sym_LBRACK] = ACTIONS(7665), - [anon_sym_const] = ACTIONS(7663), - [anon_sym_constexpr] = ACTIONS(7663), - [anon_sym_volatile] = ACTIONS(7663), - [anon_sym_restrict] = ACTIONS(7663), - [anon_sym___restrict__] = ACTIONS(7663), - [anon_sym__Atomic] = ACTIONS(7663), - [anon_sym__Noreturn] = ACTIONS(7663), - [anon_sym_noreturn] = ACTIONS(7663), - [anon_sym__Nonnull] = ACTIONS(7663), - [anon_sym_mutable] = ACTIONS(7663), - [anon_sym_constinit] = ACTIONS(7663), - [anon_sym_consteval] = ACTIONS(7663), - [anon_sym_alignas] = ACTIONS(7663), - [anon_sym__Alignas] = ACTIONS(7663), - [sym_primitive_type] = ACTIONS(7663), - [anon_sym_QMARK] = ACTIONS(7665), - [anon_sym_LT_EQ_GT] = ACTIONS(7665), - [anon_sym_or] = ACTIONS(7663), - [anon_sym_and] = ACTIONS(7663), - [anon_sym_bitor] = ACTIONS(7663), - [anon_sym_xor] = ACTIONS(7663), - [anon_sym_bitand] = ACTIONS(7663), - [anon_sym_not_eq] = ACTIONS(7663), - [anon_sym_DASH_DASH] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7665), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym_DOT_STAR] = ACTIONS(7665), - [anon_sym_DASH_GT] = ACTIONS(7665), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7663), - [anon_sym_override] = ACTIONS(7663), - [anon_sym_requires] = ACTIONS(7663), - [anon_sym_COLON_RBRACK] = ACTIONS(7665), - }, - [STATE(3104)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), - [anon_sym_COMMA] = ACTIONS(7645), - [anon_sym_LPAREN2] = ACTIONS(7645), - [anon_sym_DASH] = ACTIONS(7643), - [anon_sym_PLUS] = ACTIONS(7643), - [anon_sym_STAR] = ACTIONS(7643), - [anon_sym_SLASH] = ACTIONS(7643), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_PIPE_PIPE] = ACTIONS(7645), - [anon_sym_AMP_AMP] = ACTIONS(7645), - [anon_sym_PIPE] = ACTIONS(7643), - [anon_sym_CARET] = ACTIONS(7643), - [anon_sym_AMP] = ACTIONS(7643), - [anon_sym_EQ_EQ] = ACTIONS(7645), - [anon_sym_BANG_EQ] = ACTIONS(7645), - [anon_sym_GT] = ACTIONS(7643), - [anon_sym_GT_EQ] = ACTIONS(7645), - [anon_sym_LT_EQ] = ACTIONS(7643), - [anon_sym_LT] = ACTIONS(7643), - [anon_sym_LT_LT] = ACTIONS(7643), - [anon_sym_GT_GT] = ACTIONS(7643), - [anon_sym___extension__] = ACTIONS(7645), - [anon_sym_LBRACE] = ACTIONS(7645), - [anon_sym_LBRACK] = ACTIONS(7645), - [anon_sym_RBRACK] = ACTIONS(7645), - [anon_sym_EQ] = ACTIONS(7643), - [anon_sym_const] = ACTIONS(7643), - [anon_sym_constexpr] = ACTIONS(7645), - [anon_sym_volatile] = ACTIONS(7645), - [anon_sym_restrict] = ACTIONS(7645), - [anon_sym___restrict__] = ACTIONS(7645), - [anon_sym__Atomic] = ACTIONS(7645), - [anon_sym__Noreturn] = ACTIONS(7645), - [anon_sym_noreturn] = ACTIONS(7645), - [anon_sym__Nonnull] = ACTIONS(7645), - [anon_sym_mutable] = ACTIONS(7645), - [anon_sym_constinit] = ACTIONS(7645), - [anon_sym_consteval] = ACTIONS(7645), - [anon_sym_alignas] = ACTIONS(7645), - [anon_sym__Alignas] = ACTIONS(7645), - [anon_sym_QMARK] = ACTIONS(7645), - [anon_sym_STAR_EQ] = ACTIONS(7645), - [anon_sym_SLASH_EQ] = ACTIONS(7645), - [anon_sym_PERCENT_EQ] = ACTIONS(7645), - [anon_sym_PLUS_EQ] = ACTIONS(7645), - [anon_sym_DASH_EQ] = ACTIONS(7645), - [anon_sym_LT_LT_EQ] = ACTIONS(7645), - [anon_sym_GT_GT_EQ] = ACTIONS(7645), - [anon_sym_AMP_EQ] = ACTIONS(7645), - [anon_sym_CARET_EQ] = ACTIONS(7645), - [anon_sym_PIPE_EQ] = ACTIONS(7645), - [anon_sym_and_eq] = ACTIONS(7645), - [anon_sym_or_eq] = ACTIONS(7645), - [anon_sym_xor_eq] = ACTIONS(7645), - [anon_sym_LT_EQ_GT] = ACTIONS(7645), - [anon_sym_or] = ACTIONS(7643), - [anon_sym_and] = ACTIONS(7643), - [anon_sym_bitor] = ACTIONS(7645), - [anon_sym_xor] = ACTIONS(7643), - [anon_sym_bitand] = ACTIONS(7645), - [anon_sym_not_eq] = ACTIONS(7645), - [anon_sym_DASH_DASH] = ACTIONS(7645), - [anon_sym_PLUS_PLUS] = ACTIONS(7645), - [anon_sym_DOT] = ACTIONS(7643), - [anon_sym_DOT_STAR] = ACTIONS(7645), - [anon_sym_DASH_GT] = ACTIONS(7645), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7645), - [anon_sym_override] = ACTIONS(7645), - [anon_sym_requires] = ACTIONS(7645), - }, - [STATE(3105)] = { - [sym_identifier] = ACTIONS(7643), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), - [anon_sym_COMMA] = ACTIONS(7645), - [anon_sym_RPAREN] = ACTIONS(7645), - [anon_sym_LPAREN2] = ACTIONS(7645), - [anon_sym_DASH] = ACTIONS(7643), - [anon_sym_PLUS] = ACTIONS(7643), - [anon_sym_STAR] = ACTIONS(7645), - [anon_sym_SLASH] = ACTIONS(7643), - [anon_sym_PERCENT] = ACTIONS(7645), - [anon_sym_PIPE_PIPE] = ACTIONS(7645), - [anon_sym_AMP_AMP] = ACTIONS(7645), - [anon_sym_PIPE] = ACTIONS(7643), - [anon_sym_CARET] = ACTIONS(7645), - [anon_sym_AMP] = ACTIONS(7643), - [anon_sym_EQ_EQ] = ACTIONS(7645), - [anon_sym_BANG_EQ] = ACTIONS(7645), - [anon_sym_GT] = ACTIONS(7643), - [anon_sym_GT_EQ] = ACTIONS(7645), - [anon_sym_LT_EQ] = ACTIONS(7643), - [anon_sym_LT] = ACTIONS(7643), - [anon_sym_LT_LT] = ACTIONS(7645), - [anon_sym_GT_GT] = ACTIONS(7645), - [anon_sym_SEMI] = ACTIONS(7645), - [anon_sym___extension__] = ACTIONS(7643), - [anon_sym___attribute__] = ACTIONS(7643), - [anon_sym___attribute] = ACTIONS(7643), - [anon_sym_COLON] = ACTIONS(7643), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7645), - [anon_sym___based] = ACTIONS(7643), - [anon_sym_LBRACE] = ACTIONS(7645), - [anon_sym_RBRACE] = ACTIONS(7645), - [anon_sym_signed] = ACTIONS(7643), - [anon_sym_unsigned] = ACTIONS(7643), - [anon_sym_long] = ACTIONS(7643), - [anon_sym_short] = ACTIONS(7643), - [anon_sym_LBRACK] = ACTIONS(7645), - [anon_sym_const] = ACTIONS(7643), - [anon_sym_constexpr] = ACTIONS(7643), - [anon_sym_volatile] = ACTIONS(7643), - [anon_sym_restrict] = ACTIONS(7643), - [anon_sym___restrict__] = ACTIONS(7643), - [anon_sym__Atomic] = ACTIONS(7643), - [anon_sym__Noreturn] = ACTIONS(7643), - [anon_sym_noreturn] = ACTIONS(7643), - [anon_sym__Nonnull] = ACTIONS(7643), - [anon_sym_mutable] = ACTIONS(7643), - [anon_sym_constinit] = ACTIONS(7643), - [anon_sym_consteval] = ACTIONS(7643), - [anon_sym_alignas] = ACTIONS(7643), - [anon_sym__Alignas] = ACTIONS(7643), - [sym_primitive_type] = ACTIONS(7643), - [anon_sym_QMARK] = ACTIONS(7645), - [anon_sym_LT_EQ_GT] = ACTIONS(7645), - [anon_sym_or] = ACTIONS(7643), - [anon_sym_and] = ACTIONS(7643), - [anon_sym_bitor] = ACTIONS(7643), - [anon_sym_xor] = ACTIONS(7643), - [anon_sym_bitand] = ACTIONS(7643), - [anon_sym_not_eq] = ACTIONS(7643), - [anon_sym_DASH_DASH] = ACTIONS(7645), - [anon_sym_PLUS_PLUS] = ACTIONS(7645), - [anon_sym_DOT] = ACTIONS(7643), - [anon_sym_DOT_STAR] = ACTIONS(7645), - [anon_sym_DASH_GT] = ACTIONS(7645), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7643), - [anon_sym_override] = ACTIONS(7643), - [anon_sym_requires] = ACTIONS(7643), - [anon_sym_COLON_RBRACK] = ACTIONS(7645), - }, - [STATE(3106)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7595), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7595), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7595), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7595), - [anon_sym_GT_GT] = ACTIONS(7595), - [anon_sym___extension__] = ACTIONS(7597), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_RBRACK] = ACTIONS(7597), - [anon_sym_EQ] = ACTIONS(7595), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7597), - [anon_sym_volatile] = ACTIONS(7597), - [anon_sym_restrict] = ACTIONS(7597), - [anon_sym___restrict__] = ACTIONS(7597), - [anon_sym__Atomic] = ACTIONS(7597), - [anon_sym__Noreturn] = ACTIONS(7597), - [anon_sym_noreturn] = ACTIONS(7597), - [anon_sym__Nonnull] = ACTIONS(7597), - [anon_sym_mutable] = ACTIONS(7597), - [anon_sym_constinit] = ACTIONS(7597), - [anon_sym_consteval] = ACTIONS(7597), - [anon_sym_alignas] = ACTIONS(7597), - [anon_sym__Alignas] = ACTIONS(7597), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_STAR_EQ] = ACTIONS(7597), - [anon_sym_SLASH_EQ] = ACTIONS(7597), - [anon_sym_PERCENT_EQ] = ACTIONS(7597), - [anon_sym_PLUS_EQ] = ACTIONS(7597), - [anon_sym_DASH_EQ] = ACTIONS(7597), - [anon_sym_LT_LT_EQ] = ACTIONS(7597), - [anon_sym_GT_GT_EQ] = ACTIONS(7597), - [anon_sym_AMP_EQ] = ACTIONS(7597), - [anon_sym_CARET_EQ] = ACTIONS(7597), - [anon_sym_PIPE_EQ] = ACTIONS(7597), - [anon_sym_and_eq] = ACTIONS(7597), - [anon_sym_or_eq] = ACTIONS(7597), - [anon_sym_xor_eq] = ACTIONS(7597), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7595), - [anon_sym_and] = ACTIONS(7595), - [anon_sym_bitor] = ACTIONS(7597), - [anon_sym_xor] = ACTIONS(7595), - [anon_sym_bitand] = ACTIONS(7597), - [anon_sym_not_eq] = ACTIONS(7597), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7597), - [anon_sym_override] = ACTIONS(7597), - [anon_sym_requires] = ACTIONS(7597), - }, - [STATE(3107)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), - [anon_sym_COMMA] = ACTIONS(7609), - [anon_sym_LPAREN2] = ACTIONS(7609), - [anon_sym_DASH] = ACTIONS(7607), - [anon_sym_PLUS] = ACTIONS(7607), - [anon_sym_STAR] = ACTIONS(7607), - [anon_sym_SLASH] = ACTIONS(7607), - [anon_sym_PERCENT] = ACTIONS(7607), - [anon_sym_PIPE_PIPE] = ACTIONS(7609), - [anon_sym_AMP_AMP] = ACTIONS(7609), - [anon_sym_PIPE] = ACTIONS(7607), - [anon_sym_CARET] = ACTIONS(7607), - [anon_sym_AMP] = ACTIONS(7607), - [anon_sym_EQ_EQ] = ACTIONS(7609), - [anon_sym_BANG_EQ] = ACTIONS(7609), - [anon_sym_GT] = ACTIONS(7607), - [anon_sym_GT_EQ] = ACTIONS(7609), - [anon_sym_LT_EQ] = ACTIONS(7607), - [anon_sym_LT] = ACTIONS(7607), - [anon_sym_LT_LT] = ACTIONS(7607), - [anon_sym_GT_GT] = ACTIONS(7607), - [anon_sym___extension__] = ACTIONS(7609), - [anon_sym_LBRACE] = ACTIONS(7609), - [anon_sym_LBRACK] = ACTIONS(7609), - [anon_sym_RBRACK] = ACTIONS(7609), - [anon_sym_EQ] = ACTIONS(7607), - [anon_sym_const] = ACTIONS(7607), - [anon_sym_constexpr] = ACTIONS(7609), - [anon_sym_volatile] = ACTIONS(7609), - [anon_sym_restrict] = ACTIONS(7609), - [anon_sym___restrict__] = ACTIONS(7609), - [anon_sym__Atomic] = ACTIONS(7609), - [anon_sym__Noreturn] = ACTIONS(7609), - [anon_sym_noreturn] = ACTIONS(7609), - [anon_sym__Nonnull] = ACTIONS(7609), - [anon_sym_mutable] = ACTIONS(7609), - [anon_sym_constinit] = ACTIONS(7609), - [anon_sym_consteval] = ACTIONS(7609), - [anon_sym_alignas] = ACTIONS(7609), - [anon_sym__Alignas] = ACTIONS(7609), - [anon_sym_QMARK] = ACTIONS(7609), - [anon_sym_STAR_EQ] = ACTIONS(7609), - [anon_sym_SLASH_EQ] = ACTIONS(7609), - [anon_sym_PERCENT_EQ] = ACTIONS(7609), - [anon_sym_PLUS_EQ] = ACTIONS(7609), - [anon_sym_DASH_EQ] = ACTIONS(7609), - [anon_sym_LT_LT_EQ] = ACTIONS(7609), - [anon_sym_GT_GT_EQ] = ACTIONS(7609), - [anon_sym_AMP_EQ] = ACTIONS(7609), - [anon_sym_CARET_EQ] = ACTIONS(7609), - [anon_sym_PIPE_EQ] = ACTIONS(7609), - [anon_sym_and_eq] = ACTIONS(7609), - [anon_sym_or_eq] = ACTIONS(7609), - [anon_sym_xor_eq] = ACTIONS(7609), - [anon_sym_LT_EQ_GT] = ACTIONS(7609), - [anon_sym_or] = ACTIONS(7607), - [anon_sym_and] = ACTIONS(7607), - [anon_sym_bitor] = ACTIONS(7609), - [anon_sym_xor] = ACTIONS(7607), - [anon_sym_bitand] = ACTIONS(7609), - [anon_sym_not_eq] = ACTIONS(7609), - [anon_sym_DASH_DASH] = ACTIONS(7609), - [anon_sym_PLUS_PLUS] = ACTIONS(7609), - [anon_sym_DOT] = ACTIONS(7607), - [anon_sym_DOT_STAR] = ACTIONS(7609), - [anon_sym_DASH_GT] = ACTIONS(7609), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7609), - [anon_sym_override] = ACTIONS(7609), - [anon_sym_requires] = ACTIONS(7609), - }, - [STATE(3108)] = { - [sym_identifier] = ACTIONS(7747), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), - [anon_sym_COMMA] = ACTIONS(7749), - [anon_sym_RPAREN] = ACTIONS(7749), - [anon_sym_LPAREN2] = ACTIONS(7749), - [anon_sym_DASH] = ACTIONS(7747), - [anon_sym_PLUS] = ACTIONS(7747), - [anon_sym_STAR] = ACTIONS(7749), - [anon_sym_SLASH] = ACTIONS(7747), - [anon_sym_PERCENT] = ACTIONS(7749), - [anon_sym_PIPE_PIPE] = ACTIONS(7749), - [anon_sym_AMP_AMP] = ACTIONS(7749), - [anon_sym_PIPE] = ACTIONS(7747), - [anon_sym_CARET] = ACTIONS(7749), - [anon_sym_AMP] = ACTIONS(7747), - [anon_sym_EQ_EQ] = ACTIONS(7749), - [anon_sym_BANG_EQ] = ACTIONS(7749), - [anon_sym_GT] = ACTIONS(7747), - [anon_sym_GT_EQ] = ACTIONS(7749), - [anon_sym_LT_EQ] = ACTIONS(7747), - [anon_sym_LT] = ACTIONS(7747), - [anon_sym_LT_LT] = ACTIONS(7749), - [anon_sym_GT_GT] = ACTIONS(7749), - [anon_sym_SEMI] = ACTIONS(7749), - [anon_sym___extension__] = ACTIONS(7747), - [anon_sym___attribute__] = ACTIONS(7747), - [anon_sym___attribute] = ACTIONS(7747), - [anon_sym_COLON] = ACTIONS(7747), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7749), - [anon_sym___based] = ACTIONS(7747), - [anon_sym_LBRACE] = ACTIONS(7749), - [anon_sym_RBRACE] = ACTIONS(7749), - [anon_sym_signed] = ACTIONS(7747), - [anon_sym_unsigned] = ACTIONS(7747), - [anon_sym_long] = ACTIONS(7747), - [anon_sym_short] = ACTIONS(7747), - [anon_sym_LBRACK] = ACTIONS(7749), - [anon_sym_const] = ACTIONS(7747), - [anon_sym_constexpr] = ACTIONS(7747), - [anon_sym_volatile] = ACTIONS(7747), - [anon_sym_restrict] = ACTIONS(7747), - [anon_sym___restrict__] = ACTIONS(7747), - [anon_sym__Atomic] = ACTIONS(7747), - [anon_sym__Noreturn] = ACTIONS(7747), - [anon_sym_noreturn] = ACTIONS(7747), - [anon_sym__Nonnull] = ACTIONS(7747), - [anon_sym_mutable] = ACTIONS(7747), - [anon_sym_constinit] = ACTIONS(7747), - [anon_sym_consteval] = ACTIONS(7747), - [anon_sym_alignas] = ACTIONS(7747), - [anon_sym__Alignas] = ACTIONS(7747), - [sym_primitive_type] = ACTIONS(7747), - [anon_sym_QMARK] = ACTIONS(7749), - [anon_sym_LT_EQ_GT] = ACTIONS(7749), - [anon_sym_or] = ACTIONS(7747), - [anon_sym_and] = ACTIONS(7747), - [anon_sym_bitor] = ACTIONS(7747), - [anon_sym_xor] = ACTIONS(7747), - [anon_sym_bitand] = ACTIONS(7747), - [anon_sym_not_eq] = ACTIONS(7747), - [anon_sym_DASH_DASH] = ACTIONS(7749), - [anon_sym_PLUS_PLUS] = ACTIONS(7749), - [anon_sym_DOT] = ACTIONS(7747), - [anon_sym_DOT_STAR] = ACTIONS(7749), - [anon_sym_DASH_GT] = ACTIONS(7749), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7747), - [anon_sym_override] = ACTIONS(7747), - [anon_sym_requires] = ACTIONS(7747), - [anon_sym_COLON_RBRACK] = ACTIONS(7749), - }, - [STATE(3109)] = { - [sym_identifier] = ACTIONS(7561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7563), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7563), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7563), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7563), - [anon_sym_GT_GT] = ACTIONS(7563), - [anon_sym_SEMI] = ACTIONS(7563), - [anon_sym___extension__] = ACTIONS(7561), - [anon_sym___attribute__] = ACTIONS(7561), - [anon_sym___attribute] = ACTIONS(7561), - [anon_sym_COLON] = ACTIONS(7561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), - [anon_sym___based] = ACTIONS(7561), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_RBRACE] = ACTIONS(7563), - [anon_sym_signed] = ACTIONS(7561), - [anon_sym_unsigned] = ACTIONS(7561), - [anon_sym_long] = ACTIONS(7561), - [anon_sym_short] = ACTIONS(7561), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7561), - [anon_sym_volatile] = ACTIONS(7561), - [anon_sym_restrict] = ACTIONS(7561), - [anon_sym___restrict__] = ACTIONS(7561), - [anon_sym__Atomic] = ACTIONS(7561), - [anon_sym__Noreturn] = ACTIONS(7561), - [anon_sym_noreturn] = ACTIONS(7561), - [anon_sym__Nonnull] = ACTIONS(7561), - [anon_sym_mutable] = ACTIONS(7561), - [anon_sym_constinit] = ACTIONS(7561), - [anon_sym_consteval] = ACTIONS(7561), - [anon_sym_alignas] = ACTIONS(7561), - [anon_sym__Alignas] = ACTIONS(7561), - [sym_primitive_type] = ACTIONS(7561), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7561), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7561), - [anon_sym_not_eq] = ACTIONS(7561), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7561), - [anon_sym_override] = ACTIONS(7561), - [anon_sym_requires] = ACTIONS(7561), - [anon_sym_COLON_RBRACK] = ACTIONS(7563), - }, - [STATE(3110)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7651), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7651), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7651), - [anon_sym_GT_GT] = ACTIONS(7651), - [anon_sym___extension__] = ACTIONS(7653), - [anon_sym_LBRACE] = ACTIONS(7653), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_RBRACK] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(7651), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7653), - [anon_sym_volatile] = ACTIONS(7653), - [anon_sym_restrict] = ACTIONS(7653), - [anon_sym___restrict__] = ACTIONS(7653), - [anon_sym__Atomic] = ACTIONS(7653), - [anon_sym__Noreturn] = ACTIONS(7653), - [anon_sym_noreturn] = ACTIONS(7653), - [anon_sym__Nonnull] = ACTIONS(7653), - [anon_sym_mutable] = ACTIONS(7653), - [anon_sym_constinit] = ACTIONS(7653), - [anon_sym_consteval] = ACTIONS(7653), - [anon_sym_alignas] = ACTIONS(7653), - [anon_sym__Alignas] = ACTIONS(7653), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_STAR_EQ] = ACTIONS(7653), - [anon_sym_SLASH_EQ] = ACTIONS(7653), - [anon_sym_PERCENT_EQ] = ACTIONS(7653), - [anon_sym_PLUS_EQ] = ACTIONS(7653), - [anon_sym_DASH_EQ] = ACTIONS(7653), - [anon_sym_LT_LT_EQ] = ACTIONS(7653), - [anon_sym_GT_GT_EQ] = ACTIONS(7653), - [anon_sym_AMP_EQ] = ACTIONS(7653), - [anon_sym_CARET_EQ] = ACTIONS(7653), - [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_and_eq] = ACTIONS(7653), - [anon_sym_or_eq] = ACTIONS(7653), - [anon_sym_xor_eq] = ACTIONS(7653), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7651), - [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7653), - [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7653), - [anon_sym_not_eq] = ACTIONS(7653), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7653), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7653), - [anon_sym_override] = ACTIONS(7653), - [anon_sym_requires] = ACTIONS(7653), - }, - [STATE(3111)] = { - [sym_identifier] = ACTIONS(9041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9043), - [anon_sym_COMMA] = ACTIONS(9043), - [anon_sym_RPAREN] = ACTIONS(9043), - [aux_sym_preproc_if_token2] = ACTIONS(9043), - [aux_sym_preproc_else_token1] = ACTIONS(9043), - [aux_sym_preproc_elif_token1] = ACTIONS(9041), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9043), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9043), - [anon_sym_LPAREN2] = ACTIONS(9043), - [anon_sym_DASH] = ACTIONS(9041), - [anon_sym_PLUS] = ACTIONS(9041), - [anon_sym_STAR] = ACTIONS(9041), - [anon_sym_SLASH] = ACTIONS(9041), - [anon_sym_PERCENT] = ACTIONS(9041), - [anon_sym_PIPE_PIPE] = ACTIONS(9043), - [anon_sym_AMP_AMP] = ACTIONS(9043), - [anon_sym_PIPE] = ACTIONS(9041), - [anon_sym_CARET] = ACTIONS(9041), - [anon_sym_AMP] = ACTIONS(9041), - [anon_sym_EQ_EQ] = ACTIONS(9043), - [anon_sym_BANG_EQ] = ACTIONS(9043), - [anon_sym_GT] = ACTIONS(9041), - [anon_sym_GT_EQ] = ACTIONS(9043), - [anon_sym_LT_EQ] = ACTIONS(9041), - [anon_sym_LT] = ACTIONS(9041), - [anon_sym_LT_LT] = ACTIONS(9041), - [anon_sym_GT_GT] = ACTIONS(9041), - [anon_sym_SEMI] = ACTIONS(9043), - [anon_sym___attribute__] = ACTIONS(9041), - [anon_sym___attribute] = ACTIONS(9041), - [anon_sym_COLON] = ACTIONS(9041), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9043), - [anon_sym_LBRACE] = ACTIONS(9043), - [anon_sym_RBRACE] = ACTIONS(9043), - [anon_sym_LBRACK] = ACTIONS(9041), - [anon_sym_RBRACK] = ACTIONS(9043), - [anon_sym_EQ] = ACTIONS(9041), - [anon_sym_QMARK] = ACTIONS(9043), - [anon_sym_STAR_EQ] = ACTIONS(9043), - [anon_sym_SLASH_EQ] = ACTIONS(9043), - [anon_sym_PERCENT_EQ] = ACTIONS(9043), - [anon_sym_PLUS_EQ] = ACTIONS(9043), - [anon_sym_DASH_EQ] = ACTIONS(9043), - [anon_sym_LT_LT_EQ] = ACTIONS(9043), - [anon_sym_GT_GT_EQ] = ACTIONS(9043), - [anon_sym_AMP_EQ] = ACTIONS(9043), - [anon_sym_CARET_EQ] = ACTIONS(9043), - [anon_sym_PIPE_EQ] = ACTIONS(9043), - [anon_sym_and_eq] = ACTIONS(9041), - [anon_sym_or_eq] = ACTIONS(9041), - [anon_sym_xor_eq] = ACTIONS(9041), - [anon_sym_LT_EQ_GT] = ACTIONS(9043), - [anon_sym_or] = ACTIONS(9041), - [anon_sym_and] = ACTIONS(9041), - [anon_sym_bitor] = ACTIONS(9041), - [anon_sym_xor] = ACTIONS(9041), - [anon_sym_bitand] = ACTIONS(9041), - [anon_sym_not_eq] = ACTIONS(9041), - [anon_sym_DASH_DASH] = ACTIONS(9043), - [anon_sym_PLUS_PLUS] = ACTIONS(9043), - [anon_sym_asm] = ACTIONS(9041), - [anon_sym___asm__] = ACTIONS(9041), - [anon_sym___asm] = ACTIONS(9041), - [anon_sym_DOT] = ACTIONS(9041), - [anon_sym_DOT_STAR] = ACTIONS(9043), - [anon_sym_DASH_GT] = ACTIONS(9043), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9041), - [anon_sym_COLON_RBRACK] = ACTIONS(9043), - }, - [STATE(3112)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7595), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7595), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7595), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7595), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7595), - [anon_sym_GT_GT] = ACTIONS(7595), - [anon_sym___extension__] = ACTIONS(7597), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_EQ] = ACTIONS(7595), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7597), - [anon_sym_volatile] = ACTIONS(7597), - [anon_sym_restrict] = ACTIONS(7597), - [anon_sym___restrict__] = ACTIONS(7597), - [anon_sym__Atomic] = ACTIONS(7597), - [anon_sym__Noreturn] = ACTIONS(7597), - [anon_sym_noreturn] = ACTIONS(7597), - [anon_sym__Nonnull] = ACTIONS(7597), - [anon_sym_mutable] = ACTIONS(7597), - [anon_sym_constinit] = ACTIONS(7597), - [anon_sym_consteval] = ACTIONS(7597), - [anon_sym_alignas] = ACTIONS(7597), - [anon_sym__Alignas] = ACTIONS(7597), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_STAR_EQ] = ACTIONS(7597), - [anon_sym_SLASH_EQ] = ACTIONS(7597), - [anon_sym_PERCENT_EQ] = ACTIONS(7597), - [anon_sym_PLUS_EQ] = ACTIONS(7597), - [anon_sym_DASH_EQ] = ACTIONS(7597), - [anon_sym_LT_LT_EQ] = ACTIONS(7597), - [anon_sym_GT_GT_EQ] = ACTIONS(7595), - [anon_sym_AMP_EQ] = ACTIONS(7597), - [anon_sym_CARET_EQ] = ACTIONS(7597), - [anon_sym_PIPE_EQ] = ACTIONS(7597), - [anon_sym_and_eq] = ACTIONS(7597), - [anon_sym_or_eq] = ACTIONS(7597), - [anon_sym_xor_eq] = ACTIONS(7597), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7595), - [anon_sym_and] = ACTIONS(7595), - [anon_sym_bitor] = ACTIONS(7597), - [anon_sym_xor] = ACTIONS(7595), - [anon_sym_bitand] = ACTIONS(7597), - [anon_sym_not_eq] = ACTIONS(7597), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7597), - [anon_sym_override] = ACTIONS(7597), - [anon_sym_GT2] = ACTIONS(7597), - [anon_sym_requires] = ACTIONS(7597), - }, - [STATE(3113)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), - [anon_sym_COMMA] = ACTIONS(7637), - [anon_sym_LPAREN2] = ACTIONS(7637), - [anon_sym_DASH] = ACTIONS(7635), - [anon_sym_PLUS] = ACTIONS(7635), - [anon_sym_STAR] = ACTIONS(7635), - [anon_sym_SLASH] = ACTIONS(7635), - [anon_sym_PERCENT] = ACTIONS(7635), - [anon_sym_PIPE_PIPE] = ACTIONS(7637), - [anon_sym_AMP_AMP] = ACTIONS(7637), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_CARET] = ACTIONS(7635), - [anon_sym_AMP] = ACTIONS(7635), - [anon_sym_EQ_EQ] = ACTIONS(7637), - [anon_sym_BANG_EQ] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_EQ] = ACTIONS(7635), - [anon_sym_LT_EQ] = ACTIONS(7635), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(7635), - [anon_sym___extension__] = ACTIONS(7637), - [anon_sym_LBRACE] = ACTIONS(7637), - [anon_sym_LBRACK] = ACTIONS(7637), - [anon_sym_EQ] = ACTIONS(7635), - [anon_sym_const] = ACTIONS(7635), - [anon_sym_constexpr] = ACTIONS(7637), - [anon_sym_volatile] = ACTIONS(7637), - [anon_sym_restrict] = ACTIONS(7637), - [anon_sym___restrict__] = ACTIONS(7637), - [anon_sym__Atomic] = ACTIONS(7637), - [anon_sym__Noreturn] = ACTIONS(7637), - [anon_sym_noreturn] = ACTIONS(7637), - [anon_sym__Nonnull] = ACTIONS(7637), - [anon_sym_mutable] = ACTIONS(7637), - [anon_sym_constinit] = ACTIONS(7637), - [anon_sym_consteval] = ACTIONS(7637), - [anon_sym_alignas] = ACTIONS(7637), - [anon_sym__Alignas] = ACTIONS(7637), - [anon_sym_QMARK] = ACTIONS(7637), - [anon_sym_STAR_EQ] = ACTIONS(7637), - [anon_sym_SLASH_EQ] = ACTIONS(7637), - [anon_sym_PERCENT_EQ] = ACTIONS(7637), - [anon_sym_PLUS_EQ] = ACTIONS(7637), - [anon_sym_DASH_EQ] = ACTIONS(7637), - [anon_sym_LT_LT_EQ] = ACTIONS(7637), - [anon_sym_GT_GT_EQ] = ACTIONS(7635), - [anon_sym_AMP_EQ] = ACTIONS(7637), - [anon_sym_CARET_EQ] = ACTIONS(7637), - [anon_sym_PIPE_EQ] = ACTIONS(7637), - [anon_sym_and_eq] = ACTIONS(7637), - [anon_sym_or_eq] = ACTIONS(7637), - [anon_sym_xor_eq] = ACTIONS(7637), - [anon_sym_LT_EQ_GT] = ACTIONS(7637), - [anon_sym_or] = ACTIONS(7635), - [anon_sym_and] = ACTIONS(7635), - [anon_sym_bitor] = ACTIONS(7637), - [anon_sym_xor] = ACTIONS(7635), - [anon_sym_bitand] = ACTIONS(7637), - [anon_sym_not_eq] = ACTIONS(7637), - [anon_sym_DASH_DASH] = ACTIONS(7637), - [anon_sym_PLUS_PLUS] = ACTIONS(7637), - [anon_sym_DOT] = ACTIONS(7635), - [anon_sym_DOT_STAR] = ACTIONS(7637), - [anon_sym_DASH_GT] = ACTIONS(7637), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7637), - [anon_sym_override] = ACTIONS(7637), - [anon_sym_GT2] = ACTIONS(7637), - [anon_sym_requires] = ACTIONS(7637), - }, - [STATE(3114)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), - [anon_sym_COMMA] = ACTIONS(7633), - [anon_sym_RPAREN] = ACTIONS(7633), - [anon_sym_LPAREN2] = ACTIONS(7633), - [anon_sym_DASH] = ACTIONS(7631), - [anon_sym_PLUS] = ACTIONS(7631), - [anon_sym_STAR] = ACTIONS(7631), - [anon_sym_SLASH] = ACTIONS(7631), - [anon_sym_PERCENT] = ACTIONS(7631), - [anon_sym_PIPE_PIPE] = ACTIONS(7633), - [anon_sym_AMP_AMP] = ACTIONS(7633), - [anon_sym_PIPE] = ACTIONS(7631), - [anon_sym_CARET] = ACTIONS(7631), - [anon_sym_AMP] = ACTIONS(7631), - [anon_sym_EQ_EQ] = ACTIONS(7633), - [anon_sym_BANG_EQ] = ACTIONS(7633), - [anon_sym_GT] = ACTIONS(7631), - [anon_sym_GT_EQ] = ACTIONS(7633), - [anon_sym_LT_EQ] = ACTIONS(7631), - [anon_sym_LT] = ACTIONS(7631), - [anon_sym_LT_LT] = ACTIONS(7631), - [anon_sym_GT_GT] = ACTIONS(7631), - [anon_sym___extension__] = ACTIONS(7633), - [anon_sym___attribute__] = ACTIONS(7633), - [anon_sym___attribute] = ACTIONS(7631), - [anon_sym_LBRACE] = ACTIONS(7633), - [anon_sym_LBRACK] = ACTIONS(7633), - [anon_sym_EQ] = ACTIONS(7631), - [anon_sym_const] = ACTIONS(7631), - [anon_sym_constexpr] = ACTIONS(7633), - [anon_sym_volatile] = ACTIONS(7633), - [anon_sym_restrict] = ACTIONS(7633), - [anon_sym___restrict__] = ACTIONS(7633), - [anon_sym__Atomic] = ACTIONS(7633), - [anon_sym__Noreturn] = ACTIONS(7633), - [anon_sym_noreturn] = ACTIONS(7633), - [anon_sym__Nonnull] = ACTIONS(7633), - [anon_sym_mutable] = ACTIONS(7633), - [anon_sym_constinit] = ACTIONS(7633), - [anon_sym_consteval] = ACTIONS(7633), - [anon_sym_alignas] = ACTIONS(7633), - [anon_sym__Alignas] = ACTIONS(7633), - [anon_sym_QMARK] = ACTIONS(7633), - [anon_sym_STAR_EQ] = ACTIONS(7633), - [anon_sym_SLASH_EQ] = ACTIONS(7633), - [anon_sym_PERCENT_EQ] = ACTIONS(7633), - [anon_sym_PLUS_EQ] = ACTIONS(7633), - [anon_sym_DASH_EQ] = ACTIONS(7633), - [anon_sym_LT_LT_EQ] = ACTIONS(7633), - [anon_sym_GT_GT_EQ] = ACTIONS(7633), - [anon_sym_AMP_EQ] = ACTIONS(7633), - [anon_sym_CARET_EQ] = ACTIONS(7633), - [anon_sym_PIPE_EQ] = ACTIONS(7633), - [anon_sym_LT_EQ_GT] = ACTIONS(7633), - [anon_sym_or] = ACTIONS(7633), - [anon_sym_and] = ACTIONS(7633), - [anon_sym_bitor] = ACTIONS(7633), - [anon_sym_xor] = ACTIONS(7633), - [anon_sym_bitand] = ACTIONS(7633), - [anon_sym_not_eq] = ACTIONS(7633), - [anon_sym_DASH_DASH] = ACTIONS(7633), - [anon_sym_PLUS_PLUS] = ACTIONS(7633), - [anon_sym_DOT] = ACTIONS(7631), - [anon_sym_DOT_STAR] = ACTIONS(7633), - [anon_sym_DASH_GT] = ACTIONS(7631), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7633), - [anon_sym_override] = ACTIONS(7633), - [anon_sym_requires] = ACTIONS(7633), - [anon_sym_DASH_GT_STAR] = ACTIONS(7633), - }, - [STATE(3115)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), [anon_sym_COMMA] = ACTIONS(7749), - [anon_sym_RPAREN] = ACTIONS(7749), [anon_sym_LPAREN2] = ACTIONS(7749), [anon_sym_DASH] = ACTIONS(7747), [anon_sym_PLUS] = ACTIONS(7747), @@ -402101,10 +400792,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7747), [anon_sym_GT_GT] = ACTIONS(7747), [anon_sym___extension__] = ACTIONS(7749), - [anon_sym___attribute__] = ACTIONS(7749), - [anon_sym___attribute] = ACTIONS(7747), [anon_sym_LBRACE] = ACTIONS(7749), [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_RBRACK] = ACTIONS(7749), [anon_sym_EQ] = ACTIONS(7747), [anon_sym_const] = ACTIONS(7747), [anon_sym_constexpr] = ACTIONS(7749), @@ -402131,1719 +400821,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(7749), [anon_sym_CARET_EQ] = ACTIONS(7749), [anon_sym_PIPE_EQ] = ACTIONS(7749), + [anon_sym_and_eq] = ACTIONS(7749), + [anon_sym_or_eq] = ACTIONS(7749), + [anon_sym_xor_eq] = ACTIONS(7749), [anon_sym_LT_EQ_GT] = ACTIONS(7749), - [anon_sym_or] = ACTIONS(7749), - [anon_sym_and] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7747), + [anon_sym_and] = ACTIONS(7747), [anon_sym_bitor] = ACTIONS(7749), - [anon_sym_xor] = ACTIONS(7749), + [anon_sym_xor] = ACTIONS(7747), [anon_sym_bitand] = ACTIONS(7749), [anon_sym_not_eq] = ACTIONS(7749), [anon_sym_DASH_DASH] = ACTIONS(7749), [anon_sym_PLUS_PLUS] = ACTIONS(7749), [anon_sym_DOT] = ACTIONS(7747), [anon_sym_DOT_STAR] = ACTIONS(7749), - [anon_sym_DASH_GT] = ACTIONS(7747), + [anon_sym_DASH_GT] = ACTIONS(7749), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7749), [anon_sym_override] = ACTIONS(7749), [anon_sym_requires] = ACTIONS(7749), - [anon_sym_DASH_GT_STAR] = ACTIONS(7749), - }, - [STATE(3116)] = { - [sym_identifier] = ACTIONS(7599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), - [anon_sym_COMMA] = ACTIONS(7601), - [anon_sym_RPAREN] = ACTIONS(7601), - [anon_sym_LPAREN2] = ACTIONS(7601), - [anon_sym_DASH] = ACTIONS(7599), - [anon_sym_PLUS] = ACTIONS(7599), - [anon_sym_STAR] = ACTIONS(7601), - [anon_sym_SLASH] = ACTIONS(7599), - [anon_sym_PERCENT] = ACTIONS(7601), - [anon_sym_PIPE_PIPE] = ACTIONS(7601), - [anon_sym_AMP_AMP] = ACTIONS(7601), - [anon_sym_PIPE] = ACTIONS(7599), - [anon_sym_CARET] = ACTIONS(7601), - [anon_sym_AMP] = ACTIONS(7599), - [anon_sym_EQ_EQ] = ACTIONS(7601), - [anon_sym_BANG_EQ] = ACTIONS(7601), - [anon_sym_GT] = ACTIONS(7599), - [anon_sym_GT_EQ] = ACTIONS(7601), - [anon_sym_LT_EQ] = ACTIONS(7599), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_LT_LT] = ACTIONS(7601), - [anon_sym_GT_GT] = ACTIONS(7601), - [anon_sym_SEMI] = ACTIONS(7601), - [anon_sym___extension__] = ACTIONS(7599), - [anon_sym___attribute__] = ACTIONS(7599), - [anon_sym___attribute] = ACTIONS(7599), - [anon_sym_COLON] = ACTIONS(7599), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7601), - [anon_sym___based] = ACTIONS(7599), - [anon_sym_LBRACE] = ACTIONS(7601), - [anon_sym_RBRACE] = ACTIONS(7601), - [anon_sym_signed] = ACTIONS(7599), - [anon_sym_unsigned] = ACTIONS(7599), - [anon_sym_long] = ACTIONS(7599), - [anon_sym_short] = ACTIONS(7599), - [anon_sym_LBRACK] = ACTIONS(7601), - [anon_sym_const] = ACTIONS(7599), - [anon_sym_constexpr] = ACTIONS(7599), - [anon_sym_volatile] = ACTIONS(7599), - [anon_sym_restrict] = ACTIONS(7599), - [anon_sym___restrict__] = ACTIONS(7599), - [anon_sym__Atomic] = ACTIONS(7599), - [anon_sym__Noreturn] = ACTIONS(7599), - [anon_sym_noreturn] = ACTIONS(7599), - [anon_sym__Nonnull] = ACTIONS(7599), - [anon_sym_mutable] = ACTIONS(7599), - [anon_sym_constinit] = ACTIONS(7599), - [anon_sym_consteval] = ACTIONS(7599), - [anon_sym_alignas] = ACTIONS(7599), - [anon_sym__Alignas] = ACTIONS(7599), - [sym_primitive_type] = ACTIONS(7599), - [anon_sym_QMARK] = ACTIONS(7601), - [anon_sym_LT_EQ_GT] = ACTIONS(7601), - [anon_sym_or] = ACTIONS(7599), - [anon_sym_and] = ACTIONS(7599), - [anon_sym_bitor] = ACTIONS(7599), - [anon_sym_xor] = ACTIONS(7599), - [anon_sym_bitand] = ACTIONS(7599), - [anon_sym_not_eq] = ACTIONS(7599), - [anon_sym_DASH_DASH] = ACTIONS(7601), - [anon_sym_PLUS_PLUS] = ACTIONS(7601), - [anon_sym_DOT] = ACTIONS(7599), - [anon_sym_DOT_STAR] = ACTIONS(7601), - [anon_sym_DASH_GT] = ACTIONS(7601), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7599), - [anon_sym_override] = ACTIONS(7599), - [anon_sym_requires] = ACTIONS(7599), - [anon_sym_COLON_RBRACK] = ACTIONS(7601), - }, - [STATE(3117)] = { - [sym_identifier] = ACTIONS(7603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), - [anon_sym_COMMA] = ACTIONS(7605), - [anon_sym_RPAREN] = ACTIONS(7605), - [anon_sym_LPAREN2] = ACTIONS(7605), - [anon_sym_DASH] = ACTIONS(7603), - [anon_sym_PLUS] = ACTIONS(7603), - [anon_sym_STAR] = ACTIONS(7605), - [anon_sym_SLASH] = ACTIONS(7603), - [anon_sym_PERCENT] = ACTIONS(7605), - [anon_sym_PIPE_PIPE] = ACTIONS(7605), - [anon_sym_AMP_AMP] = ACTIONS(7605), - [anon_sym_PIPE] = ACTIONS(7603), - [anon_sym_CARET] = ACTIONS(7605), - [anon_sym_AMP] = ACTIONS(7603), - [anon_sym_EQ_EQ] = ACTIONS(7605), - [anon_sym_BANG_EQ] = ACTIONS(7605), - [anon_sym_GT] = ACTIONS(7603), - [anon_sym_GT_EQ] = ACTIONS(7605), - [anon_sym_LT_EQ] = ACTIONS(7603), - [anon_sym_LT] = ACTIONS(7603), - [anon_sym_LT_LT] = ACTIONS(7605), - [anon_sym_GT_GT] = ACTIONS(7605), - [anon_sym_SEMI] = ACTIONS(7605), - [anon_sym___extension__] = ACTIONS(7603), - [anon_sym___attribute__] = ACTIONS(7603), - [anon_sym___attribute] = ACTIONS(7603), - [anon_sym_COLON] = ACTIONS(7603), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7605), - [anon_sym___based] = ACTIONS(7603), - [anon_sym_LBRACE] = ACTIONS(7605), - [anon_sym_RBRACE] = ACTIONS(7605), - [anon_sym_signed] = ACTIONS(7603), - [anon_sym_unsigned] = ACTIONS(7603), - [anon_sym_long] = ACTIONS(7603), - [anon_sym_short] = ACTIONS(7603), - [anon_sym_LBRACK] = ACTIONS(7605), - [anon_sym_const] = ACTIONS(7603), - [anon_sym_constexpr] = ACTIONS(7603), - [anon_sym_volatile] = ACTIONS(7603), - [anon_sym_restrict] = ACTIONS(7603), - [anon_sym___restrict__] = ACTIONS(7603), - [anon_sym__Atomic] = ACTIONS(7603), - [anon_sym__Noreturn] = ACTIONS(7603), - [anon_sym_noreturn] = ACTIONS(7603), - [anon_sym__Nonnull] = ACTIONS(7603), - [anon_sym_mutable] = ACTIONS(7603), - [anon_sym_constinit] = ACTIONS(7603), - [anon_sym_consteval] = ACTIONS(7603), - [anon_sym_alignas] = ACTIONS(7603), - [anon_sym__Alignas] = ACTIONS(7603), - [sym_primitive_type] = ACTIONS(7603), - [anon_sym_QMARK] = ACTIONS(7605), - [anon_sym_LT_EQ_GT] = ACTIONS(7605), - [anon_sym_or] = ACTIONS(7603), - [anon_sym_and] = ACTIONS(7603), - [anon_sym_bitor] = ACTIONS(7603), - [anon_sym_xor] = ACTIONS(7603), - [anon_sym_bitand] = ACTIONS(7603), - [anon_sym_not_eq] = ACTIONS(7603), - [anon_sym_DASH_DASH] = ACTIONS(7605), - [anon_sym_PLUS_PLUS] = ACTIONS(7605), - [anon_sym_DOT] = ACTIONS(7603), - [anon_sym_DOT_STAR] = ACTIONS(7605), - [anon_sym_DASH_GT] = ACTIONS(7605), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7603), - [anon_sym_override] = ACTIONS(7603), - [anon_sym_requires] = ACTIONS(7603), - [anon_sym_COLON_RBRACK] = ACTIONS(7605), - }, - [STATE(3118)] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token2] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym___attribute] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym__Nonnull] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym__Alignas] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_friend] = ACTIONS(3362), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_catch] = ACTIONS(3362), - [anon_sym_LBRACK_COLON] = ACTIONS(3364), - }, - [STATE(3119)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), - [anon_sym_COMMA] = ACTIONS(7769), - [anon_sym_LPAREN2] = ACTIONS(7769), - [anon_sym_DASH] = ACTIONS(7767), - [anon_sym_PLUS] = ACTIONS(7767), - [anon_sym_STAR] = ACTIONS(7767), - [anon_sym_SLASH] = ACTIONS(7767), - [anon_sym_PERCENT] = ACTIONS(7767), - [anon_sym_PIPE_PIPE] = ACTIONS(7769), - [anon_sym_AMP_AMP] = ACTIONS(7769), - [anon_sym_PIPE] = ACTIONS(7767), - [anon_sym_CARET] = ACTIONS(7767), - [anon_sym_AMP] = ACTIONS(7767), - [anon_sym_EQ_EQ] = ACTIONS(7769), - [anon_sym_BANG_EQ] = ACTIONS(7769), - [anon_sym_GT] = ACTIONS(7767), - [anon_sym_GT_EQ] = ACTIONS(7769), - [anon_sym_LT_EQ] = ACTIONS(7767), - [anon_sym_LT] = ACTIONS(7767), - [anon_sym_LT_LT] = ACTIONS(7767), - [anon_sym_GT_GT] = ACTIONS(7767), - [anon_sym___extension__] = ACTIONS(7769), - [anon_sym_LBRACE] = ACTIONS(7769), - [anon_sym_LBRACK] = ACTIONS(7769), - [anon_sym_RBRACK] = ACTIONS(7769), - [anon_sym_EQ] = ACTIONS(7767), - [anon_sym_const] = ACTIONS(7767), - [anon_sym_constexpr] = ACTIONS(7769), - [anon_sym_volatile] = ACTIONS(7769), - [anon_sym_restrict] = ACTIONS(7769), - [anon_sym___restrict__] = ACTIONS(7769), - [anon_sym__Atomic] = ACTIONS(7769), - [anon_sym__Noreturn] = ACTIONS(7769), - [anon_sym_noreturn] = ACTIONS(7769), - [anon_sym__Nonnull] = ACTIONS(7769), - [anon_sym_mutable] = ACTIONS(7769), - [anon_sym_constinit] = ACTIONS(7769), - [anon_sym_consteval] = ACTIONS(7769), - [anon_sym_alignas] = ACTIONS(7769), - [anon_sym__Alignas] = ACTIONS(7769), - [anon_sym_QMARK] = ACTIONS(7769), - [anon_sym_STAR_EQ] = ACTIONS(7769), - [anon_sym_SLASH_EQ] = ACTIONS(7769), - [anon_sym_PERCENT_EQ] = ACTIONS(7769), - [anon_sym_PLUS_EQ] = ACTIONS(7769), - [anon_sym_DASH_EQ] = ACTIONS(7769), - [anon_sym_LT_LT_EQ] = ACTIONS(7769), - [anon_sym_GT_GT_EQ] = ACTIONS(7769), - [anon_sym_AMP_EQ] = ACTIONS(7769), - [anon_sym_CARET_EQ] = ACTIONS(7769), - [anon_sym_PIPE_EQ] = ACTIONS(7769), - [anon_sym_and_eq] = ACTIONS(7769), - [anon_sym_or_eq] = ACTIONS(7769), - [anon_sym_xor_eq] = ACTIONS(7769), - [anon_sym_LT_EQ_GT] = ACTIONS(7769), - [anon_sym_or] = ACTIONS(7767), - [anon_sym_and] = ACTIONS(7767), - [anon_sym_bitor] = ACTIONS(7769), - [anon_sym_xor] = ACTIONS(7767), - [anon_sym_bitand] = ACTIONS(7769), - [anon_sym_not_eq] = ACTIONS(7769), - [anon_sym_DASH_DASH] = ACTIONS(7769), - [anon_sym_PLUS_PLUS] = ACTIONS(7769), - [anon_sym_DOT] = ACTIONS(7767), - [anon_sym_DOT_STAR] = ACTIONS(7769), - [anon_sym_DASH_GT] = ACTIONS(7769), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7769), - [anon_sym_override] = ACTIONS(7769), - [anon_sym_requires] = ACTIONS(7769), - }, - [STATE(3120)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), - [anon_sym_COMMA] = ACTIONS(7587), - [anon_sym_RPAREN] = ACTIONS(7587), - [anon_sym_LPAREN2] = ACTIONS(7587), - [anon_sym_DASH] = ACTIONS(7585), - [anon_sym_PLUS] = ACTIONS(7585), - [anon_sym_STAR] = ACTIONS(7585), - [anon_sym_SLASH] = ACTIONS(7585), - [anon_sym_PERCENT] = ACTIONS(7585), - [anon_sym_PIPE_PIPE] = ACTIONS(7587), - [anon_sym_AMP_AMP] = ACTIONS(7587), - [anon_sym_PIPE] = ACTIONS(7585), - [anon_sym_CARET] = ACTIONS(7585), - [anon_sym_AMP] = ACTIONS(7585), - [anon_sym_EQ_EQ] = ACTIONS(7587), - [anon_sym_BANG_EQ] = ACTIONS(7587), - [anon_sym_GT] = ACTIONS(7585), - [anon_sym_GT_EQ] = ACTIONS(7587), - [anon_sym_LT_EQ] = ACTIONS(7585), - [anon_sym_LT] = ACTIONS(7585), - [anon_sym_LT_LT] = ACTIONS(7585), - [anon_sym_GT_GT] = ACTIONS(7585), - [anon_sym___extension__] = ACTIONS(7587), - [anon_sym___attribute__] = ACTIONS(7587), - [anon_sym___attribute] = ACTIONS(7585), - [anon_sym_LBRACE] = ACTIONS(7587), - [anon_sym_LBRACK] = ACTIONS(7587), - [anon_sym_EQ] = ACTIONS(7585), - [anon_sym_const] = ACTIONS(7585), - [anon_sym_constexpr] = ACTIONS(7587), - [anon_sym_volatile] = ACTIONS(7587), - [anon_sym_restrict] = ACTIONS(7587), - [anon_sym___restrict__] = ACTIONS(7587), - [anon_sym__Atomic] = ACTIONS(7587), - [anon_sym__Noreturn] = ACTIONS(7587), - [anon_sym_noreturn] = ACTIONS(7587), - [anon_sym__Nonnull] = ACTIONS(7587), - [anon_sym_mutable] = ACTIONS(7587), - [anon_sym_constinit] = ACTIONS(7587), - [anon_sym_consteval] = ACTIONS(7587), - [anon_sym_alignas] = ACTIONS(7587), - [anon_sym__Alignas] = ACTIONS(7587), - [anon_sym_QMARK] = ACTIONS(7587), - [anon_sym_STAR_EQ] = ACTIONS(7587), - [anon_sym_SLASH_EQ] = ACTIONS(7587), - [anon_sym_PERCENT_EQ] = ACTIONS(7587), - [anon_sym_PLUS_EQ] = ACTIONS(7587), - [anon_sym_DASH_EQ] = ACTIONS(7587), - [anon_sym_LT_LT_EQ] = ACTIONS(7587), - [anon_sym_GT_GT_EQ] = ACTIONS(7587), - [anon_sym_AMP_EQ] = ACTIONS(7587), - [anon_sym_CARET_EQ] = ACTIONS(7587), - [anon_sym_PIPE_EQ] = ACTIONS(7587), - [anon_sym_LT_EQ_GT] = ACTIONS(7587), - [anon_sym_or] = ACTIONS(7587), - [anon_sym_and] = ACTIONS(7587), - [anon_sym_bitor] = ACTIONS(7587), - [anon_sym_xor] = ACTIONS(7587), - [anon_sym_bitand] = ACTIONS(7587), - [anon_sym_not_eq] = ACTIONS(7587), - [anon_sym_DASH_DASH] = ACTIONS(7587), - [anon_sym_PLUS_PLUS] = ACTIONS(7587), - [anon_sym_DOT] = ACTIONS(7585), - [anon_sym_DOT_STAR] = ACTIONS(7587), - [anon_sym_DASH_GT] = ACTIONS(7585), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7587), - [anon_sym_override] = ACTIONS(7587), - [anon_sym_requires] = ACTIONS(7587), - [anon_sym_DASH_GT_STAR] = ACTIONS(7587), - }, - [STATE(3121)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), - [anon_sym_COMMA] = ACTIONS(7625), - [anon_sym_LPAREN2] = ACTIONS(7625), - [anon_sym_DASH] = ACTIONS(7623), - [anon_sym_PLUS] = ACTIONS(7623), - [anon_sym_STAR] = ACTIONS(7623), - [anon_sym_SLASH] = ACTIONS(7623), - [anon_sym_PERCENT] = ACTIONS(7623), - [anon_sym_PIPE_PIPE] = ACTIONS(7625), - [anon_sym_AMP_AMP] = ACTIONS(7625), - [anon_sym_PIPE] = ACTIONS(7623), - [anon_sym_CARET] = ACTIONS(7623), - [anon_sym_AMP] = ACTIONS(7623), - [anon_sym_EQ_EQ] = ACTIONS(7625), - [anon_sym_BANG_EQ] = ACTIONS(7625), - [anon_sym_GT] = ACTIONS(7623), - [anon_sym_GT_EQ] = ACTIONS(7625), - [anon_sym_LT_EQ] = ACTIONS(7623), - [anon_sym_LT] = ACTIONS(7623), - [anon_sym_LT_LT] = ACTIONS(7623), - [anon_sym_GT_GT] = ACTIONS(7623), - [anon_sym___extension__] = ACTIONS(7625), - [anon_sym_LBRACE] = ACTIONS(7625), - [anon_sym_LBRACK] = ACTIONS(7625), - [anon_sym_RBRACK] = ACTIONS(7625), - [anon_sym_EQ] = ACTIONS(7623), - [anon_sym_const] = ACTIONS(7623), - [anon_sym_constexpr] = ACTIONS(7625), - [anon_sym_volatile] = ACTIONS(7625), - [anon_sym_restrict] = ACTIONS(7625), - [anon_sym___restrict__] = ACTIONS(7625), - [anon_sym__Atomic] = ACTIONS(7625), - [anon_sym__Noreturn] = ACTIONS(7625), - [anon_sym_noreturn] = ACTIONS(7625), - [anon_sym__Nonnull] = ACTIONS(7625), - [anon_sym_mutable] = ACTIONS(7625), - [anon_sym_constinit] = ACTIONS(7625), - [anon_sym_consteval] = ACTIONS(7625), - [anon_sym_alignas] = ACTIONS(7625), - [anon_sym__Alignas] = ACTIONS(7625), - [anon_sym_QMARK] = ACTIONS(7625), - [anon_sym_STAR_EQ] = ACTIONS(7625), - [anon_sym_SLASH_EQ] = ACTIONS(7625), - [anon_sym_PERCENT_EQ] = ACTIONS(7625), - [anon_sym_PLUS_EQ] = ACTIONS(7625), - [anon_sym_DASH_EQ] = ACTIONS(7625), - [anon_sym_LT_LT_EQ] = ACTIONS(7625), - [anon_sym_GT_GT_EQ] = ACTIONS(7625), - [anon_sym_AMP_EQ] = ACTIONS(7625), - [anon_sym_CARET_EQ] = ACTIONS(7625), - [anon_sym_PIPE_EQ] = ACTIONS(7625), - [anon_sym_and_eq] = ACTIONS(7625), - [anon_sym_or_eq] = ACTIONS(7625), - [anon_sym_xor_eq] = ACTIONS(7625), - [anon_sym_LT_EQ_GT] = ACTIONS(7625), - [anon_sym_or] = ACTIONS(7623), - [anon_sym_and] = ACTIONS(7623), - [anon_sym_bitor] = ACTIONS(7625), - [anon_sym_xor] = ACTIONS(7623), - [anon_sym_bitand] = ACTIONS(7625), - [anon_sym_not_eq] = ACTIONS(7625), - [anon_sym_DASH_DASH] = ACTIONS(7625), - [anon_sym_PLUS_PLUS] = ACTIONS(7625), - [anon_sym_DOT] = ACTIONS(7623), - [anon_sym_DOT_STAR] = ACTIONS(7625), - [anon_sym_DASH_GT] = ACTIONS(7625), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7625), - [anon_sym_override] = ACTIONS(7625), - [anon_sym_requires] = ACTIONS(7625), - }, - [STATE(3122)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), - [anon_sym_COMMA] = ACTIONS(7609), - [anon_sym_LPAREN2] = ACTIONS(7609), - [anon_sym_DASH] = ACTIONS(7607), - [anon_sym_PLUS] = ACTIONS(7607), - [anon_sym_STAR] = ACTIONS(7607), - [anon_sym_SLASH] = ACTIONS(7607), - [anon_sym_PERCENT] = ACTIONS(7607), - [anon_sym_PIPE_PIPE] = ACTIONS(7609), - [anon_sym_AMP_AMP] = ACTIONS(7609), - [anon_sym_PIPE] = ACTIONS(7607), - [anon_sym_CARET] = ACTIONS(7607), - [anon_sym_AMP] = ACTIONS(7607), - [anon_sym_EQ_EQ] = ACTIONS(7609), - [anon_sym_BANG_EQ] = ACTIONS(7609), - [anon_sym_GT] = ACTIONS(7607), - [anon_sym_GT_EQ] = ACTIONS(7607), - [anon_sym_LT_EQ] = ACTIONS(7607), - [anon_sym_LT] = ACTIONS(7607), - [anon_sym_LT_LT] = ACTIONS(7607), - [anon_sym_GT_GT] = ACTIONS(7607), - [anon_sym___extension__] = ACTIONS(7609), - [anon_sym_LBRACE] = ACTIONS(7609), - [anon_sym_LBRACK] = ACTIONS(7609), - [anon_sym_EQ] = ACTIONS(7607), - [anon_sym_const] = ACTIONS(7607), - [anon_sym_constexpr] = ACTIONS(7609), - [anon_sym_volatile] = ACTIONS(7609), - [anon_sym_restrict] = ACTIONS(7609), - [anon_sym___restrict__] = ACTIONS(7609), - [anon_sym__Atomic] = ACTIONS(7609), - [anon_sym__Noreturn] = ACTIONS(7609), - [anon_sym_noreturn] = ACTIONS(7609), - [anon_sym__Nonnull] = ACTIONS(7609), - [anon_sym_mutable] = ACTIONS(7609), - [anon_sym_constinit] = ACTIONS(7609), - [anon_sym_consteval] = ACTIONS(7609), - [anon_sym_alignas] = ACTIONS(7609), - [anon_sym__Alignas] = ACTIONS(7609), - [anon_sym_QMARK] = ACTIONS(7609), - [anon_sym_STAR_EQ] = ACTIONS(7609), - [anon_sym_SLASH_EQ] = ACTIONS(7609), - [anon_sym_PERCENT_EQ] = ACTIONS(7609), - [anon_sym_PLUS_EQ] = ACTIONS(7609), - [anon_sym_DASH_EQ] = ACTIONS(7609), - [anon_sym_LT_LT_EQ] = ACTIONS(7609), - [anon_sym_GT_GT_EQ] = ACTIONS(7607), - [anon_sym_AMP_EQ] = ACTIONS(7609), - [anon_sym_CARET_EQ] = ACTIONS(7609), - [anon_sym_PIPE_EQ] = ACTIONS(7609), - [anon_sym_and_eq] = ACTIONS(7609), - [anon_sym_or_eq] = ACTIONS(7609), - [anon_sym_xor_eq] = ACTIONS(7609), - [anon_sym_LT_EQ_GT] = ACTIONS(7609), - [anon_sym_or] = ACTIONS(7607), - [anon_sym_and] = ACTIONS(7607), - [anon_sym_bitor] = ACTIONS(7609), - [anon_sym_xor] = ACTIONS(7607), - [anon_sym_bitand] = ACTIONS(7609), - [anon_sym_not_eq] = ACTIONS(7609), - [anon_sym_DASH_DASH] = ACTIONS(7609), - [anon_sym_PLUS_PLUS] = ACTIONS(7609), - [anon_sym_DOT] = ACTIONS(7607), - [anon_sym_DOT_STAR] = ACTIONS(7609), - [anon_sym_DASH_GT] = ACTIONS(7609), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7609), - [anon_sym_override] = ACTIONS(7609), - [anon_sym_GT2] = ACTIONS(7609), - [anon_sym_requires] = ACTIONS(7609), - }, - [STATE(3123)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_GT2] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - }, - [STATE(3124)] = { - [sym_identifier] = ACTIONS(9045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9047), - [anon_sym_COMMA] = ACTIONS(9047), - [anon_sym_RPAREN] = ACTIONS(9047), - [aux_sym_preproc_if_token2] = ACTIONS(9047), - [aux_sym_preproc_else_token1] = ACTIONS(9047), - [aux_sym_preproc_elif_token1] = ACTIONS(9045), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9047), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9047), - [anon_sym_LPAREN2] = ACTIONS(9047), - [anon_sym_DASH] = ACTIONS(9045), - [anon_sym_PLUS] = ACTIONS(9045), - [anon_sym_STAR] = ACTIONS(9045), - [anon_sym_SLASH] = ACTIONS(9045), - [anon_sym_PERCENT] = ACTIONS(9045), - [anon_sym_PIPE_PIPE] = ACTIONS(9047), - [anon_sym_AMP_AMP] = ACTIONS(9047), - [anon_sym_PIPE] = ACTIONS(9045), - [anon_sym_CARET] = ACTIONS(9045), - [anon_sym_AMP] = ACTIONS(9045), - [anon_sym_EQ_EQ] = ACTIONS(9047), - [anon_sym_BANG_EQ] = ACTIONS(9047), - [anon_sym_GT] = ACTIONS(9045), - [anon_sym_GT_EQ] = ACTIONS(9047), - [anon_sym_LT_EQ] = ACTIONS(9045), - [anon_sym_LT] = ACTIONS(9045), - [anon_sym_LT_LT] = ACTIONS(9045), - [anon_sym_GT_GT] = ACTIONS(9045), - [anon_sym_SEMI] = ACTIONS(9047), - [anon_sym___attribute__] = ACTIONS(9045), - [anon_sym___attribute] = ACTIONS(9045), - [anon_sym_COLON] = ACTIONS(9045), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9047), - [anon_sym_LBRACE] = ACTIONS(9047), - [anon_sym_RBRACE] = ACTIONS(9047), - [anon_sym_LBRACK] = ACTIONS(9045), - [anon_sym_RBRACK] = ACTIONS(9047), - [anon_sym_EQ] = ACTIONS(9045), - [anon_sym_QMARK] = ACTIONS(9047), - [anon_sym_STAR_EQ] = ACTIONS(9047), - [anon_sym_SLASH_EQ] = ACTIONS(9047), - [anon_sym_PERCENT_EQ] = ACTIONS(9047), - [anon_sym_PLUS_EQ] = ACTIONS(9047), - [anon_sym_DASH_EQ] = ACTIONS(9047), - [anon_sym_LT_LT_EQ] = ACTIONS(9047), - [anon_sym_GT_GT_EQ] = ACTIONS(9047), - [anon_sym_AMP_EQ] = ACTIONS(9047), - [anon_sym_CARET_EQ] = ACTIONS(9047), - [anon_sym_PIPE_EQ] = ACTIONS(9047), - [anon_sym_and_eq] = ACTIONS(9045), - [anon_sym_or_eq] = ACTIONS(9045), - [anon_sym_xor_eq] = ACTIONS(9045), - [anon_sym_LT_EQ_GT] = ACTIONS(9047), - [anon_sym_or] = ACTIONS(9045), - [anon_sym_and] = ACTIONS(9045), - [anon_sym_bitor] = ACTIONS(9045), - [anon_sym_xor] = ACTIONS(9045), - [anon_sym_bitand] = ACTIONS(9045), - [anon_sym_not_eq] = ACTIONS(9045), - [anon_sym_DASH_DASH] = ACTIONS(9047), - [anon_sym_PLUS_PLUS] = ACTIONS(9047), - [anon_sym_asm] = ACTIONS(9045), - [anon_sym___asm__] = ACTIONS(9045), - [anon_sym___asm] = ACTIONS(9045), - [anon_sym_DOT] = ACTIONS(9045), - [anon_sym_DOT_STAR] = ACTIONS(9047), - [anon_sym_DASH_GT] = ACTIONS(9047), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9045), - [anon_sym_COLON_RBRACK] = ACTIONS(9047), }, - [STATE(3125)] = { - [sym_attribute_declaration] = STATE(3170), - [aux_sym_attributed_declarator_repeat1] = STATE(3170), - [sym_identifier] = ACTIONS(8837), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8839), - [anon_sym_COMMA] = ACTIONS(8839), - [anon_sym_RPAREN] = ACTIONS(8839), - [aux_sym_preproc_if_token2] = ACTIONS(8839), - [aux_sym_preproc_else_token1] = ACTIONS(8839), - [aux_sym_preproc_elif_token1] = ACTIONS(8837), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8839), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8839), - [anon_sym_LPAREN2] = ACTIONS(8839), - [anon_sym_DASH] = ACTIONS(8837), - [anon_sym_PLUS] = ACTIONS(8837), - [anon_sym_STAR] = ACTIONS(8837), - [anon_sym_SLASH] = ACTIONS(8837), - [anon_sym_PERCENT] = ACTIONS(8837), - [anon_sym_PIPE_PIPE] = ACTIONS(8839), - [anon_sym_AMP_AMP] = ACTIONS(8839), - [anon_sym_PIPE] = ACTIONS(8837), - [anon_sym_CARET] = ACTIONS(8837), - [anon_sym_AMP] = ACTIONS(8837), - [anon_sym_EQ_EQ] = ACTIONS(8839), - [anon_sym_BANG_EQ] = ACTIONS(8839), - [anon_sym_GT] = ACTIONS(8837), - [anon_sym_GT_EQ] = ACTIONS(8839), - [anon_sym_LT_EQ] = ACTIONS(8837), - [anon_sym_LT] = ACTIONS(8837), - [anon_sym_LT_LT] = ACTIONS(8837), - [anon_sym_GT_GT] = ACTIONS(8837), - [anon_sym_SEMI] = ACTIONS(8839), - [anon_sym___attribute__] = ACTIONS(8837), - [anon_sym___attribute] = ACTIONS(8837), - [anon_sym_COLON] = ACTIONS(8837), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8839), - [anon_sym_RBRACE] = ACTIONS(8839), - [anon_sym_LBRACK] = ACTIONS(8837), - [anon_sym_EQ] = ACTIONS(8837), - [anon_sym_QMARK] = ACTIONS(8839), - [anon_sym_STAR_EQ] = ACTIONS(8839), - [anon_sym_SLASH_EQ] = ACTIONS(8839), - [anon_sym_PERCENT_EQ] = ACTIONS(8839), - [anon_sym_PLUS_EQ] = ACTIONS(8839), - [anon_sym_DASH_EQ] = ACTIONS(8839), - [anon_sym_LT_LT_EQ] = ACTIONS(8839), - [anon_sym_GT_GT_EQ] = ACTIONS(8839), - [anon_sym_AMP_EQ] = ACTIONS(8839), - [anon_sym_CARET_EQ] = ACTIONS(8839), - [anon_sym_PIPE_EQ] = ACTIONS(8839), - [anon_sym_and_eq] = ACTIONS(8837), - [anon_sym_or_eq] = ACTIONS(8837), - [anon_sym_xor_eq] = ACTIONS(8837), - [anon_sym_LT_EQ_GT] = ACTIONS(8839), - [anon_sym_or] = ACTIONS(8837), - [anon_sym_and] = ACTIONS(8837), - [anon_sym_bitor] = ACTIONS(8837), - [anon_sym_xor] = ACTIONS(8837), - [anon_sym_bitand] = ACTIONS(8837), - [anon_sym_not_eq] = ACTIONS(8837), - [anon_sym_DASH_DASH] = ACTIONS(8839), - [anon_sym_PLUS_PLUS] = ACTIONS(8839), - [anon_sym_DOT] = ACTIONS(8837), - [anon_sym_DOT_STAR] = ACTIONS(8839), - [anon_sym_DASH_GT] = ACTIONS(8839), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8837), - [anon_sym_override] = ACTIONS(8837), - [anon_sym_requires] = ACTIONS(8837), - [anon_sym_COLON_RBRACK] = ACTIONS(8839), - }, - [STATE(3126)] = { - [sym_type_qualifier] = STATE(3236), - [sym_alignas_qualifier] = STATE(2726), - [aux_sym__type_definition_type_repeat1] = STATE(3236), - [aux_sym_sized_type_specifier_repeat1] = STATE(3605), - [sym_identifier] = ACTIONS(8754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_RPAREN] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym_SEMI] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(8123), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_COLON] = ACTIONS(7251), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7249), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_RBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(9049), - [anon_sym_unsigned] = ACTIONS(9049), - [anon_sym_long] = ACTIONS(9049), - [anon_sym_short] = ACTIONS(9049), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8123), - [anon_sym_volatile] = ACTIONS(8123), - [anon_sym_restrict] = ACTIONS(8123), - [anon_sym___restrict__] = ACTIONS(8123), - [anon_sym__Atomic] = ACTIONS(8123), - [anon_sym__Noreturn] = ACTIONS(8123), - [anon_sym_noreturn] = ACTIONS(8123), - [anon_sym__Nonnull] = ACTIONS(8123), - [anon_sym_mutable] = ACTIONS(8123), - [anon_sym_constinit] = ACTIONS(8123), - [anon_sym_consteval] = ACTIONS(8123), - [anon_sym_alignas] = ACTIONS(9051), - [anon_sym__Alignas] = ACTIONS(9051), - [sym_primitive_type] = ACTIONS(8764), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7249), - }, - [STATE(3127)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), - [anon_sym_COMMA] = ACTIONS(7641), - [anon_sym_LPAREN2] = ACTIONS(7641), - [anon_sym_DASH] = ACTIONS(7639), - [anon_sym_PLUS] = ACTIONS(7639), - [anon_sym_STAR] = ACTIONS(7639), - [anon_sym_SLASH] = ACTIONS(7639), - [anon_sym_PERCENT] = ACTIONS(7639), - [anon_sym_PIPE_PIPE] = ACTIONS(7641), - [anon_sym_AMP_AMP] = ACTIONS(7641), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_CARET] = ACTIONS(7639), - [anon_sym_AMP] = ACTIONS(7639), - [anon_sym_EQ_EQ] = ACTIONS(7641), - [anon_sym_BANG_EQ] = ACTIONS(7641), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_EQ] = ACTIONS(7639), - [anon_sym_LT_EQ] = ACTIONS(7639), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_LT_LT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(7639), - [anon_sym___extension__] = ACTIONS(7641), - [anon_sym_LBRACE] = ACTIONS(7641), - [anon_sym_LBRACK] = ACTIONS(7641), - [anon_sym_EQ] = ACTIONS(7639), - [anon_sym_const] = ACTIONS(7639), - [anon_sym_constexpr] = ACTIONS(7641), - [anon_sym_volatile] = ACTIONS(7641), - [anon_sym_restrict] = ACTIONS(7641), - [anon_sym___restrict__] = ACTIONS(7641), - [anon_sym__Atomic] = ACTIONS(7641), - [anon_sym__Noreturn] = ACTIONS(7641), - [anon_sym_noreturn] = ACTIONS(7641), - [anon_sym__Nonnull] = ACTIONS(7641), - [anon_sym_mutable] = ACTIONS(7641), - [anon_sym_constinit] = ACTIONS(7641), - [anon_sym_consteval] = ACTIONS(7641), - [anon_sym_alignas] = ACTIONS(7641), - [anon_sym__Alignas] = ACTIONS(7641), - [anon_sym_QMARK] = ACTIONS(7641), - [anon_sym_STAR_EQ] = ACTIONS(7641), - [anon_sym_SLASH_EQ] = ACTIONS(7641), - [anon_sym_PERCENT_EQ] = ACTIONS(7641), - [anon_sym_PLUS_EQ] = ACTIONS(7641), - [anon_sym_DASH_EQ] = ACTIONS(7641), - [anon_sym_LT_LT_EQ] = ACTIONS(7641), - [anon_sym_GT_GT_EQ] = ACTIONS(7639), - [anon_sym_AMP_EQ] = ACTIONS(7641), - [anon_sym_CARET_EQ] = ACTIONS(7641), - [anon_sym_PIPE_EQ] = ACTIONS(7641), - [anon_sym_and_eq] = ACTIONS(7641), - [anon_sym_or_eq] = ACTIONS(7641), - [anon_sym_xor_eq] = ACTIONS(7641), - [anon_sym_LT_EQ_GT] = ACTIONS(7641), - [anon_sym_or] = ACTIONS(7639), - [anon_sym_and] = ACTIONS(7639), - [anon_sym_bitor] = ACTIONS(7641), - [anon_sym_xor] = ACTIONS(7639), - [anon_sym_bitand] = ACTIONS(7641), - [anon_sym_not_eq] = ACTIONS(7641), - [anon_sym_DASH_DASH] = ACTIONS(7641), - [anon_sym_PLUS_PLUS] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(7639), - [anon_sym_DOT_STAR] = ACTIONS(7641), - [anon_sym_DASH_GT] = ACTIONS(7641), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7641), - [anon_sym_GT2] = ACTIONS(7641), - [anon_sym_requires] = ACTIONS(7641), - }, - [STATE(3128)] = { - [sym_template_argument_list] = STATE(2992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), - [anon_sym_COMMA] = ACTIONS(7097), - [anon_sym_RPAREN] = ACTIONS(7087), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_DASH] = ACTIONS(7092), - [anon_sym_PLUS] = ACTIONS(7092), - [anon_sym_STAR] = ACTIONS(7094), - [anon_sym_SLASH] = ACTIONS(7092), - [anon_sym_PERCENT] = ACTIONS(7092), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7087), - [anon_sym_PIPE] = ACTIONS(7092), - [anon_sym_CARET] = ACTIONS(7092), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7092), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(8695), - [anon_sym_LT_LT] = ACTIONS(7092), - [anon_sym_GT_GT] = ACTIONS(7092), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7087), - [anon_sym_EQ] = ACTIONS(7092), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_STAR_EQ] = ACTIONS(7097), - [anon_sym_SLASH_EQ] = ACTIONS(7097), - [anon_sym_PERCENT_EQ] = ACTIONS(7097), - [anon_sym_PLUS_EQ] = ACTIONS(7097), - [anon_sym_DASH_EQ] = ACTIONS(7097), - [anon_sym_LT_LT_EQ] = ACTIONS(7097), - [anon_sym_GT_GT_EQ] = ACTIONS(7097), - [anon_sym_AMP_EQ] = ACTIONS(7097), - [anon_sym_CARET_EQ] = ACTIONS(7097), - [anon_sym_PIPE_EQ] = ACTIONS(7097), - [anon_sym_and_eq] = ACTIONS(7097), - [anon_sym_or_eq] = ACTIONS(7097), - [anon_sym_xor_eq] = ACTIONS(7097), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7092), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_bitor] = ACTIONS(7097), - [anon_sym_xor] = ACTIONS(7092), - [anon_sym_bitand] = ACTIONS(7097), - [anon_sym_not_eq] = ACTIONS(7097), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7092), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7092), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7097), - }, - [STATE(3129)] = { - [sym_attribute_declaration] = STATE(3170), - [aux_sym_attributed_declarator_repeat1] = STATE(3170), - [sym_identifier] = ACTIONS(8833), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8835), - [anon_sym_COMMA] = ACTIONS(8835), - [anon_sym_RPAREN] = ACTIONS(8835), - [aux_sym_preproc_if_token2] = ACTIONS(8835), - [aux_sym_preproc_else_token1] = ACTIONS(8835), - [aux_sym_preproc_elif_token1] = ACTIONS(8833), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8835), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8835), - [anon_sym_LPAREN2] = ACTIONS(8835), - [anon_sym_DASH] = ACTIONS(8833), - [anon_sym_PLUS] = ACTIONS(8833), - [anon_sym_STAR] = ACTIONS(8833), - [anon_sym_SLASH] = ACTIONS(8833), - [anon_sym_PERCENT] = ACTIONS(8833), - [anon_sym_PIPE_PIPE] = ACTIONS(8835), - [anon_sym_AMP_AMP] = ACTIONS(8835), - [anon_sym_PIPE] = ACTIONS(8833), - [anon_sym_CARET] = ACTIONS(8833), - [anon_sym_AMP] = ACTIONS(8833), - [anon_sym_EQ_EQ] = ACTIONS(8835), - [anon_sym_BANG_EQ] = ACTIONS(8835), - [anon_sym_GT] = ACTIONS(8833), - [anon_sym_GT_EQ] = ACTIONS(8835), - [anon_sym_LT_EQ] = ACTIONS(8833), - [anon_sym_LT] = ACTIONS(8833), - [anon_sym_LT_LT] = ACTIONS(8833), - [anon_sym_GT_GT] = ACTIONS(8833), - [anon_sym_SEMI] = ACTIONS(8835), - [anon_sym___attribute__] = ACTIONS(8833), - [anon_sym___attribute] = ACTIONS(8833), - [anon_sym_COLON] = ACTIONS(8833), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8835), - [anon_sym_RBRACE] = ACTIONS(8835), - [anon_sym_LBRACK] = ACTIONS(8833), - [anon_sym_EQ] = ACTIONS(8833), - [anon_sym_QMARK] = ACTIONS(8835), - [anon_sym_STAR_EQ] = ACTIONS(8835), - [anon_sym_SLASH_EQ] = ACTIONS(8835), - [anon_sym_PERCENT_EQ] = ACTIONS(8835), - [anon_sym_PLUS_EQ] = ACTIONS(8835), - [anon_sym_DASH_EQ] = ACTIONS(8835), - [anon_sym_LT_LT_EQ] = ACTIONS(8835), - [anon_sym_GT_GT_EQ] = ACTIONS(8835), - [anon_sym_AMP_EQ] = ACTIONS(8835), - [anon_sym_CARET_EQ] = ACTIONS(8835), - [anon_sym_PIPE_EQ] = ACTIONS(8835), - [anon_sym_and_eq] = ACTIONS(8833), - [anon_sym_or_eq] = ACTIONS(8833), - [anon_sym_xor_eq] = ACTIONS(8833), - [anon_sym_LT_EQ_GT] = ACTIONS(8835), - [anon_sym_or] = ACTIONS(8833), - [anon_sym_and] = ACTIONS(8833), - [anon_sym_bitor] = ACTIONS(8833), - [anon_sym_xor] = ACTIONS(8833), - [anon_sym_bitand] = ACTIONS(8833), - [anon_sym_not_eq] = ACTIONS(8833), - [anon_sym_DASH_DASH] = ACTIONS(8835), - [anon_sym_PLUS_PLUS] = ACTIONS(8835), - [anon_sym_DOT] = ACTIONS(8833), - [anon_sym_DOT_STAR] = ACTIONS(8835), - [anon_sym_DASH_GT] = ACTIONS(8835), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8833), - [anon_sym_override] = ACTIONS(8833), - [anon_sym_requires] = ACTIONS(8833), - [anon_sym_COLON_RBRACK] = ACTIONS(8835), - }, - [STATE(3130)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), - [anon_sym_COMMA] = ACTIONS(7661), - [anon_sym_LPAREN2] = ACTIONS(7661), - [anon_sym_DASH] = ACTIONS(7659), - [anon_sym_PLUS] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7659), - [anon_sym_SLASH] = ACTIONS(7659), - [anon_sym_PERCENT] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7661), - [anon_sym_AMP_AMP] = ACTIONS(7661), - [anon_sym_PIPE] = ACTIONS(7659), - [anon_sym_CARET] = ACTIONS(7659), - [anon_sym_AMP] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7661), - [anon_sym_BANG_EQ] = ACTIONS(7661), - [anon_sym_GT] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7661), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_LT] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7659), - [anon_sym_GT_GT] = ACTIONS(7659), - [anon_sym___extension__] = ACTIONS(7661), - [anon_sym_LBRACE] = ACTIONS(7661), - [anon_sym_LBRACK] = ACTIONS(7661), - [anon_sym_RBRACK] = ACTIONS(7661), - [anon_sym_EQ] = ACTIONS(7659), - [anon_sym_const] = ACTIONS(7659), - [anon_sym_constexpr] = ACTIONS(7661), - [anon_sym_volatile] = ACTIONS(7661), - [anon_sym_restrict] = ACTIONS(7661), - [anon_sym___restrict__] = ACTIONS(7661), - [anon_sym__Atomic] = ACTIONS(7661), - [anon_sym__Noreturn] = ACTIONS(7661), - [anon_sym_noreturn] = ACTIONS(7661), - [anon_sym__Nonnull] = ACTIONS(7661), - [anon_sym_mutable] = ACTIONS(7661), - [anon_sym_constinit] = ACTIONS(7661), - [anon_sym_consteval] = ACTIONS(7661), - [anon_sym_alignas] = ACTIONS(7661), - [anon_sym__Alignas] = ACTIONS(7661), - [anon_sym_QMARK] = ACTIONS(7661), - [anon_sym_STAR_EQ] = ACTIONS(7661), - [anon_sym_SLASH_EQ] = ACTIONS(7661), - [anon_sym_PERCENT_EQ] = ACTIONS(7661), - [anon_sym_PLUS_EQ] = ACTIONS(7661), - [anon_sym_DASH_EQ] = ACTIONS(7661), - [anon_sym_LT_LT_EQ] = ACTIONS(7661), - [anon_sym_GT_GT_EQ] = ACTIONS(7661), - [anon_sym_AMP_EQ] = ACTIONS(7661), - [anon_sym_CARET_EQ] = ACTIONS(7661), - [anon_sym_PIPE_EQ] = ACTIONS(7661), - [anon_sym_and_eq] = ACTIONS(7661), - [anon_sym_or_eq] = ACTIONS(7661), - [anon_sym_xor_eq] = ACTIONS(7661), - [anon_sym_LT_EQ_GT] = ACTIONS(7661), - [anon_sym_or] = ACTIONS(7659), - [anon_sym_and] = ACTIONS(7659), - [anon_sym_bitor] = ACTIONS(7661), - [anon_sym_xor] = ACTIONS(7659), - [anon_sym_bitand] = ACTIONS(7661), - [anon_sym_not_eq] = ACTIONS(7661), - [anon_sym_DASH_DASH] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7661), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym_DOT_STAR] = ACTIONS(7661), - [anon_sym_DASH_GT] = ACTIONS(7661), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7661), - [anon_sym_override] = ACTIONS(7661), - [anon_sym_requires] = ACTIONS(7661), - }, - [STATE(3131)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6605), - [anon_sym_PERCENT] = ACTIONS(6605), - [anon_sym_PIPE_PIPE] = ACTIONS(6598), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6605), - [anon_sym_CARET] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_BANG_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6605), - [anon_sym_GT_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(6605), - [anon_sym_LT_LT] = ACTIONS(6605), - [anon_sym_GT_GT] = ACTIONS(6605), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_RBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6598), - [anon_sym_STAR_EQ] = ACTIONS(6598), - [anon_sym_SLASH_EQ] = ACTIONS(6598), - [anon_sym_PERCENT_EQ] = ACTIONS(6598), - [anon_sym_PLUS_EQ] = ACTIONS(6598), - [anon_sym_DASH_EQ] = ACTIONS(6598), - [anon_sym_LT_LT_EQ] = ACTIONS(6598), - [anon_sym_GT_GT_EQ] = ACTIONS(6598), - [anon_sym_AMP_EQ] = ACTIONS(6598), - [anon_sym_CARET_EQ] = ACTIONS(6598), - [anon_sym_PIPE_EQ] = ACTIONS(6598), - [anon_sym_and_eq] = ACTIONS(6598), - [anon_sym_or_eq] = ACTIONS(6598), - [anon_sym_xor_eq] = ACTIONS(6598), - [anon_sym_LT_EQ_GT] = ACTIONS(6598), - [anon_sym_or] = ACTIONS(6605), - [anon_sym_and] = ACTIONS(6605), - [anon_sym_bitor] = ACTIONS(6598), - [anon_sym_xor] = ACTIONS(6605), - [anon_sym_bitand] = ACTIONS(6598), - [anon_sym_not_eq] = ACTIONS(6598), - [anon_sym_DASH_DASH] = ACTIONS(6598), - [anon_sym_PLUS_PLUS] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6605), - [anon_sym_DOT_STAR] = ACTIONS(6598), - [anon_sym_DASH_GT] = ACTIONS(6598), + [STATE(3100)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7751), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7751), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_EQ_EQ] = ACTIONS(7753), + [anon_sym_BANG_EQ] = ACTIONS(7753), + [anon_sym_GT] = ACTIONS(7751), + [anon_sym_GT_EQ] = ACTIONS(7753), + [anon_sym_LT_EQ] = ACTIONS(7751), + [anon_sym_LT] = ACTIONS(7751), + [anon_sym_LT_LT] = ACTIONS(7751), + [anon_sym_GT_GT] = ACTIONS(7751), + [anon_sym___extension__] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_RBRACK] = ACTIONS(7753), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7753), + [anon_sym_volatile] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7753), + [anon_sym___restrict__] = ACTIONS(7753), + [anon_sym__Atomic] = ACTIONS(7753), + [anon_sym__Noreturn] = ACTIONS(7753), + [anon_sym_noreturn] = ACTIONS(7753), + [anon_sym__Nonnull] = ACTIONS(7753), + [anon_sym_mutable] = ACTIONS(7753), + [anon_sym_constinit] = ACTIONS(7753), + [anon_sym_consteval] = ACTIONS(7753), + [anon_sym_alignas] = ACTIONS(7753), + [anon_sym__Alignas] = ACTIONS(7753), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_STAR_EQ] = ACTIONS(7753), + [anon_sym_SLASH_EQ] = ACTIONS(7753), + [anon_sym_PERCENT_EQ] = ACTIONS(7753), + [anon_sym_PLUS_EQ] = ACTIONS(7753), + [anon_sym_DASH_EQ] = ACTIONS(7753), + [anon_sym_LT_LT_EQ] = ACTIONS(7753), + [anon_sym_GT_GT_EQ] = ACTIONS(7753), + [anon_sym_AMP_EQ] = ACTIONS(7753), + [anon_sym_CARET_EQ] = ACTIONS(7753), + [anon_sym_PIPE_EQ] = ACTIONS(7753), + [anon_sym_and_eq] = ACTIONS(7753), + [anon_sym_or_eq] = ACTIONS(7753), + [anon_sym_xor_eq] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7753), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7753), + [anon_sym_not_eq] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_DOT] = ACTIONS(7751), + [anon_sym_DOT_STAR] = ACTIONS(7753), + [anon_sym_DASH_GT] = ACTIONS(7753), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - }, - [STATE(3132)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), - [anon_sym_COMMA] = ACTIONS(7657), - [anon_sym_LPAREN2] = ACTIONS(7657), - [anon_sym_DASH] = ACTIONS(7655), - [anon_sym_PLUS] = ACTIONS(7655), - [anon_sym_STAR] = ACTIONS(7655), - [anon_sym_SLASH] = ACTIONS(7655), - [anon_sym_PERCENT] = ACTIONS(7655), - [anon_sym_PIPE_PIPE] = ACTIONS(7657), - [anon_sym_AMP_AMP] = ACTIONS(7657), - [anon_sym_PIPE] = ACTIONS(7655), - [anon_sym_CARET] = ACTIONS(7655), - [anon_sym_AMP] = ACTIONS(7655), - [anon_sym_EQ_EQ] = ACTIONS(7657), - [anon_sym_BANG_EQ] = ACTIONS(7657), - [anon_sym_GT] = ACTIONS(7655), - [anon_sym_GT_EQ] = ACTIONS(7655), - [anon_sym_LT_EQ] = ACTIONS(7655), - [anon_sym_LT] = ACTIONS(7655), - [anon_sym_LT_LT] = ACTIONS(7655), - [anon_sym_GT_GT] = ACTIONS(7655), - [anon_sym___extension__] = ACTIONS(7657), - [anon_sym_LBRACE] = ACTIONS(7657), - [anon_sym_LBRACK] = ACTIONS(7657), - [anon_sym_EQ] = ACTIONS(7655), - [anon_sym_const] = ACTIONS(7655), - [anon_sym_constexpr] = ACTIONS(7657), - [anon_sym_volatile] = ACTIONS(7657), - [anon_sym_restrict] = ACTIONS(7657), - [anon_sym___restrict__] = ACTIONS(7657), - [anon_sym__Atomic] = ACTIONS(7657), - [anon_sym__Noreturn] = ACTIONS(7657), - [anon_sym_noreturn] = ACTIONS(7657), - [anon_sym__Nonnull] = ACTIONS(7657), - [anon_sym_mutable] = ACTIONS(7657), - [anon_sym_constinit] = ACTIONS(7657), - [anon_sym_consteval] = ACTIONS(7657), - [anon_sym_alignas] = ACTIONS(7657), - [anon_sym__Alignas] = ACTIONS(7657), - [anon_sym_QMARK] = ACTIONS(7657), - [anon_sym_STAR_EQ] = ACTIONS(7657), - [anon_sym_SLASH_EQ] = ACTIONS(7657), - [anon_sym_PERCENT_EQ] = ACTIONS(7657), - [anon_sym_PLUS_EQ] = ACTIONS(7657), - [anon_sym_DASH_EQ] = ACTIONS(7657), - [anon_sym_LT_LT_EQ] = ACTIONS(7657), - [anon_sym_GT_GT_EQ] = ACTIONS(7655), - [anon_sym_AMP_EQ] = ACTIONS(7657), - [anon_sym_CARET_EQ] = ACTIONS(7657), - [anon_sym_PIPE_EQ] = ACTIONS(7657), - [anon_sym_and_eq] = ACTIONS(7657), - [anon_sym_or_eq] = ACTIONS(7657), - [anon_sym_xor_eq] = ACTIONS(7657), - [anon_sym_LT_EQ_GT] = ACTIONS(7657), - [anon_sym_or] = ACTIONS(7655), - [anon_sym_and] = ACTIONS(7655), - [anon_sym_bitor] = ACTIONS(7657), - [anon_sym_xor] = ACTIONS(7655), - [anon_sym_bitand] = ACTIONS(7657), - [anon_sym_not_eq] = ACTIONS(7657), - [anon_sym_DASH_DASH] = ACTIONS(7657), - [anon_sym_PLUS_PLUS] = ACTIONS(7657), - [anon_sym_DOT] = ACTIONS(7655), - [anon_sym_DOT_STAR] = ACTIONS(7657), - [anon_sym_DASH_GT] = ACTIONS(7657), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7657), - [anon_sym_override] = ACTIONS(7657), - [anon_sym_GT2] = ACTIONS(7657), - [anon_sym_requires] = ACTIONS(7657), - }, - [STATE(3133)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7561), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7561), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7563), - [anon_sym_or_eq] = ACTIONS(7563), - [anon_sym_xor_eq] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_GT2] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), - }, - [STATE(3134)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), - [anon_sym_COMMA] = ACTIONS(7773), - [anon_sym_LPAREN2] = ACTIONS(7773), - [anon_sym_DASH] = ACTIONS(7771), - [anon_sym_PLUS] = ACTIONS(7771), - [anon_sym_STAR] = ACTIONS(7771), - [anon_sym_SLASH] = ACTIONS(7771), - [anon_sym_PERCENT] = ACTIONS(7771), - [anon_sym_PIPE_PIPE] = ACTIONS(7773), - [anon_sym_AMP_AMP] = ACTIONS(7773), - [anon_sym_PIPE] = ACTIONS(7771), - [anon_sym_CARET] = ACTIONS(7771), - [anon_sym_AMP] = ACTIONS(7771), - [anon_sym_EQ_EQ] = ACTIONS(7773), - [anon_sym_BANG_EQ] = ACTIONS(7773), - [anon_sym_GT] = ACTIONS(7771), - [anon_sym_GT_EQ] = ACTIONS(7773), - [anon_sym_LT_EQ] = ACTIONS(7771), - [anon_sym_LT] = ACTIONS(7771), - [anon_sym_LT_LT] = ACTIONS(7771), - [anon_sym_GT_GT] = ACTIONS(7771), - [anon_sym___extension__] = ACTIONS(7773), - [anon_sym_LBRACE] = ACTIONS(7773), - [anon_sym_LBRACK] = ACTIONS(7773), - [anon_sym_RBRACK] = ACTIONS(7773), - [anon_sym_EQ] = ACTIONS(7771), - [anon_sym_const] = ACTIONS(7771), - [anon_sym_constexpr] = ACTIONS(7773), - [anon_sym_volatile] = ACTIONS(7773), - [anon_sym_restrict] = ACTIONS(7773), - [anon_sym___restrict__] = ACTIONS(7773), - [anon_sym__Atomic] = ACTIONS(7773), - [anon_sym__Noreturn] = ACTIONS(7773), - [anon_sym_noreturn] = ACTIONS(7773), - [anon_sym__Nonnull] = ACTIONS(7773), - [anon_sym_mutable] = ACTIONS(7773), - [anon_sym_constinit] = ACTIONS(7773), - [anon_sym_consteval] = ACTIONS(7773), - [anon_sym_alignas] = ACTIONS(7773), - [anon_sym__Alignas] = ACTIONS(7773), - [anon_sym_QMARK] = ACTIONS(7773), - [anon_sym_STAR_EQ] = ACTIONS(7773), - [anon_sym_SLASH_EQ] = ACTIONS(7773), - [anon_sym_PERCENT_EQ] = ACTIONS(7773), - [anon_sym_PLUS_EQ] = ACTIONS(7773), - [anon_sym_DASH_EQ] = ACTIONS(7773), - [anon_sym_LT_LT_EQ] = ACTIONS(7773), - [anon_sym_GT_GT_EQ] = ACTIONS(7773), - [anon_sym_AMP_EQ] = ACTIONS(7773), - [anon_sym_CARET_EQ] = ACTIONS(7773), - [anon_sym_PIPE_EQ] = ACTIONS(7773), - [anon_sym_and_eq] = ACTIONS(7773), - [anon_sym_or_eq] = ACTIONS(7773), - [anon_sym_xor_eq] = ACTIONS(7773), - [anon_sym_LT_EQ_GT] = ACTIONS(7773), - [anon_sym_or] = ACTIONS(7771), - [anon_sym_and] = ACTIONS(7771), - [anon_sym_bitor] = ACTIONS(7773), - [anon_sym_xor] = ACTIONS(7771), - [anon_sym_bitand] = ACTIONS(7773), - [anon_sym_not_eq] = ACTIONS(7773), - [anon_sym_DASH_DASH] = ACTIONS(7773), - [anon_sym_PLUS_PLUS] = ACTIONS(7773), - [anon_sym_DOT] = ACTIONS(7771), - [anon_sym_DOT_STAR] = ACTIONS(7773), - [anon_sym_DASH_GT] = ACTIONS(7773), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7773), - [anon_sym_override] = ACTIONS(7773), - [anon_sym_requires] = ACTIONS(7773), - }, - [STATE(3135)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), - [anon_sym_COMMA] = ACTIONS(7649), - [anon_sym_RPAREN] = ACTIONS(7649), - [anon_sym_LPAREN2] = ACTIONS(7649), - [anon_sym_DASH] = ACTIONS(7647), - [anon_sym_PLUS] = ACTIONS(7647), - [anon_sym_STAR] = ACTIONS(7647), - [anon_sym_SLASH] = ACTIONS(7647), - [anon_sym_PERCENT] = ACTIONS(7647), - [anon_sym_PIPE_PIPE] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7649), - [anon_sym_PIPE] = ACTIONS(7647), - [anon_sym_CARET] = ACTIONS(7647), - [anon_sym_AMP] = ACTIONS(7647), - [anon_sym_EQ_EQ] = ACTIONS(7649), - [anon_sym_BANG_EQ] = ACTIONS(7649), - [anon_sym_GT] = ACTIONS(7647), - [anon_sym_GT_EQ] = ACTIONS(7649), - [anon_sym_LT_EQ] = ACTIONS(7647), - [anon_sym_LT] = ACTIONS(7647), - [anon_sym_LT_LT] = ACTIONS(7647), - [anon_sym_GT_GT] = ACTIONS(7647), - [anon_sym___extension__] = ACTIONS(7649), - [anon_sym___attribute__] = ACTIONS(7649), - [anon_sym___attribute] = ACTIONS(7647), - [anon_sym_LBRACE] = ACTIONS(7649), - [anon_sym_LBRACK] = ACTIONS(7649), - [anon_sym_EQ] = ACTIONS(7647), - [anon_sym_const] = ACTIONS(7647), - [anon_sym_constexpr] = ACTIONS(7649), - [anon_sym_volatile] = ACTIONS(7649), - [anon_sym_restrict] = ACTIONS(7649), - [anon_sym___restrict__] = ACTIONS(7649), - [anon_sym__Atomic] = ACTIONS(7649), - [anon_sym__Noreturn] = ACTIONS(7649), - [anon_sym_noreturn] = ACTIONS(7649), - [anon_sym__Nonnull] = ACTIONS(7649), - [anon_sym_mutable] = ACTIONS(7649), - [anon_sym_constinit] = ACTIONS(7649), - [anon_sym_consteval] = ACTIONS(7649), - [anon_sym_alignas] = ACTIONS(7649), - [anon_sym__Alignas] = ACTIONS(7649), - [anon_sym_QMARK] = ACTIONS(7649), - [anon_sym_STAR_EQ] = ACTIONS(7649), - [anon_sym_SLASH_EQ] = ACTIONS(7649), - [anon_sym_PERCENT_EQ] = ACTIONS(7649), - [anon_sym_PLUS_EQ] = ACTIONS(7649), - [anon_sym_DASH_EQ] = ACTIONS(7649), - [anon_sym_LT_LT_EQ] = ACTIONS(7649), - [anon_sym_GT_GT_EQ] = ACTIONS(7649), - [anon_sym_AMP_EQ] = ACTIONS(7649), - [anon_sym_CARET_EQ] = ACTIONS(7649), - [anon_sym_PIPE_EQ] = ACTIONS(7649), - [anon_sym_LT_EQ_GT] = ACTIONS(7649), - [anon_sym_or] = ACTIONS(7649), - [anon_sym_and] = ACTIONS(7649), - [anon_sym_bitor] = ACTIONS(7649), - [anon_sym_xor] = ACTIONS(7649), - [anon_sym_bitand] = ACTIONS(7649), - [anon_sym_not_eq] = ACTIONS(7649), - [anon_sym_DASH_DASH] = ACTIONS(7649), - [anon_sym_PLUS_PLUS] = ACTIONS(7649), - [anon_sym_DOT] = ACTIONS(7647), - [anon_sym_DOT_STAR] = ACTIONS(7649), - [anon_sym_DASH_GT] = ACTIONS(7647), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7649), - [anon_sym_override] = ACTIONS(7649), - [anon_sym_requires] = ACTIONS(7649), - [anon_sym_DASH_GT_STAR] = ACTIONS(7649), + [anon_sym_final] = ACTIONS(7753), + [anon_sym_override] = ACTIONS(7753), + [anon_sym_requires] = ACTIONS(7753), }, - [STATE(3136)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), - [anon_sym_COMMA] = ACTIONS(7665), - [anon_sym_LPAREN2] = ACTIONS(7665), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_STAR] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7663), - [anon_sym_PERCENT] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7665), - [anon_sym_AMP_AMP] = ACTIONS(7665), - [anon_sym_PIPE] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7663), - [anon_sym_AMP] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7665), - [anon_sym_BANG_EQ] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7663), - [anon_sym_GT_EQ] = ACTIONS(7663), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_LT] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7663), - [anon_sym_GT_GT] = ACTIONS(7663), - [anon_sym___extension__] = ACTIONS(7665), - [anon_sym_LBRACE] = ACTIONS(7665), - [anon_sym_LBRACK] = ACTIONS(7665), - [anon_sym_EQ] = ACTIONS(7663), - [anon_sym_const] = ACTIONS(7663), - [anon_sym_constexpr] = ACTIONS(7665), - [anon_sym_volatile] = ACTIONS(7665), - [anon_sym_restrict] = ACTIONS(7665), - [anon_sym___restrict__] = ACTIONS(7665), - [anon_sym__Atomic] = ACTIONS(7665), - [anon_sym__Noreturn] = ACTIONS(7665), - [anon_sym_noreturn] = ACTIONS(7665), - [anon_sym__Nonnull] = ACTIONS(7665), - [anon_sym_mutable] = ACTIONS(7665), - [anon_sym_constinit] = ACTIONS(7665), - [anon_sym_consteval] = ACTIONS(7665), - [anon_sym_alignas] = ACTIONS(7665), - [anon_sym__Alignas] = ACTIONS(7665), - [anon_sym_QMARK] = ACTIONS(7665), - [anon_sym_STAR_EQ] = ACTIONS(7665), - [anon_sym_SLASH_EQ] = ACTIONS(7665), - [anon_sym_PERCENT_EQ] = ACTIONS(7665), - [anon_sym_PLUS_EQ] = ACTIONS(7665), - [anon_sym_DASH_EQ] = ACTIONS(7665), - [anon_sym_LT_LT_EQ] = ACTIONS(7665), - [anon_sym_GT_GT_EQ] = ACTIONS(7663), - [anon_sym_AMP_EQ] = ACTIONS(7665), - [anon_sym_CARET_EQ] = ACTIONS(7665), - [anon_sym_PIPE_EQ] = ACTIONS(7665), - [anon_sym_and_eq] = ACTIONS(7665), - [anon_sym_or_eq] = ACTIONS(7665), - [anon_sym_xor_eq] = ACTIONS(7665), - [anon_sym_LT_EQ_GT] = ACTIONS(7665), - [anon_sym_or] = ACTIONS(7663), - [anon_sym_and] = ACTIONS(7663), - [anon_sym_bitor] = ACTIONS(7665), - [anon_sym_xor] = ACTIONS(7663), - [anon_sym_bitand] = ACTIONS(7665), - [anon_sym_not_eq] = ACTIONS(7665), - [anon_sym_DASH_DASH] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7665), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym_DOT_STAR] = ACTIONS(7665), - [anon_sym_DASH_GT] = ACTIONS(7665), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7665), - [anon_sym_override] = ACTIONS(7665), - [anon_sym_GT2] = ACTIONS(7665), - [anon_sym_requires] = ACTIONS(7665), + [STATE(3101)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), }, - [STATE(3137)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6605), - [anon_sym_PERCENT] = ACTIONS(6605), - [anon_sym_PIPE_PIPE] = ACTIONS(6598), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6605), - [anon_sym_CARET] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_BANG_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6605), - [anon_sym_GT_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(6605), - [anon_sym_LT_LT] = ACTIONS(6605), - [anon_sym_GT_GT] = ACTIONS(6605), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_RBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6603), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6598), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6596), - [anon_sym_or_eq] = ACTIONS(6596), - [anon_sym_xor_eq] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6598), - [anon_sym_or] = ACTIONS(6605), - [anon_sym_and] = ACTIONS(6605), - [anon_sym_bitor] = ACTIONS(6598), - [anon_sym_xor] = ACTIONS(6605), - [anon_sym_bitand] = ACTIONS(6598), - [anon_sym_not_eq] = ACTIONS(6598), - [anon_sym_DASH_DASH] = ACTIONS(6598), - [anon_sym_PLUS_PLUS] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6605), - [anon_sym_DOT_STAR] = ACTIONS(6598), - [anon_sym_DASH_GT] = ACTIONS(6598), + [STATE(3102)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7763), + [anon_sym_COMMA] = ACTIONS(7763), + [anon_sym_LPAREN2] = ACTIONS(7763), + [anon_sym_DASH] = ACTIONS(7761), + [anon_sym_PLUS] = ACTIONS(7761), + [anon_sym_STAR] = ACTIONS(7761), + [anon_sym_SLASH] = ACTIONS(7761), + [anon_sym_PERCENT] = ACTIONS(7761), + [anon_sym_PIPE_PIPE] = ACTIONS(7763), + [anon_sym_AMP_AMP] = ACTIONS(7763), + [anon_sym_PIPE] = ACTIONS(7761), + [anon_sym_CARET] = ACTIONS(7761), + [anon_sym_AMP] = ACTIONS(7761), + [anon_sym_EQ_EQ] = ACTIONS(7763), + [anon_sym_BANG_EQ] = ACTIONS(7763), + [anon_sym_GT] = ACTIONS(7761), + [anon_sym_GT_EQ] = ACTIONS(7763), + [anon_sym_LT_EQ] = ACTIONS(7761), + [anon_sym_LT] = ACTIONS(7761), + [anon_sym_LT_LT] = ACTIONS(7761), + [anon_sym_GT_GT] = ACTIONS(7761), + [anon_sym___extension__] = ACTIONS(7763), + [anon_sym_LBRACE] = ACTIONS(7763), + [anon_sym_LBRACK] = ACTIONS(7763), + [anon_sym_RBRACK] = ACTIONS(7763), + [anon_sym_EQ] = ACTIONS(7761), + [anon_sym_const] = ACTIONS(7761), + [anon_sym_constexpr] = ACTIONS(7763), + [anon_sym_volatile] = ACTIONS(7763), + [anon_sym_restrict] = ACTIONS(7763), + [anon_sym___restrict__] = ACTIONS(7763), + [anon_sym__Atomic] = ACTIONS(7763), + [anon_sym__Noreturn] = ACTIONS(7763), + [anon_sym_noreturn] = ACTIONS(7763), + [anon_sym__Nonnull] = ACTIONS(7763), + [anon_sym_mutable] = ACTIONS(7763), + [anon_sym_constinit] = ACTIONS(7763), + [anon_sym_consteval] = ACTIONS(7763), + [anon_sym_alignas] = ACTIONS(7763), + [anon_sym__Alignas] = ACTIONS(7763), + [anon_sym_QMARK] = ACTIONS(7763), + [anon_sym_STAR_EQ] = ACTIONS(7763), + [anon_sym_SLASH_EQ] = ACTIONS(7763), + [anon_sym_PERCENT_EQ] = ACTIONS(7763), + [anon_sym_PLUS_EQ] = ACTIONS(7763), + [anon_sym_DASH_EQ] = ACTIONS(7763), + [anon_sym_LT_LT_EQ] = ACTIONS(7763), + [anon_sym_GT_GT_EQ] = ACTIONS(7763), + [anon_sym_AMP_EQ] = ACTIONS(7763), + [anon_sym_CARET_EQ] = ACTIONS(7763), + [anon_sym_PIPE_EQ] = ACTIONS(7763), + [anon_sym_and_eq] = ACTIONS(7763), + [anon_sym_or_eq] = ACTIONS(7763), + [anon_sym_xor_eq] = ACTIONS(7763), + [anon_sym_LT_EQ_GT] = ACTIONS(7763), + [anon_sym_or] = ACTIONS(7761), + [anon_sym_and] = ACTIONS(7761), + [anon_sym_bitor] = ACTIONS(7763), + [anon_sym_xor] = ACTIONS(7761), + [anon_sym_bitand] = ACTIONS(7763), + [anon_sym_not_eq] = ACTIONS(7763), + [anon_sym_DASH_DASH] = ACTIONS(7763), + [anon_sym_PLUS_PLUS] = ACTIONS(7763), + [anon_sym_DOT] = ACTIONS(7761), + [anon_sym_DOT_STAR] = ACTIONS(7763), + [anon_sym_DASH_GT] = ACTIONS(7763), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - }, - [STATE(3138)] = { - [sym_type_qualifier] = STATE(3138), - [sym_alignas_qualifier] = STATE(3497), - [aux_sym__type_definition_type_repeat1] = STATE(3138), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_RPAREN] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_TILDE] = ACTIONS(6891), - [anon_sym_STAR] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_SEMI] = ACTIONS(6891), - [anon_sym___extension__] = ACTIONS(9053), - [anon_sym_virtual] = ACTIONS(6889), - [anon_sym_extern] = ACTIONS(6889), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_COLON_COLON] = ACTIONS(6891), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), - [anon_sym___declspec] = ACTIONS(6889), - [anon_sym___based] = ACTIONS(6889), - [anon_sym___cdecl] = ACTIONS(6889), - [anon_sym___clrcall] = ACTIONS(6889), - [anon_sym___stdcall] = ACTIONS(6889), - [anon_sym___fastcall] = ACTIONS(6889), - [anon_sym___thiscall] = ACTIONS(6889), - [anon_sym___vectorcall] = ACTIONS(6889), - [anon_sym_LBRACE] = ACTIONS(6891), - [anon_sym_signed] = ACTIONS(6889), - [anon_sym_unsigned] = ACTIONS(6889), - [anon_sym_long] = ACTIONS(6889), - [anon_sym_short] = ACTIONS(6889), - [anon_sym_LBRACK] = ACTIONS(6889), - [anon_sym_static] = ACTIONS(6889), - [anon_sym_EQ] = ACTIONS(6891), - [anon_sym_register] = ACTIONS(6889), - [anon_sym_inline] = ACTIONS(6889), - [anon_sym___inline] = ACTIONS(6889), - [anon_sym___inline__] = ACTIONS(6889), - [anon_sym___forceinline] = ACTIONS(6889), - [anon_sym_thread_local] = ACTIONS(6889), - [anon_sym___thread] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(9053), - [anon_sym_constexpr] = ACTIONS(9053), - [anon_sym_volatile] = ACTIONS(9053), - [anon_sym_restrict] = ACTIONS(9053), - [anon_sym___restrict__] = ACTIONS(9053), - [anon_sym__Atomic] = ACTIONS(9053), - [anon_sym__Noreturn] = ACTIONS(9053), - [anon_sym_noreturn] = ACTIONS(9053), - [anon_sym__Nonnull] = ACTIONS(9053), - [anon_sym_mutable] = ACTIONS(9053), - [anon_sym_constinit] = ACTIONS(9053), - [anon_sym_consteval] = ACTIONS(9053), - [anon_sym_alignas] = ACTIONS(9056), - [anon_sym__Alignas] = ACTIONS(9056), - [sym_primitive_type] = ACTIONS(6889), - [anon_sym_enum] = ACTIONS(6889), - [anon_sym_class] = ACTIONS(6889), - [anon_sym_struct] = ACTIONS(6889), - [anon_sym_union] = ACTIONS(6889), - [anon_sym_typename] = ACTIONS(6889), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6889), - [anon_sym_decltype] = ACTIONS(6889), - [anon_sym_template] = ACTIONS(6889), - [anon_sym_GT2] = ACTIONS(6891), - [anon_sym_operator] = ACTIONS(6889), - [anon_sym_LBRACK_COLON] = ACTIONS(6891), + [anon_sym_final] = ACTIONS(7763), + [anon_sym_override] = ACTIONS(7763), + [anon_sym_requires] = ACTIONS(7763), }, - [STATE(3139)] = { - [sym_identifier] = ACTIONS(7767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), - [anon_sym_COMMA] = ACTIONS(7769), - [anon_sym_RPAREN] = ACTIONS(7769), - [anon_sym_LPAREN2] = ACTIONS(7769), - [anon_sym_DASH] = ACTIONS(7767), - [anon_sym_PLUS] = ACTIONS(7767), - [anon_sym_STAR] = ACTIONS(7769), - [anon_sym_SLASH] = ACTIONS(7767), - [anon_sym_PERCENT] = ACTIONS(7769), - [anon_sym_PIPE_PIPE] = ACTIONS(7769), - [anon_sym_AMP_AMP] = ACTIONS(7769), - [anon_sym_PIPE] = ACTIONS(7767), - [anon_sym_CARET] = ACTIONS(7769), - [anon_sym_AMP] = ACTIONS(7767), - [anon_sym_EQ_EQ] = ACTIONS(7769), - [anon_sym_BANG_EQ] = ACTIONS(7769), - [anon_sym_GT] = ACTIONS(7767), - [anon_sym_GT_EQ] = ACTIONS(7769), - [anon_sym_LT_EQ] = ACTIONS(7767), - [anon_sym_LT] = ACTIONS(7767), - [anon_sym_LT_LT] = ACTIONS(7769), - [anon_sym_GT_GT] = ACTIONS(7769), - [anon_sym_SEMI] = ACTIONS(7769), + [STATE(3103)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7767), + [anon_sym_COMMA] = ACTIONS(7767), + [anon_sym_LPAREN2] = ACTIONS(7767), + [anon_sym_DASH] = ACTIONS(7765), + [anon_sym_PLUS] = ACTIONS(7765), + [anon_sym_STAR] = ACTIONS(7765), + [anon_sym_SLASH] = ACTIONS(7765), + [anon_sym_PERCENT] = ACTIONS(7765), + [anon_sym_PIPE_PIPE] = ACTIONS(7767), + [anon_sym_AMP_AMP] = ACTIONS(7767), + [anon_sym_PIPE] = ACTIONS(7765), + [anon_sym_CARET] = ACTIONS(7765), + [anon_sym_AMP] = ACTIONS(7765), + [anon_sym_EQ_EQ] = ACTIONS(7767), + [anon_sym_BANG_EQ] = ACTIONS(7767), + [anon_sym_GT] = ACTIONS(7765), + [anon_sym_GT_EQ] = ACTIONS(7767), + [anon_sym_LT_EQ] = ACTIONS(7765), + [anon_sym_LT] = ACTIONS(7765), + [anon_sym_LT_LT] = ACTIONS(7765), + [anon_sym_GT_GT] = ACTIONS(7765), [anon_sym___extension__] = ACTIONS(7767), - [anon_sym___attribute__] = ACTIONS(7767), - [anon_sym___attribute] = ACTIONS(7767), - [anon_sym_COLON] = ACTIONS(7767), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7769), - [anon_sym___based] = ACTIONS(7767), - [anon_sym_LBRACE] = ACTIONS(7769), - [anon_sym_RBRACE] = ACTIONS(7769), - [anon_sym_signed] = ACTIONS(7767), - [anon_sym_unsigned] = ACTIONS(7767), - [anon_sym_long] = ACTIONS(7767), - [anon_sym_short] = ACTIONS(7767), - [anon_sym_LBRACK] = ACTIONS(7769), - [anon_sym_const] = ACTIONS(7767), + [anon_sym_LBRACE] = ACTIONS(7767), + [anon_sym_LBRACK] = ACTIONS(7767), + [anon_sym_RBRACK] = ACTIONS(7767), + [anon_sym_EQ] = ACTIONS(7765), + [anon_sym_const] = ACTIONS(7765), [anon_sym_constexpr] = ACTIONS(7767), [anon_sym_volatile] = ACTIONS(7767), [anon_sym_restrict] = ACTIONS(7767), @@ -403857,315 +401098,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(7767), [anon_sym_alignas] = ACTIONS(7767), [anon_sym__Alignas] = ACTIONS(7767), - [sym_primitive_type] = ACTIONS(7767), - [anon_sym_QMARK] = ACTIONS(7769), - [anon_sym_LT_EQ_GT] = ACTIONS(7769), - [anon_sym_or] = ACTIONS(7767), - [anon_sym_and] = ACTIONS(7767), + [anon_sym_QMARK] = ACTIONS(7767), + [anon_sym_STAR_EQ] = ACTIONS(7767), + [anon_sym_SLASH_EQ] = ACTIONS(7767), + [anon_sym_PERCENT_EQ] = ACTIONS(7767), + [anon_sym_PLUS_EQ] = ACTIONS(7767), + [anon_sym_DASH_EQ] = ACTIONS(7767), + [anon_sym_LT_LT_EQ] = ACTIONS(7767), + [anon_sym_GT_GT_EQ] = ACTIONS(7767), + [anon_sym_AMP_EQ] = ACTIONS(7767), + [anon_sym_CARET_EQ] = ACTIONS(7767), + [anon_sym_PIPE_EQ] = ACTIONS(7767), + [anon_sym_and_eq] = ACTIONS(7767), + [anon_sym_or_eq] = ACTIONS(7767), + [anon_sym_xor_eq] = ACTIONS(7767), + [anon_sym_LT_EQ_GT] = ACTIONS(7767), + [anon_sym_or] = ACTIONS(7765), + [anon_sym_and] = ACTIONS(7765), [anon_sym_bitor] = ACTIONS(7767), - [anon_sym_xor] = ACTIONS(7767), + [anon_sym_xor] = ACTIONS(7765), [anon_sym_bitand] = ACTIONS(7767), [anon_sym_not_eq] = ACTIONS(7767), - [anon_sym_DASH_DASH] = ACTIONS(7769), - [anon_sym_PLUS_PLUS] = ACTIONS(7769), - [anon_sym_DOT] = ACTIONS(7767), - [anon_sym_DOT_STAR] = ACTIONS(7769), - [anon_sym_DASH_GT] = ACTIONS(7769), + [anon_sym_DASH_DASH] = ACTIONS(7767), + [anon_sym_PLUS_PLUS] = ACTIONS(7767), + [anon_sym_DOT] = ACTIONS(7765), + [anon_sym_DOT_STAR] = ACTIONS(7767), + [anon_sym_DASH_GT] = ACTIONS(7767), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7767), [anon_sym_override] = ACTIONS(7767), [anon_sym_requires] = ACTIONS(7767), - [anon_sym_COLON_RBRACK] = ACTIONS(7769), }, - [STATE(3140)] = { - [sym_identifier] = ACTIONS(9059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9061), - [anon_sym_COMMA] = ACTIONS(9061), - [anon_sym_RPAREN] = ACTIONS(9061), - [aux_sym_preproc_if_token2] = ACTIONS(9061), - [aux_sym_preproc_else_token1] = ACTIONS(9061), - [aux_sym_preproc_elif_token1] = ACTIONS(9059), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9061), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9061), - [anon_sym_LPAREN2] = ACTIONS(9061), - [anon_sym_DASH] = ACTIONS(9059), - [anon_sym_PLUS] = ACTIONS(9059), - [anon_sym_STAR] = ACTIONS(9059), - [anon_sym_SLASH] = ACTIONS(9059), - [anon_sym_PERCENT] = ACTIONS(9059), - [anon_sym_PIPE_PIPE] = ACTIONS(9061), - [anon_sym_AMP_AMP] = ACTIONS(9061), - [anon_sym_PIPE] = ACTIONS(9059), - [anon_sym_CARET] = ACTIONS(9059), - [anon_sym_AMP] = ACTIONS(9059), - [anon_sym_EQ_EQ] = ACTIONS(9061), - [anon_sym_BANG_EQ] = ACTIONS(9061), - [anon_sym_GT] = ACTIONS(9059), - [anon_sym_GT_EQ] = ACTIONS(9061), - [anon_sym_LT_EQ] = ACTIONS(9059), - [anon_sym_LT] = ACTIONS(9059), - [anon_sym_LT_LT] = ACTIONS(9059), - [anon_sym_GT_GT] = ACTIONS(9059), - [anon_sym_SEMI] = ACTIONS(9061), - [anon_sym___attribute__] = ACTIONS(9059), - [anon_sym___attribute] = ACTIONS(9059), - [anon_sym_COLON] = ACTIONS(9059), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9061), - [anon_sym_LBRACE] = ACTIONS(9061), - [anon_sym_RBRACE] = ACTIONS(9061), - [anon_sym_LBRACK] = ACTIONS(9059), - [anon_sym_RBRACK] = ACTIONS(9061), - [anon_sym_EQ] = ACTIONS(9059), - [anon_sym_QMARK] = ACTIONS(9061), - [anon_sym_STAR_EQ] = ACTIONS(9061), - [anon_sym_SLASH_EQ] = ACTIONS(9061), - [anon_sym_PERCENT_EQ] = ACTIONS(9061), - [anon_sym_PLUS_EQ] = ACTIONS(9061), - [anon_sym_DASH_EQ] = ACTIONS(9061), - [anon_sym_LT_LT_EQ] = ACTIONS(9061), - [anon_sym_GT_GT_EQ] = ACTIONS(9061), - [anon_sym_AMP_EQ] = ACTIONS(9061), - [anon_sym_CARET_EQ] = ACTIONS(9061), - [anon_sym_PIPE_EQ] = ACTIONS(9061), - [anon_sym_and_eq] = ACTIONS(9059), - [anon_sym_or_eq] = ACTIONS(9059), - [anon_sym_xor_eq] = ACTIONS(9059), - [anon_sym_LT_EQ_GT] = ACTIONS(9061), - [anon_sym_or] = ACTIONS(9059), - [anon_sym_and] = ACTIONS(9059), - [anon_sym_bitor] = ACTIONS(9059), - [anon_sym_xor] = ACTIONS(9059), - [anon_sym_bitand] = ACTIONS(9059), - [anon_sym_not_eq] = ACTIONS(9059), - [anon_sym_DASH_DASH] = ACTIONS(9061), - [anon_sym_PLUS_PLUS] = ACTIONS(9061), - [anon_sym_asm] = ACTIONS(9059), - [anon_sym___asm__] = ACTIONS(9059), - [anon_sym___asm] = ACTIONS(9059), - [anon_sym_DOT] = ACTIONS(9059), - [anon_sym_DOT_STAR] = ACTIONS(9061), - [anon_sym_DASH_GT] = ACTIONS(9061), + [STATE(3104)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), + [anon_sym_COMMA] = ACTIONS(7777), + [anon_sym_LPAREN2] = ACTIONS(7777), + [anon_sym_DASH] = ACTIONS(7775), + [anon_sym_PLUS] = ACTIONS(7775), + [anon_sym_STAR] = ACTIONS(7775), + [anon_sym_SLASH] = ACTIONS(7775), + [anon_sym_PERCENT] = ACTIONS(7775), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_CARET] = ACTIONS(7775), + [anon_sym_AMP] = ACTIONS(7775), + [anon_sym_EQ_EQ] = ACTIONS(7777), + [anon_sym_BANG_EQ] = ACTIONS(7777), + [anon_sym_GT] = ACTIONS(7775), + [anon_sym_GT_EQ] = ACTIONS(7777), + [anon_sym_LT_EQ] = ACTIONS(7775), + [anon_sym_LT] = ACTIONS(7775), + [anon_sym_LT_LT] = ACTIONS(7775), + [anon_sym_GT_GT] = ACTIONS(7775), + [anon_sym___extension__] = ACTIONS(7777), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_RBRACK] = ACTIONS(7777), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7777), + [anon_sym_volatile] = ACTIONS(7777), + [anon_sym_restrict] = ACTIONS(7777), + [anon_sym___restrict__] = ACTIONS(7777), + [anon_sym__Atomic] = ACTIONS(7777), + [anon_sym__Noreturn] = ACTIONS(7777), + [anon_sym_noreturn] = ACTIONS(7777), + [anon_sym__Nonnull] = ACTIONS(7777), + [anon_sym_mutable] = ACTIONS(7777), + [anon_sym_constinit] = ACTIONS(7777), + [anon_sym_consteval] = ACTIONS(7777), + [anon_sym_alignas] = ACTIONS(7777), + [anon_sym__Alignas] = ACTIONS(7777), + [anon_sym_QMARK] = ACTIONS(7777), + [anon_sym_STAR_EQ] = ACTIONS(7777), + [anon_sym_SLASH_EQ] = ACTIONS(7777), + [anon_sym_PERCENT_EQ] = ACTIONS(7777), + [anon_sym_PLUS_EQ] = ACTIONS(7777), + [anon_sym_DASH_EQ] = ACTIONS(7777), + [anon_sym_LT_LT_EQ] = ACTIONS(7777), + [anon_sym_GT_GT_EQ] = ACTIONS(7777), + [anon_sym_AMP_EQ] = ACTIONS(7777), + [anon_sym_CARET_EQ] = ACTIONS(7777), + [anon_sym_PIPE_EQ] = ACTIONS(7777), + [anon_sym_and_eq] = ACTIONS(7777), + [anon_sym_or_eq] = ACTIONS(7777), + [anon_sym_xor_eq] = ACTIONS(7777), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7777), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7777), + [anon_sym_not_eq] = ACTIONS(7777), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(7775), + [anon_sym_DOT_STAR] = ACTIONS(7777), + [anon_sym_DASH_GT] = ACTIONS(7777), [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9059), - [anon_sym_COLON_RBRACK] = ACTIONS(9061), - }, - [STATE(3141)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7595), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7595), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7595), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7595), - [anon_sym_GT_GT] = ACTIONS(7595), - [anon_sym___extension__] = ACTIONS(7597), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_RBRACK] = ACTIONS(7597), - [anon_sym_EQ] = ACTIONS(7595), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7597), - [anon_sym_volatile] = ACTIONS(7597), - [anon_sym_restrict] = ACTIONS(7597), - [anon_sym___restrict__] = ACTIONS(7597), - [anon_sym__Atomic] = ACTIONS(7597), - [anon_sym__Noreturn] = ACTIONS(7597), - [anon_sym_noreturn] = ACTIONS(7597), - [anon_sym__Nonnull] = ACTIONS(7597), - [anon_sym_mutable] = ACTIONS(7597), - [anon_sym_constinit] = ACTIONS(7597), - [anon_sym_consteval] = ACTIONS(7597), - [anon_sym_alignas] = ACTIONS(7597), - [anon_sym__Alignas] = ACTIONS(7597), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_STAR_EQ] = ACTIONS(7597), - [anon_sym_SLASH_EQ] = ACTIONS(7597), - [anon_sym_PERCENT_EQ] = ACTIONS(7597), - [anon_sym_PLUS_EQ] = ACTIONS(7597), - [anon_sym_DASH_EQ] = ACTIONS(7597), - [anon_sym_LT_LT_EQ] = ACTIONS(7597), - [anon_sym_GT_GT_EQ] = ACTIONS(7597), - [anon_sym_AMP_EQ] = ACTIONS(7597), - [anon_sym_CARET_EQ] = ACTIONS(7597), - [anon_sym_PIPE_EQ] = ACTIONS(7597), - [anon_sym_and_eq] = ACTIONS(7597), - [anon_sym_or_eq] = ACTIONS(7597), - [anon_sym_xor_eq] = ACTIONS(7597), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7595), - [anon_sym_and] = ACTIONS(7595), - [anon_sym_bitor] = ACTIONS(7597), - [anon_sym_xor] = ACTIONS(7595), - [anon_sym_bitand] = ACTIONS(7597), - [anon_sym_not_eq] = ACTIONS(7597), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7597), - [anon_sym_override] = ACTIONS(7597), - [anon_sym_requires] = ACTIONS(7597), - }, - [STATE(3142)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), - [anon_sym_COMMA] = ACTIONS(7625), - [anon_sym_LPAREN2] = ACTIONS(7625), - [anon_sym_DASH] = ACTIONS(7623), - [anon_sym_PLUS] = ACTIONS(7623), - [anon_sym_STAR] = ACTIONS(7623), - [anon_sym_SLASH] = ACTIONS(7623), - [anon_sym_PERCENT] = ACTIONS(7623), - [anon_sym_PIPE_PIPE] = ACTIONS(7625), - [anon_sym_AMP_AMP] = ACTIONS(7625), - [anon_sym_PIPE] = ACTIONS(7623), - [anon_sym_CARET] = ACTIONS(7623), - [anon_sym_AMP] = ACTIONS(7623), - [anon_sym_EQ_EQ] = ACTIONS(7625), - [anon_sym_BANG_EQ] = ACTIONS(7625), - [anon_sym_GT] = ACTIONS(7623), - [anon_sym_GT_EQ] = ACTIONS(7623), - [anon_sym_LT_EQ] = ACTIONS(7623), - [anon_sym_LT] = ACTIONS(7623), - [anon_sym_LT_LT] = ACTIONS(7623), - [anon_sym_GT_GT] = ACTIONS(7623), - [anon_sym___extension__] = ACTIONS(7625), - [anon_sym_LBRACE] = ACTIONS(7625), - [anon_sym_LBRACK] = ACTIONS(7625), - [anon_sym_EQ] = ACTIONS(7623), - [anon_sym_const] = ACTIONS(7623), - [anon_sym_constexpr] = ACTIONS(7625), - [anon_sym_volatile] = ACTIONS(7625), - [anon_sym_restrict] = ACTIONS(7625), - [anon_sym___restrict__] = ACTIONS(7625), - [anon_sym__Atomic] = ACTIONS(7625), - [anon_sym__Noreturn] = ACTIONS(7625), - [anon_sym_noreturn] = ACTIONS(7625), - [anon_sym__Nonnull] = ACTIONS(7625), - [anon_sym_mutable] = ACTIONS(7625), - [anon_sym_constinit] = ACTIONS(7625), - [anon_sym_consteval] = ACTIONS(7625), - [anon_sym_alignas] = ACTIONS(7625), - [anon_sym__Alignas] = ACTIONS(7625), - [anon_sym_QMARK] = ACTIONS(7625), - [anon_sym_STAR_EQ] = ACTIONS(7625), - [anon_sym_SLASH_EQ] = ACTIONS(7625), - [anon_sym_PERCENT_EQ] = ACTIONS(7625), - [anon_sym_PLUS_EQ] = ACTIONS(7625), - [anon_sym_DASH_EQ] = ACTIONS(7625), - [anon_sym_LT_LT_EQ] = ACTIONS(7625), - [anon_sym_GT_GT_EQ] = ACTIONS(7623), - [anon_sym_AMP_EQ] = ACTIONS(7625), - [anon_sym_CARET_EQ] = ACTIONS(7625), - [anon_sym_PIPE_EQ] = ACTIONS(7625), - [anon_sym_and_eq] = ACTIONS(7625), - [anon_sym_or_eq] = ACTIONS(7625), - [anon_sym_xor_eq] = ACTIONS(7625), - [anon_sym_LT_EQ_GT] = ACTIONS(7625), - [anon_sym_or] = ACTIONS(7623), - [anon_sym_and] = ACTIONS(7623), - [anon_sym_bitor] = ACTIONS(7625), - [anon_sym_xor] = ACTIONS(7623), - [anon_sym_bitand] = ACTIONS(7625), - [anon_sym_not_eq] = ACTIONS(7625), - [anon_sym_DASH_DASH] = ACTIONS(7625), - [anon_sym_PLUS_PLUS] = ACTIONS(7625), - [anon_sym_DOT] = ACTIONS(7623), - [anon_sym_DOT_STAR] = ACTIONS(7625), - [anon_sym_DASH_GT] = ACTIONS(7625), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7625), - [anon_sym_override] = ACTIONS(7625), - [anon_sym_GT2] = ACTIONS(7625), - [anon_sym_requires] = ACTIONS(7625), + [anon_sym_final] = ACTIONS(7777), + [anon_sym_override] = ACTIONS(7777), + [anon_sym_requires] = ACTIONS(7777), }, - [STATE(3143)] = { - [sym_identifier] = ACTIONS(7735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), - [anon_sym_COMMA] = ACTIONS(7737), - [anon_sym_RPAREN] = ACTIONS(7737), - [anon_sym_LPAREN2] = ACTIONS(7737), - [anon_sym_DASH] = ACTIONS(7735), - [anon_sym_PLUS] = ACTIONS(7735), - [anon_sym_STAR] = ACTIONS(7737), - [anon_sym_SLASH] = ACTIONS(7735), - [anon_sym_PERCENT] = ACTIONS(7737), - [anon_sym_PIPE_PIPE] = ACTIONS(7737), - [anon_sym_AMP_AMP] = ACTIONS(7737), - [anon_sym_PIPE] = ACTIONS(7735), - [anon_sym_CARET] = ACTIONS(7737), - [anon_sym_AMP] = ACTIONS(7735), - [anon_sym_EQ_EQ] = ACTIONS(7737), - [anon_sym_BANG_EQ] = ACTIONS(7737), - [anon_sym_GT] = ACTIONS(7735), - [anon_sym_GT_EQ] = ACTIONS(7737), - [anon_sym_LT_EQ] = ACTIONS(7735), - [anon_sym_LT] = ACTIONS(7735), - [anon_sym_LT_LT] = ACTIONS(7737), - [anon_sym_GT_GT] = ACTIONS(7737), - [anon_sym_SEMI] = ACTIONS(7737), - [anon_sym___extension__] = ACTIONS(7735), - [anon_sym___attribute__] = ACTIONS(7735), - [anon_sym___attribute] = ACTIONS(7735), - [anon_sym_COLON] = ACTIONS(7735), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7737), - [anon_sym___based] = ACTIONS(7735), - [anon_sym_LBRACE] = ACTIONS(7737), - [anon_sym_RBRACE] = ACTIONS(7737), - [anon_sym_signed] = ACTIONS(7735), - [anon_sym_unsigned] = ACTIONS(7735), - [anon_sym_long] = ACTIONS(7735), - [anon_sym_short] = ACTIONS(7735), - [anon_sym_LBRACK] = ACTIONS(7737), - [anon_sym_const] = ACTIONS(7735), - [anon_sym_constexpr] = ACTIONS(7735), - [anon_sym_volatile] = ACTIONS(7735), - [anon_sym_restrict] = ACTIONS(7735), - [anon_sym___restrict__] = ACTIONS(7735), - [anon_sym__Atomic] = ACTIONS(7735), - [anon_sym__Noreturn] = ACTIONS(7735), - [anon_sym_noreturn] = ACTIONS(7735), - [anon_sym__Nonnull] = ACTIONS(7735), - [anon_sym_mutable] = ACTIONS(7735), - [anon_sym_constinit] = ACTIONS(7735), - [anon_sym_consteval] = ACTIONS(7735), - [anon_sym_alignas] = ACTIONS(7735), - [anon_sym__Alignas] = ACTIONS(7735), - [sym_primitive_type] = ACTIONS(7735), - [anon_sym_QMARK] = ACTIONS(7737), - [anon_sym_LT_EQ_GT] = ACTIONS(7737), - [anon_sym_or] = ACTIONS(7735), - [anon_sym_and] = ACTIONS(7735), - [anon_sym_bitor] = ACTIONS(7735), - [anon_sym_xor] = ACTIONS(7735), - [anon_sym_bitand] = ACTIONS(7735), - [anon_sym_not_eq] = ACTIONS(7735), - [anon_sym_DASH_DASH] = ACTIONS(7737), - [anon_sym_PLUS_PLUS] = ACTIONS(7737), - [anon_sym_DOT] = ACTIONS(7735), - [anon_sym_DOT_STAR] = ACTIONS(7737), - [anon_sym_DASH_GT] = ACTIONS(7737), + [STATE(3105)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), + [anon_sym_COMMA] = ACTIONS(7781), + [anon_sym_LPAREN2] = ACTIONS(7781), + [anon_sym_DASH] = ACTIONS(7779), + [anon_sym_PLUS] = ACTIONS(7779), + [anon_sym_STAR] = ACTIONS(7779), + [anon_sym_SLASH] = ACTIONS(7779), + [anon_sym_PERCENT] = ACTIONS(7779), + [anon_sym_PIPE_PIPE] = ACTIONS(7781), + [anon_sym_AMP_AMP] = ACTIONS(7781), + [anon_sym_PIPE] = ACTIONS(7779), + [anon_sym_CARET] = ACTIONS(7779), + [anon_sym_AMP] = ACTIONS(7779), + [anon_sym_EQ_EQ] = ACTIONS(7781), + [anon_sym_BANG_EQ] = ACTIONS(7781), + [anon_sym_GT] = ACTIONS(7779), + [anon_sym_GT_EQ] = ACTIONS(7781), + [anon_sym_LT_EQ] = ACTIONS(7779), + [anon_sym_LT] = ACTIONS(7779), + [anon_sym_LT_LT] = ACTIONS(7779), + [anon_sym_GT_GT] = ACTIONS(7779), + [anon_sym___extension__] = ACTIONS(7781), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_RBRACK] = ACTIONS(7781), + [anon_sym_EQ] = ACTIONS(7779), + [anon_sym_const] = ACTIONS(7779), + [anon_sym_constexpr] = ACTIONS(7781), + [anon_sym_volatile] = ACTIONS(7781), + [anon_sym_restrict] = ACTIONS(7781), + [anon_sym___restrict__] = ACTIONS(7781), + [anon_sym__Atomic] = ACTIONS(7781), + [anon_sym__Noreturn] = ACTIONS(7781), + [anon_sym_noreturn] = ACTIONS(7781), + [anon_sym__Nonnull] = ACTIONS(7781), + [anon_sym_mutable] = ACTIONS(7781), + [anon_sym_constinit] = ACTIONS(7781), + [anon_sym_consteval] = ACTIONS(7781), + [anon_sym_alignas] = ACTIONS(7781), + [anon_sym__Alignas] = ACTIONS(7781), + [anon_sym_QMARK] = ACTIONS(7781), + [anon_sym_STAR_EQ] = ACTIONS(7781), + [anon_sym_SLASH_EQ] = ACTIONS(7781), + [anon_sym_PERCENT_EQ] = ACTIONS(7781), + [anon_sym_PLUS_EQ] = ACTIONS(7781), + [anon_sym_DASH_EQ] = ACTIONS(7781), + [anon_sym_LT_LT_EQ] = ACTIONS(7781), + [anon_sym_GT_GT_EQ] = ACTIONS(7781), + [anon_sym_AMP_EQ] = ACTIONS(7781), + [anon_sym_CARET_EQ] = ACTIONS(7781), + [anon_sym_PIPE_EQ] = ACTIONS(7781), + [anon_sym_and_eq] = ACTIONS(7781), + [anon_sym_or_eq] = ACTIONS(7781), + [anon_sym_xor_eq] = ACTIONS(7781), + [anon_sym_LT_EQ_GT] = ACTIONS(7781), + [anon_sym_or] = ACTIONS(7779), + [anon_sym_and] = ACTIONS(7779), + [anon_sym_bitor] = ACTIONS(7781), + [anon_sym_xor] = ACTIONS(7779), + [anon_sym_bitand] = ACTIONS(7781), + [anon_sym_not_eq] = ACTIONS(7781), + [anon_sym_DASH_DASH] = ACTIONS(7781), + [anon_sym_PLUS_PLUS] = ACTIONS(7781), + [anon_sym_DOT] = ACTIONS(7779), + [anon_sym_DOT_STAR] = ACTIONS(7781), + [anon_sym_DASH_GT] = ACTIONS(7781), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7735), - [anon_sym_override] = ACTIONS(7735), - [anon_sym_requires] = ACTIONS(7735), - [anon_sym_COLON_RBRACK] = ACTIONS(7737), + [anon_sym_final] = ACTIONS(7781), + [anon_sym_override] = ACTIONS(7781), + [anon_sym_requires] = ACTIONS(7781), }, - [STATE(3144)] = { + [STATE(3106)] = { [sym_identifier] = ACTIONS(7743), [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), [anon_sym_COMMA] = ACTIONS(7745), @@ -404237,727 +401345,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7743), [anon_sym_COLON_RBRACK] = ACTIONS(7745), }, - [STATE(3145)] = { - [sym_argument_list] = STATE(5862), - [sym_initializer_list] = STATE(5876), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8592), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7225), - }, - [STATE(3146)] = { - [sym_decltype_auto] = STATE(3095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8631), - [anon_sym_decltype] = ACTIONS(7038), - [anon_sym_GT2] = ACTIONS(7225), - }, - [STATE(3147)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), - [anon_sym_COMMA] = ACTIONS(7661), - [anon_sym_LPAREN2] = ACTIONS(7661), - [anon_sym_DASH] = ACTIONS(7659), - [anon_sym_PLUS] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7659), - [anon_sym_SLASH] = ACTIONS(7659), - [anon_sym_PERCENT] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7661), - [anon_sym_AMP_AMP] = ACTIONS(7661), - [anon_sym_PIPE] = ACTIONS(7659), - [anon_sym_CARET] = ACTIONS(7659), - [anon_sym_AMP] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7661), - [anon_sym_BANG_EQ] = ACTIONS(7661), - [anon_sym_GT] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7659), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_LT] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7659), - [anon_sym_GT_GT] = ACTIONS(7659), - [anon_sym___extension__] = ACTIONS(7661), - [anon_sym_LBRACE] = ACTIONS(7661), - [anon_sym_LBRACK] = ACTIONS(7661), - [anon_sym_EQ] = ACTIONS(7659), - [anon_sym_const] = ACTIONS(7659), - [anon_sym_constexpr] = ACTIONS(7661), - [anon_sym_volatile] = ACTIONS(7661), - [anon_sym_restrict] = ACTIONS(7661), - [anon_sym___restrict__] = ACTIONS(7661), - [anon_sym__Atomic] = ACTIONS(7661), - [anon_sym__Noreturn] = ACTIONS(7661), - [anon_sym_noreturn] = ACTIONS(7661), - [anon_sym__Nonnull] = ACTIONS(7661), - [anon_sym_mutable] = ACTIONS(7661), - [anon_sym_constinit] = ACTIONS(7661), - [anon_sym_consteval] = ACTIONS(7661), - [anon_sym_alignas] = ACTIONS(7661), - [anon_sym__Alignas] = ACTIONS(7661), - [anon_sym_QMARK] = ACTIONS(7661), - [anon_sym_STAR_EQ] = ACTIONS(7661), - [anon_sym_SLASH_EQ] = ACTIONS(7661), - [anon_sym_PERCENT_EQ] = ACTIONS(7661), - [anon_sym_PLUS_EQ] = ACTIONS(7661), - [anon_sym_DASH_EQ] = ACTIONS(7661), - [anon_sym_LT_LT_EQ] = ACTIONS(7661), - [anon_sym_GT_GT_EQ] = ACTIONS(7659), - [anon_sym_AMP_EQ] = ACTIONS(7661), - [anon_sym_CARET_EQ] = ACTIONS(7661), - [anon_sym_PIPE_EQ] = ACTIONS(7661), - [anon_sym_and_eq] = ACTIONS(7661), - [anon_sym_or_eq] = ACTIONS(7661), - [anon_sym_xor_eq] = ACTIONS(7661), - [anon_sym_LT_EQ_GT] = ACTIONS(7661), - [anon_sym_or] = ACTIONS(7659), - [anon_sym_and] = ACTIONS(7659), - [anon_sym_bitor] = ACTIONS(7661), - [anon_sym_xor] = ACTIONS(7659), - [anon_sym_bitand] = ACTIONS(7661), - [anon_sym_not_eq] = ACTIONS(7661), - [anon_sym_DASH_DASH] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7661), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym_DOT_STAR] = ACTIONS(7661), - [anon_sym_DASH_GT] = ACTIONS(7661), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7661), - [anon_sym_override] = ACTIONS(7661), - [anon_sym_GT2] = ACTIONS(7661), - [anon_sym_requires] = ACTIONS(7661), - }, - [STATE(3148)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(8598), - [anon_sym___attribute] = ACTIONS(8598), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_friend] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - }, - [STATE(3149)] = { - [sym_identifier] = ACTIONS(9063), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9065), - [anon_sym_COMMA] = ACTIONS(9065), - [anon_sym_RPAREN] = ACTIONS(9065), - [aux_sym_preproc_if_token2] = ACTIONS(9065), - [aux_sym_preproc_else_token1] = ACTIONS(9065), - [aux_sym_preproc_elif_token1] = ACTIONS(9063), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9065), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9065), - [anon_sym_LPAREN2] = ACTIONS(9065), - [anon_sym_DASH] = ACTIONS(9063), - [anon_sym_PLUS] = ACTIONS(9063), - [anon_sym_STAR] = ACTIONS(9063), - [anon_sym_SLASH] = ACTIONS(9063), - [anon_sym_PERCENT] = ACTIONS(9063), - [anon_sym_PIPE_PIPE] = ACTIONS(9065), - [anon_sym_AMP_AMP] = ACTIONS(9065), - [anon_sym_PIPE] = ACTIONS(9063), - [anon_sym_CARET] = ACTIONS(9063), - [anon_sym_AMP] = ACTIONS(9063), - [anon_sym_EQ_EQ] = ACTIONS(9065), - [anon_sym_BANG_EQ] = ACTIONS(9065), - [anon_sym_GT] = ACTIONS(9063), - [anon_sym_GT_EQ] = ACTIONS(9065), - [anon_sym_LT_EQ] = ACTIONS(9063), - [anon_sym_LT] = ACTIONS(9063), - [anon_sym_LT_LT] = ACTIONS(9063), - [anon_sym_GT_GT] = ACTIONS(9063), - [anon_sym_SEMI] = ACTIONS(9065), - [anon_sym___attribute__] = ACTIONS(9063), - [anon_sym___attribute] = ACTIONS(9063), - [anon_sym_COLON] = ACTIONS(9063), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9065), - [anon_sym_LBRACE] = ACTIONS(9065), - [anon_sym_RBRACE] = ACTIONS(9065), - [anon_sym_LBRACK] = ACTIONS(9063), - [anon_sym_RBRACK] = ACTIONS(9065), - [anon_sym_EQ] = ACTIONS(9063), - [anon_sym_QMARK] = ACTIONS(9065), - [anon_sym_STAR_EQ] = ACTIONS(9065), - [anon_sym_SLASH_EQ] = ACTIONS(9065), - [anon_sym_PERCENT_EQ] = ACTIONS(9065), - [anon_sym_PLUS_EQ] = ACTIONS(9065), - [anon_sym_DASH_EQ] = ACTIONS(9065), - [anon_sym_LT_LT_EQ] = ACTIONS(9065), - [anon_sym_GT_GT_EQ] = ACTIONS(9065), - [anon_sym_AMP_EQ] = ACTIONS(9065), - [anon_sym_CARET_EQ] = ACTIONS(9065), - [anon_sym_PIPE_EQ] = ACTIONS(9065), - [anon_sym_and_eq] = ACTIONS(9063), - [anon_sym_or_eq] = ACTIONS(9063), - [anon_sym_xor_eq] = ACTIONS(9063), - [anon_sym_LT_EQ_GT] = ACTIONS(9065), - [anon_sym_or] = ACTIONS(9063), - [anon_sym_and] = ACTIONS(9063), - [anon_sym_bitor] = ACTIONS(9063), - [anon_sym_xor] = ACTIONS(9063), - [anon_sym_bitand] = ACTIONS(9063), - [anon_sym_not_eq] = ACTIONS(9063), - [anon_sym_DASH_DASH] = ACTIONS(9065), - [anon_sym_PLUS_PLUS] = ACTIONS(9065), - [anon_sym_asm] = ACTIONS(9063), - [anon_sym___asm__] = ACTIONS(9063), - [anon_sym___asm] = ACTIONS(9063), - [anon_sym_DOT] = ACTIONS(9063), - [anon_sym_DOT_STAR] = ACTIONS(9065), - [anon_sym_DASH_GT] = ACTIONS(9065), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9063), - [anon_sym_COLON_RBRACK] = ACTIONS(9065), - }, - [STATE(3150)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_friend] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_catch] = ACTIONS(3163), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - }, - [STATE(3151)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6605), - [anon_sym_PERCENT] = ACTIONS(6605), - [anon_sym_PIPE_PIPE] = ACTIONS(6598), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6605), - [anon_sym_CARET] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_BANG_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6605), - [anon_sym_GT_EQ] = ACTIONS(6605), - [anon_sym_LT_EQ] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(6605), - [anon_sym_LT_LT] = ACTIONS(6605), - [anon_sym_GT_GT] = ACTIONS(6605), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6603), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6598), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6603), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6596), - [anon_sym_or_eq] = ACTIONS(6596), - [anon_sym_xor_eq] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6598), - [anon_sym_or] = ACTIONS(6605), - [anon_sym_and] = ACTIONS(6605), - [anon_sym_bitor] = ACTIONS(6598), - [anon_sym_xor] = ACTIONS(6605), - [anon_sym_bitand] = ACTIONS(6598), - [anon_sym_not_eq] = ACTIONS(6598), - [anon_sym_DASH_DASH] = ACTIONS(6598), - [anon_sym_PLUS_PLUS] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6605), - [anon_sym_DOT_STAR] = ACTIONS(6598), - [anon_sym_DASH_GT] = ACTIONS(6598), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_GT2] = ACTIONS(6598), - }, - [STATE(3152)] = { - [sym_identifier] = ACTIONS(9067), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9069), - [anon_sym_COMMA] = ACTIONS(9069), - [anon_sym_RPAREN] = ACTIONS(9069), - [aux_sym_preproc_if_token2] = ACTIONS(9069), - [aux_sym_preproc_else_token1] = ACTIONS(9069), - [aux_sym_preproc_elif_token1] = ACTIONS(9067), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9069), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9069), - [anon_sym_LPAREN2] = ACTIONS(9069), - [anon_sym_DASH] = ACTIONS(9067), - [anon_sym_PLUS] = ACTIONS(9067), - [anon_sym_STAR] = ACTIONS(9067), - [anon_sym_SLASH] = ACTIONS(9067), - [anon_sym_PERCENT] = ACTIONS(9067), - [anon_sym_PIPE_PIPE] = ACTIONS(9069), - [anon_sym_AMP_AMP] = ACTIONS(9069), - [anon_sym_PIPE] = ACTIONS(9067), - [anon_sym_CARET] = ACTIONS(9067), - [anon_sym_AMP] = ACTIONS(9067), - [anon_sym_EQ_EQ] = ACTIONS(9069), - [anon_sym_BANG_EQ] = ACTIONS(9069), - [anon_sym_GT] = ACTIONS(9067), - [anon_sym_GT_EQ] = ACTIONS(9069), - [anon_sym_LT_EQ] = ACTIONS(9067), - [anon_sym_LT] = ACTIONS(9067), - [anon_sym_LT_LT] = ACTIONS(9067), - [anon_sym_GT_GT] = ACTIONS(9067), - [anon_sym_SEMI] = ACTIONS(9069), - [anon_sym___attribute__] = ACTIONS(9067), - [anon_sym___attribute] = ACTIONS(9067), - [anon_sym_COLON] = ACTIONS(9067), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9069), - [anon_sym_LBRACE] = ACTIONS(9069), - [anon_sym_RBRACE] = ACTIONS(9069), - [anon_sym_LBRACK] = ACTIONS(9067), - [anon_sym_RBRACK] = ACTIONS(9069), - [anon_sym_EQ] = ACTIONS(9067), - [anon_sym_QMARK] = ACTIONS(9069), - [anon_sym_STAR_EQ] = ACTIONS(9069), - [anon_sym_SLASH_EQ] = ACTIONS(9069), - [anon_sym_PERCENT_EQ] = ACTIONS(9069), - [anon_sym_PLUS_EQ] = ACTIONS(9069), - [anon_sym_DASH_EQ] = ACTIONS(9069), - [anon_sym_LT_LT_EQ] = ACTIONS(9069), - [anon_sym_GT_GT_EQ] = ACTIONS(9069), - [anon_sym_AMP_EQ] = ACTIONS(9069), - [anon_sym_CARET_EQ] = ACTIONS(9069), - [anon_sym_PIPE_EQ] = ACTIONS(9069), - [anon_sym_and_eq] = ACTIONS(9067), - [anon_sym_or_eq] = ACTIONS(9067), - [anon_sym_xor_eq] = ACTIONS(9067), - [anon_sym_LT_EQ_GT] = ACTIONS(9069), - [anon_sym_or] = ACTIONS(9067), - [anon_sym_and] = ACTIONS(9067), - [anon_sym_bitor] = ACTIONS(9067), - [anon_sym_xor] = ACTIONS(9067), - [anon_sym_bitand] = ACTIONS(9067), - [anon_sym_not_eq] = ACTIONS(9067), - [anon_sym_DASH_DASH] = ACTIONS(9069), - [anon_sym_PLUS_PLUS] = ACTIONS(9069), - [anon_sym_asm] = ACTIONS(9067), - [anon_sym___asm__] = ACTIONS(9067), - [anon_sym___asm] = ACTIONS(9067), - [anon_sym_DOT] = ACTIONS(9067), - [anon_sym_DOT_STAR] = ACTIONS(9069), - [anon_sym_DASH_GT] = ACTIONS(9069), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9067), - [anon_sym_COLON_RBRACK] = ACTIONS(9069), + [STATE(3107)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7608), + [anon_sym_COMMA] = ACTIONS(7608), + [anon_sym_LPAREN2] = ACTIONS(7608), + [anon_sym_DASH] = ACTIONS(7606), + [anon_sym_PLUS] = ACTIONS(7606), + [anon_sym_STAR] = ACTIONS(7606), + [anon_sym_SLASH] = ACTIONS(7606), + [anon_sym_PERCENT] = ACTIONS(7606), + [anon_sym_PIPE_PIPE] = ACTIONS(7608), + [anon_sym_AMP_AMP] = ACTIONS(7608), + [anon_sym_PIPE] = ACTIONS(7606), + [anon_sym_CARET] = ACTIONS(7606), + [anon_sym_AMP] = ACTIONS(7606), + [anon_sym_EQ_EQ] = ACTIONS(7608), + [anon_sym_BANG_EQ] = ACTIONS(7608), + [anon_sym_GT] = ACTIONS(7606), + [anon_sym_GT_EQ] = ACTIONS(7606), + [anon_sym_LT_EQ] = ACTIONS(7606), + [anon_sym_LT] = ACTIONS(7606), + [anon_sym_LT_LT] = ACTIONS(7606), + [anon_sym_GT_GT] = ACTIONS(7606), + [anon_sym___extension__] = ACTIONS(7608), + [anon_sym_LBRACE] = ACTIONS(7608), + [anon_sym_LBRACK] = ACTIONS(7608), + [anon_sym_EQ] = ACTIONS(7606), + [anon_sym_const] = ACTIONS(7606), + [anon_sym_constexpr] = ACTIONS(7608), + [anon_sym_volatile] = ACTIONS(7608), + [anon_sym_restrict] = ACTIONS(7608), + [anon_sym___restrict__] = ACTIONS(7608), + [anon_sym__Atomic] = ACTIONS(7608), + [anon_sym__Noreturn] = ACTIONS(7608), + [anon_sym_noreturn] = ACTIONS(7608), + [anon_sym__Nonnull] = ACTIONS(7608), + [anon_sym_mutable] = ACTIONS(7608), + [anon_sym_constinit] = ACTIONS(7608), + [anon_sym_consteval] = ACTIONS(7608), + [anon_sym_alignas] = ACTIONS(7608), + [anon_sym__Alignas] = ACTIONS(7608), + [anon_sym_QMARK] = ACTIONS(7608), + [anon_sym_STAR_EQ] = ACTIONS(7608), + [anon_sym_SLASH_EQ] = ACTIONS(7608), + [anon_sym_PERCENT_EQ] = ACTIONS(7608), + [anon_sym_PLUS_EQ] = ACTIONS(7608), + [anon_sym_DASH_EQ] = ACTIONS(7608), + [anon_sym_LT_LT_EQ] = ACTIONS(7608), + [anon_sym_GT_GT_EQ] = ACTIONS(7606), + [anon_sym_AMP_EQ] = ACTIONS(7608), + [anon_sym_CARET_EQ] = ACTIONS(7608), + [anon_sym_PIPE_EQ] = ACTIONS(7608), + [anon_sym_and_eq] = ACTIONS(7608), + [anon_sym_or_eq] = ACTIONS(7608), + [anon_sym_xor_eq] = ACTIONS(7608), + [anon_sym_LT_EQ_GT] = ACTIONS(7608), + [anon_sym_or] = ACTIONS(7606), + [anon_sym_and] = ACTIONS(7606), + [anon_sym_bitor] = ACTIONS(7608), + [anon_sym_xor] = ACTIONS(7606), + [anon_sym_bitand] = ACTIONS(7608), + [anon_sym_not_eq] = ACTIONS(7608), + [anon_sym_DASH_DASH] = ACTIONS(7608), + [anon_sym_PLUS_PLUS] = ACTIONS(7608), + [anon_sym_DOT] = ACTIONS(7606), + [anon_sym_DOT_STAR] = ACTIONS(7608), + [anon_sym_DASH_GT] = ACTIONS(7608), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7608), + [anon_sym_override] = ACTIONS(7608), + [anon_sym_GT2] = ACTIONS(7608), + [anon_sym_requires] = ACTIONS(7608), }, - [STATE(3153)] = { - [sym_argument_list] = STATE(5807), - [sym_initializer_list] = STATE(5738), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), + [STATE(3108)] = { + [sym_argument_list] = STATE(5856), + [sym_initializer_list] = STATE(5744), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), [anon_sym_LPAREN2] = ACTIONS(8592), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7223), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7223), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7225), - }, - [STATE(3154)] = { - [sym_attribute_specifier] = STATE(3786), - [sym_attribute_declaration] = STATE(6408), - [sym_type_qualifier] = STATE(3737), - [sym_alignas_qualifier] = STATE(3991), - [aux_sym_type_definition_repeat1] = STATE(3786), - [aux_sym__type_definition_type_repeat1] = STATE(3737), - [aux_sym_attributed_declarator_repeat1] = STATE(6408), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6754), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6754), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6754), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6752), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6754), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym___extension__] = ACTIONS(7814), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(7822), - [anon_sym_constexpr] = ACTIONS(7814), - [anon_sym_volatile] = ACTIONS(7814), - [anon_sym_restrict] = ACTIONS(7814), - [anon_sym___restrict__] = ACTIONS(7814), - [anon_sym__Atomic] = ACTIONS(7814), - [anon_sym__Noreturn] = ACTIONS(7814), - [anon_sym_noreturn] = ACTIONS(7814), - [anon_sym__Nonnull] = ACTIONS(7814), - [anon_sym_mutable] = ACTIONS(7814), - [anon_sym_constinit] = ACTIONS(7814), - [anon_sym_consteval] = ACTIONS(7814), - [anon_sym_alignas] = ACTIONS(7824), - [anon_sym__Alignas] = ACTIONS(7824), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6754), - [anon_sym_and] = ACTIONS(6754), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6754), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_GT2] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), }, - [STATE(3155)] = { + [STATE(3109)] = { [sym_identifier] = ACTIONS(7751), [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), [anon_sym_COMMA] = ACTIONS(7753), @@ -405029,2637 +401561,1257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7751), [anon_sym_COLON_RBRACK] = ACTIONS(7753), }, - [STATE(3156)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_RPAREN] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7525), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7525), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7525), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7525), - [anon_sym_GT_GT] = ACTIONS(7525), - [anon_sym_SEMI] = ACTIONS(7525), - [anon_sym___extension__] = ACTIONS(7528), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_COLON] = ACTIONS(7528), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7525), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_RBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8505), - [anon_sym_unsigned] = ACTIONS(8505), - [anon_sym_long] = ACTIONS(8505), - [anon_sym_short] = ACTIONS(8505), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_const] = ACTIONS(7528), - [anon_sym_constexpr] = ACTIONS(7528), - [anon_sym_volatile] = ACTIONS(7528), - [anon_sym_restrict] = ACTIONS(7528), - [anon_sym___restrict__] = ACTIONS(7528), - [anon_sym__Atomic] = ACTIONS(7528), - [anon_sym__Noreturn] = ACTIONS(7528), - [anon_sym_noreturn] = ACTIONS(7528), - [anon_sym__Nonnull] = ACTIONS(7528), - [anon_sym_mutable] = ACTIONS(7528), - [anon_sym_constinit] = ACTIONS(7528), - [anon_sym_consteval] = ACTIONS(7528), - [anon_sym_alignas] = ACTIONS(7528), - [anon_sym__Alignas] = ACTIONS(7528), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_requires] = ACTIONS(7528), - [anon_sym_COLON_RBRACK] = ACTIONS(7525), - }, - [STATE(3157)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6603), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6603), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6603), - [anon_sym_GT_GT] = ACTIONS(6603), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6603), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6603), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6596), - [anon_sym_or_eq] = ACTIONS(6596), - [anon_sym_xor_eq] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6596), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6596), - [anon_sym_not_eq] = ACTIONS(6596), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_GT2] = ACTIONS(6598), - }, - [STATE(3158)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), - [anon_sym_COMMA] = ACTIONS(7669), - [anon_sym_LPAREN2] = ACTIONS(7669), - [anon_sym_DASH] = ACTIONS(7667), - [anon_sym_PLUS] = ACTIONS(7667), - [anon_sym_STAR] = ACTIONS(7667), - [anon_sym_SLASH] = ACTIONS(7667), - [anon_sym_PERCENT] = ACTIONS(7667), - [anon_sym_PIPE_PIPE] = ACTIONS(7669), - [anon_sym_AMP_AMP] = ACTIONS(7669), - [anon_sym_PIPE] = ACTIONS(7667), - [anon_sym_CARET] = ACTIONS(7667), - [anon_sym_AMP] = ACTIONS(7667), - [anon_sym_EQ_EQ] = ACTIONS(7669), - [anon_sym_BANG_EQ] = ACTIONS(7669), - [anon_sym_GT] = ACTIONS(7667), - [anon_sym_GT_EQ] = ACTIONS(7667), - [anon_sym_LT_EQ] = ACTIONS(7667), - [anon_sym_LT] = ACTIONS(7667), - [anon_sym_LT_LT] = ACTIONS(7667), - [anon_sym_GT_GT] = ACTIONS(7667), - [anon_sym___extension__] = ACTIONS(7669), - [anon_sym_LBRACE] = ACTIONS(7669), - [anon_sym_LBRACK] = ACTIONS(7669), - [anon_sym_EQ] = ACTIONS(7667), - [anon_sym_const] = ACTIONS(7667), - [anon_sym_constexpr] = ACTIONS(7669), - [anon_sym_volatile] = ACTIONS(7669), - [anon_sym_restrict] = ACTIONS(7669), - [anon_sym___restrict__] = ACTIONS(7669), - [anon_sym__Atomic] = ACTIONS(7669), - [anon_sym__Noreturn] = ACTIONS(7669), - [anon_sym_noreturn] = ACTIONS(7669), - [anon_sym__Nonnull] = ACTIONS(7669), - [anon_sym_mutable] = ACTIONS(7669), - [anon_sym_constinit] = ACTIONS(7669), - [anon_sym_consteval] = ACTIONS(7669), - [anon_sym_alignas] = ACTIONS(7669), - [anon_sym__Alignas] = ACTIONS(7669), - [anon_sym_QMARK] = ACTIONS(7669), - [anon_sym_STAR_EQ] = ACTIONS(7669), - [anon_sym_SLASH_EQ] = ACTIONS(7669), - [anon_sym_PERCENT_EQ] = ACTIONS(7669), - [anon_sym_PLUS_EQ] = ACTIONS(7669), - [anon_sym_DASH_EQ] = ACTIONS(7669), - [anon_sym_LT_LT_EQ] = ACTIONS(7669), - [anon_sym_GT_GT_EQ] = ACTIONS(7667), - [anon_sym_AMP_EQ] = ACTIONS(7669), - [anon_sym_CARET_EQ] = ACTIONS(7669), - [anon_sym_PIPE_EQ] = ACTIONS(7669), - [anon_sym_and_eq] = ACTIONS(7669), - [anon_sym_or_eq] = ACTIONS(7669), - [anon_sym_xor_eq] = ACTIONS(7669), - [anon_sym_LT_EQ_GT] = ACTIONS(7669), - [anon_sym_or] = ACTIONS(7667), - [anon_sym_and] = ACTIONS(7667), - [anon_sym_bitor] = ACTIONS(7669), - [anon_sym_xor] = ACTIONS(7667), - [anon_sym_bitand] = ACTIONS(7669), - [anon_sym_not_eq] = ACTIONS(7669), - [anon_sym_DASH_DASH] = ACTIONS(7669), - [anon_sym_PLUS_PLUS] = ACTIONS(7669), - [anon_sym_DOT] = ACTIONS(7667), - [anon_sym_DOT_STAR] = ACTIONS(7669), - [anon_sym_DASH_GT] = ACTIONS(7669), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7669), - [anon_sym_override] = ACTIONS(7669), - [anon_sym_GT2] = ACTIONS(7669), - [anon_sym_requires] = ACTIONS(7669), - }, - [STATE(3159)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_friend] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - }, - [STATE(3160)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7158), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym___extension__] = ACTIONS(7160), - [anon_sym_LBRACE] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7160), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7160), - [anon_sym_volatile] = ACTIONS(7160), - [anon_sym_restrict] = ACTIONS(7160), - [anon_sym___restrict__] = ACTIONS(7160), - [anon_sym__Atomic] = ACTIONS(7160), - [anon_sym__Noreturn] = ACTIONS(7160), - [anon_sym_noreturn] = ACTIONS(7160), - [anon_sym__Nonnull] = ACTIONS(7160), - [anon_sym_mutable] = ACTIONS(7160), - [anon_sym_constinit] = ACTIONS(7160), - [anon_sym_consteval] = ACTIONS(7160), - [anon_sym_alignas] = ACTIONS(7160), - [anon_sym__Alignas] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7158), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_and_eq] = ACTIONS(7160), - [anon_sym_or_eq] = ACTIONS(7160), - [anon_sym_xor_eq] = ACTIONS(7160), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7158), - [anon_sym_and] = ACTIONS(7158), - [anon_sym_bitor] = ACTIONS(7160), - [anon_sym_xor] = ACTIONS(7158), - [anon_sym_bitand] = ACTIONS(7160), - [anon_sym_not_eq] = ACTIONS(7160), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7160), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7160), - [anon_sym_override] = ACTIONS(7160), - [anon_sym_GT2] = ACTIONS(7160), - [anon_sym_requires] = ACTIONS(7160), - }, - [STATE(3161)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_friend] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - }, - [STATE(3162)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), - [anon_sym_COMMA] = ACTIONS(7673), - [anon_sym_LPAREN2] = ACTIONS(7673), - [anon_sym_DASH] = ACTIONS(7671), - [anon_sym_PLUS] = ACTIONS(7671), - [anon_sym_STAR] = ACTIONS(7671), - [anon_sym_SLASH] = ACTIONS(7671), - [anon_sym_PERCENT] = ACTIONS(7671), - [anon_sym_PIPE_PIPE] = ACTIONS(7673), - [anon_sym_AMP_AMP] = ACTIONS(7673), - [anon_sym_PIPE] = ACTIONS(7671), - [anon_sym_CARET] = ACTIONS(7671), - [anon_sym_AMP] = ACTIONS(7671), - [anon_sym_EQ_EQ] = ACTIONS(7673), - [anon_sym_BANG_EQ] = ACTIONS(7673), - [anon_sym_GT] = ACTIONS(7671), - [anon_sym_GT_EQ] = ACTIONS(7671), - [anon_sym_LT_EQ] = ACTIONS(7671), - [anon_sym_LT] = ACTIONS(7671), - [anon_sym_LT_LT] = ACTIONS(7671), - [anon_sym_GT_GT] = ACTIONS(7671), - [anon_sym___extension__] = ACTIONS(7673), - [anon_sym_LBRACE] = ACTIONS(7673), - [anon_sym_LBRACK] = ACTIONS(7673), - [anon_sym_EQ] = ACTIONS(7671), - [anon_sym_const] = ACTIONS(7671), - [anon_sym_constexpr] = ACTIONS(7673), - [anon_sym_volatile] = ACTIONS(7673), - [anon_sym_restrict] = ACTIONS(7673), - [anon_sym___restrict__] = ACTIONS(7673), - [anon_sym__Atomic] = ACTIONS(7673), - [anon_sym__Noreturn] = ACTIONS(7673), - [anon_sym_noreturn] = ACTIONS(7673), - [anon_sym__Nonnull] = ACTIONS(7673), - [anon_sym_mutable] = ACTIONS(7673), - [anon_sym_constinit] = ACTIONS(7673), - [anon_sym_consteval] = ACTIONS(7673), - [anon_sym_alignas] = ACTIONS(7673), - [anon_sym__Alignas] = ACTIONS(7673), - [anon_sym_QMARK] = ACTIONS(7673), - [anon_sym_STAR_EQ] = ACTIONS(7673), - [anon_sym_SLASH_EQ] = ACTIONS(7673), - [anon_sym_PERCENT_EQ] = ACTIONS(7673), - [anon_sym_PLUS_EQ] = ACTIONS(7673), - [anon_sym_DASH_EQ] = ACTIONS(7673), - [anon_sym_LT_LT_EQ] = ACTIONS(7673), - [anon_sym_GT_GT_EQ] = ACTIONS(7671), - [anon_sym_AMP_EQ] = ACTIONS(7673), - [anon_sym_CARET_EQ] = ACTIONS(7673), - [anon_sym_PIPE_EQ] = ACTIONS(7673), - [anon_sym_and_eq] = ACTIONS(7673), - [anon_sym_or_eq] = ACTIONS(7673), - [anon_sym_xor_eq] = ACTIONS(7673), - [anon_sym_LT_EQ_GT] = ACTIONS(7673), - [anon_sym_or] = ACTIONS(7671), - [anon_sym_and] = ACTIONS(7671), - [anon_sym_bitor] = ACTIONS(7673), - [anon_sym_xor] = ACTIONS(7671), - [anon_sym_bitand] = ACTIONS(7673), - [anon_sym_not_eq] = ACTIONS(7673), - [anon_sym_DASH_DASH] = ACTIONS(7673), - [anon_sym_PLUS_PLUS] = ACTIONS(7673), - [anon_sym_DOT] = ACTIONS(7671), - [anon_sym_DOT_STAR] = ACTIONS(7673), - [anon_sym_DASH_GT] = ACTIONS(7673), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7673), - [anon_sym_override] = ACTIONS(7673), - [anon_sym_GT2] = ACTIONS(7673), - [anon_sym_requires] = ACTIONS(7673), - }, - [STATE(3163)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), - [anon_sym_COMMA] = ACTIONS(7567), - [anon_sym_LPAREN2] = ACTIONS(7567), - [anon_sym_DASH] = ACTIONS(7565), - [anon_sym_PLUS] = ACTIONS(7565), - [anon_sym_STAR] = ACTIONS(7565), - [anon_sym_SLASH] = ACTIONS(7565), - [anon_sym_PERCENT] = ACTIONS(7565), - [anon_sym_PIPE_PIPE] = ACTIONS(7567), - [anon_sym_AMP_AMP] = ACTIONS(7567), - [anon_sym_PIPE] = ACTIONS(7565), - [anon_sym_CARET] = ACTIONS(7565), - [anon_sym_AMP] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7567), - [anon_sym_BANG_EQ] = ACTIONS(7567), - [anon_sym_GT] = ACTIONS(7565), - [anon_sym_GT_EQ] = ACTIONS(7567), - [anon_sym_LT_EQ] = ACTIONS(7565), - [anon_sym_LT] = ACTIONS(7565), - [anon_sym_LT_LT] = ACTIONS(7565), - [anon_sym_GT_GT] = ACTIONS(7565), - [anon_sym___extension__] = ACTIONS(7567), - [anon_sym_LBRACE] = ACTIONS(7567), - [anon_sym_LBRACK] = ACTIONS(7567), - [anon_sym_RBRACK] = ACTIONS(7567), - [anon_sym_EQ] = ACTIONS(7565), - [anon_sym_const] = ACTIONS(7565), - [anon_sym_constexpr] = ACTIONS(7567), - [anon_sym_volatile] = ACTIONS(7567), - [anon_sym_restrict] = ACTIONS(7567), - [anon_sym___restrict__] = ACTIONS(7567), - [anon_sym__Atomic] = ACTIONS(7567), - [anon_sym__Noreturn] = ACTIONS(7567), - [anon_sym_noreturn] = ACTIONS(7567), - [anon_sym__Nonnull] = ACTIONS(7567), - [anon_sym_mutable] = ACTIONS(7567), - [anon_sym_constinit] = ACTIONS(7567), - [anon_sym_consteval] = ACTIONS(7567), - [anon_sym_alignas] = ACTIONS(7567), - [anon_sym__Alignas] = ACTIONS(7567), - [anon_sym_QMARK] = ACTIONS(7567), - [anon_sym_STAR_EQ] = ACTIONS(7567), - [anon_sym_SLASH_EQ] = ACTIONS(7567), - [anon_sym_PERCENT_EQ] = ACTIONS(7567), - [anon_sym_PLUS_EQ] = ACTIONS(7567), - [anon_sym_DASH_EQ] = ACTIONS(7567), - [anon_sym_LT_LT_EQ] = ACTIONS(7567), - [anon_sym_GT_GT_EQ] = ACTIONS(7567), - [anon_sym_AMP_EQ] = ACTIONS(7567), - [anon_sym_CARET_EQ] = ACTIONS(7567), - [anon_sym_PIPE_EQ] = ACTIONS(7567), - [anon_sym_and_eq] = ACTIONS(7567), - [anon_sym_or_eq] = ACTIONS(7567), - [anon_sym_xor_eq] = ACTIONS(7567), - [anon_sym_LT_EQ_GT] = ACTIONS(7567), - [anon_sym_or] = ACTIONS(7565), - [anon_sym_and] = ACTIONS(7565), - [anon_sym_bitor] = ACTIONS(7567), - [anon_sym_xor] = ACTIONS(7565), - [anon_sym_bitand] = ACTIONS(7567), - [anon_sym_not_eq] = ACTIONS(7567), - [anon_sym_DASH_DASH] = ACTIONS(7567), - [anon_sym_PLUS_PLUS] = ACTIONS(7567), - [anon_sym_DOT] = ACTIONS(7565), - [anon_sym_DOT_STAR] = ACTIONS(7567), - [anon_sym_DASH_GT] = ACTIONS(7567), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7567), - [anon_sym_override] = ACTIONS(7567), - [anon_sym_requires] = ACTIONS(7567), - }, - [STATE(3164)] = { - [sym_identifier] = ACTIONS(7623), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), - [anon_sym_COMMA] = ACTIONS(7625), - [anon_sym_RPAREN] = ACTIONS(7625), - [anon_sym_LPAREN2] = ACTIONS(7625), - [anon_sym_DASH] = ACTIONS(7623), - [anon_sym_PLUS] = ACTIONS(7623), - [anon_sym_STAR] = ACTIONS(7625), - [anon_sym_SLASH] = ACTIONS(7623), - [anon_sym_PERCENT] = ACTIONS(7625), - [anon_sym_PIPE_PIPE] = ACTIONS(7625), - [anon_sym_AMP_AMP] = ACTIONS(7625), - [anon_sym_PIPE] = ACTIONS(7623), - [anon_sym_CARET] = ACTIONS(7625), - [anon_sym_AMP] = ACTIONS(7623), - [anon_sym_EQ_EQ] = ACTIONS(7625), - [anon_sym_BANG_EQ] = ACTIONS(7625), - [anon_sym_GT] = ACTIONS(7623), - [anon_sym_GT_EQ] = ACTIONS(7625), - [anon_sym_LT_EQ] = ACTIONS(7623), - [anon_sym_LT] = ACTIONS(7623), - [anon_sym_LT_LT] = ACTIONS(7625), - [anon_sym_GT_GT] = ACTIONS(7625), - [anon_sym_SEMI] = ACTIONS(7625), - [anon_sym___extension__] = ACTIONS(7623), - [anon_sym___attribute__] = ACTIONS(7623), - [anon_sym___attribute] = ACTIONS(7623), - [anon_sym_COLON] = ACTIONS(7623), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7625), - [anon_sym___based] = ACTIONS(7623), - [anon_sym_LBRACE] = ACTIONS(7625), - [anon_sym_RBRACE] = ACTIONS(7625), - [anon_sym_signed] = ACTIONS(7623), - [anon_sym_unsigned] = ACTIONS(7623), - [anon_sym_long] = ACTIONS(7623), - [anon_sym_short] = ACTIONS(7623), - [anon_sym_LBRACK] = ACTIONS(7625), - [anon_sym_const] = ACTIONS(7623), - [anon_sym_constexpr] = ACTIONS(7623), - [anon_sym_volatile] = ACTIONS(7623), - [anon_sym_restrict] = ACTIONS(7623), - [anon_sym___restrict__] = ACTIONS(7623), - [anon_sym__Atomic] = ACTIONS(7623), - [anon_sym__Noreturn] = ACTIONS(7623), - [anon_sym_noreturn] = ACTIONS(7623), - [anon_sym__Nonnull] = ACTIONS(7623), - [anon_sym_mutable] = ACTIONS(7623), - [anon_sym_constinit] = ACTIONS(7623), - [anon_sym_consteval] = ACTIONS(7623), - [anon_sym_alignas] = ACTIONS(7623), - [anon_sym__Alignas] = ACTIONS(7623), - [sym_primitive_type] = ACTIONS(7623), - [anon_sym_QMARK] = ACTIONS(7625), - [anon_sym_LT_EQ_GT] = ACTIONS(7625), - [anon_sym_or] = ACTIONS(7623), - [anon_sym_and] = ACTIONS(7623), - [anon_sym_bitor] = ACTIONS(7623), - [anon_sym_xor] = ACTIONS(7623), - [anon_sym_bitand] = ACTIONS(7623), - [anon_sym_not_eq] = ACTIONS(7623), - [anon_sym_DASH_DASH] = ACTIONS(7625), - [anon_sym_PLUS_PLUS] = ACTIONS(7625), - [anon_sym_DOT] = ACTIONS(7623), - [anon_sym_DOT_STAR] = ACTIONS(7625), - [anon_sym_DASH_GT] = ACTIONS(7625), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7623), - [anon_sym_override] = ACTIONS(7623), - [anon_sym_requires] = ACTIONS(7623), - [anon_sym_COLON_RBRACK] = ACTIONS(7625), - }, - [STATE(3165)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_RBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7563), - [anon_sym_or_eq] = ACTIONS(7563), - [anon_sym_xor_eq] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), - }, - [STATE(3166)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), - [anon_sym_COMMA] = ACTIONS(7733), - [anon_sym_LPAREN2] = ACTIONS(7733), - [anon_sym_DASH] = ACTIONS(7731), - [anon_sym_PLUS] = ACTIONS(7731), - [anon_sym_STAR] = ACTIONS(7731), - [anon_sym_SLASH] = ACTIONS(7731), - [anon_sym_PERCENT] = ACTIONS(7731), - [anon_sym_PIPE_PIPE] = ACTIONS(7733), - [anon_sym_AMP_AMP] = ACTIONS(7733), - [anon_sym_PIPE] = ACTIONS(7731), - [anon_sym_CARET] = ACTIONS(7731), - [anon_sym_AMP] = ACTIONS(7731), - [anon_sym_EQ_EQ] = ACTIONS(7733), - [anon_sym_BANG_EQ] = ACTIONS(7733), - [anon_sym_GT] = ACTIONS(7731), - [anon_sym_GT_EQ] = ACTIONS(7733), - [anon_sym_LT_EQ] = ACTIONS(7731), - [anon_sym_LT] = ACTIONS(7731), - [anon_sym_LT_LT] = ACTIONS(7731), - [anon_sym_GT_GT] = ACTIONS(7731), - [anon_sym___extension__] = ACTIONS(7733), - [anon_sym_LBRACE] = ACTIONS(7733), - [anon_sym_LBRACK] = ACTIONS(7733), - [anon_sym_RBRACK] = ACTIONS(7733), - [anon_sym_EQ] = ACTIONS(7731), - [anon_sym_const] = ACTIONS(7731), - [anon_sym_constexpr] = ACTIONS(7733), - [anon_sym_volatile] = ACTIONS(7733), - [anon_sym_restrict] = ACTIONS(7733), - [anon_sym___restrict__] = ACTIONS(7733), - [anon_sym__Atomic] = ACTIONS(7733), - [anon_sym__Noreturn] = ACTIONS(7733), - [anon_sym_noreturn] = ACTIONS(7733), - [anon_sym__Nonnull] = ACTIONS(7733), - [anon_sym_mutable] = ACTIONS(7733), - [anon_sym_constinit] = ACTIONS(7733), - [anon_sym_consteval] = ACTIONS(7733), - [anon_sym_alignas] = ACTIONS(7733), - [anon_sym__Alignas] = ACTIONS(7733), - [anon_sym_QMARK] = ACTIONS(7733), - [anon_sym_STAR_EQ] = ACTIONS(7733), - [anon_sym_SLASH_EQ] = ACTIONS(7733), - [anon_sym_PERCENT_EQ] = ACTIONS(7733), - [anon_sym_PLUS_EQ] = ACTIONS(7733), - [anon_sym_DASH_EQ] = ACTIONS(7733), - [anon_sym_LT_LT_EQ] = ACTIONS(7733), - [anon_sym_GT_GT_EQ] = ACTIONS(7733), - [anon_sym_AMP_EQ] = ACTIONS(7733), - [anon_sym_CARET_EQ] = ACTIONS(7733), - [anon_sym_PIPE_EQ] = ACTIONS(7733), - [anon_sym_and_eq] = ACTIONS(7733), - [anon_sym_or_eq] = ACTIONS(7733), - [anon_sym_xor_eq] = ACTIONS(7733), - [anon_sym_LT_EQ_GT] = ACTIONS(7733), - [anon_sym_or] = ACTIONS(7731), - [anon_sym_and] = ACTIONS(7731), - [anon_sym_bitor] = ACTIONS(7733), - [anon_sym_xor] = ACTIONS(7731), - [anon_sym_bitand] = ACTIONS(7733), - [anon_sym_not_eq] = ACTIONS(7733), - [anon_sym_DASH_DASH] = ACTIONS(7733), - [anon_sym_PLUS_PLUS] = ACTIONS(7733), - [anon_sym_DOT] = ACTIONS(7731), - [anon_sym_DOT_STAR] = ACTIONS(7733), - [anon_sym_DASH_GT] = ACTIONS(7733), + [STATE(3110)] = { + [sym_identifier] = ACTIONS(7761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7763), + [anon_sym_COMMA] = ACTIONS(7763), + [anon_sym_RPAREN] = ACTIONS(7763), + [anon_sym_LPAREN2] = ACTIONS(7763), + [anon_sym_DASH] = ACTIONS(7761), + [anon_sym_PLUS] = ACTIONS(7761), + [anon_sym_STAR] = ACTIONS(7763), + [anon_sym_SLASH] = ACTIONS(7761), + [anon_sym_PERCENT] = ACTIONS(7763), + [anon_sym_PIPE_PIPE] = ACTIONS(7763), + [anon_sym_AMP_AMP] = ACTIONS(7763), + [anon_sym_PIPE] = ACTIONS(7761), + [anon_sym_CARET] = ACTIONS(7763), + [anon_sym_AMP] = ACTIONS(7761), + [anon_sym_EQ_EQ] = ACTIONS(7763), + [anon_sym_BANG_EQ] = ACTIONS(7763), + [anon_sym_GT] = ACTIONS(7761), + [anon_sym_GT_EQ] = ACTIONS(7763), + [anon_sym_LT_EQ] = ACTIONS(7761), + [anon_sym_LT] = ACTIONS(7761), + [anon_sym_LT_LT] = ACTIONS(7763), + [anon_sym_GT_GT] = ACTIONS(7763), + [anon_sym_SEMI] = ACTIONS(7763), + [anon_sym___extension__] = ACTIONS(7761), + [anon_sym___attribute__] = ACTIONS(7761), + [anon_sym___attribute] = ACTIONS(7761), + [anon_sym_COLON] = ACTIONS(7761), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7763), + [anon_sym___based] = ACTIONS(7761), + [anon_sym_LBRACE] = ACTIONS(7763), + [anon_sym_RBRACE] = ACTIONS(7763), + [anon_sym_signed] = ACTIONS(7761), + [anon_sym_unsigned] = ACTIONS(7761), + [anon_sym_long] = ACTIONS(7761), + [anon_sym_short] = ACTIONS(7761), + [anon_sym_LBRACK] = ACTIONS(7763), + [anon_sym_const] = ACTIONS(7761), + [anon_sym_constexpr] = ACTIONS(7761), + [anon_sym_volatile] = ACTIONS(7761), + [anon_sym_restrict] = ACTIONS(7761), + [anon_sym___restrict__] = ACTIONS(7761), + [anon_sym__Atomic] = ACTIONS(7761), + [anon_sym__Noreturn] = ACTIONS(7761), + [anon_sym_noreturn] = ACTIONS(7761), + [anon_sym__Nonnull] = ACTIONS(7761), + [anon_sym_mutable] = ACTIONS(7761), + [anon_sym_constinit] = ACTIONS(7761), + [anon_sym_consteval] = ACTIONS(7761), + [anon_sym_alignas] = ACTIONS(7761), + [anon_sym__Alignas] = ACTIONS(7761), + [sym_primitive_type] = ACTIONS(7761), + [anon_sym_QMARK] = ACTIONS(7763), + [anon_sym_LT_EQ_GT] = ACTIONS(7763), + [anon_sym_or] = ACTIONS(7761), + [anon_sym_and] = ACTIONS(7761), + [anon_sym_bitor] = ACTIONS(7761), + [anon_sym_xor] = ACTIONS(7761), + [anon_sym_bitand] = ACTIONS(7761), + [anon_sym_not_eq] = ACTIONS(7761), + [anon_sym_DASH_DASH] = ACTIONS(7763), + [anon_sym_PLUS_PLUS] = ACTIONS(7763), + [anon_sym_DOT] = ACTIONS(7761), + [anon_sym_DOT_STAR] = ACTIONS(7763), + [anon_sym_DASH_GT] = ACTIONS(7763), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7733), - [anon_sym_override] = ACTIONS(7733), - [anon_sym_requires] = ACTIONS(7733), - }, - [STATE(3167)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - }, - [STATE(3168)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3488), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(8598), - [anon_sym___attribute] = ACTIONS(8598), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_friend] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - }, - [STATE(3169)] = { - [sym_attribute_declaration] = STATE(3170), - [aux_sym_attributed_declarator_repeat1] = STATE(3170), - [sym_identifier] = ACTIONS(9071), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9073), - [anon_sym_COMMA] = ACTIONS(9073), - [anon_sym_RPAREN] = ACTIONS(9073), - [aux_sym_preproc_if_token2] = ACTIONS(9073), - [aux_sym_preproc_else_token1] = ACTIONS(9073), - [aux_sym_preproc_elif_token1] = ACTIONS(9071), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9073), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9073), - [anon_sym_LPAREN2] = ACTIONS(9073), - [anon_sym_DASH] = ACTIONS(9071), - [anon_sym_PLUS] = ACTIONS(9071), - [anon_sym_STAR] = ACTIONS(9071), - [anon_sym_SLASH] = ACTIONS(9071), - [anon_sym_PERCENT] = ACTIONS(9071), - [anon_sym_PIPE_PIPE] = ACTIONS(9073), - [anon_sym_AMP_AMP] = ACTIONS(9073), - [anon_sym_PIPE] = ACTIONS(9071), - [anon_sym_CARET] = ACTIONS(9071), - [anon_sym_AMP] = ACTIONS(9071), - [anon_sym_EQ_EQ] = ACTIONS(9073), - [anon_sym_BANG_EQ] = ACTIONS(9073), - [anon_sym_GT] = ACTIONS(9071), - [anon_sym_GT_EQ] = ACTIONS(9073), - [anon_sym_LT_EQ] = ACTIONS(9071), - [anon_sym_LT] = ACTIONS(9071), - [anon_sym_LT_LT] = ACTIONS(9071), - [anon_sym_GT_GT] = ACTIONS(9071), - [anon_sym_SEMI] = ACTIONS(9073), - [anon_sym___attribute__] = ACTIONS(9071), - [anon_sym___attribute] = ACTIONS(9071), - [anon_sym_COLON] = ACTIONS(9071), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9073), - [anon_sym_RBRACE] = ACTIONS(9073), - [anon_sym_LBRACK] = ACTIONS(9071), - [anon_sym_EQ] = ACTIONS(9071), - [anon_sym_QMARK] = ACTIONS(9073), - [anon_sym_STAR_EQ] = ACTIONS(9073), - [anon_sym_SLASH_EQ] = ACTIONS(9073), - [anon_sym_PERCENT_EQ] = ACTIONS(9073), - [anon_sym_PLUS_EQ] = ACTIONS(9073), - [anon_sym_DASH_EQ] = ACTIONS(9073), - [anon_sym_LT_LT_EQ] = ACTIONS(9073), - [anon_sym_GT_GT_EQ] = ACTIONS(9073), - [anon_sym_AMP_EQ] = ACTIONS(9073), - [anon_sym_CARET_EQ] = ACTIONS(9073), - [anon_sym_PIPE_EQ] = ACTIONS(9073), - [anon_sym_and_eq] = ACTIONS(9071), - [anon_sym_or_eq] = ACTIONS(9071), - [anon_sym_xor_eq] = ACTIONS(9071), - [anon_sym_LT_EQ_GT] = ACTIONS(9073), - [anon_sym_or] = ACTIONS(9071), - [anon_sym_and] = ACTIONS(9071), - [anon_sym_bitor] = ACTIONS(9071), - [anon_sym_xor] = ACTIONS(9071), - [anon_sym_bitand] = ACTIONS(9071), - [anon_sym_not_eq] = ACTIONS(9071), - [anon_sym_DASH_DASH] = ACTIONS(9073), - [anon_sym_PLUS_PLUS] = ACTIONS(9073), - [anon_sym_DOT] = ACTIONS(9071), - [anon_sym_DOT_STAR] = ACTIONS(9073), - [anon_sym_DASH_GT] = ACTIONS(9073), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9071), - [anon_sym_override] = ACTIONS(9071), - [anon_sym_requires] = ACTIONS(9071), - [anon_sym_COLON_RBRACK] = ACTIONS(9073), - }, - [STATE(3170)] = { - [sym_attribute_declaration] = STATE(3170), - [aux_sym_attributed_declarator_repeat1] = STATE(3170), - [sym_identifier] = ACTIONS(2461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9075), - [anon_sym_COMMA] = ACTIONS(9075), - [anon_sym_RPAREN] = ACTIONS(9075), - [aux_sym_preproc_if_token2] = ACTIONS(9075), - [aux_sym_preproc_else_token1] = ACTIONS(9075), - [aux_sym_preproc_elif_token1] = ACTIONS(2461), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9075), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9075), - [anon_sym_LPAREN2] = ACTIONS(9075), - [anon_sym_DASH] = ACTIONS(2461), - [anon_sym_PLUS] = ACTIONS(2461), - [anon_sym_STAR] = ACTIONS(2461), - [anon_sym_SLASH] = ACTIONS(2461), - [anon_sym_PERCENT] = ACTIONS(2461), - [anon_sym_PIPE_PIPE] = ACTIONS(9075), - [anon_sym_AMP_AMP] = ACTIONS(9075), - [anon_sym_PIPE] = ACTIONS(2461), - [anon_sym_CARET] = ACTIONS(2461), - [anon_sym_AMP] = ACTIONS(2461), - [anon_sym_EQ_EQ] = ACTIONS(9075), - [anon_sym_BANG_EQ] = ACTIONS(9075), - [anon_sym_GT] = ACTIONS(2461), - [anon_sym_GT_EQ] = ACTIONS(9075), - [anon_sym_LT_EQ] = ACTIONS(2461), - [anon_sym_LT] = ACTIONS(2461), - [anon_sym_LT_LT] = ACTIONS(2461), - [anon_sym_GT_GT] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(9075), - [anon_sym___attribute__] = ACTIONS(2461), - [anon_sym___attribute] = ACTIONS(2461), - [anon_sym_COLON] = ACTIONS(2461), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9077), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9075), - [anon_sym_RBRACE] = ACTIONS(9075), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_EQ] = ACTIONS(2461), - [anon_sym_QMARK] = ACTIONS(9075), - [anon_sym_STAR_EQ] = ACTIONS(9075), - [anon_sym_SLASH_EQ] = ACTIONS(9075), - [anon_sym_PERCENT_EQ] = ACTIONS(9075), - [anon_sym_PLUS_EQ] = ACTIONS(9075), - [anon_sym_DASH_EQ] = ACTIONS(9075), - [anon_sym_LT_LT_EQ] = ACTIONS(9075), - [anon_sym_GT_GT_EQ] = ACTIONS(9075), - [anon_sym_AMP_EQ] = ACTIONS(9075), - [anon_sym_CARET_EQ] = ACTIONS(9075), - [anon_sym_PIPE_EQ] = ACTIONS(9075), - [anon_sym_and_eq] = ACTIONS(2461), - [anon_sym_or_eq] = ACTIONS(2461), - [anon_sym_xor_eq] = ACTIONS(2461), - [anon_sym_LT_EQ_GT] = ACTIONS(9075), - [anon_sym_or] = ACTIONS(2461), - [anon_sym_and] = ACTIONS(2461), - [anon_sym_bitor] = ACTIONS(2461), - [anon_sym_xor] = ACTIONS(2461), - [anon_sym_bitand] = ACTIONS(2461), - [anon_sym_not_eq] = ACTIONS(2461), - [anon_sym_DASH_DASH] = ACTIONS(9075), - [anon_sym_PLUS_PLUS] = ACTIONS(9075), - [anon_sym_DOT] = ACTIONS(2461), - [anon_sym_DOT_STAR] = ACTIONS(9075), - [anon_sym_DASH_GT] = ACTIONS(9075), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(2461), - [anon_sym_override] = ACTIONS(2461), - [anon_sym_requires] = ACTIONS(2461), - [anon_sym_COLON_RBRACK] = ACTIONS(9075), + [anon_sym_final] = ACTIONS(7761), + [anon_sym_override] = ACTIONS(7761), + [anon_sym_requires] = ACTIONS(7761), + [anon_sym_COLON_RBRACK] = ACTIONS(7763), }, - [STATE(3171)] = { - [sym_identifier] = ACTIONS(7231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_RPAREN] = ACTIONS(7233), - [aux_sym_preproc_if_token2] = ACTIONS(7233), - [aux_sym_preproc_else_token1] = ACTIONS(7233), - [aux_sym_preproc_elif_token1] = ACTIONS(7231), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7233), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_DASH] = ACTIONS(7231), - [anon_sym_PLUS] = ACTIONS(7231), - [anon_sym_STAR] = ACTIONS(7233), - [anon_sym_SLASH] = ACTIONS(7231), - [anon_sym_PERCENT] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_PIPE] = ACTIONS(7231), - [anon_sym_CARET] = ACTIONS(7233), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_EQ_EQ] = ACTIONS(7233), - [anon_sym_BANG_EQ] = ACTIONS(7233), - [anon_sym_GT] = ACTIONS(7231), - [anon_sym_GT_EQ] = ACTIONS(7233), - [anon_sym_LT_EQ] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7231), - [anon_sym_LT_LT] = ACTIONS(7233), - [anon_sym_GT_GT] = ACTIONS(7233), - [anon_sym_SEMI] = ACTIONS(7233), - [anon_sym___extension__] = ACTIONS(7231), - [anon_sym___attribute__] = ACTIONS(7231), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(7233), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7233), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_RBRACE] = ACTIONS(7233), - [anon_sym_LBRACK] = ACTIONS(7233), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7231), - [anon_sym_volatile] = ACTIONS(7231), - [anon_sym_restrict] = ACTIONS(7231), - [anon_sym___restrict__] = ACTIONS(7231), - [anon_sym__Atomic] = ACTIONS(7231), - [anon_sym__Noreturn] = ACTIONS(7231), - [anon_sym_noreturn] = ACTIONS(7231), - [anon_sym__Nonnull] = ACTIONS(7231), - [anon_sym_mutable] = ACTIONS(7231), - [anon_sym_constinit] = ACTIONS(7231), - [anon_sym_consteval] = ACTIONS(7231), - [anon_sym_alignas] = ACTIONS(7231), - [anon_sym__Alignas] = ACTIONS(7231), - [anon_sym_QMARK] = ACTIONS(7233), - [anon_sym_LT_EQ_GT] = ACTIONS(7233), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_bitor] = ACTIONS(7231), - [anon_sym_xor] = ACTIONS(7231), - [anon_sym_bitand] = ACTIONS(7231), - [anon_sym_not_eq] = ACTIONS(7231), - [anon_sym_DASH_DASH] = ACTIONS(7233), - [anon_sym_PLUS_PLUS] = ACTIONS(7233), - [anon_sym_DOT] = ACTIONS(7231), - [anon_sym_DOT_STAR] = ACTIONS(7233), - [anon_sym_DASH_GT] = ACTIONS(7233), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7231), - [anon_sym_override] = ACTIONS(7231), - [anon_sym_requires] = ACTIONS(7231), - [anon_sym_COLON_RBRACK] = ACTIONS(7233), + [STATE(3111)] = { + [sym_decltype_auto] = STATE(3149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8633), + [anon_sym_decltype] = ACTIONS(7056), }, - [STATE(3172)] = { - [sym_identifier] = ACTIONS(9080), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9082), - [anon_sym_COMMA] = ACTIONS(9082), - [anon_sym_RPAREN] = ACTIONS(9082), - [aux_sym_preproc_if_token2] = ACTIONS(9082), - [aux_sym_preproc_else_token1] = ACTIONS(9082), - [aux_sym_preproc_elif_token1] = ACTIONS(9080), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9082), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9082), - [anon_sym_LPAREN2] = ACTIONS(9082), - [anon_sym_DASH] = ACTIONS(9080), - [anon_sym_PLUS] = ACTIONS(9080), - [anon_sym_STAR] = ACTIONS(9080), - [anon_sym_SLASH] = ACTIONS(9080), - [anon_sym_PERCENT] = ACTIONS(9080), - [anon_sym_PIPE_PIPE] = ACTIONS(9082), - [anon_sym_AMP_AMP] = ACTIONS(9082), - [anon_sym_PIPE] = ACTIONS(9080), - [anon_sym_CARET] = ACTIONS(9080), - [anon_sym_AMP] = ACTIONS(9080), - [anon_sym_EQ_EQ] = ACTIONS(9082), - [anon_sym_BANG_EQ] = ACTIONS(9082), - [anon_sym_GT] = ACTIONS(9080), - [anon_sym_GT_EQ] = ACTIONS(9082), - [anon_sym_LT_EQ] = ACTIONS(9080), - [anon_sym_LT] = ACTIONS(9080), - [anon_sym_LT_LT] = ACTIONS(9080), - [anon_sym_GT_GT] = ACTIONS(9080), - [anon_sym_SEMI] = ACTIONS(9082), - [anon_sym___attribute__] = ACTIONS(9080), - [anon_sym___attribute] = ACTIONS(9080), - [anon_sym_COLON] = ACTIONS(9080), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9082), - [anon_sym_LBRACE] = ACTIONS(9082), - [anon_sym_RBRACE] = ACTIONS(9082), - [anon_sym_LBRACK] = ACTIONS(9080), - [anon_sym_RBRACK] = ACTIONS(9082), - [anon_sym_EQ] = ACTIONS(9080), - [anon_sym_QMARK] = ACTIONS(9082), - [anon_sym_STAR_EQ] = ACTIONS(9082), - [anon_sym_SLASH_EQ] = ACTIONS(9082), - [anon_sym_PERCENT_EQ] = ACTIONS(9082), - [anon_sym_PLUS_EQ] = ACTIONS(9082), - [anon_sym_DASH_EQ] = ACTIONS(9082), - [anon_sym_LT_LT_EQ] = ACTIONS(9082), - [anon_sym_GT_GT_EQ] = ACTIONS(9082), - [anon_sym_AMP_EQ] = ACTIONS(9082), - [anon_sym_CARET_EQ] = ACTIONS(9082), - [anon_sym_PIPE_EQ] = ACTIONS(9082), - [anon_sym_and_eq] = ACTIONS(9080), - [anon_sym_or_eq] = ACTIONS(9080), - [anon_sym_xor_eq] = ACTIONS(9080), - [anon_sym_LT_EQ_GT] = ACTIONS(9082), - [anon_sym_or] = ACTIONS(9080), - [anon_sym_and] = ACTIONS(9080), - [anon_sym_bitor] = ACTIONS(9080), - [anon_sym_xor] = ACTIONS(9080), - [anon_sym_bitand] = ACTIONS(9080), - [anon_sym_not_eq] = ACTIONS(9080), - [anon_sym_DASH_DASH] = ACTIONS(9082), - [anon_sym_PLUS_PLUS] = ACTIONS(9082), - [anon_sym_asm] = ACTIONS(9080), - [anon_sym___asm__] = ACTIONS(9080), - [anon_sym___asm] = ACTIONS(9080), - [anon_sym_DOT] = ACTIONS(9080), - [anon_sym_DOT_STAR] = ACTIONS(9082), - [anon_sym_DASH_GT] = ACTIONS(9082), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9080), - [anon_sym_COLON_RBRACK] = ACTIONS(9082), + [STATE(3112)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7702), + [anon_sym_COMMA] = ACTIONS(7702), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_DASH] = ACTIONS(7700), + [anon_sym_PLUS] = ACTIONS(7700), + [anon_sym_STAR] = ACTIONS(7700), + [anon_sym_SLASH] = ACTIONS(7700), + [anon_sym_PERCENT] = ACTIONS(7700), + [anon_sym_PIPE_PIPE] = ACTIONS(7702), + [anon_sym_AMP_AMP] = ACTIONS(7702), + [anon_sym_PIPE] = ACTIONS(7700), + [anon_sym_CARET] = ACTIONS(7700), + [anon_sym_AMP] = ACTIONS(7700), + [anon_sym_EQ_EQ] = ACTIONS(7702), + [anon_sym_BANG_EQ] = ACTIONS(7702), + [anon_sym_GT] = ACTIONS(7700), + [anon_sym_GT_EQ] = ACTIONS(7700), + [anon_sym_LT_EQ] = ACTIONS(7700), + [anon_sym_LT] = ACTIONS(7700), + [anon_sym_LT_LT] = ACTIONS(7700), + [anon_sym_GT_GT] = ACTIONS(7700), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym_LBRACE] = ACTIONS(7702), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_EQ] = ACTIONS(7700), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7702), + [anon_sym_volatile] = ACTIONS(7702), + [anon_sym_restrict] = ACTIONS(7702), + [anon_sym___restrict__] = ACTIONS(7702), + [anon_sym__Atomic] = ACTIONS(7702), + [anon_sym__Noreturn] = ACTIONS(7702), + [anon_sym_noreturn] = ACTIONS(7702), + [anon_sym__Nonnull] = ACTIONS(7702), + [anon_sym_mutable] = ACTIONS(7702), + [anon_sym_constinit] = ACTIONS(7702), + [anon_sym_consteval] = ACTIONS(7702), + [anon_sym_alignas] = ACTIONS(7702), + [anon_sym__Alignas] = ACTIONS(7702), + [anon_sym_QMARK] = ACTIONS(7702), + [anon_sym_STAR_EQ] = ACTIONS(7702), + [anon_sym_SLASH_EQ] = ACTIONS(7702), + [anon_sym_PERCENT_EQ] = ACTIONS(7702), + [anon_sym_PLUS_EQ] = ACTIONS(7702), + [anon_sym_DASH_EQ] = ACTIONS(7702), + [anon_sym_LT_LT_EQ] = ACTIONS(7702), + [anon_sym_GT_GT_EQ] = ACTIONS(7700), + [anon_sym_AMP_EQ] = ACTIONS(7702), + [anon_sym_CARET_EQ] = ACTIONS(7702), + [anon_sym_PIPE_EQ] = ACTIONS(7702), + [anon_sym_and_eq] = ACTIONS(7702), + [anon_sym_or_eq] = ACTIONS(7702), + [anon_sym_xor_eq] = ACTIONS(7702), + [anon_sym_LT_EQ_GT] = ACTIONS(7702), + [anon_sym_or] = ACTIONS(7700), + [anon_sym_and] = ACTIONS(7700), + [anon_sym_bitor] = ACTIONS(7702), + [anon_sym_xor] = ACTIONS(7700), + [anon_sym_bitand] = ACTIONS(7702), + [anon_sym_not_eq] = ACTIONS(7702), + [anon_sym_DASH_DASH] = ACTIONS(7702), + [anon_sym_PLUS_PLUS] = ACTIONS(7702), + [anon_sym_DOT] = ACTIONS(7700), + [anon_sym_DOT_STAR] = ACTIONS(7702), + [anon_sym_DASH_GT] = ACTIONS(7702), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_GT2] = ACTIONS(7702), + [anon_sym_requires] = ACTIONS(7702), }, - [STATE(3173)] = { - [sym_template_argument_list] = STATE(3735), - [aux_sym_sized_type_specifier_repeat1] = STATE(3552), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), - [anon_sym_COMMA] = ACTIONS(7359), - [anon_sym_RPAREN] = ACTIONS(7359), - [anon_sym_LPAREN2] = ACTIONS(7359), - [anon_sym_DASH] = ACTIONS(7357), - [anon_sym_PLUS] = ACTIONS(7357), - [anon_sym_STAR] = ACTIONS(7359), - [anon_sym_SLASH] = ACTIONS(7357), - [anon_sym_PERCENT] = ACTIONS(7359), - [anon_sym_PIPE_PIPE] = ACTIONS(7359), - [anon_sym_AMP_AMP] = ACTIONS(7359), - [anon_sym_PIPE] = ACTIONS(7357), - [anon_sym_CARET] = ACTIONS(7359), - [anon_sym_AMP] = ACTIONS(7357), - [anon_sym_EQ_EQ] = ACTIONS(7359), - [anon_sym_BANG_EQ] = ACTIONS(7359), - [anon_sym_GT] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7359), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_LT] = ACTIONS(7357), - [anon_sym_LT_LT] = ACTIONS(7359), - [anon_sym_GT_GT] = ACTIONS(7359), - [anon_sym_SEMI] = ACTIONS(7359), - [anon_sym___extension__] = ACTIONS(7359), - [anon_sym___attribute__] = ACTIONS(7359), - [anon_sym___attribute] = ACTIONS(7357), - [anon_sym_COLON] = ACTIONS(7357), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7359), - [anon_sym_LBRACE] = ACTIONS(7359), - [anon_sym_RBRACE] = ACTIONS(7359), - [anon_sym_signed] = ACTIONS(6867), - [anon_sym_unsigned] = ACTIONS(6867), - [anon_sym_long] = ACTIONS(6867), - [anon_sym_short] = ACTIONS(6867), - [anon_sym_LBRACK] = ACTIONS(7359), - [anon_sym_const] = ACTIONS(7357), - [anon_sym_constexpr] = ACTIONS(7359), - [anon_sym_volatile] = ACTIONS(7359), - [anon_sym_restrict] = ACTIONS(7359), - [anon_sym___restrict__] = ACTIONS(7359), - [anon_sym__Atomic] = ACTIONS(7359), - [anon_sym__Noreturn] = ACTIONS(7359), - [anon_sym_noreturn] = ACTIONS(7359), - [anon_sym__Nonnull] = ACTIONS(7359), - [anon_sym_mutable] = ACTIONS(7359), - [anon_sym_constinit] = ACTIONS(7359), - [anon_sym_consteval] = ACTIONS(7359), - [anon_sym_alignas] = ACTIONS(7359), - [anon_sym__Alignas] = ACTIONS(7359), - [anon_sym_QMARK] = ACTIONS(7359), - [anon_sym_LT_EQ_GT] = ACTIONS(7359), - [anon_sym_or] = ACTIONS(7359), - [anon_sym_and] = ACTIONS(7359), - [anon_sym_bitor] = ACTIONS(7359), - [anon_sym_xor] = ACTIONS(7359), - [anon_sym_bitand] = ACTIONS(7359), - [anon_sym_not_eq] = ACTIONS(7359), - [anon_sym_DASH_DASH] = ACTIONS(7359), - [anon_sym_PLUS_PLUS] = ACTIONS(7359), - [anon_sym_DOT] = ACTIONS(7357), - [anon_sym_DOT_STAR] = ACTIONS(7359), - [anon_sym_DASH_GT] = ACTIONS(7359), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7359), - [anon_sym_override] = ACTIONS(7359), - [anon_sym_requires] = ACTIONS(7359), - [anon_sym_COLON_RBRACK] = ACTIONS(7359), + [STATE(3113)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7638), + [anon_sym_PLUS] = ACTIONS(7638), + [anon_sym_STAR] = ACTIONS(7638), + [anon_sym_SLASH] = ACTIONS(7638), + [anon_sym_PERCENT] = ACTIONS(7638), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7638), + [anon_sym_CARET] = ACTIONS(7638), + [anon_sym_AMP] = ACTIONS(7638), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_GT] = ACTIONS(7638), + [anon_sym_GT_EQ] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7638), + [anon_sym_LT] = ACTIONS(7638), + [anon_sym_LT_LT] = ACTIONS(7638), + [anon_sym_GT_GT] = ACTIONS(7638), + [anon_sym___extension__] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_RBRACK] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(7638), + [anon_sym_const] = ACTIONS(7638), + [anon_sym_constexpr] = ACTIONS(7640), + [anon_sym_volatile] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7640), + [anon_sym___restrict__] = ACTIONS(7640), + [anon_sym__Atomic] = ACTIONS(7640), + [anon_sym__Noreturn] = ACTIONS(7640), + [anon_sym_noreturn] = ACTIONS(7640), + [anon_sym__Nonnull] = ACTIONS(7640), + [anon_sym_mutable] = ACTIONS(7640), + [anon_sym_constinit] = ACTIONS(7640), + [anon_sym_consteval] = ACTIONS(7640), + [anon_sym_alignas] = ACTIONS(7640), + [anon_sym__Alignas] = ACTIONS(7640), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_STAR_EQ] = ACTIONS(7640), + [anon_sym_SLASH_EQ] = ACTIONS(7640), + [anon_sym_PERCENT_EQ] = ACTIONS(7640), + [anon_sym_PLUS_EQ] = ACTIONS(7640), + [anon_sym_DASH_EQ] = ACTIONS(7640), + [anon_sym_LT_LT_EQ] = ACTIONS(7640), + [anon_sym_GT_GT_EQ] = ACTIONS(7640), + [anon_sym_AMP_EQ] = ACTIONS(7640), + [anon_sym_CARET_EQ] = ACTIONS(7640), + [anon_sym_PIPE_EQ] = ACTIONS(7640), + [anon_sym_and_eq] = ACTIONS(7640), + [anon_sym_or_eq] = ACTIONS(7640), + [anon_sym_xor_eq] = ACTIONS(7640), + [anon_sym_LT_EQ_GT] = ACTIONS(7640), + [anon_sym_or] = ACTIONS(7638), + [anon_sym_and] = ACTIONS(7638), + [anon_sym_bitor] = ACTIONS(7640), + [anon_sym_xor] = ACTIONS(7638), + [anon_sym_bitand] = ACTIONS(7640), + [anon_sym_not_eq] = ACTIONS(7640), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7638), + [anon_sym_DOT_STAR] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7640), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7640), + [anon_sym_override] = ACTIONS(7640), + [anon_sym_requires] = ACTIONS(7640), }, - [STATE(3174)] = { - [sym_attribute_specifier] = STATE(3784), - [sym_attribute_declaration] = STATE(6395), - [sym_type_qualifier] = STATE(3736), - [sym_alignas_qualifier] = STATE(4026), - [aux_sym_type_definition_repeat1] = STATE(3784), - [aux_sym__type_definition_type_repeat1] = STATE(3736), - [aux_sym_attributed_declarator_repeat1] = STATE(6395), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6754), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6754), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6754), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6754), - [anon_sym_GT_GT] = ACTIONS(6754), - [anon_sym___extension__] = ACTIONS(7882), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_RBRACK] = ACTIONS(6754), - [anon_sym_const] = ACTIONS(7890), - [anon_sym_constexpr] = ACTIONS(7882), - [anon_sym_volatile] = ACTIONS(7882), - [anon_sym_restrict] = ACTIONS(7882), - [anon_sym___restrict__] = ACTIONS(7882), - [anon_sym__Atomic] = ACTIONS(7882), - [anon_sym__Noreturn] = ACTIONS(7882), - [anon_sym_noreturn] = ACTIONS(7882), - [anon_sym__Nonnull] = ACTIONS(7882), - [anon_sym_mutable] = ACTIONS(7882), - [anon_sym_constinit] = ACTIONS(7882), - [anon_sym_consteval] = ACTIONS(7882), - [anon_sym_alignas] = ACTIONS(7892), - [anon_sym__Alignas] = ACTIONS(7892), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6754), - [anon_sym_and] = ACTIONS(6754), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6754), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), + [STATE(3114)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7648), + [anon_sym_COMMA] = ACTIONS(7648), + [anon_sym_LPAREN2] = ACTIONS(7648), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_STAR] = ACTIONS(7646), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_PERCENT] = ACTIONS(7646), + [anon_sym_PIPE_PIPE] = ACTIONS(7648), + [anon_sym_AMP_AMP] = ACTIONS(7648), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_CARET] = ACTIONS(7646), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_EQ_EQ] = ACTIONS(7648), + [anon_sym_BANG_EQ] = ACTIONS(7648), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7648), + [anon_sym_LT_EQ] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_LT_LT] = ACTIONS(7646), + [anon_sym_GT_GT] = ACTIONS(7646), + [anon_sym___extension__] = ACTIONS(7648), + [anon_sym_LBRACE] = ACTIONS(7648), + [anon_sym_LBRACK] = ACTIONS(7648), + [anon_sym_RBRACK] = ACTIONS(7648), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_const] = ACTIONS(7646), + [anon_sym_constexpr] = ACTIONS(7648), + [anon_sym_volatile] = ACTIONS(7648), + [anon_sym_restrict] = ACTIONS(7648), + [anon_sym___restrict__] = ACTIONS(7648), + [anon_sym__Atomic] = ACTIONS(7648), + [anon_sym__Noreturn] = ACTIONS(7648), + [anon_sym_noreturn] = ACTIONS(7648), + [anon_sym__Nonnull] = ACTIONS(7648), + [anon_sym_mutable] = ACTIONS(7648), + [anon_sym_constinit] = ACTIONS(7648), + [anon_sym_consteval] = ACTIONS(7648), + [anon_sym_alignas] = ACTIONS(7648), + [anon_sym__Alignas] = ACTIONS(7648), + [anon_sym_QMARK] = ACTIONS(7648), + [anon_sym_STAR_EQ] = ACTIONS(7648), + [anon_sym_SLASH_EQ] = ACTIONS(7648), + [anon_sym_PERCENT_EQ] = ACTIONS(7648), + [anon_sym_PLUS_EQ] = ACTIONS(7648), + [anon_sym_DASH_EQ] = ACTIONS(7648), + [anon_sym_LT_LT_EQ] = ACTIONS(7648), + [anon_sym_GT_GT_EQ] = ACTIONS(7648), + [anon_sym_AMP_EQ] = ACTIONS(7648), + [anon_sym_CARET_EQ] = ACTIONS(7648), + [anon_sym_PIPE_EQ] = ACTIONS(7648), + [anon_sym_and_eq] = ACTIONS(7648), + [anon_sym_or_eq] = ACTIONS(7648), + [anon_sym_xor_eq] = ACTIONS(7648), + [anon_sym_LT_EQ_GT] = ACTIONS(7648), + [anon_sym_or] = ACTIONS(7646), + [anon_sym_and] = ACTIONS(7646), + [anon_sym_bitor] = ACTIONS(7648), + [anon_sym_xor] = ACTIONS(7646), + [anon_sym_bitand] = ACTIONS(7648), + [anon_sym_not_eq] = ACTIONS(7648), + [anon_sym_DASH_DASH] = ACTIONS(7648), + [anon_sym_PLUS_PLUS] = ACTIONS(7648), + [anon_sym_DOT] = ACTIONS(7646), + [anon_sym_DOT_STAR] = ACTIONS(7648), + [anon_sym_DASH_GT] = ACTIONS(7648), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7648), + [anon_sym_override] = ACTIONS(7648), + [anon_sym_requires] = ACTIONS(7648), }, - [STATE(3175)] = { - [sym_identifier] = ACTIONS(7667), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), - [anon_sym_COMMA] = ACTIONS(7669), - [anon_sym_RPAREN] = ACTIONS(7669), - [anon_sym_LPAREN2] = ACTIONS(7669), - [anon_sym_DASH] = ACTIONS(7667), - [anon_sym_PLUS] = ACTIONS(7667), - [anon_sym_STAR] = ACTIONS(7669), - [anon_sym_SLASH] = ACTIONS(7667), - [anon_sym_PERCENT] = ACTIONS(7669), - [anon_sym_PIPE_PIPE] = ACTIONS(7669), - [anon_sym_AMP_AMP] = ACTIONS(7669), - [anon_sym_PIPE] = ACTIONS(7667), - [anon_sym_CARET] = ACTIONS(7669), - [anon_sym_AMP] = ACTIONS(7667), - [anon_sym_EQ_EQ] = ACTIONS(7669), - [anon_sym_BANG_EQ] = ACTIONS(7669), - [anon_sym_GT] = ACTIONS(7667), - [anon_sym_GT_EQ] = ACTIONS(7669), - [anon_sym_LT_EQ] = ACTIONS(7667), - [anon_sym_LT] = ACTIONS(7667), - [anon_sym_LT_LT] = ACTIONS(7669), - [anon_sym_GT_GT] = ACTIONS(7669), - [anon_sym_SEMI] = ACTIONS(7669), - [anon_sym___extension__] = ACTIONS(7667), - [anon_sym___attribute__] = ACTIONS(7667), - [anon_sym___attribute] = ACTIONS(7667), - [anon_sym_COLON] = ACTIONS(7667), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7669), - [anon_sym___based] = ACTIONS(7667), - [anon_sym_LBRACE] = ACTIONS(7669), - [anon_sym_RBRACE] = ACTIONS(7669), - [anon_sym_signed] = ACTIONS(7667), - [anon_sym_unsigned] = ACTIONS(7667), - [anon_sym_long] = ACTIONS(7667), - [anon_sym_short] = ACTIONS(7667), - [anon_sym_LBRACK] = ACTIONS(7669), - [anon_sym_const] = ACTIONS(7667), - [anon_sym_constexpr] = ACTIONS(7667), - [anon_sym_volatile] = ACTIONS(7667), - [anon_sym_restrict] = ACTIONS(7667), - [anon_sym___restrict__] = ACTIONS(7667), - [anon_sym__Atomic] = ACTIONS(7667), - [anon_sym__Noreturn] = ACTIONS(7667), - [anon_sym_noreturn] = ACTIONS(7667), - [anon_sym__Nonnull] = ACTIONS(7667), - [anon_sym_mutable] = ACTIONS(7667), - [anon_sym_constinit] = ACTIONS(7667), - [anon_sym_consteval] = ACTIONS(7667), - [anon_sym_alignas] = ACTIONS(7667), - [anon_sym__Alignas] = ACTIONS(7667), - [sym_primitive_type] = ACTIONS(7667), - [anon_sym_QMARK] = ACTIONS(7669), - [anon_sym_LT_EQ_GT] = ACTIONS(7669), - [anon_sym_or] = ACTIONS(7667), - [anon_sym_and] = ACTIONS(7667), - [anon_sym_bitor] = ACTIONS(7667), - [anon_sym_xor] = ACTIONS(7667), - [anon_sym_bitand] = ACTIONS(7667), - [anon_sym_not_eq] = ACTIONS(7667), - [anon_sym_DASH_DASH] = ACTIONS(7669), - [anon_sym_PLUS_PLUS] = ACTIONS(7669), - [anon_sym_DOT] = ACTIONS(7667), - [anon_sym_DOT_STAR] = ACTIONS(7669), - [anon_sym_DASH_GT] = ACTIONS(7669), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7667), - [anon_sym_override] = ACTIONS(7667), - [anon_sym_requires] = ACTIONS(7667), - [anon_sym_COLON_RBRACK] = ACTIONS(7669), + [STATE(3115)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7706), + [anon_sym_COMMA] = ACTIONS(7706), + [anon_sym_LPAREN2] = ACTIONS(7706), + [anon_sym_DASH] = ACTIONS(7704), + [anon_sym_PLUS] = ACTIONS(7704), + [anon_sym_STAR] = ACTIONS(7704), + [anon_sym_SLASH] = ACTIONS(7704), + [anon_sym_PERCENT] = ACTIONS(7704), + [anon_sym_PIPE_PIPE] = ACTIONS(7706), + [anon_sym_AMP_AMP] = ACTIONS(7706), + [anon_sym_PIPE] = ACTIONS(7704), + [anon_sym_CARET] = ACTIONS(7704), + [anon_sym_AMP] = ACTIONS(7704), + [anon_sym_EQ_EQ] = ACTIONS(7706), + [anon_sym_BANG_EQ] = ACTIONS(7706), + [anon_sym_GT] = ACTIONS(7704), + [anon_sym_GT_EQ] = ACTIONS(7704), + [anon_sym_LT_EQ] = ACTIONS(7704), + [anon_sym_LT] = ACTIONS(7704), + [anon_sym_LT_LT] = ACTIONS(7704), + [anon_sym_GT_GT] = ACTIONS(7704), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym_LBRACE] = ACTIONS(7706), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_EQ] = ACTIONS(7704), + [anon_sym_const] = ACTIONS(7704), + [anon_sym_constexpr] = ACTIONS(7706), + [anon_sym_volatile] = ACTIONS(7706), + [anon_sym_restrict] = ACTIONS(7706), + [anon_sym___restrict__] = ACTIONS(7706), + [anon_sym__Atomic] = ACTIONS(7706), + [anon_sym__Noreturn] = ACTIONS(7706), + [anon_sym_noreturn] = ACTIONS(7706), + [anon_sym__Nonnull] = ACTIONS(7706), + [anon_sym_mutable] = ACTIONS(7706), + [anon_sym_constinit] = ACTIONS(7706), + [anon_sym_consteval] = ACTIONS(7706), + [anon_sym_alignas] = ACTIONS(7706), + [anon_sym__Alignas] = ACTIONS(7706), + [anon_sym_QMARK] = ACTIONS(7706), + [anon_sym_STAR_EQ] = ACTIONS(7706), + [anon_sym_SLASH_EQ] = ACTIONS(7706), + [anon_sym_PERCENT_EQ] = ACTIONS(7706), + [anon_sym_PLUS_EQ] = ACTIONS(7706), + [anon_sym_DASH_EQ] = ACTIONS(7706), + [anon_sym_LT_LT_EQ] = ACTIONS(7706), + [anon_sym_GT_GT_EQ] = ACTIONS(7704), + [anon_sym_AMP_EQ] = ACTIONS(7706), + [anon_sym_CARET_EQ] = ACTIONS(7706), + [anon_sym_PIPE_EQ] = ACTIONS(7706), + [anon_sym_and_eq] = ACTIONS(7706), + [anon_sym_or_eq] = ACTIONS(7706), + [anon_sym_xor_eq] = ACTIONS(7706), + [anon_sym_LT_EQ_GT] = ACTIONS(7706), + [anon_sym_or] = ACTIONS(7704), + [anon_sym_and] = ACTIONS(7704), + [anon_sym_bitor] = ACTIONS(7706), + [anon_sym_xor] = ACTIONS(7704), + [anon_sym_bitand] = ACTIONS(7706), + [anon_sym_not_eq] = ACTIONS(7706), + [anon_sym_DASH_DASH] = ACTIONS(7706), + [anon_sym_PLUS_PLUS] = ACTIONS(7706), + [anon_sym_DOT] = ACTIONS(7704), + [anon_sym_DOT_STAR] = ACTIONS(7706), + [anon_sym_DASH_GT] = ACTIONS(7706), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_GT2] = ACTIONS(7706), + [anon_sym_requires] = ACTIONS(7706), }, - [STATE(3176)] = { - [sym_decltype_auto] = STATE(3205), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8639), - [anon_sym_decltype] = ACTIONS(7073), + [STATE(3116)] = { + [sym_template_argument_list] = STATE(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7119), + [anon_sym_COMMA] = ACTIONS(7119), + [anon_sym_RPAREN] = ACTIONS(7119), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_DASH] = ACTIONS(7126), + [anon_sym_PLUS] = ACTIONS(7126), + [anon_sym_STAR] = ACTIONS(7126), + [anon_sym_SLASH] = ACTIONS(7126), + [anon_sym_PERCENT] = ACTIONS(7126), + [anon_sym_PIPE_PIPE] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7119), + [anon_sym_PIPE] = ACTIONS(7126), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_AMP] = ACTIONS(7126), + [anon_sym_EQ_EQ] = ACTIONS(7119), + [anon_sym_BANG_EQ] = ACTIONS(7119), + [anon_sym_GT] = ACTIONS(7126), + [anon_sym_GT_EQ] = ACTIONS(7119), + [anon_sym_LT_EQ] = ACTIONS(7126), + [anon_sym_LT] = ACTIONS(8011), + [anon_sym_LT_LT] = ACTIONS(7126), + [anon_sym_GT_GT] = ACTIONS(7126), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_EQ] = ACTIONS(7126), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7119), + [anon_sym_STAR_EQ] = ACTIONS(7119), + [anon_sym_SLASH_EQ] = ACTIONS(7119), + [anon_sym_PERCENT_EQ] = ACTIONS(7119), + [anon_sym_PLUS_EQ] = ACTIONS(7119), + [anon_sym_DASH_EQ] = ACTIONS(7119), + [anon_sym_LT_LT_EQ] = ACTIONS(7119), + [anon_sym_GT_GT_EQ] = ACTIONS(7119), + [anon_sym_AMP_EQ] = ACTIONS(7119), + [anon_sym_CARET_EQ] = ACTIONS(7119), + [anon_sym_PIPE_EQ] = ACTIONS(7119), + [anon_sym_and_eq] = ACTIONS(7119), + [anon_sym_or_eq] = ACTIONS(7119), + [anon_sym_xor_eq] = ACTIONS(7119), + [anon_sym_LT_EQ_GT] = ACTIONS(7119), + [anon_sym_or] = ACTIONS(7126), + [anon_sym_and] = ACTIONS(7126), + [anon_sym_bitor] = ACTIONS(7119), + [anon_sym_xor] = ACTIONS(7126), + [anon_sym_bitand] = ACTIONS(7119), + [anon_sym_not_eq] = ACTIONS(7119), + [anon_sym_DASH_DASH] = ACTIONS(7119), + [anon_sym_PLUS_PLUS] = ACTIONS(7119), + [anon_sym_DOT] = ACTIONS(7126), + [anon_sym_DOT_STAR] = ACTIONS(7119), + [anon_sym_DASH_GT] = ACTIONS(7126), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7119), }, - [STATE(3177)] = { - [sym_template_argument_list] = STATE(2613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), - [anon_sym_COMMA] = ACTIONS(7087), - [anon_sym_RPAREN] = ACTIONS(7087), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_DASH] = ACTIONS(7094), - [anon_sym_PLUS] = ACTIONS(7094), - [anon_sym_STAR] = ACTIONS(7094), - [anon_sym_SLASH] = ACTIONS(7094), - [anon_sym_PERCENT] = ACTIONS(7094), - [anon_sym_PIPE_PIPE] = ACTIONS(7087), - [anon_sym_AMP_AMP] = ACTIONS(7087), - [anon_sym_PIPE] = ACTIONS(7094), - [anon_sym_CARET] = ACTIONS(7094), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_EQ_EQ] = ACTIONS(7087), - [anon_sym_BANG_EQ] = ACTIONS(7087), - [anon_sym_GT] = ACTIONS(7094), - [anon_sym_GT_EQ] = ACTIONS(7087), - [anon_sym_LT_EQ] = ACTIONS(7094), - [anon_sym_LT] = ACTIONS(7964), - [anon_sym_LT_LT] = ACTIONS(7094), - [anon_sym_GT_GT] = ACTIONS(7094), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7087), - [anon_sym_EQ] = ACTIONS(7094), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7087), - [anon_sym_STAR_EQ] = ACTIONS(7087), - [anon_sym_SLASH_EQ] = ACTIONS(7087), - [anon_sym_PERCENT_EQ] = ACTIONS(7087), - [anon_sym_PLUS_EQ] = ACTIONS(7087), - [anon_sym_DASH_EQ] = ACTIONS(7087), - [anon_sym_LT_LT_EQ] = ACTIONS(7087), - [anon_sym_GT_GT_EQ] = ACTIONS(7087), - [anon_sym_AMP_EQ] = ACTIONS(7087), - [anon_sym_CARET_EQ] = ACTIONS(7087), - [anon_sym_PIPE_EQ] = ACTIONS(7087), - [anon_sym_and_eq] = ACTIONS(7087), - [anon_sym_or_eq] = ACTIONS(7087), - [anon_sym_xor_eq] = ACTIONS(7087), - [anon_sym_LT_EQ_GT] = ACTIONS(7087), - [anon_sym_or] = ACTIONS(7094), - [anon_sym_and] = ACTIONS(7094), - [anon_sym_bitor] = ACTIONS(7087), - [anon_sym_xor] = ACTIONS(7094), - [anon_sym_bitand] = ACTIONS(7087), - [anon_sym_not_eq] = ACTIONS(7087), - [anon_sym_DASH_DASH] = ACTIONS(7087), - [anon_sym_PLUS_PLUS] = ACTIONS(7087), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_DOT_STAR] = ACTIONS(7087), - [anon_sym_DASH_GT] = ACTIONS(7094), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7087), + [STATE(3117)] = { + [sym_identifier] = ACTIONS(7556), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7558), + [anon_sym_COMMA] = ACTIONS(7558), + [anon_sym_RPAREN] = ACTIONS(7558), + [anon_sym_LPAREN2] = ACTIONS(7558), + [anon_sym_DASH] = ACTIONS(7556), + [anon_sym_PLUS] = ACTIONS(7556), + [anon_sym_STAR] = ACTIONS(7558), + [anon_sym_SLASH] = ACTIONS(7556), + [anon_sym_PERCENT] = ACTIONS(7558), + [anon_sym_PIPE_PIPE] = ACTIONS(7558), + [anon_sym_AMP_AMP] = ACTIONS(7558), + [anon_sym_PIPE] = ACTIONS(7556), + [anon_sym_CARET] = ACTIONS(7558), + [anon_sym_AMP] = ACTIONS(7556), + [anon_sym_EQ_EQ] = ACTIONS(7558), + [anon_sym_BANG_EQ] = ACTIONS(7558), + [anon_sym_GT] = ACTIONS(7556), + [anon_sym_GT_EQ] = ACTIONS(7558), + [anon_sym_LT_EQ] = ACTIONS(7556), + [anon_sym_LT] = ACTIONS(7556), + [anon_sym_LT_LT] = ACTIONS(7558), + [anon_sym_GT_GT] = ACTIONS(7558), + [anon_sym_SEMI] = ACTIONS(7558), + [anon_sym___extension__] = ACTIONS(7556), + [anon_sym___attribute__] = ACTIONS(7556), + [anon_sym___attribute] = ACTIONS(7556), + [anon_sym_COLON] = ACTIONS(7556), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7558), + [anon_sym___based] = ACTIONS(7556), + [anon_sym_LBRACE] = ACTIONS(7558), + [anon_sym_RBRACE] = ACTIONS(7558), + [anon_sym_signed] = ACTIONS(7556), + [anon_sym_unsigned] = ACTIONS(7556), + [anon_sym_long] = ACTIONS(7556), + [anon_sym_short] = ACTIONS(7556), + [anon_sym_LBRACK] = ACTIONS(7558), + [anon_sym_const] = ACTIONS(7556), + [anon_sym_constexpr] = ACTIONS(7556), + [anon_sym_volatile] = ACTIONS(7556), + [anon_sym_restrict] = ACTIONS(7556), + [anon_sym___restrict__] = ACTIONS(7556), + [anon_sym__Atomic] = ACTIONS(7556), + [anon_sym__Noreturn] = ACTIONS(7556), + [anon_sym_noreturn] = ACTIONS(7556), + [anon_sym__Nonnull] = ACTIONS(7556), + [anon_sym_mutable] = ACTIONS(7556), + [anon_sym_constinit] = ACTIONS(7556), + [anon_sym_consteval] = ACTIONS(7556), + [anon_sym_alignas] = ACTIONS(7556), + [anon_sym__Alignas] = ACTIONS(7556), + [sym_primitive_type] = ACTIONS(7556), + [anon_sym_QMARK] = ACTIONS(7558), + [anon_sym_LT_EQ_GT] = ACTIONS(7558), + [anon_sym_or] = ACTIONS(7556), + [anon_sym_and] = ACTIONS(7556), + [anon_sym_bitor] = ACTIONS(7556), + [anon_sym_xor] = ACTIONS(7556), + [anon_sym_bitand] = ACTIONS(7556), + [anon_sym_not_eq] = ACTIONS(7556), + [anon_sym_DASH_DASH] = ACTIONS(7558), + [anon_sym_PLUS_PLUS] = ACTIONS(7558), + [anon_sym_DOT] = ACTIONS(7556), + [anon_sym_DOT_STAR] = ACTIONS(7558), + [anon_sym_DASH_GT] = ACTIONS(7558), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7556), + [anon_sym_override] = ACTIONS(7556), + [anon_sym_requires] = ACTIONS(7556), + [anon_sym_COLON_RBRACK] = ACTIONS(7558), }, - [STATE(3178)] = { - [sym_identifier] = ACTIONS(7561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7563), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7563), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7563), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7563), - [anon_sym_GT_GT] = ACTIONS(7563), - [anon_sym_SEMI] = ACTIONS(7563), - [anon_sym___extension__] = ACTIONS(7561), - [anon_sym___attribute__] = ACTIONS(7561), - [anon_sym___attribute] = ACTIONS(7561), - [anon_sym_COLON] = ACTIONS(7561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), - [anon_sym___based] = ACTIONS(7561), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_RBRACE] = ACTIONS(7563), - [anon_sym_signed] = ACTIONS(7561), - [anon_sym_unsigned] = ACTIONS(7561), - [anon_sym_long] = ACTIONS(7561), - [anon_sym_short] = ACTIONS(7561), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7561), - [anon_sym_volatile] = ACTIONS(7561), - [anon_sym_restrict] = ACTIONS(7561), - [anon_sym___restrict__] = ACTIONS(7561), - [anon_sym__Atomic] = ACTIONS(7561), - [anon_sym__Noreturn] = ACTIONS(7561), - [anon_sym_noreturn] = ACTIONS(7561), - [anon_sym__Nonnull] = ACTIONS(7561), - [anon_sym_mutable] = ACTIONS(7561), - [anon_sym_constinit] = ACTIONS(7561), - [anon_sym_consteval] = ACTIONS(7561), - [anon_sym_alignas] = ACTIONS(7561), - [anon_sym__Alignas] = ACTIONS(7561), - [sym_primitive_type] = ACTIONS(7561), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7561), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7561), - [anon_sym_not_eq] = ACTIONS(7561), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7561), - [anon_sym_override] = ACTIONS(7561), - [anon_sym_requires] = ACTIONS(7561), - [anon_sym_COLON_RBRACK] = ACTIONS(7563), + [STATE(3118)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7698), + [anon_sym_COMMA] = ACTIONS(7698), + [anon_sym_RPAREN] = ACTIONS(7698), + [anon_sym_LPAREN2] = ACTIONS(7698), + [anon_sym_DASH] = ACTIONS(7696), + [anon_sym_PLUS] = ACTIONS(7696), + [anon_sym_STAR] = ACTIONS(7696), + [anon_sym_SLASH] = ACTIONS(7696), + [anon_sym_PERCENT] = ACTIONS(7696), + [anon_sym_PIPE_PIPE] = ACTIONS(7698), + [anon_sym_AMP_AMP] = ACTIONS(7698), + [anon_sym_PIPE] = ACTIONS(7696), + [anon_sym_CARET] = ACTIONS(7696), + [anon_sym_AMP] = ACTIONS(7696), + [anon_sym_EQ_EQ] = ACTIONS(7698), + [anon_sym_BANG_EQ] = ACTIONS(7698), + [anon_sym_GT] = ACTIONS(7696), + [anon_sym_GT_EQ] = ACTIONS(7698), + [anon_sym_LT_EQ] = ACTIONS(7696), + [anon_sym_LT] = ACTIONS(7696), + [anon_sym_LT_LT] = ACTIONS(7696), + [anon_sym_GT_GT] = ACTIONS(7696), + [anon_sym___extension__] = ACTIONS(7698), + [anon_sym___attribute__] = ACTIONS(7698), + [anon_sym___attribute] = ACTIONS(7696), + [anon_sym_LBRACE] = ACTIONS(7698), + [anon_sym_LBRACK] = ACTIONS(7698), + [anon_sym_EQ] = ACTIONS(7696), + [anon_sym_const] = ACTIONS(7696), + [anon_sym_constexpr] = ACTIONS(7698), + [anon_sym_volatile] = ACTIONS(7698), + [anon_sym_restrict] = ACTIONS(7698), + [anon_sym___restrict__] = ACTIONS(7698), + [anon_sym__Atomic] = ACTIONS(7698), + [anon_sym__Noreturn] = ACTIONS(7698), + [anon_sym_noreturn] = ACTIONS(7698), + [anon_sym__Nonnull] = ACTIONS(7698), + [anon_sym_mutable] = ACTIONS(7698), + [anon_sym_constinit] = ACTIONS(7698), + [anon_sym_consteval] = ACTIONS(7698), + [anon_sym_alignas] = ACTIONS(7698), + [anon_sym__Alignas] = ACTIONS(7698), + [anon_sym_QMARK] = ACTIONS(7698), + [anon_sym_STAR_EQ] = ACTIONS(7698), + [anon_sym_SLASH_EQ] = ACTIONS(7698), + [anon_sym_PERCENT_EQ] = ACTIONS(7698), + [anon_sym_PLUS_EQ] = ACTIONS(7698), + [anon_sym_DASH_EQ] = ACTIONS(7698), + [anon_sym_LT_LT_EQ] = ACTIONS(7698), + [anon_sym_GT_GT_EQ] = ACTIONS(7698), + [anon_sym_AMP_EQ] = ACTIONS(7698), + [anon_sym_CARET_EQ] = ACTIONS(7698), + [anon_sym_PIPE_EQ] = ACTIONS(7698), + [anon_sym_LT_EQ_GT] = ACTIONS(7698), + [anon_sym_or] = ACTIONS(7698), + [anon_sym_and] = ACTIONS(7698), + [anon_sym_bitor] = ACTIONS(7698), + [anon_sym_xor] = ACTIONS(7698), + [anon_sym_bitand] = ACTIONS(7698), + [anon_sym_not_eq] = ACTIONS(7698), + [anon_sym_DASH_DASH] = ACTIONS(7698), + [anon_sym_PLUS_PLUS] = ACTIONS(7698), + [anon_sym_DOT] = ACTIONS(7696), + [anon_sym_DOT_STAR] = ACTIONS(7698), + [anon_sym_DASH_GT] = ACTIONS(7696), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7698), + [anon_sym_override] = ACTIONS(7698), + [anon_sym_requires] = ACTIONS(7698), + [anon_sym_DASH_GT_STAR] = ACTIONS(7698), }, - [STATE(3179)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7595), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7595), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7595), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7595), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7595), - [anon_sym_GT_GT] = ACTIONS(7595), - [anon_sym___extension__] = ACTIONS(7597), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_EQ] = ACTIONS(7595), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7597), - [anon_sym_volatile] = ACTIONS(7597), - [anon_sym_restrict] = ACTIONS(7597), - [anon_sym___restrict__] = ACTIONS(7597), - [anon_sym__Atomic] = ACTIONS(7597), - [anon_sym__Noreturn] = ACTIONS(7597), - [anon_sym_noreturn] = ACTIONS(7597), - [anon_sym__Nonnull] = ACTIONS(7597), - [anon_sym_mutable] = ACTIONS(7597), - [anon_sym_constinit] = ACTIONS(7597), - [anon_sym_consteval] = ACTIONS(7597), - [anon_sym_alignas] = ACTIONS(7597), - [anon_sym__Alignas] = ACTIONS(7597), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_STAR_EQ] = ACTIONS(7597), - [anon_sym_SLASH_EQ] = ACTIONS(7597), - [anon_sym_PERCENT_EQ] = ACTIONS(7597), - [anon_sym_PLUS_EQ] = ACTIONS(7597), - [anon_sym_DASH_EQ] = ACTIONS(7597), - [anon_sym_LT_LT_EQ] = ACTIONS(7597), - [anon_sym_GT_GT_EQ] = ACTIONS(7595), - [anon_sym_AMP_EQ] = ACTIONS(7597), - [anon_sym_CARET_EQ] = ACTIONS(7597), - [anon_sym_PIPE_EQ] = ACTIONS(7597), - [anon_sym_and_eq] = ACTIONS(7597), - [anon_sym_or_eq] = ACTIONS(7597), - [anon_sym_xor_eq] = ACTIONS(7597), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7595), - [anon_sym_and] = ACTIONS(7595), - [anon_sym_bitor] = ACTIONS(7597), - [anon_sym_xor] = ACTIONS(7595), - [anon_sym_bitand] = ACTIONS(7597), - [anon_sym_not_eq] = ACTIONS(7597), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7597), - [anon_sym_override] = ACTIONS(7597), - [anon_sym_GT2] = ACTIONS(7597), - [anon_sym_requires] = ACTIONS(7597), + [STATE(3119)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7644), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_RPAREN] = ACTIONS(7644), + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7642), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_PERCENT] = ACTIONS(7642), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7642), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_LT_LT] = ACTIONS(7642), + [anon_sym_GT_GT] = ACTIONS(7642), + [anon_sym___extension__] = ACTIONS(7644), + [anon_sym___attribute__] = ACTIONS(7644), + [anon_sym___attribute] = ACTIONS(7642), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(7642), + [anon_sym_const] = ACTIONS(7642), + [anon_sym_constexpr] = ACTIONS(7644), + [anon_sym_volatile] = ACTIONS(7644), + [anon_sym_restrict] = ACTIONS(7644), + [anon_sym___restrict__] = ACTIONS(7644), + [anon_sym__Atomic] = ACTIONS(7644), + [anon_sym__Noreturn] = ACTIONS(7644), + [anon_sym_noreturn] = ACTIONS(7644), + [anon_sym__Nonnull] = ACTIONS(7644), + [anon_sym_mutable] = ACTIONS(7644), + [anon_sym_constinit] = ACTIONS(7644), + [anon_sym_consteval] = ACTIONS(7644), + [anon_sym_alignas] = ACTIONS(7644), + [anon_sym__Alignas] = ACTIONS(7644), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_STAR_EQ] = ACTIONS(7644), + [anon_sym_SLASH_EQ] = ACTIONS(7644), + [anon_sym_PERCENT_EQ] = ACTIONS(7644), + [anon_sym_PLUS_EQ] = ACTIONS(7644), + [anon_sym_DASH_EQ] = ACTIONS(7644), + [anon_sym_LT_LT_EQ] = ACTIONS(7644), + [anon_sym_GT_GT_EQ] = ACTIONS(7644), + [anon_sym_AMP_EQ] = ACTIONS(7644), + [anon_sym_CARET_EQ] = ACTIONS(7644), + [anon_sym_PIPE_EQ] = ACTIONS(7644), + [anon_sym_LT_EQ_GT] = ACTIONS(7644), + [anon_sym_or] = ACTIONS(7644), + [anon_sym_and] = ACTIONS(7644), + [anon_sym_bitor] = ACTIONS(7644), + [anon_sym_xor] = ACTIONS(7644), + [anon_sym_bitand] = ACTIONS(7644), + [anon_sym_not_eq] = ACTIONS(7644), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7642), + [anon_sym_DOT_STAR] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7642), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7644), + [anon_sym_override] = ACTIONS(7644), + [anon_sym_requires] = ACTIONS(7644), + [anon_sym_DASH_GT_STAR] = ACTIONS(7644), }, - [STATE(3180)] = { - [sym_identifier] = ACTIONS(9084), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9086), - [anon_sym_COMMA] = ACTIONS(9086), - [anon_sym_RPAREN] = ACTIONS(9086), - [aux_sym_preproc_if_token2] = ACTIONS(9086), - [aux_sym_preproc_else_token1] = ACTIONS(9086), - [aux_sym_preproc_elif_token1] = ACTIONS(9084), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9086), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9086), - [anon_sym_LPAREN2] = ACTIONS(9086), - [anon_sym_DASH] = ACTIONS(9084), - [anon_sym_PLUS] = ACTIONS(9084), - [anon_sym_STAR] = ACTIONS(9084), - [anon_sym_SLASH] = ACTIONS(9084), - [anon_sym_PERCENT] = ACTIONS(9084), - [anon_sym_PIPE_PIPE] = ACTIONS(9086), - [anon_sym_AMP_AMP] = ACTIONS(9086), - [anon_sym_PIPE] = ACTIONS(9084), - [anon_sym_CARET] = ACTIONS(9084), - [anon_sym_AMP] = ACTIONS(9084), - [anon_sym_EQ_EQ] = ACTIONS(9086), - [anon_sym_BANG_EQ] = ACTIONS(9086), - [anon_sym_GT] = ACTIONS(9084), - [anon_sym_GT_EQ] = ACTIONS(9086), - [anon_sym_LT_EQ] = ACTIONS(9084), - [anon_sym_LT] = ACTIONS(9084), - [anon_sym_LT_LT] = ACTIONS(9084), - [anon_sym_GT_GT] = ACTIONS(9084), - [anon_sym_SEMI] = ACTIONS(9086), - [anon_sym___attribute__] = ACTIONS(9084), - [anon_sym___attribute] = ACTIONS(9084), - [anon_sym_COLON] = ACTIONS(9084), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9086), - [anon_sym_LBRACE] = ACTIONS(9086), - [anon_sym_RBRACE] = ACTIONS(9086), - [anon_sym_LBRACK] = ACTIONS(9084), - [anon_sym_RBRACK] = ACTIONS(9086), - [anon_sym_EQ] = ACTIONS(9084), - [anon_sym_QMARK] = ACTIONS(9086), - [anon_sym_STAR_EQ] = ACTIONS(9086), - [anon_sym_SLASH_EQ] = ACTIONS(9086), - [anon_sym_PERCENT_EQ] = ACTIONS(9086), - [anon_sym_PLUS_EQ] = ACTIONS(9086), - [anon_sym_DASH_EQ] = ACTIONS(9086), - [anon_sym_LT_LT_EQ] = ACTIONS(9086), - [anon_sym_GT_GT_EQ] = ACTIONS(9086), - [anon_sym_AMP_EQ] = ACTIONS(9086), - [anon_sym_CARET_EQ] = ACTIONS(9086), - [anon_sym_PIPE_EQ] = ACTIONS(9086), - [anon_sym_and_eq] = ACTIONS(9084), - [anon_sym_or_eq] = ACTIONS(9084), - [anon_sym_xor_eq] = ACTIONS(9084), - [anon_sym_LT_EQ_GT] = ACTIONS(9086), - [anon_sym_or] = ACTIONS(9084), - [anon_sym_and] = ACTIONS(9084), - [anon_sym_bitor] = ACTIONS(9084), - [anon_sym_xor] = ACTIONS(9084), - [anon_sym_bitand] = ACTIONS(9084), - [anon_sym_not_eq] = ACTIONS(9084), - [anon_sym_DASH_DASH] = ACTIONS(9086), - [anon_sym_PLUS_PLUS] = ACTIONS(9086), - [anon_sym_asm] = ACTIONS(9084), - [anon_sym___asm__] = ACTIONS(9084), - [anon_sym___asm] = ACTIONS(9084), - [anon_sym_DOT] = ACTIONS(9084), - [anon_sym_DOT_STAR] = ACTIONS(9086), - [anon_sym_DASH_GT] = ACTIONS(9086), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9084), - [anon_sym_COLON_RBRACK] = ACTIONS(9086), + [STATE(3120)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6658), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6658), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6658), + [anon_sym_GT_GT] = ACTIONS(6658), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6658), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6658), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6651), + [anon_sym_or_eq] = ACTIONS(6651), + [anon_sym_xor_eq] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6651), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6651), + [anon_sym_not_eq] = ACTIONS(6651), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_GT2] = ACTIONS(6653), }, - [STATE(3181)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), - [anon_sym_COMMA] = ACTIONS(7567), - [anon_sym_LPAREN2] = ACTIONS(7567), - [anon_sym_DASH] = ACTIONS(7565), - [anon_sym_PLUS] = ACTIONS(7565), - [anon_sym_STAR] = ACTIONS(7565), - [anon_sym_SLASH] = ACTIONS(7565), - [anon_sym_PERCENT] = ACTIONS(7565), - [anon_sym_PIPE_PIPE] = ACTIONS(7567), - [anon_sym_AMP_AMP] = ACTIONS(7567), - [anon_sym_PIPE] = ACTIONS(7565), - [anon_sym_CARET] = ACTIONS(7565), - [anon_sym_AMP] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7567), - [anon_sym_BANG_EQ] = ACTIONS(7567), - [anon_sym_GT] = ACTIONS(7565), - [anon_sym_GT_EQ] = ACTIONS(7565), - [anon_sym_LT_EQ] = ACTIONS(7565), - [anon_sym_LT] = ACTIONS(7565), - [anon_sym_LT_LT] = ACTIONS(7565), - [anon_sym_GT_GT] = ACTIONS(7565), - [anon_sym___extension__] = ACTIONS(7567), - [anon_sym_LBRACE] = ACTIONS(7567), - [anon_sym_LBRACK] = ACTIONS(7567), - [anon_sym_EQ] = ACTIONS(7565), - [anon_sym_const] = ACTIONS(7565), - [anon_sym_constexpr] = ACTIONS(7567), - [anon_sym_volatile] = ACTIONS(7567), - [anon_sym_restrict] = ACTIONS(7567), - [anon_sym___restrict__] = ACTIONS(7567), - [anon_sym__Atomic] = ACTIONS(7567), - [anon_sym__Noreturn] = ACTIONS(7567), - [anon_sym_noreturn] = ACTIONS(7567), - [anon_sym__Nonnull] = ACTIONS(7567), - [anon_sym_mutable] = ACTIONS(7567), - [anon_sym_constinit] = ACTIONS(7567), - [anon_sym_consteval] = ACTIONS(7567), - [anon_sym_alignas] = ACTIONS(7567), - [anon_sym__Alignas] = ACTIONS(7567), - [anon_sym_QMARK] = ACTIONS(7567), - [anon_sym_STAR_EQ] = ACTIONS(7567), - [anon_sym_SLASH_EQ] = ACTIONS(7567), - [anon_sym_PERCENT_EQ] = ACTIONS(7567), - [anon_sym_PLUS_EQ] = ACTIONS(7567), - [anon_sym_DASH_EQ] = ACTIONS(7567), - [anon_sym_LT_LT_EQ] = ACTIONS(7567), - [anon_sym_GT_GT_EQ] = ACTIONS(7565), - [anon_sym_AMP_EQ] = ACTIONS(7567), - [anon_sym_CARET_EQ] = ACTIONS(7567), - [anon_sym_PIPE_EQ] = ACTIONS(7567), - [anon_sym_and_eq] = ACTIONS(7567), - [anon_sym_or_eq] = ACTIONS(7567), - [anon_sym_xor_eq] = ACTIONS(7567), - [anon_sym_LT_EQ_GT] = ACTIONS(7567), - [anon_sym_or] = ACTIONS(7565), - [anon_sym_and] = ACTIONS(7565), - [anon_sym_bitor] = ACTIONS(7567), - [anon_sym_xor] = ACTIONS(7565), - [anon_sym_bitand] = ACTIONS(7567), - [anon_sym_not_eq] = ACTIONS(7567), - [anon_sym_DASH_DASH] = ACTIONS(7567), - [anon_sym_PLUS_PLUS] = ACTIONS(7567), - [anon_sym_DOT] = ACTIONS(7565), - [anon_sym_DOT_STAR] = ACTIONS(7567), - [anon_sym_DASH_GT] = ACTIONS(7567), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7567), - [anon_sym_override] = ACTIONS(7567), - [anon_sym_GT2] = ACTIONS(7567), - [anon_sym_requires] = ACTIONS(7567), + [STATE(3121)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_PIPE_PIPE] = ACTIONS(6653), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6660), + [anon_sym_CARET] = ACTIONS(6660), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6653), + [anon_sym_BANG_EQ] = ACTIONS(6653), + [anon_sym_GT] = ACTIONS(6660), + [anon_sym_GT_EQ] = ACTIONS(6660), + [anon_sym_LT_EQ] = ACTIONS(6660), + [anon_sym_LT] = ACTIONS(6660), + [anon_sym_LT_LT] = ACTIONS(6660), + [anon_sym_GT_GT] = ACTIONS(6660), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6660), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_STAR_EQ] = ACTIONS(6653), + [anon_sym_SLASH_EQ] = ACTIONS(6653), + [anon_sym_PERCENT_EQ] = ACTIONS(6653), + [anon_sym_PLUS_EQ] = ACTIONS(6653), + [anon_sym_DASH_EQ] = ACTIONS(6653), + [anon_sym_LT_LT_EQ] = ACTIONS(6653), + [anon_sym_GT_GT_EQ] = ACTIONS(6660), + [anon_sym_AMP_EQ] = ACTIONS(6653), + [anon_sym_CARET_EQ] = ACTIONS(6653), + [anon_sym_PIPE_EQ] = ACTIONS(6653), + [anon_sym_and_eq] = ACTIONS(6653), + [anon_sym_or_eq] = ACTIONS(6653), + [anon_sym_xor_eq] = ACTIONS(6653), + [anon_sym_LT_EQ_GT] = ACTIONS(6653), + [anon_sym_or] = ACTIONS(6660), + [anon_sym_and] = ACTIONS(6660), + [anon_sym_bitor] = ACTIONS(6653), + [anon_sym_xor] = ACTIONS(6660), + [anon_sym_bitand] = ACTIONS(6653), + [anon_sym_not_eq] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_DOT] = ACTIONS(6660), + [anon_sym_DOT_STAR] = ACTIONS(6653), + [anon_sym_DASH_GT] = ACTIONS(6653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_GT2] = ACTIONS(6653), }, - [STATE(3182)] = { - [sym_identifier] = ACTIONS(3155), - [aux_sym_preproc_def_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), - [sym_preproc_directive] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym___attribute] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym__Nonnull] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym__Alignas] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_friend] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_protected] = ACTIONS(3155), - [anon_sym_static_assert] = ACTIONS(3155), - [anon_sym_catch] = ACTIONS(3155), - [anon_sym_LBRACK_COLON] = ACTIONS(3153), + [STATE(3122)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7596), + [anon_sym_COMMA] = ACTIONS(7596), + [anon_sym_LPAREN2] = ACTIONS(7596), + [anon_sym_DASH] = ACTIONS(7594), + [anon_sym_PLUS] = ACTIONS(7594), + [anon_sym_STAR] = ACTIONS(7594), + [anon_sym_SLASH] = ACTIONS(7594), + [anon_sym_PERCENT] = ACTIONS(7594), + [anon_sym_PIPE_PIPE] = ACTIONS(7596), + [anon_sym_AMP_AMP] = ACTIONS(7596), + [anon_sym_PIPE] = ACTIONS(7594), + [anon_sym_CARET] = ACTIONS(7594), + [anon_sym_AMP] = ACTIONS(7594), + [anon_sym_EQ_EQ] = ACTIONS(7596), + [anon_sym_BANG_EQ] = ACTIONS(7596), + [anon_sym_GT] = ACTIONS(7594), + [anon_sym_GT_EQ] = ACTIONS(7594), + [anon_sym_LT_EQ] = ACTIONS(7594), + [anon_sym_LT] = ACTIONS(7594), + [anon_sym_LT_LT] = ACTIONS(7594), + [anon_sym_GT_GT] = ACTIONS(7594), + [anon_sym___extension__] = ACTIONS(7596), + [anon_sym_LBRACE] = ACTIONS(7596), + [anon_sym_LBRACK] = ACTIONS(7596), + [anon_sym_EQ] = ACTIONS(7594), + [anon_sym_const] = ACTIONS(7594), + [anon_sym_constexpr] = ACTIONS(7596), + [anon_sym_volatile] = ACTIONS(7596), + [anon_sym_restrict] = ACTIONS(7596), + [anon_sym___restrict__] = ACTIONS(7596), + [anon_sym__Atomic] = ACTIONS(7596), + [anon_sym__Noreturn] = ACTIONS(7596), + [anon_sym_noreturn] = ACTIONS(7596), + [anon_sym__Nonnull] = ACTIONS(7596), + [anon_sym_mutable] = ACTIONS(7596), + [anon_sym_constinit] = ACTIONS(7596), + [anon_sym_consteval] = ACTIONS(7596), + [anon_sym_alignas] = ACTIONS(7596), + [anon_sym__Alignas] = ACTIONS(7596), + [anon_sym_QMARK] = ACTIONS(7596), + [anon_sym_STAR_EQ] = ACTIONS(7596), + [anon_sym_SLASH_EQ] = ACTIONS(7596), + [anon_sym_PERCENT_EQ] = ACTIONS(7596), + [anon_sym_PLUS_EQ] = ACTIONS(7596), + [anon_sym_DASH_EQ] = ACTIONS(7596), + [anon_sym_LT_LT_EQ] = ACTIONS(7596), + [anon_sym_GT_GT_EQ] = ACTIONS(7594), + [anon_sym_AMP_EQ] = ACTIONS(7596), + [anon_sym_CARET_EQ] = ACTIONS(7596), + [anon_sym_PIPE_EQ] = ACTIONS(7596), + [anon_sym_and_eq] = ACTIONS(7596), + [anon_sym_or_eq] = ACTIONS(7596), + [anon_sym_xor_eq] = ACTIONS(7596), + [anon_sym_LT_EQ_GT] = ACTIONS(7596), + [anon_sym_or] = ACTIONS(7594), + [anon_sym_and] = ACTIONS(7594), + [anon_sym_bitor] = ACTIONS(7596), + [anon_sym_xor] = ACTIONS(7594), + [anon_sym_bitand] = ACTIONS(7596), + [anon_sym_not_eq] = ACTIONS(7596), + [anon_sym_DASH_DASH] = ACTIONS(7596), + [anon_sym_PLUS_PLUS] = ACTIONS(7596), + [anon_sym_DOT] = ACTIONS(7594), + [anon_sym_DOT_STAR] = ACTIONS(7596), + [anon_sym_DASH_GT] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7596), + [anon_sym_override] = ACTIONS(7596), + [anon_sym_GT2] = ACTIONS(7596), + [anon_sym_requires] = ACTIONS(7596), }, - [STATE(3183)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), - [anon_sym_COMMA] = ACTIONS(7777), - [anon_sym_LPAREN2] = ACTIONS(7777), - [anon_sym_DASH] = ACTIONS(7775), - [anon_sym_PLUS] = ACTIONS(7775), - [anon_sym_STAR] = ACTIONS(7775), - [anon_sym_SLASH] = ACTIONS(7775), - [anon_sym_PERCENT] = ACTIONS(7775), - [anon_sym_PIPE_PIPE] = ACTIONS(7777), - [anon_sym_AMP_AMP] = ACTIONS(7777), - [anon_sym_PIPE] = ACTIONS(7775), - [anon_sym_CARET] = ACTIONS(7775), - [anon_sym_AMP] = ACTIONS(7775), - [anon_sym_EQ_EQ] = ACTIONS(7777), - [anon_sym_BANG_EQ] = ACTIONS(7777), - [anon_sym_GT] = ACTIONS(7775), - [anon_sym_GT_EQ] = ACTIONS(7775), - [anon_sym_LT_EQ] = ACTIONS(7775), - [anon_sym_LT] = ACTIONS(7775), - [anon_sym_LT_LT] = ACTIONS(7775), - [anon_sym_GT_GT] = ACTIONS(7775), - [anon_sym___extension__] = ACTIONS(7777), - [anon_sym_LBRACE] = ACTIONS(7777), - [anon_sym_LBRACK] = ACTIONS(7777), - [anon_sym_EQ] = ACTIONS(7775), - [anon_sym_const] = ACTIONS(7775), - [anon_sym_constexpr] = ACTIONS(7777), - [anon_sym_volatile] = ACTIONS(7777), - [anon_sym_restrict] = ACTIONS(7777), - [anon_sym___restrict__] = ACTIONS(7777), - [anon_sym__Atomic] = ACTIONS(7777), - [anon_sym__Noreturn] = ACTIONS(7777), - [anon_sym_noreturn] = ACTIONS(7777), - [anon_sym__Nonnull] = ACTIONS(7777), - [anon_sym_mutable] = ACTIONS(7777), - [anon_sym_constinit] = ACTIONS(7777), - [anon_sym_consteval] = ACTIONS(7777), - [anon_sym_alignas] = ACTIONS(7777), - [anon_sym__Alignas] = ACTIONS(7777), - [anon_sym_QMARK] = ACTIONS(7777), - [anon_sym_STAR_EQ] = ACTIONS(7777), - [anon_sym_SLASH_EQ] = ACTIONS(7777), - [anon_sym_PERCENT_EQ] = ACTIONS(7777), - [anon_sym_PLUS_EQ] = ACTIONS(7777), - [anon_sym_DASH_EQ] = ACTIONS(7777), - [anon_sym_LT_LT_EQ] = ACTIONS(7777), - [anon_sym_GT_GT_EQ] = ACTIONS(7775), - [anon_sym_AMP_EQ] = ACTIONS(7777), - [anon_sym_CARET_EQ] = ACTIONS(7777), - [anon_sym_PIPE_EQ] = ACTIONS(7777), - [anon_sym_and_eq] = ACTIONS(7777), - [anon_sym_or_eq] = ACTIONS(7777), - [anon_sym_xor_eq] = ACTIONS(7777), - [anon_sym_LT_EQ_GT] = ACTIONS(7777), - [anon_sym_or] = ACTIONS(7775), - [anon_sym_and] = ACTIONS(7775), - [anon_sym_bitor] = ACTIONS(7777), - [anon_sym_xor] = ACTIONS(7775), - [anon_sym_bitand] = ACTIONS(7777), - [anon_sym_not_eq] = ACTIONS(7777), - [anon_sym_DASH_DASH] = ACTIONS(7777), - [anon_sym_PLUS_PLUS] = ACTIONS(7777), - [anon_sym_DOT] = ACTIONS(7775), - [anon_sym_DOT_STAR] = ACTIONS(7777), - [anon_sym_DASH_GT] = ACTIONS(7777), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7777), - [anon_sym_override] = ACTIONS(7777), - [anon_sym_GT2] = ACTIONS(7777), - [anon_sym_requires] = ACTIONS(7777), + [STATE(3123)] = { + [sym_identifier] = ACTIONS(7187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_RPAREN] = ACTIONS(7189), + [aux_sym_preproc_if_token2] = ACTIONS(7189), + [aux_sym_preproc_else_token1] = ACTIONS(7189), + [aux_sym_preproc_elif_token1] = ACTIONS(7187), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7189), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_DASH] = ACTIONS(7187), + [anon_sym_PLUS] = ACTIONS(7187), + [anon_sym_STAR] = ACTIONS(7189), + [anon_sym_SLASH] = ACTIONS(7187), + [anon_sym_PERCENT] = ACTIONS(7189), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_PIPE] = ACTIONS(7187), + [anon_sym_CARET] = ACTIONS(7189), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_EQ_EQ] = ACTIONS(7189), + [anon_sym_BANG_EQ] = ACTIONS(7189), + [anon_sym_GT] = ACTIONS(7187), + [anon_sym_GT_EQ] = ACTIONS(7189), + [anon_sym_LT_EQ] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7187), + [anon_sym_LT_LT] = ACTIONS(7189), + [anon_sym_GT_GT] = ACTIONS(7189), + [anon_sym_SEMI] = ACTIONS(7189), + [anon_sym___extension__] = ACTIONS(7187), + [anon_sym___attribute__] = ACTIONS(7187), + [anon_sym___attribute] = ACTIONS(7187), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7189), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_RBRACE] = ACTIONS(7189), + [anon_sym_LBRACK] = ACTIONS(7189), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7187), + [anon_sym_volatile] = ACTIONS(7187), + [anon_sym_restrict] = ACTIONS(7187), + [anon_sym___restrict__] = ACTIONS(7187), + [anon_sym__Atomic] = ACTIONS(7187), + [anon_sym__Noreturn] = ACTIONS(7187), + [anon_sym_noreturn] = ACTIONS(7187), + [anon_sym__Nonnull] = ACTIONS(7187), + [anon_sym_mutable] = ACTIONS(7187), + [anon_sym_constinit] = ACTIONS(7187), + [anon_sym_consteval] = ACTIONS(7187), + [anon_sym_alignas] = ACTIONS(7187), + [anon_sym__Alignas] = ACTIONS(7187), + [anon_sym_QMARK] = ACTIONS(7189), + [anon_sym_LT_EQ_GT] = ACTIONS(7189), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_bitor] = ACTIONS(7187), + [anon_sym_xor] = ACTIONS(7187), + [anon_sym_bitand] = ACTIONS(7187), + [anon_sym_not_eq] = ACTIONS(7187), + [anon_sym_DASH_DASH] = ACTIONS(7189), + [anon_sym_PLUS_PLUS] = ACTIONS(7189), + [anon_sym_DOT] = ACTIONS(7187), + [anon_sym_DOT_STAR] = ACTIONS(7189), + [anon_sym_DASH_GT] = ACTIONS(7189), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7187), + [anon_sym_override] = ACTIONS(7187), + [anon_sym_requires] = ACTIONS(7187), + [anon_sym_COLON_RBRACK] = ACTIONS(7189), }, - [STATE(3184)] = { - [sym_argument_list] = STATE(5772), - [sym_initializer_list] = STATE(5843), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8626), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), + [STATE(3124)] = { + [sym_identifier] = ACTIONS(9027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9029), + [anon_sym_COMMA] = ACTIONS(9029), + [anon_sym_RPAREN] = ACTIONS(9029), + [aux_sym_preproc_if_token2] = ACTIONS(9029), + [aux_sym_preproc_else_token1] = ACTIONS(9029), + [aux_sym_preproc_elif_token1] = ACTIONS(9027), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9029), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9029), + [anon_sym_LPAREN2] = ACTIONS(9029), + [anon_sym_DASH] = ACTIONS(9027), + [anon_sym_PLUS] = ACTIONS(9027), + [anon_sym_STAR] = ACTIONS(9027), + [anon_sym_SLASH] = ACTIONS(9027), + [anon_sym_PERCENT] = ACTIONS(9027), + [anon_sym_PIPE_PIPE] = ACTIONS(9029), + [anon_sym_AMP_AMP] = ACTIONS(9029), + [anon_sym_PIPE] = ACTIONS(9027), + [anon_sym_CARET] = ACTIONS(9027), + [anon_sym_AMP] = ACTIONS(9027), + [anon_sym_EQ_EQ] = ACTIONS(9029), + [anon_sym_BANG_EQ] = ACTIONS(9029), + [anon_sym_GT] = ACTIONS(9027), + [anon_sym_GT_EQ] = ACTIONS(9029), + [anon_sym_LT_EQ] = ACTIONS(9027), + [anon_sym_LT] = ACTIONS(9027), + [anon_sym_LT_LT] = ACTIONS(9027), + [anon_sym_GT_GT] = ACTIONS(9027), + [anon_sym_SEMI] = ACTIONS(9029), + [anon_sym___attribute__] = ACTIONS(9027), + [anon_sym___attribute] = ACTIONS(9027), + [anon_sym_COLON] = ACTIONS(9027), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9029), + [anon_sym_LBRACE] = ACTIONS(9029), + [anon_sym_RBRACE] = ACTIONS(9029), + [anon_sym_LBRACK] = ACTIONS(9027), + [anon_sym_RBRACK] = ACTIONS(9029), + [anon_sym_EQ] = ACTIONS(9027), + [anon_sym_QMARK] = ACTIONS(9029), + [anon_sym_STAR_EQ] = ACTIONS(9029), + [anon_sym_SLASH_EQ] = ACTIONS(9029), + [anon_sym_PERCENT_EQ] = ACTIONS(9029), + [anon_sym_PLUS_EQ] = ACTIONS(9029), + [anon_sym_DASH_EQ] = ACTIONS(9029), + [anon_sym_LT_LT_EQ] = ACTIONS(9029), + [anon_sym_GT_GT_EQ] = ACTIONS(9029), + [anon_sym_AMP_EQ] = ACTIONS(9029), + [anon_sym_CARET_EQ] = ACTIONS(9029), + [anon_sym_PIPE_EQ] = ACTIONS(9029), + [anon_sym_and_eq] = ACTIONS(9027), + [anon_sym_or_eq] = ACTIONS(9027), + [anon_sym_xor_eq] = ACTIONS(9027), + [anon_sym_LT_EQ_GT] = ACTIONS(9029), + [anon_sym_or] = ACTIONS(9027), + [anon_sym_and] = ACTIONS(9027), + [anon_sym_bitor] = ACTIONS(9027), + [anon_sym_xor] = ACTIONS(9027), + [anon_sym_bitand] = ACTIONS(9027), + [anon_sym_not_eq] = ACTIONS(9027), + [anon_sym_DASH_DASH] = ACTIONS(9029), + [anon_sym_PLUS_PLUS] = ACTIONS(9029), + [anon_sym_asm] = ACTIONS(9027), + [anon_sym___asm__] = ACTIONS(9027), + [anon_sym___asm] = ACTIONS(9027), + [anon_sym_DOT] = ACTIONS(9027), + [anon_sym_DOT_STAR] = ACTIONS(9029), + [anon_sym_DASH_GT] = ACTIONS(9029), [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9027), + [anon_sym_COLON_RBRACK] = ACTIONS(9029), }, - [STATE(3185)] = { - [sym_identifier] = ACTIONS(7561), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7563), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7563), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7563), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7563), - [anon_sym_GT_GT] = ACTIONS(7563), - [anon_sym_SEMI] = ACTIONS(7563), - [anon_sym___extension__] = ACTIONS(7561), - [anon_sym___attribute__] = ACTIONS(7561), - [anon_sym___attribute] = ACTIONS(7561), - [anon_sym_COLON] = ACTIONS(7561), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7563), - [anon_sym___based] = ACTIONS(7561), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_RBRACE] = ACTIONS(7563), - [anon_sym_signed] = ACTIONS(7561), - [anon_sym_unsigned] = ACTIONS(7561), - [anon_sym_long] = ACTIONS(7561), - [anon_sym_short] = ACTIONS(7561), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7561), - [anon_sym_volatile] = ACTIONS(7561), - [anon_sym_restrict] = ACTIONS(7561), - [anon_sym___restrict__] = ACTIONS(7561), - [anon_sym__Atomic] = ACTIONS(7561), - [anon_sym__Noreturn] = ACTIONS(7561), - [anon_sym_noreturn] = ACTIONS(7561), - [anon_sym__Nonnull] = ACTIONS(7561), - [anon_sym_mutable] = ACTIONS(7561), - [anon_sym_constinit] = ACTIONS(7561), - [anon_sym_consteval] = ACTIONS(7561), - [anon_sym_alignas] = ACTIONS(7561), - [anon_sym__Alignas] = ACTIONS(7561), - [sym_primitive_type] = ACTIONS(7561), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7561), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7561), - [anon_sym_not_eq] = ACTIONS(7561), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7561), - [anon_sym_override] = ACTIONS(7561), - [anon_sym_requires] = ACTIONS(7561), - [anon_sym_COLON_RBRACK] = ACTIONS(7563), - }, - [STATE(3186)] = { - [sym_identifier] = ACTIONS(7647), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7649), - [anon_sym_COMMA] = ACTIONS(7649), - [anon_sym_RPAREN] = ACTIONS(7649), - [anon_sym_LPAREN2] = ACTIONS(7649), - [anon_sym_DASH] = ACTIONS(7647), - [anon_sym_PLUS] = ACTIONS(7647), - [anon_sym_STAR] = ACTIONS(7649), - [anon_sym_SLASH] = ACTIONS(7647), - [anon_sym_PERCENT] = ACTIONS(7649), - [anon_sym_PIPE_PIPE] = ACTIONS(7649), - [anon_sym_AMP_AMP] = ACTIONS(7649), - [anon_sym_PIPE] = ACTIONS(7647), - [anon_sym_CARET] = ACTIONS(7649), - [anon_sym_AMP] = ACTIONS(7647), - [anon_sym_EQ_EQ] = ACTIONS(7649), - [anon_sym_BANG_EQ] = ACTIONS(7649), - [anon_sym_GT] = ACTIONS(7647), - [anon_sym_GT_EQ] = ACTIONS(7649), - [anon_sym_LT_EQ] = ACTIONS(7647), - [anon_sym_LT] = ACTIONS(7647), - [anon_sym_LT_LT] = ACTIONS(7649), - [anon_sym_GT_GT] = ACTIONS(7649), - [anon_sym_SEMI] = ACTIONS(7649), - [anon_sym___extension__] = ACTIONS(7647), - [anon_sym___attribute__] = ACTIONS(7647), - [anon_sym___attribute] = ACTIONS(7647), - [anon_sym_COLON] = ACTIONS(7647), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7649), - [anon_sym___based] = ACTIONS(7647), - [anon_sym_LBRACE] = ACTIONS(7649), - [anon_sym_RBRACE] = ACTIONS(7649), - [anon_sym_signed] = ACTIONS(7647), - [anon_sym_unsigned] = ACTIONS(7647), - [anon_sym_long] = ACTIONS(7647), - [anon_sym_short] = ACTIONS(7647), - [anon_sym_LBRACK] = ACTIONS(7649), - [anon_sym_const] = ACTIONS(7647), - [anon_sym_constexpr] = ACTIONS(7647), - [anon_sym_volatile] = ACTIONS(7647), - [anon_sym_restrict] = ACTIONS(7647), - [anon_sym___restrict__] = ACTIONS(7647), - [anon_sym__Atomic] = ACTIONS(7647), - [anon_sym__Noreturn] = ACTIONS(7647), - [anon_sym_noreturn] = ACTIONS(7647), - [anon_sym__Nonnull] = ACTIONS(7647), - [anon_sym_mutable] = ACTIONS(7647), - [anon_sym_constinit] = ACTIONS(7647), - [anon_sym_consteval] = ACTIONS(7647), - [anon_sym_alignas] = ACTIONS(7647), - [anon_sym__Alignas] = ACTIONS(7647), - [sym_primitive_type] = ACTIONS(7647), - [anon_sym_QMARK] = ACTIONS(7649), - [anon_sym_LT_EQ_GT] = ACTIONS(7649), - [anon_sym_or] = ACTIONS(7647), - [anon_sym_and] = ACTIONS(7647), - [anon_sym_bitor] = ACTIONS(7647), - [anon_sym_xor] = ACTIONS(7647), - [anon_sym_bitand] = ACTIONS(7647), - [anon_sym_not_eq] = ACTIONS(7647), - [anon_sym_DASH_DASH] = ACTIONS(7649), - [anon_sym_PLUS_PLUS] = ACTIONS(7649), - [anon_sym_DOT] = ACTIONS(7647), - [anon_sym_DOT_STAR] = ACTIONS(7649), - [anon_sym_DASH_GT] = ACTIONS(7649), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7647), - [anon_sym_override] = ACTIONS(7647), - [anon_sym_requires] = ACTIONS(7647), - [anon_sym_COLON_RBRACK] = ACTIONS(7649), - }, - [STATE(3187)] = { - [sym_identifier] = ACTIONS(7651), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_RPAREN] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7653), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7653), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7653), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7653), - [anon_sym_GT_GT] = ACTIONS(7653), - [anon_sym_SEMI] = ACTIONS(7653), - [anon_sym___extension__] = ACTIONS(7651), - [anon_sym___attribute__] = ACTIONS(7651), - [anon_sym___attribute] = ACTIONS(7651), - [anon_sym_COLON] = ACTIONS(7651), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7653), - [anon_sym___based] = ACTIONS(7651), - [anon_sym_LBRACE] = ACTIONS(7653), - [anon_sym_RBRACE] = ACTIONS(7653), - [anon_sym_signed] = ACTIONS(7651), - [anon_sym_unsigned] = ACTIONS(7651), - [anon_sym_long] = ACTIONS(7651), - [anon_sym_short] = ACTIONS(7651), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7651), - [anon_sym_volatile] = ACTIONS(7651), - [anon_sym_restrict] = ACTIONS(7651), - [anon_sym___restrict__] = ACTIONS(7651), - [anon_sym__Atomic] = ACTIONS(7651), - [anon_sym__Noreturn] = ACTIONS(7651), - [anon_sym_noreturn] = ACTIONS(7651), - [anon_sym__Nonnull] = ACTIONS(7651), - [anon_sym_mutable] = ACTIONS(7651), - [anon_sym_constinit] = ACTIONS(7651), - [anon_sym_consteval] = ACTIONS(7651), - [anon_sym_alignas] = ACTIONS(7651), - [anon_sym__Alignas] = ACTIONS(7651), - [sym_primitive_type] = ACTIONS(7651), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7651), - [anon_sym_and] = ACTIONS(7651), - [anon_sym_bitor] = ACTIONS(7651), - [anon_sym_xor] = ACTIONS(7651), - [anon_sym_bitand] = ACTIONS(7651), - [anon_sym_not_eq] = ACTIONS(7651), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7653), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7651), - [anon_sym_override] = ACTIONS(7651), - [anon_sym_requires] = ACTIONS(7651), - [anon_sym_COLON_RBRACK] = ACTIONS(7653), - }, - [STATE(3188)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), - [anon_sym_COMMA] = ACTIONS(7637), - [anon_sym_LPAREN2] = ACTIONS(7637), - [anon_sym_DASH] = ACTIONS(7635), - [anon_sym_PLUS] = ACTIONS(7635), - [anon_sym_STAR] = ACTIONS(7635), - [anon_sym_SLASH] = ACTIONS(7635), - [anon_sym_PERCENT] = ACTIONS(7635), - [anon_sym_PIPE_PIPE] = ACTIONS(7637), - [anon_sym_AMP_AMP] = ACTIONS(7637), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_CARET] = ACTIONS(7635), - [anon_sym_AMP] = ACTIONS(7635), - [anon_sym_EQ_EQ] = ACTIONS(7637), - [anon_sym_BANG_EQ] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_EQ] = ACTIONS(7637), - [anon_sym_LT_EQ] = ACTIONS(7635), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(7635), - [anon_sym___extension__] = ACTIONS(7637), - [anon_sym_LBRACE] = ACTIONS(7637), - [anon_sym_LBRACK] = ACTIONS(7637), - [anon_sym_RBRACK] = ACTIONS(7637), - [anon_sym_EQ] = ACTIONS(7635), - [anon_sym_const] = ACTIONS(7635), - [anon_sym_constexpr] = ACTIONS(7637), - [anon_sym_volatile] = ACTIONS(7637), - [anon_sym_restrict] = ACTIONS(7637), - [anon_sym___restrict__] = ACTIONS(7637), - [anon_sym__Atomic] = ACTIONS(7637), - [anon_sym__Noreturn] = ACTIONS(7637), - [anon_sym_noreturn] = ACTIONS(7637), - [anon_sym__Nonnull] = ACTIONS(7637), - [anon_sym_mutable] = ACTIONS(7637), - [anon_sym_constinit] = ACTIONS(7637), - [anon_sym_consteval] = ACTIONS(7637), - [anon_sym_alignas] = ACTIONS(7637), - [anon_sym__Alignas] = ACTIONS(7637), - [anon_sym_QMARK] = ACTIONS(7637), - [anon_sym_STAR_EQ] = ACTIONS(7637), - [anon_sym_SLASH_EQ] = ACTIONS(7637), - [anon_sym_PERCENT_EQ] = ACTIONS(7637), - [anon_sym_PLUS_EQ] = ACTIONS(7637), - [anon_sym_DASH_EQ] = ACTIONS(7637), - [anon_sym_LT_LT_EQ] = ACTIONS(7637), - [anon_sym_GT_GT_EQ] = ACTIONS(7637), - [anon_sym_AMP_EQ] = ACTIONS(7637), - [anon_sym_CARET_EQ] = ACTIONS(7637), - [anon_sym_PIPE_EQ] = ACTIONS(7637), - [anon_sym_and_eq] = ACTIONS(7637), - [anon_sym_or_eq] = ACTIONS(7637), - [anon_sym_xor_eq] = ACTIONS(7637), - [anon_sym_LT_EQ_GT] = ACTIONS(7637), - [anon_sym_or] = ACTIONS(7635), - [anon_sym_and] = ACTIONS(7635), - [anon_sym_bitor] = ACTIONS(7637), - [anon_sym_xor] = ACTIONS(7635), - [anon_sym_bitand] = ACTIONS(7637), - [anon_sym_not_eq] = ACTIONS(7637), - [anon_sym_DASH_DASH] = ACTIONS(7637), - [anon_sym_PLUS_PLUS] = ACTIONS(7637), - [anon_sym_DOT] = ACTIONS(7635), - [anon_sym_DOT_STAR] = ACTIONS(7637), - [anon_sym_DASH_GT] = ACTIONS(7637), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7637), - [anon_sym_override] = ACTIONS(7637), - [anon_sym_requires] = ACTIONS(7637), - }, - [STATE(3189)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), - [anon_sym_COMMA] = ACTIONS(7641), - [anon_sym_LPAREN2] = ACTIONS(7641), - [anon_sym_DASH] = ACTIONS(7639), - [anon_sym_PLUS] = ACTIONS(7639), - [anon_sym_STAR] = ACTIONS(7639), - [anon_sym_SLASH] = ACTIONS(7639), - [anon_sym_PERCENT] = ACTIONS(7639), - [anon_sym_PIPE_PIPE] = ACTIONS(7641), - [anon_sym_AMP_AMP] = ACTIONS(7641), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_CARET] = ACTIONS(7639), - [anon_sym_AMP] = ACTIONS(7639), - [anon_sym_EQ_EQ] = ACTIONS(7641), - [anon_sym_BANG_EQ] = ACTIONS(7641), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_EQ] = ACTIONS(7641), - [anon_sym_LT_EQ] = ACTIONS(7639), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_LT_LT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(7639), - [anon_sym___extension__] = ACTIONS(7641), - [anon_sym_LBRACE] = ACTIONS(7641), - [anon_sym_LBRACK] = ACTIONS(7641), - [anon_sym_RBRACK] = ACTIONS(7641), - [anon_sym_EQ] = ACTIONS(7639), - [anon_sym_const] = ACTIONS(7639), - [anon_sym_constexpr] = ACTIONS(7641), - [anon_sym_volatile] = ACTIONS(7641), - [anon_sym_restrict] = ACTIONS(7641), - [anon_sym___restrict__] = ACTIONS(7641), - [anon_sym__Atomic] = ACTIONS(7641), - [anon_sym__Noreturn] = ACTIONS(7641), - [anon_sym_noreturn] = ACTIONS(7641), - [anon_sym__Nonnull] = ACTIONS(7641), - [anon_sym_mutable] = ACTIONS(7641), - [anon_sym_constinit] = ACTIONS(7641), - [anon_sym_consteval] = ACTIONS(7641), - [anon_sym_alignas] = ACTIONS(7641), - [anon_sym__Alignas] = ACTIONS(7641), - [anon_sym_QMARK] = ACTIONS(7641), - [anon_sym_STAR_EQ] = ACTIONS(7641), - [anon_sym_SLASH_EQ] = ACTIONS(7641), - [anon_sym_PERCENT_EQ] = ACTIONS(7641), - [anon_sym_PLUS_EQ] = ACTIONS(7641), - [anon_sym_DASH_EQ] = ACTIONS(7641), - [anon_sym_LT_LT_EQ] = ACTIONS(7641), - [anon_sym_GT_GT_EQ] = ACTIONS(7641), - [anon_sym_AMP_EQ] = ACTIONS(7641), - [anon_sym_CARET_EQ] = ACTIONS(7641), - [anon_sym_PIPE_EQ] = ACTIONS(7641), - [anon_sym_and_eq] = ACTIONS(7641), - [anon_sym_or_eq] = ACTIONS(7641), - [anon_sym_xor_eq] = ACTIONS(7641), - [anon_sym_LT_EQ_GT] = ACTIONS(7641), - [anon_sym_or] = ACTIONS(7639), - [anon_sym_and] = ACTIONS(7639), - [anon_sym_bitor] = ACTIONS(7641), - [anon_sym_xor] = ACTIONS(7639), - [anon_sym_bitand] = ACTIONS(7641), - [anon_sym_not_eq] = ACTIONS(7641), - [anon_sym_DASH_DASH] = ACTIONS(7641), - [anon_sym_PLUS_PLUS] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(7639), - [anon_sym_DOT_STAR] = ACTIONS(7641), - [anon_sym_DASH_GT] = ACTIONS(7641), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7641), - [anon_sym_requires] = ACTIONS(7641), + [STATE(3125)] = { + [sym_identifier] = ACTIONS(7642), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7644), + [anon_sym_COMMA] = ACTIONS(7644), + [anon_sym_RPAREN] = ACTIONS(7644), + [anon_sym_LPAREN2] = ACTIONS(7644), + [anon_sym_DASH] = ACTIONS(7642), + [anon_sym_PLUS] = ACTIONS(7642), + [anon_sym_STAR] = ACTIONS(7644), + [anon_sym_SLASH] = ACTIONS(7642), + [anon_sym_PERCENT] = ACTIONS(7644), + [anon_sym_PIPE_PIPE] = ACTIONS(7644), + [anon_sym_AMP_AMP] = ACTIONS(7644), + [anon_sym_PIPE] = ACTIONS(7642), + [anon_sym_CARET] = ACTIONS(7644), + [anon_sym_AMP] = ACTIONS(7642), + [anon_sym_EQ_EQ] = ACTIONS(7644), + [anon_sym_BANG_EQ] = ACTIONS(7644), + [anon_sym_GT] = ACTIONS(7642), + [anon_sym_GT_EQ] = ACTIONS(7644), + [anon_sym_LT_EQ] = ACTIONS(7642), + [anon_sym_LT] = ACTIONS(7642), + [anon_sym_LT_LT] = ACTIONS(7644), + [anon_sym_GT_GT] = ACTIONS(7644), + [anon_sym_SEMI] = ACTIONS(7644), + [anon_sym___extension__] = ACTIONS(7642), + [anon_sym___attribute__] = ACTIONS(7642), + [anon_sym___attribute] = ACTIONS(7642), + [anon_sym_COLON] = ACTIONS(7642), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7644), + [anon_sym___based] = ACTIONS(7642), + [anon_sym_LBRACE] = ACTIONS(7644), + [anon_sym_RBRACE] = ACTIONS(7644), + [anon_sym_signed] = ACTIONS(7642), + [anon_sym_unsigned] = ACTIONS(7642), + [anon_sym_long] = ACTIONS(7642), + [anon_sym_short] = ACTIONS(7642), + [anon_sym_LBRACK] = ACTIONS(7644), + [anon_sym_const] = ACTIONS(7642), + [anon_sym_constexpr] = ACTIONS(7642), + [anon_sym_volatile] = ACTIONS(7642), + [anon_sym_restrict] = ACTIONS(7642), + [anon_sym___restrict__] = ACTIONS(7642), + [anon_sym__Atomic] = ACTIONS(7642), + [anon_sym__Noreturn] = ACTIONS(7642), + [anon_sym_noreturn] = ACTIONS(7642), + [anon_sym__Nonnull] = ACTIONS(7642), + [anon_sym_mutable] = ACTIONS(7642), + [anon_sym_constinit] = ACTIONS(7642), + [anon_sym_consteval] = ACTIONS(7642), + [anon_sym_alignas] = ACTIONS(7642), + [anon_sym__Alignas] = ACTIONS(7642), + [sym_primitive_type] = ACTIONS(7642), + [anon_sym_QMARK] = ACTIONS(7644), + [anon_sym_LT_EQ_GT] = ACTIONS(7644), + [anon_sym_or] = ACTIONS(7642), + [anon_sym_and] = ACTIONS(7642), + [anon_sym_bitor] = ACTIONS(7642), + [anon_sym_xor] = ACTIONS(7642), + [anon_sym_bitand] = ACTIONS(7642), + [anon_sym_not_eq] = ACTIONS(7642), + [anon_sym_DASH_DASH] = ACTIONS(7644), + [anon_sym_PLUS_PLUS] = ACTIONS(7644), + [anon_sym_DOT] = ACTIONS(7642), + [anon_sym_DOT_STAR] = ACTIONS(7644), + [anon_sym_DASH_GT] = ACTIONS(7644), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7642), + [anon_sym_override] = ACTIONS(7642), + [anon_sym_requires] = ACTIONS(7642), + [anon_sym_COLON_RBRACK] = ACTIONS(7644), }, - [STATE(3190)] = { - [sym_identifier] = ACTIONS(7739), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), - [anon_sym_COMMA] = ACTIONS(7741), - [anon_sym_RPAREN] = ACTIONS(7741), - [anon_sym_LPAREN2] = ACTIONS(7741), - [anon_sym_DASH] = ACTIONS(7739), - [anon_sym_PLUS] = ACTIONS(7739), - [anon_sym_STAR] = ACTIONS(7741), - [anon_sym_SLASH] = ACTIONS(7739), - [anon_sym_PERCENT] = ACTIONS(7741), - [anon_sym_PIPE_PIPE] = ACTIONS(7741), - [anon_sym_AMP_AMP] = ACTIONS(7741), - [anon_sym_PIPE] = ACTIONS(7739), - [anon_sym_CARET] = ACTIONS(7741), - [anon_sym_AMP] = ACTIONS(7739), - [anon_sym_EQ_EQ] = ACTIONS(7741), - [anon_sym_BANG_EQ] = ACTIONS(7741), - [anon_sym_GT] = ACTIONS(7739), - [anon_sym_GT_EQ] = ACTIONS(7741), - [anon_sym_LT_EQ] = ACTIONS(7739), - [anon_sym_LT] = ACTIONS(7739), - [anon_sym_LT_LT] = ACTIONS(7741), - [anon_sym_GT_GT] = ACTIONS(7741), - [anon_sym_SEMI] = ACTIONS(7741), - [anon_sym___extension__] = ACTIONS(7739), - [anon_sym___attribute__] = ACTIONS(7739), - [anon_sym___attribute] = ACTIONS(7739), - [anon_sym_COLON] = ACTIONS(7739), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7741), - [anon_sym___based] = ACTIONS(7739), - [anon_sym_LBRACE] = ACTIONS(7741), - [anon_sym_RBRACE] = ACTIONS(7741), - [anon_sym_signed] = ACTIONS(7739), - [anon_sym_unsigned] = ACTIONS(7739), - [anon_sym_long] = ACTIONS(7739), - [anon_sym_short] = ACTIONS(7739), - [anon_sym_LBRACK] = ACTIONS(7741), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7739), - [anon_sym_volatile] = ACTIONS(7739), - [anon_sym_restrict] = ACTIONS(7739), - [anon_sym___restrict__] = ACTIONS(7739), - [anon_sym__Atomic] = ACTIONS(7739), - [anon_sym__Noreturn] = ACTIONS(7739), - [anon_sym_noreturn] = ACTIONS(7739), - [anon_sym__Nonnull] = ACTIONS(7739), - [anon_sym_mutable] = ACTIONS(7739), - [anon_sym_constinit] = ACTIONS(7739), - [anon_sym_consteval] = ACTIONS(7739), - [anon_sym_alignas] = ACTIONS(7739), - [anon_sym__Alignas] = ACTIONS(7739), - [sym_primitive_type] = ACTIONS(7739), - [anon_sym_QMARK] = ACTIONS(7741), - [anon_sym_LT_EQ_GT] = ACTIONS(7741), - [anon_sym_or] = ACTIONS(7739), - [anon_sym_and] = ACTIONS(7739), - [anon_sym_bitor] = ACTIONS(7739), - [anon_sym_xor] = ACTIONS(7739), - [anon_sym_bitand] = ACTIONS(7739), - [anon_sym_not_eq] = ACTIONS(7739), - [anon_sym_DASH_DASH] = ACTIONS(7741), - [anon_sym_PLUS_PLUS] = ACTIONS(7741), - [anon_sym_DOT] = ACTIONS(7739), - [anon_sym_DOT_STAR] = ACTIONS(7741), - [anon_sym_DASH_GT] = ACTIONS(7741), + [STATE(3126)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7713), + [anon_sym_COMMA] = ACTIONS(7713), + [anon_sym_LPAREN2] = ACTIONS(7713), + [anon_sym_DASH] = ACTIONS(7711), + [anon_sym_PLUS] = ACTIONS(7711), + [anon_sym_STAR] = ACTIONS(7711), + [anon_sym_SLASH] = ACTIONS(7711), + [anon_sym_PERCENT] = ACTIONS(7711), + [anon_sym_PIPE_PIPE] = ACTIONS(7713), + [anon_sym_AMP_AMP] = ACTIONS(7713), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_CARET] = ACTIONS(7711), + [anon_sym_AMP] = ACTIONS(7711), + [anon_sym_EQ_EQ] = ACTIONS(7713), + [anon_sym_BANG_EQ] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_EQ] = ACTIONS(7711), + [anon_sym_LT_EQ] = ACTIONS(7711), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_LT_LT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7711), + [anon_sym___extension__] = ACTIONS(7713), + [anon_sym_LBRACE] = ACTIONS(7713), + [anon_sym_LBRACK] = ACTIONS(7713), + [anon_sym_EQ] = ACTIONS(7711), + [anon_sym_const] = ACTIONS(7711), + [anon_sym_constexpr] = ACTIONS(7713), + [anon_sym_volatile] = ACTIONS(7713), + [anon_sym_restrict] = ACTIONS(7713), + [anon_sym___restrict__] = ACTIONS(7713), + [anon_sym__Atomic] = ACTIONS(7713), + [anon_sym__Noreturn] = ACTIONS(7713), + [anon_sym_noreturn] = ACTIONS(7713), + [anon_sym__Nonnull] = ACTIONS(7713), + [anon_sym_mutable] = ACTIONS(7713), + [anon_sym_constinit] = ACTIONS(7713), + [anon_sym_consteval] = ACTIONS(7713), + [anon_sym_alignas] = ACTIONS(7713), + [anon_sym__Alignas] = ACTIONS(7713), + [anon_sym_QMARK] = ACTIONS(7713), + [anon_sym_STAR_EQ] = ACTIONS(7713), + [anon_sym_SLASH_EQ] = ACTIONS(7713), + [anon_sym_PERCENT_EQ] = ACTIONS(7713), + [anon_sym_PLUS_EQ] = ACTIONS(7713), + [anon_sym_DASH_EQ] = ACTIONS(7713), + [anon_sym_LT_LT_EQ] = ACTIONS(7713), + [anon_sym_GT_GT_EQ] = ACTIONS(7711), + [anon_sym_AMP_EQ] = ACTIONS(7713), + [anon_sym_CARET_EQ] = ACTIONS(7713), + [anon_sym_PIPE_EQ] = ACTIONS(7713), + [anon_sym_and_eq] = ACTIONS(7713), + [anon_sym_or_eq] = ACTIONS(7713), + [anon_sym_xor_eq] = ACTIONS(7713), + [anon_sym_LT_EQ_GT] = ACTIONS(7713), + [anon_sym_or] = ACTIONS(7711), + [anon_sym_and] = ACTIONS(7711), + [anon_sym_bitor] = ACTIONS(7713), + [anon_sym_xor] = ACTIONS(7711), + [anon_sym_bitand] = ACTIONS(7713), + [anon_sym_not_eq] = ACTIONS(7713), + [anon_sym_DASH_DASH] = ACTIONS(7713), + [anon_sym_PLUS_PLUS] = ACTIONS(7713), + [anon_sym_DOT] = ACTIONS(7711), + [anon_sym_DOT_STAR] = ACTIONS(7713), + [anon_sym_DASH_GT] = ACTIONS(7713), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7739), - [anon_sym_override] = ACTIONS(7739), - [anon_sym_requires] = ACTIONS(7739), - [anon_sym_COLON_RBRACK] = ACTIONS(7741), - }, - [STATE(3191)] = { - [sym_identifier] = ACTIONS(7659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), - [anon_sym_COMMA] = ACTIONS(7661), - [anon_sym_RPAREN] = ACTIONS(7661), - [anon_sym_LPAREN2] = ACTIONS(7661), - [anon_sym_DASH] = ACTIONS(7659), - [anon_sym_PLUS] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7661), - [anon_sym_SLASH] = ACTIONS(7659), - [anon_sym_PERCENT] = ACTIONS(7661), - [anon_sym_PIPE_PIPE] = ACTIONS(7661), - [anon_sym_AMP_AMP] = ACTIONS(7661), - [anon_sym_PIPE] = ACTIONS(7659), - [anon_sym_CARET] = ACTIONS(7661), - [anon_sym_AMP] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7661), - [anon_sym_BANG_EQ] = ACTIONS(7661), - [anon_sym_GT] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7661), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_LT] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7661), - [anon_sym_GT_GT] = ACTIONS(7661), - [anon_sym_SEMI] = ACTIONS(7661), - [anon_sym___extension__] = ACTIONS(7659), - [anon_sym___attribute__] = ACTIONS(7659), - [anon_sym___attribute] = ACTIONS(7659), - [anon_sym_COLON] = ACTIONS(7659), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7661), - [anon_sym___based] = ACTIONS(7659), - [anon_sym_LBRACE] = ACTIONS(7661), - [anon_sym_RBRACE] = ACTIONS(7661), - [anon_sym_signed] = ACTIONS(7659), - [anon_sym_unsigned] = ACTIONS(7659), - [anon_sym_long] = ACTIONS(7659), - [anon_sym_short] = ACTIONS(7659), - [anon_sym_LBRACK] = ACTIONS(7661), - [anon_sym_const] = ACTIONS(7659), - [anon_sym_constexpr] = ACTIONS(7659), - [anon_sym_volatile] = ACTIONS(7659), - [anon_sym_restrict] = ACTIONS(7659), - [anon_sym___restrict__] = ACTIONS(7659), - [anon_sym__Atomic] = ACTIONS(7659), - [anon_sym__Noreturn] = ACTIONS(7659), - [anon_sym_noreturn] = ACTIONS(7659), - [anon_sym__Nonnull] = ACTIONS(7659), - [anon_sym_mutable] = ACTIONS(7659), - [anon_sym_constinit] = ACTIONS(7659), - [anon_sym_consteval] = ACTIONS(7659), - [anon_sym_alignas] = ACTIONS(7659), - [anon_sym__Alignas] = ACTIONS(7659), - [sym_primitive_type] = ACTIONS(7659), - [anon_sym_QMARK] = ACTIONS(7661), - [anon_sym_LT_EQ_GT] = ACTIONS(7661), - [anon_sym_or] = ACTIONS(7659), - [anon_sym_and] = ACTIONS(7659), - [anon_sym_bitor] = ACTIONS(7659), - [anon_sym_xor] = ACTIONS(7659), - [anon_sym_bitand] = ACTIONS(7659), - [anon_sym_not_eq] = ACTIONS(7659), - [anon_sym_DASH_DASH] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7661), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym_DOT_STAR] = ACTIONS(7661), - [anon_sym_DASH_GT] = ACTIONS(7661), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7659), - [anon_sym_override] = ACTIONS(7659), - [anon_sym_requires] = ACTIONS(7659), - [anon_sym_COLON_RBRACK] = ACTIONS(7661), + [anon_sym_final] = ACTIONS(7713), + [anon_sym_override] = ACTIONS(7713), + [anon_sym_GT2] = ACTIONS(7713), + [anon_sym_requires] = ACTIONS(7713), }, - [STATE(3192)] = { - [sym_identifier] = ACTIONS(7717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_RPAREN] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7719), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7719), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7719), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7719), - [anon_sym_GT_GT] = ACTIONS(7719), - [anon_sym_SEMI] = ACTIONS(7719), + [STATE(3127)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7717), + [anon_sym_COMMA] = ACTIONS(7717), + [anon_sym_LPAREN2] = ACTIONS(7717), + [anon_sym_DASH] = ACTIONS(7715), + [anon_sym_PLUS] = ACTIONS(7715), + [anon_sym_STAR] = ACTIONS(7715), + [anon_sym_SLASH] = ACTIONS(7715), + [anon_sym_PERCENT] = ACTIONS(7715), + [anon_sym_PIPE_PIPE] = ACTIONS(7717), + [anon_sym_AMP_AMP] = ACTIONS(7717), + [anon_sym_PIPE] = ACTIONS(7715), + [anon_sym_CARET] = ACTIONS(7715), + [anon_sym_AMP] = ACTIONS(7715), + [anon_sym_EQ_EQ] = ACTIONS(7717), + [anon_sym_BANG_EQ] = ACTIONS(7717), + [anon_sym_GT] = ACTIONS(7715), + [anon_sym_GT_EQ] = ACTIONS(7715), + [anon_sym_LT_EQ] = ACTIONS(7715), + [anon_sym_LT] = ACTIONS(7715), + [anon_sym_LT_LT] = ACTIONS(7715), + [anon_sym_GT_GT] = ACTIONS(7715), [anon_sym___extension__] = ACTIONS(7717), - [anon_sym___attribute__] = ACTIONS(7717), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_COLON] = ACTIONS(7717), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7719), - [anon_sym___based] = ACTIONS(7717), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_RBRACE] = ACTIONS(7719), - [anon_sym_signed] = ACTIONS(7717), - [anon_sym_unsigned] = ACTIONS(7717), - [anon_sym_long] = ACTIONS(7717), - [anon_sym_short] = ACTIONS(7717), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_const] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7717), + [anon_sym_EQ] = ACTIONS(7715), + [anon_sym_const] = ACTIONS(7715), [anon_sym_constexpr] = ACTIONS(7717), [anon_sym_volatile] = ACTIONS(7717), [anon_sym_restrict] = ACTIONS(7717), @@ -407673,459 +402825,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(7717), [anon_sym_alignas] = ACTIONS(7717), [anon_sym__Alignas] = ACTIONS(7717), - [sym_primitive_type] = ACTIONS(7717), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7717), - [anon_sym_and] = ACTIONS(7717), + [anon_sym_QMARK] = ACTIONS(7717), + [anon_sym_STAR_EQ] = ACTIONS(7717), + [anon_sym_SLASH_EQ] = ACTIONS(7717), + [anon_sym_PERCENT_EQ] = ACTIONS(7717), + [anon_sym_PLUS_EQ] = ACTIONS(7717), + [anon_sym_DASH_EQ] = ACTIONS(7717), + [anon_sym_LT_LT_EQ] = ACTIONS(7717), + [anon_sym_GT_GT_EQ] = ACTIONS(7715), + [anon_sym_AMP_EQ] = ACTIONS(7717), + [anon_sym_CARET_EQ] = ACTIONS(7717), + [anon_sym_PIPE_EQ] = ACTIONS(7717), + [anon_sym_and_eq] = ACTIONS(7717), + [anon_sym_or_eq] = ACTIONS(7717), + [anon_sym_xor_eq] = ACTIONS(7717), + [anon_sym_LT_EQ_GT] = ACTIONS(7717), + [anon_sym_or] = ACTIONS(7715), + [anon_sym_and] = ACTIONS(7715), [anon_sym_bitor] = ACTIONS(7717), - [anon_sym_xor] = ACTIONS(7717), + [anon_sym_xor] = ACTIONS(7715), [anon_sym_bitand] = ACTIONS(7717), [anon_sym_not_eq] = ACTIONS(7717), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7717), + [anon_sym_PLUS_PLUS] = ACTIONS(7717), + [anon_sym_DOT] = ACTIONS(7715), + [anon_sym_DOT_STAR] = ACTIONS(7717), + [anon_sym_DASH_GT] = ACTIONS(7717), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7717), [anon_sym_override] = ACTIONS(7717), + [anon_sym_GT2] = ACTIONS(7717), [anon_sym_requires] = ACTIONS(7717), - [anon_sym_COLON_RBRACK] = ACTIONS(7719), - }, - [STATE(3193)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6605), - [anon_sym_PERCENT] = ACTIONS(6605), - [anon_sym_PIPE_PIPE] = ACTIONS(6598), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6605), - [anon_sym_CARET] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_BANG_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6605), - [anon_sym_GT_EQ] = ACTIONS(6605), - [anon_sym_LT_EQ] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(6605), - [anon_sym_LT_LT] = ACTIONS(6605), - [anon_sym_GT_GT] = ACTIONS(6605), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6598), - [anon_sym_STAR_EQ] = ACTIONS(6598), - [anon_sym_SLASH_EQ] = ACTIONS(6598), - [anon_sym_PERCENT_EQ] = ACTIONS(6598), - [anon_sym_PLUS_EQ] = ACTIONS(6598), - [anon_sym_DASH_EQ] = ACTIONS(6598), - [anon_sym_LT_LT_EQ] = ACTIONS(6598), - [anon_sym_GT_GT_EQ] = ACTIONS(6605), - [anon_sym_AMP_EQ] = ACTIONS(6598), - [anon_sym_CARET_EQ] = ACTIONS(6598), - [anon_sym_PIPE_EQ] = ACTIONS(6598), - [anon_sym_and_eq] = ACTIONS(6598), - [anon_sym_or_eq] = ACTIONS(6598), - [anon_sym_xor_eq] = ACTIONS(6598), - [anon_sym_LT_EQ_GT] = ACTIONS(6598), - [anon_sym_or] = ACTIONS(6605), - [anon_sym_and] = ACTIONS(6605), - [anon_sym_bitor] = ACTIONS(6598), - [anon_sym_xor] = ACTIONS(6605), - [anon_sym_bitand] = ACTIONS(6598), - [anon_sym_not_eq] = ACTIONS(6598), - [anon_sym_DASH_DASH] = ACTIONS(6598), - [anon_sym_PLUS_PLUS] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6605), - [anon_sym_DOT_STAR] = ACTIONS(6598), - [anon_sym_DASH_GT] = ACTIONS(6598), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_GT2] = ACTIONS(6598), }, - [STATE(3194)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), - [anon_sym_COMMA] = ACTIONS(7657), - [anon_sym_LPAREN2] = ACTIONS(7657), - [anon_sym_DASH] = ACTIONS(7655), - [anon_sym_PLUS] = ACTIONS(7655), - [anon_sym_STAR] = ACTIONS(7655), - [anon_sym_SLASH] = ACTIONS(7655), - [anon_sym_PERCENT] = ACTIONS(7655), - [anon_sym_PIPE_PIPE] = ACTIONS(7657), - [anon_sym_AMP_AMP] = ACTIONS(7657), - [anon_sym_PIPE] = ACTIONS(7655), - [anon_sym_CARET] = ACTIONS(7655), - [anon_sym_AMP] = ACTIONS(7655), - [anon_sym_EQ_EQ] = ACTIONS(7657), - [anon_sym_BANG_EQ] = ACTIONS(7657), - [anon_sym_GT] = ACTIONS(7655), - [anon_sym_GT_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7655), - [anon_sym_LT] = ACTIONS(7655), - [anon_sym_LT_LT] = ACTIONS(7655), - [anon_sym_GT_GT] = ACTIONS(7655), - [anon_sym___extension__] = ACTIONS(7657), - [anon_sym_LBRACE] = ACTIONS(7657), - [anon_sym_LBRACK] = ACTIONS(7657), - [anon_sym_RBRACK] = ACTIONS(7657), - [anon_sym_EQ] = ACTIONS(7655), - [anon_sym_const] = ACTIONS(7655), - [anon_sym_constexpr] = ACTIONS(7657), - [anon_sym_volatile] = ACTIONS(7657), - [anon_sym_restrict] = ACTIONS(7657), - [anon_sym___restrict__] = ACTIONS(7657), - [anon_sym__Atomic] = ACTIONS(7657), - [anon_sym__Noreturn] = ACTIONS(7657), - [anon_sym_noreturn] = ACTIONS(7657), - [anon_sym__Nonnull] = ACTIONS(7657), - [anon_sym_mutable] = ACTIONS(7657), - [anon_sym_constinit] = ACTIONS(7657), - [anon_sym_consteval] = ACTIONS(7657), - [anon_sym_alignas] = ACTIONS(7657), - [anon_sym__Alignas] = ACTIONS(7657), - [anon_sym_QMARK] = ACTIONS(7657), - [anon_sym_STAR_EQ] = ACTIONS(7657), - [anon_sym_SLASH_EQ] = ACTIONS(7657), - [anon_sym_PERCENT_EQ] = ACTIONS(7657), - [anon_sym_PLUS_EQ] = ACTIONS(7657), - [anon_sym_DASH_EQ] = ACTIONS(7657), - [anon_sym_LT_LT_EQ] = ACTIONS(7657), - [anon_sym_GT_GT_EQ] = ACTIONS(7657), - [anon_sym_AMP_EQ] = ACTIONS(7657), - [anon_sym_CARET_EQ] = ACTIONS(7657), - [anon_sym_PIPE_EQ] = ACTIONS(7657), - [anon_sym_and_eq] = ACTIONS(7657), - [anon_sym_or_eq] = ACTIONS(7657), - [anon_sym_xor_eq] = ACTIONS(7657), - [anon_sym_LT_EQ_GT] = ACTIONS(7657), - [anon_sym_or] = ACTIONS(7655), - [anon_sym_and] = ACTIONS(7655), - [anon_sym_bitor] = ACTIONS(7657), - [anon_sym_xor] = ACTIONS(7655), - [anon_sym_bitand] = ACTIONS(7657), - [anon_sym_not_eq] = ACTIONS(7657), - [anon_sym_DASH_DASH] = ACTIONS(7657), - [anon_sym_PLUS_PLUS] = ACTIONS(7657), - [anon_sym_DOT] = ACTIONS(7655), - [anon_sym_DOT_STAR] = ACTIONS(7657), - [anon_sym_DASH_GT] = ACTIONS(7657), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7657), - [anon_sym_override] = ACTIONS(7657), - [anon_sym_requires] = ACTIONS(7657), - }, - [STATE(3195)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_RBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7563), - [anon_sym_or_eq] = ACTIONS(7563), - [anon_sym_xor_eq] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), + [STATE(3128)] = { + [sym_identifier] = ACTIONS(7650), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7652), + [anon_sym_COMMA] = ACTIONS(7652), + [anon_sym_RPAREN] = ACTIONS(7652), + [anon_sym_LPAREN2] = ACTIONS(7652), + [anon_sym_DASH] = ACTIONS(7650), + [anon_sym_PLUS] = ACTIONS(7650), + [anon_sym_STAR] = ACTIONS(7652), + [anon_sym_SLASH] = ACTIONS(7650), + [anon_sym_PERCENT] = ACTIONS(7652), + [anon_sym_PIPE_PIPE] = ACTIONS(7652), + [anon_sym_AMP_AMP] = ACTIONS(7652), + [anon_sym_PIPE] = ACTIONS(7650), + [anon_sym_CARET] = ACTIONS(7652), + [anon_sym_AMP] = ACTIONS(7650), + [anon_sym_EQ_EQ] = ACTIONS(7652), + [anon_sym_BANG_EQ] = ACTIONS(7652), + [anon_sym_GT] = ACTIONS(7650), + [anon_sym_GT_EQ] = ACTIONS(7652), + [anon_sym_LT_EQ] = ACTIONS(7650), + [anon_sym_LT] = ACTIONS(7650), + [anon_sym_LT_LT] = ACTIONS(7652), + [anon_sym_GT_GT] = ACTIONS(7652), + [anon_sym_SEMI] = ACTIONS(7652), + [anon_sym___extension__] = ACTIONS(7650), + [anon_sym___attribute__] = ACTIONS(7650), + [anon_sym___attribute] = ACTIONS(7650), + [anon_sym_COLON] = ACTIONS(7650), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7652), + [anon_sym___based] = ACTIONS(7650), + [anon_sym_LBRACE] = ACTIONS(7652), + [anon_sym_RBRACE] = ACTIONS(7652), + [anon_sym_signed] = ACTIONS(7650), + [anon_sym_unsigned] = ACTIONS(7650), + [anon_sym_long] = ACTIONS(7650), + [anon_sym_short] = ACTIONS(7650), + [anon_sym_LBRACK] = ACTIONS(7652), + [anon_sym_const] = ACTIONS(7650), + [anon_sym_constexpr] = ACTIONS(7650), + [anon_sym_volatile] = ACTIONS(7650), + [anon_sym_restrict] = ACTIONS(7650), + [anon_sym___restrict__] = ACTIONS(7650), + [anon_sym__Atomic] = ACTIONS(7650), + [anon_sym__Noreturn] = ACTIONS(7650), + [anon_sym_noreturn] = ACTIONS(7650), + [anon_sym__Nonnull] = ACTIONS(7650), + [anon_sym_mutable] = ACTIONS(7650), + [anon_sym_constinit] = ACTIONS(7650), + [anon_sym_consteval] = ACTIONS(7650), + [anon_sym_alignas] = ACTIONS(7650), + [anon_sym__Alignas] = ACTIONS(7650), + [sym_primitive_type] = ACTIONS(7650), + [anon_sym_QMARK] = ACTIONS(7652), + [anon_sym_LT_EQ_GT] = ACTIONS(7652), + [anon_sym_or] = ACTIONS(7650), + [anon_sym_and] = ACTIONS(7650), + [anon_sym_bitor] = ACTIONS(7650), + [anon_sym_xor] = ACTIONS(7650), + [anon_sym_bitand] = ACTIONS(7650), + [anon_sym_not_eq] = ACTIONS(7650), + [anon_sym_DASH_DASH] = ACTIONS(7652), + [anon_sym_PLUS_PLUS] = ACTIONS(7652), + [anon_sym_DOT] = ACTIONS(7650), + [anon_sym_DOT_STAR] = ACTIONS(7652), + [anon_sym_DASH_GT] = ACTIONS(7652), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7650), + [anon_sym_override] = ACTIONS(7650), + [anon_sym_requires] = ACTIONS(7650), + [anon_sym_COLON_RBRACK] = ACTIONS(7652), }, - [STATE(3196)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), - [anon_sym_COMMA] = ACTIONS(7601), - [anon_sym_LPAREN2] = ACTIONS(7601), - [anon_sym_DASH] = ACTIONS(7599), - [anon_sym_PLUS] = ACTIONS(7599), - [anon_sym_STAR] = ACTIONS(7599), - [anon_sym_SLASH] = ACTIONS(7599), - [anon_sym_PERCENT] = ACTIONS(7599), - [anon_sym_PIPE_PIPE] = ACTIONS(7601), - [anon_sym_AMP_AMP] = ACTIONS(7601), - [anon_sym_PIPE] = ACTIONS(7599), - [anon_sym_CARET] = ACTIONS(7599), - [anon_sym_AMP] = ACTIONS(7599), - [anon_sym_EQ_EQ] = ACTIONS(7601), - [anon_sym_BANG_EQ] = ACTIONS(7601), - [anon_sym_GT] = ACTIONS(7599), - [anon_sym_GT_EQ] = ACTIONS(7601), - [anon_sym_LT_EQ] = ACTIONS(7599), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_LT_LT] = ACTIONS(7599), - [anon_sym_GT_GT] = ACTIONS(7599), - [anon_sym___extension__] = ACTIONS(7601), - [anon_sym_LBRACE] = ACTIONS(7601), - [anon_sym_LBRACK] = ACTIONS(7601), - [anon_sym_RBRACK] = ACTIONS(7601), - [anon_sym_EQ] = ACTIONS(7599), - [anon_sym_const] = ACTIONS(7599), - [anon_sym_constexpr] = ACTIONS(7601), - [anon_sym_volatile] = ACTIONS(7601), - [anon_sym_restrict] = ACTIONS(7601), - [anon_sym___restrict__] = ACTIONS(7601), - [anon_sym__Atomic] = ACTIONS(7601), - [anon_sym__Noreturn] = ACTIONS(7601), - [anon_sym_noreturn] = ACTIONS(7601), - [anon_sym__Nonnull] = ACTIONS(7601), - [anon_sym_mutable] = ACTIONS(7601), - [anon_sym_constinit] = ACTIONS(7601), - [anon_sym_consteval] = ACTIONS(7601), - [anon_sym_alignas] = ACTIONS(7601), - [anon_sym__Alignas] = ACTIONS(7601), - [anon_sym_QMARK] = ACTIONS(7601), - [anon_sym_STAR_EQ] = ACTIONS(7601), - [anon_sym_SLASH_EQ] = ACTIONS(7601), - [anon_sym_PERCENT_EQ] = ACTIONS(7601), - [anon_sym_PLUS_EQ] = ACTIONS(7601), - [anon_sym_DASH_EQ] = ACTIONS(7601), - [anon_sym_LT_LT_EQ] = ACTIONS(7601), - [anon_sym_GT_GT_EQ] = ACTIONS(7601), - [anon_sym_AMP_EQ] = ACTIONS(7601), - [anon_sym_CARET_EQ] = ACTIONS(7601), - [anon_sym_PIPE_EQ] = ACTIONS(7601), - [anon_sym_and_eq] = ACTIONS(7601), - [anon_sym_or_eq] = ACTIONS(7601), - [anon_sym_xor_eq] = ACTIONS(7601), - [anon_sym_LT_EQ_GT] = ACTIONS(7601), - [anon_sym_or] = ACTIONS(7599), - [anon_sym_and] = ACTIONS(7599), - [anon_sym_bitor] = ACTIONS(7601), - [anon_sym_xor] = ACTIONS(7599), - [anon_sym_bitand] = ACTIONS(7601), - [anon_sym_not_eq] = ACTIONS(7601), - [anon_sym_DASH_DASH] = ACTIONS(7601), - [anon_sym_PLUS_PLUS] = ACTIONS(7601), - [anon_sym_DOT] = ACTIONS(7599), - [anon_sym_DOT_STAR] = ACTIONS(7601), - [anon_sym_DASH_GT] = ACTIONS(7601), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7601), - [anon_sym_override] = ACTIONS(7601), - [anon_sym_requires] = ACTIONS(7601), + [STATE(3129)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7592), + [anon_sym_COMMA] = ACTIONS(7592), + [anon_sym_LPAREN2] = ACTIONS(7592), + [anon_sym_DASH] = ACTIONS(7590), + [anon_sym_PLUS] = ACTIONS(7590), + [anon_sym_STAR] = ACTIONS(7590), + [anon_sym_SLASH] = ACTIONS(7590), + [anon_sym_PERCENT] = ACTIONS(7590), + [anon_sym_PIPE_PIPE] = ACTIONS(7592), + [anon_sym_AMP_AMP] = ACTIONS(7592), + [anon_sym_PIPE] = ACTIONS(7590), + [anon_sym_CARET] = ACTIONS(7590), + [anon_sym_AMP] = ACTIONS(7590), + [anon_sym_EQ_EQ] = ACTIONS(7592), + [anon_sym_BANG_EQ] = ACTIONS(7592), + [anon_sym_GT] = ACTIONS(7590), + [anon_sym_GT_EQ] = ACTIONS(7592), + [anon_sym_LT_EQ] = ACTIONS(7590), + [anon_sym_LT] = ACTIONS(7590), + [anon_sym_LT_LT] = ACTIONS(7590), + [anon_sym_GT_GT] = ACTIONS(7590), + [anon_sym___extension__] = ACTIONS(7592), + [anon_sym_LBRACE] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7592), + [anon_sym_RBRACK] = ACTIONS(7592), + [anon_sym_EQ] = ACTIONS(7590), + [anon_sym_const] = ACTIONS(7590), + [anon_sym_constexpr] = ACTIONS(7592), + [anon_sym_volatile] = ACTIONS(7592), + [anon_sym_restrict] = ACTIONS(7592), + [anon_sym___restrict__] = ACTIONS(7592), + [anon_sym__Atomic] = ACTIONS(7592), + [anon_sym__Noreturn] = ACTIONS(7592), + [anon_sym_noreturn] = ACTIONS(7592), + [anon_sym__Nonnull] = ACTIONS(7592), + [anon_sym_mutable] = ACTIONS(7592), + [anon_sym_constinit] = ACTIONS(7592), + [anon_sym_consteval] = ACTIONS(7592), + [anon_sym_alignas] = ACTIONS(7592), + [anon_sym__Alignas] = ACTIONS(7592), + [anon_sym_QMARK] = ACTIONS(7592), + [anon_sym_STAR_EQ] = ACTIONS(7592), + [anon_sym_SLASH_EQ] = ACTIONS(7592), + [anon_sym_PERCENT_EQ] = ACTIONS(7592), + [anon_sym_PLUS_EQ] = ACTIONS(7592), + [anon_sym_DASH_EQ] = ACTIONS(7592), + [anon_sym_LT_LT_EQ] = ACTIONS(7592), + [anon_sym_GT_GT_EQ] = ACTIONS(7592), + [anon_sym_AMP_EQ] = ACTIONS(7592), + [anon_sym_CARET_EQ] = ACTIONS(7592), + [anon_sym_PIPE_EQ] = ACTIONS(7592), + [anon_sym_and_eq] = ACTIONS(7592), + [anon_sym_or_eq] = ACTIONS(7592), + [anon_sym_xor_eq] = ACTIONS(7592), + [anon_sym_LT_EQ_GT] = ACTIONS(7592), + [anon_sym_or] = ACTIONS(7590), + [anon_sym_and] = ACTIONS(7590), + [anon_sym_bitor] = ACTIONS(7592), + [anon_sym_xor] = ACTIONS(7590), + [anon_sym_bitand] = ACTIONS(7592), + [anon_sym_not_eq] = ACTIONS(7592), + [anon_sym_DASH_DASH] = ACTIONS(7592), + [anon_sym_PLUS_PLUS] = ACTIONS(7592), + [anon_sym_DOT] = ACTIONS(7590), + [anon_sym_DOT_STAR] = ACTIONS(7592), + [anon_sym_DASH_GT] = ACTIONS(7592), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7592), + [anon_sym_override] = ACTIONS(7592), + [anon_sym_requires] = ACTIONS(7592), }, - [STATE(3197)] = { - [sym_identifier] = ACTIONS(7731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), - [anon_sym_COMMA] = ACTIONS(7733), - [anon_sym_RPAREN] = ACTIONS(7733), - [anon_sym_LPAREN2] = ACTIONS(7733), - [anon_sym_DASH] = ACTIONS(7731), - [anon_sym_PLUS] = ACTIONS(7731), - [anon_sym_STAR] = ACTIONS(7733), - [anon_sym_SLASH] = ACTIONS(7731), - [anon_sym_PERCENT] = ACTIONS(7733), - [anon_sym_PIPE_PIPE] = ACTIONS(7733), - [anon_sym_AMP_AMP] = ACTIONS(7733), - [anon_sym_PIPE] = ACTIONS(7731), - [anon_sym_CARET] = ACTIONS(7733), - [anon_sym_AMP] = ACTIONS(7731), - [anon_sym_EQ_EQ] = ACTIONS(7733), - [anon_sym_BANG_EQ] = ACTIONS(7733), - [anon_sym_GT] = ACTIONS(7731), - [anon_sym_GT_EQ] = ACTIONS(7733), - [anon_sym_LT_EQ] = ACTIONS(7731), - [anon_sym_LT] = ACTIONS(7731), - [anon_sym_LT_LT] = ACTIONS(7733), - [anon_sym_GT_GT] = ACTIONS(7733), - [anon_sym_SEMI] = ACTIONS(7733), - [anon_sym___extension__] = ACTIONS(7731), - [anon_sym___attribute__] = ACTIONS(7731), - [anon_sym___attribute] = ACTIONS(7731), - [anon_sym_COLON] = ACTIONS(7731), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7733), - [anon_sym___based] = ACTIONS(7731), - [anon_sym_LBRACE] = ACTIONS(7733), - [anon_sym_RBRACE] = ACTIONS(7733), - [anon_sym_signed] = ACTIONS(7731), - [anon_sym_unsigned] = ACTIONS(7731), - [anon_sym_long] = ACTIONS(7731), - [anon_sym_short] = ACTIONS(7731), - [anon_sym_LBRACK] = ACTIONS(7733), - [anon_sym_const] = ACTIONS(7731), - [anon_sym_constexpr] = ACTIONS(7731), - [anon_sym_volatile] = ACTIONS(7731), - [anon_sym_restrict] = ACTIONS(7731), - [anon_sym___restrict__] = ACTIONS(7731), - [anon_sym__Atomic] = ACTIONS(7731), - [anon_sym__Noreturn] = ACTIONS(7731), - [anon_sym_noreturn] = ACTIONS(7731), - [anon_sym__Nonnull] = ACTIONS(7731), - [anon_sym_mutable] = ACTIONS(7731), - [anon_sym_constinit] = ACTIONS(7731), - [anon_sym_consteval] = ACTIONS(7731), - [anon_sym_alignas] = ACTIONS(7731), - [anon_sym__Alignas] = ACTIONS(7731), - [sym_primitive_type] = ACTIONS(7731), - [anon_sym_QMARK] = ACTIONS(7733), - [anon_sym_LT_EQ_GT] = ACTIONS(7733), - [anon_sym_or] = ACTIONS(7731), - [anon_sym_and] = ACTIONS(7731), - [anon_sym_bitor] = ACTIONS(7731), - [anon_sym_xor] = ACTIONS(7731), - [anon_sym_bitand] = ACTIONS(7731), - [anon_sym_not_eq] = ACTIONS(7731), - [anon_sym_DASH_DASH] = ACTIONS(7733), - [anon_sym_PLUS_PLUS] = ACTIONS(7733), - [anon_sym_DOT] = ACTIONS(7731), - [anon_sym_DOT_STAR] = ACTIONS(7733), - [anon_sym_DASH_GT] = ACTIONS(7733), + [STATE(3130)] = { + [sym_identifier] = ACTIONS(7765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7767), + [anon_sym_COMMA] = ACTIONS(7767), + [anon_sym_RPAREN] = ACTIONS(7767), + [anon_sym_LPAREN2] = ACTIONS(7767), + [anon_sym_DASH] = ACTIONS(7765), + [anon_sym_PLUS] = ACTIONS(7765), + [anon_sym_STAR] = ACTIONS(7767), + [anon_sym_SLASH] = ACTIONS(7765), + [anon_sym_PERCENT] = ACTIONS(7767), + [anon_sym_PIPE_PIPE] = ACTIONS(7767), + [anon_sym_AMP_AMP] = ACTIONS(7767), + [anon_sym_PIPE] = ACTIONS(7765), + [anon_sym_CARET] = ACTIONS(7767), + [anon_sym_AMP] = ACTIONS(7765), + [anon_sym_EQ_EQ] = ACTIONS(7767), + [anon_sym_BANG_EQ] = ACTIONS(7767), + [anon_sym_GT] = ACTIONS(7765), + [anon_sym_GT_EQ] = ACTIONS(7767), + [anon_sym_LT_EQ] = ACTIONS(7765), + [anon_sym_LT] = ACTIONS(7765), + [anon_sym_LT_LT] = ACTIONS(7767), + [anon_sym_GT_GT] = ACTIONS(7767), + [anon_sym_SEMI] = ACTIONS(7767), + [anon_sym___extension__] = ACTIONS(7765), + [anon_sym___attribute__] = ACTIONS(7765), + [anon_sym___attribute] = ACTIONS(7765), + [anon_sym_COLON] = ACTIONS(7765), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7767), + [anon_sym___based] = ACTIONS(7765), + [anon_sym_LBRACE] = ACTIONS(7767), + [anon_sym_RBRACE] = ACTIONS(7767), + [anon_sym_signed] = ACTIONS(7765), + [anon_sym_unsigned] = ACTIONS(7765), + [anon_sym_long] = ACTIONS(7765), + [anon_sym_short] = ACTIONS(7765), + [anon_sym_LBRACK] = ACTIONS(7767), + [anon_sym_const] = ACTIONS(7765), + [anon_sym_constexpr] = ACTIONS(7765), + [anon_sym_volatile] = ACTIONS(7765), + [anon_sym_restrict] = ACTIONS(7765), + [anon_sym___restrict__] = ACTIONS(7765), + [anon_sym__Atomic] = ACTIONS(7765), + [anon_sym__Noreturn] = ACTIONS(7765), + [anon_sym_noreturn] = ACTIONS(7765), + [anon_sym__Nonnull] = ACTIONS(7765), + [anon_sym_mutable] = ACTIONS(7765), + [anon_sym_constinit] = ACTIONS(7765), + [anon_sym_consteval] = ACTIONS(7765), + [anon_sym_alignas] = ACTIONS(7765), + [anon_sym__Alignas] = ACTIONS(7765), + [sym_primitive_type] = ACTIONS(7765), + [anon_sym_QMARK] = ACTIONS(7767), + [anon_sym_LT_EQ_GT] = ACTIONS(7767), + [anon_sym_or] = ACTIONS(7765), + [anon_sym_and] = ACTIONS(7765), + [anon_sym_bitor] = ACTIONS(7765), + [anon_sym_xor] = ACTIONS(7765), + [anon_sym_bitand] = ACTIONS(7765), + [anon_sym_not_eq] = ACTIONS(7765), + [anon_sym_DASH_DASH] = ACTIONS(7767), + [anon_sym_PLUS_PLUS] = ACTIONS(7767), + [anon_sym_DOT] = ACTIONS(7765), + [anon_sym_DOT_STAR] = ACTIONS(7767), + [anon_sym_DASH_GT] = ACTIONS(7767), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7731), - [anon_sym_override] = ACTIONS(7731), - [anon_sym_requires] = ACTIONS(7731), - [anon_sym_COLON_RBRACK] = ACTIONS(7733), - }, - [STATE(3198)] = { - [sym_identifier] = ACTIONS(9088), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9090), - [anon_sym_COMMA] = ACTIONS(9090), - [anon_sym_RPAREN] = ACTIONS(9090), - [aux_sym_preproc_if_token2] = ACTIONS(9090), - [aux_sym_preproc_else_token1] = ACTIONS(9090), - [aux_sym_preproc_elif_token1] = ACTIONS(9088), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9090), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9090), - [anon_sym_LPAREN2] = ACTIONS(9090), - [anon_sym_DASH] = ACTIONS(9088), - [anon_sym_PLUS] = ACTIONS(9088), - [anon_sym_STAR] = ACTIONS(9088), - [anon_sym_SLASH] = ACTIONS(9088), - [anon_sym_PERCENT] = ACTIONS(9088), - [anon_sym_PIPE_PIPE] = ACTIONS(9090), - [anon_sym_AMP_AMP] = ACTIONS(9090), - [anon_sym_PIPE] = ACTIONS(9088), - [anon_sym_CARET] = ACTIONS(9088), - [anon_sym_AMP] = ACTIONS(9088), - [anon_sym_EQ_EQ] = ACTIONS(9090), - [anon_sym_BANG_EQ] = ACTIONS(9090), - [anon_sym_GT] = ACTIONS(9088), - [anon_sym_GT_EQ] = ACTIONS(9090), - [anon_sym_LT_EQ] = ACTIONS(9088), - [anon_sym_LT] = ACTIONS(9088), - [anon_sym_LT_LT] = ACTIONS(9088), - [anon_sym_GT_GT] = ACTIONS(9088), - [anon_sym_SEMI] = ACTIONS(9090), - [anon_sym___attribute__] = ACTIONS(9088), - [anon_sym___attribute] = ACTIONS(9088), - [anon_sym_COLON] = ACTIONS(9088), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9090), - [anon_sym_LBRACE] = ACTIONS(9090), - [anon_sym_RBRACE] = ACTIONS(9090), - [anon_sym_LBRACK] = ACTIONS(9088), - [anon_sym_RBRACK] = ACTIONS(9090), - [anon_sym_EQ] = ACTIONS(9088), - [anon_sym_QMARK] = ACTIONS(9090), - [anon_sym_STAR_EQ] = ACTIONS(9090), - [anon_sym_SLASH_EQ] = ACTIONS(9090), - [anon_sym_PERCENT_EQ] = ACTIONS(9090), - [anon_sym_PLUS_EQ] = ACTIONS(9090), - [anon_sym_DASH_EQ] = ACTIONS(9090), - [anon_sym_LT_LT_EQ] = ACTIONS(9090), - [anon_sym_GT_GT_EQ] = ACTIONS(9090), - [anon_sym_AMP_EQ] = ACTIONS(9090), - [anon_sym_CARET_EQ] = ACTIONS(9090), - [anon_sym_PIPE_EQ] = ACTIONS(9090), - [anon_sym_and_eq] = ACTIONS(9088), - [anon_sym_or_eq] = ACTIONS(9088), - [anon_sym_xor_eq] = ACTIONS(9088), - [anon_sym_LT_EQ_GT] = ACTIONS(9090), - [anon_sym_or] = ACTIONS(9088), - [anon_sym_and] = ACTIONS(9088), - [anon_sym_bitor] = ACTIONS(9088), - [anon_sym_xor] = ACTIONS(9088), - [anon_sym_bitand] = ACTIONS(9088), - [anon_sym_not_eq] = ACTIONS(9088), - [anon_sym_DASH_DASH] = ACTIONS(9090), - [anon_sym_PLUS_PLUS] = ACTIONS(9090), - [anon_sym_asm] = ACTIONS(9088), - [anon_sym___asm__] = ACTIONS(9088), - [anon_sym___asm] = ACTIONS(9088), - [anon_sym_DOT] = ACTIONS(9088), - [anon_sym_DOT_STAR] = ACTIONS(9090), - [anon_sym_DASH_GT] = ACTIONS(9090), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9088), - [anon_sym_COLON_RBRACK] = ACTIONS(9090), + [anon_sym_final] = ACTIONS(7765), + [anon_sym_override] = ACTIONS(7765), + [anon_sym_requires] = ACTIONS(7765), + [anon_sym_COLON_RBRACK] = ACTIONS(7767), }, - [STATE(3199)] = { + [STATE(3131)] = { [sym_identifier] = ACTIONS(7775), [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), [anon_sym_COMMA] = ACTIONS(7777), @@ -408197,265 +403145,2917 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7775), [anon_sym_COLON_RBRACK] = ACTIONS(7777), }, - [STATE(3200)] = { - [sym_identifier] = ACTIONS(3163), - [aux_sym_preproc_def_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token1] = ACTIONS(3163), - [aux_sym_preproc_if_token2] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3163), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3163), - [sym_preproc_directive] = ACTIONS(3163), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___extension__] = ACTIONS(3163), - [anon_sym_typedef] = ACTIONS(3163), - [anon_sym_virtual] = ACTIONS(3163), - [anon_sym_extern] = ACTIONS(3163), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_COLON_COLON] = ACTIONS(3161), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3161), - [anon_sym___declspec] = ACTIONS(3163), - [anon_sym___based] = ACTIONS(3163), - [anon_sym_signed] = ACTIONS(3163), - [anon_sym_unsigned] = ACTIONS(3163), - [anon_sym_long] = ACTIONS(3163), - [anon_sym_short] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_register] = ACTIONS(3163), - [anon_sym_inline] = ACTIONS(3163), - [anon_sym___inline] = ACTIONS(3163), - [anon_sym___inline__] = ACTIONS(3163), - [anon_sym___forceinline] = ACTIONS(3163), - [anon_sym_thread_local] = ACTIONS(3163), - [anon_sym___thread] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_constexpr] = ACTIONS(3163), - [anon_sym_volatile] = ACTIONS(3163), - [anon_sym_restrict] = ACTIONS(3163), - [anon_sym___restrict__] = ACTIONS(3163), - [anon_sym__Atomic] = ACTIONS(3163), - [anon_sym__Noreturn] = ACTIONS(3163), - [anon_sym_noreturn] = ACTIONS(3163), - [anon_sym__Nonnull] = ACTIONS(3163), - [anon_sym_mutable] = ACTIONS(3163), - [anon_sym_constinit] = ACTIONS(3163), - [anon_sym_consteval] = ACTIONS(3163), - [anon_sym_alignas] = ACTIONS(3163), - [anon_sym__Alignas] = ACTIONS(3163), - [sym_primitive_type] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3163), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_typename] = ACTIONS(3163), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3163), - [anon_sym_decltype] = ACTIONS(3163), - [anon_sym_explicit] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_template] = ACTIONS(3163), - [anon_sym_operator] = ACTIONS(3163), - [anon_sym_friend] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_static_assert] = ACTIONS(3163), - [anon_sym_catch] = ACTIONS(3163), - [anon_sym_LBRACK_COLON] = ACTIONS(3161), - }, - [STATE(3201)] = { - [sym_identifier] = ACTIONS(7569), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), - [anon_sym_COMMA] = ACTIONS(7571), - [anon_sym_RPAREN] = ACTIONS(7571), - [anon_sym_LPAREN2] = ACTIONS(7571), - [anon_sym_DASH] = ACTIONS(7569), - [anon_sym_PLUS] = ACTIONS(7569), - [anon_sym_STAR] = ACTIONS(7571), - [anon_sym_SLASH] = ACTIONS(7569), - [anon_sym_PERCENT] = ACTIONS(7571), - [anon_sym_PIPE_PIPE] = ACTIONS(7571), - [anon_sym_AMP_AMP] = ACTIONS(7571), - [anon_sym_PIPE] = ACTIONS(7569), - [anon_sym_CARET] = ACTIONS(7571), - [anon_sym_AMP] = ACTIONS(7569), - [anon_sym_EQ_EQ] = ACTIONS(7571), - [anon_sym_BANG_EQ] = ACTIONS(7571), - [anon_sym_GT] = ACTIONS(7569), - [anon_sym_GT_EQ] = ACTIONS(7571), - [anon_sym_LT_EQ] = ACTIONS(7569), - [anon_sym_LT] = ACTIONS(7569), - [anon_sym_LT_LT] = ACTIONS(7571), - [anon_sym_GT_GT] = ACTIONS(7571), - [anon_sym_SEMI] = ACTIONS(7571), - [anon_sym___extension__] = ACTIONS(7569), - [anon_sym___attribute__] = ACTIONS(7569), - [anon_sym___attribute] = ACTIONS(7569), - [anon_sym_COLON] = ACTIONS(7569), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7571), - [anon_sym___based] = ACTIONS(7569), - [anon_sym_LBRACE] = ACTIONS(7571), - [anon_sym_RBRACE] = ACTIONS(7571), - [anon_sym_signed] = ACTIONS(7569), - [anon_sym_unsigned] = ACTIONS(7569), - [anon_sym_long] = ACTIONS(7569), - [anon_sym_short] = ACTIONS(7569), - [anon_sym_LBRACK] = ACTIONS(7571), - [anon_sym_const] = ACTIONS(7569), - [anon_sym_constexpr] = ACTIONS(7569), - [anon_sym_volatile] = ACTIONS(7569), - [anon_sym_restrict] = ACTIONS(7569), - [anon_sym___restrict__] = ACTIONS(7569), - [anon_sym__Atomic] = ACTIONS(7569), - [anon_sym__Noreturn] = ACTIONS(7569), - [anon_sym_noreturn] = ACTIONS(7569), - [anon_sym__Nonnull] = ACTIONS(7569), - [anon_sym_mutable] = ACTIONS(7569), - [anon_sym_constinit] = ACTIONS(7569), - [anon_sym_consteval] = ACTIONS(7569), - [anon_sym_alignas] = ACTIONS(7569), - [anon_sym__Alignas] = ACTIONS(7569), - [sym_primitive_type] = ACTIONS(7569), - [anon_sym_QMARK] = ACTIONS(7571), - [anon_sym_LT_EQ_GT] = ACTIONS(7571), - [anon_sym_or] = ACTIONS(7569), - [anon_sym_and] = ACTIONS(7569), - [anon_sym_bitor] = ACTIONS(7569), - [anon_sym_xor] = ACTIONS(7569), - [anon_sym_bitand] = ACTIONS(7569), - [anon_sym_not_eq] = ACTIONS(7569), - [anon_sym_DASH_DASH] = ACTIONS(7571), - [anon_sym_PLUS_PLUS] = ACTIONS(7571), - [anon_sym_DOT] = ACTIONS(7569), - [anon_sym_DOT_STAR] = ACTIONS(7571), - [anon_sym_DASH_GT] = ACTIONS(7571), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7569), - [anon_sym_override] = ACTIONS(7569), - [anon_sym_requires] = ACTIONS(7569), - [anon_sym_COLON_RBRACK] = ACTIONS(7571), - }, - [STATE(3202)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), - [anon_sym_COMMA] = ACTIONS(7605), - [anon_sym_LPAREN2] = ACTIONS(7605), - [anon_sym_DASH] = ACTIONS(7603), - [anon_sym_PLUS] = ACTIONS(7603), - [anon_sym_STAR] = ACTIONS(7603), - [anon_sym_SLASH] = ACTIONS(7603), - [anon_sym_PERCENT] = ACTIONS(7603), - [anon_sym_PIPE_PIPE] = ACTIONS(7605), - [anon_sym_AMP_AMP] = ACTIONS(7605), - [anon_sym_PIPE] = ACTIONS(7603), - [anon_sym_CARET] = ACTIONS(7603), - [anon_sym_AMP] = ACTIONS(7603), - [anon_sym_EQ_EQ] = ACTIONS(7605), - [anon_sym_BANG_EQ] = ACTIONS(7605), - [anon_sym_GT] = ACTIONS(7603), - [anon_sym_GT_EQ] = ACTIONS(7605), - [anon_sym_LT_EQ] = ACTIONS(7603), - [anon_sym_LT] = ACTIONS(7603), - [anon_sym_LT_LT] = ACTIONS(7603), - [anon_sym_GT_GT] = ACTIONS(7603), - [anon_sym___extension__] = ACTIONS(7605), - [anon_sym_LBRACE] = ACTIONS(7605), - [anon_sym_LBRACK] = ACTIONS(7605), - [anon_sym_RBRACK] = ACTIONS(7605), - [anon_sym_EQ] = ACTIONS(7603), - [anon_sym_const] = ACTIONS(7603), - [anon_sym_constexpr] = ACTIONS(7605), - [anon_sym_volatile] = ACTIONS(7605), - [anon_sym_restrict] = ACTIONS(7605), - [anon_sym___restrict__] = ACTIONS(7605), - [anon_sym__Atomic] = ACTIONS(7605), - [anon_sym__Noreturn] = ACTIONS(7605), - [anon_sym_noreturn] = ACTIONS(7605), - [anon_sym__Nonnull] = ACTIONS(7605), - [anon_sym_mutable] = ACTIONS(7605), - [anon_sym_constinit] = ACTIONS(7605), - [anon_sym_consteval] = ACTIONS(7605), - [anon_sym_alignas] = ACTIONS(7605), - [anon_sym__Alignas] = ACTIONS(7605), - [anon_sym_QMARK] = ACTIONS(7605), - [anon_sym_STAR_EQ] = ACTIONS(7605), - [anon_sym_SLASH_EQ] = ACTIONS(7605), - [anon_sym_PERCENT_EQ] = ACTIONS(7605), - [anon_sym_PLUS_EQ] = ACTIONS(7605), - [anon_sym_DASH_EQ] = ACTIONS(7605), - [anon_sym_LT_LT_EQ] = ACTIONS(7605), - [anon_sym_GT_GT_EQ] = ACTIONS(7605), - [anon_sym_AMP_EQ] = ACTIONS(7605), - [anon_sym_CARET_EQ] = ACTIONS(7605), - [anon_sym_PIPE_EQ] = ACTIONS(7605), - [anon_sym_and_eq] = ACTIONS(7605), - [anon_sym_or_eq] = ACTIONS(7605), - [anon_sym_xor_eq] = ACTIONS(7605), - [anon_sym_LT_EQ_GT] = ACTIONS(7605), - [anon_sym_or] = ACTIONS(7603), - [anon_sym_and] = ACTIONS(7603), - [anon_sym_bitor] = ACTIONS(7605), - [anon_sym_xor] = ACTIONS(7603), - [anon_sym_bitand] = ACTIONS(7605), - [anon_sym_not_eq] = ACTIONS(7605), - [anon_sym_DASH_DASH] = ACTIONS(7605), - [anon_sym_PLUS_PLUS] = ACTIONS(7605), - [anon_sym_DOT] = ACTIONS(7603), - [anon_sym_DOT_STAR] = ACTIONS(7605), - [anon_sym_DASH_GT] = ACTIONS(7605), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7605), - [anon_sym_override] = ACTIONS(7605), - [anon_sym_requires] = ACTIONS(7605), - }, - [STATE(3203)] = { - [sym_identifier] = ACTIONS(7763), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), - [anon_sym_COMMA] = ACTIONS(7765), - [anon_sym_RPAREN] = ACTIONS(7765), - [anon_sym_LPAREN2] = ACTIONS(7765), - [anon_sym_DASH] = ACTIONS(7763), - [anon_sym_PLUS] = ACTIONS(7763), - [anon_sym_STAR] = ACTIONS(7765), - [anon_sym_SLASH] = ACTIONS(7763), - [anon_sym_PERCENT] = ACTIONS(7765), - [anon_sym_PIPE_PIPE] = ACTIONS(7765), - [anon_sym_AMP_AMP] = ACTIONS(7765), - [anon_sym_PIPE] = ACTIONS(7763), - [anon_sym_CARET] = ACTIONS(7765), - [anon_sym_AMP] = ACTIONS(7763), - [anon_sym_EQ_EQ] = ACTIONS(7765), - [anon_sym_BANG_EQ] = ACTIONS(7765), - [anon_sym_GT] = ACTIONS(7763), - [anon_sym_GT_EQ] = ACTIONS(7765), - [anon_sym_LT_EQ] = ACTIONS(7763), - [anon_sym_LT] = ACTIONS(7763), - [anon_sym_LT_LT] = ACTIONS(7765), - [anon_sym_GT_GT] = ACTIONS(7765), - [anon_sym_SEMI] = ACTIONS(7765), - [anon_sym___extension__] = ACTIONS(7763), - [anon_sym___attribute__] = ACTIONS(7763), - [anon_sym___attribute] = ACTIONS(7763), - [anon_sym_COLON] = ACTIONS(7763), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7765), - [anon_sym___based] = ACTIONS(7763), - [anon_sym_LBRACE] = ACTIONS(7765), - [anon_sym_RBRACE] = ACTIONS(7765), - [anon_sym_signed] = ACTIONS(7763), - [anon_sym_unsigned] = ACTIONS(7763), - [anon_sym_long] = ACTIONS(7763), - [anon_sym_short] = ACTIONS(7763), - [anon_sym_LBRACK] = ACTIONS(7765), - [anon_sym_const] = ACTIONS(7763), - [anon_sym_constexpr] = ACTIONS(7763), - [anon_sym_volatile] = ACTIONS(7763), - [anon_sym_restrict] = ACTIONS(7763), - [anon_sym___restrict__] = ACTIONS(7763), + [STATE(3132)] = { + [sym_identifier] = ACTIONS(7779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), + [anon_sym_COMMA] = ACTIONS(7781), + [anon_sym_RPAREN] = ACTIONS(7781), + [anon_sym_LPAREN2] = ACTIONS(7781), + [anon_sym_DASH] = ACTIONS(7779), + [anon_sym_PLUS] = ACTIONS(7779), + [anon_sym_STAR] = ACTIONS(7781), + [anon_sym_SLASH] = ACTIONS(7779), + [anon_sym_PERCENT] = ACTIONS(7781), + [anon_sym_PIPE_PIPE] = ACTIONS(7781), + [anon_sym_AMP_AMP] = ACTIONS(7781), + [anon_sym_PIPE] = ACTIONS(7779), + [anon_sym_CARET] = ACTIONS(7781), + [anon_sym_AMP] = ACTIONS(7779), + [anon_sym_EQ_EQ] = ACTIONS(7781), + [anon_sym_BANG_EQ] = ACTIONS(7781), + [anon_sym_GT] = ACTIONS(7779), + [anon_sym_GT_EQ] = ACTIONS(7781), + [anon_sym_LT_EQ] = ACTIONS(7779), + [anon_sym_LT] = ACTIONS(7779), + [anon_sym_LT_LT] = ACTIONS(7781), + [anon_sym_GT_GT] = ACTIONS(7781), + [anon_sym_SEMI] = ACTIONS(7781), + [anon_sym___extension__] = ACTIONS(7779), + [anon_sym___attribute__] = ACTIONS(7779), + [anon_sym___attribute] = ACTIONS(7779), + [anon_sym_COLON] = ACTIONS(7779), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7781), + [anon_sym___based] = ACTIONS(7779), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_RBRACE] = ACTIONS(7781), + [anon_sym_signed] = ACTIONS(7779), + [anon_sym_unsigned] = ACTIONS(7779), + [anon_sym_long] = ACTIONS(7779), + [anon_sym_short] = ACTIONS(7779), + [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_const] = ACTIONS(7779), + [anon_sym_constexpr] = ACTIONS(7779), + [anon_sym_volatile] = ACTIONS(7779), + [anon_sym_restrict] = ACTIONS(7779), + [anon_sym___restrict__] = ACTIONS(7779), + [anon_sym__Atomic] = ACTIONS(7779), + [anon_sym__Noreturn] = ACTIONS(7779), + [anon_sym_noreturn] = ACTIONS(7779), + [anon_sym__Nonnull] = ACTIONS(7779), + [anon_sym_mutable] = ACTIONS(7779), + [anon_sym_constinit] = ACTIONS(7779), + [anon_sym_consteval] = ACTIONS(7779), + [anon_sym_alignas] = ACTIONS(7779), + [anon_sym__Alignas] = ACTIONS(7779), + [sym_primitive_type] = ACTIONS(7779), + [anon_sym_QMARK] = ACTIONS(7781), + [anon_sym_LT_EQ_GT] = ACTIONS(7781), + [anon_sym_or] = ACTIONS(7779), + [anon_sym_and] = ACTIONS(7779), + [anon_sym_bitor] = ACTIONS(7779), + [anon_sym_xor] = ACTIONS(7779), + [anon_sym_bitand] = ACTIONS(7779), + [anon_sym_not_eq] = ACTIONS(7779), + [anon_sym_DASH_DASH] = ACTIONS(7781), + [anon_sym_PLUS_PLUS] = ACTIONS(7781), + [anon_sym_DOT] = ACTIONS(7779), + [anon_sym_DOT_STAR] = ACTIONS(7781), + [anon_sym_DASH_GT] = ACTIONS(7781), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7779), + [anon_sym_override] = ACTIONS(7779), + [anon_sym_requires] = ACTIONS(7779), + [anon_sym_COLON_RBRACK] = ACTIONS(7781), + }, + [STATE(3133)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7596), + [anon_sym_COMMA] = ACTIONS(7596), + [anon_sym_LPAREN2] = ACTIONS(7596), + [anon_sym_DASH] = ACTIONS(7594), + [anon_sym_PLUS] = ACTIONS(7594), + [anon_sym_STAR] = ACTIONS(7594), + [anon_sym_SLASH] = ACTIONS(7594), + [anon_sym_PERCENT] = ACTIONS(7594), + [anon_sym_PIPE_PIPE] = ACTIONS(7596), + [anon_sym_AMP_AMP] = ACTIONS(7596), + [anon_sym_PIPE] = ACTIONS(7594), + [anon_sym_CARET] = ACTIONS(7594), + [anon_sym_AMP] = ACTIONS(7594), + [anon_sym_EQ_EQ] = ACTIONS(7596), + [anon_sym_BANG_EQ] = ACTIONS(7596), + [anon_sym_GT] = ACTIONS(7594), + [anon_sym_GT_EQ] = ACTIONS(7596), + [anon_sym_LT_EQ] = ACTIONS(7594), + [anon_sym_LT] = ACTIONS(7594), + [anon_sym_LT_LT] = ACTIONS(7594), + [anon_sym_GT_GT] = ACTIONS(7594), + [anon_sym___extension__] = ACTIONS(7596), + [anon_sym_LBRACE] = ACTIONS(7596), + [anon_sym_LBRACK] = ACTIONS(7596), + [anon_sym_RBRACK] = ACTIONS(7596), + [anon_sym_EQ] = ACTIONS(7594), + [anon_sym_const] = ACTIONS(7594), + [anon_sym_constexpr] = ACTIONS(7596), + [anon_sym_volatile] = ACTIONS(7596), + [anon_sym_restrict] = ACTIONS(7596), + [anon_sym___restrict__] = ACTIONS(7596), + [anon_sym__Atomic] = ACTIONS(7596), + [anon_sym__Noreturn] = ACTIONS(7596), + [anon_sym_noreturn] = ACTIONS(7596), + [anon_sym__Nonnull] = ACTIONS(7596), + [anon_sym_mutable] = ACTIONS(7596), + [anon_sym_constinit] = ACTIONS(7596), + [anon_sym_consteval] = ACTIONS(7596), + [anon_sym_alignas] = ACTIONS(7596), + [anon_sym__Alignas] = ACTIONS(7596), + [anon_sym_QMARK] = ACTIONS(7596), + [anon_sym_STAR_EQ] = ACTIONS(7596), + [anon_sym_SLASH_EQ] = ACTIONS(7596), + [anon_sym_PERCENT_EQ] = ACTIONS(7596), + [anon_sym_PLUS_EQ] = ACTIONS(7596), + [anon_sym_DASH_EQ] = ACTIONS(7596), + [anon_sym_LT_LT_EQ] = ACTIONS(7596), + [anon_sym_GT_GT_EQ] = ACTIONS(7596), + [anon_sym_AMP_EQ] = ACTIONS(7596), + [anon_sym_CARET_EQ] = ACTIONS(7596), + [anon_sym_PIPE_EQ] = ACTIONS(7596), + [anon_sym_and_eq] = ACTIONS(7596), + [anon_sym_or_eq] = ACTIONS(7596), + [anon_sym_xor_eq] = ACTIONS(7596), + [anon_sym_LT_EQ_GT] = ACTIONS(7596), + [anon_sym_or] = ACTIONS(7594), + [anon_sym_and] = ACTIONS(7594), + [anon_sym_bitor] = ACTIONS(7596), + [anon_sym_xor] = ACTIONS(7594), + [anon_sym_bitand] = ACTIONS(7596), + [anon_sym_not_eq] = ACTIONS(7596), + [anon_sym_DASH_DASH] = ACTIONS(7596), + [anon_sym_PLUS_PLUS] = ACTIONS(7596), + [anon_sym_DOT] = ACTIONS(7594), + [anon_sym_DOT_STAR] = ACTIONS(7596), + [anon_sym_DASH_GT] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7596), + [anon_sym_override] = ACTIONS(7596), + [anon_sym_requires] = ACTIONS(7596), + }, + [STATE(3134)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7144), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym___extension__] = ACTIONS(7146), + [anon_sym_LBRACE] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7146), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7146), + [anon_sym_volatile] = ACTIONS(7146), + [anon_sym_restrict] = ACTIONS(7146), + [anon_sym___restrict__] = ACTIONS(7146), + [anon_sym__Atomic] = ACTIONS(7146), + [anon_sym__Noreturn] = ACTIONS(7146), + [anon_sym_noreturn] = ACTIONS(7146), + [anon_sym__Nonnull] = ACTIONS(7146), + [anon_sym_mutable] = ACTIONS(7146), + [anon_sym_constinit] = ACTIONS(7146), + [anon_sym_consteval] = ACTIONS(7146), + [anon_sym_alignas] = ACTIONS(7146), + [anon_sym__Alignas] = ACTIONS(7146), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7144), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_and_eq] = ACTIONS(7146), + [anon_sym_or_eq] = ACTIONS(7146), + [anon_sym_xor_eq] = ACTIONS(7146), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7144), + [anon_sym_and] = ACTIONS(7144), + [anon_sym_bitor] = ACTIONS(7146), + [anon_sym_xor] = ACTIONS(7144), + [anon_sym_bitand] = ACTIONS(7146), + [anon_sym_not_eq] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7146), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7146), + [anon_sym_override] = ACTIONS(7146), + [anon_sym_GT2] = ACTIONS(7146), + [anon_sym_requires] = ACTIONS(7146), + }, + [STATE(3135)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + }, + [STATE(3136)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7600), + [anon_sym_COMMA] = ACTIONS(7600), + [anon_sym_LPAREN2] = ACTIONS(7600), + [anon_sym_DASH] = ACTIONS(7598), + [anon_sym_PLUS] = ACTIONS(7598), + [anon_sym_STAR] = ACTIONS(7598), + [anon_sym_SLASH] = ACTIONS(7598), + [anon_sym_PERCENT] = ACTIONS(7598), + [anon_sym_PIPE_PIPE] = ACTIONS(7600), + [anon_sym_AMP_AMP] = ACTIONS(7600), + [anon_sym_PIPE] = ACTIONS(7598), + [anon_sym_CARET] = ACTIONS(7598), + [anon_sym_AMP] = ACTIONS(7598), + [anon_sym_EQ_EQ] = ACTIONS(7600), + [anon_sym_BANG_EQ] = ACTIONS(7600), + [anon_sym_GT] = ACTIONS(7598), + [anon_sym_GT_EQ] = ACTIONS(7600), + [anon_sym_LT_EQ] = ACTIONS(7598), + [anon_sym_LT] = ACTIONS(7598), + [anon_sym_LT_LT] = ACTIONS(7598), + [anon_sym_GT_GT] = ACTIONS(7598), + [anon_sym___extension__] = ACTIONS(7600), + [anon_sym_LBRACE] = ACTIONS(7600), + [anon_sym_LBRACK] = ACTIONS(7600), + [anon_sym_RBRACK] = ACTIONS(7600), + [anon_sym_EQ] = ACTIONS(7598), + [anon_sym_const] = ACTIONS(7598), + [anon_sym_constexpr] = ACTIONS(7600), + [anon_sym_volatile] = ACTIONS(7600), + [anon_sym_restrict] = ACTIONS(7600), + [anon_sym___restrict__] = ACTIONS(7600), + [anon_sym__Atomic] = ACTIONS(7600), + [anon_sym__Noreturn] = ACTIONS(7600), + [anon_sym_noreturn] = ACTIONS(7600), + [anon_sym__Nonnull] = ACTIONS(7600), + [anon_sym_mutable] = ACTIONS(7600), + [anon_sym_constinit] = ACTIONS(7600), + [anon_sym_consteval] = ACTIONS(7600), + [anon_sym_alignas] = ACTIONS(7600), + [anon_sym__Alignas] = ACTIONS(7600), + [anon_sym_QMARK] = ACTIONS(7600), + [anon_sym_STAR_EQ] = ACTIONS(7600), + [anon_sym_SLASH_EQ] = ACTIONS(7600), + [anon_sym_PERCENT_EQ] = ACTIONS(7600), + [anon_sym_PLUS_EQ] = ACTIONS(7600), + [anon_sym_DASH_EQ] = ACTIONS(7600), + [anon_sym_LT_LT_EQ] = ACTIONS(7600), + [anon_sym_GT_GT_EQ] = ACTIONS(7600), + [anon_sym_AMP_EQ] = ACTIONS(7600), + [anon_sym_CARET_EQ] = ACTIONS(7600), + [anon_sym_PIPE_EQ] = ACTIONS(7600), + [anon_sym_and_eq] = ACTIONS(7600), + [anon_sym_or_eq] = ACTIONS(7600), + [anon_sym_xor_eq] = ACTIONS(7600), + [anon_sym_LT_EQ_GT] = ACTIONS(7600), + [anon_sym_or] = ACTIONS(7598), + [anon_sym_and] = ACTIONS(7598), + [anon_sym_bitor] = ACTIONS(7600), + [anon_sym_xor] = ACTIONS(7598), + [anon_sym_bitand] = ACTIONS(7600), + [anon_sym_not_eq] = ACTIONS(7600), + [anon_sym_DASH_DASH] = ACTIONS(7600), + [anon_sym_PLUS_PLUS] = ACTIONS(7600), + [anon_sym_DOT] = ACTIONS(7598), + [anon_sym_DOT_STAR] = ACTIONS(7600), + [anon_sym_DASH_GT] = ACTIONS(7600), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7600), + [anon_sym_override] = ACTIONS(7600), + [anon_sym_requires] = ACTIONS(7600), + }, + [STATE(3137)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7604), + [anon_sym_COMMA] = ACTIONS(7604), + [anon_sym_LPAREN2] = ACTIONS(7604), + [anon_sym_DASH] = ACTIONS(7602), + [anon_sym_PLUS] = ACTIONS(7602), + [anon_sym_STAR] = ACTIONS(7602), + [anon_sym_SLASH] = ACTIONS(7602), + [anon_sym_PERCENT] = ACTIONS(7602), + [anon_sym_PIPE_PIPE] = ACTIONS(7604), + [anon_sym_AMP_AMP] = ACTIONS(7604), + [anon_sym_PIPE] = ACTIONS(7602), + [anon_sym_CARET] = ACTIONS(7602), + [anon_sym_AMP] = ACTIONS(7602), + [anon_sym_EQ_EQ] = ACTIONS(7604), + [anon_sym_BANG_EQ] = ACTIONS(7604), + [anon_sym_GT] = ACTIONS(7602), + [anon_sym_GT_EQ] = ACTIONS(7604), + [anon_sym_LT_EQ] = ACTIONS(7602), + [anon_sym_LT] = ACTIONS(7602), + [anon_sym_LT_LT] = ACTIONS(7602), + [anon_sym_GT_GT] = ACTIONS(7602), + [anon_sym___extension__] = ACTIONS(7604), + [anon_sym_LBRACE] = ACTIONS(7604), + [anon_sym_LBRACK] = ACTIONS(7604), + [anon_sym_RBRACK] = ACTIONS(7604), + [anon_sym_EQ] = ACTIONS(7602), + [anon_sym_const] = ACTIONS(7602), + [anon_sym_constexpr] = ACTIONS(7604), + [anon_sym_volatile] = ACTIONS(7604), + [anon_sym_restrict] = ACTIONS(7604), + [anon_sym___restrict__] = ACTIONS(7604), + [anon_sym__Atomic] = ACTIONS(7604), + [anon_sym__Noreturn] = ACTIONS(7604), + [anon_sym_noreturn] = ACTIONS(7604), + [anon_sym__Nonnull] = ACTIONS(7604), + [anon_sym_mutable] = ACTIONS(7604), + [anon_sym_constinit] = ACTIONS(7604), + [anon_sym_consteval] = ACTIONS(7604), + [anon_sym_alignas] = ACTIONS(7604), + [anon_sym__Alignas] = ACTIONS(7604), + [anon_sym_QMARK] = ACTIONS(7604), + [anon_sym_STAR_EQ] = ACTIONS(7604), + [anon_sym_SLASH_EQ] = ACTIONS(7604), + [anon_sym_PERCENT_EQ] = ACTIONS(7604), + [anon_sym_PLUS_EQ] = ACTIONS(7604), + [anon_sym_DASH_EQ] = ACTIONS(7604), + [anon_sym_LT_LT_EQ] = ACTIONS(7604), + [anon_sym_GT_GT_EQ] = ACTIONS(7604), + [anon_sym_AMP_EQ] = ACTIONS(7604), + [anon_sym_CARET_EQ] = ACTIONS(7604), + [anon_sym_PIPE_EQ] = ACTIONS(7604), + [anon_sym_and_eq] = ACTIONS(7604), + [anon_sym_or_eq] = ACTIONS(7604), + [anon_sym_xor_eq] = ACTIONS(7604), + [anon_sym_LT_EQ_GT] = ACTIONS(7604), + [anon_sym_or] = ACTIONS(7602), + [anon_sym_and] = ACTIONS(7602), + [anon_sym_bitor] = ACTIONS(7604), + [anon_sym_xor] = ACTIONS(7602), + [anon_sym_bitand] = ACTIONS(7604), + [anon_sym_not_eq] = ACTIONS(7604), + [anon_sym_DASH_DASH] = ACTIONS(7604), + [anon_sym_PLUS_PLUS] = ACTIONS(7604), + [anon_sym_DOT] = ACTIONS(7602), + [anon_sym_DOT_STAR] = ACTIONS(7604), + [anon_sym_DASH_GT] = ACTIONS(7604), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7604), + [anon_sym_override] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(7604), + }, + [STATE(3138)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7608), + [anon_sym_COMMA] = ACTIONS(7608), + [anon_sym_LPAREN2] = ACTIONS(7608), + [anon_sym_DASH] = ACTIONS(7606), + [anon_sym_PLUS] = ACTIONS(7606), + [anon_sym_STAR] = ACTIONS(7606), + [anon_sym_SLASH] = ACTIONS(7606), + [anon_sym_PERCENT] = ACTIONS(7606), + [anon_sym_PIPE_PIPE] = ACTIONS(7608), + [anon_sym_AMP_AMP] = ACTIONS(7608), + [anon_sym_PIPE] = ACTIONS(7606), + [anon_sym_CARET] = ACTIONS(7606), + [anon_sym_AMP] = ACTIONS(7606), + [anon_sym_EQ_EQ] = ACTIONS(7608), + [anon_sym_BANG_EQ] = ACTIONS(7608), + [anon_sym_GT] = ACTIONS(7606), + [anon_sym_GT_EQ] = ACTIONS(7608), + [anon_sym_LT_EQ] = ACTIONS(7606), + [anon_sym_LT] = ACTIONS(7606), + [anon_sym_LT_LT] = ACTIONS(7606), + [anon_sym_GT_GT] = ACTIONS(7606), + [anon_sym___extension__] = ACTIONS(7608), + [anon_sym_LBRACE] = ACTIONS(7608), + [anon_sym_LBRACK] = ACTIONS(7608), + [anon_sym_RBRACK] = ACTIONS(7608), + [anon_sym_EQ] = ACTIONS(7606), + [anon_sym_const] = ACTIONS(7606), + [anon_sym_constexpr] = ACTIONS(7608), + [anon_sym_volatile] = ACTIONS(7608), + [anon_sym_restrict] = ACTIONS(7608), + [anon_sym___restrict__] = ACTIONS(7608), + [anon_sym__Atomic] = ACTIONS(7608), + [anon_sym__Noreturn] = ACTIONS(7608), + [anon_sym_noreturn] = ACTIONS(7608), + [anon_sym__Nonnull] = ACTIONS(7608), + [anon_sym_mutable] = ACTIONS(7608), + [anon_sym_constinit] = ACTIONS(7608), + [anon_sym_consteval] = ACTIONS(7608), + [anon_sym_alignas] = ACTIONS(7608), + [anon_sym__Alignas] = ACTIONS(7608), + [anon_sym_QMARK] = ACTIONS(7608), + [anon_sym_STAR_EQ] = ACTIONS(7608), + [anon_sym_SLASH_EQ] = ACTIONS(7608), + [anon_sym_PERCENT_EQ] = ACTIONS(7608), + [anon_sym_PLUS_EQ] = ACTIONS(7608), + [anon_sym_DASH_EQ] = ACTIONS(7608), + [anon_sym_LT_LT_EQ] = ACTIONS(7608), + [anon_sym_GT_GT_EQ] = ACTIONS(7608), + [anon_sym_AMP_EQ] = ACTIONS(7608), + [anon_sym_CARET_EQ] = ACTIONS(7608), + [anon_sym_PIPE_EQ] = ACTIONS(7608), + [anon_sym_and_eq] = ACTIONS(7608), + [anon_sym_or_eq] = ACTIONS(7608), + [anon_sym_xor_eq] = ACTIONS(7608), + [anon_sym_LT_EQ_GT] = ACTIONS(7608), + [anon_sym_or] = ACTIONS(7606), + [anon_sym_and] = ACTIONS(7606), + [anon_sym_bitor] = ACTIONS(7608), + [anon_sym_xor] = ACTIONS(7606), + [anon_sym_bitand] = ACTIONS(7608), + [anon_sym_not_eq] = ACTIONS(7608), + [anon_sym_DASH_DASH] = ACTIONS(7608), + [anon_sym_PLUS_PLUS] = ACTIONS(7608), + [anon_sym_DOT] = ACTIONS(7606), + [anon_sym_DOT_STAR] = ACTIONS(7608), + [anon_sym_DASH_GT] = ACTIONS(7608), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7608), + [anon_sym_override] = ACTIONS(7608), + [anon_sym_requires] = ACTIONS(7608), + }, + [STATE(3139)] = { + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym___based] = ACTIONS(7246), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(7246), + [anon_sym_unsigned] = ACTIONS(7246), + [anon_sym_long] = ACTIONS(7246), + [anon_sym_short] = ACTIONS(7246), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [sym_primitive_type] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7246), + [anon_sym_override] = ACTIONS(7246), + [anon_sym_requires] = ACTIONS(7246), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), + }, + [STATE(3140)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7723), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7723), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7725), + [anon_sym_or_eq] = ACTIONS(7725), + [anon_sym_xor_eq] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_GT2] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + }, + [STATE(3141)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7727), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7727), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7727), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7727), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7727), + [anon_sym_GT_GT] = ACTIONS(7727), + [anon_sym___extension__] = ACTIONS(7729), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(7727), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7729), + [anon_sym_volatile] = ACTIONS(7729), + [anon_sym_restrict] = ACTIONS(7729), + [anon_sym___restrict__] = ACTIONS(7729), + [anon_sym__Atomic] = ACTIONS(7729), + [anon_sym__Noreturn] = ACTIONS(7729), + [anon_sym_noreturn] = ACTIONS(7729), + [anon_sym__Nonnull] = ACTIONS(7729), + [anon_sym_mutable] = ACTIONS(7729), + [anon_sym_constinit] = ACTIONS(7729), + [anon_sym_consteval] = ACTIONS(7729), + [anon_sym_alignas] = ACTIONS(7729), + [anon_sym__Alignas] = ACTIONS(7729), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_STAR_EQ] = ACTIONS(7729), + [anon_sym_SLASH_EQ] = ACTIONS(7729), + [anon_sym_PERCENT_EQ] = ACTIONS(7729), + [anon_sym_PLUS_EQ] = ACTIONS(7729), + [anon_sym_DASH_EQ] = ACTIONS(7729), + [anon_sym_LT_LT_EQ] = ACTIONS(7729), + [anon_sym_GT_GT_EQ] = ACTIONS(7727), + [anon_sym_AMP_EQ] = ACTIONS(7729), + [anon_sym_CARET_EQ] = ACTIONS(7729), + [anon_sym_PIPE_EQ] = ACTIONS(7729), + [anon_sym_and_eq] = ACTIONS(7729), + [anon_sym_or_eq] = ACTIONS(7729), + [anon_sym_xor_eq] = ACTIONS(7729), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7727), + [anon_sym_and] = ACTIONS(7727), + [anon_sym_bitor] = ACTIONS(7729), + [anon_sym_xor] = ACTIONS(7727), + [anon_sym_bitand] = ACTIONS(7729), + [anon_sym_not_eq] = ACTIONS(7729), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7729), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7729), + [anon_sym_override] = ACTIONS(7729), + [anon_sym_GT2] = ACTIONS(7729), + [anon_sym_requires] = ACTIONS(7729), + }, + [STATE(3142)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7612), + [anon_sym_COMMA] = ACTIONS(7612), + [anon_sym_LPAREN2] = ACTIONS(7612), + [anon_sym_DASH] = ACTIONS(7610), + [anon_sym_PLUS] = ACTIONS(7610), + [anon_sym_STAR] = ACTIONS(7610), + [anon_sym_SLASH] = ACTIONS(7610), + [anon_sym_PERCENT] = ACTIONS(7610), + [anon_sym_PIPE_PIPE] = ACTIONS(7612), + [anon_sym_AMP_AMP] = ACTIONS(7612), + [anon_sym_PIPE] = ACTIONS(7610), + [anon_sym_CARET] = ACTIONS(7610), + [anon_sym_AMP] = ACTIONS(7610), + [anon_sym_EQ_EQ] = ACTIONS(7612), + [anon_sym_BANG_EQ] = ACTIONS(7612), + [anon_sym_GT] = ACTIONS(7610), + [anon_sym_GT_EQ] = ACTIONS(7612), + [anon_sym_LT_EQ] = ACTIONS(7610), + [anon_sym_LT] = ACTIONS(7610), + [anon_sym_LT_LT] = ACTIONS(7610), + [anon_sym_GT_GT] = ACTIONS(7610), + [anon_sym___extension__] = ACTIONS(7612), + [anon_sym_LBRACE] = ACTIONS(7612), + [anon_sym_LBRACK] = ACTIONS(7612), + [anon_sym_RBRACK] = ACTIONS(7612), + [anon_sym_EQ] = ACTIONS(7610), + [anon_sym_const] = ACTIONS(7610), + [anon_sym_constexpr] = ACTIONS(7612), + [anon_sym_volatile] = ACTIONS(7612), + [anon_sym_restrict] = ACTIONS(7612), + [anon_sym___restrict__] = ACTIONS(7612), + [anon_sym__Atomic] = ACTIONS(7612), + [anon_sym__Noreturn] = ACTIONS(7612), + [anon_sym_noreturn] = ACTIONS(7612), + [anon_sym__Nonnull] = ACTIONS(7612), + [anon_sym_mutable] = ACTIONS(7612), + [anon_sym_constinit] = ACTIONS(7612), + [anon_sym_consteval] = ACTIONS(7612), + [anon_sym_alignas] = ACTIONS(7612), + [anon_sym__Alignas] = ACTIONS(7612), + [anon_sym_QMARK] = ACTIONS(7612), + [anon_sym_STAR_EQ] = ACTIONS(7612), + [anon_sym_SLASH_EQ] = ACTIONS(7612), + [anon_sym_PERCENT_EQ] = ACTIONS(7612), + [anon_sym_PLUS_EQ] = ACTIONS(7612), + [anon_sym_DASH_EQ] = ACTIONS(7612), + [anon_sym_LT_LT_EQ] = ACTIONS(7612), + [anon_sym_GT_GT_EQ] = ACTIONS(7612), + [anon_sym_AMP_EQ] = ACTIONS(7612), + [anon_sym_CARET_EQ] = ACTIONS(7612), + [anon_sym_PIPE_EQ] = ACTIONS(7612), + [anon_sym_and_eq] = ACTIONS(7612), + [anon_sym_or_eq] = ACTIONS(7612), + [anon_sym_xor_eq] = ACTIONS(7612), + [anon_sym_LT_EQ_GT] = ACTIONS(7612), + [anon_sym_or] = ACTIONS(7610), + [anon_sym_and] = ACTIONS(7610), + [anon_sym_bitor] = ACTIONS(7612), + [anon_sym_xor] = ACTIONS(7610), + [anon_sym_bitand] = ACTIONS(7612), + [anon_sym_not_eq] = ACTIONS(7612), + [anon_sym_DASH_DASH] = ACTIONS(7612), + [anon_sym_PLUS_PLUS] = ACTIONS(7612), + [anon_sym_DOT] = ACTIONS(7610), + [anon_sym_DOT_STAR] = ACTIONS(7612), + [anon_sym_DASH_GT] = ACTIONS(7612), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7612), + [anon_sym_override] = ACTIONS(7612), + [anon_sym_requires] = ACTIONS(7612), + }, + [STATE(3143)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_RPAREN] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7584), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7584), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7584), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7584), + [anon_sym_GT_GT] = ACTIONS(7584), + [anon_sym___extension__] = ACTIONS(7586), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_EQ] = ACTIONS(7584), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7586), + [anon_sym_volatile] = ACTIONS(7586), + [anon_sym_restrict] = ACTIONS(7586), + [anon_sym___restrict__] = ACTIONS(7586), + [anon_sym__Atomic] = ACTIONS(7586), + [anon_sym__Noreturn] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7586), + [anon_sym__Nonnull] = ACTIONS(7586), + [anon_sym_mutable] = ACTIONS(7586), + [anon_sym_constinit] = ACTIONS(7586), + [anon_sym_consteval] = ACTIONS(7586), + [anon_sym_alignas] = ACTIONS(7586), + [anon_sym__Alignas] = ACTIONS(7586), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_STAR_EQ] = ACTIONS(7586), + [anon_sym_SLASH_EQ] = ACTIONS(7586), + [anon_sym_PERCENT_EQ] = ACTIONS(7586), + [anon_sym_PLUS_EQ] = ACTIONS(7586), + [anon_sym_DASH_EQ] = ACTIONS(7586), + [anon_sym_LT_LT_EQ] = ACTIONS(7586), + [anon_sym_GT_GT_EQ] = ACTIONS(7586), + [anon_sym_AMP_EQ] = ACTIONS(7586), + [anon_sym_CARET_EQ] = ACTIONS(7586), + [anon_sym_PIPE_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7586), + [anon_sym_and] = ACTIONS(7586), + [anon_sym_bitor] = ACTIONS(7586), + [anon_sym_xor] = ACTIONS(7586), + [anon_sym_bitand] = ACTIONS(7586), + [anon_sym_not_eq] = ACTIONS(7586), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7584), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7586), + [anon_sym_override] = ACTIONS(7586), + [anon_sym_requires] = ACTIONS(7586), + [anon_sym_DASH_GT_STAR] = ACTIONS(7586), + }, + [STATE(3144)] = { + [sym_template_argument_list] = STATE(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7129), + [anon_sym_COMMA] = ACTIONS(7129), + [anon_sym_RPAREN] = ACTIONS(7119), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_DASH] = ACTIONS(7124), + [anon_sym_PLUS] = ACTIONS(7124), + [anon_sym_STAR] = ACTIONS(7126), + [anon_sym_SLASH] = ACTIONS(7124), + [anon_sym_PERCENT] = ACTIONS(7124), + [anon_sym_PIPE_PIPE] = ACTIONS(7129), + [anon_sym_AMP_AMP] = ACTIONS(7119), + [anon_sym_PIPE] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7124), + [anon_sym_AMP] = ACTIONS(7126), + [anon_sym_EQ_EQ] = ACTIONS(7129), + [anon_sym_BANG_EQ] = ACTIONS(7129), + [anon_sym_GT] = ACTIONS(7124), + [anon_sym_GT_EQ] = ACTIONS(7129), + [anon_sym_LT_EQ] = ACTIONS(7124), + [anon_sym_LT] = ACTIONS(8655), + [anon_sym_LT_LT] = ACTIONS(7124), + [anon_sym_GT_GT] = ACTIONS(7124), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_EQ] = ACTIONS(7124), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7129), + [anon_sym_STAR_EQ] = ACTIONS(7129), + [anon_sym_SLASH_EQ] = ACTIONS(7129), + [anon_sym_PERCENT_EQ] = ACTIONS(7129), + [anon_sym_PLUS_EQ] = ACTIONS(7129), + [anon_sym_DASH_EQ] = ACTIONS(7129), + [anon_sym_LT_LT_EQ] = ACTIONS(7129), + [anon_sym_GT_GT_EQ] = ACTIONS(7129), + [anon_sym_AMP_EQ] = ACTIONS(7129), + [anon_sym_CARET_EQ] = ACTIONS(7129), + [anon_sym_PIPE_EQ] = ACTIONS(7129), + [anon_sym_and_eq] = ACTIONS(7129), + [anon_sym_or_eq] = ACTIONS(7129), + [anon_sym_xor_eq] = ACTIONS(7129), + [anon_sym_LT_EQ_GT] = ACTIONS(7129), + [anon_sym_or] = ACTIONS(7124), + [anon_sym_and] = ACTIONS(7124), + [anon_sym_bitor] = ACTIONS(7129), + [anon_sym_xor] = ACTIONS(7124), + [anon_sym_bitand] = ACTIONS(7129), + [anon_sym_not_eq] = ACTIONS(7129), + [anon_sym_DASH_DASH] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7129), + [anon_sym_DOT] = ACTIONS(7124), + [anon_sym_DOT_STAR] = ACTIONS(7129), + [anon_sym_DASH_GT] = ACTIONS(7124), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7129), + }, + [STATE(3145)] = { + [sym_identifier] = ACTIONS(9031), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9033), + [anon_sym_COMMA] = ACTIONS(9033), + [anon_sym_RPAREN] = ACTIONS(9033), + [aux_sym_preproc_if_token2] = ACTIONS(9033), + [aux_sym_preproc_else_token1] = ACTIONS(9033), + [aux_sym_preproc_elif_token1] = ACTIONS(9031), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9033), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9033), + [anon_sym_LPAREN2] = ACTIONS(9033), + [anon_sym_DASH] = ACTIONS(9031), + [anon_sym_PLUS] = ACTIONS(9031), + [anon_sym_STAR] = ACTIONS(9031), + [anon_sym_SLASH] = ACTIONS(9031), + [anon_sym_PERCENT] = ACTIONS(9031), + [anon_sym_PIPE_PIPE] = ACTIONS(9033), + [anon_sym_AMP_AMP] = ACTIONS(9033), + [anon_sym_PIPE] = ACTIONS(9031), + [anon_sym_CARET] = ACTIONS(9031), + [anon_sym_AMP] = ACTIONS(9031), + [anon_sym_EQ_EQ] = ACTIONS(9033), + [anon_sym_BANG_EQ] = ACTIONS(9033), + [anon_sym_GT] = ACTIONS(9031), + [anon_sym_GT_EQ] = ACTIONS(9033), + [anon_sym_LT_EQ] = ACTIONS(9031), + [anon_sym_LT] = ACTIONS(9031), + [anon_sym_LT_LT] = ACTIONS(9031), + [anon_sym_GT_GT] = ACTIONS(9031), + [anon_sym_SEMI] = ACTIONS(9033), + [anon_sym___attribute__] = ACTIONS(9031), + [anon_sym___attribute] = ACTIONS(9031), + [anon_sym_COLON] = ACTIONS(9031), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9033), + [anon_sym_LBRACE] = ACTIONS(9033), + [anon_sym_RBRACE] = ACTIONS(9033), + [anon_sym_LBRACK] = ACTIONS(9031), + [anon_sym_RBRACK] = ACTIONS(9033), + [anon_sym_EQ] = ACTIONS(9031), + [anon_sym_QMARK] = ACTIONS(9033), + [anon_sym_STAR_EQ] = ACTIONS(9033), + [anon_sym_SLASH_EQ] = ACTIONS(9033), + [anon_sym_PERCENT_EQ] = ACTIONS(9033), + [anon_sym_PLUS_EQ] = ACTIONS(9033), + [anon_sym_DASH_EQ] = ACTIONS(9033), + [anon_sym_LT_LT_EQ] = ACTIONS(9033), + [anon_sym_GT_GT_EQ] = ACTIONS(9033), + [anon_sym_AMP_EQ] = ACTIONS(9033), + [anon_sym_CARET_EQ] = ACTIONS(9033), + [anon_sym_PIPE_EQ] = ACTIONS(9033), + [anon_sym_and_eq] = ACTIONS(9031), + [anon_sym_or_eq] = ACTIONS(9031), + [anon_sym_xor_eq] = ACTIONS(9031), + [anon_sym_LT_EQ_GT] = ACTIONS(9033), + [anon_sym_or] = ACTIONS(9031), + [anon_sym_and] = ACTIONS(9031), + [anon_sym_bitor] = ACTIONS(9031), + [anon_sym_xor] = ACTIONS(9031), + [anon_sym_bitand] = ACTIONS(9031), + [anon_sym_not_eq] = ACTIONS(9031), + [anon_sym_DASH_DASH] = ACTIONS(9033), + [anon_sym_PLUS_PLUS] = ACTIONS(9033), + [anon_sym_asm] = ACTIONS(9031), + [anon_sym___asm__] = ACTIONS(9031), + [anon_sym___asm] = ACTIONS(9031), + [anon_sym_DOT] = ACTIONS(9031), + [anon_sym_DOT_STAR] = ACTIONS(9033), + [anon_sym_DASH_GT] = ACTIONS(9033), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9031), + [anon_sym_COLON_RBRACK] = ACTIONS(9033), + }, + [STATE(3146)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7551), + [anon_sym_COMMA] = ACTIONS(7551), + [anon_sym_LPAREN2] = ACTIONS(7551), + [anon_sym_DASH] = ACTIONS(7549), + [anon_sym_PLUS] = ACTIONS(7549), + [anon_sym_STAR] = ACTIONS(7549), + [anon_sym_SLASH] = ACTIONS(7549), + [anon_sym_PERCENT] = ACTIONS(7549), + [anon_sym_PIPE_PIPE] = ACTIONS(7551), + [anon_sym_AMP_AMP] = ACTIONS(7551), + [anon_sym_PIPE] = ACTIONS(7549), + [anon_sym_CARET] = ACTIONS(7549), + [anon_sym_AMP] = ACTIONS(7549), + [anon_sym_EQ_EQ] = ACTIONS(7551), + [anon_sym_BANG_EQ] = ACTIONS(7551), + [anon_sym_GT] = ACTIONS(7549), + [anon_sym_GT_EQ] = ACTIONS(7549), + [anon_sym_LT_EQ] = ACTIONS(7549), + [anon_sym_LT] = ACTIONS(7549), + [anon_sym_LT_LT] = ACTIONS(7549), + [anon_sym_GT_GT] = ACTIONS(7549), + [anon_sym___extension__] = ACTIONS(7551), + [anon_sym_LBRACE] = ACTIONS(7551), + [anon_sym_LBRACK] = ACTIONS(7551), + [anon_sym_EQ] = ACTIONS(7549), + [anon_sym_const] = ACTIONS(7549), + [anon_sym_constexpr] = ACTIONS(7551), + [anon_sym_volatile] = ACTIONS(7551), + [anon_sym_restrict] = ACTIONS(7551), + [anon_sym___restrict__] = ACTIONS(7551), + [anon_sym__Atomic] = ACTIONS(7551), + [anon_sym__Noreturn] = ACTIONS(7551), + [anon_sym_noreturn] = ACTIONS(7551), + [anon_sym__Nonnull] = ACTIONS(7551), + [anon_sym_mutable] = ACTIONS(7551), + [anon_sym_constinit] = ACTIONS(7551), + [anon_sym_consteval] = ACTIONS(7551), + [anon_sym_alignas] = ACTIONS(7551), + [anon_sym__Alignas] = ACTIONS(7551), + [anon_sym_QMARK] = ACTIONS(7551), + [anon_sym_STAR_EQ] = ACTIONS(7551), + [anon_sym_SLASH_EQ] = ACTIONS(7551), + [anon_sym_PERCENT_EQ] = ACTIONS(7551), + [anon_sym_PLUS_EQ] = ACTIONS(7551), + [anon_sym_DASH_EQ] = ACTIONS(7551), + [anon_sym_LT_LT_EQ] = ACTIONS(7551), + [anon_sym_GT_GT_EQ] = ACTIONS(7549), + [anon_sym_AMP_EQ] = ACTIONS(7551), + [anon_sym_CARET_EQ] = ACTIONS(7551), + [anon_sym_PIPE_EQ] = ACTIONS(7551), + [anon_sym_and_eq] = ACTIONS(7551), + [anon_sym_or_eq] = ACTIONS(7551), + [anon_sym_xor_eq] = ACTIONS(7551), + [anon_sym_LT_EQ_GT] = ACTIONS(7551), + [anon_sym_or] = ACTIONS(7549), + [anon_sym_and] = ACTIONS(7549), + [anon_sym_bitor] = ACTIONS(7551), + [anon_sym_xor] = ACTIONS(7549), + [anon_sym_bitand] = ACTIONS(7551), + [anon_sym_not_eq] = ACTIONS(7551), + [anon_sym_DASH_DASH] = ACTIONS(7551), + [anon_sym_PLUS_PLUS] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7549), + [anon_sym_DOT_STAR] = ACTIONS(7551), + [anon_sym_DASH_GT] = ACTIONS(7551), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7551), + [anon_sym_GT2] = ACTIONS(7551), + [anon_sym_requires] = ACTIONS(7551), + }, + [STATE(3147)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7723), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7723), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_and_eq] = ACTIONS(7725), + [anon_sym_or_eq] = ACTIONS(7725), + [anon_sym_xor_eq] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_GT2] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + }, + [STATE(3148)] = { + [sym_attribute_declaration] = STATE(3152), + [aux_sym_attributed_declarator_repeat1] = STATE(3152), + [sym_identifier] = ACTIONS(9035), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9037), + [anon_sym_COMMA] = ACTIONS(9037), + [anon_sym_RPAREN] = ACTIONS(9037), + [aux_sym_preproc_if_token2] = ACTIONS(9037), + [aux_sym_preproc_else_token1] = ACTIONS(9037), + [aux_sym_preproc_elif_token1] = ACTIONS(9035), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9037), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9037), + [anon_sym_LPAREN2] = ACTIONS(9037), + [anon_sym_DASH] = ACTIONS(9035), + [anon_sym_PLUS] = ACTIONS(9035), + [anon_sym_STAR] = ACTIONS(9035), + [anon_sym_SLASH] = ACTIONS(9035), + [anon_sym_PERCENT] = ACTIONS(9035), + [anon_sym_PIPE_PIPE] = ACTIONS(9037), + [anon_sym_AMP_AMP] = ACTIONS(9037), + [anon_sym_PIPE] = ACTIONS(9035), + [anon_sym_CARET] = ACTIONS(9035), + [anon_sym_AMP] = ACTIONS(9035), + [anon_sym_EQ_EQ] = ACTIONS(9037), + [anon_sym_BANG_EQ] = ACTIONS(9037), + [anon_sym_GT] = ACTIONS(9035), + [anon_sym_GT_EQ] = ACTIONS(9037), + [anon_sym_LT_EQ] = ACTIONS(9035), + [anon_sym_LT] = ACTIONS(9035), + [anon_sym_LT_LT] = ACTIONS(9035), + [anon_sym_GT_GT] = ACTIONS(9035), + [anon_sym_SEMI] = ACTIONS(9037), + [anon_sym___attribute__] = ACTIONS(9035), + [anon_sym___attribute] = ACTIONS(9035), + [anon_sym_COLON] = ACTIONS(9035), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9037), + [anon_sym_RBRACE] = ACTIONS(9037), + [anon_sym_LBRACK] = ACTIONS(9035), + [anon_sym_EQ] = ACTIONS(9035), + [anon_sym_QMARK] = ACTIONS(9037), + [anon_sym_STAR_EQ] = ACTIONS(9037), + [anon_sym_SLASH_EQ] = ACTIONS(9037), + [anon_sym_PERCENT_EQ] = ACTIONS(9037), + [anon_sym_PLUS_EQ] = ACTIONS(9037), + [anon_sym_DASH_EQ] = ACTIONS(9037), + [anon_sym_LT_LT_EQ] = ACTIONS(9037), + [anon_sym_GT_GT_EQ] = ACTIONS(9037), + [anon_sym_AMP_EQ] = ACTIONS(9037), + [anon_sym_CARET_EQ] = ACTIONS(9037), + [anon_sym_PIPE_EQ] = ACTIONS(9037), + [anon_sym_and_eq] = ACTIONS(9035), + [anon_sym_or_eq] = ACTIONS(9035), + [anon_sym_xor_eq] = ACTIONS(9035), + [anon_sym_LT_EQ_GT] = ACTIONS(9037), + [anon_sym_or] = ACTIONS(9035), + [anon_sym_and] = ACTIONS(9035), + [anon_sym_bitor] = ACTIONS(9035), + [anon_sym_xor] = ACTIONS(9035), + [anon_sym_bitand] = ACTIONS(9035), + [anon_sym_not_eq] = ACTIONS(9035), + [anon_sym_DASH_DASH] = ACTIONS(9037), + [anon_sym_PLUS_PLUS] = ACTIONS(9037), + [anon_sym_DOT] = ACTIONS(9035), + [anon_sym_DOT_STAR] = ACTIONS(9037), + [anon_sym_DASH_GT] = ACTIONS(9037), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9035), + [anon_sym_override] = ACTIONS(9035), + [anon_sym_requires] = ACTIONS(9035), + [anon_sym_COLON_RBRACK] = ACTIONS(9037), + }, + [STATE(3149)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7616), + [anon_sym_COMMA] = ACTIONS(7616), + [anon_sym_LPAREN2] = ACTIONS(7616), + [anon_sym_DASH] = ACTIONS(7614), + [anon_sym_PLUS] = ACTIONS(7614), + [anon_sym_STAR] = ACTIONS(7614), + [anon_sym_SLASH] = ACTIONS(7614), + [anon_sym_PERCENT] = ACTIONS(7614), + [anon_sym_PIPE_PIPE] = ACTIONS(7616), + [anon_sym_AMP_AMP] = ACTIONS(7616), + [anon_sym_PIPE] = ACTIONS(7614), + [anon_sym_CARET] = ACTIONS(7614), + [anon_sym_AMP] = ACTIONS(7614), + [anon_sym_EQ_EQ] = ACTIONS(7616), + [anon_sym_BANG_EQ] = ACTIONS(7616), + [anon_sym_GT] = ACTIONS(7614), + [anon_sym_GT_EQ] = ACTIONS(7616), + [anon_sym_LT_EQ] = ACTIONS(7614), + [anon_sym_LT] = ACTIONS(7614), + [anon_sym_LT_LT] = ACTIONS(7614), + [anon_sym_GT_GT] = ACTIONS(7614), + [anon_sym___extension__] = ACTIONS(7616), + [anon_sym_LBRACE] = ACTIONS(7616), + [anon_sym_LBRACK] = ACTIONS(7616), + [anon_sym_RBRACK] = ACTIONS(7616), + [anon_sym_EQ] = ACTIONS(7614), + [anon_sym_const] = ACTIONS(7614), + [anon_sym_constexpr] = ACTIONS(7616), + [anon_sym_volatile] = ACTIONS(7616), + [anon_sym_restrict] = ACTIONS(7616), + [anon_sym___restrict__] = ACTIONS(7616), + [anon_sym__Atomic] = ACTIONS(7616), + [anon_sym__Noreturn] = ACTIONS(7616), + [anon_sym_noreturn] = ACTIONS(7616), + [anon_sym__Nonnull] = ACTIONS(7616), + [anon_sym_mutable] = ACTIONS(7616), + [anon_sym_constinit] = ACTIONS(7616), + [anon_sym_consteval] = ACTIONS(7616), + [anon_sym_alignas] = ACTIONS(7616), + [anon_sym__Alignas] = ACTIONS(7616), + [anon_sym_QMARK] = ACTIONS(7616), + [anon_sym_STAR_EQ] = ACTIONS(7616), + [anon_sym_SLASH_EQ] = ACTIONS(7616), + [anon_sym_PERCENT_EQ] = ACTIONS(7616), + [anon_sym_PLUS_EQ] = ACTIONS(7616), + [anon_sym_DASH_EQ] = ACTIONS(7616), + [anon_sym_LT_LT_EQ] = ACTIONS(7616), + [anon_sym_GT_GT_EQ] = ACTIONS(7616), + [anon_sym_AMP_EQ] = ACTIONS(7616), + [anon_sym_CARET_EQ] = ACTIONS(7616), + [anon_sym_PIPE_EQ] = ACTIONS(7616), + [anon_sym_and_eq] = ACTIONS(7616), + [anon_sym_or_eq] = ACTIONS(7616), + [anon_sym_xor_eq] = ACTIONS(7616), + [anon_sym_LT_EQ_GT] = ACTIONS(7616), + [anon_sym_or] = ACTIONS(7614), + [anon_sym_and] = ACTIONS(7614), + [anon_sym_bitor] = ACTIONS(7616), + [anon_sym_xor] = ACTIONS(7614), + [anon_sym_bitand] = ACTIONS(7616), + [anon_sym_not_eq] = ACTIONS(7616), + [anon_sym_DASH_DASH] = ACTIONS(7616), + [anon_sym_PLUS_PLUS] = ACTIONS(7616), + [anon_sym_DOT] = ACTIONS(7614), + [anon_sym_DOT_STAR] = ACTIONS(7616), + [anon_sym_DASH_GT] = ACTIONS(7616), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7616), + [anon_sym_override] = ACTIONS(7616), + [anon_sym_requires] = ACTIONS(7616), + }, + [STATE(3150)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7652), + [anon_sym_COMMA] = ACTIONS(7652), + [anon_sym_LPAREN2] = ACTIONS(7652), + [anon_sym_DASH] = ACTIONS(7650), + [anon_sym_PLUS] = ACTIONS(7650), + [anon_sym_STAR] = ACTIONS(7650), + [anon_sym_SLASH] = ACTIONS(7650), + [anon_sym_PERCENT] = ACTIONS(7650), + [anon_sym_PIPE_PIPE] = ACTIONS(7652), + [anon_sym_AMP_AMP] = ACTIONS(7652), + [anon_sym_PIPE] = ACTIONS(7650), + [anon_sym_CARET] = ACTIONS(7650), + [anon_sym_AMP] = ACTIONS(7650), + [anon_sym_EQ_EQ] = ACTIONS(7652), + [anon_sym_BANG_EQ] = ACTIONS(7652), + [anon_sym_GT] = ACTIONS(7650), + [anon_sym_GT_EQ] = ACTIONS(7650), + [anon_sym_LT_EQ] = ACTIONS(7650), + [anon_sym_LT] = ACTIONS(7650), + [anon_sym_LT_LT] = ACTIONS(7650), + [anon_sym_GT_GT] = ACTIONS(7650), + [anon_sym___extension__] = ACTIONS(7652), + [anon_sym_LBRACE] = ACTIONS(7652), + [anon_sym_LBRACK] = ACTIONS(7652), + [anon_sym_EQ] = ACTIONS(7650), + [anon_sym_const] = ACTIONS(7650), + [anon_sym_constexpr] = ACTIONS(7652), + [anon_sym_volatile] = ACTIONS(7652), + [anon_sym_restrict] = ACTIONS(7652), + [anon_sym___restrict__] = ACTIONS(7652), + [anon_sym__Atomic] = ACTIONS(7652), + [anon_sym__Noreturn] = ACTIONS(7652), + [anon_sym_noreturn] = ACTIONS(7652), + [anon_sym__Nonnull] = ACTIONS(7652), + [anon_sym_mutable] = ACTIONS(7652), + [anon_sym_constinit] = ACTIONS(7652), + [anon_sym_consteval] = ACTIONS(7652), + [anon_sym_alignas] = ACTIONS(7652), + [anon_sym__Alignas] = ACTIONS(7652), + [anon_sym_QMARK] = ACTIONS(7652), + [anon_sym_STAR_EQ] = ACTIONS(7652), + [anon_sym_SLASH_EQ] = ACTIONS(7652), + [anon_sym_PERCENT_EQ] = ACTIONS(7652), + [anon_sym_PLUS_EQ] = ACTIONS(7652), + [anon_sym_DASH_EQ] = ACTIONS(7652), + [anon_sym_LT_LT_EQ] = ACTIONS(7652), + [anon_sym_GT_GT_EQ] = ACTIONS(7650), + [anon_sym_AMP_EQ] = ACTIONS(7652), + [anon_sym_CARET_EQ] = ACTIONS(7652), + [anon_sym_PIPE_EQ] = ACTIONS(7652), + [anon_sym_and_eq] = ACTIONS(7652), + [anon_sym_or_eq] = ACTIONS(7652), + [anon_sym_xor_eq] = ACTIONS(7652), + [anon_sym_LT_EQ_GT] = ACTIONS(7652), + [anon_sym_or] = ACTIONS(7650), + [anon_sym_and] = ACTIONS(7650), + [anon_sym_bitor] = ACTIONS(7652), + [anon_sym_xor] = ACTIONS(7650), + [anon_sym_bitand] = ACTIONS(7652), + [anon_sym_not_eq] = ACTIONS(7652), + [anon_sym_DASH_DASH] = ACTIONS(7652), + [anon_sym_PLUS_PLUS] = ACTIONS(7652), + [anon_sym_DOT] = ACTIONS(7650), + [anon_sym_DOT_STAR] = ACTIONS(7652), + [anon_sym_DASH_GT] = ACTIONS(7652), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7652), + [anon_sym_override] = ACTIONS(7652), + [anon_sym_GT2] = ACTIONS(7652), + [anon_sym_requires] = ACTIONS(7652), + }, + [STATE(3151)] = { + [sym_identifier] = ACTIONS(7654), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7656), + [anon_sym_COMMA] = ACTIONS(7656), + [anon_sym_RPAREN] = ACTIONS(7656), + [anon_sym_LPAREN2] = ACTIONS(7656), + [anon_sym_DASH] = ACTIONS(7654), + [anon_sym_PLUS] = ACTIONS(7654), + [anon_sym_STAR] = ACTIONS(7656), + [anon_sym_SLASH] = ACTIONS(7654), + [anon_sym_PERCENT] = ACTIONS(7656), + [anon_sym_PIPE_PIPE] = ACTIONS(7656), + [anon_sym_AMP_AMP] = ACTIONS(7656), + [anon_sym_PIPE] = ACTIONS(7654), + [anon_sym_CARET] = ACTIONS(7656), + [anon_sym_AMP] = ACTIONS(7654), + [anon_sym_EQ_EQ] = ACTIONS(7656), + [anon_sym_BANG_EQ] = ACTIONS(7656), + [anon_sym_GT] = ACTIONS(7654), + [anon_sym_GT_EQ] = ACTIONS(7656), + [anon_sym_LT_EQ] = ACTIONS(7654), + [anon_sym_LT] = ACTIONS(7654), + [anon_sym_LT_LT] = ACTIONS(7656), + [anon_sym_GT_GT] = ACTIONS(7656), + [anon_sym_SEMI] = ACTIONS(7656), + [anon_sym___extension__] = ACTIONS(7654), + [anon_sym___attribute__] = ACTIONS(7654), + [anon_sym___attribute] = ACTIONS(7654), + [anon_sym_COLON] = ACTIONS(7654), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7656), + [anon_sym___based] = ACTIONS(7654), + [anon_sym_LBRACE] = ACTIONS(7656), + [anon_sym_RBRACE] = ACTIONS(7656), + [anon_sym_signed] = ACTIONS(7654), + [anon_sym_unsigned] = ACTIONS(7654), + [anon_sym_long] = ACTIONS(7654), + [anon_sym_short] = ACTIONS(7654), + [anon_sym_LBRACK] = ACTIONS(7656), + [anon_sym_const] = ACTIONS(7654), + [anon_sym_constexpr] = ACTIONS(7654), + [anon_sym_volatile] = ACTIONS(7654), + [anon_sym_restrict] = ACTIONS(7654), + [anon_sym___restrict__] = ACTIONS(7654), + [anon_sym__Atomic] = ACTIONS(7654), + [anon_sym__Noreturn] = ACTIONS(7654), + [anon_sym_noreturn] = ACTIONS(7654), + [anon_sym__Nonnull] = ACTIONS(7654), + [anon_sym_mutable] = ACTIONS(7654), + [anon_sym_constinit] = ACTIONS(7654), + [anon_sym_consteval] = ACTIONS(7654), + [anon_sym_alignas] = ACTIONS(7654), + [anon_sym__Alignas] = ACTIONS(7654), + [sym_primitive_type] = ACTIONS(7654), + [anon_sym_QMARK] = ACTIONS(7656), + [anon_sym_LT_EQ_GT] = ACTIONS(7656), + [anon_sym_or] = ACTIONS(7654), + [anon_sym_and] = ACTIONS(7654), + [anon_sym_bitor] = ACTIONS(7654), + [anon_sym_xor] = ACTIONS(7654), + [anon_sym_bitand] = ACTIONS(7654), + [anon_sym_not_eq] = ACTIONS(7654), + [anon_sym_DASH_DASH] = ACTIONS(7656), + [anon_sym_PLUS_PLUS] = ACTIONS(7656), + [anon_sym_DOT] = ACTIONS(7654), + [anon_sym_DOT_STAR] = ACTIONS(7656), + [anon_sym_DASH_GT] = ACTIONS(7656), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7654), + [anon_sym_override] = ACTIONS(7654), + [anon_sym_requires] = ACTIONS(7654), + [anon_sym_COLON_RBRACK] = ACTIONS(7656), + }, + [STATE(3152)] = { + [sym_attribute_declaration] = STATE(3152), + [aux_sym_attributed_declarator_repeat1] = STATE(3152), + [sym_identifier] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9039), + [anon_sym_COMMA] = ACTIONS(9039), + [anon_sym_RPAREN] = ACTIONS(9039), + [aux_sym_preproc_if_token2] = ACTIONS(9039), + [aux_sym_preproc_else_token1] = ACTIONS(9039), + [aux_sym_preproc_elif_token1] = ACTIONS(2471), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9039), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9039), + [anon_sym_LPAREN2] = ACTIONS(9039), + [anon_sym_DASH] = ACTIONS(2471), + [anon_sym_PLUS] = ACTIONS(2471), + [anon_sym_STAR] = ACTIONS(2471), + [anon_sym_SLASH] = ACTIONS(2471), + [anon_sym_PERCENT] = ACTIONS(2471), + [anon_sym_PIPE_PIPE] = ACTIONS(9039), + [anon_sym_AMP_AMP] = ACTIONS(9039), + [anon_sym_PIPE] = ACTIONS(2471), + [anon_sym_CARET] = ACTIONS(2471), + [anon_sym_AMP] = ACTIONS(2471), + [anon_sym_EQ_EQ] = ACTIONS(9039), + [anon_sym_BANG_EQ] = ACTIONS(9039), + [anon_sym_GT] = ACTIONS(2471), + [anon_sym_GT_EQ] = ACTIONS(9039), + [anon_sym_LT_EQ] = ACTIONS(2471), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2471), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(9039), + [anon_sym___attribute__] = ACTIONS(2471), + [anon_sym___attribute] = ACTIONS(2471), + [anon_sym_COLON] = ACTIONS(2471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9041), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9039), + [anon_sym_RBRACE] = ACTIONS(9039), + [anon_sym_LBRACK] = ACTIONS(2471), + [anon_sym_EQ] = ACTIONS(2471), + [anon_sym_QMARK] = ACTIONS(9039), + [anon_sym_STAR_EQ] = ACTIONS(9039), + [anon_sym_SLASH_EQ] = ACTIONS(9039), + [anon_sym_PERCENT_EQ] = ACTIONS(9039), + [anon_sym_PLUS_EQ] = ACTIONS(9039), + [anon_sym_DASH_EQ] = ACTIONS(9039), + [anon_sym_LT_LT_EQ] = ACTIONS(9039), + [anon_sym_GT_GT_EQ] = ACTIONS(9039), + [anon_sym_AMP_EQ] = ACTIONS(9039), + [anon_sym_CARET_EQ] = ACTIONS(9039), + [anon_sym_PIPE_EQ] = ACTIONS(9039), + [anon_sym_and_eq] = ACTIONS(2471), + [anon_sym_or_eq] = ACTIONS(2471), + [anon_sym_xor_eq] = ACTIONS(2471), + [anon_sym_LT_EQ_GT] = ACTIONS(9039), + [anon_sym_or] = ACTIONS(2471), + [anon_sym_and] = ACTIONS(2471), + [anon_sym_bitor] = ACTIONS(2471), + [anon_sym_xor] = ACTIONS(2471), + [anon_sym_bitand] = ACTIONS(2471), + [anon_sym_not_eq] = ACTIONS(2471), + [anon_sym_DASH_DASH] = ACTIONS(9039), + [anon_sym_PLUS_PLUS] = ACTIONS(9039), + [anon_sym_DOT] = ACTIONS(2471), + [anon_sym_DOT_STAR] = ACTIONS(9039), + [anon_sym_DASH_GT] = ACTIONS(9039), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(2471), + [anon_sym_override] = ACTIONS(2471), + [anon_sym_requires] = ACTIONS(2471), + [anon_sym_COLON_RBRACK] = ACTIONS(9039), + }, + [STATE(3153)] = { + [sym_identifier] = ACTIONS(7668), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7670), + [anon_sym_COMMA] = ACTIONS(7670), + [anon_sym_RPAREN] = ACTIONS(7670), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_DASH] = ACTIONS(7668), + [anon_sym_PLUS] = ACTIONS(7668), + [anon_sym_STAR] = ACTIONS(7670), + [anon_sym_SLASH] = ACTIONS(7668), + [anon_sym_PERCENT] = ACTIONS(7670), + [anon_sym_PIPE_PIPE] = ACTIONS(7670), + [anon_sym_AMP_AMP] = ACTIONS(7670), + [anon_sym_PIPE] = ACTIONS(7668), + [anon_sym_CARET] = ACTIONS(7670), + [anon_sym_AMP] = ACTIONS(7668), + [anon_sym_EQ_EQ] = ACTIONS(7670), + [anon_sym_BANG_EQ] = ACTIONS(7670), + [anon_sym_GT] = ACTIONS(7668), + [anon_sym_GT_EQ] = ACTIONS(7670), + [anon_sym_LT_EQ] = ACTIONS(7668), + [anon_sym_LT] = ACTIONS(7668), + [anon_sym_LT_LT] = ACTIONS(7670), + [anon_sym_GT_GT] = ACTIONS(7670), + [anon_sym_SEMI] = ACTIONS(7670), + [anon_sym___extension__] = ACTIONS(7668), + [anon_sym___attribute__] = ACTIONS(7668), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_COLON] = ACTIONS(7668), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7670), + [anon_sym___based] = ACTIONS(7668), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_RBRACE] = ACTIONS(7670), + [anon_sym_signed] = ACTIONS(7668), + [anon_sym_unsigned] = ACTIONS(7668), + [anon_sym_long] = ACTIONS(7668), + [anon_sym_short] = ACTIONS(7668), + [anon_sym_LBRACK] = ACTIONS(7670), + [anon_sym_const] = ACTIONS(7668), + [anon_sym_constexpr] = ACTIONS(7668), + [anon_sym_volatile] = ACTIONS(7668), + [anon_sym_restrict] = ACTIONS(7668), + [anon_sym___restrict__] = ACTIONS(7668), + [anon_sym__Atomic] = ACTIONS(7668), + [anon_sym__Noreturn] = ACTIONS(7668), + [anon_sym_noreturn] = ACTIONS(7668), + [anon_sym__Nonnull] = ACTIONS(7668), + [anon_sym_mutable] = ACTIONS(7668), + [anon_sym_constinit] = ACTIONS(7668), + [anon_sym_consteval] = ACTIONS(7668), + [anon_sym_alignas] = ACTIONS(7668), + [anon_sym__Alignas] = ACTIONS(7668), + [sym_primitive_type] = ACTIONS(7668), + [anon_sym_QMARK] = ACTIONS(7670), + [anon_sym_LT_EQ_GT] = ACTIONS(7670), + [anon_sym_or] = ACTIONS(7668), + [anon_sym_and] = ACTIONS(7668), + [anon_sym_bitor] = ACTIONS(7668), + [anon_sym_xor] = ACTIONS(7668), + [anon_sym_bitand] = ACTIONS(7668), + [anon_sym_not_eq] = ACTIONS(7668), + [anon_sym_DASH_DASH] = ACTIONS(7670), + [anon_sym_PLUS_PLUS] = ACTIONS(7670), + [anon_sym_DOT] = ACTIONS(7668), + [anon_sym_DOT_STAR] = ACTIONS(7670), + [anon_sym_DASH_GT] = ACTIONS(7670), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7668), + [anon_sym_override] = ACTIONS(7668), + [anon_sym_requires] = ACTIONS(7668), + [anon_sym_COLON_RBRACK] = ACTIONS(7670), + }, + [STATE(3154)] = { + [sym_template_argument_list] = STATE(3455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6561), + [anon_sym_RPAREN] = ACTIONS(6563), + [anon_sym_LPAREN2] = ACTIONS(6563), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6570), + [anon_sym_SLASH] = ACTIONS(6568), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_PIPE_PIPE] = ACTIONS(6561), + [anon_sym_AMP_AMP] = ACTIONS(6563), + [anon_sym_PIPE] = ACTIONS(6568), + [anon_sym_CARET] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(6570), + [anon_sym_EQ_EQ] = ACTIONS(6561), + [anon_sym_BANG_EQ] = ACTIONS(6561), + [anon_sym_GT] = ACTIONS(6568), + [anon_sym_GT_EQ] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(9044), + [anon_sym_LT_LT] = ACTIONS(6568), + [anon_sym_GT_GT] = ACTIONS(6568), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6561), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6561), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6561), + [anon_sym_or_eq] = ACTIONS(6561), + [anon_sym_xor_eq] = ACTIONS(6561), + [anon_sym_LT_EQ_GT] = ACTIONS(6561), + [anon_sym_or] = ACTIONS(6568), + [anon_sym_and] = ACTIONS(6568), + [anon_sym_bitor] = ACTIONS(6561), + [anon_sym_xor] = ACTIONS(6568), + [anon_sym_bitand] = ACTIONS(6561), + [anon_sym_not_eq] = ACTIONS(6561), + [anon_sym_DASH_DASH] = ACTIONS(6561), + [anon_sym_PLUS_PLUS] = ACTIONS(6561), + [anon_sym_DOT] = ACTIONS(6568), + [anon_sym_DOT_STAR] = ACTIONS(6561), + [anon_sym_DASH_GT] = ACTIONS(6561), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + }, + [STATE(3155)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_LPAREN2] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(7735), + [anon_sym_STAR] = ACTIONS(7735), + [anon_sym_SLASH] = ACTIONS(7735), + [anon_sym_PERCENT] = ACTIONS(7735), + [anon_sym_PIPE_PIPE] = ACTIONS(7737), + [anon_sym_AMP_AMP] = ACTIONS(7737), + [anon_sym_PIPE] = ACTIONS(7735), + [anon_sym_CARET] = ACTIONS(7735), + [anon_sym_AMP] = ACTIONS(7735), + [anon_sym_EQ_EQ] = ACTIONS(7737), + [anon_sym_BANG_EQ] = ACTIONS(7737), + [anon_sym_GT] = ACTIONS(7735), + [anon_sym_GT_EQ] = ACTIONS(7735), + [anon_sym_LT_EQ] = ACTIONS(7735), + [anon_sym_LT] = ACTIONS(7735), + [anon_sym_LT_LT] = ACTIONS(7735), + [anon_sym_GT_GT] = ACTIONS(7735), + [anon_sym___extension__] = ACTIONS(7737), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(7735), + [anon_sym_const] = ACTIONS(7735), + [anon_sym_constexpr] = ACTIONS(7737), + [anon_sym_volatile] = ACTIONS(7737), + [anon_sym_restrict] = ACTIONS(7737), + [anon_sym___restrict__] = ACTIONS(7737), + [anon_sym__Atomic] = ACTIONS(7737), + [anon_sym__Noreturn] = ACTIONS(7737), + [anon_sym_noreturn] = ACTIONS(7737), + [anon_sym__Nonnull] = ACTIONS(7737), + [anon_sym_mutable] = ACTIONS(7737), + [anon_sym_constinit] = ACTIONS(7737), + [anon_sym_consteval] = ACTIONS(7737), + [anon_sym_alignas] = ACTIONS(7737), + [anon_sym__Alignas] = ACTIONS(7737), + [anon_sym_QMARK] = ACTIONS(7737), + [anon_sym_STAR_EQ] = ACTIONS(7737), + [anon_sym_SLASH_EQ] = ACTIONS(7737), + [anon_sym_PERCENT_EQ] = ACTIONS(7737), + [anon_sym_PLUS_EQ] = ACTIONS(7737), + [anon_sym_DASH_EQ] = ACTIONS(7737), + [anon_sym_LT_LT_EQ] = ACTIONS(7737), + [anon_sym_GT_GT_EQ] = ACTIONS(7735), + [anon_sym_AMP_EQ] = ACTIONS(7737), + [anon_sym_CARET_EQ] = ACTIONS(7737), + [anon_sym_PIPE_EQ] = ACTIONS(7737), + [anon_sym_and_eq] = ACTIONS(7737), + [anon_sym_or_eq] = ACTIONS(7737), + [anon_sym_xor_eq] = ACTIONS(7737), + [anon_sym_LT_EQ_GT] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7735), + [anon_sym_and] = ACTIONS(7735), + [anon_sym_bitor] = ACTIONS(7737), + [anon_sym_xor] = ACTIONS(7735), + [anon_sym_bitand] = ACTIONS(7737), + [anon_sym_not_eq] = ACTIONS(7737), + [anon_sym_DASH_DASH] = ACTIONS(7737), + [anon_sym_PLUS_PLUS] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(7735), + [anon_sym_DOT_STAR] = ACTIONS(7737), + [anon_sym_DASH_GT] = ACTIONS(7737), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7737), + [anon_sym_override] = ACTIONS(7737), + [anon_sym_GT2] = ACTIONS(7737), + [anon_sym_requires] = ACTIONS(7737), + }, + [STATE(3156)] = { + [sym_identifier] = ACTIONS(9047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9049), + [anon_sym_COMMA] = ACTIONS(9049), + [anon_sym_RPAREN] = ACTIONS(9049), + [aux_sym_preproc_if_token2] = ACTIONS(9049), + [aux_sym_preproc_else_token1] = ACTIONS(9049), + [aux_sym_preproc_elif_token1] = ACTIONS(9047), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9049), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9049), + [anon_sym_LPAREN2] = ACTIONS(9049), + [anon_sym_DASH] = ACTIONS(9047), + [anon_sym_PLUS] = ACTIONS(9047), + [anon_sym_STAR] = ACTIONS(9047), + [anon_sym_SLASH] = ACTIONS(9047), + [anon_sym_PERCENT] = ACTIONS(9047), + [anon_sym_PIPE_PIPE] = ACTIONS(9049), + [anon_sym_AMP_AMP] = ACTIONS(9049), + [anon_sym_PIPE] = ACTIONS(9047), + [anon_sym_CARET] = ACTIONS(9047), + [anon_sym_AMP] = ACTIONS(9047), + [anon_sym_EQ_EQ] = ACTIONS(9049), + [anon_sym_BANG_EQ] = ACTIONS(9049), + [anon_sym_GT] = ACTIONS(9047), + [anon_sym_GT_EQ] = ACTIONS(9049), + [anon_sym_LT_EQ] = ACTIONS(9047), + [anon_sym_LT] = ACTIONS(9047), + [anon_sym_LT_LT] = ACTIONS(9047), + [anon_sym_GT_GT] = ACTIONS(9047), + [anon_sym_SEMI] = ACTIONS(9049), + [anon_sym___attribute__] = ACTIONS(9047), + [anon_sym___attribute] = ACTIONS(9047), + [anon_sym_COLON] = ACTIONS(9047), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9049), + [anon_sym_LBRACE] = ACTIONS(9049), + [anon_sym_RBRACE] = ACTIONS(9049), + [anon_sym_LBRACK] = ACTIONS(9047), + [anon_sym_RBRACK] = ACTIONS(9049), + [anon_sym_EQ] = ACTIONS(9047), + [anon_sym_QMARK] = ACTIONS(9049), + [anon_sym_STAR_EQ] = ACTIONS(9049), + [anon_sym_SLASH_EQ] = ACTIONS(9049), + [anon_sym_PERCENT_EQ] = ACTIONS(9049), + [anon_sym_PLUS_EQ] = ACTIONS(9049), + [anon_sym_DASH_EQ] = ACTIONS(9049), + [anon_sym_LT_LT_EQ] = ACTIONS(9049), + [anon_sym_GT_GT_EQ] = ACTIONS(9049), + [anon_sym_AMP_EQ] = ACTIONS(9049), + [anon_sym_CARET_EQ] = ACTIONS(9049), + [anon_sym_PIPE_EQ] = ACTIONS(9049), + [anon_sym_and_eq] = ACTIONS(9047), + [anon_sym_or_eq] = ACTIONS(9047), + [anon_sym_xor_eq] = ACTIONS(9047), + [anon_sym_LT_EQ_GT] = ACTIONS(9049), + [anon_sym_or] = ACTIONS(9047), + [anon_sym_and] = ACTIONS(9047), + [anon_sym_bitor] = ACTIONS(9047), + [anon_sym_xor] = ACTIONS(9047), + [anon_sym_bitand] = ACTIONS(9047), + [anon_sym_not_eq] = ACTIONS(9047), + [anon_sym_DASH_DASH] = ACTIONS(9049), + [anon_sym_PLUS_PLUS] = ACTIONS(9049), + [anon_sym_asm] = ACTIONS(9047), + [anon_sym___asm__] = ACTIONS(9047), + [anon_sym___asm] = ACTIONS(9047), + [anon_sym_DOT] = ACTIONS(9047), + [anon_sym_DOT_STAR] = ACTIONS(9049), + [anon_sym_DASH_GT] = ACTIONS(9049), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9047), + [anon_sym_COLON_RBRACK] = ACTIONS(9049), + }, + [STATE(3157)] = { + [sym_identifier] = ACTIONS(7638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_RPAREN] = ACTIONS(7640), + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7638), + [anon_sym_PLUS] = ACTIONS(7638), + [anon_sym_STAR] = ACTIONS(7640), + [anon_sym_SLASH] = ACTIONS(7638), + [anon_sym_PERCENT] = ACTIONS(7640), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7638), + [anon_sym_CARET] = ACTIONS(7640), + [anon_sym_AMP] = ACTIONS(7638), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_GT] = ACTIONS(7638), + [anon_sym_GT_EQ] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7638), + [anon_sym_LT] = ACTIONS(7638), + [anon_sym_LT_LT] = ACTIONS(7640), + [anon_sym_GT_GT] = ACTIONS(7640), + [anon_sym_SEMI] = ACTIONS(7640), + [anon_sym___extension__] = ACTIONS(7638), + [anon_sym___attribute__] = ACTIONS(7638), + [anon_sym___attribute] = ACTIONS(7638), + [anon_sym_COLON] = ACTIONS(7638), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7640), + [anon_sym___based] = ACTIONS(7638), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_RBRACE] = ACTIONS(7640), + [anon_sym_signed] = ACTIONS(7638), + [anon_sym_unsigned] = ACTIONS(7638), + [anon_sym_long] = ACTIONS(7638), + [anon_sym_short] = ACTIONS(7638), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_const] = ACTIONS(7638), + [anon_sym_constexpr] = ACTIONS(7638), + [anon_sym_volatile] = ACTIONS(7638), + [anon_sym_restrict] = ACTIONS(7638), + [anon_sym___restrict__] = ACTIONS(7638), + [anon_sym__Atomic] = ACTIONS(7638), + [anon_sym__Noreturn] = ACTIONS(7638), + [anon_sym_noreturn] = ACTIONS(7638), + [anon_sym__Nonnull] = ACTIONS(7638), + [anon_sym_mutable] = ACTIONS(7638), + [anon_sym_constinit] = ACTIONS(7638), + [anon_sym_consteval] = ACTIONS(7638), + [anon_sym_alignas] = ACTIONS(7638), + [anon_sym__Alignas] = ACTIONS(7638), + [sym_primitive_type] = ACTIONS(7638), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_LT_EQ_GT] = ACTIONS(7640), + [anon_sym_or] = ACTIONS(7638), + [anon_sym_and] = ACTIONS(7638), + [anon_sym_bitor] = ACTIONS(7638), + [anon_sym_xor] = ACTIONS(7638), + [anon_sym_bitand] = ACTIONS(7638), + [anon_sym_not_eq] = ACTIONS(7638), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7638), + [anon_sym_DOT_STAR] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7640), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7638), + [anon_sym_override] = ACTIONS(7638), + [anon_sym_requires] = ACTIONS(7638), + [anon_sym_COLON_RBRACK] = ACTIONS(7640), + }, + [STATE(3158)] = { + [sym_identifier] = ACTIONS(9051), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9053), + [anon_sym_COMMA] = ACTIONS(9053), + [anon_sym_RPAREN] = ACTIONS(9053), + [aux_sym_preproc_if_token2] = ACTIONS(9053), + [aux_sym_preproc_else_token1] = ACTIONS(9053), + [aux_sym_preproc_elif_token1] = ACTIONS(9051), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9053), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9053), + [anon_sym_LPAREN2] = ACTIONS(9053), + [anon_sym_DASH] = ACTIONS(9051), + [anon_sym_PLUS] = ACTIONS(9051), + [anon_sym_STAR] = ACTIONS(9051), + [anon_sym_SLASH] = ACTIONS(9051), + [anon_sym_PERCENT] = ACTIONS(9051), + [anon_sym_PIPE_PIPE] = ACTIONS(9053), + [anon_sym_AMP_AMP] = ACTIONS(9053), + [anon_sym_PIPE] = ACTIONS(9051), + [anon_sym_CARET] = ACTIONS(9051), + [anon_sym_AMP] = ACTIONS(9051), + [anon_sym_EQ_EQ] = ACTIONS(9053), + [anon_sym_BANG_EQ] = ACTIONS(9053), + [anon_sym_GT] = ACTIONS(9051), + [anon_sym_GT_EQ] = ACTIONS(9053), + [anon_sym_LT_EQ] = ACTIONS(9051), + [anon_sym_LT] = ACTIONS(9051), + [anon_sym_LT_LT] = ACTIONS(9051), + [anon_sym_GT_GT] = ACTIONS(9051), + [anon_sym_SEMI] = ACTIONS(9053), + [anon_sym___attribute__] = ACTIONS(9051), + [anon_sym___attribute] = ACTIONS(9051), + [anon_sym_COLON] = ACTIONS(9051), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9053), + [anon_sym_LBRACE] = ACTIONS(9053), + [anon_sym_RBRACE] = ACTIONS(9053), + [anon_sym_LBRACK] = ACTIONS(9051), + [anon_sym_RBRACK] = ACTIONS(9053), + [anon_sym_EQ] = ACTIONS(9051), + [anon_sym_QMARK] = ACTIONS(9053), + [anon_sym_STAR_EQ] = ACTIONS(9053), + [anon_sym_SLASH_EQ] = ACTIONS(9053), + [anon_sym_PERCENT_EQ] = ACTIONS(9053), + [anon_sym_PLUS_EQ] = ACTIONS(9053), + [anon_sym_DASH_EQ] = ACTIONS(9053), + [anon_sym_LT_LT_EQ] = ACTIONS(9053), + [anon_sym_GT_GT_EQ] = ACTIONS(9053), + [anon_sym_AMP_EQ] = ACTIONS(9053), + [anon_sym_CARET_EQ] = ACTIONS(9053), + [anon_sym_PIPE_EQ] = ACTIONS(9053), + [anon_sym_and_eq] = ACTIONS(9051), + [anon_sym_or_eq] = ACTIONS(9051), + [anon_sym_xor_eq] = ACTIONS(9051), + [anon_sym_LT_EQ_GT] = ACTIONS(9053), + [anon_sym_or] = ACTIONS(9051), + [anon_sym_and] = ACTIONS(9051), + [anon_sym_bitor] = ACTIONS(9051), + [anon_sym_xor] = ACTIONS(9051), + [anon_sym_bitand] = ACTIONS(9051), + [anon_sym_not_eq] = ACTIONS(9051), + [anon_sym_DASH_DASH] = ACTIONS(9053), + [anon_sym_PLUS_PLUS] = ACTIONS(9053), + [anon_sym_asm] = ACTIONS(9051), + [anon_sym___asm__] = ACTIONS(9051), + [anon_sym___asm] = ACTIONS(9051), + [anon_sym_DOT] = ACTIONS(9051), + [anon_sym_DOT_STAR] = ACTIONS(9053), + [anon_sym_DASH_GT] = ACTIONS(9053), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9051), + [anon_sym_COLON_RBRACK] = ACTIONS(9053), + }, + [STATE(3159)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7670), + [anon_sym_COMMA] = ACTIONS(7670), + [anon_sym_RPAREN] = ACTIONS(7670), + [anon_sym_LPAREN2] = ACTIONS(7670), + [anon_sym_DASH] = ACTIONS(7668), + [anon_sym_PLUS] = ACTIONS(7668), + [anon_sym_STAR] = ACTIONS(7668), + [anon_sym_SLASH] = ACTIONS(7668), + [anon_sym_PERCENT] = ACTIONS(7668), + [anon_sym_PIPE_PIPE] = ACTIONS(7670), + [anon_sym_AMP_AMP] = ACTIONS(7670), + [anon_sym_PIPE] = ACTIONS(7668), + [anon_sym_CARET] = ACTIONS(7668), + [anon_sym_AMP] = ACTIONS(7668), + [anon_sym_EQ_EQ] = ACTIONS(7670), + [anon_sym_BANG_EQ] = ACTIONS(7670), + [anon_sym_GT] = ACTIONS(7668), + [anon_sym_GT_EQ] = ACTIONS(7670), + [anon_sym_LT_EQ] = ACTIONS(7668), + [anon_sym_LT] = ACTIONS(7668), + [anon_sym_LT_LT] = ACTIONS(7668), + [anon_sym_GT_GT] = ACTIONS(7668), + [anon_sym___extension__] = ACTIONS(7670), + [anon_sym___attribute__] = ACTIONS(7670), + [anon_sym___attribute] = ACTIONS(7668), + [anon_sym_LBRACE] = ACTIONS(7670), + [anon_sym_LBRACK] = ACTIONS(7670), + [anon_sym_EQ] = ACTIONS(7668), + [anon_sym_const] = ACTIONS(7668), + [anon_sym_constexpr] = ACTIONS(7670), + [anon_sym_volatile] = ACTIONS(7670), + [anon_sym_restrict] = ACTIONS(7670), + [anon_sym___restrict__] = ACTIONS(7670), + [anon_sym__Atomic] = ACTIONS(7670), + [anon_sym__Noreturn] = ACTIONS(7670), + [anon_sym_noreturn] = ACTIONS(7670), + [anon_sym__Nonnull] = ACTIONS(7670), + [anon_sym_mutable] = ACTIONS(7670), + [anon_sym_constinit] = ACTIONS(7670), + [anon_sym_consteval] = ACTIONS(7670), + [anon_sym_alignas] = ACTIONS(7670), + [anon_sym__Alignas] = ACTIONS(7670), + [anon_sym_QMARK] = ACTIONS(7670), + [anon_sym_STAR_EQ] = ACTIONS(7670), + [anon_sym_SLASH_EQ] = ACTIONS(7670), + [anon_sym_PERCENT_EQ] = ACTIONS(7670), + [anon_sym_PLUS_EQ] = ACTIONS(7670), + [anon_sym_DASH_EQ] = ACTIONS(7670), + [anon_sym_LT_LT_EQ] = ACTIONS(7670), + [anon_sym_GT_GT_EQ] = ACTIONS(7670), + [anon_sym_AMP_EQ] = ACTIONS(7670), + [anon_sym_CARET_EQ] = ACTIONS(7670), + [anon_sym_PIPE_EQ] = ACTIONS(7670), + [anon_sym_LT_EQ_GT] = ACTIONS(7670), + [anon_sym_or] = ACTIONS(7670), + [anon_sym_and] = ACTIONS(7670), + [anon_sym_bitor] = ACTIONS(7670), + [anon_sym_xor] = ACTIONS(7670), + [anon_sym_bitand] = ACTIONS(7670), + [anon_sym_not_eq] = ACTIONS(7670), + [anon_sym_DASH_DASH] = ACTIONS(7670), + [anon_sym_PLUS_PLUS] = ACTIONS(7670), + [anon_sym_DOT] = ACTIONS(7668), + [anon_sym_DOT_STAR] = ACTIONS(7670), + [anon_sym_DASH_GT] = ACTIONS(7668), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7670), + [anon_sym_override] = ACTIONS(7670), + [anon_sym_requires] = ACTIONS(7670), + [anon_sym_DASH_GT_STAR] = ACTIONS(7670), + }, + [STATE(3160)] = { + [sym_identifier] = ACTIONS(7646), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7648), + [anon_sym_COMMA] = ACTIONS(7648), + [anon_sym_RPAREN] = ACTIONS(7648), + [anon_sym_LPAREN2] = ACTIONS(7648), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_STAR] = ACTIONS(7648), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_PERCENT] = ACTIONS(7648), + [anon_sym_PIPE_PIPE] = ACTIONS(7648), + [anon_sym_AMP_AMP] = ACTIONS(7648), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_CARET] = ACTIONS(7648), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_EQ_EQ] = ACTIONS(7648), + [anon_sym_BANG_EQ] = ACTIONS(7648), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7648), + [anon_sym_LT_EQ] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_LT_LT] = ACTIONS(7648), + [anon_sym_GT_GT] = ACTIONS(7648), + [anon_sym_SEMI] = ACTIONS(7648), + [anon_sym___extension__] = ACTIONS(7646), + [anon_sym___attribute__] = ACTIONS(7646), + [anon_sym___attribute] = ACTIONS(7646), + [anon_sym_COLON] = ACTIONS(7646), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7648), + [anon_sym___based] = ACTIONS(7646), + [anon_sym_LBRACE] = ACTIONS(7648), + [anon_sym_RBRACE] = ACTIONS(7648), + [anon_sym_signed] = ACTIONS(7646), + [anon_sym_unsigned] = ACTIONS(7646), + [anon_sym_long] = ACTIONS(7646), + [anon_sym_short] = ACTIONS(7646), + [anon_sym_LBRACK] = ACTIONS(7648), + [anon_sym_const] = ACTIONS(7646), + [anon_sym_constexpr] = ACTIONS(7646), + [anon_sym_volatile] = ACTIONS(7646), + [anon_sym_restrict] = ACTIONS(7646), + [anon_sym___restrict__] = ACTIONS(7646), + [anon_sym__Atomic] = ACTIONS(7646), + [anon_sym__Noreturn] = ACTIONS(7646), + [anon_sym_noreturn] = ACTIONS(7646), + [anon_sym__Nonnull] = ACTIONS(7646), + [anon_sym_mutable] = ACTIONS(7646), + [anon_sym_constinit] = ACTIONS(7646), + [anon_sym_consteval] = ACTIONS(7646), + [anon_sym_alignas] = ACTIONS(7646), + [anon_sym__Alignas] = ACTIONS(7646), + [sym_primitive_type] = ACTIONS(7646), + [anon_sym_QMARK] = ACTIONS(7648), + [anon_sym_LT_EQ_GT] = ACTIONS(7648), + [anon_sym_or] = ACTIONS(7646), + [anon_sym_and] = ACTIONS(7646), + [anon_sym_bitor] = ACTIONS(7646), + [anon_sym_xor] = ACTIONS(7646), + [anon_sym_bitand] = ACTIONS(7646), + [anon_sym_not_eq] = ACTIONS(7646), + [anon_sym_DASH_DASH] = ACTIONS(7648), + [anon_sym_PLUS_PLUS] = ACTIONS(7648), + [anon_sym_DOT] = ACTIONS(7646), + [anon_sym_DOT_STAR] = ACTIONS(7648), + [anon_sym_DASH_GT] = ACTIONS(7648), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7646), + [anon_sym_override] = ACTIONS(7646), + [anon_sym_requires] = ACTIONS(7646), + [anon_sym_COLON_RBRACK] = ACTIONS(7648), + }, + [STATE(3161)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7656), + [anon_sym_COMMA] = ACTIONS(7656), + [anon_sym_LPAREN2] = ACTIONS(7656), + [anon_sym_DASH] = ACTIONS(7654), + [anon_sym_PLUS] = ACTIONS(7654), + [anon_sym_STAR] = ACTIONS(7654), + [anon_sym_SLASH] = ACTIONS(7654), + [anon_sym_PERCENT] = ACTIONS(7654), + [anon_sym_PIPE_PIPE] = ACTIONS(7656), + [anon_sym_AMP_AMP] = ACTIONS(7656), + [anon_sym_PIPE] = ACTIONS(7654), + [anon_sym_CARET] = ACTIONS(7654), + [anon_sym_AMP] = ACTIONS(7654), + [anon_sym_EQ_EQ] = ACTIONS(7656), + [anon_sym_BANG_EQ] = ACTIONS(7656), + [anon_sym_GT] = ACTIONS(7654), + [anon_sym_GT_EQ] = ACTIONS(7654), + [anon_sym_LT_EQ] = ACTIONS(7654), + [anon_sym_LT] = ACTIONS(7654), + [anon_sym_LT_LT] = ACTIONS(7654), + [anon_sym_GT_GT] = ACTIONS(7654), + [anon_sym___extension__] = ACTIONS(7656), + [anon_sym_LBRACE] = ACTIONS(7656), + [anon_sym_LBRACK] = ACTIONS(7656), + [anon_sym_EQ] = ACTIONS(7654), + [anon_sym_const] = ACTIONS(7654), + [anon_sym_constexpr] = ACTIONS(7656), + [anon_sym_volatile] = ACTIONS(7656), + [anon_sym_restrict] = ACTIONS(7656), + [anon_sym___restrict__] = ACTIONS(7656), + [anon_sym__Atomic] = ACTIONS(7656), + [anon_sym__Noreturn] = ACTIONS(7656), + [anon_sym_noreturn] = ACTIONS(7656), + [anon_sym__Nonnull] = ACTIONS(7656), + [anon_sym_mutable] = ACTIONS(7656), + [anon_sym_constinit] = ACTIONS(7656), + [anon_sym_consteval] = ACTIONS(7656), + [anon_sym_alignas] = ACTIONS(7656), + [anon_sym__Alignas] = ACTIONS(7656), + [anon_sym_QMARK] = ACTIONS(7656), + [anon_sym_STAR_EQ] = ACTIONS(7656), + [anon_sym_SLASH_EQ] = ACTIONS(7656), + [anon_sym_PERCENT_EQ] = ACTIONS(7656), + [anon_sym_PLUS_EQ] = ACTIONS(7656), + [anon_sym_DASH_EQ] = ACTIONS(7656), + [anon_sym_LT_LT_EQ] = ACTIONS(7656), + [anon_sym_GT_GT_EQ] = ACTIONS(7654), + [anon_sym_AMP_EQ] = ACTIONS(7656), + [anon_sym_CARET_EQ] = ACTIONS(7656), + [anon_sym_PIPE_EQ] = ACTIONS(7656), + [anon_sym_and_eq] = ACTIONS(7656), + [anon_sym_or_eq] = ACTIONS(7656), + [anon_sym_xor_eq] = ACTIONS(7656), + [anon_sym_LT_EQ_GT] = ACTIONS(7656), + [anon_sym_or] = ACTIONS(7654), + [anon_sym_and] = ACTIONS(7654), + [anon_sym_bitor] = ACTIONS(7656), + [anon_sym_xor] = ACTIONS(7654), + [anon_sym_bitand] = ACTIONS(7656), + [anon_sym_not_eq] = ACTIONS(7656), + [anon_sym_DASH_DASH] = ACTIONS(7656), + [anon_sym_PLUS_PLUS] = ACTIONS(7656), + [anon_sym_DOT] = ACTIONS(7654), + [anon_sym_DOT_STAR] = ACTIONS(7656), + [anon_sym_DASH_GT] = ACTIONS(7656), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7656), + [anon_sym_override] = ACTIONS(7656), + [anon_sym_GT2] = ACTIONS(7656), + [anon_sym_requires] = ACTIONS(7656), + }, + [STATE(3162)] = { + [sym_identifier] = ACTIONS(7672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7674), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7674), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7674), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7674), + [anon_sym_GT_GT] = ACTIONS(7674), + [anon_sym_SEMI] = ACTIONS(7674), + [anon_sym___extension__] = ACTIONS(7672), + [anon_sym___attribute__] = ACTIONS(7672), + [anon_sym___attribute] = ACTIONS(7672), + [anon_sym_COLON] = ACTIONS(7672), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7674), + [anon_sym___based] = ACTIONS(7672), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_RBRACE] = ACTIONS(7674), + [anon_sym_signed] = ACTIONS(7672), + [anon_sym_unsigned] = ACTIONS(7672), + [anon_sym_long] = ACTIONS(7672), + [anon_sym_short] = ACTIONS(7672), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7672), + [anon_sym_volatile] = ACTIONS(7672), + [anon_sym_restrict] = ACTIONS(7672), + [anon_sym___restrict__] = ACTIONS(7672), + [anon_sym__Atomic] = ACTIONS(7672), + [anon_sym__Noreturn] = ACTIONS(7672), + [anon_sym_noreturn] = ACTIONS(7672), + [anon_sym__Nonnull] = ACTIONS(7672), + [anon_sym_mutable] = ACTIONS(7672), + [anon_sym_constinit] = ACTIONS(7672), + [anon_sym_consteval] = ACTIONS(7672), + [anon_sym_alignas] = ACTIONS(7672), + [anon_sym__Alignas] = ACTIONS(7672), + [sym_primitive_type] = ACTIONS(7672), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7672), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7672), + [anon_sym_not_eq] = ACTIONS(7672), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_COLON_RBRACK] = ACTIONS(7674), + }, + [STATE(3163)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7672), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7674), + [anon_sym_or_eq] = ACTIONS(7674), + [anon_sym_xor_eq] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_GT2] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + }, + [STATE(3164)] = { + [sym_attribute_declaration] = STATE(3152), + [aux_sym_attributed_declarator_repeat1] = STATE(3152), + [sym_identifier] = ACTIONS(8854), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8856), + [anon_sym_COMMA] = ACTIONS(8856), + [anon_sym_RPAREN] = ACTIONS(8856), + [aux_sym_preproc_if_token2] = ACTIONS(8856), + [aux_sym_preproc_else_token1] = ACTIONS(8856), + [aux_sym_preproc_elif_token1] = ACTIONS(8854), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8856), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8856), + [anon_sym_LPAREN2] = ACTIONS(8856), + [anon_sym_DASH] = ACTIONS(8854), + [anon_sym_PLUS] = ACTIONS(8854), + [anon_sym_STAR] = ACTIONS(8854), + [anon_sym_SLASH] = ACTIONS(8854), + [anon_sym_PERCENT] = ACTIONS(8854), + [anon_sym_PIPE_PIPE] = ACTIONS(8856), + [anon_sym_AMP_AMP] = ACTIONS(8856), + [anon_sym_PIPE] = ACTIONS(8854), + [anon_sym_CARET] = ACTIONS(8854), + [anon_sym_AMP] = ACTIONS(8854), + [anon_sym_EQ_EQ] = ACTIONS(8856), + [anon_sym_BANG_EQ] = ACTIONS(8856), + [anon_sym_GT] = ACTIONS(8854), + [anon_sym_GT_EQ] = ACTIONS(8856), + [anon_sym_LT_EQ] = ACTIONS(8854), + [anon_sym_LT] = ACTIONS(8854), + [anon_sym_LT_LT] = ACTIONS(8854), + [anon_sym_GT_GT] = ACTIONS(8854), + [anon_sym_SEMI] = ACTIONS(8856), + [anon_sym___attribute__] = ACTIONS(8854), + [anon_sym___attribute] = ACTIONS(8854), + [anon_sym_COLON] = ACTIONS(8854), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8856), + [anon_sym_RBRACE] = ACTIONS(8856), + [anon_sym_LBRACK] = ACTIONS(8854), + [anon_sym_EQ] = ACTIONS(8854), + [anon_sym_QMARK] = ACTIONS(8856), + [anon_sym_STAR_EQ] = ACTIONS(8856), + [anon_sym_SLASH_EQ] = ACTIONS(8856), + [anon_sym_PERCENT_EQ] = ACTIONS(8856), + [anon_sym_PLUS_EQ] = ACTIONS(8856), + [anon_sym_DASH_EQ] = ACTIONS(8856), + [anon_sym_LT_LT_EQ] = ACTIONS(8856), + [anon_sym_GT_GT_EQ] = ACTIONS(8856), + [anon_sym_AMP_EQ] = ACTIONS(8856), + [anon_sym_CARET_EQ] = ACTIONS(8856), + [anon_sym_PIPE_EQ] = ACTIONS(8856), + [anon_sym_and_eq] = ACTIONS(8854), + [anon_sym_or_eq] = ACTIONS(8854), + [anon_sym_xor_eq] = ACTIONS(8854), + [anon_sym_LT_EQ_GT] = ACTIONS(8856), + [anon_sym_or] = ACTIONS(8854), + [anon_sym_and] = ACTIONS(8854), + [anon_sym_bitor] = ACTIONS(8854), + [anon_sym_xor] = ACTIONS(8854), + [anon_sym_bitand] = ACTIONS(8854), + [anon_sym_not_eq] = ACTIONS(8854), + [anon_sym_DASH_DASH] = ACTIONS(8856), + [anon_sym_PLUS_PLUS] = ACTIONS(8856), + [anon_sym_DOT] = ACTIONS(8854), + [anon_sym_DOT_STAR] = ACTIONS(8856), + [anon_sym_DASH_GT] = ACTIONS(8856), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8854), + [anon_sym_override] = ACTIONS(8854), + [anon_sym_requires] = ACTIONS(8854), + [anon_sym_COLON_RBRACK] = ACTIONS(8856), + }, + [STATE(3165)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7678), + [anon_sym_COMMA] = ACTIONS(7678), + [anon_sym_LPAREN2] = ACTIONS(7678), + [anon_sym_DASH] = ACTIONS(7676), + [anon_sym_PLUS] = ACTIONS(7676), + [anon_sym_STAR] = ACTIONS(7676), + [anon_sym_SLASH] = ACTIONS(7676), + [anon_sym_PERCENT] = ACTIONS(7676), + [anon_sym_PIPE_PIPE] = ACTIONS(7678), + [anon_sym_AMP_AMP] = ACTIONS(7678), + [anon_sym_PIPE] = ACTIONS(7676), + [anon_sym_CARET] = ACTIONS(7676), + [anon_sym_AMP] = ACTIONS(7676), + [anon_sym_EQ_EQ] = ACTIONS(7678), + [anon_sym_BANG_EQ] = ACTIONS(7678), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_GT_EQ] = ACTIONS(7676), + [anon_sym_LT_EQ] = ACTIONS(7676), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_LT_LT] = ACTIONS(7676), + [anon_sym_GT_GT] = ACTIONS(7676), + [anon_sym___extension__] = ACTIONS(7678), + [anon_sym_LBRACE] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7678), + [anon_sym_EQ] = ACTIONS(7676), + [anon_sym_const] = ACTIONS(7676), + [anon_sym_constexpr] = ACTIONS(7678), + [anon_sym_volatile] = ACTIONS(7678), + [anon_sym_restrict] = ACTIONS(7678), + [anon_sym___restrict__] = ACTIONS(7678), + [anon_sym__Atomic] = ACTIONS(7678), + [anon_sym__Noreturn] = ACTIONS(7678), + [anon_sym_noreturn] = ACTIONS(7678), + [anon_sym__Nonnull] = ACTIONS(7678), + [anon_sym_mutable] = ACTIONS(7678), + [anon_sym_constinit] = ACTIONS(7678), + [anon_sym_consteval] = ACTIONS(7678), + [anon_sym_alignas] = ACTIONS(7678), + [anon_sym__Alignas] = ACTIONS(7678), + [anon_sym_QMARK] = ACTIONS(7678), + [anon_sym_STAR_EQ] = ACTIONS(7678), + [anon_sym_SLASH_EQ] = ACTIONS(7678), + [anon_sym_PERCENT_EQ] = ACTIONS(7678), + [anon_sym_PLUS_EQ] = ACTIONS(7678), + [anon_sym_DASH_EQ] = ACTIONS(7678), + [anon_sym_LT_LT_EQ] = ACTIONS(7678), + [anon_sym_GT_GT_EQ] = ACTIONS(7676), + [anon_sym_AMP_EQ] = ACTIONS(7678), + [anon_sym_CARET_EQ] = ACTIONS(7678), + [anon_sym_PIPE_EQ] = ACTIONS(7678), + [anon_sym_and_eq] = ACTIONS(7678), + [anon_sym_or_eq] = ACTIONS(7678), + [anon_sym_xor_eq] = ACTIONS(7678), + [anon_sym_LT_EQ_GT] = ACTIONS(7678), + [anon_sym_or] = ACTIONS(7676), + [anon_sym_and] = ACTIONS(7676), + [anon_sym_bitor] = ACTIONS(7678), + [anon_sym_xor] = ACTIONS(7676), + [anon_sym_bitand] = ACTIONS(7678), + [anon_sym_not_eq] = ACTIONS(7678), + [anon_sym_DASH_DASH] = ACTIONS(7678), + [anon_sym_PLUS_PLUS] = ACTIONS(7678), + [anon_sym_DOT] = ACTIONS(7676), + [anon_sym_DOT_STAR] = ACTIONS(7678), + [anon_sym_DASH_GT] = ACTIONS(7678), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7678), + [anon_sym_override] = ACTIONS(7678), + [anon_sym_GT2] = ACTIONS(7678), + [anon_sym_requires] = ACTIONS(7678), + }, + [STATE(3166)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7682), + [anon_sym_COMMA] = ACTIONS(7682), + [anon_sym_LPAREN2] = ACTIONS(7682), + [anon_sym_DASH] = ACTIONS(7680), + [anon_sym_PLUS] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7680), + [anon_sym_SLASH] = ACTIONS(7680), + [anon_sym_PERCENT] = ACTIONS(7680), + [anon_sym_PIPE_PIPE] = ACTIONS(7682), + [anon_sym_AMP_AMP] = ACTIONS(7682), + [anon_sym_PIPE] = ACTIONS(7680), + [anon_sym_CARET] = ACTIONS(7680), + [anon_sym_AMP] = ACTIONS(7680), + [anon_sym_EQ_EQ] = ACTIONS(7682), + [anon_sym_BANG_EQ] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7680), + [anon_sym_GT_EQ] = ACTIONS(7680), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_LT] = ACTIONS(7680), + [anon_sym_LT_LT] = ACTIONS(7680), + [anon_sym_GT_GT] = ACTIONS(7680), + [anon_sym___extension__] = ACTIONS(7682), + [anon_sym_LBRACE] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7682), + [anon_sym_EQ] = ACTIONS(7680), + [anon_sym_const] = ACTIONS(7680), + [anon_sym_constexpr] = ACTIONS(7682), + [anon_sym_volatile] = ACTIONS(7682), + [anon_sym_restrict] = ACTIONS(7682), + [anon_sym___restrict__] = ACTIONS(7682), + [anon_sym__Atomic] = ACTIONS(7682), + [anon_sym__Noreturn] = ACTIONS(7682), + [anon_sym_noreturn] = ACTIONS(7682), + [anon_sym__Nonnull] = ACTIONS(7682), + [anon_sym_mutable] = ACTIONS(7682), + [anon_sym_constinit] = ACTIONS(7682), + [anon_sym_consteval] = ACTIONS(7682), + [anon_sym_alignas] = ACTIONS(7682), + [anon_sym__Alignas] = ACTIONS(7682), + [anon_sym_QMARK] = ACTIONS(7682), + [anon_sym_STAR_EQ] = ACTIONS(7682), + [anon_sym_SLASH_EQ] = ACTIONS(7682), + [anon_sym_PERCENT_EQ] = ACTIONS(7682), + [anon_sym_PLUS_EQ] = ACTIONS(7682), + [anon_sym_DASH_EQ] = ACTIONS(7682), + [anon_sym_LT_LT_EQ] = ACTIONS(7682), + [anon_sym_GT_GT_EQ] = ACTIONS(7680), + [anon_sym_AMP_EQ] = ACTIONS(7682), + [anon_sym_CARET_EQ] = ACTIONS(7682), + [anon_sym_PIPE_EQ] = ACTIONS(7682), + [anon_sym_and_eq] = ACTIONS(7682), + [anon_sym_or_eq] = ACTIONS(7682), + [anon_sym_xor_eq] = ACTIONS(7682), + [anon_sym_LT_EQ_GT] = ACTIONS(7682), + [anon_sym_or] = ACTIONS(7680), + [anon_sym_and] = ACTIONS(7680), + [anon_sym_bitor] = ACTIONS(7682), + [anon_sym_xor] = ACTIONS(7680), + [anon_sym_bitand] = ACTIONS(7682), + [anon_sym_not_eq] = ACTIONS(7682), + [anon_sym_DASH_DASH] = ACTIONS(7682), + [anon_sym_PLUS_PLUS] = ACTIONS(7682), + [anon_sym_DOT] = ACTIONS(7680), + [anon_sym_DOT_STAR] = ACTIONS(7682), + [anon_sym_DASH_GT] = ACTIONS(7682), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7682), + [anon_sym_override] = ACTIONS(7682), + [anon_sym_GT2] = ACTIONS(7682), + [anon_sym_requires] = ACTIONS(7682), + }, + [STATE(3167)] = { + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(3176), + [sym__declarator] = STATE(8826), + [sym__abstract_declarator] = STATE(9000), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(4054), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(4676), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7984), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(4054), + [aux_sym_pointer_declarator_repeat1] = STATE(3176), + [sym_identifier] = ACTIONS(8274), + [anon_sym_RPAREN] = ACTIONS(6815), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(5661), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_AMP] = ACTIONS(5665), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(8774), + [anon_sym___based] = ACTIONS(53), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(3168)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_LPAREN2] = ACTIONS(7749), + [anon_sym_DASH] = ACTIONS(7747), + [anon_sym_PLUS] = ACTIONS(7747), + [anon_sym_STAR] = ACTIONS(7747), + [anon_sym_SLASH] = ACTIONS(7747), + [anon_sym_PERCENT] = ACTIONS(7747), + [anon_sym_PIPE_PIPE] = ACTIONS(7749), + [anon_sym_AMP_AMP] = ACTIONS(7749), + [anon_sym_PIPE] = ACTIONS(7747), + [anon_sym_CARET] = ACTIONS(7747), + [anon_sym_AMP] = ACTIONS(7747), + [anon_sym_EQ_EQ] = ACTIONS(7749), + [anon_sym_BANG_EQ] = ACTIONS(7749), + [anon_sym_GT] = ACTIONS(7747), + [anon_sym_GT_EQ] = ACTIONS(7747), + [anon_sym_LT_EQ] = ACTIONS(7747), + [anon_sym_LT] = ACTIONS(7747), + [anon_sym_LT_LT] = ACTIONS(7747), + [anon_sym_GT_GT] = ACTIONS(7747), + [anon_sym___extension__] = ACTIONS(7749), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(7747), + [anon_sym_const] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7749), + [anon_sym_volatile] = ACTIONS(7749), + [anon_sym_restrict] = ACTIONS(7749), + [anon_sym___restrict__] = ACTIONS(7749), + [anon_sym__Atomic] = ACTIONS(7749), + [anon_sym__Noreturn] = ACTIONS(7749), + [anon_sym_noreturn] = ACTIONS(7749), + [anon_sym__Nonnull] = ACTIONS(7749), + [anon_sym_mutable] = ACTIONS(7749), + [anon_sym_constinit] = ACTIONS(7749), + [anon_sym_consteval] = ACTIONS(7749), + [anon_sym_alignas] = ACTIONS(7749), + [anon_sym__Alignas] = ACTIONS(7749), + [anon_sym_QMARK] = ACTIONS(7749), + [anon_sym_STAR_EQ] = ACTIONS(7749), + [anon_sym_SLASH_EQ] = ACTIONS(7749), + [anon_sym_PERCENT_EQ] = ACTIONS(7749), + [anon_sym_PLUS_EQ] = ACTIONS(7749), + [anon_sym_DASH_EQ] = ACTIONS(7749), + [anon_sym_LT_LT_EQ] = ACTIONS(7749), + [anon_sym_GT_GT_EQ] = ACTIONS(7747), + [anon_sym_AMP_EQ] = ACTIONS(7749), + [anon_sym_CARET_EQ] = ACTIONS(7749), + [anon_sym_PIPE_EQ] = ACTIONS(7749), + [anon_sym_and_eq] = ACTIONS(7749), + [anon_sym_or_eq] = ACTIONS(7749), + [anon_sym_xor_eq] = ACTIONS(7749), + [anon_sym_LT_EQ_GT] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7747), + [anon_sym_and] = ACTIONS(7747), + [anon_sym_bitor] = ACTIONS(7749), + [anon_sym_xor] = ACTIONS(7747), + [anon_sym_bitand] = ACTIONS(7749), + [anon_sym_not_eq] = ACTIONS(7749), + [anon_sym_DASH_DASH] = ACTIONS(7749), + [anon_sym_PLUS_PLUS] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(7747), + [anon_sym_DOT_STAR] = ACTIONS(7749), + [anon_sym_DASH_GT] = ACTIONS(7749), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7749), + [anon_sym_override] = ACTIONS(7749), + [anon_sym_GT2] = ACTIONS(7749), + [anon_sym_requires] = ACTIONS(7749), + }, + [STATE(3169)] = { + [sym_type_qualifier] = STATE(3186), + [sym_alignas_qualifier] = STATE(2724), + [aux_sym__type_definition_type_repeat1] = STATE(3186), + [aux_sym_sized_type_specifier_repeat1] = STATE(3632), + [sym_identifier] = ACTIONS(8665), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_RPAREN] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym_SEMI] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(8140), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_COLON] = ACTIONS(7211), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7209), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_RBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(9055), + [anon_sym_unsigned] = ACTIONS(9055), + [anon_sym_long] = ACTIONS(9055), + [anon_sym_short] = ACTIONS(9055), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8140), + [anon_sym_volatile] = ACTIONS(8140), + [anon_sym_restrict] = ACTIONS(8140), + [anon_sym___restrict__] = ACTIONS(8140), + [anon_sym__Atomic] = ACTIONS(8140), + [anon_sym__Noreturn] = ACTIONS(8140), + [anon_sym_noreturn] = ACTIONS(8140), + [anon_sym__Nonnull] = ACTIONS(8140), + [anon_sym_mutable] = ACTIONS(8140), + [anon_sym_constinit] = ACTIONS(8140), + [anon_sym_consteval] = ACTIONS(8140), + [anon_sym_alignas] = ACTIONS(9057), + [anon_sym__Alignas] = ACTIONS(9057), + [sym_primitive_type] = ACTIONS(8675), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7209), + }, + [STATE(3170)] = { + [sym_identifier] = ACTIONS(7696), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7698), + [anon_sym_COMMA] = ACTIONS(7698), + [anon_sym_RPAREN] = ACTIONS(7698), + [anon_sym_LPAREN2] = ACTIONS(7698), + [anon_sym_DASH] = ACTIONS(7696), + [anon_sym_PLUS] = ACTIONS(7696), + [anon_sym_STAR] = ACTIONS(7698), + [anon_sym_SLASH] = ACTIONS(7696), + [anon_sym_PERCENT] = ACTIONS(7698), + [anon_sym_PIPE_PIPE] = ACTIONS(7698), + [anon_sym_AMP_AMP] = ACTIONS(7698), + [anon_sym_PIPE] = ACTIONS(7696), + [anon_sym_CARET] = ACTIONS(7698), + [anon_sym_AMP] = ACTIONS(7696), + [anon_sym_EQ_EQ] = ACTIONS(7698), + [anon_sym_BANG_EQ] = ACTIONS(7698), + [anon_sym_GT] = ACTIONS(7696), + [anon_sym_GT_EQ] = ACTIONS(7698), + [anon_sym_LT_EQ] = ACTIONS(7696), + [anon_sym_LT] = ACTIONS(7696), + [anon_sym_LT_LT] = ACTIONS(7698), + [anon_sym_GT_GT] = ACTIONS(7698), + [anon_sym_SEMI] = ACTIONS(7698), + [anon_sym___extension__] = ACTIONS(7696), + [anon_sym___attribute__] = ACTIONS(7696), + [anon_sym___attribute] = ACTIONS(7696), + [anon_sym_COLON] = ACTIONS(7696), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7698), + [anon_sym___based] = ACTIONS(7696), + [anon_sym_LBRACE] = ACTIONS(7698), + [anon_sym_RBRACE] = ACTIONS(7698), + [anon_sym_signed] = ACTIONS(7696), + [anon_sym_unsigned] = ACTIONS(7696), + [anon_sym_long] = ACTIONS(7696), + [anon_sym_short] = ACTIONS(7696), + [anon_sym_LBRACK] = ACTIONS(7698), + [anon_sym_const] = ACTIONS(7696), + [anon_sym_constexpr] = ACTIONS(7696), + [anon_sym_volatile] = ACTIONS(7696), + [anon_sym_restrict] = ACTIONS(7696), + [anon_sym___restrict__] = ACTIONS(7696), + [anon_sym__Atomic] = ACTIONS(7696), + [anon_sym__Noreturn] = ACTIONS(7696), + [anon_sym_noreturn] = ACTIONS(7696), + [anon_sym__Nonnull] = ACTIONS(7696), + [anon_sym_mutable] = ACTIONS(7696), + [anon_sym_constinit] = ACTIONS(7696), + [anon_sym_consteval] = ACTIONS(7696), + [anon_sym_alignas] = ACTIONS(7696), + [anon_sym__Alignas] = ACTIONS(7696), + [sym_primitive_type] = ACTIONS(7696), + [anon_sym_QMARK] = ACTIONS(7698), + [anon_sym_LT_EQ_GT] = ACTIONS(7698), + [anon_sym_or] = ACTIONS(7696), + [anon_sym_and] = ACTIONS(7696), + [anon_sym_bitor] = ACTIONS(7696), + [anon_sym_xor] = ACTIONS(7696), + [anon_sym_bitand] = ACTIONS(7696), + [anon_sym_not_eq] = ACTIONS(7696), + [anon_sym_DASH_DASH] = ACTIONS(7698), + [anon_sym_PLUS_PLUS] = ACTIONS(7698), + [anon_sym_DOT] = ACTIONS(7696), + [anon_sym_DOT_STAR] = ACTIONS(7698), + [anon_sym_DASH_GT] = ACTIONS(7698), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7696), + [anon_sym_override] = ACTIONS(7696), + [anon_sym_requires] = ACTIONS(7696), + [anon_sym_COLON_RBRACK] = ACTIONS(7698), + }, + [STATE(3171)] = { + [sym_identifier] = ACTIONS(9059), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9061), + [anon_sym_COMMA] = ACTIONS(9061), + [anon_sym_RPAREN] = ACTIONS(9061), + [aux_sym_preproc_if_token2] = ACTIONS(9061), + [aux_sym_preproc_else_token1] = ACTIONS(9061), + [aux_sym_preproc_elif_token1] = ACTIONS(9059), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9061), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9061), + [anon_sym_LPAREN2] = ACTIONS(9061), + [anon_sym_DASH] = ACTIONS(9059), + [anon_sym_PLUS] = ACTIONS(9059), + [anon_sym_STAR] = ACTIONS(9059), + [anon_sym_SLASH] = ACTIONS(9059), + [anon_sym_PERCENT] = ACTIONS(9059), + [anon_sym_PIPE_PIPE] = ACTIONS(9061), + [anon_sym_AMP_AMP] = ACTIONS(9061), + [anon_sym_PIPE] = ACTIONS(9059), + [anon_sym_CARET] = ACTIONS(9059), + [anon_sym_AMP] = ACTIONS(9059), + [anon_sym_EQ_EQ] = ACTIONS(9061), + [anon_sym_BANG_EQ] = ACTIONS(9061), + [anon_sym_GT] = ACTIONS(9059), + [anon_sym_GT_EQ] = ACTIONS(9061), + [anon_sym_LT_EQ] = ACTIONS(9059), + [anon_sym_LT] = ACTIONS(9059), + [anon_sym_LT_LT] = ACTIONS(9059), + [anon_sym_GT_GT] = ACTIONS(9059), + [anon_sym_SEMI] = ACTIONS(9061), + [anon_sym___attribute__] = ACTIONS(9059), + [anon_sym___attribute] = ACTIONS(9059), + [anon_sym_COLON] = ACTIONS(9059), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9061), + [anon_sym_LBRACE] = ACTIONS(9061), + [anon_sym_RBRACE] = ACTIONS(9061), + [anon_sym_LBRACK] = ACTIONS(9059), + [anon_sym_RBRACK] = ACTIONS(9061), + [anon_sym_EQ] = ACTIONS(9059), + [anon_sym_QMARK] = ACTIONS(9061), + [anon_sym_STAR_EQ] = ACTIONS(9061), + [anon_sym_SLASH_EQ] = ACTIONS(9061), + [anon_sym_PERCENT_EQ] = ACTIONS(9061), + [anon_sym_PLUS_EQ] = ACTIONS(9061), + [anon_sym_DASH_EQ] = ACTIONS(9061), + [anon_sym_LT_LT_EQ] = ACTIONS(9061), + [anon_sym_GT_GT_EQ] = ACTIONS(9061), + [anon_sym_AMP_EQ] = ACTIONS(9061), + [anon_sym_CARET_EQ] = ACTIONS(9061), + [anon_sym_PIPE_EQ] = ACTIONS(9061), + [anon_sym_and_eq] = ACTIONS(9059), + [anon_sym_or_eq] = ACTIONS(9059), + [anon_sym_xor_eq] = ACTIONS(9059), + [anon_sym_LT_EQ_GT] = ACTIONS(9061), + [anon_sym_or] = ACTIONS(9059), + [anon_sym_and] = ACTIONS(9059), + [anon_sym_bitor] = ACTIONS(9059), + [anon_sym_xor] = ACTIONS(9059), + [anon_sym_bitand] = ACTIONS(9059), + [anon_sym_not_eq] = ACTIONS(9059), + [anon_sym_DASH_DASH] = ACTIONS(9061), + [anon_sym_PLUS_PLUS] = ACTIONS(9061), + [anon_sym_asm] = ACTIONS(9059), + [anon_sym___asm__] = ACTIONS(9059), + [anon_sym___asm] = ACTIONS(9059), + [anon_sym_DOT] = ACTIONS(9059), + [anon_sym_DOT_STAR] = ACTIONS(9061), + [anon_sym_DASH_GT] = ACTIONS(9061), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9059), + [anon_sym_COLON_RBRACK] = ACTIONS(9061), + }, + [STATE(3172)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7763), + [anon_sym_COMMA] = ACTIONS(7763), + [anon_sym_LPAREN2] = ACTIONS(7763), + [anon_sym_DASH] = ACTIONS(7761), + [anon_sym_PLUS] = ACTIONS(7761), + [anon_sym_STAR] = ACTIONS(7761), + [anon_sym_SLASH] = ACTIONS(7761), + [anon_sym_PERCENT] = ACTIONS(7761), + [anon_sym_PIPE_PIPE] = ACTIONS(7763), + [anon_sym_AMP_AMP] = ACTIONS(7763), + [anon_sym_PIPE] = ACTIONS(7761), + [anon_sym_CARET] = ACTIONS(7761), + [anon_sym_AMP] = ACTIONS(7761), + [anon_sym_EQ_EQ] = ACTIONS(7763), + [anon_sym_BANG_EQ] = ACTIONS(7763), + [anon_sym_GT] = ACTIONS(7761), + [anon_sym_GT_EQ] = ACTIONS(7761), + [anon_sym_LT_EQ] = ACTIONS(7761), + [anon_sym_LT] = ACTIONS(7761), + [anon_sym_LT_LT] = ACTIONS(7761), + [anon_sym_GT_GT] = ACTIONS(7761), + [anon_sym___extension__] = ACTIONS(7763), + [anon_sym_LBRACE] = ACTIONS(7763), + [anon_sym_LBRACK] = ACTIONS(7763), + [anon_sym_EQ] = ACTIONS(7761), + [anon_sym_const] = ACTIONS(7761), + [anon_sym_constexpr] = ACTIONS(7763), + [anon_sym_volatile] = ACTIONS(7763), + [anon_sym_restrict] = ACTIONS(7763), + [anon_sym___restrict__] = ACTIONS(7763), [anon_sym__Atomic] = ACTIONS(7763), [anon_sym__Noreturn] = ACTIONS(7763), [anon_sym_noreturn] = ACTIONS(7763), @@ -408465,99 +406065,471 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(7763), [anon_sym_alignas] = ACTIONS(7763), [anon_sym__Alignas] = ACTIONS(7763), - [sym_primitive_type] = ACTIONS(7763), - [anon_sym_QMARK] = ACTIONS(7765), - [anon_sym_LT_EQ_GT] = ACTIONS(7765), - [anon_sym_or] = ACTIONS(7763), - [anon_sym_and] = ACTIONS(7763), + [anon_sym_QMARK] = ACTIONS(7763), + [anon_sym_STAR_EQ] = ACTIONS(7763), + [anon_sym_SLASH_EQ] = ACTIONS(7763), + [anon_sym_PERCENT_EQ] = ACTIONS(7763), + [anon_sym_PLUS_EQ] = ACTIONS(7763), + [anon_sym_DASH_EQ] = ACTIONS(7763), + [anon_sym_LT_LT_EQ] = ACTIONS(7763), + [anon_sym_GT_GT_EQ] = ACTIONS(7761), + [anon_sym_AMP_EQ] = ACTIONS(7763), + [anon_sym_CARET_EQ] = ACTIONS(7763), + [anon_sym_PIPE_EQ] = ACTIONS(7763), + [anon_sym_and_eq] = ACTIONS(7763), + [anon_sym_or_eq] = ACTIONS(7763), + [anon_sym_xor_eq] = ACTIONS(7763), + [anon_sym_LT_EQ_GT] = ACTIONS(7763), + [anon_sym_or] = ACTIONS(7761), + [anon_sym_and] = ACTIONS(7761), [anon_sym_bitor] = ACTIONS(7763), - [anon_sym_xor] = ACTIONS(7763), + [anon_sym_xor] = ACTIONS(7761), [anon_sym_bitand] = ACTIONS(7763), [anon_sym_not_eq] = ACTIONS(7763), - [anon_sym_DASH_DASH] = ACTIONS(7765), - [anon_sym_PLUS_PLUS] = ACTIONS(7765), - [anon_sym_DOT] = ACTIONS(7763), - [anon_sym_DOT_STAR] = ACTIONS(7765), - [anon_sym_DASH_GT] = ACTIONS(7765), + [anon_sym_DASH_DASH] = ACTIONS(7763), + [anon_sym_PLUS_PLUS] = ACTIONS(7763), + [anon_sym_DOT] = ACTIONS(7761), + [anon_sym_DOT_STAR] = ACTIONS(7763), + [anon_sym_DASH_GT] = ACTIONS(7763), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7763), [anon_sym_override] = ACTIONS(7763), + [anon_sym_GT2] = ACTIONS(7763), [anon_sym_requires] = ACTIONS(7763), - [anon_sym_COLON_RBRACK] = ACTIONS(7765), }, - [STATE(3204)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(3239), - [sym__declarator] = STATE(8826), - [sym__abstract_declarator] = STATE(8989), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(4126), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(4706), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7993), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(4126), - [aux_sym_pointer_declarator_repeat1] = STATE(3239), - [sym_identifier] = ACTIONS(8228), - [anon_sym_RPAREN] = ACTIONS(6859), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5621), - [anon_sym_AMP] = ACTIONS(5623), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(8675), + [STATE(3173)] = { + [sym_identifier] = ACTIONS(7700), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7702), + [anon_sym_COMMA] = ACTIONS(7702), + [anon_sym_RPAREN] = ACTIONS(7702), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_DASH] = ACTIONS(7700), + [anon_sym_PLUS] = ACTIONS(7700), + [anon_sym_STAR] = ACTIONS(7702), + [anon_sym_SLASH] = ACTIONS(7700), + [anon_sym_PERCENT] = ACTIONS(7702), + [anon_sym_PIPE_PIPE] = ACTIONS(7702), + [anon_sym_AMP_AMP] = ACTIONS(7702), + [anon_sym_PIPE] = ACTIONS(7700), + [anon_sym_CARET] = ACTIONS(7702), + [anon_sym_AMP] = ACTIONS(7700), + [anon_sym_EQ_EQ] = ACTIONS(7702), + [anon_sym_BANG_EQ] = ACTIONS(7702), + [anon_sym_GT] = ACTIONS(7700), + [anon_sym_GT_EQ] = ACTIONS(7702), + [anon_sym_LT_EQ] = ACTIONS(7700), + [anon_sym_LT] = ACTIONS(7700), + [anon_sym_LT_LT] = ACTIONS(7702), + [anon_sym_GT_GT] = ACTIONS(7702), + [anon_sym_SEMI] = ACTIONS(7702), + [anon_sym___extension__] = ACTIONS(7700), + [anon_sym___attribute__] = ACTIONS(7700), + [anon_sym___attribute] = ACTIONS(7700), + [anon_sym_COLON] = ACTIONS(7700), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7702), + [anon_sym___based] = ACTIONS(7700), + [anon_sym_LBRACE] = ACTIONS(7702), + [anon_sym_RBRACE] = ACTIONS(7702), + [anon_sym_signed] = ACTIONS(7700), + [anon_sym_unsigned] = ACTIONS(7700), + [anon_sym_long] = ACTIONS(7700), + [anon_sym_short] = ACTIONS(7700), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7700), + [anon_sym_volatile] = ACTIONS(7700), + [anon_sym_restrict] = ACTIONS(7700), + [anon_sym___restrict__] = ACTIONS(7700), + [anon_sym__Atomic] = ACTIONS(7700), + [anon_sym__Noreturn] = ACTIONS(7700), + [anon_sym_noreturn] = ACTIONS(7700), + [anon_sym__Nonnull] = ACTIONS(7700), + [anon_sym_mutable] = ACTIONS(7700), + [anon_sym_constinit] = ACTIONS(7700), + [anon_sym_consteval] = ACTIONS(7700), + [anon_sym_alignas] = ACTIONS(7700), + [anon_sym__Alignas] = ACTIONS(7700), + [sym_primitive_type] = ACTIONS(7700), + [anon_sym_QMARK] = ACTIONS(7702), + [anon_sym_LT_EQ_GT] = ACTIONS(7702), + [anon_sym_or] = ACTIONS(7700), + [anon_sym_and] = ACTIONS(7700), + [anon_sym_bitor] = ACTIONS(7700), + [anon_sym_xor] = ACTIONS(7700), + [anon_sym_bitand] = ACTIONS(7700), + [anon_sym_not_eq] = ACTIONS(7700), + [anon_sym_DASH_DASH] = ACTIONS(7702), + [anon_sym_PLUS_PLUS] = ACTIONS(7702), + [anon_sym_DOT] = ACTIONS(7700), + [anon_sym_DOT_STAR] = ACTIONS(7702), + [anon_sym_DASH_GT] = ACTIONS(7702), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7700), + [anon_sym_override] = ACTIONS(7700), + [anon_sym_requires] = ACTIONS(7700), + [anon_sym_COLON_RBRACK] = ACTIONS(7702), + }, + [STATE(3174)] = { + [sym_identifier] = ACTIONS(7704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7706), + [anon_sym_COMMA] = ACTIONS(7706), + [anon_sym_RPAREN] = ACTIONS(7706), + [anon_sym_LPAREN2] = ACTIONS(7706), + [anon_sym_DASH] = ACTIONS(7704), + [anon_sym_PLUS] = ACTIONS(7704), + [anon_sym_STAR] = ACTIONS(7706), + [anon_sym_SLASH] = ACTIONS(7704), + [anon_sym_PERCENT] = ACTIONS(7706), + [anon_sym_PIPE_PIPE] = ACTIONS(7706), + [anon_sym_AMP_AMP] = ACTIONS(7706), + [anon_sym_PIPE] = ACTIONS(7704), + [anon_sym_CARET] = ACTIONS(7706), + [anon_sym_AMP] = ACTIONS(7704), + [anon_sym_EQ_EQ] = ACTIONS(7706), + [anon_sym_BANG_EQ] = ACTIONS(7706), + [anon_sym_GT] = ACTIONS(7704), + [anon_sym_GT_EQ] = ACTIONS(7706), + [anon_sym_LT_EQ] = ACTIONS(7704), + [anon_sym_LT] = ACTIONS(7704), + [anon_sym_LT_LT] = ACTIONS(7706), + [anon_sym_GT_GT] = ACTIONS(7706), + [anon_sym_SEMI] = ACTIONS(7706), + [anon_sym___extension__] = ACTIONS(7704), + [anon_sym___attribute__] = ACTIONS(7704), + [anon_sym___attribute] = ACTIONS(7704), + [anon_sym_COLON] = ACTIONS(7704), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7706), + [anon_sym___based] = ACTIONS(7704), + [anon_sym_LBRACE] = ACTIONS(7706), + [anon_sym_RBRACE] = ACTIONS(7706), + [anon_sym_signed] = ACTIONS(7704), + [anon_sym_unsigned] = ACTIONS(7704), + [anon_sym_long] = ACTIONS(7704), + [anon_sym_short] = ACTIONS(7704), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_const] = ACTIONS(7704), + [anon_sym_constexpr] = ACTIONS(7704), + [anon_sym_volatile] = ACTIONS(7704), + [anon_sym_restrict] = ACTIONS(7704), + [anon_sym___restrict__] = ACTIONS(7704), + [anon_sym__Atomic] = ACTIONS(7704), + [anon_sym__Noreturn] = ACTIONS(7704), + [anon_sym_noreturn] = ACTIONS(7704), + [anon_sym__Nonnull] = ACTIONS(7704), + [anon_sym_mutable] = ACTIONS(7704), + [anon_sym_constinit] = ACTIONS(7704), + [anon_sym_consteval] = ACTIONS(7704), + [anon_sym_alignas] = ACTIONS(7704), + [anon_sym__Alignas] = ACTIONS(7704), + [sym_primitive_type] = ACTIONS(7704), + [anon_sym_QMARK] = ACTIONS(7706), + [anon_sym_LT_EQ_GT] = ACTIONS(7706), + [anon_sym_or] = ACTIONS(7704), + [anon_sym_and] = ACTIONS(7704), + [anon_sym_bitor] = ACTIONS(7704), + [anon_sym_xor] = ACTIONS(7704), + [anon_sym_bitand] = ACTIONS(7704), + [anon_sym_not_eq] = ACTIONS(7704), + [anon_sym_DASH_DASH] = ACTIONS(7706), + [anon_sym_PLUS_PLUS] = ACTIONS(7706), + [anon_sym_DOT] = ACTIONS(7704), + [anon_sym_DOT_STAR] = ACTIONS(7706), + [anon_sym_DASH_GT] = ACTIONS(7706), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7704), + [anon_sym_override] = ACTIONS(7704), + [anon_sym_requires] = ACTIONS(7704), + [anon_sym_COLON_RBRACK] = ACTIONS(7706), + }, + [STATE(3175)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7767), + [anon_sym_COMMA] = ACTIONS(7767), + [anon_sym_LPAREN2] = ACTIONS(7767), + [anon_sym_DASH] = ACTIONS(7765), + [anon_sym_PLUS] = ACTIONS(7765), + [anon_sym_STAR] = ACTIONS(7765), + [anon_sym_SLASH] = ACTIONS(7765), + [anon_sym_PERCENT] = ACTIONS(7765), + [anon_sym_PIPE_PIPE] = ACTIONS(7767), + [anon_sym_AMP_AMP] = ACTIONS(7767), + [anon_sym_PIPE] = ACTIONS(7765), + [anon_sym_CARET] = ACTIONS(7765), + [anon_sym_AMP] = ACTIONS(7765), + [anon_sym_EQ_EQ] = ACTIONS(7767), + [anon_sym_BANG_EQ] = ACTIONS(7767), + [anon_sym_GT] = ACTIONS(7765), + [anon_sym_GT_EQ] = ACTIONS(7765), + [anon_sym_LT_EQ] = ACTIONS(7765), + [anon_sym_LT] = ACTIONS(7765), + [anon_sym_LT_LT] = ACTIONS(7765), + [anon_sym_GT_GT] = ACTIONS(7765), + [anon_sym___extension__] = ACTIONS(7767), + [anon_sym_LBRACE] = ACTIONS(7767), + [anon_sym_LBRACK] = ACTIONS(7767), + [anon_sym_EQ] = ACTIONS(7765), + [anon_sym_const] = ACTIONS(7765), + [anon_sym_constexpr] = ACTIONS(7767), + [anon_sym_volatile] = ACTIONS(7767), + [anon_sym_restrict] = ACTIONS(7767), + [anon_sym___restrict__] = ACTIONS(7767), + [anon_sym__Atomic] = ACTIONS(7767), + [anon_sym__Noreturn] = ACTIONS(7767), + [anon_sym_noreturn] = ACTIONS(7767), + [anon_sym__Nonnull] = ACTIONS(7767), + [anon_sym_mutable] = ACTIONS(7767), + [anon_sym_constinit] = ACTIONS(7767), + [anon_sym_consteval] = ACTIONS(7767), + [anon_sym_alignas] = ACTIONS(7767), + [anon_sym__Alignas] = ACTIONS(7767), + [anon_sym_QMARK] = ACTIONS(7767), + [anon_sym_STAR_EQ] = ACTIONS(7767), + [anon_sym_SLASH_EQ] = ACTIONS(7767), + [anon_sym_PERCENT_EQ] = ACTIONS(7767), + [anon_sym_PLUS_EQ] = ACTIONS(7767), + [anon_sym_DASH_EQ] = ACTIONS(7767), + [anon_sym_LT_LT_EQ] = ACTIONS(7767), + [anon_sym_GT_GT_EQ] = ACTIONS(7765), + [anon_sym_AMP_EQ] = ACTIONS(7767), + [anon_sym_CARET_EQ] = ACTIONS(7767), + [anon_sym_PIPE_EQ] = ACTIONS(7767), + [anon_sym_and_eq] = ACTIONS(7767), + [anon_sym_or_eq] = ACTIONS(7767), + [anon_sym_xor_eq] = ACTIONS(7767), + [anon_sym_LT_EQ_GT] = ACTIONS(7767), + [anon_sym_or] = ACTIONS(7765), + [anon_sym_and] = ACTIONS(7765), + [anon_sym_bitor] = ACTIONS(7767), + [anon_sym_xor] = ACTIONS(7765), + [anon_sym_bitand] = ACTIONS(7767), + [anon_sym_not_eq] = ACTIONS(7767), + [anon_sym_DASH_DASH] = ACTIONS(7767), + [anon_sym_PLUS_PLUS] = ACTIONS(7767), + [anon_sym_DOT] = ACTIONS(7765), + [anon_sym_DOT_STAR] = ACTIONS(7767), + [anon_sym_DASH_GT] = ACTIONS(7767), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7767), + [anon_sym_override] = ACTIONS(7767), + [anon_sym_GT2] = ACTIONS(7767), + [anon_sym_requires] = ACTIONS(7767), + }, + [STATE(3176)] = { + [sym_ms_based_modifier] = STATE(11132), + [sym_ms_unaligned_ptr_modifier] = STATE(6700), + [sym_ms_pointer_modifier] = STATE(6415), + [sym__declarator] = STATE(8773), + [sym__abstract_declarator] = STATE(8994), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(4056), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(4676), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7984), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(4056), + [aux_sym_pointer_declarator_repeat1] = STATE(6415), + [sym_identifier] = ACTIONS(8274), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(5661), + [anon_sym_AMP_AMP] = ACTIONS(5663), + [anon_sym_AMP] = ACTIONS(5665), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym_COLON_COLON] = ACTIONS(8774), [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [sym_ms_restrict_modifier] = ACTIONS(3364), + [sym_ms_unsigned_ptr_modifier] = ACTIONS(3364), + [sym_ms_signed_ptr_modifier] = ACTIONS(3364), + [anon_sym__unaligned] = ACTIONS(3366), + [anon_sym___unaligned] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, - [STATE(3205)] = { + [STATE(3177)] = { + [sym_identifier] = ACTIONS(7584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_RPAREN] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7586), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7586), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7586), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7586), + [anon_sym_GT_GT] = ACTIONS(7586), + [anon_sym_SEMI] = ACTIONS(7586), + [anon_sym___extension__] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7584), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_COLON] = ACTIONS(7584), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7586), + [anon_sym___based] = ACTIONS(7584), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_RBRACE] = ACTIONS(7586), + [anon_sym_signed] = ACTIONS(7584), + [anon_sym_unsigned] = ACTIONS(7584), + [anon_sym_long] = ACTIONS(7584), + [anon_sym_short] = ACTIONS(7584), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7584), + [anon_sym_volatile] = ACTIONS(7584), + [anon_sym_restrict] = ACTIONS(7584), + [anon_sym___restrict__] = ACTIONS(7584), + [anon_sym__Atomic] = ACTIONS(7584), + [anon_sym__Noreturn] = ACTIONS(7584), + [anon_sym_noreturn] = ACTIONS(7584), + [anon_sym__Nonnull] = ACTIONS(7584), + [anon_sym_mutable] = ACTIONS(7584), + [anon_sym_constinit] = ACTIONS(7584), + [anon_sym_consteval] = ACTIONS(7584), + [anon_sym_alignas] = ACTIONS(7584), + [anon_sym__Alignas] = ACTIONS(7584), + [sym_primitive_type] = ACTIONS(7584), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7584), + [anon_sym_and] = ACTIONS(7584), + [anon_sym_bitor] = ACTIONS(7584), + [anon_sym_xor] = ACTIONS(7584), + [anon_sym_bitand] = ACTIONS(7584), + [anon_sym_not_eq] = ACTIONS(7584), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7586), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7584), + [anon_sym_override] = ACTIONS(7584), + [anon_sym_requires] = ACTIONS(7584), + [anon_sym_COLON_RBRACK] = ACTIONS(7586), + }, + [STATE(3178)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), + [anon_sym_COMMA] = ACTIONS(7777), + [anon_sym_LPAREN2] = ACTIONS(7777), + [anon_sym_DASH] = ACTIONS(7775), + [anon_sym_PLUS] = ACTIONS(7775), + [anon_sym_STAR] = ACTIONS(7775), + [anon_sym_SLASH] = ACTIONS(7775), + [anon_sym_PERCENT] = ACTIONS(7775), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_CARET] = ACTIONS(7775), + [anon_sym_AMP] = ACTIONS(7775), + [anon_sym_EQ_EQ] = ACTIONS(7777), + [anon_sym_BANG_EQ] = ACTIONS(7777), + [anon_sym_GT] = ACTIONS(7775), + [anon_sym_GT_EQ] = ACTIONS(7775), + [anon_sym_LT_EQ] = ACTIONS(7775), + [anon_sym_LT] = ACTIONS(7775), + [anon_sym_LT_LT] = ACTIONS(7775), + [anon_sym_GT_GT] = ACTIONS(7775), + [anon_sym___extension__] = ACTIONS(7777), + [anon_sym_LBRACE] = ACTIONS(7777), + [anon_sym_LBRACK] = ACTIONS(7777), + [anon_sym_EQ] = ACTIONS(7775), + [anon_sym_const] = ACTIONS(7775), + [anon_sym_constexpr] = ACTIONS(7777), + [anon_sym_volatile] = ACTIONS(7777), + [anon_sym_restrict] = ACTIONS(7777), + [anon_sym___restrict__] = ACTIONS(7777), + [anon_sym__Atomic] = ACTIONS(7777), + [anon_sym__Noreturn] = ACTIONS(7777), + [anon_sym_noreturn] = ACTIONS(7777), + [anon_sym__Nonnull] = ACTIONS(7777), + [anon_sym_mutable] = ACTIONS(7777), + [anon_sym_constinit] = ACTIONS(7777), + [anon_sym_consteval] = ACTIONS(7777), + [anon_sym_alignas] = ACTIONS(7777), + [anon_sym__Alignas] = ACTIONS(7777), + [anon_sym_QMARK] = ACTIONS(7777), + [anon_sym_STAR_EQ] = ACTIONS(7777), + [anon_sym_SLASH_EQ] = ACTIONS(7777), + [anon_sym_PERCENT_EQ] = ACTIONS(7777), + [anon_sym_PLUS_EQ] = ACTIONS(7777), + [anon_sym_DASH_EQ] = ACTIONS(7777), + [anon_sym_LT_LT_EQ] = ACTIONS(7777), + [anon_sym_GT_GT_EQ] = ACTIONS(7775), + [anon_sym_AMP_EQ] = ACTIONS(7777), + [anon_sym_CARET_EQ] = ACTIONS(7777), + [anon_sym_PIPE_EQ] = ACTIONS(7777), + [anon_sym_and_eq] = ACTIONS(7777), + [anon_sym_or_eq] = ACTIONS(7777), + [anon_sym_xor_eq] = ACTIONS(7777), + [anon_sym_LT_EQ_GT] = ACTIONS(7777), + [anon_sym_or] = ACTIONS(7775), + [anon_sym_and] = ACTIONS(7775), + [anon_sym_bitor] = ACTIONS(7777), + [anon_sym_xor] = ACTIONS(7775), + [anon_sym_bitand] = ACTIONS(7777), + [anon_sym_not_eq] = ACTIONS(7777), + [anon_sym_DASH_DASH] = ACTIONS(7777), + [anon_sym_PLUS_PLUS] = ACTIONS(7777), + [anon_sym_DOT] = ACTIONS(7775), + [anon_sym_DOT_STAR] = ACTIONS(7777), + [anon_sym_DASH_GT] = ACTIONS(7777), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7777), + [anon_sym_override] = ACTIONS(7777), + [anon_sym_GT2] = ACTIONS(7777), + [anon_sym_requires] = ACTIONS(7777), + }, + [STATE(3179)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), [anon_sym_COMMA] = ACTIONS(7781), [anon_sym_LPAREN2] = ACTIONS(7781), @@ -408574,7 +406546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(7781), [anon_sym_BANG_EQ] = ACTIONS(7781), [anon_sym_GT] = ACTIONS(7779), - [anon_sym_GT_EQ] = ACTIONS(7781), + [anon_sym_GT_EQ] = ACTIONS(7779), [anon_sym_LT_EQ] = ACTIONS(7779), [anon_sym_LT] = ACTIONS(7779), [anon_sym_LT_LT] = ACTIONS(7779), @@ -408582,7 +406554,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(7781), [anon_sym_LBRACE] = ACTIONS(7781), [anon_sym_LBRACK] = ACTIONS(7781), - [anon_sym_RBRACK] = ACTIONS(7781), [anon_sym_EQ] = ACTIONS(7779), [anon_sym_const] = ACTIONS(7779), [anon_sym_constexpr] = ACTIONS(7781), @@ -408605,7 +406576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_EQ] = ACTIONS(7781), [anon_sym_DASH_EQ] = ACTIONS(7781), [anon_sym_LT_LT_EQ] = ACTIONS(7781), - [anon_sym_GT_GT_EQ] = ACTIONS(7781), + [anon_sym_GT_GT_EQ] = ACTIONS(7779), [anon_sym_AMP_EQ] = ACTIONS(7781), [anon_sym_CARET_EQ] = ACTIONS(7781), [anon_sym_PIPE_EQ] = ACTIONS(7781), @@ -408627,1809 +406598,4618 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7781), [anon_sym_override] = ACTIONS(7781), + [anon_sym_GT2] = ACTIONS(7781), [anon_sym_requires] = ACTIONS(7781), }, - [STATE(3206)] = { - [sym_identifier] = ACTIONS(3155), - [aux_sym_preproc_def_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token1] = ACTIONS(3155), - [aux_sym_preproc_if_token2] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3155), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3155), - [sym_preproc_directive] = ACTIONS(3155), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___extension__] = ACTIONS(3155), - [anon_sym_typedef] = ACTIONS(3155), - [anon_sym_virtual] = ACTIONS(3155), - [anon_sym_extern] = ACTIONS(3155), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym___attribute] = ACTIONS(3155), - [anon_sym_using] = ACTIONS(3155), - [anon_sym_COLON_COLON] = ACTIONS(3153), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3153), - [anon_sym___declspec] = ACTIONS(3155), - [anon_sym___based] = ACTIONS(3155), - [anon_sym_signed] = ACTIONS(3155), - [anon_sym_unsigned] = ACTIONS(3155), - [anon_sym_long] = ACTIONS(3155), - [anon_sym_short] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_static] = ACTIONS(3155), - [anon_sym_register] = ACTIONS(3155), - [anon_sym_inline] = ACTIONS(3155), - [anon_sym___inline] = ACTIONS(3155), - [anon_sym___inline__] = ACTIONS(3155), - [anon_sym___forceinline] = ACTIONS(3155), - [anon_sym_thread_local] = ACTIONS(3155), - [anon_sym___thread] = ACTIONS(3155), - [anon_sym_const] = ACTIONS(3155), - [anon_sym_constexpr] = ACTIONS(3155), - [anon_sym_volatile] = ACTIONS(3155), - [anon_sym_restrict] = ACTIONS(3155), - [anon_sym___restrict__] = ACTIONS(3155), - [anon_sym__Atomic] = ACTIONS(3155), - [anon_sym__Noreturn] = ACTIONS(3155), - [anon_sym_noreturn] = ACTIONS(3155), - [anon_sym__Nonnull] = ACTIONS(3155), - [anon_sym_mutable] = ACTIONS(3155), - [anon_sym_constinit] = ACTIONS(3155), - [anon_sym_consteval] = ACTIONS(3155), - [anon_sym_alignas] = ACTIONS(3155), - [anon_sym__Alignas] = ACTIONS(3155), - [sym_primitive_type] = ACTIONS(3155), - [anon_sym_enum] = ACTIONS(3155), - [anon_sym_class] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3155), - [anon_sym_union] = ACTIONS(3155), - [anon_sym_typename] = ACTIONS(3155), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3155), - [anon_sym_decltype] = ACTIONS(3155), - [anon_sym_explicit] = ACTIONS(3155), - [anon_sym_private] = ACTIONS(3155), - [anon_sym_template] = ACTIONS(3155), - [anon_sym_operator] = ACTIONS(3155), - [anon_sym_friend] = ACTIONS(3155), - [anon_sym_public] = ACTIONS(3155), - [anon_sym_protected] = ACTIONS(3155), - [anon_sym_static_assert] = ACTIONS(3155), - [anon_sym_catch] = ACTIONS(3155), - [anon_sym_LBRACK_COLON] = ACTIONS(3153), - }, - [STATE(3207)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), - [anon_sym_COMMA] = ACTIONS(7665), - [anon_sym_LPAREN2] = ACTIONS(7665), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_STAR] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7663), - [anon_sym_PERCENT] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7665), - [anon_sym_AMP_AMP] = ACTIONS(7665), - [anon_sym_PIPE] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7663), - [anon_sym_AMP] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7665), - [anon_sym_BANG_EQ] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7663), - [anon_sym_GT_EQ] = ACTIONS(7665), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_LT] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7663), - [anon_sym_GT_GT] = ACTIONS(7663), - [anon_sym___extension__] = ACTIONS(7665), - [anon_sym_LBRACE] = ACTIONS(7665), - [anon_sym_LBRACK] = ACTIONS(7665), - [anon_sym_RBRACK] = ACTIONS(7665), - [anon_sym_EQ] = ACTIONS(7663), - [anon_sym_const] = ACTIONS(7663), - [anon_sym_constexpr] = ACTIONS(7665), - [anon_sym_volatile] = ACTIONS(7665), - [anon_sym_restrict] = ACTIONS(7665), - [anon_sym___restrict__] = ACTIONS(7665), - [anon_sym__Atomic] = ACTIONS(7665), - [anon_sym__Noreturn] = ACTIONS(7665), - [anon_sym_noreturn] = ACTIONS(7665), - [anon_sym__Nonnull] = ACTIONS(7665), - [anon_sym_mutable] = ACTIONS(7665), - [anon_sym_constinit] = ACTIONS(7665), - [anon_sym_consteval] = ACTIONS(7665), - [anon_sym_alignas] = ACTIONS(7665), - [anon_sym__Alignas] = ACTIONS(7665), - [anon_sym_QMARK] = ACTIONS(7665), - [anon_sym_STAR_EQ] = ACTIONS(7665), - [anon_sym_SLASH_EQ] = ACTIONS(7665), - [anon_sym_PERCENT_EQ] = ACTIONS(7665), - [anon_sym_PLUS_EQ] = ACTIONS(7665), - [anon_sym_DASH_EQ] = ACTIONS(7665), - [anon_sym_LT_LT_EQ] = ACTIONS(7665), - [anon_sym_GT_GT_EQ] = ACTIONS(7665), - [anon_sym_AMP_EQ] = ACTIONS(7665), - [anon_sym_CARET_EQ] = ACTIONS(7665), - [anon_sym_PIPE_EQ] = ACTIONS(7665), - [anon_sym_and_eq] = ACTIONS(7665), - [anon_sym_or_eq] = ACTIONS(7665), - [anon_sym_xor_eq] = ACTIONS(7665), - [anon_sym_LT_EQ_GT] = ACTIONS(7665), - [anon_sym_or] = ACTIONS(7663), - [anon_sym_and] = ACTIONS(7663), - [anon_sym_bitor] = ACTIONS(7665), - [anon_sym_xor] = ACTIONS(7663), - [anon_sym_bitand] = ACTIONS(7665), - [anon_sym_not_eq] = ACTIONS(7665), - [anon_sym_DASH_DASH] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7665), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym_DOT_STAR] = ACTIONS(7665), - [anon_sym_DASH_GT] = ACTIONS(7665), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7665), - [anon_sym_override] = ACTIONS(7665), - [anon_sym_requires] = ACTIONS(7665), - }, - [STATE(3208)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), - [anon_sym_COMMA] = ACTIONS(7629), - [anon_sym_LPAREN2] = ACTIONS(7629), - [anon_sym_DASH] = ACTIONS(7627), - [anon_sym_PLUS] = ACTIONS(7627), - [anon_sym_STAR] = ACTIONS(7627), - [anon_sym_SLASH] = ACTIONS(7627), - [anon_sym_PERCENT] = ACTIONS(7627), - [anon_sym_PIPE_PIPE] = ACTIONS(7629), - [anon_sym_AMP_AMP] = ACTIONS(7629), - [anon_sym_PIPE] = ACTIONS(7627), - [anon_sym_CARET] = ACTIONS(7627), - [anon_sym_AMP] = ACTIONS(7627), - [anon_sym_EQ_EQ] = ACTIONS(7629), - [anon_sym_BANG_EQ] = ACTIONS(7629), - [anon_sym_GT] = ACTIONS(7627), - [anon_sym_GT_EQ] = ACTIONS(7627), - [anon_sym_LT_EQ] = ACTIONS(7627), - [anon_sym_LT] = ACTIONS(7627), - [anon_sym_LT_LT] = ACTIONS(7627), - [anon_sym_GT_GT] = ACTIONS(7627), - [anon_sym___extension__] = ACTIONS(7629), - [anon_sym_LBRACE] = ACTIONS(7629), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7627), - [anon_sym_const] = ACTIONS(7627), - [anon_sym_constexpr] = ACTIONS(7629), - [anon_sym_volatile] = ACTIONS(7629), - [anon_sym_restrict] = ACTIONS(7629), - [anon_sym___restrict__] = ACTIONS(7629), - [anon_sym__Atomic] = ACTIONS(7629), - [anon_sym__Noreturn] = ACTIONS(7629), - [anon_sym_noreturn] = ACTIONS(7629), - [anon_sym__Nonnull] = ACTIONS(7629), - [anon_sym_mutable] = ACTIONS(7629), - [anon_sym_constinit] = ACTIONS(7629), - [anon_sym_consteval] = ACTIONS(7629), - [anon_sym_alignas] = ACTIONS(7629), - [anon_sym__Alignas] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7629), - [anon_sym_STAR_EQ] = ACTIONS(7629), - [anon_sym_SLASH_EQ] = ACTIONS(7629), - [anon_sym_PERCENT_EQ] = ACTIONS(7629), - [anon_sym_PLUS_EQ] = ACTIONS(7629), - [anon_sym_DASH_EQ] = ACTIONS(7629), - [anon_sym_LT_LT_EQ] = ACTIONS(7629), - [anon_sym_GT_GT_EQ] = ACTIONS(7627), - [anon_sym_AMP_EQ] = ACTIONS(7629), - [anon_sym_CARET_EQ] = ACTIONS(7629), - [anon_sym_PIPE_EQ] = ACTIONS(7629), - [anon_sym_and_eq] = ACTIONS(7629), - [anon_sym_or_eq] = ACTIONS(7629), - [anon_sym_xor_eq] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7629), - [anon_sym_or] = ACTIONS(7627), - [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7629), - [anon_sym_PLUS_PLUS] = ACTIONS(7629), - [anon_sym_DOT] = ACTIONS(7627), - [anon_sym_DOT_STAR] = ACTIONS(7629), - [anon_sym_DASH_GT] = ACTIONS(7629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7629), - [anon_sym_override] = ACTIONS(7629), - [anon_sym_GT2] = ACTIONS(7629), - [anon_sym_requires] = ACTIONS(7629), - }, - [STATE(3209)] = { - [sym_template_argument_list] = STATE(3376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), - [anon_sym_RPAREN] = ACTIONS(6569), - [anon_sym_LPAREN2] = ACTIONS(6569), - [anon_sym_DASH] = ACTIONS(6574), - [anon_sym_PLUS] = ACTIONS(6574), - [anon_sym_STAR] = ACTIONS(6576), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6574), - [anon_sym_PIPE_PIPE] = ACTIONS(6567), - [anon_sym_AMP_AMP] = ACTIONS(6569), - [anon_sym_PIPE] = ACTIONS(6574), - [anon_sym_CARET] = ACTIONS(6574), - [anon_sym_AMP] = ACTIONS(6576), - [anon_sym_EQ_EQ] = ACTIONS(6567), - [anon_sym_BANG_EQ] = ACTIONS(6567), - [anon_sym_GT] = ACTIONS(6574), - [anon_sym_GT_EQ] = ACTIONS(6567), - [anon_sym_LT_EQ] = ACTIONS(6574), - [anon_sym_LT] = ACTIONS(9092), - [anon_sym_LT_LT] = ACTIONS(6574), - [anon_sym_GT_GT] = ACTIONS(6574), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6569), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6567), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6567), - [anon_sym_or_eq] = ACTIONS(6567), - [anon_sym_xor_eq] = ACTIONS(6567), - [anon_sym_LT_EQ_GT] = ACTIONS(6567), - [anon_sym_or] = ACTIONS(6574), - [anon_sym_and] = ACTIONS(6574), - [anon_sym_bitor] = ACTIONS(6567), - [anon_sym_xor] = ACTIONS(6574), - [anon_sym_bitand] = ACTIONS(6567), - [anon_sym_not_eq] = ACTIONS(6567), - [anon_sym_DASH_DASH] = ACTIONS(6567), - [anon_sym_PLUS_PLUS] = ACTIONS(6567), - [anon_sym_DOT] = ACTIONS(6574), - [anon_sym_DOT_STAR] = ACTIONS(6567), - [anon_sym_DASH_GT] = ACTIONS(6567), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), + [STATE(3180)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), + [anon_sym_COMMA] = ACTIONS(7745), + [anon_sym_RPAREN] = ACTIONS(7745), + [anon_sym_LPAREN2] = ACTIONS(7745), + [anon_sym_DASH] = ACTIONS(7743), + [anon_sym_PLUS] = ACTIONS(7743), + [anon_sym_STAR] = ACTIONS(7743), + [anon_sym_SLASH] = ACTIONS(7743), + [anon_sym_PERCENT] = ACTIONS(7743), + [anon_sym_PIPE_PIPE] = ACTIONS(7745), + [anon_sym_AMP_AMP] = ACTIONS(7745), + [anon_sym_PIPE] = ACTIONS(7743), + [anon_sym_CARET] = ACTIONS(7743), + [anon_sym_AMP] = ACTIONS(7743), + [anon_sym_EQ_EQ] = ACTIONS(7745), + [anon_sym_BANG_EQ] = ACTIONS(7745), + [anon_sym_GT] = ACTIONS(7743), + [anon_sym_GT_EQ] = ACTIONS(7745), + [anon_sym_LT_EQ] = ACTIONS(7743), + [anon_sym_LT] = ACTIONS(7743), + [anon_sym_LT_LT] = ACTIONS(7743), + [anon_sym_GT_GT] = ACTIONS(7743), + [anon_sym___extension__] = ACTIONS(7745), + [anon_sym___attribute__] = ACTIONS(7745), + [anon_sym___attribute] = ACTIONS(7743), + [anon_sym_LBRACE] = ACTIONS(7745), + [anon_sym_LBRACK] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(7743), + [anon_sym_const] = ACTIONS(7743), + [anon_sym_constexpr] = ACTIONS(7745), + [anon_sym_volatile] = ACTIONS(7745), + [anon_sym_restrict] = ACTIONS(7745), + [anon_sym___restrict__] = ACTIONS(7745), + [anon_sym__Atomic] = ACTIONS(7745), + [anon_sym__Noreturn] = ACTIONS(7745), + [anon_sym_noreturn] = ACTIONS(7745), + [anon_sym__Nonnull] = ACTIONS(7745), + [anon_sym_mutable] = ACTIONS(7745), + [anon_sym_constinit] = ACTIONS(7745), + [anon_sym_consteval] = ACTIONS(7745), + [anon_sym_alignas] = ACTIONS(7745), + [anon_sym__Alignas] = ACTIONS(7745), + [anon_sym_QMARK] = ACTIONS(7745), + [anon_sym_STAR_EQ] = ACTIONS(7745), + [anon_sym_SLASH_EQ] = ACTIONS(7745), + [anon_sym_PERCENT_EQ] = ACTIONS(7745), + [anon_sym_PLUS_EQ] = ACTIONS(7745), + [anon_sym_DASH_EQ] = ACTIONS(7745), + [anon_sym_LT_LT_EQ] = ACTIONS(7745), + [anon_sym_GT_GT_EQ] = ACTIONS(7745), + [anon_sym_AMP_EQ] = ACTIONS(7745), + [anon_sym_CARET_EQ] = ACTIONS(7745), + [anon_sym_PIPE_EQ] = ACTIONS(7745), + [anon_sym_LT_EQ_GT] = ACTIONS(7745), + [anon_sym_or] = ACTIONS(7745), + [anon_sym_and] = ACTIONS(7745), + [anon_sym_bitor] = ACTIONS(7745), + [anon_sym_xor] = ACTIONS(7745), + [anon_sym_bitand] = ACTIONS(7745), + [anon_sym_not_eq] = ACTIONS(7745), + [anon_sym_DASH_DASH] = ACTIONS(7745), + [anon_sym_PLUS_PLUS] = ACTIONS(7745), + [anon_sym_DOT] = ACTIONS(7743), + [anon_sym_DOT_STAR] = ACTIONS(7745), + [anon_sym_DASH_GT] = ACTIONS(7743), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7745), + [anon_sym_override] = ACTIONS(7745), + [anon_sym_requires] = ACTIONS(7745), + [anon_sym_DASH_GT_STAR] = ACTIONS(7745), }, - [STATE(3210)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym___extension__] = ACTIONS(7160), - [anon_sym_LBRACE] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7160), - [anon_sym_RBRACK] = ACTIONS(7160), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7160), - [anon_sym_volatile] = ACTIONS(7160), - [anon_sym_restrict] = ACTIONS(7160), - [anon_sym___restrict__] = ACTIONS(7160), - [anon_sym__Atomic] = ACTIONS(7160), - [anon_sym__Noreturn] = ACTIONS(7160), - [anon_sym_noreturn] = ACTIONS(7160), - [anon_sym__Nonnull] = ACTIONS(7160), - [anon_sym_mutable] = ACTIONS(7160), - [anon_sym_constinit] = ACTIONS(7160), - [anon_sym_consteval] = ACTIONS(7160), - [anon_sym_alignas] = ACTIONS(7160), - [anon_sym__Alignas] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_and_eq] = ACTIONS(7160), - [anon_sym_or_eq] = ACTIONS(7160), - [anon_sym_xor_eq] = ACTIONS(7160), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7158), - [anon_sym_and] = ACTIONS(7158), - [anon_sym_bitor] = ACTIONS(7160), - [anon_sym_xor] = ACTIONS(7158), - [anon_sym_bitand] = ACTIONS(7160), - [anon_sym_not_eq] = ACTIONS(7160), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7160), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7160), - [anon_sym_override] = ACTIONS(7160), - [anon_sym_requires] = ACTIONS(7160), + [STATE(3181)] = { + [sym_identifier] = ACTIONS(7711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7713), + [anon_sym_COMMA] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7713), + [anon_sym_LPAREN2] = ACTIONS(7713), + [anon_sym_DASH] = ACTIONS(7711), + [anon_sym_PLUS] = ACTIONS(7711), + [anon_sym_STAR] = ACTIONS(7713), + [anon_sym_SLASH] = ACTIONS(7711), + [anon_sym_PERCENT] = ACTIONS(7713), + [anon_sym_PIPE_PIPE] = ACTIONS(7713), + [anon_sym_AMP_AMP] = ACTIONS(7713), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_CARET] = ACTIONS(7713), + [anon_sym_AMP] = ACTIONS(7711), + [anon_sym_EQ_EQ] = ACTIONS(7713), + [anon_sym_BANG_EQ] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_EQ] = ACTIONS(7713), + [anon_sym_LT_EQ] = ACTIONS(7711), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_LT_LT] = ACTIONS(7713), + [anon_sym_GT_GT] = ACTIONS(7713), + [anon_sym_SEMI] = ACTIONS(7713), + [anon_sym___extension__] = ACTIONS(7711), + [anon_sym___attribute__] = ACTIONS(7711), + [anon_sym___attribute] = ACTIONS(7711), + [anon_sym_COLON] = ACTIONS(7711), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7713), + [anon_sym___based] = ACTIONS(7711), + [anon_sym_LBRACE] = ACTIONS(7713), + [anon_sym_RBRACE] = ACTIONS(7713), + [anon_sym_signed] = ACTIONS(7711), + [anon_sym_unsigned] = ACTIONS(7711), + [anon_sym_long] = ACTIONS(7711), + [anon_sym_short] = ACTIONS(7711), + [anon_sym_LBRACK] = ACTIONS(7713), + [anon_sym_const] = ACTIONS(7711), + [anon_sym_constexpr] = ACTIONS(7711), + [anon_sym_volatile] = ACTIONS(7711), + [anon_sym_restrict] = ACTIONS(7711), + [anon_sym___restrict__] = ACTIONS(7711), + [anon_sym__Atomic] = ACTIONS(7711), + [anon_sym__Noreturn] = ACTIONS(7711), + [anon_sym_noreturn] = ACTIONS(7711), + [anon_sym__Nonnull] = ACTIONS(7711), + [anon_sym_mutable] = ACTIONS(7711), + [anon_sym_constinit] = ACTIONS(7711), + [anon_sym_consteval] = ACTIONS(7711), + [anon_sym_alignas] = ACTIONS(7711), + [anon_sym__Alignas] = ACTIONS(7711), + [sym_primitive_type] = ACTIONS(7711), + [anon_sym_QMARK] = ACTIONS(7713), + [anon_sym_LT_EQ_GT] = ACTIONS(7713), + [anon_sym_or] = ACTIONS(7711), + [anon_sym_and] = ACTIONS(7711), + [anon_sym_bitor] = ACTIONS(7711), + [anon_sym_xor] = ACTIONS(7711), + [anon_sym_bitand] = ACTIONS(7711), + [anon_sym_not_eq] = ACTIONS(7711), + [anon_sym_DASH_DASH] = ACTIONS(7713), + [anon_sym_PLUS_PLUS] = ACTIONS(7713), + [anon_sym_DOT] = ACTIONS(7711), + [anon_sym_DOT_STAR] = ACTIONS(7713), + [anon_sym_DASH_GT] = ACTIONS(7713), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7711), + [anon_sym_override] = ACTIONS(7711), + [anon_sym_requires] = ACTIONS(7711), + [anon_sym_COLON_RBRACK] = ACTIONS(7713), }, - [STATE(3211)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_RPAREN] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), + [STATE(3182)] = { + [sym_identifier] = ACTIONS(7715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7717), + [anon_sym_COMMA] = ACTIONS(7717), + [anon_sym_RPAREN] = ACTIONS(7717), + [anon_sym_LPAREN2] = ACTIONS(7717), + [anon_sym_DASH] = ACTIONS(7715), + [anon_sym_PLUS] = ACTIONS(7715), [anon_sym_STAR] = ACTIONS(7717), - [anon_sym_SLASH] = ACTIONS(7717), + [anon_sym_SLASH] = ACTIONS(7715), [anon_sym_PERCENT] = ACTIONS(7717), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), + [anon_sym_PIPE_PIPE] = ACTIONS(7717), + [anon_sym_AMP_AMP] = ACTIONS(7717), + [anon_sym_PIPE] = ACTIONS(7715), [anon_sym_CARET] = ACTIONS(7717), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), + [anon_sym_AMP] = ACTIONS(7715), + [anon_sym_EQ_EQ] = ACTIONS(7717), + [anon_sym_BANG_EQ] = ACTIONS(7717), + [anon_sym_GT] = ACTIONS(7715), + [anon_sym_GT_EQ] = ACTIONS(7717), + [anon_sym_LT_EQ] = ACTIONS(7715), + [anon_sym_LT] = ACTIONS(7715), [anon_sym_LT_LT] = ACTIONS(7717), [anon_sym_GT_GT] = ACTIONS(7717), - [anon_sym___extension__] = ACTIONS(7719), - [anon_sym___attribute__] = ACTIONS(7719), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_EQ] = ACTIONS(7717), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7719), - [anon_sym_volatile] = ACTIONS(7719), - [anon_sym_restrict] = ACTIONS(7719), - [anon_sym___restrict__] = ACTIONS(7719), - [anon_sym__Atomic] = ACTIONS(7719), - [anon_sym__Noreturn] = ACTIONS(7719), - [anon_sym_noreturn] = ACTIONS(7719), - [anon_sym__Nonnull] = ACTIONS(7719), - [anon_sym_mutable] = ACTIONS(7719), - [anon_sym_constinit] = ACTIONS(7719), - [anon_sym_consteval] = ACTIONS(7719), - [anon_sym_alignas] = ACTIONS(7719), - [anon_sym__Alignas] = ACTIONS(7719), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_STAR_EQ] = ACTIONS(7719), - [anon_sym_SLASH_EQ] = ACTIONS(7719), - [anon_sym_PERCENT_EQ] = ACTIONS(7719), - [anon_sym_PLUS_EQ] = ACTIONS(7719), - [anon_sym_DASH_EQ] = ACTIONS(7719), - [anon_sym_LT_LT_EQ] = ACTIONS(7719), - [anon_sym_GT_GT_EQ] = ACTIONS(7719), - [anon_sym_AMP_EQ] = ACTIONS(7719), - [anon_sym_CARET_EQ] = ACTIONS(7719), - [anon_sym_PIPE_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7719), - [anon_sym_and] = ACTIONS(7719), - [anon_sym_bitor] = ACTIONS(7719), - [anon_sym_xor] = ACTIONS(7719), - [anon_sym_bitand] = ACTIONS(7719), - [anon_sym_not_eq] = ACTIONS(7719), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), + [anon_sym_SEMI] = ACTIONS(7717), + [anon_sym___extension__] = ACTIONS(7715), + [anon_sym___attribute__] = ACTIONS(7715), + [anon_sym___attribute] = ACTIONS(7715), + [anon_sym_COLON] = ACTIONS(7715), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7717), + [anon_sym___based] = ACTIONS(7715), + [anon_sym_LBRACE] = ACTIONS(7717), + [anon_sym_RBRACE] = ACTIONS(7717), + [anon_sym_signed] = ACTIONS(7715), + [anon_sym_unsigned] = ACTIONS(7715), + [anon_sym_long] = ACTIONS(7715), + [anon_sym_short] = ACTIONS(7715), + [anon_sym_LBRACK] = ACTIONS(7717), + [anon_sym_const] = ACTIONS(7715), + [anon_sym_constexpr] = ACTIONS(7715), + [anon_sym_volatile] = ACTIONS(7715), + [anon_sym_restrict] = ACTIONS(7715), + [anon_sym___restrict__] = ACTIONS(7715), + [anon_sym__Atomic] = ACTIONS(7715), + [anon_sym__Noreturn] = ACTIONS(7715), + [anon_sym_noreturn] = ACTIONS(7715), + [anon_sym__Nonnull] = ACTIONS(7715), + [anon_sym_mutable] = ACTIONS(7715), + [anon_sym_constinit] = ACTIONS(7715), + [anon_sym_consteval] = ACTIONS(7715), + [anon_sym_alignas] = ACTIONS(7715), + [anon_sym__Alignas] = ACTIONS(7715), + [sym_primitive_type] = ACTIONS(7715), + [anon_sym_QMARK] = ACTIONS(7717), + [anon_sym_LT_EQ_GT] = ACTIONS(7717), + [anon_sym_or] = ACTIONS(7715), + [anon_sym_and] = ACTIONS(7715), + [anon_sym_bitor] = ACTIONS(7715), + [anon_sym_xor] = ACTIONS(7715), + [anon_sym_bitand] = ACTIONS(7715), + [anon_sym_not_eq] = ACTIONS(7715), + [anon_sym_DASH_DASH] = ACTIONS(7717), + [anon_sym_PLUS_PLUS] = ACTIONS(7717), + [anon_sym_DOT] = ACTIONS(7715), + [anon_sym_DOT_STAR] = ACTIONS(7717), [anon_sym_DASH_GT] = ACTIONS(7717), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7719), - [anon_sym_override] = ACTIONS(7719), - [anon_sym_requires] = ACTIONS(7719), - [anon_sym_DASH_GT_STAR] = ACTIONS(7719), + [anon_sym_final] = ACTIONS(7715), + [anon_sym_override] = ACTIONS(7715), + [anon_sym_requires] = ACTIONS(7715), + [anon_sym_COLON_RBRACK] = ACTIONS(7717), }, - [STATE(3212)] = { - [sym_identifier] = ACTIONS(7771), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), - [anon_sym_COMMA] = ACTIONS(7773), - [anon_sym_RPAREN] = ACTIONS(7773), - [anon_sym_LPAREN2] = ACTIONS(7773), - [anon_sym_DASH] = ACTIONS(7771), - [anon_sym_PLUS] = ACTIONS(7771), - [anon_sym_STAR] = ACTIONS(7773), - [anon_sym_SLASH] = ACTIONS(7771), - [anon_sym_PERCENT] = ACTIONS(7773), - [anon_sym_PIPE_PIPE] = ACTIONS(7773), - [anon_sym_AMP_AMP] = ACTIONS(7773), - [anon_sym_PIPE] = ACTIONS(7771), - [anon_sym_CARET] = ACTIONS(7773), - [anon_sym_AMP] = ACTIONS(7771), - [anon_sym_EQ_EQ] = ACTIONS(7773), - [anon_sym_BANG_EQ] = ACTIONS(7773), - [anon_sym_GT] = ACTIONS(7771), - [anon_sym_GT_EQ] = ACTIONS(7773), - [anon_sym_LT_EQ] = ACTIONS(7771), - [anon_sym_LT] = ACTIONS(7771), - [anon_sym_LT_LT] = ACTIONS(7773), - [anon_sym_GT_GT] = ACTIONS(7773), - [anon_sym_SEMI] = ACTIONS(7773), - [anon_sym___extension__] = ACTIONS(7771), - [anon_sym___attribute__] = ACTIONS(7771), - [anon_sym___attribute] = ACTIONS(7771), - [anon_sym_COLON] = ACTIONS(7771), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7773), - [anon_sym___based] = ACTIONS(7771), - [anon_sym_LBRACE] = ACTIONS(7773), - [anon_sym_RBRACE] = ACTIONS(7773), - [anon_sym_signed] = ACTIONS(7771), - [anon_sym_unsigned] = ACTIONS(7771), - [anon_sym_long] = ACTIONS(7771), - [anon_sym_short] = ACTIONS(7771), - [anon_sym_LBRACK] = ACTIONS(7773), - [anon_sym_const] = ACTIONS(7771), - [anon_sym_constexpr] = ACTIONS(7771), - [anon_sym_volatile] = ACTIONS(7771), - [anon_sym_restrict] = ACTIONS(7771), - [anon_sym___restrict__] = ACTIONS(7771), - [anon_sym__Atomic] = ACTIONS(7771), - [anon_sym__Noreturn] = ACTIONS(7771), - [anon_sym_noreturn] = ACTIONS(7771), - [anon_sym__Nonnull] = ACTIONS(7771), - [anon_sym_mutable] = ACTIONS(7771), - [anon_sym_constinit] = ACTIONS(7771), - [anon_sym_consteval] = ACTIONS(7771), - [anon_sym_alignas] = ACTIONS(7771), - [anon_sym__Alignas] = ACTIONS(7771), - [sym_primitive_type] = ACTIONS(7771), - [anon_sym_QMARK] = ACTIONS(7773), - [anon_sym_LT_EQ_GT] = ACTIONS(7773), - [anon_sym_or] = ACTIONS(7771), - [anon_sym_and] = ACTIONS(7771), - [anon_sym_bitor] = ACTIONS(7771), - [anon_sym_xor] = ACTIONS(7771), - [anon_sym_bitand] = ACTIONS(7771), - [anon_sym_not_eq] = ACTIONS(7771), - [anon_sym_DASH_DASH] = ACTIONS(7773), - [anon_sym_PLUS_PLUS] = ACTIONS(7773), - [anon_sym_DOT] = ACTIONS(7771), - [anon_sym_DOT_STAR] = ACTIONS(7773), - [anon_sym_DASH_GT] = ACTIONS(7773), + [STATE(3183)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7638), + [anon_sym_PLUS] = ACTIONS(7638), + [anon_sym_STAR] = ACTIONS(7638), + [anon_sym_SLASH] = ACTIONS(7638), + [anon_sym_PERCENT] = ACTIONS(7638), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7638), + [anon_sym_CARET] = ACTIONS(7638), + [anon_sym_AMP] = ACTIONS(7638), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_GT] = ACTIONS(7638), + [anon_sym_GT_EQ] = ACTIONS(7638), + [anon_sym_LT_EQ] = ACTIONS(7638), + [anon_sym_LT] = ACTIONS(7638), + [anon_sym_LT_LT] = ACTIONS(7638), + [anon_sym_GT_GT] = ACTIONS(7638), + [anon_sym___extension__] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(7638), + [anon_sym_const] = ACTIONS(7638), + [anon_sym_constexpr] = ACTIONS(7640), + [anon_sym_volatile] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7640), + [anon_sym___restrict__] = ACTIONS(7640), + [anon_sym__Atomic] = ACTIONS(7640), + [anon_sym__Noreturn] = ACTIONS(7640), + [anon_sym_noreturn] = ACTIONS(7640), + [anon_sym__Nonnull] = ACTIONS(7640), + [anon_sym_mutable] = ACTIONS(7640), + [anon_sym_constinit] = ACTIONS(7640), + [anon_sym_consteval] = ACTIONS(7640), + [anon_sym_alignas] = ACTIONS(7640), + [anon_sym__Alignas] = ACTIONS(7640), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_STAR_EQ] = ACTIONS(7640), + [anon_sym_SLASH_EQ] = ACTIONS(7640), + [anon_sym_PERCENT_EQ] = ACTIONS(7640), + [anon_sym_PLUS_EQ] = ACTIONS(7640), + [anon_sym_DASH_EQ] = ACTIONS(7640), + [anon_sym_LT_LT_EQ] = ACTIONS(7640), + [anon_sym_GT_GT_EQ] = ACTIONS(7638), + [anon_sym_AMP_EQ] = ACTIONS(7640), + [anon_sym_CARET_EQ] = ACTIONS(7640), + [anon_sym_PIPE_EQ] = ACTIONS(7640), + [anon_sym_and_eq] = ACTIONS(7640), + [anon_sym_or_eq] = ACTIONS(7640), + [anon_sym_xor_eq] = ACTIONS(7640), + [anon_sym_LT_EQ_GT] = ACTIONS(7640), + [anon_sym_or] = ACTIONS(7638), + [anon_sym_and] = ACTIONS(7638), + [anon_sym_bitor] = ACTIONS(7640), + [anon_sym_xor] = ACTIONS(7638), + [anon_sym_bitand] = ACTIONS(7640), + [anon_sym_not_eq] = ACTIONS(7640), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7638), + [anon_sym_DOT_STAR] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7640), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7640), + [anon_sym_override] = ACTIONS(7640), + [anon_sym_GT2] = ACTIONS(7640), + [anon_sym_requires] = ACTIONS(7640), + }, + [STATE(3184)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7721), + [anon_sym_COMMA] = ACTIONS(7721), + [anon_sym_RPAREN] = ACTIONS(7721), + [anon_sym_LPAREN2] = ACTIONS(7721), + [anon_sym_DASH] = ACTIONS(7719), + [anon_sym_PLUS] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7719), + [anon_sym_SLASH] = ACTIONS(7719), + [anon_sym_PERCENT] = ACTIONS(7719), + [anon_sym_PIPE_PIPE] = ACTIONS(7721), + [anon_sym_AMP_AMP] = ACTIONS(7721), + [anon_sym_PIPE] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7719), + [anon_sym_AMP] = ACTIONS(7719), + [anon_sym_EQ_EQ] = ACTIONS(7721), + [anon_sym_BANG_EQ] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7719), + [anon_sym_GT_EQ] = ACTIONS(7721), + [anon_sym_LT_EQ] = ACTIONS(7719), + [anon_sym_LT] = ACTIONS(7719), + [anon_sym_LT_LT] = ACTIONS(7719), + [anon_sym_GT_GT] = ACTIONS(7719), + [anon_sym___extension__] = ACTIONS(7721), + [anon_sym___attribute__] = ACTIONS(7721), + [anon_sym___attribute] = ACTIONS(7719), + [anon_sym_LBRACE] = ACTIONS(7721), + [anon_sym_LBRACK] = ACTIONS(7721), + [anon_sym_EQ] = ACTIONS(7719), + [anon_sym_const] = ACTIONS(7719), + [anon_sym_constexpr] = ACTIONS(7721), + [anon_sym_volatile] = ACTIONS(7721), + [anon_sym_restrict] = ACTIONS(7721), + [anon_sym___restrict__] = ACTIONS(7721), + [anon_sym__Atomic] = ACTIONS(7721), + [anon_sym__Noreturn] = ACTIONS(7721), + [anon_sym_noreturn] = ACTIONS(7721), + [anon_sym__Nonnull] = ACTIONS(7721), + [anon_sym_mutable] = ACTIONS(7721), + [anon_sym_constinit] = ACTIONS(7721), + [anon_sym_consteval] = ACTIONS(7721), + [anon_sym_alignas] = ACTIONS(7721), + [anon_sym__Alignas] = ACTIONS(7721), + [anon_sym_QMARK] = ACTIONS(7721), + [anon_sym_STAR_EQ] = ACTIONS(7721), + [anon_sym_SLASH_EQ] = ACTIONS(7721), + [anon_sym_PERCENT_EQ] = ACTIONS(7721), + [anon_sym_PLUS_EQ] = ACTIONS(7721), + [anon_sym_DASH_EQ] = ACTIONS(7721), + [anon_sym_LT_LT_EQ] = ACTIONS(7721), + [anon_sym_GT_GT_EQ] = ACTIONS(7721), + [anon_sym_AMP_EQ] = ACTIONS(7721), + [anon_sym_CARET_EQ] = ACTIONS(7721), + [anon_sym_PIPE_EQ] = ACTIONS(7721), + [anon_sym_LT_EQ_GT] = ACTIONS(7721), + [anon_sym_or] = ACTIONS(7721), + [anon_sym_and] = ACTIONS(7721), + [anon_sym_bitor] = ACTIONS(7721), + [anon_sym_xor] = ACTIONS(7721), + [anon_sym_bitand] = ACTIONS(7721), + [anon_sym_not_eq] = ACTIONS(7721), + [anon_sym_DASH_DASH] = ACTIONS(7721), + [anon_sym_PLUS_PLUS] = ACTIONS(7721), + [anon_sym_DOT] = ACTIONS(7719), + [anon_sym_DOT_STAR] = ACTIONS(7721), + [anon_sym_DASH_GT] = ACTIONS(7719), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7771), - [anon_sym_override] = ACTIONS(7771), - [anon_sym_requires] = ACTIONS(7771), - [anon_sym_COLON_RBRACK] = ACTIONS(7773), + [anon_sym_final] = ACTIONS(7721), + [anon_sym_override] = ACTIONS(7721), + [anon_sym_requires] = ACTIONS(7721), + [anon_sym_DASH_GT_STAR] = ACTIONS(7721), }, - [STATE(3213)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7561), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7561), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7563), - [anon_sym_or_eq] = ACTIONS(7563), - [anon_sym_xor_eq] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_GT2] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), + [STATE(3185)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7648), + [anon_sym_COMMA] = ACTIONS(7648), + [anon_sym_LPAREN2] = ACTIONS(7648), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_STAR] = ACTIONS(7646), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_PERCENT] = ACTIONS(7646), + [anon_sym_PIPE_PIPE] = ACTIONS(7648), + [anon_sym_AMP_AMP] = ACTIONS(7648), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_CARET] = ACTIONS(7646), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_EQ_EQ] = ACTIONS(7648), + [anon_sym_BANG_EQ] = ACTIONS(7648), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7646), + [anon_sym_LT_EQ] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_LT_LT] = ACTIONS(7646), + [anon_sym_GT_GT] = ACTIONS(7646), + [anon_sym___extension__] = ACTIONS(7648), + [anon_sym_LBRACE] = ACTIONS(7648), + [anon_sym_LBRACK] = ACTIONS(7648), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_const] = ACTIONS(7646), + [anon_sym_constexpr] = ACTIONS(7648), + [anon_sym_volatile] = ACTIONS(7648), + [anon_sym_restrict] = ACTIONS(7648), + [anon_sym___restrict__] = ACTIONS(7648), + [anon_sym__Atomic] = ACTIONS(7648), + [anon_sym__Noreturn] = ACTIONS(7648), + [anon_sym_noreturn] = ACTIONS(7648), + [anon_sym__Nonnull] = ACTIONS(7648), + [anon_sym_mutable] = ACTIONS(7648), + [anon_sym_constinit] = ACTIONS(7648), + [anon_sym_consteval] = ACTIONS(7648), + [anon_sym_alignas] = ACTIONS(7648), + [anon_sym__Alignas] = ACTIONS(7648), + [anon_sym_QMARK] = ACTIONS(7648), + [anon_sym_STAR_EQ] = ACTIONS(7648), + [anon_sym_SLASH_EQ] = ACTIONS(7648), + [anon_sym_PERCENT_EQ] = ACTIONS(7648), + [anon_sym_PLUS_EQ] = ACTIONS(7648), + [anon_sym_DASH_EQ] = ACTIONS(7648), + [anon_sym_LT_LT_EQ] = ACTIONS(7648), + [anon_sym_GT_GT_EQ] = ACTIONS(7646), + [anon_sym_AMP_EQ] = ACTIONS(7648), + [anon_sym_CARET_EQ] = ACTIONS(7648), + [anon_sym_PIPE_EQ] = ACTIONS(7648), + [anon_sym_and_eq] = ACTIONS(7648), + [anon_sym_or_eq] = ACTIONS(7648), + [anon_sym_xor_eq] = ACTIONS(7648), + [anon_sym_LT_EQ_GT] = ACTIONS(7648), + [anon_sym_or] = ACTIONS(7646), + [anon_sym_and] = ACTIONS(7646), + [anon_sym_bitor] = ACTIONS(7648), + [anon_sym_xor] = ACTIONS(7646), + [anon_sym_bitand] = ACTIONS(7648), + [anon_sym_not_eq] = ACTIONS(7648), + [anon_sym_DASH_DASH] = ACTIONS(7648), + [anon_sym_PLUS_PLUS] = ACTIONS(7648), + [anon_sym_DOT] = ACTIONS(7646), + [anon_sym_DOT_STAR] = ACTIONS(7648), + [anon_sym_DASH_GT] = ACTIONS(7648), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7648), + [anon_sym_override] = ACTIONS(7648), + [anon_sym_GT2] = ACTIONS(7648), + [anon_sym_requires] = ACTIONS(7648), }, - [STATE(3214)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), - [anon_sym_COMMA] = ACTIONS(7741), - [anon_sym_LPAREN2] = ACTIONS(7741), - [anon_sym_DASH] = ACTIONS(7739), - [anon_sym_PLUS] = ACTIONS(7739), - [anon_sym_STAR] = ACTIONS(7739), - [anon_sym_SLASH] = ACTIONS(7739), - [anon_sym_PERCENT] = ACTIONS(7739), - [anon_sym_PIPE_PIPE] = ACTIONS(7741), - [anon_sym_AMP_AMP] = ACTIONS(7741), - [anon_sym_PIPE] = ACTIONS(7739), - [anon_sym_CARET] = ACTIONS(7739), - [anon_sym_AMP] = ACTIONS(7739), - [anon_sym_EQ_EQ] = ACTIONS(7741), - [anon_sym_BANG_EQ] = ACTIONS(7741), - [anon_sym_GT] = ACTIONS(7739), - [anon_sym_GT_EQ] = ACTIONS(7741), - [anon_sym_LT_EQ] = ACTIONS(7739), - [anon_sym_LT] = ACTIONS(7739), - [anon_sym_LT_LT] = ACTIONS(7739), - [anon_sym_GT_GT] = ACTIONS(7739), - [anon_sym___extension__] = ACTIONS(7741), - [anon_sym_LBRACE] = ACTIONS(7741), - [anon_sym_LBRACK] = ACTIONS(7741), - [anon_sym_RBRACK] = ACTIONS(7741), - [anon_sym_EQ] = ACTIONS(7739), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7741), - [anon_sym_volatile] = ACTIONS(7741), - [anon_sym_restrict] = ACTIONS(7741), - [anon_sym___restrict__] = ACTIONS(7741), - [anon_sym__Atomic] = ACTIONS(7741), - [anon_sym__Noreturn] = ACTIONS(7741), - [anon_sym_noreturn] = ACTIONS(7741), - [anon_sym__Nonnull] = ACTIONS(7741), - [anon_sym_mutable] = ACTIONS(7741), - [anon_sym_constinit] = ACTIONS(7741), - [anon_sym_consteval] = ACTIONS(7741), - [anon_sym_alignas] = ACTIONS(7741), - [anon_sym__Alignas] = ACTIONS(7741), - [anon_sym_QMARK] = ACTIONS(7741), - [anon_sym_STAR_EQ] = ACTIONS(7741), - [anon_sym_SLASH_EQ] = ACTIONS(7741), - [anon_sym_PERCENT_EQ] = ACTIONS(7741), - [anon_sym_PLUS_EQ] = ACTIONS(7741), - [anon_sym_DASH_EQ] = ACTIONS(7741), - [anon_sym_LT_LT_EQ] = ACTIONS(7741), - [anon_sym_GT_GT_EQ] = ACTIONS(7741), - [anon_sym_AMP_EQ] = ACTIONS(7741), - [anon_sym_CARET_EQ] = ACTIONS(7741), - [anon_sym_PIPE_EQ] = ACTIONS(7741), - [anon_sym_and_eq] = ACTIONS(7741), - [anon_sym_or_eq] = ACTIONS(7741), - [anon_sym_xor_eq] = ACTIONS(7741), - [anon_sym_LT_EQ_GT] = ACTIONS(7741), - [anon_sym_or] = ACTIONS(7739), - [anon_sym_and] = ACTIONS(7739), - [anon_sym_bitor] = ACTIONS(7741), - [anon_sym_xor] = ACTIONS(7739), - [anon_sym_bitand] = ACTIONS(7741), - [anon_sym_not_eq] = ACTIONS(7741), - [anon_sym_DASH_DASH] = ACTIONS(7741), - [anon_sym_PLUS_PLUS] = ACTIONS(7741), - [anon_sym_DOT] = ACTIONS(7739), - [anon_sym_DOT_STAR] = ACTIONS(7741), - [anon_sym_DASH_GT] = ACTIONS(7741), + [STATE(3186)] = { + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [aux_sym_sized_type_specifier_repeat1] = STATE(3540), + [sym_identifier] = ACTIONS(8635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7193), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7193), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7193), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7193), + [anon_sym_GT_GT] = ACTIONS(7193), + [anon_sym_SEMI] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(8140), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_COLON] = ACTIONS(7195), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7193), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_RBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(8640), + [anon_sym_unsigned] = ACTIONS(8640), + [anon_sym_long] = ACTIONS(8640), + [anon_sym_short] = ACTIONS(8640), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8140), + [anon_sym_volatile] = ACTIONS(8140), + [anon_sym_restrict] = ACTIONS(8140), + [anon_sym___restrict__] = ACTIONS(8140), + [anon_sym__Atomic] = ACTIONS(8140), + [anon_sym__Noreturn] = ACTIONS(8140), + [anon_sym_noreturn] = ACTIONS(8140), + [anon_sym__Nonnull] = ACTIONS(8140), + [anon_sym_mutable] = ACTIONS(8140), + [anon_sym_constinit] = ACTIONS(8140), + [anon_sym_consteval] = ACTIONS(8140), + [anon_sym_alignas] = ACTIONS(9057), + [anon_sym__Alignas] = ACTIONS(9057), + [sym_primitive_type] = ACTIONS(8645), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7193), + }, + [STATE(3187)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7652), + [anon_sym_COMMA] = ACTIONS(7652), + [anon_sym_LPAREN2] = ACTIONS(7652), + [anon_sym_DASH] = ACTIONS(7650), + [anon_sym_PLUS] = ACTIONS(7650), + [anon_sym_STAR] = ACTIONS(7650), + [anon_sym_SLASH] = ACTIONS(7650), + [anon_sym_PERCENT] = ACTIONS(7650), + [anon_sym_PIPE_PIPE] = ACTIONS(7652), + [anon_sym_AMP_AMP] = ACTIONS(7652), + [anon_sym_PIPE] = ACTIONS(7650), + [anon_sym_CARET] = ACTIONS(7650), + [anon_sym_AMP] = ACTIONS(7650), + [anon_sym_EQ_EQ] = ACTIONS(7652), + [anon_sym_BANG_EQ] = ACTIONS(7652), + [anon_sym_GT] = ACTIONS(7650), + [anon_sym_GT_EQ] = ACTIONS(7652), + [anon_sym_LT_EQ] = ACTIONS(7650), + [anon_sym_LT] = ACTIONS(7650), + [anon_sym_LT_LT] = ACTIONS(7650), + [anon_sym_GT_GT] = ACTIONS(7650), + [anon_sym___extension__] = ACTIONS(7652), + [anon_sym_LBRACE] = ACTIONS(7652), + [anon_sym_LBRACK] = ACTIONS(7652), + [anon_sym_RBRACK] = ACTIONS(7652), + [anon_sym_EQ] = ACTIONS(7650), + [anon_sym_const] = ACTIONS(7650), + [anon_sym_constexpr] = ACTIONS(7652), + [anon_sym_volatile] = ACTIONS(7652), + [anon_sym_restrict] = ACTIONS(7652), + [anon_sym___restrict__] = ACTIONS(7652), + [anon_sym__Atomic] = ACTIONS(7652), + [anon_sym__Noreturn] = ACTIONS(7652), + [anon_sym_noreturn] = ACTIONS(7652), + [anon_sym__Nonnull] = ACTIONS(7652), + [anon_sym_mutable] = ACTIONS(7652), + [anon_sym_constinit] = ACTIONS(7652), + [anon_sym_consteval] = ACTIONS(7652), + [anon_sym_alignas] = ACTIONS(7652), + [anon_sym__Alignas] = ACTIONS(7652), + [anon_sym_QMARK] = ACTIONS(7652), + [anon_sym_STAR_EQ] = ACTIONS(7652), + [anon_sym_SLASH_EQ] = ACTIONS(7652), + [anon_sym_PERCENT_EQ] = ACTIONS(7652), + [anon_sym_PLUS_EQ] = ACTIONS(7652), + [anon_sym_DASH_EQ] = ACTIONS(7652), + [anon_sym_LT_LT_EQ] = ACTIONS(7652), + [anon_sym_GT_GT_EQ] = ACTIONS(7652), + [anon_sym_AMP_EQ] = ACTIONS(7652), + [anon_sym_CARET_EQ] = ACTIONS(7652), + [anon_sym_PIPE_EQ] = ACTIONS(7652), + [anon_sym_and_eq] = ACTIONS(7652), + [anon_sym_or_eq] = ACTIONS(7652), + [anon_sym_xor_eq] = ACTIONS(7652), + [anon_sym_LT_EQ_GT] = ACTIONS(7652), + [anon_sym_or] = ACTIONS(7650), + [anon_sym_and] = ACTIONS(7650), + [anon_sym_bitor] = ACTIONS(7652), + [anon_sym_xor] = ACTIONS(7650), + [anon_sym_bitand] = ACTIONS(7652), + [anon_sym_not_eq] = ACTIONS(7652), + [anon_sym_DASH_DASH] = ACTIONS(7652), + [anon_sym_PLUS_PLUS] = ACTIONS(7652), + [anon_sym_DOT] = ACTIONS(7650), + [anon_sym_DOT_STAR] = ACTIONS(7652), + [anon_sym_DASH_GT] = ACTIONS(7652), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7652), + [anon_sym_override] = ACTIONS(7652), + [anon_sym_requires] = ACTIONS(7652), + }, + [STATE(3188)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7656), + [anon_sym_COMMA] = ACTIONS(7656), + [anon_sym_LPAREN2] = ACTIONS(7656), + [anon_sym_DASH] = ACTIONS(7654), + [anon_sym_PLUS] = ACTIONS(7654), + [anon_sym_STAR] = ACTIONS(7654), + [anon_sym_SLASH] = ACTIONS(7654), + [anon_sym_PERCENT] = ACTIONS(7654), + [anon_sym_PIPE_PIPE] = ACTIONS(7656), + [anon_sym_AMP_AMP] = ACTIONS(7656), + [anon_sym_PIPE] = ACTIONS(7654), + [anon_sym_CARET] = ACTIONS(7654), + [anon_sym_AMP] = ACTIONS(7654), + [anon_sym_EQ_EQ] = ACTIONS(7656), + [anon_sym_BANG_EQ] = ACTIONS(7656), + [anon_sym_GT] = ACTIONS(7654), + [anon_sym_GT_EQ] = ACTIONS(7656), + [anon_sym_LT_EQ] = ACTIONS(7654), + [anon_sym_LT] = ACTIONS(7654), + [anon_sym_LT_LT] = ACTIONS(7654), + [anon_sym_GT_GT] = ACTIONS(7654), + [anon_sym___extension__] = ACTIONS(7656), + [anon_sym_LBRACE] = ACTIONS(7656), + [anon_sym_LBRACK] = ACTIONS(7656), + [anon_sym_RBRACK] = ACTIONS(7656), + [anon_sym_EQ] = ACTIONS(7654), + [anon_sym_const] = ACTIONS(7654), + [anon_sym_constexpr] = ACTIONS(7656), + [anon_sym_volatile] = ACTIONS(7656), + [anon_sym_restrict] = ACTIONS(7656), + [anon_sym___restrict__] = ACTIONS(7656), + [anon_sym__Atomic] = ACTIONS(7656), + [anon_sym__Noreturn] = ACTIONS(7656), + [anon_sym_noreturn] = ACTIONS(7656), + [anon_sym__Nonnull] = ACTIONS(7656), + [anon_sym_mutable] = ACTIONS(7656), + [anon_sym_constinit] = ACTIONS(7656), + [anon_sym_consteval] = ACTIONS(7656), + [anon_sym_alignas] = ACTIONS(7656), + [anon_sym__Alignas] = ACTIONS(7656), + [anon_sym_QMARK] = ACTIONS(7656), + [anon_sym_STAR_EQ] = ACTIONS(7656), + [anon_sym_SLASH_EQ] = ACTIONS(7656), + [anon_sym_PERCENT_EQ] = ACTIONS(7656), + [anon_sym_PLUS_EQ] = ACTIONS(7656), + [anon_sym_DASH_EQ] = ACTIONS(7656), + [anon_sym_LT_LT_EQ] = ACTIONS(7656), + [anon_sym_GT_GT_EQ] = ACTIONS(7656), + [anon_sym_AMP_EQ] = ACTIONS(7656), + [anon_sym_CARET_EQ] = ACTIONS(7656), + [anon_sym_PIPE_EQ] = ACTIONS(7656), + [anon_sym_and_eq] = ACTIONS(7656), + [anon_sym_or_eq] = ACTIONS(7656), + [anon_sym_xor_eq] = ACTIONS(7656), + [anon_sym_LT_EQ_GT] = ACTIONS(7656), + [anon_sym_or] = ACTIONS(7654), + [anon_sym_and] = ACTIONS(7654), + [anon_sym_bitor] = ACTIONS(7656), + [anon_sym_xor] = ACTIONS(7654), + [anon_sym_bitand] = ACTIONS(7656), + [anon_sym_not_eq] = ACTIONS(7656), + [anon_sym_DASH_DASH] = ACTIONS(7656), + [anon_sym_PLUS_PLUS] = ACTIONS(7656), + [anon_sym_DOT] = ACTIONS(7654), + [anon_sym_DOT_STAR] = ACTIONS(7656), + [anon_sym_DASH_GT] = ACTIONS(7656), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7656), + [anon_sym_override] = ACTIONS(7656), + [anon_sym_requires] = ACTIONS(7656), + }, + [STATE(3189)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_catch] = ACTIONS(3168), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + }, + [STATE(3190)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_catch] = ACTIONS(3168), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + }, + [STATE(3191)] = { + [sym_argument_list] = STATE(5867), + [sym_initializer_list] = STATE(5743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8630), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7246), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7248), + }, + [STATE(3192)] = { + [sym_identifier] = ACTIONS(3157), + [aux_sym_preproc_def_token1] = ACTIONS(3157), + [aux_sym_preproc_if_token1] = ACTIONS(3157), + [aux_sym_preproc_if_token2] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3157), + [sym_preproc_directive] = ACTIONS(3157), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3157), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym___attribute__] = ACTIONS(3157), + [anon_sym___attribute] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3155), + [anon_sym___declspec] = ACTIONS(3157), + [anon_sym___based] = ACTIONS(3157), + [anon_sym_signed] = ACTIONS(3157), + [anon_sym_unsigned] = ACTIONS(3157), + [anon_sym_long] = ACTIONS(3157), + [anon_sym_short] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_register] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym___inline] = ACTIONS(3157), + [anon_sym___inline__] = ACTIONS(3157), + [anon_sym___forceinline] = ACTIONS(3157), + [anon_sym_thread_local] = ACTIONS(3157), + [anon_sym___thread] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_constexpr] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_restrict] = ACTIONS(3157), + [anon_sym___restrict__] = ACTIONS(3157), + [anon_sym__Atomic] = ACTIONS(3157), + [anon_sym__Noreturn] = ACTIONS(3157), + [anon_sym_noreturn] = ACTIONS(3157), + [anon_sym__Nonnull] = ACTIONS(3157), + [anon_sym_mutable] = ACTIONS(3157), + [anon_sym_constinit] = ACTIONS(3157), + [anon_sym_consteval] = ACTIONS(3157), + [anon_sym_alignas] = ACTIONS(3157), + [anon_sym__Alignas] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_typename] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3157), + [anon_sym_decltype] = ACTIONS(3157), + [anon_sym_explicit] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_template] = ACTIONS(3157), + [anon_sym_operator] = ACTIONS(3157), + [anon_sym_friend] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_static_assert] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_LBRACK_COLON] = ACTIONS(3155), + }, + [STATE(3193)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7672), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7674), + [anon_sym_or_eq] = ACTIONS(7674), + [anon_sym_xor_eq] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_GT2] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + }, + [STATE(3194)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7672), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7672), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7674), + [anon_sym_or_eq] = ACTIONS(7674), + [anon_sym_xor_eq] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_GT2] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + }, + [STATE(3195)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym___extension__] = ACTIONS(7146), + [anon_sym_LBRACE] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7146), + [anon_sym_RBRACK] = ACTIONS(7146), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7146), + [anon_sym_volatile] = ACTIONS(7146), + [anon_sym_restrict] = ACTIONS(7146), + [anon_sym___restrict__] = ACTIONS(7146), + [anon_sym__Atomic] = ACTIONS(7146), + [anon_sym__Noreturn] = ACTIONS(7146), + [anon_sym_noreturn] = ACTIONS(7146), + [anon_sym__Nonnull] = ACTIONS(7146), + [anon_sym_mutable] = ACTIONS(7146), + [anon_sym_constinit] = ACTIONS(7146), + [anon_sym_consteval] = ACTIONS(7146), + [anon_sym_alignas] = ACTIONS(7146), + [anon_sym__Alignas] = ACTIONS(7146), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7146), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_and_eq] = ACTIONS(7146), + [anon_sym_or_eq] = ACTIONS(7146), + [anon_sym_xor_eq] = ACTIONS(7146), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7144), + [anon_sym_and] = ACTIONS(7144), + [anon_sym_bitor] = ACTIONS(7146), + [anon_sym_xor] = ACTIONS(7144), + [anon_sym_bitand] = ACTIONS(7146), + [anon_sym_not_eq] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7146), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7146), + [anon_sym_override] = ACTIONS(7146), + [anon_sym_requires] = ACTIONS(7146), + }, + [STATE(3196)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_RBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7674), + [anon_sym_or_eq] = ACTIONS(7674), + [anon_sym_xor_eq] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + }, + [STATE(3197)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7678), + [anon_sym_COMMA] = ACTIONS(7678), + [anon_sym_LPAREN2] = ACTIONS(7678), + [anon_sym_DASH] = ACTIONS(7676), + [anon_sym_PLUS] = ACTIONS(7676), + [anon_sym_STAR] = ACTIONS(7676), + [anon_sym_SLASH] = ACTIONS(7676), + [anon_sym_PERCENT] = ACTIONS(7676), + [anon_sym_PIPE_PIPE] = ACTIONS(7678), + [anon_sym_AMP_AMP] = ACTIONS(7678), + [anon_sym_PIPE] = ACTIONS(7676), + [anon_sym_CARET] = ACTIONS(7676), + [anon_sym_AMP] = ACTIONS(7676), + [anon_sym_EQ_EQ] = ACTIONS(7678), + [anon_sym_BANG_EQ] = ACTIONS(7678), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_GT_EQ] = ACTIONS(7678), + [anon_sym_LT_EQ] = ACTIONS(7676), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_LT_LT] = ACTIONS(7676), + [anon_sym_GT_GT] = ACTIONS(7676), + [anon_sym___extension__] = ACTIONS(7678), + [anon_sym_LBRACE] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7678), + [anon_sym_RBRACK] = ACTIONS(7678), + [anon_sym_EQ] = ACTIONS(7676), + [anon_sym_const] = ACTIONS(7676), + [anon_sym_constexpr] = ACTIONS(7678), + [anon_sym_volatile] = ACTIONS(7678), + [anon_sym_restrict] = ACTIONS(7678), + [anon_sym___restrict__] = ACTIONS(7678), + [anon_sym__Atomic] = ACTIONS(7678), + [anon_sym__Noreturn] = ACTIONS(7678), + [anon_sym_noreturn] = ACTIONS(7678), + [anon_sym__Nonnull] = ACTIONS(7678), + [anon_sym_mutable] = ACTIONS(7678), + [anon_sym_constinit] = ACTIONS(7678), + [anon_sym_consteval] = ACTIONS(7678), + [anon_sym_alignas] = ACTIONS(7678), + [anon_sym__Alignas] = ACTIONS(7678), + [anon_sym_QMARK] = ACTIONS(7678), + [anon_sym_STAR_EQ] = ACTIONS(7678), + [anon_sym_SLASH_EQ] = ACTIONS(7678), + [anon_sym_PERCENT_EQ] = ACTIONS(7678), + [anon_sym_PLUS_EQ] = ACTIONS(7678), + [anon_sym_DASH_EQ] = ACTIONS(7678), + [anon_sym_LT_LT_EQ] = ACTIONS(7678), + [anon_sym_GT_GT_EQ] = ACTIONS(7678), + [anon_sym_AMP_EQ] = ACTIONS(7678), + [anon_sym_CARET_EQ] = ACTIONS(7678), + [anon_sym_PIPE_EQ] = ACTIONS(7678), + [anon_sym_and_eq] = ACTIONS(7678), + [anon_sym_or_eq] = ACTIONS(7678), + [anon_sym_xor_eq] = ACTIONS(7678), + [anon_sym_LT_EQ_GT] = ACTIONS(7678), + [anon_sym_or] = ACTIONS(7676), + [anon_sym_and] = ACTIONS(7676), + [anon_sym_bitor] = ACTIONS(7678), + [anon_sym_xor] = ACTIONS(7676), + [anon_sym_bitand] = ACTIONS(7678), + [anon_sym_not_eq] = ACTIONS(7678), + [anon_sym_DASH_DASH] = ACTIONS(7678), + [anon_sym_PLUS_PLUS] = ACTIONS(7678), + [anon_sym_DOT] = ACTIONS(7676), + [anon_sym_DOT_STAR] = ACTIONS(7678), + [anon_sym_DASH_GT] = ACTIONS(7678), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7678), + [anon_sym_override] = ACTIONS(7678), + [anon_sym_requires] = ACTIONS(7678), + }, + [STATE(3198)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7682), + [anon_sym_COMMA] = ACTIONS(7682), + [anon_sym_LPAREN2] = ACTIONS(7682), + [anon_sym_DASH] = ACTIONS(7680), + [anon_sym_PLUS] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7680), + [anon_sym_SLASH] = ACTIONS(7680), + [anon_sym_PERCENT] = ACTIONS(7680), + [anon_sym_PIPE_PIPE] = ACTIONS(7682), + [anon_sym_AMP_AMP] = ACTIONS(7682), + [anon_sym_PIPE] = ACTIONS(7680), + [anon_sym_CARET] = ACTIONS(7680), + [anon_sym_AMP] = ACTIONS(7680), + [anon_sym_EQ_EQ] = ACTIONS(7682), + [anon_sym_BANG_EQ] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7680), + [anon_sym_GT_EQ] = ACTIONS(7682), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_LT] = ACTIONS(7680), + [anon_sym_LT_LT] = ACTIONS(7680), + [anon_sym_GT_GT] = ACTIONS(7680), + [anon_sym___extension__] = ACTIONS(7682), + [anon_sym_LBRACE] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7682), + [anon_sym_RBRACK] = ACTIONS(7682), + [anon_sym_EQ] = ACTIONS(7680), + [anon_sym_const] = ACTIONS(7680), + [anon_sym_constexpr] = ACTIONS(7682), + [anon_sym_volatile] = ACTIONS(7682), + [anon_sym_restrict] = ACTIONS(7682), + [anon_sym___restrict__] = ACTIONS(7682), + [anon_sym__Atomic] = ACTIONS(7682), + [anon_sym__Noreturn] = ACTIONS(7682), + [anon_sym_noreturn] = ACTIONS(7682), + [anon_sym__Nonnull] = ACTIONS(7682), + [anon_sym_mutable] = ACTIONS(7682), + [anon_sym_constinit] = ACTIONS(7682), + [anon_sym_consteval] = ACTIONS(7682), + [anon_sym_alignas] = ACTIONS(7682), + [anon_sym__Alignas] = ACTIONS(7682), + [anon_sym_QMARK] = ACTIONS(7682), + [anon_sym_STAR_EQ] = ACTIONS(7682), + [anon_sym_SLASH_EQ] = ACTIONS(7682), + [anon_sym_PERCENT_EQ] = ACTIONS(7682), + [anon_sym_PLUS_EQ] = ACTIONS(7682), + [anon_sym_DASH_EQ] = ACTIONS(7682), + [anon_sym_LT_LT_EQ] = ACTIONS(7682), + [anon_sym_GT_GT_EQ] = ACTIONS(7682), + [anon_sym_AMP_EQ] = ACTIONS(7682), + [anon_sym_CARET_EQ] = ACTIONS(7682), + [anon_sym_PIPE_EQ] = ACTIONS(7682), + [anon_sym_and_eq] = ACTIONS(7682), + [anon_sym_or_eq] = ACTIONS(7682), + [anon_sym_xor_eq] = ACTIONS(7682), + [anon_sym_LT_EQ_GT] = ACTIONS(7682), + [anon_sym_or] = ACTIONS(7680), + [anon_sym_and] = ACTIONS(7680), + [anon_sym_bitor] = ACTIONS(7682), + [anon_sym_xor] = ACTIONS(7680), + [anon_sym_bitand] = ACTIONS(7682), + [anon_sym_not_eq] = ACTIONS(7682), + [anon_sym_DASH_DASH] = ACTIONS(7682), + [anon_sym_PLUS_PLUS] = ACTIONS(7682), + [anon_sym_DOT] = ACTIONS(7680), + [anon_sym_DOT_STAR] = ACTIONS(7682), + [anon_sym_DASH_GT] = ACTIONS(7682), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7682), + [anon_sym_override] = ACTIONS(7682), + [anon_sym_requires] = ACTIONS(7682), + }, + [STATE(3199)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_RBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7674), + [anon_sym_or_eq] = ACTIONS(7674), + [anon_sym_xor_eq] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + }, + [STATE(3200)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_RBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_and_eq] = ACTIONS(7674), + [anon_sym_or_eq] = ACTIONS(7674), + [anon_sym_xor_eq] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + }, + [STATE(3201)] = { + [sym_identifier] = ACTIONS(7676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7678), + [anon_sym_COMMA] = ACTIONS(7678), + [anon_sym_RPAREN] = ACTIONS(7678), + [anon_sym_LPAREN2] = ACTIONS(7678), + [anon_sym_DASH] = ACTIONS(7676), + [anon_sym_PLUS] = ACTIONS(7676), + [anon_sym_STAR] = ACTIONS(7678), + [anon_sym_SLASH] = ACTIONS(7676), + [anon_sym_PERCENT] = ACTIONS(7678), + [anon_sym_PIPE_PIPE] = ACTIONS(7678), + [anon_sym_AMP_AMP] = ACTIONS(7678), + [anon_sym_PIPE] = ACTIONS(7676), + [anon_sym_CARET] = ACTIONS(7678), + [anon_sym_AMP] = ACTIONS(7676), + [anon_sym_EQ_EQ] = ACTIONS(7678), + [anon_sym_BANG_EQ] = ACTIONS(7678), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_GT_EQ] = ACTIONS(7678), + [anon_sym_LT_EQ] = ACTIONS(7676), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_LT_LT] = ACTIONS(7678), + [anon_sym_GT_GT] = ACTIONS(7678), + [anon_sym_SEMI] = ACTIONS(7678), + [anon_sym___extension__] = ACTIONS(7676), + [anon_sym___attribute__] = ACTIONS(7676), + [anon_sym___attribute] = ACTIONS(7676), + [anon_sym_COLON] = ACTIONS(7676), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7678), + [anon_sym___based] = ACTIONS(7676), + [anon_sym_LBRACE] = ACTIONS(7678), + [anon_sym_RBRACE] = ACTIONS(7678), + [anon_sym_signed] = ACTIONS(7676), + [anon_sym_unsigned] = ACTIONS(7676), + [anon_sym_long] = ACTIONS(7676), + [anon_sym_short] = ACTIONS(7676), + [anon_sym_LBRACK] = ACTIONS(7678), + [anon_sym_const] = ACTIONS(7676), + [anon_sym_constexpr] = ACTIONS(7676), + [anon_sym_volatile] = ACTIONS(7676), + [anon_sym_restrict] = ACTIONS(7676), + [anon_sym___restrict__] = ACTIONS(7676), + [anon_sym__Atomic] = ACTIONS(7676), + [anon_sym__Noreturn] = ACTIONS(7676), + [anon_sym_noreturn] = ACTIONS(7676), + [anon_sym__Nonnull] = ACTIONS(7676), + [anon_sym_mutable] = ACTIONS(7676), + [anon_sym_constinit] = ACTIONS(7676), + [anon_sym_consteval] = ACTIONS(7676), + [anon_sym_alignas] = ACTIONS(7676), + [anon_sym__Alignas] = ACTIONS(7676), + [sym_primitive_type] = ACTIONS(7676), + [anon_sym_QMARK] = ACTIONS(7678), + [anon_sym_LT_EQ_GT] = ACTIONS(7678), + [anon_sym_or] = ACTIONS(7676), + [anon_sym_and] = ACTIONS(7676), + [anon_sym_bitor] = ACTIONS(7676), + [anon_sym_xor] = ACTIONS(7676), + [anon_sym_bitand] = ACTIONS(7676), + [anon_sym_not_eq] = ACTIONS(7676), + [anon_sym_DASH_DASH] = ACTIONS(7678), + [anon_sym_PLUS_PLUS] = ACTIONS(7678), + [anon_sym_DOT] = ACTIONS(7676), + [anon_sym_DOT_STAR] = ACTIONS(7678), + [anon_sym_DASH_GT] = ACTIONS(7678), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7676), + [anon_sym_override] = ACTIONS(7676), + [anon_sym_requires] = ACTIONS(7676), + [anon_sym_COLON_RBRACK] = ACTIONS(7678), + }, + [STATE(3202)] = { + [sym_identifier] = ACTIONS(7590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7592), + [anon_sym_COMMA] = ACTIONS(7592), + [anon_sym_RPAREN] = ACTIONS(7592), + [anon_sym_LPAREN2] = ACTIONS(7592), + [anon_sym_DASH] = ACTIONS(7590), + [anon_sym_PLUS] = ACTIONS(7590), + [anon_sym_STAR] = ACTIONS(7592), + [anon_sym_SLASH] = ACTIONS(7590), + [anon_sym_PERCENT] = ACTIONS(7592), + [anon_sym_PIPE_PIPE] = ACTIONS(7592), + [anon_sym_AMP_AMP] = ACTIONS(7592), + [anon_sym_PIPE] = ACTIONS(7590), + [anon_sym_CARET] = ACTIONS(7592), + [anon_sym_AMP] = ACTIONS(7590), + [anon_sym_EQ_EQ] = ACTIONS(7592), + [anon_sym_BANG_EQ] = ACTIONS(7592), + [anon_sym_GT] = ACTIONS(7590), + [anon_sym_GT_EQ] = ACTIONS(7592), + [anon_sym_LT_EQ] = ACTIONS(7590), + [anon_sym_LT] = ACTIONS(7590), + [anon_sym_LT_LT] = ACTIONS(7592), + [anon_sym_GT_GT] = ACTIONS(7592), + [anon_sym_SEMI] = ACTIONS(7592), + [anon_sym___extension__] = ACTIONS(7590), + [anon_sym___attribute__] = ACTIONS(7590), + [anon_sym___attribute] = ACTIONS(7590), + [anon_sym_COLON] = ACTIONS(7590), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7592), + [anon_sym___based] = ACTIONS(7590), + [anon_sym_LBRACE] = ACTIONS(7592), + [anon_sym_RBRACE] = ACTIONS(7592), + [anon_sym_signed] = ACTIONS(7590), + [anon_sym_unsigned] = ACTIONS(7590), + [anon_sym_long] = ACTIONS(7590), + [anon_sym_short] = ACTIONS(7590), + [anon_sym_LBRACK] = ACTIONS(7592), + [anon_sym_const] = ACTIONS(7590), + [anon_sym_constexpr] = ACTIONS(7590), + [anon_sym_volatile] = ACTIONS(7590), + [anon_sym_restrict] = ACTIONS(7590), + [anon_sym___restrict__] = ACTIONS(7590), + [anon_sym__Atomic] = ACTIONS(7590), + [anon_sym__Noreturn] = ACTIONS(7590), + [anon_sym_noreturn] = ACTIONS(7590), + [anon_sym__Nonnull] = ACTIONS(7590), + [anon_sym_mutable] = ACTIONS(7590), + [anon_sym_constinit] = ACTIONS(7590), + [anon_sym_consteval] = ACTIONS(7590), + [anon_sym_alignas] = ACTIONS(7590), + [anon_sym__Alignas] = ACTIONS(7590), + [sym_primitive_type] = ACTIONS(7590), + [anon_sym_QMARK] = ACTIONS(7592), + [anon_sym_LT_EQ_GT] = ACTIONS(7592), + [anon_sym_or] = ACTIONS(7590), + [anon_sym_and] = ACTIONS(7590), + [anon_sym_bitor] = ACTIONS(7590), + [anon_sym_xor] = ACTIONS(7590), + [anon_sym_bitand] = ACTIONS(7590), + [anon_sym_not_eq] = ACTIONS(7590), + [anon_sym_DASH_DASH] = ACTIONS(7592), + [anon_sym_PLUS_PLUS] = ACTIONS(7592), + [anon_sym_DOT] = ACTIONS(7590), + [anon_sym_DOT_STAR] = ACTIONS(7592), + [anon_sym_DASH_GT] = ACTIONS(7592), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7590), + [anon_sym_override] = ACTIONS(7590), + [anon_sym_requires] = ACTIONS(7590), + [anon_sym_COLON_RBRACK] = ACTIONS(7592), + }, + [STATE(3203)] = { + [sym_identifier] = ACTIONS(7594), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7596), + [anon_sym_COMMA] = ACTIONS(7596), + [anon_sym_RPAREN] = ACTIONS(7596), + [anon_sym_LPAREN2] = ACTIONS(7596), + [anon_sym_DASH] = ACTIONS(7594), + [anon_sym_PLUS] = ACTIONS(7594), + [anon_sym_STAR] = ACTIONS(7596), + [anon_sym_SLASH] = ACTIONS(7594), + [anon_sym_PERCENT] = ACTIONS(7596), + [anon_sym_PIPE_PIPE] = ACTIONS(7596), + [anon_sym_AMP_AMP] = ACTIONS(7596), + [anon_sym_PIPE] = ACTIONS(7594), + [anon_sym_CARET] = ACTIONS(7596), + [anon_sym_AMP] = ACTIONS(7594), + [anon_sym_EQ_EQ] = ACTIONS(7596), + [anon_sym_BANG_EQ] = ACTIONS(7596), + [anon_sym_GT] = ACTIONS(7594), + [anon_sym_GT_EQ] = ACTIONS(7596), + [anon_sym_LT_EQ] = ACTIONS(7594), + [anon_sym_LT] = ACTIONS(7594), + [anon_sym_LT_LT] = ACTIONS(7596), + [anon_sym_GT_GT] = ACTIONS(7596), + [anon_sym_SEMI] = ACTIONS(7596), + [anon_sym___extension__] = ACTIONS(7594), + [anon_sym___attribute__] = ACTIONS(7594), + [anon_sym___attribute] = ACTIONS(7594), + [anon_sym_COLON] = ACTIONS(7594), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7596), + [anon_sym___based] = ACTIONS(7594), + [anon_sym_LBRACE] = ACTIONS(7596), + [anon_sym_RBRACE] = ACTIONS(7596), + [anon_sym_signed] = ACTIONS(7594), + [anon_sym_unsigned] = ACTIONS(7594), + [anon_sym_long] = ACTIONS(7594), + [anon_sym_short] = ACTIONS(7594), + [anon_sym_LBRACK] = ACTIONS(7596), + [anon_sym_const] = ACTIONS(7594), + [anon_sym_constexpr] = ACTIONS(7594), + [anon_sym_volatile] = ACTIONS(7594), + [anon_sym_restrict] = ACTIONS(7594), + [anon_sym___restrict__] = ACTIONS(7594), + [anon_sym__Atomic] = ACTIONS(7594), + [anon_sym__Noreturn] = ACTIONS(7594), + [anon_sym_noreturn] = ACTIONS(7594), + [anon_sym__Nonnull] = ACTIONS(7594), + [anon_sym_mutable] = ACTIONS(7594), + [anon_sym_constinit] = ACTIONS(7594), + [anon_sym_consteval] = ACTIONS(7594), + [anon_sym_alignas] = ACTIONS(7594), + [anon_sym__Alignas] = ACTIONS(7594), + [sym_primitive_type] = ACTIONS(7594), + [anon_sym_QMARK] = ACTIONS(7596), + [anon_sym_LT_EQ_GT] = ACTIONS(7596), + [anon_sym_or] = ACTIONS(7594), + [anon_sym_and] = ACTIONS(7594), + [anon_sym_bitor] = ACTIONS(7594), + [anon_sym_xor] = ACTIONS(7594), + [anon_sym_bitand] = ACTIONS(7594), + [anon_sym_not_eq] = ACTIONS(7594), + [anon_sym_DASH_DASH] = ACTIONS(7596), + [anon_sym_PLUS_PLUS] = ACTIONS(7596), + [anon_sym_DOT] = ACTIONS(7594), + [anon_sym_DOT_STAR] = ACTIONS(7596), + [anon_sym_DASH_GT] = ACTIONS(7596), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7594), + [anon_sym_override] = ACTIONS(7594), + [anon_sym_requires] = ACTIONS(7594), + [anon_sym_COLON_RBRACK] = ACTIONS(7596), + }, + [STATE(3204)] = { + [sym_identifier] = ACTIONS(7680), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7682), + [anon_sym_COMMA] = ACTIONS(7682), + [anon_sym_RPAREN] = ACTIONS(7682), + [anon_sym_LPAREN2] = ACTIONS(7682), + [anon_sym_DASH] = ACTIONS(7680), + [anon_sym_PLUS] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7682), + [anon_sym_SLASH] = ACTIONS(7680), + [anon_sym_PERCENT] = ACTIONS(7682), + [anon_sym_PIPE_PIPE] = ACTIONS(7682), + [anon_sym_AMP_AMP] = ACTIONS(7682), + [anon_sym_PIPE] = ACTIONS(7680), + [anon_sym_CARET] = ACTIONS(7682), + [anon_sym_AMP] = ACTIONS(7680), + [anon_sym_EQ_EQ] = ACTIONS(7682), + [anon_sym_BANG_EQ] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7680), + [anon_sym_GT_EQ] = ACTIONS(7682), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_LT] = ACTIONS(7680), + [anon_sym_LT_LT] = ACTIONS(7682), + [anon_sym_GT_GT] = ACTIONS(7682), + [anon_sym_SEMI] = ACTIONS(7682), + [anon_sym___extension__] = ACTIONS(7680), + [anon_sym___attribute__] = ACTIONS(7680), + [anon_sym___attribute] = ACTIONS(7680), + [anon_sym_COLON] = ACTIONS(7680), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7682), + [anon_sym___based] = ACTIONS(7680), + [anon_sym_LBRACE] = ACTIONS(7682), + [anon_sym_RBRACE] = ACTIONS(7682), + [anon_sym_signed] = ACTIONS(7680), + [anon_sym_unsigned] = ACTIONS(7680), + [anon_sym_long] = ACTIONS(7680), + [anon_sym_short] = ACTIONS(7680), + [anon_sym_LBRACK] = ACTIONS(7682), + [anon_sym_const] = ACTIONS(7680), + [anon_sym_constexpr] = ACTIONS(7680), + [anon_sym_volatile] = ACTIONS(7680), + [anon_sym_restrict] = ACTIONS(7680), + [anon_sym___restrict__] = ACTIONS(7680), + [anon_sym__Atomic] = ACTIONS(7680), + [anon_sym__Noreturn] = ACTIONS(7680), + [anon_sym_noreturn] = ACTIONS(7680), + [anon_sym__Nonnull] = ACTIONS(7680), + [anon_sym_mutable] = ACTIONS(7680), + [anon_sym_constinit] = ACTIONS(7680), + [anon_sym_consteval] = ACTIONS(7680), + [anon_sym_alignas] = ACTIONS(7680), + [anon_sym__Alignas] = ACTIONS(7680), + [sym_primitive_type] = ACTIONS(7680), + [anon_sym_QMARK] = ACTIONS(7682), + [anon_sym_LT_EQ_GT] = ACTIONS(7682), + [anon_sym_or] = ACTIONS(7680), + [anon_sym_and] = ACTIONS(7680), + [anon_sym_bitor] = ACTIONS(7680), + [anon_sym_xor] = ACTIONS(7680), + [anon_sym_bitand] = ACTIONS(7680), + [anon_sym_not_eq] = ACTIONS(7680), + [anon_sym_DASH_DASH] = ACTIONS(7682), + [anon_sym_PLUS_PLUS] = ACTIONS(7682), + [anon_sym_DOT] = ACTIONS(7680), + [anon_sym_DOT_STAR] = ACTIONS(7682), + [anon_sym_DASH_GT] = ACTIONS(7682), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7680), + [anon_sym_override] = ACTIONS(7680), + [anon_sym_requires] = ACTIONS(7680), + [anon_sym_COLON_RBRACK] = ACTIONS(7682), + }, + [STATE(3205)] = { + [sym_identifier] = ACTIONS(7598), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7600), + [anon_sym_COMMA] = ACTIONS(7600), + [anon_sym_RPAREN] = ACTIONS(7600), + [anon_sym_LPAREN2] = ACTIONS(7600), + [anon_sym_DASH] = ACTIONS(7598), + [anon_sym_PLUS] = ACTIONS(7598), + [anon_sym_STAR] = ACTIONS(7600), + [anon_sym_SLASH] = ACTIONS(7598), + [anon_sym_PERCENT] = ACTIONS(7600), + [anon_sym_PIPE_PIPE] = ACTIONS(7600), + [anon_sym_AMP_AMP] = ACTIONS(7600), + [anon_sym_PIPE] = ACTIONS(7598), + [anon_sym_CARET] = ACTIONS(7600), + [anon_sym_AMP] = ACTIONS(7598), + [anon_sym_EQ_EQ] = ACTIONS(7600), + [anon_sym_BANG_EQ] = ACTIONS(7600), + [anon_sym_GT] = ACTIONS(7598), + [anon_sym_GT_EQ] = ACTIONS(7600), + [anon_sym_LT_EQ] = ACTIONS(7598), + [anon_sym_LT] = ACTIONS(7598), + [anon_sym_LT_LT] = ACTIONS(7600), + [anon_sym_GT_GT] = ACTIONS(7600), + [anon_sym_SEMI] = ACTIONS(7600), + [anon_sym___extension__] = ACTIONS(7598), + [anon_sym___attribute__] = ACTIONS(7598), + [anon_sym___attribute] = ACTIONS(7598), + [anon_sym_COLON] = ACTIONS(7598), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7600), + [anon_sym___based] = ACTIONS(7598), + [anon_sym_LBRACE] = ACTIONS(7600), + [anon_sym_RBRACE] = ACTIONS(7600), + [anon_sym_signed] = ACTIONS(7598), + [anon_sym_unsigned] = ACTIONS(7598), + [anon_sym_long] = ACTIONS(7598), + [anon_sym_short] = ACTIONS(7598), + [anon_sym_LBRACK] = ACTIONS(7600), + [anon_sym_const] = ACTIONS(7598), + [anon_sym_constexpr] = ACTIONS(7598), + [anon_sym_volatile] = ACTIONS(7598), + [anon_sym_restrict] = ACTIONS(7598), + [anon_sym___restrict__] = ACTIONS(7598), + [anon_sym__Atomic] = ACTIONS(7598), + [anon_sym__Noreturn] = ACTIONS(7598), + [anon_sym_noreturn] = ACTIONS(7598), + [anon_sym__Nonnull] = ACTIONS(7598), + [anon_sym_mutable] = ACTIONS(7598), + [anon_sym_constinit] = ACTIONS(7598), + [anon_sym_consteval] = ACTIONS(7598), + [anon_sym_alignas] = ACTIONS(7598), + [anon_sym__Alignas] = ACTIONS(7598), + [sym_primitive_type] = ACTIONS(7598), + [anon_sym_QMARK] = ACTIONS(7600), + [anon_sym_LT_EQ_GT] = ACTIONS(7600), + [anon_sym_or] = ACTIONS(7598), + [anon_sym_and] = ACTIONS(7598), + [anon_sym_bitor] = ACTIONS(7598), + [anon_sym_xor] = ACTIONS(7598), + [anon_sym_bitand] = ACTIONS(7598), + [anon_sym_not_eq] = ACTIONS(7598), + [anon_sym_DASH_DASH] = ACTIONS(7600), + [anon_sym_PLUS_PLUS] = ACTIONS(7600), + [anon_sym_DOT] = ACTIONS(7598), + [anon_sym_DOT_STAR] = ACTIONS(7600), + [anon_sym_DASH_GT] = ACTIONS(7600), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7598), + [anon_sym_override] = ACTIONS(7598), + [anon_sym_requires] = ACTIONS(7598), + [anon_sym_COLON_RBRACK] = ACTIONS(7600), + }, + [STATE(3206)] = { + [sym_identifier] = ACTIONS(7602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7604), + [anon_sym_COMMA] = ACTIONS(7604), + [anon_sym_RPAREN] = ACTIONS(7604), + [anon_sym_LPAREN2] = ACTIONS(7604), + [anon_sym_DASH] = ACTIONS(7602), + [anon_sym_PLUS] = ACTIONS(7602), + [anon_sym_STAR] = ACTIONS(7604), + [anon_sym_SLASH] = ACTIONS(7602), + [anon_sym_PERCENT] = ACTIONS(7604), + [anon_sym_PIPE_PIPE] = ACTIONS(7604), + [anon_sym_AMP_AMP] = ACTIONS(7604), + [anon_sym_PIPE] = ACTIONS(7602), + [anon_sym_CARET] = ACTIONS(7604), + [anon_sym_AMP] = ACTIONS(7602), + [anon_sym_EQ_EQ] = ACTIONS(7604), + [anon_sym_BANG_EQ] = ACTIONS(7604), + [anon_sym_GT] = ACTIONS(7602), + [anon_sym_GT_EQ] = ACTIONS(7604), + [anon_sym_LT_EQ] = ACTIONS(7602), + [anon_sym_LT] = ACTIONS(7602), + [anon_sym_LT_LT] = ACTIONS(7604), + [anon_sym_GT_GT] = ACTIONS(7604), + [anon_sym_SEMI] = ACTIONS(7604), + [anon_sym___extension__] = ACTIONS(7602), + [anon_sym___attribute__] = ACTIONS(7602), + [anon_sym___attribute] = ACTIONS(7602), + [anon_sym_COLON] = ACTIONS(7602), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7604), + [anon_sym___based] = ACTIONS(7602), + [anon_sym_LBRACE] = ACTIONS(7604), + [anon_sym_RBRACE] = ACTIONS(7604), + [anon_sym_signed] = ACTIONS(7602), + [anon_sym_unsigned] = ACTIONS(7602), + [anon_sym_long] = ACTIONS(7602), + [anon_sym_short] = ACTIONS(7602), + [anon_sym_LBRACK] = ACTIONS(7604), + [anon_sym_const] = ACTIONS(7602), + [anon_sym_constexpr] = ACTIONS(7602), + [anon_sym_volatile] = ACTIONS(7602), + [anon_sym_restrict] = ACTIONS(7602), + [anon_sym___restrict__] = ACTIONS(7602), + [anon_sym__Atomic] = ACTIONS(7602), + [anon_sym__Noreturn] = ACTIONS(7602), + [anon_sym_noreturn] = ACTIONS(7602), + [anon_sym__Nonnull] = ACTIONS(7602), + [anon_sym_mutable] = ACTIONS(7602), + [anon_sym_constinit] = ACTIONS(7602), + [anon_sym_consteval] = ACTIONS(7602), + [anon_sym_alignas] = ACTIONS(7602), + [anon_sym__Alignas] = ACTIONS(7602), + [sym_primitive_type] = ACTIONS(7602), + [anon_sym_QMARK] = ACTIONS(7604), + [anon_sym_LT_EQ_GT] = ACTIONS(7604), + [anon_sym_or] = ACTIONS(7602), + [anon_sym_and] = ACTIONS(7602), + [anon_sym_bitor] = ACTIONS(7602), + [anon_sym_xor] = ACTIONS(7602), + [anon_sym_bitand] = ACTIONS(7602), + [anon_sym_not_eq] = ACTIONS(7602), + [anon_sym_DASH_DASH] = ACTIONS(7604), + [anon_sym_PLUS_PLUS] = ACTIONS(7604), + [anon_sym_DOT] = ACTIONS(7602), + [anon_sym_DOT_STAR] = ACTIONS(7604), + [anon_sym_DASH_GT] = ACTIONS(7604), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7602), + [anon_sym_override] = ACTIONS(7602), + [anon_sym_requires] = ACTIONS(7602), + [anon_sym_COLON_RBRACK] = ACTIONS(7604), + }, + [STATE(3207)] = { + [sym_identifier] = ACTIONS(7719), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7721), + [anon_sym_COMMA] = ACTIONS(7721), + [anon_sym_RPAREN] = ACTIONS(7721), + [anon_sym_LPAREN2] = ACTIONS(7721), + [anon_sym_DASH] = ACTIONS(7719), + [anon_sym_PLUS] = ACTIONS(7719), + [anon_sym_STAR] = ACTIONS(7721), + [anon_sym_SLASH] = ACTIONS(7719), + [anon_sym_PERCENT] = ACTIONS(7721), + [anon_sym_PIPE_PIPE] = ACTIONS(7721), + [anon_sym_AMP_AMP] = ACTIONS(7721), + [anon_sym_PIPE] = ACTIONS(7719), + [anon_sym_CARET] = ACTIONS(7721), + [anon_sym_AMP] = ACTIONS(7719), + [anon_sym_EQ_EQ] = ACTIONS(7721), + [anon_sym_BANG_EQ] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7719), + [anon_sym_GT_EQ] = ACTIONS(7721), + [anon_sym_LT_EQ] = ACTIONS(7719), + [anon_sym_LT] = ACTIONS(7719), + [anon_sym_LT_LT] = ACTIONS(7721), + [anon_sym_GT_GT] = ACTIONS(7721), + [anon_sym_SEMI] = ACTIONS(7721), + [anon_sym___extension__] = ACTIONS(7719), + [anon_sym___attribute__] = ACTIONS(7719), + [anon_sym___attribute] = ACTIONS(7719), + [anon_sym_COLON] = ACTIONS(7719), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7721), + [anon_sym___based] = ACTIONS(7719), + [anon_sym_LBRACE] = ACTIONS(7721), + [anon_sym_RBRACE] = ACTIONS(7721), + [anon_sym_signed] = ACTIONS(7719), + [anon_sym_unsigned] = ACTIONS(7719), + [anon_sym_long] = ACTIONS(7719), + [anon_sym_short] = ACTIONS(7719), + [anon_sym_LBRACK] = ACTIONS(7721), + [anon_sym_const] = ACTIONS(7719), + [anon_sym_constexpr] = ACTIONS(7719), + [anon_sym_volatile] = ACTIONS(7719), + [anon_sym_restrict] = ACTIONS(7719), + [anon_sym___restrict__] = ACTIONS(7719), + [anon_sym__Atomic] = ACTIONS(7719), + [anon_sym__Noreturn] = ACTIONS(7719), + [anon_sym_noreturn] = ACTIONS(7719), + [anon_sym__Nonnull] = ACTIONS(7719), + [anon_sym_mutable] = ACTIONS(7719), + [anon_sym_constinit] = ACTIONS(7719), + [anon_sym_consteval] = ACTIONS(7719), + [anon_sym_alignas] = ACTIONS(7719), + [anon_sym__Alignas] = ACTIONS(7719), + [sym_primitive_type] = ACTIONS(7719), + [anon_sym_QMARK] = ACTIONS(7721), + [anon_sym_LT_EQ_GT] = ACTIONS(7721), + [anon_sym_or] = ACTIONS(7719), + [anon_sym_and] = ACTIONS(7719), + [anon_sym_bitor] = ACTIONS(7719), + [anon_sym_xor] = ACTIONS(7719), + [anon_sym_bitand] = ACTIONS(7719), + [anon_sym_not_eq] = ACTIONS(7719), + [anon_sym_DASH_DASH] = ACTIONS(7721), + [anon_sym_PLUS_PLUS] = ACTIONS(7721), + [anon_sym_DOT] = ACTIONS(7719), + [anon_sym_DOT_STAR] = ACTIONS(7721), + [anon_sym_DASH_GT] = ACTIONS(7721), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7741), - [anon_sym_override] = ACTIONS(7741), - [anon_sym_requires] = ACTIONS(7741), + [anon_sym_final] = ACTIONS(7719), + [anon_sym_override] = ACTIONS(7719), + [anon_sym_requires] = ACTIONS(7719), + [anon_sym_COLON_RBRACK] = ACTIONS(7721), }, - [STATE(3215)] = { - [sym_identifier] = ACTIONS(7779), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), - [anon_sym_COMMA] = ACTIONS(7781), - [anon_sym_RPAREN] = ACTIONS(7781), - [anon_sym_LPAREN2] = ACTIONS(7781), - [anon_sym_DASH] = ACTIONS(7779), - [anon_sym_PLUS] = ACTIONS(7779), - [anon_sym_STAR] = ACTIONS(7781), - [anon_sym_SLASH] = ACTIONS(7779), - [anon_sym_PERCENT] = ACTIONS(7781), - [anon_sym_PIPE_PIPE] = ACTIONS(7781), - [anon_sym_AMP_AMP] = ACTIONS(7781), - [anon_sym_PIPE] = ACTIONS(7779), - [anon_sym_CARET] = ACTIONS(7781), - [anon_sym_AMP] = ACTIONS(7779), - [anon_sym_EQ_EQ] = ACTIONS(7781), - [anon_sym_BANG_EQ] = ACTIONS(7781), - [anon_sym_GT] = ACTIONS(7779), - [anon_sym_GT_EQ] = ACTIONS(7781), - [anon_sym_LT_EQ] = ACTIONS(7779), - [anon_sym_LT] = ACTIONS(7779), - [anon_sym_LT_LT] = ACTIONS(7781), - [anon_sym_GT_GT] = ACTIONS(7781), - [anon_sym_SEMI] = ACTIONS(7781), - [anon_sym___extension__] = ACTIONS(7779), - [anon_sym___attribute__] = ACTIONS(7779), - [anon_sym___attribute] = ACTIONS(7779), - [anon_sym_COLON] = ACTIONS(7779), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7781), - [anon_sym___based] = ACTIONS(7779), - [anon_sym_LBRACE] = ACTIONS(7781), - [anon_sym_RBRACE] = ACTIONS(7781), - [anon_sym_signed] = ACTIONS(7779), - [anon_sym_unsigned] = ACTIONS(7779), - [anon_sym_long] = ACTIONS(7779), - [anon_sym_short] = ACTIONS(7779), - [anon_sym_LBRACK] = ACTIONS(7781), - [anon_sym_const] = ACTIONS(7779), - [anon_sym_constexpr] = ACTIONS(7779), - [anon_sym_volatile] = ACTIONS(7779), - [anon_sym_restrict] = ACTIONS(7779), - [anon_sym___restrict__] = ACTIONS(7779), - [anon_sym__Atomic] = ACTIONS(7779), - [anon_sym__Noreturn] = ACTIONS(7779), - [anon_sym_noreturn] = ACTIONS(7779), - [anon_sym__Nonnull] = ACTIONS(7779), - [anon_sym_mutable] = ACTIONS(7779), - [anon_sym_constinit] = ACTIONS(7779), - [anon_sym_consteval] = ACTIONS(7779), - [anon_sym_alignas] = ACTIONS(7779), - [anon_sym__Alignas] = ACTIONS(7779), - [sym_primitive_type] = ACTIONS(7779), - [anon_sym_QMARK] = ACTIONS(7781), - [anon_sym_LT_EQ_GT] = ACTIONS(7781), - [anon_sym_or] = ACTIONS(7779), - [anon_sym_and] = ACTIONS(7779), - [anon_sym_bitor] = ACTIONS(7779), - [anon_sym_xor] = ACTIONS(7779), - [anon_sym_bitand] = ACTIONS(7779), - [anon_sym_not_eq] = ACTIONS(7779), - [anon_sym_DASH_DASH] = ACTIONS(7781), - [anon_sym_PLUS_PLUS] = ACTIONS(7781), - [anon_sym_DOT] = ACTIONS(7779), - [anon_sym_DOT_STAR] = ACTIONS(7781), - [anon_sym_DASH_GT] = ACTIONS(7781), + [STATE(3208)] = { + [sym_identifier] = ACTIONS(3157), + [aux_sym_preproc_def_token1] = ACTIONS(3157), + [aux_sym_preproc_if_token1] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3157), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3157), + [sym_preproc_directive] = ACTIONS(3157), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym___extension__] = ACTIONS(3157), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_virtual] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym___attribute__] = ACTIONS(3157), + [anon_sym___attribute] = ACTIONS(3157), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3155), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3155), + [anon_sym___declspec] = ACTIONS(3157), + [anon_sym___based] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_signed] = ACTIONS(3157), + [anon_sym_unsigned] = ACTIONS(3157), + [anon_sym_long] = ACTIONS(3157), + [anon_sym_short] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_register] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym___inline] = ACTIONS(3157), + [anon_sym___inline__] = ACTIONS(3157), + [anon_sym___forceinline] = ACTIONS(3157), + [anon_sym_thread_local] = ACTIONS(3157), + [anon_sym___thread] = ACTIONS(3157), + [anon_sym_const] = ACTIONS(3157), + [anon_sym_constexpr] = ACTIONS(3157), + [anon_sym_volatile] = ACTIONS(3157), + [anon_sym_restrict] = ACTIONS(3157), + [anon_sym___restrict__] = ACTIONS(3157), + [anon_sym__Atomic] = ACTIONS(3157), + [anon_sym__Noreturn] = ACTIONS(3157), + [anon_sym_noreturn] = ACTIONS(3157), + [anon_sym__Nonnull] = ACTIONS(3157), + [anon_sym_mutable] = ACTIONS(3157), + [anon_sym_constinit] = ACTIONS(3157), + [anon_sym_consteval] = ACTIONS(3157), + [anon_sym_alignas] = ACTIONS(3157), + [anon_sym__Alignas] = ACTIONS(3157), + [sym_primitive_type] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_struct] = ACTIONS(3157), + [anon_sym_union] = ACTIONS(3157), + [anon_sym_typename] = ACTIONS(3157), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3157), + [anon_sym_decltype] = ACTIONS(3157), + [anon_sym_explicit] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_template] = ACTIONS(3157), + [anon_sym_operator] = ACTIONS(3157), + [anon_sym_friend] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_protected] = ACTIONS(3157), + [anon_sym_static_assert] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_LBRACK_COLON] = ACTIONS(3155), + }, + [STATE(3209)] = { + [sym_identifier] = ACTIONS(9063), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9065), + [anon_sym_COMMA] = ACTIONS(9065), + [anon_sym_RPAREN] = ACTIONS(9065), + [aux_sym_preproc_if_token2] = ACTIONS(9065), + [aux_sym_preproc_else_token1] = ACTIONS(9065), + [aux_sym_preproc_elif_token1] = ACTIONS(9063), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9065), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9065), + [anon_sym_LPAREN2] = ACTIONS(9065), + [anon_sym_DASH] = ACTIONS(9063), + [anon_sym_PLUS] = ACTIONS(9063), + [anon_sym_STAR] = ACTIONS(9063), + [anon_sym_SLASH] = ACTIONS(9063), + [anon_sym_PERCENT] = ACTIONS(9063), + [anon_sym_PIPE_PIPE] = ACTIONS(9065), + [anon_sym_AMP_AMP] = ACTIONS(9065), + [anon_sym_PIPE] = ACTIONS(9063), + [anon_sym_CARET] = ACTIONS(9063), + [anon_sym_AMP] = ACTIONS(9063), + [anon_sym_EQ_EQ] = ACTIONS(9065), + [anon_sym_BANG_EQ] = ACTIONS(9065), + [anon_sym_GT] = ACTIONS(9063), + [anon_sym_GT_EQ] = ACTIONS(9065), + [anon_sym_LT_EQ] = ACTIONS(9063), + [anon_sym_LT] = ACTIONS(9063), + [anon_sym_LT_LT] = ACTIONS(9063), + [anon_sym_GT_GT] = ACTIONS(9063), + [anon_sym_SEMI] = ACTIONS(9065), + [anon_sym___attribute__] = ACTIONS(9063), + [anon_sym___attribute] = ACTIONS(9063), + [anon_sym_COLON] = ACTIONS(9063), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9065), + [anon_sym_LBRACE] = ACTIONS(9065), + [anon_sym_RBRACE] = ACTIONS(9065), + [anon_sym_LBRACK] = ACTIONS(9063), + [anon_sym_RBRACK] = ACTIONS(9065), + [anon_sym_EQ] = ACTIONS(9063), + [anon_sym_QMARK] = ACTIONS(9065), + [anon_sym_STAR_EQ] = ACTIONS(9065), + [anon_sym_SLASH_EQ] = ACTIONS(9065), + [anon_sym_PERCENT_EQ] = ACTIONS(9065), + [anon_sym_PLUS_EQ] = ACTIONS(9065), + [anon_sym_DASH_EQ] = ACTIONS(9065), + [anon_sym_LT_LT_EQ] = ACTIONS(9065), + [anon_sym_GT_GT_EQ] = ACTIONS(9065), + [anon_sym_AMP_EQ] = ACTIONS(9065), + [anon_sym_CARET_EQ] = ACTIONS(9065), + [anon_sym_PIPE_EQ] = ACTIONS(9065), + [anon_sym_and_eq] = ACTIONS(9063), + [anon_sym_or_eq] = ACTIONS(9063), + [anon_sym_xor_eq] = ACTIONS(9063), + [anon_sym_LT_EQ_GT] = ACTIONS(9065), + [anon_sym_or] = ACTIONS(9063), + [anon_sym_and] = ACTIONS(9063), + [anon_sym_bitor] = ACTIONS(9063), + [anon_sym_xor] = ACTIONS(9063), + [anon_sym_bitand] = ACTIONS(9063), + [anon_sym_not_eq] = ACTIONS(9063), + [anon_sym_DASH_DASH] = ACTIONS(9065), + [anon_sym_PLUS_PLUS] = ACTIONS(9065), + [anon_sym_asm] = ACTIONS(9063), + [anon_sym___asm__] = ACTIONS(9063), + [anon_sym___asm] = ACTIONS(9063), + [anon_sym_DOT] = ACTIONS(9063), + [anon_sym_DOT_STAR] = ACTIONS(9065), + [anon_sym_DASH_GT] = ACTIONS(9065), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7779), - [anon_sym_override] = ACTIONS(7779), - [anon_sym_requires] = ACTIONS(7779), - [anon_sym_COLON_RBRACK] = ACTIONS(7781), + [anon_sym_try] = ACTIONS(9063), + [anon_sym_COLON_RBRACK] = ACTIONS(9065), + }, + [STATE(3210)] = { + [sym_identifier] = ACTIONS(7723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7725), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7725), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7725), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7725), + [anon_sym_SEMI] = ACTIONS(7725), + [anon_sym___extension__] = ACTIONS(7723), + [anon_sym___attribute__] = ACTIONS(7723), + [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_COLON] = ACTIONS(7723), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7725), + [anon_sym___based] = ACTIONS(7723), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_RBRACE] = ACTIONS(7725), + [anon_sym_signed] = ACTIONS(7723), + [anon_sym_unsigned] = ACTIONS(7723), + [anon_sym_long] = ACTIONS(7723), + [anon_sym_short] = ACTIONS(7723), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7723), + [anon_sym_volatile] = ACTIONS(7723), + [anon_sym_restrict] = ACTIONS(7723), + [anon_sym___restrict__] = ACTIONS(7723), + [anon_sym__Atomic] = ACTIONS(7723), + [anon_sym__Noreturn] = ACTIONS(7723), + [anon_sym_noreturn] = ACTIONS(7723), + [anon_sym__Nonnull] = ACTIONS(7723), + [anon_sym_mutable] = ACTIONS(7723), + [anon_sym_constinit] = ACTIONS(7723), + [anon_sym_consteval] = ACTIONS(7723), + [anon_sym_alignas] = ACTIONS(7723), + [anon_sym__Alignas] = ACTIONS(7723), + [sym_primitive_type] = ACTIONS(7723), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7723), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7723), + [anon_sym_not_eq] = ACTIONS(7723), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7723), + [anon_sym_override] = ACTIONS(7723), + [anon_sym_requires] = ACTIONS(7723), + [anon_sym_COLON_RBRACK] = ACTIONS(7725), + }, + [STATE(3211)] = { + [sym_identifier] = ACTIONS(7606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7608), + [anon_sym_COMMA] = ACTIONS(7608), + [anon_sym_RPAREN] = ACTIONS(7608), + [anon_sym_LPAREN2] = ACTIONS(7608), + [anon_sym_DASH] = ACTIONS(7606), + [anon_sym_PLUS] = ACTIONS(7606), + [anon_sym_STAR] = ACTIONS(7608), + [anon_sym_SLASH] = ACTIONS(7606), + [anon_sym_PERCENT] = ACTIONS(7608), + [anon_sym_PIPE_PIPE] = ACTIONS(7608), + [anon_sym_AMP_AMP] = ACTIONS(7608), + [anon_sym_PIPE] = ACTIONS(7606), + [anon_sym_CARET] = ACTIONS(7608), + [anon_sym_AMP] = ACTIONS(7606), + [anon_sym_EQ_EQ] = ACTIONS(7608), + [anon_sym_BANG_EQ] = ACTIONS(7608), + [anon_sym_GT] = ACTIONS(7606), + [anon_sym_GT_EQ] = ACTIONS(7608), + [anon_sym_LT_EQ] = ACTIONS(7606), + [anon_sym_LT] = ACTIONS(7606), + [anon_sym_LT_LT] = ACTIONS(7608), + [anon_sym_GT_GT] = ACTIONS(7608), + [anon_sym_SEMI] = ACTIONS(7608), + [anon_sym___extension__] = ACTIONS(7606), + [anon_sym___attribute__] = ACTIONS(7606), + [anon_sym___attribute] = ACTIONS(7606), + [anon_sym_COLON] = ACTIONS(7606), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7608), + [anon_sym___based] = ACTIONS(7606), + [anon_sym_LBRACE] = ACTIONS(7608), + [anon_sym_RBRACE] = ACTIONS(7608), + [anon_sym_signed] = ACTIONS(7606), + [anon_sym_unsigned] = ACTIONS(7606), + [anon_sym_long] = ACTIONS(7606), + [anon_sym_short] = ACTIONS(7606), + [anon_sym_LBRACK] = ACTIONS(7608), + [anon_sym_const] = ACTIONS(7606), + [anon_sym_constexpr] = ACTIONS(7606), + [anon_sym_volatile] = ACTIONS(7606), + [anon_sym_restrict] = ACTIONS(7606), + [anon_sym___restrict__] = ACTIONS(7606), + [anon_sym__Atomic] = ACTIONS(7606), + [anon_sym__Noreturn] = ACTIONS(7606), + [anon_sym_noreturn] = ACTIONS(7606), + [anon_sym__Nonnull] = ACTIONS(7606), + [anon_sym_mutable] = ACTIONS(7606), + [anon_sym_constinit] = ACTIONS(7606), + [anon_sym_consteval] = ACTIONS(7606), + [anon_sym_alignas] = ACTIONS(7606), + [anon_sym__Alignas] = ACTIONS(7606), + [sym_primitive_type] = ACTIONS(7606), + [anon_sym_QMARK] = ACTIONS(7608), + [anon_sym_LT_EQ_GT] = ACTIONS(7608), + [anon_sym_or] = ACTIONS(7606), + [anon_sym_and] = ACTIONS(7606), + [anon_sym_bitor] = ACTIONS(7606), + [anon_sym_xor] = ACTIONS(7606), + [anon_sym_bitand] = ACTIONS(7606), + [anon_sym_not_eq] = ACTIONS(7606), + [anon_sym_DASH_DASH] = ACTIONS(7608), + [anon_sym_PLUS_PLUS] = ACTIONS(7608), + [anon_sym_DOT] = ACTIONS(7606), + [anon_sym_DOT_STAR] = ACTIONS(7608), + [anon_sym_DASH_GT] = ACTIONS(7608), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7606), + [anon_sym_override] = ACTIONS(7606), + [anon_sym_requires] = ACTIONS(7606), + [anon_sym_COLON_RBRACK] = ACTIONS(7608), + }, + [STATE(3212)] = { + [sym_attribute_specifier] = STATE(3763), + [sym_attribute_declaration] = STATE(6403), + [sym_type_qualifier] = STATE(3705), + [sym_alignas_qualifier] = STATE(4021), + [aux_sym_type_definition_repeat1] = STATE(3763), + [aux_sym__type_definition_type_repeat1] = STATE(3705), + [aux_sym_attributed_declarator_repeat1] = STATE(6403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6748), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6748), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6748), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6748), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(7914), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(7922), + [anon_sym_constexpr] = ACTIONS(7914), + [anon_sym_volatile] = ACTIONS(7914), + [anon_sym_restrict] = ACTIONS(7914), + [anon_sym___restrict__] = ACTIONS(7914), + [anon_sym__Atomic] = ACTIONS(7914), + [anon_sym__Noreturn] = ACTIONS(7914), + [anon_sym_noreturn] = ACTIONS(7914), + [anon_sym__Nonnull] = ACTIONS(7914), + [anon_sym_mutable] = ACTIONS(7914), + [anon_sym_constinit] = ACTIONS(7914), + [anon_sym_consteval] = ACTIONS(7914), + [anon_sym_alignas] = ACTIONS(7924), + [anon_sym__Alignas] = ACTIONS(7924), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6748), + [anon_sym_and] = ACTIONS(6748), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6748), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_GT2] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), + }, + [STATE(3213)] = { + [sym_identifier] = ACTIONS(7727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), + [anon_sym_COMMA] = ACTIONS(7729), + [anon_sym_RPAREN] = ACTIONS(7729), + [anon_sym_LPAREN2] = ACTIONS(7729), + [anon_sym_DASH] = ACTIONS(7727), + [anon_sym_PLUS] = ACTIONS(7727), + [anon_sym_STAR] = ACTIONS(7729), + [anon_sym_SLASH] = ACTIONS(7727), + [anon_sym_PERCENT] = ACTIONS(7729), + [anon_sym_PIPE_PIPE] = ACTIONS(7729), + [anon_sym_AMP_AMP] = ACTIONS(7729), + [anon_sym_PIPE] = ACTIONS(7727), + [anon_sym_CARET] = ACTIONS(7729), + [anon_sym_AMP] = ACTIONS(7727), + [anon_sym_EQ_EQ] = ACTIONS(7729), + [anon_sym_BANG_EQ] = ACTIONS(7729), + [anon_sym_GT] = ACTIONS(7727), + [anon_sym_GT_EQ] = ACTIONS(7729), + [anon_sym_LT_EQ] = ACTIONS(7727), + [anon_sym_LT] = ACTIONS(7727), + [anon_sym_LT_LT] = ACTIONS(7729), + [anon_sym_GT_GT] = ACTIONS(7729), + [anon_sym_SEMI] = ACTIONS(7729), + [anon_sym___extension__] = ACTIONS(7727), + [anon_sym___attribute__] = ACTIONS(7727), + [anon_sym___attribute] = ACTIONS(7727), + [anon_sym_COLON] = ACTIONS(7727), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7729), + [anon_sym___based] = ACTIONS(7727), + [anon_sym_LBRACE] = ACTIONS(7729), + [anon_sym_RBRACE] = ACTIONS(7729), + [anon_sym_signed] = ACTIONS(7727), + [anon_sym_unsigned] = ACTIONS(7727), + [anon_sym_long] = ACTIONS(7727), + [anon_sym_short] = ACTIONS(7727), + [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_const] = ACTIONS(7727), + [anon_sym_constexpr] = ACTIONS(7727), + [anon_sym_volatile] = ACTIONS(7727), + [anon_sym_restrict] = ACTIONS(7727), + [anon_sym___restrict__] = ACTIONS(7727), + [anon_sym__Atomic] = ACTIONS(7727), + [anon_sym__Noreturn] = ACTIONS(7727), + [anon_sym_noreturn] = ACTIONS(7727), + [anon_sym__Nonnull] = ACTIONS(7727), + [anon_sym_mutable] = ACTIONS(7727), + [anon_sym_constinit] = ACTIONS(7727), + [anon_sym_consteval] = ACTIONS(7727), + [anon_sym_alignas] = ACTIONS(7727), + [anon_sym__Alignas] = ACTIONS(7727), + [sym_primitive_type] = ACTIONS(7727), + [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_LT_EQ_GT] = ACTIONS(7729), + [anon_sym_or] = ACTIONS(7727), + [anon_sym_and] = ACTIONS(7727), + [anon_sym_bitor] = ACTIONS(7727), + [anon_sym_xor] = ACTIONS(7727), + [anon_sym_bitand] = ACTIONS(7727), + [anon_sym_not_eq] = ACTIONS(7727), + [anon_sym_DASH_DASH] = ACTIONS(7729), + [anon_sym_PLUS_PLUS] = ACTIONS(7729), + [anon_sym_DOT] = ACTIONS(7727), + [anon_sym_DOT_STAR] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7729), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7727), + [anon_sym_override] = ACTIONS(7727), + [anon_sym_requires] = ACTIONS(7727), + [anon_sym_COLON_RBRACK] = ACTIONS(7729), + }, + [STATE(3214)] = { + [sym_identifier] = ACTIONS(7672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7674), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7674), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7674), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7674), + [anon_sym_GT_GT] = ACTIONS(7674), + [anon_sym_SEMI] = ACTIONS(7674), + [anon_sym___extension__] = ACTIONS(7672), + [anon_sym___attribute__] = ACTIONS(7672), + [anon_sym___attribute] = ACTIONS(7672), + [anon_sym_COLON] = ACTIONS(7672), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7674), + [anon_sym___based] = ACTIONS(7672), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_RBRACE] = ACTIONS(7674), + [anon_sym_signed] = ACTIONS(7672), + [anon_sym_unsigned] = ACTIONS(7672), + [anon_sym_long] = ACTIONS(7672), + [anon_sym_short] = ACTIONS(7672), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7672), + [anon_sym_volatile] = ACTIONS(7672), + [anon_sym_restrict] = ACTIONS(7672), + [anon_sym___restrict__] = ACTIONS(7672), + [anon_sym__Atomic] = ACTIONS(7672), + [anon_sym__Noreturn] = ACTIONS(7672), + [anon_sym_noreturn] = ACTIONS(7672), + [anon_sym__Nonnull] = ACTIONS(7672), + [anon_sym_mutable] = ACTIONS(7672), + [anon_sym_constinit] = ACTIONS(7672), + [anon_sym_consteval] = ACTIONS(7672), + [anon_sym_alignas] = ACTIONS(7672), + [anon_sym__Alignas] = ACTIONS(7672), + [sym_primitive_type] = ACTIONS(7672), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7672), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7672), + [anon_sym_not_eq] = ACTIONS(7672), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_COLON_RBRACK] = ACTIONS(7674), + }, + [STATE(3215)] = { + [sym_identifier] = ACTIONS(7610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7612), + [anon_sym_COMMA] = ACTIONS(7612), + [anon_sym_RPAREN] = ACTIONS(7612), + [anon_sym_LPAREN2] = ACTIONS(7612), + [anon_sym_DASH] = ACTIONS(7610), + [anon_sym_PLUS] = ACTIONS(7610), + [anon_sym_STAR] = ACTIONS(7612), + [anon_sym_SLASH] = ACTIONS(7610), + [anon_sym_PERCENT] = ACTIONS(7612), + [anon_sym_PIPE_PIPE] = ACTIONS(7612), + [anon_sym_AMP_AMP] = ACTIONS(7612), + [anon_sym_PIPE] = ACTIONS(7610), + [anon_sym_CARET] = ACTIONS(7612), + [anon_sym_AMP] = ACTIONS(7610), + [anon_sym_EQ_EQ] = ACTIONS(7612), + [anon_sym_BANG_EQ] = ACTIONS(7612), + [anon_sym_GT] = ACTIONS(7610), + [anon_sym_GT_EQ] = ACTIONS(7612), + [anon_sym_LT_EQ] = ACTIONS(7610), + [anon_sym_LT] = ACTIONS(7610), + [anon_sym_LT_LT] = ACTIONS(7612), + [anon_sym_GT_GT] = ACTIONS(7612), + [anon_sym_SEMI] = ACTIONS(7612), + [anon_sym___extension__] = ACTIONS(7610), + [anon_sym___attribute__] = ACTIONS(7610), + [anon_sym___attribute] = ACTIONS(7610), + [anon_sym_COLON] = ACTIONS(7610), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7612), + [anon_sym___based] = ACTIONS(7610), + [anon_sym_LBRACE] = ACTIONS(7612), + [anon_sym_RBRACE] = ACTIONS(7612), + [anon_sym_signed] = ACTIONS(7610), + [anon_sym_unsigned] = ACTIONS(7610), + [anon_sym_long] = ACTIONS(7610), + [anon_sym_short] = ACTIONS(7610), + [anon_sym_LBRACK] = ACTIONS(7612), + [anon_sym_const] = ACTIONS(7610), + [anon_sym_constexpr] = ACTIONS(7610), + [anon_sym_volatile] = ACTIONS(7610), + [anon_sym_restrict] = ACTIONS(7610), + [anon_sym___restrict__] = ACTIONS(7610), + [anon_sym__Atomic] = ACTIONS(7610), + [anon_sym__Noreturn] = ACTIONS(7610), + [anon_sym_noreturn] = ACTIONS(7610), + [anon_sym__Nonnull] = ACTIONS(7610), + [anon_sym_mutable] = ACTIONS(7610), + [anon_sym_constinit] = ACTIONS(7610), + [anon_sym_consteval] = ACTIONS(7610), + [anon_sym_alignas] = ACTIONS(7610), + [anon_sym__Alignas] = ACTIONS(7610), + [sym_primitive_type] = ACTIONS(7610), + [anon_sym_QMARK] = ACTIONS(7612), + [anon_sym_LT_EQ_GT] = ACTIONS(7612), + [anon_sym_or] = ACTIONS(7610), + [anon_sym_and] = ACTIONS(7610), + [anon_sym_bitor] = ACTIONS(7610), + [anon_sym_xor] = ACTIONS(7610), + [anon_sym_bitand] = ACTIONS(7610), + [anon_sym_not_eq] = ACTIONS(7610), + [anon_sym_DASH_DASH] = ACTIONS(7612), + [anon_sym_PLUS_PLUS] = ACTIONS(7612), + [anon_sym_DOT] = ACTIONS(7610), + [anon_sym_DOT_STAR] = ACTIONS(7612), + [anon_sym_DASH_GT] = ACTIONS(7612), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7610), + [anon_sym_override] = ACTIONS(7610), + [anon_sym_requires] = ACTIONS(7610), + [anon_sym_COLON_RBRACK] = ACTIONS(7612), }, [STATE(3216)] = { - [sym_identifier] = ACTIONS(9095), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9097), - [anon_sym_COMMA] = ACTIONS(9097), - [anon_sym_RPAREN] = ACTIONS(9097), - [aux_sym_preproc_if_token2] = ACTIONS(9097), - [aux_sym_preproc_else_token1] = ACTIONS(9097), - [aux_sym_preproc_elif_token1] = ACTIONS(9095), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9097), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9097), - [anon_sym_LPAREN2] = ACTIONS(9097), - [anon_sym_DASH] = ACTIONS(9095), - [anon_sym_PLUS] = ACTIONS(9095), - [anon_sym_STAR] = ACTIONS(9095), - [anon_sym_SLASH] = ACTIONS(9095), - [anon_sym_PERCENT] = ACTIONS(9095), - [anon_sym_PIPE_PIPE] = ACTIONS(9097), - [anon_sym_AMP_AMP] = ACTIONS(9097), - [anon_sym_PIPE] = ACTIONS(9095), - [anon_sym_CARET] = ACTIONS(9095), - [anon_sym_AMP] = ACTIONS(9095), - [anon_sym_EQ_EQ] = ACTIONS(9097), - [anon_sym_BANG_EQ] = ACTIONS(9097), - [anon_sym_GT] = ACTIONS(9095), - [anon_sym_GT_EQ] = ACTIONS(9097), - [anon_sym_LT_EQ] = ACTIONS(9095), - [anon_sym_LT] = ACTIONS(9095), - [anon_sym_LT_LT] = ACTIONS(9095), - [anon_sym_GT_GT] = ACTIONS(9095), - [anon_sym_SEMI] = ACTIONS(9097), - [anon_sym___attribute__] = ACTIONS(9095), - [anon_sym___attribute] = ACTIONS(9095), - [anon_sym_COLON] = ACTIONS(9095), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9097), - [anon_sym_LBRACE] = ACTIONS(9097), - [anon_sym_RBRACE] = ACTIONS(9097), - [anon_sym_LBRACK] = ACTIONS(9095), - [anon_sym_RBRACK] = ACTIONS(9097), - [anon_sym_EQ] = ACTIONS(9095), - [anon_sym_QMARK] = ACTIONS(9097), - [anon_sym_STAR_EQ] = ACTIONS(9097), - [anon_sym_SLASH_EQ] = ACTIONS(9097), - [anon_sym_PERCENT_EQ] = ACTIONS(9097), - [anon_sym_PLUS_EQ] = ACTIONS(9097), - [anon_sym_DASH_EQ] = ACTIONS(9097), - [anon_sym_LT_LT_EQ] = ACTIONS(9097), - [anon_sym_GT_GT_EQ] = ACTIONS(9097), - [anon_sym_AMP_EQ] = ACTIONS(9097), - [anon_sym_CARET_EQ] = ACTIONS(9097), - [anon_sym_PIPE_EQ] = ACTIONS(9097), - [anon_sym_and_eq] = ACTIONS(9095), - [anon_sym_or_eq] = ACTIONS(9095), - [anon_sym_xor_eq] = ACTIONS(9095), - [anon_sym_LT_EQ_GT] = ACTIONS(9097), - [anon_sym_or] = ACTIONS(9095), - [anon_sym_and] = ACTIONS(9095), - [anon_sym_bitor] = ACTIONS(9095), - [anon_sym_xor] = ACTIONS(9095), - [anon_sym_bitand] = ACTIONS(9095), - [anon_sym_not_eq] = ACTIONS(9095), - [anon_sym_DASH_DASH] = ACTIONS(9097), - [anon_sym_PLUS_PLUS] = ACTIONS(9097), - [anon_sym_asm] = ACTIONS(9095), - [anon_sym___asm__] = ACTIONS(9095), - [anon_sym___asm] = ACTIONS(9095), - [anon_sym_DOT] = ACTIONS(9095), - [anon_sym_DOT_STAR] = ACTIONS(9097), - [anon_sym_DASH_GT] = ACTIONS(9097), - [sym_comment] = ACTIONS(3), - [anon_sym_try] = ACTIONS(9095), - [anon_sym_COLON_RBRACK] = ACTIONS(9097), + [sym_identifier] = ACTIONS(7672), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7674), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7674), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7674), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7674), + [anon_sym_GT_GT] = ACTIONS(7674), + [anon_sym_SEMI] = ACTIONS(7674), + [anon_sym___extension__] = ACTIONS(7672), + [anon_sym___attribute__] = ACTIONS(7672), + [anon_sym___attribute] = ACTIONS(7672), + [anon_sym_COLON] = ACTIONS(7672), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7674), + [anon_sym___based] = ACTIONS(7672), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_RBRACE] = ACTIONS(7674), + [anon_sym_signed] = ACTIONS(7672), + [anon_sym_unsigned] = ACTIONS(7672), + [anon_sym_long] = ACTIONS(7672), + [anon_sym_short] = ACTIONS(7672), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7672), + [anon_sym_volatile] = ACTIONS(7672), + [anon_sym_restrict] = ACTIONS(7672), + [anon_sym___restrict__] = ACTIONS(7672), + [anon_sym__Atomic] = ACTIONS(7672), + [anon_sym__Noreturn] = ACTIONS(7672), + [anon_sym_noreturn] = ACTIONS(7672), + [anon_sym__Nonnull] = ACTIONS(7672), + [anon_sym_mutable] = ACTIONS(7672), + [anon_sym_constinit] = ACTIONS(7672), + [anon_sym_consteval] = ACTIONS(7672), + [anon_sym_alignas] = ACTIONS(7672), + [anon_sym__Alignas] = ACTIONS(7672), + [sym_primitive_type] = ACTIONS(7672), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7672), + [anon_sym_and] = ACTIONS(7672), + [anon_sym_bitor] = ACTIONS(7672), + [anon_sym_xor] = ACTIONS(7672), + [anon_sym_bitand] = ACTIONS(7672), + [anon_sym_not_eq] = ACTIONS(7672), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7674), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7672), + [anon_sym_override] = ACTIONS(7672), + [anon_sym_requires] = ACTIONS(7672), + [anon_sym_COLON_RBRACK] = ACTIONS(7674), }, [STATE(3217)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), - [anon_sym_COMMA] = ACTIONS(7645), - [anon_sym_LPAREN2] = ACTIONS(7645), - [anon_sym_DASH] = ACTIONS(7643), - [anon_sym_PLUS] = ACTIONS(7643), - [anon_sym_STAR] = ACTIONS(7643), - [anon_sym_SLASH] = ACTIONS(7643), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_PIPE_PIPE] = ACTIONS(7645), - [anon_sym_AMP_AMP] = ACTIONS(7645), - [anon_sym_PIPE] = ACTIONS(7643), - [anon_sym_CARET] = ACTIONS(7643), - [anon_sym_AMP] = ACTIONS(7643), - [anon_sym_EQ_EQ] = ACTIONS(7645), - [anon_sym_BANG_EQ] = ACTIONS(7645), - [anon_sym_GT] = ACTIONS(7643), - [anon_sym_GT_EQ] = ACTIONS(7643), - [anon_sym_LT_EQ] = ACTIONS(7643), - [anon_sym_LT] = ACTIONS(7643), - [anon_sym_LT_LT] = ACTIONS(7643), - [anon_sym_GT_GT] = ACTIONS(7643), - [anon_sym___extension__] = ACTIONS(7645), - [anon_sym_LBRACE] = ACTIONS(7645), - [anon_sym_LBRACK] = ACTIONS(7645), - [anon_sym_EQ] = ACTIONS(7643), - [anon_sym_const] = ACTIONS(7643), - [anon_sym_constexpr] = ACTIONS(7645), - [anon_sym_volatile] = ACTIONS(7645), - [anon_sym_restrict] = ACTIONS(7645), - [anon_sym___restrict__] = ACTIONS(7645), - [anon_sym__Atomic] = ACTIONS(7645), - [anon_sym__Noreturn] = ACTIONS(7645), - [anon_sym_noreturn] = ACTIONS(7645), - [anon_sym__Nonnull] = ACTIONS(7645), - [anon_sym_mutable] = ACTIONS(7645), - [anon_sym_constinit] = ACTIONS(7645), - [anon_sym_consteval] = ACTIONS(7645), - [anon_sym_alignas] = ACTIONS(7645), - [anon_sym__Alignas] = ACTIONS(7645), - [anon_sym_QMARK] = ACTIONS(7645), - [anon_sym_STAR_EQ] = ACTIONS(7645), - [anon_sym_SLASH_EQ] = ACTIONS(7645), - [anon_sym_PERCENT_EQ] = ACTIONS(7645), - [anon_sym_PLUS_EQ] = ACTIONS(7645), - [anon_sym_DASH_EQ] = ACTIONS(7645), - [anon_sym_LT_LT_EQ] = ACTIONS(7645), - [anon_sym_GT_GT_EQ] = ACTIONS(7643), - [anon_sym_AMP_EQ] = ACTIONS(7645), - [anon_sym_CARET_EQ] = ACTIONS(7645), - [anon_sym_PIPE_EQ] = ACTIONS(7645), - [anon_sym_and_eq] = ACTIONS(7645), - [anon_sym_or_eq] = ACTIONS(7645), - [anon_sym_xor_eq] = ACTIONS(7645), - [anon_sym_LT_EQ_GT] = ACTIONS(7645), - [anon_sym_or] = ACTIONS(7643), - [anon_sym_and] = ACTIONS(7643), - [anon_sym_bitor] = ACTIONS(7645), - [anon_sym_xor] = ACTIONS(7643), - [anon_sym_bitand] = ACTIONS(7645), - [anon_sym_not_eq] = ACTIONS(7645), - [anon_sym_DASH_DASH] = ACTIONS(7645), - [anon_sym_PLUS_PLUS] = ACTIONS(7645), - [anon_sym_DOT] = ACTIONS(7643), - [anon_sym_DOT_STAR] = ACTIONS(7645), - [anon_sym_DASH_GT] = ACTIONS(7645), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7645), - [anon_sym_override] = ACTIONS(7645), - [anon_sym_GT2] = ACTIONS(7645), - [anon_sym_requires] = ACTIONS(7645), + [sym_attribute_specifier] = STATE(3816), + [sym_attribute_declaration] = STATE(6423), + [sym_type_qualifier] = STATE(3723), + [sym_alignas_qualifier] = STATE(4020), + [aux_sym_type_definition_repeat1] = STATE(3816), + [aux_sym__type_definition_type_repeat1] = STATE(3723), + [aux_sym_attributed_declarator_repeat1] = STATE(6423), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6748), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6748), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6748), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6748), + [anon_sym_GT_GT] = ACTIONS(6748), + [anon_sym___extension__] = ACTIONS(7803), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_RBRACK] = ACTIONS(6748), + [anon_sym_const] = ACTIONS(7811), + [anon_sym_constexpr] = ACTIONS(7803), + [anon_sym_volatile] = ACTIONS(7803), + [anon_sym_restrict] = ACTIONS(7803), + [anon_sym___restrict__] = ACTIONS(7803), + [anon_sym__Atomic] = ACTIONS(7803), + [anon_sym__Noreturn] = ACTIONS(7803), + [anon_sym_noreturn] = ACTIONS(7803), + [anon_sym__Nonnull] = ACTIONS(7803), + [anon_sym_mutable] = ACTIONS(7803), + [anon_sym_constinit] = ACTIONS(7803), + [anon_sym_consteval] = ACTIONS(7803), + [anon_sym_alignas] = ACTIONS(7813), + [anon_sym__Alignas] = ACTIONS(7813), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6748), + [anon_sym_and] = ACTIONS(6748), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6748), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), }, [STATE(3218)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), - [anon_sym_COMMA] = ACTIONS(7571), - [anon_sym_LPAREN2] = ACTIONS(7571), - [anon_sym_DASH] = ACTIONS(7569), - [anon_sym_PLUS] = ACTIONS(7569), - [anon_sym_STAR] = ACTIONS(7569), - [anon_sym_SLASH] = ACTIONS(7569), - [anon_sym_PERCENT] = ACTIONS(7569), - [anon_sym_PIPE_PIPE] = ACTIONS(7571), - [anon_sym_AMP_AMP] = ACTIONS(7571), - [anon_sym_PIPE] = ACTIONS(7569), - [anon_sym_CARET] = ACTIONS(7569), - [anon_sym_AMP] = ACTIONS(7569), - [anon_sym_EQ_EQ] = ACTIONS(7571), - [anon_sym_BANG_EQ] = ACTIONS(7571), - [anon_sym_GT] = ACTIONS(7569), - [anon_sym_GT_EQ] = ACTIONS(7569), - [anon_sym_LT_EQ] = ACTIONS(7569), - [anon_sym_LT] = ACTIONS(7569), - [anon_sym_LT_LT] = ACTIONS(7569), - [anon_sym_GT_GT] = ACTIONS(7569), - [anon_sym___extension__] = ACTIONS(7571), - [anon_sym_LBRACE] = ACTIONS(7571), - [anon_sym_LBRACK] = ACTIONS(7571), - [anon_sym_EQ] = ACTIONS(7569), - [anon_sym_const] = ACTIONS(7569), - [anon_sym_constexpr] = ACTIONS(7571), - [anon_sym_volatile] = ACTIONS(7571), - [anon_sym_restrict] = ACTIONS(7571), - [anon_sym___restrict__] = ACTIONS(7571), - [anon_sym__Atomic] = ACTIONS(7571), - [anon_sym__Noreturn] = ACTIONS(7571), - [anon_sym_noreturn] = ACTIONS(7571), - [anon_sym__Nonnull] = ACTIONS(7571), - [anon_sym_mutable] = ACTIONS(7571), - [anon_sym_constinit] = ACTIONS(7571), - [anon_sym_consteval] = ACTIONS(7571), - [anon_sym_alignas] = ACTIONS(7571), - [anon_sym__Alignas] = ACTIONS(7571), - [anon_sym_QMARK] = ACTIONS(7571), - [anon_sym_STAR_EQ] = ACTIONS(7571), - [anon_sym_SLASH_EQ] = ACTIONS(7571), - [anon_sym_PERCENT_EQ] = ACTIONS(7571), - [anon_sym_PLUS_EQ] = ACTIONS(7571), - [anon_sym_DASH_EQ] = ACTIONS(7571), - [anon_sym_LT_LT_EQ] = ACTIONS(7571), - [anon_sym_GT_GT_EQ] = ACTIONS(7569), - [anon_sym_AMP_EQ] = ACTIONS(7571), - [anon_sym_CARET_EQ] = ACTIONS(7571), - [anon_sym_PIPE_EQ] = ACTIONS(7571), - [anon_sym_and_eq] = ACTIONS(7571), - [anon_sym_or_eq] = ACTIONS(7571), - [anon_sym_xor_eq] = ACTIONS(7571), - [anon_sym_LT_EQ_GT] = ACTIONS(7571), - [anon_sym_or] = ACTIONS(7569), - [anon_sym_and] = ACTIONS(7569), - [anon_sym_bitor] = ACTIONS(7571), - [anon_sym_xor] = ACTIONS(7569), - [anon_sym_bitand] = ACTIONS(7571), - [anon_sym_not_eq] = ACTIONS(7571), - [anon_sym_DASH_DASH] = ACTIONS(7571), - [anon_sym_PLUS_PLUS] = ACTIONS(7571), - [anon_sym_DOT] = ACTIONS(7569), - [anon_sym_DOT_STAR] = ACTIONS(7571), - [anon_sym_DASH_GT] = ACTIONS(7571), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7571), - [anon_sym_override] = ACTIONS(7571), - [anon_sym_GT2] = ACTIONS(7571), - [anon_sym_requires] = ACTIONS(7571), + [sym_identifier] = ACTIONS(7549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7551), + [anon_sym_COMMA] = ACTIONS(7551), + [anon_sym_RPAREN] = ACTIONS(7551), + [anon_sym_LPAREN2] = ACTIONS(7551), + [anon_sym_DASH] = ACTIONS(7549), + [anon_sym_PLUS] = ACTIONS(7549), + [anon_sym_STAR] = ACTIONS(7551), + [anon_sym_SLASH] = ACTIONS(7549), + [anon_sym_PERCENT] = ACTIONS(7551), + [anon_sym_PIPE_PIPE] = ACTIONS(7551), + [anon_sym_AMP_AMP] = ACTIONS(7551), + [anon_sym_PIPE] = ACTIONS(7549), + [anon_sym_CARET] = ACTIONS(7551), + [anon_sym_AMP] = ACTIONS(7549), + [anon_sym_EQ_EQ] = ACTIONS(7551), + [anon_sym_BANG_EQ] = ACTIONS(7551), + [anon_sym_GT] = ACTIONS(7549), + [anon_sym_GT_EQ] = ACTIONS(7551), + [anon_sym_LT_EQ] = ACTIONS(7549), + [anon_sym_LT] = ACTIONS(7549), + [anon_sym_LT_LT] = ACTIONS(7551), + [anon_sym_GT_GT] = ACTIONS(7551), + [anon_sym_SEMI] = ACTIONS(7551), + [anon_sym___extension__] = ACTIONS(7549), + [anon_sym___attribute__] = ACTIONS(7549), + [anon_sym___attribute] = ACTIONS(7549), + [anon_sym_COLON] = ACTIONS(7549), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7551), + [anon_sym___based] = ACTIONS(7549), + [anon_sym_LBRACE] = ACTIONS(7551), + [anon_sym_RBRACE] = ACTIONS(7551), + [anon_sym_signed] = ACTIONS(7549), + [anon_sym_unsigned] = ACTIONS(7549), + [anon_sym_long] = ACTIONS(7549), + [anon_sym_short] = ACTIONS(7549), + [anon_sym_LBRACK] = ACTIONS(7551), + [anon_sym_const] = ACTIONS(7549), + [anon_sym_constexpr] = ACTIONS(7549), + [anon_sym_volatile] = ACTIONS(7549), + [anon_sym_restrict] = ACTIONS(7549), + [anon_sym___restrict__] = ACTIONS(7549), + [anon_sym__Atomic] = ACTIONS(7549), + [anon_sym__Noreturn] = ACTIONS(7549), + [anon_sym_noreturn] = ACTIONS(7549), + [anon_sym__Nonnull] = ACTIONS(7549), + [anon_sym_mutable] = ACTIONS(7549), + [anon_sym_constinit] = ACTIONS(7549), + [anon_sym_consteval] = ACTIONS(7549), + [anon_sym_alignas] = ACTIONS(7549), + [anon_sym__Alignas] = ACTIONS(7549), + [sym_primitive_type] = ACTIONS(7549), + [anon_sym_QMARK] = ACTIONS(7551), + [anon_sym_LT_EQ_GT] = ACTIONS(7551), + [anon_sym_or] = ACTIONS(7549), + [anon_sym_and] = ACTIONS(7549), + [anon_sym_bitor] = ACTIONS(7549), + [anon_sym_xor] = ACTIONS(7549), + [anon_sym_bitand] = ACTIONS(7549), + [anon_sym_not_eq] = ACTIONS(7549), + [anon_sym_DASH_DASH] = ACTIONS(7551), + [anon_sym_PLUS_PLUS] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7549), + [anon_sym_DOT_STAR] = ACTIONS(7551), + [anon_sym_DASH_GT] = ACTIONS(7551), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7549), + [anon_sym_override] = ACTIONS(7549), + [anon_sym_requires] = ACTIONS(7549), + [anon_sym_COLON_RBRACK] = ACTIONS(7551), }, [STATE(3219)] = { - [sym_argument_list] = STATE(5789), - [sym_initializer_list] = STATE(5780), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8626), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_and_eq] = ACTIONS(7225), - [anon_sym_or_eq] = ACTIONS(7225), - [anon_sym_xor_eq] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(8566), + [anon_sym___attribute] = ACTIONS(8566), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), }, [STATE(3220)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), - [anon_sym_COMMA] = ACTIONS(7741), - [anon_sym_LPAREN2] = ACTIONS(7741), - [anon_sym_DASH] = ACTIONS(7739), - [anon_sym_PLUS] = ACTIONS(7739), - [anon_sym_STAR] = ACTIONS(7739), - [anon_sym_SLASH] = ACTIONS(7739), - [anon_sym_PERCENT] = ACTIONS(7739), - [anon_sym_PIPE_PIPE] = ACTIONS(7741), - [anon_sym_AMP_AMP] = ACTIONS(7741), - [anon_sym_PIPE] = ACTIONS(7739), - [anon_sym_CARET] = ACTIONS(7739), - [anon_sym_AMP] = ACTIONS(7739), - [anon_sym_EQ_EQ] = ACTIONS(7741), - [anon_sym_BANG_EQ] = ACTIONS(7741), - [anon_sym_GT] = ACTIONS(7739), - [anon_sym_GT_EQ] = ACTIONS(7739), - [anon_sym_LT_EQ] = ACTIONS(7739), - [anon_sym_LT] = ACTIONS(7739), - [anon_sym_LT_LT] = ACTIONS(7739), - [anon_sym_GT_GT] = ACTIONS(7739), - [anon_sym___extension__] = ACTIONS(7741), - [anon_sym_LBRACE] = ACTIONS(7741), - [anon_sym_LBRACK] = ACTIONS(7741), - [anon_sym_EQ] = ACTIONS(7739), - [anon_sym_const] = ACTIONS(7739), - [anon_sym_constexpr] = ACTIONS(7741), - [anon_sym_volatile] = ACTIONS(7741), - [anon_sym_restrict] = ACTIONS(7741), - [anon_sym___restrict__] = ACTIONS(7741), - [anon_sym__Atomic] = ACTIONS(7741), - [anon_sym__Noreturn] = ACTIONS(7741), - [anon_sym_noreturn] = ACTIONS(7741), - [anon_sym__Nonnull] = ACTIONS(7741), - [anon_sym_mutable] = ACTIONS(7741), - [anon_sym_constinit] = ACTIONS(7741), - [anon_sym_consteval] = ACTIONS(7741), - [anon_sym_alignas] = ACTIONS(7741), - [anon_sym__Alignas] = ACTIONS(7741), - [anon_sym_QMARK] = ACTIONS(7741), - [anon_sym_STAR_EQ] = ACTIONS(7741), - [anon_sym_SLASH_EQ] = ACTIONS(7741), - [anon_sym_PERCENT_EQ] = ACTIONS(7741), - [anon_sym_PLUS_EQ] = ACTIONS(7741), - [anon_sym_DASH_EQ] = ACTIONS(7741), - [anon_sym_LT_LT_EQ] = ACTIONS(7741), - [anon_sym_GT_GT_EQ] = ACTIONS(7739), - [anon_sym_AMP_EQ] = ACTIONS(7741), - [anon_sym_CARET_EQ] = ACTIONS(7741), - [anon_sym_PIPE_EQ] = ACTIONS(7741), - [anon_sym_and_eq] = ACTIONS(7741), - [anon_sym_or_eq] = ACTIONS(7741), - [anon_sym_xor_eq] = ACTIONS(7741), - [anon_sym_LT_EQ_GT] = ACTIONS(7741), - [anon_sym_or] = ACTIONS(7739), - [anon_sym_and] = ACTIONS(7739), - [anon_sym_bitor] = ACTIONS(7741), - [anon_sym_xor] = ACTIONS(7739), - [anon_sym_bitand] = ACTIONS(7741), - [anon_sym_not_eq] = ACTIONS(7741), - [anon_sym_DASH_DASH] = ACTIONS(7741), - [anon_sym_PLUS_PLUS] = ACTIONS(7741), - [anon_sym_DOT] = ACTIONS(7739), - [anon_sym_DOT_STAR] = ACTIONS(7741), - [anon_sym_DASH_GT] = ACTIONS(7741), + [sym_template_argument_list] = STATE(3755), + [aux_sym_sized_type_specifier_repeat1] = STATE(3552), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [anon_sym_RPAREN] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7359), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7359), + [anon_sym_SEMI] = ACTIONS(7359), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7359), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_RBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(6864), + [anon_sym_unsigned] = ACTIONS(6864), + [anon_sym_long] = ACTIONS(6864), + [anon_sym_short] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7359), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7741), - [anon_sym_override] = ACTIONS(7741), - [anon_sym_GT2] = ACTIONS(7741), - [anon_sym_requires] = ACTIONS(7741), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), + [anon_sym_COLON_RBRACK] = ACTIONS(7359), }, [STATE(3221)] = { - [sym_identifier] = ACTIONS(7631), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7633), - [anon_sym_COMMA] = ACTIONS(7633), - [anon_sym_RPAREN] = ACTIONS(7633), - [anon_sym_LPAREN2] = ACTIONS(7633), - [anon_sym_DASH] = ACTIONS(7631), - [anon_sym_PLUS] = ACTIONS(7631), - [anon_sym_STAR] = ACTIONS(7633), - [anon_sym_SLASH] = ACTIONS(7631), - [anon_sym_PERCENT] = ACTIONS(7633), - [anon_sym_PIPE_PIPE] = ACTIONS(7633), - [anon_sym_AMP_AMP] = ACTIONS(7633), - [anon_sym_PIPE] = ACTIONS(7631), - [anon_sym_CARET] = ACTIONS(7633), - [anon_sym_AMP] = ACTIONS(7631), - [anon_sym_EQ_EQ] = ACTIONS(7633), - [anon_sym_BANG_EQ] = ACTIONS(7633), - [anon_sym_GT] = ACTIONS(7631), - [anon_sym_GT_EQ] = ACTIONS(7633), - [anon_sym_LT_EQ] = ACTIONS(7631), - [anon_sym_LT] = ACTIONS(7631), - [anon_sym_LT_LT] = ACTIONS(7633), - [anon_sym_GT_GT] = ACTIONS(7633), - [anon_sym_SEMI] = ACTIONS(7633), - [anon_sym___extension__] = ACTIONS(7631), - [anon_sym___attribute__] = ACTIONS(7631), - [anon_sym___attribute] = ACTIONS(7631), - [anon_sym_COLON] = ACTIONS(7631), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7633), - [anon_sym___based] = ACTIONS(7631), - [anon_sym_LBRACE] = ACTIONS(7633), - [anon_sym_RBRACE] = ACTIONS(7633), - [anon_sym_signed] = ACTIONS(7631), - [anon_sym_unsigned] = ACTIONS(7631), - [anon_sym_long] = ACTIONS(7631), - [anon_sym_short] = ACTIONS(7631), - [anon_sym_LBRACK] = ACTIONS(7633), - [anon_sym_const] = ACTIONS(7631), - [anon_sym_constexpr] = ACTIONS(7631), - [anon_sym_volatile] = ACTIONS(7631), - [anon_sym_restrict] = ACTIONS(7631), - [anon_sym___restrict__] = ACTIONS(7631), - [anon_sym__Atomic] = ACTIONS(7631), - [anon_sym__Noreturn] = ACTIONS(7631), - [anon_sym_noreturn] = ACTIONS(7631), - [anon_sym__Nonnull] = ACTIONS(7631), - [anon_sym_mutable] = ACTIONS(7631), - [anon_sym_constinit] = ACTIONS(7631), - [anon_sym_consteval] = ACTIONS(7631), - [anon_sym_alignas] = ACTIONS(7631), - [anon_sym__Alignas] = ACTIONS(7631), - [sym_primitive_type] = ACTIONS(7631), - [anon_sym_QMARK] = ACTIONS(7633), - [anon_sym_LT_EQ_GT] = ACTIONS(7633), - [anon_sym_or] = ACTIONS(7631), - [anon_sym_and] = ACTIONS(7631), - [anon_sym_bitor] = ACTIONS(7631), - [anon_sym_xor] = ACTIONS(7631), - [anon_sym_bitand] = ACTIONS(7631), - [anon_sym_not_eq] = ACTIONS(7631), - [anon_sym_DASH_DASH] = ACTIONS(7633), - [anon_sym_PLUS_PLUS] = ACTIONS(7633), - [anon_sym_DOT] = ACTIONS(7631), - [anon_sym_DOT_STAR] = ACTIONS(7633), - [anon_sym_DASH_GT] = ACTIONS(7633), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7631), - [anon_sym_override] = ACTIONS(7631), - [anon_sym_requires] = ACTIONS(7631), - [anon_sym_COLON_RBRACK] = ACTIONS(7633), + [sym_argument_list] = STATE(5813), + [sym_initializer_list] = STATE(5760), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8630), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7246), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7248), }, [STATE(3222)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), - [anon_sym_COMMA] = ACTIONS(7745), - [anon_sym_LPAREN2] = ACTIONS(7745), - [anon_sym_DASH] = ACTIONS(7743), - [anon_sym_PLUS] = ACTIONS(7743), - [anon_sym_STAR] = ACTIONS(7743), - [anon_sym_SLASH] = ACTIONS(7743), - [anon_sym_PERCENT] = ACTIONS(7743), - [anon_sym_PIPE_PIPE] = ACTIONS(7745), - [anon_sym_AMP_AMP] = ACTIONS(7745), - [anon_sym_PIPE] = ACTIONS(7743), - [anon_sym_CARET] = ACTIONS(7743), - [anon_sym_AMP] = ACTIONS(7743), - [anon_sym_EQ_EQ] = ACTIONS(7745), - [anon_sym_BANG_EQ] = ACTIONS(7745), - [anon_sym_GT] = ACTIONS(7743), - [anon_sym_GT_EQ] = ACTIONS(7743), - [anon_sym_LT_EQ] = ACTIONS(7743), - [anon_sym_LT] = ACTIONS(7743), - [anon_sym_LT_LT] = ACTIONS(7743), - [anon_sym_GT_GT] = ACTIONS(7743), - [anon_sym___extension__] = ACTIONS(7745), - [anon_sym_LBRACE] = ACTIONS(7745), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_EQ] = ACTIONS(7743), - [anon_sym_const] = ACTIONS(7743), - [anon_sym_constexpr] = ACTIONS(7745), - [anon_sym_volatile] = ACTIONS(7745), - [anon_sym_restrict] = ACTIONS(7745), - [anon_sym___restrict__] = ACTIONS(7745), - [anon_sym__Atomic] = ACTIONS(7745), - [anon_sym__Noreturn] = ACTIONS(7745), - [anon_sym_noreturn] = ACTIONS(7745), - [anon_sym__Nonnull] = ACTIONS(7745), - [anon_sym_mutable] = ACTIONS(7745), - [anon_sym_constinit] = ACTIONS(7745), - [anon_sym_consteval] = ACTIONS(7745), - [anon_sym_alignas] = ACTIONS(7745), - [anon_sym__Alignas] = ACTIONS(7745), - [anon_sym_QMARK] = ACTIONS(7745), - [anon_sym_STAR_EQ] = ACTIONS(7745), - [anon_sym_SLASH_EQ] = ACTIONS(7745), - [anon_sym_PERCENT_EQ] = ACTIONS(7745), - [anon_sym_PLUS_EQ] = ACTIONS(7745), - [anon_sym_DASH_EQ] = ACTIONS(7745), - [anon_sym_LT_LT_EQ] = ACTIONS(7745), - [anon_sym_GT_GT_EQ] = ACTIONS(7743), - [anon_sym_AMP_EQ] = ACTIONS(7745), - [anon_sym_CARET_EQ] = ACTIONS(7745), - [anon_sym_PIPE_EQ] = ACTIONS(7745), - [anon_sym_and_eq] = ACTIONS(7745), - [anon_sym_or_eq] = ACTIONS(7745), - [anon_sym_xor_eq] = ACTIONS(7745), - [anon_sym_LT_EQ_GT] = ACTIONS(7745), - [anon_sym_or] = ACTIONS(7743), - [anon_sym_and] = ACTIONS(7743), - [anon_sym_bitor] = ACTIONS(7745), - [anon_sym_xor] = ACTIONS(7743), - [anon_sym_bitand] = ACTIONS(7745), - [anon_sym_not_eq] = ACTIONS(7745), - [anon_sym_DASH_DASH] = ACTIONS(7745), - [anon_sym_PLUS_PLUS] = ACTIONS(7745), - [anon_sym_DOT] = ACTIONS(7743), - [anon_sym_DOT_STAR] = ACTIONS(7745), - [anon_sym_DASH_GT] = ACTIONS(7745), + [sym_identifier] = ACTIONS(7723), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7725), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7725), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7725), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7725), + [anon_sym_SEMI] = ACTIONS(7725), + [anon_sym___extension__] = ACTIONS(7723), + [anon_sym___attribute__] = ACTIONS(7723), + [anon_sym___attribute] = ACTIONS(7723), + [anon_sym_COLON] = ACTIONS(7723), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7725), + [anon_sym___based] = ACTIONS(7723), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_RBRACE] = ACTIONS(7725), + [anon_sym_signed] = ACTIONS(7723), + [anon_sym_unsigned] = ACTIONS(7723), + [anon_sym_long] = ACTIONS(7723), + [anon_sym_short] = ACTIONS(7723), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7723), + [anon_sym_volatile] = ACTIONS(7723), + [anon_sym_restrict] = ACTIONS(7723), + [anon_sym___restrict__] = ACTIONS(7723), + [anon_sym__Atomic] = ACTIONS(7723), + [anon_sym__Noreturn] = ACTIONS(7723), + [anon_sym_noreturn] = ACTIONS(7723), + [anon_sym__Nonnull] = ACTIONS(7723), + [anon_sym_mutable] = ACTIONS(7723), + [anon_sym_constinit] = ACTIONS(7723), + [anon_sym_consteval] = ACTIONS(7723), + [anon_sym_alignas] = ACTIONS(7723), + [anon_sym__Alignas] = ACTIONS(7723), + [sym_primitive_type] = ACTIONS(7723), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7723), + [anon_sym_and] = ACTIONS(7723), + [anon_sym_bitor] = ACTIONS(7723), + [anon_sym_xor] = ACTIONS(7723), + [anon_sym_bitand] = ACTIONS(7723), + [anon_sym_not_eq] = ACTIONS(7723), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7725), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7745), - [anon_sym_override] = ACTIONS(7745), - [anon_sym_GT2] = ACTIONS(7745), - [anon_sym_requires] = ACTIONS(7745), + [anon_sym_final] = ACTIONS(7723), + [anon_sym_override] = ACTIONS(7723), + [anon_sym_requires] = ACTIONS(7723), + [anon_sym_COLON_RBRACK] = ACTIONS(7725), }, [STATE(3223)] = { - [sym_identifier] = ACTIONS(7627), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), - [anon_sym_COMMA] = ACTIONS(7629), - [anon_sym_RPAREN] = ACTIONS(7629), - [anon_sym_LPAREN2] = ACTIONS(7629), - [anon_sym_DASH] = ACTIONS(7627), - [anon_sym_PLUS] = ACTIONS(7627), - [anon_sym_STAR] = ACTIONS(7629), - [anon_sym_SLASH] = ACTIONS(7627), - [anon_sym_PERCENT] = ACTIONS(7629), - [anon_sym_PIPE_PIPE] = ACTIONS(7629), - [anon_sym_AMP_AMP] = ACTIONS(7629), - [anon_sym_PIPE] = ACTIONS(7627), - [anon_sym_CARET] = ACTIONS(7629), - [anon_sym_AMP] = ACTIONS(7627), - [anon_sym_EQ_EQ] = ACTIONS(7629), - [anon_sym_BANG_EQ] = ACTIONS(7629), - [anon_sym_GT] = ACTIONS(7627), - [anon_sym_GT_EQ] = ACTIONS(7629), - [anon_sym_LT_EQ] = ACTIONS(7627), - [anon_sym_LT] = ACTIONS(7627), - [anon_sym_LT_LT] = ACTIONS(7629), - [anon_sym_GT_GT] = ACTIONS(7629), - [anon_sym_SEMI] = ACTIONS(7629), - [anon_sym___extension__] = ACTIONS(7627), - [anon_sym___attribute__] = ACTIONS(7627), - [anon_sym___attribute] = ACTIONS(7627), - [anon_sym_COLON] = ACTIONS(7627), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7629), - [anon_sym___based] = ACTIONS(7627), - [anon_sym_LBRACE] = ACTIONS(7629), - [anon_sym_RBRACE] = ACTIONS(7629), - [anon_sym_signed] = ACTIONS(7627), - [anon_sym_unsigned] = ACTIONS(7627), - [anon_sym_long] = ACTIONS(7627), - [anon_sym_short] = ACTIONS(7627), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_const] = ACTIONS(7627), - [anon_sym_constexpr] = ACTIONS(7627), - [anon_sym_volatile] = ACTIONS(7627), - [anon_sym_restrict] = ACTIONS(7627), - [anon_sym___restrict__] = ACTIONS(7627), - [anon_sym__Atomic] = ACTIONS(7627), - [anon_sym__Noreturn] = ACTIONS(7627), - [anon_sym_noreturn] = ACTIONS(7627), - [anon_sym__Nonnull] = ACTIONS(7627), - [anon_sym_mutable] = ACTIONS(7627), - [anon_sym_constinit] = ACTIONS(7627), - [anon_sym_consteval] = ACTIONS(7627), - [anon_sym_alignas] = ACTIONS(7627), - [anon_sym__Alignas] = ACTIONS(7627), - [sym_primitive_type] = ACTIONS(7627), - [anon_sym_QMARK] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7629), - [anon_sym_or] = ACTIONS(7627), - [anon_sym_and] = ACTIONS(7627), - [anon_sym_bitor] = ACTIONS(7627), - [anon_sym_xor] = ACTIONS(7627), - [anon_sym_bitand] = ACTIONS(7627), - [anon_sym_not_eq] = ACTIONS(7627), - [anon_sym_DASH_DASH] = ACTIONS(7629), - [anon_sym_PLUS_PLUS] = ACTIONS(7629), - [anon_sym_DOT] = ACTIONS(7627), - [anon_sym_DOT_STAR] = ACTIONS(7629), - [anon_sym_DASH_GT] = ACTIONS(7629), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7627), - [anon_sym_override] = ACTIONS(7627), - [anon_sym_requires] = ACTIONS(7627), - [anon_sym_COLON_RBRACK] = ACTIONS(7629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7616), + [anon_sym_COMMA] = ACTIONS(7616), + [anon_sym_LPAREN2] = ACTIONS(7616), + [anon_sym_DASH] = ACTIONS(7614), + [anon_sym_PLUS] = ACTIONS(7614), + [anon_sym_STAR] = ACTIONS(7614), + [anon_sym_SLASH] = ACTIONS(7614), + [anon_sym_PERCENT] = ACTIONS(7614), + [anon_sym_PIPE_PIPE] = ACTIONS(7616), + [anon_sym_AMP_AMP] = ACTIONS(7616), + [anon_sym_PIPE] = ACTIONS(7614), + [anon_sym_CARET] = ACTIONS(7614), + [anon_sym_AMP] = ACTIONS(7614), + [anon_sym_EQ_EQ] = ACTIONS(7616), + [anon_sym_BANG_EQ] = ACTIONS(7616), + [anon_sym_GT] = ACTIONS(7614), + [anon_sym_GT_EQ] = ACTIONS(7614), + [anon_sym_LT_EQ] = ACTIONS(7614), + [anon_sym_LT] = ACTIONS(7614), + [anon_sym_LT_LT] = ACTIONS(7614), + [anon_sym_GT_GT] = ACTIONS(7614), + [anon_sym___extension__] = ACTIONS(7616), + [anon_sym_LBRACE] = ACTIONS(7616), + [anon_sym_LBRACK] = ACTIONS(7616), + [anon_sym_EQ] = ACTIONS(7614), + [anon_sym_const] = ACTIONS(7614), + [anon_sym_constexpr] = ACTIONS(7616), + [anon_sym_volatile] = ACTIONS(7616), + [anon_sym_restrict] = ACTIONS(7616), + [anon_sym___restrict__] = ACTIONS(7616), + [anon_sym__Atomic] = ACTIONS(7616), + [anon_sym__Noreturn] = ACTIONS(7616), + [anon_sym_noreturn] = ACTIONS(7616), + [anon_sym__Nonnull] = ACTIONS(7616), + [anon_sym_mutable] = ACTIONS(7616), + [anon_sym_constinit] = ACTIONS(7616), + [anon_sym_consteval] = ACTIONS(7616), + [anon_sym_alignas] = ACTIONS(7616), + [anon_sym__Alignas] = ACTIONS(7616), + [anon_sym_QMARK] = ACTIONS(7616), + [anon_sym_STAR_EQ] = ACTIONS(7616), + [anon_sym_SLASH_EQ] = ACTIONS(7616), + [anon_sym_PERCENT_EQ] = ACTIONS(7616), + [anon_sym_PLUS_EQ] = ACTIONS(7616), + [anon_sym_DASH_EQ] = ACTIONS(7616), + [anon_sym_LT_LT_EQ] = ACTIONS(7616), + [anon_sym_GT_GT_EQ] = ACTIONS(7614), + [anon_sym_AMP_EQ] = ACTIONS(7616), + [anon_sym_CARET_EQ] = ACTIONS(7616), + [anon_sym_PIPE_EQ] = ACTIONS(7616), + [anon_sym_and_eq] = ACTIONS(7616), + [anon_sym_or_eq] = ACTIONS(7616), + [anon_sym_xor_eq] = ACTIONS(7616), + [anon_sym_LT_EQ_GT] = ACTIONS(7616), + [anon_sym_or] = ACTIONS(7614), + [anon_sym_and] = ACTIONS(7614), + [anon_sym_bitor] = ACTIONS(7616), + [anon_sym_xor] = ACTIONS(7614), + [anon_sym_bitand] = ACTIONS(7616), + [anon_sym_not_eq] = ACTIONS(7616), + [anon_sym_DASH_DASH] = ACTIONS(7616), + [anon_sym_PLUS_PLUS] = ACTIONS(7616), + [anon_sym_DOT] = ACTIONS(7614), + [anon_sym_DOT_STAR] = ACTIONS(7616), + [anon_sym_DASH_GT] = ACTIONS(7616), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7616), + [anon_sym_override] = ACTIONS(7616), + [anon_sym_GT2] = ACTIONS(7616), + [anon_sym_requires] = ACTIONS(7616), }, [STATE(3224)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), - [anon_sym_COMMA] = ACTIONS(7669), - [anon_sym_LPAREN2] = ACTIONS(7669), - [anon_sym_DASH] = ACTIONS(7667), - [anon_sym_PLUS] = ACTIONS(7667), - [anon_sym_STAR] = ACTIONS(7667), - [anon_sym_SLASH] = ACTIONS(7667), - [anon_sym_PERCENT] = ACTIONS(7667), - [anon_sym_PIPE_PIPE] = ACTIONS(7669), - [anon_sym_AMP_AMP] = ACTIONS(7669), - [anon_sym_PIPE] = ACTIONS(7667), - [anon_sym_CARET] = ACTIONS(7667), - [anon_sym_AMP] = ACTIONS(7667), - [anon_sym_EQ_EQ] = ACTIONS(7669), - [anon_sym_BANG_EQ] = ACTIONS(7669), - [anon_sym_GT] = ACTIONS(7667), - [anon_sym_GT_EQ] = ACTIONS(7669), - [anon_sym_LT_EQ] = ACTIONS(7667), - [anon_sym_LT] = ACTIONS(7667), - [anon_sym_LT_LT] = ACTIONS(7667), - [anon_sym_GT_GT] = ACTIONS(7667), - [anon_sym___extension__] = ACTIONS(7669), - [anon_sym_LBRACE] = ACTIONS(7669), - [anon_sym_LBRACK] = ACTIONS(7669), - [anon_sym_RBRACK] = ACTIONS(7669), - [anon_sym_EQ] = ACTIONS(7667), - [anon_sym_const] = ACTIONS(7667), - [anon_sym_constexpr] = ACTIONS(7669), - [anon_sym_volatile] = ACTIONS(7669), - [anon_sym_restrict] = ACTIONS(7669), - [anon_sym___restrict__] = ACTIONS(7669), - [anon_sym__Atomic] = ACTIONS(7669), - [anon_sym__Noreturn] = ACTIONS(7669), - [anon_sym_noreturn] = ACTIONS(7669), - [anon_sym__Nonnull] = ACTIONS(7669), - [anon_sym_mutable] = ACTIONS(7669), - [anon_sym_constinit] = ACTIONS(7669), - [anon_sym_consteval] = ACTIONS(7669), - [anon_sym_alignas] = ACTIONS(7669), - [anon_sym__Alignas] = ACTIONS(7669), - [anon_sym_QMARK] = ACTIONS(7669), - [anon_sym_STAR_EQ] = ACTIONS(7669), - [anon_sym_SLASH_EQ] = ACTIONS(7669), - [anon_sym_PERCENT_EQ] = ACTIONS(7669), - [anon_sym_PLUS_EQ] = ACTIONS(7669), - [anon_sym_DASH_EQ] = ACTIONS(7669), - [anon_sym_LT_LT_EQ] = ACTIONS(7669), - [anon_sym_GT_GT_EQ] = ACTIONS(7669), - [anon_sym_AMP_EQ] = ACTIONS(7669), - [anon_sym_CARET_EQ] = ACTIONS(7669), - [anon_sym_PIPE_EQ] = ACTIONS(7669), - [anon_sym_and_eq] = ACTIONS(7669), - [anon_sym_or_eq] = ACTIONS(7669), - [anon_sym_xor_eq] = ACTIONS(7669), - [anon_sym_LT_EQ_GT] = ACTIONS(7669), - [anon_sym_or] = ACTIONS(7667), - [anon_sym_and] = ACTIONS(7667), - [anon_sym_bitor] = ACTIONS(7669), - [anon_sym_xor] = ACTIONS(7667), - [anon_sym_bitand] = ACTIONS(7669), - [anon_sym_not_eq] = ACTIONS(7669), - [anon_sym_DASH_DASH] = ACTIONS(7669), - [anon_sym_PLUS_PLUS] = ACTIONS(7669), - [anon_sym_DOT] = ACTIONS(7667), - [anon_sym_DOT_STAR] = ACTIONS(7669), - [anon_sym_DASH_GT] = ACTIONS(7669), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7669), - [anon_sym_override] = ACTIONS(7669), - [anon_sym_requires] = ACTIONS(7669), + [sym_identifier] = ACTIONS(9067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9069), + [anon_sym_COMMA] = ACTIONS(9069), + [anon_sym_RPAREN] = ACTIONS(9069), + [aux_sym_preproc_if_token2] = ACTIONS(9069), + [aux_sym_preproc_else_token1] = ACTIONS(9069), + [aux_sym_preproc_elif_token1] = ACTIONS(9067), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9069), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9069), + [anon_sym_LPAREN2] = ACTIONS(9069), + [anon_sym_DASH] = ACTIONS(9067), + [anon_sym_PLUS] = ACTIONS(9067), + [anon_sym_STAR] = ACTIONS(9067), + [anon_sym_SLASH] = ACTIONS(9067), + [anon_sym_PERCENT] = ACTIONS(9067), + [anon_sym_PIPE_PIPE] = ACTIONS(9069), + [anon_sym_AMP_AMP] = ACTIONS(9069), + [anon_sym_PIPE] = ACTIONS(9067), + [anon_sym_CARET] = ACTIONS(9067), + [anon_sym_AMP] = ACTIONS(9067), + [anon_sym_EQ_EQ] = ACTIONS(9069), + [anon_sym_BANG_EQ] = ACTIONS(9069), + [anon_sym_GT] = ACTIONS(9067), + [anon_sym_GT_EQ] = ACTIONS(9069), + [anon_sym_LT_EQ] = ACTIONS(9067), + [anon_sym_LT] = ACTIONS(9067), + [anon_sym_LT_LT] = ACTIONS(9067), + [anon_sym_GT_GT] = ACTIONS(9067), + [anon_sym_SEMI] = ACTIONS(9069), + [anon_sym___attribute__] = ACTIONS(9067), + [anon_sym___attribute] = ACTIONS(9067), + [anon_sym_COLON] = ACTIONS(9067), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9069), + [anon_sym_LBRACE] = ACTIONS(9069), + [anon_sym_RBRACE] = ACTIONS(9069), + [anon_sym_LBRACK] = ACTIONS(9067), + [anon_sym_RBRACK] = ACTIONS(9069), + [anon_sym_EQ] = ACTIONS(9067), + [anon_sym_QMARK] = ACTIONS(9069), + [anon_sym_STAR_EQ] = ACTIONS(9069), + [anon_sym_SLASH_EQ] = ACTIONS(9069), + [anon_sym_PERCENT_EQ] = ACTIONS(9069), + [anon_sym_PLUS_EQ] = ACTIONS(9069), + [anon_sym_DASH_EQ] = ACTIONS(9069), + [anon_sym_LT_LT_EQ] = ACTIONS(9069), + [anon_sym_GT_GT_EQ] = ACTIONS(9069), + [anon_sym_AMP_EQ] = ACTIONS(9069), + [anon_sym_CARET_EQ] = ACTIONS(9069), + [anon_sym_PIPE_EQ] = ACTIONS(9069), + [anon_sym_and_eq] = ACTIONS(9067), + [anon_sym_or_eq] = ACTIONS(9067), + [anon_sym_xor_eq] = ACTIONS(9067), + [anon_sym_LT_EQ_GT] = ACTIONS(9069), + [anon_sym_or] = ACTIONS(9067), + [anon_sym_and] = ACTIONS(9067), + [anon_sym_bitor] = ACTIONS(9067), + [anon_sym_xor] = ACTIONS(9067), + [anon_sym_bitand] = ACTIONS(9067), + [anon_sym_not_eq] = ACTIONS(9067), + [anon_sym_DASH_DASH] = ACTIONS(9069), + [anon_sym_PLUS_PLUS] = ACTIONS(9069), + [anon_sym_asm] = ACTIONS(9067), + [anon_sym___asm__] = ACTIONS(9067), + [anon_sym___asm] = ACTIONS(9067), + [anon_sym_DOT] = ACTIONS(9067), + [anon_sym_DOT_STAR] = ACTIONS(9069), + [anon_sym_DASH_GT] = ACTIONS(9069), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9067), + [anon_sym_COLON_RBRACK] = ACTIONS(9069), }, [STATE(3225)] = { - [sym_identifier] = ACTIONS(7671), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), - [anon_sym_COMMA] = ACTIONS(7673), - [anon_sym_RPAREN] = ACTIONS(7673), - [anon_sym_LPAREN2] = ACTIONS(7673), - [anon_sym_DASH] = ACTIONS(7671), - [anon_sym_PLUS] = ACTIONS(7671), - [anon_sym_STAR] = ACTIONS(7673), - [anon_sym_SLASH] = ACTIONS(7671), - [anon_sym_PERCENT] = ACTIONS(7673), - [anon_sym_PIPE_PIPE] = ACTIONS(7673), - [anon_sym_AMP_AMP] = ACTIONS(7673), - [anon_sym_PIPE] = ACTIONS(7671), - [anon_sym_CARET] = ACTIONS(7673), - [anon_sym_AMP] = ACTIONS(7671), - [anon_sym_EQ_EQ] = ACTIONS(7673), - [anon_sym_BANG_EQ] = ACTIONS(7673), - [anon_sym_GT] = ACTIONS(7671), - [anon_sym_GT_EQ] = ACTIONS(7673), - [anon_sym_LT_EQ] = ACTIONS(7671), - [anon_sym_LT] = ACTIONS(7671), - [anon_sym_LT_LT] = ACTIONS(7673), - [anon_sym_GT_GT] = ACTIONS(7673), - [anon_sym_SEMI] = ACTIONS(7673), - [anon_sym___extension__] = ACTIONS(7671), - [anon_sym___attribute__] = ACTIONS(7671), - [anon_sym___attribute] = ACTIONS(7671), - [anon_sym_COLON] = ACTIONS(7671), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7673), - [anon_sym___based] = ACTIONS(7671), - [anon_sym_LBRACE] = ACTIONS(7673), - [anon_sym_RBRACE] = ACTIONS(7673), - [anon_sym_signed] = ACTIONS(7671), - [anon_sym_unsigned] = ACTIONS(7671), - [anon_sym_long] = ACTIONS(7671), - [anon_sym_short] = ACTIONS(7671), - [anon_sym_LBRACK] = ACTIONS(7673), - [anon_sym_const] = ACTIONS(7671), - [anon_sym_constexpr] = ACTIONS(7671), - [anon_sym_volatile] = ACTIONS(7671), - [anon_sym_restrict] = ACTIONS(7671), - [anon_sym___restrict__] = ACTIONS(7671), - [anon_sym__Atomic] = ACTIONS(7671), - [anon_sym__Noreturn] = ACTIONS(7671), - [anon_sym_noreturn] = ACTIONS(7671), - [anon_sym__Nonnull] = ACTIONS(7671), - [anon_sym_mutable] = ACTIONS(7671), - [anon_sym_constinit] = ACTIONS(7671), - [anon_sym_consteval] = ACTIONS(7671), - [anon_sym_alignas] = ACTIONS(7671), - [anon_sym__Alignas] = ACTIONS(7671), - [sym_primitive_type] = ACTIONS(7671), - [anon_sym_QMARK] = ACTIONS(7673), - [anon_sym_LT_EQ_GT] = ACTIONS(7673), - [anon_sym_or] = ACTIONS(7671), - [anon_sym_and] = ACTIONS(7671), - [anon_sym_bitor] = ACTIONS(7671), - [anon_sym_xor] = ACTIONS(7671), - [anon_sym_bitand] = ACTIONS(7671), - [anon_sym_not_eq] = ACTIONS(7671), - [anon_sym_DASH_DASH] = ACTIONS(7673), - [anon_sym_PLUS_PLUS] = ACTIONS(7673), - [anon_sym_DOT] = ACTIONS(7671), - [anon_sym_DOT_STAR] = ACTIONS(7673), - [anon_sym_DASH_GT] = ACTIONS(7673), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7671), - [anon_sym_override] = ACTIONS(7671), - [anon_sym_requires] = ACTIONS(7671), - [anon_sym_COLON_RBRACK] = ACTIONS(7673), + [sym_identifier] = ACTIONS(7735), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_RPAREN] = ACTIONS(7737), + [anon_sym_LPAREN2] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(7735), + [anon_sym_STAR] = ACTIONS(7737), + [anon_sym_SLASH] = ACTIONS(7735), + [anon_sym_PERCENT] = ACTIONS(7737), + [anon_sym_PIPE_PIPE] = ACTIONS(7737), + [anon_sym_AMP_AMP] = ACTIONS(7737), + [anon_sym_PIPE] = ACTIONS(7735), + [anon_sym_CARET] = ACTIONS(7737), + [anon_sym_AMP] = ACTIONS(7735), + [anon_sym_EQ_EQ] = ACTIONS(7737), + [anon_sym_BANG_EQ] = ACTIONS(7737), + [anon_sym_GT] = ACTIONS(7735), + [anon_sym_GT_EQ] = ACTIONS(7737), + [anon_sym_LT_EQ] = ACTIONS(7735), + [anon_sym_LT] = ACTIONS(7735), + [anon_sym_LT_LT] = ACTIONS(7737), + [anon_sym_GT_GT] = ACTIONS(7737), + [anon_sym_SEMI] = ACTIONS(7737), + [anon_sym___extension__] = ACTIONS(7735), + [anon_sym___attribute__] = ACTIONS(7735), + [anon_sym___attribute] = ACTIONS(7735), + [anon_sym_COLON] = ACTIONS(7735), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7737), + [anon_sym___based] = ACTIONS(7735), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_RBRACE] = ACTIONS(7737), + [anon_sym_signed] = ACTIONS(7735), + [anon_sym_unsigned] = ACTIONS(7735), + [anon_sym_long] = ACTIONS(7735), + [anon_sym_short] = ACTIONS(7735), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_const] = ACTIONS(7735), + [anon_sym_constexpr] = ACTIONS(7735), + [anon_sym_volatile] = ACTIONS(7735), + [anon_sym_restrict] = ACTIONS(7735), + [anon_sym___restrict__] = ACTIONS(7735), + [anon_sym__Atomic] = ACTIONS(7735), + [anon_sym__Noreturn] = ACTIONS(7735), + [anon_sym_noreturn] = ACTIONS(7735), + [anon_sym__Nonnull] = ACTIONS(7735), + [anon_sym_mutable] = ACTIONS(7735), + [anon_sym_constinit] = ACTIONS(7735), + [anon_sym_consteval] = ACTIONS(7735), + [anon_sym_alignas] = ACTIONS(7735), + [anon_sym__Alignas] = ACTIONS(7735), + [sym_primitive_type] = ACTIONS(7735), + [anon_sym_QMARK] = ACTIONS(7737), + [anon_sym_LT_EQ_GT] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7735), + [anon_sym_and] = ACTIONS(7735), + [anon_sym_bitor] = ACTIONS(7735), + [anon_sym_xor] = ACTIONS(7735), + [anon_sym_bitand] = ACTIONS(7735), + [anon_sym_not_eq] = ACTIONS(7735), + [anon_sym_DASH_DASH] = ACTIONS(7737), + [anon_sym_PLUS_PLUS] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(7735), + [anon_sym_DOT_STAR] = ACTIONS(7737), + [anon_sym_DASH_GT] = ACTIONS(7737), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7735), + [anon_sym_override] = ACTIONS(7735), + [anon_sym_requires] = ACTIONS(7735), + [anon_sym_COLON_RBRACK] = ACTIONS(7737), }, [STATE(3226)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), - [anon_sym_COMMA] = ACTIONS(7753), - [anon_sym_LPAREN2] = ACTIONS(7753), - [anon_sym_DASH] = ACTIONS(7751), - [anon_sym_PLUS] = ACTIONS(7751), - [anon_sym_STAR] = ACTIONS(7751), - [anon_sym_SLASH] = ACTIONS(7751), - [anon_sym_PERCENT] = ACTIONS(7751), - [anon_sym_PIPE_PIPE] = ACTIONS(7753), - [anon_sym_AMP_AMP] = ACTIONS(7753), - [anon_sym_PIPE] = ACTIONS(7751), - [anon_sym_CARET] = ACTIONS(7751), - [anon_sym_AMP] = ACTIONS(7751), - [anon_sym_EQ_EQ] = ACTIONS(7753), - [anon_sym_BANG_EQ] = ACTIONS(7753), - [anon_sym_GT] = ACTIONS(7751), - [anon_sym_GT_EQ] = ACTIONS(7751), - [anon_sym_LT_EQ] = ACTIONS(7751), - [anon_sym_LT] = ACTIONS(7751), - [anon_sym_LT_LT] = ACTIONS(7751), - [anon_sym_GT_GT] = ACTIONS(7751), - [anon_sym___extension__] = ACTIONS(7753), - [anon_sym_LBRACE] = ACTIONS(7753), - [anon_sym_LBRACK] = ACTIONS(7753), - [anon_sym_EQ] = ACTIONS(7751), - [anon_sym_const] = ACTIONS(7751), - [anon_sym_constexpr] = ACTIONS(7753), - [anon_sym_volatile] = ACTIONS(7753), - [anon_sym_restrict] = ACTIONS(7753), - [anon_sym___restrict__] = ACTIONS(7753), - [anon_sym__Atomic] = ACTIONS(7753), - [anon_sym__Noreturn] = ACTIONS(7753), - [anon_sym_noreturn] = ACTIONS(7753), - [anon_sym__Nonnull] = ACTIONS(7753), - [anon_sym_mutable] = ACTIONS(7753), - [anon_sym_constinit] = ACTIONS(7753), - [anon_sym_consteval] = ACTIONS(7753), - [anon_sym_alignas] = ACTIONS(7753), - [anon_sym__Alignas] = ACTIONS(7753), - [anon_sym_QMARK] = ACTIONS(7753), - [anon_sym_STAR_EQ] = ACTIONS(7753), - [anon_sym_SLASH_EQ] = ACTIONS(7753), - [anon_sym_PERCENT_EQ] = ACTIONS(7753), - [anon_sym_PLUS_EQ] = ACTIONS(7753), - [anon_sym_DASH_EQ] = ACTIONS(7753), - [anon_sym_LT_LT_EQ] = ACTIONS(7753), - [anon_sym_GT_GT_EQ] = ACTIONS(7751), - [anon_sym_AMP_EQ] = ACTIONS(7753), - [anon_sym_CARET_EQ] = ACTIONS(7753), - [anon_sym_PIPE_EQ] = ACTIONS(7753), - [anon_sym_and_eq] = ACTIONS(7753), - [anon_sym_or_eq] = ACTIONS(7753), - [anon_sym_xor_eq] = ACTIONS(7753), - [anon_sym_LT_EQ_GT] = ACTIONS(7753), - [anon_sym_or] = ACTIONS(7751), - [anon_sym_and] = ACTIONS(7751), - [anon_sym_bitor] = ACTIONS(7753), - [anon_sym_xor] = ACTIONS(7751), - [anon_sym_bitand] = ACTIONS(7753), - [anon_sym_not_eq] = ACTIONS(7753), - [anon_sym_DASH_DASH] = ACTIONS(7753), - [anon_sym_PLUS_PLUS] = ACTIONS(7753), - [anon_sym_DOT] = ACTIONS(7751), - [anon_sym_DOT_STAR] = ACTIONS(7753), - [anon_sym_DASH_GT] = ACTIONS(7753), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7753), - [anon_sym_override] = ACTIONS(7753), - [anon_sym_GT2] = ACTIONS(7753), - [anon_sym_requires] = ACTIONS(7753), + [sym_identifier] = ACTIONS(7614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7616), + [anon_sym_COMMA] = ACTIONS(7616), + [anon_sym_RPAREN] = ACTIONS(7616), + [anon_sym_LPAREN2] = ACTIONS(7616), + [anon_sym_DASH] = ACTIONS(7614), + [anon_sym_PLUS] = ACTIONS(7614), + [anon_sym_STAR] = ACTIONS(7616), + [anon_sym_SLASH] = ACTIONS(7614), + [anon_sym_PERCENT] = ACTIONS(7616), + [anon_sym_PIPE_PIPE] = ACTIONS(7616), + [anon_sym_AMP_AMP] = ACTIONS(7616), + [anon_sym_PIPE] = ACTIONS(7614), + [anon_sym_CARET] = ACTIONS(7616), + [anon_sym_AMP] = ACTIONS(7614), + [anon_sym_EQ_EQ] = ACTIONS(7616), + [anon_sym_BANG_EQ] = ACTIONS(7616), + [anon_sym_GT] = ACTIONS(7614), + [anon_sym_GT_EQ] = ACTIONS(7616), + [anon_sym_LT_EQ] = ACTIONS(7614), + [anon_sym_LT] = ACTIONS(7614), + [anon_sym_LT_LT] = ACTIONS(7616), + [anon_sym_GT_GT] = ACTIONS(7616), + [anon_sym_SEMI] = ACTIONS(7616), + [anon_sym___extension__] = ACTIONS(7614), + [anon_sym___attribute__] = ACTIONS(7614), + [anon_sym___attribute] = ACTIONS(7614), + [anon_sym_COLON] = ACTIONS(7614), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7616), + [anon_sym___based] = ACTIONS(7614), + [anon_sym_LBRACE] = ACTIONS(7616), + [anon_sym_RBRACE] = ACTIONS(7616), + [anon_sym_signed] = ACTIONS(7614), + [anon_sym_unsigned] = ACTIONS(7614), + [anon_sym_long] = ACTIONS(7614), + [anon_sym_short] = ACTIONS(7614), + [anon_sym_LBRACK] = ACTIONS(7616), + [anon_sym_const] = ACTIONS(7614), + [anon_sym_constexpr] = ACTIONS(7614), + [anon_sym_volatile] = ACTIONS(7614), + [anon_sym_restrict] = ACTIONS(7614), + [anon_sym___restrict__] = ACTIONS(7614), + [anon_sym__Atomic] = ACTIONS(7614), + [anon_sym__Noreturn] = ACTIONS(7614), + [anon_sym_noreturn] = ACTIONS(7614), + [anon_sym__Nonnull] = ACTIONS(7614), + [anon_sym_mutable] = ACTIONS(7614), + [anon_sym_constinit] = ACTIONS(7614), + [anon_sym_consteval] = ACTIONS(7614), + [anon_sym_alignas] = ACTIONS(7614), + [anon_sym__Alignas] = ACTIONS(7614), + [sym_primitive_type] = ACTIONS(7614), + [anon_sym_QMARK] = ACTIONS(7616), + [anon_sym_LT_EQ_GT] = ACTIONS(7616), + [anon_sym_or] = ACTIONS(7614), + [anon_sym_and] = ACTIONS(7614), + [anon_sym_bitor] = ACTIONS(7614), + [anon_sym_xor] = ACTIONS(7614), + [anon_sym_bitand] = ACTIONS(7614), + [anon_sym_not_eq] = ACTIONS(7614), + [anon_sym_DASH_DASH] = ACTIONS(7616), + [anon_sym_PLUS_PLUS] = ACTIONS(7616), + [anon_sym_DOT] = ACTIONS(7614), + [anon_sym_DOT_STAR] = ACTIONS(7616), + [anon_sym_DASH_GT] = ACTIONS(7616), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7614), + [anon_sym_override] = ACTIONS(7614), + [anon_sym_requires] = ACTIONS(7614), + [anon_sym_COLON_RBRACK] = ACTIONS(7616), }, [STATE(3227)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), - [anon_sym_COMMA] = ACTIONS(7745), - [anon_sym_LPAREN2] = ACTIONS(7745), - [anon_sym_DASH] = ACTIONS(7743), - [anon_sym_PLUS] = ACTIONS(7743), - [anon_sym_STAR] = ACTIONS(7743), - [anon_sym_SLASH] = ACTIONS(7743), - [anon_sym_PERCENT] = ACTIONS(7743), - [anon_sym_PIPE_PIPE] = ACTIONS(7745), - [anon_sym_AMP_AMP] = ACTIONS(7745), - [anon_sym_PIPE] = ACTIONS(7743), - [anon_sym_CARET] = ACTIONS(7743), - [anon_sym_AMP] = ACTIONS(7743), - [anon_sym_EQ_EQ] = ACTIONS(7745), - [anon_sym_BANG_EQ] = ACTIONS(7745), - [anon_sym_GT] = ACTIONS(7743), - [anon_sym_GT_EQ] = ACTIONS(7745), - [anon_sym_LT_EQ] = ACTIONS(7743), - [anon_sym_LT] = ACTIONS(7743), - [anon_sym_LT_LT] = ACTIONS(7743), - [anon_sym_GT_GT] = ACTIONS(7743), - [anon_sym___extension__] = ACTIONS(7745), - [anon_sym_LBRACE] = ACTIONS(7745), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_RBRACK] = ACTIONS(7745), - [anon_sym_EQ] = ACTIONS(7743), - [anon_sym_const] = ACTIONS(7743), - [anon_sym_constexpr] = ACTIONS(7745), - [anon_sym_volatile] = ACTIONS(7745), - [anon_sym_restrict] = ACTIONS(7745), - [anon_sym___restrict__] = ACTIONS(7745), - [anon_sym__Atomic] = ACTIONS(7745), - [anon_sym__Noreturn] = ACTIONS(7745), - [anon_sym_noreturn] = ACTIONS(7745), - [anon_sym__Nonnull] = ACTIONS(7745), - [anon_sym_mutable] = ACTIONS(7745), - [anon_sym_constinit] = ACTIONS(7745), - [anon_sym_consteval] = ACTIONS(7745), - [anon_sym_alignas] = ACTIONS(7745), - [anon_sym__Alignas] = ACTIONS(7745), - [anon_sym_QMARK] = ACTIONS(7745), - [anon_sym_STAR_EQ] = ACTIONS(7745), - [anon_sym_SLASH_EQ] = ACTIONS(7745), - [anon_sym_PERCENT_EQ] = ACTIONS(7745), - [anon_sym_PLUS_EQ] = ACTIONS(7745), - [anon_sym_DASH_EQ] = ACTIONS(7745), - [anon_sym_LT_LT_EQ] = ACTIONS(7745), - [anon_sym_GT_GT_EQ] = ACTIONS(7745), - [anon_sym_AMP_EQ] = ACTIONS(7745), - [anon_sym_CARET_EQ] = ACTIONS(7745), - [anon_sym_PIPE_EQ] = ACTIONS(7745), - [anon_sym_and_eq] = ACTIONS(7745), - [anon_sym_or_eq] = ACTIONS(7745), - [anon_sym_xor_eq] = ACTIONS(7745), - [anon_sym_LT_EQ_GT] = ACTIONS(7745), - [anon_sym_or] = ACTIONS(7743), - [anon_sym_and] = ACTIONS(7743), - [anon_sym_bitor] = ACTIONS(7745), - [anon_sym_xor] = ACTIONS(7743), - [anon_sym_bitand] = ACTIONS(7745), - [anon_sym_not_eq] = ACTIONS(7745), - [anon_sym_DASH_DASH] = ACTIONS(7745), - [anon_sym_PLUS_PLUS] = ACTIONS(7745), - [anon_sym_DOT] = ACTIONS(7743), - [anon_sym_DOT_STAR] = ACTIONS(7745), - [anon_sym_DASH_GT] = ACTIONS(7745), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7745), - [anon_sym_override] = ACTIONS(7745), - [anon_sym_requires] = ACTIONS(7745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7612), + [anon_sym_COMMA] = ACTIONS(7612), + [anon_sym_LPAREN2] = ACTIONS(7612), + [anon_sym_DASH] = ACTIONS(7610), + [anon_sym_PLUS] = ACTIONS(7610), + [anon_sym_STAR] = ACTIONS(7610), + [anon_sym_SLASH] = ACTIONS(7610), + [anon_sym_PERCENT] = ACTIONS(7610), + [anon_sym_PIPE_PIPE] = ACTIONS(7612), + [anon_sym_AMP_AMP] = ACTIONS(7612), + [anon_sym_PIPE] = ACTIONS(7610), + [anon_sym_CARET] = ACTIONS(7610), + [anon_sym_AMP] = ACTIONS(7610), + [anon_sym_EQ_EQ] = ACTIONS(7612), + [anon_sym_BANG_EQ] = ACTIONS(7612), + [anon_sym_GT] = ACTIONS(7610), + [anon_sym_GT_EQ] = ACTIONS(7610), + [anon_sym_LT_EQ] = ACTIONS(7610), + [anon_sym_LT] = ACTIONS(7610), + [anon_sym_LT_LT] = ACTIONS(7610), + [anon_sym_GT_GT] = ACTIONS(7610), + [anon_sym___extension__] = ACTIONS(7612), + [anon_sym_LBRACE] = ACTIONS(7612), + [anon_sym_LBRACK] = ACTIONS(7612), + [anon_sym_EQ] = ACTIONS(7610), + [anon_sym_const] = ACTIONS(7610), + [anon_sym_constexpr] = ACTIONS(7612), + [anon_sym_volatile] = ACTIONS(7612), + [anon_sym_restrict] = ACTIONS(7612), + [anon_sym___restrict__] = ACTIONS(7612), + [anon_sym__Atomic] = ACTIONS(7612), + [anon_sym__Noreturn] = ACTIONS(7612), + [anon_sym_noreturn] = ACTIONS(7612), + [anon_sym__Nonnull] = ACTIONS(7612), + [anon_sym_mutable] = ACTIONS(7612), + [anon_sym_constinit] = ACTIONS(7612), + [anon_sym_consteval] = ACTIONS(7612), + [anon_sym_alignas] = ACTIONS(7612), + [anon_sym__Alignas] = ACTIONS(7612), + [anon_sym_QMARK] = ACTIONS(7612), + [anon_sym_STAR_EQ] = ACTIONS(7612), + [anon_sym_SLASH_EQ] = ACTIONS(7612), + [anon_sym_PERCENT_EQ] = ACTIONS(7612), + [anon_sym_PLUS_EQ] = ACTIONS(7612), + [anon_sym_DASH_EQ] = ACTIONS(7612), + [anon_sym_LT_LT_EQ] = ACTIONS(7612), + [anon_sym_GT_GT_EQ] = ACTIONS(7610), + [anon_sym_AMP_EQ] = ACTIONS(7612), + [anon_sym_CARET_EQ] = ACTIONS(7612), + [anon_sym_PIPE_EQ] = ACTIONS(7612), + [anon_sym_and_eq] = ACTIONS(7612), + [anon_sym_or_eq] = ACTIONS(7612), + [anon_sym_xor_eq] = ACTIONS(7612), + [anon_sym_LT_EQ_GT] = ACTIONS(7612), + [anon_sym_or] = ACTIONS(7610), + [anon_sym_and] = ACTIONS(7610), + [anon_sym_bitor] = ACTIONS(7612), + [anon_sym_xor] = ACTIONS(7610), + [anon_sym_bitand] = ACTIONS(7612), + [anon_sym_not_eq] = ACTIONS(7612), + [anon_sym_DASH_DASH] = ACTIONS(7612), + [anon_sym_PLUS_PLUS] = ACTIONS(7612), + [anon_sym_DOT] = ACTIONS(7610), + [anon_sym_DOT_STAR] = ACTIONS(7612), + [anon_sym_DASH_GT] = ACTIONS(7612), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7612), + [anon_sym_override] = ACTIONS(7612), + [anon_sym_GT2] = ACTIONS(7612), + [anon_sym_requires] = ACTIONS(7612), }, [STATE(3228)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), - [anon_sym_COMMA] = ACTIONS(7673), - [anon_sym_LPAREN2] = ACTIONS(7673), - [anon_sym_DASH] = ACTIONS(7671), - [anon_sym_PLUS] = ACTIONS(7671), - [anon_sym_STAR] = ACTIONS(7671), - [anon_sym_SLASH] = ACTIONS(7671), - [anon_sym_PERCENT] = ACTIONS(7671), - [anon_sym_PIPE_PIPE] = ACTIONS(7673), - [anon_sym_AMP_AMP] = ACTIONS(7673), - [anon_sym_PIPE] = ACTIONS(7671), - [anon_sym_CARET] = ACTIONS(7671), - [anon_sym_AMP] = ACTIONS(7671), - [anon_sym_EQ_EQ] = ACTIONS(7673), - [anon_sym_BANG_EQ] = ACTIONS(7673), - [anon_sym_GT] = ACTIONS(7671), - [anon_sym_GT_EQ] = ACTIONS(7673), - [anon_sym_LT_EQ] = ACTIONS(7671), - [anon_sym_LT] = ACTIONS(7671), - [anon_sym_LT_LT] = ACTIONS(7671), - [anon_sym_GT_GT] = ACTIONS(7671), - [anon_sym___extension__] = ACTIONS(7673), - [anon_sym_LBRACE] = ACTIONS(7673), - [anon_sym_LBRACK] = ACTIONS(7673), - [anon_sym_RBRACK] = ACTIONS(7673), - [anon_sym_EQ] = ACTIONS(7671), - [anon_sym_const] = ACTIONS(7671), - [anon_sym_constexpr] = ACTIONS(7673), - [anon_sym_volatile] = ACTIONS(7673), - [anon_sym_restrict] = ACTIONS(7673), - [anon_sym___restrict__] = ACTIONS(7673), - [anon_sym__Atomic] = ACTIONS(7673), - [anon_sym__Noreturn] = ACTIONS(7673), - [anon_sym_noreturn] = ACTIONS(7673), - [anon_sym__Nonnull] = ACTIONS(7673), - [anon_sym_mutable] = ACTIONS(7673), - [anon_sym_constinit] = ACTIONS(7673), - [anon_sym_consteval] = ACTIONS(7673), - [anon_sym_alignas] = ACTIONS(7673), - [anon_sym__Alignas] = ACTIONS(7673), - [anon_sym_QMARK] = ACTIONS(7673), - [anon_sym_STAR_EQ] = ACTIONS(7673), - [anon_sym_SLASH_EQ] = ACTIONS(7673), - [anon_sym_PERCENT_EQ] = ACTIONS(7673), - [anon_sym_PLUS_EQ] = ACTIONS(7673), - [anon_sym_DASH_EQ] = ACTIONS(7673), - [anon_sym_LT_LT_EQ] = ACTIONS(7673), - [anon_sym_GT_GT_EQ] = ACTIONS(7673), - [anon_sym_AMP_EQ] = ACTIONS(7673), - [anon_sym_CARET_EQ] = ACTIONS(7673), - [anon_sym_PIPE_EQ] = ACTIONS(7673), - [anon_sym_and_eq] = ACTIONS(7673), - [anon_sym_or_eq] = ACTIONS(7673), - [anon_sym_xor_eq] = ACTIONS(7673), - [anon_sym_LT_EQ_GT] = ACTIONS(7673), - [anon_sym_or] = ACTIONS(7671), - [anon_sym_and] = ACTIONS(7671), - [anon_sym_bitor] = ACTIONS(7673), - [anon_sym_xor] = ACTIONS(7671), - [anon_sym_bitand] = ACTIONS(7673), - [anon_sym_not_eq] = ACTIONS(7673), - [anon_sym_DASH_DASH] = ACTIONS(7673), - [anon_sym_PLUS_PLUS] = ACTIONS(7673), - [anon_sym_DOT] = ACTIONS(7671), - [anon_sym_DOT_STAR] = ACTIONS(7673), - [anon_sym_DASH_GT] = ACTIONS(7673), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7673), - [anon_sym_override] = ACTIONS(7673), - [anon_sym_requires] = ACTIONS(7673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7592), + [anon_sym_COMMA] = ACTIONS(7592), + [anon_sym_LPAREN2] = ACTIONS(7592), + [anon_sym_DASH] = ACTIONS(7590), + [anon_sym_PLUS] = ACTIONS(7590), + [anon_sym_STAR] = ACTIONS(7590), + [anon_sym_SLASH] = ACTIONS(7590), + [anon_sym_PERCENT] = ACTIONS(7590), + [anon_sym_PIPE_PIPE] = ACTIONS(7592), + [anon_sym_AMP_AMP] = ACTIONS(7592), + [anon_sym_PIPE] = ACTIONS(7590), + [anon_sym_CARET] = ACTIONS(7590), + [anon_sym_AMP] = ACTIONS(7590), + [anon_sym_EQ_EQ] = ACTIONS(7592), + [anon_sym_BANG_EQ] = ACTIONS(7592), + [anon_sym_GT] = ACTIONS(7590), + [anon_sym_GT_EQ] = ACTIONS(7590), + [anon_sym_LT_EQ] = ACTIONS(7590), + [anon_sym_LT] = ACTIONS(7590), + [anon_sym_LT_LT] = ACTIONS(7590), + [anon_sym_GT_GT] = ACTIONS(7590), + [anon_sym___extension__] = ACTIONS(7592), + [anon_sym_LBRACE] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7592), + [anon_sym_EQ] = ACTIONS(7590), + [anon_sym_const] = ACTIONS(7590), + [anon_sym_constexpr] = ACTIONS(7592), + [anon_sym_volatile] = ACTIONS(7592), + [anon_sym_restrict] = ACTIONS(7592), + [anon_sym___restrict__] = ACTIONS(7592), + [anon_sym__Atomic] = ACTIONS(7592), + [anon_sym__Noreturn] = ACTIONS(7592), + [anon_sym_noreturn] = ACTIONS(7592), + [anon_sym__Nonnull] = ACTIONS(7592), + [anon_sym_mutable] = ACTIONS(7592), + [anon_sym_constinit] = ACTIONS(7592), + [anon_sym_consteval] = ACTIONS(7592), + [anon_sym_alignas] = ACTIONS(7592), + [anon_sym__Alignas] = ACTIONS(7592), + [anon_sym_QMARK] = ACTIONS(7592), + [anon_sym_STAR_EQ] = ACTIONS(7592), + [anon_sym_SLASH_EQ] = ACTIONS(7592), + [anon_sym_PERCENT_EQ] = ACTIONS(7592), + [anon_sym_PLUS_EQ] = ACTIONS(7592), + [anon_sym_DASH_EQ] = ACTIONS(7592), + [anon_sym_LT_LT_EQ] = ACTIONS(7592), + [anon_sym_GT_GT_EQ] = ACTIONS(7590), + [anon_sym_AMP_EQ] = ACTIONS(7592), + [anon_sym_CARET_EQ] = ACTIONS(7592), + [anon_sym_PIPE_EQ] = ACTIONS(7592), + [anon_sym_and_eq] = ACTIONS(7592), + [anon_sym_or_eq] = ACTIONS(7592), + [anon_sym_xor_eq] = ACTIONS(7592), + [anon_sym_LT_EQ_GT] = ACTIONS(7592), + [anon_sym_or] = ACTIONS(7590), + [anon_sym_and] = ACTIONS(7590), + [anon_sym_bitor] = ACTIONS(7592), + [anon_sym_xor] = ACTIONS(7590), + [anon_sym_bitand] = ACTIONS(7592), + [anon_sym_not_eq] = ACTIONS(7592), + [anon_sym_DASH_DASH] = ACTIONS(7592), + [anon_sym_PLUS_PLUS] = ACTIONS(7592), + [anon_sym_DOT] = ACTIONS(7590), + [anon_sym_DOT_STAR] = ACTIONS(7592), + [anon_sym_DASH_GT] = ACTIONS(7592), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7592), + [anon_sym_override] = ACTIONS(7592), + [anon_sym_GT2] = ACTIONS(7592), + [anon_sym_requires] = ACTIONS(7592), }, [STATE(3229)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_RBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_and_eq] = ACTIONS(7563), - [anon_sym_or_eq] = ACTIONS(7563), - [anon_sym_xor_eq] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7561), - [anon_sym_and] = ACTIONS(7561), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7561), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7563), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7702), + [anon_sym_COMMA] = ACTIONS(7702), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_DASH] = ACTIONS(7700), + [anon_sym_PLUS] = ACTIONS(7700), + [anon_sym_STAR] = ACTIONS(7700), + [anon_sym_SLASH] = ACTIONS(7700), + [anon_sym_PERCENT] = ACTIONS(7700), + [anon_sym_PIPE_PIPE] = ACTIONS(7702), + [anon_sym_AMP_AMP] = ACTIONS(7702), + [anon_sym_PIPE] = ACTIONS(7700), + [anon_sym_CARET] = ACTIONS(7700), + [anon_sym_AMP] = ACTIONS(7700), + [anon_sym_EQ_EQ] = ACTIONS(7702), + [anon_sym_BANG_EQ] = ACTIONS(7702), + [anon_sym_GT] = ACTIONS(7700), + [anon_sym_GT_EQ] = ACTIONS(7702), + [anon_sym_LT_EQ] = ACTIONS(7700), + [anon_sym_LT] = ACTIONS(7700), + [anon_sym_LT_LT] = ACTIONS(7700), + [anon_sym_GT_GT] = ACTIONS(7700), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym_LBRACE] = ACTIONS(7702), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_RBRACK] = ACTIONS(7702), + [anon_sym_EQ] = ACTIONS(7700), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7702), + [anon_sym_volatile] = ACTIONS(7702), + [anon_sym_restrict] = ACTIONS(7702), + [anon_sym___restrict__] = ACTIONS(7702), + [anon_sym__Atomic] = ACTIONS(7702), + [anon_sym__Noreturn] = ACTIONS(7702), + [anon_sym_noreturn] = ACTIONS(7702), + [anon_sym__Nonnull] = ACTIONS(7702), + [anon_sym_mutable] = ACTIONS(7702), + [anon_sym_constinit] = ACTIONS(7702), + [anon_sym_consteval] = ACTIONS(7702), + [anon_sym_alignas] = ACTIONS(7702), + [anon_sym__Alignas] = ACTIONS(7702), + [anon_sym_QMARK] = ACTIONS(7702), + [anon_sym_STAR_EQ] = ACTIONS(7702), + [anon_sym_SLASH_EQ] = ACTIONS(7702), + [anon_sym_PERCENT_EQ] = ACTIONS(7702), + [anon_sym_PLUS_EQ] = ACTIONS(7702), + [anon_sym_DASH_EQ] = ACTIONS(7702), + [anon_sym_LT_LT_EQ] = ACTIONS(7702), + [anon_sym_GT_GT_EQ] = ACTIONS(7702), + [anon_sym_AMP_EQ] = ACTIONS(7702), + [anon_sym_CARET_EQ] = ACTIONS(7702), + [anon_sym_PIPE_EQ] = ACTIONS(7702), + [anon_sym_and_eq] = ACTIONS(7702), + [anon_sym_or_eq] = ACTIONS(7702), + [anon_sym_xor_eq] = ACTIONS(7702), + [anon_sym_LT_EQ_GT] = ACTIONS(7702), + [anon_sym_or] = ACTIONS(7700), + [anon_sym_and] = ACTIONS(7700), + [anon_sym_bitor] = ACTIONS(7702), + [anon_sym_xor] = ACTIONS(7700), + [anon_sym_bitand] = ACTIONS(7702), + [anon_sym_not_eq] = ACTIONS(7702), + [anon_sym_DASH_DASH] = ACTIONS(7702), + [anon_sym_PLUS_PLUS] = ACTIONS(7702), + [anon_sym_DOT] = ACTIONS(7700), + [anon_sym_DOT_STAR] = ACTIONS(7702), + [anon_sym_DASH_GT] = ACTIONS(7702), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_requires] = ACTIONS(7702), }, [STATE(3230)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), - [anon_sym_COMMA] = ACTIONS(7757), - [anon_sym_LPAREN2] = ACTIONS(7757), - [anon_sym_DASH] = ACTIONS(7755), - [anon_sym_PLUS] = ACTIONS(7755), - [anon_sym_STAR] = ACTIONS(7755), - [anon_sym_SLASH] = ACTIONS(7755), - [anon_sym_PERCENT] = ACTIONS(7755), - [anon_sym_PIPE_PIPE] = ACTIONS(7757), - [anon_sym_AMP_AMP] = ACTIONS(7757), - [anon_sym_PIPE] = ACTIONS(7755), - [anon_sym_CARET] = ACTIONS(7755), - [anon_sym_AMP] = ACTIONS(7755), - [anon_sym_EQ_EQ] = ACTIONS(7757), - [anon_sym_BANG_EQ] = ACTIONS(7757), - [anon_sym_GT] = ACTIONS(7755), - [anon_sym_GT_EQ] = ACTIONS(7755), - [anon_sym_LT_EQ] = ACTIONS(7755), - [anon_sym_LT] = ACTIONS(7755), - [anon_sym_LT_LT] = ACTIONS(7755), - [anon_sym_GT_GT] = ACTIONS(7755), - [anon_sym___extension__] = ACTIONS(7757), - [anon_sym_LBRACE] = ACTIONS(7757), - [anon_sym_LBRACK] = ACTIONS(7757), - [anon_sym_EQ] = ACTIONS(7755), - [anon_sym_const] = ACTIONS(7755), - [anon_sym_constexpr] = ACTIONS(7757), - [anon_sym_volatile] = ACTIONS(7757), - [anon_sym_restrict] = ACTIONS(7757), - [anon_sym___restrict__] = ACTIONS(7757), - [anon_sym__Atomic] = ACTIONS(7757), - [anon_sym__Noreturn] = ACTIONS(7757), - [anon_sym_noreturn] = ACTIONS(7757), - [anon_sym__Nonnull] = ACTIONS(7757), - [anon_sym_mutable] = ACTIONS(7757), - [anon_sym_constinit] = ACTIONS(7757), - [anon_sym_consteval] = ACTIONS(7757), - [anon_sym_alignas] = ACTIONS(7757), - [anon_sym__Alignas] = ACTIONS(7757), - [anon_sym_QMARK] = ACTIONS(7757), - [anon_sym_STAR_EQ] = ACTIONS(7757), - [anon_sym_SLASH_EQ] = ACTIONS(7757), - [anon_sym_PERCENT_EQ] = ACTIONS(7757), - [anon_sym_PLUS_EQ] = ACTIONS(7757), - [anon_sym_DASH_EQ] = ACTIONS(7757), - [anon_sym_LT_LT_EQ] = ACTIONS(7757), - [anon_sym_GT_GT_EQ] = ACTIONS(7755), - [anon_sym_AMP_EQ] = ACTIONS(7757), - [anon_sym_CARET_EQ] = ACTIONS(7757), - [anon_sym_PIPE_EQ] = ACTIONS(7757), - [anon_sym_and_eq] = ACTIONS(7757), - [anon_sym_or_eq] = ACTIONS(7757), - [anon_sym_xor_eq] = ACTIONS(7757), - [anon_sym_LT_EQ_GT] = ACTIONS(7757), - [anon_sym_or] = ACTIONS(7755), - [anon_sym_and] = ACTIONS(7755), - [anon_sym_bitor] = ACTIONS(7757), - [anon_sym_xor] = ACTIONS(7755), - [anon_sym_bitand] = ACTIONS(7757), - [anon_sym_not_eq] = ACTIONS(7757), - [anon_sym_DASH_DASH] = ACTIONS(7757), - [anon_sym_PLUS_PLUS] = ACTIONS(7757), - [anon_sym_DOT] = ACTIONS(7755), - [anon_sym_DOT_STAR] = ACTIONS(7757), - [anon_sym_DASH_GT] = ACTIONS(7757), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7757), - [anon_sym_override] = ACTIONS(7757), - [anon_sym_GT2] = ACTIONS(7757), - [anon_sym_requires] = ACTIONS(7757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7558), + [anon_sym_COMMA] = ACTIONS(7558), + [anon_sym_LPAREN2] = ACTIONS(7558), + [anon_sym_DASH] = ACTIONS(7556), + [anon_sym_PLUS] = ACTIONS(7556), + [anon_sym_STAR] = ACTIONS(7556), + [anon_sym_SLASH] = ACTIONS(7556), + [anon_sym_PERCENT] = ACTIONS(7556), + [anon_sym_PIPE_PIPE] = ACTIONS(7558), + [anon_sym_AMP_AMP] = ACTIONS(7558), + [anon_sym_PIPE] = ACTIONS(7556), + [anon_sym_CARET] = ACTIONS(7556), + [anon_sym_AMP] = ACTIONS(7556), + [anon_sym_EQ_EQ] = ACTIONS(7558), + [anon_sym_BANG_EQ] = ACTIONS(7558), + [anon_sym_GT] = ACTIONS(7556), + [anon_sym_GT_EQ] = ACTIONS(7556), + [anon_sym_LT_EQ] = ACTIONS(7556), + [anon_sym_LT] = ACTIONS(7556), + [anon_sym_LT_LT] = ACTIONS(7556), + [anon_sym_GT_GT] = ACTIONS(7556), + [anon_sym___extension__] = ACTIONS(7558), + [anon_sym_LBRACE] = ACTIONS(7558), + [anon_sym_LBRACK] = ACTIONS(7558), + [anon_sym_EQ] = ACTIONS(7556), + [anon_sym_const] = ACTIONS(7556), + [anon_sym_constexpr] = ACTIONS(7558), + [anon_sym_volatile] = ACTIONS(7558), + [anon_sym_restrict] = ACTIONS(7558), + [anon_sym___restrict__] = ACTIONS(7558), + [anon_sym__Atomic] = ACTIONS(7558), + [anon_sym__Noreturn] = ACTIONS(7558), + [anon_sym_noreturn] = ACTIONS(7558), + [anon_sym__Nonnull] = ACTIONS(7558), + [anon_sym_mutable] = ACTIONS(7558), + [anon_sym_constinit] = ACTIONS(7558), + [anon_sym_consteval] = ACTIONS(7558), + [anon_sym_alignas] = ACTIONS(7558), + [anon_sym__Alignas] = ACTIONS(7558), + [anon_sym_QMARK] = ACTIONS(7558), + [anon_sym_STAR_EQ] = ACTIONS(7558), + [anon_sym_SLASH_EQ] = ACTIONS(7558), + [anon_sym_PERCENT_EQ] = ACTIONS(7558), + [anon_sym_PLUS_EQ] = ACTIONS(7558), + [anon_sym_DASH_EQ] = ACTIONS(7558), + [anon_sym_LT_LT_EQ] = ACTIONS(7558), + [anon_sym_GT_GT_EQ] = ACTIONS(7556), + [anon_sym_AMP_EQ] = ACTIONS(7558), + [anon_sym_CARET_EQ] = ACTIONS(7558), + [anon_sym_PIPE_EQ] = ACTIONS(7558), + [anon_sym_and_eq] = ACTIONS(7558), + [anon_sym_or_eq] = ACTIONS(7558), + [anon_sym_xor_eq] = ACTIONS(7558), + [anon_sym_LT_EQ_GT] = ACTIONS(7558), + [anon_sym_or] = ACTIONS(7556), + [anon_sym_and] = ACTIONS(7556), + [anon_sym_bitor] = ACTIONS(7558), + [anon_sym_xor] = ACTIONS(7556), + [anon_sym_bitand] = ACTIONS(7558), + [anon_sym_not_eq] = ACTIONS(7558), + [anon_sym_DASH_DASH] = ACTIONS(7558), + [anon_sym_PLUS_PLUS] = ACTIONS(7558), + [anon_sym_DOT] = ACTIONS(7556), + [anon_sym_DOT_STAR] = ACTIONS(7558), + [anon_sym_DASH_GT] = ACTIONS(7558), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7558), + [anon_sym_override] = ACTIONS(7558), + [anon_sym_GT2] = ACTIONS(7558), + [anon_sym_requires] = ACTIONS(7558), }, [STATE(3231)] = { + [sym_type_qualifier] = STATE(3231), + [sym_alignas_qualifier] = STATE(3492), + [aux_sym__type_definition_type_repeat1] = STATE(3231), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_RPAREN] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_TILDE] = ACTIONS(6880), + [anon_sym_STAR] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_SEMI] = ACTIONS(6880), + [anon_sym___extension__] = ACTIONS(9071), + [anon_sym_virtual] = ACTIONS(6878), + [anon_sym_extern] = ACTIONS(6878), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_COLON_COLON] = ACTIONS(6880), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6880), + [anon_sym___declspec] = ACTIONS(6878), + [anon_sym___based] = ACTIONS(6878), + [anon_sym___cdecl] = ACTIONS(6878), + [anon_sym___clrcall] = ACTIONS(6878), + [anon_sym___stdcall] = ACTIONS(6878), + [anon_sym___fastcall] = ACTIONS(6878), + [anon_sym___thiscall] = ACTIONS(6878), + [anon_sym___vectorcall] = ACTIONS(6878), + [anon_sym_LBRACE] = ACTIONS(6880), + [anon_sym_signed] = ACTIONS(6878), + [anon_sym_unsigned] = ACTIONS(6878), + [anon_sym_long] = ACTIONS(6878), + [anon_sym_short] = ACTIONS(6878), + [anon_sym_LBRACK] = ACTIONS(6878), + [anon_sym_static] = ACTIONS(6878), + [anon_sym_EQ] = ACTIONS(6880), + [anon_sym_register] = ACTIONS(6878), + [anon_sym_inline] = ACTIONS(6878), + [anon_sym___inline] = ACTIONS(6878), + [anon_sym___inline__] = ACTIONS(6878), + [anon_sym___forceinline] = ACTIONS(6878), + [anon_sym_thread_local] = ACTIONS(6878), + [anon_sym___thread] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(9071), + [anon_sym_constexpr] = ACTIONS(9071), + [anon_sym_volatile] = ACTIONS(9071), + [anon_sym_restrict] = ACTIONS(9071), + [anon_sym___restrict__] = ACTIONS(9071), + [anon_sym__Atomic] = ACTIONS(9071), + [anon_sym__Noreturn] = ACTIONS(9071), + [anon_sym_noreturn] = ACTIONS(9071), + [anon_sym__Nonnull] = ACTIONS(9071), + [anon_sym_mutable] = ACTIONS(9071), + [anon_sym_constinit] = ACTIONS(9071), + [anon_sym_consteval] = ACTIONS(9071), + [anon_sym_alignas] = ACTIONS(9074), + [anon_sym__Alignas] = ACTIONS(9074), + [sym_primitive_type] = ACTIONS(6878), + [anon_sym_enum] = ACTIONS(6878), + [anon_sym_class] = ACTIONS(6878), + [anon_sym_struct] = ACTIONS(6878), + [anon_sym_union] = ACTIONS(6878), + [anon_sym_typename] = ACTIONS(6878), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6878), + [anon_sym_decltype] = ACTIONS(6878), + [anon_sym_template] = ACTIONS(6878), + [anon_sym_GT2] = ACTIONS(6880), + [anon_sym_operator] = ACTIONS(6878), + [anon_sym_LBRACK_COLON] = ACTIONS(6880), + }, + [STATE(3232)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7706), + [anon_sym_COMMA] = ACTIONS(7706), + [anon_sym_LPAREN2] = ACTIONS(7706), + [anon_sym_DASH] = ACTIONS(7704), + [anon_sym_PLUS] = ACTIONS(7704), + [anon_sym_STAR] = ACTIONS(7704), + [anon_sym_SLASH] = ACTIONS(7704), + [anon_sym_PERCENT] = ACTIONS(7704), + [anon_sym_PIPE_PIPE] = ACTIONS(7706), + [anon_sym_AMP_AMP] = ACTIONS(7706), + [anon_sym_PIPE] = ACTIONS(7704), + [anon_sym_CARET] = ACTIONS(7704), + [anon_sym_AMP] = ACTIONS(7704), + [anon_sym_EQ_EQ] = ACTIONS(7706), + [anon_sym_BANG_EQ] = ACTIONS(7706), + [anon_sym_GT] = ACTIONS(7704), + [anon_sym_GT_EQ] = ACTIONS(7706), + [anon_sym_LT_EQ] = ACTIONS(7704), + [anon_sym_LT] = ACTIONS(7704), + [anon_sym_LT_LT] = ACTIONS(7704), + [anon_sym_GT_GT] = ACTIONS(7704), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym_LBRACE] = ACTIONS(7706), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_RBRACK] = ACTIONS(7706), + [anon_sym_EQ] = ACTIONS(7704), + [anon_sym_const] = ACTIONS(7704), + [anon_sym_constexpr] = ACTIONS(7706), + [anon_sym_volatile] = ACTIONS(7706), + [anon_sym_restrict] = ACTIONS(7706), + [anon_sym___restrict__] = ACTIONS(7706), + [anon_sym__Atomic] = ACTIONS(7706), + [anon_sym__Noreturn] = ACTIONS(7706), + [anon_sym_noreturn] = ACTIONS(7706), + [anon_sym__Nonnull] = ACTIONS(7706), + [anon_sym_mutable] = ACTIONS(7706), + [anon_sym_constinit] = ACTIONS(7706), + [anon_sym_consteval] = ACTIONS(7706), + [anon_sym_alignas] = ACTIONS(7706), + [anon_sym__Alignas] = ACTIONS(7706), + [anon_sym_QMARK] = ACTIONS(7706), + [anon_sym_STAR_EQ] = ACTIONS(7706), + [anon_sym_SLASH_EQ] = ACTIONS(7706), + [anon_sym_PERCENT_EQ] = ACTIONS(7706), + [anon_sym_PLUS_EQ] = ACTIONS(7706), + [anon_sym_DASH_EQ] = ACTIONS(7706), + [anon_sym_LT_LT_EQ] = ACTIONS(7706), + [anon_sym_GT_GT_EQ] = ACTIONS(7706), + [anon_sym_AMP_EQ] = ACTIONS(7706), + [anon_sym_CARET_EQ] = ACTIONS(7706), + [anon_sym_PIPE_EQ] = ACTIONS(7706), + [anon_sym_and_eq] = ACTIONS(7706), + [anon_sym_or_eq] = ACTIONS(7706), + [anon_sym_xor_eq] = ACTIONS(7706), + [anon_sym_LT_EQ_GT] = ACTIONS(7706), + [anon_sym_or] = ACTIONS(7704), + [anon_sym_and] = ACTIONS(7704), + [anon_sym_bitor] = ACTIONS(7706), + [anon_sym_xor] = ACTIONS(7704), + [anon_sym_bitand] = ACTIONS(7706), + [anon_sym_not_eq] = ACTIONS(7706), + [anon_sym_DASH_DASH] = ACTIONS(7706), + [anon_sym_PLUS_PLUS] = ACTIONS(7706), + [anon_sym_DOT] = ACTIONS(7704), + [anon_sym_DOT_STAR] = ACTIONS(7706), + [anon_sym_DASH_GT] = ACTIONS(7706), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_requires] = ACTIONS(7706), + }, + [STATE(3233)] = { + [sym_identifier] = ACTIONS(9077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9079), + [anon_sym_COMMA] = ACTIONS(9079), + [anon_sym_RPAREN] = ACTIONS(9079), + [aux_sym_preproc_if_token2] = ACTIONS(9079), + [aux_sym_preproc_else_token1] = ACTIONS(9079), + [aux_sym_preproc_elif_token1] = ACTIONS(9077), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9079), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9079), + [anon_sym_LPAREN2] = ACTIONS(9079), + [anon_sym_DASH] = ACTIONS(9077), + [anon_sym_PLUS] = ACTIONS(9077), + [anon_sym_STAR] = ACTIONS(9077), + [anon_sym_SLASH] = ACTIONS(9077), + [anon_sym_PERCENT] = ACTIONS(9077), + [anon_sym_PIPE_PIPE] = ACTIONS(9079), + [anon_sym_AMP_AMP] = ACTIONS(9079), + [anon_sym_PIPE] = ACTIONS(9077), + [anon_sym_CARET] = ACTIONS(9077), + [anon_sym_AMP] = ACTIONS(9077), + [anon_sym_EQ_EQ] = ACTIONS(9079), + [anon_sym_BANG_EQ] = ACTIONS(9079), + [anon_sym_GT] = ACTIONS(9077), + [anon_sym_GT_EQ] = ACTIONS(9079), + [anon_sym_LT_EQ] = ACTIONS(9077), + [anon_sym_LT] = ACTIONS(9077), + [anon_sym_LT_LT] = ACTIONS(9077), + [anon_sym_GT_GT] = ACTIONS(9077), + [anon_sym_SEMI] = ACTIONS(9079), + [anon_sym___attribute__] = ACTIONS(9077), + [anon_sym___attribute] = ACTIONS(9077), + [anon_sym_COLON] = ACTIONS(9077), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9079), + [anon_sym_LBRACE] = ACTIONS(9079), + [anon_sym_RBRACE] = ACTIONS(9079), + [anon_sym_LBRACK] = ACTIONS(9077), + [anon_sym_RBRACK] = ACTIONS(9079), + [anon_sym_EQ] = ACTIONS(9077), + [anon_sym_QMARK] = ACTIONS(9079), + [anon_sym_STAR_EQ] = ACTIONS(9079), + [anon_sym_SLASH_EQ] = ACTIONS(9079), + [anon_sym_PERCENT_EQ] = ACTIONS(9079), + [anon_sym_PLUS_EQ] = ACTIONS(9079), + [anon_sym_DASH_EQ] = ACTIONS(9079), + [anon_sym_LT_LT_EQ] = ACTIONS(9079), + [anon_sym_GT_GT_EQ] = ACTIONS(9079), + [anon_sym_AMP_EQ] = ACTIONS(9079), + [anon_sym_CARET_EQ] = ACTIONS(9079), + [anon_sym_PIPE_EQ] = ACTIONS(9079), + [anon_sym_and_eq] = ACTIONS(9077), + [anon_sym_or_eq] = ACTIONS(9077), + [anon_sym_xor_eq] = ACTIONS(9077), + [anon_sym_LT_EQ_GT] = ACTIONS(9079), + [anon_sym_or] = ACTIONS(9077), + [anon_sym_and] = ACTIONS(9077), + [anon_sym_bitor] = ACTIONS(9077), + [anon_sym_xor] = ACTIONS(9077), + [anon_sym_bitand] = ACTIONS(9077), + [anon_sym_not_eq] = ACTIONS(9077), + [anon_sym_DASH_DASH] = ACTIONS(9079), + [anon_sym_PLUS_PLUS] = ACTIONS(9079), + [anon_sym_asm] = ACTIONS(9077), + [anon_sym___asm__] = ACTIONS(9077), + [anon_sym___asm] = ACTIONS(9077), + [anon_sym_DOT] = ACTIONS(9077), + [anon_sym_DOT_STAR] = ACTIONS(9079), + [anon_sym_DASH_GT] = ACTIONS(9079), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9077), + [anon_sym_COLON_RBRACK] = ACTIONS(9079), + }, + [STATE(3234)] = { + [sym_argument_list] = STATE(5809), + [sym_initializer_list] = STATE(5899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8592), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + }, + [STATE(3235)] = { + [sym_identifier] = ACTIONS(9081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9083), + [anon_sym_COMMA] = ACTIONS(9083), + [anon_sym_RPAREN] = ACTIONS(9083), + [aux_sym_preproc_if_token2] = ACTIONS(9083), + [aux_sym_preproc_else_token1] = ACTIONS(9083), + [aux_sym_preproc_elif_token1] = ACTIONS(9081), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9083), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9083), + [anon_sym_LPAREN2] = ACTIONS(9083), + [anon_sym_DASH] = ACTIONS(9081), + [anon_sym_PLUS] = ACTIONS(9081), + [anon_sym_STAR] = ACTIONS(9081), + [anon_sym_SLASH] = ACTIONS(9081), + [anon_sym_PERCENT] = ACTIONS(9081), + [anon_sym_PIPE_PIPE] = ACTIONS(9083), + [anon_sym_AMP_AMP] = ACTIONS(9083), + [anon_sym_PIPE] = ACTIONS(9081), + [anon_sym_CARET] = ACTIONS(9081), + [anon_sym_AMP] = ACTIONS(9081), + [anon_sym_EQ_EQ] = ACTIONS(9083), + [anon_sym_BANG_EQ] = ACTIONS(9083), + [anon_sym_GT] = ACTIONS(9081), + [anon_sym_GT_EQ] = ACTIONS(9083), + [anon_sym_LT_EQ] = ACTIONS(9081), + [anon_sym_LT] = ACTIONS(9081), + [anon_sym_LT_LT] = ACTIONS(9081), + [anon_sym_GT_GT] = ACTIONS(9081), + [anon_sym_SEMI] = ACTIONS(9083), + [anon_sym___attribute__] = ACTIONS(9081), + [anon_sym___attribute] = ACTIONS(9081), + [anon_sym_COLON] = ACTIONS(9081), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9083), + [anon_sym_LBRACE] = ACTIONS(9083), + [anon_sym_RBRACE] = ACTIONS(9083), + [anon_sym_LBRACK] = ACTIONS(9081), + [anon_sym_RBRACK] = ACTIONS(9083), + [anon_sym_EQ] = ACTIONS(9081), + [anon_sym_QMARK] = ACTIONS(9083), + [anon_sym_STAR_EQ] = ACTIONS(9083), + [anon_sym_SLASH_EQ] = ACTIONS(9083), + [anon_sym_PERCENT_EQ] = ACTIONS(9083), + [anon_sym_PLUS_EQ] = ACTIONS(9083), + [anon_sym_DASH_EQ] = ACTIONS(9083), + [anon_sym_LT_LT_EQ] = ACTIONS(9083), + [anon_sym_GT_GT_EQ] = ACTIONS(9083), + [anon_sym_AMP_EQ] = ACTIONS(9083), + [anon_sym_CARET_EQ] = ACTIONS(9083), + [anon_sym_PIPE_EQ] = ACTIONS(9083), + [anon_sym_and_eq] = ACTIONS(9081), + [anon_sym_or_eq] = ACTIONS(9081), + [anon_sym_xor_eq] = ACTIONS(9081), + [anon_sym_LT_EQ_GT] = ACTIONS(9083), + [anon_sym_or] = ACTIONS(9081), + [anon_sym_and] = ACTIONS(9081), + [anon_sym_bitor] = ACTIONS(9081), + [anon_sym_xor] = ACTIONS(9081), + [anon_sym_bitand] = ACTIONS(9081), + [anon_sym_not_eq] = ACTIONS(9081), + [anon_sym_DASH_DASH] = ACTIONS(9083), + [anon_sym_PLUS_PLUS] = ACTIONS(9083), + [anon_sym_asm] = ACTIONS(9081), + [anon_sym___asm__] = ACTIONS(9081), + [anon_sym___asm] = ACTIONS(9081), + [anon_sym_DOT] = ACTIONS(9081), + [anon_sym_DOT_STAR] = ACTIONS(9083), + [anon_sym_DASH_GT] = ACTIONS(9083), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9081), + [anon_sym_COLON_RBRACK] = ACTIONS(9083), + }, + [STATE(3236)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7246), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_GT2] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + }, + [STATE(3237)] = { + [sym_identifier] = ACTIONS(3168), + [aux_sym_preproc_def_token1] = ACTIONS(3168), + [anon_sym_COMMA] = ACTIONS(3546), + [aux_sym_preproc_if_token1] = ACTIONS(3168), + [aux_sym_preproc_if_token2] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3168), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3168), + [sym_preproc_directive] = ACTIONS(3168), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym___extension__] = ACTIONS(3168), + [anon_sym_typedef] = ACTIONS(3168), + [anon_sym_virtual] = ACTIONS(3168), + [anon_sym_extern] = ACTIONS(3168), + [anon_sym___attribute__] = ACTIONS(8566), + [anon_sym___attribute] = ACTIONS(8566), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_COLON_COLON] = ACTIONS(3166), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3166), + [anon_sym___declspec] = ACTIONS(3168), + [anon_sym___based] = ACTIONS(3168), + [anon_sym_signed] = ACTIONS(3168), + [anon_sym_unsigned] = ACTIONS(3168), + [anon_sym_long] = ACTIONS(3168), + [anon_sym_short] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_register] = ACTIONS(3168), + [anon_sym_inline] = ACTIONS(3168), + [anon_sym___inline] = ACTIONS(3168), + [anon_sym___inline__] = ACTIONS(3168), + [anon_sym___forceinline] = ACTIONS(3168), + [anon_sym_thread_local] = ACTIONS(3168), + [anon_sym___thread] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_constexpr] = ACTIONS(3168), + [anon_sym_volatile] = ACTIONS(3168), + [anon_sym_restrict] = ACTIONS(3168), + [anon_sym___restrict__] = ACTIONS(3168), + [anon_sym__Atomic] = ACTIONS(3168), + [anon_sym__Noreturn] = ACTIONS(3168), + [anon_sym_noreturn] = ACTIONS(3168), + [anon_sym__Nonnull] = ACTIONS(3168), + [anon_sym_mutable] = ACTIONS(3168), + [anon_sym_constinit] = ACTIONS(3168), + [anon_sym_consteval] = ACTIONS(3168), + [anon_sym_alignas] = ACTIONS(3168), + [anon_sym__Alignas] = ACTIONS(3168), + [sym_primitive_type] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_struct] = ACTIONS(3168), + [anon_sym_union] = ACTIONS(3168), + [anon_sym_typename] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3168), + [anon_sym_decltype] = ACTIONS(3168), + [anon_sym_explicit] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_template] = ACTIONS(3168), + [anon_sym_operator] = ACTIONS(3168), + [anon_sym_friend] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_static_assert] = ACTIONS(3168), + [anon_sym_LBRACK_COLON] = ACTIONS(3166), + }, + [STATE(3238)] = { + [sym_identifier] = ACTIONS(9085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9087), + [anon_sym_COMMA] = ACTIONS(9087), + [anon_sym_RPAREN] = ACTIONS(9087), + [aux_sym_preproc_if_token2] = ACTIONS(9087), + [aux_sym_preproc_else_token1] = ACTIONS(9087), + [aux_sym_preproc_elif_token1] = ACTIONS(9085), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9087), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9087), + [anon_sym_LPAREN2] = ACTIONS(9087), + [anon_sym_DASH] = ACTIONS(9085), + [anon_sym_PLUS] = ACTIONS(9085), + [anon_sym_STAR] = ACTIONS(9085), + [anon_sym_SLASH] = ACTIONS(9085), + [anon_sym_PERCENT] = ACTIONS(9085), + [anon_sym_PIPE_PIPE] = ACTIONS(9087), + [anon_sym_AMP_AMP] = ACTIONS(9087), + [anon_sym_PIPE] = ACTIONS(9085), + [anon_sym_CARET] = ACTIONS(9085), + [anon_sym_AMP] = ACTIONS(9085), + [anon_sym_EQ_EQ] = ACTIONS(9087), + [anon_sym_BANG_EQ] = ACTIONS(9087), + [anon_sym_GT] = ACTIONS(9085), + [anon_sym_GT_EQ] = ACTIONS(9087), + [anon_sym_LT_EQ] = ACTIONS(9085), + [anon_sym_LT] = ACTIONS(9085), + [anon_sym_LT_LT] = ACTIONS(9085), + [anon_sym_GT_GT] = ACTIONS(9085), + [anon_sym_SEMI] = ACTIONS(9087), + [anon_sym___attribute__] = ACTIONS(9085), + [anon_sym___attribute] = ACTIONS(9085), + [anon_sym_COLON] = ACTIONS(9085), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9087), + [anon_sym_LBRACE] = ACTIONS(9087), + [anon_sym_RBRACE] = ACTIONS(9087), + [anon_sym_LBRACK] = ACTIONS(9085), + [anon_sym_RBRACK] = ACTIONS(9087), + [anon_sym_EQ] = ACTIONS(9085), + [anon_sym_QMARK] = ACTIONS(9087), + [anon_sym_STAR_EQ] = ACTIONS(9087), + [anon_sym_SLASH_EQ] = ACTIONS(9087), + [anon_sym_PERCENT_EQ] = ACTIONS(9087), + [anon_sym_PLUS_EQ] = ACTIONS(9087), + [anon_sym_DASH_EQ] = ACTIONS(9087), + [anon_sym_LT_LT_EQ] = ACTIONS(9087), + [anon_sym_GT_GT_EQ] = ACTIONS(9087), + [anon_sym_AMP_EQ] = ACTIONS(9087), + [anon_sym_CARET_EQ] = ACTIONS(9087), + [anon_sym_PIPE_EQ] = ACTIONS(9087), + [anon_sym_and_eq] = ACTIONS(9085), + [anon_sym_or_eq] = ACTIONS(9085), + [anon_sym_xor_eq] = ACTIONS(9085), + [anon_sym_LT_EQ_GT] = ACTIONS(9087), + [anon_sym_or] = ACTIONS(9085), + [anon_sym_and] = ACTIONS(9085), + [anon_sym_bitor] = ACTIONS(9085), + [anon_sym_xor] = ACTIONS(9085), + [anon_sym_bitand] = ACTIONS(9085), + [anon_sym_not_eq] = ACTIONS(9085), + [anon_sym_DASH_DASH] = ACTIONS(9087), + [anon_sym_PLUS_PLUS] = ACTIONS(9087), + [anon_sym_asm] = ACTIONS(9085), + [anon_sym___asm__] = ACTIONS(9085), + [anon_sym___asm] = ACTIONS(9085), + [anon_sym_DOT] = ACTIONS(9085), + [anon_sym_DOT_STAR] = ACTIONS(9087), + [anon_sym_DASH_GT] = ACTIONS(9087), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9085), + [anon_sym_COLON_RBRACK] = ACTIONS(9087), + }, + [STATE(3239)] = { + [sym_decltype_auto] = STATE(3223), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7246), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7246), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_and_eq] = ACTIONS(7248), + [anon_sym_or_eq] = ACTIONS(7248), + [anon_sym_xor_eq] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8590), + [anon_sym_decltype] = ACTIONS(7021), + [anon_sym_GT2] = ACTIONS(7248), + }, + [STATE(3240)] = { + [sym_identifier] = ACTIONS(3326), + [aux_sym_preproc_def_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token2] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3326), + [sym_preproc_directive] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym___extension__] = ACTIONS(3326), + [anon_sym_typedef] = ACTIONS(3326), + [anon_sym_virtual] = ACTIONS(3326), + [anon_sym_extern] = ACTIONS(3326), + [anon_sym___attribute__] = ACTIONS(3326), + [anon_sym___attribute] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3328), + [anon_sym___declspec] = ACTIONS(3326), + [anon_sym___based] = ACTIONS(3326), + [anon_sym_signed] = ACTIONS(3326), + [anon_sym_unsigned] = ACTIONS(3326), + [anon_sym_long] = ACTIONS(3326), + [anon_sym_short] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_register] = ACTIONS(3326), + [anon_sym_inline] = ACTIONS(3326), + [anon_sym___inline] = ACTIONS(3326), + [anon_sym___inline__] = ACTIONS(3326), + [anon_sym___forceinline] = ACTIONS(3326), + [anon_sym_thread_local] = ACTIONS(3326), + [anon_sym___thread] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_constexpr] = ACTIONS(3326), + [anon_sym_volatile] = ACTIONS(3326), + [anon_sym_restrict] = ACTIONS(3326), + [anon_sym___restrict__] = ACTIONS(3326), + [anon_sym__Atomic] = ACTIONS(3326), + [anon_sym__Noreturn] = ACTIONS(3326), + [anon_sym_noreturn] = ACTIONS(3326), + [anon_sym__Nonnull] = ACTIONS(3326), + [anon_sym_mutable] = ACTIONS(3326), + [anon_sym_constinit] = ACTIONS(3326), + [anon_sym_consteval] = ACTIONS(3326), + [anon_sym_alignas] = ACTIONS(3326), + [anon_sym__Alignas] = ACTIONS(3326), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_union] = ACTIONS(3326), + [anon_sym_typename] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3326), + [anon_sym_decltype] = ACTIONS(3326), + [anon_sym_explicit] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_template] = ACTIONS(3326), + [anon_sym_operator] = ACTIONS(3326), + [anon_sym_friend] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_static_assert] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_LBRACK_COLON] = ACTIONS(3328), + }, + [STATE(3241)] = { + [sym_identifier] = ACTIONS(3326), + [aux_sym_preproc_def_token1] = ACTIONS(3326), + [aux_sym_preproc_if_token1] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3326), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3326), + [sym_preproc_directive] = ACTIONS(3326), + [anon_sym_LPAREN2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym___extension__] = ACTIONS(3326), + [anon_sym_typedef] = ACTIONS(3326), + [anon_sym_virtual] = ACTIONS(3326), + [anon_sym_extern] = ACTIONS(3326), + [anon_sym___attribute__] = ACTIONS(3326), + [anon_sym___attribute] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_COLON_COLON] = ACTIONS(3328), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3328), + [anon_sym___declspec] = ACTIONS(3326), + [anon_sym___based] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_signed] = ACTIONS(3326), + [anon_sym_unsigned] = ACTIONS(3326), + [anon_sym_long] = ACTIONS(3326), + [anon_sym_short] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_register] = ACTIONS(3326), + [anon_sym_inline] = ACTIONS(3326), + [anon_sym___inline] = ACTIONS(3326), + [anon_sym___inline__] = ACTIONS(3326), + [anon_sym___forceinline] = ACTIONS(3326), + [anon_sym_thread_local] = ACTIONS(3326), + [anon_sym___thread] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_constexpr] = ACTIONS(3326), + [anon_sym_volatile] = ACTIONS(3326), + [anon_sym_restrict] = ACTIONS(3326), + [anon_sym___restrict__] = ACTIONS(3326), + [anon_sym__Atomic] = ACTIONS(3326), + [anon_sym__Noreturn] = ACTIONS(3326), + [anon_sym_noreturn] = ACTIONS(3326), + [anon_sym__Nonnull] = ACTIONS(3326), + [anon_sym_mutable] = ACTIONS(3326), + [anon_sym_constinit] = ACTIONS(3326), + [anon_sym_consteval] = ACTIONS(3326), + [anon_sym_alignas] = ACTIONS(3326), + [anon_sym__Alignas] = ACTIONS(3326), + [sym_primitive_type] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3326), + [anon_sym_union] = ACTIONS(3326), + [anon_sym_typename] = ACTIONS(3326), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3326), + [anon_sym_decltype] = ACTIONS(3326), + [anon_sym_explicit] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_template] = ACTIONS(3326), + [anon_sym_operator] = ACTIONS(3326), + [anon_sym_friend] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_static_assert] = ACTIONS(3326), + [anon_sym_catch] = ACTIONS(3326), + [anon_sym_LBRACK_COLON] = ACTIONS(3328), + }, + [STATE(3242)] = { + [sym_identifier] = ACTIONS(9089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9091), + [anon_sym_COMMA] = ACTIONS(9091), + [anon_sym_RPAREN] = ACTIONS(9091), + [aux_sym_preproc_if_token2] = ACTIONS(9091), + [aux_sym_preproc_else_token1] = ACTIONS(9091), + [aux_sym_preproc_elif_token1] = ACTIONS(9089), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9091), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9091), + [anon_sym_LPAREN2] = ACTIONS(9091), + [anon_sym_DASH] = ACTIONS(9089), + [anon_sym_PLUS] = ACTIONS(9089), + [anon_sym_STAR] = ACTIONS(9089), + [anon_sym_SLASH] = ACTIONS(9089), + [anon_sym_PERCENT] = ACTIONS(9089), + [anon_sym_PIPE_PIPE] = ACTIONS(9091), + [anon_sym_AMP_AMP] = ACTIONS(9091), + [anon_sym_PIPE] = ACTIONS(9089), + [anon_sym_CARET] = ACTIONS(9089), + [anon_sym_AMP] = ACTIONS(9089), + [anon_sym_EQ_EQ] = ACTIONS(9091), + [anon_sym_BANG_EQ] = ACTIONS(9091), + [anon_sym_GT] = ACTIONS(9089), + [anon_sym_GT_EQ] = ACTIONS(9091), + [anon_sym_LT_EQ] = ACTIONS(9089), + [anon_sym_LT] = ACTIONS(9089), + [anon_sym_LT_LT] = ACTIONS(9089), + [anon_sym_GT_GT] = ACTIONS(9089), + [anon_sym_SEMI] = ACTIONS(9091), + [anon_sym___attribute__] = ACTIONS(9089), + [anon_sym___attribute] = ACTIONS(9089), + [anon_sym_COLON] = ACTIONS(9089), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9091), + [anon_sym_LBRACE] = ACTIONS(9091), + [anon_sym_RBRACE] = ACTIONS(9091), + [anon_sym_LBRACK] = ACTIONS(9089), + [anon_sym_RBRACK] = ACTIONS(9091), + [anon_sym_EQ] = ACTIONS(9089), + [anon_sym_QMARK] = ACTIONS(9091), + [anon_sym_STAR_EQ] = ACTIONS(9091), + [anon_sym_SLASH_EQ] = ACTIONS(9091), + [anon_sym_PERCENT_EQ] = ACTIONS(9091), + [anon_sym_PLUS_EQ] = ACTIONS(9091), + [anon_sym_DASH_EQ] = ACTIONS(9091), + [anon_sym_LT_LT_EQ] = ACTIONS(9091), + [anon_sym_GT_GT_EQ] = ACTIONS(9091), + [anon_sym_AMP_EQ] = ACTIONS(9091), + [anon_sym_CARET_EQ] = ACTIONS(9091), + [anon_sym_PIPE_EQ] = ACTIONS(9091), + [anon_sym_and_eq] = ACTIONS(9089), + [anon_sym_or_eq] = ACTIONS(9089), + [anon_sym_xor_eq] = ACTIONS(9089), + [anon_sym_LT_EQ_GT] = ACTIONS(9091), + [anon_sym_or] = ACTIONS(9089), + [anon_sym_and] = ACTIONS(9089), + [anon_sym_bitor] = ACTIONS(9089), + [anon_sym_xor] = ACTIONS(9089), + [anon_sym_bitand] = ACTIONS(9089), + [anon_sym_not_eq] = ACTIONS(9089), + [anon_sym_DASH_DASH] = ACTIONS(9091), + [anon_sym_PLUS_PLUS] = ACTIONS(9091), + [anon_sym_asm] = ACTIONS(9089), + [anon_sym___asm__] = ACTIONS(9089), + [anon_sym___asm] = ACTIONS(9089), + [anon_sym_DOT] = ACTIONS(9089), + [anon_sym_DOT_STAR] = ACTIONS(9091), + [anon_sym_DASH_GT] = ACTIONS(9091), + [sym_comment] = ACTIONS(3), + [anon_sym_try] = ACTIONS(9089), + [anon_sym_COLON_RBRACK] = ACTIONS(9091), + }, + [STATE(3243)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7600), + [anon_sym_COMMA] = ACTIONS(7600), + [anon_sym_LPAREN2] = ACTIONS(7600), + [anon_sym_DASH] = ACTIONS(7598), + [anon_sym_PLUS] = ACTIONS(7598), + [anon_sym_STAR] = ACTIONS(7598), + [anon_sym_SLASH] = ACTIONS(7598), + [anon_sym_PERCENT] = ACTIONS(7598), + [anon_sym_PIPE_PIPE] = ACTIONS(7600), + [anon_sym_AMP_AMP] = ACTIONS(7600), + [anon_sym_PIPE] = ACTIONS(7598), + [anon_sym_CARET] = ACTIONS(7598), + [anon_sym_AMP] = ACTIONS(7598), + [anon_sym_EQ_EQ] = ACTIONS(7600), + [anon_sym_BANG_EQ] = ACTIONS(7600), + [anon_sym_GT] = ACTIONS(7598), + [anon_sym_GT_EQ] = ACTIONS(7598), + [anon_sym_LT_EQ] = ACTIONS(7598), + [anon_sym_LT] = ACTIONS(7598), + [anon_sym_LT_LT] = ACTIONS(7598), + [anon_sym_GT_GT] = ACTIONS(7598), + [anon_sym___extension__] = ACTIONS(7600), + [anon_sym_LBRACE] = ACTIONS(7600), + [anon_sym_LBRACK] = ACTIONS(7600), + [anon_sym_EQ] = ACTIONS(7598), + [anon_sym_const] = ACTIONS(7598), + [anon_sym_constexpr] = ACTIONS(7600), + [anon_sym_volatile] = ACTIONS(7600), + [anon_sym_restrict] = ACTIONS(7600), + [anon_sym___restrict__] = ACTIONS(7600), + [anon_sym__Atomic] = ACTIONS(7600), + [anon_sym__Noreturn] = ACTIONS(7600), + [anon_sym_noreturn] = ACTIONS(7600), + [anon_sym__Nonnull] = ACTIONS(7600), + [anon_sym_mutable] = ACTIONS(7600), + [anon_sym_constinit] = ACTIONS(7600), + [anon_sym_consteval] = ACTIONS(7600), + [anon_sym_alignas] = ACTIONS(7600), + [anon_sym__Alignas] = ACTIONS(7600), + [anon_sym_QMARK] = ACTIONS(7600), + [anon_sym_STAR_EQ] = ACTIONS(7600), + [anon_sym_SLASH_EQ] = ACTIONS(7600), + [anon_sym_PERCENT_EQ] = ACTIONS(7600), + [anon_sym_PLUS_EQ] = ACTIONS(7600), + [anon_sym_DASH_EQ] = ACTIONS(7600), + [anon_sym_LT_LT_EQ] = ACTIONS(7600), + [anon_sym_GT_GT_EQ] = ACTIONS(7598), + [anon_sym_AMP_EQ] = ACTIONS(7600), + [anon_sym_CARET_EQ] = ACTIONS(7600), + [anon_sym_PIPE_EQ] = ACTIONS(7600), + [anon_sym_and_eq] = ACTIONS(7600), + [anon_sym_or_eq] = ACTIONS(7600), + [anon_sym_xor_eq] = ACTIONS(7600), + [anon_sym_LT_EQ_GT] = ACTIONS(7600), + [anon_sym_or] = ACTIONS(7598), + [anon_sym_and] = ACTIONS(7598), + [anon_sym_bitor] = ACTIONS(7600), + [anon_sym_xor] = ACTIONS(7598), + [anon_sym_bitand] = ACTIONS(7600), + [anon_sym_not_eq] = ACTIONS(7600), + [anon_sym_DASH_DASH] = ACTIONS(7600), + [anon_sym_PLUS_PLUS] = ACTIONS(7600), + [anon_sym_DOT] = ACTIONS(7598), + [anon_sym_DOT_STAR] = ACTIONS(7600), + [anon_sym_DASH_GT] = ACTIONS(7600), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7600), + [anon_sym_override] = ACTIONS(7600), + [anon_sym_GT2] = ACTIONS(7600), + [anon_sym_requires] = ACTIONS(7600), + }, + [STATE(3244)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), [anon_sym_COMMA] = ACTIONS(7753), [anon_sym_LPAREN2] = ACTIONS(7753), @@ -410446,7 +411226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(7753), [anon_sym_BANG_EQ] = ACTIONS(7753), [anon_sym_GT] = ACTIONS(7751), - [anon_sym_GT_EQ] = ACTIONS(7753), + [anon_sym_GT_EQ] = ACTIONS(7751), [anon_sym_LT_EQ] = ACTIONS(7751), [anon_sym_LT] = ACTIONS(7751), [anon_sym_LT_LT] = ACTIONS(7751), @@ -410454,7 +411234,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___extension__] = ACTIONS(7753), [anon_sym_LBRACE] = ACTIONS(7753), [anon_sym_LBRACK] = ACTIONS(7753), - [anon_sym_RBRACK] = ACTIONS(7753), [anon_sym_EQ] = ACTIONS(7751), [anon_sym_const] = ACTIONS(7751), [anon_sym_constexpr] = ACTIONS(7753), @@ -410470,5525 +411249,1462 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_consteval] = ACTIONS(7753), [anon_sym_alignas] = ACTIONS(7753), [anon_sym__Alignas] = ACTIONS(7753), - [anon_sym_QMARK] = ACTIONS(7753), - [anon_sym_STAR_EQ] = ACTIONS(7753), - [anon_sym_SLASH_EQ] = ACTIONS(7753), - [anon_sym_PERCENT_EQ] = ACTIONS(7753), - [anon_sym_PLUS_EQ] = ACTIONS(7753), - [anon_sym_DASH_EQ] = ACTIONS(7753), - [anon_sym_LT_LT_EQ] = ACTIONS(7753), - [anon_sym_GT_GT_EQ] = ACTIONS(7753), - [anon_sym_AMP_EQ] = ACTIONS(7753), - [anon_sym_CARET_EQ] = ACTIONS(7753), - [anon_sym_PIPE_EQ] = ACTIONS(7753), - [anon_sym_and_eq] = ACTIONS(7753), - [anon_sym_or_eq] = ACTIONS(7753), - [anon_sym_xor_eq] = ACTIONS(7753), - [anon_sym_LT_EQ_GT] = ACTIONS(7753), - [anon_sym_or] = ACTIONS(7751), - [anon_sym_and] = ACTIONS(7751), - [anon_sym_bitor] = ACTIONS(7753), - [anon_sym_xor] = ACTIONS(7751), - [anon_sym_bitand] = ACTIONS(7753), - [anon_sym_not_eq] = ACTIONS(7753), - [anon_sym_DASH_DASH] = ACTIONS(7753), - [anon_sym_PLUS_PLUS] = ACTIONS(7753), - [anon_sym_DOT] = ACTIONS(7751), - [anon_sym_DOT_STAR] = ACTIONS(7753), - [anon_sym_DASH_GT] = ACTIONS(7753), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7753), - [anon_sym_override] = ACTIONS(7753), - [anon_sym_requires] = ACTIONS(7753), - }, - [STATE(3232)] = { - [sym_identifier] = ACTIONS(7585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7587), - [anon_sym_COMMA] = ACTIONS(7587), - [anon_sym_RPAREN] = ACTIONS(7587), - [anon_sym_LPAREN2] = ACTIONS(7587), - [anon_sym_DASH] = ACTIONS(7585), - [anon_sym_PLUS] = ACTIONS(7585), - [anon_sym_STAR] = ACTIONS(7587), - [anon_sym_SLASH] = ACTIONS(7585), - [anon_sym_PERCENT] = ACTIONS(7587), - [anon_sym_PIPE_PIPE] = ACTIONS(7587), - [anon_sym_AMP_AMP] = ACTIONS(7587), - [anon_sym_PIPE] = ACTIONS(7585), - [anon_sym_CARET] = ACTIONS(7587), - [anon_sym_AMP] = ACTIONS(7585), - [anon_sym_EQ_EQ] = ACTIONS(7587), - [anon_sym_BANG_EQ] = ACTIONS(7587), - [anon_sym_GT] = ACTIONS(7585), - [anon_sym_GT_EQ] = ACTIONS(7587), - [anon_sym_LT_EQ] = ACTIONS(7585), - [anon_sym_LT] = ACTIONS(7585), - [anon_sym_LT_LT] = ACTIONS(7587), - [anon_sym_GT_GT] = ACTIONS(7587), - [anon_sym_SEMI] = ACTIONS(7587), - [anon_sym___extension__] = ACTIONS(7585), - [anon_sym___attribute__] = ACTIONS(7585), - [anon_sym___attribute] = ACTIONS(7585), - [anon_sym_COLON] = ACTIONS(7585), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7587), - [anon_sym___based] = ACTIONS(7585), - [anon_sym_LBRACE] = ACTIONS(7587), - [anon_sym_RBRACE] = ACTIONS(7587), - [anon_sym_signed] = ACTIONS(7585), - [anon_sym_unsigned] = ACTIONS(7585), - [anon_sym_long] = ACTIONS(7585), - [anon_sym_short] = ACTIONS(7585), - [anon_sym_LBRACK] = ACTIONS(7587), - [anon_sym_const] = ACTIONS(7585), - [anon_sym_constexpr] = ACTIONS(7585), - [anon_sym_volatile] = ACTIONS(7585), - [anon_sym_restrict] = ACTIONS(7585), - [anon_sym___restrict__] = ACTIONS(7585), - [anon_sym__Atomic] = ACTIONS(7585), - [anon_sym__Noreturn] = ACTIONS(7585), - [anon_sym_noreturn] = ACTIONS(7585), - [anon_sym__Nonnull] = ACTIONS(7585), - [anon_sym_mutable] = ACTIONS(7585), - [anon_sym_constinit] = ACTIONS(7585), - [anon_sym_consteval] = ACTIONS(7585), - [anon_sym_alignas] = ACTIONS(7585), - [anon_sym__Alignas] = ACTIONS(7585), - [sym_primitive_type] = ACTIONS(7585), - [anon_sym_QMARK] = ACTIONS(7587), - [anon_sym_LT_EQ_GT] = ACTIONS(7587), - [anon_sym_or] = ACTIONS(7585), - [anon_sym_and] = ACTIONS(7585), - [anon_sym_bitor] = ACTIONS(7585), - [anon_sym_xor] = ACTIONS(7585), - [anon_sym_bitand] = ACTIONS(7585), - [anon_sym_not_eq] = ACTIONS(7585), - [anon_sym_DASH_DASH] = ACTIONS(7587), - [anon_sym_PLUS_PLUS] = ACTIONS(7587), - [anon_sym_DOT] = ACTIONS(7585), - [anon_sym_DOT_STAR] = ACTIONS(7587), - [anon_sym_DASH_GT] = ACTIONS(7587), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7585), - [anon_sym_override] = ACTIONS(7585), - [anon_sym_requires] = ACTIONS(7585), - [anon_sym_COLON_RBRACK] = ACTIONS(7587), - }, - [STATE(3233)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), - [anon_sym_COMMA] = ACTIONS(7757), - [anon_sym_LPAREN2] = ACTIONS(7757), - [anon_sym_DASH] = ACTIONS(7755), - [anon_sym_PLUS] = ACTIONS(7755), - [anon_sym_STAR] = ACTIONS(7755), - [anon_sym_SLASH] = ACTIONS(7755), - [anon_sym_PERCENT] = ACTIONS(7755), - [anon_sym_PIPE_PIPE] = ACTIONS(7757), - [anon_sym_AMP_AMP] = ACTIONS(7757), - [anon_sym_PIPE] = ACTIONS(7755), - [anon_sym_CARET] = ACTIONS(7755), - [anon_sym_AMP] = ACTIONS(7755), - [anon_sym_EQ_EQ] = ACTIONS(7757), - [anon_sym_BANG_EQ] = ACTIONS(7757), - [anon_sym_GT] = ACTIONS(7755), - [anon_sym_GT_EQ] = ACTIONS(7757), - [anon_sym_LT_EQ] = ACTIONS(7755), - [anon_sym_LT] = ACTIONS(7755), - [anon_sym_LT_LT] = ACTIONS(7755), - [anon_sym_GT_GT] = ACTIONS(7755), - [anon_sym___extension__] = ACTIONS(7757), - [anon_sym_LBRACE] = ACTIONS(7757), - [anon_sym_LBRACK] = ACTIONS(7757), - [anon_sym_RBRACK] = ACTIONS(7757), - [anon_sym_EQ] = ACTIONS(7755), - [anon_sym_const] = ACTIONS(7755), - [anon_sym_constexpr] = ACTIONS(7757), - [anon_sym_volatile] = ACTIONS(7757), - [anon_sym_restrict] = ACTIONS(7757), - [anon_sym___restrict__] = ACTIONS(7757), - [anon_sym__Atomic] = ACTIONS(7757), - [anon_sym__Noreturn] = ACTIONS(7757), - [anon_sym_noreturn] = ACTIONS(7757), - [anon_sym__Nonnull] = ACTIONS(7757), - [anon_sym_mutable] = ACTIONS(7757), - [anon_sym_constinit] = ACTIONS(7757), - [anon_sym_consteval] = ACTIONS(7757), - [anon_sym_alignas] = ACTIONS(7757), - [anon_sym__Alignas] = ACTIONS(7757), - [anon_sym_QMARK] = ACTIONS(7757), - [anon_sym_STAR_EQ] = ACTIONS(7757), - [anon_sym_SLASH_EQ] = ACTIONS(7757), - [anon_sym_PERCENT_EQ] = ACTIONS(7757), - [anon_sym_PLUS_EQ] = ACTIONS(7757), - [anon_sym_DASH_EQ] = ACTIONS(7757), - [anon_sym_LT_LT_EQ] = ACTIONS(7757), - [anon_sym_GT_GT_EQ] = ACTIONS(7757), - [anon_sym_AMP_EQ] = ACTIONS(7757), - [anon_sym_CARET_EQ] = ACTIONS(7757), - [anon_sym_PIPE_EQ] = ACTIONS(7757), - [anon_sym_and_eq] = ACTIONS(7757), - [anon_sym_or_eq] = ACTIONS(7757), - [anon_sym_xor_eq] = ACTIONS(7757), - [anon_sym_LT_EQ_GT] = ACTIONS(7757), - [anon_sym_or] = ACTIONS(7755), - [anon_sym_and] = ACTIONS(7755), - [anon_sym_bitor] = ACTIONS(7757), - [anon_sym_xor] = ACTIONS(7755), - [anon_sym_bitand] = ACTIONS(7757), - [anon_sym_not_eq] = ACTIONS(7757), - [anon_sym_DASH_DASH] = ACTIONS(7757), - [anon_sym_PLUS_PLUS] = ACTIONS(7757), - [anon_sym_DOT] = ACTIONS(7755), - [anon_sym_DOT_STAR] = ACTIONS(7757), - [anon_sym_DASH_GT] = ACTIONS(7757), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7757), - [anon_sym_override] = ACTIONS(7757), - [anon_sym_requires] = ACTIONS(7757), - }, - [STATE(3234)] = { - [sym_identifier] = ACTIONS(3362), - [aux_sym_preproc_def_token1] = ACTIONS(3362), - [aux_sym_preproc_if_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3362), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3362), - [sym_preproc_directive] = ACTIONS(3362), - [anon_sym_LPAREN2] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_STAR] = ACTIONS(3364), - [anon_sym_AMP_AMP] = ACTIONS(3364), - [anon_sym_AMP] = ACTIONS(3362), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym___extension__] = ACTIONS(3362), - [anon_sym_typedef] = ACTIONS(3362), - [anon_sym_virtual] = ACTIONS(3362), - [anon_sym_extern] = ACTIONS(3362), - [anon_sym___attribute__] = ACTIONS(3362), - [anon_sym___attribute] = ACTIONS(3362), - [anon_sym_using] = ACTIONS(3362), - [anon_sym_COLON_COLON] = ACTIONS(3364), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3364), - [anon_sym___declspec] = ACTIONS(3362), - [anon_sym___based] = ACTIONS(3362), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_signed] = ACTIONS(3362), - [anon_sym_unsigned] = ACTIONS(3362), - [anon_sym_long] = ACTIONS(3362), - [anon_sym_short] = ACTIONS(3362), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3362), - [anon_sym_register] = ACTIONS(3362), - [anon_sym_inline] = ACTIONS(3362), - [anon_sym___inline] = ACTIONS(3362), - [anon_sym___inline__] = ACTIONS(3362), - [anon_sym___forceinline] = ACTIONS(3362), - [anon_sym_thread_local] = ACTIONS(3362), - [anon_sym___thread] = ACTIONS(3362), - [anon_sym_const] = ACTIONS(3362), - [anon_sym_constexpr] = ACTIONS(3362), - [anon_sym_volatile] = ACTIONS(3362), - [anon_sym_restrict] = ACTIONS(3362), - [anon_sym___restrict__] = ACTIONS(3362), - [anon_sym__Atomic] = ACTIONS(3362), - [anon_sym__Noreturn] = ACTIONS(3362), - [anon_sym_noreturn] = ACTIONS(3362), - [anon_sym__Nonnull] = ACTIONS(3362), - [anon_sym_mutable] = ACTIONS(3362), - [anon_sym_constinit] = ACTIONS(3362), - [anon_sym_consteval] = ACTIONS(3362), - [anon_sym_alignas] = ACTIONS(3362), - [anon_sym__Alignas] = ACTIONS(3362), - [sym_primitive_type] = ACTIONS(3362), - [anon_sym_enum] = ACTIONS(3362), - [anon_sym_class] = ACTIONS(3362), - [anon_sym_struct] = ACTIONS(3362), - [anon_sym_union] = ACTIONS(3362), - [anon_sym_typename] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3362), - [anon_sym_decltype] = ACTIONS(3362), - [anon_sym_explicit] = ACTIONS(3362), - [anon_sym_private] = ACTIONS(3362), - [anon_sym_template] = ACTIONS(3362), - [anon_sym_operator] = ACTIONS(3362), - [anon_sym_friend] = ACTIONS(3362), - [anon_sym_public] = ACTIONS(3362), - [anon_sym_protected] = ACTIONS(3362), - [anon_sym_static_assert] = ACTIONS(3362), - [anon_sym_catch] = ACTIONS(3362), - [anon_sym_LBRACK_COLON] = ACTIONS(3364), - }, - [STATE(3235)] = { - [sym_identifier] = ACTIONS(7635), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), - [anon_sym_COMMA] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(7637), - [anon_sym_LPAREN2] = ACTIONS(7637), - [anon_sym_DASH] = ACTIONS(7635), - [anon_sym_PLUS] = ACTIONS(7635), - [anon_sym_STAR] = ACTIONS(7637), - [anon_sym_SLASH] = ACTIONS(7635), - [anon_sym_PERCENT] = ACTIONS(7637), - [anon_sym_PIPE_PIPE] = ACTIONS(7637), - [anon_sym_AMP_AMP] = ACTIONS(7637), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_CARET] = ACTIONS(7637), - [anon_sym_AMP] = ACTIONS(7635), - [anon_sym_EQ_EQ] = ACTIONS(7637), - [anon_sym_BANG_EQ] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_EQ] = ACTIONS(7637), - [anon_sym_LT_EQ] = ACTIONS(7635), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_LT_LT] = ACTIONS(7637), - [anon_sym_GT_GT] = ACTIONS(7637), - [anon_sym_SEMI] = ACTIONS(7637), - [anon_sym___extension__] = ACTIONS(7635), - [anon_sym___attribute__] = ACTIONS(7635), - [anon_sym___attribute] = ACTIONS(7635), - [anon_sym_COLON] = ACTIONS(7635), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7637), - [anon_sym___based] = ACTIONS(7635), - [anon_sym_LBRACE] = ACTIONS(7637), - [anon_sym_RBRACE] = ACTIONS(7637), - [anon_sym_signed] = ACTIONS(7635), - [anon_sym_unsigned] = ACTIONS(7635), - [anon_sym_long] = ACTIONS(7635), - [anon_sym_short] = ACTIONS(7635), - [anon_sym_LBRACK] = ACTIONS(7637), - [anon_sym_const] = ACTIONS(7635), - [anon_sym_constexpr] = ACTIONS(7635), - [anon_sym_volatile] = ACTIONS(7635), - [anon_sym_restrict] = ACTIONS(7635), - [anon_sym___restrict__] = ACTIONS(7635), - [anon_sym__Atomic] = ACTIONS(7635), - [anon_sym__Noreturn] = ACTIONS(7635), - [anon_sym_noreturn] = ACTIONS(7635), - [anon_sym__Nonnull] = ACTIONS(7635), - [anon_sym_mutable] = ACTIONS(7635), - [anon_sym_constinit] = ACTIONS(7635), - [anon_sym_consteval] = ACTIONS(7635), - [anon_sym_alignas] = ACTIONS(7635), - [anon_sym__Alignas] = ACTIONS(7635), - [sym_primitive_type] = ACTIONS(7635), - [anon_sym_QMARK] = ACTIONS(7637), - [anon_sym_LT_EQ_GT] = ACTIONS(7637), - [anon_sym_or] = ACTIONS(7635), - [anon_sym_and] = ACTIONS(7635), - [anon_sym_bitor] = ACTIONS(7635), - [anon_sym_xor] = ACTIONS(7635), - [anon_sym_bitand] = ACTIONS(7635), - [anon_sym_not_eq] = ACTIONS(7635), - [anon_sym_DASH_DASH] = ACTIONS(7637), - [anon_sym_PLUS_PLUS] = ACTIONS(7637), - [anon_sym_DOT] = ACTIONS(7635), - [anon_sym_DOT_STAR] = ACTIONS(7637), - [anon_sym_DASH_GT] = ACTIONS(7637), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7635), - [anon_sym_override] = ACTIONS(7635), - [anon_sym_requires] = ACTIONS(7635), - [anon_sym_COLON_RBRACK] = ACTIONS(7637), - }, - [STATE(3236)] = { - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [aux_sym_sized_type_specifier_repeat1] = STATE(3564), - [sym_identifier] = ACTIONS(8714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_RPAREN] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym_SEMI] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(8123), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_COLON] = ACTIONS(7207), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7205), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_RBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(8719), - [anon_sym_unsigned] = ACTIONS(8719), - [anon_sym_long] = ACTIONS(8719), - [anon_sym_short] = ACTIONS(8719), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8123), - [anon_sym_volatile] = ACTIONS(8123), - [anon_sym_restrict] = ACTIONS(8123), - [anon_sym___restrict__] = ACTIONS(8123), - [anon_sym__Atomic] = ACTIONS(8123), - [anon_sym__Noreturn] = ACTIONS(8123), - [anon_sym_noreturn] = ACTIONS(8123), - [anon_sym__Nonnull] = ACTIONS(8123), - [anon_sym_mutable] = ACTIONS(8123), - [anon_sym_constinit] = ACTIONS(8123), - [anon_sym_consteval] = ACTIONS(8123), - [anon_sym_alignas] = ACTIONS(9051), - [anon_sym__Alignas] = ACTIONS(9051), - [sym_primitive_type] = ACTIONS(8724), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7205), - }, - [STATE(3237)] = { - [sym_identifier] = ACTIONS(7595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_RPAREN] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7597), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7597), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7597), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7597), - [anon_sym_GT_GT] = ACTIONS(7597), - [anon_sym_SEMI] = ACTIONS(7597), - [anon_sym___extension__] = ACTIONS(7595), - [anon_sym___attribute__] = ACTIONS(7595), - [anon_sym___attribute] = ACTIONS(7595), - [anon_sym_COLON] = ACTIONS(7595), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7597), - [anon_sym___based] = ACTIONS(7595), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_RBRACE] = ACTIONS(7597), - [anon_sym_signed] = ACTIONS(7595), - [anon_sym_unsigned] = ACTIONS(7595), - [anon_sym_long] = ACTIONS(7595), - [anon_sym_short] = ACTIONS(7595), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7595), - [anon_sym_volatile] = ACTIONS(7595), - [anon_sym_restrict] = ACTIONS(7595), - [anon_sym___restrict__] = ACTIONS(7595), - [anon_sym__Atomic] = ACTIONS(7595), - [anon_sym__Noreturn] = ACTIONS(7595), - [anon_sym_noreturn] = ACTIONS(7595), - [anon_sym__Nonnull] = ACTIONS(7595), - [anon_sym_mutable] = ACTIONS(7595), - [anon_sym_constinit] = ACTIONS(7595), - [anon_sym_consteval] = ACTIONS(7595), - [anon_sym_alignas] = ACTIONS(7595), - [anon_sym__Alignas] = ACTIONS(7595), - [sym_primitive_type] = ACTIONS(7595), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7595), - [anon_sym_and] = ACTIONS(7595), - [anon_sym_bitor] = ACTIONS(7595), - [anon_sym_xor] = ACTIONS(7595), - [anon_sym_bitand] = ACTIONS(7595), - [anon_sym_not_eq] = ACTIONS(7595), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7595), - [anon_sym_override] = ACTIONS(7595), - [anon_sym_requires] = ACTIONS(7595), - [anon_sym_COLON_RBRACK] = ACTIONS(7597), - }, - [STATE(3238)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), - [anon_sym_COMMA] = ACTIONS(7761), - [anon_sym_LPAREN2] = ACTIONS(7761), - [anon_sym_DASH] = ACTIONS(7759), - [anon_sym_PLUS] = ACTIONS(7759), - [anon_sym_STAR] = ACTIONS(7759), - [anon_sym_SLASH] = ACTIONS(7759), - [anon_sym_PERCENT] = ACTIONS(7759), - [anon_sym_PIPE_PIPE] = ACTIONS(7761), - [anon_sym_AMP_AMP] = ACTIONS(7761), - [anon_sym_PIPE] = ACTIONS(7759), - [anon_sym_CARET] = ACTIONS(7759), - [anon_sym_AMP] = ACTIONS(7759), - [anon_sym_EQ_EQ] = ACTIONS(7761), - [anon_sym_BANG_EQ] = ACTIONS(7761), - [anon_sym_GT] = ACTIONS(7759), - [anon_sym_GT_EQ] = ACTIONS(7761), - [anon_sym_LT_EQ] = ACTIONS(7759), - [anon_sym_LT] = ACTIONS(7759), - [anon_sym_LT_LT] = ACTIONS(7759), - [anon_sym_GT_GT] = ACTIONS(7759), - [anon_sym___extension__] = ACTIONS(7761), - [anon_sym_LBRACE] = ACTIONS(7761), - [anon_sym_LBRACK] = ACTIONS(7761), - [anon_sym_RBRACK] = ACTIONS(7761), - [anon_sym_EQ] = ACTIONS(7759), - [anon_sym_const] = ACTIONS(7759), - [anon_sym_constexpr] = ACTIONS(7761), - [anon_sym_volatile] = ACTIONS(7761), - [anon_sym_restrict] = ACTIONS(7761), - [anon_sym___restrict__] = ACTIONS(7761), - [anon_sym__Atomic] = ACTIONS(7761), - [anon_sym__Noreturn] = ACTIONS(7761), - [anon_sym_noreturn] = ACTIONS(7761), - [anon_sym__Nonnull] = ACTIONS(7761), - [anon_sym_mutable] = ACTIONS(7761), - [anon_sym_constinit] = ACTIONS(7761), - [anon_sym_consteval] = ACTIONS(7761), - [anon_sym_alignas] = ACTIONS(7761), - [anon_sym__Alignas] = ACTIONS(7761), - [anon_sym_QMARK] = ACTIONS(7761), - [anon_sym_STAR_EQ] = ACTIONS(7761), - [anon_sym_SLASH_EQ] = ACTIONS(7761), - [anon_sym_PERCENT_EQ] = ACTIONS(7761), - [anon_sym_PLUS_EQ] = ACTIONS(7761), - [anon_sym_DASH_EQ] = ACTIONS(7761), - [anon_sym_LT_LT_EQ] = ACTIONS(7761), - [anon_sym_GT_GT_EQ] = ACTIONS(7761), - [anon_sym_AMP_EQ] = ACTIONS(7761), - [anon_sym_CARET_EQ] = ACTIONS(7761), - [anon_sym_PIPE_EQ] = ACTIONS(7761), - [anon_sym_and_eq] = ACTIONS(7761), - [anon_sym_or_eq] = ACTIONS(7761), - [anon_sym_xor_eq] = ACTIONS(7761), - [anon_sym_LT_EQ_GT] = ACTIONS(7761), - [anon_sym_or] = ACTIONS(7759), - [anon_sym_and] = ACTIONS(7759), - [anon_sym_bitor] = ACTIONS(7761), - [anon_sym_xor] = ACTIONS(7759), - [anon_sym_bitand] = ACTIONS(7761), - [anon_sym_not_eq] = ACTIONS(7761), - [anon_sym_DASH_DASH] = ACTIONS(7761), - [anon_sym_PLUS_PLUS] = ACTIONS(7761), - [anon_sym_DOT] = ACTIONS(7759), - [anon_sym_DOT_STAR] = ACTIONS(7761), - [anon_sym_DASH_GT] = ACTIONS(7761), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7761), - [anon_sym_override] = ACTIONS(7761), - [anon_sym_requires] = ACTIONS(7761), - }, - [STATE(3239)] = { - [sym_ms_based_modifier] = STATE(11554), - [sym_ms_unaligned_ptr_modifier] = STATE(6574), - [sym_ms_pointer_modifier] = STATE(6427), - [sym__declarator] = STATE(8785), - [sym__abstract_declarator] = STATE(9003), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(4129), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(4706), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7993), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(4129), - [aux_sym_pointer_declarator_repeat1] = STATE(6427), - [sym_identifier] = ACTIONS(8228), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(5619), - [anon_sym_AMP_AMP] = ACTIONS(5621), - [anon_sym_AMP] = ACTIONS(5623), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym_COLON_COLON] = ACTIONS(8675), - [anon_sym___based] = ACTIONS(53), - [sym_ms_restrict_modifier] = ACTIONS(3266), - [sym_ms_unsigned_ptr_modifier] = ACTIONS(3266), - [sym_ms_signed_ptr_modifier] = ACTIONS(3266), - [anon_sym__unaligned] = ACTIONS(3268), - [anon_sym___unaligned] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(3240)] = { - [sym_identifier] = ACTIONS(7595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_RPAREN] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7597), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7597), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7597), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7597), - [anon_sym_GT_GT] = ACTIONS(7597), - [anon_sym_SEMI] = ACTIONS(7597), - [anon_sym___extension__] = ACTIONS(7595), - [anon_sym___attribute__] = ACTIONS(7595), - [anon_sym___attribute] = ACTIONS(7595), - [anon_sym_COLON] = ACTIONS(7595), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7597), - [anon_sym___based] = ACTIONS(7595), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_RBRACE] = ACTIONS(7597), - [anon_sym_signed] = ACTIONS(7595), - [anon_sym_unsigned] = ACTIONS(7595), - [anon_sym_long] = ACTIONS(7595), - [anon_sym_short] = ACTIONS(7595), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7595), - [anon_sym_volatile] = ACTIONS(7595), - [anon_sym_restrict] = ACTIONS(7595), - [anon_sym___restrict__] = ACTIONS(7595), - [anon_sym__Atomic] = ACTIONS(7595), - [anon_sym__Noreturn] = ACTIONS(7595), - [anon_sym_noreturn] = ACTIONS(7595), - [anon_sym__Nonnull] = ACTIONS(7595), - [anon_sym_mutable] = ACTIONS(7595), - [anon_sym_constinit] = ACTIONS(7595), - [anon_sym_consteval] = ACTIONS(7595), - [anon_sym_alignas] = ACTIONS(7595), - [anon_sym__Alignas] = ACTIONS(7595), - [sym_primitive_type] = ACTIONS(7595), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7595), - [anon_sym_and] = ACTIONS(7595), - [anon_sym_bitor] = ACTIONS(7595), - [anon_sym_xor] = ACTIONS(7595), - [anon_sym_bitand] = ACTIONS(7595), - [anon_sym_not_eq] = ACTIONS(7595), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7597), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7595), - [anon_sym_override] = ACTIONS(7595), - [anon_sym_requires] = ACTIONS(7595), - [anon_sym_COLON_RBRACK] = ACTIONS(7597), - }, - [STATE(3241)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), - [anon_sym_COMMA] = ACTIONS(7601), - [anon_sym_LPAREN2] = ACTIONS(7601), - [anon_sym_DASH] = ACTIONS(7599), - [anon_sym_PLUS] = ACTIONS(7599), - [anon_sym_STAR] = ACTIONS(7599), - [anon_sym_SLASH] = ACTIONS(7599), - [anon_sym_PERCENT] = ACTIONS(7599), - [anon_sym_PIPE_PIPE] = ACTIONS(7601), - [anon_sym_AMP_AMP] = ACTIONS(7601), - [anon_sym_PIPE] = ACTIONS(7599), - [anon_sym_CARET] = ACTIONS(7599), - [anon_sym_AMP] = ACTIONS(7599), - [anon_sym_EQ_EQ] = ACTIONS(7601), - [anon_sym_BANG_EQ] = ACTIONS(7601), - [anon_sym_GT] = ACTIONS(7599), - [anon_sym_GT_EQ] = ACTIONS(7599), - [anon_sym_LT_EQ] = ACTIONS(7599), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_LT_LT] = ACTIONS(7599), - [anon_sym_GT_GT] = ACTIONS(7599), - [anon_sym___extension__] = ACTIONS(7601), - [anon_sym_LBRACE] = ACTIONS(7601), - [anon_sym_LBRACK] = ACTIONS(7601), - [anon_sym_EQ] = ACTIONS(7599), - [anon_sym_const] = ACTIONS(7599), - [anon_sym_constexpr] = ACTIONS(7601), - [anon_sym_volatile] = ACTIONS(7601), - [anon_sym_restrict] = ACTIONS(7601), - [anon_sym___restrict__] = ACTIONS(7601), - [anon_sym__Atomic] = ACTIONS(7601), - [anon_sym__Noreturn] = ACTIONS(7601), - [anon_sym_noreturn] = ACTIONS(7601), - [anon_sym__Nonnull] = ACTIONS(7601), - [anon_sym_mutable] = ACTIONS(7601), - [anon_sym_constinit] = ACTIONS(7601), - [anon_sym_consteval] = ACTIONS(7601), - [anon_sym_alignas] = ACTIONS(7601), - [anon_sym__Alignas] = ACTIONS(7601), - [anon_sym_QMARK] = ACTIONS(7601), - [anon_sym_STAR_EQ] = ACTIONS(7601), - [anon_sym_SLASH_EQ] = ACTIONS(7601), - [anon_sym_PERCENT_EQ] = ACTIONS(7601), - [anon_sym_PLUS_EQ] = ACTIONS(7601), - [anon_sym_DASH_EQ] = ACTIONS(7601), - [anon_sym_LT_LT_EQ] = ACTIONS(7601), - [anon_sym_GT_GT_EQ] = ACTIONS(7599), - [anon_sym_AMP_EQ] = ACTIONS(7601), - [anon_sym_CARET_EQ] = ACTIONS(7601), - [anon_sym_PIPE_EQ] = ACTIONS(7601), - [anon_sym_and_eq] = ACTIONS(7601), - [anon_sym_or_eq] = ACTIONS(7601), - [anon_sym_xor_eq] = ACTIONS(7601), - [anon_sym_LT_EQ_GT] = ACTIONS(7601), - [anon_sym_or] = ACTIONS(7599), - [anon_sym_and] = ACTIONS(7599), - [anon_sym_bitor] = ACTIONS(7601), - [anon_sym_xor] = ACTIONS(7599), - [anon_sym_bitand] = ACTIONS(7601), - [anon_sym_not_eq] = ACTIONS(7601), - [anon_sym_DASH_DASH] = ACTIONS(7601), - [anon_sym_PLUS_PLUS] = ACTIONS(7601), - [anon_sym_DOT] = ACTIONS(7599), - [anon_sym_DOT_STAR] = ACTIONS(7601), - [anon_sym_DASH_GT] = ACTIONS(7601), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7601), - [anon_sym_override] = ACTIONS(7601), - [anon_sym_GT2] = ACTIONS(7601), - [anon_sym_requires] = ACTIONS(7601), - }, - [STATE(3242)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), - [anon_sym_COMMA] = ACTIONS(7605), - [anon_sym_LPAREN2] = ACTIONS(7605), - [anon_sym_DASH] = ACTIONS(7603), - [anon_sym_PLUS] = ACTIONS(7603), - [anon_sym_STAR] = ACTIONS(7603), - [anon_sym_SLASH] = ACTIONS(7603), - [anon_sym_PERCENT] = ACTIONS(7603), - [anon_sym_PIPE_PIPE] = ACTIONS(7605), - [anon_sym_AMP_AMP] = ACTIONS(7605), - [anon_sym_PIPE] = ACTIONS(7603), - [anon_sym_CARET] = ACTIONS(7603), - [anon_sym_AMP] = ACTIONS(7603), - [anon_sym_EQ_EQ] = ACTIONS(7605), - [anon_sym_BANG_EQ] = ACTIONS(7605), - [anon_sym_GT] = ACTIONS(7603), - [anon_sym_GT_EQ] = ACTIONS(7603), - [anon_sym_LT_EQ] = ACTIONS(7603), - [anon_sym_LT] = ACTIONS(7603), - [anon_sym_LT_LT] = ACTIONS(7603), - [anon_sym_GT_GT] = ACTIONS(7603), - [anon_sym___extension__] = ACTIONS(7605), - [anon_sym_LBRACE] = ACTIONS(7605), - [anon_sym_LBRACK] = ACTIONS(7605), - [anon_sym_EQ] = ACTIONS(7603), - [anon_sym_const] = ACTIONS(7603), - [anon_sym_constexpr] = ACTIONS(7605), - [anon_sym_volatile] = ACTIONS(7605), - [anon_sym_restrict] = ACTIONS(7605), - [anon_sym___restrict__] = ACTIONS(7605), - [anon_sym__Atomic] = ACTIONS(7605), - [anon_sym__Noreturn] = ACTIONS(7605), - [anon_sym_noreturn] = ACTIONS(7605), - [anon_sym__Nonnull] = ACTIONS(7605), - [anon_sym_mutable] = ACTIONS(7605), - [anon_sym_constinit] = ACTIONS(7605), - [anon_sym_consteval] = ACTIONS(7605), - [anon_sym_alignas] = ACTIONS(7605), - [anon_sym__Alignas] = ACTIONS(7605), - [anon_sym_QMARK] = ACTIONS(7605), - [anon_sym_STAR_EQ] = ACTIONS(7605), - [anon_sym_SLASH_EQ] = ACTIONS(7605), - [anon_sym_PERCENT_EQ] = ACTIONS(7605), - [anon_sym_PLUS_EQ] = ACTIONS(7605), - [anon_sym_DASH_EQ] = ACTIONS(7605), - [anon_sym_LT_LT_EQ] = ACTIONS(7605), - [anon_sym_GT_GT_EQ] = ACTIONS(7603), - [anon_sym_AMP_EQ] = ACTIONS(7605), - [anon_sym_CARET_EQ] = ACTIONS(7605), - [anon_sym_PIPE_EQ] = ACTIONS(7605), - [anon_sym_and_eq] = ACTIONS(7605), - [anon_sym_or_eq] = ACTIONS(7605), - [anon_sym_xor_eq] = ACTIONS(7605), - [anon_sym_LT_EQ_GT] = ACTIONS(7605), - [anon_sym_or] = ACTIONS(7603), - [anon_sym_and] = ACTIONS(7603), - [anon_sym_bitor] = ACTIONS(7605), - [anon_sym_xor] = ACTIONS(7603), - [anon_sym_bitand] = ACTIONS(7605), - [anon_sym_not_eq] = ACTIONS(7605), - [anon_sym_DASH_DASH] = ACTIONS(7605), - [anon_sym_PLUS_PLUS] = ACTIONS(7605), - [anon_sym_DOT] = ACTIONS(7603), - [anon_sym_DOT_STAR] = ACTIONS(7605), - [anon_sym_DASH_GT] = ACTIONS(7605), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7605), - [anon_sym_override] = ACTIONS(7605), - [anon_sym_GT2] = ACTIONS(7605), - [anon_sym_requires] = ACTIONS(7605), - }, - [STATE(3243)] = { - [sym_identifier] = ACTIONS(7607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), - [anon_sym_COMMA] = ACTIONS(7609), - [anon_sym_RPAREN] = ACTIONS(7609), - [anon_sym_LPAREN2] = ACTIONS(7609), - [anon_sym_DASH] = ACTIONS(7607), - [anon_sym_PLUS] = ACTIONS(7607), - [anon_sym_STAR] = ACTIONS(7609), - [anon_sym_SLASH] = ACTIONS(7607), - [anon_sym_PERCENT] = ACTIONS(7609), - [anon_sym_PIPE_PIPE] = ACTIONS(7609), - [anon_sym_AMP_AMP] = ACTIONS(7609), - [anon_sym_PIPE] = ACTIONS(7607), - [anon_sym_CARET] = ACTIONS(7609), - [anon_sym_AMP] = ACTIONS(7607), - [anon_sym_EQ_EQ] = ACTIONS(7609), - [anon_sym_BANG_EQ] = ACTIONS(7609), - [anon_sym_GT] = ACTIONS(7607), - [anon_sym_GT_EQ] = ACTIONS(7609), - [anon_sym_LT_EQ] = ACTIONS(7607), - [anon_sym_LT] = ACTIONS(7607), - [anon_sym_LT_LT] = ACTIONS(7609), - [anon_sym_GT_GT] = ACTIONS(7609), - [anon_sym_SEMI] = ACTIONS(7609), - [anon_sym___extension__] = ACTIONS(7607), - [anon_sym___attribute__] = ACTIONS(7607), - [anon_sym___attribute] = ACTIONS(7607), - [anon_sym_COLON] = ACTIONS(7607), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7609), - [anon_sym___based] = ACTIONS(7607), - [anon_sym_LBRACE] = ACTIONS(7609), - [anon_sym_RBRACE] = ACTIONS(7609), - [anon_sym_signed] = ACTIONS(7607), - [anon_sym_unsigned] = ACTIONS(7607), - [anon_sym_long] = ACTIONS(7607), - [anon_sym_short] = ACTIONS(7607), - [anon_sym_LBRACK] = ACTIONS(7609), - [anon_sym_const] = ACTIONS(7607), - [anon_sym_constexpr] = ACTIONS(7607), - [anon_sym_volatile] = ACTIONS(7607), - [anon_sym_restrict] = ACTIONS(7607), - [anon_sym___restrict__] = ACTIONS(7607), - [anon_sym__Atomic] = ACTIONS(7607), - [anon_sym__Noreturn] = ACTIONS(7607), - [anon_sym_noreturn] = ACTIONS(7607), - [anon_sym__Nonnull] = ACTIONS(7607), - [anon_sym_mutable] = ACTIONS(7607), - [anon_sym_constinit] = ACTIONS(7607), - [anon_sym_consteval] = ACTIONS(7607), - [anon_sym_alignas] = ACTIONS(7607), - [anon_sym__Alignas] = ACTIONS(7607), - [sym_primitive_type] = ACTIONS(7607), - [anon_sym_QMARK] = ACTIONS(7609), - [anon_sym_LT_EQ_GT] = ACTIONS(7609), - [anon_sym_or] = ACTIONS(7607), - [anon_sym_and] = ACTIONS(7607), - [anon_sym_bitor] = ACTIONS(7607), - [anon_sym_xor] = ACTIONS(7607), - [anon_sym_bitand] = ACTIONS(7607), - [anon_sym_not_eq] = ACTIONS(7607), - [anon_sym_DASH_DASH] = ACTIONS(7609), - [anon_sym_PLUS_PLUS] = ACTIONS(7609), - [anon_sym_DOT] = ACTIONS(7607), - [anon_sym_DOT_STAR] = ACTIONS(7609), - [anon_sym_DASH_GT] = ACTIONS(7609), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7607), - [anon_sym_override] = ACTIONS(7607), - [anon_sym_requires] = ACTIONS(7607), - [anon_sym_COLON_RBRACK] = ACTIONS(7609), - }, - [STATE(3244)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), - [anon_sym_COMMA] = ACTIONS(7765), - [anon_sym_LPAREN2] = ACTIONS(7765), - [anon_sym_DASH] = ACTIONS(7763), - [anon_sym_PLUS] = ACTIONS(7763), - [anon_sym_STAR] = ACTIONS(7763), - [anon_sym_SLASH] = ACTIONS(7763), - [anon_sym_PERCENT] = ACTIONS(7763), - [anon_sym_PIPE_PIPE] = ACTIONS(7765), - [anon_sym_AMP_AMP] = ACTIONS(7765), - [anon_sym_PIPE] = ACTIONS(7763), - [anon_sym_CARET] = ACTIONS(7763), - [anon_sym_AMP] = ACTIONS(7763), - [anon_sym_EQ_EQ] = ACTIONS(7765), - [anon_sym_BANG_EQ] = ACTIONS(7765), - [anon_sym_GT] = ACTIONS(7763), - [anon_sym_GT_EQ] = ACTIONS(7765), - [anon_sym_LT_EQ] = ACTIONS(7763), - [anon_sym_LT] = ACTIONS(7763), - [anon_sym_LT_LT] = ACTIONS(7763), - [anon_sym_GT_GT] = ACTIONS(7763), - [anon_sym___extension__] = ACTIONS(7765), - [anon_sym_LBRACE] = ACTIONS(7765), - [anon_sym_LBRACK] = ACTIONS(7765), - [anon_sym_RBRACK] = ACTIONS(7765), - [anon_sym_EQ] = ACTIONS(7763), - [anon_sym_const] = ACTIONS(7763), - [anon_sym_constexpr] = ACTIONS(7765), - [anon_sym_volatile] = ACTIONS(7765), - [anon_sym_restrict] = ACTIONS(7765), - [anon_sym___restrict__] = ACTIONS(7765), - [anon_sym__Atomic] = ACTIONS(7765), - [anon_sym__Noreturn] = ACTIONS(7765), - [anon_sym_noreturn] = ACTIONS(7765), - [anon_sym__Nonnull] = ACTIONS(7765), - [anon_sym_mutable] = ACTIONS(7765), - [anon_sym_constinit] = ACTIONS(7765), - [anon_sym_consteval] = ACTIONS(7765), - [anon_sym_alignas] = ACTIONS(7765), - [anon_sym__Alignas] = ACTIONS(7765), - [anon_sym_QMARK] = ACTIONS(7765), - [anon_sym_STAR_EQ] = ACTIONS(7765), - [anon_sym_SLASH_EQ] = ACTIONS(7765), - [anon_sym_PERCENT_EQ] = ACTIONS(7765), - [anon_sym_PLUS_EQ] = ACTIONS(7765), - [anon_sym_DASH_EQ] = ACTIONS(7765), - [anon_sym_LT_LT_EQ] = ACTIONS(7765), - [anon_sym_GT_GT_EQ] = ACTIONS(7765), - [anon_sym_AMP_EQ] = ACTIONS(7765), - [anon_sym_CARET_EQ] = ACTIONS(7765), - [anon_sym_PIPE_EQ] = ACTIONS(7765), - [anon_sym_and_eq] = ACTIONS(7765), - [anon_sym_or_eq] = ACTIONS(7765), - [anon_sym_xor_eq] = ACTIONS(7765), - [anon_sym_LT_EQ_GT] = ACTIONS(7765), - [anon_sym_or] = ACTIONS(7763), - [anon_sym_and] = ACTIONS(7763), - [anon_sym_bitor] = ACTIONS(7765), - [anon_sym_xor] = ACTIONS(7763), - [anon_sym_bitand] = ACTIONS(7765), - [anon_sym_not_eq] = ACTIONS(7765), - [anon_sym_DASH_DASH] = ACTIONS(7765), - [anon_sym_PLUS_PLUS] = ACTIONS(7765), - [anon_sym_DOT] = ACTIONS(7763), - [anon_sym_DOT_STAR] = ACTIONS(7765), - [anon_sym_DASH_GT] = ACTIONS(7765), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7765), - [anon_sym_override] = ACTIONS(7765), - [anon_sym_requires] = ACTIONS(7765), - }, - [STATE(3245)] = { - [sym_identifier] = ACTIONS(7639), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), - [anon_sym_COMMA] = ACTIONS(7641), - [anon_sym_RPAREN] = ACTIONS(7641), - [anon_sym_LPAREN2] = ACTIONS(7641), - [anon_sym_DASH] = ACTIONS(7639), - [anon_sym_PLUS] = ACTIONS(7639), - [anon_sym_STAR] = ACTIONS(7641), - [anon_sym_SLASH] = ACTIONS(7639), - [anon_sym_PERCENT] = ACTIONS(7641), - [anon_sym_PIPE_PIPE] = ACTIONS(7641), - [anon_sym_AMP_AMP] = ACTIONS(7641), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_CARET] = ACTIONS(7641), - [anon_sym_AMP] = ACTIONS(7639), - [anon_sym_EQ_EQ] = ACTIONS(7641), - [anon_sym_BANG_EQ] = ACTIONS(7641), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_EQ] = ACTIONS(7641), - [anon_sym_LT_EQ] = ACTIONS(7639), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_LT_LT] = ACTIONS(7641), - [anon_sym_GT_GT] = ACTIONS(7641), - [anon_sym_SEMI] = ACTIONS(7641), - [anon_sym___extension__] = ACTIONS(7639), - [anon_sym___attribute__] = ACTIONS(7639), - [anon_sym___attribute] = ACTIONS(7639), - [anon_sym_COLON] = ACTIONS(7639), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7641), - [anon_sym___based] = ACTIONS(7639), - [anon_sym_LBRACE] = ACTIONS(7641), - [anon_sym_RBRACE] = ACTIONS(7641), - [anon_sym_signed] = ACTIONS(7639), - [anon_sym_unsigned] = ACTIONS(7639), - [anon_sym_long] = ACTIONS(7639), - [anon_sym_short] = ACTIONS(7639), - [anon_sym_LBRACK] = ACTIONS(7641), - [anon_sym_const] = ACTIONS(7639), - [anon_sym_constexpr] = ACTIONS(7639), - [anon_sym_volatile] = ACTIONS(7639), - [anon_sym_restrict] = ACTIONS(7639), - [anon_sym___restrict__] = ACTIONS(7639), - [anon_sym__Atomic] = ACTIONS(7639), - [anon_sym__Noreturn] = ACTIONS(7639), - [anon_sym_noreturn] = ACTIONS(7639), - [anon_sym__Nonnull] = ACTIONS(7639), - [anon_sym_mutable] = ACTIONS(7639), - [anon_sym_constinit] = ACTIONS(7639), - [anon_sym_consteval] = ACTIONS(7639), - [anon_sym_alignas] = ACTIONS(7639), - [anon_sym__Alignas] = ACTIONS(7639), - [sym_primitive_type] = ACTIONS(7639), - [anon_sym_QMARK] = ACTIONS(7641), - [anon_sym_LT_EQ_GT] = ACTIONS(7641), - [anon_sym_or] = ACTIONS(7639), - [anon_sym_and] = ACTIONS(7639), - [anon_sym_bitor] = ACTIONS(7639), - [anon_sym_xor] = ACTIONS(7639), - [anon_sym_bitand] = ACTIONS(7639), - [anon_sym_not_eq] = ACTIONS(7639), - [anon_sym_DASH_DASH] = ACTIONS(7641), - [anon_sym_PLUS_PLUS] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(7639), - [anon_sym_DOT_STAR] = ACTIONS(7641), - [anon_sym_DASH_GT] = ACTIONS(7641), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7639), - [anon_sym_override] = ACTIONS(7639), - [anon_sym_requires] = ACTIONS(7639), - [anon_sym_COLON_RBRACK] = ACTIONS(7641), - }, - [STATE(3246)] = { - [sym_identifier] = ACTIONS(7655), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), - [anon_sym_COMMA] = ACTIONS(7657), - [anon_sym_RPAREN] = ACTIONS(7657), - [anon_sym_LPAREN2] = ACTIONS(7657), - [anon_sym_DASH] = ACTIONS(7655), - [anon_sym_PLUS] = ACTIONS(7655), - [anon_sym_STAR] = ACTIONS(7657), - [anon_sym_SLASH] = ACTIONS(7655), - [anon_sym_PERCENT] = ACTIONS(7657), - [anon_sym_PIPE_PIPE] = ACTIONS(7657), - [anon_sym_AMP_AMP] = ACTIONS(7657), - [anon_sym_PIPE] = ACTIONS(7655), - [anon_sym_CARET] = ACTIONS(7657), - [anon_sym_AMP] = ACTIONS(7655), - [anon_sym_EQ_EQ] = ACTIONS(7657), - [anon_sym_BANG_EQ] = ACTIONS(7657), - [anon_sym_GT] = ACTIONS(7655), - [anon_sym_GT_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7655), - [anon_sym_LT] = ACTIONS(7655), - [anon_sym_LT_LT] = ACTIONS(7657), - [anon_sym_GT_GT] = ACTIONS(7657), - [anon_sym_SEMI] = ACTIONS(7657), - [anon_sym___extension__] = ACTIONS(7655), - [anon_sym___attribute__] = ACTIONS(7655), - [anon_sym___attribute] = ACTIONS(7655), - [anon_sym_COLON] = ACTIONS(7655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7657), - [anon_sym___based] = ACTIONS(7655), - [anon_sym_LBRACE] = ACTIONS(7657), - [anon_sym_RBRACE] = ACTIONS(7657), - [anon_sym_signed] = ACTIONS(7655), - [anon_sym_unsigned] = ACTIONS(7655), - [anon_sym_long] = ACTIONS(7655), - [anon_sym_short] = ACTIONS(7655), - [anon_sym_LBRACK] = ACTIONS(7657), - [anon_sym_const] = ACTIONS(7655), - [anon_sym_constexpr] = ACTIONS(7655), - [anon_sym_volatile] = ACTIONS(7655), - [anon_sym_restrict] = ACTIONS(7655), - [anon_sym___restrict__] = ACTIONS(7655), - [anon_sym__Atomic] = ACTIONS(7655), - [anon_sym__Noreturn] = ACTIONS(7655), - [anon_sym_noreturn] = ACTIONS(7655), - [anon_sym__Nonnull] = ACTIONS(7655), - [anon_sym_mutable] = ACTIONS(7655), - [anon_sym_constinit] = ACTIONS(7655), - [anon_sym_consteval] = ACTIONS(7655), - [anon_sym_alignas] = ACTIONS(7655), - [anon_sym__Alignas] = ACTIONS(7655), - [sym_primitive_type] = ACTIONS(7655), - [anon_sym_QMARK] = ACTIONS(7657), - [anon_sym_LT_EQ_GT] = ACTIONS(7657), - [anon_sym_or] = ACTIONS(7655), - [anon_sym_and] = ACTIONS(7655), - [anon_sym_bitor] = ACTIONS(7655), - [anon_sym_xor] = ACTIONS(7655), - [anon_sym_bitand] = ACTIONS(7655), - [anon_sym_not_eq] = ACTIONS(7655), - [anon_sym_DASH_DASH] = ACTIONS(7657), - [anon_sym_PLUS_PLUS] = ACTIONS(7657), - [anon_sym_DOT] = ACTIONS(7655), - [anon_sym_DOT_STAR] = ACTIONS(7657), - [anon_sym_DASH_GT] = ACTIONS(7657), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7655), - [anon_sym_override] = ACTIONS(7655), - [anon_sym_requires] = ACTIONS(7655), - [anon_sym_COLON_RBRACK] = ACTIONS(7657), - }, - [STATE(3247)] = { - [sym_identifier] = ACTIONS(7565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), - [anon_sym_COMMA] = ACTIONS(7567), - [anon_sym_RPAREN] = ACTIONS(7567), - [anon_sym_LPAREN2] = ACTIONS(7567), - [anon_sym_DASH] = ACTIONS(7565), - [anon_sym_PLUS] = ACTIONS(7565), - [anon_sym_STAR] = ACTIONS(7567), - [anon_sym_SLASH] = ACTIONS(7565), - [anon_sym_PERCENT] = ACTIONS(7567), - [anon_sym_PIPE_PIPE] = ACTIONS(7567), - [anon_sym_AMP_AMP] = ACTIONS(7567), - [anon_sym_PIPE] = ACTIONS(7565), - [anon_sym_CARET] = ACTIONS(7567), - [anon_sym_AMP] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7567), - [anon_sym_BANG_EQ] = ACTIONS(7567), - [anon_sym_GT] = ACTIONS(7565), - [anon_sym_GT_EQ] = ACTIONS(7567), - [anon_sym_LT_EQ] = ACTIONS(7565), - [anon_sym_LT] = ACTIONS(7565), - [anon_sym_LT_LT] = ACTIONS(7567), - [anon_sym_GT_GT] = ACTIONS(7567), - [anon_sym_SEMI] = ACTIONS(7567), - [anon_sym___extension__] = ACTIONS(7565), - [anon_sym___attribute__] = ACTIONS(7565), - [anon_sym___attribute] = ACTIONS(7565), - [anon_sym_COLON] = ACTIONS(7565), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7567), - [anon_sym___based] = ACTIONS(7565), - [anon_sym_LBRACE] = ACTIONS(7567), - [anon_sym_RBRACE] = ACTIONS(7567), - [anon_sym_signed] = ACTIONS(7565), - [anon_sym_unsigned] = ACTIONS(7565), - [anon_sym_long] = ACTIONS(7565), - [anon_sym_short] = ACTIONS(7565), - [anon_sym_LBRACK] = ACTIONS(7567), - [anon_sym_const] = ACTIONS(7565), - [anon_sym_constexpr] = ACTIONS(7565), - [anon_sym_volatile] = ACTIONS(7565), - [anon_sym_restrict] = ACTIONS(7565), - [anon_sym___restrict__] = ACTIONS(7565), - [anon_sym__Atomic] = ACTIONS(7565), - [anon_sym__Noreturn] = ACTIONS(7565), - [anon_sym_noreturn] = ACTIONS(7565), - [anon_sym__Nonnull] = ACTIONS(7565), - [anon_sym_mutable] = ACTIONS(7565), - [anon_sym_constinit] = ACTIONS(7565), - [anon_sym_consteval] = ACTIONS(7565), - [anon_sym_alignas] = ACTIONS(7565), - [anon_sym__Alignas] = ACTIONS(7565), - [sym_primitive_type] = ACTIONS(7565), - [anon_sym_QMARK] = ACTIONS(7567), - [anon_sym_LT_EQ_GT] = ACTIONS(7567), - [anon_sym_or] = ACTIONS(7565), - [anon_sym_and] = ACTIONS(7565), - [anon_sym_bitor] = ACTIONS(7565), - [anon_sym_xor] = ACTIONS(7565), - [anon_sym_bitand] = ACTIONS(7565), - [anon_sym_not_eq] = ACTIONS(7565), - [anon_sym_DASH_DASH] = ACTIONS(7567), - [anon_sym_PLUS_PLUS] = ACTIONS(7567), - [anon_sym_DOT] = ACTIONS(7565), - [anon_sym_DOT_STAR] = ACTIONS(7567), - [anon_sym_DASH_GT] = ACTIONS(7567), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7565), - [anon_sym_override] = ACTIONS(7565), - [anon_sym_requires] = ACTIONS(7565), - [anon_sym_COLON_RBRACK] = ACTIONS(7567), - }, - [STATE(3248)] = { - [sym_identifier] = ACTIONS(3935), - [aux_sym_preproc_def_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token1] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), - [sym_preproc_directive] = ACTIONS(3935), - [anon_sym_LPAREN2] = ACTIONS(3937), - [anon_sym_TILDE] = ACTIONS(3937), - [anon_sym_STAR] = ACTIONS(3937), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_SEMI] = ACTIONS(3937), - [anon_sym___extension__] = ACTIONS(3935), - [anon_sym_typedef] = ACTIONS(3935), - [anon_sym_virtual] = ACTIONS(3935), - [anon_sym_extern] = ACTIONS(3935), - [anon_sym___attribute__] = ACTIONS(3935), - [anon_sym___attribute] = ACTIONS(3935), - [anon_sym_using] = ACTIONS(3935), - [anon_sym_COLON_COLON] = ACTIONS(3937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), - [anon_sym___declspec] = ACTIONS(3935), - [anon_sym___based] = ACTIONS(3935), - [anon_sym_RBRACE] = ACTIONS(3937), - [anon_sym_signed] = ACTIONS(3935), - [anon_sym_unsigned] = ACTIONS(3935), - [anon_sym_long] = ACTIONS(3935), - [anon_sym_short] = ACTIONS(3935), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_static] = ACTIONS(3935), - [anon_sym_register] = ACTIONS(3935), - [anon_sym_inline] = ACTIONS(3935), - [anon_sym___inline] = ACTIONS(3935), - [anon_sym___inline__] = ACTIONS(3935), - [anon_sym___forceinline] = ACTIONS(3935), - [anon_sym_thread_local] = ACTIONS(3935), - [anon_sym___thread] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_constexpr] = ACTIONS(3935), - [anon_sym_volatile] = ACTIONS(3935), - [anon_sym_restrict] = ACTIONS(3935), - [anon_sym___restrict__] = ACTIONS(3935), - [anon_sym__Atomic] = ACTIONS(3935), - [anon_sym__Noreturn] = ACTIONS(3935), - [anon_sym_noreturn] = ACTIONS(3935), - [anon_sym__Nonnull] = ACTIONS(3935), - [anon_sym_mutable] = ACTIONS(3935), - [anon_sym_constinit] = ACTIONS(3935), - [anon_sym_consteval] = ACTIONS(3935), - [anon_sym_alignas] = ACTIONS(3935), - [anon_sym__Alignas] = ACTIONS(3935), - [sym_primitive_type] = ACTIONS(3935), - [anon_sym_enum] = ACTIONS(3935), - [anon_sym_class] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3935), - [anon_sym_typename] = ACTIONS(3935), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3935), - [anon_sym_decltype] = ACTIONS(3935), - [anon_sym_explicit] = ACTIONS(3935), - [anon_sym_private] = ACTIONS(3935), - [anon_sym_template] = ACTIONS(3935), - [anon_sym_operator] = ACTIONS(3935), - [anon_sym_friend] = ACTIONS(3935), - [anon_sym_public] = ACTIONS(3935), - [anon_sym_protected] = ACTIONS(3935), - [anon_sym_static_assert] = ACTIONS(3935), - [anon_sym_LBRACK_COLON] = ACTIONS(3937), - }, - [STATE(3249)] = { - [sym_identifier] = ACTIONS(4112), - [aux_sym_preproc_def_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token2] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), - [sym_preproc_directive] = ACTIONS(4112), - [anon_sym_LPAREN2] = ACTIONS(4114), - [anon_sym_TILDE] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym___extension__] = ACTIONS(4112), - [anon_sym_typedef] = ACTIONS(4112), - [anon_sym_virtual] = ACTIONS(4112), - [anon_sym_extern] = ACTIONS(4112), - [anon_sym___attribute__] = ACTIONS(4112), - [anon_sym___attribute] = ACTIONS(4112), - [anon_sym_using] = ACTIONS(4112), - [anon_sym_COLON_COLON] = ACTIONS(4114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), - [anon_sym___declspec] = ACTIONS(4112), - [anon_sym___based] = ACTIONS(4112), - [anon_sym_signed] = ACTIONS(4112), - [anon_sym_unsigned] = ACTIONS(4112), - [anon_sym_long] = ACTIONS(4112), - [anon_sym_short] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_static] = ACTIONS(4112), - [anon_sym_register] = ACTIONS(4112), - [anon_sym_inline] = ACTIONS(4112), - [anon_sym___inline] = ACTIONS(4112), - [anon_sym___inline__] = ACTIONS(4112), - [anon_sym___forceinline] = ACTIONS(4112), - [anon_sym_thread_local] = ACTIONS(4112), - [anon_sym___thread] = ACTIONS(4112), - [anon_sym_const] = ACTIONS(4112), - [anon_sym_constexpr] = ACTIONS(4112), - [anon_sym_volatile] = ACTIONS(4112), - [anon_sym_restrict] = ACTIONS(4112), - [anon_sym___restrict__] = ACTIONS(4112), - [anon_sym__Atomic] = ACTIONS(4112), - [anon_sym__Noreturn] = ACTIONS(4112), - [anon_sym_noreturn] = ACTIONS(4112), - [anon_sym__Nonnull] = ACTIONS(4112), - [anon_sym_mutable] = ACTIONS(4112), - [anon_sym_constinit] = ACTIONS(4112), - [anon_sym_consteval] = ACTIONS(4112), - [anon_sym_alignas] = ACTIONS(4112), - [anon_sym__Alignas] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(4112), - [anon_sym_enum] = ACTIONS(4112), - [anon_sym_class] = ACTIONS(4112), - [anon_sym_struct] = ACTIONS(4112), - [anon_sym_union] = ACTIONS(4112), - [anon_sym_typename] = ACTIONS(4112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4112), - [anon_sym_decltype] = ACTIONS(4112), - [anon_sym_explicit] = ACTIONS(4112), - [anon_sym_private] = ACTIONS(4112), - [anon_sym_template] = ACTIONS(4112), - [anon_sym_operator] = ACTIONS(4112), - [anon_sym_friend] = ACTIONS(4112), - [anon_sym_public] = ACTIONS(4112), - [anon_sym_protected] = ACTIONS(4112), - [anon_sym_static_assert] = ACTIONS(4112), - [anon_sym_LBRACK_COLON] = ACTIONS(4114), - }, - [STATE(3250)] = { - [sym_identifier] = ACTIONS(4104), - [aux_sym_preproc_def_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token2] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), - [sym_preproc_directive] = ACTIONS(4104), - [anon_sym_LPAREN2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym___extension__] = ACTIONS(4104), - [anon_sym_typedef] = ACTIONS(4104), - [anon_sym_virtual] = ACTIONS(4104), - [anon_sym_extern] = ACTIONS(4104), - [anon_sym___attribute__] = ACTIONS(4104), - [anon_sym___attribute] = ACTIONS(4104), - [anon_sym_using] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), - [anon_sym___declspec] = ACTIONS(4104), - [anon_sym___based] = ACTIONS(4104), - [anon_sym_signed] = ACTIONS(4104), - [anon_sym_unsigned] = ACTIONS(4104), - [anon_sym_long] = ACTIONS(4104), - [anon_sym_short] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(4104), - [anon_sym_static] = ACTIONS(4104), - [anon_sym_register] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym___inline] = ACTIONS(4104), - [anon_sym___inline__] = ACTIONS(4104), - [anon_sym___forceinline] = ACTIONS(4104), - [anon_sym_thread_local] = ACTIONS(4104), - [anon_sym___thread] = ACTIONS(4104), - [anon_sym_const] = ACTIONS(4104), - [anon_sym_constexpr] = ACTIONS(4104), - [anon_sym_volatile] = ACTIONS(4104), - [anon_sym_restrict] = ACTIONS(4104), - [anon_sym___restrict__] = ACTIONS(4104), - [anon_sym__Atomic] = ACTIONS(4104), - [anon_sym__Noreturn] = ACTIONS(4104), - [anon_sym_noreturn] = ACTIONS(4104), - [anon_sym__Nonnull] = ACTIONS(4104), - [anon_sym_mutable] = ACTIONS(4104), - [anon_sym_constinit] = ACTIONS(4104), - [anon_sym_consteval] = ACTIONS(4104), - [anon_sym_alignas] = ACTIONS(4104), - [anon_sym__Alignas] = ACTIONS(4104), - [sym_primitive_type] = ACTIONS(4104), - [anon_sym_enum] = ACTIONS(4104), - [anon_sym_class] = ACTIONS(4104), - [anon_sym_struct] = ACTIONS(4104), - [anon_sym_union] = ACTIONS(4104), - [anon_sym_typename] = ACTIONS(4104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4104), - [anon_sym_decltype] = ACTIONS(4104), - [anon_sym_explicit] = ACTIONS(4104), - [anon_sym_private] = ACTIONS(4104), - [anon_sym_template] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_friend] = ACTIONS(4104), - [anon_sym_public] = ACTIONS(4104), - [anon_sym_protected] = ACTIONS(4104), - [anon_sym_static_assert] = ACTIONS(4104), - [anon_sym_LBRACK_COLON] = ACTIONS(4106), - }, - [STATE(3251)] = { - [sym_identifier] = ACTIONS(3921), - [aux_sym_preproc_def_token1] = ACTIONS(3921), - [aux_sym_preproc_if_token1] = ACTIONS(3921), - [aux_sym_preproc_if_token2] = ACTIONS(3921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), - [sym_preproc_directive] = ACTIONS(3921), - [anon_sym_LPAREN2] = ACTIONS(3923), - [anon_sym_TILDE] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3921), - [anon_sym_SEMI] = ACTIONS(3923), - [anon_sym___extension__] = ACTIONS(3921), - [anon_sym_typedef] = ACTIONS(3921), - [anon_sym_virtual] = ACTIONS(3921), - [anon_sym_extern] = ACTIONS(3921), - [anon_sym___attribute__] = ACTIONS(3921), - [anon_sym___attribute] = ACTIONS(3921), - [anon_sym_using] = ACTIONS(3921), - [anon_sym_COLON_COLON] = ACTIONS(3923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), - [anon_sym___declspec] = ACTIONS(3921), - [anon_sym___based] = ACTIONS(3921), - [anon_sym_signed] = ACTIONS(3921), - [anon_sym_unsigned] = ACTIONS(3921), - [anon_sym_long] = ACTIONS(3921), - [anon_sym_short] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_static] = ACTIONS(3921), - [anon_sym_register] = ACTIONS(3921), - [anon_sym_inline] = ACTIONS(3921), - [anon_sym___inline] = ACTIONS(3921), - [anon_sym___inline__] = ACTIONS(3921), - [anon_sym___forceinline] = ACTIONS(3921), - [anon_sym_thread_local] = ACTIONS(3921), - [anon_sym___thread] = ACTIONS(3921), - [anon_sym_const] = ACTIONS(3921), - [anon_sym_constexpr] = ACTIONS(3921), - [anon_sym_volatile] = ACTIONS(3921), - [anon_sym_restrict] = ACTIONS(3921), - [anon_sym___restrict__] = ACTIONS(3921), - [anon_sym__Atomic] = ACTIONS(3921), - [anon_sym__Noreturn] = ACTIONS(3921), - [anon_sym_noreturn] = ACTIONS(3921), - [anon_sym__Nonnull] = ACTIONS(3921), - [anon_sym_mutable] = ACTIONS(3921), - [anon_sym_constinit] = ACTIONS(3921), - [anon_sym_consteval] = ACTIONS(3921), - [anon_sym_alignas] = ACTIONS(3921), - [anon_sym__Alignas] = ACTIONS(3921), - [sym_primitive_type] = ACTIONS(3921), - [anon_sym_enum] = ACTIONS(3921), - [anon_sym_class] = ACTIONS(3921), - [anon_sym_struct] = ACTIONS(3921), - [anon_sym_union] = ACTIONS(3921), - [anon_sym_typename] = ACTIONS(3921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3921), - [anon_sym_decltype] = ACTIONS(3921), - [anon_sym_explicit] = ACTIONS(3921), - [anon_sym_private] = ACTIONS(3921), - [anon_sym_template] = ACTIONS(3921), - [anon_sym_operator] = ACTIONS(3921), - [anon_sym_friend] = ACTIONS(3921), - [anon_sym_public] = ACTIONS(3921), - [anon_sym_protected] = ACTIONS(3921), - [anon_sym_static_assert] = ACTIONS(3921), - [anon_sym_LBRACK_COLON] = ACTIONS(3923), - }, - [STATE(3252)] = { - [sym_identifier] = ACTIONS(3935), - [aux_sym_preproc_def_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token1] = ACTIONS(3935), - [aux_sym_preproc_if_token2] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3935), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3935), - [sym_preproc_directive] = ACTIONS(3935), - [anon_sym_LPAREN2] = ACTIONS(3937), - [anon_sym_TILDE] = ACTIONS(3937), - [anon_sym_STAR] = ACTIONS(3937), - [anon_sym_AMP_AMP] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_SEMI] = ACTIONS(3937), - [anon_sym___extension__] = ACTIONS(3935), - [anon_sym_typedef] = ACTIONS(3935), - [anon_sym_virtual] = ACTIONS(3935), - [anon_sym_extern] = ACTIONS(3935), - [anon_sym___attribute__] = ACTIONS(3935), - [anon_sym___attribute] = ACTIONS(3935), - [anon_sym_using] = ACTIONS(3935), - [anon_sym_COLON_COLON] = ACTIONS(3937), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3937), - [anon_sym___declspec] = ACTIONS(3935), - [anon_sym___based] = ACTIONS(3935), - [anon_sym_signed] = ACTIONS(3935), - [anon_sym_unsigned] = ACTIONS(3935), - [anon_sym_long] = ACTIONS(3935), - [anon_sym_short] = ACTIONS(3935), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_static] = ACTIONS(3935), - [anon_sym_register] = ACTIONS(3935), - [anon_sym_inline] = ACTIONS(3935), - [anon_sym___inline] = ACTIONS(3935), - [anon_sym___inline__] = ACTIONS(3935), - [anon_sym___forceinline] = ACTIONS(3935), - [anon_sym_thread_local] = ACTIONS(3935), - [anon_sym___thread] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_constexpr] = ACTIONS(3935), - [anon_sym_volatile] = ACTIONS(3935), - [anon_sym_restrict] = ACTIONS(3935), - [anon_sym___restrict__] = ACTIONS(3935), - [anon_sym__Atomic] = ACTIONS(3935), - [anon_sym__Noreturn] = ACTIONS(3935), - [anon_sym_noreturn] = ACTIONS(3935), - [anon_sym__Nonnull] = ACTIONS(3935), - [anon_sym_mutable] = ACTIONS(3935), - [anon_sym_constinit] = ACTIONS(3935), - [anon_sym_consteval] = ACTIONS(3935), - [anon_sym_alignas] = ACTIONS(3935), - [anon_sym__Alignas] = ACTIONS(3935), - [sym_primitive_type] = ACTIONS(3935), - [anon_sym_enum] = ACTIONS(3935), - [anon_sym_class] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3935), - [anon_sym_typename] = ACTIONS(3935), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3935), - [anon_sym_decltype] = ACTIONS(3935), - [anon_sym_explicit] = ACTIONS(3935), - [anon_sym_private] = ACTIONS(3935), - [anon_sym_template] = ACTIONS(3935), - [anon_sym_operator] = ACTIONS(3935), - [anon_sym_friend] = ACTIONS(3935), - [anon_sym_public] = ACTIONS(3935), - [anon_sym_protected] = ACTIONS(3935), - [anon_sym_static_assert] = ACTIONS(3935), - [anon_sym_LBRACK_COLON] = ACTIONS(3937), - }, - [STATE(3253)] = { - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token2] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_private] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_friend] = ACTIONS(4152), - [anon_sym_public] = ACTIONS(4152), - [anon_sym_protected] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), - }, - [STATE(3254)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_private] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_friend] = ACTIONS(4156), - [anon_sym_public] = ACTIONS(4156), - [anon_sym_protected] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - }, - [STATE(3255)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token2] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_private] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_friend] = ACTIONS(4156), - [anon_sym_public] = ACTIONS(4156), - [anon_sym_protected] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), - }, - [STATE(3256)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_private] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_friend] = ACTIONS(4160), - [anon_sym_public] = ACTIONS(4160), - [anon_sym_protected] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - }, - [STATE(3257)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token2] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_private] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_friend] = ACTIONS(4160), - [anon_sym_public] = ACTIONS(4160), - [anon_sym_protected] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), - }, - [STATE(3258)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token2] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [anon_sym___declspec] = ACTIONS(4164), - [anon_sym___based] = ACTIONS(4164), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = 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), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_friend] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), - }, - [STATE(3259)] = { - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token2] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_private] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_friend] = ACTIONS(4168), - [anon_sym_public] = ACTIONS(4168), - [anon_sym_protected] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), - }, - [STATE(3260)] = { - [sym_identifier] = ACTIONS(4172), - [aux_sym_preproc_def_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token2] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), - [sym_preproc_directive] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4172), - [anon_sym_typedef] = ACTIONS(4172), - [anon_sym_virtual] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(4172), - [anon_sym___attribute] = ACTIONS(4172), - [anon_sym_using] = ACTIONS(4172), - [anon_sym_COLON_COLON] = ACTIONS(4174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), - [anon_sym___declspec] = ACTIONS(4172), - [anon_sym___based] = ACTIONS(4172), - [anon_sym_signed] = ACTIONS(4172), - [anon_sym_unsigned] = ACTIONS(4172), - [anon_sym_long] = ACTIONS(4172), - [anon_sym_short] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_static] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_inline] = ACTIONS(4172), - [anon_sym___inline] = ACTIONS(4172), - [anon_sym___inline__] = ACTIONS(4172), - [anon_sym___forceinline] = ACTIONS(4172), - [anon_sym_thread_local] = ACTIONS(4172), - [anon_sym___thread] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [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), - [sym_primitive_type] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_class] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_typename] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4172), - [anon_sym_decltype] = ACTIONS(4172), - [anon_sym_explicit] = ACTIONS(4172), - [anon_sym_private] = ACTIONS(4172), - [anon_sym_template] = ACTIONS(4172), - [anon_sym_operator] = ACTIONS(4172), - [anon_sym_friend] = ACTIONS(4172), - [anon_sym_public] = ACTIONS(4172), - [anon_sym_protected] = ACTIONS(4172), - [anon_sym_static_assert] = ACTIONS(4172), - [anon_sym_LBRACK_COLON] = ACTIONS(4174), - }, - [STATE(3261)] = { - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token2] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_private] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(4176), - [anon_sym_protected] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), - }, - [STATE(3262)] = { - [sym_identifier] = ACTIONS(4180), - [aux_sym_preproc_def_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token2] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), - [sym_preproc_directive] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(4182), - [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_STAR] = ACTIONS(4182), - [anon_sym_AMP_AMP] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym___extension__] = ACTIONS(4180), - [anon_sym_typedef] = ACTIONS(4180), - [anon_sym_virtual] = ACTIONS(4180), - [anon_sym_extern] = ACTIONS(4180), - [anon_sym___attribute__] = ACTIONS(4180), - [anon_sym___attribute] = ACTIONS(4180), - [anon_sym_using] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), - [anon_sym___declspec] = ACTIONS(4180), - [anon_sym___based] = ACTIONS(4180), - [anon_sym_signed] = ACTIONS(4180), - [anon_sym_unsigned] = ACTIONS(4180), - [anon_sym_long] = ACTIONS(4180), - [anon_sym_short] = ACTIONS(4180), - [anon_sym_LBRACK] = ACTIONS(4180), - [anon_sym_static] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4180), - [anon_sym_inline] = ACTIONS(4180), - [anon_sym___inline] = ACTIONS(4180), - [anon_sym___inline__] = ACTIONS(4180), - [anon_sym___forceinline] = ACTIONS(4180), - [anon_sym_thread_local] = ACTIONS(4180), - [anon_sym___thread] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_constexpr] = ACTIONS(4180), - [anon_sym_volatile] = ACTIONS(4180), - [anon_sym_restrict] = ACTIONS(4180), - [anon_sym___restrict__] = ACTIONS(4180), - [anon_sym__Atomic] = ACTIONS(4180), - [anon_sym__Noreturn] = ACTIONS(4180), - [anon_sym_noreturn] = ACTIONS(4180), - [anon_sym__Nonnull] = ACTIONS(4180), - [anon_sym_mutable] = ACTIONS(4180), - [anon_sym_constinit] = ACTIONS(4180), - [anon_sym_consteval] = ACTIONS(4180), - [anon_sym_alignas] = ACTIONS(4180), - [anon_sym__Alignas] = ACTIONS(4180), - [sym_primitive_type] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_class] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_typename] = ACTIONS(4180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4180), - [anon_sym_decltype] = ACTIONS(4180), - [anon_sym_explicit] = ACTIONS(4180), - [anon_sym_private] = ACTIONS(4180), - [anon_sym_template] = ACTIONS(4180), - [anon_sym_operator] = ACTIONS(4180), - [anon_sym_friend] = ACTIONS(4180), - [anon_sym_public] = ACTIONS(4180), - [anon_sym_protected] = ACTIONS(4180), - [anon_sym_static_assert] = ACTIONS(4180), - [anon_sym_LBRACK_COLON] = ACTIONS(4182), - }, - [STATE(3263)] = { - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token2] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_private] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_friend] = ACTIONS(4184), - [anon_sym_public] = ACTIONS(4184), - [anon_sym_protected] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), - }, - [STATE(3264)] = { - [sym_identifier] = ACTIONS(3954), - [aux_sym_preproc_def_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token2] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), - [sym_preproc_directive] = ACTIONS(3954), - [anon_sym_LPAREN2] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_STAR] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym___extension__] = ACTIONS(3954), - [anon_sym_typedef] = ACTIONS(3954), - [anon_sym_virtual] = ACTIONS(3954), - [anon_sym_extern] = ACTIONS(3954), - [anon_sym___attribute__] = ACTIONS(3954), - [anon_sym___attribute] = ACTIONS(3954), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_COLON_COLON] = ACTIONS(3956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), - [anon_sym___declspec] = ACTIONS(3954), - [anon_sym___based] = ACTIONS(3954), - [anon_sym_signed] = ACTIONS(3954), - [anon_sym_unsigned] = ACTIONS(3954), - [anon_sym_long] = ACTIONS(3954), - [anon_sym_short] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3954), - [anon_sym_register] = ACTIONS(3954), - [anon_sym_inline] = ACTIONS(3954), - [anon_sym___inline] = ACTIONS(3954), - [anon_sym___inline__] = ACTIONS(3954), - [anon_sym___forceinline] = ACTIONS(3954), - [anon_sym_thread_local] = ACTIONS(3954), - [anon_sym___thread] = ACTIONS(3954), - [anon_sym_const] = ACTIONS(3954), - [anon_sym_constexpr] = ACTIONS(3954), - [anon_sym_volatile] = ACTIONS(3954), - [anon_sym_restrict] = ACTIONS(3954), - [anon_sym___restrict__] = ACTIONS(3954), - [anon_sym__Atomic] = ACTIONS(3954), - [anon_sym__Noreturn] = ACTIONS(3954), - [anon_sym_noreturn] = ACTIONS(3954), - [anon_sym__Nonnull] = ACTIONS(3954), - [anon_sym_mutable] = ACTIONS(3954), - [anon_sym_constinit] = ACTIONS(3954), - [anon_sym_consteval] = ACTIONS(3954), - [anon_sym_alignas] = ACTIONS(3954), - [anon_sym__Alignas] = ACTIONS(3954), - [sym_primitive_type] = ACTIONS(3954), - [anon_sym_enum] = ACTIONS(3954), - [anon_sym_class] = ACTIONS(3954), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3954), - [anon_sym_typename] = ACTIONS(3954), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3954), - [anon_sym_decltype] = ACTIONS(3954), - [anon_sym_explicit] = ACTIONS(3954), - [anon_sym_private] = ACTIONS(3954), - [anon_sym_template] = ACTIONS(3954), - [anon_sym_operator] = ACTIONS(3954), - [anon_sym_friend] = ACTIONS(3954), - [anon_sym_public] = ACTIONS(3954), - [anon_sym_protected] = ACTIONS(3954), - [anon_sym_static_assert] = ACTIONS(3954), - [anon_sym_LBRACK_COLON] = ACTIONS(3956), - }, - [STATE(3265)] = { - [sym_identifier] = ACTIONS(3958), - [aux_sym_preproc_def_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token2] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), - [sym_preproc_directive] = ACTIONS(3958), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_typedef] = ACTIONS(3958), - [anon_sym_virtual] = ACTIONS(3958), - [anon_sym_extern] = ACTIONS(3958), - [anon_sym___attribute__] = ACTIONS(3958), - [anon_sym___attribute] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), - [anon_sym___declspec] = ACTIONS(3958), - [anon_sym___based] = ACTIONS(3958), - [anon_sym_signed] = ACTIONS(3958), - [anon_sym_unsigned] = ACTIONS(3958), - [anon_sym_long] = ACTIONS(3958), - [anon_sym_short] = ACTIONS(3958), - [anon_sym_LBRACK] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3958), - [anon_sym_register] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym___inline] = ACTIONS(3958), - [anon_sym___inline__] = ACTIONS(3958), - [anon_sym___forceinline] = ACTIONS(3958), - [anon_sym_thread_local] = ACTIONS(3958), - [anon_sym___thread] = ACTIONS(3958), - [anon_sym_const] = ACTIONS(3958), - [anon_sym_constexpr] = ACTIONS(3958), - [anon_sym_volatile] = ACTIONS(3958), - [anon_sym_restrict] = ACTIONS(3958), - [anon_sym___restrict__] = ACTIONS(3958), - [anon_sym__Atomic] = ACTIONS(3958), - [anon_sym__Noreturn] = ACTIONS(3958), - [anon_sym_noreturn] = ACTIONS(3958), - [anon_sym__Nonnull] = ACTIONS(3958), - [anon_sym_mutable] = ACTIONS(3958), - [anon_sym_constinit] = ACTIONS(3958), - [anon_sym_consteval] = ACTIONS(3958), - [anon_sym_alignas] = ACTIONS(3958), - [anon_sym__Alignas] = ACTIONS(3958), - [sym_primitive_type] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_union] = ACTIONS(3958), - [anon_sym_typename] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3958), - [anon_sym_decltype] = ACTIONS(3958), - [anon_sym_explicit] = ACTIONS(3958), - [anon_sym_private] = ACTIONS(3958), - [anon_sym_template] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_friend] = ACTIONS(3958), - [anon_sym_public] = ACTIONS(3958), - [anon_sym_protected] = ACTIONS(3958), - [anon_sym_static_assert] = ACTIONS(3958), - [anon_sym_LBRACK_COLON] = ACTIONS(3960), - }, - [STATE(3266)] = { - [sym_identifier] = ACTIONS(4262), - [aux_sym_preproc_def_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token2] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), - [sym_preproc_directive] = ACTIONS(4262), - [anon_sym_LPAREN2] = ACTIONS(4264), - [anon_sym_TILDE] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym___extension__] = ACTIONS(4262), - [anon_sym_typedef] = ACTIONS(4262), - [anon_sym_virtual] = ACTIONS(4262), - [anon_sym_extern] = ACTIONS(4262), - [anon_sym___attribute__] = ACTIONS(4262), - [anon_sym___attribute] = ACTIONS(4262), - [anon_sym_using] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), - [anon_sym___declspec] = ACTIONS(4262), - [anon_sym___based] = ACTIONS(4262), - [anon_sym_signed] = ACTIONS(4262), - [anon_sym_unsigned] = ACTIONS(4262), - [anon_sym_long] = ACTIONS(4262), - [anon_sym_short] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_static] = ACTIONS(4262), - [anon_sym_register] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym___inline] = ACTIONS(4262), - [anon_sym___inline__] = ACTIONS(4262), - [anon_sym___forceinline] = ACTIONS(4262), - [anon_sym_thread_local] = ACTIONS(4262), - [anon_sym___thread] = ACTIONS(4262), - [anon_sym_const] = ACTIONS(4262), - [anon_sym_constexpr] = ACTIONS(4262), - [anon_sym_volatile] = ACTIONS(4262), - [anon_sym_restrict] = ACTIONS(4262), - [anon_sym___restrict__] = ACTIONS(4262), - [anon_sym__Atomic] = ACTIONS(4262), - [anon_sym__Noreturn] = ACTIONS(4262), - [anon_sym_noreturn] = ACTIONS(4262), - [anon_sym__Nonnull] = ACTIONS(4262), - [anon_sym_mutable] = ACTIONS(4262), - [anon_sym_constinit] = ACTIONS(4262), - [anon_sym_consteval] = ACTIONS(4262), - [anon_sym_alignas] = ACTIONS(4262), - [anon_sym__Alignas] = ACTIONS(4262), - [sym_primitive_type] = ACTIONS(4262), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_class] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4262), - [anon_sym_union] = ACTIONS(4262), - [anon_sym_typename] = ACTIONS(4262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4262), - [anon_sym_decltype] = ACTIONS(4262), - [anon_sym_explicit] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_template] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_friend] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_static_assert] = ACTIONS(4262), - [anon_sym_LBRACK_COLON] = ACTIONS(4264), - }, - [STATE(3267)] = { - [sym_identifier] = ACTIONS(4266), - [aux_sym_preproc_def_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token2] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), - [sym_preproc_directive] = ACTIONS(4266), - [anon_sym_LPAREN2] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym___extension__] = ACTIONS(4266), - [anon_sym_typedef] = ACTIONS(4266), - [anon_sym_virtual] = ACTIONS(4266), - [anon_sym_extern] = ACTIONS(4266), - [anon_sym___attribute__] = ACTIONS(4266), - [anon_sym___attribute] = ACTIONS(4266), - [anon_sym_using] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), - [anon_sym___declspec] = ACTIONS(4266), - [anon_sym___based] = ACTIONS(4266), - [anon_sym_signed] = ACTIONS(4266), - [anon_sym_unsigned] = ACTIONS(4266), - [anon_sym_long] = ACTIONS(4266), - [anon_sym_short] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_static] = ACTIONS(4266), - [anon_sym_register] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym___inline] = ACTIONS(4266), - [anon_sym___inline__] = ACTIONS(4266), - [anon_sym___forceinline] = ACTIONS(4266), - [anon_sym_thread_local] = ACTIONS(4266), - [anon_sym___thread] = ACTIONS(4266), - [anon_sym_const] = ACTIONS(4266), - [anon_sym_constexpr] = ACTIONS(4266), - [anon_sym_volatile] = ACTIONS(4266), - [anon_sym_restrict] = ACTIONS(4266), - [anon_sym___restrict__] = ACTIONS(4266), - [anon_sym__Atomic] = ACTIONS(4266), - [anon_sym__Noreturn] = ACTIONS(4266), - [anon_sym_noreturn] = ACTIONS(4266), - [anon_sym__Nonnull] = ACTIONS(4266), - [anon_sym_mutable] = ACTIONS(4266), - [anon_sym_constinit] = ACTIONS(4266), - [anon_sym_consteval] = ACTIONS(4266), - [anon_sym_alignas] = ACTIONS(4266), - [anon_sym__Alignas] = ACTIONS(4266), - [sym_primitive_type] = ACTIONS(4266), - [anon_sym_enum] = ACTIONS(4266), - [anon_sym_class] = ACTIONS(4266), - [anon_sym_struct] = ACTIONS(4266), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_typename] = ACTIONS(4266), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4266), - [anon_sym_decltype] = ACTIONS(4266), - [anon_sym_explicit] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_template] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_friend] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_static_assert] = ACTIONS(4266), - [anon_sym_LBRACK_COLON] = ACTIONS(4268), - }, - [STATE(3268)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token2] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_friend] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - }, - [STATE(3269)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token2] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_friend] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - }, - [STATE(3270)] = { - [sym_identifier] = ACTIONS(4274), - [aux_sym_preproc_def_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token2] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), - [sym_preproc_directive] = ACTIONS(4274), - [anon_sym_LPAREN2] = ACTIONS(4276), - [anon_sym_TILDE] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_AMP_AMP] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4274), - [anon_sym_SEMI] = ACTIONS(4276), - [anon_sym___extension__] = ACTIONS(4274), - [anon_sym_typedef] = ACTIONS(4274), - [anon_sym_virtual] = ACTIONS(4274), - [anon_sym_extern] = ACTIONS(4274), - [anon_sym___attribute__] = ACTIONS(4274), - [anon_sym___attribute] = ACTIONS(4274), - [anon_sym_using] = ACTIONS(4274), - [anon_sym_COLON_COLON] = ACTIONS(4276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), - [anon_sym___declspec] = ACTIONS(4274), - [anon_sym___based] = ACTIONS(4274), - [anon_sym_signed] = ACTIONS(4274), - [anon_sym_unsigned] = ACTIONS(4274), - [anon_sym_long] = ACTIONS(4274), - [anon_sym_short] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_static] = ACTIONS(4274), - [anon_sym_register] = ACTIONS(4274), - [anon_sym_inline] = ACTIONS(4274), - [anon_sym___inline] = ACTIONS(4274), - [anon_sym___inline__] = ACTIONS(4274), - [anon_sym___forceinline] = ACTIONS(4274), - [anon_sym_thread_local] = ACTIONS(4274), - [anon_sym___thread] = ACTIONS(4274), - [anon_sym_const] = ACTIONS(4274), - [anon_sym_constexpr] = ACTIONS(4274), - [anon_sym_volatile] = ACTIONS(4274), - [anon_sym_restrict] = ACTIONS(4274), - [anon_sym___restrict__] = ACTIONS(4274), - [anon_sym__Atomic] = ACTIONS(4274), - [anon_sym__Noreturn] = ACTIONS(4274), - [anon_sym_noreturn] = ACTIONS(4274), - [anon_sym__Nonnull] = ACTIONS(4274), - [anon_sym_mutable] = ACTIONS(4274), - [anon_sym_constinit] = ACTIONS(4274), - [anon_sym_consteval] = ACTIONS(4274), - [anon_sym_alignas] = ACTIONS(4274), - [anon_sym__Alignas] = ACTIONS(4274), - [sym_primitive_type] = ACTIONS(4274), - [anon_sym_enum] = ACTIONS(4274), - [anon_sym_class] = ACTIONS(4274), - [anon_sym_struct] = ACTIONS(4274), - [anon_sym_union] = ACTIONS(4274), - [anon_sym_typename] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4274), - [anon_sym_decltype] = ACTIONS(4274), - [anon_sym_explicit] = ACTIONS(4274), - [anon_sym_private] = ACTIONS(4274), - [anon_sym_template] = ACTIONS(4274), - [anon_sym_operator] = ACTIONS(4274), - [anon_sym_friend] = ACTIONS(4274), - [anon_sym_public] = ACTIONS(4274), - [anon_sym_protected] = ACTIONS(4274), - [anon_sym_static_assert] = ACTIONS(4274), - [anon_sym_LBRACK_COLON] = ACTIONS(4276), - }, - [STATE(3271)] = { - [sym_identifier] = ACTIONS(4278), - [aux_sym_preproc_def_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token2] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), - [sym_preproc_directive] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4280), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_AMP] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym___extension__] = ACTIONS(4278), - [anon_sym_typedef] = ACTIONS(4278), - [anon_sym_virtual] = ACTIONS(4278), - [anon_sym_extern] = ACTIONS(4278), - [anon_sym___attribute__] = ACTIONS(4278), - [anon_sym___attribute] = ACTIONS(4278), - [anon_sym_using] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), - [anon_sym___declspec] = ACTIONS(4278), - [anon_sym___based] = ACTIONS(4278), - [anon_sym_signed] = ACTIONS(4278), - [anon_sym_unsigned] = ACTIONS(4278), - [anon_sym_long] = ACTIONS(4278), - [anon_sym_short] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_static] = ACTIONS(4278), - [anon_sym_register] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym___inline] = ACTIONS(4278), - [anon_sym___inline__] = ACTIONS(4278), - [anon_sym___forceinline] = ACTIONS(4278), - [anon_sym_thread_local] = ACTIONS(4278), - [anon_sym___thread] = ACTIONS(4278), - [anon_sym_const] = ACTIONS(4278), - [anon_sym_constexpr] = ACTIONS(4278), - [anon_sym_volatile] = ACTIONS(4278), - [anon_sym_restrict] = ACTIONS(4278), - [anon_sym___restrict__] = ACTIONS(4278), - [anon_sym__Atomic] = ACTIONS(4278), - [anon_sym__Noreturn] = ACTIONS(4278), - [anon_sym_noreturn] = ACTIONS(4278), - [anon_sym__Nonnull] = ACTIONS(4278), - [anon_sym_mutable] = ACTIONS(4278), - [anon_sym_constinit] = ACTIONS(4278), - [anon_sym_consteval] = ACTIONS(4278), - [anon_sym_alignas] = ACTIONS(4278), - [anon_sym__Alignas] = ACTIONS(4278), - [sym_primitive_type] = ACTIONS(4278), - [anon_sym_enum] = ACTIONS(4278), - [anon_sym_class] = ACTIONS(4278), - [anon_sym_struct] = ACTIONS(4278), - [anon_sym_union] = ACTIONS(4278), - [anon_sym_typename] = ACTIONS(4278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4278), - [anon_sym_decltype] = ACTIONS(4278), - [anon_sym_explicit] = ACTIONS(4278), - [anon_sym_private] = ACTIONS(4278), - [anon_sym_template] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_friend] = ACTIONS(4278), - [anon_sym_public] = ACTIONS(4278), - [anon_sym_protected] = ACTIONS(4278), - [anon_sym_static_assert] = ACTIONS(4278), - [anon_sym_LBRACK_COLON] = ACTIONS(4280), - }, - [STATE(3272)] = { - [sym_identifier] = ACTIONS(4020), - [aux_sym_preproc_def_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token2] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), - [sym_preproc_directive] = ACTIONS(4020), - [anon_sym_LPAREN2] = ACTIONS(4022), - [anon_sym_TILDE] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4022), - [anon_sym_AMP_AMP] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_SEMI] = ACTIONS(4022), - [anon_sym___extension__] = ACTIONS(4020), - [anon_sym_typedef] = ACTIONS(4020), - [anon_sym_virtual] = ACTIONS(4020), - [anon_sym_extern] = ACTIONS(4020), - [anon_sym___attribute__] = ACTIONS(4020), - [anon_sym___attribute] = ACTIONS(4020), - [anon_sym_using] = ACTIONS(4020), - [anon_sym_COLON_COLON] = ACTIONS(4022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), - [anon_sym___declspec] = ACTIONS(4020), - [anon_sym___based] = ACTIONS(4020), - [anon_sym_signed] = ACTIONS(4020), - [anon_sym_unsigned] = ACTIONS(4020), - [anon_sym_long] = ACTIONS(4020), - [anon_sym_short] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_static] = ACTIONS(4020), - [anon_sym_register] = ACTIONS(4020), - [anon_sym_inline] = ACTIONS(4020), - [anon_sym___inline] = ACTIONS(4020), - [anon_sym___inline__] = ACTIONS(4020), - [anon_sym___forceinline] = ACTIONS(4020), - [anon_sym_thread_local] = ACTIONS(4020), - [anon_sym___thread] = ACTIONS(4020), - [anon_sym_const] = ACTIONS(4020), - [anon_sym_constexpr] = ACTIONS(4020), - [anon_sym_volatile] = ACTIONS(4020), - [anon_sym_restrict] = ACTIONS(4020), - [anon_sym___restrict__] = ACTIONS(4020), - [anon_sym__Atomic] = ACTIONS(4020), - [anon_sym__Noreturn] = ACTIONS(4020), - [anon_sym_noreturn] = ACTIONS(4020), - [anon_sym__Nonnull] = ACTIONS(4020), - [anon_sym_mutable] = ACTIONS(4020), - [anon_sym_constinit] = ACTIONS(4020), - [anon_sym_consteval] = ACTIONS(4020), - [anon_sym_alignas] = ACTIONS(4020), - [anon_sym__Alignas] = ACTIONS(4020), - [sym_primitive_type] = ACTIONS(4020), - [anon_sym_enum] = ACTIONS(4020), - [anon_sym_class] = ACTIONS(4020), - [anon_sym_struct] = ACTIONS(4020), - [anon_sym_union] = ACTIONS(4020), - [anon_sym_typename] = ACTIONS(4020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4020), - [anon_sym_decltype] = ACTIONS(4020), - [anon_sym_explicit] = ACTIONS(4020), - [anon_sym_private] = ACTIONS(4020), - [anon_sym_template] = ACTIONS(4020), - [anon_sym_operator] = ACTIONS(4020), - [anon_sym_friend] = ACTIONS(4020), - [anon_sym_public] = ACTIONS(4020), - [anon_sym_protected] = ACTIONS(4020), - [anon_sym_static_assert] = ACTIONS(4020), - [anon_sym_LBRACK_COLON] = ACTIONS(4022), - }, - [STATE(3273)] = { - [sym_identifier] = ACTIONS(4048), - [aux_sym_preproc_def_token1] = ACTIONS(4048), - [aux_sym_preproc_if_token1] = ACTIONS(4048), - [aux_sym_preproc_if_token2] = ACTIONS(4048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), - [sym_preproc_directive] = ACTIONS(4048), - [anon_sym_LPAREN2] = ACTIONS(4050), - [anon_sym_TILDE] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_SEMI] = ACTIONS(4050), - [anon_sym___extension__] = ACTIONS(4048), - [anon_sym_typedef] = ACTIONS(4048), - [anon_sym_virtual] = ACTIONS(4048), - [anon_sym_extern] = ACTIONS(4048), - [anon_sym___attribute__] = ACTIONS(4048), - [anon_sym___attribute] = ACTIONS(4048), - [anon_sym_using] = ACTIONS(4048), - [anon_sym_COLON_COLON] = ACTIONS(4050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), - [anon_sym___declspec] = ACTIONS(4048), - [anon_sym___based] = ACTIONS(4048), - [anon_sym_signed] = ACTIONS(4048), - [anon_sym_unsigned] = ACTIONS(4048), - [anon_sym_long] = ACTIONS(4048), - [anon_sym_short] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(4048), - [anon_sym_static] = ACTIONS(4048), - [anon_sym_register] = ACTIONS(4048), - [anon_sym_inline] = ACTIONS(4048), - [anon_sym___inline] = ACTIONS(4048), - [anon_sym___inline__] = ACTIONS(4048), - [anon_sym___forceinline] = ACTIONS(4048), - [anon_sym_thread_local] = ACTIONS(4048), - [anon_sym___thread] = ACTIONS(4048), - [anon_sym_const] = ACTIONS(4048), - [anon_sym_constexpr] = ACTIONS(4048), - [anon_sym_volatile] = ACTIONS(4048), - [anon_sym_restrict] = ACTIONS(4048), - [anon_sym___restrict__] = ACTIONS(4048), - [anon_sym__Atomic] = ACTIONS(4048), - [anon_sym__Noreturn] = ACTIONS(4048), - [anon_sym_noreturn] = ACTIONS(4048), - [anon_sym__Nonnull] = ACTIONS(4048), - [anon_sym_mutable] = ACTIONS(4048), - [anon_sym_constinit] = ACTIONS(4048), - [anon_sym_consteval] = ACTIONS(4048), - [anon_sym_alignas] = ACTIONS(4048), - [anon_sym__Alignas] = ACTIONS(4048), - [sym_primitive_type] = ACTIONS(4048), - [anon_sym_enum] = ACTIONS(4048), - [anon_sym_class] = ACTIONS(4048), - [anon_sym_struct] = ACTIONS(4048), - [anon_sym_union] = ACTIONS(4048), - [anon_sym_typename] = ACTIONS(4048), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4048), - [anon_sym_decltype] = ACTIONS(4048), - [anon_sym_explicit] = ACTIONS(4048), - [anon_sym_private] = ACTIONS(4048), - [anon_sym_template] = ACTIONS(4048), - [anon_sym_operator] = ACTIONS(4048), - [anon_sym_friend] = ACTIONS(4048), - [anon_sym_public] = ACTIONS(4048), - [anon_sym_protected] = ACTIONS(4048), - [anon_sym_static_assert] = ACTIONS(4048), - [anon_sym_LBRACK_COLON] = ACTIONS(4050), - }, - [STATE(3274)] = { - [sym_identifier] = ACTIONS(4387), - [aux_sym_preproc_def_token1] = ACTIONS(4387), - [aux_sym_preproc_if_token1] = ACTIONS(4387), - [aux_sym_preproc_if_token2] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), - [sym_preproc_directive] = ACTIONS(4387), - [anon_sym_LPAREN2] = ACTIONS(4389), - [anon_sym_TILDE] = ACTIONS(4389), - [anon_sym_STAR] = ACTIONS(4389), - [anon_sym_AMP_AMP] = ACTIONS(4389), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_SEMI] = ACTIONS(4389), - [anon_sym___extension__] = ACTIONS(4387), - [anon_sym_typedef] = ACTIONS(4387), - [anon_sym_virtual] = ACTIONS(4387), - [anon_sym_extern] = ACTIONS(4387), - [anon_sym___attribute__] = ACTIONS(4387), - [anon_sym___attribute] = ACTIONS(4387), - [anon_sym_using] = ACTIONS(4387), - [anon_sym_COLON_COLON] = ACTIONS(4389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), - [anon_sym___declspec] = ACTIONS(4387), - [anon_sym___based] = ACTIONS(4387), - [anon_sym_signed] = ACTIONS(4387), - [anon_sym_unsigned] = ACTIONS(4387), - [anon_sym_long] = ACTIONS(4387), - [anon_sym_short] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_static] = ACTIONS(4387), - [anon_sym_register] = ACTIONS(4387), - [anon_sym_inline] = ACTIONS(4387), - [anon_sym___inline] = ACTIONS(4387), - [anon_sym___inline__] = ACTIONS(4387), - [anon_sym___forceinline] = ACTIONS(4387), - [anon_sym_thread_local] = ACTIONS(4387), - [anon_sym___thread] = ACTIONS(4387), - [anon_sym_const] = ACTIONS(4387), - [anon_sym_constexpr] = ACTIONS(4387), - [anon_sym_volatile] = ACTIONS(4387), - [anon_sym_restrict] = ACTIONS(4387), - [anon_sym___restrict__] = ACTIONS(4387), - [anon_sym__Atomic] = ACTIONS(4387), - [anon_sym__Noreturn] = ACTIONS(4387), - [anon_sym_noreturn] = ACTIONS(4387), - [anon_sym__Nonnull] = ACTIONS(4387), - [anon_sym_mutable] = ACTIONS(4387), - [anon_sym_constinit] = ACTIONS(4387), - [anon_sym_consteval] = ACTIONS(4387), - [anon_sym_alignas] = ACTIONS(4387), - [anon_sym__Alignas] = ACTIONS(4387), - [sym_primitive_type] = ACTIONS(4387), - [anon_sym_enum] = ACTIONS(4387), - [anon_sym_class] = ACTIONS(4387), - [anon_sym_struct] = ACTIONS(4387), - [anon_sym_union] = ACTIONS(4387), - [anon_sym_typename] = ACTIONS(4387), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4387), - [anon_sym_decltype] = ACTIONS(4387), - [anon_sym_explicit] = ACTIONS(4387), - [anon_sym_private] = ACTIONS(4387), - [anon_sym_template] = ACTIONS(4387), - [anon_sym_operator] = ACTIONS(4387), - [anon_sym_friend] = ACTIONS(4387), - [anon_sym_public] = ACTIONS(4387), - [anon_sym_protected] = ACTIONS(4387), - [anon_sym_static_assert] = ACTIONS(4387), - [anon_sym_LBRACK_COLON] = ACTIONS(4389), - }, - [STATE(3275)] = { - [sym_template_argument_list] = STATE(3663), - [sym_identifier] = ACTIONS(7371), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_TILDE] = ACTIONS(5657), - [anon_sym_STAR] = ACTIONS(5657), - [anon_sym_PIPE_PIPE] = ACTIONS(5657), - [anon_sym_AMP_AMP] = ACTIONS(5657), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_LT] = ACTIONS(9099), - [anon_sym___extension__] = ACTIONS(7371), - [anon_sym_virtual] = ACTIONS(7371), - [anon_sym_extern] = ACTIONS(7371), - [anon_sym___attribute__] = ACTIONS(7371), - [anon_sym___attribute] = ACTIONS(7371), - [anon_sym_using] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5657), - [anon_sym___declspec] = ACTIONS(7371), - [anon_sym___based] = ACTIONS(7371), - [anon_sym___cdecl] = ACTIONS(7371), - [anon_sym___clrcall] = ACTIONS(7371), - [anon_sym___stdcall] = ACTIONS(7371), - [anon_sym___fastcall] = ACTIONS(7371), - [anon_sym___thiscall] = ACTIONS(7371), - [anon_sym___vectorcall] = ACTIONS(7371), - [anon_sym_signed] = ACTIONS(7371), - [anon_sym_unsigned] = ACTIONS(7371), - [anon_sym_long] = ACTIONS(7371), - [anon_sym_short] = ACTIONS(7371), - [anon_sym_LBRACK] = ACTIONS(7371), - [anon_sym_static] = ACTIONS(7371), - [anon_sym_register] = ACTIONS(7371), - [anon_sym_inline] = ACTIONS(7371), - [anon_sym___inline] = ACTIONS(7371), - [anon_sym___inline__] = ACTIONS(7371), - [anon_sym___forceinline] = ACTIONS(7371), - [anon_sym_thread_local] = ACTIONS(7371), - [anon_sym___thread] = ACTIONS(7371), - [anon_sym_const] = ACTIONS(7371), - [anon_sym_constexpr] = ACTIONS(7371), - [anon_sym_volatile] = ACTIONS(7371), - [anon_sym_restrict] = ACTIONS(7371), - [anon_sym___restrict__] = ACTIONS(7371), - [anon_sym__Atomic] = ACTIONS(7371), - [anon_sym__Noreturn] = ACTIONS(7371), - [anon_sym_noreturn] = ACTIONS(7371), - [anon_sym__Nonnull] = ACTIONS(7371), - [anon_sym_mutable] = ACTIONS(7371), - [anon_sym_constinit] = ACTIONS(7371), - [anon_sym_consteval] = ACTIONS(7371), - [anon_sym_alignas] = ACTIONS(7371), - [anon_sym__Alignas] = ACTIONS(7371), - [sym_primitive_type] = ACTIONS(7371), - [anon_sym_enum] = ACTIONS(7371), - [anon_sym_class] = ACTIONS(7371), - [anon_sym_struct] = ACTIONS(7371), - [anon_sym_union] = ACTIONS(7371), - [anon_sym_or] = ACTIONS(7371), - [anon_sym_and] = ACTIONS(7371), - [anon_sym_typename] = ACTIONS(7371), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7371), - [anon_sym_decltype] = ACTIONS(7371), - [anon_sym_explicit] = ACTIONS(7371), - [anon_sym_template] = ACTIONS(7371), - [anon_sym_operator] = ACTIONS(7371), - [anon_sym_friend] = ACTIONS(7371), - [anon_sym_concept] = ACTIONS(7371), - [anon_sym_LBRACK_COLON] = ACTIONS(5657), - }, - [STATE(3276)] = { - [sym_identifier] = ACTIONS(8770), - [aux_sym_preproc_def_token1] = ACTIONS(8770), - [aux_sym_preproc_if_token1] = ACTIONS(8770), - [aux_sym_preproc_if_token2] = ACTIONS(8770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8770), - [sym_preproc_directive] = ACTIONS(8770), - [anon_sym_LPAREN2] = ACTIONS(8772), - [anon_sym_TILDE] = ACTIONS(8772), - [anon_sym_STAR] = ACTIONS(8772), - [anon_sym_AMP_AMP] = ACTIONS(8772), - [anon_sym_AMP] = ACTIONS(8770), - [anon_sym_SEMI] = ACTIONS(8772), - [anon_sym___extension__] = ACTIONS(8770), - [anon_sym_typedef] = ACTIONS(8770), - [anon_sym_virtual] = ACTIONS(8770), - [anon_sym_extern] = ACTIONS(8770), - [anon_sym___attribute__] = ACTIONS(8770), - [anon_sym___attribute] = ACTIONS(8770), - [anon_sym_using] = ACTIONS(8770), - [anon_sym_COLON_COLON] = ACTIONS(8772), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8772), - [anon_sym___declspec] = ACTIONS(8770), - [anon_sym___based] = ACTIONS(8770), - [anon_sym_signed] = ACTIONS(8770), - [anon_sym_unsigned] = ACTIONS(8770), - [anon_sym_long] = ACTIONS(8770), - [anon_sym_short] = ACTIONS(8770), - [anon_sym_LBRACK] = ACTIONS(8770), - [anon_sym_static] = ACTIONS(8770), - [anon_sym_register] = ACTIONS(8770), - [anon_sym_inline] = ACTIONS(8770), - [anon_sym___inline] = ACTIONS(8770), - [anon_sym___inline__] = ACTIONS(8770), - [anon_sym___forceinline] = ACTIONS(8770), - [anon_sym_thread_local] = ACTIONS(8770), - [anon_sym___thread] = ACTIONS(8770), - [anon_sym_const] = ACTIONS(8770), - [anon_sym_constexpr] = ACTIONS(8770), - [anon_sym_volatile] = ACTIONS(8770), - [anon_sym_restrict] = ACTIONS(8770), - [anon_sym___restrict__] = ACTIONS(8770), - [anon_sym__Atomic] = ACTIONS(8770), - [anon_sym__Noreturn] = ACTIONS(8770), - [anon_sym_noreturn] = ACTIONS(8770), - [anon_sym__Nonnull] = ACTIONS(8770), - [anon_sym_mutable] = ACTIONS(8770), - [anon_sym_constinit] = ACTIONS(8770), - [anon_sym_consteval] = ACTIONS(8770), - [anon_sym_alignas] = ACTIONS(8770), - [anon_sym__Alignas] = ACTIONS(8770), - [sym_primitive_type] = ACTIONS(8770), - [anon_sym_enum] = ACTIONS(8770), - [anon_sym_class] = ACTIONS(8770), - [anon_sym_struct] = ACTIONS(8770), - [anon_sym_union] = ACTIONS(8770), - [anon_sym_typename] = ACTIONS(8770), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8770), - [anon_sym_decltype] = ACTIONS(8770), - [anon_sym_explicit] = ACTIONS(8770), - [anon_sym_private] = ACTIONS(8770), - [anon_sym_template] = ACTIONS(8770), - [anon_sym_operator] = ACTIONS(8770), - [anon_sym_friend] = ACTIONS(8770), - [anon_sym_public] = ACTIONS(8770), - [anon_sym_protected] = ACTIONS(8770), - [anon_sym_static_assert] = ACTIONS(8770), - [anon_sym_LBRACK_COLON] = ACTIONS(8772), - }, - [STATE(3277)] = { - [sym_identifier] = ACTIONS(8774), - [aux_sym_preproc_def_token1] = ACTIONS(8774), - [aux_sym_preproc_if_token1] = ACTIONS(8774), - [aux_sym_preproc_if_token2] = ACTIONS(8774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8774), - [sym_preproc_directive] = ACTIONS(8774), - [anon_sym_LPAREN2] = ACTIONS(8776), - [anon_sym_TILDE] = ACTIONS(8776), - [anon_sym_STAR] = ACTIONS(8776), - [anon_sym_AMP_AMP] = ACTIONS(8776), - [anon_sym_AMP] = ACTIONS(8774), - [anon_sym_SEMI] = ACTIONS(8776), - [anon_sym___extension__] = ACTIONS(8774), - [anon_sym_typedef] = ACTIONS(8774), - [anon_sym_virtual] = ACTIONS(8774), - [anon_sym_extern] = ACTIONS(8774), - [anon_sym___attribute__] = ACTIONS(8774), - [anon_sym___attribute] = ACTIONS(8774), - [anon_sym_using] = ACTIONS(8774), - [anon_sym_COLON_COLON] = ACTIONS(8776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8776), - [anon_sym___declspec] = ACTIONS(8774), - [anon_sym___based] = ACTIONS(8774), - [anon_sym_signed] = ACTIONS(8774), - [anon_sym_unsigned] = ACTIONS(8774), - [anon_sym_long] = ACTIONS(8774), - [anon_sym_short] = ACTIONS(8774), - [anon_sym_LBRACK] = ACTIONS(8774), - [anon_sym_static] = ACTIONS(8774), - [anon_sym_register] = ACTIONS(8774), - [anon_sym_inline] = ACTIONS(8774), - [anon_sym___inline] = ACTIONS(8774), - [anon_sym___inline__] = ACTIONS(8774), - [anon_sym___forceinline] = ACTIONS(8774), - [anon_sym_thread_local] = ACTIONS(8774), - [anon_sym___thread] = ACTIONS(8774), - [anon_sym_const] = ACTIONS(8774), - [anon_sym_constexpr] = ACTIONS(8774), - [anon_sym_volatile] = ACTIONS(8774), - [anon_sym_restrict] = ACTIONS(8774), - [anon_sym___restrict__] = ACTIONS(8774), - [anon_sym__Atomic] = ACTIONS(8774), - [anon_sym__Noreturn] = ACTIONS(8774), - [anon_sym_noreturn] = ACTIONS(8774), - [anon_sym__Nonnull] = ACTIONS(8774), - [anon_sym_mutable] = ACTIONS(8774), - [anon_sym_constinit] = ACTIONS(8774), - [anon_sym_consteval] = ACTIONS(8774), - [anon_sym_alignas] = ACTIONS(8774), - [anon_sym__Alignas] = ACTIONS(8774), - [sym_primitive_type] = ACTIONS(8774), - [anon_sym_enum] = ACTIONS(8774), - [anon_sym_class] = ACTIONS(8774), - [anon_sym_struct] = ACTIONS(8774), - [anon_sym_union] = ACTIONS(8774), - [anon_sym_typename] = ACTIONS(8774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8774), - [anon_sym_decltype] = ACTIONS(8774), - [anon_sym_explicit] = ACTIONS(8774), - [anon_sym_private] = ACTIONS(8774), - [anon_sym_template] = ACTIONS(8774), - [anon_sym_operator] = ACTIONS(8774), - [anon_sym_friend] = ACTIONS(8774), - [anon_sym_public] = ACTIONS(8774), - [anon_sym_protected] = ACTIONS(8774), - [anon_sym_static_assert] = ACTIONS(8774), - [anon_sym_LBRACK_COLON] = ACTIONS(8776), - }, - [STATE(3278)] = { - [sym_identifier] = ACTIONS(8782), - [aux_sym_preproc_def_token1] = ACTIONS(8782), - [aux_sym_preproc_if_token1] = ACTIONS(8782), - [aux_sym_preproc_if_token2] = ACTIONS(8782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8782), - [sym_preproc_directive] = ACTIONS(8782), - [anon_sym_LPAREN2] = ACTIONS(8784), - [anon_sym_TILDE] = ACTIONS(8784), - [anon_sym_STAR] = ACTIONS(8784), - [anon_sym_AMP_AMP] = ACTIONS(8784), - [anon_sym_AMP] = ACTIONS(8782), - [anon_sym_SEMI] = ACTIONS(8784), - [anon_sym___extension__] = ACTIONS(8782), - [anon_sym_typedef] = ACTIONS(8782), - [anon_sym_virtual] = ACTIONS(8782), - [anon_sym_extern] = ACTIONS(8782), - [anon_sym___attribute__] = ACTIONS(8782), - [anon_sym___attribute] = ACTIONS(8782), - [anon_sym_using] = ACTIONS(8782), - [anon_sym_COLON_COLON] = ACTIONS(8784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8784), - [anon_sym___declspec] = ACTIONS(8782), - [anon_sym___based] = ACTIONS(8782), - [anon_sym_signed] = ACTIONS(8782), - [anon_sym_unsigned] = ACTIONS(8782), - [anon_sym_long] = ACTIONS(8782), - [anon_sym_short] = ACTIONS(8782), - [anon_sym_LBRACK] = ACTIONS(8782), - [anon_sym_static] = ACTIONS(8782), - [anon_sym_register] = ACTIONS(8782), - [anon_sym_inline] = ACTIONS(8782), - [anon_sym___inline] = ACTIONS(8782), - [anon_sym___inline__] = ACTIONS(8782), - [anon_sym___forceinline] = ACTIONS(8782), - [anon_sym_thread_local] = ACTIONS(8782), - [anon_sym___thread] = ACTIONS(8782), - [anon_sym_const] = ACTIONS(8782), - [anon_sym_constexpr] = ACTIONS(8782), - [anon_sym_volatile] = ACTIONS(8782), - [anon_sym_restrict] = ACTIONS(8782), - [anon_sym___restrict__] = ACTIONS(8782), - [anon_sym__Atomic] = ACTIONS(8782), - [anon_sym__Noreturn] = ACTIONS(8782), - [anon_sym_noreturn] = ACTIONS(8782), - [anon_sym__Nonnull] = ACTIONS(8782), - [anon_sym_mutable] = ACTIONS(8782), - [anon_sym_constinit] = ACTIONS(8782), - [anon_sym_consteval] = ACTIONS(8782), - [anon_sym_alignas] = ACTIONS(8782), - [anon_sym__Alignas] = ACTIONS(8782), - [sym_primitive_type] = ACTIONS(8782), - [anon_sym_enum] = ACTIONS(8782), - [anon_sym_class] = ACTIONS(8782), - [anon_sym_struct] = ACTIONS(8782), - [anon_sym_union] = ACTIONS(8782), - [anon_sym_typename] = ACTIONS(8782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8782), - [anon_sym_decltype] = ACTIONS(8782), - [anon_sym_explicit] = ACTIONS(8782), - [anon_sym_private] = ACTIONS(8782), - [anon_sym_template] = ACTIONS(8782), - [anon_sym_operator] = ACTIONS(8782), - [anon_sym_friend] = ACTIONS(8782), - [anon_sym_public] = ACTIONS(8782), - [anon_sym_protected] = ACTIONS(8782), - [anon_sym_static_assert] = ACTIONS(8782), - [anon_sym_LBRACK_COLON] = ACTIONS(8784), - }, - [STATE(3279)] = { - [sym_identifier] = ACTIONS(8786), - [aux_sym_preproc_def_token1] = ACTIONS(8786), - [aux_sym_preproc_if_token1] = ACTIONS(8786), - [aux_sym_preproc_if_token2] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), - [sym_preproc_directive] = ACTIONS(8786), - [anon_sym_LPAREN2] = ACTIONS(8788), - [anon_sym_TILDE] = ACTIONS(8788), - [anon_sym_STAR] = ACTIONS(8788), - [anon_sym_AMP_AMP] = ACTIONS(8788), - [anon_sym_AMP] = ACTIONS(8786), - [anon_sym_SEMI] = ACTIONS(8788), - [anon_sym___extension__] = ACTIONS(8786), - [anon_sym_typedef] = ACTIONS(8786), - [anon_sym_virtual] = ACTIONS(8786), - [anon_sym_extern] = ACTIONS(8786), - [anon_sym___attribute__] = ACTIONS(8786), - [anon_sym___attribute] = ACTIONS(8786), - [anon_sym_using] = ACTIONS(8786), - [anon_sym_COLON_COLON] = ACTIONS(8788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), - [anon_sym___declspec] = ACTIONS(8786), - [anon_sym___based] = ACTIONS(8786), - [anon_sym_signed] = ACTIONS(8786), - [anon_sym_unsigned] = ACTIONS(8786), - [anon_sym_long] = ACTIONS(8786), - [anon_sym_short] = ACTIONS(8786), - [anon_sym_LBRACK] = ACTIONS(8786), - [anon_sym_static] = ACTIONS(8786), - [anon_sym_register] = ACTIONS(8786), - [anon_sym_inline] = ACTIONS(8786), - [anon_sym___inline] = ACTIONS(8786), - [anon_sym___inline__] = ACTIONS(8786), - [anon_sym___forceinline] = ACTIONS(8786), - [anon_sym_thread_local] = ACTIONS(8786), - [anon_sym___thread] = ACTIONS(8786), - [anon_sym_const] = ACTIONS(8786), - [anon_sym_constexpr] = ACTIONS(8786), - [anon_sym_volatile] = ACTIONS(8786), - [anon_sym_restrict] = ACTIONS(8786), - [anon_sym___restrict__] = ACTIONS(8786), - [anon_sym__Atomic] = ACTIONS(8786), - [anon_sym__Noreturn] = ACTIONS(8786), - [anon_sym_noreturn] = ACTIONS(8786), - [anon_sym__Nonnull] = ACTIONS(8786), - [anon_sym_mutable] = ACTIONS(8786), - [anon_sym_constinit] = ACTIONS(8786), - [anon_sym_consteval] = ACTIONS(8786), - [anon_sym_alignas] = ACTIONS(8786), - [anon_sym__Alignas] = ACTIONS(8786), - [sym_primitive_type] = ACTIONS(8786), - [anon_sym_enum] = ACTIONS(8786), - [anon_sym_class] = ACTIONS(8786), - [anon_sym_struct] = ACTIONS(8786), - [anon_sym_union] = ACTIONS(8786), - [anon_sym_typename] = ACTIONS(8786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8786), - [anon_sym_decltype] = ACTIONS(8786), - [anon_sym_explicit] = ACTIONS(8786), - [anon_sym_private] = ACTIONS(8786), - [anon_sym_template] = ACTIONS(8786), - [anon_sym_operator] = ACTIONS(8786), - [anon_sym_friend] = ACTIONS(8786), - [anon_sym_public] = ACTIONS(8786), - [anon_sym_protected] = ACTIONS(8786), - [anon_sym_static_assert] = ACTIONS(8786), - [anon_sym_LBRACK_COLON] = ACTIONS(8788), - }, - [STATE(3280)] = { - [sym_identifier] = ACTIONS(8794), - [aux_sym_preproc_def_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token2] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), - [sym_preproc_directive] = ACTIONS(8794), - [anon_sym_LPAREN2] = ACTIONS(8796), - [anon_sym_TILDE] = ACTIONS(8796), - [anon_sym_STAR] = ACTIONS(8796), - [anon_sym_AMP_AMP] = ACTIONS(8796), - [anon_sym_AMP] = ACTIONS(8794), - [anon_sym_SEMI] = ACTIONS(8796), - [anon_sym___extension__] = ACTIONS(8794), - [anon_sym_typedef] = ACTIONS(8794), - [anon_sym_virtual] = ACTIONS(8794), - [anon_sym_extern] = ACTIONS(8794), - [anon_sym___attribute__] = ACTIONS(8794), - [anon_sym___attribute] = ACTIONS(8794), - [anon_sym_using] = ACTIONS(8794), - [anon_sym_COLON_COLON] = ACTIONS(8796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), - [anon_sym___declspec] = ACTIONS(8794), - [anon_sym___based] = ACTIONS(8794), - [anon_sym_signed] = ACTIONS(8794), - [anon_sym_unsigned] = ACTIONS(8794), - [anon_sym_long] = ACTIONS(8794), - [anon_sym_short] = ACTIONS(8794), - [anon_sym_LBRACK] = ACTIONS(8794), - [anon_sym_static] = ACTIONS(8794), - [anon_sym_register] = ACTIONS(8794), - [anon_sym_inline] = ACTIONS(8794), - [anon_sym___inline] = ACTIONS(8794), - [anon_sym___inline__] = ACTIONS(8794), - [anon_sym___forceinline] = ACTIONS(8794), - [anon_sym_thread_local] = ACTIONS(8794), - [anon_sym___thread] = ACTIONS(8794), - [anon_sym_const] = ACTIONS(8794), - [anon_sym_constexpr] = ACTIONS(8794), - [anon_sym_volatile] = ACTIONS(8794), - [anon_sym_restrict] = ACTIONS(8794), - [anon_sym___restrict__] = ACTIONS(8794), - [anon_sym__Atomic] = ACTIONS(8794), - [anon_sym__Noreturn] = ACTIONS(8794), - [anon_sym_noreturn] = ACTIONS(8794), - [anon_sym__Nonnull] = ACTIONS(8794), - [anon_sym_mutable] = ACTIONS(8794), - [anon_sym_constinit] = ACTIONS(8794), - [anon_sym_consteval] = ACTIONS(8794), - [anon_sym_alignas] = ACTIONS(8794), - [anon_sym__Alignas] = ACTIONS(8794), - [sym_primitive_type] = ACTIONS(8794), - [anon_sym_enum] = ACTIONS(8794), - [anon_sym_class] = ACTIONS(8794), - [anon_sym_struct] = ACTIONS(8794), - [anon_sym_union] = ACTIONS(8794), - [anon_sym_typename] = ACTIONS(8794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8794), - [anon_sym_decltype] = ACTIONS(8794), - [anon_sym_explicit] = ACTIONS(8794), - [anon_sym_private] = ACTIONS(8794), - [anon_sym_template] = ACTIONS(8794), - [anon_sym_operator] = ACTIONS(8794), - [anon_sym_friend] = ACTIONS(8794), - [anon_sym_public] = ACTIONS(8794), - [anon_sym_protected] = ACTIONS(8794), - [anon_sym_static_assert] = ACTIONS(8794), - [anon_sym_LBRACK_COLON] = ACTIONS(8796), - }, - [STATE(3281)] = { - [sym_identifier] = ACTIONS(8794), - [aux_sym_preproc_def_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token2] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), - [sym_preproc_directive] = ACTIONS(8794), - [anon_sym_LPAREN2] = ACTIONS(8796), - [anon_sym_TILDE] = ACTIONS(8796), - [anon_sym_STAR] = ACTIONS(8796), - [anon_sym_AMP_AMP] = ACTIONS(8796), - [anon_sym_AMP] = ACTIONS(8794), - [anon_sym_SEMI] = ACTIONS(8796), - [anon_sym___extension__] = ACTIONS(8794), - [anon_sym_typedef] = ACTIONS(8794), - [anon_sym_virtual] = ACTIONS(8794), - [anon_sym_extern] = ACTIONS(8794), - [anon_sym___attribute__] = ACTIONS(8794), - [anon_sym___attribute] = ACTIONS(8794), - [anon_sym_using] = ACTIONS(8794), - [anon_sym_COLON_COLON] = ACTIONS(8796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), - [anon_sym___declspec] = ACTIONS(8794), - [anon_sym___based] = ACTIONS(8794), - [anon_sym_signed] = ACTIONS(8794), - [anon_sym_unsigned] = ACTIONS(8794), - [anon_sym_long] = ACTIONS(8794), - [anon_sym_short] = ACTIONS(8794), - [anon_sym_LBRACK] = ACTIONS(8794), - [anon_sym_static] = ACTIONS(8794), - [anon_sym_register] = ACTIONS(8794), - [anon_sym_inline] = ACTIONS(8794), - [anon_sym___inline] = ACTIONS(8794), - [anon_sym___inline__] = ACTIONS(8794), - [anon_sym___forceinline] = ACTIONS(8794), - [anon_sym_thread_local] = ACTIONS(8794), - [anon_sym___thread] = ACTIONS(8794), - [anon_sym_const] = ACTIONS(8794), - [anon_sym_constexpr] = ACTIONS(8794), - [anon_sym_volatile] = ACTIONS(8794), - [anon_sym_restrict] = ACTIONS(8794), - [anon_sym___restrict__] = ACTIONS(8794), - [anon_sym__Atomic] = ACTIONS(8794), - [anon_sym__Noreturn] = ACTIONS(8794), - [anon_sym_noreturn] = ACTIONS(8794), - [anon_sym__Nonnull] = ACTIONS(8794), - [anon_sym_mutable] = ACTIONS(8794), - [anon_sym_constinit] = ACTIONS(8794), - [anon_sym_consteval] = ACTIONS(8794), - [anon_sym_alignas] = ACTIONS(8794), - [anon_sym__Alignas] = ACTIONS(8794), - [sym_primitive_type] = ACTIONS(8794), - [anon_sym_enum] = ACTIONS(8794), - [anon_sym_class] = ACTIONS(8794), - [anon_sym_struct] = ACTIONS(8794), - [anon_sym_union] = ACTIONS(8794), - [anon_sym_typename] = ACTIONS(8794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8794), - [anon_sym_decltype] = ACTIONS(8794), - [anon_sym_explicit] = ACTIONS(8794), - [anon_sym_private] = ACTIONS(8794), - [anon_sym_template] = ACTIONS(8794), - [anon_sym_operator] = ACTIONS(8794), - [anon_sym_friend] = ACTIONS(8794), - [anon_sym_public] = ACTIONS(8794), - [anon_sym_protected] = ACTIONS(8794), - [anon_sym_static_assert] = ACTIONS(8794), - [anon_sym_LBRACK_COLON] = ACTIONS(8796), - }, - [STATE(3282)] = { - [sym_identifier] = ACTIONS(8794), - [aux_sym_preproc_def_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token2] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), - [sym_preproc_directive] = ACTIONS(8794), - [anon_sym_LPAREN2] = ACTIONS(8796), - [anon_sym_TILDE] = ACTIONS(8796), - [anon_sym_STAR] = ACTIONS(8796), - [anon_sym_AMP_AMP] = ACTIONS(8796), - [anon_sym_AMP] = ACTIONS(8794), - [anon_sym_SEMI] = ACTIONS(8796), - [anon_sym___extension__] = ACTIONS(8794), - [anon_sym_typedef] = ACTIONS(8794), - [anon_sym_virtual] = ACTIONS(8794), - [anon_sym_extern] = ACTIONS(8794), - [anon_sym___attribute__] = ACTIONS(8794), - [anon_sym___attribute] = ACTIONS(8794), - [anon_sym_using] = ACTIONS(8794), - [anon_sym_COLON_COLON] = ACTIONS(8796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), - [anon_sym___declspec] = ACTIONS(8794), - [anon_sym___based] = ACTIONS(8794), - [anon_sym_signed] = ACTIONS(8794), - [anon_sym_unsigned] = ACTIONS(8794), - [anon_sym_long] = ACTIONS(8794), - [anon_sym_short] = ACTIONS(8794), - [anon_sym_LBRACK] = ACTIONS(8794), - [anon_sym_static] = ACTIONS(8794), - [anon_sym_register] = ACTIONS(8794), - [anon_sym_inline] = ACTIONS(8794), - [anon_sym___inline] = ACTIONS(8794), - [anon_sym___inline__] = ACTIONS(8794), - [anon_sym___forceinline] = ACTIONS(8794), - [anon_sym_thread_local] = ACTIONS(8794), - [anon_sym___thread] = ACTIONS(8794), - [anon_sym_const] = ACTIONS(8794), - [anon_sym_constexpr] = ACTIONS(8794), - [anon_sym_volatile] = ACTIONS(8794), - [anon_sym_restrict] = ACTIONS(8794), - [anon_sym___restrict__] = ACTIONS(8794), - [anon_sym__Atomic] = ACTIONS(8794), - [anon_sym__Noreturn] = ACTIONS(8794), - [anon_sym_noreturn] = ACTIONS(8794), - [anon_sym__Nonnull] = ACTIONS(8794), - [anon_sym_mutable] = ACTIONS(8794), - [anon_sym_constinit] = ACTIONS(8794), - [anon_sym_consteval] = ACTIONS(8794), - [anon_sym_alignas] = ACTIONS(8794), - [anon_sym__Alignas] = ACTIONS(8794), - [sym_primitive_type] = ACTIONS(8794), - [anon_sym_enum] = ACTIONS(8794), - [anon_sym_class] = ACTIONS(8794), - [anon_sym_struct] = ACTIONS(8794), - [anon_sym_union] = ACTIONS(8794), - [anon_sym_typename] = ACTIONS(8794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8794), - [anon_sym_decltype] = ACTIONS(8794), - [anon_sym_explicit] = ACTIONS(8794), - [anon_sym_private] = ACTIONS(8794), - [anon_sym_template] = ACTIONS(8794), - [anon_sym_operator] = ACTIONS(8794), - [anon_sym_friend] = ACTIONS(8794), - [anon_sym_public] = ACTIONS(8794), - [anon_sym_protected] = ACTIONS(8794), - [anon_sym_static_assert] = ACTIONS(8794), - [anon_sym_LBRACK_COLON] = ACTIONS(8796), - }, - [STATE(3283)] = { - [sym_identifier] = ACTIONS(8786), - [aux_sym_preproc_def_token1] = ACTIONS(8786), - [aux_sym_preproc_if_token1] = ACTIONS(8786), - [aux_sym_preproc_if_token2] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), - [sym_preproc_directive] = ACTIONS(8786), - [anon_sym_LPAREN2] = ACTIONS(8788), - [anon_sym_TILDE] = ACTIONS(8788), - [anon_sym_STAR] = ACTIONS(8788), - [anon_sym_AMP_AMP] = ACTIONS(8788), - [anon_sym_AMP] = ACTIONS(8786), - [anon_sym_SEMI] = ACTIONS(8788), - [anon_sym___extension__] = ACTIONS(8786), - [anon_sym_typedef] = ACTIONS(8786), - [anon_sym_virtual] = ACTIONS(8786), - [anon_sym_extern] = ACTIONS(8786), - [anon_sym___attribute__] = ACTIONS(8786), - [anon_sym___attribute] = ACTIONS(8786), - [anon_sym_using] = ACTIONS(8786), - [anon_sym_COLON_COLON] = ACTIONS(8788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), - [anon_sym___declspec] = ACTIONS(8786), - [anon_sym___based] = ACTIONS(8786), - [anon_sym_signed] = ACTIONS(8786), - [anon_sym_unsigned] = ACTIONS(8786), - [anon_sym_long] = ACTIONS(8786), - [anon_sym_short] = ACTIONS(8786), - [anon_sym_LBRACK] = ACTIONS(8786), - [anon_sym_static] = ACTIONS(8786), - [anon_sym_register] = ACTIONS(8786), - [anon_sym_inline] = ACTIONS(8786), - [anon_sym___inline] = ACTIONS(8786), - [anon_sym___inline__] = ACTIONS(8786), - [anon_sym___forceinline] = ACTIONS(8786), - [anon_sym_thread_local] = ACTIONS(8786), - [anon_sym___thread] = ACTIONS(8786), - [anon_sym_const] = ACTIONS(8786), - [anon_sym_constexpr] = ACTIONS(8786), - [anon_sym_volatile] = ACTIONS(8786), - [anon_sym_restrict] = ACTIONS(8786), - [anon_sym___restrict__] = ACTIONS(8786), - [anon_sym__Atomic] = ACTIONS(8786), - [anon_sym__Noreturn] = ACTIONS(8786), - [anon_sym_noreturn] = ACTIONS(8786), - [anon_sym__Nonnull] = ACTIONS(8786), - [anon_sym_mutable] = ACTIONS(8786), - [anon_sym_constinit] = ACTIONS(8786), - [anon_sym_consteval] = ACTIONS(8786), - [anon_sym_alignas] = ACTIONS(8786), - [anon_sym__Alignas] = ACTIONS(8786), - [sym_primitive_type] = ACTIONS(8786), - [anon_sym_enum] = ACTIONS(8786), - [anon_sym_class] = ACTIONS(8786), - [anon_sym_struct] = ACTIONS(8786), - [anon_sym_union] = ACTIONS(8786), - [anon_sym_typename] = ACTIONS(8786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8786), - [anon_sym_decltype] = ACTIONS(8786), - [anon_sym_explicit] = ACTIONS(8786), - [anon_sym_private] = ACTIONS(8786), - [anon_sym_template] = ACTIONS(8786), - [anon_sym_operator] = ACTIONS(8786), - [anon_sym_friend] = ACTIONS(8786), - [anon_sym_public] = ACTIONS(8786), - [anon_sym_protected] = ACTIONS(8786), - [anon_sym_static_assert] = ACTIONS(8786), - [anon_sym_LBRACK_COLON] = ACTIONS(8788), - }, - [STATE(3284)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3295), - [sym_identifier] = ACTIONS(7675), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), - [anon_sym_COMMA] = ACTIONS(7677), - [aux_sym_preproc_if_token2] = ACTIONS(7677), - [aux_sym_preproc_else_token1] = ACTIONS(7677), - [aux_sym_preproc_elif_token1] = ACTIONS(7675), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7677), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7677), - [anon_sym_LPAREN2] = ACTIONS(7677), - [anon_sym_DASH] = ACTIONS(7675), - [anon_sym_PLUS] = ACTIONS(7675), - [anon_sym_STAR] = ACTIONS(7677), - [anon_sym_SLASH] = ACTIONS(7675), - [anon_sym_PERCENT] = ACTIONS(7677), - [anon_sym_PIPE_PIPE] = ACTIONS(7677), - [anon_sym_AMP_AMP] = ACTIONS(7677), - [anon_sym_PIPE] = ACTIONS(7675), - [anon_sym_CARET] = ACTIONS(7677), - [anon_sym_AMP] = ACTIONS(7675), - [anon_sym_EQ_EQ] = ACTIONS(7677), - [anon_sym_BANG_EQ] = ACTIONS(7677), - [anon_sym_GT] = ACTIONS(7675), - [anon_sym_GT_EQ] = ACTIONS(7677), - [anon_sym_LT_EQ] = ACTIONS(7675), - [anon_sym_LT] = ACTIONS(7675), - [anon_sym_LT_LT] = ACTIONS(7677), - [anon_sym_GT_GT] = ACTIONS(7677), - [anon_sym___extension__] = ACTIONS(7675), - [anon_sym___attribute__] = ACTIONS(7675), - [anon_sym___attribute] = ACTIONS(7675), - [anon_sym_LBRACE] = ACTIONS(7677), - [anon_sym_signed] = ACTIONS(9101), - [anon_sym_unsigned] = ACTIONS(9101), - [anon_sym_long] = ACTIONS(9101), - [anon_sym_short] = ACTIONS(9101), - [anon_sym_LBRACK] = ACTIONS(7677), - [anon_sym_RBRACK] = ACTIONS(7677), - [anon_sym_const] = ACTIONS(7675), - [anon_sym_constexpr] = ACTIONS(7675), - [anon_sym_volatile] = ACTIONS(7675), - [anon_sym_restrict] = ACTIONS(7675), - [anon_sym___restrict__] = ACTIONS(7675), - [anon_sym__Atomic] = ACTIONS(7675), - [anon_sym__Noreturn] = ACTIONS(7675), - [anon_sym_noreturn] = ACTIONS(7675), - [anon_sym__Nonnull] = ACTIONS(7675), - [anon_sym_mutable] = ACTIONS(7675), - [anon_sym_constinit] = ACTIONS(7675), - [anon_sym_consteval] = ACTIONS(7675), - [anon_sym_alignas] = ACTIONS(7675), - [anon_sym__Alignas] = ACTIONS(7675), - [anon_sym_QMARK] = ACTIONS(7677), - [anon_sym_LT_EQ_GT] = ACTIONS(7677), - [anon_sym_or] = ACTIONS(7675), - [anon_sym_and] = ACTIONS(7675), - [anon_sym_bitor] = ACTIONS(7675), - [anon_sym_xor] = ACTIONS(7675), - [anon_sym_bitand] = ACTIONS(7675), - [anon_sym_not_eq] = ACTIONS(7675), - [anon_sym_DASH_DASH] = ACTIONS(7677), - [anon_sym_PLUS_PLUS] = ACTIONS(7677), - [anon_sym_DOT] = ACTIONS(7675), - [anon_sym_DOT_STAR] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(7677), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7675), - [anon_sym_override] = ACTIONS(7675), - [anon_sym_requires] = ACTIONS(7675), - }, - [STATE(3285)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3295), - [sym_identifier] = ACTIONS(7681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), - [anon_sym_COMMA] = ACTIONS(7683), - [aux_sym_preproc_if_token2] = ACTIONS(7683), - [aux_sym_preproc_else_token1] = ACTIONS(7683), - [aux_sym_preproc_elif_token1] = ACTIONS(7681), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7683), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7683), - [anon_sym_LPAREN2] = ACTIONS(7683), - [anon_sym_DASH] = ACTIONS(7681), - [anon_sym_PLUS] = ACTIONS(7681), - [anon_sym_STAR] = ACTIONS(7683), - [anon_sym_SLASH] = ACTIONS(7681), - [anon_sym_PERCENT] = ACTIONS(7683), - [anon_sym_PIPE_PIPE] = ACTIONS(7683), - [anon_sym_AMP_AMP] = ACTIONS(7683), - [anon_sym_PIPE] = ACTIONS(7681), - [anon_sym_CARET] = ACTIONS(7683), - [anon_sym_AMP] = ACTIONS(7681), - [anon_sym_EQ_EQ] = ACTIONS(7683), - [anon_sym_BANG_EQ] = ACTIONS(7683), - [anon_sym_GT] = ACTIONS(7681), - [anon_sym_GT_EQ] = ACTIONS(7683), - [anon_sym_LT_EQ] = ACTIONS(7681), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(7683), - [anon_sym_GT_GT] = ACTIONS(7683), - [anon_sym___extension__] = ACTIONS(7681), - [anon_sym___attribute__] = ACTIONS(7681), - [anon_sym___attribute] = ACTIONS(7681), - [anon_sym_LBRACE] = ACTIONS(7683), - [anon_sym_signed] = ACTIONS(9101), - [anon_sym_unsigned] = ACTIONS(9101), - [anon_sym_long] = ACTIONS(9101), - [anon_sym_short] = ACTIONS(9101), - [anon_sym_LBRACK] = ACTIONS(7683), - [anon_sym_RBRACK] = ACTIONS(7683), - [anon_sym_const] = ACTIONS(7681), - [anon_sym_constexpr] = ACTIONS(7681), - [anon_sym_volatile] = ACTIONS(7681), - [anon_sym_restrict] = ACTIONS(7681), - [anon_sym___restrict__] = ACTIONS(7681), - [anon_sym__Atomic] = ACTIONS(7681), - [anon_sym__Noreturn] = ACTIONS(7681), - [anon_sym_noreturn] = ACTIONS(7681), - [anon_sym__Nonnull] = ACTIONS(7681), - [anon_sym_mutable] = ACTIONS(7681), - [anon_sym_constinit] = ACTIONS(7681), - [anon_sym_consteval] = ACTIONS(7681), - [anon_sym_alignas] = ACTIONS(7681), - [anon_sym__Alignas] = ACTIONS(7681), - [anon_sym_QMARK] = ACTIONS(7683), - [anon_sym_LT_EQ_GT] = ACTIONS(7683), - [anon_sym_or] = ACTIONS(7681), - [anon_sym_and] = ACTIONS(7681), - [anon_sym_bitor] = ACTIONS(7681), - [anon_sym_xor] = ACTIONS(7681), - [anon_sym_bitand] = ACTIONS(7681), - [anon_sym_not_eq] = ACTIONS(7681), - [anon_sym_DASH_DASH] = ACTIONS(7683), - [anon_sym_PLUS_PLUS] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7681), - [anon_sym_DOT_STAR] = ACTIONS(7683), - [anon_sym_DASH_GT] = ACTIONS(7683), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7681), - [anon_sym_override] = ACTIONS(7681), - [anon_sym_requires] = ACTIONS(7681), - }, - [STATE(3286)] = { - [sym_identifier] = ACTIONS(8730), - [aux_sym_preproc_def_token1] = ACTIONS(8730), - [aux_sym_preproc_if_token1] = ACTIONS(8730), - [aux_sym_preproc_if_token2] = ACTIONS(8730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8730), - [sym_preproc_directive] = ACTIONS(8730), - [anon_sym_LPAREN2] = ACTIONS(8732), - [anon_sym_TILDE] = ACTIONS(8732), - [anon_sym_STAR] = ACTIONS(8732), - [anon_sym_AMP_AMP] = ACTIONS(8732), - [anon_sym_AMP] = ACTIONS(8730), - [anon_sym_SEMI] = ACTIONS(8732), - [anon_sym___extension__] = ACTIONS(8730), - [anon_sym_typedef] = ACTIONS(8730), - [anon_sym_virtual] = ACTIONS(8730), - [anon_sym_extern] = ACTIONS(8730), - [anon_sym___attribute__] = ACTIONS(8730), - [anon_sym___attribute] = ACTIONS(8730), - [anon_sym_using] = ACTIONS(8730), - [anon_sym_COLON_COLON] = ACTIONS(8732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8732), - [anon_sym___declspec] = ACTIONS(8730), - [anon_sym___based] = ACTIONS(8730), - [anon_sym_signed] = ACTIONS(8730), - [anon_sym_unsigned] = ACTIONS(8730), - [anon_sym_long] = ACTIONS(8730), - [anon_sym_short] = ACTIONS(8730), - [anon_sym_LBRACK] = ACTIONS(8730), - [anon_sym_static] = ACTIONS(8730), - [anon_sym_register] = ACTIONS(8730), - [anon_sym_inline] = ACTIONS(8730), - [anon_sym___inline] = ACTIONS(8730), - [anon_sym___inline__] = ACTIONS(8730), - [anon_sym___forceinline] = ACTIONS(8730), - [anon_sym_thread_local] = ACTIONS(8730), - [anon_sym___thread] = ACTIONS(8730), - [anon_sym_const] = ACTIONS(8730), - [anon_sym_constexpr] = ACTIONS(8730), - [anon_sym_volatile] = ACTIONS(8730), - [anon_sym_restrict] = ACTIONS(8730), - [anon_sym___restrict__] = ACTIONS(8730), - [anon_sym__Atomic] = ACTIONS(8730), - [anon_sym__Noreturn] = ACTIONS(8730), - [anon_sym_noreturn] = ACTIONS(8730), - [anon_sym__Nonnull] = ACTIONS(8730), - [anon_sym_mutable] = ACTIONS(8730), - [anon_sym_constinit] = ACTIONS(8730), - [anon_sym_consteval] = ACTIONS(8730), - [anon_sym_alignas] = ACTIONS(8730), - [anon_sym__Alignas] = ACTIONS(8730), - [sym_primitive_type] = ACTIONS(8730), - [anon_sym_enum] = ACTIONS(8730), - [anon_sym_class] = ACTIONS(8730), - [anon_sym_struct] = ACTIONS(8730), - [anon_sym_union] = ACTIONS(8730), - [anon_sym_typename] = ACTIONS(8730), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8730), - [anon_sym_decltype] = ACTIONS(8730), - [anon_sym_explicit] = ACTIONS(8730), - [anon_sym_private] = ACTIONS(8730), - [anon_sym_template] = ACTIONS(8730), - [anon_sym_operator] = ACTIONS(8730), - [anon_sym_friend] = ACTIONS(8730), - [anon_sym_public] = ACTIONS(8730), - [anon_sym_protected] = ACTIONS(8730), - [anon_sym_static_assert] = ACTIONS(8730), - [anon_sym_LBRACK_COLON] = ACTIONS(8732), - }, - [STATE(3287)] = { - [sym_identifier] = ACTIONS(8742), - [aux_sym_preproc_def_token1] = ACTIONS(8742), - [aux_sym_preproc_if_token1] = ACTIONS(8742), - [aux_sym_preproc_if_token2] = ACTIONS(8742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8742), - [sym_preproc_directive] = ACTIONS(8742), - [anon_sym_LPAREN2] = ACTIONS(8744), - [anon_sym_TILDE] = ACTIONS(8744), - [anon_sym_STAR] = ACTIONS(8744), - [anon_sym_AMP_AMP] = ACTIONS(8744), - [anon_sym_AMP] = ACTIONS(8742), - [anon_sym_SEMI] = ACTIONS(8744), - [anon_sym___extension__] = ACTIONS(8742), - [anon_sym_typedef] = ACTIONS(8742), - [anon_sym_virtual] = ACTIONS(8742), - [anon_sym_extern] = ACTIONS(8742), - [anon_sym___attribute__] = ACTIONS(8742), - [anon_sym___attribute] = ACTIONS(8742), - [anon_sym_using] = ACTIONS(8742), - [anon_sym_COLON_COLON] = ACTIONS(8744), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8744), - [anon_sym___declspec] = ACTIONS(8742), - [anon_sym___based] = ACTIONS(8742), - [anon_sym_signed] = ACTIONS(8742), - [anon_sym_unsigned] = ACTIONS(8742), - [anon_sym_long] = ACTIONS(8742), - [anon_sym_short] = ACTIONS(8742), - [anon_sym_LBRACK] = ACTIONS(8742), - [anon_sym_static] = ACTIONS(8742), - [anon_sym_register] = ACTIONS(8742), - [anon_sym_inline] = ACTIONS(8742), - [anon_sym___inline] = ACTIONS(8742), - [anon_sym___inline__] = ACTIONS(8742), - [anon_sym___forceinline] = ACTIONS(8742), - [anon_sym_thread_local] = ACTIONS(8742), - [anon_sym___thread] = ACTIONS(8742), - [anon_sym_const] = ACTIONS(8742), - [anon_sym_constexpr] = ACTIONS(8742), - [anon_sym_volatile] = ACTIONS(8742), - [anon_sym_restrict] = ACTIONS(8742), - [anon_sym___restrict__] = ACTIONS(8742), - [anon_sym__Atomic] = ACTIONS(8742), - [anon_sym__Noreturn] = ACTIONS(8742), - [anon_sym_noreturn] = ACTIONS(8742), - [anon_sym__Nonnull] = ACTIONS(8742), - [anon_sym_mutable] = ACTIONS(8742), - [anon_sym_constinit] = ACTIONS(8742), - [anon_sym_consteval] = ACTIONS(8742), - [anon_sym_alignas] = ACTIONS(8742), - [anon_sym__Alignas] = ACTIONS(8742), - [sym_primitive_type] = ACTIONS(8742), - [anon_sym_enum] = ACTIONS(8742), - [anon_sym_class] = ACTIONS(8742), - [anon_sym_struct] = ACTIONS(8742), - [anon_sym_union] = ACTIONS(8742), - [anon_sym_typename] = ACTIONS(8742), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8742), - [anon_sym_decltype] = ACTIONS(8742), - [anon_sym_explicit] = ACTIONS(8742), - [anon_sym_private] = ACTIONS(8742), - [anon_sym_template] = ACTIONS(8742), - [anon_sym_operator] = ACTIONS(8742), - [anon_sym_friend] = ACTIONS(8742), - [anon_sym_public] = ACTIONS(8742), - [anon_sym_protected] = ACTIONS(8742), - [anon_sym_static_assert] = ACTIONS(8742), - [anon_sym_LBRACK_COLON] = ACTIONS(8744), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_STAR_EQ] = ACTIONS(7753), + [anon_sym_SLASH_EQ] = ACTIONS(7753), + [anon_sym_PERCENT_EQ] = ACTIONS(7753), + [anon_sym_PLUS_EQ] = ACTIONS(7753), + [anon_sym_DASH_EQ] = ACTIONS(7753), + [anon_sym_LT_LT_EQ] = ACTIONS(7753), + [anon_sym_GT_GT_EQ] = ACTIONS(7751), + [anon_sym_AMP_EQ] = ACTIONS(7753), + [anon_sym_CARET_EQ] = ACTIONS(7753), + [anon_sym_PIPE_EQ] = ACTIONS(7753), + [anon_sym_and_eq] = ACTIONS(7753), + [anon_sym_or_eq] = ACTIONS(7753), + [anon_sym_xor_eq] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7751), + [anon_sym_and] = ACTIONS(7751), + [anon_sym_bitor] = ACTIONS(7753), + [anon_sym_xor] = ACTIONS(7751), + [anon_sym_bitand] = ACTIONS(7753), + [anon_sym_not_eq] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_DOT] = ACTIONS(7751), + [anon_sym_DOT_STAR] = ACTIONS(7753), + [anon_sym_DASH_GT] = ACTIONS(7753), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7753), + [anon_sym_override] = ACTIONS(7753), + [anon_sym_GT2] = ACTIONS(7753), + [anon_sym_requires] = ACTIONS(7753), }, - [STATE(3288)] = { - [sym_identifier] = ACTIONS(8746), - [aux_sym_preproc_def_token1] = ACTIONS(8746), - [aux_sym_preproc_if_token1] = ACTIONS(8746), - [aux_sym_preproc_if_token2] = ACTIONS(8746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8746), - [sym_preproc_directive] = ACTIONS(8746), - [anon_sym_LPAREN2] = ACTIONS(8748), - [anon_sym_TILDE] = ACTIONS(8748), - [anon_sym_STAR] = ACTIONS(8748), - [anon_sym_AMP_AMP] = ACTIONS(8748), - [anon_sym_AMP] = ACTIONS(8746), - [anon_sym_SEMI] = ACTIONS(8748), - [anon_sym___extension__] = ACTIONS(8746), - [anon_sym_typedef] = ACTIONS(8746), - [anon_sym_virtual] = ACTIONS(8746), - [anon_sym_extern] = ACTIONS(8746), - [anon_sym___attribute__] = ACTIONS(8746), - [anon_sym___attribute] = ACTIONS(8746), - [anon_sym_using] = ACTIONS(8746), - [anon_sym_COLON_COLON] = ACTIONS(8748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8748), - [anon_sym___declspec] = ACTIONS(8746), - [anon_sym___based] = ACTIONS(8746), - [anon_sym_signed] = ACTIONS(8746), - [anon_sym_unsigned] = ACTIONS(8746), - [anon_sym_long] = ACTIONS(8746), - [anon_sym_short] = ACTIONS(8746), - [anon_sym_LBRACK] = ACTIONS(8746), - [anon_sym_static] = ACTIONS(8746), - [anon_sym_register] = ACTIONS(8746), - [anon_sym_inline] = ACTIONS(8746), - [anon_sym___inline] = ACTIONS(8746), - [anon_sym___inline__] = ACTIONS(8746), - [anon_sym___forceinline] = ACTIONS(8746), - [anon_sym_thread_local] = ACTIONS(8746), - [anon_sym___thread] = ACTIONS(8746), - [anon_sym_const] = ACTIONS(8746), - [anon_sym_constexpr] = ACTIONS(8746), - [anon_sym_volatile] = ACTIONS(8746), - [anon_sym_restrict] = ACTIONS(8746), - [anon_sym___restrict__] = ACTIONS(8746), - [anon_sym__Atomic] = ACTIONS(8746), - [anon_sym__Noreturn] = ACTIONS(8746), - [anon_sym_noreturn] = ACTIONS(8746), - [anon_sym__Nonnull] = ACTIONS(8746), - [anon_sym_mutable] = ACTIONS(8746), - [anon_sym_constinit] = ACTIONS(8746), - [anon_sym_consteval] = ACTIONS(8746), - [anon_sym_alignas] = ACTIONS(8746), - [anon_sym__Alignas] = ACTIONS(8746), - [sym_primitive_type] = ACTIONS(8746), - [anon_sym_enum] = ACTIONS(8746), - [anon_sym_class] = ACTIONS(8746), - [anon_sym_struct] = ACTIONS(8746), - [anon_sym_union] = ACTIONS(8746), - [anon_sym_typename] = ACTIONS(8746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8746), - [anon_sym_decltype] = ACTIONS(8746), - [anon_sym_explicit] = ACTIONS(8746), - [anon_sym_private] = ACTIONS(8746), - [anon_sym_template] = ACTIONS(8746), - [anon_sym_operator] = ACTIONS(8746), - [anon_sym_friend] = ACTIONS(8746), - [anon_sym_public] = ACTIONS(8746), - [anon_sym_protected] = ACTIONS(8746), - [anon_sym_static_assert] = ACTIONS(8746), - [anon_sym_LBRACK_COLON] = ACTIONS(8748), + [STATE(3245)] = { + [sym_identifier] = ACTIONS(3726), + [aux_sym_preproc_def_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token1] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3726), + [sym_preproc_directive] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(3726), + [anon_sym_typedef] = ACTIONS(3726), + [anon_sym_virtual] = ACTIONS(3726), + [anon_sym_extern] = ACTIONS(3726), + [anon_sym___attribute__] = ACTIONS(3726), + [anon_sym___attribute] = ACTIONS(3726), + [anon_sym_using] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3728), + [anon_sym___declspec] = ACTIONS(3726), + [anon_sym___based] = ACTIONS(3726), + [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_signed] = ACTIONS(3726), + [anon_sym_unsigned] = ACTIONS(3726), + [anon_sym_long] = ACTIONS(3726), + [anon_sym_short] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_static] = ACTIONS(3726), + [anon_sym_register] = ACTIONS(3726), + [anon_sym_inline] = ACTIONS(3726), + [anon_sym___inline] = ACTIONS(3726), + [anon_sym___inline__] = ACTIONS(3726), + [anon_sym___forceinline] = ACTIONS(3726), + [anon_sym_thread_local] = ACTIONS(3726), + [anon_sym___thread] = ACTIONS(3726), + [anon_sym_const] = ACTIONS(3726), + [anon_sym_constexpr] = ACTIONS(3726), + [anon_sym_volatile] = ACTIONS(3726), + [anon_sym_restrict] = ACTIONS(3726), + [anon_sym___restrict__] = ACTIONS(3726), + [anon_sym__Atomic] = ACTIONS(3726), + [anon_sym__Noreturn] = ACTIONS(3726), + [anon_sym_noreturn] = ACTIONS(3726), + [anon_sym__Nonnull] = ACTIONS(3726), + [anon_sym_mutable] = ACTIONS(3726), + [anon_sym_constinit] = ACTIONS(3726), + [anon_sym_consteval] = ACTIONS(3726), + [anon_sym_alignas] = ACTIONS(3726), + [anon_sym__Alignas] = ACTIONS(3726), + [sym_primitive_type] = ACTIONS(3726), + [anon_sym_enum] = ACTIONS(3726), + [anon_sym_class] = ACTIONS(3726), + [anon_sym_struct] = ACTIONS(3726), + [anon_sym_union] = ACTIONS(3726), + [anon_sym_typename] = ACTIONS(3726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3726), + [anon_sym_decltype] = ACTIONS(3726), + [anon_sym_explicit] = ACTIONS(3726), + [anon_sym_private] = ACTIONS(3726), + [anon_sym_template] = ACTIONS(3726), + [anon_sym_operator] = ACTIONS(3726), + [anon_sym_friend] = ACTIONS(3726), + [anon_sym_public] = ACTIONS(3726), + [anon_sym_protected] = ACTIONS(3726), + [anon_sym_static_assert] = ACTIONS(3726), + [anon_sym_LBRACK_COLON] = ACTIONS(3728), }, - [STATE(3289)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3299), - [sym_identifier] = ACTIONS(7555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), - [anon_sym_COMMA] = ACTIONS(7557), - [aux_sym_preproc_if_token2] = ACTIONS(7557), - [aux_sym_preproc_else_token1] = ACTIONS(7557), - [aux_sym_preproc_elif_token1] = ACTIONS(7555), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7557), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7557), - [anon_sym_LPAREN2] = ACTIONS(7557), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_STAR] = ACTIONS(7557), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_PERCENT] = ACTIONS(7557), - [anon_sym_PIPE_PIPE] = ACTIONS(7557), - [anon_sym_AMP_AMP] = ACTIONS(7557), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_CARET] = ACTIONS(7557), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_EQ_EQ] = ACTIONS(7557), - [anon_sym_BANG_EQ] = ACTIONS(7557), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7557), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_LT_LT] = ACTIONS(7557), - [anon_sym_GT_GT] = ACTIONS(7557), - [anon_sym___extension__] = ACTIONS(7555), - [anon_sym___attribute__] = ACTIONS(7555), - [anon_sym___attribute] = ACTIONS(7555), - [anon_sym_LBRACE] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(9103), - [anon_sym_unsigned] = ACTIONS(9103), - [anon_sym_long] = ACTIONS(9103), - [anon_sym_short] = ACTIONS(9103), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_RBRACK] = ACTIONS(7557), - [anon_sym_const] = ACTIONS(7555), - [anon_sym_constexpr] = ACTIONS(7555), - [anon_sym_volatile] = ACTIONS(7555), - [anon_sym_restrict] = ACTIONS(7555), - [anon_sym___restrict__] = ACTIONS(7555), - [anon_sym__Atomic] = ACTIONS(7555), - [anon_sym__Noreturn] = ACTIONS(7555), - [anon_sym_noreturn] = ACTIONS(7555), - [anon_sym__Nonnull] = ACTIONS(7555), - [anon_sym_mutable] = ACTIONS(7555), - [anon_sym_constinit] = ACTIONS(7555), - [anon_sym_consteval] = ACTIONS(7555), - [anon_sym_alignas] = ACTIONS(7555), - [anon_sym__Alignas] = ACTIONS(7555), - [anon_sym_QMARK] = ACTIONS(7557), - [anon_sym_LT_EQ_GT] = ACTIONS(7557), - [anon_sym_or] = ACTIONS(7555), - [anon_sym_and] = ACTIONS(7555), - [anon_sym_bitor] = ACTIONS(7555), - [anon_sym_xor] = ACTIONS(7555), - [anon_sym_bitand] = ACTIONS(7555), - [anon_sym_not_eq] = ACTIONS(7555), - [anon_sym_DASH_DASH] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7557), - [anon_sym_DOT] = ACTIONS(7555), - [anon_sym_DOT_STAR] = ACTIONS(7557), - [anon_sym_DASH_GT] = ACTIONS(7557), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7555), - [anon_sym_override] = ACTIONS(7555), - [anon_sym_requires] = ACTIONS(7555), + [STATE(3246)] = { + [sym_identifier] = ACTIONS(8733), + [aux_sym_preproc_def_token1] = ACTIONS(8733), + [aux_sym_preproc_if_token1] = ACTIONS(8733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8733), + [sym_preproc_directive] = ACTIONS(8733), + [anon_sym_LPAREN2] = ACTIONS(8735), + [anon_sym_TILDE] = ACTIONS(8735), + [anon_sym_STAR] = ACTIONS(8735), + [anon_sym_AMP_AMP] = ACTIONS(8735), + [anon_sym_AMP] = ACTIONS(8733), + [anon_sym_SEMI] = ACTIONS(8735), + [anon_sym___extension__] = ACTIONS(8733), + [anon_sym_typedef] = ACTIONS(8733), + [anon_sym_virtual] = ACTIONS(8733), + [anon_sym_extern] = ACTIONS(8733), + [anon_sym___attribute__] = ACTIONS(8733), + [anon_sym___attribute] = ACTIONS(8733), + [anon_sym_using] = ACTIONS(8733), + [anon_sym_COLON_COLON] = ACTIONS(8735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8735), + [anon_sym___declspec] = ACTIONS(8733), + [anon_sym___based] = ACTIONS(8733), + [anon_sym_RBRACE] = ACTIONS(8735), + [anon_sym_signed] = ACTIONS(8733), + [anon_sym_unsigned] = ACTIONS(8733), + [anon_sym_long] = ACTIONS(8733), + [anon_sym_short] = ACTIONS(8733), + [anon_sym_LBRACK] = ACTIONS(8733), + [anon_sym_static] = ACTIONS(8733), + [anon_sym_register] = ACTIONS(8733), + [anon_sym_inline] = ACTIONS(8733), + [anon_sym___inline] = ACTIONS(8733), + [anon_sym___inline__] = ACTIONS(8733), + [anon_sym___forceinline] = ACTIONS(8733), + [anon_sym_thread_local] = ACTIONS(8733), + [anon_sym___thread] = ACTIONS(8733), + [anon_sym_const] = ACTIONS(8733), + [anon_sym_constexpr] = ACTIONS(8733), + [anon_sym_volatile] = ACTIONS(8733), + [anon_sym_restrict] = ACTIONS(8733), + [anon_sym___restrict__] = ACTIONS(8733), + [anon_sym__Atomic] = ACTIONS(8733), + [anon_sym__Noreturn] = ACTIONS(8733), + [anon_sym_noreturn] = ACTIONS(8733), + [anon_sym__Nonnull] = ACTIONS(8733), + [anon_sym_mutable] = ACTIONS(8733), + [anon_sym_constinit] = ACTIONS(8733), + [anon_sym_consteval] = ACTIONS(8733), + [anon_sym_alignas] = ACTIONS(8733), + [anon_sym__Alignas] = ACTIONS(8733), + [sym_primitive_type] = ACTIONS(8733), + [anon_sym_enum] = ACTIONS(8733), + [anon_sym_class] = ACTIONS(8733), + [anon_sym_struct] = ACTIONS(8733), + [anon_sym_union] = ACTIONS(8733), + [anon_sym_typename] = ACTIONS(8733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8733), + [anon_sym_decltype] = ACTIONS(8733), + [anon_sym_explicit] = ACTIONS(8733), + [anon_sym_private] = ACTIONS(8733), + [anon_sym_template] = ACTIONS(8733), + [anon_sym_operator] = ACTIONS(8733), + [anon_sym_friend] = ACTIONS(8733), + [anon_sym_public] = ACTIONS(8733), + [anon_sym_protected] = ACTIONS(8733), + [anon_sym_static_assert] = ACTIONS(8733), + [anon_sym_LBRACK_COLON] = ACTIONS(8735), }, - [STATE(3290)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3300), - [sym_identifier] = ACTIONS(7783), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), - [anon_sym_COMMA] = ACTIONS(7785), - [aux_sym_preproc_if_token2] = ACTIONS(7785), - [aux_sym_preproc_else_token1] = ACTIONS(7785), - [aux_sym_preproc_elif_token1] = ACTIONS(7783), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7785), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7785), - [anon_sym_LPAREN2] = ACTIONS(7785), - [anon_sym_DASH] = ACTIONS(7783), - [anon_sym_PLUS] = ACTIONS(7783), - [anon_sym_STAR] = ACTIONS(7785), - [anon_sym_SLASH] = ACTIONS(7783), - [anon_sym_PERCENT] = ACTIONS(7785), - [anon_sym_PIPE_PIPE] = ACTIONS(7785), - [anon_sym_AMP_AMP] = ACTIONS(7785), - [anon_sym_PIPE] = ACTIONS(7783), - [anon_sym_CARET] = ACTIONS(7785), - [anon_sym_AMP] = ACTIONS(7783), - [anon_sym_EQ_EQ] = ACTIONS(7785), - [anon_sym_BANG_EQ] = ACTIONS(7785), - [anon_sym_GT] = ACTIONS(7783), - [anon_sym_GT_EQ] = ACTIONS(7785), - [anon_sym_LT_EQ] = ACTIONS(7783), - [anon_sym_LT] = ACTIONS(7783), - [anon_sym_LT_LT] = ACTIONS(7785), - [anon_sym_GT_GT] = ACTIONS(7785), - [anon_sym___extension__] = ACTIONS(7783), - [anon_sym___attribute__] = ACTIONS(7783), - [anon_sym___attribute] = ACTIONS(7783), - [anon_sym_LBRACE] = ACTIONS(7785), - [anon_sym_signed] = ACTIONS(9105), - [anon_sym_unsigned] = ACTIONS(9105), - [anon_sym_long] = ACTIONS(9105), - [anon_sym_short] = ACTIONS(9105), - [anon_sym_LBRACK] = ACTIONS(7785), - [anon_sym_RBRACK] = ACTIONS(7785), - [anon_sym_const] = ACTIONS(7783), - [anon_sym_constexpr] = ACTIONS(7783), - [anon_sym_volatile] = ACTIONS(7783), - [anon_sym_restrict] = ACTIONS(7783), - [anon_sym___restrict__] = ACTIONS(7783), - [anon_sym__Atomic] = ACTIONS(7783), - [anon_sym__Noreturn] = ACTIONS(7783), - [anon_sym_noreturn] = ACTIONS(7783), - [anon_sym__Nonnull] = ACTIONS(7783), - [anon_sym_mutable] = ACTIONS(7783), - [anon_sym_constinit] = ACTIONS(7783), - [anon_sym_consteval] = ACTIONS(7783), - [anon_sym_alignas] = ACTIONS(7783), - [anon_sym__Alignas] = ACTIONS(7783), - [anon_sym_QMARK] = ACTIONS(7785), - [anon_sym_LT_EQ_GT] = ACTIONS(7785), - [anon_sym_or] = ACTIONS(7783), - [anon_sym_and] = ACTIONS(7783), - [anon_sym_bitor] = ACTIONS(7783), - [anon_sym_xor] = ACTIONS(7783), - [anon_sym_bitand] = ACTIONS(7783), - [anon_sym_not_eq] = ACTIONS(7783), - [anon_sym_DASH_DASH] = ACTIONS(7785), - [anon_sym_PLUS_PLUS] = ACTIONS(7785), - [anon_sym_DOT] = ACTIONS(7783), - [anon_sym_DOT_STAR] = ACTIONS(7785), - [anon_sym_DASH_GT] = ACTIONS(7785), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7783), - [anon_sym_override] = ACTIONS(7783), - [anon_sym_requires] = ACTIONS(7783), + [STATE(3247)] = { + [sym_identifier] = ACTIONS(3710), + [aux_sym_preproc_def_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token2] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3710), + [sym_preproc_directive] = ACTIONS(3710), + [anon_sym_LPAREN2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_AMP] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(3712), + [anon_sym___extension__] = ACTIONS(3710), + [anon_sym_typedef] = ACTIONS(3710), + [anon_sym_virtual] = ACTIONS(3710), + [anon_sym_extern] = ACTIONS(3710), + [anon_sym___attribute__] = ACTIONS(3710), + [anon_sym___attribute] = ACTIONS(3710), + [anon_sym_using] = ACTIONS(3710), + [anon_sym_COLON_COLON] = ACTIONS(3712), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3712), + [anon_sym___declspec] = ACTIONS(3710), + [anon_sym___based] = ACTIONS(3710), + [anon_sym_signed] = ACTIONS(3710), + [anon_sym_unsigned] = ACTIONS(3710), + [anon_sym_long] = ACTIONS(3710), + [anon_sym_short] = ACTIONS(3710), + [anon_sym_LBRACK] = ACTIONS(3710), + [anon_sym_static] = ACTIONS(3710), + [anon_sym_register] = ACTIONS(3710), + [anon_sym_inline] = ACTIONS(3710), + [anon_sym___inline] = ACTIONS(3710), + [anon_sym___inline__] = ACTIONS(3710), + [anon_sym___forceinline] = ACTIONS(3710), + [anon_sym_thread_local] = ACTIONS(3710), + [anon_sym___thread] = ACTIONS(3710), + [anon_sym_const] = ACTIONS(3710), + [anon_sym_constexpr] = ACTIONS(3710), + [anon_sym_volatile] = ACTIONS(3710), + [anon_sym_restrict] = ACTIONS(3710), + [anon_sym___restrict__] = ACTIONS(3710), + [anon_sym__Atomic] = ACTIONS(3710), + [anon_sym__Noreturn] = ACTIONS(3710), + [anon_sym_noreturn] = ACTIONS(3710), + [anon_sym__Nonnull] = ACTIONS(3710), + [anon_sym_mutable] = ACTIONS(3710), + [anon_sym_constinit] = ACTIONS(3710), + [anon_sym_consteval] = ACTIONS(3710), + [anon_sym_alignas] = ACTIONS(3710), + [anon_sym__Alignas] = ACTIONS(3710), + [sym_primitive_type] = ACTIONS(3710), + [anon_sym_enum] = ACTIONS(3710), + [anon_sym_class] = ACTIONS(3710), + [anon_sym_struct] = ACTIONS(3710), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_typename] = ACTIONS(3710), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3710), + [anon_sym_decltype] = ACTIONS(3710), + [anon_sym_explicit] = ACTIONS(3710), + [anon_sym_private] = ACTIONS(3710), + [anon_sym_template] = ACTIONS(3710), + [anon_sym_operator] = ACTIONS(3710), + [anon_sym_friend] = ACTIONS(3710), + [anon_sym_public] = ACTIONS(3710), + [anon_sym_protected] = ACTIONS(3710), + [anon_sym_static_assert] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3712), }, - [STATE(3291)] = { - [sym_identifier] = ACTIONS(8766), - [aux_sym_preproc_def_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token2] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), - [sym_preproc_directive] = ACTIONS(8766), - [anon_sym_LPAREN2] = ACTIONS(8768), - [anon_sym_TILDE] = ACTIONS(8768), - [anon_sym_STAR] = ACTIONS(8768), - [anon_sym_AMP_AMP] = ACTIONS(8768), - [anon_sym_AMP] = ACTIONS(8766), - [anon_sym_SEMI] = ACTIONS(8768), - [anon_sym___extension__] = ACTIONS(8766), - [anon_sym_typedef] = ACTIONS(8766), - [anon_sym_virtual] = ACTIONS(8766), - [anon_sym_extern] = ACTIONS(8766), - [anon_sym___attribute__] = ACTIONS(8766), - [anon_sym___attribute] = ACTIONS(8766), - [anon_sym_using] = ACTIONS(8766), - [anon_sym_COLON_COLON] = ACTIONS(8768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), - [anon_sym___declspec] = ACTIONS(8766), - [anon_sym___based] = ACTIONS(8766), - [anon_sym_signed] = ACTIONS(8766), - [anon_sym_unsigned] = ACTIONS(8766), - [anon_sym_long] = ACTIONS(8766), - [anon_sym_short] = ACTIONS(8766), - [anon_sym_LBRACK] = ACTIONS(8766), - [anon_sym_static] = ACTIONS(8766), - [anon_sym_register] = ACTIONS(8766), - [anon_sym_inline] = ACTIONS(8766), - [anon_sym___inline] = ACTIONS(8766), - [anon_sym___inline__] = ACTIONS(8766), - [anon_sym___forceinline] = ACTIONS(8766), - [anon_sym_thread_local] = ACTIONS(8766), - [anon_sym___thread] = ACTIONS(8766), - [anon_sym_const] = ACTIONS(8766), - [anon_sym_constexpr] = ACTIONS(8766), - [anon_sym_volatile] = ACTIONS(8766), - [anon_sym_restrict] = ACTIONS(8766), - [anon_sym___restrict__] = ACTIONS(8766), - [anon_sym__Atomic] = ACTIONS(8766), - [anon_sym__Noreturn] = ACTIONS(8766), - [anon_sym_noreturn] = ACTIONS(8766), - [anon_sym__Nonnull] = ACTIONS(8766), - [anon_sym_mutable] = ACTIONS(8766), - [anon_sym_constinit] = ACTIONS(8766), - [anon_sym_consteval] = ACTIONS(8766), - [anon_sym_alignas] = ACTIONS(8766), - [anon_sym__Alignas] = ACTIONS(8766), - [sym_primitive_type] = ACTIONS(8766), - [anon_sym_enum] = ACTIONS(8766), - [anon_sym_class] = ACTIONS(8766), - [anon_sym_struct] = ACTIONS(8766), - [anon_sym_union] = ACTIONS(8766), - [anon_sym_typename] = ACTIONS(8766), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8766), - [anon_sym_decltype] = ACTIONS(8766), - [anon_sym_explicit] = ACTIONS(8766), - [anon_sym_private] = ACTIONS(8766), - [anon_sym_template] = ACTIONS(8766), - [anon_sym_operator] = ACTIONS(8766), - [anon_sym_friend] = ACTIONS(8766), - [anon_sym_public] = ACTIONS(8766), - [anon_sym_protected] = ACTIONS(8766), - [anon_sym_static_assert] = ACTIONS(8766), - [anon_sym_LBRACK_COLON] = ACTIONS(8768), + [STATE(3248)] = { + [sym_identifier] = ACTIONS(3869), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3869), + [sym_preproc_directive] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(3871), + [anon_sym_TILDE] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym___extension__] = ACTIONS(3869), + [anon_sym_typedef] = ACTIONS(3869), + [anon_sym_virtual] = ACTIONS(3869), + [anon_sym_extern] = ACTIONS(3869), + [anon_sym___attribute__] = ACTIONS(3869), + [anon_sym___attribute] = ACTIONS(3869), + [anon_sym_using] = ACTIONS(3869), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3871), + [anon_sym___declspec] = ACTIONS(3869), + [anon_sym___based] = ACTIONS(3869), + [anon_sym_RBRACE] = ACTIONS(3871), + [anon_sym_signed] = ACTIONS(3869), + [anon_sym_unsigned] = ACTIONS(3869), + [anon_sym_long] = ACTIONS(3869), + [anon_sym_short] = ACTIONS(3869), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_static] = ACTIONS(3869), + [anon_sym_register] = ACTIONS(3869), + [anon_sym_inline] = ACTIONS(3869), + [anon_sym___inline] = ACTIONS(3869), + [anon_sym___inline__] = ACTIONS(3869), + [anon_sym___forceinline] = ACTIONS(3869), + [anon_sym_thread_local] = ACTIONS(3869), + [anon_sym___thread] = ACTIONS(3869), + [anon_sym_const] = ACTIONS(3869), + [anon_sym_constexpr] = ACTIONS(3869), + [anon_sym_volatile] = ACTIONS(3869), + [anon_sym_restrict] = ACTIONS(3869), + [anon_sym___restrict__] = ACTIONS(3869), + [anon_sym__Atomic] = ACTIONS(3869), + [anon_sym__Noreturn] = ACTIONS(3869), + [anon_sym_noreturn] = ACTIONS(3869), + [anon_sym__Nonnull] = ACTIONS(3869), + [anon_sym_mutable] = ACTIONS(3869), + [anon_sym_constinit] = ACTIONS(3869), + [anon_sym_consteval] = ACTIONS(3869), + [anon_sym_alignas] = ACTIONS(3869), + [anon_sym__Alignas] = ACTIONS(3869), + [sym_primitive_type] = ACTIONS(3869), + [anon_sym_enum] = ACTIONS(3869), + [anon_sym_class] = ACTIONS(3869), + [anon_sym_struct] = ACTIONS(3869), + [anon_sym_union] = ACTIONS(3869), + [anon_sym_typename] = ACTIONS(3869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3869), + [anon_sym_decltype] = ACTIONS(3869), + [anon_sym_explicit] = ACTIONS(3869), + [anon_sym_private] = ACTIONS(3869), + [anon_sym_template] = ACTIONS(3869), + [anon_sym_operator] = ACTIONS(3869), + [anon_sym_friend] = ACTIONS(3869), + [anon_sym_public] = ACTIONS(3869), + [anon_sym_protected] = ACTIONS(3869), + [anon_sym_static_assert] = ACTIONS(3869), + [anon_sym_LBRACK_COLON] = ACTIONS(3871), }, - [STATE(3292)] = { - [sym_identifier] = ACTIONS(8766), - [aux_sym_preproc_def_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token2] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), - [sym_preproc_directive] = ACTIONS(8766), - [anon_sym_LPAREN2] = ACTIONS(8768), - [anon_sym_TILDE] = ACTIONS(8768), - [anon_sym_STAR] = ACTIONS(8768), - [anon_sym_AMP_AMP] = ACTIONS(8768), - [anon_sym_AMP] = ACTIONS(8766), - [anon_sym_SEMI] = ACTIONS(8768), - [anon_sym___extension__] = ACTIONS(8766), - [anon_sym_typedef] = ACTIONS(8766), - [anon_sym_virtual] = ACTIONS(8766), - [anon_sym_extern] = ACTIONS(8766), - [anon_sym___attribute__] = ACTIONS(8766), - [anon_sym___attribute] = ACTIONS(8766), - [anon_sym_using] = ACTIONS(8766), - [anon_sym_COLON_COLON] = ACTIONS(8768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), - [anon_sym___declspec] = ACTIONS(8766), - [anon_sym___based] = ACTIONS(8766), - [anon_sym_signed] = ACTIONS(8766), - [anon_sym_unsigned] = ACTIONS(8766), - [anon_sym_long] = ACTIONS(8766), - [anon_sym_short] = ACTIONS(8766), - [anon_sym_LBRACK] = ACTIONS(8766), - [anon_sym_static] = ACTIONS(8766), - [anon_sym_register] = ACTIONS(8766), - [anon_sym_inline] = ACTIONS(8766), - [anon_sym___inline] = ACTIONS(8766), - [anon_sym___inline__] = ACTIONS(8766), - [anon_sym___forceinline] = ACTIONS(8766), - [anon_sym_thread_local] = ACTIONS(8766), - [anon_sym___thread] = ACTIONS(8766), - [anon_sym_const] = ACTIONS(8766), - [anon_sym_constexpr] = ACTIONS(8766), - [anon_sym_volatile] = ACTIONS(8766), - [anon_sym_restrict] = ACTIONS(8766), - [anon_sym___restrict__] = ACTIONS(8766), - [anon_sym__Atomic] = ACTIONS(8766), - [anon_sym__Noreturn] = ACTIONS(8766), - [anon_sym_noreturn] = ACTIONS(8766), - [anon_sym__Nonnull] = ACTIONS(8766), - [anon_sym_mutable] = ACTIONS(8766), - [anon_sym_constinit] = ACTIONS(8766), - [anon_sym_consteval] = ACTIONS(8766), - [anon_sym_alignas] = ACTIONS(8766), - [anon_sym__Alignas] = ACTIONS(8766), - [sym_primitive_type] = ACTIONS(8766), - [anon_sym_enum] = ACTIONS(8766), - [anon_sym_class] = ACTIONS(8766), - [anon_sym_struct] = ACTIONS(8766), - [anon_sym_union] = ACTIONS(8766), - [anon_sym_typename] = ACTIONS(8766), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8766), - [anon_sym_decltype] = ACTIONS(8766), - [anon_sym_explicit] = ACTIONS(8766), - [anon_sym_private] = ACTIONS(8766), - [anon_sym_template] = ACTIONS(8766), - [anon_sym_operator] = ACTIONS(8766), - [anon_sym_friend] = ACTIONS(8766), - [anon_sym_public] = ACTIONS(8766), - [anon_sym_protected] = ACTIONS(8766), - [anon_sym_static_assert] = ACTIONS(8766), - [anon_sym_LBRACK_COLON] = ACTIONS(8768), + [STATE(3249)] = { + [sym_template_argument_list] = STATE(3596), + [sym_identifier] = ACTIONS(7117), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_TILDE] = ACTIONS(7122), + [anon_sym_STAR] = ACTIONS(7122), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(9093), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym_virtual] = ACTIONS(7117), + [anon_sym_extern] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_using] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7122), + [anon_sym___declspec] = ACTIONS(7117), + [anon_sym___based] = ACTIONS(7117), + [anon_sym___cdecl] = ACTIONS(7117), + [anon_sym___clrcall] = ACTIONS(7117), + [anon_sym___stdcall] = ACTIONS(7117), + [anon_sym___fastcall] = ACTIONS(7117), + [anon_sym___thiscall] = ACTIONS(7117), + [anon_sym___vectorcall] = ACTIONS(7117), + [anon_sym_signed] = ACTIONS(7117), + [anon_sym_unsigned] = ACTIONS(7117), + [anon_sym_long] = ACTIONS(7117), + [anon_sym_short] = ACTIONS(7117), + [anon_sym_LBRACK] = ACTIONS(7117), + [anon_sym_static] = ACTIONS(7117), + [anon_sym_register] = ACTIONS(7117), + [anon_sym_inline] = ACTIONS(7117), + [anon_sym___inline] = ACTIONS(7117), + [anon_sym___inline__] = ACTIONS(7117), + [anon_sym___forceinline] = ACTIONS(7117), + [anon_sym_thread_local] = ACTIONS(7117), + [anon_sym___thread] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [sym_primitive_type] = ACTIONS(7117), + [anon_sym_enum] = ACTIONS(7117), + [anon_sym_class] = ACTIONS(7117), + [anon_sym_struct] = ACTIONS(7117), + [anon_sym_union] = ACTIONS(7117), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_typename] = ACTIONS(7117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7117), + [anon_sym_decltype] = ACTIONS(7117), + [anon_sym_explicit] = ACTIONS(7117), + [anon_sym_template] = ACTIONS(7117), + [anon_sym_operator] = ACTIONS(7117), + [anon_sym_friend] = ACTIONS(7117), + [anon_sym_concept] = ACTIONS(7117), + [anon_sym_LBRACK_COLON] = ACTIONS(7122), }, - [STATE(3293)] = { - [sym_identifier] = ACTIONS(8802), - [aux_sym_preproc_def_token1] = ACTIONS(8802), - [aux_sym_preproc_if_token1] = ACTIONS(8802), - [aux_sym_preproc_if_token2] = ACTIONS(8802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8802), - [sym_preproc_directive] = ACTIONS(8802), - [anon_sym_LPAREN2] = ACTIONS(8804), - [anon_sym_TILDE] = ACTIONS(8804), - [anon_sym_STAR] = ACTIONS(8804), - [anon_sym_AMP_AMP] = ACTIONS(8804), - [anon_sym_AMP] = ACTIONS(8802), - [anon_sym_SEMI] = ACTIONS(8804), - [anon_sym___extension__] = ACTIONS(8802), - [anon_sym_typedef] = ACTIONS(8802), - [anon_sym_virtual] = ACTIONS(8802), - [anon_sym_extern] = ACTIONS(8802), - [anon_sym___attribute__] = ACTIONS(8802), - [anon_sym___attribute] = ACTIONS(8802), - [anon_sym_using] = ACTIONS(8802), - [anon_sym_COLON_COLON] = ACTIONS(8804), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8804), - [anon_sym___declspec] = ACTIONS(8802), - [anon_sym___based] = ACTIONS(8802), - [anon_sym_signed] = ACTIONS(8802), - [anon_sym_unsigned] = ACTIONS(8802), - [anon_sym_long] = ACTIONS(8802), - [anon_sym_short] = ACTIONS(8802), - [anon_sym_LBRACK] = ACTIONS(8802), - [anon_sym_static] = ACTIONS(8802), - [anon_sym_register] = ACTIONS(8802), - [anon_sym_inline] = ACTIONS(8802), - [anon_sym___inline] = ACTIONS(8802), - [anon_sym___inline__] = ACTIONS(8802), - [anon_sym___forceinline] = ACTIONS(8802), - [anon_sym_thread_local] = ACTIONS(8802), - [anon_sym___thread] = ACTIONS(8802), - [anon_sym_const] = ACTIONS(8802), - [anon_sym_constexpr] = ACTIONS(8802), - [anon_sym_volatile] = ACTIONS(8802), - [anon_sym_restrict] = ACTIONS(8802), - [anon_sym___restrict__] = ACTIONS(8802), - [anon_sym__Atomic] = ACTIONS(8802), - [anon_sym__Noreturn] = ACTIONS(8802), - [anon_sym_noreturn] = ACTIONS(8802), - [anon_sym__Nonnull] = ACTIONS(8802), - [anon_sym_mutable] = ACTIONS(8802), - [anon_sym_constinit] = ACTIONS(8802), - [anon_sym_consteval] = ACTIONS(8802), - [anon_sym_alignas] = ACTIONS(8802), - [anon_sym__Alignas] = ACTIONS(8802), - [sym_primitive_type] = ACTIONS(8802), - [anon_sym_enum] = ACTIONS(8802), - [anon_sym_class] = ACTIONS(8802), - [anon_sym_struct] = ACTIONS(8802), - [anon_sym_union] = ACTIONS(8802), - [anon_sym_typename] = ACTIONS(8802), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8802), - [anon_sym_decltype] = ACTIONS(8802), - [anon_sym_explicit] = ACTIONS(8802), - [anon_sym_private] = ACTIONS(8802), - [anon_sym_template] = ACTIONS(8802), - [anon_sym_operator] = ACTIONS(8802), - [anon_sym_friend] = ACTIONS(8802), - [anon_sym_public] = ACTIONS(8802), - [anon_sym_protected] = ACTIONS(8802), - [anon_sym_static_assert] = ACTIONS(8802), - [anon_sym_LBRACK_COLON] = ACTIONS(8804), + [STATE(3250)] = { + [sym_identifier] = ACTIONS(8737), + [aux_sym_preproc_def_token1] = ACTIONS(8737), + [aux_sym_preproc_if_token1] = ACTIONS(8737), + [aux_sym_preproc_if_token2] = ACTIONS(8737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8737), + [sym_preproc_directive] = ACTIONS(8737), + [anon_sym_LPAREN2] = ACTIONS(8739), + [anon_sym_TILDE] = ACTIONS(8739), + [anon_sym_STAR] = ACTIONS(8739), + [anon_sym_AMP_AMP] = ACTIONS(8739), + [anon_sym_AMP] = ACTIONS(8737), + [anon_sym_SEMI] = ACTIONS(8739), + [anon_sym___extension__] = ACTIONS(8737), + [anon_sym_typedef] = ACTIONS(8737), + [anon_sym_virtual] = ACTIONS(8737), + [anon_sym_extern] = ACTIONS(8737), + [anon_sym___attribute__] = ACTIONS(8737), + [anon_sym___attribute] = ACTIONS(8737), + [anon_sym_using] = ACTIONS(8737), + [anon_sym_COLON_COLON] = ACTIONS(8739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8739), + [anon_sym___declspec] = ACTIONS(8737), + [anon_sym___based] = ACTIONS(8737), + [anon_sym_signed] = ACTIONS(8737), + [anon_sym_unsigned] = ACTIONS(8737), + [anon_sym_long] = ACTIONS(8737), + [anon_sym_short] = ACTIONS(8737), + [anon_sym_LBRACK] = ACTIONS(8737), + [anon_sym_static] = ACTIONS(8737), + [anon_sym_register] = ACTIONS(8737), + [anon_sym_inline] = ACTIONS(8737), + [anon_sym___inline] = ACTIONS(8737), + [anon_sym___inline__] = ACTIONS(8737), + [anon_sym___forceinline] = ACTIONS(8737), + [anon_sym_thread_local] = ACTIONS(8737), + [anon_sym___thread] = ACTIONS(8737), + [anon_sym_const] = ACTIONS(8737), + [anon_sym_constexpr] = ACTIONS(8737), + [anon_sym_volatile] = ACTIONS(8737), + [anon_sym_restrict] = ACTIONS(8737), + [anon_sym___restrict__] = ACTIONS(8737), + [anon_sym__Atomic] = ACTIONS(8737), + [anon_sym__Noreturn] = ACTIONS(8737), + [anon_sym_noreturn] = ACTIONS(8737), + [anon_sym__Nonnull] = ACTIONS(8737), + [anon_sym_mutable] = ACTIONS(8737), + [anon_sym_constinit] = ACTIONS(8737), + [anon_sym_consteval] = ACTIONS(8737), + [anon_sym_alignas] = ACTIONS(8737), + [anon_sym__Alignas] = ACTIONS(8737), + [sym_primitive_type] = ACTIONS(8737), + [anon_sym_enum] = ACTIONS(8737), + [anon_sym_class] = ACTIONS(8737), + [anon_sym_struct] = ACTIONS(8737), + [anon_sym_union] = ACTIONS(8737), + [anon_sym_typename] = ACTIONS(8737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8737), + [anon_sym_decltype] = ACTIONS(8737), + [anon_sym_explicit] = ACTIONS(8737), + [anon_sym_private] = ACTIONS(8737), + [anon_sym_template] = ACTIONS(8737), + [anon_sym_operator] = ACTIONS(8737), + [anon_sym_friend] = ACTIONS(8737), + [anon_sym_public] = ACTIONS(8737), + [anon_sym_protected] = ACTIONS(8737), + [anon_sym_static_assert] = ACTIONS(8737), + [anon_sym_LBRACK_COLON] = ACTIONS(8739), }, - [STATE(3294)] = { - [sym_identifier] = ACTIONS(8810), - [aux_sym_preproc_def_token1] = ACTIONS(8810), - [aux_sym_preproc_if_token1] = ACTIONS(8810), - [aux_sym_preproc_if_token2] = ACTIONS(8810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8810), - [sym_preproc_directive] = ACTIONS(8810), - [anon_sym_LPAREN2] = ACTIONS(8812), - [anon_sym_TILDE] = ACTIONS(8812), - [anon_sym_STAR] = ACTIONS(8812), - [anon_sym_AMP_AMP] = ACTIONS(8812), - [anon_sym_AMP] = ACTIONS(8810), - [anon_sym_SEMI] = ACTIONS(8812), - [anon_sym___extension__] = ACTIONS(8810), - [anon_sym_typedef] = ACTIONS(8810), - [anon_sym_virtual] = ACTIONS(8810), - [anon_sym_extern] = ACTIONS(8810), - [anon_sym___attribute__] = ACTIONS(8810), - [anon_sym___attribute] = ACTIONS(8810), - [anon_sym_using] = ACTIONS(8810), - [anon_sym_COLON_COLON] = ACTIONS(8812), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8812), - [anon_sym___declspec] = ACTIONS(8810), - [anon_sym___based] = ACTIONS(8810), - [anon_sym_signed] = ACTIONS(8810), - [anon_sym_unsigned] = ACTIONS(8810), - [anon_sym_long] = ACTIONS(8810), - [anon_sym_short] = ACTIONS(8810), - [anon_sym_LBRACK] = ACTIONS(8810), - [anon_sym_static] = ACTIONS(8810), - [anon_sym_register] = ACTIONS(8810), - [anon_sym_inline] = ACTIONS(8810), - [anon_sym___inline] = ACTIONS(8810), - [anon_sym___inline__] = ACTIONS(8810), - [anon_sym___forceinline] = ACTIONS(8810), - [anon_sym_thread_local] = ACTIONS(8810), - [anon_sym___thread] = ACTIONS(8810), - [anon_sym_const] = ACTIONS(8810), - [anon_sym_constexpr] = ACTIONS(8810), - [anon_sym_volatile] = ACTIONS(8810), - [anon_sym_restrict] = ACTIONS(8810), - [anon_sym___restrict__] = ACTIONS(8810), - [anon_sym__Atomic] = ACTIONS(8810), - [anon_sym__Noreturn] = ACTIONS(8810), - [anon_sym_noreturn] = ACTIONS(8810), - [anon_sym__Nonnull] = ACTIONS(8810), - [anon_sym_mutable] = ACTIONS(8810), - [anon_sym_constinit] = ACTIONS(8810), - [anon_sym_consteval] = ACTIONS(8810), - [anon_sym_alignas] = ACTIONS(8810), - [anon_sym__Alignas] = ACTIONS(8810), - [sym_primitive_type] = ACTIONS(8810), - [anon_sym_enum] = ACTIONS(8810), - [anon_sym_class] = ACTIONS(8810), - [anon_sym_struct] = ACTIONS(8810), - [anon_sym_union] = ACTIONS(8810), - [anon_sym_typename] = ACTIONS(8810), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8810), - [anon_sym_decltype] = ACTIONS(8810), - [anon_sym_explicit] = ACTIONS(8810), - [anon_sym_private] = ACTIONS(8810), - [anon_sym_template] = ACTIONS(8810), - [anon_sym_operator] = ACTIONS(8810), - [anon_sym_friend] = ACTIONS(8810), - [anon_sym_public] = ACTIONS(8810), - [anon_sym_protected] = ACTIONS(8810), - [anon_sym_static_assert] = ACTIONS(8810), - [anon_sym_LBRACK_COLON] = ACTIONS(8812), + [STATE(3251)] = { + [sym_identifier] = ACTIONS(3706), + [aux_sym_preproc_def_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token2] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3706), + [sym_preproc_directive] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym___extension__] = ACTIONS(3706), + [anon_sym_typedef] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym___attribute] = ACTIONS(3706), + [anon_sym_using] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym_signed] = ACTIONS(3706), + [anon_sym_unsigned] = ACTIONS(3706), + [anon_sym_long] = ACTIONS(3706), + [anon_sym_short] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym___inline] = ACTIONS(3706), + [anon_sym___inline__] = ACTIONS(3706), + [anon_sym___forceinline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym___thread] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym___restrict__] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym__Noreturn] = ACTIONS(3706), + [anon_sym_noreturn] = ACTIONS(3706), + [anon_sym__Nonnull] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_alignas] = ACTIONS(3706), + [anon_sym__Alignas] = ACTIONS(3706), + [sym_primitive_type] = ACTIONS(3706), + [anon_sym_enum] = ACTIONS(3706), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3706), + [anon_sym_union] = ACTIONS(3706), + [anon_sym_typename] = ACTIONS(3706), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_explicit] = ACTIONS(3706), + [anon_sym_private] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + [anon_sym_friend] = ACTIONS(3706), + [anon_sym_public] = ACTIONS(3706), + [anon_sym_protected] = ACTIONS(3706), + [anon_sym_static_assert] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3708), }, - [STATE(3295)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3295), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(7001), - [aux_sym_preproc_if_token2] = ACTIONS(7001), - [aux_sym_preproc_else_token1] = ACTIONS(7001), - [aux_sym_preproc_elif_token1] = ACTIONS(6999), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7001), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7001), - [anon_sym_LPAREN2] = ACTIONS(7001), - [anon_sym_DASH] = ACTIONS(6999), - [anon_sym_PLUS] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(7001), - [anon_sym_SLASH] = ACTIONS(6999), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(7001), - [anon_sym_PIPE] = ACTIONS(6999), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6999), - [anon_sym_EQ_EQ] = ACTIONS(7001), - [anon_sym_BANG_EQ] = ACTIONS(7001), - [anon_sym_GT] = ACTIONS(6999), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(6999), - [anon_sym_LT] = ACTIONS(6999), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(6999), - [anon_sym_LBRACE] = ACTIONS(7001), - [anon_sym_signed] = ACTIONS(9107), - [anon_sym_unsigned] = ACTIONS(9107), - [anon_sym_long] = ACTIONS(9107), - [anon_sym_short] = ACTIONS(9107), - [anon_sym_LBRACK] = ACTIONS(7001), - [anon_sym_RBRACK] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7001), - [anon_sym_LT_EQ_GT] = ACTIONS(7001), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(7001), - [anon_sym_PLUS_PLUS] = ACTIONS(7001), - [anon_sym_DOT] = ACTIONS(6999), - [anon_sym_DOT_STAR] = ACTIONS(7001), - [anon_sym_DASH_GT] = ACTIONS(7001), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), + [STATE(3252)] = { + [sym_identifier] = ACTIONS(8745), + [aux_sym_preproc_def_token1] = ACTIONS(8745), + [aux_sym_preproc_if_token1] = ACTIONS(8745), + [aux_sym_preproc_if_token2] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8745), + [sym_preproc_directive] = ACTIONS(8745), + [anon_sym_LPAREN2] = ACTIONS(8747), + [anon_sym_TILDE] = ACTIONS(8747), + [anon_sym_STAR] = ACTIONS(8747), + [anon_sym_AMP_AMP] = ACTIONS(8747), + [anon_sym_AMP] = ACTIONS(8745), + [anon_sym_SEMI] = ACTIONS(8747), + [anon_sym___extension__] = ACTIONS(8745), + [anon_sym_typedef] = ACTIONS(8745), + [anon_sym_virtual] = ACTIONS(8745), + [anon_sym_extern] = ACTIONS(8745), + [anon_sym___attribute__] = ACTIONS(8745), + [anon_sym___attribute] = ACTIONS(8745), + [anon_sym_using] = ACTIONS(8745), + [anon_sym_COLON_COLON] = ACTIONS(8747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8747), + [anon_sym___declspec] = ACTIONS(8745), + [anon_sym___based] = ACTIONS(8745), + [anon_sym_signed] = ACTIONS(8745), + [anon_sym_unsigned] = ACTIONS(8745), + [anon_sym_long] = ACTIONS(8745), + [anon_sym_short] = ACTIONS(8745), + [anon_sym_LBRACK] = ACTIONS(8745), + [anon_sym_static] = ACTIONS(8745), + [anon_sym_register] = ACTIONS(8745), + [anon_sym_inline] = ACTIONS(8745), + [anon_sym___inline] = ACTIONS(8745), + [anon_sym___inline__] = ACTIONS(8745), + [anon_sym___forceinline] = ACTIONS(8745), + [anon_sym_thread_local] = ACTIONS(8745), + [anon_sym___thread] = ACTIONS(8745), + [anon_sym_const] = ACTIONS(8745), + [anon_sym_constexpr] = ACTIONS(8745), + [anon_sym_volatile] = ACTIONS(8745), + [anon_sym_restrict] = ACTIONS(8745), + [anon_sym___restrict__] = ACTIONS(8745), + [anon_sym__Atomic] = ACTIONS(8745), + [anon_sym__Noreturn] = ACTIONS(8745), + [anon_sym_noreturn] = ACTIONS(8745), + [anon_sym__Nonnull] = ACTIONS(8745), + [anon_sym_mutable] = ACTIONS(8745), + [anon_sym_constinit] = ACTIONS(8745), + [anon_sym_consteval] = ACTIONS(8745), + [anon_sym_alignas] = ACTIONS(8745), + [anon_sym__Alignas] = ACTIONS(8745), + [sym_primitive_type] = ACTIONS(8745), + [anon_sym_enum] = ACTIONS(8745), + [anon_sym_class] = ACTIONS(8745), + [anon_sym_struct] = ACTIONS(8745), + [anon_sym_union] = ACTIONS(8745), + [anon_sym_typename] = ACTIONS(8745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8745), + [anon_sym_decltype] = ACTIONS(8745), + [anon_sym_explicit] = ACTIONS(8745), + [anon_sym_private] = ACTIONS(8745), + [anon_sym_template] = ACTIONS(8745), + [anon_sym_operator] = ACTIONS(8745), + [anon_sym_friend] = ACTIONS(8745), + [anon_sym_public] = ACTIONS(8745), + [anon_sym_protected] = ACTIONS(8745), + [anon_sym_static_assert] = ACTIONS(8745), + [anon_sym_LBRACK_COLON] = ACTIONS(8747), }, - [STATE(3296)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token2] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_private] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_friend] = ACTIONS(3600), - [anon_sym_public] = ACTIONS(3600), - [anon_sym_protected] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [STATE(3253)] = { + [sym_identifier] = ACTIONS(4321), + [aux_sym_preproc_def_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token1] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4321), + [sym_preproc_directive] = ACTIONS(4321), + [anon_sym_LPAREN2] = ACTIONS(4323), + [anon_sym_TILDE] = ACTIONS(4323), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_AMP] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym___extension__] = ACTIONS(4321), + [anon_sym_typedef] = ACTIONS(4321), + [anon_sym_virtual] = ACTIONS(4321), + [anon_sym_extern] = ACTIONS(4321), + [anon_sym___attribute__] = ACTIONS(4321), + [anon_sym___attribute] = ACTIONS(4321), + [anon_sym_using] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4323), + [anon_sym___declspec] = ACTIONS(4321), + [anon_sym___based] = ACTIONS(4321), + [anon_sym_RBRACE] = ACTIONS(4323), + [anon_sym_signed] = ACTIONS(4321), + [anon_sym_unsigned] = ACTIONS(4321), + [anon_sym_long] = ACTIONS(4321), + [anon_sym_short] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_static] = ACTIONS(4321), + [anon_sym_register] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym___inline] = ACTIONS(4321), + [anon_sym___inline__] = ACTIONS(4321), + [anon_sym___forceinline] = ACTIONS(4321), + [anon_sym_thread_local] = ACTIONS(4321), + [anon_sym___thread] = ACTIONS(4321), + [anon_sym_const] = ACTIONS(4321), + [anon_sym_constexpr] = ACTIONS(4321), + [anon_sym_volatile] = ACTIONS(4321), + [anon_sym_restrict] = ACTIONS(4321), + [anon_sym___restrict__] = ACTIONS(4321), + [anon_sym__Atomic] = ACTIONS(4321), + [anon_sym__Noreturn] = ACTIONS(4321), + [anon_sym_noreturn] = ACTIONS(4321), + [anon_sym__Nonnull] = ACTIONS(4321), + [anon_sym_mutable] = ACTIONS(4321), + [anon_sym_constinit] = ACTIONS(4321), + [anon_sym_consteval] = ACTIONS(4321), + [anon_sym_alignas] = ACTIONS(4321), + [anon_sym__Alignas] = ACTIONS(4321), + [sym_primitive_type] = ACTIONS(4321), + [anon_sym_enum] = ACTIONS(4321), + [anon_sym_class] = ACTIONS(4321), + [anon_sym_struct] = ACTIONS(4321), + [anon_sym_union] = ACTIONS(4321), + [anon_sym_typename] = ACTIONS(4321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4321), + [anon_sym_decltype] = ACTIONS(4321), + [anon_sym_explicit] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_template] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_friend] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_static_assert] = ACTIONS(4321), + [anon_sym_LBRACK_COLON] = ACTIONS(4323), }, - [STATE(3297)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token2] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_private] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_friend] = ACTIONS(3600), - [anon_sym_public] = ACTIONS(3600), - [anon_sym_protected] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), + [STATE(3254)] = { + [sym_identifier] = ACTIONS(3710), + [aux_sym_preproc_def_token1] = ACTIONS(3710), + [aux_sym_preproc_if_token1] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3710), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3710), + [sym_preproc_directive] = ACTIONS(3710), + [anon_sym_LPAREN2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3712), + [anon_sym_STAR] = ACTIONS(3712), + [anon_sym_AMP_AMP] = ACTIONS(3712), + [anon_sym_AMP] = ACTIONS(3710), + [anon_sym_SEMI] = ACTIONS(3712), + [anon_sym___extension__] = ACTIONS(3710), + [anon_sym_typedef] = ACTIONS(3710), + [anon_sym_virtual] = ACTIONS(3710), + [anon_sym_extern] = ACTIONS(3710), + [anon_sym___attribute__] = ACTIONS(3710), + [anon_sym___attribute] = ACTIONS(3710), + [anon_sym_using] = ACTIONS(3710), + [anon_sym_COLON_COLON] = ACTIONS(3712), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3712), + [anon_sym___declspec] = ACTIONS(3710), + [anon_sym___based] = ACTIONS(3710), + [anon_sym_RBRACE] = ACTIONS(3712), + [anon_sym_signed] = ACTIONS(3710), + [anon_sym_unsigned] = ACTIONS(3710), + [anon_sym_long] = ACTIONS(3710), + [anon_sym_short] = ACTIONS(3710), + [anon_sym_LBRACK] = ACTIONS(3710), + [anon_sym_static] = ACTIONS(3710), + [anon_sym_register] = ACTIONS(3710), + [anon_sym_inline] = ACTIONS(3710), + [anon_sym___inline] = ACTIONS(3710), + [anon_sym___inline__] = ACTIONS(3710), + [anon_sym___forceinline] = ACTIONS(3710), + [anon_sym_thread_local] = ACTIONS(3710), + [anon_sym___thread] = ACTIONS(3710), + [anon_sym_const] = ACTIONS(3710), + [anon_sym_constexpr] = ACTIONS(3710), + [anon_sym_volatile] = ACTIONS(3710), + [anon_sym_restrict] = ACTIONS(3710), + [anon_sym___restrict__] = ACTIONS(3710), + [anon_sym__Atomic] = ACTIONS(3710), + [anon_sym__Noreturn] = ACTIONS(3710), + [anon_sym_noreturn] = ACTIONS(3710), + [anon_sym__Nonnull] = ACTIONS(3710), + [anon_sym_mutable] = ACTIONS(3710), + [anon_sym_constinit] = ACTIONS(3710), + [anon_sym_consteval] = ACTIONS(3710), + [anon_sym_alignas] = ACTIONS(3710), + [anon_sym__Alignas] = ACTIONS(3710), + [sym_primitive_type] = ACTIONS(3710), + [anon_sym_enum] = ACTIONS(3710), + [anon_sym_class] = ACTIONS(3710), + [anon_sym_struct] = ACTIONS(3710), + [anon_sym_union] = ACTIONS(3710), + [anon_sym_typename] = ACTIONS(3710), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3710), + [anon_sym_decltype] = ACTIONS(3710), + [anon_sym_explicit] = ACTIONS(3710), + [anon_sym_private] = ACTIONS(3710), + [anon_sym_template] = ACTIONS(3710), + [anon_sym_operator] = ACTIONS(3710), + [anon_sym_friend] = ACTIONS(3710), + [anon_sym_public] = ACTIONS(3710), + [anon_sym_protected] = ACTIONS(3710), + [anon_sym_static_assert] = ACTIONS(3710), + [anon_sym_LBRACK_COLON] = ACTIONS(3712), }, - [STATE(3298)] = { - [sym_identifier] = ACTIONS(8826), - [aux_sym_preproc_def_token1] = ACTIONS(8826), - [aux_sym_preproc_if_token1] = ACTIONS(8826), - [aux_sym_preproc_if_token2] = ACTIONS(8826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8826), - [sym_preproc_directive] = ACTIONS(8826), - [anon_sym_LPAREN2] = ACTIONS(8828), - [anon_sym_TILDE] = ACTIONS(8828), - [anon_sym_STAR] = ACTIONS(8828), - [anon_sym_AMP_AMP] = ACTIONS(8828), - [anon_sym_AMP] = ACTIONS(8826), - [anon_sym_SEMI] = ACTIONS(8828), - [anon_sym___extension__] = ACTIONS(8826), - [anon_sym_typedef] = ACTIONS(8826), - [anon_sym_virtual] = ACTIONS(8826), - [anon_sym_extern] = ACTIONS(8826), - [anon_sym___attribute__] = ACTIONS(8826), - [anon_sym___attribute] = ACTIONS(8826), - [anon_sym_using] = ACTIONS(8826), - [anon_sym_COLON_COLON] = ACTIONS(8828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8828), - [anon_sym___declspec] = ACTIONS(8826), - [anon_sym___based] = ACTIONS(8826), - [anon_sym_signed] = ACTIONS(8826), - [anon_sym_unsigned] = ACTIONS(8826), - [anon_sym_long] = ACTIONS(8826), - [anon_sym_short] = ACTIONS(8826), - [anon_sym_LBRACK] = ACTIONS(8826), - [anon_sym_static] = ACTIONS(8826), - [anon_sym_register] = ACTIONS(8826), - [anon_sym_inline] = ACTIONS(8826), - [anon_sym___inline] = ACTIONS(8826), - [anon_sym___inline__] = ACTIONS(8826), - [anon_sym___forceinline] = ACTIONS(8826), - [anon_sym_thread_local] = ACTIONS(8826), - [anon_sym___thread] = ACTIONS(8826), - [anon_sym_const] = ACTIONS(8826), - [anon_sym_constexpr] = ACTIONS(8826), - [anon_sym_volatile] = ACTIONS(8826), - [anon_sym_restrict] = ACTIONS(8826), - [anon_sym___restrict__] = ACTIONS(8826), - [anon_sym__Atomic] = ACTIONS(8826), - [anon_sym__Noreturn] = ACTIONS(8826), - [anon_sym_noreturn] = ACTIONS(8826), - [anon_sym__Nonnull] = ACTIONS(8826), - [anon_sym_mutable] = ACTIONS(8826), - [anon_sym_constinit] = ACTIONS(8826), - [anon_sym_consteval] = ACTIONS(8826), - [anon_sym_alignas] = ACTIONS(8826), - [anon_sym__Alignas] = ACTIONS(8826), - [sym_primitive_type] = ACTIONS(8826), - [anon_sym_enum] = ACTIONS(8826), - [anon_sym_class] = ACTIONS(8826), - [anon_sym_struct] = ACTIONS(8826), - [anon_sym_union] = ACTIONS(8826), - [anon_sym_typename] = ACTIONS(8826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8826), - [anon_sym_decltype] = ACTIONS(8826), - [anon_sym_explicit] = ACTIONS(8826), - [anon_sym_private] = ACTIONS(8826), - [anon_sym_template] = ACTIONS(8826), - [anon_sym_operator] = ACTIONS(8826), - [anon_sym_friend] = ACTIONS(8826), - [anon_sym_public] = ACTIONS(8826), - [anon_sym_protected] = ACTIONS(8826), - [anon_sym_static_assert] = ACTIONS(8826), - [anon_sym_LBRACK_COLON] = ACTIONS(8828), + [STATE(3255)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3377), + [sym_identifier] = ACTIONS(7731), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), + [anon_sym_COMMA] = ACTIONS(7733), + [aux_sym_preproc_if_token2] = ACTIONS(7733), + [aux_sym_preproc_else_token1] = ACTIONS(7733), + [aux_sym_preproc_elif_token1] = ACTIONS(7731), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7733), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7733), + [anon_sym_LPAREN2] = ACTIONS(7733), + [anon_sym_DASH] = ACTIONS(7731), + [anon_sym_PLUS] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7733), + [anon_sym_SLASH] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7733), + [anon_sym_PIPE_PIPE] = ACTIONS(7733), + [anon_sym_AMP_AMP] = ACTIONS(7733), + [anon_sym_PIPE] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7733), + [anon_sym_AMP] = ACTIONS(7731), + [anon_sym_EQ_EQ] = ACTIONS(7733), + [anon_sym_BANG_EQ] = ACTIONS(7733), + [anon_sym_GT] = ACTIONS(7731), + [anon_sym_GT_EQ] = ACTIONS(7733), + [anon_sym_LT_EQ] = ACTIONS(7731), + [anon_sym_LT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7733), + [anon_sym_GT_GT] = ACTIONS(7733), + [anon_sym___extension__] = ACTIONS(7731), + [anon_sym___attribute__] = ACTIONS(7731), + [anon_sym___attribute] = ACTIONS(7731), + [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_signed] = ACTIONS(9095), + [anon_sym_unsigned] = ACTIONS(9095), + [anon_sym_long] = ACTIONS(9095), + [anon_sym_short] = ACTIONS(9095), + [anon_sym_LBRACK] = ACTIONS(7733), + [anon_sym_RBRACK] = ACTIONS(7733), + [anon_sym_const] = ACTIONS(7731), + [anon_sym_constexpr] = ACTIONS(7731), + [anon_sym_volatile] = ACTIONS(7731), + [anon_sym_restrict] = ACTIONS(7731), + [anon_sym___restrict__] = ACTIONS(7731), + [anon_sym__Atomic] = ACTIONS(7731), + [anon_sym__Noreturn] = ACTIONS(7731), + [anon_sym_noreturn] = ACTIONS(7731), + [anon_sym__Nonnull] = ACTIONS(7731), + [anon_sym_mutable] = ACTIONS(7731), + [anon_sym_constinit] = ACTIONS(7731), + [anon_sym_consteval] = ACTIONS(7731), + [anon_sym_alignas] = ACTIONS(7731), + [anon_sym__Alignas] = ACTIONS(7731), + [anon_sym_QMARK] = ACTIONS(7733), + [anon_sym_LT_EQ_GT] = ACTIONS(7733), + [anon_sym_or] = ACTIONS(7731), + [anon_sym_and] = ACTIONS(7731), + [anon_sym_bitor] = ACTIONS(7731), + [anon_sym_xor] = ACTIONS(7731), + [anon_sym_bitand] = ACTIONS(7731), + [anon_sym_not_eq] = ACTIONS(7731), + [anon_sym_DASH_DASH] = ACTIONS(7733), + [anon_sym_PLUS_PLUS] = ACTIONS(7733), + [anon_sym_DOT] = ACTIONS(7731), + [anon_sym_DOT_STAR] = ACTIONS(7733), + [anon_sym_DASH_GT] = ACTIONS(7733), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7731), + [anon_sym_override] = ACTIONS(7731), + [anon_sym_requires] = ACTIONS(7731), }, - [STATE(3299)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3295), - [sym_identifier] = ACTIONS(7693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), - [anon_sym_COMMA] = ACTIONS(7695), - [aux_sym_preproc_if_token2] = ACTIONS(7695), - [aux_sym_preproc_else_token1] = ACTIONS(7695), - [aux_sym_preproc_elif_token1] = ACTIONS(7693), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7695), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7695), - [anon_sym_LPAREN2] = ACTIONS(7695), - [anon_sym_DASH] = ACTIONS(7693), - [anon_sym_PLUS] = ACTIONS(7693), - [anon_sym_STAR] = ACTIONS(7695), - [anon_sym_SLASH] = ACTIONS(7693), - [anon_sym_PERCENT] = ACTIONS(7695), - [anon_sym_PIPE_PIPE] = ACTIONS(7695), - [anon_sym_AMP_AMP] = ACTIONS(7695), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_CARET] = ACTIONS(7695), - [anon_sym_AMP] = ACTIONS(7693), - [anon_sym_EQ_EQ] = ACTIONS(7695), - [anon_sym_BANG_EQ] = ACTIONS(7695), - [anon_sym_GT] = ACTIONS(7693), - [anon_sym_GT_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7693), - [anon_sym_LT_LT] = ACTIONS(7695), - [anon_sym_GT_GT] = ACTIONS(7695), - [anon_sym___extension__] = ACTIONS(7693), - [anon_sym___attribute__] = ACTIONS(7693), - [anon_sym___attribute] = ACTIONS(7693), - [anon_sym_LBRACE] = ACTIONS(7695), - [anon_sym_signed] = ACTIONS(9101), - [anon_sym_unsigned] = ACTIONS(9101), - [anon_sym_long] = ACTIONS(9101), - [anon_sym_short] = ACTIONS(9101), - [anon_sym_LBRACK] = ACTIONS(7695), - [anon_sym_RBRACK] = ACTIONS(7695), - [anon_sym_const] = ACTIONS(7693), - [anon_sym_constexpr] = ACTIONS(7693), - [anon_sym_volatile] = ACTIONS(7693), - [anon_sym_restrict] = ACTIONS(7693), - [anon_sym___restrict__] = ACTIONS(7693), - [anon_sym__Atomic] = ACTIONS(7693), - [anon_sym__Noreturn] = ACTIONS(7693), - [anon_sym_noreturn] = ACTIONS(7693), - [anon_sym__Nonnull] = ACTIONS(7693), - [anon_sym_mutable] = ACTIONS(7693), - [anon_sym_constinit] = ACTIONS(7693), - [anon_sym_consteval] = ACTIONS(7693), - [anon_sym_alignas] = ACTIONS(7693), - [anon_sym__Alignas] = ACTIONS(7693), - [anon_sym_QMARK] = ACTIONS(7695), - [anon_sym_LT_EQ_GT] = ACTIONS(7695), - [anon_sym_or] = ACTIONS(7693), - [anon_sym_and] = ACTIONS(7693), - [anon_sym_bitor] = ACTIONS(7693), - [anon_sym_xor] = ACTIONS(7693), - [anon_sym_bitand] = ACTIONS(7693), - [anon_sym_not_eq] = ACTIONS(7693), - [anon_sym_DASH_DASH] = ACTIONS(7695), - [anon_sym_PLUS_PLUS] = ACTIONS(7695), - [anon_sym_DOT] = ACTIONS(7693), - [anon_sym_DOT_STAR] = ACTIONS(7695), - [anon_sym_DASH_GT] = ACTIONS(7695), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7693), - [anon_sym_override] = ACTIONS(7693), - [anon_sym_requires] = ACTIONS(7693), + [STATE(3256)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3377), + [sym_identifier] = ACTIONS(7739), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), + [anon_sym_COMMA] = ACTIONS(7741), + [aux_sym_preproc_if_token2] = ACTIONS(7741), + [aux_sym_preproc_else_token1] = ACTIONS(7741), + [aux_sym_preproc_elif_token1] = ACTIONS(7739), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7741), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7741), + [anon_sym_LPAREN2] = ACTIONS(7741), + [anon_sym_DASH] = ACTIONS(7739), + [anon_sym_PLUS] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7741), + [anon_sym_SLASH] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7741), + [anon_sym_PIPE_PIPE] = ACTIONS(7741), + [anon_sym_AMP_AMP] = ACTIONS(7741), + [anon_sym_PIPE] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7741), + [anon_sym_AMP] = ACTIONS(7739), + [anon_sym_EQ_EQ] = ACTIONS(7741), + [anon_sym_BANG_EQ] = ACTIONS(7741), + [anon_sym_GT] = ACTIONS(7739), + [anon_sym_GT_EQ] = ACTIONS(7741), + [anon_sym_LT_EQ] = ACTIONS(7739), + [anon_sym_LT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7741), + [anon_sym_GT_GT] = ACTIONS(7741), + [anon_sym___extension__] = ACTIONS(7739), + [anon_sym___attribute__] = ACTIONS(7739), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_signed] = ACTIONS(9095), + [anon_sym_unsigned] = ACTIONS(9095), + [anon_sym_long] = ACTIONS(9095), + [anon_sym_short] = ACTIONS(9095), + [anon_sym_LBRACK] = ACTIONS(7741), + [anon_sym_RBRACK] = ACTIONS(7741), + [anon_sym_const] = ACTIONS(7739), + [anon_sym_constexpr] = ACTIONS(7739), + [anon_sym_volatile] = ACTIONS(7739), + [anon_sym_restrict] = ACTIONS(7739), + [anon_sym___restrict__] = ACTIONS(7739), + [anon_sym__Atomic] = ACTIONS(7739), + [anon_sym__Noreturn] = ACTIONS(7739), + [anon_sym_noreturn] = ACTIONS(7739), + [anon_sym__Nonnull] = ACTIONS(7739), + [anon_sym_mutable] = ACTIONS(7739), + [anon_sym_constinit] = ACTIONS(7739), + [anon_sym_consteval] = ACTIONS(7739), + [anon_sym_alignas] = ACTIONS(7739), + [anon_sym__Alignas] = ACTIONS(7739), + [anon_sym_QMARK] = ACTIONS(7741), + [anon_sym_LT_EQ_GT] = ACTIONS(7741), + [anon_sym_or] = ACTIONS(7739), + [anon_sym_and] = ACTIONS(7739), + [anon_sym_bitor] = ACTIONS(7739), + [anon_sym_xor] = ACTIONS(7739), + [anon_sym_bitand] = ACTIONS(7739), + [anon_sym_not_eq] = ACTIONS(7739), + [anon_sym_DASH_DASH] = ACTIONS(7741), + [anon_sym_PLUS_PLUS] = ACTIONS(7741), + [anon_sym_DOT] = ACTIONS(7739), + [anon_sym_DOT_STAR] = ACTIONS(7741), + [anon_sym_DASH_GT] = ACTIONS(7741), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7739), + [anon_sym_override] = ACTIONS(7739), + [anon_sym_requires] = ACTIONS(7739), }, - [STATE(3300)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3295), - [sym_identifier] = ACTIONS(7697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), - [anon_sym_COMMA] = ACTIONS(7699), - [aux_sym_preproc_if_token2] = ACTIONS(7699), - [aux_sym_preproc_else_token1] = ACTIONS(7699), - [aux_sym_preproc_elif_token1] = ACTIONS(7697), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7699), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7699), - [anon_sym_LPAREN2] = ACTIONS(7699), - [anon_sym_DASH] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7697), - [anon_sym_STAR] = ACTIONS(7699), - [anon_sym_SLASH] = ACTIONS(7697), - [anon_sym_PERCENT] = ACTIONS(7699), - [anon_sym_PIPE_PIPE] = ACTIONS(7699), - [anon_sym_AMP_AMP] = ACTIONS(7699), - [anon_sym_PIPE] = ACTIONS(7697), - [anon_sym_CARET] = ACTIONS(7699), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_EQ_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7699), - [anon_sym_GT] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_LT] = ACTIONS(7697), - [anon_sym_LT_LT] = ACTIONS(7699), - [anon_sym_GT_GT] = ACTIONS(7699), - [anon_sym___extension__] = ACTIONS(7697), - [anon_sym___attribute__] = ACTIONS(7697), - [anon_sym___attribute] = ACTIONS(7697), - [anon_sym_LBRACE] = ACTIONS(7699), - [anon_sym_signed] = ACTIONS(9101), - [anon_sym_unsigned] = ACTIONS(9101), - [anon_sym_long] = ACTIONS(9101), - [anon_sym_short] = ACTIONS(9101), - [anon_sym_LBRACK] = ACTIONS(7699), - [anon_sym_RBRACK] = ACTIONS(7699), - [anon_sym_const] = ACTIONS(7697), - [anon_sym_constexpr] = ACTIONS(7697), - [anon_sym_volatile] = ACTIONS(7697), - [anon_sym_restrict] = ACTIONS(7697), - [anon_sym___restrict__] = ACTIONS(7697), - [anon_sym__Atomic] = ACTIONS(7697), - [anon_sym__Noreturn] = ACTIONS(7697), - [anon_sym_noreturn] = ACTIONS(7697), - [anon_sym__Nonnull] = ACTIONS(7697), - [anon_sym_mutable] = ACTIONS(7697), - [anon_sym_constinit] = ACTIONS(7697), - [anon_sym_consteval] = ACTIONS(7697), - [anon_sym_alignas] = ACTIONS(7697), - [anon_sym__Alignas] = ACTIONS(7697), - [anon_sym_QMARK] = ACTIONS(7699), - [anon_sym_LT_EQ_GT] = ACTIONS(7699), - [anon_sym_or] = ACTIONS(7697), - [anon_sym_and] = ACTIONS(7697), - [anon_sym_bitor] = ACTIONS(7697), - [anon_sym_xor] = ACTIONS(7697), - [anon_sym_bitand] = ACTIONS(7697), - [anon_sym_not_eq] = ACTIONS(7697), - [anon_sym_DASH_DASH] = ACTIONS(7699), - [anon_sym_PLUS_PLUS] = ACTIONS(7699), - [anon_sym_DOT] = ACTIONS(7697), - [anon_sym_DOT_STAR] = ACTIONS(7699), - [anon_sym_DASH_GT] = ACTIONS(7699), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7697), - [anon_sym_override] = ACTIONS(7697), - [anon_sym_requires] = ACTIONS(7697), + [STATE(3257)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3317), + [sym_identifier] = ACTIONS(7755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [aux_sym_preproc_if_token2] = ACTIONS(7757), + [aux_sym_preproc_else_token1] = ACTIONS(7757), + [aux_sym_preproc_elif_token1] = ACTIONS(7755), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7757), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7757), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7757), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7757), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7757), + [anon_sym_GT_GT] = ACTIONS(7757), + [anon_sym___extension__] = ACTIONS(7755), + [anon_sym___attribute__] = ACTIONS(7755), + [anon_sym___attribute] = ACTIONS(7755), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_signed] = ACTIONS(9097), + [anon_sym_unsigned] = ACTIONS(9097), + [anon_sym_long] = ACTIONS(9097), + [anon_sym_short] = ACTIONS(9097), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_RBRACK] = ACTIONS(7757), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7755), + [anon_sym_volatile] = ACTIONS(7755), + [anon_sym_restrict] = ACTIONS(7755), + [anon_sym___restrict__] = ACTIONS(7755), + [anon_sym__Atomic] = ACTIONS(7755), + [anon_sym__Noreturn] = ACTIONS(7755), + [anon_sym_noreturn] = ACTIONS(7755), + [anon_sym__Nonnull] = ACTIONS(7755), + [anon_sym_mutable] = ACTIONS(7755), + [anon_sym_constinit] = ACTIONS(7755), + [anon_sym_consteval] = ACTIONS(7755), + [anon_sym_alignas] = ACTIONS(7755), + [anon_sym__Alignas] = ACTIONS(7755), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7755), + [anon_sym_and] = ACTIONS(7755), + [anon_sym_bitor] = ACTIONS(7755), + [anon_sym_xor] = ACTIONS(7755), + [anon_sym_bitand] = ACTIONS(7755), + [anon_sym_not_eq] = ACTIONS(7755), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7757), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7755), + [anon_sym_override] = ACTIONS(7755), + [anon_sym_requires] = ACTIONS(7755), }, - [STATE(3301)] = { + [STATE(3258)] = { [aux_sym_sized_type_specifier_repeat1] = STATE(3319), - [sym_identifier] = ACTIONS(7701), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), - [anon_sym_COMMA] = ACTIONS(7703), - [aux_sym_preproc_if_token2] = ACTIONS(7703), - [aux_sym_preproc_else_token1] = ACTIONS(7703), - [aux_sym_preproc_elif_token1] = ACTIONS(7701), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7703), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7703), - [anon_sym_LPAREN2] = ACTIONS(7703), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_STAR] = ACTIONS(7703), - [anon_sym_SLASH] = ACTIONS(7701), - [anon_sym_PERCENT] = ACTIONS(7703), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_AMP_AMP] = ACTIONS(7703), - [anon_sym_PIPE] = ACTIONS(7701), - [anon_sym_CARET] = ACTIONS(7703), - [anon_sym_AMP] = ACTIONS(7701), - [anon_sym_EQ_EQ] = ACTIONS(7703), - [anon_sym_BANG_EQ] = ACTIONS(7703), - [anon_sym_GT] = ACTIONS(7701), - [anon_sym_GT_EQ] = ACTIONS(7703), - [anon_sym_LT_EQ] = ACTIONS(7701), - [anon_sym_LT] = ACTIONS(7701), - [anon_sym_LT_LT] = ACTIONS(7703), - [anon_sym_GT_GT] = ACTIONS(7703), - [anon_sym___extension__] = ACTIONS(7701), - [anon_sym___attribute__] = ACTIONS(7701), - [anon_sym___attribute] = ACTIONS(7701), - [anon_sym_LBRACE] = ACTIONS(7703), - [anon_sym_signed] = ACTIONS(9110), - [anon_sym_unsigned] = ACTIONS(9110), - [anon_sym_long] = ACTIONS(9110), - [anon_sym_short] = ACTIONS(9110), - [anon_sym_LBRACK] = ACTIONS(7703), - [anon_sym_RBRACK] = ACTIONS(7703), - [anon_sym_const] = ACTIONS(7701), - [anon_sym_constexpr] = ACTIONS(7701), - [anon_sym_volatile] = ACTIONS(7701), - [anon_sym_restrict] = ACTIONS(7701), - [anon_sym___restrict__] = ACTIONS(7701), - [anon_sym__Atomic] = ACTIONS(7701), - [anon_sym__Noreturn] = ACTIONS(7701), - [anon_sym_noreturn] = ACTIONS(7701), - [anon_sym__Nonnull] = ACTIONS(7701), - [anon_sym_mutable] = ACTIONS(7701), - [anon_sym_constinit] = ACTIONS(7701), - [anon_sym_consteval] = ACTIONS(7701), - [anon_sym_alignas] = ACTIONS(7701), - [anon_sym__Alignas] = ACTIONS(7701), - [anon_sym_QMARK] = ACTIONS(7703), - [anon_sym_LT_EQ_GT] = ACTIONS(7703), - [anon_sym_or] = ACTIONS(7701), - [anon_sym_and] = ACTIONS(7701), - [anon_sym_bitor] = ACTIONS(7701), - [anon_sym_xor] = ACTIONS(7701), - [anon_sym_bitand] = ACTIONS(7701), - [anon_sym_not_eq] = ACTIONS(7701), - [anon_sym_DASH_DASH] = ACTIONS(7703), - [anon_sym_PLUS_PLUS] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(7701), - [anon_sym_DOT_STAR] = ACTIONS(7703), - [anon_sym_DASH_GT] = ACTIONS(7703), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7701), - [anon_sym_override] = ACTIONS(7701), - [anon_sym_requires] = ACTIONS(7701), - }, - [STATE(3302)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3320), - [sym_identifier] = ACTIONS(7707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), - [anon_sym_COMMA] = ACTIONS(7709), - [aux_sym_preproc_if_token2] = ACTIONS(7709), - [aux_sym_preproc_else_token1] = ACTIONS(7709), - [aux_sym_preproc_elif_token1] = ACTIONS(7707), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7709), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7709), - [anon_sym_LPAREN2] = ACTIONS(7709), - [anon_sym_DASH] = ACTIONS(7707), - [anon_sym_PLUS] = ACTIONS(7707), - [anon_sym_STAR] = ACTIONS(7709), - [anon_sym_SLASH] = ACTIONS(7707), - [anon_sym_PERCENT] = ACTIONS(7709), - [anon_sym_PIPE_PIPE] = ACTIONS(7709), - [anon_sym_AMP_AMP] = ACTIONS(7709), - [anon_sym_PIPE] = ACTIONS(7707), - [anon_sym_CARET] = ACTIONS(7709), - [anon_sym_AMP] = ACTIONS(7707), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_BANG_EQ] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7707), - [anon_sym_GT_EQ] = ACTIONS(7709), - [anon_sym_LT_EQ] = ACTIONS(7707), - [anon_sym_LT] = ACTIONS(7707), - [anon_sym_LT_LT] = ACTIONS(7709), - [anon_sym_GT_GT] = ACTIONS(7709), - [anon_sym___extension__] = ACTIONS(7707), - [anon_sym___attribute__] = ACTIONS(7707), - [anon_sym___attribute] = ACTIONS(7707), - [anon_sym_LBRACE] = ACTIONS(7709), - [anon_sym_signed] = ACTIONS(9112), - [anon_sym_unsigned] = ACTIONS(9112), - [anon_sym_long] = ACTIONS(9112), - [anon_sym_short] = ACTIONS(9112), - [anon_sym_LBRACK] = ACTIONS(7709), - [anon_sym_RBRACK] = ACTIONS(7709), - [anon_sym_const] = ACTIONS(7707), - [anon_sym_constexpr] = ACTIONS(7707), - [anon_sym_volatile] = ACTIONS(7707), - [anon_sym_restrict] = ACTIONS(7707), - [anon_sym___restrict__] = ACTIONS(7707), - [anon_sym__Atomic] = ACTIONS(7707), - [anon_sym__Noreturn] = ACTIONS(7707), - [anon_sym_noreturn] = ACTIONS(7707), - [anon_sym__Nonnull] = ACTIONS(7707), - [anon_sym_mutable] = ACTIONS(7707), - [anon_sym_constinit] = ACTIONS(7707), - [anon_sym_consteval] = ACTIONS(7707), - [anon_sym_alignas] = ACTIONS(7707), - [anon_sym__Alignas] = ACTIONS(7707), - [anon_sym_QMARK] = ACTIONS(7709), - [anon_sym_LT_EQ_GT] = ACTIONS(7709), - [anon_sym_or] = ACTIONS(7707), - [anon_sym_and] = ACTIONS(7707), - [anon_sym_bitor] = ACTIONS(7707), - [anon_sym_xor] = ACTIONS(7707), - [anon_sym_bitand] = ACTIONS(7707), - [anon_sym_not_eq] = ACTIONS(7707), - [anon_sym_DASH_DASH] = ACTIONS(7709), - [anon_sym_PLUS_PLUS] = ACTIONS(7709), - [anon_sym_DOT] = ACTIONS(7707), - [anon_sym_DOT_STAR] = ACTIONS(7709), - [anon_sym_DASH_GT] = ACTIONS(7709), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7707), - [anon_sym_override] = ACTIONS(7707), - [anon_sym_requires] = ACTIONS(7707), - }, - [STATE(3303)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3295), - [sym_identifier] = ACTIONS(7713), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), - [anon_sym_COMMA] = ACTIONS(7715), - [aux_sym_preproc_if_token2] = ACTIONS(7715), - [aux_sym_preproc_else_token1] = ACTIONS(7715), - [aux_sym_preproc_elif_token1] = ACTIONS(7713), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7715), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7715), - [anon_sym_LPAREN2] = ACTIONS(7715), - [anon_sym_DASH] = ACTIONS(7713), - [anon_sym_PLUS] = ACTIONS(7713), - [anon_sym_STAR] = ACTIONS(7715), - [anon_sym_SLASH] = ACTIONS(7713), - [anon_sym_PERCENT] = ACTIONS(7715), - [anon_sym_PIPE_PIPE] = ACTIONS(7715), - [anon_sym_AMP_AMP] = ACTIONS(7715), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_CARET] = ACTIONS(7715), - [anon_sym_AMP] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7715), - [anon_sym_BANG_EQ] = ACTIONS(7715), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_EQ] = ACTIONS(7715), - [anon_sym_LT_EQ] = ACTIONS(7713), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_LT_LT] = ACTIONS(7715), - [anon_sym_GT_GT] = ACTIONS(7715), - [anon_sym___extension__] = ACTIONS(7713), - [anon_sym___attribute__] = ACTIONS(7713), - [anon_sym___attribute] = ACTIONS(7713), - [anon_sym_LBRACE] = ACTIONS(7715), - [anon_sym_signed] = ACTIONS(9101), - [anon_sym_unsigned] = ACTIONS(9101), - [anon_sym_long] = ACTIONS(9101), - [anon_sym_short] = ACTIONS(9101), - [anon_sym_LBRACK] = ACTIONS(7715), - [anon_sym_RBRACK] = ACTIONS(7715), - [anon_sym_const] = ACTIONS(7713), - [anon_sym_constexpr] = ACTIONS(7713), - [anon_sym_volatile] = ACTIONS(7713), - [anon_sym_restrict] = ACTIONS(7713), - [anon_sym___restrict__] = ACTIONS(7713), - [anon_sym__Atomic] = ACTIONS(7713), - [anon_sym__Noreturn] = ACTIONS(7713), - [anon_sym_noreturn] = ACTIONS(7713), - [anon_sym__Nonnull] = ACTIONS(7713), - [anon_sym_mutable] = ACTIONS(7713), - [anon_sym_constinit] = ACTIONS(7713), - [anon_sym_consteval] = ACTIONS(7713), - [anon_sym_alignas] = ACTIONS(7713), - [anon_sym__Alignas] = ACTIONS(7713), - [anon_sym_QMARK] = ACTIONS(7715), - [anon_sym_LT_EQ_GT] = ACTIONS(7715), - [anon_sym_or] = ACTIONS(7713), - [anon_sym_and] = ACTIONS(7713), - [anon_sym_bitor] = ACTIONS(7713), - [anon_sym_xor] = ACTIONS(7713), - [anon_sym_bitand] = ACTIONS(7713), - [anon_sym_not_eq] = ACTIONS(7713), - [anon_sym_DASH_DASH] = ACTIONS(7715), - [anon_sym_PLUS_PLUS] = ACTIONS(7715), - [anon_sym_DOT] = ACTIONS(7713), - [anon_sym_DOT_STAR] = ACTIONS(7715), - [anon_sym_DASH_GT] = ACTIONS(7715), + [sym_identifier] = ACTIONS(7769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7771), + [anon_sym_COMMA] = ACTIONS(7771), + [aux_sym_preproc_if_token2] = ACTIONS(7771), + [aux_sym_preproc_else_token1] = ACTIONS(7771), + [aux_sym_preproc_elif_token1] = ACTIONS(7769), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7771), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7771), + [anon_sym_LPAREN2] = ACTIONS(7771), + [anon_sym_DASH] = ACTIONS(7769), + [anon_sym_PLUS] = ACTIONS(7769), + [anon_sym_STAR] = ACTIONS(7771), + [anon_sym_SLASH] = ACTIONS(7769), + [anon_sym_PERCENT] = ACTIONS(7771), + [anon_sym_PIPE_PIPE] = ACTIONS(7771), + [anon_sym_AMP_AMP] = ACTIONS(7771), + [anon_sym_PIPE] = ACTIONS(7769), + [anon_sym_CARET] = ACTIONS(7771), + [anon_sym_AMP] = ACTIONS(7769), + [anon_sym_EQ_EQ] = ACTIONS(7771), + [anon_sym_BANG_EQ] = ACTIONS(7771), + [anon_sym_GT] = ACTIONS(7769), + [anon_sym_GT_EQ] = ACTIONS(7771), + [anon_sym_LT_EQ] = ACTIONS(7769), + [anon_sym_LT] = ACTIONS(7769), + [anon_sym_LT_LT] = ACTIONS(7771), + [anon_sym_GT_GT] = ACTIONS(7771), + [anon_sym___extension__] = ACTIONS(7769), + [anon_sym___attribute__] = ACTIONS(7769), + [anon_sym___attribute] = ACTIONS(7769), + [anon_sym_LBRACE] = ACTIONS(7771), + [anon_sym_signed] = ACTIONS(9099), + [anon_sym_unsigned] = ACTIONS(9099), + [anon_sym_long] = ACTIONS(9099), + [anon_sym_short] = ACTIONS(9099), + [anon_sym_LBRACK] = ACTIONS(7771), + [anon_sym_RBRACK] = ACTIONS(7771), + [anon_sym_const] = ACTIONS(7769), + [anon_sym_constexpr] = ACTIONS(7769), + [anon_sym_volatile] = ACTIONS(7769), + [anon_sym_restrict] = ACTIONS(7769), + [anon_sym___restrict__] = ACTIONS(7769), + [anon_sym__Atomic] = ACTIONS(7769), + [anon_sym__Noreturn] = ACTIONS(7769), + [anon_sym_noreturn] = ACTIONS(7769), + [anon_sym__Nonnull] = ACTIONS(7769), + [anon_sym_mutable] = ACTIONS(7769), + [anon_sym_constinit] = ACTIONS(7769), + [anon_sym_consteval] = ACTIONS(7769), + [anon_sym_alignas] = ACTIONS(7769), + [anon_sym__Alignas] = ACTIONS(7769), + [anon_sym_QMARK] = ACTIONS(7771), + [anon_sym_LT_EQ_GT] = ACTIONS(7771), + [anon_sym_or] = ACTIONS(7769), + [anon_sym_and] = ACTIONS(7769), + [anon_sym_bitor] = ACTIONS(7769), + [anon_sym_xor] = ACTIONS(7769), + [anon_sym_bitand] = ACTIONS(7769), + [anon_sym_not_eq] = ACTIONS(7769), + [anon_sym_DASH_DASH] = ACTIONS(7771), + [anon_sym_PLUS_PLUS] = ACTIONS(7771), + [anon_sym_DOT] = ACTIONS(7769), + [anon_sym_DOT_STAR] = ACTIONS(7771), + [anon_sym_DASH_GT] = ACTIONS(7771), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7713), - [anon_sym_override] = ACTIONS(7713), - [anon_sym_requires] = ACTIONS(7713), + [anon_sym_final] = ACTIONS(7769), + [anon_sym_override] = ACTIONS(7769), + [anon_sym_requires] = ACTIONS(7769), }, - [STATE(3304)] = { - [sym_identifier] = ACTIONS(8734), - [aux_sym_preproc_def_token1] = ACTIONS(8734), - [aux_sym_preproc_if_token1] = ACTIONS(8734), - [aux_sym_preproc_if_token2] = ACTIONS(8734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8734), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8734), - [sym_preproc_directive] = ACTIONS(8734), - [anon_sym_LPAREN2] = ACTIONS(8736), - [anon_sym_TILDE] = ACTIONS(8736), - [anon_sym_STAR] = ACTIONS(8736), - [anon_sym_AMP_AMP] = ACTIONS(8736), - [anon_sym_AMP] = ACTIONS(8734), - [anon_sym_SEMI] = ACTIONS(8736), - [anon_sym___extension__] = ACTIONS(8734), - [anon_sym_typedef] = ACTIONS(8734), - [anon_sym_virtual] = ACTIONS(8734), - [anon_sym_extern] = ACTIONS(8734), - [anon_sym___attribute__] = ACTIONS(8734), - [anon_sym___attribute] = ACTIONS(8734), - [anon_sym_using] = ACTIONS(8734), - [anon_sym_COLON_COLON] = ACTIONS(8736), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8736), - [anon_sym___declspec] = ACTIONS(8734), - [anon_sym___based] = ACTIONS(8734), - [anon_sym_signed] = ACTIONS(8734), - [anon_sym_unsigned] = ACTIONS(8734), - [anon_sym_long] = ACTIONS(8734), - [anon_sym_short] = ACTIONS(8734), - [anon_sym_LBRACK] = ACTIONS(8734), - [anon_sym_static] = ACTIONS(8734), - [anon_sym_register] = ACTIONS(8734), - [anon_sym_inline] = ACTIONS(8734), - [anon_sym___inline] = ACTIONS(8734), - [anon_sym___inline__] = ACTIONS(8734), - [anon_sym___forceinline] = ACTIONS(8734), - [anon_sym_thread_local] = ACTIONS(8734), - [anon_sym___thread] = ACTIONS(8734), - [anon_sym_const] = ACTIONS(8734), - [anon_sym_constexpr] = ACTIONS(8734), - [anon_sym_volatile] = ACTIONS(8734), - [anon_sym_restrict] = ACTIONS(8734), - [anon_sym___restrict__] = ACTIONS(8734), - [anon_sym__Atomic] = ACTIONS(8734), - [anon_sym__Noreturn] = ACTIONS(8734), - [anon_sym_noreturn] = ACTIONS(8734), - [anon_sym__Nonnull] = ACTIONS(8734), - [anon_sym_mutable] = ACTIONS(8734), - [anon_sym_constinit] = ACTIONS(8734), - [anon_sym_consteval] = ACTIONS(8734), - [anon_sym_alignas] = ACTIONS(8734), - [anon_sym__Alignas] = ACTIONS(8734), - [sym_primitive_type] = ACTIONS(8734), - [anon_sym_enum] = ACTIONS(8734), - [anon_sym_class] = ACTIONS(8734), - [anon_sym_struct] = ACTIONS(8734), - [anon_sym_union] = ACTIONS(8734), - [anon_sym_typename] = ACTIONS(8734), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8734), - [anon_sym_decltype] = ACTIONS(8734), - [anon_sym_explicit] = ACTIONS(8734), - [anon_sym_private] = ACTIONS(8734), - [anon_sym_template] = ACTIONS(8734), - [anon_sym_operator] = ACTIONS(8734), - [anon_sym_friend] = ACTIONS(8734), - [anon_sym_public] = ACTIONS(8734), - [anon_sym_protected] = ACTIONS(8734), - [anon_sym_static_assert] = ACTIONS(8734), - [anon_sym_LBRACK_COLON] = ACTIONS(8736), + [STATE(3259)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3377), + [sym_identifier] = ACTIONS(7560), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7562), + [anon_sym_COMMA] = ACTIONS(7562), + [aux_sym_preproc_if_token2] = ACTIONS(7562), + [aux_sym_preproc_else_token1] = ACTIONS(7562), + [aux_sym_preproc_elif_token1] = ACTIONS(7560), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7562), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7562), + [anon_sym_LPAREN2] = ACTIONS(7562), + [anon_sym_DASH] = ACTIONS(7560), + [anon_sym_PLUS] = ACTIONS(7560), + [anon_sym_STAR] = ACTIONS(7562), + [anon_sym_SLASH] = ACTIONS(7560), + [anon_sym_PERCENT] = ACTIONS(7562), + [anon_sym_PIPE_PIPE] = ACTIONS(7562), + [anon_sym_AMP_AMP] = ACTIONS(7562), + [anon_sym_PIPE] = ACTIONS(7560), + [anon_sym_CARET] = ACTIONS(7562), + [anon_sym_AMP] = ACTIONS(7560), + [anon_sym_EQ_EQ] = ACTIONS(7562), + [anon_sym_BANG_EQ] = ACTIONS(7562), + [anon_sym_GT] = ACTIONS(7560), + [anon_sym_GT_EQ] = ACTIONS(7562), + [anon_sym_LT_EQ] = ACTIONS(7560), + [anon_sym_LT] = ACTIONS(7560), + [anon_sym_LT_LT] = ACTIONS(7562), + [anon_sym_GT_GT] = ACTIONS(7562), + [anon_sym___extension__] = ACTIONS(7560), + [anon_sym___attribute__] = ACTIONS(7560), + [anon_sym___attribute] = ACTIONS(7560), + [anon_sym_LBRACE] = ACTIONS(7562), + [anon_sym_signed] = ACTIONS(9095), + [anon_sym_unsigned] = ACTIONS(9095), + [anon_sym_long] = ACTIONS(9095), + [anon_sym_short] = ACTIONS(9095), + [anon_sym_LBRACK] = ACTIONS(7562), + [anon_sym_RBRACK] = ACTIONS(7562), + [anon_sym_const] = ACTIONS(7560), + [anon_sym_constexpr] = ACTIONS(7560), + [anon_sym_volatile] = ACTIONS(7560), + [anon_sym_restrict] = ACTIONS(7560), + [anon_sym___restrict__] = ACTIONS(7560), + [anon_sym__Atomic] = ACTIONS(7560), + [anon_sym__Noreturn] = ACTIONS(7560), + [anon_sym_noreturn] = ACTIONS(7560), + [anon_sym__Nonnull] = ACTIONS(7560), + [anon_sym_mutable] = ACTIONS(7560), + [anon_sym_constinit] = ACTIONS(7560), + [anon_sym_consteval] = ACTIONS(7560), + [anon_sym_alignas] = ACTIONS(7560), + [anon_sym__Alignas] = ACTIONS(7560), + [anon_sym_QMARK] = ACTIONS(7562), + [anon_sym_LT_EQ_GT] = ACTIONS(7562), + [anon_sym_or] = ACTIONS(7560), + [anon_sym_and] = ACTIONS(7560), + [anon_sym_bitor] = ACTIONS(7560), + [anon_sym_xor] = ACTIONS(7560), + [anon_sym_bitand] = ACTIONS(7560), + [anon_sym_not_eq] = ACTIONS(7560), + [anon_sym_DASH_DASH] = ACTIONS(7562), + [anon_sym_PLUS_PLUS] = ACTIONS(7562), + [anon_sym_DOT] = ACTIONS(7560), + [anon_sym_DOT_STAR] = ACTIONS(7562), + [anon_sym_DASH_GT] = ACTIONS(7562), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7560), + [anon_sym_override] = ACTIONS(7560), + [anon_sym_requires] = ACTIONS(7560), }, - [STATE(3305)] = { - [sym_identifier] = ACTIONS(8790), - [aux_sym_preproc_def_token1] = ACTIONS(8790), - [aux_sym_preproc_if_token1] = ACTIONS(8790), - [aux_sym_preproc_if_token2] = ACTIONS(8790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8790), - [sym_preproc_directive] = ACTIONS(8790), - [anon_sym_LPAREN2] = ACTIONS(8792), - [anon_sym_TILDE] = ACTIONS(8792), - [anon_sym_STAR] = ACTIONS(8792), - [anon_sym_AMP_AMP] = ACTIONS(8792), - [anon_sym_AMP] = ACTIONS(8790), - [anon_sym_SEMI] = ACTIONS(8792), - [anon_sym___extension__] = ACTIONS(8790), - [anon_sym_typedef] = ACTIONS(8790), - [anon_sym_virtual] = ACTIONS(8790), - [anon_sym_extern] = ACTIONS(8790), - [anon_sym___attribute__] = ACTIONS(8790), - [anon_sym___attribute] = ACTIONS(8790), - [anon_sym_using] = ACTIONS(8790), - [anon_sym_COLON_COLON] = ACTIONS(8792), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8792), - [anon_sym___declspec] = ACTIONS(8790), - [anon_sym___based] = ACTIONS(8790), - [anon_sym_signed] = ACTIONS(8790), - [anon_sym_unsigned] = ACTIONS(8790), - [anon_sym_long] = ACTIONS(8790), - [anon_sym_short] = ACTIONS(8790), - [anon_sym_LBRACK] = ACTIONS(8790), - [anon_sym_static] = ACTIONS(8790), - [anon_sym_register] = ACTIONS(8790), - [anon_sym_inline] = ACTIONS(8790), - [anon_sym___inline] = ACTIONS(8790), - [anon_sym___inline__] = ACTIONS(8790), - [anon_sym___forceinline] = ACTIONS(8790), - [anon_sym_thread_local] = ACTIONS(8790), - [anon_sym___thread] = ACTIONS(8790), - [anon_sym_const] = ACTIONS(8790), - [anon_sym_constexpr] = ACTIONS(8790), - [anon_sym_volatile] = ACTIONS(8790), - [anon_sym_restrict] = ACTIONS(8790), - [anon_sym___restrict__] = ACTIONS(8790), - [anon_sym__Atomic] = ACTIONS(8790), - [anon_sym__Noreturn] = ACTIONS(8790), - [anon_sym_noreturn] = ACTIONS(8790), - [anon_sym__Nonnull] = ACTIONS(8790), - [anon_sym_mutable] = ACTIONS(8790), - [anon_sym_constinit] = ACTIONS(8790), - [anon_sym_consteval] = ACTIONS(8790), - [anon_sym_alignas] = ACTIONS(8790), - [anon_sym__Alignas] = ACTIONS(8790), - [sym_primitive_type] = ACTIONS(8790), - [anon_sym_enum] = ACTIONS(8790), - [anon_sym_class] = ACTIONS(8790), - [anon_sym_struct] = ACTIONS(8790), - [anon_sym_union] = ACTIONS(8790), - [anon_sym_typename] = ACTIONS(8790), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8790), - [anon_sym_decltype] = ACTIONS(8790), - [anon_sym_explicit] = ACTIONS(8790), - [anon_sym_private] = ACTIONS(8790), - [anon_sym_template] = ACTIONS(8790), - [anon_sym_operator] = ACTIONS(8790), - [anon_sym_friend] = ACTIONS(8790), - [anon_sym_public] = ACTIONS(8790), - [anon_sym_protected] = ACTIONS(8790), - [anon_sym_static_assert] = ACTIONS(8790), - [anon_sym_LBRACK_COLON] = ACTIONS(8792), + [STATE(3260)] = { + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token2] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_private] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_friend] = ACTIONS(3782), + [anon_sym_public] = ACTIONS(3782), + [anon_sym_protected] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), }, - [STATE(3306)] = { - [sym_identifier] = ACTIONS(3604), - [aux_sym_preproc_def_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token2] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), - [sym_preproc_directive] = ACTIONS(3604), - [anon_sym_LPAREN2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym___extension__] = ACTIONS(3604), - [anon_sym_typedef] = ACTIONS(3604), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_extern] = ACTIONS(3604), - [anon_sym___attribute__] = ACTIONS(3604), - [anon_sym___attribute] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_COLON_COLON] = ACTIONS(3606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), - [anon_sym___declspec] = ACTIONS(3604), - [anon_sym___based] = ACTIONS(3604), - [anon_sym_signed] = ACTIONS(3604), - [anon_sym_unsigned] = ACTIONS(3604), - [anon_sym_long] = ACTIONS(3604), - [anon_sym_short] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_register] = ACTIONS(3604), - [anon_sym_inline] = ACTIONS(3604), - [anon_sym___inline] = ACTIONS(3604), - [anon_sym___inline__] = ACTIONS(3604), - [anon_sym___forceinline] = ACTIONS(3604), - [anon_sym_thread_local] = ACTIONS(3604), - [anon_sym___thread] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_constexpr] = ACTIONS(3604), - [anon_sym_volatile] = ACTIONS(3604), - [anon_sym_restrict] = ACTIONS(3604), - [anon_sym___restrict__] = ACTIONS(3604), - [anon_sym__Atomic] = ACTIONS(3604), - [anon_sym__Noreturn] = ACTIONS(3604), - [anon_sym_noreturn] = ACTIONS(3604), - [anon_sym__Nonnull] = ACTIONS(3604), - [anon_sym_mutable] = ACTIONS(3604), - [anon_sym_constinit] = ACTIONS(3604), - [anon_sym_consteval] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3604), - [anon_sym__Alignas] = ACTIONS(3604), - [sym_primitive_type] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_union] = ACTIONS(3604), - [anon_sym_typename] = ACTIONS(3604), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3604), - [anon_sym_decltype] = ACTIONS(3604), - [anon_sym_explicit] = ACTIONS(3604), - [anon_sym_private] = ACTIONS(3604), - [anon_sym_template] = ACTIONS(3604), - [anon_sym_operator] = ACTIONS(3604), - [anon_sym_friend] = ACTIONS(3604), - [anon_sym_public] = ACTIONS(3604), - [anon_sym_protected] = ACTIONS(3604), - [anon_sym_static_assert] = ACTIONS(3604), - [anon_sym_LBRACK_COLON] = ACTIONS(3606), + [STATE(3261)] = { + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token2] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_private] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_friend] = ACTIONS(3782), + [anon_sym_public] = ACTIONS(3782), + [anon_sym_protected] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), }, - [STATE(3307)] = { - [sym_identifier] = ACTIONS(8643), - [aux_sym_preproc_def_token1] = ACTIONS(8643), - [aux_sym_preproc_if_token1] = ACTIONS(8643), - [aux_sym_preproc_if_token2] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), - [sym_preproc_directive] = ACTIONS(8643), - [anon_sym_LPAREN2] = ACTIONS(8645), - [anon_sym_TILDE] = ACTIONS(8645), - [anon_sym_STAR] = ACTIONS(8645), - [anon_sym_AMP_AMP] = ACTIONS(8645), - [anon_sym_AMP] = ACTIONS(8643), - [anon_sym_SEMI] = ACTIONS(8645), - [anon_sym___extension__] = ACTIONS(8643), - [anon_sym_typedef] = ACTIONS(8643), - [anon_sym_virtual] = ACTIONS(8643), - [anon_sym_extern] = ACTIONS(8643), - [anon_sym___attribute__] = ACTIONS(8643), - [anon_sym___attribute] = ACTIONS(8643), - [anon_sym_using] = ACTIONS(8643), - [anon_sym_COLON_COLON] = ACTIONS(8645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), - [anon_sym___declspec] = ACTIONS(8643), - [anon_sym___based] = ACTIONS(8643), - [anon_sym_signed] = ACTIONS(8643), - [anon_sym_unsigned] = ACTIONS(8643), - [anon_sym_long] = ACTIONS(8643), - [anon_sym_short] = ACTIONS(8643), - [anon_sym_LBRACK] = ACTIONS(8643), - [anon_sym_static] = ACTIONS(8643), - [anon_sym_register] = ACTIONS(8643), - [anon_sym_inline] = ACTIONS(8643), - [anon_sym___inline] = ACTIONS(8643), - [anon_sym___inline__] = ACTIONS(8643), - [anon_sym___forceinline] = ACTIONS(8643), - [anon_sym_thread_local] = ACTIONS(8643), - [anon_sym___thread] = ACTIONS(8643), - [anon_sym_const] = ACTIONS(8643), - [anon_sym_constexpr] = ACTIONS(8643), - [anon_sym_volatile] = ACTIONS(8643), - [anon_sym_restrict] = ACTIONS(8643), - [anon_sym___restrict__] = ACTIONS(8643), - [anon_sym__Atomic] = ACTIONS(8643), - [anon_sym__Noreturn] = ACTIONS(8643), - [anon_sym_noreturn] = ACTIONS(8643), - [anon_sym__Nonnull] = ACTIONS(8643), - [anon_sym_mutable] = ACTIONS(8643), - [anon_sym_constinit] = ACTIONS(8643), - [anon_sym_consteval] = ACTIONS(8643), - [anon_sym_alignas] = ACTIONS(8643), - [anon_sym__Alignas] = ACTIONS(8643), - [sym_primitive_type] = ACTIONS(8643), - [anon_sym_enum] = ACTIONS(8643), - [anon_sym_class] = ACTIONS(8643), - [anon_sym_struct] = ACTIONS(8643), - [anon_sym_union] = ACTIONS(8643), - [anon_sym_typename] = ACTIONS(8643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8643), - [anon_sym_decltype] = ACTIONS(8643), - [anon_sym_explicit] = ACTIONS(8643), - [anon_sym_private] = ACTIONS(8643), - [anon_sym_template] = ACTIONS(8643), - [anon_sym_operator] = ACTIONS(8643), - [anon_sym_friend] = ACTIONS(8643), - [anon_sym_public] = ACTIONS(8643), - [anon_sym_protected] = ACTIONS(8643), - [anon_sym_static_assert] = ACTIONS(8643), - [anon_sym_LBRACK_COLON] = ACTIONS(8645), + [STATE(3262)] = { + [sym_identifier] = ACTIONS(8681), + [aux_sym_preproc_def_token1] = ACTIONS(8681), + [aux_sym_preproc_if_token1] = ACTIONS(8681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8681), + [sym_preproc_directive] = ACTIONS(8681), + [anon_sym_LPAREN2] = ACTIONS(8683), + [anon_sym_TILDE] = ACTIONS(8683), + [anon_sym_STAR] = ACTIONS(8683), + [anon_sym_AMP_AMP] = ACTIONS(8683), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_SEMI] = ACTIONS(8683), + [anon_sym___extension__] = ACTIONS(8681), + [anon_sym_typedef] = ACTIONS(8681), + [anon_sym_virtual] = ACTIONS(8681), + [anon_sym_extern] = ACTIONS(8681), + [anon_sym___attribute__] = ACTIONS(8681), + [anon_sym___attribute] = ACTIONS(8681), + [anon_sym_using] = ACTIONS(8681), + [anon_sym_COLON_COLON] = ACTIONS(8683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8683), + [anon_sym___declspec] = ACTIONS(8681), + [anon_sym___based] = ACTIONS(8681), + [anon_sym_RBRACE] = ACTIONS(8683), + [anon_sym_signed] = ACTIONS(8681), + [anon_sym_unsigned] = ACTIONS(8681), + [anon_sym_long] = ACTIONS(8681), + [anon_sym_short] = ACTIONS(8681), + [anon_sym_LBRACK] = ACTIONS(8681), + [anon_sym_static] = ACTIONS(8681), + [anon_sym_register] = ACTIONS(8681), + [anon_sym_inline] = ACTIONS(8681), + [anon_sym___inline] = ACTIONS(8681), + [anon_sym___inline__] = ACTIONS(8681), + [anon_sym___forceinline] = ACTIONS(8681), + [anon_sym_thread_local] = ACTIONS(8681), + [anon_sym___thread] = ACTIONS(8681), + [anon_sym_const] = ACTIONS(8681), + [anon_sym_constexpr] = ACTIONS(8681), + [anon_sym_volatile] = ACTIONS(8681), + [anon_sym_restrict] = ACTIONS(8681), + [anon_sym___restrict__] = ACTIONS(8681), + [anon_sym__Atomic] = ACTIONS(8681), + [anon_sym__Noreturn] = ACTIONS(8681), + [anon_sym_noreturn] = ACTIONS(8681), + [anon_sym__Nonnull] = ACTIONS(8681), + [anon_sym_mutable] = ACTIONS(8681), + [anon_sym_constinit] = ACTIONS(8681), + [anon_sym_consteval] = ACTIONS(8681), + [anon_sym_alignas] = ACTIONS(8681), + [anon_sym__Alignas] = ACTIONS(8681), + [sym_primitive_type] = ACTIONS(8681), + [anon_sym_enum] = ACTIONS(8681), + [anon_sym_class] = ACTIONS(8681), + [anon_sym_struct] = ACTIONS(8681), + [anon_sym_union] = ACTIONS(8681), + [anon_sym_typename] = ACTIONS(8681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8681), + [anon_sym_decltype] = ACTIONS(8681), + [anon_sym_explicit] = ACTIONS(8681), + [anon_sym_private] = ACTIONS(8681), + [anon_sym_template] = ACTIONS(8681), + [anon_sym_operator] = ACTIONS(8681), + [anon_sym_friend] = ACTIONS(8681), + [anon_sym_public] = ACTIONS(8681), + [anon_sym_protected] = ACTIONS(8681), + [anon_sym_static_assert] = ACTIONS(8681), + [anon_sym_LBRACK_COLON] = ACTIONS(8683), }, - [STATE(3308)] = { - [sym_identifier] = ACTIONS(8643), - [aux_sym_preproc_def_token1] = ACTIONS(8643), - [aux_sym_preproc_if_token1] = ACTIONS(8643), - [aux_sym_preproc_if_token2] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), - [sym_preproc_directive] = ACTIONS(8643), - [anon_sym_LPAREN2] = ACTIONS(8645), - [anon_sym_TILDE] = ACTIONS(8645), - [anon_sym_STAR] = ACTIONS(8645), - [anon_sym_AMP_AMP] = ACTIONS(8645), - [anon_sym_AMP] = ACTIONS(8643), - [anon_sym_SEMI] = ACTIONS(8645), - [anon_sym___extension__] = ACTIONS(8643), - [anon_sym_typedef] = ACTIONS(8643), - [anon_sym_virtual] = ACTIONS(8643), - [anon_sym_extern] = ACTIONS(8643), - [anon_sym___attribute__] = ACTIONS(8643), - [anon_sym___attribute] = ACTIONS(8643), - [anon_sym_using] = ACTIONS(8643), - [anon_sym_COLON_COLON] = ACTIONS(8645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), - [anon_sym___declspec] = ACTIONS(8643), - [anon_sym___based] = ACTIONS(8643), - [anon_sym_signed] = ACTIONS(8643), - [anon_sym_unsigned] = ACTIONS(8643), - [anon_sym_long] = ACTIONS(8643), - [anon_sym_short] = ACTIONS(8643), - [anon_sym_LBRACK] = ACTIONS(8643), - [anon_sym_static] = ACTIONS(8643), - [anon_sym_register] = ACTIONS(8643), - [anon_sym_inline] = ACTIONS(8643), - [anon_sym___inline] = ACTIONS(8643), - [anon_sym___inline__] = ACTIONS(8643), - [anon_sym___forceinline] = ACTIONS(8643), - [anon_sym_thread_local] = ACTIONS(8643), - [anon_sym___thread] = ACTIONS(8643), - [anon_sym_const] = ACTIONS(8643), - [anon_sym_constexpr] = ACTIONS(8643), - [anon_sym_volatile] = ACTIONS(8643), - [anon_sym_restrict] = ACTIONS(8643), - [anon_sym___restrict__] = ACTIONS(8643), - [anon_sym__Atomic] = ACTIONS(8643), - [anon_sym__Noreturn] = ACTIONS(8643), - [anon_sym_noreturn] = ACTIONS(8643), - [anon_sym__Nonnull] = ACTIONS(8643), - [anon_sym_mutable] = ACTIONS(8643), - [anon_sym_constinit] = ACTIONS(8643), - [anon_sym_consteval] = ACTIONS(8643), - [anon_sym_alignas] = ACTIONS(8643), - [anon_sym__Alignas] = ACTIONS(8643), - [sym_primitive_type] = ACTIONS(8643), - [anon_sym_enum] = ACTIONS(8643), - [anon_sym_class] = ACTIONS(8643), - [anon_sym_struct] = ACTIONS(8643), - [anon_sym_union] = ACTIONS(8643), - [anon_sym_typename] = ACTIONS(8643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8643), - [anon_sym_decltype] = ACTIONS(8643), - [anon_sym_explicit] = ACTIONS(8643), - [anon_sym_private] = ACTIONS(8643), - [anon_sym_template] = ACTIONS(8643), - [anon_sym_operator] = ACTIONS(8643), - [anon_sym_friend] = ACTIONS(8643), - [anon_sym_public] = ACTIONS(8643), - [anon_sym_protected] = ACTIONS(8643), - [anon_sym_static_assert] = ACTIONS(8643), - [anon_sym_LBRACK_COLON] = ACTIONS(8645), + [STATE(3263)] = { + [sym_identifier] = ACTIONS(3858), + [aux_sym_preproc_def_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3858), + [sym_preproc_directive] = ACTIONS(3858), + [anon_sym_LPAREN2] = ACTIONS(3860), + [anon_sym_TILDE] = ACTIONS(3860), + [anon_sym_STAR] = ACTIONS(3860), + [anon_sym_AMP_AMP] = ACTIONS(3860), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym___extension__] = ACTIONS(3858), + [anon_sym_typedef] = ACTIONS(3858), + [anon_sym_virtual] = ACTIONS(3858), + [anon_sym_extern] = ACTIONS(3858), + [anon_sym___attribute__] = ACTIONS(3858), + [anon_sym___attribute] = ACTIONS(3858), + [anon_sym_using] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3860), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), + [anon_sym___declspec] = ACTIONS(3858), + [anon_sym___based] = ACTIONS(3858), + [anon_sym_RBRACE] = ACTIONS(3860), + [anon_sym_signed] = ACTIONS(3858), + [anon_sym_unsigned] = ACTIONS(3858), + [anon_sym_long] = ACTIONS(3858), + [anon_sym_short] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3858), + [anon_sym_static] = ACTIONS(3858), + [anon_sym_register] = ACTIONS(3858), + [anon_sym_inline] = ACTIONS(3858), + [anon_sym___inline] = ACTIONS(3858), + [anon_sym___inline__] = ACTIONS(3858), + [anon_sym___forceinline] = ACTIONS(3858), + [anon_sym_thread_local] = ACTIONS(3858), + [anon_sym___thread] = ACTIONS(3858), + [anon_sym_const] = ACTIONS(3858), + [anon_sym_constexpr] = ACTIONS(3858), + [anon_sym_volatile] = ACTIONS(3858), + [anon_sym_restrict] = ACTIONS(3858), + [anon_sym___restrict__] = ACTIONS(3858), + [anon_sym__Atomic] = ACTIONS(3858), + [anon_sym__Noreturn] = ACTIONS(3858), + [anon_sym_noreturn] = ACTIONS(3858), + [anon_sym__Nonnull] = ACTIONS(3858), + [anon_sym_mutable] = ACTIONS(3858), + [anon_sym_constinit] = ACTIONS(3858), + [anon_sym_consteval] = ACTIONS(3858), + [anon_sym_alignas] = ACTIONS(3858), + [anon_sym__Alignas] = ACTIONS(3858), + [sym_primitive_type] = ACTIONS(3858), + [anon_sym_enum] = ACTIONS(3858), + [anon_sym_class] = ACTIONS(3858), + [anon_sym_struct] = ACTIONS(3858), + [anon_sym_union] = ACTIONS(3858), + [anon_sym_typename] = ACTIONS(3858), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3858), + [anon_sym_decltype] = ACTIONS(3858), + [anon_sym_explicit] = ACTIONS(3858), + [anon_sym_private] = ACTIONS(3858), + [anon_sym_template] = ACTIONS(3858), + [anon_sym_operator] = ACTIONS(3858), + [anon_sym_friend] = ACTIONS(3858), + [anon_sym_public] = ACTIONS(3858), + [anon_sym_protected] = ACTIONS(3858), + [anon_sym_static_assert] = ACTIONS(3858), + [anon_sym_LBRACK_COLON] = ACTIONS(3860), }, - [STATE(3309)] = { + [STATE(3264)] = { + [sym_identifier] = ACTIONS(8749), + [aux_sym_preproc_def_token1] = ACTIONS(8749), + [aux_sym_preproc_if_token1] = ACTIONS(8749), + [aux_sym_preproc_if_token2] = ACTIONS(8749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8749), + [sym_preproc_directive] = ACTIONS(8749), + [anon_sym_LPAREN2] = ACTIONS(8751), + [anon_sym_TILDE] = ACTIONS(8751), + [anon_sym_STAR] = ACTIONS(8751), + [anon_sym_AMP_AMP] = ACTIONS(8751), + [anon_sym_AMP] = ACTIONS(8749), + [anon_sym_SEMI] = ACTIONS(8751), + [anon_sym___extension__] = ACTIONS(8749), + [anon_sym_typedef] = ACTIONS(8749), + [anon_sym_virtual] = ACTIONS(8749), + [anon_sym_extern] = ACTIONS(8749), + [anon_sym___attribute__] = ACTIONS(8749), + [anon_sym___attribute] = ACTIONS(8749), + [anon_sym_using] = ACTIONS(8749), + [anon_sym_COLON_COLON] = ACTIONS(8751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8751), + [anon_sym___declspec] = ACTIONS(8749), + [anon_sym___based] = ACTIONS(8749), + [anon_sym_signed] = ACTIONS(8749), + [anon_sym_unsigned] = ACTIONS(8749), + [anon_sym_long] = ACTIONS(8749), + [anon_sym_short] = ACTIONS(8749), + [anon_sym_LBRACK] = ACTIONS(8749), + [anon_sym_static] = ACTIONS(8749), + [anon_sym_register] = ACTIONS(8749), + [anon_sym_inline] = ACTIONS(8749), + [anon_sym___inline] = ACTIONS(8749), + [anon_sym___inline__] = ACTIONS(8749), + [anon_sym___forceinline] = ACTIONS(8749), + [anon_sym_thread_local] = ACTIONS(8749), + [anon_sym___thread] = ACTIONS(8749), + [anon_sym_const] = ACTIONS(8749), + [anon_sym_constexpr] = ACTIONS(8749), + [anon_sym_volatile] = ACTIONS(8749), + [anon_sym_restrict] = ACTIONS(8749), + [anon_sym___restrict__] = ACTIONS(8749), + [anon_sym__Atomic] = ACTIONS(8749), + [anon_sym__Noreturn] = ACTIONS(8749), + [anon_sym_noreturn] = ACTIONS(8749), + [anon_sym__Nonnull] = ACTIONS(8749), + [anon_sym_mutable] = ACTIONS(8749), + [anon_sym_constinit] = ACTIONS(8749), + [anon_sym_consteval] = ACTIONS(8749), + [anon_sym_alignas] = ACTIONS(8749), + [anon_sym__Alignas] = ACTIONS(8749), + [sym_primitive_type] = ACTIONS(8749), + [anon_sym_enum] = ACTIONS(8749), + [anon_sym_class] = ACTIONS(8749), + [anon_sym_struct] = ACTIONS(8749), + [anon_sym_union] = ACTIONS(8749), + [anon_sym_typename] = ACTIONS(8749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8749), + [anon_sym_decltype] = ACTIONS(8749), + [anon_sym_explicit] = ACTIONS(8749), + [anon_sym_private] = ACTIONS(8749), + [anon_sym_template] = ACTIONS(8749), + [anon_sym_operator] = ACTIONS(8749), + [anon_sym_friend] = ACTIONS(8749), + [anon_sym_public] = ACTIONS(8749), + [anon_sym_protected] = ACTIONS(8749), + [anon_sym_static_assert] = ACTIONS(8749), + [anon_sym_LBRACK_COLON] = ACTIONS(8751), + }, + [STATE(3265)] = { [sym_identifier] = ACTIONS(8647), [aux_sym_preproc_def_token1] = ACTIONS(8647), [aux_sym_preproc_if_token1] = ACTIONS(8647), - [aux_sym_preproc_if_token2] = ACTIONS(8647), [aux_sym_preproc_ifdef_token1] = ACTIONS(8647), [aux_sym_preproc_ifdef_token2] = ACTIONS(8647), [sym_preproc_directive] = ACTIONS(8647), @@ -416009,6 +412725,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(8649), [anon_sym___declspec] = ACTIONS(8647), [anon_sym___based] = ACTIONS(8647), + [anon_sym_RBRACE] = ACTIONS(8649), [anon_sym_signed] = ACTIONS(8647), [anon_sym_unsigned] = ACTIONS(8647), [anon_sym_long] = ACTIONS(8647), @@ -416055,2211 +412772,1005 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(8647), [anon_sym_LBRACK_COLON] = ACTIONS(8649), }, - [STATE(3310)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3284), - [sym_identifier] = ACTIONS(7717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [aux_sym_preproc_if_token2] = ACTIONS(7719), - [aux_sym_preproc_else_token1] = ACTIONS(7719), - [aux_sym_preproc_elif_token1] = ACTIONS(7717), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7719), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7719), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7719), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7719), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7719), - [anon_sym_GT_GT] = ACTIONS(7719), - [anon_sym___extension__] = ACTIONS(7717), - [anon_sym___attribute__] = ACTIONS(7717), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_signed] = ACTIONS(9114), - [anon_sym_unsigned] = ACTIONS(9114), - [anon_sym_long] = ACTIONS(9114), - [anon_sym_short] = ACTIONS(9114), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_RBRACK] = ACTIONS(7719), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7717), - [anon_sym_volatile] = ACTIONS(7717), - [anon_sym_restrict] = ACTIONS(7717), - [anon_sym___restrict__] = ACTIONS(7717), - [anon_sym__Atomic] = ACTIONS(7717), - [anon_sym__Noreturn] = ACTIONS(7717), - [anon_sym_noreturn] = ACTIONS(7717), - [anon_sym__Nonnull] = ACTIONS(7717), - [anon_sym_mutable] = ACTIONS(7717), - [anon_sym_constinit] = ACTIONS(7717), - [anon_sym_consteval] = ACTIONS(7717), - [anon_sym_alignas] = ACTIONS(7717), - [anon_sym__Alignas] = ACTIONS(7717), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7717), - [anon_sym_and] = ACTIONS(7717), - [anon_sym_bitor] = ACTIONS(7717), - [anon_sym_xor] = ACTIONS(7717), - [anon_sym_bitand] = ACTIONS(7717), - [anon_sym_not_eq] = ACTIONS(7717), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7719), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7717), - [anon_sym_override] = ACTIONS(7717), - [anon_sym_requires] = ACTIONS(7717), + [STATE(3266)] = { + [sym_identifier] = ACTIONS(3862), + [aux_sym_preproc_def_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token1] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3862), + [sym_preproc_directive] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym___extension__] = ACTIONS(3862), + [anon_sym_typedef] = ACTIONS(3862), + [anon_sym_virtual] = ACTIONS(3862), + [anon_sym_extern] = ACTIONS(3862), + [anon_sym___attribute__] = ACTIONS(3862), + [anon_sym___attribute] = ACTIONS(3862), + [anon_sym_using] = ACTIONS(3862), + [anon_sym_COLON_COLON] = ACTIONS(3864), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), + [anon_sym___declspec] = ACTIONS(3862), + [anon_sym___based] = ACTIONS(3862), + [anon_sym_RBRACE] = ACTIONS(3864), + [anon_sym_signed] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3862), + [anon_sym_long] = ACTIONS(3862), + [anon_sym_short] = ACTIONS(3862), + [anon_sym_LBRACK] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3862), + [anon_sym_register] = ACTIONS(3862), + [anon_sym_inline] = ACTIONS(3862), + [anon_sym___inline] = ACTIONS(3862), + [anon_sym___inline__] = ACTIONS(3862), + [anon_sym___forceinline] = ACTIONS(3862), + [anon_sym_thread_local] = ACTIONS(3862), + [anon_sym___thread] = ACTIONS(3862), + [anon_sym_const] = ACTIONS(3862), + [anon_sym_constexpr] = ACTIONS(3862), + [anon_sym_volatile] = ACTIONS(3862), + [anon_sym_restrict] = ACTIONS(3862), + [anon_sym___restrict__] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3862), + [anon_sym__Noreturn] = ACTIONS(3862), + [anon_sym_noreturn] = ACTIONS(3862), + [anon_sym__Nonnull] = ACTIONS(3862), + [anon_sym_mutable] = ACTIONS(3862), + [anon_sym_constinit] = ACTIONS(3862), + [anon_sym_consteval] = ACTIONS(3862), + [anon_sym_alignas] = ACTIONS(3862), + [anon_sym__Alignas] = ACTIONS(3862), + [sym_primitive_type] = ACTIONS(3862), + [anon_sym_enum] = ACTIONS(3862), + [anon_sym_class] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3862), + [anon_sym_union] = ACTIONS(3862), + [anon_sym_typename] = ACTIONS(3862), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3862), + [anon_sym_decltype] = ACTIONS(3862), + [anon_sym_explicit] = ACTIONS(3862), + [anon_sym_private] = ACTIONS(3862), + [anon_sym_template] = ACTIONS(3862), + [anon_sym_operator] = ACTIONS(3862), + [anon_sym_friend] = ACTIONS(3862), + [anon_sym_public] = ACTIONS(3862), + [anon_sym_protected] = ACTIONS(3862), + [anon_sym_static_assert] = ACTIONS(3862), + [anon_sym_LBRACK_COLON] = ACTIONS(3864), }, - [STATE(3311)] = { - [sym_identifier] = ACTIONS(8661), - [aux_sym_preproc_def_token1] = ACTIONS(8661), - [aux_sym_preproc_if_token1] = ACTIONS(8661), - [aux_sym_preproc_if_token2] = ACTIONS(8661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8661), - [sym_preproc_directive] = ACTIONS(8661), - [anon_sym_LPAREN2] = ACTIONS(8663), - [anon_sym_TILDE] = ACTIONS(8663), - [anon_sym_STAR] = ACTIONS(8663), - [anon_sym_AMP_AMP] = ACTIONS(8663), - [anon_sym_AMP] = ACTIONS(8661), - [anon_sym_SEMI] = ACTIONS(8663), - [anon_sym___extension__] = ACTIONS(8661), - [anon_sym_typedef] = ACTIONS(8661), - [anon_sym_virtual] = ACTIONS(8661), - [anon_sym_extern] = ACTIONS(8661), - [anon_sym___attribute__] = ACTIONS(8661), - [anon_sym___attribute] = ACTIONS(8661), - [anon_sym_using] = ACTIONS(8661), - [anon_sym_COLON_COLON] = ACTIONS(8663), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8663), - [anon_sym___declspec] = ACTIONS(8661), - [anon_sym___based] = ACTIONS(8661), - [anon_sym_signed] = ACTIONS(8661), - [anon_sym_unsigned] = ACTIONS(8661), - [anon_sym_long] = ACTIONS(8661), - [anon_sym_short] = ACTIONS(8661), - [anon_sym_LBRACK] = ACTIONS(8661), - [anon_sym_static] = ACTIONS(8661), - [anon_sym_register] = ACTIONS(8661), - [anon_sym_inline] = ACTIONS(8661), - [anon_sym___inline] = ACTIONS(8661), - [anon_sym___inline__] = ACTIONS(8661), - [anon_sym___forceinline] = ACTIONS(8661), - [anon_sym_thread_local] = ACTIONS(8661), - [anon_sym___thread] = ACTIONS(8661), - [anon_sym_const] = ACTIONS(8661), - [anon_sym_constexpr] = ACTIONS(8661), - [anon_sym_volatile] = ACTIONS(8661), - [anon_sym_restrict] = ACTIONS(8661), - [anon_sym___restrict__] = ACTIONS(8661), - [anon_sym__Atomic] = ACTIONS(8661), - [anon_sym__Noreturn] = ACTIONS(8661), - [anon_sym_noreturn] = ACTIONS(8661), - [anon_sym__Nonnull] = ACTIONS(8661), - [anon_sym_mutable] = ACTIONS(8661), - [anon_sym_constinit] = ACTIONS(8661), - [anon_sym_consteval] = ACTIONS(8661), - [anon_sym_alignas] = ACTIONS(8661), - [anon_sym__Alignas] = ACTIONS(8661), - [sym_primitive_type] = ACTIONS(8661), - [anon_sym_enum] = ACTIONS(8661), - [anon_sym_class] = ACTIONS(8661), - [anon_sym_struct] = ACTIONS(8661), - [anon_sym_union] = ACTIONS(8661), - [anon_sym_typename] = ACTIONS(8661), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8661), - [anon_sym_decltype] = ACTIONS(8661), - [anon_sym_explicit] = ACTIONS(8661), - [anon_sym_private] = ACTIONS(8661), - [anon_sym_template] = ACTIONS(8661), - [anon_sym_operator] = ACTIONS(8661), - [anon_sym_friend] = ACTIONS(8661), - [anon_sym_public] = ACTIONS(8661), - [anon_sym_protected] = ACTIONS(8661), - [anon_sym_static_assert] = ACTIONS(8661), - [anon_sym_LBRACK_COLON] = ACTIONS(8663), + [STATE(3267)] = { + [sym_identifier] = ACTIONS(8651), + [aux_sym_preproc_def_token1] = ACTIONS(8651), + [aux_sym_preproc_if_token1] = ACTIONS(8651), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8651), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8651), + [sym_preproc_directive] = ACTIONS(8651), + [anon_sym_LPAREN2] = ACTIONS(8653), + [anon_sym_TILDE] = ACTIONS(8653), + [anon_sym_STAR] = ACTIONS(8653), + [anon_sym_AMP_AMP] = ACTIONS(8653), + [anon_sym_AMP] = ACTIONS(8651), + [anon_sym_SEMI] = ACTIONS(8653), + [anon_sym___extension__] = ACTIONS(8651), + [anon_sym_typedef] = ACTIONS(8651), + [anon_sym_virtual] = ACTIONS(8651), + [anon_sym_extern] = ACTIONS(8651), + [anon_sym___attribute__] = ACTIONS(8651), + [anon_sym___attribute] = ACTIONS(8651), + [anon_sym_using] = ACTIONS(8651), + [anon_sym_COLON_COLON] = ACTIONS(8653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8653), + [anon_sym___declspec] = ACTIONS(8651), + [anon_sym___based] = ACTIONS(8651), + [anon_sym_RBRACE] = ACTIONS(8653), + [anon_sym_signed] = ACTIONS(8651), + [anon_sym_unsigned] = ACTIONS(8651), + [anon_sym_long] = ACTIONS(8651), + [anon_sym_short] = ACTIONS(8651), + [anon_sym_LBRACK] = ACTIONS(8651), + [anon_sym_static] = ACTIONS(8651), + [anon_sym_register] = ACTIONS(8651), + [anon_sym_inline] = ACTIONS(8651), + [anon_sym___inline] = ACTIONS(8651), + [anon_sym___inline__] = ACTIONS(8651), + [anon_sym___forceinline] = ACTIONS(8651), + [anon_sym_thread_local] = ACTIONS(8651), + [anon_sym___thread] = ACTIONS(8651), + [anon_sym_const] = ACTIONS(8651), + [anon_sym_constexpr] = ACTIONS(8651), + [anon_sym_volatile] = ACTIONS(8651), + [anon_sym_restrict] = ACTIONS(8651), + [anon_sym___restrict__] = ACTIONS(8651), + [anon_sym__Atomic] = ACTIONS(8651), + [anon_sym__Noreturn] = ACTIONS(8651), + [anon_sym_noreturn] = ACTIONS(8651), + [anon_sym__Nonnull] = ACTIONS(8651), + [anon_sym_mutable] = ACTIONS(8651), + [anon_sym_constinit] = ACTIONS(8651), + [anon_sym_consteval] = ACTIONS(8651), + [anon_sym_alignas] = ACTIONS(8651), + [anon_sym__Alignas] = ACTIONS(8651), + [sym_primitive_type] = ACTIONS(8651), + [anon_sym_enum] = ACTIONS(8651), + [anon_sym_class] = ACTIONS(8651), + [anon_sym_struct] = ACTIONS(8651), + [anon_sym_union] = ACTIONS(8651), + [anon_sym_typename] = ACTIONS(8651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8651), + [anon_sym_decltype] = ACTIONS(8651), + [anon_sym_explicit] = ACTIONS(8651), + [anon_sym_private] = ACTIONS(8651), + [anon_sym_template] = ACTIONS(8651), + [anon_sym_operator] = ACTIONS(8651), + [anon_sym_friend] = ACTIONS(8651), + [anon_sym_public] = ACTIONS(8651), + [anon_sym_protected] = ACTIONS(8651), + [anon_sym_static_assert] = ACTIONS(8651), + [anon_sym_LBRACK_COLON] = ACTIONS(8653), }, - [STATE(3312)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_friend] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [STATE(3268)] = { + [sym_identifier] = ACTIONS(3854), + [aux_sym_preproc_def_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token2] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3854), + [sym_preproc_directive] = ACTIONS(3854), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_TILDE] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + [anon_sym_SEMI] = ACTIONS(3856), + [anon_sym___extension__] = ACTIONS(3854), + [anon_sym_typedef] = ACTIONS(3854), + [anon_sym_virtual] = ACTIONS(3854), + [anon_sym_extern] = ACTIONS(3854), + [anon_sym___attribute__] = ACTIONS(3854), + [anon_sym___attribute] = ACTIONS(3854), + [anon_sym_using] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3856), + [anon_sym___declspec] = ACTIONS(3854), + [anon_sym___based] = ACTIONS(3854), + [anon_sym_signed] = ACTIONS(3854), + [anon_sym_unsigned] = ACTIONS(3854), + [anon_sym_long] = ACTIONS(3854), + [anon_sym_short] = ACTIONS(3854), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_static] = ACTIONS(3854), + [anon_sym_register] = ACTIONS(3854), + [anon_sym_inline] = ACTIONS(3854), + [anon_sym___inline] = ACTIONS(3854), + [anon_sym___inline__] = ACTIONS(3854), + [anon_sym___forceinline] = ACTIONS(3854), + [anon_sym_thread_local] = ACTIONS(3854), + [anon_sym___thread] = ACTIONS(3854), + [anon_sym_const] = ACTIONS(3854), + [anon_sym_constexpr] = ACTIONS(3854), + [anon_sym_volatile] = ACTIONS(3854), + [anon_sym_restrict] = ACTIONS(3854), + [anon_sym___restrict__] = ACTIONS(3854), + [anon_sym__Atomic] = ACTIONS(3854), + [anon_sym__Noreturn] = ACTIONS(3854), + [anon_sym_noreturn] = ACTIONS(3854), + [anon_sym__Nonnull] = ACTIONS(3854), + [anon_sym_mutable] = ACTIONS(3854), + [anon_sym_constinit] = ACTIONS(3854), + [anon_sym_consteval] = ACTIONS(3854), + [anon_sym_alignas] = ACTIONS(3854), + [anon_sym__Alignas] = ACTIONS(3854), + [sym_primitive_type] = ACTIONS(3854), + [anon_sym_enum] = ACTIONS(3854), + [anon_sym_class] = ACTIONS(3854), + [anon_sym_struct] = ACTIONS(3854), + [anon_sym_union] = ACTIONS(3854), + [anon_sym_typename] = ACTIONS(3854), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3854), + [anon_sym_decltype] = ACTIONS(3854), + [anon_sym_explicit] = ACTIONS(3854), + [anon_sym_private] = ACTIONS(3854), + [anon_sym_template] = ACTIONS(3854), + [anon_sym_operator] = ACTIONS(3854), + [anon_sym_friend] = ACTIONS(3854), + [anon_sym_public] = ACTIONS(3854), + [anon_sym_protected] = ACTIONS(3854), + [anon_sym_static_assert] = ACTIONS(3854), + [anon_sym_LBRACK_COLON] = ACTIONS(3856), }, - [STATE(3313)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token2] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_friend] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), + [STATE(3269)] = { + [sym_identifier] = ACTIONS(8689), + [aux_sym_preproc_def_token1] = ACTIONS(8689), + [aux_sym_preproc_if_token1] = ACTIONS(8689), + [aux_sym_preproc_if_token2] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8689), + [sym_preproc_directive] = ACTIONS(8689), + [anon_sym_LPAREN2] = ACTIONS(8691), + [anon_sym_TILDE] = ACTIONS(8691), + [anon_sym_STAR] = ACTIONS(8691), + [anon_sym_AMP_AMP] = ACTIONS(8691), + [anon_sym_AMP] = ACTIONS(8689), + [anon_sym_SEMI] = ACTIONS(8691), + [anon_sym___extension__] = ACTIONS(8689), + [anon_sym_typedef] = ACTIONS(8689), + [anon_sym_virtual] = ACTIONS(8689), + [anon_sym_extern] = ACTIONS(8689), + [anon_sym___attribute__] = ACTIONS(8689), + [anon_sym___attribute] = ACTIONS(8689), + [anon_sym_using] = ACTIONS(8689), + [anon_sym_COLON_COLON] = ACTIONS(8691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8691), + [anon_sym___declspec] = ACTIONS(8689), + [anon_sym___based] = ACTIONS(8689), + [anon_sym_signed] = ACTIONS(8689), + [anon_sym_unsigned] = ACTIONS(8689), + [anon_sym_long] = ACTIONS(8689), + [anon_sym_short] = ACTIONS(8689), + [anon_sym_LBRACK] = ACTIONS(8689), + [anon_sym_static] = ACTIONS(8689), + [anon_sym_register] = ACTIONS(8689), + [anon_sym_inline] = ACTIONS(8689), + [anon_sym___inline] = ACTIONS(8689), + [anon_sym___inline__] = ACTIONS(8689), + [anon_sym___forceinline] = ACTIONS(8689), + [anon_sym_thread_local] = ACTIONS(8689), + [anon_sym___thread] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(8689), + [anon_sym_constexpr] = ACTIONS(8689), + [anon_sym_volatile] = ACTIONS(8689), + [anon_sym_restrict] = ACTIONS(8689), + [anon_sym___restrict__] = ACTIONS(8689), + [anon_sym__Atomic] = ACTIONS(8689), + [anon_sym__Noreturn] = ACTIONS(8689), + [anon_sym_noreturn] = ACTIONS(8689), + [anon_sym__Nonnull] = ACTIONS(8689), + [anon_sym_mutable] = ACTIONS(8689), + [anon_sym_constinit] = ACTIONS(8689), + [anon_sym_consteval] = ACTIONS(8689), + [anon_sym_alignas] = ACTIONS(8689), + [anon_sym__Alignas] = ACTIONS(8689), + [sym_primitive_type] = ACTIONS(8689), + [anon_sym_enum] = ACTIONS(8689), + [anon_sym_class] = ACTIONS(8689), + [anon_sym_struct] = ACTIONS(8689), + [anon_sym_union] = ACTIONS(8689), + [anon_sym_typename] = ACTIONS(8689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8689), + [anon_sym_decltype] = ACTIONS(8689), + [anon_sym_explicit] = ACTIONS(8689), + [anon_sym_private] = ACTIONS(8689), + [anon_sym_template] = ACTIONS(8689), + [anon_sym_operator] = ACTIONS(8689), + [anon_sym_friend] = ACTIONS(8689), + [anon_sym_public] = ACTIONS(8689), + [anon_sym_protected] = ACTIONS(8689), + [anon_sym_static_assert] = ACTIONS(8689), + [anon_sym_LBRACK_COLON] = ACTIONS(8691), }, - [STATE(3314)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_friend] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [STATE(3270)] = { + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token2] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_friend] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), }, - [STATE(3315)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token2] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_friend] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), + [STATE(3271)] = { + [sym_identifier] = ACTIONS(8697), + [aux_sym_preproc_def_token1] = ACTIONS(8697), + [aux_sym_preproc_if_token1] = ACTIONS(8697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8697), + [sym_preproc_directive] = ACTIONS(8697), + [anon_sym_LPAREN2] = ACTIONS(8699), + [anon_sym_TILDE] = ACTIONS(8699), + [anon_sym_STAR] = ACTIONS(8699), + [anon_sym_AMP_AMP] = ACTIONS(8699), + [anon_sym_AMP] = ACTIONS(8697), + [anon_sym_SEMI] = ACTIONS(8699), + [anon_sym___extension__] = ACTIONS(8697), + [anon_sym_typedef] = ACTIONS(8697), + [anon_sym_virtual] = ACTIONS(8697), + [anon_sym_extern] = ACTIONS(8697), + [anon_sym___attribute__] = ACTIONS(8697), + [anon_sym___attribute] = ACTIONS(8697), + [anon_sym_using] = ACTIONS(8697), + [anon_sym_COLON_COLON] = ACTIONS(8699), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8699), + [anon_sym___declspec] = ACTIONS(8697), + [anon_sym___based] = ACTIONS(8697), + [anon_sym_RBRACE] = ACTIONS(8699), + [anon_sym_signed] = ACTIONS(8697), + [anon_sym_unsigned] = ACTIONS(8697), + [anon_sym_long] = ACTIONS(8697), + [anon_sym_short] = ACTIONS(8697), + [anon_sym_LBRACK] = ACTIONS(8697), + [anon_sym_static] = ACTIONS(8697), + [anon_sym_register] = ACTIONS(8697), + [anon_sym_inline] = ACTIONS(8697), + [anon_sym___inline] = ACTIONS(8697), + [anon_sym___inline__] = ACTIONS(8697), + [anon_sym___forceinline] = ACTIONS(8697), + [anon_sym_thread_local] = ACTIONS(8697), + [anon_sym___thread] = ACTIONS(8697), + [anon_sym_const] = ACTIONS(8697), + [anon_sym_constexpr] = ACTIONS(8697), + [anon_sym_volatile] = ACTIONS(8697), + [anon_sym_restrict] = ACTIONS(8697), + [anon_sym___restrict__] = ACTIONS(8697), + [anon_sym__Atomic] = ACTIONS(8697), + [anon_sym__Noreturn] = ACTIONS(8697), + [anon_sym_noreturn] = ACTIONS(8697), + [anon_sym__Nonnull] = ACTIONS(8697), + [anon_sym_mutable] = ACTIONS(8697), + [anon_sym_constinit] = ACTIONS(8697), + [anon_sym_consteval] = ACTIONS(8697), + [anon_sym_alignas] = ACTIONS(8697), + [anon_sym__Alignas] = ACTIONS(8697), + [sym_primitive_type] = ACTIONS(8697), + [anon_sym_enum] = ACTIONS(8697), + [anon_sym_class] = ACTIONS(8697), + [anon_sym_struct] = ACTIONS(8697), + [anon_sym_union] = ACTIONS(8697), + [anon_sym_typename] = ACTIONS(8697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8697), + [anon_sym_decltype] = ACTIONS(8697), + [anon_sym_explicit] = ACTIONS(8697), + [anon_sym_private] = ACTIONS(8697), + [anon_sym_template] = ACTIONS(8697), + [anon_sym_operator] = ACTIONS(8697), + [anon_sym_friend] = ACTIONS(8697), + [anon_sym_public] = ACTIONS(8697), + [anon_sym_protected] = ACTIONS(8697), + [anon_sym_static_assert] = ACTIONS(8697), + [anon_sym_LBRACK_COLON] = ACTIONS(8699), }, - [STATE(3316)] = { - [sym_identifier] = ACTIONS(8683), - [aux_sym_preproc_def_token1] = ACTIONS(8683), - [aux_sym_preproc_if_token1] = ACTIONS(8683), - [aux_sym_preproc_if_token2] = ACTIONS(8683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8683), - [sym_preproc_directive] = ACTIONS(8683), - [anon_sym_LPAREN2] = ACTIONS(8685), - [anon_sym_TILDE] = ACTIONS(8685), - [anon_sym_STAR] = ACTIONS(8685), - [anon_sym_AMP_AMP] = ACTIONS(8685), - [anon_sym_AMP] = ACTIONS(8683), - [anon_sym_SEMI] = ACTIONS(8685), - [anon_sym___extension__] = ACTIONS(8683), - [anon_sym_typedef] = ACTIONS(8683), - [anon_sym_virtual] = ACTIONS(8683), - [anon_sym_extern] = ACTIONS(8683), - [anon_sym___attribute__] = ACTIONS(8683), - [anon_sym___attribute] = ACTIONS(8683), - [anon_sym_using] = ACTIONS(8683), - [anon_sym_COLON_COLON] = ACTIONS(8685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8685), - [anon_sym___declspec] = ACTIONS(8683), - [anon_sym___based] = ACTIONS(8683), - [anon_sym_signed] = ACTIONS(8683), - [anon_sym_unsigned] = ACTIONS(8683), - [anon_sym_long] = ACTIONS(8683), - [anon_sym_short] = ACTIONS(8683), - [anon_sym_LBRACK] = ACTIONS(8683), - [anon_sym_static] = ACTIONS(8683), - [anon_sym_register] = ACTIONS(8683), - [anon_sym_inline] = ACTIONS(8683), - [anon_sym___inline] = ACTIONS(8683), - [anon_sym___inline__] = ACTIONS(8683), - [anon_sym___forceinline] = ACTIONS(8683), - [anon_sym_thread_local] = ACTIONS(8683), - [anon_sym___thread] = ACTIONS(8683), - [anon_sym_const] = ACTIONS(8683), - [anon_sym_constexpr] = ACTIONS(8683), - [anon_sym_volatile] = ACTIONS(8683), - [anon_sym_restrict] = ACTIONS(8683), - [anon_sym___restrict__] = ACTIONS(8683), - [anon_sym__Atomic] = ACTIONS(8683), - [anon_sym__Noreturn] = ACTIONS(8683), - [anon_sym_noreturn] = ACTIONS(8683), - [anon_sym__Nonnull] = ACTIONS(8683), - [anon_sym_mutable] = ACTIONS(8683), - [anon_sym_constinit] = ACTIONS(8683), - [anon_sym_consteval] = ACTIONS(8683), - [anon_sym_alignas] = ACTIONS(8683), - [anon_sym__Alignas] = ACTIONS(8683), - [sym_primitive_type] = ACTIONS(8683), - [anon_sym_enum] = ACTIONS(8683), - [anon_sym_class] = ACTIONS(8683), - [anon_sym_struct] = ACTIONS(8683), - [anon_sym_union] = ACTIONS(8683), - [anon_sym_typename] = ACTIONS(8683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8683), - [anon_sym_decltype] = ACTIONS(8683), - [anon_sym_explicit] = ACTIONS(8683), - [anon_sym_private] = ACTIONS(8683), - [anon_sym_template] = ACTIONS(8683), - [anon_sym_operator] = ACTIONS(8683), - [anon_sym_friend] = ACTIONS(8683), - [anon_sym_public] = ACTIONS(8683), - [anon_sym_protected] = ACTIONS(8683), - [anon_sym_static_assert] = ACTIONS(8683), - [anon_sym_LBRACK_COLON] = ACTIONS(8685), + [STATE(3272)] = { + [sym_identifier] = ACTIONS(3778), + [aux_sym_preproc_def_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token1] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3778), + [sym_preproc_directive] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_TILDE] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_AMP_AMP] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym___extension__] = ACTIONS(3778), + [anon_sym_typedef] = ACTIONS(3778), + [anon_sym_virtual] = ACTIONS(3778), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym___attribute__] = ACTIONS(3778), + [anon_sym___attribute] = ACTIONS(3778), + [anon_sym_using] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3780), + [anon_sym___declspec] = ACTIONS(3778), + [anon_sym___based] = ACTIONS(3778), + [anon_sym_RBRACE] = ACTIONS(3780), + [anon_sym_signed] = ACTIONS(3778), + [anon_sym_unsigned] = ACTIONS(3778), + [anon_sym_long] = ACTIONS(3778), + [anon_sym_short] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym___inline] = ACTIONS(3778), + [anon_sym___inline__] = ACTIONS(3778), + [anon_sym___forceinline] = ACTIONS(3778), + [anon_sym_thread_local] = ACTIONS(3778), + [anon_sym___thread] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym___restrict__] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym__Noreturn] = ACTIONS(3778), + [anon_sym_noreturn] = ACTIONS(3778), + [anon_sym__Nonnull] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_constinit] = ACTIONS(3778), + [anon_sym_consteval] = ACTIONS(3778), + [anon_sym_alignas] = ACTIONS(3778), + [anon_sym__Alignas] = ACTIONS(3778), + [sym_primitive_type] = ACTIONS(3778), + [anon_sym_enum] = ACTIONS(3778), + [anon_sym_class] = ACTIONS(3778), + [anon_sym_struct] = ACTIONS(3778), + [anon_sym_union] = ACTIONS(3778), + [anon_sym_typename] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3778), + [anon_sym_decltype] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_private] = ACTIONS(3778), + [anon_sym_template] = ACTIONS(3778), + [anon_sym_operator] = ACTIONS(3778), + [anon_sym_friend] = ACTIONS(3778), + [anon_sym_public] = ACTIONS(3778), + [anon_sym_protected] = ACTIONS(3778), + [anon_sym_static_assert] = ACTIONS(3778), + [anon_sym_LBRACK_COLON] = ACTIONS(3780), }, - [STATE(3317)] = { - [sym_identifier] = ACTIONS(8738), - [aux_sym_preproc_def_token1] = ACTIONS(8738), - [aux_sym_preproc_if_token1] = ACTIONS(8738), - [aux_sym_preproc_if_token2] = ACTIONS(8738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8738), - [sym_preproc_directive] = ACTIONS(8738), - [anon_sym_LPAREN2] = ACTIONS(8740), - [anon_sym_TILDE] = ACTIONS(8740), - [anon_sym_STAR] = ACTIONS(8740), - [anon_sym_AMP_AMP] = ACTIONS(8740), - [anon_sym_AMP] = ACTIONS(8738), - [anon_sym_SEMI] = ACTIONS(8740), - [anon_sym___extension__] = ACTIONS(8738), - [anon_sym_typedef] = ACTIONS(8738), - [anon_sym_virtual] = ACTIONS(8738), - [anon_sym_extern] = ACTIONS(8738), - [anon_sym___attribute__] = ACTIONS(8738), - [anon_sym___attribute] = ACTIONS(8738), - [anon_sym_using] = ACTIONS(8738), - [anon_sym_COLON_COLON] = ACTIONS(8740), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8740), - [anon_sym___declspec] = ACTIONS(8738), - [anon_sym___based] = ACTIONS(8738), - [anon_sym_signed] = ACTIONS(8738), - [anon_sym_unsigned] = ACTIONS(8738), - [anon_sym_long] = ACTIONS(8738), - [anon_sym_short] = ACTIONS(8738), - [anon_sym_LBRACK] = ACTIONS(8738), - [anon_sym_static] = ACTIONS(8738), - [anon_sym_register] = ACTIONS(8738), - [anon_sym_inline] = ACTIONS(8738), - [anon_sym___inline] = ACTIONS(8738), - [anon_sym___inline__] = ACTIONS(8738), - [anon_sym___forceinline] = ACTIONS(8738), - [anon_sym_thread_local] = ACTIONS(8738), - [anon_sym___thread] = ACTIONS(8738), - [anon_sym_const] = ACTIONS(8738), - [anon_sym_constexpr] = ACTIONS(8738), - [anon_sym_volatile] = ACTIONS(8738), - [anon_sym_restrict] = ACTIONS(8738), - [anon_sym___restrict__] = ACTIONS(8738), - [anon_sym__Atomic] = ACTIONS(8738), - [anon_sym__Noreturn] = ACTIONS(8738), - [anon_sym_noreturn] = ACTIONS(8738), - [anon_sym__Nonnull] = ACTIONS(8738), - [anon_sym_mutable] = ACTIONS(8738), - [anon_sym_constinit] = ACTIONS(8738), - [anon_sym_consteval] = ACTIONS(8738), - [anon_sym_alignas] = ACTIONS(8738), - [anon_sym__Alignas] = ACTIONS(8738), - [sym_primitive_type] = ACTIONS(8738), - [anon_sym_enum] = ACTIONS(8738), - [anon_sym_class] = ACTIONS(8738), - [anon_sym_struct] = ACTIONS(8738), - [anon_sym_union] = ACTIONS(8738), - [anon_sym_typename] = ACTIONS(8738), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8738), - [anon_sym_decltype] = ACTIONS(8738), - [anon_sym_explicit] = ACTIONS(8738), - [anon_sym_private] = ACTIONS(8738), - [anon_sym_template] = ACTIONS(8738), - [anon_sym_operator] = ACTIONS(8738), - [anon_sym_friend] = ACTIONS(8738), - [anon_sym_public] = ACTIONS(8738), - [anon_sym_protected] = ACTIONS(8738), - [anon_sym_static_assert] = ACTIONS(8738), - [anon_sym_LBRACK_COLON] = ACTIONS(8740), + [STATE(3273)] = { + [sym_identifier] = ACTIONS(3842), + [aux_sym_preproc_def_token1] = ACTIONS(3842), + [aux_sym_preproc_if_token1] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3842), + [sym_preproc_directive] = ACTIONS(3842), + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_TILDE] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym___extension__] = ACTIONS(3842), + [anon_sym_typedef] = ACTIONS(3842), + [anon_sym_virtual] = ACTIONS(3842), + [anon_sym_extern] = ACTIONS(3842), + [anon_sym___attribute__] = ACTIONS(3842), + [anon_sym___attribute] = ACTIONS(3842), + [anon_sym_using] = ACTIONS(3842), + [anon_sym_COLON_COLON] = ACTIONS(3844), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3844), + [anon_sym___declspec] = ACTIONS(3842), + [anon_sym___based] = ACTIONS(3842), + [anon_sym_RBRACE] = ACTIONS(3844), + [anon_sym_signed] = ACTIONS(3842), + [anon_sym_unsigned] = ACTIONS(3842), + [anon_sym_long] = ACTIONS(3842), + [anon_sym_short] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_static] = ACTIONS(3842), + [anon_sym_register] = ACTIONS(3842), + [anon_sym_inline] = ACTIONS(3842), + [anon_sym___inline] = ACTIONS(3842), + [anon_sym___inline__] = ACTIONS(3842), + [anon_sym___forceinline] = ACTIONS(3842), + [anon_sym_thread_local] = ACTIONS(3842), + [anon_sym___thread] = ACTIONS(3842), + [anon_sym_const] = ACTIONS(3842), + [anon_sym_constexpr] = ACTIONS(3842), + [anon_sym_volatile] = ACTIONS(3842), + [anon_sym_restrict] = ACTIONS(3842), + [anon_sym___restrict__] = ACTIONS(3842), + [anon_sym__Atomic] = ACTIONS(3842), + [anon_sym__Noreturn] = ACTIONS(3842), + [anon_sym_noreturn] = ACTIONS(3842), + [anon_sym__Nonnull] = ACTIONS(3842), + [anon_sym_mutable] = ACTIONS(3842), + [anon_sym_constinit] = ACTIONS(3842), + [anon_sym_consteval] = ACTIONS(3842), + [anon_sym_alignas] = ACTIONS(3842), + [anon_sym__Alignas] = ACTIONS(3842), + [sym_primitive_type] = ACTIONS(3842), + [anon_sym_enum] = ACTIONS(3842), + [anon_sym_class] = ACTIONS(3842), + [anon_sym_struct] = ACTIONS(3842), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_typename] = ACTIONS(3842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3842), + [anon_sym_decltype] = ACTIONS(3842), + [anon_sym_explicit] = ACTIONS(3842), + [anon_sym_private] = ACTIONS(3842), + [anon_sym_template] = ACTIONS(3842), + [anon_sym_operator] = ACTIONS(3842), + [anon_sym_friend] = ACTIONS(3842), + [anon_sym_public] = ACTIONS(3842), + [anon_sym_protected] = ACTIONS(3842), + [anon_sym_static_assert] = ACTIONS(3842), + [anon_sym_LBRACK_COLON] = ACTIONS(3844), }, - [STATE(3318)] = { - [sym_identifier] = ACTIONS(8778), - [aux_sym_preproc_def_token1] = ACTIONS(8778), - [aux_sym_preproc_if_token1] = ACTIONS(8778), - [aux_sym_preproc_if_token2] = ACTIONS(8778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8778), - [sym_preproc_directive] = ACTIONS(8778), - [anon_sym_LPAREN2] = ACTIONS(8780), - [anon_sym_TILDE] = ACTIONS(8780), - [anon_sym_STAR] = ACTIONS(8780), - [anon_sym_AMP_AMP] = ACTIONS(8780), - [anon_sym_AMP] = ACTIONS(8778), - [anon_sym_SEMI] = ACTIONS(8780), - [anon_sym___extension__] = ACTIONS(8778), - [anon_sym_typedef] = ACTIONS(8778), - [anon_sym_virtual] = ACTIONS(8778), - [anon_sym_extern] = ACTIONS(8778), - [anon_sym___attribute__] = ACTIONS(8778), - [anon_sym___attribute] = ACTIONS(8778), - [anon_sym_using] = ACTIONS(8778), - [anon_sym_COLON_COLON] = ACTIONS(8780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8780), - [anon_sym___declspec] = ACTIONS(8778), - [anon_sym___based] = ACTIONS(8778), - [anon_sym_signed] = ACTIONS(8778), - [anon_sym_unsigned] = ACTIONS(8778), - [anon_sym_long] = ACTIONS(8778), - [anon_sym_short] = ACTIONS(8778), - [anon_sym_LBRACK] = ACTIONS(8778), - [anon_sym_static] = ACTIONS(8778), - [anon_sym_register] = ACTIONS(8778), - [anon_sym_inline] = ACTIONS(8778), - [anon_sym___inline] = ACTIONS(8778), - [anon_sym___inline__] = ACTIONS(8778), - [anon_sym___forceinline] = ACTIONS(8778), - [anon_sym_thread_local] = ACTIONS(8778), - [anon_sym___thread] = ACTIONS(8778), - [anon_sym_const] = ACTIONS(8778), - [anon_sym_constexpr] = ACTIONS(8778), - [anon_sym_volatile] = ACTIONS(8778), - [anon_sym_restrict] = ACTIONS(8778), - [anon_sym___restrict__] = ACTIONS(8778), - [anon_sym__Atomic] = ACTIONS(8778), - [anon_sym__Noreturn] = ACTIONS(8778), - [anon_sym_noreturn] = ACTIONS(8778), - [anon_sym__Nonnull] = ACTIONS(8778), - [anon_sym_mutable] = ACTIONS(8778), - [anon_sym_constinit] = ACTIONS(8778), - [anon_sym_consteval] = ACTIONS(8778), - [anon_sym_alignas] = ACTIONS(8778), - [anon_sym__Alignas] = ACTIONS(8778), - [sym_primitive_type] = ACTIONS(8778), - [anon_sym_enum] = ACTIONS(8778), - [anon_sym_class] = ACTIONS(8778), - [anon_sym_struct] = ACTIONS(8778), - [anon_sym_union] = ACTIONS(8778), - [anon_sym_typename] = ACTIONS(8778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8778), - [anon_sym_decltype] = ACTIONS(8778), - [anon_sym_explicit] = ACTIONS(8778), - [anon_sym_private] = ACTIONS(8778), - [anon_sym_template] = ACTIONS(8778), - [anon_sym_operator] = ACTIONS(8778), - [anon_sym_friend] = ACTIONS(8778), - [anon_sym_public] = ACTIONS(8778), - [anon_sym_protected] = ACTIONS(8778), - [anon_sym_static_assert] = ACTIONS(8778), - [anon_sym_LBRACK_COLON] = ACTIONS(8780), + [STATE(3274)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3377), + [sym_identifier] = ACTIONS(7662), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7664), + [anon_sym_COMMA] = ACTIONS(7664), + [aux_sym_preproc_if_token2] = ACTIONS(7664), + [aux_sym_preproc_else_token1] = ACTIONS(7664), + [aux_sym_preproc_elif_token1] = ACTIONS(7662), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7664), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7664), + [anon_sym_LPAREN2] = ACTIONS(7664), + [anon_sym_DASH] = ACTIONS(7662), + [anon_sym_PLUS] = ACTIONS(7662), + [anon_sym_STAR] = ACTIONS(7664), + [anon_sym_SLASH] = ACTIONS(7662), + [anon_sym_PERCENT] = ACTIONS(7664), + [anon_sym_PIPE_PIPE] = ACTIONS(7664), + [anon_sym_AMP_AMP] = ACTIONS(7664), + [anon_sym_PIPE] = ACTIONS(7662), + [anon_sym_CARET] = ACTIONS(7664), + [anon_sym_AMP] = ACTIONS(7662), + [anon_sym_EQ_EQ] = ACTIONS(7664), + [anon_sym_BANG_EQ] = ACTIONS(7664), + [anon_sym_GT] = ACTIONS(7662), + [anon_sym_GT_EQ] = ACTIONS(7664), + [anon_sym_LT_EQ] = ACTIONS(7662), + [anon_sym_LT] = ACTIONS(7662), + [anon_sym_LT_LT] = ACTIONS(7664), + [anon_sym_GT_GT] = ACTIONS(7664), + [anon_sym___extension__] = ACTIONS(7662), + [anon_sym___attribute__] = ACTIONS(7662), + [anon_sym___attribute] = ACTIONS(7662), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_signed] = ACTIONS(9095), + [anon_sym_unsigned] = ACTIONS(9095), + [anon_sym_long] = ACTIONS(9095), + [anon_sym_short] = ACTIONS(9095), + [anon_sym_LBRACK] = ACTIONS(7664), + [anon_sym_RBRACK] = ACTIONS(7664), + [anon_sym_const] = ACTIONS(7662), + [anon_sym_constexpr] = ACTIONS(7662), + [anon_sym_volatile] = ACTIONS(7662), + [anon_sym_restrict] = ACTIONS(7662), + [anon_sym___restrict__] = ACTIONS(7662), + [anon_sym__Atomic] = ACTIONS(7662), + [anon_sym__Noreturn] = ACTIONS(7662), + [anon_sym_noreturn] = ACTIONS(7662), + [anon_sym__Nonnull] = ACTIONS(7662), + [anon_sym_mutable] = ACTIONS(7662), + [anon_sym_constinit] = ACTIONS(7662), + [anon_sym_consteval] = ACTIONS(7662), + [anon_sym_alignas] = ACTIONS(7662), + [anon_sym__Alignas] = ACTIONS(7662), + [anon_sym_QMARK] = ACTIONS(7664), + [anon_sym_LT_EQ_GT] = ACTIONS(7664), + [anon_sym_or] = ACTIONS(7662), + [anon_sym_and] = ACTIONS(7662), + [anon_sym_bitor] = ACTIONS(7662), + [anon_sym_xor] = ACTIONS(7662), + [anon_sym_bitand] = ACTIONS(7662), + [anon_sym_not_eq] = ACTIONS(7662), + [anon_sym_DASH_DASH] = ACTIONS(7664), + [anon_sym_PLUS_PLUS] = ACTIONS(7664), + [anon_sym_DOT] = ACTIONS(7662), + [anon_sym_DOT_STAR] = ACTIONS(7664), + [anon_sym_DASH_GT] = ACTIONS(7664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7662), + [anon_sym_override] = ACTIONS(7662), + [anon_sym_requires] = ACTIONS(7662), }, - [STATE(3319)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3295), - [sym_identifier] = ACTIONS(7723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), - [anon_sym_COMMA] = ACTIONS(7725), - [aux_sym_preproc_if_token2] = ACTIONS(7725), - [aux_sym_preproc_else_token1] = ACTIONS(7725), - [aux_sym_preproc_elif_token1] = ACTIONS(7723), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7725), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7725), - [anon_sym_LPAREN2] = ACTIONS(7725), - [anon_sym_DASH] = ACTIONS(7723), - [anon_sym_PLUS] = ACTIONS(7723), - [anon_sym_STAR] = ACTIONS(7725), - [anon_sym_SLASH] = ACTIONS(7723), - [anon_sym_PERCENT] = ACTIONS(7725), - [anon_sym_PIPE_PIPE] = ACTIONS(7725), - [anon_sym_AMP_AMP] = ACTIONS(7725), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_CARET] = ACTIONS(7725), - [anon_sym_AMP] = ACTIONS(7723), - [anon_sym_EQ_EQ] = ACTIONS(7725), - [anon_sym_BANG_EQ] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_EQ] = ACTIONS(7725), - [anon_sym_LT_EQ] = ACTIONS(7723), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_LT_LT] = ACTIONS(7725), - [anon_sym_GT_GT] = ACTIONS(7725), - [anon_sym___extension__] = ACTIONS(7723), - [anon_sym___attribute__] = ACTIONS(7723), - [anon_sym___attribute] = ACTIONS(7723), - [anon_sym_LBRACE] = ACTIONS(7725), - [anon_sym_signed] = ACTIONS(9101), - [anon_sym_unsigned] = ACTIONS(9101), - [anon_sym_long] = ACTIONS(9101), - [anon_sym_short] = ACTIONS(9101), - [anon_sym_LBRACK] = ACTIONS(7725), - [anon_sym_RBRACK] = ACTIONS(7725), - [anon_sym_const] = ACTIONS(7723), - [anon_sym_constexpr] = ACTIONS(7723), - [anon_sym_volatile] = ACTIONS(7723), - [anon_sym_restrict] = ACTIONS(7723), - [anon_sym___restrict__] = ACTIONS(7723), - [anon_sym__Atomic] = ACTIONS(7723), - [anon_sym__Noreturn] = ACTIONS(7723), - [anon_sym_noreturn] = ACTIONS(7723), - [anon_sym__Nonnull] = ACTIONS(7723), - [anon_sym_mutable] = ACTIONS(7723), - [anon_sym_constinit] = ACTIONS(7723), - [anon_sym_consteval] = ACTIONS(7723), - [anon_sym_alignas] = ACTIONS(7723), - [anon_sym__Alignas] = ACTIONS(7723), - [anon_sym_QMARK] = ACTIONS(7725), - [anon_sym_LT_EQ_GT] = ACTIONS(7725), - [anon_sym_or] = ACTIONS(7723), - [anon_sym_and] = ACTIONS(7723), - [anon_sym_bitor] = ACTIONS(7723), - [anon_sym_xor] = ACTIONS(7723), - [anon_sym_bitand] = ACTIONS(7723), - [anon_sym_not_eq] = ACTIONS(7723), - [anon_sym_DASH_DASH] = ACTIONS(7725), - [anon_sym_PLUS_PLUS] = ACTIONS(7725), - [anon_sym_DOT] = ACTIONS(7723), - [anon_sym_DOT_STAR] = ACTIONS(7725), - [anon_sym_DASH_GT] = ACTIONS(7725), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7723), - [anon_sym_override] = ACTIONS(7723), - [anon_sym_requires] = ACTIONS(7723), + [STATE(3275)] = { + [sym_identifier] = ACTIONS(3909), + [aux_sym_preproc_def_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token2] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3909), + [sym_preproc_directive] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_TILDE] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym___extension__] = ACTIONS(3909), + [anon_sym_typedef] = ACTIONS(3909), + [anon_sym_virtual] = ACTIONS(3909), + [anon_sym_extern] = ACTIONS(3909), + [anon_sym___attribute__] = ACTIONS(3909), + [anon_sym___attribute] = ACTIONS(3909), + [anon_sym_using] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(3911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3911), + [anon_sym___declspec] = ACTIONS(3909), + [anon_sym___based] = ACTIONS(3909), + [anon_sym_signed] = ACTIONS(3909), + [anon_sym_unsigned] = ACTIONS(3909), + [anon_sym_long] = ACTIONS(3909), + [anon_sym_short] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_static] = ACTIONS(3909), + [anon_sym_register] = ACTIONS(3909), + [anon_sym_inline] = ACTIONS(3909), + [anon_sym___inline] = ACTIONS(3909), + [anon_sym___inline__] = ACTIONS(3909), + [anon_sym___forceinline] = ACTIONS(3909), + [anon_sym_thread_local] = ACTIONS(3909), + [anon_sym___thread] = ACTIONS(3909), + [anon_sym_const] = ACTIONS(3909), + [anon_sym_constexpr] = ACTIONS(3909), + [anon_sym_volatile] = ACTIONS(3909), + [anon_sym_restrict] = ACTIONS(3909), + [anon_sym___restrict__] = ACTIONS(3909), + [anon_sym__Atomic] = ACTIONS(3909), + [anon_sym__Noreturn] = ACTIONS(3909), + [anon_sym_noreturn] = ACTIONS(3909), + [anon_sym__Nonnull] = ACTIONS(3909), + [anon_sym_mutable] = ACTIONS(3909), + [anon_sym_constinit] = ACTIONS(3909), + [anon_sym_consteval] = ACTIONS(3909), + [anon_sym_alignas] = ACTIONS(3909), + [anon_sym__Alignas] = ACTIONS(3909), + [sym_primitive_type] = ACTIONS(3909), + [anon_sym_enum] = ACTIONS(3909), + [anon_sym_class] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(3909), + [anon_sym_union] = ACTIONS(3909), + [anon_sym_typename] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3909), + [anon_sym_decltype] = ACTIONS(3909), + [anon_sym_explicit] = ACTIONS(3909), + [anon_sym_private] = ACTIONS(3909), + [anon_sym_template] = ACTIONS(3909), + [anon_sym_operator] = ACTIONS(3909), + [anon_sym_friend] = ACTIONS(3909), + [anon_sym_public] = ACTIONS(3909), + [anon_sym_protected] = ACTIONS(3909), + [anon_sym_static_assert] = ACTIONS(3909), + [anon_sym_LBRACK_COLON] = ACTIONS(3911), }, - [STATE(3320)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3295), - [sym_identifier] = ACTIONS(7727), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), - [anon_sym_COMMA] = ACTIONS(7729), - [aux_sym_preproc_if_token2] = ACTIONS(7729), - [aux_sym_preproc_else_token1] = ACTIONS(7729), - [aux_sym_preproc_elif_token1] = ACTIONS(7727), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7729), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7729), - [anon_sym_LPAREN2] = ACTIONS(7729), - [anon_sym_DASH] = ACTIONS(7727), - [anon_sym_PLUS] = ACTIONS(7727), - [anon_sym_STAR] = ACTIONS(7729), - [anon_sym_SLASH] = ACTIONS(7727), - [anon_sym_PERCENT] = ACTIONS(7729), - [anon_sym_PIPE_PIPE] = ACTIONS(7729), - [anon_sym_AMP_AMP] = ACTIONS(7729), - [anon_sym_PIPE] = ACTIONS(7727), - [anon_sym_CARET] = ACTIONS(7729), - [anon_sym_AMP] = ACTIONS(7727), - [anon_sym_EQ_EQ] = ACTIONS(7729), - [anon_sym_BANG_EQ] = ACTIONS(7729), - [anon_sym_GT] = ACTIONS(7727), - [anon_sym_GT_EQ] = ACTIONS(7729), - [anon_sym_LT_EQ] = ACTIONS(7727), - [anon_sym_LT] = ACTIONS(7727), - [anon_sym_LT_LT] = ACTIONS(7729), - [anon_sym_GT_GT] = ACTIONS(7729), - [anon_sym___extension__] = ACTIONS(7727), - [anon_sym___attribute__] = ACTIONS(7727), - [anon_sym___attribute] = ACTIONS(7727), - [anon_sym_LBRACE] = ACTIONS(7729), + [STATE(3276)] = { + [sym_identifier] = ACTIONS(8808), + [aux_sym_preproc_def_token1] = ACTIONS(8808), + [aux_sym_preproc_if_token1] = ACTIONS(8808), + [aux_sym_preproc_if_token2] = ACTIONS(8808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8808), + [sym_preproc_directive] = ACTIONS(8808), + [anon_sym_LPAREN2] = ACTIONS(8810), + [anon_sym_TILDE] = ACTIONS(8810), + [anon_sym_STAR] = ACTIONS(8810), + [anon_sym_AMP_AMP] = ACTIONS(8810), + [anon_sym_AMP] = ACTIONS(8808), + [anon_sym_SEMI] = ACTIONS(8810), + [anon_sym___extension__] = ACTIONS(8808), + [anon_sym_typedef] = ACTIONS(8808), + [anon_sym_virtual] = ACTIONS(8808), + [anon_sym_extern] = ACTIONS(8808), + [anon_sym___attribute__] = ACTIONS(8808), + [anon_sym___attribute] = ACTIONS(8808), + [anon_sym_using] = ACTIONS(8808), + [anon_sym_COLON_COLON] = ACTIONS(8810), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8810), + [anon_sym___declspec] = ACTIONS(8808), + [anon_sym___based] = ACTIONS(8808), + [anon_sym_signed] = ACTIONS(8808), + [anon_sym_unsigned] = ACTIONS(8808), + [anon_sym_long] = ACTIONS(8808), + [anon_sym_short] = ACTIONS(8808), + [anon_sym_LBRACK] = ACTIONS(8808), + [anon_sym_static] = ACTIONS(8808), + [anon_sym_register] = ACTIONS(8808), + [anon_sym_inline] = ACTIONS(8808), + [anon_sym___inline] = ACTIONS(8808), + [anon_sym___inline__] = ACTIONS(8808), + [anon_sym___forceinline] = ACTIONS(8808), + [anon_sym_thread_local] = ACTIONS(8808), + [anon_sym___thread] = ACTIONS(8808), + [anon_sym_const] = ACTIONS(8808), + [anon_sym_constexpr] = ACTIONS(8808), + [anon_sym_volatile] = ACTIONS(8808), + [anon_sym_restrict] = ACTIONS(8808), + [anon_sym___restrict__] = ACTIONS(8808), + [anon_sym__Atomic] = ACTIONS(8808), + [anon_sym__Noreturn] = ACTIONS(8808), + [anon_sym_noreturn] = ACTIONS(8808), + [anon_sym__Nonnull] = ACTIONS(8808), + [anon_sym_mutable] = ACTIONS(8808), + [anon_sym_constinit] = ACTIONS(8808), + [anon_sym_consteval] = ACTIONS(8808), + [anon_sym_alignas] = ACTIONS(8808), + [anon_sym__Alignas] = ACTIONS(8808), + [sym_primitive_type] = ACTIONS(8808), + [anon_sym_enum] = ACTIONS(8808), + [anon_sym_class] = ACTIONS(8808), + [anon_sym_struct] = ACTIONS(8808), + [anon_sym_union] = ACTIONS(8808), + [anon_sym_typename] = ACTIONS(8808), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8808), + [anon_sym_decltype] = ACTIONS(8808), + [anon_sym_explicit] = ACTIONS(8808), + [anon_sym_private] = ACTIONS(8808), + [anon_sym_template] = ACTIONS(8808), + [anon_sym_operator] = ACTIONS(8808), + [anon_sym_friend] = ACTIONS(8808), + [anon_sym_public] = ACTIONS(8808), + [anon_sym_protected] = ACTIONS(8808), + [anon_sym_static_assert] = ACTIONS(8808), + [anon_sym_LBRACK_COLON] = ACTIONS(8810), + }, + [STATE(3277)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(7584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [aux_sym_preproc_if_token2] = ACTIONS(7586), + [aux_sym_preproc_else_token1] = ACTIONS(7586), + [aux_sym_preproc_elif_token1] = ACTIONS(7584), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7586), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7586), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7586), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7586), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7586), + [anon_sym_GT_GT] = ACTIONS(7586), + [anon_sym___extension__] = ACTIONS(7584), + [anon_sym___attribute__] = ACTIONS(7584), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_LBRACE] = ACTIONS(7586), [anon_sym_signed] = ACTIONS(9101), [anon_sym_unsigned] = ACTIONS(9101), [anon_sym_long] = ACTIONS(9101), [anon_sym_short] = ACTIONS(9101), - [anon_sym_LBRACK] = ACTIONS(7729), - [anon_sym_RBRACK] = ACTIONS(7729), - [anon_sym_const] = ACTIONS(7727), - [anon_sym_constexpr] = ACTIONS(7727), - [anon_sym_volatile] = ACTIONS(7727), - [anon_sym_restrict] = ACTIONS(7727), - [anon_sym___restrict__] = ACTIONS(7727), - [anon_sym__Atomic] = ACTIONS(7727), - [anon_sym__Noreturn] = ACTIONS(7727), - [anon_sym_noreturn] = ACTIONS(7727), - [anon_sym__Nonnull] = ACTIONS(7727), - [anon_sym_mutable] = ACTIONS(7727), - [anon_sym_constinit] = ACTIONS(7727), - [anon_sym_consteval] = ACTIONS(7727), - [anon_sym_alignas] = ACTIONS(7727), - [anon_sym__Alignas] = ACTIONS(7727), - [anon_sym_QMARK] = ACTIONS(7729), - [anon_sym_LT_EQ_GT] = ACTIONS(7729), - [anon_sym_or] = ACTIONS(7727), - [anon_sym_and] = ACTIONS(7727), - [anon_sym_bitor] = ACTIONS(7727), - [anon_sym_xor] = ACTIONS(7727), - [anon_sym_bitand] = ACTIONS(7727), - [anon_sym_not_eq] = ACTIONS(7727), - [anon_sym_DASH_DASH] = ACTIONS(7729), - [anon_sym_PLUS_PLUS] = ACTIONS(7729), - [anon_sym_DOT] = ACTIONS(7727), - [anon_sym_DOT_STAR] = ACTIONS(7729), - [anon_sym_DASH_GT] = ACTIONS(7729), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7727), - [anon_sym_override] = ACTIONS(7727), - [anon_sym_requires] = ACTIONS(7727), - }, - [STATE(3321)] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token2] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_friend] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), - }, - [STATE(3322)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token2] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), - }, - [STATE(3323)] = { - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token2] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_private] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_friend] = ACTIONS(4192), - [anon_sym_public] = ACTIONS(4192), - [anon_sym_protected] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), - }, - [STATE(3324)] = { - [sym_identifier] = ACTIONS(3658), - [aux_sym_preproc_def_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token2] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), - [sym_preproc_directive] = ACTIONS(3658), - [anon_sym_LPAREN2] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym___extension__] = ACTIONS(3658), - [anon_sym_typedef] = ACTIONS(3658), - [anon_sym_virtual] = ACTIONS(3658), - [anon_sym_extern] = ACTIONS(3658), - [anon_sym___attribute__] = ACTIONS(3658), - [anon_sym___attribute] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), - [anon_sym___declspec] = ACTIONS(3658), - [anon_sym___based] = ACTIONS(3658), - [anon_sym_signed] = ACTIONS(3658), - [anon_sym_unsigned] = ACTIONS(3658), - [anon_sym_long] = ACTIONS(3658), - [anon_sym_short] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_register] = ACTIONS(3658), - [anon_sym_inline] = ACTIONS(3658), - [anon_sym___inline] = ACTIONS(3658), - [anon_sym___inline__] = ACTIONS(3658), - [anon_sym___forceinline] = ACTIONS(3658), - [anon_sym_thread_local] = ACTIONS(3658), - [anon_sym___thread] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_constexpr] = ACTIONS(3658), - [anon_sym_volatile] = ACTIONS(3658), - [anon_sym_restrict] = ACTIONS(3658), - [anon_sym___restrict__] = ACTIONS(3658), - [anon_sym__Atomic] = ACTIONS(3658), - [anon_sym__Noreturn] = ACTIONS(3658), - [anon_sym_noreturn] = ACTIONS(3658), - [anon_sym__Nonnull] = ACTIONS(3658), - [anon_sym_mutable] = ACTIONS(3658), - [anon_sym_constinit] = ACTIONS(3658), - [anon_sym_consteval] = ACTIONS(3658), - [anon_sym_alignas] = ACTIONS(3658), - [anon_sym__Alignas] = ACTIONS(3658), - [sym_primitive_type] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3658), - [anon_sym_union] = ACTIONS(3658), - [anon_sym_typename] = ACTIONS(3658), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3658), - [anon_sym_decltype] = ACTIONS(3658), - [anon_sym_explicit] = ACTIONS(3658), - [anon_sym_private] = ACTIONS(3658), - [anon_sym_template] = ACTIONS(3658), - [anon_sym_operator] = ACTIONS(3658), - [anon_sym_friend] = ACTIONS(3658), - [anon_sym_public] = ACTIONS(3658), - [anon_sym_protected] = ACTIONS(3658), - [anon_sym_static_assert] = ACTIONS(3658), - [anon_sym_LBRACK_COLON] = ACTIONS(3660), - }, - [STATE(3325)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token2] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_friend] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - }, - [STATE(3326)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token2] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_friend] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - }, - [STATE(3327)] = { - [sym_identifier] = ACTIONS(3666), - [aux_sym_preproc_def_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token2] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), - [sym_preproc_directive] = ACTIONS(3666), - [anon_sym_LPAREN2] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym___extension__] = ACTIONS(3666), - [anon_sym_typedef] = ACTIONS(3666), - [anon_sym_virtual] = ACTIONS(3666), - [anon_sym_extern] = ACTIONS(3666), - [anon_sym___attribute__] = ACTIONS(3666), - [anon_sym___attribute] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_COLON_COLON] = ACTIONS(3668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), - [anon_sym___declspec] = ACTIONS(3666), - [anon_sym___based] = ACTIONS(3666), - [anon_sym_signed] = ACTIONS(3666), - [anon_sym_unsigned] = ACTIONS(3666), - [anon_sym_long] = ACTIONS(3666), - [anon_sym_short] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_register] = ACTIONS(3666), - [anon_sym_inline] = ACTIONS(3666), - [anon_sym___inline] = ACTIONS(3666), - [anon_sym___inline__] = ACTIONS(3666), - [anon_sym___forceinline] = ACTIONS(3666), - [anon_sym_thread_local] = ACTIONS(3666), - [anon_sym___thread] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_constexpr] = ACTIONS(3666), - [anon_sym_volatile] = ACTIONS(3666), - [anon_sym_restrict] = ACTIONS(3666), - [anon_sym___restrict__] = ACTIONS(3666), - [anon_sym__Atomic] = ACTIONS(3666), - [anon_sym__Noreturn] = ACTIONS(3666), - [anon_sym_noreturn] = ACTIONS(3666), - [anon_sym__Nonnull] = ACTIONS(3666), - [anon_sym_mutable] = ACTIONS(3666), - [anon_sym_constinit] = ACTIONS(3666), - [anon_sym_consteval] = ACTIONS(3666), - [anon_sym_alignas] = ACTIONS(3666), - [anon_sym__Alignas] = ACTIONS(3666), - [sym_primitive_type] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_union] = ACTIONS(3666), - [anon_sym_typename] = ACTIONS(3666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3666), - [anon_sym_decltype] = ACTIONS(3666), - [anon_sym_explicit] = ACTIONS(3666), - [anon_sym_private] = ACTIONS(3666), - [anon_sym_template] = ACTIONS(3666), - [anon_sym_operator] = ACTIONS(3666), - [anon_sym_friend] = ACTIONS(3666), - [anon_sym_public] = ACTIONS(3666), - [anon_sym_protected] = ACTIONS(3666), - [anon_sym_static_assert] = ACTIONS(3666), - [anon_sym_LBRACK_COLON] = ACTIONS(3668), - }, - [STATE(3328)] = { - [sym_identifier] = ACTIONS(4282), - [aux_sym_preproc_def_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token2] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), - [sym_preproc_directive] = ACTIONS(4282), - [anon_sym_LPAREN2] = ACTIONS(4284), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [anon_sym_AMP_AMP] = ACTIONS(4284), - [anon_sym_AMP] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4284), - [anon_sym___extension__] = ACTIONS(4282), - [anon_sym_typedef] = ACTIONS(4282), - [anon_sym_virtual] = ACTIONS(4282), - [anon_sym_extern] = ACTIONS(4282), - [anon_sym___attribute__] = ACTIONS(4282), - [anon_sym___attribute] = ACTIONS(4282), - [anon_sym_using] = ACTIONS(4282), - [anon_sym_COLON_COLON] = ACTIONS(4284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4282), - [anon_sym___based] = ACTIONS(4282), - [anon_sym_signed] = ACTIONS(4282), - [anon_sym_unsigned] = ACTIONS(4282), - [anon_sym_long] = ACTIONS(4282), - [anon_sym_short] = ACTIONS(4282), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_static] = ACTIONS(4282), - [anon_sym_register] = ACTIONS(4282), - [anon_sym_inline] = ACTIONS(4282), - [anon_sym___inline] = ACTIONS(4282), - [anon_sym___inline__] = ACTIONS(4282), - [anon_sym___forceinline] = ACTIONS(4282), - [anon_sym_thread_local] = ACTIONS(4282), - [anon_sym___thread] = ACTIONS(4282), - [anon_sym_const] = ACTIONS(4282), - [anon_sym_constexpr] = ACTIONS(4282), - [anon_sym_volatile] = ACTIONS(4282), - [anon_sym_restrict] = ACTIONS(4282), - [anon_sym___restrict__] = ACTIONS(4282), - [anon_sym__Atomic] = ACTIONS(4282), - [anon_sym__Noreturn] = ACTIONS(4282), - [anon_sym_noreturn] = ACTIONS(4282), - [anon_sym__Nonnull] = ACTIONS(4282), - [anon_sym_mutable] = ACTIONS(4282), - [anon_sym_constinit] = ACTIONS(4282), - [anon_sym_consteval] = ACTIONS(4282), - [anon_sym_alignas] = ACTIONS(4282), - [anon_sym__Alignas] = ACTIONS(4282), - [sym_primitive_type] = ACTIONS(4282), - [anon_sym_enum] = ACTIONS(4282), - [anon_sym_class] = ACTIONS(4282), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_union] = ACTIONS(4282), - [anon_sym_typename] = ACTIONS(4282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4282), - [anon_sym_decltype] = ACTIONS(4282), - [anon_sym_explicit] = ACTIONS(4282), - [anon_sym_private] = ACTIONS(4282), - [anon_sym_template] = ACTIONS(4282), - [anon_sym_operator] = ACTIONS(4282), - [anon_sym_friend] = ACTIONS(4282), - [anon_sym_public] = ACTIONS(4282), - [anon_sym_protected] = ACTIONS(4282), - [anon_sym_static_assert] = ACTIONS(4282), - [anon_sym_LBRACK_COLON] = ACTIONS(4284), - }, - [STATE(3329)] = { - [sym_identifier] = ACTIONS(3678), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token2] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), - [sym_preproc_directive] = ACTIONS(3678), - [anon_sym_LPAREN2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3678), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym___extension__] = ACTIONS(3678), - [anon_sym_typedef] = ACTIONS(3678), - [anon_sym_virtual] = ACTIONS(3678), - [anon_sym_extern] = ACTIONS(3678), - [anon_sym___attribute__] = ACTIONS(3678), - [anon_sym___attribute] = ACTIONS(3678), - [anon_sym_using] = ACTIONS(3678), - [anon_sym_COLON_COLON] = ACTIONS(3680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), - [anon_sym___declspec] = ACTIONS(3678), - [anon_sym___based] = ACTIONS(3678), - [anon_sym_signed] = ACTIONS(3678), - [anon_sym_unsigned] = ACTIONS(3678), - [anon_sym_long] = ACTIONS(3678), - [anon_sym_short] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_register] = ACTIONS(3678), - [anon_sym_inline] = ACTIONS(3678), - [anon_sym___inline] = ACTIONS(3678), - [anon_sym___inline__] = ACTIONS(3678), - [anon_sym___forceinline] = ACTIONS(3678), - [anon_sym_thread_local] = ACTIONS(3678), - [anon_sym___thread] = ACTIONS(3678), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_constexpr] = ACTIONS(3678), - [anon_sym_volatile] = ACTIONS(3678), - [anon_sym_restrict] = ACTIONS(3678), - [anon_sym___restrict__] = ACTIONS(3678), - [anon_sym__Atomic] = ACTIONS(3678), - [anon_sym__Noreturn] = ACTIONS(3678), - [anon_sym_noreturn] = ACTIONS(3678), - [anon_sym__Nonnull] = ACTIONS(3678), - [anon_sym_mutable] = ACTIONS(3678), - [anon_sym_constinit] = ACTIONS(3678), - [anon_sym_consteval] = ACTIONS(3678), - [anon_sym_alignas] = ACTIONS(3678), - [anon_sym__Alignas] = ACTIONS(3678), - [sym_primitive_type] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_struct] = ACTIONS(3678), - [anon_sym_union] = ACTIONS(3678), - [anon_sym_typename] = ACTIONS(3678), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3678), - [anon_sym_decltype] = ACTIONS(3678), - [anon_sym_explicit] = ACTIONS(3678), - [anon_sym_private] = ACTIONS(3678), - [anon_sym_template] = ACTIONS(3678), - [anon_sym_operator] = ACTIONS(3678), - [anon_sym_friend] = ACTIONS(3678), - [anon_sym_public] = ACTIONS(3678), - [anon_sym_protected] = ACTIONS(3678), - [anon_sym_static_assert] = ACTIONS(3678), - [anon_sym_LBRACK_COLON] = ACTIONS(3680), - }, - [STATE(3330)] = { - [sym_identifier] = ACTIONS(8798), - [aux_sym_preproc_def_token1] = ACTIONS(8798), - [aux_sym_preproc_if_token1] = ACTIONS(8798), - [aux_sym_preproc_if_token2] = ACTIONS(8798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8798), - [sym_preproc_directive] = ACTIONS(8798), - [anon_sym_LPAREN2] = ACTIONS(8800), - [anon_sym_TILDE] = ACTIONS(8800), - [anon_sym_STAR] = ACTIONS(8800), - [anon_sym_AMP_AMP] = ACTIONS(8800), - [anon_sym_AMP] = ACTIONS(8798), - [anon_sym_SEMI] = ACTIONS(8800), - [anon_sym___extension__] = ACTIONS(8798), - [anon_sym_typedef] = ACTIONS(8798), - [anon_sym_virtual] = ACTIONS(8798), - [anon_sym_extern] = ACTIONS(8798), - [anon_sym___attribute__] = ACTIONS(8798), - [anon_sym___attribute] = ACTIONS(8798), - [anon_sym_using] = ACTIONS(8798), - [anon_sym_COLON_COLON] = ACTIONS(8800), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8800), - [anon_sym___declspec] = ACTIONS(8798), - [anon_sym___based] = ACTIONS(8798), - [anon_sym_signed] = ACTIONS(8798), - [anon_sym_unsigned] = ACTIONS(8798), - [anon_sym_long] = ACTIONS(8798), - [anon_sym_short] = ACTIONS(8798), - [anon_sym_LBRACK] = ACTIONS(8798), - [anon_sym_static] = ACTIONS(8798), - [anon_sym_register] = ACTIONS(8798), - [anon_sym_inline] = ACTIONS(8798), - [anon_sym___inline] = ACTIONS(8798), - [anon_sym___inline__] = ACTIONS(8798), - [anon_sym___forceinline] = ACTIONS(8798), - [anon_sym_thread_local] = ACTIONS(8798), - [anon_sym___thread] = ACTIONS(8798), - [anon_sym_const] = ACTIONS(8798), - [anon_sym_constexpr] = ACTIONS(8798), - [anon_sym_volatile] = ACTIONS(8798), - [anon_sym_restrict] = ACTIONS(8798), - [anon_sym___restrict__] = ACTIONS(8798), - [anon_sym__Atomic] = ACTIONS(8798), - [anon_sym__Noreturn] = ACTIONS(8798), - [anon_sym_noreturn] = ACTIONS(8798), - [anon_sym__Nonnull] = ACTIONS(8798), - [anon_sym_mutable] = ACTIONS(8798), - [anon_sym_constinit] = ACTIONS(8798), - [anon_sym_consteval] = ACTIONS(8798), - [anon_sym_alignas] = ACTIONS(8798), - [anon_sym__Alignas] = ACTIONS(8798), - [sym_primitive_type] = ACTIONS(8798), - [anon_sym_enum] = ACTIONS(8798), - [anon_sym_class] = ACTIONS(8798), - [anon_sym_struct] = ACTIONS(8798), - [anon_sym_union] = ACTIONS(8798), - [anon_sym_typename] = ACTIONS(8798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8798), - [anon_sym_decltype] = ACTIONS(8798), - [anon_sym_explicit] = ACTIONS(8798), - [anon_sym_private] = ACTIONS(8798), - [anon_sym_template] = ACTIONS(8798), - [anon_sym_operator] = ACTIONS(8798), - [anon_sym_friend] = ACTIONS(8798), - [anon_sym_public] = ACTIONS(8798), - [anon_sym_protected] = ACTIONS(8798), - [anon_sym_static_assert] = ACTIONS(8798), - [anon_sym_LBRACK_COLON] = ACTIONS(8800), - }, - [STATE(3331)] = { - [sym_string_literal] = STATE(2565), - [sym_raw_string_literal] = STATE(2565), - [sym_identifier] = ACTIONS(9116), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9118), - [anon_sym_COMMA] = ACTIONS(9118), - [aux_sym_preproc_if_token2] = ACTIONS(9118), - [aux_sym_preproc_else_token1] = ACTIONS(9118), - [aux_sym_preproc_elif_token1] = ACTIONS(9116), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9118), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9118), - [anon_sym_LPAREN2] = ACTIONS(9118), - [anon_sym_DASH] = ACTIONS(9116), - [anon_sym_PLUS] = ACTIONS(9116), - [anon_sym_STAR] = ACTIONS(9116), - [anon_sym_SLASH] = ACTIONS(9116), - [anon_sym_PERCENT] = ACTIONS(9116), - [anon_sym_PIPE_PIPE] = ACTIONS(9118), - [anon_sym_AMP_AMP] = ACTIONS(9118), - [anon_sym_PIPE] = ACTIONS(9116), - [anon_sym_CARET] = ACTIONS(9116), - [anon_sym_AMP] = ACTIONS(9116), - [anon_sym_EQ_EQ] = ACTIONS(9118), - [anon_sym_BANG_EQ] = ACTIONS(9118), - [anon_sym_GT] = ACTIONS(9116), - [anon_sym_GT_EQ] = ACTIONS(9118), - [anon_sym_LT_EQ] = ACTIONS(9116), - [anon_sym_LT] = ACTIONS(9116), - [anon_sym_LT_LT] = ACTIONS(9116), - [anon_sym_GT_GT] = ACTIONS(9116), - [anon_sym_LBRACK] = ACTIONS(9118), - [anon_sym_EQ] = ACTIONS(9116), - [anon_sym_QMARK] = ACTIONS(9118), - [anon_sym_STAR_EQ] = ACTIONS(9118), - [anon_sym_SLASH_EQ] = ACTIONS(9118), - [anon_sym_PERCENT_EQ] = ACTIONS(9118), - [anon_sym_PLUS_EQ] = ACTIONS(9118), - [anon_sym_DASH_EQ] = ACTIONS(9118), - [anon_sym_LT_LT_EQ] = ACTIONS(9118), - [anon_sym_GT_GT_EQ] = ACTIONS(9118), - [anon_sym_AMP_EQ] = ACTIONS(9118), - [anon_sym_CARET_EQ] = ACTIONS(9118), - [anon_sym_PIPE_EQ] = ACTIONS(9118), - [anon_sym_and_eq] = ACTIONS(9116), - [anon_sym_or_eq] = ACTIONS(9116), - [anon_sym_xor_eq] = ACTIONS(9116), - [anon_sym_LT_EQ_GT] = ACTIONS(9118), - [anon_sym_or] = ACTIONS(9116), - [anon_sym_and] = ACTIONS(9116), - [anon_sym_bitor] = ACTIONS(9116), - [anon_sym_xor] = ACTIONS(9116), - [anon_sym_bitand] = ACTIONS(9116), - [anon_sym_not_eq] = ACTIONS(9116), - [anon_sym_DASH_DASH] = ACTIONS(9118), - [anon_sym_PLUS_PLUS] = ACTIONS(9118), - [anon_sym_DOT] = ACTIONS(9116), - [anon_sym_DOT_STAR] = ACTIONS(9118), - [anon_sym_DASH_GT] = ACTIONS(9118), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [sym_literal_suffix] = ACTIONS(9116), - }, - [STATE(3332)] = { - [sym_identifier] = ACTIONS(8806), - [aux_sym_preproc_def_token1] = ACTIONS(8806), - [aux_sym_preproc_if_token1] = ACTIONS(8806), - [aux_sym_preproc_if_token2] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), - [sym_preproc_directive] = ACTIONS(8806), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_TILDE] = ACTIONS(8808), - [anon_sym_STAR] = ACTIONS(8808), - [anon_sym_AMP_AMP] = ACTIONS(8808), - [anon_sym_AMP] = ACTIONS(8806), - [anon_sym_SEMI] = ACTIONS(8808), - [anon_sym___extension__] = ACTIONS(8806), - [anon_sym_typedef] = ACTIONS(8806), - [anon_sym_virtual] = ACTIONS(8806), - [anon_sym_extern] = ACTIONS(8806), - [anon_sym___attribute__] = ACTIONS(8806), - [anon_sym___attribute] = ACTIONS(8806), - [anon_sym_using] = ACTIONS(8806), - [anon_sym_COLON_COLON] = ACTIONS(8808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), - [anon_sym___declspec] = ACTIONS(8806), - [anon_sym___based] = ACTIONS(8806), - [anon_sym_signed] = ACTIONS(8806), - [anon_sym_unsigned] = ACTIONS(8806), - [anon_sym_long] = ACTIONS(8806), - [anon_sym_short] = ACTIONS(8806), - [anon_sym_LBRACK] = ACTIONS(8806), - [anon_sym_static] = ACTIONS(8806), - [anon_sym_register] = ACTIONS(8806), - [anon_sym_inline] = ACTIONS(8806), - [anon_sym___inline] = ACTIONS(8806), - [anon_sym___inline__] = ACTIONS(8806), - [anon_sym___forceinline] = ACTIONS(8806), - [anon_sym_thread_local] = ACTIONS(8806), - [anon_sym___thread] = ACTIONS(8806), - [anon_sym_const] = ACTIONS(8806), - [anon_sym_constexpr] = ACTIONS(8806), - [anon_sym_volatile] = ACTIONS(8806), - [anon_sym_restrict] = ACTIONS(8806), - [anon_sym___restrict__] = ACTIONS(8806), - [anon_sym__Atomic] = ACTIONS(8806), - [anon_sym__Noreturn] = ACTIONS(8806), - [anon_sym_noreturn] = ACTIONS(8806), - [anon_sym__Nonnull] = ACTIONS(8806), - [anon_sym_mutable] = ACTIONS(8806), - [anon_sym_constinit] = ACTIONS(8806), - [anon_sym_consteval] = ACTIONS(8806), - [anon_sym_alignas] = ACTIONS(8806), - [anon_sym__Alignas] = ACTIONS(8806), - [sym_primitive_type] = ACTIONS(8806), - [anon_sym_enum] = ACTIONS(8806), - [anon_sym_class] = ACTIONS(8806), - [anon_sym_struct] = ACTIONS(8806), - [anon_sym_union] = ACTIONS(8806), - [anon_sym_typename] = ACTIONS(8806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8806), - [anon_sym_decltype] = ACTIONS(8806), - [anon_sym_explicit] = ACTIONS(8806), - [anon_sym_private] = ACTIONS(8806), - [anon_sym_template] = ACTIONS(8806), - [anon_sym_operator] = ACTIONS(8806), - [anon_sym_friend] = ACTIONS(8806), - [anon_sym_public] = ACTIONS(8806), - [anon_sym_protected] = ACTIONS(8806), - [anon_sym_static_assert] = ACTIONS(8806), - [anon_sym_LBRACK_COLON] = ACTIONS(8808), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_RBRACK] = ACTIONS(7586), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7584), + [anon_sym_volatile] = ACTIONS(7584), + [anon_sym_restrict] = ACTIONS(7584), + [anon_sym___restrict__] = ACTIONS(7584), + [anon_sym__Atomic] = ACTIONS(7584), + [anon_sym__Noreturn] = ACTIONS(7584), + [anon_sym_noreturn] = ACTIONS(7584), + [anon_sym__Nonnull] = ACTIONS(7584), + [anon_sym_mutable] = ACTIONS(7584), + [anon_sym_constinit] = ACTIONS(7584), + [anon_sym_consteval] = ACTIONS(7584), + [anon_sym_alignas] = ACTIONS(7584), + [anon_sym__Alignas] = ACTIONS(7584), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7584), + [anon_sym_and] = ACTIONS(7584), + [anon_sym_bitor] = ACTIONS(7584), + [anon_sym_xor] = ACTIONS(7584), + [anon_sym_bitand] = ACTIONS(7584), + [anon_sym_not_eq] = ACTIONS(7584), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7586), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7584), + [anon_sym_override] = ACTIONS(7584), + [anon_sym_requires] = ACTIONS(7584), }, - [STATE(3333)] = { - [sym_identifier] = ACTIONS(8822), - [aux_sym_preproc_def_token1] = ACTIONS(8822), - [aux_sym_preproc_if_token1] = ACTIONS(8822), - [aux_sym_preproc_if_token2] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), - [sym_preproc_directive] = ACTIONS(8822), - [anon_sym_LPAREN2] = ACTIONS(8824), - [anon_sym_TILDE] = ACTIONS(8824), - [anon_sym_STAR] = ACTIONS(8824), - [anon_sym_AMP_AMP] = ACTIONS(8824), - [anon_sym_AMP] = ACTIONS(8822), - [anon_sym_SEMI] = ACTIONS(8824), - [anon_sym___extension__] = ACTIONS(8822), - [anon_sym_typedef] = ACTIONS(8822), - [anon_sym_virtual] = ACTIONS(8822), - [anon_sym_extern] = ACTIONS(8822), - [anon_sym___attribute__] = ACTIONS(8822), - [anon_sym___attribute] = ACTIONS(8822), - [anon_sym_using] = ACTIONS(8822), - [anon_sym_COLON_COLON] = ACTIONS(8824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), - [anon_sym___declspec] = ACTIONS(8822), - [anon_sym___based] = ACTIONS(8822), - [anon_sym_signed] = ACTIONS(8822), - [anon_sym_unsigned] = ACTIONS(8822), - [anon_sym_long] = ACTIONS(8822), - [anon_sym_short] = ACTIONS(8822), - [anon_sym_LBRACK] = ACTIONS(8822), - [anon_sym_static] = ACTIONS(8822), - [anon_sym_register] = ACTIONS(8822), - [anon_sym_inline] = ACTIONS(8822), - [anon_sym___inline] = ACTIONS(8822), - [anon_sym___inline__] = ACTIONS(8822), - [anon_sym___forceinline] = ACTIONS(8822), - [anon_sym_thread_local] = ACTIONS(8822), - [anon_sym___thread] = ACTIONS(8822), - [anon_sym_const] = ACTIONS(8822), - [anon_sym_constexpr] = ACTIONS(8822), - [anon_sym_volatile] = ACTIONS(8822), - [anon_sym_restrict] = ACTIONS(8822), - [anon_sym___restrict__] = ACTIONS(8822), - [anon_sym__Atomic] = ACTIONS(8822), - [anon_sym__Noreturn] = ACTIONS(8822), - [anon_sym_noreturn] = ACTIONS(8822), - [anon_sym__Nonnull] = ACTIONS(8822), - [anon_sym_mutable] = ACTIONS(8822), - [anon_sym_constinit] = ACTIONS(8822), - [anon_sym_consteval] = ACTIONS(8822), - [anon_sym_alignas] = ACTIONS(8822), - [anon_sym__Alignas] = ACTIONS(8822), - [sym_primitive_type] = ACTIONS(8822), - [anon_sym_enum] = ACTIONS(8822), - [anon_sym_class] = ACTIONS(8822), - [anon_sym_struct] = ACTIONS(8822), - [anon_sym_union] = ACTIONS(8822), - [anon_sym_typename] = ACTIONS(8822), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8822), - [anon_sym_decltype] = ACTIONS(8822), - [anon_sym_explicit] = ACTIONS(8822), - [anon_sym_private] = ACTIONS(8822), - [anon_sym_template] = ACTIONS(8822), - [anon_sym_operator] = ACTIONS(8822), - [anon_sym_friend] = ACTIONS(8822), - [anon_sym_public] = ACTIONS(8822), - [anon_sym_protected] = ACTIONS(8822), - [anon_sym_static_assert] = ACTIONS(8822), - [anon_sym_LBRACK_COLON] = ACTIONS(8824), - }, - [STATE(3334)] = { - [sym_identifier] = ACTIONS(8806), - [aux_sym_preproc_def_token1] = ACTIONS(8806), - [aux_sym_preproc_if_token1] = ACTIONS(8806), - [aux_sym_preproc_if_token2] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), - [sym_preproc_directive] = ACTIONS(8806), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_TILDE] = ACTIONS(8808), - [anon_sym_STAR] = ACTIONS(8808), - [anon_sym_AMP_AMP] = ACTIONS(8808), - [anon_sym_AMP] = ACTIONS(8806), - [anon_sym_SEMI] = ACTIONS(8808), - [anon_sym___extension__] = ACTIONS(8806), - [anon_sym_typedef] = ACTIONS(8806), - [anon_sym_virtual] = ACTIONS(8806), - [anon_sym_extern] = ACTIONS(8806), - [anon_sym___attribute__] = ACTIONS(8806), - [anon_sym___attribute] = ACTIONS(8806), - [anon_sym_using] = ACTIONS(8806), - [anon_sym_COLON_COLON] = ACTIONS(8808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), - [anon_sym___declspec] = ACTIONS(8806), - [anon_sym___based] = ACTIONS(8806), - [anon_sym_signed] = ACTIONS(8806), - [anon_sym_unsigned] = ACTIONS(8806), - [anon_sym_long] = ACTIONS(8806), - [anon_sym_short] = ACTIONS(8806), - [anon_sym_LBRACK] = ACTIONS(8806), - [anon_sym_static] = ACTIONS(8806), - [anon_sym_register] = ACTIONS(8806), - [anon_sym_inline] = ACTIONS(8806), - [anon_sym___inline] = ACTIONS(8806), - [anon_sym___inline__] = ACTIONS(8806), - [anon_sym___forceinline] = ACTIONS(8806), - [anon_sym_thread_local] = ACTIONS(8806), - [anon_sym___thread] = ACTIONS(8806), - [anon_sym_const] = ACTIONS(8806), - [anon_sym_constexpr] = ACTIONS(8806), - [anon_sym_volatile] = ACTIONS(8806), - [anon_sym_restrict] = ACTIONS(8806), - [anon_sym___restrict__] = ACTIONS(8806), - [anon_sym__Atomic] = ACTIONS(8806), - [anon_sym__Noreturn] = ACTIONS(8806), - [anon_sym_noreturn] = ACTIONS(8806), - [anon_sym__Nonnull] = ACTIONS(8806), - [anon_sym_mutable] = ACTIONS(8806), - [anon_sym_constinit] = ACTIONS(8806), - [anon_sym_consteval] = ACTIONS(8806), - [anon_sym_alignas] = ACTIONS(8806), - [anon_sym__Alignas] = ACTIONS(8806), - [sym_primitive_type] = ACTIONS(8806), - [anon_sym_enum] = ACTIONS(8806), - [anon_sym_class] = ACTIONS(8806), - [anon_sym_struct] = ACTIONS(8806), - [anon_sym_union] = ACTIONS(8806), - [anon_sym_typename] = ACTIONS(8806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8806), - [anon_sym_decltype] = ACTIONS(8806), - [anon_sym_explicit] = ACTIONS(8806), - [anon_sym_private] = ACTIONS(8806), - [anon_sym_template] = ACTIONS(8806), - [anon_sym_operator] = ACTIONS(8806), - [anon_sym_friend] = ACTIONS(8806), - [anon_sym_public] = ACTIONS(8806), - [anon_sym_protected] = ACTIONS(8806), - [anon_sym_static_assert] = ACTIONS(8806), - [anon_sym_LBRACK_COLON] = ACTIONS(8808), - }, - [STATE(3335)] = { - [sym_identifier] = ACTIONS(8822), - [aux_sym_preproc_def_token1] = ACTIONS(8822), - [aux_sym_preproc_if_token1] = ACTIONS(8822), - [aux_sym_preproc_if_token2] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), - [sym_preproc_directive] = ACTIONS(8822), - [anon_sym_LPAREN2] = ACTIONS(8824), - [anon_sym_TILDE] = ACTIONS(8824), - [anon_sym_STAR] = ACTIONS(8824), - [anon_sym_AMP_AMP] = ACTIONS(8824), - [anon_sym_AMP] = ACTIONS(8822), - [anon_sym_SEMI] = ACTIONS(8824), - [anon_sym___extension__] = ACTIONS(8822), - [anon_sym_typedef] = ACTIONS(8822), - [anon_sym_virtual] = ACTIONS(8822), - [anon_sym_extern] = ACTIONS(8822), - [anon_sym___attribute__] = ACTIONS(8822), - [anon_sym___attribute] = ACTIONS(8822), - [anon_sym_using] = ACTIONS(8822), - [anon_sym_COLON_COLON] = ACTIONS(8824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), - [anon_sym___declspec] = ACTIONS(8822), - [anon_sym___based] = ACTIONS(8822), - [anon_sym_signed] = ACTIONS(8822), - [anon_sym_unsigned] = ACTIONS(8822), - [anon_sym_long] = ACTIONS(8822), - [anon_sym_short] = ACTIONS(8822), - [anon_sym_LBRACK] = ACTIONS(8822), - [anon_sym_static] = ACTIONS(8822), - [anon_sym_register] = ACTIONS(8822), - [anon_sym_inline] = ACTIONS(8822), - [anon_sym___inline] = ACTIONS(8822), - [anon_sym___inline__] = ACTIONS(8822), - [anon_sym___forceinline] = ACTIONS(8822), - [anon_sym_thread_local] = ACTIONS(8822), - [anon_sym___thread] = ACTIONS(8822), - [anon_sym_const] = ACTIONS(8822), - [anon_sym_constexpr] = ACTIONS(8822), - [anon_sym_volatile] = ACTIONS(8822), - [anon_sym_restrict] = ACTIONS(8822), - [anon_sym___restrict__] = ACTIONS(8822), - [anon_sym__Atomic] = ACTIONS(8822), - [anon_sym__Noreturn] = ACTIONS(8822), - [anon_sym_noreturn] = ACTIONS(8822), - [anon_sym__Nonnull] = ACTIONS(8822), - [anon_sym_mutable] = ACTIONS(8822), - [anon_sym_constinit] = ACTIONS(8822), - [anon_sym_consteval] = ACTIONS(8822), - [anon_sym_alignas] = ACTIONS(8822), - [anon_sym__Alignas] = ACTIONS(8822), - [sym_primitive_type] = ACTIONS(8822), - [anon_sym_enum] = ACTIONS(8822), - [anon_sym_class] = ACTIONS(8822), - [anon_sym_struct] = ACTIONS(8822), - [anon_sym_union] = ACTIONS(8822), - [anon_sym_typename] = ACTIONS(8822), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8822), - [anon_sym_decltype] = ACTIONS(8822), - [anon_sym_explicit] = ACTIONS(8822), - [anon_sym_private] = ACTIONS(8822), - [anon_sym_template] = ACTIONS(8822), - [anon_sym_operator] = ACTIONS(8822), - [anon_sym_friend] = ACTIONS(8822), - [anon_sym_public] = ACTIONS(8822), - [anon_sym_protected] = ACTIONS(8822), - [anon_sym_static_assert] = ACTIONS(8822), - [anon_sym_LBRACK_COLON] = ACTIONS(8824), - }, - [STATE(3336)] = { - [sym_identifier] = ACTIONS(8687), - [aux_sym_preproc_def_token1] = ACTIONS(8687), - [aux_sym_preproc_if_token1] = ACTIONS(8687), - [aux_sym_preproc_if_token2] = ACTIONS(8687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8687), - [sym_preproc_directive] = ACTIONS(8687), - [anon_sym_LPAREN2] = ACTIONS(8689), - [anon_sym_TILDE] = ACTIONS(8689), - [anon_sym_STAR] = ACTIONS(8689), - [anon_sym_AMP_AMP] = ACTIONS(8689), - [anon_sym_AMP] = ACTIONS(8687), - [anon_sym_SEMI] = ACTIONS(8689), - [anon_sym___extension__] = ACTIONS(8687), - [anon_sym_typedef] = ACTIONS(8687), - [anon_sym_virtual] = ACTIONS(8687), - [anon_sym_extern] = ACTIONS(8687), - [anon_sym___attribute__] = ACTIONS(8687), - [anon_sym___attribute] = ACTIONS(8687), - [anon_sym_using] = ACTIONS(8687), - [anon_sym_COLON_COLON] = ACTIONS(8689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8689), - [anon_sym___declspec] = ACTIONS(8687), - [anon_sym___based] = ACTIONS(8687), - [anon_sym_signed] = ACTIONS(8687), - [anon_sym_unsigned] = ACTIONS(8687), - [anon_sym_long] = ACTIONS(8687), - [anon_sym_short] = ACTIONS(8687), - [anon_sym_LBRACK] = ACTIONS(8687), - [anon_sym_static] = ACTIONS(8687), - [anon_sym_register] = ACTIONS(8687), - [anon_sym_inline] = ACTIONS(8687), - [anon_sym___inline] = ACTIONS(8687), - [anon_sym___inline__] = ACTIONS(8687), - [anon_sym___forceinline] = ACTIONS(8687), - [anon_sym_thread_local] = ACTIONS(8687), - [anon_sym___thread] = ACTIONS(8687), - [anon_sym_const] = ACTIONS(8687), - [anon_sym_constexpr] = ACTIONS(8687), - [anon_sym_volatile] = ACTIONS(8687), - [anon_sym_restrict] = ACTIONS(8687), - [anon_sym___restrict__] = ACTIONS(8687), - [anon_sym__Atomic] = ACTIONS(8687), - [anon_sym__Noreturn] = ACTIONS(8687), - [anon_sym_noreturn] = ACTIONS(8687), - [anon_sym__Nonnull] = ACTIONS(8687), - [anon_sym_mutable] = ACTIONS(8687), - [anon_sym_constinit] = ACTIONS(8687), - [anon_sym_consteval] = ACTIONS(8687), - [anon_sym_alignas] = ACTIONS(8687), - [anon_sym__Alignas] = ACTIONS(8687), - [sym_primitive_type] = ACTIONS(8687), - [anon_sym_enum] = ACTIONS(8687), - [anon_sym_class] = ACTIONS(8687), - [anon_sym_struct] = ACTIONS(8687), - [anon_sym_union] = ACTIONS(8687), - [anon_sym_typename] = ACTIONS(8687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8687), - [anon_sym_decltype] = ACTIONS(8687), - [anon_sym_explicit] = ACTIONS(8687), - [anon_sym_private] = ACTIONS(8687), - [anon_sym_template] = ACTIONS(8687), - [anon_sym_operator] = ACTIONS(8687), - [anon_sym_friend] = ACTIONS(8687), - [anon_sym_public] = ACTIONS(8687), - [anon_sym_protected] = ACTIONS(8687), - [anon_sym_static_assert] = ACTIONS(8687), - [anon_sym_LBRACK_COLON] = ACTIONS(8689), - }, - [STATE(3337)] = { - [sym_identifier] = ACTIONS(8691), - [aux_sym_preproc_def_token1] = ACTIONS(8691), - [aux_sym_preproc_if_token1] = ACTIONS(8691), - [aux_sym_preproc_if_token2] = ACTIONS(8691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8691), - [sym_preproc_directive] = ACTIONS(8691), - [anon_sym_LPAREN2] = ACTIONS(8693), - [anon_sym_TILDE] = ACTIONS(8693), - [anon_sym_STAR] = ACTIONS(8693), - [anon_sym_AMP_AMP] = ACTIONS(8693), - [anon_sym_AMP] = ACTIONS(8691), - [anon_sym_SEMI] = ACTIONS(8693), - [anon_sym___extension__] = ACTIONS(8691), - [anon_sym_typedef] = ACTIONS(8691), - [anon_sym_virtual] = ACTIONS(8691), - [anon_sym_extern] = ACTIONS(8691), - [anon_sym___attribute__] = ACTIONS(8691), - [anon_sym___attribute] = ACTIONS(8691), - [anon_sym_using] = ACTIONS(8691), - [anon_sym_COLON_COLON] = ACTIONS(8693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8693), - [anon_sym___declspec] = ACTIONS(8691), - [anon_sym___based] = ACTIONS(8691), - [anon_sym_signed] = ACTIONS(8691), - [anon_sym_unsigned] = ACTIONS(8691), - [anon_sym_long] = ACTIONS(8691), - [anon_sym_short] = ACTIONS(8691), - [anon_sym_LBRACK] = ACTIONS(8691), - [anon_sym_static] = ACTIONS(8691), - [anon_sym_register] = ACTIONS(8691), - [anon_sym_inline] = ACTIONS(8691), - [anon_sym___inline] = ACTIONS(8691), - [anon_sym___inline__] = ACTIONS(8691), - [anon_sym___forceinline] = ACTIONS(8691), - [anon_sym_thread_local] = ACTIONS(8691), - [anon_sym___thread] = ACTIONS(8691), - [anon_sym_const] = ACTIONS(8691), - [anon_sym_constexpr] = ACTIONS(8691), - [anon_sym_volatile] = ACTIONS(8691), - [anon_sym_restrict] = ACTIONS(8691), - [anon_sym___restrict__] = ACTIONS(8691), - [anon_sym__Atomic] = ACTIONS(8691), - [anon_sym__Noreturn] = ACTIONS(8691), - [anon_sym_noreturn] = ACTIONS(8691), - [anon_sym__Nonnull] = ACTIONS(8691), - [anon_sym_mutable] = ACTIONS(8691), - [anon_sym_constinit] = ACTIONS(8691), - [anon_sym_consteval] = ACTIONS(8691), - [anon_sym_alignas] = ACTIONS(8691), - [anon_sym__Alignas] = ACTIONS(8691), - [sym_primitive_type] = ACTIONS(8691), - [anon_sym_enum] = ACTIONS(8691), - [anon_sym_class] = ACTIONS(8691), - [anon_sym_struct] = ACTIONS(8691), - [anon_sym_union] = ACTIONS(8691), - [anon_sym_typename] = ACTIONS(8691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8691), - [anon_sym_decltype] = ACTIONS(8691), - [anon_sym_explicit] = ACTIONS(8691), - [anon_sym_private] = ACTIONS(8691), - [anon_sym_template] = ACTIONS(8691), - [anon_sym_operator] = ACTIONS(8691), - [anon_sym_friend] = ACTIONS(8691), - [anon_sym_public] = ACTIONS(8691), - [anon_sym_protected] = ACTIONS(8691), - [anon_sym_static_assert] = ACTIONS(8691), - [anon_sym_LBRACK_COLON] = ACTIONS(8693), - }, - [STATE(3338)] = { - [sym_identifier] = ACTIONS(8726), - [aux_sym_preproc_def_token1] = ACTIONS(8726), - [aux_sym_preproc_if_token1] = ACTIONS(8726), - [aux_sym_preproc_if_token2] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), - [sym_preproc_directive] = ACTIONS(8726), - [anon_sym_LPAREN2] = ACTIONS(8728), - [anon_sym_TILDE] = ACTIONS(8728), - [anon_sym_STAR] = ACTIONS(8728), - [anon_sym_AMP_AMP] = ACTIONS(8728), - [anon_sym_AMP] = ACTIONS(8726), - [anon_sym_SEMI] = ACTIONS(8728), - [anon_sym___extension__] = ACTIONS(8726), - [anon_sym_typedef] = ACTIONS(8726), - [anon_sym_virtual] = ACTIONS(8726), - [anon_sym_extern] = ACTIONS(8726), - [anon_sym___attribute__] = ACTIONS(8726), - [anon_sym___attribute] = ACTIONS(8726), - [anon_sym_using] = ACTIONS(8726), - [anon_sym_COLON_COLON] = ACTIONS(8728), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), - [anon_sym___declspec] = ACTIONS(8726), - [anon_sym___based] = ACTIONS(8726), - [anon_sym_signed] = ACTIONS(8726), - [anon_sym_unsigned] = ACTIONS(8726), - [anon_sym_long] = ACTIONS(8726), - [anon_sym_short] = ACTIONS(8726), - [anon_sym_LBRACK] = ACTIONS(8726), - [anon_sym_static] = ACTIONS(8726), - [anon_sym_register] = ACTIONS(8726), - [anon_sym_inline] = ACTIONS(8726), - [anon_sym___inline] = ACTIONS(8726), - [anon_sym___inline__] = ACTIONS(8726), - [anon_sym___forceinline] = ACTIONS(8726), - [anon_sym_thread_local] = ACTIONS(8726), - [anon_sym___thread] = ACTIONS(8726), - [anon_sym_const] = ACTIONS(8726), - [anon_sym_constexpr] = ACTIONS(8726), - [anon_sym_volatile] = ACTIONS(8726), - [anon_sym_restrict] = ACTIONS(8726), - [anon_sym___restrict__] = ACTIONS(8726), - [anon_sym__Atomic] = ACTIONS(8726), - [anon_sym__Noreturn] = ACTIONS(8726), - [anon_sym_noreturn] = ACTIONS(8726), - [anon_sym__Nonnull] = ACTIONS(8726), - [anon_sym_mutable] = ACTIONS(8726), - [anon_sym_constinit] = ACTIONS(8726), - [anon_sym_consteval] = ACTIONS(8726), - [anon_sym_alignas] = ACTIONS(8726), - [anon_sym__Alignas] = ACTIONS(8726), - [sym_primitive_type] = ACTIONS(8726), - [anon_sym_enum] = ACTIONS(8726), - [anon_sym_class] = ACTIONS(8726), - [anon_sym_struct] = ACTIONS(8726), - [anon_sym_union] = ACTIONS(8726), - [anon_sym_typename] = ACTIONS(8726), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8726), - [anon_sym_decltype] = ACTIONS(8726), - [anon_sym_explicit] = ACTIONS(8726), - [anon_sym_private] = ACTIONS(8726), - [anon_sym_template] = ACTIONS(8726), - [anon_sym_operator] = ACTIONS(8726), - [anon_sym_friend] = ACTIONS(8726), - [anon_sym_public] = ACTIONS(8726), - [anon_sym_protected] = ACTIONS(8726), - [anon_sym_static_assert] = ACTIONS(8726), - [anon_sym_LBRACK_COLON] = ACTIONS(8728), - }, - [STATE(3339)] = { - [sym_identifier] = ACTIONS(8726), - [aux_sym_preproc_def_token1] = ACTIONS(8726), - [aux_sym_preproc_if_token1] = ACTIONS(8726), - [aux_sym_preproc_if_token2] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), - [sym_preproc_directive] = ACTIONS(8726), - [anon_sym_LPAREN2] = ACTIONS(8728), - [anon_sym_TILDE] = ACTIONS(8728), - [anon_sym_STAR] = ACTIONS(8728), - [anon_sym_AMP_AMP] = ACTIONS(8728), - [anon_sym_AMP] = ACTIONS(8726), - [anon_sym_SEMI] = ACTIONS(8728), - [anon_sym___extension__] = ACTIONS(8726), - [anon_sym_typedef] = ACTIONS(8726), - [anon_sym_virtual] = ACTIONS(8726), - [anon_sym_extern] = ACTIONS(8726), - [anon_sym___attribute__] = ACTIONS(8726), - [anon_sym___attribute] = ACTIONS(8726), - [anon_sym_using] = ACTIONS(8726), - [anon_sym_COLON_COLON] = ACTIONS(8728), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), - [anon_sym___declspec] = ACTIONS(8726), - [anon_sym___based] = ACTIONS(8726), - [anon_sym_signed] = ACTIONS(8726), - [anon_sym_unsigned] = ACTIONS(8726), - [anon_sym_long] = ACTIONS(8726), - [anon_sym_short] = ACTIONS(8726), - [anon_sym_LBRACK] = ACTIONS(8726), - [anon_sym_static] = ACTIONS(8726), - [anon_sym_register] = ACTIONS(8726), - [anon_sym_inline] = ACTIONS(8726), - [anon_sym___inline] = ACTIONS(8726), - [anon_sym___inline__] = ACTIONS(8726), - [anon_sym___forceinline] = ACTIONS(8726), - [anon_sym_thread_local] = ACTIONS(8726), - [anon_sym___thread] = ACTIONS(8726), - [anon_sym_const] = ACTIONS(8726), - [anon_sym_constexpr] = ACTIONS(8726), - [anon_sym_volatile] = ACTIONS(8726), - [anon_sym_restrict] = ACTIONS(8726), - [anon_sym___restrict__] = ACTIONS(8726), - [anon_sym__Atomic] = ACTIONS(8726), - [anon_sym__Noreturn] = ACTIONS(8726), - [anon_sym_noreturn] = ACTIONS(8726), - [anon_sym__Nonnull] = ACTIONS(8726), - [anon_sym_mutable] = ACTIONS(8726), - [anon_sym_constinit] = ACTIONS(8726), - [anon_sym_consteval] = ACTIONS(8726), - [anon_sym_alignas] = ACTIONS(8726), - [anon_sym__Alignas] = ACTIONS(8726), - [sym_primitive_type] = ACTIONS(8726), - [anon_sym_enum] = ACTIONS(8726), - [anon_sym_class] = ACTIONS(8726), - [anon_sym_struct] = ACTIONS(8726), - [anon_sym_union] = ACTIONS(8726), - [anon_sym_typename] = ACTIONS(8726), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8726), - [anon_sym_decltype] = ACTIONS(8726), - [anon_sym_explicit] = ACTIONS(8726), - [anon_sym_private] = ACTIONS(8726), - [anon_sym_template] = ACTIONS(8726), - [anon_sym_operator] = ACTIONS(8726), - [anon_sym_friend] = ACTIONS(8726), - [anon_sym_public] = ACTIONS(8726), - [anon_sym_protected] = ACTIONS(8726), - [anon_sym_static_assert] = ACTIONS(8726), - [anon_sym_LBRACK_COLON] = ACTIONS(8728), + [STATE(3278)] = { + [sym_identifier] = ACTIONS(8737), + [aux_sym_preproc_def_token1] = ACTIONS(8737), + [aux_sym_preproc_if_token1] = ACTIONS(8737), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8737), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8737), + [sym_preproc_directive] = ACTIONS(8737), + [anon_sym_LPAREN2] = ACTIONS(8739), + [anon_sym_TILDE] = ACTIONS(8739), + [anon_sym_STAR] = ACTIONS(8739), + [anon_sym_AMP_AMP] = ACTIONS(8739), + [anon_sym_AMP] = ACTIONS(8737), + [anon_sym_SEMI] = ACTIONS(8739), + [anon_sym___extension__] = ACTIONS(8737), + [anon_sym_typedef] = ACTIONS(8737), + [anon_sym_virtual] = ACTIONS(8737), + [anon_sym_extern] = ACTIONS(8737), + [anon_sym___attribute__] = ACTIONS(8737), + [anon_sym___attribute] = ACTIONS(8737), + [anon_sym_using] = ACTIONS(8737), + [anon_sym_COLON_COLON] = ACTIONS(8739), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8739), + [anon_sym___declspec] = ACTIONS(8737), + [anon_sym___based] = ACTIONS(8737), + [anon_sym_RBRACE] = ACTIONS(8739), + [anon_sym_signed] = ACTIONS(8737), + [anon_sym_unsigned] = ACTIONS(8737), + [anon_sym_long] = ACTIONS(8737), + [anon_sym_short] = ACTIONS(8737), + [anon_sym_LBRACK] = ACTIONS(8737), + [anon_sym_static] = ACTIONS(8737), + [anon_sym_register] = ACTIONS(8737), + [anon_sym_inline] = ACTIONS(8737), + [anon_sym___inline] = ACTIONS(8737), + [anon_sym___inline__] = ACTIONS(8737), + [anon_sym___forceinline] = ACTIONS(8737), + [anon_sym_thread_local] = ACTIONS(8737), + [anon_sym___thread] = ACTIONS(8737), + [anon_sym_const] = ACTIONS(8737), + [anon_sym_constexpr] = ACTIONS(8737), + [anon_sym_volatile] = ACTIONS(8737), + [anon_sym_restrict] = ACTIONS(8737), + [anon_sym___restrict__] = ACTIONS(8737), + [anon_sym__Atomic] = ACTIONS(8737), + [anon_sym__Noreturn] = ACTIONS(8737), + [anon_sym_noreturn] = ACTIONS(8737), + [anon_sym__Nonnull] = ACTIONS(8737), + [anon_sym_mutable] = ACTIONS(8737), + [anon_sym_constinit] = ACTIONS(8737), + [anon_sym_consteval] = ACTIONS(8737), + [anon_sym_alignas] = ACTIONS(8737), + [anon_sym__Alignas] = ACTIONS(8737), + [sym_primitive_type] = ACTIONS(8737), + [anon_sym_enum] = ACTIONS(8737), + [anon_sym_class] = ACTIONS(8737), + [anon_sym_struct] = ACTIONS(8737), + [anon_sym_union] = ACTIONS(8737), + [anon_sym_typename] = ACTIONS(8737), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8737), + [anon_sym_decltype] = ACTIONS(8737), + [anon_sym_explicit] = ACTIONS(8737), + [anon_sym_private] = ACTIONS(8737), + [anon_sym_template] = ACTIONS(8737), + [anon_sym_operator] = ACTIONS(8737), + [anon_sym_friend] = ACTIONS(8737), + [anon_sym_public] = ACTIONS(8737), + [anon_sym_protected] = ACTIONS(8737), + [anon_sym_static_assert] = ACTIONS(8737), + [anon_sym_LBRACK_COLON] = ACTIONS(8739), }, - [STATE(3340)] = { - [sym_identifier] = ACTIONS(9120), - [anon_sym_LPAREN2] = ACTIONS(9122), - [anon_sym_TILDE] = ACTIONS(9122), - [anon_sym_STAR] = ACTIONS(9122), - [anon_sym_AMP_AMP] = ACTIONS(9122), - [anon_sym_AMP] = ACTIONS(9120), - [anon_sym___extension__] = ACTIONS(9120), - [anon_sym_virtual] = ACTIONS(9120), - [anon_sym_extern] = ACTIONS(9120), - [anon_sym___attribute__] = ACTIONS(9120), - [anon_sym___attribute] = ACTIONS(9120), - [anon_sym_using] = ACTIONS(9120), - [anon_sym_COLON_COLON] = ACTIONS(9122), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9122), - [anon_sym___declspec] = ACTIONS(9120), - [anon_sym___based] = ACTIONS(9120), - [anon_sym___cdecl] = ACTIONS(9120), - [anon_sym___clrcall] = ACTIONS(9120), - [anon_sym___stdcall] = ACTIONS(9120), - [anon_sym___fastcall] = ACTIONS(9120), - [anon_sym___thiscall] = ACTIONS(9120), - [anon_sym___vectorcall] = ACTIONS(9120), - [anon_sym_LBRACE] = ACTIONS(9122), - [anon_sym_signed] = ACTIONS(9120), - [anon_sym_unsigned] = ACTIONS(9120), - [anon_sym_long] = ACTIONS(9120), - [anon_sym_short] = ACTIONS(9120), - [anon_sym_LBRACK] = ACTIONS(9120), - [anon_sym_static] = ACTIONS(9120), - [anon_sym_register] = ACTIONS(9120), - [anon_sym_inline] = ACTIONS(9120), - [anon_sym___inline] = ACTIONS(9120), - [anon_sym___inline__] = ACTIONS(9120), - [anon_sym___forceinline] = ACTIONS(9120), - [anon_sym_thread_local] = ACTIONS(9120), - [anon_sym___thread] = ACTIONS(9120), - [anon_sym_const] = ACTIONS(9120), - [anon_sym_constexpr] = ACTIONS(9120), - [anon_sym_volatile] = ACTIONS(9120), - [anon_sym_restrict] = ACTIONS(9120), - [anon_sym___restrict__] = ACTIONS(9120), - [anon_sym__Atomic] = ACTIONS(9120), - [anon_sym__Noreturn] = ACTIONS(9120), - [anon_sym_noreturn] = ACTIONS(9120), - [anon_sym__Nonnull] = ACTIONS(9120), - [anon_sym_mutable] = ACTIONS(9120), - [anon_sym_constinit] = ACTIONS(9120), - [anon_sym_consteval] = ACTIONS(9120), - [anon_sym_alignas] = ACTIONS(9120), - [anon_sym__Alignas] = ACTIONS(9120), - [sym_primitive_type] = ACTIONS(9120), - [anon_sym_enum] = ACTIONS(9120), - [anon_sym_class] = ACTIONS(9120), - [anon_sym_struct] = ACTIONS(9120), - [anon_sym_union] = ACTIONS(9120), - [anon_sym_typename] = ACTIONS(9120), - [anon_sym_DASH_GT] = ACTIONS(9122), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9120), - [anon_sym_decltype] = ACTIONS(9120), - [anon_sym_explicit] = ACTIONS(9120), - [anon_sym_template] = ACTIONS(9120), - [anon_sym_operator] = ACTIONS(9120), - [anon_sym_friend] = ACTIONS(9120), - [anon_sym_noexcept] = ACTIONS(9120), - [anon_sym_throw] = ACTIONS(9120), - [anon_sym_concept] = ACTIONS(9120), - [anon_sym_requires] = ACTIONS(9120), - [anon_sym_LBRACK_COLON] = ACTIONS(9122), + [STATE(3279)] = { + [sym_identifier] = ACTIONS(3913), + [aux_sym_preproc_def_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token2] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3913), + [sym_preproc_directive] = ACTIONS(3913), + [anon_sym_LPAREN2] = ACTIONS(3915), + [anon_sym_TILDE] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym___extension__] = ACTIONS(3913), + [anon_sym_typedef] = ACTIONS(3913), + [anon_sym_virtual] = ACTIONS(3913), + [anon_sym_extern] = ACTIONS(3913), + [anon_sym___attribute__] = ACTIONS(3913), + [anon_sym___attribute] = ACTIONS(3913), + [anon_sym_using] = ACTIONS(3913), + [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3915), + [anon_sym___declspec] = ACTIONS(3913), + [anon_sym___based] = ACTIONS(3913), + [anon_sym_signed] = ACTIONS(3913), + [anon_sym_unsigned] = ACTIONS(3913), + [anon_sym_long] = ACTIONS(3913), + [anon_sym_short] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(3913), + [anon_sym_static] = ACTIONS(3913), + [anon_sym_register] = ACTIONS(3913), + [anon_sym_inline] = ACTIONS(3913), + [anon_sym___inline] = ACTIONS(3913), + [anon_sym___inline__] = ACTIONS(3913), + [anon_sym___forceinline] = ACTIONS(3913), + [anon_sym_thread_local] = ACTIONS(3913), + [anon_sym___thread] = ACTIONS(3913), + [anon_sym_const] = ACTIONS(3913), + [anon_sym_constexpr] = ACTIONS(3913), + [anon_sym_volatile] = ACTIONS(3913), + [anon_sym_restrict] = ACTIONS(3913), + [anon_sym___restrict__] = ACTIONS(3913), + [anon_sym__Atomic] = ACTIONS(3913), + [anon_sym__Noreturn] = ACTIONS(3913), + [anon_sym_noreturn] = ACTIONS(3913), + [anon_sym__Nonnull] = ACTIONS(3913), + [anon_sym_mutable] = ACTIONS(3913), + [anon_sym_constinit] = ACTIONS(3913), + [anon_sym_consteval] = ACTIONS(3913), + [anon_sym_alignas] = ACTIONS(3913), + [anon_sym__Alignas] = ACTIONS(3913), + [sym_primitive_type] = ACTIONS(3913), + [anon_sym_enum] = ACTIONS(3913), + [anon_sym_class] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(3913), + [anon_sym_union] = ACTIONS(3913), + [anon_sym_typename] = ACTIONS(3913), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3913), + [anon_sym_decltype] = ACTIONS(3913), + [anon_sym_explicit] = ACTIONS(3913), + [anon_sym_private] = ACTIONS(3913), + [anon_sym_template] = ACTIONS(3913), + [anon_sym_operator] = ACTIONS(3913), + [anon_sym_friend] = ACTIONS(3913), + [anon_sym_public] = ACTIONS(3913), + [anon_sym_protected] = ACTIONS(3913), + [anon_sym_static_assert] = ACTIONS(3913), + [anon_sym_LBRACK_COLON] = ACTIONS(3915), }, - [STATE(3341)] = { + [STATE(3280)] = { [sym_identifier] = ACTIONS(3917), [aux_sym_preproc_def_token1] = ACTIONS(3917), [aux_sym_preproc_if_token1] = ACTIONS(3917), + [aux_sym_preproc_if_token2] = ACTIONS(3917), [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), [sym_preproc_directive] = ACTIONS(3917), @@ -418280,7 +413791,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), [anon_sym___declspec] = ACTIONS(3917), [anon_sym___based] = ACTIONS(3917), - [anon_sym_RBRACE] = ACTIONS(3919), [anon_sym_signed] = ACTIONS(3917), [anon_sym_unsigned] = ACTIONS(3917), [anon_sym_long] = ACTIONS(3917), @@ -418327,1075 +413837,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(3917), [anon_sym_LBRACK_COLON] = ACTIONS(3919), }, - [STATE(3342)] = { - [sym_identifier] = ACTIONS(3931), - [aux_sym_preproc_def_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token1] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), - [sym_preproc_directive] = ACTIONS(3931), - [anon_sym_LPAREN2] = ACTIONS(3933), - [anon_sym_TILDE] = ACTIONS(3933), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(3931), - [anon_sym_SEMI] = ACTIONS(3933), - [anon_sym___extension__] = ACTIONS(3931), - [anon_sym_typedef] = ACTIONS(3931), - [anon_sym_virtual] = ACTIONS(3931), - [anon_sym_extern] = ACTIONS(3931), - [anon_sym___attribute__] = ACTIONS(3931), - [anon_sym___attribute] = ACTIONS(3931), - [anon_sym_using] = ACTIONS(3931), - [anon_sym_COLON_COLON] = ACTIONS(3933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), - [anon_sym___declspec] = ACTIONS(3931), - [anon_sym___based] = ACTIONS(3931), - [anon_sym_RBRACE] = ACTIONS(3933), - [anon_sym_signed] = ACTIONS(3931), - [anon_sym_unsigned] = ACTIONS(3931), - [anon_sym_long] = ACTIONS(3931), - [anon_sym_short] = ACTIONS(3931), - [anon_sym_LBRACK] = ACTIONS(3931), - [anon_sym_static] = ACTIONS(3931), - [anon_sym_register] = ACTIONS(3931), - [anon_sym_inline] = ACTIONS(3931), - [anon_sym___inline] = ACTIONS(3931), - [anon_sym___inline__] = ACTIONS(3931), - [anon_sym___forceinline] = ACTIONS(3931), - [anon_sym_thread_local] = ACTIONS(3931), - [anon_sym___thread] = ACTIONS(3931), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_constexpr] = ACTIONS(3931), - [anon_sym_volatile] = ACTIONS(3931), - [anon_sym_restrict] = ACTIONS(3931), - [anon_sym___restrict__] = ACTIONS(3931), - [anon_sym__Atomic] = ACTIONS(3931), - [anon_sym__Noreturn] = ACTIONS(3931), - [anon_sym_noreturn] = ACTIONS(3931), - [anon_sym__Nonnull] = ACTIONS(3931), - [anon_sym_mutable] = ACTIONS(3931), - [anon_sym_constinit] = ACTIONS(3931), - [anon_sym_consteval] = ACTIONS(3931), - [anon_sym_alignas] = ACTIONS(3931), - [anon_sym__Alignas] = ACTIONS(3931), - [sym_primitive_type] = ACTIONS(3931), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3931), - [anon_sym_struct] = ACTIONS(3931), - [anon_sym_union] = ACTIONS(3931), - [anon_sym_typename] = ACTIONS(3931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3931), - [anon_sym_decltype] = ACTIONS(3931), - [anon_sym_explicit] = ACTIONS(3931), - [anon_sym_private] = ACTIONS(3931), - [anon_sym_template] = ACTIONS(3931), - [anon_sym_operator] = ACTIONS(3931), - [anon_sym_friend] = ACTIONS(3931), - [anon_sym_public] = ACTIONS(3931), - [anon_sym_protected] = ACTIONS(3931), - [anon_sym_static_assert] = ACTIONS(3931), - [anon_sym_LBRACK_COLON] = ACTIONS(3933), - }, - [STATE(3343)] = { - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym_RBRACE] = ACTIONS(3952), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_friend] = ACTIONS(3950), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), - }, - [STATE(3344)] = { - [sym_identifier] = ACTIONS(3962), - [aux_sym_preproc_def_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), - [sym_preproc_directive] = ACTIONS(3962), - [anon_sym_LPAREN2] = ACTIONS(3964), - [anon_sym_TILDE] = ACTIONS(3964), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym___extension__] = ACTIONS(3962), - [anon_sym_typedef] = ACTIONS(3962), - [anon_sym_virtual] = ACTIONS(3962), - [anon_sym_extern] = ACTIONS(3962), - [anon_sym___attribute__] = ACTIONS(3962), - [anon_sym___attribute] = ACTIONS(3962), - [anon_sym_using] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), - [anon_sym___declspec] = ACTIONS(3962), - [anon_sym___based] = ACTIONS(3962), - [anon_sym_RBRACE] = ACTIONS(3964), - [anon_sym_signed] = ACTIONS(3962), - [anon_sym_unsigned] = ACTIONS(3962), - [anon_sym_long] = ACTIONS(3962), - [anon_sym_short] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3962), - [anon_sym_register] = ACTIONS(3962), - [anon_sym_inline] = ACTIONS(3962), - [anon_sym___inline] = ACTIONS(3962), - [anon_sym___inline__] = ACTIONS(3962), - [anon_sym___forceinline] = ACTIONS(3962), - [anon_sym_thread_local] = ACTIONS(3962), - [anon_sym___thread] = ACTIONS(3962), - [anon_sym_const] = ACTIONS(3962), - [anon_sym_constexpr] = ACTIONS(3962), - [anon_sym_volatile] = ACTIONS(3962), - [anon_sym_restrict] = ACTIONS(3962), - [anon_sym___restrict__] = ACTIONS(3962), - [anon_sym__Atomic] = ACTIONS(3962), - [anon_sym__Noreturn] = ACTIONS(3962), - [anon_sym_noreturn] = ACTIONS(3962), - [anon_sym__Nonnull] = ACTIONS(3962), - [anon_sym_mutable] = ACTIONS(3962), - [anon_sym_constinit] = ACTIONS(3962), - [anon_sym_consteval] = ACTIONS(3962), - [anon_sym_alignas] = ACTIONS(3962), - [anon_sym__Alignas] = ACTIONS(3962), - [sym_primitive_type] = ACTIONS(3962), - [anon_sym_enum] = ACTIONS(3962), - [anon_sym_class] = ACTIONS(3962), - [anon_sym_struct] = ACTIONS(3962), - [anon_sym_union] = ACTIONS(3962), - [anon_sym_typename] = ACTIONS(3962), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3962), - [anon_sym_decltype] = ACTIONS(3962), - [anon_sym_explicit] = ACTIONS(3962), - [anon_sym_private] = ACTIONS(3962), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(3962), - [anon_sym_friend] = ACTIONS(3962), - [anon_sym_public] = ACTIONS(3962), - [anon_sym_protected] = ACTIONS(3962), - [anon_sym_static_assert] = ACTIONS(3962), - [anon_sym_LBRACK_COLON] = ACTIONS(3964), - }, - [STATE(3345)] = { - [sym_identifier] = ACTIONS(3988), - [aux_sym_preproc_def_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token1] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), - [sym_preproc_directive] = ACTIONS(3988), - [anon_sym_LPAREN2] = ACTIONS(3990), - [anon_sym_TILDE] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3988), - [anon_sym_SEMI] = ACTIONS(3990), - [anon_sym___extension__] = ACTIONS(3988), - [anon_sym_typedef] = ACTIONS(3988), - [anon_sym_virtual] = ACTIONS(3988), - [anon_sym_extern] = ACTIONS(3988), - [anon_sym___attribute__] = ACTIONS(3988), - [anon_sym___attribute] = ACTIONS(3988), - [anon_sym_using] = ACTIONS(3988), - [anon_sym_COLON_COLON] = ACTIONS(3990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), - [anon_sym___declspec] = ACTIONS(3988), - [anon_sym___based] = ACTIONS(3988), - [anon_sym_RBRACE] = ACTIONS(3990), - [anon_sym_signed] = ACTIONS(3988), - [anon_sym_unsigned] = ACTIONS(3988), - [anon_sym_long] = ACTIONS(3988), - [anon_sym_short] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_static] = ACTIONS(3988), - [anon_sym_register] = ACTIONS(3988), - [anon_sym_inline] = ACTIONS(3988), - [anon_sym___inline] = ACTIONS(3988), - [anon_sym___inline__] = ACTIONS(3988), - [anon_sym___forceinline] = ACTIONS(3988), - [anon_sym_thread_local] = ACTIONS(3988), - [anon_sym___thread] = ACTIONS(3988), - [anon_sym_const] = ACTIONS(3988), - [anon_sym_constexpr] = ACTIONS(3988), - [anon_sym_volatile] = ACTIONS(3988), - [anon_sym_restrict] = ACTIONS(3988), - [anon_sym___restrict__] = ACTIONS(3988), - [anon_sym__Atomic] = ACTIONS(3988), - [anon_sym__Noreturn] = ACTIONS(3988), - [anon_sym_noreturn] = ACTIONS(3988), - [anon_sym__Nonnull] = ACTIONS(3988), - [anon_sym_mutable] = ACTIONS(3988), - [anon_sym_constinit] = ACTIONS(3988), - [anon_sym_consteval] = ACTIONS(3988), - [anon_sym_alignas] = ACTIONS(3988), - [anon_sym__Alignas] = ACTIONS(3988), - [sym_primitive_type] = ACTIONS(3988), - [anon_sym_enum] = ACTIONS(3988), - [anon_sym_class] = ACTIONS(3988), - [anon_sym_struct] = ACTIONS(3988), - [anon_sym_union] = ACTIONS(3988), - [anon_sym_typename] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3988), - [anon_sym_decltype] = ACTIONS(3988), - [anon_sym_explicit] = ACTIONS(3988), - [anon_sym_private] = ACTIONS(3988), - [anon_sym_template] = ACTIONS(3988), - [anon_sym_operator] = ACTIONS(3988), - [anon_sym_friend] = ACTIONS(3988), - [anon_sym_public] = ACTIONS(3988), - [anon_sym_protected] = ACTIONS(3988), - [anon_sym_static_assert] = ACTIONS(3988), - [anon_sym_LBRACK_COLON] = ACTIONS(3990), - }, - [STATE(3346)] = { - [sym_identifier] = ACTIONS(3992), - [aux_sym_preproc_def_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token1] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), - [sym_preproc_directive] = ACTIONS(3992), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_TILDE] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3992), - [anon_sym_SEMI] = ACTIONS(3994), - [anon_sym___extension__] = ACTIONS(3992), - [anon_sym_typedef] = ACTIONS(3992), - [anon_sym_virtual] = ACTIONS(3992), - [anon_sym_extern] = ACTIONS(3992), - [anon_sym___attribute__] = ACTIONS(3992), - [anon_sym___attribute] = ACTIONS(3992), - [anon_sym_using] = ACTIONS(3992), - [anon_sym_COLON_COLON] = ACTIONS(3994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), - [anon_sym___declspec] = ACTIONS(3992), - [anon_sym___based] = ACTIONS(3992), - [anon_sym_RBRACE] = ACTIONS(3994), - [anon_sym_signed] = ACTIONS(3992), - [anon_sym_unsigned] = ACTIONS(3992), - [anon_sym_long] = ACTIONS(3992), - [anon_sym_short] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_register] = ACTIONS(3992), - [anon_sym_inline] = ACTIONS(3992), - [anon_sym___inline] = ACTIONS(3992), - [anon_sym___inline__] = ACTIONS(3992), - [anon_sym___forceinline] = ACTIONS(3992), - [anon_sym_thread_local] = ACTIONS(3992), - [anon_sym___thread] = ACTIONS(3992), - [anon_sym_const] = ACTIONS(3992), - [anon_sym_constexpr] = ACTIONS(3992), - [anon_sym_volatile] = ACTIONS(3992), - [anon_sym_restrict] = ACTIONS(3992), - [anon_sym___restrict__] = ACTIONS(3992), - [anon_sym__Atomic] = ACTIONS(3992), - [anon_sym__Noreturn] = ACTIONS(3992), - [anon_sym_noreturn] = ACTIONS(3992), - [anon_sym__Nonnull] = ACTIONS(3992), - [anon_sym_mutable] = ACTIONS(3992), - [anon_sym_constinit] = ACTIONS(3992), - [anon_sym_consteval] = ACTIONS(3992), - [anon_sym_alignas] = ACTIONS(3992), - [anon_sym__Alignas] = ACTIONS(3992), - [sym_primitive_type] = ACTIONS(3992), - [anon_sym_enum] = ACTIONS(3992), - [anon_sym_class] = ACTIONS(3992), - [anon_sym_struct] = ACTIONS(3992), - [anon_sym_union] = ACTIONS(3992), - [anon_sym_typename] = ACTIONS(3992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3992), - [anon_sym_decltype] = ACTIONS(3992), - [anon_sym_explicit] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_template] = ACTIONS(3992), - [anon_sym_operator] = ACTIONS(3992), - [anon_sym_friend] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_protected] = ACTIONS(3992), - [anon_sym_static_assert] = ACTIONS(3992), - [anon_sym_LBRACK_COLON] = ACTIONS(3994), - }, - [STATE(3347)] = { - [sym_template_argument_list] = STATE(3663), - [sym_identifier] = ACTIONS(6565), - [anon_sym_LPAREN2] = ACTIONS(6572), - [anon_sym_TILDE] = ACTIONS(6572), - [anon_sym_STAR] = ACTIONS(6572), - [anon_sym_PIPE_PIPE] = ACTIONS(6572), - [anon_sym_AMP_AMP] = ACTIONS(6572), - [anon_sym_AMP] = ACTIONS(6565), - [anon_sym_LT] = ACTIONS(9099), - [anon_sym___extension__] = ACTIONS(6565), - [anon_sym_virtual] = ACTIONS(6565), - [anon_sym_extern] = ACTIONS(6565), - [anon_sym___attribute__] = ACTIONS(6565), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_using] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6572), - [anon_sym___declspec] = ACTIONS(6565), - [anon_sym___based] = ACTIONS(6565), - [anon_sym___cdecl] = ACTIONS(6565), - [anon_sym___clrcall] = ACTIONS(6565), - [anon_sym___stdcall] = ACTIONS(6565), - [anon_sym___fastcall] = ACTIONS(6565), - [anon_sym___thiscall] = ACTIONS(6565), - [anon_sym___vectorcall] = ACTIONS(6565), - [anon_sym_signed] = ACTIONS(6565), - [anon_sym_unsigned] = ACTIONS(6565), - [anon_sym_long] = ACTIONS(6565), - [anon_sym_short] = ACTIONS(6565), - [anon_sym_LBRACK] = ACTIONS(6565), - [anon_sym_static] = ACTIONS(6565), - [anon_sym_register] = ACTIONS(6565), - [anon_sym_inline] = ACTIONS(6565), - [anon_sym___inline] = ACTIONS(6565), - [anon_sym___inline__] = ACTIONS(6565), - [anon_sym___forceinline] = ACTIONS(6565), - [anon_sym_thread_local] = ACTIONS(6565), - [anon_sym___thread] = ACTIONS(6565), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6565), - [anon_sym_volatile] = ACTIONS(6565), - [anon_sym_restrict] = ACTIONS(6565), - [anon_sym___restrict__] = ACTIONS(6565), - [anon_sym__Atomic] = ACTIONS(6565), - [anon_sym__Noreturn] = ACTIONS(6565), - [anon_sym_noreturn] = ACTIONS(6565), - [anon_sym__Nonnull] = ACTIONS(6565), - [anon_sym_mutable] = ACTIONS(6565), - [anon_sym_constinit] = ACTIONS(6565), - [anon_sym_consteval] = ACTIONS(6565), - [anon_sym_alignas] = ACTIONS(6565), - [anon_sym__Alignas] = ACTIONS(6565), - [sym_primitive_type] = ACTIONS(6565), - [anon_sym_enum] = ACTIONS(6565), - [anon_sym_class] = ACTIONS(6565), - [anon_sym_struct] = ACTIONS(6565), - [anon_sym_union] = ACTIONS(6565), - [anon_sym_or] = ACTIONS(6565), - [anon_sym_and] = ACTIONS(6565), - [anon_sym_typename] = ACTIONS(6565), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6565), - [anon_sym_decltype] = ACTIONS(6565), - [anon_sym_explicit] = ACTIONS(6565), - [anon_sym_template] = ACTIONS(6565), - [anon_sym_operator] = ACTIONS(6565), - [anon_sym_friend] = ACTIONS(6565), - [anon_sym_concept] = ACTIONS(6565), - [anon_sym_LBRACK_COLON] = ACTIONS(6572), - }, - [STATE(3348)] = { - [sym_identifier] = ACTIONS(4000), - [aux_sym_preproc_def_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token1] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), - [sym_preproc_directive] = ACTIONS(4000), - [anon_sym_LPAREN2] = ACTIONS(4002), - [anon_sym_TILDE] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym___extension__] = ACTIONS(4000), - [anon_sym_typedef] = ACTIONS(4000), - [anon_sym_virtual] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym___attribute__] = ACTIONS(4000), - [anon_sym___attribute] = ACTIONS(4000), - [anon_sym_using] = ACTIONS(4000), - [anon_sym_COLON_COLON] = ACTIONS(4002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), - [anon_sym___declspec] = ACTIONS(4000), - [anon_sym___based] = ACTIONS(4000), - [anon_sym_RBRACE] = ACTIONS(4002), - [anon_sym_signed] = ACTIONS(4000), - [anon_sym_unsigned] = ACTIONS(4000), - [anon_sym_long] = ACTIONS(4000), - [anon_sym_short] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_static] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_inline] = ACTIONS(4000), - [anon_sym___inline] = ACTIONS(4000), - [anon_sym___inline__] = ACTIONS(4000), - [anon_sym___forceinline] = ACTIONS(4000), - [anon_sym_thread_local] = ACTIONS(4000), - [anon_sym___thread] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_constexpr] = ACTIONS(4000), - [anon_sym_volatile] = ACTIONS(4000), - [anon_sym_restrict] = ACTIONS(4000), - [anon_sym___restrict__] = ACTIONS(4000), - [anon_sym__Atomic] = ACTIONS(4000), - [anon_sym__Noreturn] = ACTIONS(4000), - [anon_sym_noreturn] = ACTIONS(4000), - [anon_sym__Nonnull] = ACTIONS(4000), - [anon_sym_mutable] = ACTIONS(4000), - [anon_sym_constinit] = ACTIONS(4000), - [anon_sym_consteval] = ACTIONS(4000), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym__Alignas] = ACTIONS(4000), - [sym_primitive_type] = ACTIONS(4000), - [anon_sym_enum] = ACTIONS(4000), - [anon_sym_class] = ACTIONS(4000), - [anon_sym_struct] = ACTIONS(4000), - [anon_sym_union] = ACTIONS(4000), - [anon_sym_typename] = ACTIONS(4000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4000), - [anon_sym_decltype] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4000), - [anon_sym_private] = ACTIONS(4000), - [anon_sym_template] = ACTIONS(4000), - [anon_sym_operator] = ACTIONS(4000), - [anon_sym_friend] = ACTIONS(4000), - [anon_sym_public] = ACTIONS(4000), - [anon_sym_protected] = ACTIONS(4000), - [anon_sym_static_assert] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4002), - }, - [STATE(3349)] = { - [sym_identifier] = ACTIONS(4004), - [aux_sym_preproc_def_token1] = ACTIONS(4004), - [aux_sym_preproc_if_token1] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), - [sym_preproc_directive] = ACTIONS(4004), - [anon_sym_LPAREN2] = ACTIONS(4006), - [anon_sym_TILDE] = ACTIONS(4006), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym___extension__] = ACTIONS(4004), - [anon_sym_typedef] = ACTIONS(4004), - [anon_sym_virtual] = ACTIONS(4004), - [anon_sym_extern] = ACTIONS(4004), - [anon_sym___attribute__] = ACTIONS(4004), - [anon_sym___attribute] = ACTIONS(4004), - [anon_sym_using] = ACTIONS(4004), - [anon_sym_COLON_COLON] = ACTIONS(4006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), - [anon_sym___declspec] = ACTIONS(4004), - [anon_sym___based] = ACTIONS(4004), - [anon_sym_RBRACE] = ACTIONS(4006), - [anon_sym_signed] = ACTIONS(4004), - [anon_sym_unsigned] = ACTIONS(4004), - [anon_sym_long] = ACTIONS(4004), - [anon_sym_short] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(4004), - [anon_sym_static] = ACTIONS(4004), - [anon_sym_register] = ACTIONS(4004), - [anon_sym_inline] = ACTIONS(4004), - [anon_sym___inline] = ACTIONS(4004), - [anon_sym___inline__] = ACTIONS(4004), - [anon_sym___forceinline] = ACTIONS(4004), - [anon_sym_thread_local] = ACTIONS(4004), - [anon_sym___thread] = ACTIONS(4004), - [anon_sym_const] = ACTIONS(4004), - [anon_sym_constexpr] = ACTIONS(4004), - [anon_sym_volatile] = ACTIONS(4004), - [anon_sym_restrict] = ACTIONS(4004), - [anon_sym___restrict__] = ACTIONS(4004), - [anon_sym__Atomic] = ACTIONS(4004), - [anon_sym__Noreturn] = ACTIONS(4004), - [anon_sym_noreturn] = ACTIONS(4004), - [anon_sym__Nonnull] = ACTIONS(4004), - [anon_sym_mutable] = ACTIONS(4004), - [anon_sym_constinit] = ACTIONS(4004), - [anon_sym_consteval] = ACTIONS(4004), - [anon_sym_alignas] = ACTIONS(4004), - [anon_sym__Alignas] = ACTIONS(4004), - [sym_primitive_type] = ACTIONS(4004), - [anon_sym_enum] = ACTIONS(4004), - [anon_sym_class] = ACTIONS(4004), - [anon_sym_struct] = ACTIONS(4004), - [anon_sym_union] = ACTIONS(4004), - [anon_sym_typename] = ACTIONS(4004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4004), - [anon_sym_decltype] = ACTIONS(4004), - [anon_sym_explicit] = ACTIONS(4004), - [anon_sym_private] = ACTIONS(4004), - [anon_sym_template] = ACTIONS(4004), - [anon_sym_operator] = ACTIONS(4004), - [anon_sym_friend] = ACTIONS(4004), - [anon_sym_public] = ACTIONS(4004), - [anon_sym_protected] = ACTIONS(4004), - [anon_sym_static_assert] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4006), - }, - [STATE(3350)] = { - [sym_identifier] = ACTIONS(4012), - [aux_sym_preproc_def_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token1] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), - [sym_preproc_directive] = ACTIONS(4012), - [anon_sym_LPAREN2] = ACTIONS(4014), - [anon_sym_TILDE] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym___extension__] = ACTIONS(4012), - [anon_sym_typedef] = ACTIONS(4012), - [anon_sym_virtual] = ACTIONS(4012), - [anon_sym_extern] = ACTIONS(4012), - [anon_sym___attribute__] = ACTIONS(4012), - [anon_sym___attribute] = ACTIONS(4012), - [anon_sym_using] = ACTIONS(4012), - [anon_sym_COLON_COLON] = ACTIONS(4014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), - [anon_sym___declspec] = ACTIONS(4012), - [anon_sym___based] = ACTIONS(4012), - [anon_sym_RBRACE] = ACTIONS(4014), - [anon_sym_signed] = ACTIONS(4012), - [anon_sym_unsigned] = ACTIONS(4012), - [anon_sym_long] = ACTIONS(4012), - [anon_sym_short] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4012), - [anon_sym_static] = ACTIONS(4012), - [anon_sym_register] = ACTIONS(4012), - [anon_sym_inline] = ACTIONS(4012), - [anon_sym___inline] = ACTIONS(4012), - [anon_sym___inline__] = ACTIONS(4012), - [anon_sym___forceinline] = ACTIONS(4012), - [anon_sym_thread_local] = ACTIONS(4012), - [anon_sym___thread] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4012), - [anon_sym_constexpr] = ACTIONS(4012), - [anon_sym_volatile] = ACTIONS(4012), - [anon_sym_restrict] = ACTIONS(4012), - [anon_sym___restrict__] = ACTIONS(4012), - [anon_sym__Atomic] = ACTIONS(4012), - [anon_sym__Noreturn] = ACTIONS(4012), - [anon_sym_noreturn] = ACTIONS(4012), - [anon_sym__Nonnull] = ACTIONS(4012), - [anon_sym_mutable] = ACTIONS(4012), - [anon_sym_constinit] = ACTIONS(4012), - [anon_sym_consteval] = ACTIONS(4012), - [anon_sym_alignas] = ACTIONS(4012), - [anon_sym__Alignas] = ACTIONS(4012), - [sym_primitive_type] = ACTIONS(4012), - [anon_sym_enum] = ACTIONS(4012), - [anon_sym_class] = ACTIONS(4012), - [anon_sym_struct] = ACTIONS(4012), - [anon_sym_union] = ACTIONS(4012), - [anon_sym_typename] = ACTIONS(4012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4012), - [anon_sym_decltype] = ACTIONS(4012), - [anon_sym_explicit] = ACTIONS(4012), - [anon_sym_private] = ACTIONS(4012), - [anon_sym_template] = ACTIONS(4012), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_friend] = ACTIONS(4012), - [anon_sym_public] = ACTIONS(4012), - [anon_sym_protected] = ACTIONS(4012), - [anon_sym_static_assert] = ACTIONS(4012), - [anon_sym_LBRACK_COLON] = ACTIONS(4014), - }, - [STATE(3351)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym__function_attributes_end] = STATE(4579), - [sym__function_postfix] = STATE(5696), - [sym_trailing_return_type] = STATE(4642), - [sym_requires_clause] = STATE(5696), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7791), - [anon_sym_and] = ACTIONS(7791), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7791), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8514), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6777), - [anon_sym_override] = ACTIONS(6777), - [anon_sym_requires] = ACTIONS(6783), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), - }, - [STATE(3352)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym__function_attributes_end] = STATE(4572), - [sym__function_postfix] = STATE(5681), - [sym_trailing_return_type] = STATE(4639), - [sym_requires_clause] = STATE(5681), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7966), - [anon_sym_and] = ACTIONS(7966), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7966), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8595), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6777), - [anon_sym_override] = ACTIONS(6777), - [anon_sym_requires] = ACTIONS(6783), - [anon_sym_DASH_GT_STAR] = ACTIONS(7966), - }, - [STATE(3353)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym__function_attributes_end] = STATE(4619), - [sym__function_postfix] = STATE(5550), - [sym_trailing_return_type] = STATE(4715), - [sym_requires_clause] = STATE(5550), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_RPAREN] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8422), - [anon_sym_and] = ACTIONS(8422), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8422), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(9124), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6777), - [anon_sym_override] = ACTIONS(6777), - [anon_sym_requires] = ACTIONS(6783), - [anon_sym_DASH_GT_STAR] = ACTIONS(8422), + [STATE(3281)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token2] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_friend] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), }, - [STATE(3354)] = { - [sym_identifier] = ACTIONS(8770), - [aux_sym_preproc_def_token1] = ACTIONS(8770), - [aux_sym_preproc_if_token1] = ACTIONS(8770), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8770), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8770), - [sym_preproc_directive] = ACTIONS(8770), - [anon_sym_LPAREN2] = ACTIONS(8772), - [anon_sym_TILDE] = ACTIONS(8772), - [anon_sym_STAR] = ACTIONS(8772), - [anon_sym_AMP_AMP] = ACTIONS(8772), - [anon_sym_AMP] = ACTIONS(8770), - [anon_sym_SEMI] = ACTIONS(8772), - [anon_sym___extension__] = ACTIONS(8770), - [anon_sym_typedef] = ACTIONS(8770), - [anon_sym_virtual] = ACTIONS(8770), - [anon_sym_extern] = ACTIONS(8770), - [anon_sym___attribute__] = ACTIONS(8770), - [anon_sym___attribute] = ACTIONS(8770), - [anon_sym_using] = ACTIONS(8770), - [anon_sym_COLON_COLON] = ACTIONS(8772), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8772), - [anon_sym___declspec] = ACTIONS(8770), - [anon_sym___based] = ACTIONS(8770), - [anon_sym_RBRACE] = ACTIONS(8772), - [anon_sym_signed] = ACTIONS(8770), - [anon_sym_unsigned] = ACTIONS(8770), - [anon_sym_long] = ACTIONS(8770), - [anon_sym_short] = ACTIONS(8770), - [anon_sym_LBRACK] = ACTIONS(8770), - [anon_sym_static] = ACTIONS(8770), - [anon_sym_register] = ACTIONS(8770), - [anon_sym_inline] = ACTIONS(8770), - [anon_sym___inline] = ACTIONS(8770), - [anon_sym___inline__] = ACTIONS(8770), - [anon_sym___forceinline] = ACTIONS(8770), - [anon_sym_thread_local] = ACTIONS(8770), - [anon_sym___thread] = ACTIONS(8770), - [anon_sym_const] = ACTIONS(8770), - [anon_sym_constexpr] = ACTIONS(8770), - [anon_sym_volatile] = ACTIONS(8770), - [anon_sym_restrict] = ACTIONS(8770), - [anon_sym___restrict__] = ACTIONS(8770), - [anon_sym__Atomic] = ACTIONS(8770), - [anon_sym__Noreturn] = ACTIONS(8770), - [anon_sym_noreturn] = ACTIONS(8770), - [anon_sym__Nonnull] = ACTIONS(8770), - [anon_sym_mutable] = ACTIONS(8770), - [anon_sym_constinit] = ACTIONS(8770), - [anon_sym_consteval] = ACTIONS(8770), - [anon_sym_alignas] = ACTIONS(8770), - [anon_sym__Alignas] = ACTIONS(8770), - [sym_primitive_type] = ACTIONS(8770), - [anon_sym_enum] = ACTIONS(8770), - [anon_sym_class] = ACTIONS(8770), - [anon_sym_struct] = ACTIONS(8770), - [anon_sym_union] = ACTIONS(8770), - [anon_sym_typename] = ACTIONS(8770), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8770), - [anon_sym_decltype] = ACTIONS(8770), - [anon_sym_explicit] = ACTIONS(8770), - [anon_sym_private] = ACTIONS(8770), - [anon_sym_template] = ACTIONS(8770), - [anon_sym_operator] = ACTIONS(8770), - [anon_sym_friend] = ACTIONS(8770), - [anon_sym_public] = ACTIONS(8770), - [anon_sym_protected] = ACTIONS(8770), - [anon_sym_static_assert] = ACTIONS(8770), - [anon_sym_LBRACK_COLON] = ACTIONS(8772), + [STATE(3282)] = { + [sym_identifier] = ACTIONS(8729), + [aux_sym_preproc_def_token1] = ACTIONS(8729), + [aux_sym_preproc_if_token1] = ACTIONS(8729), + [aux_sym_preproc_if_token2] = ACTIONS(8729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8729), + [sym_preproc_directive] = ACTIONS(8729), + [anon_sym_LPAREN2] = ACTIONS(8731), + [anon_sym_TILDE] = ACTIONS(8731), + [anon_sym_STAR] = ACTIONS(8731), + [anon_sym_AMP_AMP] = ACTIONS(8731), + [anon_sym_AMP] = ACTIONS(8729), + [anon_sym_SEMI] = ACTIONS(8731), + [anon_sym___extension__] = ACTIONS(8729), + [anon_sym_typedef] = ACTIONS(8729), + [anon_sym_virtual] = ACTIONS(8729), + [anon_sym_extern] = ACTIONS(8729), + [anon_sym___attribute__] = ACTIONS(8729), + [anon_sym___attribute] = ACTIONS(8729), + [anon_sym_using] = ACTIONS(8729), + [anon_sym_COLON_COLON] = ACTIONS(8731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8731), + [anon_sym___declspec] = ACTIONS(8729), + [anon_sym___based] = ACTIONS(8729), + [anon_sym_signed] = ACTIONS(8729), + [anon_sym_unsigned] = ACTIONS(8729), + [anon_sym_long] = ACTIONS(8729), + [anon_sym_short] = ACTIONS(8729), + [anon_sym_LBRACK] = ACTIONS(8729), + [anon_sym_static] = ACTIONS(8729), + [anon_sym_register] = ACTIONS(8729), + [anon_sym_inline] = ACTIONS(8729), + [anon_sym___inline] = ACTIONS(8729), + [anon_sym___inline__] = ACTIONS(8729), + [anon_sym___forceinline] = ACTIONS(8729), + [anon_sym_thread_local] = ACTIONS(8729), + [anon_sym___thread] = ACTIONS(8729), + [anon_sym_const] = ACTIONS(8729), + [anon_sym_constexpr] = ACTIONS(8729), + [anon_sym_volatile] = ACTIONS(8729), + [anon_sym_restrict] = ACTIONS(8729), + [anon_sym___restrict__] = ACTIONS(8729), + [anon_sym__Atomic] = ACTIONS(8729), + [anon_sym__Noreturn] = ACTIONS(8729), + [anon_sym_noreturn] = ACTIONS(8729), + [anon_sym__Nonnull] = ACTIONS(8729), + [anon_sym_mutable] = ACTIONS(8729), + [anon_sym_constinit] = ACTIONS(8729), + [anon_sym_consteval] = ACTIONS(8729), + [anon_sym_alignas] = ACTIONS(8729), + [anon_sym__Alignas] = ACTIONS(8729), + [sym_primitive_type] = ACTIONS(8729), + [anon_sym_enum] = ACTIONS(8729), + [anon_sym_class] = ACTIONS(8729), + [anon_sym_struct] = ACTIONS(8729), + [anon_sym_union] = ACTIONS(8729), + [anon_sym_typename] = ACTIONS(8729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8729), + [anon_sym_decltype] = ACTIONS(8729), + [anon_sym_explicit] = ACTIONS(8729), + [anon_sym_private] = ACTIONS(8729), + [anon_sym_template] = ACTIONS(8729), + [anon_sym_operator] = ACTIONS(8729), + [anon_sym_friend] = ACTIONS(8729), + [anon_sym_public] = ACTIONS(8729), + [anon_sym_protected] = ACTIONS(8729), + [anon_sym_static_assert] = ACTIONS(8729), + [anon_sym_LBRACK_COLON] = ACTIONS(8731), }, - [STATE(3355)] = { - [sym_identifier] = ACTIONS(3954), - [aux_sym_preproc_def_token1] = ACTIONS(3954), - [aux_sym_preproc_if_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3954), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3954), - [sym_preproc_directive] = ACTIONS(3954), - [anon_sym_LPAREN2] = ACTIONS(3956), - [anon_sym_TILDE] = ACTIONS(3956), - [anon_sym_STAR] = ACTIONS(3956), - [anon_sym_AMP_AMP] = ACTIONS(3956), - [anon_sym_AMP] = ACTIONS(3954), - [anon_sym_SEMI] = ACTIONS(3956), - [anon_sym___extension__] = ACTIONS(3954), - [anon_sym_typedef] = ACTIONS(3954), - [anon_sym_virtual] = ACTIONS(3954), - [anon_sym_extern] = ACTIONS(3954), - [anon_sym___attribute__] = ACTIONS(3954), - [anon_sym___attribute] = ACTIONS(3954), - [anon_sym_using] = ACTIONS(3954), - [anon_sym_COLON_COLON] = ACTIONS(3956), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3956), - [anon_sym___declspec] = ACTIONS(3954), - [anon_sym___based] = ACTIONS(3954), - [anon_sym_RBRACE] = ACTIONS(3956), - [anon_sym_signed] = ACTIONS(3954), - [anon_sym_unsigned] = ACTIONS(3954), - [anon_sym_long] = ACTIONS(3954), - [anon_sym_short] = ACTIONS(3954), - [anon_sym_LBRACK] = ACTIONS(3954), - [anon_sym_static] = ACTIONS(3954), - [anon_sym_register] = ACTIONS(3954), - [anon_sym_inline] = ACTIONS(3954), - [anon_sym___inline] = ACTIONS(3954), - [anon_sym___inline__] = ACTIONS(3954), - [anon_sym___forceinline] = ACTIONS(3954), - [anon_sym_thread_local] = ACTIONS(3954), - [anon_sym___thread] = ACTIONS(3954), - [anon_sym_const] = ACTIONS(3954), - [anon_sym_constexpr] = ACTIONS(3954), - [anon_sym_volatile] = ACTIONS(3954), - [anon_sym_restrict] = ACTIONS(3954), - [anon_sym___restrict__] = ACTIONS(3954), - [anon_sym__Atomic] = ACTIONS(3954), - [anon_sym__Noreturn] = ACTIONS(3954), - [anon_sym_noreturn] = ACTIONS(3954), - [anon_sym__Nonnull] = ACTIONS(3954), - [anon_sym_mutable] = ACTIONS(3954), - [anon_sym_constinit] = ACTIONS(3954), - [anon_sym_consteval] = ACTIONS(3954), - [anon_sym_alignas] = ACTIONS(3954), - [anon_sym__Alignas] = ACTIONS(3954), - [sym_primitive_type] = ACTIONS(3954), - [anon_sym_enum] = ACTIONS(3954), - [anon_sym_class] = ACTIONS(3954), - [anon_sym_struct] = ACTIONS(3954), - [anon_sym_union] = ACTIONS(3954), - [anon_sym_typename] = ACTIONS(3954), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3954), - [anon_sym_decltype] = ACTIONS(3954), - [anon_sym_explicit] = ACTIONS(3954), - [anon_sym_private] = ACTIONS(3954), - [anon_sym_template] = ACTIONS(3954), - [anon_sym_operator] = ACTIONS(3954), - [anon_sym_friend] = ACTIONS(3954), - [anon_sym_public] = ACTIONS(3954), - [anon_sym_protected] = ACTIONS(3954), - [anon_sym_static_assert] = ACTIONS(3954), - [anon_sym_LBRACK_COLON] = ACTIONS(3956), + [STATE(3283)] = { + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token2] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_private] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_friend] = ACTIONS(3921), + [anon_sym_public] = ACTIONS(3921), + [anon_sym_protected] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), }, - [STATE(3356)] = { - [sym_identifier] = ACTIONS(8774), - [aux_sym_preproc_def_token1] = ACTIONS(8774), - [aux_sym_preproc_if_token1] = ACTIONS(8774), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8774), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8774), - [sym_preproc_directive] = ACTIONS(8774), - [anon_sym_LPAREN2] = ACTIONS(8776), - [anon_sym_TILDE] = ACTIONS(8776), - [anon_sym_STAR] = ACTIONS(8776), - [anon_sym_AMP_AMP] = ACTIONS(8776), - [anon_sym_AMP] = ACTIONS(8774), - [anon_sym_SEMI] = ACTIONS(8776), - [anon_sym___extension__] = ACTIONS(8774), - [anon_sym_typedef] = ACTIONS(8774), - [anon_sym_virtual] = ACTIONS(8774), - [anon_sym_extern] = ACTIONS(8774), - [anon_sym___attribute__] = ACTIONS(8774), - [anon_sym___attribute] = ACTIONS(8774), - [anon_sym_using] = ACTIONS(8774), - [anon_sym_COLON_COLON] = ACTIONS(8776), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8776), - [anon_sym___declspec] = ACTIONS(8774), - [anon_sym___based] = ACTIONS(8774), - [anon_sym_RBRACE] = ACTIONS(8776), - [anon_sym_signed] = ACTIONS(8774), - [anon_sym_unsigned] = ACTIONS(8774), - [anon_sym_long] = ACTIONS(8774), - [anon_sym_short] = ACTIONS(8774), - [anon_sym_LBRACK] = ACTIONS(8774), - [anon_sym_static] = ACTIONS(8774), - [anon_sym_register] = ACTIONS(8774), - [anon_sym_inline] = ACTIONS(8774), - [anon_sym___inline] = ACTIONS(8774), - [anon_sym___inline__] = ACTIONS(8774), - [anon_sym___forceinline] = ACTIONS(8774), - [anon_sym_thread_local] = ACTIONS(8774), - [anon_sym___thread] = ACTIONS(8774), - [anon_sym_const] = ACTIONS(8774), - [anon_sym_constexpr] = ACTIONS(8774), - [anon_sym_volatile] = ACTIONS(8774), - [anon_sym_restrict] = ACTIONS(8774), - [anon_sym___restrict__] = ACTIONS(8774), - [anon_sym__Atomic] = ACTIONS(8774), - [anon_sym__Noreturn] = ACTIONS(8774), - [anon_sym_noreturn] = ACTIONS(8774), - [anon_sym__Nonnull] = ACTIONS(8774), - [anon_sym_mutable] = ACTIONS(8774), - [anon_sym_constinit] = ACTIONS(8774), - [anon_sym_consteval] = ACTIONS(8774), - [anon_sym_alignas] = ACTIONS(8774), - [anon_sym__Alignas] = ACTIONS(8774), - [sym_primitive_type] = ACTIONS(8774), - [anon_sym_enum] = ACTIONS(8774), - [anon_sym_class] = ACTIONS(8774), - [anon_sym_struct] = ACTIONS(8774), - [anon_sym_union] = ACTIONS(8774), - [anon_sym_typename] = ACTIONS(8774), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8774), - [anon_sym_decltype] = ACTIONS(8774), - [anon_sym_explicit] = ACTIONS(8774), - [anon_sym_private] = ACTIONS(8774), - [anon_sym_template] = ACTIONS(8774), - [anon_sym_operator] = ACTIONS(8774), - [anon_sym_friend] = ACTIONS(8774), - [anon_sym_public] = ACTIONS(8774), - [anon_sym_protected] = ACTIONS(8774), - [anon_sym_static_assert] = ACTIONS(8774), - [anon_sym_LBRACK_COLON] = ACTIONS(8776), + [STATE(3284)] = { + [sym_identifier] = ACTIONS(8741), + [aux_sym_preproc_def_token1] = ACTIONS(8741), + [aux_sym_preproc_if_token1] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8741), + [sym_preproc_directive] = ACTIONS(8741), + [anon_sym_LPAREN2] = ACTIONS(8743), + [anon_sym_TILDE] = ACTIONS(8743), + [anon_sym_STAR] = ACTIONS(8743), + [anon_sym_AMP_AMP] = ACTIONS(8743), + [anon_sym_AMP] = ACTIONS(8741), + [anon_sym_SEMI] = ACTIONS(8743), + [anon_sym___extension__] = ACTIONS(8741), + [anon_sym_typedef] = ACTIONS(8741), + [anon_sym_virtual] = ACTIONS(8741), + [anon_sym_extern] = ACTIONS(8741), + [anon_sym___attribute__] = ACTIONS(8741), + [anon_sym___attribute] = ACTIONS(8741), + [anon_sym_using] = ACTIONS(8741), + [anon_sym_COLON_COLON] = ACTIONS(8743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8743), + [anon_sym___declspec] = ACTIONS(8741), + [anon_sym___based] = ACTIONS(8741), + [anon_sym_RBRACE] = ACTIONS(8743), + [anon_sym_signed] = ACTIONS(8741), + [anon_sym_unsigned] = ACTIONS(8741), + [anon_sym_long] = ACTIONS(8741), + [anon_sym_short] = ACTIONS(8741), + [anon_sym_LBRACK] = ACTIONS(8741), + [anon_sym_static] = ACTIONS(8741), + [anon_sym_register] = ACTIONS(8741), + [anon_sym_inline] = ACTIONS(8741), + [anon_sym___inline] = ACTIONS(8741), + [anon_sym___inline__] = ACTIONS(8741), + [anon_sym___forceinline] = ACTIONS(8741), + [anon_sym_thread_local] = ACTIONS(8741), + [anon_sym___thread] = ACTIONS(8741), + [anon_sym_const] = ACTIONS(8741), + [anon_sym_constexpr] = ACTIONS(8741), + [anon_sym_volatile] = ACTIONS(8741), + [anon_sym_restrict] = ACTIONS(8741), + [anon_sym___restrict__] = ACTIONS(8741), + [anon_sym__Atomic] = ACTIONS(8741), + [anon_sym__Noreturn] = ACTIONS(8741), + [anon_sym_noreturn] = ACTIONS(8741), + [anon_sym__Nonnull] = ACTIONS(8741), + [anon_sym_mutable] = ACTIONS(8741), + [anon_sym_constinit] = ACTIONS(8741), + [anon_sym_consteval] = ACTIONS(8741), + [anon_sym_alignas] = ACTIONS(8741), + [anon_sym__Alignas] = ACTIONS(8741), + [sym_primitive_type] = ACTIONS(8741), + [anon_sym_enum] = ACTIONS(8741), + [anon_sym_class] = ACTIONS(8741), + [anon_sym_struct] = ACTIONS(8741), + [anon_sym_union] = ACTIONS(8741), + [anon_sym_typename] = ACTIONS(8741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8741), + [anon_sym_decltype] = ACTIONS(8741), + [anon_sym_explicit] = ACTIONS(8741), + [anon_sym_private] = ACTIONS(8741), + [anon_sym_template] = ACTIONS(8741), + [anon_sym_operator] = ACTIONS(8741), + [anon_sym_friend] = ACTIONS(8741), + [anon_sym_public] = ACTIONS(8741), + [anon_sym_protected] = ACTIONS(8741), + [anon_sym_static_assert] = ACTIONS(8741), + [anon_sym_LBRACK_COLON] = ACTIONS(8743), }, - [STATE(3357)] = { + [STATE(3285)] = { [sym_identifier] = ACTIONS(4044), [aux_sym_preproc_def_token1] = ACTIONS(4044), [aux_sym_preproc_if_token1] = ACTIONS(4044), + [aux_sym_preproc_if_token2] = ACTIONS(4044), [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), [sym_preproc_directive] = ACTIONS(4044), @@ -419416,7 +414146,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), [anon_sym___declspec] = ACTIONS(4044), [anon_sym___based] = ACTIONS(4044), - [anon_sym_RBRACE] = ACTIONS(4046), [anon_sym_signed] = ACTIONS(4044), [anon_sym_unsigned] = ACTIONS(4044), [anon_sym_long] = ACTIONS(4044), @@ -419463,649 +414192,1715 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4044), [anon_sym_LBRACK_COLON] = ACTIONS(4046), }, - [STATE(3358)] = { - [sym_identifier] = ACTIONS(8782), - [aux_sym_preproc_def_token1] = ACTIONS(8782), - [aux_sym_preproc_if_token1] = ACTIONS(8782), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8782), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8782), - [sym_preproc_directive] = ACTIONS(8782), - [anon_sym_LPAREN2] = ACTIONS(8784), - [anon_sym_TILDE] = ACTIONS(8784), - [anon_sym_STAR] = ACTIONS(8784), - [anon_sym_AMP_AMP] = ACTIONS(8784), - [anon_sym_AMP] = ACTIONS(8782), - [anon_sym_SEMI] = ACTIONS(8784), - [anon_sym___extension__] = ACTIONS(8782), - [anon_sym_typedef] = ACTIONS(8782), - [anon_sym_virtual] = ACTIONS(8782), - [anon_sym_extern] = ACTIONS(8782), - [anon_sym___attribute__] = ACTIONS(8782), - [anon_sym___attribute] = ACTIONS(8782), - [anon_sym_using] = ACTIONS(8782), - [anon_sym_COLON_COLON] = ACTIONS(8784), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8784), - [anon_sym___declspec] = ACTIONS(8782), - [anon_sym___based] = ACTIONS(8782), - [anon_sym_RBRACE] = ACTIONS(8784), - [anon_sym_signed] = ACTIONS(8782), - [anon_sym_unsigned] = ACTIONS(8782), - [anon_sym_long] = ACTIONS(8782), - [anon_sym_short] = ACTIONS(8782), - [anon_sym_LBRACK] = ACTIONS(8782), - [anon_sym_static] = ACTIONS(8782), - [anon_sym_register] = ACTIONS(8782), - [anon_sym_inline] = ACTIONS(8782), - [anon_sym___inline] = ACTIONS(8782), - [anon_sym___inline__] = ACTIONS(8782), - [anon_sym___forceinline] = ACTIONS(8782), - [anon_sym_thread_local] = ACTIONS(8782), - [anon_sym___thread] = ACTIONS(8782), - [anon_sym_const] = ACTIONS(8782), - [anon_sym_constexpr] = ACTIONS(8782), - [anon_sym_volatile] = ACTIONS(8782), - [anon_sym_restrict] = ACTIONS(8782), - [anon_sym___restrict__] = ACTIONS(8782), - [anon_sym__Atomic] = ACTIONS(8782), - [anon_sym__Noreturn] = ACTIONS(8782), - [anon_sym_noreturn] = ACTIONS(8782), - [anon_sym__Nonnull] = ACTIONS(8782), - [anon_sym_mutable] = ACTIONS(8782), - [anon_sym_constinit] = ACTIONS(8782), - [anon_sym_consteval] = ACTIONS(8782), - [anon_sym_alignas] = ACTIONS(8782), - [anon_sym__Alignas] = ACTIONS(8782), - [sym_primitive_type] = ACTIONS(8782), - [anon_sym_enum] = ACTIONS(8782), - [anon_sym_class] = ACTIONS(8782), - [anon_sym_struct] = ACTIONS(8782), - [anon_sym_union] = ACTIONS(8782), - [anon_sym_typename] = ACTIONS(8782), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8782), - [anon_sym_decltype] = ACTIONS(8782), - [anon_sym_explicit] = ACTIONS(8782), - [anon_sym_private] = ACTIONS(8782), - [anon_sym_template] = ACTIONS(8782), - [anon_sym_operator] = ACTIONS(8782), - [anon_sym_friend] = ACTIONS(8782), - [anon_sym_public] = ACTIONS(8782), - [anon_sym_protected] = ACTIONS(8782), - [anon_sym_static_assert] = ACTIONS(8782), - [anon_sym_LBRACK_COLON] = ACTIONS(8784), + [STATE(3286)] = { + [sym_identifier] = ACTIONS(8745), + [aux_sym_preproc_def_token1] = ACTIONS(8745), + [aux_sym_preproc_if_token1] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8745), + [sym_preproc_directive] = ACTIONS(8745), + [anon_sym_LPAREN2] = ACTIONS(8747), + [anon_sym_TILDE] = ACTIONS(8747), + [anon_sym_STAR] = ACTIONS(8747), + [anon_sym_AMP_AMP] = ACTIONS(8747), + [anon_sym_AMP] = ACTIONS(8745), + [anon_sym_SEMI] = ACTIONS(8747), + [anon_sym___extension__] = ACTIONS(8745), + [anon_sym_typedef] = ACTIONS(8745), + [anon_sym_virtual] = ACTIONS(8745), + [anon_sym_extern] = ACTIONS(8745), + [anon_sym___attribute__] = ACTIONS(8745), + [anon_sym___attribute] = ACTIONS(8745), + [anon_sym_using] = ACTIONS(8745), + [anon_sym_COLON_COLON] = ACTIONS(8747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8747), + [anon_sym___declspec] = ACTIONS(8745), + [anon_sym___based] = ACTIONS(8745), + [anon_sym_RBRACE] = ACTIONS(8747), + [anon_sym_signed] = ACTIONS(8745), + [anon_sym_unsigned] = ACTIONS(8745), + [anon_sym_long] = ACTIONS(8745), + [anon_sym_short] = ACTIONS(8745), + [anon_sym_LBRACK] = ACTIONS(8745), + [anon_sym_static] = ACTIONS(8745), + [anon_sym_register] = ACTIONS(8745), + [anon_sym_inline] = ACTIONS(8745), + [anon_sym___inline] = ACTIONS(8745), + [anon_sym___inline__] = ACTIONS(8745), + [anon_sym___forceinline] = ACTIONS(8745), + [anon_sym_thread_local] = ACTIONS(8745), + [anon_sym___thread] = ACTIONS(8745), + [anon_sym_const] = ACTIONS(8745), + [anon_sym_constexpr] = ACTIONS(8745), + [anon_sym_volatile] = ACTIONS(8745), + [anon_sym_restrict] = ACTIONS(8745), + [anon_sym___restrict__] = ACTIONS(8745), + [anon_sym__Atomic] = ACTIONS(8745), + [anon_sym__Noreturn] = ACTIONS(8745), + [anon_sym_noreturn] = ACTIONS(8745), + [anon_sym__Nonnull] = ACTIONS(8745), + [anon_sym_mutable] = ACTIONS(8745), + [anon_sym_constinit] = ACTIONS(8745), + [anon_sym_consteval] = ACTIONS(8745), + [anon_sym_alignas] = ACTIONS(8745), + [anon_sym__Alignas] = ACTIONS(8745), + [sym_primitive_type] = ACTIONS(8745), + [anon_sym_enum] = ACTIONS(8745), + [anon_sym_class] = ACTIONS(8745), + [anon_sym_struct] = ACTIONS(8745), + [anon_sym_union] = ACTIONS(8745), + [anon_sym_typename] = ACTIONS(8745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8745), + [anon_sym_decltype] = ACTIONS(8745), + [anon_sym_explicit] = ACTIONS(8745), + [anon_sym_private] = ACTIONS(8745), + [anon_sym_template] = ACTIONS(8745), + [anon_sym_operator] = ACTIONS(8745), + [anon_sym_friend] = ACTIONS(8745), + [anon_sym_public] = ACTIONS(8745), + [anon_sym_protected] = ACTIONS(8745), + [anon_sym_static_assert] = ACTIONS(8745), + [anon_sym_LBRACK_COLON] = ACTIONS(8747), }, - [STATE(3359)] = { - [sym_identifier] = ACTIONS(8786), - [aux_sym_preproc_def_token1] = ACTIONS(8786), - [aux_sym_preproc_if_token1] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), - [sym_preproc_directive] = ACTIONS(8786), - [anon_sym_LPAREN2] = ACTIONS(8788), - [anon_sym_TILDE] = ACTIONS(8788), - [anon_sym_STAR] = ACTIONS(8788), - [anon_sym_AMP_AMP] = ACTIONS(8788), - [anon_sym_AMP] = ACTIONS(8786), - [anon_sym_SEMI] = ACTIONS(8788), - [anon_sym___extension__] = ACTIONS(8786), - [anon_sym_typedef] = ACTIONS(8786), - [anon_sym_virtual] = ACTIONS(8786), - [anon_sym_extern] = ACTIONS(8786), - [anon_sym___attribute__] = ACTIONS(8786), - [anon_sym___attribute] = ACTIONS(8786), - [anon_sym_using] = ACTIONS(8786), - [anon_sym_COLON_COLON] = ACTIONS(8788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), - [anon_sym___declspec] = ACTIONS(8786), - [anon_sym___based] = ACTIONS(8786), - [anon_sym_RBRACE] = ACTIONS(8788), - [anon_sym_signed] = ACTIONS(8786), - [anon_sym_unsigned] = ACTIONS(8786), - [anon_sym_long] = ACTIONS(8786), - [anon_sym_short] = ACTIONS(8786), - [anon_sym_LBRACK] = ACTIONS(8786), - [anon_sym_static] = ACTIONS(8786), - [anon_sym_register] = ACTIONS(8786), - [anon_sym_inline] = ACTIONS(8786), - [anon_sym___inline] = ACTIONS(8786), - [anon_sym___inline__] = ACTIONS(8786), - [anon_sym___forceinline] = ACTIONS(8786), - [anon_sym_thread_local] = ACTIONS(8786), - [anon_sym___thread] = ACTIONS(8786), - [anon_sym_const] = ACTIONS(8786), - [anon_sym_constexpr] = ACTIONS(8786), - [anon_sym_volatile] = ACTIONS(8786), - [anon_sym_restrict] = ACTIONS(8786), - [anon_sym___restrict__] = ACTIONS(8786), - [anon_sym__Atomic] = ACTIONS(8786), - [anon_sym__Noreturn] = ACTIONS(8786), - [anon_sym_noreturn] = ACTIONS(8786), - [anon_sym__Nonnull] = ACTIONS(8786), - [anon_sym_mutable] = ACTIONS(8786), - [anon_sym_constinit] = ACTIONS(8786), - [anon_sym_consteval] = ACTIONS(8786), - [anon_sym_alignas] = ACTIONS(8786), - [anon_sym__Alignas] = ACTIONS(8786), - [sym_primitive_type] = ACTIONS(8786), - [anon_sym_enum] = ACTIONS(8786), - [anon_sym_class] = ACTIONS(8786), - [anon_sym_struct] = ACTIONS(8786), - [anon_sym_union] = ACTIONS(8786), - [anon_sym_typename] = ACTIONS(8786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8786), - [anon_sym_decltype] = ACTIONS(8786), - [anon_sym_explicit] = ACTIONS(8786), - [anon_sym_private] = ACTIONS(8786), - [anon_sym_template] = ACTIONS(8786), - [anon_sym_operator] = ACTIONS(8786), - [anon_sym_friend] = ACTIONS(8786), - [anon_sym_public] = ACTIONS(8786), - [anon_sym_protected] = ACTIONS(8786), - [anon_sym_static_assert] = ACTIONS(8786), - [anon_sym_LBRACK_COLON] = ACTIONS(8788), + [STATE(3287)] = { + [sym_identifier] = ACTIONS(8741), + [aux_sym_preproc_def_token1] = ACTIONS(8741), + [aux_sym_preproc_if_token1] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8741), + [sym_preproc_directive] = ACTIONS(8741), + [anon_sym_LPAREN2] = ACTIONS(8743), + [anon_sym_TILDE] = ACTIONS(8743), + [anon_sym_STAR] = ACTIONS(8743), + [anon_sym_AMP_AMP] = ACTIONS(8743), + [anon_sym_AMP] = ACTIONS(8741), + [anon_sym_SEMI] = ACTIONS(8743), + [anon_sym___extension__] = ACTIONS(8741), + [anon_sym_typedef] = ACTIONS(8741), + [anon_sym_virtual] = ACTIONS(8741), + [anon_sym_extern] = ACTIONS(8741), + [anon_sym___attribute__] = ACTIONS(8741), + [anon_sym___attribute] = ACTIONS(8741), + [anon_sym_using] = ACTIONS(8741), + [anon_sym_COLON_COLON] = ACTIONS(8743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8743), + [anon_sym___declspec] = ACTIONS(8741), + [anon_sym___based] = ACTIONS(8741), + [anon_sym_RBRACE] = ACTIONS(8743), + [anon_sym_signed] = ACTIONS(8741), + [anon_sym_unsigned] = ACTIONS(8741), + [anon_sym_long] = ACTIONS(8741), + [anon_sym_short] = ACTIONS(8741), + [anon_sym_LBRACK] = ACTIONS(8741), + [anon_sym_static] = ACTIONS(8741), + [anon_sym_register] = ACTIONS(8741), + [anon_sym_inline] = ACTIONS(8741), + [anon_sym___inline] = ACTIONS(8741), + [anon_sym___inline__] = ACTIONS(8741), + [anon_sym___forceinline] = ACTIONS(8741), + [anon_sym_thread_local] = ACTIONS(8741), + [anon_sym___thread] = ACTIONS(8741), + [anon_sym_const] = ACTIONS(8741), + [anon_sym_constexpr] = ACTIONS(8741), + [anon_sym_volatile] = ACTIONS(8741), + [anon_sym_restrict] = ACTIONS(8741), + [anon_sym___restrict__] = ACTIONS(8741), + [anon_sym__Atomic] = ACTIONS(8741), + [anon_sym__Noreturn] = ACTIONS(8741), + [anon_sym_noreturn] = ACTIONS(8741), + [anon_sym__Nonnull] = ACTIONS(8741), + [anon_sym_mutable] = ACTIONS(8741), + [anon_sym_constinit] = ACTIONS(8741), + [anon_sym_consteval] = ACTIONS(8741), + [anon_sym_alignas] = ACTIONS(8741), + [anon_sym__Alignas] = ACTIONS(8741), + [sym_primitive_type] = ACTIONS(8741), + [anon_sym_enum] = ACTIONS(8741), + [anon_sym_class] = ACTIONS(8741), + [anon_sym_struct] = ACTIONS(8741), + [anon_sym_union] = ACTIONS(8741), + [anon_sym_typename] = ACTIONS(8741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8741), + [anon_sym_decltype] = ACTIONS(8741), + [anon_sym_explicit] = ACTIONS(8741), + [anon_sym_private] = ACTIONS(8741), + [anon_sym_template] = ACTIONS(8741), + [anon_sym_operator] = ACTIONS(8741), + [anon_sym_friend] = ACTIONS(8741), + [anon_sym_public] = ACTIONS(8741), + [anon_sym_protected] = ACTIONS(8741), + [anon_sym_static_assert] = ACTIONS(8741), + [anon_sym_LBRACK_COLON] = ACTIONS(8743), }, - [STATE(3360)] = { - [sym_identifier] = ACTIONS(8794), - [aux_sym_preproc_def_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), - [sym_preproc_directive] = ACTIONS(8794), - [anon_sym_LPAREN2] = ACTIONS(8796), - [anon_sym_TILDE] = ACTIONS(8796), - [anon_sym_STAR] = ACTIONS(8796), - [anon_sym_AMP_AMP] = ACTIONS(8796), - [anon_sym_AMP] = ACTIONS(8794), - [anon_sym_SEMI] = ACTIONS(8796), - [anon_sym___extension__] = ACTIONS(8794), - [anon_sym_typedef] = ACTIONS(8794), - [anon_sym_virtual] = ACTIONS(8794), - [anon_sym_extern] = ACTIONS(8794), - [anon_sym___attribute__] = ACTIONS(8794), - [anon_sym___attribute] = ACTIONS(8794), - [anon_sym_using] = ACTIONS(8794), - [anon_sym_COLON_COLON] = ACTIONS(8796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), - [anon_sym___declspec] = ACTIONS(8794), - [anon_sym___based] = ACTIONS(8794), - [anon_sym_RBRACE] = ACTIONS(8796), - [anon_sym_signed] = ACTIONS(8794), - [anon_sym_unsigned] = ACTIONS(8794), - [anon_sym_long] = ACTIONS(8794), - [anon_sym_short] = ACTIONS(8794), - [anon_sym_LBRACK] = ACTIONS(8794), - [anon_sym_static] = ACTIONS(8794), - [anon_sym_register] = ACTIONS(8794), - [anon_sym_inline] = ACTIONS(8794), - [anon_sym___inline] = ACTIONS(8794), - [anon_sym___inline__] = ACTIONS(8794), - [anon_sym___forceinline] = ACTIONS(8794), - [anon_sym_thread_local] = ACTIONS(8794), - [anon_sym___thread] = ACTIONS(8794), - [anon_sym_const] = ACTIONS(8794), - [anon_sym_constexpr] = ACTIONS(8794), - [anon_sym_volatile] = ACTIONS(8794), - [anon_sym_restrict] = ACTIONS(8794), - [anon_sym___restrict__] = ACTIONS(8794), - [anon_sym__Atomic] = ACTIONS(8794), - [anon_sym__Noreturn] = ACTIONS(8794), - [anon_sym_noreturn] = ACTIONS(8794), - [anon_sym__Nonnull] = ACTIONS(8794), - [anon_sym_mutable] = ACTIONS(8794), - [anon_sym_constinit] = ACTIONS(8794), - [anon_sym_consteval] = ACTIONS(8794), - [anon_sym_alignas] = ACTIONS(8794), - [anon_sym__Alignas] = ACTIONS(8794), - [sym_primitive_type] = ACTIONS(8794), - [anon_sym_enum] = ACTIONS(8794), - [anon_sym_class] = ACTIONS(8794), - [anon_sym_struct] = ACTIONS(8794), - [anon_sym_union] = ACTIONS(8794), - [anon_sym_typename] = ACTIONS(8794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8794), - [anon_sym_decltype] = ACTIONS(8794), - [anon_sym_explicit] = ACTIONS(8794), - [anon_sym_private] = ACTIONS(8794), - [anon_sym_template] = ACTIONS(8794), - [anon_sym_operator] = ACTIONS(8794), - [anon_sym_friend] = ACTIONS(8794), - [anon_sym_public] = ACTIONS(8794), - [anon_sym_protected] = ACTIONS(8794), - [anon_sym_static_assert] = ACTIONS(8794), - [anon_sym_LBRACK_COLON] = ACTIONS(8796), + [STATE(3288)] = { + [sym_identifier] = ACTIONS(8753), + [aux_sym_preproc_def_token1] = ACTIONS(8753), + [aux_sym_preproc_if_token1] = ACTIONS(8753), + [aux_sym_preproc_if_token2] = ACTIONS(8753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8753), + [sym_preproc_directive] = ACTIONS(8753), + [anon_sym_LPAREN2] = ACTIONS(8755), + [anon_sym_TILDE] = ACTIONS(8755), + [anon_sym_STAR] = ACTIONS(8755), + [anon_sym_AMP_AMP] = ACTIONS(8755), + [anon_sym_AMP] = ACTIONS(8753), + [anon_sym_SEMI] = ACTIONS(8755), + [anon_sym___extension__] = ACTIONS(8753), + [anon_sym_typedef] = ACTIONS(8753), + [anon_sym_virtual] = ACTIONS(8753), + [anon_sym_extern] = ACTIONS(8753), + [anon_sym___attribute__] = ACTIONS(8753), + [anon_sym___attribute] = ACTIONS(8753), + [anon_sym_using] = ACTIONS(8753), + [anon_sym_COLON_COLON] = ACTIONS(8755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8755), + [anon_sym___declspec] = ACTIONS(8753), + [anon_sym___based] = ACTIONS(8753), + [anon_sym_signed] = ACTIONS(8753), + [anon_sym_unsigned] = ACTIONS(8753), + [anon_sym_long] = ACTIONS(8753), + [anon_sym_short] = ACTIONS(8753), + [anon_sym_LBRACK] = ACTIONS(8753), + [anon_sym_static] = ACTIONS(8753), + [anon_sym_register] = ACTIONS(8753), + [anon_sym_inline] = ACTIONS(8753), + [anon_sym___inline] = ACTIONS(8753), + [anon_sym___inline__] = ACTIONS(8753), + [anon_sym___forceinline] = ACTIONS(8753), + [anon_sym_thread_local] = ACTIONS(8753), + [anon_sym___thread] = ACTIONS(8753), + [anon_sym_const] = ACTIONS(8753), + [anon_sym_constexpr] = ACTIONS(8753), + [anon_sym_volatile] = ACTIONS(8753), + [anon_sym_restrict] = ACTIONS(8753), + [anon_sym___restrict__] = ACTIONS(8753), + [anon_sym__Atomic] = ACTIONS(8753), + [anon_sym__Noreturn] = ACTIONS(8753), + [anon_sym_noreturn] = ACTIONS(8753), + [anon_sym__Nonnull] = ACTIONS(8753), + [anon_sym_mutable] = ACTIONS(8753), + [anon_sym_constinit] = ACTIONS(8753), + [anon_sym_consteval] = ACTIONS(8753), + [anon_sym_alignas] = ACTIONS(8753), + [anon_sym__Alignas] = ACTIONS(8753), + [sym_primitive_type] = ACTIONS(8753), + [anon_sym_enum] = ACTIONS(8753), + [anon_sym_class] = ACTIONS(8753), + [anon_sym_struct] = ACTIONS(8753), + [anon_sym_union] = ACTIONS(8753), + [anon_sym_typename] = ACTIONS(8753), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8753), + [anon_sym_decltype] = ACTIONS(8753), + [anon_sym_explicit] = ACTIONS(8753), + [anon_sym_private] = ACTIONS(8753), + [anon_sym_template] = ACTIONS(8753), + [anon_sym_operator] = ACTIONS(8753), + [anon_sym_friend] = ACTIONS(8753), + [anon_sym_public] = ACTIONS(8753), + [anon_sym_protected] = ACTIONS(8753), + [anon_sym_static_assert] = ACTIONS(8753), + [anon_sym_LBRACK_COLON] = ACTIONS(8755), }, - [STATE(3361)] = { - [sym_identifier] = ACTIONS(8794), - [aux_sym_preproc_def_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), - [sym_preproc_directive] = ACTIONS(8794), - [anon_sym_LPAREN2] = ACTIONS(8796), - [anon_sym_TILDE] = ACTIONS(8796), - [anon_sym_STAR] = ACTIONS(8796), - [anon_sym_AMP_AMP] = ACTIONS(8796), - [anon_sym_AMP] = ACTIONS(8794), - [anon_sym_SEMI] = ACTIONS(8796), - [anon_sym___extension__] = ACTIONS(8794), - [anon_sym_typedef] = ACTIONS(8794), - [anon_sym_virtual] = ACTIONS(8794), - [anon_sym_extern] = ACTIONS(8794), - [anon_sym___attribute__] = ACTIONS(8794), - [anon_sym___attribute] = ACTIONS(8794), - [anon_sym_using] = ACTIONS(8794), - [anon_sym_COLON_COLON] = ACTIONS(8796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), - [anon_sym___declspec] = ACTIONS(8794), - [anon_sym___based] = ACTIONS(8794), - [anon_sym_RBRACE] = ACTIONS(8796), - [anon_sym_signed] = ACTIONS(8794), - [anon_sym_unsigned] = ACTIONS(8794), - [anon_sym_long] = ACTIONS(8794), - [anon_sym_short] = ACTIONS(8794), - [anon_sym_LBRACK] = ACTIONS(8794), - [anon_sym_static] = ACTIONS(8794), - [anon_sym_register] = ACTIONS(8794), - [anon_sym_inline] = ACTIONS(8794), - [anon_sym___inline] = ACTIONS(8794), - [anon_sym___inline__] = ACTIONS(8794), - [anon_sym___forceinline] = ACTIONS(8794), - [anon_sym_thread_local] = ACTIONS(8794), - [anon_sym___thread] = ACTIONS(8794), - [anon_sym_const] = ACTIONS(8794), - [anon_sym_constexpr] = ACTIONS(8794), - [anon_sym_volatile] = ACTIONS(8794), - [anon_sym_restrict] = ACTIONS(8794), - [anon_sym___restrict__] = ACTIONS(8794), - [anon_sym__Atomic] = ACTIONS(8794), - [anon_sym__Noreturn] = ACTIONS(8794), - [anon_sym_noreturn] = ACTIONS(8794), - [anon_sym__Nonnull] = ACTIONS(8794), - [anon_sym_mutable] = ACTIONS(8794), - [anon_sym_constinit] = ACTIONS(8794), - [anon_sym_consteval] = ACTIONS(8794), - [anon_sym_alignas] = ACTIONS(8794), - [anon_sym__Alignas] = ACTIONS(8794), - [sym_primitive_type] = ACTIONS(8794), - [anon_sym_enum] = ACTIONS(8794), - [anon_sym_class] = ACTIONS(8794), - [anon_sym_struct] = ACTIONS(8794), - [anon_sym_union] = ACTIONS(8794), - [anon_sym_typename] = ACTIONS(8794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8794), - [anon_sym_decltype] = ACTIONS(8794), - [anon_sym_explicit] = ACTIONS(8794), - [anon_sym_private] = ACTIONS(8794), - [anon_sym_template] = ACTIONS(8794), - [anon_sym_operator] = ACTIONS(8794), - [anon_sym_friend] = ACTIONS(8794), - [anon_sym_public] = ACTIONS(8794), - [anon_sym_protected] = ACTIONS(8794), - [anon_sym_static_assert] = ACTIONS(8794), - [anon_sym_LBRACK_COLON] = ACTIONS(8796), + [STATE(3289)] = { + [sym_identifier] = ACTIONS(8757), + [aux_sym_preproc_def_token1] = ACTIONS(8757), + [aux_sym_preproc_if_token1] = ACTIONS(8757), + [aux_sym_preproc_if_token2] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8757), + [sym_preproc_directive] = ACTIONS(8757), + [anon_sym_LPAREN2] = ACTIONS(8759), + [anon_sym_TILDE] = ACTIONS(8759), + [anon_sym_STAR] = ACTIONS(8759), + [anon_sym_AMP_AMP] = ACTIONS(8759), + [anon_sym_AMP] = ACTIONS(8757), + [anon_sym_SEMI] = ACTIONS(8759), + [anon_sym___extension__] = ACTIONS(8757), + [anon_sym_typedef] = ACTIONS(8757), + [anon_sym_virtual] = ACTIONS(8757), + [anon_sym_extern] = ACTIONS(8757), + [anon_sym___attribute__] = ACTIONS(8757), + [anon_sym___attribute] = ACTIONS(8757), + [anon_sym_using] = ACTIONS(8757), + [anon_sym_COLON_COLON] = ACTIONS(8759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8759), + [anon_sym___declspec] = ACTIONS(8757), + [anon_sym___based] = ACTIONS(8757), + [anon_sym_signed] = ACTIONS(8757), + [anon_sym_unsigned] = ACTIONS(8757), + [anon_sym_long] = ACTIONS(8757), + [anon_sym_short] = ACTIONS(8757), + [anon_sym_LBRACK] = ACTIONS(8757), + [anon_sym_static] = ACTIONS(8757), + [anon_sym_register] = ACTIONS(8757), + [anon_sym_inline] = ACTIONS(8757), + [anon_sym___inline] = ACTIONS(8757), + [anon_sym___inline__] = ACTIONS(8757), + [anon_sym___forceinline] = ACTIONS(8757), + [anon_sym_thread_local] = ACTIONS(8757), + [anon_sym___thread] = ACTIONS(8757), + [anon_sym_const] = ACTIONS(8757), + [anon_sym_constexpr] = ACTIONS(8757), + [anon_sym_volatile] = ACTIONS(8757), + [anon_sym_restrict] = ACTIONS(8757), + [anon_sym___restrict__] = ACTIONS(8757), + [anon_sym__Atomic] = ACTIONS(8757), + [anon_sym__Noreturn] = ACTIONS(8757), + [anon_sym_noreturn] = ACTIONS(8757), + [anon_sym__Nonnull] = ACTIONS(8757), + [anon_sym_mutable] = ACTIONS(8757), + [anon_sym_constinit] = ACTIONS(8757), + [anon_sym_consteval] = ACTIONS(8757), + [anon_sym_alignas] = ACTIONS(8757), + [anon_sym__Alignas] = ACTIONS(8757), + [sym_primitive_type] = ACTIONS(8757), + [anon_sym_enum] = ACTIONS(8757), + [anon_sym_class] = ACTIONS(8757), + [anon_sym_struct] = ACTIONS(8757), + [anon_sym_union] = ACTIONS(8757), + [anon_sym_typename] = ACTIONS(8757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8757), + [anon_sym_decltype] = ACTIONS(8757), + [anon_sym_explicit] = ACTIONS(8757), + [anon_sym_private] = ACTIONS(8757), + [anon_sym_template] = ACTIONS(8757), + [anon_sym_operator] = ACTIONS(8757), + [anon_sym_friend] = ACTIONS(8757), + [anon_sym_public] = ACTIONS(8757), + [anon_sym_protected] = ACTIONS(8757), + [anon_sym_static_assert] = ACTIONS(8757), + [anon_sym_LBRACK_COLON] = ACTIONS(8759), }, - [STATE(3362)] = { - [sym_identifier] = ACTIONS(8794), - [aux_sym_preproc_def_token1] = ACTIONS(8794), - [aux_sym_preproc_if_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8794), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8794), - [sym_preproc_directive] = ACTIONS(8794), - [anon_sym_LPAREN2] = ACTIONS(8796), - [anon_sym_TILDE] = ACTIONS(8796), - [anon_sym_STAR] = ACTIONS(8796), - [anon_sym_AMP_AMP] = ACTIONS(8796), - [anon_sym_AMP] = ACTIONS(8794), - [anon_sym_SEMI] = ACTIONS(8796), - [anon_sym___extension__] = ACTIONS(8794), - [anon_sym_typedef] = ACTIONS(8794), - [anon_sym_virtual] = ACTIONS(8794), - [anon_sym_extern] = ACTIONS(8794), - [anon_sym___attribute__] = ACTIONS(8794), - [anon_sym___attribute] = ACTIONS(8794), - [anon_sym_using] = ACTIONS(8794), - [anon_sym_COLON_COLON] = ACTIONS(8796), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8796), - [anon_sym___declspec] = ACTIONS(8794), - [anon_sym___based] = ACTIONS(8794), - [anon_sym_RBRACE] = ACTIONS(8796), - [anon_sym_signed] = ACTIONS(8794), - [anon_sym_unsigned] = ACTIONS(8794), - [anon_sym_long] = ACTIONS(8794), - [anon_sym_short] = ACTIONS(8794), - [anon_sym_LBRACK] = ACTIONS(8794), - [anon_sym_static] = ACTIONS(8794), - [anon_sym_register] = ACTIONS(8794), - [anon_sym_inline] = ACTIONS(8794), - [anon_sym___inline] = ACTIONS(8794), - [anon_sym___inline__] = ACTIONS(8794), - [anon_sym___forceinline] = ACTIONS(8794), - [anon_sym_thread_local] = ACTIONS(8794), - [anon_sym___thread] = ACTIONS(8794), - [anon_sym_const] = ACTIONS(8794), - [anon_sym_constexpr] = ACTIONS(8794), - [anon_sym_volatile] = ACTIONS(8794), - [anon_sym_restrict] = ACTIONS(8794), - [anon_sym___restrict__] = ACTIONS(8794), - [anon_sym__Atomic] = ACTIONS(8794), - [anon_sym__Noreturn] = ACTIONS(8794), - [anon_sym_noreturn] = ACTIONS(8794), - [anon_sym__Nonnull] = ACTIONS(8794), - [anon_sym_mutable] = ACTIONS(8794), - [anon_sym_constinit] = ACTIONS(8794), - [anon_sym_consteval] = ACTIONS(8794), - [anon_sym_alignas] = ACTIONS(8794), - [anon_sym__Alignas] = ACTIONS(8794), - [sym_primitive_type] = ACTIONS(8794), - [anon_sym_enum] = ACTIONS(8794), - [anon_sym_class] = ACTIONS(8794), - [anon_sym_struct] = ACTIONS(8794), - [anon_sym_union] = ACTIONS(8794), - [anon_sym_typename] = ACTIONS(8794), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8794), - [anon_sym_decltype] = ACTIONS(8794), - [anon_sym_explicit] = ACTIONS(8794), - [anon_sym_private] = ACTIONS(8794), - [anon_sym_template] = ACTIONS(8794), - [anon_sym_operator] = ACTIONS(8794), - [anon_sym_friend] = ACTIONS(8794), - [anon_sym_public] = ACTIONS(8794), - [anon_sym_protected] = ACTIONS(8794), - [anon_sym_static_assert] = ACTIONS(8794), - [anon_sym_LBRACK_COLON] = ACTIONS(8796), + [STATE(3290)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token2] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_friend] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), }, - [STATE(3363)] = { - [sym_identifier] = ACTIONS(8786), - [aux_sym_preproc_def_token1] = ACTIONS(8786), - [aux_sym_preproc_if_token1] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8786), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8786), - [sym_preproc_directive] = ACTIONS(8786), - [anon_sym_LPAREN2] = ACTIONS(8788), - [anon_sym_TILDE] = ACTIONS(8788), - [anon_sym_STAR] = ACTIONS(8788), - [anon_sym_AMP_AMP] = ACTIONS(8788), - [anon_sym_AMP] = ACTIONS(8786), - [anon_sym_SEMI] = ACTIONS(8788), - [anon_sym___extension__] = ACTIONS(8786), - [anon_sym_typedef] = ACTIONS(8786), - [anon_sym_virtual] = ACTIONS(8786), - [anon_sym_extern] = ACTIONS(8786), - [anon_sym___attribute__] = ACTIONS(8786), - [anon_sym___attribute] = ACTIONS(8786), - [anon_sym_using] = ACTIONS(8786), - [anon_sym_COLON_COLON] = ACTIONS(8788), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8788), - [anon_sym___declspec] = ACTIONS(8786), - [anon_sym___based] = ACTIONS(8786), - [anon_sym_RBRACE] = ACTIONS(8788), - [anon_sym_signed] = ACTIONS(8786), - [anon_sym_unsigned] = ACTIONS(8786), - [anon_sym_long] = ACTIONS(8786), - [anon_sym_short] = ACTIONS(8786), - [anon_sym_LBRACK] = ACTIONS(8786), - [anon_sym_static] = ACTIONS(8786), - [anon_sym_register] = ACTIONS(8786), - [anon_sym_inline] = ACTIONS(8786), - [anon_sym___inline] = ACTIONS(8786), - [anon_sym___inline__] = ACTIONS(8786), - [anon_sym___forceinline] = ACTIONS(8786), - [anon_sym_thread_local] = ACTIONS(8786), - [anon_sym___thread] = ACTIONS(8786), - [anon_sym_const] = ACTIONS(8786), - [anon_sym_constexpr] = ACTIONS(8786), - [anon_sym_volatile] = ACTIONS(8786), - [anon_sym_restrict] = ACTIONS(8786), - [anon_sym___restrict__] = ACTIONS(8786), - [anon_sym__Atomic] = ACTIONS(8786), - [anon_sym__Noreturn] = ACTIONS(8786), - [anon_sym_noreturn] = ACTIONS(8786), - [anon_sym__Nonnull] = ACTIONS(8786), - [anon_sym_mutable] = ACTIONS(8786), - [anon_sym_constinit] = ACTIONS(8786), - [anon_sym_consteval] = ACTIONS(8786), - [anon_sym_alignas] = ACTIONS(8786), - [anon_sym__Alignas] = ACTIONS(8786), - [sym_primitive_type] = ACTIONS(8786), - [anon_sym_enum] = ACTIONS(8786), - [anon_sym_class] = ACTIONS(8786), - [anon_sym_struct] = ACTIONS(8786), - [anon_sym_union] = ACTIONS(8786), - [anon_sym_typename] = ACTIONS(8786), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8786), - [anon_sym_decltype] = ACTIONS(8786), - [anon_sym_explicit] = ACTIONS(8786), - [anon_sym_private] = ACTIONS(8786), - [anon_sym_template] = ACTIONS(8786), - [anon_sym_operator] = ACTIONS(8786), - [anon_sym_friend] = ACTIONS(8786), - [anon_sym_public] = ACTIONS(8786), - [anon_sym_protected] = ACTIONS(8786), - [anon_sym_static_assert] = ACTIONS(8786), - [anon_sym_LBRACK_COLON] = ACTIONS(8788), + [STATE(3291)] = { + [sym_identifier] = ACTIONS(8677), + [aux_sym_preproc_def_token1] = ACTIONS(8677), + [aux_sym_preproc_if_token1] = ACTIONS(8677), + [aux_sym_preproc_if_token2] = ACTIONS(8677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8677), + [sym_preproc_directive] = ACTIONS(8677), + [anon_sym_LPAREN2] = ACTIONS(8679), + [anon_sym_TILDE] = ACTIONS(8679), + [anon_sym_STAR] = ACTIONS(8679), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_AMP] = ACTIONS(8677), + [anon_sym_SEMI] = ACTIONS(8679), + [anon_sym___extension__] = ACTIONS(8677), + [anon_sym_typedef] = ACTIONS(8677), + [anon_sym_virtual] = ACTIONS(8677), + [anon_sym_extern] = ACTIONS(8677), + [anon_sym___attribute__] = ACTIONS(8677), + [anon_sym___attribute] = ACTIONS(8677), + [anon_sym_using] = ACTIONS(8677), + [anon_sym_COLON_COLON] = ACTIONS(8679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8679), + [anon_sym___declspec] = ACTIONS(8677), + [anon_sym___based] = ACTIONS(8677), + [anon_sym_signed] = ACTIONS(8677), + [anon_sym_unsigned] = ACTIONS(8677), + [anon_sym_long] = ACTIONS(8677), + [anon_sym_short] = ACTIONS(8677), + [anon_sym_LBRACK] = ACTIONS(8677), + [anon_sym_static] = ACTIONS(8677), + [anon_sym_register] = ACTIONS(8677), + [anon_sym_inline] = ACTIONS(8677), + [anon_sym___inline] = ACTIONS(8677), + [anon_sym___inline__] = ACTIONS(8677), + [anon_sym___forceinline] = ACTIONS(8677), + [anon_sym_thread_local] = ACTIONS(8677), + [anon_sym___thread] = ACTIONS(8677), + [anon_sym_const] = ACTIONS(8677), + [anon_sym_constexpr] = ACTIONS(8677), + [anon_sym_volatile] = ACTIONS(8677), + [anon_sym_restrict] = ACTIONS(8677), + [anon_sym___restrict__] = ACTIONS(8677), + [anon_sym__Atomic] = ACTIONS(8677), + [anon_sym__Noreturn] = ACTIONS(8677), + [anon_sym_noreturn] = ACTIONS(8677), + [anon_sym__Nonnull] = ACTIONS(8677), + [anon_sym_mutable] = ACTIONS(8677), + [anon_sym_constinit] = ACTIONS(8677), + [anon_sym_consteval] = ACTIONS(8677), + [anon_sym_alignas] = ACTIONS(8677), + [anon_sym__Alignas] = ACTIONS(8677), + [sym_primitive_type] = ACTIONS(8677), + [anon_sym_enum] = ACTIONS(8677), + [anon_sym_class] = ACTIONS(8677), + [anon_sym_struct] = ACTIONS(8677), + [anon_sym_union] = ACTIONS(8677), + [anon_sym_typename] = ACTIONS(8677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8677), + [anon_sym_decltype] = ACTIONS(8677), + [anon_sym_explicit] = ACTIONS(8677), + [anon_sym_private] = ACTIONS(8677), + [anon_sym_template] = ACTIONS(8677), + [anon_sym_operator] = ACTIONS(8677), + [anon_sym_friend] = ACTIONS(8677), + [anon_sym_public] = ACTIONS(8677), + [anon_sym_protected] = ACTIONS(8677), + [anon_sym_static_assert] = ACTIONS(8677), + [anon_sym_LBRACK_COLON] = ACTIONS(8679), }, - [STATE(3364)] = { - [sym_identifier] = ACTIONS(3958), - [aux_sym_preproc_def_token1] = ACTIONS(3958), - [aux_sym_preproc_if_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3958), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3958), - [sym_preproc_directive] = ACTIONS(3958), - [anon_sym_LPAREN2] = ACTIONS(3960), - [anon_sym_TILDE] = ACTIONS(3960), - [anon_sym_STAR] = ACTIONS(3960), - [anon_sym_AMP_AMP] = ACTIONS(3960), - [anon_sym_AMP] = ACTIONS(3958), - [anon_sym_SEMI] = ACTIONS(3960), - [anon_sym___extension__] = ACTIONS(3958), - [anon_sym_typedef] = ACTIONS(3958), - [anon_sym_virtual] = ACTIONS(3958), - [anon_sym_extern] = ACTIONS(3958), - [anon_sym___attribute__] = ACTIONS(3958), - [anon_sym___attribute] = ACTIONS(3958), - [anon_sym_using] = ACTIONS(3958), - [anon_sym_COLON_COLON] = ACTIONS(3960), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3960), - [anon_sym___declspec] = ACTIONS(3958), - [anon_sym___based] = ACTIONS(3958), - [anon_sym_RBRACE] = ACTIONS(3960), - [anon_sym_signed] = ACTIONS(3958), - [anon_sym_unsigned] = ACTIONS(3958), - [anon_sym_long] = ACTIONS(3958), - [anon_sym_short] = ACTIONS(3958), - [anon_sym_LBRACK] = ACTIONS(3958), - [anon_sym_static] = ACTIONS(3958), - [anon_sym_register] = ACTIONS(3958), - [anon_sym_inline] = ACTIONS(3958), - [anon_sym___inline] = ACTIONS(3958), - [anon_sym___inline__] = ACTIONS(3958), - [anon_sym___forceinline] = ACTIONS(3958), - [anon_sym_thread_local] = ACTIONS(3958), - [anon_sym___thread] = ACTIONS(3958), - [anon_sym_const] = ACTIONS(3958), - [anon_sym_constexpr] = ACTIONS(3958), - [anon_sym_volatile] = ACTIONS(3958), - [anon_sym_restrict] = ACTIONS(3958), - [anon_sym___restrict__] = ACTIONS(3958), - [anon_sym__Atomic] = ACTIONS(3958), - [anon_sym__Noreturn] = ACTIONS(3958), - [anon_sym_noreturn] = ACTIONS(3958), - [anon_sym__Nonnull] = ACTIONS(3958), - [anon_sym_mutable] = ACTIONS(3958), - [anon_sym_constinit] = ACTIONS(3958), - [anon_sym_consteval] = ACTIONS(3958), - [anon_sym_alignas] = ACTIONS(3958), - [anon_sym__Alignas] = ACTIONS(3958), - [sym_primitive_type] = ACTIONS(3958), - [anon_sym_enum] = ACTIONS(3958), - [anon_sym_class] = ACTIONS(3958), - [anon_sym_struct] = ACTIONS(3958), - [anon_sym_union] = ACTIONS(3958), - [anon_sym_typename] = ACTIONS(3958), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3958), - [anon_sym_decltype] = ACTIONS(3958), - [anon_sym_explicit] = ACTIONS(3958), - [anon_sym_private] = ACTIONS(3958), - [anon_sym_template] = ACTIONS(3958), - [anon_sym_operator] = ACTIONS(3958), - [anon_sym_friend] = ACTIONS(3958), - [anon_sym_public] = ACTIONS(3958), - [anon_sym_protected] = ACTIONS(3958), - [anon_sym_static_assert] = ACTIONS(3958), - [anon_sym_LBRACK_COLON] = ACTIONS(3960), + [STATE(3292)] = { + [sym_identifier] = ACTIONS(8757), + [aux_sym_preproc_def_token1] = ACTIONS(8757), + [aux_sym_preproc_if_token1] = ACTIONS(8757), + [aux_sym_preproc_if_token2] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8757), + [sym_preproc_directive] = ACTIONS(8757), + [anon_sym_LPAREN2] = ACTIONS(8759), + [anon_sym_TILDE] = ACTIONS(8759), + [anon_sym_STAR] = ACTIONS(8759), + [anon_sym_AMP_AMP] = ACTIONS(8759), + [anon_sym_AMP] = ACTIONS(8757), + [anon_sym_SEMI] = ACTIONS(8759), + [anon_sym___extension__] = ACTIONS(8757), + [anon_sym_typedef] = ACTIONS(8757), + [anon_sym_virtual] = ACTIONS(8757), + [anon_sym_extern] = ACTIONS(8757), + [anon_sym___attribute__] = ACTIONS(8757), + [anon_sym___attribute] = ACTIONS(8757), + [anon_sym_using] = ACTIONS(8757), + [anon_sym_COLON_COLON] = ACTIONS(8759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8759), + [anon_sym___declspec] = ACTIONS(8757), + [anon_sym___based] = ACTIONS(8757), + [anon_sym_signed] = ACTIONS(8757), + [anon_sym_unsigned] = ACTIONS(8757), + [anon_sym_long] = ACTIONS(8757), + [anon_sym_short] = ACTIONS(8757), + [anon_sym_LBRACK] = ACTIONS(8757), + [anon_sym_static] = ACTIONS(8757), + [anon_sym_register] = ACTIONS(8757), + [anon_sym_inline] = ACTIONS(8757), + [anon_sym___inline] = ACTIONS(8757), + [anon_sym___inline__] = ACTIONS(8757), + [anon_sym___forceinline] = ACTIONS(8757), + [anon_sym_thread_local] = ACTIONS(8757), + [anon_sym___thread] = ACTIONS(8757), + [anon_sym_const] = ACTIONS(8757), + [anon_sym_constexpr] = ACTIONS(8757), + [anon_sym_volatile] = ACTIONS(8757), + [anon_sym_restrict] = ACTIONS(8757), + [anon_sym___restrict__] = ACTIONS(8757), + [anon_sym__Atomic] = ACTIONS(8757), + [anon_sym__Noreturn] = ACTIONS(8757), + [anon_sym_noreturn] = ACTIONS(8757), + [anon_sym__Nonnull] = ACTIONS(8757), + [anon_sym_mutable] = ACTIONS(8757), + [anon_sym_constinit] = ACTIONS(8757), + [anon_sym_consteval] = ACTIONS(8757), + [anon_sym_alignas] = ACTIONS(8757), + [anon_sym__Alignas] = ACTIONS(8757), + [sym_primitive_type] = ACTIONS(8757), + [anon_sym_enum] = ACTIONS(8757), + [anon_sym_class] = ACTIONS(8757), + [anon_sym_struct] = ACTIONS(8757), + [anon_sym_union] = ACTIONS(8757), + [anon_sym_typename] = ACTIONS(8757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8757), + [anon_sym_decltype] = ACTIONS(8757), + [anon_sym_explicit] = ACTIONS(8757), + [anon_sym_private] = ACTIONS(8757), + [anon_sym_template] = ACTIONS(8757), + [anon_sym_operator] = ACTIONS(8757), + [anon_sym_friend] = ACTIONS(8757), + [anon_sym_public] = ACTIONS(8757), + [anon_sym_protected] = ACTIONS(8757), + [anon_sym_static_assert] = ACTIONS(8757), + [anon_sym_LBRACK_COLON] = ACTIONS(8759), }, - [STATE(3365)] = { - [sym_identifier] = ACTIONS(4084), - [aux_sym_preproc_def_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token1] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), - [sym_preproc_directive] = ACTIONS(4084), - [anon_sym_LPAREN2] = ACTIONS(4086), - [anon_sym_TILDE] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_AMP_AMP] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym___extension__] = ACTIONS(4084), - [anon_sym_typedef] = ACTIONS(4084), - [anon_sym_virtual] = ACTIONS(4084), - [anon_sym_extern] = ACTIONS(4084), - [anon_sym___attribute__] = ACTIONS(4084), - [anon_sym___attribute] = ACTIONS(4084), - [anon_sym_using] = ACTIONS(4084), - [anon_sym_COLON_COLON] = ACTIONS(4086), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), - [anon_sym___declspec] = ACTIONS(4084), - [anon_sym___based] = ACTIONS(4084), - [anon_sym_RBRACE] = ACTIONS(4086), - [anon_sym_signed] = ACTIONS(4084), - [anon_sym_unsigned] = ACTIONS(4084), - [anon_sym_long] = ACTIONS(4084), - [anon_sym_short] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_register] = ACTIONS(4084), - [anon_sym_inline] = ACTIONS(4084), - [anon_sym___inline] = ACTIONS(4084), - [anon_sym___inline__] = ACTIONS(4084), - [anon_sym___forceinline] = ACTIONS(4084), - [anon_sym_thread_local] = ACTIONS(4084), - [anon_sym___thread] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_constexpr] = ACTIONS(4084), - [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_restrict] = ACTIONS(4084), - [anon_sym___restrict__] = ACTIONS(4084), - [anon_sym__Atomic] = ACTIONS(4084), - [anon_sym__Noreturn] = ACTIONS(4084), - [anon_sym_noreturn] = ACTIONS(4084), - [anon_sym__Nonnull] = ACTIONS(4084), - [anon_sym_mutable] = ACTIONS(4084), - [anon_sym_constinit] = ACTIONS(4084), - [anon_sym_consteval] = ACTIONS(4084), - [anon_sym_alignas] = ACTIONS(4084), - [anon_sym__Alignas] = ACTIONS(4084), - [sym_primitive_type] = ACTIONS(4084), - [anon_sym_enum] = ACTIONS(4084), - [anon_sym_class] = ACTIONS(4084), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_union] = ACTIONS(4084), - [anon_sym_typename] = ACTIONS(4084), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4084), - [anon_sym_decltype] = ACTIONS(4084), - [anon_sym_explicit] = ACTIONS(4084), - [anon_sym_private] = ACTIONS(4084), - [anon_sym_template] = ACTIONS(4084), - [anon_sym_operator] = ACTIONS(4084), - [anon_sym_friend] = ACTIONS(4084), - [anon_sym_public] = ACTIONS(4084), - [anon_sym_protected] = ACTIONS(4084), - [anon_sym_static_assert] = ACTIONS(4084), - [anon_sym_LBRACK_COLON] = ACTIONS(4086), + [STATE(3293)] = { + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token2] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_private] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_friend] = ACTIONS(4048), + [anon_sym_public] = ACTIONS(4048), + [anon_sym_protected] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), }, - [STATE(3366)] = { - [sym_identifier] = ACTIONS(4088), - [aux_sym_preproc_def_token1] = ACTIONS(4088), - [aux_sym_preproc_if_token1] = ACTIONS(4088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), - [sym_preproc_directive] = ACTIONS(4088), - [anon_sym_LPAREN2] = ACTIONS(4090), - [anon_sym_TILDE] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym___extension__] = ACTIONS(4088), - [anon_sym_typedef] = ACTIONS(4088), - [anon_sym_virtual] = ACTIONS(4088), - [anon_sym_extern] = ACTIONS(4088), - [anon_sym___attribute__] = ACTIONS(4088), - [anon_sym___attribute] = ACTIONS(4088), - [anon_sym_using] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), - [anon_sym___declspec] = ACTIONS(4088), - [anon_sym___based] = ACTIONS(4088), - [anon_sym_RBRACE] = ACTIONS(4090), - [anon_sym_signed] = ACTIONS(4088), - [anon_sym_unsigned] = ACTIONS(4088), - [anon_sym_long] = ACTIONS(4088), - [anon_sym_short] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(4088), - [anon_sym_static] = ACTIONS(4088), - [anon_sym_register] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym___inline] = ACTIONS(4088), - [anon_sym___inline__] = ACTIONS(4088), - [anon_sym___forceinline] = ACTIONS(4088), - [anon_sym_thread_local] = ACTIONS(4088), - [anon_sym___thread] = ACTIONS(4088), - [anon_sym_const] = ACTIONS(4088), - [anon_sym_constexpr] = ACTIONS(4088), - [anon_sym_volatile] = ACTIONS(4088), - [anon_sym_restrict] = ACTIONS(4088), - [anon_sym___restrict__] = ACTIONS(4088), - [anon_sym__Atomic] = ACTIONS(4088), - [anon_sym__Noreturn] = ACTIONS(4088), - [anon_sym_noreturn] = ACTIONS(4088), - [anon_sym__Nonnull] = ACTIONS(4088), - [anon_sym_mutable] = ACTIONS(4088), - [anon_sym_constinit] = ACTIONS(4088), - [anon_sym_consteval] = ACTIONS(4088), - [anon_sym_alignas] = ACTIONS(4088), - [anon_sym__Alignas] = ACTIONS(4088), - [sym_primitive_type] = ACTIONS(4088), - [anon_sym_enum] = ACTIONS(4088), - [anon_sym_class] = ACTIONS(4088), - [anon_sym_struct] = ACTIONS(4088), - [anon_sym_union] = ACTIONS(4088), - [anon_sym_typename] = ACTIONS(4088), + [STATE(3294)] = { + [sym_identifier] = ACTIONS(8745), + [aux_sym_preproc_def_token1] = ACTIONS(8745), + [aux_sym_preproc_if_token1] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8745), + [sym_preproc_directive] = ACTIONS(8745), + [anon_sym_LPAREN2] = ACTIONS(8747), + [anon_sym_TILDE] = ACTIONS(8747), + [anon_sym_STAR] = ACTIONS(8747), + [anon_sym_AMP_AMP] = ACTIONS(8747), + [anon_sym_AMP] = ACTIONS(8745), + [anon_sym_SEMI] = ACTIONS(8747), + [anon_sym___extension__] = ACTIONS(8745), + [anon_sym_typedef] = ACTIONS(8745), + [anon_sym_virtual] = ACTIONS(8745), + [anon_sym_extern] = ACTIONS(8745), + [anon_sym___attribute__] = ACTIONS(8745), + [anon_sym___attribute] = ACTIONS(8745), + [anon_sym_using] = ACTIONS(8745), + [anon_sym_COLON_COLON] = ACTIONS(8747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8747), + [anon_sym___declspec] = ACTIONS(8745), + [anon_sym___based] = ACTIONS(8745), + [anon_sym_RBRACE] = ACTIONS(8747), + [anon_sym_signed] = ACTIONS(8745), + [anon_sym_unsigned] = ACTIONS(8745), + [anon_sym_long] = ACTIONS(8745), + [anon_sym_short] = ACTIONS(8745), + [anon_sym_LBRACK] = ACTIONS(8745), + [anon_sym_static] = ACTIONS(8745), + [anon_sym_register] = ACTIONS(8745), + [anon_sym_inline] = ACTIONS(8745), + [anon_sym___inline] = ACTIONS(8745), + [anon_sym___inline__] = ACTIONS(8745), + [anon_sym___forceinline] = ACTIONS(8745), + [anon_sym_thread_local] = ACTIONS(8745), + [anon_sym___thread] = ACTIONS(8745), + [anon_sym_const] = ACTIONS(8745), + [anon_sym_constexpr] = ACTIONS(8745), + [anon_sym_volatile] = ACTIONS(8745), + [anon_sym_restrict] = ACTIONS(8745), + [anon_sym___restrict__] = ACTIONS(8745), + [anon_sym__Atomic] = ACTIONS(8745), + [anon_sym__Noreturn] = ACTIONS(8745), + [anon_sym_noreturn] = ACTIONS(8745), + [anon_sym__Nonnull] = ACTIONS(8745), + [anon_sym_mutable] = ACTIONS(8745), + [anon_sym_constinit] = ACTIONS(8745), + [anon_sym_consteval] = ACTIONS(8745), + [anon_sym_alignas] = ACTIONS(8745), + [anon_sym__Alignas] = ACTIONS(8745), + [sym_primitive_type] = ACTIONS(8745), + [anon_sym_enum] = ACTIONS(8745), + [anon_sym_class] = ACTIONS(8745), + [anon_sym_struct] = ACTIONS(8745), + [anon_sym_union] = ACTIONS(8745), + [anon_sym_typename] = ACTIONS(8745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8745), + [anon_sym_decltype] = ACTIONS(8745), + [anon_sym_explicit] = ACTIONS(8745), + [anon_sym_private] = ACTIONS(8745), + [anon_sym_template] = ACTIONS(8745), + [anon_sym_operator] = ACTIONS(8745), + [anon_sym_friend] = ACTIONS(8745), + [anon_sym_public] = ACTIONS(8745), + [anon_sym_protected] = ACTIONS(8745), + [anon_sym_static_assert] = ACTIONS(8745), + [anon_sym_LBRACK_COLON] = ACTIONS(8747), + }, + [STATE(3295)] = { + [sym_identifier] = ACTIONS(8749), + [aux_sym_preproc_def_token1] = ACTIONS(8749), + [aux_sym_preproc_if_token1] = ACTIONS(8749), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8749), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8749), + [sym_preproc_directive] = ACTIONS(8749), + [anon_sym_LPAREN2] = ACTIONS(8751), + [anon_sym_TILDE] = ACTIONS(8751), + [anon_sym_STAR] = ACTIONS(8751), + [anon_sym_AMP_AMP] = ACTIONS(8751), + [anon_sym_AMP] = ACTIONS(8749), + [anon_sym_SEMI] = ACTIONS(8751), + [anon_sym___extension__] = ACTIONS(8749), + [anon_sym_typedef] = ACTIONS(8749), + [anon_sym_virtual] = ACTIONS(8749), + [anon_sym_extern] = ACTIONS(8749), + [anon_sym___attribute__] = ACTIONS(8749), + [anon_sym___attribute] = ACTIONS(8749), + [anon_sym_using] = ACTIONS(8749), + [anon_sym_COLON_COLON] = ACTIONS(8751), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8751), + [anon_sym___declspec] = ACTIONS(8749), + [anon_sym___based] = ACTIONS(8749), + [anon_sym_RBRACE] = ACTIONS(8751), + [anon_sym_signed] = ACTIONS(8749), + [anon_sym_unsigned] = ACTIONS(8749), + [anon_sym_long] = ACTIONS(8749), + [anon_sym_short] = ACTIONS(8749), + [anon_sym_LBRACK] = ACTIONS(8749), + [anon_sym_static] = ACTIONS(8749), + [anon_sym_register] = ACTIONS(8749), + [anon_sym_inline] = ACTIONS(8749), + [anon_sym___inline] = ACTIONS(8749), + [anon_sym___inline__] = ACTIONS(8749), + [anon_sym___forceinline] = ACTIONS(8749), + [anon_sym_thread_local] = ACTIONS(8749), + [anon_sym___thread] = ACTIONS(8749), + [anon_sym_const] = ACTIONS(8749), + [anon_sym_constexpr] = ACTIONS(8749), + [anon_sym_volatile] = ACTIONS(8749), + [anon_sym_restrict] = ACTIONS(8749), + [anon_sym___restrict__] = ACTIONS(8749), + [anon_sym__Atomic] = ACTIONS(8749), + [anon_sym__Noreturn] = ACTIONS(8749), + [anon_sym_noreturn] = ACTIONS(8749), + [anon_sym__Nonnull] = ACTIONS(8749), + [anon_sym_mutable] = ACTIONS(8749), + [anon_sym_constinit] = ACTIONS(8749), + [anon_sym_consteval] = ACTIONS(8749), + [anon_sym_alignas] = ACTIONS(8749), + [anon_sym__Alignas] = ACTIONS(8749), + [sym_primitive_type] = ACTIONS(8749), + [anon_sym_enum] = ACTIONS(8749), + [anon_sym_class] = ACTIONS(8749), + [anon_sym_struct] = ACTIONS(8749), + [anon_sym_union] = ACTIONS(8749), + [anon_sym_typename] = ACTIONS(8749), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8749), + [anon_sym_decltype] = ACTIONS(8749), + [anon_sym_explicit] = ACTIONS(8749), + [anon_sym_private] = ACTIONS(8749), + [anon_sym_template] = ACTIONS(8749), + [anon_sym_operator] = ACTIONS(8749), + [anon_sym_friend] = ACTIONS(8749), + [anon_sym_public] = ACTIONS(8749), + [anon_sym_protected] = ACTIONS(8749), + [anon_sym_static_assert] = ACTIONS(8749), + [anon_sym_LBRACK_COLON] = ACTIONS(8751), + }, + [STATE(3296)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token2] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_friend] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + }, + [STATE(3297)] = { + [sym_template_argument_list] = STATE(2664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7119), + [anon_sym_COMMA] = ACTIONS(7119), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_DASH] = ACTIONS(7126), + [anon_sym_PLUS] = ACTIONS(7126), + [anon_sym_STAR] = ACTIONS(7126), + [anon_sym_SLASH] = ACTIONS(7126), + [anon_sym_PERCENT] = ACTIONS(7126), + [anon_sym_PIPE_PIPE] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7119), + [anon_sym_PIPE] = ACTIONS(7126), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_AMP] = ACTIONS(7126), + [anon_sym_EQ_EQ] = ACTIONS(7119), + [anon_sym_BANG_EQ] = ACTIONS(7119), + [anon_sym_GT] = ACTIONS(7126), + [anon_sym_GT_EQ] = ACTIONS(7119), + [anon_sym_LT_EQ] = ACTIONS(7126), + [anon_sym_LT] = ACTIONS(8022), + [anon_sym_LT_LT] = ACTIONS(7126), + [anon_sym_GT_GT] = ACTIONS(7126), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_RBRACK] = ACTIONS(7119), + [anon_sym_EQ] = ACTIONS(7126), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7119), + [anon_sym_STAR_EQ] = ACTIONS(7119), + [anon_sym_SLASH_EQ] = ACTIONS(7119), + [anon_sym_PERCENT_EQ] = ACTIONS(7119), + [anon_sym_PLUS_EQ] = ACTIONS(7119), + [anon_sym_DASH_EQ] = ACTIONS(7119), + [anon_sym_LT_LT_EQ] = ACTIONS(7119), + [anon_sym_GT_GT_EQ] = ACTIONS(7119), + [anon_sym_AMP_EQ] = ACTIONS(7119), + [anon_sym_CARET_EQ] = ACTIONS(7119), + [anon_sym_PIPE_EQ] = ACTIONS(7119), + [anon_sym_and_eq] = ACTIONS(7119), + [anon_sym_or_eq] = ACTIONS(7119), + [anon_sym_xor_eq] = ACTIONS(7119), + [anon_sym_LT_EQ_GT] = ACTIONS(7119), + [anon_sym_or] = ACTIONS(7126), + [anon_sym_and] = ACTIONS(7126), + [anon_sym_bitor] = ACTIONS(7119), + [anon_sym_xor] = ACTIONS(7126), + [anon_sym_bitand] = ACTIONS(7119), + [anon_sym_not_eq] = ACTIONS(7119), + [anon_sym_DASH_DASH] = ACTIONS(7119), + [anon_sym_PLUS_PLUS] = ACTIONS(7119), + [anon_sym_DOT] = ACTIONS(7126), + [anon_sym_DOT_STAR] = ACTIONS(7119), + [anon_sym_DASH_GT] = ACTIONS(7119), + [sym_comment] = ACTIONS(3), + }, + [STATE(3298)] = { + [sym_identifier] = ACTIONS(8753), + [aux_sym_preproc_def_token1] = ACTIONS(8753), + [aux_sym_preproc_if_token1] = ACTIONS(8753), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8753), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8753), + [sym_preproc_directive] = ACTIONS(8753), + [anon_sym_LPAREN2] = ACTIONS(8755), + [anon_sym_TILDE] = ACTIONS(8755), + [anon_sym_STAR] = ACTIONS(8755), + [anon_sym_AMP_AMP] = ACTIONS(8755), + [anon_sym_AMP] = ACTIONS(8753), + [anon_sym_SEMI] = ACTIONS(8755), + [anon_sym___extension__] = ACTIONS(8753), + [anon_sym_typedef] = ACTIONS(8753), + [anon_sym_virtual] = ACTIONS(8753), + [anon_sym_extern] = ACTIONS(8753), + [anon_sym___attribute__] = ACTIONS(8753), + [anon_sym___attribute] = ACTIONS(8753), + [anon_sym_using] = ACTIONS(8753), + [anon_sym_COLON_COLON] = ACTIONS(8755), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8755), + [anon_sym___declspec] = ACTIONS(8753), + [anon_sym___based] = ACTIONS(8753), + [anon_sym_RBRACE] = ACTIONS(8755), + [anon_sym_signed] = ACTIONS(8753), + [anon_sym_unsigned] = ACTIONS(8753), + [anon_sym_long] = ACTIONS(8753), + [anon_sym_short] = ACTIONS(8753), + [anon_sym_LBRACK] = ACTIONS(8753), + [anon_sym_static] = ACTIONS(8753), + [anon_sym_register] = ACTIONS(8753), + [anon_sym_inline] = ACTIONS(8753), + [anon_sym___inline] = ACTIONS(8753), + [anon_sym___inline__] = ACTIONS(8753), + [anon_sym___forceinline] = ACTIONS(8753), + [anon_sym_thread_local] = ACTIONS(8753), + [anon_sym___thread] = ACTIONS(8753), + [anon_sym_const] = ACTIONS(8753), + [anon_sym_constexpr] = ACTIONS(8753), + [anon_sym_volatile] = ACTIONS(8753), + [anon_sym_restrict] = ACTIONS(8753), + [anon_sym___restrict__] = ACTIONS(8753), + [anon_sym__Atomic] = ACTIONS(8753), + [anon_sym__Noreturn] = ACTIONS(8753), + [anon_sym_noreturn] = ACTIONS(8753), + [anon_sym__Nonnull] = ACTIONS(8753), + [anon_sym_mutable] = ACTIONS(8753), + [anon_sym_constinit] = ACTIONS(8753), + [anon_sym_consteval] = ACTIONS(8753), + [anon_sym_alignas] = ACTIONS(8753), + [anon_sym__Alignas] = ACTIONS(8753), + [sym_primitive_type] = ACTIONS(8753), + [anon_sym_enum] = ACTIONS(8753), + [anon_sym_class] = ACTIONS(8753), + [anon_sym_struct] = ACTIONS(8753), + [anon_sym_union] = ACTIONS(8753), + [anon_sym_typename] = ACTIONS(8753), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8753), + [anon_sym_decltype] = ACTIONS(8753), + [anon_sym_explicit] = ACTIONS(8753), + [anon_sym_private] = ACTIONS(8753), + [anon_sym_template] = ACTIONS(8753), + [anon_sym_operator] = ACTIONS(8753), + [anon_sym_friend] = ACTIONS(8753), + [anon_sym_public] = ACTIONS(8753), + [anon_sym_protected] = ACTIONS(8753), + [anon_sym_static_assert] = ACTIONS(8753), + [anon_sym_LBRACK_COLON] = ACTIONS(8755), + }, + [STATE(3299)] = { + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + [anon_sym_COLON_RBRACK] = ACTIONS(5611), + }, + [STATE(3300)] = { + [sym_identifier] = ACTIONS(4239), + [aux_sym_preproc_def_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token1] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4239), + [sym_preproc_directive] = ACTIONS(4239), + [anon_sym_LPAREN2] = ACTIONS(4241), + [anon_sym_TILDE] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym___extension__] = ACTIONS(4239), + [anon_sym_typedef] = ACTIONS(4239), + [anon_sym_virtual] = ACTIONS(4239), + [anon_sym_extern] = ACTIONS(4239), + [anon_sym___attribute__] = ACTIONS(4239), + [anon_sym___attribute] = ACTIONS(4239), + [anon_sym_using] = ACTIONS(4239), + [anon_sym_COLON_COLON] = ACTIONS(4241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4241), + [anon_sym___declspec] = ACTIONS(4239), + [anon_sym___based] = ACTIONS(4239), + [anon_sym_RBRACE] = ACTIONS(4241), + [anon_sym_signed] = ACTIONS(4239), + [anon_sym_unsigned] = ACTIONS(4239), + [anon_sym_long] = ACTIONS(4239), + [anon_sym_short] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_static] = ACTIONS(4239), + [anon_sym_register] = ACTIONS(4239), + [anon_sym_inline] = ACTIONS(4239), + [anon_sym___inline] = ACTIONS(4239), + [anon_sym___inline__] = ACTIONS(4239), + [anon_sym___forceinline] = ACTIONS(4239), + [anon_sym_thread_local] = ACTIONS(4239), + [anon_sym___thread] = ACTIONS(4239), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_constexpr] = ACTIONS(4239), + [anon_sym_volatile] = ACTIONS(4239), + [anon_sym_restrict] = ACTIONS(4239), + [anon_sym___restrict__] = ACTIONS(4239), + [anon_sym__Atomic] = ACTIONS(4239), + [anon_sym__Noreturn] = ACTIONS(4239), + [anon_sym_noreturn] = ACTIONS(4239), + [anon_sym__Nonnull] = ACTIONS(4239), + [anon_sym_mutable] = ACTIONS(4239), + [anon_sym_constinit] = ACTIONS(4239), + [anon_sym_consteval] = ACTIONS(4239), + [anon_sym_alignas] = ACTIONS(4239), + [anon_sym__Alignas] = ACTIONS(4239), + [sym_primitive_type] = ACTIONS(4239), + [anon_sym_enum] = ACTIONS(4239), + [anon_sym_class] = ACTIONS(4239), + [anon_sym_struct] = ACTIONS(4239), + [anon_sym_union] = ACTIONS(4239), + [anon_sym_typename] = ACTIONS(4239), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4239), + [anon_sym_decltype] = ACTIONS(4239), + [anon_sym_explicit] = ACTIONS(4239), + [anon_sym_private] = ACTIONS(4239), + [anon_sym_template] = ACTIONS(4239), + [anon_sym_operator] = ACTIONS(4239), + [anon_sym_friend] = ACTIONS(4239), + [anon_sym_public] = ACTIONS(4239), + [anon_sym_protected] = ACTIONS(4239), + [anon_sym_static_assert] = ACTIONS(4239), + [anon_sym_LBRACK_COLON] = ACTIONS(4241), + }, + [STATE(3301)] = { + [sym_identifier] = ACTIONS(8757), + [aux_sym_preproc_def_token1] = ACTIONS(8757), + [aux_sym_preproc_if_token1] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8757), + [sym_preproc_directive] = ACTIONS(8757), + [anon_sym_LPAREN2] = ACTIONS(8759), + [anon_sym_TILDE] = ACTIONS(8759), + [anon_sym_STAR] = ACTIONS(8759), + [anon_sym_AMP_AMP] = ACTIONS(8759), + [anon_sym_AMP] = ACTIONS(8757), + [anon_sym_SEMI] = ACTIONS(8759), + [anon_sym___extension__] = ACTIONS(8757), + [anon_sym_typedef] = ACTIONS(8757), + [anon_sym_virtual] = ACTIONS(8757), + [anon_sym_extern] = ACTIONS(8757), + [anon_sym___attribute__] = ACTIONS(8757), + [anon_sym___attribute] = ACTIONS(8757), + [anon_sym_using] = ACTIONS(8757), + [anon_sym_COLON_COLON] = ACTIONS(8759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8759), + [anon_sym___declspec] = ACTIONS(8757), + [anon_sym___based] = ACTIONS(8757), + [anon_sym_RBRACE] = ACTIONS(8759), + [anon_sym_signed] = ACTIONS(8757), + [anon_sym_unsigned] = ACTIONS(8757), + [anon_sym_long] = ACTIONS(8757), + [anon_sym_short] = ACTIONS(8757), + [anon_sym_LBRACK] = ACTIONS(8757), + [anon_sym_static] = ACTIONS(8757), + [anon_sym_register] = ACTIONS(8757), + [anon_sym_inline] = ACTIONS(8757), + [anon_sym___inline] = ACTIONS(8757), + [anon_sym___inline__] = ACTIONS(8757), + [anon_sym___forceinline] = ACTIONS(8757), + [anon_sym_thread_local] = ACTIONS(8757), + [anon_sym___thread] = ACTIONS(8757), + [anon_sym_const] = ACTIONS(8757), + [anon_sym_constexpr] = ACTIONS(8757), + [anon_sym_volatile] = ACTIONS(8757), + [anon_sym_restrict] = ACTIONS(8757), + [anon_sym___restrict__] = ACTIONS(8757), + [anon_sym__Atomic] = ACTIONS(8757), + [anon_sym__Noreturn] = ACTIONS(8757), + [anon_sym_noreturn] = ACTIONS(8757), + [anon_sym__Nonnull] = ACTIONS(8757), + [anon_sym_mutable] = ACTIONS(8757), + [anon_sym_constinit] = ACTIONS(8757), + [anon_sym_consteval] = ACTIONS(8757), + [anon_sym_alignas] = ACTIONS(8757), + [anon_sym__Alignas] = ACTIONS(8757), + [sym_primitive_type] = ACTIONS(8757), + [anon_sym_enum] = ACTIONS(8757), + [anon_sym_class] = ACTIONS(8757), + [anon_sym_struct] = ACTIONS(8757), + [anon_sym_union] = ACTIONS(8757), + [anon_sym_typename] = ACTIONS(8757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8757), + [anon_sym_decltype] = ACTIONS(8757), + [anon_sym_explicit] = ACTIONS(8757), + [anon_sym_private] = ACTIONS(8757), + [anon_sym_template] = ACTIONS(8757), + [anon_sym_operator] = ACTIONS(8757), + [anon_sym_friend] = ACTIONS(8757), + [anon_sym_public] = ACTIONS(8757), + [anon_sym_protected] = ACTIONS(8757), + [anon_sym_static_assert] = ACTIONS(8757), + [anon_sym_LBRACK_COLON] = ACTIONS(8759), + }, + [STATE(3302)] = { + [sym_identifier] = ACTIONS(8757), + [aux_sym_preproc_def_token1] = ACTIONS(8757), + [aux_sym_preproc_if_token1] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8757), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8757), + [sym_preproc_directive] = ACTIONS(8757), + [anon_sym_LPAREN2] = ACTIONS(8759), + [anon_sym_TILDE] = ACTIONS(8759), + [anon_sym_STAR] = ACTIONS(8759), + [anon_sym_AMP_AMP] = ACTIONS(8759), + [anon_sym_AMP] = ACTIONS(8757), + [anon_sym_SEMI] = ACTIONS(8759), + [anon_sym___extension__] = ACTIONS(8757), + [anon_sym_typedef] = ACTIONS(8757), + [anon_sym_virtual] = ACTIONS(8757), + [anon_sym_extern] = ACTIONS(8757), + [anon_sym___attribute__] = ACTIONS(8757), + [anon_sym___attribute] = ACTIONS(8757), + [anon_sym_using] = ACTIONS(8757), + [anon_sym_COLON_COLON] = ACTIONS(8759), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8759), + [anon_sym___declspec] = ACTIONS(8757), + [anon_sym___based] = ACTIONS(8757), + [anon_sym_RBRACE] = ACTIONS(8759), + [anon_sym_signed] = ACTIONS(8757), + [anon_sym_unsigned] = ACTIONS(8757), + [anon_sym_long] = ACTIONS(8757), + [anon_sym_short] = ACTIONS(8757), + [anon_sym_LBRACK] = ACTIONS(8757), + [anon_sym_static] = ACTIONS(8757), + [anon_sym_register] = ACTIONS(8757), + [anon_sym_inline] = ACTIONS(8757), + [anon_sym___inline] = ACTIONS(8757), + [anon_sym___inline__] = ACTIONS(8757), + [anon_sym___forceinline] = ACTIONS(8757), + [anon_sym_thread_local] = ACTIONS(8757), + [anon_sym___thread] = ACTIONS(8757), + [anon_sym_const] = ACTIONS(8757), + [anon_sym_constexpr] = ACTIONS(8757), + [anon_sym_volatile] = ACTIONS(8757), + [anon_sym_restrict] = ACTIONS(8757), + [anon_sym___restrict__] = ACTIONS(8757), + [anon_sym__Atomic] = ACTIONS(8757), + [anon_sym__Noreturn] = ACTIONS(8757), + [anon_sym_noreturn] = ACTIONS(8757), + [anon_sym__Nonnull] = ACTIONS(8757), + [anon_sym_mutable] = ACTIONS(8757), + [anon_sym_constinit] = ACTIONS(8757), + [anon_sym_consteval] = ACTIONS(8757), + [anon_sym_alignas] = ACTIONS(8757), + [anon_sym__Alignas] = ACTIONS(8757), + [sym_primitive_type] = ACTIONS(8757), + [anon_sym_enum] = ACTIONS(8757), + [anon_sym_class] = ACTIONS(8757), + [anon_sym_struct] = ACTIONS(8757), + [anon_sym_union] = ACTIONS(8757), + [anon_sym_typename] = ACTIONS(8757), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8757), + [anon_sym_decltype] = ACTIONS(8757), + [anon_sym_explicit] = ACTIONS(8757), + [anon_sym_private] = ACTIONS(8757), + [anon_sym_template] = ACTIONS(8757), + [anon_sym_operator] = ACTIONS(8757), + [anon_sym_friend] = ACTIONS(8757), + [anon_sym_public] = ACTIONS(8757), + [anon_sym_protected] = ACTIONS(8757), + [anon_sym_static_assert] = ACTIONS(8757), + [anon_sym_LBRACK_COLON] = ACTIONS(8759), + }, + [STATE(3303)] = { + [sym_identifier] = ACTIONS(8804), + [aux_sym_preproc_def_token1] = ACTIONS(8804), + [aux_sym_preproc_if_token1] = ACTIONS(8804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8804), + [sym_preproc_directive] = ACTIONS(8804), + [anon_sym_LPAREN2] = ACTIONS(8806), + [anon_sym_TILDE] = ACTIONS(8806), + [anon_sym_STAR] = ACTIONS(8806), + [anon_sym_AMP_AMP] = ACTIONS(8806), + [anon_sym_AMP] = ACTIONS(8804), + [anon_sym_SEMI] = ACTIONS(8806), + [anon_sym___extension__] = ACTIONS(8804), + [anon_sym_typedef] = ACTIONS(8804), + [anon_sym_virtual] = ACTIONS(8804), + [anon_sym_extern] = ACTIONS(8804), + [anon_sym___attribute__] = ACTIONS(8804), + [anon_sym___attribute] = ACTIONS(8804), + [anon_sym_using] = ACTIONS(8804), + [anon_sym_COLON_COLON] = ACTIONS(8806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8806), + [anon_sym___declspec] = ACTIONS(8804), + [anon_sym___based] = ACTIONS(8804), + [anon_sym_RBRACE] = ACTIONS(8806), + [anon_sym_signed] = ACTIONS(8804), + [anon_sym_unsigned] = ACTIONS(8804), + [anon_sym_long] = ACTIONS(8804), + [anon_sym_short] = ACTIONS(8804), + [anon_sym_LBRACK] = ACTIONS(8804), + [anon_sym_static] = ACTIONS(8804), + [anon_sym_register] = ACTIONS(8804), + [anon_sym_inline] = ACTIONS(8804), + [anon_sym___inline] = ACTIONS(8804), + [anon_sym___inline__] = ACTIONS(8804), + [anon_sym___forceinline] = ACTIONS(8804), + [anon_sym_thread_local] = ACTIONS(8804), + [anon_sym___thread] = ACTIONS(8804), + [anon_sym_const] = ACTIONS(8804), + [anon_sym_constexpr] = ACTIONS(8804), + [anon_sym_volatile] = ACTIONS(8804), + [anon_sym_restrict] = ACTIONS(8804), + [anon_sym___restrict__] = ACTIONS(8804), + [anon_sym__Atomic] = ACTIONS(8804), + [anon_sym__Noreturn] = ACTIONS(8804), + [anon_sym_noreturn] = ACTIONS(8804), + [anon_sym__Nonnull] = ACTIONS(8804), + [anon_sym_mutable] = ACTIONS(8804), + [anon_sym_constinit] = ACTIONS(8804), + [anon_sym_consteval] = ACTIONS(8804), + [anon_sym_alignas] = ACTIONS(8804), + [anon_sym__Alignas] = ACTIONS(8804), + [sym_primitive_type] = ACTIONS(8804), + [anon_sym_enum] = ACTIONS(8804), + [anon_sym_class] = ACTIONS(8804), + [anon_sym_struct] = ACTIONS(8804), + [anon_sym_union] = ACTIONS(8804), + [anon_sym_typename] = ACTIONS(8804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8804), + [anon_sym_decltype] = ACTIONS(8804), + [anon_sym_explicit] = ACTIONS(8804), + [anon_sym_private] = ACTIONS(8804), + [anon_sym_template] = ACTIONS(8804), + [anon_sym_operator] = ACTIONS(8804), + [anon_sym_friend] = ACTIONS(8804), + [anon_sym_public] = ACTIONS(8804), + [anon_sym_protected] = ACTIONS(8804), + [anon_sym_static_assert] = ACTIONS(8804), + [anon_sym_LBRACK_COLON] = ACTIONS(8806), + }, + [STATE(3304)] = { + [sym_identifier] = ACTIONS(8647), + [aux_sym_preproc_def_token1] = ACTIONS(8647), + [aux_sym_preproc_if_token1] = ACTIONS(8647), + [aux_sym_preproc_if_token2] = ACTIONS(8647), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8647), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8647), + [sym_preproc_directive] = ACTIONS(8647), + [anon_sym_LPAREN2] = ACTIONS(8649), + [anon_sym_TILDE] = ACTIONS(8649), + [anon_sym_STAR] = ACTIONS(8649), + [anon_sym_AMP_AMP] = ACTIONS(8649), + [anon_sym_AMP] = ACTIONS(8647), + [anon_sym_SEMI] = ACTIONS(8649), + [anon_sym___extension__] = ACTIONS(8647), + [anon_sym_typedef] = ACTIONS(8647), + [anon_sym_virtual] = ACTIONS(8647), + [anon_sym_extern] = ACTIONS(8647), + [anon_sym___attribute__] = ACTIONS(8647), + [anon_sym___attribute] = ACTIONS(8647), + [anon_sym_using] = ACTIONS(8647), + [anon_sym_COLON_COLON] = ACTIONS(8649), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8649), + [anon_sym___declspec] = ACTIONS(8647), + [anon_sym___based] = ACTIONS(8647), + [anon_sym_signed] = ACTIONS(8647), + [anon_sym_unsigned] = ACTIONS(8647), + [anon_sym_long] = ACTIONS(8647), + [anon_sym_short] = ACTIONS(8647), + [anon_sym_LBRACK] = ACTIONS(8647), + [anon_sym_static] = ACTIONS(8647), + [anon_sym_register] = ACTIONS(8647), + [anon_sym_inline] = ACTIONS(8647), + [anon_sym___inline] = ACTIONS(8647), + [anon_sym___inline__] = ACTIONS(8647), + [anon_sym___forceinline] = ACTIONS(8647), + [anon_sym_thread_local] = ACTIONS(8647), + [anon_sym___thread] = ACTIONS(8647), + [anon_sym_const] = ACTIONS(8647), + [anon_sym_constexpr] = ACTIONS(8647), + [anon_sym_volatile] = ACTIONS(8647), + [anon_sym_restrict] = ACTIONS(8647), + [anon_sym___restrict__] = ACTIONS(8647), + [anon_sym__Atomic] = ACTIONS(8647), + [anon_sym__Noreturn] = ACTIONS(8647), + [anon_sym_noreturn] = ACTIONS(8647), + [anon_sym__Nonnull] = ACTIONS(8647), + [anon_sym_mutable] = ACTIONS(8647), + [anon_sym_constinit] = ACTIONS(8647), + [anon_sym_consteval] = ACTIONS(8647), + [anon_sym_alignas] = ACTIONS(8647), + [anon_sym__Alignas] = ACTIONS(8647), + [sym_primitive_type] = ACTIONS(8647), + [anon_sym_enum] = ACTIONS(8647), + [anon_sym_class] = ACTIONS(8647), + [anon_sym_struct] = ACTIONS(8647), + [anon_sym_union] = ACTIONS(8647), + [anon_sym_typename] = ACTIONS(8647), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4088), - [anon_sym_decltype] = ACTIONS(4088), - [anon_sym_explicit] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_template] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_friend] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_static_assert] = ACTIONS(4088), - [anon_sym_LBRACK_COLON] = ACTIONS(4090), + [sym_auto] = ACTIONS(8647), + [anon_sym_decltype] = ACTIONS(8647), + [anon_sym_explicit] = ACTIONS(8647), + [anon_sym_private] = ACTIONS(8647), + [anon_sym_template] = ACTIONS(8647), + [anon_sym_operator] = ACTIONS(8647), + [anon_sym_friend] = ACTIONS(8647), + [anon_sym_public] = ACTIONS(8647), + [anon_sym_protected] = ACTIONS(8647), + [anon_sym_static_assert] = ACTIONS(8647), + [anon_sym_LBRACK_COLON] = ACTIONS(8649), }, - [STATE(3367)] = { + [STATE(3305)] = { + [sym_identifier] = ACTIONS(8808), + [aux_sym_preproc_def_token1] = ACTIONS(8808), + [aux_sym_preproc_if_token1] = ACTIONS(8808), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8808), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8808), + [sym_preproc_directive] = ACTIONS(8808), + [anon_sym_LPAREN2] = ACTIONS(8810), + [anon_sym_TILDE] = ACTIONS(8810), + [anon_sym_STAR] = ACTIONS(8810), + [anon_sym_AMP_AMP] = ACTIONS(8810), + [anon_sym_AMP] = ACTIONS(8808), + [anon_sym_SEMI] = ACTIONS(8810), + [anon_sym___extension__] = ACTIONS(8808), + [anon_sym_typedef] = ACTIONS(8808), + [anon_sym_virtual] = ACTIONS(8808), + [anon_sym_extern] = ACTIONS(8808), + [anon_sym___attribute__] = ACTIONS(8808), + [anon_sym___attribute] = ACTIONS(8808), + [anon_sym_using] = ACTIONS(8808), + [anon_sym_COLON_COLON] = ACTIONS(8810), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8810), + [anon_sym___declspec] = ACTIONS(8808), + [anon_sym___based] = ACTIONS(8808), + [anon_sym_RBRACE] = ACTIONS(8810), + [anon_sym_signed] = ACTIONS(8808), + [anon_sym_unsigned] = ACTIONS(8808), + [anon_sym_long] = ACTIONS(8808), + [anon_sym_short] = ACTIONS(8808), + [anon_sym_LBRACK] = ACTIONS(8808), + [anon_sym_static] = ACTIONS(8808), + [anon_sym_register] = ACTIONS(8808), + [anon_sym_inline] = ACTIONS(8808), + [anon_sym___inline] = ACTIONS(8808), + [anon_sym___inline__] = ACTIONS(8808), + [anon_sym___forceinline] = ACTIONS(8808), + [anon_sym_thread_local] = ACTIONS(8808), + [anon_sym___thread] = ACTIONS(8808), + [anon_sym_const] = ACTIONS(8808), + [anon_sym_constexpr] = ACTIONS(8808), + [anon_sym_volatile] = ACTIONS(8808), + [anon_sym_restrict] = ACTIONS(8808), + [anon_sym___restrict__] = ACTIONS(8808), + [anon_sym__Atomic] = ACTIONS(8808), + [anon_sym__Noreturn] = ACTIONS(8808), + [anon_sym_noreturn] = ACTIONS(8808), + [anon_sym__Nonnull] = ACTIONS(8808), + [anon_sym_mutable] = ACTIONS(8808), + [anon_sym_constinit] = ACTIONS(8808), + [anon_sym_consteval] = ACTIONS(8808), + [anon_sym_alignas] = ACTIONS(8808), + [anon_sym__Alignas] = ACTIONS(8808), + [sym_primitive_type] = ACTIONS(8808), + [anon_sym_enum] = ACTIONS(8808), + [anon_sym_class] = ACTIONS(8808), + [anon_sym_struct] = ACTIONS(8808), + [anon_sym_union] = ACTIONS(8808), + [anon_sym_typename] = ACTIONS(8808), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8808), + [anon_sym_decltype] = ACTIONS(8808), + [anon_sym_explicit] = ACTIONS(8808), + [anon_sym_private] = ACTIONS(8808), + [anon_sym_template] = ACTIONS(8808), + [anon_sym_operator] = ACTIONS(8808), + [anon_sym_friend] = ACTIONS(8808), + [anon_sym_public] = ACTIONS(8808), + [anon_sym_protected] = ACTIONS(8808), + [anon_sym_static_assert] = ACTIONS(8808), + [anon_sym_LBRACK_COLON] = ACTIONS(8810), + }, + [STATE(3306)] = { + [sym_identifier] = ACTIONS(8651), + [aux_sym_preproc_def_token1] = ACTIONS(8651), + [aux_sym_preproc_if_token1] = ACTIONS(8651), + [aux_sym_preproc_if_token2] = ACTIONS(8651), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8651), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8651), + [sym_preproc_directive] = ACTIONS(8651), + [anon_sym_LPAREN2] = ACTIONS(8653), + [anon_sym_TILDE] = ACTIONS(8653), + [anon_sym_STAR] = ACTIONS(8653), + [anon_sym_AMP_AMP] = ACTIONS(8653), + [anon_sym_AMP] = ACTIONS(8651), + [anon_sym_SEMI] = ACTIONS(8653), + [anon_sym___extension__] = ACTIONS(8651), + [anon_sym_typedef] = ACTIONS(8651), + [anon_sym_virtual] = ACTIONS(8651), + [anon_sym_extern] = ACTIONS(8651), + [anon_sym___attribute__] = ACTIONS(8651), + [anon_sym___attribute] = ACTIONS(8651), + [anon_sym_using] = ACTIONS(8651), + [anon_sym_COLON_COLON] = ACTIONS(8653), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8653), + [anon_sym___declspec] = ACTIONS(8651), + [anon_sym___based] = ACTIONS(8651), + [anon_sym_signed] = ACTIONS(8651), + [anon_sym_unsigned] = ACTIONS(8651), + [anon_sym_long] = ACTIONS(8651), + [anon_sym_short] = ACTIONS(8651), + [anon_sym_LBRACK] = ACTIONS(8651), + [anon_sym_static] = ACTIONS(8651), + [anon_sym_register] = ACTIONS(8651), + [anon_sym_inline] = ACTIONS(8651), + [anon_sym___inline] = ACTIONS(8651), + [anon_sym___inline__] = ACTIONS(8651), + [anon_sym___forceinline] = ACTIONS(8651), + [anon_sym_thread_local] = ACTIONS(8651), + [anon_sym___thread] = ACTIONS(8651), + [anon_sym_const] = ACTIONS(8651), + [anon_sym_constexpr] = ACTIONS(8651), + [anon_sym_volatile] = ACTIONS(8651), + [anon_sym_restrict] = ACTIONS(8651), + [anon_sym___restrict__] = ACTIONS(8651), + [anon_sym__Atomic] = ACTIONS(8651), + [anon_sym__Noreturn] = ACTIONS(8651), + [anon_sym_noreturn] = ACTIONS(8651), + [anon_sym__Nonnull] = ACTIONS(8651), + [anon_sym_mutable] = ACTIONS(8651), + [anon_sym_constinit] = ACTIONS(8651), + [anon_sym_consteval] = ACTIONS(8651), + [anon_sym_alignas] = ACTIONS(8651), + [anon_sym__Alignas] = ACTIONS(8651), + [sym_primitive_type] = ACTIONS(8651), + [anon_sym_enum] = ACTIONS(8651), + [anon_sym_class] = ACTIONS(8651), + [anon_sym_struct] = ACTIONS(8651), + [anon_sym_union] = ACTIONS(8651), + [anon_sym_typename] = ACTIONS(8651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8651), + [anon_sym_decltype] = ACTIONS(8651), + [anon_sym_explicit] = ACTIONS(8651), + [anon_sym_private] = ACTIONS(8651), + [anon_sym_template] = ACTIONS(8651), + [anon_sym_operator] = ACTIONS(8651), + [anon_sym_friend] = ACTIONS(8651), + [anon_sym_public] = ACTIONS(8651), + [anon_sym_protected] = ACTIONS(8651), + [anon_sym_static_assert] = ACTIONS(8651), + [anon_sym_LBRACK_COLON] = ACTIONS(8653), + }, + [STATE(3307)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token2] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_friend] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + }, + [STATE(3308)] = { + [sym_identifier] = ACTIONS(4102), + [aux_sym_preproc_def_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token1] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4102), + [sym_preproc_directive] = ACTIONS(4102), + [anon_sym_LPAREN2] = ACTIONS(4104), + [anon_sym_TILDE] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym___extension__] = ACTIONS(4102), + [anon_sym_typedef] = ACTIONS(4102), + [anon_sym_virtual] = ACTIONS(4102), + [anon_sym_extern] = ACTIONS(4102), + [anon_sym___attribute__] = ACTIONS(4102), + [anon_sym___attribute] = ACTIONS(4102), + [anon_sym_using] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4104), + [anon_sym___declspec] = ACTIONS(4102), + [anon_sym___based] = ACTIONS(4102), + [anon_sym_RBRACE] = ACTIONS(4104), + [anon_sym_signed] = ACTIONS(4102), + [anon_sym_unsigned] = ACTIONS(4102), + [anon_sym_long] = ACTIONS(4102), + [anon_sym_short] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_static] = ACTIONS(4102), + [anon_sym_register] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym___inline] = ACTIONS(4102), + [anon_sym___inline__] = ACTIONS(4102), + [anon_sym___forceinline] = ACTIONS(4102), + [anon_sym_thread_local] = ACTIONS(4102), + [anon_sym___thread] = ACTIONS(4102), + [anon_sym_const] = ACTIONS(4102), + [anon_sym_constexpr] = ACTIONS(4102), + [anon_sym_volatile] = ACTIONS(4102), + [anon_sym_restrict] = ACTIONS(4102), + [anon_sym___restrict__] = ACTIONS(4102), + [anon_sym__Atomic] = ACTIONS(4102), + [anon_sym__Noreturn] = ACTIONS(4102), + [anon_sym_noreturn] = ACTIONS(4102), + [anon_sym__Nonnull] = ACTIONS(4102), + [anon_sym_mutable] = ACTIONS(4102), + [anon_sym_constinit] = ACTIONS(4102), + [anon_sym_consteval] = ACTIONS(4102), + [anon_sym_alignas] = ACTIONS(4102), + [anon_sym__Alignas] = ACTIONS(4102), + [sym_primitive_type] = ACTIONS(4102), + [anon_sym_enum] = ACTIONS(4102), + [anon_sym_class] = ACTIONS(4102), + [anon_sym_struct] = ACTIONS(4102), + [anon_sym_union] = ACTIONS(4102), + [anon_sym_typename] = ACTIONS(4102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4102), + [anon_sym_decltype] = ACTIONS(4102), + [anon_sym_explicit] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_template] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_friend] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_static_assert] = ACTIONS(4102), + [anon_sym_LBRACK_COLON] = ACTIONS(4104), + }, + [STATE(3309)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7537), + [anon_sym_COMMA] = ACTIONS(7537), + [anon_sym_RPAREN] = ACTIONS(7537), + [anon_sym_LPAREN2] = ACTIONS(7537), + [anon_sym_DASH] = ACTIONS(7535), + [anon_sym_PLUS] = ACTIONS(7535), + [anon_sym_STAR] = ACTIONS(7535), + [anon_sym_SLASH] = ACTIONS(7535), + [anon_sym_PERCENT] = ACTIONS(7535), + [anon_sym_PIPE_PIPE] = ACTIONS(7537), + [anon_sym_AMP_AMP] = ACTIONS(7537), + [anon_sym_PIPE] = ACTIONS(7535), + [anon_sym_CARET] = ACTIONS(7535), + [anon_sym_AMP] = ACTIONS(7535), + [anon_sym_EQ_EQ] = ACTIONS(7537), + [anon_sym_BANG_EQ] = ACTIONS(7537), + [anon_sym_GT] = ACTIONS(7535), + [anon_sym_GT_EQ] = ACTIONS(7537), + [anon_sym_LT_EQ] = ACTIONS(7535), + [anon_sym_LT] = ACTIONS(7535), + [anon_sym_LT_LT] = ACTIONS(7535), + [anon_sym_GT_GT] = ACTIONS(7535), + [anon_sym___extension__] = ACTIONS(7537), + [anon_sym_COLON_COLON] = ACTIONS(7537), + [anon_sym_LBRACE] = ACTIONS(7537), + [anon_sym_LBRACK] = ACTIONS(7537), + [anon_sym_EQ] = ACTIONS(7535), + [anon_sym_const] = ACTIONS(7535), + [anon_sym_constexpr] = ACTIONS(7537), + [anon_sym_volatile] = ACTIONS(7537), + [anon_sym_restrict] = ACTIONS(7537), + [anon_sym___restrict__] = ACTIONS(7537), + [anon_sym__Atomic] = ACTIONS(7537), + [anon_sym__Noreturn] = ACTIONS(7537), + [anon_sym_noreturn] = ACTIONS(7537), + [anon_sym__Nonnull] = ACTIONS(7537), + [anon_sym_mutable] = ACTIONS(7537), + [anon_sym_constinit] = ACTIONS(7537), + [anon_sym_consteval] = ACTIONS(7537), + [anon_sym_alignas] = ACTIONS(7537), + [anon_sym__Alignas] = ACTIONS(7537), + [anon_sym_QMARK] = ACTIONS(7537), + [anon_sym_STAR_EQ] = ACTIONS(7537), + [anon_sym_SLASH_EQ] = ACTIONS(7537), + [anon_sym_PERCENT_EQ] = ACTIONS(7537), + [anon_sym_PLUS_EQ] = ACTIONS(7537), + [anon_sym_DASH_EQ] = ACTIONS(7537), + [anon_sym_LT_LT_EQ] = ACTIONS(7537), + [anon_sym_GT_GT_EQ] = ACTIONS(7537), + [anon_sym_AMP_EQ] = ACTIONS(7537), + [anon_sym_CARET_EQ] = ACTIONS(7537), + [anon_sym_PIPE_EQ] = ACTIONS(7537), + [anon_sym_LT_EQ_GT] = ACTIONS(7537), + [anon_sym_or] = ACTIONS(7537), + [anon_sym_and] = ACTIONS(7537), + [anon_sym_bitor] = ACTIONS(7537), + [anon_sym_xor] = ACTIONS(7537), + [anon_sym_bitand] = ACTIONS(7537), + [anon_sym_not_eq] = ACTIONS(7537), + [anon_sym_DASH_DASH] = ACTIONS(7537), + [anon_sym_PLUS_PLUS] = ACTIONS(7537), + [anon_sym_DOT] = ACTIONS(7535), + [anon_sym_DOT_STAR] = ACTIONS(7537), + [anon_sym_DASH_GT] = ACTIONS(7535), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7537), + [anon_sym_override] = ACTIONS(7537), + [anon_sym_requires] = ACTIONS(7537), + [anon_sym_DASH_GT_STAR] = ACTIONS(7537), + }, + [STATE(3310)] = { [sym_identifier] = ACTIONS(4092), [aux_sym_preproc_def_token1] = ACTIONS(4092), [aux_sym_preproc_if_token1] = ACTIONS(4092), + [aux_sym_preproc_if_token2] = ACTIONS(4092), [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), [sym_preproc_directive] = ACTIONS(4092), @@ -420126,7 +415921,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), [anon_sym___declspec] = ACTIONS(4092), [anon_sym___based] = ACTIONS(4092), - [anon_sym_RBRACE] = ACTIONS(4094), [anon_sym_signed] = ACTIONS(4092), [anon_sym_unsigned] = ACTIONS(4092), [anon_sym_long] = ACTIONS(4092), @@ -420173,6685 +415967,9382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4092), [anon_sym_LBRACK_COLON] = ACTIONS(4094), }, - [STATE(3368)] = { - [sym_identifier] = ACTIONS(4096), - [aux_sym_preproc_def_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), - [sym_preproc_directive] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym___extension__] = ACTIONS(4096), - [anon_sym_typedef] = ACTIONS(4096), - [anon_sym_virtual] = ACTIONS(4096), - [anon_sym_extern] = ACTIONS(4096), - [anon_sym___attribute__] = ACTIONS(4096), - [anon_sym___attribute] = ACTIONS(4096), - [anon_sym_using] = ACTIONS(4096), - [anon_sym_COLON_COLON] = ACTIONS(4098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), - [anon_sym___declspec] = ACTIONS(4096), - [anon_sym___based] = ACTIONS(4096), - [anon_sym_RBRACE] = ACTIONS(4098), - [anon_sym_signed] = ACTIONS(4096), - [anon_sym_unsigned] = ACTIONS(4096), - [anon_sym_long] = ACTIONS(4096), - [anon_sym_short] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_static] = ACTIONS(4096), - [anon_sym_register] = ACTIONS(4096), - [anon_sym_inline] = ACTIONS(4096), - [anon_sym___inline] = ACTIONS(4096), - [anon_sym___inline__] = ACTIONS(4096), - [anon_sym___forceinline] = ACTIONS(4096), - [anon_sym_thread_local] = ACTIONS(4096), - [anon_sym___thread] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_constexpr] = ACTIONS(4096), - [anon_sym_volatile] = ACTIONS(4096), - [anon_sym_restrict] = ACTIONS(4096), - [anon_sym___restrict__] = ACTIONS(4096), - [anon_sym__Atomic] = ACTIONS(4096), - [anon_sym__Noreturn] = ACTIONS(4096), - [anon_sym_noreturn] = ACTIONS(4096), - [anon_sym__Nonnull] = ACTIONS(4096), - [anon_sym_mutable] = ACTIONS(4096), - [anon_sym_constinit] = ACTIONS(4096), - [anon_sym_consteval] = ACTIONS(4096), - [anon_sym_alignas] = ACTIONS(4096), - [anon_sym__Alignas] = ACTIONS(4096), - [sym_primitive_type] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_class] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_typename] = ACTIONS(4096), + [STATE(3311)] = { + [sym_identifier] = ACTIONS(8816), + [aux_sym_preproc_def_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token2] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8816), + [sym_preproc_directive] = ACTIONS(8816), + [anon_sym_LPAREN2] = ACTIONS(8818), + [anon_sym_TILDE] = ACTIONS(8818), + [anon_sym_STAR] = ACTIONS(8818), + [anon_sym_AMP_AMP] = ACTIONS(8818), + [anon_sym_AMP] = ACTIONS(8816), + [anon_sym_SEMI] = ACTIONS(8818), + [anon_sym___extension__] = ACTIONS(8816), + [anon_sym_typedef] = ACTIONS(8816), + [anon_sym_virtual] = ACTIONS(8816), + [anon_sym_extern] = ACTIONS(8816), + [anon_sym___attribute__] = ACTIONS(8816), + [anon_sym___attribute] = ACTIONS(8816), + [anon_sym_using] = ACTIONS(8816), + [anon_sym_COLON_COLON] = ACTIONS(8818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8818), + [anon_sym___declspec] = ACTIONS(8816), + [anon_sym___based] = ACTIONS(8816), + [anon_sym_signed] = ACTIONS(8816), + [anon_sym_unsigned] = ACTIONS(8816), + [anon_sym_long] = ACTIONS(8816), + [anon_sym_short] = ACTIONS(8816), + [anon_sym_LBRACK] = ACTIONS(8816), + [anon_sym_static] = ACTIONS(8816), + [anon_sym_register] = ACTIONS(8816), + [anon_sym_inline] = ACTIONS(8816), + [anon_sym___inline] = ACTIONS(8816), + [anon_sym___inline__] = ACTIONS(8816), + [anon_sym___forceinline] = ACTIONS(8816), + [anon_sym_thread_local] = ACTIONS(8816), + [anon_sym___thread] = ACTIONS(8816), + [anon_sym_const] = ACTIONS(8816), + [anon_sym_constexpr] = ACTIONS(8816), + [anon_sym_volatile] = ACTIONS(8816), + [anon_sym_restrict] = ACTIONS(8816), + [anon_sym___restrict__] = ACTIONS(8816), + [anon_sym__Atomic] = ACTIONS(8816), + [anon_sym__Noreturn] = ACTIONS(8816), + [anon_sym_noreturn] = ACTIONS(8816), + [anon_sym__Nonnull] = ACTIONS(8816), + [anon_sym_mutable] = ACTIONS(8816), + [anon_sym_constinit] = ACTIONS(8816), + [anon_sym_consteval] = ACTIONS(8816), + [anon_sym_alignas] = ACTIONS(8816), + [anon_sym__Alignas] = ACTIONS(8816), + [sym_primitive_type] = ACTIONS(8816), + [anon_sym_enum] = ACTIONS(8816), + [anon_sym_class] = ACTIONS(8816), + [anon_sym_struct] = ACTIONS(8816), + [anon_sym_union] = ACTIONS(8816), + [anon_sym_typename] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8816), + [anon_sym_decltype] = ACTIONS(8816), + [anon_sym_explicit] = ACTIONS(8816), + [anon_sym_private] = ACTIONS(8816), + [anon_sym_template] = ACTIONS(8816), + [anon_sym_operator] = ACTIONS(8816), + [anon_sym_friend] = ACTIONS(8816), + [anon_sym_public] = ACTIONS(8816), + [anon_sym_protected] = ACTIONS(8816), + [anon_sym_static_assert] = ACTIONS(8816), + [anon_sym_LBRACK_COLON] = ACTIONS(8818), + }, + [STATE(3312)] = { + [sym_identifier] = ACTIONS(8812), + [aux_sym_preproc_def_token1] = ACTIONS(8812), + [aux_sym_preproc_if_token1] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8812), + [sym_preproc_directive] = ACTIONS(8812), + [anon_sym_LPAREN2] = ACTIONS(8814), + [anon_sym_TILDE] = ACTIONS(8814), + [anon_sym_STAR] = ACTIONS(8814), + [anon_sym_AMP_AMP] = ACTIONS(8814), + [anon_sym_AMP] = ACTIONS(8812), + [anon_sym_SEMI] = ACTIONS(8814), + [anon_sym___extension__] = ACTIONS(8812), + [anon_sym_typedef] = ACTIONS(8812), + [anon_sym_virtual] = ACTIONS(8812), + [anon_sym_extern] = ACTIONS(8812), + [anon_sym___attribute__] = ACTIONS(8812), + [anon_sym___attribute] = ACTIONS(8812), + [anon_sym_using] = ACTIONS(8812), + [anon_sym_COLON_COLON] = ACTIONS(8814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8814), + [anon_sym___declspec] = ACTIONS(8812), + [anon_sym___based] = ACTIONS(8812), + [anon_sym_RBRACE] = ACTIONS(8814), + [anon_sym_signed] = ACTIONS(8812), + [anon_sym_unsigned] = ACTIONS(8812), + [anon_sym_long] = ACTIONS(8812), + [anon_sym_short] = ACTIONS(8812), + [anon_sym_LBRACK] = ACTIONS(8812), + [anon_sym_static] = ACTIONS(8812), + [anon_sym_register] = ACTIONS(8812), + [anon_sym_inline] = ACTIONS(8812), + [anon_sym___inline] = ACTIONS(8812), + [anon_sym___inline__] = ACTIONS(8812), + [anon_sym___forceinline] = ACTIONS(8812), + [anon_sym_thread_local] = ACTIONS(8812), + [anon_sym___thread] = ACTIONS(8812), + [anon_sym_const] = ACTIONS(8812), + [anon_sym_constexpr] = ACTIONS(8812), + [anon_sym_volatile] = ACTIONS(8812), + [anon_sym_restrict] = ACTIONS(8812), + [anon_sym___restrict__] = ACTIONS(8812), + [anon_sym__Atomic] = ACTIONS(8812), + [anon_sym__Noreturn] = ACTIONS(8812), + [anon_sym_noreturn] = ACTIONS(8812), + [anon_sym__Nonnull] = ACTIONS(8812), + [anon_sym_mutable] = ACTIONS(8812), + [anon_sym_constinit] = ACTIONS(8812), + [anon_sym_consteval] = ACTIONS(8812), + [anon_sym_alignas] = ACTIONS(8812), + [anon_sym__Alignas] = ACTIONS(8812), + [sym_primitive_type] = ACTIONS(8812), + [anon_sym_enum] = ACTIONS(8812), + [anon_sym_class] = ACTIONS(8812), + [anon_sym_struct] = ACTIONS(8812), + [anon_sym_union] = ACTIONS(8812), + [anon_sym_typename] = ACTIONS(8812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8812), + [anon_sym_decltype] = ACTIONS(8812), + [anon_sym_explicit] = ACTIONS(8812), + [anon_sym_private] = ACTIONS(8812), + [anon_sym_template] = ACTIONS(8812), + [anon_sym_operator] = ACTIONS(8812), + [anon_sym_friend] = ACTIONS(8812), + [anon_sym_public] = ACTIONS(8812), + [anon_sym_protected] = ACTIONS(8812), + [anon_sym_static_assert] = ACTIONS(8812), + [anon_sym_LBRACK_COLON] = ACTIONS(8814), + }, + [STATE(3313)] = { + [sym_identifier] = ACTIONS(8741), + [aux_sym_preproc_def_token1] = ACTIONS(8741), + [aux_sym_preproc_if_token1] = ACTIONS(8741), + [aux_sym_preproc_if_token2] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8741), + [sym_preproc_directive] = ACTIONS(8741), + [anon_sym_LPAREN2] = ACTIONS(8743), + [anon_sym_TILDE] = ACTIONS(8743), + [anon_sym_STAR] = ACTIONS(8743), + [anon_sym_AMP_AMP] = ACTIONS(8743), + [anon_sym_AMP] = ACTIONS(8741), + [anon_sym_SEMI] = ACTIONS(8743), + [anon_sym___extension__] = ACTIONS(8741), + [anon_sym_typedef] = ACTIONS(8741), + [anon_sym_virtual] = ACTIONS(8741), + [anon_sym_extern] = ACTIONS(8741), + [anon_sym___attribute__] = ACTIONS(8741), + [anon_sym___attribute] = ACTIONS(8741), + [anon_sym_using] = ACTIONS(8741), + [anon_sym_COLON_COLON] = ACTIONS(8743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8743), + [anon_sym___declspec] = ACTIONS(8741), + [anon_sym___based] = ACTIONS(8741), + [anon_sym_signed] = ACTIONS(8741), + [anon_sym_unsigned] = ACTIONS(8741), + [anon_sym_long] = ACTIONS(8741), + [anon_sym_short] = ACTIONS(8741), + [anon_sym_LBRACK] = ACTIONS(8741), + [anon_sym_static] = ACTIONS(8741), + [anon_sym_register] = ACTIONS(8741), + [anon_sym_inline] = ACTIONS(8741), + [anon_sym___inline] = ACTIONS(8741), + [anon_sym___inline__] = ACTIONS(8741), + [anon_sym___forceinline] = ACTIONS(8741), + [anon_sym_thread_local] = ACTIONS(8741), + [anon_sym___thread] = ACTIONS(8741), + [anon_sym_const] = ACTIONS(8741), + [anon_sym_constexpr] = ACTIONS(8741), + [anon_sym_volatile] = ACTIONS(8741), + [anon_sym_restrict] = ACTIONS(8741), + [anon_sym___restrict__] = ACTIONS(8741), + [anon_sym__Atomic] = ACTIONS(8741), + [anon_sym__Noreturn] = ACTIONS(8741), + [anon_sym_noreturn] = ACTIONS(8741), + [anon_sym__Nonnull] = ACTIONS(8741), + [anon_sym_mutable] = ACTIONS(8741), + [anon_sym_constinit] = ACTIONS(8741), + [anon_sym_consteval] = ACTIONS(8741), + [anon_sym_alignas] = ACTIONS(8741), + [anon_sym__Alignas] = ACTIONS(8741), + [sym_primitive_type] = ACTIONS(8741), + [anon_sym_enum] = ACTIONS(8741), + [anon_sym_class] = ACTIONS(8741), + [anon_sym_struct] = ACTIONS(8741), + [anon_sym_union] = ACTIONS(8741), + [anon_sym_typename] = ACTIONS(8741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8741), + [anon_sym_decltype] = ACTIONS(8741), + [anon_sym_explicit] = ACTIONS(8741), + [anon_sym_private] = ACTIONS(8741), + [anon_sym_template] = ACTIONS(8741), + [anon_sym_operator] = ACTIONS(8741), + [anon_sym_friend] = ACTIONS(8741), + [anon_sym_public] = ACTIONS(8741), + [anon_sym_protected] = ACTIONS(8741), + [anon_sym_static_assert] = ACTIONS(8741), + [anon_sym_LBRACK_COLON] = ACTIONS(8743), + }, + [STATE(3314)] = { + [sym_identifier] = ACTIONS(4293), + [aux_sym_preproc_def_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token1] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), + [sym_preproc_directive] = ACTIONS(4293), + [anon_sym_LPAREN2] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym___extension__] = ACTIONS(4293), + [anon_sym_typedef] = ACTIONS(4293), + [anon_sym_virtual] = ACTIONS(4293), + [anon_sym_extern] = ACTIONS(4293), + [anon_sym___attribute__] = ACTIONS(4293), + [anon_sym___attribute] = ACTIONS(4293), + [anon_sym_using] = ACTIONS(4293), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4295), + [anon_sym___declspec] = ACTIONS(4293), + [anon_sym___based] = ACTIONS(4293), + [anon_sym_RBRACE] = ACTIONS(4295), + [anon_sym_signed] = ACTIONS(4293), + [anon_sym_unsigned] = ACTIONS(4293), + [anon_sym_long] = ACTIONS(4293), + [anon_sym_short] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_static] = ACTIONS(4293), + [anon_sym_register] = ACTIONS(4293), + [anon_sym_inline] = ACTIONS(4293), + [anon_sym___inline] = ACTIONS(4293), + [anon_sym___inline__] = ACTIONS(4293), + [anon_sym___forceinline] = ACTIONS(4293), + [anon_sym_thread_local] = ACTIONS(4293), + [anon_sym___thread] = ACTIONS(4293), + [anon_sym_const] = ACTIONS(4293), + [anon_sym_constexpr] = ACTIONS(4293), + [anon_sym_volatile] = ACTIONS(4293), + [anon_sym_restrict] = ACTIONS(4293), + [anon_sym___restrict__] = ACTIONS(4293), + [anon_sym__Atomic] = ACTIONS(4293), + [anon_sym__Noreturn] = ACTIONS(4293), + [anon_sym_noreturn] = ACTIONS(4293), + [anon_sym__Nonnull] = ACTIONS(4293), + [anon_sym_mutable] = ACTIONS(4293), + [anon_sym_constinit] = ACTIONS(4293), + [anon_sym_consteval] = ACTIONS(4293), + [anon_sym_alignas] = ACTIONS(4293), + [anon_sym__Alignas] = ACTIONS(4293), + [sym_primitive_type] = ACTIONS(4293), + [anon_sym_enum] = ACTIONS(4293), + [anon_sym_class] = ACTIONS(4293), + [anon_sym_struct] = ACTIONS(4293), + [anon_sym_union] = ACTIONS(4293), + [anon_sym_typename] = ACTIONS(4293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4293), + [anon_sym_decltype] = ACTIONS(4293), + [anon_sym_explicit] = ACTIONS(4293), + [anon_sym_private] = ACTIONS(4293), + [anon_sym_template] = ACTIONS(4293), + [anon_sym_operator] = ACTIONS(4293), + [anon_sym_friend] = ACTIONS(4293), + [anon_sym_public] = ACTIONS(4293), + [anon_sym_protected] = ACTIONS(4293), + [anon_sym_static_assert] = ACTIONS(4293), + [anon_sym_LBRACK_COLON] = ACTIONS(4295), + }, + [STATE(3315)] = { + [sym_identifier] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4299), + [anon_sym_TILDE] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_AMP_AMP] = ACTIONS(4299), + [anon_sym_AMP] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4299), + [anon_sym___extension__] = ACTIONS(4297), + [anon_sym_typedef] = ACTIONS(4297), + [anon_sym_virtual] = ACTIONS(4297), + [anon_sym_extern] = ACTIONS(4297), + [anon_sym___attribute__] = ACTIONS(4297), + [anon_sym___attribute] = ACTIONS(4297), + [anon_sym_using] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), + [anon_sym___declspec] = ACTIONS(4297), + [anon_sym___based] = ACTIONS(4297), + [anon_sym_RBRACE] = ACTIONS(4299), + [anon_sym_signed] = ACTIONS(4297), + [anon_sym_unsigned] = ACTIONS(4297), + [anon_sym_long] = ACTIONS(4297), + [anon_sym_short] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_static] = ACTIONS(4297), + [anon_sym_register] = ACTIONS(4297), + [anon_sym_inline] = ACTIONS(4297), + [anon_sym___inline] = ACTIONS(4297), + [anon_sym___inline__] = ACTIONS(4297), + [anon_sym___forceinline] = ACTIONS(4297), + [anon_sym_thread_local] = ACTIONS(4297), + [anon_sym___thread] = ACTIONS(4297), + [anon_sym_const] = ACTIONS(4297), + [anon_sym_constexpr] = ACTIONS(4297), + [anon_sym_volatile] = ACTIONS(4297), + [anon_sym_restrict] = ACTIONS(4297), + [anon_sym___restrict__] = ACTIONS(4297), + [anon_sym__Atomic] = ACTIONS(4297), + [anon_sym__Noreturn] = ACTIONS(4297), + [anon_sym_noreturn] = ACTIONS(4297), + [anon_sym__Nonnull] = ACTIONS(4297), + [anon_sym_mutable] = ACTIONS(4297), + [anon_sym_constinit] = ACTIONS(4297), + [anon_sym_consteval] = ACTIONS(4297), + [anon_sym_alignas] = ACTIONS(4297), + [anon_sym__Alignas] = ACTIONS(4297), + [sym_primitive_type] = ACTIONS(4297), + [anon_sym_enum] = ACTIONS(4297), + [anon_sym_class] = ACTIONS(4297), + [anon_sym_struct] = ACTIONS(4297), + [anon_sym_union] = ACTIONS(4297), + [anon_sym_typename] = ACTIONS(4297), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4297), + [anon_sym_decltype] = ACTIONS(4297), + [anon_sym_explicit] = ACTIONS(4297), + [anon_sym_private] = ACTIONS(4297), + [anon_sym_template] = ACTIONS(4297), + [anon_sym_operator] = ACTIONS(4297), + [anon_sym_friend] = ACTIONS(4297), + [anon_sym_public] = ACTIONS(4297), + [anon_sym_protected] = ACTIONS(4297), + [anon_sym_static_assert] = ACTIONS(4297), + [anon_sym_LBRACK_COLON] = ACTIONS(4299), + }, + [STATE(3316)] = { + [sym_identifier] = ACTIONS(4301), + [aux_sym_preproc_def_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token1] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4301), + [sym_preproc_directive] = ACTIONS(4301), + [anon_sym_LPAREN2] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4301), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym___extension__] = ACTIONS(4301), + [anon_sym_typedef] = ACTIONS(4301), + [anon_sym_virtual] = ACTIONS(4301), + [anon_sym_extern] = ACTIONS(4301), + [anon_sym___attribute__] = ACTIONS(4301), + [anon_sym___attribute] = ACTIONS(4301), + [anon_sym_using] = ACTIONS(4301), + [anon_sym_COLON_COLON] = ACTIONS(4303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4303), + [anon_sym___declspec] = ACTIONS(4301), + [anon_sym___based] = ACTIONS(4301), + [anon_sym_RBRACE] = ACTIONS(4303), + [anon_sym_signed] = ACTIONS(4301), + [anon_sym_unsigned] = ACTIONS(4301), + [anon_sym_long] = ACTIONS(4301), + [anon_sym_short] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_static] = ACTIONS(4301), + [anon_sym_register] = ACTIONS(4301), + [anon_sym_inline] = ACTIONS(4301), + [anon_sym___inline] = ACTIONS(4301), + [anon_sym___inline__] = ACTIONS(4301), + [anon_sym___forceinline] = ACTIONS(4301), + [anon_sym_thread_local] = ACTIONS(4301), + [anon_sym___thread] = ACTIONS(4301), + [anon_sym_const] = ACTIONS(4301), + [anon_sym_constexpr] = ACTIONS(4301), + [anon_sym_volatile] = ACTIONS(4301), + [anon_sym_restrict] = ACTIONS(4301), + [anon_sym___restrict__] = ACTIONS(4301), + [anon_sym__Atomic] = ACTIONS(4301), + [anon_sym__Noreturn] = ACTIONS(4301), + [anon_sym_noreturn] = ACTIONS(4301), + [anon_sym__Nonnull] = ACTIONS(4301), + [anon_sym_mutable] = ACTIONS(4301), + [anon_sym_constinit] = ACTIONS(4301), + [anon_sym_consteval] = ACTIONS(4301), + [anon_sym_alignas] = ACTIONS(4301), + [anon_sym__Alignas] = ACTIONS(4301), + [sym_primitive_type] = ACTIONS(4301), + [anon_sym_enum] = ACTIONS(4301), + [anon_sym_class] = ACTIONS(4301), + [anon_sym_struct] = ACTIONS(4301), + [anon_sym_union] = ACTIONS(4301), + [anon_sym_typename] = ACTIONS(4301), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4301), + [anon_sym_decltype] = ACTIONS(4301), + [anon_sym_explicit] = ACTIONS(4301), + [anon_sym_private] = ACTIONS(4301), + [anon_sym_template] = ACTIONS(4301), + [anon_sym_operator] = ACTIONS(4301), + [anon_sym_friend] = ACTIONS(4301), + [anon_sym_public] = ACTIONS(4301), + [anon_sym_protected] = ACTIONS(4301), + [anon_sym_static_assert] = ACTIONS(4301), + [anon_sym_LBRACK_COLON] = ACTIONS(4303), + }, + [STATE(3317)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3377), + [sym_identifier] = ACTIONS(7618), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7620), + [anon_sym_COMMA] = ACTIONS(7620), + [aux_sym_preproc_if_token2] = ACTIONS(7620), + [aux_sym_preproc_else_token1] = ACTIONS(7620), + [aux_sym_preproc_elif_token1] = ACTIONS(7618), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7620), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7620), + [anon_sym_LPAREN2] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7618), + [anon_sym_STAR] = ACTIONS(7620), + [anon_sym_SLASH] = ACTIONS(7618), + [anon_sym_PERCENT] = ACTIONS(7620), + [anon_sym_PIPE_PIPE] = ACTIONS(7620), + [anon_sym_AMP_AMP] = ACTIONS(7620), + [anon_sym_PIPE] = ACTIONS(7618), + [anon_sym_CARET] = ACTIONS(7620), + [anon_sym_AMP] = ACTIONS(7618), + [anon_sym_EQ_EQ] = ACTIONS(7620), + [anon_sym_BANG_EQ] = ACTIONS(7620), + [anon_sym_GT] = ACTIONS(7618), + [anon_sym_GT_EQ] = ACTIONS(7620), + [anon_sym_LT_EQ] = ACTIONS(7618), + [anon_sym_LT] = ACTIONS(7618), + [anon_sym_LT_LT] = ACTIONS(7620), + [anon_sym_GT_GT] = ACTIONS(7620), + [anon_sym___extension__] = ACTIONS(7618), + [anon_sym___attribute__] = ACTIONS(7618), + [anon_sym___attribute] = ACTIONS(7618), + [anon_sym_LBRACE] = ACTIONS(7620), + [anon_sym_signed] = ACTIONS(9095), + [anon_sym_unsigned] = ACTIONS(9095), + [anon_sym_long] = ACTIONS(9095), + [anon_sym_short] = ACTIONS(9095), + [anon_sym_LBRACK] = ACTIONS(7620), + [anon_sym_RBRACK] = ACTIONS(7620), + [anon_sym_const] = ACTIONS(7618), + [anon_sym_constexpr] = ACTIONS(7618), + [anon_sym_volatile] = ACTIONS(7618), + [anon_sym_restrict] = ACTIONS(7618), + [anon_sym___restrict__] = ACTIONS(7618), + [anon_sym__Atomic] = ACTIONS(7618), + [anon_sym__Noreturn] = ACTIONS(7618), + [anon_sym_noreturn] = ACTIONS(7618), + [anon_sym__Nonnull] = ACTIONS(7618), + [anon_sym_mutable] = ACTIONS(7618), + [anon_sym_constinit] = ACTIONS(7618), + [anon_sym_consteval] = ACTIONS(7618), + [anon_sym_alignas] = ACTIONS(7618), + [anon_sym__Alignas] = ACTIONS(7618), + [anon_sym_QMARK] = ACTIONS(7620), + [anon_sym_LT_EQ_GT] = ACTIONS(7620), + [anon_sym_or] = ACTIONS(7618), + [anon_sym_and] = ACTIONS(7618), + [anon_sym_bitor] = ACTIONS(7618), + [anon_sym_xor] = ACTIONS(7618), + [anon_sym_bitand] = ACTIONS(7618), + [anon_sym_not_eq] = ACTIONS(7618), + [anon_sym_DASH_DASH] = ACTIONS(7620), + [anon_sym_PLUS_PLUS] = ACTIONS(7620), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_DOT_STAR] = ACTIONS(7620), + [anon_sym_DASH_GT] = ACTIONS(7620), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7618), + [anon_sym_override] = ACTIONS(7618), + [anon_sym_requires] = ACTIONS(7618), + }, + [STATE(3318)] = { + [sym_identifier] = ACTIONS(8816), + [aux_sym_preproc_def_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8816), + [sym_preproc_directive] = ACTIONS(8816), + [anon_sym_LPAREN2] = ACTIONS(8818), + [anon_sym_TILDE] = ACTIONS(8818), + [anon_sym_STAR] = ACTIONS(8818), + [anon_sym_AMP_AMP] = ACTIONS(8818), + [anon_sym_AMP] = ACTIONS(8816), + [anon_sym_SEMI] = ACTIONS(8818), + [anon_sym___extension__] = ACTIONS(8816), + [anon_sym_typedef] = ACTIONS(8816), + [anon_sym_virtual] = ACTIONS(8816), + [anon_sym_extern] = ACTIONS(8816), + [anon_sym___attribute__] = ACTIONS(8816), + [anon_sym___attribute] = ACTIONS(8816), + [anon_sym_using] = ACTIONS(8816), + [anon_sym_COLON_COLON] = ACTIONS(8818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8818), + [anon_sym___declspec] = ACTIONS(8816), + [anon_sym___based] = ACTIONS(8816), + [anon_sym_RBRACE] = ACTIONS(8818), + [anon_sym_signed] = ACTIONS(8816), + [anon_sym_unsigned] = ACTIONS(8816), + [anon_sym_long] = ACTIONS(8816), + [anon_sym_short] = ACTIONS(8816), + [anon_sym_LBRACK] = ACTIONS(8816), + [anon_sym_static] = ACTIONS(8816), + [anon_sym_register] = ACTIONS(8816), + [anon_sym_inline] = ACTIONS(8816), + [anon_sym___inline] = ACTIONS(8816), + [anon_sym___inline__] = ACTIONS(8816), + [anon_sym___forceinline] = ACTIONS(8816), + [anon_sym_thread_local] = ACTIONS(8816), + [anon_sym___thread] = ACTIONS(8816), + [anon_sym_const] = ACTIONS(8816), + [anon_sym_constexpr] = ACTIONS(8816), + [anon_sym_volatile] = ACTIONS(8816), + [anon_sym_restrict] = ACTIONS(8816), + [anon_sym___restrict__] = ACTIONS(8816), + [anon_sym__Atomic] = ACTIONS(8816), + [anon_sym__Noreturn] = ACTIONS(8816), + [anon_sym_noreturn] = ACTIONS(8816), + [anon_sym__Nonnull] = ACTIONS(8816), + [anon_sym_mutable] = ACTIONS(8816), + [anon_sym_constinit] = ACTIONS(8816), + [anon_sym_consteval] = ACTIONS(8816), + [anon_sym_alignas] = ACTIONS(8816), + [anon_sym__Alignas] = ACTIONS(8816), + [sym_primitive_type] = ACTIONS(8816), + [anon_sym_enum] = ACTIONS(8816), + [anon_sym_class] = ACTIONS(8816), + [anon_sym_struct] = ACTIONS(8816), + [anon_sym_union] = ACTIONS(8816), + [anon_sym_typename] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8816), + [anon_sym_decltype] = ACTIONS(8816), + [anon_sym_explicit] = ACTIONS(8816), + [anon_sym_private] = ACTIONS(8816), + [anon_sym_template] = ACTIONS(8816), + [anon_sym_operator] = ACTIONS(8816), + [anon_sym_friend] = ACTIONS(8816), + [anon_sym_public] = ACTIONS(8816), + [anon_sym_protected] = ACTIONS(8816), + [anon_sym_static_assert] = ACTIONS(8816), + [anon_sym_LBRACK_COLON] = ACTIONS(8818), + }, + [STATE(3319)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3377), + [sym_identifier] = ACTIONS(7622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7624), + [anon_sym_COMMA] = ACTIONS(7624), + [aux_sym_preproc_if_token2] = ACTIONS(7624), + [aux_sym_preproc_else_token1] = ACTIONS(7624), + [aux_sym_preproc_elif_token1] = ACTIONS(7622), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7624), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7624), + [anon_sym_LPAREN2] = ACTIONS(7624), + [anon_sym_DASH] = ACTIONS(7622), + [anon_sym_PLUS] = ACTIONS(7622), + [anon_sym_STAR] = ACTIONS(7624), + [anon_sym_SLASH] = ACTIONS(7622), + [anon_sym_PERCENT] = ACTIONS(7624), + [anon_sym_PIPE_PIPE] = ACTIONS(7624), + [anon_sym_AMP_AMP] = ACTIONS(7624), + [anon_sym_PIPE] = ACTIONS(7622), + [anon_sym_CARET] = ACTIONS(7624), + [anon_sym_AMP] = ACTIONS(7622), + [anon_sym_EQ_EQ] = ACTIONS(7624), + [anon_sym_BANG_EQ] = ACTIONS(7624), + [anon_sym_GT] = ACTIONS(7622), + [anon_sym_GT_EQ] = ACTIONS(7624), + [anon_sym_LT_EQ] = ACTIONS(7622), + [anon_sym_LT] = ACTIONS(7622), + [anon_sym_LT_LT] = ACTIONS(7624), + [anon_sym_GT_GT] = ACTIONS(7624), + [anon_sym___extension__] = ACTIONS(7622), + [anon_sym___attribute__] = ACTIONS(7622), + [anon_sym___attribute] = ACTIONS(7622), + [anon_sym_LBRACE] = ACTIONS(7624), + [anon_sym_signed] = ACTIONS(9095), + [anon_sym_unsigned] = ACTIONS(9095), + [anon_sym_long] = ACTIONS(9095), + [anon_sym_short] = ACTIONS(9095), + [anon_sym_LBRACK] = ACTIONS(7624), + [anon_sym_RBRACK] = ACTIONS(7624), + [anon_sym_const] = ACTIONS(7622), + [anon_sym_constexpr] = ACTIONS(7622), + [anon_sym_volatile] = ACTIONS(7622), + [anon_sym_restrict] = ACTIONS(7622), + [anon_sym___restrict__] = ACTIONS(7622), + [anon_sym__Atomic] = ACTIONS(7622), + [anon_sym__Noreturn] = ACTIONS(7622), + [anon_sym_noreturn] = ACTIONS(7622), + [anon_sym__Nonnull] = ACTIONS(7622), + [anon_sym_mutable] = ACTIONS(7622), + [anon_sym_constinit] = ACTIONS(7622), + [anon_sym_consteval] = ACTIONS(7622), + [anon_sym_alignas] = ACTIONS(7622), + [anon_sym__Alignas] = ACTIONS(7622), + [anon_sym_QMARK] = ACTIONS(7624), + [anon_sym_LT_EQ_GT] = ACTIONS(7624), + [anon_sym_or] = ACTIONS(7622), + [anon_sym_and] = ACTIONS(7622), + [anon_sym_bitor] = ACTIONS(7622), + [anon_sym_xor] = ACTIONS(7622), + [anon_sym_bitand] = ACTIONS(7622), + [anon_sym_not_eq] = ACTIONS(7622), + [anon_sym_DASH_DASH] = ACTIONS(7624), + [anon_sym_PLUS_PLUS] = ACTIONS(7624), + [anon_sym_DOT] = ACTIONS(7622), + [anon_sym_DOT_STAR] = ACTIONS(7624), + [anon_sym_DASH_GT] = ACTIONS(7624), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7622), + [anon_sym_override] = ACTIONS(7622), + [anon_sym_requires] = ACTIONS(7622), + }, + [STATE(3320)] = { + [sym_identifier] = ACTIONS(4305), + [aux_sym_preproc_def_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token1] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4305), + [sym_preproc_directive] = ACTIONS(4305), + [anon_sym_LPAREN2] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_typedef] = ACTIONS(4305), + [anon_sym_virtual] = ACTIONS(4305), + [anon_sym_extern] = ACTIONS(4305), + [anon_sym___attribute__] = ACTIONS(4305), + [anon_sym___attribute] = ACTIONS(4305), + [anon_sym_using] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4307), + [anon_sym___declspec] = ACTIONS(4305), + [anon_sym___based] = ACTIONS(4305), + [anon_sym_RBRACE] = ACTIONS(4307), + [anon_sym_signed] = ACTIONS(4305), + [anon_sym_unsigned] = ACTIONS(4305), + [anon_sym_long] = ACTIONS(4305), + [anon_sym_short] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_static] = ACTIONS(4305), + [anon_sym_register] = ACTIONS(4305), + [anon_sym_inline] = ACTIONS(4305), + [anon_sym___inline] = ACTIONS(4305), + [anon_sym___inline__] = ACTIONS(4305), + [anon_sym___forceinline] = ACTIONS(4305), + [anon_sym_thread_local] = ACTIONS(4305), + [anon_sym___thread] = ACTIONS(4305), + [anon_sym_const] = ACTIONS(4305), + [anon_sym_constexpr] = ACTIONS(4305), + [anon_sym_volatile] = ACTIONS(4305), + [anon_sym_restrict] = ACTIONS(4305), + [anon_sym___restrict__] = ACTIONS(4305), + [anon_sym__Atomic] = ACTIONS(4305), + [anon_sym__Noreturn] = ACTIONS(4305), + [anon_sym_noreturn] = ACTIONS(4305), + [anon_sym__Nonnull] = ACTIONS(4305), + [anon_sym_mutable] = ACTIONS(4305), + [anon_sym_constinit] = ACTIONS(4305), + [anon_sym_consteval] = ACTIONS(4305), + [anon_sym_alignas] = ACTIONS(4305), + [anon_sym__Alignas] = ACTIONS(4305), + [sym_primitive_type] = ACTIONS(4305), + [anon_sym_enum] = ACTIONS(4305), + [anon_sym_class] = ACTIONS(4305), + [anon_sym_struct] = ACTIONS(4305), + [anon_sym_union] = ACTIONS(4305), + [anon_sym_typename] = ACTIONS(4305), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4305), + [anon_sym_decltype] = ACTIONS(4305), + [anon_sym_explicit] = ACTIONS(4305), + [anon_sym_private] = ACTIONS(4305), + [anon_sym_template] = ACTIONS(4305), + [anon_sym_operator] = ACTIONS(4305), + [anon_sym_friend] = ACTIONS(4305), + [anon_sym_public] = ACTIONS(4305), + [anon_sym_protected] = ACTIONS(4305), + [anon_sym_static_assert] = ACTIONS(4305), + [anon_sym_LBRACK_COLON] = ACTIONS(4307), + }, + [STATE(3321)] = { + [sym_identifier] = ACTIONS(3778), + [aux_sym_preproc_def_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token1] = ACTIONS(3778), + [aux_sym_preproc_if_token2] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3778), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3778), + [sym_preproc_directive] = ACTIONS(3778), + [anon_sym_LPAREN2] = ACTIONS(3780), + [anon_sym_TILDE] = ACTIONS(3780), + [anon_sym_STAR] = ACTIONS(3780), + [anon_sym_AMP_AMP] = ACTIONS(3780), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym___extension__] = ACTIONS(3778), + [anon_sym_typedef] = ACTIONS(3778), + [anon_sym_virtual] = ACTIONS(3778), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym___attribute__] = ACTIONS(3778), + [anon_sym___attribute] = ACTIONS(3778), + [anon_sym_using] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3780), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3780), + [anon_sym___declspec] = ACTIONS(3778), + [anon_sym___based] = ACTIONS(3778), + [anon_sym_signed] = ACTIONS(3778), + [anon_sym_unsigned] = ACTIONS(3778), + [anon_sym_long] = ACTIONS(3778), + [anon_sym_short] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3778), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym___inline] = ACTIONS(3778), + [anon_sym___inline__] = ACTIONS(3778), + [anon_sym___forceinline] = ACTIONS(3778), + [anon_sym_thread_local] = ACTIONS(3778), + [anon_sym___thread] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym___restrict__] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym__Noreturn] = ACTIONS(3778), + [anon_sym_noreturn] = ACTIONS(3778), + [anon_sym__Nonnull] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_constinit] = ACTIONS(3778), + [anon_sym_consteval] = ACTIONS(3778), + [anon_sym_alignas] = ACTIONS(3778), + [anon_sym__Alignas] = ACTIONS(3778), + [sym_primitive_type] = ACTIONS(3778), + [anon_sym_enum] = ACTIONS(3778), + [anon_sym_class] = ACTIONS(3778), + [anon_sym_struct] = ACTIONS(3778), + [anon_sym_union] = ACTIONS(3778), + [anon_sym_typename] = ACTIONS(3778), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3778), + [anon_sym_decltype] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_private] = ACTIONS(3778), + [anon_sym_template] = ACTIONS(3778), + [anon_sym_operator] = ACTIONS(3778), + [anon_sym_friend] = ACTIONS(3778), + [anon_sym_public] = ACTIONS(3778), + [anon_sym_protected] = ACTIONS(3778), + [anon_sym_static_assert] = ACTIONS(3778), + [anon_sym_LBRACK_COLON] = ACTIONS(3780), + }, + [STATE(3322)] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token2] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_friend] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + }, + [STATE(3323)] = { + [sym_identifier] = ACTIONS(3596), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token2] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym___attribute__] = ACTIONS(3596), + [anon_sym___attribute] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym___declspec] = ACTIONS(3596), + [anon_sym___based] = ACTIONS(3596), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym___inline] = ACTIONS(3596), + [anon_sym___inline__] = ACTIONS(3596), + [anon_sym___forceinline] = ACTIONS(3596), + [anon_sym_thread_local] = ACTIONS(3596), + [anon_sym___thread] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_restrict] = ACTIONS(3596), + [anon_sym___restrict__] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [anon_sym__Noreturn] = ACTIONS(3596), + [anon_sym_noreturn] = ACTIONS(3596), + [anon_sym__Nonnull] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [anon_sym_constinit] = ACTIONS(3596), + [anon_sym_consteval] = ACTIONS(3596), + [anon_sym_alignas] = ACTIONS(3596), + [anon_sym__Alignas] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_private] = ACTIONS(4096), - [anon_sym_template] = ACTIONS(4096), - [anon_sym_operator] = ACTIONS(4096), - [anon_sym_friend] = ACTIONS(4096), - [anon_sym_public] = ACTIONS(4096), - [anon_sym_protected] = ACTIONS(4096), - [anon_sym_static_assert] = ACTIONS(4096), - [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_operator] = ACTIONS(3596), + [anon_sym_friend] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_static_assert] = ACTIONS(3596), + [anon_sym_LBRACK_COLON] = ACTIONS(3598), + }, + [STATE(3324)] = { + [sym_identifier] = ACTIONS(4367), + [aux_sym_preproc_def_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token2] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4367), + [sym_preproc_directive] = ACTIONS(4367), + [anon_sym_LPAREN2] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_AMP_AMP] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4369), + [anon_sym___extension__] = ACTIONS(4367), + [anon_sym_typedef] = ACTIONS(4367), + [anon_sym_virtual] = ACTIONS(4367), + [anon_sym_extern] = ACTIONS(4367), + [anon_sym___attribute__] = ACTIONS(4367), + [anon_sym___attribute] = ACTIONS(4367), + [anon_sym_using] = ACTIONS(4367), + [anon_sym_COLON_COLON] = ACTIONS(4369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4369), + [anon_sym___declspec] = ACTIONS(4367), + [anon_sym___based] = ACTIONS(4367), + [anon_sym_signed] = ACTIONS(4367), + [anon_sym_unsigned] = ACTIONS(4367), + [anon_sym_long] = ACTIONS(4367), + [anon_sym_short] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4367), + [anon_sym_static] = ACTIONS(4367), + [anon_sym_register] = ACTIONS(4367), + [anon_sym_inline] = ACTIONS(4367), + [anon_sym___inline] = ACTIONS(4367), + [anon_sym___inline__] = ACTIONS(4367), + [anon_sym___forceinline] = ACTIONS(4367), + [anon_sym_thread_local] = ACTIONS(4367), + [anon_sym___thread] = ACTIONS(4367), + [anon_sym_const] = ACTIONS(4367), + [anon_sym_constexpr] = ACTIONS(4367), + [anon_sym_volatile] = ACTIONS(4367), + [anon_sym_restrict] = ACTIONS(4367), + [anon_sym___restrict__] = ACTIONS(4367), + [anon_sym__Atomic] = ACTIONS(4367), + [anon_sym__Noreturn] = ACTIONS(4367), + [anon_sym_noreturn] = ACTIONS(4367), + [anon_sym__Nonnull] = ACTIONS(4367), + [anon_sym_mutable] = ACTIONS(4367), + [anon_sym_constinit] = ACTIONS(4367), + [anon_sym_consteval] = ACTIONS(4367), + [anon_sym_alignas] = ACTIONS(4367), + [anon_sym__Alignas] = ACTIONS(4367), + [sym_primitive_type] = ACTIONS(4367), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_class] = ACTIONS(4367), + [anon_sym_struct] = ACTIONS(4367), + [anon_sym_union] = ACTIONS(4367), + [anon_sym_typename] = ACTIONS(4367), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4367), + [anon_sym_decltype] = ACTIONS(4367), + [anon_sym_explicit] = ACTIONS(4367), + [anon_sym_private] = ACTIONS(4367), + [anon_sym_template] = ACTIONS(4367), + [anon_sym_operator] = ACTIONS(4367), + [anon_sym_friend] = ACTIONS(4367), + [anon_sym_public] = ACTIONS(4367), + [anon_sym_protected] = ACTIONS(4367), + [anon_sym_static_assert] = ACTIONS(4367), + [anon_sym_LBRACK_COLON] = ACTIONS(4369), + }, + [STATE(3325)] = { + [sym_identifier] = ACTIONS(3514), + [aux_sym_preproc_def_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token2] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3514), + [sym_preproc_directive] = ACTIONS(3514), + [anon_sym_LPAREN2] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym___extension__] = ACTIONS(3514), + [anon_sym_typedef] = ACTIONS(3514), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3514), + [anon_sym___attribute__] = ACTIONS(3514), + [anon_sym___attribute] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_COLON_COLON] = ACTIONS(3516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3514), + [anon_sym___based] = ACTIONS(3514), + [anon_sym_signed] = ACTIONS(3514), + [anon_sym_unsigned] = ACTIONS(3514), + [anon_sym_long] = ACTIONS(3514), + [anon_sym_short] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_register] = ACTIONS(3514), + [anon_sym_inline] = ACTIONS(3514), + [anon_sym___inline] = ACTIONS(3514), + [anon_sym___inline__] = ACTIONS(3514), + [anon_sym___forceinline] = ACTIONS(3514), + [anon_sym_thread_local] = ACTIONS(3514), + [anon_sym___thread] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_constexpr] = ACTIONS(3514), + [anon_sym_volatile] = ACTIONS(3514), + [anon_sym_restrict] = ACTIONS(3514), + [anon_sym___restrict__] = ACTIONS(3514), + [anon_sym__Atomic] = ACTIONS(3514), + [anon_sym__Noreturn] = ACTIONS(3514), + [anon_sym_noreturn] = ACTIONS(3514), + [anon_sym__Nonnull] = ACTIONS(3514), + [anon_sym_mutable] = ACTIONS(3514), + [anon_sym_constinit] = ACTIONS(3514), + [anon_sym_consteval] = ACTIONS(3514), + [anon_sym_alignas] = ACTIONS(3514), + [anon_sym__Alignas] = ACTIONS(3514), + [sym_primitive_type] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_struct] = ACTIONS(3514), + [anon_sym_union] = ACTIONS(3514), + [anon_sym_typename] = ACTIONS(3514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3514), + [anon_sym_decltype] = ACTIONS(3514), + [anon_sym_explicit] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_template] = ACTIONS(3514), + [anon_sym_operator] = ACTIONS(3514), + [anon_sym_friend] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_static_assert] = ACTIONS(3514), + [anon_sym_LBRACK_COLON] = ACTIONS(3516), + }, + [STATE(3326)] = { + [sym_identifier] = ACTIONS(3754), + [aux_sym_preproc_def_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token2] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3754), + [sym_preproc_directive] = ACTIONS(3754), + [anon_sym_LPAREN2] = ACTIONS(3756), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_STAR] = ACTIONS(3756), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(3756), + [anon_sym___extension__] = ACTIONS(3754), + [anon_sym_typedef] = ACTIONS(3754), + [anon_sym_virtual] = ACTIONS(3754), + [anon_sym_extern] = ACTIONS(3754), + [anon_sym___attribute__] = ACTIONS(3754), + [anon_sym___attribute] = ACTIONS(3754), + [anon_sym_using] = ACTIONS(3754), + [anon_sym_COLON_COLON] = ACTIONS(3756), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3756), + [anon_sym___declspec] = ACTIONS(3754), + [anon_sym___based] = ACTIONS(3754), + [anon_sym_signed] = ACTIONS(3754), + [anon_sym_unsigned] = ACTIONS(3754), + [anon_sym_long] = ACTIONS(3754), + [anon_sym_short] = ACTIONS(3754), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_static] = ACTIONS(3754), + [anon_sym_register] = ACTIONS(3754), + [anon_sym_inline] = ACTIONS(3754), + [anon_sym___inline] = ACTIONS(3754), + [anon_sym___inline__] = ACTIONS(3754), + [anon_sym___forceinline] = ACTIONS(3754), + [anon_sym_thread_local] = ACTIONS(3754), + [anon_sym___thread] = ACTIONS(3754), + [anon_sym_const] = ACTIONS(3754), + [anon_sym_constexpr] = ACTIONS(3754), + [anon_sym_volatile] = ACTIONS(3754), + [anon_sym_restrict] = ACTIONS(3754), + [anon_sym___restrict__] = ACTIONS(3754), + [anon_sym__Atomic] = ACTIONS(3754), + [anon_sym__Noreturn] = ACTIONS(3754), + [anon_sym_noreturn] = ACTIONS(3754), + [anon_sym__Nonnull] = ACTIONS(3754), + [anon_sym_mutable] = ACTIONS(3754), + [anon_sym_constinit] = ACTIONS(3754), + [anon_sym_consteval] = ACTIONS(3754), + [anon_sym_alignas] = ACTIONS(3754), + [anon_sym__Alignas] = ACTIONS(3754), + [sym_primitive_type] = ACTIONS(3754), + [anon_sym_enum] = ACTIONS(3754), + [anon_sym_class] = ACTIONS(3754), + [anon_sym_struct] = ACTIONS(3754), + [anon_sym_union] = ACTIONS(3754), + [anon_sym_typename] = ACTIONS(3754), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3754), + [anon_sym_decltype] = ACTIONS(3754), + [anon_sym_explicit] = ACTIONS(3754), + [anon_sym_private] = ACTIONS(3754), + [anon_sym_template] = ACTIONS(3754), + [anon_sym_operator] = ACTIONS(3754), + [anon_sym_friend] = ACTIONS(3754), + [anon_sym_public] = ACTIONS(3754), + [anon_sym_protected] = ACTIONS(3754), + [anon_sym_static_assert] = ACTIONS(3754), + [anon_sym_LBRACK_COLON] = ACTIONS(3756), + }, + [STATE(3327)] = { + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token2] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_friend] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + }, + [STATE(3328)] = { + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token2] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_friend] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), + }, + [STATE(3329)] = { + [sym_identifier] = ACTIONS(3842), + [aux_sym_preproc_def_token1] = ACTIONS(3842), + [aux_sym_preproc_if_token1] = ACTIONS(3842), + [aux_sym_preproc_if_token2] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3842), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3842), + [sym_preproc_directive] = ACTIONS(3842), + [anon_sym_LPAREN2] = ACTIONS(3844), + [anon_sym_TILDE] = ACTIONS(3844), + [anon_sym_STAR] = ACTIONS(3844), + [anon_sym_AMP_AMP] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3842), + [anon_sym_SEMI] = ACTIONS(3844), + [anon_sym___extension__] = ACTIONS(3842), + [anon_sym_typedef] = ACTIONS(3842), + [anon_sym_virtual] = ACTIONS(3842), + [anon_sym_extern] = ACTIONS(3842), + [anon_sym___attribute__] = ACTIONS(3842), + [anon_sym___attribute] = ACTIONS(3842), + [anon_sym_using] = ACTIONS(3842), + [anon_sym_COLON_COLON] = ACTIONS(3844), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3844), + [anon_sym___declspec] = ACTIONS(3842), + [anon_sym___based] = ACTIONS(3842), + [anon_sym_signed] = ACTIONS(3842), + [anon_sym_unsigned] = ACTIONS(3842), + [anon_sym_long] = ACTIONS(3842), + [anon_sym_short] = ACTIONS(3842), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_static] = ACTIONS(3842), + [anon_sym_register] = ACTIONS(3842), + [anon_sym_inline] = ACTIONS(3842), + [anon_sym___inline] = ACTIONS(3842), + [anon_sym___inline__] = ACTIONS(3842), + [anon_sym___forceinline] = ACTIONS(3842), + [anon_sym_thread_local] = ACTIONS(3842), + [anon_sym___thread] = ACTIONS(3842), + [anon_sym_const] = ACTIONS(3842), + [anon_sym_constexpr] = ACTIONS(3842), + [anon_sym_volatile] = ACTIONS(3842), + [anon_sym_restrict] = ACTIONS(3842), + [anon_sym___restrict__] = ACTIONS(3842), + [anon_sym__Atomic] = ACTIONS(3842), + [anon_sym__Noreturn] = ACTIONS(3842), + [anon_sym_noreturn] = ACTIONS(3842), + [anon_sym__Nonnull] = ACTIONS(3842), + [anon_sym_mutable] = ACTIONS(3842), + [anon_sym_constinit] = ACTIONS(3842), + [anon_sym_consteval] = ACTIONS(3842), + [anon_sym_alignas] = ACTIONS(3842), + [anon_sym__Alignas] = ACTIONS(3842), + [sym_primitive_type] = ACTIONS(3842), + [anon_sym_enum] = ACTIONS(3842), + [anon_sym_class] = ACTIONS(3842), + [anon_sym_struct] = ACTIONS(3842), + [anon_sym_union] = ACTIONS(3842), + [anon_sym_typename] = ACTIONS(3842), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3842), + [anon_sym_decltype] = ACTIONS(3842), + [anon_sym_explicit] = ACTIONS(3842), + [anon_sym_private] = ACTIONS(3842), + [anon_sym_template] = ACTIONS(3842), + [anon_sym_operator] = ACTIONS(3842), + [anon_sym_friend] = ACTIONS(3842), + [anon_sym_public] = ACTIONS(3842), + [anon_sym_protected] = ACTIONS(3842), + [anon_sym_static_assert] = ACTIONS(3842), + [anon_sym_LBRACK_COLON] = ACTIONS(3844), + }, + [STATE(3330)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_friend] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + }, + [STATE(3331)] = { + [sym_identifier] = ACTIONS(3522), + [aux_sym_preproc_def_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token2] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3522), + [sym_preproc_directive] = ACTIONS(3522), + [anon_sym_LPAREN2] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3524), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_virtual] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym___attribute__] = ACTIONS(3522), + [anon_sym___attribute] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_COLON_COLON] = ACTIONS(3524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3524), + [anon_sym___declspec] = ACTIONS(3522), + [anon_sym___based] = ACTIONS(3522), + [anon_sym_signed] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym___inline] = ACTIONS(3522), + [anon_sym___inline__] = ACTIONS(3522), + [anon_sym___forceinline] = ACTIONS(3522), + [anon_sym_thread_local] = ACTIONS(3522), + [anon_sym___thread] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_constexpr] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym___restrict__] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym__Noreturn] = ACTIONS(3522), + [anon_sym_noreturn] = ACTIONS(3522), + [anon_sym__Nonnull] = ACTIONS(3522), + [anon_sym_mutable] = ACTIONS(3522), + [anon_sym_constinit] = ACTIONS(3522), + [anon_sym_consteval] = ACTIONS(3522), + [anon_sym_alignas] = ACTIONS(3522), + [anon_sym__Alignas] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_typename] = ACTIONS(3522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3522), + [anon_sym_decltype] = ACTIONS(3522), + [anon_sym_explicit] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_template] = ACTIONS(3522), + [anon_sym_operator] = ACTIONS(3522), + [anon_sym_friend] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_static_assert] = ACTIONS(3522), + [anon_sym_LBRACK_COLON] = ACTIONS(3524), + }, + [STATE(3332)] = { + [sym_identifier] = ACTIONS(4309), + [aux_sym_preproc_def_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4309), + [sym_preproc_directive] = ACTIONS(4309), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_TILDE] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_AMP_AMP] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), + [anon_sym_SEMI] = ACTIONS(4311), + [anon_sym___extension__] = ACTIONS(4309), + [anon_sym_typedef] = ACTIONS(4309), + [anon_sym_virtual] = ACTIONS(4309), + [anon_sym_extern] = ACTIONS(4309), + [anon_sym___attribute__] = ACTIONS(4309), + [anon_sym___attribute] = ACTIONS(4309), + [anon_sym_using] = ACTIONS(4309), + [anon_sym_COLON_COLON] = ACTIONS(4311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4311), + [anon_sym___declspec] = ACTIONS(4309), + [anon_sym___based] = ACTIONS(4309), + [anon_sym_RBRACE] = ACTIONS(4311), + [anon_sym_signed] = ACTIONS(4309), + [anon_sym_unsigned] = ACTIONS(4309), + [anon_sym_long] = ACTIONS(4309), + [anon_sym_short] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_static] = ACTIONS(4309), + [anon_sym_register] = ACTIONS(4309), + [anon_sym_inline] = ACTIONS(4309), + [anon_sym___inline] = ACTIONS(4309), + [anon_sym___inline__] = ACTIONS(4309), + [anon_sym___forceinline] = ACTIONS(4309), + [anon_sym_thread_local] = ACTIONS(4309), + [anon_sym___thread] = ACTIONS(4309), + [anon_sym_const] = ACTIONS(4309), + [anon_sym_constexpr] = ACTIONS(4309), + [anon_sym_volatile] = ACTIONS(4309), + [anon_sym_restrict] = ACTIONS(4309), + [anon_sym___restrict__] = ACTIONS(4309), + [anon_sym__Atomic] = ACTIONS(4309), + [anon_sym__Noreturn] = ACTIONS(4309), + [anon_sym_noreturn] = ACTIONS(4309), + [anon_sym__Nonnull] = ACTIONS(4309), + [anon_sym_mutable] = ACTIONS(4309), + [anon_sym_constinit] = ACTIONS(4309), + [anon_sym_consteval] = ACTIONS(4309), + [anon_sym_alignas] = ACTIONS(4309), + [anon_sym__Alignas] = ACTIONS(4309), + [sym_primitive_type] = ACTIONS(4309), + [anon_sym_enum] = ACTIONS(4309), + [anon_sym_class] = ACTIONS(4309), + [anon_sym_struct] = ACTIONS(4309), + [anon_sym_union] = ACTIONS(4309), + [anon_sym_typename] = ACTIONS(4309), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4309), + [anon_sym_decltype] = ACTIONS(4309), + [anon_sym_explicit] = ACTIONS(4309), + [anon_sym_private] = ACTIONS(4309), + [anon_sym_template] = ACTIONS(4309), + [anon_sym_operator] = ACTIONS(4309), + [anon_sym_friend] = ACTIONS(4309), + [anon_sym_public] = ACTIONS(4309), + [anon_sym_protected] = ACTIONS(4309), + [anon_sym_static_assert] = ACTIONS(4309), + [anon_sym_LBRACK_COLON] = ACTIONS(4311), + }, + [STATE(3333)] = { + [sym_identifier] = ACTIONS(4313), + [aux_sym_preproc_def_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token1] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), + [sym_preproc_directive] = ACTIONS(4313), + [anon_sym_LPAREN2] = ACTIONS(4315), + [anon_sym_TILDE] = ACTIONS(4315), + [anon_sym_STAR] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym___extension__] = ACTIONS(4313), + [anon_sym_typedef] = ACTIONS(4313), + [anon_sym_virtual] = ACTIONS(4313), + [anon_sym_extern] = ACTIONS(4313), + [anon_sym___attribute__] = ACTIONS(4313), + [anon_sym___attribute] = ACTIONS(4313), + [anon_sym_using] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4315), + [anon_sym___declspec] = ACTIONS(4313), + [anon_sym___based] = ACTIONS(4313), + [anon_sym_RBRACE] = ACTIONS(4315), + [anon_sym_signed] = ACTIONS(4313), + [anon_sym_unsigned] = ACTIONS(4313), + [anon_sym_long] = ACTIONS(4313), + [anon_sym_short] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_static] = ACTIONS(4313), + [anon_sym_register] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym___inline] = ACTIONS(4313), + [anon_sym___inline__] = ACTIONS(4313), + [anon_sym___forceinline] = ACTIONS(4313), + [anon_sym_thread_local] = ACTIONS(4313), + [anon_sym___thread] = ACTIONS(4313), + [anon_sym_const] = ACTIONS(4313), + [anon_sym_constexpr] = ACTIONS(4313), + [anon_sym_volatile] = ACTIONS(4313), + [anon_sym_restrict] = ACTIONS(4313), + [anon_sym___restrict__] = ACTIONS(4313), + [anon_sym__Atomic] = ACTIONS(4313), + [anon_sym__Noreturn] = ACTIONS(4313), + [anon_sym_noreturn] = ACTIONS(4313), + [anon_sym__Nonnull] = ACTIONS(4313), + [anon_sym_mutable] = ACTIONS(4313), + [anon_sym_constinit] = ACTIONS(4313), + [anon_sym_consteval] = ACTIONS(4313), + [anon_sym_alignas] = ACTIONS(4313), + [anon_sym__Alignas] = ACTIONS(4313), + [sym_primitive_type] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_struct] = ACTIONS(4313), + [anon_sym_union] = ACTIONS(4313), + [anon_sym_typename] = ACTIONS(4313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4313), + [anon_sym_decltype] = ACTIONS(4313), + [anon_sym_explicit] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_template] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_friend] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_static_assert] = ACTIONS(4313), + [anon_sym_LBRACK_COLON] = ACTIONS(4315), + }, + [STATE(3334)] = { + [sym_identifier] = ACTIONS(3668), + [aux_sym_preproc_def_token1] = ACTIONS(3668), + [aux_sym_preproc_if_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3668), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3668), + [sym_preproc_directive] = ACTIONS(3668), + [anon_sym_LPAREN2] = ACTIONS(3670), + [anon_sym_TILDE] = ACTIONS(3670), + [anon_sym_STAR] = ACTIONS(3670), + [anon_sym_AMP_AMP] = ACTIONS(3670), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_SEMI] = ACTIONS(3670), + [anon_sym___extension__] = ACTIONS(3668), + [anon_sym_typedef] = ACTIONS(3668), + [anon_sym_virtual] = ACTIONS(3668), + [anon_sym_extern] = ACTIONS(3668), + [anon_sym___attribute__] = ACTIONS(3668), + [anon_sym___attribute] = ACTIONS(3668), + [anon_sym_using] = ACTIONS(3668), + [anon_sym_COLON_COLON] = ACTIONS(3670), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3670), + [anon_sym___declspec] = ACTIONS(3668), + [anon_sym___based] = ACTIONS(3668), + [anon_sym_RBRACE] = ACTIONS(3670), + [anon_sym_signed] = ACTIONS(3668), + [anon_sym_unsigned] = ACTIONS(3668), + [anon_sym_long] = ACTIONS(3668), + [anon_sym_short] = ACTIONS(3668), + [anon_sym_LBRACK] = ACTIONS(3668), + [anon_sym_static] = ACTIONS(3668), + [anon_sym_register] = ACTIONS(3668), + [anon_sym_inline] = ACTIONS(3668), + [anon_sym___inline] = ACTIONS(3668), + [anon_sym___inline__] = ACTIONS(3668), + [anon_sym___forceinline] = ACTIONS(3668), + [anon_sym_thread_local] = ACTIONS(3668), + [anon_sym___thread] = ACTIONS(3668), + [anon_sym_const] = ACTIONS(3668), + [anon_sym_constexpr] = ACTIONS(3668), + [anon_sym_volatile] = ACTIONS(3668), + [anon_sym_restrict] = ACTIONS(3668), + [anon_sym___restrict__] = ACTIONS(3668), + [anon_sym__Atomic] = ACTIONS(3668), + [anon_sym__Noreturn] = ACTIONS(3668), + [anon_sym_noreturn] = ACTIONS(3668), + [anon_sym__Nonnull] = ACTIONS(3668), + [anon_sym_mutable] = ACTIONS(3668), + [anon_sym_constinit] = ACTIONS(3668), + [anon_sym_consteval] = ACTIONS(3668), + [anon_sym_alignas] = ACTIONS(3668), + [anon_sym__Alignas] = ACTIONS(3668), + [sym_primitive_type] = ACTIONS(3668), + [anon_sym_enum] = ACTIONS(3668), + [anon_sym_class] = ACTIONS(3668), + [anon_sym_struct] = ACTIONS(3668), + [anon_sym_union] = ACTIONS(3668), + [anon_sym_typename] = ACTIONS(3668), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3668), + [anon_sym_decltype] = ACTIONS(3668), + [anon_sym_explicit] = ACTIONS(3668), + [anon_sym_private] = ACTIONS(3668), + [anon_sym_template] = ACTIONS(3668), + [anon_sym_operator] = ACTIONS(3668), + [anon_sym_friend] = ACTIONS(3668), + [anon_sym_public] = ACTIONS(3668), + [anon_sym_protected] = ACTIONS(3668), + [anon_sym_static_assert] = ACTIONS(3668), + [anon_sym_LBRACK_COLON] = ACTIONS(3670), + }, + [STATE(3335)] = { + [sym_identifier] = ACTIONS(3596), + [aux_sym_preproc_def_token1] = ACTIONS(3596), + [aux_sym_preproc_if_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3596), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3596), + [sym_preproc_directive] = ACTIONS(3596), + [anon_sym_LPAREN2] = ACTIONS(3598), + [anon_sym_TILDE] = ACTIONS(3598), + [anon_sym_STAR] = ACTIONS(3598), + [anon_sym_AMP_AMP] = ACTIONS(3598), + [anon_sym_AMP] = ACTIONS(3596), + [anon_sym_SEMI] = ACTIONS(3598), + [anon_sym___extension__] = ACTIONS(3596), + [anon_sym_typedef] = ACTIONS(3596), + [anon_sym_virtual] = ACTIONS(3596), + [anon_sym_extern] = ACTIONS(3596), + [anon_sym___attribute__] = ACTIONS(3596), + [anon_sym___attribute] = ACTIONS(3596), + [anon_sym_using] = ACTIONS(3596), + [anon_sym_COLON_COLON] = ACTIONS(3598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3598), + [anon_sym___declspec] = ACTIONS(3596), + [anon_sym___based] = ACTIONS(3596), + [anon_sym_RBRACE] = ACTIONS(3598), + [anon_sym_signed] = ACTIONS(3596), + [anon_sym_unsigned] = ACTIONS(3596), + [anon_sym_long] = ACTIONS(3596), + [anon_sym_short] = ACTIONS(3596), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_static] = ACTIONS(3596), + [anon_sym_register] = ACTIONS(3596), + [anon_sym_inline] = ACTIONS(3596), + [anon_sym___inline] = ACTIONS(3596), + [anon_sym___inline__] = ACTIONS(3596), + [anon_sym___forceinline] = ACTIONS(3596), + [anon_sym_thread_local] = ACTIONS(3596), + [anon_sym___thread] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_constexpr] = ACTIONS(3596), + [anon_sym_volatile] = ACTIONS(3596), + [anon_sym_restrict] = ACTIONS(3596), + [anon_sym___restrict__] = ACTIONS(3596), + [anon_sym__Atomic] = ACTIONS(3596), + [anon_sym__Noreturn] = ACTIONS(3596), + [anon_sym_noreturn] = ACTIONS(3596), + [anon_sym__Nonnull] = ACTIONS(3596), + [anon_sym_mutable] = ACTIONS(3596), + [anon_sym_constinit] = ACTIONS(3596), + [anon_sym_consteval] = ACTIONS(3596), + [anon_sym_alignas] = ACTIONS(3596), + [anon_sym__Alignas] = ACTIONS(3596), + [sym_primitive_type] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_class] = ACTIONS(3596), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_typename] = ACTIONS(3596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3596), + [anon_sym_decltype] = ACTIONS(3596), + [anon_sym_explicit] = ACTIONS(3596), + [anon_sym_private] = ACTIONS(3596), + [anon_sym_template] = ACTIONS(3596), + [anon_sym_operator] = ACTIONS(3596), + [anon_sym_friend] = ACTIONS(3596), + [anon_sym_public] = ACTIONS(3596), + [anon_sym_protected] = ACTIONS(3596), + [anon_sym_static_assert] = ACTIONS(3596), + [anon_sym_LBRACK_COLON] = ACTIONS(3598), + }, + [STATE(3336)] = { + [sym_identifier] = ACTIONS(4367), + [aux_sym_preproc_def_token1] = ACTIONS(4367), + [aux_sym_preproc_if_token1] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4367), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4367), + [sym_preproc_directive] = ACTIONS(4367), + [anon_sym_LPAREN2] = ACTIONS(4369), + [anon_sym_TILDE] = ACTIONS(4369), + [anon_sym_STAR] = ACTIONS(4369), + [anon_sym_AMP_AMP] = ACTIONS(4369), + [anon_sym_AMP] = ACTIONS(4367), + [anon_sym_SEMI] = ACTIONS(4369), + [anon_sym___extension__] = ACTIONS(4367), + [anon_sym_typedef] = ACTIONS(4367), + [anon_sym_virtual] = ACTIONS(4367), + [anon_sym_extern] = ACTIONS(4367), + [anon_sym___attribute__] = ACTIONS(4367), + [anon_sym___attribute] = ACTIONS(4367), + [anon_sym_using] = ACTIONS(4367), + [anon_sym_COLON_COLON] = ACTIONS(4369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4369), + [anon_sym___declspec] = ACTIONS(4367), + [anon_sym___based] = ACTIONS(4367), + [anon_sym_RBRACE] = ACTIONS(4369), + [anon_sym_signed] = ACTIONS(4367), + [anon_sym_unsigned] = ACTIONS(4367), + [anon_sym_long] = ACTIONS(4367), + [anon_sym_short] = ACTIONS(4367), + [anon_sym_LBRACK] = ACTIONS(4367), + [anon_sym_static] = ACTIONS(4367), + [anon_sym_register] = ACTIONS(4367), + [anon_sym_inline] = ACTIONS(4367), + [anon_sym___inline] = ACTIONS(4367), + [anon_sym___inline__] = ACTIONS(4367), + [anon_sym___forceinline] = ACTIONS(4367), + [anon_sym_thread_local] = ACTIONS(4367), + [anon_sym___thread] = ACTIONS(4367), + [anon_sym_const] = ACTIONS(4367), + [anon_sym_constexpr] = ACTIONS(4367), + [anon_sym_volatile] = ACTIONS(4367), + [anon_sym_restrict] = ACTIONS(4367), + [anon_sym___restrict__] = ACTIONS(4367), + [anon_sym__Atomic] = ACTIONS(4367), + [anon_sym__Noreturn] = ACTIONS(4367), + [anon_sym_noreturn] = ACTIONS(4367), + [anon_sym__Nonnull] = ACTIONS(4367), + [anon_sym_mutable] = ACTIONS(4367), + [anon_sym_constinit] = ACTIONS(4367), + [anon_sym_consteval] = ACTIONS(4367), + [anon_sym_alignas] = ACTIONS(4367), + [anon_sym__Alignas] = ACTIONS(4367), + [sym_primitive_type] = ACTIONS(4367), + [anon_sym_enum] = ACTIONS(4367), + [anon_sym_class] = ACTIONS(4367), + [anon_sym_struct] = ACTIONS(4367), + [anon_sym_union] = ACTIONS(4367), + [anon_sym_typename] = ACTIONS(4367), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4367), + [anon_sym_decltype] = ACTIONS(4367), + [anon_sym_explicit] = ACTIONS(4367), + [anon_sym_private] = ACTIONS(4367), + [anon_sym_template] = ACTIONS(4367), + [anon_sym_operator] = ACTIONS(4367), + [anon_sym_friend] = ACTIONS(4367), + [anon_sym_public] = ACTIONS(4367), + [anon_sym_protected] = ACTIONS(4367), + [anon_sym_static_assert] = ACTIONS(4367), + [anon_sym_LBRACK_COLON] = ACTIONS(4369), + }, + [STATE(3337)] = { + [sym_identifier] = ACTIONS(9103), + [anon_sym_LPAREN2] = ACTIONS(9105), + [anon_sym_TILDE] = ACTIONS(9105), + [anon_sym_STAR] = ACTIONS(9105), + [anon_sym_AMP_AMP] = ACTIONS(9105), + [anon_sym_AMP] = ACTIONS(9103), + [anon_sym___extension__] = ACTIONS(9103), + [anon_sym_virtual] = ACTIONS(9103), + [anon_sym_extern] = ACTIONS(9103), + [anon_sym___attribute__] = ACTIONS(9103), + [anon_sym___attribute] = ACTIONS(9103), + [anon_sym_using] = ACTIONS(9103), + [anon_sym_COLON_COLON] = ACTIONS(9105), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9105), + [anon_sym___declspec] = ACTIONS(9103), + [anon_sym___based] = ACTIONS(9103), + [anon_sym___cdecl] = ACTIONS(9103), + [anon_sym___clrcall] = ACTIONS(9103), + [anon_sym___stdcall] = ACTIONS(9103), + [anon_sym___fastcall] = ACTIONS(9103), + [anon_sym___thiscall] = ACTIONS(9103), + [anon_sym___vectorcall] = ACTIONS(9103), + [anon_sym_LBRACE] = ACTIONS(9105), + [anon_sym_signed] = ACTIONS(9103), + [anon_sym_unsigned] = ACTIONS(9103), + [anon_sym_long] = ACTIONS(9103), + [anon_sym_short] = ACTIONS(9103), + [anon_sym_LBRACK] = ACTIONS(9103), + [anon_sym_static] = ACTIONS(9103), + [anon_sym_register] = ACTIONS(9103), + [anon_sym_inline] = ACTIONS(9103), + [anon_sym___inline] = ACTIONS(9103), + [anon_sym___inline__] = ACTIONS(9103), + [anon_sym___forceinline] = ACTIONS(9103), + [anon_sym_thread_local] = ACTIONS(9103), + [anon_sym___thread] = ACTIONS(9103), + [anon_sym_const] = ACTIONS(9103), + [anon_sym_constexpr] = ACTIONS(9103), + [anon_sym_volatile] = ACTIONS(9103), + [anon_sym_restrict] = ACTIONS(9103), + [anon_sym___restrict__] = ACTIONS(9103), + [anon_sym__Atomic] = ACTIONS(9103), + [anon_sym__Noreturn] = ACTIONS(9103), + [anon_sym_noreturn] = ACTIONS(9103), + [anon_sym__Nonnull] = ACTIONS(9103), + [anon_sym_mutable] = ACTIONS(9103), + [anon_sym_constinit] = ACTIONS(9103), + [anon_sym_consteval] = ACTIONS(9103), + [anon_sym_alignas] = ACTIONS(9103), + [anon_sym__Alignas] = ACTIONS(9103), + [sym_primitive_type] = ACTIONS(9103), + [anon_sym_enum] = ACTIONS(9103), + [anon_sym_class] = ACTIONS(9103), + [anon_sym_struct] = ACTIONS(9103), + [anon_sym_union] = ACTIONS(9103), + [anon_sym_typename] = ACTIONS(9103), + [anon_sym_DASH_GT] = ACTIONS(9105), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9103), + [anon_sym_decltype] = ACTIONS(9103), + [anon_sym_explicit] = ACTIONS(9103), + [anon_sym_template] = ACTIONS(9103), + [anon_sym_operator] = ACTIONS(9103), + [anon_sym_friend] = ACTIONS(9103), + [anon_sym_noexcept] = ACTIONS(9103), + [anon_sym_throw] = ACTIONS(9103), + [anon_sym_concept] = ACTIONS(9103), + [anon_sym_requires] = ACTIONS(9103), + [anon_sym_LBRACK_COLON] = ACTIONS(9105), + }, + [STATE(3338)] = { + [sym_identifier] = ACTIONS(8733), + [aux_sym_preproc_def_token1] = ACTIONS(8733), + [aux_sym_preproc_if_token1] = ACTIONS(8733), + [aux_sym_preproc_if_token2] = ACTIONS(8733), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8733), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8733), + [sym_preproc_directive] = ACTIONS(8733), + [anon_sym_LPAREN2] = ACTIONS(8735), + [anon_sym_TILDE] = ACTIONS(8735), + [anon_sym_STAR] = ACTIONS(8735), + [anon_sym_AMP_AMP] = ACTIONS(8735), + [anon_sym_AMP] = ACTIONS(8733), + [anon_sym_SEMI] = ACTIONS(8735), + [anon_sym___extension__] = ACTIONS(8733), + [anon_sym_typedef] = ACTIONS(8733), + [anon_sym_virtual] = ACTIONS(8733), + [anon_sym_extern] = ACTIONS(8733), + [anon_sym___attribute__] = ACTIONS(8733), + [anon_sym___attribute] = ACTIONS(8733), + [anon_sym_using] = ACTIONS(8733), + [anon_sym_COLON_COLON] = ACTIONS(8735), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8735), + [anon_sym___declspec] = ACTIONS(8733), + [anon_sym___based] = ACTIONS(8733), + [anon_sym_signed] = ACTIONS(8733), + [anon_sym_unsigned] = ACTIONS(8733), + [anon_sym_long] = ACTIONS(8733), + [anon_sym_short] = ACTIONS(8733), + [anon_sym_LBRACK] = ACTIONS(8733), + [anon_sym_static] = ACTIONS(8733), + [anon_sym_register] = ACTIONS(8733), + [anon_sym_inline] = ACTIONS(8733), + [anon_sym___inline] = ACTIONS(8733), + [anon_sym___inline__] = ACTIONS(8733), + [anon_sym___forceinline] = ACTIONS(8733), + [anon_sym_thread_local] = ACTIONS(8733), + [anon_sym___thread] = ACTIONS(8733), + [anon_sym_const] = ACTIONS(8733), + [anon_sym_constexpr] = ACTIONS(8733), + [anon_sym_volatile] = ACTIONS(8733), + [anon_sym_restrict] = ACTIONS(8733), + [anon_sym___restrict__] = ACTIONS(8733), + [anon_sym__Atomic] = ACTIONS(8733), + [anon_sym__Noreturn] = ACTIONS(8733), + [anon_sym_noreturn] = ACTIONS(8733), + [anon_sym__Nonnull] = ACTIONS(8733), + [anon_sym_mutable] = ACTIONS(8733), + [anon_sym_constinit] = ACTIONS(8733), + [anon_sym_consteval] = ACTIONS(8733), + [anon_sym_alignas] = ACTIONS(8733), + [anon_sym__Alignas] = ACTIONS(8733), + [sym_primitive_type] = ACTIONS(8733), + [anon_sym_enum] = ACTIONS(8733), + [anon_sym_class] = ACTIONS(8733), + [anon_sym_struct] = ACTIONS(8733), + [anon_sym_union] = ACTIONS(8733), + [anon_sym_typename] = ACTIONS(8733), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8733), + [anon_sym_decltype] = ACTIONS(8733), + [anon_sym_explicit] = ACTIONS(8733), + [anon_sym_private] = ACTIONS(8733), + [anon_sym_template] = ACTIONS(8733), + [anon_sym_operator] = ACTIONS(8733), + [anon_sym_friend] = ACTIONS(8733), + [anon_sym_public] = ACTIONS(8733), + [anon_sym_protected] = ACTIONS(8733), + [anon_sym_static_assert] = ACTIONS(8733), + [anon_sym_LBRACK_COLON] = ACTIONS(8735), + }, + [STATE(3339)] = { + [sym_identifier] = ACTIONS(8816), + [aux_sym_preproc_def_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8816), + [sym_preproc_directive] = ACTIONS(8816), + [anon_sym_LPAREN2] = ACTIONS(8818), + [anon_sym_TILDE] = ACTIONS(8818), + [anon_sym_STAR] = ACTIONS(8818), + [anon_sym_AMP_AMP] = ACTIONS(8818), + [anon_sym_AMP] = ACTIONS(8816), + [anon_sym_SEMI] = ACTIONS(8818), + [anon_sym___extension__] = ACTIONS(8816), + [anon_sym_typedef] = ACTIONS(8816), + [anon_sym_virtual] = ACTIONS(8816), + [anon_sym_extern] = ACTIONS(8816), + [anon_sym___attribute__] = ACTIONS(8816), + [anon_sym___attribute] = ACTIONS(8816), + [anon_sym_using] = ACTIONS(8816), + [anon_sym_COLON_COLON] = ACTIONS(8818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8818), + [anon_sym___declspec] = ACTIONS(8816), + [anon_sym___based] = ACTIONS(8816), + [anon_sym_RBRACE] = ACTIONS(8818), + [anon_sym_signed] = ACTIONS(8816), + [anon_sym_unsigned] = ACTIONS(8816), + [anon_sym_long] = ACTIONS(8816), + [anon_sym_short] = ACTIONS(8816), + [anon_sym_LBRACK] = ACTIONS(8816), + [anon_sym_static] = ACTIONS(8816), + [anon_sym_register] = ACTIONS(8816), + [anon_sym_inline] = ACTIONS(8816), + [anon_sym___inline] = ACTIONS(8816), + [anon_sym___inline__] = ACTIONS(8816), + [anon_sym___forceinline] = ACTIONS(8816), + [anon_sym_thread_local] = ACTIONS(8816), + [anon_sym___thread] = ACTIONS(8816), + [anon_sym_const] = ACTIONS(8816), + [anon_sym_constexpr] = ACTIONS(8816), + [anon_sym_volatile] = ACTIONS(8816), + [anon_sym_restrict] = ACTIONS(8816), + [anon_sym___restrict__] = ACTIONS(8816), + [anon_sym__Atomic] = ACTIONS(8816), + [anon_sym__Noreturn] = ACTIONS(8816), + [anon_sym_noreturn] = ACTIONS(8816), + [anon_sym__Nonnull] = ACTIONS(8816), + [anon_sym_mutable] = ACTIONS(8816), + [anon_sym_constinit] = ACTIONS(8816), + [anon_sym_consteval] = ACTIONS(8816), + [anon_sym_alignas] = ACTIONS(8816), + [anon_sym__Alignas] = ACTIONS(8816), + [sym_primitive_type] = ACTIONS(8816), + [anon_sym_enum] = ACTIONS(8816), + [anon_sym_class] = ACTIONS(8816), + [anon_sym_struct] = ACTIONS(8816), + [anon_sym_union] = ACTIONS(8816), + [anon_sym_typename] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8816), + [anon_sym_decltype] = ACTIONS(8816), + [anon_sym_explicit] = ACTIONS(8816), + [anon_sym_private] = ACTIONS(8816), + [anon_sym_template] = ACTIONS(8816), + [anon_sym_operator] = ACTIONS(8816), + [anon_sym_friend] = ACTIONS(8816), + [anon_sym_public] = ACTIONS(8816), + [anon_sym_protected] = ACTIONS(8816), + [anon_sym_static_assert] = ACTIONS(8816), + [anon_sym_LBRACK_COLON] = ACTIONS(8818), + }, + [STATE(3340)] = { + [sym_identifier] = ACTIONS(3758), + [aux_sym_preproc_def_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token2] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3758), + [sym_preproc_directive] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_STAR] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym___extension__] = ACTIONS(3758), + [anon_sym_typedef] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym___attribute] = ACTIONS(3758), + [anon_sym_using] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym_signed] = ACTIONS(3758), + [anon_sym_unsigned] = ACTIONS(3758), + [anon_sym_long] = ACTIONS(3758), + [anon_sym_short] = ACTIONS(3758), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym___restrict__] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym__Noreturn] = ACTIONS(3758), + [anon_sym_noreturn] = ACTIONS(3758), + [anon_sym__Nonnull] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_alignas] = ACTIONS(3758), + [anon_sym__Alignas] = ACTIONS(3758), + [sym_primitive_type] = ACTIONS(3758), + [anon_sym_enum] = ACTIONS(3758), + [anon_sym_class] = ACTIONS(3758), + [anon_sym_struct] = ACTIONS(3758), + [anon_sym_union] = ACTIONS(3758), + [anon_sym_typename] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_explicit] = ACTIONS(3758), + [anon_sym_private] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + [anon_sym_friend] = ACTIONS(3758), + [anon_sym_public] = ACTIONS(3758), + [anon_sym_protected] = ACTIONS(3758), + [anon_sym_static_assert] = ACTIONS(3758), + [anon_sym_LBRACK_COLON] = ACTIONS(3760), + }, + [STATE(3341)] = { + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token2] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_friend] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), + }, + [STATE(3342)] = { + [sym_identifier] = ACTIONS(3660), + [aux_sym_preproc_def_token1] = ACTIONS(3660), + [aux_sym_preproc_if_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3660), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3660), + [sym_preproc_directive] = ACTIONS(3660), + [anon_sym_LPAREN2] = ACTIONS(3662), + [anon_sym_TILDE] = ACTIONS(3662), + [anon_sym_STAR] = ACTIONS(3662), + [anon_sym_AMP_AMP] = ACTIONS(3662), + [anon_sym_AMP] = ACTIONS(3660), + [anon_sym_SEMI] = ACTIONS(3662), + [anon_sym___extension__] = ACTIONS(3660), + [anon_sym_typedef] = ACTIONS(3660), + [anon_sym_virtual] = ACTIONS(3660), + [anon_sym_extern] = ACTIONS(3660), + [anon_sym___attribute__] = ACTIONS(3660), + [anon_sym___attribute] = ACTIONS(3660), + [anon_sym_using] = ACTIONS(3660), + [anon_sym_COLON_COLON] = ACTIONS(3662), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3662), + [anon_sym___declspec] = ACTIONS(3660), + [anon_sym___based] = ACTIONS(3660), + [anon_sym_RBRACE] = ACTIONS(3662), + [anon_sym_signed] = ACTIONS(3660), + [anon_sym_unsigned] = ACTIONS(3660), + [anon_sym_long] = ACTIONS(3660), + [anon_sym_short] = ACTIONS(3660), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_static] = ACTIONS(3660), + [anon_sym_register] = ACTIONS(3660), + [anon_sym_inline] = ACTIONS(3660), + [anon_sym___inline] = ACTIONS(3660), + [anon_sym___inline__] = ACTIONS(3660), + [anon_sym___forceinline] = ACTIONS(3660), + [anon_sym_thread_local] = ACTIONS(3660), + [anon_sym___thread] = ACTIONS(3660), + [anon_sym_const] = ACTIONS(3660), + [anon_sym_constexpr] = ACTIONS(3660), + [anon_sym_volatile] = ACTIONS(3660), + [anon_sym_restrict] = ACTIONS(3660), + [anon_sym___restrict__] = ACTIONS(3660), + [anon_sym__Atomic] = ACTIONS(3660), + [anon_sym__Noreturn] = ACTIONS(3660), + [anon_sym_noreturn] = ACTIONS(3660), + [anon_sym__Nonnull] = ACTIONS(3660), + [anon_sym_mutable] = ACTIONS(3660), + [anon_sym_constinit] = ACTIONS(3660), + [anon_sym_consteval] = ACTIONS(3660), + [anon_sym_alignas] = ACTIONS(3660), + [anon_sym__Alignas] = ACTIONS(3660), + [sym_primitive_type] = ACTIONS(3660), + [anon_sym_enum] = ACTIONS(3660), + [anon_sym_class] = ACTIONS(3660), + [anon_sym_struct] = ACTIONS(3660), + [anon_sym_union] = ACTIONS(3660), + [anon_sym_typename] = ACTIONS(3660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3660), + [anon_sym_decltype] = ACTIONS(3660), + [anon_sym_explicit] = ACTIONS(3660), + [anon_sym_private] = ACTIONS(3660), + [anon_sym_template] = ACTIONS(3660), + [anon_sym_operator] = ACTIONS(3660), + [anon_sym_friend] = ACTIONS(3660), + [anon_sym_public] = ACTIONS(3660), + [anon_sym_protected] = ACTIONS(3660), + [anon_sym_static_assert] = ACTIONS(3660), + [anon_sym_LBRACK_COLON] = ACTIONS(3662), + }, + [STATE(3343)] = { + [sym_identifier] = ACTIONS(8745), + [aux_sym_preproc_def_token1] = ACTIONS(8745), + [aux_sym_preproc_if_token1] = ACTIONS(8745), + [aux_sym_preproc_if_token2] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8745), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8745), + [sym_preproc_directive] = ACTIONS(8745), + [anon_sym_LPAREN2] = ACTIONS(8747), + [anon_sym_TILDE] = ACTIONS(8747), + [anon_sym_STAR] = ACTIONS(8747), + [anon_sym_AMP_AMP] = ACTIONS(8747), + [anon_sym_AMP] = ACTIONS(8745), + [anon_sym_SEMI] = ACTIONS(8747), + [anon_sym___extension__] = ACTIONS(8745), + [anon_sym_typedef] = ACTIONS(8745), + [anon_sym_virtual] = ACTIONS(8745), + [anon_sym_extern] = ACTIONS(8745), + [anon_sym___attribute__] = ACTIONS(8745), + [anon_sym___attribute] = ACTIONS(8745), + [anon_sym_using] = ACTIONS(8745), + [anon_sym_COLON_COLON] = ACTIONS(8747), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8747), + [anon_sym___declspec] = ACTIONS(8745), + [anon_sym___based] = ACTIONS(8745), + [anon_sym_signed] = ACTIONS(8745), + [anon_sym_unsigned] = ACTIONS(8745), + [anon_sym_long] = ACTIONS(8745), + [anon_sym_short] = ACTIONS(8745), + [anon_sym_LBRACK] = ACTIONS(8745), + [anon_sym_static] = ACTIONS(8745), + [anon_sym_register] = ACTIONS(8745), + [anon_sym_inline] = ACTIONS(8745), + [anon_sym___inline] = ACTIONS(8745), + [anon_sym___inline__] = ACTIONS(8745), + [anon_sym___forceinline] = ACTIONS(8745), + [anon_sym_thread_local] = ACTIONS(8745), + [anon_sym___thread] = ACTIONS(8745), + [anon_sym_const] = ACTIONS(8745), + [anon_sym_constexpr] = ACTIONS(8745), + [anon_sym_volatile] = ACTIONS(8745), + [anon_sym_restrict] = ACTIONS(8745), + [anon_sym___restrict__] = ACTIONS(8745), + [anon_sym__Atomic] = ACTIONS(8745), + [anon_sym__Noreturn] = ACTIONS(8745), + [anon_sym_noreturn] = ACTIONS(8745), + [anon_sym__Nonnull] = ACTIONS(8745), + [anon_sym_mutable] = ACTIONS(8745), + [anon_sym_constinit] = ACTIONS(8745), + [anon_sym_consteval] = ACTIONS(8745), + [anon_sym_alignas] = ACTIONS(8745), + [anon_sym__Alignas] = ACTIONS(8745), + [sym_primitive_type] = ACTIONS(8745), + [anon_sym_enum] = ACTIONS(8745), + [anon_sym_class] = ACTIONS(8745), + [anon_sym_struct] = ACTIONS(8745), + [anon_sym_union] = ACTIONS(8745), + [anon_sym_typename] = ACTIONS(8745), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8745), + [anon_sym_decltype] = ACTIONS(8745), + [anon_sym_explicit] = ACTIONS(8745), + [anon_sym_private] = ACTIONS(8745), + [anon_sym_template] = ACTIONS(8745), + [anon_sym_operator] = ACTIONS(8745), + [anon_sym_friend] = ACTIONS(8745), + [anon_sym_public] = ACTIONS(8745), + [anon_sym_protected] = ACTIONS(8745), + [anon_sym_static_assert] = ACTIONS(8745), + [anon_sym_LBRACK_COLON] = ACTIONS(8747), + }, + [STATE(3344)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_friend] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + }, + [STATE(3345)] = { + [sym_string_literal] = STATE(2577), + [sym_raw_string_literal] = STATE(2577), + [sym_identifier] = ACTIONS(9107), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9109), + [anon_sym_COMMA] = ACTIONS(9109), + [aux_sym_preproc_if_token2] = ACTIONS(9109), + [aux_sym_preproc_else_token1] = ACTIONS(9109), + [aux_sym_preproc_elif_token1] = ACTIONS(9107), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9109), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9109), + [anon_sym_LPAREN2] = ACTIONS(9109), + [anon_sym_DASH] = ACTIONS(9107), + [anon_sym_PLUS] = ACTIONS(9107), + [anon_sym_STAR] = ACTIONS(9107), + [anon_sym_SLASH] = ACTIONS(9107), + [anon_sym_PERCENT] = ACTIONS(9107), + [anon_sym_PIPE_PIPE] = ACTIONS(9109), + [anon_sym_AMP_AMP] = ACTIONS(9109), + [anon_sym_PIPE] = ACTIONS(9107), + [anon_sym_CARET] = ACTIONS(9107), + [anon_sym_AMP] = ACTIONS(9107), + [anon_sym_EQ_EQ] = ACTIONS(9109), + [anon_sym_BANG_EQ] = ACTIONS(9109), + [anon_sym_GT] = ACTIONS(9107), + [anon_sym_GT_EQ] = ACTIONS(9109), + [anon_sym_LT_EQ] = ACTIONS(9107), + [anon_sym_LT] = ACTIONS(9107), + [anon_sym_LT_LT] = ACTIONS(9107), + [anon_sym_GT_GT] = ACTIONS(9107), + [anon_sym_LBRACK] = ACTIONS(9109), + [anon_sym_EQ] = ACTIONS(9107), + [anon_sym_QMARK] = ACTIONS(9109), + [anon_sym_STAR_EQ] = ACTIONS(9109), + [anon_sym_SLASH_EQ] = ACTIONS(9109), + [anon_sym_PERCENT_EQ] = ACTIONS(9109), + [anon_sym_PLUS_EQ] = ACTIONS(9109), + [anon_sym_DASH_EQ] = ACTIONS(9109), + [anon_sym_LT_LT_EQ] = ACTIONS(9109), + [anon_sym_GT_GT_EQ] = ACTIONS(9109), + [anon_sym_AMP_EQ] = ACTIONS(9109), + [anon_sym_CARET_EQ] = ACTIONS(9109), + [anon_sym_PIPE_EQ] = ACTIONS(9109), + [anon_sym_and_eq] = ACTIONS(9107), + [anon_sym_or_eq] = ACTIONS(9107), + [anon_sym_xor_eq] = ACTIONS(9107), + [anon_sym_LT_EQ_GT] = ACTIONS(9109), + [anon_sym_or] = ACTIONS(9107), + [anon_sym_and] = ACTIONS(9107), + [anon_sym_bitor] = ACTIONS(9107), + [anon_sym_xor] = ACTIONS(9107), + [anon_sym_bitand] = ACTIONS(9107), + [anon_sym_not_eq] = ACTIONS(9107), + [anon_sym_DASH_DASH] = ACTIONS(9109), + [anon_sym_PLUS_PLUS] = ACTIONS(9109), + [anon_sym_DOT] = ACTIONS(9107), + [anon_sym_DOT_STAR] = ACTIONS(9109), + [anon_sym_DASH_GT] = ACTIONS(9109), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [sym_literal_suffix] = ACTIONS(9107), + }, + [STATE(3346)] = { + [sym_template_argument_list] = STATE(3629), + [sym_identifier] = ACTIONS(6559), + [anon_sym_LPAREN2] = ACTIONS(6566), + [anon_sym_TILDE] = ACTIONS(6566), + [anon_sym_STAR] = ACTIONS(6566), + [anon_sym_PIPE_PIPE] = ACTIONS(6566), + [anon_sym_AMP_AMP] = ACTIONS(6566), + [anon_sym_AMP] = ACTIONS(6559), + [anon_sym_LT] = ACTIONS(9093), + [anon_sym___extension__] = ACTIONS(6559), + [anon_sym_virtual] = ACTIONS(6559), + [anon_sym_extern] = ACTIONS(6559), + [anon_sym___attribute__] = ACTIONS(6559), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_using] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6566), + [anon_sym___declspec] = ACTIONS(6559), + [anon_sym___based] = ACTIONS(6559), + [anon_sym___cdecl] = ACTIONS(6559), + [anon_sym___clrcall] = ACTIONS(6559), + [anon_sym___stdcall] = ACTIONS(6559), + [anon_sym___fastcall] = ACTIONS(6559), + [anon_sym___thiscall] = ACTIONS(6559), + [anon_sym___vectorcall] = ACTIONS(6559), + [anon_sym_signed] = ACTIONS(6559), + [anon_sym_unsigned] = ACTIONS(6559), + [anon_sym_long] = ACTIONS(6559), + [anon_sym_short] = ACTIONS(6559), + [anon_sym_LBRACK] = ACTIONS(6559), + [anon_sym_static] = ACTIONS(6559), + [anon_sym_register] = ACTIONS(6559), + [anon_sym_inline] = ACTIONS(6559), + [anon_sym___inline] = ACTIONS(6559), + [anon_sym___inline__] = ACTIONS(6559), + [anon_sym___forceinline] = ACTIONS(6559), + [anon_sym_thread_local] = ACTIONS(6559), + [anon_sym___thread] = ACTIONS(6559), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6559), + [anon_sym_volatile] = ACTIONS(6559), + [anon_sym_restrict] = ACTIONS(6559), + [anon_sym___restrict__] = ACTIONS(6559), + [anon_sym__Atomic] = ACTIONS(6559), + [anon_sym__Noreturn] = ACTIONS(6559), + [anon_sym_noreturn] = ACTIONS(6559), + [anon_sym__Nonnull] = ACTIONS(6559), + [anon_sym_mutable] = ACTIONS(6559), + [anon_sym_constinit] = ACTIONS(6559), + [anon_sym_consteval] = ACTIONS(6559), + [anon_sym_alignas] = ACTIONS(6559), + [anon_sym__Alignas] = ACTIONS(6559), + [sym_primitive_type] = ACTIONS(6559), + [anon_sym_enum] = ACTIONS(6559), + [anon_sym_class] = ACTIONS(6559), + [anon_sym_struct] = ACTIONS(6559), + [anon_sym_union] = ACTIONS(6559), + [anon_sym_or] = ACTIONS(6559), + [anon_sym_and] = ACTIONS(6559), + [anon_sym_typename] = ACTIONS(6559), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6559), + [anon_sym_decltype] = ACTIONS(6559), + [anon_sym_explicit] = ACTIONS(6559), + [anon_sym_template] = ACTIONS(6559), + [anon_sym_operator] = ACTIONS(6559), + [anon_sym_friend] = ACTIONS(6559), + [anon_sym_concept] = ACTIONS(6559), + [anon_sym_LBRACK_COLON] = ACTIONS(6566), + }, + [STATE(3347)] = { + [sym_identifier] = ACTIONS(3858), + [aux_sym_preproc_def_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token1] = ACTIONS(3858), + [aux_sym_preproc_if_token2] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3858), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3858), + [sym_preproc_directive] = ACTIONS(3858), + [anon_sym_LPAREN2] = ACTIONS(3860), + [anon_sym_TILDE] = ACTIONS(3860), + [anon_sym_STAR] = ACTIONS(3860), + [anon_sym_AMP_AMP] = ACTIONS(3860), + [anon_sym_AMP] = ACTIONS(3858), + [anon_sym_SEMI] = ACTIONS(3860), + [anon_sym___extension__] = ACTIONS(3858), + [anon_sym_typedef] = ACTIONS(3858), + [anon_sym_virtual] = ACTIONS(3858), + [anon_sym_extern] = ACTIONS(3858), + [anon_sym___attribute__] = ACTIONS(3858), + [anon_sym___attribute] = ACTIONS(3858), + [anon_sym_using] = ACTIONS(3858), + [anon_sym_COLON_COLON] = ACTIONS(3860), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3860), + [anon_sym___declspec] = ACTIONS(3858), + [anon_sym___based] = ACTIONS(3858), + [anon_sym_signed] = ACTIONS(3858), + [anon_sym_unsigned] = ACTIONS(3858), + [anon_sym_long] = ACTIONS(3858), + [anon_sym_short] = ACTIONS(3858), + [anon_sym_LBRACK] = ACTIONS(3858), + [anon_sym_static] = ACTIONS(3858), + [anon_sym_register] = ACTIONS(3858), + [anon_sym_inline] = ACTIONS(3858), + [anon_sym___inline] = ACTIONS(3858), + [anon_sym___inline__] = ACTIONS(3858), + [anon_sym___forceinline] = ACTIONS(3858), + [anon_sym_thread_local] = ACTIONS(3858), + [anon_sym___thread] = ACTIONS(3858), + [anon_sym_const] = ACTIONS(3858), + [anon_sym_constexpr] = ACTIONS(3858), + [anon_sym_volatile] = ACTIONS(3858), + [anon_sym_restrict] = ACTIONS(3858), + [anon_sym___restrict__] = ACTIONS(3858), + [anon_sym__Atomic] = ACTIONS(3858), + [anon_sym__Noreturn] = ACTIONS(3858), + [anon_sym_noreturn] = ACTIONS(3858), + [anon_sym__Nonnull] = ACTIONS(3858), + [anon_sym_mutable] = ACTIONS(3858), + [anon_sym_constinit] = ACTIONS(3858), + [anon_sym_consteval] = ACTIONS(3858), + [anon_sym_alignas] = ACTIONS(3858), + [anon_sym__Alignas] = ACTIONS(3858), + [sym_primitive_type] = ACTIONS(3858), + [anon_sym_enum] = ACTIONS(3858), + [anon_sym_class] = ACTIONS(3858), + [anon_sym_struct] = ACTIONS(3858), + [anon_sym_union] = ACTIONS(3858), + [anon_sym_typename] = ACTIONS(3858), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3858), + [anon_sym_decltype] = ACTIONS(3858), + [anon_sym_explicit] = ACTIONS(3858), + [anon_sym_private] = ACTIONS(3858), + [anon_sym_template] = ACTIONS(3858), + [anon_sym_operator] = ACTIONS(3858), + [anon_sym_friend] = ACTIONS(3858), + [anon_sym_public] = ACTIONS(3858), + [anon_sym_protected] = ACTIONS(3858), + [anon_sym_static_assert] = ACTIONS(3858), + [anon_sym_LBRACK_COLON] = ACTIONS(3860), + }, + [STATE(3348)] = { + [sym_identifier] = ACTIONS(4281), + [aux_sym_preproc_def_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token2] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4281), + [sym_preproc_directive] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym___extension__] = ACTIONS(4281), + [anon_sym_typedef] = ACTIONS(4281), + [anon_sym_virtual] = ACTIONS(4281), + [anon_sym_extern] = ACTIONS(4281), + [anon_sym___attribute__] = ACTIONS(4281), + [anon_sym___attribute] = ACTIONS(4281), + [anon_sym_using] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4283), + [anon_sym___declspec] = ACTIONS(4281), + [anon_sym___based] = ACTIONS(4281), + [anon_sym_signed] = ACTIONS(4281), + [anon_sym_unsigned] = ACTIONS(4281), + [anon_sym_long] = ACTIONS(4281), + [anon_sym_short] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_static] = ACTIONS(4281), + [anon_sym_register] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym___inline] = ACTIONS(4281), + [anon_sym___inline__] = ACTIONS(4281), + [anon_sym___forceinline] = ACTIONS(4281), + [anon_sym_thread_local] = ACTIONS(4281), + [anon_sym___thread] = ACTIONS(4281), + [anon_sym_const] = ACTIONS(4281), + [anon_sym_constexpr] = ACTIONS(4281), + [anon_sym_volatile] = ACTIONS(4281), + [anon_sym_restrict] = ACTIONS(4281), + [anon_sym___restrict__] = ACTIONS(4281), + [anon_sym__Atomic] = ACTIONS(4281), + [anon_sym__Noreturn] = ACTIONS(4281), + [anon_sym_noreturn] = ACTIONS(4281), + [anon_sym__Nonnull] = ACTIONS(4281), + [anon_sym_mutable] = ACTIONS(4281), + [anon_sym_constinit] = ACTIONS(4281), + [anon_sym_consteval] = ACTIONS(4281), + [anon_sym_alignas] = ACTIONS(4281), + [anon_sym__Alignas] = ACTIONS(4281), + [sym_primitive_type] = ACTIONS(4281), + [anon_sym_enum] = ACTIONS(4281), + [anon_sym_class] = ACTIONS(4281), + [anon_sym_struct] = ACTIONS(4281), + [anon_sym_union] = ACTIONS(4281), + [anon_sym_typename] = ACTIONS(4281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4281), + [anon_sym_decltype] = ACTIONS(4281), + [anon_sym_explicit] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_template] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_friend] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_static_assert] = ACTIONS(4281), + [anon_sym_LBRACK_COLON] = ACTIONS(4283), + }, + [STATE(3349)] = { + [sym_identifier] = ACTIONS(3754), + [aux_sym_preproc_def_token1] = ACTIONS(3754), + [aux_sym_preproc_if_token1] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3754), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3754), + [sym_preproc_directive] = ACTIONS(3754), + [anon_sym_LPAREN2] = ACTIONS(3756), + [anon_sym_TILDE] = ACTIONS(3756), + [anon_sym_STAR] = ACTIONS(3756), + [anon_sym_AMP_AMP] = ACTIONS(3756), + [anon_sym_AMP] = ACTIONS(3754), + [anon_sym_SEMI] = ACTIONS(3756), + [anon_sym___extension__] = ACTIONS(3754), + [anon_sym_typedef] = ACTIONS(3754), + [anon_sym_virtual] = ACTIONS(3754), + [anon_sym_extern] = ACTIONS(3754), + [anon_sym___attribute__] = ACTIONS(3754), + [anon_sym___attribute] = ACTIONS(3754), + [anon_sym_using] = ACTIONS(3754), + [anon_sym_COLON_COLON] = ACTIONS(3756), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3756), + [anon_sym___declspec] = ACTIONS(3754), + [anon_sym___based] = ACTIONS(3754), + [anon_sym_RBRACE] = ACTIONS(3756), + [anon_sym_signed] = ACTIONS(3754), + [anon_sym_unsigned] = ACTIONS(3754), + [anon_sym_long] = ACTIONS(3754), + [anon_sym_short] = ACTIONS(3754), + [anon_sym_LBRACK] = ACTIONS(3754), + [anon_sym_static] = ACTIONS(3754), + [anon_sym_register] = ACTIONS(3754), + [anon_sym_inline] = ACTIONS(3754), + [anon_sym___inline] = ACTIONS(3754), + [anon_sym___inline__] = ACTIONS(3754), + [anon_sym___forceinline] = ACTIONS(3754), + [anon_sym_thread_local] = ACTIONS(3754), + [anon_sym___thread] = ACTIONS(3754), + [anon_sym_const] = ACTIONS(3754), + [anon_sym_constexpr] = ACTIONS(3754), + [anon_sym_volatile] = ACTIONS(3754), + [anon_sym_restrict] = ACTIONS(3754), + [anon_sym___restrict__] = ACTIONS(3754), + [anon_sym__Atomic] = ACTIONS(3754), + [anon_sym__Noreturn] = ACTIONS(3754), + [anon_sym_noreturn] = ACTIONS(3754), + [anon_sym__Nonnull] = ACTIONS(3754), + [anon_sym_mutable] = ACTIONS(3754), + [anon_sym_constinit] = ACTIONS(3754), + [anon_sym_consteval] = ACTIONS(3754), + [anon_sym_alignas] = ACTIONS(3754), + [anon_sym__Alignas] = ACTIONS(3754), + [sym_primitive_type] = ACTIONS(3754), + [anon_sym_enum] = ACTIONS(3754), + [anon_sym_class] = ACTIONS(3754), + [anon_sym_struct] = ACTIONS(3754), + [anon_sym_union] = ACTIONS(3754), + [anon_sym_typename] = ACTIONS(3754), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3754), + [anon_sym_decltype] = ACTIONS(3754), + [anon_sym_explicit] = ACTIONS(3754), + [anon_sym_private] = ACTIONS(3754), + [anon_sym_template] = ACTIONS(3754), + [anon_sym_operator] = ACTIONS(3754), + [anon_sym_friend] = ACTIONS(3754), + [anon_sym_public] = ACTIONS(3754), + [anon_sym_protected] = ACTIONS(3754), + [anon_sym_static_assert] = ACTIONS(3754), + [anon_sym_LBRACK_COLON] = ACTIONS(3756), + }, + [STATE(3350)] = { + [sym_identifier] = ACTIONS(3862), + [aux_sym_preproc_def_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token1] = ACTIONS(3862), + [aux_sym_preproc_if_token2] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3862), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3862), + [sym_preproc_directive] = ACTIONS(3862), + [anon_sym_LPAREN2] = ACTIONS(3864), + [anon_sym_TILDE] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3862), + [anon_sym_SEMI] = ACTIONS(3864), + [anon_sym___extension__] = ACTIONS(3862), + [anon_sym_typedef] = ACTIONS(3862), + [anon_sym_virtual] = ACTIONS(3862), + [anon_sym_extern] = ACTIONS(3862), + [anon_sym___attribute__] = ACTIONS(3862), + [anon_sym___attribute] = ACTIONS(3862), + [anon_sym_using] = ACTIONS(3862), + [anon_sym_COLON_COLON] = ACTIONS(3864), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3864), + [anon_sym___declspec] = ACTIONS(3862), + [anon_sym___based] = ACTIONS(3862), + [anon_sym_signed] = ACTIONS(3862), + [anon_sym_unsigned] = ACTIONS(3862), + [anon_sym_long] = ACTIONS(3862), + [anon_sym_short] = ACTIONS(3862), + [anon_sym_LBRACK] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3862), + [anon_sym_register] = ACTIONS(3862), + [anon_sym_inline] = ACTIONS(3862), + [anon_sym___inline] = ACTIONS(3862), + [anon_sym___inline__] = ACTIONS(3862), + [anon_sym___forceinline] = ACTIONS(3862), + [anon_sym_thread_local] = ACTIONS(3862), + [anon_sym___thread] = ACTIONS(3862), + [anon_sym_const] = ACTIONS(3862), + [anon_sym_constexpr] = ACTIONS(3862), + [anon_sym_volatile] = ACTIONS(3862), + [anon_sym_restrict] = ACTIONS(3862), + [anon_sym___restrict__] = ACTIONS(3862), + [anon_sym__Atomic] = ACTIONS(3862), + [anon_sym__Noreturn] = ACTIONS(3862), + [anon_sym_noreturn] = ACTIONS(3862), + [anon_sym__Nonnull] = ACTIONS(3862), + [anon_sym_mutable] = ACTIONS(3862), + [anon_sym_constinit] = ACTIONS(3862), + [anon_sym_consteval] = ACTIONS(3862), + [anon_sym_alignas] = ACTIONS(3862), + [anon_sym__Alignas] = ACTIONS(3862), + [sym_primitive_type] = ACTIONS(3862), + [anon_sym_enum] = ACTIONS(3862), + [anon_sym_class] = ACTIONS(3862), + [anon_sym_struct] = ACTIONS(3862), + [anon_sym_union] = ACTIONS(3862), + [anon_sym_typename] = ACTIONS(3862), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3862), + [anon_sym_decltype] = ACTIONS(3862), + [anon_sym_explicit] = ACTIONS(3862), + [anon_sym_private] = ACTIONS(3862), + [anon_sym_template] = ACTIONS(3862), + [anon_sym_operator] = ACTIONS(3862), + [anon_sym_friend] = ACTIONS(3862), + [anon_sym_public] = ACTIONS(3862), + [anon_sym_protected] = ACTIONS(3862), + [anon_sym_static_assert] = ACTIONS(3862), + [anon_sym_LBRACK_COLON] = ACTIONS(3864), + }, + [STATE(3351)] = { + [sym_identifier] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token2] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4287), + [anon_sym_TILDE] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_AMP] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym___extension__] = ACTIONS(4285), + [anon_sym_typedef] = ACTIONS(4285), + [anon_sym_virtual] = ACTIONS(4285), + [anon_sym_extern] = ACTIONS(4285), + [anon_sym___attribute__] = ACTIONS(4285), + [anon_sym___attribute] = ACTIONS(4285), + [anon_sym_using] = ACTIONS(4285), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4287), + [anon_sym___declspec] = ACTIONS(4285), + [anon_sym___based] = ACTIONS(4285), + [anon_sym_signed] = ACTIONS(4285), + [anon_sym_unsigned] = ACTIONS(4285), + [anon_sym_long] = ACTIONS(4285), + [anon_sym_short] = ACTIONS(4285), + [anon_sym_LBRACK] = ACTIONS(4285), + [anon_sym_static] = ACTIONS(4285), + [anon_sym_register] = ACTIONS(4285), + [anon_sym_inline] = ACTIONS(4285), + [anon_sym___inline] = ACTIONS(4285), + [anon_sym___inline__] = ACTIONS(4285), + [anon_sym___forceinline] = ACTIONS(4285), + [anon_sym_thread_local] = ACTIONS(4285), + [anon_sym___thread] = ACTIONS(4285), + [anon_sym_const] = ACTIONS(4285), + [anon_sym_constexpr] = ACTIONS(4285), + [anon_sym_volatile] = ACTIONS(4285), + [anon_sym_restrict] = ACTIONS(4285), + [anon_sym___restrict__] = ACTIONS(4285), + [anon_sym__Atomic] = ACTIONS(4285), + [anon_sym__Noreturn] = ACTIONS(4285), + [anon_sym_noreturn] = ACTIONS(4285), + [anon_sym__Nonnull] = ACTIONS(4285), + [anon_sym_mutable] = ACTIONS(4285), + [anon_sym_constinit] = ACTIONS(4285), + [anon_sym_consteval] = ACTIONS(4285), + [anon_sym_alignas] = ACTIONS(4285), + [anon_sym__Alignas] = ACTIONS(4285), + [sym_primitive_type] = ACTIONS(4285), + [anon_sym_enum] = ACTIONS(4285), + [anon_sym_class] = ACTIONS(4285), + [anon_sym_struct] = ACTIONS(4285), + [anon_sym_union] = ACTIONS(4285), + [anon_sym_typename] = ACTIONS(4285), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4285), + [anon_sym_decltype] = ACTIONS(4285), + [anon_sym_explicit] = ACTIONS(4285), + [anon_sym_private] = ACTIONS(4285), + [anon_sym_template] = ACTIONS(4285), + [anon_sym_operator] = ACTIONS(4285), + [anon_sym_friend] = ACTIONS(4285), + [anon_sym_public] = ACTIONS(4285), + [anon_sym_protected] = ACTIONS(4285), + [anon_sym_static_assert] = ACTIONS(4285), + [anon_sym_LBRACK_COLON] = ACTIONS(4287), + }, + [STATE(3352)] = { + [sym_identifier] = ACTIONS(3664), + [aux_sym_preproc_def_token1] = ACTIONS(3664), + [aux_sym_preproc_if_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3664), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3664), + [sym_preproc_directive] = ACTIONS(3664), + [anon_sym_LPAREN2] = ACTIONS(3666), + [anon_sym_TILDE] = ACTIONS(3666), + [anon_sym_STAR] = ACTIONS(3666), + [anon_sym_AMP_AMP] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3664), + [anon_sym_SEMI] = ACTIONS(3666), + [anon_sym___extension__] = ACTIONS(3664), + [anon_sym_typedef] = ACTIONS(3664), + [anon_sym_virtual] = ACTIONS(3664), + [anon_sym_extern] = ACTIONS(3664), + [anon_sym___attribute__] = ACTIONS(3664), + [anon_sym___attribute] = ACTIONS(3664), + [anon_sym_using] = ACTIONS(3664), + [anon_sym_COLON_COLON] = ACTIONS(3666), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3666), + [anon_sym___declspec] = ACTIONS(3664), + [anon_sym___based] = ACTIONS(3664), + [anon_sym_RBRACE] = ACTIONS(3666), + [anon_sym_signed] = ACTIONS(3664), + [anon_sym_unsigned] = ACTIONS(3664), + [anon_sym_long] = ACTIONS(3664), + [anon_sym_short] = ACTIONS(3664), + [anon_sym_LBRACK] = ACTIONS(3664), + [anon_sym_static] = ACTIONS(3664), + [anon_sym_register] = ACTIONS(3664), + [anon_sym_inline] = ACTIONS(3664), + [anon_sym___inline] = ACTIONS(3664), + [anon_sym___inline__] = ACTIONS(3664), + [anon_sym___forceinline] = ACTIONS(3664), + [anon_sym_thread_local] = ACTIONS(3664), + [anon_sym___thread] = ACTIONS(3664), + [anon_sym_const] = ACTIONS(3664), + [anon_sym_constexpr] = ACTIONS(3664), + [anon_sym_volatile] = ACTIONS(3664), + [anon_sym_restrict] = ACTIONS(3664), + [anon_sym___restrict__] = ACTIONS(3664), + [anon_sym__Atomic] = ACTIONS(3664), + [anon_sym__Noreturn] = ACTIONS(3664), + [anon_sym_noreturn] = ACTIONS(3664), + [anon_sym__Nonnull] = ACTIONS(3664), + [anon_sym_mutable] = ACTIONS(3664), + [anon_sym_constinit] = ACTIONS(3664), + [anon_sym_consteval] = ACTIONS(3664), + [anon_sym_alignas] = ACTIONS(3664), + [anon_sym__Alignas] = ACTIONS(3664), + [sym_primitive_type] = ACTIONS(3664), + [anon_sym_enum] = ACTIONS(3664), + [anon_sym_class] = ACTIONS(3664), + [anon_sym_struct] = ACTIONS(3664), + [anon_sym_union] = ACTIONS(3664), + [anon_sym_typename] = ACTIONS(3664), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3664), + [anon_sym_decltype] = ACTIONS(3664), + [anon_sym_explicit] = ACTIONS(3664), + [anon_sym_private] = ACTIONS(3664), + [anon_sym_template] = ACTIONS(3664), + [anon_sym_operator] = ACTIONS(3664), + [anon_sym_friend] = ACTIONS(3664), + [anon_sym_public] = ACTIONS(3664), + [anon_sym_protected] = ACTIONS(3664), + [anon_sym_static_assert] = ACTIONS(3664), + [anon_sym_LBRACK_COLON] = ACTIONS(3666), + }, + [STATE(3353)] = { + [sym_identifier] = ACTIONS(8685), + [aux_sym_preproc_def_token1] = ACTIONS(8685), + [aux_sym_preproc_if_token1] = ACTIONS(8685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8685), + [sym_preproc_directive] = ACTIONS(8685), + [anon_sym_LPAREN2] = ACTIONS(8687), + [anon_sym_TILDE] = ACTIONS(8687), + [anon_sym_STAR] = ACTIONS(8687), + [anon_sym_AMP_AMP] = ACTIONS(8687), + [anon_sym_AMP] = ACTIONS(8685), + [anon_sym_SEMI] = ACTIONS(8687), + [anon_sym___extension__] = ACTIONS(8685), + [anon_sym_typedef] = ACTIONS(8685), + [anon_sym_virtual] = ACTIONS(8685), + [anon_sym_extern] = ACTIONS(8685), + [anon_sym___attribute__] = ACTIONS(8685), + [anon_sym___attribute] = ACTIONS(8685), + [anon_sym_using] = ACTIONS(8685), + [anon_sym_COLON_COLON] = ACTIONS(8687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8687), + [anon_sym___declspec] = ACTIONS(8685), + [anon_sym___based] = ACTIONS(8685), + [anon_sym_RBRACE] = ACTIONS(8687), + [anon_sym_signed] = ACTIONS(8685), + [anon_sym_unsigned] = ACTIONS(8685), + [anon_sym_long] = ACTIONS(8685), + [anon_sym_short] = ACTIONS(8685), + [anon_sym_LBRACK] = ACTIONS(8685), + [anon_sym_static] = ACTIONS(8685), + [anon_sym_register] = ACTIONS(8685), + [anon_sym_inline] = ACTIONS(8685), + [anon_sym___inline] = ACTIONS(8685), + [anon_sym___inline__] = ACTIONS(8685), + [anon_sym___forceinline] = ACTIONS(8685), + [anon_sym_thread_local] = ACTIONS(8685), + [anon_sym___thread] = ACTIONS(8685), + [anon_sym_const] = ACTIONS(8685), + [anon_sym_constexpr] = ACTIONS(8685), + [anon_sym_volatile] = ACTIONS(8685), + [anon_sym_restrict] = ACTIONS(8685), + [anon_sym___restrict__] = ACTIONS(8685), + [anon_sym__Atomic] = ACTIONS(8685), + [anon_sym__Noreturn] = ACTIONS(8685), + [anon_sym_noreturn] = ACTIONS(8685), + [anon_sym__Nonnull] = ACTIONS(8685), + [anon_sym_mutable] = ACTIONS(8685), + [anon_sym_constinit] = ACTIONS(8685), + [anon_sym_consteval] = ACTIONS(8685), + [anon_sym_alignas] = ACTIONS(8685), + [anon_sym__Alignas] = ACTIONS(8685), + [sym_primitive_type] = ACTIONS(8685), + [anon_sym_enum] = ACTIONS(8685), + [anon_sym_class] = ACTIONS(8685), + [anon_sym_struct] = ACTIONS(8685), + [anon_sym_union] = ACTIONS(8685), + [anon_sym_typename] = ACTIONS(8685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8685), + [anon_sym_decltype] = ACTIONS(8685), + [anon_sym_explicit] = ACTIONS(8685), + [anon_sym_private] = ACTIONS(8685), + [anon_sym_template] = ACTIONS(8685), + [anon_sym_operator] = ACTIONS(8685), + [anon_sym_friend] = ACTIONS(8685), + [anon_sym_public] = ACTIONS(8685), + [anon_sym_protected] = ACTIONS(8685), + [anon_sym_static_assert] = ACTIONS(8685), + [anon_sym_LBRACK_COLON] = ACTIONS(8687), + }, + [STATE(3354)] = { + [sym_identifier] = ACTIONS(3722), + [aux_sym_preproc_def_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token1] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3722), + [sym_preproc_directive] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_SEMI] = ACTIONS(3724), + [anon_sym___extension__] = ACTIONS(3722), + [anon_sym_typedef] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym___attribute] = ACTIONS(3722), + [anon_sym_using] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3724), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym_RBRACE] = ACTIONS(3724), + [anon_sym_signed] = ACTIONS(3722), + [anon_sym_unsigned] = ACTIONS(3722), + [anon_sym_long] = ACTIONS(3722), + [anon_sym_short] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym___inline] = ACTIONS(3722), + [anon_sym___inline__] = ACTIONS(3722), + [anon_sym___forceinline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym___thread] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym___restrict__] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym__Noreturn] = ACTIONS(3722), + [anon_sym_noreturn] = ACTIONS(3722), + [anon_sym__Nonnull] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_alignas] = ACTIONS(3722), + [anon_sym__Alignas] = ACTIONS(3722), + [sym_primitive_type] = ACTIONS(3722), + [anon_sym_enum] = ACTIONS(3722), + [anon_sym_class] = ACTIONS(3722), + [anon_sym_struct] = ACTIONS(3722), + [anon_sym_union] = ACTIONS(3722), + [anon_sym_typename] = ACTIONS(3722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_explicit] = ACTIONS(3722), + [anon_sym_private] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + [anon_sym_friend] = ACTIONS(3722), + [anon_sym_public] = ACTIONS(3722), + [anon_sym_protected] = ACTIONS(3722), + [anon_sym_static_assert] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(3724), + }, + [STATE(3355)] = { + [sym_identifier] = ACTIONS(3877), + [aux_sym_preproc_def_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token1] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3877), + [sym_preproc_directive] = ACTIONS(3877), + [anon_sym_LPAREN2] = ACTIONS(3879), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_STAR] = ACTIONS(3879), + [anon_sym_AMP_AMP] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_SEMI] = ACTIONS(3879), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_typedef] = ACTIONS(3877), + [anon_sym_virtual] = ACTIONS(3877), + [anon_sym_extern] = ACTIONS(3877), + [anon_sym___attribute__] = ACTIONS(3877), + [anon_sym___attribute] = ACTIONS(3877), + [anon_sym_using] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3879), + [anon_sym___declspec] = ACTIONS(3877), + [anon_sym___based] = ACTIONS(3877), + [anon_sym_RBRACE] = ACTIONS(3879), + [anon_sym_signed] = ACTIONS(3877), + [anon_sym_unsigned] = ACTIONS(3877), + [anon_sym_long] = ACTIONS(3877), + [anon_sym_short] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_static] = ACTIONS(3877), + [anon_sym_register] = ACTIONS(3877), + [anon_sym_inline] = ACTIONS(3877), + [anon_sym___inline] = ACTIONS(3877), + [anon_sym___inline__] = ACTIONS(3877), + [anon_sym___forceinline] = ACTIONS(3877), + [anon_sym_thread_local] = ACTIONS(3877), + [anon_sym___thread] = ACTIONS(3877), + [anon_sym_const] = ACTIONS(3877), + [anon_sym_constexpr] = ACTIONS(3877), + [anon_sym_volatile] = ACTIONS(3877), + [anon_sym_restrict] = ACTIONS(3877), + [anon_sym___restrict__] = ACTIONS(3877), + [anon_sym__Atomic] = ACTIONS(3877), + [anon_sym__Noreturn] = ACTIONS(3877), + [anon_sym_noreturn] = ACTIONS(3877), + [anon_sym__Nonnull] = ACTIONS(3877), + [anon_sym_mutable] = ACTIONS(3877), + [anon_sym_constinit] = ACTIONS(3877), + [anon_sym_consteval] = ACTIONS(3877), + [anon_sym_alignas] = ACTIONS(3877), + [anon_sym__Alignas] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(3877), + [anon_sym_enum] = ACTIONS(3877), + [anon_sym_class] = ACTIONS(3877), + [anon_sym_struct] = ACTIONS(3877), + [anon_sym_union] = ACTIONS(3877), + [anon_sym_typename] = ACTIONS(3877), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3877), + [anon_sym_decltype] = ACTIONS(3877), + [anon_sym_explicit] = ACTIONS(3877), + [anon_sym_private] = ACTIONS(3877), + [anon_sym_template] = ACTIONS(3877), + [anon_sym_operator] = ACTIONS(3877), + [anon_sym_friend] = ACTIONS(3877), + [anon_sym_public] = ACTIONS(3877), + [anon_sym_protected] = ACTIONS(3877), + [anon_sym_static_assert] = ACTIONS(3877), + [anon_sym_LBRACK_COLON] = ACTIONS(3879), + }, + [STATE(3356)] = { + [sym_identifier] = ACTIONS(3746), + [aux_sym_preproc_def_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token1] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3746), + [sym_preproc_directive] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_TILDE] = ACTIONS(3748), + [anon_sym_STAR] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym___extension__] = ACTIONS(3746), + [anon_sym_typedef] = ACTIONS(3746), + [anon_sym_virtual] = ACTIONS(3746), + [anon_sym_extern] = ACTIONS(3746), + [anon_sym___attribute__] = ACTIONS(3746), + [anon_sym___attribute] = ACTIONS(3746), + [anon_sym_using] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3748), + [anon_sym___declspec] = ACTIONS(3746), + [anon_sym___based] = ACTIONS(3746), + [anon_sym_RBRACE] = ACTIONS(3748), + [anon_sym_signed] = ACTIONS(3746), + [anon_sym_unsigned] = ACTIONS(3746), + [anon_sym_long] = ACTIONS(3746), + [anon_sym_short] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_static] = ACTIONS(3746), + [anon_sym_register] = ACTIONS(3746), + [anon_sym_inline] = ACTIONS(3746), + [anon_sym___inline] = ACTIONS(3746), + [anon_sym___inline__] = ACTIONS(3746), + [anon_sym___forceinline] = ACTIONS(3746), + [anon_sym_thread_local] = ACTIONS(3746), + [anon_sym___thread] = ACTIONS(3746), + [anon_sym_const] = ACTIONS(3746), + [anon_sym_constexpr] = ACTIONS(3746), + [anon_sym_volatile] = ACTIONS(3746), + [anon_sym_restrict] = ACTIONS(3746), + [anon_sym___restrict__] = ACTIONS(3746), + [anon_sym__Atomic] = ACTIONS(3746), + [anon_sym__Noreturn] = ACTIONS(3746), + [anon_sym_noreturn] = ACTIONS(3746), + [anon_sym__Nonnull] = ACTIONS(3746), + [anon_sym_mutable] = ACTIONS(3746), + [anon_sym_constinit] = ACTIONS(3746), + [anon_sym_consteval] = ACTIONS(3746), + [anon_sym_alignas] = ACTIONS(3746), + [anon_sym__Alignas] = ACTIONS(3746), + [sym_primitive_type] = ACTIONS(3746), + [anon_sym_enum] = ACTIONS(3746), + [anon_sym_class] = ACTIONS(3746), + [anon_sym_struct] = ACTIONS(3746), + [anon_sym_union] = ACTIONS(3746), + [anon_sym_typename] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3746), + [anon_sym_decltype] = ACTIONS(3746), + [anon_sym_explicit] = ACTIONS(3746), + [anon_sym_private] = ACTIONS(3746), + [anon_sym_template] = ACTIONS(3746), + [anon_sym_operator] = ACTIONS(3746), + [anon_sym_friend] = ACTIONS(3746), + [anon_sym_public] = ACTIONS(3746), + [anon_sym_protected] = ACTIONS(3746), + [anon_sym_static_assert] = ACTIONS(3746), + [anon_sym_LBRACK_COLON] = ACTIONS(3748), + }, + [STATE(3357)] = { + [sym_identifier] = ACTIONS(3750), + [aux_sym_preproc_def_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token1] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3750), + [sym_preproc_directive] = ACTIONS(3750), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym___extension__] = ACTIONS(3750), + [anon_sym_typedef] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym___attribute] = ACTIONS(3750), + [anon_sym_using] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym_RBRACE] = ACTIONS(3752), + [anon_sym_signed] = ACTIONS(3750), + [anon_sym_unsigned] = ACTIONS(3750), + [anon_sym_long] = ACTIONS(3750), + [anon_sym_short] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym___inline] = ACTIONS(3750), + [anon_sym___inline__] = ACTIONS(3750), + [anon_sym___forceinline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym___thread] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym___restrict__] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym__Noreturn] = ACTIONS(3750), + [anon_sym_noreturn] = ACTIONS(3750), + [anon_sym__Nonnull] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_alignas] = ACTIONS(3750), + [anon_sym__Alignas] = ACTIONS(3750), + [sym_primitive_type] = ACTIONS(3750), + [anon_sym_enum] = ACTIONS(3750), + [anon_sym_class] = ACTIONS(3750), + [anon_sym_struct] = ACTIONS(3750), + [anon_sym_union] = ACTIONS(3750), + [anon_sym_typename] = ACTIONS(3750), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_private] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + [anon_sym_friend] = ACTIONS(3750), + [anon_sym_public] = ACTIONS(3750), + [anon_sym_protected] = ACTIONS(3750), + [anon_sym_static_assert] = ACTIONS(3750), + [anon_sym_LBRACK_COLON] = ACTIONS(3752), + }, + [STATE(3358)] = { + [sym_identifier] = ACTIONS(3522), + [aux_sym_preproc_def_token1] = ACTIONS(3522), + [aux_sym_preproc_if_token1] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3522), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3522), + [sym_preproc_directive] = ACTIONS(3522), + [anon_sym_LPAREN2] = ACTIONS(3524), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3524), + [anon_sym_AMP] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym___extension__] = ACTIONS(3522), + [anon_sym_typedef] = ACTIONS(3522), + [anon_sym_virtual] = ACTIONS(3522), + [anon_sym_extern] = ACTIONS(3522), + [anon_sym___attribute__] = ACTIONS(3522), + [anon_sym___attribute] = ACTIONS(3522), + [anon_sym_using] = ACTIONS(3522), + [anon_sym_COLON_COLON] = ACTIONS(3524), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3524), + [anon_sym___declspec] = ACTIONS(3522), + [anon_sym___based] = ACTIONS(3522), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_signed] = ACTIONS(3522), + [anon_sym_unsigned] = ACTIONS(3522), + [anon_sym_long] = ACTIONS(3522), + [anon_sym_short] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3522), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_register] = ACTIONS(3522), + [anon_sym_inline] = ACTIONS(3522), + [anon_sym___inline] = ACTIONS(3522), + [anon_sym___inline__] = ACTIONS(3522), + [anon_sym___forceinline] = ACTIONS(3522), + [anon_sym_thread_local] = ACTIONS(3522), + [anon_sym___thread] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_constexpr] = ACTIONS(3522), + [anon_sym_volatile] = ACTIONS(3522), + [anon_sym_restrict] = ACTIONS(3522), + [anon_sym___restrict__] = ACTIONS(3522), + [anon_sym__Atomic] = ACTIONS(3522), + [anon_sym__Noreturn] = ACTIONS(3522), + [anon_sym_noreturn] = ACTIONS(3522), + [anon_sym__Nonnull] = ACTIONS(3522), + [anon_sym_mutable] = ACTIONS(3522), + [anon_sym_constinit] = ACTIONS(3522), + [anon_sym_consteval] = ACTIONS(3522), + [anon_sym_alignas] = ACTIONS(3522), + [anon_sym__Alignas] = ACTIONS(3522), + [sym_primitive_type] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_struct] = ACTIONS(3522), + [anon_sym_union] = ACTIONS(3522), + [anon_sym_typename] = ACTIONS(3522), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3522), + [anon_sym_decltype] = ACTIONS(3522), + [anon_sym_explicit] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_template] = ACTIONS(3522), + [anon_sym_operator] = ACTIONS(3522), + [anon_sym_friend] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_static_assert] = ACTIONS(3522), + [anon_sym_LBRACK_COLON] = ACTIONS(3524), + }, + [STATE(3359)] = { + [sym_identifier] = ACTIONS(3758), + [aux_sym_preproc_def_token1] = ACTIONS(3758), + [aux_sym_preproc_if_token1] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3758), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3758), + [sym_preproc_directive] = ACTIONS(3758), + [anon_sym_LPAREN2] = ACTIONS(3760), + [anon_sym_TILDE] = ACTIONS(3760), + [anon_sym_STAR] = ACTIONS(3760), + [anon_sym_AMP_AMP] = ACTIONS(3760), + [anon_sym_AMP] = ACTIONS(3758), + [anon_sym_SEMI] = ACTIONS(3760), + [anon_sym___extension__] = ACTIONS(3758), + [anon_sym_typedef] = ACTIONS(3758), + [anon_sym_virtual] = ACTIONS(3758), + [anon_sym_extern] = ACTIONS(3758), + [anon_sym___attribute__] = ACTIONS(3758), + [anon_sym___attribute] = ACTIONS(3758), + [anon_sym_using] = ACTIONS(3758), + [anon_sym_COLON_COLON] = ACTIONS(3760), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3760), + [anon_sym___declspec] = ACTIONS(3758), + [anon_sym___based] = ACTIONS(3758), + [anon_sym_RBRACE] = ACTIONS(3760), + [anon_sym_signed] = ACTIONS(3758), + [anon_sym_unsigned] = ACTIONS(3758), + [anon_sym_long] = ACTIONS(3758), + [anon_sym_short] = ACTIONS(3758), + [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_static] = ACTIONS(3758), + [anon_sym_register] = ACTIONS(3758), + [anon_sym_inline] = ACTIONS(3758), + [anon_sym___inline] = ACTIONS(3758), + [anon_sym___inline__] = ACTIONS(3758), + [anon_sym___forceinline] = ACTIONS(3758), + [anon_sym_thread_local] = ACTIONS(3758), + [anon_sym___thread] = ACTIONS(3758), + [anon_sym_const] = ACTIONS(3758), + [anon_sym_constexpr] = ACTIONS(3758), + [anon_sym_volatile] = ACTIONS(3758), + [anon_sym_restrict] = ACTIONS(3758), + [anon_sym___restrict__] = ACTIONS(3758), + [anon_sym__Atomic] = ACTIONS(3758), + [anon_sym__Noreturn] = ACTIONS(3758), + [anon_sym_noreturn] = ACTIONS(3758), + [anon_sym__Nonnull] = ACTIONS(3758), + [anon_sym_mutable] = ACTIONS(3758), + [anon_sym_constinit] = ACTIONS(3758), + [anon_sym_consteval] = ACTIONS(3758), + [anon_sym_alignas] = ACTIONS(3758), + [anon_sym__Alignas] = ACTIONS(3758), + [sym_primitive_type] = ACTIONS(3758), + [anon_sym_enum] = ACTIONS(3758), + [anon_sym_class] = ACTIONS(3758), + [anon_sym_struct] = ACTIONS(3758), + [anon_sym_union] = ACTIONS(3758), + [anon_sym_typename] = ACTIONS(3758), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3758), + [anon_sym_decltype] = ACTIONS(3758), + [anon_sym_explicit] = ACTIONS(3758), + [anon_sym_private] = ACTIONS(3758), + [anon_sym_template] = ACTIONS(3758), + [anon_sym_operator] = ACTIONS(3758), + [anon_sym_friend] = ACTIONS(3758), + [anon_sym_public] = ACTIONS(3758), + [anon_sym_protected] = ACTIONS(3758), + [anon_sym_static_assert] = ACTIONS(3758), + [anon_sym_LBRACK_COLON] = ACTIONS(3760), + }, + [STATE(3360)] = { + [sym_identifier] = ACTIONS(9111), + [anon_sym_LPAREN2] = ACTIONS(9113), + [anon_sym_TILDE] = ACTIONS(9113), + [anon_sym_STAR] = ACTIONS(9113), + [anon_sym_AMP_AMP] = ACTIONS(9113), + [anon_sym_AMP] = ACTIONS(9111), + [anon_sym___extension__] = ACTIONS(9111), + [anon_sym_virtual] = ACTIONS(9111), + [anon_sym_extern] = ACTIONS(9111), + [anon_sym___attribute__] = ACTIONS(9111), + [anon_sym___attribute] = ACTIONS(9111), + [anon_sym_using] = ACTIONS(9111), + [anon_sym_COLON_COLON] = ACTIONS(9113), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9113), + [anon_sym___declspec] = ACTIONS(9111), + [anon_sym___based] = ACTIONS(9111), + [anon_sym___cdecl] = ACTIONS(9111), + [anon_sym___clrcall] = ACTIONS(9111), + [anon_sym___stdcall] = ACTIONS(9111), + [anon_sym___fastcall] = ACTIONS(9111), + [anon_sym___thiscall] = ACTIONS(9111), + [anon_sym___vectorcall] = ACTIONS(9111), + [anon_sym_LBRACE] = ACTIONS(9113), + [anon_sym_signed] = ACTIONS(9111), + [anon_sym_unsigned] = ACTIONS(9111), + [anon_sym_long] = ACTIONS(9111), + [anon_sym_short] = ACTIONS(9111), + [anon_sym_LBRACK] = ACTIONS(9111), + [anon_sym_static] = ACTIONS(9111), + [anon_sym_register] = ACTIONS(9111), + [anon_sym_inline] = ACTIONS(9111), + [anon_sym___inline] = ACTIONS(9111), + [anon_sym___inline__] = ACTIONS(9111), + [anon_sym___forceinline] = ACTIONS(9111), + [anon_sym_thread_local] = ACTIONS(9111), + [anon_sym___thread] = ACTIONS(9111), + [anon_sym_const] = ACTIONS(9111), + [anon_sym_constexpr] = ACTIONS(9111), + [anon_sym_volatile] = ACTIONS(9111), + [anon_sym_restrict] = ACTIONS(9111), + [anon_sym___restrict__] = ACTIONS(9111), + [anon_sym__Atomic] = ACTIONS(9111), + [anon_sym__Noreturn] = ACTIONS(9111), + [anon_sym_noreturn] = ACTIONS(9111), + [anon_sym__Nonnull] = ACTIONS(9111), + [anon_sym_mutable] = ACTIONS(9111), + [anon_sym_constinit] = ACTIONS(9111), + [anon_sym_consteval] = ACTIONS(9111), + [anon_sym_alignas] = ACTIONS(9111), + [anon_sym__Alignas] = ACTIONS(9111), + [sym_primitive_type] = ACTIONS(9111), + [anon_sym_enum] = ACTIONS(9111), + [anon_sym_class] = ACTIONS(9111), + [anon_sym_struct] = ACTIONS(9111), + [anon_sym_union] = ACTIONS(9111), + [anon_sym_typename] = ACTIONS(9111), + [anon_sym_DASH_GT] = ACTIONS(9113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9111), + [anon_sym_decltype] = ACTIONS(9111), + [anon_sym_explicit] = ACTIONS(9111), + [anon_sym_template] = ACTIONS(9111), + [anon_sym_operator] = ACTIONS(9111), + [anon_sym_friend] = ACTIONS(9111), + [anon_sym_noexcept] = ACTIONS(9111), + [anon_sym_throw] = ACTIONS(9111), + [anon_sym_concept] = ACTIONS(9111), + [anon_sym_requires] = ACTIONS(9111), + [anon_sym_LBRACK_COLON] = ACTIONS(9113), + }, + [STATE(3361)] = { + [sym_identifier] = ACTIONS(4317), + [aux_sym_preproc_def_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token2] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4317), + [sym_preproc_directive] = ACTIONS(4317), + [anon_sym_LPAREN2] = ACTIONS(4319), + [anon_sym_TILDE] = ACTIONS(4319), + [anon_sym_STAR] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym___extension__] = ACTIONS(4317), + [anon_sym_typedef] = ACTIONS(4317), + [anon_sym_virtual] = ACTIONS(4317), + [anon_sym_extern] = ACTIONS(4317), + [anon_sym___attribute__] = ACTIONS(4317), + [anon_sym___attribute] = ACTIONS(4317), + [anon_sym_using] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4319), + [anon_sym___declspec] = ACTIONS(4317), + [anon_sym___based] = ACTIONS(4317), + [anon_sym_signed] = ACTIONS(4317), + [anon_sym_unsigned] = ACTIONS(4317), + [anon_sym_long] = ACTIONS(4317), + [anon_sym_short] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [anon_sym_static] = ACTIONS(4317), + [anon_sym_register] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym___inline] = ACTIONS(4317), + [anon_sym___inline__] = ACTIONS(4317), + [anon_sym___forceinline] = ACTIONS(4317), + [anon_sym_thread_local] = ACTIONS(4317), + [anon_sym___thread] = ACTIONS(4317), + [anon_sym_const] = ACTIONS(4317), + [anon_sym_constexpr] = ACTIONS(4317), + [anon_sym_volatile] = ACTIONS(4317), + [anon_sym_restrict] = ACTIONS(4317), + [anon_sym___restrict__] = ACTIONS(4317), + [anon_sym__Atomic] = ACTIONS(4317), + [anon_sym__Noreturn] = ACTIONS(4317), + [anon_sym_noreturn] = ACTIONS(4317), + [anon_sym__Nonnull] = ACTIONS(4317), + [anon_sym_mutable] = ACTIONS(4317), + [anon_sym_constinit] = ACTIONS(4317), + [anon_sym_consteval] = ACTIONS(4317), + [anon_sym_alignas] = ACTIONS(4317), + [anon_sym__Alignas] = ACTIONS(4317), + [sym_primitive_type] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_class] = ACTIONS(4317), + [anon_sym_struct] = ACTIONS(4317), + [anon_sym_union] = ACTIONS(4317), + [anon_sym_typename] = ACTIONS(4317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4317), + [anon_sym_decltype] = ACTIONS(4317), + [anon_sym_explicit] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_template] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_friend] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_static_assert] = ACTIONS(4317), + [anon_sym_LBRACK_COLON] = ACTIONS(4319), + }, + [STATE(3362)] = { + [sym_identifier] = ACTIONS(8812), + [aux_sym_preproc_def_token1] = ACTIONS(8812), + [aux_sym_preproc_if_token1] = ACTIONS(8812), + [aux_sym_preproc_if_token2] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8812), + [sym_preproc_directive] = ACTIONS(8812), + [anon_sym_LPAREN2] = ACTIONS(8814), + [anon_sym_TILDE] = ACTIONS(8814), + [anon_sym_STAR] = ACTIONS(8814), + [anon_sym_AMP_AMP] = ACTIONS(8814), + [anon_sym_AMP] = ACTIONS(8812), + [anon_sym_SEMI] = ACTIONS(8814), + [anon_sym___extension__] = ACTIONS(8812), + [anon_sym_typedef] = ACTIONS(8812), + [anon_sym_virtual] = ACTIONS(8812), + [anon_sym_extern] = ACTIONS(8812), + [anon_sym___attribute__] = ACTIONS(8812), + [anon_sym___attribute] = ACTIONS(8812), + [anon_sym_using] = ACTIONS(8812), + [anon_sym_COLON_COLON] = ACTIONS(8814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8814), + [anon_sym___declspec] = ACTIONS(8812), + [anon_sym___based] = ACTIONS(8812), + [anon_sym_signed] = ACTIONS(8812), + [anon_sym_unsigned] = ACTIONS(8812), + [anon_sym_long] = ACTIONS(8812), + [anon_sym_short] = ACTIONS(8812), + [anon_sym_LBRACK] = ACTIONS(8812), + [anon_sym_static] = ACTIONS(8812), + [anon_sym_register] = ACTIONS(8812), + [anon_sym_inline] = ACTIONS(8812), + [anon_sym___inline] = ACTIONS(8812), + [anon_sym___inline__] = ACTIONS(8812), + [anon_sym___forceinline] = ACTIONS(8812), + [anon_sym_thread_local] = ACTIONS(8812), + [anon_sym___thread] = ACTIONS(8812), + [anon_sym_const] = ACTIONS(8812), + [anon_sym_constexpr] = ACTIONS(8812), + [anon_sym_volatile] = ACTIONS(8812), + [anon_sym_restrict] = ACTIONS(8812), + [anon_sym___restrict__] = ACTIONS(8812), + [anon_sym__Atomic] = ACTIONS(8812), + [anon_sym__Noreturn] = ACTIONS(8812), + [anon_sym_noreturn] = ACTIONS(8812), + [anon_sym__Nonnull] = ACTIONS(8812), + [anon_sym_mutable] = ACTIONS(8812), + [anon_sym_constinit] = ACTIONS(8812), + [anon_sym_consteval] = ACTIONS(8812), + [anon_sym_alignas] = ACTIONS(8812), + [anon_sym__Alignas] = ACTIONS(8812), + [sym_primitive_type] = ACTIONS(8812), + [anon_sym_enum] = ACTIONS(8812), + [anon_sym_class] = ACTIONS(8812), + [anon_sym_struct] = ACTIONS(8812), + [anon_sym_union] = ACTIONS(8812), + [anon_sym_typename] = ACTIONS(8812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8812), + [anon_sym_decltype] = ACTIONS(8812), + [anon_sym_explicit] = ACTIONS(8812), + [anon_sym_private] = ACTIONS(8812), + [anon_sym_template] = ACTIONS(8812), + [anon_sym_operator] = ACTIONS(8812), + [anon_sym_friend] = ACTIONS(8812), + [anon_sym_public] = ACTIONS(8812), + [anon_sym_protected] = ACTIONS(8812), + [anon_sym_static_assert] = ACTIONS(8812), + [anon_sym_LBRACK_COLON] = ACTIONS(8814), + }, + [STATE(3363)] = { + [sym_identifier] = ACTIONS(8677), + [aux_sym_preproc_def_token1] = ACTIONS(8677), + [aux_sym_preproc_if_token1] = ACTIONS(8677), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8677), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8677), + [sym_preproc_directive] = ACTIONS(8677), + [anon_sym_LPAREN2] = ACTIONS(8679), + [anon_sym_TILDE] = ACTIONS(8679), + [anon_sym_STAR] = ACTIONS(8679), + [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_AMP] = ACTIONS(8677), + [anon_sym_SEMI] = ACTIONS(8679), + [anon_sym___extension__] = ACTIONS(8677), + [anon_sym_typedef] = ACTIONS(8677), + [anon_sym_virtual] = ACTIONS(8677), + [anon_sym_extern] = ACTIONS(8677), + [anon_sym___attribute__] = ACTIONS(8677), + [anon_sym___attribute] = ACTIONS(8677), + [anon_sym_using] = ACTIONS(8677), + [anon_sym_COLON_COLON] = ACTIONS(8679), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8679), + [anon_sym___declspec] = ACTIONS(8677), + [anon_sym___based] = ACTIONS(8677), + [anon_sym_RBRACE] = ACTIONS(8679), + [anon_sym_signed] = ACTIONS(8677), + [anon_sym_unsigned] = ACTIONS(8677), + [anon_sym_long] = ACTIONS(8677), + [anon_sym_short] = ACTIONS(8677), + [anon_sym_LBRACK] = ACTIONS(8677), + [anon_sym_static] = ACTIONS(8677), + [anon_sym_register] = ACTIONS(8677), + [anon_sym_inline] = ACTIONS(8677), + [anon_sym___inline] = ACTIONS(8677), + [anon_sym___inline__] = ACTIONS(8677), + [anon_sym___forceinline] = ACTIONS(8677), + [anon_sym_thread_local] = ACTIONS(8677), + [anon_sym___thread] = ACTIONS(8677), + [anon_sym_const] = ACTIONS(8677), + [anon_sym_constexpr] = ACTIONS(8677), + [anon_sym_volatile] = ACTIONS(8677), + [anon_sym_restrict] = ACTIONS(8677), + [anon_sym___restrict__] = ACTIONS(8677), + [anon_sym__Atomic] = ACTIONS(8677), + [anon_sym__Noreturn] = ACTIONS(8677), + [anon_sym_noreturn] = ACTIONS(8677), + [anon_sym__Nonnull] = ACTIONS(8677), + [anon_sym_mutable] = ACTIONS(8677), + [anon_sym_constinit] = ACTIONS(8677), + [anon_sym_consteval] = ACTIONS(8677), + [anon_sym_alignas] = ACTIONS(8677), + [anon_sym__Alignas] = ACTIONS(8677), + [sym_primitive_type] = ACTIONS(8677), + [anon_sym_enum] = ACTIONS(8677), + [anon_sym_class] = ACTIONS(8677), + [anon_sym_struct] = ACTIONS(8677), + [anon_sym_union] = ACTIONS(8677), + [anon_sym_typename] = ACTIONS(8677), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8677), + [anon_sym_decltype] = ACTIONS(8677), + [anon_sym_explicit] = ACTIONS(8677), + [anon_sym_private] = ACTIONS(8677), + [anon_sym_template] = ACTIONS(8677), + [anon_sym_operator] = ACTIONS(8677), + [anon_sym_friend] = ACTIONS(8677), + [anon_sym_public] = ACTIONS(8677), + [anon_sym_protected] = ACTIONS(8677), + [anon_sym_static_assert] = ACTIONS(8677), + [anon_sym_LBRACK_COLON] = ACTIONS(8679), + }, + [STATE(3364)] = { + [sym_identifier] = ACTIONS(4102), + [aux_sym_preproc_def_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token1] = ACTIONS(4102), + [aux_sym_preproc_if_token2] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4102), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4102), + [sym_preproc_directive] = ACTIONS(4102), + [anon_sym_LPAREN2] = ACTIONS(4104), + [anon_sym_TILDE] = ACTIONS(4104), + [anon_sym_STAR] = ACTIONS(4104), + [anon_sym_AMP_AMP] = ACTIONS(4104), + [anon_sym_AMP] = ACTIONS(4102), + [anon_sym_SEMI] = ACTIONS(4104), + [anon_sym___extension__] = ACTIONS(4102), + [anon_sym_typedef] = ACTIONS(4102), + [anon_sym_virtual] = ACTIONS(4102), + [anon_sym_extern] = ACTIONS(4102), + [anon_sym___attribute__] = ACTIONS(4102), + [anon_sym___attribute] = ACTIONS(4102), + [anon_sym_using] = ACTIONS(4102), + [anon_sym_COLON_COLON] = ACTIONS(4104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4104), + [anon_sym___declspec] = ACTIONS(4102), + [anon_sym___based] = ACTIONS(4102), + [anon_sym_signed] = ACTIONS(4102), + [anon_sym_unsigned] = ACTIONS(4102), + [anon_sym_long] = ACTIONS(4102), + [anon_sym_short] = ACTIONS(4102), + [anon_sym_LBRACK] = ACTIONS(4102), + [anon_sym_static] = ACTIONS(4102), + [anon_sym_register] = ACTIONS(4102), + [anon_sym_inline] = ACTIONS(4102), + [anon_sym___inline] = ACTIONS(4102), + [anon_sym___inline__] = ACTIONS(4102), + [anon_sym___forceinline] = ACTIONS(4102), + [anon_sym_thread_local] = ACTIONS(4102), + [anon_sym___thread] = ACTIONS(4102), + [anon_sym_const] = ACTIONS(4102), + [anon_sym_constexpr] = ACTIONS(4102), + [anon_sym_volatile] = ACTIONS(4102), + [anon_sym_restrict] = ACTIONS(4102), + [anon_sym___restrict__] = ACTIONS(4102), + [anon_sym__Atomic] = ACTIONS(4102), + [anon_sym__Noreturn] = ACTIONS(4102), + [anon_sym_noreturn] = ACTIONS(4102), + [anon_sym__Nonnull] = ACTIONS(4102), + [anon_sym_mutable] = ACTIONS(4102), + [anon_sym_constinit] = ACTIONS(4102), + [anon_sym_consteval] = ACTIONS(4102), + [anon_sym_alignas] = ACTIONS(4102), + [anon_sym__Alignas] = ACTIONS(4102), + [sym_primitive_type] = ACTIONS(4102), + [anon_sym_enum] = ACTIONS(4102), + [anon_sym_class] = ACTIONS(4102), + [anon_sym_struct] = ACTIONS(4102), + [anon_sym_union] = ACTIONS(4102), + [anon_sym_typename] = ACTIONS(4102), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4102), + [anon_sym_decltype] = ACTIONS(4102), + [anon_sym_explicit] = ACTIONS(4102), + [anon_sym_private] = ACTIONS(4102), + [anon_sym_template] = ACTIONS(4102), + [anon_sym_operator] = ACTIONS(4102), + [anon_sym_friend] = ACTIONS(4102), + [anon_sym_public] = ACTIONS(4102), + [anon_sym_protected] = ACTIONS(4102), + [anon_sym_static_assert] = ACTIONS(4102), + [anon_sym_LBRACK_COLON] = ACTIONS(4104), + }, + [STATE(3365)] = { + [sym_identifier] = ACTIONS(8685), + [aux_sym_preproc_def_token1] = ACTIONS(8685), + [aux_sym_preproc_if_token1] = ACTIONS(8685), + [aux_sym_preproc_if_token2] = ACTIONS(8685), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8685), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8685), + [sym_preproc_directive] = ACTIONS(8685), + [anon_sym_LPAREN2] = ACTIONS(8687), + [anon_sym_TILDE] = ACTIONS(8687), + [anon_sym_STAR] = ACTIONS(8687), + [anon_sym_AMP_AMP] = ACTIONS(8687), + [anon_sym_AMP] = ACTIONS(8685), + [anon_sym_SEMI] = ACTIONS(8687), + [anon_sym___extension__] = ACTIONS(8685), + [anon_sym_typedef] = ACTIONS(8685), + [anon_sym_virtual] = ACTIONS(8685), + [anon_sym_extern] = ACTIONS(8685), + [anon_sym___attribute__] = ACTIONS(8685), + [anon_sym___attribute] = ACTIONS(8685), + [anon_sym_using] = ACTIONS(8685), + [anon_sym_COLON_COLON] = ACTIONS(8687), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8687), + [anon_sym___declspec] = ACTIONS(8685), + [anon_sym___based] = ACTIONS(8685), + [anon_sym_signed] = ACTIONS(8685), + [anon_sym_unsigned] = ACTIONS(8685), + [anon_sym_long] = ACTIONS(8685), + [anon_sym_short] = ACTIONS(8685), + [anon_sym_LBRACK] = ACTIONS(8685), + [anon_sym_static] = ACTIONS(8685), + [anon_sym_register] = ACTIONS(8685), + [anon_sym_inline] = ACTIONS(8685), + [anon_sym___inline] = ACTIONS(8685), + [anon_sym___inline__] = ACTIONS(8685), + [anon_sym___forceinline] = ACTIONS(8685), + [anon_sym_thread_local] = ACTIONS(8685), + [anon_sym___thread] = ACTIONS(8685), + [anon_sym_const] = ACTIONS(8685), + [anon_sym_constexpr] = ACTIONS(8685), + [anon_sym_volatile] = ACTIONS(8685), + [anon_sym_restrict] = ACTIONS(8685), + [anon_sym___restrict__] = ACTIONS(8685), + [anon_sym__Atomic] = ACTIONS(8685), + [anon_sym__Noreturn] = ACTIONS(8685), + [anon_sym_noreturn] = ACTIONS(8685), + [anon_sym__Nonnull] = ACTIONS(8685), + [anon_sym_mutable] = ACTIONS(8685), + [anon_sym_constinit] = ACTIONS(8685), + [anon_sym_consteval] = ACTIONS(8685), + [anon_sym_alignas] = ACTIONS(8685), + [anon_sym__Alignas] = ACTIONS(8685), + [sym_primitive_type] = ACTIONS(8685), + [anon_sym_enum] = ACTIONS(8685), + [anon_sym_class] = ACTIONS(8685), + [anon_sym_struct] = ACTIONS(8685), + [anon_sym_union] = ACTIONS(8685), + [anon_sym_typename] = ACTIONS(8685), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8685), + [anon_sym_decltype] = ACTIONS(8685), + [anon_sym_explicit] = ACTIONS(8685), + [anon_sym_private] = ACTIONS(8685), + [anon_sym_template] = ACTIONS(8685), + [anon_sym_operator] = ACTIONS(8685), + [anon_sym_friend] = ACTIONS(8685), + [anon_sym_public] = ACTIONS(8685), + [anon_sym_protected] = ACTIONS(8685), + [anon_sym_static_assert] = ACTIONS(8685), + [anon_sym_LBRACK_COLON] = ACTIONS(8687), + }, + [STATE(3366)] = { + [sym_identifier] = ACTIONS(4239), + [aux_sym_preproc_def_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token1] = ACTIONS(4239), + [aux_sym_preproc_if_token2] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4239), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4239), + [sym_preproc_directive] = ACTIONS(4239), + [anon_sym_LPAREN2] = ACTIONS(4241), + [anon_sym_TILDE] = ACTIONS(4241), + [anon_sym_STAR] = ACTIONS(4241), + [anon_sym_AMP_AMP] = ACTIONS(4241), + [anon_sym_AMP] = ACTIONS(4239), + [anon_sym_SEMI] = ACTIONS(4241), + [anon_sym___extension__] = ACTIONS(4239), + [anon_sym_typedef] = ACTIONS(4239), + [anon_sym_virtual] = ACTIONS(4239), + [anon_sym_extern] = ACTIONS(4239), + [anon_sym___attribute__] = ACTIONS(4239), + [anon_sym___attribute] = ACTIONS(4239), + [anon_sym_using] = ACTIONS(4239), + [anon_sym_COLON_COLON] = ACTIONS(4241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4241), + [anon_sym___declspec] = ACTIONS(4239), + [anon_sym___based] = ACTIONS(4239), + [anon_sym_signed] = ACTIONS(4239), + [anon_sym_unsigned] = ACTIONS(4239), + [anon_sym_long] = ACTIONS(4239), + [anon_sym_short] = ACTIONS(4239), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_static] = ACTIONS(4239), + [anon_sym_register] = ACTIONS(4239), + [anon_sym_inline] = ACTIONS(4239), + [anon_sym___inline] = ACTIONS(4239), + [anon_sym___inline__] = ACTIONS(4239), + [anon_sym___forceinline] = ACTIONS(4239), + [anon_sym_thread_local] = ACTIONS(4239), + [anon_sym___thread] = ACTIONS(4239), + [anon_sym_const] = ACTIONS(4239), + [anon_sym_constexpr] = ACTIONS(4239), + [anon_sym_volatile] = ACTIONS(4239), + [anon_sym_restrict] = ACTIONS(4239), + [anon_sym___restrict__] = ACTIONS(4239), + [anon_sym__Atomic] = ACTIONS(4239), + [anon_sym__Noreturn] = ACTIONS(4239), + [anon_sym_noreturn] = ACTIONS(4239), + [anon_sym__Nonnull] = ACTIONS(4239), + [anon_sym_mutable] = ACTIONS(4239), + [anon_sym_constinit] = ACTIONS(4239), + [anon_sym_consteval] = ACTIONS(4239), + [anon_sym_alignas] = ACTIONS(4239), + [anon_sym__Alignas] = ACTIONS(4239), + [sym_primitive_type] = ACTIONS(4239), + [anon_sym_enum] = ACTIONS(4239), + [anon_sym_class] = ACTIONS(4239), + [anon_sym_struct] = ACTIONS(4239), + [anon_sym_union] = ACTIONS(4239), + [anon_sym_typename] = ACTIONS(4239), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4239), + [anon_sym_decltype] = ACTIONS(4239), + [anon_sym_explicit] = ACTIONS(4239), + [anon_sym_private] = ACTIONS(4239), + [anon_sym_template] = ACTIONS(4239), + [anon_sym_operator] = ACTIONS(4239), + [anon_sym_friend] = ACTIONS(4239), + [anon_sym_public] = ACTIONS(4239), + [anon_sym_protected] = ACTIONS(4239), + [anon_sym_static_assert] = ACTIONS(4239), + [anon_sym_LBRACK_COLON] = ACTIONS(4241), + }, + [STATE(3367)] = { + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_friend] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), + }, + [STATE(3368)] = { + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token2] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_friend] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), }, [STATE(3369)] = { - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym_RBRACE] = ACTIONS(4102), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_private] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_friend] = ACTIONS(4100), - [anon_sym_public] = ACTIONS(4100), - [anon_sym_protected] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token2] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_friend] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), }, [STATE(3370)] = { - [sym_identifier] = ACTIONS(4104), - [aux_sym_preproc_def_token1] = ACTIONS(4104), - [aux_sym_preproc_if_token1] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4104), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4104), - [sym_preproc_directive] = ACTIONS(4104), - [anon_sym_LPAREN2] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_AMP] = ACTIONS(4104), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym___extension__] = ACTIONS(4104), - [anon_sym_typedef] = ACTIONS(4104), - [anon_sym_virtual] = ACTIONS(4104), - [anon_sym_extern] = ACTIONS(4104), - [anon_sym___attribute__] = ACTIONS(4104), - [anon_sym___attribute] = ACTIONS(4104), - [anon_sym_using] = ACTIONS(4104), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4106), - [anon_sym___declspec] = ACTIONS(4104), - [anon_sym___based] = ACTIONS(4104), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_signed] = ACTIONS(4104), - [anon_sym_unsigned] = ACTIONS(4104), - [anon_sym_long] = ACTIONS(4104), - [anon_sym_short] = ACTIONS(4104), - [anon_sym_LBRACK] = ACTIONS(4104), - [anon_sym_static] = ACTIONS(4104), - [anon_sym_register] = ACTIONS(4104), - [anon_sym_inline] = ACTIONS(4104), - [anon_sym___inline] = ACTIONS(4104), - [anon_sym___inline__] = ACTIONS(4104), - [anon_sym___forceinline] = ACTIONS(4104), - [anon_sym_thread_local] = ACTIONS(4104), - [anon_sym___thread] = ACTIONS(4104), - [anon_sym_const] = ACTIONS(4104), - [anon_sym_constexpr] = ACTIONS(4104), - [anon_sym_volatile] = ACTIONS(4104), - [anon_sym_restrict] = ACTIONS(4104), - [anon_sym___restrict__] = ACTIONS(4104), - [anon_sym__Atomic] = ACTIONS(4104), - [anon_sym__Noreturn] = ACTIONS(4104), - [anon_sym_noreturn] = ACTIONS(4104), - [anon_sym__Nonnull] = ACTIONS(4104), - [anon_sym_mutable] = ACTIONS(4104), - [anon_sym_constinit] = ACTIONS(4104), - [anon_sym_consteval] = ACTIONS(4104), - [anon_sym_alignas] = ACTIONS(4104), - [anon_sym__Alignas] = ACTIONS(4104), - [sym_primitive_type] = ACTIONS(4104), - [anon_sym_enum] = ACTIONS(4104), - [anon_sym_class] = ACTIONS(4104), - [anon_sym_struct] = ACTIONS(4104), - [anon_sym_union] = ACTIONS(4104), - [anon_sym_typename] = ACTIONS(4104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4104), - [anon_sym_decltype] = ACTIONS(4104), - [anon_sym_explicit] = ACTIONS(4104), - [anon_sym_private] = ACTIONS(4104), - [anon_sym_template] = ACTIONS(4104), - [anon_sym_operator] = ACTIONS(4104), - [anon_sym_friend] = ACTIONS(4104), - [anon_sym_public] = ACTIONS(4104), - [anon_sym_protected] = ACTIONS(4104), - [anon_sym_static_assert] = ACTIONS(4104), - [anon_sym_LBRACK_COLON] = ACTIONS(4106), + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token2] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_friend] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), }, [STATE(3371)] = { - [sym_identifier] = ACTIONS(4108), - [aux_sym_preproc_def_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token1] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_LPAREN2] = ACTIONS(4110), - [anon_sym_TILDE] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym___extension__] = ACTIONS(4108), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_virtual] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym___attribute__] = ACTIONS(4108), - [anon_sym___attribute] = ACTIONS(4108), - [anon_sym_using] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), - [anon_sym___declspec] = ACTIONS(4108), - [anon_sym___based] = ACTIONS(4108), - [anon_sym_RBRACE] = ACTIONS(4110), - [anon_sym_signed] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4108), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym___inline] = ACTIONS(4108), - [anon_sym___inline__] = ACTIONS(4108), - [anon_sym___forceinline] = ACTIONS(4108), - [anon_sym_thread_local] = ACTIONS(4108), - [anon_sym___thread] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym___restrict__] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym__Noreturn] = ACTIONS(4108), - [anon_sym_noreturn] = ACTIONS(4108), - [anon_sym__Nonnull] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_constinit] = ACTIONS(4108), - [anon_sym_consteval] = ACTIONS(4108), - [anon_sym_alignas] = ACTIONS(4108), - [anon_sym__Alignas] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_class] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4108), - [anon_sym_decltype] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_private] = ACTIONS(4108), - [anon_sym_template] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_friend] = ACTIONS(4108), - [anon_sym_public] = ACTIONS(4108), - [anon_sym_protected] = ACTIONS(4108), - [anon_sym_static_assert] = ACTIONS(4108), - [anon_sym_LBRACK_COLON] = ACTIONS(4110), + [sym_identifier] = ACTIONS(3822), + [aux_sym_preproc_def_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token1] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3822), + [sym_preproc_directive] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3824), + [anon_sym___extension__] = ACTIONS(3822), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_virtual] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym___attribute__] = ACTIONS(3822), + [anon_sym___attribute] = ACTIONS(3822), + [anon_sym_using] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3824), + [anon_sym___declspec] = ACTIONS(3822), + [anon_sym___based] = ACTIONS(3822), + [anon_sym_RBRACE] = ACTIONS(3824), + [anon_sym_signed] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3822), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_inline] = ACTIONS(3822), + [anon_sym___inline] = ACTIONS(3822), + [anon_sym___inline__] = ACTIONS(3822), + [anon_sym___forceinline] = ACTIONS(3822), + [anon_sym_thread_local] = ACTIONS(3822), + [anon_sym___thread] = ACTIONS(3822), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_constexpr] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym___restrict__] = ACTIONS(3822), + [anon_sym__Atomic] = ACTIONS(3822), + [anon_sym__Noreturn] = ACTIONS(3822), + [anon_sym_noreturn] = ACTIONS(3822), + [anon_sym__Nonnull] = ACTIONS(3822), + [anon_sym_mutable] = ACTIONS(3822), + [anon_sym_constinit] = ACTIONS(3822), + [anon_sym_consteval] = ACTIONS(3822), + [anon_sym_alignas] = ACTIONS(3822), + [anon_sym__Alignas] = ACTIONS(3822), + [sym_primitive_type] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_class] = ACTIONS(3822), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_typename] = ACTIONS(3822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3822), + [anon_sym_decltype] = ACTIONS(3822), + [anon_sym_explicit] = ACTIONS(3822), + [anon_sym_private] = ACTIONS(3822), + [anon_sym_template] = ACTIONS(3822), + [anon_sym_operator] = ACTIONS(3822), + [anon_sym_friend] = ACTIONS(3822), + [anon_sym_public] = ACTIONS(3822), + [anon_sym_protected] = ACTIONS(3822), + [anon_sym_static_assert] = ACTIONS(3822), + [anon_sym_LBRACK_COLON] = ACTIONS(3824), }, [STATE(3372)] = { - [sym_identifier] = ACTIONS(3604), - [aux_sym_preproc_def_token1] = ACTIONS(3604), - [aux_sym_preproc_if_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3604), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3604), - [sym_preproc_directive] = ACTIONS(3604), - [anon_sym_LPAREN2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3604), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym___extension__] = ACTIONS(3604), - [anon_sym_typedef] = ACTIONS(3604), - [anon_sym_virtual] = ACTIONS(3604), - [anon_sym_extern] = ACTIONS(3604), - [anon_sym___attribute__] = ACTIONS(3604), - [anon_sym___attribute] = ACTIONS(3604), - [anon_sym_using] = ACTIONS(3604), - [anon_sym_COLON_COLON] = ACTIONS(3606), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3606), - [anon_sym___declspec] = ACTIONS(3604), - [anon_sym___based] = ACTIONS(3604), - [anon_sym_RBRACE] = ACTIONS(3606), - [anon_sym_signed] = ACTIONS(3604), - [anon_sym_unsigned] = ACTIONS(3604), - [anon_sym_long] = ACTIONS(3604), - [anon_sym_short] = ACTIONS(3604), - [anon_sym_LBRACK] = ACTIONS(3604), - [anon_sym_static] = ACTIONS(3604), - [anon_sym_register] = ACTIONS(3604), - [anon_sym_inline] = ACTIONS(3604), - [anon_sym___inline] = ACTIONS(3604), - [anon_sym___inline__] = ACTIONS(3604), - [anon_sym___forceinline] = ACTIONS(3604), - [anon_sym_thread_local] = ACTIONS(3604), - [anon_sym___thread] = ACTIONS(3604), - [anon_sym_const] = ACTIONS(3604), - [anon_sym_constexpr] = ACTIONS(3604), - [anon_sym_volatile] = ACTIONS(3604), - [anon_sym_restrict] = ACTIONS(3604), - [anon_sym___restrict__] = ACTIONS(3604), - [anon_sym__Atomic] = ACTIONS(3604), - [anon_sym__Noreturn] = ACTIONS(3604), - [anon_sym_noreturn] = ACTIONS(3604), - [anon_sym__Nonnull] = ACTIONS(3604), - [anon_sym_mutable] = ACTIONS(3604), - [anon_sym_constinit] = ACTIONS(3604), - [anon_sym_consteval] = ACTIONS(3604), - [anon_sym_alignas] = ACTIONS(3604), - [anon_sym__Alignas] = ACTIONS(3604), - [sym_primitive_type] = ACTIONS(3604), - [anon_sym_enum] = ACTIONS(3604), - [anon_sym_class] = ACTIONS(3604), - [anon_sym_struct] = ACTIONS(3604), - [anon_sym_union] = ACTIONS(3604), - [anon_sym_typename] = ACTIONS(3604), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3604), - [anon_sym_decltype] = ACTIONS(3604), - [anon_sym_explicit] = ACTIONS(3604), - [anon_sym_private] = ACTIONS(3604), - [anon_sym_template] = ACTIONS(3604), - [anon_sym_operator] = ACTIONS(3604), - [anon_sym_friend] = ACTIONS(3604), - [anon_sym_public] = ACTIONS(3604), - [anon_sym_protected] = ACTIONS(3604), - [anon_sym_static_assert] = ACTIONS(3604), - [anon_sym_LBRACK_COLON] = ACTIONS(3606), + [sym_identifier] = ACTIONS(8816), + [aux_sym_preproc_def_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8816), + [sym_preproc_directive] = ACTIONS(8816), + [anon_sym_LPAREN2] = ACTIONS(8818), + [anon_sym_TILDE] = ACTIONS(8818), + [anon_sym_STAR] = ACTIONS(8818), + [anon_sym_AMP_AMP] = ACTIONS(8818), + [anon_sym_AMP] = ACTIONS(8816), + [anon_sym_SEMI] = ACTIONS(8818), + [anon_sym___extension__] = ACTIONS(8816), + [anon_sym_typedef] = ACTIONS(8816), + [anon_sym_virtual] = ACTIONS(8816), + [anon_sym_extern] = ACTIONS(8816), + [anon_sym___attribute__] = ACTIONS(8816), + [anon_sym___attribute] = ACTIONS(8816), + [anon_sym_using] = ACTIONS(8816), + [anon_sym_COLON_COLON] = ACTIONS(8818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8818), + [anon_sym___declspec] = ACTIONS(8816), + [anon_sym___based] = ACTIONS(8816), + [anon_sym_RBRACE] = ACTIONS(8818), + [anon_sym_signed] = ACTIONS(8816), + [anon_sym_unsigned] = ACTIONS(8816), + [anon_sym_long] = ACTIONS(8816), + [anon_sym_short] = ACTIONS(8816), + [anon_sym_LBRACK] = ACTIONS(8816), + [anon_sym_static] = ACTIONS(8816), + [anon_sym_register] = ACTIONS(8816), + [anon_sym_inline] = ACTIONS(8816), + [anon_sym___inline] = ACTIONS(8816), + [anon_sym___inline__] = ACTIONS(8816), + [anon_sym___forceinline] = ACTIONS(8816), + [anon_sym_thread_local] = ACTIONS(8816), + [anon_sym___thread] = ACTIONS(8816), + [anon_sym_const] = ACTIONS(8816), + [anon_sym_constexpr] = ACTIONS(8816), + [anon_sym_volatile] = ACTIONS(8816), + [anon_sym_restrict] = ACTIONS(8816), + [anon_sym___restrict__] = ACTIONS(8816), + [anon_sym__Atomic] = ACTIONS(8816), + [anon_sym__Noreturn] = ACTIONS(8816), + [anon_sym_noreturn] = ACTIONS(8816), + [anon_sym__Nonnull] = ACTIONS(8816), + [anon_sym_mutable] = ACTIONS(8816), + [anon_sym_constinit] = ACTIONS(8816), + [anon_sym_consteval] = ACTIONS(8816), + [anon_sym_alignas] = ACTIONS(8816), + [anon_sym__Alignas] = ACTIONS(8816), + [sym_primitive_type] = ACTIONS(8816), + [anon_sym_enum] = ACTIONS(8816), + [anon_sym_class] = ACTIONS(8816), + [anon_sym_struct] = ACTIONS(8816), + [anon_sym_union] = ACTIONS(8816), + [anon_sym_typename] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8816), + [anon_sym_decltype] = ACTIONS(8816), + [anon_sym_explicit] = ACTIONS(8816), + [anon_sym_private] = ACTIONS(8816), + [anon_sym_template] = ACTIONS(8816), + [anon_sym_operator] = ACTIONS(8816), + [anon_sym_friend] = ACTIONS(8816), + [anon_sym_public] = ACTIONS(8816), + [anon_sym_protected] = ACTIONS(8816), + [anon_sym_static_assert] = ACTIONS(8816), + [anon_sym_LBRACK_COLON] = ACTIONS(8818), }, [STATE(3373)] = { - [sym_identifier] = ACTIONS(7158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [aux_sym_preproc_if_token2] = ACTIONS(7160), - [aux_sym_preproc_else_token1] = ACTIONS(7160), - [aux_sym_preproc_elif_token1] = ACTIONS(7158), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7160), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7160), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7160), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7160), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7160), - [anon_sym_GT_GT] = ACTIONS(7160), - [anon_sym_SEMI] = ACTIONS(7160), - [anon_sym___extension__] = ACTIONS(7158), - [anon_sym___attribute__] = ACTIONS(7158), - [anon_sym___attribute] = ACTIONS(7158), - [anon_sym_COLON] = ACTIONS(7158), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7160), - [anon_sym_LBRACE] = ACTIONS(7160), - [anon_sym_RBRACE] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7160), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7158), - [anon_sym_volatile] = ACTIONS(7158), - [anon_sym_restrict] = ACTIONS(7158), - [anon_sym___restrict__] = ACTIONS(7158), - [anon_sym__Atomic] = ACTIONS(7158), - [anon_sym__Noreturn] = ACTIONS(7158), - [anon_sym_noreturn] = ACTIONS(7158), - [anon_sym__Nonnull] = ACTIONS(7158), - [anon_sym_mutable] = ACTIONS(7158), - [anon_sym_constinit] = ACTIONS(7158), - [anon_sym_consteval] = ACTIONS(7158), - [anon_sym_alignas] = ACTIONS(7158), - [anon_sym__Alignas] = ACTIONS(7158), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7158), - [anon_sym_and] = ACTIONS(7158), - [anon_sym_bitor] = ACTIONS(7158), - [anon_sym_xor] = ACTIONS(7158), - [anon_sym_bitand] = ACTIONS(7158), - [anon_sym_not_eq] = ACTIONS(7158), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7160), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7158), - [anon_sym_override] = ACTIONS(7158), - [anon_sym_requires] = ACTIONS(7158), - [anon_sym_COLON_RBRACK] = ACTIONS(7160), + [sym_identifier] = ACTIONS(8729), + [aux_sym_preproc_def_token1] = ACTIONS(8729), + [aux_sym_preproc_if_token1] = ACTIONS(8729), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8729), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8729), + [sym_preproc_directive] = ACTIONS(8729), + [anon_sym_LPAREN2] = ACTIONS(8731), + [anon_sym_TILDE] = ACTIONS(8731), + [anon_sym_STAR] = ACTIONS(8731), + [anon_sym_AMP_AMP] = ACTIONS(8731), + [anon_sym_AMP] = ACTIONS(8729), + [anon_sym_SEMI] = ACTIONS(8731), + [anon_sym___extension__] = ACTIONS(8729), + [anon_sym_typedef] = ACTIONS(8729), + [anon_sym_virtual] = ACTIONS(8729), + [anon_sym_extern] = ACTIONS(8729), + [anon_sym___attribute__] = ACTIONS(8729), + [anon_sym___attribute] = ACTIONS(8729), + [anon_sym_using] = ACTIONS(8729), + [anon_sym_COLON_COLON] = ACTIONS(8731), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8731), + [anon_sym___declspec] = ACTIONS(8729), + [anon_sym___based] = ACTIONS(8729), + [anon_sym_RBRACE] = ACTIONS(8731), + [anon_sym_signed] = ACTIONS(8729), + [anon_sym_unsigned] = ACTIONS(8729), + [anon_sym_long] = ACTIONS(8729), + [anon_sym_short] = ACTIONS(8729), + [anon_sym_LBRACK] = ACTIONS(8729), + [anon_sym_static] = ACTIONS(8729), + [anon_sym_register] = ACTIONS(8729), + [anon_sym_inline] = ACTIONS(8729), + [anon_sym___inline] = ACTIONS(8729), + [anon_sym___inline__] = ACTIONS(8729), + [anon_sym___forceinline] = ACTIONS(8729), + [anon_sym_thread_local] = ACTIONS(8729), + [anon_sym___thread] = ACTIONS(8729), + [anon_sym_const] = ACTIONS(8729), + [anon_sym_constexpr] = ACTIONS(8729), + [anon_sym_volatile] = ACTIONS(8729), + [anon_sym_restrict] = ACTIONS(8729), + [anon_sym___restrict__] = ACTIONS(8729), + [anon_sym__Atomic] = ACTIONS(8729), + [anon_sym__Noreturn] = ACTIONS(8729), + [anon_sym_noreturn] = ACTIONS(8729), + [anon_sym__Nonnull] = ACTIONS(8729), + [anon_sym_mutable] = ACTIONS(8729), + [anon_sym_constinit] = ACTIONS(8729), + [anon_sym_consteval] = ACTIONS(8729), + [anon_sym_alignas] = ACTIONS(8729), + [anon_sym__Alignas] = ACTIONS(8729), + [sym_primitive_type] = ACTIONS(8729), + [anon_sym_enum] = ACTIONS(8729), + [anon_sym_class] = ACTIONS(8729), + [anon_sym_struct] = ACTIONS(8729), + [anon_sym_union] = ACTIONS(8729), + [anon_sym_typename] = ACTIONS(8729), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8729), + [anon_sym_decltype] = ACTIONS(8729), + [anon_sym_explicit] = ACTIONS(8729), + [anon_sym_private] = ACTIONS(8729), + [anon_sym_template] = ACTIONS(8729), + [anon_sym_operator] = ACTIONS(8729), + [anon_sym_friend] = ACTIONS(8729), + [anon_sym_public] = ACTIONS(8729), + [anon_sym_protected] = ACTIONS(8729), + [anon_sym_static_assert] = ACTIONS(8729), + [anon_sym_LBRACK_COLON] = ACTIONS(8731), }, [STATE(3374)] = { - [sym_identifier] = ACTIONS(4112), - [aux_sym_preproc_def_token1] = ACTIONS(4112), - [aux_sym_preproc_if_token1] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4112), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4112), - [sym_preproc_directive] = ACTIONS(4112), - [anon_sym_LPAREN2] = ACTIONS(4114), - [anon_sym_TILDE] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_AMP_AMP] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4112), - [anon_sym_SEMI] = ACTIONS(4114), - [anon_sym___extension__] = ACTIONS(4112), - [anon_sym_typedef] = ACTIONS(4112), - [anon_sym_virtual] = ACTIONS(4112), - [anon_sym_extern] = ACTIONS(4112), - [anon_sym___attribute__] = ACTIONS(4112), - [anon_sym___attribute] = ACTIONS(4112), - [anon_sym_using] = ACTIONS(4112), - [anon_sym_COLON_COLON] = ACTIONS(4114), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4114), - [anon_sym___declspec] = ACTIONS(4112), - [anon_sym___based] = ACTIONS(4112), - [anon_sym_RBRACE] = ACTIONS(4114), - [anon_sym_signed] = ACTIONS(4112), - [anon_sym_unsigned] = ACTIONS(4112), - [anon_sym_long] = ACTIONS(4112), - [anon_sym_short] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_static] = ACTIONS(4112), - [anon_sym_register] = ACTIONS(4112), - [anon_sym_inline] = ACTIONS(4112), - [anon_sym___inline] = ACTIONS(4112), - [anon_sym___inline__] = ACTIONS(4112), - [anon_sym___forceinline] = ACTIONS(4112), - [anon_sym_thread_local] = ACTIONS(4112), - [anon_sym___thread] = ACTIONS(4112), - [anon_sym_const] = ACTIONS(4112), - [anon_sym_constexpr] = ACTIONS(4112), - [anon_sym_volatile] = ACTIONS(4112), - [anon_sym_restrict] = ACTIONS(4112), - [anon_sym___restrict__] = ACTIONS(4112), - [anon_sym__Atomic] = ACTIONS(4112), - [anon_sym__Noreturn] = ACTIONS(4112), - [anon_sym_noreturn] = ACTIONS(4112), - [anon_sym__Nonnull] = ACTIONS(4112), - [anon_sym_mutable] = ACTIONS(4112), - [anon_sym_constinit] = ACTIONS(4112), - [anon_sym_consteval] = ACTIONS(4112), - [anon_sym_alignas] = ACTIONS(4112), - [anon_sym__Alignas] = ACTIONS(4112), - [sym_primitive_type] = ACTIONS(4112), - [anon_sym_enum] = ACTIONS(4112), - [anon_sym_class] = ACTIONS(4112), - [anon_sym_struct] = ACTIONS(4112), - [anon_sym_union] = ACTIONS(4112), - [anon_sym_typename] = ACTIONS(4112), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4112), - [anon_sym_decltype] = ACTIONS(4112), - [anon_sym_explicit] = ACTIONS(4112), - [anon_sym_private] = ACTIONS(4112), - [anon_sym_template] = ACTIONS(4112), - [anon_sym_operator] = ACTIONS(4112), - [anon_sym_friend] = ACTIONS(4112), - [anon_sym_public] = ACTIONS(4112), - [anon_sym_protected] = ACTIONS(4112), - [anon_sym_static_assert] = ACTIONS(4112), - [anon_sym_LBRACK_COLON] = ACTIONS(4114), + [sym_identifier] = ACTIONS(4293), + [aux_sym_preproc_def_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token1] = ACTIONS(4293), + [aux_sym_preproc_if_token2] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4293), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4293), + [sym_preproc_directive] = ACTIONS(4293), + [anon_sym_LPAREN2] = ACTIONS(4295), + [anon_sym_TILDE] = ACTIONS(4295), + [anon_sym_STAR] = ACTIONS(4295), + [anon_sym_AMP_AMP] = ACTIONS(4295), + [anon_sym_AMP] = ACTIONS(4293), + [anon_sym_SEMI] = ACTIONS(4295), + [anon_sym___extension__] = ACTIONS(4293), + [anon_sym_typedef] = ACTIONS(4293), + [anon_sym_virtual] = ACTIONS(4293), + [anon_sym_extern] = ACTIONS(4293), + [anon_sym___attribute__] = ACTIONS(4293), + [anon_sym___attribute] = ACTIONS(4293), + [anon_sym_using] = ACTIONS(4293), + [anon_sym_COLON_COLON] = ACTIONS(4295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4295), + [anon_sym___declspec] = ACTIONS(4293), + [anon_sym___based] = ACTIONS(4293), + [anon_sym_signed] = ACTIONS(4293), + [anon_sym_unsigned] = ACTIONS(4293), + [anon_sym_long] = ACTIONS(4293), + [anon_sym_short] = ACTIONS(4293), + [anon_sym_LBRACK] = ACTIONS(4293), + [anon_sym_static] = ACTIONS(4293), + [anon_sym_register] = ACTIONS(4293), + [anon_sym_inline] = ACTIONS(4293), + [anon_sym___inline] = ACTIONS(4293), + [anon_sym___inline__] = ACTIONS(4293), + [anon_sym___forceinline] = ACTIONS(4293), + [anon_sym_thread_local] = ACTIONS(4293), + [anon_sym___thread] = ACTIONS(4293), + [anon_sym_const] = ACTIONS(4293), + [anon_sym_constexpr] = ACTIONS(4293), + [anon_sym_volatile] = ACTIONS(4293), + [anon_sym_restrict] = ACTIONS(4293), + [anon_sym___restrict__] = ACTIONS(4293), + [anon_sym__Atomic] = ACTIONS(4293), + [anon_sym__Noreturn] = ACTIONS(4293), + [anon_sym_noreturn] = ACTIONS(4293), + [anon_sym__Nonnull] = ACTIONS(4293), + [anon_sym_mutable] = ACTIONS(4293), + [anon_sym_constinit] = ACTIONS(4293), + [anon_sym_consteval] = ACTIONS(4293), + [anon_sym_alignas] = ACTIONS(4293), + [anon_sym__Alignas] = ACTIONS(4293), + [sym_primitive_type] = ACTIONS(4293), + [anon_sym_enum] = ACTIONS(4293), + [anon_sym_class] = ACTIONS(4293), + [anon_sym_struct] = ACTIONS(4293), + [anon_sym_union] = ACTIONS(4293), + [anon_sym_typename] = ACTIONS(4293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4293), + [anon_sym_decltype] = ACTIONS(4293), + [anon_sym_explicit] = ACTIONS(4293), + [anon_sym_private] = ACTIONS(4293), + [anon_sym_template] = ACTIONS(4293), + [anon_sym_operator] = ACTIONS(4293), + [anon_sym_friend] = ACTIONS(4293), + [anon_sym_public] = ACTIONS(4293), + [anon_sym_protected] = ACTIONS(4293), + [anon_sym_static_assert] = ACTIONS(4293), + [anon_sym_LBRACK_COLON] = ACTIONS(4295), }, [STATE(3375)] = { - [sym_type_qualifier] = STATE(3377), - [sym_alignas_qualifier] = STATE(2726), - [aux_sym__type_definition_type_repeat1] = STATE(3377), - [aux_sym_sized_type_specifier_repeat1] = STATE(3753), - [sym_identifier] = ACTIONS(8873), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [aux_sym_preproc_if_token2] = ACTIONS(7249), - [aux_sym_preproc_else_token1] = ACTIONS(7249), - [aux_sym_preproc_elif_token1] = ACTIONS(7251), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7249), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(8123), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(9127), - [anon_sym_unsigned] = ACTIONS(9127), - [anon_sym_long] = ACTIONS(9127), - [anon_sym_short] = ACTIONS(9127), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8123), - [anon_sym_volatile] = ACTIONS(8123), - [anon_sym_restrict] = ACTIONS(8123), - [anon_sym___restrict__] = ACTIONS(8123), - [anon_sym__Atomic] = ACTIONS(8123), - [anon_sym__Noreturn] = ACTIONS(8123), - [anon_sym_noreturn] = ACTIONS(8123), - [anon_sym__Nonnull] = ACTIONS(8123), - [anon_sym_mutable] = ACTIONS(8123), - [anon_sym_constinit] = ACTIONS(8123), - [anon_sym_consteval] = ACTIONS(8123), - [anon_sym_alignas] = ACTIONS(9051), - [anon_sym__Alignas] = ACTIONS(9051), - [sym_primitive_type] = ACTIONS(8878), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(4297), + [aux_sym_preproc_def_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token1] = ACTIONS(4297), + [aux_sym_preproc_if_token2] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4297), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4297), + [sym_preproc_directive] = ACTIONS(4297), + [anon_sym_LPAREN2] = ACTIONS(4299), + [anon_sym_TILDE] = ACTIONS(4299), + [anon_sym_STAR] = ACTIONS(4299), + [anon_sym_AMP_AMP] = ACTIONS(4299), + [anon_sym_AMP] = ACTIONS(4297), + [anon_sym_SEMI] = ACTIONS(4299), + [anon_sym___extension__] = ACTIONS(4297), + [anon_sym_typedef] = ACTIONS(4297), + [anon_sym_virtual] = ACTIONS(4297), + [anon_sym_extern] = ACTIONS(4297), + [anon_sym___attribute__] = ACTIONS(4297), + [anon_sym___attribute] = ACTIONS(4297), + [anon_sym_using] = ACTIONS(4297), + [anon_sym_COLON_COLON] = ACTIONS(4299), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4299), + [anon_sym___declspec] = ACTIONS(4297), + [anon_sym___based] = ACTIONS(4297), + [anon_sym_signed] = ACTIONS(4297), + [anon_sym_unsigned] = ACTIONS(4297), + [anon_sym_long] = ACTIONS(4297), + [anon_sym_short] = ACTIONS(4297), + [anon_sym_LBRACK] = ACTIONS(4297), + [anon_sym_static] = ACTIONS(4297), + [anon_sym_register] = ACTIONS(4297), + [anon_sym_inline] = ACTIONS(4297), + [anon_sym___inline] = ACTIONS(4297), + [anon_sym___inline__] = ACTIONS(4297), + [anon_sym___forceinline] = ACTIONS(4297), + [anon_sym_thread_local] = ACTIONS(4297), + [anon_sym___thread] = ACTIONS(4297), + [anon_sym_const] = ACTIONS(4297), + [anon_sym_constexpr] = ACTIONS(4297), + [anon_sym_volatile] = ACTIONS(4297), + [anon_sym_restrict] = ACTIONS(4297), + [anon_sym___restrict__] = ACTIONS(4297), + [anon_sym__Atomic] = ACTIONS(4297), + [anon_sym__Noreturn] = ACTIONS(4297), + [anon_sym_noreturn] = ACTIONS(4297), + [anon_sym__Nonnull] = ACTIONS(4297), + [anon_sym_mutable] = ACTIONS(4297), + [anon_sym_constinit] = ACTIONS(4297), + [anon_sym_consteval] = ACTIONS(4297), + [anon_sym_alignas] = ACTIONS(4297), + [anon_sym__Alignas] = ACTIONS(4297), + [sym_primitive_type] = ACTIONS(4297), + [anon_sym_enum] = ACTIONS(4297), + [anon_sym_class] = ACTIONS(4297), + [anon_sym_struct] = ACTIONS(4297), + [anon_sym_union] = ACTIONS(4297), + [anon_sym_typename] = ACTIONS(4297), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4297), + [anon_sym_decltype] = ACTIONS(4297), + [anon_sym_explicit] = ACTIONS(4297), + [anon_sym_private] = ACTIONS(4297), + [anon_sym_template] = ACTIONS(4297), + [anon_sym_operator] = ACTIONS(4297), + [anon_sym_friend] = ACTIONS(4297), + [anon_sym_public] = ACTIONS(4297), + [anon_sym_protected] = ACTIONS(4297), + [anon_sym_static_assert] = ACTIONS(4297), + [anon_sym_LBRACK_COLON] = ACTIONS(4299), }, [STATE(3376)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), - [anon_sym_RPAREN] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6603), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6603), - [anon_sym_GT_GT] = ACTIONS(6603), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6603), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6596), - [anon_sym_or_eq] = ACTIONS(6596), - [anon_sym_xor_eq] = ACTIONS(6596), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6596), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6596), - [anon_sym_not_eq] = ACTIONS(6596), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6596), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), + [sym_identifier] = ACTIONS(4301), + [aux_sym_preproc_def_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token1] = ACTIONS(4301), + [aux_sym_preproc_if_token2] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4301), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4301), + [sym_preproc_directive] = ACTIONS(4301), + [anon_sym_LPAREN2] = ACTIONS(4303), + [anon_sym_TILDE] = ACTIONS(4303), + [anon_sym_STAR] = ACTIONS(4303), + [anon_sym_AMP_AMP] = ACTIONS(4303), + [anon_sym_AMP] = ACTIONS(4301), + [anon_sym_SEMI] = ACTIONS(4303), + [anon_sym___extension__] = ACTIONS(4301), + [anon_sym_typedef] = ACTIONS(4301), + [anon_sym_virtual] = ACTIONS(4301), + [anon_sym_extern] = ACTIONS(4301), + [anon_sym___attribute__] = ACTIONS(4301), + [anon_sym___attribute] = ACTIONS(4301), + [anon_sym_using] = ACTIONS(4301), + [anon_sym_COLON_COLON] = ACTIONS(4303), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4303), + [anon_sym___declspec] = ACTIONS(4301), + [anon_sym___based] = ACTIONS(4301), + [anon_sym_signed] = ACTIONS(4301), + [anon_sym_unsigned] = ACTIONS(4301), + [anon_sym_long] = ACTIONS(4301), + [anon_sym_short] = ACTIONS(4301), + [anon_sym_LBRACK] = ACTIONS(4301), + [anon_sym_static] = ACTIONS(4301), + [anon_sym_register] = ACTIONS(4301), + [anon_sym_inline] = ACTIONS(4301), + [anon_sym___inline] = ACTIONS(4301), + [anon_sym___inline__] = ACTIONS(4301), + [anon_sym___forceinline] = ACTIONS(4301), + [anon_sym_thread_local] = ACTIONS(4301), + [anon_sym___thread] = ACTIONS(4301), + [anon_sym_const] = ACTIONS(4301), + [anon_sym_constexpr] = ACTIONS(4301), + [anon_sym_volatile] = ACTIONS(4301), + [anon_sym_restrict] = ACTIONS(4301), + [anon_sym___restrict__] = ACTIONS(4301), + [anon_sym__Atomic] = ACTIONS(4301), + [anon_sym__Noreturn] = ACTIONS(4301), + [anon_sym_noreturn] = ACTIONS(4301), + [anon_sym__Nonnull] = ACTIONS(4301), + [anon_sym_mutable] = ACTIONS(4301), + [anon_sym_constinit] = ACTIONS(4301), + [anon_sym_consteval] = ACTIONS(4301), + [anon_sym_alignas] = ACTIONS(4301), + [anon_sym__Alignas] = ACTIONS(4301), + [sym_primitive_type] = ACTIONS(4301), + [anon_sym_enum] = ACTIONS(4301), + [anon_sym_class] = ACTIONS(4301), + [anon_sym_struct] = ACTIONS(4301), + [anon_sym_union] = ACTIONS(4301), + [anon_sym_typename] = ACTIONS(4301), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4301), + [anon_sym_decltype] = ACTIONS(4301), + [anon_sym_explicit] = ACTIONS(4301), + [anon_sym_private] = ACTIONS(4301), + [anon_sym_template] = ACTIONS(4301), + [anon_sym_operator] = ACTIONS(4301), + [anon_sym_friend] = ACTIONS(4301), + [anon_sym_public] = ACTIONS(4301), + [anon_sym_protected] = ACTIONS(4301), + [anon_sym_static_assert] = ACTIONS(4301), + [anon_sym_LBRACK_COLON] = ACTIONS(4303), }, [STATE(3377)] = { - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [aux_sym_sized_type_specifier_repeat1] = STATE(3303), - [sym_identifier] = ACTIONS(8861), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [aux_sym_preproc_if_token2] = ACTIONS(7205), - [aux_sym_preproc_else_token1] = ACTIONS(7205), - [aux_sym_preproc_elif_token1] = ACTIONS(7207), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7205), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(8123), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(8864), - [anon_sym_unsigned] = ACTIONS(8864), - [anon_sym_long] = ACTIONS(8864), - [anon_sym_short] = ACTIONS(8864), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8123), - [anon_sym_volatile] = ACTIONS(8123), - [anon_sym_restrict] = ACTIONS(8123), - [anon_sym___restrict__] = ACTIONS(8123), - [anon_sym__Atomic] = ACTIONS(8123), - [anon_sym__Noreturn] = ACTIONS(8123), - [anon_sym_noreturn] = ACTIONS(8123), - [anon_sym__Nonnull] = ACTIONS(8123), - [anon_sym_mutable] = ACTIONS(8123), - [anon_sym_constinit] = ACTIONS(8123), - [anon_sym_consteval] = ACTIONS(8123), - [anon_sym_alignas] = ACTIONS(9051), - [anon_sym__Alignas] = ACTIONS(9051), - [sym_primitive_type] = ACTIONS(8866), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), + [aux_sym_sized_type_specifier_repeat1] = STATE(3377), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7062), + [anon_sym_COMMA] = ACTIONS(7062), + [aux_sym_preproc_if_token2] = ACTIONS(7062), + [aux_sym_preproc_else_token1] = ACTIONS(7062), + [aux_sym_preproc_elif_token1] = ACTIONS(7060), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7062), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(7062), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7062), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7062), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7062), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7062), + [anon_sym_LT_EQ] = ACTIONS(7060), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7062), + [anon_sym_GT_GT] = ACTIONS(7062), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym_LBRACE] = ACTIONS(7062), + [anon_sym_signed] = ACTIONS(9115), + [anon_sym_unsigned] = ACTIONS(9115), + [anon_sym_long] = ACTIONS(9115), + [anon_sym_short] = ACTIONS(9115), + [anon_sym_LBRACK] = ACTIONS(7062), + [anon_sym_RBRACK] = ACTIONS(7062), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_LT_EQ_GT] = ACTIONS(7062), + [anon_sym_or] = ACTIONS(7060), + [anon_sym_and] = ACTIONS(7060), + [anon_sym_bitor] = ACTIONS(7060), + [anon_sym_xor] = ACTIONS(7060), + [anon_sym_bitand] = ACTIONS(7060), + [anon_sym_not_eq] = ACTIONS(7060), + [anon_sym_DASH_DASH] = ACTIONS(7062), + [anon_sym_PLUS_PLUS] = ACTIONS(7062), + [anon_sym_DOT] = ACTIONS(7060), + [anon_sym_DOT_STAR] = ACTIONS(7062), + [anon_sym_DASH_GT] = ACTIONS(7062), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7060), + [anon_sym_override] = ACTIONS(7060), + [anon_sym_requires] = ACTIONS(7060), }, [STATE(3378)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [sym_identifier] = ACTIONS(7528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [aux_sym_preproc_if_token2] = ACTIONS(7525), - [aux_sym_preproc_else_token1] = ACTIONS(7525), - [aux_sym_preproc_elif_token1] = ACTIONS(7528), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7525), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7525), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7525), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7525), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7525), - [anon_sym_GT_GT] = ACTIONS(7525), - [anon_sym___extension__] = ACTIONS(7528), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8505), - [anon_sym_unsigned] = ACTIONS(8505), - [anon_sym_long] = ACTIONS(8505), - [anon_sym_short] = ACTIONS(8505), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_const] = ACTIONS(7528), - [anon_sym_constexpr] = ACTIONS(7528), - [anon_sym_volatile] = ACTIONS(7528), - [anon_sym_restrict] = ACTIONS(7528), - [anon_sym___restrict__] = ACTIONS(7528), - [anon_sym__Atomic] = ACTIONS(7528), - [anon_sym__Noreturn] = ACTIONS(7528), - [anon_sym_noreturn] = ACTIONS(7528), - [anon_sym__Nonnull] = ACTIONS(7528), - [anon_sym_mutable] = ACTIONS(7528), - [anon_sym_constinit] = ACTIONS(7528), - [anon_sym_consteval] = ACTIONS(7528), - [anon_sym_alignas] = ACTIONS(7528), - [anon_sym__Alignas] = ACTIONS(7528), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_requires] = ACTIONS(7528), + [sym_identifier] = ACTIONS(8689), + [aux_sym_preproc_def_token1] = ACTIONS(8689), + [aux_sym_preproc_if_token1] = ACTIONS(8689), + [aux_sym_preproc_if_token2] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8689), + [sym_preproc_directive] = ACTIONS(8689), + [anon_sym_LPAREN2] = ACTIONS(8691), + [anon_sym_TILDE] = ACTIONS(8691), + [anon_sym_STAR] = ACTIONS(8691), + [anon_sym_AMP_AMP] = ACTIONS(8691), + [anon_sym_AMP] = ACTIONS(8689), + [anon_sym_SEMI] = ACTIONS(8691), + [anon_sym___extension__] = ACTIONS(8689), + [anon_sym_typedef] = ACTIONS(8689), + [anon_sym_virtual] = ACTIONS(8689), + [anon_sym_extern] = ACTIONS(8689), + [anon_sym___attribute__] = ACTIONS(8689), + [anon_sym___attribute] = ACTIONS(8689), + [anon_sym_using] = ACTIONS(8689), + [anon_sym_COLON_COLON] = ACTIONS(8691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8691), + [anon_sym___declspec] = ACTIONS(8689), + [anon_sym___based] = ACTIONS(8689), + [anon_sym_signed] = ACTIONS(8689), + [anon_sym_unsigned] = ACTIONS(8689), + [anon_sym_long] = ACTIONS(8689), + [anon_sym_short] = ACTIONS(8689), + [anon_sym_LBRACK] = ACTIONS(8689), + [anon_sym_static] = ACTIONS(8689), + [anon_sym_register] = ACTIONS(8689), + [anon_sym_inline] = ACTIONS(8689), + [anon_sym___inline] = ACTIONS(8689), + [anon_sym___inline__] = ACTIONS(8689), + [anon_sym___forceinline] = ACTIONS(8689), + [anon_sym_thread_local] = ACTIONS(8689), + [anon_sym___thread] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(8689), + [anon_sym_constexpr] = ACTIONS(8689), + [anon_sym_volatile] = ACTIONS(8689), + [anon_sym_restrict] = ACTIONS(8689), + [anon_sym___restrict__] = ACTIONS(8689), + [anon_sym__Atomic] = ACTIONS(8689), + [anon_sym__Noreturn] = ACTIONS(8689), + [anon_sym_noreturn] = ACTIONS(8689), + [anon_sym__Nonnull] = ACTIONS(8689), + [anon_sym_mutable] = ACTIONS(8689), + [anon_sym_constinit] = ACTIONS(8689), + [anon_sym_consteval] = ACTIONS(8689), + [anon_sym_alignas] = ACTIONS(8689), + [anon_sym__Alignas] = ACTIONS(8689), + [sym_primitive_type] = ACTIONS(8689), + [anon_sym_enum] = ACTIONS(8689), + [anon_sym_class] = ACTIONS(8689), + [anon_sym_struct] = ACTIONS(8689), + [anon_sym_union] = ACTIONS(8689), + [anon_sym_typename] = ACTIONS(8689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8689), + [anon_sym_decltype] = ACTIONS(8689), + [anon_sym_explicit] = ACTIONS(8689), + [anon_sym_private] = ACTIONS(8689), + [anon_sym_template] = ACTIONS(8689), + [anon_sym_operator] = ACTIONS(8689), + [anon_sym_friend] = ACTIONS(8689), + [anon_sym_public] = ACTIONS(8689), + [anon_sym_protected] = ACTIONS(8689), + [anon_sym_static_assert] = ACTIONS(8689), + [anon_sym_LBRACK_COLON] = ACTIONS(8691), }, [STATE(3379)] = { - [sym_identifier] = ACTIONS(9129), - [anon_sym_LPAREN2] = ACTIONS(9131), - [anon_sym_TILDE] = ACTIONS(9131), - [anon_sym_STAR] = ACTIONS(9131), - [anon_sym_AMP_AMP] = ACTIONS(9131), - [anon_sym_AMP] = ACTIONS(9129), - [anon_sym___extension__] = ACTIONS(9129), - [anon_sym_virtual] = ACTIONS(9129), - [anon_sym_extern] = ACTIONS(9129), - [anon_sym___attribute__] = ACTIONS(9129), - [anon_sym___attribute] = ACTIONS(9129), - [anon_sym_using] = ACTIONS(9129), - [anon_sym_COLON_COLON] = ACTIONS(9131), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9131), - [anon_sym___declspec] = ACTIONS(9129), - [anon_sym___based] = ACTIONS(9129), - [anon_sym___cdecl] = ACTIONS(9129), - [anon_sym___clrcall] = ACTIONS(9129), - [anon_sym___stdcall] = ACTIONS(9129), - [anon_sym___fastcall] = ACTIONS(9129), - [anon_sym___thiscall] = ACTIONS(9129), - [anon_sym___vectorcall] = ACTIONS(9129), - [anon_sym_LBRACE] = ACTIONS(9131), - [anon_sym_signed] = ACTIONS(9129), - [anon_sym_unsigned] = ACTIONS(9129), - [anon_sym_long] = ACTIONS(9129), - [anon_sym_short] = ACTIONS(9129), - [anon_sym_LBRACK] = ACTIONS(9129), - [anon_sym_static] = ACTIONS(9129), - [anon_sym_register] = ACTIONS(9129), - [anon_sym_inline] = ACTIONS(9129), - [anon_sym___inline] = ACTIONS(9129), - [anon_sym___inline__] = ACTIONS(9129), - [anon_sym___forceinline] = ACTIONS(9129), - [anon_sym_thread_local] = ACTIONS(9129), - [anon_sym___thread] = ACTIONS(9129), - [anon_sym_const] = ACTIONS(9129), - [anon_sym_constexpr] = ACTIONS(9129), - [anon_sym_volatile] = ACTIONS(9129), - [anon_sym_restrict] = ACTIONS(9129), - [anon_sym___restrict__] = ACTIONS(9129), - [anon_sym__Atomic] = ACTIONS(9129), - [anon_sym__Noreturn] = ACTIONS(9129), - [anon_sym_noreturn] = ACTIONS(9129), - [anon_sym__Nonnull] = ACTIONS(9129), - [anon_sym_mutable] = ACTIONS(9129), - [anon_sym_constinit] = ACTIONS(9129), - [anon_sym_consteval] = ACTIONS(9129), - [anon_sym_alignas] = ACTIONS(9129), - [anon_sym__Alignas] = ACTIONS(9129), - [sym_primitive_type] = ACTIONS(9129), - [anon_sym_enum] = ACTIONS(9129), - [anon_sym_class] = ACTIONS(9129), - [anon_sym_struct] = ACTIONS(9129), - [anon_sym_union] = ACTIONS(9129), - [anon_sym_typename] = ACTIONS(9129), - [anon_sym_DASH_GT] = ACTIONS(9131), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9129), - [anon_sym_decltype] = ACTIONS(9129), - [anon_sym_explicit] = ACTIONS(9129), - [anon_sym_template] = ACTIONS(9129), - [anon_sym_operator] = ACTIONS(9129), - [anon_sym_friend] = ACTIONS(9129), - [anon_sym_noexcept] = ACTIONS(9129), - [anon_sym_throw] = ACTIONS(9129), - [anon_sym_concept] = ACTIONS(9129), - [anon_sym_requires] = ACTIONS(9129), - [anon_sym_LBRACK_COLON] = ACTIONS(9131), + [sym_identifier] = ACTIONS(4305), + [aux_sym_preproc_def_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token1] = ACTIONS(4305), + [aux_sym_preproc_if_token2] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4305), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4305), + [sym_preproc_directive] = ACTIONS(4305), + [anon_sym_LPAREN2] = ACTIONS(4307), + [anon_sym_TILDE] = ACTIONS(4307), + [anon_sym_STAR] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_AMP] = ACTIONS(4305), + [anon_sym_SEMI] = ACTIONS(4307), + [anon_sym___extension__] = ACTIONS(4305), + [anon_sym_typedef] = ACTIONS(4305), + [anon_sym_virtual] = ACTIONS(4305), + [anon_sym_extern] = ACTIONS(4305), + [anon_sym___attribute__] = ACTIONS(4305), + [anon_sym___attribute] = ACTIONS(4305), + [anon_sym_using] = ACTIONS(4305), + [anon_sym_COLON_COLON] = ACTIONS(4307), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4307), + [anon_sym___declspec] = ACTIONS(4305), + [anon_sym___based] = ACTIONS(4305), + [anon_sym_signed] = ACTIONS(4305), + [anon_sym_unsigned] = ACTIONS(4305), + [anon_sym_long] = ACTIONS(4305), + [anon_sym_short] = ACTIONS(4305), + [anon_sym_LBRACK] = ACTIONS(4305), + [anon_sym_static] = ACTIONS(4305), + [anon_sym_register] = ACTIONS(4305), + [anon_sym_inline] = ACTIONS(4305), + [anon_sym___inline] = ACTIONS(4305), + [anon_sym___inline__] = ACTIONS(4305), + [anon_sym___forceinline] = ACTIONS(4305), + [anon_sym_thread_local] = ACTIONS(4305), + [anon_sym___thread] = ACTIONS(4305), + [anon_sym_const] = ACTIONS(4305), + [anon_sym_constexpr] = ACTIONS(4305), + [anon_sym_volatile] = ACTIONS(4305), + [anon_sym_restrict] = ACTIONS(4305), + [anon_sym___restrict__] = ACTIONS(4305), + [anon_sym__Atomic] = ACTIONS(4305), + [anon_sym__Noreturn] = ACTIONS(4305), + [anon_sym_noreturn] = ACTIONS(4305), + [anon_sym__Nonnull] = ACTIONS(4305), + [anon_sym_mutable] = ACTIONS(4305), + [anon_sym_constinit] = ACTIONS(4305), + [anon_sym_consteval] = ACTIONS(4305), + [anon_sym_alignas] = ACTIONS(4305), + [anon_sym__Alignas] = ACTIONS(4305), + [sym_primitive_type] = ACTIONS(4305), + [anon_sym_enum] = ACTIONS(4305), + [anon_sym_class] = ACTIONS(4305), + [anon_sym_struct] = ACTIONS(4305), + [anon_sym_union] = ACTIONS(4305), + [anon_sym_typename] = ACTIONS(4305), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4305), + [anon_sym_decltype] = ACTIONS(4305), + [anon_sym_explicit] = ACTIONS(4305), + [anon_sym_private] = ACTIONS(4305), + [anon_sym_template] = ACTIONS(4305), + [anon_sym_operator] = ACTIONS(4305), + [anon_sym_friend] = ACTIONS(4305), + [anon_sym_public] = ACTIONS(4305), + [anon_sym_protected] = ACTIONS(4305), + [anon_sym_static_assert] = ACTIONS(4305), + [anon_sym_LBRACK_COLON] = ACTIONS(4307), }, [STATE(3380)] = { - [sym_identifier] = ACTIONS(4152), - [aux_sym_preproc_def_token1] = ACTIONS(4152), - [aux_sym_preproc_if_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4152), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4152), - [sym_preproc_directive] = ACTIONS(4152), - [anon_sym_LPAREN2] = ACTIONS(4154), - [anon_sym_TILDE] = ACTIONS(4154), - [anon_sym_STAR] = ACTIONS(4154), - [anon_sym_AMP_AMP] = ACTIONS(4154), - [anon_sym_AMP] = ACTIONS(4152), - [anon_sym_SEMI] = ACTIONS(4154), - [anon_sym___extension__] = ACTIONS(4152), - [anon_sym_typedef] = ACTIONS(4152), - [anon_sym_virtual] = ACTIONS(4152), - [anon_sym_extern] = ACTIONS(4152), - [anon_sym___attribute__] = ACTIONS(4152), - [anon_sym___attribute] = ACTIONS(4152), - [anon_sym_using] = ACTIONS(4152), - [anon_sym_COLON_COLON] = ACTIONS(4154), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4154), - [anon_sym___declspec] = ACTIONS(4152), - [anon_sym___based] = ACTIONS(4152), - [anon_sym_RBRACE] = ACTIONS(4154), - [anon_sym_signed] = ACTIONS(4152), - [anon_sym_unsigned] = ACTIONS(4152), - [anon_sym_long] = ACTIONS(4152), - [anon_sym_short] = ACTIONS(4152), - [anon_sym_LBRACK] = ACTIONS(4152), - [anon_sym_static] = ACTIONS(4152), - [anon_sym_register] = ACTIONS(4152), - [anon_sym_inline] = ACTIONS(4152), - [anon_sym___inline] = ACTIONS(4152), - [anon_sym___inline__] = ACTIONS(4152), - [anon_sym___forceinline] = ACTIONS(4152), - [anon_sym_thread_local] = ACTIONS(4152), - [anon_sym___thread] = ACTIONS(4152), - [anon_sym_const] = ACTIONS(4152), - [anon_sym_constexpr] = ACTIONS(4152), - [anon_sym_volatile] = ACTIONS(4152), - [anon_sym_restrict] = ACTIONS(4152), - [anon_sym___restrict__] = ACTIONS(4152), - [anon_sym__Atomic] = ACTIONS(4152), - [anon_sym__Noreturn] = ACTIONS(4152), - [anon_sym_noreturn] = ACTIONS(4152), - [anon_sym__Nonnull] = ACTIONS(4152), - [anon_sym_mutable] = ACTIONS(4152), - [anon_sym_constinit] = ACTIONS(4152), - [anon_sym_consteval] = ACTIONS(4152), - [anon_sym_alignas] = ACTIONS(4152), - [anon_sym__Alignas] = ACTIONS(4152), - [sym_primitive_type] = ACTIONS(4152), - [anon_sym_enum] = ACTIONS(4152), - [anon_sym_class] = ACTIONS(4152), - [anon_sym_struct] = ACTIONS(4152), - [anon_sym_union] = ACTIONS(4152), - [anon_sym_typename] = ACTIONS(4152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4152), - [anon_sym_decltype] = ACTIONS(4152), - [anon_sym_explicit] = ACTIONS(4152), - [anon_sym_private] = ACTIONS(4152), - [anon_sym_template] = ACTIONS(4152), - [anon_sym_operator] = ACTIONS(4152), - [anon_sym_friend] = ACTIONS(4152), - [anon_sym_public] = ACTIONS(4152), - [anon_sym_protected] = ACTIONS(4152), - [anon_sym_static_assert] = ACTIONS(4152), - [anon_sym_LBRACK_COLON] = ACTIONS(4154), + [sym_identifier] = ACTIONS(8812), + [aux_sym_preproc_def_token1] = ACTIONS(8812), + [aux_sym_preproc_if_token1] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8812), + [sym_preproc_directive] = ACTIONS(8812), + [anon_sym_LPAREN2] = ACTIONS(8814), + [anon_sym_TILDE] = ACTIONS(8814), + [anon_sym_STAR] = ACTIONS(8814), + [anon_sym_AMP_AMP] = ACTIONS(8814), + [anon_sym_AMP] = ACTIONS(8812), + [anon_sym_SEMI] = ACTIONS(8814), + [anon_sym___extension__] = ACTIONS(8812), + [anon_sym_typedef] = ACTIONS(8812), + [anon_sym_virtual] = ACTIONS(8812), + [anon_sym_extern] = ACTIONS(8812), + [anon_sym___attribute__] = ACTIONS(8812), + [anon_sym___attribute] = ACTIONS(8812), + [anon_sym_using] = ACTIONS(8812), + [anon_sym_COLON_COLON] = ACTIONS(8814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8814), + [anon_sym___declspec] = ACTIONS(8812), + [anon_sym___based] = ACTIONS(8812), + [anon_sym_RBRACE] = ACTIONS(8814), + [anon_sym_signed] = ACTIONS(8812), + [anon_sym_unsigned] = ACTIONS(8812), + [anon_sym_long] = ACTIONS(8812), + [anon_sym_short] = ACTIONS(8812), + [anon_sym_LBRACK] = ACTIONS(8812), + [anon_sym_static] = ACTIONS(8812), + [anon_sym_register] = ACTIONS(8812), + [anon_sym_inline] = ACTIONS(8812), + [anon_sym___inline] = ACTIONS(8812), + [anon_sym___inline__] = ACTIONS(8812), + [anon_sym___forceinline] = ACTIONS(8812), + [anon_sym_thread_local] = ACTIONS(8812), + [anon_sym___thread] = ACTIONS(8812), + [anon_sym_const] = ACTIONS(8812), + [anon_sym_constexpr] = ACTIONS(8812), + [anon_sym_volatile] = ACTIONS(8812), + [anon_sym_restrict] = ACTIONS(8812), + [anon_sym___restrict__] = ACTIONS(8812), + [anon_sym__Atomic] = ACTIONS(8812), + [anon_sym__Noreturn] = ACTIONS(8812), + [anon_sym_noreturn] = ACTIONS(8812), + [anon_sym__Nonnull] = ACTIONS(8812), + [anon_sym_mutable] = ACTIONS(8812), + [anon_sym_constinit] = ACTIONS(8812), + [anon_sym_consteval] = ACTIONS(8812), + [anon_sym_alignas] = ACTIONS(8812), + [anon_sym__Alignas] = ACTIONS(8812), + [sym_primitive_type] = ACTIONS(8812), + [anon_sym_enum] = ACTIONS(8812), + [anon_sym_class] = ACTIONS(8812), + [anon_sym_struct] = ACTIONS(8812), + [anon_sym_union] = ACTIONS(8812), + [anon_sym_typename] = ACTIONS(8812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8812), + [anon_sym_decltype] = ACTIONS(8812), + [anon_sym_explicit] = ACTIONS(8812), + [anon_sym_private] = ACTIONS(8812), + [anon_sym_template] = ACTIONS(8812), + [anon_sym_operator] = ACTIONS(8812), + [anon_sym_friend] = ACTIONS(8812), + [anon_sym_public] = ACTIONS(8812), + [anon_sym_protected] = ACTIONS(8812), + [anon_sym_static_assert] = ACTIONS(8812), + [anon_sym_LBRACK_COLON] = ACTIONS(8814), }, [STATE(3381)] = { - [sym_template_argument_list] = STATE(2721), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), - [anon_sym_COMMA] = ACTIONS(7087), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_DASH] = ACTIONS(7094), - [anon_sym_PLUS] = ACTIONS(7094), - [anon_sym_STAR] = ACTIONS(7094), - [anon_sym_SLASH] = ACTIONS(7094), - [anon_sym_PERCENT] = ACTIONS(7094), - [anon_sym_PIPE_PIPE] = ACTIONS(7087), - [anon_sym_AMP_AMP] = ACTIONS(7087), - [anon_sym_PIPE] = ACTIONS(7094), - [anon_sym_CARET] = ACTIONS(7094), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_EQ_EQ] = ACTIONS(7087), - [anon_sym_BANG_EQ] = ACTIONS(7087), - [anon_sym_GT] = ACTIONS(7094), - [anon_sym_GT_EQ] = ACTIONS(7094), - [anon_sym_LT_EQ] = ACTIONS(7094), - [anon_sym_LT] = ACTIONS(8032), - [anon_sym_LT_LT] = ACTIONS(7094), - [anon_sym_GT_GT] = ACTIONS(7094), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7087), - [anon_sym_EQ] = ACTIONS(7094), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7087), - [anon_sym_STAR_EQ] = ACTIONS(7087), - [anon_sym_SLASH_EQ] = ACTIONS(7087), - [anon_sym_PERCENT_EQ] = ACTIONS(7087), - [anon_sym_PLUS_EQ] = ACTIONS(7087), - [anon_sym_DASH_EQ] = ACTIONS(7087), - [anon_sym_LT_LT_EQ] = ACTIONS(7087), - [anon_sym_GT_GT_EQ] = ACTIONS(7094), - [anon_sym_AMP_EQ] = ACTIONS(7087), - [anon_sym_CARET_EQ] = ACTIONS(7087), - [anon_sym_PIPE_EQ] = ACTIONS(7087), - [anon_sym_and_eq] = ACTIONS(7087), - [anon_sym_or_eq] = ACTIONS(7087), - [anon_sym_xor_eq] = ACTIONS(7087), - [anon_sym_LT_EQ_GT] = ACTIONS(7087), - [anon_sym_or] = ACTIONS(7094), - [anon_sym_and] = ACTIONS(7094), - [anon_sym_bitor] = ACTIONS(7087), - [anon_sym_xor] = ACTIONS(7094), - [anon_sym_bitand] = ACTIONS(7087), - [anon_sym_not_eq] = ACTIONS(7087), - [anon_sym_DASH_DASH] = ACTIONS(7087), - [anon_sym_PLUS_PLUS] = ACTIONS(7087), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_DOT_STAR] = ACTIONS(7087), - [anon_sym_DASH_GT] = ACTIONS(7087), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7087), + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym__function_attributes_end] = STATE(4581), + [sym__function_postfix] = STATE(5706), + [sym_trailing_return_type] = STATE(4724), + [sym_requires_clause] = STATE(5706), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7970), + [anon_sym_and] = ACTIONS(7970), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7970), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8617), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(7970), }, [STATE(3382)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym__function_attributes_end] = STATE(4576), - [sym__function_postfix] = STATE(5696), - [sym_trailing_return_type] = STATE(4740), - [sym_requires_clause] = STATE(5696), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7791), - [anon_sym_and] = ACTIONS(7791), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7791), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(8514), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8517), - [anon_sym_override] = ACTIONS(8517), - [anon_sym_requires] = ACTIONS(8520), - [anon_sym_DASH_GT_STAR] = ACTIONS(7791), + [sym_identifier] = ACTIONS(8741), + [aux_sym_preproc_def_token1] = ACTIONS(8741), + [aux_sym_preproc_if_token1] = ACTIONS(8741), + [aux_sym_preproc_if_token2] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8741), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8741), + [sym_preproc_directive] = ACTIONS(8741), + [anon_sym_LPAREN2] = ACTIONS(8743), + [anon_sym_TILDE] = ACTIONS(8743), + [anon_sym_STAR] = ACTIONS(8743), + [anon_sym_AMP_AMP] = ACTIONS(8743), + [anon_sym_AMP] = ACTIONS(8741), + [anon_sym_SEMI] = ACTIONS(8743), + [anon_sym___extension__] = ACTIONS(8741), + [anon_sym_typedef] = ACTIONS(8741), + [anon_sym_virtual] = ACTIONS(8741), + [anon_sym_extern] = ACTIONS(8741), + [anon_sym___attribute__] = ACTIONS(8741), + [anon_sym___attribute] = ACTIONS(8741), + [anon_sym_using] = ACTIONS(8741), + [anon_sym_COLON_COLON] = ACTIONS(8743), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8743), + [anon_sym___declspec] = ACTIONS(8741), + [anon_sym___based] = ACTIONS(8741), + [anon_sym_signed] = ACTIONS(8741), + [anon_sym_unsigned] = ACTIONS(8741), + [anon_sym_long] = ACTIONS(8741), + [anon_sym_short] = ACTIONS(8741), + [anon_sym_LBRACK] = ACTIONS(8741), + [anon_sym_static] = ACTIONS(8741), + [anon_sym_register] = ACTIONS(8741), + [anon_sym_inline] = ACTIONS(8741), + [anon_sym___inline] = ACTIONS(8741), + [anon_sym___inline__] = ACTIONS(8741), + [anon_sym___forceinline] = ACTIONS(8741), + [anon_sym_thread_local] = ACTIONS(8741), + [anon_sym___thread] = ACTIONS(8741), + [anon_sym_const] = ACTIONS(8741), + [anon_sym_constexpr] = ACTIONS(8741), + [anon_sym_volatile] = ACTIONS(8741), + [anon_sym_restrict] = ACTIONS(8741), + [anon_sym___restrict__] = ACTIONS(8741), + [anon_sym__Atomic] = ACTIONS(8741), + [anon_sym__Noreturn] = ACTIONS(8741), + [anon_sym_noreturn] = ACTIONS(8741), + [anon_sym__Nonnull] = ACTIONS(8741), + [anon_sym_mutable] = ACTIONS(8741), + [anon_sym_constinit] = ACTIONS(8741), + [anon_sym_consteval] = ACTIONS(8741), + [anon_sym_alignas] = ACTIONS(8741), + [anon_sym__Alignas] = ACTIONS(8741), + [sym_primitive_type] = ACTIONS(8741), + [anon_sym_enum] = ACTIONS(8741), + [anon_sym_class] = ACTIONS(8741), + [anon_sym_struct] = ACTIONS(8741), + [anon_sym_union] = ACTIONS(8741), + [anon_sym_typename] = ACTIONS(8741), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8741), + [anon_sym_decltype] = ACTIONS(8741), + [anon_sym_explicit] = ACTIONS(8741), + [anon_sym_private] = ACTIONS(8741), + [anon_sym_template] = ACTIONS(8741), + [anon_sym_operator] = ACTIONS(8741), + [anon_sym_friend] = ACTIONS(8741), + [anon_sym_public] = ACTIONS(8741), + [anon_sym_protected] = ACTIONS(8741), + [anon_sym_static_assert] = ACTIONS(8741), + [anon_sym_LBRACK_COLON] = ACTIONS(8743), }, [STATE(3383)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym__function_attributes_end] = STATE(4591), - [sym__function_postfix] = STATE(5681), - [sym_trailing_return_type] = STATE(4660), - [sym_requires_clause] = STATE(5681), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7966), - [anon_sym_and] = ACTIONS(7966), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7966), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(8595), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8633), - [anon_sym_override] = ACTIONS(8633), - [anon_sym_requires] = ACTIONS(8636), - [anon_sym_DASH_GT_STAR] = ACTIONS(7966), + [sym_identifier] = ACTIONS(4309), + [aux_sym_preproc_def_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token1] = ACTIONS(4309), + [aux_sym_preproc_if_token2] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4309), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4309), + [sym_preproc_directive] = ACTIONS(4309), + [anon_sym_LPAREN2] = ACTIONS(4311), + [anon_sym_TILDE] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4311), + [anon_sym_AMP_AMP] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4309), + [anon_sym_SEMI] = ACTIONS(4311), + [anon_sym___extension__] = ACTIONS(4309), + [anon_sym_typedef] = ACTIONS(4309), + [anon_sym_virtual] = ACTIONS(4309), + [anon_sym_extern] = ACTIONS(4309), + [anon_sym___attribute__] = ACTIONS(4309), + [anon_sym___attribute] = ACTIONS(4309), + [anon_sym_using] = ACTIONS(4309), + [anon_sym_COLON_COLON] = ACTIONS(4311), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4311), + [anon_sym___declspec] = ACTIONS(4309), + [anon_sym___based] = ACTIONS(4309), + [anon_sym_signed] = ACTIONS(4309), + [anon_sym_unsigned] = ACTIONS(4309), + [anon_sym_long] = ACTIONS(4309), + [anon_sym_short] = ACTIONS(4309), + [anon_sym_LBRACK] = ACTIONS(4309), + [anon_sym_static] = ACTIONS(4309), + [anon_sym_register] = ACTIONS(4309), + [anon_sym_inline] = ACTIONS(4309), + [anon_sym___inline] = ACTIONS(4309), + [anon_sym___inline__] = ACTIONS(4309), + [anon_sym___forceinline] = ACTIONS(4309), + [anon_sym_thread_local] = ACTIONS(4309), + [anon_sym___thread] = ACTIONS(4309), + [anon_sym_const] = ACTIONS(4309), + [anon_sym_constexpr] = ACTIONS(4309), + [anon_sym_volatile] = ACTIONS(4309), + [anon_sym_restrict] = ACTIONS(4309), + [anon_sym___restrict__] = ACTIONS(4309), + [anon_sym__Atomic] = ACTIONS(4309), + [anon_sym__Noreturn] = ACTIONS(4309), + [anon_sym_noreturn] = ACTIONS(4309), + [anon_sym__Nonnull] = ACTIONS(4309), + [anon_sym_mutable] = ACTIONS(4309), + [anon_sym_constinit] = ACTIONS(4309), + [anon_sym_consteval] = ACTIONS(4309), + [anon_sym_alignas] = ACTIONS(4309), + [anon_sym__Alignas] = ACTIONS(4309), + [sym_primitive_type] = ACTIONS(4309), + [anon_sym_enum] = ACTIONS(4309), + [anon_sym_class] = ACTIONS(4309), + [anon_sym_struct] = ACTIONS(4309), + [anon_sym_union] = ACTIONS(4309), + [anon_sym_typename] = ACTIONS(4309), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4309), + [anon_sym_decltype] = ACTIONS(4309), + [anon_sym_explicit] = ACTIONS(4309), + [anon_sym_private] = ACTIONS(4309), + [anon_sym_template] = ACTIONS(4309), + [anon_sym_operator] = ACTIONS(4309), + [anon_sym_friend] = ACTIONS(4309), + [anon_sym_public] = ACTIONS(4309), + [anon_sym_protected] = ACTIONS(4309), + [anon_sym_static_assert] = ACTIONS(4309), + [anon_sym_LBRACK_COLON] = ACTIONS(4311), }, [STATE(3384)] = { - [sym_attribute_specifier] = STATE(4381), - [sym_attribute_declaration] = STATE(4895), - [sym_gnu_asm_expression] = STATE(9115), - [sym_virtual_specifier] = STATE(5261), - [sym__function_attributes_end] = STATE(4595), - [sym__function_postfix] = STATE(5550), - [sym_trailing_return_type] = STATE(4665), - [sym_requires_clause] = STATE(5550), - [aux_sym_type_definition_repeat1] = STATE(4381), - [aux_sym_attributed_declarator_repeat1] = STATE(4895), - [aux_sym__function_postfix_repeat1] = STATE(5261), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_RPAREN] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym___attribute__] = ACTIONS(6764), - [anon_sym___attribute] = ACTIONS(6766), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6768), - [anon_sym_LBRACK] = ACTIONS(8424), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8422), - [anon_sym_and] = ACTIONS(8422), - [anon_sym_bitor] = ACTIONS(8422), - [anon_sym_xor] = ACTIONS(8422), - [anon_sym_bitand] = ACTIONS(8422), - [anon_sym_not_eq] = ACTIONS(8422), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(9124), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9133), - [anon_sym_override] = ACTIONS(9133), - [anon_sym_requires] = ACTIONS(9136), - [anon_sym_DASH_GT_STAR] = ACTIONS(8422), + [sym_identifier] = ACTIONS(4313), + [aux_sym_preproc_def_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token1] = ACTIONS(4313), + [aux_sym_preproc_if_token2] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4313), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4313), + [sym_preproc_directive] = ACTIONS(4313), + [anon_sym_LPAREN2] = ACTIONS(4315), + [anon_sym_TILDE] = ACTIONS(4315), + [anon_sym_STAR] = ACTIONS(4315), + [anon_sym_AMP_AMP] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4313), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym___extension__] = ACTIONS(4313), + [anon_sym_typedef] = ACTIONS(4313), + [anon_sym_virtual] = ACTIONS(4313), + [anon_sym_extern] = ACTIONS(4313), + [anon_sym___attribute__] = ACTIONS(4313), + [anon_sym___attribute] = ACTIONS(4313), + [anon_sym_using] = ACTIONS(4313), + [anon_sym_COLON_COLON] = ACTIONS(4315), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4315), + [anon_sym___declspec] = ACTIONS(4313), + [anon_sym___based] = ACTIONS(4313), + [anon_sym_signed] = ACTIONS(4313), + [anon_sym_unsigned] = ACTIONS(4313), + [anon_sym_long] = ACTIONS(4313), + [anon_sym_short] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_static] = ACTIONS(4313), + [anon_sym_register] = ACTIONS(4313), + [anon_sym_inline] = ACTIONS(4313), + [anon_sym___inline] = ACTIONS(4313), + [anon_sym___inline__] = ACTIONS(4313), + [anon_sym___forceinline] = ACTIONS(4313), + [anon_sym_thread_local] = ACTIONS(4313), + [anon_sym___thread] = ACTIONS(4313), + [anon_sym_const] = ACTIONS(4313), + [anon_sym_constexpr] = ACTIONS(4313), + [anon_sym_volatile] = ACTIONS(4313), + [anon_sym_restrict] = ACTIONS(4313), + [anon_sym___restrict__] = ACTIONS(4313), + [anon_sym__Atomic] = ACTIONS(4313), + [anon_sym__Noreturn] = ACTIONS(4313), + [anon_sym_noreturn] = ACTIONS(4313), + [anon_sym__Nonnull] = ACTIONS(4313), + [anon_sym_mutable] = ACTIONS(4313), + [anon_sym_constinit] = ACTIONS(4313), + [anon_sym_consteval] = ACTIONS(4313), + [anon_sym_alignas] = ACTIONS(4313), + [anon_sym__Alignas] = ACTIONS(4313), + [sym_primitive_type] = ACTIONS(4313), + [anon_sym_enum] = ACTIONS(4313), + [anon_sym_class] = ACTIONS(4313), + [anon_sym_struct] = ACTIONS(4313), + [anon_sym_union] = ACTIONS(4313), + [anon_sym_typename] = ACTIONS(4313), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4313), + [anon_sym_decltype] = ACTIONS(4313), + [anon_sym_explicit] = ACTIONS(4313), + [anon_sym_private] = ACTIONS(4313), + [anon_sym_template] = ACTIONS(4313), + [anon_sym_operator] = ACTIONS(4313), + [anon_sym_friend] = ACTIONS(4313), + [anon_sym_public] = ACTIONS(4313), + [anon_sym_protected] = ACTIONS(4313), + [anon_sym_static_assert] = ACTIONS(4313), + [anon_sym_LBRACK_COLON] = ACTIONS(4315), }, [STATE(3385)] = { - [sym_identifier] = ACTIONS(4164), - [aux_sym_preproc_def_token1] = ACTIONS(4164), - [aux_sym_preproc_if_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4164), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4164), - [sym_preproc_directive] = ACTIONS(4164), - [anon_sym_LPAREN2] = ACTIONS(4166), - [anon_sym_TILDE] = ACTIONS(4166), - [anon_sym_STAR] = ACTIONS(4166), - [anon_sym_AMP_AMP] = ACTIONS(4166), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_SEMI] = ACTIONS(4166), - [anon_sym___extension__] = ACTIONS(4164), - [anon_sym_typedef] = ACTIONS(4164), - [anon_sym_virtual] = ACTIONS(4164), - [anon_sym_extern] = ACTIONS(4164), - [anon_sym___attribute__] = ACTIONS(4164), - [anon_sym___attribute] = ACTIONS(4164), - [anon_sym_using] = ACTIONS(4164), - [anon_sym_COLON_COLON] = ACTIONS(4166), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4166), - [anon_sym___declspec] = ACTIONS(4164), - [anon_sym___based] = ACTIONS(4164), - [anon_sym_RBRACE] = ACTIONS(4166), - [anon_sym_signed] = ACTIONS(4164), - [anon_sym_unsigned] = ACTIONS(4164), - [anon_sym_long] = ACTIONS(4164), - [anon_sym_short] = ACTIONS(4164), - [anon_sym_LBRACK] = ACTIONS(4164), - [anon_sym_static] = 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), - [sym_primitive_type] = ACTIONS(4164), - [anon_sym_enum] = ACTIONS(4164), - [anon_sym_class] = ACTIONS(4164), - [anon_sym_struct] = ACTIONS(4164), - [anon_sym_union] = ACTIONS(4164), - [anon_sym_typename] = ACTIONS(4164), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4164), - [anon_sym_decltype] = ACTIONS(4164), - [anon_sym_explicit] = ACTIONS(4164), - [anon_sym_private] = ACTIONS(4164), - [anon_sym_template] = ACTIONS(4164), - [anon_sym_operator] = ACTIONS(4164), - [anon_sym_friend] = ACTIONS(4164), - [anon_sym_public] = ACTIONS(4164), - [anon_sym_protected] = ACTIONS(4164), - [anon_sym_static_assert] = ACTIONS(4164), - [anon_sym_LBRACK_COLON] = ACTIONS(4166), + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym__function_attributes_end] = STATE(4595), + [sym__function_postfix] = STATE(5548), + [sym_trailing_return_type] = STATE(4730), + [sym_requires_clause] = STATE(5548), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8402), + [anon_sym_and] = ACTIONS(8402), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8402), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(9118), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(8402), }, [STATE(3386)] = { - [sym_identifier] = ACTIONS(4168), - [aux_sym_preproc_def_token1] = ACTIONS(4168), - [aux_sym_preproc_if_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4168), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4168), - [sym_preproc_directive] = ACTIONS(4168), - [anon_sym_LPAREN2] = ACTIONS(4170), - [anon_sym_TILDE] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(4170), - [anon_sym_AMP_AMP] = ACTIONS(4170), - [anon_sym_AMP] = ACTIONS(4168), - [anon_sym_SEMI] = ACTIONS(4170), - [anon_sym___extension__] = ACTIONS(4168), - [anon_sym_typedef] = ACTIONS(4168), - [anon_sym_virtual] = ACTIONS(4168), - [anon_sym_extern] = ACTIONS(4168), - [anon_sym___attribute__] = ACTIONS(4168), - [anon_sym___attribute] = ACTIONS(4168), - [anon_sym_using] = ACTIONS(4168), - [anon_sym_COLON_COLON] = ACTIONS(4170), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4170), - [anon_sym___declspec] = ACTIONS(4168), - [anon_sym___based] = ACTIONS(4168), - [anon_sym_RBRACE] = ACTIONS(4170), - [anon_sym_signed] = ACTIONS(4168), - [anon_sym_unsigned] = ACTIONS(4168), - [anon_sym_long] = ACTIONS(4168), - [anon_sym_short] = ACTIONS(4168), - [anon_sym_LBRACK] = ACTIONS(4168), - [anon_sym_static] = ACTIONS(4168), - [anon_sym_register] = ACTIONS(4168), - [anon_sym_inline] = ACTIONS(4168), - [anon_sym___inline] = ACTIONS(4168), - [anon_sym___inline__] = ACTIONS(4168), - [anon_sym___forceinline] = ACTIONS(4168), - [anon_sym_thread_local] = ACTIONS(4168), - [anon_sym___thread] = ACTIONS(4168), - [anon_sym_const] = ACTIONS(4168), - [anon_sym_constexpr] = ACTIONS(4168), - [anon_sym_volatile] = ACTIONS(4168), - [anon_sym_restrict] = ACTIONS(4168), - [anon_sym___restrict__] = ACTIONS(4168), - [anon_sym__Atomic] = ACTIONS(4168), - [anon_sym__Noreturn] = ACTIONS(4168), - [anon_sym_noreturn] = ACTIONS(4168), - [anon_sym__Nonnull] = ACTIONS(4168), - [anon_sym_mutable] = ACTIONS(4168), - [anon_sym_constinit] = ACTIONS(4168), - [anon_sym_consteval] = ACTIONS(4168), - [anon_sym_alignas] = ACTIONS(4168), - [anon_sym__Alignas] = ACTIONS(4168), - [sym_primitive_type] = ACTIONS(4168), - [anon_sym_enum] = ACTIONS(4168), - [anon_sym_class] = ACTIONS(4168), - [anon_sym_struct] = ACTIONS(4168), - [anon_sym_union] = ACTIONS(4168), - [anon_sym_typename] = ACTIONS(4168), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4168), - [anon_sym_decltype] = ACTIONS(4168), - [anon_sym_explicit] = ACTIONS(4168), - [anon_sym_private] = ACTIONS(4168), - [anon_sym_template] = ACTIONS(4168), - [anon_sym_operator] = ACTIONS(4168), - [anon_sym_friend] = ACTIONS(4168), - [anon_sym_public] = ACTIONS(4168), - [anon_sym_protected] = ACTIONS(4168), - [anon_sym_static_assert] = ACTIONS(4168), - [anon_sym_LBRACK_COLON] = ACTIONS(4170), + [sym_identifier] = ACTIONS(8689), + [aux_sym_preproc_def_token1] = ACTIONS(8689), + [aux_sym_preproc_if_token1] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8689), + [sym_preproc_directive] = ACTIONS(8689), + [anon_sym_LPAREN2] = ACTIONS(8691), + [anon_sym_TILDE] = ACTIONS(8691), + [anon_sym_STAR] = ACTIONS(8691), + [anon_sym_AMP_AMP] = ACTIONS(8691), + [anon_sym_AMP] = ACTIONS(8689), + [anon_sym_SEMI] = ACTIONS(8691), + [anon_sym___extension__] = ACTIONS(8689), + [anon_sym_typedef] = ACTIONS(8689), + [anon_sym_virtual] = ACTIONS(8689), + [anon_sym_extern] = ACTIONS(8689), + [anon_sym___attribute__] = ACTIONS(8689), + [anon_sym___attribute] = ACTIONS(8689), + [anon_sym_using] = ACTIONS(8689), + [anon_sym_COLON_COLON] = ACTIONS(8691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8691), + [anon_sym___declspec] = ACTIONS(8689), + [anon_sym___based] = ACTIONS(8689), + [anon_sym_RBRACE] = ACTIONS(8691), + [anon_sym_signed] = ACTIONS(8689), + [anon_sym_unsigned] = ACTIONS(8689), + [anon_sym_long] = ACTIONS(8689), + [anon_sym_short] = ACTIONS(8689), + [anon_sym_LBRACK] = ACTIONS(8689), + [anon_sym_static] = ACTIONS(8689), + [anon_sym_register] = ACTIONS(8689), + [anon_sym_inline] = ACTIONS(8689), + [anon_sym___inline] = ACTIONS(8689), + [anon_sym___inline__] = ACTIONS(8689), + [anon_sym___forceinline] = ACTIONS(8689), + [anon_sym_thread_local] = ACTIONS(8689), + [anon_sym___thread] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(8689), + [anon_sym_constexpr] = ACTIONS(8689), + [anon_sym_volatile] = ACTIONS(8689), + [anon_sym_restrict] = ACTIONS(8689), + [anon_sym___restrict__] = ACTIONS(8689), + [anon_sym__Atomic] = ACTIONS(8689), + [anon_sym__Noreturn] = ACTIONS(8689), + [anon_sym_noreturn] = ACTIONS(8689), + [anon_sym__Nonnull] = ACTIONS(8689), + [anon_sym_mutable] = ACTIONS(8689), + [anon_sym_constinit] = ACTIONS(8689), + [anon_sym_consteval] = ACTIONS(8689), + [anon_sym_alignas] = ACTIONS(8689), + [anon_sym__Alignas] = ACTIONS(8689), + [sym_primitive_type] = ACTIONS(8689), + [anon_sym_enum] = ACTIONS(8689), + [anon_sym_class] = ACTIONS(8689), + [anon_sym_struct] = ACTIONS(8689), + [anon_sym_union] = ACTIONS(8689), + [anon_sym_typename] = ACTIONS(8689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8689), + [anon_sym_decltype] = ACTIONS(8689), + [anon_sym_explicit] = ACTIONS(8689), + [anon_sym_private] = ACTIONS(8689), + [anon_sym_template] = ACTIONS(8689), + [anon_sym_operator] = ACTIONS(8689), + [anon_sym_friend] = ACTIONS(8689), + [anon_sym_public] = ACTIONS(8689), + [anon_sym_protected] = ACTIONS(8689), + [anon_sym_static_assert] = ACTIONS(8689), + [anon_sym_LBRACK_COLON] = ACTIONS(8691), }, [STATE(3387)] = { - [sym_identifier] = ACTIONS(4172), - [aux_sym_preproc_def_token1] = ACTIONS(4172), - [aux_sym_preproc_if_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4172), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4172), - [sym_preproc_directive] = ACTIONS(4172), - [anon_sym_LPAREN2] = ACTIONS(4174), - [anon_sym_TILDE] = ACTIONS(4174), - [anon_sym_STAR] = ACTIONS(4174), - [anon_sym_AMP_AMP] = ACTIONS(4174), - [anon_sym_AMP] = ACTIONS(4172), - [anon_sym_SEMI] = ACTIONS(4174), - [anon_sym___extension__] = ACTIONS(4172), - [anon_sym_typedef] = ACTIONS(4172), - [anon_sym_virtual] = ACTIONS(4172), - [anon_sym_extern] = ACTIONS(4172), - [anon_sym___attribute__] = ACTIONS(4172), - [anon_sym___attribute] = ACTIONS(4172), - [anon_sym_using] = ACTIONS(4172), - [anon_sym_COLON_COLON] = ACTIONS(4174), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4174), - [anon_sym___declspec] = ACTIONS(4172), - [anon_sym___based] = ACTIONS(4172), - [anon_sym_RBRACE] = ACTIONS(4174), - [anon_sym_signed] = ACTIONS(4172), - [anon_sym_unsigned] = ACTIONS(4172), - [anon_sym_long] = ACTIONS(4172), - [anon_sym_short] = ACTIONS(4172), - [anon_sym_LBRACK] = ACTIONS(4172), - [anon_sym_static] = ACTIONS(4172), - [anon_sym_register] = ACTIONS(4172), - [anon_sym_inline] = ACTIONS(4172), - [anon_sym___inline] = ACTIONS(4172), - [anon_sym___inline__] = ACTIONS(4172), - [anon_sym___forceinline] = ACTIONS(4172), - [anon_sym_thread_local] = ACTIONS(4172), - [anon_sym___thread] = ACTIONS(4172), - [anon_sym_const] = ACTIONS(4172), - [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), - [sym_primitive_type] = ACTIONS(4172), - [anon_sym_enum] = ACTIONS(4172), - [anon_sym_class] = ACTIONS(4172), - [anon_sym_struct] = ACTIONS(4172), - [anon_sym_union] = ACTIONS(4172), - [anon_sym_typename] = ACTIONS(4172), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4172), - [anon_sym_decltype] = ACTIONS(4172), - [anon_sym_explicit] = ACTIONS(4172), - [anon_sym_private] = ACTIONS(4172), - [anon_sym_template] = ACTIONS(4172), - [anon_sym_operator] = ACTIONS(4172), - [anon_sym_friend] = ACTIONS(4172), - [anon_sym_public] = ACTIONS(4172), - [anon_sym_protected] = ACTIONS(4172), - [anon_sym_static_assert] = ACTIONS(4172), - [anon_sym_LBRACK_COLON] = ACTIONS(4174), + [sym_identifier] = ACTIONS(8689), + [aux_sym_preproc_def_token1] = ACTIONS(8689), + [aux_sym_preproc_if_token1] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8689), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8689), + [sym_preproc_directive] = ACTIONS(8689), + [anon_sym_LPAREN2] = ACTIONS(8691), + [anon_sym_TILDE] = ACTIONS(8691), + [anon_sym_STAR] = ACTIONS(8691), + [anon_sym_AMP_AMP] = ACTIONS(8691), + [anon_sym_AMP] = ACTIONS(8689), + [anon_sym_SEMI] = ACTIONS(8691), + [anon_sym___extension__] = ACTIONS(8689), + [anon_sym_typedef] = ACTIONS(8689), + [anon_sym_virtual] = ACTIONS(8689), + [anon_sym_extern] = ACTIONS(8689), + [anon_sym___attribute__] = ACTIONS(8689), + [anon_sym___attribute] = ACTIONS(8689), + [anon_sym_using] = ACTIONS(8689), + [anon_sym_COLON_COLON] = ACTIONS(8691), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8691), + [anon_sym___declspec] = ACTIONS(8689), + [anon_sym___based] = ACTIONS(8689), + [anon_sym_RBRACE] = ACTIONS(8691), + [anon_sym_signed] = ACTIONS(8689), + [anon_sym_unsigned] = ACTIONS(8689), + [anon_sym_long] = ACTIONS(8689), + [anon_sym_short] = ACTIONS(8689), + [anon_sym_LBRACK] = ACTIONS(8689), + [anon_sym_static] = ACTIONS(8689), + [anon_sym_register] = ACTIONS(8689), + [anon_sym_inline] = ACTIONS(8689), + [anon_sym___inline] = ACTIONS(8689), + [anon_sym___inline__] = ACTIONS(8689), + [anon_sym___forceinline] = ACTIONS(8689), + [anon_sym_thread_local] = ACTIONS(8689), + [anon_sym___thread] = ACTIONS(8689), + [anon_sym_const] = ACTIONS(8689), + [anon_sym_constexpr] = ACTIONS(8689), + [anon_sym_volatile] = ACTIONS(8689), + [anon_sym_restrict] = ACTIONS(8689), + [anon_sym___restrict__] = ACTIONS(8689), + [anon_sym__Atomic] = ACTIONS(8689), + [anon_sym__Noreturn] = ACTIONS(8689), + [anon_sym_noreturn] = ACTIONS(8689), + [anon_sym__Nonnull] = ACTIONS(8689), + [anon_sym_mutable] = ACTIONS(8689), + [anon_sym_constinit] = ACTIONS(8689), + [anon_sym_consteval] = ACTIONS(8689), + [anon_sym_alignas] = ACTIONS(8689), + [anon_sym__Alignas] = ACTIONS(8689), + [sym_primitive_type] = ACTIONS(8689), + [anon_sym_enum] = ACTIONS(8689), + [anon_sym_class] = ACTIONS(8689), + [anon_sym_struct] = ACTIONS(8689), + [anon_sym_union] = ACTIONS(8689), + [anon_sym_typename] = ACTIONS(8689), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8689), + [anon_sym_decltype] = ACTIONS(8689), + [anon_sym_explicit] = ACTIONS(8689), + [anon_sym_private] = ACTIONS(8689), + [anon_sym_template] = ACTIONS(8689), + [anon_sym_operator] = ACTIONS(8689), + [anon_sym_friend] = ACTIONS(8689), + [anon_sym_public] = ACTIONS(8689), + [anon_sym_protected] = ACTIONS(8689), + [anon_sym_static_assert] = ACTIONS(8689), + [anon_sym_LBRACK_COLON] = ACTIONS(8691), }, [STATE(3388)] = { - [sym_identifier] = ACTIONS(4176), - [aux_sym_preproc_def_token1] = ACTIONS(4176), - [aux_sym_preproc_if_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4176), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4176), - [sym_preproc_directive] = ACTIONS(4176), - [anon_sym_LPAREN2] = ACTIONS(4178), - [anon_sym_TILDE] = ACTIONS(4178), - [anon_sym_STAR] = ACTIONS(4178), - [anon_sym_AMP_AMP] = ACTIONS(4178), - [anon_sym_AMP] = ACTIONS(4176), - [anon_sym_SEMI] = ACTIONS(4178), - [anon_sym___extension__] = ACTIONS(4176), - [anon_sym_typedef] = ACTIONS(4176), - [anon_sym_virtual] = ACTIONS(4176), - [anon_sym_extern] = ACTIONS(4176), - [anon_sym___attribute__] = ACTIONS(4176), - [anon_sym___attribute] = ACTIONS(4176), - [anon_sym_using] = ACTIONS(4176), - [anon_sym_COLON_COLON] = ACTIONS(4178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4178), - [anon_sym___declspec] = ACTIONS(4176), - [anon_sym___based] = ACTIONS(4176), - [anon_sym_RBRACE] = ACTIONS(4178), - [anon_sym_signed] = ACTIONS(4176), - [anon_sym_unsigned] = ACTIONS(4176), - [anon_sym_long] = ACTIONS(4176), - [anon_sym_short] = ACTIONS(4176), - [anon_sym_LBRACK] = ACTIONS(4176), - [anon_sym_static] = ACTIONS(4176), - [anon_sym_register] = ACTIONS(4176), - [anon_sym_inline] = ACTIONS(4176), - [anon_sym___inline] = ACTIONS(4176), - [anon_sym___inline__] = ACTIONS(4176), - [anon_sym___forceinline] = ACTIONS(4176), - [anon_sym_thread_local] = ACTIONS(4176), - [anon_sym___thread] = ACTIONS(4176), - [anon_sym_const] = ACTIONS(4176), - [anon_sym_constexpr] = ACTIONS(4176), - [anon_sym_volatile] = ACTIONS(4176), - [anon_sym_restrict] = ACTIONS(4176), - [anon_sym___restrict__] = ACTIONS(4176), - [anon_sym__Atomic] = ACTIONS(4176), - [anon_sym__Noreturn] = ACTIONS(4176), - [anon_sym_noreturn] = ACTIONS(4176), - [anon_sym__Nonnull] = ACTIONS(4176), - [anon_sym_mutable] = ACTIONS(4176), - [anon_sym_constinit] = ACTIONS(4176), - [anon_sym_consteval] = ACTIONS(4176), - [anon_sym_alignas] = ACTIONS(4176), - [anon_sym__Alignas] = ACTIONS(4176), - [sym_primitive_type] = ACTIONS(4176), - [anon_sym_enum] = ACTIONS(4176), - [anon_sym_class] = ACTIONS(4176), - [anon_sym_struct] = ACTIONS(4176), - [anon_sym_union] = ACTIONS(4176), - [anon_sym_typename] = ACTIONS(4176), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4176), - [anon_sym_decltype] = ACTIONS(4176), - [anon_sym_explicit] = ACTIONS(4176), - [anon_sym_private] = ACTIONS(4176), - [anon_sym_template] = ACTIONS(4176), - [anon_sym_operator] = ACTIONS(4176), - [anon_sym_friend] = ACTIONS(4176), - [anon_sym_public] = ACTIONS(4176), - [anon_sym_protected] = ACTIONS(4176), - [anon_sym_static_assert] = ACTIONS(4176), - [anon_sym_LBRACK_COLON] = ACTIONS(4178), + [sym_template_argument_list] = STATE(2676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7119), + [anon_sym_COMMA] = ACTIONS(7119), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_DASH] = ACTIONS(7126), + [anon_sym_PLUS] = ACTIONS(7126), + [anon_sym_STAR] = ACTIONS(7126), + [anon_sym_SLASH] = ACTIONS(7126), + [anon_sym_PERCENT] = ACTIONS(7126), + [anon_sym_PIPE_PIPE] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7119), + [anon_sym_PIPE] = ACTIONS(7126), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_AMP] = ACTIONS(7126), + [anon_sym_EQ_EQ] = ACTIONS(7119), + [anon_sym_BANG_EQ] = ACTIONS(7119), + [anon_sym_GT] = ACTIONS(7126), + [anon_sym_GT_EQ] = ACTIONS(7126), + [anon_sym_LT_EQ] = ACTIONS(7126), + [anon_sym_LT] = ACTIONS(8076), + [anon_sym_LT_LT] = ACTIONS(7126), + [anon_sym_GT_GT] = ACTIONS(7126), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_EQ] = ACTIONS(7126), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7119), + [anon_sym_STAR_EQ] = ACTIONS(7119), + [anon_sym_SLASH_EQ] = ACTIONS(7119), + [anon_sym_PERCENT_EQ] = ACTIONS(7119), + [anon_sym_PLUS_EQ] = ACTIONS(7119), + [anon_sym_DASH_EQ] = ACTIONS(7119), + [anon_sym_LT_LT_EQ] = ACTIONS(7119), + [anon_sym_GT_GT_EQ] = ACTIONS(7126), + [anon_sym_AMP_EQ] = ACTIONS(7119), + [anon_sym_CARET_EQ] = ACTIONS(7119), + [anon_sym_PIPE_EQ] = ACTIONS(7119), + [anon_sym_and_eq] = ACTIONS(7119), + [anon_sym_or_eq] = ACTIONS(7119), + [anon_sym_xor_eq] = ACTIONS(7119), + [anon_sym_LT_EQ_GT] = ACTIONS(7119), + [anon_sym_or] = ACTIONS(7126), + [anon_sym_and] = ACTIONS(7126), + [anon_sym_bitor] = ACTIONS(7119), + [anon_sym_xor] = ACTIONS(7126), + [anon_sym_bitand] = ACTIONS(7119), + [anon_sym_not_eq] = ACTIONS(7119), + [anon_sym_DASH_DASH] = ACTIONS(7119), + [anon_sym_PLUS_PLUS] = ACTIONS(7119), + [anon_sym_DOT] = ACTIONS(7126), + [anon_sym_DOT_STAR] = ACTIONS(7119), + [anon_sym_DASH_GT] = ACTIONS(7119), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7119), }, [STATE(3389)] = { - [sym_template_argument_list] = STATE(3613), - [sym_identifier] = ACTIONS(7085), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_TILDE] = ACTIONS(7090), - [anon_sym_STAR] = ACTIONS(7090), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(9099), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym_virtual] = ACTIONS(7085), - [anon_sym_extern] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_using] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), - [anon_sym___declspec] = ACTIONS(7085), - [anon_sym___based] = ACTIONS(7085), - [anon_sym___cdecl] = ACTIONS(7085), - [anon_sym___clrcall] = ACTIONS(7085), - [anon_sym___stdcall] = ACTIONS(7085), - [anon_sym___fastcall] = ACTIONS(7085), - [anon_sym___thiscall] = ACTIONS(7085), - [anon_sym___vectorcall] = ACTIONS(7085), - [anon_sym_signed] = ACTIONS(7085), - [anon_sym_unsigned] = ACTIONS(7085), - [anon_sym_long] = ACTIONS(7085), - [anon_sym_short] = ACTIONS(7085), - [anon_sym_LBRACK] = ACTIONS(7085), - [anon_sym_static] = ACTIONS(7085), - [anon_sym_register] = ACTIONS(7085), - [anon_sym_inline] = ACTIONS(7085), - [anon_sym___inline] = ACTIONS(7085), - [anon_sym___inline__] = ACTIONS(7085), - [anon_sym___forceinline] = ACTIONS(7085), - [anon_sym_thread_local] = ACTIONS(7085), - [anon_sym___thread] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [sym_primitive_type] = ACTIONS(7085), - [anon_sym_enum] = ACTIONS(7085), - [anon_sym_class] = ACTIONS(7085), - [anon_sym_struct] = ACTIONS(7085), - [anon_sym_union] = ACTIONS(7085), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_typename] = ACTIONS(7085), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7085), - [anon_sym_decltype] = ACTIONS(7085), - [anon_sym_explicit] = ACTIONS(7085), - [anon_sym_template] = ACTIONS(7085), - [anon_sym_operator] = ACTIONS(7085), - [anon_sym_friend] = ACTIONS(7085), - [anon_sym_concept] = ACTIONS(7085), - [anon_sym_LBRACK_COLON] = ACTIONS(7090), + [sym_identifier] = ACTIONS(8681), + [aux_sym_preproc_def_token1] = ACTIONS(8681), + [aux_sym_preproc_if_token1] = ACTIONS(8681), + [aux_sym_preproc_if_token2] = ACTIONS(8681), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8681), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8681), + [sym_preproc_directive] = ACTIONS(8681), + [anon_sym_LPAREN2] = ACTIONS(8683), + [anon_sym_TILDE] = ACTIONS(8683), + [anon_sym_STAR] = ACTIONS(8683), + [anon_sym_AMP_AMP] = ACTIONS(8683), + [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_SEMI] = ACTIONS(8683), + [anon_sym___extension__] = ACTIONS(8681), + [anon_sym_typedef] = ACTIONS(8681), + [anon_sym_virtual] = ACTIONS(8681), + [anon_sym_extern] = ACTIONS(8681), + [anon_sym___attribute__] = ACTIONS(8681), + [anon_sym___attribute] = ACTIONS(8681), + [anon_sym_using] = ACTIONS(8681), + [anon_sym_COLON_COLON] = ACTIONS(8683), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8683), + [anon_sym___declspec] = ACTIONS(8681), + [anon_sym___based] = ACTIONS(8681), + [anon_sym_signed] = ACTIONS(8681), + [anon_sym_unsigned] = ACTIONS(8681), + [anon_sym_long] = ACTIONS(8681), + [anon_sym_short] = ACTIONS(8681), + [anon_sym_LBRACK] = ACTIONS(8681), + [anon_sym_static] = ACTIONS(8681), + [anon_sym_register] = ACTIONS(8681), + [anon_sym_inline] = ACTIONS(8681), + [anon_sym___inline] = ACTIONS(8681), + [anon_sym___inline__] = ACTIONS(8681), + [anon_sym___forceinline] = ACTIONS(8681), + [anon_sym_thread_local] = ACTIONS(8681), + [anon_sym___thread] = ACTIONS(8681), + [anon_sym_const] = ACTIONS(8681), + [anon_sym_constexpr] = ACTIONS(8681), + [anon_sym_volatile] = ACTIONS(8681), + [anon_sym_restrict] = ACTIONS(8681), + [anon_sym___restrict__] = ACTIONS(8681), + [anon_sym__Atomic] = ACTIONS(8681), + [anon_sym__Noreturn] = ACTIONS(8681), + [anon_sym_noreturn] = ACTIONS(8681), + [anon_sym__Nonnull] = ACTIONS(8681), + [anon_sym_mutable] = ACTIONS(8681), + [anon_sym_constinit] = ACTIONS(8681), + [anon_sym_consteval] = ACTIONS(8681), + [anon_sym_alignas] = ACTIONS(8681), + [anon_sym__Alignas] = ACTIONS(8681), + [sym_primitive_type] = ACTIONS(8681), + [anon_sym_enum] = ACTIONS(8681), + [anon_sym_class] = ACTIONS(8681), + [anon_sym_struct] = ACTIONS(8681), + [anon_sym_union] = ACTIONS(8681), + [anon_sym_typename] = ACTIONS(8681), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8681), + [anon_sym_decltype] = ACTIONS(8681), + [anon_sym_explicit] = ACTIONS(8681), + [anon_sym_private] = ACTIONS(8681), + [anon_sym_template] = ACTIONS(8681), + [anon_sym_operator] = ACTIONS(8681), + [anon_sym_friend] = ACTIONS(8681), + [anon_sym_public] = ACTIONS(8681), + [anon_sym_protected] = ACTIONS(8681), + [anon_sym_static_assert] = ACTIONS(8681), + [anon_sym_LBRACK_COLON] = ACTIONS(8683), }, [STATE(3390)] = { - [sym_identifier] = ACTIONS(4180), - [aux_sym_preproc_def_token1] = ACTIONS(4180), - [aux_sym_preproc_if_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4180), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4180), - [sym_preproc_directive] = ACTIONS(4180), - [anon_sym_LPAREN2] = ACTIONS(4182), - [anon_sym_TILDE] = ACTIONS(4182), - [anon_sym_STAR] = ACTIONS(4182), - [anon_sym_AMP_AMP] = ACTIONS(4182), - [anon_sym_AMP] = ACTIONS(4180), - [anon_sym_SEMI] = ACTIONS(4182), - [anon_sym___extension__] = ACTIONS(4180), - [anon_sym_typedef] = ACTIONS(4180), - [anon_sym_virtual] = ACTIONS(4180), - [anon_sym_extern] = ACTIONS(4180), - [anon_sym___attribute__] = ACTIONS(4180), - [anon_sym___attribute] = ACTIONS(4180), - [anon_sym_using] = ACTIONS(4180), - [anon_sym_COLON_COLON] = ACTIONS(4182), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4182), - [anon_sym___declspec] = ACTIONS(4180), - [anon_sym___based] = ACTIONS(4180), - [anon_sym_RBRACE] = ACTIONS(4182), - [anon_sym_signed] = ACTIONS(4180), - [anon_sym_unsigned] = ACTIONS(4180), - [anon_sym_long] = ACTIONS(4180), - [anon_sym_short] = ACTIONS(4180), - [anon_sym_LBRACK] = ACTIONS(4180), - [anon_sym_static] = ACTIONS(4180), - [anon_sym_register] = ACTIONS(4180), - [anon_sym_inline] = ACTIONS(4180), - [anon_sym___inline] = ACTIONS(4180), - [anon_sym___inline__] = ACTIONS(4180), - [anon_sym___forceinline] = ACTIONS(4180), - [anon_sym_thread_local] = ACTIONS(4180), - [anon_sym___thread] = ACTIONS(4180), - [anon_sym_const] = ACTIONS(4180), - [anon_sym_constexpr] = ACTIONS(4180), - [anon_sym_volatile] = ACTIONS(4180), - [anon_sym_restrict] = ACTIONS(4180), - [anon_sym___restrict__] = ACTIONS(4180), - [anon_sym__Atomic] = ACTIONS(4180), - [anon_sym__Noreturn] = ACTIONS(4180), - [anon_sym_noreturn] = ACTIONS(4180), - [anon_sym__Nonnull] = ACTIONS(4180), - [anon_sym_mutable] = ACTIONS(4180), - [anon_sym_constinit] = ACTIONS(4180), - [anon_sym_consteval] = ACTIONS(4180), - [anon_sym_alignas] = ACTIONS(4180), - [anon_sym__Alignas] = ACTIONS(4180), - [sym_primitive_type] = ACTIONS(4180), - [anon_sym_enum] = ACTIONS(4180), - [anon_sym_class] = ACTIONS(4180), - [anon_sym_struct] = ACTIONS(4180), - [anon_sym_union] = ACTIONS(4180), - [anon_sym_typename] = ACTIONS(4180), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4180), - [anon_sym_decltype] = ACTIONS(4180), - [anon_sym_explicit] = ACTIONS(4180), - [anon_sym_private] = ACTIONS(4180), - [anon_sym_template] = ACTIONS(4180), - [anon_sym_operator] = ACTIONS(4180), - [anon_sym_friend] = ACTIONS(4180), - [anon_sym_public] = ACTIONS(4180), - [anon_sym_protected] = ACTIONS(4180), - [anon_sym_static_assert] = ACTIONS(4180), - [anon_sym_LBRACK_COLON] = ACTIONS(4182), + [sym_string_literal] = STATE(2577), + [sym_raw_string_literal] = STATE(2577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9109), + [anon_sym_COMMA] = ACTIONS(9109), + [anon_sym_RPAREN] = ACTIONS(9109), + [anon_sym_LPAREN2] = ACTIONS(9109), + [anon_sym_DASH] = ACTIONS(9107), + [anon_sym_PLUS] = ACTIONS(9107), + [anon_sym_STAR] = ACTIONS(9107), + [anon_sym_SLASH] = ACTIONS(9107), + [anon_sym_PERCENT] = ACTIONS(9107), + [anon_sym_PIPE_PIPE] = ACTIONS(9109), + [anon_sym_AMP_AMP] = ACTIONS(9109), + [anon_sym_PIPE] = ACTIONS(9107), + [anon_sym_CARET] = ACTIONS(9107), + [anon_sym_AMP] = ACTIONS(9107), + [anon_sym_EQ_EQ] = ACTIONS(9109), + [anon_sym_BANG_EQ] = ACTIONS(9109), + [anon_sym_GT] = ACTIONS(9107), + [anon_sym_GT_EQ] = ACTIONS(9109), + [anon_sym_LT_EQ] = ACTIONS(9107), + [anon_sym_LT] = ACTIONS(9107), + [anon_sym_LT_LT] = ACTIONS(9107), + [anon_sym_GT_GT] = ACTIONS(9107), + [anon_sym_SEMI] = ACTIONS(9109), + [anon_sym_COLON] = ACTIONS(9107), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9109), + [anon_sym_RBRACE] = ACTIONS(9109), + [anon_sym_LBRACK] = ACTIONS(9109), + [anon_sym_EQ] = ACTIONS(9107), + [anon_sym_QMARK] = ACTIONS(9109), + [anon_sym_STAR_EQ] = ACTIONS(9109), + [anon_sym_SLASH_EQ] = ACTIONS(9109), + [anon_sym_PERCENT_EQ] = ACTIONS(9109), + [anon_sym_PLUS_EQ] = ACTIONS(9109), + [anon_sym_DASH_EQ] = ACTIONS(9109), + [anon_sym_LT_LT_EQ] = ACTIONS(9109), + [anon_sym_GT_GT_EQ] = ACTIONS(9109), + [anon_sym_AMP_EQ] = ACTIONS(9109), + [anon_sym_CARET_EQ] = ACTIONS(9109), + [anon_sym_PIPE_EQ] = ACTIONS(9109), + [anon_sym_and_eq] = ACTIONS(9107), + [anon_sym_or_eq] = ACTIONS(9107), + [anon_sym_xor_eq] = ACTIONS(9107), + [anon_sym_LT_EQ_GT] = ACTIONS(9109), + [anon_sym_or] = ACTIONS(9107), + [anon_sym_and] = ACTIONS(9107), + [anon_sym_bitor] = ACTIONS(9107), + [anon_sym_xor] = ACTIONS(9107), + [anon_sym_bitand] = ACTIONS(9107), + [anon_sym_not_eq] = ACTIONS(9107), + [anon_sym_DASH_DASH] = ACTIONS(9109), + [anon_sym_PLUS_PLUS] = ACTIONS(9109), + [anon_sym_DOT] = ACTIONS(9107), + [anon_sym_DOT_STAR] = ACTIONS(9109), + [anon_sym_DASH_GT] = ACTIONS(9109), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), + [anon_sym_COLON_RBRACK] = ACTIONS(9109), + [sym_literal_suffix] = ACTIONS(9107), }, [STATE(3391)] = { - [sym_identifier] = ACTIONS(4184), - [aux_sym_preproc_def_token1] = ACTIONS(4184), - [aux_sym_preproc_if_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4184), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4184), - [sym_preproc_directive] = ACTIONS(4184), - [anon_sym_LPAREN2] = ACTIONS(4186), - [anon_sym_TILDE] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4186), - [anon_sym_AMP_AMP] = ACTIONS(4186), - [anon_sym_AMP] = ACTIONS(4184), - [anon_sym_SEMI] = ACTIONS(4186), - [anon_sym___extension__] = ACTIONS(4184), - [anon_sym_typedef] = ACTIONS(4184), - [anon_sym_virtual] = ACTIONS(4184), - [anon_sym_extern] = ACTIONS(4184), - [anon_sym___attribute__] = ACTIONS(4184), - [anon_sym___attribute] = ACTIONS(4184), - [anon_sym_using] = ACTIONS(4184), - [anon_sym_COLON_COLON] = ACTIONS(4186), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4186), - [anon_sym___declspec] = ACTIONS(4184), - [anon_sym___based] = ACTIONS(4184), - [anon_sym_RBRACE] = ACTIONS(4186), - [anon_sym_signed] = ACTIONS(4184), - [anon_sym_unsigned] = ACTIONS(4184), - [anon_sym_long] = ACTIONS(4184), - [anon_sym_short] = ACTIONS(4184), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_static] = ACTIONS(4184), - [anon_sym_register] = ACTIONS(4184), - [anon_sym_inline] = ACTIONS(4184), - [anon_sym___inline] = ACTIONS(4184), - [anon_sym___inline__] = ACTIONS(4184), - [anon_sym___forceinline] = ACTIONS(4184), - [anon_sym_thread_local] = ACTIONS(4184), - [anon_sym___thread] = ACTIONS(4184), - [anon_sym_const] = ACTIONS(4184), - [anon_sym_constexpr] = ACTIONS(4184), - [anon_sym_volatile] = ACTIONS(4184), - [anon_sym_restrict] = ACTIONS(4184), - [anon_sym___restrict__] = ACTIONS(4184), - [anon_sym__Atomic] = ACTIONS(4184), - [anon_sym__Noreturn] = ACTIONS(4184), - [anon_sym_noreturn] = ACTIONS(4184), - [anon_sym__Nonnull] = ACTIONS(4184), - [anon_sym_mutable] = ACTIONS(4184), - [anon_sym_constinit] = ACTIONS(4184), - [anon_sym_consteval] = ACTIONS(4184), - [anon_sym_alignas] = ACTIONS(4184), - [anon_sym__Alignas] = ACTIONS(4184), - [sym_primitive_type] = ACTIONS(4184), - [anon_sym_enum] = ACTIONS(4184), - [anon_sym_class] = ACTIONS(4184), - [anon_sym_struct] = ACTIONS(4184), - [anon_sym_union] = ACTIONS(4184), - [anon_sym_typename] = ACTIONS(4184), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4184), - [anon_sym_decltype] = ACTIONS(4184), - [anon_sym_explicit] = ACTIONS(4184), - [anon_sym_private] = ACTIONS(4184), - [anon_sym_template] = ACTIONS(4184), - [anon_sym_operator] = ACTIONS(4184), - [anon_sym_friend] = ACTIONS(4184), - [anon_sym_public] = ACTIONS(4184), - [anon_sym_protected] = ACTIONS(4184), - [anon_sym_static_assert] = ACTIONS(4184), - [anon_sym_LBRACK_COLON] = ACTIONS(4186), + [sym_identifier] = ACTIONS(3869), + [aux_sym_preproc_def_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token1] = ACTIONS(3869), + [aux_sym_preproc_if_token2] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3869), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3869), + [sym_preproc_directive] = ACTIONS(3869), + [anon_sym_LPAREN2] = ACTIONS(3871), + [anon_sym_TILDE] = ACTIONS(3871), + [anon_sym_STAR] = ACTIONS(3871), + [anon_sym_AMP_AMP] = ACTIONS(3871), + [anon_sym_AMP] = ACTIONS(3869), + [anon_sym_SEMI] = ACTIONS(3871), + [anon_sym___extension__] = ACTIONS(3869), + [anon_sym_typedef] = ACTIONS(3869), + [anon_sym_virtual] = ACTIONS(3869), + [anon_sym_extern] = ACTIONS(3869), + [anon_sym___attribute__] = ACTIONS(3869), + [anon_sym___attribute] = ACTIONS(3869), + [anon_sym_using] = ACTIONS(3869), + [anon_sym_COLON_COLON] = ACTIONS(3871), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3871), + [anon_sym___declspec] = ACTIONS(3869), + [anon_sym___based] = ACTIONS(3869), + [anon_sym_signed] = ACTIONS(3869), + [anon_sym_unsigned] = ACTIONS(3869), + [anon_sym_long] = ACTIONS(3869), + [anon_sym_short] = ACTIONS(3869), + [anon_sym_LBRACK] = ACTIONS(3869), + [anon_sym_static] = ACTIONS(3869), + [anon_sym_register] = ACTIONS(3869), + [anon_sym_inline] = ACTIONS(3869), + [anon_sym___inline] = ACTIONS(3869), + [anon_sym___inline__] = ACTIONS(3869), + [anon_sym___forceinline] = ACTIONS(3869), + [anon_sym_thread_local] = ACTIONS(3869), + [anon_sym___thread] = ACTIONS(3869), + [anon_sym_const] = ACTIONS(3869), + [anon_sym_constexpr] = ACTIONS(3869), + [anon_sym_volatile] = ACTIONS(3869), + [anon_sym_restrict] = ACTIONS(3869), + [anon_sym___restrict__] = ACTIONS(3869), + [anon_sym__Atomic] = ACTIONS(3869), + [anon_sym__Noreturn] = ACTIONS(3869), + [anon_sym_noreturn] = ACTIONS(3869), + [anon_sym__Nonnull] = ACTIONS(3869), + [anon_sym_mutable] = ACTIONS(3869), + [anon_sym_constinit] = ACTIONS(3869), + [anon_sym_consteval] = ACTIONS(3869), + [anon_sym_alignas] = ACTIONS(3869), + [anon_sym__Alignas] = ACTIONS(3869), + [sym_primitive_type] = ACTIONS(3869), + [anon_sym_enum] = ACTIONS(3869), + [anon_sym_class] = ACTIONS(3869), + [anon_sym_struct] = ACTIONS(3869), + [anon_sym_union] = ACTIONS(3869), + [anon_sym_typename] = ACTIONS(3869), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3869), + [anon_sym_decltype] = ACTIONS(3869), + [anon_sym_explicit] = ACTIONS(3869), + [anon_sym_private] = ACTIONS(3869), + [anon_sym_template] = ACTIONS(3869), + [anon_sym_operator] = ACTIONS(3869), + [anon_sym_friend] = ACTIONS(3869), + [anon_sym_public] = ACTIONS(3869), + [anon_sym_protected] = ACTIONS(3869), + [anon_sym_static_assert] = ACTIONS(3869), + [anon_sym_LBRACK_COLON] = ACTIONS(3871), }, [STATE(3392)] = { - [sym_template_argument_list] = STATE(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), - [anon_sym_COMMA] = ACTIONS(7087), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_DASH] = ACTIONS(7094), - [anon_sym_PLUS] = ACTIONS(7094), - [anon_sym_STAR] = ACTIONS(7094), - [anon_sym_SLASH] = ACTIONS(7094), - [anon_sym_PERCENT] = ACTIONS(7094), - [anon_sym_PIPE_PIPE] = ACTIONS(7087), - [anon_sym_AMP_AMP] = ACTIONS(7087), - [anon_sym_PIPE] = ACTIONS(7094), - [anon_sym_CARET] = ACTIONS(7094), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_EQ_EQ] = ACTIONS(7087), - [anon_sym_BANG_EQ] = ACTIONS(7087), - [anon_sym_GT] = ACTIONS(7094), - [anon_sym_GT_EQ] = ACTIONS(7087), - [anon_sym_LT_EQ] = ACTIONS(7094), - [anon_sym_LT] = ACTIONS(8064), - [anon_sym_LT_LT] = ACTIONS(7094), - [anon_sym_GT_GT] = ACTIONS(7094), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7087), - [anon_sym_RBRACK] = ACTIONS(7087), - [anon_sym_EQ] = ACTIONS(7094), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7087), - [anon_sym_STAR_EQ] = ACTIONS(7087), - [anon_sym_SLASH_EQ] = ACTIONS(7087), - [anon_sym_PERCENT_EQ] = ACTIONS(7087), - [anon_sym_PLUS_EQ] = ACTIONS(7087), - [anon_sym_DASH_EQ] = ACTIONS(7087), - [anon_sym_LT_LT_EQ] = ACTIONS(7087), - [anon_sym_GT_GT_EQ] = ACTIONS(7087), - [anon_sym_AMP_EQ] = ACTIONS(7087), - [anon_sym_CARET_EQ] = ACTIONS(7087), - [anon_sym_PIPE_EQ] = ACTIONS(7087), - [anon_sym_and_eq] = ACTIONS(7087), - [anon_sym_or_eq] = ACTIONS(7087), - [anon_sym_xor_eq] = ACTIONS(7087), - [anon_sym_LT_EQ_GT] = ACTIONS(7087), - [anon_sym_or] = ACTIONS(7094), - [anon_sym_and] = ACTIONS(7094), - [anon_sym_bitor] = ACTIONS(7087), - [anon_sym_xor] = ACTIONS(7094), - [anon_sym_bitand] = ACTIONS(7087), - [anon_sym_not_eq] = ACTIONS(7087), - [anon_sym_DASH_DASH] = ACTIONS(7087), - [anon_sym_PLUS_PLUS] = ACTIONS(7087), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_DOT_STAR] = ACTIONS(7087), - [anon_sym_DASH_GT] = ACTIONS(7087), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3873), + [aux_sym_preproc_def_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token2] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3875), + [anon_sym_TILDE] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym___extension__] = ACTIONS(3873), + [anon_sym_typedef] = ACTIONS(3873), + [anon_sym_virtual] = ACTIONS(3873), + [anon_sym_extern] = ACTIONS(3873), + [anon_sym___attribute__] = ACTIONS(3873), + [anon_sym___attribute] = ACTIONS(3873), + [anon_sym_using] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3875), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), + [anon_sym___declspec] = ACTIONS(3873), + [anon_sym___based] = ACTIONS(3873), + [anon_sym_signed] = ACTIONS(3873), + [anon_sym_unsigned] = ACTIONS(3873), + [anon_sym_long] = ACTIONS(3873), + [anon_sym_short] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3873), + [anon_sym_static] = ACTIONS(3873), + [anon_sym_register] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym___inline] = ACTIONS(3873), + [anon_sym___inline__] = ACTIONS(3873), + [anon_sym___forceinline] = ACTIONS(3873), + [anon_sym_thread_local] = ACTIONS(3873), + [anon_sym___thread] = ACTIONS(3873), + [anon_sym_const] = ACTIONS(3873), + [anon_sym_constexpr] = ACTIONS(3873), + [anon_sym_volatile] = ACTIONS(3873), + [anon_sym_restrict] = ACTIONS(3873), + [anon_sym___restrict__] = ACTIONS(3873), + [anon_sym__Atomic] = ACTIONS(3873), + [anon_sym__Noreturn] = ACTIONS(3873), + [anon_sym_noreturn] = ACTIONS(3873), + [anon_sym__Nonnull] = ACTIONS(3873), + [anon_sym_mutable] = ACTIONS(3873), + [anon_sym_constinit] = ACTIONS(3873), + [anon_sym_consteval] = ACTIONS(3873), + [anon_sym_alignas] = ACTIONS(3873), + [anon_sym__Alignas] = ACTIONS(3873), + [sym_primitive_type] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3873), + [anon_sym_union] = ACTIONS(3873), + [anon_sym_typename] = ACTIONS(3873), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3873), + [anon_sym_decltype] = ACTIONS(3873), + [anon_sym_explicit] = ACTIONS(3873), + [anon_sym_private] = ACTIONS(3873), + [anon_sym_template] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_friend] = ACTIONS(3873), + [anon_sym_public] = ACTIONS(3873), + [anon_sym_protected] = ACTIONS(3873), + [anon_sym_static_assert] = ACTIONS(3873), + [anon_sym_LBRACK_COLON] = ACTIONS(3875), }, [STATE(3393)] = { - [sym_identifier] = ACTIONS(3626), - [aux_sym_preproc_def_token1] = ACTIONS(3626), - [aux_sym_preproc_if_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3626), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3626), - [sym_preproc_directive] = ACTIONS(3626), - [anon_sym_LPAREN2] = ACTIONS(3628), - [anon_sym_TILDE] = ACTIONS(3628), - [anon_sym_STAR] = ACTIONS(3628), - [anon_sym_AMP_AMP] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3626), - [anon_sym_SEMI] = ACTIONS(3628), - [anon_sym___extension__] = ACTIONS(3626), - [anon_sym_typedef] = ACTIONS(3626), - [anon_sym_virtual] = ACTIONS(3626), - [anon_sym_extern] = ACTIONS(3626), - [anon_sym___attribute__] = ACTIONS(3626), - [anon_sym___attribute] = ACTIONS(3626), - [anon_sym_using] = ACTIONS(3626), - [anon_sym_COLON_COLON] = ACTIONS(3628), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3628), - [anon_sym___declspec] = ACTIONS(3626), - [anon_sym___based] = ACTIONS(3626), - [anon_sym_RBRACE] = ACTIONS(3628), - [anon_sym_signed] = ACTIONS(3626), - [anon_sym_unsigned] = ACTIONS(3626), - [anon_sym_long] = ACTIONS(3626), - [anon_sym_short] = ACTIONS(3626), - [anon_sym_LBRACK] = ACTIONS(3626), - [anon_sym_static] = ACTIONS(3626), - [anon_sym_register] = ACTIONS(3626), - [anon_sym_inline] = ACTIONS(3626), - [anon_sym___inline] = ACTIONS(3626), - [anon_sym___inline__] = ACTIONS(3626), - [anon_sym___forceinline] = ACTIONS(3626), - [anon_sym_thread_local] = ACTIONS(3626), - [anon_sym___thread] = ACTIONS(3626), - [anon_sym_const] = ACTIONS(3626), - [anon_sym_constexpr] = ACTIONS(3626), - [anon_sym_volatile] = ACTIONS(3626), - [anon_sym_restrict] = ACTIONS(3626), - [anon_sym___restrict__] = ACTIONS(3626), - [anon_sym__Atomic] = ACTIONS(3626), - [anon_sym__Noreturn] = ACTIONS(3626), - [anon_sym_noreturn] = ACTIONS(3626), - [anon_sym__Nonnull] = ACTIONS(3626), - [anon_sym_mutable] = ACTIONS(3626), - [anon_sym_constinit] = ACTIONS(3626), - [anon_sym_consteval] = ACTIONS(3626), - [anon_sym_alignas] = ACTIONS(3626), - [anon_sym__Alignas] = ACTIONS(3626), - [sym_primitive_type] = ACTIONS(3626), - [anon_sym_enum] = ACTIONS(3626), - [anon_sym_class] = ACTIONS(3626), - [anon_sym_struct] = ACTIONS(3626), - [anon_sym_union] = ACTIONS(3626), - [anon_sym_typename] = ACTIONS(3626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3626), - [anon_sym_decltype] = ACTIONS(3626), - [anon_sym_explicit] = ACTIONS(3626), - [anon_sym_private] = ACTIONS(3626), - [anon_sym_template] = ACTIONS(3626), - [anon_sym_operator] = ACTIONS(3626), - [anon_sym_friend] = ACTIONS(3626), - [anon_sym_public] = ACTIONS(3626), - [anon_sym_protected] = ACTIONS(3626), - [anon_sym_static_assert] = ACTIONS(3626), - [anon_sym_LBRACK_COLON] = ACTIONS(3628), + [sym_identifier] = ACTIONS(4281), + [aux_sym_preproc_def_token1] = ACTIONS(4281), + [aux_sym_preproc_if_token1] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4281), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4281), + [sym_preproc_directive] = ACTIONS(4281), + [anon_sym_LPAREN2] = ACTIONS(4283), + [anon_sym_TILDE] = ACTIONS(4283), + [anon_sym_STAR] = ACTIONS(4283), + [anon_sym_AMP_AMP] = ACTIONS(4283), + [anon_sym_AMP] = ACTIONS(4281), + [anon_sym_SEMI] = ACTIONS(4283), + [anon_sym___extension__] = ACTIONS(4281), + [anon_sym_typedef] = ACTIONS(4281), + [anon_sym_virtual] = ACTIONS(4281), + [anon_sym_extern] = ACTIONS(4281), + [anon_sym___attribute__] = ACTIONS(4281), + [anon_sym___attribute] = ACTIONS(4281), + [anon_sym_using] = ACTIONS(4281), + [anon_sym_COLON_COLON] = ACTIONS(4283), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4283), + [anon_sym___declspec] = ACTIONS(4281), + [anon_sym___based] = ACTIONS(4281), + [anon_sym_RBRACE] = ACTIONS(4283), + [anon_sym_signed] = ACTIONS(4281), + [anon_sym_unsigned] = ACTIONS(4281), + [anon_sym_long] = ACTIONS(4281), + [anon_sym_short] = ACTIONS(4281), + [anon_sym_LBRACK] = ACTIONS(4281), + [anon_sym_static] = ACTIONS(4281), + [anon_sym_register] = ACTIONS(4281), + [anon_sym_inline] = ACTIONS(4281), + [anon_sym___inline] = ACTIONS(4281), + [anon_sym___inline__] = ACTIONS(4281), + [anon_sym___forceinline] = ACTIONS(4281), + [anon_sym_thread_local] = ACTIONS(4281), + [anon_sym___thread] = ACTIONS(4281), + [anon_sym_const] = ACTIONS(4281), + [anon_sym_constexpr] = ACTIONS(4281), + [anon_sym_volatile] = ACTIONS(4281), + [anon_sym_restrict] = ACTIONS(4281), + [anon_sym___restrict__] = ACTIONS(4281), + [anon_sym__Atomic] = ACTIONS(4281), + [anon_sym__Noreturn] = ACTIONS(4281), + [anon_sym_noreturn] = ACTIONS(4281), + [anon_sym__Nonnull] = ACTIONS(4281), + [anon_sym_mutable] = ACTIONS(4281), + [anon_sym_constinit] = ACTIONS(4281), + [anon_sym_consteval] = ACTIONS(4281), + [anon_sym_alignas] = ACTIONS(4281), + [anon_sym__Alignas] = ACTIONS(4281), + [sym_primitive_type] = ACTIONS(4281), + [anon_sym_enum] = ACTIONS(4281), + [anon_sym_class] = ACTIONS(4281), + [anon_sym_struct] = ACTIONS(4281), + [anon_sym_union] = ACTIONS(4281), + [anon_sym_typename] = ACTIONS(4281), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4281), + [anon_sym_decltype] = ACTIONS(4281), + [anon_sym_explicit] = ACTIONS(4281), + [anon_sym_private] = ACTIONS(4281), + [anon_sym_template] = ACTIONS(4281), + [anon_sym_operator] = ACTIONS(4281), + [anon_sym_friend] = ACTIONS(4281), + [anon_sym_public] = ACTIONS(4281), + [anon_sym_protected] = ACTIONS(4281), + [anon_sym_static_assert] = ACTIONS(4281), + [anon_sym_LBRACK_COLON] = ACTIONS(4283), }, [STATE(3394)] = { - [sym_identifier] = ACTIONS(3630), - [aux_sym_preproc_def_token1] = ACTIONS(3630), - [aux_sym_preproc_if_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3630), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3630), - [sym_preproc_directive] = ACTIONS(3630), - [anon_sym_LPAREN2] = ACTIONS(3632), - [anon_sym_TILDE] = ACTIONS(3632), - [anon_sym_STAR] = ACTIONS(3632), - [anon_sym_AMP_AMP] = ACTIONS(3632), - [anon_sym_AMP] = ACTIONS(3630), - [anon_sym_SEMI] = ACTIONS(3632), - [anon_sym___extension__] = ACTIONS(3630), - [anon_sym_typedef] = ACTIONS(3630), - [anon_sym_virtual] = ACTIONS(3630), - [anon_sym_extern] = ACTIONS(3630), - [anon_sym___attribute__] = ACTIONS(3630), - [anon_sym___attribute] = ACTIONS(3630), - [anon_sym_using] = ACTIONS(3630), - [anon_sym_COLON_COLON] = ACTIONS(3632), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3632), - [anon_sym___declspec] = ACTIONS(3630), - [anon_sym___based] = ACTIONS(3630), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_signed] = ACTIONS(3630), - [anon_sym_unsigned] = ACTIONS(3630), - [anon_sym_long] = ACTIONS(3630), - [anon_sym_short] = ACTIONS(3630), - [anon_sym_LBRACK] = ACTIONS(3630), - [anon_sym_static] = ACTIONS(3630), - [anon_sym_register] = ACTIONS(3630), - [anon_sym_inline] = ACTIONS(3630), - [anon_sym___inline] = ACTIONS(3630), - [anon_sym___inline__] = ACTIONS(3630), - [anon_sym___forceinline] = ACTIONS(3630), - [anon_sym_thread_local] = ACTIONS(3630), - [anon_sym___thread] = ACTIONS(3630), - [anon_sym_const] = ACTIONS(3630), - [anon_sym_constexpr] = ACTIONS(3630), - [anon_sym_volatile] = ACTIONS(3630), - [anon_sym_restrict] = ACTIONS(3630), - [anon_sym___restrict__] = ACTIONS(3630), - [anon_sym__Atomic] = ACTIONS(3630), - [anon_sym__Noreturn] = ACTIONS(3630), - [anon_sym_noreturn] = ACTIONS(3630), - [anon_sym__Nonnull] = ACTIONS(3630), - [anon_sym_mutable] = ACTIONS(3630), - [anon_sym_constinit] = ACTIONS(3630), - [anon_sym_consteval] = ACTIONS(3630), - [anon_sym_alignas] = ACTIONS(3630), - [anon_sym__Alignas] = ACTIONS(3630), - [sym_primitive_type] = ACTIONS(3630), - [anon_sym_enum] = ACTIONS(3630), - [anon_sym_class] = ACTIONS(3630), - [anon_sym_struct] = ACTIONS(3630), - [anon_sym_union] = ACTIONS(3630), - [anon_sym_typename] = ACTIONS(3630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3630), - [anon_sym_decltype] = ACTIONS(3630), - [anon_sym_explicit] = ACTIONS(3630), - [anon_sym_private] = ACTIONS(3630), - [anon_sym_template] = ACTIONS(3630), - [anon_sym_operator] = ACTIONS(3630), - [anon_sym_friend] = ACTIONS(3630), - [anon_sym_public] = ACTIONS(3630), - [anon_sym_protected] = ACTIONS(3630), - [anon_sym_static_assert] = ACTIONS(3630), - [anon_sym_LBRACK_COLON] = ACTIONS(3632), + [sym_identifier] = ACTIONS(3873), + [aux_sym_preproc_def_token1] = ACTIONS(3873), + [aux_sym_preproc_if_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3873), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3873), + [sym_preproc_directive] = ACTIONS(3873), + [anon_sym_LPAREN2] = ACTIONS(3875), + [anon_sym_TILDE] = ACTIONS(3875), + [anon_sym_STAR] = ACTIONS(3875), + [anon_sym_AMP_AMP] = ACTIONS(3875), + [anon_sym_AMP] = ACTIONS(3873), + [anon_sym_SEMI] = ACTIONS(3875), + [anon_sym___extension__] = ACTIONS(3873), + [anon_sym_typedef] = ACTIONS(3873), + [anon_sym_virtual] = ACTIONS(3873), + [anon_sym_extern] = ACTIONS(3873), + [anon_sym___attribute__] = ACTIONS(3873), + [anon_sym___attribute] = ACTIONS(3873), + [anon_sym_using] = ACTIONS(3873), + [anon_sym_COLON_COLON] = ACTIONS(3875), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3875), + [anon_sym___declspec] = ACTIONS(3873), + [anon_sym___based] = ACTIONS(3873), + [anon_sym_RBRACE] = ACTIONS(3875), + [anon_sym_signed] = ACTIONS(3873), + [anon_sym_unsigned] = ACTIONS(3873), + [anon_sym_long] = ACTIONS(3873), + [anon_sym_short] = ACTIONS(3873), + [anon_sym_LBRACK] = ACTIONS(3873), + [anon_sym_static] = ACTIONS(3873), + [anon_sym_register] = ACTIONS(3873), + [anon_sym_inline] = ACTIONS(3873), + [anon_sym___inline] = ACTIONS(3873), + [anon_sym___inline__] = ACTIONS(3873), + [anon_sym___forceinline] = ACTIONS(3873), + [anon_sym_thread_local] = ACTIONS(3873), + [anon_sym___thread] = ACTIONS(3873), + [anon_sym_const] = ACTIONS(3873), + [anon_sym_constexpr] = ACTIONS(3873), + [anon_sym_volatile] = ACTIONS(3873), + [anon_sym_restrict] = ACTIONS(3873), + [anon_sym___restrict__] = ACTIONS(3873), + [anon_sym__Atomic] = ACTIONS(3873), + [anon_sym__Noreturn] = ACTIONS(3873), + [anon_sym_noreturn] = ACTIONS(3873), + [anon_sym__Nonnull] = ACTIONS(3873), + [anon_sym_mutable] = ACTIONS(3873), + [anon_sym_constinit] = ACTIONS(3873), + [anon_sym_consteval] = ACTIONS(3873), + [anon_sym_alignas] = ACTIONS(3873), + [anon_sym__Alignas] = ACTIONS(3873), + [sym_primitive_type] = ACTIONS(3873), + [anon_sym_enum] = ACTIONS(3873), + [anon_sym_class] = ACTIONS(3873), + [anon_sym_struct] = ACTIONS(3873), + [anon_sym_union] = ACTIONS(3873), + [anon_sym_typename] = ACTIONS(3873), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3873), + [anon_sym_decltype] = ACTIONS(3873), + [anon_sym_explicit] = ACTIONS(3873), + [anon_sym_private] = ACTIONS(3873), + [anon_sym_template] = ACTIONS(3873), + [anon_sym_operator] = ACTIONS(3873), + [anon_sym_friend] = ACTIONS(3873), + [anon_sym_public] = ACTIONS(3873), + [anon_sym_protected] = ACTIONS(3873), + [anon_sym_static_assert] = ACTIONS(3873), + [anon_sym_LBRACK_COLON] = ACTIONS(3875), }, [STATE(3395)] = { - [sym_identifier] = ACTIONS(4192), - [aux_sym_preproc_def_token1] = ACTIONS(4192), - [aux_sym_preproc_if_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4192), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4192), - [sym_preproc_directive] = ACTIONS(4192), - [anon_sym_LPAREN2] = ACTIONS(4194), - [anon_sym_TILDE] = ACTIONS(4194), - [anon_sym_STAR] = ACTIONS(4194), - [anon_sym_AMP_AMP] = ACTIONS(4194), - [anon_sym_AMP] = ACTIONS(4192), - [anon_sym_SEMI] = ACTIONS(4194), - [anon_sym___extension__] = ACTIONS(4192), - [anon_sym_typedef] = ACTIONS(4192), - [anon_sym_virtual] = ACTIONS(4192), - [anon_sym_extern] = ACTIONS(4192), - [anon_sym___attribute__] = ACTIONS(4192), - [anon_sym___attribute] = ACTIONS(4192), - [anon_sym_using] = ACTIONS(4192), - [anon_sym_COLON_COLON] = ACTIONS(4194), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4194), - [anon_sym___declspec] = ACTIONS(4192), - [anon_sym___based] = ACTIONS(4192), - [anon_sym_RBRACE] = ACTIONS(4194), - [anon_sym_signed] = ACTIONS(4192), - [anon_sym_unsigned] = ACTIONS(4192), - [anon_sym_long] = ACTIONS(4192), - [anon_sym_short] = ACTIONS(4192), - [anon_sym_LBRACK] = ACTIONS(4192), - [anon_sym_static] = ACTIONS(4192), - [anon_sym_register] = ACTIONS(4192), - [anon_sym_inline] = ACTIONS(4192), - [anon_sym___inline] = ACTIONS(4192), - [anon_sym___inline__] = ACTIONS(4192), - [anon_sym___forceinline] = ACTIONS(4192), - [anon_sym_thread_local] = ACTIONS(4192), - [anon_sym___thread] = ACTIONS(4192), - [anon_sym_const] = ACTIONS(4192), - [anon_sym_constexpr] = ACTIONS(4192), - [anon_sym_volatile] = ACTIONS(4192), - [anon_sym_restrict] = ACTIONS(4192), - [anon_sym___restrict__] = ACTIONS(4192), - [anon_sym__Atomic] = ACTIONS(4192), - [anon_sym__Noreturn] = ACTIONS(4192), - [anon_sym_noreturn] = ACTIONS(4192), - [anon_sym__Nonnull] = ACTIONS(4192), - [anon_sym_mutable] = ACTIONS(4192), - [anon_sym_constinit] = ACTIONS(4192), - [anon_sym_consteval] = ACTIONS(4192), - [anon_sym_alignas] = ACTIONS(4192), - [anon_sym__Alignas] = ACTIONS(4192), - [sym_primitive_type] = ACTIONS(4192), - [anon_sym_enum] = ACTIONS(4192), - [anon_sym_class] = ACTIONS(4192), - [anon_sym_struct] = ACTIONS(4192), - [anon_sym_union] = ACTIONS(4192), - [anon_sym_typename] = ACTIONS(4192), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4192), - [anon_sym_decltype] = ACTIONS(4192), - [anon_sym_explicit] = ACTIONS(4192), - [anon_sym_private] = ACTIONS(4192), - [anon_sym_template] = ACTIONS(4192), - [anon_sym_operator] = ACTIONS(4192), - [anon_sym_friend] = ACTIONS(4192), - [anon_sym_public] = ACTIONS(4192), - [anon_sym_protected] = ACTIONS(4192), - [anon_sym_static_assert] = ACTIONS(4192), - [anon_sym_LBRACK_COLON] = ACTIONS(4194), + [sym_identifier] = ACTIONS(4285), + [aux_sym_preproc_def_token1] = ACTIONS(4285), + [aux_sym_preproc_if_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4285), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4285), + [sym_preproc_directive] = ACTIONS(4285), + [anon_sym_LPAREN2] = ACTIONS(4287), + [anon_sym_TILDE] = ACTIONS(4287), + [anon_sym_STAR] = ACTIONS(4287), + [anon_sym_AMP_AMP] = ACTIONS(4287), + [anon_sym_AMP] = ACTIONS(4285), + [anon_sym_SEMI] = ACTIONS(4287), + [anon_sym___extension__] = ACTIONS(4285), + [anon_sym_typedef] = ACTIONS(4285), + [anon_sym_virtual] = ACTIONS(4285), + [anon_sym_extern] = ACTIONS(4285), + [anon_sym___attribute__] = ACTIONS(4285), + [anon_sym___attribute] = ACTIONS(4285), + [anon_sym_using] = ACTIONS(4285), + [anon_sym_COLON_COLON] = ACTIONS(4287), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4287), + [anon_sym___declspec] = ACTIONS(4285), + [anon_sym___based] = ACTIONS(4285), + [anon_sym_RBRACE] = ACTIONS(4287), + [anon_sym_signed] = ACTIONS(4285), + [anon_sym_unsigned] = ACTIONS(4285), + [anon_sym_long] = ACTIONS(4285), + [anon_sym_short] = ACTIONS(4285), + [anon_sym_LBRACK] = ACTIONS(4285), + [anon_sym_static] = ACTIONS(4285), + [anon_sym_register] = ACTIONS(4285), + [anon_sym_inline] = ACTIONS(4285), + [anon_sym___inline] = ACTIONS(4285), + [anon_sym___inline__] = ACTIONS(4285), + [anon_sym___forceinline] = ACTIONS(4285), + [anon_sym_thread_local] = ACTIONS(4285), + [anon_sym___thread] = ACTIONS(4285), + [anon_sym_const] = ACTIONS(4285), + [anon_sym_constexpr] = ACTIONS(4285), + [anon_sym_volatile] = ACTIONS(4285), + [anon_sym_restrict] = ACTIONS(4285), + [anon_sym___restrict__] = ACTIONS(4285), + [anon_sym__Atomic] = ACTIONS(4285), + [anon_sym__Noreturn] = ACTIONS(4285), + [anon_sym_noreturn] = ACTIONS(4285), + [anon_sym__Nonnull] = ACTIONS(4285), + [anon_sym_mutable] = ACTIONS(4285), + [anon_sym_constinit] = ACTIONS(4285), + [anon_sym_consteval] = ACTIONS(4285), + [anon_sym_alignas] = ACTIONS(4285), + [anon_sym__Alignas] = ACTIONS(4285), + [sym_primitive_type] = ACTIONS(4285), + [anon_sym_enum] = ACTIONS(4285), + [anon_sym_class] = ACTIONS(4285), + [anon_sym_struct] = ACTIONS(4285), + [anon_sym_union] = ACTIONS(4285), + [anon_sym_typename] = ACTIONS(4285), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4285), + [anon_sym_decltype] = ACTIONS(4285), + [anon_sym_explicit] = ACTIONS(4285), + [anon_sym_private] = ACTIONS(4285), + [anon_sym_template] = ACTIONS(4285), + [anon_sym_operator] = ACTIONS(4285), + [anon_sym_friend] = ACTIONS(4285), + [anon_sym_public] = ACTIONS(4285), + [anon_sym_protected] = ACTIONS(4285), + [anon_sym_static_assert] = ACTIONS(4285), + [anon_sym_LBRACK_COLON] = ACTIONS(4287), }, [STATE(3396)] = { - [sym_identifier] = ACTIONS(4262), - [aux_sym_preproc_def_token1] = ACTIONS(4262), - [aux_sym_preproc_if_token1] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4262), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4262), - [sym_preproc_directive] = ACTIONS(4262), - [anon_sym_LPAREN2] = ACTIONS(4264), - [anon_sym_TILDE] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_AMP_AMP] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4262), - [anon_sym_SEMI] = ACTIONS(4264), - [anon_sym___extension__] = ACTIONS(4262), - [anon_sym_typedef] = ACTIONS(4262), - [anon_sym_virtual] = ACTIONS(4262), - [anon_sym_extern] = ACTIONS(4262), - [anon_sym___attribute__] = ACTIONS(4262), - [anon_sym___attribute] = ACTIONS(4262), - [anon_sym_using] = ACTIONS(4262), - [anon_sym_COLON_COLON] = ACTIONS(4264), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4264), - [anon_sym___declspec] = ACTIONS(4262), - [anon_sym___based] = ACTIONS(4262), - [anon_sym_RBRACE] = ACTIONS(4264), - [anon_sym_signed] = ACTIONS(4262), - [anon_sym_unsigned] = ACTIONS(4262), - [anon_sym_long] = ACTIONS(4262), - [anon_sym_short] = ACTIONS(4262), - [anon_sym_LBRACK] = ACTIONS(4262), - [anon_sym_static] = ACTIONS(4262), - [anon_sym_register] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym___inline] = ACTIONS(4262), - [anon_sym___inline__] = ACTIONS(4262), - [anon_sym___forceinline] = ACTIONS(4262), - [anon_sym_thread_local] = ACTIONS(4262), - [anon_sym___thread] = ACTIONS(4262), - [anon_sym_const] = ACTIONS(4262), - [anon_sym_constexpr] = ACTIONS(4262), - [anon_sym_volatile] = ACTIONS(4262), - [anon_sym_restrict] = ACTIONS(4262), - [anon_sym___restrict__] = ACTIONS(4262), - [anon_sym__Atomic] = ACTIONS(4262), - [anon_sym__Noreturn] = ACTIONS(4262), - [anon_sym_noreturn] = ACTIONS(4262), - [anon_sym__Nonnull] = ACTIONS(4262), - [anon_sym_mutable] = ACTIONS(4262), - [anon_sym_constinit] = ACTIONS(4262), - [anon_sym_consteval] = ACTIONS(4262), - [anon_sym_alignas] = ACTIONS(4262), - [anon_sym__Alignas] = ACTIONS(4262), - [sym_primitive_type] = ACTIONS(4262), - [anon_sym_enum] = ACTIONS(4262), - [anon_sym_class] = ACTIONS(4262), - [anon_sym_struct] = ACTIONS(4262), - [anon_sym_union] = ACTIONS(4262), - [anon_sym_typename] = ACTIONS(4262), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4262), - [anon_sym_decltype] = ACTIONS(4262), - [anon_sym_explicit] = ACTIONS(4262), - [anon_sym_private] = ACTIONS(4262), - [anon_sym_template] = ACTIONS(4262), - [anon_sym_operator] = ACTIONS(4262), - [anon_sym_friend] = ACTIONS(4262), - [anon_sym_public] = ACTIONS(4262), - [anon_sym_protected] = ACTIONS(4262), - [anon_sym_static_assert] = ACTIONS(4262), - [anon_sym_LBRACK_COLON] = ACTIONS(4264), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(3397)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - [anon_sym_COLON_RBRACK] = ACTIONS(5638), + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_friend] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), }, [STATE(3398)] = { - [sym_identifier] = ACTIONS(4274), - [aux_sym_preproc_def_token1] = ACTIONS(4274), - [aux_sym_preproc_if_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4274), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4274), - [sym_preproc_directive] = ACTIONS(4274), - [anon_sym_LPAREN2] = ACTIONS(4276), - [anon_sym_TILDE] = ACTIONS(4276), - [anon_sym_STAR] = ACTIONS(4276), - [anon_sym_AMP_AMP] = ACTIONS(4276), - [anon_sym_AMP] = ACTIONS(4274), - [anon_sym_SEMI] = ACTIONS(4276), - [anon_sym___extension__] = ACTIONS(4274), - [anon_sym_typedef] = ACTIONS(4274), - [anon_sym_virtual] = ACTIONS(4274), - [anon_sym_extern] = ACTIONS(4274), - [anon_sym___attribute__] = ACTIONS(4274), - [anon_sym___attribute] = ACTIONS(4274), - [anon_sym_using] = ACTIONS(4274), - [anon_sym_COLON_COLON] = ACTIONS(4276), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4276), - [anon_sym___declspec] = ACTIONS(4274), - [anon_sym___based] = ACTIONS(4274), - [anon_sym_RBRACE] = ACTIONS(4276), - [anon_sym_signed] = ACTIONS(4274), - [anon_sym_unsigned] = ACTIONS(4274), - [anon_sym_long] = ACTIONS(4274), - [anon_sym_short] = ACTIONS(4274), - [anon_sym_LBRACK] = ACTIONS(4274), - [anon_sym_static] = ACTIONS(4274), - [anon_sym_register] = ACTIONS(4274), - [anon_sym_inline] = ACTIONS(4274), - [anon_sym___inline] = ACTIONS(4274), - [anon_sym___inline__] = ACTIONS(4274), - [anon_sym___forceinline] = ACTIONS(4274), - [anon_sym_thread_local] = ACTIONS(4274), - [anon_sym___thread] = ACTIONS(4274), - [anon_sym_const] = ACTIONS(4274), - [anon_sym_constexpr] = ACTIONS(4274), - [anon_sym_volatile] = ACTIONS(4274), - [anon_sym_restrict] = ACTIONS(4274), - [anon_sym___restrict__] = ACTIONS(4274), - [anon_sym__Atomic] = ACTIONS(4274), - [anon_sym__Noreturn] = ACTIONS(4274), - [anon_sym_noreturn] = ACTIONS(4274), - [anon_sym__Nonnull] = ACTIONS(4274), - [anon_sym_mutable] = ACTIONS(4274), - [anon_sym_constinit] = ACTIONS(4274), - [anon_sym_consteval] = ACTIONS(4274), - [anon_sym_alignas] = ACTIONS(4274), - [anon_sym__Alignas] = ACTIONS(4274), - [sym_primitive_type] = ACTIONS(4274), - [anon_sym_enum] = ACTIONS(4274), - [anon_sym_class] = ACTIONS(4274), - [anon_sym_struct] = ACTIONS(4274), - [anon_sym_union] = ACTIONS(4274), - [anon_sym_typename] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4274), - [anon_sym_decltype] = ACTIONS(4274), - [anon_sym_explicit] = ACTIONS(4274), - [anon_sym_private] = ACTIONS(4274), - [anon_sym_template] = ACTIONS(4274), - [anon_sym_operator] = ACTIONS(4274), - [anon_sym_friend] = ACTIONS(4274), - [anon_sym_public] = ACTIONS(4274), - [anon_sym_protected] = ACTIONS(4274), - [anon_sym_static_assert] = ACTIONS(4274), - [anon_sym_LBRACK_COLON] = ACTIONS(4276), + [sym_identifier] = ACTIONS(3722), + [aux_sym_preproc_def_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token1] = ACTIONS(3722), + [aux_sym_preproc_if_token2] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3722), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3722), + [sym_preproc_directive] = ACTIONS(3722), + [anon_sym_LPAREN2] = ACTIONS(3724), + [anon_sym_TILDE] = ACTIONS(3724), + [anon_sym_STAR] = ACTIONS(3724), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_AMP] = ACTIONS(3722), + [anon_sym_SEMI] = ACTIONS(3724), + [anon_sym___extension__] = ACTIONS(3722), + [anon_sym_typedef] = ACTIONS(3722), + [anon_sym_virtual] = ACTIONS(3722), + [anon_sym_extern] = ACTIONS(3722), + [anon_sym___attribute__] = ACTIONS(3722), + [anon_sym___attribute] = ACTIONS(3722), + [anon_sym_using] = ACTIONS(3722), + [anon_sym_COLON_COLON] = ACTIONS(3724), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3724), + [anon_sym___declspec] = ACTIONS(3722), + [anon_sym___based] = ACTIONS(3722), + [anon_sym_signed] = ACTIONS(3722), + [anon_sym_unsigned] = ACTIONS(3722), + [anon_sym_long] = ACTIONS(3722), + [anon_sym_short] = ACTIONS(3722), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_static] = ACTIONS(3722), + [anon_sym_register] = ACTIONS(3722), + [anon_sym_inline] = ACTIONS(3722), + [anon_sym___inline] = ACTIONS(3722), + [anon_sym___inline__] = ACTIONS(3722), + [anon_sym___forceinline] = ACTIONS(3722), + [anon_sym_thread_local] = ACTIONS(3722), + [anon_sym___thread] = ACTIONS(3722), + [anon_sym_const] = ACTIONS(3722), + [anon_sym_constexpr] = ACTIONS(3722), + [anon_sym_volatile] = ACTIONS(3722), + [anon_sym_restrict] = ACTIONS(3722), + [anon_sym___restrict__] = ACTIONS(3722), + [anon_sym__Atomic] = ACTIONS(3722), + [anon_sym__Noreturn] = ACTIONS(3722), + [anon_sym_noreturn] = ACTIONS(3722), + [anon_sym__Nonnull] = ACTIONS(3722), + [anon_sym_mutable] = ACTIONS(3722), + [anon_sym_constinit] = ACTIONS(3722), + [anon_sym_consteval] = ACTIONS(3722), + [anon_sym_alignas] = ACTIONS(3722), + [anon_sym__Alignas] = ACTIONS(3722), + [sym_primitive_type] = ACTIONS(3722), + [anon_sym_enum] = ACTIONS(3722), + [anon_sym_class] = ACTIONS(3722), + [anon_sym_struct] = ACTIONS(3722), + [anon_sym_union] = ACTIONS(3722), + [anon_sym_typename] = ACTIONS(3722), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3722), + [anon_sym_decltype] = ACTIONS(3722), + [anon_sym_explicit] = ACTIONS(3722), + [anon_sym_private] = ACTIONS(3722), + [anon_sym_template] = ACTIONS(3722), + [anon_sym_operator] = ACTIONS(3722), + [anon_sym_friend] = ACTIONS(3722), + [anon_sym_public] = ACTIONS(3722), + [anon_sym_protected] = ACTIONS(3722), + [anon_sym_static_assert] = ACTIONS(3722), + [anon_sym_LBRACK_COLON] = ACTIONS(3724), }, [STATE(3399)] = { - [sym_identifier] = ACTIONS(4278), - [aux_sym_preproc_def_token1] = ACTIONS(4278), - [aux_sym_preproc_if_token1] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4278), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4278), - [sym_preproc_directive] = ACTIONS(4278), - [anon_sym_LPAREN2] = ACTIONS(4280), - [anon_sym_TILDE] = ACTIONS(4280), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_AMP_AMP] = ACTIONS(4280), - [anon_sym_AMP] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4280), - [anon_sym___extension__] = ACTIONS(4278), - [anon_sym_typedef] = ACTIONS(4278), - [anon_sym_virtual] = ACTIONS(4278), - [anon_sym_extern] = ACTIONS(4278), - [anon_sym___attribute__] = ACTIONS(4278), - [anon_sym___attribute] = ACTIONS(4278), - [anon_sym_using] = ACTIONS(4278), - [anon_sym_COLON_COLON] = ACTIONS(4280), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4280), - [anon_sym___declspec] = ACTIONS(4278), - [anon_sym___based] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4280), - [anon_sym_signed] = ACTIONS(4278), - [anon_sym_unsigned] = ACTIONS(4278), - [anon_sym_long] = ACTIONS(4278), - [anon_sym_short] = ACTIONS(4278), - [anon_sym_LBRACK] = ACTIONS(4278), - [anon_sym_static] = ACTIONS(4278), - [anon_sym_register] = ACTIONS(4278), - [anon_sym_inline] = ACTIONS(4278), - [anon_sym___inline] = ACTIONS(4278), - [anon_sym___inline__] = ACTIONS(4278), - [anon_sym___forceinline] = ACTIONS(4278), - [anon_sym_thread_local] = ACTIONS(4278), - [anon_sym___thread] = ACTIONS(4278), - [anon_sym_const] = ACTIONS(4278), - [anon_sym_constexpr] = ACTIONS(4278), - [anon_sym_volatile] = ACTIONS(4278), - [anon_sym_restrict] = ACTIONS(4278), - [anon_sym___restrict__] = ACTIONS(4278), - [anon_sym__Atomic] = ACTIONS(4278), - [anon_sym__Noreturn] = ACTIONS(4278), - [anon_sym_noreturn] = ACTIONS(4278), - [anon_sym__Nonnull] = ACTIONS(4278), - [anon_sym_mutable] = ACTIONS(4278), - [anon_sym_constinit] = ACTIONS(4278), - [anon_sym_consteval] = ACTIONS(4278), - [anon_sym_alignas] = ACTIONS(4278), - [anon_sym__Alignas] = ACTIONS(4278), - [sym_primitive_type] = ACTIONS(4278), - [anon_sym_enum] = ACTIONS(4278), - [anon_sym_class] = ACTIONS(4278), - [anon_sym_struct] = ACTIONS(4278), - [anon_sym_union] = ACTIONS(4278), - [anon_sym_typename] = ACTIONS(4278), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4278), - [anon_sym_decltype] = ACTIONS(4278), - [anon_sym_explicit] = ACTIONS(4278), - [anon_sym_private] = ACTIONS(4278), - [anon_sym_template] = ACTIONS(4278), - [anon_sym_operator] = ACTIONS(4278), - [anon_sym_friend] = ACTIONS(4278), - [anon_sym_public] = ACTIONS(4278), - [anon_sym_protected] = ACTIONS(4278), - [anon_sym_static_assert] = ACTIONS(4278), - [anon_sym_LBRACK_COLON] = ACTIONS(4280), + [sym_identifier] = ACTIONS(3726), + [aux_sym_preproc_def_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token1] = ACTIONS(3726), + [aux_sym_preproc_if_token2] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3726), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3726), + [sym_preproc_directive] = ACTIONS(3726), + [anon_sym_LPAREN2] = ACTIONS(3728), + [anon_sym_TILDE] = ACTIONS(3728), + [anon_sym_STAR] = ACTIONS(3728), + [anon_sym_AMP_AMP] = ACTIONS(3728), + [anon_sym_AMP] = ACTIONS(3726), + [anon_sym_SEMI] = ACTIONS(3728), + [anon_sym___extension__] = ACTIONS(3726), + [anon_sym_typedef] = ACTIONS(3726), + [anon_sym_virtual] = ACTIONS(3726), + [anon_sym_extern] = ACTIONS(3726), + [anon_sym___attribute__] = ACTIONS(3726), + [anon_sym___attribute] = ACTIONS(3726), + [anon_sym_using] = ACTIONS(3726), + [anon_sym_COLON_COLON] = ACTIONS(3728), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3728), + [anon_sym___declspec] = ACTIONS(3726), + [anon_sym___based] = ACTIONS(3726), + [anon_sym_signed] = ACTIONS(3726), + [anon_sym_unsigned] = ACTIONS(3726), + [anon_sym_long] = ACTIONS(3726), + [anon_sym_short] = ACTIONS(3726), + [anon_sym_LBRACK] = ACTIONS(3726), + [anon_sym_static] = ACTIONS(3726), + [anon_sym_register] = ACTIONS(3726), + [anon_sym_inline] = ACTIONS(3726), + [anon_sym___inline] = ACTIONS(3726), + [anon_sym___inline__] = ACTIONS(3726), + [anon_sym___forceinline] = ACTIONS(3726), + [anon_sym_thread_local] = ACTIONS(3726), + [anon_sym___thread] = ACTIONS(3726), + [anon_sym_const] = ACTIONS(3726), + [anon_sym_constexpr] = ACTIONS(3726), + [anon_sym_volatile] = ACTIONS(3726), + [anon_sym_restrict] = ACTIONS(3726), + [anon_sym___restrict__] = ACTIONS(3726), + [anon_sym__Atomic] = ACTIONS(3726), + [anon_sym__Noreturn] = ACTIONS(3726), + [anon_sym_noreturn] = ACTIONS(3726), + [anon_sym__Nonnull] = ACTIONS(3726), + [anon_sym_mutable] = ACTIONS(3726), + [anon_sym_constinit] = ACTIONS(3726), + [anon_sym_consteval] = ACTIONS(3726), + [anon_sym_alignas] = ACTIONS(3726), + [anon_sym__Alignas] = ACTIONS(3726), + [sym_primitive_type] = ACTIONS(3726), + [anon_sym_enum] = ACTIONS(3726), + [anon_sym_class] = ACTIONS(3726), + [anon_sym_struct] = ACTIONS(3726), + [anon_sym_union] = ACTIONS(3726), + [anon_sym_typename] = ACTIONS(3726), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3726), + [anon_sym_decltype] = ACTIONS(3726), + [anon_sym_explicit] = ACTIONS(3726), + [anon_sym_private] = ACTIONS(3726), + [anon_sym_template] = ACTIONS(3726), + [anon_sym_operator] = ACTIONS(3726), + [anon_sym_friend] = ACTIONS(3726), + [anon_sym_public] = ACTIONS(3726), + [anon_sym_protected] = ACTIONS(3726), + [anon_sym_static_assert] = ACTIONS(3726), + [anon_sym_LBRACK_COLON] = ACTIONS(3728), }, [STATE(3400)] = { - [sym_identifier] = ACTIONS(3666), - [aux_sym_preproc_def_token1] = ACTIONS(3666), - [aux_sym_preproc_if_token1] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3666), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3666), - [sym_preproc_directive] = ACTIONS(3666), - [anon_sym_LPAREN2] = ACTIONS(3668), - [anon_sym_TILDE] = ACTIONS(3668), - [anon_sym_STAR] = ACTIONS(3668), - [anon_sym_AMP_AMP] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3666), - [anon_sym_SEMI] = ACTIONS(3668), - [anon_sym___extension__] = ACTIONS(3666), - [anon_sym_typedef] = ACTIONS(3666), - [anon_sym_virtual] = ACTIONS(3666), - [anon_sym_extern] = ACTIONS(3666), - [anon_sym___attribute__] = ACTIONS(3666), - [anon_sym___attribute] = ACTIONS(3666), - [anon_sym_using] = ACTIONS(3666), - [anon_sym_COLON_COLON] = ACTIONS(3668), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3668), - [anon_sym___declspec] = ACTIONS(3666), - [anon_sym___based] = ACTIONS(3666), - [anon_sym_RBRACE] = ACTIONS(3668), - [anon_sym_signed] = ACTIONS(3666), - [anon_sym_unsigned] = ACTIONS(3666), - [anon_sym_long] = ACTIONS(3666), - [anon_sym_short] = ACTIONS(3666), - [anon_sym_LBRACK] = ACTIONS(3666), - [anon_sym_static] = ACTIONS(3666), - [anon_sym_register] = ACTIONS(3666), - [anon_sym_inline] = ACTIONS(3666), - [anon_sym___inline] = ACTIONS(3666), - [anon_sym___inline__] = ACTIONS(3666), - [anon_sym___forceinline] = ACTIONS(3666), - [anon_sym_thread_local] = ACTIONS(3666), - [anon_sym___thread] = ACTIONS(3666), - [anon_sym_const] = ACTIONS(3666), - [anon_sym_constexpr] = ACTIONS(3666), - [anon_sym_volatile] = ACTIONS(3666), - [anon_sym_restrict] = ACTIONS(3666), - [anon_sym___restrict__] = ACTIONS(3666), - [anon_sym__Atomic] = ACTIONS(3666), - [anon_sym__Noreturn] = ACTIONS(3666), - [anon_sym_noreturn] = ACTIONS(3666), - [anon_sym__Nonnull] = ACTIONS(3666), - [anon_sym_mutable] = ACTIONS(3666), - [anon_sym_constinit] = ACTIONS(3666), - [anon_sym_consteval] = ACTIONS(3666), - [anon_sym_alignas] = ACTIONS(3666), - [anon_sym__Alignas] = ACTIONS(3666), - [sym_primitive_type] = ACTIONS(3666), - [anon_sym_enum] = ACTIONS(3666), - [anon_sym_class] = ACTIONS(3666), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_union] = ACTIONS(3666), - [anon_sym_typename] = ACTIONS(3666), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3666), - [anon_sym_decltype] = ACTIONS(3666), - [anon_sym_explicit] = ACTIONS(3666), - [anon_sym_private] = ACTIONS(3666), - [anon_sym_template] = ACTIONS(3666), - [anon_sym_operator] = ACTIONS(3666), - [anon_sym_friend] = ACTIONS(3666), - [anon_sym_public] = ACTIONS(3666), - [anon_sym_protected] = ACTIONS(3666), - [anon_sym_static_assert] = ACTIONS(3666), - [anon_sym_LBRACK_COLON] = ACTIONS(3668), + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token2] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_private] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_friend] = ACTIONS(3742), + [anon_sym_public] = ACTIONS(3742), + [anon_sym_protected] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), }, [STATE(3401)] = { - [sym_identifier] = ACTIONS(4282), - [aux_sym_preproc_def_token1] = ACTIONS(4282), - [aux_sym_preproc_if_token1] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4282), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4282), - [sym_preproc_directive] = ACTIONS(4282), - [anon_sym_LPAREN2] = ACTIONS(4284), - [anon_sym_TILDE] = ACTIONS(4284), - [anon_sym_STAR] = ACTIONS(4284), - [anon_sym_AMP_AMP] = ACTIONS(4284), - [anon_sym_AMP] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4284), - [anon_sym___extension__] = ACTIONS(4282), - [anon_sym_typedef] = ACTIONS(4282), - [anon_sym_virtual] = ACTIONS(4282), - [anon_sym_extern] = ACTIONS(4282), - [anon_sym___attribute__] = ACTIONS(4282), - [anon_sym___attribute] = ACTIONS(4282), - [anon_sym_using] = ACTIONS(4282), - [anon_sym_COLON_COLON] = ACTIONS(4284), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4284), - [anon_sym___declspec] = ACTIONS(4282), - [anon_sym___based] = ACTIONS(4282), - [anon_sym_RBRACE] = ACTIONS(4284), - [anon_sym_signed] = ACTIONS(4282), - [anon_sym_unsigned] = ACTIONS(4282), - [anon_sym_long] = ACTIONS(4282), - [anon_sym_short] = ACTIONS(4282), - [anon_sym_LBRACK] = ACTIONS(4282), - [anon_sym_static] = ACTIONS(4282), - [anon_sym_register] = ACTIONS(4282), - [anon_sym_inline] = ACTIONS(4282), - [anon_sym___inline] = ACTIONS(4282), - [anon_sym___inline__] = ACTIONS(4282), - [anon_sym___forceinline] = ACTIONS(4282), - [anon_sym_thread_local] = ACTIONS(4282), - [anon_sym___thread] = ACTIONS(4282), - [anon_sym_const] = ACTIONS(4282), - [anon_sym_constexpr] = ACTIONS(4282), - [anon_sym_volatile] = ACTIONS(4282), - [anon_sym_restrict] = ACTIONS(4282), - [anon_sym___restrict__] = ACTIONS(4282), - [anon_sym__Atomic] = ACTIONS(4282), - [anon_sym__Noreturn] = ACTIONS(4282), - [anon_sym_noreturn] = ACTIONS(4282), - [anon_sym__Nonnull] = ACTIONS(4282), - [anon_sym_mutable] = ACTIONS(4282), - [anon_sym_constinit] = ACTIONS(4282), - [anon_sym_consteval] = ACTIONS(4282), - [anon_sym_alignas] = ACTIONS(4282), - [anon_sym__Alignas] = ACTIONS(4282), - [sym_primitive_type] = ACTIONS(4282), - [anon_sym_enum] = ACTIONS(4282), - [anon_sym_class] = ACTIONS(4282), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_union] = ACTIONS(4282), - [anon_sym_typename] = ACTIONS(4282), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4282), - [anon_sym_decltype] = ACTIONS(4282), - [anon_sym_explicit] = ACTIONS(4282), - [anon_sym_private] = ACTIONS(4282), - [anon_sym_template] = ACTIONS(4282), - [anon_sym_operator] = ACTIONS(4282), - [anon_sym_friend] = ACTIONS(4282), - [anon_sym_public] = ACTIONS(4282), - [anon_sym_protected] = ACTIONS(4282), - [anon_sym_static_assert] = ACTIONS(4282), - [anon_sym_LBRACK_COLON] = ACTIONS(4284), + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token2] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_private] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_friend] = ACTIONS(3742), + [anon_sym_public] = ACTIONS(3742), + [anon_sym_protected] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), }, [STATE(3402)] = { - [sym_identifier] = ACTIONS(4387), - [aux_sym_preproc_def_token1] = ACTIONS(4387), - [aux_sym_preproc_if_token1] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4387), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4387), - [sym_preproc_directive] = ACTIONS(4387), - [anon_sym_LPAREN2] = ACTIONS(4389), - [anon_sym_TILDE] = ACTIONS(4389), - [anon_sym_STAR] = ACTIONS(4389), - [anon_sym_AMP_AMP] = ACTIONS(4389), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_SEMI] = ACTIONS(4389), - [anon_sym___extension__] = ACTIONS(4387), - [anon_sym_typedef] = ACTIONS(4387), - [anon_sym_virtual] = ACTIONS(4387), - [anon_sym_extern] = ACTIONS(4387), - [anon_sym___attribute__] = ACTIONS(4387), - [anon_sym___attribute] = ACTIONS(4387), - [anon_sym_using] = ACTIONS(4387), - [anon_sym_COLON_COLON] = ACTIONS(4389), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4389), - [anon_sym___declspec] = ACTIONS(4387), - [anon_sym___based] = ACTIONS(4387), - [anon_sym_RBRACE] = ACTIONS(4389), - [anon_sym_signed] = ACTIONS(4387), - [anon_sym_unsigned] = ACTIONS(4387), - [anon_sym_long] = ACTIONS(4387), - [anon_sym_short] = ACTIONS(4387), - [anon_sym_LBRACK] = ACTIONS(4387), - [anon_sym_static] = ACTIONS(4387), - [anon_sym_register] = ACTIONS(4387), - [anon_sym_inline] = ACTIONS(4387), - [anon_sym___inline] = ACTIONS(4387), - [anon_sym___inline__] = ACTIONS(4387), - [anon_sym___forceinline] = ACTIONS(4387), - [anon_sym_thread_local] = ACTIONS(4387), - [anon_sym___thread] = ACTIONS(4387), - [anon_sym_const] = ACTIONS(4387), - [anon_sym_constexpr] = ACTIONS(4387), - [anon_sym_volatile] = ACTIONS(4387), - [anon_sym_restrict] = ACTIONS(4387), - [anon_sym___restrict__] = ACTIONS(4387), - [anon_sym__Atomic] = ACTIONS(4387), - [anon_sym__Noreturn] = ACTIONS(4387), - [anon_sym_noreturn] = ACTIONS(4387), - [anon_sym__Nonnull] = ACTIONS(4387), - [anon_sym_mutable] = ACTIONS(4387), - [anon_sym_constinit] = ACTIONS(4387), - [anon_sym_consteval] = ACTIONS(4387), - [anon_sym_alignas] = ACTIONS(4387), - [anon_sym__Alignas] = ACTIONS(4387), - [sym_primitive_type] = ACTIONS(4387), - [anon_sym_enum] = ACTIONS(4387), - [anon_sym_class] = ACTIONS(4387), - [anon_sym_struct] = ACTIONS(4387), - [anon_sym_union] = ACTIONS(4387), - [anon_sym_typename] = ACTIONS(4387), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4387), - [anon_sym_decltype] = ACTIONS(4387), - [anon_sym_explicit] = ACTIONS(4387), - [anon_sym_private] = ACTIONS(4387), - [anon_sym_template] = ACTIONS(4387), - [anon_sym_operator] = ACTIONS(4387), - [anon_sym_friend] = ACTIONS(4387), - [anon_sym_public] = ACTIONS(4387), - [anon_sym_protected] = ACTIONS(4387), - [anon_sym_static_assert] = ACTIONS(4387), - [anon_sym_LBRACK_COLON] = ACTIONS(4389), + [sym_identifier] = ACTIONS(8693), + [aux_sym_preproc_def_token1] = ACTIONS(8693), + [aux_sym_preproc_if_token1] = ACTIONS(8693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8693), + [sym_preproc_directive] = ACTIONS(8693), + [anon_sym_LPAREN2] = ACTIONS(8695), + [anon_sym_TILDE] = ACTIONS(8695), + [anon_sym_STAR] = ACTIONS(8695), + [anon_sym_AMP_AMP] = ACTIONS(8695), + [anon_sym_AMP] = ACTIONS(8693), + [anon_sym_SEMI] = ACTIONS(8695), + [anon_sym___extension__] = ACTIONS(8693), + [anon_sym_typedef] = ACTIONS(8693), + [anon_sym_virtual] = ACTIONS(8693), + [anon_sym_extern] = ACTIONS(8693), + [anon_sym___attribute__] = ACTIONS(8693), + [anon_sym___attribute] = ACTIONS(8693), + [anon_sym_using] = ACTIONS(8693), + [anon_sym_COLON_COLON] = ACTIONS(8695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8695), + [anon_sym___declspec] = ACTIONS(8693), + [anon_sym___based] = ACTIONS(8693), + [anon_sym_RBRACE] = ACTIONS(8695), + [anon_sym_signed] = ACTIONS(8693), + [anon_sym_unsigned] = ACTIONS(8693), + [anon_sym_long] = ACTIONS(8693), + [anon_sym_short] = ACTIONS(8693), + [anon_sym_LBRACK] = ACTIONS(8693), + [anon_sym_static] = ACTIONS(8693), + [anon_sym_register] = ACTIONS(8693), + [anon_sym_inline] = ACTIONS(8693), + [anon_sym___inline] = ACTIONS(8693), + [anon_sym___inline__] = ACTIONS(8693), + [anon_sym___forceinline] = ACTIONS(8693), + [anon_sym_thread_local] = ACTIONS(8693), + [anon_sym___thread] = ACTIONS(8693), + [anon_sym_const] = ACTIONS(8693), + [anon_sym_constexpr] = ACTIONS(8693), + [anon_sym_volatile] = ACTIONS(8693), + [anon_sym_restrict] = ACTIONS(8693), + [anon_sym___restrict__] = ACTIONS(8693), + [anon_sym__Atomic] = ACTIONS(8693), + [anon_sym__Noreturn] = ACTIONS(8693), + [anon_sym_noreturn] = ACTIONS(8693), + [anon_sym__Nonnull] = ACTIONS(8693), + [anon_sym_mutable] = ACTIONS(8693), + [anon_sym_constinit] = ACTIONS(8693), + [anon_sym_consteval] = ACTIONS(8693), + [anon_sym_alignas] = ACTIONS(8693), + [anon_sym__Alignas] = ACTIONS(8693), + [sym_primitive_type] = ACTIONS(8693), + [anon_sym_enum] = ACTIONS(8693), + [anon_sym_class] = ACTIONS(8693), + [anon_sym_struct] = ACTIONS(8693), + [anon_sym_union] = ACTIONS(8693), + [anon_sym_typename] = ACTIONS(8693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8693), + [anon_sym_decltype] = ACTIONS(8693), + [anon_sym_explicit] = ACTIONS(8693), + [anon_sym_private] = ACTIONS(8693), + [anon_sym_template] = ACTIONS(8693), + [anon_sym_operator] = ACTIONS(8693), + [anon_sym_friend] = ACTIONS(8693), + [anon_sym_public] = ACTIONS(8693), + [anon_sym_protected] = ACTIONS(8693), + [anon_sym_static_assert] = ACTIONS(8693), + [anon_sym_LBRACK_COLON] = ACTIONS(8695), }, [STATE(3403)] = { - [sym_identifier] = ACTIONS(8730), - [aux_sym_preproc_def_token1] = ACTIONS(8730), - [aux_sym_preproc_if_token1] = ACTIONS(8730), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8730), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8730), - [sym_preproc_directive] = ACTIONS(8730), - [anon_sym_LPAREN2] = ACTIONS(8732), - [anon_sym_TILDE] = ACTIONS(8732), - [anon_sym_STAR] = ACTIONS(8732), - [anon_sym_AMP_AMP] = ACTIONS(8732), - [anon_sym_AMP] = ACTIONS(8730), - [anon_sym_SEMI] = ACTIONS(8732), - [anon_sym___extension__] = ACTIONS(8730), - [anon_sym_typedef] = ACTIONS(8730), - [anon_sym_virtual] = ACTIONS(8730), - [anon_sym_extern] = ACTIONS(8730), - [anon_sym___attribute__] = ACTIONS(8730), - [anon_sym___attribute] = ACTIONS(8730), - [anon_sym_using] = ACTIONS(8730), - [anon_sym_COLON_COLON] = ACTIONS(8732), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8732), - [anon_sym___declspec] = ACTIONS(8730), - [anon_sym___based] = ACTIONS(8730), - [anon_sym_RBRACE] = ACTIONS(8732), - [anon_sym_signed] = ACTIONS(8730), - [anon_sym_unsigned] = ACTIONS(8730), - [anon_sym_long] = ACTIONS(8730), - [anon_sym_short] = ACTIONS(8730), - [anon_sym_LBRACK] = ACTIONS(8730), - [anon_sym_static] = ACTIONS(8730), - [anon_sym_register] = ACTIONS(8730), - [anon_sym_inline] = ACTIONS(8730), - [anon_sym___inline] = ACTIONS(8730), - [anon_sym___inline__] = ACTIONS(8730), - [anon_sym___forceinline] = ACTIONS(8730), - [anon_sym_thread_local] = ACTIONS(8730), - [anon_sym___thread] = ACTIONS(8730), - [anon_sym_const] = ACTIONS(8730), - [anon_sym_constexpr] = ACTIONS(8730), - [anon_sym_volatile] = ACTIONS(8730), - [anon_sym_restrict] = ACTIONS(8730), - [anon_sym___restrict__] = ACTIONS(8730), - [anon_sym__Atomic] = ACTIONS(8730), - [anon_sym__Noreturn] = ACTIONS(8730), - [anon_sym_noreturn] = ACTIONS(8730), - [anon_sym__Nonnull] = ACTIONS(8730), - [anon_sym_mutable] = ACTIONS(8730), - [anon_sym_constinit] = ACTIONS(8730), - [anon_sym_consteval] = ACTIONS(8730), - [anon_sym_alignas] = ACTIONS(8730), - [anon_sym__Alignas] = ACTIONS(8730), - [sym_primitive_type] = ACTIONS(8730), - [anon_sym_enum] = ACTIONS(8730), - [anon_sym_class] = ACTIONS(8730), - [anon_sym_struct] = ACTIONS(8730), - [anon_sym_union] = ACTIONS(8730), - [anon_sym_typename] = ACTIONS(8730), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8730), - [anon_sym_decltype] = ACTIONS(8730), - [anon_sym_explicit] = ACTIONS(8730), - [anon_sym_private] = ACTIONS(8730), - [anon_sym_template] = ACTIONS(8730), - [anon_sym_operator] = ACTIONS(8730), - [anon_sym_friend] = ACTIONS(8730), - [anon_sym_public] = ACTIONS(8730), - [anon_sym_protected] = ACTIONS(8730), - [anon_sym_static_assert] = ACTIONS(8730), - [anon_sym_LBRACK_COLON] = ACTIONS(8732), + [sym_identifier] = ACTIONS(3706), + [aux_sym_preproc_def_token1] = ACTIONS(3706), + [aux_sym_preproc_if_token1] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3706), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3706), + [sym_preproc_directive] = ACTIONS(3706), + [anon_sym_LPAREN2] = ACTIONS(3708), + [anon_sym_TILDE] = ACTIONS(3708), + [anon_sym_STAR] = ACTIONS(3708), + [anon_sym_AMP_AMP] = ACTIONS(3708), + [anon_sym_AMP] = ACTIONS(3706), + [anon_sym_SEMI] = ACTIONS(3708), + [anon_sym___extension__] = ACTIONS(3706), + [anon_sym_typedef] = ACTIONS(3706), + [anon_sym_virtual] = ACTIONS(3706), + [anon_sym_extern] = ACTIONS(3706), + [anon_sym___attribute__] = ACTIONS(3706), + [anon_sym___attribute] = ACTIONS(3706), + [anon_sym_using] = ACTIONS(3706), + [anon_sym_COLON_COLON] = ACTIONS(3708), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3708), + [anon_sym___declspec] = ACTIONS(3706), + [anon_sym___based] = ACTIONS(3706), + [anon_sym_RBRACE] = ACTIONS(3708), + [anon_sym_signed] = ACTIONS(3706), + [anon_sym_unsigned] = ACTIONS(3706), + [anon_sym_long] = ACTIONS(3706), + [anon_sym_short] = ACTIONS(3706), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_static] = ACTIONS(3706), + [anon_sym_register] = ACTIONS(3706), + [anon_sym_inline] = ACTIONS(3706), + [anon_sym___inline] = ACTIONS(3706), + [anon_sym___inline__] = ACTIONS(3706), + [anon_sym___forceinline] = ACTIONS(3706), + [anon_sym_thread_local] = ACTIONS(3706), + [anon_sym___thread] = ACTIONS(3706), + [anon_sym_const] = ACTIONS(3706), + [anon_sym_constexpr] = ACTIONS(3706), + [anon_sym_volatile] = ACTIONS(3706), + [anon_sym_restrict] = ACTIONS(3706), + [anon_sym___restrict__] = ACTIONS(3706), + [anon_sym__Atomic] = ACTIONS(3706), + [anon_sym__Noreturn] = ACTIONS(3706), + [anon_sym_noreturn] = ACTIONS(3706), + [anon_sym__Nonnull] = ACTIONS(3706), + [anon_sym_mutable] = ACTIONS(3706), + [anon_sym_constinit] = ACTIONS(3706), + [anon_sym_consteval] = ACTIONS(3706), + [anon_sym_alignas] = ACTIONS(3706), + [anon_sym__Alignas] = ACTIONS(3706), + [sym_primitive_type] = ACTIONS(3706), + [anon_sym_enum] = ACTIONS(3706), + [anon_sym_class] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3706), + [anon_sym_union] = ACTIONS(3706), + [anon_sym_typename] = ACTIONS(3706), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3706), + [anon_sym_decltype] = ACTIONS(3706), + [anon_sym_explicit] = ACTIONS(3706), + [anon_sym_private] = ACTIONS(3706), + [anon_sym_template] = ACTIONS(3706), + [anon_sym_operator] = ACTIONS(3706), + [anon_sym_friend] = ACTIONS(3706), + [anon_sym_public] = ACTIONS(3706), + [anon_sym_protected] = ACTIONS(3706), + [anon_sym_static_assert] = ACTIONS(3706), + [anon_sym_LBRACK_COLON] = ACTIONS(3708), }, [STATE(3404)] = { - [sym_identifier] = ACTIONS(8742), - [aux_sym_preproc_def_token1] = ACTIONS(8742), - [aux_sym_preproc_if_token1] = ACTIONS(8742), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8742), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8742), - [sym_preproc_directive] = ACTIONS(8742), - [anon_sym_LPAREN2] = ACTIONS(8744), - [anon_sym_TILDE] = ACTIONS(8744), - [anon_sym_STAR] = ACTIONS(8744), - [anon_sym_AMP_AMP] = ACTIONS(8744), - [anon_sym_AMP] = ACTIONS(8742), - [anon_sym_SEMI] = ACTIONS(8744), - [anon_sym___extension__] = ACTIONS(8742), - [anon_sym_typedef] = ACTIONS(8742), - [anon_sym_virtual] = ACTIONS(8742), - [anon_sym_extern] = ACTIONS(8742), - [anon_sym___attribute__] = ACTIONS(8742), - [anon_sym___attribute] = ACTIONS(8742), - [anon_sym_using] = ACTIONS(8742), - [anon_sym_COLON_COLON] = ACTIONS(8744), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8744), - [anon_sym___declspec] = ACTIONS(8742), - [anon_sym___based] = ACTIONS(8742), - [anon_sym_RBRACE] = ACTIONS(8744), - [anon_sym_signed] = ACTIONS(8742), - [anon_sym_unsigned] = ACTIONS(8742), - [anon_sym_long] = ACTIONS(8742), - [anon_sym_short] = ACTIONS(8742), - [anon_sym_LBRACK] = ACTIONS(8742), - [anon_sym_static] = ACTIONS(8742), - [anon_sym_register] = ACTIONS(8742), - [anon_sym_inline] = ACTIONS(8742), - [anon_sym___inline] = ACTIONS(8742), - [anon_sym___inline__] = ACTIONS(8742), - [anon_sym___forceinline] = ACTIONS(8742), - [anon_sym_thread_local] = ACTIONS(8742), - [anon_sym___thread] = ACTIONS(8742), - [anon_sym_const] = ACTIONS(8742), - [anon_sym_constexpr] = ACTIONS(8742), - [anon_sym_volatile] = ACTIONS(8742), - [anon_sym_restrict] = ACTIONS(8742), - [anon_sym___restrict__] = ACTIONS(8742), - [anon_sym__Atomic] = ACTIONS(8742), - [anon_sym__Noreturn] = ACTIONS(8742), - [anon_sym_noreturn] = ACTIONS(8742), - [anon_sym__Nonnull] = ACTIONS(8742), - [anon_sym_mutable] = ACTIONS(8742), - [anon_sym_constinit] = ACTIONS(8742), - [anon_sym_consteval] = ACTIONS(8742), - [anon_sym_alignas] = ACTIONS(8742), - [anon_sym__Alignas] = ACTIONS(8742), - [sym_primitive_type] = ACTIONS(8742), - [anon_sym_enum] = ACTIONS(8742), - [anon_sym_class] = ACTIONS(8742), - [anon_sym_struct] = ACTIONS(8742), - [anon_sym_union] = ACTIONS(8742), - [anon_sym_typename] = ACTIONS(8742), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8742), - [anon_sym_decltype] = ACTIONS(8742), - [anon_sym_explicit] = ACTIONS(8742), - [anon_sym_private] = ACTIONS(8742), - [anon_sym_template] = ACTIONS(8742), - [anon_sym_operator] = ACTIONS(8742), - [anon_sym_friend] = ACTIONS(8742), - [anon_sym_public] = ACTIONS(8742), - [anon_sym_protected] = ACTIONS(8742), - [anon_sym_static_assert] = ACTIONS(8742), - [anon_sym_LBRACK_COLON] = ACTIONS(8744), + [sym_identifier] = ACTIONS(3746), + [aux_sym_preproc_def_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token1] = ACTIONS(3746), + [aux_sym_preproc_if_token2] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3746), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3746), + [sym_preproc_directive] = ACTIONS(3746), + [anon_sym_LPAREN2] = ACTIONS(3748), + [anon_sym_TILDE] = ACTIONS(3748), + [anon_sym_STAR] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_AMP] = ACTIONS(3746), + [anon_sym_SEMI] = ACTIONS(3748), + [anon_sym___extension__] = ACTIONS(3746), + [anon_sym_typedef] = ACTIONS(3746), + [anon_sym_virtual] = ACTIONS(3746), + [anon_sym_extern] = ACTIONS(3746), + [anon_sym___attribute__] = ACTIONS(3746), + [anon_sym___attribute] = ACTIONS(3746), + [anon_sym_using] = ACTIONS(3746), + [anon_sym_COLON_COLON] = ACTIONS(3748), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3748), + [anon_sym___declspec] = ACTIONS(3746), + [anon_sym___based] = ACTIONS(3746), + [anon_sym_signed] = ACTIONS(3746), + [anon_sym_unsigned] = ACTIONS(3746), + [anon_sym_long] = ACTIONS(3746), + [anon_sym_short] = ACTIONS(3746), + [anon_sym_LBRACK] = ACTIONS(3746), + [anon_sym_static] = ACTIONS(3746), + [anon_sym_register] = ACTIONS(3746), + [anon_sym_inline] = ACTIONS(3746), + [anon_sym___inline] = ACTIONS(3746), + [anon_sym___inline__] = ACTIONS(3746), + [anon_sym___forceinline] = ACTIONS(3746), + [anon_sym_thread_local] = ACTIONS(3746), + [anon_sym___thread] = ACTIONS(3746), + [anon_sym_const] = ACTIONS(3746), + [anon_sym_constexpr] = ACTIONS(3746), + [anon_sym_volatile] = ACTIONS(3746), + [anon_sym_restrict] = ACTIONS(3746), + [anon_sym___restrict__] = ACTIONS(3746), + [anon_sym__Atomic] = ACTIONS(3746), + [anon_sym__Noreturn] = ACTIONS(3746), + [anon_sym_noreturn] = ACTIONS(3746), + [anon_sym__Nonnull] = ACTIONS(3746), + [anon_sym_mutable] = ACTIONS(3746), + [anon_sym_constinit] = ACTIONS(3746), + [anon_sym_consteval] = ACTIONS(3746), + [anon_sym_alignas] = ACTIONS(3746), + [anon_sym__Alignas] = ACTIONS(3746), + [sym_primitive_type] = ACTIONS(3746), + [anon_sym_enum] = ACTIONS(3746), + [anon_sym_class] = ACTIONS(3746), + [anon_sym_struct] = ACTIONS(3746), + [anon_sym_union] = ACTIONS(3746), + [anon_sym_typename] = ACTIONS(3746), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3746), + [anon_sym_decltype] = ACTIONS(3746), + [anon_sym_explicit] = ACTIONS(3746), + [anon_sym_private] = ACTIONS(3746), + [anon_sym_template] = ACTIONS(3746), + [anon_sym_operator] = ACTIONS(3746), + [anon_sym_friend] = ACTIONS(3746), + [anon_sym_public] = ACTIONS(3746), + [anon_sym_protected] = ACTIONS(3746), + [anon_sym_static_assert] = ACTIONS(3746), + [anon_sym_LBRACK_COLON] = ACTIONS(3748), }, [STATE(3405)] = { - [sym_identifier] = ACTIONS(8746), - [aux_sym_preproc_def_token1] = ACTIONS(8746), - [aux_sym_preproc_if_token1] = ACTIONS(8746), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8746), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8746), - [sym_preproc_directive] = ACTIONS(8746), - [anon_sym_LPAREN2] = ACTIONS(8748), - [anon_sym_TILDE] = ACTIONS(8748), - [anon_sym_STAR] = ACTIONS(8748), - [anon_sym_AMP_AMP] = ACTIONS(8748), - [anon_sym_AMP] = ACTIONS(8746), - [anon_sym_SEMI] = ACTIONS(8748), - [anon_sym___extension__] = ACTIONS(8746), - [anon_sym_typedef] = ACTIONS(8746), - [anon_sym_virtual] = ACTIONS(8746), - [anon_sym_extern] = ACTIONS(8746), - [anon_sym___attribute__] = ACTIONS(8746), - [anon_sym___attribute] = ACTIONS(8746), - [anon_sym_using] = ACTIONS(8746), - [anon_sym_COLON_COLON] = ACTIONS(8748), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8748), - [anon_sym___declspec] = ACTIONS(8746), - [anon_sym___based] = ACTIONS(8746), - [anon_sym_RBRACE] = ACTIONS(8748), - [anon_sym_signed] = ACTIONS(8746), - [anon_sym_unsigned] = ACTIONS(8746), - [anon_sym_long] = ACTIONS(8746), - [anon_sym_short] = ACTIONS(8746), - [anon_sym_LBRACK] = ACTIONS(8746), - [anon_sym_static] = ACTIONS(8746), - [anon_sym_register] = ACTIONS(8746), - [anon_sym_inline] = ACTIONS(8746), - [anon_sym___inline] = ACTIONS(8746), - [anon_sym___inline__] = ACTIONS(8746), - [anon_sym___forceinline] = ACTIONS(8746), - [anon_sym_thread_local] = ACTIONS(8746), - [anon_sym___thread] = ACTIONS(8746), - [anon_sym_const] = ACTIONS(8746), - [anon_sym_constexpr] = ACTIONS(8746), - [anon_sym_volatile] = ACTIONS(8746), - [anon_sym_restrict] = ACTIONS(8746), - [anon_sym___restrict__] = ACTIONS(8746), - [anon_sym__Atomic] = ACTIONS(8746), - [anon_sym__Noreturn] = ACTIONS(8746), - [anon_sym_noreturn] = ACTIONS(8746), - [anon_sym__Nonnull] = ACTIONS(8746), - [anon_sym_mutable] = ACTIONS(8746), - [anon_sym_constinit] = ACTIONS(8746), - [anon_sym_consteval] = ACTIONS(8746), - [anon_sym_alignas] = ACTIONS(8746), - [anon_sym__Alignas] = ACTIONS(8746), - [sym_primitive_type] = ACTIONS(8746), - [anon_sym_enum] = ACTIONS(8746), - [anon_sym_class] = ACTIONS(8746), - [anon_sym_struct] = ACTIONS(8746), - [anon_sym_union] = ACTIONS(8746), - [anon_sym_typename] = ACTIONS(8746), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8746), - [anon_sym_decltype] = ACTIONS(8746), - [anon_sym_explicit] = ACTIONS(8746), - [anon_sym_private] = ACTIONS(8746), - [anon_sym_template] = ACTIONS(8746), - [anon_sym_operator] = ACTIONS(8746), - [anon_sym_friend] = ACTIONS(8746), - [anon_sym_public] = ACTIONS(8746), - [anon_sym_protected] = ACTIONS(8746), - [anon_sym_static_assert] = ACTIONS(8746), - [anon_sym_LBRACK_COLON] = ACTIONS(8748), + [sym_identifier] = ACTIONS(3750), + [aux_sym_preproc_def_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token1] = ACTIONS(3750), + [aux_sym_preproc_if_token2] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3750), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3750), + [sym_preproc_directive] = ACTIONS(3750), + [anon_sym_LPAREN2] = ACTIONS(3752), + [anon_sym_TILDE] = ACTIONS(3752), + [anon_sym_STAR] = ACTIONS(3752), + [anon_sym_AMP_AMP] = ACTIONS(3752), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym___extension__] = ACTIONS(3750), + [anon_sym_typedef] = ACTIONS(3750), + [anon_sym_virtual] = ACTIONS(3750), + [anon_sym_extern] = ACTIONS(3750), + [anon_sym___attribute__] = ACTIONS(3750), + [anon_sym___attribute] = ACTIONS(3750), + [anon_sym_using] = ACTIONS(3750), + [anon_sym_COLON_COLON] = ACTIONS(3752), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3752), + [anon_sym___declspec] = ACTIONS(3750), + [anon_sym___based] = ACTIONS(3750), + [anon_sym_signed] = ACTIONS(3750), + [anon_sym_unsigned] = ACTIONS(3750), + [anon_sym_long] = ACTIONS(3750), + [anon_sym_short] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(3750), + [anon_sym_static] = ACTIONS(3750), + [anon_sym_register] = ACTIONS(3750), + [anon_sym_inline] = ACTIONS(3750), + [anon_sym___inline] = ACTIONS(3750), + [anon_sym___inline__] = ACTIONS(3750), + [anon_sym___forceinline] = ACTIONS(3750), + [anon_sym_thread_local] = ACTIONS(3750), + [anon_sym___thread] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym___restrict__] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym__Noreturn] = ACTIONS(3750), + [anon_sym_noreturn] = ACTIONS(3750), + [anon_sym__Nonnull] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_constinit] = ACTIONS(3750), + [anon_sym_consteval] = ACTIONS(3750), + [anon_sym_alignas] = ACTIONS(3750), + [anon_sym__Alignas] = ACTIONS(3750), + [sym_primitive_type] = ACTIONS(3750), + [anon_sym_enum] = ACTIONS(3750), + [anon_sym_class] = ACTIONS(3750), + [anon_sym_struct] = ACTIONS(3750), + [anon_sym_union] = ACTIONS(3750), + [anon_sym_typename] = ACTIONS(3750), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3750), + [anon_sym_decltype] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_private] = ACTIONS(3750), + [anon_sym_template] = ACTIONS(3750), + [anon_sym_operator] = ACTIONS(3750), + [anon_sym_friend] = ACTIONS(3750), + [anon_sym_public] = ACTIONS(3750), + [anon_sym_protected] = ACTIONS(3750), + [anon_sym_static_assert] = ACTIONS(3750), + [anon_sym_LBRACK_COLON] = ACTIONS(3752), }, [STATE(3406)] = { - [sym_identifier] = ACTIONS(4020), - [aux_sym_preproc_def_token1] = ACTIONS(4020), - [aux_sym_preproc_if_token1] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4020), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4020), - [sym_preproc_directive] = ACTIONS(4020), - [anon_sym_LPAREN2] = ACTIONS(4022), - [anon_sym_TILDE] = ACTIONS(4022), - [anon_sym_STAR] = ACTIONS(4022), - [anon_sym_AMP_AMP] = ACTIONS(4022), - [anon_sym_AMP] = ACTIONS(4020), - [anon_sym_SEMI] = ACTIONS(4022), - [anon_sym___extension__] = ACTIONS(4020), - [anon_sym_typedef] = ACTIONS(4020), - [anon_sym_virtual] = ACTIONS(4020), - [anon_sym_extern] = ACTIONS(4020), - [anon_sym___attribute__] = ACTIONS(4020), - [anon_sym___attribute] = ACTIONS(4020), - [anon_sym_using] = ACTIONS(4020), - [anon_sym_COLON_COLON] = ACTIONS(4022), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4022), - [anon_sym___declspec] = ACTIONS(4020), - [anon_sym___based] = ACTIONS(4020), - [anon_sym_RBRACE] = ACTIONS(4022), - [anon_sym_signed] = ACTIONS(4020), - [anon_sym_unsigned] = ACTIONS(4020), - [anon_sym_long] = ACTIONS(4020), - [anon_sym_short] = ACTIONS(4020), - [anon_sym_LBRACK] = ACTIONS(4020), - [anon_sym_static] = ACTIONS(4020), - [anon_sym_register] = ACTIONS(4020), - [anon_sym_inline] = ACTIONS(4020), - [anon_sym___inline] = ACTIONS(4020), - [anon_sym___inline__] = ACTIONS(4020), - [anon_sym___forceinline] = ACTIONS(4020), - [anon_sym_thread_local] = ACTIONS(4020), - [anon_sym___thread] = ACTIONS(4020), - [anon_sym_const] = ACTIONS(4020), - [anon_sym_constexpr] = ACTIONS(4020), - [anon_sym_volatile] = ACTIONS(4020), - [anon_sym_restrict] = ACTIONS(4020), - [anon_sym___restrict__] = ACTIONS(4020), - [anon_sym__Atomic] = ACTIONS(4020), - [anon_sym__Noreturn] = ACTIONS(4020), - [anon_sym_noreturn] = ACTIONS(4020), - [anon_sym__Nonnull] = ACTIONS(4020), - [anon_sym_mutable] = ACTIONS(4020), - [anon_sym_constinit] = ACTIONS(4020), - [anon_sym_consteval] = ACTIONS(4020), - [anon_sym_alignas] = ACTIONS(4020), - [anon_sym__Alignas] = ACTIONS(4020), - [sym_primitive_type] = ACTIONS(4020), - [anon_sym_enum] = ACTIONS(4020), - [anon_sym_class] = ACTIONS(4020), - [anon_sym_struct] = ACTIONS(4020), - [anon_sym_union] = ACTIONS(4020), - [anon_sym_typename] = ACTIONS(4020), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4020), - [anon_sym_decltype] = ACTIONS(4020), - [anon_sym_explicit] = ACTIONS(4020), - [anon_sym_private] = ACTIONS(4020), - [anon_sym_template] = ACTIONS(4020), - [anon_sym_operator] = ACTIONS(4020), - [anon_sym_friend] = ACTIONS(4020), - [anon_sym_public] = ACTIONS(4020), - [anon_sym_protected] = ACTIONS(4020), - [anon_sym_static_assert] = ACTIONS(4020), - [anon_sym_LBRACK_COLON] = ACTIONS(4022), + [sym_identifier] = ACTIONS(4317), + [aux_sym_preproc_def_token1] = ACTIONS(4317), + [aux_sym_preproc_if_token1] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4317), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4317), + [sym_preproc_directive] = ACTIONS(4317), + [anon_sym_LPAREN2] = ACTIONS(4319), + [anon_sym_TILDE] = ACTIONS(4319), + [anon_sym_STAR] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym___extension__] = ACTIONS(4317), + [anon_sym_typedef] = ACTIONS(4317), + [anon_sym_virtual] = ACTIONS(4317), + [anon_sym_extern] = ACTIONS(4317), + [anon_sym___attribute__] = ACTIONS(4317), + [anon_sym___attribute] = ACTIONS(4317), + [anon_sym_using] = ACTIONS(4317), + [anon_sym_COLON_COLON] = ACTIONS(4319), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4319), + [anon_sym___declspec] = ACTIONS(4317), + [anon_sym___based] = ACTIONS(4317), + [anon_sym_RBRACE] = ACTIONS(4319), + [anon_sym_signed] = ACTIONS(4317), + [anon_sym_unsigned] = ACTIONS(4317), + [anon_sym_long] = ACTIONS(4317), + [anon_sym_short] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(4317), + [anon_sym_static] = ACTIONS(4317), + [anon_sym_register] = ACTIONS(4317), + [anon_sym_inline] = ACTIONS(4317), + [anon_sym___inline] = ACTIONS(4317), + [anon_sym___inline__] = ACTIONS(4317), + [anon_sym___forceinline] = ACTIONS(4317), + [anon_sym_thread_local] = ACTIONS(4317), + [anon_sym___thread] = ACTIONS(4317), + [anon_sym_const] = ACTIONS(4317), + [anon_sym_constexpr] = ACTIONS(4317), + [anon_sym_volatile] = ACTIONS(4317), + [anon_sym_restrict] = ACTIONS(4317), + [anon_sym___restrict__] = ACTIONS(4317), + [anon_sym__Atomic] = ACTIONS(4317), + [anon_sym__Noreturn] = ACTIONS(4317), + [anon_sym_noreturn] = ACTIONS(4317), + [anon_sym__Nonnull] = ACTIONS(4317), + [anon_sym_mutable] = ACTIONS(4317), + [anon_sym_constinit] = ACTIONS(4317), + [anon_sym_consteval] = ACTIONS(4317), + [anon_sym_alignas] = ACTIONS(4317), + [anon_sym__Alignas] = ACTIONS(4317), + [sym_primitive_type] = ACTIONS(4317), + [anon_sym_enum] = ACTIONS(4317), + [anon_sym_class] = ACTIONS(4317), + [anon_sym_struct] = ACTIONS(4317), + [anon_sym_union] = ACTIONS(4317), + [anon_sym_typename] = ACTIONS(4317), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4317), + [anon_sym_decltype] = ACTIONS(4317), + [anon_sym_explicit] = ACTIONS(4317), + [anon_sym_private] = ACTIONS(4317), + [anon_sym_template] = ACTIONS(4317), + [anon_sym_operator] = ACTIONS(4317), + [anon_sym_friend] = ACTIONS(4317), + [anon_sym_public] = ACTIONS(4317), + [anon_sym_protected] = ACTIONS(4317), + [anon_sym_static_assert] = ACTIONS(4317), + [anon_sym_LBRACK_COLON] = ACTIONS(4319), }, [STATE(3407)] = { - [sym_identifier] = ACTIONS(8766), - [aux_sym_preproc_def_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token1] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), - [sym_preproc_directive] = ACTIONS(8766), - [anon_sym_LPAREN2] = ACTIONS(8768), - [anon_sym_TILDE] = ACTIONS(8768), - [anon_sym_STAR] = ACTIONS(8768), - [anon_sym_AMP_AMP] = ACTIONS(8768), - [anon_sym_AMP] = ACTIONS(8766), - [anon_sym_SEMI] = ACTIONS(8768), - [anon_sym___extension__] = ACTIONS(8766), - [anon_sym_typedef] = ACTIONS(8766), - [anon_sym_virtual] = ACTIONS(8766), - [anon_sym_extern] = ACTIONS(8766), - [anon_sym___attribute__] = ACTIONS(8766), - [anon_sym___attribute] = ACTIONS(8766), - [anon_sym_using] = ACTIONS(8766), - [anon_sym_COLON_COLON] = ACTIONS(8768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), - [anon_sym___declspec] = ACTIONS(8766), - [anon_sym___based] = ACTIONS(8766), - [anon_sym_RBRACE] = ACTIONS(8768), - [anon_sym_signed] = ACTIONS(8766), - [anon_sym_unsigned] = ACTIONS(8766), - [anon_sym_long] = ACTIONS(8766), - [anon_sym_short] = ACTIONS(8766), - [anon_sym_LBRACK] = ACTIONS(8766), - [anon_sym_static] = ACTIONS(8766), - [anon_sym_register] = ACTIONS(8766), - [anon_sym_inline] = ACTIONS(8766), - [anon_sym___inline] = ACTIONS(8766), - [anon_sym___inline__] = ACTIONS(8766), - [anon_sym___forceinline] = ACTIONS(8766), - [anon_sym_thread_local] = ACTIONS(8766), - [anon_sym___thread] = ACTIONS(8766), - [anon_sym_const] = ACTIONS(8766), - [anon_sym_constexpr] = ACTIONS(8766), - [anon_sym_volatile] = ACTIONS(8766), - [anon_sym_restrict] = ACTIONS(8766), - [anon_sym___restrict__] = ACTIONS(8766), - [anon_sym__Atomic] = ACTIONS(8766), - [anon_sym__Noreturn] = ACTIONS(8766), - [anon_sym_noreturn] = ACTIONS(8766), - [anon_sym__Nonnull] = ACTIONS(8766), - [anon_sym_mutable] = ACTIONS(8766), - [anon_sym_constinit] = ACTIONS(8766), - [anon_sym_consteval] = ACTIONS(8766), - [anon_sym_alignas] = ACTIONS(8766), - [anon_sym__Alignas] = ACTIONS(8766), - [sym_primitive_type] = ACTIONS(8766), - [anon_sym_enum] = ACTIONS(8766), - [anon_sym_class] = ACTIONS(8766), - [anon_sym_struct] = ACTIONS(8766), - [anon_sym_union] = ACTIONS(8766), - [anon_sym_typename] = ACTIONS(8766), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8766), - [anon_sym_decltype] = ACTIONS(8766), - [anon_sym_explicit] = ACTIONS(8766), - [anon_sym_private] = ACTIONS(8766), - [anon_sym_template] = ACTIONS(8766), - [anon_sym_operator] = ACTIONS(8766), - [anon_sym_friend] = ACTIONS(8766), - [anon_sym_public] = ACTIONS(8766), - [anon_sym_protected] = ACTIONS(8766), - [anon_sym_static_assert] = ACTIONS(8766), - [anon_sym_LBRACK_COLON] = ACTIONS(8768), + [sym_identifier] = ACTIONS(8701), + [aux_sym_preproc_def_token1] = ACTIONS(8701), + [aux_sym_preproc_if_token1] = ACTIONS(8701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8701), + [sym_preproc_directive] = ACTIONS(8701), + [anon_sym_LPAREN2] = ACTIONS(8703), + [anon_sym_TILDE] = ACTIONS(8703), + [anon_sym_STAR] = ACTIONS(8703), + [anon_sym_AMP_AMP] = ACTIONS(8703), + [anon_sym_AMP] = ACTIONS(8701), + [anon_sym_SEMI] = ACTIONS(8703), + [anon_sym___extension__] = ACTIONS(8701), + [anon_sym_typedef] = ACTIONS(8701), + [anon_sym_virtual] = ACTIONS(8701), + [anon_sym_extern] = ACTIONS(8701), + [anon_sym___attribute__] = ACTIONS(8701), + [anon_sym___attribute] = ACTIONS(8701), + [anon_sym_using] = ACTIONS(8701), + [anon_sym_COLON_COLON] = ACTIONS(8703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8703), + [anon_sym___declspec] = ACTIONS(8701), + [anon_sym___based] = ACTIONS(8701), + [anon_sym_RBRACE] = ACTIONS(8703), + [anon_sym_signed] = ACTIONS(8701), + [anon_sym_unsigned] = ACTIONS(8701), + [anon_sym_long] = ACTIONS(8701), + [anon_sym_short] = ACTIONS(8701), + [anon_sym_LBRACK] = ACTIONS(8701), + [anon_sym_static] = ACTIONS(8701), + [anon_sym_register] = ACTIONS(8701), + [anon_sym_inline] = ACTIONS(8701), + [anon_sym___inline] = ACTIONS(8701), + [anon_sym___inline__] = ACTIONS(8701), + [anon_sym___forceinline] = ACTIONS(8701), + [anon_sym_thread_local] = ACTIONS(8701), + [anon_sym___thread] = ACTIONS(8701), + [anon_sym_const] = ACTIONS(8701), + [anon_sym_constexpr] = ACTIONS(8701), + [anon_sym_volatile] = ACTIONS(8701), + [anon_sym_restrict] = ACTIONS(8701), + [anon_sym___restrict__] = ACTIONS(8701), + [anon_sym__Atomic] = ACTIONS(8701), + [anon_sym__Noreturn] = ACTIONS(8701), + [anon_sym_noreturn] = ACTIONS(8701), + [anon_sym__Nonnull] = ACTIONS(8701), + [anon_sym_mutable] = ACTIONS(8701), + [anon_sym_constinit] = ACTIONS(8701), + [anon_sym_consteval] = ACTIONS(8701), + [anon_sym_alignas] = ACTIONS(8701), + [anon_sym__Alignas] = ACTIONS(8701), + [sym_primitive_type] = ACTIONS(8701), + [anon_sym_enum] = ACTIONS(8701), + [anon_sym_class] = ACTIONS(8701), + [anon_sym_struct] = ACTIONS(8701), + [anon_sym_union] = ACTIONS(8701), + [anon_sym_typename] = ACTIONS(8701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8701), + [anon_sym_decltype] = ACTIONS(8701), + [anon_sym_explicit] = ACTIONS(8701), + [anon_sym_private] = ACTIONS(8701), + [anon_sym_template] = ACTIONS(8701), + [anon_sym_operator] = ACTIONS(8701), + [anon_sym_friend] = ACTIONS(8701), + [anon_sym_public] = ACTIONS(8701), + [anon_sym_protected] = ACTIONS(8701), + [anon_sym_static_assert] = ACTIONS(8701), + [anon_sym_LBRACK_COLON] = ACTIONS(8703), }, [STATE(3408)] = { - [sym_identifier] = ACTIONS(8766), - [aux_sym_preproc_def_token1] = ACTIONS(8766), - [aux_sym_preproc_if_token1] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8766), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8766), - [sym_preproc_directive] = ACTIONS(8766), - [anon_sym_LPAREN2] = ACTIONS(8768), - [anon_sym_TILDE] = ACTIONS(8768), - [anon_sym_STAR] = ACTIONS(8768), - [anon_sym_AMP_AMP] = ACTIONS(8768), - [anon_sym_AMP] = ACTIONS(8766), - [anon_sym_SEMI] = ACTIONS(8768), - [anon_sym___extension__] = ACTIONS(8766), - [anon_sym_typedef] = ACTIONS(8766), - [anon_sym_virtual] = ACTIONS(8766), - [anon_sym_extern] = ACTIONS(8766), - [anon_sym___attribute__] = ACTIONS(8766), - [anon_sym___attribute] = ACTIONS(8766), - [anon_sym_using] = ACTIONS(8766), - [anon_sym_COLON_COLON] = ACTIONS(8768), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8768), - [anon_sym___declspec] = ACTIONS(8766), - [anon_sym___based] = ACTIONS(8766), - [anon_sym_RBRACE] = ACTIONS(8768), - [anon_sym_signed] = ACTIONS(8766), - [anon_sym_unsigned] = ACTIONS(8766), - [anon_sym_long] = ACTIONS(8766), - [anon_sym_short] = ACTIONS(8766), - [anon_sym_LBRACK] = ACTIONS(8766), - [anon_sym_static] = ACTIONS(8766), - [anon_sym_register] = ACTIONS(8766), - [anon_sym_inline] = ACTIONS(8766), - [anon_sym___inline] = ACTIONS(8766), - [anon_sym___inline__] = ACTIONS(8766), - [anon_sym___forceinline] = ACTIONS(8766), - [anon_sym_thread_local] = ACTIONS(8766), - [anon_sym___thread] = ACTIONS(8766), - [anon_sym_const] = ACTIONS(8766), - [anon_sym_constexpr] = ACTIONS(8766), - [anon_sym_volatile] = ACTIONS(8766), - [anon_sym_restrict] = ACTIONS(8766), - [anon_sym___restrict__] = ACTIONS(8766), - [anon_sym__Atomic] = ACTIONS(8766), - [anon_sym__Noreturn] = ACTIONS(8766), - [anon_sym_noreturn] = ACTIONS(8766), - [anon_sym__Nonnull] = ACTIONS(8766), - [anon_sym_mutable] = ACTIONS(8766), - [anon_sym_constinit] = ACTIONS(8766), - [anon_sym_consteval] = ACTIONS(8766), - [anon_sym_alignas] = ACTIONS(8766), - [anon_sym__Alignas] = ACTIONS(8766), - [sym_primitive_type] = ACTIONS(8766), - [anon_sym_enum] = ACTIONS(8766), - [anon_sym_class] = ACTIONS(8766), - [anon_sym_struct] = ACTIONS(8766), - [anon_sym_union] = ACTIONS(8766), - [anon_sym_typename] = ACTIONS(8766), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8766), - [anon_sym_decltype] = ACTIONS(8766), - [anon_sym_explicit] = ACTIONS(8766), - [anon_sym_private] = ACTIONS(8766), - [anon_sym_template] = ACTIONS(8766), - [anon_sym_operator] = ACTIONS(8766), - [anon_sym_friend] = ACTIONS(8766), - [anon_sym_public] = ACTIONS(8766), - [anon_sym_protected] = ACTIONS(8766), - [anon_sym_static_assert] = ACTIONS(8766), - [anon_sym_LBRACK_COLON] = ACTIONS(8768), + [sym_identifier] = ACTIONS(3877), + [aux_sym_preproc_def_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token1] = ACTIONS(3877), + [aux_sym_preproc_if_token2] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3877), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3877), + [sym_preproc_directive] = ACTIONS(3877), + [anon_sym_LPAREN2] = ACTIONS(3879), + [anon_sym_TILDE] = ACTIONS(3879), + [anon_sym_STAR] = ACTIONS(3879), + [anon_sym_AMP_AMP] = ACTIONS(3879), + [anon_sym_AMP] = ACTIONS(3877), + [anon_sym_SEMI] = ACTIONS(3879), + [anon_sym___extension__] = ACTIONS(3877), + [anon_sym_typedef] = ACTIONS(3877), + [anon_sym_virtual] = ACTIONS(3877), + [anon_sym_extern] = ACTIONS(3877), + [anon_sym___attribute__] = ACTIONS(3877), + [anon_sym___attribute] = ACTIONS(3877), + [anon_sym_using] = ACTIONS(3877), + [anon_sym_COLON_COLON] = ACTIONS(3879), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3879), + [anon_sym___declspec] = ACTIONS(3877), + [anon_sym___based] = ACTIONS(3877), + [anon_sym_signed] = ACTIONS(3877), + [anon_sym_unsigned] = ACTIONS(3877), + [anon_sym_long] = ACTIONS(3877), + [anon_sym_short] = ACTIONS(3877), + [anon_sym_LBRACK] = ACTIONS(3877), + [anon_sym_static] = ACTIONS(3877), + [anon_sym_register] = ACTIONS(3877), + [anon_sym_inline] = ACTIONS(3877), + [anon_sym___inline] = ACTIONS(3877), + [anon_sym___inline__] = ACTIONS(3877), + [anon_sym___forceinline] = ACTIONS(3877), + [anon_sym_thread_local] = ACTIONS(3877), + [anon_sym___thread] = ACTIONS(3877), + [anon_sym_const] = ACTIONS(3877), + [anon_sym_constexpr] = ACTIONS(3877), + [anon_sym_volatile] = ACTIONS(3877), + [anon_sym_restrict] = ACTIONS(3877), + [anon_sym___restrict__] = ACTIONS(3877), + [anon_sym__Atomic] = ACTIONS(3877), + [anon_sym__Noreturn] = ACTIONS(3877), + [anon_sym_noreturn] = ACTIONS(3877), + [anon_sym__Nonnull] = ACTIONS(3877), + [anon_sym_mutable] = ACTIONS(3877), + [anon_sym_constinit] = ACTIONS(3877), + [anon_sym_consteval] = ACTIONS(3877), + [anon_sym_alignas] = ACTIONS(3877), + [anon_sym__Alignas] = ACTIONS(3877), + [sym_primitive_type] = ACTIONS(3877), + [anon_sym_enum] = ACTIONS(3877), + [anon_sym_class] = ACTIONS(3877), + [anon_sym_struct] = ACTIONS(3877), + [anon_sym_union] = ACTIONS(3877), + [anon_sym_typename] = ACTIONS(3877), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3877), + [anon_sym_decltype] = ACTIONS(3877), + [anon_sym_explicit] = ACTIONS(3877), + [anon_sym_private] = ACTIONS(3877), + [anon_sym_template] = ACTIONS(3877), + [anon_sym_operator] = ACTIONS(3877), + [anon_sym_friend] = ACTIONS(3877), + [anon_sym_public] = ACTIONS(3877), + [anon_sym_protected] = ACTIONS(3877), + [anon_sym_static_assert] = ACTIONS(3877), + [anon_sym_LBRACK_COLON] = ACTIONS(3879), }, [STATE(3409)] = { - [sym_identifier] = ACTIONS(8802), - [aux_sym_preproc_def_token1] = ACTIONS(8802), - [aux_sym_preproc_if_token1] = ACTIONS(8802), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8802), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8802), - [sym_preproc_directive] = ACTIONS(8802), - [anon_sym_LPAREN2] = ACTIONS(8804), - [anon_sym_TILDE] = ACTIONS(8804), - [anon_sym_STAR] = ACTIONS(8804), - [anon_sym_AMP_AMP] = ACTIONS(8804), - [anon_sym_AMP] = ACTIONS(8802), - [anon_sym_SEMI] = ACTIONS(8804), - [anon_sym___extension__] = ACTIONS(8802), - [anon_sym_typedef] = ACTIONS(8802), - [anon_sym_virtual] = ACTIONS(8802), - [anon_sym_extern] = ACTIONS(8802), - [anon_sym___attribute__] = ACTIONS(8802), - [anon_sym___attribute] = ACTIONS(8802), - [anon_sym_using] = ACTIONS(8802), - [anon_sym_COLON_COLON] = ACTIONS(8804), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8804), - [anon_sym___declspec] = ACTIONS(8802), - [anon_sym___based] = ACTIONS(8802), - [anon_sym_RBRACE] = ACTIONS(8804), - [anon_sym_signed] = ACTIONS(8802), - [anon_sym_unsigned] = ACTIONS(8802), - [anon_sym_long] = ACTIONS(8802), - [anon_sym_short] = ACTIONS(8802), - [anon_sym_LBRACK] = ACTIONS(8802), - [anon_sym_static] = ACTIONS(8802), - [anon_sym_register] = ACTIONS(8802), - [anon_sym_inline] = ACTIONS(8802), - [anon_sym___inline] = ACTIONS(8802), - [anon_sym___inline__] = ACTIONS(8802), - [anon_sym___forceinline] = ACTIONS(8802), - [anon_sym_thread_local] = ACTIONS(8802), - [anon_sym___thread] = ACTIONS(8802), - [anon_sym_const] = ACTIONS(8802), - [anon_sym_constexpr] = ACTIONS(8802), - [anon_sym_volatile] = ACTIONS(8802), - [anon_sym_restrict] = ACTIONS(8802), - [anon_sym___restrict__] = ACTIONS(8802), - [anon_sym__Atomic] = ACTIONS(8802), - [anon_sym__Noreturn] = ACTIONS(8802), - [anon_sym_noreturn] = ACTIONS(8802), - [anon_sym__Nonnull] = ACTIONS(8802), - [anon_sym_mutable] = ACTIONS(8802), - [anon_sym_constinit] = ACTIONS(8802), - [anon_sym_consteval] = ACTIONS(8802), - [anon_sym_alignas] = ACTIONS(8802), - [anon_sym__Alignas] = ACTIONS(8802), - [sym_primitive_type] = ACTIONS(8802), - [anon_sym_enum] = ACTIONS(8802), - [anon_sym_class] = ACTIONS(8802), - [anon_sym_struct] = ACTIONS(8802), - [anon_sym_union] = ACTIONS(8802), - [anon_sym_typename] = ACTIONS(8802), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8802), - [anon_sym_decltype] = ACTIONS(8802), - [anon_sym_explicit] = ACTIONS(8802), - [anon_sym_private] = ACTIONS(8802), - [anon_sym_template] = ACTIONS(8802), - [anon_sym_operator] = ACTIONS(8802), - [anon_sym_friend] = ACTIONS(8802), - [anon_sym_public] = ACTIONS(8802), - [anon_sym_protected] = ACTIONS(8802), - [anon_sym_static_assert] = ACTIONS(8802), - [anon_sym_LBRACK_COLON] = ACTIONS(8804), + [sym_identifier] = ACTIONS(8705), + [aux_sym_preproc_def_token1] = ACTIONS(8705), + [aux_sym_preproc_if_token1] = ACTIONS(8705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8705), + [sym_preproc_directive] = ACTIONS(8705), + [anon_sym_LPAREN2] = ACTIONS(8707), + [anon_sym_TILDE] = ACTIONS(8707), + [anon_sym_STAR] = ACTIONS(8707), + [anon_sym_AMP_AMP] = ACTIONS(8707), + [anon_sym_AMP] = ACTIONS(8705), + [anon_sym_SEMI] = ACTIONS(8707), + [anon_sym___extension__] = ACTIONS(8705), + [anon_sym_typedef] = ACTIONS(8705), + [anon_sym_virtual] = ACTIONS(8705), + [anon_sym_extern] = ACTIONS(8705), + [anon_sym___attribute__] = ACTIONS(8705), + [anon_sym___attribute] = ACTIONS(8705), + [anon_sym_using] = ACTIONS(8705), + [anon_sym_COLON_COLON] = ACTIONS(8707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8707), + [anon_sym___declspec] = ACTIONS(8705), + [anon_sym___based] = ACTIONS(8705), + [anon_sym_RBRACE] = ACTIONS(8707), + [anon_sym_signed] = ACTIONS(8705), + [anon_sym_unsigned] = ACTIONS(8705), + [anon_sym_long] = ACTIONS(8705), + [anon_sym_short] = ACTIONS(8705), + [anon_sym_LBRACK] = ACTIONS(8705), + [anon_sym_static] = ACTIONS(8705), + [anon_sym_register] = ACTIONS(8705), + [anon_sym_inline] = ACTIONS(8705), + [anon_sym___inline] = ACTIONS(8705), + [anon_sym___inline__] = ACTIONS(8705), + [anon_sym___forceinline] = ACTIONS(8705), + [anon_sym_thread_local] = ACTIONS(8705), + [anon_sym___thread] = ACTIONS(8705), + [anon_sym_const] = ACTIONS(8705), + [anon_sym_constexpr] = ACTIONS(8705), + [anon_sym_volatile] = ACTIONS(8705), + [anon_sym_restrict] = ACTIONS(8705), + [anon_sym___restrict__] = ACTIONS(8705), + [anon_sym__Atomic] = ACTIONS(8705), + [anon_sym__Noreturn] = ACTIONS(8705), + [anon_sym_noreturn] = ACTIONS(8705), + [anon_sym__Nonnull] = ACTIONS(8705), + [anon_sym_mutable] = ACTIONS(8705), + [anon_sym_constinit] = ACTIONS(8705), + [anon_sym_consteval] = ACTIONS(8705), + [anon_sym_alignas] = ACTIONS(8705), + [anon_sym__Alignas] = ACTIONS(8705), + [sym_primitive_type] = ACTIONS(8705), + [anon_sym_enum] = ACTIONS(8705), + [anon_sym_class] = ACTIONS(8705), + [anon_sym_struct] = ACTIONS(8705), + [anon_sym_union] = ACTIONS(8705), + [anon_sym_typename] = ACTIONS(8705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8705), + [anon_sym_decltype] = ACTIONS(8705), + [anon_sym_explicit] = ACTIONS(8705), + [anon_sym_private] = ACTIONS(8705), + [anon_sym_template] = ACTIONS(8705), + [anon_sym_operator] = ACTIONS(8705), + [anon_sym_friend] = ACTIONS(8705), + [anon_sym_public] = ACTIONS(8705), + [anon_sym_protected] = ACTIONS(8705), + [anon_sym_static_assert] = ACTIONS(8705), + [anon_sym_LBRACK_COLON] = ACTIONS(8707), }, [STATE(3410)] = { - [sym_identifier] = ACTIONS(8810), - [aux_sym_preproc_def_token1] = ACTIONS(8810), - [aux_sym_preproc_if_token1] = ACTIONS(8810), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8810), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8810), - [sym_preproc_directive] = ACTIONS(8810), - [anon_sym_LPAREN2] = ACTIONS(8812), - [anon_sym_TILDE] = ACTIONS(8812), - [anon_sym_STAR] = ACTIONS(8812), - [anon_sym_AMP_AMP] = ACTIONS(8812), - [anon_sym_AMP] = ACTIONS(8810), - [anon_sym_SEMI] = ACTIONS(8812), - [anon_sym___extension__] = ACTIONS(8810), - [anon_sym_typedef] = ACTIONS(8810), - [anon_sym_virtual] = ACTIONS(8810), - [anon_sym_extern] = ACTIONS(8810), - [anon_sym___attribute__] = ACTIONS(8810), - [anon_sym___attribute] = ACTIONS(8810), - [anon_sym_using] = ACTIONS(8810), - [anon_sym_COLON_COLON] = ACTIONS(8812), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8812), - [anon_sym___declspec] = ACTIONS(8810), - [anon_sym___based] = ACTIONS(8810), - [anon_sym_RBRACE] = ACTIONS(8812), - [anon_sym_signed] = ACTIONS(8810), - [anon_sym_unsigned] = ACTIONS(8810), - [anon_sym_long] = ACTIONS(8810), - [anon_sym_short] = ACTIONS(8810), - [anon_sym_LBRACK] = ACTIONS(8810), - [anon_sym_static] = ACTIONS(8810), - [anon_sym_register] = ACTIONS(8810), - [anon_sym_inline] = ACTIONS(8810), - [anon_sym___inline] = ACTIONS(8810), - [anon_sym___inline__] = ACTIONS(8810), - [anon_sym___forceinline] = ACTIONS(8810), - [anon_sym_thread_local] = ACTIONS(8810), - [anon_sym___thread] = ACTIONS(8810), - [anon_sym_const] = ACTIONS(8810), - [anon_sym_constexpr] = ACTIONS(8810), - [anon_sym_volatile] = ACTIONS(8810), - [anon_sym_restrict] = ACTIONS(8810), - [anon_sym___restrict__] = ACTIONS(8810), - [anon_sym__Atomic] = ACTIONS(8810), - [anon_sym__Noreturn] = ACTIONS(8810), - [anon_sym_noreturn] = ACTIONS(8810), - [anon_sym__Nonnull] = ACTIONS(8810), - [anon_sym_mutable] = ACTIONS(8810), - [anon_sym_constinit] = ACTIONS(8810), - [anon_sym_consteval] = ACTIONS(8810), - [anon_sym_alignas] = ACTIONS(8810), - [anon_sym__Alignas] = ACTIONS(8810), - [sym_primitive_type] = ACTIONS(8810), - [anon_sym_enum] = ACTIONS(8810), - [anon_sym_class] = ACTIONS(8810), - [anon_sym_struct] = ACTIONS(8810), - [anon_sym_union] = ACTIONS(8810), - [anon_sym_typename] = ACTIONS(8810), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8810), - [anon_sym_decltype] = ACTIONS(8810), - [anon_sym_explicit] = ACTIONS(8810), - [anon_sym_private] = ACTIONS(8810), - [anon_sym_template] = ACTIONS(8810), - [anon_sym_operator] = ACTIONS(8810), - [anon_sym_friend] = ACTIONS(8810), - [anon_sym_public] = ACTIONS(8810), - [anon_sym_protected] = ACTIONS(8810), - [anon_sym_static_assert] = ACTIONS(8810), - [anon_sym_LBRACK_COLON] = ACTIONS(8812), + [sym_identifier] = ACTIONS(3881), + [aux_sym_preproc_def_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token2] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3881), + [sym_preproc_directive] = ACTIONS(3881), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_TILDE] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_SEMI] = ACTIONS(3883), + [anon_sym___extension__] = ACTIONS(3881), + [anon_sym_typedef] = ACTIONS(3881), + [anon_sym_virtual] = ACTIONS(3881), + [anon_sym_extern] = ACTIONS(3881), + [anon_sym___attribute__] = ACTIONS(3881), + [anon_sym___attribute] = ACTIONS(3881), + [anon_sym_using] = ACTIONS(3881), + [anon_sym_COLON_COLON] = ACTIONS(3883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3883), + [anon_sym___declspec] = ACTIONS(3881), + [anon_sym___based] = ACTIONS(3881), + [anon_sym_signed] = ACTIONS(3881), + [anon_sym_unsigned] = ACTIONS(3881), + [anon_sym_long] = ACTIONS(3881), + [anon_sym_short] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_static] = ACTIONS(3881), + [anon_sym_register] = ACTIONS(3881), + [anon_sym_inline] = ACTIONS(3881), + [anon_sym___inline] = ACTIONS(3881), + [anon_sym___inline__] = ACTIONS(3881), + [anon_sym___forceinline] = ACTIONS(3881), + [anon_sym_thread_local] = ACTIONS(3881), + [anon_sym___thread] = ACTIONS(3881), + [anon_sym_const] = ACTIONS(3881), + [anon_sym_constexpr] = ACTIONS(3881), + [anon_sym_volatile] = ACTIONS(3881), + [anon_sym_restrict] = ACTIONS(3881), + [anon_sym___restrict__] = ACTIONS(3881), + [anon_sym__Atomic] = ACTIONS(3881), + [anon_sym__Noreturn] = ACTIONS(3881), + [anon_sym_noreturn] = ACTIONS(3881), + [anon_sym__Nonnull] = ACTIONS(3881), + [anon_sym_mutable] = ACTIONS(3881), + [anon_sym_constinit] = ACTIONS(3881), + [anon_sym_consteval] = ACTIONS(3881), + [anon_sym_alignas] = ACTIONS(3881), + [anon_sym__Alignas] = ACTIONS(3881), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_enum] = ACTIONS(3881), + [anon_sym_class] = ACTIONS(3881), + [anon_sym_struct] = ACTIONS(3881), + [anon_sym_union] = ACTIONS(3881), + [anon_sym_typename] = ACTIONS(3881), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3881), + [anon_sym_decltype] = ACTIONS(3881), + [anon_sym_explicit] = ACTIONS(3881), + [anon_sym_private] = ACTIONS(3881), + [anon_sym_template] = ACTIONS(3881), + [anon_sym_operator] = ACTIONS(3881), + [anon_sym_friend] = ACTIONS(3881), + [anon_sym_public] = ACTIONS(3881), + [anon_sym_protected] = ACTIONS(3881), + [anon_sym_static_assert] = ACTIONS(3881), + [anon_sym_LBRACK_COLON] = ACTIONS(3883), }, [STATE(3411)] = { - [sym_identifier] = ACTIONS(4108), - [aux_sym_preproc_def_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token1] = ACTIONS(4108), - [aux_sym_preproc_if_token2] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4108), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_LPAREN2] = ACTIONS(4110), - [anon_sym_TILDE] = ACTIONS(4110), - [anon_sym_STAR] = ACTIONS(4110), - [anon_sym_AMP_AMP] = ACTIONS(4110), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4110), - [anon_sym___extension__] = ACTIONS(4108), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_virtual] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym___attribute__] = ACTIONS(4108), - [anon_sym___attribute] = ACTIONS(4108), - [anon_sym_using] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4110), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4110), - [anon_sym___declspec] = ACTIONS(4108), - [anon_sym___based] = ACTIONS(4108), - [anon_sym_signed] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [anon_sym_LBRACK] = ACTIONS(4108), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym___inline] = ACTIONS(4108), - [anon_sym___inline__] = ACTIONS(4108), - [anon_sym___forceinline] = ACTIONS(4108), - [anon_sym_thread_local] = ACTIONS(4108), - [anon_sym___thread] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym___restrict__] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym__Noreturn] = ACTIONS(4108), - [anon_sym_noreturn] = ACTIONS(4108), - [anon_sym__Nonnull] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_constinit] = ACTIONS(4108), - [anon_sym_consteval] = ACTIONS(4108), - [anon_sym_alignas] = ACTIONS(4108), - [anon_sym__Alignas] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_class] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4108), - [anon_sym_decltype] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_private] = ACTIONS(4108), - [anon_sym_template] = ACTIONS(4108), - [anon_sym_operator] = ACTIONS(4108), - [anon_sym_friend] = ACTIONS(4108), - [anon_sym_public] = ACTIONS(4108), - [anon_sym_protected] = ACTIONS(4108), - [anon_sym_static_assert] = ACTIONS(4108), - [anon_sym_LBRACK_COLON] = ACTIONS(4110), + [sym_identifier] = ACTIONS(3822), + [aux_sym_preproc_def_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token1] = ACTIONS(3822), + [aux_sym_preproc_if_token2] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3822), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3822), + [sym_preproc_directive] = ACTIONS(3822), + [anon_sym_LPAREN2] = ACTIONS(3824), + [anon_sym_TILDE] = ACTIONS(3824), + [anon_sym_STAR] = ACTIONS(3824), + [anon_sym_AMP_AMP] = ACTIONS(3824), + [anon_sym_AMP] = ACTIONS(3822), + [anon_sym_SEMI] = ACTIONS(3824), + [anon_sym___extension__] = ACTIONS(3822), + [anon_sym_typedef] = ACTIONS(3822), + [anon_sym_virtual] = ACTIONS(3822), + [anon_sym_extern] = ACTIONS(3822), + [anon_sym___attribute__] = ACTIONS(3822), + [anon_sym___attribute] = ACTIONS(3822), + [anon_sym_using] = ACTIONS(3822), + [anon_sym_COLON_COLON] = ACTIONS(3824), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3824), + [anon_sym___declspec] = ACTIONS(3822), + [anon_sym___based] = ACTIONS(3822), + [anon_sym_signed] = ACTIONS(3822), + [anon_sym_unsigned] = ACTIONS(3822), + [anon_sym_long] = ACTIONS(3822), + [anon_sym_short] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3822), + [anon_sym_static] = ACTIONS(3822), + [anon_sym_register] = ACTIONS(3822), + [anon_sym_inline] = ACTIONS(3822), + [anon_sym___inline] = ACTIONS(3822), + [anon_sym___inline__] = ACTIONS(3822), + [anon_sym___forceinline] = ACTIONS(3822), + [anon_sym_thread_local] = ACTIONS(3822), + [anon_sym___thread] = ACTIONS(3822), + [anon_sym_const] = ACTIONS(3822), + [anon_sym_constexpr] = ACTIONS(3822), + [anon_sym_volatile] = ACTIONS(3822), + [anon_sym_restrict] = ACTIONS(3822), + [anon_sym___restrict__] = ACTIONS(3822), + [anon_sym__Atomic] = ACTIONS(3822), + [anon_sym__Noreturn] = ACTIONS(3822), + [anon_sym_noreturn] = ACTIONS(3822), + [anon_sym__Nonnull] = ACTIONS(3822), + [anon_sym_mutable] = ACTIONS(3822), + [anon_sym_constinit] = ACTIONS(3822), + [anon_sym_consteval] = ACTIONS(3822), + [anon_sym_alignas] = ACTIONS(3822), + [anon_sym__Alignas] = ACTIONS(3822), + [sym_primitive_type] = ACTIONS(3822), + [anon_sym_enum] = ACTIONS(3822), + [anon_sym_class] = ACTIONS(3822), + [anon_sym_struct] = ACTIONS(3822), + [anon_sym_union] = ACTIONS(3822), + [anon_sym_typename] = ACTIONS(3822), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3822), + [anon_sym_decltype] = ACTIONS(3822), + [anon_sym_explicit] = ACTIONS(3822), + [anon_sym_private] = ACTIONS(3822), + [anon_sym_template] = ACTIONS(3822), + [anon_sym_operator] = ACTIONS(3822), + [anon_sym_friend] = ACTIONS(3822), + [anon_sym_public] = ACTIONS(3822), + [anon_sym_protected] = ACTIONS(3822), + [anon_sym_static_assert] = ACTIONS(3822), + [anon_sym_LBRACK_COLON] = ACTIONS(3824), }, [STATE(3412)] = { - [sym_identifier] = ACTIONS(3984), - [aux_sym_preproc_def_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token1] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), - [sym_preproc_directive] = ACTIONS(3984), - [anon_sym_LPAREN2] = ACTIONS(3986), - [anon_sym_TILDE] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_SEMI] = ACTIONS(3986), - [anon_sym___extension__] = ACTIONS(3984), - [anon_sym_typedef] = ACTIONS(3984), - [anon_sym_virtual] = ACTIONS(3984), - [anon_sym_extern] = ACTIONS(3984), - [anon_sym___attribute__] = ACTIONS(3984), - [anon_sym___attribute] = ACTIONS(3984), - [anon_sym_using] = ACTIONS(3984), - [anon_sym_COLON_COLON] = ACTIONS(3986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), - [anon_sym___declspec] = ACTIONS(3984), - [anon_sym___based] = ACTIONS(3984), - [anon_sym_RBRACE] = ACTIONS(3986), - [anon_sym_signed] = ACTIONS(3984), - [anon_sym_unsigned] = ACTIONS(3984), - [anon_sym_long] = ACTIONS(3984), - [anon_sym_short] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_register] = ACTIONS(3984), - [anon_sym_inline] = ACTIONS(3984), - [anon_sym___inline] = ACTIONS(3984), - [anon_sym___inline__] = ACTIONS(3984), - [anon_sym___forceinline] = ACTIONS(3984), - [anon_sym_thread_local] = ACTIONS(3984), - [anon_sym___thread] = ACTIONS(3984), - [anon_sym_const] = ACTIONS(3984), - [anon_sym_constexpr] = ACTIONS(3984), - [anon_sym_volatile] = ACTIONS(3984), - [anon_sym_restrict] = ACTIONS(3984), - [anon_sym___restrict__] = ACTIONS(3984), - [anon_sym__Atomic] = ACTIONS(3984), - [anon_sym__Noreturn] = ACTIONS(3984), - [anon_sym_noreturn] = ACTIONS(3984), - [anon_sym__Nonnull] = ACTIONS(3984), - [anon_sym_mutable] = ACTIONS(3984), - [anon_sym_constinit] = ACTIONS(3984), - [anon_sym_consteval] = ACTIONS(3984), - [anon_sym_alignas] = ACTIONS(3984), - [anon_sym__Alignas] = ACTIONS(3984), - [sym_primitive_type] = ACTIONS(3984), - [anon_sym_enum] = ACTIONS(3984), - [anon_sym_class] = ACTIONS(3984), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3984), - [anon_sym_typename] = ACTIONS(3984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3984), - [anon_sym_decltype] = ACTIONS(3984), - [anon_sym_explicit] = ACTIONS(3984), - [anon_sym_private] = ACTIONS(3984), - [anon_sym_template] = ACTIONS(3984), - [anon_sym_operator] = ACTIONS(3984), - [anon_sym_friend] = ACTIONS(3984), - [anon_sym_public] = ACTIONS(3984), - [anon_sym_protected] = ACTIONS(3984), - [anon_sym_static_assert] = ACTIONS(3984), - [anon_sym_LBRACK_COLON] = ACTIONS(3986), + [sym_identifier] = ACTIONS(8693), + [aux_sym_preproc_def_token1] = ACTIONS(8693), + [aux_sym_preproc_if_token1] = ACTIONS(8693), + [aux_sym_preproc_if_token2] = ACTIONS(8693), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8693), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8693), + [sym_preproc_directive] = ACTIONS(8693), + [anon_sym_LPAREN2] = ACTIONS(8695), + [anon_sym_TILDE] = ACTIONS(8695), + [anon_sym_STAR] = ACTIONS(8695), + [anon_sym_AMP_AMP] = ACTIONS(8695), + [anon_sym_AMP] = ACTIONS(8693), + [anon_sym_SEMI] = ACTIONS(8695), + [anon_sym___extension__] = ACTIONS(8693), + [anon_sym_typedef] = ACTIONS(8693), + [anon_sym_virtual] = ACTIONS(8693), + [anon_sym_extern] = ACTIONS(8693), + [anon_sym___attribute__] = ACTIONS(8693), + [anon_sym___attribute] = ACTIONS(8693), + [anon_sym_using] = ACTIONS(8693), + [anon_sym_COLON_COLON] = ACTIONS(8695), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8695), + [anon_sym___declspec] = ACTIONS(8693), + [anon_sym___based] = ACTIONS(8693), + [anon_sym_signed] = ACTIONS(8693), + [anon_sym_unsigned] = ACTIONS(8693), + [anon_sym_long] = ACTIONS(8693), + [anon_sym_short] = ACTIONS(8693), + [anon_sym_LBRACK] = ACTIONS(8693), + [anon_sym_static] = ACTIONS(8693), + [anon_sym_register] = ACTIONS(8693), + [anon_sym_inline] = ACTIONS(8693), + [anon_sym___inline] = ACTIONS(8693), + [anon_sym___inline__] = ACTIONS(8693), + [anon_sym___forceinline] = ACTIONS(8693), + [anon_sym_thread_local] = ACTIONS(8693), + [anon_sym___thread] = ACTIONS(8693), + [anon_sym_const] = ACTIONS(8693), + [anon_sym_constexpr] = ACTIONS(8693), + [anon_sym_volatile] = ACTIONS(8693), + [anon_sym_restrict] = ACTIONS(8693), + [anon_sym___restrict__] = ACTIONS(8693), + [anon_sym__Atomic] = ACTIONS(8693), + [anon_sym__Noreturn] = ACTIONS(8693), + [anon_sym_noreturn] = ACTIONS(8693), + [anon_sym__Nonnull] = ACTIONS(8693), + [anon_sym_mutable] = ACTIONS(8693), + [anon_sym_constinit] = ACTIONS(8693), + [anon_sym_consteval] = ACTIONS(8693), + [anon_sym_alignas] = ACTIONS(8693), + [anon_sym__Alignas] = ACTIONS(8693), + [sym_primitive_type] = ACTIONS(8693), + [anon_sym_enum] = ACTIONS(8693), + [anon_sym_class] = ACTIONS(8693), + [anon_sym_struct] = ACTIONS(8693), + [anon_sym_union] = ACTIONS(8693), + [anon_sym_typename] = ACTIONS(8693), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8693), + [anon_sym_decltype] = ACTIONS(8693), + [anon_sym_explicit] = ACTIONS(8693), + [anon_sym_private] = ACTIONS(8693), + [anon_sym_template] = ACTIONS(8693), + [anon_sym_operator] = ACTIONS(8693), + [anon_sym_friend] = ACTIONS(8693), + [anon_sym_public] = ACTIONS(8693), + [anon_sym_protected] = ACTIONS(8693), + [anon_sym_static_assert] = ACTIONS(8693), + [anon_sym_LBRACK_COLON] = ACTIONS(8695), }, [STATE(3413)] = { - [sym_identifier] = ACTIONS(8826), - [aux_sym_preproc_def_token1] = ACTIONS(8826), - [aux_sym_preproc_if_token1] = ACTIONS(8826), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8826), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8826), - [sym_preproc_directive] = ACTIONS(8826), - [anon_sym_LPAREN2] = ACTIONS(8828), - [anon_sym_TILDE] = ACTIONS(8828), - [anon_sym_STAR] = ACTIONS(8828), - [anon_sym_AMP_AMP] = ACTIONS(8828), - [anon_sym_AMP] = ACTIONS(8826), - [anon_sym_SEMI] = ACTIONS(8828), - [anon_sym___extension__] = ACTIONS(8826), - [anon_sym_typedef] = ACTIONS(8826), - [anon_sym_virtual] = ACTIONS(8826), - [anon_sym_extern] = ACTIONS(8826), - [anon_sym___attribute__] = ACTIONS(8826), - [anon_sym___attribute] = ACTIONS(8826), - [anon_sym_using] = ACTIONS(8826), - [anon_sym_COLON_COLON] = ACTIONS(8828), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8828), - [anon_sym___declspec] = ACTIONS(8826), - [anon_sym___based] = ACTIONS(8826), - [anon_sym_RBRACE] = ACTIONS(8828), - [anon_sym_signed] = ACTIONS(8826), - [anon_sym_unsigned] = ACTIONS(8826), - [anon_sym_long] = ACTIONS(8826), - [anon_sym_short] = ACTIONS(8826), - [anon_sym_LBRACK] = ACTIONS(8826), - [anon_sym_static] = ACTIONS(8826), - [anon_sym_register] = ACTIONS(8826), - [anon_sym_inline] = ACTIONS(8826), - [anon_sym___inline] = ACTIONS(8826), - [anon_sym___inline__] = ACTIONS(8826), - [anon_sym___forceinline] = ACTIONS(8826), - [anon_sym_thread_local] = ACTIONS(8826), - [anon_sym___thread] = ACTIONS(8826), - [anon_sym_const] = ACTIONS(8826), - [anon_sym_constexpr] = ACTIONS(8826), - [anon_sym_volatile] = ACTIONS(8826), - [anon_sym_restrict] = ACTIONS(8826), - [anon_sym___restrict__] = ACTIONS(8826), - [anon_sym__Atomic] = ACTIONS(8826), - [anon_sym__Noreturn] = ACTIONS(8826), - [anon_sym_noreturn] = ACTIONS(8826), - [anon_sym__Nonnull] = ACTIONS(8826), - [anon_sym_mutable] = ACTIONS(8826), - [anon_sym_constinit] = ACTIONS(8826), - [anon_sym_consteval] = ACTIONS(8826), - [anon_sym_alignas] = ACTIONS(8826), - [anon_sym__Alignas] = ACTIONS(8826), - [sym_primitive_type] = ACTIONS(8826), - [anon_sym_enum] = ACTIONS(8826), - [anon_sym_class] = ACTIONS(8826), - [anon_sym_struct] = ACTIONS(8826), - [anon_sym_union] = ACTIONS(8826), - [anon_sym_typename] = ACTIONS(8826), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8826), - [anon_sym_decltype] = ACTIONS(8826), - [anon_sym_explicit] = ACTIONS(8826), - [anon_sym_private] = ACTIONS(8826), - [anon_sym_template] = ACTIONS(8826), - [anon_sym_operator] = ACTIONS(8826), - [anon_sym_friend] = ACTIONS(8826), - [anon_sym_public] = ACTIONS(8826), - [anon_sym_protected] = ACTIONS(8826), - [anon_sym_static_assert] = ACTIONS(8826), - [anon_sym_LBRACK_COLON] = ACTIONS(8828), + [sym_identifier] = ACTIONS(8697), + [aux_sym_preproc_def_token1] = ACTIONS(8697), + [aux_sym_preproc_if_token1] = ACTIONS(8697), + [aux_sym_preproc_if_token2] = ACTIONS(8697), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8697), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8697), + [sym_preproc_directive] = ACTIONS(8697), + [anon_sym_LPAREN2] = ACTIONS(8699), + [anon_sym_TILDE] = ACTIONS(8699), + [anon_sym_STAR] = ACTIONS(8699), + [anon_sym_AMP_AMP] = ACTIONS(8699), + [anon_sym_AMP] = ACTIONS(8697), + [anon_sym_SEMI] = ACTIONS(8699), + [anon_sym___extension__] = ACTIONS(8697), + [anon_sym_typedef] = ACTIONS(8697), + [anon_sym_virtual] = ACTIONS(8697), + [anon_sym_extern] = ACTIONS(8697), + [anon_sym___attribute__] = ACTIONS(8697), + [anon_sym___attribute] = ACTIONS(8697), + [anon_sym_using] = ACTIONS(8697), + [anon_sym_COLON_COLON] = ACTIONS(8699), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8699), + [anon_sym___declspec] = ACTIONS(8697), + [anon_sym___based] = ACTIONS(8697), + [anon_sym_signed] = ACTIONS(8697), + [anon_sym_unsigned] = ACTIONS(8697), + [anon_sym_long] = ACTIONS(8697), + [anon_sym_short] = ACTIONS(8697), + [anon_sym_LBRACK] = ACTIONS(8697), + [anon_sym_static] = ACTIONS(8697), + [anon_sym_register] = ACTIONS(8697), + [anon_sym_inline] = ACTIONS(8697), + [anon_sym___inline] = ACTIONS(8697), + [anon_sym___inline__] = ACTIONS(8697), + [anon_sym___forceinline] = ACTIONS(8697), + [anon_sym_thread_local] = ACTIONS(8697), + [anon_sym___thread] = ACTIONS(8697), + [anon_sym_const] = ACTIONS(8697), + [anon_sym_constexpr] = ACTIONS(8697), + [anon_sym_volatile] = ACTIONS(8697), + [anon_sym_restrict] = ACTIONS(8697), + [anon_sym___restrict__] = ACTIONS(8697), + [anon_sym__Atomic] = ACTIONS(8697), + [anon_sym__Noreturn] = ACTIONS(8697), + [anon_sym_noreturn] = ACTIONS(8697), + [anon_sym__Nonnull] = ACTIONS(8697), + [anon_sym_mutable] = ACTIONS(8697), + [anon_sym_constinit] = ACTIONS(8697), + [anon_sym_consteval] = ACTIONS(8697), + [anon_sym_alignas] = ACTIONS(8697), + [anon_sym__Alignas] = ACTIONS(8697), + [sym_primitive_type] = ACTIONS(8697), + [anon_sym_enum] = ACTIONS(8697), + [anon_sym_class] = ACTIONS(8697), + [anon_sym_struct] = ACTIONS(8697), + [anon_sym_union] = ACTIONS(8697), + [anon_sym_typename] = ACTIONS(8697), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8697), + [anon_sym_decltype] = ACTIONS(8697), + [anon_sym_explicit] = ACTIONS(8697), + [anon_sym_private] = ACTIONS(8697), + [anon_sym_template] = ACTIONS(8697), + [anon_sym_operator] = ACTIONS(8697), + [anon_sym_friend] = ACTIONS(8697), + [anon_sym_public] = ACTIONS(8697), + [anon_sym_protected] = ACTIONS(8697), + [anon_sym_static_assert] = ACTIONS(8697), + [anon_sym_LBRACK_COLON] = ACTIONS(8699), }, [STATE(3414)] = { - [sym_identifier] = ACTIONS(8734), - [aux_sym_preproc_def_token1] = ACTIONS(8734), - [aux_sym_preproc_if_token1] = ACTIONS(8734), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8734), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8734), - [sym_preproc_directive] = ACTIONS(8734), - [anon_sym_LPAREN2] = ACTIONS(8736), - [anon_sym_TILDE] = ACTIONS(8736), - [anon_sym_STAR] = ACTIONS(8736), - [anon_sym_AMP_AMP] = ACTIONS(8736), - [anon_sym_AMP] = ACTIONS(8734), - [anon_sym_SEMI] = ACTIONS(8736), - [anon_sym___extension__] = ACTIONS(8734), - [anon_sym_typedef] = ACTIONS(8734), - [anon_sym_virtual] = ACTIONS(8734), - [anon_sym_extern] = ACTIONS(8734), - [anon_sym___attribute__] = ACTIONS(8734), - [anon_sym___attribute] = ACTIONS(8734), - [anon_sym_using] = ACTIONS(8734), - [anon_sym_COLON_COLON] = ACTIONS(8736), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8736), - [anon_sym___declspec] = ACTIONS(8734), - [anon_sym___based] = ACTIONS(8734), - [anon_sym_RBRACE] = ACTIONS(8736), - [anon_sym_signed] = ACTIONS(8734), - [anon_sym_unsigned] = ACTIONS(8734), - [anon_sym_long] = ACTIONS(8734), - [anon_sym_short] = ACTIONS(8734), - [anon_sym_LBRACK] = ACTIONS(8734), - [anon_sym_static] = ACTIONS(8734), - [anon_sym_register] = ACTIONS(8734), - [anon_sym_inline] = ACTIONS(8734), - [anon_sym___inline] = ACTIONS(8734), - [anon_sym___inline__] = ACTIONS(8734), - [anon_sym___forceinline] = ACTIONS(8734), - [anon_sym_thread_local] = ACTIONS(8734), - [anon_sym___thread] = ACTIONS(8734), - [anon_sym_const] = ACTIONS(8734), - [anon_sym_constexpr] = ACTIONS(8734), - [anon_sym_volatile] = ACTIONS(8734), - [anon_sym_restrict] = ACTIONS(8734), - [anon_sym___restrict__] = ACTIONS(8734), - [anon_sym__Atomic] = ACTIONS(8734), - [anon_sym__Noreturn] = ACTIONS(8734), - [anon_sym_noreturn] = ACTIONS(8734), - [anon_sym__Nonnull] = ACTIONS(8734), - [anon_sym_mutable] = ACTIONS(8734), - [anon_sym_constinit] = ACTIONS(8734), - [anon_sym_consteval] = ACTIONS(8734), - [anon_sym_alignas] = ACTIONS(8734), - [anon_sym__Alignas] = ACTIONS(8734), - [sym_primitive_type] = ACTIONS(8734), - [anon_sym_enum] = ACTIONS(8734), - [anon_sym_class] = ACTIONS(8734), - [anon_sym_struct] = ACTIONS(8734), - [anon_sym_union] = ACTIONS(8734), - [anon_sym_typename] = ACTIONS(8734), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8734), - [anon_sym_decltype] = ACTIONS(8734), - [anon_sym_explicit] = ACTIONS(8734), - [anon_sym_private] = ACTIONS(8734), - [anon_sym_template] = ACTIONS(8734), - [anon_sym_operator] = ACTIONS(8734), - [anon_sym_friend] = ACTIONS(8734), - [anon_sym_public] = ACTIONS(8734), - [anon_sym_protected] = ACTIONS(8734), - [anon_sym_static_assert] = ACTIONS(8734), - [anon_sym_LBRACK_COLON] = ACTIONS(8736), + [sym_template_argument_list] = STATE(3629), + [sym_identifier] = ACTIONS(7379), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_TILDE] = ACTIONS(5637), + [anon_sym_STAR] = ACTIONS(5637), + [anon_sym_PIPE_PIPE] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(9093), + [anon_sym___extension__] = ACTIONS(7379), + [anon_sym_virtual] = ACTIONS(7379), + [anon_sym_extern] = ACTIONS(7379), + [anon_sym___attribute__] = ACTIONS(7379), + [anon_sym___attribute] = ACTIONS(7379), + [anon_sym_using] = ACTIONS(7379), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5637), + [anon_sym___declspec] = ACTIONS(7379), + [anon_sym___based] = ACTIONS(7379), + [anon_sym___cdecl] = ACTIONS(7379), + [anon_sym___clrcall] = ACTIONS(7379), + [anon_sym___stdcall] = ACTIONS(7379), + [anon_sym___fastcall] = ACTIONS(7379), + [anon_sym___thiscall] = ACTIONS(7379), + [anon_sym___vectorcall] = ACTIONS(7379), + [anon_sym_signed] = ACTIONS(7379), + [anon_sym_unsigned] = ACTIONS(7379), + [anon_sym_long] = ACTIONS(7379), + [anon_sym_short] = ACTIONS(7379), + [anon_sym_LBRACK] = ACTIONS(7379), + [anon_sym_static] = ACTIONS(7379), + [anon_sym_register] = ACTIONS(7379), + [anon_sym_inline] = ACTIONS(7379), + [anon_sym___inline] = ACTIONS(7379), + [anon_sym___inline__] = ACTIONS(7379), + [anon_sym___forceinline] = ACTIONS(7379), + [anon_sym_thread_local] = ACTIONS(7379), + [anon_sym___thread] = ACTIONS(7379), + [anon_sym_const] = ACTIONS(7379), + [anon_sym_constexpr] = ACTIONS(7379), + [anon_sym_volatile] = ACTIONS(7379), + [anon_sym_restrict] = ACTIONS(7379), + [anon_sym___restrict__] = ACTIONS(7379), + [anon_sym__Atomic] = ACTIONS(7379), + [anon_sym__Noreturn] = ACTIONS(7379), + [anon_sym_noreturn] = ACTIONS(7379), + [anon_sym__Nonnull] = ACTIONS(7379), + [anon_sym_mutable] = ACTIONS(7379), + [anon_sym_constinit] = ACTIONS(7379), + [anon_sym_consteval] = ACTIONS(7379), + [anon_sym_alignas] = ACTIONS(7379), + [anon_sym__Alignas] = ACTIONS(7379), + [sym_primitive_type] = ACTIONS(7379), + [anon_sym_enum] = ACTIONS(7379), + [anon_sym_class] = ACTIONS(7379), + [anon_sym_struct] = ACTIONS(7379), + [anon_sym_union] = ACTIONS(7379), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_typename] = ACTIONS(7379), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7379), + [anon_sym_decltype] = ACTIONS(7379), + [anon_sym_explicit] = ACTIONS(7379), + [anon_sym_template] = ACTIONS(7379), + [anon_sym_operator] = ACTIONS(7379), + [anon_sym_friend] = ACTIONS(7379), + [anon_sym_concept] = ACTIONS(7379), + [anon_sym_LBRACK_COLON] = ACTIONS(5637), }, [STATE(3415)] = { - [sym_identifier] = ACTIONS(8790), - [aux_sym_preproc_def_token1] = ACTIONS(8790), - [aux_sym_preproc_if_token1] = ACTIONS(8790), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8790), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8790), - [sym_preproc_directive] = ACTIONS(8790), - [anon_sym_LPAREN2] = ACTIONS(8792), - [anon_sym_TILDE] = ACTIONS(8792), - [anon_sym_STAR] = ACTIONS(8792), - [anon_sym_AMP_AMP] = ACTIONS(8792), - [anon_sym_AMP] = ACTIONS(8790), - [anon_sym_SEMI] = ACTIONS(8792), - [anon_sym___extension__] = ACTIONS(8790), - [anon_sym_typedef] = ACTIONS(8790), - [anon_sym_virtual] = ACTIONS(8790), - [anon_sym_extern] = ACTIONS(8790), - [anon_sym___attribute__] = ACTIONS(8790), - [anon_sym___attribute] = ACTIONS(8790), - [anon_sym_using] = ACTIONS(8790), - [anon_sym_COLON_COLON] = ACTIONS(8792), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8792), - [anon_sym___declspec] = ACTIONS(8790), - [anon_sym___based] = ACTIONS(8790), - [anon_sym_RBRACE] = ACTIONS(8792), - [anon_sym_signed] = ACTIONS(8790), - [anon_sym_unsigned] = ACTIONS(8790), - [anon_sym_long] = ACTIONS(8790), - [anon_sym_short] = ACTIONS(8790), - [anon_sym_LBRACK] = ACTIONS(8790), - [anon_sym_static] = ACTIONS(8790), - [anon_sym_register] = ACTIONS(8790), - [anon_sym_inline] = ACTIONS(8790), - [anon_sym___inline] = ACTIONS(8790), - [anon_sym___inline__] = ACTIONS(8790), - [anon_sym___forceinline] = ACTIONS(8790), - [anon_sym_thread_local] = ACTIONS(8790), - [anon_sym___thread] = ACTIONS(8790), - [anon_sym_const] = ACTIONS(8790), - [anon_sym_constexpr] = ACTIONS(8790), - [anon_sym_volatile] = ACTIONS(8790), - [anon_sym_restrict] = ACTIONS(8790), - [anon_sym___restrict__] = ACTIONS(8790), - [anon_sym__Atomic] = ACTIONS(8790), - [anon_sym__Noreturn] = ACTIONS(8790), - [anon_sym_noreturn] = ACTIONS(8790), - [anon_sym__Nonnull] = ACTIONS(8790), - [anon_sym_mutable] = ACTIONS(8790), - [anon_sym_constinit] = ACTIONS(8790), - [anon_sym_consteval] = ACTIONS(8790), - [anon_sym_alignas] = ACTIONS(8790), - [anon_sym__Alignas] = ACTIONS(8790), - [sym_primitive_type] = ACTIONS(8790), - [anon_sym_enum] = ACTIONS(8790), - [anon_sym_class] = ACTIONS(8790), - [anon_sym_struct] = ACTIONS(8790), - [anon_sym_union] = ACTIONS(8790), - [anon_sym_typename] = ACTIONS(8790), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8790), - [anon_sym_decltype] = ACTIONS(8790), - [anon_sym_explicit] = ACTIONS(8790), - [anon_sym_private] = ACTIONS(8790), - [anon_sym_template] = ACTIONS(8790), - [anon_sym_operator] = ACTIONS(8790), - [anon_sym_friend] = ACTIONS(8790), - [anon_sym_public] = ACTIONS(8790), - [anon_sym_protected] = ACTIONS(8790), - [anon_sym_static_assert] = ACTIONS(8790), - [anon_sym_LBRACK_COLON] = ACTIONS(8792), + [sym_identifier] = ACTIONS(4126), + [aux_sym_preproc_def_token1] = ACTIONS(4126), + [aux_sym_preproc_if_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4126), + [sym_preproc_directive] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4128), + [anon_sym_TILDE] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_AMP_AMP] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(4128), + [anon_sym___extension__] = ACTIONS(4126), + [anon_sym_typedef] = ACTIONS(4126), + [anon_sym_virtual] = ACTIONS(4126), + [anon_sym_extern] = ACTIONS(4126), + [anon_sym___attribute__] = ACTIONS(4126), + [anon_sym___attribute] = ACTIONS(4126), + [anon_sym_using] = ACTIONS(4126), + [anon_sym_COLON_COLON] = ACTIONS(4128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4128), + [anon_sym___declspec] = ACTIONS(4126), + [anon_sym___based] = ACTIONS(4126), + [anon_sym_RBRACE] = ACTIONS(4128), + [anon_sym_signed] = ACTIONS(4126), + [anon_sym_unsigned] = ACTIONS(4126), + [anon_sym_long] = ACTIONS(4126), + [anon_sym_short] = ACTIONS(4126), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_static] = ACTIONS(4126), + [anon_sym_register] = ACTIONS(4126), + [anon_sym_inline] = ACTIONS(4126), + [anon_sym___inline] = ACTIONS(4126), + [anon_sym___inline__] = ACTIONS(4126), + [anon_sym___forceinline] = ACTIONS(4126), + [anon_sym_thread_local] = ACTIONS(4126), + [anon_sym___thread] = ACTIONS(4126), + [anon_sym_const] = ACTIONS(4126), + [anon_sym_constexpr] = ACTIONS(4126), + [anon_sym_volatile] = ACTIONS(4126), + [anon_sym_restrict] = ACTIONS(4126), + [anon_sym___restrict__] = ACTIONS(4126), + [anon_sym__Atomic] = ACTIONS(4126), + [anon_sym__Noreturn] = ACTIONS(4126), + [anon_sym_noreturn] = ACTIONS(4126), + [anon_sym__Nonnull] = ACTIONS(4126), + [anon_sym_mutable] = ACTIONS(4126), + [anon_sym_constinit] = ACTIONS(4126), + [anon_sym_consteval] = ACTIONS(4126), + [anon_sym_alignas] = ACTIONS(4126), + [anon_sym__Alignas] = ACTIONS(4126), + [sym_primitive_type] = ACTIONS(4126), + [anon_sym_enum] = ACTIONS(4126), + [anon_sym_class] = ACTIONS(4126), + [anon_sym_struct] = ACTIONS(4126), + [anon_sym_union] = ACTIONS(4126), + [anon_sym_typename] = ACTIONS(4126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4126), + [anon_sym_decltype] = ACTIONS(4126), + [anon_sym_explicit] = ACTIONS(4126), + [anon_sym_private] = ACTIONS(4126), + [anon_sym_template] = ACTIONS(4126), + [anon_sym_operator] = ACTIONS(4126), + [anon_sym_friend] = ACTIONS(4126), + [anon_sym_public] = ACTIONS(4126), + [anon_sym_protected] = ACTIONS(4126), + [anon_sym_static_assert] = ACTIONS(4126), + [anon_sym_LBRACK_COLON] = ACTIONS(4128), }, [STATE(3416)] = { - [sym_identifier] = ACTIONS(4048), - [aux_sym_preproc_def_token1] = ACTIONS(4048), - [aux_sym_preproc_if_token1] = ACTIONS(4048), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), - [sym_preproc_directive] = ACTIONS(4048), - [anon_sym_LPAREN2] = ACTIONS(4050), - [anon_sym_TILDE] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(4050), - [anon_sym_AMP_AMP] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4048), - [anon_sym_SEMI] = ACTIONS(4050), - [anon_sym___extension__] = ACTIONS(4048), - [anon_sym_typedef] = ACTIONS(4048), - [anon_sym_virtual] = ACTIONS(4048), - [anon_sym_extern] = ACTIONS(4048), - [anon_sym___attribute__] = ACTIONS(4048), - [anon_sym___attribute] = ACTIONS(4048), - [anon_sym_using] = ACTIONS(4048), - [anon_sym_COLON_COLON] = ACTIONS(4050), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), - [anon_sym___declspec] = ACTIONS(4048), - [anon_sym___based] = ACTIONS(4048), - [anon_sym_RBRACE] = ACTIONS(4050), - [anon_sym_signed] = ACTIONS(4048), - [anon_sym_unsigned] = ACTIONS(4048), - [anon_sym_long] = ACTIONS(4048), - [anon_sym_short] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(4048), - [anon_sym_static] = ACTIONS(4048), - [anon_sym_register] = ACTIONS(4048), - [anon_sym_inline] = ACTIONS(4048), - [anon_sym___inline] = ACTIONS(4048), - [anon_sym___inline__] = ACTIONS(4048), - [anon_sym___forceinline] = ACTIONS(4048), - [anon_sym_thread_local] = ACTIONS(4048), - [anon_sym___thread] = ACTIONS(4048), - [anon_sym_const] = ACTIONS(4048), - [anon_sym_constexpr] = ACTIONS(4048), - [anon_sym_volatile] = ACTIONS(4048), - [anon_sym_restrict] = ACTIONS(4048), - [anon_sym___restrict__] = ACTIONS(4048), - [anon_sym__Atomic] = ACTIONS(4048), - [anon_sym__Noreturn] = ACTIONS(4048), - [anon_sym_noreturn] = ACTIONS(4048), - [anon_sym__Nonnull] = ACTIONS(4048), - [anon_sym_mutable] = ACTIONS(4048), - [anon_sym_constinit] = ACTIONS(4048), - [anon_sym_consteval] = ACTIONS(4048), - [anon_sym_alignas] = ACTIONS(4048), - [anon_sym__Alignas] = ACTIONS(4048), - [sym_primitive_type] = ACTIONS(4048), - [anon_sym_enum] = ACTIONS(4048), - [anon_sym_class] = ACTIONS(4048), - [anon_sym_struct] = ACTIONS(4048), - [anon_sym_union] = ACTIONS(4048), - [anon_sym_typename] = ACTIONS(4048), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4048), - [anon_sym_decltype] = ACTIONS(4048), - [anon_sym_explicit] = ACTIONS(4048), - [anon_sym_private] = ACTIONS(4048), - [anon_sym_template] = ACTIONS(4048), - [anon_sym_operator] = ACTIONS(4048), - [anon_sym_friend] = ACTIONS(4048), - [anon_sym_public] = ACTIONS(4048), - [anon_sym_protected] = ACTIONS(4048), - [anon_sym_static_assert] = ACTIONS(4048), - [anon_sym_LBRACK_COLON] = ACTIONS(4050), + [sym_identifier] = ACTIONS(8701), + [aux_sym_preproc_def_token1] = ACTIONS(8701), + [aux_sym_preproc_if_token1] = ACTIONS(8701), + [aux_sym_preproc_if_token2] = ACTIONS(8701), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8701), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8701), + [sym_preproc_directive] = ACTIONS(8701), + [anon_sym_LPAREN2] = ACTIONS(8703), + [anon_sym_TILDE] = ACTIONS(8703), + [anon_sym_STAR] = ACTIONS(8703), + [anon_sym_AMP_AMP] = ACTIONS(8703), + [anon_sym_AMP] = ACTIONS(8701), + [anon_sym_SEMI] = ACTIONS(8703), + [anon_sym___extension__] = ACTIONS(8701), + [anon_sym_typedef] = ACTIONS(8701), + [anon_sym_virtual] = ACTIONS(8701), + [anon_sym_extern] = ACTIONS(8701), + [anon_sym___attribute__] = ACTIONS(8701), + [anon_sym___attribute] = ACTIONS(8701), + [anon_sym_using] = ACTIONS(8701), + [anon_sym_COLON_COLON] = ACTIONS(8703), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8703), + [anon_sym___declspec] = ACTIONS(8701), + [anon_sym___based] = ACTIONS(8701), + [anon_sym_signed] = ACTIONS(8701), + [anon_sym_unsigned] = ACTIONS(8701), + [anon_sym_long] = ACTIONS(8701), + [anon_sym_short] = ACTIONS(8701), + [anon_sym_LBRACK] = ACTIONS(8701), + [anon_sym_static] = ACTIONS(8701), + [anon_sym_register] = ACTIONS(8701), + [anon_sym_inline] = ACTIONS(8701), + [anon_sym___inline] = ACTIONS(8701), + [anon_sym___inline__] = ACTIONS(8701), + [anon_sym___forceinline] = ACTIONS(8701), + [anon_sym_thread_local] = ACTIONS(8701), + [anon_sym___thread] = ACTIONS(8701), + [anon_sym_const] = ACTIONS(8701), + [anon_sym_constexpr] = ACTIONS(8701), + [anon_sym_volatile] = ACTIONS(8701), + [anon_sym_restrict] = ACTIONS(8701), + [anon_sym___restrict__] = ACTIONS(8701), + [anon_sym__Atomic] = ACTIONS(8701), + [anon_sym__Noreturn] = ACTIONS(8701), + [anon_sym_noreturn] = ACTIONS(8701), + [anon_sym__Nonnull] = ACTIONS(8701), + [anon_sym_mutable] = ACTIONS(8701), + [anon_sym_constinit] = ACTIONS(8701), + [anon_sym_consteval] = ACTIONS(8701), + [anon_sym_alignas] = ACTIONS(8701), + [anon_sym__Alignas] = ACTIONS(8701), + [sym_primitive_type] = ACTIONS(8701), + [anon_sym_enum] = ACTIONS(8701), + [anon_sym_class] = ACTIONS(8701), + [anon_sym_struct] = ACTIONS(8701), + [anon_sym_union] = ACTIONS(8701), + [anon_sym_typename] = ACTIONS(8701), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8701), + [anon_sym_decltype] = ACTIONS(8701), + [anon_sym_explicit] = ACTIONS(8701), + [anon_sym_private] = ACTIONS(8701), + [anon_sym_template] = ACTIONS(8701), + [anon_sym_operator] = ACTIONS(8701), + [anon_sym_friend] = ACTIONS(8701), + [anon_sym_public] = ACTIONS(8701), + [anon_sym_protected] = ACTIONS(8701), + [anon_sym_static_assert] = ACTIONS(8701), + [anon_sym_LBRACK_COLON] = ACTIONS(8703), }, [STATE(3417)] = { - [sym_identifier] = ACTIONS(8643), - [aux_sym_preproc_def_token1] = ACTIONS(8643), - [aux_sym_preproc_if_token1] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), - [sym_preproc_directive] = ACTIONS(8643), - [anon_sym_LPAREN2] = ACTIONS(8645), - [anon_sym_TILDE] = ACTIONS(8645), - [anon_sym_STAR] = ACTIONS(8645), - [anon_sym_AMP_AMP] = ACTIONS(8645), - [anon_sym_AMP] = ACTIONS(8643), - [anon_sym_SEMI] = ACTIONS(8645), - [anon_sym___extension__] = ACTIONS(8643), - [anon_sym_typedef] = ACTIONS(8643), - [anon_sym_virtual] = ACTIONS(8643), - [anon_sym_extern] = ACTIONS(8643), - [anon_sym___attribute__] = ACTIONS(8643), - [anon_sym___attribute] = ACTIONS(8643), - [anon_sym_using] = ACTIONS(8643), - [anon_sym_COLON_COLON] = ACTIONS(8645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), - [anon_sym___declspec] = ACTIONS(8643), - [anon_sym___based] = ACTIONS(8643), - [anon_sym_RBRACE] = ACTIONS(8645), - [anon_sym_signed] = ACTIONS(8643), - [anon_sym_unsigned] = ACTIONS(8643), - [anon_sym_long] = ACTIONS(8643), - [anon_sym_short] = ACTIONS(8643), - [anon_sym_LBRACK] = ACTIONS(8643), - [anon_sym_static] = ACTIONS(8643), - [anon_sym_register] = ACTIONS(8643), - [anon_sym_inline] = ACTIONS(8643), - [anon_sym___inline] = ACTIONS(8643), - [anon_sym___inline__] = ACTIONS(8643), - [anon_sym___forceinline] = ACTIONS(8643), - [anon_sym_thread_local] = ACTIONS(8643), - [anon_sym___thread] = ACTIONS(8643), - [anon_sym_const] = ACTIONS(8643), - [anon_sym_constexpr] = ACTIONS(8643), - [anon_sym_volatile] = ACTIONS(8643), - [anon_sym_restrict] = ACTIONS(8643), - [anon_sym___restrict__] = ACTIONS(8643), - [anon_sym__Atomic] = ACTIONS(8643), - [anon_sym__Noreturn] = ACTIONS(8643), - [anon_sym_noreturn] = ACTIONS(8643), - [anon_sym__Nonnull] = ACTIONS(8643), - [anon_sym_mutable] = ACTIONS(8643), - [anon_sym_constinit] = ACTIONS(8643), - [anon_sym_consteval] = ACTIONS(8643), - [anon_sym_alignas] = ACTIONS(8643), - [anon_sym__Alignas] = ACTIONS(8643), - [sym_primitive_type] = ACTIONS(8643), - [anon_sym_enum] = ACTIONS(8643), - [anon_sym_class] = ACTIONS(8643), - [anon_sym_struct] = ACTIONS(8643), - [anon_sym_union] = ACTIONS(8643), - [anon_sym_typename] = ACTIONS(8643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8643), - [anon_sym_decltype] = ACTIONS(8643), - [anon_sym_explicit] = ACTIONS(8643), - [anon_sym_private] = ACTIONS(8643), - [anon_sym_template] = ACTIONS(8643), - [anon_sym_operator] = ACTIONS(8643), - [anon_sym_friend] = ACTIONS(8643), - [anon_sym_public] = ACTIONS(8643), - [anon_sym_protected] = ACTIONS(8643), - [anon_sym_static_assert] = ACTIONS(8643), - [anon_sym_LBRACK_COLON] = ACTIONS(8645), + [sym_identifier] = ACTIONS(8705), + [aux_sym_preproc_def_token1] = ACTIONS(8705), + [aux_sym_preproc_if_token1] = ACTIONS(8705), + [aux_sym_preproc_if_token2] = ACTIONS(8705), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8705), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8705), + [sym_preproc_directive] = ACTIONS(8705), + [anon_sym_LPAREN2] = ACTIONS(8707), + [anon_sym_TILDE] = ACTIONS(8707), + [anon_sym_STAR] = ACTIONS(8707), + [anon_sym_AMP_AMP] = ACTIONS(8707), + [anon_sym_AMP] = ACTIONS(8705), + [anon_sym_SEMI] = ACTIONS(8707), + [anon_sym___extension__] = ACTIONS(8705), + [anon_sym_typedef] = ACTIONS(8705), + [anon_sym_virtual] = ACTIONS(8705), + [anon_sym_extern] = ACTIONS(8705), + [anon_sym___attribute__] = ACTIONS(8705), + [anon_sym___attribute] = ACTIONS(8705), + [anon_sym_using] = ACTIONS(8705), + [anon_sym_COLON_COLON] = ACTIONS(8707), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8707), + [anon_sym___declspec] = ACTIONS(8705), + [anon_sym___based] = ACTIONS(8705), + [anon_sym_signed] = ACTIONS(8705), + [anon_sym_unsigned] = ACTIONS(8705), + [anon_sym_long] = ACTIONS(8705), + [anon_sym_short] = ACTIONS(8705), + [anon_sym_LBRACK] = ACTIONS(8705), + [anon_sym_static] = ACTIONS(8705), + [anon_sym_register] = ACTIONS(8705), + [anon_sym_inline] = ACTIONS(8705), + [anon_sym___inline] = ACTIONS(8705), + [anon_sym___inline__] = ACTIONS(8705), + [anon_sym___forceinline] = ACTIONS(8705), + [anon_sym_thread_local] = ACTIONS(8705), + [anon_sym___thread] = ACTIONS(8705), + [anon_sym_const] = ACTIONS(8705), + [anon_sym_constexpr] = ACTIONS(8705), + [anon_sym_volatile] = ACTIONS(8705), + [anon_sym_restrict] = ACTIONS(8705), + [anon_sym___restrict__] = ACTIONS(8705), + [anon_sym__Atomic] = ACTIONS(8705), + [anon_sym__Noreturn] = ACTIONS(8705), + [anon_sym_noreturn] = ACTIONS(8705), + [anon_sym__Nonnull] = ACTIONS(8705), + [anon_sym_mutable] = ACTIONS(8705), + [anon_sym_constinit] = ACTIONS(8705), + [anon_sym_consteval] = ACTIONS(8705), + [anon_sym_alignas] = ACTIONS(8705), + [anon_sym__Alignas] = ACTIONS(8705), + [sym_primitive_type] = ACTIONS(8705), + [anon_sym_enum] = ACTIONS(8705), + [anon_sym_class] = ACTIONS(8705), + [anon_sym_struct] = ACTIONS(8705), + [anon_sym_union] = ACTIONS(8705), + [anon_sym_typename] = ACTIONS(8705), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8705), + [anon_sym_decltype] = ACTIONS(8705), + [anon_sym_explicit] = ACTIONS(8705), + [anon_sym_private] = ACTIONS(8705), + [anon_sym_template] = ACTIONS(8705), + [anon_sym_operator] = ACTIONS(8705), + [anon_sym_friend] = ACTIONS(8705), + [anon_sym_public] = ACTIONS(8705), + [anon_sym_protected] = ACTIONS(8705), + [anon_sym_static_assert] = ACTIONS(8705), + [anon_sym_LBRACK_COLON] = ACTIONS(8707), }, [STATE(3418)] = { - [sym_identifier] = ACTIONS(8643), - [aux_sym_preproc_def_token1] = ACTIONS(8643), - [aux_sym_preproc_if_token1] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8643), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8643), - [sym_preproc_directive] = ACTIONS(8643), - [anon_sym_LPAREN2] = ACTIONS(8645), - [anon_sym_TILDE] = ACTIONS(8645), - [anon_sym_STAR] = ACTIONS(8645), - [anon_sym_AMP_AMP] = ACTIONS(8645), - [anon_sym_AMP] = ACTIONS(8643), - [anon_sym_SEMI] = ACTIONS(8645), - [anon_sym___extension__] = ACTIONS(8643), - [anon_sym_typedef] = ACTIONS(8643), - [anon_sym_virtual] = ACTIONS(8643), - [anon_sym_extern] = ACTIONS(8643), - [anon_sym___attribute__] = ACTIONS(8643), - [anon_sym___attribute] = ACTIONS(8643), - [anon_sym_using] = ACTIONS(8643), - [anon_sym_COLON_COLON] = ACTIONS(8645), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8645), - [anon_sym___declspec] = ACTIONS(8643), - [anon_sym___based] = ACTIONS(8643), - [anon_sym_RBRACE] = ACTIONS(8645), - [anon_sym_signed] = ACTIONS(8643), - [anon_sym_unsigned] = ACTIONS(8643), - [anon_sym_long] = ACTIONS(8643), - [anon_sym_short] = ACTIONS(8643), - [anon_sym_LBRACK] = ACTIONS(8643), - [anon_sym_static] = ACTIONS(8643), - [anon_sym_register] = ACTIONS(8643), - [anon_sym_inline] = ACTIONS(8643), - [anon_sym___inline] = ACTIONS(8643), - [anon_sym___inline__] = ACTIONS(8643), - [anon_sym___forceinline] = ACTIONS(8643), - [anon_sym_thread_local] = ACTIONS(8643), - [anon_sym___thread] = ACTIONS(8643), - [anon_sym_const] = ACTIONS(8643), - [anon_sym_constexpr] = ACTIONS(8643), - [anon_sym_volatile] = ACTIONS(8643), - [anon_sym_restrict] = ACTIONS(8643), - [anon_sym___restrict__] = ACTIONS(8643), - [anon_sym__Atomic] = ACTIONS(8643), - [anon_sym__Noreturn] = ACTIONS(8643), - [anon_sym_noreturn] = ACTIONS(8643), - [anon_sym__Nonnull] = ACTIONS(8643), - [anon_sym_mutable] = ACTIONS(8643), - [anon_sym_constinit] = ACTIONS(8643), - [anon_sym_consteval] = ACTIONS(8643), - [anon_sym_alignas] = ACTIONS(8643), - [anon_sym__Alignas] = ACTIONS(8643), - [sym_primitive_type] = ACTIONS(8643), - [anon_sym_enum] = ACTIONS(8643), - [anon_sym_class] = ACTIONS(8643), - [anon_sym_struct] = ACTIONS(8643), - [anon_sym_union] = ACTIONS(8643), - [anon_sym_typename] = ACTIONS(8643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8643), - [anon_sym_decltype] = ACTIONS(8643), - [anon_sym_explicit] = ACTIONS(8643), - [anon_sym_private] = ACTIONS(8643), - [anon_sym_template] = ACTIONS(8643), - [anon_sym_operator] = ACTIONS(8643), - [anon_sym_friend] = ACTIONS(8643), - [anon_sym_public] = ACTIONS(8643), - [anon_sym_protected] = ACTIONS(8643), - [anon_sym_static_assert] = ACTIONS(8643), - [anon_sym_LBRACK_COLON] = ACTIONS(8645), + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym_RBRACE] = ACTIONS(3642), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_friend] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), }, [STATE(3419)] = { - [sym_identifier] = ACTIONS(8647), - [aux_sym_preproc_def_token1] = ACTIONS(8647), - [aux_sym_preproc_if_token1] = ACTIONS(8647), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8647), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8647), - [sym_preproc_directive] = ACTIONS(8647), - [anon_sym_LPAREN2] = ACTIONS(8649), - [anon_sym_TILDE] = ACTIONS(8649), - [anon_sym_STAR] = ACTIONS(8649), - [anon_sym_AMP_AMP] = ACTIONS(8649), - [anon_sym_AMP] = ACTIONS(8647), - [anon_sym_SEMI] = ACTIONS(8649), - [anon_sym___extension__] = ACTIONS(8647), - [anon_sym_typedef] = ACTIONS(8647), - [anon_sym_virtual] = ACTIONS(8647), - [anon_sym_extern] = ACTIONS(8647), - [anon_sym___attribute__] = ACTIONS(8647), - [anon_sym___attribute] = ACTIONS(8647), - [anon_sym_using] = ACTIONS(8647), - [anon_sym_COLON_COLON] = ACTIONS(8649), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8649), - [anon_sym___declspec] = ACTIONS(8647), - [anon_sym___based] = ACTIONS(8647), - [anon_sym_RBRACE] = ACTIONS(8649), - [anon_sym_signed] = ACTIONS(8647), - [anon_sym_unsigned] = ACTIONS(8647), - [anon_sym_long] = ACTIONS(8647), - [anon_sym_short] = ACTIONS(8647), - [anon_sym_LBRACK] = ACTIONS(8647), - [anon_sym_static] = ACTIONS(8647), - [anon_sym_register] = ACTIONS(8647), - [anon_sym_inline] = ACTIONS(8647), - [anon_sym___inline] = ACTIONS(8647), - [anon_sym___inline__] = ACTIONS(8647), - [anon_sym___forceinline] = ACTIONS(8647), - [anon_sym_thread_local] = ACTIONS(8647), - [anon_sym___thread] = ACTIONS(8647), - [anon_sym_const] = ACTIONS(8647), - [anon_sym_constexpr] = ACTIONS(8647), - [anon_sym_volatile] = ACTIONS(8647), - [anon_sym_restrict] = ACTIONS(8647), - [anon_sym___restrict__] = ACTIONS(8647), - [anon_sym__Atomic] = ACTIONS(8647), - [anon_sym__Noreturn] = ACTIONS(8647), - [anon_sym_noreturn] = ACTIONS(8647), - [anon_sym__Nonnull] = ACTIONS(8647), - [anon_sym_mutable] = ACTIONS(8647), - [anon_sym_constinit] = ACTIONS(8647), - [anon_sym_consteval] = ACTIONS(8647), - [anon_sym_alignas] = ACTIONS(8647), - [anon_sym__Alignas] = ACTIONS(8647), - [sym_primitive_type] = ACTIONS(8647), - [anon_sym_enum] = ACTIONS(8647), - [anon_sym_class] = ACTIONS(8647), - [anon_sym_struct] = ACTIONS(8647), - [anon_sym_union] = ACTIONS(8647), - [anon_sym_typename] = ACTIONS(8647), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8647), - [anon_sym_decltype] = ACTIONS(8647), - [anon_sym_explicit] = ACTIONS(8647), - [anon_sym_private] = ACTIONS(8647), - [anon_sym_template] = ACTIONS(8647), - [anon_sym_operator] = ACTIONS(8647), - [anon_sym_friend] = ACTIONS(8647), - [anon_sym_public] = ACTIONS(8647), - [anon_sym_protected] = ACTIONS(8647), - [anon_sym_static_assert] = ACTIONS(8647), - [anon_sym_LBRACK_COLON] = ACTIONS(8649), + [sym_identifier] = ACTIONS(3514), + [aux_sym_preproc_def_token1] = ACTIONS(3514), + [aux_sym_preproc_if_token1] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3514), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3514), + [sym_preproc_directive] = ACTIONS(3514), + [anon_sym_LPAREN2] = ACTIONS(3516), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_STAR] = ACTIONS(3516), + [anon_sym_AMP_AMP] = ACTIONS(3516), + [anon_sym_AMP] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym___extension__] = ACTIONS(3514), + [anon_sym_typedef] = ACTIONS(3514), + [anon_sym_virtual] = ACTIONS(3514), + [anon_sym_extern] = ACTIONS(3514), + [anon_sym___attribute__] = ACTIONS(3514), + [anon_sym___attribute] = ACTIONS(3514), + [anon_sym_using] = ACTIONS(3514), + [anon_sym_COLON_COLON] = ACTIONS(3516), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3516), + [anon_sym___declspec] = ACTIONS(3514), + [anon_sym___based] = ACTIONS(3514), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_signed] = ACTIONS(3514), + [anon_sym_unsigned] = ACTIONS(3514), + [anon_sym_long] = ACTIONS(3514), + [anon_sym_short] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_register] = ACTIONS(3514), + [anon_sym_inline] = ACTIONS(3514), + [anon_sym___inline] = ACTIONS(3514), + [anon_sym___inline__] = ACTIONS(3514), + [anon_sym___forceinline] = ACTIONS(3514), + [anon_sym_thread_local] = ACTIONS(3514), + [anon_sym___thread] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_constexpr] = ACTIONS(3514), + [anon_sym_volatile] = ACTIONS(3514), + [anon_sym_restrict] = ACTIONS(3514), + [anon_sym___restrict__] = ACTIONS(3514), + [anon_sym__Atomic] = ACTIONS(3514), + [anon_sym__Noreturn] = ACTIONS(3514), + [anon_sym_noreturn] = ACTIONS(3514), + [anon_sym__Nonnull] = ACTIONS(3514), + [anon_sym_mutable] = ACTIONS(3514), + [anon_sym_constinit] = ACTIONS(3514), + [anon_sym_consteval] = ACTIONS(3514), + [anon_sym_alignas] = ACTIONS(3514), + [anon_sym__Alignas] = ACTIONS(3514), + [sym_primitive_type] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_struct] = ACTIONS(3514), + [anon_sym_union] = ACTIONS(3514), + [anon_sym_typename] = ACTIONS(3514), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3514), + [anon_sym_decltype] = ACTIONS(3514), + [anon_sym_explicit] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_template] = ACTIONS(3514), + [anon_sym_operator] = ACTIONS(3514), + [anon_sym_friend] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_static_assert] = ACTIONS(3514), + [anon_sym_LBRACK_COLON] = ACTIONS(3516), }, [STATE(3420)] = { - [sym_identifier] = ACTIONS(8661), - [aux_sym_preproc_def_token1] = ACTIONS(8661), - [aux_sym_preproc_if_token1] = ACTIONS(8661), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8661), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8661), - [sym_preproc_directive] = ACTIONS(8661), - [anon_sym_LPAREN2] = ACTIONS(8663), - [anon_sym_TILDE] = ACTIONS(8663), - [anon_sym_STAR] = ACTIONS(8663), - [anon_sym_AMP_AMP] = ACTIONS(8663), - [anon_sym_AMP] = ACTIONS(8661), - [anon_sym_SEMI] = ACTIONS(8663), - [anon_sym___extension__] = ACTIONS(8661), - [anon_sym_typedef] = ACTIONS(8661), - [anon_sym_virtual] = ACTIONS(8661), - [anon_sym_extern] = ACTIONS(8661), - [anon_sym___attribute__] = ACTIONS(8661), - [anon_sym___attribute] = ACTIONS(8661), - [anon_sym_using] = ACTIONS(8661), - [anon_sym_COLON_COLON] = ACTIONS(8663), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8663), - [anon_sym___declspec] = ACTIONS(8661), - [anon_sym___based] = ACTIONS(8661), - [anon_sym_RBRACE] = ACTIONS(8663), - [anon_sym_signed] = ACTIONS(8661), - [anon_sym_unsigned] = ACTIONS(8661), - [anon_sym_long] = ACTIONS(8661), - [anon_sym_short] = ACTIONS(8661), - [anon_sym_LBRACK] = ACTIONS(8661), - [anon_sym_static] = ACTIONS(8661), - [anon_sym_register] = ACTIONS(8661), - [anon_sym_inline] = ACTIONS(8661), - [anon_sym___inline] = ACTIONS(8661), - [anon_sym___inline__] = ACTIONS(8661), - [anon_sym___forceinline] = ACTIONS(8661), - [anon_sym_thread_local] = ACTIONS(8661), - [anon_sym___thread] = ACTIONS(8661), - [anon_sym_const] = ACTIONS(8661), - [anon_sym_constexpr] = ACTIONS(8661), - [anon_sym_volatile] = ACTIONS(8661), - [anon_sym_restrict] = ACTIONS(8661), - [anon_sym___restrict__] = ACTIONS(8661), - [anon_sym__Atomic] = ACTIONS(8661), - [anon_sym__Noreturn] = ACTIONS(8661), - [anon_sym_noreturn] = ACTIONS(8661), - [anon_sym__Nonnull] = ACTIONS(8661), - [anon_sym_mutable] = ACTIONS(8661), - [anon_sym_constinit] = ACTIONS(8661), - [anon_sym_consteval] = ACTIONS(8661), - [anon_sym_alignas] = ACTIONS(8661), - [anon_sym__Alignas] = ACTIONS(8661), - [sym_primitive_type] = ACTIONS(8661), - [anon_sym_enum] = ACTIONS(8661), - [anon_sym_class] = ACTIONS(8661), - [anon_sym_struct] = ACTIONS(8661), - [anon_sym_union] = ACTIONS(8661), - [anon_sym_typename] = ACTIONS(8661), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8661), - [anon_sym_decltype] = ACTIONS(8661), - [anon_sym_explicit] = ACTIONS(8661), - [anon_sym_private] = ACTIONS(8661), - [anon_sym_template] = ACTIONS(8661), - [anon_sym_operator] = ACTIONS(8661), - [anon_sym_friend] = ACTIONS(8661), - [anon_sym_public] = ACTIONS(8661), - [anon_sym_protected] = ACTIONS(8661), - [anon_sym_static_assert] = ACTIONS(8661), - [anon_sym_LBRACK_COLON] = ACTIONS(8663), + [sym_identifier] = ACTIONS(8709), + [aux_sym_preproc_def_token1] = ACTIONS(8709), + [aux_sym_preproc_if_token1] = ACTIONS(8709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8709), + [sym_preproc_directive] = ACTIONS(8709), + [anon_sym_LPAREN2] = ACTIONS(8711), + [anon_sym_TILDE] = ACTIONS(8711), + [anon_sym_STAR] = ACTIONS(8711), + [anon_sym_AMP_AMP] = ACTIONS(8711), + [anon_sym_AMP] = ACTIONS(8709), + [anon_sym_SEMI] = ACTIONS(8711), + [anon_sym___extension__] = ACTIONS(8709), + [anon_sym_typedef] = ACTIONS(8709), + [anon_sym_virtual] = ACTIONS(8709), + [anon_sym_extern] = ACTIONS(8709), + [anon_sym___attribute__] = ACTIONS(8709), + [anon_sym___attribute] = ACTIONS(8709), + [anon_sym_using] = ACTIONS(8709), + [anon_sym_COLON_COLON] = ACTIONS(8711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8711), + [anon_sym___declspec] = ACTIONS(8709), + [anon_sym___based] = ACTIONS(8709), + [anon_sym_RBRACE] = ACTIONS(8711), + [anon_sym_signed] = ACTIONS(8709), + [anon_sym_unsigned] = ACTIONS(8709), + [anon_sym_long] = ACTIONS(8709), + [anon_sym_short] = ACTIONS(8709), + [anon_sym_LBRACK] = ACTIONS(8709), + [anon_sym_static] = ACTIONS(8709), + [anon_sym_register] = ACTIONS(8709), + [anon_sym_inline] = ACTIONS(8709), + [anon_sym___inline] = ACTIONS(8709), + [anon_sym___inline__] = ACTIONS(8709), + [anon_sym___forceinline] = ACTIONS(8709), + [anon_sym_thread_local] = ACTIONS(8709), + [anon_sym___thread] = ACTIONS(8709), + [anon_sym_const] = ACTIONS(8709), + [anon_sym_constexpr] = ACTIONS(8709), + [anon_sym_volatile] = ACTIONS(8709), + [anon_sym_restrict] = ACTIONS(8709), + [anon_sym___restrict__] = ACTIONS(8709), + [anon_sym__Atomic] = ACTIONS(8709), + [anon_sym__Noreturn] = ACTIONS(8709), + [anon_sym_noreturn] = ACTIONS(8709), + [anon_sym__Nonnull] = ACTIONS(8709), + [anon_sym_mutable] = ACTIONS(8709), + [anon_sym_constinit] = ACTIONS(8709), + [anon_sym_consteval] = ACTIONS(8709), + [anon_sym_alignas] = ACTIONS(8709), + [anon_sym__Alignas] = ACTIONS(8709), + [sym_primitive_type] = ACTIONS(8709), + [anon_sym_enum] = ACTIONS(8709), + [anon_sym_class] = ACTIONS(8709), + [anon_sym_struct] = ACTIONS(8709), + [anon_sym_union] = ACTIONS(8709), + [anon_sym_typename] = ACTIONS(8709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8709), + [anon_sym_decltype] = ACTIONS(8709), + [anon_sym_explicit] = ACTIONS(8709), + [anon_sym_private] = ACTIONS(8709), + [anon_sym_template] = ACTIONS(8709), + [anon_sym_operator] = ACTIONS(8709), + [anon_sym_friend] = ACTIONS(8709), + [anon_sym_public] = ACTIONS(8709), + [anon_sym_protected] = ACTIONS(8709), + [anon_sym_static_assert] = ACTIONS(8709), + [anon_sym_LBRACK_COLON] = ACTIONS(8711), }, [STATE(3421)] = { - [sym_identifier] = ACTIONS(8683), - [aux_sym_preproc_def_token1] = ACTIONS(8683), - [aux_sym_preproc_if_token1] = ACTIONS(8683), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8683), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8683), - [sym_preproc_directive] = ACTIONS(8683), - [anon_sym_LPAREN2] = ACTIONS(8685), - [anon_sym_TILDE] = ACTIONS(8685), - [anon_sym_STAR] = ACTIONS(8685), - [anon_sym_AMP_AMP] = ACTIONS(8685), - [anon_sym_AMP] = ACTIONS(8683), - [anon_sym_SEMI] = ACTIONS(8685), - [anon_sym___extension__] = ACTIONS(8683), - [anon_sym_typedef] = ACTIONS(8683), - [anon_sym_virtual] = ACTIONS(8683), - [anon_sym_extern] = ACTIONS(8683), - [anon_sym___attribute__] = ACTIONS(8683), - [anon_sym___attribute] = ACTIONS(8683), - [anon_sym_using] = ACTIONS(8683), - [anon_sym_COLON_COLON] = ACTIONS(8685), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8685), - [anon_sym___declspec] = ACTIONS(8683), - [anon_sym___based] = ACTIONS(8683), - [anon_sym_RBRACE] = ACTIONS(8685), - [anon_sym_signed] = ACTIONS(8683), - [anon_sym_unsigned] = ACTIONS(8683), - [anon_sym_long] = ACTIONS(8683), - [anon_sym_short] = ACTIONS(8683), - [anon_sym_LBRACK] = ACTIONS(8683), - [anon_sym_static] = ACTIONS(8683), - [anon_sym_register] = ACTIONS(8683), - [anon_sym_inline] = ACTIONS(8683), - [anon_sym___inline] = ACTIONS(8683), - [anon_sym___inline__] = ACTIONS(8683), - [anon_sym___forceinline] = ACTIONS(8683), - [anon_sym_thread_local] = ACTIONS(8683), - [anon_sym___thread] = ACTIONS(8683), - [anon_sym_const] = ACTIONS(8683), - [anon_sym_constexpr] = ACTIONS(8683), - [anon_sym_volatile] = ACTIONS(8683), - [anon_sym_restrict] = ACTIONS(8683), - [anon_sym___restrict__] = ACTIONS(8683), - [anon_sym__Atomic] = ACTIONS(8683), - [anon_sym__Noreturn] = ACTIONS(8683), - [anon_sym_noreturn] = ACTIONS(8683), - [anon_sym__Nonnull] = ACTIONS(8683), - [anon_sym_mutable] = ACTIONS(8683), - [anon_sym_constinit] = ACTIONS(8683), - [anon_sym_consteval] = ACTIONS(8683), - [anon_sym_alignas] = ACTIONS(8683), - [anon_sym__Alignas] = ACTIONS(8683), - [sym_primitive_type] = ACTIONS(8683), - [anon_sym_enum] = ACTIONS(8683), - [anon_sym_class] = ACTIONS(8683), - [anon_sym_struct] = ACTIONS(8683), - [anon_sym_union] = ACTIONS(8683), - [anon_sym_typename] = ACTIONS(8683), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8683), - [anon_sym_decltype] = ACTIONS(8683), - [anon_sym_explicit] = ACTIONS(8683), - [anon_sym_private] = ACTIONS(8683), - [anon_sym_template] = ACTIONS(8683), - [anon_sym_operator] = ACTIONS(8683), - [anon_sym_friend] = ACTIONS(8683), - [anon_sym_public] = ACTIONS(8683), - [anon_sym_protected] = ACTIONS(8683), - [anon_sym_static_assert] = ACTIONS(8683), - [anon_sym_LBRACK_COLON] = ACTIONS(8685), + [sym_identifier] = ACTIONS(3881), + [aux_sym_preproc_def_token1] = ACTIONS(3881), + [aux_sym_preproc_if_token1] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3881), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3881), + [sym_preproc_directive] = ACTIONS(3881), + [anon_sym_LPAREN2] = ACTIONS(3883), + [anon_sym_TILDE] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3883), + [anon_sym_AMP_AMP] = ACTIONS(3883), + [anon_sym_AMP] = ACTIONS(3881), + [anon_sym_SEMI] = ACTIONS(3883), + [anon_sym___extension__] = ACTIONS(3881), + [anon_sym_typedef] = ACTIONS(3881), + [anon_sym_virtual] = ACTIONS(3881), + [anon_sym_extern] = ACTIONS(3881), + [anon_sym___attribute__] = ACTIONS(3881), + [anon_sym___attribute] = ACTIONS(3881), + [anon_sym_using] = ACTIONS(3881), + [anon_sym_COLON_COLON] = ACTIONS(3883), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3883), + [anon_sym___declspec] = ACTIONS(3881), + [anon_sym___based] = ACTIONS(3881), + [anon_sym_RBRACE] = ACTIONS(3883), + [anon_sym_signed] = ACTIONS(3881), + [anon_sym_unsigned] = ACTIONS(3881), + [anon_sym_long] = ACTIONS(3881), + [anon_sym_short] = ACTIONS(3881), + [anon_sym_LBRACK] = ACTIONS(3881), + [anon_sym_static] = ACTIONS(3881), + [anon_sym_register] = ACTIONS(3881), + [anon_sym_inline] = ACTIONS(3881), + [anon_sym___inline] = ACTIONS(3881), + [anon_sym___inline__] = ACTIONS(3881), + [anon_sym___forceinline] = ACTIONS(3881), + [anon_sym_thread_local] = ACTIONS(3881), + [anon_sym___thread] = ACTIONS(3881), + [anon_sym_const] = ACTIONS(3881), + [anon_sym_constexpr] = ACTIONS(3881), + [anon_sym_volatile] = ACTIONS(3881), + [anon_sym_restrict] = ACTIONS(3881), + [anon_sym___restrict__] = ACTIONS(3881), + [anon_sym__Atomic] = ACTIONS(3881), + [anon_sym__Noreturn] = ACTIONS(3881), + [anon_sym_noreturn] = ACTIONS(3881), + [anon_sym__Nonnull] = ACTIONS(3881), + [anon_sym_mutable] = ACTIONS(3881), + [anon_sym_constinit] = ACTIONS(3881), + [anon_sym_consteval] = ACTIONS(3881), + [anon_sym_alignas] = ACTIONS(3881), + [anon_sym__Alignas] = ACTIONS(3881), + [sym_primitive_type] = ACTIONS(3881), + [anon_sym_enum] = ACTIONS(3881), + [anon_sym_class] = ACTIONS(3881), + [anon_sym_struct] = ACTIONS(3881), + [anon_sym_union] = ACTIONS(3881), + [anon_sym_typename] = ACTIONS(3881), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3881), + [anon_sym_decltype] = ACTIONS(3881), + [anon_sym_explicit] = ACTIONS(3881), + [anon_sym_private] = ACTIONS(3881), + [anon_sym_template] = ACTIONS(3881), + [anon_sym_operator] = ACTIONS(3881), + [anon_sym_friend] = ACTIONS(3881), + [anon_sym_public] = ACTIONS(3881), + [anon_sym_protected] = ACTIONS(3881), + [anon_sym_static_assert] = ACTIONS(3881), + [anon_sym_LBRACK_COLON] = ACTIONS(3883), }, [STATE(3422)] = { - [sym_identifier] = ACTIONS(8738), - [aux_sym_preproc_def_token1] = ACTIONS(8738), - [aux_sym_preproc_if_token1] = ACTIONS(8738), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8738), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8738), - [sym_preproc_directive] = ACTIONS(8738), - [anon_sym_LPAREN2] = ACTIONS(8740), - [anon_sym_TILDE] = ACTIONS(8740), - [anon_sym_STAR] = ACTIONS(8740), - [anon_sym_AMP_AMP] = ACTIONS(8740), - [anon_sym_AMP] = ACTIONS(8738), - [anon_sym_SEMI] = ACTIONS(8740), - [anon_sym___extension__] = ACTIONS(8738), - [anon_sym_typedef] = ACTIONS(8738), - [anon_sym_virtual] = ACTIONS(8738), - [anon_sym_extern] = ACTIONS(8738), - [anon_sym___attribute__] = ACTIONS(8738), - [anon_sym___attribute] = ACTIONS(8738), - [anon_sym_using] = ACTIONS(8738), - [anon_sym_COLON_COLON] = ACTIONS(8740), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8740), - [anon_sym___declspec] = ACTIONS(8738), - [anon_sym___based] = ACTIONS(8738), - [anon_sym_RBRACE] = ACTIONS(8740), - [anon_sym_signed] = ACTIONS(8738), - [anon_sym_unsigned] = ACTIONS(8738), - [anon_sym_long] = ACTIONS(8738), - [anon_sym_short] = ACTIONS(8738), - [anon_sym_LBRACK] = ACTIONS(8738), - [anon_sym_static] = ACTIONS(8738), - [anon_sym_register] = ACTIONS(8738), - [anon_sym_inline] = ACTIONS(8738), - [anon_sym___inline] = ACTIONS(8738), - [anon_sym___inline__] = ACTIONS(8738), - [anon_sym___forceinline] = ACTIONS(8738), - [anon_sym_thread_local] = ACTIONS(8738), - [anon_sym___thread] = ACTIONS(8738), - [anon_sym_const] = ACTIONS(8738), - [anon_sym_constexpr] = ACTIONS(8738), - [anon_sym_volatile] = ACTIONS(8738), - [anon_sym_restrict] = ACTIONS(8738), - [anon_sym___restrict__] = ACTIONS(8738), - [anon_sym__Atomic] = ACTIONS(8738), - [anon_sym__Noreturn] = ACTIONS(8738), - [anon_sym_noreturn] = ACTIONS(8738), - [anon_sym__Nonnull] = ACTIONS(8738), - [anon_sym_mutable] = ACTIONS(8738), - [anon_sym_constinit] = ACTIONS(8738), - [anon_sym_consteval] = ACTIONS(8738), - [anon_sym_alignas] = ACTIONS(8738), - [anon_sym__Alignas] = ACTIONS(8738), - [sym_primitive_type] = ACTIONS(8738), - [anon_sym_enum] = ACTIONS(8738), - [anon_sym_class] = ACTIONS(8738), - [anon_sym_struct] = ACTIONS(8738), - [anon_sym_union] = ACTIONS(8738), - [anon_sym_typename] = ACTIONS(8738), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8738), - [anon_sym_decltype] = ACTIONS(8738), - [anon_sym_explicit] = ACTIONS(8738), - [anon_sym_private] = ACTIONS(8738), - [anon_sym_template] = ACTIONS(8738), - [anon_sym_operator] = ACTIONS(8738), - [anon_sym_friend] = ACTIONS(8738), - [anon_sym_public] = ACTIONS(8738), - [anon_sym_protected] = ACTIONS(8738), - [anon_sym_static_assert] = ACTIONS(8738), - [anon_sym_LBRACK_COLON] = ACTIONS(8740), + [sym_identifier] = ACTIONS(8709), + [aux_sym_preproc_def_token1] = ACTIONS(8709), + [aux_sym_preproc_if_token1] = ACTIONS(8709), + [aux_sym_preproc_if_token2] = ACTIONS(8709), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8709), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8709), + [sym_preproc_directive] = ACTIONS(8709), + [anon_sym_LPAREN2] = ACTIONS(8711), + [anon_sym_TILDE] = ACTIONS(8711), + [anon_sym_STAR] = ACTIONS(8711), + [anon_sym_AMP_AMP] = ACTIONS(8711), + [anon_sym_AMP] = ACTIONS(8709), + [anon_sym_SEMI] = ACTIONS(8711), + [anon_sym___extension__] = ACTIONS(8709), + [anon_sym_typedef] = ACTIONS(8709), + [anon_sym_virtual] = ACTIONS(8709), + [anon_sym_extern] = ACTIONS(8709), + [anon_sym___attribute__] = ACTIONS(8709), + [anon_sym___attribute] = ACTIONS(8709), + [anon_sym_using] = ACTIONS(8709), + [anon_sym_COLON_COLON] = ACTIONS(8711), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8711), + [anon_sym___declspec] = ACTIONS(8709), + [anon_sym___based] = ACTIONS(8709), + [anon_sym_signed] = ACTIONS(8709), + [anon_sym_unsigned] = ACTIONS(8709), + [anon_sym_long] = ACTIONS(8709), + [anon_sym_short] = ACTIONS(8709), + [anon_sym_LBRACK] = ACTIONS(8709), + [anon_sym_static] = ACTIONS(8709), + [anon_sym_register] = ACTIONS(8709), + [anon_sym_inline] = ACTIONS(8709), + [anon_sym___inline] = ACTIONS(8709), + [anon_sym___inline__] = ACTIONS(8709), + [anon_sym___forceinline] = ACTIONS(8709), + [anon_sym_thread_local] = ACTIONS(8709), + [anon_sym___thread] = ACTIONS(8709), + [anon_sym_const] = ACTIONS(8709), + [anon_sym_constexpr] = ACTIONS(8709), + [anon_sym_volatile] = ACTIONS(8709), + [anon_sym_restrict] = ACTIONS(8709), + [anon_sym___restrict__] = ACTIONS(8709), + [anon_sym__Atomic] = ACTIONS(8709), + [anon_sym__Noreturn] = ACTIONS(8709), + [anon_sym_noreturn] = ACTIONS(8709), + [anon_sym__Nonnull] = ACTIONS(8709), + [anon_sym_mutable] = ACTIONS(8709), + [anon_sym_constinit] = ACTIONS(8709), + [anon_sym_consteval] = ACTIONS(8709), + [anon_sym_alignas] = ACTIONS(8709), + [anon_sym__Alignas] = ACTIONS(8709), + [sym_primitive_type] = ACTIONS(8709), + [anon_sym_enum] = ACTIONS(8709), + [anon_sym_class] = ACTIONS(8709), + [anon_sym_struct] = ACTIONS(8709), + [anon_sym_union] = ACTIONS(8709), + [anon_sym_typename] = ACTIONS(8709), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8709), + [anon_sym_decltype] = ACTIONS(8709), + [anon_sym_explicit] = ACTIONS(8709), + [anon_sym_private] = ACTIONS(8709), + [anon_sym_template] = ACTIONS(8709), + [anon_sym_operator] = ACTIONS(8709), + [anon_sym_friend] = ACTIONS(8709), + [anon_sym_public] = ACTIONS(8709), + [anon_sym_protected] = ACTIONS(8709), + [anon_sym_static_assert] = ACTIONS(8709), + [anon_sym_LBRACK_COLON] = ACTIONS(8711), }, [STATE(3423)] = { - [sym_identifier] = ACTIONS(8778), - [aux_sym_preproc_def_token1] = ACTIONS(8778), - [aux_sym_preproc_if_token1] = ACTIONS(8778), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8778), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8778), - [sym_preproc_directive] = ACTIONS(8778), - [anon_sym_LPAREN2] = ACTIONS(8780), - [anon_sym_TILDE] = ACTIONS(8780), - [anon_sym_STAR] = ACTIONS(8780), - [anon_sym_AMP_AMP] = ACTIONS(8780), - [anon_sym_AMP] = ACTIONS(8778), - [anon_sym_SEMI] = ACTIONS(8780), - [anon_sym___extension__] = ACTIONS(8778), - [anon_sym_typedef] = ACTIONS(8778), - [anon_sym_virtual] = ACTIONS(8778), - [anon_sym_extern] = ACTIONS(8778), - [anon_sym___attribute__] = ACTIONS(8778), - [anon_sym___attribute] = ACTIONS(8778), - [anon_sym_using] = ACTIONS(8778), - [anon_sym_COLON_COLON] = ACTIONS(8780), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8780), - [anon_sym___declspec] = ACTIONS(8778), - [anon_sym___based] = ACTIONS(8778), - [anon_sym_RBRACE] = ACTIONS(8780), - [anon_sym_signed] = ACTIONS(8778), - [anon_sym_unsigned] = ACTIONS(8778), - [anon_sym_long] = ACTIONS(8778), - [anon_sym_short] = ACTIONS(8778), - [anon_sym_LBRACK] = ACTIONS(8778), - [anon_sym_static] = ACTIONS(8778), - [anon_sym_register] = ACTIONS(8778), - [anon_sym_inline] = ACTIONS(8778), - [anon_sym___inline] = ACTIONS(8778), - [anon_sym___inline__] = ACTIONS(8778), - [anon_sym___forceinline] = ACTIONS(8778), - [anon_sym_thread_local] = ACTIONS(8778), - [anon_sym___thread] = ACTIONS(8778), - [anon_sym_const] = ACTIONS(8778), - [anon_sym_constexpr] = ACTIONS(8778), - [anon_sym_volatile] = ACTIONS(8778), - [anon_sym_restrict] = ACTIONS(8778), - [anon_sym___restrict__] = ACTIONS(8778), - [anon_sym__Atomic] = ACTIONS(8778), - [anon_sym__Noreturn] = ACTIONS(8778), - [anon_sym_noreturn] = ACTIONS(8778), - [anon_sym__Nonnull] = ACTIONS(8778), - [anon_sym_mutable] = ACTIONS(8778), - [anon_sym_constinit] = ACTIONS(8778), - [anon_sym_consteval] = ACTIONS(8778), - [anon_sym_alignas] = ACTIONS(8778), - [anon_sym__Alignas] = ACTIONS(8778), - [sym_primitive_type] = ACTIONS(8778), - [anon_sym_enum] = ACTIONS(8778), - [anon_sym_class] = ACTIONS(8778), - [anon_sym_struct] = ACTIONS(8778), - [anon_sym_union] = ACTIONS(8778), - [anon_sym_typename] = ACTIONS(8778), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8778), - [anon_sym_decltype] = ACTIONS(8778), - [anon_sym_explicit] = ACTIONS(8778), - [anon_sym_private] = ACTIONS(8778), - [anon_sym_template] = ACTIONS(8778), - [anon_sym_operator] = ACTIONS(8778), - [anon_sym_friend] = ACTIONS(8778), - [anon_sym_public] = ACTIONS(8778), - [anon_sym_protected] = ACTIONS(8778), - [anon_sym_static_assert] = ACTIONS(8778), - [anon_sym_LBRACK_COLON] = ACTIONS(8780), + [sym_identifier] = ACTIONS(8713), + [aux_sym_preproc_def_token1] = ACTIONS(8713), + [aux_sym_preproc_if_token1] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8713), + [sym_preproc_directive] = ACTIONS(8713), + [anon_sym_LPAREN2] = ACTIONS(8715), + [anon_sym_TILDE] = ACTIONS(8715), + [anon_sym_STAR] = ACTIONS(8715), + [anon_sym_AMP_AMP] = ACTIONS(8715), + [anon_sym_AMP] = ACTIONS(8713), + [anon_sym_SEMI] = ACTIONS(8715), + [anon_sym___extension__] = ACTIONS(8713), + [anon_sym_typedef] = ACTIONS(8713), + [anon_sym_virtual] = ACTIONS(8713), + [anon_sym_extern] = ACTIONS(8713), + [anon_sym___attribute__] = ACTIONS(8713), + [anon_sym___attribute] = ACTIONS(8713), + [anon_sym_using] = ACTIONS(8713), + [anon_sym_COLON_COLON] = ACTIONS(8715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8715), + [anon_sym___declspec] = ACTIONS(8713), + [anon_sym___based] = ACTIONS(8713), + [anon_sym_RBRACE] = ACTIONS(8715), + [anon_sym_signed] = ACTIONS(8713), + [anon_sym_unsigned] = ACTIONS(8713), + [anon_sym_long] = ACTIONS(8713), + [anon_sym_short] = ACTIONS(8713), + [anon_sym_LBRACK] = ACTIONS(8713), + [anon_sym_static] = ACTIONS(8713), + [anon_sym_register] = ACTIONS(8713), + [anon_sym_inline] = ACTIONS(8713), + [anon_sym___inline] = ACTIONS(8713), + [anon_sym___inline__] = ACTIONS(8713), + [anon_sym___forceinline] = ACTIONS(8713), + [anon_sym_thread_local] = ACTIONS(8713), + [anon_sym___thread] = ACTIONS(8713), + [anon_sym_const] = ACTIONS(8713), + [anon_sym_constexpr] = ACTIONS(8713), + [anon_sym_volatile] = ACTIONS(8713), + [anon_sym_restrict] = ACTIONS(8713), + [anon_sym___restrict__] = ACTIONS(8713), + [anon_sym__Atomic] = ACTIONS(8713), + [anon_sym__Noreturn] = ACTIONS(8713), + [anon_sym_noreturn] = ACTIONS(8713), + [anon_sym__Nonnull] = ACTIONS(8713), + [anon_sym_mutable] = ACTIONS(8713), + [anon_sym_constinit] = ACTIONS(8713), + [anon_sym_consteval] = ACTIONS(8713), + [anon_sym_alignas] = ACTIONS(8713), + [anon_sym__Alignas] = ACTIONS(8713), + [sym_primitive_type] = ACTIONS(8713), + [anon_sym_enum] = ACTIONS(8713), + [anon_sym_class] = ACTIONS(8713), + [anon_sym_struct] = ACTIONS(8713), + [anon_sym_union] = ACTIONS(8713), + [anon_sym_typename] = ACTIONS(8713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8713), + [anon_sym_decltype] = ACTIONS(8713), + [anon_sym_explicit] = ACTIONS(8713), + [anon_sym_private] = ACTIONS(8713), + [anon_sym_template] = ACTIONS(8713), + [anon_sym_operator] = ACTIONS(8713), + [anon_sym_friend] = ACTIONS(8713), + [anon_sym_public] = ACTIONS(8713), + [anon_sym_protected] = ACTIONS(8713), + [anon_sym_static_assert] = ACTIONS(8713), + [anon_sym_LBRACK_COLON] = ACTIONS(8715), }, [STATE(3424)] = { - [sym_identifier] = ACTIONS(8798), - [aux_sym_preproc_def_token1] = ACTIONS(8798), - [aux_sym_preproc_if_token1] = ACTIONS(8798), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8798), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8798), - [sym_preproc_directive] = ACTIONS(8798), - [anon_sym_LPAREN2] = ACTIONS(8800), - [anon_sym_TILDE] = ACTIONS(8800), - [anon_sym_STAR] = ACTIONS(8800), - [anon_sym_AMP_AMP] = ACTIONS(8800), - [anon_sym_AMP] = ACTIONS(8798), - [anon_sym_SEMI] = ACTIONS(8800), - [anon_sym___extension__] = ACTIONS(8798), - [anon_sym_typedef] = ACTIONS(8798), - [anon_sym_virtual] = ACTIONS(8798), - [anon_sym_extern] = ACTIONS(8798), - [anon_sym___attribute__] = ACTIONS(8798), - [anon_sym___attribute] = ACTIONS(8798), - [anon_sym_using] = ACTIONS(8798), - [anon_sym_COLON_COLON] = ACTIONS(8800), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8800), - [anon_sym___declspec] = ACTIONS(8798), - [anon_sym___based] = ACTIONS(8798), - [anon_sym_RBRACE] = ACTIONS(8800), - [anon_sym_signed] = ACTIONS(8798), - [anon_sym_unsigned] = ACTIONS(8798), - [anon_sym_long] = ACTIONS(8798), - [anon_sym_short] = ACTIONS(8798), - [anon_sym_LBRACK] = ACTIONS(8798), - [anon_sym_static] = ACTIONS(8798), - [anon_sym_register] = ACTIONS(8798), - [anon_sym_inline] = ACTIONS(8798), - [anon_sym___inline] = ACTIONS(8798), - [anon_sym___inline__] = ACTIONS(8798), - [anon_sym___forceinline] = ACTIONS(8798), - [anon_sym_thread_local] = ACTIONS(8798), - [anon_sym___thread] = ACTIONS(8798), - [anon_sym_const] = ACTIONS(8798), - [anon_sym_constexpr] = ACTIONS(8798), - [anon_sym_volatile] = ACTIONS(8798), - [anon_sym_restrict] = ACTIONS(8798), - [anon_sym___restrict__] = ACTIONS(8798), - [anon_sym__Atomic] = ACTIONS(8798), - [anon_sym__Noreturn] = ACTIONS(8798), - [anon_sym_noreturn] = ACTIONS(8798), - [anon_sym__Nonnull] = ACTIONS(8798), - [anon_sym_mutable] = ACTIONS(8798), - [anon_sym_constinit] = ACTIONS(8798), - [anon_sym_consteval] = ACTIONS(8798), - [anon_sym_alignas] = ACTIONS(8798), - [anon_sym__Alignas] = ACTIONS(8798), - [sym_primitive_type] = ACTIONS(8798), - [anon_sym_enum] = ACTIONS(8798), - [anon_sym_class] = ACTIONS(8798), - [anon_sym_struct] = ACTIONS(8798), - [anon_sym_union] = ACTIONS(8798), - [anon_sym_typename] = ACTIONS(8798), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8798), - [anon_sym_decltype] = ACTIONS(8798), - [anon_sym_explicit] = ACTIONS(8798), - [anon_sym_private] = ACTIONS(8798), - [anon_sym_template] = ACTIONS(8798), - [anon_sym_operator] = ACTIONS(8798), - [anon_sym_friend] = ACTIONS(8798), - [anon_sym_public] = ACTIONS(8798), - [anon_sym_protected] = ACTIONS(8798), - [anon_sym_static_assert] = ACTIONS(8798), - [anon_sym_LBRACK_COLON] = ACTIONS(8800), + [sym_identifier] = ACTIONS(8713), + [aux_sym_preproc_def_token1] = ACTIONS(8713), + [aux_sym_preproc_if_token1] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8713), + [sym_preproc_directive] = ACTIONS(8713), + [anon_sym_LPAREN2] = ACTIONS(8715), + [anon_sym_TILDE] = ACTIONS(8715), + [anon_sym_STAR] = ACTIONS(8715), + [anon_sym_AMP_AMP] = ACTIONS(8715), + [anon_sym_AMP] = ACTIONS(8713), + [anon_sym_SEMI] = ACTIONS(8715), + [anon_sym___extension__] = ACTIONS(8713), + [anon_sym_typedef] = ACTIONS(8713), + [anon_sym_virtual] = ACTIONS(8713), + [anon_sym_extern] = ACTIONS(8713), + [anon_sym___attribute__] = ACTIONS(8713), + [anon_sym___attribute] = ACTIONS(8713), + [anon_sym_using] = ACTIONS(8713), + [anon_sym_COLON_COLON] = ACTIONS(8715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8715), + [anon_sym___declspec] = ACTIONS(8713), + [anon_sym___based] = ACTIONS(8713), + [anon_sym_RBRACE] = ACTIONS(8715), + [anon_sym_signed] = ACTIONS(8713), + [anon_sym_unsigned] = ACTIONS(8713), + [anon_sym_long] = ACTIONS(8713), + [anon_sym_short] = ACTIONS(8713), + [anon_sym_LBRACK] = ACTIONS(8713), + [anon_sym_static] = ACTIONS(8713), + [anon_sym_register] = ACTIONS(8713), + [anon_sym_inline] = ACTIONS(8713), + [anon_sym___inline] = ACTIONS(8713), + [anon_sym___inline__] = ACTIONS(8713), + [anon_sym___forceinline] = ACTIONS(8713), + [anon_sym_thread_local] = ACTIONS(8713), + [anon_sym___thread] = ACTIONS(8713), + [anon_sym_const] = ACTIONS(8713), + [anon_sym_constexpr] = ACTIONS(8713), + [anon_sym_volatile] = ACTIONS(8713), + [anon_sym_restrict] = ACTIONS(8713), + [anon_sym___restrict__] = ACTIONS(8713), + [anon_sym__Atomic] = ACTIONS(8713), + [anon_sym__Noreturn] = ACTIONS(8713), + [anon_sym_noreturn] = ACTIONS(8713), + [anon_sym__Nonnull] = ACTIONS(8713), + [anon_sym_mutable] = ACTIONS(8713), + [anon_sym_constinit] = ACTIONS(8713), + [anon_sym_consteval] = ACTIONS(8713), + [anon_sym_alignas] = ACTIONS(8713), + [anon_sym__Alignas] = ACTIONS(8713), + [sym_primitive_type] = ACTIONS(8713), + [anon_sym_enum] = ACTIONS(8713), + [anon_sym_class] = ACTIONS(8713), + [anon_sym_struct] = ACTIONS(8713), + [anon_sym_union] = ACTIONS(8713), + [anon_sym_typename] = ACTIONS(8713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8713), + [anon_sym_decltype] = ACTIONS(8713), + [anon_sym_explicit] = ACTIONS(8713), + [anon_sym_private] = ACTIONS(8713), + [anon_sym_template] = ACTIONS(8713), + [anon_sym_operator] = ACTIONS(8713), + [anon_sym_friend] = ACTIONS(8713), + [anon_sym_public] = ACTIONS(8713), + [anon_sym_protected] = ACTIONS(8713), + [anon_sym_static_assert] = ACTIONS(8713), + [anon_sym_LBRACK_COLON] = ACTIONS(8715), }, [STATE(3425)] = { - [sym_identifier] = ACTIONS(8806), - [aux_sym_preproc_def_token1] = ACTIONS(8806), - [aux_sym_preproc_if_token1] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), - [sym_preproc_directive] = ACTIONS(8806), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_TILDE] = ACTIONS(8808), - [anon_sym_STAR] = ACTIONS(8808), - [anon_sym_AMP_AMP] = ACTIONS(8808), - [anon_sym_AMP] = ACTIONS(8806), - [anon_sym_SEMI] = ACTIONS(8808), - [anon_sym___extension__] = ACTIONS(8806), - [anon_sym_typedef] = ACTIONS(8806), - [anon_sym_virtual] = ACTIONS(8806), - [anon_sym_extern] = ACTIONS(8806), - [anon_sym___attribute__] = ACTIONS(8806), - [anon_sym___attribute] = ACTIONS(8806), - [anon_sym_using] = ACTIONS(8806), - [anon_sym_COLON_COLON] = ACTIONS(8808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), - [anon_sym___declspec] = ACTIONS(8806), - [anon_sym___based] = ACTIONS(8806), - [anon_sym_RBRACE] = ACTIONS(8808), - [anon_sym_signed] = ACTIONS(8806), - [anon_sym_unsigned] = ACTIONS(8806), - [anon_sym_long] = ACTIONS(8806), - [anon_sym_short] = ACTIONS(8806), - [anon_sym_LBRACK] = ACTIONS(8806), - [anon_sym_static] = ACTIONS(8806), - [anon_sym_register] = ACTIONS(8806), - [anon_sym_inline] = ACTIONS(8806), - [anon_sym___inline] = ACTIONS(8806), - [anon_sym___inline__] = ACTIONS(8806), - [anon_sym___forceinline] = ACTIONS(8806), - [anon_sym_thread_local] = ACTIONS(8806), - [anon_sym___thread] = ACTIONS(8806), - [anon_sym_const] = ACTIONS(8806), - [anon_sym_constexpr] = ACTIONS(8806), - [anon_sym_volatile] = ACTIONS(8806), - [anon_sym_restrict] = ACTIONS(8806), - [anon_sym___restrict__] = ACTIONS(8806), - [anon_sym__Atomic] = ACTIONS(8806), - [anon_sym__Noreturn] = ACTIONS(8806), - [anon_sym_noreturn] = ACTIONS(8806), - [anon_sym__Nonnull] = ACTIONS(8806), - [anon_sym_mutable] = ACTIONS(8806), - [anon_sym_constinit] = ACTIONS(8806), - [anon_sym_consteval] = ACTIONS(8806), - [anon_sym_alignas] = ACTIONS(8806), - [anon_sym__Alignas] = ACTIONS(8806), - [sym_primitive_type] = ACTIONS(8806), - [anon_sym_enum] = ACTIONS(8806), - [anon_sym_class] = ACTIONS(8806), - [anon_sym_struct] = ACTIONS(8806), - [anon_sym_union] = ACTIONS(8806), - [anon_sym_typename] = ACTIONS(8806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8806), - [anon_sym_decltype] = ACTIONS(8806), - [anon_sym_explicit] = ACTIONS(8806), - [anon_sym_private] = ACTIONS(8806), - [anon_sym_template] = ACTIONS(8806), - [anon_sym_operator] = ACTIONS(8806), - [anon_sym_friend] = ACTIONS(8806), - [anon_sym_public] = ACTIONS(8806), - [anon_sym_protected] = ACTIONS(8806), - [anon_sym_static_assert] = ACTIONS(8806), - [anon_sym_LBRACK_COLON] = ACTIONS(8808), + [sym_identifier] = ACTIONS(8717), + [aux_sym_preproc_def_token1] = ACTIONS(8717), + [aux_sym_preproc_if_token1] = ACTIONS(8717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8717), + [sym_preproc_directive] = ACTIONS(8717), + [anon_sym_LPAREN2] = ACTIONS(8719), + [anon_sym_TILDE] = ACTIONS(8719), + [anon_sym_STAR] = ACTIONS(8719), + [anon_sym_AMP_AMP] = ACTIONS(8719), + [anon_sym_AMP] = ACTIONS(8717), + [anon_sym_SEMI] = ACTIONS(8719), + [anon_sym___extension__] = ACTIONS(8717), + [anon_sym_typedef] = ACTIONS(8717), + [anon_sym_virtual] = ACTIONS(8717), + [anon_sym_extern] = ACTIONS(8717), + [anon_sym___attribute__] = ACTIONS(8717), + [anon_sym___attribute] = ACTIONS(8717), + [anon_sym_using] = ACTIONS(8717), + [anon_sym_COLON_COLON] = ACTIONS(8719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8719), + [anon_sym___declspec] = ACTIONS(8717), + [anon_sym___based] = ACTIONS(8717), + [anon_sym_RBRACE] = ACTIONS(8719), + [anon_sym_signed] = ACTIONS(8717), + [anon_sym_unsigned] = ACTIONS(8717), + [anon_sym_long] = ACTIONS(8717), + [anon_sym_short] = ACTIONS(8717), + [anon_sym_LBRACK] = ACTIONS(8717), + [anon_sym_static] = ACTIONS(8717), + [anon_sym_register] = ACTIONS(8717), + [anon_sym_inline] = ACTIONS(8717), + [anon_sym___inline] = ACTIONS(8717), + [anon_sym___inline__] = ACTIONS(8717), + [anon_sym___forceinline] = ACTIONS(8717), + [anon_sym_thread_local] = ACTIONS(8717), + [anon_sym___thread] = ACTIONS(8717), + [anon_sym_const] = ACTIONS(8717), + [anon_sym_constexpr] = ACTIONS(8717), + [anon_sym_volatile] = ACTIONS(8717), + [anon_sym_restrict] = ACTIONS(8717), + [anon_sym___restrict__] = ACTIONS(8717), + [anon_sym__Atomic] = ACTIONS(8717), + [anon_sym__Noreturn] = ACTIONS(8717), + [anon_sym_noreturn] = ACTIONS(8717), + [anon_sym__Nonnull] = ACTIONS(8717), + [anon_sym_mutable] = ACTIONS(8717), + [anon_sym_constinit] = ACTIONS(8717), + [anon_sym_consteval] = ACTIONS(8717), + [anon_sym_alignas] = ACTIONS(8717), + [anon_sym__Alignas] = ACTIONS(8717), + [sym_primitive_type] = ACTIONS(8717), + [anon_sym_enum] = ACTIONS(8717), + [anon_sym_class] = ACTIONS(8717), + [anon_sym_struct] = ACTIONS(8717), + [anon_sym_union] = ACTIONS(8717), + [anon_sym_typename] = ACTIONS(8717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8717), + [anon_sym_decltype] = ACTIONS(8717), + [anon_sym_explicit] = ACTIONS(8717), + [anon_sym_private] = ACTIONS(8717), + [anon_sym_template] = ACTIONS(8717), + [anon_sym_operator] = ACTIONS(8717), + [anon_sym_friend] = ACTIONS(8717), + [anon_sym_public] = ACTIONS(8717), + [anon_sym_protected] = ACTIONS(8717), + [anon_sym_static_assert] = ACTIONS(8717), + [anon_sym_LBRACK_COLON] = ACTIONS(8719), }, [STATE(3426)] = { - [sym_identifier] = ACTIONS(8822), - [aux_sym_preproc_def_token1] = ACTIONS(8822), - [aux_sym_preproc_if_token1] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), - [sym_preproc_directive] = ACTIONS(8822), - [anon_sym_LPAREN2] = ACTIONS(8824), - [anon_sym_TILDE] = ACTIONS(8824), - [anon_sym_STAR] = ACTIONS(8824), - [anon_sym_AMP_AMP] = ACTIONS(8824), - [anon_sym_AMP] = ACTIONS(8822), - [anon_sym_SEMI] = ACTIONS(8824), - [anon_sym___extension__] = ACTIONS(8822), - [anon_sym_typedef] = ACTIONS(8822), - [anon_sym_virtual] = ACTIONS(8822), - [anon_sym_extern] = ACTIONS(8822), - [anon_sym___attribute__] = ACTIONS(8822), - [anon_sym___attribute] = ACTIONS(8822), - [anon_sym_using] = ACTIONS(8822), - [anon_sym_COLON_COLON] = ACTIONS(8824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), - [anon_sym___declspec] = ACTIONS(8822), - [anon_sym___based] = ACTIONS(8822), - [anon_sym_RBRACE] = ACTIONS(8824), - [anon_sym_signed] = ACTIONS(8822), - [anon_sym_unsigned] = ACTIONS(8822), - [anon_sym_long] = ACTIONS(8822), - [anon_sym_short] = ACTIONS(8822), - [anon_sym_LBRACK] = ACTIONS(8822), - [anon_sym_static] = ACTIONS(8822), - [anon_sym_register] = ACTIONS(8822), - [anon_sym_inline] = ACTIONS(8822), - [anon_sym___inline] = ACTIONS(8822), - [anon_sym___inline__] = ACTIONS(8822), - [anon_sym___forceinline] = ACTIONS(8822), - [anon_sym_thread_local] = ACTIONS(8822), - [anon_sym___thread] = ACTIONS(8822), - [anon_sym_const] = ACTIONS(8822), - [anon_sym_constexpr] = ACTIONS(8822), - [anon_sym_volatile] = ACTIONS(8822), - [anon_sym_restrict] = ACTIONS(8822), - [anon_sym___restrict__] = ACTIONS(8822), - [anon_sym__Atomic] = ACTIONS(8822), - [anon_sym__Noreturn] = ACTIONS(8822), - [anon_sym_noreturn] = ACTIONS(8822), - [anon_sym__Nonnull] = ACTIONS(8822), - [anon_sym_mutable] = ACTIONS(8822), - [anon_sym_constinit] = ACTIONS(8822), - [anon_sym_consteval] = ACTIONS(8822), - [anon_sym_alignas] = ACTIONS(8822), - [anon_sym__Alignas] = ACTIONS(8822), - [sym_primitive_type] = ACTIONS(8822), - [anon_sym_enum] = ACTIONS(8822), - [anon_sym_class] = ACTIONS(8822), - [anon_sym_struct] = ACTIONS(8822), - [anon_sym_union] = ACTIONS(8822), - [anon_sym_typename] = ACTIONS(8822), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8822), - [anon_sym_decltype] = ACTIONS(8822), - [anon_sym_explicit] = ACTIONS(8822), - [anon_sym_private] = ACTIONS(8822), - [anon_sym_template] = ACTIONS(8822), - [anon_sym_operator] = ACTIONS(8822), - [anon_sym_friend] = ACTIONS(8822), - [anon_sym_public] = ACTIONS(8822), - [anon_sym_protected] = ACTIONS(8822), - [anon_sym_static_assert] = ACTIONS(8822), - [anon_sym_LBRACK_COLON] = ACTIONS(8824), + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_friend] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), }, [STATE(3427)] = { - [sym_identifier] = ACTIONS(8806), - [aux_sym_preproc_def_token1] = ACTIONS(8806), - [aux_sym_preproc_if_token1] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8806), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8806), - [sym_preproc_directive] = ACTIONS(8806), - [anon_sym_LPAREN2] = ACTIONS(8808), - [anon_sym_TILDE] = ACTIONS(8808), - [anon_sym_STAR] = ACTIONS(8808), - [anon_sym_AMP_AMP] = ACTIONS(8808), - [anon_sym_AMP] = ACTIONS(8806), - [anon_sym_SEMI] = ACTIONS(8808), - [anon_sym___extension__] = ACTIONS(8806), - [anon_sym_typedef] = ACTIONS(8806), - [anon_sym_virtual] = ACTIONS(8806), - [anon_sym_extern] = ACTIONS(8806), - [anon_sym___attribute__] = ACTIONS(8806), - [anon_sym___attribute] = ACTIONS(8806), - [anon_sym_using] = ACTIONS(8806), - [anon_sym_COLON_COLON] = ACTIONS(8808), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8808), - [anon_sym___declspec] = ACTIONS(8806), - [anon_sym___based] = ACTIONS(8806), - [anon_sym_RBRACE] = ACTIONS(8808), - [anon_sym_signed] = ACTIONS(8806), - [anon_sym_unsigned] = ACTIONS(8806), - [anon_sym_long] = ACTIONS(8806), - [anon_sym_short] = ACTIONS(8806), - [anon_sym_LBRACK] = ACTIONS(8806), - [anon_sym_static] = ACTIONS(8806), - [anon_sym_register] = ACTIONS(8806), - [anon_sym_inline] = ACTIONS(8806), - [anon_sym___inline] = ACTIONS(8806), - [anon_sym___inline__] = ACTIONS(8806), - [anon_sym___forceinline] = ACTIONS(8806), - [anon_sym_thread_local] = ACTIONS(8806), - [anon_sym___thread] = ACTIONS(8806), - [anon_sym_const] = ACTIONS(8806), - [anon_sym_constexpr] = ACTIONS(8806), - [anon_sym_volatile] = ACTIONS(8806), - [anon_sym_restrict] = ACTIONS(8806), - [anon_sym___restrict__] = ACTIONS(8806), - [anon_sym__Atomic] = ACTIONS(8806), - [anon_sym__Noreturn] = ACTIONS(8806), - [anon_sym_noreturn] = ACTIONS(8806), - [anon_sym__Nonnull] = ACTIONS(8806), - [anon_sym_mutable] = ACTIONS(8806), - [anon_sym_constinit] = ACTIONS(8806), - [anon_sym_consteval] = ACTIONS(8806), - [anon_sym_alignas] = ACTIONS(8806), - [anon_sym__Alignas] = ACTIONS(8806), - [sym_primitive_type] = ACTIONS(8806), - [anon_sym_enum] = ACTIONS(8806), - [anon_sym_class] = ACTIONS(8806), - [anon_sym_struct] = ACTIONS(8806), - [anon_sym_union] = ACTIONS(8806), - [anon_sym_typename] = ACTIONS(8806), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8806), - [anon_sym_decltype] = ACTIONS(8806), - [anon_sym_explicit] = ACTIONS(8806), - [anon_sym_private] = ACTIONS(8806), - [anon_sym_template] = ACTIONS(8806), - [anon_sym_operator] = ACTIONS(8806), - [anon_sym_friend] = ACTIONS(8806), - [anon_sym_public] = ACTIONS(8806), - [anon_sym_protected] = ACTIONS(8806), - [anon_sym_static_assert] = ACTIONS(8806), - [anon_sym_LBRACK_COLON] = ACTIONS(8808), + [sym_identifier] = ACTIONS(3518), + [aux_sym_preproc_def_token1] = ACTIONS(3518), + [aux_sym_preproc_if_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3518), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3518), + [sym_preproc_directive] = ACTIONS(3518), + [anon_sym_LPAREN2] = ACTIONS(3520), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_STAR] = ACTIONS(3520), + [anon_sym_AMP_AMP] = ACTIONS(3520), + [anon_sym_AMP] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym___extension__] = ACTIONS(3518), + [anon_sym_typedef] = ACTIONS(3518), + [anon_sym_virtual] = ACTIONS(3518), + [anon_sym_extern] = ACTIONS(3518), + [anon_sym___attribute__] = ACTIONS(3518), + [anon_sym___attribute] = ACTIONS(3518), + [anon_sym_using] = ACTIONS(3518), + [anon_sym_COLON_COLON] = ACTIONS(3520), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3520), + [anon_sym___declspec] = ACTIONS(3518), + [anon_sym___based] = ACTIONS(3518), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_signed] = ACTIONS(3518), + [anon_sym_unsigned] = ACTIONS(3518), + [anon_sym_long] = ACTIONS(3518), + [anon_sym_short] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3518), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_register] = ACTIONS(3518), + [anon_sym_inline] = ACTIONS(3518), + [anon_sym___inline] = ACTIONS(3518), + [anon_sym___inline__] = ACTIONS(3518), + [anon_sym___forceinline] = ACTIONS(3518), + [anon_sym_thread_local] = ACTIONS(3518), + [anon_sym___thread] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_constexpr] = ACTIONS(3518), + [anon_sym_volatile] = ACTIONS(3518), + [anon_sym_restrict] = ACTIONS(3518), + [anon_sym___restrict__] = ACTIONS(3518), + [anon_sym__Atomic] = ACTIONS(3518), + [anon_sym__Noreturn] = ACTIONS(3518), + [anon_sym_noreturn] = ACTIONS(3518), + [anon_sym__Nonnull] = ACTIONS(3518), + [anon_sym_mutable] = ACTIONS(3518), + [anon_sym_constinit] = ACTIONS(3518), + [anon_sym_consteval] = ACTIONS(3518), + [anon_sym_alignas] = ACTIONS(3518), + [anon_sym__Alignas] = ACTIONS(3518), + [sym_primitive_type] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_struct] = ACTIONS(3518), + [anon_sym_union] = ACTIONS(3518), + [anon_sym_typename] = ACTIONS(3518), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3518), + [anon_sym_decltype] = ACTIONS(3518), + [anon_sym_explicit] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_template] = ACTIONS(3518), + [anon_sym_operator] = ACTIONS(3518), + [anon_sym_friend] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_static_assert] = ACTIONS(3518), + [anon_sym_LBRACK_COLON] = ACTIONS(3520), }, [STATE(3428)] = { - [sym_identifier] = ACTIONS(8822), - [aux_sym_preproc_def_token1] = ACTIONS(8822), - [aux_sym_preproc_if_token1] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8822), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8822), - [sym_preproc_directive] = ACTIONS(8822), - [anon_sym_LPAREN2] = ACTIONS(8824), - [anon_sym_TILDE] = ACTIONS(8824), - [anon_sym_STAR] = ACTIONS(8824), - [anon_sym_AMP_AMP] = ACTIONS(8824), - [anon_sym_AMP] = ACTIONS(8822), - [anon_sym_SEMI] = ACTIONS(8824), - [anon_sym___extension__] = ACTIONS(8822), - [anon_sym_typedef] = ACTIONS(8822), - [anon_sym_virtual] = ACTIONS(8822), - [anon_sym_extern] = ACTIONS(8822), - [anon_sym___attribute__] = ACTIONS(8822), - [anon_sym___attribute] = ACTIONS(8822), - [anon_sym_using] = ACTIONS(8822), - [anon_sym_COLON_COLON] = ACTIONS(8824), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8824), - [anon_sym___declspec] = ACTIONS(8822), - [anon_sym___based] = ACTIONS(8822), - [anon_sym_RBRACE] = ACTIONS(8824), - [anon_sym_signed] = ACTIONS(8822), - [anon_sym_unsigned] = ACTIONS(8822), - [anon_sym_long] = ACTIONS(8822), - [anon_sym_short] = ACTIONS(8822), - [anon_sym_LBRACK] = ACTIONS(8822), - [anon_sym_static] = ACTIONS(8822), - [anon_sym_register] = ACTIONS(8822), - [anon_sym_inline] = ACTIONS(8822), - [anon_sym___inline] = ACTIONS(8822), - [anon_sym___inline__] = ACTIONS(8822), - [anon_sym___forceinline] = ACTIONS(8822), - [anon_sym_thread_local] = ACTIONS(8822), - [anon_sym___thread] = ACTIONS(8822), - [anon_sym_const] = ACTIONS(8822), - [anon_sym_constexpr] = ACTIONS(8822), - [anon_sym_volatile] = ACTIONS(8822), - [anon_sym_restrict] = ACTIONS(8822), - [anon_sym___restrict__] = ACTIONS(8822), - [anon_sym__Atomic] = ACTIONS(8822), - [anon_sym__Noreturn] = ACTIONS(8822), - [anon_sym_noreturn] = ACTIONS(8822), - [anon_sym__Nonnull] = ACTIONS(8822), - [anon_sym_mutable] = ACTIONS(8822), - [anon_sym_constinit] = ACTIONS(8822), - [anon_sym_consteval] = ACTIONS(8822), - [anon_sym_alignas] = ACTIONS(8822), - [anon_sym__Alignas] = ACTIONS(8822), - [sym_primitive_type] = ACTIONS(8822), - [anon_sym_enum] = ACTIONS(8822), - [anon_sym_class] = ACTIONS(8822), - [anon_sym_struct] = ACTIONS(8822), - [anon_sym_union] = ACTIONS(8822), - [anon_sym_typename] = ACTIONS(8822), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8822), - [anon_sym_decltype] = ACTIONS(8822), - [anon_sym_explicit] = ACTIONS(8822), - [anon_sym_private] = ACTIONS(8822), - [anon_sym_template] = ACTIONS(8822), - [anon_sym_operator] = ACTIONS(8822), - [anon_sym_friend] = ACTIONS(8822), - [anon_sym_public] = ACTIONS(8822), - [anon_sym_protected] = ACTIONS(8822), - [anon_sym_static_assert] = ACTIONS(8822), - [anon_sym_LBRACK_COLON] = ACTIONS(8824), + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym_RBRACE] = ACTIONS(3784), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_private] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_friend] = ACTIONS(3782), + [anon_sym_public] = ACTIONS(3782), + [anon_sym_protected] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), }, [STATE(3429)] = { - [sym_identifier] = ACTIONS(8687), - [aux_sym_preproc_def_token1] = ACTIONS(8687), - [aux_sym_preproc_if_token1] = ACTIONS(8687), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8687), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8687), - [sym_preproc_directive] = ACTIONS(8687), - [anon_sym_LPAREN2] = ACTIONS(8689), - [anon_sym_TILDE] = ACTIONS(8689), - [anon_sym_STAR] = ACTIONS(8689), - [anon_sym_AMP_AMP] = ACTIONS(8689), - [anon_sym_AMP] = ACTIONS(8687), - [anon_sym_SEMI] = ACTIONS(8689), - [anon_sym___extension__] = ACTIONS(8687), - [anon_sym_typedef] = ACTIONS(8687), - [anon_sym_virtual] = ACTIONS(8687), - [anon_sym_extern] = ACTIONS(8687), - [anon_sym___attribute__] = ACTIONS(8687), - [anon_sym___attribute] = ACTIONS(8687), - [anon_sym_using] = ACTIONS(8687), - [anon_sym_COLON_COLON] = ACTIONS(8689), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8689), - [anon_sym___declspec] = ACTIONS(8687), - [anon_sym___based] = ACTIONS(8687), - [anon_sym_RBRACE] = ACTIONS(8689), - [anon_sym_signed] = ACTIONS(8687), - [anon_sym_unsigned] = ACTIONS(8687), - [anon_sym_long] = ACTIONS(8687), - [anon_sym_short] = ACTIONS(8687), - [anon_sym_LBRACK] = ACTIONS(8687), - [anon_sym_static] = ACTIONS(8687), - [anon_sym_register] = ACTIONS(8687), - [anon_sym_inline] = ACTIONS(8687), - [anon_sym___inline] = ACTIONS(8687), - [anon_sym___inline__] = ACTIONS(8687), - [anon_sym___forceinline] = ACTIONS(8687), - [anon_sym_thread_local] = ACTIONS(8687), - [anon_sym___thread] = ACTIONS(8687), - [anon_sym_const] = ACTIONS(8687), - [anon_sym_constexpr] = ACTIONS(8687), - [anon_sym_volatile] = ACTIONS(8687), - [anon_sym_restrict] = ACTIONS(8687), - [anon_sym___restrict__] = ACTIONS(8687), - [anon_sym__Atomic] = ACTIONS(8687), - [anon_sym__Noreturn] = ACTIONS(8687), - [anon_sym_noreturn] = ACTIONS(8687), - [anon_sym__Nonnull] = ACTIONS(8687), - [anon_sym_mutable] = ACTIONS(8687), - [anon_sym_constinit] = ACTIONS(8687), - [anon_sym_consteval] = ACTIONS(8687), - [anon_sym_alignas] = ACTIONS(8687), - [anon_sym__Alignas] = ACTIONS(8687), - [sym_primitive_type] = ACTIONS(8687), - [anon_sym_enum] = ACTIONS(8687), - [anon_sym_class] = ACTIONS(8687), - [anon_sym_struct] = ACTIONS(8687), - [anon_sym_union] = ACTIONS(8687), - [anon_sym_typename] = ACTIONS(8687), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8687), - [anon_sym_decltype] = ACTIONS(8687), - [anon_sym_explicit] = ACTIONS(8687), - [anon_sym_private] = ACTIONS(8687), - [anon_sym_template] = ACTIONS(8687), - [anon_sym_operator] = ACTIONS(8687), - [anon_sym_friend] = ACTIONS(8687), - [anon_sym_public] = ACTIONS(8687), - [anon_sym_protected] = ACTIONS(8687), - [anon_sym_static_assert] = ACTIONS(8687), - [anon_sym_LBRACK_COLON] = ACTIONS(8689), + [sym_identifier] = ACTIONS(3782), + [aux_sym_preproc_def_token1] = ACTIONS(3782), + [aux_sym_preproc_if_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3782), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3782), + [sym_preproc_directive] = ACTIONS(3782), + [anon_sym_LPAREN2] = ACTIONS(3784), + [anon_sym_TILDE] = ACTIONS(3784), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AMP_AMP] = ACTIONS(3784), + [anon_sym_AMP] = ACTIONS(3782), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym___extension__] = ACTIONS(3782), + [anon_sym_typedef] = ACTIONS(3782), + [anon_sym_virtual] = ACTIONS(3782), + [anon_sym_extern] = ACTIONS(3782), + [anon_sym___attribute__] = ACTIONS(3782), + [anon_sym___attribute] = ACTIONS(3782), + [anon_sym_using] = ACTIONS(3782), + [anon_sym_COLON_COLON] = ACTIONS(3784), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3784), + [anon_sym___declspec] = ACTIONS(3782), + [anon_sym___based] = ACTIONS(3782), + [anon_sym_RBRACE] = ACTIONS(3784), + [anon_sym_signed] = ACTIONS(3782), + [anon_sym_unsigned] = ACTIONS(3782), + [anon_sym_long] = ACTIONS(3782), + [anon_sym_short] = ACTIONS(3782), + [anon_sym_LBRACK] = ACTIONS(3782), + [anon_sym_static] = ACTIONS(3782), + [anon_sym_register] = ACTIONS(3782), + [anon_sym_inline] = ACTIONS(3782), + [anon_sym___inline] = ACTIONS(3782), + [anon_sym___inline__] = ACTIONS(3782), + [anon_sym___forceinline] = ACTIONS(3782), + [anon_sym_thread_local] = ACTIONS(3782), + [anon_sym___thread] = ACTIONS(3782), + [anon_sym_const] = ACTIONS(3782), + [anon_sym_constexpr] = ACTIONS(3782), + [anon_sym_volatile] = ACTIONS(3782), + [anon_sym_restrict] = ACTIONS(3782), + [anon_sym___restrict__] = ACTIONS(3782), + [anon_sym__Atomic] = ACTIONS(3782), + [anon_sym__Noreturn] = ACTIONS(3782), + [anon_sym_noreturn] = ACTIONS(3782), + [anon_sym__Nonnull] = ACTIONS(3782), + [anon_sym_mutable] = ACTIONS(3782), + [anon_sym_constinit] = ACTIONS(3782), + [anon_sym_consteval] = ACTIONS(3782), + [anon_sym_alignas] = ACTIONS(3782), + [anon_sym__Alignas] = ACTIONS(3782), + [sym_primitive_type] = ACTIONS(3782), + [anon_sym_enum] = ACTIONS(3782), + [anon_sym_class] = ACTIONS(3782), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_union] = ACTIONS(3782), + [anon_sym_typename] = ACTIONS(3782), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3782), + [anon_sym_decltype] = ACTIONS(3782), + [anon_sym_explicit] = ACTIONS(3782), + [anon_sym_private] = ACTIONS(3782), + [anon_sym_template] = ACTIONS(3782), + [anon_sym_operator] = ACTIONS(3782), + [anon_sym_friend] = ACTIONS(3782), + [anon_sym_public] = ACTIONS(3782), + [anon_sym_protected] = ACTIONS(3782), + [anon_sym_static_assert] = ACTIONS(3782), + [anon_sym_LBRACK_COLON] = ACTIONS(3784), }, [STATE(3430)] = { - [sym_identifier] = ACTIONS(8691), - [aux_sym_preproc_def_token1] = ACTIONS(8691), - [aux_sym_preproc_if_token1] = ACTIONS(8691), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8691), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8691), - [sym_preproc_directive] = ACTIONS(8691), - [anon_sym_LPAREN2] = ACTIONS(8693), - [anon_sym_TILDE] = ACTIONS(8693), - [anon_sym_STAR] = ACTIONS(8693), - [anon_sym_AMP_AMP] = ACTIONS(8693), - [anon_sym_AMP] = ACTIONS(8691), - [anon_sym_SEMI] = ACTIONS(8693), - [anon_sym___extension__] = ACTIONS(8691), - [anon_sym_typedef] = ACTIONS(8691), - [anon_sym_virtual] = ACTIONS(8691), - [anon_sym_extern] = ACTIONS(8691), - [anon_sym___attribute__] = ACTIONS(8691), - [anon_sym___attribute] = ACTIONS(8691), - [anon_sym_using] = ACTIONS(8691), - [anon_sym_COLON_COLON] = ACTIONS(8693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8693), - [anon_sym___declspec] = ACTIONS(8691), - [anon_sym___based] = ACTIONS(8691), - [anon_sym_RBRACE] = ACTIONS(8693), - [anon_sym_signed] = ACTIONS(8691), - [anon_sym_unsigned] = ACTIONS(8691), - [anon_sym_long] = ACTIONS(8691), - [anon_sym_short] = ACTIONS(8691), - [anon_sym_LBRACK] = ACTIONS(8691), - [anon_sym_static] = ACTIONS(8691), - [anon_sym_register] = ACTIONS(8691), - [anon_sym_inline] = ACTIONS(8691), - [anon_sym___inline] = ACTIONS(8691), - [anon_sym___inline__] = ACTIONS(8691), - [anon_sym___forceinline] = ACTIONS(8691), - [anon_sym_thread_local] = ACTIONS(8691), - [anon_sym___thread] = ACTIONS(8691), - [anon_sym_const] = ACTIONS(8691), - [anon_sym_constexpr] = ACTIONS(8691), - [anon_sym_volatile] = ACTIONS(8691), - [anon_sym_restrict] = ACTIONS(8691), - [anon_sym___restrict__] = ACTIONS(8691), - [anon_sym__Atomic] = ACTIONS(8691), - [anon_sym__Noreturn] = ACTIONS(8691), - [anon_sym_noreturn] = ACTIONS(8691), - [anon_sym__Nonnull] = ACTIONS(8691), - [anon_sym_mutable] = ACTIONS(8691), - [anon_sym_constinit] = ACTIONS(8691), - [anon_sym_consteval] = ACTIONS(8691), - [anon_sym_alignas] = ACTIONS(8691), - [anon_sym__Alignas] = ACTIONS(8691), - [sym_primitive_type] = ACTIONS(8691), - [anon_sym_enum] = ACTIONS(8691), - [anon_sym_class] = ACTIONS(8691), - [anon_sym_struct] = ACTIONS(8691), - [anon_sym_union] = ACTIONS(8691), - [anon_sym_typename] = ACTIONS(8691), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8691), - [anon_sym_decltype] = ACTIONS(8691), - [anon_sym_explicit] = ACTIONS(8691), - [anon_sym_private] = ACTIONS(8691), - [anon_sym_template] = ACTIONS(8691), - [anon_sym_operator] = ACTIONS(8691), - [anon_sym_friend] = ACTIONS(8691), - [anon_sym_public] = ACTIONS(8691), - [anon_sym_protected] = ACTIONS(8691), - [anon_sym_static_assert] = ACTIONS(8691), - [anon_sym_LBRACK_COLON] = ACTIONS(8693), + [sym_decltype_auto] = STATE(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8833), + [anon_sym_decltype] = ACTIONS(6962), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(3431)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym_RBRACE] = ACTIONS(4082), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_private] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_friend] = ACTIONS(4080), - [anon_sym_public] = ACTIONS(4080), - [anon_sym_protected] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [sym_virtual_specifier] = STATE(3456), + [aux_sym__function_postfix_repeat1] = STATE(3456), + [sym_identifier] = ACTIONS(9121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9123), + [anon_sym_COMMA] = ACTIONS(9123), + [anon_sym_RPAREN] = ACTIONS(9123), + [aux_sym_preproc_if_token2] = ACTIONS(9123), + [aux_sym_preproc_else_token1] = ACTIONS(9123), + [aux_sym_preproc_elif_token1] = ACTIONS(9121), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9123), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9123), + [anon_sym_LPAREN2] = ACTIONS(9123), + [anon_sym_DASH] = ACTIONS(9121), + [anon_sym_PLUS] = ACTIONS(9121), + [anon_sym_STAR] = ACTIONS(9121), + [anon_sym_SLASH] = ACTIONS(9121), + [anon_sym_PERCENT] = ACTIONS(9121), + [anon_sym_PIPE_PIPE] = ACTIONS(9123), + [anon_sym_AMP_AMP] = ACTIONS(9123), + [anon_sym_PIPE] = ACTIONS(9121), + [anon_sym_CARET] = ACTIONS(9121), + [anon_sym_AMP] = ACTIONS(9121), + [anon_sym_EQ_EQ] = ACTIONS(9123), + [anon_sym_BANG_EQ] = ACTIONS(9123), + [anon_sym_GT] = ACTIONS(9121), + [anon_sym_GT_EQ] = ACTIONS(9123), + [anon_sym_LT_EQ] = ACTIONS(9121), + [anon_sym_LT] = ACTIONS(9121), + [anon_sym_LT_LT] = ACTIONS(9121), + [anon_sym_GT_GT] = ACTIONS(9121), + [anon_sym_SEMI] = ACTIONS(9123), + [anon_sym___attribute__] = ACTIONS(9121), + [anon_sym___attribute] = ACTIONS(9121), + [anon_sym_COLON] = ACTIONS(9121), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9123), + [anon_sym_RBRACE] = ACTIONS(9123), + [anon_sym_LBRACK] = ACTIONS(9123), + [anon_sym_EQ] = ACTIONS(9121), + [anon_sym_QMARK] = ACTIONS(9123), + [anon_sym_STAR_EQ] = ACTIONS(9123), + [anon_sym_SLASH_EQ] = ACTIONS(9123), + [anon_sym_PERCENT_EQ] = ACTIONS(9123), + [anon_sym_PLUS_EQ] = ACTIONS(9123), + [anon_sym_DASH_EQ] = ACTIONS(9123), + [anon_sym_LT_LT_EQ] = ACTIONS(9123), + [anon_sym_GT_GT_EQ] = ACTIONS(9123), + [anon_sym_AMP_EQ] = ACTIONS(9123), + [anon_sym_CARET_EQ] = ACTIONS(9123), + [anon_sym_PIPE_EQ] = ACTIONS(9123), + [anon_sym_and_eq] = ACTIONS(9121), + [anon_sym_or_eq] = ACTIONS(9121), + [anon_sym_xor_eq] = ACTIONS(9121), + [anon_sym_LT_EQ_GT] = ACTIONS(9123), + [anon_sym_or] = ACTIONS(9121), + [anon_sym_and] = ACTIONS(9121), + [anon_sym_bitor] = ACTIONS(9121), + [anon_sym_xor] = ACTIONS(9121), + [anon_sym_bitand] = ACTIONS(9121), + [anon_sym_not_eq] = ACTIONS(9121), + [anon_sym_DASH_DASH] = ACTIONS(9123), + [anon_sym_PLUS_PLUS] = ACTIONS(9123), + [anon_sym_DOT] = ACTIONS(9121), + [anon_sym_DOT_STAR] = ACTIONS(9123), + [anon_sym_DASH_GT] = ACTIONS(9123), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6555), + [anon_sym_override] = ACTIONS(6555), + [anon_sym_requires] = ACTIONS(9121), + [anon_sym_COLON_RBRACK] = ACTIONS(9123), }, [STATE(3432)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym_RBRACE] = ACTIONS(4082), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_private] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_friend] = ACTIONS(4080), - [anon_sym_public] = ACTIONS(4080), - [anon_sym_protected] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [sym_identifier] = ACTIONS(6660), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RPAREN] = ACTIONS(6653), + [aux_sym_preproc_if_token2] = ACTIONS(6653), + [aux_sym_preproc_else_token1] = ACTIONS(6653), + [aux_sym_preproc_elif_token1] = ACTIONS(6660), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6653), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6653), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6653), + [anon_sym_PIPE_PIPE] = ACTIONS(6653), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6660), + [anon_sym_CARET] = ACTIONS(6653), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6653), + [anon_sym_BANG_EQ] = ACTIONS(6653), + [anon_sym_GT] = ACTIONS(6660), + [anon_sym_GT_EQ] = ACTIONS(6653), + [anon_sym_LT_EQ] = ACTIONS(6660), + [anon_sym_LT] = ACTIONS(6660), + [anon_sym_LT_LT] = ACTIONS(6653), + [anon_sym_GT_GT] = ACTIONS(6653), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6660), + [anon_sym___attribute] = ACTIONS(6660), + [anon_sym_COLON] = ACTIONS(6660), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6653), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_RBRACE] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_LT_EQ_GT] = ACTIONS(6653), + [anon_sym_or] = ACTIONS(6660), + [anon_sym_and] = ACTIONS(6660), + [anon_sym_bitor] = ACTIONS(6660), + [anon_sym_xor] = ACTIONS(6660), + [anon_sym_bitand] = ACTIONS(6660), + [anon_sym_not_eq] = ACTIONS(6660), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_DOT] = ACTIONS(6660), + [anon_sym_DOT_STAR] = ACTIONS(6653), + [anon_sym_DASH_GT] = ACTIONS(6653), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_COLON_RBRACK] = ACTIONS(6653), }, [STATE(3433)] = { - [sym_virtual_specifier] = STATE(3441), - [aux_sym__function_postfix_repeat1] = STATE(3441), - [sym_identifier] = ACTIONS(9139), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9141), - [anon_sym_COMMA] = ACTIONS(9141), - [anon_sym_RPAREN] = ACTIONS(9141), - [aux_sym_preproc_if_token2] = ACTIONS(9141), - [aux_sym_preproc_else_token1] = ACTIONS(9141), - [aux_sym_preproc_elif_token1] = ACTIONS(9139), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9141), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9141), - [anon_sym_LPAREN2] = ACTIONS(9141), - [anon_sym_DASH] = ACTIONS(9139), - [anon_sym_PLUS] = ACTIONS(9139), - [anon_sym_STAR] = ACTIONS(9139), - [anon_sym_SLASH] = ACTIONS(9139), - [anon_sym_PERCENT] = ACTIONS(9139), - [anon_sym_PIPE_PIPE] = ACTIONS(9141), - [anon_sym_AMP_AMP] = ACTIONS(9141), - [anon_sym_PIPE] = ACTIONS(9139), - [anon_sym_CARET] = ACTIONS(9139), - [anon_sym_AMP] = ACTIONS(9139), - [anon_sym_EQ_EQ] = ACTIONS(9141), - [anon_sym_BANG_EQ] = ACTIONS(9141), - [anon_sym_GT] = ACTIONS(9139), - [anon_sym_GT_EQ] = ACTIONS(9141), - [anon_sym_LT_EQ] = ACTIONS(9139), - [anon_sym_LT] = ACTIONS(9139), - [anon_sym_LT_LT] = ACTIONS(9139), - [anon_sym_GT_GT] = ACTIONS(9139), - [anon_sym_SEMI] = ACTIONS(9141), - [anon_sym___attribute__] = ACTIONS(9139), - [anon_sym___attribute] = ACTIONS(9139), - [anon_sym_COLON] = ACTIONS(9139), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9141), - [anon_sym_RBRACE] = ACTIONS(9141), - [anon_sym_LBRACK] = ACTIONS(9141), - [anon_sym_EQ] = ACTIONS(9139), - [anon_sym_QMARK] = ACTIONS(9141), - [anon_sym_STAR_EQ] = ACTIONS(9141), - [anon_sym_SLASH_EQ] = ACTIONS(9141), - [anon_sym_PERCENT_EQ] = ACTIONS(9141), - [anon_sym_PLUS_EQ] = ACTIONS(9141), - [anon_sym_DASH_EQ] = ACTIONS(9141), - [anon_sym_LT_LT_EQ] = ACTIONS(9141), - [anon_sym_GT_GT_EQ] = ACTIONS(9141), - [anon_sym_AMP_EQ] = ACTIONS(9141), - [anon_sym_CARET_EQ] = ACTIONS(9141), - [anon_sym_PIPE_EQ] = ACTIONS(9141), - [anon_sym_and_eq] = ACTIONS(9139), - [anon_sym_or_eq] = ACTIONS(9139), - [anon_sym_xor_eq] = ACTIONS(9139), - [anon_sym_LT_EQ_GT] = ACTIONS(9141), - [anon_sym_or] = ACTIONS(9139), - [anon_sym_and] = ACTIONS(9139), - [anon_sym_bitor] = ACTIONS(9139), - [anon_sym_xor] = ACTIONS(9139), - [anon_sym_bitand] = ACTIONS(9139), - [anon_sym_not_eq] = ACTIONS(9139), - [anon_sym_DASH_DASH] = ACTIONS(9141), - [anon_sym_PLUS_PLUS] = ACTIONS(9141), - [anon_sym_DOT] = ACTIONS(9139), - [anon_sym_DOT_STAR] = ACTIONS(9141), - [anon_sym_DASH_GT] = ACTIONS(9141), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6502), - [anon_sym_override] = ACTIONS(6502), - [anon_sym_requires] = ACTIONS(9139), - [anon_sym_COLON_RBRACK] = ACTIONS(9141), + [sym_identifier] = ACTIONS(3854), + [aux_sym_preproc_def_token1] = ACTIONS(3854), + [aux_sym_preproc_if_token1] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3854), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3854), + [sym_preproc_directive] = ACTIONS(3854), + [anon_sym_LPAREN2] = ACTIONS(3856), + [anon_sym_TILDE] = ACTIONS(3856), + [anon_sym_STAR] = ACTIONS(3856), + [anon_sym_AMP_AMP] = ACTIONS(3856), + [anon_sym_AMP] = ACTIONS(3854), + [anon_sym_SEMI] = ACTIONS(3856), + [anon_sym___extension__] = ACTIONS(3854), + [anon_sym_typedef] = ACTIONS(3854), + [anon_sym_virtual] = ACTIONS(3854), + [anon_sym_extern] = ACTIONS(3854), + [anon_sym___attribute__] = ACTIONS(3854), + [anon_sym___attribute] = ACTIONS(3854), + [anon_sym_using] = ACTIONS(3854), + [anon_sym_COLON_COLON] = ACTIONS(3856), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3856), + [anon_sym___declspec] = ACTIONS(3854), + [anon_sym___based] = ACTIONS(3854), + [anon_sym_RBRACE] = ACTIONS(3856), + [anon_sym_signed] = ACTIONS(3854), + [anon_sym_unsigned] = ACTIONS(3854), + [anon_sym_long] = ACTIONS(3854), + [anon_sym_short] = ACTIONS(3854), + [anon_sym_LBRACK] = ACTIONS(3854), + [anon_sym_static] = ACTIONS(3854), + [anon_sym_register] = ACTIONS(3854), + [anon_sym_inline] = ACTIONS(3854), + [anon_sym___inline] = ACTIONS(3854), + [anon_sym___inline__] = ACTIONS(3854), + [anon_sym___forceinline] = ACTIONS(3854), + [anon_sym_thread_local] = ACTIONS(3854), + [anon_sym___thread] = ACTIONS(3854), + [anon_sym_const] = ACTIONS(3854), + [anon_sym_constexpr] = ACTIONS(3854), + [anon_sym_volatile] = ACTIONS(3854), + [anon_sym_restrict] = ACTIONS(3854), + [anon_sym___restrict__] = ACTIONS(3854), + [anon_sym__Atomic] = ACTIONS(3854), + [anon_sym__Noreturn] = ACTIONS(3854), + [anon_sym_noreturn] = ACTIONS(3854), + [anon_sym__Nonnull] = ACTIONS(3854), + [anon_sym_mutable] = ACTIONS(3854), + [anon_sym_constinit] = ACTIONS(3854), + [anon_sym_consteval] = ACTIONS(3854), + [anon_sym_alignas] = ACTIONS(3854), + [anon_sym__Alignas] = ACTIONS(3854), + [sym_primitive_type] = ACTIONS(3854), + [anon_sym_enum] = ACTIONS(3854), + [anon_sym_class] = ACTIONS(3854), + [anon_sym_struct] = ACTIONS(3854), + [anon_sym_union] = ACTIONS(3854), + [anon_sym_typename] = ACTIONS(3854), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3854), + [anon_sym_decltype] = ACTIONS(3854), + [anon_sym_explicit] = ACTIONS(3854), + [anon_sym_private] = ACTIONS(3854), + [anon_sym_template] = ACTIONS(3854), + [anon_sym_operator] = ACTIONS(3854), + [anon_sym_friend] = ACTIONS(3854), + [anon_sym_public] = ACTIONS(3854), + [anon_sym_protected] = ACTIONS(3854), + [anon_sym_static_assert] = ACTIONS(3854), + [anon_sym_LBRACK_COLON] = ACTIONS(3856), }, [STATE(3434)] = { - [sym_identifier] = ACTIONS(8726), - [aux_sym_preproc_def_token1] = ACTIONS(8726), - [aux_sym_preproc_if_token1] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), - [sym_preproc_directive] = ACTIONS(8726), - [anon_sym_LPAREN2] = ACTIONS(8728), - [anon_sym_TILDE] = ACTIONS(8728), - [anon_sym_STAR] = ACTIONS(8728), - [anon_sym_AMP_AMP] = ACTIONS(8728), - [anon_sym_AMP] = ACTIONS(8726), - [anon_sym_SEMI] = ACTIONS(8728), - [anon_sym___extension__] = ACTIONS(8726), - [anon_sym_typedef] = ACTIONS(8726), - [anon_sym_virtual] = ACTIONS(8726), - [anon_sym_extern] = ACTIONS(8726), - [anon_sym___attribute__] = ACTIONS(8726), - [anon_sym___attribute] = ACTIONS(8726), - [anon_sym_using] = ACTIONS(8726), - [anon_sym_COLON_COLON] = ACTIONS(8728), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), - [anon_sym___declspec] = ACTIONS(8726), - [anon_sym___based] = ACTIONS(8726), - [anon_sym_RBRACE] = ACTIONS(8728), - [anon_sym_signed] = ACTIONS(8726), - [anon_sym_unsigned] = ACTIONS(8726), - [anon_sym_long] = ACTIONS(8726), - [anon_sym_short] = ACTIONS(8726), - [anon_sym_LBRACK] = ACTIONS(8726), - [anon_sym_static] = ACTIONS(8726), - [anon_sym_register] = ACTIONS(8726), - [anon_sym_inline] = ACTIONS(8726), - [anon_sym___inline] = ACTIONS(8726), - [anon_sym___inline__] = ACTIONS(8726), - [anon_sym___forceinline] = ACTIONS(8726), - [anon_sym_thread_local] = ACTIONS(8726), - [anon_sym___thread] = ACTIONS(8726), - [anon_sym_const] = ACTIONS(8726), - [anon_sym_constexpr] = ACTIONS(8726), - [anon_sym_volatile] = ACTIONS(8726), - [anon_sym_restrict] = ACTIONS(8726), - [anon_sym___restrict__] = ACTIONS(8726), - [anon_sym__Atomic] = ACTIONS(8726), - [anon_sym__Noreturn] = ACTIONS(8726), - [anon_sym_noreturn] = ACTIONS(8726), - [anon_sym__Nonnull] = ACTIONS(8726), - [anon_sym_mutable] = ACTIONS(8726), - [anon_sym_constinit] = ACTIONS(8726), - [anon_sym_consteval] = ACTIONS(8726), - [anon_sym_alignas] = ACTIONS(8726), - [anon_sym__Alignas] = ACTIONS(8726), - [sym_primitive_type] = ACTIONS(8726), - [anon_sym_enum] = ACTIONS(8726), - [anon_sym_class] = ACTIONS(8726), - [anon_sym_struct] = ACTIONS(8726), - [anon_sym_union] = ACTIONS(8726), - [anon_sym_typename] = ACTIONS(8726), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8726), - [anon_sym_decltype] = ACTIONS(8726), - [anon_sym_explicit] = ACTIONS(8726), - [anon_sym_private] = ACTIONS(8726), - [anon_sym_template] = ACTIONS(8726), - [anon_sym_operator] = ACTIONS(8726), - [anon_sym_friend] = ACTIONS(8726), - [anon_sym_public] = ACTIONS(8726), - [anon_sym_protected] = ACTIONS(8726), - [anon_sym_static_assert] = ACTIONS(8726), - [anon_sym_LBRACK_COLON] = ACTIONS(8728), + [sym_identifier] = ACTIONS(8816), + [aux_sym_preproc_def_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token2] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8816), + [sym_preproc_directive] = ACTIONS(8816), + [anon_sym_LPAREN2] = ACTIONS(8818), + [anon_sym_TILDE] = ACTIONS(8818), + [anon_sym_STAR] = ACTIONS(8818), + [anon_sym_AMP_AMP] = ACTIONS(8818), + [anon_sym_AMP] = ACTIONS(8816), + [anon_sym_SEMI] = ACTIONS(8818), + [anon_sym___extension__] = ACTIONS(8816), + [anon_sym_typedef] = ACTIONS(8816), + [anon_sym_virtual] = ACTIONS(8816), + [anon_sym_extern] = ACTIONS(8816), + [anon_sym___attribute__] = ACTIONS(8816), + [anon_sym___attribute] = ACTIONS(8816), + [anon_sym_using] = ACTIONS(8816), + [anon_sym_COLON_COLON] = ACTIONS(8818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8818), + [anon_sym___declspec] = ACTIONS(8816), + [anon_sym___based] = ACTIONS(8816), + [anon_sym_signed] = ACTIONS(8816), + [anon_sym_unsigned] = ACTIONS(8816), + [anon_sym_long] = ACTIONS(8816), + [anon_sym_short] = ACTIONS(8816), + [anon_sym_LBRACK] = ACTIONS(8816), + [anon_sym_static] = ACTIONS(8816), + [anon_sym_register] = ACTIONS(8816), + [anon_sym_inline] = ACTIONS(8816), + [anon_sym___inline] = ACTIONS(8816), + [anon_sym___inline__] = ACTIONS(8816), + [anon_sym___forceinline] = ACTIONS(8816), + [anon_sym_thread_local] = ACTIONS(8816), + [anon_sym___thread] = ACTIONS(8816), + [anon_sym_const] = ACTIONS(8816), + [anon_sym_constexpr] = ACTIONS(8816), + [anon_sym_volatile] = ACTIONS(8816), + [anon_sym_restrict] = ACTIONS(8816), + [anon_sym___restrict__] = ACTIONS(8816), + [anon_sym__Atomic] = ACTIONS(8816), + [anon_sym__Noreturn] = ACTIONS(8816), + [anon_sym_noreturn] = ACTIONS(8816), + [anon_sym__Nonnull] = ACTIONS(8816), + [anon_sym_mutable] = ACTIONS(8816), + [anon_sym_constinit] = ACTIONS(8816), + [anon_sym_consteval] = ACTIONS(8816), + [anon_sym_alignas] = ACTIONS(8816), + [anon_sym__Alignas] = ACTIONS(8816), + [sym_primitive_type] = ACTIONS(8816), + [anon_sym_enum] = ACTIONS(8816), + [anon_sym_class] = ACTIONS(8816), + [anon_sym_struct] = ACTIONS(8816), + [anon_sym_union] = ACTIONS(8816), + [anon_sym_typename] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8816), + [anon_sym_decltype] = ACTIONS(8816), + [anon_sym_explicit] = ACTIONS(8816), + [anon_sym_private] = ACTIONS(8816), + [anon_sym_template] = ACTIONS(8816), + [anon_sym_operator] = ACTIONS(8816), + [anon_sym_friend] = ACTIONS(8816), + [anon_sym_public] = ACTIONS(8816), + [anon_sym_protected] = ACTIONS(8816), + [anon_sym_static_assert] = ACTIONS(8816), + [anon_sym_LBRACK_COLON] = ACTIONS(8818), }, [STATE(3435)] = { - [sym_identifier] = ACTIONS(8726), - [aux_sym_preproc_def_token1] = ACTIONS(8726), - [aux_sym_preproc_if_token1] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8726), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8726), - [sym_preproc_directive] = ACTIONS(8726), - [anon_sym_LPAREN2] = ACTIONS(8728), - [anon_sym_TILDE] = ACTIONS(8728), - [anon_sym_STAR] = ACTIONS(8728), - [anon_sym_AMP_AMP] = ACTIONS(8728), - [anon_sym_AMP] = ACTIONS(8726), - [anon_sym_SEMI] = ACTIONS(8728), - [anon_sym___extension__] = ACTIONS(8726), - [anon_sym_typedef] = ACTIONS(8726), - [anon_sym_virtual] = ACTIONS(8726), - [anon_sym_extern] = ACTIONS(8726), - [anon_sym___attribute__] = ACTIONS(8726), - [anon_sym___attribute] = ACTIONS(8726), - [anon_sym_using] = ACTIONS(8726), - [anon_sym_COLON_COLON] = ACTIONS(8728), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8728), - [anon_sym___declspec] = ACTIONS(8726), - [anon_sym___based] = ACTIONS(8726), - [anon_sym_RBRACE] = ACTIONS(8728), - [anon_sym_signed] = ACTIONS(8726), - [anon_sym_unsigned] = ACTIONS(8726), - [anon_sym_long] = ACTIONS(8726), - [anon_sym_short] = ACTIONS(8726), - [anon_sym_LBRACK] = ACTIONS(8726), - [anon_sym_static] = ACTIONS(8726), - [anon_sym_register] = ACTIONS(8726), - [anon_sym_inline] = ACTIONS(8726), - [anon_sym___inline] = ACTIONS(8726), - [anon_sym___inline__] = ACTIONS(8726), - [anon_sym___forceinline] = ACTIONS(8726), - [anon_sym_thread_local] = ACTIONS(8726), - [anon_sym___thread] = ACTIONS(8726), - [anon_sym_const] = ACTIONS(8726), - [anon_sym_constexpr] = ACTIONS(8726), - [anon_sym_volatile] = ACTIONS(8726), - [anon_sym_restrict] = ACTIONS(8726), - [anon_sym___restrict__] = ACTIONS(8726), - [anon_sym__Atomic] = ACTIONS(8726), - [anon_sym__Noreturn] = ACTIONS(8726), - [anon_sym_noreturn] = ACTIONS(8726), - [anon_sym__Nonnull] = ACTIONS(8726), - [anon_sym_mutable] = ACTIONS(8726), - [anon_sym_constinit] = ACTIONS(8726), - [anon_sym_consteval] = ACTIONS(8726), - [anon_sym_alignas] = ACTIONS(8726), - [anon_sym__Alignas] = ACTIONS(8726), - [sym_primitive_type] = ACTIONS(8726), - [anon_sym_enum] = ACTIONS(8726), - [anon_sym_class] = ACTIONS(8726), - [anon_sym_struct] = ACTIONS(8726), - [anon_sym_union] = ACTIONS(8726), - [anon_sym_typename] = ACTIONS(8726), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8726), - [anon_sym_decltype] = ACTIONS(8726), - [anon_sym_explicit] = ACTIONS(8726), - [anon_sym_private] = ACTIONS(8726), - [anon_sym_template] = ACTIONS(8726), - [anon_sym_operator] = ACTIONS(8726), - [anon_sym_friend] = ACTIONS(8726), - [anon_sym_public] = ACTIONS(8726), - [anon_sym_protected] = ACTIONS(8726), - [anon_sym_static_assert] = ACTIONS(8726), - [anon_sym_LBRACK_COLON] = ACTIONS(8728), + [sym_identifier] = ACTIONS(3909), + [aux_sym_preproc_def_token1] = ACTIONS(3909), + [aux_sym_preproc_if_token1] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3909), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3909), + [sym_preproc_directive] = ACTIONS(3909), + [anon_sym_LPAREN2] = ACTIONS(3911), + [anon_sym_TILDE] = ACTIONS(3911), + [anon_sym_STAR] = ACTIONS(3911), + [anon_sym_AMP_AMP] = ACTIONS(3911), + [anon_sym_AMP] = ACTIONS(3909), + [anon_sym_SEMI] = ACTIONS(3911), + [anon_sym___extension__] = ACTIONS(3909), + [anon_sym_typedef] = ACTIONS(3909), + [anon_sym_virtual] = ACTIONS(3909), + [anon_sym_extern] = ACTIONS(3909), + [anon_sym___attribute__] = ACTIONS(3909), + [anon_sym___attribute] = ACTIONS(3909), + [anon_sym_using] = ACTIONS(3909), + [anon_sym_COLON_COLON] = ACTIONS(3911), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3911), + [anon_sym___declspec] = ACTIONS(3909), + [anon_sym___based] = ACTIONS(3909), + [anon_sym_RBRACE] = ACTIONS(3911), + [anon_sym_signed] = ACTIONS(3909), + [anon_sym_unsigned] = ACTIONS(3909), + [anon_sym_long] = ACTIONS(3909), + [anon_sym_short] = ACTIONS(3909), + [anon_sym_LBRACK] = ACTIONS(3909), + [anon_sym_static] = ACTIONS(3909), + [anon_sym_register] = ACTIONS(3909), + [anon_sym_inline] = ACTIONS(3909), + [anon_sym___inline] = ACTIONS(3909), + [anon_sym___inline__] = ACTIONS(3909), + [anon_sym___forceinline] = ACTIONS(3909), + [anon_sym_thread_local] = ACTIONS(3909), + [anon_sym___thread] = ACTIONS(3909), + [anon_sym_const] = ACTIONS(3909), + [anon_sym_constexpr] = ACTIONS(3909), + [anon_sym_volatile] = ACTIONS(3909), + [anon_sym_restrict] = ACTIONS(3909), + [anon_sym___restrict__] = ACTIONS(3909), + [anon_sym__Atomic] = ACTIONS(3909), + [anon_sym__Noreturn] = ACTIONS(3909), + [anon_sym_noreturn] = ACTIONS(3909), + [anon_sym__Nonnull] = ACTIONS(3909), + [anon_sym_mutable] = ACTIONS(3909), + [anon_sym_constinit] = ACTIONS(3909), + [anon_sym_consteval] = ACTIONS(3909), + [anon_sym_alignas] = ACTIONS(3909), + [anon_sym__Alignas] = ACTIONS(3909), + [sym_primitive_type] = ACTIONS(3909), + [anon_sym_enum] = ACTIONS(3909), + [anon_sym_class] = ACTIONS(3909), + [anon_sym_struct] = ACTIONS(3909), + [anon_sym_union] = ACTIONS(3909), + [anon_sym_typename] = ACTIONS(3909), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3909), + [anon_sym_decltype] = ACTIONS(3909), + [anon_sym_explicit] = ACTIONS(3909), + [anon_sym_private] = ACTIONS(3909), + [anon_sym_template] = ACTIONS(3909), + [anon_sym_operator] = ACTIONS(3909), + [anon_sym_friend] = ACTIONS(3909), + [anon_sym_public] = ACTIONS(3909), + [anon_sym_protected] = ACTIONS(3909), + [anon_sym_static_assert] = ACTIONS(3909), + [anon_sym_LBRACK_COLON] = ACTIONS(3911), }, [STATE(3436)] = { - [sym_string_literal] = STATE(2565), - [sym_raw_string_literal] = STATE(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9118), - [anon_sym_COMMA] = ACTIONS(9118), - [anon_sym_RPAREN] = ACTIONS(9118), - [anon_sym_LPAREN2] = ACTIONS(9118), - [anon_sym_DASH] = ACTIONS(9116), - [anon_sym_PLUS] = ACTIONS(9116), - [anon_sym_STAR] = ACTIONS(9116), - [anon_sym_SLASH] = ACTIONS(9116), - [anon_sym_PERCENT] = ACTIONS(9116), - [anon_sym_PIPE_PIPE] = ACTIONS(9118), - [anon_sym_AMP_AMP] = ACTIONS(9118), - [anon_sym_PIPE] = ACTIONS(9116), - [anon_sym_CARET] = ACTIONS(9116), - [anon_sym_AMP] = ACTIONS(9116), - [anon_sym_EQ_EQ] = ACTIONS(9118), - [anon_sym_BANG_EQ] = ACTIONS(9118), - [anon_sym_GT] = ACTIONS(9116), - [anon_sym_GT_EQ] = ACTIONS(9118), - [anon_sym_LT_EQ] = ACTIONS(9116), - [anon_sym_LT] = ACTIONS(9116), - [anon_sym_LT_LT] = ACTIONS(9116), - [anon_sym_GT_GT] = ACTIONS(9116), - [anon_sym_SEMI] = ACTIONS(9118), - [anon_sym_COLON] = ACTIONS(9116), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9118), - [anon_sym_RBRACE] = ACTIONS(9118), - [anon_sym_LBRACK] = ACTIONS(9118), - [anon_sym_EQ] = ACTIONS(9116), - [anon_sym_QMARK] = ACTIONS(9118), - [anon_sym_STAR_EQ] = ACTIONS(9118), - [anon_sym_SLASH_EQ] = ACTIONS(9118), - [anon_sym_PERCENT_EQ] = ACTIONS(9118), - [anon_sym_PLUS_EQ] = ACTIONS(9118), - [anon_sym_DASH_EQ] = ACTIONS(9118), - [anon_sym_LT_LT_EQ] = ACTIONS(9118), - [anon_sym_GT_GT_EQ] = ACTIONS(9118), - [anon_sym_AMP_EQ] = ACTIONS(9118), - [anon_sym_CARET_EQ] = ACTIONS(9118), - [anon_sym_PIPE_EQ] = ACTIONS(9118), - [anon_sym_and_eq] = ACTIONS(9116), - [anon_sym_or_eq] = ACTIONS(9116), - [anon_sym_xor_eq] = ACTIONS(9116), - [anon_sym_LT_EQ_GT] = ACTIONS(9118), - [anon_sym_or] = ACTIONS(9116), - [anon_sym_and] = ACTIONS(9116), - [anon_sym_bitor] = ACTIONS(9116), - [anon_sym_xor] = ACTIONS(9116), - [anon_sym_bitand] = ACTIONS(9116), - [anon_sym_not_eq] = ACTIONS(9116), - [anon_sym_DASH_DASH] = ACTIONS(9118), - [anon_sym_PLUS_PLUS] = ACTIONS(9118), - [anon_sym_DOT] = ACTIONS(9116), - [anon_sym_DOT_STAR] = ACTIONS(9118), - [anon_sym_DASH_GT] = ACTIONS(9118), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - [anon_sym_COLON_RBRACK] = ACTIONS(9118), - [sym_literal_suffix] = ACTIONS(9116), + [sym_identifier] = ACTIONS(8713), + [aux_sym_preproc_def_token1] = ACTIONS(8713), + [aux_sym_preproc_if_token1] = ACTIONS(8713), + [aux_sym_preproc_if_token2] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8713), + [sym_preproc_directive] = ACTIONS(8713), + [anon_sym_LPAREN2] = ACTIONS(8715), + [anon_sym_TILDE] = ACTIONS(8715), + [anon_sym_STAR] = ACTIONS(8715), + [anon_sym_AMP_AMP] = ACTIONS(8715), + [anon_sym_AMP] = ACTIONS(8713), + [anon_sym_SEMI] = ACTIONS(8715), + [anon_sym___extension__] = ACTIONS(8713), + [anon_sym_typedef] = ACTIONS(8713), + [anon_sym_virtual] = ACTIONS(8713), + [anon_sym_extern] = ACTIONS(8713), + [anon_sym___attribute__] = ACTIONS(8713), + [anon_sym___attribute] = ACTIONS(8713), + [anon_sym_using] = ACTIONS(8713), + [anon_sym_COLON_COLON] = ACTIONS(8715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8715), + [anon_sym___declspec] = ACTIONS(8713), + [anon_sym___based] = ACTIONS(8713), + [anon_sym_signed] = ACTIONS(8713), + [anon_sym_unsigned] = ACTIONS(8713), + [anon_sym_long] = ACTIONS(8713), + [anon_sym_short] = ACTIONS(8713), + [anon_sym_LBRACK] = ACTIONS(8713), + [anon_sym_static] = ACTIONS(8713), + [anon_sym_register] = ACTIONS(8713), + [anon_sym_inline] = ACTIONS(8713), + [anon_sym___inline] = ACTIONS(8713), + [anon_sym___inline__] = ACTIONS(8713), + [anon_sym___forceinline] = ACTIONS(8713), + [anon_sym_thread_local] = ACTIONS(8713), + [anon_sym___thread] = ACTIONS(8713), + [anon_sym_const] = ACTIONS(8713), + [anon_sym_constexpr] = ACTIONS(8713), + [anon_sym_volatile] = ACTIONS(8713), + [anon_sym_restrict] = ACTIONS(8713), + [anon_sym___restrict__] = ACTIONS(8713), + [anon_sym__Atomic] = ACTIONS(8713), + [anon_sym__Noreturn] = ACTIONS(8713), + [anon_sym_noreturn] = ACTIONS(8713), + [anon_sym__Nonnull] = ACTIONS(8713), + [anon_sym_mutable] = ACTIONS(8713), + [anon_sym_constinit] = ACTIONS(8713), + [anon_sym_consteval] = ACTIONS(8713), + [anon_sym_alignas] = ACTIONS(8713), + [anon_sym__Alignas] = ACTIONS(8713), + [sym_primitive_type] = ACTIONS(8713), + [anon_sym_enum] = ACTIONS(8713), + [anon_sym_class] = ACTIONS(8713), + [anon_sym_struct] = ACTIONS(8713), + [anon_sym_union] = ACTIONS(8713), + [anon_sym_typename] = ACTIONS(8713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8713), + [anon_sym_decltype] = ACTIONS(8713), + [anon_sym_explicit] = ACTIONS(8713), + [anon_sym_private] = ACTIONS(8713), + [anon_sym_template] = ACTIONS(8713), + [anon_sym_operator] = ACTIONS(8713), + [anon_sym_friend] = ACTIONS(8713), + [anon_sym_public] = ACTIONS(8713), + [anon_sym_protected] = ACTIONS(8713), + [anon_sym_static_assert] = ACTIONS(8713), + [anon_sym_LBRACK_COLON] = ACTIONS(8715), }, [STATE(3437)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_private] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_friend] = ACTIONS(4156), - [anon_sym_public] = ACTIONS(4156), - [anon_sym_protected] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_identifier] = ACTIONS(3534), + [aux_sym_preproc_def_token1] = ACTIONS(3534), + [aux_sym_preproc_if_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3534), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3534), + [sym_preproc_directive] = ACTIONS(3534), + [anon_sym_LPAREN2] = ACTIONS(3536), + [anon_sym_TILDE] = ACTIONS(3536), + [anon_sym_STAR] = ACTIONS(3536), + [anon_sym_AMP_AMP] = ACTIONS(3536), + [anon_sym_AMP] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3536), + [anon_sym___extension__] = ACTIONS(3534), + [anon_sym_typedef] = ACTIONS(3534), + [anon_sym_virtual] = ACTIONS(3534), + [anon_sym_extern] = ACTIONS(3534), + [anon_sym___attribute__] = ACTIONS(3534), + [anon_sym___attribute] = ACTIONS(3534), + [anon_sym_using] = ACTIONS(3534), + [anon_sym_COLON_COLON] = ACTIONS(3536), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3536), + [anon_sym___declspec] = ACTIONS(3534), + [anon_sym___based] = ACTIONS(3534), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_signed] = ACTIONS(3534), + [anon_sym_unsigned] = ACTIONS(3534), + [anon_sym_long] = ACTIONS(3534), + [anon_sym_short] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3534), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_register] = ACTIONS(3534), + [anon_sym_inline] = ACTIONS(3534), + [anon_sym___inline] = ACTIONS(3534), + [anon_sym___inline__] = ACTIONS(3534), + [anon_sym___forceinline] = ACTIONS(3534), + [anon_sym_thread_local] = ACTIONS(3534), + [anon_sym___thread] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_constexpr] = ACTIONS(3534), + [anon_sym_volatile] = ACTIONS(3534), + [anon_sym_restrict] = ACTIONS(3534), + [anon_sym___restrict__] = ACTIONS(3534), + [anon_sym__Atomic] = ACTIONS(3534), + [anon_sym__Noreturn] = ACTIONS(3534), + [anon_sym_noreturn] = ACTIONS(3534), + [anon_sym__Nonnull] = ACTIONS(3534), + [anon_sym_mutable] = ACTIONS(3534), + [anon_sym_constinit] = ACTIONS(3534), + [anon_sym_consteval] = ACTIONS(3534), + [anon_sym_alignas] = ACTIONS(3534), + [anon_sym__Alignas] = ACTIONS(3534), + [sym_primitive_type] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_struct] = ACTIONS(3534), + [anon_sym_union] = ACTIONS(3534), + [anon_sym_typename] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3534), + [anon_sym_decltype] = ACTIONS(3534), + [anon_sym_explicit] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_template] = ACTIONS(3534), + [anon_sym_operator] = ACTIONS(3534), + [anon_sym_friend] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_static_assert] = ACTIONS(3534), + [anon_sym_LBRACK_COLON] = ACTIONS(3536), }, [STATE(3438)] = { - [sym_identifier] = ACTIONS(4156), - [aux_sym_preproc_def_token1] = ACTIONS(4156), - [aux_sym_preproc_if_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4156), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4156), - [sym_preproc_directive] = ACTIONS(4156), - [anon_sym_LPAREN2] = ACTIONS(4158), - [anon_sym_TILDE] = ACTIONS(4158), - [anon_sym_STAR] = ACTIONS(4158), - [anon_sym_AMP_AMP] = ACTIONS(4158), - [anon_sym_AMP] = ACTIONS(4156), - [anon_sym_SEMI] = ACTIONS(4158), - [anon_sym___extension__] = ACTIONS(4156), - [anon_sym_typedef] = ACTIONS(4156), - [anon_sym_virtual] = ACTIONS(4156), - [anon_sym_extern] = ACTIONS(4156), - [anon_sym___attribute__] = ACTIONS(4156), - [anon_sym___attribute] = ACTIONS(4156), - [anon_sym_using] = ACTIONS(4156), - [anon_sym_COLON_COLON] = ACTIONS(4158), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4158), - [anon_sym___declspec] = ACTIONS(4156), - [anon_sym___based] = ACTIONS(4156), - [anon_sym_RBRACE] = ACTIONS(4158), - [anon_sym_signed] = ACTIONS(4156), - [anon_sym_unsigned] = ACTIONS(4156), - [anon_sym_long] = ACTIONS(4156), - [anon_sym_short] = ACTIONS(4156), - [anon_sym_LBRACK] = ACTIONS(4156), - [anon_sym_static] = ACTIONS(4156), - [anon_sym_register] = ACTIONS(4156), - [anon_sym_inline] = ACTIONS(4156), - [anon_sym___inline] = ACTIONS(4156), - [anon_sym___inline__] = ACTIONS(4156), - [anon_sym___forceinline] = ACTIONS(4156), - [anon_sym_thread_local] = ACTIONS(4156), - [anon_sym___thread] = ACTIONS(4156), - [anon_sym_const] = ACTIONS(4156), - [anon_sym_constexpr] = ACTIONS(4156), - [anon_sym_volatile] = ACTIONS(4156), - [anon_sym_restrict] = ACTIONS(4156), - [anon_sym___restrict__] = ACTIONS(4156), - [anon_sym__Atomic] = ACTIONS(4156), - [anon_sym__Noreturn] = ACTIONS(4156), - [anon_sym_noreturn] = ACTIONS(4156), - [anon_sym__Nonnull] = ACTIONS(4156), - [anon_sym_mutable] = ACTIONS(4156), - [anon_sym_constinit] = ACTIONS(4156), - [anon_sym_consteval] = ACTIONS(4156), - [anon_sym_alignas] = ACTIONS(4156), - [anon_sym__Alignas] = ACTIONS(4156), - [sym_primitive_type] = ACTIONS(4156), - [anon_sym_enum] = ACTIONS(4156), - [anon_sym_class] = ACTIONS(4156), - [anon_sym_struct] = ACTIONS(4156), - [anon_sym_union] = ACTIONS(4156), - [anon_sym_typename] = ACTIONS(4156), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4156), - [anon_sym_decltype] = ACTIONS(4156), - [anon_sym_explicit] = ACTIONS(4156), - [anon_sym_private] = ACTIONS(4156), - [anon_sym_template] = ACTIONS(4156), - [anon_sym_operator] = ACTIONS(4156), - [anon_sym_friend] = ACTIONS(4156), - [anon_sym_public] = ACTIONS(4156), - [anon_sym_protected] = ACTIONS(4156), - [anon_sym_static_assert] = ACTIONS(4156), - [anon_sym_LBRACK_COLON] = ACTIONS(4158), + [sym_identifier] = ACTIONS(8725), + [aux_sym_preproc_def_token1] = ACTIONS(8725), + [aux_sym_preproc_if_token1] = ACTIONS(8725), + [aux_sym_preproc_if_token2] = ACTIONS(8725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8725), + [sym_preproc_directive] = ACTIONS(8725), + [anon_sym_LPAREN2] = ACTIONS(8727), + [anon_sym_TILDE] = ACTIONS(8727), + [anon_sym_STAR] = ACTIONS(8727), + [anon_sym_AMP_AMP] = ACTIONS(8727), + [anon_sym_AMP] = ACTIONS(8725), + [anon_sym_SEMI] = ACTIONS(8727), + [anon_sym___extension__] = ACTIONS(8725), + [anon_sym_typedef] = ACTIONS(8725), + [anon_sym_virtual] = ACTIONS(8725), + [anon_sym_extern] = ACTIONS(8725), + [anon_sym___attribute__] = ACTIONS(8725), + [anon_sym___attribute] = ACTIONS(8725), + [anon_sym_using] = ACTIONS(8725), + [anon_sym_COLON_COLON] = ACTIONS(8727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8727), + [anon_sym___declspec] = ACTIONS(8725), + [anon_sym___based] = ACTIONS(8725), + [anon_sym_signed] = ACTIONS(8725), + [anon_sym_unsigned] = ACTIONS(8725), + [anon_sym_long] = ACTIONS(8725), + [anon_sym_short] = ACTIONS(8725), + [anon_sym_LBRACK] = ACTIONS(8725), + [anon_sym_static] = ACTIONS(8725), + [anon_sym_register] = ACTIONS(8725), + [anon_sym_inline] = ACTIONS(8725), + [anon_sym___inline] = ACTIONS(8725), + [anon_sym___inline__] = ACTIONS(8725), + [anon_sym___forceinline] = ACTIONS(8725), + [anon_sym_thread_local] = ACTIONS(8725), + [anon_sym___thread] = ACTIONS(8725), + [anon_sym_const] = ACTIONS(8725), + [anon_sym_constexpr] = ACTIONS(8725), + [anon_sym_volatile] = ACTIONS(8725), + [anon_sym_restrict] = ACTIONS(8725), + [anon_sym___restrict__] = ACTIONS(8725), + [anon_sym__Atomic] = ACTIONS(8725), + [anon_sym__Noreturn] = ACTIONS(8725), + [anon_sym_noreturn] = ACTIONS(8725), + [anon_sym__Nonnull] = ACTIONS(8725), + [anon_sym_mutable] = ACTIONS(8725), + [anon_sym_constinit] = ACTIONS(8725), + [anon_sym_consteval] = ACTIONS(8725), + [anon_sym_alignas] = ACTIONS(8725), + [anon_sym__Alignas] = ACTIONS(8725), + [sym_primitive_type] = ACTIONS(8725), + [anon_sym_enum] = ACTIONS(8725), + [anon_sym_class] = ACTIONS(8725), + [anon_sym_struct] = ACTIONS(8725), + [anon_sym_union] = ACTIONS(8725), + [anon_sym_typename] = ACTIONS(8725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8725), + [anon_sym_decltype] = ACTIONS(8725), + [anon_sym_explicit] = ACTIONS(8725), + [anon_sym_private] = ACTIONS(8725), + [anon_sym_template] = ACTIONS(8725), + [anon_sym_operator] = ACTIONS(8725), + [anon_sym_friend] = ACTIONS(8725), + [anon_sym_public] = ACTIONS(8725), + [anon_sym_protected] = ACTIONS(8725), + [anon_sym_static_assert] = ACTIONS(8725), + [anon_sym_LBRACK_COLON] = ACTIONS(8727), }, [STATE(3439)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_private] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_friend] = ACTIONS(4160), - [anon_sym_public] = ACTIONS(4160), - [anon_sym_protected] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_identifier] = ACTIONS(8713), + [aux_sym_preproc_def_token1] = ACTIONS(8713), + [aux_sym_preproc_if_token1] = ACTIONS(8713), + [aux_sym_preproc_if_token2] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8713), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8713), + [sym_preproc_directive] = ACTIONS(8713), + [anon_sym_LPAREN2] = ACTIONS(8715), + [anon_sym_TILDE] = ACTIONS(8715), + [anon_sym_STAR] = ACTIONS(8715), + [anon_sym_AMP_AMP] = ACTIONS(8715), + [anon_sym_AMP] = ACTIONS(8713), + [anon_sym_SEMI] = ACTIONS(8715), + [anon_sym___extension__] = ACTIONS(8713), + [anon_sym_typedef] = ACTIONS(8713), + [anon_sym_virtual] = ACTIONS(8713), + [anon_sym_extern] = ACTIONS(8713), + [anon_sym___attribute__] = ACTIONS(8713), + [anon_sym___attribute] = ACTIONS(8713), + [anon_sym_using] = ACTIONS(8713), + [anon_sym_COLON_COLON] = ACTIONS(8715), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8715), + [anon_sym___declspec] = ACTIONS(8713), + [anon_sym___based] = ACTIONS(8713), + [anon_sym_signed] = ACTIONS(8713), + [anon_sym_unsigned] = ACTIONS(8713), + [anon_sym_long] = ACTIONS(8713), + [anon_sym_short] = ACTIONS(8713), + [anon_sym_LBRACK] = ACTIONS(8713), + [anon_sym_static] = ACTIONS(8713), + [anon_sym_register] = ACTIONS(8713), + [anon_sym_inline] = ACTIONS(8713), + [anon_sym___inline] = ACTIONS(8713), + [anon_sym___inline__] = ACTIONS(8713), + [anon_sym___forceinline] = ACTIONS(8713), + [anon_sym_thread_local] = ACTIONS(8713), + [anon_sym___thread] = ACTIONS(8713), + [anon_sym_const] = ACTIONS(8713), + [anon_sym_constexpr] = ACTIONS(8713), + [anon_sym_volatile] = ACTIONS(8713), + [anon_sym_restrict] = ACTIONS(8713), + [anon_sym___restrict__] = ACTIONS(8713), + [anon_sym__Atomic] = ACTIONS(8713), + [anon_sym__Noreturn] = ACTIONS(8713), + [anon_sym_noreturn] = ACTIONS(8713), + [anon_sym__Nonnull] = ACTIONS(8713), + [anon_sym_mutable] = ACTIONS(8713), + [anon_sym_constinit] = ACTIONS(8713), + [anon_sym_consteval] = ACTIONS(8713), + [anon_sym_alignas] = ACTIONS(8713), + [anon_sym__Alignas] = ACTIONS(8713), + [sym_primitive_type] = ACTIONS(8713), + [anon_sym_enum] = ACTIONS(8713), + [anon_sym_class] = ACTIONS(8713), + [anon_sym_struct] = ACTIONS(8713), + [anon_sym_union] = ACTIONS(8713), + [anon_sym_typename] = ACTIONS(8713), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8713), + [anon_sym_decltype] = ACTIONS(8713), + [anon_sym_explicit] = ACTIONS(8713), + [anon_sym_private] = ACTIONS(8713), + [anon_sym_template] = ACTIONS(8713), + [anon_sym_operator] = ACTIONS(8713), + [anon_sym_friend] = ACTIONS(8713), + [anon_sym_public] = ACTIONS(8713), + [anon_sym_protected] = ACTIONS(8713), + [anon_sym_static_assert] = ACTIONS(8713), + [anon_sym_LBRACK_COLON] = ACTIONS(8715), }, [STATE(3440)] = { - [sym_identifier] = ACTIONS(4160), - [aux_sym_preproc_def_token1] = ACTIONS(4160), - [aux_sym_preproc_if_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4160), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4160), - [sym_preproc_directive] = ACTIONS(4160), - [anon_sym_LPAREN2] = ACTIONS(4162), - [anon_sym_TILDE] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4160), - [anon_sym_SEMI] = ACTIONS(4162), - [anon_sym___extension__] = ACTIONS(4160), - [anon_sym_typedef] = ACTIONS(4160), - [anon_sym_virtual] = ACTIONS(4160), - [anon_sym_extern] = ACTIONS(4160), - [anon_sym___attribute__] = ACTIONS(4160), - [anon_sym___attribute] = ACTIONS(4160), - [anon_sym_using] = ACTIONS(4160), - [anon_sym_COLON_COLON] = ACTIONS(4162), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4162), - [anon_sym___declspec] = ACTIONS(4160), - [anon_sym___based] = ACTIONS(4160), - [anon_sym_RBRACE] = ACTIONS(4162), - [anon_sym_signed] = ACTIONS(4160), - [anon_sym_unsigned] = ACTIONS(4160), - [anon_sym_long] = ACTIONS(4160), - [anon_sym_short] = ACTIONS(4160), - [anon_sym_LBRACK] = ACTIONS(4160), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_register] = ACTIONS(4160), - [anon_sym_inline] = ACTIONS(4160), - [anon_sym___inline] = ACTIONS(4160), - [anon_sym___inline__] = ACTIONS(4160), - [anon_sym___forceinline] = ACTIONS(4160), - [anon_sym_thread_local] = ACTIONS(4160), - [anon_sym___thread] = ACTIONS(4160), - [anon_sym_const] = ACTIONS(4160), - [anon_sym_constexpr] = ACTIONS(4160), - [anon_sym_volatile] = ACTIONS(4160), - [anon_sym_restrict] = ACTIONS(4160), - [anon_sym___restrict__] = ACTIONS(4160), - [anon_sym__Atomic] = ACTIONS(4160), - [anon_sym__Noreturn] = ACTIONS(4160), - [anon_sym_noreturn] = ACTIONS(4160), - [anon_sym__Nonnull] = ACTIONS(4160), - [anon_sym_mutable] = ACTIONS(4160), - [anon_sym_constinit] = ACTIONS(4160), - [anon_sym_consteval] = ACTIONS(4160), - [anon_sym_alignas] = ACTIONS(4160), - [anon_sym__Alignas] = ACTIONS(4160), - [sym_primitive_type] = ACTIONS(4160), - [anon_sym_enum] = ACTIONS(4160), - [anon_sym_class] = ACTIONS(4160), - [anon_sym_struct] = ACTIONS(4160), - [anon_sym_union] = ACTIONS(4160), - [anon_sym_typename] = ACTIONS(4160), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4160), - [anon_sym_decltype] = ACTIONS(4160), - [anon_sym_explicit] = ACTIONS(4160), - [anon_sym_private] = ACTIONS(4160), - [anon_sym_template] = ACTIONS(4160), - [anon_sym_operator] = ACTIONS(4160), - [anon_sym_friend] = ACTIONS(4160), - [anon_sym_public] = ACTIONS(4160), - [anon_sym_protected] = ACTIONS(4160), - [anon_sym_static_assert] = ACTIONS(4160), - [anon_sym_LBRACK_COLON] = ACTIONS(4162), + [sym_identifier] = ACTIONS(3913), + [aux_sym_preproc_def_token1] = ACTIONS(3913), + [aux_sym_preproc_if_token1] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3913), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3913), + [sym_preproc_directive] = ACTIONS(3913), + [anon_sym_LPAREN2] = ACTIONS(3915), + [anon_sym_TILDE] = ACTIONS(3915), + [anon_sym_STAR] = ACTIONS(3915), + [anon_sym_AMP_AMP] = ACTIONS(3915), + [anon_sym_AMP] = ACTIONS(3913), + [anon_sym_SEMI] = ACTIONS(3915), + [anon_sym___extension__] = ACTIONS(3913), + [anon_sym_typedef] = ACTIONS(3913), + [anon_sym_virtual] = ACTIONS(3913), + [anon_sym_extern] = ACTIONS(3913), + [anon_sym___attribute__] = ACTIONS(3913), + [anon_sym___attribute] = ACTIONS(3913), + [anon_sym_using] = ACTIONS(3913), + [anon_sym_COLON_COLON] = ACTIONS(3915), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3915), + [anon_sym___declspec] = ACTIONS(3913), + [anon_sym___based] = ACTIONS(3913), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_signed] = ACTIONS(3913), + [anon_sym_unsigned] = ACTIONS(3913), + [anon_sym_long] = ACTIONS(3913), + [anon_sym_short] = ACTIONS(3913), + [anon_sym_LBRACK] = ACTIONS(3913), + [anon_sym_static] = ACTIONS(3913), + [anon_sym_register] = ACTIONS(3913), + [anon_sym_inline] = ACTIONS(3913), + [anon_sym___inline] = ACTIONS(3913), + [anon_sym___inline__] = ACTIONS(3913), + [anon_sym___forceinline] = ACTIONS(3913), + [anon_sym_thread_local] = ACTIONS(3913), + [anon_sym___thread] = ACTIONS(3913), + [anon_sym_const] = ACTIONS(3913), + [anon_sym_constexpr] = ACTIONS(3913), + [anon_sym_volatile] = ACTIONS(3913), + [anon_sym_restrict] = ACTIONS(3913), + [anon_sym___restrict__] = ACTIONS(3913), + [anon_sym__Atomic] = ACTIONS(3913), + [anon_sym__Noreturn] = ACTIONS(3913), + [anon_sym_noreturn] = ACTIONS(3913), + [anon_sym__Nonnull] = ACTIONS(3913), + [anon_sym_mutable] = ACTIONS(3913), + [anon_sym_constinit] = ACTIONS(3913), + [anon_sym_consteval] = ACTIONS(3913), + [anon_sym_alignas] = ACTIONS(3913), + [anon_sym__Alignas] = ACTIONS(3913), + [sym_primitive_type] = ACTIONS(3913), + [anon_sym_enum] = ACTIONS(3913), + [anon_sym_class] = ACTIONS(3913), + [anon_sym_struct] = ACTIONS(3913), + [anon_sym_union] = ACTIONS(3913), + [anon_sym_typename] = ACTIONS(3913), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3913), + [anon_sym_decltype] = ACTIONS(3913), + [anon_sym_explicit] = ACTIONS(3913), + [anon_sym_private] = ACTIONS(3913), + [anon_sym_template] = ACTIONS(3913), + [anon_sym_operator] = ACTIONS(3913), + [anon_sym_friend] = ACTIONS(3913), + [anon_sym_public] = ACTIONS(3913), + [anon_sym_protected] = ACTIONS(3913), + [anon_sym_static_assert] = ACTIONS(3913), + [anon_sym_LBRACK_COLON] = ACTIONS(3915), }, [STATE(3441)] = { - [sym_virtual_specifier] = STATE(3441), - [aux_sym__function_postfix_repeat1] = STATE(3441), - [sym_identifier] = ACTIONS(9143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9145), - [anon_sym_COMMA] = ACTIONS(9145), - [anon_sym_RPAREN] = ACTIONS(9145), - [aux_sym_preproc_if_token2] = ACTIONS(9145), - [aux_sym_preproc_else_token1] = ACTIONS(9145), - [aux_sym_preproc_elif_token1] = ACTIONS(9143), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9145), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9145), - [anon_sym_LPAREN2] = ACTIONS(9145), - [anon_sym_DASH] = ACTIONS(9143), - [anon_sym_PLUS] = ACTIONS(9143), - [anon_sym_STAR] = ACTIONS(9143), - [anon_sym_SLASH] = ACTIONS(9143), - [anon_sym_PERCENT] = ACTIONS(9143), - [anon_sym_PIPE_PIPE] = ACTIONS(9145), - [anon_sym_AMP_AMP] = ACTIONS(9145), - [anon_sym_PIPE] = ACTIONS(9143), - [anon_sym_CARET] = ACTIONS(9143), - [anon_sym_AMP] = ACTIONS(9143), - [anon_sym_EQ_EQ] = ACTIONS(9145), - [anon_sym_BANG_EQ] = ACTIONS(9145), - [anon_sym_GT] = ACTIONS(9143), - [anon_sym_GT_EQ] = ACTIONS(9145), - [anon_sym_LT_EQ] = ACTIONS(9143), - [anon_sym_LT] = ACTIONS(9143), - [anon_sym_LT_LT] = ACTIONS(9143), - [anon_sym_GT_GT] = ACTIONS(9143), - [anon_sym_SEMI] = ACTIONS(9145), - [anon_sym___attribute__] = ACTIONS(9143), - [anon_sym___attribute] = ACTIONS(9143), - [anon_sym_COLON] = ACTIONS(9143), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9145), - [anon_sym_RBRACE] = ACTIONS(9145), - [anon_sym_LBRACK] = ACTIONS(9145), - [anon_sym_EQ] = ACTIONS(9143), - [anon_sym_QMARK] = ACTIONS(9145), - [anon_sym_STAR_EQ] = ACTIONS(9145), - [anon_sym_SLASH_EQ] = ACTIONS(9145), - [anon_sym_PERCENT_EQ] = ACTIONS(9145), - [anon_sym_PLUS_EQ] = ACTIONS(9145), - [anon_sym_DASH_EQ] = ACTIONS(9145), - [anon_sym_LT_LT_EQ] = ACTIONS(9145), - [anon_sym_GT_GT_EQ] = ACTIONS(9145), - [anon_sym_AMP_EQ] = ACTIONS(9145), - [anon_sym_CARET_EQ] = ACTIONS(9145), - [anon_sym_PIPE_EQ] = ACTIONS(9145), - [anon_sym_and_eq] = ACTIONS(9143), - [anon_sym_or_eq] = ACTIONS(9143), - [anon_sym_xor_eq] = ACTIONS(9143), - [anon_sym_LT_EQ_GT] = ACTIONS(9145), - [anon_sym_or] = ACTIONS(9143), - [anon_sym_and] = ACTIONS(9143), - [anon_sym_bitor] = ACTIONS(9143), - [anon_sym_xor] = ACTIONS(9143), - [anon_sym_bitand] = ACTIONS(9143), - [anon_sym_not_eq] = ACTIONS(9143), - [anon_sym_DASH_DASH] = ACTIONS(9145), - [anon_sym_PLUS_PLUS] = ACTIONS(9145), - [anon_sym_DOT] = ACTIONS(9143), - [anon_sym_DOT_STAR] = ACTIONS(9145), - [anon_sym_DASH_GT] = ACTIONS(9145), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9147), - [anon_sym_override] = ACTIONS(9147), - [anon_sym_requires] = ACTIONS(9143), - [anon_sym_COLON_RBRACK] = ACTIONS(9145), + [sym_identifier] = ACTIONS(8717), + [aux_sym_preproc_def_token1] = ACTIONS(8717), + [aux_sym_preproc_if_token1] = ACTIONS(8717), + [aux_sym_preproc_if_token2] = ACTIONS(8717), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8717), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8717), + [sym_preproc_directive] = ACTIONS(8717), + [anon_sym_LPAREN2] = ACTIONS(8719), + [anon_sym_TILDE] = ACTIONS(8719), + [anon_sym_STAR] = ACTIONS(8719), + [anon_sym_AMP_AMP] = ACTIONS(8719), + [anon_sym_AMP] = ACTIONS(8717), + [anon_sym_SEMI] = ACTIONS(8719), + [anon_sym___extension__] = ACTIONS(8717), + [anon_sym_typedef] = ACTIONS(8717), + [anon_sym_virtual] = ACTIONS(8717), + [anon_sym_extern] = ACTIONS(8717), + [anon_sym___attribute__] = ACTIONS(8717), + [anon_sym___attribute] = ACTIONS(8717), + [anon_sym_using] = ACTIONS(8717), + [anon_sym_COLON_COLON] = ACTIONS(8719), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8719), + [anon_sym___declspec] = ACTIONS(8717), + [anon_sym___based] = ACTIONS(8717), + [anon_sym_signed] = ACTIONS(8717), + [anon_sym_unsigned] = ACTIONS(8717), + [anon_sym_long] = ACTIONS(8717), + [anon_sym_short] = ACTIONS(8717), + [anon_sym_LBRACK] = ACTIONS(8717), + [anon_sym_static] = ACTIONS(8717), + [anon_sym_register] = ACTIONS(8717), + [anon_sym_inline] = ACTIONS(8717), + [anon_sym___inline] = ACTIONS(8717), + [anon_sym___inline__] = ACTIONS(8717), + [anon_sym___forceinline] = ACTIONS(8717), + [anon_sym_thread_local] = ACTIONS(8717), + [anon_sym___thread] = ACTIONS(8717), + [anon_sym_const] = ACTIONS(8717), + [anon_sym_constexpr] = ACTIONS(8717), + [anon_sym_volatile] = ACTIONS(8717), + [anon_sym_restrict] = ACTIONS(8717), + [anon_sym___restrict__] = ACTIONS(8717), + [anon_sym__Atomic] = ACTIONS(8717), + [anon_sym__Noreturn] = ACTIONS(8717), + [anon_sym_noreturn] = ACTIONS(8717), + [anon_sym__Nonnull] = ACTIONS(8717), + [anon_sym_mutable] = ACTIONS(8717), + [anon_sym_constinit] = ACTIONS(8717), + [anon_sym_consteval] = ACTIONS(8717), + [anon_sym_alignas] = ACTIONS(8717), + [anon_sym__Alignas] = ACTIONS(8717), + [sym_primitive_type] = ACTIONS(8717), + [anon_sym_enum] = ACTIONS(8717), + [anon_sym_class] = ACTIONS(8717), + [anon_sym_struct] = ACTIONS(8717), + [anon_sym_union] = ACTIONS(8717), + [anon_sym_typename] = ACTIONS(8717), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8717), + [anon_sym_decltype] = ACTIONS(8717), + [anon_sym_explicit] = ACTIONS(8717), + [anon_sym_private] = ACTIONS(8717), + [anon_sym_template] = ACTIONS(8717), + [anon_sym_operator] = ACTIONS(8717), + [anon_sym_friend] = ACTIONS(8717), + [anon_sym_public] = ACTIONS(8717), + [anon_sym_protected] = ACTIONS(8717), + [anon_sym_static_assert] = ACTIONS(8717), + [anon_sym_LBRACK_COLON] = ACTIONS(8719), }, [STATE(3442)] = { - [sym_identifier] = ACTIONS(4266), - [aux_sym_preproc_def_token1] = ACTIONS(4266), - [aux_sym_preproc_if_token1] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4266), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4266), - [sym_preproc_directive] = ACTIONS(4266), - [anon_sym_LPAREN2] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4266), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym___extension__] = ACTIONS(4266), - [anon_sym_typedef] = ACTIONS(4266), - [anon_sym_virtual] = ACTIONS(4266), - [anon_sym_extern] = ACTIONS(4266), - [anon_sym___attribute__] = ACTIONS(4266), - [anon_sym___attribute] = ACTIONS(4266), - [anon_sym_using] = ACTIONS(4266), - [anon_sym_COLON_COLON] = ACTIONS(4268), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4268), - [anon_sym___declspec] = ACTIONS(4266), - [anon_sym___based] = ACTIONS(4266), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_signed] = ACTIONS(4266), - [anon_sym_unsigned] = ACTIONS(4266), - [anon_sym_long] = ACTIONS(4266), - [anon_sym_short] = ACTIONS(4266), - [anon_sym_LBRACK] = ACTIONS(4266), - [anon_sym_static] = ACTIONS(4266), - [anon_sym_register] = ACTIONS(4266), - [anon_sym_inline] = ACTIONS(4266), - [anon_sym___inline] = ACTIONS(4266), - [anon_sym___inline__] = ACTIONS(4266), - [anon_sym___forceinline] = ACTIONS(4266), - [anon_sym_thread_local] = ACTIONS(4266), - [anon_sym___thread] = ACTIONS(4266), - [anon_sym_const] = ACTIONS(4266), - [anon_sym_constexpr] = ACTIONS(4266), - [anon_sym_volatile] = ACTIONS(4266), - [anon_sym_restrict] = ACTIONS(4266), - [anon_sym___restrict__] = ACTIONS(4266), - [anon_sym__Atomic] = ACTIONS(4266), - [anon_sym__Noreturn] = ACTIONS(4266), - [anon_sym_noreturn] = ACTIONS(4266), - [anon_sym__Nonnull] = ACTIONS(4266), - [anon_sym_mutable] = ACTIONS(4266), - [anon_sym_constinit] = ACTIONS(4266), - [anon_sym_consteval] = ACTIONS(4266), - [anon_sym_alignas] = ACTIONS(4266), - [anon_sym__Alignas] = ACTIONS(4266), - [sym_primitive_type] = ACTIONS(4266), - [anon_sym_enum] = ACTIONS(4266), - [anon_sym_class] = ACTIONS(4266), - [anon_sym_struct] = ACTIONS(4266), - [anon_sym_union] = ACTIONS(4266), - [anon_sym_typename] = ACTIONS(4266), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4266), - [anon_sym_decltype] = ACTIONS(4266), - [anon_sym_explicit] = ACTIONS(4266), - [anon_sym_private] = ACTIONS(4266), - [anon_sym_template] = ACTIONS(4266), - [anon_sym_operator] = ACTIONS(4266), - [anon_sym_friend] = ACTIONS(4266), - [anon_sym_public] = ACTIONS(4266), - [anon_sym_protected] = ACTIONS(4266), - [anon_sym_static_assert] = ACTIONS(4266), - [anon_sym_LBRACK_COLON] = ACTIONS(4268), + [sym_identifier] = ACTIONS(8816), + [aux_sym_preproc_def_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token1] = ACTIONS(8816), + [aux_sym_preproc_if_token2] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8816), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8816), + [sym_preproc_directive] = ACTIONS(8816), + [anon_sym_LPAREN2] = ACTIONS(8818), + [anon_sym_TILDE] = ACTIONS(8818), + [anon_sym_STAR] = ACTIONS(8818), + [anon_sym_AMP_AMP] = ACTIONS(8818), + [anon_sym_AMP] = ACTIONS(8816), + [anon_sym_SEMI] = ACTIONS(8818), + [anon_sym___extension__] = ACTIONS(8816), + [anon_sym_typedef] = ACTIONS(8816), + [anon_sym_virtual] = ACTIONS(8816), + [anon_sym_extern] = ACTIONS(8816), + [anon_sym___attribute__] = ACTIONS(8816), + [anon_sym___attribute] = ACTIONS(8816), + [anon_sym_using] = ACTIONS(8816), + [anon_sym_COLON_COLON] = ACTIONS(8818), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8818), + [anon_sym___declspec] = ACTIONS(8816), + [anon_sym___based] = ACTIONS(8816), + [anon_sym_signed] = ACTIONS(8816), + [anon_sym_unsigned] = ACTIONS(8816), + [anon_sym_long] = ACTIONS(8816), + [anon_sym_short] = ACTIONS(8816), + [anon_sym_LBRACK] = ACTIONS(8816), + [anon_sym_static] = ACTIONS(8816), + [anon_sym_register] = ACTIONS(8816), + [anon_sym_inline] = ACTIONS(8816), + [anon_sym___inline] = ACTIONS(8816), + [anon_sym___inline__] = ACTIONS(8816), + [anon_sym___forceinline] = ACTIONS(8816), + [anon_sym_thread_local] = ACTIONS(8816), + [anon_sym___thread] = ACTIONS(8816), + [anon_sym_const] = ACTIONS(8816), + [anon_sym_constexpr] = ACTIONS(8816), + [anon_sym_volatile] = ACTIONS(8816), + [anon_sym_restrict] = ACTIONS(8816), + [anon_sym___restrict__] = ACTIONS(8816), + [anon_sym__Atomic] = ACTIONS(8816), + [anon_sym__Noreturn] = ACTIONS(8816), + [anon_sym_noreturn] = ACTIONS(8816), + [anon_sym__Nonnull] = ACTIONS(8816), + [anon_sym_mutable] = ACTIONS(8816), + [anon_sym_constinit] = ACTIONS(8816), + [anon_sym_consteval] = ACTIONS(8816), + [anon_sym_alignas] = ACTIONS(8816), + [anon_sym__Alignas] = ACTIONS(8816), + [sym_primitive_type] = ACTIONS(8816), + [anon_sym_enum] = ACTIONS(8816), + [anon_sym_class] = ACTIONS(8816), + [anon_sym_struct] = ACTIONS(8816), + [anon_sym_union] = ACTIONS(8816), + [anon_sym_typename] = ACTIONS(8816), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8816), + [anon_sym_decltype] = ACTIONS(8816), + [anon_sym_explicit] = ACTIONS(8816), + [anon_sym_private] = ACTIONS(8816), + [anon_sym_template] = ACTIONS(8816), + [anon_sym_operator] = ACTIONS(8816), + [anon_sym_friend] = ACTIONS(8816), + [anon_sym_public] = ACTIONS(8816), + [anon_sym_protected] = ACTIONS(8816), + [anon_sym_static_assert] = ACTIONS(8816), + [anon_sym_LBRACK_COLON] = ACTIONS(8818), }, [STATE(3443)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_friend] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - }, - [STATE(3444)] = { - [sym_identifier] = ACTIONS(4270), - [aux_sym_preproc_def_token1] = ACTIONS(4270), - [aux_sym_preproc_if_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4270), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4270), - [sym_preproc_directive] = ACTIONS(4270), - [anon_sym_LPAREN2] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_AMP_AMP] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_SEMI] = ACTIONS(4272), - [anon_sym___extension__] = ACTIONS(4270), - [anon_sym_typedef] = ACTIONS(4270), - [anon_sym_virtual] = ACTIONS(4270), - [anon_sym_extern] = ACTIONS(4270), - [anon_sym___attribute__] = ACTIONS(4270), - [anon_sym___attribute] = ACTIONS(4270), - [anon_sym_using] = ACTIONS(4270), - [anon_sym_COLON_COLON] = ACTIONS(4272), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4272), - [anon_sym___declspec] = ACTIONS(4270), - [anon_sym___based] = ACTIONS(4270), - [anon_sym_RBRACE] = ACTIONS(4272), - [anon_sym_signed] = ACTIONS(4270), - [anon_sym_unsigned] = ACTIONS(4270), - [anon_sym_long] = ACTIONS(4270), - [anon_sym_short] = ACTIONS(4270), - [anon_sym_LBRACK] = ACTIONS(4270), - [anon_sym_static] = ACTIONS(4270), - [anon_sym_register] = ACTIONS(4270), - [anon_sym_inline] = ACTIONS(4270), - [anon_sym___inline] = ACTIONS(4270), - [anon_sym___inline__] = ACTIONS(4270), - [anon_sym___forceinline] = ACTIONS(4270), - [anon_sym_thread_local] = ACTIONS(4270), - [anon_sym___thread] = ACTIONS(4270), - [anon_sym_const] = ACTIONS(4270), - [anon_sym_constexpr] = ACTIONS(4270), - [anon_sym_volatile] = ACTIONS(4270), - [anon_sym_restrict] = ACTIONS(4270), - [anon_sym___restrict__] = ACTIONS(4270), - [anon_sym__Atomic] = ACTIONS(4270), - [anon_sym__Noreturn] = ACTIONS(4270), - [anon_sym_noreturn] = ACTIONS(4270), - [anon_sym__Nonnull] = ACTIONS(4270), - [anon_sym_mutable] = ACTIONS(4270), - [anon_sym_constinit] = ACTIONS(4270), - [anon_sym_consteval] = ACTIONS(4270), - [anon_sym_alignas] = ACTIONS(4270), - [anon_sym__Alignas] = ACTIONS(4270), - [sym_primitive_type] = ACTIONS(4270), - [anon_sym_enum] = ACTIONS(4270), - [anon_sym_class] = ACTIONS(4270), - [anon_sym_struct] = ACTIONS(4270), - [anon_sym_union] = ACTIONS(4270), - [anon_sym_typename] = ACTIONS(4270), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4270), - [anon_sym_decltype] = ACTIONS(4270), - [anon_sym_explicit] = ACTIONS(4270), - [anon_sym_private] = ACTIONS(4270), - [anon_sym_template] = ACTIONS(4270), - [anon_sym_operator] = ACTIONS(4270), - [anon_sym_friend] = ACTIONS(4270), - [anon_sym_public] = ACTIONS(4270), - [anon_sym_protected] = ACTIONS(4270), - [anon_sym_static_assert] = ACTIONS(4270), - [anon_sym_LBRACK_COLON] = ACTIONS(4272), - }, - [STATE(3445)] = { - [sym_identifier] = ACTIONS(3921), - [aux_sym_preproc_def_token1] = ACTIONS(3921), - [aux_sym_preproc_if_token1] = ACTIONS(3921), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), - [sym_preproc_directive] = ACTIONS(3921), - [anon_sym_LPAREN2] = ACTIONS(3923), - [anon_sym_TILDE] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_AMP_AMP] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3921), - [anon_sym_SEMI] = ACTIONS(3923), - [anon_sym___extension__] = ACTIONS(3921), - [anon_sym_typedef] = ACTIONS(3921), - [anon_sym_virtual] = ACTIONS(3921), - [anon_sym_extern] = ACTIONS(3921), - [anon_sym___attribute__] = ACTIONS(3921), - [anon_sym___attribute] = ACTIONS(3921), - [anon_sym_using] = ACTIONS(3921), - [anon_sym_COLON_COLON] = ACTIONS(3923), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), - [anon_sym___declspec] = ACTIONS(3921), - [anon_sym___based] = ACTIONS(3921), - [anon_sym_RBRACE] = ACTIONS(3923), - [anon_sym_signed] = ACTIONS(3921), - [anon_sym_unsigned] = ACTIONS(3921), - [anon_sym_long] = ACTIONS(3921), - [anon_sym_short] = ACTIONS(3921), - [anon_sym_LBRACK] = ACTIONS(3921), - [anon_sym_static] = ACTIONS(3921), - [anon_sym_register] = ACTIONS(3921), - [anon_sym_inline] = ACTIONS(3921), - [anon_sym___inline] = ACTIONS(3921), - [anon_sym___inline__] = ACTIONS(3921), - [anon_sym___forceinline] = ACTIONS(3921), - [anon_sym_thread_local] = ACTIONS(3921), - [anon_sym___thread] = ACTIONS(3921), - [anon_sym_const] = ACTIONS(3921), - [anon_sym_constexpr] = ACTIONS(3921), - [anon_sym_volatile] = ACTIONS(3921), - [anon_sym_restrict] = ACTIONS(3921), - [anon_sym___restrict__] = ACTIONS(3921), - [anon_sym__Atomic] = ACTIONS(3921), - [anon_sym__Noreturn] = ACTIONS(3921), - [anon_sym_noreturn] = ACTIONS(3921), - [anon_sym__Nonnull] = ACTIONS(3921), - [anon_sym_mutable] = ACTIONS(3921), - [anon_sym_constinit] = ACTIONS(3921), - [anon_sym_consteval] = ACTIONS(3921), - [anon_sym_alignas] = ACTIONS(3921), - [anon_sym__Alignas] = ACTIONS(3921), - [sym_primitive_type] = ACTIONS(3921), - [anon_sym_enum] = ACTIONS(3921), - [anon_sym_class] = ACTIONS(3921), - [anon_sym_struct] = ACTIONS(3921), - [anon_sym_union] = ACTIONS(3921), - [anon_sym_typename] = ACTIONS(3921), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3921), - [anon_sym_decltype] = ACTIONS(3921), - [anon_sym_explicit] = ACTIONS(3921), - [anon_sym_private] = ACTIONS(3921), - [anon_sym_template] = ACTIONS(3921), - [anon_sym_operator] = ACTIONS(3921), - [anon_sym_friend] = ACTIONS(3921), - [anon_sym_public] = ACTIONS(3921), - [anon_sym_protected] = ACTIONS(3921), - [anon_sym_static_assert] = ACTIONS(3921), - [anon_sym_LBRACK_COLON] = ACTIONS(3923), - }, - [STATE(3446)] = { - [sym_identifier] = ACTIONS(8814), - [aux_sym_preproc_def_token1] = ACTIONS(8814), - [aux_sym_preproc_if_token1] = ACTIONS(8814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8814), - [sym_preproc_directive] = ACTIONS(8814), - [anon_sym_LPAREN2] = ACTIONS(8816), - [anon_sym_TILDE] = ACTIONS(8816), - [anon_sym_STAR] = ACTIONS(8816), - [anon_sym_AMP_AMP] = ACTIONS(8816), - [anon_sym_AMP] = ACTIONS(8814), - [anon_sym_SEMI] = ACTIONS(8816), - [anon_sym___extension__] = ACTIONS(8814), - [anon_sym_typedef] = ACTIONS(8814), - [anon_sym_virtual] = ACTIONS(8814), - [anon_sym_extern] = ACTIONS(8814), - [anon_sym___attribute__] = ACTIONS(8814), - [anon_sym___attribute] = ACTIONS(8814), - [anon_sym_using] = ACTIONS(8814), - [anon_sym_COLON_COLON] = ACTIONS(8816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8816), - [anon_sym___declspec] = ACTIONS(8814), - [anon_sym___based] = ACTIONS(8814), - [anon_sym_RBRACE] = ACTIONS(8816), - [anon_sym_signed] = ACTIONS(8814), - [anon_sym_unsigned] = ACTIONS(8814), - [anon_sym_long] = ACTIONS(8814), - [anon_sym_short] = ACTIONS(8814), - [anon_sym_LBRACK] = ACTIONS(8814), - [anon_sym_static] = ACTIONS(8814), - [anon_sym_register] = ACTIONS(8814), - [anon_sym_inline] = ACTIONS(8814), - [anon_sym___inline] = ACTIONS(8814), - [anon_sym___inline__] = ACTIONS(8814), - [anon_sym___forceinline] = ACTIONS(8814), - [anon_sym_thread_local] = ACTIONS(8814), - [anon_sym___thread] = ACTIONS(8814), - [anon_sym_const] = ACTIONS(8814), - [anon_sym_constexpr] = ACTIONS(8814), - [anon_sym_volatile] = ACTIONS(8814), - [anon_sym_restrict] = ACTIONS(8814), - [anon_sym___restrict__] = ACTIONS(8814), - [anon_sym__Atomic] = ACTIONS(8814), - [anon_sym__Noreturn] = ACTIONS(8814), - [anon_sym_noreturn] = ACTIONS(8814), - [anon_sym__Nonnull] = ACTIONS(8814), - [anon_sym_mutable] = ACTIONS(8814), - [anon_sym_constinit] = ACTIONS(8814), - [anon_sym_consteval] = ACTIONS(8814), - [anon_sym_alignas] = ACTIONS(8814), - [anon_sym__Alignas] = ACTIONS(8814), - [sym_primitive_type] = ACTIONS(8814), - [anon_sym_enum] = ACTIONS(8814), - [anon_sym_class] = ACTIONS(8814), - [anon_sym_struct] = ACTIONS(8814), - [anon_sym_union] = ACTIONS(8814), - [anon_sym_typename] = ACTIONS(8814), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8814), - [anon_sym_decltype] = ACTIONS(8814), - [anon_sym_explicit] = ACTIONS(8814), - [anon_sym_private] = ACTIONS(8814), - [anon_sym_template] = ACTIONS(8814), - [anon_sym_operator] = ACTIONS(8814), - [anon_sym_friend] = ACTIONS(8814), - [anon_sym_public] = ACTIONS(8814), - [anon_sym_protected] = ACTIONS(8814), - [anon_sym_static_assert] = ACTIONS(8814), - [anon_sym_LBRACK_COLON] = ACTIONS(8816), - }, - [STATE(3447)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(3448)] = { - [sym_decltype_auto] = STATE(3593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8871), - [anon_sym_decltype] = ACTIONS(6962), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(3449)] = { - [sym_identifier] = ACTIONS(6605), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_RPAREN] = ACTIONS(6598), - [aux_sym_preproc_if_token2] = ACTIONS(6598), - [aux_sym_preproc_else_token1] = ACTIONS(6598), - [aux_sym_preproc_elif_token1] = ACTIONS(6605), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6598), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_STAR] = ACTIONS(6598), - [anon_sym_SLASH] = ACTIONS(6605), - [anon_sym_PERCENT] = ACTIONS(6598), - [anon_sym_PIPE_PIPE] = ACTIONS(6598), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6605), - [anon_sym_CARET] = ACTIONS(6598), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_BANG_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6605), - [anon_sym_GT_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(6605), - [anon_sym_LT_LT] = ACTIONS(6598), - [anon_sym_GT_GT] = ACTIONS(6598), - [anon_sym_SEMI] = ACTIONS(6598), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6605), - [anon_sym___attribute] = ACTIONS(6605), - [anon_sym_COLON] = ACTIONS(6605), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6598), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_RBRACE] = ACTIONS(6598), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [anon_sym_QMARK] = ACTIONS(6598), - [anon_sym_LT_EQ_GT] = ACTIONS(6598), - [anon_sym_or] = ACTIONS(6605), - [anon_sym_and] = ACTIONS(6605), - [anon_sym_bitor] = ACTIONS(6605), - [anon_sym_xor] = ACTIONS(6605), - [anon_sym_bitand] = ACTIONS(6605), - [anon_sym_not_eq] = ACTIONS(6605), - [anon_sym_DASH_DASH] = ACTIONS(6598), - [anon_sym_PLUS_PLUS] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6605), - [anon_sym_DOT_STAR] = ACTIONS(6598), - [anon_sym_DASH_GT] = ACTIONS(6598), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_COLON_RBRACK] = ACTIONS(6598), - }, - [STATE(3450)] = { - [sym_identifier] = ACTIONS(8818), - [aux_sym_preproc_def_token1] = ACTIONS(8818), - [aux_sym_preproc_if_token1] = ACTIONS(8818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8818), - [sym_preproc_directive] = ACTIONS(8818), - [anon_sym_LPAREN2] = ACTIONS(8820), - [anon_sym_TILDE] = ACTIONS(8820), - [anon_sym_STAR] = ACTIONS(8820), - [anon_sym_AMP_AMP] = ACTIONS(8820), - [anon_sym_AMP] = ACTIONS(8818), - [anon_sym_SEMI] = ACTIONS(8820), - [anon_sym___extension__] = ACTIONS(8818), - [anon_sym_typedef] = ACTIONS(8818), - [anon_sym_virtual] = ACTIONS(8818), - [anon_sym_extern] = ACTIONS(8818), - [anon_sym___attribute__] = ACTIONS(8818), - [anon_sym___attribute] = ACTIONS(8818), - [anon_sym_using] = ACTIONS(8818), - [anon_sym_COLON_COLON] = ACTIONS(8820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8820), - [anon_sym___declspec] = ACTIONS(8818), - [anon_sym___based] = ACTIONS(8818), - [anon_sym_RBRACE] = ACTIONS(8820), - [anon_sym_signed] = ACTIONS(8818), - [anon_sym_unsigned] = ACTIONS(8818), - [anon_sym_long] = ACTIONS(8818), - [anon_sym_short] = ACTIONS(8818), - [anon_sym_LBRACK] = ACTIONS(8818), - [anon_sym_static] = ACTIONS(8818), - [anon_sym_register] = ACTIONS(8818), - [anon_sym_inline] = ACTIONS(8818), - [anon_sym___inline] = ACTIONS(8818), - [anon_sym___inline__] = ACTIONS(8818), - [anon_sym___forceinline] = ACTIONS(8818), - [anon_sym_thread_local] = ACTIONS(8818), - [anon_sym___thread] = ACTIONS(8818), - [anon_sym_const] = ACTIONS(8818), - [anon_sym_constexpr] = ACTIONS(8818), - [anon_sym_volatile] = ACTIONS(8818), - [anon_sym_restrict] = ACTIONS(8818), - [anon_sym___restrict__] = ACTIONS(8818), - [anon_sym__Atomic] = ACTIONS(8818), - [anon_sym__Noreturn] = ACTIONS(8818), - [anon_sym_noreturn] = ACTIONS(8818), - [anon_sym__Nonnull] = ACTIONS(8818), - [anon_sym_mutable] = ACTIONS(8818), - [anon_sym_constinit] = ACTIONS(8818), - [anon_sym_consteval] = ACTIONS(8818), - [anon_sym_alignas] = ACTIONS(8818), - [anon_sym__Alignas] = ACTIONS(8818), - [sym_primitive_type] = ACTIONS(8818), - [anon_sym_enum] = ACTIONS(8818), - [anon_sym_class] = ACTIONS(8818), - [anon_sym_struct] = ACTIONS(8818), - [anon_sym_union] = ACTIONS(8818), - [anon_sym_typename] = ACTIONS(8818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8818), - [anon_sym_decltype] = ACTIONS(8818), - [anon_sym_explicit] = ACTIONS(8818), - [anon_sym_private] = ACTIONS(8818), - [anon_sym_template] = ACTIONS(8818), - [anon_sym_operator] = ACTIONS(8818), - [anon_sym_friend] = ACTIONS(8818), - [anon_sym_public] = ACTIONS(8818), - [anon_sym_protected] = ACTIONS(8818), - [anon_sym_static_assert] = ACTIONS(8818), - [anon_sym_LBRACK_COLON] = ACTIONS(8820), - }, - [STATE(3451)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_private] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_friend] = ACTIONS(3600), - [anon_sym_public] = ACTIONS(3600), - [anon_sym_protected] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - }, - [STATE(3452)] = { - [sym_identifier] = ACTIONS(3600), - [aux_sym_preproc_def_token1] = ACTIONS(3600), - [aux_sym_preproc_if_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3600), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3600), - [sym_preproc_directive] = ACTIONS(3600), - [anon_sym_LPAREN2] = ACTIONS(3602), - [anon_sym_TILDE] = ACTIONS(3602), - [anon_sym_STAR] = ACTIONS(3602), - [anon_sym_AMP_AMP] = ACTIONS(3602), - [anon_sym_AMP] = ACTIONS(3600), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym___extension__] = ACTIONS(3600), - [anon_sym_typedef] = ACTIONS(3600), - [anon_sym_virtual] = ACTIONS(3600), - [anon_sym_extern] = ACTIONS(3600), - [anon_sym___attribute__] = ACTIONS(3600), - [anon_sym___attribute] = ACTIONS(3600), - [anon_sym_using] = ACTIONS(3600), - [anon_sym_COLON_COLON] = ACTIONS(3602), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3602), - [anon_sym___declspec] = ACTIONS(3600), - [anon_sym___based] = ACTIONS(3600), - [anon_sym_RBRACE] = ACTIONS(3602), - [anon_sym_signed] = ACTIONS(3600), - [anon_sym_unsigned] = ACTIONS(3600), - [anon_sym_long] = ACTIONS(3600), - [anon_sym_short] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_static] = ACTIONS(3600), - [anon_sym_register] = ACTIONS(3600), - [anon_sym_inline] = ACTIONS(3600), - [anon_sym___inline] = ACTIONS(3600), - [anon_sym___inline__] = ACTIONS(3600), - [anon_sym___forceinline] = ACTIONS(3600), - [anon_sym_thread_local] = ACTIONS(3600), - [anon_sym___thread] = ACTIONS(3600), - [anon_sym_const] = ACTIONS(3600), - [anon_sym_constexpr] = ACTIONS(3600), - [anon_sym_volatile] = ACTIONS(3600), - [anon_sym_restrict] = ACTIONS(3600), - [anon_sym___restrict__] = ACTIONS(3600), - [anon_sym__Atomic] = ACTIONS(3600), - [anon_sym__Noreturn] = ACTIONS(3600), - [anon_sym_noreturn] = ACTIONS(3600), - [anon_sym__Nonnull] = ACTIONS(3600), - [anon_sym_mutable] = ACTIONS(3600), - [anon_sym_constinit] = ACTIONS(3600), - [anon_sym_consteval] = ACTIONS(3600), - [anon_sym_alignas] = ACTIONS(3600), - [anon_sym__Alignas] = ACTIONS(3600), - [sym_primitive_type] = ACTIONS(3600), - [anon_sym_enum] = ACTIONS(3600), - [anon_sym_class] = ACTIONS(3600), - [anon_sym_struct] = ACTIONS(3600), - [anon_sym_union] = ACTIONS(3600), - [anon_sym_typename] = ACTIONS(3600), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3600), - [anon_sym_decltype] = ACTIONS(3600), - [anon_sym_explicit] = ACTIONS(3600), - [anon_sym_private] = ACTIONS(3600), - [anon_sym_template] = ACTIONS(3600), - [anon_sym_operator] = ACTIONS(3600), - [anon_sym_friend] = ACTIONS(3600), - [anon_sym_public] = ACTIONS(3600), - [anon_sym_protected] = ACTIONS(3600), - [anon_sym_static_assert] = ACTIONS(3600), - [anon_sym_LBRACK_COLON] = ACTIONS(3602), - }, - [STATE(3453)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7475), - [anon_sym_COMMA] = ACTIONS(7475), - [anon_sym_RPAREN] = ACTIONS(7475), - [anon_sym_LPAREN2] = ACTIONS(7475), - [anon_sym_DASH] = ACTIONS(7473), - [anon_sym_PLUS] = ACTIONS(7473), - [anon_sym_STAR] = ACTIONS(7473), - [anon_sym_SLASH] = ACTIONS(7473), - [anon_sym_PERCENT] = ACTIONS(7473), - [anon_sym_PIPE_PIPE] = ACTIONS(7475), - [anon_sym_AMP_AMP] = ACTIONS(7475), - [anon_sym_PIPE] = ACTIONS(7473), - [anon_sym_CARET] = ACTIONS(7473), - [anon_sym_AMP] = ACTIONS(7473), - [anon_sym_EQ_EQ] = ACTIONS(7475), - [anon_sym_BANG_EQ] = ACTIONS(7475), - [anon_sym_GT] = ACTIONS(7473), - [anon_sym_GT_EQ] = ACTIONS(7475), - [anon_sym_LT_EQ] = ACTIONS(7473), - [anon_sym_LT] = ACTIONS(7473), - [anon_sym_LT_LT] = ACTIONS(7473), - [anon_sym_GT_GT] = ACTIONS(7473), - [anon_sym___extension__] = ACTIONS(7475), - [anon_sym_COLON_COLON] = ACTIONS(7475), - [anon_sym_LBRACE] = ACTIONS(7475), - [anon_sym_LBRACK] = ACTIONS(7475), - [anon_sym_EQ] = ACTIONS(7473), - [anon_sym_const] = ACTIONS(7473), - [anon_sym_constexpr] = ACTIONS(7475), - [anon_sym_volatile] = ACTIONS(7475), - [anon_sym_restrict] = ACTIONS(7475), - [anon_sym___restrict__] = ACTIONS(7475), - [anon_sym__Atomic] = ACTIONS(7475), - [anon_sym__Noreturn] = ACTIONS(7475), - [anon_sym_noreturn] = ACTIONS(7475), - [anon_sym__Nonnull] = ACTIONS(7475), - [anon_sym_mutable] = ACTIONS(7475), - [anon_sym_constinit] = ACTIONS(7475), - [anon_sym_consteval] = ACTIONS(7475), - [anon_sym_alignas] = ACTIONS(7475), - [anon_sym__Alignas] = ACTIONS(7475), - [anon_sym_QMARK] = ACTIONS(7475), - [anon_sym_STAR_EQ] = ACTIONS(7475), - [anon_sym_SLASH_EQ] = ACTIONS(7475), - [anon_sym_PERCENT_EQ] = ACTIONS(7475), - [anon_sym_PLUS_EQ] = ACTIONS(7475), - [anon_sym_DASH_EQ] = ACTIONS(7475), - [anon_sym_LT_LT_EQ] = ACTIONS(7475), - [anon_sym_GT_GT_EQ] = ACTIONS(7475), - [anon_sym_AMP_EQ] = ACTIONS(7475), - [anon_sym_CARET_EQ] = ACTIONS(7475), - [anon_sym_PIPE_EQ] = ACTIONS(7475), - [anon_sym_LT_EQ_GT] = ACTIONS(7475), - [anon_sym_or] = ACTIONS(7475), - [anon_sym_and] = ACTIONS(7475), - [anon_sym_bitor] = ACTIONS(7475), - [anon_sym_xor] = ACTIONS(7475), - [anon_sym_bitand] = ACTIONS(7475), - [anon_sym_not_eq] = ACTIONS(7475), - [anon_sym_DASH_DASH] = ACTIONS(7475), - [anon_sym_PLUS_PLUS] = ACTIONS(7475), - [anon_sym_DOT] = ACTIONS(7473), - [anon_sym_DOT_STAR] = ACTIONS(7475), - [anon_sym_DASH_GT] = ACTIONS(7473), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7475), - [anon_sym_override] = ACTIONS(7475), - [anon_sym_requires] = ACTIONS(7475), - [anon_sym_DASH_GT_STAR] = ACTIONS(7475), - }, - [STATE(3454)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_friend] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - }, - [STATE(3455)] = { - [sym_identifier] = ACTIONS(3618), - [aux_sym_preproc_def_token1] = ACTIONS(3618), - [aux_sym_preproc_if_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3618), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3618), - [sym_preproc_directive] = ACTIONS(3618), - [anon_sym_LPAREN2] = ACTIONS(3620), - [anon_sym_TILDE] = ACTIONS(3620), - [anon_sym_STAR] = ACTIONS(3620), - [anon_sym_AMP_AMP] = ACTIONS(3620), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_SEMI] = ACTIONS(3620), - [anon_sym___extension__] = ACTIONS(3618), - [anon_sym_typedef] = ACTIONS(3618), - [anon_sym_virtual] = ACTIONS(3618), - [anon_sym_extern] = ACTIONS(3618), - [anon_sym___attribute__] = ACTIONS(3618), - [anon_sym___attribute] = ACTIONS(3618), - [anon_sym_using] = ACTIONS(3618), - [anon_sym_COLON_COLON] = ACTIONS(3620), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3620), - [anon_sym___declspec] = ACTIONS(3618), - [anon_sym___based] = ACTIONS(3618), - [anon_sym_RBRACE] = ACTIONS(3620), - [anon_sym_signed] = ACTIONS(3618), - [anon_sym_unsigned] = ACTIONS(3618), - [anon_sym_long] = ACTIONS(3618), - [anon_sym_short] = ACTIONS(3618), - [anon_sym_LBRACK] = ACTIONS(3618), - [anon_sym_static] = ACTIONS(3618), - [anon_sym_register] = ACTIONS(3618), - [anon_sym_inline] = ACTIONS(3618), - [anon_sym___inline] = ACTIONS(3618), - [anon_sym___inline__] = ACTIONS(3618), - [anon_sym___forceinline] = ACTIONS(3618), - [anon_sym_thread_local] = ACTIONS(3618), - [anon_sym___thread] = ACTIONS(3618), - [anon_sym_const] = ACTIONS(3618), - [anon_sym_constexpr] = ACTIONS(3618), - [anon_sym_volatile] = ACTIONS(3618), - [anon_sym_restrict] = ACTIONS(3618), - [anon_sym___restrict__] = ACTIONS(3618), - [anon_sym__Atomic] = ACTIONS(3618), - [anon_sym__Noreturn] = ACTIONS(3618), - [anon_sym_noreturn] = ACTIONS(3618), - [anon_sym__Nonnull] = ACTIONS(3618), - [anon_sym_mutable] = ACTIONS(3618), - [anon_sym_constinit] = ACTIONS(3618), - [anon_sym_consteval] = ACTIONS(3618), - [anon_sym_alignas] = ACTIONS(3618), - [anon_sym__Alignas] = ACTIONS(3618), - [sym_primitive_type] = ACTIONS(3618), - [anon_sym_enum] = ACTIONS(3618), - [anon_sym_class] = ACTIONS(3618), - [anon_sym_struct] = ACTIONS(3618), - [anon_sym_union] = ACTIONS(3618), - [anon_sym_typename] = ACTIONS(3618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3618), - [anon_sym_decltype] = ACTIONS(3618), - [anon_sym_explicit] = ACTIONS(3618), - [anon_sym_private] = ACTIONS(3618), - [anon_sym_template] = ACTIONS(3618), - [anon_sym_operator] = ACTIONS(3618), - [anon_sym_friend] = ACTIONS(3618), - [anon_sym_public] = ACTIONS(3618), - [anon_sym_protected] = ACTIONS(3618), - [anon_sym_static_assert] = ACTIONS(3618), - [anon_sym_LBRACK_COLON] = ACTIONS(3620), - }, - [STATE(3456)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym_RBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_friend] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - }, - [STATE(3457)] = { - [sym_identifier] = ACTIONS(3622), - [aux_sym_preproc_def_token1] = ACTIONS(3622), - [aux_sym_preproc_if_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3622), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3622), - [sym_preproc_directive] = ACTIONS(3622), - [anon_sym_LPAREN2] = ACTIONS(3624), - [anon_sym_TILDE] = ACTIONS(3624), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_AMP_AMP] = ACTIONS(3624), - [anon_sym_AMP] = ACTIONS(3622), - [anon_sym_SEMI] = ACTIONS(3624), - [anon_sym___extension__] = ACTIONS(3622), - [anon_sym_typedef] = ACTIONS(3622), - [anon_sym_virtual] = ACTIONS(3622), - [anon_sym_extern] = ACTIONS(3622), - [anon_sym___attribute__] = ACTIONS(3622), - [anon_sym___attribute] = ACTIONS(3622), - [anon_sym_using] = ACTIONS(3622), - [anon_sym_COLON_COLON] = ACTIONS(3624), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3624), - [anon_sym___declspec] = ACTIONS(3622), - [anon_sym___based] = ACTIONS(3622), - [anon_sym_RBRACE] = ACTIONS(3624), - [anon_sym_signed] = ACTIONS(3622), - [anon_sym_unsigned] = ACTIONS(3622), - [anon_sym_long] = ACTIONS(3622), - [anon_sym_short] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3622), - [anon_sym_static] = ACTIONS(3622), - [anon_sym_register] = ACTIONS(3622), - [anon_sym_inline] = ACTIONS(3622), - [anon_sym___inline] = ACTIONS(3622), - [anon_sym___inline__] = ACTIONS(3622), - [anon_sym___forceinline] = ACTIONS(3622), - [anon_sym_thread_local] = ACTIONS(3622), - [anon_sym___thread] = ACTIONS(3622), - [anon_sym_const] = ACTIONS(3622), - [anon_sym_constexpr] = ACTIONS(3622), - [anon_sym_volatile] = ACTIONS(3622), - [anon_sym_restrict] = ACTIONS(3622), - [anon_sym___restrict__] = ACTIONS(3622), - [anon_sym__Atomic] = ACTIONS(3622), - [anon_sym__Noreturn] = ACTIONS(3622), - [anon_sym_noreturn] = ACTIONS(3622), - [anon_sym__Nonnull] = ACTIONS(3622), - [anon_sym_mutable] = ACTIONS(3622), - [anon_sym_constinit] = ACTIONS(3622), - [anon_sym_consteval] = ACTIONS(3622), - [anon_sym_alignas] = ACTIONS(3622), - [anon_sym__Alignas] = ACTIONS(3622), - [sym_primitive_type] = ACTIONS(3622), - [anon_sym_enum] = ACTIONS(3622), - [anon_sym_class] = ACTIONS(3622), - [anon_sym_struct] = ACTIONS(3622), - [anon_sym_union] = ACTIONS(3622), - [anon_sym_typename] = ACTIONS(3622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3622), - [anon_sym_decltype] = ACTIONS(3622), - [anon_sym_explicit] = ACTIONS(3622), - [anon_sym_private] = ACTIONS(3622), - [anon_sym_template] = ACTIONS(3622), - [anon_sym_operator] = ACTIONS(3622), - [anon_sym_friend] = ACTIONS(3622), - [anon_sym_public] = ACTIONS(3622), - [anon_sym_protected] = ACTIONS(3622), - [anon_sym_static_assert] = ACTIONS(3622), - [anon_sym_LBRACK_COLON] = ACTIONS(3624), - }, - [STATE(3458)] = { - [sym_identifier] = ACTIONS(3658), - [aux_sym_preproc_def_token1] = ACTIONS(3658), - [aux_sym_preproc_if_token1] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3658), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3658), - [sym_preproc_directive] = ACTIONS(3658), - [anon_sym_LPAREN2] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3660), - [anon_sym_STAR] = ACTIONS(3660), - [anon_sym_AMP_AMP] = ACTIONS(3660), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym___extension__] = ACTIONS(3658), - [anon_sym_typedef] = ACTIONS(3658), - [anon_sym_virtual] = ACTIONS(3658), - [anon_sym_extern] = ACTIONS(3658), - [anon_sym___attribute__] = ACTIONS(3658), - [anon_sym___attribute] = ACTIONS(3658), - [anon_sym_using] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3660), - [anon_sym___declspec] = ACTIONS(3658), - [anon_sym___based] = ACTIONS(3658), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_signed] = ACTIONS(3658), - [anon_sym_unsigned] = ACTIONS(3658), - [anon_sym_long] = ACTIONS(3658), - [anon_sym_short] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_static] = ACTIONS(3658), - [anon_sym_register] = ACTIONS(3658), - [anon_sym_inline] = ACTIONS(3658), - [anon_sym___inline] = ACTIONS(3658), - [anon_sym___inline__] = ACTIONS(3658), - [anon_sym___forceinline] = ACTIONS(3658), - [anon_sym_thread_local] = ACTIONS(3658), - [anon_sym___thread] = ACTIONS(3658), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_constexpr] = ACTIONS(3658), - [anon_sym_volatile] = ACTIONS(3658), - [anon_sym_restrict] = ACTIONS(3658), - [anon_sym___restrict__] = ACTIONS(3658), - [anon_sym__Atomic] = ACTIONS(3658), - [anon_sym__Noreturn] = ACTIONS(3658), - [anon_sym_noreturn] = ACTIONS(3658), - [anon_sym__Nonnull] = ACTIONS(3658), - [anon_sym_mutable] = ACTIONS(3658), - [anon_sym_constinit] = ACTIONS(3658), - [anon_sym_consteval] = ACTIONS(3658), - [anon_sym_alignas] = ACTIONS(3658), - [anon_sym__Alignas] = ACTIONS(3658), - [sym_primitive_type] = ACTIONS(3658), - [anon_sym_enum] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_struct] = ACTIONS(3658), - [anon_sym_union] = ACTIONS(3658), - [anon_sym_typename] = ACTIONS(3658), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3658), - [anon_sym_decltype] = ACTIONS(3658), - [anon_sym_explicit] = ACTIONS(3658), - [anon_sym_private] = ACTIONS(3658), - [anon_sym_template] = ACTIONS(3658), - [anon_sym_operator] = ACTIONS(3658), - [anon_sym_friend] = ACTIONS(3658), - [anon_sym_public] = ACTIONS(3658), - [anon_sym_protected] = ACTIONS(3658), - [anon_sym_static_assert] = ACTIONS(3658), - [anon_sym_LBRACK_COLON] = ACTIONS(3660), - }, - [STATE(3459)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_friend] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - }, - [STATE(3460)] = { - [sym_identifier] = ACTIONS(3662), - [aux_sym_preproc_def_token1] = ACTIONS(3662), - [aux_sym_preproc_if_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3662), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3662), - [sym_preproc_directive] = ACTIONS(3662), - [anon_sym_LPAREN2] = ACTIONS(3664), - [anon_sym_TILDE] = ACTIONS(3664), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_AMP_AMP] = ACTIONS(3664), - [anon_sym_AMP] = ACTIONS(3662), - [anon_sym_SEMI] = ACTIONS(3664), - [anon_sym___extension__] = ACTIONS(3662), - [anon_sym_typedef] = ACTIONS(3662), - [anon_sym_virtual] = ACTIONS(3662), - [anon_sym_extern] = ACTIONS(3662), - [anon_sym___attribute__] = ACTIONS(3662), - [anon_sym___attribute] = ACTIONS(3662), - [anon_sym_using] = ACTIONS(3662), - [anon_sym_COLON_COLON] = ACTIONS(3664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3664), - [anon_sym___declspec] = ACTIONS(3662), - [anon_sym___based] = ACTIONS(3662), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_signed] = ACTIONS(3662), - [anon_sym_unsigned] = ACTIONS(3662), - [anon_sym_long] = ACTIONS(3662), - [anon_sym_short] = ACTIONS(3662), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_static] = ACTIONS(3662), - [anon_sym_register] = ACTIONS(3662), - [anon_sym_inline] = ACTIONS(3662), - [anon_sym___inline] = ACTIONS(3662), - [anon_sym___inline__] = ACTIONS(3662), - [anon_sym___forceinline] = ACTIONS(3662), - [anon_sym_thread_local] = ACTIONS(3662), - [anon_sym___thread] = ACTIONS(3662), - [anon_sym_const] = ACTIONS(3662), - [anon_sym_constexpr] = ACTIONS(3662), - [anon_sym_volatile] = ACTIONS(3662), - [anon_sym_restrict] = ACTIONS(3662), - [anon_sym___restrict__] = ACTIONS(3662), - [anon_sym__Atomic] = ACTIONS(3662), - [anon_sym__Noreturn] = ACTIONS(3662), - [anon_sym_noreturn] = ACTIONS(3662), - [anon_sym__Nonnull] = ACTIONS(3662), - [anon_sym_mutable] = ACTIONS(3662), - [anon_sym_constinit] = ACTIONS(3662), - [anon_sym_consteval] = ACTIONS(3662), - [anon_sym_alignas] = ACTIONS(3662), - [anon_sym__Alignas] = ACTIONS(3662), - [sym_primitive_type] = ACTIONS(3662), - [anon_sym_enum] = ACTIONS(3662), - [anon_sym_class] = ACTIONS(3662), - [anon_sym_struct] = ACTIONS(3662), - [anon_sym_union] = ACTIONS(3662), - [anon_sym_typename] = ACTIONS(3662), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3662), - [anon_sym_decltype] = ACTIONS(3662), - [anon_sym_explicit] = ACTIONS(3662), - [anon_sym_private] = ACTIONS(3662), - [anon_sym_template] = ACTIONS(3662), - [anon_sym_operator] = ACTIONS(3662), - [anon_sym_friend] = ACTIONS(3662), - [anon_sym_public] = ACTIONS(3662), - [anon_sym_protected] = ACTIONS(3662), - [anon_sym_static_assert] = ACTIONS(3662), - [anon_sym_LBRACK_COLON] = ACTIONS(3664), - }, - [STATE(3461)] = { - [sym_identifier] = ACTIONS(3678), - [aux_sym_preproc_def_token1] = ACTIONS(3678), - [aux_sym_preproc_if_token1] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3678), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3678), - [sym_preproc_directive] = ACTIONS(3678), - [anon_sym_LPAREN2] = ACTIONS(3680), - [anon_sym_TILDE] = ACTIONS(3680), - [anon_sym_STAR] = ACTIONS(3680), - [anon_sym_AMP_AMP] = ACTIONS(3680), - [anon_sym_AMP] = ACTIONS(3678), - [anon_sym_SEMI] = ACTIONS(3680), - [anon_sym___extension__] = ACTIONS(3678), - [anon_sym_typedef] = ACTIONS(3678), - [anon_sym_virtual] = ACTIONS(3678), - [anon_sym_extern] = ACTIONS(3678), - [anon_sym___attribute__] = ACTIONS(3678), - [anon_sym___attribute] = ACTIONS(3678), - [anon_sym_using] = ACTIONS(3678), - [anon_sym_COLON_COLON] = ACTIONS(3680), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3680), - [anon_sym___declspec] = ACTIONS(3678), - [anon_sym___based] = ACTIONS(3678), - [anon_sym_RBRACE] = ACTIONS(3680), - [anon_sym_signed] = ACTIONS(3678), - [anon_sym_unsigned] = ACTIONS(3678), - [anon_sym_long] = ACTIONS(3678), - [anon_sym_short] = ACTIONS(3678), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_static] = ACTIONS(3678), - [anon_sym_register] = ACTIONS(3678), - [anon_sym_inline] = ACTIONS(3678), - [anon_sym___inline] = ACTIONS(3678), - [anon_sym___inline__] = ACTIONS(3678), - [anon_sym___forceinline] = ACTIONS(3678), - [anon_sym_thread_local] = ACTIONS(3678), - [anon_sym___thread] = ACTIONS(3678), - [anon_sym_const] = ACTIONS(3678), - [anon_sym_constexpr] = ACTIONS(3678), - [anon_sym_volatile] = ACTIONS(3678), - [anon_sym_restrict] = ACTIONS(3678), - [anon_sym___restrict__] = ACTIONS(3678), - [anon_sym__Atomic] = ACTIONS(3678), - [anon_sym__Noreturn] = ACTIONS(3678), - [anon_sym_noreturn] = ACTIONS(3678), - [anon_sym__Nonnull] = ACTIONS(3678), - [anon_sym_mutable] = ACTIONS(3678), - [anon_sym_constinit] = ACTIONS(3678), - [anon_sym_consteval] = ACTIONS(3678), - [anon_sym_alignas] = ACTIONS(3678), - [anon_sym__Alignas] = ACTIONS(3678), - [sym_primitive_type] = ACTIONS(3678), - [anon_sym_enum] = ACTIONS(3678), - [anon_sym_class] = ACTIONS(3678), - [anon_sym_struct] = ACTIONS(3678), - [anon_sym_union] = ACTIONS(3678), - [anon_sym_typename] = ACTIONS(3678), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3678), - [anon_sym_decltype] = ACTIONS(3678), - [anon_sym_explicit] = ACTIONS(3678), - [anon_sym_private] = ACTIONS(3678), - [anon_sym_template] = ACTIONS(3678), - [anon_sym_operator] = ACTIONS(3678), - [anon_sym_friend] = ACTIONS(3678), - [anon_sym_public] = ACTIONS(3678), - [anon_sym_protected] = ACTIONS(3678), - [anon_sym_static_assert] = ACTIONS(3678), - [anon_sym_LBRACK_COLON] = ACTIONS(3680), - }, - [STATE(3462)] = { [sym_identifier] = ACTIONS(3917), [aux_sym_preproc_def_token1] = ACTIONS(3917), [aux_sym_preproc_if_token1] = ACTIONS(3917), - [aux_sym_preproc_if_token2] = ACTIONS(3917), [aux_sym_preproc_ifdef_token1] = ACTIONS(3917), [aux_sym_preproc_ifdef_token2] = ACTIONS(3917), [sym_preproc_directive] = ACTIONS(3917), @@ -426872,6 +425363,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(3919), [anon_sym___declspec] = ACTIONS(3917), [anon_sym___based] = ACTIONS(3917), + [anon_sym_RBRACE] = ACTIONS(3919), [anon_sym_signed] = ACTIONS(3917), [anon_sym_unsigned] = ACTIONS(3917), [anon_sym_long] = ACTIONS(3917), @@ -426918,863 +425410,1146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(3917), [anon_sym_LBRACK_COLON] = ACTIONS(3919), }, - [STATE(3463)] = { - [sym_identifier] = ACTIONS(3931), - [aux_sym_preproc_def_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token1] = ACTIONS(3931), - [aux_sym_preproc_if_token2] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3931), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3931), - [sym_preproc_directive] = ACTIONS(3931), - [anon_sym_LPAREN2] = ACTIONS(3933), - [anon_sym_TILDE] = ACTIONS(3933), - [anon_sym_STAR] = ACTIONS(3933), - [anon_sym_AMP_AMP] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(3931), - [anon_sym_SEMI] = ACTIONS(3933), - [anon_sym___extension__] = ACTIONS(3931), - [anon_sym_typedef] = ACTIONS(3931), - [anon_sym_virtual] = ACTIONS(3931), - [anon_sym_extern] = ACTIONS(3931), - [anon_sym___attribute__] = ACTIONS(3931), - [anon_sym___attribute] = ACTIONS(3931), - [anon_sym_using] = ACTIONS(3931), - [anon_sym_COLON_COLON] = ACTIONS(3933), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3933), - [anon_sym___declspec] = ACTIONS(3931), - [anon_sym___based] = ACTIONS(3931), - [anon_sym_signed] = ACTIONS(3931), - [anon_sym_unsigned] = ACTIONS(3931), - [anon_sym_long] = ACTIONS(3931), - [anon_sym_short] = ACTIONS(3931), - [anon_sym_LBRACK] = ACTIONS(3931), - [anon_sym_static] = ACTIONS(3931), - [anon_sym_register] = ACTIONS(3931), - [anon_sym_inline] = ACTIONS(3931), - [anon_sym___inline] = ACTIONS(3931), - [anon_sym___inline__] = ACTIONS(3931), - [anon_sym___forceinline] = ACTIONS(3931), - [anon_sym_thread_local] = ACTIONS(3931), - [anon_sym___thread] = ACTIONS(3931), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_constexpr] = ACTIONS(3931), - [anon_sym_volatile] = ACTIONS(3931), - [anon_sym_restrict] = ACTIONS(3931), - [anon_sym___restrict__] = ACTIONS(3931), - [anon_sym__Atomic] = ACTIONS(3931), - [anon_sym__Noreturn] = ACTIONS(3931), - [anon_sym_noreturn] = ACTIONS(3931), - [anon_sym__Nonnull] = ACTIONS(3931), - [anon_sym_mutable] = ACTIONS(3931), - [anon_sym_constinit] = ACTIONS(3931), - [anon_sym_consteval] = ACTIONS(3931), - [anon_sym_alignas] = ACTIONS(3931), - [anon_sym__Alignas] = ACTIONS(3931), - [sym_primitive_type] = ACTIONS(3931), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_class] = ACTIONS(3931), - [anon_sym_struct] = ACTIONS(3931), - [anon_sym_union] = ACTIONS(3931), - [anon_sym_typename] = ACTIONS(3931), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3931), - [anon_sym_decltype] = ACTIONS(3931), - [anon_sym_explicit] = ACTIONS(3931), - [anon_sym_private] = ACTIONS(3931), - [anon_sym_template] = ACTIONS(3931), - [anon_sym_operator] = ACTIONS(3931), - [anon_sym_friend] = ACTIONS(3931), - [anon_sym_public] = ACTIONS(3931), - [anon_sym_protected] = ACTIONS(3931), - [anon_sym_static_assert] = ACTIONS(3931), - [anon_sym_LBRACK_COLON] = ACTIONS(3933), + [STATE(3444)] = { + [sym_identifier] = ACTIONS(8804), + [aux_sym_preproc_def_token1] = ACTIONS(8804), + [aux_sym_preproc_if_token1] = ACTIONS(8804), + [aux_sym_preproc_if_token2] = ACTIONS(8804), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8804), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8804), + [sym_preproc_directive] = ACTIONS(8804), + [anon_sym_LPAREN2] = ACTIONS(8806), + [anon_sym_TILDE] = ACTIONS(8806), + [anon_sym_STAR] = ACTIONS(8806), + [anon_sym_AMP_AMP] = ACTIONS(8806), + [anon_sym_AMP] = ACTIONS(8804), + [anon_sym_SEMI] = ACTIONS(8806), + [anon_sym___extension__] = ACTIONS(8804), + [anon_sym_typedef] = ACTIONS(8804), + [anon_sym_virtual] = ACTIONS(8804), + [anon_sym_extern] = ACTIONS(8804), + [anon_sym___attribute__] = ACTIONS(8804), + [anon_sym___attribute] = ACTIONS(8804), + [anon_sym_using] = ACTIONS(8804), + [anon_sym_COLON_COLON] = ACTIONS(8806), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8806), + [anon_sym___declspec] = ACTIONS(8804), + [anon_sym___based] = ACTIONS(8804), + [anon_sym_signed] = ACTIONS(8804), + [anon_sym_unsigned] = ACTIONS(8804), + [anon_sym_long] = ACTIONS(8804), + [anon_sym_short] = ACTIONS(8804), + [anon_sym_LBRACK] = ACTIONS(8804), + [anon_sym_static] = ACTIONS(8804), + [anon_sym_register] = ACTIONS(8804), + [anon_sym_inline] = ACTIONS(8804), + [anon_sym___inline] = ACTIONS(8804), + [anon_sym___inline__] = ACTIONS(8804), + [anon_sym___forceinline] = ACTIONS(8804), + [anon_sym_thread_local] = ACTIONS(8804), + [anon_sym___thread] = ACTIONS(8804), + [anon_sym_const] = ACTIONS(8804), + [anon_sym_constexpr] = ACTIONS(8804), + [anon_sym_volatile] = ACTIONS(8804), + [anon_sym_restrict] = ACTIONS(8804), + [anon_sym___restrict__] = ACTIONS(8804), + [anon_sym__Atomic] = ACTIONS(8804), + [anon_sym__Noreturn] = ACTIONS(8804), + [anon_sym_noreturn] = ACTIONS(8804), + [anon_sym__Nonnull] = ACTIONS(8804), + [anon_sym_mutable] = ACTIONS(8804), + [anon_sym_constinit] = ACTIONS(8804), + [anon_sym_consteval] = ACTIONS(8804), + [anon_sym_alignas] = ACTIONS(8804), + [anon_sym__Alignas] = ACTIONS(8804), + [sym_primitive_type] = ACTIONS(8804), + [anon_sym_enum] = ACTIONS(8804), + [anon_sym_class] = ACTIONS(8804), + [anon_sym_struct] = ACTIONS(8804), + [anon_sym_union] = ACTIONS(8804), + [anon_sym_typename] = ACTIONS(8804), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8804), + [anon_sym_decltype] = ACTIONS(8804), + [anon_sym_explicit] = ACTIONS(8804), + [anon_sym_private] = ACTIONS(8804), + [anon_sym_template] = ACTIONS(8804), + [anon_sym_operator] = ACTIONS(8804), + [anon_sym_friend] = ACTIONS(8804), + [anon_sym_public] = ACTIONS(8804), + [anon_sym_protected] = ACTIONS(8804), + [anon_sym_static_assert] = ACTIONS(8804), + [anon_sym_LBRACK_COLON] = ACTIONS(8806), }, - [STATE(3464)] = { - [sym_identifier] = ACTIONS(3950), - [aux_sym_preproc_def_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token1] = ACTIONS(3950), - [aux_sym_preproc_if_token2] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3950), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3950), - [sym_preproc_directive] = ACTIONS(3950), - [anon_sym_LPAREN2] = ACTIONS(3952), - [anon_sym_TILDE] = ACTIONS(3952), - [anon_sym_STAR] = ACTIONS(3952), - [anon_sym_AMP_AMP] = ACTIONS(3952), - [anon_sym_AMP] = ACTIONS(3950), - [anon_sym_SEMI] = ACTIONS(3952), - [anon_sym___extension__] = ACTIONS(3950), - [anon_sym_typedef] = ACTIONS(3950), - [anon_sym_virtual] = ACTIONS(3950), - [anon_sym_extern] = ACTIONS(3950), - [anon_sym___attribute__] = ACTIONS(3950), - [anon_sym___attribute] = ACTIONS(3950), - [anon_sym_using] = ACTIONS(3950), - [anon_sym_COLON_COLON] = ACTIONS(3952), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3952), - [anon_sym___declspec] = ACTIONS(3950), - [anon_sym___based] = ACTIONS(3950), - [anon_sym_signed] = ACTIONS(3950), - [anon_sym_unsigned] = ACTIONS(3950), - [anon_sym_long] = ACTIONS(3950), - [anon_sym_short] = ACTIONS(3950), - [anon_sym_LBRACK] = ACTIONS(3950), - [anon_sym_static] = ACTIONS(3950), - [anon_sym_register] = ACTIONS(3950), - [anon_sym_inline] = ACTIONS(3950), - [anon_sym___inline] = ACTIONS(3950), - [anon_sym___inline__] = ACTIONS(3950), - [anon_sym___forceinline] = ACTIONS(3950), - [anon_sym_thread_local] = ACTIONS(3950), - [anon_sym___thread] = ACTIONS(3950), - [anon_sym_const] = ACTIONS(3950), - [anon_sym_constexpr] = ACTIONS(3950), - [anon_sym_volatile] = ACTIONS(3950), - [anon_sym_restrict] = ACTIONS(3950), - [anon_sym___restrict__] = ACTIONS(3950), - [anon_sym__Atomic] = ACTIONS(3950), - [anon_sym__Noreturn] = ACTIONS(3950), - [anon_sym_noreturn] = ACTIONS(3950), - [anon_sym__Nonnull] = ACTIONS(3950), - [anon_sym_mutable] = ACTIONS(3950), - [anon_sym_constinit] = ACTIONS(3950), - [anon_sym_consteval] = ACTIONS(3950), - [anon_sym_alignas] = ACTIONS(3950), - [anon_sym__Alignas] = ACTIONS(3950), - [sym_primitive_type] = ACTIONS(3950), - [anon_sym_enum] = ACTIONS(3950), - [anon_sym_class] = ACTIONS(3950), - [anon_sym_struct] = ACTIONS(3950), - [anon_sym_union] = ACTIONS(3950), - [anon_sym_typename] = ACTIONS(3950), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3950), - [anon_sym_decltype] = ACTIONS(3950), - [anon_sym_explicit] = ACTIONS(3950), - [anon_sym_private] = ACTIONS(3950), - [anon_sym_template] = ACTIONS(3950), - [anon_sym_operator] = ACTIONS(3950), - [anon_sym_friend] = ACTIONS(3950), - [anon_sym_public] = ACTIONS(3950), - [anon_sym_protected] = ACTIONS(3950), - [anon_sym_static_assert] = ACTIONS(3950), - [anon_sym_LBRACK_COLON] = ACTIONS(3952), + [STATE(3445)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3255), + [sym_identifier] = ACTIONS(7684), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7686), + [anon_sym_COMMA] = ACTIONS(7686), + [aux_sym_preproc_if_token2] = ACTIONS(7686), + [aux_sym_preproc_else_token1] = ACTIONS(7686), + [aux_sym_preproc_elif_token1] = ACTIONS(7684), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7686), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7686), + [anon_sym_LPAREN2] = ACTIONS(7686), + [anon_sym_DASH] = ACTIONS(7684), + [anon_sym_PLUS] = ACTIONS(7684), + [anon_sym_STAR] = ACTIONS(7686), + [anon_sym_SLASH] = ACTIONS(7684), + [anon_sym_PERCENT] = ACTIONS(7686), + [anon_sym_PIPE_PIPE] = ACTIONS(7686), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_PIPE] = ACTIONS(7684), + [anon_sym_CARET] = ACTIONS(7686), + [anon_sym_AMP] = ACTIONS(7684), + [anon_sym_EQ_EQ] = ACTIONS(7686), + [anon_sym_BANG_EQ] = ACTIONS(7686), + [anon_sym_GT] = ACTIONS(7684), + [anon_sym_GT_EQ] = ACTIONS(7686), + [anon_sym_LT_EQ] = ACTIONS(7684), + [anon_sym_LT] = ACTIONS(7684), + [anon_sym_LT_LT] = ACTIONS(7686), + [anon_sym_GT_GT] = ACTIONS(7686), + [anon_sym___extension__] = ACTIONS(7684), + [anon_sym___attribute__] = ACTIONS(7684), + [anon_sym___attribute] = ACTIONS(7684), + [anon_sym_LBRACE] = ACTIONS(7686), + [anon_sym_signed] = ACTIONS(9125), + [anon_sym_unsigned] = ACTIONS(9125), + [anon_sym_long] = ACTIONS(9125), + [anon_sym_short] = ACTIONS(9125), + [anon_sym_LBRACK] = ACTIONS(7686), + [anon_sym_RBRACK] = ACTIONS(7686), + [anon_sym_const] = ACTIONS(7684), + [anon_sym_constexpr] = ACTIONS(7684), + [anon_sym_volatile] = ACTIONS(7684), + [anon_sym_restrict] = ACTIONS(7684), + [anon_sym___restrict__] = ACTIONS(7684), + [anon_sym__Atomic] = ACTIONS(7684), + [anon_sym__Noreturn] = ACTIONS(7684), + [anon_sym_noreturn] = ACTIONS(7684), + [anon_sym__Nonnull] = ACTIONS(7684), + [anon_sym_mutable] = ACTIONS(7684), + [anon_sym_constinit] = ACTIONS(7684), + [anon_sym_consteval] = ACTIONS(7684), + [anon_sym_alignas] = ACTIONS(7684), + [anon_sym__Alignas] = ACTIONS(7684), + [anon_sym_QMARK] = ACTIONS(7686), + [anon_sym_LT_EQ_GT] = ACTIONS(7686), + [anon_sym_or] = ACTIONS(7684), + [anon_sym_and] = ACTIONS(7684), + [anon_sym_bitor] = ACTIONS(7684), + [anon_sym_xor] = ACTIONS(7684), + [anon_sym_bitand] = ACTIONS(7684), + [anon_sym_not_eq] = ACTIONS(7684), + [anon_sym_DASH_DASH] = ACTIONS(7686), + [anon_sym_PLUS_PLUS] = ACTIONS(7686), + [anon_sym_DOT] = ACTIONS(7684), + [anon_sym_DOT_STAR] = ACTIONS(7686), + [anon_sym_DASH_GT] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7684), + [anon_sym_override] = ACTIONS(7684), + [anon_sym_requires] = ACTIONS(7684), }, - [STATE(3465)] = { - [sym_identifier] = ACTIONS(3962), - [aux_sym_preproc_def_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token1] = ACTIONS(3962), - [aux_sym_preproc_if_token2] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3962), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3962), - [sym_preproc_directive] = ACTIONS(3962), - [anon_sym_LPAREN2] = ACTIONS(3964), - [anon_sym_TILDE] = ACTIONS(3964), - [anon_sym_STAR] = ACTIONS(3964), - [anon_sym_AMP_AMP] = ACTIONS(3964), - [anon_sym_AMP] = ACTIONS(3962), - [anon_sym_SEMI] = ACTIONS(3964), - [anon_sym___extension__] = ACTIONS(3962), - [anon_sym_typedef] = ACTIONS(3962), - [anon_sym_virtual] = ACTIONS(3962), - [anon_sym_extern] = ACTIONS(3962), - [anon_sym___attribute__] = ACTIONS(3962), - [anon_sym___attribute] = ACTIONS(3962), - [anon_sym_using] = ACTIONS(3962), - [anon_sym_COLON_COLON] = ACTIONS(3964), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3964), - [anon_sym___declspec] = ACTIONS(3962), - [anon_sym___based] = ACTIONS(3962), - [anon_sym_signed] = ACTIONS(3962), - [anon_sym_unsigned] = ACTIONS(3962), - [anon_sym_long] = ACTIONS(3962), - [anon_sym_short] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3962), - [anon_sym_static] = ACTIONS(3962), - [anon_sym_register] = ACTIONS(3962), - [anon_sym_inline] = ACTIONS(3962), - [anon_sym___inline] = ACTIONS(3962), - [anon_sym___inline__] = ACTIONS(3962), - [anon_sym___forceinline] = ACTIONS(3962), - [anon_sym_thread_local] = ACTIONS(3962), - [anon_sym___thread] = ACTIONS(3962), - [anon_sym_const] = ACTIONS(3962), - [anon_sym_constexpr] = ACTIONS(3962), - [anon_sym_volatile] = ACTIONS(3962), - [anon_sym_restrict] = ACTIONS(3962), - [anon_sym___restrict__] = ACTIONS(3962), - [anon_sym__Atomic] = ACTIONS(3962), - [anon_sym__Noreturn] = ACTIONS(3962), - [anon_sym_noreturn] = ACTIONS(3962), - [anon_sym__Nonnull] = ACTIONS(3962), - [anon_sym_mutable] = ACTIONS(3962), - [anon_sym_constinit] = ACTIONS(3962), - [anon_sym_consteval] = ACTIONS(3962), - [anon_sym_alignas] = ACTIONS(3962), - [anon_sym__Alignas] = ACTIONS(3962), - [sym_primitive_type] = ACTIONS(3962), - [anon_sym_enum] = ACTIONS(3962), - [anon_sym_class] = ACTIONS(3962), - [anon_sym_struct] = ACTIONS(3962), - [anon_sym_union] = ACTIONS(3962), - [anon_sym_typename] = ACTIONS(3962), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3962), - [anon_sym_decltype] = ACTIONS(3962), - [anon_sym_explicit] = ACTIONS(3962), - [anon_sym_private] = ACTIONS(3962), - [anon_sym_template] = ACTIONS(3962), - [anon_sym_operator] = ACTIONS(3962), - [anon_sym_friend] = ACTIONS(3962), - [anon_sym_public] = ACTIONS(3962), - [anon_sym_protected] = ACTIONS(3962), - [anon_sym_static_assert] = ACTIONS(3962), - [anon_sym_LBRACK_COLON] = ACTIONS(3964), + [STATE(3446)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token2] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_friend] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), }, - [STATE(3466)] = { - [sym_identifier] = ACTIONS(3984), - [aux_sym_preproc_def_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token1] = ACTIONS(3984), - [aux_sym_preproc_if_token2] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3984), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3984), - [sym_preproc_directive] = ACTIONS(3984), - [anon_sym_LPAREN2] = ACTIONS(3986), - [anon_sym_TILDE] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3986), - [anon_sym_AMP_AMP] = ACTIONS(3986), - [anon_sym_AMP] = ACTIONS(3984), - [anon_sym_SEMI] = ACTIONS(3986), - [anon_sym___extension__] = ACTIONS(3984), - [anon_sym_typedef] = ACTIONS(3984), - [anon_sym_virtual] = ACTIONS(3984), - [anon_sym_extern] = ACTIONS(3984), - [anon_sym___attribute__] = ACTIONS(3984), - [anon_sym___attribute] = ACTIONS(3984), - [anon_sym_using] = ACTIONS(3984), - [anon_sym_COLON_COLON] = ACTIONS(3986), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3986), - [anon_sym___declspec] = ACTIONS(3984), - [anon_sym___based] = ACTIONS(3984), - [anon_sym_signed] = ACTIONS(3984), - [anon_sym_unsigned] = ACTIONS(3984), - [anon_sym_long] = ACTIONS(3984), - [anon_sym_short] = ACTIONS(3984), - [anon_sym_LBRACK] = ACTIONS(3984), - [anon_sym_static] = ACTIONS(3984), - [anon_sym_register] = ACTIONS(3984), - [anon_sym_inline] = ACTIONS(3984), - [anon_sym___inline] = ACTIONS(3984), - [anon_sym___inline__] = ACTIONS(3984), - [anon_sym___forceinline] = ACTIONS(3984), - [anon_sym_thread_local] = ACTIONS(3984), - [anon_sym___thread] = ACTIONS(3984), - [anon_sym_const] = ACTIONS(3984), - [anon_sym_constexpr] = ACTIONS(3984), - [anon_sym_volatile] = ACTIONS(3984), - [anon_sym_restrict] = ACTIONS(3984), - [anon_sym___restrict__] = ACTIONS(3984), - [anon_sym__Atomic] = ACTIONS(3984), - [anon_sym__Noreturn] = ACTIONS(3984), - [anon_sym_noreturn] = ACTIONS(3984), - [anon_sym__Nonnull] = ACTIONS(3984), - [anon_sym_mutable] = ACTIONS(3984), - [anon_sym_constinit] = ACTIONS(3984), - [anon_sym_consteval] = ACTIONS(3984), - [anon_sym_alignas] = ACTIONS(3984), - [anon_sym__Alignas] = ACTIONS(3984), - [sym_primitive_type] = ACTIONS(3984), - [anon_sym_enum] = ACTIONS(3984), - [anon_sym_class] = ACTIONS(3984), - [anon_sym_struct] = ACTIONS(3984), - [anon_sym_union] = ACTIONS(3984), - [anon_sym_typename] = ACTIONS(3984), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3984), - [anon_sym_decltype] = ACTIONS(3984), - [anon_sym_explicit] = ACTIONS(3984), - [anon_sym_private] = ACTIONS(3984), - [anon_sym_template] = ACTIONS(3984), - [anon_sym_operator] = ACTIONS(3984), - [anon_sym_friend] = ACTIONS(3984), - [anon_sym_public] = ACTIONS(3984), - [anon_sym_protected] = ACTIONS(3984), - [anon_sym_static_assert] = ACTIONS(3984), - [anon_sym_LBRACK_COLON] = ACTIONS(3986), + [STATE(3447)] = { + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym__function_attributes_end] = STATE(4625), + [sym__function_postfix] = STATE(5619), + [sym_trailing_return_type] = STATE(4750), + [sym_requires_clause] = STATE(5619), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7874), + [anon_sym_and] = ACTIONS(7874), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7874), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8541), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8544), + [anon_sym_override] = ACTIONS(8544), + [anon_sym_requires] = ACTIONS(8547), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), }, - [STATE(3467)] = { - [sym_identifier] = ACTIONS(3988), - [aux_sym_preproc_def_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token1] = ACTIONS(3988), - [aux_sym_preproc_if_token2] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3988), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3988), - [sym_preproc_directive] = ACTIONS(3988), - [anon_sym_LPAREN2] = ACTIONS(3990), - [anon_sym_TILDE] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3990), - [anon_sym_AMP_AMP] = ACTIONS(3990), - [anon_sym_AMP] = ACTIONS(3988), - [anon_sym_SEMI] = ACTIONS(3990), - [anon_sym___extension__] = ACTIONS(3988), - [anon_sym_typedef] = ACTIONS(3988), - [anon_sym_virtual] = ACTIONS(3988), - [anon_sym_extern] = ACTIONS(3988), - [anon_sym___attribute__] = ACTIONS(3988), - [anon_sym___attribute] = ACTIONS(3988), - [anon_sym_using] = ACTIONS(3988), - [anon_sym_COLON_COLON] = ACTIONS(3990), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3990), - [anon_sym___declspec] = ACTIONS(3988), - [anon_sym___based] = ACTIONS(3988), - [anon_sym_signed] = ACTIONS(3988), - [anon_sym_unsigned] = ACTIONS(3988), - [anon_sym_long] = ACTIONS(3988), - [anon_sym_short] = ACTIONS(3988), - [anon_sym_LBRACK] = ACTIONS(3988), - [anon_sym_static] = ACTIONS(3988), - [anon_sym_register] = ACTIONS(3988), - [anon_sym_inline] = ACTIONS(3988), - [anon_sym___inline] = ACTIONS(3988), - [anon_sym___inline__] = ACTIONS(3988), - [anon_sym___forceinline] = ACTIONS(3988), - [anon_sym_thread_local] = ACTIONS(3988), - [anon_sym___thread] = ACTIONS(3988), - [anon_sym_const] = ACTIONS(3988), - [anon_sym_constexpr] = ACTIONS(3988), - [anon_sym_volatile] = ACTIONS(3988), - [anon_sym_restrict] = ACTIONS(3988), - [anon_sym___restrict__] = ACTIONS(3988), - [anon_sym__Atomic] = ACTIONS(3988), - [anon_sym__Noreturn] = ACTIONS(3988), - [anon_sym_noreturn] = ACTIONS(3988), - [anon_sym__Nonnull] = ACTIONS(3988), - [anon_sym_mutable] = ACTIONS(3988), - [anon_sym_constinit] = ACTIONS(3988), - [anon_sym_consteval] = ACTIONS(3988), - [anon_sym_alignas] = ACTIONS(3988), - [anon_sym__Alignas] = ACTIONS(3988), - [sym_primitive_type] = ACTIONS(3988), - [anon_sym_enum] = ACTIONS(3988), - [anon_sym_class] = ACTIONS(3988), - [anon_sym_struct] = ACTIONS(3988), - [anon_sym_union] = ACTIONS(3988), - [anon_sym_typename] = ACTIONS(3988), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3988), - [anon_sym_decltype] = ACTIONS(3988), - [anon_sym_explicit] = ACTIONS(3988), - [anon_sym_private] = ACTIONS(3988), - [anon_sym_template] = ACTIONS(3988), - [anon_sym_operator] = ACTIONS(3988), - [anon_sym_friend] = ACTIONS(3988), - [anon_sym_public] = ACTIONS(3988), - [anon_sym_protected] = ACTIONS(3988), - [anon_sym_static_assert] = ACTIONS(3988), - [anon_sym_LBRACK_COLON] = ACTIONS(3990), + [STATE(3448)] = { + [sym_identifier] = ACTIONS(3640), + [aux_sym_preproc_def_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token1] = ACTIONS(3640), + [aux_sym_preproc_if_token2] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3640), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3640), + [sym_preproc_directive] = ACTIONS(3640), + [anon_sym_LPAREN2] = ACTIONS(3642), + [anon_sym_TILDE] = ACTIONS(3642), + [anon_sym_STAR] = ACTIONS(3642), + [anon_sym_AMP_AMP] = ACTIONS(3642), + [anon_sym_AMP] = ACTIONS(3640), + [anon_sym_SEMI] = ACTIONS(3642), + [anon_sym___extension__] = ACTIONS(3640), + [anon_sym_typedef] = ACTIONS(3640), + [anon_sym_virtual] = ACTIONS(3640), + [anon_sym_extern] = ACTIONS(3640), + [anon_sym___attribute__] = ACTIONS(3640), + [anon_sym___attribute] = ACTIONS(3640), + [anon_sym_using] = ACTIONS(3640), + [anon_sym_COLON_COLON] = ACTIONS(3642), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3642), + [anon_sym___declspec] = ACTIONS(3640), + [anon_sym___based] = ACTIONS(3640), + [anon_sym_signed] = ACTIONS(3640), + [anon_sym_unsigned] = ACTIONS(3640), + [anon_sym_long] = ACTIONS(3640), + [anon_sym_short] = ACTIONS(3640), + [anon_sym_LBRACK] = ACTIONS(3640), + [anon_sym_static] = ACTIONS(3640), + [anon_sym_register] = ACTIONS(3640), + [anon_sym_inline] = ACTIONS(3640), + [anon_sym___inline] = ACTIONS(3640), + [anon_sym___inline__] = ACTIONS(3640), + [anon_sym___forceinline] = ACTIONS(3640), + [anon_sym_thread_local] = ACTIONS(3640), + [anon_sym___thread] = ACTIONS(3640), + [anon_sym_const] = ACTIONS(3640), + [anon_sym_constexpr] = ACTIONS(3640), + [anon_sym_volatile] = ACTIONS(3640), + [anon_sym_restrict] = ACTIONS(3640), + [anon_sym___restrict__] = ACTIONS(3640), + [anon_sym__Atomic] = ACTIONS(3640), + [anon_sym__Noreturn] = ACTIONS(3640), + [anon_sym_noreturn] = ACTIONS(3640), + [anon_sym__Nonnull] = ACTIONS(3640), + [anon_sym_mutable] = ACTIONS(3640), + [anon_sym_constinit] = ACTIONS(3640), + [anon_sym_consteval] = ACTIONS(3640), + [anon_sym_alignas] = ACTIONS(3640), + [anon_sym__Alignas] = ACTIONS(3640), + [sym_primitive_type] = ACTIONS(3640), + [anon_sym_enum] = ACTIONS(3640), + [anon_sym_class] = ACTIONS(3640), + [anon_sym_struct] = ACTIONS(3640), + [anon_sym_union] = ACTIONS(3640), + [anon_sym_typename] = ACTIONS(3640), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3640), + [anon_sym_decltype] = ACTIONS(3640), + [anon_sym_explicit] = ACTIONS(3640), + [anon_sym_private] = ACTIONS(3640), + [anon_sym_template] = ACTIONS(3640), + [anon_sym_operator] = ACTIONS(3640), + [anon_sym_friend] = ACTIONS(3640), + [anon_sym_public] = ACTIONS(3640), + [anon_sym_protected] = ACTIONS(3640), + [anon_sym_static_assert] = ACTIONS(3640), + [anon_sym_LBRACK_COLON] = ACTIONS(3642), }, - [STATE(3468)] = { - [sym_identifier] = ACTIONS(3992), - [aux_sym_preproc_def_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token1] = ACTIONS(3992), - [aux_sym_preproc_if_token2] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token1] = ACTIONS(3992), - [aux_sym_preproc_ifdef_token2] = ACTIONS(3992), - [sym_preproc_directive] = ACTIONS(3992), - [anon_sym_LPAREN2] = ACTIONS(3994), - [anon_sym_TILDE] = ACTIONS(3994), - [anon_sym_STAR] = ACTIONS(3994), - [anon_sym_AMP_AMP] = ACTIONS(3994), - [anon_sym_AMP] = ACTIONS(3992), - [anon_sym_SEMI] = ACTIONS(3994), - [anon_sym___extension__] = ACTIONS(3992), - [anon_sym_typedef] = ACTIONS(3992), - [anon_sym_virtual] = ACTIONS(3992), - [anon_sym_extern] = ACTIONS(3992), - [anon_sym___attribute__] = ACTIONS(3992), - [anon_sym___attribute] = ACTIONS(3992), - [anon_sym_using] = ACTIONS(3992), - [anon_sym_COLON_COLON] = ACTIONS(3994), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3994), - [anon_sym___declspec] = ACTIONS(3992), - [anon_sym___based] = ACTIONS(3992), - [anon_sym_signed] = ACTIONS(3992), - [anon_sym_unsigned] = ACTIONS(3992), - [anon_sym_long] = ACTIONS(3992), - [anon_sym_short] = ACTIONS(3992), - [anon_sym_LBRACK] = ACTIONS(3992), - [anon_sym_static] = ACTIONS(3992), - [anon_sym_register] = ACTIONS(3992), - [anon_sym_inline] = ACTIONS(3992), - [anon_sym___inline] = ACTIONS(3992), - [anon_sym___inline__] = ACTIONS(3992), - [anon_sym___forceinline] = ACTIONS(3992), - [anon_sym_thread_local] = ACTIONS(3992), - [anon_sym___thread] = ACTIONS(3992), - [anon_sym_const] = ACTIONS(3992), - [anon_sym_constexpr] = ACTIONS(3992), - [anon_sym_volatile] = ACTIONS(3992), - [anon_sym_restrict] = ACTIONS(3992), - [anon_sym___restrict__] = ACTIONS(3992), - [anon_sym__Atomic] = ACTIONS(3992), - [anon_sym__Noreturn] = ACTIONS(3992), - [anon_sym_noreturn] = ACTIONS(3992), - [anon_sym__Nonnull] = ACTIONS(3992), - [anon_sym_mutable] = ACTIONS(3992), - [anon_sym_constinit] = ACTIONS(3992), - [anon_sym_consteval] = ACTIONS(3992), - [anon_sym_alignas] = ACTIONS(3992), - [anon_sym__Alignas] = ACTIONS(3992), - [sym_primitive_type] = ACTIONS(3992), - [anon_sym_enum] = ACTIONS(3992), - [anon_sym_class] = ACTIONS(3992), - [anon_sym_struct] = ACTIONS(3992), - [anon_sym_union] = ACTIONS(3992), - [anon_sym_typename] = ACTIONS(3992), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3992), - [anon_sym_decltype] = ACTIONS(3992), - [anon_sym_explicit] = ACTIONS(3992), - [anon_sym_private] = ACTIONS(3992), - [anon_sym_template] = ACTIONS(3992), - [anon_sym_operator] = ACTIONS(3992), - [anon_sym_friend] = ACTIONS(3992), - [anon_sym_public] = ACTIONS(3992), - [anon_sym_protected] = ACTIONS(3992), - [anon_sym_static_assert] = ACTIONS(3992), - [anon_sym_LBRACK_COLON] = ACTIONS(3994), + [STATE(3449)] = { + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_friend] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), }, - [STATE(3469)] = { - [sym_identifier] = ACTIONS(4000), - [aux_sym_preproc_def_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token1] = ACTIONS(4000), - [aux_sym_preproc_if_token2] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4000), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4000), - [sym_preproc_directive] = ACTIONS(4000), - [anon_sym_LPAREN2] = ACTIONS(4002), - [anon_sym_TILDE] = ACTIONS(4002), - [anon_sym_STAR] = ACTIONS(4002), - [anon_sym_AMP_AMP] = ACTIONS(4002), - [anon_sym_AMP] = ACTIONS(4000), - [anon_sym_SEMI] = ACTIONS(4002), - [anon_sym___extension__] = ACTIONS(4000), - [anon_sym_typedef] = ACTIONS(4000), - [anon_sym_virtual] = ACTIONS(4000), - [anon_sym_extern] = ACTIONS(4000), - [anon_sym___attribute__] = ACTIONS(4000), - [anon_sym___attribute] = ACTIONS(4000), - [anon_sym_using] = ACTIONS(4000), - [anon_sym_COLON_COLON] = ACTIONS(4002), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4002), - [anon_sym___declspec] = ACTIONS(4000), - [anon_sym___based] = ACTIONS(4000), - [anon_sym_signed] = ACTIONS(4000), - [anon_sym_unsigned] = ACTIONS(4000), - [anon_sym_long] = ACTIONS(4000), - [anon_sym_short] = ACTIONS(4000), - [anon_sym_LBRACK] = ACTIONS(4000), - [anon_sym_static] = ACTIONS(4000), - [anon_sym_register] = ACTIONS(4000), - [anon_sym_inline] = ACTIONS(4000), - [anon_sym___inline] = ACTIONS(4000), - [anon_sym___inline__] = ACTIONS(4000), - [anon_sym___forceinline] = ACTIONS(4000), - [anon_sym_thread_local] = ACTIONS(4000), - [anon_sym___thread] = ACTIONS(4000), - [anon_sym_const] = ACTIONS(4000), - [anon_sym_constexpr] = ACTIONS(4000), - [anon_sym_volatile] = ACTIONS(4000), - [anon_sym_restrict] = ACTIONS(4000), - [anon_sym___restrict__] = ACTIONS(4000), - [anon_sym__Atomic] = ACTIONS(4000), - [anon_sym__Noreturn] = ACTIONS(4000), - [anon_sym_noreturn] = ACTIONS(4000), - [anon_sym__Nonnull] = ACTIONS(4000), - [anon_sym_mutable] = ACTIONS(4000), - [anon_sym_constinit] = ACTIONS(4000), - [anon_sym_consteval] = ACTIONS(4000), - [anon_sym_alignas] = ACTIONS(4000), - [anon_sym__Alignas] = ACTIONS(4000), - [sym_primitive_type] = ACTIONS(4000), - [anon_sym_enum] = ACTIONS(4000), - [anon_sym_class] = ACTIONS(4000), - [anon_sym_struct] = ACTIONS(4000), - [anon_sym_union] = ACTIONS(4000), - [anon_sym_typename] = ACTIONS(4000), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4000), - [anon_sym_decltype] = ACTIONS(4000), - [anon_sym_explicit] = ACTIONS(4000), - [anon_sym_private] = ACTIONS(4000), - [anon_sym_template] = ACTIONS(4000), - [anon_sym_operator] = ACTIONS(4000), - [anon_sym_friend] = ACTIONS(4000), - [anon_sym_public] = ACTIONS(4000), - [anon_sym_protected] = ACTIONS(4000), - [anon_sym_static_assert] = ACTIONS(4000), - [anon_sym_LBRACK_COLON] = ACTIONS(4002), + [STATE(3450)] = { + [sym_identifier] = ACTIONS(4271), + [aux_sym_preproc_def_token1] = ACTIONS(4271), + [aux_sym_preproc_if_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4271), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4271), + [sym_preproc_directive] = ACTIONS(4271), + [anon_sym_LPAREN2] = ACTIONS(4273), + [anon_sym_TILDE] = ACTIONS(4273), + [anon_sym_STAR] = ACTIONS(4273), + [anon_sym_AMP_AMP] = ACTIONS(4273), + [anon_sym_AMP] = ACTIONS(4271), + [anon_sym_SEMI] = ACTIONS(4273), + [anon_sym___extension__] = ACTIONS(4271), + [anon_sym_typedef] = ACTIONS(4271), + [anon_sym_virtual] = ACTIONS(4271), + [anon_sym_extern] = ACTIONS(4271), + [anon_sym___attribute__] = ACTIONS(4271), + [anon_sym___attribute] = ACTIONS(4271), + [anon_sym_using] = ACTIONS(4271), + [anon_sym_COLON_COLON] = ACTIONS(4273), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4273), + [anon_sym___declspec] = ACTIONS(4271), + [anon_sym___based] = ACTIONS(4271), + [anon_sym_RBRACE] = ACTIONS(4273), + [anon_sym_signed] = ACTIONS(4271), + [anon_sym_unsigned] = ACTIONS(4271), + [anon_sym_long] = ACTIONS(4271), + [anon_sym_short] = ACTIONS(4271), + [anon_sym_LBRACK] = ACTIONS(4271), + [anon_sym_static] = ACTIONS(4271), + [anon_sym_register] = ACTIONS(4271), + [anon_sym_inline] = ACTIONS(4271), + [anon_sym___inline] = ACTIONS(4271), + [anon_sym___inline__] = ACTIONS(4271), + [anon_sym___forceinline] = ACTIONS(4271), + [anon_sym_thread_local] = ACTIONS(4271), + [anon_sym___thread] = ACTIONS(4271), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym___restrict__] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym__Noreturn] = ACTIONS(4271), + [anon_sym_noreturn] = ACTIONS(4271), + [anon_sym__Nonnull] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_constinit] = ACTIONS(4271), + [anon_sym_consteval] = ACTIONS(4271), + [anon_sym_alignas] = ACTIONS(4271), + [anon_sym__Alignas] = ACTIONS(4271), + [sym_primitive_type] = ACTIONS(4271), + [anon_sym_enum] = ACTIONS(4271), + [anon_sym_class] = ACTIONS(4271), + [anon_sym_struct] = ACTIONS(4271), + [anon_sym_union] = ACTIONS(4271), + [anon_sym_typename] = ACTIONS(4271), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4271), + [anon_sym_decltype] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_private] = ACTIONS(4271), + [anon_sym_template] = ACTIONS(4271), + [anon_sym_operator] = ACTIONS(4271), + [anon_sym_friend] = ACTIONS(4271), + [anon_sym_public] = ACTIONS(4271), + [anon_sym_protected] = ACTIONS(4271), + [anon_sym_static_assert] = ACTIONS(4271), + [anon_sym_LBRACK_COLON] = ACTIONS(4273), }, - [STATE(3470)] = { - [sym_identifier] = ACTIONS(4004), - [aux_sym_preproc_def_token1] = ACTIONS(4004), - [aux_sym_preproc_if_token1] = ACTIONS(4004), - [aux_sym_preproc_if_token2] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4004), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4004), - [sym_preproc_directive] = ACTIONS(4004), - [anon_sym_LPAREN2] = ACTIONS(4006), - [anon_sym_TILDE] = ACTIONS(4006), - [anon_sym_STAR] = ACTIONS(4006), - [anon_sym_AMP_AMP] = ACTIONS(4006), - [anon_sym_AMP] = ACTIONS(4004), - [anon_sym_SEMI] = ACTIONS(4006), - [anon_sym___extension__] = ACTIONS(4004), - [anon_sym_typedef] = ACTIONS(4004), - [anon_sym_virtual] = ACTIONS(4004), - [anon_sym_extern] = ACTIONS(4004), - [anon_sym___attribute__] = ACTIONS(4004), - [anon_sym___attribute] = ACTIONS(4004), - [anon_sym_using] = ACTIONS(4004), - [anon_sym_COLON_COLON] = ACTIONS(4006), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4006), - [anon_sym___declspec] = ACTIONS(4004), - [anon_sym___based] = ACTIONS(4004), - [anon_sym_signed] = ACTIONS(4004), - [anon_sym_unsigned] = ACTIONS(4004), - [anon_sym_long] = ACTIONS(4004), - [anon_sym_short] = ACTIONS(4004), - [anon_sym_LBRACK] = ACTIONS(4004), - [anon_sym_static] = ACTIONS(4004), - [anon_sym_register] = ACTIONS(4004), - [anon_sym_inline] = ACTIONS(4004), - [anon_sym___inline] = ACTIONS(4004), - [anon_sym___inline__] = ACTIONS(4004), - [anon_sym___forceinline] = ACTIONS(4004), - [anon_sym_thread_local] = ACTIONS(4004), - [anon_sym___thread] = ACTIONS(4004), - [anon_sym_const] = ACTIONS(4004), - [anon_sym_constexpr] = ACTIONS(4004), - [anon_sym_volatile] = ACTIONS(4004), - [anon_sym_restrict] = ACTIONS(4004), - [anon_sym___restrict__] = ACTIONS(4004), - [anon_sym__Atomic] = ACTIONS(4004), - [anon_sym__Noreturn] = ACTIONS(4004), - [anon_sym_noreturn] = ACTIONS(4004), - [anon_sym__Nonnull] = ACTIONS(4004), - [anon_sym_mutable] = ACTIONS(4004), - [anon_sym_constinit] = ACTIONS(4004), - [anon_sym_consteval] = ACTIONS(4004), - [anon_sym_alignas] = ACTIONS(4004), - [anon_sym__Alignas] = ACTIONS(4004), - [sym_primitive_type] = ACTIONS(4004), - [anon_sym_enum] = ACTIONS(4004), - [anon_sym_class] = ACTIONS(4004), - [anon_sym_struct] = ACTIONS(4004), - [anon_sym_union] = ACTIONS(4004), - [anon_sym_typename] = ACTIONS(4004), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4004), - [anon_sym_decltype] = ACTIONS(4004), - [anon_sym_explicit] = ACTIONS(4004), - [anon_sym_private] = ACTIONS(4004), - [anon_sym_template] = ACTIONS(4004), - [anon_sym_operator] = ACTIONS(4004), - [anon_sym_friend] = ACTIONS(4004), - [anon_sym_public] = ACTIONS(4004), - [anon_sym_protected] = ACTIONS(4004), - [anon_sym_static_assert] = ACTIONS(4004), - [anon_sym_LBRACK_COLON] = ACTIONS(4006), + [STATE(3451)] = { + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym_RBRACE] = ACTIONS(4291), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_friend] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), }, - [STATE(3471)] = { - [sym_identifier] = ACTIONS(8814), - [aux_sym_preproc_def_token1] = ACTIONS(8814), - [aux_sym_preproc_if_token1] = ACTIONS(8814), - [aux_sym_preproc_if_token2] = ACTIONS(8814), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8814), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8814), - [sym_preproc_directive] = ACTIONS(8814), - [anon_sym_LPAREN2] = ACTIONS(8816), - [anon_sym_TILDE] = ACTIONS(8816), - [anon_sym_STAR] = ACTIONS(8816), - [anon_sym_AMP_AMP] = ACTIONS(8816), - [anon_sym_AMP] = ACTIONS(8814), - [anon_sym_SEMI] = ACTIONS(8816), - [anon_sym___extension__] = ACTIONS(8814), - [anon_sym_typedef] = ACTIONS(8814), - [anon_sym_virtual] = ACTIONS(8814), - [anon_sym_extern] = ACTIONS(8814), - [anon_sym___attribute__] = ACTIONS(8814), - [anon_sym___attribute] = ACTIONS(8814), - [anon_sym_using] = ACTIONS(8814), - [anon_sym_COLON_COLON] = ACTIONS(8816), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8816), - [anon_sym___declspec] = ACTIONS(8814), - [anon_sym___based] = ACTIONS(8814), - [anon_sym_signed] = ACTIONS(8814), - [anon_sym_unsigned] = ACTIONS(8814), - [anon_sym_long] = ACTIONS(8814), - [anon_sym_short] = ACTIONS(8814), - [anon_sym_LBRACK] = ACTIONS(8814), - [anon_sym_static] = ACTIONS(8814), - [anon_sym_register] = ACTIONS(8814), - [anon_sym_inline] = ACTIONS(8814), - [anon_sym___inline] = ACTIONS(8814), - [anon_sym___inline__] = ACTIONS(8814), - [anon_sym___forceinline] = ACTIONS(8814), - [anon_sym_thread_local] = ACTIONS(8814), - [anon_sym___thread] = ACTIONS(8814), - [anon_sym_const] = ACTIONS(8814), - [anon_sym_constexpr] = ACTIONS(8814), - [anon_sym_volatile] = ACTIONS(8814), - [anon_sym_restrict] = ACTIONS(8814), - [anon_sym___restrict__] = ACTIONS(8814), - [anon_sym__Atomic] = ACTIONS(8814), - [anon_sym__Noreturn] = ACTIONS(8814), - [anon_sym_noreturn] = ACTIONS(8814), - [anon_sym__Nonnull] = ACTIONS(8814), - [anon_sym_mutable] = ACTIONS(8814), - [anon_sym_constinit] = ACTIONS(8814), - [anon_sym_consteval] = ACTIONS(8814), - [anon_sym_alignas] = ACTIONS(8814), - [anon_sym__Alignas] = ACTIONS(8814), - [sym_primitive_type] = ACTIONS(8814), - [anon_sym_enum] = ACTIONS(8814), - [anon_sym_class] = ACTIONS(8814), - [anon_sym_struct] = ACTIONS(8814), - [anon_sym_union] = ACTIONS(8814), - [anon_sym_typename] = ACTIONS(8814), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8814), - [anon_sym_decltype] = ACTIONS(8814), - [anon_sym_explicit] = ACTIONS(8814), - [anon_sym_private] = ACTIONS(8814), - [anon_sym_template] = ACTIONS(8814), - [anon_sym_operator] = ACTIONS(8814), - [anon_sym_friend] = ACTIONS(8814), - [anon_sym_public] = ACTIONS(8814), - [anon_sym_protected] = ACTIONS(8814), - [anon_sym_static_assert] = ACTIONS(8814), - [anon_sym_LBRACK_COLON] = ACTIONS(8816), + [STATE(3452)] = { + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym__function_attributes_end] = STATE(4598), + [sym__function_postfix] = STATE(5706), + [sym_trailing_return_type] = STATE(4628), + [sym_requires_clause] = STATE(5706), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7970), + [anon_sym_and] = ACTIONS(7970), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7970), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(8617), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8620), + [anon_sym_override] = ACTIONS(8620), + [anon_sym_requires] = ACTIONS(8623), + [anon_sym_DASH_GT_STAR] = ACTIONS(7970), }, - [STATE(3472)] = { - [sym_identifier] = ACTIONS(4012), - [aux_sym_preproc_def_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token1] = ACTIONS(4012), - [aux_sym_preproc_if_token2] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4012), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4012), - [sym_preproc_directive] = ACTIONS(4012), - [anon_sym_LPAREN2] = ACTIONS(4014), - [anon_sym_TILDE] = ACTIONS(4014), - [anon_sym_STAR] = ACTIONS(4014), - [anon_sym_AMP_AMP] = ACTIONS(4014), - [anon_sym_AMP] = ACTIONS(4012), - [anon_sym_SEMI] = ACTIONS(4014), - [anon_sym___extension__] = ACTIONS(4012), - [anon_sym_typedef] = ACTIONS(4012), - [anon_sym_virtual] = ACTIONS(4012), - [anon_sym_extern] = ACTIONS(4012), - [anon_sym___attribute__] = ACTIONS(4012), - [anon_sym___attribute] = ACTIONS(4012), - [anon_sym_using] = ACTIONS(4012), - [anon_sym_COLON_COLON] = ACTIONS(4014), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4014), - [anon_sym___declspec] = ACTIONS(4012), - [anon_sym___based] = ACTIONS(4012), - [anon_sym_signed] = ACTIONS(4012), - [anon_sym_unsigned] = ACTIONS(4012), - [anon_sym_long] = ACTIONS(4012), - [anon_sym_short] = ACTIONS(4012), - [anon_sym_LBRACK] = ACTIONS(4012), - [anon_sym_static] = ACTIONS(4012), - [anon_sym_register] = ACTIONS(4012), - [anon_sym_inline] = ACTIONS(4012), - [anon_sym___inline] = ACTIONS(4012), - [anon_sym___inline__] = ACTIONS(4012), - [anon_sym___forceinline] = ACTIONS(4012), - [anon_sym_thread_local] = ACTIONS(4012), - [anon_sym___thread] = ACTIONS(4012), - [anon_sym_const] = ACTIONS(4012), - [anon_sym_constexpr] = ACTIONS(4012), - [anon_sym_volatile] = ACTIONS(4012), - [anon_sym_restrict] = ACTIONS(4012), - [anon_sym___restrict__] = ACTIONS(4012), - [anon_sym__Atomic] = ACTIONS(4012), - [anon_sym__Noreturn] = ACTIONS(4012), - [anon_sym_noreturn] = ACTIONS(4012), - [anon_sym__Nonnull] = ACTIONS(4012), - [anon_sym_mutable] = ACTIONS(4012), - [anon_sym_constinit] = ACTIONS(4012), - [anon_sym_consteval] = ACTIONS(4012), - [anon_sym_alignas] = ACTIONS(4012), - [anon_sym__Alignas] = ACTIONS(4012), - [sym_primitive_type] = ACTIONS(4012), - [anon_sym_enum] = ACTIONS(4012), - [anon_sym_class] = ACTIONS(4012), - [anon_sym_struct] = ACTIONS(4012), - [anon_sym_union] = ACTIONS(4012), - [anon_sym_typename] = ACTIONS(4012), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4012), - [anon_sym_decltype] = ACTIONS(4012), - [anon_sym_explicit] = ACTIONS(4012), - [anon_sym_private] = ACTIONS(4012), - [anon_sym_template] = ACTIONS(4012), - [anon_sym_operator] = ACTIONS(4012), - [anon_sym_friend] = ACTIONS(4012), - [anon_sym_public] = ACTIONS(4012), - [anon_sym_protected] = ACTIONS(4012), - [anon_sym_static_assert] = ACTIONS(4012), - [anon_sym_LBRACK_COLON] = ACTIONS(4014), + [STATE(3453)] = { + [sym_identifier] = ACTIONS(4289), + [aux_sym_preproc_def_token1] = ACTIONS(4289), + [aux_sym_preproc_if_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4289), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4289), + [sym_preproc_directive] = ACTIONS(4289), + [anon_sym_LPAREN2] = ACTIONS(4291), + [anon_sym_TILDE] = ACTIONS(4291), + [anon_sym_STAR] = ACTIONS(4291), + [anon_sym_AMP_AMP] = ACTIONS(4291), + [anon_sym_AMP] = ACTIONS(4289), + [anon_sym_SEMI] = ACTIONS(4291), + [anon_sym___extension__] = ACTIONS(4289), + [anon_sym_typedef] = ACTIONS(4289), + [anon_sym_virtual] = ACTIONS(4289), + [anon_sym_extern] = ACTIONS(4289), + [anon_sym___attribute__] = ACTIONS(4289), + [anon_sym___attribute] = ACTIONS(4289), + [anon_sym_using] = ACTIONS(4289), + [anon_sym_COLON_COLON] = ACTIONS(4291), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4291), + [anon_sym___declspec] = ACTIONS(4289), + [anon_sym___based] = ACTIONS(4289), + [anon_sym_RBRACE] = ACTIONS(4291), + [anon_sym_signed] = ACTIONS(4289), + [anon_sym_unsigned] = ACTIONS(4289), + [anon_sym_long] = ACTIONS(4289), + [anon_sym_short] = ACTIONS(4289), + [anon_sym_LBRACK] = ACTIONS(4289), + [anon_sym_static] = ACTIONS(4289), + [anon_sym_register] = ACTIONS(4289), + [anon_sym_inline] = ACTIONS(4289), + [anon_sym___inline] = ACTIONS(4289), + [anon_sym___inline__] = ACTIONS(4289), + [anon_sym___forceinline] = ACTIONS(4289), + [anon_sym_thread_local] = ACTIONS(4289), + [anon_sym___thread] = ACTIONS(4289), + [anon_sym_const] = ACTIONS(4289), + [anon_sym_constexpr] = ACTIONS(4289), + [anon_sym_volatile] = ACTIONS(4289), + [anon_sym_restrict] = ACTIONS(4289), + [anon_sym___restrict__] = ACTIONS(4289), + [anon_sym__Atomic] = ACTIONS(4289), + [anon_sym__Noreturn] = ACTIONS(4289), + [anon_sym_noreturn] = ACTIONS(4289), + [anon_sym__Nonnull] = ACTIONS(4289), + [anon_sym_mutable] = ACTIONS(4289), + [anon_sym_constinit] = ACTIONS(4289), + [anon_sym_consteval] = ACTIONS(4289), + [anon_sym_alignas] = ACTIONS(4289), + [anon_sym__Alignas] = ACTIONS(4289), + [sym_primitive_type] = ACTIONS(4289), + [anon_sym_enum] = ACTIONS(4289), + [anon_sym_class] = ACTIONS(4289), + [anon_sym_struct] = ACTIONS(4289), + [anon_sym_union] = ACTIONS(4289), + [anon_sym_typename] = ACTIONS(4289), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4289), + [anon_sym_decltype] = ACTIONS(4289), + [anon_sym_explicit] = ACTIONS(4289), + [anon_sym_private] = ACTIONS(4289), + [anon_sym_template] = ACTIONS(4289), + [anon_sym_operator] = ACTIONS(4289), + [anon_sym_friend] = ACTIONS(4289), + [anon_sym_public] = ACTIONS(4289), + [anon_sym_protected] = ACTIONS(4289), + [anon_sym_static_assert] = ACTIONS(4289), + [anon_sym_LBRACK_COLON] = ACTIONS(4291), }, - [STATE(3473)] = { - [sym_identifier] = ACTIONS(8818), - [aux_sym_preproc_def_token1] = ACTIONS(8818), - [aux_sym_preproc_if_token1] = ACTIONS(8818), - [aux_sym_preproc_if_token2] = ACTIONS(8818), - [aux_sym_preproc_ifdef_token1] = ACTIONS(8818), - [aux_sym_preproc_ifdef_token2] = ACTIONS(8818), - [sym_preproc_directive] = ACTIONS(8818), - [anon_sym_LPAREN2] = ACTIONS(8820), - [anon_sym_TILDE] = ACTIONS(8820), - [anon_sym_STAR] = ACTIONS(8820), - [anon_sym_AMP_AMP] = ACTIONS(8820), - [anon_sym_AMP] = ACTIONS(8818), - [anon_sym_SEMI] = ACTIONS(8820), - [anon_sym___extension__] = ACTIONS(8818), - [anon_sym_typedef] = ACTIONS(8818), - [anon_sym_virtual] = ACTIONS(8818), - [anon_sym_extern] = ACTIONS(8818), - [anon_sym___attribute__] = ACTIONS(8818), - [anon_sym___attribute] = ACTIONS(8818), - [anon_sym_using] = ACTIONS(8818), - [anon_sym_COLON_COLON] = ACTIONS(8820), - [anon_sym_LBRACK_LBRACK] = ACTIONS(8820), - [anon_sym___declspec] = ACTIONS(8818), - [anon_sym___based] = ACTIONS(8818), - [anon_sym_signed] = ACTIONS(8818), - [anon_sym_unsigned] = ACTIONS(8818), - [anon_sym_long] = ACTIONS(8818), - [anon_sym_short] = ACTIONS(8818), - [anon_sym_LBRACK] = ACTIONS(8818), - [anon_sym_static] = ACTIONS(8818), - [anon_sym_register] = ACTIONS(8818), - [anon_sym_inline] = ACTIONS(8818), - [anon_sym___inline] = ACTIONS(8818), - [anon_sym___inline__] = ACTIONS(8818), - [anon_sym___forceinline] = ACTIONS(8818), - [anon_sym_thread_local] = ACTIONS(8818), - [anon_sym___thread] = ACTIONS(8818), - [anon_sym_const] = ACTIONS(8818), - [anon_sym_constexpr] = ACTIONS(8818), - [anon_sym_volatile] = ACTIONS(8818), - [anon_sym_restrict] = ACTIONS(8818), - [anon_sym___restrict__] = ACTIONS(8818), - [anon_sym__Atomic] = ACTIONS(8818), - [anon_sym__Noreturn] = ACTIONS(8818), - [anon_sym_noreturn] = ACTIONS(8818), - [anon_sym__Nonnull] = ACTIONS(8818), - [anon_sym_mutable] = ACTIONS(8818), - [anon_sym_constinit] = ACTIONS(8818), - [anon_sym_consteval] = ACTIONS(8818), - [anon_sym_alignas] = ACTIONS(8818), - [anon_sym__Alignas] = ACTIONS(8818), - [sym_primitive_type] = ACTIONS(8818), - [anon_sym_enum] = ACTIONS(8818), - [anon_sym_class] = ACTIONS(8818), - [anon_sym_struct] = ACTIONS(8818), - [anon_sym_union] = ACTIONS(8818), - [anon_sym_typename] = ACTIONS(8818), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8818), - [anon_sym_decltype] = ACTIONS(8818), - [anon_sym_explicit] = ACTIONS(8818), - [anon_sym_private] = ACTIONS(8818), - [anon_sym_template] = ACTIONS(8818), - [anon_sym_operator] = ACTIONS(8818), - [anon_sym_friend] = ACTIONS(8818), - [anon_sym_public] = ACTIONS(8818), - [anon_sym_protected] = ACTIONS(8818), - [anon_sym_static_assert] = ACTIONS(8818), - [anon_sym_LBRACK_COLON] = ACTIONS(8820), + [STATE(3454)] = { + [sym_type_qualifier] = STATE(3461), + [sym_alignas_qualifier] = STATE(2724), + [aux_sym__type_definition_type_repeat1] = STATE(3461), + [aux_sym_sized_type_specifier_repeat1] = STATE(3726), + [sym_identifier] = ACTIONS(8840), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [aux_sym_preproc_if_token2] = ACTIONS(7209), + [aux_sym_preproc_else_token1] = ACTIONS(7209), + [aux_sym_preproc_elif_token1] = ACTIONS(7211), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7209), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(8140), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(9127), + [anon_sym_unsigned] = ACTIONS(9127), + [anon_sym_long] = ACTIONS(9127), + [anon_sym_short] = ACTIONS(9127), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8140), + [anon_sym_volatile] = ACTIONS(8140), + [anon_sym_restrict] = ACTIONS(8140), + [anon_sym___restrict__] = ACTIONS(8140), + [anon_sym__Atomic] = ACTIONS(8140), + [anon_sym__Noreturn] = ACTIONS(8140), + [anon_sym_noreturn] = ACTIONS(8140), + [anon_sym__Nonnull] = ACTIONS(8140), + [anon_sym_mutable] = ACTIONS(8140), + [anon_sym_constinit] = ACTIONS(8140), + [anon_sym_consteval] = ACTIONS(8140), + [anon_sym_alignas] = ACTIONS(9057), + [anon_sym__Alignas] = ACTIONS(9057), + [sym_primitive_type] = ACTIONS(8845), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + }, + [STATE(3455)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6651), + [anon_sym_RPAREN] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6658), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6658), + [anon_sym_GT_GT] = ACTIONS(6658), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6658), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6651), + [anon_sym_or_eq] = ACTIONS(6651), + [anon_sym_xor_eq] = ACTIONS(6651), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6651), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6651), + [anon_sym_not_eq] = ACTIONS(6651), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6651), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + }, + [STATE(3456)] = { + [sym_virtual_specifier] = STATE(3456), + [aux_sym__function_postfix_repeat1] = STATE(3456), + [sym_identifier] = ACTIONS(9129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9131), + [anon_sym_COMMA] = ACTIONS(9131), + [anon_sym_RPAREN] = ACTIONS(9131), + [aux_sym_preproc_if_token2] = ACTIONS(9131), + [aux_sym_preproc_else_token1] = ACTIONS(9131), + [aux_sym_preproc_elif_token1] = ACTIONS(9129), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9131), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9131), + [anon_sym_LPAREN2] = ACTIONS(9131), + [anon_sym_DASH] = ACTIONS(9129), + [anon_sym_PLUS] = ACTIONS(9129), + [anon_sym_STAR] = ACTIONS(9129), + [anon_sym_SLASH] = ACTIONS(9129), + [anon_sym_PERCENT] = ACTIONS(9129), + [anon_sym_PIPE_PIPE] = ACTIONS(9131), + [anon_sym_AMP_AMP] = ACTIONS(9131), + [anon_sym_PIPE] = ACTIONS(9129), + [anon_sym_CARET] = ACTIONS(9129), + [anon_sym_AMP] = ACTIONS(9129), + [anon_sym_EQ_EQ] = ACTIONS(9131), + [anon_sym_BANG_EQ] = ACTIONS(9131), + [anon_sym_GT] = ACTIONS(9129), + [anon_sym_GT_EQ] = ACTIONS(9131), + [anon_sym_LT_EQ] = ACTIONS(9129), + [anon_sym_LT] = ACTIONS(9129), + [anon_sym_LT_LT] = ACTIONS(9129), + [anon_sym_GT_GT] = ACTIONS(9129), + [anon_sym_SEMI] = ACTIONS(9131), + [anon_sym___attribute__] = ACTIONS(9129), + [anon_sym___attribute] = ACTIONS(9129), + [anon_sym_COLON] = ACTIONS(9129), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9131), + [anon_sym_RBRACE] = ACTIONS(9131), + [anon_sym_LBRACK] = ACTIONS(9131), + [anon_sym_EQ] = ACTIONS(9129), + [anon_sym_QMARK] = ACTIONS(9131), + [anon_sym_STAR_EQ] = ACTIONS(9131), + [anon_sym_SLASH_EQ] = ACTIONS(9131), + [anon_sym_PERCENT_EQ] = ACTIONS(9131), + [anon_sym_PLUS_EQ] = ACTIONS(9131), + [anon_sym_DASH_EQ] = ACTIONS(9131), + [anon_sym_LT_LT_EQ] = ACTIONS(9131), + [anon_sym_GT_GT_EQ] = ACTIONS(9131), + [anon_sym_AMP_EQ] = ACTIONS(9131), + [anon_sym_CARET_EQ] = ACTIONS(9131), + [anon_sym_PIPE_EQ] = ACTIONS(9131), + [anon_sym_and_eq] = ACTIONS(9129), + [anon_sym_or_eq] = ACTIONS(9129), + [anon_sym_xor_eq] = ACTIONS(9129), + [anon_sym_LT_EQ_GT] = ACTIONS(9131), + [anon_sym_or] = ACTIONS(9129), + [anon_sym_and] = ACTIONS(9129), + [anon_sym_bitor] = ACTIONS(9129), + [anon_sym_xor] = ACTIONS(9129), + [anon_sym_bitand] = ACTIONS(9129), + [anon_sym_not_eq] = ACTIONS(9129), + [anon_sym_DASH_DASH] = ACTIONS(9131), + [anon_sym_PLUS_PLUS] = ACTIONS(9131), + [anon_sym_DOT] = ACTIONS(9129), + [anon_sym_DOT_STAR] = ACTIONS(9131), + [anon_sym_DASH_GT] = ACTIONS(9131), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9133), + [anon_sym_override] = ACTIONS(9133), + [anon_sym_requires] = ACTIONS(9129), + [anon_sym_COLON_RBRACK] = ACTIONS(9131), + }, + [STATE(3457)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3256), + [sym_identifier] = ACTIONS(7690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7692), + [anon_sym_COMMA] = ACTIONS(7692), + [aux_sym_preproc_if_token2] = ACTIONS(7692), + [aux_sym_preproc_else_token1] = ACTIONS(7692), + [aux_sym_preproc_elif_token1] = ACTIONS(7690), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7692), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7692), + [anon_sym_LPAREN2] = ACTIONS(7692), + [anon_sym_DASH] = ACTIONS(7690), + [anon_sym_PLUS] = ACTIONS(7690), + [anon_sym_STAR] = ACTIONS(7692), + [anon_sym_SLASH] = ACTIONS(7690), + [anon_sym_PERCENT] = ACTIONS(7692), + [anon_sym_PIPE_PIPE] = ACTIONS(7692), + [anon_sym_AMP_AMP] = ACTIONS(7692), + [anon_sym_PIPE] = ACTIONS(7690), + [anon_sym_CARET] = ACTIONS(7692), + [anon_sym_AMP] = ACTIONS(7690), + [anon_sym_EQ_EQ] = ACTIONS(7692), + [anon_sym_BANG_EQ] = ACTIONS(7692), + [anon_sym_GT] = ACTIONS(7690), + [anon_sym_GT_EQ] = ACTIONS(7692), + [anon_sym_LT_EQ] = ACTIONS(7690), + [anon_sym_LT] = ACTIONS(7690), + [anon_sym_LT_LT] = ACTIONS(7692), + [anon_sym_GT_GT] = ACTIONS(7692), + [anon_sym___extension__] = ACTIONS(7690), + [anon_sym___attribute__] = ACTIONS(7690), + [anon_sym___attribute] = ACTIONS(7690), + [anon_sym_LBRACE] = ACTIONS(7692), + [anon_sym_signed] = ACTIONS(9136), + [anon_sym_unsigned] = ACTIONS(9136), + [anon_sym_long] = ACTIONS(9136), + [anon_sym_short] = ACTIONS(9136), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_RBRACK] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7690), + [anon_sym_constexpr] = ACTIONS(7690), + [anon_sym_volatile] = ACTIONS(7690), + [anon_sym_restrict] = ACTIONS(7690), + [anon_sym___restrict__] = ACTIONS(7690), + [anon_sym__Atomic] = ACTIONS(7690), + [anon_sym__Noreturn] = ACTIONS(7690), + [anon_sym_noreturn] = ACTIONS(7690), + [anon_sym__Nonnull] = ACTIONS(7690), + [anon_sym_mutable] = ACTIONS(7690), + [anon_sym_constinit] = ACTIONS(7690), + [anon_sym_consteval] = ACTIONS(7690), + [anon_sym_alignas] = ACTIONS(7690), + [anon_sym__Alignas] = ACTIONS(7690), + [anon_sym_QMARK] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7692), + [anon_sym_or] = ACTIONS(7690), + [anon_sym_and] = ACTIONS(7690), + [anon_sym_bitor] = ACTIONS(7690), + [anon_sym_xor] = ACTIONS(7690), + [anon_sym_bitand] = ACTIONS(7690), + [anon_sym_not_eq] = ACTIONS(7690), + [anon_sym_DASH_DASH] = ACTIONS(7692), + [anon_sym_PLUS_PLUS] = ACTIONS(7692), + [anon_sym_DOT] = ACTIONS(7690), + [anon_sym_DOT_STAR] = ACTIONS(7692), + [anon_sym_DASH_GT] = ACTIONS(7692), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7690), + [anon_sym_override] = ACTIONS(7690), + [anon_sym_requires] = ACTIONS(7690), + }, + [STATE(3458)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3377), + [sym_identifier] = ACTIONS(7658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7660), + [anon_sym_COMMA] = ACTIONS(7660), + [aux_sym_preproc_if_token2] = ACTIONS(7660), + [aux_sym_preproc_else_token1] = ACTIONS(7660), + [aux_sym_preproc_elif_token1] = ACTIONS(7658), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7660), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7660), + [anon_sym_LPAREN2] = ACTIONS(7660), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7658), + [anon_sym_PERCENT] = ACTIONS(7660), + [anon_sym_PIPE_PIPE] = ACTIONS(7660), + [anon_sym_AMP_AMP] = ACTIONS(7660), + [anon_sym_PIPE] = ACTIONS(7658), + [anon_sym_CARET] = ACTIONS(7660), + [anon_sym_AMP] = ACTIONS(7658), + [anon_sym_EQ_EQ] = ACTIONS(7660), + [anon_sym_BANG_EQ] = ACTIONS(7660), + [anon_sym_GT] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7660), + [anon_sym_LT_EQ] = ACTIONS(7658), + [anon_sym_LT] = ACTIONS(7658), + [anon_sym_LT_LT] = ACTIONS(7660), + [anon_sym_GT_GT] = ACTIONS(7660), + [anon_sym___extension__] = ACTIONS(7658), + [anon_sym___attribute__] = ACTIONS(7658), + [anon_sym___attribute] = ACTIONS(7658), + [anon_sym_LBRACE] = ACTIONS(7660), + [anon_sym_signed] = ACTIONS(9095), + [anon_sym_unsigned] = ACTIONS(9095), + [anon_sym_long] = ACTIONS(9095), + [anon_sym_short] = ACTIONS(9095), + [anon_sym_LBRACK] = ACTIONS(7660), + [anon_sym_RBRACK] = ACTIONS(7660), + [anon_sym_const] = ACTIONS(7658), + [anon_sym_constexpr] = ACTIONS(7658), + [anon_sym_volatile] = ACTIONS(7658), + [anon_sym_restrict] = ACTIONS(7658), + [anon_sym___restrict__] = ACTIONS(7658), + [anon_sym__Atomic] = ACTIONS(7658), + [anon_sym__Noreturn] = ACTIONS(7658), + [anon_sym_noreturn] = ACTIONS(7658), + [anon_sym__Nonnull] = ACTIONS(7658), + [anon_sym_mutable] = ACTIONS(7658), + [anon_sym_constinit] = ACTIONS(7658), + [anon_sym_consteval] = ACTIONS(7658), + [anon_sym_alignas] = ACTIONS(7658), + [anon_sym__Alignas] = ACTIONS(7658), + [anon_sym_QMARK] = ACTIONS(7660), + [anon_sym_LT_EQ_GT] = ACTIONS(7660), + [anon_sym_or] = ACTIONS(7658), + [anon_sym_and] = ACTIONS(7658), + [anon_sym_bitor] = ACTIONS(7658), + [anon_sym_xor] = ACTIONS(7658), + [anon_sym_bitand] = ACTIONS(7658), + [anon_sym_not_eq] = ACTIONS(7658), + [anon_sym_DASH_DASH] = ACTIONS(7660), + [anon_sym_PLUS_PLUS] = ACTIONS(7660), + [anon_sym_DOT] = ACTIONS(7658), + [anon_sym_DOT_STAR] = ACTIONS(7660), + [anon_sym_DASH_GT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7658), + [anon_sym_override] = ACTIONS(7658), + [anon_sym_requires] = ACTIONS(7658), }, - [STATE(3474)] = { - [sym_identifier] = ACTIONS(9150), - [anon_sym_LPAREN2] = ACTIONS(9152), - [anon_sym_TILDE] = ACTIONS(9152), - [anon_sym_STAR] = ACTIONS(9152), - [anon_sym_AMP_AMP] = ACTIONS(9152), - [anon_sym_AMP] = ACTIONS(9150), - [anon_sym___extension__] = ACTIONS(9150), - [anon_sym_virtual] = ACTIONS(9150), - [anon_sym_extern] = ACTIONS(9150), - [anon_sym___attribute__] = ACTIONS(9150), - [anon_sym___attribute] = ACTIONS(9150), - [anon_sym_using] = ACTIONS(9150), - [anon_sym_COLON_COLON] = ACTIONS(9152), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9152), - [anon_sym___declspec] = ACTIONS(9150), - [anon_sym___based] = ACTIONS(9150), - [anon_sym___cdecl] = ACTIONS(9150), - [anon_sym___clrcall] = ACTIONS(9150), - [anon_sym___stdcall] = ACTIONS(9150), - [anon_sym___fastcall] = ACTIONS(9150), - [anon_sym___thiscall] = ACTIONS(9150), - [anon_sym___vectorcall] = ACTIONS(9150), - [anon_sym_LBRACE] = ACTIONS(9152), - [anon_sym_signed] = ACTIONS(9150), - [anon_sym_unsigned] = ACTIONS(9150), - [anon_sym_long] = ACTIONS(9150), - [anon_sym_short] = ACTIONS(9150), - [anon_sym_LBRACK] = ACTIONS(9150), - [anon_sym_static] = ACTIONS(9150), - [anon_sym_register] = ACTIONS(9150), - [anon_sym_inline] = ACTIONS(9150), - [anon_sym___inline] = ACTIONS(9150), - [anon_sym___inline__] = ACTIONS(9150), - [anon_sym___forceinline] = ACTIONS(9150), - [anon_sym_thread_local] = ACTIONS(9150), - [anon_sym___thread] = ACTIONS(9150), - [anon_sym_const] = ACTIONS(9150), - [anon_sym_constexpr] = ACTIONS(9150), - [anon_sym_volatile] = ACTIONS(9150), - [anon_sym_restrict] = ACTIONS(9150), - [anon_sym___restrict__] = ACTIONS(9150), - [anon_sym__Atomic] = ACTIONS(9150), - [anon_sym__Noreturn] = ACTIONS(9150), - [anon_sym_noreturn] = ACTIONS(9150), - [anon_sym__Nonnull] = ACTIONS(9150), - [anon_sym_mutable] = ACTIONS(9150), - [anon_sym_constinit] = ACTIONS(9150), - [anon_sym_consteval] = ACTIONS(9150), - [anon_sym_alignas] = ACTIONS(9150), - [anon_sym__Alignas] = ACTIONS(9150), - [sym_primitive_type] = ACTIONS(9150), - [anon_sym_enum] = ACTIONS(9150), - [anon_sym_class] = ACTIONS(9150), - [anon_sym_struct] = ACTIONS(9150), - [anon_sym_union] = ACTIONS(9150), - [anon_sym_typename] = ACTIONS(9150), - [anon_sym_DASH_GT] = ACTIONS(9152), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9150), - [anon_sym_decltype] = ACTIONS(9150), - [anon_sym_explicit] = ACTIONS(9150), - [anon_sym_template] = ACTIONS(9150), - [anon_sym_operator] = ACTIONS(9150), - [anon_sym_friend] = ACTIONS(9150), - [anon_sym_noexcept] = ACTIONS(9150), - [anon_sym_throw] = ACTIONS(9150), - [anon_sym_concept] = ACTIONS(9150), - [anon_sym_requires] = ACTIONS(9150), - [anon_sym_LBRACK_COLON] = ACTIONS(9152), + [STATE(3459)] = { + [sym_identifier] = ACTIONS(3921), + [aux_sym_preproc_def_token1] = ACTIONS(3921), + [aux_sym_preproc_if_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3921), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3921), + [sym_preproc_directive] = ACTIONS(3921), + [anon_sym_LPAREN2] = ACTIONS(3923), + [anon_sym_TILDE] = ACTIONS(3923), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3923), + [anon_sym_AMP] = ACTIONS(3921), + [anon_sym_SEMI] = ACTIONS(3923), + [anon_sym___extension__] = ACTIONS(3921), + [anon_sym_typedef] = ACTIONS(3921), + [anon_sym_virtual] = ACTIONS(3921), + [anon_sym_extern] = ACTIONS(3921), + [anon_sym___attribute__] = ACTIONS(3921), + [anon_sym___attribute] = ACTIONS(3921), + [anon_sym_using] = ACTIONS(3921), + [anon_sym_COLON_COLON] = ACTIONS(3923), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3923), + [anon_sym___declspec] = ACTIONS(3921), + [anon_sym___based] = ACTIONS(3921), + [anon_sym_RBRACE] = ACTIONS(3923), + [anon_sym_signed] = ACTIONS(3921), + [anon_sym_unsigned] = ACTIONS(3921), + [anon_sym_long] = ACTIONS(3921), + [anon_sym_short] = ACTIONS(3921), + [anon_sym_LBRACK] = ACTIONS(3921), + [anon_sym_static] = ACTIONS(3921), + [anon_sym_register] = ACTIONS(3921), + [anon_sym_inline] = ACTIONS(3921), + [anon_sym___inline] = ACTIONS(3921), + [anon_sym___inline__] = ACTIONS(3921), + [anon_sym___forceinline] = ACTIONS(3921), + [anon_sym_thread_local] = ACTIONS(3921), + [anon_sym___thread] = ACTIONS(3921), + [anon_sym_const] = ACTIONS(3921), + [anon_sym_constexpr] = ACTIONS(3921), + [anon_sym_volatile] = ACTIONS(3921), + [anon_sym_restrict] = ACTIONS(3921), + [anon_sym___restrict__] = ACTIONS(3921), + [anon_sym__Atomic] = ACTIONS(3921), + [anon_sym__Noreturn] = ACTIONS(3921), + [anon_sym_noreturn] = ACTIONS(3921), + [anon_sym__Nonnull] = ACTIONS(3921), + [anon_sym_mutable] = ACTIONS(3921), + [anon_sym_constinit] = ACTIONS(3921), + [anon_sym_consteval] = ACTIONS(3921), + [anon_sym_alignas] = ACTIONS(3921), + [anon_sym__Alignas] = ACTIONS(3921), + [sym_primitive_type] = ACTIONS(3921), + [anon_sym_enum] = ACTIONS(3921), + [anon_sym_class] = ACTIONS(3921), + [anon_sym_struct] = ACTIONS(3921), + [anon_sym_union] = ACTIONS(3921), + [anon_sym_typename] = ACTIONS(3921), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3921), + [anon_sym_decltype] = ACTIONS(3921), + [anon_sym_explicit] = ACTIONS(3921), + [anon_sym_private] = ACTIONS(3921), + [anon_sym_template] = ACTIONS(3921), + [anon_sym_operator] = ACTIONS(3921), + [anon_sym_friend] = ACTIONS(3921), + [anon_sym_public] = ACTIONS(3921), + [anon_sym_protected] = ACTIONS(3921), + [anon_sym_static_assert] = ACTIONS(3921), + [anon_sym_LBRACK_COLON] = ACTIONS(3923), }, - [STATE(3475)] = { + [STATE(3460)] = { [sym_identifier] = ACTIONS(4044), [aux_sym_preproc_def_token1] = ACTIONS(4044), [aux_sym_preproc_if_token1] = ACTIONS(4044), - [aux_sym_preproc_if_token2] = ACTIONS(4044), [aux_sym_preproc_ifdef_token1] = ACTIONS(4044), [aux_sym_preproc_ifdef_token2] = ACTIONS(4044), [sym_preproc_directive] = ACTIONS(4044), @@ -427795,6 +426570,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(4046), [anon_sym___declspec] = ACTIONS(4044), [anon_sym___based] = ACTIONS(4044), + [anon_sym_RBRACE] = ACTIONS(4046), [anon_sym_signed] = ACTIONS(4044), [anon_sym_unsigned] = ACTIONS(4044), [anon_sym_long] = ACTIONS(4044), @@ -427841,295 +426617,791 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4044), [anon_sym_LBRACK_COLON] = ACTIONS(4046), }, - [STATE(3476)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token2] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_private] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_friend] = ACTIONS(4080), - [anon_sym_public] = ACTIONS(4080), - [anon_sym_protected] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [STATE(3461)] = { + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [aux_sym_sized_type_specifier_repeat1] = STATE(3259), + [sym_identifier] = ACTIONS(8858), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [aux_sym_preproc_if_token2] = ACTIONS(7193), + [aux_sym_preproc_else_token1] = ACTIONS(7193), + [aux_sym_preproc_elif_token1] = ACTIONS(7195), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7193), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7193), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7193), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7193), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7193), + [anon_sym_GT_GT] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(8140), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(8861), + [anon_sym_unsigned] = ACTIONS(8861), + [anon_sym_long] = ACTIONS(8861), + [anon_sym_short] = ACTIONS(8861), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8140), + [anon_sym_volatile] = ACTIONS(8140), + [anon_sym_restrict] = ACTIONS(8140), + [anon_sym___restrict__] = ACTIONS(8140), + [anon_sym__Atomic] = ACTIONS(8140), + [anon_sym__Noreturn] = ACTIONS(8140), + [anon_sym_noreturn] = ACTIONS(8140), + [anon_sym__Nonnull] = ACTIONS(8140), + [anon_sym_mutable] = ACTIONS(8140), + [anon_sym_constinit] = ACTIONS(8140), + [anon_sym_consteval] = ACTIONS(8140), + [anon_sym_alignas] = ACTIONS(9057), + [anon_sym__Alignas] = ACTIONS(9057), + [sym_primitive_type] = ACTIONS(8863), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), }, - [STATE(3477)] = { - [sym_identifier] = ACTIONS(4080), - [aux_sym_preproc_def_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token1] = ACTIONS(4080), - [aux_sym_preproc_if_token2] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4080), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4080), - [sym_preproc_directive] = ACTIONS(4080), - [anon_sym_LPAREN2] = ACTIONS(4082), - [anon_sym_TILDE] = ACTIONS(4082), - [anon_sym_STAR] = ACTIONS(4082), - [anon_sym_AMP_AMP] = ACTIONS(4082), - [anon_sym_AMP] = ACTIONS(4080), - [anon_sym_SEMI] = ACTIONS(4082), - [anon_sym___extension__] = ACTIONS(4080), - [anon_sym_typedef] = ACTIONS(4080), - [anon_sym_virtual] = ACTIONS(4080), - [anon_sym_extern] = ACTIONS(4080), - [anon_sym___attribute__] = ACTIONS(4080), - [anon_sym___attribute] = ACTIONS(4080), - [anon_sym_using] = ACTIONS(4080), - [anon_sym_COLON_COLON] = ACTIONS(4082), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4082), - [anon_sym___declspec] = ACTIONS(4080), - [anon_sym___based] = ACTIONS(4080), - [anon_sym_signed] = ACTIONS(4080), - [anon_sym_unsigned] = ACTIONS(4080), - [anon_sym_long] = ACTIONS(4080), - [anon_sym_short] = ACTIONS(4080), - [anon_sym_LBRACK] = ACTIONS(4080), - [anon_sym_static] = ACTIONS(4080), - [anon_sym_register] = ACTIONS(4080), - [anon_sym_inline] = ACTIONS(4080), - [anon_sym___inline] = ACTIONS(4080), - [anon_sym___inline__] = ACTIONS(4080), - [anon_sym___forceinline] = ACTIONS(4080), - [anon_sym_thread_local] = ACTIONS(4080), - [anon_sym___thread] = ACTIONS(4080), - [anon_sym_const] = ACTIONS(4080), - [anon_sym_constexpr] = ACTIONS(4080), - [anon_sym_volatile] = ACTIONS(4080), - [anon_sym_restrict] = ACTIONS(4080), - [anon_sym___restrict__] = ACTIONS(4080), - [anon_sym__Atomic] = ACTIONS(4080), - [anon_sym__Noreturn] = ACTIONS(4080), - [anon_sym_noreturn] = ACTIONS(4080), - [anon_sym__Nonnull] = ACTIONS(4080), - [anon_sym_mutable] = ACTIONS(4080), - [anon_sym_constinit] = ACTIONS(4080), - [anon_sym_consteval] = ACTIONS(4080), - [anon_sym_alignas] = ACTIONS(4080), - [anon_sym__Alignas] = ACTIONS(4080), - [sym_primitive_type] = ACTIONS(4080), - [anon_sym_enum] = ACTIONS(4080), - [anon_sym_class] = ACTIONS(4080), - [anon_sym_struct] = ACTIONS(4080), - [anon_sym_union] = ACTIONS(4080), - [anon_sym_typename] = ACTIONS(4080), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4080), - [anon_sym_decltype] = ACTIONS(4080), - [anon_sym_explicit] = ACTIONS(4080), - [anon_sym_private] = ACTIONS(4080), - [anon_sym_template] = ACTIONS(4080), - [anon_sym_operator] = ACTIONS(4080), - [anon_sym_friend] = ACTIONS(4080), - [anon_sym_public] = ACTIONS(4080), - [anon_sym_protected] = ACTIONS(4080), - [anon_sym_static_assert] = ACTIONS(4080), - [anon_sym_LBRACK_COLON] = ACTIONS(4082), + [STATE(3462)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), + [sym_identifier] = ACTIONS(7402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [aux_sym_preproc_if_token2] = ACTIONS(7399), + [aux_sym_preproc_else_token1] = ACTIONS(7399), + [aux_sym_preproc_elif_token1] = ACTIONS(7402), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7399), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7399), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7399), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7399), + [anon_sym_GT_GT] = ACTIONS(7399), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8505), + [anon_sym_unsigned] = ACTIONS(8505), + [anon_sym_long] = ACTIONS(8505), + [anon_sym_short] = ACTIONS(8505), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_requires] = ACTIONS(7402), }, - [STATE(3478)] = { - [sym_identifier] = ACTIONS(4084), - [aux_sym_preproc_def_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token1] = ACTIONS(4084), - [aux_sym_preproc_if_token2] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4084), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4084), - [sym_preproc_directive] = ACTIONS(4084), - [anon_sym_LPAREN2] = ACTIONS(4086), - [anon_sym_TILDE] = ACTIONS(4086), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_AMP_AMP] = ACTIONS(4086), - [anon_sym_AMP] = ACTIONS(4084), - [anon_sym_SEMI] = ACTIONS(4086), - [anon_sym___extension__] = ACTIONS(4084), - [anon_sym_typedef] = ACTIONS(4084), - [anon_sym_virtual] = ACTIONS(4084), - [anon_sym_extern] = ACTIONS(4084), - [anon_sym___attribute__] = ACTIONS(4084), - [anon_sym___attribute] = ACTIONS(4084), - [anon_sym_using] = ACTIONS(4084), - [anon_sym_COLON_COLON] = ACTIONS(4086), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4086), - [anon_sym___declspec] = ACTIONS(4084), - [anon_sym___based] = ACTIONS(4084), - [anon_sym_signed] = ACTIONS(4084), - [anon_sym_unsigned] = ACTIONS(4084), - [anon_sym_long] = ACTIONS(4084), - [anon_sym_short] = ACTIONS(4084), - [anon_sym_LBRACK] = ACTIONS(4084), - [anon_sym_static] = ACTIONS(4084), - [anon_sym_register] = ACTIONS(4084), - [anon_sym_inline] = ACTIONS(4084), - [anon_sym___inline] = ACTIONS(4084), - [anon_sym___inline__] = ACTIONS(4084), - [anon_sym___forceinline] = ACTIONS(4084), - [anon_sym_thread_local] = ACTIONS(4084), - [anon_sym___thread] = ACTIONS(4084), - [anon_sym_const] = ACTIONS(4084), - [anon_sym_constexpr] = ACTIONS(4084), - [anon_sym_volatile] = ACTIONS(4084), - [anon_sym_restrict] = ACTIONS(4084), - [anon_sym___restrict__] = ACTIONS(4084), - [anon_sym__Atomic] = ACTIONS(4084), - [anon_sym__Noreturn] = ACTIONS(4084), - [anon_sym_noreturn] = ACTIONS(4084), - [anon_sym__Nonnull] = ACTIONS(4084), - [anon_sym_mutable] = ACTIONS(4084), - [anon_sym_constinit] = ACTIONS(4084), - [anon_sym_consteval] = ACTIONS(4084), - [anon_sym_alignas] = ACTIONS(4084), - [anon_sym__Alignas] = ACTIONS(4084), - [sym_primitive_type] = ACTIONS(4084), - [anon_sym_enum] = ACTIONS(4084), - [anon_sym_class] = ACTIONS(4084), - [anon_sym_struct] = ACTIONS(4084), - [anon_sym_union] = ACTIONS(4084), - [anon_sym_typename] = ACTIONS(4084), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4084), - [anon_sym_decltype] = ACTIONS(4084), - [anon_sym_explicit] = ACTIONS(4084), - [anon_sym_private] = ACTIONS(4084), - [anon_sym_template] = ACTIONS(4084), - [anon_sym_operator] = ACTIONS(4084), - [anon_sym_friend] = ACTIONS(4084), - [anon_sym_public] = ACTIONS(4084), - [anon_sym_protected] = ACTIONS(4084), - [anon_sym_static_assert] = ACTIONS(4084), - [anon_sym_LBRACK_COLON] = ACTIONS(4086), + [STATE(3463)] = { + [sym_identifier] = ACTIONS(4048), + [aux_sym_preproc_def_token1] = ACTIONS(4048), + [aux_sym_preproc_if_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4048), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4048), + [sym_preproc_directive] = ACTIONS(4048), + [anon_sym_LPAREN2] = ACTIONS(4050), + [anon_sym_TILDE] = ACTIONS(4050), + [anon_sym_STAR] = ACTIONS(4050), + [anon_sym_AMP_AMP] = ACTIONS(4050), + [anon_sym_AMP] = ACTIONS(4048), + [anon_sym_SEMI] = ACTIONS(4050), + [anon_sym___extension__] = ACTIONS(4048), + [anon_sym_typedef] = ACTIONS(4048), + [anon_sym_virtual] = ACTIONS(4048), + [anon_sym_extern] = ACTIONS(4048), + [anon_sym___attribute__] = ACTIONS(4048), + [anon_sym___attribute] = ACTIONS(4048), + [anon_sym_using] = ACTIONS(4048), + [anon_sym_COLON_COLON] = ACTIONS(4050), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4050), + [anon_sym___declspec] = ACTIONS(4048), + [anon_sym___based] = ACTIONS(4048), + [anon_sym_RBRACE] = ACTIONS(4050), + [anon_sym_signed] = ACTIONS(4048), + [anon_sym_unsigned] = ACTIONS(4048), + [anon_sym_long] = ACTIONS(4048), + [anon_sym_short] = ACTIONS(4048), + [anon_sym_LBRACK] = ACTIONS(4048), + [anon_sym_static] = ACTIONS(4048), + [anon_sym_register] = ACTIONS(4048), + [anon_sym_inline] = ACTIONS(4048), + [anon_sym___inline] = ACTIONS(4048), + [anon_sym___inline__] = ACTIONS(4048), + [anon_sym___forceinline] = ACTIONS(4048), + [anon_sym_thread_local] = ACTIONS(4048), + [anon_sym___thread] = ACTIONS(4048), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_constexpr] = ACTIONS(4048), + [anon_sym_volatile] = ACTIONS(4048), + [anon_sym_restrict] = ACTIONS(4048), + [anon_sym___restrict__] = ACTIONS(4048), + [anon_sym__Atomic] = ACTIONS(4048), + [anon_sym__Noreturn] = ACTIONS(4048), + [anon_sym_noreturn] = ACTIONS(4048), + [anon_sym__Nonnull] = ACTIONS(4048), + [anon_sym_mutable] = ACTIONS(4048), + [anon_sym_constinit] = ACTIONS(4048), + [anon_sym_consteval] = ACTIONS(4048), + [anon_sym_alignas] = ACTIONS(4048), + [anon_sym__Alignas] = ACTIONS(4048), + [sym_primitive_type] = ACTIONS(4048), + [anon_sym_enum] = ACTIONS(4048), + [anon_sym_class] = ACTIONS(4048), + [anon_sym_struct] = ACTIONS(4048), + [anon_sym_union] = ACTIONS(4048), + [anon_sym_typename] = ACTIONS(4048), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4048), + [anon_sym_decltype] = ACTIONS(4048), + [anon_sym_explicit] = ACTIONS(4048), + [anon_sym_private] = ACTIONS(4048), + [anon_sym_template] = ACTIONS(4048), + [anon_sym_operator] = ACTIONS(4048), + [anon_sym_friend] = ACTIONS(4048), + [anon_sym_public] = ACTIONS(4048), + [anon_sym_protected] = ACTIONS(4048), + [anon_sym_static_assert] = ACTIONS(4048), + [anon_sym_LBRACK_COLON] = ACTIONS(4050), }, - [STATE(3479)] = { - [sym_identifier] = ACTIONS(4088), - [aux_sym_preproc_def_token1] = ACTIONS(4088), - [aux_sym_preproc_if_token1] = ACTIONS(4088), - [aux_sym_preproc_if_token2] = ACTIONS(4088), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4088), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4088), - [sym_preproc_directive] = ACTIONS(4088), - [anon_sym_LPAREN2] = ACTIONS(4090), - [anon_sym_TILDE] = ACTIONS(4090), - [anon_sym_STAR] = ACTIONS(4090), - [anon_sym_AMP_AMP] = ACTIONS(4090), - [anon_sym_AMP] = ACTIONS(4088), - [anon_sym_SEMI] = ACTIONS(4090), - [anon_sym___extension__] = ACTIONS(4088), - [anon_sym_typedef] = ACTIONS(4088), - [anon_sym_virtual] = ACTIONS(4088), - [anon_sym_extern] = ACTIONS(4088), - [anon_sym___attribute__] = ACTIONS(4088), - [anon_sym___attribute] = ACTIONS(4088), - [anon_sym_using] = ACTIONS(4088), - [anon_sym_COLON_COLON] = ACTIONS(4090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4090), - [anon_sym___declspec] = ACTIONS(4088), - [anon_sym___based] = ACTIONS(4088), - [anon_sym_signed] = ACTIONS(4088), - [anon_sym_unsigned] = ACTIONS(4088), - [anon_sym_long] = ACTIONS(4088), - [anon_sym_short] = ACTIONS(4088), - [anon_sym_LBRACK] = ACTIONS(4088), - [anon_sym_static] = ACTIONS(4088), - [anon_sym_register] = ACTIONS(4088), - [anon_sym_inline] = ACTIONS(4088), - [anon_sym___inline] = ACTIONS(4088), - [anon_sym___inline__] = ACTIONS(4088), - [anon_sym___forceinline] = ACTIONS(4088), - [anon_sym_thread_local] = ACTIONS(4088), - [anon_sym___thread] = ACTIONS(4088), - [anon_sym_const] = ACTIONS(4088), - [anon_sym_constexpr] = ACTIONS(4088), - [anon_sym_volatile] = ACTIONS(4088), - [anon_sym_restrict] = ACTIONS(4088), - [anon_sym___restrict__] = ACTIONS(4088), - [anon_sym__Atomic] = ACTIONS(4088), - [anon_sym__Noreturn] = ACTIONS(4088), - [anon_sym_noreturn] = ACTIONS(4088), - [anon_sym__Nonnull] = ACTIONS(4088), - [anon_sym_mutable] = ACTIONS(4088), - [anon_sym_constinit] = ACTIONS(4088), - [anon_sym_consteval] = ACTIONS(4088), - [anon_sym_alignas] = ACTIONS(4088), - [anon_sym__Alignas] = ACTIONS(4088), - [sym_primitive_type] = ACTIONS(4088), - [anon_sym_enum] = ACTIONS(4088), - [anon_sym_class] = ACTIONS(4088), - [anon_sym_struct] = ACTIONS(4088), - [anon_sym_union] = ACTIONS(4088), - [anon_sym_typename] = ACTIONS(4088), + [STATE(3464)] = { + [sym_identifier] = ACTIONS(8812), + [aux_sym_preproc_def_token1] = ACTIONS(8812), + [aux_sym_preproc_if_token1] = ACTIONS(8812), + [aux_sym_preproc_if_token2] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8812), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8812), + [sym_preproc_directive] = ACTIONS(8812), + [anon_sym_LPAREN2] = ACTIONS(8814), + [anon_sym_TILDE] = ACTIONS(8814), + [anon_sym_STAR] = ACTIONS(8814), + [anon_sym_AMP_AMP] = ACTIONS(8814), + [anon_sym_AMP] = ACTIONS(8812), + [anon_sym_SEMI] = ACTIONS(8814), + [anon_sym___extension__] = ACTIONS(8812), + [anon_sym_typedef] = ACTIONS(8812), + [anon_sym_virtual] = ACTIONS(8812), + [anon_sym_extern] = ACTIONS(8812), + [anon_sym___attribute__] = ACTIONS(8812), + [anon_sym___attribute] = ACTIONS(8812), + [anon_sym_using] = ACTIONS(8812), + [anon_sym_COLON_COLON] = ACTIONS(8814), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8814), + [anon_sym___declspec] = ACTIONS(8812), + [anon_sym___based] = ACTIONS(8812), + [anon_sym_signed] = ACTIONS(8812), + [anon_sym_unsigned] = ACTIONS(8812), + [anon_sym_long] = ACTIONS(8812), + [anon_sym_short] = ACTIONS(8812), + [anon_sym_LBRACK] = ACTIONS(8812), + [anon_sym_static] = ACTIONS(8812), + [anon_sym_register] = ACTIONS(8812), + [anon_sym_inline] = ACTIONS(8812), + [anon_sym___inline] = ACTIONS(8812), + [anon_sym___inline__] = ACTIONS(8812), + [anon_sym___forceinline] = ACTIONS(8812), + [anon_sym_thread_local] = ACTIONS(8812), + [anon_sym___thread] = ACTIONS(8812), + [anon_sym_const] = ACTIONS(8812), + [anon_sym_constexpr] = ACTIONS(8812), + [anon_sym_volatile] = ACTIONS(8812), + [anon_sym_restrict] = ACTIONS(8812), + [anon_sym___restrict__] = ACTIONS(8812), + [anon_sym__Atomic] = ACTIONS(8812), + [anon_sym__Noreturn] = ACTIONS(8812), + [anon_sym_noreturn] = ACTIONS(8812), + [anon_sym__Nonnull] = ACTIONS(8812), + [anon_sym_mutable] = ACTIONS(8812), + [anon_sym_constinit] = ACTIONS(8812), + [anon_sym_consteval] = ACTIONS(8812), + [anon_sym_alignas] = ACTIONS(8812), + [anon_sym__Alignas] = ACTIONS(8812), + [sym_primitive_type] = ACTIONS(8812), + [anon_sym_enum] = ACTIONS(8812), + [anon_sym_class] = ACTIONS(8812), + [anon_sym_struct] = ACTIONS(8812), + [anon_sym_union] = ACTIONS(8812), + [anon_sym_typename] = ACTIONS(8812), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8812), + [anon_sym_decltype] = ACTIONS(8812), + [anon_sym_explicit] = ACTIONS(8812), + [anon_sym_private] = ACTIONS(8812), + [anon_sym_template] = ACTIONS(8812), + [anon_sym_operator] = ACTIONS(8812), + [anon_sym_friend] = ACTIONS(8812), + [anon_sym_public] = ACTIONS(8812), + [anon_sym_protected] = ACTIONS(8812), + [anon_sym_static_assert] = ACTIONS(8812), + [anon_sym_LBRACK_COLON] = ACTIONS(8814), + }, + [STATE(3465)] = { + [sym_identifier] = ACTIONS(8721), + [aux_sym_preproc_def_token1] = ACTIONS(8721), + [aux_sym_preproc_if_token1] = ACTIONS(8721), + [aux_sym_preproc_if_token2] = ACTIONS(8721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8721), + [sym_preproc_directive] = ACTIONS(8721), + [anon_sym_LPAREN2] = ACTIONS(8723), + [anon_sym_TILDE] = ACTIONS(8723), + [anon_sym_STAR] = ACTIONS(8723), + [anon_sym_AMP_AMP] = ACTIONS(8723), + [anon_sym_AMP] = ACTIONS(8721), + [anon_sym_SEMI] = ACTIONS(8723), + [anon_sym___extension__] = ACTIONS(8721), + [anon_sym_typedef] = ACTIONS(8721), + [anon_sym_virtual] = ACTIONS(8721), + [anon_sym_extern] = ACTIONS(8721), + [anon_sym___attribute__] = ACTIONS(8721), + [anon_sym___attribute] = ACTIONS(8721), + [anon_sym_using] = ACTIONS(8721), + [anon_sym_COLON_COLON] = ACTIONS(8723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8723), + [anon_sym___declspec] = ACTIONS(8721), + [anon_sym___based] = ACTIONS(8721), + [anon_sym_signed] = ACTIONS(8721), + [anon_sym_unsigned] = ACTIONS(8721), + [anon_sym_long] = ACTIONS(8721), + [anon_sym_short] = ACTIONS(8721), + [anon_sym_LBRACK] = ACTIONS(8721), + [anon_sym_static] = ACTIONS(8721), + [anon_sym_register] = ACTIONS(8721), + [anon_sym_inline] = ACTIONS(8721), + [anon_sym___inline] = ACTIONS(8721), + [anon_sym___inline__] = ACTIONS(8721), + [anon_sym___forceinline] = ACTIONS(8721), + [anon_sym_thread_local] = ACTIONS(8721), + [anon_sym___thread] = ACTIONS(8721), + [anon_sym_const] = ACTIONS(8721), + [anon_sym_constexpr] = ACTIONS(8721), + [anon_sym_volatile] = ACTIONS(8721), + [anon_sym_restrict] = ACTIONS(8721), + [anon_sym___restrict__] = ACTIONS(8721), + [anon_sym__Atomic] = ACTIONS(8721), + [anon_sym__Noreturn] = ACTIONS(8721), + [anon_sym_noreturn] = ACTIONS(8721), + [anon_sym__Nonnull] = ACTIONS(8721), + [anon_sym_mutable] = ACTIONS(8721), + [anon_sym_constinit] = ACTIONS(8721), + [anon_sym_consteval] = ACTIONS(8721), + [anon_sym_alignas] = ACTIONS(8721), + [anon_sym__Alignas] = ACTIONS(8721), + [sym_primitive_type] = ACTIONS(8721), + [anon_sym_enum] = ACTIONS(8721), + [anon_sym_class] = ACTIONS(8721), + [anon_sym_struct] = ACTIONS(8721), + [anon_sym_union] = ACTIONS(8721), + [anon_sym_typename] = ACTIONS(8721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8721), + [anon_sym_decltype] = ACTIONS(8721), + [anon_sym_explicit] = ACTIONS(8721), + [anon_sym_private] = ACTIONS(8721), + [anon_sym_template] = ACTIONS(8721), + [anon_sym_operator] = ACTIONS(8721), + [anon_sym_friend] = ACTIONS(8721), + [anon_sym_public] = ACTIONS(8721), + [anon_sym_protected] = ACTIONS(8721), + [anon_sym_static_assert] = ACTIONS(8721), + [anon_sym_LBRACK_COLON] = ACTIONS(8723), + }, + [STATE(3466)] = { + [sym_identifier] = ACTIONS(8800), + [aux_sym_preproc_def_token1] = ACTIONS(8800), + [aux_sym_preproc_if_token1] = ACTIONS(8800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8800), + [sym_preproc_directive] = ACTIONS(8800), + [anon_sym_LPAREN2] = ACTIONS(8802), + [anon_sym_TILDE] = ACTIONS(8802), + [anon_sym_STAR] = ACTIONS(8802), + [anon_sym_AMP_AMP] = ACTIONS(8802), + [anon_sym_AMP] = ACTIONS(8800), + [anon_sym_SEMI] = ACTIONS(8802), + [anon_sym___extension__] = ACTIONS(8800), + [anon_sym_typedef] = ACTIONS(8800), + [anon_sym_virtual] = ACTIONS(8800), + [anon_sym_extern] = ACTIONS(8800), + [anon_sym___attribute__] = ACTIONS(8800), + [anon_sym___attribute] = ACTIONS(8800), + [anon_sym_using] = ACTIONS(8800), + [anon_sym_COLON_COLON] = ACTIONS(8802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8802), + [anon_sym___declspec] = ACTIONS(8800), + [anon_sym___based] = ACTIONS(8800), + [anon_sym_RBRACE] = ACTIONS(8802), + [anon_sym_signed] = ACTIONS(8800), + [anon_sym_unsigned] = ACTIONS(8800), + [anon_sym_long] = ACTIONS(8800), + [anon_sym_short] = ACTIONS(8800), + [anon_sym_LBRACK] = ACTIONS(8800), + [anon_sym_static] = ACTIONS(8800), + [anon_sym_register] = ACTIONS(8800), + [anon_sym_inline] = ACTIONS(8800), + [anon_sym___inline] = ACTIONS(8800), + [anon_sym___inline__] = ACTIONS(8800), + [anon_sym___forceinline] = ACTIONS(8800), + [anon_sym_thread_local] = ACTIONS(8800), + [anon_sym___thread] = ACTIONS(8800), + [anon_sym_const] = ACTIONS(8800), + [anon_sym_constexpr] = ACTIONS(8800), + [anon_sym_volatile] = ACTIONS(8800), + [anon_sym_restrict] = ACTIONS(8800), + [anon_sym___restrict__] = ACTIONS(8800), + [anon_sym__Atomic] = ACTIONS(8800), + [anon_sym__Noreturn] = ACTIONS(8800), + [anon_sym_noreturn] = ACTIONS(8800), + [anon_sym__Nonnull] = ACTIONS(8800), + [anon_sym_mutable] = ACTIONS(8800), + [anon_sym_constinit] = ACTIONS(8800), + [anon_sym_consteval] = ACTIONS(8800), + [anon_sym_alignas] = ACTIONS(8800), + [anon_sym__Alignas] = ACTIONS(8800), + [sym_primitive_type] = ACTIONS(8800), + [anon_sym_enum] = ACTIONS(8800), + [anon_sym_class] = ACTIONS(8800), + [anon_sym_struct] = ACTIONS(8800), + [anon_sym_union] = ACTIONS(8800), + [anon_sym_typename] = ACTIONS(8800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8800), + [anon_sym_decltype] = ACTIONS(8800), + [anon_sym_explicit] = ACTIONS(8800), + [anon_sym_private] = ACTIONS(8800), + [anon_sym_template] = ACTIONS(8800), + [anon_sym_operator] = ACTIONS(8800), + [anon_sym_friend] = ACTIONS(8800), + [anon_sym_public] = ACTIONS(8800), + [anon_sym_protected] = ACTIONS(8800), + [anon_sym_static_assert] = ACTIONS(8800), + [anon_sym_LBRACK_COLON] = ACTIONS(8802), + }, + [STATE(3467)] = { + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym__function_attributes_end] = STATE(4600), + [sym__function_postfix] = STATE(5548), + [sym_trailing_return_type] = STATE(4629), + [sym_requires_clause] = STATE(5548), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(8404), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8402), + [anon_sym_and] = ACTIONS(8402), + [anon_sym_bitor] = ACTIONS(8402), + [anon_sym_xor] = ACTIONS(8402), + [anon_sym_bitand] = ACTIONS(8402), + [anon_sym_not_eq] = ACTIONS(8402), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(9118), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4088), - [anon_sym_decltype] = ACTIONS(4088), - [anon_sym_explicit] = ACTIONS(4088), - [anon_sym_private] = ACTIONS(4088), - [anon_sym_template] = ACTIONS(4088), - [anon_sym_operator] = ACTIONS(4088), - [anon_sym_friend] = ACTIONS(4088), - [anon_sym_public] = ACTIONS(4088), - [anon_sym_protected] = ACTIONS(4088), - [anon_sym_static_assert] = ACTIONS(4088), - [anon_sym_LBRACK_COLON] = ACTIONS(4090), + [anon_sym_final] = ACTIONS(9138), + [anon_sym_override] = ACTIONS(9138), + [anon_sym_requires] = ACTIONS(9141), + [anon_sym_DASH_GT_STAR] = ACTIONS(8402), }, - [STATE(3480)] = { + [STATE(3468)] = { + [sym_identifier] = ACTIONS(3644), + [aux_sym_preproc_def_token1] = ACTIONS(3644), + [aux_sym_preproc_if_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3644), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3644), + [sym_preproc_directive] = ACTIONS(3644), + [anon_sym_LPAREN2] = ACTIONS(3646), + [anon_sym_TILDE] = ACTIONS(3646), + [anon_sym_STAR] = ACTIONS(3646), + [anon_sym_AMP_AMP] = ACTIONS(3646), + [anon_sym_AMP] = ACTIONS(3644), + [anon_sym_SEMI] = ACTIONS(3646), + [anon_sym___extension__] = ACTIONS(3644), + [anon_sym_typedef] = ACTIONS(3644), + [anon_sym_virtual] = ACTIONS(3644), + [anon_sym_extern] = ACTIONS(3644), + [anon_sym___attribute__] = ACTIONS(3644), + [anon_sym___attribute] = ACTIONS(3644), + [anon_sym_using] = ACTIONS(3644), + [anon_sym_COLON_COLON] = ACTIONS(3646), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3646), + [anon_sym___declspec] = ACTIONS(3644), + [anon_sym___based] = ACTIONS(3644), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym_signed] = ACTIONS(3644), + [anon_sym_unsigned] = ACTIONS(3644), + [anon_sym_long] = ACTIONS(3644), + [anon_sym_short] = ACTIONS(3644), + [anon_sym_LBRACK] = ACTIONS(3644), + [anon_sym_static] = ACTIONS(3644), + [anon_sym_register] = ACTIONS(3644), + [anon_sym_inline] = ACTIONS(3644), + [anon_sym___inline] = ACTIONS(3644), + [anon_sym___inline__] = ACTIONS(3644), + [anon_sym___forceinline] = ACTIONS(3644), + [anon_sym_thread_local] = ACTIONS(3644), + [anon_sym___thread] = ACTIONS(3644), + [anon_sym_const] = ACTIONS(3644), + [anon_sym_constexpr] = ACTIONS(3644), + [anon_sym_volatile] = ACTIONS(3644), + [anon_sym_restrict] = ACTIONS(3644), + [anon_sym___restrict__] = ACTIONS(3644), + [anon_sym__Atomic] = ACTIONS(3644), + [anon_sym__Noreturn] = ACTIONS(3644), + [anon_sym_noreturn] = ACTIONS(3644), + [anon_sym__Nonnull] = ACTIONS(3644), + [anon_sym_mutable] = ACTIONS(3644), + [anon_sym_constinit] = ACTIONS(3644), + [anon_sym_consteval] = ACTIONS(3644), + [anon_sym_alignas] = ACTIONS(3644), + [anon_sym__Alignas] = ACTIONS(3644), + [sym_primitive_type] = ACTIONS(3644), + [anon_sym_enum] = ACTIONS(3644), + [anon_sym_class] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3644), + [anon_sym_union] = ACTIONS(3644), + [anon_sym_typename] = ACTIONS(3644), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3644), + [anon_sym_decltype] = ACTIONS(3644), + [anon_sym_explicit] = ACTIONS(3644), + [anon_sym_private] = ACTIONS(3644), + [anon_sym_template] = ACTIONS(3644), + [anon_sym_operator] = ACTIONS(3644), + [anon_sym_friend] = ACTIONS(3644), + [anon_sym_public] = ACTIONS(3644), + [anon_sym_protected] = ACTIONS(3644), + [anon_sym_static_assert] = ACTIONS(3644), + [anon_sym_LBRACK_COLON] = ACTIONS(3646), + }, + [STATE(3469)] = { + [sym_identifier] = ACTIONS(4126), + [aux_sym_preproc_def_token1] = ACTIONS(4126), + [aux_sym_preproc_if_token1] = ACTIONS(4126), + [aux_sym_preproc_if_token2] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4126), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4126), + [sym_preproc_directive] = ACTIONS(4126), + [anon_sym_LPAREN2] = ACTIONS(4128), + [anon_sym_TILDE] = ACTIONS(4128), + [anon_sym_STAR] = ACTIONS(4128), + [anon_sym_AMP_AMP] = ACTIONS(4128), + [anon_sym_AMP] = ACTIONS(4126), + [anon_sym_SEMI] = ACTIONS(4128), + [anon_sym___extension__] = ACTIONS(4126), + [anon_sym_typedef] = ACTIONS(4126), + [anon_sym_virtual] = ACTIONS(4126), + [anon_sym_extern] = ACTIONS(4126), + [anon_sym___attribute__] = ACTIONS(4126), + [anon_sym___attribute] = ACTIONS(4126), + [anon_sym_using] = ACTIONS(4126), + [anon_sym_COLON_COLON] = ACTIONS(4128), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4128), + [anon_sym___declspec] = ACTIONS(4126), + [anon_sym___based] = ACTIONS(4126), + [anon_sym_signed] = ACTIONS(4126), + [anon_sym_unsigned] = ACTIONS(4126), + [anon_sym_long] = ACTIONS(4126), + [anon_sym_short] = ACTIONS(4126), + [anon_sym_LBRACK] = ACTIONS(4126), + [anon_sym_static] = ACTIONS(4126), + [anon_sym_register] = ACTIONS(4126), + [anon_sym_inline] = ACTIONS(4126), + [anon_sym___inline] = ACTIONS(4126), + [anon_sym___inline__] = ACTIONS(4126), + [anon_sym___forceinline] = ACTIONS(4126), + [anon_sym_thread_local] = ACTIONS(4126), + [anon_sym___thread] = ACTIONS(4126), + [anon_sym_const] = ACTIONS(4126), + [anon_sym_constexpr] = ACTIONS(4126), + [anon_sym_volatile] = ACTIONS(4126), + [anon_sym_restrict] = ACTIONS(4126), + [anon_sym___restrict__] = ACTIONS(4126), + [anon_sym__Atomic] = ACTIONS(4126), + [anon_sym__Noreturn] = ACTIONS(4126), + [anon_sym_noreturn] = ACTIONS(4126), + [anon_sym__Nonnull] = ACTIONS(4126), + [anon_sym_mutable] = ACTIONS(4126), + [anon_sym_constinit] = ACTIONS(4126), + [anon_sym_consteval] = ACTIONS(4126), + [anon_sym_alignas] = ACTIONS(4126), + [anon_sym__Alignas] = ACTIONS(4126), + [sym_primitive_type] = ACTIONS(4126), + [anon_sym_enum] = ACTIONS(4126), + [anon_sym_class] = ACTIONS(4126), + [anon_sym_struct] = ACTIONS(4126), + [anon_sym_union] = ACTIONS(4126), + [anon_sym_typename] = ACTIONS(4126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4126), + [anon_sym_decltype] = ACTIONS(4126), + [anon_sym_explicit] = ACTIONS(4126), + [anon_sym_private] = ACTIONS(4126), + [anon_sym_template] = ACTIONS(4126), + [anon_sym_operator] = ACTIONS(4126), + [anon_sym_friend] = ACTIONS(4126), + [anon_sym_public] = ACTIONS(4126), + [anon_sym_protected] = ACTIONS(4126), + [anon_sym_static_assert] = ACTIONS(4126), + [anon_sym_LBRACK_COLON] = ACTIONS(4128), + }, + [STATE(3470)] = { + [sym_identifier] = ACTIONS(8721), + [aux_sym_preproc_def_token1] = ACTIONS(8721), + [aux_sym_preproc_if_token1] = ACTIONS(8721), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8721), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8721), + [sym_preproc_directive] = ACTIONS(8721), + [anon_sym_LPAREN2] = ACTIONS(8723), + [anon_sym_TILDE] = ACTIONS(8723), + [anon_sym_STAR] = ACTIONS(8723), + [anon_sym_AMP_AMP] = ACTIONS(8723), + [anon_sym_AMP] = ACTIONS(8721), + [anon_sym_SEMI] = ACTIONS(8723), + [anon_sym___extension__] = ACTIONS(8721), + [anon_sym_typedef] = ACTIONS(8721), + [anon_sym_virtual] = ACTIONS(8721), + [anon_sym_extern] = ACTIONS(8721), + [anon_sym___attribute__] = ACTIONS(8721), + [anon_sym___attribute] = ACTIONS(8721), + [anon_sym_using] = ACTIONS(8721), + [anon_sym_COLON_COLON] = ACTIONS(8723), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8723), + [anon_sym___declspec] = ACTIONS(8721), + [anon_sym___based] = ACTIONS(8721), + [anon_sym_RBRACE] = ACTIONS(8723), + [anon_sym_signed] = ACTIONS(8721), + [anon_sym_unsigned] = ACTIONS(8721), + [anon_sym_long] = ACTIONS(8721), + [anon_sym_short] = ACTIONS(8721), + [anon_sym_LBRACK] = ACTIONS(8721), + [anon_sym_static] = ACTIONS(8721), + [anon_sym_register] = ACTIONS(8721), + [anon_sym_inline] = ACTIONS(8721), + [anon_sym___inline] = ACTIONS(8721), + [anon_sym___inline__] = ACTIONS(8721), + [anon_sym___forceinline] = ACTIONS(8721), + [anon_sym_thread_local] = ACTIONS(8721), + [anon_sym___thread] = ACTIONS(8721), + [anon_sym_const] = ACTIONS(8721), + [anon_sym_constexpr] = ACTIONS(8721), + [anon_sym_volatile] = ACTIONS(8721), + [anon_sym_restrict] = ACTIONS(8721), + [anon_sym___restrict__] = ACTIONS(8721), + [anon_sym__Atomic] = ACTIONS(8721), + [anon_sym__Noreturn] = ACTIONS(8721), + [anon_sym_noreturn] = ACTIONS(8721), + [anon_sym__Nonnull] = ACTIONS(8721), + [anon_sym_mutable] = ACTIONS(8721), + [anon_sym_constinit] = ACTIONS(8721), + [anon_sym_consteval] = ACTIONS(8721), + [anon_sym_alignas] = ACTIONS(8721), + [anon_sym__Alignas] = ACTIONS(8721), + [sym_primitive_type] = ACTIONS(8721), + [anon_sym_enum] = ACTIONS(8721), + [anon_sym_class] = ACTIONS(8721), + [anon_sym_struct] = ACTIONS(8721), + [anon_sym_union] = ACTIONS(8721), + [anon_sym_typename] = ACTIONS(8721), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8721), + [anon_sym_decltype] = ACTIONS(8721), + [anon_sym_explicit] = ACTIONS(8721), + [anon_sym_private] = ACTIONS(8721), + [anon_sym_template] = ACTIONS(8721), + [anon_sym_operator] = ACTIONS(8721), + [anon_sym_friend] = ACTIONS(8721), + [anon_sym_public] = ACTIONS(8721), + [anon_sym_protected] = ACTIONS(8721), + [anon_sym_static_assert] = ACTIONS(8721), + [anon_sym_LBRACK_COLON] = ACTIONS(8723), + }, + [STATE(3471)] = { + [sym_identifier] = ACTIONS(7144), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_RPAREN] = ACTIONS(7146), + [aux_sym_preproc_if_token2] = ACTIONS(7146), + [aux_sym_preproc_else_token1] = ACTIONS(7146), + [aux_sym_preproc_elif_token1] = ACTIONS(7144), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7146), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7146), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7146), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7146), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7146), + [anon_sym_GT_GT] = ACTIONS(7146), + [anon_sym_SEMI] = ACTIONS(7146), + [anon_sym___extension__] = ACTIONS(7144), + [anon_sym___attribute__] = ACTIONS(7144), + [anon_sym___attribute] = ACTIONS(7144), + [anon_sym_COLON] = ACTIONS(7144), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7146), + [anon_sym_LBRACE] = ACTIONS(7146), + [anon_sym_RBRACE] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7146), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7144), + [anon_sym_volatile] = ACTIONS(7144), + [anon_sym_restrict] = ACTIONS(7144), + [anon_sym___restrict__] = ACTIONS(7144), + [anon_sym__Atomic] = ACTIONS(7144), + [anon_sym__Noreturn] = ACTIONS(7144), + [anon_sym_noreturn] = ACTIONS(7144), + [anon_sym__Nonnull] = ACTIONS(7144), + [anon_sym_mutable] = ACTIONS(7144), + [anon_sym_constinit] = ACTIONS(7144), + [anon_sym_consteval] = ACTIONS(7144), + [anon_sym_alignas] = ACTIONS(7144), + [anon_sym__Alignas] = ACTIONS(7144), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7144), + [anon_sym_and] = ACTIONS(7144), + [anon_sym_bitor] = ACTIONS(7144), + [anon_sym_xor] = ACTIONS(7144), + [anon_sym_bitand] = ACTIONS(7144), + [anon_sym_not_eq] = ACTIONS(7144), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7146), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7144), + [anon_sym_override] = ACTIONS(7144), + [anon_sym_requires] = ACTIONS(7144), + [anon_sym_COLON_RBRACK] = ACTIONS(7146), + }, + [STATE(3472)] = { [sym_identifier] = ACTIONS(4092), [aux_sym_preproc_def_token1] = ACTIONS(4092), [aux_sym_preproc_if_token1] = ACTIONS(4092), - [aux_sym_preproc_if_token2] = ACTIONS(4092), [aux_sym_preproc_ifdef_token1] = ACTIONS(4092), [aux_sym_preproc_ifdef_token2] = ACTIONS(4092), [sym_preproc_directive] = ACTIONS(4092), @@ -428150,6 +427422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK_LBRACK] = ACTIONS(4094), [anon_sym___declspec] = ACTIONS(4092), [anon_sym___based] = ACTIONS(4092), + [anon_sym_RBRACE] = ACTIONS(4094), [anon_sym_signed] = ACTIONS(4092), [anon_sym_unsigned] = ACTIONS(4092), [anon_sym_long] = ACTIONS(4092), @@ -428196,2400 +427469,2475 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_static_assert] = ACTIONS(4092), [anon_sym_LBRACK_COLON] = ACTIONS(4094), }, - [STATE(3481)] = { - [sym_identifier] = ACTIONS(4096), - [aux_sym_preproc_def_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token1] = ACTIONS(4096), - [aux_sym_preproc_if_token2] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4096), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4096), - [sym_preproc_directive] = ACTIONS(4096), - [anon_sym_LPAREN2] = ACTIONS(4098), - [anon_sym_TILDE] = ACTIONS(4098), - [anon_sym_STAR] = ACTIONS(4098), - [anon_sym_AMP_AMP] = ACTIONS(4098), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_SEMI] = ACTIONS(4098), - [anon_sym___extension__] = ACTIONS(4096), - [anon_sym_typedef] = ACTIONS(4096), - [anon_sym_virtual] = ACTIONS(4096), - [anon_sym_extern] = ACTIONS(4096), - [anon_sym___attribute__] = ACTIONS(4096), - [anon_sym___attribute] = ACTIONS(4096), - [anon_sym_using] = ACTIONS(4096), - [anon_sym_COLON_COLON] = ACTIONS(4098), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4098), - [anon_sym___declspec] = ACTIONS(4096), - [anon_sym___based] = ACTIONS(4096), - [anon_sym_signed] = ACTIONS(4096), - [anon_sym_unsigned] = ACTIONS(4096), - [anon_sym_long] = ACTIONS(4096), - [anon_sym_short] = ACTIONS(4096), - [anon_sym_LBRACK] = ACTIONS(4096), - [anon_sym_static] = ACTIONS(4096), - [anon_sym_register] = ACTIONS(4096), - [anon_sym_inline] = ACTIONS(4096), - [anon_sym___inline] = ACTIONS(4096), - [anon_sym___inline__] = ACTIONS(4096), - [anon_sym___forceinline] = ACTIONS(4096), - [anon_sym_thread_local] = ACTIONS(4096), - [anon_sym___thread] = ACTIONS(4096), - [anon_sym_const] = ACTIONS(4096), - [anon_sym_constexpr] = ACTIONS(4096), - [anon_sym_volatile] = ACTIONS(4096), - [anon_sym_restrict] = ACTIONS(4096), - [anon_sym___restrict__] = ACTIONS(4096), - [anon_sym__Atomic] = ACTIONS(4096), - [anon_sym__Noreturn] = ACTIONS(4096), - [anon_sym_noreturn] = ACTIONS(4096), - [anon_sym__Nonnull] = ACTIONS(4096), - [anon_sym_mutable] = ACTIONS(4096), - [anon_sym_constinit] = ACTIONS(4096), - [anon_sym_consteval] = ACTIONS(4096), - [anon_sym_alignas] = ACTIONS(4096), - [anon_sym__Alignas] = ACTIONS(4096), - [sym_primitive_type] = ACTIONS(4096), - [anon_sym_enum] = ACTIONS(4096), - [anon_sym_class] = ACTIONS(4096), - [anon_sym_struct] = ACTIONS(4096), - [anon_sym_union] = ACTIONS(4096), - [anon_sym_typename] = ACTIONS(4096), + [STATE(3473)] = { + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym_RBRACE] = ACTIONS(3744), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4096), - [anon_sym_decltype] = ACTIONS(4096), - [anon_sym_explicit] = ACTIONS(4096), - [anon_sym_private] = ACTIONS(4096), - [anon_sym_template] = ACTIONS(4096), - [anon_sym_operator] = ACTIONS(4096), - [anon_sym_friend] = ACTIONS(4096), - [anon_sym_public] = ACTIONS(4096), - [anon_sym_protected] = ACTIONS(4096), - [anon_sym_static_assert] = ACTIONS(4096), - [anon_sym_LBRACK_COLON] = ACTIONS(4098), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_private] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_friend] = ACTIONS(3742), + [anon_sym_public] = ACTIONS(3742), + [anon_sym_protected] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + }, + [STATE(3474)] = { + [sym_identifier] = ACTIONS(3742), + [aux_sym_preproc_def_token1] = ACTIONS(3742), + [aux_sym_preproc_if_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token1] = ACTIONS(3742), + [aux_sym_preproc_ifdef_token2] = ACTIONS(3742), + [sym_preproc_directive] = ACTIONS(3742), + [anon_sym_LPAREN2] = ACTIONS(3744), + [anon_sym_TILDE] = ACTIONS(3744), + [anon_sym_STAR] = ACTIONS(3744), + [anon_sym_AMP_AMP] = ACTIONS(3744), + [anon_sym_AMP] = ACTIONS(3742), + [anon_sym_SEMI] = ACTIONS(3744), + [anon_sym___extension__] = ACTIONS(3742), + [anon_sym_typedef] = ACTIONS(3742), + [anon_sym_virtual] = ACTIONS(3742), + [anon_sym_extern] = ACTIONS(3742), + [anon_sym___attribute__] = ACTIONS(3742), + [anon_sym___attribute] = ACTIONS(3742), + [anon_sym_using] = ACTIONS(3742), + [anon_sym_COLON_COLON] = ACTIONS(3744), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3744), + [anon_sym___declspec] = ACTIONS(3742), + [anon_sym___based] = ACTIONS(3742), + [anon_sym_RBRACE] = ACTIONS(3744), + [anon_sym_signed] = ACTIONS(3742), + [anon_sym_unsigned] = ACTIONS(3742), + [anon_sym_long] = ACTIONS(3742), + [anon_sym_short] = ACTIONS(3742), + [anon_sym_LBRACK] = ACTIONS(3742), + [anon_sym_static] = ACTIONS(3742), + [anon_sym_register] = ACTIONS(3742), + [anon_sym_inline] = ACTIONS(3742), + [anon_sym___inline] = ACTIONS(3742), + [anon_sym___inline__] = ACTIONS(3742), + [anon_sym___forceinline] = ACTIONS(3742), + [anon_sym_thread_local] = ACTIONS(3742), + [anon_sym___thread] = ACTIONS(3742), + [anon_sym_const] = ACTIONS(3742), + [anon_sym_constexpr] = ACTIONS(3742), + [anon_sym_volatile] = ACTIONS(3742), + [anon_sym_restrict] = ACTIONS(3742), + [anon_sym___restrict__] = ACTIONS(3742), + [anon_sym__Atomic] = ACTIONS(3742), + [anon_sym__Noreturn] = ACTIONS(3742), + [anon_sym_noreturn] = ACTIONS(3742), + [anon_sym__Nonnull] = ACTIONS(3742), + [anon_sym_mutable] = ACTIONS(3742), + [anon_sym_constinit] = ACTIONS(3742), + [anon_sym_consteval] = ACTIONS(3742), + [anon_sym_alignas] = ACTIONS(3742), + [anon_sym__Alignas] = ACTIONS(3742), + [sym_primitive_type] = ACTIONS(3742), + [anon_sym_enum] = ACTIONS(3742), + [anon_sym_class] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_union] = ACTIONS(3742), + [anon_sym_typename] = ACTIONS(3742), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3742), + [anon_sym_decltype] = ACTIONS(3742), + [anon_sym_explicit] = ACTIONS(3742), + [anon_sym_private] = ACTIONS(3742), + [anon_sym_template] = ACTIONS(3742), + [anon_sym_operator] = ACTIONS(3742), + [anon_sym_friend] = ACTIONS(3742), + [anon_sym_public] = ACTIONS(3742), + [anon_sym_protected] = ACTIONS(3742), + [anon_sym_static_assert] = ACTIONS(3742), + [anon_sym_LBRACK_COLON] = ACTIONS(3744), + }, + [STATE(3475)] = { + [sym_identifier] = ACTIONS(9144), + [anon_sym_LPAREN2] = ACTIONS(9146), + [anon_sym_TILDE] = ACTIONS(9146), + [anon_sym_STAR] = ACTIONS(9146), + [anon_sym_AMP_AMP] = ACTIONS(9146), + [anon_sym_AMP] = ACTIONS(9144), + [anon_sym___extension__] = ACTIONS(9144), + [anon_sym_virtual] = ACTIONS(9144), + [anon_sym_extern] = ACTIONS(9144), + [anon_sym___attribute__] = ACTIONS(9144), + [anon_sym___attribute] = ACTIONS(9144), + [anon_sym_using] = ACTIONS(9144), + [anon_sym_COLON_COLON] = ACTIONS(9146), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9146), + [anon_sym___declspec] = ACTIONS(9144), + [anon_sym___based] = ACTIONS(9144), + [anon_sym___cdecl] = ACTIONS(9144), + [anon_sym___clrcall] = ACTIONS(9144), + [anon_sym___stdcall] = ACTIONS(9144), + [anon_sym___fastcall] = ACTIONS(9144), + [anon_sym___thiscall] = ACTIONS(9144), + [anon_sym___vectorcall] = ACTIONS(9144), + [anon_sym_LBRACE] = ACTIONS(9146), + [anon_sym_signed] = ACTIONS(9144), + [anon_sym_unsigned] = ACTIONS(9144), + [anon_sym_long] = ACTIONS(9144), + [anon_sym_short] = ACTIONS(9144), + [anon_sym_LBRACK] = ACTIONS(9144), + [anon_sym_static] = ACTIONS(9144), + [anon_sym_register] = ACTIONS(9144), + [anon_sym_inline] = ACTIONS(9144), + [anon_sym___inline] = ACTIONS(9144), + [anon_sym___inline__] = ACTIONS(9144), + [anon_sym___forceinline] = ACTIONS(9144), + [anon_sym_thread_local] = ACTIONS(9144), + [anon_sym___thread] = ACTIONS(9144), + [anon_sym_const] = ACTIONS(9144), + [anon_sym_constexpr] = ACTIONS(9144), + [anon_sym_volatile] = ACTIONS(9144), + [anon_sym_restrict] = ACTIONS(9144), + [anon_sym___restrict__] = ACTIONS(9144), + [anon_sym__Atomic] = ACTIONS(9144), + [anon_sym__Noreturn] = ACTIONS(9144), + [anon_sym_noreturn] = ACTIONS(9144), + [anon_sym__Nonnull] = ACTIONS(9144), + [anon_sym_mutable] = ACTIONS(9144), + [anon_sym_constinit] = ACTIONS(9144), + [anon_sym_consteval] = ACTIONS(9144), + [anon_sym_alignas] = ACTIONS(9144), + [anon_sym__Alignas] = ACTIONS(9144), + [sym_primitive_type] = ACTIONS(9144), + [anon_sym_enum] = ACTIONS(9144), + [anon_sym_class] = ACTIONS(9144), + [anon_sym_struct] = ACTIONS(9144), + [anon_sym_union] = ACTIONS(9144), + [anon_sym_typename] = ACTIONS(9144), + [anon_sym_DASH_GT] = ACTIONS(9146), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9144), + [anon_sym_decltype] = ACTIONS(9144), + [anon_sym_explicit] = ACTIONS(9144), + [anon_sym_template] = ACTIONS(9144), + [anon_sym_operator] = ACTIONS(9144), + [anon_sym_friend] = ACTIONS(9144), + [anon_sym_noexcept] = ACTIONS(9144), + [anon_sym_throw] = ACTIONS(9144), + [anon_sym_concept] = ACTIONS(9144), + [anon_sym_requires] = ACTIONS(9144), + [anon_sym_LBRACK_COLON] = ACTIONS(9146), + }, + [STATE(3476)] = { + [sym_identifier] = ACTIONS(8725), + [aux_sym_preproc_def_token1] = ACTIONS(8725), + [aux_sym_preproc_if_token1] = ACTIONS(8725), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8725), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8725), + [sym_preproc_directive] = ACTIONS(8725), + [anon_sym_LPAREN2] = ACTIONS(8727), + [anon_sym_TILDE] = ACTIONS(8727), + [anon_sym_STAR] = ACTIONS(8727), + [anon_sym_AMP_AMP] = ACTIONS(8727), + [anon_sym_AMP] = ACTIONS(8725), + [anon_sym_SEMI] = ACTIONS(8727), + [anon_sym___extension__] = ACTIONS(8725), + [anon_sym_typedef] = ACTIONS(8725), + [anon_sym_virtual] = ACTIONS(8725), + [anon_sym_extern] = ACTIONS(8725), + [anon_sym___attribute__] = ACTIONS(8725), + [anon_sym___attribute] = ACTIONS(8725), + [anon_sym_using] = ACTIONS(8725), + [anon_sym_COLON_COLON] = ACTIONS(8727), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8727), + [anon_sym___declspec] = ACTIONS(8725), + [anon_sym___based] = ACTIONS(8725), + [anon_sym_RBRACE] = ACTIONS(8727), + [anon_sym_signed] = ACTIONS(8725), + [anon_sym_unsigned] = ACTIONS(8725), + [anon_sym_long] = ACTIONS(8725), + [anon_sym_short] = ACTIONS(8725), + [anon_sym_LBRACK] = ACTIONS(8725), + [anon_sym_static] = ACTIONS(8725), + [anon_sym_register] = ACTIONS(8725), + [anon_sym_inline] = ACTIONS(8725), + [anon_sym___inline] = ACTIONS(8725), + [anon_sym___inline__] = ACTIONS(8725), + [anon_sym___forceinline] = ACTIONS(8725), + [anon_sym_thread_local] = ACTIONS(8725), + [anon_sym___thread] = ACTIONS(8725), + [anon_sym_const] = ACTIONS(8725), + [anon_sym_constexpr] = ACTIONS(8725), + [anon_sym_volatile] = ACTIONS(8725), + [anon_sym_restrict] = ACTIONS(8725), + [anon_sym___restrict__] = ACTIONS(8725), + [anon_sym__Atomic] = ACTIONS(8725), + [anon_sym__Noreturn] = ACTIONS(8725), + [anon_sym_noreturn] = ACTIONS(8725), + [anon_sym__Nonnull] = ACTIONS(8725), + [anon_sym_mutable] = ACTIONS(8725), + [anon_sym_constinit] = ACTIONS(8725), + [anon_sym_consteval] = ACTIONS(8725), + [anon_sym_alignas] = ACTIONS(8725), + [anon_sym__Alignas] = ACTIONS(8725), + [sym_primitive_type] = ACTIONS(8725), + [anon_sym_enum] = ACTIONS(8725), + [anon_sym_class] = ACTIONS(8725), + [anon_sym_struct] = ACTIONS(8725), + [anon_sym_union] = ACTIONS(8725), + [anon_sym_typename] = ACTIONS(8725), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8725), + [anon_sym_decltype] = ACTIONS(8725), + [anon_sym_explicit] = ACTIONS(8725), + [anon_sym_private] = ACTIONS(8725), + [anon_sym_template] = ACTIONS(8725), + [anon_sym_operator] = ACTIONS(8725), + [anon_sym_friend] = ACTIONS(8725), + [anon_sym_public] = ACTIONS(8725), + [anon_sym_protected] = ACTIONS(8725), + [anon_sym_static_assert] = ACTIONS(8725), + [anon_sym_LBRACK_COLON] = ACTIONS(8727), + }, + [STATE(3477)] = { + [sym_identifier] = ACTIONS(4321), + [aux_sym_preproc_def_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token1] = ACTIONS(4321), + [aux_sym_preproc_if_token2] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token1] = ACTIONS(4321), + [aux_sym_preproc_ifdef_token2] = ACTIONS(4321), + [sym_preproc_directive] = ACTIONS(4321), + [anon_sym_LPAREN2] = ACTIONS(4323), + [anon_sym_TILDE] = ACTIONS(4323), + [anon_sym_STAR] = ACTIONS(4323), + [anon_sym_AMP_AMP] = ACTIONS(4323), + [anon_sym_AMP] = ACTIONS(4321), + [anon_sym_SEMI] = ACTIONS(4323), + [anon_sym___extension__] = ACTIONS(4321), + [anon_sym_typedef] = ACTIONS(4321), + [anon_sym_virtual] = ACTIONS(4321), + [anon_sym_extern] = ACTIONS(4321), + [anon_sym___attribute__] = ACTIONS(4321), + [anon_sym___attribute] = ACTIONS(4321), + [anon_sym_using] = ACTIONS(4321), + [anon_sym_COLON_COLON] = ACTIONS(4323), + [anon_sym_LBRACK_LBRACK] = ACTIONS(4323), + [anon_sym___declspec] = ACTIONS(4321), + [anon_sym___based] = ACTIONS(4321), + [anon_sym_signed] = ACTIONS(4321), + [anon_sym_unsigned] = ACTIONS(4321), + [anon_sym_long] = ACTIONS(4321), + [anon_sym_short] = ACTIONS(4321), + [anon_sym_LBRACK] = ACTIONS(4321), + [anon_sym_static] = ACTIONS(4321), + [anon_sym_register] = ACTIONS(4321), + [anon_sym_inline] = ACTIONS(4321), + [anon_sym___inline] = ACTIONS(4321), + [anon_sym___inline__] = ACTIONS(4321), + [anon_sym___forceinline] = ACTIONS(4321), + [anon_sym_thread_local] = ACTIONS(4321), + [anon_sym___thread] = ACTIONS(4321), + [anon_sym_const] = ACTIONS(4321), + [anon_sym_constexpr] = ACTIONS(4321), + [anon_sym_volatile] = ACTIONS(4321), + [anon_sym_restrict] = ACTIONS(4321), + [anon_sym___restrict__] = ACTIONS(4321), + [anon_sym__Atomic] = ACTIONS(4321), + [anon_sym__Noreturn] = ACTIONS(4321), + [anon_sym_noreturn] = ACTIONS(4321), + [anon_sym__Nonnull] = ACTIONS(4321), + [anon_sym_mutable] = ACTIONS(4321), + [anon_sym_constinit] = ACTIONS(4321), + [anon_sym_consteval] = ACTIONS(4321), + [anon_sym_alignas] = ACTIONS(4321), + [anon_sym__Alignas] = ACTIONS(4321), + [sym_primitive_type] = ACTIONS(4321), + [anon_sym_enum] = ACTIONS(4321), + [anon_sym_class] = ACTIONS(4321), + [anon_sym_struct] = ACTIONS(4321), + [anon_sym_union] = ACTIONS(4321), + [anon_sym_typename] = ACTIONS(4321), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(4321), + [anon_sym_decltype] = ACTIONS(4321), + [anon_sym_explicit] = ACTIONS(4321), + [anon_sym_private] = ACTIONS(4321), + [anon_sym_template] = ACTIONS(4321), + [anon_sym_operator] = ACTIONS(4321), + [anon_sym_friend] = ACTIONS(4321), + [anon_sym_public] = ACTIONS(4321), + [anon_sym_protected] = ACTIONS(4321), + [anon_sym_static_assert] = ACTIONS(4321), + [anon_sym_LBRACK_COLON] = ACTIONS(4323), + }, + [STATE(3478)] = { + [sym_identifier] = ACTIONS(8800), + [aux_sym_preproc_def_token1] = ACTIONS(8800), + [aux_sym_preproc_if_token1] = ACTIONS(8800), + [aux_sym_preproc_if_token2] = ACTIONS(8800), + [aux_sym_preproc_ifdef_token1] = ACTIONS(8800), + [aux_sym_preproc_ifdef_token2] = ACTIONS(8800), + [sym_preproc_directive] = ACTIONS(8800), + [anon_sym_LPAREN2] = ACTIONS(8802), + [anon_sym_TILDE] = ACTIONS(8802), + [anon_sym_STAR] = ACTIONS(8802), + [anon_sym_AMP_AMP] = ACTIONS(8802), + [anon_sym_AMP] = ACTIONS(8800), + [anon_sym_SEMI] = ACTIONS(8802), + [anon_sym___extension__] = ACTIONS(8800), + [anon_sym_typedef] = ACTIONS(8800), + [anon_sym_virtual] = ACTIONS(8800), + [anon_sym_extern] = ACTIONS(8800), + [anon_sym___attribute__] = ACTIONS(8800), + [anon_sym___attribute] = ACTIONS(8800), + [anon_sym_using] = ACTIONS(8800), + [anon_sym_COLON_COLON] = ACTIONS(8802), + [anon_sym_LBRACK_LBRACK] = ACTIONS(8802), + [anon_sym___declspec] = ACTIONS(8800), + [anon_sym___based] = ACTIONS(8800), + [anon_sym_signed] = ACTIONS(8800), + [anon_sym_unsigned] = ACTIONS(8800), + [anon_sym_long] = ACTIONS(8800), + [anon_sym_short] = ACTIONS(8800), + [anon_sym_LBRACK] = ACTIONS(8800), + [anon_sym_static] = ACTIONS(8800), + [anon_sym_register] = ACTIONS(8800), + [anon_sym_inline] = ACTIONS(8800), + [anon_sym___inline] = ACTIONS(8800), + [anon_sym___inline__] = ACTIONS(8800), + [anon_sym___forceinline] = ACTIONS(8800), + [anon_sym_thread_local] = ACTIONS(8800), + [anon_sym___thread] = ACTIONS(8800), + [anon_sym_const] = ACTIONS(8800), + [anon_sym_constexpr] = ACTIONS(8800), + [anon_sym_volatile] = ACTIONS(8800), + [anon_sym_restrict] = ACTIONS(8800), + [anon_sym___restrict__] = ACTIONS(8800), + [anon_sym__Atomic] = ACTIONS(8800), + [anon_sym__Noreturn] = ACTIONS(8800), + [anon_sym_noreturn] = ACTIONS(8800), + [anon_sym__Nonnull] = ACTIONS(8800), + [anon_sym_mutable] = ACTIONS(8800), + [anon_sym_constinit] = ACTIONS(8800), + [anon_sym_consteval] = ACTIONS(8800), + [anon_sym_alignas] = ACTIONS(8800), + [anon_sym__Alignas] = ACTIONS(8800), + [sym_primitive_type] = ACTIONS(8800), + [anon_sym_enum] = ACTIONS(8800), + [anon_sym_class] = ACTIONS(8800), + [anon_sym_struct] = ACTIONS(8800), + [anon_sym_union] = ACTIONS(8800), + [anon_sym_typename] = ACTIONS(8800), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8800), + [anon_sym_decltype] = ACTIONS(8800), + [anon_sym_explicit] = ACTIONS(8800), + [anon_sym_private] = ACTIONS(8800), + [anon_sym_template] = ACTIONS(8800), + [anon_sym_operator] = ACTIONS(8800), + [anon_sym_friend] = ACTIONS(8800), + [anon_sym_public] = ACTIONS(8800), + [anon_sym_protected] = ACTIONS(8800), + [anon_sym_static_assert] = ACTIONS(8800), + [anon_sym_LBRACK_COLON] = ACTIONS(8802), + }, + [STATE(3479)] = { + [sym_attribute_specifier] = STATE(4353), + [sym_attribute_declaration] = STATE(4760), + [sym_gnu_asm_expression] = STATE(9096), + [sym_virtual_specifier] = STATE(5064), + [sym__function_attributes_end] = STATE(4561), + [sym__function_postfix] = STATE(5619), + [sym_trailing_return_type] = STATE(4705), + [sym_requires_clause] = STATE(5619), + [aux_sym_type_definition_repeat1] = STATE(4353), + [aux_sym_attributed_declarator_repeat1] = STATE(4760), + [aux_sym__function_postfix_repeat1] = STATE(5064), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym___attribute__] = ACTIONS(6788), + [anon_sym___attribute] = ACTIONS(6790), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7874), + [anon_sym_and] = ACTIONS(7874), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7874), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(8541), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6801), + [anon_sym_override] = ACTIONS(6801), + [anon_sym_requires] = ACTIONS(6807), + [anon_sym_DASH_GT_STAR] = ACTIONS(7874), + }, + [STATE(3480)] = { + [sym_identifier] = ACTIONS(5587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5589), + [anon_sym_COMMA] = ACTIONS(5589), + [anon_sym_RPAREN] = ACTIONS(5589), + [aux_sym_preproc_if_token2] = ACTIONS(5589), + [aux_sym_preproc_else_token1] = ACTIONS(5589), + [aux_sym_preproc_elif_token1] = ACTIONS(5587), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5589), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5589), + [anon_sym_LPAREN2] = ACTIONS(5589), + [anon_sym_DASH] = ACTIONS(5587), + [anon_sym_PLUS] = ACTIONS(5587), + [anon_sym_STAR] = ACTIONS(5587), + [anon_sym_SLASH] = ACTIONS(5587), + [anon_sym_PERCENT] = ACTIONS(5587), + [anon_sym_PIPE_PIPE] = ACTIONS(5589), + [anon_sym_AMP_AMP] = ACTIONS(5589), + [anon_sym_PIPE] = ACTIONS(5587), + [anon_sym_CARET] = ACTIONS(5587), + [anon_sym_AMP] = ACTIONS(5587), + [anon_sym_EQ_EQ] = ACTIONS(5589), + [anon_sym_BANG_EQ] = ACTIONS(5589), + [anon_sym_GT] = ACTIONS(5587), + [anon_sym_GT_EQ] = ACTIONS(5589), + [anon_sym_LT_EQ] = ACTIONS(5587), + [anon_sym_LT] = ACTIONS(5587), + [anon_sym_LT_LT] = ACTIONS(5587), + [anon_sym_GT_GT] = ACTIONS(5587), + [anon_sym_SEMI] = ACTIONS(5589), + [anon_sym___attribute__] = ACTIONS(5587), + [anon_sym___attribute] = ACTIONS(5587), + [anon_sym_COLON] = ACTIONS(5587), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5589), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5589), + [anon_sym_RBRACE] = ACTIONS(5589), + [anon_sym_LBRACK] = ACTIONS(5587), + [anon_sym_EQ] = ACTIONS(5587), + [anon_sym_QMARK] = ACTIONS(5589), + [anon_sym_STAR_EQ] = ACTIONS(5589), + [anon_sym_SLASH_EQ] = ACTIONS(5589), + [anon_sym_PERCENT_EQ] = ACTIONS(5589), + [anon_sym_PLUS_EQ] = ACTIONS(5589), + [anon_sym_DASH_EQ] = ACTIONS(5589), + [anon_sym_LT_LT_EQ] = ACTIONS(5589), + [anon_sym_GT_GT_EQ] = ACTIONS(5589), + [anon_sym_AMP_EQ] = ACTIONS(5589), + [anon_sym_CARET_EQ] = ACTIONS(5589), + [anon_sym_PIPE_EQ] = ACTIONS(5589), + [anon_sym_and_eq] = ACTIONS(5587), + [anon_sym_or_eq] = ACTIONS(5587), + [anon_sym_xor_eq] = ACTIONS(5587), + [anon_sym_LT_EQ_GT] = ACTIONS(5589), + [anon_sym_or] = ACTIONS(5587), + [anon_sym_and] = ACTIONS(5587), + [anon_sym_bitor] = ACTIONS(5587), + [anon_sym_xor] = ACTIONS(5587), + [anon_sym_bitand] = ACTIONS(5587), + [anon_sym_not_eq] = ACTIONS(5587), + [anon_sym_DASH_DASH] = ACTIONS(5589), + [anon_sym_PLUS_PLUS] = ACTIONS(5589), + [anon_sym_DOT] = ACTIONS(5587), + [anon_sym_DOT_STAR] = ACTIONS(5589), + [anon_sym_DASH_GT] = ACTIONS(5589), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5587), + [anon_sym_override] = ACTIONS(5587), + [anon_sym_requires] = ACTIONS(5587), + [anon_sym_COLON_RBRACK] = ACTIONS(5589), + }, + [STATE(3481)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7624), + [anon_sym_COMMA] = ACTIONS(7624), + [anon_sym_RPAREN] = ACTIONS(7624), + [anon_sym_LPAREN2] = ACTIONS(7624), + [anon_sym_DASH] = ACTIONS(7622), + [anon_sym_PLUS] = ACTIONS(7622), + [anon_sym_STAR] = ACTIONS(7624), + [anon_sym_SLASH] = ACTIONS(7622), + [anon_sym_PERCENT] = ACTIONS(7624), + [anon_sym_PIPE_PIPE] = ACTIONS(7624), + [anon_sym_AMP_AMP] = ACTIONS(7624), + [anon_sym_PIPE] = ACTIONS(7622), + [anon_sym_CARET] = ACTIONS(7624), + [anon_sym_AMP] = ACTIONS(7622), + [anon_sym_EQ_EQ] = ACTIONS(7624), + [anon_sym_BANG_EQ] = ACTIONS(7624), + [anon_sym_GT] = ACTIONS(7622), + [anon_sym_GT_EQ] = ACTIONS(7624), + [anon_sym_LT_EQ] = ACTIONS(7622), + [anon_sym_LT] = ACTIONS(7622), + [anon_sym_LT_LT] = ACTIONS(7624), + [anon_sym_GT_GT] = ACTIONS(7624), + [anon_sym_SEMI] = ACTIONS(7624), + [anon_sym___extension__] = ACTIONS(7624), + [anon_sym___attribute__] = ACTIONS(7624), + [anon_sym___attribute] = ACTIONS(7622), + [anon_sym_COLON] = ACTIONS(7622), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7624), + [anon_sym_LBRACE] = ACTIONS(7624), + [anon_sym_RBRACE] = ACTIONS(7624), + [anon_sym_signed] = ACTIONS(9148), + [anon_sym_unsigned] = ACTIONS(9148), + [anon_sym_long] = ACTIONS(9148), + [anon_sym_short] = ACTIONS(9148), + [anon_sym_LBRACK] = ACTIONS(7624), + [anon_sym_const] = ACTIONS(7622), + [anon_sym_constexpr] = ACTIONS(7624), + [anon_sym_volatile] = ACTIONS(7624), + [anon_sym_restrict] = ACTIONS(7624), + [anon_sym___restrict__] = ACTIONS(7624), + [anon_sym__Atomic] = ACTIONS(7624), + [anon_sym__Noreturn] = ACTIONS(7624), + [anon_sym_noreturn] = ACTIONS(7624), + [anon_sym__Nonnull] = ACTIONS(7624), + [anon_sym_mutable] = ACTIONS(7624), + [anon_sym_constinit] = ACTIONS(7624), + [anon_sym_consteval] = ACTIONS(7624), + [anon_sym_alignas] = ACTIONS(7624), + [anon_sym__Alignas] = ACTIONS(7624), + [anon_sym_QMARK] = ACTIONS(7624), + [anon_sym_LT_EQ_GT] = ACTIONS(7624), + [anon_sym_or] = ACTIONS(7624), + [anon_sym_and] = ACTIONS(7624), + [anon_sym_bitor] = ACTIONS(7624), + [anon_sym_xor] = ACTIONS(7624), + [anon_sym_bitand] = ACTIONS(7624), + [anon_sym_not_eq] = ACTIONS(7624), + [anon_sym_DASH_DASH] = ACTIONS(7624), + [anon_sym_PLUS_PLUS] = ACTIONS(7624), + [anon_sym_DOT] = ACTIONS(7622), + [anon_sym_DOT_STAR] = ACTIONS(7624), + [anon_sym_DASH_GT] = ACTIONS(7624), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7624), + [anon_sym_override] = ACTIONS(7624), + [anon_sym_requires] = ACTIONS(7624), + [anon_sym_COLON_RBRACK] = ACTIONS(7624), }, [STATE(3482)] = { - [sym_identifier] = ACTIONS(4100), - [aux_sym_preproc_def_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token1] = ACTIONS(4100), - [aux_sym_preproc_if_token2] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token1] = ACTIONS(4100), - [aux_sym_preproc_ifdef_token2] = ACTIONS(4100), - [sym_preproc_directive] = ACTIONS(4100), - [anon_sym_LPAREN2] = ACTIONS(4102), - [anon_sym_TILDE] = ACTIONS(4102), - [anon_sym_STAR] = ACTIONS(4102), - [anon_sym_AMP_AMP] = ACTIONS(4102), - [anon_sym_AMP] = ACTIONS(4100), - [anon_sym_SEMI] = ACTIONS(4102), - [anon_sym___extension__] = ACTIONS(4100), - [anon_sym_typedef] = ACTIONS(4100), - [anon_sym_virtual] = ACTIONS(4100), - [anon_sym_extern] = ACTIONS(4100), - [anon_sym___attribute__] = ACTIONS(4100), - [anon_sym___attribute] = ACTIONS(4100), - [anon_sym_using] = ACTIONS(4100), - [anon_sym_COLON_COLON] = ACTIONS(4102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(4102), - [anon_sym___declspec] = ACTIONS(4100), - [anon_sym___based] = ACTIONS(4100), - [anon_sym_signed] = ACTIONS(4100), - [anon_sym_unsigned] = ACTIONS(4100), - [anon_sym_long] = ACTIONS(4100), - [anon_sym_short] = ACTIONS(4100), - [anon_sym_LBRACK] = ACTIONS(4100), - [anon_sym_static] = ACTIONS(4100), - [anon_sym_register] = ACTIONS(4100), - [anon_sym_inline] = ACTIONS(4100), - [anon_sym___inline] = ACTIONS(4100), - [anon_sym___inline__] = ACTIONS(4100), - [anon_sym___forceinline] = ACTIONS(4100), - [anon_sym_thread_local] = ACTIONS(4100), - [anon_sym___thread] = ACTIONS(4100), - [anon_sym_const] = ACTIONS(4100), - [anon_sym_constexpr] = ACTIONS(4100), - [anon_sym_volatile] = ACTIONS(4100), - [anon_sym_restrict] = ACTIONS(4100), - [anon_sym___restrict__] = ACTIONS(4100), - [anon_sym__Atomic] = ACTIONS(4100), - [anon_sym__Noreturn] = ACTIONS(4100), - [anon_sym_noreturn] = ACTIONS(4100), - [anon_sym__Nonnull] = ACTIONS(4100), - [anon_sym_mutable] = ACTIONS(4100), - [anon_sym_constinit] = ACTIONS(4100), - [anon_sym_consteval] = ACTIONS(4100), - [anon_sym_alignas] = ACTIONS(4100), - [anon_sym__Alignas] = ACTIONS(4100), - [sym_primitive_type] = ACTIONS(4100), - [anon_sym_enum] = ACTIONS(4100), - [anon_sym_class] = ACTIONS(4100), - [anon_sym_struct] = ACTIONS(4100), - [anon_sym_union] = ACTIONS(4100), - [anon_sym_typename] = ACTIONS(4100), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(4100), - [anon_sym_decltype] = ACTIONS(4100), - [anon_sym_explicit] = ACTIONS(4100), - [anon_sym_private] = ACTIONS(4100), - [anon_sym_template] = ACTIONS(4100), - [anon_sym_operator] = ACTIONS(4100), - [anon_sym_friend] = ACTIONS(4100), - [anon_sym_public] = ACTIONS(4100), - [anon_sym_protected] = ACTIONS(4100), - [anon_sym_static_assert] = ACTIONS(4100), - [anon_sym_LBRACK_COLON] = ACTIONS(4102), + [sym__abstract_declarator] = STATE(6326), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2077), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_RPAREN] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym_SEMI] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(7369), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7371), + [anon_sym_RBRACE] = ACTIONS(7371), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7371), }, [STATE(3483)] = { - [sym__abstract_declarator] = STATE(6373), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3511), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2080), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3511), - [sym_identifier] = ACTIONS(7393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [aux_sym_preproc_if_token2] = ACTIONS(7391), - [aux_sym_preproc_else_token1] = ACTIONS(7391), - [aux_sym_preproc_elif_token1] = ACTIONS(7393), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7391), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(8416), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(8418), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(8420), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7393), - [anon_sym_and] = ACTIONS(7393), - [anon_sym_bitor] = ACTIONS(7393), - [anon_sym_xor] = ACTIONS(7393), - [anon_sym_bitand] = ACTIONS(7393), - [anon_sym_not_eq] = ACTIONS(7393), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7674), + [anon_sym_and] = ACTIONS(7674), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7674), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7672), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + [anon_sym_DASH_GT_STAR] = ACTIONS(7674), }, [STATE(3484)] = { - [sym_argument_list] = STATE(3894), - [sym_initializer_list] = STATE(5969), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7687), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [sym_argument_list] = STATE(5560), + [sym_initializer_list] = STATE(6047), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(3485)] = { - [sym_argument_list] = STATE(3892), - [sym_initializer_list] = STATE(5964), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7687), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym___attribute__] = ACTIONS(7223), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [sym__abstract_declarator] = STATE(6300), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2077), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(7347), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), + [anon_sym_RBRACE] = ACTIONS(7345), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7345), }, [STATE(3486)] = { - [sym_argument_list] = STATE(5569), - [sym_initializer_list] = STATE(6057), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8569), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + [sym_string_literal] = STATE(3622), + [sym_template_argument_list] = STATE(5153), + [sym_raw_string_literal] = STATE(3622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(9150), + [anon_sym_LPAREN2] = ACTIONS(9150), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9150), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(9152), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5619), + [anon_sym_L_DQUOTE] = ACTIONS(6901), + [anon_sym_u_DQUOTE] = ACTIONS(6901), + [anon_sym_U_DQUOTE] = ACTIONS(6901), + [anon_sym_u8_DQUOTE] = ACTIONS(6901), + [anon_sym_DQUOTE] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6903), + [anon_sym_LR_DQUOTE] = ACTIONS(6903), + [anon_sym_uR_DQUOTE] = ACTIONS(6903), + [anon_sym_UR_DQUOTE] = ACTIONS(6903), + [anon_sym_u8R_DQUOTE] = ACTIONS(6903), + [anon_sym_DASH_GT_STAR] = ACTIONS(5611), }, [STATE(3487)] = { - [sym_string_literal] = STATE(3589), - [sym_template_argument_list] = STATE(3740), - [sym_raw_string_literal] = STATE(3589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(8258), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym___attribute__] = ACTIONS(5638), - [anon_sym___attribute] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(9150), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9150), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(9152), [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(6876), - [anon_sym_u_DQUOTE] = ACTIONS(6876), - [anon_sym_U_DQUOTE] = ACTIONS(6876), - [anon_sym_u8_DQUOTE] = ACTIONS(6876), - [anon_sym_DQUOTE] = ACTIONS(6876), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6878), - [anon_sym_LR_DQUOTE] = ACTIONS(6878), - [anon_sym_uR_DQUOTE] = ACTIONS(6878), - [anon_sym_UR_DQUOTE] = ACTIONS(6878), - [anon_sym_u8R_DQUOTE] = ACTIONS(6878), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), }, [STATE(3488)] = { - [sym_type_qualifier] = STATE(3489), - [sym_alignas_qualifier] = STATE(3877), - [aux_sym__type_definition_type_repeat1] = STATE(3489), - [aux_sym_sized_type_specifier_repeat1] = STATE(3802), - [sym_identifier] = ACTIONS(9154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(9156), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(9159), - [anon_sym_unsigned] = ACTIONS(9159), - [anon_sym_long] = ACTIONS(9159), - [anon_sym_short] = ACTIONS(9159), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_RBRACK] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(9156), - [anon_sym_constexpr] = ACTIONS(9156), - [anon_sym_volatile] = ACTIONS(9156), - [anon_sym_restrict] = ACTIONS(9156), - [anon_sym___restrict__] = ACTIONS(9156), - [anon_sym__Atomic] = ACTIONS(9156), - [anon_sym__Noreturn] = ACTIONS(9156), - [anon_sym_noreturn] = ACTIONS(9156), - [anon_sym__Nonnull] = ACTIONS(9156), - [anon_sym_mutable] = ACTIONS(9156), - [anon_sym_constinit] = ACTIONS(9156), - [anon_sym_consteval] = ACTIONS(9156), - [anon_sym_alignas] = ACTIONS(9161), - [anon_sym__Alignas] = ACTIONS(9161), - [sym_primitive_type] = ACTIONS(8878), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_requires] = ACTIONS(7251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7674), + [anon_sym_and] = ACTIONS(7674), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7674), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7672), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + [anon_sym_DASH_GT_STAR] = ACTIONS(7674), }, [STATE(3489)] = { - [sym_type_qualifier] = STATE(3659), - [sym_alignas_qualifier] = STATE(3877), - [aux_sym__type_definition_type_repeat1] = STATE(3659), - [aux_sym_sized_type_specifier_repeat1] = STATE(3303), - [sym_identifier] = ACTIONS(9164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(9166), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(8864), - [anon_sym_unsigned] = ACTIONS(8864), - [anon_sym_long] = ACTIONS(8864), - [anon_sym_short] = ACTIONS(8864), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_RBRACK] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(9166), - [anon_sym_constexpr] = ACTIONS(9166), - [anon_sym_volatile] = ACTIONS(9166), - [anon_sym_restrict] = ACTIONS(9166), - [anon_sym___restrict__] = ACTIONS(9166), - [anon_sym__Atomic] = ACTIONS(9166), - [anon_sym__Noreturn] = ACTIONS(9166), - [anon_sym_noreturn] = ACTIONS(9166), - [anon_sym__Nonnull] = ACTIONS(9166), - [anon_sym_mutable] = ACTIONS(9166), - [anon_sym_constinit] = ACTIONS(9166), - [anon_sym_consteval] = ACTIONS(9166), - [anon_sym_alignas] = ACTIONS(9169), - [anon_sym__Alignas] = ACTIONS(9169), - [sym_primitive_type] = ACTIONS(8866), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_requires] = ACTIONS(7207), + [sym_string_literal] = STATE(2577), + [sym_template_argument_list] = STATE(4128), + [sym_raw_string_literal] = STATE(2577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(9154), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(9157), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6899), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(9160), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), }, [STATE(3490)] = { - [sym_type_qualifier] = STATE(3492), - [sym_alignas_qualifier] = STATE(3945), - [aux_sym__type_definition_type_repeat1] = STATE(3492), - [aux_sym_sized_type_specifier_repeat1] = STATE(3764), - [sym_identifier] = ACTIONS(9172), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(9174), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(9177), - [anon_sym_unsigned] = ACTIONS(9177), - [anon_sym_long] = ACTIONS(9177), - [anon_sym_short] = ACTIONS(9177), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(9174), - [anon_sym_constexpr] = ACTIONS(9174), - [anon_sym_volatile] = ACTIONS(9174), - [anon_sym_restrict] = ACTIONS(9174), - [anon_sym___restrict__] = ACTIONS(9174), - [anon_sym__Atomic] = ACTIONS(9174), - [anon_sym__Noreturn] = ACTIONS(9174), - [anon_sym_noreturn] = ACTIONS(9174), - [anon_sym__Nonnull] = ACTIONS(9174), - [anon_sym_mutable] = ACTIONS(9174), - [anon_sym_constinit] = ACTIONS(9174), - [anon_sym_consteval] = ACTIONS(9174), - [anon_sym_alignas] = ACTIONS(9179), - [anon_sym__Alignas] = ACTIONS(9179), - [sym_primitive_type] = ACTIONS(9182), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7251), - [anon_sym_override] = ACTIONS(7251), - [anon_sym_GT2] = ACTIONS(7249), - [anon_sym_requires] = ACTIONS(7251), + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [aux_sym_preproc_if_token2] = ACTIONS(7329), + [aux_sym_preproc_else_token1] = ACTIONS(7329), + [aux_sym_preproc_elif_token1] = ACTIONS(7327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_RBRACK] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), }, [STATE(3491)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [aux_sym_preproc_if_token2] = ACTIONS(7293), - [aux_sym_preproc_else_token1] = ACTIONS(7293), - [aux_sym_preproc_elif_token1] = ACTIONS(7291), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_GT_GT] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_RBRACK] = ACTIONS(7293), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7291), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7291), - [anon_sym_not_eq] = ACTIONS(7291), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_requires] = ACTIONS(7291), + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym_ref_qualifier] = STATE(3609), + [sym__function_exception_specification] = STATE(4049), + [sym__function_attributes_end] = STATE(5999), + [sym__function_postfix] = STATE(5370), + [sym_trailing_return_type] = STATE(6084), + [sym_noexcept] = STATE(4049), + [sym_throw_specifier] = STATE(4049), + [sym_requires_clause] = STATE(5370), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7874), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7874), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(9163), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7874), + [anon_sym_AMP] = ACTIONS(9166), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7874), + [anon_sym_GT_GT] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7168), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(9169), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9172), + [anon_sym_override] = ACTIONS(9172), + [anon_sym_noexcept] = ACTIONS(7179), + [anon_sym_throw] = ACTIONS(7181), + [anon_sym_requires] = ACTIONS(9175), }, [STATE(3492)] = { - [sym_type_qualifier] = STATE(3691), - [sym_alignas_qualifier] = STATE(3945), - [aux_sym__type_definition_type_repeat1] = STATE(3691), - [aux_sym_sized_type_specifier_repeat1] = STATE(4039), - [sym_identifier] = ACTIONS(9184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7207), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(9186), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(9189), - [anon_sym_unsigned] = ACTIONS(9189), - [anon_sym_long] = ACTIONS(9189), - [anon_sym_short] = ACTIONS(9189), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(9186), - [anon_sym_constexpr] = ACTIONS(9186), - [anon_sym_volatile] = ACTIONS(9186), - [anon_sym_restrict] = ACTIONS(9186), - [anon_sym___restrict__] = ACTIONS(9186), - [anon_sym__Atomic] = ACTIONS(9186), - [anon_sym__Noreturn] = ACTIONS(9186), - [anon_sym_noreturn] = ACTIONS(9186), - [anon_sym__Nonnull] = ACTIONS(9186), - [anon_sym_mutable] = ACTIONS(9186), - [anon_sym_constinit] = ACTIONS(9186), - [anon_sym_consteval] = ACTIONS(9186), - [anon_sym_alignas] = ACTIONS(9191), - [anon_sym__Alignas] = ACTIONS(9191), - [sym_primitive_type] = ACTIONS(9194), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7207), - [anon_sym_override] = ACTIONS(7207), - [anon_sym_GT2] = ACTIONS(7205), - [anon_sym_requires] = ACTIONS(7207), + [sym_identifier] = ACTIONS(3126), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3116), + [anon_sym_COMMA] = ACTIONS(3116), + [anon_sym_RPAREN] = ACTIONS(3116), + [anon_sym_LPAREN2] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_STAR] = ACTIONS(3116), + [anon_sym_AMP_AMP] = ACTIONS(3116), + [anon_sym_AMP] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym___extension__] = ACTIONS(3126), + [anon_sym_virtual] = ACTIONS(3126), + [anon_sym_extern] = ACTIONS(3126), + [anon_sym___attribute__] = ACTIONS(3126), + [anon_sym___attribute] = ACTIONS(3126), + [anon_sym_COLON_COLON] = ACTIONS(3116), + [anon_sym_LBRACK_LBRACK] = ACTIONS(3116), + [anon_sym___declspec] = ACTIONS(3126), + [anon_sym___based] = ACTIONS(3126), + [anon_sym___cdecl] = ACTIONS(3126), + [anon_sym___clrcall] = ACTIONS(3126), + [anon_sym___stdcall] = ACTIONS(3126), + [anon_sym___fastcall] = ACTIONS(3126), + [anon_sym___thiscall] = ACTIONS(3126), + [anon_sym___vectorcall] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_signed] = ACTIONS(3126), + [anon_sym_unsigned] = ACTIONS(3126), + [anon_sym_long] = ACTIONS(3126), + [anon_sym_short] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3126), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_EQ] = ACTIONS(3116), + [anon_sym_register] = ACTIONS(3126), + [anon_sym_inline] = ACTIONS(3126), + [anon_sym___inline] = ACTIONS(3126), + [anon_sym___inline__] = ACTIONS(3126), + [anon_sym___forceinline] = ACTIONS(3126), + [anon_sym_thread_local] = ACTIONS(3126), + [anon_sym___thread] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_constexpr] = ACTIONS(3126), + [anon_sym_volatile] = ACTIONS(3126), + [anon_sym_restrict] = ACTIONS(3126), + [anon_sym___restrict__] = ACTIONS(3126), + [anon_sym__Atomic] = ACTIONS(3126), + [anon_sym__Noreturn] = ACTIONS(3126), + [anon_sym_noreturn] = ACTIONS(3126), + [anon_sym__Nonnull] = ACTIONS(3126), + [anon_sym_mutable] = ACTIONS(3126), + [anon_sym_constinit] = ACTIONS(3126), + [anon_sym_consteval] = ACTIONS(3126), + [anon_sym_alignas] = ACTIONS(3126), + [anon_sym__Alignas] = ACTIONS(3126), + [sym_primitive_type] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_struct] = ACTIONS(3126), + [anon_sym_union] = ACTIONS(3126), + [anon_sym_typename] = ACTIONS(3126), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(3126), + [anon_sym_decltype] = ACTIONS(3126), + [anon_sym_explicit] = ACTIONS(3126), + [anon_sym_template] = ACTIONS(3126), + [anon_sym_GT2] = ACTIONS(3116), + [anon_sym_operator] = ACTIONS(3126), + [anon_sym_LBRACK_COLON] = ACTIONS(3116), }, [STATE(3493)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym_ref_qualifier] = STATE(3634), - [sym__function_exception_specification] = STATE(4103), - [sym__function_attributes_end] = STATE(6021), - [sym__function_postfix] = STATE(5460), - [sym_trailing_return_type] = STATE(6116), - [sym_noexcept] = STATE(4103), - [sym_throw_specifier] = STATE(4103), - [sym_requires_clause] = STATE(5460), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7791), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7791), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(9196), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7791), - [anon_sym_AMP] = ACTIONS(9199), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7791), - [anon_sym_GT_GT] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7178), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(9202), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9205), - [anon_sym_override] = ACTIONS(9205), - [anon_sym_noexcept] = ACTIONS(7276), - [anon_sym_throw] = ACTIONS(7278), - [anon_sym_requires] = ACTIONS(9208), + [sym_argument_list] = STATE(3931), + [sym_initializer_list] = STATE(5980), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), }, [STATE(3494)] = { - [sym_identifier] = ACTIONS(7231), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_TILDE] = ACTIONS(7233), - [anon_sym_STAR] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7233), - [anon_sym___extension__] = ACTIONS(7231), - [anon_sym_virtual] = ACTIONS(7231), - [anon_sym_extern] = ACTIONS(7231), - [anon_sym___attribute__] = ACTIONS(7231), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_using] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(7233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7233), - [anon_sym___declspec] = ACTIONS(7231), - [anon_sym___based] = ACTIONS(7231), - [anon_sym___cdecl] = ACTIONS(7231), - [anon_sym___clrcall] = ACTIONS(7231), - [anon_sym___stdcall] = ACTIONS(7231), - [anon_sym___fastcall] = ACTIONS(7231), - [anon_sym___thiscall] = ACTIONS(7231), - [anon_sym___vectorcall] = ACTIONS(7231), - [anon_sym_signed] = ACTIONS(7231), - [anon_sym_unsigned] = ACTIONS(7231), - [anon_sym_long] = ACTIONS(7231), - [anon_sym_short] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(7231), - [anon_sym_static] = ACTIONS(7231), - [anon_sym_register] = ACTIONS(7231), - [anon_sym_inline] = ACTIONS(7231), - [anon_sym___inline] = ACTIONS(7231), - [anon_sym___inline__] = ACTIONS(7231), - [anon_sym___forceinline] = ACTIONS(7231), - [anon_sym_thread_local] = ACTIONS(7231), - [anon_sym___thread] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7231), - [anon_sym_volatile] = ACTIONS(7231), - [anon_sym_restrict] = ACTIONS(7231), - [anon_sym___restrict__] = ACTIONS(7231), - [anon_sym__Atomic] = ACTIONS(7231), - [anon_sym__Noreturn] = ACTIONS(7231), - [anon_sym_noreturn] = ACTIONS(7231), - [anon_sym__Nonnull] = ACTIONS(7231), - [anon_sym_mutable] = ACTIONS(7231), - [anon_sym_constinit] = ACTIONS(7231), - [anon_sym_consteval] = ACTIONS(7231), - [anon_sym_alignas] = ACTIONS(7231), - [anon_sym__Alignas] = ACTIONS(7231), - [sym_primitive_type] = ACTIONS(7231), - [anon_sym_enum] = ACTIONS(7231), - [anon_sym_class] = ACTIONS(7231), - [anon_sym_struct] = ACTIONS(7231), - [anon_sym_union] = ACTIONS(7231), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_typename] = ACTIONS(7231), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7231), - [anon_sym_decltype] = ACTIONS(7231), - [anon_sym_explicit] = ACTIONS(7231), - [anon_sym_template] = ACTIONS(7231), - [anon_sym_operator] = ACTIONS(7231), - [anon_sym_friend] = ACTIONS(7231), - [anon_sym_concept] = ACTIONS(7231), - [anon_sym_LBRACK_COLON] = ACTIONS(7233), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7725), + [anon_sym_and] = ACTIONS(7725), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7725), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7723), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + [anon_sym_DASH_GT_STAR] = ACTIONS(7725), }, [STATE(3495)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [aux_sym_preproc_if_token2] = ACTIONS(7293), - [aux_sym_preproc_else_token1] = ACTIONS(7293), - [aux_sym_preproc_elif_token1] = ACTIONS(7291), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_GT_GT] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_RBRACK] = ACTIONS(7293), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7291), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7291), - [anon_sym_not_eq] = ACTIONS(7291), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_requires] = ACTIONS(7291), + [sym__abstract_declarator] = STATE(6347), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2066), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3888), + [sym_identifier] = ACTIONS(7369), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [aux_sym_preproc_if_token2] = ACTIONS(7371), + [aux_sym_preproc_else_token1] = ACTIONS(7371), + [aux_sym_preproc_elif_token1] = ACTIONS(7369), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7371), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(8441), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(8443), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(8445), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7369), + [anon_sym_and] = ACTIONS(7369), + [anon_sym_bitor] = ACTIONS(7369), + [anon_sym_xor] = ACTIONS(7369), + [anon_sym_bitand] = ACTIONS(7369), + [anon_sym_not_eq] = ACTIONS(7369), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), }, [STATE(3496)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym_ref_qualifier] = STATE(3649), - [sym__function_exception_specification] = STATE(4099), - [sym__function_attributes_end] = STATE(5960), - [sym__function_postfix] = STATE(5460), - [sym_trailing_return_type] = STATE(5881), - [sym_noexcept] = STATE(4099), - [sym_throw_specifier] = STATE(4099), - [sym_requires_clause] = STATE(5460), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7791), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7791), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(9196), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7791), - [anon_sym_AMP] = ACTIONS(9199), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7791), - [anon_sym_GT_GT] = ACTIONS(7791), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7176), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7791), - [anon_sym_and] = ACTIONS(7791), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7791), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(9211), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7219), - [anon_sym_override] = ACTIONS(7219), - [anon_sym_noexcept] = ACTIONS(7192), - [anon_sym_throw] = ACTIONS(7194), - [anon_sym_requires] = ACTIONS(7221), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), + [sym__abstract_declarator] = STATE(6364), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3507), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2066), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3507), + [sym_identifier] = ACTIONS(7373), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [aux_sym_preproc_if_token2] = ACTIONS(7375), + [aux_sym_preproc_else_token1] = ACTIONS(7375), + [aux_sym_preproc_elif_token1] = ACTIONS(7373), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7375), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(8441), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(8443), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(8445), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7373), + [anon_sym_and] = ACTIONS(7373), + [anon_sym_bitor] = ACTIONS(7373), + [anon_sym_xor] = ACTIONS(7373), + [anon_sym_bitand] = ACTIONS(7373), + [anon_sym_not_eq] = ACTIONS(7373), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), }, [STATE(3497)] = { - [sym_identifier] = ACTIONS(3128), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3118), - [anon_sym_COMMA] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [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(3128), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym___extension__] = ACTIONS(3128), - [anon_sym_virtual] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym___attribute__] = ACTIONS(3128), - [anon_sym___attribute] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3118), - [anon_sym_LBRACK_LBRACK] = ACTIONS(3118), - [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(3118), - [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_EQ] = ACTIONS(3118), - [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_typename] = ACTIONS(3128), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(3128), - [anon_sym_decltype] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_template] = ACTIONS(3128), - [anon_sym_GT2] = ACTIONS(3118), - [anon_sym_operator] = ACTIONS(3128), - [anon_sym_LBRACK_COLON] = ACTIONS(3118), + [sym_string_literal] = STATE(3622), + [sym_template_argument_list] = STATE(4770), + [sym_raw_string_literal] = STATE(3622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(9154), + [anon_sym_LPAREN2] = ACTIONS(9154), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(6896), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6899), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(9160), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5619), + [anon_sym_L_DQUOTE] = ACTIONS(6901), + [anon_sym_u_DQUOTE] = ACTIONS(6901), + [anon_sym_U_DQUOTE] = ACTIONS(6901), + [anon_sym_u8_DQUOTE] = ACTIONS(6901), + [anon_sym_DQUOTE] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6903), + [anon_sym_LR_DQUOTE] = ACTIONS(6903), + [anon_sym_uR_DQUOTE] = ACTIONS(6903), + [anon_sym_UR_DQUOTE] = ACTIONS(6903), + [anon_sym_u8R_DQUOTE] = ACTIONS(6903), + [anon_sym_DASH_GT_STAR] = ACTIONS(5611), }, [STATE(3498)] = { - [sym_identifier] = ACTIONS(7301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), - [anon_sym_COMMA] = ACTIONS(7303), - [aux_sym_preproc_if_token2] = ACTIONS(7303), - [aux_sym_preproc_else_token1] = ACTIONS(7303), - [aux_sym_preproc_elif_token1] = ACTIONS(7301), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7303), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7303), - [anon_sym_LPAREN2] = ACTIONS(7303), - [anon_sym_DASH] = ACTIONS(7301), - [anon_sym_PLUS] = ACTIONS(7301), - [anon_sym_STAR] = ACTIONS(7303), - [anon_sym_SLASH] = ACTIONS(7301), - [anon_sym_PERCENT] = ACTIONS(7303), - [anon_sym_PIPE_PIPE] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7303), - [anon_sym_PIPE] = ACTIONS(7301), - [anon_sym_CARET] = ACTIONS(7303), - [anon_sym_AMP] = ACTIONS(7301), - [anon_sym_EQ_EQ] = ACTIONS(7303), - [anon_sym_BANG_EQ] = ACTIONS(7303), - [anon_sym_GT] = ACTIONS(7301), - [anon_sym_GT_EQ] = ACTIONS(7303), - [anon_sym_LT_EQ] = ACTIONS(7301), - [anon_sym_LT] = ACTIONS(7301), - [anon_sym_LT_LT] = ACTIONS(7303), - [anon_sym_GT_GT] = ACTIONS(7303), - [anon_sym___extension__] = ACTIONS(7301), - [anon_sym___attribute__] = ACTIONS(7301), - [anon_sym___attribute] = ACTIONS(7301), - [anon_sym_COLON] = ACTIONS(7301), - [anon_sym_COLON_COLON] = ACTIONS(7303), - [anon_sym_LBRACE] = ACTIONS(7303), - [anon_sym_LBRACK] = ACTIONS(7303), - [anon_sym_RBRACK] = ACTIONS(7303), - [anon_sym_const] = ACTIONS(7301), - [anon_sym_constexpr] = ACTIONS(7301), - [anon_sym_volatile] = ACTIONS(7301), - [anon_sym_restrict] = ACTIONS(7301), - [anon_sym___restrict__] = ACTIONS(7301), - [anon_sym__Atomic] = ACTIONS(7301), - [anon_sym__Noreturn] = ACTIONS(7301), - [anon_sym_noreturn] = ACTIONS(7301), - [anon_sym__Nonnull] = ACTIONS(7301), - [anon_sym_mutable] = ACTIONS(7301), - [anon_sym_constinit] = ACTIONS(7301), - [anon_sym_consteval] = ACTIONS(7301), - [anon_sym_alignas] = ACTIONS(7301), - [anon_sym__Alignas] = ACTIONS(7301), - [anon_sym_QMARK] = ACTIONS(7303), - [anon_sym_LT_EQ_GT] = ACTIONS(7303), - [anon_sym_or] = ACTIONS(7301), - [anon_sym_and] = ACTIONS(7301), - [anon_sym_bitor] = ACTIONS(7301), - [anon_sym_xor] = ACTIONS(7301), - [anon_sym_bitand] = ACTIONS(7301), - [anon_sym_not_eq] = ACTIONS(7301), - [anon_sym_DASH_DASH] = ACTIONS(7303), - [anon_sym_PLUS_PLUS] = ACTIONS(7303), - [anon_sym_DOT] = ACTIONS(7301), - [anon_sym_DOT_STAR] = ACTIONS(7303), - [anon_sym_DASH_GT] = ACTIONS(7303), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7301), - [anon_sym_decltype] = ACTIONS(7301), - [anon_sym_final] = ACTIONS(7301), - [anon_sym_override] = ACTIONS(7301), - [anon_sym_requires] = ACTIONS(7301), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7596), + [anon_sym_COMMA] = ACTIONS(7596), + [anon_sym_RPAREN] = ACTIONS(7596), + [anon_sym_LPAREN2] = ACTIONS(7596), + [anon_sym_DASH] = ACTIONS(7594), + [anon_sym_PLUS] = ACTIONS(7594), + [anon_sym_STAR] = ACTIONS(7594), + [anon_sym_SLASH] = ACTIONS(7594), + [anon_sym_PERCENT] = ACTIONS(7594), + [anon_sym_PIPE_PIPE] = ACTIONS(7596), + [anon_sym_AMP_AMP] = ACTIONS(7596), + [anon_sym_PIPE] = ACTIONS(7594), + [anon_sym_CARET] = ACTIONS(7594), + [anon_sym_AMP] = ACTIONS(7594), + [anon_sym_EQ_EQ] = ACTIONS(7596), + [anon_sym_BANG_EQ] = ACTIONS(7596), + [anon_sym_GT] = ACTIONS(7594), + [anon_sym_GT_EQ] = ACTIONS(7596), + [anon_sym_LT_EQ] = ACTIONS(7594), + [anon_sym_LT] = ACTIONS(7594), + [anon_sym_LT_LT] = ACTIONS(7594), + [anon_sym_GT_GT] = ACTIONS(7594), + [anon_sym___extension__] = ACTIONS(7596), + [anon_sym_LBRACE] = ACTIONS(7596), + [anon_sym_LBRACK] = ACTIONS(7596), + [anon_sym_EQ] = ACTIONS(7594), + [anon_sym_const] = ACTIONS(7594), + [anon_sym_constexpr] = ACTIONS(7596), + [anon_sym_volatile] = ACTIONS(7596), + [anon_sym_restrict] = ACTIONS(7596), + [anon_sym___restrict__] = ACTIONS(7596), + [anon_sym__Atomic] = ACTIONS(7596), + [anon_sym__Noreturn] = ACTIONS(7596), + [anon_sym_noreturn] = ACTIONS(7596), + [anon_sym__Nonnull] = ACTIONS(7596), + [anon_sym_mutable] = ACTIONS(7596), + [anon_sym_constinit] = ACTIONS(7596), + [anon_sym_consteval] = ACTIONS(7596), + [anon_sym_alignas] = ACTIONS(7596), + [anon_sym__Alignas] = ACTIONS(7596), + [anon_sym_QMARK] = ACTIONS(7596), + [anon_sym_STAR_EQ] = ACTIONS(7596), + [anon_sym_SLASH_EQ] = ACTIONS(7596), + [anon_sym_PERCENT_EQ] = ACTIONS(7596), + [anon_sym_PLUS_EQ] = ACTIONS(7596), + [anon_sym_DASH_EQ] = ACTIONS(7596), + [anon_sym_LT_LT_EQ] = ACTIONS(7596), + [anon_sym_GT_GT_EQ] = ACTIONS(7596), + [anon_sym_AMP_EQ] = ACTIONS(7596), + [anon_sym_CARET_EQ] = ACTIONS(7596), + [anon_sym_PIPE_EQ] = ACTIONS(7596), + [anon_sym_LT_EQ_GT] = ACTIONS(7596), + [anon_sym_or] = ACTIONS(7596), + [anon_sym_and] = ACTIONS(7596), + [anon_sym_bitor] = ACTIONS(7596), + [anon_sym_xor] = ACTIONS(7596), + [anon_sym_bitand] = ACTIONS(7596), + [anon_sym_not_eq] = ACTIONS(7596), + [anon_sym_DASH_DASH] = ACTIONS(7596), + [anon_sym_PLUS_PLUS] = ACTIONS(7596), + [anon_sym_DOT] = ACTIONS(7594), + [anon_sym_DOT_STAR] = ACTIONS(7596), + [anon_sym_DASH_GT] = ACTIONS(7594), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7596), + [anon_sym_override] = ACTIONS(7596), + [anon_sym_requires] = ACTIONS(7596), + [anon_sym_DASH_GT_STAR] = ACTIONS(7596), }, [STATE(3499)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym___attribute__] = ACTIONS(7225), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(9214), - [anon_sym_unsigned] = ACTIONS(9214), - [anon_sym_long] = ACTIONS(9214), - [anon_sym_short] = ACTIONS(9214), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [sym_argument_list] = STATE(3878), + [sym_initializer_list] = STATE(3878), + [sym_new_declarator] = STATE(3608), + [sym_identifier] = ACTIONS(9178), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9180), + [anon_sym_COMMA] = ACTIONS(9180), + [anon_sym_RPAREN] = ACTIONS(9180), + [aux_sym_preproc_if_token2] = ACTIONS(9180), + [aux_sym_preproc_else_token1] = ACTIONS(9180), + [aux_sym_preproc_elif_token1] = ACTIONS(9178), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9180), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9180), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9178), + [anon_sym_PLUS] = ACTIONS(9178), + [anon_sym_STAR] = ACTIONS(9178), + [anon_sym_SLASH] = ACTIONS(9178), + [anon_sym_PERCENT] = ACTIONS(9178), + [anon_sym_PIPE_PIPE] = ACTIONS(9180), + [anon_sym_AMP_AMP] = ACTIONS(9180), + [anon_sym_PIPE] = ACTIONS(9178), + [anon_sym_CARET] = ACTIONS(9178), + [anon_sym_AMP] = ACTIONS(9178), + [anon_sym_EQ_EQ] = ACTIONS(9180), + [anon_sym_BANG_EQ] = ACTIONS(9180), + [anon_sym_GT] = ACTIONS(9178), + [anon_sym_GT_EQ] = ACTIONS(9180), + [anon_sym_LT_EQ] = ACTIONS(9178), + [anon_sym_LT] = ACTIONS(9178), + [anon_sym_LT_LT] = ACTIONS(9178), + [anon_sym_GT_GT] = ACTIONS(9178), + [anon_sym_SEMI] = ACTIONS(9180), + [anon_sym___attribute__] = ACTIONS(9178), + [anon_sym___attribute] = ACTIONS(9178), + [anon_sym_COLON] = ACTIONS(9178), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9180), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(9180), + [anon_sym_LBRACK] = ACTIONS(9184), + [anon_sym_EQ] = ACTIONS(9178), + [anon_sym_QMARK] = ACTIONS(9180), + [anon_sym_STAR_EQ] = ACTIONS(9180), + [anon_sym_SLASH_EQ] = ACTIONS(9180), + [anon_sym_PERCENT_EQ] = ACTIONS(9180), + [anon_sym_PLUS_EQ] = ACTIONS(9180), + [anon_sym_DASH_EQ] = ACTIONS(9180), + [anon_sym_LT_LT_EQ] = ACTIONS(9180), + [anon_sym_GT_GT_EQ] = ACTIONS(9180), + [anon_sym_AMP_EQ] = ACTIONS(9180), + [anon_sym_CARET_EQ] = ACTIONS(9180), + [anon_sym_PIPE_EQ] = ACTIONS(9180), + [anon_sym_and_eq] = ACTIONS(9178), + [anon_sym_or_eq] = ACTIONS(9178), + [anon_sym_xor_eq] = ACTIONS(9178), + [anon_sym_LT_EQ_GT] = ACTIONS(9180), + [anon_sym_or] = ACTIONS(9178), + [anon_sym_and] = ACTIONS(9178), + [anon_sym_bitor] = ACTIONS(9178), + [anon_sym_xor] = ACTIONS(9178), + [anon_sym_bitand] = ACTIONS(9178), + [anon_sym_not_eq] = ACTIONS(9178), + [anon_sym_DASH_DASH] = ACTIONS(9180), + [anon_sym_PLUS_PLUS] = ACTIONS(9180), + [anon_sym_DOT] = ACTIONS(9178), + [anon_sym_DOT_STAR] = ACTIONS(9180), + [anon_sym_DASH_GT] = ACTIONS(9180), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9180), }, [STATE(3500)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7160), - [anon_sym_COMMA] = ACTIONS(7160), - [anon_sym_RPAREN] = ACTIONS(7160), - [anon_sym_LPAREN2] = ACTIONS(7160), - [anon_sym_DASH] = ACTIONS(7158), - [anon_sym_PLUS] = ACTIONS(7158), - [anon_sym_STAR] = ACTIONS(7158), - [anon_sym_SLASH] = ACTIONS(7158), - [anon_sym_PERCENT] = ACTIONS(7158), - [anon_sym_PIPE_PIPE] = ACTIONS(7160), - [anon_sym_AMP_AMP] = ACTIONS(7160), - [anon_sym_PIPE] = ACTIONS(7158), - [anon_sym_CARET] = ACTIONS(7158), - [anon_sym_AMP] = ACTIONS(7158), - [anon_sym_EQ_EQ] = ACTIONS(7160), - [anon_sym_BANG_EQ] = ACTIONS(7160), - [anon_sym_GT] = ACTIONS(7158), - [anon_sym_GT_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ] = ACTIONS(7158), - [anon_sym_LT] = ACTIONS(7158), - [anon_sym_LT_LT] = ACTIONS(7158), - [anon_sym_GT_GT] = ACTIONS(7158), - [anon_sym___extension__] = ACTIONS(7160), - [anon_sym_LBRACE] = ACTIONS(7160), - [anon_sym_LBRACK] = ACTIONS(7160), - [anon_sym_EQ] = ACTIONS(7158), - [anon_sym_const] = ACTIONS(7158), - [anon_sym_constexpr] = ACTIONS(7160), - [anon_sym_volatile] = ACTIONS(7160), - [anon_sym_restrict] = ACTIONS(7160), - [anon_sym___restrict__] = ACTIONS(7160), - [anon_sym__Atomic] = ACTIONS(7160), - [anon_sym__Noreturn] = ACTIONS(7160), - [anon_sym_noreturn] = ACTIONS(7160), - [anon_sym__Nonnull] = ACTIONS(7160), - [anon_sym_mutable] = ACTIONS(7160), - [anon_sym_constinit] = ACTIONS(7160), - [anon_sym_consteval] = ACTIONS(7160), - [anon_sym_alignas] = ACTIONS(7160), - [anon_sym__Alignas] = ACTIONS(7160), - [anon_sym_QMARK] = ACTIONS(7160), - [anon_sym_STAR_EQ] = ACTIONS(7160), - [anon_sym_SLASH_EQ] = ACTIONS(7160), - [anon_sym_PERCENT_EQ] = ACTIONS(7160), - [anon_sym_PLUS_EQ] = ACTIONS(7160), - [anon_sym_DASH_EQ] = ACTIONS(7160), - [anon_sym_LT_LT_EQ] = ACTIONS(7160), - [anon_sym_GT_GT_EQ] = ACTIONS(7160), - [anon_sym_AMP_EQ] = ACTIONS(7160), - [anon_sym_CARET_EQ] = ACTIONS(7160), - [anon_sym_PIPE_EQ] = ACTIONS(7160), - [anon_sym_LT_EQ_GT] = ACTIONS(7160), - [anon_sym_or] = ACTIONS(7160), - [anon_sym_and] = ACTIONS(7160), - [anon_sym_bitor] = ACTIONS(7160), - [anon_sym_xor] = ACTIONS(7160), - [anon_sym_bitand] = ACTIONS(7160), - [anon_sym_not_eq] = ACTIONS(7160), - [anon_sym_DASH_DASH] = ACTIONS(7160), - [anon_sym_PLUS_PLUS] = ACTIONS(7160), - [anon_sym_DOT] = ACTIONS(7158), - [anon_sym_DOT_STAR] = ACTIONS(7160), - [anon_sym_DASH_GT] = ACTIONS(7158), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7160), - [anon_sym_override] = ACTIONS(7160), - [anon_sym_requires] = ACTIONS(7160), - [anon_sym_DASH_GT_STAR] = ACTIONS(7160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7600), + [anon_sym_COMMA] = ACTIONS(7600), + [anon_sym_RPAREN] = ACTIONS(7600), + [anon_sym_LPAREN2] = ACTIONS(7600), + [anon_sym_DASH] = ACTIONS(7598), + [anon_sym_PLUS] = ACTIONS(7598), + [anon_sym_STAR] = ACTIONS(7598), + [anon_sym_SLASH] = ACTIONS(7598), + [anon_sym_PERCENT] = ACTIONS(7598), + [anon_sym_PIPE_PIPE] = ACTIONS(7600), + [anon_sym_AMP_AMP] = ACTIONS(7600), + [anon_sym_PIPE] = ACTIONS(7598), + [anon_sym_CARET] = ACTIONS(7598), + [anon_sym_AMP] = ACTIONS(7598), + [anon_sym_EQ_EQ] = ACTIONS(7600), + [anon_sym_BANG_EQ] = ACTIONS(7600), + [anon_sym_GT] = ACTIONS(7598), + [anon_sym_GT_EQ] = ACTIONS(7600), + [anon_sym_LT_EQ] = ACTIONS(7598), + [anon_sym_LT] = ACTIONS(7598), + [anon_sym_LT_LT] = ACTIONS(7598), + [anon_sym_GT_GT] = ACTIONS(7598), + [anon_sym___extension__] = ACTIONS(7600), + [anon_sym_LBRACE] = ACTIONS(7600), + [anon_sym_LBRACK] = ACTIONS(7600), + [anon_sym_EQ] = ACTIONS(7598), + [anon_sym_const] = ACTIONS(7598), + [anon_sym_constexpr] = ACTIONS(7600), + [anon_sym_volatile] = ACTIONS(7600), + [anon_sym_restrict] = ACTIONS(7600), + [anon_sym___restrict__] = ACTIONS(7600), + [anon_sym__Atomic] = ACTIONS(7600), + [anon_sym__Noreturn] = ACTIONS(7600), + [anon_sym_noreturn] = ACTIONS(7600), + [anon_sym__Nonnull] = ACTIONS(7600), + [anon_sym_mutable] = ACTIONS(7600), + [anon_sym_constinit] = ACTIONS(7600), + [anon_sym_consteval] = ACTIONS(7600), + [anon_sym_alignas] = ACTIONS(7600), + [anon_sym__Alignas] = ACTIONS(7600), + [anon_sym_QMARK] = ACTIONS(7600), + [anon_sym_STAR_EQ] = ACTIONS(7600), + [anon_sym_SLASH_EQ] = ACTIONS(7600), + [anon_sym_PERCENT_EQ] = ACTIONS(7600), + [anon_sym_PLUS_EQ] = ACTIONS(7600), + [anon_sym_DASH_EQ] = ACTIONS(7600), + [anon_sym_LT_LT_EQ] = ACTIONS(7600), + [anon_sym_GT_GT_EQ] = ACTIONS(7600), + [anon_sym_AMP_EQ] = ACTIONS(7600), + [anon_sym_CARET_EQ] = ACTIONS(7600), + [anon_sym_PIPE_EQ] = ACTIONS(7600), + [anon_sym_LT_EQ_GT] = ACTIONS(7600), + [anon_sym_or] = ACTIONS(7600), + [anon_sym_and] = ACTIONS(7600), + [anon_sym_bitor] = ACTIONS(7600), + [anon_sym_xor] = ACTIONS(7600), + [anon_sym_bitand] = ACTIONS(7600), + [anon_sym_not_eq] = ACTIONS(7600), + [anon_sym_DASH_DASH] = ACTIONS(7600), + [anon_sym_PLUS_PLUS] = ACTIONS(7600), + [anon_sym_DOT] = ACTIONS(7598), + [anon_sym_DOT_STAR] = ACTIONS(7600), + [anon_sym_DASH_GT] = ACTIONS(7598), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7600), + [anon_sym_override] = ACTIONS(7600), + [anon_sym_requires] = ACTIONS(7600), + [anon_sym_DASH_GT_STAR] = ACTIONS(7600), }, [STATE(3501)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym_ref_qualifier] = STATE(3598), - [sym__function_exception_specification] = STATE(4139), - [sym__function_attributes_end] = STATE(6006), - [sym__function_postfix] = STATE(5460), - [sym_trailing_return_type] = STATE(5898), - [sym_noexcept] = STATE(4139), - [sym_throw_specifier] = STATE(4139), - [sym_requires_clause] = STATE(5460), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7791), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7791), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(9196), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7791), - [anon_sym_AMP] = ACTIONS(9199), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7791), - [anon_sym_GT_GT] = ACTIONS(7791), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7176), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7791), - [anon_sym_and] = ACTIONS(7791), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7791), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(9211), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9216), - [anon_sym_override] = ACTIONS(9216), - [anon_sym_noexcept] = ACTIONS(7192), - [anon_sym_throw] = ACTIONS(7194), - [anon_sym_requires] = ACTIONS(9219), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), + [sym__abstract_declarator] = STATE(6331), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2066), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3888), + [sym_identifier] = ACTIONS(6841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [aux_sym_preproc_if_token2] = ACTIONS(6843), + [aux_sym_preproc_else_token1] = ACTIONS(6843), + [aux_sym_preproc_elif_token1] = ACTIONS(6841), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6843), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8441), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8443), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8445), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6841), + [anon_sym_and] = ACTIONS(6841), + [anon_sym_bitor] = ACTIONS(6841), + [anon_sym_xor] = ACTIONS(6841), + [anon_sym_bitand] = ACTIONS(6841), + [anon_sym_not_eq] = ACTIONS(6841), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), }, [STATE(3502)] = { - [sym_identifier] = ACTIONS(6632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6634), - [anon_sym_COMMA] = ACTIONS(6634), - [aux_sym_preproc_if_token2] = ACTIONS(6634), - [aux_sym_preproc_else_token1] = ACTIONS(6634), - [aux_sym_preproc_elif_token1] = ACTIONS(6632), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6634), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6634), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_DASH] = ACTIONS(6632), - [anon_sym_PLUS] = ACTIONS(6632), - [anon_sym_STAR] = ACTIONS(6634), - [anon_sym_SLASH] = ACTIONS(6632), - [anon_sym_PERCENT] = ACTIONS(6634), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_PIPE] = ACTIONS(6632), - [anon_sym_CARET] = ACTIONS(6634), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym_EQ_EQ] = ACTIONS(6634), - [anon_sym_BANG_EQ] = ACTIONS(6634), - [anon_sym_GT] = ACTIONS(6632), - [anon_sym_GT_EQ] = ACTIONS(6634), - [anon_sym_LT_EQ] = ACTIONS(6632), - [anon_sym_LT] = ACTIONS(6632), - [anon_sym_LT_LT] = ACTIONS(6634), - [anon_sym_GT_GT] = ACTIONS(6634), - [anon_sym___extension__] = ACTIONS(6632), - [anon_sym___attribute__] = ACTIONS(6632), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_COLON] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACE] = ACTIONS(6634), - [anon_sym_LBRACK] = ACTIONS(6634), - [anon_sym_RBRACK] = ACTIONS(6634), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6632), - [anon_sym_volatile] = ACTIONS(6632), - [anon_sym_restrict] = ACTIONS(6632), - [anon_sym___restrict__] = ACTIONS(6632), - [anon_sym__Atomic] = ACTIONS(6632), - [anon_sym__Noreturn] = ACTIONS(6632), - [anon_sym_noreturn] = ACTIONS(6632), - [anon_sym__Nonnull] = ACTIONS(6632), - [anon_sym_mutable] = ACTIONS(6632), - [anon_sym_constinit] = ACTIONS(6632), - [anon_sym_consteval] = ACTIONS(6632), - [anon_sym_alignas] = ACTIONS(6632), - [anon_sym__Alignas] = ACTIONS(6632), - [anon_sym_QMARK] = ACTIONS(6634), - [anon_sym_LT_EQ_GT] = ACTIONS(6634), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_bitor] = ACTIONS(6632), - [anon_sym_xor] = ACTIONS(6632), - [anon_sym_bitand] = ACTIONS(6632), - [anon_sym_not_eq] = ACTIONS(6632), - [anon_sym_DASH_DASH] = ACTIONS(6634), - [anon_sym_PLUS_PLUS] = ACTIONS(6634), - [anon_sym_DOT] = ACTIONS(6632), - [anon_sym_DOT_STAR] = ACTIONS(6634), - [anon_sym_DASH_GT] = ACTIONS(6634), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6632), - [anon_sym_decltype] = ACTIONS(6632), - [anon_sym_final] = ACTIONS(6632), - [anon_sym_override] = ACTIONS(6632), - [anon_sym_requires] = ACTIONS(6632), + [sym_string_literal] = STATE(2577), + [sym_template_argument_list] = STATE(3708), + [sym_raw_string_literal] = STATE(2577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(9150), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(8376), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9150), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(9152), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(2414), + [anon_sym_u_DQUOTE] = ACTIONS(2414), + [anon_sym_U_DQUOTE] = ACTIONS(2414), + [anon_sym_u8_DQUOTE] = ACTIONS(2414), + [anon_sym_DQUOTE] = ACTIONS(2414), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(2426), + [anon_sym_LR_DQUOTE] = ACTIONS(2426), + [anon_sym_uR_DQUOTE] = ACTIONS(2426), + [anon_sym_UR_DQUOTE] = ACTIONS(2426), + [anon_sym_u8R_DQUOTE] = ACTIONS(2426), }, [STATE(3503)] = { - [sym_identifier] = ACTIONS(6612), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6614), - [anon_sym_COMMA] = ACTIONS(6614), - [aux_sym_preproc_if_token2] = ACTIONS(6614), - [aux_sym_preproc_else_token1] = ACTIONS(6614), - [aux_sym_preproc_elif_token1] = ACTIONS(6612), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6614), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6614), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_DASH] = ACTIONS(6612), - [anon_sym_PLUS] = ACTIONS(6612), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_SLASH] = ACTIONS(6612), - [anon_sym_PERCENT] = ACTIONS(6614), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_PIPE] = ACTIONS(6612), - [anon_sym_CARET] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym_EQ_EQ] = ACTIONS(6614), - [anon_sym_BANG_EQ] = ACTIONS(6614), - [anon_sym_GT] = ACTIONS(6612), - [anon_sym_GT_EQ] = ACTIONS(6614), - [anon_sym_LT_EQ] = ACTIONS(6612), - [anon_sym_LT] = ACTIONS(6612), - [anon_sym_LT_LT] = ACTIONS(6614), - [anon_sym_GT_GT] = ACTIONS(6614), - [anon_sym___extension__] = ACTIONS(6612), - [anon_sym___attribute__] = ACTIONS(6612), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_COLON] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACE] = ACTIONS(6614), - [anon_sym_LBRACK] = ACTIONS(6614), - [anon_sym_RBRACK] = ACTIONS(6614), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6612), - [anon_sym_volatile] = ACTIONS(6612), - [anon_sym_restrict] = ACTIONS(6612), - [anon_sym___restrict__] = ACTIONS(6612), - [anon_sym__Atomic] = ACTIONS(6612), - [anon_sym__Noreturn] = ACTIONS(6612), - [anon_sym_noreturn] = ACTIONS(6612), - [anon_sym__Nonnull] = ACTIONS(6612), - [anon_sym_mutable] = ACTIONS(6612), - [anon_sym_constinit] = ACTIONS(6612), - [anon_sym_consteval] = ACTIONS(6612), - [anon_sym_alignas] = ACTIONS(6612), - [anon_sym__Alignas] = ACTIONS(6612), - [anon_sym_QMARK] = ACTIONS(6614), - [anon_sym_LT_EQ_GT] = ACTIONS(6614), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_bitor] = ACTIONS(6612), - [anon_sym_xor] = ACTIONS(6612), - [anon_sym_bitand] = ACTIONS(6612), - [anon_sym_not_eq] = ACTIONS(6612), - [anon_sym_DASH_DASH] = ACTIONS(6614), - [anon_sym_PLUS_PLUS] = ACTIONS(6614), - [anon_sym_DOT] = ACTIONS(6612), - [anon_sym_DOT_STAR] = ACTIONS(6614), - [anon_sym_DASH_GT] = ACTIONS(6614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7749), + [anon_sym_COMMA] = ACTIONS(7749), + [anon_sym_RPAREN] = ACTIONS(7749), + [anon_sym_LPAREN2] = ACTIONS(7749), + [anon_sym_DASH] = ACTIONS(7747), + [anon_sym_PLUS] = ACTIONS(7747), + [anon_sym_STAR] = ACTIONS(7747), + [anon_sym_SLASH] = ACTIONS(7747), + [anon_sym_PERCENT] = ACTIONS(7747), + [anon_sym_PIPE_PIPE] = ACTIONS(7749), + [anon_sym_AMP_AMP] = ACTIONS(7749), + [anon_sym_PIPE] = ACTIONS(7747), + [anon_sym_CARET] = ACTIONS(7747), + [anon_sym_AMP] = ACTIONS(7747), + [anon_sym_EQ_EQ] = ACTIONS(7749), + [anon_sym_BANG_EQ] = ACTIONS(7749), + [anon_sym_GT] = ACTIONS(7747), + [anon_sym_GT_EQ] = ACTIONS(7749), + [anon_sym_LT_EQ] = ACTIONS(7747), + [anon_sym_LT] = ACTIONS(7747), + [anon_sym_LT_LT] = ACTIONS(7747), + [anon_sym_GT_GT] = ACTIONS(7747), + [anon_sym___extension__] = ACTIONS(7749), + [anon_sym_LBRACE] = ACTIONS(7749), + [anon_sym_LBRACK] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(7747), + [anon_sym_const] = ACTIONS(7747), + [anon_sym_constexpr] = ACTIONS(7749), + [anon_sym_volatile] = ACTIONS(7749), + [anon_sym_restrict] = ACTIONS(7749), + [anon_sym___restrict__] = ACTIONS(7749), + [anon_sym__Atomic] = ACTIONS(7749), + [anon_sym__Noreturn] = ACTIONS(7749), + [anon_sym_noreturn] = ACTIONS(7749), + [anon_sym__Nonnull] = ACTIONS(7749), + [anon_sym_mutable] = ACTIONS(7749), + [anon_sym_constinit] = ACTIONS(7749), + [anon_sym_consteval] = ACTIONS(7749), + [anon_sym_alignas] = ACTIONS(7749), + [anon_sym__Alignas] = ACTIONS(7749), + [anon_sym_QMARK] = ACTIONS(7749), + [anon_sym_STAR_EQ] = ACTIONS(7749), + [anon_sym_SLASH_EQ] = ACTIONS(7749), + [anon_sym_PERCENT_EQ] = ACTIONS(7749), + [anon_sym_PLUS_EQ] = ACTIONS(7749), + [anon_sym_DASH_EQ] = ACTIONS(7749), + [anon_sym_LT_LT_EQ] = ACTIONS(7749), + [anon_sym_GT_GT_EQ] = ACTIONS(7749), + [anon_sym_AMP_EQ] = ACTIONS(7749), + [anon_sym_CARET_EQ] = ACTIONS(7749), + [anon_sym_PIPE_EQ] = ACTIONS(7749), + [anon_sym_LT_EQ_GT] = ACTIONS(7749), + [anon_sym_or] = ACTIONS(7749), + [anon_sym_and] = ACTIONS(7749), + [anon_sym_bitor] = ACTIONS(7749), + [anon_sym_xor] = ACTIONS(7749), + [anon_sym_bitand] = ACTIONS(7749), + [anon_sym_not_eq] = ACTIONS(7749), + [anon_sym_DASH_DASH] = ACTIONS(7749), + [anon_sym_PLUS_PLUS] = ACTIONS(7749), + [anon_sym_DOT] = ACTIONS(7747), + [anon_sym_DOT_STAR] = ACTIONS(7749), + [anon_sym_DASH_GT] = ACTIONS(7747), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6612), - [anon_sym_decltype] = ACTIONS(6612), - [anon_sym_final] = ACTIONS(6612), - [anon_sym_override] = ACTIONS(6612), - [anon_sym_requires] = ACTIONS(6612), + [anon_sym_final] = ACTIONS(7749), + [anon_sym_override] = ACTIONS(7749), + [anon_sym_requires] = ACTIONS(7749), + [anon_sym_DASH_GT_STAR] = ACTIONS(7749), }, [STATE(3504)] = { - [sym_identifier] = ACTIONS(6624), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6626), - [anon_sym_COMMA] = ACTIONS(6626), - [aux_sym_preproc_if_token2] = ACTIONS(6626), - [aux_sym_preproc_else_token1] = ACTIONS(6626), - [aux_sym_preproc_elif_token1] = ACTIONS(6624), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6626), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6626), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_DASH] = ACTIONS(6624), - [anon_sym_PLUS] = ACTIONS(6624), - [anon_sym_STAR] = ACTIONS(6626), - [anon_sym_SLASH] = ACTIONS(6624), - [anon_sym_PERCENT] = ACTIONS(6626), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_PIPE] = ACTIONS(6624), - [anon_sym_CARET] = ACTIONS(6626), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym_EQ_EQ] = ACTIONS(6626), - [anon_sym_BANG_EQ] = ACTIONS(6626), - [anon_sym_GT] = ACTIONS(6624), - [anon_sym_GT_EQ] = ACTIONS(6626), - [anon_sym_LT_EQ] = ACTIONS(6624), - [anon_sym_LT] = ACTIONS(6624), - [anon_sym_LT_LT] = ACTIONS(6626), - [anon_sym_GT_GT] = ACTIONS(6626), - [anon_sym___extension__] = ACTIONS(6624), - [anon_sym___attribute__] = ACTIONS(6624), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_COLON] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACE] = ACTIONS(6626), - [anon_sym_LBRACK] = ACTIONS(6626), - [anon_sym_RBRACK] = ACTIONS(6626), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6624), - [anon_sym_volatile] = ACTIONS(6624), - [anon_sym_restrict] = ACTIONS(6624), - [anon_sym___restrict__] = ACTIONS(6624), - [anon_sym__Atomic] = ACTIONS(6624), - [anon_sym__Noreturn] = ACTIONS(6624), - [anon_sym_noreturn] = ACTIONS(6624), - [anon_sym__Nonnull] = ACTIONS(6624), - [anon_sym_mutable] = ACTIONS(6624), - [anon_sym_constinit] = ACTIONS(6624), - [anon_sym_consteval] = ACTIONS(6624), - [anon_sym_alignas] = ACTIONS(6624), - [anon_sym__Alignas] = ACTIONS(6624), - [anon_sym_QMARK] = ACTIONS(6626), - [anon_sym_LT_EQ_GT] = ACTIONS(6626), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_bitor] = ACTIONS(6624), - [anon_sym_xor] = ACTIONS(6624), - [anon_sym_bitand] = ACTIONS(6624), - [anon_sym_not_eq] = ACTIONS(6624), - [anon_sym_DASH_DASH] = ACTIONS(6626), - [anon_sym_PLUS_PLUS] = ACTIONS(6626), - [anon_sym_DOT] = ACTIONS(6624), - [anon_sym_DOT_STAR] = ACTIONS(6626), - [anon_sym_DASH_GT] = ACTIONS(6626), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6624), - [anon_sym_decltype] = ACTIONS(6624), - [anon_sym_final] = ACTIONS(6624), - [anon_sym_override] = ACTIONS(6624), - [anon_sym_requires] = ACTIONS(6624), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), + [anon_sym_COMMA] = ACTIONS(7753), + [anon_sym_RPAREN] = ACTIONS(7753), + [anon_sym_LPAREN2] = ACTIONS(7753), + [anon_sym_DASH] = ACTIONS(7751), + [anon_sym_PLUS] = ACTIONS(7751), + [anon_sym_STAR] = ACTIONS(7751), + [anon_sym_SLASH] = ACTIONS(7751), + [anon_sym_PERCENT] = ACTIONS(7751), + [anon_sym_PIPE_PIPE] = ACTIONS(7753), + [anon_sym_AMP_AMP] = ACTIONS(7753), + [anon_sym_PIPE] = ACTIONS(7751), + [anon_sym_CARET] = ACTIONS(7751), + [anon_sym_AMP] = ACTIONS(7751), + [anon_sym_EQ_EQ] = ACTIONS(7753), + [anon_sym_BANG_EQ] = ACTIONS(7753), + [anon_sym_GT] = ACTIONS(7751), + [anon_sym_GT_EQ] = ACTIONS(7753), + [anon_sym_LT_EQ] = ACTIONS(7751), + [anon_sym_LT] = ACTIONS(7751), + [anon_sym_LT_LT] = ACTIONS(7751), + [anon_sym_GT_GT] = ACTIONS(7751), + [anon_sym___extension__] = ACTIONS(7753), + [anon_sym_LBRACE] = ACTIONS(7753), + [anon_sym_LBRACK] = ACTIONS(7753), + [anon_sym_EQ] = ACTIONS(7751), + [anon_sym_const] = ACTIONS(7751), + [anon_sym_constexpr] = ACTIONS(7753), + [anon_sym_volatile] = ACTIONS(7753), + [anon_sym_restrict] = ACTIONS(7753), + [anon_sym___restrict__] = ACTIONS(7753), + [anon_sym__Atomic] = ACTIONS(7753), + [anon_sym__Noreturn] = ACTIONS(7753), + [anon_sym_noreturn] = ACTIONS(7753), + [anon_sym__Nonnull] = ACTIONS(7753), + [anon_sym_mutable] = ACTIONS(7753), + [anon_sym_constinit] = ACTIONS(7753), + [anon_sym_consteval] = ACTIONS(7753), + [anon_sym_alignas] = ACTIONS(7753), + [anon_sym__Alignas] = ACTIONS(7753), + [anon_sym_QMARK] = ACTIONS(7753), + [anon_sym_STAR_EQ] = ACTIONS(7753), + [anon_sym_SLASH_EQ] = ACTIONS(7753), + [anon_sym_PERCENT_EQ] = ACTIONS(7753), + [anon_sym_PLUS_EQ] = ACTIONS(7753), + [anon_sym_DASH_EQ] = ACTIONS(7753), + [anon_sym_LT_LT_EQ] = ACTIONS(7753), + [anon_sym_GT_GT_EQ] = ACTIONS(7753), + [anon_sym_AMP_EQ] = ACTIONS(7753), + [anon_sym_CARET_EQ] = ACTIONS(7753), + [anon_sym_PIPE_EQ] = ACTIONS(7753), + [anon_sym_LT_EQ_GT] = ACTIONS(7753), + [anon_sym_or] = ACTIONS(7753), + [anon_sym_and] = ACTIONS(7753), + [anon_sym_bitor] = ACTIONS(7753), + [anon_sym_xor] = ACTIONS(7753), + [anon_sym_bitand] = ACTIONS(7753), + [anon_sym_not_eq] = ACTIONS(7753), + [anon_sym_DASH_DASH] = ACTIONS(7753), + [anon_sym_PLUS_PLUS] = ACTIONS(7753), + [anon_sym_DOT] = ACTIONS(7751), + [anon_sym_DOT_STAR] = ACTIONS(7753), + [anon_sym_DASH_GT] = ACTIONS(7751), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7753), + [anon_sym_override] = ACTIONS(7753), + [anon_sym_requires] = ACTIONS(7753), + [anon_sym_DASH_GT_STAR] = ACTIONS(7753), }, [STATE(3505)] = { - [sym_identifier] = ACTIONS(7077), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7079), - [anon_sym_COMMA] = ACTIONS(7079), - [anon_sym_RPAREN] = ACTIONS(7079), - [anon_sym_LPAREN2] = ACTIONS(7079), - [anon_sym_TILDE] = ACTIONS(7079), - [anon_sym_STAR] = ACTIONS(7079), - [anon_sym_AMP_AMP] = ACTIONS(7079), - [anon_sym_AMP] = ACTIONS(7077), - [anon_sym_SEMI] = ACTIONS(7079), - [anon_sym___extension__] = ACTIONS(7077), - [anon_sym_virtual] = ACTIONS(7077), - [anon_sym_extern] = ACTIONS(7077), - [anon_sym___attribute__] = ACTIONS(7077), - [anon_sym___attribute] = ACTIONS(7077), - [anon_sym_COLON_COLON] = ACTIONS(7079), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7079), - [anon_sym___declspec] = ACTIONS(7077), - [anon_sym___based] = ACTIONS(7077), - [anon_sym___cdecl] = ACTIONS(7077), - [anon_sym___clrcall] = ACTIONS(7077), - [anon_sym___stdcall] = ACTIONS(7077), - [anon_sym___fastcall] = ACTIONS(7077), - [anon_sym___thiscall] = ACTIONS(7077), - [anon_sym___vectorcall] = ACTIONS(7077), - [anon_sym_LBRACE] = ACTIONS(7079), - [anon_sym_signed] = ACTIONS(7077), - [anon_sym_unsigned] = ACTIONS(7077), - [anon_sym_long] = ACTIONS(7077), - [anon_sym_short] = ACTIONS(7077), - [anon_sym_LBRACK] = ACTIONS(7077), - [anon_sym_static] = ACTIONS(7077), - [anon_sym_EQ] = ACTIONS(7079), - [anon_sym_register] = ACTIONS(7077), - [anon_sym_inline] = ACTIONS(7077), - [anon_sym___inline] = ACTIONS(7077), - [anon_sym___inline__] = ACTIONS(7077), - [anon_sym___forceinline] = ACTIONS(7077), - [anon_sym_thread_local] = ACTIONS(7077), - [anon_sym___thread] = ACTIONS(7077), - [anon_sym_const] = ACTIONS(7077), - [anon_sym_constexpr] = ACTIONS(7077), - [anon_sym_volatile] = ACTIONS(7077), - [anon_sym_restrict] = ACTIONS(7077), - [anon_sym___restrict__] = ACTIONS(7077), - [anon_sym__Atomic] = ACTIONS(7077), - [anon_sym__Noreturn] = ACTIONS(7077), - [anon_sym_noreturn] = ACTIONS(7077), - [anon_sym__Nonnull] = ACTIONS(7077), - [anon_sym_mutable] = ACTIONS(7077), - [anon_sym_constinit] = ACTIONS(7077), - [anon_sym_consteval] = ACTIONS(7077), - [anon_sym_alignas] = ACTIONS(7077), - [anon_sym__Alignas] = ACTIONS(7077), - [sym_primitive_type] = ACTIONS(7077), - [anon_sym_enum] = ACTIONS(7077), - [anon_sym_class] = ACTIONS(7077), - [anon_sym_struct] = ACTIONS(7077), - [anon_sym_union] = ACTIONS(7077), - [anon_sym_typename] = ACTIONS(7077), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7077), - [anon_sym_decltype] = ACTIONS(7077), - [anon_sym_explicit] = ACTIONS(7077), - [anon_sym_template] = ACTIONS(7077), - [anon_sym_GT2] = ACTIONS(7079), - [anon_sym_operator] = ACTIONS(7077), - [anon_sym_LBRACK_COLON] = ACTIONS(7079), + [sym_argument_list] = STATE(5602), + [sym_initializer_list] = STATE(6061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(8563), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, [STATE(3506)] = { - [sym_identifier] = ACTIONS(6628), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6630), - [anon_sym_COMMA] = ACTIONS(6630), - [aux_sym_preproc_if_token2] = ACTIONS(6630), - [aux_sym_preproc_else_token1] = ACTIONS(6630), - [aux_sym_preproc_elif_token1] = ACTIONS(6628), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6630), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6630), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_DASH] = ACTIONS(6628), - [anon_sym_PLUS] = ACTIONS(6628), - [anon_sym_STAR] = ACTIONS(6630), - [anon_sym_SLASH] = ACTIONS(6628), - [anon_sym_PERCENT] = ACTIONS(6630), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_PIPE] = ACTIONS(6628), - [anon_sym_CARET] = ACTIONS(6630), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym_EQ_EQ] = ACTIONS(6630), - [anon_sym_BANG_EQ] = ACTIONS(6630), - [anon_sym_GT] = ACTIONS(6628), - [anon_sym_GT_EQ] = ACTIONS(6630), - [anon_sym_LT_EQ] = ACTIONS(6628), - [anon_sym_LT] = ACTIONS(6628), - [anon_sym_LT_LT] = ACTIONS(6630), - [anon_sym_GT_GT] = ACTIONS(6630), - [anon_sym___extension__] = ACTIONS(6628), - [anon_sym___attribute__] = ACTIONS(6628), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_COLON] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACE] = ACTIONS(6630), - [anon_sym_LBRACK] = ACTIONS(6630), - [anon_sym_RBRACK] = ACTIONS(6630), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6628), - [anon_sym_volatile] = ACTIONS(6628), - [anon_sym_restrict] = ACTIONS(6628), - [anon_sym___restrict__] = ACTIONS(6628), - [anon_sym__Atomic] = ACTIONS(6628), - [anon_sym__Noreturn] = ACTIONS(6628), - [anon_sym_noreturn] = ACTIONS(6628), - [anon_sym__Nonnull] = ACTIONS(6628), - [anon_sym_mutable] = ACTIONS(6628), - [anon_sym_constinit] = ACTIONS(6628), - [anon_sym_consteval] = ACTIONS(6628), - [anon_sym_alignas] = ACTIONS(6628), - [anon_sym__Alignas] = ACTIONS(6628), - [anon_sym_QMARK] = ACTIONS(6630), - [anon_sym_LT_EQ_GT] = ACTIONS(6630), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_bitor] = ACTIONS(6628), - [anon_sym_xor] = ACTIONS(6628), - [anon_sym_bitand] = ACTIONS(6628), - [anon_sym_not_eq] = ACTIONS(6628), - [anon_sym_DASH_DASH] = ACTIONS(6630), - [anon_sym_PLUS_PLUS] = ACTIONS(6630), - [anon_sym_DOT] = ACTIONS(6628), - [anon_sym_DOT_STAR] = ACTIONS(6630), - [anon_sym_DASH_GT] = ACTIONS(6630), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6628), - [anon_sym_decltype] = ACTIONS(6628), - [anon_sym_final] = ACTIONS(6628), - [anon_sym_override] = ACTIONS(6628), - [anon_sym_requires] = ACTIONS(6628), - }, - [STATE(3507)] = { - [sym_string_literal] = STATE(2565), - [sym_template_argument_list] = STATE(3740), - [sym_raw_string_literal] = STATE(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(9222), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(8258), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9222), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(9224), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), - }, - [STATE(3508)] = { - [sym_identifier] = ACTIONS(6608), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6610), - [anon_sym_COMMA] = ACTIONS(6610), - [aux_sym_preproc_if_token2] = ACTIONS(6610), - [aux_sym_preproc_else_token1] = ACTIONS(6610), - [aux_sym_preproc_elif_token1] = ACTIONS(6608), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6610), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6610), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_DASH] = ACTIONS(6608), - [anon_sym_PLUS] = ACTIONS(6608), - [anon_sym_STAR] = ACTIONS(6610), - [anon_sym_SLASH] = ACTIONS(6608), - [anon_sym_PERCENT] = ACTIONS(6610), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_PIPE] = ACTIONS(6608), - [anon_sym_CARET] = ACTIONS(6610), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym_EQ_EQ] = ACTIONS(6610), - [anon_sym_BANG_EQ] = ACTIONS(6610), - [anon_sym_GT] = ACTIONS(6608), - [anon_sym_GT_EQ] = ACTIONS(6610), - [anon_sym_LT_EQ] = ACTIONS(6608), - [anon_sym_LT] = ACTIONS(6608), - [anon_sym_LT_LT] = ACTIONS(6610), - [anon_sym_GT_GT] = ACTIONS(6610), - [anon_sym___extension__] = ACTIONS(6608), - [anon_sym___attribute__] = ACTIONS(6608), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_COLON] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACE] = ACTIONS(6610), - [anon_sym_LBRACK] = ACTIONS(6610), - [anon_sym_RBRACK] = ACTIONS(6610), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6608), - [anon_sym_volatile] = ACTIONS(6608), - [anon_sym_restrict] = ACTIONS(6608), - [anon_sym___restrict__] = ACTIONS(6608), - [anon_sym__Atomic] = ACTIONS(6608), - [anon_sym__Noreturn] = ACTIONS(6608), - [anon_sym_noreturn] = ACTIONS(6608), - [anon_sym__Nonnull] = ACTIONS(6608), - [anon_sym_mutable] = ACTIONS(6608), - [anon_sym_constinit] = ACTIONS(6608), - [anon_sym_consteval] = ACTIONS(6608), - [anon_sym_alignas] = ACTIONS(6608), - [anon_sym__Alignas] = ACTIONS(6608), - [anon_sym_QMARK] = ACTIONS(6610), - [anon_sym_LT_EQ_GT] = ACTIONS(6610), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_bitor] = ACTIONS(6608), - [anon_sym_xor] = ACTIONS(6608), - [anon_sym_bitand] = ACTIONS(6608), - [anon_sym_not_eq] = ACTIONS(6608), - [anon_sym_DASH_DASH] = ACTIONS(6610), - [anon_sym_PLUS_PLUS] = ACTIONS(6610), - [anon_sym_DOT] = ACTIONS(6608), - [anon_sym_DOT_STAR] = ACTIONS(6610), - [anon_sym_DASH_GT] = ACTIONS(6610), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6608), - [anon_sym_decltype] = ACTIONS(6608), - [anon_sym_final] = ACTIONS(6608), - [anon_sym_override] = ACTIONS(6608), - [anon_sym_requires] = ACTIONS(6608), - }, - [STATE(3509)] = { - [sym_identifier] = ACTIONS(6616), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6618), - [anon_sym_COMMA] = ACTIONS(6618), - [aux_sym_preproc_if_token2] = ACTIONS(6618), - [aux_sym_preproc_else_token1] = ACTIONS(6618), - [aux_sym_preproc_elif_token1] = ACTIONS(6616), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6618), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6618), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_DASH] = ACTIONS(6616), - [anon_sym_PLUS] = ACTIONS(6616), - [anon_sym_STAR] = ACTIONS(6618), - [anon_sym_SLASH] = ACTIONS(6616), - [anon_sym_PERCENT] = ACTIONS(6618), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_PIPE] = ACTIONS(6616), - [anon_sym_CARET] = ACTIONS(6618), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym_EQ_EQ] = ACTIONS(6618), - [anon_sym_BANG_EQ] = ACTIONS(6618), - [anon_sym_GT] = ACTIONS(6616), - [anon_sym_GT_EQ] = ACTIONS(6618), - [anon_sym_LT_EQ] = ACTIONS(6616), - [anon_sym_LT] = ACTIONS(6616), - [anon_sym_LT_LT] = ACTIONS(6618), - [anon_sym_GT_GT] = ACTIONS(6618), - [anon_sym___extension__] = ACTIONS(6616), - [anon_sym___attribute__] = ACTIONS(6616), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_COLON] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACE] = ACTIONS(6618), - [anon_sym_LBRACK] = ACTIONS(6618), - [anon_sym_RBRACK] = ACTIONS(6618), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6616), - [anon_sym_volatile] = ACTIONS(6616), - [anon_sym_restrict] = ACTIONS(6616), - [anon_sym___restrict__] = ACTIONS(6616), - [anon_sym__Atomic] = ACTIONS(6616), - [anon_sym__Noreturn] = ACTIONS(6616), - [anon_sym_noreturn] = ACTIONS(6616), - [anon_sym__Nonnull] = ACTIONS(6616), - [anon_sym_mutable] = ACTIONS(6616), - [anon_sym_constinit] = ACTIONS(6616), - [anon_sym_consteval] = ACTIONS(6616), - [anon_sym_alignas] = ACTIONS(6616), - [anon_sym__Alignas] = ACTIONS(6616), - [anon_sym_QMARK] = ACTIONS(6618), - [anon_sym_LT_EQ_GT] = ACTIONS(6618), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_bitor] = ACTIONS(6616), - [anon_sym_xor] = ACTIONS(6616), - [anon_sym_bitand] = ACTIONS(6616), - [anon_sym_not_eq] = ACTIONS(6616), - [anon_sym_DASH_DASH] = ACTIONS(6618), - [anon_sym_PLUS_PLUS] = ACTIONS(6618), - [anon_sym_DOT] = ACTIONS(6616), - [anon_sym_DOT_STAR] = ACTIONS(6618), - [anon_sym_DASH_GT] = ACTIONS(6618), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6616), - [anon_sym_decltype] = ACTIONS(6616), - [anon_sym_final] = ACTIONS(6616), - [anon_sym_override] = ACTIONS(6616), - [anon_sym_requires] = ACTIONS(6616), - }, - [STATE(3510)] = { - [sym_identifier] = ACTIONS(6620), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6622), - [anon_sym_COMMA] = ACTIONS(6622), - [aux_sym_preproc_if_token2] = ACTIONS(6622), - [aux_sym_preproc_else_token1] = ACTIONS(6622), - [aux_sym_preproc_elif_token1] = ACTIONS(6620), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6622), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6622), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_DASH] = ACTIONS(6620), - [anon_sym_PLUS] = ACTIONS(6620), - [anon_sym_STAR] = ACTIONS(6622), - [anon_sym_SLASH] = ACTIONS(6620), - [anon_sym_PERCENT] = ACTIONS(6622), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_PIPE] = ACTIONS(6620), - [anon_sym_CARET] = ACTIONS(6622), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym_EQ_EQ] = ACTIONS(6622), - [anon_sym_BANG_EQ] = ACTIONS(6622), - [anon_sym_GT] = ACTIONS(6620), - [anon_sym_GT_EQ] = ACTIONS(6622), - [anon_sym_LT_EQ] = ACTIONS(6620), - [anon_sym_LT] = ACTIONS(6620), - [anon_sym_LT_LT] = ACTIONS(6622), - [anon_sym_GT_GT] = ACTIONS(6622), - [anon_sym___extension__] = ACTIONS(6620), - [anon_sym___attribute__] = ACTIONS(6620), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_COLON] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACE] = ACTIONS(6622), - [anon_sym_LBRACK] = ACTIONS(6622), - [anon_sym_RBRACK] = ACTIONS(6622), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6620), - [anon_sym_volatile] = ACTIONS(6620), - [anon_sym_restrict] = ACTIONS(6620), - [anon_sym___restrict__] = ACTIONS(6620), - [anon_sym__Atomic] = ACTIONS(6620), - [anon_sym__Noreturn] = ACTIONS(6620), - [anon_sym_noreturn] = ACTIONS(6620), - [anon_sym__Nonnull] = ACTIONS(6620), - [anon_sym_mutable] = ACTIONS(6620), - [anon_sym_constinit] = ACTIONS(6620), - [anon_sym_consteval] = ACTIONS(6620), - [anon_sym_alignas] = ACTIONS(6620), - [anon_sym__Alignas] = ACTIONS(6620), - [anon_sym_QMARK] = ACTIONS(6622), - [anon_sym_LT_EQ_GT] = ACTIONS(6622), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_bitor] = ACTIONS(6620), - [anon_sym_xor] = ACTIONS(6620), - [anon_sym_bitand] = ACTIONS(6620), - [anon_sym_not_eq] = ACTIONS(6620), - [anon_sym_DASH_DASH] = ACTIONS(6622), - [anon_sym_PLUS_PLUS] = ACTIONS(6622), - [anon_sym_DOT] = ACTIONS(6620), - [anon_sym_DOT_STAR] = ACTIONS(6622), - [anon_sym_DASH_GT] = ACTIONS(6622), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6620), - [anon_sym_decltype] = ACTIONS(6620), - [anon_sym_final] = ACTIONS(6620), - [anon_sym_override] = ACTIONS(6620), - [anon_sym_requires] = ACTIONS(6620), - }, - [STATE(3511)] = { - [sym__abstract_declarator] = STATE(6308), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2080), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(7349), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [aux_sym_preproc_if_token2] = ACTIONS(7351), - [aux_sym_preproc_else_token1] = ACTIONS(7351), - [aux_sym_preproc_elif_token1] = ACTIONS(7349), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7351), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(8416), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(8418), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(8420), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7349), - [anon_sym_and] = ACTIONS(7349), - [anon_sym_bitor] = ACTIONS(7349), - [anon_sym_xor] = ACTIONS(7349), - [anon_sym_bitand] = ACTIONS(7349), - [anon_sym_not_eq] = ACTIONS(7349), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - }, - [STATE(3512)] = { - [sym__abstract_declarator] = STATE(6326), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3514), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2080), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3514), - [sym_identifier] = ACTIONS(7341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [aux_sym_preproc_if_token2] = ACTIONS(7343), - [aux_sym_preproc_else_token1] = ACTIONS(7343), - [aux_sym_preproc_elif_token1] = ACTIONS(7341), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7343), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(8416), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7343), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(8418), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7343), - [anon_sym_AMP] = ACTIONS(8420), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7343), - [anon_sym_GT_GT] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7341), - [anon_sym_and] = ACTIONS(7341), - [anon_sym_bitor] = ACTIONS(7341), - [anon_sym_xor] = ACTIONS(7341), - [anon_sym_bitand] = ACTIONS(7341), - [anon_sym_not_eq] = ACTIONS(7341), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - }, - [STATE(3513)] = { - [sym__abstract_declarator] = STATE(6358), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2080), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(6821), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [aux_sym_preproc_if_token2] = ACTIONS(6823), - [aux_sym_preproc_else_token1] = ACTIONS(6823), - [aux_sym_preproc_elif_token1] = ACTIONS(6821), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6823), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8416), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8418), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8420), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6821), - [anon_sym_and] = ACTIONS(6821), - [anon_sym_bitor] = ACTIONS(6821), - [anon_sym_xor] = ACTIONS(6821), - [anon_sym_bitand] = ACTIONS(6821), - [anon_sym_not_eq] = ACTIONS(6821), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7763), + [anon_sym_COMMA] = ACTIONS(7763), + [anon_sym_RPAREN] = ACTIONS(7763), + [anon_sym_LPAREN2] = ACTIONS(7763), + [anon_sym_DASH] = ACTIONS(7761), + [anon_sym_PLUS] = ACTIONS(7761), + [anon_sym_STAR] = ACTIONS(7761), + [anon_sym_SLASH] = ACTIONS(7761), + [anon_sym_PERCENT] = ACTIONS(7761), + [anon_sym_PIPE_PIPE] = ACTIONS(7763), + [anon_sym_AMP_AMP] = ACTIONS(7763), + [anon_sym_PIPE] = ACTIONS(7761), + [anon_sym_CARET] = ACTIONS(7761), + [anon_sym_AMP] = ACTIONS(7761), + [anon_sym_EQ_EQ] = ACTIONS(7763), + [anon_sym_BANG_EQ] = ACTIONS(7763), + [anon_sym_GT] = ACTIONS(7761), + [anon_sym_GT_EQ] = ACTIONS(7763), + [anon_sym_LT_EQ] = ACTIONS(7761), + [anon_sym_LT] = ACTIONS(7761), + [anon_sym_LT_LT] = ACTIONS(7761), + [anon_sym_GT_GT] = ACTIONS(7761), + [anon_sym___extension__] = ACTIONS(7763), + [anon_sym_LBRACE] = ACTIONS(7763), + [anon_sym_LBRACK] = ACTIONS(7763), + [anon_sym_EQ] = ACTIONS(7761), + [anon_sym_const] = ACTIONS(7761), + [anon_sym_constexpr] = ACTIONS(7763), + [anon_sym_volatile] = ACTIONS(7763), + [anon_sym_restrict] = ACTIONS(7763), + [anon_sym___restrict__] = ACTIONS(7763), + [anon_sym__Atomic] = ACTIONS(7763), + [anon_sym__Noreturn] = ACTIONS(7763), + [anon_sym_noreturn] = ACTIONS(7763), + [anon_sym__Nonnull] = ACTIONS(7763), + [anon_sym_mutable] = ACTIONS(7763), + [anon_sym_constinit] = ACTIONS(7763), + [anon_sym_consteval] = ACTIONS(7763), + [anon_sym_alignas] = ACTIONS(7763), + [anon_sym__Alignas] = ACTIONS(7763), + [anon_sym_QMARK] = ACTIONS(7763), + [anon_sym_STAR_EQ] = ACTIONS(7763), + [anon_sym_SLASH_EQ] = ACTIONS(7763), + [anon_sym_PERCENT_EQ] = ACTIONS(7763), + [anon_sym_PLUS_EQ] = ACTIONS(7763), + [anon_sym_DASH_EQ] = ACTIONS(7763), + [anon_sym_LT_LT_EQ] = ACTIONS(7763), + [anon_sym_GT_GT_EQ] = ACTIONS(7763), + [anon_sym_AMP_EQ] = ACTIONS(7763), + [anon_sym_CARET_EQ] = ACTIONS(7763), + [anon_sym_PIPE_EQ] = ACTIONS(7763), + [anon_sym_LT_EQ_GT] = ACTIONS(7763), + [anon_sym_or] = ACTIONS(7763), + [anon_sym_and] = ACTIONS(7763), + [anon_sym_bitor] = ACTIONS(7763), + [anon_sym_xor] = ACTIONS(7763), + [anon_sym_bitand] = ACTIONS(7763), + [anon_sym_not_eq] = ACTIONS(7763), + [anon_sym_DASH_DASH] = ACTIONS(7763), + [anon_sym_PLUS_PLUS] = ACTIONS(7763), + [anon_sym_DOT] = ACTIONS(7761), + [anon_sym_DOT_STAR] = ACTIONS(7763), + [anon_sym_DASH_GT] = ACTIONS(7761), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7763), + [anon_sym_override] = ACTIONS(7763), + [anon_sym_requires] = ACTIONS(7763), + [anon_sym_DASH_GT_STAR] = ACTIONS(7763), }, - [STATE(3514)] = { - [sym__abstract_declarator] = STATE(6329), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2080), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3860), - [sym_identifier] = ACTIONS(7353), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [aux_sym_preproc_if_token2] = ACTIONS(7355), - [aux_sym_preproc_else_token1] = ACTIONS(7355), - [aux_sym_preproc_elif_token1] = ACTIONS(7353), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7355), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(8416), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(8418), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(8420), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7353), - [anon_sym_and] = ACTIONS(7353), - [anon_sym_bitor] = ACTIONS(7353), - [anon_sym_xor] = ACTIONS(7353), - [anon_sym_bitand] = ACTIONS(7353), - [anon_sym_not_eq] = ACTIONS(7353), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), + [STATE(3507)] = { + [sym__abstract_declarator] = STATE(6289), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2066), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3888), + [sym_identifier] = ACTIONS(7343), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [aux_sym_preproc_if_token2] = ACTIONS(7341), + [aux_sym_preproc_else_token1] = ACTIONS(7341), + [aux_sym_preproc_elif_token1] = ACTIONS(7343), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7341), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(8441), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(8443), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(8445), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7343), + [anon_sym_and] = ACTIONS(7343), + [anon_sym_bitor] = ACTIONS(7343), + [anon_sym_xor] = ACTIONS(7343), + [anon_sym_bitand] = ACTIONS(7343), + [anon_sym_not_eq] = ACTIONS(7343), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), [sym_comment] = ACTIONS(3), }, - [STATE(3515)] = { - [sym__abstract_declarator] = STATE(6375), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2080), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3860), + [STATE(3508)] = { + [sym__abstract_declarator] = STATE(6335), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2066), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3888), [sym_identifier] = ACTIONS(7347), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), @@ -430598,17 +429946,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(7347), [aux_sym_preproc_elifdef_token1] = ACTIONS(7345), [aux_sym_preproc_elifdef_token2] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_LPAREN2] = ACTIONS(8078), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(8416), + [anon_sym_STAR] = ACTIONS(8441), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7345), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8418), + [anon_sym_AMP_AMP] = ACTIONS(8443), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8420), + [anon_sym_AMP] = ACTIONS(8445), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), @@ -430617,22 +429965,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7347), [anon_sym_LT_LT] = ACTIONS(7345), [anon_sym_GT_GT] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(8092), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8092), - [anon_sym_volatile] = ACTIONS(8092), - [anon_sym_restrict] = ACTIONS(8092), - [anon_sym___restrict__] = ACTIONS(8092), - [anon_sym__Atomic] = ACTIONS(8092), - [anon_sym__Noreturn] = ACTIONS(8092), - [anon_sym_noreturn] = ACTIONS(8092), - [anon_sym__Nonnull] = ACTIONS(8092), - [anon_sym_mutable] = ACTIONS(8092), - [anon_sym_constinit] = ACTIONS(8092), - [anon_sym_consteval] = ACTIONS(8092), - [anon_sym_alignas] = ACTIONS(8100), - [anon_sym__Alignas] = ACTIONS(8100), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_LT_EQ_GT] = ACTIONS(7345), [anon_sym_or] = ACTIONS(7347), @@ -430648,790 +429996,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), }, - [STATE(3516)] = { - [sym_string_literal] = STATE(3632), - [sym_template_argument_list] = STATE(5135), - [sym_raw_string_literal] = STATE(3632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(9222), - [anon_sym_LPAREN2] = ACTIONS(9222), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(6964), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9222), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(9224), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5645), - [anon_sym_L_DQUOTE] = ACTIONS(6885), - [anon_sym_u_DQUOTE] = ACTIONS(6885), - [anon_sym_U_DQUOTE] = ACTIONS(6885), - [anon_sym_u8_DQUOTE] = ACTIONS(6885), - [anon_sym_DQUOTE] = ACTIONS(6885), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6887), - [anon_sym_LR_DQUOTE] = ACTIONS(6887), - [anon_sym_uR_DQUOTE] = ACTIONS(6887), - [anon_sym_UR_DQUOTE] = ACTIONS(6887), - [anon_sym_u8R_DQUOTE] = ACTIONS(6887), - [anon_sym_DASH_GT_STAR] = ACTIONS(5638), - }, - [STATE(3517)] = { - [sym_argument_list] = STATE(3903), - [sym_initializer_list] = STATE(3903), - [sym_new_declarator] = STATE(3703), - [sym_identifier] = ACTIONS(9226), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9228), - [anon_sym_COMMA] = ACTIONS(9228), - [anon_sym_RPAREN] = ACTIONS(9228), - [aux_sym_preproc_if_token2] = ACTIONS(9228), - [aux_sym_preproc_else_token1] = ACTIONS(9228), - [aux_sym_preproc_elif_token1] = ACTIONS(9226), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9228), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9228), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9226), - [anon_sym_PLUS] = ACTIONS(9226), - [anon_sym_STAR] = ACTIONS(9226), - [anon_sym_SLASH] = ACTIONS(9226), - [anon_sym_PERCENT] = ACTIONS(9226), - [anon_sym_PIPE_PIPE] = ACTIONS(9228), - [anon_sym_AMP_AMP] = ACTIONS(9228), - [anon_sym_PIPE] = ACTIONS(9226), - [anon_sym_CARET] = ACTIONS(9226), - [anon_sym_AMP] = ACTIONS(9226), - [anon_sym_EQ_EQ] = ACTIONS(9228), - [anon_sym_BANG_EQ] = ACTIONS(9228), - [anon_sym_GT] = ACTIONS(9226), - [anon_sym_GT_EQ] = ACTIONS(9228), - [anon_sym_LT_EQ] = ACTIONS(9226), - [anon_sym_LT] = ACTIONS(9226), - [anon_sym_LT_LT] = ACTIONS(9226), - [anon_sym_GT_GT] = ACTIONS(9226), - [anon_sym_SEMI] = ACTIONS(9228), - [anon_sym___attribute__] = ACTIONS(9226), - [anon_sym___attribute] = ACTIONS(9226), - [anon_sym_COLON] = ACTIONS(9226), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9228), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(9228), - [anon_sym_LBRACK] = ACTIONS(9232), - [anon_sym_EQ] = ACTIONS(9226), - [anon_sym_QMARK] = ACTIONS(9228), - [anon_sym_STAR_EQ] = ACTIONS(9228), - [anon_sym_SLASH_EQ] = ACTIONS(9228), - [anon_sym_PERCENT_EQ] = ACTIONS(9228), - [anon_sym_PLUS_EQ] = ACTIONS(9228), - [anon_sym_DASH_EQ] = ACTIONS(9228), - [anon_sym_LT_LT_EQ] = ACTIONS(9228), - [anon_sym_GT_GT_EQ] = ACTIONS(9228), - [anon_sym_AMP_EQ] = ACTIONS(9228), - [anon_sym_CARET_EQ] = ACTIONS(9228), - [anon_sym_PIPE_EQ] = ACTIONS(9228), - [anon_sym_and_eq] = ACTIONS(9226), - [anon_sym_or_eq] = ACTIONS(9226), - [anon_sym_xor_eq] = ACTIONS(9226), - [anon_sym_LT_EQ_GT] = ACTIONS(9228), - [anon_sym_or] = ACTIONS(9226), - [anon_sym_and] = ACTIONS(9226), - [anon_sym_bitor] = ACTIONS(9226), - [anon_sym_xor] = ACTIONS(9226), - [anon_sym_bitand] = ACTIONS(9226), - [anon_sym_not_eq] = ACTIONS(9226), - [anon_sym_DASH_DASH] = ACTIONS(9228), - [anon_sym_PLUS_PLUS] = ACTIONS(9228), - [anon_sym_DOT] = ACTIONS(9226), - [anon_sym_DOT_STAR] = ACTIONS(9228), - [anon_sym_DASH_GT] = ACTIONS(9228), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9228), - }, - [STATE(3518)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7695), - [anon_sym_COMMA] = ACTIONS(7695), - [anon_sym_RPAREN] = ACTIONS(7695), - [anon_sym_LPAREN2] = ACTIONS(7695), - [anon_sym_DASH] = ACTIONS(7693), - [anon_sym_PLUS] = ACTIONS(7693), - [anon_sym_STAR] = ACTIONS(7695), - [anon_sym_SLASH] = ACTIONS(7693), - [anon_sym_PERCENT] = ACTIONS(7695), - [anon_sym_PIPE_PIPE] = ACTIONS(7695), - [anon_sym_AMP_AMP] = ACTIONS(7695), - [anon_sym_PIPE] = ACTIONS(7693), - [anon_sym_CARET] = ACTIONS(7695), - [anon_sym_AMP] = ACTIONS(7693), - [anon_sym_EQ_EQ] = ACTIONS(7695), - [anon_sym_BANG_EQ] = ACTIONS(7695), - [anon_sym_GT] = ACTIONS(7693), - [anon_sym_GT_EQ] = ACTIONS(7695), - [anon_sym_LT_EQ] = ACTIONS(7693), - [anon_sym_LT] = ACTIONS(7693), - [anon_sym_LT_LT] = ACTIONS(7695), - [anon_sym_GT_GT] = ACTIONS(7695), - [anon_sym_SEMI] = ACTIONS(7695), - [anon_sym___extension__] = ACTIONS(7695), - [anon_sym___attribute__] = ACTIONS(7695), - [anon_sym___attribute] = ACTIONS(7693), - [anon_sym_COLON] = ACTIONS(7693), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7695), - [anon_sym_LBRACE] = ACTIONS(7695), - [anon_sym_RBRACE] = ACTIONS(7695), - [anon_sym_signed] = ACTIONS(9234), - [anon_sym_unsigned] = ACTIONS(9234), - [anon_sym_long] = ACTIONS(9234), - [anon_sym_short] = ACTIONS(9234), - [anon_sym_LBRACK] = ACTIONS(7695), - [anon_sym_const] = ACTIONS(7693), - [anon_sym_constexpr] = ACTIONS(7695), - [anon_sym_volatile] = ACTIONS(7695), - [anon_sym_restrict] = ACTIONS(7695), - [anon_sym___restrict__] = ACTIONS(7695), - [anon_sym__Atomic] = ACTIONS(7695), - [anon_sym__Noreturn] = ACTIONS(7695), - [anon_sym_noreturn] = ACTIONS(7695), - [anon_sym__Nonnull] = ACTIONS(7695), - [anon_sym_mutable] = ACTIONS(7695), - [anon_sym_constinit] = ACTIONS(7695), - [anon_sym_consteval] = ACTIONS(7695), - [anon_sym_alignas] = ACTIONS(7695), - [anon_sym__Alignas] = ACTIONS(7695), - [anon_sym_QMARK] = ACTIONS(7695), - [anon_sym_LT_EQ_GT] = ACTIONS(7695), - [anon_sym_or] = ACTIONS(7695), - [anon_sym_and] = ACTIONS(7695), - [anon_sym_bitor] = ACTIONS(7695), - [anon_sym_xor] = ACTIONS(7695), - [anon_sym_bitand] = ACTIONS(7695), - [anon_sym_not_eq] = ACTIONS(7695), - [anon_sym_DASH_DASH] = ACTIONS(7695), - [anon_sym_PLUS_PLUS] = ACTIONS(7695), - [anon_sym_DOT] = ACTIONS(7693), - [anon_sym_DOT_STAR] = ACTIONS(7695), - [anon_sym_DASH_GT] = ACTIONS(7695), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7695), - [anon_sym_override] = ACTIONS(7695), - [anon_sym_requires] = ACTIONS(7695), - [anon_sym_COLON_RBRACK] = ACTIONS(7695), - }, - [STATE(3519)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7699), - [anon_sym_COMMA] = ACTIONS(7699), - [anon_sym_RPAREN] = ACTIONS(7699), - [anon_sym_LPAREN2] = ACTIONS(7699), - [anon_sym_DASH] = ACTIONS(7697), - [anon_sym_PLUS] = ACTIONS(7697), - [anon_sym_STAR] = ACTIONS(7699), - [anon_sym_SLASH] = ACTIONS(7697), - [anon_sym_PERCENT] = ACTIONS(7699), - [anon_sym_PIPE_PIPE] = ACTIONS(7699), - [anon_sym_AMP_AMP] = ACTIONS(7699), - [anon_sym_PIPE] = ACTIONS(7697), - [anon_sym_CARET] = ACTIONS(7699), - [anon_sym_AMP] = ACTIONS(7697), - [anon_sym_EQ_EQ] = ACTIONS(7699), - [anon_sym_BANG_EQ] = ACTIONS(7699), - [anon_sym_GT] = ACTIONS(7697), - [anon_sym_GT_EQ] = ACTIONS(7699), - [anon_sym_LT_EQ] = ACTIONS(7697), - [anon_sym_LT] = ACTIONS(7697), - [anon_sym_LT_LT] = ACTIONS(7699), - [anon_sym_GT_GT] = ACTIONS(7699), - [anon_sym_SEMI] = ACTIONS(7699), - [anon_sym___extension__] = ACTIONS(7699), - [anon_sym___attribute__] = ACTIONS(7699), - [anon_sym___attribute] = ACTIONS(7697), - [anon_sym_COLON] = ACTIONS(7697), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7699), - [anon_sym_LBRACE] = ACTIONS(7699), - [anon_sym_RBRACE] = ACTIONS(7699), - [anon_sym_signed] = ACTIONS(9234), - [anon_sym_unsigned] = ACTIONS(9234), - [anon_sym_long] = ACTIONS(9234), - [anon_sym_short] = ACTIONS(9234), - [anon_sym_LBRACK] = ACTIONS(7699), - [anon_sym_const] = ACTIONS(7697), - [anon_sym_constexpr] = ACTIONS(7699), - [anon_sym_volatile] = ACTIONS(7699), - [anon_sym_restrict] = ACTIONS(7699), - [anon_sym___restrict__] = ACTIONS(7699), - [anon_sym__Atomic] = ACTIONS(7699), - [anon_sym__Noreturn] = ACTIONS(7699), - [anon_sym_noreturn] = ACTIONS(7699), - [anon_sym__Nonnull] = ACTIONS(7699), - [anon_sym_mutable] = ACTIONS(7699), - [anon_sym_constinit] = ACTIONS(7699), - [anon_sym_consteval] = ACTIONS(7699), - [anon_sym_alignas] = ACTIONS(7699), - [anon_sym__Alignas] = ACTIONS(7699), - [anon_sym_QMARK] = ACTIONS(7699), - [anon_sym_LT_EQ_GT] = ACTIONS(7699), - [anon_sym_or] = ACTIONS(7699), - [anon_sym_and] = ACTIONS(7699), - [anon_sym_bitor] = ACTIONS(7699), - [anon_sym_xor] = ACTIONS(7699), - [anon_sym_bitand] = ACTIONS(7699), - [anon_sym_not_eq] = ACTIONS(7699), - [anon_sym_DASH_DASH] = ACTIONS(7699), - [anon_sym_PLUS_PLUS] = ACTIONS(7699), - [anon_sym_DOT] = ACTIONS(7697), - [anon_sym_DOT_STAR] = ACTIONS(7699), - [anon_sym_DASH_GT] = ACTIONS(7699), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7699), - [anon_sym_override] = ACTIONS(7699), - [anon_sym_requires] = ACTIONS(7699), - [anon_sym_COLON_RBRACK] = ACTIONS(7699), - }, - [STATE(3520)] = { - [sym__abstract_declarator] = STATE(6349), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2275), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(8385), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(8387), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(8389), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym_SEMI] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(7351), - [anon_sym___attribute] = ACTIONS(7349), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), - }, - [STATE(3521)] = { - [sym__abstract_declarator] = STATE(6361), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3523), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2275), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3523), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(8385), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7343), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(8387), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7343), - [anon_sym_AMP] = ACTIONS(8389), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7343), - [anon_sym_GT_GT] = ACTIONS(7343), - [anon_sym_SEMI] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(7343), - [anon_sym___attribute] = ACTIONS(7341), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7343), - [anon_sym_and] = ACTIONS(7343), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7343), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - }, - [STATE(3522)] = { - [sym__abstract_declarator] = STATE(6311), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2275), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8385), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8387), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8389), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(6823), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - }, - [STATE(3523)] = { - [sym__abstract_declarator] = STATE(6362), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2275), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(8385), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(8387), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(8389), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym_SEMI] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(7355), - [anon_sym___attribute] = ACTIONS(7353), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), + [STATE(3509)] = { + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [aux_sym_preproc_if_token2] = ACTIONS(7329), + [aux_sym_preproc_else_token1] = ACTIONS(7329), + [aux_sym_preproc_elif_token1] = ACTIONS(7327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_RBRACK] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), }, - [STATE(3524)] = { - [sym__abstract_declarator] = STATE(6369), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2275), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(8385), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8387), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8389), - [anon_sym_EQ_EQ] = ACTIONS(7345), - [anon_sym_BANG_EQ] = ACTIONS(7345), - [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ] = ACTIONS(7347), - [anon_sym_LT] = ACTIONS(7347), - [anon_sym_LT_LT] = ACTIONS(7345), - [anon_sym_GT_GT] = ACTIONS(7345), - [anon_sym_SEMI] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(7345), - [anon_sym___attribute] = ACTIONS(7347), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7345), - [anon_sym_LT_EQ_GT] = ACTIONS(7345), - [anon_sym_or] = ACTIONS(7345), - [anon_sym_and] = ACTIONS(7345), - [anon_sym_bitor] = ACTIONS(7345), - [anon_sym_xor] = ACTIONS(7345), - [anon_sym_bitand] = ACTIONS(7345), - [anon_sym_not_eq] = ACTIONS(7345), - [anon_sym_DASH_DASH] = ACTIONS(7345), - [anon_sym_PLUS_PLUS] = ACTIONS(7345), - [anon_sym_DOT] = ACTIONS(7347), - [anon_sym_DOT_STAR] = ACTIONS(7345), - [anon_sym_DASH_GT] = ACTIONS(7345), + [STATE(3510)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), + [anon_sym_COMMA] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7725), + [anon_sym_LPAREN2] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_PLUS] = ACTIONS(7723), + [anon_sym_STAR] = ACTIONS(7723), + [anon_sym_SLASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_PIPE_PIPE] = ACTIONS(7725), + [anon_sym_AMP_AMP] = ACTIONS(7725), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_CARET] = ACTIONS(7723), + [anon_sym_AMP] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_BANG_EQ] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7723), + [anon_sym___extension__] = ACTIONS(7725), + [anon_sym_LBRACE] = ACTIONS(7725), + [anon_sym_LBRACK] = ACTIONS(7725), + [anon_sym_EQ] = ACTIONS(7723), + [anon_sym_const] = ACTIONS(7723), + [anon_sym_constexpr] = ACTIONS(7725), + [anon_sym_volatile] = ACTIONS(7725), + [anon_sym_restrict] = ACTIONS(7725), + [anon_sym___restrict__] = ACTIONS(7725), + [anon_sym__Atomic] = ACTIONS(7725), + [anon_sym__Noreturn] = ACTIONS(7725), + [anon_sym_noreturn] = ACTIONS(7725), + [anon_sym__Nonnull] = ACTIONS(7725), + [anon_sym_mutable] = ACTIONS(7725), + [anon_sym_constinit] = ACTIONS(7725), + [anon_sym_consteval] = ACTIONS(7725), + [anon_sym_alignas] = ACTIONS(7725), + [anon_sym__Alignas] = ACTIONS(7725), + [anon_sym_QMARK] = ACTIONS(7725), + [anon_sym_STAR_EQ] = ACTIONS(7725), + [anon_sym_SLASH_EQ] = ACTIONS(7725), + [anon_sym_PERCENT_EQ] = ACTIONS(7725), + [anon_sym_PLUS_EQ] = ACTIONS(7725), + [anon_sym_DASH_EQ] = ACTIONS(7725), + [anon_sym_LT_LT_EQ] = ACTIONS(7725), + [anon_sym_GT_GT_EQ] = ACTIONS(7725), + [anon_sym_AMP_EQ] = ACTIONS(7725), + [anon_sym_CARET_EQ] = ACTIONS(7725), + [anon_sym_PIPE_EQ] = ACTIONS(7725), + [anon_sym_LT_EQ_GT] = ACTIONS(7725), + [anon_sym_or] = ACTIONS(7725), + [anon_sym_and] = ACTIONS(7725), + [anon_sym_bitor] = ACTIONS(7725), + [anon_sym_xor] = ACTIONS(7725), + [anon_sym_bitand] = ACTIONS(7725), + [anon_sym_not_eq] = ACTIONS(7725), + [anon_sym_DASH_DASH] = ACTIONS(7725), + [anon_sym_PLUS_PLUS] = ACTIONS(7725), + [anon_sym_DOT] = ACTIONS(7723), + [anon_sym_DOT_STAR] = ACTIONS(7725), + [anon_sym_DASH_GT] = ACTIONS(7723), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7345), - [anon_sym_override] = ACTIONS(7345), - [anon_sym_requires] = ACTIONS(7345), + [anon_sym_final] = ACTIONS(7725), + [anon_sym_override] = ACTIONS(7725), + [anon_sym_requires] = ACTIONS(7725), + [anon_sym_DASH_GT_STAR] = ACTIONS(7725), }, - [STATE(3525)] = { - [sym_string_literal] = STATE(3632), - [sym_template_argument_list] = STATE(4811), - [sym_raw_string_literal] = STATE(3632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(9236), - [anon_sym_LPAREN2] = ACTIONS(9236), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(6880), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6883), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(9239), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5645), - [anon_sym_L_DQUOTE] = ACTIONS(6885), - [anon_sym_u_DQUOTE] = ACTIONS(6885), - [anon_sym_U_DQUOTE] = ACTIONS(6885), - [anon_sym_u8_DQUOTE] = ACTIONS(6885), - [anon_sym_DQUOTE] = ACTIONS(6885), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6887), - [anon_sym_LR_DQUOTE] = ACTIONS(6887), - [anon_sym_uR_DQUOTE] = ACTIONS(6887), - [anon_sym_UR_DQUOTE] = ACTIONS(6887), - [anon_sym_u8R_DQUOTE] = ACTIONS(6887), - [anon_sym_DASH_GT_STAR] = ACTIONS(5638), + [STATE(3511)] = { + [sym_type_qualifier] = STATE(3515), + [sym_alignas_qualifier] = STATE(3928), + [aux_sym__type_definition_type_repeat1] = STATE(3515), + [aux_sym_sized_type_specifier_repeat1] = STATE(3774), + [sym_identifier] = ACTIONS(9186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(9188), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(9191), + [anon_sym_unsigned] = ACTIONS(9191), + [anon_sym_long] = ACTIONS(9191), + [anon_sym_short] = ACTIONS(9191), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_RBRACK] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(9188), + [anon_sym_constexpr] = ACTIONS(9188), + [anon_sym_volatile] = ACTIONS(9188), + [anon_sym_restrict] = ACTIONS(9188), + [anon_sym___restrict__] = ACTIONS(9188), + [anon_sym__Atomic] = ACTIONS(9188), + [anon_sym__Noreturn] = ACTIONS(9188), + [anon_sym_noreturn] = ACTIONS(9188), + [anon_sym__Nonnull] = ACTIONS(9188), + [anon_sym_mutable] = ACTIONS(9188), + [anon_sym_constinit] = ACTIONS(9188), + [anon_sym_consteval] = ACTIONS(9188), + [anon_sym_alignas] = ACTIONS(9193), + [anon_sym__Alignas] = ACTIONS(9193), + [sym_primitive_type] = ACTIONS(8845), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_requires] = ACTIONS(7211), }, - [STATE(3526)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3582), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7703), - [anon_sym_COMMA] = ACTIONS(7703), - [anon_sym_RPAREN] = ACTIONS(7703), - [anon_sym_LPAREN2] = ACTIONS(7703), - [anon_sym_DASH] = ACTIONS(7701), - [anon_sym_PLUS] = ACTIONS(7701), - [anon_sym_STAR] = ACTIONS(7703), - [anon_sym_SLASH] = ACTIONS(7701), - [anon_sym_PERCENT] = ACTIONS(7703), - [anon_sym_PIPE_PIPE] = ACTIONS(7703), - [anon_sym_AMP_AMP] = ACTIONS(7703), - [anon_sym_PIPE] = ACTIONS(7701), - [anon_sym_CARET] = ACTIONS(7703), - [anon_sym_AMP] = ACTIONS(7701), - [anon_sym_EQ_EQ] = ACTIONS(7703), - [anon_sym_BANG_EQ] = ACTIONS(7703), - [anon_sym_GT] = ACTIONS(7701), - [anon_sym_GT_EQ] = ACTIONS(7703), - [anon_sym_LT_EQ] = ACTIONS(7701), - [anon_sym_LT] = ACTIONS(7701), - [anon_sym_LT_LT] = ACTIONS(7703), - [anon_sym_GT_GT] = ACTIONS(7703), - [anon_sym_SEMI] = ACTIONS(7703), - [anon_sym___extension__] = ACTIONS(7703), - [anon_sym___attribute__] = ACTIONS(7703), - [anon_sym___attribute] = ACTIONS(7701), - [anon_sym_COLON] = ACTIONS(7701), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7703), - [anon_sym_LBRACE] = ACTIONS(7703), - [anon_sym_RBRACE] = ACTIONS(7703), - [anon_sym_signed] = ACTIONS(9242), - [anon_sym_unsigned] = ACTIONS(9242), - [anon_sym_long] = ACTIONS(9242), - [anon_sym_short] = ACTIONS(9242), - [anon_sym_LBRACK] = ACTIONS(7703), - [anon_sym_const] = ACTIONS(7701), - [anon_sym_constexpr] = ACTIONS(7703), - [anon_sym_volatile] = ACTIONS(7703), - [anon_sym_restrict] = ACTIONS(7703), - [anon_sym___restrict__] = ACTIONS(7703), - [anon_sym__Atomic] = ACTIONS(7703), - [anon_sym__Noreturn] = ACTIONS(7703), - [anon_sym_noreturn] = ACTIONS(7703), - [anon_sym__Nonnull] = ACTIONS(7703), - [anon_sym_mutable] = ACTIONS(7703), - [anon_sym_constinit] = ACTIONS(7703), - [anon_sym_consteval] = ACTIONS(7703), - [anon_sym_alignas] = ACTIONS(7703), - [anon_sym__Alignas] = ACTIONS(7703), - [anon_sym_QMARK] = ACTIONS(7703), - [anon_sym_LT_EQ_GT] = ACTIONS(7703), - [anon_sym_or] = ACTIONS(7703), - [anon_sym_and] = ACTIONS(7703), - [anon_sym_bitor] = ACTIONS(7703), - [anon_sym_xor] = ACTIONS(7703), - [anon_sym_bitand] = ACTIONS(7703), - [anon_sym_not_eq] = ACTIONS(7703), - [anon_sym_DASH_DASH] = ACTIONS(7703), - [anon_sym_PLUS_PLUS] = ACTIONS(7703), - [anon_sym_DOT] = ACTIONS(7701), - [anon_sym_DOT_STAR] = ACTIONS(7703), - [anon_sym_DASH_GT] = ACTIONS(7703), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7703), - [anon_sym_override] = ACTIONS(7703), - [anon_sym_requires] = ACTIONS(7703), - [anon_sym_COLON_RBRACK] = ACTIONS(7703), + [STATE(3512)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7737), + [anon_sym_COMMA] = ACTIONS(7737), + [anon_sym_RPAREN] = ACTIONS(7737), + [anon_sym_LPAREN2] = ACTIONS(7737), + [anon_sym_DASH] = ACTIONS(7735), + [anon_sym_PLUS] = ACTIONS(7735), + [anon_sym_STAR] = ACTIONS(7735), + [anon_sym_SLASH] = ACTIONS(7735), + [anon_sym_PERCENT] = ACTIONS(7735), + [anon_sym_PIPE_PIPE] = ACTIONS(7737), + [anon_sym_AMP_AMP] = ACTIONS(7737), + [anon_sym_PIPE] = ACTIONS(7735), + [anon_sym_CARET] = ACTIONS(7735), + [anon_sym_AMP] = ACTIONS(7735), + [anon_sym_EQ_EQ] = ACTIONS(7737), + [anon_sym_BANG_EQ] = ACTIONS(7737), + [anon_sym_GT] = ACTIONS(7735), + [anon_sym_GT_EQ] = ACTIONS(7737), + [anon_sym_LT_EQ] = ACTIONS(7735), + [anon_sym_LT] = ACTIONS(7735), + [anon_sym_LT_LT] = ACTIONS(7735), + [anon_sym_GT_GT] = ACTIONS(7735), + [anon_sym___extension__] = ACTIONS(7737), + [anon_sym_LBRACE] = ACTIONS(7737), + [anon_sym_LBRACK] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(7735), + [anon_sym_const] = ACTIONS(7735), + [anon_sym_constexpr] = ACTIONS(7737), + [anon_sym_volatile] = ACTIONS(7737), + [anon_sym_restrict] = ACTIONS(7737), + [anon_sym___restrict__] = ACTIONS(7737), + [anon_sym__Atomic] = ACTIONS(7737), + [anon_sym__Noreturn] = ACTIONS(7737), + [anon_sym_noreturn] = ACTIONS(7737), + [anon_sym__Nonnull] = ACTIONS(7737), + [anon_sym_mutable] = ACTIONS(7737), + [anon_sym_constinit] = ACTIONS(7737), + [anon_sym_consteval] = ACTIONS(7737), + [anon_sym_alignas] = ACTIONS(7737), + [anon_sym__Alignas] = ACTIONS(7737), + [anon_sym_QMARK] = ACTIONS(7737), + [anon_sym_STAR_EQ] = ACTIONS(7737), + [anon_sym_SLASH_EQ] = ACTIONS(7737), + [anon_sym_PERCENT_EQ] = ACTIONS(7737), + [anon_sym_PLUS_EQ] = ACTIONS(7737), + [anon_sym_DASH_EQ] = ACTIONS(7737), + [anon_sym_LT_LT_EQ] = ACTIONS(7737), + [anon_sym_GT_GT_EQ] = ACTIONS(7737), + [anon_sym_AMP_EQ] = ACTIONS(7737), + [anon_sym_CARET_EQ] = ACTIONS(7737), + [anon_sym_PIPE_EQ] = ACTIONS(7737), + [anon_sym_LT_EQ_GT] = ACTIONS(7737), + [anon_sym_or] = ACTIONS(7737), + [anon_sym_and] = ACTIONS(7737), + [anon_sym_bitor] = ACTIONS(7737), + [anon_sym_xor] = ACTIONS(7737), + [anon_sym_bitand] = ACTIONS(7737), + [anon_sym_not_eq] = ACTIONS(7737), + [anon_sym_DASH_DASH] = ACTIONS(7737), + [anon_sym_PLUS_PLUS] = ACTIONS(7737), + [anon_sym_DOT] = ACTIONS(7735), + [anon_sym_DOT_STAR] = ACTIONS(7737), + [anon_sym_DASH_GT] = ACTIONS(7735), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7737), + [anon_sym_override] = ACTIONS(7737), + [anon_sym_requires] = ACTIONS(7737), + [anon_sym_DASH_GT_STAR] = ACTIONS(7737), }, - [STATE(3527)] = { + [STATE(3513)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), [anon_sym_DOT_DOT_DOT] = ACTIONS(7733), [anon_sym_COMMA] = ACTIONS(7733), [anon_sym_RPAREN] = ACTIONS(7733), [anon_sym_LPAREN2] = ACTIONS(7733), [anon_sym_DASH] = ACTIONS(7731), [anon_sym_PLUS] = ACTIONS(7731), - [anon_sym_STAR] = ACTIONS(7731), + [anon_sym_STAR] = ACTIONS(7733), [anon_sym_SLASH] = ACTIONS(7731), - [anon_sym_PERCENT] = ACTIONS(7731), + [anon_sym_PERCENT] = ACTIONS(7733), [anon_sym_PIPE_PIPE] = ACTIONS(7733), [anon_sym_AMP_AMP] = ACTIONS(7733), [anon_sym_PIPE] = ACTIONS(7731), - [anon_sym_CARET] = ACTIONS(7731), + [anon_sym_CARET] = ACTIONS(7733), [anon_sym_AMP] = ACTIONS(7731), [anon_sym_EQ_EQ] = ACTIONS(7733), [anon_sym_BANG_EQ] = ACTIONS(7733), @@ -431439,12 +430298,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(7733), [anon_sym_LT_EQ] = ACTIONS(7731), [anon_sym_LT] = ACTIONS(7731), - [anon_sym_LT_LT] = ACTIONS(7731), - [anon_sym_GT_GT] = ACTIONS(7731), + [anon_sym_LT_LT] = ACTIONS(7733), + [anon_sym_GT_GT] = ACTIONS(7733), + [anon_sym_SEMI] = ACTIONS(7733), [anon_sym___extension__] = ACTIONS(7733), + [anon_sym___attribute__] = ACTIONS(7733), + [anon_sym___attribute] = ACTIONS(7731), + [anon_sym_COLON] = ACTIONS(7731), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7733), [anon_sym_LBRACE] = ACTIONS(7733), + [anon_sym_RBRACE] = ACTIONS(7733), + [anon_sym_signed] = ACTIONS(9148), + [anon_sym_unsigned] = ACTIONS(9148), + [anon_sym_long] = ACTIONS(9148), + [anon_sym_short] = ACTIONS(9148), [anon_sym_LBRACK] = ACTIONS(7733), - [anon_sym_EQ] = ACTIONS(7731), [anon_sym_const] = ACTIONS(7731), [anon_sym_constexpr] = ACTIONS(7733), [anon_sym_volatile] = ACTIONS(7733), @@ -431460,16 +430328,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(7733), [anon_sym__Alignas] = ACTIONS(7733), [anon_sym_QMARK] = ACTIONS(7733), - [anon_sym_STAR_EQ] = ACTIONS(7733), - [anon_sym_SLASH_EQ] = ACTIONS(7733), - [anon_sym_PERCENT_EQ] = ACTIONS(7733), - [anon_sym_PLUS_EQ] = ACTIONS(7733), - [anon_sym_DASH_EQ] = ACTIONS(7733), - [anon_sym_LT_LT_EQ] = ACTIONS(7733), - [anon_sym_GT_GT_EQ] = ACTIONS(7733), - [anon_sym_AMP_EQ] = ACTIONS(7733), - [anon_sym_CARET_EQ] = ACTIONS(7733), - [anon_sym_PIPE_EQ] = ACTIONS(7733), [anon_sym_LT_EQ_GT] = ACTIONS(7733), [anon_sym_or] = ACTIONS(7733), [anon_sym_and] = ACTIONS(7733), @@ -431481,167 +430339,378 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(7733), [anon_sym_DOT] = ACTIONS(7731), [anon_sym_DOT_STAR] = ACTIONS(7733), - [anon_sym_DASH_GT] = ACTIONS(7731), + [anon_sym_DASH_GT] = ACTIONS(7733), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7733), [anon_sym_override] = ACTIONS(7733), [anon_sym_requires] = ACTIONS(7733), - [anon_sym_DASH_GT_STAR] = ACTIONS(7733), + [anon_sym_COLON_RBRACK] = ACTIONS(7733), }, - [STATE(3528)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + [STATE(3514)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7660), + [anon_sym_COMMA] = ACTIONS(7660), + [anon_sym_RPAREN] = ACTIONS(7660), + [anon_sym_LPAREN2] = ACTIONS(7660), + [anon_sym_DASH] = ACTIONS(7658), + [anon_sym_PLUS] = ACTIONS(7658), + [anon_sym_STAR] = ACTIONS(7660), + [anon_sym_SLASH] = ACTIONS(7658), + [anon_sym_PERCENT] = ACTIONS(7660), + [anon_sym_PIPE_PIPE] = ACTIONS(7660), + [anon_sym_AMP_AMP] = ACTIONS(7660), + [anon_sym_PIPE] = ACTIONS(7658), + [anon_sym_CARET] = ACTIONS(7660), + [anon_sym_AMP] = ACTIONS(7658), + [anon_sym_EQ_EQ] = ACTIONS(7660), + [anon_sym_BANG_EQ] = ACTIONS(7660), + [anon_sym_GT] = ACTIONS(7658), + [anon_sym_GT_EQ] = ACTIONS(7660), + [anon_sym_LT_EQ] = ACTIONS(7658), + [anon_sym_LT] = ACTIONS(7658), + [anon_sym_LT_LT] = ACTIONS(7660), + [anon_sym_GT_GT] = ACTIONS(7660), + [anon_sym_SEMI] = ACTIONS(7660), + [anon_sym___extension__] = ACTIONS(7660), + [anon_sym___attribute__] = ACTIONS(7660), + [anon_sym___attribute] = ACTIONS(7658), + [anon_sym_COLON] = ACTIONS(7658), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7660), + [anon_sym_LBRACE] = ACTIONS(7660), + [anon_sym_RBRACE] = ACTIONS(7660), + [anon_sym_signed] = ACTIONS(9148), + [anon_sym_unsigned] = ACTIONS(9148), + [anon_sym_long] = ACTIONS(9148), + [anon_sym_short] = ACTIONS(9148), + [anon_sym_LBRACK] = ACTIONS(7660), + [anon_sym_const] = ACTIONS(7658), + [anon_sym_constexpr] = ACTIONS(7660), + [anon_sym_volatile] = ACTIONS(7660), + [anon_sym_restrict] = ACTIONS(7660), + [anon_sym___restrict__] = ACTIONS(7660), + [anon_sym__Atomic] = ACTIONS(7660), + [anon_sym__Noreturn] = ACTIONS(7660), + [anon_sym_noreturn] = ACTIONS(7660), + [anon_sym__Nonnull] = ACTIONS(7660), + [anon_sym_mutable] = ACTIONS(7660), + [anon_sym_constinit] = ACTIONS(7660), + [anon_sym_consteval] = ACTIONS(7660), + [anon_sym_alignas] = ACTIONS(7660), + [anon_sym__Alignas] = ACTIONS(7660), + [anon_sym_QMARK] = ACTIONS(7660), + [anon_sym_LT_EQ_GT] = ACTIONS(7660), + [anon_sym_or] = ACTIONS(7660), + [anon_sym_and] = ACTIONS(7660), + [anon_sym_bitor] = ACTIONS(7660), + [anon_sym_xor] = ACTIONS(7660), + [anon_sym_bitand] = ACTIONS(7660), + [anon_sym_not_eq] = ACTIONS(7660), + [anon_sym_DASH_DASH] = ACTIONS(7660), + [anon_sym_PLUS_PLUS] = ACTIONS(7660), + [anon_sym_DOT] = ACTIONS(7658), + [anon_sym_DOT_STAR] = ACTIONS(7660), + [anon_sym_DASH_GT] = ACTIONS(7660), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7660), + [anon_sym_override] = ACTIONS(7660), + [anon_sym_requires] = ACTIONS(7660), + [anon_sym_COLON_RBRACK] = ACTIONS(7660), }, - [STATE(3529)] = { - [sym_decltype_auto] = STATE(3593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(8871), - [anon_sym_decltype] = ACTIONS(6962), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), + [STATE(3515)] = { + [sym_type_qualifier] = STATE(3593), + [sym_alignas_qualifier] = STATE(3928), + [aux_sym__type_definition_type_repeat1] = STATE(3593), + [aux_sym_sized_type_specifier_repeat1] = STATE(3259), + [sym_identifier] = ACTIONS(9196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7193), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7193), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7193), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7193), + [anon_sym_GT_GT] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(9198), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(8861), + [anon_sym_unsigned] = ACTIONS(8861), + [anon_sym_long] = ACTIONS(8861), + [anon_sym_short] = ACTIONS(8861), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_RBRACK] = ACTIONS(7193), + [anon_sym_const] = ACTIONS(9198), + [anon_sym_constexpr] = ACTIONS(9198), + [anon_sym_volatile] = ACTIONS(9198), + [anon_sym_restrict] = ACTIONS(9198), + [anon_sym___restrict__] = ACTIONS(9198), + [anon_sym__Atomic] = ACTIONS(9198), + [anon_sym__Noreturn] = ACTIONS(9198), + [anon_sym_noreturn] = ACTIONS(9198), + [anon_sym__Nonnull] = ACTIONS(9198), + [anon_sym_mutable] = ACTIONS(9198), + [anon_sym_constinit] = ACTIONS(9198), + [anon_sym_consteval] = ACTIONS(9198), + [anon_sym_alignas] = ACTIONS(9201), + [anon_sym__Alignas] = ACTIONS(9201), + [sym_primitive_type] = ACTIONS(8863), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_requires] = ACTIONS(7195), }, - [STATE(3530)] = { + [STATE(3516)] = { + [sym_string_literal] = STATE(3589), + [sym_raw_string_literal] = STATE(3589), + [aux_sym_concatenated_string_repeat1] = STATE(3589), + [sym_identifier] = ACTIONS(9204), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(8483), + [anon_sym_LPAREN2] = ACTIONS(8483), + [anon_sym_DASH] = ACTIONS(8485), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_STAR] = ACTIONS(8485), + [anon_sym_SLASH] = ACTIONS(8485), + [anon_sym_PERCENT] = ACTIONS(8485), + [anon_sym_PIPE_PIPE] = ACTIONS(8483), + [anon_sym_AMP_AMP] = ACTIONS(8483), + [anon_sym_PIPE] = ACTIONS(8485), + [anon_sym_CARET] = ACTIONS(8485), + [anon_sym_AMP] = ACTIONS(8485), + [anon_sym_EQ_EQ] = ACTIONS(8483), + [anon_sym_BANG_EQ] = ACTIONS(8483), + [anon_sym_GT] = ACTIONS(8485), + [anon_sym_GT_EQ] = ACTIONS(8483), + [anon_sym_LT_EQ] = ACTIONS(8485), + [anon_sym_LT] = ACTIONS(8485), + [anon_sym_LT_LT] = ACTIONS(8485), + [anon_sym_GT_GT] = ACTIONS(8485), + [anon_sym_SEMI] = ACTIONS(8483), + [anon_sym___attribute__] = ACTIONS(8485), + [anon_sym___attribute] = ACTIONS(8485), + [anon_sym_LBRACK] = ACTIONS(8483), + [anon_sym_EQ] = ACTIONS(8485), + [anon_sym_QMARK] = ACTIONS(8483), + [anon_sym_STAR_EQ] = ACTIONS(8483), + [anon_sym_SLASH_EQ] = ACTIONS(8483), + [anon_sym_PERCENT_EQ] = ACTIONS(8483), + [anon_sym_PLUS_EQ] = ACTIONS(8483), + [anon_sym_DASH_EQ] = ACTIONS(8483), + [anon_sym_LT_LT_EQ] = ACTIONS(8483), + [anon_sym_GT_GT_EQ] = ACTIONS(8483), + [anon_sym_AMP_EQ] = ACTIONS(8483), + [anon_sym_CARET_EQ] = ACTIONS(8483), + [anon_sym_PIPE_EQ] = ACTIONS(8483), + [anon_sym_and_eq] = ACTIONS(8485), + [anon_sym_or_eq] = ACTIONS(8485), + [anon_sym_xor_eq] = ACTIONS(8485), + [anon_sym_LT_EQ_GT] = ACTIONS(8483), + [anon_sym_or] = ACTIONS(8485), + [anon_sym_and] = ACTIONS(8485), + [anon_sym_bitor] = ACTIONS(8485), + [anon_sym_xor] = ACTIONS(8485), + [anon_sym_bitand] = ACTIONS(8485), + [anon_sym_not_eq] = ACTIONS(8485), + [anon_sym_DASH_DASH] = ACTIONS(8483), + [anon_sym_PLUS_PLUS] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8485), + [anon_sym_DOT_STAR] = ACTIONS(8483), + [anon_sym_DASH_GT] = ACTIONS(8483), + [anon_sym_L_DQUOTE] = ACTIONS(6874), + [anon_sym_u_DQUOTE] = ACTIONS(6874), + [anon_sym_U_DQUOTE] = ACTIONS(6874), + [anon_sym_u8_DQUOTE] = ACTIONS(6874), + [anon_sym_DQUOTE] = ACTIONS(6874), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6876), + [anon_sym_LR_DQUOTE] = ACTIONS(6876), + [anon_sym_uR_DQUOTE] = ACTIONS(6876), + [anon_sym_UR_DQUOTE] = ACTIONS(6876), + [anon_sym_u8R_DQUOTE] = ACTIONS(6876), + [sym_literal_suffix] = ACTIONS(8485), + }, + [STATE(3517)] = { + [sym_identifier] = ACTIONS(7187), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_TILDE] = ACTIONS(7189), + [anon_sym_STAR] = ACTIONS(7189), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7189), + [anon_sym___extension__] = ACTIONS(7187), + [anon_sym_virtual] = ACTIONS(7187), + [anon_sym_extern] = ACTIONS(7187), + [anon_sym___attribute__] = ACTIONS(7187), + [anon_sym___attribute] = ACTIONS(7187), + [anon_sym_using] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7189), + [anon_sym___declspec] = ACTIONS(7187), + [anon_sym___based] = ACTIONS(7187), + [anon_sym___cdecl] = ACTIONS(7187), + [anon_sym___clrcall] = ACTIONS(7187), + [anon_sym___stdcall] = ACTIONS(7187), + [anon_sym___fastcall] = ACTIONS(7187), + [anon_sym___thiscall] = ACTIONS(7187), + [anon_sym___vectorcall] = ACTIONS(7187), + [anon_sym_signed] = ACTIONS(7187), + [anon_sym_unsigned] = ACTIONS(7187), + [anon_sym_long] = ACTIONS(7187), + [anon_sym_short] = ACTIONS(7187), + [anon_sym_LBRACK] = ACTIONS(7187), + [anon_sym_static] = ACTIONS(7187), + [anon_sym_register] = ACTIONS(7187), + [anon_sym_inline] = ACTIONS(7187), + [anon_sym___inline] = ACTIONS(7187), + [anon_sym___inline__] = ACTIONS(7187), + [anon_sym___forceinline] = ACTIONS(7187), + [anon_sym_thread_local] = ACTIONS(7187), + [anon_sym___thread] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7187), + [anon_sym_volatile] = ACTIONS(7187), + [anon_sym_restrict] = ACTIONS(7187), + [anon_sym___restrict__] = ACTIONS(7187), + [anon_sym__Atomic] = ACTIONS(7187), + [anon_sym__Noreturn] = ACTIONS(7187), + [anon_sym_noreturn] = ACTIONS(7187), + [anon_sym__Nonnull] = ACTIONS(7187), + [anon_sym_mutable] = ACTIONS(7187), + [anon_sym_constinit] = ACTIONS(7187), + [anon_sym_consteval] = ACTIONS(7187), + [anon_sym_alignas] = ACTIONS(7187), + [anon_sym__Alignas] = ACTIONS(7187), + [sym_primitive_type] = ACTIONS(7187), + [anon_sym_enum] = ACTIONS(7187), + [anon_sym_class] = ACTIONS(7187), + [anon_sym_struct] = ACTIONS(7187), + [anon_sym_union] = ACTIONS(7187), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_typename] = ACTIONS(7187), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7187), + [anon_sym_decltype] = ACTIONS(7187), + [anon_sym_explicit] = ACTIONS(7187), + [anon_sym_template] = ACTIONS(7187), + [anon_sym_operator] = ACTIONS(7187), + [anon_sym_friend] = ACTIONS(7187), + [anon_sym_concept] = ACTIONS(7187), + [anon_sym_LBRACK_COLON] = ACTIONS(7189), + }, + [STATE(3518)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7767), + [anon_sym_COMMA] = ACTIONS(7767), + [anon_sym_RPAREN] = ACTIONS(7767), + [anon_sym_LPAREN2] = ACTIONS(7767), + [anon_sym_DASH] = ACTIONS(7765), + [anon_sym_PLUS] = ACTIONS(7765), + [anon_sym_STAR] = ACTIONS(7765), + [anon_sym_SLASH] = ACTIONS(7765), + [anon_sym_PERCENT] = ACTIONS(7765), + [anon_sym_PIPE_PIPE] = ACTIONS(7767), + [anon_sym_AMP_AMP] = ACTIONS(7767), + [anon_sym_PIPE] = ACTIONS(7765), + [anon_sym_CARET] = ACTIONS(7765), + [anon_sym_AMP] = ACTIONS(7765), + [anon_sym_EQ_EQ] = ACTIONS(7767), + [anon_sym_BANG_EQ] = ACTIONS(7767), + [anon_sym_GT] = ACTIONS(7765), + [anon_sym_GT_EQ] = ACTIONS(7767), + [anon_sym_LT_EQ] = ACTIONS(7765), + [anon_sym_LT] = ACTIONS(7765), + [anon_sym_LT_LT] = ACTIONS(7765), + [anon_sym_GT_GT] = ACTIONS(7765), + [anon_sym___extension__] = ACTIONS(7767), + [anon_sym_LBRACE] = ACTIONS(7767), + [anon_sym_LBRACK] = ACTIONS(7767), + [anon_sym_EQ] = ACTIONS(7765), + [anon_sym_const] = ACTIONS(7765), + [anon_sym_constexpr] = ACTIONS(7767), + [anon_sym_volatile] = ACTIONS(7767), + [anon_sym_restrict] = ACTIONS(7767), + [anon_sym___restrict__] = ACTIONS(7767), + [anon_sym__Atomic] = ACTIONS(7767), + [anon_sym__Noreturn] = ACTIONS(7767), + [anon_sym_noreturn] = ACTIONS(7767), + [anon_sym__Nonnull] = ACTIONS(7767), + [anon_sym_mutable] = ACTIONS(7767), + [anon_sym_constinit] = ACTIONS(7767), + [anon_sym_consteval] = ACTIONS(7767), + [anon_sym_alignas] = ACTIONS(7767), + [anon_sym__Alignas] = ACTIONS(7767), + [anon_sym_QMARK] = ACTIONS(7767), + [anon_sym_STAR_EQ] = ACTIONS(7767), + [anon_sym_SLASH_EQ] = ACTIONS(7767), + [anon_sym_PERCENT_EQ] = ACTIONS(7767), + [anon_sym_PLUS_EQ] = ACTIONS(7767), + [anon_sym_DASH_EQ] = ACTIONS(7767), + [anon_sym_LT_LT_EQ] = ACTIONS(7767), + [anon_sym_GT_GT_EQ] = ACTIONS(7767), + [anon_sym_AMP_EQ] = ACTIONS(7767), + [anon_sym_CARET_EQ] = ACTIONS(7767), + [anon_sym_PIPE_EQ] = ACTIONS(7767), + [anon_sym_LT_EQ_GT] = ACTIONS(7767), + [anon_sym_or] = ACTIONS(7767), + [anon_sym_and] = ACTIONS(7767), + [anon_sym_bitor] = ACTIONS(7767), + [anon_sym_xor] = ACTIONS(7767), + [anon_sym_bitand] = ACTIONS(7767), + [anon_sym_not_eq] = ACTIONS(7767), + [anon_sym_DASH_DASH] = ACTIONS(7767), + [anon_sym_PLUS_PLUS] = ACTIONS(7767), + [anon_sym_DOT] = ACTIONS(7765), + [anon_sym_DOT_STAR] = ACTIONS(7767), + [anon_sym_DASH_GT] = ACTIONS(7765), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7767), + [anon_sym_override] = ACTIONS(7767), + [anon_sym_requires] = ACTIONS(7767), + [anon_sym_DASH_GT_STAR] = ACTIONS(7767), + }, + [STATE(3519)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), [anon_sym_DOT_DOT_DOT] = ACTIONS(7741), [anon_sym_COMMA] = ACTIONS(7741), [anon_sym_RPAREN] = ACTIONS(7741), [anon_sym_LPAREN2] = ACTIONS(7741), [anon_sym_DASH] = ACTIONS(7739), [anon_sym_PLUS] = ACTIONS(7739), - [anon_sym_STAR] = ACTIONS(7739), + [anon_sym_STAR] = ACTIONS(7741), [anon_sym_SLASH] = ACTIONS(7739), - [anon_sym_PERCENT] = ACTIONS(7739), + [anon_sym_PERCENT] = ACTIONS(7741), [anon_sym_PIPE_PIPE] = ACTIONS(7741), [anon_sym_AMP_AMP] = ACTIONS(7741), [anon_sym_PIPE] = ACTIONS(7739), - [anon_sym_CARET] = ACTIONS(7739), + [anon_sym_CARET] = ACTIONS(7741), [anon_sym_AMP] = ACTIONS(7739), [anon_sym_EQ_EQ] = ACTIONS(7741), [anon_sym_BANG_EQ] = ACTIONS(7741), @@ -431649,12 +430718,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(7741), [anon_sym_LT_EQ] = ACTIONS(7739), [anon_sym_LT] = ACTIONS(7739), - [anon_sym_LT_LT] = ACTIONS(7739), - [anon_sym_GT_GT] = ACTIONS(7739), + [anon_sym_LT_LT] = ACTIONS(7741), + [anon_sym_GT_GT] = ACTIONS(7741), + [anon_sym_SEMI] = ACTIONS(7741), [anon_sym___extension__] = ACTIONS(7741), + [anon_sym___attribute__] = ACTIONS(7741), + [anon_sym___attribute] = ACTIONS(7739), + [anon_sym_COLON] = ACTIONS(7739), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7741), [anon_sym_LBRACE] = ACTIONS(7741), + [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_signed] = ACTIONS(9148), + [anon_sym_unsigned] = ACTIONS(9148), + [anon_sym_long] = ACTIONS(9148), + [anon_sym_short] = ACTIONS(9148), [anon_sym_LBRACK] = ACTIONS(7741), - [anon_sym_EQ] = ACTIONS(7739), [anon_sym_const] = ACTIONS(7739), [anon_sym_constexpr] = ACTIONS(7741), [anon_sym_volatile] = ACTIONS(7741), @@ -431670,16 +430748,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(7741), [anon_sym__Alignas] = ACTIONS(7741), [anon_sym_QMARK] = ACTIONS(7741), - [anon_sym_STAR_EQ] = ACTIONS(7741), - [anon_sym_SLASH_EQ] = ACTIONS(7741), - [anon_sym_PERCENT_EQ] = ACTIONS(7741), - [anon_sym_PLUS_EQ] = ACTIONS(7741), - [anon_sym_DASH_EQ] = ACTIONS(7741), - [anon_sym_LT_LT_EQ] = ACTIONS(7741), - [anon_sym_GT_GT_EQ] = ACTIONS(7741), - [anon_sym_AMP_EQ] = ACTIONS(7741), - [anon_sym_CARET_EQ] = ACTIONS(7741), - [anon_sym_PIPE_EQ] = ACTIONS(7741), [anon_sym_LT_EQ_GT] = ACTIONS(7741), [anon_sym_or] = ACTIONS(7741), [anon_sym_and] = ACTIONS(7741), @@ -431691,1764 +430759,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(7741), [anon_sym_DOT] = ACTIONS(7739), [anon_sym_DOT_STAR] = ACTIONS(7741), - [anon_sym_DASH_GT] = ACTIONS(7739), + [anon_sym_DASH_GT] = ACTIONS(7741), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7741), [anon_sym_override] = ACTIONS(7741), [anon_sym_requires] = ACTIONS(7741), - [anon_sym_DASH_GT_STAR] = ACTIONS(7741), - }, - [STATE(3531)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7745), - [anon_sym_COMMA] = ACTIONS(7745), - [anon_sym_RPAREN] = ACTIONS(7745), - [anon_sym_LPAREN2] = ACTIONS(7745), - [anon_sym_DASH] = ACTIONS(7743), - [anon_sym_PLUS] = ACTIONS(7743), - [anon_sym_STAR] = ACTIONS(7743), - [anon_sym_SLASH] = ACTIONS(7743), - [anon_sym_PERCENT] = ACTIONS(7743), - [anon_sym_PIPE_PIPE] = ACTIONS(7745), - [anon_sym_AMP_AMP] = ACTIONS(7745), - [anon_sym_PIPE] = ACTIONS(7743), - [anon_sym_CARET] = ACTIONS(7743), - [anon_sym_AMP] = ACTIONS(7743), - [anon_sym_EQ_EQ] = ACTIONS(7745), - [anon_sym_BANG_EQ] = ACTIONS(7745), - [anon_sym_GT] = ACTIONS(7743), - [anon_sym_GT_EQ] = ACTIONS(7745), - [anon_sym_LT_EQ] = ACTIONS(7743), - [anon_sym_LT] = ACTIONS(7743), - [anon_sym_LT_LT] = ACTIONS(7743), - [anon_sym_GT_GT] = ACTIONS(7743), - [anon_sym___extension__] = ACTIONS(7745), - [anon_sym_LBRACE] = ACTIONS(7745), - [anon_sym_LBRACK] = ACTIONS(7745), - [anon_sym_EQ] = ACTIONS(7743), - [anon_sym_const] = ACTIONS(7743), - [anon_sym_constexpr] = ACTIONS(7745), - [anon_sym_volatile] = ACTIONS(7745), - [anon_sym_restrict] = ACTIONS(7745), - [anon_sym___restrict__] = ACTIONS(7745), - [anon_sym__Atomic] = ACTIONS(7745), - [anon_sym__Noreturn] = ACTIONS(7745), - [anon_sym_noreturn] = ACTIONS(7745), - [anon_sym__Nonnull] = ACTIONS(7745), - [anon_sym_mutable] = ACTIONS(7745), - [anon_sym_constinit] = ACTIONS(7745), - [anon_sym_consteval] = ACTIONS(7745), - [anon_sym_alignas] = ACTIONS(7745), - [anon_sym__Alignas] = ACTIONS(7745), - [anon_sym_QMARK] = ACTIONS(7745), - [anon_sym_STAR_EQ] = ACTIONS(7745), - [anon_sym_SLASH_EQ] = ACTIONS(7745), - [anon_sym_PERCENT_EQ] = ACTIONS(7745), - [anon_sym_PLUS_EQ] = ACTIONS(7745), - [anon_sym_DASH_EQ] = ACTIONS(7745), - [anon_sym_LT_LT_EQ] = ACTIONS(7745), - [anon_sym_GT_GT_EQ] = ACTIONS(7745), - [anon_sym_AMP_EQ] = ACTIONS(7745), - [anon_sym_CARET_EQ] = ACTIONS(7745), - [anon_sym_PIPE_EQ] = ACTIONS(7745), - [anon_sym_LT_EQ_GT] = ACTIONS(7745), - [anon_sym_or] = ACTIONS(7745), - [anon_sym_and] = ACTIONS(7745), - [anon_sym_bitor] = ACTIONS(7745), - [anon_sym_xor] = ACTIONS(7745), - [anon_sym_bitand] = ACTIONS(7745), - [anon_sym_not_eq] = ACTIONS(7745), - [anon_sym_DASH_DASH] = ACTIONS(7745), - [anon_sym_PLUS_PLUS] = ACTIONS(7745), - [anon_sym_DOT] = ACTIONS(7743), - [anon_sym_DOT_STAR] = ACTIONS(7745), - [anon_sym_DASH_GT] = ACTIONS(7743), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7745), - [anon_sym_override] = ACTIONS(7745), - [anon_sym_requires] = ACTIONS(7745), - [anon_sym_DASH_GT_STAR] = ACTIONS(7745), - }, - [STATE(3532)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7753), - [anon_sym_COMMA] = ACTIONS(7753), - [anon_sym_RPAREN] = ACTIONS(7753), - [anon_sym_LPAREN2] = ACTIONS(7753), - [anon_sym_DASH] = ACTIONS(7751), - [anon_sym_PLUS] = ACTIONS(7751), - [anon_sym_STAR] = ACTIONS(7751), - [anon_sym_SLASH] = ACTIONS(7751), - [anon_sym_PERCENT] = ACTIONS(7751), - [anon_sym_PIPE_PIPE] = ACTIONS(7753), - [anon_sym_AMP_AMP] = ACTIONS(7753), - [anon_sym_PIPE] = ACTIONS(7751), - [anon_sym_CARET] = ACTIONS(7751), - [anon_sym_AMP] = ACTIONS(7751), - [anon_sym_EQ_EQ] = ACTIONS(7753), - [anon_sym_BANG_EQ] = ACTIONS(7753), - [anon_sym_GT] = ACTIONS(7751), - [anon_sym_GT_EQ] = ACTIONS(7753), - [anon_sym_LT_EQ] = ACTIONS(7751), - [anon_sym_LT] = ACTIONS(7751), - [anon_sym_LT_LT] = ACTIONS(7751), - [anon_sym_GT_GT] = ACTIONS(7751), - [anon_sym___extension__] = ACTIONS(7753), - [anon_sym_LBRACE] = ACTIONS(7753), - [anon_sym_LBRACK] = ACTIONS(7753), - [anon_sym_EQ] = ACTIONS(7751), - [anon_sym_const] = ACTIONS(7751), - [anon_sym_constexpr] = ACTIONS(7753), - [anon_sym_volatile] = ACTIONS(7753), - [anon_sym_restrict] = ACTIONS(7753), - [anon_sym___restrict__] = ACTIONS(7753), - [anon_sym__Atomic] = ACTIONS(7753), - [anon_sym__Noreturn] = ACTIONS(7753), - [anon_sym_noreturn] = ACTIONS(7753), - [anon_sym__Nonnull] = ACTIONS(7753), - [anon_sym_mutable] = ACTIONS(7753), - [anon_sym_constinit] = ACTIONS(7753), - [anon_sym_consteval] = ACTIONS(7753), - [anon_sym_alignas] = ACTIONS(7753), - [anon_sym__Alignas] = ACTIONS(7753), - [anon_sym_QMARK] = ACTIONS(7753), - [anon_sym_STAR_EQ] = ACTIONS(7753), - [anon_sym_SLASH_EQ] = ACTIONS(7753), - [anon_sym_PERCENT_EQ] = ACTIONS(7753), - [anon_sym_PLUS_EQ] = ACTIONS(7753), - [anon_sym_DASH_EQ] = ACTIONS(7753), - [anon_sym_LT_LT_EQ] = ACTIONS(7753), - [anon_sym_GT_GT_EQ] = ACTIONS(7753), - [anon_sym_AMP_EQ] = ACTIONS(7753), - [anon_sym_CARET_EQ] = ACTIONS(7753), - [anon_sym_PIPE_EQ] = ACTIONS(7753), - [anon_sym_LT_EQ_GT] = ACTIONS(7753), - [anon_sym_or] = ACTIONS(7753), - [anon_sym_and] = ACTIONS(7753), - [anon_sym_bitor] = ACTIONS(7753), - [anon_sym_xor] = ACTIONS(7753), - [anon_sym_bitand] = ACTIONS(7753), - [anon_sym_not_eq] = ACTIONS(7753), - [anon_sym_DASH_DASH] = ACTIONS(7753), - [anon_sym_PLUS_PLUS] = ACTIONS(7753), - [anon_sym_DOT] = ACTIONS(7751), - [anon_sym_DOT_STAR] = ACTIONS(7753), - [anon_sym_DASH_GT] = ACTIONS(7751), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7753), - [anon_sym_override] = ACTIONS(7753), - [anon_sym_requires] = ACTIONS(7753), - [anon_sym_DASH_GT_STAR] = ACTIONS(7753), - }, - [STATE(3533)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), - [anon_sym_COMMA] = ACTIONS(7757), - [anon_sym_RPAREN] = ACTIONS(7757), - [anon_sym_LPAREN2] = ACTIONS(7757), - [anon_sym_DASH] = ACTIONS(7755), - [anon_sym_PLUS] = ACTIONS(7755), - [anon_sym_STAR] = ACTIONS(7755), - [anon_sym_SLASH] = ACTIONS(7755), - [anon_sym_PERCENT] = ACTIONS(7755), - [anon_sym_PIPE_PIPE] = ACTIONS(7757), - [anon_sym_AMP_AMP] = ACTIONS(7757), - [anon_sym_PIPE] = ACTIONS(7755), - [anon_sym_CARET] = ACTIONS(7755), - [anon_sym_AMP] = ACTIONS(7755), - [anon_sym_EQ_EQ] = ACTIONS(7757), - [anon_sym_BANG_EQ] = ACTIONS(7757), - [anon_sym_GT] = ACTIONS(7755), - [anon_sym_GT_EQ] = ACTIONS(7757), - [anon_sym_LT_EQ] = ACTIONS(7755), - [anon_sym_LT] = ACTIONS(7755), - [anon_sym_LT_LT] = ACTIONS(7755), - [anon_sym_GT_GT] = ACTIONS(7755), - [anon_sym___extension__] = ACTIONS(7757), - [anon_sym_LBRACE] = ACTIONS(7757), - [anon_sym_LBRACK] = ACTIONS(7757), - [anon_sym_EQ] = ACTIONS(7755), - [anon_sym_const] = ACTIONS(7755), - [anon_sym_constexpr] = ACTIONS(7757), - [anon_sym_volatile] = ACTIONS(7757), - [anon_sym_restrict] = ACTIONS(7757), - [anon_sym___restrict__] = ACTIONS(7757), - [anon_sym__Atomic] = ACTIONS(7757), - [anon_sym__Noreturn] = ACTIONS(7757), - [anon_sym_noreturn] = ACTIONS(7757), - [anon_sym__Nonnull] = ACTIONS(7757), - [anon_sym_mutable] = ACTIONS(7757), - [anon_sym_constinit] = ACTIONS(7757), - [anon_sym_consteval] = ACTIONS(7757), - [anon_sym_alignas] = ACTIONS(7757), - [anon_sym__Alignas] = ACTIONS(7757), - [anon_sym_QMARK] = ACTIONS(7757), - [anon_sym_STAR_EQ] = ACTIONS(7757), - [anon_sym_SLASH_EQ] = ACTIONS(7757), - [anon_sym_PERCENT_EQ] = ACTIONS(7757), - [anon_sym_PLUS_EQ] = ACTIONS(7757), - [anon_sym_DASH_EQ] = ACTIONS(7757), - [anon_sym_LT_LT_EQ] = ACTIONS(7757), - [anon_sym_GT_GT_EQ] = ACTIONS(7757), - [anon_sym_AMP_EQ] = ACTIONS(7757), - [anon_sym_CARET_EQ] = ACTIONS(7757), - [anon_sym_PIPE_EQ] = ACTIONS(7757), - [anon_sym_LT_EQ_GT] = ACTIONS(7757), - [anon_sym_or] = ACTIONS(7757), - [anon_sym_and] = ACTIONS(7757), - [anon_sym_bitor] = ACTIONS(7757), - [anon_sym_xor] = ACTIONS(7757), - [anon_sym_bitand] = ACTIONS(7757), - [anon_sym_not_eq] = ACTIONS(7757), - [anon_sym_DASH_DASH] = ACTIONS(7757), - [anon_sym_PLUS_PLUS] = ACTIONS(7757), - [anon_sym_DOT] = ACTIONS(7755), - [anon_sym_DOT_STAR] = ACTIONS(7757), - [anon_sym_DASH_GT] = ACTIONS(7755), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7757), - [anon_sym_override] = ACTIONS(7757), - [anon_sym_requires] = ACTIONS(7757), - [anon_sym_DASH_GT_STAR] = ACTIONS(7757), - }, - [STATE(3534)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7761), - [anon_sym_COMMA] = ACTIONS(7761), - [anon_sym_RPAREN] = ACTIONS(7761), - [anon_sym_LPAREN2] = ACTIONS(7761), - [anon_sym_DASH] = ACTIONS(7759), - [anon_sym_PLUS] = ACTIONS(7759), - [anon_sym_STAR] = ACTIONS(7759), - [anon_sym_SLASH] = ACTIONS(7759), - [anon_sym_PERCENT] = ACTIONS(7759), - [anon_sym_PIPE_PIPE] = ACTIONS(7761), - [anon_sym_AMP_AMP] = ACTIONS(7761), - [anon_sym_PIPE] = ACTIONS(7759), - [anon_sym_CARET] = ACTIONS(7759), - [anon_sym_AMP] = ACTIONS(7759), - [anon_sym_EQ_EQ] = ACTIONS(7761), - [anon_sym_BANG_EQ] = ACTIONS(7761), - [anon_sym_GT] = ACTIONS(7759), - [anon_sym_GT_EQ] = ACTIONS(7761), - [anon_sym_LT_EQ] = ACTIONS(7759), - [anon_sym_LT] = ACTIONS(7759), - [anon_sym_LT_LT] = ACTIONS(7759), - [anon_sym_GT_GT] = ACTIONS(7759), - [anon_sym___extension__] = ACTIONS(7761), - [anon_sym_LBRACE] = ACTIONS(7761), - [anon_sym_LBRACK] = ACTIONS(7761), - [anon_sym_EQ] = ACTIONS(7759), - [anon_sym_const] = ACTIONS(7759), - [anon_sym_constexpr] = ACTIONS(7761), - [anon_sym_volatile] = ACTIONS(7761), - [anon_sym_restrict] = ACTIONS(7761), - [anon_sym___restrict__] = ACTIONS(7761), - [anon_sym__Atomic] = ACTIONS(7761), - [anon_sym__Noreturn] = ACTIONS(7761), - [anon_sym_noreturn] = ACTIONS(7761), - [anon_sym__Nonnull] = ACTIONS(7761), - [anon_sym_mutable] = ACTIONS(7761), - [anon_sym_constinit] = ACTIONS(7761), - [anon_sym_consteval] = ACTIONS(7761), - [anon_sym_alignas] = ACTIONS(7761), - [anon_sym__Alignas] = ACTIONS(7761), - [anon_sym_QMARK] = ACTIONS(7761), - [anon_sym_STAR_EQ] = ACTIONS(7761), - [anon_sym_SLASH_EQ] = ACTIONS(7761), - [anon_sym_PERCENT_EQ] = ACTIONS(7761), - [anon_sym_PLUS_EQ] = ACTIONS(7761), - [anon_sym_DASH_EQ] = ACTIONS(7761), - [anon_sym_LT_LT_EQ] = ACTIONS(7761), - [anon_sym_GT_GT_EQ] = ACTIONS(7761), - [anon_sym_AMP_EQ] = ACTIONS(7761), - [anon_sym_CARET_EQ] = ACTIONS(7761), - [anon_sym_PIPE_EQ] = ACTIONS(7761), - [anon_sym_LT_EQ_GT] = ACTIONS(7761), - [anon_sym_or] = ACTIONS(7761), - [anon_sym_and] = ACTIONS(7761), - [anon_sym_bitor] = ACTIONS(7761), - [anon_sym_xor] = ACTIONS(7761), - [anon_sym_bitand] = ACTIONS(7761), - [anon_sym_not_eq] = ACTIONS(7761), - [anon_sym_DASH_DASH] = ACTIONS(7761), - [anon_sym_PLUS_PLUS] = ACTIONS(7761), - [anon_sym_DOT] = ACTIONS(7759), - [anon_sym_DOT_STAR] = ACTIONS(7761), - [anon_sym_DASH_GT] = ACTIONS(7759), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7761), - [anon_sym_override] = ACTIONS(7761), - [anon_sym_requires] = ACTIONS(7761), - [anon_sym_DASH_GT_STAR] = ACTIONS(7761), - }, - [STATE(3535)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7765), - [anon_sym_COMMA] = ACTIONS(7765), - [anon_sym_RPAREN] = ACTIONS(7765), - [anon_sym_LPAREN2] = ACTIONS(7765), - [anon_sym_DASH] = ACTIONS(7763), - [anon_sym_PLUS] = ACTIONS(7763), - [anon_sym_STAR] = ACTIONS(7763), - [anon_sym_SLASH] = ACTIONS(7763), - [anon_sym_PERCENT] = ACTIONS(7763), - [anon_sym_PIPE_PIPE] = ACTIONS(7765), - [anon_sym_AMP_AMP] = ACTIONS(7765), - [anon_sym_PIPE] = ACTIONS(7763), - [anon_sym_CARET] = ACTIONS(7763), - [anon_sym_AMP] = ACTIONS(7763), - [anon_sym_EQ_EQ] = ACTIONS(7765), - [anon_sym_BANG_EQ] = ACTIONS(7765), - [anon_sym_GT] = ACTIONS(7763), - [anon_sym_GT_EQ] = ACTIONS(7765), - [anon_sym_LT_EQ] = ACTIONS(7763), - [anon_sym_LT] = ACTIONS(7763), - [anon_sym_LT_LT] = ACTIONS(7763), - [anon_sym_GT_GT] = ACTIONS(7763), - [anon_sym___extension__] = ACTIONS(7765), - [anon_sym_LBRACE] = ACTIONS(7765), - [anon_sym_LBRACK] = ACTIONS(7765), - [anon_sym_EQ] = ACTIONS(7763), - [anon_sym_const] = ACTIONS(7763), - [anon_sym_constexpr] = ACTIONS(7765), - [anon_sym_volatile] = ACTIONS(7765), - [anon_sym_restrict] = ACTIONS(7765), - [anon_sym___restrict__] = ACTIONS(7765), - [anon_sym__Atomic] = ACTIONS(7765), - [anon_sym__Noreturn] = ACTIONS(7765), - [anon_sym_noreturn] = ACTIONS(7765), - [anon_sym__Nonnull] = ACTIONS(7765), - [anon_sym_mutable] = ACTIONS(7765), - [anon_sym_constinit] = ACTIONS(7765), - [anon_sym_consteval] = ACTIONS(7765), - [anon_sym_alignas] = ACTIONS(7765), - [anon_sym__Alignas] = ACTIONS(7765), - [anon_sym_QMARK] = ACTIONS(7765), - [anon_sym_STAR_EQ] = ACTIONS(7765), - [anon_sym_SLASH_EQ] = ACTIONS(7765), - [anon_sym_PERCENT_EQ] = ACTIONS(7765), - [anon_sym_PLUS_EQ] = ACTIONS(7765), - [anon_sym_DASH_EQ] = ACTIONS(7765), - [anon_sym_LT_LT_EQ] = ACTIONS(7765), - [anon_sym_GT_GT_EQ] = ACTIONS(7765), - [anon_sym_AMP_EQ] = ACTIONS(7765), - [anon_sym_CARET_EQ] = ACTIONS(7765), - [anon_sym_PIPE_EQ] = ACTIONS(7765), - [anon_sym_LT_EQ_GT] = ACTIONS(7765), - [anon_sym_or] = ACTIONS(7765), - [anon_sym_and] = ACTIONS(7765), - [anon_sym_bitor] = ACTIONS(7765), - [anon_sym_xor] = ACTIONS(7765), - [anon_sym_bitand] = ACTIONS(7765), - [anon_sym_not_eq] = ACTIONS(7765), - [anon_sym_DASH_DASH] = ACTIONS(7765), - [anon_sym_PLUS_PLUS] = ACTIONS(7765), - [anon_sym_DOT] = ACTIONS(7763), - [anon_sym_DOT_STAR] = ACTIONS(7765), - [anon_sym_DASH_GT] = ACTIONS(7763), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7765), - [anon_sym_override] = ACTIONS(7765), - [anon_sym_requires] = ACTIONS(7765), - [anon_sym_DASH_GT_STAR] = ACTIONS(7765), - }, - [STATE(3536)] = { - [sym__abstract_declarator] = STATE(6300), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3580), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2072), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_RPAREN] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(8487), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7343), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(8489), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7343), - [anon_sym_AMP] = ACTIONS(8491), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7343), - [anon_sym_GT_GT] = ACTIONS(7343), - [anon_sym_SEMI] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(7341), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7343), - [anon_sym_RBRACE] = ACTIONS(7343), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7343), - [anon_sym_and] = ACTIONS(7343), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7343), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7343), - }, - [STATE(3537)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7677), - [anon_sym_COMMA] = ACTIONS(7677), - [anon_sym_RPAREN] = ACTIONS(7677), - [anon_sym_LPAREN2] = ACTIONS(7677), - [anon_sym_DASH] = ACTIONS(7675), - [anon_sym_PLUS] = ACTIONS(7675), - [anon_sym_STAR] = ACTIONS(7677), - [anon_sym_SLASH] = ACTIONS(7675), - [anon_sym_PERCENT] = ACTIONS(7677), - [anon_sym_PIPE_PIPE] = ACTIONS(7677), - [anon_sym_AMP_AMP] = ACTIONS(7677), - [anon_sym_PIPE] = ACTIONS(7675), - [anon_sym_CARET] = ACTIONS(7677), - [anon_sym_AMP] = ACTIONS(7675), - [anon_sym_EQ_EQ] = ACTIONS(7677), - [anon_sym_BANG_EQ] = ACTIONS(7677), - [anon_sym_GT] = ACTIONS(7675), - [anon_sym_GT_EQ] = ACTIONS(7677), - [anon_sym_LT_EQ] = ACTIONS(7675), - [anon_sym_LT] = ACTIONS(7675), - [anon_sym_LT_LT] = ACTIONS(7677), - [anon_sym_GT_GT] = ACTIONS(7677), - [anon_sym_SEMI] = ACTIONS(7677), - [anon_sym___extension__] = ACTIONS(7677), - [anon_sym___attribute__] = ACTIONS(7677), - [anon_sym___attribute] = ACTIONS(7675), - [anon_sym_COLON] = ACTIONS(7675), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7677), - [anon_sym_LBRACE] = ACTIONS(7677), - [anon_sym_RBRACE] = ACTIONS(7677), - [anon_sym_signed] = ACTIONS(9234), - [anon_sym_unsigned] = ACTIONS(9234), - [anon_sym_long] = ACTIONS(9234), - [anon_sym_short] = ACTIONS(9234), - [anon_sym_LBRACK] = ACTIONS(7677), - [anon_sym_const] = ACTIONS(7675), - [anon_sym_constexpr] = ACTIONS(7677), - [anon_sym_volatile] = ACTIONS(7677), - [anon_sym_restrict] = ACTIONS(7677), - [anon_sym___restrict__] = ACTIONS(7677), - [anon_sym__Atomic] = ACTIONS(7677), - [anon_sym__Noreturn] = ACTIONS(7677), - [anon_sym_noreturn] = ACTIONS(7677), - [anon_sym__Nonnull] = ACTIONS(7677), - [anon_sym_mutable] = ACTIONS(7677), - [anon_sym_constinit] = ACTIONS(7677), - [anon_sym_consteval] = ACTIONS(7677), - [anon_sym_alignas] = ACTIONS(7677), - [anon_sym__Alignas] = ACTIONS(7677), - [anon_sym_QMARK] = ACTIONS(7677), - [anon_sym_LT_EQ_GT] = ACTIONS(7677), - [anon_sym_or] = ACTIONS(7677), - [anon_sym_and] = ACTIONS(7677), - [anon_sym_bitor] = ACTIONS(7677), - [anon_sym_xor] = ACTIONS(7677), - [anon_sym_bitand] = ACTIONS(7677), - [anon_sym_not_eq] = ACTIONS(7677), - [anon_sym_DASH_DASH] = ACTIONS(7677), - [anon_sym_PLUS_PLUS] = ACTIONS(7677), - [anon_sym_DOT] = ACTIONS(7675), - [anon_sym_DOT_STAR] = ACTIONS(7677), - [anon_sym_DASH_GT] = ACTIONS(7677), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7677), - [anon_sym_override] = ACTIONS(7677), - [anon_sym_requires] = ACTIONS(7677), - [anon_sym_COLON_RBRACK] = ACTIONS(7677), - }, - [STATE(3538)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7719), - [anon_sym_COMMA] = ACTIONS(7719), - [anon_sym_RPAREN] = ACTIONS(7719), - [anon_sym_LPAREN2] = ACTIONS(7719), - [anon_sym_DASH] = ACTIONS(7717), - [anon_sym_PLUS] = ACTIONS(7717), - [anon_sym_STAR] = ACTIONS(7719), - [anon_sym_SLASH] = ACTIONS(7717), - [anon_sym_PERCENT] = ACTIONS(7719), - [anon_sym_PIPE_PIPE] = ACTIONS(7719), - [anon_sym_AMP_AMP] = ACTIONS(7719), - [anon_sym_PIPE] = ACTIONS(7717), - [anon_sym_CARET] = ACTIONS(7719), - [anon_sym_AMP] = ACTIONS(7717), - [anon_sym_EQ_EQ] = ACTIONS(7719), - [anon_sym_BANG_EQ] = ACTIONS(7719), - [anon_sym_GT] = ACTIONS(7717), - [anon_sym_GT_EQ] = ACTIONS(7719), - [anon_sym_LT_EQ] = ACTIONS(7717), - [anon_sym_LT] = ACTIONS(7717), - [anon_sym_LT_LT] = ACTIONS(7719), - [anon_sym_GT_GT] = ACTIONS(7719), - [anon_sym_SEMI] = ACTIONS(7719), - [anon_sym___extension__] = ACTIONS(7719), - [anon_sym___attribute__] = ACTIONS(7719), - [anon_sym___attribute] = ACTIONS(7717), - [anon_sym_COLON] = ACTIONS(7717), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7719), - [anon_sym_LBRACE] = ACTIONS(7719), - [anon_sym_RBRACE] = ACTIONS(7719), - [anon_sym_signed] = ACTIONS(9214), - [anon_sym_unsigned] = ACTIONS(9214), - [anon_sym_long] = ACTIONS(9214), - [anon_sym_short] = ACTIONS(9214), - [anon_sym_LBRACK] = ACTIONS(7719), - [anon_sym_const] = ACTIONS(7717), - [anon_sym_constexpr] = ACTIONS(7719), - [anon_sym_volatile] = ACTIONS(7719), - [anon_sym_restrict] = ACTIONS(7719), - [anon_sym___restrict__] = ACTIONS(7719), - [anon_sym__Atomic] = ACTIONS(7719), - [anon_sym__Noreturn] = ACTIONS(7719), - [anon_sym_noreturn] = ACTIONS(7719), - [anon_sym__Nonnull] = ACTIONS(7719), - [anon_sym_mutable] = ACTIONS(7719), - [anon_sym_constinit] = ACTIONS(7719), - [anon_sym_consteval] = ACTIONS(7719), - [anon_sym_alignas] = ACTIONS(7719), - [anon_sym__Alignas] = ACTIONS(7719), - [anon_sym_QMARK] = ACTIONS(7719), - [anon_sym_LT_EQ_GT] = ACTIONS(7719), - [anon_sym_or] = ACTIONS(7719), - [anon_sym_and] = ACTIONS(7719), - [anon_sym_bitor] = ACTIONS(7719), - [anon_sym_xor] = ACTIONS(7719), - [anon_sym_bitand] = ACTIONS(7719), - [anon_sym_not_eq] = ACTIONS(7719), - [anon_sym_DASH_DASH] = ACTIONS(7719), - [anon_sym_PLUS_PLUS] = ACTIONS(7719), - [anon_sym_DOT] = ACTIONS(7717), - [anon_sym_DOT_STAR] = ACTIONS(7719), - [anon_sym_DASH_GT] = ACTIONS(7719), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7719), - [anon_sym_override] = ACTIONS(7719), - [anon_sym_requires] = ACTIONS(7719), - [anon_sym_COLON_RBRACK] = ACTIONS(7719), - }, - [STATE(3539)] = { - [sym_argument_list] = STATE(5537), - [sym_initializer_list] = STATE(6093), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(8569), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7223), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7223), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7223), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7223), - [anon_sym_GT_GT] = ACTIONS(7223), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_EQ] = ACTIONS(7223), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_STAR_EQ] = ACTIONS(7225), - [anon_sym_SLASH_EQ] = ACTIONS(7225), - [anon_sym_PERCENT_EQ] = ACTIONS(7225), - [anon_sym_PLUS_EQ] = ACTIONS(7225), - [anon_sym_DASH_EQ] = ACTIONS(7225), - [anon_sym_LT_LT_EQ] = ACTIONS(7225), - [anon_sym_GT_GT_EQ] = ACTIONS(7225), - [anon_sym_AMP_EQ] = ACTIONS(7225), - [anon_sym_CARET_EQ] = ACTIONS(7225), - [anon_sym_PIPE_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7223), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7225), - }, - [STATE(3540)] = { - [sym_attribute_specifier] = STATE(4098), - [sym_field_declaration_list] = STATE(3916), - [sym_virtual_specifier] = STATE(9612), - [sym_base_class_clause] = STATE(10573), - [sym_identifier] = ACTIONS(7235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [aux_sym_preproc_if_token2] = ACTIONS(7237), - [aux_sym_preproc_else_token1] = ACTIONS(7237), - [aux_sym_preproc_elif_token1] = ACTIONS(7235), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7237), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7237), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7237), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7237), - [anon_sym_GT_GT] = ACTIONS(7237), - [anon_sym___extension__] = ACTIONS(7235), - [anon_sym___attribute__] = ACTIONS(9244), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_COLON] = ACTIONS(8156), - [anon_sym_LBRACE] = ACTIONS(9246), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7235), - [anon_sym_volatile] = ACTIONS(7235), - [anon_sym_restrict] = ACTIONS(7235), - [anon_sym___restrict__] = ACTIONS(7235), - [anon_sym__Atomic] = ACTIONS(7235), - [anon_sym__Noreturn] = ACTIONS(7235), - [anon_sym_noreturn] = ACTIONS(7235), - [anon_sym__Nonnull] = ACTIONS(7235), - [anon_sym_mutable] = ACTIONS(7235), - [anon_sym_constinit] = ACTIONS(7235), - [anon_sym_consteval] = ACTIONS(7235), - [anon_sym_alignas] = ACTIONS(7235), - [anon_sym__Alignas] = ACTIONS(7235), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7235), - [anon_sym_and] = ACTIONS(7235), - [anon_sym_bitor] = ACTIONS(7235), - [anon_sym_xor] = ACTIONS(7235), - [anon_sym_bitand] = ACTIONS(7235), - [anon_sym_not_eq] = ACTIONS(7235), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7237), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7245), - [anon_sym_override] = ACTIONS(7245), - [anon_sym_requires] = ACTIONS(7235), - }, - [STATE(3541)] = { - [sym__abstract_declarator] = STATE(6366), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3520), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2275), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3520), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(8385), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(8387), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(8389), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym_SEMI] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(7391), - [anon_sym___attribute] = ACTIONS(7393), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), - }, - [STATE(3542)] = { - [sym_identifier] = ACTIONS(5589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5591), - [anon_sym_COMMA] = ACTIONS(5591), - [anon_sym_RPAREN] = ACTIONS(5591), - [aux_sym_preproc_if_token2] = ACTIONS(5591), - [aux_sym_preproc_else_token1] = ACTIONS(5591), - [aux_sym_preproc_elif_token1] = ACTIONS(5589), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5591), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5591), - [anon_sym_LPAREN2] = ACTIONS(5591), - [anon_sym_DASH] = ACTIONS(5589), - [anon_sym_PLUS] = ACTIONS(5589), - [anon_sym_STAR] = ACTIONS(5589), - [anon_sym_SLASH] = ACTIONS(5589), - [anon_sym_PERCENT] = ACTIONS(5589), - [anon_sym_PIPE_PIPE] = ACTIONS(5591), - [anon_sym_AMP_AMP] = ACTIONS(5591), - [anon_sym_PIPE] = ACTIONS(5589), - [anon_sym_CARET] = ACTIONS(5589), - [anon_sym_AMP] = ACTIONS(5589), - [anon_sym_EQ_EQ] = ACTIONS(5591), - [anon_sym_BANG_EQ] = ACTIONS(5591), - [anon_sym_GT] = ACTIONS(5589), - [anon_sym_GT_EQ] = ACTIONS(5591), - [anon_sym_LT_EQ] = ACTIONS(5589), - [anon_sym_LT] = ACTIONS(5589), - [anon_sym_LT_LT] = ACTIONS(5589), - [anon_sym_GT_GT] = ACTIONS(5589), - [anon_sym_SEMI] = ACTIONS(5591), - [anon_sym___attribute__] = ACTIONS(5589), - [anon_sym___attribute] = ACTIONS(5589), - [anon_sym_COLON] = ACTIONS(5589), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5591), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5591), - [anon_sym_RBRACE] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(5589), - [anon_sym_EQ] = ACTIONS(5589), - [anon_sym_QMARK] = ACTIONS(5591), - [anon_sym_STAR_EQ] = ACTIONS(5591), - [anon_sym_SLASH_EQ] = ACTIONS(5591), - [anon_sym_PERCENT_EQ] = ACTIONS(5591), - [anon_sym_PLUS_EQ] = ACTIONS(5591), - [anon_sym_DASH_EQ] = ACTIONS(5591), - [anon_sym_LT_LT_EQ] = ACTIONS(5591), - [anon_sym_GT_GT_EQ] = ACTIONS(5591), - [anon_sym_AMP_EQ] = ACTIONS(5591), - [anon_sym_CARET_EQ] = ACTIONS(5591), - [anon_sym_PIPE_EQ] = ACTIONS(5591), - [anon_sym_and_eq] = ACTIONS(5589), - [anon_sym_or_eq] = ACTIONS(5589), - [anon_sym_xor_eq] = ACTIONS(5589), - [anon_sym_LT_EQ_GT] = ACTIONS(5591), - [anon_sym_or] = ACTIONS(5589), - [anon_sym_and] = ACTIONS(5589), - [anon_sym_bitor] = ACTIONS(5589), - [anon_sym_xor] = ACTIONS(5589), - [anon_sym_bitand] = ACTIONS(5589), - [anon_sym_not_eq] = ACTIONS(5589), - [anon_sym_DASH_DASH] = ACTIONS(5591), - [anon_sym_PLUS_PLUS] = ACTIONS(5591), - [anon_sym_DOT] = ACTIONS(5589), - [anon_sym_DOT_STAR] = ACTIONS(5591), - [anon_sym_DASH_GT] = ACTIONS(5591), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5589), - [anon_sym_override] = ACTIONS(5589), - [anon_sym_requires] = ACTIONS(5589), - [anon_sym_COLON_RBRACK] = ACTIONS(5591), - }, - [STATE(3543)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7629), - [anon_sym_COMMA] = ACTIONS(7629), - [anon_sym_RPAREN] = ACTIONS(7629), - [anon_sym_LPAREN2] = ACTIONS(7629), - [anon_sym_DASH] = ACTIONS(7627), - [anon_sym_PLUS] = ACTIONS(7627), - [anon_sym_STAR] = ACTIONS(7627), - [anon_sym_SLASH] = ACTIONS(7627), - [anon_sym_PERCENT] = ACTIONS(7627), - [anon_sym_PIPE_PIPE] = ACTIONS(7629), - [anon_sym_AMP_AMP] = ACTIONS(7629), - [anon_sym_PIPE] = ACTIONS(7627), - [anon_sym_CARET] = ACTIONS(7627), - [anon_sym_AMP] = ACTIONS(7627), - [anon_sym_EQ_EQ] = ACTIONS(7629), - [anon_sym_BANG_EQ] = ACTIONS(7629), - [anon_sym_GT] = ACTIONS(7627), - [anon_sym_GT_EQ] = ACTIONS(7629), - [anon_sym_LT_EQ] = ACTIONS(7627), - [anon_sym_LT] = ACTIONS(7627), - [anon_sym_LT_LT] = ACTIONS(7627), - [anon_sym_GT_GT] = ACTIONS(7627), - [anon_sym___extension__] = ACTIONS(7629), - [anon_sym_LBRACE] = ACTIONS(7629), - [anon_sym_LBRACK] = ACTIONS(7629), - [anon_sym_EQ] = ACTIONS(7627), - [anon_sym_const] = ACTIONS(7627), - [anon_sym_constexpr] = ACTIONS(7629), - [anon_sym_volatile] = ACTIONS(7629), - [anon_sym_restrict] = ACTIONS(7629), - [anon_sym___restrict__] = ACTIONS(7629), - [anon_sym__Atomic] = ACTIONS(7629), - [anon_sym__Noreturn] = ACTIONS(7629), - [anon_sym_noreturn] = ACTIONS(7629), - [anon_sym__Nonnull] = ACTIONS(7629), - [anon_sym_mutable] = ACTIONS(7629), - [anon_sym_constinit] = ACTIONS(7629), - [anon_sym_consteval] = ACTIONS(7629), - [anon_sym_alignas] = ACTIONS(7629), - [anon_sym__Alignas] = ACTIONS(7629), - [anon_sym_QMARK] = ACTIONS(7629), - [anon_sym_STAR_EQ] = ACTIONS(7629), - [anon_sym_SLASH_EQ] = ACTIONS(7629), - [anon_sym_PERCENT_EQ] = ACTIONS(7629), - [anon_sym_PLUS_EQ] = ACTIONS(7629), - [anon_sym_DASH_EQ] = ACTIONS(7629), - [anon_sym_LT_LT_EQ] = ACTIONS(7629), - [anon_sym_GT_GT_EQ] = ACTIONS(7629), - [anon_sym_AMP_EQ] = ACTIONS(7629), - [anon_sym_CARET_EQ] = ACTIONS(7629), - [anon_sym_PIPE_EQ] = ACTIONS(7629), - [anon_sym_LT_EQ_GT] = ACTIONS(7629), - [anon_sym_or] = ACTIONS(7629), - [anon_sym_and] = ACTIONS(7629), - [anon_sym_bitor] = ACTIONS(7629), - [anon_sym_xor] = ACTIONS(7629), - [anon_sym_bitand] = ACTIONS(7629), - [anon_sym_not_eq] = ACTIONS(7629), - [anon_sym_DASH_DASH] = ACTIONS(7629), - [anon_sym_PLUS_PLUS] = ACTIONS(7629), - [anon_sym_DOT] = ACTIONS(7627), - [anon_sym_DOT_STAR] = ACTIONS(7629), - [anon_sym_DASH_GT] = ACTIONS(7627), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7629), - [anon_sym_override] = ACTIONS(7629), - [anon_sym_requires] = ACTIONS(7629), - [anon_sym_DASH_GT_STAR] = ACTIONS(7629), - }, - [STATE(3544)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7645), - [anon_sym_COMMA] = ACTIONS(7645), - [anon_sym_RPAREN] = ACTIONS(7645), - [anon_sym_LPAREN2] = ACTIONS(7645), - [anon_sym_DASH] = ACTIONS(7643), - [anon_sym_PLUS] = ACTIONS(7643), - [anon_sym_STAR] = ACTIONS(7643), - [anon_sym_SLASH] = ACTIONS(7643), - [anon_sym_PERCENT] = ACTIONS(7643), - [anon_sym_PIPE_PIPE] = ACTIONS(7645), - [anon_sym_AMP_AMP] = ACTIONS(7645), - [anon_sym_PIPE] = ACTIONS(7643), - [anon_sym_CARET] = ACTIONS(7643), - [anon_sym_AMP] = ACTIONS(7643), - [anon_sym_EQ_EQ] = ACTIONS(7645), - [anon_sym_BANG_EQ] = ACTIONS(7645), - [anon_sym_GT] = ACTIONS(7643), - [anon_sym_GT_EQ] = ACTIONS(7645), - [anon_sym_LT_EQ] = ACTIONS(7643), - [anon_sym_LT] = ACTIONS(7643), - [anon_sym_LT_LT] = ACTIONS(7643), - [anon_sym_GT_GT] = ACTIONS(7643), - [anon_sym___extension__] = ACTIONS(7645), - [anon_sym_LBRACE] = ACTIONS(7645), - [anon_sym_LBRACK] = ACTIONS(7645), - [anon_sym_EQ] = ACTIONS(7643), - [anon_sym_const] = ACTIONS(7643), - [anon_sym_constexpr] = ACTIONS(7645), - [anon_sym_volatile] = ACTIONS(7645), - [anon_sym_restrict] = ACTIONS(7645), - [anon_sym___restrict__] = ACTIONS(7645), - [anon_sym__Atomic] = ACTIONS(7645), - [anon_sym__Noreturn] = ACTIONS(7645), - [anon_sym_noreturn] = ACTIONS(7645), - [anon_sym__Nonnull] = ACTIONS(7645), - [anon_sym_mutable] = ACTIONS(7645), - [anon_sym_constinit] = ACTIONS(7645), - [anon_sym_consteval] = ACTIONS(7645), - [anon_sym_alignas] = ACTIONS(7645), - [anon_sym__Alignas] = ACTIONS(7645), - [anon_sym_QMARK] = ACTIONS(7645), - [anon_sym_STAR_EQ] = ACTIONS(7645), - [anon_sym_SLASH_EQ] = ACTIONS(7645), - [anon_sym_PERCENT_EQ] = ACTIONS(7645), - [anon_sym_PLUS_EQ] = ACTIONS(7645), - [anon_sym_DASH_EQ] = ACTIONS(7645), - [anon_sym_LT_LT_EQ] = ACTIONS(7645), - [anon_sym_GT_GT_EQ] = ACTIONS(7645), - [anon_sym_AMP_EQ] = ACTIONS(7645), - [anon_sym_CARET_EQ] = ACTIONS(7645), - [anon_sym_PIPE_EQ] = ACTIONS(7645), - [anon_sym_LT_EQ_GT] = ACTIONS(7645), - [anon_sym_or] = ACTIONS(7645), - [anon_sym_and] = ACTIONS(7645), - [anon_sym_bitor] = ACTIONS(7645), - [anon_sym_xor] = ACTIONS(7645), - [anon_sym_bitand] = ACTIONS(7645), - [anon_sym_not_eq] = ACTIONS(7645), - [anon_sym_DASH_DASH] = ACTIONS(7645), - [anon_sym_PLUS_PLUS] = ACTIONS(7645), - [anon_sym_DOT] = ACTIONS(7643), - [anon_sym_DOT_STAR] = ACTIONS(7645), - [anon_sym_DASH_GT] = ACTIONS(7643), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7645), - [anon_sym_override] = ACTIONS(7645), - [anon_sym_requires] = ACTIONS(7645), - [anon_sym_DASH_GT_STAR] = ACTIONS(7645), - }, - [STATE(3545)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7563), - [anon_sym_and] = ACTIONS(7563), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7563), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), - [anon_sym_DASH_GT_STAR] = ACTIONS(7563), - }, - [STATE(3546)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7601), - [anon_sym_COMMA] = ACTIONS(7601), - [anon_sym_RPAREN] = ACTIONS(7601), - [anon_sym_LPAREN2] = ACTIONS(7601), - [anon_sym_DASH] = ACTIONS(7599), - [anon_sym_PLUS] = ACTIONS(7599), - [anon_sym_STAR] = ACTIONS(7599), - [anon_sym_SLASH] = ACTIONS(7599), - [anon_sym_PERCENT] = ACTIONS(7599), - [anon_sym_PIPE_PIPE] = ACTIONS(7601), - [anon_sym_AMP_AMP] = ACTIONS(7601), - [anon_sym_PIPE] = ACTIONS(7599), - [anon_sym_CARET] = ACTIONS(7599), - [anon_sym_AMP] = ACTIONS(7599), - [anon_sym_EQ_EQ] = ACTIONS(7601), - [anon_sym_BANG_EQ] = ACTIONS(7601), - [anon_sym_GT] = ACTIONS(7599), - [anon_sym_GT_EQ] = ACTIONS(7601), - [anon_sym_LT_EQ] = ACTIONS(7599), - [anon_sym_LT] = ACTIONS(7599), - [anon_sym_LT_LT] = ACTIONS(7599), - [anon_sym_GT_GT] = ACTIONS(7599), - [anon_sym___extension__] = ACTIONS(7601), - [anon_sym_LBRACE] = ACTIONS(7601), - [anon_sym_LBRACK] = ACTIONS(7601), - [anon_sym_EQ] = ACTIONS(7599), - [anon_sym_const] = ACTIONS(7599), - [anon_sym_constexpr] = ACTIONS(7601), - [anon_sym_volatile] = ACTIONS(7601), - [anon_sym_restrict] = ACTIONS(7601), - [anon_sym___restrict__] = ACTIONS(7601), - [anon_sym__Atomic] = ACTIONS(7601), - [anon_sym__Noreturn] = ACTIONS(7601), - [anon_sym_noreturn] = ACTIONS(7601), - [anon_sym__Nonnull] = ACTIONS(7601), - [anon_sym_mutable] = ACTIONS(7601), - [anon_sym_constinit] = ACTIONS(7601), - [anon_sym_consteval] = ACTIONS(7601), - [anon_sym_alignas] = ACTIONS(7601), - [anon_sym__Alignas] = ACTIONS(7601), - [anon_sym_QMARK] = ACTIONS(7601), - [anon_sym_STAR_EQ] = ACTIONS(7601), - [anon_sym_SLASH_EQ] = ACTIONS(7601), - [anon_sym_PERCENT_EQ] = ACTIONS(7601), - [anon_sym_PLUS_EQ] = ACTIONS(7601), - [anon_sym_DASH_EQ] = ACTIONS(7601), - [anon_sym_LT_LT_EQ] = ACTIONS(7601), - [anon_sym_GT_GT_EQ] = ACTIONS(7601), - [anon_sym_AMP_EQ] = ACTIONS(7601), - [anon_sym_CARET_EQ] = ACTIONS(7601), - [anon_sym_PIPE_EQ] = ACTIONS(7601), - [anon_sym_LT_EQ_GT] = ACTIONS(7601), - [anon_sym_or] = ACTIONS(7601), - [anon_sym_and] = ACTIONS(7601), - [anon_sym_bitor] = ACTIONS(7601), - [anon_sym_xor] = ACTIONS(7601), - [anon_sym_bitand] = ACTIONS(7601), - [anon_sym_not_eq] = ACTIONS(7601), - [anon_sym_DASH_DASH] = ACTIONS(7601), - [anon_sym_PLUS_PLUS] = ACTIONS(7601), - [anon_sym_DOT] = ACTIONS(7599), - [anon_sym_DOT_STAR] = ACTIONS(7601), - [anon_sym_DASH_GT] = ACTIONS(7599), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7601), - [anon_sym_override] = ACTIONS(7601), - [anon_sym_requires] = ACTIONS(7601), - [anon_sym_DASH_GT_STAR] = ACTIONS(7601), - }, - [STATE(3547)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7605), - [anon_sym_COMMA] = ACTIONS(7605), - [anon_sym_RPAREN] = ACTIONS(7605), - [anon_sym_LPAREN2] = ACTIONS(7605), - [anon_sym_DASH] = ACTIONS(7603), - [anon_sym_PLUS] = ACTIONS(7603), - [anon_sym_STAR] = ACTIONS(7603), - [anon_sym_SLASH] = ACTIONS(7603), - [anon_sym_PERCENT] = ACTIONS(7603), - [anon_sym_PIPE_PIPE] = ACTIONS(7605), - [anon_sym_AMP_AMP] = ACTIONS(7605), - [anon_sym_PIPE] = ACTIONS(7603), - [anon_sym_CARET] = ACTIONS(7603), - [anon_sym_AMP] = ACTIONS(7603), - [anon_sym_EQ_EQ] = ACTIONS(7605), - [anon_sym_BANG_EQ] = ACTIONS(7605), - [anon_sym_GT] = ACTIONS(7603), - [anon_sym_GT_EQ] = ACTIONS(7605), - [anon_sym_LT_EQ] = ACTIONS(7603), - [anon_sym_LT] = ACTIONS(7603), - [anon_sym_LT_LT] = ACTIONS(7603), - [anon_sym_GT_GT] = ACTIONS(7603), - [anon_sym___extension__] = ACTIONS(7605), - [anon_sym_LBRACE] = ACTIONS(7605), - [anon_sym_LBRACK] = ACTIONS(7605), - [anon_sym_EQ] = ACTIONS(7603), - [anon_sym_const] = ACTIONS(7603), - [anon_sym_constexpr] = ACTIONS(7605), - [anon_sym_volatile] = ACTIONS(7605), - [anon_sym_restrict] = ACTIONS(7605), - [anon_sym___restrict__] = ACTIONS(7605), - [anon_sym__Atomic] = ACTIONS(7605), - [anon_sym__Noreturn] = ACTIONS(7605), - [anon_sym_noreturn] = ACTIONS(7605), - [anon_sym__Nonnull] = ACTIONS(7605), - [anon_sym_mutable] = ACTIONS(7605), - [anon_sym_constinit] = ACTIONS(7605), - [anon_sym_consteval] = ACTIONS(7605), - [anon_sym_alignas] = ACTIONS(7605), - [anon_sym__Alignas] = ACTIONS(7605), - [anon_sym_QMARK] = ACTIONS(7605), - [anon_sym_STAR_EQ] = ACTIONS(7605), - [anon_sym_SLASH_EQ] = ACTIONS(7605), - [anon_sym_PERCENT_EQ] = ACTIONS(7605), - [anon_sym_PLUS_EQ] = ACTIONS(7605), - [anon_sym_DASH_EQ] = ACTIONS(7605), - [anon_sym_LT_LT_EQ] = ACTIONS(7605), - [anon_sym_GT_GT_EQ] = ACTIONS(7605), - [anon_sym_AMP_EQ] = ACTIONS(7605), - [anon_sym_CARET_EQ] = ACTIONS(7605), - [anon_sym_PIPE_EQ] = ACTIONS(7605), - [anon_sym_LT_EQ_GT] = ACTIONS(7605), - [anon_sym_or] = ACTIONS(7605), - [anon_sym_and] = ACTIONS(7605), - [anon_sym_bitor] = ACTIONS(7605), - [anon_sym_xor] = ACTIONS(7605), - [anon_sym_bitand] = ACTIONS(7605), - [anon_sym_not_eq] = ACTIONS(7605), - [anon_sym_DASH_DASH] = ACTIONS(7605), - [anon_sym_PLUS_PLUS] = ACTIONS(7605), - [anon_sym_DOT] = ACTIONS(7603), - [anon_sym_DOT_STAR] = ACTIONS(7605), - [anon_sym_DASH_GT] = ACTIONS(7603), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7605), - [anon_sym_override] = ACTIONS(7605), - [anon_sym_requires] = ACTIONS(7605), - [anon_sym_DASH_GT_STAR] = ACTIONS(7605), - }, - [STATE(3548)] = { - [sym_argument_list] = STATE(3939), - [sym_initializer_list] = STATE(3939), - [sym_new_declarator] = STATE(3678), - [sym_identifier] = ACTIONS(9248), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9250), - [anon_sym_COMMA] = ACTIONS(9250), - [anon_sym_RPAREN] = ACTIONS(9250), - [aux_sym_preproc_if_token2] = ACTIONS(9250), - [aux_sym_preproc_else_token1] = ACTIONS(9250), - [aux_sym_preproc_elif_token1] = ACTIONS(9248), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9250), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9250), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9248), - [anon_sym_PLUS] = ACTIONS(9248), - [anon_sym_STAR] = ACTIONS(9248), - [anon_sym_SLASH] = ACTIONS(9248), - [anon_sym_PERCENT] = ACTIONS(9248), - [anon_sym_PIPE_PIPE] = ACTIONS(9250), - [anon_sym_AMP_AMP] = ACTIONS(9250), - [anon_sym_PIPE] = ACTIONS(9248), - [anon_sym_CARET] = ACTIONS(9248), - [anon_sym_AMP] = ACTIONS(9248), - [anon_sym_EQ_EQ] = ACTIONS(9250), - [anon_sym_BANG_EQ] = ACTIONS(9250), - [anon_sym_GT] = ACTIONS(9248), - [anon_sym_GT_EQ] = ACTIONS(9250), - [anon_sym_LT_EQ] = ACTIONS(9248), - [anon_sym_LT] = ACTIONS(9248), - [anon_sym_LT_LT] = ACTIONS(9248), - [anon_sym_GT_GT] = ACTIONS(9248), - [anon_sym_SEMI] = ACTIONS(9250), - [anon_sym___attribute__] = ACTIONS(9248), - [anon_sym___attribute] = ACTIONS(9248), - [anon_sym_COLON] = ACTIONS(9248), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9250), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(9250), - [anon_sym_LBRACK] = ACTIONS(9232), - [anon_sym_EQ] = ACTIONS(9248), - [anon_sym_QMARK] = ACTIONS(9250), - [anon_sym_STAR_EQ] = ACTIONS(9250), - [anon_sym_SLASH_EQ] = ACTIONS(9250), - [anon_sym_PERCENT_EQ] = ACTIONS(9250), - [anon_sym_PLUS_EQ] = ACTIONS(9250), - [anon_sym_DASH_EQ] = ACTIONS(9250), - [anon_sym_LT_LT_EQ] = ACTIONS(9250), - [anon_sym_GT_GT_EQ] = ACTIONS(9250), - [anon_sym_AMP_EQ] = ACTIONS(9250), - [anon_sym_CARET_EQ] = ACTIONS(9250), - [anon_sym_PIPE_EQ] = ACTIONS(9250), - [anon_sym_and_eq] = ACTIONS(9248), - [anon_sym_or_eq] = ACTIONS(9248), - [anon_sym_xor_eq] = ACTIONS(9248), - [anon_sym_LT_EQ_GT] = ACTIONS(9250), - [anon_sym_or] = ACTIONS(9248), - [anon_sym_and] = ACTIONS(9248), - [anon_sym_bitor] = ACTIONS(9248), - [anon_sym_xor] = ACTIONS(9248), - [anon_sym_bitand] = ACTIONS(9248), - [anon_sym_not_eq] = ACTIONS(9248), - [anon_sym_DASH_DASH] = ACTIONS(9250), - [anon_sym_PLUS_PLUS] = ACTIONS(9250), - [anon_sym_DOT] = ACTIONS(9248), - [anon_sym_DOT_STAR] = ACTIONS(9250), - [anon_sym_DASH_GT] = ACTIONS(9250), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9250), - }, - [STATE(3549)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7563), - [anon_sym_and] = ACTIONS(7563), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7563), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), - [anon_sym_DASH_GT_STAR] = ACTIONS(7563), - }, - [STATE(3550)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7563), - [anon_sym_COMMA] = ACTIONS(7563), - [anon_sym_RPAREN] = ACTIONS(7563), - [anon_sym_LPAREN2] = ACTIONS(7563), - [anon_sym_DASH] = ACTIONS(7561), - [anon_sym_PLUS] = ACTIONS(7561), - [anon_sym_STAR] = ACTIONS(7561), - [anon_sym_SLASH] = ACTIONS(7561), - [anon_sym_PERCENT] = ACTIONS(7561), - [anon_sym_PIPE_PIPE] = ACTIONS(7563), - [anon_sym_AMP_AMP] = ACTIONS(7563), - [anon_sym_PIPE] = ACTIONS(7561), - [anon_sym_CARET] = ACTIONS(7561), - [anon_sym_AMP] = ACTIONS(7561), - [anon_sym_EQ_EQ] = ACTIONS(7563), - [anon_sym_BANG_EQ] = ACTIONS(7563), - [anon_sym_GT] = ACTIONS(7561), - [anon_sym_GT_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ] = ACTIONS(7561), - [anon_sym_LT] = ACTIONS(7561), - [anon_sym_LT_LT] = ACTIONS(7561), - [anon_sym_GT_GT] = ACTIONS(7561), - [anon_sym___extension__] = ACTIONS(7563), - [anon_sym_LBRACE] = ACTIONS(7563), - [anon_sym_LBRACK] = ACTIONS(7563), - [anon_sym_EQ] = ACTIONS(7561), - [anon_sym_const] = ACTIONS(7561), - [anon_sym_constexpr] = ACTIONS(7563), - [anon_sym_volatile] = ACTIONS(7563), - [anon_sym_restrict] = ACTIONS(7563), - [anon_sym___restrict__] = ACTIONS(7563), - [anon_sym__Atomic] = ACTIONS(7563), - [anon_sym__Noreturn] = ACTIONS(7563), - [anon_sym_noreturn] = ACTIONS(7563), - [anon_sym__Nonnull] = ACTIONS(7563), - [anon_sym_mutable] = ACTIONS(7563), - [anon_sym_constinit] = ACTIONS(7563), - [anon_sym_consteval] = ACTIONS(7563), - [anon_sym_alignas] = ACTIONS(7563), - [anon_sym__Alignas] = ACTIONS(7563), - [anon_sym_QMARK] = ACTIONS(7563), - [anon_sym_STAR_EQ] = ACTIONS(7563), - [anon_sym_SLASH_EQ] = ACTIONS(7563), - [anon_sym_PERCENT_EQ] = ACTIONS(7563), - [anon_sym_PLUS_EQ] = ACTIONS(7563), - [anon_sym_DASH_EQ] = ACTIONS(7563), - [anon_sym_LT_LT_EQ] = ACTIONS(7563), - [anon_sym_GT_GT_EQ] = ACTIONS(7563), - [anon_sym_AMP_EQ] = ACTIONS(7563), - [anon_sym_CARET_EQ] = ACTIONS(7563), - [anon_sym_PIPE_EQ] = ACTIONS(7563), - [anon_sym_LT_EQ_GT] = ACTIONS(7563), - [anon_sym_or] = ACTIONS(7563), - [anon_sym_and] = ACTIONS(7563), - [anon_sym_bitor] = ACTIONS(7563), - [anon_sym_xor] = ACTIONS(7563), - [anon_sym_bitand] = ACTIONS(7563), - [anon_sym_not_eq] = ACTIONS(7563), - [anon_sym_DASH_DASH] = ACTIONS(7563), - [anon_sym_PLUS_PLUS] = ACTIONS(7563), - [anon_sym_DOT] = ACTIONS(7561), - [anon_sym_DOT_STAR] = ACTIONS(7563), - [anon_sym_DASH_GT] = ACTIONS(7561), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7563), - [anon_sym_override] = ACTIONS(7563), - [anon_sym_requires] = ACTIONS(7563), - [anon_sym_DASH_GT_STAR] = ACTIONS(7563), - }, - [STATE(3551)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7709), - [anon_sym_COMMA] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(7709), - [anon_sym_LPAREN2] = ACTIONS(7709), - [anon_sym_DASH] = ACTIONS(7707), - [anon_sym_PLUS] = ACTIONS(7707), - [anon_sym_STAR] = ACTIONS(7709), - [anon_sym_SLASH] = ACTIONS(7707), - [anon_sym_PERCENT] = ACTIONS(7709), - [anon_sym_PIPE_PIPE] = ACTIONS(7709), - [anon_sym_AMP_AMP] = ACTIONS(7709), - [anon_sym_PIPE] = ACTIONS(7707), - [anon_sym_CARET] = ACTIONS(7709), - [anon_sym_AMP] = ACTIONS(7707), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_BANG_EQ] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7707), - [anon_sym_GT_EQ] = ACTIONS(7709), - [anon_sym_LT_EQ] = ACTIONS(7707), - [anon_sym_LT] = ACTIONS(7707), - [anon_sym_LT_LT] = ACTIONS(7709), - [anon_sym_GT_GT] = ACTIONS(7709), - [anon_sym_SEMI] = ACTIONS(7709), - [anon_sym___extension__] = ACTIONS(7709), - [anon_sym___attribute__] = ACTIONS(7709), - [anon_sym___attribute] = ACTIONS(7707), - [anon_sym_COLON] = ACTIONS(7707), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7709), - [anon_sym_LBRACE] = ACTIONS(7709), - [anon_sym_RBRACE] = ACTIONS(7709), - [anon_sym_signed] = ACTIONS(9252), - [anon_sym_unsigned] = ACTIONS(9252), - [anon_sym_long] = ACTIONS(9252), - [anon_sym_short] = ACTIONS(9252), - [anon_sym_LBRACK] = ACTIONS(7709), - [anon_sym_const] = ACTIONS(7707), - [anon_sym_constexpr] = ACTIONS(7709), - [anon_sym_volatile] = ACTIONS(7709), - [anon_sym_restrict] = ACTIONS(7709), - [anon_sym___restrict__] = ACTIONS(7709), - [anon_sym__Atomic] = ACTIONS(7709), - [anon_sym__Noreturn] = ACTIONS(7709), - [anon_sym_noreturn] = ACTIONS(7709), - [anon_sym__Nonnull] = ACTIONS(7709), - [anon_sym_mutable] = ACTIONS(7709), - [anon_sym_constinit] = ACTIONS(7709), - [anon_sym_consteval] = ACTIONS(7709), - [anon_sym_alignas] = ACTIONS(7709), - [anon_sym__Alignas] = ACTIONS(7709), - [anon_sym_QMARK] = ACTIONS(7709), - [anon_sym_LT_EQ_GT] = ACTIONS(7709), - [anon_sym_or] = ACTIONS(7709), - [anon_sym_and] = ACTIONS(7709), - [anon_sym_bitor] = ACTIONS(7709), - [anon_sym_xor] = ACTIONS(7709), - [anon_sym_bitand] = ACTIONS(7709), - [anon_sym_not_eq] = ACTIONS(7709), - [anon_sym_DASH_DASH] = ACTIONS(7709), - [anon_sym_PLUS_PLUS] = ACTIONS(7709), - [anon_sym_DOT] = ACTIONS(7707), - [anon_sym_DOT_STAR] = ACTIONS(7709), - [anon_sym_DASH_GT] = ACTIONS(7709), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7709), - [anon_sym_override] = ACTIONS(7709), - [anon_sym_requires] = ACTIONS(7709), - [anon_sym_COLON_RBRACK] = ACTIONS(7709), - }, - [STATE(3552)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7683), - [anon_sym_COMMA] = ACTIONS(7683), - [anon_sym_RPAREN] = ACTIONS(7683), - [anon_sym_LPAREN2] = ACTIONS(7683), - [anon_sym_DASH] = ACTIONS(7681), - [anon_sym_PLUS] = ACTIONS(7681), - [anon_sym_STAR] = ACTIONS(7683), - [anon_sym_SLASH] = ACTIONS(7681), - [anon_sym_PERCENT] = ACTIONS(7683), - [anon_sym_PIPE_PIPE] = ACTIONS(7683), - [anon_sym_AMP_AMP] = ACTIONS(7683), - [anon_sym_PIPE] = ACTIONS(7681), - [anon_sym_CARET] = ACTIONS(7683), - [anon_sym_AMP] = ACTIONS(7681), - [anon_sym_EQ_EQ] = ACTIONS(7683), - [anon_sym_BANG_EQ] = ACTIONS(7683), - [anon_sym_GT] = ACTIONS(7681), - [anon_sym_GT_EQ] = ACTIONS(7683), - [anon_sym_LT_EQ] = ACTIONS(7681), - [anon_sym_LT] = ACTIONS(7681), - [anon_sym_LT_LT] = ACTIONS(7683), - [anon_sym_GT_GT] = ACTIONS(7683), - [anon_sym_SEMI] = ACTIONS(7683), - [anon_sym___extension__] = ACTIONS(7683), - [anon_sym___attribute__] = ACTIONS(7683), - [anon_sym___attribute] = ACTIONS(7681), - [anon_sym_COLON] = ACTIONS(7681), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7683), - [anon_sym_LBRACE] = ACTIONS(7683), - [anon_sym_RBRACE] = ACTIONS(7683), - [anon_sym_signed] = ACTIONS(9234), - [anon_sym_unsigned] = ACTIONS(9234), - [anon_sym_long] = ACTIONS(9234), - [anon_sym_short] = ACTIONS(9234), - [anon_sym_LBRACK] = ACTIONS(7683), - [anon_sym_const] = ACTIONS(7681), - [anon_sym_constexpr] = ACTIONS(7683), - [anon_sym_volatile] = ACTIONS(7683), - [anon_sym_restrict] = ACTIONS(7683), - [anon_sym___restrict__] = ACTIONS(7683), - [anon_sym__Atomic] = ACTIONS(7683), - [anon_sym__Noreturn] = ACTIONS(7683), - [anon_sym_noreturn] = ACTIONS(7683), - [anon_sym__Nonnull] = ACTIONS(7683), - [anon_sym_mutable] = ACTIONS(7683), - [anon_sym_constinit] = ACTIONS(7683), - [anon_sym_consteval] = ACTIONS(7683), - [anon_sym_alignas] = ACTIONS(7683), - [anon_sym__Alignas] = ACTIONS(7683), - [anon_sym_QMARK] = ACTIONS(7683), - [anon_sym_LT_EQ_GT] = ACTIONS(7683), - [anon_sym_or] = ACTIONS(7683), - [anon_sym_and] = ACTIONS(7683), - [anon_sym_bitor] = ACTIONS(7683), - [anon_sym_xor] = ACTIONS(7683), - [anon_sym_bitand] = ACTIONS(7683), - [anon_sym_not_eq] = ACTIONS(7683), - [anon_sym_DASH_DASH] = ACTIONS(7683), - [anon_sym_PLUS_PLUS] = ACTIONS(7683), - [anon_sym_DOT] = ACTIONS(7681), - [anon_sym_DOT_STAR] = ACTIONS(7683), - [anon_sym_DASH_GT] = ACTIONS(7683), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7683), - [anon_sym_override] = ACTIONS(7683), - [anon_sym_requires] = ACTIONS(7683), - [anon_sym_COLON_RBRACK] = ACTIONS(7683), - }, - [STATE(3553)] = { - [sym_identifier] = ACTIONS(5593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5595), - [anon_sym_COMMA] = ACTIONS(5595), - [anon_sym_RPAREN] = ACTIONS(5595), - [aux_sym_preproc_if_token2] = ACTIONS(5595), - [aux_sym_preproc_else_token1] = ACTIONS(5595), - [aux_sym_preproc_elif_token1] = ACTIONS(5593), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5595), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5595), - [anon_sym_LPAREN2] = ACTIONS(5595), - [anon_sym_DASH] = ACTIONS(5593), - [anon_sym_PLUS] = ACTIONS(5593), - [anon_sym_STAR] = ACTIONS(5593), - [anon_sym_SLASH] = ACTIONS(5593), - [anon_sym_PERCENT] = ACTIONS(5593), - [anon_sym_PIPE_PIPE] = ACTIONS(5595), - [anon_sym_AMP_AMP] = ACTIONS(5595), - [anon_sym_PIPE] = ACTIONS(5593), - [anon_sym_CARET] = ACTIONS(5593), - [anon_sym_AMP] = ACTIONS(5593), - [anon_sym_EQ_EQ] = ACTIONS(5595), - [anon_sym_BANG_EQ] = ACTIONS(5595), - [anon_sym_GT] = ACTIONS(5593), - [anon_sym_GT_EQ] = ACTIONS(5595), - [anon_sym_LT_EQ] = ACTIONS(5593), - [anon_sym_LT] = ACTIONS(5593), - [anon_sym_LT_LT] = ACTIONS(5593), - [anon_sym_GT_GT] = ACTIONS(5593), - [anon_sym_SEMI] = ACTIONS(5595), - [anon_sym___attribute__] = ACTIONS(5593), - [anon_sym___attribute] = ACTIONS(5593), - [anon_sym_COLON] = ACTIONS(5593), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5595), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5595), - [anon_sym_RBRACE] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5593), - [anon_sym_EQ] = ACTIONS(5593), - [anon_sym_QMARK] = ACTIONS(5595), - [anon_sym_STAR_EQ] = ACTIONS(5595), - [anon_sym_SLASH_EQ] = ACTIONS(5595), - [anon_sym_PERCENT_EQ] = ACTIONS(5595), - [anon_sym_PLUS_EQ] = ACTIONS(5595), - [anon_sym_DASH_EQ] = ACTIONS(5595), - [anon_sym_LT_LT_EQ] = ACTIONS(5595), - [anon_sym_GT_GT_EQ] = ACTIONS(5595), - [anon_sym_AMP_EQ] = ACTIONS(5595), - [anon_sym_CARET_EQ] = ACTIONS(5595), - [anon_sym_PIPE_EQ] = ACTIONS(5595), - [anon_sym_and_eq] = ACTIONS(5593), - [anon_sym_or_eq] = ACTIONS(5593), - [anon_sym_xor_eq] = ACTIONS(5593), - [anon_sym_LT_EQ_GT] = ACTIONS(5595), - [anon_sym_or] = ACTIONS(5593), - [anon_sym_and] = ACTIONS(5593), - [anon_sym_bitor] = ACTIONS(5593), - [anon_sym_xor] = ACTIONS(5593), - [anon_sym_bitand] = ACTIONS(5593), - [anon_sym_not_eq] = ACTIONS(5593), - [anon_sym_DASH_DASH] = ACTIONS(5595), - [anon_sym_PLUS_PLUS] = ACTIONS(5595), - [anon_sym_DOT] = ACTIONS(5593), - [anon_sym_DOT_STAR] = ACTIONS(5595), - [anon_sym_DASH_GT] = ACTIONS(5595), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5593), - [anon_sym_override] = ACTIONS(5593), - [anon_sym_requires] = ACTIONS(5593), - [anon_sym_COLON_RBRACK] = ACTIONS(5595), - }, - [STATE(3554)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7653), - [anon_sym_COMMA] = ACTIONS(7653), - [anon_sym_RPAREN] = ACTIONS(7653), - [anon_sym_LPAREN2] = ACTIONS(7653), - [anon_sym_DASH] = ACTIONS(7651), - [anon_sym_PLUS] = ACTIONS(7651), - [anon_sym_STAR] = ACTIONS(7651), - [anon_sym_SLASH] = ACTIONS(7651), - [anon_sym_PERCENT] = ACTIONS(7651), - [anon_sym_PIPE_PIPE] = ACTIONS(7653), - [anon_sym_AMP_AMP] = ACTIONS(7653), - [anon_sym_PIPE] = ACTIONS(7651), - [anon_sym_CARET] = ACTIONS(7651), - [anon_sym_AMP] = ACTIONS(7651), - [anon_sym_EQ_EQ] = ACTIONS(7653), - [anon_sym_BANG_EQ] = ACTIONS(7653), - [anon_sym_GT] = ACTIONS(7651), - [anon_sym_GT_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ] = ACTIONS(7651), - [anon_sym_LT] = ACTIONS(7651), - [anon_sym_LT_LT] = ACTIONS(7651), - [anon_sym_GT_GT] = ACTIONS(7651), - [anon_sym___extension__] = ACTIONS(7653), - [anon_sym_LBRACE] = ACTIONS(7653), - [anon_sym_LBRACK] = ACTIONS(7653), - [anon_sym_EQ] = ACTIONS(7651), - [anon_sym_const] = ACTIONS(7651), - [anon_sym_constexpr] = ACTIONS(7653), - [anon_sym_volatile] = ACTIONS(7653), - [anon_sym_restrict] = ACTIONS(7653), - [anon_sym___restrict__] = ACTIONS(7653), - [anon_sym__Atomic] = ACTIONS(7653), - [anon_sym__Noreturn] = ACTIONS(7653), - [anon_sym_noreturn] = ACTIONS(7653), - [anon_sym__Nonnull] = ACTIONS(7653), - [anon_sym_mutable] = ACTIONS(7653), - [anon_sym_constinit] = ACTIONS(7653), - [anon_sym_consteval] = ACTIONS(7653), - [anon_sym_alignas] = ACTIONS(7653), - [anon_sym__Alignas] = ACTIONS(7653), - [anon_sym_QMARK] = ACTIONS(7653), - [anon_sym_STAR_EQ] = ACTIONS(7653), - [anon_sym_SLASH_EQ] = ACTIONS(7653), - [anon_sym_PERCENT_EQ] = ACTIONS(7653), - [anon_sym_PLUS_EQ] = ACTIONS(7653), - [anon_sym_DASH_EQ] = ACTIONS(7653), - [anon_sym_LT_LT_EQ] = ACTIONS(7653), - [anon_sym_GT_GT_EQ] = ACTIONS(7653), - [anon_sym_AMP_EQ] = ACTIONS(7653), - [anon_sym_CARET_EQ] = ACTIONS(7653), - [anon_sym_PIPE_EQ] = ACTIONS(7653), - [anon_sym_LT_EQ_GT] = ACTIONS(7653), - [anon_sym_or] = ACTIONS(7653), - [anon_sym_and] = ACTIONS(7653), - [anon_sym_bitor] = ACTIONS(7653), - [anon_sym_xor] = ACTIONS(7653), - [anon_sym_bitand] = ACTIONS(7653), - [anon_sym_not_eq] = ACTIONS(7653), - [anon_sym_DASH_DASH] = ACTIONS(7653), - [anon_sym_PLUS_PLUS] = ACTIONS(7653), - [anon_sym_DOT] = ACTIONS(7651), - [anon_sym_DOT_STAR] = ACTIONS(7653), - [anon_sym_DASH_GT] = ACTIONS(7651), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7653), - [anon_sym_override] = ACTIONS(7653), - [anon_sym_requires] = ACTIONS(7653), - [anon_sym_DASH_GT_STAR] = ACTIONS(7653), + [anon_sym_COLON_RBRACK] = ACTIONS(7741), }, - [STATE(3555)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7661), - [anon_sym_COMMA] = ACTIONS(7661), - [anon_sym_RPAREN] = ACTIONS(7661), - [anon_sym_LPAREN2] = ACTIONS(7661), - [anon_sym_DASH] = ACTIONS(7659), - [anon_sym_PLUS] = ACTIONS(7659), - [anon_sym_STAR] = ACTIONS(7659), - [anon_sym_SLASH] = ACTIONS(7659), - [anon_sym_PERCENT] = ACTIONS(7659), - [anon_sym_PIPE_PIPE] = ACTIONS(7661), - [anon_sym_AMP_AMP] = ACTIONS(7661), - [anon_sym_PIPE] = ACTIONS(7659), - [anon_sym_CARET] = ACTIONS(7659), - [anon_sym_AMP] = ACTIONS(7659), - [anon_sym_EQ_EQ] = ACTIONS(7661), - [anon_sym_BANG_EQ] = ACTIONS(7661), - [anon_sym_GT] = ACTIONS(7659), - [anon_sym_GT_EQ] = ACTIONS(7661), - [anon_sym_LT_EQ] = ACTIONS(7659), - [anon_sym_LT] = ACTIONS(7659), - [anon_sym_LT_LT] = ACTIONS(7659), - [anon_sym_GT_GT] = ACTIONS(7659), - [anon_sym___extension__] = ACTIONS(7661), - [anon_sym_LBRACE] = ACTIONS(7661), - [anon_sym_LBRACK] = ACTIONS(7661), - [anon_sym_EQ] = ACTIONS(7659), - [anon_sym_const] = ACTIONS(7659), - [anon_sym_constexpr] = ACTIONS(7661), - [anon_sym_volatile] = ACTIONS(7661), - [anon_sym_restrict] = ACTIONS(7661), - [anon_sym___restrict__] = ACTIONS(7661), - [anon_sym__Atomic] = ACTIONS(7661), - [anon_sym__Noreturn] = ACTIONS(7661), - [anon_sym_noreturn] = ACTIONS(7661), - [anon_sym__Nonnull] = ACTIONS(7661), - [anon_sym_mutable] = ACTIONS(7661), - [anon_sym_constinit] = ACTIONS(7661), - [anon_sym_consteval] = ACTIONS(7661), - [anon_sym_alignas] = ACTIONS(7661), - [anon_sym__Alignas] = ACTIONS(7661), - [anon_sym_QMARK] = ACTIONS(7661), - [anon_sym_STAR_EQ] = ACTIONS(7661), - [anon_sym_SLASH_EQ] = ACTIONS(7661), - [anon_sym_PERCENT_EQ] = ACTIONS(7661), - [anon_sym_PLUS_EQ] = ACTIONS(7661), - [anon_sym_DASH_EQ] = ACTIONS(7661), - [anon_sym_LT_LT_EQ] = ACTIONS(7661), - [anon_sym_GT_GT_EQ] = ACTIONS(7661), - [anon_sym_AMP_EQ] = ACTIONS(7661), - [anon_sym_CARET_EQ] = ACTIONS(7661), - [anon_sym_PIPE_EQ] = ACTIONS(7661), - [anon_sym_LT_EQ_GT] = ACTIONS(7661), - [anon_sym_or] = ACTIONS(7661), - [anon_sym_and] = ACTIONS(7661), - [anon_sym_bitor] = ACTIONS(7661), - [anon_sym_xor] = ACTIONS(7661), - [anon_sym_bitand] = ACTIONS(7661), - [anon_sym_not_eq] = ACTIONS(7661), - [anon_sym_DASH_DASH] = ACTIONS(7661), - [anon_sym_PLUS_PLUS] = ACTIONS(7661), - [anon_sym_DOT] = ACTIONS(7659), - [anon_sym_DOT_STAR] = ACTIONS(7661), - [anon_sym_DASH_GT] = ACTIONS(7659), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7661), - [anon_sym_override] = ACTIONS(7661), - [anon_sym_requires] = ACTIONS(7661), - [anon_sym_DASH_GT_STAR] = ACTIONS(7661), + [STATE(3520)] = { + [sym_template_argument_list] = STATE(2919), + [sym_identifier] = ACTIONS(6559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6566), + [anon_sym_COMMA] = ACTIONS(6566), + [aux_sym_preproc_if_token2] = ACTIONS(6566), + [aux_sym_preproc_else_token1] = ACTIONS(6566), + [aux_sym_preproc_elif_token1] = ACTIONS(6559), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6566), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6566), + [anon_sym_LPAREN2] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6559), + [anon_sym_STAR] = ACTIONS(6566), + [anon_sym_SLASH] = ACTIONS(6559), + [anon_sym_PERCENT] = ACTIONS(6566), + [anon_sym_PIPE_PIPE] = ACTIONS(6566), + [anon_sym_AMP_AMP] = ACTIONS(6566), + [anon_sym_PIPE] = ACTIONS(6559), + [anon_sym_CARET] = ACTIONS(6566), + [anon_sym_AMP] = ACTIONS(6559), + [anon_sym_EQ_EQ] = ACTIONS(6566), + [anon_sym_BANG_EQ] = ACTIONS(6566), + [anon_sym_GT] = ACTIONS(6559), + [anon_sym_GT_EQ] = ACTIONS(6566), + [anon_sym_LT_EQ] = ACTIONS(6559), + [anon_sym_LT] = ACTIONS(9206), + [anon_sym_LT_LT] = ACTIONS(6566), + [anon_sym_GT_GT] = ACTIONS(6566), + [anon_sym___extension__] = ACTIONS(6559), + [anon_sym___attribute__] = ACTIONS(6559), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6566), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6559), + [anon_sym_volatile] = ACTIONS(6559), + [anon_sym_restrict] = ACTIONS(6559), + [anon_sym___restrict__] = ACTIONS(6559), + [anon_sym__Atomic] = ACTIONS(6559), + [anon_sym__Noreturn] = ACTIONS(6559), + [anon_sym_noreturn] = ACTIONS(6559), + [anon_sym__Nonnull] = ACTIONS(6559), + [anon_sym_mutable] = ACTIONS(6559), + [anon_sym_constinit] = ACTIONS(6559), + [anon_sym_consteval] = ACTIONS(6559), + [anon_sym_alignas] = ACTIONS(6559), + [anon_sym__Alignas] = ACTIONS(6559), + [anon_sym_QMARK] = ACTIONS(6566), + [anon_sym_LT_EQ_GT] = ACTIONS(6566), + [anon_sym_or] = ACTIONS(6559), + [anon_sym_and] = ACTIONS(6559), + [anon_sym_bitor] = ACTIONS(6559), + [anon_sym_xor] = ACTIONS(6559), + [anon_sym_bitand] = ACTIONS(6559), + [anon_sym_not_eq] = ACTIONS(6559), + [anon_sym_DASH_DASH] = ACTIONS(6566), + [anon_sym_PLUS_PLUS] = ACTIONS(6566), + [anon_sym_DOT] = ACTIONS(6559), + [anon_sym_DOT_STAR] = ACTIONS(6566), + [anon_sym_DASH_GT] = ACTIONS(6566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6559), + [anon_sym_decltype] = ACTIONS(6559), + [anon_sym_final] = ACTIONS(6559), + [anon_sym_override] = ACTIONS(6559), + [anon_sym_requires] = ACTIONS(6559), }, - [STATE(3556)] = { + [STATE(3521)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7777), [anon_sym_COMMA] = ACTIONS(7777), [anon_sym_RPAREN] = ACTIONS(7777), @@ -433518,1841 +430906,2820 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7777), [anon_sym_DASH_GT_STAR] = ACTIONS(7777), }, - [STATE(3557)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7571), - [anon_sym_COMMA] = ACTIONS(7571), - [anon_sym_RPAREN] = ACTIONS(7571), - [anon_sym_LPAREN2] = ACTIONS(7571), - [anon_sym_DASH] = ACTIONS(7569), - [anon_sym_PLUS] = ACTIONS(7569), - [anon_sym_STAR] = ACTIONS(7569), - [anon_sym_SLASH] = ACTIONS(7569), - [anon_sym_PERCENT] = ACTIONS(7569), - [anon_sym_PIPE_PIPE] = ACTIONS(7571), - [anon_sym_AMP_AMP] = ACTIONS(7571), - [anon_sym_PIPE] = ACTIONS(7569), - [anon_sym_CARET] = ACTIONS(7569), - [anon_sym_AMP] = ACTIONS(7569), - [anon_sym_EQ_EQ] = ACTIONS(7571), - [anon_sym_BANG_EQ] = ACTIONS(7571), - [anon_sym_GT] = ACTIONS(7569), - [anon_sym_GT_EQ] = ACTIONS(7571), - [anon_sym_LT_EQ] = ACTIONS(7569), - [anon_sym_LT] = ACTIONS(7569), - [anon_sym_LT_LT] = ACTIONS(7569), - [anon_sym_GT_GT] = ACTIONS(7569), - [anon_sym___extension__] = ACTIONS(7571), - [anon_sym_LBRACE] = ACTIONS(7571), - [anon_sym_LBRACK] = ACTIONS(7571), - [anon_sym_EQ] = ACTIONS(7569), - [anon_sym_const] = ACTIONS(7569), - [anon_sym_constexpr] = ACTIONS(7571), - [anon_sym_volatile] = ACTIONS(7571), - [anon_sym_restrict] = ACTIONS(7571), - [anon_sym___restrict__] = ACTIONS(7571), - [anon_sym__Atomic] = ACTIONS(7571), - [anon_sym__Noreturn] = ACTIONS(7571), - [anon_sym_noreturn] = ACTIONS(7571), - [anon_sym__Nonnull] = ACTIONS(7571), - [anon_sym_mutable] = ACTIONS(7571), - [anon_sym_constinit] = ACTIONS(7571), - [anon_sym_consteval] = ACTIONS(7571), - [anon_sym_alignas] = ACTIONS(7571), - [anon_sym__Alignas] = ACTIONS(7571), - [anon_sym_QMARK] = ACTIONS(7571), - [anon_sym_STAR_EQ] = ACTIONS(7571), - [anon_sym_SLASH_EQ] = ACTIONS(7571), - [anon_sym_PERCENT_EQ] = ACTIONS(7571), - [anon_sym_PLUS_EQ] = ACTIONS(7571), - [anon_sym_DASH_EQ] = ACTIONS(7571), - [anon_sym_LT_LT_EQ] = ACTIONS(7571), - [anon_sym_GT_GT_EQ] = ACTIONS(7571), - [anon_sym_AMP_EQ] = ACTIONS(7571), - [anon_sym_CARET_EQ] = ACTIONS(7571), - [anon_sym_PIPE_EQ] = ACTIONS(7571), - [anon_sym_LT_EQ_GT] = ACTIONS(7571), - [anon_sym_or] = ACTIONS(7571), - [anon_sym_and] = ACTIONS(7571), - [anon_sym_bitor] = ACTIONS(7571), - [anon_sym_xor] = ACTIONS(7571), - [anon_sym_bitand] = ACTIONS(7571), - [anon_sym_not_eq] = ACTIONS(7571), - [anon_sym_DASH_DASH] = ACTIONS(7571), - [anon_sym_PLUS_PLUS] = ACTIONS(7571), - [anon_sym_DOT] = ACTIONS(7569), - [anon_sym_DOT_STAR] = ACTIONS(7571), - [anon_sym_DASH_GT] = ACTIONS(7569), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7571), - [anon_sym_override] = ACTIONS(7571), - [anon_sym_requires] = ACTIONS(7571), - [anon_sym_DASH_GT_STAR] = ACTIONS(7571), + [STATE(3522)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), + [anon_sym_COMMA] = ACTIONS(7781), + [anon_sym_RPAREN] = ACTIONS(7781), + [anon_sym_LPAREN2] = ACTIONS(7781), + [anon_sym_DASH] = ACTIONS(7779), + [anon_sym_PLUS] = ACTIONS(7779), + [anon_sym_STAR] = ACTIONS(7779), + [anon_sym_SLASH] = ACTIONS(7779), + [anon_sym_PERCENT] = ACTIONS(7779), + [anon_sym_PIPE_PIPE] = ACTIONS(7781), + [anon_sym_AMP_AMP] = ACTIONS(7781), + [anon_sym_PIPE] = ACTIONS(7779), + [anon_sym_CARET] = ACTIONS(7779), + [anon_sym_AMP] = ACTIONS(7779), + [anon_sym_EQ_EQ] = ACTIONS(7781), + [anon_sym_BANG_EQ] = ACTIONS(7781), + [anon_sym_GT] = ACTIONS(7779), + [anon_sym_GT_EQ] = ACTIONS(7781), + [anon_sym_LT_EQ] = ACTIONS(7779), + [anon_sym_LT] = ACTIONS(7779), + [anon_sym_LT_LT] = ACTIONS(7779), + [anon_sym_GT_GT] = ACTIONS(7779), + [anon_sym___extension__] = ACTIONS(7781), + [anon_sym_LBRACE] = ACTIONS(7781), + [anon_sym_LBRACK] = ACTIONS(7781), + [anon_sym_EQ] = ACTIONS(7779), + [anon_sym_const] = ACTIONS(7779), + [anon_sym_constexpr] = ACTIONS(7781), + [anon_sym_volatile] = ACTIONS(7781), + [anon_sym_restrict] = ACTIONS(7781), + [anon_sym___restrict__] = ACTIONS(7781), + [anon_sym__Atomic] = ACTIONS(7781), + [anon_sym__Noreturn] = ACTIONS(7781), + [anon_sym_noreturn] = ACTIONS(7781), + [anon_sym__Nonnull] = ACTIONS(7781), + [anon_sym_mutable] = ACTIONS(7781), + [anon_sym_constinit] = ACTIONS(7781), + [anon_sym_consteval] = ACTIONS(7781), + [anon_sym_alignas] = ACTIONS(7781), + [anon_sym__Alignas] = ACTIONS(7781), + [anon_sym_QMARK] = ACTIONS(7781), + [anon_sym_STAR_EQ] = ACTIONS(7781), + [anon_sym_SLASH_EQ] = ACTIONS(7781), + [anon_sym_PERCENT_EQ] = ACTIONS(7781), + [anon_sym_PLUS_EQ] = ACTIONS(7781), + [anon_sym_DASH_EQ] = ACTIONS(7781), + [anon_sym_LT_LT_EQ] = ACTIONS(7781), + [anon_sym_GT_GT_EQ] = ACTIONS(7781), + [anon_sym_AMP_EQ] = ACTIONS(7781), + [anon_sym_CARET_EQ] = ACTIONS(7781), + [anon_sym_PIPE_EQ] = ACTIONS(7781), + [anon_sym_LT_EQ_GT] = ACTIONS(7781), + [anon_sym_or] = ACTIONS(7781), + [anon_sym_and] = ACTIONS(7781), + [anon_sym_bitor] = ACTIONS(7781), + [anon_sym_xor] = ACTIONS(7781), + [anon_sym_bitand] = ACTIONS(7781), + [anon_sym_not_eq] = ACTIONS(7781), + [anon_sym_DASH_DASH] = ACTIONS(7781), + [anon_sym_PLUS_PLUS] = ACTIONS(7781), + [anon_sym_DOT] = ACTIONS(7779), + [anon_sym_DOT_STAR] = ACTIONS(7781), + [anon_sym_DASH_GT] = ACTIONS(7779), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7781), + [anon_sym_override] = ACTIONS(7781), + [anon_sym_requires] = ACTIONS(7781), + [anon_sym_DASH_GT_STAR] = ACTIONS(7781), }, - [STATE(3558)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_RPAREN] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7595), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7595), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7595), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7595), - [anon_sym_GT_GT] = ACTIONS(7595), - [anon_sym___extension__] = ACTIONS(7597), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_EQ] = ACTIONS(7595), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7597), - [anon_sym_volatile] = ACTIONS(7597), - [anon_sym_restrict] = ACTIONS(7597), - [anon_sym___restrict__] = ACTIONS(7597), - [anon_sym__Atomic] = ACTIONS(7597), - [anon_sym__Noreturn] = ACTIONS(7597), - [anon_sym_noreturn] = ACTIONS(7597), - [anon_sym__Nonnull] = ACTIONS(7597), - [anon_sym_mutable] = ACTIONS(7597), - [anon_sym_constinit] = ACTIONS(7597), - [anon_sym_consteval] = ACTIONS(7597), - [anon_sym_alignas] = ACTIONS(7597), - [anon_sym__Alignas] = ACTIONS(7597), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_STAR_EQ] = ACTIONS(7597), - [anon_sym_SLASH_EQ] = ACTIONS(7597), - [anon_sym_PERCENT_EQ] = ACTIONS(7597), - [anon_sym_PLUS_EQ] = ACTIONS(7597), - [anon_sym_DASH_EQ] = ACTIONS(7597), - [anon_sym_LT_LT_EQ] = ACTIONS(7597), - [anon_sym_GT_GT_EQ] = ACTIONS(7597), - [anon_sym_AMP_EQ] = ACTIONS(7597), - [anon_sym_CARET_EQ] = ACTIONS(7597), - [anon_sym_PIPE_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7597), - [anon_sym_and] = ACTIONS(7597), - [anon_sym_bitor] = ACTIONS(7597), - [anon_sym_xor] = ACTIONS(7597), - [anon_sym_bitand] = ACTIONS(7597), - [anon_sym_not_eq] = ACTIONS(7597), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7595), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7597), - [anon_sym_override] = ACTIONS(7597), - [anon_sym_requires] = ACTIONS(7597), - [anon_sym_DASH_GT_STAR] = ACTIONS(7597), + [STATE(3523)] = { + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym_ref_qualifier] = STATE(3665), + [sym__function_exception_specification] = STATE(4103), + [sym__function_attributes_end] = STATE(5951), + [sym__function_postfix] = STATE(5370), + [sym_trailing_return_type] = STATE(6057), + [sym_noexcept] = STATE(4103), + [sym_throw_specifier] = STATE(4103), + [sym_requires_clause] = STATE(5370), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7874), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7874), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(9163), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7874), + [anon_sym_AMP] = ACTIONS(9166), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7874), + [anon_sym_GT_GT] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7168), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(9169), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7177), + [anon_sym_override] = ACTIONS(7177), + [anon_sym_noexcept] = ACTIONS(7179), + [anon_sym_throw] = ACTIONS(7181), + [anon_sym_requires] = ACTIONS(7183), }, - [STATE(3559)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7609), - [anon_sym_COMMA] = ACTIONS(7609), - [anon_sym_RPAREN] = ACTIONS(7609), - [anon_sym_LPAREN2] = ACTIONS(7609), - [anon_sym_DASH] = ACTIONS(7607), - [anon_sym_PLUS] = ACTIONS(7607), - [anon_sym_STAR] = ACTIONS(7607), - [anon_sym_SLASH] = ACTIONS(7607), - [anon_sym_PERCENT] = ACTIONS(7607), - [anon_sym_PIPE_PIPE] = ACTIONS(7609), - [anon_sym_AMP_AMP] = ACTIONS(7609), - [anon_sym_PIPE] = ACTIONS(7607), - [anon_sym_CARET] = ACTIONS(7607), - [anon_sym_AMP] = ACTIONS(7607), - [anon_sym_EQ_EQ] = ACTIONS(7609), - [anon_sym_BANG_EQ] = ACTIONS(7609), - [anon_sym_GT] = ACTIONS(7607), - [anon_sym_GT_EQ] = ACTIONS(7609), - [anon_sym_LT_EQ] = ACTIONS(7607), - [anon_sym_LT] = ACTIONS(7607), - [anon_sym_LT_LT] = ACTIONS(7607), - [anon_sym_GT_GT] = ACTIONS(7607), - [anon_sym___extension__] = ACTIONS(7609), - [anon_sym_LBRACE] = ACTIONS(7609), - [anon_sym_LBRACK] = ACTIONS(7609), - [anon_sym_EQ] = ACTIONS(7607), - [anon_sym_const] = ACTIONS(7607), - [anon_sym_constexpr] = ACTIONS(7609), - [anon_sym_volatile] = ACTIONS(7609), - [anon_sym_restrict] = ACTIONS(7609), - [anon_sym___restrict__] = ACTIONS(7609), - [anon_sym__Atomic] = ACTIONS(7609), - [anon_sym__Noreturn] = ACTIONS(7609), - [anon_sym_noreturn] = ACTIONS(7609), - [anon_sym__Nonnull] = ACTIONS(7609), - [anon_sym_mutable] = ACTIONS(7609), - [anon_sym_constinit] = ACTIONS(7609), - [anon_sym_consteval] = ACTIONS(7609), - [anon_sym_alignas] = ACTIONS(7609), - [anon_sym__Alignas] = ACTIONS(7609), - [anon_sym_QMARK] = ACTIONS(7609), - [anon_sym_STAR_EQ] = ACTIONS(7609), - [anon_sym_SLASH_EQ] = ACTIONS(7609), - [anon_sym_PERCENT_EQ] = ACTIONS(7609), - [anon_sym_PLUS_EQ] = ACTIONS(7609), - [anon_sym_DASH_EQ] = ACTIONS(7609), - [anon_sym_LT_LT_EQ] = ACTIONS(7609), - [anon_sym_GT_GT_EQ] = ACTIONS(7609), - [anon_sym_AMP_EQ] = ACTIONS(7609), - [anon_sym_CARET_EQ] = ACTIONS(7609), - [anon_sym_PIPE_EQ] = ACTIONS(7609), - [anon_sym_LT_EQ_GT] = ACTIONS(7609), - [anon_sym_or] = ACTIONS(7609), - [anon_sym_and] = ACTIONS(7609), - [anon_sym_bitor] = ACTIONS(7609), - [anon_sym_xor] = ACTIONS(7609), - [anon_sym_bitand] = ACTIONS(7609), - [anon_sym_not_eq] = ACTIONS(7609), - [anon_sym_DASH_DASH] = ACTIONS(7609), - [anon_sym_PLUS_PLUS] = ACTIONS(7609), - [anon_sym_DOT] = ACTIONS(7607), - [anon_sym_DOT_STAR] = ACTIONS(7609), - [anon_sym_DASH_GT] = ACTIONS(7607), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7609), - [anon_sym_override] = ACTIONS(7609), - [anon_sym_requires] = ACTIONS(7609), - [anon_sym_DASH_GT_STAR] = ACTIONS(7609), + [STATE(3524)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7757), + [anon_sym_COMMA] = ACTIONS(7757), + [anon_sym_RPAREN] = ACTIONS(7757), + [anon_sym_LPAREN2] = ACTIONS(7757), + [anon_sym_DASH] = ACTIONS(7755), + [anon_sym_PLUS] = ACTIONS(7755), + [anon_sym_STAR] = ACTIONS(7757), + [anon_sym_SLASH] = ACTIONS(7755), + [anon_sym_PERCENT] = ACTIONS(7757), + [anon_sym_PIPE_PIPE] = ACTIONS(7757), + [anon_sym_AMP_AMP] = ACTIONS(7757), + [anon_sym_PIPE] = ACTIONS(7755), + [anon_sym_CARET] = ACTIONS(7757), + [anon_sym_AMP] = ACTIONS(7755), + [anon_sym_EQ_EQ] = ACTIONS(7757), + [anon_sym_BANG_EQ] = ACTIONS(7757), + [anon_sym_GT] = ACTIONS(7755), + [anon_sym_GT_EQ] = ACTIONS(7757), + [anon_sym_LT_EQ] = ACTIONS(7755), + [anon_sym_LT] = ACTIONS(7755), + [anon_sym_LT_LT] = ACTIONS(7757), + [anon_sym_GT_GT] = ACTIONS(7757), + [anon_sym_SEMI] = ACTIONS(7757), + [anon_sym___extension__] = ACTIONS(7757), + [anon_sym___attribute__] = ACTIONS(7757), + [anon_sym___attribute] = ACTIONS(7755), + [anon_sym_COLON] = ACTIONS(7755), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7757), + [anon_sym_LBRACE] = ACTIONS(7757), + [anon_sym_RBRACE] = ACTIONS(7757), + [anon_sym_signed] = ACTIONS(9209), + [anon_sym_unsigned] = ACTIONS(9209), + [anon_sym_long] = ACTIONS(9209), + [anon_sym_short] = ACTIONS(9209), + [anon_sym_LBRACK] = ACTIONS(7757), + [anon_sym_const] = ACTIONS(7755), + [anon_sym_constexpr] = ACTIONS(7757), + [anon_sym_volatile] = ACTIONS(7757), + [anon_sym_restrict] = ACTIONS(7757), + [anon_sym___restrict__] = ACTIONS(7757), + [anon_sym__Atomic] = ACTIONS(7757), + [anon_sym__Noreturn] = ACTIONS(7757), + [anon_sym_noreturn] = ACTIONS(7757), + [anon_sym__Nonnull] = ACTIONS(7757), + [anon_sym_mutable] = ACTIONS(7757), + [anon_sym_constinit] = ACTIONS(7757), + [anon_sym_consteval] = ACTIONS(7757), + [anon_sym_alignas] = ACTIONS(7757), + [anon_sym__Alignas] = ACTIONS(7757), + [anon_sym_QMARK] = ACTIONS(7757), + [anon_sym_LT_EQ_GT] = ACTIONS(7757), + [anon_sym_or] = ACTIONS(7757), + [anon_sym_and] = ACTIONS(7757), + [anon_sym_bitor] = ACTIONS(7757), + [anon_sym_xor] = ACTIONS(7757), + [anon_sym_bitand] = ACTIONS(7757), + [anon_sym_not_eq] = ACTIONS(7757), + [anon_sym_DASH_DASH] = ACTIONS(7757), + [anon_sym_PLUS_PLUS] = ACTIONS(7757), + [anon_sym_DOT] = ACTIONS(7755), + [anon_sym_DOT_STAR] = ACTIONS(7757), + [anon_sym_DASH_GT] = ACTIONS(7757), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7757), + [anon_sym_override] = ACTIONS(7757), + [anon_sym_requires] = ACTIONS(7757), + [anon_sym_COLON_RBRACK] = ACTIONS(7757), }, - [STATE(3560)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7625), - [anon_sym_COMMA] = ACTIONS(7625), - [anon_sym_RPAREN] = ACTIONS(7625), - [anon_sym_LPAREN2] = ACTIONS(7625), - [anon_sym_DASH] = ACTIONS(7623), - [anon_sym_PLUS] = ACTIONS(7623), - [anon_sym_STAR] = ACTIONS(7623), - [anon_sym_SLASH] = ACTIONS(7623), - [anon_sym_PERCENT] = ACTIONS(7623), - [anon_sym_PIPE_PIPE] = ACTIONS(7625), - [anon_sym_AMP_AMP] = ACTIONS(7625), - [anon_sym_PIPE] = ACTIONS(7623), - [anon_sym_CARET] = ACTIONS(7623), - [anon_sym_AMP] = ACTIONS(7623), - [anon_sym_EQ_EQ] = ACTIONS(7625), - [anon_sym_BANG_EQ] = ACTIONS(7625), - [anon_sym_GT] = ACTIONS(7623), - [anon_sym_GT_EQ] = ACTIONS(7625), - [anon_sym_LT_EQ] = ACTIONS(7623), - [anon_sym_LT] = ACTIONS(7623), - [anon_sym_LT_LT] = ACTIONS(7623), - [anon_sym_GT_GT] = ACTIONS(7623), - [anon_sym___extension__] = ACTIONS(7625), - [anon_sym_LBRACE] = ACTIONS(7625), - [anon_sym_LBRACK] = ACTIONS(7625), - [anon_sym_EQ] = ACTIONS(7623), - [anon_sym_const] = ACTIONS(7623), - [anon_sym_constexpr] = ACTIONS(7625), - [anon_sym_volatile] = ACTIONS(7625), - [anon_sym_restrict] = ACTIONS(7625), - [anon_sym___restrict__] = ACTIONS(7625), - [anon_sym__Atomic] = ACTIONS(7625), - [anon_sym__Noreturn] = ACTIONS(7625), - [anon_sym_noreturn] = ACTIONS(7625), - [anon_sym__Nonnull] = ACTIONS(7625), - [anon_sym_mutable] = ACTIONS(7625), - [anon_sym_constinit] = ACTIONS(7625), - [anon_sym_consteval] = ACTIONS(7625), - [anon_sym_alignas] = ACTIONS(7625), - [anon_sym__Alignas] = ACTIONS(7625), - [anon_sym_QMARK] = ACTIONS(7625), - [anon_sym_STAR_EQ] = ACTIONS(7625), - [anon_sym_SLASH_EQ] = ACTIONS(7625), - [anon_sym_PERCENT_EQ] = ACTIONS(7625), - [anon_sym_PLUS_EQ] = ACTIONS(7625), - [anon_sym_DASH_EQ] = ACTIONS(7625), - [anon_sym_LT_LT_EQ] = ACTIONS(7625), - [anon_sym_GT_GT_EQ] = ACTIONS(7625), - [anon_sym_AMP_EQ] = ACTIONS(7625), - [anon_sym_CARET_EQ] = ACTIONS(7625), - [anon_sym_PIPE_EQ] = ACTIONS(7625), - [anon_sym_LT_EQ_GT] = ACTIONS(7625), - [anon_sym_or] = ACTIONS(7625), - [anon_sym_and] = ACTIONS(7625), - [anon_sym_bitor] = ACTIONS(7625), - [anon_sym_xor] = ACTIONS(7625), - [anon_sym_bitand] = ACTIONS(7625), - [anon_sym_not_eq] = ACTIONS(7625), - [anon_sym_DASH_DASH] = ACTIONS(7625), - [anon_sym_PLUS_PLUS] = ACTIONS(7625), - [anon_sym_DOT] = ACTIONS(7623), - [anon_sym_DOT_STAR] = ACTIONS(7625), - [anon_sym_DASH_GT] = ACTIONS(7623), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7625), - [anon_sym_override] = ACTIONS(7625), - [anon_sym_requires] = ACTIONS(7625), - [anon_sym_DASH_GT_STAR] = ACTIONS(7625), + [STATE(3525)] = { + [sym__abstract_declarator] = STATE(6353), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(8453), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(8455), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(8457), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym_SEMI] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(7371), + [anon_sym___attribute] = ACTIONS(7369), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), }, - [STATE(3561)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7597), - [anon_sym_COMMA] = ACTIONS(7597), - [anon_sym_RPAREN] = ACTIONS(7597), - [anon_sym_LPAREN2] = ACTIONS(7597), - [anon_sym_DASH] = ACTIONS(7595), - [anon_sym_PLUS] = ACTIONS(7595), - [anon_sym_STAR] = ACTIONS(7595), - [anon_sym_SLASH] = ACTIONS(7595), - [anon_sym_PERCENT] = ACTIONS(7595), - [anon_sym_PIPE_PIPE] = ACTIONS(7597), - [anon_sym_AMP_AMP] = ACTIONS(7597), - [anon_sym_PIPE] = ACTIONS(7595), - [anon_sym_CARET] = ACTIONS(7595), - [anon_sym_AMP] = ACTIONS(7595), - [anon_sym_EQ_EQ] = ACTIONS(7597), - [anon_sym_BANG_EQ] = ACTIONS(7597), - [anon_sym_GT] = ACTIONS(7595), - [anon_sym_GT_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ] = ACTIONS(7595), - [anon_sym_LT] = ACTIONS(7595), - [anon_sym_LT_LT] = ACTIONS(7595), - [anon_sym_GT_GT] = ACTIONS(7595), - [anon_sym___extension__] = ACTIONS(7597), - [anon_sym_LBRACE] = ACTIONS(7597), - [anon_sym_LBRACK] = ACTIONS(7597), - [anon_sym_EQ] = ACTIONS(7595), - [anon_sym_const] = ACTIONS(7595), - [anon_sym_constexpr] = ACTIONS(7597), - [anon_sym_volatile] = ACTIONS(7597), - [anon_sym_restrict] = ACTIONS(7597), - [anon_sym___restrict__] = ACTIONS(7597), - [anon_sym__Atomic] = ACTIONS(7597), - [anon_sym__Noreturn] = ACTIONS(7597), - [anon_sym_noreturn] = ACTIONS(7597), - [anon_sym__Nonnull] = ACTIONS(7597), - [anon_sym_mutable] = ACTIONS(7597), - [anon_sym_constinit] = ACTIONS(7597), - [anon_sym_consteval] = ACTIONS(7597), - [anon_sym_alignas] = ACTIONS(7597), - [anon_sym__Alignas] = ACTIONS(7597), - [anon_sym_QMARK] = ACTIONS(7597), - [anon_sym_STAR_EQ] = ACTIONS(7597), - [anon_sym_SLASH_EQ] = ACTIONS(7597), - [anon_sym_PERCENT_EQ] = ACTIONS(7597), - [anon_sym_PLUS_EQ] = ACTIONS(7597), - [anon_sym_DASH_EQ] = ACTIONS(7597), - [anon_sym_LT_LT_EQ] = ACTIONS(7597), - [anon_sym_GT_GT_EQ] = ACTIONS(7597), - [anon_sym_AMP_EQ] = ACTIONS(7597), - [anon_sym_CARET_EQ] = ACTIONS(7597), - [anon_sym_PIPE_EQ] = ACTIONS(7597), - [anon_sym_LT_EQ_GT] = ACTIONS(7597), - [anon_sym_or] = ACTIONS(7597), - [anon_sym_and] = ACTIONS(7597), - [anon_sym_bitor] = ACTIONS(7597), - [anon_sym_xor] = ACTIONS(7597), - [anon_sym_bitand] = ACTIONS(7597), - [anon_sym_not_eq] = ACTIONS(7597), - [anon_sym_DASH_DASH] = ACTIONS(7597), - [anon_sym_PLUS_PLUS] = ACTIONS(7597), - [anon_sym_DOT] = ACTIONS(7595), - [anon_sym_DOT_STAR] = ACTIONS(7597), - [anon_sym_DASH_GT] = ACTIONS(7595), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7597), - [anon_sym_override] = ACTIONS(7597), - [anon_sym_requires] = ACTIONS(7597), - [anon_sym_DASH_GT_STAR] = ACTIONS(7597), + [STATE(3526)] = { + [sym_attribute_specifier] = STATE(4097), + [sym_field_declaration_list] = STATE(3906), + [sym_virtual_specifier] = STATE(9627), + [sym_base_class_clause] = STATE(10570), + [sym_identifier] = ACTIONS(7254), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [aux_sym_preproc_if_token2] = ACTIONS(7256), + [aux_sym_preproc_else_token1] = ACTIONS(7256), + [aux_sym_preproc_elif_token1] = ACTIONS(7254), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7256), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7256), + [anon_sym_LPAREN2] = ACTIONS(7256), + [anon_sym_DASH] = ACTIONS(7254), + [anon_sym_PLUS] = ACTIONS(7254), + [anon_sym_STAR] = ACTIONS(7256), + [anon_sym_SLASH] = ACTIONS(7254), + [anon_sym_PERCENT] = ACTIONS(7256), + [anon_sym_PIPE_PIPE] = ACTIONS(7256), + [anon_sym_AMP_AMP] = ACTIONS(7256), + [anon_sym_PIPE] = ACTIONS(7254), + [anon_sym_CARET] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7254), + [anon_sym_EQ_EQ] = ACTIONS(7256), + [anon_sym_BANG_EQ] = ACTIONS(7256), + [anon_sym_GT] = ACTIONS(7254), + [anon_sym_GT_EQ] = ACTIONS(7256), + [anon_sym_LT_EQ] = ACTIONS(7254), + [anon_sym_LT] = ACTIONS(7254), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_GT_GT] = ACTIONS(7256), + [anon_sym___extension__] = ACTIONS(7254), + [anon_sym___attribute__] = ACTIONS(9211), + [anon_sym___attribute] = ACTIONS(9211), + [anon_sym_COLON] = ACTIONS(8180), + [anon_sym_LBRACE] = ACTIONS(9213), + [anon_sym_LBRACK] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(7254), + [anon_sym_constexpr] = ACTIONS(7254), + [anon_sym_volatile] = ACTIONS(7254), + [anon_sym_restrict] = ACTIONS(7254), + [anon_sym___restrict__] = ACTIONS(7254), + [anon_sym__Atomic] = ACTIONS(7254), + [anon_sym__Noreturn] = ACTIONS(7254), + [anon_sym_noreturn] = ACTIONS(7254), + [anon_sym__Nonnull] = ACTIONS(7254), + [anon_sym_mutable] = ACTIONS(7254), + [anon_sym_constinit] = ACTIONS(7254), + [anon_sym_consteval] = ACTIONS(7254), + [anon_sym_alignas] = ACTIONS(7254), + [anon_sym__Alignas] = ACTIONS(7254), + [anon_sym_QMARK] = ACTIONS(7256), + [anon_sym_LT_EQ_GT] = ACTIONS(7256), + [anon_sym_or] = ACTIONS(7254), + [anon_sym_and] = ACTIONS(7254), + [anon_sym_bitor] = ACTIONS(7254), + [anon_sym_xor] = ACTIONS(7254), + [anon_sym_bitand] = ACTIONS(7254), + [anon_sym_not_eq] = ACTIONS(7254), + [anon_sym_DASH_DASH] = ACTIONS(7256), + [anon_sym_PLUS_PLUS] = ACTIONS(7256), + [anon_sym_DOT] = ACTIONS(7254), + [anon_sym_DOT_STAR] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7264), + [anon_sym_override] = ACTIONS(7264), + [anon_sym_requires] = ACTIONS(7254), }, - [STATE(3562)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7567), - [anon_sym_COMMA] = ACTIONS(7567), - [anon_sym_RPAREN] = ACTIONS(7567), - [anon_sym_LPAREN2] = ACTIONS(7567), - [anon_sym_DASH] = ACTIONS(7565), - [anon_sym_PLUS] = ACTIONS(7565), - [anon_sym_STAR] = ACTIONS(7565), - [anon_sym_SLASH] = ACTIONS(7565), - [anon_sym_PERCENT] = ACTIONS(7565), - [anon_sym_PIPE_PIPE] = ACTIONS(7567), - [anon_sym_AMP_AMP] = ACTIONS(7567), - [anon_sym_PIPE] = ACTIONS(7565), - [anon_sym_CARET] = ACTIONS(7565), - [anon_sym_AMP] = ACTIONS(7565), - [anon_sym_EQ_EQ] = ACTIONS(7567), - [anon_sym_BANG_EQ] = ACTIONS(7567), - [anon_sym_GT] = ACTIONS(7565), - [anon_sym_GT_EQ] = ACTIONS(7567), - [anon_sym_LT_EQ] = ACTIONS(7565), - [anon_sym_LT] = ACTIONS(7565), - [anon_sym_LT_LT] = ACTIONS(7565), - [anon_sym_GT_GT] = ACTIONS(7565), - [anon_sym___extension__] = ACTIONS(7567), - [anon_sym_LBRACE] = ACTIONS(7567), - [anon_sym_LBRACK] = ACTIONS(7567), - [anon_sym_EQ] = ACTIONS(7565), - [anon_sym_const] = ACTIONS(7565), - [anon_sym_constexpr] = ACTIONS(7567), - [anon_sym_volatile] = ACTIONS(7567), - [anon_sym_restrict] = ACTIONS(7567), - [anon_sym___restrict__] = ACTIONS(7567), - [anon_sym__Atomic] = ACTIONS(7567), - [anon_sym__Noreturn] = ACTIONS(7567), - [anon_sym_noreturn] = ACTIONS(7567), - [anon_sym__Nonnull] = ACTIONS(7567), - [anon_sym_mutable] = ACTIONS(7567), - [anon_sym_constinit] = ACTIONS(7567), - [anon_sym_consteval] = ACTIONS(7567), - [anon_sym_alignas] = ACTIONS(7567), - [anon_sym__Alignas] = ACTIONS(7567), - [anon_sym_QMARK] = ACTIONS(7567), - [anon_sym_STAR_EQ] = ACTIONS(7567), - [anon_sym_SLASH_EQ] = ACTIONS(7567), - [anon_sym_PERCENT_EQ] = ACTIONS(7567), - [anon_sym_PLUS_EQ] = ACTIONS(7567), - [anon_sym_DASH_EQ] = ACTIONS(7567), - [anon_sym_LT_LT_EQ] = ACTIONS(7567), - [anon_sym_GT_GT_EQ] = ACTIONS(7567), - [anon_sym_AMP_EQ] = ACTIONS(7567), - [anon_sym_CARET_EQ] = ACTIONS(7567), - [anon_sym_PIPE_EQ] = ACTIONS(7567), - [anon_sym_LT_EQ_GT] = ACTIONS(7567), - [anon_sym_or] = ACTIONS(7567), - [anon_sym_and] = ACTIONS(7567), - [anon_sym_bitor] = ACTIONS(7567), - [anon_sym_xor] = ACTIONS(7567), - [anon_sym_bitand] = ACTIONS(7567), - [anon_sym_not_eq] = ACTIONS(7567), - [anon_sym_DASH_DASH] = ACTIONS(7567), - [anon_sym_PLUS_PLUS] = ACTIONS(7567), - [anon_sym_DOT] = ACTIONS(7565), - [anon_sym_DOT_STAR] = ACTIONS(7567), - [anon_sym_DASH_GT] = ACTIONS(7565), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7567), - [anon_sym_override] = ACTIONS(7567), - [anon_sym_requires] = ACTIONS(7567), - [anon_sym_DASH_GT_STAR] = ACTIONS(7567), + [STATE(3527)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7604), + [anon_sym_COMMA] = ACTIONS(7604), + [anon_sym_RPAREN] = ACTIONS(7604), + [anon_sym_LPAREN2] = ACTIONS(7604), + [anon_sym_DASH] = ACTIONS(7602), + [anon_sym_PLUS] = ACTIONS(7602), + [anon_sym_STAR] = ACTIONS(7602), + [anon_sym_SLASH] = ACTIONS(7602), + [anon_sym_PERCENT] = ACTIONS(7602), + [anon_sym_PIPE_PIPE] = ACTIONS(7604), + [anon_sym_AMP_AMP] = ACTIONS(7604), + [anon_sym_PIPE] = ACTIONS(7602), + [anon_sym_CARET] = ACTIONS(7602), + [anon_sym_AMP] = ACTIONS(7602), + [anon_sym_EQ_EQ] = ACTIONS(7604), + [anon_sym_BANG_EQ] = ACTIONS(7604), + [anon_sym_GT] = ACTIONS(7602), + [anon_sym_GT_EQ] = ACTIONS(7604), + [anon_sym_LT_EQ] = ACTIONS(7602), + [anon_sym_LT] = ACTIONS(7602), + [anon_sym_LT_LT] = ACTIONS(7602), + [anon_sym_GT_GT] = ACTIONS(7602), + [anon_sym___extension__] = ACTIONS(7604), + [anon_sym_LBRACE] = ACTIONS(7604), + [anon_sym_LBRACK] = ACTIONS(7604), + [anon_sym_EQ] = ACTIONS(7602), + [anon_sym_const] = ACTIONS(7602), + [anon_sym_constexpr] = ACTIONS(7604), + [anon_sym_volatile] = ACTIONS(7604), + [anon_sym_restrict] = ACTIONS(7604), + [anon_sym___restrict__] = ACTIONS(7604), + [anon_sym__Atomic] = ACTIONS(7604), + [anon_sym__Noreturn] = ACTIONS(7604), + [anon_sym_noreturn] = ACTIONS(7604), + [anon_sym__Nonnull] = ACTIONS(7604), + [anon_sym_mutable] = ACTIONS(7604), + [anon_sym_constinit] = ACTIONS(7604), + [anon_sym_consteval] = ACTIONS(7604), + [anon_sym_alignas] = ACTIONS(7604), + [anon_sym__Alignas] = ACTIONS(7604), + [anon_sym_QMARK] = ACTIONS(7604), + [anon_sym_STAR_EQ] = ACTIONS(7604), + [anon_sym_SLASH_EQ] = ACTIONS(7604), + [anon_sym_PERCENT_EQ] = ACTIONS(7604), + [anon_sym_PLUS_EQ] = ACTIONS(7604), + [anon_sym_DASH_EQ] = ACTIONS(7604), + [anon_sym_LT_LT_EQ] = ACTIONS(7604), + [anon_sym_GT_GT_EQ] = ACTIONS(7604), + [anon_sym_AMP_EQ] = ACTIONS(7604), + [anon_sym_CARET_EQ] = ACTIONS(7604), + [anon_sym_PIPE_EQ] = ACTIONS(7604), + [anon_sym_LT_EQ_GT] = ACTIONS(7604), + [anon_sym_or] = ACTIONS(7604), + [anon_sym_and] = ACTIONS(7604), + [anon_sym_bitor] = ACTIONS(7604), + [anon_sym_xor] = ACTIONS(7604), + [anon_sym_bitand] = ACTIONS(7604), + [anon_sym_not_eq] = ACTIONS(7604), + [anon_sym_DASH_DASH] = ACTIONS(7604), + [anon_sym_PLUS_PLUS] = ACTIONS(7604), + [anon_sym_DOT] = ACTIONS(7602), + [anon_sym_DOT_STAR] = ACTIONS(7604), + [anon_sym_DASH_GT] = ACTIONS(7602), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7604), + [anon_sym_override] = ACTIONS(7604), + [anon_sym_requires] = ACTIONS(7604), + [anon_sym_DASH_GT_STAR] = ACTIONS(7604), }, - [STATE(3563)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), - [anon_sym_COMMA] = ACTIONS(6598), - [anon_sym_RPAREN] = ACTIONS(6598), - [anon_sym_LPAREN2] = ACTIONS(6598), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_STAR] = ACTIONS(6605), - [anon_sym_SLASH] = ACTIONS(6605), - [anon_sym_PERCENT] = ACTIONS(6605), - [anon_sym_PIPE_PIPE] = ACTIONS(6598), - [anon_sym_AMP_AMP] = ACTIONS(6598), - [anon_sym_PIPE] = ACTIONS(6605), - [anon_sym_CARET] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6605), - [anon_sym_EQ_EQ] = ACTIONS(6598), - [anon_sym_BANG_EQ] = ACTIONS(6598), - [anon_sym_GT] = ACTIONS(6605), - [anon_sym_GT_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ] = ACTIONS(6605), - [anon_sym_LT] = ACTIONS(6605), - [anon_sym_LT_LT] = ACTIONS(6605), - [anon_sym_GT_GT] = ACTIONS(6605), - [anon_sym___extension__] = ACTIONS(6601), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_LBRACK] = ACTIONS(6598), - [anon_sym_EQ] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6601), - [anon_sym_volatile] = ACTIONS(6601), - [anon_sym_restrict] = ACTIONS(6601), - [anon_sym___restrict__] = ACTIONS(6601), - [anon_sym__Atomic] = ACTIONS(6601), - [anon_sym__Noreturn] = ACTIONS(6601), - [anon_sym_noreturn] = ACTIONS(6601), - [anon_sym__Nonnull] = ACTIONS(6601), - [anon_sym_mutable] = ACTIONS(6601), - [anon_sym_constinit] = ACTIONS(6601), - [anon_sym_consteval] = ACTIONS(6601), - [anon_sym_alignas] = ACTIONS(6601), - [anon_sym__Alignas] = ACTIONS(6601), - [anon_sym_QMARK] = ACTIONS(6598), - [anon_sym_STAR_EQ] = ACTIONS(6598), - [anon_sym_SLASH_EQ] = ACTIONS(6598), - [anon_sym_PERCENT_EQ] = ACTIONS(6598), - [anon_sym_PLUS_EQ] = ACTIONS(6598), - [anon_sym_DASH_EQ] = ACTIONS(6598), - [anon_sym_LT_LT_EQ] = ACTIONS(6598), - [anon_sym_GT_GT_EQ] = ACTIONS(6598), - [anon_sym_AMP_EQ] = ACTIONS(6598), - [anon_sym_CARET_EQ] = ACTIONS(6598), - [anon_sym_PIPE_EQ] = ACTIONS(6598), - [anon_sym_LT_EQ_GT] = ACTIONS(6598), - [anon_sym_or] = ACTIONS(6598), - [anon_sym_and] = ACTIONS(6598), - [anon_sym_bitor] = ACTIONS(6598), - [anon_sym_xor] = ACTIONS(6598), - [anon_sym_bitand] = ACTIONS(6598), - [anon_sym_not_eq] = ACTIONS(6598), - [anon_sym_DASH_DASH] = ACTIONS(6598), - [anon_sym_PLUS_PLUS] = ACTIONS(6598), - [anon_sym_DOT] = ACTIONS(6605), - [anon_sym_DOT_STAR] = ACTIONS(6598), - [anon_sym_DASH_GT] = ACTIONS(6605), + [STATE(3528)] = { + [sym_argument_list] = STATE(3927), + [sym_initializer_list] = STATE(3927), + [sym_new_declarator] = STATE(3601), + [sym_identifier] = ACTIONS(9215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9217), + [anon_sym_COMMA] = ACTIONS(9217), + [anon_sym_RPAREN] = ACTIONS(9217), + [aux_sym_preproc_if_token2] = ACTIONS(9217), + [aux_sym_preproc_else_token1] = ACTIONS(9217), + [aux_sym_preproc_elif_token1] = ACTIONS(9215), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9217), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9217), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9215), + [anon_sym_PLUS] = ACTIONS(9215), + [anon_sym_STAR] = ACTIONS(9215), + [anon_sym_SLASH] = ACTIONS(9215), + [anon_sym_PERCENT] = ACTIONS(9215), + [anon_sym_PIPE_PIPE] = ACTIONS(9217), + [anon_sym_AMP_AMP] = ACTIONS(9217), + [anon_sym_PIPE] = ACTIONS(9215), + [anon_sym_CARET] = ACTIONS(9215), + [anon_sym_AMP] = ACTIONS(9215), + [anon_sym_EQ_EQ] = ACTIONS(9217), + [anon_sym_BANG_EQ] = ACTIONS(9217), + [anon_sym_GT] = ACTIONS(9215), + [anon_sym_GT_EQ] = ACTIONS(9217), + [anon_sym_LT_EQ] = ACTIONS(9215), + [anon_sym_LT] = ACTIONS(9215), + [anon_sym_LT_LT] = ACTIONS(9215), + [anon_sym_GT_GT] = ACTIONS(9215), + [anon_sym_SEMI] = ACTIONS(9217), + [anon_sym___attribute__] = ACTIONS(9215), + [anon_sym___attribute] = ACTIONS(9215), + [anon_sym_COLON] = ACTIONS(9215), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9217), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(9217), + [anon_sym_LBRACK] = ACTIONS(9184), + [anon_sym_EQ] = ACTIONS(9215), + [anon_sym_QMARK] = ACTIONS(9217), + [anon_sym_STAR_EQ] = ACTIONS(9217), + [anon_sym_SLASH_EQ] = ACTIONS(9217), + [anon_sym_PERCENT_EQ] = ACTIONS(9217), + [anon_sym_PLUS_EQ] = ACTIONS(9217), + [anon_sym_DASH_EQ] = ACTIONS(9217), + [anon_sym_LT_LT_EQ] = ACTIONS(9217), + [anon_sym_GT_GT_EQ] = ACTIONS(9217), + [anon_sym_AMP_EQ] = ACTIONS(9217), + [anon_sym_CARET_EQ] = ACTIONS(9217), + [anon_sym_PIPE_EQ] = ACTIONS(9217), + [anon_sym_and_eq] = ACTIONS(9215), + [anon_sym_or_eq] = ACTIONS(9215), + [anon_sym_xor_eq] = ACTIONS(9215), + [anon_sym_LT_EQ_GT] = ACTIONS(9217), + [anon_sym_or] = ACTIONS(9215), + [anon_sym_and] = ACTIONS(9215), + [anon_sym_bitor] = ACTIONS(9215), + [anon_sym_xor] = ACTIONS(9215), + [anon_sym_bitand] = ACTIONS(9215), + [anon_sym_not_eq] = ACTIONS(9215), + [anon_sym_DASH_DASH] = ACTIONS(9217), + [anon_sym_PLUS_PLUS] = ACTIONS(9217), + [anon_sym_DOT] = ACTIONS(9215), + [anon_sym_DOT_STAR] = ACTIONS(9217), + [anon_sym_DASH_GT] = ACTIONS(9217), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9217), + }, + [STATE(3529)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3481), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7771), + [anon_sym_COMMA] = ACTIONS(7771), + [anon_sym_RPAREN] = ACTIONS(7771), + [anon_sym_LPAREN2] = ACTIONS(7771), + [anon_sym_DASH] = ACTIONS(7769), + [anon_sym_PLUS] = ACTIONS(7769), + [anon_sym_STAR] = ACTIONS(7771), + [anon_sym_SLASH] = ACTIONS(7769), + [anon_sym_PERCENT] = ACTIONS(7771), + [anon_sym_PIPE_PIPE] = ACTIONS(7771), + [anon_sym_AMP_AMP] = ACTIONS(7771), + [anon_sym_PIPE] = ACTIONS(7769), + [anon_sym_CARET] = ACTIONS(7771), + [anon_sym_AMP] = ACTIONS(7769), + [anon_sym_EQ_EQ] = ACTIONS(7771), + [anon_sym_BANG_EQ] = ACTIONS(7771), + [anon_sym_GT] = ACTIONS(7769), + [anon_sym_GT_EQ] = ACTIONS(7771), + [anon_sym_LT_EQ] = ACTIONS(7769), + [anon_sym_LT] = ACTIONS(7769), + [anon_sym_LT_LT] = ACTIONS(7771), + [anon_sym_GT_GT] = ACTIONS(7771), + [anon_sym_SEMI] = ACTIONS(7771), + [anon_sym___extension__] = ACTIONS(7771), + [anon_sym___attribute__] = ACTIONS(7771), + [anon_sym___attribute] = ACTIONS(7769), + [anon_sym_COLON] = ACTIONS(7769), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7771), + [anon_sym_LBRACE] = ACTIONS(7771), + [anon_sym_RBRACE] = ACTIONS(7771), + [anon_sym_signed] = ACTIONS(9219), + [anon_sym_unsigned] = ACTIONS(9219), + [anon_sym_long] = ACTIONS(9219), + [anon_sym_short] = ACTIONS(9219), + [anon_sym_LBRACK] = ACTIONS(7771), + [anon_sym_const] = ACTIONS(7769), + [anon_sym_constexpr] = ACTIONS(7771), + [anon_sym_volatile] = ACTIONS(7771), + [anon_sym_restrict] = ACTIONS(7771), + [anon_sym___restrict__] = ACTIONS(7771), + [anon_sym__Atomic] = ACTIONS(7771), + [anon_sym__Noreturn] = ACTIONS(7771), + [anon_sym_noreturn] = ACTIONS(7771), + [anon_sym__Nonnull] = ACTIONS(7771), + [anon_sym_mutable] = ACTIONS(7771), + [anon_sym_constinit] = ACTIONS(7771), + [anon_sym_consteval] = ACTIONS(7771), + [anon_sym_alignas] = ACTIONS(7771), + [anon_sym__Alignas] = ACTIONS(7771), + [anon_sym_QMARK] = ACTIONS(7771), + [anon_sym_LT_EQ_GT] = ACTIONS(7771), + [anon_sym_or] = ACTIONS(7771), + [anon_sym_and] = ACTIONS(7771), + [anon_sym_bitor] = ACTIONS(7771), + [anon_sym_xor] = ACTIONS(7771), + [anon_sym_bitand] = ACTIONS(7771), + [anon_sym_not_eq] = ACTIONS(7771), + [anon_sym_DASH_DASH] = ACTIONS(7771), + [anon_sym_PLUS_PLUS] = ACTIONS(7771), + [anon_sym_DOT] = ACTIONS(7769), + [anon_sym_DOT_STAR] = ACTIONS(7771), + [anon_sym_DASH_GT] = ACTIONS(7771), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6601), - [anon_sym_decltype] = ACTIONS(6601), - [anon_sym_DASH_GT_STAR] = ACTIONS(6598), + [anon_sym_final] = ACTIONS(7771), + [anon_sym_override] = ACTIONS(7771), + [anon_sym_requires] = ACTIONS(7771), + [anon_sym_COLON_RBRACK] = ACTIONS(7771), }, - [STATE(3564)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7715), - [anon_sym_COMMA] = ACTIONS(7715), - [anon_sym_RPAREN] = ACTIONS(7715), - [anon_sym_LPAREN2] = ACTIONS(7715), - [anon_sym_DASH] = ACTIONS(7713), - [anon_sym_PLUS] = ACTIONS(7713), + [STATE(3530)] = { + [sym__abstract_declarator] = STATE(6357), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3543), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3543), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(8453), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(8455), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(8457), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym_SEMI] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(7375), + [anon_sym___attribute] = ACTIONS(7373), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), + }, + [STATE(3531)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7608), + [anon_sym_COMMA] = ACTIONS(7608), + [anon_sym_RPAREN] = ACTIONS(7608), + [anon_sym_LPAREN2] = ACTIONS(7608), + [anon_sym_DASH] = ACTIONS(7606), + [anon_sym_PLUS] = ACTIONS(7606), + [anon_sym_STAR] = ACTIONS(7606), + [anon_sym_SLASH] = ACTIONS(7606), + [anon_sym_PERCENT] = ACTIONS(7606), + [anon_sym_PIPE_PIPE] = ACTIONS(7608), + [anon_sym_AMP_AMP] = ACTIONS(7608), + [anon_sym_PIPE] = ACTIONS(7606), + [anon_sym_CARET] = ACTIONS(7606), + [anon_sym_AMP] = ACTIONS(7606), + [anon_sym_EQ_EQ] = ACTIONS(7608), + [anon_sym_BANG_EQ] = ACTIONS(7608), + [anon_sym_GT] = ACTIONS(7606), + [anon_sym_GT_EQ] = ACTIONS(7608), + [anon_sym_LT_EQ] = ACTIONS(7606), + [anon_sym_LT] = ACTIONS(7606), + [anon_sym_LT_LT] = ACTIONS(7606), + [anon_sym_GT_GT] = ACTIONS(7606), + [anon_sym___extension__] = ACTIONS(7608), + [anon_sym_LBRACE] = ACTIONS(7608), + [anon_sym_LBRACK] = ACTIONS(7608), + [anon_sym_EQ] = ACTIONS(7606), + [anon_sym_const] = ACTIONS(7606), + [anon_sym_constexpr] = ACTIONS(7608), + [anon_sym_volatile] = ACTIONS(7608), + [anon_sym_restrict] = ACTIONS(7608), + [anon_sym___restrict__] = ACTIONS(7608), + [anon_sym__Atomic] = ACTIONS(7608), + [anon_sym__Noreturn] = ACTIONS(7608), + [anon_sym_noreturn] = ACTIONS(7608), + [anon_sym__Nonnull] = ACTIONS(7608), + [anon_sym_mutable] = ACTIONS(7608), + [anon_sym_constinit] = ACTIONS(7608), + [anon_sym_consteval] = ACTIONS(7608), + [anon_sym_alignas] = ACTIONS(7608), + [anon_sym__Alignas] = ACTIONS(7608), + [anon_sym_QMARK] = ACTIONS(7608), + [anon_sym_STAR_EQ] = ACTIONS(7608), + [anon_sym_SLASH_EQ] = ACTIONS(7608), + [anon_sym_PERCENT_EQ] = ACTIONS(7608), + [anon_sym_PLUS_EQ] = ACTIONS(7608), + [anon_sym_DASH_EQ] = ACTIONS(7608), + [anon_sym_LT_LT_EQ] = ACTIONS(7608), + [anon_sym_GT_GT_EQ] = ACTIONS(7608), + [anon_sym_AMP_EQ] = ACTIONS(7608), + [anon_sym_CARET_EQ] = ACTIONS(7608), + [anon_sym_PIPE_EQ] = ACTIONS(7608), + [anon_sym_LT_EQ_GT] = ACTIONS(7608), + [anon_sym_or] = ACTIONS(7608), + [anon_sym_and] = ACTIONS(7608), + [anon_sym_bitor] = ACTIONS(7608), + [anon_sym_xor] = ACTIONS(7608), + [anon_sym_bitand] = ACTIONS(7608), + [anon_sym_not_eq] = ACTIONS(7608), + [anon_sym_DASH_DASH] = ACTIONS(7608), + [anon_sym_PLUS_PLUS] = ACTIONS(7608), + [anon_sym_DOT] = ACTIONS(7606), + [anon_sym_DOT_STAR] = ACTIONS(7608), + [anon_sym_DASH_GT] = ACTIONS(7606), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7608), + [anon_sym_override] = ACTIONS(7608), + [anon_sym_requires] = ACTIONS(7608), + [anon_sym_DASH_GT_STAR] = ACTIONS(7608), + }, + [STATE(3532)] = { + [sym__abstract_declarator] = STATE(6310), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8453), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8455), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8457), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(6843), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), + }, + [STATE(3533)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7702), + [anon_sym_COMMA] = ACTIONS(7702), + [anon_sym_RPAREN] = ACTIONS(7702), + [anon_sym_LPAREN2] = ACTIONS(7702), + [anon_sym_DASH] = ACTIONS(7700), + [anon_sym_PLUS] = ACTIONS(7700), + [anon_sym_STAR] = ACTIONS(7700), + [anon_sym_SLASH] = ACTIONS(7700), + [anon_sym_PERCENT] = ACTIONS(7700), + [anon_sym_PIPE_PIPE] = ACTIONS(7702), + [anon_sym_AMP_AMP] = ACTIONS(7702), + [anon_sym_PIPE] = ACTIONS(7700), + [anon_sym_CARET] = ACTIONS(7700), + [anon_sym_AMP] = ACTIONS(7700), + [anon_sym_EQ_EQ] = ACTIONS(7702), + [anon_sym_BANG_EQ] = ACTIONS(7702), + [anon_sym_GT] = ACTIONS(7700), + [anon_sym_GT_EQ] = ACTIONS(7702), + [anon_sym_LT_EQ] = ACTIONS(7700), + [anon_sym_LT] = ACTIONS(7700), + [anon_sym_LT_LT] = ACTIONS(7700), + [anon_sym_GT_GT] = ACTIONS(7700), + [anon_sym___extension__] = ACTIONS(7702), + [anon_sym_LBRACE] = ACTIONS(7702), + [anon_sym_LBRACK] = ACTIONS(7702), + [anon_sym_EQ] = ACTIONS(7700), + [anon_sym_const] = ACTIONS(7700), + [anon_sym_constexpr] = ACTIONS(7702), + [anon_sym_volatile] = ACTIONS(7702), + [anon_sym_restrict] = ACTIONS(7702), + [anon_sym___restrict__] = ACTIONS(7702), + [anon_sym__Atomic] = ACTIONS(7702), + [anon_sym__Noreturn] = ACTIONS(7702), + [anon_sym_noreturn] = ACTIONS(7702), + [anon_sym__Nonnull] = ACTIONS(7702), + [anon_sym_mutable] = ACTIONS(7702), + [anon_sym_constinit] = ACTIONS(7702), + [anon_sym_consteval] = ACTIONS(7702), + [anon_sym_alignas] = ACTIONS(7702), + [anon_sym__Alignas] = ACTIONS(7702), + [anon_sym_QMARK] = ACTIONS(7702), + [anon_sym_STAR_EQ] = ACTIONS(7702), + [anon_sym_SLASH_EQ] = ACTIONS(7702), + [anon_sym_PERCENT_EQ] = ACTIONS(7702), + [anon_sym_PLUS_EQ] = ACTIONS(7702), + [anon_sym_DASH_EQ] = ACTIONS(7702), + [anon_sym_LT_LT_EQ] = ACTIONS(7702), + [anon_sym_GT_GT_EQ] = ACTIONS(7702), + [anon_sym_AMP_EQ] = ACTIONS(7702), + [anon_sym_CARET_EQ] = ACTIONS(7702), + [anon_sym_PIPE_EQ] = ACTIONS(7702), + [anon_sym_LT_EQ_GT] = ACTIONS(7702), + [anon_sym_or] = ACTIONS(7702), + [anon_sym_and] = ACTIONS(7702), + [anon_sym_bitor] = ACTIONS(7702), + [anon_sym_xor] = ACTIONS(7702), + [anon_sym_bitand] = ACTIONS(7702), + [anon_sym_not_eq] = ACTIONS(7702), + [anon_sym_DASH_DASH] = ACTIONS(7702), + [anon_sym_PLUS_PLUS] = ACTIONS(7702), + [anon_sym_DOT] = ACTIONS(7700), + [anon_sym_DOT_STAR] = ACTIONS(7702), + [anon_sym_DASH_GT] = ACTIONS(7700), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7702), + [anon_sym_override] = ACTIONS(7702), + [anon_sym_requires] = ACTIONS(7702), + [anon_sym_DASH_GT_STAR] = ACTIONS(7702), + }, + [STATE(3534)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7713), + [anon_sym_COMMA] = ACTIONS(7713), + [anon_sym_RPAREN] = ACTIONS(7713), + [anon_sym_LPAREN2] = ACTIONS(7713), + [anon_sym_DASH] = ACTIONS(7711), + [anon_sym_PLUS] = ACTIONS(7711), + [anon_sym_STAR] = ACTIONS(7711), + [anon_sym_SLASH] = ACTIONS(7711), + [anon_sym_PERCENT] = ACTIONS(7711), + [anon_sym_PIPE_PIPE] = ACTIONS(7713), + [anon_sym_AMP_AMP] = ACTIONS(7713), + [anon_sym_PIPE] = ACTIONS(7711), + [anon_sym_CARET] = ACTIONS(7711), + [anon_sym_AMP] = ACTIONS(7711), + [anon_sym_EQ_EQ] = ACTIONS(7713), + [anon_sym_BANG_EQ] = ACTIONS(7713), + [anon_sym_GT] = ACTIONS(7711), + [anon_sym_GT_EQ] = ACTIONS(7713), + [anon_sym_LT_EQ] = ACTIONS(7711), + [anon_sym_LT] = ACTIONS(7711), + [anon_sym_LT_LT] = ACTIONS(7711), + [anon_sym_GT_GT] = ACTIONS(7711), + [anon_sym___extension__] = ACTIONS(7713), + [anon_sym_LBRACE] = ACTIONS(7713), + [anon_sym_LBRACK] = ACTIONS(7713), + [anon_sym_EQ] = ACTIONS(7711), + [anon_sym_const] = ACTIONS(7711), + [anon_sym_constexpr] = ACTIONS(7713), + [anon_sym_volatile] = ACTIONS(7713), + [anon_sym_restrict] = ACTIONS(7713), + [anon_sym___restrict__] = ACTIONS(7713), + [anon_sym__Atomic] = ACTIONS(7713), + [anon_sym__Noreturn] = ACTIONS(7713), + [anon_sym_noreturn] = ACTIONS(7713), + [anon_sym__Nonnull] = ACTIONS(7713), + [anon_sym_mutable] = ACTIONS(7713), + [anon_sym_constinit] = ACTIONS(7713), + [anon_sym_consteval] = ACTIONS(7713), + [anon_sym_alignas] = ACTIONS(7713), + [anon_sym__Alignas] = ACTIONS(7713), + [anon_sym_QMARK] = ACTIONS(7713), + [anon_sym_STAR_EQ] = ACTIONS(7713), + [anon_sym_SLASH_EQ] = ACTIONS(7713), + [anon_sym_PERCENT_EQ] = ACTIONS(7713), + [anon_sym_PLUS_EQ] = ACTIONS(7713), + [anon_sym_DASH_EQ] = ACTIONS(7713), + [anon_sym_LT_LT_EQ] = ACTIONS(7713), + [anon_sym_GT_GT_EQ] = ACTIONS(7713), + [anon_sym_AMP_EQ] = ACTIONS(7713), + [anon_sym_CARET_EQ] = ACTIONS(7713), + [anon_sym_PIPE_EQ] = ACTIONS(7713), + [anon_sym_LT_EQ_GT] = ACTIONS(7713), + [anon_sym_or] = ACTIONS(7713), + [anon_sym_and] = ACTIONS(7713), + [anon_sym_bitor] = ACTIONS(7713), + [anon_sym_xor] = ACTIONS(7713), + [anon_sym_bitand] = ACTIONS(7713), + [anon_sym_not_eq] = ACTIONS(7713), + [anon_sym_DASH_DASH] = ACTIONS(7713), + [anon_sym_PLUS_PLUS] = ACTIONS(7713), + [anon_sym_DOT] = ACTIONS(7711), + [anon_sym_DOT_STAR] = ACTIONS(7713), + [anon_sym_DASH_GT] = ACTIONS(7711), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7713), + [anon_sym_override] = ACTIONS(7713), + [anon_sym_requires] = ACTIONS(7713), + [anon_sym_DASH_GT_STAR] = ACTIONS(7713), + }, + [STATE(3535)] = { + [sym_identifier] = ACTIONS(7331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7333), + [anon_sym_COMMA] = ACTIONS(7333), + [aux_sym_preproc_if_token2] = ACTIONS(7333), + [aux_sym_preproc_else_token1] = ACTIONS(7333), + [aux_sym_preproc_elif_token1] = ACTIONS(7331), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7333), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7333), + [anon_sym_LPAREN2] = ACTIONS(7333), + [anon_sym_DASH] = ACTIONS(7331), + [anon_sym_PLUS] = ACTIONS(7331), + [anon_sym_STAR] = ACTIONS(7333), + [anon_sym_SLASH] = ACTIONS(7331), + [anon_sym_PERCENT] = ACTIONS(7333), + [anon_sym_PIPE_PIPE] = ACTIONS(7333), + [anon_sym_AMP_AMP] = ACTIONS(7333), + [anon_sym_PIPE] = ACTIONS(7331), + [anon_sym_CARET] = ACTIONS(7333), + [anon_sym_AMP] = ACTIONS(7331), + [anon_sym_EQ_EQ] = ACTIONS(7333), + [anon_sym_BANG_EQ] = ACTIONS(7333), + [anon_sym_GT] = ACTIONS(7331), + [anon_sym_GT_EQ] = ACTIONS(7333), + [anon_sym_LT_EQ] = ACTIONS(7331), + [anon_sym_LT] = ACTIONS(7331), + [anon_sym_LT_LT] = ACTIONS(7333), + [anon_sym_GT_GT] = ACTIONS(7333), + [anon_sym___extension__] = ACTIONS(7331), + [anon_sym___attribute__] = ACTIONS(7331), + [anon_sym___attribute] = ACTIONS(7331), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_COLON_COLON] = ACTIONS(7333), + [anon_sym_LBRACE] = ACTIONS(7333), + [anon_sym_LBRACK] = ACTIONS(7333), + [anon_sym_RBRACK] = ACTIONS(7333), + [anon_sym_const] = ACTIONS(7331), + [anon_sym_constexpr] = ACTIONS(7331), + [anon_sym_volatile] = ACTIONS(7331), + [anon_sym_restrict] = ACTIONS(7331), + [anon_sym___restrict__] = ACTIONS(7331), + [anon_sym__Atomic] = ACTIONS(7331), + [anon_sym__Noreturn] = ACTIONS(7331), + [anon_sym_noreturn] = ACTIONS(7331), + [anon_sym__Nonnull] = ACTIONS(7331), + [anon_sym_mutable] = ACTIONS(7331), + [anon_sym_constinit] = ACTIONS(7331), + [anon_sym_consteval] = ACTIONS(7331), + [anon_sym_alignas] = ACTIONS(7331), + [anon_sym__Alignas] = ACTIONS(7331), + [anon_sym_QMARK] = ACTIONS(7333), + [anon_sym_LT_EQ_GT] = ACTIONS(7333), + [anon_sym_or] = ACTIONS(7331), + [anon_sym_and] = ACTIONS(7331), + [anon_sym_bitor] = ACTIONS(7331), + [anon_sym_xor] = ACTIONS(7331), + [anon_sym_bitand] = ACTIONS(7331), + [anon_sym_not_eq] = ACTIONS(7331), + [anon_sym_DASH_DASH] = ACTIONS(7333), + [anon_sym_PLUS_PLUS] = ACTIONS(7333), + [anon_sym_DOT] = ACTIONS(7331), + [anon_sym_DOT_STAR] = ACTIONS(7333), + [anon_sym_DASH_GT] = ACTIONS(7333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7331), + [anon_sym_decltype] = ACTIONS(7331), + [anon_sym_final] = ACTIONS(7331), + [anon_sym_override] = ACTIONS(7331), + [anon_sym_requires] = ACTIONS(7331), + }, + [STATE(3536)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7620), + [anon_sym_COMMA] = ACTIONS(7620), + [anon_sym_RPAREN] = ACTIONS(7620), + [anon_sym_LPAREN2] = ACTIONS(7620), + [anon_sym_DASH] = ACTIONS(7618), + [anon_sym_PLUS] = ACTIONS(7618), + [anon_sym_STAR] = ACTIONS(7620), + [anon_sym_SLASH] = ACTIONS(7618), + [anon_sym_PERCENT] = ACTIONS(7620), + [anon_sym_PIPE_PIPE] = ACTIONS(7620), + [anon_sym_AMP_AMP] = ACTIONS(7620), + [anon_sym_PIPE] = ACTIONS(7618), + [anon_sym_CARET] = ACTIONS(7620), + [anon_sym_AMP] = ACTIONS(7618), + [anon_sym_EQ_EQ] = ACTIONS(7620), + [anon_sym_BANG_EQ] = ACTIONS(7620), + [anon_sym_GT] = ACTIONS(7618), + [anon_sym_GT_EQ] = ACTIONS(7620), + [anon_sym_LT_EQ] = ACTIONS(7618), + [anon_sym_LT] = ACTIONS(7618), + [anon_sym_LT_LT] = ACTIONS(7620), + [anon_sym_GT_GT] = ACTIONS(7620), + [anon_sym_SEMI] = ACTIONS(7620), + [anon_sym___extension__] = ACTIONS(7620), + [anon_sym___attribute__] = ACTIONS(7620), + [anon_sym___attribute] = ACTIONS(7618), + [anon_sym_COLON] = ACTIONS(7618), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7620), + [anon_sym_LBRACE] = ACTIONS(7620), + [anon_sym_RBRACE] = ACTIONS(7620), + [anon_sym_signed] = ACTIONS(9148), + [anon_sym_unsigned] = ACTIONS(9148), + [anon_sym_long] = ACTIONS(9148), + [anon_sym_short] = ACTIONS(9148), + [anon_sym_LBRACK] = ACTIONS(7620), + [anon_sym_const] = ACTIONS(7618), + [anon_sym_constexpr] = ACTIONS(7620), + [anon_sym_volatile] = ACTIONS(7620), + [anon_sym_restrict] = ACTIONS(7620), + [anon_sym___restrict__] = ACTIONS(7620), + [anon_sym__Atomic] = ACTIONS(7620), + [anon_sym__Noreturn] = ACTIONS(7620), + [anon_sym_noreturn] = ACTIONS(7620), + [anon_sym__Nonnull] = ACTIONS(7620), + [anon_sym_mutable] = ACTIONS(7620), + [anon_sym_constinit] = ACTIONS(7620), + [anon_sym_consteval] = ACTIONS(7620), + [anon_sym_alignas] = ACTIONS(7620), + [anon_sym__Alignas] = ACTIONS(7620), + [anon_sym_QMARK] = ACTIONS(7620), + [anon_sym_LT_EQ_GT] = ACTIONS(7620), + [anon_sym_or] = ACTIONS(7620), + [anon_sym_and] = ACTIONS(7620), + [anon_sym_bitor] = ACTIONS(7620), + [anon_sym_xor] = ACTIONS(7620), + [anon_sym_bitand] = ACTIONS(7620), + [anon_sym_not_eq] = ACTIONS(7620), + [anon_sym_DASH_DASH] = ACTIONS(7620), + [anon_sym_PLUS_PLUS] = ACTIONS(7620), + [anon_sym_DOT] = ACTIONS(7618), + [anon_sym_DOT_STAR] = ACTIONS(7620), + [anon_sym_DASH_GT] = ACTIONS(7620), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7620), + [anon_sym_override] = ACTIONS(7620), + [anon_sym_requires] = ACTIONS(7620), + [anon_sym_COLON_RBRACK] = ACTIONS(7620), + }, + [STATE(3537)] = { + [sym__abstract_declarator] = STATE(6336), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3547), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2077), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_RPAREN] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym_SEMI] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(7373), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7375), + [anon_sym_RBRACE] = ACTIONS(7375), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7375), + }, + [STATE(3538)] = { + [sym__abstract_declarator] = STATE(6312), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3482), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2077), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3482), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_RPAREN] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7367), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7367), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7367), + [anon_sym_GT_GT] = ACTIONS(7367), + [anon_sym_SEMI] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(7365), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7367), + [anon_sym_RBRACE] = ACTIONS(7367), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7367), + [anon_sym_and] = ACTIONS(7367), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7367), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7367), + }, + [STATE(3539)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7717), + [anon_sym_COMMA] = ACTIONS(7717), + [anon_sym_RPAREN] = ACTIONS(7717), + [anon_sym_LPAREN2] = ACTIONS(7717), + [anon_sym_DASH] = ACTIONS(7715), + [anon_sym_PLUS] = ACTIONS(7715), [anon_sym_STAR] = ACTIONS(7715), - [anon_sym_SLASH] = ACTIONS(7713), + [anon_sym_SLASH] = ACTIONS(7715), [anon_sym_PERCENT] = ACTIONS(7715), - [anon_sym_PIPE_PIPE] = ACTIONS(7715), - [anon_sym_AMP_AMP] = ACTIONS(7715), - [anon_sym_PIPE] = ACTIONS(7713), + [anon_sym_PIPE_PIPE] = ACTIONS(7717), + [anon_sym_AMP_AMP] = ACTIONS(7717), + [anon_sym_PIPE] = ACTIONS(7715), [anon_sym_CARET] = ACTIONS(7715), - [anon_sym_AMP] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7715), - [anon_sym_BANG_EQ] = ACTIONS(7715), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_EQ] = ACTIONS(7715), - [anon_sym_LT_EQ] = ACTIONS(7713), - [anon_sym_LT] = ACTIONS(7713), + [anon_sym_AMP] = ACTIONS(7715), + [anon_sym_EQ_EQ] = ACTIONS(7717), + [anon_sym_BANG_EQ] = ACTIONS(7717), + [anon_sym_GT] = ACTIONS(7715), + [anon_sym_GT_EQ] = ACTIONS(7717), + [anon_sym_LT_EQ] = ACTIONS(7715), + [anon_sym_LT] = ACTIONS(7715), [anon_sym_LT_LT] = ACTIONS(7715), [anon_sym_GT_GT] = ACTIONS(7715), - [anon_sym_SEMI] = ACTIONS(7715), - [anon_sym___extension__] = ACTIONS(7715), - [anon_sym___attribute__] = ACTIONS(7715), - [anon_sym___attribute] = ACTIONS(7713), - [anon_sym_COLON] = ACTIONS(7713), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7715), - [anon_sym_LBRACE] = ACTIONS(7715), - [anon_sym_RBRACE] = ACTIONS(7715), - [anon_sym_signed] = ACTIONS(9234), - [anon_sym_unsigned] = ACTIONS(9234), - [anon_sym_long] = ACTIONS(9234), - [anon_sym_short] = ACTIONS(9234), - [anon_sym_LBRACK] = ACTIONS(7715), - [anon_sym_const] = ACTIONS(7713), - [anon_sym_constexpr] = ACTIONS(7715), - [anon_sym_volatile] = ACTIONS(7715), - [anon_sym_restrict] = ACTIONS(7715), - [anon_sym___restrict__] = ACTIONS(7715), - [anon_sym__Atomic] = ACTIONS(7715), - [anon_sym__Noreturn] = ACTIONS(7715), - [anon_sym_noreturn] = ACTIONS(7715), - [anon_sym__Nonnull] = ACTIONS(7715), - [anon_sym_mutable] = ACTIONS(7715), - [anon_sym_constinit] = ACTIONS(7715), - [anon_sym_consteval] = ACTIONS(7715), - [anon_sym_alignas] = ACTIONS(7715), - [anon_sym__Alignas] = ACTIONS(7715), - [anon_sym_QMARK] = ACTIONS(7715), - [anon_sym_LT_EQ_GT] = ACTIONS(7715), - [anon_sym_or] = ACTIONS(7715), - [anon_sym_and] = ACTIONS(7715), - [anon_sym_bitor] = ACTIONS(7715), - [anon_sym_xor] = ACTIONS(7715), - [anon_sym_bitand] = ACTIONS(7715), - [anon_sym_not_eq] = ACTIONS(7715), - [anon_sym_DASH_DASH] = ACTIONS(7715), - [anon_sym_PLUS_PLUS] = ACTIONS(7715), - [anon_sym_DOT] = ACTIONS(7713), - [anon_sym_DOT_STAR] = ACTIONS(7715), + [anon_sym___extension__] = ACTIONS(7717), + [anon_sym_LBRACE] = ACTIONS(7717), + [anon_sym_LBRACK] = ACTIONS(7717), + [anon_sym_EQ] = ACTIONS(7715), + [anon_sym_const] = ACTIONS(7715), + [anon_sym_constexpr] = ACTIONS(7717), + [anon_sym_volatile] = ACTIONS(7717), + [anon_sym_restrict] = ACTIONS(7717), + [anon_sym___restrict__] = ACTIONS(7717), + [anon_sym__Atomic] = ACTIONS(7717), + [anon_sym__Noreturn] = ACTIONS(7717), + [anon_sym_noreturn] = ACTIONS(7717), + [anon_sym__Nonnull] = ACTIONS(7717), + [anon_sym_mutable] = ACTIONS(7717), + [anon_sym_constinit] = ACTIONS(7717), + [anon_sym_consteval] = ACTIONS(7717), + [anon_sym_alignas] = ACTIONS(7717), + [anon_sym__Alignas] = ACTIONS(7717), + [anon_sym_QMARK] = ACTIONS(7717), + [anon_sym_STAR_EQ] = ACTIONS(7717), + [anon_sym_SLASH_EQ] = ACTIONS(7717), + [anon_sym_PERCENT_EQ] = ACTIONS(7717), + [anon_sym_PLUS_EQ] = ACTIONS(7717), + [anon_sym_DASH_EQ] = ACTIONS(7717), + [anon_sym_LT_LT_EQ] = ACTIONS(7717), + [anon_sym_GT_GT_EQ] = ACTIONS(7717), + [anon_sym_AMP_EQ] = ACTIONS(7717), + [anon_sym_CARET_EQ] = ACTIONS(7717), + [anon_sym_PIPE_EQ] = ACTIONS(7717), + [anon_sym_LT_EQ_GT] = ACTIONS(7717), + [anon_sym_or] = ACTIONS(7717), + [anon_sym_and] = ACTIONS(7717), + [anon_sym_bitor] = ACTIONS(7717), + [anon_sym_xor] = ACTIONS(7717), + [anon_sym_bitand] = ACTIONS(7717), + [anon_sym_not_eq] = ACTIONS(7717), + [anon_sym_DASH_DASH] = ACTIONS(7717), + [anon_sym_PLUS_PLUS] = ACTIONS(7717), + [anon_sym_DOT] = ACTIONS(7715), + [anon_sym_DOT_STAR] = ACTIONS(7717), [anon_sym_DASH_GT] = ACTIONS(7715), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7715), - [anon_sym_override] = ACTIONS(7715), - [anon_sym_requires] = ACTIONS(7715), - [anon_sym_COLON_RBRACK] = ACTIONS(7715), + [anon_sym_final] = ACTIONS(7717), + [anon_sym_override] = ACTIONS(7717), + [anon_sym_requires] = ACTIONS(7717), + [anon_sym_DASH_GT_STAR] = ACTIONS(7717), }, - [STATE(3565)] = { - [sym_string_literal] = STATE(3576), - [sym_raw_string_literal] = STATE(3576), - [aux_sym_concatenated_string_repeat1] = STATE(3576), - [sym_identifier] = ACTIONS(9254), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8454), - [anon_sym_COMMA] = ACTIONS(8454), - [anon_sym_LPAREN2] = ACTIONS(8454), - [anon_sym_DASH] = ACTIONS(8456), - [anon_sym_PLUS] = ACTIONS(8456), - [anon_sym_STAR] = ACTIONS(8456), - [anon_sym_SLASH] = ACTIONS(8456), - [anon_sym_PERCENT] = ACTIONS(8456), - [anon_sym_PIPE_PIPE] = ACTIONS(8454), - [anon_sym_AMP_AMP] = ACTIONS(8454), - [anon_sym_PIPE] = ACTIONS(8456), - [anon_sym_CARET] = ACTIONS(8456), - [anon_sym_AMP] = ACTIONS(8456), - [anon_sym_EQ_EQ] = ACTIONS(8454), - [anon_sym_BANG_EQ] = ACTIONS(8454), - [anon_sym_GT] = ACTIONS(8456), - [anon_sym_GT_EQ] = ACTIONS(8454), - [anon_sym_LT_EQ] = ACTIONS(8456), - [anon_sym_LT] = ACTIONS(8456), - [anon_sym_LT_LT] = ACTIONS(8456), - [anon_sym_GT_GT] = ACTIONS(8456), - [anon_sym_SEMI] = ACTIONS(8454), - [anon_sym___attribute__] = ACTIONS(8456), - [anon_sym___attribute] = ACTIONS(8456), - [anon_sym_LBRACK] = ACTIONS(8454), - [anon_sym_EQ] = ACTIONS(8456), - [anon_sym_QMARK] = ACTIONS(8454), - [anon_sym_STAR_EQ] = ACTIONS(8454), - [anon_sym_SLASH_EQ] = ACTIONS(8454), - [anon_sym_PERCENT_EQ] = ACTIONS(8454), - [anon_sym_PLUS_EQ] = ACTIONS(8454), - [anon_sym_DASH_EQ] = ACTIONS(8454), - [anon_sym_LT_LT_EQ] = ACTIONS(8454), - [anon_sym_GT_GT_EQ] = ACTIONS(8454), - [anon_sym_AMP_EQ] = ACTIONS(8454), - [anon_sym_CARET_EQ] = ACTIONS(8454), - [anon_sym_PIPE_EQ] = ACTIONS(8454), - [anon_sym_and_eq] = ACTIONS(8456), - [anon_sym_or_eq] = ACTIONS(8456), - [anon_sym_xor_eq] = ACTIONS(8456), - [anon_sym_LT_EQ_GT] = ACTIONS(8454), - [anon_sym_or] = ACTIONS(8456), - [anon_sym_and] = ACTIONS(8456), - [anon_sym_bitor] = ACTIONS(8456), - [anon_sym_xor] = ACTIONS(8456), - [anon_sym_bitand] = ACTIONS(8456), - [anon_sym_not_eq] = ACTIONS(8456), - [anon_sym_DASH_DASH] = ACTIONS(8454), - [anon_sym_PLUS_PLUS] = ACTIONS(8454), - [anon_sym_DOT] = ACTIONS(8456), - [anon_sym_DOT_STAR] = ACTIONS(8454), - [anon_sym_DASH_GT] = ACTIONS(8454), - [anon_sym_L_DQUOTE] = ACTIONS(6876), - [anon_sym_u_DQUOTE] = ACTIONS(6876), - [anon_sym_U_DQUOTE] = ACTIONS(6876), - [anon_sym_u8_DQUOTE] = ACTIONS(6876), - [anon_sym_DQUOTE] = ACTIONS(6876), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6878), - [anon_sym_LR_DQUOTE] = ACTIONS(6878), - [anon_sym_uR_DQUOTE] = ACTIONS(6878), - [anon_sym_UR_DQUOTE] = ACTIONS(6878), - [anon_sym_u8R_DQUOTE] = ACTIONS(6878), - [sym_literal_suffix] = ACTIONS(8456), + [STATE(3540)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7562), + [anon_sym_COMMA] = ACTIONS(7562), + [anon_sym_RPAREN] = ACTIONS(7562), + [anon_sym_LPAREN2] = ACTIONS(7562), + [anon_sym_DASH] = ACTIONS(7560), + [anon_sym_PLUS] = ACTIONS(7560), + [anon_sym_STAR] = ACTIONS(7562), + [anon_sym_SLASH] = ACTIONS(7560), + [anon_sym_PERCENT] = ACTIONS(7562), + [anon_sym_PIPE_PIPE] = ACTIONS(7562), + [anon_sym_AMP_AMP] = ACTIONS(7562), + [anon_sym_PIPE] = ACTIONS(7560), + [anon_sym_CARET] = ACTIONS(7562), + [anon_sym_AMP] = ACTIONS(7560), + [anon_sym_EQ_EQ] = ACTIONS(7562), + [anon_sym_BANG_EQ] = ACTIONS(7562), + [anon_sym_GT] = ACTIONS(7560), + [anon_sym_GT_EQ] = ACTIONS(7562), + [anon_sym_LT_EQ] = ACTIONS(7560), + [anon_sym_LT] = ACTIONS(7560), + [anon_sym_LT_LT] = ACTIONS(7562), + [anon_sym_GT_GT] = ACTIONS(7562), + [anon_sym_SEMI] = ACTIONS(7562), + [anon_sym___extension__] = ACTIONS(7562), + [anon_sym___attribute__] = ACTIONS(7562), + [anon_sym___attribute] = ACTIONS(7560), + [anon_sym_COLON] = ACTIONS(7560), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7562), + [anon_sym_LBRACE] = ACTIONS(7562), + [anon_sym_RBRACE] = ACTIONS(7562), + [anon_sym_signed] = ACTIONS(9148), + [anon_sym_unsigned] = ACTIONS(9148), + [anon_sym_long] = ACTIONS(9148), + [anon_sym_short] = ACTIONS(9148), + [anon_sym_LBRACK] = ACTIONS(7562), + [anon_sym_const] = ACTIONS(7560), + [anon_sym_constexpr] = ACTIONS(7562), + [anon_sym_volatile] = ACTIONS(7562), + [anon_sym_restrict] = ACTIONS(7562), + [anon_sym___restrict__] = ACTIONS(7562), + [anon_sym__Atomic] = ACTIONS(7562), + [anon_sym__Noreturn] = ACTIONS(7562), + [anon_sym_noreturn] = ACTIONS(7562), + [anon_sym__Nonnull] = ACTIONS(7562), + [anon_sym_mutable] = ACTIONS(7562), + [anon_sym_constinit] = ACTIONS(7562), + [anon_sym_consteval] = ACTIONS(7562), + [anon_sym_alignas] = ACTIONS(7562), + [anon_sym__Alignas] = ACTIONS(7562), + [anon_sym_QMARK] = ACTIONS(7562), + [anon_sym_LT_EQ_GT] = ACTIONS(7562), + [anon_sym_or] = ACTIONS(7562), + [anon_sym_and] = ACTIONS(7562), + [anon_sym_bitor] = ACTIONS(7562), + [anon_sym_xor] = ACTIONS(7562), + [anon_sym_bitand] = ACTIONS(7562), + [anon_sym_not_eq] = ACTIONS(7562), + [anon_sym_DASH_DASH] = ACTIONS(7562), + [anon_sym_PLUS_PLUS] = ACTIONS(7562), + [anon_sym_DOT] = ACTIONS(7560), + [anon_sym_DOT_STAR] = ACTIONS(7562), + [anon_sym_DASH_GT] = ACTIONS(7562), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7562), + [anon_sym_override] = ACTIONS(7562), + [anon_sym_requires] = ACTIONS(7562), + [anon_sym_COLON_RBRACK] = ACTIONS(7562), }, - [STATE(3566)] = { - [sym_argument_list] = STATE(3849), - [sym_initializer_list] = STATE(3849), - [sym_new_declarator] = STATE(3645), - [sym_identifier] = ACTIONS(9256), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9258), - [anon_sym_COMMA] = ACTIONS(9258), - [anon_sym_RPAREN] = ACTIONS(9258), - [aux_sym_preproc_if_token2] = ACTIONS(9258), - [aux_sym_preproc_else_token1] = ACTIONS(9258), - [aux_sym_preproc_elif_token1] = ACTIONS(9256), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9258), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9258), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9256), - [anon_sym_PLUS] = ACTIONS(9256), - [anon_sym_STAR] = ACTIONS(9256), - [anon_sym_SLASH] = ACTIONS(9256), - [anon_sym_PERCENT] = ACTIONS(9256), - [anon_sym_PIPE_PIPE] = ACTIONS(9258), - [anon_sym_AMP_AMP] = ACTIONS(9258), - [anon_sym_PIPE] = ACTIONS(9256), - [anon_sym_CARET] = ACTIONS(9256), - [anon_sym_AMP] = ACTIONS(9256), - [anon_sym_EQ_EQ] = ACTIONS(9258), - [anon_sym_BANG_EQ] = ACTIONS(9258), - [anon_sym_GT] = ACTIONS(9256), - [anon_sym_GT_EQ] = ACTIONS(9258), - [anon_sym_LT_EQ] = ACTIONS(9256), - [anon_sym_LT] = ACTIONS(9256), - [anon_sym_LT_LT] = ACTIONS(9256), - [anon_sym_GT_GT] = ACTIONS(9256), - [anon_sym_SEMI] = ACTIONS(9258), - [anon_sym___attribute__] = ACTIONS(9256), - [anon_sym___attribute] = ACTIONS(9256), - [anon_sym_COLON] = ACTIONS(9256), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9258), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(9258), - [anon_sym_LBRACK] = ACTIONS(9232), - [anon_sym_EQ] = ACTIONS(9256), - [anon_sym_QMARK] = ACTIONS(9258), - [anon_sym_STAR_EQ] = ACTIONS(9258), - [anon_sym_SLASH_EQ] = ACTIONS(9258), - [anon_sym_PERCENT_EQ] = ACTIONS(9258), - [anon_sym_PLUS_EQ] = ACTIONS(9258), - [anon_sym_DASH_EQ] = ACTIONS(9258), - [anon_sym_LT_LT_EQ] = ACTIONS(9258), - [anon_sym_GT_GT_EQ] = ACTIONS(9258), - [anon_sym_AMP_EQ] = ACTIONS(9258), - [anon_sym_CARET_EQ] = ACTIONS(9258), - [anon_sym_PIPE_EQ] = ACTIONS(9258), - [anon_sym_and_eq] = ACTIONS(9256), - [anon_sym_or_eq] = ACTIONS(9256), - [anon_sym_xor_eq] = ACTIONS(9256), - [anon_sym_LT_EQ_GT] = ACTIONS(9258), - [anon_sym_or] = ACTIONS(9256), - [anon_sym_and] = ACTIONS(9256), - [anon_sym_bitor] = ACTIONS(9256), - [anon_sym_xor] = ACTIONS(9256), - [anon_sym_bitand] = ACTIONS(9256), - [anon_sym_not_eq] = ACTIONS(9256), - [anon_sym_DASH_DASH] = ACTIONS(9258), - [anon_sym_PLUS_PLUS] = ACTIONS(9258), - [anon_sym_DOT] = ACTIONS(9256), - [anon_sym_DOT_STAR] = ACTIONS(9258), - [anon_sym_DASH_GT] = ACTIONS(9258), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9258), + [STATE(3541)] = { + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym_ref_qualifier] = STATE(3672), + [sym__function_exception_specification] = STATE(4110), + [sym__function_attributes_end] = STATE(5987), + [sym__function_postfix] = STATE(5370), + [sym_trailing_return_type] = STATE(5793), + [sym_noexcept] = STATE(4110), + [sym_throw_specifier] = STATE(4110), + [sym_requires_clause] = STATE(5370), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7874), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7874), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(9163), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7874), + [anon_sym_AMP] = ACTIONS(9166), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7874), + [anon_sym_GT_GT] = ACTIONS(7874), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7874), + [anon_sym_and] = ACTIONS(7874), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7874), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(9221), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7272), + [anon_sym_override] = ACTIONS(7272), + [anon_sym_noexcept] = ACTIONS(7235), + [anon_sym_throw] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7274), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), }, - [STATE(3567)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON] = ACTIONS(9260), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [STATE(3542)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(6653), + [anon_sym_COMMA] = ACTIONS(6653), + [anon_sym_RPAREN] = ACTIONS(6653), + [anon_sym_LPAREN2] = ACTIONS(6653), + [anon_sym_DASH] = ACTIONS(6660), + [anon_sym_PLUS] = ACTIONS(6660), + [anon_sym_STAR] = ACTIONS(6660), + [anon_sym_SLASH] = ACTIONS(6660), + [anon_sym_PERCENT] = ACTIONS(6660), + [anon_sym_PIPE_PIPE] = ACTIONS(6653), + [anon_sym_AMP_AMP] = ACTIONS(6653), + [anon_sym_PIPE] = ACTIONS(6660), + [anon_sym_CARET] = ACTIONS(6660), + [anon_sym_AMP] = ACTIONS(6660), + [anon_sym_EQ_EQ] = ACTIONS(6653), + [anon_sym_BANG_EQ] = ACTIONS(6653), + [anon_sym_GT] = ACTIONS(6660), + [anon_sym_GT_EQ] = ACTIONS(6653), + [anon_sym_LT_EQ] = ACTIONS(6660), + [anon_sym_LT] = ACTIONS(6660), + [anon_sym_LT_LT] = ACTIONS(6660), + [anon_sym_GT_GT] = ACTIONS(6660), + [anon_sym___extension__] = ACTIONS(6656), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_EQ] = ACTIONS(6660), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6656), + [anon_sym_volatile] = ACTIONS(6656), + [anon_sym_restrict] = ACTIONS(6656), + [anon_sym___restrict__] = ACTIONS(6656), + [anon_sym__Atomic] = ACTIONS(6656), + [anon_sym__Noreturn] = ACTIONS(6656), + [anon_sym_noreturn] = ACTIONS(6656), + [anon_sym__Nonnull] = ACTIONS(6656), + [anon_sym_mutable] = ACTIONS(6656), + [anon_sym_constinit] = ACTIONS(6656), + [anon_sym_consteval] = ACTIONS(6656), + [anon_sym_alignas] = ACTIONS(6656), + [anon_sym__Alignas] = ACTIONS(6656), + [anon_sym_QMARK] = ACTIONS(6653), + [anon_sym_STAR_EQ] = ACTIONS(6653), + [anon_sym_SLASH_EQ] = ACTIONS(6653), + [anon_sym_PERCENT_EQ] = ACTIONS(6653), + [anon_sym_PLUS_EQ] = ACTIONS(6653), + [anon_sym_DASH_EQ] = ACTIONS(6653), + [anon_sym_LT_LT_EQ] = ACTIONS(6653), + [anon_sym_GT_GT_EQ] = ACTIONS(6653), + [anon_sym_AMP_EQ] = ACTIONS(6653), + [anon_sym_CARET_EQ] = ACTIONS(6653), + [anon_sym_PIPE_EQ] = ACTIONS(6653), + [anon_sym_LT_EQ_GT] = ACTIONS(6653), + [anon_sym_or] = ACTIONS(6653), + [anon_sym_and] = ACTIONS(6653), + [anon_sym_bitor] = ACTIONS(6653), + [anon_sym_xor] = ACTIONS(6653), + [anon_sym_bitand] = ACTIONS(6653), + [anon_sym_not_eq] = ACTIONS(6653), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_DOT] = ACTIONS(6660), + [anon_sym_DOT_STAR] = ACTIONS(6653), + [anon_sym_DASH_GT] = ACTIONS(6660), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6656), + [anon_sym_decltype] = ACTIONS(6656), + [anon_sym_DASH_GT_STAR] = ACTIONS(6653), }, - [STATE(3568)] = { - [sym_template_argument_list] = STATE(2938), - [sym_identifier] = ACTIONS(6565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), - [anon_sym_COMMA] = ACTIONS(6572), - [aux_sym_preproc_if_token2] = ACTIONS(6572), - [aux_sym_preproc_else_token1] = ACTIONS(6572), - [aux_sym_preproc_elif_token1] = ACTIONS(6565), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6572), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6572), - [anon_sym_LPAREN2] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6565), - [anon_sym_PLUS] = ACTIONS(6565), - [anon_sym_STAR] = ACTIONS(6572), - [anon_sym_SLASH] = ACTIONS(6565), - [anon_sym_PERCENT] = ACTIONS(6572), - [anon_sym_PIPE_PIPE] = ACTIONS(6572), - [anon_sym_AMP_AMP] = ACTIONS(6572), - [anon_sym_PIPE] = ACTIONS(6565), - [anon_sym_CARET] = ACTIONS(6572), - [anon_sym_AMP] = ACTIONS(6565), - [anon_sym_EQ_EQ] = ACTIONS(6572), - [anon_sym_BANG_EQ] = ACTIONS(6572), - [anon_sym_GT] = ACTIONS(6565), - [anon_sym_GT_EQ] = ACTIONS(6572), - [anon_sym_LT_EQ] = ACTIONS(6565), - [anon_sym_LT] = ACTIONS(9262), - [anon_sym_LT_LT] = ACTIONS(6572), - [anon_sym_GT_GT] = ACTIONS(6572), - [anon_sym___extension__] = ACTIONS(6565), - [anon_sym___attribute__] = ACTIONS(6565), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6572), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6565), - [anon_sym_volatile] = ACTIONS(6565), - [anon_sym_restrict] = ACTIONS(6565), - [anon_sym___restrict__] = ACTIONS(6565), - [anon_sym__Atomic] = ACTIONS(6565), - [anon_sym__Noreturn] = ACTIONS(6565), - [anon_sym_noreturn] = ACTIONS(6565), - [anon_sym__Nonnull] = ACTIONS(6565), - [anon_sym_mutable] = ACTIONS(6565), - [anon_sym_constinit] = ACTIONS(6565), - [anon_sym_consteval] = ACTIONS(6565), - [anon_sym_alignas] = ACTIONS(6565), - [anon_sym__Alignas] = ACTIONS(6565), - [anon_sym_QMARK] = ACTIONS(6572), - [anon_sym_LT_EQ_GT] = ACTIONS(6572), - [anon_sym_or] = ACTIONS(6565), - [anon_sym_and] = ACTIONS(6565), - [anon_sym_bitor] = ACTIONS(6565), - [anon_sym_xor] = ACTIONS(6565), - [anon_sym_bitand] = ACTIONS(6565), - [anon_sym_not_eq] = ACTIONS(6565), - [anon_sym_DASH_DASH] = ACTIONS(6572), - [anon_sym_PLUS_PLUS] = ACTIONS(6572), - [anon_sym_DOT] = ACTIONS(6565), - [anon_sym_DOT_STAR] = ACTIONS(6572), - [anon_sym_DASH_GT] = ACTIONS(6572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6565), - [anon_sym_decltype] = ACTIONS(6565), - [anon_sym_final] = ACTIONS(6565), - [anon_sym_override] = ACTIONS(6565), - [anon_sym_requires] = ACTIONS(6565), + [STATE(3543)] = { + [sym__abstract_declarator] = STATE(6323), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(8453), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(8455), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(8457), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym_SEMI] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(7341), + [anon_sym___attribute] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), + }, + [STATE(3544)] = { + [sym__abstract_declarator] = STATE(6302), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2077), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(6841), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6843), + [anon_sym_RBRACE] = ACTIONS(6843), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6843), + }, + [STATE(3545)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7612), + [anon_sym_COMMA] = ACTIONS(7612), + [anon_sym_RPAREN] = ACTIONS(7612), + [anon_sym_LPAREN2] = ACTIONS(7612), + [anon_sym_DASH] = ACTIONS(7610), + [anon_sym_PLUS] = ACTIONS(7610), + [anon_sym_STAR] = ACTIONS(7610), + [anon_sym_SLASH] = ACTIONS(7610), + [anon_sym_PERCENT] = ACTIONS(7610), + [anon_sym_PIPE_PIPE] = ACTIONS(7612), + [anon_sym_AMP_AMP] = ACTIONS(7612), + [anon_sym_PIPE] = ACTIONS(7610), + [anon_sym_CARET] = ACTIONS(7610), + [anon_sym_AMP] = ACTIONS(7610), + [anon_sym_EQ_EQ] = ACTIONS(7612), + [anon_sym_BANG_EQ] = ACTIONS(7612), + [anon_sym_GT] = ACTIONS(7610), + [anon_sym_GT_EQ] = ACTIONS(7612), + [anon_sym_LT_EQ] = ACTIONS(7610), + [anon_sym_LT] = ACTIONS(7610), + [anon_sym_LT_LT] = ACTIONS(7610), + [anon_sym_GT_GT] = ACTIONS(7610), + [anon_sym___extension__] = ACTIONS(7612), + [anon_sym_LBRACE] = ACTIONS(7612), + [anon_sym_LBRACK] = ACTIONS(7612), + [anon_sym_EQ] = ACTIONS(7610), + [anon_sym_const] = ACTIONS(7610), + [anon_sym_constexpr] = ACTIONS(7612), + [anon_sym_volatile] = ACTIONS(7612), + [anon_sym_restrict] = ACTIONS(7612), + [anon_sym___restrict__] = ACTIONS(7612), + [anon_sym__Atomic] = ACTIONS(7612), + [anon_sym__Noreturn] = ACTIONS(7612), + [anon_sym_noreturn] = ACTIONS(7612), + [anon_sym__Nonnull] = ACTIONS(7612), + [anon_sym_mutable] = ACTIONS(7612), + [anon_sym_constinit] = ACTIONS(7612), + [anon_sym_consteval] = ACTIONS(7612), + [anon_sym_alignas] = ACTIONS(7612), + [anon_sym__Alignas] = ACTIONS(7612), + [anon_sym_QMARK] = ACTIONS(7612), + [anon_sym_STAR_EQ] = ACTIONS(7612), + [anon_sym_SLASH_EQ] = ACTIONS(7612), + [anon_sym_PERCENT_EQ] = ACTIONS(7612), + [anon_sym_PLUS_EQ] = ACTIONS(7612), + [anon_sym_DASH_EQ] = ACTIONS(7612), + [anon_sym_LT_LT_EQ] = ACTIONS(7612), + [anon_sym_GT_GT_EQ] = ACTIONS(7612), + [anon_sym_AMP_EQ] = ACTIONS(7612), + [anon_sym_CARET_EQ] = ACTIONS(7612), + [anon_sym_PIPE_EQ] = ACTIONS(7612), + [anon_sym_LT_EQ_GT] = ACTIONS(7612), + [anon_sym_or] = ACTIONS(7612), + [anon_sym_and] = ACTIONS(7612), + [anon_sym_bitor] = ACTIONS(7612), + [anon_sym_xor] = ACTIONS(7612), + [anon_sym_bitand] = ACTIONS(7612), + [anon_sym_not_eq] = ACTIONS(7612), + [anon_sym_DASH_DASH] = ACTIONS(7612), + [anon_sym_PLUS_PLUS] = ACTIONS(7612), + [anon_sym_DOT] = ACTIONS(7610), + [anon_sym_DOT_STAR] = ACTIONS(7612), + [anon_sym_DASH_GT] = ACTIONS(7610), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7612), + [anon_sym_override] = ACTIONS(7612), + [anon_sym_requires] = ACTIONS(7612), + [anon_sym_DASH_GT_STAR] = ACTIONS(7612), + }, + [STATE(3546)] = { + [sym__abstract_declarator] = STATE(6350), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7347), + [anon_sym_PLUS] = ACTIONS(7347), + [anon_sym_STAR] = ACTIONS(8453), + [anon_sym_SLASH] = ACTIONS(7347), + [anon_sym_PERCENT] = ACTIONS(7345), + [anon_sym_PIPE_PIPE] = ACTIONS(7345), + [anon_sym_AMP_AMP] = ACTIONS(8455), + [anon_sym_PIPE] = ACTIONS(7347), + [anon_sym_CARET] = ACTIONS(7345), + [anon_sym_AMP] = ACTIONS(8457), + [anon_sym_EQ_EQ] = ACTIONS(7345), + [anon_sym_BANG_EQ] = ACTIONS(7345), + [anon_sym_GT] = ACTIONS(7347), + [anon_sym_GT_EQ] = ACTIONS(7345), + [anon_sym_LT_EQ] = ACTIONS(7347), + [anon_sym_LT] = ACTIONS(7347), + [anon_sym_LT_LT] = ACTIONS(7345), + [anon_sym_GT_GT] = ACTIONS(7345), + [anon_sym_SEMI] = ACTIONS(7345), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(7345), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7345), + [anon_sym_LT_EQ_GT] = ACTIONS(7345), + [anon_sym_or] = ACTIONS(7345), + [anon_sym_and] = ACTIONS(7345), + [anon_sym_bitor] = ACTIONS(7345), + [anon_sym_xor] = ACTIONS(7345), + [anon_sym_bitand] = ACTIONS(7345), + [anon_sym_not_eq] = ACTIONS(7345), + [anon_sym_DASH_DASH] = ACTIONS(7345), + [anon_sym_PLUS_PLUS] = ACTIONS(7345), + [anon_sym_DOT] = ACTIONS(7347), + [anon_sym_DOT_STAR] = ACTIONS(7345), + [anon_sym_DASH_GT] = ACTIONS(7345), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7345), + [anon_sym_override] = ACTIONS(7345), + [anon_sym_requires] = ACTIONS(7345), + }, + [STATE(3547)] = { + [sym__abstract_declarator] = STATE(6337), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2077), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_RPAREN] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(8424), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(8426), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(8428), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym_SEMI] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym_COLON] = ACTIONS(7343), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7341), + [anon_sym_RBRACE] = ACTIONS(7341), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7341), }, - [STATE(3569)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym_ref_qualifier] = STATE(3658), - [sym__function_exception_specification] = STATE(4047), - [sym__function_attributes_end] = STATE(5950), - [sym__function_postfix] = STATE(5460), - [sym_trailing_return_type] = STATE(6121), - [sym_noexcept] = STATE(4047), - [sym_throw_specifier] = STATE(4047), - [sym_requires_clause] = STATE(5460), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7791), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7791), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(9196), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7791), - [anon_sym_AMP] = ACTIONS(9199), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7791), - [anon_sym_GT_GT] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7178), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(9202), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7283), - [anon_sym_override] = ACTIONS(7283), - [anon_sym_noexcept] = ACTIONS(7276), - [anon_sym_throw] = ACTIONS(7278), - [anon_sym_requires] = ACTIONS(7285), + [STATE(3548)] = { + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym_ref_qualifier] = STATE(3619), + [sym__function_exception_specification] = STATE(4068), + [sym__function_attributes_end] = STATE(5977), + [sym__function_postfix] = STATE(5370), + [sym_trailing_return_type] = STATE(5770), + [sym_noexcept] = STATE(4068), + [sym_throw_specifier] = STATE(4068), + [sym_requires_clause] = STATE(5370), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7874), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7874), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(9163), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7874), + [anon_sym_AMP] = ACTIONS(9166), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7874), + [anon_sym_GT_GT] = ACTIONS(7874), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7874), + [anon_sym_and] = ACTIONS(7874), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7874), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(9221), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9224), + [anon_sym_override] = ACTIONS(9224), + [anon_sym_noexcept] = ACTIONS(7235), + [anon_sym_throw] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(9227), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), }, - [STATE(3570)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7637), - [anon_sym_COMMA] = ACTIONS(7637), - [anon_sym_RPAREN] = ACTIONS(7637), - [anon_sym_LPAREN2] = ACTIONS(7637), - [anon_sym_DASH] = ACTIONS(7635), - [anon_sym_PLUS] = ACTIONS(7635), - [anon_sym_STAR] = ACTIONS(7635), - [anon_sym_SLASH] = ACTIONS(7635), - [anon_sym_PERCENT] = ACTIONS(7635), - [anon_sym_PIPE_PIPE] = ACTIONS(7637), - [anon_sym_AMP_AMP] = ACTIONS(7637), - [anon_sym_PIPE] = ACTIONS(7635), - [anon_sym_CARET] = ACTIONS(7635), - [anon_sym_AMP] = ACTIONS(7635), - [anon_sym_EQ_EQ] = ACTIONS(7637), - [anon_sym_BANG_EQ] = ACTIONS(7637), - [anon_sym_GT] = ACTIONS(7635), - [anon_sym_GT_EQ] = ACTIONS(7637), - [anon_sym_LT_EQ] = ACTIONS(7635), - [anon_sym_LT] = ACTIONS(7635), - [anon_sym_LT_LT] = ACTIONS(7635), - [anon_sym_GT_GT] = ACTIONS(7635), - [anon_sym___extension__] = ACTIONS(7637), - [anon_sym_LBRACE] = ACTIONS(7637), - [anon_sym_LBRACK] = ACTIONS(7637), - [anon_sym_EQ] = ACTIONS(7635), - [anon_sym_const] = ACTIONS(7635), - [anon_sym_constexpr] = ACTIONS(7637), - [anon_sym_volatile] = ACTIONS(7637), - [anon_sym_restrict] = ACTIONS(7637), - [anon_sym___restrict__] = ACTIONS(7637), - [anon_sym__Atomic] = ACTIONS(7637), - [anon_sym__Noreturn] = ACTIONS(7637), - [anon_sym_noreturn] = ACTIONS(7637), - [anon_sym__Nonnull] = ACTIONS(7637), - [anon_sym_mutable] = ACTIONS(7637), - [anon_sym_constinit] = ACTIONS(7637), - [anon_sym_consteval] = ACTIONS(7637), - [anon_sym_alignas] = ACTIONS(7637), - [anon_sym__Alignas] = ACTIONS(7637), - [anon_sym_QMARK] = ACTIONS(7637), - [anon_sym_STAR_EQ] = ACTIONS(7637), - [anon_sym_SLASH_EQ] = ACTIONS(7637), - [anon_sym_PERCENT_EQ] = ACTIONS(7637), - [anon_sym_PLUS_EQ] = ACTIONS(7637), - [anon_sym_DASH_EQ] = ACTIONS(7637), - [anon_sym_LT_LT_EQ] = ACTIONS(7637), - [anon_sym_GT_GT_EQ] = ACTIONS(7637), - [anon_sym_AMP_EQ] = ACTIONS(7637), - [anon_sym_CARET_EQ] = ACTIONS(7637), - [anon_sym_PIPE_EQ] = ACTIONS(7637), - [anon_sym_LT_EQ_GT] = ACTIONS(7637), - [anon_sym_or] = ACTIONS(7637), - [anon_sym_and] = ACTIONS(7637), - [anon_sym_bitor] = ACTIONS(7637), - [anon_sym_xor] = ACTIONS(7637), - [anon_sym_bitand] = ACTIONS(7637), - [anon_sym_not_eq] = ACTIONS(7637), - [anon_sym_DASH_DASH] = ACTIONS(7637), - [anon_sym_PLUS_PLUS] = ACTIONS(7637), - [anon_sym_DOT] = ACTIONS(7635), - [anon_sym_DOT_STAR] = ACTIONS(7637), - [anon_sym_DASH_GT] = ACTIONS(7635), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7637), - [anon_sym_override] = ACTIONS(7637), - [anon_sym_requires] = ACTIONS(7637), - [anon_sym_DASH_GT_STAR] = ACTIONS(7637), + [STATE(3549)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7706), + [anon_sym_COMMA] = ACTIONS(7706), + [anon_sym_RPAREN] = ACTIONS(7706), + [anon_sym_LPAREN2] = ACTIONS(7706), + [anon_sym_DASH] = ACTIONS(7704), + [anon_sym_PLUS] = ACTIONS(7704), + [anon_sym_STAR] = ACTIONS(7704), + [anon_sym_SLASH] = ACTIONS(7704), + [anon_sym_PERCENT] = ACTIONS(7704), + [anon_sym_PIPE_PIPE] = ACTIONS(7706), + [anon_sym_AMP_AMP] = ACTIONS(7706), + [anon_sym_PIPE] = ACTIONS(7704), + [anon_sym_CARET] = ACTIONS(7704), + [anon_sym_AMP] = ACTIONS(7704), + [anon_sym_EQ_EQ] = ACTIONS(7706), + [anon_sym_BANG_EQ] = ACTIONS(7706), + [anon_sym_GT] = ACTIONS(7704), + [anon_sym_GT_EQ] = ACTIONS(7706), + [anon_sym_LT_EQ] = ACTIONS(7704), + [anon_sym_LT] = ACTIONS(7704), + [anon_sym_LT_LT] = ACTIONS(7704), + [anon_sym_GT_GT] = ACTIONS(7704), + [anon_sym___extension__] = ACTIONS(7706), + [anon_sym_LBRACE] = ACTIONS(7706), + [anon_sym_LBRACK] = ACTIONS(7706), + [anon_sym_EQ] = ACTIONS(7704), + [anon_sym_const] = ACTIONS(7704), + [anon_sym_constexpr] = ACTIONS(7706), + [anon_sym_volatile] = ACTIONS(7706), + [anon_sym_restrict] = ACTIONS(7706), + [anon_sym___restrict__] = ACTIONS(7706), + [anon_sym__Atomic] = ACTIONS(7706), + [anon_sym__Noreturn] = ACTIONS(7706), + [anon_sym_noreturn] = ACTIONS(7706), + [anon_sym__Nonnull] = ACTIONS(7706), + [anon_sym_mutable] = ACTIONS(7706), + [anon_sym_constinit] = ACTIONS(7706), + [anon_sym_consteval] = ACTIONS(7706), + [anon_sym_alignas] = ACTIONS(7706), + [anon_sym__Alignas] = ACTIONS(7706), + [anon_sym_QMARK] = ACTIONS(7706), + [anon_sym_STAR_EQ] = ACTIONS(7706), + [anon_sym_SLASH_EQ] = ACTIONS(7706), + [anon_sym_PERCENT_EQ] = ACTIONS(7706), + [anon_sym_PLUS_EQ] = ACTIONS(7706), + [anon_sym_DASH_EQ] = ACTIONS(7706), + [anon_sym_LT_LT_EQ] = ACTIONS(7706), + [anon_sym_GT_GT_EQ] = ACTIONS(7706), + [anon_sym_AMP_EQ] = ACTIONS(7706), + [anon_sym_CARET_EQ] = ACTIONS(7706), + [anon_sym_PIPE_EQ] = ACTIONS(7706), + [anon_sym_LT_EQ_GT] = ACTIONS(7706), + [anon_sym_or] = ACTIONS(7706), + [anon_sym_and] = ACTIONS(7706), + [anon_sym_bitor] = ACTIONS(7706), + [anon_sym_xor] = ACTIONS(7706), + [anon_sym_bitand] = ACTIONS(7706), + [anon_sym_not_eq] = ACTIONS(7706), + [anon_sym_DASH_DASH] = ACTIONS(7706), + [anon_sym_PLUS_PLUS] = ACTIONS(7706), + [anon_sym_DOT] = ACTIONS(7704), + [anon_sym_DOT_STAR] = ACTIONS(7706), + [anon_sym_DASH_GT] = ACTIONS(7704), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7706), + [anon_sym_override] = ACTIONS(7706), + [anon_sym_requires] = ACTIONS(7706), + [anon_sym_DASH_GT_STAR] = ACTIONS(7706), }, - [STATE(3571)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7641), - [anon_sym_COMMA] = ACTIONS(7641), - [anon_sym_RPAREN] = ACTIONS(7641), - [anon_sym_LPAREN2] = ACTIONS(7641), - [anon_sym_DASH] = ACTIONS(7639), - [anon_sym_PLUS] = ACTIONS(7639), - [anon_sym_STAR] = ACTIONS(7639), - [anon_sym_SLASH] = ACTIONS(7639), - [anon_sym_PERCENT] = ACTIONS(7639), - [anon_sym_PIPE_PIPE] = ACTIONS(7641), - [anon_sym_AMP_AMP] = ACTIONS(7641), - [anon_sym_PIPE] = ACTIONS(7639), - [anon_sym_CARET] = ACTIONS(7639), - [anon_sym_AMP] = ACTIONS(7639), - [anon_sym_EQ_EQ] = ACTIONS(7641), - [anon_sym_BANG_EQ] = ACTIONS(7641), - [anon_sym_GT] = ACTIONS(7639), - [anon_sym_GT_EQ] = ACTIONS(7641), - [anon_sym_LT_EQ] = ACTIONS(7639), - [anon_sym_LT] = ACTIONS(7639), - [anon_sym_LT_LT] = ACTIONS(7639), - [anon_sym_GT_GT] = ACTIONS(7639), - [anon_sym___extension__] = ACTIONS(7641), - [anon_sym_LBRACE] = ACTIONS(7641), - [anon_sym_LBRACK] = ACTIONS(7641), - [anon_sym_EQ] = ACTIONS(7639), - [anon_sym_const] = ACTIONS(7639), - [anon_sym_constexpr] = ACTIONS(7641), - [anon_sym_volatile] = ACTIONS(7641), - [anon_sym_restrict] = ACTIONS(7641), - [anon_sym___restrict__] = ACTIONS(7641), - [anon_sym__Atomic] = ACTIONS(7641), - [anon_sym__Noreturn] = ACTIONS(7641), - [anon_sym_noreturn] = ACTIONS(7641), - [anon_sym__Nonnull] = ACTIONS(7641), - [anon_sym_mutable] = ACTIONS(7641), - [anon_sym_constinit] = ACTIONS(7641), - [anon_sym_consteval] = ACTIONS(7641), - [anon_sym_alignas] = ACTIONS(7641), - [anon_sym__Alignas] = ACTIONS(7641), - [anon_sym_QMARK] = ACTIONS(7641), - [anon_sym_STAR_EQ] = ACTIONS(7641), - [anon_sym_SLASH_EQ] = ACTIONS(7641), - [anon_sym_PERCENT_EQ] = ACTIONS(7641), - [anon_sym_PLUS_EQ] = ACTIONS(7641), - [anon_sym_DASH_EQ] = ACTIONS(7641), - [anon_sym_LT_LT_EQ] = ACTIONS(7641), - [anon_sym_GT_GT_EQ] = ACTIONS(7641), - [anon_sym_AMP_EQ] = ACTIONS(7641), - [anon_sym_CARET_EQ] = ACTIONS(7641), - [anon_sym_PIPE_EQ] = ACTIONS(7641), - [anon_sym_LT_EQ_GT] = ACTIONS(7641), - [anon_sym_or] = ACTIONS(7641), - [anon_sym_and] = ACTIONS(7641), - [anon_sym_bitor] = ACTIONS(7641), - [anon_sym_xor] = ACTIONS(7641), - [anon_sym_bitand] = ACTIONS(7641), - [anon_sym_not_eq] = ACTIONS(7641), - [anon_sym_DASH_DASH] = ACTIONS(7641), - [anon_sym_PLUS_PLUS] = ACTIONS(7641), - [anon_sym_DOT] = ACTIONS(7639), - [anon_sym_DOT_STAR] = ACTIONS(7641), - [anon_sym_DASH_GT] = ACTIONS(7639), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7641), - [anon_sym_override] = ACTIONS(7641), - [anon_sym_requires] = ACTIONS(7641), - [anon_sym_DASH_GT_STAR] = ACTIONS(7641), + [STATE(3550)] = { + [sym_decltype_auto] = STATE(3581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(8833), + [anon_sym_decltype] = ACTIONS(6962), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), }, - [STATE(3572)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7657), - [anon_sym_COMMA] = ACTIONS(7657), - [anon_sym_RPAREN] = ACTIONS(7657), - [anon_sym_LPAREN2] = ACTIONS(7657), - [anon_sym_DASH] = ACTIONS(7655), - [anon_sym_PLUS] = ACTIONS(7655), - [anon_sym_STAR] = ACTIONS(7655), - [anon_sym_SLASH] = ACTIONS(7655), - [anon_sym_PERCENT] = ACTIONS(7655), - [anon_sym_PIPE_PIPE] = ACTIONS(7657), - [anon_sym_AMP_AMP] = ACTIONS(7657), - [anon_sym_PIPE] = ACTIONS(7655), - [anon_sym_CARET] = ACTIONS(7655), - [anon_sym_AMP] = ACTIONS(7655), - [anon_sym_EQ_EQ] = ACTIONS(7657), - [anon_sym_BANG_EQ] = ACTIONS(7657), - [anon_sym_GT] = ACTIONS(7655), - [anon_sym_GT_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ] = ACTIONS(7655), - [anon_sym_LT] = ACTIONS(7655), - [anon_sym_LT_LT] = ACTIONS(7655), - [anon_sym_GT_GT] = ACTIONS(7655), - [anon_sym___extension__] = ACTIONS(7657), - [anon_sym_LBRACE] = ACTIONS(7657), - [anon_sym_LBRACK] = ACTIONS(7657), - [anon_sym_EQ] = ACTIONS(7655), - [anon_sym_const] = ACTIONS(7655), - [anon_sym_constexpr] = ACTIONS(7657), - [anon_sym_volatile] = ACTIONS(7657), - [anon_sym_restrict] = ACTIONS(7657), - [anon_sym___restrict__] = ACTIONS(7657), - [anon_sym__Atomic] = ACTIONS(7657), - [anon_sym__Noreturn] = ACTIONS(7657), - [anon_sym_noreturn] = ACTIONS(7657), - [anon_sym__Nonnull] = ACTIONS(7657), - [anon_sym_mutable] = ACTIONS(7657), - [anon_sym_constinit] = ACTIONS(7657), - [anon_sym_consteval] = ACTIONS(7657), - [anon_sym_alignas] = ACTIONS(7657), - [anon_sym__Alignas] = ACTIONS(7657), - [anon_sym_QMARK] = ACTIONS(7657), - [anon_sym_STAR_EQ] = ACTIONS(7657), - [anon_sym_SLASH_EQ] = ACTIONS(7657), - [anon_sym_PERCENT_EQ] = ACTIONS(7657), - [anon_sym_PLUS_EQ] = ACTIONS(7657), - [anon_sym_DASH_EQ] = ACTIONS(7657), - [anon_sym_LT_LT_EQ] = ACTIONS(7657), - [anon_sym_GT_GT_EQ] = ACTIONS(7657), - [anon_sym_AMP_EQ] = ACTIONS(7657), - [anon_sym_CARET_EQ] = ACTIONS(7657), - [anon_sym_PIPE_EQ] = ACTIONS(7657), - [anon_sym_LT_EQ_GT] = ACTIONS(7657), - [anon_sym_or] = ACTIONS(7657), - [anon_sym_and] = ACTIONS(7657), - [anon_sym_bitor] = ACTIONS(7657), - [anon_sym_xor] = ACTIONS(7657), - [anon_sym_bitand] = ACTIONS(7657), - [anon_sym_not_eq] = ACTIONS(7657), - [anon_sym_DASH_DASH] = ACTIONS(7657), - [anon_sym_PLUS_PLUS] = ACTIONS(7657), - [anon_sym_DOT] = ACTIONS(7655), - [anon_sym_DOT_STAR] = ACTIONS(7657), - [anon_sym_DASH_GT] = ACTIONS(7655), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7657), - [anon_sym_override] = ACTIONS(7657), - [anon_sym_requires] = ACTIONS(7657), - [anon_sym_DASH_GT_STAR] = ACTIONS(7657), + [STATE(3551)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7652), + [anon_sym_COMMA] = ACTIONS(7652), + [anon_sym_RPAREN] = ACTIONS(7652), + [anon_sym_LPAREN2] = ACTIONS(7652), + [anon_sym_DASH] = ACTIONS(7650), + [anon_sym_PLUS] = ACTIONS(7650), + [anon_sym_STAR] = ACTIONS(7650), + [anon_sym_SLASH] = ACTIONS(7650), + [anon_sym_PERCENT] = ACTIONS(7650), + [anon_sym_PIPE_PIPE] = ACTIONS(7652), + [anon_sym_AMP_AMP] = ACTIONS(7652), + [anon_sym_PIPE] = ACTIONS(7650), + [anon_sym_CARET] = ACTIONS(7650), + [anon_sym_AMP] = ACTIONS(7650), + [anon_sym_EQ_EQ] = ACTIONS(7652), + [anon_sym_BANG_EQ] = ACTIONS(7652), + [anon_sym_GT] = ACTIONS(7650), + [anon_sym_GT_EQ] = ACTIONS(7652), + [anon_sym_LT_EQ] = ACTIONS(7650), + [anon_sym_LT] = ACTIONS(7650), + [anon_sym_LT_LT] = ACTIONS(7650), + [anon_sym_GT_GT] = ACTIONS(7650), + [anon_sym___extension__] = ACTIONS(7652), + [anon_sym_LBRACE] = ACTIONS(7652), + [anon_sym_LBRACK] = ACTIONS(7652), + [anon_sym_EQ] = ACTIONS(7650), + [anon_sym_const] = ACTIONS(7650), + [anon_sym_constexpr] = ACTIONS(7652), + [anon_sym_volatile] = ACTIONS(7652), + [anon_sym_restrict] = ACTIONS(7652), + [anon_sym___restrict__] = ACTIONS(7652), + [anon_sym__Atomic] = ACTIONS(7652), + [anon_sym__Noreturn] = ACTIONS(7652), + [anon_sym_noreturn] = ACTIONS(7652), + [anon_sym__Nonnull] = ACTIONS(7652), + [anon_sym_mutable] = ACTIONS(7652), + [anon_sym_constinit] = ACTIONS(7652), + [anon_sym_consteval] = ACTIONS(7652), + [anon_sym_alignas] = ACTIONS(7652), + [anon_sym__Alignas] = ACTIONS(7652), + [anon_sym_QMARK] = ACTIONS(7652), + [anon_sym_STAR_EQ] = ACTIONS(7652), + [anon_sym_SLASH_EQ] = ACTIONS(7652), + [anon_sym_PERCENT_EQ] = ACTIONS(7652), + [anon_sym_PLUS_EQ] = ACTIONS(7652), + [anon_sym_DASH_EQ] = ACTIONS(7652), + [anon_sym_LT_LT_EQ] = ACTIONS(7652), + [anon_sym_GT_GT_EQ] = ACTIONS(7652), + [anon_sym_AMP_EQ] = ACTIONS(7652), + [anon_sym_CARET_EQ] = ACTIONS(7652), + [anon_sym_PIPE_EQ] = ACTIONS(7652), + [anon_sym_LT_EQ_GT] = ACTIONS(7652), + [anon_sym_or] = ACTIONS(7652), + [anon_sym_and] = ACTIONS(7652), + [anon_sym_bitor] = ACTIONS(7652), + [anon_sym_xor] = ACTIONS(7652), + [anon_sym_bitand] = ACTIONS(7652), + [anon_sym_not_eq] = ACTIONS(7652), + [anon_sym_DASH_DASH] = ACTIONS(7652), + [anon_sym_PLUS_PLUS] = ACTIONS(7652), + [anon_sym_DOT] = ACTIONS(7650), + [anon_sym_DOT_STAR] = ACTIONS(7652), + [anon_sym_DASH_GT] = ACTIONS(7650), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7652), + [anon_sym_override] = ACTIONS(7652), + [anon_sym_requires] = ACTIONS(7652), + [anon_sym_DASH_GT_STAR] = ACTIONS(7652), }, - [STATE(3573)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7665), - [anon_sym_COMMA] = ACTIONS(7665), - [anon_sym_RPAREN] = ACTIONS(7665), - [anon_sym_LPAREN2] = ACTIONS(7665), - [anon_sym_DASH] = ACTIONS(7663), - [anon_sym_PLUS] = ACTIONS(7663), - [anon_sym_STAR] = ACTIONS(7663), - [anon_sym_SLASH] = ACTIONS(7663), - [anon_sym_PERCENT] = ACTIONS(7663), - [anon_sym_PIPE_PIPE] = ACTIONS(7665), - [anon_sym_AMP_AMP] = ACTIONS(7665), - [anon_sym_PIPE] = ACTIONS(7663), - [anon_sym_CARET] = ACTIONS(7663), - [anon_sym_AMP] = ACTIONS(7663), - [anon_sym_EQ_EQ] = ACTIONS(7665), - [anon_sym_BANG_EQ] = ACTIONS(7665), - [anon_sym_GT] = ACTIONS(7663), - [anon_sym_GT_EQ] = ACTIONS(7665), - [anon_sym_LT_EQ] = ACTIONS(7663), - [anon_sym_LT] = ACTIONS(7663), - [anon_sym_LT_LT] = ACTIONS(7663), - [anon_sym_GT_GT] = ACTIONS(7663), - [anon_sym___extension__] = ACTIONS(7665), - [anon_sym_LBRACE] = ACTIONS(7665), - [anon_sym_LBRACK] = ACTIONS(7665), - [anon_sym_EQ] = ACTIONS(7663), - [anon_sym_const] = ACTIONS(7663), - [anon_sym_constexpr] = ACTIONS(7665), - [anon_sym_volatile] = ACTIONS(7665), - [anon_sym_restrict] = ACTIONS(7665), - [anon_sym___restrict__] = ACTIONS(7665), - [anon_sym__Atomic] = ACTIONS(7665), - [anon_sym__Noreturn] = ACTIONS(7665), - [anon_sym_noreturn] = ACTIONS(7665), - [anon_sym__Nonnull] = ACTIONS(7665), - [anon_sym_mutable] = ACTIONS(7665), - [anon_sym_constinit] = ACTIONS(7665), - [anon_sym_consteval] = ACTIONS(7665), - [anon_sym_alignas] = ACTIONS(7665), - [anon_sym__Alignas] = ACTIONS(7665), - [anon_sym_QMARK] = ACTIONS(7665), - [anon_sym_STAR_EQ] = ACTIONS(7665), - [anon_sym_SLASH_EQ] = ACTIONS(7665), - [anon_sym_PERCENT_EQ] = ACTIONS(7665), - [anon_sym_PLUS_EQ] = ACTIONS(7665), - [anon_sym_DASH_EQ] = ACTIONS(7665), - [anon_sym_LT_LT_EQ] = ACTIONS(7665), - [anon_sym_GT_GT_EQ] = ACTIONS(7665), - [anon_sym_AMP_EQ] = ACTIONS(7665), - [anon_sym_CARET_EQ] = ACTIONS(7665), - [anon_sym_PIPE_EQ] = ACTIONS(7665), - [anon_sym_LT_EQ_GT] = ACTIONS(7665), - [anon_sym_or] = ACTIONS(7665), - [anon_sym_and] = ACTIONS(7665), - [anon_sym_bitor] = ACTIONS(7665), - [anon_sym_xor] = ACTIONS(7665), - [anon_sym_bitand] = ACTIONS(7665), - [anon_sym_not_eq] = ACTIONS(7665), - [anon_sym_DASH_DASH] = ACTIONS(7665), - [anon_sym_PLUS_PLUS] = ACTIONS(7665), - [anon_sym_DOT] = ACTIONS(7663), - [anon_sym_DOT_STAR] = ACTIONS(7665), - [anon_sym_DASH_GT] = ACTIONS(7663), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7665), - [anon_sym_override] = ACTIONS(7665), - [anon_sym_requires] = ACTIONS(7665), - [anon_sym_DASH_GT_STAR] = ACTIONS(7665), + [STATE(3552)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7664), + [anon_sym_COMMA] = ACTIONS(7664), + [anon_sym_RPAREN] = ACTIONS(7664), + [anon_sym_LPAREN2] = ACTIONS(7664), + [anon_sym_DASH] = ACTIONS(7662), + [anon_sym_PLUS] = ACTIONS(7662), + [anon_sym_STAR] = ACTIONS(7664), + [anon_sym_SLASH] = ACTIONS(7662), + [anon_sym_PERCENT] = ACTIONS(7664), + [anon_sym_PIPE_PIPE] = ACTIONS(7664), + [anon_sym_AMP_AMP] = ACTIONS(7664), + [anon_sym_PIPE] = ACTIONS(7662), + [anon_sym_CARET] = ACTIONS(7664), + [anon_sym_AMP] = ACTIONS(7662), + [anon_sym_EQ_EQ] = ACTIONS(7664), + [anon_sym_BANG_EQ] = ACTIONS(7664), + [anon_sym_GT] = ACTIONS(7662), + [anon_sym_GT_EQ] = ACTIONS(7664), + [anon_sym_LT_EQ] = ACTIONS(7662), + [anon_sym_LT] = ACTIONS(7662), + [anon_sym_LT_LT] = ACTIONS(7664), + [anon_sym_GT_GT] = ACTIONS(7664), + [anon_sym_SEMI] = ACTIONS(7664), + [anon_sym___extension__] = ACTIONS(7664), + [anon_sym___attribute__] = ACTIONS(7664), + [anon_sym___attribute] = ACTIONS(7662), + [anon_sym_COLON] = ACTIONS(7662), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7664), + [anon_sym_LBRACE] = ACTIONS(7664), + [anon_sym_RBRACE] = ACTIONS(7664), + [anon_sym_signed] = ACTIONS(9148), + [anon_sym_unsigned] = ACTIONS(9148), + [anon_sym_long] = ACTIONS(9148), + [anon_sym_short] = ACTIONS(9148), + [anon_sym_LBRACK] = ACTIONS(7664), + [anon_sym_const] = ACTIONS(7662), + [anon_sym_constexpr] = ACTIONS(7664), + [anon_sym_volatile] = ACTIONS(7664), + [anon_sym_restrict] = ACTIONS(7664), + [anon_sym___restrict__] = ACTIONS(7664), + [anon_sym__Atomic] = ACTIONS(7664), + [anon_sym__Noreturn] = ACTIONS(7664), + [anon_sym_noreturn] = ACTIONS(7664), + [anon_sym__Nonnull] = ACTIONS(7664), + [anon_sym_mutable] = ACTIONS(7664), + [anon_sym_constinit] = ACTIONS(7664), + [anon_sym_consteval] = ACTIONS(7664), + [anon_sym_alignas] = ACTIONS(7664), + [anon_sym__Alignas] = ACTIONS(7664), + [anon_sym_QMARK] = ACTIONS(7664), + [anon_sym_LT_EQ_GT] = ACTIONS(7664), + [anon_sym_or] = ACTIONS(7664), + [anon_sym_and] = ACTIONS(7664), + [anon_sym_bitor] = ACTIONS(7664), + [anon_sym_xor] = ACTIONS(7664), + [anon_sym_bitand] = ACTIONS(7664), + [anon_sym_not_eq] = ACTIONS(7664), + [anon_sym_DASH_DASH] = ACTIONS(7664), + [anon_sym_PLUS_PLUS] = ACTIONS(7664), + [anon_sym_DOT] = ACTIONS(7662), + [anon_sym_DOT_STAR] = ACTIONS(7664), + [anon_sym_DASH_GT] = ACTIONS(7664), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7664), + [anon_sym_override] = ACTIONS(7664), + [anon_sym_requires] = ACTIONS(7664), + [anon_sym_COLON_RBRACK] = ACTIONS(7664), }, - [STATE(3574)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7669), - [anon_sym_COMMA] = ACTIONS(7669), - [anon_sym_RPAREN] = ACTIONS(7669), - [anon_sym_LPAREN2] = ACTIONS(7669), - [anon_sym_DASH] = ACTIONS(7667), - [anon_sym_PLUS] = ACTIONS(7667), - [anon_sym_STAR] = ACTIONS(7667), - [anon_sym_SLASH] = ACTIONS(7667), - [anon_sym_PERCENT] = ACTIONS(7667), - [anon_sym_PIPE_PIPE] = ACTIONS(7669), - [anon_sym_AMP_AMP] = ACTIONS(7669), - [anon_sym_PIPE] = ACTIONS(7667), - [anon_sym_CARET] = ACTIONS(7667), - [anon_sym_AMP] = ACTIONS(7667), - [anon_sym_EQ_EQ] = ACTIONS(7669), - [anon_sym_BANG_EQ] = ACTIONS(7669), - [anon_sym_GT] = ACTIONS(7667), - [anon_sym_GT_EQ] = ACTIONS(7669), - [anon_sym_LT_EQ] = ACTIONS(7667), - [anon_sym_LT] = ACTIONS(7667), - [anon_sym_LT_LT] = ACTIONS(7667), - [anon_sym_GT_GT] = ACTIONS(7667), - [anon_sym___extension__] = ACTIONS(7669), - [anon_sym_LBRACE] = ACTIONS(7669), - [anon_sym_LBRACK] = ACTIONS(7669), - [anon_sym_EQ] = ACTIONS(7667), - [anon_sym_const] = ACTIONS(7667), - [anon_sym_constexpr] = ACTIONS(7669), - [anon_sym_volatile] = ACTIONS(7669), - [anon_sym_restrict] = ACTIONS(7669), - [anon_sym___restrict__] = ACTIONS(7669), - [anon_sym__Atomic] = ACTIONS(7669), - [anon_sym__Noreturn] = ACTIONS(7669), - [anon_sym_noreturn] = ACTIONS(7669), - [anon_sym__Nonnull] = ACTIONS(7669), - [anon_sym_mutable] = ACTIONS(7669), - [anon_sym_constinit] = ACTIONS(7669), - [anon_sym_consteval] = ACTIONS(7669), - [anon_sym_alignas] = ACTIONS(7669), - [anon_sym__Alignas] = ACTIONS(7669), - [anon_sym_QMARK] = ACTIONS(7669), - [anon_sym_STAR_EQ] = ACTIONS(7669), - [anon_sym_SLASH_EQ] = ACTIONS(7669), - [anon_sym_PERCENT_EQ] = ACTIONS(7669), - [anon_sym_PLUS_EQ] = ACTIONS(7669), - [anon_sym_DASH_EQ] = ACTIONS(7669), - [anon_sym_LT_LT_EQ] = ACTIONS(7669), - [anon_sym_GT_GT_EQ] = ACTIONS(7669), - [anon_sym_AMP_EQ] = ACTIONS(7669), - [anon_sym_CARET_EQ] = ACTIONS(7669), - [anon_sym_PIPE_EQ] = ACTIONS(7669), - [anon_sym_LT_EQ_GT] = ACTIONS(7669), - [anon_sym_or] = ACTIONS(7669), - [anon_sym_and] = ACTIONS(7669), - [anon_sym_bitor] = ACTIONS(7669), - [anon_sym_xor] = ACTIONS(7669), - [anon_sym_bitand] = ACTIONS(7669), - [anon_sym_not_eq] = ACTIONS(7669), - [anon_sym_DASH_DASH] = ACTIONS(7669), - [anon_sym_PLUS_PLUS] = ACTIONS(7669), - [anon_sym_DOT] = ACTIONS(7667), - [anon_sym_DOT_STAR] = ACTIONS(7669), - [anon_sym_DASH_GT] = ACTIONS(7667), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7669), - [anon_sym_override] = ACTIONS(7669), - [anon_sym_requires] = ACTIONS(7669), - [anon_sym_DASH_GT_STAR] = ACTIONS(7669), + [STATE(3553)] = { + [sym_identifier] = ACTIONS(7113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7115), + [anon_sym_COMMA] = ACTIONS(7115), + [anon_sym_RPAREN] = ACTIONS(7115), + [anon_sym_LPAREN2] = ACTIONS(7115), + [anon_sym_TILDE] = ACTIONS(7115), + [anon_sym_STAR] = ACTIONS(7115), + [anon_sym_AMP_AMP] = ACTIONS(7115), + [anon_sym_AMP] = ACTIONS(7113), + [anon_sym_SEMI] = ACTIONS(7115), + [anon_sym___extension__] = ACTIONS(7113), + [anon_sym_virtual] = ACTIONS(7113), + [anon_sym_extern] = ACTIONS(7113), + [anon_sym___attribute__] = ACTIONS(7113), + [anon_sym___attribute] = ACTIONS(7113), + [anon_sym_COLON_COLON] = ACTIONS(7115), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7115), + [anon_sym___declspec] = ACTIONS(7113), + [anon_sym___based] = ACTIONS(7113), + [anon_sym___cdecl] = ACTIONS(7113), + [anon_sym___clrcall] = ACTIONS(7113), + [anon_sym___stdcall] = ACTIONS(7113), + [anon_sym___fastcall] = ACTIONS(7113), + [anon_sym___thiscall] = ACTIONS(7113), + [anon_sym___vectorcall] = ACTIONS(7113), + [anon_sym_LBRACE] = ACTIONS(7115), + [anon_sym_signed] = ACTIONS(7113), + [anon_sym_unsigned] = ACTIONS(7113), + [anon_sym_long] = ACTIONS(7113), + [anon_sym_short] = ACTIONS(7113), + [anon_sym_LBRACK] = ACTIONS(7113), + [anon_sym_static] = ACTIONS(7113), + [anon_sym_EQ] = ACTIONS(7115), + [anon_sym_register] = ACTIONS(7113), + [anon_sym_inline] = ACTIONS(7113), + [anon_sym___inline] = ACTIONS(7113), + [anon_sym___inline__] = ACTIONS(7113), + [anon_sym___forceinline] = ACTIONS(7113), + [anon_sym_thread_local] = ACTIONS(7113), + [anon_sym___thread] = ACTIONS(7113), + [anon_sym_const] = ACTIONS(7113), + [anon_sym_constexpr] = ACTIONS(7113), + [anon_sym_volatile] = ACTIONS(7113), + [anon_sym_restrict] = ACTIONS(7113), + [anon_sym___restrict__] = ACTIONS(7113), + [anon_sym__Atomic] = ACTIONS(7113), + [anon_sym__Noreturn] = ACTIONS(7113), + [anon_sym_noreturn] = ACTIONS(7113), + [anon_sym__Nonnull] = ACTIONS(7113), + [anon_sym_mutable] = ACTIONS(7113), + [anon_sym_constinit] = ACTIONS(7113), + [anon_sym_consteval] = ACTIONS(7113), + [anon_sym_alignas] = ACTIONS(7113), + [anon_sym__Alignas] = ACTIONS(7113), + [sym_primitive_type] = ACTIONS(7113), + [anon_sym_enum] = ACTIONS(7113), + [anon_sym_class] = ACTIONS(7113), + [anon_sym_struct] = ACTIONS(7113), + [anon_sym_union] = ACTIONS(7113), + [anon_sym_typename] = ACTIONS(7113), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7113), + [anon_sym_decltype] = ACTIONS(7113), + [anon_sym_explicit] = ACTIONS(7113), + [anon_sym_template] = ACTIONS(7113), + [anon_sym_GT2] = ACTIONS(7115), + [anon_sym_operator] = ACTIONS(7113), + [anon_sym_LBRACK_COLON] = ACTIONS(7115), }, - [STATE(3575)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7673), - [anon_sym_COMMA] = ACTIONS(7673), - [anon_sym_RPAREN] = ACTIONS(7673), - [anon_sym_LPAREN2] = ACTIONS(7673), - [anon_sym_DASH] = ACTIONS(7671), - [anon_sym_PLUS] = ACTIONS(7671), - [anon_sym_STAR] = ACTIONS(7671), - [anon_sym_SLASH] = ACTIONS(7671), - [anon_sym_PERCENT] = ACTIONS(7671), - [anon_sym_PIPE_PIPE] = ACTIONS(7673), - [anon_sym_AMP_AMP] = ACTIONS(7673), - [anon_sym_PIPE] = ACTIONS(7671), - [anon_sym_CARET] = ACTIONS(7671), - [anon_sym_AMP] = ACTIONS(7671), - [anon_sym_EQ_EQ] = ACTIONS(7673), - [anon_sym_BANG_EQ] = ACTIONS(7673), - [anon_sym_GT] = ACTIONS(7671), - [anon_sym_GT_EQ] = ACTIONS(7673), - [anon_sym_LT_EQ] = ACTIONS(7671), - [anon_sym_LT] = ACTIONS(7671), - [anon_sym_LT_LT] = ACTIONS(7671), - [anon_sym_GT_GT] = ACTIONS(7671), - [anon_sym___extension__] = ACTIONS(7673), - [anon_sym_LBRACE] = ACTIONS(7673), - [anon_sym_LBRACK] = ACTIONS(7673), - [anon_sym_EQ] = ACTIONS(7671), - [anon_sym_const] = ACTIONS(7671), - [anon_sym_constexpr] = ACTIONS(7673), - [anon_sym_volatile] = ACTIONS(7673), - [anon_sym_restrict] = ACTIONS(7673), - [anon_sym___restrict__] = ACTIONS(7673), - [anon_sym__Atomic] = ACTIONS(7673), - [anon_sym__Noreturn] = ACTIONS(7673), - [anon_sym_noreturn] = ACTIONS(7673), - [anon_sym__Nonnull] = ACTIONS(7673), - [anon_sym_mutable] = ACTIONS(7673), - [anon_sym_constinit] = ACTIONS(7673), - [anon_sym_consteval] = ACTIONS(7673), - [anon_sym_alignas] = ACTIONS(7673), - [anon_sym__Alignas] = ACTIONS(7673), - [anon_sym_QMARK] = ACTIONS(7673), - [anon_sym_STAR_EQ] = ACTIONS(7673), - [anon_sym_SLASH_EQ] = ACTIONS(7673), - [anon_sym_PERCENT_EQ] = ACTIONS(7673), - [anon_sym_PLUS_EQ] = ACTIONS(7673), - [anon_sym_DASH_EQ] = ACTIONS(7673), - [anon_sym_LT_LT_EQ] = ACTIONS(7673), - [anon_sym_GT_GT_EQ] = ACTIONS(7673), - [anon_sym_AMP_EQ] = ACTIONS(7673), - [anon_sym_CARET_EQ] = ACTIONS(7673), - [anon_sym_PIPE_EQ] = ACTIONS(7673), - [anon_sym_LT_EQ_GT] = ACTIONS(7673), - [anon_sym_or] = ACTIONS(7673), - [anon_sym_and] = ACTIONS(7673), - [anon_sym_bitor] = ACTIONS(7673), - [anon_sym_xor] = ACTIONS(7673), - [anon_sym_bitand] = ACTIONS(7673), - [anon_sym_not_eq] = ACTIONS(7673), - [anon_sym_DASH_DASH] = ACTIONS(7673), - [anon_sym_PLUS_PLUS] = ACTIONS(7673), - [anon_sym_DOT] = ACTIONS(7671), - [anon_sym_DOT_STAR] = ACTIONS(7673), - [anon_sym_DASH_GT] = ACTIONS(7671), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7673), - [anon_sym_override] = ACTIONS(7673), - [anon_sym_requires] = ACTIONS(7673), - [anon_sym_DASH_GT_STAR] = ACTIONS(7673), + [STATE(3554)] = { + [sym_identifier] = ACTIONS(6586), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6588), + [anon_sym_COMMA] = ACTIONS(6588), + [aux_sym_preproc_if_token2] = ACTIONS(6588), + [aux_sym_preproc_else_token1] = ACTIONS(6588), + [aux_sym_preproc_elif_token1] = ACTIONS(6586), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6588), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6588), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_DASH] = ACTIONS(6586), + [anon_sym_PLUS] = ACTIONS(6586), + [anon_sym_STAR] = ACTIONS(6588), + [anon_sym_SLASH] = ACTIONS(6586), + [anon_sym_PERCENT] = ACTIONS(6588), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_PIPE] = ACTIONS(6586), + [anon_sym_CARET] = ACTIONS(6588), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym_EQ_EQ] = ACTIONS(6588), + [anon_sym_BANG_EQ] = ACTIONS(6588), + [anon_sym_GT] = ACTIONS(6586), + [anon_sym_GT_EQ] = ACTIONS(6588), + [anon_sym_LT_EQ] = ACTIONS(6586), + [anon_sym_LT] = ACTIONS(6586), + [anon_sym_LT_LT] = ACTIONS(6588), + [anon_sym_GT_GT] = ACTIONS(6588), + [anon_sym___extension__] = ACTIONS(6586), + [anon_sym___attribute__] = ACTIONS(6586), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_COLON] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACE] = ACTIONS(6588), + [anon_sym_LBRACK] = ACTIONS(6588), + [anon_sym_RBRACK] = ACTIONS(6588), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6586), + [anon_sym_volatile] = ACTIONS(6586), + [anon_sym_restrict] = ACTIONS(6586), + [anon_sym___restrict__] = ACTIONS(6586), + [anon_sym__Atomic] = ACTIONS(6586), + [anon_sym__Noreturn] = ACTIONS(6586), + [anon_sym_noreturn] = ACTIONS(6586), + [anon_sym__Nonnull] = ACTIONS(6586), + [anon_sym_mutable] = ACTIONS(6586), + [anon_sym_constinit] = ACTIONS(6586), + [anon_sym_consteval] = ACTIONS(6586), + [anon_sym_alignas] = ACTIONS(6586), + [anon_sym__Alignas] = ACTIONS(6586), + [anon_sym_QMARK] = ACTIONS(6588), + [anon_sym_LT_EQ_GT] = ACTIONS(6588), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_bitor] = ACTIONS(6586), + [anon_sym_xor] = ACTIONS(6586), + [anon_sym_bitand] = ACTIONS(6586), + [anon_sym_not_eq] = ACTIONS(6586), + [anon_sym_DASH_DASH] = ACTIONS(6588), + [anon_sym_PLUS_PLUS] = ACTIONS(6588), + [anon_sym_DOT] = ACTIONS(6586), + [anon_sym_DOT_STAR] = ACTIONS(6588), + [anon_sym_DASH_GT] = ACTIONS(6588), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6586), + [anon_sym_decltype] = ACTIONS(6586), + [anon_sym_final] = ACTIONS(6586), + [anon_sym_override] = ACTIONS(6586), + [anon_sym_requires] = ACTIONS(6586), }, - [STATE(3576)] = { - [sym_string_literal] = STATE(3576), - [sym_raw_string_literal] = STATE(3576), - [aux_sym_concatenated_string_repeat1] = STATE(3576), - [sym_identifier] = ACTIONS(9265), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8406), - [anon_sym_COMMA] = ACTIONS(8406), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_DASH] = ACTIONS(8408), - [anon_sym_PLUS] = ACTIONS(8408), - [anon_sym_STAR] = ACTIONS(8408), - [anon_sym_SLASH] = ACTIONS(8408), - [anon_sym_PERCENT] = ACTIONS(8408), - [anon_sym_PIPE_PIPE] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_PIPE] = ACTIONS(8408), - [anon_sym_CARET] = ACTIONS(8408), - [anon_sym_AMP] = ACTIONS(8408), - [anon_sym_EQ_EQ] = ACTIONS(8406), - [anon_sym_BANG_EQ] = ACTIONS(8406), - [anon_sym_GT] = ACTIONS(8408), - [anon_sym_GT_EQ] = ACTIONS(8406), - [anon_sym_LT_EQ] = ACTIONS(8408), - [anon_sym_LT] = ACTIONS(8408), - [anon_sym_LT_LT] = ACTIONS(8408), - [anon_sym_GT_GT] = ACTIONS(8408), - [anon_sym_SEMI] = ACTIONS(8406), - [anon_sym___attribute__] = ACTIONS(8408), - [anon_sym___attribute] = ACTIONS(8408), - [anon_sym_LBRACK] = ACTIONS(8406), - [anon_sym_EQ] = ACTIONS(8408), - [anon_sym_QMARK] = ACTIONS(8406), - [anon_sym_STAR_EQ] = ACTIONS(8406), - [anon_sym_SLASH_EQ] = ACTIONS(8406), - [anon_sym_PERCENT_EQ] = ACTIONS(8406), - [anon_sym_PLUS_EQ] = ACTIONS(8406), - [anon_sym_DASH_EQ] = ACTIONS(8406), - [anon_sym_LT_LT_EQ] = ACTIONS(8406), - [anon_sym_GT_GT_EQ] = ACTIONS(8406), - [anon_sym_AMP_EQ] = ACTIONS(8406), - [anon_sym_CARET_EQ] = ACTIONS(8406), - [anon_sym_PIPE_EQ] = ACTIONS(8406), - [anon_sym_and_eq] = ACTIONS(8408), - [anon_sym_or_eq] = ACTIONS(8408), - [anon_sym_xor_eq] = ACTIONS(8408), - [anon_sym_LT_EQ_GT] = ACTIONS(8406), - [anon_sym_or] = ACTIONS(8408), - [anon_sym_and] = ACTIONS(8408), - [anon_sym_bitor] = ACTIONS(8408), - [anon_sym_xor] = ACTIONS(8408), - [anon_sym_bitand] = ACTIONS(8408), - [anon_sym_not_eq] = ACTIONS(8408), - [anon_sym_DASH_DASH] = ACTIONS(8406), - [anon_sym_PLUS_PLUS] = ACTIONS(8406), - [anon_sym_DOT] = ACTIONS(8408), - [anon_sym_DOT_STAR] = ACTIONS(8406), - [anon_sym_DASH_GT] = ACTIONS(8406), - [anon_sym_L_DQUOTE] = ACTIONS(9268), - [anon_sym_u_DQUOTE] = ACTIONS(9268), - [anon_sym_U_DQUOTE] = ACTIONS(9268), - [anon_sym_u8_DQUOTE] = ACTIONS(9268), - [anon_sym_DQUOTE] = ACTIONS(9268), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(9271), - [anon_sym_LR_DQUOTE] = ACTIONS(9271), - [anon_sym_uR_DQUOTE] = ACTIONS(9271), - [anon_sym_UR_DQUOTE] = ACTIONS(9271), - [anon_sym_u8R_DQUOTE] = ACTIONS(9271), - [sym_literal_suffix] = ACTIONS(8408), + [STATE(3555)] = { + [sym_argument_list] = STATE(3882), + [sym_initializer_list] = STATE(3882), + [sym_new_declarator] = STATE(3686), + [sym_identifier] = ACTIONS(9230), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9232), + [anon_sym_COMMA] = ACTIONS(9232), + [anon_sym_RPAREN] = ACTIONS(9232), + [aux_sym_preproc_if_token2] = ACTIONS(9232), + [aux_sym_preproc_else_token1] = ACTIONS(9232), + [aux_sym_preproc_elif_token1] = ACTIONS(9230), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9232), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9232), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9230), + [anon_sym_PLUS] = ACTIONS(9230), + [anon_sym_STAR] = ACTIONS(9230), + [anon_sym_SLASH] = ACTIONS(9230), + [anon_sym_PERCENT] = ACTIONS(9230), + [anon_sym_PIPE_PIPE] = ACTIONS(9232), + [anon_sym_AMP_AMP] = ACTIONS(9232), + [anon_sym_PIPE] = ACTIONS(9230), + [anon_sym_CARET] = ACTIONS(9230), + [anon_sym_AMP] = ACTIONS(9230), + [anon_sym_EQ_EQ] = ACTIONS(9232), + [anon_sym_BANG_EQ] = ACTIONS(9232), + [anon_sym_GT] = ACTIONS(9230), + [anon_sym_GT_EQ] = ACTIONS(9232), + [anon_sym_LT_EQ] = ACTIONS(9230), + [anon_sym_LT] = ACTIONS(9230), + [anon_sym_LT_LT] = ACTIONS(9230), + [anon_sym_GT_GT] = ACTIONS(9230), + [anon_sym_SEMI] = ACTIONS(9232), + [anon_sym___attribute__] = ACTIONS(9230), + [anon_sym___attribute] = ACTIONS(9230), + [anon_sym_COLON] = ACTIONS(9230), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9232), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(9232), + [anon_sym_LBRACK] = ACTIONS(9184), + [anon_sym_EQ] = ACTIONS(9230), + [anon_sym_QMARK] = ACTIONS(9232), + [anon_sym_STAR_EQ] = ACTIONS(9232), + [anon_sym_SLASH_EQ] = ACTIONS(9232), + [anon_sym_PERCENT_EQ] = ACTIONS(9232), + [anon_sym_PLUS_EQ] = ACTIONS(9232), + [anon_sym_DASH_EQ] = ACTIONS(9232), + [anon_sym_LT_LT_EQ] = ACTIONS(9232), + [anon_sym_GT_GT_EQ] = ACTIONS(9232), + [anon_sym_AMP_EQ] = ACTIONS(9232), + [anon_sym_CARET_EQ] = ACTIONS(9232), + [anon_sym_PIPE_EQ] = ACTIONS(9232), + [anon_sym_and_eq] = ACTIONS(9230), + [anon_sym_or_eq] = ACTIONS(9230), + [anon_sym_xor_eq] = ACTIONS(9230), + [anon_sym_LT_EQ_GT] = ACTIONS(9232), + [anon_sym_or] = ACTIONS(9230), + [anon_sym_and] = ACTIONS(9230), + [anon_sym_bitor] = ACTIONS(9230), + [anon_sym_xor] = ACTIONS(9230), + [anon_sym_bitand] = ACTIONS(9230), + [anon_sym_not_eq] = ACTIONS(9230), + [anon_sym_DASH_DASH] = ACTIONS(9232), + [anon_sym_PLUS_PLUS] = ACTIONS(9232), + [anon_sym_DOT] = ACTIONS(9230), + [anon_sym_DOT_STAR] = ACTIONS(9232), + [anon_sym_DASH_GT] = ACTIONS(9232), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9232), }, - [STATE(3577)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7769), - [anon_sym_COMMA] = ACTIONS(7769), - [anon_sym_RPAREN] = ACTIONS(7769), - [anon_sym_LPAREN2] = ACTIONS(7769), - [anon_sym_DASH] = ACTIONS(7767), - [anon_sym_PLUS] = ACTIONS(7767), - [anon_sym_STAR] = ACTIONS(7767), - [anon_sym_SLASH] = ACTIONS(7767), - [anon_sym_PERCENT] = ACTIONS(7767), - [anon_sym_PIPE_PIPE] = ACTIONS(7769), - [anon_sym_AMP_AMP] = ACTIONS(7769), - [anon_sym_PIPE] = ACTIONS(7767), - [anon_sym_CARET] = ACTIONS(7767), - [anon_sym_AMP] = ACTIONS(7767), - [anon_sym_EQ_EQ] = ACTIONS(7769), - [anon_sym_BANG_EQ] = ACTIONS(7769), - [anon_sym_GT] = ACTIONS(7767), - [anon_sym_GT_EQ] = ACTIONS(7769), - [anon_sym_LT_EQ] = ACTIONS(7767), - [anon_sym_LT] = ACTIONS(7767), - [anon_sym_LT_LT] = ACTIONS(7767), - [anon_sym_GT_GT] = ACTIONS(7767), - [anon_sym___extension__] = ACTIONS(7769), - [anon_sym_LBRACE] = ACTIONS(7769), - [anon_sym_LBRACK] = ACTIONS(7769), - [anon_sym_EQ] = ACTIONS(7767), - [anon_sym_const] = ACTIONS(7767), - [anon_sym_constexpr] = ACTIONS(7769), - [anon_sym_volatile] = ACTIONS(7769), - [anon_sym_restrict] = ACTIONS(7769), - [anon_sym___restrict__] = ACTIONS(7769), - [anon_sym__Atomic] = ACTIONS(7769), - [anon_sym__Noreturn] = ACTIONS(7769), - [anon_sym_noreturn] = ACTIONS(7769), - [anon_sym__Nonnull] = ACTIONS(7769), - [anon_sym_mutable] = ACTIONS(7769), - [anon_sym_constinit] = ACTIONS(7769), - [anon_sym_consteval] = ACTIONS(7769), - [anon_sym_alignas] = ACTIONS(7769), - [anon_sym__Alignas] = ACTIONS(7769), - [anon_sym_QMARK] = ACTIONS(7769), - [anon_sym_STAR_EQ] = ACTIONS(7769), - [anon_sym_SLASH_EQ] = ACTIONS(7769), - [anon_sym_PERCENT_EQ] = ACTIONS(7769), - [anon_sym_PLUS_EQ] = ACTIONS(7769), - [anon_sym_DASH_EQ] = ACTIONS(7769), - [anon_sym_LT_LT_EQ] = ACTIONS(7769), - [anon_sym_GT_GT_EQ] = ACTIONS(7769), - [anon_sym_AMP_EQ] = ACTIONS(7769), - [anon_sym_CARET_EQ] = ACTIONS(7769), - [anon_sym_PIPE_EQ] = ACTIONS(7769), - [anon_sym_LT_EQ_GT] = ACTIONS(7769), - [anon_sym_or] = ACTIONS(7769), - [anon_sym_and] = ACTIONS(7769), - [anon_sym_bitor] = ACTIONS(7769), - [anon_sym_xor] = ACTIONS(7769), - [anon_sym_bitand] = ACTIONS(7769), - [anon_sym_not_eq] = ACTIONS(7769), - [anon_sym_DASH_DASH] = ACTIONS(7769), - [anon_sym_PLUS_PLUS] = ACTIONS(7769), - [anon_sym_DOT] = ACTIONS(7767), - [anon_sym_DOT_STAR] = ACTIONS(7769), - [anon_sym_DASH_GT] = ACTIONS(7767), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7769), - [anon_sym_override] = ACTIONS(7769), - [anon_sym_requires] = ACTIONS(7769), - [anon_sym_DASH_GT_STAR] = ACTIONS(7769), + [STATE(3556)] = { + [sym_identifier] = ACTIONS(6602), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6604), + [anon_sym_COMMA] = ACTIONS(6604), + [aux_sym_preproc_if_token2] = ACTIONS(6604), + [aux_sym_preproc_else_token1] = ACTIONS(6604), + [aux_sym_preproc_elif_token1] = ACTIONS(6602), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6604), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6604), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_DASH] = ACTIONS(6602), + [anon_sym_PLUS] = ACTIONS(6602), + [anon_sym_STAR] = ACTIONS(6604), + [anon_sym_SLASH] = ACTIONS(6602), + [anon_sym_PERCENT] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_PIPE] = ACTIONS(6602), + [anon_sym_CARET] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym_EQ_EQ] = ACTIONS(6604), + [anon_sym_BANG_EQ] = ACTIONS(6604), + [anon_sym_GT] = ACTIONS(6602), + [anon_sym_GT_EQ] = ACTIONS(6604), + [anon_sym_LT_EQ] = ACTIONS(6602), + [anon_sym_LT] = ACTIONS(6602), + [anon_sym_LT_LT] = ACTIONS(6604), + [anon_sym_GT_GT] = ACTIONS(6604), + [anon_sym___extension__] = ACTIONS(6602), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_COLON] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACE] = ACTIONS(6604), + [anon_sym_LBRACK] = ACTIONS(6604), + [anon_sym_RBRACK] = ACTIONS(6604), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [anon_sym_QMARK] = ACTIONS(6604), + [anon_sym_LT_EQ_GT] = ACTIONS(6604), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_bitor] = ACTIONS(6602), + [anon_sym_xor] = ACTIONS(6602), + [anon_sym_bitand] = ACTIONS(6602), + [anon_sym_not_eq] = ACTIONS(6602), + [anon_sym_DASH_DASH] = ACTIONS(6604), + [anon_sym_PLUS_PLUS] = ACTIONS(6604), + [anon_sym_DOT] = ACTIONS(6602), + [anon_sym_DOT_STAR] = ACTIONS(6604), + [anon_sym_DASH_GT] = ACTIONS(6604), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6602), + [anon_sym_decltype] = ACTIONS(6602), + [anon_sym_final] = ACTIONS(6602), + [anon_sym_override] = ACTIONS(6602), + [anon_sym_requires] = ACTIONS(6602), }, - [STATE(3578)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7773), - [anon_sym_COMMA] = ACTIONS(7773), - [anon_sym_RPAREN] = ACTIONS(7773), - [anon_sym_LPAREN2] = ACTIONS(7773), - [anon_sym_DASH] = ACTIONS(7771), - [anon_sym_PLUS] = ACTIONS(7771), - [anon_sym_STAR] = ACTIONS(7771), - [anon_sym_SLASH] = ACTIONS(7771), - [anon_sym_PERCENT] = ACTIONS(7771), - [anon_sym_PIPE_PIPE] = ACTIONS(7773), - [anon_sym_AMP_AMP] = ACTIONS(7773), - [anon_sym_PIPE] = ACTIONS(7771), - [anon_sym_CARET] = ACTIONS(7771), - [anon_sym_AMP] = ACTIONS(7771), - [anon_sym_EQ_EQ] = ACTIONS(7773), - [anon_sym_BANG_EQ] = ACTIONS(7773), - [anon_sym_GT] = ACTIONS(7771), - [anon_sym_GT_EQ] = ACTIONS(7773), - [anon_sym_LT_EQ] = ACTIONS(7771), - [anon_sym_LT] = ACTIONS(7771), - [anon_sym_LT_LT] = ACTIONS(7771), - [anon_sym_GT_GT] = ACTIONS(7771), - [anon_sym___extension__] = ACTIONS(7773), - [anon_sym_LBRACE] = ACTIONS(7773), - [anon_sym_LBRACK] = ACTIONS(7773), - [anon_sym_EQ] = ACTIONS(7771), - [anon_sym_const] = ACTIONS(7771), - [anon_sym_constexpr] = ACTIONS(7773), - [anon_sym_volatile] = ACTIONS(7773), - [anon_sym_restrict] = ACTIONS(7773), - [anon_sym___restrict__] = ACTIONS(7773), - [anon_sym__Atomic] = ACTIONS(7773), - [anon_sym__Noreturn] = ACTIONS(7773), - [anon_sym_noreturn] = ACTIONS(7773), - [anon_sym__Nonnull] = ACTIONS(7773), - [anon_sym_mutable] = ACTIONS(7773), - [anon_sym_constinit] = ACTIONS(7773), - [anon_sym_consteval] = ACTIONS(7773), - [anon_sym_alignas] = ACTIONS(7773), - [anon_sym__Alignas] = ACTIONS(7773), - [anon_sym_QMARK] = ACTIONS(7773), - [anon_sym_STAR_EQ] = ACTIONS(7773), - [anon_sym_SLASH_EQ] = ACTIONS(7773), - [anon_sym_PERCENT_EQ] = ACTIONS(7773), - [anon_sym_PLUS_EQ] = ACTIONS(7773), - [anon_sym_DASH_EQ] = ACTIONS(7773), - [anon_sym_LT_LT_EQ] = ACTIONS(7773), - [anon_sym_GT_GT_EQ] = ACTIONS(7773), - [anon_sym_AMP_EQ] = ACTIONS(7773), - [anon_sym_CARET_EQ] = ACTIONS(7773), - [anon_sym_PIPE_EQ] = ACTIONS(7773), - [anon_sym_LT_EQ_GT] = ACTIONS(7773), - [anon_sym_or] = ACTIONS(7773), - [anon_sym_and] = ACTIONS(7773), - [anon_sym_bitor] = ACTIONS(7773), - [anon_sym_xor] = ACTIONS(7773), - [anon_sym_bitand] = ACTIONS(7773), - [anon_sym_not_eq] = ACTIONS(7773), - [anon_sym_DASH_DASH] = ACTIONS(7773), - [anon_sym_PLUS_PLUS] = ACTIONS(7773), - [anon_sym_DOT] = ACTIONS(7771), - [anon_sym_DOT_STAR] = ACTIONS(7773), - [anon_sym_DASH_GT] = ACTIONS(7771), + [STATE(3557)] = { + [sym_identifier] = ACTIONS(6606), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6608), + [anon_sym_COMMA] = ACTIONS(6608), + [aux_sym_preproc_if_token2] = ACTIONS(6608), + [aux_sym_preproc_else_token1] = ACTIONS(6608), + [aux_sym_preproc_elif_token1] = ACTIONS(6606), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6608), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6608), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_DASH] = ACTIONS(6606), + [anon_sym_PLUS] = ACTIONS(6606), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_SLASH] = ACTIONS(6606), + [anon_sym_PERCENT] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_PIPE] = ACTIONS(6606), + [anon_sym_CARET] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym_EQ_EQ] = ACTIONS(6608), + [anon_sym_BANG_EQ] = ACTIONS(6608), + [anon_sym_GT] = ACTIONS(6606), + [anon_sym_GT_EQ] = ACTIONS(6608), + [anon_sym_LT_EQ] = ACTIONS(6606), + [anon_sym_LT] = ACTIONS(6606), + [anon_sym_LT_LT] = ACTIONS(6608), + [anon_sym_GT_GT] = ACTIONS(6608), + [anon_sym___extension__] = ACTIONS(6606), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_COLON] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACE] = ACTIONS(6608), + [anon_sym_LBRACK] = ACTIONS(6608), + [anon_sym_RBRACK] = ACTIONS(6608), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6606), + [anon_sym_volatile] = ACTIONS(6606), + [anon_sym_restrict] = ACTIONS(6606), + [anon_sym___restrict__] = ACTIONS(6606), + [anon_sym__Atomic] = ACTIONS(6606), + [anon_sym__Noreturn] = ACTIONS(6606), + [anon_sym_noreturn] = ACTIONS(6606), + [anon_sym__Nonnull] = ACTIONS(6606), + [anon_sym_mutable] = ACTIONS(6606), + [anon_sym_constinit] = ACTIONS(6606), + [anon_sym_consteval] = ACTIONS(6606), + [anon_sym_alignas] = ACTIONS(6606), + [anon_sym__Alignas] = ACTIONS(6606), + [anon_sym_QMARK] = ACTIONS(6608), + [anon_sym_LT_EQ_GT] = ACTIONS(6608), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_bitor] = ACTIONS(6606), + [anon_sym_xor] = ACTIONS(6606), + [anon_sym_bitand] = ACTIONS(6606), + [anon_sym_not_eq] = ACTIONS(6606), + [anon_sym_DASH_DASH] = ACTIONS(6608), + [anon_sym_PLUS_PLUS] = ACTIONS(6608), + [anon_sym_DOT] = ACTIONS(6606), + [anon_sym_DOT_STAR] = ACTIONS(6608), + [anon_sym_DASH_GT] = ACTIONS(6608), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7773), - [anon_sym_override] = ACTIONS(7773), - [anon_sym_requires] = ACTIONS(7773), - [anon_sym_DASH_GT_STAR] = ACTIONS(7773), + [sym_auto] = ACTIONS(6606), + [anon_sym_decltype] = ACTIONS(6606), + [anon_sym_final] = ACTIONS(6606), + [anon_sym_override] = ACTIONS(6606), + [anon_sym_requires] = ACTIONS(6606), }, - [STATE(3579)] = { - [sym__abstract_declarator] = STATE(6346), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2072), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8487), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8489), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8491), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(6821), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6823), - [anon_sym_RBRACE] = ACTIONS(6823), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6823), + [STATE(3558)] = { + [sym_identifier] = ACTIONS(6590), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6592), + [anon_sym_COMMA] = ACTIONS(6592), + [aux_sym_preproc_if_token2] = ACTIONS(6592), + [aux_sym_preproc_else_token1] = ACTIONS(6592), + [aux_sym_preproc_elif_token1] = ACTIONS(6590), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6592), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6592), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_DASH] = ACTIONS(6590), + [anon_sym_PLUS] = ACTIONS(6590), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_SLASH] = ACTIONS(6590), + [anon_sym_PERCENT] = ACTIONS(6592), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_PIPE] = ACTIONS(6590), + [anon_sym_CARET] = ACTIONS(6592), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym_EQ_EQ] = ACTIONS(6592), + [anon_sym_BANG_EQ] = ACTIONS(6592), + [anon_sym_GT] = ACTIONS(6590), + [anon_sym_GT_EQ] = ACTIONS(6592), + [anon_sym_LT_EQ] = ACTIONS(6590), + [anon_sym_LT] = ACTIONS(6590), + [anon_sym_LT_LT] = ACTIONS(6592), + [anon_sym_GT_GT] = ACTIONS(6592), + [anon_sym___extension__] = ACTIONS(6590), + [anon_sym___attribute__] = ACTIONS(6590), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_COLON] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACE] = ACTIONS(6592), + [anon_sym_LBRACK] = ACTIONS(6592), + [anon_sym_RBRACK] = ACTIONS(6592), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6590), + [anon_sym_volatile] = ACTIONS(6590), + [anon_sym_restrict] = ACTIONS(6590), + [anon_sym___restrict__] = ACTIONS(6590), + [anon_sym__Atomic] = ACTIONS(6590), + [anon_sym__Noreturn] = ACTIONS(6590), + [anon_sym_noreturn] = ACTIONS(6590), + [anon_sym__Nonnull] = ACTIONS(6590), + [anon_sym_mutable] = ACTIONS(6590), + [anon_sym_constinit] = ACTIONS(6590), + [anon_sym_consteval] = ACTIONS(6590), + [anon_sym_alignas] = ACTIONS(6590), + [anon_sym__Alignas] = ACTIONS(6590), + [anon_sym_QMARK] = ACTIONS(6592), + [anon_sym_LT_EQ_GT] = ACTIONS(6592), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_bitor] = ACTIONS(6590), + [anon_sym_xor] = ACTIONS(6590), + [anon_sym_bitand] = ACTIONS(6590), + [anon_sym_not_eq] = ACTIONS(6590), + [anon_sym_DASH_DASH] = ACTIONS(6592), + [anon_sym_PLUS_PLUS] = ACTIONS(6592), + [anon_sym_DOT] = ACTIONS(6590), + [anon_sym_DOT_STAR] = ACTIONS(6592), + [anon_sym_DASH_GT] = ACTIONS(6592), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6590), + [anon_sym_decltype] = ACTIONS(6590), + [anon_sym_final] = ACTIONS(6590), + [anon_sym_override] = ACTIONS(6590), + [anon_sym_requires] = ACTIONS(6590), }, - [STATE(3580)] = { - [sym__abstract_declarator] = STATE(6336), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2072), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_RPAREN] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(8487), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(8489), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(8491), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym_SEMI] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(7353), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7355), - [anon_sym_RBRACE] = ACTIONS(7355), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7355), + [STATE(3559)] = { + [sym_identifier] = ACTIONS(6596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6598), + [anon_sym_COMMA] = ACTIONS(6598), + [aux_sym_preproc_if_token2] = ACTIONS(6598), + [aux_sym_preproc_else_token1] = ACTIONS(6598), + [aux_sym_preproc_elif_token1] = ACTIONS(6596), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6598), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6598), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_DASH] = ACTIONS(6596), + [anon_sym_PLUS] = ACTIONS(6596), + [anon_sym_STAR] = ACTIONS(6598), + [anon_sym_SLASH] = ACTIONS(6596), + [anon_sym_PERCENT] = ACTIONS(6598), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_PIPE] = ACTIONS(6596), + [anon_sym_CARET] = ACTIONS(6598), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym_EQ_EQ] = ACTIONS(6598), + [anon_sym_BANG_EQ] = ACTIONS(6598), + [anon_sym_GT] = ACTIONS(6596), + [anon_sym_GT_EQ] = ACTIONS(6598), + [anon_sym_LT_EQ] = ACTIONS(6596), + [anon_sym_LT] = ACTIONS(6596), + [anon_sym_LT_LT] = ACTIONS(6598), + [anon_sym_GT_GT] = ACTIONS(6598), + [anon_sym___extension__] = ACTIONS(6596), + [anon_sym___attribute__] = ACTIONS(6596), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_COLON] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACE] = ACTIONS(6598), + [anon_sym_LBRACK] = ACTIONS(6598), + [anon_sym_RBRACK] = ACTIONS(6598), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6596), + [anon_sym_volatile] = ACTIONS(6596), + [anon_sym_restrict] = ACTIONS(6596), + [anon_sym___restrict__] = ACTIONS(6596), + [anon_sym__Atomic] = ACTIONS(6596), + [anon_sym__Noreturn] = ACTIONS(6596), + [anon_sym_noreturn] = ACTIONS(6596), + [anon_sym__Nonnull] = ACTIONS(6596), + [anon_sym_mutable] = ACTIONS(6596), + [anon_sym_constinit] = ACTIONS(6596), + [anon_sym_consteval] = ACTIONS(6596), + [anon_sym_alignas] = ACTIONS(6596), + [anon_sym__Alignas] = ACTIONS(6596), + [anon_sym_QMARK] = ACTIONS(6598), + [anon_sym_LT_EQ_GT] = ACTIONS(6598), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_bitor] = ACTIONS(6596), + [anon_sym_xor] = ACTIONS(6596), + [anon_sym_bitand] = ACTIONS(6596), + [anon_sym_not_eq] = ACTIONS(6596), + [anon_sym_DASH_DASH] = ACTIONS(6598), + [anon_sym_PLUS_PLUS] = ACTIONS(6598), + [anon_sym_DOT] = ACTIONS(6596), + [anon_sym_DOT_STAR] = ACTIONS(6598), + [anon_sym_DASH_GT] = ACTIONS(6598), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6596), + [anon_sym_decltype] = ACTIONS(6596), + [anon_sym_final] = ACTIONS(6596), + [anon_sym_override] = ACTIONS(6596), + [anon_sym_requires] = ACTIONS(6596), }, - [STATE(3581)] = { - [sym_argument_list] = STATE(3847), - [sym_initializer_list] = STATE(3847), - [sym_new_declarator] = STATE(3647), - [sym_identifier] = ACTIONS(9274), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9276), - [anon_sym_COMMA] = ACTIONS(9276), - [anon_sym_RPAREN] = ACTIONS(9276), - [aux_sym_preproc_if_token2] = ACTIONS(9276), - [aux_sym_preproc_else_token1] = ACTIONS(9276), - [aux_sym_preproc_elif_token1] = ACTIONS(9274), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9276), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9276), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9274), - [anon_sym_PLUS] = ACTIONS(9274), - [anon_sym_STAR] = ACTIONS(9274), - [anon_sym_SLASH] = ACTIONS(9274), - [anon_sym_PERCENT] = ACTIONS(9274), - [anon_sym_PIPE_PIPE] = ACTIONS(9276), - [anon_sym_AMP_AMP] = ACTIONS(9276), - [anon_sym_PIPE] = ACTIONS(9274), - [anon_sym_CARET] = ACTIONS(9274), - [anon_sym_AMP] = ACTIONS(9274), - [anon_sym_EQ_EQ] = ACTIONS(9276), - [anon_sym_BANG_EQ] = ACTIONS(9276), - [anon_sym_GT] = ACTIONS(9274), - [anon_sym_GT_EQ] = ACTIONS(9276), - [anon_sym_LT_EQ] = ACTIONS(9274), - [anon_sym_LT] = ACTIONS(9274), - [anon_sym_LT_LT] = ACTIONS(9274), - [anon_sym_GT_GT] = ACTIONS(9274), - [anon_sym_SEMI] = ACTIONS(9276), - [anon_sym___attribute__] = ACTIONS(9274), - [anon_sym___attribute] = ACTIONS(9274), - [anon_sym_COLON] = ACTIONS(9274), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9276), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(9276), - [anon_sym_LBRACK] = ACTIONS(9232), - [anon_sym_EQ] = ACTIONS(9274), - [anon_sym_QMARK] = ACTIONS(9276), - [anon_sym_STAR_EQ] = ACTIONS(9276), - [anon_sym_SLASH_EQ] = ACTIONS(9276), - [anon_sym_PERCENT_EQ] = ACTIONS(9276), - [anon_sym_PLUS_EQ] = ACTIONS(9276), - [anon_sym_DASH_EQ] = ACTIONS(9276), - [anon_sym_LT_LT_EQ] = ACTIONS(9276), - [anon_sym_GT_GT_EQ] = ACTIONS(9276), - [anon_sym_AMP_EQ] = ACTIONS(9276), - [anon_sym_CARET_EQ] = ACTIONS(9276), - [anon_sym_PIPE_EQ] = ACTIONS(9276), - [anon_sym_and_eq] = ACTIONS(9274), - [anon_sym_or_eq] = ACTIONS(9274), - [anon_sym_xor_eq] = ACTIONS(9274), - [anon_sym_LT_EQ_GT] = ACTIONS(9276), - [anon_sym_or] = ACTIONS(9274), - [anon_sym_and] = ACTIONS(9274), - [anon_sym_bitor] = ACTIONS(9274), - [anon_sym_xor] = ACTIONS(9274), - [anon_sym_bitand] = ACTIONS(9274), - [anon_sym_not_eq] = ACTIONS(9274), - [anon_sym_DASH_DASH] = ACTIONS(9276), - [anon_sym_PLUS_PLUS] = ACTIONS(9276), - [anon_sym_DOT] = ACTIONS(9274), - [anon_sym_DOT_STAR] = ACTIONS(9276), - [anon_sym_DASH_GT] = ACTIONS(9276), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9276), + [STATE(3560)] = { + [sym_identifier] = ACTIONS(6610), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6612), + [anon_sym_COMMA] = ACTIONS(6612), + [aux_sym_preproc_if_token2] = ACTIONS(6612), + [aux_sym_preproc_else_token1] = ACTIONS(6612), + [aux_sym_preproc_elif_token1] = ACTIONS(6610), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6612), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6612), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_DASH] = ACTIONS(6610), + [anon_sym_PLUS] = ACTIONS(6610), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_SLASH] = ACTIONS(6610), + [anon_sym_PERCENT] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_PIPE] = ACTIONS(6610), + [anon_sym_CARET] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym_EQ_EQ] = ACTIONS(6612), + [anon_sym_BANG_EQ] = ACTIONS(6612), + [anon_sym_GT] = ACTIONS(6610), + [anon_sym_GT_EQ] = ACTIONS(6612), + [anon_sym_LT_EQ] = ACTIONS(6610), + [anon_sym_LT] = ACTIONS(6610), + [anon_sym_LT_LT] = ACTIONS(6612), + [anon_sym_GT_GT] = ACTIONS(6612), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_COLON] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACE] = ACTIONS(6612), + [anon_sym_LBRACK] = ACTIONS(6612), + [anon_sym_RBRACK] = ACTIONS(6612), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [anon_sym_QMARK] = ACTIONS(6612), + [anon_sym_LT_EQ_GT] = ACTIONS(6612), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_bitor] = ACTIONS(6610), + [anon_sym_xor] = ACTIONS(6610), + [anon_sym_bitand] = ACTIONS(6610), + [anon_sym_not_eq] = ACTIONS(6610), + [anon_sym_DASH_DASH] = ACTIONS(6612), + [anon_sym_PLUS_PLUS] = ACTIONS(6612), + [anon_sym_DOT] = ACTIONS(6610), + [anon_sym_DOT_STAR] = ACTIONS(6612), + [anon_sym_DASH_GT] = ACTIONS(6612), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_final] = ACTIONS(6610), + [anon_sym_override] = ACTIONS(6610), + [anon_sym_requires] = ACTIONS(6610), }, - [STATE(3582)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7725), - [anon_sym_COMMA] = ACTIONS(7725), - [anon_sym_RPAREN] = ACTIONS(7725), - [anon_sym_LPAREN2] = ACTIONS(7725), - [anon_sym_DASH] = ACTIONS(7723), - [anon_sym_PLUS] = ACTIONS(7723), - [anon_sym_STAR] = ACTIONS(7725), - [anon_sym_SLASH] = ACTIONS(7723), - [anon_sym_PERCENT] = ACTIONS(7725), - [anon_sym_PIPE_PIPE] = ACTIONS(7725), - [anon_sym_AMP_AMP] = ACTIONS(7725), - [anon_sym_PIPE] = ACTIONS(7723), - [anon_sym_CARET] = ACTIONS(7725), - [anon_sym_AMP] = ACTIONS(7723), - [anon_sym_EQ_EQ] = ACTIONS(7725), - [anon_sym_BANG_EQ] = ACTIONS(7725), - [anon_sym_GT] = ACTIONS(7723), - [anon_sym_GT_EQ] = ACTIONS(7725), - [anon_sym_LT_EQ] = ACTIONS(7723), - [anon_sym_LT] = ACTIONS(7723), - [anon_sym_LT_LT] = ACTIONS(7725), - [anon_sym_GT_GT] = ACTIONS(7725), - [anon_sym_SEMI] = ACTIONS(7725), - [anon_sym___extension__] = ACTIONS(7725), - [anon_sym___attribute__] = ACTIONS(7725), - [anon_sym___attribute] = ACTIONS(7723), - [anon_sym_COLON] = ACTIONS(7723), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7725), - [anon_sym_LBRACE] = ACTIONS(7725), - [anon_sym_RBRACE] = ACTIONS(7725), - [anon_sym_signed] = ACTIONS(9234), - [anon_sym_unsigned] = ACTIONS(9234), - [anon_sym_long] = ACTIONS(9234), - [anon_sym_short] = ACTIONS(9234), - [anon_sym_LBRACK] = ACTIONS(7725), - [anon_sym_const] = ACTIONS(7723), - [anon_sym_constexpr] = ACTIONS(7725), - [anon_sym_volatile] = ACTIONS(7725), - [anon_sym_restrict] = ACTIONS(7725), - [anon_sym___restrict__] = ACTIONS(7725), - [anon_sym__Atomic] = ACTIONS(7725), - [anon_sym__Noreturn] = ACTIONS(7725), - [anon_sym_noreturn] = ACTIONS(7725), - [anon_sym__Nonnull] = ACTIONS(7725), - [anon_sym_mutable] = ACTIONS(7725), - [anon_sym_constinit] = ACTIONS(7725), - [anon_sym_consteval] = ACTIONS(7725), - [anon_sym_alignas] = ACTIONS(7725), - [anon_sym__Alignas] = ACTIONS(7725), - [anon_sym_QMARK] = ACTIONS(7725), - [anon_sym_LT_EQ_GT] = ACTIONS(7725), - [anon_sym_or] = ACTIONS(7725), - [anon_sym_and] = ACTIONS(7725), - [anon_sym_bitor] = ACTIONS(7725), - [anon_sym_xor] = ACTIONS(7725), - [anon_sym_bitand] = ACTIONS(7725), - [anon_sym_not_eq] = ACTIONS(7725), - [anon_sym_DASH_DASH] = ACTIONS(7725), - [anon_sym_PLUS_PLUS] = ACTIONS(7725), - [anon_sym_DOT] = ACTIONS(7723), - [anon_sym_DOT_STAR] = ACTIONS(7725), - [anon_sym_DASH_GT] = ACTIONS(7725), + [STATE(3561)] = { + [sym_identifier] = ACTIONS(6614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6616), + [anon_sym_COMMA] = ACTIONS(6616), + [aux_sym_preproc_if_token2] = ACTIONS(6616), + [aux_sym_preproc_else_token1] = ACTIONS(6616), + [aux_sym_preproc_elif_token1] = ACTIONS(6614), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6616), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6616), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_DASH] = ACTIONS(6614), + [anon_sym_PLUS] = ACTIONS(6614), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_SLASH] = ACTIONS(6614), + [anon_sym_PERCENT] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_PIPE] = ACTIONS(6614), + [anon_sym_CARET] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym_EQ_EQ] = ACTIONS(6616), + [anon_sym_BANG_EQ] = ACTIONS(6616), + [anon_sym_GT] = ACTIONS(6614), + [anon_sym_GT_EQ] = ACTIONS(6616), + [anon_sym_LT_EQ] = ACTIONS(6614), + [anon_sym_LT] = ACTIONS(6614), + [anon_sym_LT_LT] = ACTIONS(6616), + [anon_sym_GT_GT] = ACTIONS(6616), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_COLON] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACE] = ACTIONS(6616), + [anon_sym_LBRACK] = ACTIONS(6616), + [anon_sym_RBRACK] = ACTIONS(6616), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [anon_sym_QMARK] = ACTIONS(6616), + [anon_sym_LT_EQ_GT] = ACTIONS(6616), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_bitor] = ACTIONS(6614), + [anon_sym_xor] = ACTIONS(6614), + [anon_sym_bitand] = ACTIONS(6614), + [anon_sym_not_eq] = ACTIONS(6614), + [anon_sym_DASH_DASH] = ACTIONS(6616), + [anon_sym_PLUS_PLUS] = ACTIONS(6616), + [anon_sym_DOT] = ACTIONS(6614), + [anon_sym_DOT_STAR] = ACTIONS(6616), + [anon_sym_DASH_GT] = ACTIONS(6616), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7725), - [anon_sym_override] = ACTIONS(7725), - [anon_sym_requires] = ACTIONS(7725), - [anon_sym_COLON_RBRACK] = ACTIONS(7725), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_final] = ACTIONS(6614), + [anon_sym_override] = ACTIONS(6614), + [anon_sym_requires] = ACTIONS(6614), }, - [STATE(3583)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), + [STATE(3562)] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(7729), [anon_sym_COMMA] = ACTIONS(7729), [anon_sym_RPAREN] = ACTIONS(7729), [anon_sym_LPAREN2] = ACTIONS(7729), [anon_sym_DASH] = ACTIONS(7727), [anon_sym_PLUS] = ACTIONS(7727), - [anon_sym_STAR] = ACTIONS(7729), + [anon_sym_STAR] = ACTIONS(7727), [anon_sym_SLASH] = ACTIONS(7727), - [anon_sym_PERCENT] = ACTIONS(7729), + [anon_sym_PERCENT] = ACTIONS(7727), [anon_sym_PIPE_PIPE] = ACTIONS(7729), [anon_sym_AMP_AMP] = ACTIONS(7729), [anon_sym_PIPE] = ACTIONS(7727), - [anon_sym_CARET] = ACTIONS(7729), + [anon_sym_CARET] = ACTIONS(7727), [anon_sym_AMP] = ACTIONS(7727), [anon_sym_EQ_EQ] = ACTIONS(7729), [anon_sym_BANG_EQ] = ACTIONS(7729), @@ -435360,21 +433727,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(7729), [anon_sym_LT_EQ] = ACTIONS(7727), [anon_sym_LT] = ACTIONS(7727), - [anon_sym_LT_LT] = ACTIONS(7729), - [anon_sym_GT_GT] = ACTIONS(7729), - [anon_sym_SEMI] = ACTIONS(7729), + [anon_sym_LT_LT] = ACTIONS(7727), + [anon_sym_GT_GT] = ACTIONS(7727), [anon_sym___extension__] = ACTIONS(7729), - [anon_sym___attribute__] = ACTIONS(7729), - [anon_sym___attribute] = ACTIONS(7727), - [anon_sym_COLON] = ACTIONS(7727), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7729), [anon_sym_LBRACE] = ACTIONS(7729), - [anon_sym_RBRACE] = ACTIONS(7729), - [anon_sym_signed] = ACTIONS(9234), - [anon_sym_unsigned] = ACTIONS(9234), - [anon_sym_long] = ACTIONS(9234), - [anon_sym_short] = ACTIONS(9234), [anon_sym_LBRACK] = ACTIONS(7729), + [anon_sym_EQ] = ACTIONS(7727), [anon_sym_const] = ACTIONS(7727), [anon_sym_constexpr] = ACTIONS(7729), [anon_sym_volatile] = ACTIONS(7729), @@ -435390,6 +433748,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_alignas] = ACTIONS(7729), [anon_sym__Alignas] = ACTIONS(7729), [anon_sym_QMARK] = ACTIONS(7729), + [anon_sym_STAR_EQ] = ACTIONS(7729), + [anon_sym_SLASH_EQ] = ACTIONS(7729), + [anon_sym_PERCENT_EQ] = ACTIONS(7729), + [anon_sym_PLUS_EQ] = ACTIONS(7729), + [anon_sym_DASH_EQ] = ACTIONS(7729), + [anon_sym_LT_LT_EQ] = ACTIONS(7729), + [anon_sym_GT_GT_EQ] = ACTIONS(7729), + [anon_sym_AMP_EQ] = ACTIONS(7729), + [anon_sym_CARET_EQ] = ACTIONS(7729), + [anon_sym_PIPE_EQ] = ACTIONS(7729), [anon_sym_LT_EQ_GT] = ACTIONS(7729), [anon_sym_or] = ACTIONS(7729), [anon_sym_and] = ACTIONS(7729), @@ -435401,1887 +433769,3148 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(7729), [anon_sym_DOT] = ACTIONS(7727), [anon_sym_DOT_STAR] = ACTIONS(7729), - [anon_sym_DASH_GT] = ACTIONS(7729), + [anon_sym_DASH_GT] = ACTIONS(7727), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7729), [anon_sym_override] = ACTIONS(7729), [anon_sym_requires] = ACTIONS(7729), - [anon_sym_COLON_RBRACK] = ACTIONS(7729), + [anon_sym_DASH_GT_STAR] = ACTIONS(7729), }, - [STATE(3584)] = { - [sym__abstract_declarator] = STATE(6339), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2072), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7347), - [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(8487), - [anon_sym_SLASH] = ACTIONS(7347), - [anon_sym_PERCENT] = ACTIONS(7345), - [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8489), - [anon_sym_PIPE] = ACTIONS(7347), - [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8491), - [anon_sym_EQ_EQ] = ACTIONS(7345), - [anon_sym_BANG_EQ] = ACTIONS(7345), - [anon_sym_GT] = ACTIONS(7347), - [anon_sym_GT_EQ] = ACTIONS(7345), - [anon_sym_LT_EQ] = ACTIONS(7347), - [anon_sym_LT] = ACTIONS(7347), - [anon_sym_LT_LT] = ACTIONS(7345), - [anon_sym_GT_GT] = ACTIONS(7345), - [anon_sym_SEMI] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(7347), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7345), - [anon_sym_RBRACE] = ACTIONS(7345), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7345), - [anon_sym_LT_EQ_GT] = ACTIONS(7345), - [anon_sym_or] = ACTIONS(7345), - [anon_sym_and] = ACTIONS(7345), - [anon_sym_bitor] = ACTIONS(7345), - [anon_sym_xor] = ACTIONS(7345), - [anon_sym_bitand] = ACTIONS(7345), - [anon_sym_not_eq] = ACTIONS(7345), - [anon_sym_DASH_DASH] = ACTIONS(7345), - [anon_sym_PLUS_PLUS] = ACTIONS(7345), - [anon_sym_DOT] = ACTIONS(7347), - [anon_sym_DOT_STAR] = ACTIONS(7345), - [anon_sym_DASH_GT] = ACTIONS(7345), + [STATE(3563)] = { + [sym_argument_list] = STATE(3879), + [sym_initializer_list] = STATE(3879), + [sym_new_declarator] = STATE(3650), + [sym_identifier] = ACTIONS(9234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9236), + [anon_sym_COMMA] = ACTIONS(9236), + [anon_sym_RPAREN] = ACTIONS(9236), + [aux_sym_preproc_if_token2] = ACTIONS(9236), + [aux_sym_preproc_else_token1] = ACTIONS(9236), + [aux_sym_preproc_elif_token1] = ACTIONS(9234), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9236), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9236), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9234), + [anon_sym_PLUS] = ACTIONS(9234), + [anon_sym_STAR] = ACTIONS(9234), + [anon_sym_SLASH] = ACTIONS(9234), + [anon_sym_PERCENT] = ACTIONS(9234), + [anon_sym_PIPE_PIPE] = ACTIONS(9236), + [anon_sym_AMP_AMP] = ACTIONS(9236), + [anon_sym_PIPE] = ACTIONS(9234), + [anon_sym_CARET] = ACTIONS(9234), + [anon_sym_AMP] = ACTIONS(9234), + [anon_sym_EQ_EQ] = ACTIONS(9236), + [anon_sym_BANG_EQ] = ACTIONS(9236), + [anon_sym_GT] = ACTIONS(9234), + [anon_sym_GT_EQ] = ACTIONS(9236), + [anon_sym_LT_EQ] = ACTIONS(9234), + [anon_sym_LT] = ACTIONS(9234), + [anon_sym_LT_LT] = ACTIONS(9234), + [anon_sym_GT_GT] = ACTIONS(9234), + [anon_sym_SEMI] = ACTIONS(9236), + [anon_sym___attribute__] = ACTIONS(9234), + [anon_sym___attribute] = ACTIONS(9234), + [anon_sym_COLON] = ACTIONS(9234), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9236), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(9236), + [anon_sym_LBRACK] = ACTIONS(9184), + [anon_sym_EQ] = ACTIONS(9234), + [anon_sym_QMARK] = ACTIONS(9236), + [anon_sym_STAR_EQ] = ACTIONS(9236), + [anon_sym_SLASH_EQ] = ACTIONS(9236), + [anon_sym_PERCENT_EQ] = ACTIONS(9236), + [anon_sym_PLUS_EQ] = ACTIONS(9236), + [anon_sym_DASH_EQ] = ACTIONS(9236), + [anon_sym_LT_LT_EQ] = ACTIONS(9236), + [anon_sym_GT_GT_EQ] = ACTIONS(9236), + [anon_sym_AMP_EQ] = ACTIONS(9236), + [anon_sym_CARET_EQ] = ACTIONS(9236), + [anon_sym_PIPE_EQ] = ACTIONS(9236), + [anon_sym_and_eq] = ACTIONS(9234), + [anon_sym_or_eq] = ACTIONS(9234), + [anon_sym_xor_eq] = ACTIONS(9234), + [anon_sym_LT_EQ_GT] = ACTIONS(9236), + [anon_sym_or] = ACTIONS(9234), + [anon_sym_and] = ACTIONS(9234), + [anon_sym_bitor] = ACTIONS(9234), + [anon_sym_xor] = ACTIONS(9234), + [anon_sym_bitand] = ACTIONS(9234), + [anon_sym_not_eq] = ACTIONS(9234), + [anon_sym_DASH_DASH] = ACTIONS(9236), + [anon_sym_PLUS_PLUS] = ACTIONS(9236), + [anon_sym_DOT] = ACTIONS(9234), + [anon_sym_DOT_STAR] = ACTIONS(9236), + [anon_sym_DASH_GT] = ACTIONS(9236), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9236), + }, + [STATE(3564)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym___attribute__] = ACTIONS(7248), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(9238), + [anon_sym_unsigned] = ACTIONS(9238), + [anon_sym_long] = ACTIONS(9238), + [anon_sym_short] = ACTIONS(9238), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), + }, + [STATE(3565)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7640), + [anon_sym_COMMA] = ACTIONS(7640), + [anon_sym_RPAREN] = ACTIONS(7640), + [anon_sym_LPAREN2] = ACTIONS(7640), + [anon_sym_DASH] = ACTIONS(7638), + [anon_sym_PLUS] = ACTIONS(7638), + [anon_sym_STAR] = ACTIONS(7638), + [anon_sym_SLASH] = ACTIONS(7638), + [anon_sym_PERCENT] = ACTIONS(7638), + [anon_sym_PIPE_PIPE] = ACTIONS(7640), + [anon_sym_AMP_AMP] = ACTIONS(7640), + [anon_sym_PIPE] = ACTIONS(7638), + [anon_sym_CARET] = ACTIONS(7638), + [anon_sym_AMP] = ACTIONS(7638), + [anon_sym_EQ_EQ] = ACTIONS(7640), + [anon_sym_BANG_EQ] = ACTIONS(7640), + [anon_sym_GT] = ACTIONS(7638), + [anon_sym_GT_EQ] = ACTIONS(7640), + [anon_sym_LT_EQ] = ACTIONS(7638), + [anon_sym_LT] = ACTIONS(7638), + [anon_sym_LT_LT] = ACTIONS(7638), + [anon_sym_GT_GT] = ACTIONS(7638), + [anon_sym___extension__] = ACTIONS(7640), + [anon_sym_LBRACE] = ACTIONS(7640), + [anon_sym_LBRACK] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(7638), + [anon_sym_const] = ACTIONS(7638), + [anon_sym_constexpr] = ACTIONS(7640), + [anon_sym_volatile] = ACTIONS(7640), + [anon_sym_restrict] = ACTIONS(7640), + [anon_sym___restrict__] = ACTIONS(7640), + [anon_sym__Atomic] = ACTIONS(7640), + [anon_sym__Noreturn] = ACTIONS(7640), + [anon_sym_noreturn] = ACTIONS(7640), + [anon_sym__Nonnull] = ACTIONS(7640), + [anon_sym_mutable] = ACTIONS(7640), + [anon_sym_constinit] = ACTIONS(7640), + [anon_sym_consteval] = ACTIONS(7640), + [anon_sym_alignas] = ACTIONS(7640), + [anon_sym__Alignas] = ACTIONS(7640), + [anon_sym_QMARK] = ACTIONS(7640), + [anon_sym_STAR_EQ] = ACTIONS(7640), + [anon_sym_SLASH_EQ] = ACTIONS(7640), + [anon_sym_PERCENT_EQ] = ACTIONS(7640), + [anon_sym_PLUS_EQ] = ACTIONS(7640), + [anon_sym_DASH_EQ] = ACTIONS(7640), + [anon_sym_LT_LT_EQ] = ACTIONS(7640), + [anon_sym_GT_GT_EQ] = ACTIONS(7640), + [anon_sym_AMP_EQ] = ACTIONS(7640), + [anon_sym_CARET_EQ] = ACTIONS(7640), + [anon_sym_PIPE_EQ] = ACTIONS(7640), + [anon_sym_LT_EQ_GT] = ACTIONS(7640), + [anon_sym_or] = ACTIONS(7640), + [anon_sym_and] = ACTIONS(7640), + [anon_sym_bitor] = ACTIONS(7640), + [anon_sym_xor] = ACTIONS(7640), + [anon_sym_bitand] = ACTIONS(7640), + [anon_sym_not_eq] = ACTIONS(7640), + [anon_sym_DASH_DASH] = ACTIONS(7640), + [anon_sym_PLUS_PLUS] = ACTIONS(7640), + [anon_sym_DOT] = ACTIONS(7638), + [anon_sym_DOT_STAR] = ACTIONS(7640), + [anon_sym_DASH_GT] = ACTIONS(7638), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7640), + [anon_sym_override] = ACTIONS(7640), + [anon_sym_requires] = ACTIONS(7640), + [anon_sym_DASH_GT_STAR] = ACTIONS(7640), + }, + [STATE(3566)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7648), + [anon_sym_COMMA] = ACTIONS(7648), + [anon_sym_RPAREN] = ACTIONS(7648), + [anon_sym_LPAREN2] = ACTIONS(7648), + [anon_sym_DASH] = ACTIONS(7646), + [anon_sym_PLUS] = ACTIONS(7646), + [anon_sym_STAR] = ACTIONS(7646), + [anon_sym_SLASH] = ACTIONS(7646), + [anon_sym_PERCENT] = ACTIONS(7646), + [anon_sym_PIPE_PIPE] = ACTIONS(7648), + [anon_sym_AMP_AMP] = ACTIONS(7648), + [anon_sym_PIPE] = ACTIONS(7646), + [anon_sym_CARET] = ACTIONS(7646), + [anon_sym_AMP] = ACTIONS(7646), + [anon_sym_EQ_EQ] = ACTIONS(7648), + [anon_sym_BANG_EQ] = ACTIONS(7648), + [anon_sym_GT] = ACTIONS(7646), + [anon_sym_GT_EQ] = ACTIONS(7648), + [anon_sym_LT_EQ] = ACTIONS(7646), + [anon_sym_LT] = ACTIONS(7646), + [anon_sym_LT_LT] = ACTIONS(7646), + [anon_sym_GT_GT] = ACTIONS(7646), + [anon_sym___extension__] = ACTIONS(7648), + [anon_sym_LBRACE] = ACTIONS(7648), + [anon_sym_LBRACK] = ACTIONS(7648), + [anon_sym_EQ] = ACTIONS(7646), + [anon_sym_const] = ACTIONS(7646), + [anon_sym_constexpr] = ACTIONS(7648), + [anon_sym_volatile] = ACTIONS(7648), + [anon_sym_restrict] = ACTIONS(7648), + [anon_sym___restrict__] = ACTIONS(7648), + [anon_sym__Atomic] = ACTIONS(7648), + [anon_sym__Noreturn] = ACTIONS(7648), + [anon_sym_noreturn] = ACTIONS(7648), + [anon_sym__Nonnull] = ACTIONS(7648), + [anon_sym_mutable] = ACTIONS(7648), + [anon_sym_constinit] = ACTIONS(7648), + [anon_sym_consteval] = ACTIONS(7648), + [anon_sym_alignas] = ACTIONS(7648), + [anon_sym__Alignas] = ACTIONS(7648), + [anon_sym_QMARK] = ACTIONS(7648), + [anon_sym_STAR_EQ] = ACTIONS(7648), + [anon_sym_SLASH_EQ] = ACTIONS(7648), + [anon_sym_PERCENT_EQ] = ACTIONS(7648), + [anon_sym_PLUS_EQ] = ACTIONS(7648), + [anon_sym_DASH_EQ] = ACTIONS(7648), + [anon_sym_LT_LT_EQ] = ACTIONS(7648), + [anon_sym_GT_GT_EQ] = ACTIONS(7648), + [anon_sym_AMP_EQ] = ACTIONS(7648), + [anon_sym_CARET_EQ] = ACTIONS(7648), + [anon_sym_PIPE_EQ] = ACTIONS(7648), + [anon_sym_LT_EQ_GT] = ACTIONS(7648), + [anon_sym_or] = ACTIONS(7648), + [anon_sym_and] = ACTIONS(7648), + [anon_sym_bitor] = ACTIONS(7648), + [anon_sym_xor] = ACTIONS(7648), + [anon_sym_bitand] = ACTIONS(7648), + [anon_sym_not_eq] = ACTIONS(7648), + [anon_sym_DASH_DASH] = ACTIONS(7648), + [anon_sym_PLUS_PLUS] = ACTIONS(7648), + [anon_sym_DOT] = ACTIONS(7646), + [anon_sym_DOT_STAR] = ACTIONS(7648), + [anon_sym_DASH_GT] = ACTIONS(7646), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7648), + [anon_sym_override] = ACTIONS(7648), + [anon_sym_requires] = ACTIONS(7648), + [anon_sym_DASH_GT_STAR] = ACTIONS(7648), + }, + [STATE(3567)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7656), + [anon_sym_COMMA] = ACTIONS(7656), + [anon_sym_RPAREN] = ACTIONS(7656), + [anon_sym_LPAREN2] = ACTIONS(7656), + [anon_sym_DASH] = ACTIONS(7654), + [anon_sym_PLUS] = ACTIONS(7654), + [anon_sym_STAR] = ACTIONS(7654), + [anon_sym_SLASH] = ACTIONS(7654), + [anon_sym_PERCENT] = ACTIONS(7654), + [anon_sym_PIPE_PIPE] = ACTIONS(7656), + [anon_sym_AMP_AMP] = ACTIONS(7656), + [anon_sym_PIPE] = ACTIONS(7654), + [anon_sym_CARET] = ACTIONS(7654), + [anon_sym_AMP] = ACTIONS(7654), + [anon_sym_EQ_EQ] = ACTIONS(7656), + [anon_sym_BANG_EQ] = ACTIONS(7656), + [anon_sym_GT] = ACTIONS(7654), + [anon_sym_GT_EQ] = ACTIONS(7656), + [anon_sym_LT_EQ] = ACTIONS(7654), + [anon_sym_LT] = ACTIONS(7654), + [anon_sym_LT_LT] = ACTIONS(7654), + [anon_sym_GT_GT] = ACTIONS(7654), + [anon_sym___extension__] = ACTIONS(7656), + [anon_sym_LBRACE] = ACTIONS(7656), + [anon_sym_LBRACK] = ACTIONS(7656), + [anon_sym_EQ] = ACTIONS(7654), + [anon_sym_const] = ACTIONS(7654), + [anon_sym_constexpr] = ACTIONS(7656), + [anon_sym_volatile] = ACTIONS(7656), + [anon_sym_restrict] = ACTIONS(7656), + [anon_sym___restrict__] = ACTIONS(7656), + [anon_sym__Atomic] = ACTIONS(7656), + [anon_sym__Noreturn] = ACTIONS(7656), + [anon_sym_noreturn] = ACTIONS(7656), + [anon_sym__Nonnull] = ACTIONS(7656), + [anon_sym_mutable] = ACTIONS(7656), + [anon_sym_constinit] = ACTIONS(7656), + [anon_sym_consteval] = ACTIONS(7656), + [anon_sym_alignas] = ACTIONS(7656), + [anon_sym__Alignas] = ACTIONS(7656), + [anon_sym_QMARK] = ACTIONS(7656), + [anon_sym_STAR_EQ] = ACTIONS(7656), + [anon_sym_SLASH_EQ] = ACTIONS(7656), + [anon_sym_PERCENT_EQ] = ACTIONS(7656), + [anon_sym_PLUS_EQ] = ACTIONS(7656), + [anon_sym_DASH_EQ] = ACTIONS(7656), + [anon_sym_LT_LT_EQ] = ACTIONS(7656), + [anon_sym_GT_GT_EQ] = ACTIONS(7656), + [anon_sym_AMP_EQ] = ACTIONS(7656), + [anon_sym_CARET_EQ] = ACTIONS(7656), + [anon_sym_PIPE_EQ] = ACTIONS(7656), + [anon_sym_LT_EQ_GT] = ACTIONS(7656), + [anon_sym_or] = ACTIONS(7656), + [anon_sym_and] = ACTIONS(7656), + [anon_sym_bitor] = ACTIONS(7656), + [anon_sym_xor] = ACTIONS(7656), + [anon_sym_bitand] = ACTIONS(7656), + [anon_sym_not_eq] = ACTIONS(7656), + [anon_sym_DASH_DASH] = ACTIONS(7656), + [anon_sym_PLUS_PLUS] = ACTIONS(7656), + [anon_sym_DOT] = ACTIONS(7654), + [anon_sym_DOT_STAR] = ACTIONS(7656), + [anon_sym_DASH_GT] = ACTIONS(7654), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7656), + [anon_sym_override] = ACTIONS(7656), + [anon_sym_requires] = ACTIONS(7656), + [anon_sym_DASH_GT_STAR] = ACTIONS(7656), + }, + [STATE(3568)] = { + [sym_identifier] = ACTIONS(5591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5593), + [anon_sym_COMMA] = ACTIONS(5593), + [anon_sym_RPAREN] = ACTIONS(5593), + [aux_sym_preproc_if_token2] = ACTIONS(5593), + [aux_sym_preproc_else_token1] = ACTIONS(5593), + [aux_sym_preproc_elif_token1] = ACTIONS(5591), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5593), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5593), + [anon_sym_LPAREN2] = ACTIONS(5593), + [anon_sym_DASH] = ACTIONS(5591), + [anon_sym_PLUS] = ACTIONS(5591), + [anon_sym_STAR] = ACTIONS(5591), + [anon_sym_SLASH] = ACTIONS(5591), + [anon_sym_PERCENT] = ACTIONS(5591), + [anon_sym_PIPE_PIPE] = ACTIONS(5593), + [anon_sym_AMP_AMP] = ACTIONS(5593), + [anon_sym_PIPE] = ACTIONS(5591), + [anon_sym_CARET] = ACTIONS(5591), + [anon_sym_AMP] = ACTIONS(5591), + [anon_sym_EQ_EQ] = ACTIONS(5593), + [anon_sym_BANG_EQ] = ACTIONS(5593), + [anon_sym_GT] = ACTIONS(5591), + [anon_sym_GT_EQ] = ACTIONS(5593), + [anon_sym_LT_EQ] = ACTIONS(5591), + [anon_sym_LT] = ACTIONS(5591), + [anon_sym_LT_LT] = ACTIONS(5591), + [anon_sym_GT_GT] = ACTIONS(5591), + [anon_sym_SEMI] = ACTIONS(5593), + [anon_sym___attribute__] = ACTIONS(5591), + [anon_sym___attribute] = ACTIONS(5591), + [anon_sym_COLON] = ACTIONS(5591), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5593), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5593), + [anon_sym_RBRACE] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5591), + [anon_sym_EQ] = ACTIONS(5591), + [anon_sym_QMARK] = ACTIONS(5593), + [anon_sym_STAR_EQ] = ACTIONS(5593), + [anon_sym_SLASH_EQ] = ACTIONS(5593), + [anon_sym_PERCENT_EQ] = ACTIONS(5593), + [anon_sym_PLUS_EQ] = ACTIONS(5593), + [anon_sym_DASH_EQ] = ACTIONS(5593), + [anon_sym_LT_LT_EQ] = ACTIONS(5593), + [anon_sym_GT_GT_EQ] = ACTIONS(5593), + [anon_sym_AMP_EQ] = ACTIONS(5593), + [anon_sym_CARET_EQ] = ACTIONS(5593), + [anon_sym_PIPE_EQ] = ACTIONS(5593), + [anon_sym_and_eq] = ACTIONS(5591), + [anon_sym_or_eq] = ACTIONS(5591), + [anon_sym_xor_eq] = ACTIONS(5591), + [anon_sym_LT_EQ_GT] = ACTIONS(5593), + [anon_sym_or] = ACTIONS(5591), + [anon_sym_and] = ACTIONS(5591), + [anon_sym_bitor] = ACTIONS(5591), + [anon_sym_xor] = ACTIONS(5591), + [anon_sym_bitand] = ACTIONS(5591), + [anon_sym_not_eq] = ACTIONS(5591), + [anon_sym_DASH_DASH] = ACTIONS(5593), + [anon_sym_PLUS_PLUS] = ACTIONS(5593), + [anon_sym_DOT] = ACTIONS(5591), + [anon_sym_DOT_STAR] = ACTIONS(5593), + [anon_sym_DASH_GT] = ACTIONS(5593), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5591), + [anon_sym_override] = ACTIONS(5591), + [anon_sym_requires] = ACTIONS(5591), + [anon_sym_COLON_RBRACK] = ACTIONS(5593), + }, + [STATE(3569)] = { + [sym_string_literal] = STATE(3584), + [sym_template_argument_list] = STATE(3708), + [sym_raw_string_literal] = STATE(3584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(8376), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___attribute__] = ACTIONS(5611), + [anon_sym___attribute] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(6874), + [anon_sym_u_DQUOTE] = ACTIONS(6874), + [anon_sym_U_DQUOTE] = ACTIONS(6874), + [anon_sym_u8_DQUOTE] = ACTIONS(6874), + [anon_sym_DQUOTE] = ACTIONS(6874), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6876), + [anon_sym_LR_DQUOTE] = ACTIONS(6876), + [anon_sym_uR_DQUOTE] = ACTIONS(6876), + [anon_sym_UR_DQUOTE] = ACTIONS(6876), + [anon_sym_u8R_DQUOTE] = ACTIONS(6876), + }, + [STATE(3570)] = { + [sym__abstract_declarator] = STATE(6333), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3495), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2066), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3495), + [sym_identifier] = ACTIONS(7365), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [aux_sym_preproc_if_token2] = ACTIONS(7367), + [aux_sym_preproc_else_token1] = ACTIONS(7367), + [aux_sym_preproc_elif_token1] = ACTIONS(7365), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7367), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(8441), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7367), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(8443), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7367), + [anon_sym_AMP] = ACTIONS(8445), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7367), + [anon_sym_GT_GT] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(8086), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8086), + [anon_sym_volatile] = ACTIONS(8086), + [anon_sym_restrict] = ACTIONS(8086), + [anon_sym___restrict__] = ACTIONS(8086), + [anon_sym__Atomic] = ACTIONS(8086), + [anon_sym__Noreturn] = ACTIONS(8086), + [anon_sym_noreturn] = ACTIONS(8086), + [anon_sym__Nonnull] = ACTIONS(8086), + [anon_sym_mutable] = ACTIONS(8086), + [anon_sym_constinit] = ACTIONS(8086), + [anon_sym_consteval] = ACTIONS(8086), + [anon_sym_alignas] = ACTIONS(8094), + [anon_sym__Alignas] = ACTIONS(8094), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7365), + [anon_sym_and] = ACTIONS(7365), + [anon_sym_bitor] = ACTIONS(7365), + [anon_sym_xor] = ACTIONS(7365), + [anon_sym_bitand] = ACTIONS(7365), + [anon_sym_not_eq] = ACTIONS(7365), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7345), + }, + [STATE(3571)] = { + [sym_string_literal] = STATE(5137), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(5137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___attribute__] = ACTIONS(5611), + [anon_sym___attribute] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(6888), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(6890), + [anon_sym_SLASH_EQ] = ACTIONS(6890), + [anon_sym_PERCENT_EQ] = ACTIONS(6890), + [anon_sym_PLUS_EQ] = ACTIONS(6890), + [anon_sym_DASH_EQ] = ACTIONS(6890), + [anon_sym_LT_LT_EQ] = ACTIONS(6890), + [anon_sym_GT_GT_EQ] = ACTIONS(6890), + [anon_sym_AMP_EQ] = ACTIONS(6890), + [anon_sym_CARET_EQ] = ACTIONS(6890), + [anon_sym_PIPE_EQ] = ACTIONS(6890), + [anon_sym_and_eq] = ACTIONS(6890), + [anon_sym_or_eq] = ACTIONS(6890), + [anon_sym_xor_eq] = ACTIONS(6890), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(6892), + [anon_sym_u_DQUOTE] = ACTIONS(6892), + [anon_sym_U_DQUOTE] = ACTIONS(6892), + [anon_sym_u8_DQUOTE] = ACTIONS(6892), + [anon_sym_DQUOTE] = ACTIONS(6892), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6894), + [anon_sym_LR_DQUOTE] = ACTIONS(6894), + [anon_sym_uR_DQUOTE] = ACTIONS(6894), + [anon_sym_UR_DQUOTE] = ACTIONS(6894), + [anon_sym_u8R_DQUOTE] = ACTIONS(6894), + }, + [STATE(3572)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7586), + [anon_sym_COMMA] = ACTIONS(7586), + [anon_sym_RPAREN] = ACTIONS(7586), + [anon_sym_LPAREN2] = ACTIONS(7586), + [anon_sym_DASH] = ACTIONS(7584), + [anon_sym_PLUS] = ACTIONS(7584), + [anon_sym_STAR] = ACTIONS(7586), + [anon_sym_SLASH] = ACTIONS(7584), + [anon_sym_PERCENT] = ACTIONS(7586), + [anon_sym_PIPE_PIPE] = ACTIONS(7586), + [anon_sym_AMP_AMP] = ACTIONS(7586), + [anon_sym_PIPE] = ACTIONS(7584), + [anon_sym_CARET] = ACTIONS(7586), + [anon_sym_AMP] = ACTIONS(7584), + [anon_sym_EQ_EQ] = ACTIONS(7586), + [anon_sym_BANG_EQ] = ACTIONS(7586), + [anon_sym_GT] = ACTIONS(7584), + [anon_sym_GT_EQ] = ACTIONS(7586), + [anon_sym_LT_EQ] = ACTIONS(7584), + [anon_sym_LT] = ACTIONS(7584), + [anon_sym_LT_LT] = ACTIONS(7586), + [anon_sym_GT_GT] = ACTIONS(7586), + [anon_sym_SEMI] = ACTIONS(7586), + [anon_sym___extension__] = ACTIONS(7586), + [anon_sym___attribute__] = ACTIONS(7586), + [anon_sym___attribute] = ACTIONS(7584), + [anon_sym_COLON] = ACTIONS(7584), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7586), + [anon_sym_LBRACE] = ACTIONS(7586), + [anon_sym_RBRACE] = ACTIONS(7586), + [anon_sym_signed] = ACTIONS(9238), + [anon_sym_unsigned] = ACTIONS(9238), + [anon_sym_long] = ACTIONS(9238), + [anon_sym_short] = ACTIONS(9238), + [anon_sym_LBRACK] = ACTIONS(7586), + [anon_sym_const] = ACTIONS(7584), + [anon_sym_constexpr] = ACTIONS(7586), + [anon_sym_volatile] = ACTIONS(7586), + [anon_sym_restrict] = ACTIONS(7586), + [anon_sym___restrict__] = ACTIONS(7586), + [anon_sym__Atomic] = ACTIONS(7586), + [anon_sym__Noreturn] = ACTIONS(7586), + [anon_sym_noreturn] = ACTIONS(7586), + [anon_sym__Nonnull] = ACTIONS(7586), + [anon_sym_mutable] = ACTIONS(7586), + [anon_sym_constinit] = ACTIONS(7586), + [anon_sym_consteval] = ACTIONS(7586), + [anon_sym_alignas] = ACTIONS(7586), + [anon_sym__Alignas] = ACTIONS(7586), + [anon_sym_QMARK] = ACTIONS(7586), + [anon_sym_LT_EQ_GT] = ACTIONS(7586), + [anon_sym_or] = ACTIONS(7586), + [anon_sym_and] = ACTIONS(7586), + [anon_sym_bitor] = ACTIONS(7586), + [anon_sym_xor] = ACTIONS(7586), + [anon_sym_bitand] = ACTIONS(7586), + [anon_sym_not_eq] = ACTIONS(7586), + [anon_sym_DASH_DASH] = ACTIONS(7586), + [anon_sym_PLUS_PLUS] = ACTIONS(7586), + [anon_sym_DOT] = ACTIONS(7584), + [anon_sym_DOT_STAR] = ACTIONS(7586), + [anon_sym_DASH_GT] = ACTIONS(7586), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7586), + [anon_sym_override] = ACTIONS(7586), + [anon_sym_requires] = ACTIONS(7586), + [anon_sym_COLON_RBRACK] = ACTIONS(7586), + }, + [STATE(3573)] = { + [sym__abstract_declarator] = STATE(6303), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3525), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2277), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(8453), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7367), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(8455), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7367), + [anon_sym_AMP] = ACTIONS(8457), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7367), + [anon_sym_GT_GT] = ACTIONS(7367), + [anon_sym_SEMI] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(7367), + [anon_sym___attribute] = ACTIONS(7365), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7367), + [anon_sym_and] = ACTIONS(7367), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7367), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7367), + [anon_sym_override] = ACTIONS(7367), + [anon_sym_requires] = ACTIONS(7367), + }, + [STATE(3574)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7592), + [anon_sym_COMMA] = ACTIONS(7592), + [anon_sym_RPAREN] = ACTIONS(7592), + [anon_sym_LPAREN2] = ACTIONS(7592), + [anon_sym_DASH] = ACTIONS(7590), + [anon_sym_PLUS] = ACTIONS(7590), + [anon_sym_STAR] = ACTIONS(7590), + [anon_sym_SLASH] = ACTIONS(7590), + [anon_sym_PERCENT] = ACTIONS(7590), + [anon_sym_PIPE_PIPE] = ACTIONS(7592), + [anon_sym_AMP_AMP] = ACTIONS(7592), + [anon_sym_PIPE] = ACTIONS(7590), + [anon_sym_CARET] = ACTIONS(7590), + [anon_sym_AMP] = ACTIONS(7590), + [anon_sym_EQ_EQ] = ACTIONS(7592), + [anon_sym_BANG_EQ] = ACTIONS(7592), + [anon_sym_GT] = ACTIONS(7590), + [anon_sym_GT_EQ] = ACTIONS(7592), + [anon_sym_LT_EQ] = ACTIONS(7590), + [anon_sym_LT] = ACTIONS(7590), + [anon_sym_LT_LT] = ACTIONS(7590), + [anon_sym_GT_GT] = ACTIONS(7590), + [anon_sym___extension__] = ACTIONS(7592), + [anon_sym_LBRACE] = ACTIONS(7592), + [anon_sym_LBRACK] = ACTIONS(7592), + [anon_sym_EQ] = ACTIONS(7590), + [anon_sym_const] = ACTIONS(7590), + [anon_sym_constexpr] = ACTIONS(7592), + [anon_sym_volatile] = ACTIONS(7592), + [anon_sym_restrict] = ACTIONS(7592), + [anon_sym___restrict__] = ACTIONS(7592), + [anon_sym__Atomic] = ACTIONS(7592), + [anon_sym__Noreturn] = ACTIONS(7592), + [anon_sym_noreturn] = ACTIONS(7592), + [anon_sym__Nonnull] = ACTIONS(7592), + [anon_sym_mutable] = ACTIONS(7592), + [anon_sym_constinit] = ACTIONS(7592), + [anon_sym_consteval] = ACTIONS(7592), + [anon_sym_alignas] = ACTIONS(7592), + [anon_sym__Alignas] = ACTIONS(7592), + [anon_sym_QMARK] = ACTIONS(7592), + [anon_sym_STAR_EQ] = ACTIONS(7592), + [anon_sym_SLASH_EQ] = ACTIONS(7592), + [anon_sym_PERCENT_EQ] = ACTIONS(7592), + [anon_sym_PLUS_EQ] = ACTIONS(7592), + [anon_sym_DASH_EQ] = ACTIONS(7592), + [anon_sym_LT_LT_EQ] = ACTIONS(7592), + [anon_sym_GT_GT_EQ] = ACTIONS(7592), + [anon_sym_AMP_EQ] = ACTIONS(7592), + [anon_sym_CARET_EQ] = ACTIONS(7592), + [anon_sym_PIPE_EQ] = ACTIONS(7592), + [anon_sym_LT_EQ_GT] = ACTIONS(7592), + [anon_sym_or] = ACTIONS(7592), + [anon_sym_and] = ACTIONS(7592), + [anon_sym_bitor] = ACTIONS(7592), + [anon_sym_xor] = ACTIONS(7592), + [anon_sym_bitand] = ACTIONS(7592), + [anon_sym_not_eq] = ACTIONS(7592), + [anon_sym_DASH_DASH] = ACTIONS(7592), + [anon_sym_PLUS_PLUS] = ACTIONS(7592), + [anon_sym_DOT] = ACTIONS(7590), + [anon_sym_DOT_STAR] = ACTIONS(7592), + [anon_sym_DASH_GT] = ACTIONS(7590), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7592), + [anon_sym_override] = ACTIONS(7592), + [anon_sym_requires] = ACTIONS(7592), + [anon_sym_DASH_GT_STAR] = ACTIONS(7592), + }, + [STATE(3575)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7246), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7246), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7246), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7246), + [anon_sym_GT_GT] = ACTIONS(7246), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_EQ] = ACTIONS(7246), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_STAR_EQ] = ACTIONS(7248), + [anon_sym_SLASH_EQ] = ACTIONS(7248), + [anon_sym_PERCENT_EQ] = ACTIONS(7248), + [anon_sym_PLUS_EQ] = ACTIONS(7248), + [anon_sym_DASH_EQ] = ACTIONS(7248), + [anon_sym_LT_LT_EQ] = ACTIONS(7248), + [anon_sym_GT_GT_EQ] = ACTIONS(7248), + [anon_sym_AMP_EQ] = ACTIONS(7248), + [anon_sym_CARET_EQ] = ACTIONS(7248), + [anon_sym_PIPE_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7246), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_DASH_GT_STAR] = ACTIONS(7248), + }, + [STATE(3576)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7558), + [anon_sym_COMMA] = ACTIONS(7558), + [anon_sym_RPAREN] = ACTIONS(7558), + [anon_sym_LPAREN2] = ACTIONS(7558), + [anon_sym_DASH] = ACTIONS(7556), + [anon_sym_PLUS] = ACTIONS(7556), + [anon_sym_STAR] = ACTIONS(7556), + [anon_sym_SLASH] = ACTIONS(7556), + [anon_sym_PERCENT] = ACTIONS(7556), + [anon_sym_PIPE_PIPE] = ACTIONS(7558), + [anon_sym_AMP_AMP] = ACTIONS(7558), + [anon_sym_PIPE] = ACTIONS(7556), + [anon_sym_CARET] = ACTIONS(7556), + [anon_sym_AMP] = ACTIONS(7556), + [anon_sym_EQ_EQ] = ACTIONS(7558), + [anon_sym_BANG_EQ] = ACTIONS(7558), + [anon_sym_GT] = ACTIONS(7556), + [anon_sym_GT_EQ] = ACTIONS(7558), + [anon_sym_LT_EQ] = ACTIONS(7556), + [anon_sym_LT] = ACTIONS(7556), + [anon_sym_LT_LT] = ACTIONS(7556), + [anon_sym_GT_GT] = ACTIONS(7556), + [anon_sym___extension__] = ACTIONS(7558), + [anon_sym_LBRACE] = ACTIONS(7558), + [anon_sym_LBRACK] = ACTIONS(7558), + [anon_sym_EQ] = ACTIONS(7556), + [anon_sym_const] = ACTIONS(7556), + [anon_sym_constexpr] = ACTIONS(7558), + [anon_sym_volatile] = ACTIONS(7558), + [anon_sym_restrict] = ACTIONS(7558), + [anon_sym___restrict__] = ACTIONS(7558), + [anon_sym__Atomic] = ACTIONS(7558), + [anon_sym__Noreturn] = ACTIONS(7558), + [anon_sym_noreturn] = ACTIONS(7558), + [anon_sym__Nonnull] = ACTIONS(7558), + [anon_sym_mutable] = ACTIONS(7558), + [anon_sym_constinit] = ACTIONS(7558), + [anon_sym_consteval] = ACTIONS(7558), + [anon_sym_alignas] = ACTIONS(7558), + [anon_sym__Alignas] = ACTIONS(7558), + [anon_sym_QMARK] = ACTIONS(7558), + [anon_sym_STAR_EQ] = ACTIONS(7558), + [anon_sym_SLASH_EQ] = ACTIONS(7558), + [anon_sym_PERCENT_EQ] = ACTIONS(7558), + [anon_sym_PLUS_EQ] = ACTIONS(7558), + [anon_sym_DASH_EQ] = ACTIONS(7558), + [anon_sym_LT_LT_EQ] = ACTIONS(7558), + [anon_sym_GT_GT_EQ] = ACTIONS(7558), + [anon_sym_AMP_EQ] = ACTIONS(7558), + [anon_sym_CARET_EQ] = ACTIONS(7558), + [anon_sym_PIPE_EQ] = ACTIONS(7558), + [anon_sym_LT_EQ_GT] = ACTIONS(7558), + [anon_sym_or] = ACTIONS(7558), + [anon_sym_and] = ACTIONS(7558), + [anon_sym_bitor] = ACTIONS(7558), + [anon_sym_xor] = ACTIONS(7558), + [anon_sym_bitand] = ACTIONS(7558), + [anon_sym_not_eq] = ACTIONS(7558), + [anon_sym_DASH_DASH] = ACTIONS(7558), + [anon_sym_PLUS_PLUS] = ACTIONS(7558), + [anon_sym_DOT] = ACTIONS(7556), + [anon_sym_DOT_STAR] = ACTIONS(7558), + [anon_sym_DASH_GT] = ACTIONS(7556), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7558), + [anon_sym_override] = ACTIONS(7558), + [anon_sym_requires] = ACTIONS(7558), + [anon_sym_DASH_GT_STAR] = ACTIONS(7558), + }, + [STATE(3577)] = { + [sym_argument_list] = STATE(3823), + [sym_initializer_list] = STATE(5973), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym___attribute__] = ACTIONS(7246), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), + }, + [STATE(3578)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7686), + [anon_sym_COMMA] = ACTIONS(7686), + [anon_sym_RPAREN] = ACTIONS(7686), + [anon_sym_LPAREN2] = ACTIONS(7686), + [anon_sym_DASH] = ACTIONS(7684), + [anon_sym_PLUS] = ACTIONS(7684), + [anon_sym_STAR] = ACTIONS(7686), + [anon_sym_SLASH] = ACTIONS(7684), + [anon_sym_PERCENT] = ACTIONS(7686), + [anon_sym_PIPE_PIPE] = ACTIONS(7686), + [anon_sym_AMP_AMP] = ACTIONS(7686), + [anon_sym_PIPE] = ACTIONS(7684), + [anon_sym_CARET] = ACTIONS(7686), + [anon_sym_AMP] = ACTIONS(7684), + [anon_sym_EQ_EQ] = ACTIONS(7686), + [anon_sym_BANG_EQ] = ACTIONS(7686), + [anon_sym_GT] = ACTIONS(7684), + [anon_sym_GT_EQ] = ACTIONS(7686), + [anon_sym_LT_EQ] = ACTIONS(7684), + [anon_sym_LT] = ACTIONS(7684), + [anon_sym_LT_LT] = ACTIONS(7686), + [anon_sym_GT_GT] = ACTIONS(7686), + [anon_sym_SEMI] = ACTIONS(7686), + [anon_sym___extension__] = ACTIONS(7686), + [anon_sym___attribute__] = ACTIONS(7686), + [anon_sym___attribute] = ACTIONS(7684), + [anon_sym_COLON] = ACTIONS(7684), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7686), + [anon_sym_LBRACE] = ACTIONS(7686), + [anon_sym_RBRACE] = ACTIONS(7686), + [anon_sym_signed] = ACTIONS(9240), + [anon_sym_unsigned] = ACTIONS(9240), + [anon_sym_long] = ACTIONS(9240), + [anon_sym_short] = ACTIONS(9240), + [anon_sym_LBRACK] = ACTIONS(7686), + [anon_sym_const] = ACTIONS(7684), + [anon_sym_constexpr] = ACTIONS(7686), + [anon_sym_volatile] = ACTIONS(7686), + [anon_sym_restrict] = ACTIONS(7686), + [anon_sym___restrict__] = ACTIONS(7686), + [anon_sym__Atomic] = ACTIONS(7686), + [anon_sym__Noreturn] = ACTIONS(7686), + [anon_sym_noreturn] = ACTIONS(7686), + [anon_sym__Nonnull] = ACTIONS(7686), + [anon_sym_mutable] = ACTIONS(7686), + [anon_sym_constinit] = ACTIONS(7686), + [anon_sym_consteval] = ACTIONS(7686), + [anon_sym_alignas] = ACTIONS(7686), + [anon_sym__Alignas] = ACTIONS(7686), + [anon_sym_QMARK] = ACTIONS(7686), + [anon_sym_LT_EQ_GT] = ACTIONS(7686), + [anon_sym_or] = ACTIONS(7686), + [anon_sym_and] = ACTIONS(7686), + [anon_sym_bitor] = ACTIONS(7686), + [anon_sym_xor] = ACTIONS(7686), + [anon_sym_bitand] = ACTIONS(7686), + [anon_sym_not_eq] = ACTIONS(7686), + [anon_sym_DASH_DASH] = ACTIONS(7686), + [anon_sym_PLUS_PLUS] = ACTIONS(7686), + [anon_sym_DOT] = ACTIONS(7684), + [anon_sym_DOT_STAR] = ACTIONS(7686), + [anon_sym_DASH_GT] = ACTIONS(7686), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7686), + [anon_sym_override] = ACTIONS(7686), + [anon_sym_requires] = ACTIONS(7686), + [anon_sym_COLON_RBRACK] = ACTIONS(7686), + }, + [STATE(3579)] = { + [sym_type_qualifier] = STATE(3586), + [sym_alignas_qualifier] = STATE(3830), + [aux_sym__type_definition_type_repeat1] = STATE(3586), + [aux_sym_sized_type_specifier_repeat1] = STATE(3764), + [sym_identifier] = ACTIONS(9242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7211), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(9244), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(9247), + [anon_sym_unsigned] = ACTIONS(9247), + [anon_sym_long] = ACTIONS(9247), + [anon_sym_short] = ACTIONS(9247), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(9244), + [anon_sym_constexpr] = ACTIONS(9244), + [anon_sym_volatile] = ACTIONS(9244), + [anon_sym_restrict] = ACTIONS(9244), + [anon_sym___restrict__] = ACTIONS(9244), + [anon_sym__Atomic] = ACTIONS(9244), + [anon_sym__Noreturn] = ACTIONS(9244), + [anon_sym_noreturn] = ACTIONS(9244), + [anon_sym__Nonnull] = ACTIONS(9244), + [anon_sym_mutable] = ACTIONS(9244), + [anon_sym_constinit] = ACTIONS(9244), + [anon_sym_consteval] = ACTIONS(9244), + [anon_sym_alignas] = ACTIONS(9249), + [anon_sym__Alignas] = ACTIONS(9249), + [sym_primitive_type] = ACTIONS(9252), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7211), + [anon_sym_override] = ACTIONS(7211), + [anon_sym_GT2] = ACTIONS(7209), + [anon_sym_requires] = ACTIONS(7211), + }, + [STATE(3580)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7674), + [anon_sym_COMMA] = ACTIONS(7674), + [anon_sym_RPAREN] = ACTIONS(7674), + [anon_sym_LPAREN2] = ACTIONS(7674), + [anon_sym_DASH] = ACTIONS(7672), + [anon_sym_PLUS] = ACTIONS(7672), + [anon_sym_STAR] = ACTIONS(7672), + [anon_sym_SLASH] = ACTIONS(7672), + [anon_sym_PERCENT] = ACTIONS(7672), + [anon_sym_PIPE_PIPE] = ACTIONS(7674), + [anon_sym_AMP_AMP] = ACTIONS(7674), + [anon_sym_PIPE] = ACTIONS(7672), + [anon_sym_CARET] = ACTIONS(7672), + [anon_sym_AMP] = ACTIONS(7672), + [anon_sym_EQ_EQ] = ACTIONS(7674), + [anon_sym_BANG_EQ] = ACTIONS(7674), + [anon_sym_GT] = ACTIONS(7672), + [anon_sym_GT_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ] = ACTIONS(7672), + [anon_sym_LT] = ACTIONS(7672), + [anon_sym_LT_LT] = ACTIONS(7672), + [anon_sym_GT_GT] = ACTIONS(7672), + [anon_sym___extension__] = ACTIONS(7674), + [anon_sym_LBRACE] = ACTIONS(7674), + [anon_sym_LBRACK] = ACTIONS(7674), + [anon_sym_EQ] = ACTIONS(7672), + [anon_sym_const] = ACTIONS(7672), + [anon_sym_constexpr] = ACTIONS(7674), + [anon_sym_volatile] = ACTIONS(7674), + [anon_sym_restrict] = ACTIONS(7674), + [anon_sym___restrict__] = ACTIONS(7674), + [anon_sym__Atomic] = ACTIONS(7674), + [anon_sym__Noreturn] = ACTIONS(7674), + [anon_sym_noreturn] = ACTIONS(7674), + [anon_sym__Nonnull] = ACTIONS(7674), + [anon_sym_mutable] = ACTIONS(7674), + [anon_sym_constinit] = ACTIONS(7674), + [anon_sym_consteval] = ACTIONS(7674), + [anon_sym_alignas] = ACTIONS(7674), + [anon_sym__Alignas] = ACTIONS(7674), + [anon_sym_QMARK] = ACTIONS(7674), + [anon_sym_STAR_EQ] = ACTIONS(7674), + [anon_sym_SLASH_EQ] = ACTIONS(7674), + [anon_sym_PERCENT_EQ] = ACTIONS(7674), + [anon_sym_PLUS_EQ] = ACTIONS(7674), + [anon_sym_DASH_EQ] = ACTIONS(7674), + [anon_sym_LT_LT_EQ] = ACTIONS(7674), + [anon_sym_GT_GT_EQ] = ACTIONS(7674), + [anon_sym_AMP_EQ] = ACTIONS(7674), + [anon_sym_CARET_EQ] = ACTIONS(7674), + [anon_sym_PIPE_EQ] = ACTIONS(7674), + [anon_sym_LT_EQ_GT] = ACTIONS(7674), + [anon_sym_or] = ACTIONS(7674), + [anon_sym_and] = ACTIONS(7674), + [anon_sym_bitor] = ACTIONS(7674), + [anon_sym_xor] = ACTIONS(7674), + [anon_sym_bitand] = ACTIONS(7674), + [anon_sym_not_eq] = ACTIONS(7674), + [anon_sym_DASH_DASH] = ACTIONS(7674), + [anon_sym_PLUS_PLUS] = ACTIONS(7674), + [anon_sym_DOT] = ACTIONS(7672), + [anon_sym_DOT_STAR] = ACTIONS(7674), + [anon_sym_DASH_GT] = ACTIONS(7672), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7674), + [anon_sym_override] = ACTIONS(7674), + [anon_sym_requires] = ACTIONS(7674), + [anon_sym_DASH_GT_STAR] = ACTIONS(7674), + }, + [STATE(3581)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7616), + [anon_sym_COMMA] = ACTIONS(7616), + [anon_sym_RPAREN] = ACTIONS(7616), + [anon_sym_LPAREN2] = ACTIONS(7616), + [anon_sym_DASH] = ACTIONS(7614), + [anon_sym_PLUS] = ACTIONS(7614), + [anon_sym_STAR] = ACTIONS(7614), + [anon_sym_SLASH] = ACTIONS(7614), + [anon_sym_PERCENT] = ACTIONS(7614), + [anon_sym_PIPE_PIPE] = ACTIONS(7616), + [anon_sym_AMP_AMP] = ACTIONS(7616), + [anon_sym_PIPE] = ACTIONS(7614), + [anon_sym_CARET] = ACTIONS(7614), + [anon_sym_AMP] = ACTIONS(7614), + [anon_sym_EQ_EQ] = ACTIONS(7616), + [anon_sym_BANG_EQ] = ACTIONS(7616), + [anon_sym_GT] = ACTIONS(7614), + [anon_sym_GT_EQ] = ACTIONS(7616), + [anon_sym_LT_EQ] = ACTIONS(7614), + [anon_sym_LT] = ACTIONS(7614), + [anon_sym_LT_LT] = ACTIONS(7614), + [anon_sym_GT_GT] = ACTIONS(7614), + [anon_sym___extension__] = ACTIONS(7616), + [anon_sym_LBRACE] = ACTIONS(7616), + [anon_sym_LBRACK] = ACTIONS(7616), + [anon_sym_EQ] = ACTIONS(7614), + [anon_sym_const] = ACTIONS(7614), + [anon_sym_constexpr] = ACTIONS(7616), + [anon_sym_volatile] = ACTIONS(7616), + [anon_sym_restrict] = ACTIONS(7616), + [anon_sym___restrict__] = ACTIONS(7616), + [anon_sym__Atomic] = ACTIONS(7616), + [anon_sym__Noreturn] = ACTIONS(7616), + [anon_sym_noreturn] = ACTIONS(7616), + [anon_sym__Nonnull] = ACTIONS(7616), + [anon_sym_mutable] = ACTIONS(7616), + [anon_sym_constinit] = ACTIONS(7616), + [anon_sym_consteval] = ACTIONS(7616), + [anon_sym_alignas] = ACTIONS(7616), + [anon_sym__Alignas] = ACTIONS(7616), + [anon_sym_QMARK] = ACTIONS(7616), + [anon_sym_STAR_EQ] = ACTIONS(7616), + [anon_sym_SLASH_EQ] = ACTIONS(7616), + [anon_sym_PERCENT_EQ] = ACTIONS(7616), + [anon_sym_PLUS_EQ] = ACTIONS(7616), + [anon_sym_DASH_EQ] = ACTIONS(7616), + [anon_sym_LT_LT_EQ] = ACTIONS(7616), + [anon_sym_GT_GT_EQ] = ACTIONS(7616), + [anon_sym_AMP_EQ] = ACTIONS(7616), + [anon_sym_CARET_EQ] = ACTIONS(7616), + [anon_sym_PIPE_EQ] = ACTIONS(7616), + [anon_sym_LT_EQ_GT] = ACTIONS(7616), + [anon_sym_or] = ACTIONS(7616), + [anon_sym_and] = ACTIONS(7616), + [anon_sym_bitor] = ACTIONS(7616), + [anon_sym_xor] = ACTIONS(7616), + [anon_sym_bitand] = ACTIONS(7616), + [anon_sym_not_eq] = ACTIONS(7616), + [anon_sym_DASH_DASH] = ACTIONS(7616), + [anon_sym_PLUS_PLUS] = ACTIONS(7616), + [anon_sym_DOT] = ACTIONS(7614), + [anon_sym_DOT_STAR] = ACTIONS(7616), + [anon_sym_DASH_GT] = ACTIONS(7614), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7616), + [anon_sym_override] = ACTIONS(7616), + [anon_sym_requires] = ACTIONS(7616), + [anon_sym_DASH_GT_STAR] = ACTIONS(7616), + }, + [STATE(3582)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(7678), + [anon_sym_COMMA] = ACTIONS(7678), + [anon_sym_RPAREN] = ACTIONS(7678), + [anon_sym_LPAREN2] = ACTIONS(7678), + [anon_sym_DASH] = ACTIONS(7676), + [anon_sym_PLUS] = ACTIONS(7676), + [anon_sym_STAR] = ACTIONS(7676), + [anon_sym_SLASH] = ACTIONS(7676), + [anon_sym_PERCENT] = ACTIONS(7676), + [anon_sym_PIPE_PIPE] = ACTIONS(7678), + [anon_sym_AMP_AMP] = ACTIONS(7678), + [anon_sym_PIPE] = ACTIONS(7676), + [anon_sym_CARET] = ACTIONS(7676), + [anon_sym_AMP] = ACTIONS(7676), + [anon_sym_EQ_EQ] = ACTIONS(7678), + [anon_sym_BANG_EQ] = ACTIONS(7678), + [anon_sym_GT] = ACTIONS(7676), + [anon_sym_GT_EQ] = ACTIONS(7678), + [anon_sym_LT_EQ] = ACTIONS(7676), + [anon_sym_LT] = ACTIONS(7676), + [anon_sym_LT_LT] = ACTIONS(7676), + [anon_sym_GT_GT] = ACTIONS(7676), + [anon_sym___extension__] = ACTIONS(7678), + [anon_sym_LBRACE] = ACTIONS(7678), + [anon_sym_LBRACK] = ACTIONS(7678), + [anon_sym_EQ] = ACTIONS(7676), + [anon_sym_const] = ACTIONS(7676), + [anon_sym_constexpr] = ACTIONS(7678), + [anon_sym_volatile] = ACTIONS(7678), + [anon_sym_restrict] = ACTIONS(7678), + [anon_sym___restrict__] = ACTIONS(7678), + [anon_sym__Atomic] = ACTIONS(7678), + [anon_sym__Noreturn] = ACTIONS(7678), + [anon_sym_noreturn] = ACTIONS(7678), + [anon_sym__Nonnull] = ACTIONS(7678), + [anon_sym_mutable] = ACTIONS(7678), + [anon_sym_constinit] = ACTIONS(7678), + [anon_sym_consteval] = ACTIONS(7678), + [anon_sym_alignas] = ACTIONS(7678), + [anon_sym__Alignas] = ACTIONS(7678), + [anon_sym_QMARK] = ACTIONS(7678), + [anon_sym_STAR_EQ] = ACTIONS(7678), + [anon_sym_SLASH_EQ] = ACTIONS(7678), + [anon_sym_PERCENT_EQ] = ACTIONS(7678), + [anon_sym_PLUS_EQ] = ACTIONS(7678), + [anon_sym_DASH_EQ] = ACTIONS(7678), + [anon_sym_LT_LT_EQ] = ACTIONS(7678), + [anon_sym_GT_GT_EQ] = ACTIONS(7678), + [anon_sym_AMP_EQ] = ACTIONS(7678), + [anon_sym_CARET_EQ] = ACTIONS(7678), + [anon_sym_PIPE_EQ] = ACTIONS(7678), + [anon_sym_LT_EQ_GT] = ACTIONS(7678), + [anon_sym_or] = ACTIONS(7678), + [anon_sym_and] = ACTIONS(7678), + [anon_sym_bitor] = ACTIONS(7678), + [anon_sym_xor] = ACTIONS(7678), + [anon_sym_bitand] = ACTIONS(7678), + [anon_sym_not_eq] = ACTIONS(7678), + [anon_sym_DASH_DASH] = ACTIONS(7678), + [anon_sym_PLUS_PLUS] = ACTIONS(7678), + [anon_sym_DOT] = ACTIONS(7676), + [anon_sym_DOT_STAR] = ACTIONS(7678), + [anon_sym_DASH_GT] = ACTIONS(7676), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7678), + [anon_sym_override] = ACTIONS(7678), + [anon_sym_requires] = ACTIONS(7678), + [anon_sym_DASH_GT_STAR] = ACTIONS(7678), + }, + [STATE(3583)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3519), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7692), + [anon_sym_COMMA] = ACTIONS(7692), + [anon_sym_RPAREN] = ACTIONS(7692), + [anon_sym_LPAREN2] = ACTIONS(7692), + [anon_sym_DASH] = ACTIONS(7690), + [anon_sym_PLUS] = ACTIONS(7690), + [anon_sym_STAR] = ACTIONS(7692), + [anon_sym_SLASH] = ACTIONS(7690), + [anon_sym_PERCENT] = ACTIONS(7692), + [anon_sym_PIPE_PIPE] = ACTIONS(7692), + [anon_sym_AMP_AMP] = ACTIONS(7692), + [anon_sym_PIPE] = ACTIONS(7690), + [anon_sym_CARET] = ACTIONS(7692), + [anon_sym_AMP] = ACTIONS(7690), + [anon_sym_EQ_EQ] = ACTIONS(7692), + [anon_sym_BANG_EQ] = ACTIONS(7692), + [anon_sym_GT] = ACTIONS(7690), + [anon_sym_GT_EQ] = ACTIONS(7692), + [anon_sym_LT_EQ] = ACTIONS(7690), + [anon_sym_LT] = ACTIONS(7690), + [anon_sym_LT_LT] = ACTIONS(7692), + [anon_sym_GT_GT] = ACTIONS(7692), + [anon_sym_SEMI] = ACTIONS(7692), + [anon_sym___extension__] = ACTIONS(7692), + [anon_sym___attribute__] = ACTIONS(7692), + [anon_sym___attribute] = ACTIONS(7690), + [anon_sym_COLON] = ACTIONS(7690), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7692), + [anon_sym_LBRACE] = ACTIONS(7692), + [anon_sym_RBRACE] = ACTIONS(7692), + [anon_sym_signed] = ACTIONS(9254), + [anon_sym_unsigned] = ACTIONS(9254), + [anon_sym_long] = ACTIONS(9254), + [anon_sym_short] = ACTIONS(9254), + [anon_sym_LBRACK] = ACTIONS(7692), + [anon_sym_const] = ACTIONS(7690), + [anon_sym_constexpr] = ACTIONS(7692), + [anon_sym_volatile] = ACTIONS(7692), + [anon_sym_restrict] = ACTIONS(7692), + [anon_sym___restrict__] = ACTIONS(7692), + [anon_sym__Atomic] = ACTIONS(7692), + [anon_sym__Noreturn] = ACTIONS(7692), + [anon_sym_noreturn] = ACTIONS(7692), + [anon_sym__Nonnull] = ACTIONS(7692), + [anon_sym_mutable] = ACTIONS(7692), + [anon_sym_constinit] = ACTIONS(7692), + [anon_sym_consteval] = ACTIONS(7692), + [anon_sym_alignas] = ACTIONS(7692), + [anon_sym__Alignas] = ACTIONS(7692), + [anon_sym_QMARK] = ACTIONS(7692), + [anon_sym_LT_EQ_GT] = ACTIONS(7692), + [anon_sym_or] = ACTIONS(7692), + [anon_sym_and] = ACTIONS(7692), + [anon_sym_bitor] = ACTIONS(7692), + [anon_sym_xor] = ACTIONS(7692), + [anon_sym_bitand] = ACTIONS(7692), + [anon_sym_not_eq] = ACTIONS(7692), + [anon_sym_DASH_DASH] = ACTIONS(7692), + [anon_sym_PLUS_PLUS] = ACTIONS(7692), + [anon_sym_DOT] = ACTIONS(7690), + [anon_sym_DOT_STAR] = ACTIONS(7692), + [anon_sym_DASH_GT] = ACTIONS(7692), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7692), + [anon_sym_override] = ACTIONS(7692), + [anon_sym_requires] = ACTIONS(7692), + [anon_sym_COLON_RBRACK] = ACTIONS(7692), + }, + [STATE(3584)] = { + [sym_string_literal] = STATE(3516), + [sym_raw_string_literal] = STATE(3516), + [aux_sym_concatenated_string_repeat1] = STATE(3516), + [sym_identifier] = ACTIONS(9256), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8464), + [anon_sym_COMMA] = ACTIONS(8464), + [anon_sym_LPAREN2] = ACTIONS(8464), + [anon_sym_DASH] = ACTIONS(8466), + [anon_sym_PLUS] = ACTIONS(8466), + [anon_sym_STAR] = ACTIONS(8466), + [anon_sym_SLASH] = ACTIONS(8466), + [anon_sym_PERCENT] = ACTIONS(8466), + [anon_sym_PIPE_PIPE] = ACTIONS(8464), + [anon_sym_AMP_AMP] = ACTIONS(8464), + [anon_sym_PIPE] = ACTIONS(8466), + [anon_sym_CARET] = ACTIONS(8466), + [anon_sym_AMP] = ACTIONS(8466), + [anon_sym_EQ_EQ] = ACTIONS(8464), + [anon_sym_BANG_EQ] = ACTIONS(8464), + [anon_sym_GT] = ACTIONS(8466), + [anon_sym_GT_EQ] = ACTIONS(8464), + [anon_sym_LT_EQ] = ACTIONS(8466), + [anon_sym_LT] = ACTIONS(8466), + [anon_sym_LT_LT] = ACTIONS(8466), + [anon_sym_GT_GT] = ACTIONS(8466), + [anon_sym_SEMI] = ACTIONS(8464), + [anon_sym___attribute__] = ACTIONS(8466), + [anon_sym___attribute] = ACTIONS(8466), + [anon_sym_LBRACK] = ACTIONS(8464), + [anon_sym_EQ] = ACTIONS(8466), + [anon_sym_QMARK] = ACTIONS(8464), + [anon_sym_STAR_EQ] = ACTIONS(8464), + [anon_sym_SLASH_EQ] = ACTIONS(8464), + [anon_sym_PERCENT_EQ] = ACTIONS(8464), + [anon_sym_PLUS_EQ] = ACTIONS(8464), + [anon_sym_DASH_EQ] = ACTIONS(8464), + [anon_sym_LT_LT_EQ] = ACTIONS(8464), + [anon_sym_GT_GT_EQ] = ACTIONS(8464), + [anon_sym_AMP_EQ] = ACTIONS(8464), + [anon_sym_CARET_EQ] = ACTIONS(8464), + [anon_sym_PIPE_EQ] = ACTIONS(8464), + [anon_sym_and_eq] = ACTIONS(8466), + [anon_sym_or_eq] = ACTIONS(8466), + [anon_sym_xor_eq] = ACTIONS(8466), + [anon_sym_LT_EQ_GT] = ACTIONS(8464), + [anon_sym_or] = ACTIONS(8466), + [anon_sym_and] = ACTIONS(8466), + [anon_sym_bitor] = ACTIONS(8466), + [anon_sym_xor] = ACTIONS(8466), + [anon_sym_bitand] = ACTIONS(8466), + [anon_sym_not_eq] = ACTIONS(8466), + [anon_sym_DASH_DASH] = ACTIONS(8464), + [anon_sym_PLUS_PLUS] = ACTIONS(8464), + [anon_sym_DOT] = ACTIONS(8466), + [anon_sym_DOT_STAR] = ACTIONS(8464), + [anon_sym_DASH_GT] = ACTIONS(8464), + [anon_sym_L_DQUOTE] = ACTIONS(6874), + [anon_sym_u_DQUOTE] = ACTIONS(6874), + [anon_sym_U_DQUOTE] = ACTIONS(6874), + [anon_sym_u8_DQUOTE] = ACTIONS(6874), + [anon_sym_DQUOTE] = ACTIONS(6874), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6876), + [anon_sym_LR_DQUOTE] = ACTIONS(6876), + [anon_sym_uR_DQUOTE] = ACTIONS(6876), + [anon_sym_UR_DQUOTE] = ACTIONS(6876), + [anon_sym_u8R_DQUOTE] = ACTIONS(6876), + [sym_literal_suffix] = ACTIONS(8466), }, [STATE(3585)] = { - [sym__abstract_declarator] = STATE(6368), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3590), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2072), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3590), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_RPAREN] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(8487), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(8489), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(8491), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym_SEMI] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(7393), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7391), - [anon_sym_RBRACE] = ACTIONS(7391), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7391), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7682), + [anon_sym_COMMA] = ACTIONS(7682), + [anon_sym_RPAREN] = ACTIONS(7682), + [anon_sym_LPAREN2] = ACTIONS(7682), + [anon_sym_DASH] = ACTIONS(7680), + [anon_sym_PLUS] = ACTIONS(7680), + [anon_sym_STAR] = ACTIONS(7680), + [anon_sym_SLASH] = ACTIONS(7680), + [anon_sym_PERCENT] = ACTIONS(7680), + [anon_sym_PIPE_PIPE] = ACTIONS(7682), + [anon_sym_AMP_AMP] = ACTIONS(7682), + [anon_sym_PIPE] = ACTIONS(7680), + [anon_sym_CARET] = ACTIONS(7680), + [anon_sym_AMP] = ACTIONS(7680), + [anon_sym_EQ_EQ] = ACTIONS(7682), + [anon_sym_BANG_EQ] = ACTIONS(7682), + [anon_sym_GT] = ACTIONS(7680), + [anon_sym_GT_EQ] = ACTIONS(7682), + [anon_sym_LT_EQ] = ACTIONS(7680), + [anon_sym_LT] = ACTIONS(7680), + [anon_sym_LT_LT] = ACTIONS(7680), + [anon_sym_GT_GT] = ACTIONS(7680), + [anon_sym___extension__] = ACTIONS(7682), + [anon_sym_LBRACE] = ACTIONS(7682), + [anon_sym_LBRACK] = ACTIONS(7682), + [anon_sym_EQ] = ACTIONS(7680), + [anon_sym_const] = ACTIONS(7680), + [anon_sym_constexpr] = ACTIONS(7682), + [anon_sym_volatile] = ACTIONS(7682), + [anon_sym_restrict] = ACTIONS(7682), + [anon_sym___restrict__] = ACTIONS(7682), + [anon_sym__Atomic] = ACTIONS(7682), + [anon_sym__Noreturn] = ACTIONS(7682), + [anon_sym_noreturn] = ACTIONS(7682), + [anon_sym__Nonnull] = ACTIONS(7682), + [anon_sym_mutable] = ACTIONS(7682), + [anon_sym_constinit] = ACTIONS(7682), + [anon_sym_consteval] = ACTIONS(7682), + [anon_sym_alignas] = ACTIONS(7682), + [anon_sym__Alignas] = ACTIONS(7682), + [anon_sym_QMARK] = ACTIONS(7682), + [anon_sym_STAR_EQ] = ACTIONS(7682), + [anon_sym_SLASH_EQ] = ACTIONS(7682), + [anon_sym_PERCENT_EQ] = ACTIONS(7682), + [anon_sym_PLUS_EQ] = ACTIONS(7682), + [anon_sym_DASH_EQ] = ACTIONS(7682), + [anon_sym_LT_LT_EQ] = ACTIONS(7682), + [anon_sym_GT_GT_EQ] = ACTIONS(7682), + [anon_sym_AMP_EQ] = ACTIONS(7682), + [anon_sym_CARET_EQ] = ACTIONS(7682), + [anon_sym_PIPE_EQ] = ACTIONS(7682), + [anon_sym_LT_EQ_GT] = ACTIONS(7682), + [anon_sym_or] = ACTIONS(7682), + [anon_sym_and] = ACTIONS(7682), + [anon_sym_bitor] = ACTIONS(7682), + [anon_sym_xor] = ACTIONS(7682), + [anon_sym_bitand] = ACTIONS(7682), + [anon_sym_not_eq] = ACTIONS(7682), + [anon_sym_DASH_DASH] = ACTIONS(7682), + [anon_sym_PLUS_PLUS] = ACTIONS(7682), + [anon_sym_DOT] = ACTIONS(7680), + [anon_sym_DOT_STAR] = ACTIONS(7682), + [anon_sym_DASH_GT] = ACTIONS(7680), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7682), + [anon_sym_override] = ACTIONS(7682), + [anon_sym_requires] = ACTIONS(7682), + [anon_sym_DASH_GT_STAR] = ACTIONS(7682), }, [STATE(3586)] = { - [sym_string_literal] = STATE(5033), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(5033), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym___attribute__] = ACTIONS(5638), - [anon_sym___attribute] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(6909), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(6911), - [anon_sym_SLASH_EQ] = ACTIONS(6911), - [anon_sym_PERCENT_EQ] = ACTIONS(6911), - [anon_sym_PLUS_EQ] = ACTIONS(6911), - [anon_sym_DASH_EQ] = ACTIONS(6911), - [anon_sym_LT_LT_EQ] = ACTIONS(6911), - [anon_sym_GT_GT_EQ] = ACTIONS(6911), - [anon_sym_AMP_EQ] = ACTIONS(6911), - [anon_sym_CARET_EQ] = ACTIONS(6911), - [anon_sym_PIPE_EQ] = ACTIONS(6911), - [anon_sym_and_eq] = ACTIONS(6911), - [anon_sym_or_eq] = ACTIONS(6911), - [anon_sym_xor_eq] = ACTIONS(6911), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(6913), - [anon_sym_u_DQUOTE] = ACTIONS(6913), - [anon_sym_U_DQUOTE] = ACTIONS(6913), - [anon_sym_u8_DQUOTE] = ACTIONS(6913), - [anon_sym_DQUOTE] = ACTIONS(6913), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6915), - [anon_sym_LR_DQUOTE] = ACTIONS(6915), - [anon_sym_uR_DQUOTE] = ACTIONS(6915), - [anon_sym_UR_DQUOTE] = ACTIONS(6915), - [anon_sym_u8R_DQUOTE] = ACTIONS(6915), + [sym_type_qualifier] = STATE(3671), + [sym_alignas_qualifier] = STATE(3830), + [aux_sym__type_definition_type_repeat1] = STATE(3671), + [aux_sym_sized_type_specifier_repeat1] = STATE(4004), + [sym_identifier] = ACTIONS(9258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7193), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7193), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7193), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7195), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7193), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(9260), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(9263), + [anon_sym_unsigned] = ACTIONS(9263), + [anon_sym_long] = ACTIONS(9263), + [anon_sym_short] = ACTIONS(9263), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_const] = ACTIONS(9260), + [anon_sym_constexpr] = ACTIONS(9260), + [anon_sym_volatile] = ACTIONS(9260), + [anon_sym_restrict] = ACTIONS(9260), + [anon_sym___restrict__] = ACTIONS(9260), + [anon_sym__Atomic] = ACTIONS(9260), + [anon_sym__Noreturn] = ACTIONS(9260), + [anon_sym_noreturn] = ACTIONS(9260), + [anon_sym__Nonnull] = ACTIONS(9260), + [anon_sym_mutable] = ACTIONS(9260), + [anon_sym_constinit] = ACTIONS(9260), + [anon_sym_consteval] = ACTIONS(9260), + [anon_sym_alignas] = ACTIONS(9265), + [anon_sym__Alignas] = ACTIONS(9265), + [sym_primitive_type] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7195), + [anon_sym_override] = ACTIONS(7195), + [anon_sym_GT2] = ACTIONS(7193), + [anon_sym_requires] = ACTIONS(7195), }, [STATE(3587)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3518), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7557), - [anon_sym_COMMA] = ACTIONS(7557), - [anon_sym_RPAREN] = ACTIONS(7557), - [anon_sym_LPAREN2] = ACTIONS(7557), - [anon_sym_DASH] = ACTIONS(7555), - [anon_sym_PLUS] = ACTIONS(7555), - [anon_sym_STAR] = ACTIONS(7557), - [anon_sym_SLASH] = ACTIONS(7555), - [anon_sym_PERCENT] = ACTIONS(7557), - [anon_sym_PIPE_PIPE] = ACTIONS(7557), - [anon_sym_AMP_AMP] = ACTIONS(7557), - [anon_sym_PIPE] = ACTIONS(7555), - [anon_sym_CARET] = ACTIONS(7557), - [anon_sym_AMP] = ACTIONS(7555), - [anon_sym_EQ_EQ] = ACTIONS(7557), - [anon_sym_BANG_EQ] = ACTIONS(7557), - [anon_sym_GT] = ACTIONS(7555), - [anon_sym_GT_EQ] = ACTIONS(7557), - [anon_sym_LT_EQ] = ACTIONS(7555), - [anon_sym_LT] = ACTIONS(7555), - [anon_sym_LT_LT] = ACTIONS(7557), - [anon_sym_GT_GT] = ACTIONS(7557), - [anon_sym_SEMI] = ACTIONS(7557), - [anon_sym___extension__] = ACTIONS(7557), - [anon_sym___attribute__] = ACTIONS(7557), - [anon_sym___attribute] = ACTIONS(7555), - [anon_sym_COLON] = ACTIONS(7555), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7557), - [anon_sym_LBRACE] = ACTIONS(7557), - [anon_sym_RBRACE] = ACTIONS(7557), - [anon_sym_signed] = ACTIONS(9278), - [anon_sym_unsigned] = ACTIONS(9278), - [anon_sym_long] = ACTIONS(9278), - [anon_sym_short] = ACTIONS(9278), - [anon_sym_LBRACK] = ACTIONS(7557), - [anon_sym_const] = ACTIONS(7555), - [anon_sym_constexpr] = ACTIONS(7557), - [anon_sym_volatile] = ACTIONS(7557), - [anon_sym_restrict] = ACTIONS(7557), - [anon_sym___restrict__] = ACTIONS(7557), - [anon_sym__Atomic] = ACTIONS(7557), - [anon_sym__Noreturn] = ACTIONS(7557), - [anon_sym_noreturn] = ACTIONS(7557), - [anon_sym__Nonnull] = ACTIONS(7557), - [anon_sym_mutable] = ACTIONS(7557), - [anon_sym_constinit] = ACTIONS(7557), - [anon_sym_consteval] = ACTIONS(7557), - [anon_sym_alignas] = ACTIONS(7557), - [anon_sym__Alignas] = ACTIONS(7557), - [anon_sym_QMARK] = ACTIONS(7557), - [anon_sym_LT_EQ_GT] = ACTIONS(7557), - [anon_sym_or] = ACTIONS(7557), - [anon_sym_and] = ACTIONS(7557), - [anon_sym_bitor] = ACTIONS(7557), - [anon_sym_xor] = ACTIONS(7557), - [anon_sym_bitand] = ACTIONS(7557), - [anon_sym_not_eq] = ACTIONS(7557), - [anon_sym_DASH_DASH] = ACTIONS(7557), - [anon_sym_PLUS_PLUS] = ACTIONS(7557), - [anon_sym_DOT] = ACTIONS(7555), - [anon_sym_DOT_STAR] = ACTIONS(7557), - [anon_sym_DASH_GT] = ACTIONS(7557), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7557), - [anon_sym_override] = ACTIONS(7557), - [anon_sym_requires] = ACTIONS(7557), - [anon_sym_COLON_RBRACK] = ACTIONS(7557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7551), + [anon_sym_COMMA] = ACTIONS(7551), + [anon_sym_RPAREN] = ACTIONS(7551), + [anon_sym_LPAREN2] = ACTIONS(7551), + [anon_sym_DASH] = ACTIONS(7549), + [anon_sym_PLUS] = ACTIONS(7549), + [anon_sym_STAR] = ACTIONS(7549), + [anon_sym_SLASH] = ACTIONS(7549), + [anon_sym_PERCENT] = ACTIONS(7549), + [anon_sym_PIPE_PIPE] = ACTIONS(7551), + [anon_sym_AMP_AMP] = ACTIONS(7551), + [anon_sym_PIPE] = ACTIONS(7549), + [anon_sym_CARET] = ACTIONS(7549), + [anon_sym_AMP] = ACTIONS(7549), + [anon_sym_EQ_EQ] = ACTIONS(7551), + [anon_sym_BANG_EQ] = ACTIONS(7551), + [anon_sym_GT] = ACTIONS(7549), + [anon_sym_GT_EQ] = ACTIONS(7551), + [anon_sym_LT_EQ] = ACTIONS(7549), + [anon_sym_LT] = ACTIONS(7549), + [anon_sym_LT_LT] = ACTIONS(7549), + [anon_sym_GT_GT] = ACTIONS(7549), + [anon_sym___extension__] = ACTIONS(7551), + [anon_sym_LBRACE] = ACTIONS(7551), + [anon_sym_LBRACK] = ACTIONS(7551), + [anon_sym_EQ] = ACTIONS(7549), + [anon_sym_const] = ACTIONS(7549), + [anon_sym_constexpr] = ACTIONS(7551), + [anon_sym_volatile] = ACTIONS(7551), + [anon_sym_restrict] = ACTIONS(7551), + [anon_sym___restrict__] = ACTIONS(7551), + [anon_sym__Atomic] = ACTIONS(7551), + [anon_sym__Noreturn] = ACTIONS(7551), + [anon_sym_noreturn] = ACTIONS(7551), + [anon_sym__Nonnull] = ACTIONS(7551), + [anon_sym_mutable] = ACTIONS(7551), + [anon_sym_constinit] = ACTIONS(7551), + [anon_sym_consteval] = ACTIONS(7551), + [anon_sym_alignas] = ACTIONS(7551), + [anon_sym__Alignas] = ACTIONS(7551), + [anon_sym_QMARK] = ACTIONS(7551), + [anon_sym_STAR_EQ] = ACTIONS(7551), + [anon_sym_SLASH_EQ] = ACTIONS(7551), + [anon_sym_PERCENT_EQ] = ACTIONS(7551), + [anon_sym_PLUS_EQ] = ACTIONS(7551), + [anon_sym_DASH_EQ] = ACTIONS(7551), + [anon_sym_LT_LT_EQ] = ACTIONS(7551), + [anon_sym_GT_GT_EQ] = ACTIONS(7551), + [anon_sym_AMP_EQ] = ACTIONS(7551), + [anon_sym_CARET_EQ] = ACTIONS(7551), + [anon_sym_PIPE_EQ] = ACTIONS(7551), + [anon_sym_LT_EQ_GT] = ACTIONS(7551), + [anon_sym_or] = ACTIONS(7551), + [anon_sym_and] = ACTIONS(7551), + [anon_sym_bitor] = ACTIONS(7551), + [anon_sym_xor] = ACTIONS(7551), + [anon_sym_bitand] = ACTIONS(7551), + [anon_sym_not_eq] = ACTIONS(7551), + [anon_sym_DASH_DASH] = ACTIONS(7551), + [anon_sym_PLUS_PLUS] = ACTIONS(7551), + [anon_sym_DOT] = ACTIONS(7549), + [anon_sym_DOT_STAR] = ACTIONS(7551), + [anon_sym_DASH_GT] = ACTIONS(7549), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7551), + [anon_sym_override] = ACTIONS(7551), + [anon_sym_requires] = ACTIONS(7551), + [anon_sym_DASH_GT_STAR] = ACTIONS(7551), }, [STATE(3588)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3519), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7785), - [anon_sym_COMMA] = ACTIONS(7785), - [anon_sym_RPAREN] = ACTIONS(7785), - [anon_sym_LPAREN2] = ACTIONS(7785), - [anon_sym_DASH] = ACTIONS(7783), - [anon_sym_PLUS] = ACTIONS(7783), - [anon_sym_STAR] = ACTIONS(7785), - [anon_sym_SLASH] = ACTIONS(7783), - [anon_sym_PERCENT] = ACTIONS(7785), - [anon_sym_PIPE_PIPE] = ACTIONS(7785), - [anon_sym_AMP_AMP] = ACTIONS(7785), - [anon_sym_PIPE] = ACTIONS(7783), - [anon_sym_CARET] = ACTIONS(7785), - [anon_sym_AMP] = ACTIONS(7783), - [anon_sym_EQ_EQ] = ACTIONS(7785), - [anon_sym_BANG_EQ] = ACTIONS(7785), - [anon_sym_GT] = ACTIONS(7783), - [anon_sym_GT_EQ] = ACTIONS(7785), - [anon_sym_LT_EQ] = ACTIONS(7783), - [anon_sym_LT] = ACTIONS(7783), - [anon_sym_LT_LT] = ACTIONS(7785), - [anon_sym_GT_GT] = ACTIONS(7785), - [anon_sym_SEMI] = ACTIONS(7785), - [anon_sym___extension__] = ACTIONS(7785), - [anon_sym___attribute__] = ACTIONS(7785), - [anon_sym___attribute] = ACTIONS(7783), - [anon_sym_COLON] = ACTIONS(7783), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7785), - [anon_sym_LBRACE] = ACTIONS(7785), - [anon_sym_RBRACE] = ACTIONS(7785), - [anon_sym_signed] = ACTIONS(9280), - [anon_sym_unsigned] = ACTIONS(9280), - [anon_sym_long] = ACTIONS(9280), - [anon_sym_short] = ACTIONS(9280), - [anon_sym_LBRACK] = ACTIONS(7785), - [anon_sym_const] = ACTIONS(7783), - [anon_sym_constexpr] = ACTIONS(7785), - [anon_sym_volatile] = ACTIONS(7785), - [anon_sym_restrict] = ACTIONS(7785), - [anon_sym___restrict__] = ACTIONS(7785), - [anon_sym__Atomic] = ACTIONS(7785), - [anon_sym__Noreturn] = ACTIONS(7785), - [anon_sym_noreturn] = ACTIONS(7785), - [anon_sym__Nonnull] = ACTIONS(7785), - [anon_sym_mutable] = ACTIONS(7785), - [anon_sym_constinit] = ACTIONS(7785), - [anon_sym_consteval] = ACTIONS(7785), - [anon_sym_alignas] = ACTIONS(7785), - [anon_sym__Alignas] = ACTIONS(7785), - [anon_sym_QMARK] = ACTIONS(7785), - [anon_sym_LT_EQ_GT] = ACTIONS(7785), - [anon_sym_or] = ACTIONS(7785), - [anon_sym_and] = ACTIONS(7785), - [anon_sym_bitor] = ACTIONS(7785), - [anon_sym_xor] = ACTIONS(7785), - [anon_sym_bitand] = ACTIONS(7785), - [anon_sym_not_eq] = ACTIONS(7785), - [anon_sym_DASH_DASH] = ACTIONS(7785), - [anon_sym_PLUS_PLUS] = ACTIONS(7785), - [anon_sym_DOT] = ACTIONS(7783), - [anon_sym_DOT_STAR] = ACTIONS(7785), - [anon_sym_DASH_GT] = ACTIONS(7785), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7785), - [anon_sym_override] = ACTIONS(7785), - [anon_sym_requires] = ACTIONS(7785), - [anon_sym_COLON_RBRACK] = ACTIONS(7785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7146), + [anon_sym_COMMA] = ACTIONS(7146), + [anon_sym_RPAREN] = ACTIONS(7146), + [anon_sym_LPAREN2] = ACTIONS(7146), + [anon_sym_DASH] = ACTIONS(7144), + [anon_sym_PLUS] = ACTIONS(7144), + [anon_sym_STAR] = ACTIONS(7144), + [anon_sym_SLASH] = ACTIONS(7144), + [anon_sym_PERCENT] = ACTIONS(7144), + [anon_sym_PIPE_PIPE] = ACTIONS(7146), + [anon_sym_AMP_AMP] = ACTIONS(7146), + [anon_sym_PIPE] = ACTIONS(7144), + [anon_sym_CARET] = ACTIONS(7144), + [anon_sym_AMP] = ACTIONS(7144), + [anon_sym_EQ_EQ] = ACTIONS(7146), + [anon_sym_BANG_EQ] = ACTIONS(7146), + [anon_sym_GT] = ACTIONS(7144), + [anon_sym_GT_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ] = ACTIONS(7144), + [anon_sym_LT] = ACTIONS(7144), + [anon_sym_LT_LT] = ACTIONS(7144), + [anon_sym_GT_GT] = ACTIONS(7144), + [anon_sym___extension__] = ACTIONS(7146), + [anon_sym_LBRACE] = ACTIONS(7146), + [anon_sym_LBRACK] = ACTIONS(7146), + [anon_sym_EQ] = ACTIONS(7144), + [anon_sym_const] = ACTIONS(7144), + [anon_sym_constexpr] = ACTIONS(7146), + [anon_sym_volatile] = ACTIONS(7146), + [anon_sym_restrict] = ACTIONS(7146), + [anon_sym___restrict__] = ACTIONS(7146), + [anon_sym__Atomic] = ACTIONS(7146), + [anon_sym__Noreturn] = ACTIONS(7146), + [anon_sym_noreturn] = ACTIONS(7146), + [anon_sym__Nonnull] = ACTIONS(7146), + [anon_sym_mutable] = ACTIONS(7146), + [anon_sym_constinit] = ACTIONS(7146), + [anon_sym_consteval] = ACTIONS(7146), + [anon_sym_alignas] = ACTIONS(7146), + [anon_sym__Alignas] = ACTIONS(7146), + [anon_sym_QMARK] = ACTIONS(7146), + [anon_sym_STAR_EQ] = ACTIONS(7146), + [anon_sym_SLASH_EQ] = ACTIONS(7146), + [anon_sym_PERCENT_EQ] = ACTIONS(7146), + [anon_sym_PLUS_EQ] = ACTIONS(7146), + [anon_sym_DASH_EQ] = ACTIONS(7146), + [anon_sym_LT_LT_EQ] = ACTIONS(7146), + [anon_sym_GT_GT_EQ] = ACTIONS(7146), + [anon_sym_AMP_EQ] = ACTIONS(7146), + [anon_sym_CARET_EQ] = ACTIONS(7146), + [anon_sym_PIPE_EQ] = ACTIONS(7146), + [anon_sym_LT_EQ_GT] = ACTIONS(7146), + [anon_sym_or] = ACTIONS(7146), + [anon_sym_and] = ACTIONS(7146), + [anon_sym_bitor] = ACTIONS(7146), + [anon_sym_xor] = ACTIONS(7146), + [anon_sym_bitand] = ACTIONS(7146), + [anon_sym_not_eq] = ACTIONS(7146), + [anon_sym_DASH_DASH] = ACTIONS(7146), + [anon_sym_PLUS_PLUS] = ACTIONS(7146), + [anon_sym_DOT] = ACTIONS(7144), + [anon_sym_DOT_STAR] = ACTIONS(7146), + [anon_sym_DASH_GT] = ACTIONS(7144), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7146), + [anon_sym_override] = ACTIONS(7146), + [anon_sym_requires] = ACTIONS(7146), + [anon_sym_DASH_GT_STAR] = ACTIONS(7146), }, [STATE(3589)] = { - [sym_string_literal] = STATE(3565), - [sym_raw_string_literal] = STATE(3565), - [aux_sym_concatenated_string_repeat1] = STATE(3565), - [sym_identifier] = ACTIONS(9282), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), - [anon_sym_COMMA] = ACTIONS(8466), - [anon_sym_LPAREN2] = ACTIONS(8466), - [anon_sym_DASH] = ACTIONS(8468), - [anon_sym_PLUS] = ACTIONS(8468), - [anon_sym_STAR] = ACTIONS(8468), - [anon_sym_SLASH] = ACTIONS(8468), - [anon_sym_PERCENT] = ACTIONS(8468), - [anon_sym_PIPE_PIPE] = ACTIONS(8466), - [anon_sym_AMP_AMP] = ACTIONS(8466), - [anon_sym_PIPE] = ACTIONS(8468), - [anon_sym_CARET] = ACTIONS(8468), - [anon_sym_AMP] = ACTIONS(8468), - [anon_sym_EQ_EQ] = ACTIONS(8466), - [anon_sym_BANG_EQ] = ACTIONS(8466), - [anon_sym_GT] = ACTIONS(8468), - [anon_sym_GT_EQ] = ACTIONS(8466), - [anon_sym_LT_EQ] = ACTIONS(8468), - [anon_sym_LT] = ACTIONS(8468), - [anon_sym_LT_LT] = ACTIONS(8468), - [anon_sym_GT_GT] = ACTIONS(8468), - [anon_sym_SEMI] = ACTIONS(8466), - [anon_sym___attribute__] = ACTIONS(8468), - [anon_sym___attribute] = ACTIONS(8468), - [anon_sym_LBRACK] = ACTIONS(8466), - [anon_sym_EQ] = ACTIONS(8468), - [anon_sym_QMARK] = ACTIONS(8466), - [anon_sym_STAR_EQ] = ACTIONS(8466), - [anon_sym_SLASH_EQ] = ACTIONS(8466), - [anon_sym_PERCENT_EQ] = ACTIONS(8466), - [anon_sym_PLUS_EQ] = ACTIONS(8466), - [anon_sym_DASH_EQ] = ACTIONS(8466), - [anon_sym_LT_LT_EQ] = ACTIONS(8466), - [anon_sym_GT_GT_EQ] = ACTIONS(8466), - [anon_sym_AMP_EQ] = ACTIONS(8466), - [anon_sym_CARET_EQ] = ACTIONS(8466), - [anon_sym_PIPE_EQ] = ACTIONS(8466), - [anon_sym_and_eq] = ACTIONS(8468), - [anon_sym_or_eq] = ACTIONS(8468), - [anon_sym_xor_eq] = ACTIONS(8468), - [anon_sym_LT_EQ_GT] = ACTIONS(8466), - [anon_sym_or] = ACTIONS(8468), - [anon_sym_and] = ACTIONS(8468), - [anon_sym_bitor] = ACTIONS(8468), - [anon_sym_xor] = ACTIONS(8468), - [anon_sym_bitand] = ACTIONS(8468), - [anon_sym_not_eq] = ACTIONS(8468), - [anon_sym_DASH_DASH] = ACTIONS(8466), - [anon_sym_PLUS_PLUS] = ACTIONS(8466), - [anon_sym_DOT] = ACTIONS(8468), - [anon_sym_DOT_STAR] = ACTIONS(8466), - [anon_sym_DASH_GT] = ACTIONS(8466), - [anon_sym_L_DQUOTE] = ACTIONS(6876), - [anon_sym_u_DQUOTE] = ACTIONS(6876), - [anon_sym_U_DQUOTE] = ACTIONS(6876), - [anon_sym_u8_DQUOTE] = ACTIONS(6876), - [anon_sym_DQUOTE] = ACTIONS(6876), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6878), - [anon_sym_LR_DQUOTE] = ACTIONS(6878), - [anon_sym_uR_DQUOTE] = ACTIONS(6878), - [anon_sym_UR_DQUOTE] = ACTIONS(6878), - [anon_sym_u8R_DQUOTE] = ACTIONS(6878), - [sym_literal_suffix] = ACTIONS(8468), + [sym_string_literal] = STATE(3589), + [sym_raw_string_literal] = STATE(3589), + [aux_sym_concatenated_string_repeat1] = STATE(3589), + [sym_identifier] = ACTIONS(9270), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8471), + [anon_sym_COMMA] = ACTIONS(8471), + [anon_sym_LPAREN2] = ACTIONS(8471), + [anon_sym_DASH] = ACTIONS(8473), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_STAR] = ACTIONS(8473), + [anon_sym_SLASH] = ACTIONS(8473), + [anon_sym_PERCENT] = ACTIONS(8473), + [anon_sym_PIPE_PIPE] = ACTIONS(8471), + [anon_sym_AMP_AMP] = ACTIONS(8471), + [anon_sym_PIPE] = ACTIONS(8473), + [anon_sym_CARET] = ACTIONS(8473), + [anon_sym_AMP] = ACTIONS(8473), + [anon_sym_EQ_EQ] = ACTIONS(8471), + [anon_sym_BANG_EQ] = ACTIONS(8471), + [anon_sym_GT] = ACTIONS(8473), + [anon_sym_GT_EQ] = ACTIONS(8471), + [anon_sym_LT_EQ] = ACTIONS(8473), + [anon_sym_LT] = ACTIONS(8473), + [anon_sym_LT_LT] = ACTIONS(8473), + [anon_sym_GT_GT] = ACTIONS(8473), + [anon_sym_SEMI] = ACTIONS(8471), + [anon_sym___attribute__] = ACTIONS(8473), + [anon_sym___attribute] = ACTIONS(8473), + [anon_sym_LBRACK] = ACTIONS(8471), + [anon_sym_EQ] = ACTIONS(8473), + [anon_sym_QMARK] = ACTIONS(8471), + [anon_sym_STAR_EQ] = ACTIONS(8471), + [anon_sym_SLASH_EQ] = ACTIONS(8471), + [anon_sym_PERCENT_EQ] = ACTIONS(8471), + [anon_sym_PLUS_EQ] = ACTIONS(8471), + [anon_sym_DASH_EQ] = ACTIONS(8471), + [anon_sym_LT_LT_EQ] = ACTIONS(8471), + [anon_sym_GT_GT_EQ] = ACTIONS(8471), + [anon_sym_AMP_EQ] = ACTIONS(8471), + [anon_sym_CARET_EQ] = ACTIONS(8471), + [anon_sym_PIPE_EQ] = ACTIONS(8471), + [anon_sym_and_eq] = ACTIONS(8473), + [anon_sym_or_eq] = ACTIONS(8473), + [anon_sym_xor_eq] = ACTIONS(8473), + [anon_sym_LT_EQ_GT] = ACTIONS(8471), + [anon_sym_or] = ACTIONS(8473), + [anon_sym_and] = ACTIONS(8473), + [anon_sym_bitor] = ACTIONS(8473), + [anon_sym_xor] = ACTIONS(8473), + [anon_sym_bitand] = ACTIONS(8473), + [anon_sym_not_eq] = ACTIONS(8473), + [anon_sym_DASH_DASH] = ACTIONS(8471), + [anon_sym_PLUS_PLUS] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8473), + [anon_sym_DOT_STAR] = ACTIONS(8471), + [anon_sym_DASH_GT] = ACTIONS(8471), + [anon_sym_L_DQUOTE] = ACTIONS(9273), + [anon_sym_u_DQUOTE] = ACTIONS(9273), + [anon_sym_U_DQUOTE] = ACTIONS(9273), + [anon_sym_u8_DQUOTE] = ACTIONS(9273), + [anon_sym_DQUOTE] = ACTIONS(9273), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9276), + [anon_sym_LR_DQUOTE] = ACTIONS(9276), + [anon_sym_uR_DQUOTE] = ACTIONS(9276), + [anon_sym_UR_DQUOTE] = ACTIONS(9276), + [anon_sym_u8R_DQUOTE] = ACTIONS(9276), + [sym_literal_suffix] = ACTIONS(8473), }, [STATE(3590)] = { - [sym__abstract_declarator] = STATE(6297), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2072), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_RPAREN] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(8487), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(8489), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(8491), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym_SEMI] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym_COLON] = ACTIONS(7349), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7351), - [anon_sym_RBRACE] = ACTIONS(7351), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7351), + [sym_identifier] = ACTIONS(8961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8963), + [anon_sym_COMMA] = ACTIONS(8963), + [anon_sym_RPAREN] = ACTIONS(8963), + [aux_sym_preproc_if_token2] = ACTIONS(8963), + [aux_sym_preproc_else_token1] = ACTIONS(8963), + [aux_sym_preproc_elif_token1] = ACTIONS(8961), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8963), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8963), + [anon_sym_LPAREN2] = ACTIONS(8963), + [anon_sym_DASH] = ACTIONS(8961), + [anon_sym_PLUS] = ACTIONS(8961), + [anon_sym_STAR] = ACTIONS(8961), + [anon_sym_SLASH] = ACTIONS(8961), + [anon_sym_PERCENT] = ACTIONS(8961), + [anon_sym_PIPE_PIPE] = ACTIONS(8963), + [anon_sym_AMP_AMP] = ACTIONS(8963), + [anon_sym_PIPE] = ACTIONS(8961), + [anon_sym_CARET] = ACTIONS(8961), + [anon_sym_AMP] = ACTIONS(8961), + [anon_sym_EQ_EQ] = ACTIONS(8963), + [anon_sym_BANG_EQ] = ACTIONS(8963), + [anon_sym_GT] = ACTIONS(8961), + [anon_sym_GT_EQ] = ACTIONS(8963), + [anon_sym_LT_EQ] = ACTIONS(8961), + [anon_sym_LT] = ACTIONS(8961), + [anon_sym_LT_LT] = ACTIONS(8961), + [anon_sym_GT_GT] = ACTIONS(8961), + [anon_sym_SEMI] = ACTIONS(8963), + [anon_sym___attribute__] = ACTIONS(8961), + [anon_sym___attribute] = ACTIONS(8961), + [anon_sym_COLON] = ACTIONS(8961), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8963), + [anon_sym_RBRACE] = ACTIONS(8963), + [anon_sym_LBRACK] = ACTIONS(8963), + [anon_sym_EQ] = ACTIONS(8961), + [anon_sym_QMARK] = ACTIONS(8963), + [anon_sym_STAR_EQ] = ACTIONS(8963), + [anon_sym_SLASH_EQ] = ACTIONS(8963), + [anon_sym_PERCENT_EQ] = ACTIONS(8963), + [anon_sym_PLUS_EQ] = ACTIONS(8963), + [anon_sym_DASH_EQ] = ACTIONS(8963), + [anon_sym_LT_LT_EQ] = ACTIONS(8963), + [anon_sym_GT_GT_EQ] = ACTIONS(8963), + [anon_sym_AMP_EQ] = ACTIONS(8963), + [anon_sym_CARET_EQ] = ACTIONS(8963), + [anon_sym_PIPE_EQ] = ACTIONS(8963), + [anon_sym_and_eq] = ACTIONS(8961), + [anon_sym_or_eq] = ACTIONS(8961), + [anon_sym_xor_eq] = ACTIONS(8961), + [anon_sym_LT_EQ_GT] = ACTIONS(8963), + [anon_sym_or] = ACTIONS(8961), + [anon_sym_and] = ACTIONS(8961), + [anon_sym_bitor] = ACTIONS(8961), + [anon_sym_xor] = ACTIONS(8961), + [anon_sym_bitand] = ACTIONS(8961), + [anon_sym_not_eq] = ACTIONS(8961), + [anon_sym_DASH_DASH] = ACTIONS(8963), + [anon_sym_PLUS_PLUS] = ACTIONS(8963), + [anon_sym_DOT] = ACTIONS(8961), + [anon_sym_DOT_STAR] = ACTIONS(8963), + [anon_sym_DASH_GT] = ACTIONS(8963), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8961), + [anon_sym_override] = ACTIONS(8961), + [anon_sym_requires] = ACTIONS(8961), + [anon_sym_COLON_RBRACK] = ACTIONS(8963), }, [STATE(3591)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(9222), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9222), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(9224), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [sym__abstract_declarator] = STATE(4204), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_parameter_list] = STATE(1942), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [sym_identifier] = ACTIONS(9279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9281), + [anon_sym_COMMA] = ACTIONS(9281), + [aux_sym_preproc_if_token2] = ACTIONS(9281), + [aux_sym_preproc_else_token1] = ACTIONS(9281), + [aux_sym_preproc_elif_token1] = ACTIONS(9279), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9281), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9281), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(9279), + [anon_sym_PLUS] = ACTIONS(9279), + [anon_sym_STAR] = ACTIONS(6845), + [anon_sym_SLASH] = ACTIONS(9279), + [anon_sym_PERCENT] = ACTIONS(9279), + [anon_sym_PIPE_PIPE] = ACTIONS(9281), + [anon_sym_AMP_AMP] = ACTIONS(6847), + [anon_sym_PIPE] = ACTIONS(9279), + [anon_sym_CARET] = ACTIONS(9279), + [anon_sym_AMP] = ACTIONS(6849), + [anon_sym_EQ_EQ] = ACTIONS(9281), + [anon_sym_BANG_EQ] = ACTIONS(9281), + [anon_sym_GT] = ACTIONS(9279), + [anon_sym_GT_EQ] = ACTIONS(9281), + [anon_sym_LT_EQ] = ACTIONS(9279), + [anon_sym_LT] = ACTIONS(9279), + [anon_sym_LT_LT] = ACTIONS(9279), + [anon_sym_GT_GT] = ACTIONS(9279), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(9279), + [anon_sym_QMARK] = ACTIONS(9281), + [anon_sym_STAR_EQ] = ACTIONS(9281), + [anon_sym_SLASH_EQ] = ACTIONS(9281), + [anon_sym_PERCENT_EQ] = ACTIONS(9281), + [anon_sym_PLUS_EQ] = ACTIONS(9281), + [anon_sym_DASH_EQ] = ACTIONS(9281), + [anon_sym_LT_LT_EQ] = ACTIONS(9281), + [anon_sym_GT_GT_EQ] = ACTIONS(9281), + [anon_sym_AMP_EQ] = ACTIONS(9281), + [anon_sym_CARET_EQ] = ACTIONS(9281), + [anon_sym_PIPE_EQ] = ACTIONS(9281), + [anon_sym_and_eq] = ACTIONS(9279), + [anon_sym_or_eq] = ACTIONS(9279), + [anon_sym_xor_eq] = ACTIONS(9279), + [anon_sym_LT_EQ_GT] = ACTIONS(9281), + [anon_sym_or] = ACTIONS(9279), + [anon_sym_and] = ACTIONS(9279), + [anon_sym_bitor] = ACTIONS(9279), + [anon_sym_xor] = ACTIONS(9279), + [anon_sym_bitand] = ACTIONS(9279), + [anon_sym_not_eq] = ACTIONS(9279), + [anon_sym_DASH_DASH] = ACTIONS(9281), + [anon_sym_PLUS_PLUS] = ACTIONS(9281), + [anon_sym_DOT] = ACTIONS(9279), + [anon_sym_DOT_STAR] = ACTIONS(9281), + [anon_sym_DASH_GT] = ACTIONS(9281), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9279), + [anon_sym_override] = ACTIONS(9279), + [anon_sym_requires] = ACTIONS(9279), }, [STATE(3592)] = { - [sym_string_literal] = STATE(2565), - [sym_template_argument_list] = STATE(4045), - [sym_raw_string_literal] = STATE(2565), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(9236), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(9284), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6883), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(9239), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(2416), - [anon_sym_u_DQUOTE] = ACTIONS(2416), - [anon_sym_U_DQUOTE] = ACTIONS(2416), - [anon_sym_u8_DQUOTE] = ACTIONS(2416), - [anon_sym_DQUOTE] = ACTIONS(2416), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(2428), - [anon_sym_LR_DQUOTE] = ACTIONS(2428), - [anon_sym_uR_DQUOTE] = ACTIONS(2428), - [anon_sym_UR_DQUOTE] = ACTIONS(2428), - [anon_sym_u8R_DQUOTE] = ACTIONS(2428), + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [aux_sym_preproc_if_token2] = ACTIONS(7329), + [aux_sym_preproc_else_token1] = ACTIONS(7329), + [aux_sym_preproc_elif_token1] = ACTIONS(7327), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7329), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_DASH] = ACTIONS(7327), + [anon_sym_PLUS] = ACTIONS(7327), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_SLASH] = ACTIONS(7327), + [anon_sym_PERCENT] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_PIPE] = ACTIONS(7327), + [anon_sym_CARET] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_EQ_EQ] = ACTIONS(7329), + [anon_sym_BANG_EQ] = ACTIONS(7329), + [anon_sym_GT] = ACTIONS(7327), + [anon_sym_GT_EQ] = ACTIONS(7329), + [anon_sym_LT_EQ] = ACTIONS(7327), + [anon_sym_LT] = ACTIONS(7327), + [anon_sym_LT_LT] = ACTIONS(7329), + [anon_sym_GT_GT] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7329), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7329), + [anon_sym_RBRACK] = ACTIONS(7329), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_QMARK] = ACTIONS(7329), + [anon_sym_LT_EQ_GT] = ACTIONS(7329), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_bitor] = ACTIONS(7327), + [anon_sym_xor] = ACTIONS(7327), + [anon_sym_bitand] = ACTIONS(7327), + [anon_sym_not_eq] = ACTIONS(7327), + [anon_sym_DASH_DASH] = ACTIONS(7329), + [anon_sym_PLUS_PLUS] = ACTIONS(7329), + [anon_sym_DOT] = ACTIONS(7327), + [anon_sym_DOT_STAR] = ACTIONS(7329), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_requires] = ACTIONS(7327), }, [STATE(3593)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(7781), - [anon_sym_COMMA] = ACTIONS(7781), - [anon_sym_RPAREN] = ACTIONS(7781), - [anon_sym_LPAREN2] = ACTIONS(7781), - [anon_sym_DASH] = ACTIONS(7779), - [anon_sym_PLUS] = ACTIONS(7779), - [anon_sym_STAR] = ACTIONS(7779), - [anon_sym_SLASH] = ACTIONS(7779), - [anon_sym_PERCENT] = ACTIONS(7779), - [anon_sym_PIPE_PIPE] = ACTIONS(7781), - [anon_sym_AMP_AMP] = ACTIONS(7781), - [anon_sym_PIPE] = ACTIONS(7779), - [anon_sym_CARET] = ACTIONS(7779), - [anon_sym_AMP] = ACTIONS(7779), - [anon_sym_EQ_EQ] = ACTIONS(7781), - [anon_sym_BANG_EQ] = ACTIONS(7781), - [anon_sym_GT] = ACTIONS(7779), - [anon_sym_GT_EQ] = ACTIONS(7781), - [anon_sym_LT_EQ] = ACTIONS(7779), - [anon_sym_LT] = ACTIONS(7779), - [anon_sym_LT_LT] = ACTIONS(7779), - [anon_sym_GT_GT] = ACTIONS(7779), - [anon_sym___extension__] = ACTIONS(7781), - [anon_sym_LBRACE] = ACTIONS(7781), - [anon_sym_LBRACK] = ACTIONS(7781), - [anon_sym_EQ] = ACTIONS(7779), - [anon_sym_const] = ACTIONS(7779), - [anon_sym_constexpr] = ACTIONS(7781), - [anon_sym_volatile] = ACTIONS(7781), - [anon_sym_restrict] = ACTIONS(7781), - [anon_sym___restrict__] = ACTIONS(7781), - [anon_sym__Atomic] = ACTIONS(7781), - [anon_sym__Noreturn] = ACTIONS(7781), - [anon_sym_noreturn] = ACTIONS(7781), - [anon_sym__Nonnull] = ACTIONS(7781), - [anon_sym_mutable] = ACTIONS(7781), - [anon_sym_constinit] = ACTIONS(7781), - [anon_sym_consteval] = ACTIONS(7781), - [anon_sym_alignas] = ACTIONS(7781), - [anon_sym__Alignas] = ACTIONS(7781), - [anon_sym_QMARK] = ACTIONS(7781), - [anon_sym_STAR_EQ] = ACTIONS(7781), - [anon_sym_SLASH_EQ] = ACTIONS(7781), - [anon_sym_PERCENT_EQ] = ACTIONS(7781), - [anon_sym_PLUS_EQ] = ACTIONS(7781), - [anon_sym_DASH_EQ] = ACTIONS(7781), - [anon_sym_LT_LT_EQ] = ACTIONS(7781), - [anon_sym_GT_GT_EQ] = ACTIONS(7781), - [anon_sym_AMP_EQ] = ACTIONS(7781), - [anon_sym_CARET_EQ] = ACTIONS(7781), - [anon_sym_PIPE_EQ] = ACTIONS(7781), - [anon_sym_LT_EQ_GT] = ACTIONS(7781), - [anon_sym_or] = ACTIONS(7781), - [anon_sym_and] = ACTIONS(7781), - [anon_sym_bitor] = ACTIONS(7781), - [anon_sym_xor] = ACTIONS(7781), - [anon_sym_bitand] = ACTIONS(7781), - [anon_sym_not_eq] = ACTIONS(7781), - [anon_sym_DASH_DASH] = ACTIONS(7781), - [anon_sym_PLUS_PLUS] = ACTIONS(7781), - [anon_sym_DOT] = ACTIONS(7779), - [anon_sym_DOT_STAR] = ACTIONS(7781), - [anon_sym_DASH_GT] = ACTIONS(7779), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7781), - [anon_sym_override] = ACTIONS(7781), - [anon_sym_requires] = ACTIONS(7781), - [anon_sym_DASH_GT_STAR] = ACTIONS(7781), + [sym_type_qualifier] = STATE(3593), + [sym_alignas_qualifier] = STATE(3928), + [aux_sym__type_definition_type_repeat1] = STATE(3593), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6880), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6880), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6880), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6880), + [anon_sym_GT_GT] = ACTIONS(6880), + [anon_sym___extension__] = ACTIONS(9283), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACE] = ACTIONS(6880), + [anon_sym_signed] = ACTIONS(6878), + [anon_sym_unsigned] = ACTIONS(6878), + [anon_sym_long] = ACTIONS(6878), + [anon_sym_short] = ACTIONS(6878), + [anon_sym_LBRACK] = ACTIONS(6880), + [anon_sym_RBRACK] = ACTIONS(6880), + [anon_sym_const] = ACTIONS(9283), + [anon_sym_constexpr] = ACTIONS(9283), + [anon_sym_volatile] = ACTIONS(9283), + [anon_sym_restrict] = ACTIONS(9283), + [anon_sym___restrict__] = ACTIONS(9283), + [anon_sym__Atomic] = ACTIONS(9283), + [anon_sym__Noreturn] = ACTIONS(9283), + [anon_sym_noreturn] = ACTIONS(9283), + [anon_sym__Nonnull] = ACTIONS(9283), + [anon_sym_mutable] = ACTIONS(9283), + [anon_sym_constinit] = ACTIONS(9283), + [anon_sym_consteval] = ACTIONS(9283), + [anon_sym_alignas] = ACTIONS(9286), + [anon_sym__Alignas] = ACTIONS(9286), + [sym_primitive_type] = ACTIONS(6878), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_requires] = ACTIONS(6878), }, [STATE(3594)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_TILDE] = ACTIONS(7293), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym_virtual] = ACTIONS(7291), - [anon_sym_extern] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_using] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), - [anon_sym___declspec] = ACTIONS(7291), - [anon_sym___based] = ACTIONS(7291), - [anon_sym___cdecl] = ACTIONS(7291), - [anon_sym___clrcall] = ACTIONS(7291), - [anon_sym___stdcall] = ACTIONS(7291), - [anon_sym___fastcall] = ACTIONS(7291), - [anon_sym___thiscall] = ACTIONS(7291), - [anon_sym___vectorcall] = ACTIONS(7291), - [anon_sym_signed] = ACTIONS(7291), - [anon_sym_unsigned] = ACTIONS(7291), - [anon_sym_long] = ACTIONS(7291), - [anon_sym_short] = ACTIONS(7291), - [anon_sym_LBRACK] = ACTIONS(7291), - [anon_sym_static] = ACTIONS(7291), - [anon_sym_register] = ACTIONS(7291), - [anon_sym_inline] = ACTIONS(7291), - [anon_sym___inline] = ACTIONS(7291), - [anon_sym___inline__] = ACTIONS(7291), - [anon_sym___forceinline] = ACTIONS(7291), - [anon_sym_thread_local] = ACTIONS(7291), - [anon_sym___thread] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [sym_primitive_type] = ACTIONS(7291), - [anon_sym_enum] = ACTIONS(7291), - [anon_sym_class] = ACTIONS(7291), - [anon_sym_struct] = ACTIONS(7291), - [anon_sym_union] = ACTIONS(7291), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_typename] = ACTIONS(7291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_explicit] = ACTIONS(7291), - [anon_sym_template] = ACTIONS(7291), - [anon_sym_operator] = ACTIONS(7291), - [anon_sym_friend] = ACTIONS(7291), - [anon_sym_concept] = ACTIONS(7291), - [anon_sym_LBRACK_COLON] = ACTIONS(7293), + [sym_identifier] = ACTIONS(7327), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_TILDE] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym_virtual] = ACTIONS(7327), + [anon_sym_extern] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_using] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7329), + [anon_sym___declspec] = ACTIONS(7327), + [anon_sym___based] = ACTIONS(7327), + [anon_sym___cdecl] = ACTIONS(7327), + [anon_sym___clrcall] = ACTIONS(7327), + [anon_sym___stdcall] = ACTIONS(7327), + [anon_sym___fastcall] = ACTIONS(7327), + [anon_sym___thiscall] = ACTIONS(7327), + [anon_sym___vectorcall] = ACTIONS(7327), + [anon_sym_signed] = ACTIONS(7327), + [anon_sym_unsigned] = ACTIONS(7327), + [anon_sym_long] = ACTIONS(7327), + [anon_sym_short] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_static] = ACTIONS(7327), + [anon_sym_register] = ACTIONS(7327), + [anon_sym_inline] = ACTIONS(7327), + [anon_sym___inline] = ACTIONS(7327), + [anon_sym___inline__] = ACTIONS(7327), + [anon_sym___forceinline] = ACTIONS(7327), + [anon_sym_thread_local] = ACTIONS(7327), + [anon_sym___thread] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [sym_primitive_type] = ACTIONS(7327), + [anon_sym_enum] = ACTIONS(7327), + [anon_sym_class] = ACTIONS(7327), + [anon_sym_struct] = ACTIONS(7327), + [anon_sym_union] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_typename] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_explicit] = ACTIONS(7327), + [anon_sym_template] = ACTIONS(7327), + [anon_sym_operator] = ACTIONS(7327), + [anon_sym_friend] = ACTIONS(7327), + [anon_sym_concept] = ACTIONS(7327), + [anon_sym_LBRACK_COLON] = ACTIONS(7329), }, [STATE(3595)] = { - [sym_identifier] = ACTIONS(8954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8956), - [anon_sym_COMMA] = ACTIONS(8956), - [anon_sym_RPAREN] = ACTIONS(8956), - [aux_sym_preproc_if_token2] = ACTIONS(8956), - [aux_sym_preproc_else_token1] = ACTIONS(8956), - [aux_sym_preproc_elif_token1] = ACTIONS(8954), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8956), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8956), - [anon_sym_LPAREN2] = ACTIONS(8956), - [anon_sym_DASH] = ACTIONS(8954), - [anon_sym_PLUS] = ACTIONS(8954), - [anon_sym_STAR] = ACTIONS(8954), - [anon_sym_SLASH] = ACTIONS(8954), - [anon_sym_PERCENT] = ACTIONS(8954), - [anon_sym_PIPE_PIPE] = ACTIONS(8956), - [anon_sym_AMP_AMP] = ACTIONS(8956), - [anon_sym_PIPE] = ACTIONS(8954), - [anon_sym_CARET] = ACTIONS(8954), - [anon_sym_AMP] = ACTIONS(8954), - [anon_sym_EQ_EQ] = ACTIONS(8956), - [anon_sym_BANG_EQ] = ACTIONS(8956), - [anon_sym_GT] = ACTIONS(8954), - [anon_sym_GT_EQ] = ACTIONS(8956), - [anon_sym_LT_EQ] = ACTIONS(8954), - [anon_sym_LT] = ACTIONS(8954), - [anon_sym_LT_LT] = ACTIONS(8954), - [anon_sym_GT_GT] = ACTIONS(8954), - [anon_sym_SEMI] = ACTIONS(8956), - [anon_sym___attribute__] = ACTIONS(8954), - [anon_sym___attribute] = ACTIONS(8954), - [anon_sym_COLON] = ACTIONS(8954), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8956), - [anon_sym_RBRACE] = ACTIONS(8956), - [anon_sym_LBRACK] = ACTIONS(8956), - [anon_sym_EQ] = ACTIONS(8954), - [anon_sym_QMARK] = ACTIONS(8956), - [anon_sym_STAR_EQ] = ACTIONS(8956), - [anon_sym_SLASH_EQ] = ACTIONS(8956), - [anon_sym_PERCENT_EQ] = ACTIONS(8956), - [anon_sym_PLUS_EQ] = ACTIONS(8956), - [anon_sym_DASH_EQ] = ACTIONS(8956), - [anon_sym_LT_LT_EQ] = ACTIONS(8956), - [anon_sym_GT_GT_EQ] = ACTIONS(8956), - [anon_sym_AMP_EQ] = ACTIONS(8956), - [anon_sym_CARET_EQ] = ACTIONS(8956), - [anon_sym_PIPE_EQ] = ACTIONS(8956), - [anon_sym_and_eq] = ACTIONS(8954), - [anon_sym_or_eq] = ACTIONS(8954), - [anon_sym_xor_eq] = ACTIONS(8954), - [anon_sym_LT_EQ_GT] = ACTIONS(8956), - [anon_sym_or] = ACTIONS(8954), - [anon_sym_and] = ACTIONS(8954), - [anon_sym_bitor] = ACTIONS(8954), - [anon_sym_xor] = ACTIONS(8954), - [anon_sym_bitand] = ACTIONS(8954), - [anon_sym_not_eq] = ACTIONS(8954), - [anon_sym_DASH_DASH] = ACTIONS(8956), - [anon_sym_PLUS_PLUS] = ACTIONS(8956), - [anon_sym_DOT] = ACTIONS(8954), - [anon_sym_DOT_STAR] = ACTIONS(8956), - [anon_sym_DASH_GT] = ACTIONS(8956), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8954), - [anon_sym_override] = ACTIONS(8954), - [anon_sym_requires] = ACTIONS(8954), - [anon_sym_COLON_RBRACK] = ACTIONS(8956), + [sym_identifier] = ACTIONS(8997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8999), + [anon_sym_COMMA] = ACTIONS(8999), + [anon_sym_RPAREN] = ACTIONS(8999), + [aux_sym_preproc_if_token2] = ACTIONS(8999), + [aux_sym_preproc_else_token1] = ACTIONS(8999), + [aux_sym_preproc_elif_token1] = ACTIONS(8997), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8999), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8999), + [anon_sym_LPAREN2] = ACTIONS(8999), + [anon_sym_DASH] = ACTIONS(8997), + [anon_sym_PLUS] = ACTIONS(8997), + [anon_sym_STAR] = ACTIONS(8997), + [anon_sym_SLASH] = ACTIONS(8997), + [anon_sym_PERCENT] = ACTIONS(8997), + [anon_sym_PIPE_PIPE] = ACTIONS(8999), + [anon_sym_AMP_AMP] = ACTIONS(8999), + [anon_sym_PIPE] = ACTIONS(8997), + [anon_sym_CARET] = ACTIONS(8997), + [anon_sym_AMP] = ACTIONS(8997), + [anon_sym_EQ_EQ] = ACTIONS(8999), + [anon_sym_BANG_EQ] = ACTIONS(8999), + [anon_sym_GT] = ACTIONS(8997), + [anon_sym_GT_EQ] = ACTIONS(8999), + [anon_sym_LT_EQ] = ACTIONS(8997), + [anon_sym_LT] = ACTIONS(8997), + [anon_sym_LT_LT] = ACTIONS(8997), + [anon_sym_GT_GT] = ACTIONS(8997), + [anon_sym_SEMI] = ACTIONS(8999), + [anon_sym___attribute__] = ACTIONS(8997), + [anon_sym___attribute] = ACTIONS(8997), + [anon_sym_COLON] = ACTIONS(8997), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8999), + [anon_sym_RBRACE] = ACTIONS(8999), + [anon_sym_LBRACK] = ACTIONS(8999), + [anon_sym_EQ] = ACTIONS(8997), + [anon_sym_QMARK] = ACTIONS(8999), + [anon_sym_STAR_EQ] = ACTIONS(8999), + [anon_sym_SLASH_EQ] = ACTIONS(8999), + [anon_sym_PERCENT_EQ] = ACTIONS(8999), + [anon_sym_PLUS_EQ] = ACTIONS(8999), + [anon_sym_DASH_EQ] = ACTIONS(8999), + [anon_sym_LT_LT_EQ] = ACTIONS(8999), + [anon_sym_GT_GT_EQ] = ACTIONS(8999), + [anon_sym_AMP_EQ] = ACTIONS(8999), + [anon_sym_CARET_EQ] = ACTIONS(8999), + [anon_sym_PIPE_EQ] = ACTIONS(8999), + [anon_sym_and_eq] = ACTIONS(8997), + [anon_sym_or_eq] = ACTIONS(8997), + [anon_sym_xor_eq] = ACTIONS(8997), + [anon_sym_LT_EQ_GT] = ACTIONS(8999), + [anon_sym_or] = ACTIONS(8997), + [anon_sym_and] = ACTIONS(8997), + [anon_sym_bitor] = ACTIONS(8997), + [anon_sym_xor] = ACTIONS(8997), + [anon_sym_bitand] = ACTIONS(8997), + [anon_sym_not_eq] = ACTIONS(8997), + [anon_sym_DASH_DASH] = ACTIONS(8999), + [anon_sym_PLUS_PLUS] = ACTIONS(8999), + [anon_sym_DOT] = ACTIONS(8997), + [anon_sym_DOT_STAR] = ACTIONS(8999), + [anon_sym_DASH_GT] = ACTIONS(8999), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8997), + [anon_sym_override] = ACTIONS(8997), + [anon_sym_requires] = ACTIONS(8997), + [anon_sym_COLON_RBRACK] = ACTIONS(8999), }, [STATE(3596)] = { - [sym_template_argument_list] = STATE(3740), - [sym_identifier] = ACTIONS(6574), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6567), - [anon_sym_COMMA] = ACTIONS(6567), - [anon_sym_RPAREN] = ACTIONS(6567), - [aux_sym_preproc_if_token2] = ACTIONS(6567), - [aux_sym_preproc_else_token1] = ACTIONS(6567), - [aux_sym_preproc_elif_token1] = ACTIONS(6574), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6567), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6567), - [anon_sym_LPAREN2] = ACTIONS(6567), - [anon_sym_DASH] = ACTIONS(6574), - [anon_sym_PLUS] = ACTIONS(6574), - [anon_sym_STAR] = ACTIONS(6574), - [anon_sym_SLASH] = ACTIONS(6574), - [anon_sym_PERCENT] = ACTIONS(6574), - [anon_sym_PIPE_PIPE] = ACTIONS(6567), - [anon_sym_AMP_AMP] = ACTIONS(6567), - [anon_sym_PIPE] = ACTIONS(6574), - [anon_sym_CARET] = ACTIONS(6574), - [anon_sym_AMP] = ACTIONS(6574), - [anon_sym_EQ_EQ] = ACTIONS(6567), - [anon_sym_BANG_EQ] = ACTIONS(6567), - [anon_sym_GT] = ACTIONS(6574), - [anon_sym_GT_EQ] = ACTIONS(6567), - [anon_sym_LT_EQ] = ACTIONS(6574), - [anon_sym_LT] = ACTIONS(9092), - [anon_sym_LT_LT] = ACTIONS(6574), - [anon_sym_GT_GT] = ACTIONS(6574), - [anon_sym_SEMI] = ACTIONS(6567), - [anon_sym___attribute__] = ACTIONS(6574), - [anon_sym___attribute] = ACTIONS(6574), - [anon_sym_COLON] = ACTIONS(6574), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6567), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_RBRACE] = ACTIONS(6567), - [anon_sym_LBRACK] = ACTIONS(6567), - [anon_sym_EQ] = ACTIONS(6574), - [anon_sym_QMARK] = ACTIONS(6567), - [anon_sym_STAR_EQ] = ACTIONS(6567), - [anon_sym_SLASH_EQ] = ACTIONS(6567), - [anon_sym_PERCENT_EQ] = ACTIONS(6567), - [anon_sym_PLUS_EQ] = ACTIONS(6567), - [anon_sym_DASH_EQ] = ACTIONS(6567), - [anon_sym_LT_LT_EQ] = ACTIONS(6567), - [anon_sym_GT_GT_EQ] = ACTIONS(6567), - [anon_sym_AMP_EQ] = ACTIONS(6567), - [anon_sym_CARET_EQ] = ACTIONS(6567), - [anon_sym_PIPE_EQ] = ACTIONS(6567), - [anon_sym_and_eq] = ACTIONS(6574), - [anon_sym_or_eq] = ACTIONS(6574), - [anon_sym_xor_eq] = ACTIONS(6574), - [anon_sym_LT_EQ_GT] = ACTIONS(6567), - [anon_sym_or] = ACTIONS(6574), - [anon_sym_and] = ACTIONS(6574), - [anon_sym_bitor] = ACTIONS(6574), - [anon_sym_xor] = ACTIONS(6574), - [anon_sym_bitand] = ACTIONS(6574), - [anon_sym_not_eq] = ACTIONS(6574), - [anon_sym_DASH_DASH] = ACTIONS(6567), - [anon_sym_PLUS_PLUS] = ACTIONS(6567), - [anon_sym_DOT] = ACTIONS(6574), - [anon_sym_DOT_STAR] = ACTIONS(6567), - [anon_sym_DASH_GT] = ACTIONS(6567), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6567), + [sym_identifier] = ACTIONS(7133), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_TILDE] = ACTIONS(7135), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym___extension__] = ACTIONS(7133), + [anon_sym_virtual] = ACTIONS(7133), + [anon_sym_extern] = ACTIONS(7133), + [anon_sym___attribute__] = ACTIONS(7133), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_using] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7135), + [anon_sym___declspec] = ACTIONS(7133), + [anon_sym___based] = ACTIONS(7133), + [anon_sym___cdecl] = ACTIONS(7133), + [anon_sym___clrcall] = ACTIONS(7133), + [anon_sym___stdcall] = ACTIONS(7133), + [anon_sym___fastcall] = ACTIONS(7133), + [anon_sym___thiscall] = ACTIONS(7133), + [anon_sym___vectorcall] = ACTIONS(7133), + [anon_sym_signed] = ACTIONS(7133), + [anon_sym_unsigned] = ACTIONS(7133), + [anon_sym_long] = ACTIONS(7133), + [anon_sym_short] = ACTIONS(7133), + [anon_sym_LBRACK] = ACTIONS(7133), + [anon_sym_static] = ACTIONS(7133), + [anon_sym_register] = ACTIONS(7133), + [anon_sym_inline] = ACTIONS(7133), + [anon_sym___inline] = ACTIONS(7133), + [anon_sym___inline__] = ACTIONS(7133), + [anon_sym___forceinline] = ACTIONS(7133), + [anon_sym_thread_local] = ACTIONS(7133), + [anon_sym___thread] = ACTIONS(7133), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7133), + [anon_sym_volatile] = ACTIONS(7133), + [anon_sym_restrict] = ACTIONS(7133), + [anon_sym___restrict__] = ACTIONS(7133), + [anon_sym__Atomic] = ACTIONS(7133), + [anon_sym__Noreturn] = ACTIONS(7133), + [anon_sym_noreturn] = ACTIONS(7133), + [anon_sym__Nonnull] = ACTIONS(7133), + [anon_sym_mutable] = ACTIONS(7133), + [anon_sym_constinit] = ACTIONS(7133), + [anon_sym_consteval] = ACTIONS(7133), + [anon_sym_alignas] = ACTIONS(7133), + [anon_sym__Alignas] = ACTIONS(7133), + [sym_primitive_type] = ACTIONS(7133), + [anon_sym_enum] = ACTIONS(7133), + [anon_sym_class] = ACTIONS(7133), + [anon_sym_struct] = ACTIONS(7133), + [anon_sym_union] = ACTIONS(7133), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_typename] = ACTIONS(7133), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7133), + [anon_sym_decltype] = ACTIONS(7133), + [anon_sym_explicit] = ACTIONS(7133), + [anon_sym_template] = ACTIONS(7133), + [anon_sym_operator] = ACTIONS(7133), + [anon_sym_friend] = ACTIONS(7133), + [anon_sym_concept] = ACTIONS(7133), + [anon_sym_LBRACK_COLON] = ACTIONS(7135), }, [STATE(3597)] = { - [sym_identifier] = ACTIONS(3163), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_RPAREN] = ACTIONS(3161), - [aux_sym_preproc_if_token2] = ACTIONS(3161), - [aux_sym_preproc_else_token1] = ACTIONS(3161), - [aux_sym_preproc_elif_token1] = ACTIONS(3163), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3161), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3161), - [anon_sym_LPAREN2] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_PERCENT] = ACTIONS(3163), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3163), - [anon_sym_EQ_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3163), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym___attribute__] = ACTIONS(3163), - [anon_sym___attribute] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3163), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3163), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_LT_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_GT_EQ] = ACTIONS(3161), - [anon_sym_AMP_EQ] = ACTIONS(3161), - [anon_sym_CARET_EQ] = ACTIONS(3161), - [anon_sym_PIPE_EQ] = ACTIONS(3161), - [anon_sym_and_eq] = ACTIONS(3163), - [anon_sym_or_eq] = ACTIONS(3163), - [anon_sym_xor_eq] = ACTIONS(3163), - [anon_sym_LT_EQ_GT] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3163), - [anon_sym_and] = ACTIONS(3163), - [anon_sym_bitor] = ACTIONS(3163), - [anon_sym_xor] = ACTIONS(3163), - [anon_sym_bitand] = ACTIONS(3163), - [anon_sym_not_eq] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_DOT_STAR] = ACTIONS(3161), - [anon_sym_DASH_GT] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_requires] = ACTIONS(3163), - [anon_sym_COLON_RBRACK] = ACTIONS(3161), + [sym_attribute_specifier] = STATE(4092), + [sym_enumerator_list] = STATE(3903), + [sym__enum_base_clause] = STATE(3810), + [sym_identifier] = ACTIONS(8001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8003), + [anon_sym_COMMA] = ACTIONS(8003), + [aux_sym_preproc_if_token2] = ACTIONS(8003), + [aux_sym_preproc_else_token1] = ACTIONS(8003), + [aux_sym_preproc_elif_token1] = ACTIONS(8001), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8003), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8003), + [anon_sym_LPAREN2] = ACTIONS(8003), + [anon_sym_DASH] = ACTIONS(8001), + [anon_sym_PLUS] = ACTIONS(8001), + [anon_sym_STAR] = ACTIONS(8003), + [anon_sym_SLASH] = ACTIONS(8001), + [anon_sym_PERCENT] = ACTIONS(8003), + [anon_sym_PIPE_PIPE] = ACTIONS(8003), + [anon_sym_AMP_AMP] = ACTIONS(8003), + [anon_sym_PIPE] = ACTIONS(8001), + [anon_sym_CARET] = ACTIONS(8003), + [anon_sym_AMP] = ACTIONS(8001), + [anon_sym_EQ_EQ] = ACTIONS(8003), + [anon_sym_BANG_EQ] = ACTIONS(8003), + [anon_sym_GT] = ACTIONS(8001), + [anon_sym_GT_EQ] = ACTIONS(8003), + [anon_sym_LT_EQ] = ACTIONS(8001), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_LT_LT] = ACTIONS(8003), + [anon_sym_GT_GT] = ACTIONS(8003), + [anon_sym___extension__] = ACTIONS(8001), + [anon_sym___attribute__] = ACTIONS(9211), + [anon_sym___attribute] = ACTIONS(9211), + [anon_sym_COLON] = ACTIONS(9289), + [anon_sym_LBRACE] = ACTIONS(9291), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_const] = ACTIONS(8001), + [anon_sym_constexpr] = ACTIONS(8001), + [anon_sym_volatile] = ACTIONS(8001), + [anon_sym_restrict] = ACTIONS(8001), + [anon_sym___restrict__] = ACTIONS(8001), + [anon_sym__Atomic] = ACTIONS(8001), + [anon_sym__Noreturn] = ACTIONS(8001), + [anon_sym_noreturn] = ACTIONS(8001), + [anon_sym__Nonnull] = ACTIONS(8001), + [anon_sym_mutable] = ACTIONS(8001), + [anon_sym_constinit] = ACTIONS(8001), + [anon_sym_consteval] = ACTIONS(8001), + [anon_sym_alignas] = ACTIONS(8001), + [anon_sym__Alignas] = ACTIONS(8001), + [anon_sym_QMARK] = ACTIONS(8003), + [anon_sym_LT_EQ_GT] = ACTIONS(8003), + [anon_sym_or] = ACTIONS(8001), + [anon_sym_and] = ACTIONS(8001), + [anon_sym_bitor] = ACTIONS(8001), + [anon_sym_xor] = ACTIONS(8001), + [anon_sym_bitand] = ACTIONS(8001), + [anon_sym_not_eq] = ACTIONS(8001), + [anon_sym_DASH_DASH] = ACTIONS(8003), + [anon_sym_PLUS_PLUS] = ACTIONS(8003), + [anon_sym_DOT] = ACTIONS(8001), + [anon_sym_DOT_STAR] = ACTIONS(8003), + [anon_sym_DASH_GT] = ACTIONS(8003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8001), + [anon_sym_override] = ACTIONS(8001), + [anon_sym_requires] = ACTIONS(8001), }, [STATE(3598)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym__function_exception_specification] = STATE(4143), - [sym__function_attributes_end] = STATE(6012), - [sym__function_postfix] = STATE(5532), - [sym_trailing_return_type] = STATE(5907), - [sym_noexcept] = STATE(4143), - [sym_throw_specifier] = STATE(4143), - [sym_requires_clause] = STATE(5532), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7966), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7966), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7966), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7966), - [anon_sym_GT_GT] = ACTIONS(7966), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(7176), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_COLON] = ACTIONS(7968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), - [anon_sym_RBRACE] = ACTIONS(7966), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7966), - [anon_sym_and] = ACTIONS(7966), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7966), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(9287), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9290), - [anon_sym_override] = ACTIONS(9290), - [anon_sym_noexcept] = ACTIONS(7192), - [anon_sym_throw] = ACTIONS(7194), - [anon_sym_requires] = ACTIONS(9293), - [anon_sym_COLON_RBRACK] = ACTIONS(7966), + [sym_attribute_specifier] = STATE(4109), + [sym_enumerator_list] = STATE(3910), + [sym__enum_base_clause] = STATE(3812), + [sym_identifier] = ACTIONS(8007), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8009), + [anon_sym_COMMA] = ACTIONS(8009), + [aux_sym_preproc_if_token2] = ACTIONS(8009), + [aux_sym_preproc_else_token1] = ACTIONS(8009), + [aux_sym_preproc_elif_token1] = ACTIONS(8007), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8009), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8009), + [anon_sym_LPAREN2] = ACTIONS(8009), + [anon_sym_DASH] = ACTIONS(8007), + [anon_sym_PLUS] = ACTIONS(8007), + [anon_sym_STAR] = ACTIONS(8009), + [anon_sym_SLASH] = ACTIONS(8007), + [anon_sym_PERCENT] = ACTIONS(8009), + [anon_sym_PIPE_PIPE] = ACTIONS(8009), + [anon_sym_AMP_AMP] = ACTIONS(8009), + [anon_sym_PIPE] = ACTIONS(8007), + [anon_sym_CARET] = ACTIONS(8009), + [anon_sym_AMP] = ACTIONS(8007), + [anon_sym_EQ_EQ] = ACTIONS(8009), + [anon_sym_BANG_EQ] = ACTIONS(8009), + [anon_sym_GT] = ACTIONS(8007), + [anon_sym_GT_EQ] = ACTIONS(8009), + [anon_sym_LT_EQ] = ACTIONS(8007), + [anon_sym_LT] = ACTIONS(8007), + [anon_sym_LT_LT] = ACTIONS(8009), + [anon_sym_GT_GT] = ACTIONS(8009), + [anon_sym___extension__] = ACTIONS(8007), + [anon_sym___attribute__] = ACTIONS(9211), + [anon_sym___attribute] = ACTIONS(9211), + [anon_sym_COLON] = ACTIONS(9289), + [anon_sym_LBRACE] = ACTIONS(9291), + [anon_sym_LBRACK] = ACTIONS(8009), + [anon_sym_const] = ACTIONS(8007), + [anon_sym_constexpr] = ACTIONS(8007), + [anon_sym_volatile] = ACTIONS(8007), + [anon_sym_restrict] = ACTIONS(8007), + [anon_sym___restrict__] = ACTIONS(8007), + [anon_sym__Atomic] = ACTIONS(8007), + [anon_sym__Noreturn] = ACTIONS(8007), + [anon_sym_noreturn] = ACTIONS(8007), + [anon_sym__Nonnull] = ACTIONS(8007), + [anon_sym_mutable] = ACTIONS(8007), + [anon_sym_constinit] = ACTIONS(8007), + [anon_sym_consteval] = ACTIONS(8007), + [anon_sym_alignas] = ACTIONS(8007), + [anon_sym__Alignas] = ACTIONS(8007), + [anon_sym_QMARK] = ACTIONS(8009), + [anon_sym_LT_EQ_GT] = ACTIONS(8009), + [anon_sym_or] = ACTIONS(8007), + [anon_sym_and] = ACTIONS(8007), + [anon_sym_bitor] = ACTIONS(8007), + [anon_sym_xor] = ACTIONS(8007), + [anon_sym_bitand] = ACTIONS(8007), + [anon_sym_not_eq] = ACTIONS(8007), + [anon_sym_DASH_DASH] = ACTIONS(8009), + [anon_sym_PLUS_PLUS] = ACTIONS(8009), + [anon_sym_DOT] = ACTIONS(8007), + [anon_sym_DOT_STAR] = ACTIONS(8009), + [anon_sym_DASH_GT] = ACTIONS(8009), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8007), + [anon_sym_override] = ACTIONS(8007), + [anon_sym_requires] = ACTIONS(8007), }, [STATE(3599)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON] = ACTIONS(5698), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [sym_identifier] = ACTIONS(6586), + [anon_sym_LPAREN2] = ACTIONS(6588), + [anon_sym_TILDE] = ACTIONS(6588), + [anon_sym_STAR] = ACTIONS(6588), + [anon_sym_PIPE_PIPE] = ACTIONS(6588), + [anon_sym_AMP_AMP] = ACTIONS(6588), + [anon_sym_AMP] = ACTIONS(6586), + [anon_sym___extension__] = ACTIONS(6586), + [anon_sym_virtual] = ACTIONS(6586), + [anon_sym_extern] = ACTIONS(6586), + [anon_sym___attribute__] = ACTIONS(6586), + [anon_sym___attribute] = ACTIONS(6586), + [anon_sym_using] = ACTIONS(6586), + [anon_sym_COLON_COLON] = ACTIONS(6588), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6588), + [anon_sym___declspec] = ACTIONS(6586), + [anon_sym___based] = ACTIONS(6586), + [anon_sym___cdecl] = ACTIONS(6586), + [anon_sym___clrcall] = ACTIONS(6586), + [anon_sym___stdcall] = ACTIONS(6586), + [anon_sym___fastcall] = ACTIONS(6586), + [anon_sym___thiscall] = ACTIONS(6586), + [anon_sym___vectorcall] = ACTIONS(6586), + [anon_sym_signed] = ACTIONS(6586), + [anon_sym_unsigned] = ACTIONS(6586), + [anon_sym_long] = ACTIONS(6586), + [anon_sym_short] = ACTIONS(6586), + [anon_sym_LBRACK] = ACTIONS(6586), + [anon_sym_static] = ACTIONS(6586), + [anon_sym_register] = ACTIONS(6586), + [anon_sym_inline] = ACTIONS(6586), + [anon_sym___inline] = ACTIONS(6586), + [anon_sym___inline__] = ACTIONS(6586), + [anon_sym___forceinline] = ACTIONS(6586), + [anon_sym_thread_local] = ACTIONS(6586), + [anon_sym___thread] = ACTIONS(6586), + [anon_sym_const] = ACTIONS(6586), + [anon_sym_constexpr] = ACTIONS(6586), + [anon_sym_volatile] = ACTIONS(6586), + [anon_sym_restrict] = ACTIONS(6586), + [anon_sym___restrict__] = ACTIONS(6586), + [anon_sym__Atomic] = ACTIONS(6586), + [anon_sym__Noreturn] = ACTIONS(6586), + [anon_sym_noreturn] = ACTIONS(6586), + [anon_sym__Nonnull] = ACTIONS(6586), + [anon_sym_mutable] = ACTIONS(6586), + [anon_sym_constinit] = ACTIONS(6586), + [anon_sym_consteval] = ACTIONS(6586), + [anon_sym_alignas] = ACTIONS(6586), + [anon_sym__Alignas] = ACTIONS(6586), + [sym_primitive_type] = ACTIONS(6586), + [anon_sym_enum] = ACTIONS(6586), + [anon_sym_class] = ACTIONS(6586), + [anon_sym_struct] = ACTIONS(6586), + [anon_sym_union] = ACTIONS(6586), + [anon_sym_or] = ACTIONS(6586), + [anon_sym_and] = ACTIONS(6586), + [anon_sym_typename] = ACTIONS(6586), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6586), + [anon_sym_decltype] = ACTIONS(6586), + [anon_sym_explicit] = ACTIONS(6586), + [anon_sym_template] = ACTIONS(6586), + [anon_sym_operator] = ACTIONS(6586), + [anon_sym_friend] = ACTIONS(6586), + [anon_sym_concept] = ACTIONS(6586), + [anon_sym_LBRACK_COLON] = ACTIONS(6588), }, [STATE(3600)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(8659), - [anon_sym_COMMA] = ACTIONS(8659), - [anon_sym_RPAREN] = ACTIONS(8659), - [anon_sym_LPAREN2] = ACTIONS(8659), - [anon_sym_DASH] = ACTIONS(8657), - [anon_sym_PLUS] = ACTIONS(8657), - [anon_sym_STAR] = ACTIONS(8657), - [anon_sym_SLASH] = ACTIONS(8657), - [anon_sym_PERCENT] = ACTIONS(8657), - [anon_sym_PIPE_PIPE] = ACTIONS(8659), - [anon_sym_AMP_AMP] = ACTIONS(8659), - [anon_sym_PIPE] = ACTIONS(8657), - [anon_sym_CARET] = ACTIONS(8657), - [anon_sym_AMP] = ACTIONS(8657), - [anon_sym_EQ_EQ] = ACTIONS(8659), - [anon_sym_BANG_EQ] = ACTIONS(8659), - [anon_sym_GT] = ACTIONS(8657), - [anon_sym_GT_EQ] = ACTIONS(8659), - [anon_sym_LT_EQ] = ACTIONS(8657), - [anon_sym_LT] = ACTIONS(8657), - [anon_sym_LT_LT] = ACTIONS(8657), - [anon_sym_GT_GT] = ACTIONS(8657), - [anon_sym_SEMI] = ACTIONS(8659), - [anon_sym_COLON] = ACTIONS(8657), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8659), - [anon_sym_RBRACE] = ACTIONS(8659), - [anon_sym_LBRACK] = ACTIONS(8659), - [anon_sym_EQ] = ACTIONS(8657), - [anon_sym_QMARK] = ACTIONS(8659), - [anon_sym_STAR_EQ] = ACTIONS(8659), - [anon_sym_SLASH_EQ] = ACTIONS(8659), - [anon_sym_PERCENT_EQ] = ACTIONS(8659), - [anon_sym_PLUS_EQ] = ACTIONS(8659), - [anon_sym_DASH_EQ] = ACTIONS(8659), - [anon_sym_LT_LT_EQ] = ACTIONS(8659), - [anon_sym_GT_GT_EQ] = ACTIONS(8659), - [anon_sym_AMP_EQ] = ACTIONS(8659), - [anon_sym_CARET_EQ] = ACTIONS(8659), - [anon_sym_PIPE_EQ] = ACTIONS(8659), - [anon_sym_and_eq] = ACTIONS(8657), - [anon_sym_or_eq] = ACTIONS(8657), - [anon_sym_xor_eq] = ACTIONS(8657), - [anon_sym_LT_EQ_GT] = ACTIONS(8659), - [anon_sym_or] = ACTIONS(8657), - [anon_sym_and] = ACTIONS(8657), - [anon_sym_bitor] = ACTIONS(8657), - [anon_sym_xor] = ACTIONS(8657), - [anon_sym_bitand] = ACTIONS(8657), - [anon_sym_not_eq] = ACTIONS(8657), - [anon_sym_DASH_DASH] = ACTIONS(8659), - [anon_sym_PLUS_PLUS] = ACTIONS(8659), - [anon_sym_DOT] = ACTIONS(8657), - [anon_sym_DOT_STAR] = ACTIONS(8659), - [anon_sym_DASH_GT] = ACTIONS(8659), - [anon_sym_L_DQUOTE] = ACTIONS(8659), - [anon_sym_u_DQUOTE] = ACTIONS(8659), - [anon_sym_U_DQUOTE] = ACTIONS(8659), - [anon_sym_u8_DQUOTE] = ACTIONS(8659), - [anon_sym_DQUOTE] = ACTIONS(8659), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8659), - [anon_sym_LR_DQUOTE] = ACTIONS(8659), - [anon_sym_uR_DQUOTE] = ACTIONS(8659), - [anon_sym_UR_DQUOTE] = ACTIONS(8659), - [anon_sym_u8R_DQUOTE] = ACTIONS(8659), - [anon_sym_COLON_RBRACK] = ACTIONS(8659), - [sym_literal_suffix] = ACTIONS(8657), + [sym_identifier] = ACTIONS(9293), + [anon_sym_LPAREN2] = ACTIONS(9295), + [anon_sym_TILDE] = ACTIONS(9295), + [anon_sym_STAR] = ACTIONS(9295), + [anon_sym_PIPE_PIPE] = ACTIONS(9297), + [anon_sym_AMP_AMP] = ACTIONS(9299), + [anon_sym_AMP] = ACTIONS(9293), + [anon_sym___extension__] = ACTIONS(9293), + [anon_sym_virtual] = ACTIONS(9293), + [anon_sym_extern] = ACTIONS(9293), + [anon_sym___attribute__] = ACTIONS(9293), + [anon_sym___attribute] = ACTIONS(9293), + [anon_sym_using] = ACTIONS(9293), + [anon_sym_COLON_COLON] = ACTIONS(9295), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9295), + [anon_sym___declspec] = ACTIONS(9293), + [anon_sym___based] = ACTIONS(9293), + [anon_sym___cdecl] = ACTIONS(9293), + [anon_sym___clrcall] = ACTIONS(9293), + [anon_sym___stdcall] = ACTIONS(9293), + [anon_sym___fastcall] = ACTIONS(9293), + [anon_sym___thiscall] = ACTIONS(9293), + [anon_sym___vectorcall] = ACTIONS(9293), + [anon_sym_signed] = ACTIONS(9293), + [anon_sym_unsigned] = ACTIONS(9293), + [anon_sym_long] = ACTIONS(9293), + [anon_sym_short] = ACTIONS(9293), + [anon_sym_LBRACK] = ACTIONS(9293), + [anon_sym_static] = ACTIONS(9293), + [anon_sym_register] = ACTIONS(9293), + [anon_sym_inline] = ACTIONS(9293), + [anon_sym___inline] = ACTIONS(9293), + [anon_sym___inline__] = ACTIONS(9293), + [anon_sym___forceinline] = ACTIONS(9293), + [anon_sym_thread_local] = ACTIONS(9293), + [anon_sym___thread] = ACTIONS(9293), + [anon_sym_const] = ACTIONS(9293), + [anon_sym_constexpr] = ACTIONS(9293), + [anon_sym_volatile] = ACTIONS(9293), + [anon_sym_restrict] = ACTIONS(9293), + [anon_sym___restrict__] = ACTIONS(9293), + [anon_sym__Atomic] = ACTIONS(9293), + [anon_sym__Noreturn] = ACTIONS(9293), + [anon_sym_noreturn] = ACTIONS(9293), + [anon_sym__Nonnull] = ACTIONS(9293), + [anon_sym_mutable] = ACTIONS(9293), + [anon_sym_constinit] = ACTIONS(9293), + [anon_sym_consteval] = ACTIONS(9293), + [anon_sym_alignas] = ACTIONS(9293), + [anon_sym__Alignas] = ACTIONS(9293), + [sym_primitive_type] = ACTIONS(9293), + [anon_sym_enum] = ACTIONS(9293), + [anon_sym_class] = ACTIONS(9293), + [anon_sym_struct] = ACTIONS(9293), + [anon_sym_union] = ACTIONS(9293), + [anon_sym_or] = ACTIONS(9301), + [anon_sym_and] = ACTIONS(9303), + [anon_sym_typename] = ACTIONS(9293), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9293), + [anon_sym_decltype] = ACTIONS(9293), + [anon_sym_explicit] = ACTIONS(9293), + [anon_sym_template] = ACTIONS(9293), + [anon_sym_operator] = ACTIONS(9293), + [anon_sym_friend] = ACTIONS(9293), + [anon_sym_concept] = ACTIONS(9293), + [anon_sym_LBRACK_COLON] = ACTIONS(9295), }, [STATE(3601)] = { - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7789), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7789), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7789), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7789), - [anon_sym_GT_GT] = ACTIONS(7789), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7789), - [anon_sym___attribute] = ACTIONS(7789), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7791), - [anon_sym_EQ] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_STAR_EQ] = ACTIONS(7791), - [anon_sym_SLASH_EQ] = ACTIONS(7791), - [anon_sym_PERCENT_EQ] = ACTIONS(7791), - [anon_sym_PLUS_EQ] = ACTIONS(7791), - [anon_sym_DASH_EQ] = ACTIONS(7791), - [anon_sym_LT_LT_EQ] = ACTIONS(7791), - [anon_sym_GT_GT_EQ] = ACTIONS(7791), - [anon_sym_AMP_EQ] = ACTIONS(7791), - [anon_sym_CARET_EQ] = ACTIONS(7791), - [anon_sym_PIPE_EQ] = ACTIONS(7791), - [anon_sym_and_eq] = ACTIONS(7789), - [anon_sym_or_eq] = ACTIONS(7789), - [anon_sym_xor_eq] = ACTIONS(7789), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(7791), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7789), - [anon_sym_override] = ACTIONS(7789), - [anon_sym_requires] = ACTIONS(7789), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), + [sym_argument_list] = STATE(3833), + [sym_initializer_list] = STATE(3833), + [sym_identifier] = ACTIONS(9305), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9307), + [anon_sym_COMMA] = ACTIONS(9307), + [anon_sym_RPAREN] = ACTIONS(9307), + [aux_sym_preproc_if_token2] = ACTIONS(9307), + [aux_sym_preproc_else_token1] = ACTIONS(9307), + [aux_sym_preproc_elif_token1] = ACTIONS(9305), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9307), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9307), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9305), + [anon_sym_PLUS] = ACTIONS(9305), + [anon_sym_STAR] = ACTIONS(9305), + [anon_sym_SLASH] = ACTIONS(9305), + [anon_sym_PERCENT] = ACTIONS(9305), + [anon_sym_PIPE_PIPE] = ACTIONS(9307), + [anon_sym_AMP_AMP] = ACTIONS(9307), + [anon_sym_PIPE] = ACTIONS(9305), + [anon_sym_CARET] = ACTIONS(9305), + [anon_sym_AMP] = ACTIONS(9305), + [anon_sym_EQ_EQ] = ACTIONS(9307), + [anon_sym_BANG_EQ] = ACTIONS(9307), + [anon_sym_GT] = ACTIONS(9305), + [anon_sym_GT_EQ] = ACTIONS(9307), + [anon_sym_LT_EQ] = ACTIONS(9305), + [anon_sym_LT] = ACTIONS(9305), + [anon_sym_LT_LT] = ACTIONS(9305), + [anon_sym_GT_GT] = ACTIONS(9305), + [anon_sym_SEMI] = ACTIONS(9307), + [anon_sym___attribute__] = ACTIONS(9305), + [anon_sym___attribute] = ACTIONS(9305), + [anon_sym_COLON] = ACTIONS(9305), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9307), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(9307), + [anon_sym_LBRACK] = ACTIONS(9307), + [anon_sym_EQ] = ACTIONS(9305), + [anon_sym_QMARK] = ACTIONS(9307), + [anon_sym_STAR_EQ] = ACTIONS(9307), + [anon_sym_SLASH_EQ] = ACTIONS(9307), + [anon_sym_PERCENT_EQ] = ACTIONS(9307), + [anon_sym_PLUS_EQ] = ACTIONS(9307), + [anon_sym_DASH_EQ] = ACTIONS(9307), + [anon_sym_LT_LT_EQ] = ACTIONS(9307), + [anon_sym_GT_GT_EQ] = ACTIONS(9307), + [anon_sym_AMP_EQ] = ACTIONS(9307), + [anon_sym_CARET_EQ] = ACTIONS(9307), + [anon_sym_PIPE_EQ] = ACTIONS(9307), + [anon_sym_and_eq] = ACTIONS(9305), + [anon_sym_or_eq] = ACTIONS(9305), + [anon_sym_xor_eq] = ACTIONS(9305), + [anon_sym_LT_EQ_GT] = ACTIONS(9307), + [anon_sym_or] = ACTIONS(9305), + [anon_sym_and] = ACTIONS(9305), + [anon_sym_bitor] = ACTIONS(9305), + [anon_sym_xor] = ACTIONS(9305), + [anon_sym_bitand] = ACTIONS(9305), + [anon_sym_not_eq] = ACTIONS(9305), + [anon_sym_DASH_DASH] = ACTIONS(9307), + [anon_sym_PLUS_PLUS] = ACTIONS(9307), + [anon_sym_DOT] = ACTIONS(9305), + [anon_sym_DOT_STAR] = ACTIONS(9307), + [anon_sym_DASH_GT] = ACTIONS(9307), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9307), }, [STATE(3602)] = { - [sym_template_argument_list] = STATE(2053), - [sym_identifier] = ACTIONS(7092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), - [anon_sym_COMMA] = ACTIONS(7097), - [anon_sym_RPAREN] = ACTIONS(7097), - [aux_sym_preproc_if_token2] = ACTIONS(7097), - [aux_sym_preproc_else_token1] = ACTIONS(7097), - [aux_sym_preproc_elif_token1] = ACTIONS(7092), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7097), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7097), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_DASH] = ACTIONS(7092), - [anon_sym_PLUS] = ACTIONS(7092), - [anon_sym_STAR] = ACTIONS(7092), - [anon_sym_SLASH] = ACTIONS(7092), - [anon_sym_PERCENT] = ACTIONS(7092), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7097), - [anon_sym_PIPE] = ACTIONS(7092), - [anon_sym_CARET] = ACTIONS(7092), - [anon_sym_AMP] = ACTIONS(7092), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7092), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7445), - [anon_sym_LT_LT] = ACTIONS(7092), - [anon_sym_GT_GT] = ACTIONS(7092), - [anon_sym_SEMI] = ACTIONS(7097), - [anon_sym___attribute__] = ACTIONS(7092), - [anon_sym___attribute] = ACTIONS(7092), - [anon_sym_COLON] = ACTIONS(7092), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7097), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7097), - [anon_sym_LBRACK] = ACTIONS(7097), - [anon_sym_EQ] = ACTIONS(7092), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_STAR_EQ] = ACTIONS(7097), - [anon_sym_SLASH_EQ] = ACTIONS(7097), - [anon_sym_PERCENT_EQ] = ACTIONS(7097), - [anon_sym_PLUS_EQ] = ACTIONS(7097), - [anon_sym_DASH_EQ] = ACTIONS(7097), - [anon_sym_LT_LT_EQ] = ACTIONS(7097), - [anon_sym_GT_GT_EQ] = ACTIONS(7097), - [anon_sym_AMP_EQ] = ACTIONS(7097), - [anon_sym_CARET_EQ] = ACTIONS(7097), - [anon_sym_PIPE_EQ] = ACTIONS(7097), - [anon_sym_and_eq] = ACTIONS(7092), - [anon_sym_or_eq] = ACTIONS(7092), - [anon_sym_xor_eq] = ACTIONS(7092), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7092), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_bitor] = ACTIONS(7092), - [anon_sym_xor] = ACTIONS(7092), - [anon_sym_bitand] = ACTIONS(7092), - [anon_sym_not_eq] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7092), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7097), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7097), + [sym_identifier] = ACTIONS(9011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9013), + [anon_sym_COMMA] = ACTIONS(9013), + [anon_sym_RPAREN] = ACTIONS(9013), + [aux_sym_preproc_if_token2] = ACTIONS(9013), + [aux_sym_preproc_else_token1] = ACTIONS(9013), + [aux_sym_preproc_elif_token1] = ACTIONS(9011), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9013), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9013), + [anon_sym_LPAREN2] = ACTIONS(9013), + [anon_sym_DASH] = ACTIONS(9011), + [anon_sym_PLUS] = ACTIONS(9011), + [anon_sym_STAR] = ACTIONS(9011), + [anon_sym_SLASH] = ACTIONS(9011), + [anon_sym_PERCENT] = ACTIONS(9011), + [anon_sym_PIPE_PIPE] = ACTIONS(9013), + [anon_sym_AMP_AMP] = ACTIONS(9013), + [anon_sym_PIPE] = ACTIONS(9011), + [anon_sym_CARET] = ACTIONS(9011), + [anon_sym_AMP] = ACTIONS(9011), + [anon_sym_EQ_EQ] = ACTIONS(9013), + [anon_sym_BANG_EQ] = ACTIONS(9013), + [anon_sym_GT] = ACTIONS(9011), + [anon_sym_GT_EQ] = ACTIONS(9013), + [anon_sym_LT_EQ] = ACTIONS(9011), + [anon_sym_LT] = ACTIONS(9011), + [anon_sym_LT_LT] = ACTIONS(9011), + [anon_sym_GT_GT] = ACTIONS(9011), + [anon_sym_SEMI] = ACTIONS(9013), + [anon_sym___attribute__] = ACTIONS(9011), + [anon_sym___attribute] = ACTIONS(9011), + [anon_sym_COLON] = ACTIONS(9011), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9013), + [anon_sym_RBRACE] = ACTIONS(9013), + [anon_sym_LBRACK] = ACTIONS(9013), + [anon_sym_EQ] = ACTIONS(9011), + [anon_sym_QMARK] = ACTIONS(9013), + [anon_sym_STAR_EQ] = ACTIONS(9013), + [anon_sym_SLASH_EQ] = ACTIONS(9013), + [anon_sym_PERCENT_EQ] = ACTIONS(9013), + [anon_sym_PLUS_EQ] = ACTIONS(9013), + [anon_sym_DASH_EQ] = ACTIONS(9013), + [anon_sym_LT_LT_EQ] = ACTIONS(9013), + [anon_sym_GT_GT_EQ] = ACTIONS(9013), + [anon_sym_AMP_EQ] = ACTIONS(9013), + [anon_sym_CARET_EQ] = ACTIONS(9013), + [anon_sym_PIPE_EQ] = ACTIONS(9013), + [anon_sym_and_eq] = ACTIONS(9011), + [anon_sym_or_eq] = ACTIONS(9011), + [anon_sym_xor_eq] = ACTIONS(9011), + [anon_sym_LT_EQ_GT] = ACTIONS(9013), + [anon_sym_or] = ACTIONS(9011), + [anon_sym_and] = ACTIONS(9011), + [anon_sym_bitor] = ACTIONS(9011), + [anon_sym_xor] = ACTIONS(9011), + [anon_sym_bitand] = ACTIONS(9011), + [anon_sym_not_eq] = ACTIONS(9011), + [anon_sym_DASH_DASH] = ACTIONS(9013), + [anon_sym_PLUS_PLUS] = ACTIONS(9013), + [anon_sym_DOT] = ACTIONS(9011), + [anon_sym_DOT_STAR] = ACTIONS(9013), + [anon_sym_DASH_GT] = ACTIONS(9013), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9011), + [anon_sym_override] = ACTIONS(9011), + [anon_sym_requires] = ACTIONS(9011), + [anon_sym_COLON_RBRACK] = ACTIONS(9013), }, [STATE(3603)] = { - [sym_identifier] = ACTIONS(9296), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9298), - [anon_sym_COMMA] = ACTIONS(9298), - [anon_sym_RPAREN] = ACTIONS(9298), - [aux_sym_preproc_if_token2] = ACTIONS(9298), - [aux_sym_preproc_else_token1] = ACTIONS(9298), - [aux_sym_preproc_elif_token1] = ACTIONS(9296), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9298), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9298), - [anon_sym_LPAREN2] = ACTIONS(9298), - [anon_sym_DASH] = ACTIONS(9296), - [anon_sym_PLUS] = ACTIONS(9296), - [anon_sym_STAR] = ACTIONS(9296), - [anon_sym_SLASH] = ACTIONS(9296), - [anon_sym_PERCENT] = ACTIONS(9296), - [anon_sym_PIPE_PIPE] = ACTIONS(9298), - [anon_sym_AMP_AMP] = ACTIONS(9298), - [anon_sym_PIPE] = ACTIONS(9296), - [anon_sym_CARET] = ACTIONS(9296), - [anon_sym_AMP] = ACTIONS(9296), - [anon_sym_EQ_EQ] = ACTIONS(9298), - [anon_sym_BANG_EQ] = ACTIONS(9298), - [anon_sym_GT] = ACTIONS(9296), - [anon_sym_GT_EQ] = ACTIONS(9298), - [anon_sym_LT_EQ] = ACTIONS(9296), - [anon_sym_LT] = ACTIONS(9296), - [anon_sym_LT_LT] = ACTIONS(9296), - [anon_sym_GT_GT] = ACTIONS(9296), - [anon_sym_SEMI] = ACTIONS(9298), - [anon_sym___attribute__] = ACTIONS(9296), - [anon_sym___attribute] = ACTIONS(9296), - [anon_sym_COLON] = ACTIONS(9296), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9298), - [anon_sym_RBRACE] = ACTIONS(9298), - [anon_sym_LBRACK] = ACTIONS(9298), - [anon_sym_EQ] = ACTIONS(9296), - [anon_sym_QMARK] = ACTIONS(9298), - [anon_sym_STAR_EQ] = ACTIONS(9298), - [anon_sym_SLASH_EQ] = ACTIONS(9298), - [anon_sym_PERCENT_EQ] = ACTIONS(9298), - [anon_sym_PLUS_EQ] = ACTIONS(9298), - [anon_sym_DASH_EQ] = ACTIONS(9298), - [anon_sym_LT_LT_EQ] = ACTIONS(9298), - [anon_sym_GT_GT_EQ] = ACTIONS(9298), - [anon_sym_AMP_EQ] = ACTIONS(9298), - [anon_sym_CARET_EQ] = ACTIONS(9298), - [anon_sym_PIPE_EQ] = ACTIONS(9298), - [anon_sym_and_eq] = ACTIONS(9296), - [anon_sym_or_eq] = ACTIONS(9296), - [anon_sym_xor_eq] = ACTIONS(9296), - [anon_sym_LT_EQ_GT] = ACTIONS(9298), - [anon_sym_or] = ACTIONS(9296), - [anon_sym_and] = ACTIONS(9296), - [anon_sym_bitor] = ACTIONS(9296), - [anon_sym_xor] = ACTIONS(9296), - [anon_sym_bitand] = ACTIONS(9296), - [anon_sym_not_eq] = ACTIONS(9296), - [anon_sym_DASH_DASH] = ACTIONS(9298), - [anon_sym_PLUS_PLUS] = ACTIONS(9298), - [anon_sym_DOT] = ACTIONS(9296), - [anon_sym_DOT_STAR] = ACTIONS(9298), - [anon_sym_DASH_GT] = ACTIONS(9298), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9296), - [anon_sym_override] = ACTIONS(9296), - [anon_sym_requires] = ACTIONS(9296), - [anon_sym_COLON_RBRACK] = ACTIONS(9298), + [aux_sym_sized_type_specifier_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7246), + [anon_sym_override] = ACTIONS(7246), + [anon_sym_requires] = ACTIONS(7246), }, [STATE(3604)] = { - [sym_attribute_declaration] = STATE(3710), - [sym_parameter_list] = STATE(3140), - [aux_sym_attributed_declarator_repeat1] = STATE(3710), - [sym_identifier] = ACTIONS(9300), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9302), - [anon_sym_COMMA] = ACTIONS(9302), - [anon_sym_RPAREN] = ACTIONS(9302), - [aux_sym_preproc_if_token2] = ACTIONS(9302), - [aux_sym_preproc_else_token1] = ACTIONS(9302), - [aux_sym_preproc_elif_token1] = ACTIONS(9300), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9302), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9302), - [anon_sym_LPAREN2] = ACTIONS(9304), - [anon_sym_DASH] = ACTIONS(9300), - [anon_sym_PLUS] = ACTIONS(9300), - [anon_sym_STAR] = ACTIONS(9300), - [anon_sym_SLASH] = ACTIONS(9300), - [anon_sym_PERCENT] = ACTIONS(9300), - [anon_sym_PIPE_PIPE] = ACTIONS(9302), - [anon_sym_AMP_AMP] = ACTIONS(9302), - [anon_sym_PIPE] = ACTIONS(9300), - [anon_sym_CARET] = ACTIONS(9300), - [anon_sym_AMP] = ACTIONS(9300), - [anon_sym_EQ_EQ] = ACTIONS(9302), - [anon_sym_BANG_EQ] = ACTIONS(9302), - [anon_sym_GT] = ACTIONS(9300), - [anon_sym_GT_EQ] = ACTIONS(9302), - [anon_sym_LT_EQ] = ACTIONS(9300), - [anon_sym_LT] = ACTIONS(9300), - [anon_sym_LT_LT] = ACTIONS(9300), - [anon_sym_GT_GT] = ACTIONS(9300), - [anon_sym_SEMI] = ACTIONS(9302), - [anon_sym___attribute__] = ACTIONS(9300), - [anon_sym___attribute] = ACTIONS(9300), - [anon_sym_COLON] = ACTIONS(9300), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACE] = ACTIONS(9302), - [anon_sym_LBRACK] = ACTIONS(9306), - [anon_sym_EQ] = ACTIONS(9300), - [anon_sym_QMARK] = ACTIONS(9302), - [anon_sym_STAR_EQ] = ACTIONS(9302), - [anon_sym_SLASH_EQ] = ACTIONS(9302), - [anon_sym_PERCENT_EQ] = ACTIONS(9302), - [anon_sym_PLUS_EQ] = ACTIONS(9302), - [anon_sym_DASH_EQ] = ACTIONS(9302), - [anon_sym_LT_LT_EQ] = ACTIONS(9302), - [anon_sym_GT_GT_EQ] = ACTIONS(9302), - [anon_sym_AMP_EQ] = ACTIONS(9302), - [anon_sym_CARET_EQ] = ACTIONS(9302), - [anon_sym_PIPE_EQ] = ACTIONS(9302), - [anon_sym_and_eq] = ACTIONS(9300), - [anon_sym_or_eq] = ACTIONS(9300), - [anon_sym_xor_eq] = ACTIONS(9300), - [anon_sym_LT_EQ_GT] = ACTIONS(9302), - [anon_sym_or] = ACTIONS(9300), - [anon_sym_and] = ACTIONS(9300), - [anon_sym_bitor] = ACTIONS(9300), - [anon_sym_xor] = ACTIONS(9300), - [anon_sym_bitand] = ACTIONS(9300), - [anon_sym_not_eq] = ACTIONS(9300), - [anon_sym_DASH_DASH] = ACTIONS(9302), - [anon_sym_PLUS_PLUS] = ACTIONS(9302), - [anon_sym_DOT] = ACTIONS(9300), - [anon_sym_DOT_STAR] = ACTIONS(9302), - [anon_sym_DASH_GT] = ACTIONS(9302), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9302), + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym__function_exception_specification] = STATE(4110), + [sym__function_attributes_end] = STATE(5987), + [sym__function_postfix] = STATE(5370), + [sym_trailing_return_type] = STATE(5793), + [sym_noexcept] = STATE(4110), + [sym_throw_specifier] = STATE(4110), + [sym_requires_clause] = STATE(5370), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7874), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7874), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7874), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7874), + [anon_sym_GT_GT] = ACTIONS(7874), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7874), + [anon_sym_and] = ACTIONS(7874), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7874), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(9221), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7272), + [anon_sym_override] = ACTIONS(7272), + [anon_sym_noexcept] = ACTIONS(7235), + [anon_sym_throw] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7274), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), }, [STATE(3605)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_RPAREN] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7525), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7525), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7525), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7525), - [anon_sym_GT_GT] = ACTIONS(7525), - [anon_sym_SEMI] = ACTIONS(7525), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_COLON] = ACTIONS(7528), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7525), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_RBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8505), - [anon_sym_unsigned] = ACTIONS(8505), - [anon_sym_long] = ACTIONS(8505), - [anon_sym_short] = ACTIONS(8505), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7525), + [sym_identifier] = ACTIONS(8953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8955), + [anon_sym_COMMA] = ACTIONS(8955), + [anon_sym_RPAREN] = ACTIONS(8955), + [aux_sym_preproc_if_token2] = ACTIONS(8955), + [aux_sym_preproc_else_token1] = ACTIONS(8955), + [aux_sym_preproc_elif_token1] = ACTIONS(8953), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8955), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8955), + [anon_sym_LPAREN2] = ACTIONS(8955), + [anon_sym_DASH] = ACTIONS(8953), + [anon_sym_PLUS] = ACTIONS(8953), + [anon_sym_STAR] = ACTIONS(8953), + [anon_sym_SLASH] = ACTIONS(8953), + [anon_sym_PERCENT] = ACTIONS(8953), + [anon_sym_PIPE_PIPE] = ACTIONS(8955), + [anon_sym_AMP_AMP] = ACTIONS(8955), + [anon_sym_PIPE] = ACTIONS(8953), + [anon_sym_CARET] = ACTIONS(8953), + [anon_sym_AMP] = ACTIONS(8953), + [anon_sym_EQ_EQ] = ACTIONS(8955), + [anon_sym_BANG_EQ] = ACTIONS(8955), + [anon_sym_GT] = ACTIONS(8953), + [anon_sym_GT_EQ] = ACTIONS(8955), + [anon_sym_LT_EQ] = ACTIONS(8953), + [anon_sym_LT] = ACTIONS(8953), + [anon_sym_LT_LT] = ACTIONS(8953), + [anon_sym_GT_GT] = ACTIONS(8953), + [anon_sym_SEMI] = ACTIONS(8955), + [anon_sym___attribute__] = ACTIONS(8953), + [anon_sym___attribute] = ACTIONS(8953), + [anon_sym_COLON] = ACTIONS(8953), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8955), + [anon_sym_RBRACE] = ACTIONS(8955), + [anon_sym_LBRACK] = ACTIONS(8955), + [anon_sym_EQ] = ACTIONS(8953), + [anon_sym_QMARK] = ACTIONS(8955), + [anon_sym_STAR_EQ] = ACTIONS(8955), + [anon_sym_SLASH_EQ] = ACTIONS(8955), + [anon_sym_PERCENT_EQ] = ACTIONS(8955), + [anon_sym_PLUS_EQ] = ACTIONS(8955), + [anon_sym_DASH_EQ] = ACTIONS(8955), + [anon_sym_LT_LT_EQ] = ACTIONS(8955), + [anon_sym_GT_GT_EQ] = ACTIONS(8955), + [anon_sym_AMP_EQ] = ACTIONS(8955), + [anon_sym_CARET_EQ] = ACTIONS(8955), + [anon_sym_PIPE_EQ] = ACTIONS(8955), + [anon_sym_and_eq] = ACTIONS(8953), + [anon_sym_or_eq] = ACTIONS(8953), + [anon_sym_xor_eq] = ACTIONS(8953), + [anon_sym_LT_EQ_GT] = ACTIONS(8955), + [anon_sym_or] = ACTIONS(8953), + [anon_sym_and] = ACTIONS(8953), + [anon_sym_bitor] = ACTIONS(8953), + [anon_sym_xor] = ACTIONS(8953), + [anon_sym_bitand] = ACTIONS(8953), + [anon_sym_not_eq] = ACTIONS(8953), + [anon_sym_DASH_DASH] = ACTIONS(8955), + [anon_sym_PLUS_PLUS] = ACTIONS(8955), + [anon_sym_DOT] = ACTIONS(8953), + [anon_sym_DOT_STAR] = ACTIONS(8955), + [anon_sym_DASH_GT] = ACTIONS(8955), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8953), + [anon_sym_override] = ACTIONS(8953), + [anon_sym_requires] = ACTIONS(8953), + [anon_sym_COLON_RBRACK] = ACTIONS(8955), }, [STATE(3606)] = { - [sym_template_argument_list] = STATE(2928), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7087), - [anon_sym_COMMA] = ACTIONS(7087), - [anon_sym_RPAREN] = ACTIONS(7087), - [anon_sym_LPAREN2] = ACTIONS(7087), - [anon_sym_DASH] = ACTIONS(7094), - [anon_sym_PLUS] = ACTIONS(7094), - [anon_sym_STAR] = ACTIONS(7094), - [anon_sym_SLASH] = ACTIONS(7094), - [anon_sym_PERCENT] = ACTIONS(7094), - [anon_sym_PIPE_PIPE] = ACTIONS(7087), - [anon_sym_AMP_AMP] = ACTIONS(7087), - [anon_sym_PIPE] = ACTIONS(7094), - [anon_sym_CARET] = ACTIONS(7094), - [anon_sym_AMP] = ACTIONS(7094), - [anon_sym_EQ_EQ] = ACTIONS(7087), - [anon_sym_BANG_EQ] = ACTIONS(7087), - [anon_sym_GT] = ACTIONS(7094), - [anon_sym_GT_EQ] = ACTIONS(7087), - [anon_sym_LT_EQ] = ACTIONS(7094), - [anon_sym_LT] = ACTIONS(8198), - [anon_sym_LT_LT] = ACTIONS(7094), - [anon_sym_GT_GT] = ACTIONS(7094), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7087), - [anon_sym_EQ] = ACTIONS(7094), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7087), - [anon_sym_STAR_EQ] = ACTIONS(7087), - [anon_sym_SLASH_EQ] = ACTIONS(7087), - [anon_sym_PERCENT_EQ] = ACTIONS(7087), - [anon_sym_PLUS_EQ] = ACTIONS(7087), - [anon_sym_DASH_EQ] = ACTIONS(7087), - [anon_sym_LT_LT_EQ] = ACTIONS(7087), - [anon_sym_GT_GT_EQ] = ACTIONS(7087), - [anon_sym_AMP_EQ] = ACTIONS(7087), - [anon_sym_CARET_EQ] = ACTIONS(7087), - [anon_sym_PIPE_EQ] = ACTIONS(7087), - [anon_sym_LT_EQ_GT] = ACTIONS(7087), - [anon_sym_or] = ACTIONS(7087), - [anon_sym_and] = ACTIONS(7087), - [anon_sym_bitor] = ACTIONS(7087), - [anon_sym_xor] = ACTIONS(7087), - [anon_sym_bitand] = ACTIONS(7087), - [anon_sym_not_eq] = ACTIONS(7087), - [anon_sym_DASH_DASH] = ACTIONS(7087), - [anon_sym_PLUS_PLUS] = ACTIONS(7087), - [anon_sym_DOT] = ACTIONS(7094), - [anon_sym_DOT_STAR] = ACTIONS(7087), - [anon_sym_DASH_GT] = ACTIONS(7094), - [sym_comment] = ACTIONS(3), - [anon_sym_DASH_GT_STAR] = ACTIONS(7087), + [sym_attribute_specifier] = STATE(3204), + [sym_field_declaration_list] = STATE(3843), + [sym_virtual_specifier] = STATE(9500), + [sym_base_class_clause] = STATE(10447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7256), + [anon_sym_COMMA] = ACTIONS(7256), + [anon_sym_RPAREN] = ACTIONS(7256), + [anon_sym_LPAREN2] = ACTIONS(7256), + [anon_sym_DASH] = ACTIONS(7254), + [anon_sym_PLUS] = ACTIONS(7254), + [anon_sym_STAR] = ACTIONS(7256), + [anon_sym_SLASH] = ACTIONS(7254), + [anon_sym_PERCENT] = ACTIONS(7256), + [anon_sym_PIPE_PIPE] = ACTIONS(7256), + [anon_sym_AMP_AMP] = ACTIONS(7256), + [anon_sym_PIPE] = ACTIONS(7254), + [anon_sym_CARET] = ACTIONS(7256), + [anon_sym_AMP] = ACTIONS(7254), + [anon_sym_EQ_EQ] = ACTIONS(7256), + [anon_sym_BANG_EQ] = ACTIONS(7256), + [anon_sym_GT] = ACTIONS(7254), + [anon_sym_GT_EQ] = ACTIONS(7256), + [anon_sym_LT_EQ] = ACTIONS(7254), + [anon_sym_LT] = ACTIONS(7254), + [anon_sym_LT_LT] = ACTIONS(7256), + [anon_sym_GT_GT] = ACTIONS(7256), + [anon_sym_SEMI] = ACTIONS(7256), + [anon_sym___extension__] = ACTIONS(7256), + [anon_sym___attribute__] = ACTIONS(9309), + [anon_sym___attribute] = ACTIONS(9211), + [anon_sym_COLON] = ACTIONS(7260), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7256), + [anon_sym_LBRACE] = ACTIONS(9311), + [anon_sym_RBRACE] = ACTIONS(7256), + [anon_sym_LBRACK] = ACTIONS(7256), + [anon_sym_const] = ACTIONS(7254), + [anon_sym_constexpr] = ACTIONS(7256), + [anon_sym_volatile] = ACTIONS(7256), + [anon_sym_restrict] = ACTIONS(7256), + [anon_sym___restrict__] = ACTIONS(7256), + [anon_sym__Atomic] = ACTIONS(7256), + [anon_sym__Noreturn] = ACTIONS(7256), + [anon_sym_noreturn] = ACTIONS(7256), + [anon_sym__Nonnull] = ACTIONS(7256), + [anon_sym_mutable] = ACTIONS(7256), + [anon_sym_constinit] = ACTIONS(7256), + [anon_sym_consteval] = ACTIONS(7256), + [anon_sym_alignas] = ACTIONS(7256), + [anon_sym__Alignas] = ACTIONS(7256), + [anon_sym_QMARK] = ACTIONS(7256), + [anon_sym_LT_EQ_GT] = ACTIONS(7256), + [anon_sym_or] = ACTIONS(7256), + [anon_sym_and] = ACTIONS(7256), + [anon_sym_bitor] = ACTIONS(7256), + [anon_sym_xor] = ACTIONS(7256), + [anon_sym_bitand] = ACTIONS(7256), + [anon_sym_not_eq] = ACTIONS(7256), + [anon_sym_DASH_DASH] = ACTIONS(7256), + [anon_sym_PLUS_PLUS] = ACTIONS(7256), + [anon_sym_DOT] = ACTIONS(7254), + [anon_sym_DOT_STAR] = ACTIONS(7256), + [anon_sym_DASH_GT] = ACTIONS(7256), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8184), + [anon_sym_override] = ACTIONS(8184), + [anon_sym_requires] = ACTIONS(7256), + [anon_sym_COLON_RBRACK] = ACTIONS(7256), }, [STATE(3607)] = { - [sym_identifier] = ACTIONS(6632), - [anon_sym_LPAREN2] = ACTIONS(6634), - [anon_sym_TILDE] = ACTIONS(6634), - [anon_sym_STAR] = ACTIONS(6634), - [anon_sym_PIPE_PIPE] = ACTIONS(6634), - [anon_sym_AMP_AMP] = ACTIONS(6634), - [anon_sym_AMP] = ACTIONS(6632), - [anon_sym___extension__] = ACTIONS(6632), - [anon_sym_virtual] = ACTIONS(6632), - [anon_sym_extern] = ACTIONS(6632), - [anon_sym___attribute__] = ACTIONS(6632), - [anon_sym___attribute] = ACTIONS(6632), - [anon_sym_using] = ACTIONS(6632), - [anon_sym_COLON_COLON] = ACTIONS(6634), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6634), - [anon_sym___declspec] = ACTIONS(6632), - [anon_sym___based] = ACTIONS(6632), - [anon_sym___cdecl] = ACTIONS(6632), - [anon_sym___clrcall] = ACTIONS(6632), - [anon_sym___stdcall] = ACTIONS(6632), - [anon_sym___fastcall] = ACTIONS(6632), - [anon_sym___thiscall] = ACTIONS(6632), - [anon_sym___vectorcall] = ACTIONS(6632), - [anon_sym_signed] = ACTIONS(6632), - [anon_sym_unsigned] = ACTIONS(6632), - [anon_sym_long] = ACTIONS(6632), - [anon_sym_short] = ACTIONS(6632), - [anon_sym_LBRACK] = ACTIONS(6632), - [anon_sym_static] = ACTIONS(6632), - [anon_sym_register] = ACTIONS(6632), - [anon_sym_inline] = ACTIONS(6632), - [anon_sym___inline] = ACTIONS(6632), - [anon_sym___inline__] = ACTIONS(6632), - [anon_sym___forceinline] = ACTIONS(6632), - [anon_sym_thread_local] = ACTIONS(6632), - [anon_sym___thread] = ACTIONS(6632), - [anon_sym_const] = ACTIONS(6632), - [anon_sym_constexpr] = ACTIONS(6632), - [anon_sym_volatile] = ACTIONS(6632), - [anon_sym_restrict] = ACTIONS(6632), - [anon_sym___restrict__] = ACTIONS(6632), - [anon_sym__Atomic] = ACTIONS(6632), - [anon_sym__Noreturn] = ACTIONS(6632), - [anon_sym_noreturn] = ACTIONS(6632), - [anon_sym__Nonnull] = ACTIONS(6632), - [anon_sym_mutable] = ACTIONS(6632), - [anon_sym_constinit] = ACTIONS(6632), - [anon_sym_consteval] = ACTIONS(6632), - [anon_sym_alignas] = ACTIONS(6632), - [anon_sym__Alignas] = ACTIONS(6632), - [sym_primitive_type] = ACTIONS(6632), - [anon_sym_enum] = ACTIONS(6632), - [anon_sym_class] = ACTIONS(6632), - [anon_sym_struct] = ACTIONS(6632), - [anon_sym_union] = ACTIONS(6632), - [anon_sym_or] = ACTIONS(6632), - [anon_sym_and] = ACTIONS(6632), - [anon_sym_typename] = ACTIONS(6632), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6632), - [anon_sym_decltype] = ACTIONS(6632), - [anon_sym_explicit] = ACTIONS(6632), - [anon_sym_template] = ACTIONS(6632), - [anon_sym_operator] = ACTIONS(6632), - [anon_sym_friend] = ACTIONS(6632), - [anon_sym_concept] = ACTIONS(6632), - [anon_sym_LBRACK_COLON] = ACTIONS(6634), + [sym_template_argument_list] = STATE(2919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6566), + [anon_sym_COMMA] = ACTIONS(6566), + [anon_sym_RPAREN] = ACTIONS(6566), + [anon_sym_LPAREN2] = ACTIONS(6566), + [anon_sym_DASH] = ACTIONS(6559), + [anon_sym_PLUS] = ACTIONS(6559), + [anon_sym_STAR] = ACTIONS(6566), + [anon_sym_SLASH] = ACTIONS(6559), + [anon_sym_PERCENT] = ACTIONS(6566), + [anon_sym_PIPE_PIPE] = ACTIONS(6566), + [anon_sym_AMP_AMP] = ACTIONS(6566), + [anon_sym_PIPE] = ACTIONS(6559), + [anon_sym_CARET] = ACTIONS(6566), + [anon_sym_AMP] = ACTIONS(6559), + [anon_sym_EQ_EQ] = ACTIONS(6566), + [anon_sym_BANG_EQ] = ACTIONS(6566), + [anon_sym_GT] = ACTIONS(6559), + [anon_sym_GT_EQ] = ACTIONS(6566), + [anon_sym_LT_EQ] = ACTIONS(6559), + [anon_sym_LT] = ACTIONS(9313), + [anon_sym_LT_LT] = ACTIONS(6566), + [anon_sym_GT_GT] = ACTIONS(6566), + [anon_sym_SEMI] = ACTIONS(6566), + [anon_sym___extension__] = ACTIONS(6566), + [anon_sym___attribute__] = ACTIONS(6566), + [anon_sym___attribute] = ACTIONS(6559), + [anon_sym_COLON] = ACTIONS(6559), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6566), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_RBRACE] = ACTIONS(6566), + [anon_sym_LBRACK] = ACTIONS(6566), + [anon_sym_const] = ACTIONS(6559), + [anon_sym_constexpr] = ACTIONS(6566), + [anon_sym_volatile] = ACTIONS(6566), + [anon_sym_restrict] = ACTIONS(6566), + [anon_sym___restrict__] = ACTIONS(6566), + [anon_sym__Atomic] = ACTIONS(6566), + [anon_sym__Noreturn] = ACTIONS(6566), + [anon_sym_noreturn] = ACTIONS(6566), + [anon_sym__Nonnull] = ACTIONS(6566), + [anon_sym_mutable] = ACTIONS(6566), + [anon_sym_constinit] = ACTIONS(6566), + [anon_sym_consteval] = ACTIONS(6566), + [anon_sym_alignas] = ACTIONS(6566), + [anon_sym__Alignas] = ACTIONS(6566), + [anon_sym_QMARK] = ACTIONS(6566), + [anon_sym_LT_EQ_GT] = ACTIONS(6566), + [anon_sym_or] = ACTIONS(6566), + [anon_sym_and] = ACTIONS(6566), + [anon_sym_bitor] = ACTIONS(6566), + [anon_sym_xor] = ACTIONS(6566), + [anon_sym_bitand] = ACTIONS(6566), + [anon_sym_not_eq] = ACTIONS(6566), + [anon_sym_DASH_DASH] = ACTIONS(6566), + [anon_sym_PLUS_PLUS] = ACTIONS(6566), + [anon_sym_DOT] = ACTIONS(6559), + [anon_sym_DOT_STAR] = ACTIONS(6566), + [anon_sym_DASH_GT] = ACTIONS(6566), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6566), + [anon_sym_decltype] = ACTIONS(6566), + [anon_sym_final] = ACTIONS(6566), + [anon_sym_override] = ACTIONS(6566), + [anon_sym_requires] = ACTIONS(6566), + [anon_sym_COLON_RBRACK] = ACTIONS(6566), }, [STATE(3608)] = { - [sym_identifier] = ACTIONS(9308), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9310), - [anon_sym_COMMA] = ACTIONS(9310), - [anon_sym_RPAREN] = ACTIONS(9310), - [aux_sym_preproc_if_token2] = ACTIONS(9310), - [aux_sym_preproc_else_token1] = ACTIONS(9310), - [aux_sym_preproc_elif_token1] = ACTIONS(9308), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9310), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9310), - [anon_sym_LPAREN2] = ACTIONS(9310), - [anon_sym_DASH] = ACTIONS(9308), - [anon_sym_PLUS] = ACTIONS(9308), - [anon_sym_STAR] = ACTIONS(9308), - [anon_sym_SLASH] = ACTIONS(9308), - [anon_sym_PERCENT] = ACTIONS(9308), - [anon_sym_PIPE_PIPE] = ACTIONS(9310), - [anon_sym_AMP_AMP] = ACTIONS(9310), - [anon_sym_PIPE] = ACTIONS(9308), - [anon_sym_CARET] = ACTIONS(9308), - [anon_sym_AMP] = ACTIONS(9308), - [anon_sym_EQ_EQ] = ACTIONS(9310), - [anon_sym_BANG_EQ] = ACTIONS(9310), - [anon_sym_GT] = ACTIONS(9308), - [anon_sym_GT_EQ] = ACTIONS(9310), - [anon_sym_LT_EQ] = ACTIONS(9308), - [anon_sym_LT] = ACTIONS(9308), - [anon_sym_LT_LT] = ACTIONS(9308), - [anon_sym_GT_GT] = ACTIONS(9308), - [anon_sym_SEMI] = ACTIONS(9310), - [anon_sym___attribute__] = ACTIONS(9308), - [anon_sym___attribute] = ACTIONS(9308), - [anon_sym_COLON] = ACTIONS(9308), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9310), - [anon_sym_RBRACE] = ACTIONS(9310), - [anon_sym_LBRACK] = ACTIONS(9310), - [anon_sym_EQ] = ACTIONS(9308), - [anon_sym_QMARK] = ACTIONS(9310), - [anon_sym_STAR_EQ] = ACTIONS(9310), - [anon_sym_SLASH_EQ] = ACTIONS(9310), - [anon_sym_PERCENT_EQ] = ACTIONS(9310), - [anon_sym_PLUS_EQ] = ACTIONS(9310), - [anon_sym_DASH_EQ] = ACTIONS(9310), - [anon_sym_LT_LT_EQ] = ACTIONS(9310), - [anon_sym_GT_GT_EQ] = ACTIONS(9310), - [anon_sym_AMP_EQ] = ACTIONS(9310), - [anon_sym_CARET_EQ] = ACTIONS(9310), - [anon_sym_PIPE_EQ] = ACTIONS(9310), - [anon_sym_and_eq] = ACTIONS(9308), - [anon_sym_or_eq] = ACTIONS(9308), - [anon_sym_xor_eq] = ACTIONS(9308), - [anon_sym_LT_EQ_GT] = ACTIONS(9310), - [anon_sym_or] = ACTIONS(9308), - [anon_sym_and] = ACTIONS(9308), - [anon_sym_bitor] = ACTIONS(9308), - [anon_sym_xor] = ACTIONS(9308), - [anon_sym_bitand] = ACTIONS(9308), - [anon_sym_not_eq] = ACTIONS(9308), - [anon_sym_DASH_DASH] = ACTIONS(9310), - [anon_sym_PLUS_PLUS] = ACTIONS(9310), - [anon_sym_DOT] = ACTIONS(9308), - [anon_sym_DOT_STAR] = ACTIONS(9310), - [anon_sym_DASH_GT] = ACTIONS(9310), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9308), - [anon_sym_override] = ACTIONS(9308), - [anon_sym_requires] = ACTIONS(9308), - [anon_sym_COLON_RBRACK] = ACTIONS(9310), - }, - [STATE(3609)] = { - [sym_attribute_specifier] = STATE(3117), - [sym_field_declaration_list] = STATE(3934), - [sym_virtual_specifier] = STATE(9567), - [sym_base_class_clause] = STATE(10298), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7237), - [anon_sym_COMMA] = ACTIONS(7237), - [anon_sym_RPAREN] = ACTIONS(7237), - [anon_sym_LPAREN2] = ACTIONS(7237), - [anon_sym_DASH] = ACTIONS(7235), - [anon_sym_PLUS] = ACTIONS(7235), - [anon_sym_STAR] = ACTIONS(7237), - [anon_sym_SLASH] = ACTIONS(7235), - [anon_sym_PERCENT] = ACTIONS(7237), - [anon_sym_PIPE_PIPE] = ACTIONS(7237), - [anon_sym_AMP_AMP] = ACTIONS(7237), - [anon_sym_PIPE] = ACTIONS(7235), - [anon_sym_CARET] = ACTIONS(7237), - [anon_sym_AMP] = ACTIONS(7235), - [anon_sym_EQ_EQ] = ACTIONS(7237), - [anon_sym_BANG_EQ] = ACTIONS(7237), - [anon_sym_GT] = ACTIONS(7235), - [anon_sym_GT_EQ] = ACTIONS(7237), - [anon_sym_LT_EQ] = ACTIONS(7235), - [anon_sym_LT] = ACTIONS(7235), - [anon_sym_LT_LT] = ACTIONS(7237), - [anon_sym_GT_GT] = ACTIONS(7237), - [anon_sym_SEMI] = ACTIONS(7237), - [anon_sym___extension__] = ACTIONS(7237), - [anon_sym___attribute__] = ACTIONS(9312), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_COLON] = ACTIONS(7241), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7237), - [anon_sym_LBRACE] = ACTIONS(9314), - [anon_sym_RBRACE] = ACTIONS(7237), - [anon_sym_LBRACK] = ACTIONS(7237), - [anon_sym_const] = ACTIONS(7235), - [anon_sym_constexpr] = ACTIONS(7237), - [anon_sym_volatile] = ACTIONS(7237), - [anon_sym_restrict] = ACTIONS(7237), - [anon_sym___restrict__] = ACTIONS(7237), - [anon_sym__Atomic] = ACTIONS(7237), - [anon_sym__Noreturn] = ACTIONS(7237), - [anon_sym_noreturn] = ACTIONS(7237), - [anon_sym__Nonnull] = ACTIONS(7237), - [anon_sym_mutable] = ACTIONS(7237), - [anon_sym_constinit] = ACTIONS(7237), - [anon_sym_consteval] = ACTIONS(7237), - [anon_sym_alignas] = ACTIONS(7237), - [anon_sym__Alignas] = ACTIONS(7237), - [anon_sym_QMARK] = ACTIONS(7237), - [anon_sym_LT_EQ_GT] = ACTIONS(7237), - [anon_sym_or] = ACTIONS(7237), - [anon_sym_and] = ACTIONS(7237), - [anon_sym_bitor] = ACTIONS(7237), - [anon_sym_xor] = ACTIONS(7237), - [anon_sym_bitand] = ACTIONS(7237), - [anon_sym_not_eq] = ACTIONS(7237), - [anon_sym_DASH_DASH] = ACTIONS(7237), - [anon_sym_PLUS_PLUS] = ACTIONS(7237), - [anon_sym_DOT] = ACTIONS(7235), - [anon_sym_DOT_STAR] = ACTIONS(7237), - [anon_sym_DASH_GT] = ACTIONS(7237), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8160), - [anon_sym_override] = ACTIONS(8160), - [anon_sym_requires] = ACTIONS(7237), - [anon_sym_COLON_RBRACK] = ACTIONS(7237), - }, - [STATE(3610)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_TILDE] = ACTIONS(7293), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym_virtual] = ACTIONS(7291), - [anon_sym_extern] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_using] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), - [anon_sym___declspec] = ACTIONS(7291), - [anon_sym___based] = ACTIONS(7291), - [anon_sym___cdecl] = ACTIONS(7291), - [anon_sym___clrcall] = ACTIONS(7291), - [anon_sym___stdcall] = ACTIONS(7291), - [anon_sym___fastcall] = ACTIONS(7291), - [anon_sym___thiscall] = ACTIONS(7291), - [anon_sym___vectorcall] = ACTIONS(7291), - [anon_sym_signed] = ACTIONS(7291), - [anon_sym_unsigned] = ACTIONS(7291), - [anon_sym_long] = ACTIONS(7291), - [anon_sym_short] = ACTIONS(7291), - [anon_sym_LBRACK] = ACTIONS(7291), - [anon_sym_static] = ACTIONS(7291), - [anon_sym_register] = ACTIONS(7291), - [anon_sym_inline] = ACTIONS(7291), - [anon_sym___inline] = ACTIONS(7291), - [anon_sym___inline__] = ACTIONS(7291), - [anon_sym___forceinline] = ACTIONS(7291), - [anon_sym_thread_local] = ACTIONS(7291), - [anon_sym___thread] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [sym_primitive_type] = ACTIONS(7291), - [anon_sym_enum] = ACTIONS(7291), - [anon_sym_class] = ACTIONS(7291), - [anon_sym_struct] = ACTIONS(7291), - [anon_sym_union] = ACTIONS(7291), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_typename] = ACTIONS(7291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_explicit] = ACTIONS(7291), - [anon_sym_template] = ACTIONS(7291), - [anon_sym_operator] = ACTIONS(7291), - [anon_sym_friend] = ACTIONS(7291), - [anon_sym_concept] = ACTIONS(7291), - [anon_sym_LBRACK_COLON] = ACTIONS(7293), - }, - [STATE(3611)] = { + [sym_argument_list] = STATE(3873), + [sym_initializer_list] = STATE(3873), [sym_identifier] = ACTIONS(9316), [anon_sym_DOT_DOT_DOT] = ACTIONS(9318), [anon_sym_COMMA] = ACTIONS(9318), @@ -437291,7 +436920,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(9316), [aux_sym_preproc_elifdef_token1] = ACTIONS(9318), [aux_sym_preproc_elifdef_token2] = ACTIONS(9318), - [anon_sym_LPAREN2] = ACTIONS(9318), + [anon_sym_LPAREN2] = ACTIONS(9182), [anon_sym_DASH] = ACTIONS(9316), [anon_sym_PLUS] = ACTIONS(9316), [anon_sym_STAR] = ACTIONS(9316), @@ -437315,6 +436944,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(9316), [anon_sym_COLON] = ACTIONS(9316), [anon_sym_RBRACK_RBRACK] = ACTIONS(9318), + [anon_sym_LBRACE] = ACTIONS(2394), [anon_sym_RBRACE] = ACTIONS(9318), [anon_sym_LBRACK] = ACTIONS(9318), [anon_sym_EQ] = ACTIONS(9316), @@ -437345,978 +436975,492 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(9318), [anon_sym_DASH_GT] = ACTIONS(9318), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9316), - [anon_sym_override] = ACTIONS(9316), - [anon_sym_requires] = ACTIONS(9316), [anon_sym_COLON_RBRACK] = ACTIONS(9318), }, + [STATE(3609)] = { + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym__function_exception_specification] = STATE(4051), + [sym__function_attributes_end] = STATE(6009), + [sym__function_postfix] = STATE(5296), + [sym_trailing_return_type] = STATE(6104), + [sym_noexcept] = STATE(4051), + [sym_throw_specifier] = STATE(4051), + [sym_requires_clause] = STATE(5296), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(7972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_preproc_if_token2] = ACTIONS(7970), + [aux_sym_preproc_else_token1] = ACTIONS(7970), + [aux_sym_preproc_elif_token1] = ACTIONS(7972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7970), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7970), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7970), + [anon_sym_GT_GT] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(7168), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7972), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7972), + [anon_sym_not_eq] = ACTIONS(7972), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(9320), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9323), + [anon_sym_override] = ACTIONS(9323), + [anon_sym_noexcept] = ACTIONS(7179), + [anon_sym_throw] = ACTIONS(7181), + [anon_sym_requires] = ACTIONS(9326), + }, + [STATE(3610)] = { + [sym_identifier] = ACTIONS(9329), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9331), + [anon_sym_COMMA] = ACTIONS(9331), + [anon_sym_RPAREN] = ACTIONS(9331), + [aux_sym_preproc_if_token2] = ACTIONS(9331), + [aux_sym_preproc_else_token1] = ACTIONS(9331), + [aux_sym_preproc_elif_token1] = ACTIONS(9329), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9331), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9331), + [anon_sym_LPAREN2] = ACTIONS(9331), + [anon_sym_DASH] = ACTIONS(9329), + [anon_sym_PLUS] = ACTIONS(9329), + [anon_sym_STAR] = ACTIONS(9329), + [anon_sym_SLASH] = ACTIONS(9329), + [anon_sym_PERCENT] = ACTIONS(9329), + [anon_sym_PIPE_PIPE] = ACTIONS(9331), + [anon_sym_AMP_AMP] = ACTIONS(9333), + [anon_sym_PIPE] = ACTIONS(9329), + [anon_sym_CARET] = ACTIONS(9329), + [anon_sym_AMP] = ACTIONS(9329), + [anon_sym_EQ_EQ] = ACTIONS(9331), + [anon_sym_BANG_EQ] = ACTIONS(9331), + [anon_sym_GT] = ACTIONS(9329), + [anon_sym_GT_EQ] = ACTIONS(9331), + [anon_sym_LT_EQ] = ACTIONS(9329), + [anon_sym_LT] = ACTIONS(9329), + [anon_sym_LT_LT] = ACTIONS(9329), + [anon_sym_GT_GT] = ACTIONS(9329), + [anon_sym_SEMI] = ACTIONS(9331), + [anon_sym___attribute__] = ACTIONS(9329), + [anon_sym___attribute] = ACTIONS(9329), + [anon_sym_COLON] = ACTIONS(9329), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9331), + [anon_sym_RBRACE] = ACTIONS(9331), + [anon_sym_LBRACK] = ACTIONS(9331), + [anon_sym_EQ] = ACTIONS(9329), + [anon_sym_QMARK] = ACTIONS(9331), + [anon_sym_STAR_EQ] = ACTIONS(9331), + [anon_sym_SLASH_EQ] = ACTIONS(9331), + [anon_sym_PERCENT_EQ] = ACTIONS(9331), + [anon_sym_PLUS_EQ] = ACTIONS(9331), + [anon_sym_DASH_EQ] = ACTIONS(9331), + [anon_sym_LT_LT_EQ] = ACTIONS(9331), + [anon_sym_GT_GT_EQ] = ACTIONS(9331), + [anon_sym_AMP_EQ] = ACTIONS(9331), + [anon_sym_CARET_EQ] = ACTIONS(9331), + [anon_sym_PIPE_EQ] = ACTIONS(9331), + [anon_sym_and_eq] = ACTIONS(9329), + [anon_sym_or_eq] = ACTIONS(9329), + [anon_sym_xor_eq] = ACTIONS(9329), + [anon_sym_LT_EQ_GT] = ACTIONS(9331), + [anon_sym_or] = ACTIONS(9329), + [anon_sym_and] = ACTIONS(9335), + [anon_sym_bitor] = ACTIONS(9329), + [anon_sym_xor] = ACTIONS(9329), + [anon_sym_bitand] = ACTIONS(9329), + [anon_sym_not_eq] = ACTIONS(9329), + [anon_sym_DASH_DASH] = ACTIONS(9331), + [anon_sym_PLUS_PLUS] = ACTIONS(9331), + [anon_sym_DOT] = ACTIONS(9329), + [anon_sym_DOT_STAR] = ACTIONS(9331), + [anon_sym_DASH_GT] = ACTIONS(9331), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9329), + [anon_sym_override] = ACTIONS(9329), + [anon_sym_requires] = ACTIONS(9329), + [anon_sym_COLON_RBRACK] = ACTIONS(9331), + }, + [STATE(3611)] = { + [sym_identifier] = ACTIONS(8929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8931), + [anon_sym_COMMA] = ACTIONS(8931), + [anon_sym_RPAREN] = ACTIONS(8931), + [aux_sym_preproc_if_token2] = ACTIONS(8931), + [aux_sym_preproc_else_token1] = ACTIONS(8931), + [aux_sym_preproc_elif_token1] = ACTIONS(8929), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8931), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8931), + [anon_sym_LPAREN2] = ACTIONS(8931), + [anon_sym_DASH] = ACTIONS(8929), + [anon_sym_PLUS] = ACTIONS(8929), + [anon_sym_STAR] = ACTIONS(8929), + [anon_sym_SLASH] = ACTIONS(8929), + [anon_sym_PERCENT] = ACTIONS(8929), + [anon_sym_PIPE_PIPE] = ACTIONS(8931), + [anon_sym_AMP_AMP] = ACTIONS(8931), + [anon_sym_PIPE] = ACTIONS(8929), + [anon_sym_CARET] = ACTIONS(8929), + [anon_sym_AMP] = ACTIONS(8929), + [anon_sym_EQ_EQ] = ACTIONS(8931), + [anon_sym_BANG_EQ] = ACTIONS(8931), + [anon_sym_GT] = ACTIONS(8929), + [anon_sym_GT_EQ] = ACTIONS(8931), + [anon_sym_LT_EQ] = ACTIONS(8929), + [anon_sym_LT] = ACTIONS(8929), + [anon_sym_LT_LT] = ACTIONS(8929), + [anon_sym_GT_GT] = ACTIONS(8929), + [anon_sym_SEMI] = ACTIONS(8931), + [anon_sym___attribute__] = ACTIONS(8929), + [anon_sym___attribute] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(8929), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8931), + [anon_sym_RBRACE] = ACTIONS(8931), + [anon_sym_LBRACK] = ACTIONS(8931), + [anon_sym_EQ] = ACTIONS(8929), + [anon_sym_QMARK] = ACTIONS(8931), + [anon_sym_STAR_EQ] = ACTIONS(8931), + [anon_sym_SLASH_EQ] = ACTIONS(8931), + [anon_sym_PERCENT_EQ] = ACTIONS(8931), + [anon_sym_PLUS_EQ] = ACTIONS(8931), + [anon_sym_DASH_EQ] = ACTIONS(8931), + [anon_sym_LT_LT_EQ] = ACTIONS(8931), + [anon_sym_GT_GT_EQ] = ACTIONS(8931), + [anon_sym_AMP_EQ] = ACTIONS(8931), + [anon_sym_CARET_EQ] = ACTIONS(8931), + [anon_sym_PIPE_EQ] = ACTIONS(8931), + [anon_sym_and_eq] = ACTIONS(8929), + [anon_sym_or_eq] = ACTIONS(8929), + [anon_sym_xor_eq] = ACTIONS(8929), + [anon_sym_LT_EQ_GT] = ACTIONS(8931), + [anon_sym_or] = ACTIONS(8929), + [anon_sym_and] = ACTIONS(8929), + [anon_sym_bitor] = ACTIONS(8929), + [anon_sym_xor] = ACTIONS(8929), + [anon_sym_bitand] = ACTIONS(8929), + [anon_sym_not_eq] = ACTIONS(8929), + [anon_sym_DASH_DASH] = ACTIONS(8931), + [anon_sym_PLUS_PLUS] = ACTIONS(8931), + [anon_sym_DOT] = ACTIONS(8929), + [anon_sym_DOT_STAR] = ACTIONS(8931), + [anon_sym_DASH_GT] = ACTIONS(8931), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8929), + [anon_sym_override] = ACTIONS(8929), + [anon_sym_requires] = ACTIONS(8929), + [anon_sym_COLON_RBRACK] = ACTIONS(8931), + }, [STATE(3612)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_TILDE] = ACTIONS(7293), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym_virtual] = ACTIONS(7291), - [anon_sym_extern] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_using] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), - [anon_sym___declspec] = ACTIONS(7291), - [anon_sym___based] = ACTIONS(7291), - [anon_sym___cdecl] = ACTIONS(7291), - [anon_sym___clrcall] = ACTIONS(7291), - [anon_sym___stdcall] = ACTIONS(7291), - [anon_sym___fastcall] = ACTIONS(7291), - [anon_sym___thiscall] = ACTIONS(7291), - [anon_sym___vectorcall] = ACTIONS(7291), - [anon_sym_signed] = ACTIONS(7291), - [anon_sym_unsigned] = ACTIONS(7291), - [anon_sym_long] = ACTIONS(7291), - [anon_sym_short] = ACTIONS(7291), - [anon_sym_LBRACK] = ACTIONS(7291), - [anon_sym_static] = ACTIONS(7291), - [anon_sym_register] = ACTIONS(7291), - [anon_sym_inline] = ACTIONS(7291), - [anon_sym___inline] = ACTIONS(7291), - [anon_sym___inline__] = ACTIONS(7291), - [anon_sym___forceinline] = ACTIONS(7291), - [anon_sym_thread_local] = ACTIONS(7291), - [anon_sym___thread] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [sym_primitive_type] = ACTIONS(7291), - [anon_sym_enum] = ACTIONS(7291), - [anon_sym_class] = ACTIONS(7291), - [anon_sym_struct] = ACTIONS(7291), - [anon_sym_union] = ACTIONS(7291), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_typename] = ACTIONS(7291), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_explicit] = ACTIONS(7291), - [anon_sym_template] = ACTIONS(7291), - [anon_sym_operator] = ACTIONS(7291), - [anon_sym_friend] = ACTIONS(7291), - [anon_sym_concept] = ACTIONS(7291), - [anon_sym_LBRACK_COLON] = ACTIONS(7293), + [sym_identifier] = ACTIONS(6602), + [anon_sym_LPAREN2] = ACTIONS(6604), + [anon_sym_TILDE] = ACTIONS(6604), + [anon_sym_STAR] = ACTIONS(6604), + [anon_sym_PIPE_PIPE] = ACTIONS(6604), + [anon_sym_AMP_AMP] = ACTIONS(6604), + [anon_sym_AMP] = ACTIONS(6602), + [anon_sym___extension__] = ACTIONS(6602), + [anon_sym_virtual] = ACTIONS(6602), + [anon_sym_extern] = ACTIONS(6602), + [anon_sym___attribute__] = ACTIONS(6602), + [anon_sym___attribute] = ACTIONS(6602), + [anon_sym_using] = ACTIONS(6602), + [anon_sym_COLON_COLON] = ACTIONS(6604), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6604), + [anon_sym___declspec] = ACTIONS(6602), + [anon_sym___based] = ACTIONS(6602), + [anon_sym___cdecl] = ACTIONS(6602), + [anon_sym___clrcall] = ACTIONS(6602), + [anon_sym___stdcall] = ACTIONS(6602), + [anon_sym___fastcall] = ACTIONS(6602), + [anon_sym___thiscall] = ACTIONS(6602), + [anon_sym___vectorcall] = ACTIONS(6602), + [anon_sym_signed] = ACTIONS(6602), + [anon_sym_unsigned] = ACTIONS(6602), + [anon_sym_long] = ACTIONS(6602), + [anon_sym_short] = ACTIONS(6602), + [anon_sym_LBRACK] = ACTIONS(6602), + [anon_sym_static] = ACTIONS(6602), + [anon_sym_register] = ACTIONS(6602), + [anon_sym_inline] = ACTIONS(6602), + [anon_sym___inline] = ACTIONS(6602), + [anon_sym___inline__] = ACTIONS(6602), + [anon_sym___forceinline] = ACTIONS(6602), + [anon_sym_thread_local] = ACTIONS(6602), + [anon_sym___thread] = ACTIONS(6602), + [anon_sym_const] = ACTIONS(6602), + [anon_sym_constexpr] = ACTIONS(6602), + [anon_sym_volatile] = ACTIONS(6602), + [anon_sym_restrict] = ACTIONS(6602), + [anon_sym___restrict__] = ACTIONS(6602), + [anon_sym__Atomic] = ACTIONS(6602), + [anon_sym__Noreturn] = ACTIONS(6602), + [anon_sym_noreturn] = ACTIONS(6602), + [anon_sym__Nonnull] = ACTIONS(6602), + [anon_sym_mutable] = ACTIONS(6602), + [anon_sym_constinit] = ACTIONS(6602), + [anon_sym_consteval] = ACTIONS(6602), + [anon_sym_alignas] = ACTIONS(6602), + [anon_sym__Alignas] = ACTIONS(6602), + [sym_primitive_type] = ACTIONS(6602), + [anon_sym_enum] = ACTIONS(6602), + [anon_sym_class] = ACTIONS(6602), + [anon_sym_struct] = ACTIONS(6602), + [anon_sym_union] = ACTIONS(6602), + [anon_sym_or] = ACTIONS(6602), + [anon_sym_and] = ACTIONS(6602), + [anon_sym_typename] = ACTIONS(6602), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6602), + [anon_sym_decltype] = ACTIONS(6602), + [anon_sym_explicit] = ACTIONS(6602), + [anon_sym_template] = ACTIONS(6602), + [anon_sym_operator] = ACTIONS(6602), + [anon_sym_friend] = ACTIONS(6602), + [anon_sym_concept] = ACTIONS(6602), + [anon_sym_LBRACK_COLON] = ACTIONS(6604), }, [STATE(3613)] = { - [sym_identifier] = ACTIONS(7104), - [anon_sym_LPAREN2] = ACTIONS(7106), - [anon_sym_TILDE] = ACTIONS(7106), - [anon_sym_STAR] = ACTIONS(7106), - [anon_sym_PIPE_PIPE] = ACTIONS(7106), - [anon_sym_AMP_AMP] = ACTIONS(7106), - [anon_sym_AMP] = ACTIONS(7104), - [anon_sym___extension__] = ACTIONS(7104), - [anon_sym_virtual] = ACTIONS(7104), - [anon_sym_extern] = ACTIONS(7104), - [anon_sym___attribute__] = ACTIONS(7104), - [anon_sym___attribute] = ACTIONS(7104), - [anon_sym_using] = ACTIONS(7104), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7106), - [anon_sym___declspec] = ACTIONS(7104), - [anon_sym___based] = ACTIONS(7104), - [anon_sym___cdecl] = ACTIONS(7104), - [anon_sym___clrcall] = ACTIONS(7104), - [anon_sym___stdcall] = ACTIONS(7104), - [anon_sym___fastcall] = ACTIONS(7104), - [anon_sym___thiscall] = ACTIONS(7104), - [anon_sym___vectorcall] = ACTIONS(7104), - [anon_sym_signed] = ACTIONS(7104), - [anon_sym_unsigned] = ACTIONS(7104), - [anon_sym_long] = ACTIONS(7104), - [anon_sym_short] = ACTIONS(7104), - [anon_sym_LBRACK] = ACTIONS(7104), - [anon_sym_static] = ACTIONS(7104), - [anon_sym_register] = ACTIONS(7104), - [anon_sym_inline] = ACTIONS(7104), - [anon_sym___inline] = ACTIONS(7104), - [anon_sym___inline__] = ACTIONS(7104), - [anon_sym___forceinline] = ACTIONS(7104), - [anon_sym_thread_local] = ACTIONS(7104), - [anon_sym___thread] = ACTIONS(7104), - [anon_sym_const] = ACTIONS(7104), - [anon_sym_constexpr] = ACTIONS(7104), - [anon_sym_volatile] = ACTIONS(7104), - [anon_sym_restrict] = ACTIONS(7104), - [anon_sym___restrict__] = ACTIONS(7104), - [anon_sym__Atomic] = ACTIONS(7104), - [anon_sym__Noreturn] = ACTIONS(7104), - [anon_sym_noreturn] = ACTIONS(7104), - [anon_sym__Nonnull] = ACTIONS(7104), - [anon_sym_mutable] = ACTIONS(7104), - [anon_sym_constinit] = ACTIONS(7104), - [anon_sym_consteval] = ACTIONS(7104), - [anon_sym_alignas] = ACTIONS(7104), - [anon_sym__Alignas] = ACTIONS(7104), - [sym_primitive_type] = ACTIONS(7104), - [anon_sym_enum] = ACTIONS(7104), - [anon_sym_class] = ACTIONS(7104), - [anon_sym_struct] = ACTIONS(7104), - [anon_sym_union] = ACTIONS(7104), - [anon_sym_or] = ACTIONS(7104), - [anon_sym_and] = ACTIONS(7104), - [anon_sym_typename] = ACTIONS(7104), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7104), - [anon_sym_decltype] = ACTIONS(7104), - [anon_sym_explicit] = ACTIONS(7104), - [anon_sym_template] = ACTIONS(7104), - [anon_sym_operator] = ACTIONS(7104), - [anon_sym_friend] = ACTIONS(7104), - [anon_sym_concept] = ACTIONS(7104), - [anon_sym_LBRACK_COLON] = ACTIONS(7106), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7876), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7876), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7876), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7876), + [anon_sym_GT_GT] = ACTIONS(7876), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7876), + [anon_sym___attribute] = ACTIONS(7876), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7874), + [anon_sym_EQ] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_STAR_EQ] = ACTIONS(7874), + [anon_sym_SLASH_EQ] = ACTIONS(7874), + [anon_sym_PERCENT_EQ] = ACTIONS(7874), + [anon_sym_PLUS_EQ] = ACTIONS(7874), + [anon_sym_DASH_EQ] = ACTIONS(7874), + [anon_sym_LT_LT_EQ] = ACTIONS(7874), + [anon_sym_GT_GT_EQ] = ACTIONS(7874), + [anon_sym_AMP_EQ] = ACTIONS(7874), + [anon_sym_CARET_EQ] = ACTIONS(7874), + [anon_sym_PIPE_EQ] = ACTIONS(7874), + [anon_sym_and_eq] = ACTIONS(7876), + [anon_sym_or_eq] = ACTIONS(7876), + [anon_sym_xor_eq] = ACTIONS(7876), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(7874), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7876), + [anon_sym_override] = ACTIONS(7876), + [anon_sym_requires] = ACTIONS(7876), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), }, [STATE(3614)] = { - [sym_identifier] = ACTIONS(7301), - [anon_sym_LPAREN2] = ACTIONS(7303), - [anon_sym_TILDE] = ACTIONS(7303), - [anon_sym_STAR] = ACTIONS(7303), - [anon_sym_PIPE_PIPE] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7303), - [anon_sym_AMP] = ACTIONS(7301), - [anon_sym___extension__] = ACTIONS(7301), - [anon_sym_virtual] = ACTIONS(7301), - [anon_sym_extern] = ACTIONS(7301), - [anon_sym___attribute__] = ACTIONS(7301), - [anon_sym___attribute] = ACTIONS(7301), - [anon_sym_using] = ACTIONS(7301), - [anon_sym_COLON_COLON] = ACTIONS(7303), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7303), - [anon_sym___declspec] = ACTIONS(7301), - [anon_sym___based] = ACTIONS(7301), - [anon_sym___cdecl] = ACTIONS(7301), - [anon_sym___clrcall] = ACTIONS(7301), - [anon_sym___stdcall] = ACTIONS(7301), - [anon_sym___fastcall] = ACTIONS(7301), - [anon_sym___thiscall] = ACTIONS(7301), - [anon_sym___vectorcall] = ACTIONS(7301), - [anon_sym_signed] = ACTIONS(7301), - [anon_sym_unsigned] = ACTIONS(7301), - [anon_sym_long] = ACTIONS(7301), - [anon_sym_short] = ACTIONS(7301), - [anon_sym_LBRACK] = ACTIONS(7301), - [anon_sym_static] = ACTIONS(7301), - [anon_sym_register] = ACTIONS(7301), - [anon_sym_inline] = ACTIONS(7301), - [anon_sym___inline] = ACTIONS(7301), - [anon_sym___inline__] = ACTIONS(7301), - [anon_sym___forceinline] = ACTIONS(7301), - [anon_sym_thread_local] = ACTIONS(7301), - [anon_sym___thread] = ACTIONS(7301), - [anon_sym_const] = ACTIONS(7301), - [anon_sym_constexpr] = ACTIONS(7301), - [anon_sym_volatile] = ACTIONS(7301), - [anon_sym_restrict] = ACTIONS(7301), - [anon_sym___restrict__] = ACTIONS(7301), - [anon_sym__Atomic] = ACTIONS(7301), - [anon_sym__Noreturn] = ACTIONS(7301), - [anon_sym_noreturn] = ACTIONS(7301), - [anon_sym__Nonnull] = ACTIONS(7301), - [anon_sym_mutable] = ACTIONS(7301), - [anon_sym_constinit] = ACTIONS(7301), - [anon_sym_consteval] = ACTIONS(7301), - [anon_sym_alignas] = ACTIONS(7301), - [anon_sym__Alignas] = ACTIONS(7301), - [sym_primitive_type] = ACTIONS(7301), - [anon_sym_enum] = ACTIONS(7301), - [anon_sym_class] = ACTIONS(7301), - [anon_sym_struct] = ACTIONS(7301), - [anon_sym_union] = ACTIONS(7301), - [anon_sym_or] = ACTIONS(7301), - [anon_sym_and] = ACTIONS(7301), - [anon_sym_typename] = ACTIONS(7301), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7301), - [anon_sym_decltype] = ACTIONS(7301), - [anon_sym_explicit] = ACTIONS(7301), - [anon_sym_template] = ACTIONS(7301), - [anon_sym_operator] = ACTIONS(7301), - [anon_sym_friend] = ACTIONS(7301), - [anon_sym_concept] = ACTIONS(7301), - [anon_sym_LBRACK_COLON] = ACTIONS(7303), + [sym_identifier] = ACTIONS(6606), + [anon_sym_LPAREN2] = ACTIONS(6608), + [anon_sym_TILDE] = ACTIONS(6608), + [anon_sym_STAR] = ACTIONS(6608), + [anon_sym_PIPE_PIPE] = ACTIONS(6608), + [anon_sym_AMP_AMP] = ACTIONS(6608), + [anon_sym_AMP] = ACTIONS(6606), + [anon_sym___extension__] = ACTIONS(6606), + [anon_sym_virtual] = ACTIONS(6606), + [anon_sym_extern] = ACTIONS(6606), + [anon_sym___attribute__] = ACTIONS(6606), + [anon_sym___attribute] = ACTIONS(6606), + [anon_sym_using] = ACTIONS(6606), + [anon_sym_COLON_COLON] = ACTIONS(6608), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6608), + [anon_sym___declspec] = ACTIONS(6606), + [anon_sym___based] = ACTIONS(6606), + [anon_sym___cdecl] = ACTIONS(6606), + [anon_sym___clrcall] = ACTIONS(6606), + [anon_sym___stdcall] = ACTIONS(6606), + [anon_sym___fastcall] = ACTIONS(6606), + [anon_sym___thiscall] = ACTIONS(6606), + [anon_sym___vectorcall] = ACTIONS(6606), + [anon_sym_signed] = ACTIONS(6606), + [anon_sym_unsigned] = ACTIONS(6606), + [anon_sym_long] = ACTIONS(6606), + [anon_sym_short] = ACTIONS(6606), + [anon_sym_LBRACK] = ACTIONS(6606), + [anon_sym_static] = ACTIONS(6606), + [anon_sym_register] = ACTIONS(6606), + [anon_sym_inline] = ACTIONS(6606), + [anon_sym___inline] = ACTIONS(6606), + [anon_sym___inline__] = ACTIONS(6606), + [anon_sym___forceinline] = ACTIONS(6606), + [anon_sym_thread_local] = ACTIONS(6606), + [anon_sym___thread] = ACTIONS(6606), + [anon_sym_const] = ACTIONS(6606), + [anon_sym_constexpr] = ACTIONS(6606), + [anon_sym_volatile] = ACTIONS(6606), + [anon_sym_restrict] = ACTIONS(6606), + [anon_sym___restrict__] = ACTIONS(6606), + [anon_sym__Atomic] = ACTIONS(6606), + [anon_sym__Noreturn] = ACTIONS(6606), + [anon_sym_noreturn] = ACTIONS(6606), + [anon_sym__Nonnull] = ACTIONS(6606), + [anon_sym_mutable] = ACTIONS(6606), + [anon_sym_constinit] = ACTIONS(6606), + [anon_sym_consteval] = ACTIONS(6606), + [anon_sym_alignas] = ACTIONS(6606), + [anon_sym__Alignas] = ACTIONS(6606), + [sym_primitive_type] = ACTIONS(6606), + [anon_sym_enum] = ACTIONS(6606), + [anon_sym_class] = ACTIONS(6606), + [anon_sym_struct] = ACTIONS(6606), + [anon_sym_union] = ACTIONS(6606), + [anon_sym_or] = ACTIONS(6606), + [anon_sym_and] = ACTIONS(6606), + [anon_sym_typename] = ACTIONS(6606), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6606), + [anon_sym_decltype] = ACTIONS(6606), + [anon_sym_explicit] = ACTIONS(6606), + [anon_sym_template] = ACTIONS(6606), + [anon_sym_operator] = ACTIONS(6606), + [anon_sym_friend] = ACTIONS(6606), + [anon_sym_concept] = ACTIONS(6606), + [anon_sym_LBRACK_COLON] = ACTIONS(6608), }, [STATE(3615)] = { - [sym_identifier] = ACTIONS(8992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8994), - [anon_sym_COMMA] = ACTIONS(8994), - [anon_sym_RPAREN] = ACTIONS(8994), - [aux_sym_preproc_if_token2] = ACTIONS(8994), - [aux_sym_preproc_else_token1] = ACTIONS(8994), - [aux_sym_preproc_elif_token1] = ACTIONS(8992), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), - [anon_sym_LPAREN2] = ACTIONS(8994), - [anon_sym_DASH] = ACTIONS(8992), - [anon_sym_PLUS] = ACTIONS(8992), - [anon_sym_STAR] = ACTIONS(8992), - [anon_sym_SLASH] = ACTIONS(8992), - [anon_sym_PERCENT] = ACTIONS(8992), - [anon_sym_PIPE_PIPE] = ACTIONS(8994), - [anon_sym_AMP_AMP] = ACTIONS(8994), - [anon_sym_PIPE] = ACTIONS(8992), - [anon_sym_CARET] = ACTIONS(8992), - [anon_sym_AMP] = ACTIONS(8992), - [anon_sym_EQ_EQ] = ACTIONS(8994), - [anon_sym_BANG_EQ] = ACTIONS(8994), - [anon_sym_GT] = ACTIONS(8992), - [anon_sym_GT_EQ] = ACTIONS(8994), - [anon_sym_LT_EQ] = ACTIONS(8992), - [anon_sym_LT] = ACTIONS(8992), - [anon_sym_LT_LT] = ACTIONS(8992), - [anon_sym_GT_GT] = ACTIONS(8992), - [anon_sym_SEMI] = ACTIONS(8994), - [anon_sym___attribute__] = ACTIONS(8992), - [anon_sym___attribute] = ACTIONS(8992), - [anon_sym_COLON] = ACTIONS(8992), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8994), - [anon_sym_RBRACE] = ACTIONS(8994), - [anon_sym_LBRACK] = ACTIONS(8994), - [anon_sym_EQ] = ACTIONS(8992), - [anon_sym_QMARK] = ACTIONS(8994), - [anon_sym_STAR_EQ] = ACTIONS(8994), - [anon_sym_SLASH_EQ] = ACTIONS(8994), - [anon_sym_PERCENT_EQ] = ACTIONS(8994), - [anon_sym_PLUS_EQ] = ACTIONS(8994), - [anon_sym_DASH_EQ] = ACTIONS(8994), - [anon_sym_LT_LT_EQ] = ACTIONS(8994), - [anon_sym_GT_GT_EQ] = ACTIONS(8994), - [anon_sym_AMP_EQ] = ACTIONS(8994), - [anon_sym_CARET_EQ] = ACTIONS(8994), - [anon_sym_PIPE_EQ] = ACTIONS(8994), - [anon_sym_and_eq] = ACTIONS(8992), - [anon_sym_or_eq] = ACTIONS(8992), - [anon_sym_xor_eq] = ACTIONS(8992), - [anon_sym_LT_EQ_GT] = ACTIONS(8994), - [anon_sym_or] = ACTIONS(8992), - [anon_sym_and] = ACTIONS(8992), - [anon_sym_bitor] = ACTIONS(8992), - [anon_sym_xor] = ACTIONS(8992), - [anon_sym_bitand] = ACTIONS(8992), - [anon_sym_not_eq] = ACTIONS(8992), - [anon_sym_DASH_DASH] = ACTIONS(8994), - [anon_sym_PLUS_PLUS] = ACTIONS(8994), - [anon_sym_DOT] = ACTIONS(8992), - [anon_sym_DOT_STAR] = ACTIONS(8994), - [anon_sym_DASH_GT] = ACTIONS(8994), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8992), - [anon_sym_override] = ACTIONS(8992), - [anon_sym_requires] = ACTIONS(8992), - [anon_sym_COLON_RBRACK] = ACTIONS(8994), + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym__function_exception_specification] = STATE(4068), + [sym__function_attributes_end] = STATE(5977), + [sym__function_postfix] = STATE(5370), + [sym_trailing_return_type] = STATE(5770), + [sym_noexcept] = STATE(4068), + [sym_throw_specifier] = STATE(4068), + [sym_requires_clause] = STATE(5370), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [anon_sym_RPAREN] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7874), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7874), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7874), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7874), + [anon_sym_GT_GT] = ACTIONS(7874), + [anon_sym_SEMI] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_COLON] = ACTIONS(7876), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7874), + [anon_sym_RBRACE] = ACTIONS(7874), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7874), + [anon_sym_and] = ACTIONS(7874), + [anon_sym_bitor] = ACTIONS(7874), + [anon_sym_xor] = ACTIONS(7874), + [anon_sym_bitand] = ACTIONS(7874), + [anon_sym_not_eq] = ACTIONS(7874), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(9221), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9224), + [anon_sym_override] = ACTIONS(9224), + [anon_sym_noexcept] = ACTIONS(7235), + [anon_sym_throw] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(9227), + [anon_sym_COLON_RBRACK] = ACTIONS(7874), }, [STATE(3616)] = { - [sym_identifier] = ACTIONS(8992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8994), - [anon_sym_COMMA] = ACTIONS(8994), - [anon_sym_RPAREN] = ACTIONS(8994), - [aux_sym_preproc_if_token2] = ACTIONS(8994), - [aux_sym_preproc_else_token1] = ACTIONS(8994), - [aux_sym_preproc_elif_token1] = ACTIONS(8992), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), - [anon_sym_LPAREN2] = ACTIONS(8994), - [anon_sym_DASH] = ACTIONS(8992), - [anon_sym_PLUS] = ACTIONS(8992), - [anon_sym_STAR] = ACTIONS(8992), - [anon_sym_SLASH] = ACTIONS(8992), - [anon_sym_PERCENT] = ACTIONS(8992), - [anon_sym_PIPE_PIPE] = ACTIONS(8994), - [anon_sym_AMP_AMP] = ACTIONS(8994), - [anon_sym_PIPE] = ACTIONS(8992), - [anon_sym_CARET] = ACTIONS(8992), - [anon_sym_AMP] = ACTIONS(8992), - [anon_sym_EQ_EQ] = ACTIONS(8994), - [anon_sym_BANG_EQ] = ACTIONS(8994), - [anon_sym_GT] = ACTIONS(8992), - [anon_sym_GT_EQ] = ACTIONS(8994), - [anon_sym_LT_EQ] = ACTIONS(8992), - [anon_sym_LT] = ACTIONS(8992), - [anon_sym_LT_LT] = ACTIONS(8992), - [anon_sym_GT_GT] = ACTIONS(8992), - [anon_sym_SEMI] = ACTIONS(8994), - [anon_sym___attribute__] = ACTIONS(8992), - [anon_sym___attribute] = ACTIONS(8992), - [anon_sym_COLON] = ACTIONS(8992), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8994), - [anon_sym_RBRACE] = ACTIONS(8994), - [anon_sym_LBRACK] = ACTIONS(8994), - [anon_sym_EQ] = ACTIONS(8992), - [anon_sym_QMARK] = ACTIONS(8994), - [anon_sym_STAR_EQ] = ACTIONS(8994), - [anon_sym_SLASH_EQ] = ACTIONS(8994), - [anon_sym_PERCENT_EQ] = ACTIONS(8994), - [anon_sym_PLUS_EQ] = ACTIONS(8994), - [anon_sym_DASH_EQ] = ACTIONS(8994), - [anon_sym_LT_LT_EQ] = ACTIONS(8994), - [anon_sym_GT_GT_EQ] = ACTIONS(8994), - [anon_sym_AMP_EQ] = ACTIONS(8994), - [anon_sym_CARET_EQ] = ACTIONS(8994), - [anon_sym_PIPE_EQ] = ACTIONS(8994), - [anon_sym_and_eq] = ACTIONS(8992), - [anon_sym_or_eq] = ACTIONS(8992), - [anon_sym_xor_eq] = ACTIONS(8992), - [anon_sym_LT_EQ_GT] = ACTIONS(8994), - [anon_sym_or] = ACTIONS(8992), - [anon_sym_and] = ACTIONS(8992), - [anon_sym_bitor] = ACTIONS(8992), - [anon_sym_xor] = ACTIONS(8992), - [anon_sym_bitand] = ACTIONS(8992), - [anon_sym_not_eq] = ACTIONS(8992), - [anon_sym_DASH_DASH] = ACTIONS(8994), - [anon_sym_PLUS_PLUS] = ACTIONS(8994), - [anon_sym_DOT] = ACTIONS(8992), - [anon_sym_DOT_STAR] = ACTIONS(8994), - [anon_sym_DASH_GT] = ACTIONS(8994), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8992), - [anon_sym_override] = ACTIONS(8992), - [anon_sym_requires] = ACTIONS(8992), - [anon_sym_COLON_RBRACK] = ACTIONS(8994), - }, - [STATE(3617)] = { - [sym_identifier] = ACTIONS(8992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8994), - [anon_sym_COMMA] = ACTIONS(8994), - [anon_sym_RPAREN] = ACTIONS(8994), - [aux_sym_preproc_if_token2] = ACTIONS(8994), - [aux_sym_preproc_else_token1] = ACTIONS(8994), - [aux_sym_preproc_elif_token1] = ACTIONS(8992), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8994), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8994), - [anon_sym_LPAREN2] = ACTIONS(8994), - [anon_sym_DASH] = ACTIONS(8992), - [anon_sym_PLUS] = ACTIONS(8992), - [anon_sym_STAR] = ACTIONS(8992), - [anon_sym_SLASH] = ACTIONS(8992), - [anon_sym_PERCENT] = ACTIONS(8992), - [anon_sym_PIPE_PIPE] = ACTIONS(8994), - [anon_sym_AMP_AMP] = ACTIONS(8994), - [anon_sym_PIPE] = ACTIONS(8992), - [anon_sym_CARET] = ACTIONS(8992), - [anon_sym_AMP] = ACTIONS(8992), - [anon_sym_EQ_EQ] = ACTIONS(8994), - [anon_sym_BANG_EQ] = ACTIONS(8994), - [anon_sym_GT] = ACTIONS(8992), - [anon_sym_GT_EQ] = ACTIONS(8994), - [anon_sym_LT_EQ] = ACTIONS(8992), - [anon_sym_LT] = ACTIONS(8992), - [anon_sym_LT_LT] = ACTIONS(8992), - [anon_sym_GT_GT] = ACTIONS(8992), - [anon_sym_SEMI] = ACTIONS(8994), - [anon_sym___attribute__] = ACTIONS(8992), - [anon_sym___attribute] = ACTIONS(8992), - [anon_sym_COLON] = ACTIONS(8992), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8994), - [anon_sym_RBRACE] = ACTIONS(8994), - [anon_sym_LBRACK] = ACTIONS(8994), - [anon_sym_EQ] = ACTIONS(8992), - [anon_sym_QMARK] = ACTIONS(8994), - [anon_sym_STAR_EQ] = ACTIONS(8994), - [anon_sym_SLASH_EQ] = ACTIONS(8994), - [anon_sym_PERCENT_EQ] = ACTIONS(8994), - [anon_sym_PLUS_EQ] = ACTIONS(8994), - [anon_sym_DASH_EQ] = ACTIONS(8994), - [anon_sym_LT_LT_EQ] = ACTIONS(8994), - [anon_sym_GT_GT_EQ] = ACTIONS(8994), - [anon_sym_AMP_EQ] = ACTIONS(8994), - [anon_sym_CARET_EQ] = ACTIONS(8994), - [anon_sym_PIPE_EQ] = ACTIONS(8994), - [anon_sym_and_eq] = ACTIONS(8992), - [anon_sym_or_eq] = ACTIONS(8992), - [anon_sym_xor_eq] = ACTIONS(8992), - [anon_sym_LT_EQ_GT] = ACTIONS(8994), - [anon_sym_or] = ACTIONS(8992), - [anon_sym_and] = ACTIONS(8992), - [anon_sym_bitor] = ACTIONS(8992), - [anon_sym_xor] = ACTIONS(8992), - [anon_sym_bitand] = ACTIONS(8992), - [anon_sym_not_eq] = ACTIONS(8992), - [anon_sym_DASH_DASH] = ACTIONS(8994), - [anon_sym_PLUS_PLUS] = ACTIONS(8994), - [anon_sym_DOT] = ACTIONS(8992), - [anon_sym_DOT_STAR] = ACTIONS(8994), - [anon_sym_DASH_GT] = ACTIONS(8994), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8992), - [anon_sym_override] = ACTIONS(8992), - [anon_sym_requires] = ACTIONS(8992), - [anon_sym_COLON_RBRACK] = ACTIONS(8994), - }, - [STATE(3618)] = { - [sym_string_literal] = STATE(3629), - [sym_raw_string_literal] = STATE(3629), - [aux_sym_concatenated_string_repeat1] = STATE(3629), - [sym_identifier] = ACTIONS(9320), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8454), - [anon_sym_COMMA] = ACTIONS(8454), - [anon_sym_RPAREN] = ACTIONS(8454), - [anon_sym_LPAREN2] = ACTIONS(8454), - [anon_sym_DASH] = ACTIONS(8456), - [anon_sym_PLUS] = ACTIONS(8456), - [anon_sym_STAR] = ACTIONS(8456), - [anon_sym_SLASH] = ACTIONS(8456), - [anon_sym_PERCENT] = ACTIONS(8456), - [anon_sym_PIPE_PIPE] = ACTIONS(8454), - [anon_sym_AMP_AMP] = ACTIONS(8454), - [anon_sym_PIPE] = ACTIONS(8456), - [anon_sym_CARET] = ACTIONS(8456), - [anon_sym_AMP] = ACTIONS(8456), - [anon_sym_EQ_EQ] = ACTIONS(8454), - [anon_sym_BANG_EQ] = ACTIONS(8454), - [anon_sym_GT] = ACTIONS(8456), - [anon_sym_GT_EQ] = ACTIONS(8454), - [anon_sym_LT_EQ] = ACTIONS(8456), - [anon_sym_LT] = ACTIONS(8456), - [anon_sym_LT_LT] = ACTIONS(8456), - [anon_sym_GT_GT] = ACTIONS(8456), - [anon_sym_LBRACK] = ACTIONS(8454), - [anon_sym_EQ] = ACTIONS(8456), - [anon_sym_QMARK] = ACTIONS(8454), - [anon_sym_STAR_EQ] = ACTIONS(8454), - [anon_sym_SLASH_EQ] = ACTIONS(8454), - [anon_sym_PERCENT_EQ] = ACTIONS(8454), - [anon_sym_PLUS_EQ] = ACTIONS(8454), - [anon_sym_DASH_EQ] = ACTIONS(8454), - [anon_sym_LT_LT_EQ] = ACTIONS(8454), - [anon_sym_GT_GT_EQ] = ACTIONS(8454), - [anon_sym_AMP_EQ] = ACTIONS(8454), - [anon_sym_CARET_EQ] = ACTIONS(8454), - [anon_sym_PIPE_EQ] = ACTIONS(8454), - [anon_sym_and_eq] = ACTIONS(8456), - [anon_sym_or_eq] = ACTIONS(8456), - [anon_sym_xor_eq] = ACTIONS(8456), - [anon_sym_LT_EQ_GT] = ACTIONS(8454), - [anon_sym_or] = ACTIONS(8456), - [anon_sym_and] = ACTIONS(8456), - [anon_sym_bitor] = ACTIONS(8456), - [anon_sym_xor] = ACTIONS(8456), - [anon_sym_bitand] = ACTIONS(8456), - [anon_sym_not_eq] = ACTIONS(8456), - [anon_sym_DASH_DASH] = ACTIONS(8454), - [anon_sym_PLUS_PLUS] = ACTIONS(8454), - [anon_sym_DOT] = ACTIONS(8456), - [anon_sym_DOT_STAR] = ACTIONS(8454), - [anon_sym_DASH_GT] = ACTIONS(8456), - [anon_sym_L_DQUOTE] = ACTIONS(6885), - [anon_sym_u_DQUOTE] = ACTIONS(6885), - [anon_sym_U_DQUOTE] = ACTIONS(6885), - [anon_sym_u8_DQUOTE] = ACTIONS(6885), - [anon_sym_DQUOTE] = ACTIONS(6885), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6887), - [anon_sym_LR_DQUOTE] = ACTIONS(6887), - [anon_sym_uR_DQUOTE] = ACTIONS(6887), - [anon_sym_UR_DQUOTE] = ACTIONS(6887), - [anon_sym_u8R_DQUOTE] = ACTIONS(6887), - [anon_sym_DASH_GT_STAR] = ACTIONS(8454), - [sym_literal_suffix] = ACTIONS(8456), - }, - [STATE(3619)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON] = ACTIONS(5704), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - }, - [STATE(3620)] = { - [sym_identifier] = ACTIONS(3155), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_RPAREN] = ACTIONS(3153), - [aux_sym_preproc_if_token2] = ACTIONS(3153), - [aux_sym_preproc_else_token1] = ACTIONS(3153), - [aux_sym_preproc_elif_token1] = ACTIONS(3155), - [aux_sym_preproc_elifdef_token1] = ACTIONS(3153), - [aux_sym_preproc_elifdef_token2] = ACTIONS(3153), - [anon_sym_LPAREN2] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3155), - [anon_sym_PLUS] = ACTIONS(3155), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3155), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_EQ_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3153), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3155), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3155), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym___attribute__] = ACTIONS(3155), - [anon_sym___attribute] = ACTIONS(3155), - [anon_sym_COLON] = ACTIONS(3155), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3153), - [anon_sym_EQ] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_STAR_EQ] = ACTIONS(3153), - [anon_sym_SLASH_EQ] = ACTIONS(3153), - [anon_sym_PERCENT_EQ] = ACTIONS(3153), - [anon_sym_PLUS_EQ] = ACTIONS(3153), - [anon_sym_DASH_EQ] = ACTIONS(3153), - [anon_sym_LT_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_GT_EQ] = ACTIONS(3153), - [anon_sym_AMP_EQ] = ACTIONS(3153), - [anon_sym_CARET_EQ] = ACTIONS(3153), - [anon_sym_PIPE_EQ] = ACTIONS(3153), - [anon_sym_and_eq] = ACTIONS(3155), - [anon_sym_or_eq] = ACTIONS(3155), - [anon_sym_xor_eq] = ACTIONS(3155), - [anon_sym_LT_EQ_GT] = ACTIONS(3153), - [anon_sym_or] = ACTIONS(3155), - [anon_sym_and] = ACTIONS(3155), - [anon_sym_bitor] = ACTIONS(3155), - [anon_sym_xor] = ACTIONS(3155), - [anon_sym_bitand] = ACTIONS(3155), - [anon_sym_not_eq] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3155), - [anon_sym_DOT_STAR] = ACTIONS(3153), - [anon_sym_DASH_GT] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(3155), - [anon_sym_override] = ACTIONS(3155), - [anon_sym_requires] = ACTIONS(3155), - [anon_sym_COLON_RBRACK] = ACTIONS(3153), - }, - [STATE(3621)] = { - [sym_identifier] = ACTIONS(6628), - [anon_sym_LPAREN2] = ACTIONS(6630), - [anon_sym_TILDE] = ACTIONS(6630), - [anon_sym_STAR] = ACTIONS(6630), - [anon_sym_PIPE_PIPE] = ACTIONS(6630), - [anon_sym_AMP_AMP] = ACTIONS(6630), - [anon_sym_AMP] = ACTIONS(6628), - [anon_sym___extension__] = ACTIONS(6628), - [anon_sym_virtual] = ACTIONS(6628), - [anon_sym_extern] = ACTIONS(6628), - [anon_sym___attribute__] = ACTIONS(6628), - [anon_sym___attribute] = ACTIONS(6628), - [anon_sym_using] = ACTIONS(6628), - [anon_sym_COLON_COLON] = ACTIONS(6630), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6630), - [anon_sym___declspec] = ACTIONS(6628), - [anon_sym___based] = ACTIONS(6628), - [anon_sym___cdecl] = ACTIONS(6628), - [anon_sym___clrcall] = ACTIONS(6628), - [anon_sym___stdcall] = ACTIONS(6628), - [anon_sym___fastcall] = ACTIONS(6628), - [anon_sym___thiscall] = ACTIONS(6628), - [anon_sym___vectorcall] = ACTIONS(6628), - [anon_sym_signed] = ACTIONS(6628), - [anon_sym_unsigned] = ACTIONS(6628), - [anon_sym_long] = ACTIONS(6628), - [anon_sym_short] = ACTIONS(6628), - [anon_sym_LBRACK] = ACTIONS(6628), - [anon_sym_static] = ACTIONS(6628), - [anon_sym_register] = ACTIONS(6628), - [anon_sym_inline] = ACTIONS(6628), - [anon_sym___inline] = ACTIONS(6628), - [anon_sym___inline__] = ACTIONS(6628), - [anon_sym___forceinline] = ACTIONS(6628), - [anon_sym_thread_local] = ACTIONS(6628), - [anon_sym___thread] = ACTIONS(6628), - [anon_sym_const] = ACTIONS(6628), - [anon_sym_constexpr] = ACTIONS(6628), - [anon_sym_volatile] = ACTIONS(6628), - [anon_sym_restrict] = ACTIONS(6628), - [anon_sym___restrict__] = ACTIONS(6628), - [anon_sym__Atomic] = ACTIONS(6628), - [anon_sym__Noreturn] = ACTIONS(6628), - [anon_sym_noreturn] = ACTIONS(6628), - [anon_sym__Nonnull] = ACTIONS(6628), - [anon_sym_mutable] = ACTIONS(6628), - [anon_sym_constinit] = ACTIONS(6628), - [anon_sym_consteval] = ACTIONS(6628), - [anon_sym_alignas] = ACTIONS(6628), - [anon_sym__Alignas] = ACTIONS(6628), - [sym_primitive_type] = ACTIONS(6628), - [anon_sym_enum] = ACTIONS(6628), - [anon_sym_class] = ACTIONS(6628), - [anon_sym_struct] = ACTIONS(6628), - [anon_sym_union] = ACTIONS(6628), - [anon_sym_or] = ACTIONS(6628), - [anon_sym_and] = ACTIONS(6628), - [anon_sym_typename] = ACTIONS(6628), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6628), - [anon_sym_decltype] = ACTIONS(6628), - [anon_sym_explicit] = ACTIONS(6628), - [anon_sym_template] = ACTIONS(6628), - [anon_sym_operator] = ACTIONS(6628), - [anon_sym_friend] = ACTIONS(6628), - [anon_sym_concept] = ACTIONS(6628), - [anon_sym_LBRACK_COLON] = ACTIONS(6630), - }, - [STATE(3622)] = { - [sym_identifier] = ACTIONS(9322), - [anon_sym_LPAREN2] = ACTIONS(9324), - [anon_sym_TILDE] = ACTIONS(9324), - [anon_sym_STAR] = ACTIONS(9324), - [anon_sym_PIPE_PIPE] = ACTIONS(9324), - [anon_sym_AMP_AMP] = ACTIONS(9326), - [anon_sym_AMP] = ACTIONS(9322), - [anon_sym___extension__] = ACTIONS(9322), - [anon_sym_virtual] = ACTIONS(9322), - [anon_sym_extern] = ACTIONS(9322), - [anon_sym___attribute__] = ACTIONS(9322), - [anon_sym___attribute] = ACTIONS(9322), - [anon_sym_using] = ACTIONS(9322), - [anon_sym_COLON_COLON] = ACTIONS(9324), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9324), - [anon_sym___declspec] = ACTIONS(9322), - [anon_sym___based] = ACTIONS(9322), - [anon_sym___cdecl] = ACTIONS(9322), - [anon_sym___clrcall] = ACTIONS(9322), - [anon_sym___stdcall] = ACTIONS(9322), - [anon_sym___fastcall] = ACTIONS(9322), - [anon_sym___thiscall] = ACTIONS(9322), - [anon_sym___vectorcall] = ACTIONS(9322), - [anon_sym_signed] = ACTIONS(9322), - [anon_sym_unsigned] = ACTIONS(9322), - [anon_sym_long] = ACTIONS(9322), - [anon_sym_short] = ACTIONS(9322), - [anon_sym_LBRACK] = ACTIONS(9322), - [anon_sym_static] = ACTIONS(9322), - [anon_sym_register] = ACTIONS(9322), - [anon_sym_inline] = ACTIONS(9322), - [anon_sym___inline] = ACTIONS(9322), - [anon_sym___inline__] = ACTIONS(9322), - [anon_sym___forceinline] = ACTIONS(9322), - [anon_sym_thread_local] = ACTIONS(9322), - [anon_sym___thread] = ACTIONS(9322), - [anon_sym_const] = ACTIONS(9322), - [anon_sym_constexpr] = ACTIONS(9322), - [anon_sym_volatile] = ACTIONS(9322), - [anon_sym_restrict] = ACTIONS(9322), - [anon_sym___restrict__] = ACTIONS(9322), - [anon_sym__Atomic] = ACTIONS(9322), - [anon_sym__Noreturn] = ACTIONS(9322), - [anon_sym_noreturn] = ACTIONS(9322), - [anon_sym__Nonnull] = ACTIONS(9322), - [anon_sym_mutable] = ACTIONS(9322), - [anon_sym_constinit] = ACTIONS(9322), - [anon_sym_consteval] = ACTIONS(9322), - [anon_sym_alignas] = ACTIONS(9322), - [anon_sym__Alignas] = ACTIONS(9322), - [sym_primitive_type] = ACTIONS(9322), - [anon_sym_enum] = ACTIONS(9322), - [anon_sym_class] = ACTIONS(9322), - [anon_sym_struct] = ACTIONS(9322), - [anon_sym_union] = ACTIONS(9322), - [anon_sym_or] = ACTIONS(9322), - [anon_sym_and] = ACTIONS(9328), - [anon_sym_typename] = ACTIONS(9322), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9322), - [anon_sym_decltype] = ACTIONS(9322), - [anon_sym_explicit] = ACTIONS(9322), - [anon_sym_template] = ACTIONS(9322), - [anon_sym_operator] = ACTIONS(9322), - [anon_sym_friend] = ACTIONS(9322), - [anon_sym_concept] = ACTIONS(9322), - [anon_sym_LBRACK_COLON] = ACTIONS(9324), - }, - [STATE(3623)] = { - [sym_template_argument_list] = STATE(2938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6572), - [anon_sym_COMMA] = ACTIONS(6572), - [anon_sym_RPAREN] = ACTIONS(6572), - [anon_sym_LPAREN2] = ACTIONS(6572), - [anon_sym_DASH] = ACTIONS(6565), - [anon_sym_PLUS] = ACTIONS(6565), - [anon_sym_STAR] = ACTIONS(6572), - [anon_sym_SLASH] = ACTIONS(6565), - [anon_sym_PERCENT] = ACTIONS(6572), - [anon_sym_PIPE_PIPE] = ACTIONS(6572), - [anon_sym_AMP_AMP] = ACTIONS(6572), - [anon_sym_PIPE] = ACTIONS(6565), - [anon_sym_CARET] = ACTIONS(6572), - [anon_sym_AMP] = ACTIONS(6565), - [anon_sym_EQ_EQ] = ACTIONS(6572), - [anon_sym_BANG_EQ] = ACTIONS(6572), - [anon_sym_GT] = ACTIONS(6565), - [anon_sym_GT_EQ] = ACTIONS(6572), - [anon_sym_LT_EQ] = ACTIONS(6565), - [anon_sym_LT] = ACTIONS(9330), - [anon_sym_LT_LT] = ACTIONS(6572), - [anon_sym_GT_GT] = ACTIONS(6572), - [anon_sym_SEMI] = ACTIONS(6572), - [anon_sym___extension__] = ACTIONS(6572), - [anon_sym___attribute__] = ACTIONS(6572), - [anon_sym___attribute] = ACTIONS(6565), - [anon_sym_COLON] = ACTIONS(6565), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6572), - [anon_sym_LBRACE] = ACTIONS(6572), - [anon_sym_RBRACE] = ACTIONS(6572), - [anon_sym_LBRACK] = ACTIONS(6572), - [anon_sym_const] = ACTIONS(6565), - [anon_sym_constexpr] = ACTIONS(6572), - [anon_sym_volatile] = ACTIONS(6572), - [anon_sym_restrict] = ACTIONS(6572), - [anon_sym___restrict__] = ACTIONS(6572), - [anon_sym__Atomic] = ACTIONS(6572), - [anon_sym__Noreturn] = ACTIONS(6572), - [anon_sym_noreturn] = ACTIONS(6572), - [anon_sym__Nonnull] = ACTIONS(6572), - [anon_sym_mutable] = ACTIONS(6572), - [anon_sym_constinit] = ACTIONS(6572), - [anon_sym_consteval] = ACTIONS(6572), - [anon_sym_alignas] = ACTIONS(6572), - [anon_sym__Alignas] = ACTIONS(6572), - [anon_sym_QMARK] = ACTIONS(6572), - [anon_sym_LT_EQ_GT] = ACTIONS(6572), - [anon_sym_or] = ACTIONS(6572), - [anon_sym_and] = ACTIONS(6572), - [anon_sym_bitor] = ACTIONS(6572), - [anon_sym_xor] = ACTIONS(6572), - [anon_sym_bitand] = ACTIONS(6572), - [anon_sym_not_eq] = ACTIONS(6572), - [anon_sym_DASH_DASH] = ACTIONS(6572), - [anon_sym_PLUS_PLUS] = ACTIONS(6572), - [anon_sym_DOT] = ACTIONS(6565), - [anon_sym_DOT_STAR] = ACTIONS(6572), - [anon_sym_DASH_GT] = ACTIONS(6572), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6572), - [anon_sym_decltype] = ACTIONS(6572), - [anon_sym_final] = ACTIONS(6572), - [anon_sym_override] = ACTIONS(6572), - [anon_sym_requires] = ACTIONS(6572), - [anon_sym_COLON_RBRACK] = ACTIONS(6572), - }, - [STATE(3624)] = { - [sym_identifier] = ACTIONS(6608), - [anon_sym_LPAREN2] = ACTIONS(6610), - [anon_sym_TILDE] = ACTIONS(6610), - [anon_sym_STAR] = ACTIONS(6610), - [anon_sym_PIPE_PIPE] = ACTIONS(6610), - [anon_sym_AMP_AMP] = ACTIONS(6610), - [anon_sym_AMP] = ACTIONS(6608), - [anon_sym___extension__] = ACTIONS(6608), - [anon_sym_virtual] = ACTIONS(6608), - [anon_sym_extern] = ACTIONS(6608), - [anon_sym___attribute__] = ACTIONS(6608), - [anon_sym___attribute] = ACTIONS(6608), - [anon_sym_using] = ACTIONS(6608), - [anon_sym_COLON_COLON] = ACTIONS(6610), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6610), - [anon_sym___declspec] = ACTIONS(6608), - [anon_sym___based] = ACTIONS(6608), - [anon_sym___cdecl] = ACTIONS(6608), - [anon_sym___clrcall] = ACTIONS(6608), - [anon_sym___stdcall] = ACTIONS(6608), - [anon_sym___fastcall] = ACTIONS(6608), - [anon_sym___thiscall] = ACTIONS(6608), - [anon_sym___vectorcall] = ACTIONS(6608), - [anon_sym_signed] = ACTIONS(6608), - [anon_sym_unsigned] = ACTIONS(6608), - [anon_sym_long] = ACTIONS(6608), - [anon_sym_short] = ACTIONS(6608), - [anon_sym_LBRACK] = ACTIONS(6608), - [anon_sym_static] = ACTIONS(6608), - [anon_sym_register] = ACTIONS(6608), - [anon_sym_inline] = ACTIONS(6608), - [anon_sym___inline] = ACTIONS(6608), - [anon_sym___inline__] = ACTIONS(6608), - [anon_sym___forceinline] = ACTIONS(6608), - [anon_sym_thread_local] = ACTIONS(6608), - [anon_sym___thread] = ACTIONS(6608), - [anon_sym_const] = ACTIONS(6608), - [anon_sym_constexpr] = ACTIONS(6608), - [anon_sym_volatile] = ACTIONS(6608), - [anon_sym_restrict] = ACTIONS(6608), - [anon_sym___restrict__] = ACTIONS(6608), - [anon_sym__Atomic] = ACTIONS(6608), - [anon_sym__Noreturn] = ACTIONS(6608), - [anon_sym_noreturn] = ACTIONS(6608), - [anon_sym__Nonnull] = ACTIONS(6608), - [anon_sym_mutable] = ACTIONS(6608), - [anon_sym_constinit] = ACTIONS(6608), - [anon_sym_consteval] = ACTIONS(6608), - [anon_sym_alignas] = ACTIONS(6608), - [anon_sym__Alignas] = ACTIONS(6608), - [sym_primitive_type] = ACTIONS(6608), - [anon_sym_enum] = ACTIONS(6608), - [anon_sym_class] = ACTIONS(6608), - [anon_sym_struct] = ACTIONS(6608), - [anon_sym_union] = ACTIONS(6608), - [anon_sym_or] = ACTIONS(6608), - [anon_sym_and] = ACTIONS(6608), - [anon_sym_typename] = ACTIONS(6608), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6608), - [anon_sym_decltype] = ACTIONS(6608), - [anon_sym_explicit] = ACTIONS(6608), - [anon_sym_template] = ACTIONS(6608), - [anon_sym_operator] = ACTIONS(6608), - [anon_sym_friend] = ACTIONS(6608), - [anon_sym_concept] = ACTIONS(6608), - [anon_sym_LBRACK_COLON] = ACTIONS(6610), - }, - [STATE(3625)] = { - [sym_identifier] = ACTIONS(9333), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9335), - [anon_sym_COMMA] = ACTIONS(9335), - [anon_sym_RPAREN] = ACTIONS(9335), - [aux_sym_preproc_if_token2] = ACTIONS(9335), - [aux_sym_preproc_else_token1] = ACTIONS(9335), - [aux_sym_preproc_elif_token1] = ACTIONS(9333), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9335), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9335), - [anon_sym_LPAREN2] = ACTIONS(9335), - [anon_sym_DASH] = ACTIONS(9333), - [anon_sym_PLUS] = ACTIONS(9333), - [anon_sym_STAR] = ACTIONS(9333), - [anon_sym_SLASH] = ACTIONS(9333), - [anon_sym_PERCENT] = ACTIONS(9333), - [anon_sym_PIPE_PIPE] = ACTIONS(9335), - [anon_sym_AMP_AMP] = ACTIONS(9335), - [anon_sym_PIPE] = ACTIONS(9333), - [anon_sym_CARET] = ACTIONS(9333), - [anon_sym_AMP] = ACTIONS(9333), - [anon_sym_EQ_EQ] = ACTIONS(9335), - [anon_sym_BANG_EQ] = ACTIONS(9335), - [anon_sym_GT] = ACTIONS(9333), - [anon_sym_GT_EQ] = ACTIONS(9335), - [anon_sym_LT_EQ] = ACTIONS(9333), - [anon_sym_LT] = ACTIONS(9333), - [anon_sym_LT_LT] = ACTIONS(9333), - [anon_sym_GT_GT] = ACTIONS(9333), - [anon_sym_SEMI] = ACTIONS(9335), - [anon_sym___attribute__] = ACTIONS(9333), - [anon_sym___attribute] = ACTIONS(9333), - [anon_sym_COLON] = ACTIONS(9333), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9335), - [anon_sym_RBRACE] = ACTIONS(9335), - [anon_sym_LBRACK] = ACTIONS(9335), - [anon_sym_EQ] = ACTIONS(9333), - [anon_sym_QMARK] = ACTIONS(9335), - [anon_sym_STAR_EQ] = ACTIONS(9335), - [anon_sym_SLASH_EQ] = ACTIONS(9335), - [anon_sym_PERCENT_EQ] = ACTIONS(9335), - [anon_sym_PLUS_EQ] = ACTIONS(9335), - [anon_sym_DASH_EQ] = ACTIONS(9335), - [anon_sym_LT_LT_EQ] = ACTIONS(9335), - [anon_sym_GT_GT_EQ] = ACTIONS(9335), - [anon_sym_AMP_EQ] = ACTIONS(9335), - [anon_sym_CARET_EQ] = ACTIONS(9335), - [anon_sym_PIPE_EQ] = ACTIONS(9335), - [anon_sym_and_eq] = ACTIONS(9333), - [anon_sym_or_eq] = ACTIONS(9333), - [anon_sym_xor_eq] = ACTIONS(9333), - [anon_sym_LT_EQ_GT] = ACTIONS(9335), - [anon_sym_or] = ACTIONS(9333), - [anon_sym_and] = ACTIONS(9333), - [anon_sym_bitor] = ACTIONS(9333), - [anon_sym_xor] = ACTIONS(9333), - [anon_sym_bitand] = ACTIONS(9333), - [anon_sym_not_eq] = ACTIONS(9333), - [anon_sym_DASH_DASH] = ACTIONS(9335), - [anon_sym_PLUS_PLUS] = ACTIONS(9335), - [anon_sym_DOT] = ACTIONS(9333), - [anon_sym_DOT_STAR] = ACTIONS(9335), - [anon_sym_DASH_GT] = ACTIONS(9335), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9333), - [anon_sym_override] = ACTIONS(9333), - [anon_sym_requires] = ACTIONS(9333), - [anon_sym_COLON_RBRACK] = ACTIONS(9335), - }, - [STATE(3626)] = { [sym_identifier] = ACTIONS(9337), [anon_sym_DOT_DOT_DOT] = ACTIONS(9339), [anon_sym_COMMA] = ACTIONS(9339), @@ -438385,904 +437529,1111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(9337), [anon_sym_COLON_RBRACK] = ACTIONS(9339), }, - [STATE(3627)] = { - [sym_identifier] = ACTIONS(9000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9002), - [anon_sym_COMMA] = ACTIONS(9002), - [anon_sym_RPAREN] = ACTIONS(9002), - [aux_sym_preproc_if_token2] = ACTIONS(9002), - [aux_sym_preproc_else_token1] = ACTIONS(9002), - [aux_sym_preproc_elif_token1] = ACTIONS(9000), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9002), - [anon_sym_LPAREN2] = ACTIONS(9002), - [anon_sym_DASH] = ACTIONS(9000), - [anon_sym_PLUS] = ACTIONS(9000), - [anon_sym_STAR] = ACTIONS(9000), - [anon_sym_SLASH] = ACTIONS(9000), - [anon_sym_PERCENT] = ACTIONS(9000), - [anon_sym_PIPE_PIPE] = ACTIONS(9002), - [anon_sym_AMP_AMP] = ACTIONS(9002), - [anon_sym_PIPE] = ACTIONS(9000), - [anon_sym_CARET] = ACTIONS(9000), - [anon_sym_AMP] = ACTIONS(9000), - [anon_sym_EQ_EQ] = ACTIONS(9002), - [anon_sym_BANG_EQ] = ACTIONS(9002), - [anon_sym_GT] = ACTIONS(9000), - [anon_sym_GT_EQ] = ACTIONS(9002), - [anon_sym_LT_EQ] = ACTIONS(9000), - [anon_sym_LT] = ACTIONS(9000), - [anon_sym_LT_LT] = ACTIONS(9000), - [anon_sym_GT_GT] = ACTIONS(9000), - [anon_sym_SEMI] = ACTIONS(9002), - [anon_sym___attribute__] = ACTIONS(9000), - [anon_sym___attribute] = ACTIONS(9000), - [anon_sym_COLON] = ACTIONS(9000), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9002), - [anon_sym_RBRACE] = ACTIONS(9002), - [anon_sym_LBRACK] = ACTIONS(9002), - [anon_sym_EQ] = ACTIONS(9000), - [anon_sym_QMARK] = ACTIONS(9002), - [anon_sym_STAR_EQ] = ACTIONS(9002), - [anon_sym_SLASH_EQ] = ACTIONS(9002), - [anon_sym_PERCENT_EQ] = ACTIONS(9002), - [anon_sym_PLUS_EQ] = ACTIONS(9002), - [anon_sym_DASH_EQ] = ACTIONS(9002), - [anon_sym_LT_LT_EQ] = ACTIONS(9002), - [anon_sym_GT_GT_EQ] = ACTIONS(9002), - [anon_sym_AMP_EQ] = ACTIONS(9002), - [anon_sym_CARET_EQ] = ACTIONS(9002), - [anon_sym_PIPE_EQ] = ACTIONS(9002), - [anon_sym_and_eq] = ACTIONS(9000), - [anon_sym_or_eq] = ACTIONS(9000), - [anon_sym_xor_eq] = ACTIONS(9000), - [anon_sym_LT_EQ_GT] = ACTIONS(9002), - [anon_sym_or] = ACTIONS(9000), - [anon_sym_and] = ACTIONS(9000), - [anon_sym_bitor] = ACTIONS(9000), - [anon_sym_xor] = ACTIONS(9000), - [anon_sym_bitand] = ACTIONS(9000), - [anon_sym_not_eq] = ACTIONS(9000), - [anon_sym_DASH_DASH] = ACTIONS(9002), - [anon_sym_PLUS_PLUS] = ACTIONS(9002), - [anon_sym_DOT] = ACTIONS(9000), - [anon_sym_DOT_STAR] = ACTIONS(9002), - [anon_sym_DASH_GT] = ACTIONS(9002), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9000), - [anon_sym_override] = ACTIONS(9000), - [anon_sym_requires] = ACTIONS(9000), - [anon_sym_COLON_RBRACK] = ACTIONS(9002), + [STATE(3617)] = { + [sym_identifier] = ACTIONS(6590), + [anon_sym_LPAREN2] = ACTIONS(6592), + [anon_sym_TILDE] = ACTIONS(6592), + [anon_sym_STAR] = ACTIONS(6592), + [anon_sym_PIPE_PIPE] = ACTIONS(6592), + [anon_sym_AMP_AMP] = ACTIONS(6592), + [anon_sym_AMP] = ACTIONS(6590), + [anon_sym___extension__] = ACTIONS(6590), + [anon_sym_virtual] = ACTIONS(6590), + [anon_sym_extern] = ACTIONS(6590), + [anon_sym___attribute__] = ACTIONS(6590), + [anon_sym___attribute] = ACTIONS(6590), + [anon_sym_using] = ACTIONS(6590), + [anon_sym_COLON_COLON] = ACTIONS(6592), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6592), + [anon_sym___declspec] = ACTIONS(6590), + [anon_sym___based] = ACTIONS(6590), + [anon_sym___cdecl] = ACTIONS(6590), + [anon_sym___clrcall] = ACTIONS(6590), + [anon_sym___stdcall] = ACTIONS(6590), + [anon_sym___fastcall] = ACTIONS(6590), + [anon_sym___thiscall] = ACTIONS(6590), + [anon_sym___vectorcall] = ACTIONS(6590), + [anon_sym_signed] = ACTIONS(6590), + [anon_sym_unsigned] = ACTIONS(6590), + [anon_sym_long] = ACTIONS(6590), + [anon_sym_short] = ACTIONS(6590), + [anon_sym_LBRACK] = ACTIONS(6590), + [anon_sym_static] = ACTIONS(6590), + [anon_sym_register] = ACTIONS(6590), + [anon_sym_inline] = ACTIONS(6590), + [anon_sym___inline] = ACTIONS(6590), + [anon_sym___inline__] = ACTIONS(6590), + [anon_sym___forceinline] = ACTIONS(6590), + [anon_sym_thread_local] = ACTIONS(6590), + [anon_sym___thread] = ACTIONS(6590), + [anon_sym_const] = ACTIONS(6590), + [anon_sym_constexpr] = ACTIONS(6590), + [anon_sym_volatile] = ACTIONS(6590), + [anon_sym_restrict] = ACTIONS(6590), + [anon_sym___restrict__] = ACTIONS(6590), + [anon_sym__Atomic] = ACTIONS(6590), + [anon_sym__Noreturn] = ACTIONS(6590), + [anon_sym_noreturn] = ACTIONS(6590), + [anon_sym__Nonnull] = ACTIONS(6590), + [anon_sym_mutable] = ACTIONS(6590), + [anon_sym_constinit] = ACTIONS(6590), + [anon_sym_consteval] = ACTIONS(6590), + [anon_sym_alignas] = ACTIONS(6590), + [anon_sym__Alignas] = ACTIONS(6590), + [sym_primitive_type] = ACTIONS(6590), + [anon_sym_enum] = ACTIONS(6590), + [anon_sym_class] = ACTIONS(6590), + [anon_sym_struct] = ACTIONS(6590), + [anon_sym_union] = ACTIONS(6590), + [anon_sym_or] = ACTIONS(6590), + [anon_sym_and] = ACTIONS(6590), + [anon_sym_typename] = ACTIONS(6590), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6590), + [anon_sym_decltype] = ACTIONS(6590), + [anon_sym_explicit] = ACTIONS(6590), + [anon_sym_template] = ACTIONS(6590), + [anon_sym_operator] = ACTIONS(6590), + [anon_sym_friend] = ACTIONS(6590), + [anon_sym_concept] = ACTIONS(6590), + [anon_sym_LBRACK_COLON] = ACTIONS(6592), }, - [STATE(3628)] = { - [sym_identifier] = ACTIONS(7968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [aux_sym_preproc_if_token2] = ACTIONS(7966), - [aux_sym_preproc_else_token1] = ACTIONS(7966), - [aux_sym_preproc_elif_token1] = ACTIONS(7968), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7968), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7968), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7968), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7968), - [anon_sym_GT_GT] = ACTIONS(7968), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(7968), - [anon_sym___attribute] = ACTIONS(7968), - [anon_sym_COLON] = ACTIONS(7968), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), - [anon_sym_RBRACE] = ACTIONS(7966), - [anon_sym_LBRACK] = ACTIONS(7966), - [anon_sym_EQ] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_STAR_EQ] = ACTIONS(7966), - [anon_sym_SLASH_EQ] = ACTIONS(7966), - [anon_sym_PERCENT_EQ] = ACTIONS(7966), - [anon_sym_PLUS_EQ] = ACTIONS(7966), - [anon_sym_DASH_EQ] = ACTIONS(7966), - [anon_sym_LT_LT_EQ] = ACTIONS(7966), - [anon_sym_GT_GT_EQ] = ACTIONS(7966), - [anon_sym_AMP_EQ] = ACTIONS(7966), - [anon_sym_CARET_EQ] = ACTIONS(7966), - [anon_sym_PIPE_EQ] = ACTIONS(7966), - [anon_sym_and_eq] = ACTIONS(7968), - [anon_sym_or_eq] = ACTIONS(7968), - [anon_sym_xor_eq] = ACTIONS(7968), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7968), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7968), - [anon_sym_not_eq] = ACTIONS(7968), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(7966), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7968), - [anon_sym_override] = ACTIONS(7968), - [anon_sym_requires] = ACTIONS(7968), - [anon_sym_COLON_RBRACK] = ACTIONS(7966), + [STATE(3618)] = { + [sym_identifier] = ACTIONS(6596), + [anon_sym_LPAREN2] = ACTIONS(6598), + [anon_sym_TILDE] = ACTIONS(6598), + [anon_sym_STAR] = ACTIONS(6598), + [anon_sym_PIPE_PIPE] = ACTIONS(6598), + [anon_sym_AMP_AMP] = ACTIONS(6598), + [anon_sym_AMP] = ACTIONS(6596), + [anon_sym___extension__] = ACTIONS(6596), + [anon_sym_virtual] = ACTIONS(6596), + [anon_sym_extern] = ACTIONS(6596), + [anon_sym___attribute__] = ACTIONS(6596), + [anon_sym___attribute] = ACTIONS(6596), + [anon_sym_using] = ACTIONS(6596), + [anon_sym_COLON_COLON] = ACTIONS(6598), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6598), + [anon_sym___declspec] = ACTIONS(6596), + [anon_sym___based] = ACTIONS(6596), + [anon_sym___cdecl] = ACTIONS(6596), + [anon_sym___clrcall] = ACTIONS(6596), + [anon_sym___stdcall] = ACTIONS(6596), + [anon_sym___fastcall] = ACTIONS(6596), + [anon_sym___thiscall] = ACTIONS(6596), + [anon_sym___vectorcall] = ACTIONS(6596), + [anon_sym_signed] = ACTIONS(6596), + [anon_sym_unsigned] = ACTIONS(6596), + [anon_sym_long] = ACTIONS(6596), + [anon_sym_short] = ACTIONS(6596), + [anon_sym_LBRACK] = ACTIONS(6596), + [anon_sym_static] = ACTIONS(6596), + [anon_sym_register] = ACTIONS(6596), + [anon_sym_inline] = ACTIONS(6596), + [anon_sym___inline] = ACTIONS(6596), + [anon_sym___inline__] = ACTIONS(6596), + [anon_sym___forceinline] = ACTIONS(6596), + [anon_sym_thread_local] = ACTIONS(6596), + [anon_sym___thread] = ACTIONS(6596), + [anon_sym_const] = ACTIONS(6596), + [anon_sym_constexpr] = ACTIONS(6596), + [anon_sym_volatile] = ACTIONS(6596), + [anon_sym_restrict] = ACTIONS(6596), + [anon_sym___restrict__] = ACTIONS(6596), + [anon_sym__Atomic] = ACTIONS(6596), + [anon_sym__Noreturn] = ACTIONS(6596), + [anon_sym_noreturn] = ACTIONS(6596), + [anon_sym__Nonnull] = ACTIONS(6596), + [anon_sym_mutable] = ACTIONS(6596), + [anon_sym_constinit] = ACTIONS(6596), + [anon_sym_consteval] = ACTIONS(6596), + [anon_sym_alignas] = ACTIONS(6596), + [anon_sym__Alignas] = ACTIONS(6596), + [sym_primitive_type] = ACTIONS(6596), + [anon_sym_enum] = ACTIONS(6596), + [anon_sym_class] = ACTIONS(6596), + [anon_sym_struct] = ACTIONS(6596), + [anon_sym_union] = ACTIONS(6596), + [anon_sym_or] = ACTIONS(6596), + [anon_sym_and] = ACTIONS(6596), + [anon_sym_typename] = ACTIONS(6596), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6596), + [anon_sym_decltype] = ACTIONS(6596), + [anon_sym_explicit] = ACTIONS(6596), + [anon_sym_template] = ACTIONS(6596), + [anon_sym_operator] = ACTIONS(6596), + [anon_sym_friend] = ACTIONS(6596), + [anon_sym_concept] = ACTIONS(6596), + [anon_sym_LBRACK_COLON] = ACTIONS(6598), }, - [STATE(3629)] = { - [sym_string_literal] = STATE(3629), - [sym_raw_string_literal] = STATE(3629), - [aux_sym_concatenated_string_repeat1] = STATE(3629), - [sym_identifier] = ACTIONS(9341), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8406), - [anon_sym_COMMA] = ACTIONS(8406), - [anon_sym_RPAREN] = ACTIONS(8406), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_DASH] = ACTIONS(8408), - [anon_sym_PLUS] = ACTIONS(8408), - [anon_sym_STAR] = ACTIONS(8408), - [anon_sym_SLASH] = ACTIONS(8408), - [anon_sym_PERCENT] = ACTIONS(8408), - [anon_sym_PIPE_PIPE] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_PIPE] = ACTIONS(8408), - [anon_sym_CARET] = ACTIONS(8408), - [anon_sym_AMP] = ACTIONS(8408), - [anon_sym_EQ_EQ] = ACTIONS(8406), - [anon_sym_BANG_EQ] = ACTIONS(8406), - [anon_sym_GT] = ACTIONS(8408), - [anon_sym_GT_EQ] = ACTIONS(8406), - [anon_sym_LT_EQ] = ACTIONS(8408), - [anon_sym_LT] = ACTIONS(8408), - [anon_sym_LT_LT] = ACTIONS(8408), - [anon_sym_GT_GT] = ACTIONS(8408), - [anon_sym_LBRACK] = ACTIONS(8406), - [anon_sym_EQ] = ACTIONS(8408), - [anon_sym_QMARK] = ACTIONS(8406), - [anon_sym_STAR_EQ] = ACTIONS(8406), - [anon_sym_SLASH_EQ] = ACTIONS(8406), - [anon_sym_PERCENT_EQ] = ACTIONS(8406), - [anon_sym_PLUS_EQ] = ACTIONS(8406), - [anon_sym_DASH_EQ] = ACTIONS(8406), - [anon_sym_LT_LT_EQ] = ACTIONS(8406), - [anon_sym_GT_GT_EQ] = ACTIONS(8406), - [anon_sym_AMP_EQ] = ACTIONS(8406), - [anon_sym_CARET_EQ] = ACTIONS(8406), - [anon_sym_PIPE_EQ] = ACTIONS(8406), - [anon_sym_and_eq] = ACTIONS(8408), - [anon_sym_or_eq] = ACTIONS(8408), - [anon_sym_xor_eq] = ACTIONS(8408), - [anon_sym_LT_EQ_GT] = ACTIONS(8406), - [anon_sym_or] = ACTIONS(8408), - [anon_sym_and] = ACTIONS(8408), - [anon_sym_bitor] = ACTIONS(8408), - [anon_sym_xor] = ACTIONS(8408), - [anon_sym_bitand] = ACTIONS(8408), - [anon_sym_not_eq] = ACTIONS(8408), - [anon_sym_DASH_DASH] = ACTIONS(8406), - [anon_sym_PLUS_PLUS] = ACTIONS(8406), - [anon_sym_DOT] = ACTIONS(8408), - [anon_sym_DOT_STAR] = ACTIONS(8406), - [anon_sym_DASH_GT] = ACTIONS(8408), - [anon_sym_L_DQUOTE] = ACTIONS(9344), - [anon_sym_u_DQUOTE] = ACTIONS(9344), - [anon_sym_U_DQUOTE] = ACTIONS(9344), - [anon_sym_u8_DQUOTE] = ACTIONS(9344), - [anon_sym_DQUOTE] = ACTIONS(9344), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(9347), - [anon_sym_LR_DQUOTE] = ACTIONS(9347), - [anon_sym_uR_DQUOTE] = ACTIONS(9347), - [anon_sym_UR_DQUOTE] = ACTIONS(9347), - [anon_sym_u8R_DQUOTE] = ACTIONS(9347), - [anon_sym_DASH_GT_STAR] = ACTIONS(8406), - [sym_literal_suffix] = ACTIONS(8408), + [STATE(3619)] = { + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym__function_exception_specification] = STATE(4072), + [sym__function_attributes_end] = STATE(5981), + [sym__function_postfix] = STATE(5296), + [sym_trailing_return_type] = STATE(5775), + [sym_noexcept] = STATE(4072), + [sym_throw_specifier] = STATE(4072), + [sym_requires_clause] = STATE(5296), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7970), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7970), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7970), + [anon_sym_GT_GT] = ACTIONS(7970), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_COLON] = ACTIONS(7972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7970), + [anon_sym_RBRACE] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7970), + [anon_sym_and] = ACTIONS(7970), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7970), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(9341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9344), + [anon_sym_override] = ACTIONS(9344), + [anon_sym_noexcept] = ACTIONS(7235), + [anon_sym_throw] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(9347), + [anon_sym_COLON_RBRACK] = ACTIONS(7970), }, - [STATE(3630)] = { - [sym_identifier] = ACTIONS(8996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8998), - [anon_sym_COMMA] = ACTIONS(8998), - [anon_sym_RPAREN] = ACTIONS(8998), - [aux_sym_preproc_if_token2] = ACTIONS(8998), - [aux_sym_preproc_else_token1] = ACTIONS(8998), - [aux_sym_preproc_elif_token1] = ACTIONS(8996), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8998), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8998), - [anon_sym_LPAREN2] = ACTIONS(8998), - [anon_sym_DASH] = ACTIONS(8996), - [anon_sym_PLUS] = ACTIONS(8996), - [anon_sym_STAR] = ACTIONS(8996), - [anon_sym_SLASH] = ACTIONS(8996), - [anon_sym_PERCENT] = ACTIONS(8996), - [anon_sym_PIPE_PIPE] = ACTIONS(8998), - [anon_sym_AMP_AMP] = ACTIONS(8998), - [anon_sym_PIPE] = ACTIONS(8996), - [anon_sym_CARET] = ACTIONS(8996), - [anon_sym_AMP] = ACTIONS(8996), - [anon_sym_EQ_EQ] = ACTIONS(8998), - [anon_sym_BANG_EQ] = ACTIONS(8998), - [anon_sym_GT] = ACTIONS(8996), - [anon_sym_GT_EQ] = ACTIONS(8998), - [anon_sym_LT_EQ] = ACTIONS(8996), - [anon_sym_LT] = ACTIONS(8996), - [anon_sym_LT_LT] = ACTIONS(8996), - [anon_sym_GT_GT] = ACTIONS(8996), - [anon_sym_SEMI] = ACTIONS(8998), - [anon_sym___attribute__] = ACTIONS(8996), - [anon_sym___attribute] = ACTIONS(8996), - [anon_sym_COLON] = ACTIONS(8996), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8998), - [anon_sym_RBRACE] = ACTIONS(8998), - [anon_sym_LBRACK] = ACTIONS(8998), - [anon_sym_EQ] = ACTIONS(8996), - [anon_sym_QMARK] = ACTIONS(8998), - [anon_sym_STAR_EQ] = ACTIONS(8998), - [anon_sym_SLASH_EQ] = ACTIONS(8998), - [anon_sym_PERCENT_EQ] = ACTIONS(8998), - [anon_sym_PLUS_EQ] = ACTIONS(8998), - [anon_sym_DASH_EQ] = ACTIONS(8998), - [anon_sym_LT_LT_EQ] = ACTIONS(8998), - [anon_sym_GT_GT_EQ] = ACTIONS(8998), - [anon_sym_AMP_EQ] = ACTIONS(8998), - [anon_sym_CARET_EQ] = ACTIONS(8998), - [anon_sym_PIPE_EQ] = ACTIONS(8998), - [anon_sym_and_eq] = ACTIONS(8996), - [anon_sym_or_eq] = ACTIONS(8996), - [anon_sym_xor_eq] = ACTIONS(8996), - [anon_sym_LT_EQ_GT] = ACTIONS(8998), - [anon_sym_or] = ACTIONS(8996), - [anon_sym_and] = ACTIONS(8996), - [anon_sym_bitor] = ACTIONS(8996), - [anon_sym_xor] = ACTIONS(8996), - [anon_sym_bitand] = ACTIONS(8996), - [anon_sym_not_eq] = ACTIONS(8996), - [anon_sym_DASH_DASH] = ACTIONS(8998), - [anon_sym_PLUS_PLUS] = ACTIONS(8998), - [anon_sym_DOT] = ACTIONS(8996), - [anon_sym_DOT_STAR] = ACTIONS(8998), - [anon_sym_DASH_GT] = ACTIONS(8998), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8996), - [anon_sym_override] = ACTIONS(8996), - [anon_sym_requires] = ACTIONS(8996), - [anon_sym_COLON_RBRACK] = ACTIONS(8998), + [STATE(3620)] = { + [sym_identifier] = ACTIONS(6610), + [anon_sym_LPAREN2] = ACTIONS(6612), + [anon_sym_TILDE] = ACTIONS(6612), + [anon_sym_STAR] = ACTIONS(6612), + [anon_sym_PIPE_PIPE] = ACTIONS(6612), + [anon_sym_AMP_AMP] = ACTIONS(6612), + [anon_sym_AMP] = ACTIONS(6610), + [anon_sym___extension__] = ACTIONS(6610), + [anon_sym_virtual] = ACTIONS(6610), + [anon_sym_extern] = ACTIONS(6610), + [anon_sym___attribute__] = ACTIONS(6610), + [anon_sym___attribute] = ACTIONS(6610), + [anon_sym_using] = ACTIONS(6610), + [anon_sym_COLON_COLON] = ACTIONS(6612), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6612), + [anon_sym___declspec] = ACTIONS(6610), + [anon_sym___based] = ACTIONS(6610), + [anon_sym___cdecl] = ACTIONS(6610), + [anon_sym___clrcall] = ACTIONS(6610), + [anon_sym___stdcall] = ACTIONS(6610), + [anon_sym___fastcall] = ACTIONS(6610), + [anon_sym___thiscall] = ACTIONS(6610), + [anon_sym___vectorcall] = ACTIONS(6610), + [anon_sym_signed] = ACTIONS(6610), + [anon_sym_unsigned] = ACTIONS(6610), + [anon_sym_long] = ACTIONS(6610), + [anon_sym_short] = ACTIONS(6610), + [anon_sym_LBRACK] = ACTIONS(6610), + [anon_sym_static] = ACTIONS(6610), + [anon_sym_register] = ACTIONS(6610), + [anon_sym_inline] = ACTIONS(6610), + [anon_sym___inline] = ACTIONS(6610), + [anon_sym___inline__] = ACTIONS(6610), + [anon_sym___forceinline] = ACTIONS(6610), + [anon_sym_thread_local] = ACTIONS(6610), + [anon_sym___thread] = ACTIONS(6610), + [anon_sym_const] = ACTIONS(6610), + [anon_sym_constexpr] = ACTIONS(6610), + [anon_sym_volatile] = ACTIONS(6610), + [anon_sym_restrict] = ACTIONS(6610), + [anon_sym___restrict__] = ACTIONS(6610), + [anon_sym__Atomic] = ACTIONS(6610), + [anon_sym__Noreturn] = ACTIONS(6610), + [anon_sym_noreturn] = ACTIONS(6610), + [anon_sym__Nonnull] = ACTIONS(6610), + [anon_sym_mutable] = ACTIONS(6610), + [anon_sym_constinit] = ACTIONS(6610), + [anon_sym_consteval] = ACTIONS(6610), + [anon_sym_alignas] = ACTIONS(6610), + [anon_sym__Alignas] = ACTIONS(6610), + [sym_primitive_type] = ACTIONS(6610), + [anon_sym_enum] = ACTIONS(6610), + [anon_sym_class] = ACTIONS(6610), + [anon_sym_struct] = ACTIONS(6610), + [anon_sym_union] = ACTIONS(6610), + [anon_sym_or] = ACTIONS(6610), + [anon_sym_and] = ACTIONS(6610), + [anon_sym_typename] = ACTIONS(6610), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6610), + [anon_sym_decltype] = ACTIONS(6610), + [anon_sym_explicit] = ACTIONS(6610), + [anon_sym_template] = ACTIONS(6610), + [anon_sym_operator] = ACTIONS(6610), + [anon_sym_friend] = ACTIONS(6610), + [anon_sym_concept] = ACTIONS(6610), + [anon_sym_LBRACK_COLON] = ACTIONS(6612), }, - [STATE(3631)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym__function_exception_specification] = STATE(4103), - [sym__function_attributes_end] = STATE(6021), - [sym__function_postfix] = STATE(5460), - [sym_trailing_return_type] = STATE(6116), - [sym_noexcept] = STATE(4103), - [sym_throw_specifier] = STATE(4103), - [sym_requires_clause] = STATE(5460), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7791), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7791), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7791), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7791), - [anon_sym_GT_GT] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7178), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(9202), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9205), - [anon_sym_override] = ACTIONS(9205), - [anon_sym_noexcept] = ACTIONS(7276), - [anon_sym_throw] = ACTIONS(7278), - [anon_sym_requires] = ACTIONS(9208), + [STATE(3621)] = { + [sym_identifier] = ACTIONS(8923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8925), + [anon_sym_COMMA] = ACTIONS(8925), + [anon_sym_RPAREN] = ACTIONS(8925), + [aux_sym_preproc_if_token2] = ACTIONS(8925), + [aux_sym_preproc_else_token1] = ACTIONS(8925), + [aux_sym_preproc_elif_token1] = ACTIONS(8923), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8925), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8925), + [anon_sym_LPAREN2] = ACTIONS(8925), + [anon_sym_DASH] = ACTIONS(8923), + [anon_sym_PLUS] = ACTIONS(8923), + [anon_sym_STAR] = ACTIONS(8923), + [anon_sym_SLASH] = ACTIONS(8923), + [anon_sym_PERCENT] = ACTIONS(8923), + [anon_sym_PIPE_PIPE] = ACTIONS(8925), + [anon_sym_AMP_AMP] = ACTIONS(8925), + [anon_sym_PIPE] = ACTIONS(8923), + [anon_sym_CARET] = ACTIONS(8923), + [anon_sym_AMP] = ACTIONS(8923), + [anon_sym_EQ_EQ] = ACTIONS(8925), + [anon_sym_BANG_EQ] = ACTIONS(8925), + [anon_sym_GT] = ACTIONS(8923), + [anon_sym_GT_EQ] = ACTIONS(8925), + [anon_sym_LT_EQ] = ACTIONS(8923), + [anon_sym_LT] = ACTIONS(8923), + [anon_sym_LT_LT] = ACTIONS(8923), + [anon_sym_GT_GT] = ACTIONS(8923), + [anon_sym_SEMI] = ACTIONS(8925), + [anon_sym___attribute__] = ACTIONS(8923), + [anon_sym___attribute] = ACTIONS(8923), + [anon_sym_COLON] = ACTIONS(8923), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8925), + [anon_sym_RBRACE] = ACTIONS(8925), + [anon_sym_LBRACK] = ACTIONS(8925), + [anon_sym_EQ] = ACTIONS(8923), + [anon_sym_QMARK] = ACTIONS(8925), + [anon_sym_STAR_EQ] = ACTIONS(8925), + [anon_sym_SLASH_EQ] = ACTIONS(8925), + [anon_sym_PERCENT_EQ] = ACTIONS(8925), + [anon_sym_PLUS_EQ] = ACTIONS(8925), + [anon_sym_DASH_EQ] = ACTIONS(8925), + [anon_sym_LT_LT_EQ] = ACTIONS(8925), + [anon_sym_GT_GT_EQ] = ACTIONS(8925), + [anon_sym_AMP_EQ] = ACTIONS(8925), + [anon_sym_CARET_EQ] = ACTIONS(8925), + [anon_sym_PIPE_EQ] = ACTIONS(8925), + [anon_sym_and_eq] = ACTIONS(8923), + [anon_sym_or_eq] = ACTIONS(8923), + [anon_sym_xor_eq] = ACTIONS(8923), + [anon_sym_LT_EQ_GT] = ACTIONS(8925), + [anon_sym_or] = ACTIONS(8923), + [anon_sym_and] = ACTIONS(8923), + [anon_sym_bitor] = ACTIONS(8923), + [anon_sym_xor] = ACTIONS(8923), + [anon_sym_bitand] = ACTIONS(8923), + [anon_sym_not_eq] = ACTIONS(8923), + [anon_sym_DASH_DASH] = ACTIONS(8925), + [anon_sym_PLUS_PLUS] = ACTIONS(8925), + [anon_sym_DOT] = ACTIONS(8923), + [anon_sym_DOT_STAR] = ACTIONS(8925), + [anon_sym_DASH_GT] = ACTIONS(8925), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8923), + [anon_sym_override] = ACTIONS(8923), + [anon_sym_requires] = ACTIONS(8923), + [anon_sym_COLON_RBRACK] = ACTIONS(8925), }, - [STATE(3632)] = { - [sym_string_literal] = STATE(3618), - [sym_raw_string_literal] = STATE(3618), - [aux_sym_concatenated_string_repeat1] = STATE(3618), + [STATE(3622)] = { + [sym_string_literal] = STATE(3647), + [sym_raw_string_literal] = STATE(3647), + [aux_sym_concatenated_string_repeat1] = STATE(3647), [sym_identifier] = ACTIONS(9350), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), - [anon_sym_COMMA] = ACTIONS(8466), - [anon_sym_RPAREN] = ACTIONS(8466), - [anon_sym_LPAREN2] = ACTIONS(8466), - [anon_sym_DASH] = ACTIONS(8468), - [anon_sym_PLUS] = ACTIONS(8468), - [anon_sym_STAR] = ACTIONS(8468), - [anon_sym_SLASH] = ACTIONS(8468), - [anon_sym_PERCENT] = ACTIONS(8468), - [anon_sym_PIPE_PIPE] = ACTIONS(8466), - [anon_sym_AMP_AMP] = ACTIONS(8466), - [anon_sym_PIPE] = ACTIONS(8468), - [anon_sym_CARET] = ACTIONS(8468), - [anon_sym_AMP] = ACTIONS(8468), - [anon_sym_EQ_EQ] = ACTIONS(8466), - [anon_sym_BANG_EQ] = ACTIONS(8466), - [anon_sym_GT] = ACTIONS(8468), - [anon_sym_GT_EQ] = ACTIONS(8466), - [anon_sym_LT_EQ] = ACTIONS(8468), - [anon_sym_LT] = ACTIONS(8468), - [anon_sym_LT_LT] = ACTIONS(8468), - [anon_sym_GT_GT] = ACTIONS(8468), - [anon_sym_LBRACK] = ACTIONS(8466), - [anon_sym_EQ] = ACTIONS(8468), - [anon_sym_QMARK] = ACTIONS(8466), - [anon_sym_STAR_EQ] = ACTIONS(8466), - [anon_sym_SLASH_EQ] = ACTIONS(8466), - [anon_sym_PERCENT_EQ] = ACTIONS(8466), - [anon_sym_PLUS_EQ] = ACTIONS(8466), - [anon_sym_DASH_EQ] = ACTIONS(8466), - [anon_sym_LT_LT_EQ] = ACTIONS(8466), - [anon_sym_GT_GT_EQ] = ACTIONS(8466), - [anon_sym_AMP_EQ] = ACTIONS(8466), - [anon_sym_CARET_EQ] = ACTIONS(8466), - [anon_sym_PIPE_EQ] = ACTIONS(8466), - [anon_sym_and_eq] = ACTIONS(8468), - [anon_sym_or_eq] = ACTIONS(8468), - [anon_sym_xor_eq] = ACTIONS(8468), - [anon_sym_LT_EQ_GT] = ACTIONS(8466), - [anon_sym_or] = ACTIONS(8468), - [anon_sym_and] = ACTIONS(8468), - [anon_sym_bitor] = ACTIONS(8468), - [anon_sym_xor] = ACTIONS(8468), - [anon_sym_bitand] = ACTIONS(8468), - [anon_sym_not_eq] = ACTIONS(8468), - [anon_sym_DASH_DASH] = ACTIONS(8466), - [anon_sym_PLUS_PLUS] = ACTIONS(8466), - [anon_sym_DOT] = ACTIONS(8468), - [anon_sym_DOT_STAR] = ACTIONS(8466), - [anon_sym_DASH_GT] = ACTIONS(8468), - [anon_sym_L_DQUOTE] = ACTIONS(6885), - [anon_sym_u_DQUOTE] = ACTIONS(6885), - [anon_sym_U_DQUOTE] = ACTIONS(6885), - [anon_sym_u8_DQUOTE] = ACTIONS(6885), - [anon_sym_DQUOTE] = ACTIONS(6885), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6887), - [anon_sym_LR_DQUOTE] = ACTIONS(6887), - [anon_sym_uR_DQUOTE] = ACTIONS(6887), - [anon_sym_UR_DQUOTE] = ACTIONS(6887), - [anon_sym_u8R_DQUOTE] = ACTIONS(6887), - [anon_sym_DASH_GT_STAR] = ACTIONS(8466), - [sym_literal_suffix] = ACTIONS(8468), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8464), + [anon_sym_COMMA] = ACTIONS(8464), + [anon_sym_RPAREN] = ACTIONS(8464), + [anon_sym_LPAREN2] = ACTIONS(8464), + [anon_sym_DASH] = ACTIONS(8466), + [anon_sym_PLUS] = ACTIONS(8466), + [anon_sym_STAR] = ACTIONS(8466), + [anon_sym_SLASH] = ACTIONS(8466), + [anon_sym_PERCENT] = ACTIONS(8466), + [anon_sym_PIPE_PIPE] = ACTIONS(8464), + [anon_sym_AMP_AMP] = ACTIONS(8464), + [anon_sym_PIPE] = ACTIONS(8466), + [anon_sym_CARET] = ACTIONS(8466), + [anon_sym_AMP] = ACTIONS(8466), + [anon_sym_EQ_EQ] = ACTIONS(8464), + [anon_sym_BANG_EQ] = ACTIONS(8464), + [anon_sym_GT] = ACTIONS(8466), + [anon_sym_GT_EQ] = ACTIONS(8464), + [anon_sym_LT_EQ] = ACTIONS(8466), + [anon_sym_LT] = ACTIONS(8466), + [anon_sym_LT_LT] = ACTIONS(8466), + [anon_sym_GT_GT] = ACTIONS(8466), + [anon_sym_LBRACK] = ACTIONS(8464), + [anon_sym_EQ] = ACTIONS(8466), + [anon_sym_QMARK] = ACTIONS(8464), + [anon_sym_STAR_EQ] = ACTIONS(8464), + [anon_sym_SLASH_EQ] = ACTIONS(8464), + [anon_sym_PERCENT_EQ] = ACTIONS(8464), + [anon_sym_PLUS_EQ] = ACTIONS(8464), + [anon_sym_DASH_EQ] = ACTIONS(8464), + [anon_sym_LT_LT_EQ] = ACTIONS(8464), + [anon_sym_GT_GT_EQ] = ACTIONS(8464), + [anon_sym_AMP_EQ] = ACTIONS(8464), + [anon_sym_CARET_EQ] = ACTIONS(8464), + [anon_sym_PIPE_EQ] = ACTIONS(8464), + [anon_sym_and_eq] = ACTIONS(8466), + [anon_sym_or_eq] = ACTIONS(8466), + [anon_sym_xor_eq] = ACTIONS(8466), + [anon_sym_LT_EQ_GT] = ACTIONS(8464), + [anon_sym_or] = ACTIONS(8466), + [anon_sym_and] = ACTIONS(8466), + [anon_sym_bitor] = ACTIONS(8466), + [anon_sym_xor] = ACTIONS(8466), + [anon_sym_bitand] = ACTIONS(8466), + [anon_sym_not_eq] = ACTIONS(8466), + [anon_sym_DASH_DASH] = ACTIONS(8464), + [anon_sym_PLUS_PLUS] = ACTIONS(8464), + [anon_sym_DOT] = ACTIONS(8466), + [anon_sym_DOT_STAR] = ACTIONS(8464), + [anon_sym_DASH_GT] = ACTIONS(8466), + [anon_sym_L_DQUOTE] = ACTIONS(6901), + [anon_sym_u_DQUOTE] = ACTIONS(6901), + [anon_sym_U_DQUOTE] = ACTIONS(6901), + [anon_sym_u8_DQUOTE] = ACTIONS(6901), + [anon_sym_DQUOTE] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6903), + [anon_sym_LR_DQUOTE] = ACTIONS(6903), + [anon_sym_uR_DQUOTE] = ACTIONS(6903), + [anon_sym_UR_DQUOTE] = ACTIONS(6903), + [anon_sym_u8R_DQUOTE] = ACTIONS(6903), + [anon_sym_DASH_GT_STAR] = ACTIONS(8464), + [sym_literal_suffix] = ACTIONS(8466), }, - [STATE(3633)] = { - [sym_identifier] = ACTIONS(6616), - [anon_sym_LPAREN2] = ACTIONS(6618), - [anon_sym_TILDE] = ACTIONS(6618), - [anon_sym_STAR] = ACTIONS(6618), - [anon_sym_PIPE_PIPE] = ACTIONS(6618), - [anon_sym_AMP_AMP] = ACTIONS(6618), - [anon_sym_AMP] = ACTIONS(6616), - [anon_sym___extension__] = ACTIONS(6616), - [anon_sym_virtual] = ACTIONS(6616), - [anon_sym_extern] = ACTIONS(6616), - [anon_sym___attribute__] = ACTIONS(6616), - [anon_sym___attribute] = ACTIONS(6616), - [anon_sym_using] = ACTIONS(6616), - [anon_sym_COLON_COLON] = ACTIONS(6618), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6618), - [anon_sym___declspec] = ACTIONS(6616), - [anon_sym___based] = ACTIONS(6616), - [anon_sym___cdecl] = ACTIONS(6616), - [anon_sym___clrcall] = ACTIONS(6616), - [anon_sym___stdcall] = ACTIONS(6616), - [anon_sym___fastcall] = ACTIONS(6616), - [anon_sym___thiscall] = ACTIONS(6616), - [anon_sym___vectorcall] = ACTIONS(6616), - [anon_sym_signed] = ACTIONS(6616), - [anon_sym_unsigned] = ACTIONS(6616), - [anon_sym_long] = ACTIONS(6616), - [anon_sym_short] = ACTIONS(6616), - [anon_sym_LBRACK] = ACTIONS(6616), - [anon_sym_static] = ACTIONS(6616), - [anon_sym_register] = ACTIONS(6616), - [anon_sym_inline] = ACTIONS(6616), - [anon_sym___inline] = ACTIONS(6616), - [anon_sym___inline__] = ACTIONS(6616), - [anon_sym___forceinline] = ACTIONS(6616), - [anon_sym_thread_local] = ACTIONS(6616), - [anon_sym___thread] = ACTIONS(6616), - [anon_sym_const] = ACTIONS(6616), - [anon_sym_constexpr] = ACTIONS(6616), - [anon_sym_volatile] = ACTIONS(6616), - [anon_sym_restrict] = ACTIONS(6616), - [anon_sym___restrict__] = ACTIONS(6616), - [anon_sym__Atomic] = ACTIONS(6616), - [anon_sym__Noreturn] = ACTIONS(6616), - [anon_sym_noreturn] = ACTIONS(6616), - [anon_sym__Nonnull] = ACTIONS(6616), - [anon_sym_mutable] = ACTIONS(6616), - [anon_sym_constinit] = ACTIONS(6616), - [anon_sym_consteval] = ACTIONS(6616), - [anon_sym_alignas] = ACTIONS(6616), - [anon_sym__Alignas] = ACTIONS(6616), - [sym_primitive_type] = ACTIONS(6616), - [anon_sym_enum] = ACTIONS(6616), - [anon_sym_class] = ACTIONS(6616), - [anon_sym_struct] = ACTIONS(6616), - [anon_sym_union] = ACTIONS(6616), - [anon_sym_or] = ACTIONS(6616), - [anon_sym_and] = ACTIONS(6616), - [anon_sym_typename] = ACTIONS(6616), + [STATE(3623)] = { + [sym_identifier] = ACTIONS(6614), + [anon_sym_LPAREN2] = ACTIONS(6616), + [anon_sym_TILDE] = ACTIONS(6616), + [anon_sym_STAR] = ACTIONS(6616), + [anon_sym_PIPE_PIPE] = ACTIONS(6616), + [anon_sym_AMP_AMP] = ACTIONS(6616), + [anon_sym_AMP] = ACTIONS(6614), + [anon_sym___extension__] = ACTIONS(6614), + [anon_sym_virtual] = ACTIONS(6614), + [anon_sym_extern] = ACTIONS(6614), + [anon_sym___attribute__] = ACTIONS(6614), + [anon_sym___attribute] = ACTIONS(6614), + [anon_sym_using] = ACTIONS(6614), + [anon_sym_COLON_COLON] = ACTIONS(6616), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6616), + [anon_sym___declspec] = ACTIONS(6614), + [anon_sym___based] = ACTIONS(6614), + [anon_sym___cdecl] = ACTIONS(6614), + [anon_sym___clrcall] = ACTIONS(6614), + [anon_sym___stdcall] = ACTIONS(6614), + [anon_sym___fastcall] = ACTIONS(6614), + [anon_sym___thiscall] = ACTIONS(6614), + [anon_sym___vectorcall] = ACTIONS(6614), + [anon_sym_signed] = ACTIONS(6614), + [anon_sym_unsigned] = ACTIONS(6614), + [anon_sym_long] = ACTIONS(6614), + [anon_sym_short] = ACTIONS(6614), + [anon_sym_LBRACK] = ACTIONS(6614), + [anon_sym_static] = ACTIONS(6614), + [anon_sym_register] = ACTIONS(6614), + [anon_sym_inline] = ACTIONS(6614), + [anon_sym___inline] = ACTIONS(6614), + [anon_sym___inline__] = ACTIONS(6614), + [anon_sym___forceinline] = ACTIONS(6614), + [anon_sym_thread_local] = ACTIONS(6614), + [anon_sym___thread] = ACTIONS(6614), + [anon_sym_const] = ACTIONS(6614), + [anon_sym_constexpr] = ACTIONS(6614), + [anon_sym_volatile] = ACTIONS(6614), + [anon_sym_restrict] = ACTIONS(6614), + [anon_sym___restrict__] = ACTIONS(6614), + [anon_sym__Atomic] = ACTIONS(6614), + [anon_sym__Noreturn] = ACTIONS(6614), + [anon_sym_noreturn] = ACTIONS(6614), + [anon_sym__Nonnull] = ACTIONS(6614), + [anon_sym_mutable] = ACTIONS(6614), + [anon_sym_constinit] = ACTIONS(6614), + [anon_sym_consteval] = ACTIONS(6614), + [anon_sym_alignas] = ACTIONS(6614), + [anon_sym__Alignas] = ACTIONS(6614), + [sym_primitive_type] = ACTIONS(6614), + [anon_sym_enum] = ACTIONS(6614), + [anon_sym_class] = ACTIONS(6614), + [anon_sym_struct] = ACTIONS(6614), + [anon_sym_union] = ACTIONS(6614), + [anon_sym_or] = ACTIONS(6614), + [anon_sym_and] = ACTIONS(6614), + [anon_sym_typename] = ACTIONS(6614), [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6616), - [anon_sym_decltype] = ACTIONS(6616), - [anon_sym_explicit] = ACTIONS(6616), - [anon_sym_template] = ACTIONS(6616), - [anon_sym_operator] = ACTIONS(6616), - [anon_sym_friend] = ACTIONS(6616), - [anon_sym_concept] = ACTIONS(6616), - [anon_sym_LBRACK_COLON] = ACTIONS(6618), + [sym_auto] = ACTIONS(6614), + [anon_sym_decltype] = ACTIONS(6614), + [anon_sym_explicit] = ACTIONS(6614), + [anon_sym_template] = ACTIONS(6614), + [anon_sym_operator] = ACTIONS(6614), + [anon_sym_friend] = ACTIONS(6614), + [anon_sym_concept] = ACTIONS(6614), + [anon_sym_LBRACK_COLON] = ACTIONS(6616), }, - [STATE(3634)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym__function_exception_specification] = STATE(4112), - [sym__function_attributes_end] = STATE(6022), - [sym__function_postfix] = STATE(5532), - [sym_trailing_return_type] = STATE(6118), - [sym_noexcept] = STATE(4112), - [sym_throw_specifier] = STATE(4112), - [sym_requires_clause] = STATE(5532), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(7968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [aux_sym_preproc_if_token2] = ACTIONS(7966), - [aux_sym_preproc_else_token1] = ACTIONS(7966), - [aux_sym_preproc_elif_token1] = ACTIONS(7968), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7966), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7966), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7966), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7966), - [anon_sym_GT_GT] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(7178), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7968), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7968), - [anon_sym_not_eq] = ACTIONS(7968), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(9352), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9355), - [anon_sym_override] = ACTIONS(9355), - [anon_sym_noexcept] = ACTIONS(7276), - [anon_sym_throw] = ACTIONS(7278), - [anon_sym_requires] = ACTIONS(9358), + [STATE(3624)] = { + [sym_identifier] = ACTIONS(7327), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_TILDE] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym_virtual] = ACTIONS(7327), + [anon_sym_extern] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_using] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7329), + [anon_sym___declspec] = ACTIONS(7327), + [anon_sym___based] = ACTIONS(7327), + [anon_sym___cdecl] = ACTIONS(7327), + [anon_sym___clrcall] = ACTIONS(7327), + [anon_sym___stdcall] = ACTIONS(7327), + [anon_sym___fastcall] = ACTIONS(7327), + [anon_sym___thiscall] = ACTIONS(7327), + [anon_sym___vectorcall] = ACTIONS(7327), + [anon_sym_signed] = ACTIONS(7327), + [anon_sym_unsigned] = ACTIONS(7327), + [anon_sym_long] = ACTIONS(7327), + [anon_sym_short] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_static] = ACTIONS(7327), + [anon_sym_register] = ACTIONS(7327), + [anon_sym_inline] = ACTIONS(7327), + [anon_sym___inline] = ACTIONS(7327), + [anon_sym___inline__] = ACTIONS(7327), + [anon_sym___forceinline] = ACTIONS(7327), + [anon_sym_thread_local] = ACTIONS(7327), + [anon_sym___thread] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [sym_primitive_type] = ACTIONS(7327), + [anon_sym_enum] = ACTIONS(7327), + [anon_sym_class] = ACTIONS(7327), + [anon_sym_struct] = ACTIONS(7327), + [anon_sym_union] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_typename] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_explicit] = ACTIONS(7327), + [anon_sym_template] = ACTIONS(7327), + [anon_sym_operator] = ACTIONS(7327), + [anon_sym_friend] = ACTIONS(7327), + [anon_sym_concept] = ACTIONS(7327), + [anon_sym_LBRACK_COLON] = ACTIONS(7329), }, - [STATE(3635)] = { - [sym_identifier] = ACTIONS(6620), - [anon_sym_LPAREN2] = ACTIONS(6622), - [anon_sym_TILDE] = ACTIONS(6622), - [anon_sym_STAR] = ACTIONS(6622), - [anon_sym_PIPE_PIPE] = ACTIONS(6622), - [anon_sym_AMP_AMP] = ACTIONS(6622), - [anon_sym_AMP] = ACTIONS(6620), - [anon_sym___extension__] = ACTIONS(6620), - [anon_sym_virtual] = ACTIONS(6620), - [anon_sym_extern] = ACTIONS(6620), - [anon_sym___attribute__] = ACTIONS(6620), - [anon_sym___attribute] = ACTIONS(6620), - [anon_sym_using] = ACTIONS(6620), - [anon_sym_COLON_COLON] = ACTIONS(6622), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6622), - [anon_sym___declspec] = ACTIONS(6620), - [anon_sym___based] = ACTIONS(6620), - [anon_sym___cdecl] = ACTIONS(6620), - [anon_sym___clrcall] = ACTIONS(6620), - [anon_sym___stdcall] = ACTIONS(6620), - [anon_sym___fastcall] = ACTIONS(6620), - [anon_sym___thiscall] = ACTIONS(6620), - [anon_sym___vectorcall] = ACTIONS(6620), - [anon_sym_signed] = ACTIONS(6620), - [anon_sym_unsigned] = ACTIONS(6620), - [anon_sym_long] = ACTIONS(6620), - [anon_sym_short] = ACTIONS(6620), - [anon_sym_LBRACK] = ACTIONS(6620), - [anon_sym_static] = ACTIONS(6620), - [anon_sym_register] = ACTIONS(6620), - [anon_sym_inline] = ACTIONS(6620), - [anon_sym___inline] = ACTIONS(6620), - [anon_sym___inline__] = ACTIONS(6620), - [anon_sym___forceinline] = ACTIONS(6620), - [anon_sym_thread_local] = ACTIONS(6620), - [anon_sym___thread] = ACTIONS(6620), - [anon_sym_const] = ACTIONS(6620), - [anon_sym_constexpr] = ACTIONS(6620), - [anon_sym_volatile] = ACTIONS(6620), - [anon_sym_restrict] = ACTIONS(6620), - [anon_sym___restrict__] = ACTIONS(6620), - [anon_sym__Atomic] = ACTIONS(6620), - [anon_sym__Noreturn] = ACTIONS(6620), - [anon_sym_noreturn] = ACTIONS(6620), - [anon_sym__Nonnull] = ACTIONS(6620), - [anon_sym_mutable] = ACTIONS(6620), - [anon_sym_constinit] = ACTIONS(6620), - [anon_sym_consteval] = ACTIONS(6620), - [anon_sym_alignas] = ACTIONS(6620), - [anon_sym__Alignas] = ACTIONS(6620), - [sym_primitive_type] = ACTIONS(6620), - [anon_sym_enum] = ACTIONS(6620), - [anon_sym_class] = ACTIONS(6620), - [anon_sym_struct] = ACTIONS(6620), - [anon_sym_union] = ACTIONS(6620), - [anon_sym_or] = ACTIONS(6620), - [anon_sym_and] = ACTIONS(6620), - [anon_sym_typename] = ACTIONS(6620), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6620), - [anon_sym_decltype] = ACTIONS(6620), - [anon_sym_explicit] = ACTIONS(6620), - [anon_sym_template] = ACTIONS(6620), - [anon_sym_operator] = ACTIONS(6620), - [anon_sym_friend] = ACTIONS(6620), - [anon_sym_concept] = ACTIONS(6620), - [anon_sym_LBRACK_COLON] = ACTIONS(6622), + [STATE(3625)] = { + [sym_identifier] = ACTIONS(5591), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5593), + [anon_sym_COMMA] = ACTIONS(5593), + [anon_sym_RPAREN] = ACTIONS(5593), + [anon_sym_LPAREN2] = ACTIONS(5593), + [anon_sym_TILDE] = ACTIONS(5593), + [anon_sym_STAR] = ACTIONS(5593), + [anon_sym_AMP_AMP] = ACTIONS(5593), + [anon_sym_AMP] = ACTIONS(5591), + [anon_sym_SEMI] = ACTIONS(5593), + [anon_sym___extension__] = ACTIONS(5591), + [anon_sym_virtual] = ACTIONS(5591), + [anon_sym_extern] = ACTIONS(5591), + [anon_sym___attribute__] = ACTIONS(5591), + [anon_sym___attribute] = ACTIONS(5591), + [anon_sym_COLON] = ACTIONS(5591), + [anon_sym_COLON_COLON] = ACTIONS(5593), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5593), + [anon_sym___declspec] = ACTIONS(5591), + [anon_sym___based] = ACTIONS(5591), + [anon_sym___cdecl] = ACTIONS(5591), + [anon_sym___clrcall] = ACTIONS(5591), + [anon_sym___stdcall] = ACTIONS(5591), + [anon_sym___fastcall] = ACTIONS(5591), + [anon_sym___thiscall] = ACTIONS(5591), + [anon_sym___vectorcall] = ACTIONS(5591), + [anon_sym_LBRACE] = ACTIONS(5593), + [anon_sym_LBRACK] = ACTIONS(5591), + [anon_sym_static] = ACTIONS(5591), + [anon_sym_EQ] = ACTIONS(5593), + [anon_sym_register] = ACTIONS(5591), + [anon_sym_inline] = ACTIONS(5591), + [anon_sym___inline] = ACTIONS(5591), + [anon_sym___inline__] = ACTIONS(5591), + [anon_sym___forceinline] = ACTIONS(5591), + [anon_sym_thread_local] = ACTIONS(5591), + [anon_sym___thread] = ACTIONS(5591), + [anon_sym_const] = ACTIONS(5591), + [anon_sym_constexpr] = ACTIONS(5591), + [anon_sym_volatile] = ACTIONS(5591), + [anon_sym_restrict] = ACTIONS(5591), + [anon_sym___restrict__] = ACTIONS(5591), + [anon_sym__Atomic] = ACTIONS(5591), + [anon_sym__Noreturn] = ACTIONS(5591), + [anon_sym_noreturn] = ACTIONS(5591), + [anon_sym__Nonnull] = ACTIONS(5591), + [anon_sym_mutable] = ACTIONS(5591), + [anon_sym_constinit] = ACTIONS(5591), + [anon_sym_consteval] = ACTIONS(5591), + [anon_sym_alignas] = ACTIONS(5591), + [anon_sym__Alignas] = ACTIONS(5591), + [anon_sym_DASH_GT] = ACTIONS(5593), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5591), + [anon_sym_final] = ACTIONS(5591), + [anon_sym_override] = ACTIONS(5591), + [anon_sym_explicit] = ACTIONS(5591), + [anon_sym_private] = ACTIONS(5591), + [anon_sym_template] = ACTIONS(5591), + [anon_sym_GT2] = ACTIONS(5593), + [anon_sym_operator] = ACTIONS(5591), + [anon_sym_public] = ACTIONS(5591), + [anon_sym_protected] = ACTIONS(5591), + [anon_sym_noexcept] = ACTIONS(5591), + [anon_sym_throw] = ACTIONS(5591), + [anon_sym_requires] = ACTIONS(5591), + [anon_sym_LBRACK_COLON] = ACTIONS(5593), }, - [STATE(3636)] = { - [sym_identifier] = ACTIONS(8893), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8895), - [anon_sym_COMMA] = ACTIONS(8895), - [anon_sym_RPAREN] = ACTIONS(8895), - [aux_sym_preproc_if_token2] = ACTIONS(8895), - [aux_sym_preproc_else_token1] = ACTIONS(8895), - [aux_sym_preproc_elif_token1] = ACTIONS(8893), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8895), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8895), - [anon_sym_LPAREN2] = ACTIONS(8895), - [anon_sym_DASH] = ACTIONS(8893), - [anon_sym_PLUS] = ACTIONS(8893), - [anon_sym_STAR] = ACTIONS(8893), - [anon_sym_SLASH] = ACTIONS(8893), - [anon_sym_PERCENT] = ACTIONS(8893), - [anon_sym_PIPE_PIPE] = ACTIONS(8895), - [anon_sym_AMP_AMP] = ACTIONS(8895), - [anon_sym_PIPE] = ACTIONS(8893), - [anon_sym_CARET] = ACTIONS(8893), - [anon_sym_AMP] = ACTIONS(8893), - [anon_sym_EQ_EQ] = ACTIONS(8895), - [anon_sym_BANG_EQ] = ACTIONS(8895), - [anon_sym_GT] = ACTIONS(8893), - [anon_sym_GT_EQ] = ACTIONS(8895), - [anon_sym_LT_EQ] = ACTIONS(8893), - [anon_sym_LT] = ACTIONS(8893), - [anon_sym_LT_LT] = ACTIONS(8893), - [anon_sym_GT_GT] = ACTIONS(8893), - [anon_sym_SEMI] = ACTIONS(8895), - [anon_sym___attribute__] = ACTIONS(8893), - [anon_sym___attribute] = ACTIONS(8893), - [anon_sym_COLON] = ACTIONS(8893), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8895), - [anon_sym_RBRACE] = ACTIONS(8895), - [anon_sym_LBRACK] = ACTIONS(8895), - [anon_sym_EQ] = ACTIONS(8893), - [anon_sym_QMARK] = ACTIONS(8895), - [anon_sym_STAR_EQ] = ACTIONS(8895), - [anon_sym_SLASH_EQ] = ACTIONS(8895), - [anon_sym_PERCENT_EQ] = ACTIONS(8895), - [anon_sym_PLUS_EQ] = ACTIONS(8895), - [anon_sym_DASH_EQ] = ACTIONS(8895), - [anon_sym_LT_LT_EQ] = ACTIONS(8895), - [anon_sym_GT_GT_EQ] = ACTIONS(8895), - [anon_sym_AMP_EQ] = ACTIONS(8895), - [anon_sym_CARET_EQ] = ACTIONS(8895), - [anon_sym_PIPE_EQ] = ACTIONS(8895), - [anon_sym_and_eq] = ACTIONS(8893), - [anon_sym_or_eq] = ACTIONS(8893), - [anon_sym_xor_eq] = ACTIONS(8893), - [anon_sym_LT_EQ_GT] = ACTIONS(8895), - [anon_sym_or] = ACTIONS(8893), - [anon_sym_and] = ACTIONS(8893), - [anon_sym_bitor] = ACTIONS(8893), - [anon_sym_xor] = ACTIONS(8893), - [anon_sym_bitand] = ACTIONS(8893), - [anon_sym_not_eq] = ACTIONS(8893), - [anon_sym_DASH_DASH] = ACTIONS(8895), - [anon_sym_PLUS_PLUS] = ACTIONS(8895), - [anon_sym_DOT] = ACTIONS(8893), - [anon_sym_DOT_STAR] = ACTIONS(8895), - [anon_sym_DASH_GT] = ACTIONS(8895), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8893), - [anon_sym_override] = ACTIONS(8893), - [anon_sym_requires] = ACTIONS(8893), - [anon_sym_COLON_RBRACK] = ACTIONS(8895), + [STATE(3626)] = { + [sym_identifier] = ACTIONS(9352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9354), + [anon_sym_COMMA] = ACTIONS(9354), + [anon_sym_RPAREN] = ACTIONS(9354), + [aux_sym_preproc_if_token2] = ACTIONS(9354), + [aux_sym_preproc_else_token1] = ACTIONS(9354), + [aux_sym_preproc_elif_token1] = ACTIONS(9352), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9354), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9354), + [anon_sym_LPAREN2] = ACTIONS(9354), + [anon_sym_DASH] = ACTIONS(9352), + [anon_sym_PLUS] = ACTIONS(9352), + [anon_sym_STAR] = ACTIONS(9352), + [anon_sym_SLASH] = ACTIONS(9352), + [anon_sym_PERCENT] = ACTIONS(9352), + [anon_sym_PIPE_PIPE] = ACTIONS(9354), + [anon_sym_AMP_AMP] = ACTIONS(9354), + [anon_sym_PIPE] = ACTIONS(9352), + [anon_sym_CARET] = ACTIONS(9352), + [anon_sym_AMP] = ACTIONS(9352), + [anon_sym_EQ_EQ] = ACTIONS(9354), + [anon_sym_BANG_EQ] = ACTIONS(9354), + [anon_sym_GT] = ACTIONS(9352), + [anon_sym_GT_EQ] = ACTIONS(9354), + [anon_sym_LT_EQ] = ACTIONS(9352), + [anon_sym_LT] = ACTIONS(9352), + [anon_sym_LT_LT] = ACTIONS(9352), + [anon_sym_GT_GT] = ACTIONS(9352), + [anon_sym_SEMI] = ACTIONS(9354), + [anon_sym___attribute__] = ACTIONS(9352), + [anon_sym___attribute] = ACTIONS(9352), + [anon_sym_COLON] = ACTIONS(9352), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9354), + [anon_sym_RBRACE] = ACTIONS(9354), + [anon_sym_LBRACK] = ACTIONS(9354), + [anon_sym_EQ] = ACTIONS(9352), + [anon_sym_QMARK] = ACTIONS(9354), + [anon_sym_STAR_EQ] = ACTIONS(9354), + [anon_sym_SLASH_EQ] = ACTIONS(9354), + [anon_sym_PERCENT_EQ] = ACTIONS(9354), + [anon_sym_PLUS_EQ] = ACTIONS(9354), + [anon_sym_DASH_EQ] = ACTIONS(9354), + [anon_sym_LT_LT_EQ] = ACTIONS(9354), + [anon_sym_GT_GT_EQ] = ACTIONS(9354), + [anon_sym_AMP_EQ] = ACTIONS(9354), + [anon_sym_CARET_EQ] = ACTIONS(9354), + [anon_sym_PIPE_EQ] = ACTIONS(9354), + [anon_sym_and_eq] = ACTIONS(9352), + [anon_sym_or_eq] = ACTIONS(9352), + [anon_sym_xor_eq] = ACTIONS(9352), + [anon_sym_LT_EQ_GT] = ACTIONS(9354), + [anon_sym_or] = ACTIONS(9352), + [anon_sym_and] = ACTIONS(9352), + [anon_sym_bitor] = ACTIONS(9352), + [anon_sym_xor] = ACTIONS(9352), + [anon_sym_bitand] = ACTIONS(9352), + [anon_sym_not_eq] = ACTIONS(9352), + [anon_sym_DASH_DASH] = ACTIONS(9354), + [anon_sym_PLUS_PLUS] = ACTIONS(9354), + [anon_sym_DOT] = ACTIONS(9352), + [anon_sym_DOT_STAR] = ACTIONS(9354), + [anon_sym_DASH_GT] = ACTIONS(9354), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9352), + [anon_sym_override] = ACTIONS(9352), + [anon_sym_requires] = ACTIONS(9352), + [anon_sym_COLON_RBRACK] = ACTIONS(9354), }, - [STATE(3637)] = { - [sym_identifier] = ACTIONS(9361), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9363), - [anon_sym_COMMA] = ACTIONS(9363), - [anon_sym_RPAREN] = ACTIONS(9363), - [aux_sym_preproc_if_token2] = ACTIONS(9363), - [aux_sym_preproc_else_token1] = ACTIONS(9363), - [aux_sym_preproc_elif_token1] = ACTIONS(9361), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9363), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9363), - [anon_sym_LPAREN2] = ACTIONS(9363), - [anon_sym_DASH] = ACTIONS(9361), - [anon_sym_PLUS] = ACTIONS(9361), - [anon_sym_STAR] = ACTIONS(9361), - [anon_sym_SLASH] = ACTIONS(9361), - [anon_sym_PERCENT] = ACTIONS(9361), - [anon_sym_PIPE_PIPE] = ACTIONS(9363), - [anon_sym_AMP_AMP] = ACTIONS(9363), - [anon_sym_PIPE] = ACTIONS(9361), - [anon_sym_CARET] = ACTIONS(9361), - [anon_sym_AMP] = ACTIONS(9361), - [anon_sym_EQ_EQ] = ACTIONS(9363), - [anon_sym_BANG_EQ] = ACTIONS(9363), - [anon_sym_GT] = ACTIONS(9361), - [anon_sym_GT_EQ] = ACTIONS(9363), - [anon_sym_LT_EQ] = ACTIONS(9361), - [anon_sym_LT] = ACTIONS(9361), - [anon_sym_LT_LT] = ACTIONS(9361), - [anon_sym_GT_GT] = ACTIONS(9361), - [anon_sym_SEMI] = ACTIONS(9363), - [anon_sym___attribute__] = ACTIONS(9361), - [anon_sym___attribute] = ACTIONS(9361), - [anon_sym_COLON] = ACTIONS(9361), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9363), - [anon_sym_RBRACE] = ACTIONS(9363), - [anon_sym_LBRACK] = ACTIONS(9363), - [anon_sym_EQ] = ACTIONS(9361), - [anon_sym_QMARK] = ACTIONS(9363), - [anon_sym_STAR_EQ] = ACTIONS(9363), - [anon_sym_SLASH_EQ] = ACTIONS(9363), - [anon_sym_PERCENT_EQ] = ACTIONS(9363), - [anon_sym_PLUS_EQ] = ACTIONS(9363), - [anon_sym_DASH_EQ] = ACTIONS(9363), - [anon_sym_LT_LT_EQ] = ACTIONS(9363), - [anon_sym_GT_GT_EQ] = ACTIONS(9363), - [anon_sym_AMP_EQ] = ACTIONS(9363), - [anon_sym_CARET_EQ] = ACTIONS(9363), - [anon_sym_PIPE_EQ] = ACTIONS(9363), - [anon_sym_and_eq] = ACTIONS(9361), - [anon_sym_or_eq] = ACTIONS(9361), - [anon_sym_xor_eq] = ACTIONS(9361), - [anon_sym_LT_EQ_GT] = ACTIONS(9363), - [anon_sym_or] = ACTIONS(9361), - [anon_sym_and] = ACTIONS(9361), - [anon_sym_bitor] = ACTIONS(9361), - [anon_sym_xor] = ACTIONS(9361), - [anon_sym_bitand] = ACTIONS(9361), - [anon_sym_not_eq] = ACTIONS(9361), - [anon_sym_DASH_DASH] = ACTIONS(9363), - [anon_sym_PLUS_PLUS] = ACTIONS(9363), - [anon_sym_DOT] = ACTIONS(9361), - [anon_sym_DOT_STAR] = ACTIONS(9363), - [anon_sym_DASH_GT] = ACTIONS(9363), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9361), - [anon_sym_override] = ACTIONS(9361), - [anon_sym_requires] = ACTIONS(9361), - [anon_sym_COLON_RBRACK] = ACTIONS(9363), + [STATE(3627)] = { + [sym_identifier] = ACTIONS(9356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9358), + [anon_sym_COMMA] = ACTIONS(9358), + [anon_sym_RPAREN] = ACTIONS(9358), + [aux_sym_preproc_if_token2] = ACTIONS(9358), + [aux_sym_preproc_else_token1] = ACTIONS(9358), + [aux_sym_preproc_elif_token1] = ACTIONS(9356), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9358), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9358), + [anon_sym_LPAREN2] = ACTIONS(9358), + [anon_sym_DASH] = ACTIONS(9356), + [anon_sym_PLUS] = ACTIONS(9356), + [anon_sym_STAR] = ACTIONS(9356), + [anon_sym_SLASH] = ACTIONS(9356), + [anon_sym_PERCENT] = ACTIONS(9356), + [anon_sym_PIPE_PIPE] = ACTIONS(9358), + [anon_sym_AMP_AMP] = ACTIONS(9358), + [anon_sym_PIPE] = ACTIONS(9356), + [anon_sym_CARET] = ACTIONS(9356), + [anon_sym_AMP] = ACTIONS(9356), + [anon_sym_EQ_EQ] = ACTIONS(9358), + [anon_sym_BANG_EQ] = ACTIONS(9358), + [anon_sym_GT] = ACTIONS(9356), + [anon_sym_GT_EQ] = ACTIONS(9358), + [anon_sym_LT_EQ] = ACTIONS(9356), + [anon_sym_LT] = ACTIONS(9356), + [anon_sym_LT_LT] = ACTIONS(9356), + [anon_sym_GT_GT] = ACTIONS(9356), + [anon_sym_SEMI] = ACTIONS(9358), + [anon_sym___attribute__] = ACTIONS(9356), + [anon_sym___attribute] = ACTIONS(9356), + [anon_sym_COLON] = ACTIONS(9356), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9358), + [anon_sym_RBRACE] = ACTIONS(9358), + [anon_sym_LBRACK] = ACTIONS(9358), + [anon_sym_EQ] = ACTIONS(9356), + [anon_sym_QMARK] = ACTIONS(9358), + [anon_sym_STAR_EQ] = ACTIONS(9358), + [anon_sym_SLASH_EQ] = ACTIONS(9358), + [anon_sym_PERCENT_EQ] = ACTIONS(9358), + [anon_sym_PLUS_EQ] = ACTIONS(9358), + [anon_sym_DASH_EQ] = ACTIONS(9358), + [anon_sym_LT_LT_EQ] = ACTIONS(9358), + [anon_sym_GT_GT_EQ] = ACTIONS(9358), + [anon_sym_AMP_EQ] = ACTIONS(9358), + [anon_sym_CARET_EQ] = ACTIONS(9358), + [anon_sym_PIPE_EQ] = ACTIONS(9358), + [anon_sym_and_eq] = ACTIONS(9356), + [anon_sym_or_eq] = ACTIONS(9356), + [anon_sym_xor_eq] = ACTIONS(9356), + [anon_sym_LT_EQ_GT] = ACTIONS(9358), + [anon_sym_or] = ACTIONS(9356), + [anon_sym_and] = ACTIONS(9356), + [anon_sym_bitor] = ACTIONS(9356), + [anon_sym_xor] = ACTIONS(9356), + [anon_sym_bitand] = ACTIONS(9356), + [anon_sym_not_eq] = ACTIONS(9356), + [anon_sym_DASH_DASH] = ACTIONS(9358), + [anon_sym_PLUS_PLUS] = ACTIONS(9358), + [anon_sym_DOT] = ACTIONS(9356), + [anon_sym_DOT_STAR] = ACTIONS(9358), + [anon_sym_DASH_GT] = ACTIONS(9358), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9356), + [anon_sym_override] = ACTIONS(9356), + [anon_sym_requires] = ACTIONS(9356), + [anon_sym_COLON_RBRACK] = ACTIONS(9358), }, - [STATE(3638)] = { - [sym_identifier] = ACTIONS(9365), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9367), - [anon_sym_COMMA] = ACTIONS(9367), - [anon_sym_RPAREN] = ACTIONS(9367), - [aux_sym_preproc_if_token2] = ACTIONS(9367), - [aux_sym_preproc_else_token1] = ACTIONS(9367), - [aux_sym_preproc_elif_token1] = ACTIONS(9365), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9367), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9367), - [anon_sym_LPAREN2] = ACTIONS(9367), - [anon_sym_DASH] = ACTIONS(9365), - [anon_sym_PLUS] = ACTIONS(9365), - [anon_sym_STAR] = ACTIONS(9365), - [anon_sym_SLASH] = ACTIONS(9365), - [anon_sym_PERCENT] = ACTIONS(9365), - [anon_sym_PIPE_PIPE] = ACTIONS(9367), - [anon_sym_AMP_AMP] = ACTIONS(9367), - [anon_sym_PIPE] = ACTIONS(9365), - [anon_sym_CARET] = ACTIONS(9365), - [anon_sym_AMP] = ACTIONS(9365), - [anon_sym_EQ_EQ] = ACTIONS(9367), - [anon_sym_BANG_EQ] = ACTIONS(9367), - [anon_sym_GT] = ACTIONS(9365), - [anon_sym_GT_EQ] = ACTIONS(9367), - [anon_sym_LT_EQ] = ACTIONS(9365), - [anon_sym_LT] = ACTIONS(9365), - [anon_sym_LT_LT] = ACTIONS(9365), - [anon_sym_GT_GT] = ACTIONS(9365), - [anon_sym_SEMI] = ACTIONS(9367), - [anon_sym___attribute__] = ACTIONS(9365), - [anon_sym___attribute] = ACTIONS(9365), - [anon_sym_COLON] = ACTIONS(9365), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9367), - [anon_sym_RBRACE] = ACTIONS(9367), - [anon_sym_LBRACK] = ACTIONS(9367), - [anon_sym_EQ] = ACTIONS(9365), - [anon_sym_QMARK] = ACTIONS(9367), - [anon_sym_STAR_EQ] = ACTIONS(9367), - [anon_sym_SLASH_EQ] = ACTIONS(9367), - [anon_sym_PERCENT_EQ] = ACTIONS(9367), - [anon_sym_PLUS_EQ] = ACTIONS(9367), - [anon_sym_DASH_EQ] = ACTIONS(9367), - [anon_sym_LT_LT_EQ] = ACTIONS(9367), - [anon_sym_GT_GT_EQ] = ACTIONS(9367), - [anon_sym_AMP_EQ] = ACTIONS(9367), - [anon_sym_CARET_EQ] = ACTIONS(9367), - [anon_sym_PIPE_EQ] = ACTIONS(9367), - [anon_sym_and_eq] = ACTIONS(9365), - [anon_sym_or_eq] = ACTIONS(9365), - [anon_sym_xor_eq] = ACTIONS(9365), - [anon_sym_LT_EQ_GT] = ACTIONS(9367), - [anon_sym_or] = ACTIONS(9365), - [anon_sym_and] = ACTIONS(9365), - [anon_sym_bitor] = ACTIONS(9365), - [anon_sym_xor] = ACTIONS(9365), - [anon_sym_bitand] = ACTIONS(9365), - [anon_sym_not_eq] = ACTIONS(9365), - [anon_sym_DASH_DASH] = ACTIONS(9367), - [anon_sym_PLUS_PLUS] = ACTIONS(9367), - [anon_sym_DOT] = ACTIONS(9365), - [anon_sym_DOT_STAR] = ACTIONS(9367), - [anon_sym_DASH_GT] = ACTIONS(9367), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9365), - [anon_sym_override] = ACTIONS(9365), - [anon_sym_requires] = ACTIONS(9365), - [anon_sym_COLON_RBRACK] = ACTIONS(9367), + [STATE(3628)] = { + [sym_identifier] = ACTIONS(8923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8925), + [anon_sym_COMMA] = ACTIONS(8925), + [anon_sym_RPAREN] = ACTIONS(8925), + [aux_sym_preproc_if_token2] = ACTIONS(8925), + [aux_sym_preproc_else_token1] = ACTIONS(8925), + [aux_sym_preproc_elif_token1] = ACTIONS(8923), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8925), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8925), + [anon_sym_LPAREN2] = ACTIONS(8925), + [anon_sym_DASH] = ACTIONS(8923), + [anon_sym_PLUS] = ACTIONS(8923), + [anon_sym_STAR] = ACTIONS(8923), + [anon_sym_SLASH] = ACTIONS(8923), + [anon_sym_PERCENT] = ACTIONS(8923), + [anon_sym_PIPE_PIPE] = ACTIONS(8925), + [anon_sym_AMP_AMP] = ACTIONS(8925), + [anon_sym_PIPE] = ACTIONS(8923), + [anon_sym_CARET] = ACTIONS(8923), + [anon_sym_AMP] = ACTIONS(8923), + [anon_sym_EQ_EQ] = ACTIONS(8925), + [anon_sym_BANG_EQ] = ACTIONS(8925), + [anon_sym_GT] = ACTIONS(8923), + [anon_sym_GT_EQ] = ACTIONS(8925), + [anon_sym_LT_EQ] = ACTIONS(8923), + [anon_sym_LT] = ACTIONS(8923), + [anon_sym_LT_LT] = ACTIONS(8923), + [anon_sym_GT_GT] = ACTIONS(8923), + [anon_sym_SEMI] = ACTIONS(8925), + [anon_sym___attribute__] = ACTIONS(8923), + [anon_sym___attribute] = ACTIONS(8923), + [anon_sym_COLON] = ACTIONS(8923), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8925), + [anon_sym_RBRACE] = ACTIONS(8925), + [anon_sym_LBRACK] = ACTIONS(8925), + [anon_sym_EQ] = ACTIONS(8923), + [anon_sym_QMARK] = ACTIONS(8925), + [anon_sym_STAR_EQ] = ACTIONS(8925), + [anon_sym_SLASH_EQ] = ACTIONS(8925), + [anon_sym_PERCENT_EQ] = ACTIONS(8925), + [anon_sym_PLUS_EQ] = ACTIONS(8925), + [anon_sym_DASH_EQ] = ACTIONS(8925), + [anon_sym_LT_LT_EQ] = ACTIONS(8925), + [anon_sym_GT_GT_EQ] = ACTIONS(8925), + [anon_sym_AMP_EQ] = ACTIONS(8925), + [anon_sym_CARET_EQ] = ACTIONS(8925), + [anon_sym_PIPE_EQ] = ACTIONS(8925), + [anon_sym_and_eq] = ACTIONS(8923), + [anon_sym_or_eq] = ACTIONS(8923), + [anon_sym_xor_eq] = ACTIONS(8923), + [anon_sym_LT_EQ_GT] = ACTIONS(8925), + [anon_sym_or] = ACTIONS(8923), + [anon_sym_and] = ACTIONS(8923), + [anon_sym_bitor] = ACTIONS(8923), + [anon_sym_xor] = ACTIONS(8923), + [anon_sym_bitand] = ACTIONS(8923), + [anon_sym_not_eq] = ACTIONS(8923), + [anon_sym_DASH_DASH] = ACTIONS(8925), + [anon_sym_PLUS_PLUS] = ACTIONS(8925), + [anon_sym_DOT] = ACTIONS(8923), + [anon_sym_DOT_STAR] = ACTIONS(8925), + [anon_sym_DASH_GT] = ACTIONS(8925), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8923), + [anon_sym_override] = ACTIONS(8923), + [anon_sym_requires] = ACTIONS(8923), + [anon_sym_COLON_RBRACK] = ACTIONS(8925), }, - [STATE(3639)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON] = ACTIONS(5653), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [STATE(3629)] = { + [sym_identifier] = ACTIONS(6649), + [anon_sym_LPAREN2] = ACTIONS(6656), + [anon_sym_TILDE] = ACTIONS(6656), + [anon_sym_STAR] = ACTIONS(6656), + [anon_sym_PIPE_PIPE] = ACTIONS(6656), + [anon_sym_AMP_AMP] = ACTIONS(6656), + [anon_sym_AMP] = ACTIONS(6649), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym_virtual] = ACTIONS(6649), + [anon_sym_extern] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_using] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6656), + [anon_sym___declspec] = ACTIONS(6649), + [anon_sym___based] = ACTIONS(6649), + [anon_sym___cdecl] = ACTIONS(6649), + [anon_sym___clrcall] = ACTIONS(6649), + [anon_sym___stdcall] = ACTIONS(6649), + [anon_sym___fastcall] = ACTIONS(6649), + [anon_sym___thiscall] = ACTIONS(6649), + [anon_sym___vectorcall] = ACTIONS(6649), + [anon_sym_signed] = ACTIONS(6649), + [anon_sym_unsigned] = ACTIONS(6649), + [anon_sym_long] = ACTIONS(6649), + [anon_sym_short] = ACTIONS(6649), + [anon_sym_LBRACK] = ACTIONS(6649), + [anon_sym_static] = ACTIONS(6649), + [anon_sym_register] = ACTIONS(6649), + [anon_sym_inline] = ACTIONS(6649), + [anon_sym___inline] = ACTIONS(6649), + [anon_sym___inline__] = ACTIONS(6649), + [anon_sym___forceinline] = ACTIONS(6649), + [anon_sym_thread_local] = ACTIONS(6649), + [anon_sym___thread] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [sym_primitive_type] = ACTIONS(6649), + [anon_sym_enum] = ACTIONS(6649), + [anon_sym_class] = ACTIONS(6649), + [anon_sym_struct] = ACTIONS(6649), + [anon_sym_union] = ACTIONS(6649), + [anon_sym_or] = ACTIONS(6649), + [anon_sym_and] = ACTIONS(6649), + [anon_sym_typename] = ACTIONS(6649), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_explicit] = ACTIONS(6649), + [anon_sym_template] = ACTIONS(6649), + [anon_sym_operator] = ACTIONS(6649), + [anon_sym_friend] = ACTIONS(6649), + [anon_sym_concept] = ACTIONS(6649), + [anon_sym_LBRACK_COLON] = ACTIONS(6656), }, - [STATE(3640)] = { + [STATE(3630)] = { + [sym_string_literal] = STATE(3630), + [sym_raw_string_literal] = STATE(3630), + [aux_sym_concatenated_string_repeat1] = STATE(3630), + [sym_identifier] = ACTIONS(9360), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8471), + [anon_sym_COMMA] = ACTIONS(8471), + [anon_sym_RPAREN] = ACTIONS(8471), + [anon_sym_LPAREN2] = ACTIONS(8471), + [anon_sym_DASH] = ACTIONS(8473), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_STAR] = ACTIONS(8473), + [anon_sym_SLASH] = ACTIONS(8473), + [anon_sym_PERCENT] = ACTIONS(8473), + [anon_sym_PIPE_PIPE] = ACTIONS(8471), + [anon_sym_AMP_AMP] = ACTIONS(8471), + [anon_sym_PIPE] = ACTIONS(8473), + [anon_sym_CARET] = ACTIONS(8473), + [anon_sym_AMP] = ACTIONS(8473), + [anon_sym_EQ_EQ] = ACTIONS(8471), + [anon_sym_BANG_EQ] = ACTIONS(8471), + [anon_sym_GT] = ACTIONS(8473), + [anon_sym_GT_EQ] = ACTIONS(8471), + [anon_sym_LT_EQ] = ACTIONS(8473), + [anon_sym_LT] = ACTIONS(8473), + [anon_sym_LT_LT] = ACTIONS(8473), + [anon_sym_GT_GT] = ACTIONS(8473), + [anon_sym_LBRACK] = ACTIONS(8471), + [anon_sym_EQ] = ACTIONS(8473), + [anon_sym_QMARK] = ACTIONS(8471), + [anon_sym_STAR_EQ] = ACTIONS(8471), + [anon_sym_SLASH_EQ] = ACTIONS(8471), + [anon_sym_PERCENT_EQ] = ACTIONS(8471), + [anon_sym_PLUS_EQ] = ACTIONS(8471), + [anon_sym_DASH_EQ] = ACTIONS(8471), + [anon_sym_LT_LT_EQ] = ACTIONS(8471), + [anon_sym_GT_GT_EQ] = ACTIONS(8471), + [anon_sym_AMP_EQ] = ACTIONS(8471), + [anon_sym_CARET_EQ] = ACTIONS(8471), + [anon_sym_PIPE_EQ] = ACTIONS(8471), + [anon_sym_and_eq] = ACTIONS(8473), + [anon_sym_or_eq] = ACTIONS(8473), + [anon_sym_xor_eq] = ACTIONS(8473), + [anon_sym_LT_EQ_GT] = ACTIONS(8471), + [anon_sym_or] = ACTIONS(8473), + [anon_sym_and] = ACTIONS(8473), + [anon_sym_bitor] = ACTIONS(8473), + [anon_sym_xor] = ACTIONS(8473), + [anon_sym_bitand] = ACTIONS(8473), + [anon_sym_not_eq] = ACTIONS(8473), + [anon_sym_DASH_DASH] = ACTIONS(8471), + [anon_sym_PLUS_PLUS] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8473), + [anon_sym_DOT_STAR] = ACTIONS(8471), + [anon_sym_DASH_GT] = ACTIONS(8473), + [anon_sym_L_DQUOTE] = ACTIONS(9363), + [anon_sym_u_DQUOTE] = ACTIONS(9363), + [anon_sym_U_DQUOTE] = ACTIONS(9363), + [anon_sym_u8_DQUOTE] = ACTIONS(9363), + [anon_sym_DQUOTE] = ACTIONS(9363), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9366), + [anon_sym_LR_DQUOTE] = ACTIONS(9366), + [anon_sym_uR_DQUOTE] = ACTIONS(9366), + [anon_sym_UR_DQUOTE] = ACTIONS(9366), + [anon_sym_u8R_DQUOTE] = ACTIONS(9366), + [anon_sym_DASH_GT_STAR] = ACTIONS(8471), + [sym_literal_suffix] = ACTIONS(8473), + }, + [STATE(3631)] = { + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON] = ACTIONS(5720), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + }, + [STATE(3632)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_RPAREN] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7399), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7399), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7399), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7399), + [anon_sym_GT_GT] = ACTIONS(7399), + [anon_sym_SEMI] = ACTIONS(7399), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_COLON] = ACTIONS(7402), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7399), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_RBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8505), + [anon_sym_unsigned] = ACTIONS(8505), + [anon_sym_long] = ACTIONS(8505), + [anon_sym_short] = ACTIONS(8505), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7399), + }, + [STATE(3633)] = { [sym_identifier] = ACTIONS(9369), [anon_sym_DOT_DOT_DOT] = ACTIONS(9371), [anon_sym_COMMA] = ACTIONS(9371), @@ -439351,7 +438702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(9369), [anon_sym_COLON_RBRACK] = ACTIONS(9371), }, - [STATE(3641)] = { + [STATE(3634)] = { [sym_identifier] = ACTIONS(9373), [anon_sym_DOT_DOT_DOT] = ACTIONS(9375), [anon_sym_COMMA] = ACTIONS(9375), @@ -439420,216 +438771,145 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(9373), [anon_sym_COLON_RBRACK] = ACTIONS(9375), }, - [STATE(3642)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON] = ACTIONS(5716), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - }, - [STATE(3643)] = { - [sym_string_literal] = STATE(3632), - [sym_template_argument_list] = STATE(5135), - [sym_raw_string_literal] = STATE(3632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(6964), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5645), - [anon_sym_L_DQUOTE] = ACTIONS(6885), - [anon_sym_u_DQUOTE] = ACTIONS(6885), - [anon_sym_U_DQUOTE] = ACTIONS(6885), - [anon_sym_u8_DQUOTE] = ACTIONS(6885), - [anon_sym_DQUOTE] = ACTIONS(6885), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6887), - [anon_sym_LR_DQUOTE] = ACTIONS(6887), - [anon_sym_uR_DQUOTE] = ACTIONS(6887), - [anon_sym_UR_DQUOTE] = ACTIONS(6887), - [anon_sym_u8R_DQUOTE] = ACTIONS(6887), - [anon_sym_DASH_GT_STAR] = ACTIONS(5638), + [STATE(3635)] = { + [anon_sym_DOT_DOT_DOT] = ACTIONS(8788), + [anon_sym_COMMA] = ACTIONS(8788), + [anon_sym_RPAREN] = ACTIONS(8788), + [anon_sym_LPAREN2] = ACTIONS(8788), + [anon_sym_DASH] = ACTIONS(8786), + [anon_sym_PLUS] = ACTIONS(8786), + [anon_sym_STAR] = ACTIONS(8786), + [anon_sym_SLASH] = ACTIONS(8786), + [anon_sym_PERCENT] = ACTIONS(8786), + [anon_sym_PIPE_PIPE] = ACTIONS(8788), + [anon_sym_AMP_AMP] = ACTIONS(8788), + [anon_sym_PIPE] = ACTIONS(8786), + [anon_sym_CARET] = ACTIONS(8786), + [anon_sym_AMP] = ACTIONS(8786), + [anon_sym_EQ_EQ] = ACTIONS(8788), + [anon_sym_BANG_EQ] = ACTIONS(8788), + [anon_sym_GT] = ACTIONS(8786), + [anon_sym_GT_EQ] = ACTIONS(8788), + [anon_sym_LT_EQ] = ACTIONS(8786), + [anon_sym_LT] = ACTIONS(8786), + [anon_sym_LT_LT] = ACTIONS(8786), + [anon_sym_GT_GT] = ACTIONS(8786), + [anon_sym_SEMI] = ACTIONS(8788), + [anon_sym_COLON] = ACTIONS(8786), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8788), + [anon_sym_RBRACE] = ACTIONS(8788), + [anon_sym_LBRACK] = ACTIONS(8788), + [anon_sym_EQ] = ACTIONS(8786), + [anon_sym_QMARK] = ACTIONS(8788), + [anon_sym_STAR_EQ] = ACTIONS(8788), + [anon_sym_SLASH_EQ] = ACTIONS(8788), + [anon_sym_PERCENT_EQ] = ACTIONS(8788), + [anon_sym_PLUS_EQ] = ACTIONS(8788), + [anon_sym_DASH_EQ] = ACTIONS(8788), + [anon_sym_LT_LT_EQ] = ACTIONS(8788), + [anon_sym_GT_GT_EQ] = ACTIONS(8788), + [anon_sym_AMP_EQ] = ACTIONS(8788), + [anon_sym_CARET_EQ] = ACTIONS(8788), + [anon_sym_PIPE_EQ] = ACTIONS(8788), + [anon_sym_and_eq] = ACTIONS(8786), + [anon_sym_or_eq] = ACTIONS(8786), + [anon_sym_xor_eq] = ACTIONS(8786), + [anon_sym_LT_EQ_GT] = ACTIONS(8788), + [anon_sym_or] = ACTIONS(8786), + [anon_sym_and] = ACTIONS(8786), + [anon_sym_bitor] = ACTIONS(8786), + [anon_sym_xor] = ACTIONS(8786), + [anon_sym_bitand] = ACTIONS(8786), + [anon_sym_not_eq] = ACTIONS(8786), + [anon_sym_DASH_DASH] = ACTIONS(8788), + [anon_sym_PLUS_PLUS] = ACTIONS(8788), + [anon_sym_DOT] = ACTIONS(8786), + [anon_sym_DOT_STAR] = ACTIONS(8788), + [anon_sym_DASH_GT] = ACTIONS(8788), + [anon_sym_L_DQUOTE] = ACTIONS(8788), + [anon_sym_u_DQUOTE] = ACTIONS(8788), + [anon_sym_U_DQUOTE] = ACTIONS(8788), + [anon_sym_u8_DQUOTE] = ACTIONS(8788), + [anon_sym_DQUOTE] = ACTIONS(8788), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8788), + [anon_sym_LR_DQUOTE] = ACTIONS(8788), + [anon_sym_uR_DQUOTE] = ACTIONS(8788), + [anon_sym_UR_DQUOTE] = ACTIONS(8788), + [anon_sym_u8R_DQUOTE] = ACTIONS(8788), + [anon_sym_COLON_RBRACK] = ACTIONS(8788), + [sym_literal_suffix] = ACTIONS(8786), }, - [STATE(3644)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [aux_sym_preproc_if_token2] = ACTIONS(7293), - [aux_sym_preproc_else_token1] = ACTIONS(7293), - [aux_sym_preproc_elif_token1] = ACTIONS(7291), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7293), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_DASH] = ACTIONS(7291), - [anon_sym_PLUS] = ACTIONS(7291), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_SLASH] = ACTIONS(7291), - [anon_sym_PERCENT] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_PIPE] = ACTIONS(7291), - [anon_sym_CARET] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_EQ_EQ] = ACTIONS(7293), - [anon_sym_BANG_EQ] = ACTIONS(7293), - [anon_sym_GT] = ACTIONS(7291), - [anon_sym_GT_EQ] = ACTIONS(7293), - [anon_sym_LT_EQ] = ACTIONS(7291), - [anon_sym_LT] = ACTIONS(7291), - [anon_sym_LT_LT] = ACTIONS(7293), - [anon_sym_GT_GT] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7293), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7293), - [anon_sym_RBRACK] = ACTIONS(7293), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [anon_sym_QMARK] = ACTIONS(7293), - [anon_sym_LT_EQ_GT] = ACTIONS(7293), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_bitor] = ACTIONS(7291), - [anon_sym_xor] = ACTIONS(7291), - [anon_sym_bitand] = ACTIONS(7291), - [anon_sym_not_eq] = ACTIONS(7291), - [anon_sym_DASH_DASH] = ACTIONS(7293), - [anon_sym_PLUS_PLUS] = ACTIONS(7293), - [anon_sym_DOT] = ACTIONS(7291), - [anon_sym_DOT_STAR] = ACTIONS(7293), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_requires] = ACTIONS(7291), + [STATE(3636)] = { + [sym_identifier] = ACTIONS(9015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9017), + [anon_sym_COMMA] = ACTIONS(9017), + [anon_sym_RPAREN] = ACTIONS(9017), + [aux_sym_preproc_if_token2] = ACTIONS(9017), + [aux_sym_preproc_else_token1] = ACTIONS(9017), + [aux_sym_preproc_elif_token1] = ACTIONS(9015), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9017), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9017), + [anon_sym_LPAREN2] = ACTIONS(9017), + [anon_sym_DASH] = ACTIONS(9015), + [anon_sym_PLUS] = ACTIONS(9015), + [anon_sym_STAR] = ACTIONS(9015), + [anon_sym_SLASH] = ACTIONS(9015), + [anon_sym_PERCENT] = ACTIONS(9015), + [anon_sym_PIPE_PIPE] = ACTIONS(9017), + [anon_sym_AMP_AMP] = ACTIONS(9017), + [anon_sym_PIPE] = ACTIONS(9015), + [anon_sym_CARET] = ACTIONS(9015), + [anon_sym_AMP] = ACTIONS(9015), + [anon_sym_EQ_EQ] = ACTIONS(9017), + [anon_sym_BANG_EQ] = ACTIONS(9017), + [anon_sym_GT] = ACTIONS(9015), + [anon_sym_GT_EQ] = ACTIONS(9017), + [anon_sym_LT_EQ] = ACTIONS(9015), + [anon_sym_LT] = ACTIONS(9015), + [anon_sym_LT_LT] = ACTIONS(9015), + [anon_sym_GT_GT] = ACTIONS(9015), + [anon_sym_SEMI] = ACTIONS(9017), + [anon_sym___attribute__] = ACTIONS(9015), + [anon_sym___attribute] = ACTIONS(9015), + [anon_sym_COLON] = ACTIONS(9015), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9017), + [anon_sym_RBRACE] = ACTIONS(9017), + [anon_sym_LBRACK] = ACTIONS(9017), + [anon_sym_EQ] = ACTIONS(9015), + [anon_sym_QMARK] = ACTIONS(9017), + [anon_sym_STAR_EQ] = ACTIONS(9017), + [anon_sym_SLASH_EQ] = ACTIONS(9017), + [anon_sym_PERCENT_EQ] = ACTIONS(9017), + [anon_sym_PLUS_EQ] = ACTIONS(9017), + [anon_sym_DASH_EQ] = ACTIONS(9017), + [anon_sym_LT_LT_EQ] = ACTIONS(9017), + [anon_sym_GT_GT_EQ] = ACTIONS(9017), + [anon_sym_AMP_EQ] = ACTIONS(9017), + [anon_sym_CARET_EQ] = ACTIONS(9017), + [anon_sym_PIPE_EQ] = ACTIONS(9017), + [anon_sym_and_eq] = ACTIONS(9015), + [anon_sym_or_eq] = ACTIONS(9015), + [anon_sym_xor_eq] = ACTIONS(9015), + [anon_sym_LT_EQ_GT] = ACTIONS(9017), + [anon_sym_or] = ACTIONS(9015), + [anon_sym_and] = ACTIONS(9015), + [anon_sym_bitor] = ACTIONS(9015), + [anon_sym_xor] = ACTIONS(9015), + [anon_sym_bitand] = ACTIONS(9015), + [anon_sym_not_eq] = ACTIONS(9015), + [anon_sym_DASH_DASH] = ACTIONS(9017), + [anon_sym_PLUS_PLUS] = ACTIONS(9017), + [anon_sym_DOT] = ACTIONS(9015), + [anon_sym_DOT_STAR] = ACTIONS(9017), + [anon_sym_DASH_GT] = ACTIONS(9017), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9015), + [anon_sym_override] = ACTIONS(9015), + [anon_sym_requires] = ACTIONS(9015), + [anon_sym_COLON_RBRACK] = ACTIONS(9017), }, - [STATE(3645)] = { - [sym_argument_list] = STATE(3859), - [sym_initializer_list] = STATE(3859), + [STATE(3637)] = { [sym_identifier] = ACTIONS(9377), [anon_sym_DOT_DOT_DOT] = ACTIONS(9379), [anon_sym_COMMA] = ACTIONS(9379), @@ -439639,7 +438919,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(9377), [aux_sym_preproc_elifdef_token1] = ACTIONS(9379), [aux_sym_preproc_elifdef_token2] = ACTIONS(9379), - [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_LPAREN2] = ACTIONS(9379), [anon_sym_DASH] = ACTIONS(9377), [anon_sym_PLUS] = ACTIONS(9377), [anon_sym_STAR] = ACTIONS(9377), @@ -439663,7 +438943,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute] = ACTIONS(9377), [anon_sym_COLON] = ACTIONS(9377), [anon_sym_RBRACK_RBRACK] = ACTIONS(9379), - [anon_sym_LBRACE] = ACTIONS(2396), [anon_sym_RBRACE] = ACTIONS(9379), [anon_sym_LBRACK] = ACTIONS(9379), [anon_sym_EQ] = ACTIONS(9377), @@ -439694,354 +438973,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(9379), [anon_sym_DASH_GT] = ACTIONS(9379), [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9377), + [anon_sym_override] = ACTIONS(9377), + [anon_sym_requires] = ACTIONS(9377), [anon_sym_COLON_RBRACK] = ACTIONS(9379), }, - [STATE(3646)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym__function_exception_specification] = STATE(4099), - [sym__function_attributes_end] = STATE(5960), - [sym__function_postfix] = STATE(5460), - [sym_trailing_return_type] = STATE(5881), - [sym_noexcept] = STATE(4099), - [sym_throw_specifier] = STATE(4099), - [sym_requires_clause] = STATE(5460), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7791), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7791), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7791), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7791), - [anon_sym_GT_GT] = ACTIONS(7791), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7176), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7791), - [anon_sym_and] = ACTIONS(7791), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7791), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(9211), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7219), - [anon_sym_override] = ACTIONS(7219), - [anon_sym_noexcept] = ACTIONS(7192), - [anon_sym_throw] = ACTIONS(7194), - [anon_sym_requires] = ACTIONS(7221), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), - }, - [STATE(3647)] = { - [sym_argument_list] = STATE(3857), - [sym_initializer_list] = STATE(3857), - [sym_identifier] = ACTIONS(9381), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9383), - [anon_sym_COMMA] = ACTIONS(9383), - [anon_sym_RPAREN] = ACTIONS(9383), - [aux_sym_preproc_if_token2] = ACTIONS(9383), - [aux_sym_preproc_else_token1] = ACTIONS(9383), - [aux_sym_preproc_elif_token1] = ACTIONS(9381), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9383), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9383), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9381), - [anon_sym_PLUS] = ACTIONS(9381), - [anon_sym_STAR] = ACTIONS(9381), - [anon_sym_SLASH] = ACTIONS(9381), - [anon_sym_PERCENT] = ACTIONS(9381), - [anon_sym_PIPE_PIPE] = ACTIONS(9383), - [anon_sym_AMP_AMP] = ACTIONS(9383), - [anon_sym_PIPE] = ACTIONS(9381), - [anon_sym_CARET] = ACTIONS(9381), - [anon_sym_AMP] = ACTIONS(9381), - [anon_sym_EQ_EQ] = ACTIONS(9383), - [anon_sym_BANG_EQ] = ACTIONS(9383), - [anon_sym_GT] = ACTIONS(9381), - [anon_sym_GT_EQ] = ACTIONS(9383), - [anon_sym_LT_EQ] = ACTIONS(9381), - [anon_sym_LT] = ACTIONS(9381), - [anon_sym_LT_LT] = ACTIONS(9381), - [anon_sym_GT_GT] = ACTIONS(9381), - [anon_sym_SEMI] = ACTIONS(9383), - [anon_sym___attribute__] = ACTIONS(9381), - [anon_sym___attribute] = ACTIONS(9381), - [anon_sym_COLON] = ACTIONS(9381), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9383), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(9383), - [anon_sym_LBRACK] = ACTIONS(9383), - [anon_sym_EQ] = ACTIONS(9381), - [anon_sym_QMARK] = ACTIONS(9383), - [anon_sym_STAR_EQ] = ACTIONS(9383), - [anon_sym_SLASH_EQ] = ACTIONS(9383), - [anon_sym_PERCENT_EQ] = ACTIONS(9383), - [anon_sym_PLUS_EQ] = ACTIONS(9383), - [anon_sym_DASH_EQ] = ACTIONS(9383), - [anon_sym_LT_LT_EQ] = ACTIONS(9383), - [anon_sym_GT_GT_EQ] = ACTIONS(9383), - [anon_sym_AMP_EQ] = ACTIONS(9383), - [anon_sym_CARET_EQ] = ACTIONS(9383), - [anon_sym_PIPE_EQ] = ACTIONS(9383), - [anon_sym_and_eq] = ACTIONS(9381), - [anon_sym_or_eq] = ACTIONS(9381), - [anon_sym_xor_eq] = ACTIONS(9381), - [anon_sym_LT_EQ_GT] = ACTIONS(9383), - [anon_sym_or] = ACTIONS(9381), - [anon_sym_and] = ACTIONS(9381), - [anon_sym_bitor] = ACTIONS(9381), - [anon_sym_xor] = ACTIONS(9381), - [anon_sym_bitand] = ACTIONS(9381), - [anon_sym_not_eq] = ACTIONS(9381), - [anon_sym_DASH_DASH] = ACTIONS(9383), - [anon_sym_PLUS_PLUS] = ACTIONS(9383), - [anon_sym_DOT] = ACTIONS(9381), - [anon_sym_DOT_STAR] = ACTIONS(9383), - [anon_sym_DASH_GT] = ACTIONS(9383), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9383), + [STATE(3638)] = { + [sym_identifier] = ACTIONS(8905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8907), + [anon_sym_COMMA] = ACTIONS(8907), + [anon_sym_RPAREN] = ACTIONS(8907), + [aux_sym_preproc_if_token2] = ACTIONS(8907), + [aux_sym_preproc_else_token1] = ACTIONS(8907), + [aux_sym_preproc_elif_token1] = ACTIONS(8905), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8907), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8907), + [anon_sym_LPAREN2] = ACTIONS(8907), + [anon_sym_DASH] = ACTIONS(8905), + [anon_sym_PLUS] = ACTIONS(8905), + [anon_sym_STAR] = ACTIONS(8905), + [anon_sym_SLASH] = ACTIONS(8905), + [anon_sym_PERCENT] = ACTIONS(8905), + [anon_sym_PIPE_PIPE] = ACTIONS(8907), + [anon_sym_AMP_AMP] = ACTIONS(8907), + [anon_sym_PIPE] = ACTIONS(8905), + [anon_sym_CARET] = ACTIONS(8905), + [anon_sym_AMP] = ACTIONS(8905), + [anon_sym_EQ_EQ] = ACTIONS(8907), + [anon_sym_BANG_EQ] = ACTIONS(8907), + [anon_sym_GT] = ACTIONS(8905), + [anon_sym_GT_EQ] = ACTIONS(8907), + [anon_sym_LT_EQ] = ACTIONS(8905), + [anon_sym_LT] = ACTIONS(8905), + [anon_sym_LT_LT] = ACTIONS(8905), + [anon_sym_GT_GT] = ACTIONS(8905), + [anon_sym_SEMI] = ACTIONS(8907), + [anon_sym___attribute__] = ACTIONS(8905), + [anon_sym___attribute] = ACTIONS(8905), + [anon_sym_COLON] = ACTIONS(8905), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8907), + [anon_sym_RBRACE] = ACTIONS(8907), + [anon_sym_LBRACK] = ACTIONS(8907), + [anon_sym_EQ] = ACTIONS(8905), + [anon_sym_QMARK] = ACTIONS(8907), + [anon_sym_STAR_EQ] = ACTIONS(8907), + [anon_sym_SLASH_EQ] = ACTIONS(8907), + [anon_sym_PERCENT_EQ] = ACTIONS(8907), + [anon_sym_PLUS_EQ] = ACTIONS(8907), + [anon_sym_DASH_EQ] = ACTIONS(8907), + [anon_sym_LT_LT_EQ] = ACTIONS(8907), + [anon_sym_GT_GT_EQ] = ACTIONS(8907), + [anon_sym_AMP_EQ] = ACTIONS(8907), + [anon_sym_CARET_EQ] = ACTIONS(8907), + [anon_sym_PIPE_EQ] = ACTIONS(8907), + [anon_sym_and_eq] = ACTIONS(8905), + [anon_sym_or_eq] = ACTIONS(8905), + [anon_sym_xor_eq] = ACTIONS(8905), + [anon_sym_LT_EQ_GT] = ACTIONS(8907), + [anon_sym_or] = ACTIONS(8905), + [anon_sym_and] = ACTIONS(8905), + [anon_sym_bitor] = ACTIONS(8905), + [anon_sym_xor] = ACTIONS(8905), + [anon_sym_bitand] = ACTIONS(8905), + [anon_sym_not_eq] = ACTIONS(8905), + [anon_sym_DASH_DASH] = ACTIONS(8907), + [anon_sym_PLUS_PLUS] = ACTIONS(8907), + [anon_sym_DOT] = ACTIONS(8905), + [anon_sym_DOT_STAR] = ACTIONS(8907), + [anon_sym_DASH_GT] = ACTIONS(8907), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8905), + [anon_sym_override] = ACTIONS(8905), + [anon_sym_requires] = ACTIONS(8905), + [anon_sym_COLON_RBRACK] = ACTIONS(8907), }, - [STATE(3648)] = { - [sym_identifier] = ACTIONS(8950), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8952), - [anon_sym_COMMA] = ACTIONS(8952), - [anon_sym_RPAREN] = ACTIONS(8952), - [aux_sym_preproc_if_token2] = ACTIONS(8952), - [aux_sym_preproc_else_token1] = ACTIONS(8952), - [aux_sym_preproc_elif_token1] = ACTIONS(8950), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8952), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8952), - [anon_sym_LPAREN2] = ACTIONS(8952), - [anon_sym_DASH] = ACTIONS(8950), - [anon_sym_PLUS] = ACTIONS(8950), - [anon_sym_STAR] = ACTIONS(8950), - [anon_sym_SLASH] = ACTIONS(8950), - [anon_sym_PERCENT] = ACTIONS(8950), - [anon_sym_PIPE_PIPE] = ACTIONS(8952), - [anon_sym_AMP_AMP] = ACTIONS(8952), - [anon_sym_PIPE] = ACTIONS(8950), - [anon_sym_CARET] = ACTIONS(8950), - [anon_sym_AMP] = ACTIONS(8950), - [anon_sym_EQ_EQ] = ACTIONS(8952), - [anon_sym_BANG_EQ] = ACTIONS(8952), - [anon_sym_GT] = ACTIONS(8950), - [anon_sym_GT_EQ] = ACTIONS(8952), - [anon_sym_LT_EQ] = ACTIONS(8950), - [anon_sym_LT] = ACTIONS(8950), - [anon_sym_LT_LT] = ACTIONS(8950), - [anon_sym_GT_GT] = ACTIONS(8950), - [anon_sym_SEMI] = ACTIONS(8952), - [anon_sym___attribute__] = ACTIONS(8950), - [anon_sym___attribute] = ACTIONS(8950), - [anon_sym_COLON] = ACTIONS(8950), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8952), - [anon_sym_RBRACE] = ACTIONS(8952), - [anon_sym_LBRACK] = ACTIONS(8952), - [anon_sym_EQ] = ACTIONS(8950), - [anon_sym_QMARK] = ACTIONS(8952), - [anon_sym_STAR_EQ] = ACTIONS(8952), - [anon_sym_SLASH_EQ] = ACTIONS(8952), - [anon_sym_PERCENT_EQ] = ACTIONS(8952), - [anon_sym_PLUS_EQ] = ACTIONS(8952), - [anon_sym_DASH_EQ] = ACTIONS(8952), - [anon_sym_LT_LT_EQ] = ACTIONS(8952), - [anon_sym_GT_GT_EQ] = ACTIONS(8952), - [anon_sym_AMP_EQ] = ACTIONS(8952), - [anon_sym_CARET_EQ] = ACTIONS(8952), - [anon_sym_PIPE_EQ] = ACTIONS(8952), - [anon_sym_and_eq] = ACTIONS(8950), - [anon_sym_or_eq] = ACTIONS(8950), - [anon_sym_xor_eq] = ACTIONS(8950), - [anon_sym_LT_EQ_GT] = ACTIONS(8952), - [anon_sym_or] = ACTIONS(8950), - [anon_sym_and] = ACTIONS(8950), - [anon_sym_bitor] = ACTIONS(8950), - [anon_sym_xor] = ACTIONS(8950), - [anon_sym_bitand] = ACTIONS(8950), - [anon_sym_not_eq] = ACTIONS(8950), - [anon_sym_DASH_DASH] = ACTIONS(8952), - [anon_sym_PLUS_PLUS] = ACTIONS(8952), - [anon_sym_DOT] = ACTIONS(8950), - [anon_sym_DOT_STAR] = ACTIONS(8952), - [anon_sym_DASH_GT] = ACTIONS(8952), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8950), - [anon_sym_override] = ACTIONS(8950), - [anon_sym_requires] = ACTIONS(8950), - [anon_sym_COLON_RBRACK] = ACTIONS(8952), + [STATE(3639)] = { + [sym_identifier] = ACTIONS(9293), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9295), + [anon_sym_COMMA] = ACTIONS(9295), + [anon_sym_RPAREN] = ACTIONS(9295), + [aux_sym_preproc_if_token2] = ACTIONS(9295), + [aux_sym_preproc_else_token1] = ACTIONS(9295), + [aux_sym_preproc_elif_token1] = ACTIONS(9293), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9295), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9295), + [anon_sym_LPAREN2] = ACTIONS(9295), + [anon_sym_DASH] = ACTIONS(9293), + [anon_sym_PLUS] = ACTIONS(9293), + [anon_sym_STAR] = ACTIONS(9293), + [anon_sym_SLASH] = ACTIONS(9293), + [anon_sym_PERCENT] = ACTIONS(9293), + [anon_sym_PIPE_PIPE] = ACTIONS(9381), + [anon_sym_AMP_AMP] = ACTIONS(9333), + [anon_sym_PIPE] = ACTIONS(9293), + [anon_sym_CARET] = ACTIONS(9293), + [anon_sym_AMP] = ACTIONS(9293), + [anon_sym_EQ_EQ] = ACTIONS(9295), + [anon_sym_BANG_EQ] = ACTIONS(9295), + [anon_sym_GT] = ACTIONS(9293), + [anon_sym_GT_EQ] = ACTIONS(9295), + [anon_sym_LT_EQ] = ACTIONS(9293), + [anon_sym_LT] = ACTIONS(9293), + [anon_sym_LT_LT] = ACTIONS(9293), + [anon_sym_GT_GT] = ACTIONS(9293), + [anon_sym_SEMI] = ACTIONS(9295), + [anon_sym___attribute__] = ACTIONS(9293), + [anon_sym___attribute] = ACTIONS(9293), + [anon_sym_COLON] = ACTIONS(9293), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9295), + [anon_sym_RBRACE] = ACTIONS(9295), + [anon_sym_LBRACK] = ACTIONS(9295), + [anon_sym_EQ] = ACTIONS(9293), + [anon_sym_QMARK] = ACTIONS(9295), + [anon_sym_STAR_EQ] = ACTIONS(9295), + [anon_sym_SLASH_EQ] = ACTIONS(9295), + [anon_sym_PERCENT_EQ] = ACTIONS(9295), + [anon_sym_PLUS_EQ] = ACTIONS(9295), + [anon_sym_DASH_EQ] = ACTIONS(9295), + [anon_sym_LT_LT_EQ] = ACTIONS(9295), + [anon_sym_GT_GT_EQ] = ACTIONS(9295), + [anon_sym_AMP_EQ] = ACTIONS(9295), + [anon_sym_CARET_EQ] = ACTIONS(9295), + [anon_sym_PIPE_EQ] = ACTIONS(9295), + [anon_sym_and_eq] = ACTIONS(9293), + [anon_sym_or_eq] = ACTIONS(9293), + [anon_sym_xor_eq] = ACTIONS(9293), + [anon_sym_LT_EQ_GT] = ACTIONS(9295), + [anon_sym_or] = ACTIONS(9383), + [anon_sym_and] = ACTIONS(9335), + [anon_sym_bitor] = ACTIONS(9293), + [anon_sym_xor] = ACTIONS(9293), + [anon_sym_bitand] = ACTIONS(9293), + [anon_sym_not_eq] = ACTIONS(9293), + [anon_sym_DASH_DASH] = ACTIONS(9295), + [anon_sym_PLUS_PLUS] = ACTIONS(9295), + [anon_sym_DOT] = ACTIONS(9293), + [anon_sym_DOT_STAR] = ACTIONS(9295), + [anon_sym_DASH_GT] = ACTIONS(9295), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9293), + [anon_sym_override] = ACTIONS(9293), + [anon_sym_requires] = ACTIONS(9293), + [anon_sym_COLON_RBRACK] = ACTIONS(9295), }, - [STATE(3649)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym__function_exception_specification] = STATE(4091), - [sym__function_attributes_end] = STATE(5963), - [sym__function_postfix] = STATE(5532), - [sym_trailing_return_type] = STATE(5857), - [sym_noexcept] = STATE(4091), - [sym_throw_specifier] = STATE(4091), - [sym_requires_clause] = STATE(5532), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [anon_sym_RPAREN] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7966), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7966), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7966), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7966), - [anon_sym_GT_GT] = ACTIONS(7966), - [anon_sym_SEMI] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(7176), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_COLON] = ACTIONS(7968), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7966), - [anon_sym_RBRACE] = ACTIONS(7966), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7966), - [anon_sym_and] = ACTIONS(7966), - [anon_sym_bitor] = ACTIONS(7966), - [anon_sym_xor] = ACTIONS(7966), - [anon_sym_bitand] = ACTIONS(7966), - [anon_sym_not_eq] = ACTIONS(7966), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(9287), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7219), - [anon_sym_override] = ACTIONS(7219), - [anon_sym_noexcept] = ACTIONS(7192), - [anon_sym_throw] = ACTIONS(7194), - [anon_sym_requires] = ACTIONS(7221), - [anon_sym_COLON_RBRACK] = ACTIONS(7966), + [STATE(3640)] = { + [sym_identifier] = ACTIONS(7117), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_TILDE] = ACTIONS(7122), + [anon_sym_STAR] = ACTIONS(7122), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym_virtual] = ACTIONS(7117), + [anon_sym_extern] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_using] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7122), + [anon_sym___declspec] = ACTIONS(7117), + [anon_sym___based] = ACTIONS(7117), + [anon_sym___cdecl] = ACTIONS(7117), + [anon_sym___clrcall] = ACTIONS(7117), + [anon_sym___stdcall] = ACTIONS(7117), + [anon_sym___fastcall] = ACTIONS(7117), + [anon_sym___thiscall] = ACTIONS(7117), + [anon_sym___vectorcall] = ACTIONS(7117), + [anon_sym_signed] = ACTIONS(7117), + [anon_sym_unsigned] = ACTIONS(7117), + [anon_sym_long] = ACTIONS(7117), + [anon_sym_short] = ACTIONS(7117), + [anon_sym_LBRACK] = ACTIONS(7117), + [anon_sym_static] = ACTIONS(7117), + [anon_sym_register] = ACTIONS(7117), + [anon_sym_inline] = ACTIONS(7117), + [anon_sym___inline] = ACTIONS(7117), + [anon_sym___inline__] = ACTIONS(7117), + [anon_sym___forceinline] = ACTIONS(7117), + [anon_sym_thread_local] = ACTIONS(7117), + [anon_sym___thread] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [sym_primitive_type] = ACTIONS(7117), + [anon_sym_enum] = ACTIONS(7117), + [anon_sym_class] = ACTIONS(7117), + [anon_sym_struct] = ACTIONS(7117), + [anon_sym_union] = ACTIONS(7117), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_typename] = ACTIONS(7117), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7117), + [anon_sym_decltype] = ACTIONS(7117), + [anon_sym_explicit] = ACTIONS(7117), + [anon_sym_template] = ACTIONS(7117), + [anon_sym_operator] = ACTIONS(7117), + [anon_sym_friend] = ACTIONS(7117), + [anon_sym_concept] = ACTIONS(7117), + [anon_sym_LBRACK_COLON] = ACTIONS(7122), }, - [STATE(3650)] = { - [sym_identifier] = ACTIONS(9322), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9324), - [anon_sym_COMMA] = ACTIONS(9324), - [anon_sym_RPAREN] = ACTIONS(9324), - [aux_sym_preproc_if_token2] = ACTIONS(9324), - [aux_sym_preproc_else_token1] = ACTIONS(9324), - [aux_sym_preproc_elif_token1] = ACTIONS(9322), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9324), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9324), - [anon_sym_LPAREN2] = ACTIONS(9324), - [anon_sym_DASH] = ACTIONS(9322), - [anon_sym_PLUS] = ACTIONS(9322), - [anon_sym_STAR] = ACTIONS(9322), - [anon_sym_SLASH] = ACTIONS(9322), - [anon_sym_PERCENT] = ACTIONS(9322), - [anon_sym_PIPE_PIPE] = ACTIONS(9324), - [anon_sym_AMP_AMP] = ACTIONS(9385), - [anon_sym_PIPE] = ACTIONS(9322), - [anon_sym_CARET] = ACTIONS(9322), - [anon_sym_AMP] = ACTIONS(9322), - [anon_sym_EQ_EQ] = ACTIONS(9324), - [anon_sym_BANG_EQ] = ACTIONS(9324), - [anon_sym_GT] = ACTIONS(9322), - [anon_sym_GT_EQ] = ACTIONS(9324), - [anon_sym_LT_EQ] = ACTIONS(9322), - [anon_sym_LT] = ACTIONS(9322), - [anon_sym_LT_LT] = ACTIONS(9322), - [anon_sym_GT_GT] = ACTIONS(9322), - [anon_sym_SEMI] = ACTIONS(9324), - [anon_sym___attribute__] = ACTIONS(9322), - [anon_sym___attribute] = ACTIONS(9322), - [anon_sym_COLON] = ACTIONS(9322), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9324), - [anon_sym_RBRACE] = ACTIONS(9324), - [anon_sym_LBRACK] = ACTIONS(9324), - [anon_sym_EQ] = ACTIONS(9322), - [anon_sym_QMARK] = ACTIONS(9324), - [anon_sym_STAR_EQ] = ACTIONS(9324), - [anon_sym_SLASH_EQ] = ACTIONS(9324), - [anon_sym_PERCENT_EQ] = ACTIONS(9324), - [anon_sym_PLUS_EQ] = ACTIONS(9324), - [anon_sym_DASH_EQ] = ACTIONS(9324), - [anon_sym_LT_LT_EQ] = ACTIONS(9324), - [anon_sym_GT_GT_EQ] = ACTIONS(9324), - [anon_sym_AMP_EQ] = ACTIONS(9324), - [anon_sym_CARET_EQ] = ACTIONS(9324), - [anon_sym_PIPE_EQ] = ACTIONS(9324), - [anon_sym_and_eq] = ACTIONS(9322), - [anon_sym_or_eq] = ACTIONS(9322), - [anon_sym_xor_eq] = ACTIONS(9322), - [anon_sym_LT_EQ_GT] = ACTIONS(9324), - [anon_sym_or] = ACTIONS(9322), - [anon_sym_and] = ACTIONS(9387), - [anon_sym_bitor] = ACTIONS(9322), - [anon_sym_xor] = ACTIONS(9322), - [anon_sym_bitand] = ACTIONS(9322), - [anon_sym_not_eq] = ACTIONS(9322), - [anon_sym_DASH_DASH] = ACTIONS(9324), - [anon_sym_PLUS_PLUS] = ACTIONS(9324), - [anon_sym_DOT] = ACTIONS(9322), - [anon_sym_DOT_STAR] = ACTIONS(9324), - [anon_sym_DASH_GT] = ACTIONS(9324), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9322), - [anon_sym_override] = ACTIONS(9322), - [anon_sym_requires] = ACTIONS(9322), - [anon_sym_COLON_RBRACK] = ACTIONS(9324), + [STATE(3641)] = { + [sym_identifier] = ACTIONS(9385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9387), + [anon_sym_COMMA] = ACTIONS(9387), + [anon_sym_RPAREN] = ACTIONS(9387), + [aux_sym_preproc_if_token2] = ACTIONS(9387), + [aux_sym_preproc_else_token1] = ACTIONS(9387), + [aux_sym_preproc_elif_token1] = ACTIONS(9385), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9387), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9387), + [anon_sym_LPAREN2] = ACTIONS(9387), + [anon_sym_DASH] = ACTIONS(9385), + [anon_sym_PLUS] = ACTIONS(9385), + [anon_sym_STAR] = ACTIONS(9385), + [anon_sym_SLASH] = ACTIONS(9385), + [anon_sym_PERCENT] = ACTIONS(9385), + [anon_sym_PIPE_PIPE] = ACTIONS(9387), + [anon_sym_AMP_AMP] = ACTIONS(9387), + [anon_sym_PIPE] = ACTIONS(9385), + [anon_sym_CARET] = ACTIONS(9385), + [anon_sym_AMP] = ACTIONS(9385), + [anon_sym_EQ_EQ] = ACTIONS(9387), + [anon_sym_BANG_EQ] = ACTIONS(9387), + [anon_sym_GT] = ACTIONS(9385), + [anon_sym_GT_EQ] = ACTIONS(9387), + [anon_sym_LT_EQ] = ACTIONS(9385), + [anon_sym_LT] = ACTIONS(9385), + [anon_sym_LT_LT] = ACTIONS(9385), + [anon_sym_GT_GT] = ACTIONS(9385), + [anon_sym_SEMI] = ACTIONS(9387), + [anon_sym___attribute__] = ACTIONS(9385), + [anon_sym___attribute] = ACTIONS(9385), + [anon_sym_COLON] = ACTIONS(9385), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9387), + [anon_sym_RBRACE] = ACTIONS(9387), + [anon_sym_LBRACK] = ACTIONS(9387), + [anon_sym_EQ] = ACTIONS(9385), + [anon_sym_QMARK] = ACTIONS(9387), + [anon_sym_STAR_EQ] = ACTIONS(9387), + [anon_sym_SLASH_EQ] = ACTIONS(9387), + [anon_sym_PERCENT_EQ] = ACTIONS(9387), + [anon_sym_PLUS_EQ] = ACTIONS(9387), + [anon_sym_DASH_EQ] = ACTIONS(9387), + [anon_sym_LT_LT_EQ] = ACTIONS(9387), + [anon_sym_GT_GT_EQ] = ACTIONS(9387), + [anon_sym_AMP_EQ] = ACTIONS(9387), + [anon_sym_CARET_EQ] = ACTIONS(9387), + [anon_sym_PIPE_EQ] = ACTIONS(9387), + [anon_sym_and_eq] = ACTIONS(9385), + [anon_sym_or_eq] = ACTIONS(9385), + [anon_sym_xor_eq] = ACTIONS(9385), + [anon_sym_LT_EQ_GT] = ACTIONS(9387), + [anon_sym_or] = ACTIONS(9385), + [anon_sym_and] = ACTIONS(9385), + [anon_sym_bitor] = ACTIONS(9385), + [anon_sym_xor] = ACTIONS(9385), + [anon_sym_bitand] = ACTIONS(9385), + [anon_sym_not_eq] = ACTIONS(9385), + [anon_sym_DASH_DASH] = ACTIONS(9387), + [anon_sym_PLUS_PLUS] = ACTIONS(9387), + [anon_sym_DOT] = ACTIONS(9385), + [anon_sym_DOT_STAR] = ACTIONS(9387), + [anon_sym_DASH_GT] = ACTIONS(9387), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9385), + [anon_sym_override] = ACTIONS(9385), + [anon_sym_requires] = ACTIONS(9385), + [anon_sym_COLON_RBRACK] = ACTIONS(9387), }, - [STATE(3651)] = { + [STATE(3642)] = { + [sym_attribute_declaration] = STATE(3752), + [sym_parameter_list] = STATE(3233), + [aux_sym_attributed_declarator_repeat1] = STATE(3752), [sym_identifier] = ACTIONS(9389), [anon_sym_DOT_DOT_DOT] = ACTIONS(9391), [anon_sym_COMMA] = ACTIONS(9391), @@ -440051,7 +439267,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(9389), [aux_sym_preproc_elifdef_token1] = ACTIONS(9391), [aux_sym_preproc_elifdef_token2] = ACTIONS(9391), - [anon_sym_LPAREN2] = ACTIONS(9391), + [anon_sym_LPAREN2] = ACTIONS(9393), [anon_sym_DASH] = ACTIONS(9389), [anon_sym_PLUS] = ACTIONS(9389), [anon_sym_STAR] = ACTIONS(9389), @@ -440074,9 +439290,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(9389), [anon_sym___attribute] = ACTIONS(9389), [anon_sym_COLON] = ACTIONS(9389), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9391), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), [anon_sym_RBRACE] = ACTIONS(9391), - [anon_sym_LBRACK] = ACTIONS(9391), + [anon_sym_LBRACK] = ACTIONS(9395), [anon_sym_EQ] = ACTIONS(9389), [anon_sym_QMARK] = ACTIONS(9391), [anon_sym_STAR_EQ] = ACTIONS(9391), @@ -440105,1808 +439321,2151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_STAR] = ACTIONS(9391), [anon_sym_DASH_GT] = ACTIONS(9391), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9389), - [anon_sym_override] = ACTIONS(9389), - [anon_sym_requires] = ACTIONS(9389), [anon_sym_COLON_RBRACK] = ACTIONS(9391), }, - [STATE(3652)] = { - [sym_identifier] = ACTIONS(8885), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8887), - [anon_sym_COMMA] = ACTIONS(8887), - [anon_sym_RPAREN] = ACTIONS(8887), - [aux_sym_preproc_if_token2] = ACTIONS(8887), - [aux_sym_preproc_else_token1] = ACTIONS(8887), - [aux_sym_preproc_elif_token1] = ACTIONS(8885), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8887), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8887), - [anon_sym_LPAREN2] = ACTIONS(8887), - [anon_sym_DASH] = ACTIONS(8885), - [anon_sym_PLUS] = ACTIONS(8885), - [anon_sym_STAR] = ACTIONS(8885), - [anon_sym_SLASH] = ACTIONS(8885), - [anon_sym_PERCENT] = ACTIONS(8885), - [anon_sym_PIPE_PIPE] = ACTIONS(8887), - [anon_sym_AMP_AMP] = ACTIONS(8887), - [anon_sym_PIPE] = ACTIONS(8885), - [anon_sym_CARET] = ACTIONS(8885), - [anon_sym_AMP] = ACTIONS(8885), - [anon_sym_EQ_EQ] = ACTIONS(8887), - [anon_sym_BANG_EQ] = ACTIONS(8887), - [anon_sym_GT] = ACTIONS(8885), - [anon_sym_GT_EQ] = ACTIONS(8887), - [anon_sym_LT_EQ] = ACTIONS(8885), - [anon_sym_LT] = ACTIONS(8885), - [anon_sym_LT_LT] = ACTIONS(8885), - [anon_sym_GT_GT] = ACTIONS(8885), - [anon_sym_SEMI] = ACTIONS(8887), - [anon_sym___attribute__] = ACTIONS(8885), - [anon_sym___attribute] = ACTIONS(8885), - [anon_sym_COLON] = ACTIONS(8885), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8887), - [anon_sym_RBRACE] = ACTIONS(8887), - [anon_sym_LBRACK] = ACTIONS(8887), - [anon_sym_EQ] = ACTIONS(8885), - [anon_sym_QMARK] = ACTIONS(8887), - [anon_sym_STAR_EQ] = ACTIONS(8887), - [anon_sym_SLASH_EQ] = ACTIONS(8887), - [anon_sym_PERCENT_EQ] = ACTIONS(8887), - [anon_sym_PLUS_EQ] = ACTIONS(8887), - [anon_sym_DASH_EQ] = ACTIONS(8887), - [anon_sym_LT_LT_EQ] = ACTIONS(8887), - [anon_sym_GT_GT_EQ] = ACTIONS(8887), - [anon_sym_AMP_EQ] = ACTIONS(8887), - [anon_sym_CARET_EQ] = ACTIONS(8887), - [anon_sym_PIPE_EQ] = ACTIONS(8887), - [anon_sym_and_eq] = ACTIONS(8885), - [anon_sym_or_eq] = ACTIONS(8885), - [anon_sym_xor_eq] = ACTIONS(8885), - [anon_sym_LT_EQ_GT] = ACTIONS(8887), - [anon_sym_or] = ACTIONS(8885), - [anon_sym_and] = ACTIONS(8885), - [anon_sym_bitor] = ACTIONS(8885), - [anon_sym_xor] = ACTIONS(8885), - [anon_sym_bitand] = ACTIONS(8885), - [anon_sym_not_eq] = ACTIONS(8885), - [anon_sym_DASH_DASH] = ACTIONS(8887), - [anon_sym_PLUS_PLUS] = ACTIONS(8887), - [anon_sym_DOT] = ACTIONS(8885), - [anon_sym_DOT_STAR] = ACTIONS(8887), - [anon_sym_DASH_GT] = ACTIONS(8887), + [STATE(3643)] = { + [sym_attribute_declaration] = STATE(3752), + [sym_parameter_list] = STATE(3233), + [aux_sym_attributed_declarator_repeat1] = STATE(3752), + [sym_identifier] = ACTIONS(9397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9399), + [anon_sym_COMMA] = ACTIONS(9399), + [anon_sym_RPAREN] = ACTIONS(9399), + [aux_sym_preproc_if_token2] = ACTIONS(9399), + [aux_sym_preproc_else_token1] = ACTIONS(9399), + [aux_sym_preproc_elif_token1] = ACTIONS(9397), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9399), + [anon_sym_LPAREN2] = ACTIONS(9393), + [anon_sym_DASH] = ACTIONS(9397), + [anon_sym_PLUS] = ACTIONS(9397), + [anon_sym_STAR] = ACTIONS(9397), + [anon_sym_SLASH] = ACTIONS(9397), + [anon_sym_PERCENT] = ACTIONS(9397), + [anon_sym_PIPE_PIPE] = ACTIONS(9399), + [anon_sym_AMP_AMP] = ACTIONS(9399), + [anon_sym_PIPE] = ACTIONS(9397), + [anon_sym_CARET] = ACTIONS(9397), + [anon_sym_AMP] = ACTIONS(9397), + [anon_sym_EQ_EQ] = ACTIONS(9399), + [anon_sym_BANG_EQ] = ACTIONS(9399), + [anon_sym_GT] = ACTIONS(9397), + [anon_sym_GT_EQ] = ACTIONS(9399), + [anon_sym_LT_EQ] = ACTIONS(9397), + [anon_sym_LT] = ACTIONS(9397), + [anon_sym_LT_LT] = ACTIONS(9397), + [anon_sym_GT_GT] = ACTIONS(9397), + [anon_sym_SEMI] = ACTIONS(9399), + [anon_sym___attribute__] = ACTIONS(9397), + [anon_sym___attribute] = ACTIONS(9397), + [anon_sym_COLON] = ACTIONS(9397), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACE] = ACTIONS(9399), + [anon_sym_LBRACK] = ACTIONS(9395), + [anon_sym_EQ] = ACTIONS(9397), + [anon_sym_QMARK] = ACTIONS(9399), + [anon_sym_STAR_EQ] = ACTIONS(9399), + [anon_sym_SLASH_EQ] = ACTIONS(9399), + [anon_sym_PERCENT_EQ] = ACTIONS(9399), + [anon_sym_PLUS_EQ] = ACTIONS(9399), + [anon_sym_DASH_EQ] = ACTIONS(9399), + [anon_sym_LT_LT_EQ] = ACTIONS(9399), + [anon_sym_GT_GT_EQ] = ACTIONS(9399), + [anon_sym_AMP_EQ] = ACTIONS(9399), + [anon_sym_CARET_EQ] = ACTIONS(9399), + [anon_sym_PIPE_EQ] = ACTIONS(9399), + [anon_sym_and_eq] = ACTIONS(9397), + [anon_sym_or_eq] = ACTIONS(9397), + [anon_sym_xor_eq] = ACTIONS(9397), + [anon_sym_LT_EQ_GT] = ACTIONS(9399), + [anon_sym_or] = ACTIONS(9397), + [anon_sym_and] = ACTIONS(9397), + [anon_sym_bitor] = ACTIONS(9397), + [anon_sym_xor] = ACTIONS(9397), + [anon_sym_bitand] = ACTIONS(9397), + [anon_sym_not_eq] = ACTIONS(9397), + [anon_sym_DASH_DASH] = ACTIONS(9399), + [anon_sym_PLUS_PLUS] = ACTIONS(9399), + [anon_sym_DOT] = ACTIONS(9397), + [anon_sym_DOT_STAR] = ACTIONS(9399), + [anon_sym_DASH_GT] = ACTIONS(9399), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9399), + }, + [STATE(3644)] = { + [sym_identifier] = ACTIONS(7331), + [anon_sym_LPAREN2] = ACTIONS(7333), + [anon_sym_TILDE] = ACTIONS(7333), + [anon_sym_STAR] = ACTIONS(7333), + [anon_sym_PIPE_PIPE] = ACTIONS(7333), + [anon_sym_AMP_AMP] = ACTIONS(7333), + [anon_sym_AMP] = ACTIONS(7331), + [anon_sym___extension__] = ACTIONS(7331), + [anon_sym_virtual] = ACTIONS(7331), + [anon_sym_extern] = ACTIONS(7331), + [anon_sym___attribute__] = ACTIONS(7331), + [anon_sym___attribute] = ACTIONS(7331), + [anon_sym_using] = ACTIONS(7331), + [anon_sym_COLON_COLON] = ACTIONS(7333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7333), + [anon_sym___declspec] = ACTIONS(7331), + [anon_sym___based] = ACTIONS(7331), + [anon_sym___cdecl] = ACTIONS(7331), + [anon_sym___clrcall] = ACTIONS(7331), + [anon_sym___stdcall] = ACTIONS(7331), + [anon_sym___fastcall] = ACTIONS(7331), + [anon_sym___thiscall] = ACTIONS(7331), + [anon_sym___vectorcall] = ACTIONS(7331), + [anon_sym_signed] = ACTIONS(7331), + [anon_sym_unsigned] = ACTIONS(7331), + [anon_sym_long] = ACTIONS(7331), + [anon_sym_short] = ACTIONS(7331), + [anon_sym_LBRACK] = ACTIONS(7331), + [anon_sym_static] = ACTIONS(7331), + [anon_sym_register] = ACTIONS(7331), + [anon_sym_inline] = ACTIONS(7331), + [anon_sym___inline] = ACTIONS(7331), + [anon_sym___inline__] = ACTIONS(7331), + [anon_sym___forceinline] = ACTIONS(7331), + [anon_sym_thread_local] = ACTIONS(7331), + [anon_sym___thread] = ACTIONS(7331), + [anon_sym_const] = ACTIONS(7331), + [anon_sym_constexpr] = ACTIONS(7331), + [anon_sym_volatile] = ACTIONS(7331), + [anon_sym_restrict] = ACTIONS(7331), + [anon_sym___restrict__] = ACTIONS(7331), + [anon_sym__Atomic] = ACTIONS(7331), + [anon_sym__Noreturn] = ACTIONS(7331), + [anon_sym_noreturn] = ACTIONS(7331), + [anon_sym__Nonnull] = ACTIONS(7331), + [anon_sym_mutable] = ACTIONS(7331), + [anon_sym_constinit] = ACTIONS(7331), + [anon_sym_consteval] = ACTIONS(7331), + [anon_sym_alignas] = ACTIONS(7331), + [anon_sym__Alignas] = ACTIONS(7331), + [sym_primitive_type] = ACTIONS(7331), + [anon_sym_enum] = ACTIONS(7331), + [anon_sym_class] = ACTIONS(7331), + [anon_sym_struct] = ACTIONS(7331), + [anon_sym_union] = ACTIONS(7331), + [anon_sym_or] = ACTIONS(7331), + [anon_sym_and] = ACTIONS(7331), + [anon_sym_typename] = ACTIONS(7331), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7331), + [anon_sym_decltype] = ACTIONS(7331), + [anon_sym_explicit] = ACTIONS(7331), + [anon_sym_template] = ACTIONS(7331), + [anon_sym_operator] = ACTIONS(7331), + [anon_sym_friend] = ACTIONS(7331), + [anon_sym_concept] = ACTIONS(7331), + [anon_sym_LBRACK_COLON] = ACTIONS(7333), + }, + [STATE(3645)] = { + [sym_identifier] = ACTIONS(8941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8943), + [anon_sym_COMMA] = ACTIONS(8943), + [anon_sym_RPAREN] = ACTIONS(8943), + [aux_sym_preproc_if_token2] = ACTIONS(8943), + [aux_sym_preproc_else_token1] = ACTIONS(8943), + [aux_sym_preproc_elif_token1] = ACTIONS(8941), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8943), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8943), + [anon_sym_LPAREN2] = ACTIONS(8943), + [anon_sym_DASH] = ACTIONS(8941), + [anon_sym_PLUS] = ACTIONS(8941), + [anon_sym_STAR] = ACTIONS(8941), + [anon_sym_SLASH] = ACTIONS(8941), + [anon_sym_PERCENT] = ACTIONS(8941), + [anon_sym_PIPE_PIPE] = ACTIONS(8943), + [anon_sym_AMP_AMP] = ACTIONS(8943), + [anon_sym_PIPE] = ACTIONS(8941), + [anon_sym_CARET] = ACTIONS(8941), + [anon_sym_AMP] = ACTIONS(8941), + [anon_sym_EQ_EQ] = ACTIONS(8943), + [anon_sym_BANG_EQ] = ACTIONS(8943), + [anon_sym_GT] = ACTIONS(8941), + [anon_sym_GT_EQ] = ACTIONS(8943), + [anon_sym_LT_EQ] = ACTIONS(8941), + [anon_sym_LT] = ACTIONS(8941), + [anon_sym_LT_LT] = ACTIONS(8941), + [anon_sym_GT_GT] = ACTIONS(8941), + [anon_sym_SEMI] = ACTIONS(8943), + [anon_sym___attribute__] = ACTIONS(8941), + [anon_sym___attribute] = ACTIONS(8941), + [anon_sym_COLON] = ACTIONS(8941), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8943), + [anon_sym_RBRACE] = ACTIONS(8943), + [anon_sym_LBRACK] = ACTIONS(8943), + [anon_sym_EQ] = ACTIONS(8941), + [anon_sym_QMARK] = ACTIONS(8943), + [anon_sym_STAR_EQ] = ACTIONS(8943), + [anon_sym_SLASH_EQ] = ACTIONS(8943), + [anon_sym_PERCENT_EQ] = ACTIONS(8943), + [anon_sym_PLUS_EQ] = ACTIONS(8943), + [anon_sym_DASH_EQ] = ACTIONS(8943), + [anon_sym_LT_LT_EQ] = ACTIONS(8943), + [anon_sym_GT_GT_EQ] = ACTIONS(8943), + [anon_sym_AMP_EQ] = ACTIONS(8943), + [anon_sym_CARET_EQ] = ACTIONS(8943), + [anon_sym_PIPE_EQ] = ACTIONS(8943), + [anon_sym_and_eq] = ACTIONS(8941), + [anon_sym_or_eq] = ACTIONS(8941), + [anon_sym_xor_eq] = ACTIONS(8941), + [anon_sym_LT_EQ_GT] = ACTIONS(8943), + [anon_sym_or] = ACTIONS(8941), + [anon_sym_and] = ACTIONS(8941), + [anon_sym_bitor] = ACTIONS(8941), + [anon_sym_xor] = ACTIONS(8941), + [anon_sym_bitand] = ACTIONS(8941), + [anon_sym_not_eq] = ACTIONS(8941), + [anon_sym_DASH_DASH] = ACTIONS(8943), + [anon_sym_PLUS_PLUS] = ACTIONS(8943), + [anon_sym_DOT] = ACTIONS(8941), + [anon_sym_DOT_STAR] = ACTIONS(8943), + [anon_sym_DASH_GT] = ACTIONS(8943), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8941), + [anon_sym_override] = ACTIONS(8941), + [anon_sym_requires] = ACTIONS(8941), + [anon_sym_COLON_RBRACK] = ACTIONS(8943), + }, + [STATE(3646)] = { + [sym_identifier] = ACTIONS(8933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8935), + [anon_sym_COMMA] = ACTIONS(8935), + [anon_sym_RPAREN] = ACTIONS(8935), + [aux_sym_preproc_if_token2] = ACTIONS(8935), + [aux_sym_preproc_else_token1] = ACTIONS(8935), + [aux_sym_preproc_elif_token1] = ACTIONS(8933), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8935), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8935), + [anon_sym_LPAREN2] = ACTIONS(8935), + [anon_sym_DASH] = ACTIONS(8933), + [anon_sym_PLUS] = ACTIONS(8933), + [anon_sym_STAR] = ACTIONS(8933), + [anon_sym_SLASH] = ACTIONS(8933), + [anon_sym_PERCENT] = ACTIONS(8933), + [anon_sym_PIPE_PIPE] = ACTIONS(8935), + [anon_sym_AMP_AMP] = ACTIONS(8935), + [anon_sym_PIPE] = ACTIONS(8933), + [anon_sym_CARET] = ACTIONS(8933), + [anon_sym_AMP] = ACTIONS(8933), + [anon_sym_EQ_EQ] = ACTIONS(8935), + [anon_sym_BANG_EQ] = ACTIONS(8935), + [anon_sym_GT] = ACTIONS(8933), + [anon_sym_GT_EQ] = ACTIONS(8935), + [anon_sym_LT_EQ] = ACTIONS(8933), + [anon_sym_LT] = ACTIONS(8933), + [anon_sym_LT_LT] = ACTIONS(8933), + [anon_sym_GT_GT] = ACTIONS(8933), + [anon_sym_SEMI] = ACTIONS(8935), + [anon_sym___attribute__] = ACTIONS(8933), + [anon_sym___attribute] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(8933), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8935), + [anon_sym_RBRACE] = ACTIONS(8935), + [anon_sym_LBRACK] = ACTIONS(8935), + [anon_sym_EQ] = ACTIONS(8933), + [anon_sym_QMARK] = ACTIONS(8935), + [anon_sym_STAR_EQ] = ACTIONS(8935), + [anon_sym_SLASH_EQ] = ACTIONS(8935), + [anon_sym_PERCENT_EQ] = ACTIONS(8935), + [anon_sym_PLUS_EQ] = ACTIONS(8935), + [anon_sym_DASH_EQ] = ACTIONS(8935), + [anon_sym_LT_LT_EQ] = ACTIONS(8935), + [anon_sym_GT_GT_EQ] = ACTIONS(8935), + [anon_sym_AMP_EQ] = ACTIONS(8935), + [anon_sym_CARET_EQ] = ACTIONS(8935), + [anon_sym_PIPE_EQ] = ACTIONS(8935), + [anon_sym_and_eq] = ACTIONS(8933), + [anon_sym_or_eq] = ACTIONS(8933), + [anon_sym_xor_eq] = ACTIONS(8933), + [anon_sym_LT_EQ_GT] = ACTIONS(8935), + [anon_sym_or] = ACTIONS(8933), + [anon_sym_and] = ACTIONS(8933), + [anon_sym_bitor] = ACTIONS(8933), + [anon_sym_xor] = ACTIONS(8933), + [anon_sym_bitand] = ACTIONS(8933), + [anon_sym_not_eq] = ACTIONS(8933), + [anon_sym_DASH_DASH] = ACTIONS(8935), + [anon_sym_PLUS_PLUS] = ACTIONS(8935), + [anon_sym_DOT] = ACTIONS(8933), + [anon_sym_DOT_STAR] = ACTIONS(8935), + [anon_sym_DASH_GT] = ACTIONS(8935), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8933), + [anon_sym_override] = ACTIONS(8933), + [anon_sym_requires] = ACTIONS(8933), + [anon_sym_COLON_RBRACK] = ACTIONS(8935), + }, + [STATE(3647)] = { + [sym_string_literal] = STATE(3630), + [sym_raw_string_literal] = STATE(3630), + [aux_sym_concatenated_string_repeat1] = STATE(3630), + [sym_identifier] = ACTIONS(9401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(8483), + [anon_sym_RPAREN] = ACTIONS(8483), + [anon_sym_LPAREN2] = ACTIONS(8483), + [anon_sym_DASH] = ACTIONS(8485), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_STAR] = ACTIONS(8485), + [anon_sym_SLASH] = ACTIONS(8485), + [anon_sym_PERCENT] = ACTIONS(8485), + [anon_sym_PIPE_PIPE] = ACTIONS(8483), + [anon_sym_AMP_AMP] = ACTIONS(8483), + [anon_sym_PIPE] = ACTIONS(8485), + [anon_sym_CARET] = ACTIONS(8485), + [anon_sym_AMP] = ACTIONS(8485), + [anon_sym_EQ_EQ] = ACTIONS(8483), + [anon_sym_BANG_EQ] = ACTIONS(8483), + [anon_sym_GT] = ACTIONS(8485), + [anon_sym_GT_EQ] = ACTIONS(8483), + [anon_sym_LT_EQ] = ACTIONS(8485), + [anon_sym_LT] = ACTIONS(8485), + [anon_sym_LT_LT] = ACTIONS(8485), + [anon_sym_GT_GT] = ACTIONS(8485), + [anon_sym_LBRACK] = ACTIONS(8483), + [anon_sym_EQ] = ACTIONS(8485), + [anon_sym_QMARK] = ACTIONS(8483), + [anon_sym_STAR_EQ] = ACTIONS(8483), + [anon_sym_SLASH_EQ] = ACTIONS(8483), + [anon_sym_PERCENT_EQ] = ACTIONS(8483), + [anon_sym_PLUS_EQ] = ACTIONS(8483), + [anon_sym_DASH_EQ] = ACTIONS(8483), + [anon_sym_LT_LT_EQ] = ACTIONS(8483), + [anon_sym_GT_GT_EQ] = ACTIONS(8483), + [anon_sym_AMP_EQ] = ACTIONS(8483), + [anon_sym_CARET_EQ] = ACTIONS(8483), + [anon_sym_PIPE_EQ] = ACTIONS(8483), + [anon_sym_and_eq] = ACTIONS(8485), + [anon_sym_or_eq] = ACTIONS(8485), + [anon_sym_xor_eq] = ACTIONS(8485), + [anon_sym_LT_EQ_GT] = ACTIONS(8483), + [anon_sym_or] = ACTIONS(8485), + [anon_sym_and] = ACTIONS(8485), + [anon_sym_bitor] = ACTIONS(8485), + [anon_sym_xor] = ACTIONS(8485), + [anon_sym_bitand] = ACTIONS(8485), + [anon_sym_not_eq] = ACTIONS(8485), + [anon_sym_DASH_DASH] = ACTIONS(8483), + [anon_sym_PLUS_PLUS] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8485), + [anon_sym_DOT_STAR] = ACTIONS(8483), + [anon_sym_DASH_GT] = ACTIONS(8485), + [anon_sym_L_DQUOTE] = ACTIONS(6901), + [anon_sym_u_DQUOTE] = ACTIONS(6901), + [anon_sym_U_DQUOTE] = ACTIONS(6901), + [anon_sym_u8_DQUOTE] = ACTIONS(6901), + [anon_sym_DQUOTE] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6903), + [anon_sym_LR_DQUOTE] = ACTIONS(6903), + [anon_sym_uR_DQUOTE] = ACTIONS(6903), + [anon_sym_UR_DQUOTE] = ACTIONS(6903), + [anon_sym_u8R_DQUOTE] = ACTIONS(6903), + [anon_sym_DASH_GT_STAR] = ACTIONS(8483), + [sym_literal_suffix] = ACTIONS(8485), + }, + [STATE(3648)] = { + [sym_ms_based_modifier] = STATE(10831), + [sym__declarator] = STATE(8768), + [sym__abstract_declarator] = STATE(8941), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(7149), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(4787), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(7149), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8555), + [anon_sym_AMP_AMP] = ACTIONS(8557), + [anon_sym_AMP] = ACTIONS(8559), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(7347), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_EQ] = ACTIONS(7345), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8885), - [anon_sym_override] = ACTIONS(8885), - [anon_sym_requires] = ACTIONS(8885), - [anon_sym_COLON_RBRACK] = ACTIONS(8887), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(7345), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(3649)] = { + [sym_identifier] = ACTIONS(3168), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3166), + [anon_sym_COMMA] = ACTIONS(3166), + [anon_sym_RPAREN] = ACTIONS(3166), + [aux_sym_preproc_if_token2] = ACTIONS(3166), + [aux_sym_preproc_else_token1] = ACTIONS(3166), + [aux_sym_preproc_elif_token1] = ACTIONS(3168), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3166), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3166), + [anon_sym_LPAREN2] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_STAR] = ACTIONS(3168), + [anon_sym_SLASH] = ACTIONS(3168), + [anon_sym_PERCENT] = ACTIONS(3168), + [anon_sym_PIPE_PIPE] = ACTIONS(3166), + [anon_sym_AMP_AMP] = ACTIONS(3166), + [anon_sym_PIPE] = ACTIONS(3168), + [anon_sym_CARET] = ACTIONS(3168), + [anon_sym_AMP] = ACTIONS(3168), + [anon_sym_EQ_EQ] = ACTIONS(3166), + [anon_sym_BANG_EQ] = ACTIONS(3166), + [anon_sym_GT] = ACTIONS(3168), + [anon_sym_GT_EQ] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3168), + [anon_sym_LT] = ACTIONS(3168), + [anon_sym_LT_LT] = ACTIONS(3168), + [anon_sym_GT_GT] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym___attribute__] = ACTIONS(3168), + [anon_sym___attribute] = ACTIONS(3168), + [anon_sym_COLON] = ACTIONS(3168), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_EQ] = ACTIONS(3168), + [anon_sym_QMARK] = ACTIONS(3166), + [anon_sym_STAR_EQ] = ACTIONS(3166), + [anon_sym_SLASH_EQ] = ACTIONS(3166), + [anon_sym_PERCENT_EQ] = ACTIONS(3166), + [anon_sym_PLUS_EQ] = ACTIONS(3166), + [anon_sym_DASH_EQ] = ACTIONS(3166), + [anon_sym_LT_LT_EQ] = ACTIONS(3166), + [anon_sym_GT_GT_EQ] = ACTIONS(3166), + [anon_sym_AMP_EQ] = ACTIONS(3166), + [anon_sym_CARET_EQ] = ACTIONS(3166), + [anon_sym_PIPE_EQ] = ACTIONS(3166), + [anon_sym_and_eq] = ACTIONS(3168), + [anon_sym_or_eq] = ACTIONS(3168), + [anon_sym_xor_eq] = ACTIONS(3168), + [anon_sym_LT_EQ_GT] = ACTIONS(3166), + [anon_sym_or] = ACTIONS(3168), + [anon_sym_and] = ACTIONS(3168), + [anon_sym_bitor] = ACTIONS(3168), + [anon_sym_xor] = ACTIONS(3168), + [anon_sym_bitand] = ACTIONS(3168), + [anon_sym_not_eq] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DOT] = ACTIONS(3168), + [anon_sym_DOT_STAR] = ACTIONS(3166), + [anon_sym_DASH_GT] = ACTIONS(3166), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3168), + [anon_sym_requires] = ACTIONS(3168), + [anon_sym_COLON_RBRACK] = ACTIONS(3166), + }, + [STATE(3650)] = { + [sym_argument_list] = STATE(3886), + [sym_initializer_list] = STATE(3886), + [sym_identifier] = ACTIONS(9403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9405), + [anon_sym_COMMA] = ACTIONS(9405), + [anon_sym_RPAREN] = ACTIONS(9405), + [aux_sym_preproc_if_token2] = ACTIONS(9405), + [aux_sym_preproc_else_token1] = ACTIONS(9405), + [aux_sym_preproc_elif_token1] = ACTIONS(9403), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9405), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9405), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9403), + [anon_sym_PLUS] = ACTIONS(9403), + [anon_sym_STAR] = ACTIONS(9403), + [anon_sym_SLASH] = ACTIONS(9403), + [anon_sym_PERCENT] = ACTIONS(9403), + [anon_sym_PIPE_PIPE] = ACTIONS(9405), + [anon_sym_AMP_AMP] = ACTIONS(9405), + [anon_sym_PIPE] = ACTIONS(9403), + [anon_sym_CARET] = ACTIONS(9403), + [anon_sym_AMP] = ACTIONS(9403), + [anon_sym_EQ_EQ] = ACTIONS(9405), + [anon_sym_BANG_EQ] = ACTIONS(9405), + [anon_sym_GT] = ACTIONS(9403), + [anon_sym_GT_EQ] = ACTIONS(9405), + [anon_sym_LT_EQ] = ACTIONS(9403), + [anon_sym_LT] = ACTIONS(9403), + [anon_sym_LT_LT] = ACTIONS(9403), + [anon_sym_GT_GT] = ACTIONS(9403), + [anon_sym_SEMI] = ACTIONS(9405), + [anon_sym___attribute__] = ACTIONS(9403), + [anon_sym___attribute] = ACTIONS(9403), + [anon_sym_COLON] = ACTIONS(9403), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9405), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(9405), + [anon_sym_LBRACK] = ACTIONS(9405), + [anon_sym_EQ] = ACTIONS(9403), + [anon_sym_QMARK] = ACTIONS(9405), + [anon_sym_STAR_EQ] = ACTIONS(9405), + [anon_sym_SLASH_EQ] = ACTIONS(9405), + [anon_sym_PERCENT_EQ] = ACTIONS(9405), + [anon_sym_PLUS_EQ] = ACTIONS(9405), + [anon_sym_DASH_EQ] = ACTIONS(9405), + [anon_sym_LT_LT_EQ] = ACTIONS(9405), + [anon_sym_GT_GT_EQ] = ACTIONS(9405), + [anon_sym_AMP_EQ] = ACTIONS(9405), + [anon_sym_CARET_EQ] = ACTIONS(9405), + [anon_sym_PIPE_EQ] = ACTIONS(9405), + [anon_sym_and_eq] = ACTIONS(9403), + [anon_sym_or_eq] = ACTIONS(9403), + [anon_sym_xor_eq] = ACTIONS(9403), + [anon_sym_LT_EQ_GT] = ACTIONS(9405), + [anon_sym_or] = ACTIONS(9403), + [anon_sym_and] = ACTIONS(9403), + [anon_sym_bitor] = ACTIONS(9403), + [anon_sym_xor] = ACTIONS(9403), + [anon_sym_bitand] = ACTIONS(9403), + [anon_sym_not_eq] = ACTIONS(9403), + [anon_sym_DASH_DASH] = ACTIONS(9405), + [anon_sym_PLUS_PLUS] = ACTIONS(9405), + [anon_sym_DOT] = ACTIONS(9403), + [anon_sym_DOT_STAR] = ACTIONS(9405), + [anon_sym_DASH_GT] = ACTIONS(9405), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9405), + }, + [STATE(3651)] = { + [sym_identifier] = ACTIONS(9329), + [anon_sym_LPAREN2] = ACTIONS(9331), + [anon_sym_TILDE] = ACTIONS(9331), + [anon_sym_STAR] = ACTIONS(9331), + [anon_sym_PIPE_PIPE] = ACTIONS(9331), + [anon_sym_AMP_AMP] = ACTIONS(9299), + [anon_sym_AMP] = ACTIONS(9329), + [anon_sym___extension__] = ACTIONS(9329), + [anon_sym_virtual] = ACTIONS(9329), + [anon_sym_extern] = ACTIONS(9329), + [anon_sym___attribute__] = ACTIONS(9329), + [anon_sym___attribute] = ACTIONS(9329), + [anon_sym_using] = ACTIONS(9329), + [anon_sym_COLON_COLON] = ACTIONS(9331), + [anon_sym_LBRACK_LBRACK] = ACTIONS(9331), + [anon_sym___declspec] = ACTIONS(9329), + [anon_sym___based] = ACTIONS(9329), + [anon_sym___cdecl] = ACTIONS(9329), + [anon_sym___clrcall] = ACTIONS(9329), + [anon_sym___stdcall] = ACTIONS(9329), + [anon_sym___fastcall] = ACTIONS(9329), + [anon_sym___thiscall] = ACTIONS(9329), + [anon_sym___vectorcall] = ACTIONS(9329), + [anon_sym_signed] = ACTIONS(9329), + [anon_sym_unsigned] = ACTIONS(9329), + [anon_sym_long] = ACTIONS(9329), + [anon_sym_short] = ACTIONS(9329), + [anon_sym_LBRACK] = ACTIONS(9329), + [anon_sym_static] = ACTIONS(9329), + [anon_sym_register] = ACTIONS(9329), + [anon_sym_inline] = ACTIONS(9329), + [anon_sym___inline] = ACTIONS(9329), + [anon_sym___inline__] = ACTIONS(9329), + [anon_sym___forceinline] = ACTIONS(9329), + [anon_sym_thread_local] = ACTIONS(9329), + [anon_sym___thread] = ACTIONS(9329), + [anon_sym_const] = ACTIONS(9329), + [anon_sym_constexpr] = ACTIONS(9329), + [anon_sym_volatile] = ACTIONS(9329), + [anon_sym_restrict] = ACTIONS(9329), + [anon_sym___restrict__] = ACTIONS(9329), + [anon_sym__Atomic] = ACTIONS(9329), + [anon_sym__Noreturn] = ACTIONS(9329), + [anon_sym_noreturn] = ACTIONS(9329), + [anon_sym__Nonnull] = ACTIONS(9329), + [anon_sym_mutable] = ACTIONS(9329), + [anon_sym_constinit] = ACTIONS(9329), + [anon_sym_consteval] = ACTIONS(9329), + [anon_sym_alignas] = ACTIONS(9329), + [anon_sym__Alignas] = ACTIONS(9329), + [sym_primitive_type] = ACTIONS(9329), + [anon_sym_enum] = ACTIONS(9329), + [anon_sym_class] = ACTIONS(9329), + [anon_sym_struct] = ACTIONS(9329), + [anon_sym_union] = ACTIONS(9329), + [anon_sym_or] = ACTIONS(9329), + [anon_sym_and] = ACTIONS(9303), + [anon_sym_typename] = ACTIONS(9329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9329), + [anon_sym_decltype] = ACTIONS(9329), + [anon_sym_explicit] = ACTIONS(9329), + [anon_sym_template] = ACTIONS(9329), + [anon_sym_operator] = ACTIONS(9329), + [anon_sym_friend] = ACTIONS(9329), + [anon_sym_concept] = ACTIONS(9329), + [anon_sym_LBRACK_COLON] = ACTIONS(9331), + }, + [STATE(3652)] = { + [sym_identifier] = ACTIONS(3157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), + [anon_sym_COMMA] = ACTIONS(3155), + [anon_sym_RPAREN] = ACTIONS(3155), + [aux_sym_preproc_if_token2] = ACTIONS(3155), + [aux_sym_preproc_else_token1] = ACTIONS(3155), + [aux_sym_preproc_elif_token1] = ACTIONS(3157), + [aux_sym_preproc_elifdef_token1] = ACTIONS(3155), + [aux_sym_preproc_elifdef_token2] = ACTIONS(3155), + [anon_sym_LPAREN2] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_PERCENT] = ACTIONS(3157), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_PIPE] = ACTIONS(3157), + [anon_sym_CARET] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_EQ_EQ] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3155), + [anon_sym_GT] = ACTIONS(3157), + [anon_sym_GT_EQ] = ACTIONS(3155), + [anon_sym_LT_EQ] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_LT_LT] = ACTIONS(3157), + [anon_sym_GT_GT] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3155), + [anon_sym___attribute__] = ACTIONS(3157), + [anon_sym___attribute] = ACTIONS(3157), + [anon_sym_COLON] = ACTIONS(3157), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3155), + [anon_sym_RBRACE] = ACTIONS(3155), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_QMARK] = ACTIONS(3155), + [anon_sym_STAR_EQ] = ACTIONS(3155), + [anon_sym_SLASH_EQ] = ACTIONS(3155), + [anon_sym_PERCENT_EQ] = ACTIONS(3155), + [anon_sym_PLUS_EQ] = ACTIONS(3155), + [anon_sym_DASH_EQ] = ACTIONS(3155), + [anon_sym_LT_LT_EQ] = ACTIONS(3155), + [anon_sym_GT_GT_EQ] = ACTIONS(3155), + [anon_sym_AMP_EQ] = ACTIONS(3155), + [anon_sym_CARET_EQ] = ACTIONS(3155), + [anon_sym_PIPE_EQ] = ACTIONS(3155), + [anon_sym_and_eq] = ACTIONS(3157), + [anon_sym_or_eq] = ACTIONS(3157), + [anon_sym_xor_eq] = ACTIONS(3157), + [anon_sym_LT_EQ_GT] = ACTIONS(3155), + [anon_sym_or] = ACTIONS(3157), + [anon_sym_and] = ACTIONS(3157), + [anon_sym_bitor] = ACTIONS(3157), + [anon_sym_xor] = ACTIONS(3157), + [anon_sym_bitand] = ACTIONS(3157), + [anon_sym_not_eq] = ACTIONS(3157), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DOT] = ACTIONS(3157), + [anon_sym_DOT_STAR] = ACTIONS(3155), + [anon_sym_DASH_GT] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_requires] = ACTIONS(3157), + [anon_sym_COLON_RBRACK] = ACTIONS(3155), }, [STATE(3653)] = { - [sym_identifier] = ACTIONS(8909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8911), - [anon_sym_COMMA] = ACTIONS(8911), - [anon_sym_RPAREN] = ACTIONS(8911), - [aux_sym_preproc_if_token2] = ACTIONS(8911), - [aux_sym_preproc_else_token1] = ACTIONS(8911), - [aux_sym_preproc_elif_token1] = ACTIONS(8909), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8911), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8911), - [anon_sym_LPAREN2] = ACTIONS(8911), - [anon_sym_DASH] = ACTIONS(8909), - [anon_sym_PLUS] = ACTIONS(8909), - [anon_sym_STAR] = ACTIONS(8909), - [anon_sym_SLASH] = ACTIONS(8909), - [anon_sym_PERCENT] = ACTIONS(8909), - [anon_sym_PIPE_PIPE] = ACTIONS(8911), - [anon_sym_AMP_AMP] = ACTIONS(8911), - [anon_sym_PIPE] = ACTIONS(8909), - [anon_sym_CARET] = ACTIONS(8909), - [anon_sym_AMP] = ACTIONS(8909), - [anon_sym_EQ_EQ] = ACTIONS(8911), - [anon_sym_BANG_EQ] = ACTIONS(8911), - [anon_sym_GT] = ACTIONS(8909), - [anon_sym_GT_EQ] = ACTIONS(8911), - [anon_sym_LT_EQ] = ACTIONS(8909), - [anon_sym_LT] = ACTIONS(8909), - [anon_sym_LT_LT] = ACTIONS(8909), - [anon_sym_GT_GT] = ACTIONS(8909), - [anon_sym_SEMI] = ACTIONS(8911), - [anon_sym___attribute__] = ACTIONS(8909), - [anon_sym___attribute] = ACTIONS(8909), - [anon_sym_COLON] = ACTIONS(8909), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8911), - [anon_sym_RBRACE] = ACTIONS(8911), - [anon_sym_LBRACK] = ACTIONS(8911), - [anon_sym_EQ] = ACTIONS(8909), - [anon_sym_QMARK] = ACTIONS(8911), - [anon_sym_STAR_EQ] = ACTIONS(8911), - [anon_sym_SLASH_EQ] = ACTIONS(8911), - [anon_sym_PERCENT_EQ] = ACTIONS(8911), - [anon_sym_PLUS_EQ] = ACTIONS(8911), - [anon_sym_DASH_EQ] = ACTIONS(8911), - [anon_sym_LT_LT_EQ] = ACTIONS(8911), - [anon_sym_GT_GT_EQ] = ACTIONS(8911), - [anon_sym_AMP_EQ] = ACTIONS(8911), - [anon_sym_CARET_EQ] = ACTIONS(8911), - [anon_sym_PIPE_EQ] = ACTIONS(8911), - [anon_sym_and_eq] = ACTIONS(8909), - [anon_sym_or_eq] = ACTIONS(8909), - [anon_sym_xor_eq] = ACTIONS(8909), - [anon_sym_LT_EQ_GT] = ACTIONS(8911), - [anon_sym_or] = ACTIONS(8909), - [anon_sym_and] = ACTIONS(8909), - [anon_sym_bitor] = ACTIONS(8909), - [anon_sym_xor] = ACTIONS(8909), - [anon_sym_bitand] = ACTIONS(8909), - [anon_sym_not_eq] = ACTIONS(8909), - [anon_sym_DASH_DASH] = ACTIONS(8911), - [anon_sym_PLUS_PLUS] = ACTIONS(8911), - [anon_sym_DOT] = ACTIONS(8909), - [anon_sym_DOT_STAR] = ACTIONS(8911), - [anon_sym_DASH_GT] = ACTIONS(8911), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8909), - [anon_sym_override] = ACTIONS(8909), - [anon_sym_requires] = ACTIONS(8909), - [anon_sym_COLON_RBRACK] = ACTIONS(8911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8763), + [anon_sym_COMMA] = ACTIONS(8763), + [anon_sym_RPAREN] = ACTIONS(8763), + [anon_sym_LPAREN2] = ACTIONS(8763), + [anon_sym_DASH] = ACTIONS(8761), + [anon_sym_PLUS] = ACTIONS(8761), + [anon_sym_STAR] = ACTIONS(8761), + [anon_sym_SLASH] = ACTIONS(8761), + [anon_sym_PERCENT] = ACTIONS(8761), + [anon_sym_PIPE_PIPE] = ACTIONS(8763), + [anon_sym_AMP_AMP] = ACTIONS(8763), + [anon_sym_PIPE] = ACTIONS(8761), + [anon_sym_CARET] = ACTIONS(8761), + [anon_sym_AMP] = ACTIONS(8761), + [anon_sym_EQ_EQ] = ACTIONS(8763), + [anon_sym_BANG_EQ] = ACTIONS(8763), + [anon_sym_GT] = ACTIONS(8761), + [anon_sym_GT_EQ] = ACTIONS(8763), + [anon_sym_LT_EQ] = ACTIONS(8761), + [anon_sym_LT] = ACTIONS(8761), + [anon_sym_LT_LT] = ACTIONS(8761), + [anon_sym_GT_GT] = ACTIONS(8761), + [anon_sym_SEMI] = ACTIONS(8763), + [anon_sym_COLON] = ACTIONS(8761), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8763), + [anon_sym_RBRACE] = ACTIONS(8763), + [anon_sym_LBRACK] = ACTIONS(8763), + [anon_sym_EQ] = ACTIONS(8761), + [anon_sym_QMARK] = ACTIONS(8763), + [anon_sym_STAR_EQ] = ACTIONS(8763), + [anon_sym_SLASH_EQ] = ACTIONS(8763), + [anon_sym_PERCENT_EQ] = ACTIONS(8763), + [anon_sym_PLUS_EQ] = ACTIONS(8763), + [anon_sym_DASH_EQ] = ACTIONS(8763), + [anon_sym_LT_LT_EQ] = ACTIONS(8763), + [anon_sym_GT_GT_EQ] = ACTIONS(8763), + [anon_sym_AMP_EQ] = ACTIONS(8763), + [anon_sym_CARET_EQ] = ACTIONS(8763), + [anon_sym_PIPE_EQ] = ACTIONS(8763), + [anon_sym_and_eq] = ACTIONS(8761), + [anon_sym_or_eq] = ACTIONS(8761), + [anon_sym_xor_eq] = ACTIONS(8761), + [anon_sym_LT_EQ_GT] = ACTIONS(8763), + [anon_sym_or] = ACTIONS(8761), + [anon_sym_and] = ACTIONS(8761), + [anon_sym_bitor] = ACTIONS(8761), + [anon_sym_xor] = ACTIONS(8761), + [anon_sym_bitand] = ACTIONS(8761), + [anon_sym_not_eq] = ACTIONS(8761), + [anon_sym_DASH_DASH] = ACTIONS(8763), + [anon_sym_PLUS_PLUS] = ACTIONS(8763), + [anon_sym_DOT] = ACTIONS(8761), + [anon_sym_DOT_STAR] = ACTIONS(8763), + [anon_sym_DASH_GT] = ACTIONS(8763), + [anon_sym_L_DQUOTE] = ACTIONS(8763), + [anon_sym_u_DQUOTE] = ACTIONS(8763), + [anon_sym_U_DQUOTE] = ACTIONS(8763), + [anon_sym_u8_DQUOTE] = ACTIONS(8763), + [anon_sym_DQUOTE] = ACTIONS(8763), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8763), + [anon_sym_LR_DQUOTE] = ACTIONS(8763), + [anon_sym_uR_DQUOTE] = ACTIONS(8763), + [anon_sym_UR_DQUOTE] = ACTIONS(8763), + [anon_sym_u8R_DQUOTE] = ACTIONS(8763), + [anon_sym_COLON_RBRACK] = ACTIONS(8763), + [sym_literal_suffix] = ACTIONS(8761), }, [STATE(3654)] = { - [sym_identifier] = ACTIONS(6612), - [anon_sym_LPAREN2] = ACTIONS(6614), - [anon_sym_TILDE] = ACTIONS(6614), - [anon_sym_STAR] = ACTIONS(6614), - [anon_sym_PIPE_PIPE] = ACTIONS(6614), - [anon_sym_AMP_AMP] = ACTIONS(6614), - [anon_sym_AMP] = ACTIONS(6612), - [anon_sym___extension__] = ACTIONS(6612), - [anon_sym_virtual] = ACTIONS(6612), - [anon_sym_extern] = ACTIONS(6612), - [anon_sym___attribute__] = ACTIONS(6612), - [anon_sym___attribute] = ACTIONS(6612), - [anon_sym_using] = ACTIONS(6612), - [anon_sym_COLON_COLON] = ACTIONS(6614), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6614), - [anon_sym___declspec] = ACTIONS(6612), - [anon_sym___based] = ACTIONS(6612), - [anon_sym___cdecl] = ACTIONS(6612), - [anon_sym___clrcall] = ACTIONS(6612), - [anon_sym___stdcall] = ACTIONS(6612), - [anon_sym___fastcall] = ACTIONS(6612), - [anon_sym___thiscall] = ACTIONS(6612), - [anon_sym___vectorcall] = ACTIONS(6612), - [anon_sym_signed] = ACTIONS(6612), - [anon_sym_unsigned] = ACTIONS(6612), - [anon_sym_long] = ACTIONS(6612), - [anon_sym_short] = ACTIONS(6612), - [anon_sym_LBRACK] = ACTIONS(6612), - [anon_sym_static] = ACTIONS(6612), - [anon_sym_register] = ACTIONS(6612), - [anon_sym_inline] = ACTIONS(6612), - [anon_sym___inline] = ACTIONS(6612), - [anon_sym___inline__] = ACTIONS(6612), - [anon_sym___forceinline] = ACTIONS(6612), - [anon_sym_thread_local] = ACTIONS(6612), - [anon_sym___thread] = ACTIONS(6612), - [anon_sym_const] = ACTIONS(6612), - [anon_sym_constexpr] = ACTIONS(6612), - [anon_sym_volatile] = ACTIONS(6612), - [anon_sym_restrict] = ACTIONS(6612), - [anon_sym___restrict__] = ACTIONS(6612), - [anon_sym__Atomic] = ACTIONS(6612), - [anon_sym__Noreturn] = ACTIONS(6612), - [anon_sym_noreturn] = ACTIONS(6612), - [anon_sym__Nonnull] = ACTIONS(6612), - [anon_sym_mutable] = ACTIONS(6612), - [anon_sym_constinit] = ACTIONS(6612), - [anon_sym_consteval] = ACTIONS(6612), - [anon_sym_alignas] = ACTIONS(6612), - [anon_sym__Alignas] = ACTIONS(6612), - [sym_primitive_type] = ACTIONS(6612), - [anon_sym_enum] = ACTIONS(6612), - [anon_sym_class] = ACTIONS(6612), - [anon_sym_struct] = ACTIONS(6612), - [anon_sym_union] = ACTIONS(6612), - [anon_sym_or] = ACTIONS(6612), - [anon_sym_and] = ACTIONS(6612), - [anon_sym_typename] = ACTIONS(6612), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6612), - [anon_sym_decltype] = ACTIONS(6612), - [anon_sym_explicit] = ACTIONS(6612), - [anon_sym_template] = ACTIONS(6612), - [anon_sym_operator] = ACTIONS(6612), - [anon_sym_friend] = ACTIONS(6612), - [anon_sym_concept] = ACTIONS(6612), - [anon_sym_LBRACK_COLON] = ACTIONS(6614), + [sym_identifier] = ACTIONS(8987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8989), + [anon_sym_COMMA] = ACTIONS(8989), + [anon_sym_RPAREN] = ACTIONS(8989), + [aux_sym_preproc_if_token2] = ACTIONS(8989), + [aux_sym_preproc_else_token1] = ACTIONS(8989), + [aux_sym_preproc_elif_token1] = ACTIONS(8987), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8989), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8989), + [anon_sym_LPAREN2] = ACTIONS(8989), + [anon_sym_DASH] = ACTIONS(8987), + [anon_sym_PLUS] = ACTIONS(8987), + [anon_sym_STAR] = ACTIONS(8987), + [anon_sym_SLASH] = ACTIONS(8987), + [anon_sym_PERCENT] = ACTIONS(8987), + [anon_sym_PIPE_PIPE] = ACTIONS(8989), + [anon_sym_AMP_AMP] = ACTIONS(8989), + [anon_sym_PIPE] = ACTIONS(8987), + [anon_sym_CARET] = ACTIONS(8987), + [anon_sym_AMP] = ACTIONS(8987), + [anon_sym_EQ_EQ] = ACTIONS(8989), + [anon_sym_BANG_EQ] = ACTIONS(8989), + [anon_sym_GT] = ACTIONS(8987), + [anon_sym_GT_EQ] = ACTIONS(8989), + [anon_sym_LT_EQ] = ACTIONS(8987), + [anon_sym_LT] = ACTIONS(8987), + [anon_sym_LT_LT] = ACTIONS(8987), + [anon_sym_GT_GT] = ACTIONS(8987), + [anon_sym_SEMI] = ACTIONS(8989), + [anon_sym___attribute__] = ACTIONS(8987), + [anon_sym___attribute] = ACTIONS(8987), + [anon_sym_COLON] = ACTIONS(8987), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8989), + [anon_sym_RBRACE] = ACTIONS(8989), + [anon_sym_LBRACK] = ACTIONS(8989), + [anon_sym_EQ] = ACTIONS(8987), + [anon_sym_QMARK] = ACTIONS(8989), + [anon_sym_STAR_EQ] = ACTIONS(8989), + [anon_sym_SLASH_EQ] = ACTIONS(8989), + [anon_sym_PERCENT_EQ] = ACTIONS(8989), + [anon_sym_PLUS_EQ] = ACTIONS(8989), + [anon_sym_DASH_EQ] = ACTIONS(8989), + [anon_sym_LT_LT_EQ] = ACTIONS(8989), + [anon_sym_GT_GT_EQ] = ACTIONS(8989), + [anon_sym_AMP_EQ] = ACTIONS(8989), + [anon_sym_CARET_EQ] = ACTIONS(8989), + [anon_sym_PIPE_EQ] = ACTIONS(8989), + [anon_sym_and_eq] = ACTIONS(8987), + [anon_sym_or_eq] = ACTIONS(8987), + [anon_sym_xor_eq] = ACTIONS(8987), + [anon_sym_LT_EQ_GT] = ACTIONS(8989), + [anon_sym_or] = ACTIONS(8987), + [anon_sym_and] = ACTIONS(8987), + [anon_sym_bitor] = ACTIONS(8987), + [anon_sym_xor] = ACTIONS(8987), + [anon_sym_bitand] = ACTIONS(8987), + [anon_sym_not_eq] = ACTIONS(8987), + [anon_sym_DASH_DASH] = ACTIONS(8989), + [anon_sym_PLUS_PLUS] = ACTIONS(8989), + [anon_sym_DOT] = ACTIONS(8987), + [anon_sym_DOT_STAR] = ACTIONS(8989), + [anon_sym_DASH_GT] = ACTIONS(8989), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8987), + [anon_sym_override] = ACTIONS(8987), + [anon_sym_requires] = ACTIONS(8987), + [anon_sym_COLON_RBRACK] = ACTIONS(8989), }, [STATE(3655)] = { - [sym_identifier] = ACTIONS(8424), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8422), - [anon_sym_COMMA] = ACTIONS(8422), - [anon_sym_RPAREN] = ACTIONS(8422), - [aux_sym_preproc_if_token2] = ACTIONS(8422), - [aux_sym_preproc_else_token1] = ACTIONS(8422), - [aux_sym_preproc_elif_token1] = ACTIONS(8424), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8422), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8422), - [anon_sym_LPAREN2] = ACTIONS(8422), - [anon_sym_DASH] = ACTIONS(8424), - [anon_sym_PLUS] = ACTIONS(8424), - [anon_sym_STAR] = ACTIONS(8424), - [anon_sym_SLASH] = ACTIONS(8424), - [anon_sym_PERCENT] = ACTIONS(8424), - [anon_sym_PIPE_PIPE] = ACTIONS(8422), - [anon_sym_AMP_AMP] = ACTIONS(8422), - [anon_sym_PIPE] = ACTIONS(8424), - [anon_sym_CARET] = ACTIONS(8424), - [anon_sym_AMP] = ACTIONS(8424), - [anon_sym_EQ_EQ] = ACTIONS(8422), - [anon_sym_BANG_EQ] = ACTIONS(8422), - [anon_sym_GT] = ACTIONS(8424), - [anon_sym_GT_EQ] = ACTIONS(8422), - [anon_sym_LT_EQ] = ACTIONS(8424), - [anon_sym_LT] = ACTIONS(8424), - [anon_sym_LT_LT] = ACTIONS(8424), - [anon_sym_GT_GT] = ACTIONS(8424), - [anon_sym_SEMI] = ACTIONS(8422), - [anon_sym___attribute__] = ACTIONS(8424), - [anon_sym___attribute] = ACTIONS(8424), - [anon_sym_COLON] = ACTIONS(8424), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8422), - [anon_sym_RBRACE] = ACTIONS(8422), - [anon_sym_LBRACK] = ACTIONS(8422), - [anon_sym_EQ] = ACTIONS(8424), - [anon_sym_QMARK] = ACTIONS(8422), - [anon_sym_STAR_EQ] = ACTIONS(8422), - [anon_sym_SLASH_EQ] = ACTIONS(8422), - [anon_sym_PERCENT_EQ] = ACTIONS(8422), - [anon_sym_PLUS_EQ] = ACTIONS(8422), - [anon_sym_DASH_EQ] = ACTIONS(8422), - [anon_sym_LT_LT_EQ] = ACTIONS(8422), - [anon_sym_GT_GT_EQ] = ACTIONS(8422), - [anon_sym_AMP_EQ] = ACTIONS(8422), - [anon_sym_CARET_EQ] = ACTIONS(8422), - [anon_sym_PIPE_EQ] = ACTIONS(8422), - [anon_sym_and_eq] = ACTIONS(8424), - [anon_sym_or_eq] = ACTIONS(8424), - [anon_sym_xor_eq] = ACTIONS(8424), - [anon_sym_LT_EQ_GT] = ACTIONS(8422), - [anon_sym_or] = ACTIONS(8424), - [anon_sym_and] = ACTIONS(8424), - [anon_sym_bitor] = ACTIONS(8424), - [anon_sym_xor] = ACTIONS(8424), - [anon_sym_bitand] = ACTIONS(8424), - [anon_sym_not_eq] = ACTIONS(8424), - [anon_sym_DASH_DASH] = ACTIONS(8422), - [anon_sym_PLUS_PLUS] = ACTIONS(8422), - [anon_sym_DOT] = ACTIONS(8424), - [anon_sym_DOT_STAR] = ACTIONS(8422), - [anon_sym_DASH_GT] = ACTIONS(8422), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8424), - [anon_sym_override] = ACTIONS(8424), - [anon_sym_requires] = ACTIONS(8424), - [anon_sym_COLON_RBRACK] = ACTIONS(8422), + [sym_identifier] = ACTIONS(8915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8917), + [anon_sym_COMMA] = ACTIONS(8917), + [anon_sym_RPAREN] = ACTIONS(8917), + [aux_sym_preproc_if_token2] = ACTIONS(8917), + [aux_sym_preproc_else_token1] = ACTIONS(8917), + [aux_sym_preproc_elif_token1] = ACTIONS(8915), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8917), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8917), + [anon_sym_LPAREN2] = ACTIONS(8917), + [anon_sym_DASH] = ACTIONS(8915), + [anon_sym_PLUS] = ACTIONS(8915), + [anon_sym_STAR] = ACTIONS(8915), + [anon_sym_SLASH] = ACTIONS(8915), + [anon_sym_PERCENT] = ACTIONS(8915), + [anon_sym_PIPE_PIPE] = ACTIONS(8917), + [anon_sym_AMP_AMP] = ACTIONS(8917), + [anon_sym_PIPE] = ACTIONS(8915), + [anon_sym_CARET] = ACTIONS(8915), + [anon_sym_AMP] = ACTIONS(8915), + [anon_sym_EQ_EQ] = ACTIONS(8917), + [anon_sym_BANG_EQ] = ACTIONS(8917), + [anon_sym_GT] = ACTIONS(8915), + [anon_sym_GT_EQ] = ACTIONS(8917), + [anon_sym_LT_EQ] = ACTIONS(8915), + [anon_sym_LT] = ACTIONS(8915), + [anon_sym_LT_LT] = ACTIONS(8915), + [anon_sym_GT_GT] = ACTIONS(8915), + [anon_sym_SEMI] = ACTIONS(8917), + [anon_sym___attribute__] = ACTIONS(8915), + [anon_sym___attribute] = ACTIONS(8915), + [anon_sym_COLON] = ACTIONS(8915), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8917), + [anon_sym_RBRACE] = ACTIONS(8917), + [anon_sym_LBRACK] = ACTIONS(8917), + [anon_sym_EQ] = ACTIONS(8915), + [anon_sym_QMARK] = ACTIONS(8917), + [anon_sym_STAR_EQ] = ACTIONS(8917), + [anon_sym_SLASH_EQ] = ACTIONS(8917), + [anon_sym_PERCENT_EQ] = ACTIONS(8917), + [anon_sym_PLUS_EQ] = ACTIONS(8917), + [anon_sym_DASH_EQ] = ACTIONS(8917), + [anon_sym_LT_LT_EQ] = ACTIONS(8917), + [anon_sym_GT_GT_EQ] = ACTIONS(8917), + [anon_sym_AMP_EQ] = ACTIONS(8917), + [anon_sym_CARET_EQ] = ACTIONS(8917), + [anon_sym_PIPE_EQ] = ACTIONS(8917), + [anon_sym_and_eq] = ACTIONS(8915), + [anon_sym_or_eq] = ACTIONS(8915), + [anon_sym_xor_eq] = ACTIONS(8915), + [anon_sym_LT_EQ_GT] = ACTIONS(8917), + [anon_sym_or] = ACTIONS(8915), + [anon_sym_and] = ACTIONS(8915), + [anon_sym_bitor] = ACTIONS(8915), + [anon_sym_xor] = ACTIONS(8915), + [anon_sym_bitand] = ACTIONS(8915), + [anon_sym_not_eq] = ACTIONS(8915), + [anon_sym_DASH_DASH] = ACTIONS(8917), + [anon_sym_PLUS_PLUS] = ACTIONS(8917), + [anon_sym_DOT] = ACTIONS(8915), + [anon_sym_DOT_STAR] = ACTIONS(8917), + [anon_sym_DASH_GT] = ACTIONS(8917), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8915), + [anon_sym_override] = ACTIONS(8915), + [anon_sym_requires] = ACTIONS(8915), + [anon_sym_COLON_RBRACK] = ACTIONS(8917), }, [STATE(3656)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym__function_exception_specification] = STATE(4047), - [sym__function_attributes_end] = STATE(5950), - [sym__function_postfix] = STATE(5460), - [sym_trailing_return_type] = STATE(6121), - [sym_noexcept] = STATE(4047), - [sym_throw_specifier] = STATE(4047), - [sym_requires_clause] = STATE(5460), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(7789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [aux_sym_preproc_if_token2] = ACTIONS(7791), - [aux_sym_preproc_else_token1] = ACTIONS(7791), - [aux_sym_preproc_elif_token1] = ACTIONS(7789), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7791), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7791), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7791), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7791), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7791), - [anon_sym_GT_GT] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7178), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7789), - [anon_sym_and] = ACTIONS(7789), - [anon_sym_bitor] = ACTIONS(7789), - [anon_sym_xor] = ACTIONS(7789), - [anon_sym_bitand] = ACTIONS(7789), - [anon_sym_not_eq] = ACTIONS(7789), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(9202), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7283), - [anon_sym_override] = ACTIONS(7283), - [anon_sym_noexcept] = ACTIONS(7276), - [anon_sym_throw] = ACTIONS(7278), - [anon_sym_requires] = ACTIONS(7285), + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON] = ACTIONS(5704), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), }, [STATE(3657)] = { - [sym_identifier] = ACTIONS(9393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9395), - [anon_sym_COMMA] = ACTIONS(9395), - [anon_sym_RPAREN] = ACTIONS(9395), - [aux_sym_preproc_if_token2] = ACTIONS(9395), - [aux_sym_preproc_else_token1] = ACTIONS(9395), - [aux_sym_preproc_elif_token1] = ACTIONS(9393), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9395), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9395), - [anon_sym_LPAREN2] = ACTIONS(9395), - [anon_sym_DASH] = ACTIONS(9393), - [anon_sym_PLUS] = ACTIONS(9393), - [anon_sym_STAR] = ACTIONS(9393), - [anon_sym_SLASH] = ACTIONS(9393), - [anon_sym_PERCENT] = ACTIONS(9393), - [anon_sym_PIPE_PIPE] = ACTIONS(9397), - [anon_sym_AMP_AMP] = ACTIONS(9385), - [anon_sym_PIPE] = ACTIONS(9393), - [anon_sym_CARET] = ACTIONS(9393), - [anon_sym_AMP] = ACTIONS(9393), - [anon_sym_EQ_EQ] = ACTIONS(9395), - [anon_sym_BANG_EQ] = ACTIONS(9395), - [anon_sym_GT] = ACTIONS(9393), - [anon_sym_GT_EQ] = ACTIONS(9395), - [anon_sym_LT_EQ] = ACTIONS(9393), - [anon_sym_LT] = ACTIONS(9393), - [anon_sym_LT_LT] = ACTIONS(9393), - [anon_sym_GT_GT] = ACTIONS(9393), - [anon_sym_SEMI] = ACTIONS(9395), - [anon_sym___attribute__] = ACTIONS(9393), - [anon_sym___attribute] = ACTIONS(9393), - [anon_sym_COLON] = ACTIONS(9393), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9395), - [anon_sym_RBRACE] = ACTIONS(9395), - [anon_sym_LBRACK] = ACTIONS(9395), - [anon_sym_EQ] = ACTIONS(9393), - [anon_sym_QMARK] = ACTIONS(9395), - [anon_sym_STAR_EQ] = ACTIONS(9395), - [anon_sym_SLASH_EQ] = ACTIONS(9395), - [anon_sym_PERCENT_EQ] = ACTIONS(9395), - [anon_sym_PLUS_EQ] = ACTIONS(9395), - [anon_sym_DASH_EQ] = ACTIONS(9395), - [anon_sym_LT_LT_EQ] = ACTIONS(9395), - [anon_sym_GT_GT_EQ] = ACTIONS(9395), - [anon_sym_AMP_EQ] = ACTIONS(9395), - [anon_sym_CARET_EQ] = ACTIONS(9395), - [anon_sym_PIPE_EQ] = ACTIONS(9395), - [anon_sym_and_eq] = ACTIONS(9393), - [anon_sym_or_eq] = ACTIONS(9393), - [anon_sym_xor_eq] = ACTIONS(9393), - [anon_sym_LT_EQ_GT] = ACTIONS(9395), - [anon_sym_or] = ACTIONS(9399), - [anon_sym_and] = ACTIONS(9387), - [anon_sym_bitor] = ACTIONS(9393), - [anon_sym_xor] = ACTIONS(9393), - [anon_sym_bitand] = ACTIONS(9393), - [anon_sym_not_eq] = ACTIONS(9393), - [anon_sym_DASH_DASH] = ACTIONS(9395), - [anon_sym_PLUS_PLUS] = ACTIONS(9395), - [anon_sym_DOT] = ACTIONS(9393), - [anon_sym_DOT_STAR] = ACTIONS(9395), - [anon_sym_DASH_GT] = ACTIONS(9395), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9393), - [anon_sym_override] = ACTIONS(9393), - [anon_sym_requires] = ACTIONS(9393), - [anon_sym_COLON_RBRACK] = ACTIONS(9395), + [sym_string_literal] = STATE(3622), + [sym_template_argument_list] = STATE(5153), + [sym_raw_string_literal] = STATE(3622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(6949), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5619), + [anon_sym_L_DQUOTE] = ACTIONS(6901), + [anon_sym_u_DQUOTE] = ACTIONS(6901), + [anon_sym_U_DQUOTE] = ACTIONS(6901), + [anon_sym_u8_DQUOTE] = ACTIONS(6901), + [anon_sym_DQUOTE] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6903), + [anon_sym_LR_DQUOTE] = ACTIONS(6903), + [anon_sym_uR_DQUOTE] = ACTIONS(6903), + [anon_sym_UR_DQUOTE] = ACTIONS(6903), + [anon_sym_u8R_DQUOTE] = ACTIONS(6903), + [anon_sym_DASH_GT_STAR] = ACTIONS(5611), }, [STATE(3658)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym__function_exception_specification] = STATE(4049), - [sym__function_attributes_end] = STATE(5951), - [sym__function_postfix] = STATE(5532), - [sym_trailing_return_type] = STATE(6123), - [sym_noexcept] = STATE(4049), - [sym_throw_specifier] = STATE(4049), - [sym_requires_clause] = STATE(5532), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [sym_identifier] = ACTIONS(7968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7966), - [anon_sym_COMMA] = ACTIONS(7966), - [aux_sym_preproc_if_token2] = ACTIONS(7966), - [aux_sym_preproc_else_token1] = ACTIONS(7966), - [aux_sym_preproc_elif_token1] = ACTIONS(7968), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7966), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7966), - [anon_sym_LPAREN2] = ACTIONS(7966), - [anon_sym_DASH] = ACTIONS(7968), - [anon_sym_PLUS] = ACTIONS(7968), - [anon_sym_STAR] = ACTIONS(7966), - [anon_sym_SLASH] = ACTIONS(7968), - [anon_sym_PERCENT] = ACTIONS(7966), - [anon_sym_PIPE_PIPE] = ACTIONS(7966), - [anon_sym_AMP_AMP] = ACTIONS(7966), - [anon_sym_PIPE] = ACTIONS(7968), - [anon_sym_CARET] = ACTIONS(7966), - [anon_sym_AMP] = ACTIONS(7968), - [anon_sym_EQ_EQ] = ACTIONS(7966), - [anon_sym_BANG_EQ] = ACTIONS(7966), - [anon_sym_GT] = ACTIONS(7968), - [anon_sym_GT_EQ] = ACTIONS(7966), - [anon_sym_LT_EQ] = ACTIONS(7968), - [anon_sym_LT] = ACTIONS(7968), - [anon_sym_LT_LT] = ACTIONS(7966), - [anon_sym_GT_GT] = ACTIONS(7966), - [anon_sym___attribute__] = ACTIONS(7178), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_LBRACK] = ACTIONS(7968), - [anon_sym_QMARK] = ACTIONS(7966), - [anon_sym_LT_EQ_GT] = ACTIONS(7966), - [anon_sym_or] = ACTIONS(7968), - [anon_sym_and] = ACTIONS(7968), - [anon_sym_bitor] = ACTIONS(7968), - [anon_sym_xor] = ACTIONS(7968), - [anon_sym_bitand] = ACTIONS(7968), - [anon_sym_not_eq] = ACTIONS(7968), - [anon_sym_DASH_DASH] = ACTIONS(7966), - [anon_sym_PLUS_PLUS] = ACTIONS(7966), - [anon_sym_asm] = ACTIONS(6497), - [anon_sym___asm__] = ACTIONS(6497), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7968), - [anon_sym_DOT_STAR] = ACTIONS(7966), - [anon_sym_DASH_GT] = ACTIONS(9352), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7283), - [anon_sym_override] = ACTIONS(7283), - [anon_sym_noexcept] = ACTIONS(7276), - [anon_sym_throw] = ACTIONS(7278), - [anon_sym_requires] = ACTIONS(7285), + [sym_identifier] = ACTIONS(7972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [aux_sym_preproc_if_token2] = ACTIONS(7970), + [aux_sym_preproc_else_token1] = ACTIONS(7970), + [aux_sym_preproc_elif_token1] = ACTIONS(7972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7972), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7972), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7972), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7972), + [anon_sym_GT_GT] = ACTIONS(7972), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(7972), + [anon_sym___attribute] = ACTIONS(7972), + [anon_sym_COLON] = ACTIONS(7972), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7970), + [anon_sym_RBRACE] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(7970), + [anon_sym_EQ] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_STAR_EQ] = ACTIONS(7970), + [anon_sym_SLASH_EQ] = ACTIONS(7970), + [anon_sym_PERCENT_EQ] = ACTIONS(7970), + [anon_sym_PLUS_EQ] = ACTIONS(7970), + [anon_sym_DASH_EQ] = ACTIONS(7970), + [anon_sym_LT_LT_EQ] = ACTIONS(7970), + [anon_sym_GT_GT_EQ] = ACTIONS(7970), + [anon_sym_AMP_EQ] = ACTIONS(7970), + [anon_sym_CARET_EQ] = ACTIONS(7970), + [anon_sym_PIPE_EQ] = ACTIONS(7970), + [anon_sym_and_eq] = ACTIONS(7972), + [anon_sym_or_eq] = ACTIONS(7972), + [anon_sym_xor_eq] = ACTIONS(7972), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7972), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7972), + [anon_sym_not_eq] = ACTIONS(7972), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(7970), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7972), + [anon_sym_override] = ACTIONS(7972), + [anon_sym_requires] = ACTIONS(7972), + [anon_sym_COLON_RBRACK] = ACTIONS(7970), }, [STATE(3659)] = { - [sym_type_qualifier] = STATE(3659), - [sym_alignas_qualifier] = STATE(3877), - [aux_sym__type_definition_type_repeat1] = STATE(3659), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6891), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6891), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6891), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6891), - [anon_sym_GT_GT] = ACTIONS(6891), - [anon_sym___extension__] = ACTIONS(9401), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACE] = ACTIONS(6891), - [anon_sym_signed] = ACTIONS(6889), - [anon_sym_unsigned] = ACTIONS(6889), - [anon_sym_long] = ACTIONS(6889), - [anon_sym_short] = ACTIONS(6889), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_RBRACK] = ACTIONS(6891), - [anon_sym_const] = ACTIONS(9401), - [anon_sym_constexpr] = ACTIONS(9401), - [anon_sym_volatile] = ACTIONS(9401), - [anon_sym_restrict] = ACTIONS(9401), - [anon_sym___restrict__] = ACTIONS(9401), - [anon_sym__Atomic] = ACTIONS(9401), - [anon_sym__Noreturn] = ACTIONS(9401), - [anon_sym_noreturn] = ACTIONS(9401), - [anon_sym__Nonnull] = ACTIONS(9401), - [anon_sym_mutable] = ACTIONS(9401), - [anon_sym_constinit] = ACTIONS(9401), - [anon_sym_consteval] = ACTIONS(9401), - [anon_sym_alignas] = ACTIONS(9404), - [anon_sym__Alignas] = ACTIONS(9404), - [sym_primitive_type] = ACTIONS(6889), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_requires] = ACTIONS(6889), + [sym_identifier] = ACTIONS(5587), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5589), + [anon_sym_COMMA] = ACTIONS(5589), + [anon_sym_RPAREN] = ACTIONS(5589), + [anon_sym_LPAREN2] = ACTIONS(5589), + [anon_sym_TILDE] = ACTIONS(5589), + [anon_sym_STAR] = ACTIONS(5589), + [anon_sym_AMP_AMP] = ACTIONS(5589), + [anon_sym_AMP] = ACTIONS(5587), + [anon_sym_SEMI] = ACTIONS(5589), + [anon_sym___extension__] = ACTIONS(5587), + [anon_sym_virtual] = ACTIONS(5587), + [anon_sym_extern] = ACTIONS(5587), + [anon_sym___attribute__] = ACTIONS(5587), + [anon_sym___attribute] = ACTIONS(5587), + [anon_sym_COLON] = ACTIONS(5587), + [anon_sym_COLON_COLON] = ACTIONS(5589), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5589), + [anon_sym___declspec] = ACTIONS(5587), + [anon_sym___based] = ACTIONS(5587), + [anon_sym___cdecl] = ACTIONS(5587), + [anon_sym___clrcall] = ACTIONS(5587), + [anon_sym___stdcall] = ACTIONS(5587), + [anon_sym___fastcall] = ACTIONS(5587), + [anon_sym___thiscall] = ACTIONS(5587), + [anon_sym___vectorcall] = ACTIONS(5587), + [anon_sym_LBRACE] = ACTIONS(5589), + [anon_sym_LBRACK] = ACTIONS(5587), + [anon_sym_static] = ACTIONS(5587), + [anon_sym_EQ] = ACTIONS(5589), + [anon_sym_register] = ACTIONS(5587), + [anon_sym_inline] = ACTIONS(5587), + [anon_sym___inline] = ACTIONS(5587), + [anon_sym___inline__] = ACTIONS(5587), + [anon_sym___forceinline] = ACTIONS(5587), + [anon_sym_thread_local] = ACTIONS(5587), + [anon_sym___thread] = ACTIONS(5587), + [anon_sym_const] = ACTIONS(5587), + [anon_sym_constexpr] = ACTIONS(5587), + [anon_sym_volatile] = ACTIONS(5587), + [anon_sym_restrict] = ACTIONS(5587), + [anon_sym___restrict__] = ACTIONS(5587), + [anon_sym__Atomic] = ACTIONS(5587), + [anon_sym__Noreturn] = ACTIONS(5587), + [anon_sym_noreturn] = ACTIONS(5587), + [anon_sym__Nonnull] = ACTIONS(5587), + [anon_sym_mutable] = ACTIONS(5587), + [anon_sym_constinit] = ACTIONS(5587), + [anon_sym_consteval] = ACTIONS(5587), + [anon_sym_alignas] = ACTIONS(5587), + [anon_sym__Alignas] = ACTIONS(5587), + [anon_sym_DASH_GT] = ACTIONS(5589), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(5587), + [anon_sym_final] = ACTIONS(5587), + [anon_sym_override] = ACTIONS(5587), + [anon_sym_explicit] = ACTIONS(5587), + [anon_sym_private] = ACTIONS(5587), + [anon_sym_template] = ACTIONS(5587), + [anon_sym_GT2] = ACTIONS(5589), + [anon_sym_operator] = ACTIONS(5587), + [anon_sym_public] = ACTIONS(5587), + [anon_sym_protected] = ACTIONS(5587), + [anon_sym_noexcept] = ACTIONS(5587), + [anon_sym_throw] = ACTIONS(5587), + [anon_sym_requires] = ACTIONS(5587), + [anon_sym_LBRACK_COLON] = ACTIONS(5589), }, [STATE(3660)] = { - [sym_identifier] = ACTIONS(6624), - [anon_sym_LPAREN2] = ACTIONS(6626), - [anon_sym_TILDE] = ACTIONS(6626), - [anon_sym_STAR] = ACTIONS(6626), - [anon_sym_PIPE_PIPE] = ACTIONS(6626), - [anon_sym_AMP_AMP] = ACTIONS(6626), - [anon_sym_AMP] = ACTIONS(6624), - [anon_sym___extension__] = ACTIONS(6624), - [anon_sym_virtual] = ACTIONS(6624), - [anon_sym_extern] = ACTIONS(6624), - [anon_sym___attribute__] = ACTIONS(6624), - [anon_sym___attribute] = ACTIONS(6624), - [anon_sym_using] = ACTIONS(6624), - [anon_sym_COLON_COLON] = ACTIONS(6626), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6626), - [anon_sym___declspec] = ACTIONS(6624), - [anon_sym___based] = ACTIONS(6624), - [anon_sym___cdecl] = ACTIONS(6624), - [anon_sym___clrcall] = ACTIONS(6624), - [anon_sym___stdcall] = ACTIONS(6624), - [anon_sym___fastcall] = ACTIONS(6624), - [anon_sym___thiscall] = ACTIONS(6624), - [anon_sym___vectorcall] = ACTIONS(6624), - [anon_sym_signed] = ACTIONS(6624), - [anon_sym_unsigned] = ACTIONS(6624), - [anon_sym_long] = ACTIONS(6624), - [anon_sym_short] = ACTIONS(6624), - [anon_sym_LBRACK] = ACTIONS(6624), - [anon_sym_static] = ACTIONS(6624), - [anon_sym_register] = ACTIONS(6624), - [anon_sym_inline] = ACTIONS(6624), - [anon_sym___inline] = ACTIONS(6624), - [anon_sym___inline__] = ACTIONS(6624), - [anon_sym___forceinline] = ACTIONS(6624), - [anon_sym_thread_local] = ACTIONS(6624), - [anon_sym___thread] = ACTIONS(6624), - [anon_sym_const] = ACTIONS(6624), - [anon_sym_constexpr] = ACTIONS(6624), - [anon_sym_volatile] = ACTIONS(6624), - [anon_sym_restrict] = ACTIONS(6624), - [anon_sym___restrict__] = ACTIONS(6624), - [anon_sym__Atomic] = ACTIONS(6624), - [anon_sym__Noreturn] = ACTIONS(6624), - [anon_sym_noreturn] = ACTIONS(6624), - [anon_sym__Nonnull] = ACTIONS(6624), - [anon_sym_mutable] = ACTIONS(6624), - [anon_sym_constinit] = ACTIONS(6624), - [anon_sym_consteval] = ACTIONS(6624), - [anon_sym_alignas] = ACTIONS(6624), - [anon_sym__Alignas] = ACTIONS(6624), - [sym_primitive_type] = ACTIONS(6624), - [anon_sym_enum] = ACTIONS(6624), - [anon_sym_class] = ACTIONS(6624), - [anon_sym_struct] = ACTIONS(6624), - [anon_sym_union] = ACTIONS(6624), - [anon_sym_or] = ACTIONS(6624), - [anon_sym_and] = ACTIONS(6624), - [anon_sym_typename] = ACTIONS(6624), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6624), - [anon_sym_decltype] = ACTIONS(6624), - [anon_sym_explicit] = ACTIONS(6624), - [anon_sym_template] = ACTIONS(6624), - [anon_sym_operator] = ACTIONS(6624), - [anon_sym_friend] = ACTIONS(6624), - [anon_sym_concept] = ACTIONS(6624), - [anon_sym_LBRACK_COLON] = ACTIONS(6626), + [sym_template_argument_list] = STATE(3708), + [sym_identifier] = ACTIONS(6568), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6561), + [anon_sym_COMMA] = ACTIONS(6561), + [anon_sym_RPAREN] = ACTIONS(6561), + [aux_sym_preproc_if_token2] = ACTIONS(6561), + [aux_sym_preproc_else_token1] = ACTIONS(6561), + [aux_sym_preproc_elif_token1] = ACTIONS(6568), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6561), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6561), + [anon_sym_LPAREN2] = ACTIONS(6561), + [anon_sym_DASH] = ACTIONS(6568), + [anon_sym_PLUS] = ACTIONS(6568), + [anon_sym_STAR] = ACTIONS(6568), + [anon_sym_SLASH] = ACTIONS(6568), + [anon_sym_PERCENT] = ACTIONS(6568), + [anon_sym_PIPE_PIPE] = ACTIONS(6561), + [anon_sym_AMP_AMP] = ACTIONS(6561), + [anon_sym_PIPE] = ACTIONS(6568), + [anon_sym_CARET] = ACTIONS(6568), + [anon_sym_AMP] = ACTIONS(6568), + [anon_sym_EQ_EQ] = ACTIONS(6561), + [anon_sym_BANG_EQ] = ACTIONS(6561), + [anon_sym_GT] = ACTIONS(6568), + [anon_sym_GT_EQ] = ACTIONS(6561), + [anon_sym_LT_EQ] = ACTIONS(6568), + [anon_sym_LT] = ACTIONS(9044), + [anon_sym_LT_LT] = ACTIONS(6568), + [anon_sym_GT_GT] = ACTIONS(6568), + [anon_sym_SEMI] = ACTIONS(6561), + [anon_sym___attribute__] = ACTIONS(6568), + [anon_sym___attribute] = ACTIONS(6568), + [anon_sym_COLON] = ACTIONS(6568), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6561), + [anon_sym_LBRACE] = ACTIONS(6566), + [anon_sym_RBRACE] = ACTIONS(6561), + [anon_sym_LBRACK] = ACTIONS(6561), + [anon_sym_EQ] = ACTIONS(6568), + [anon_sym_QMARK] = ACTIONS(6561), + [anon_sym_STAR_EQ] = ACTIONS(6561), + [anon_sym_SLASH_EQ] = ACTIONS(6561), + [anon_sym_PERCENT_EQ] = ACTIONS(6561), + [anon_sym_PLUS_EQ] = ACTIONS(6561), + [anon_sym_DASH_EQ] = ACTIONS(6561), + [anon_sym_LT_LT_EQ] = ACTIONS(6561), + [anon_sym_GT_GT_EQ] = ACTIONS(6561), + [anon_sym_AMP_EQ] = ACTIONS(6561), + [anon_sym_CARET_EQ] = ACTIONS(6561), + [anon_sym_PIPE_EQ] = ACTIONS(6561), + [anon_sym_and_eq] = ACTIONS(6568), + [anon_sym_or_eq] = ACTIONS(6568), + [anon_sym_xor_eq] = ACTIONS(6568), + [anon_sym_LT_EQ_GT] = ACTIONS(6561), + [anon_sym_or] = ACTIONS(6568), + [anon_sym_and] = ACTIONS(6568), + [anon_sym_bitor] = ACTIONS(6568), + [anon_sym_xor] = ACTIONS(6568), + [anon_sym_bitand] = ACTIONS(6568), + [anon_sym_not_eq] = ACTIONS(6568), + [anon_sym_DASH_DASH] = ACTIONS(6561), + [anon_sym_PLUS_PLUS] = ACTIONS(6561), + [anon_sym_DOT] = ACTIONS(6568), + [anon_sym_DOT_STAR] = ACTIONS(6561), + [anon_sym_DASH_GT] = ACTIONS(6561), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6561), }, [STATE(3661)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON] = ACTIONS(5706), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [sym_decltype_auto] = STATE(3226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym___attribute__] = ACTIONS(7248), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9407), + [anon_sym_decltype] = ACTIONS(6868), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), }, [STATE(3662)] = { - [sym_identifier] = ACTIONS(8901), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8903), - [anon_sym_COMMA] = ACTIONS(8903), - [anon_sym_RPAREN] = ACTIONS(8903), - [aux_sym_preproc_if_token2] = ACTIONS(8903), - [aux_sym_preproc_else_token1] = ACTIONS(8903), - [aux_sym_preproc_elif_token1] = ACTIONS(8901), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8903), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8903), - [anon_sym_LPAREN2] = ACTIONS(8903), - [anon_sym_DASH] = ACTIONS(8901), - [anon_sym_PLUS] = ACTIONS(8901), - [anon_sym_STAR] = ACTIONS(8901), - [anon_sym_SLASH] = ACTIONS(8901), - [anon_sym_PERCENT] = ACTIONS(8901), - [anon_sym_PIPE_PIPE] = ACTIONS(8903), - [anon_sym_AMP_AMP] = ACTIONS(8903), - [anon_sym_PIPE] = ACTIONS(8901), - [anon_sym_CARET] = ACTIONS(8901), - [anon_sym_AMP] = ACTIONS(8901), - [anon_sym_EQ_EQ] = ACTIONS(8903), - [anon_sym_BANG_EQ] = ACTIONS(8903), - [anon_sym_GT] = ACTIONS(8901), - [anon_sym_GT_EQ] = ACTIONS(8903), - [anon_sym_LT_EQ] = ACTIONS(8901), - [anon_sym_LT] = ACTIONS(8901), - [anon_sym_LT_LT] = ACTIONS(8901), - [anon_sym_GT_GT] = ACTIONS(8901), - [anon_sym_SEMI] = ACTIONS(8903), - [anon_sym___attribute__] = ACTIONS(8901), - [anon_sym___attribute] = ACTIONS(8901), - [anon_sym_COLON] = ACTIONS(8901), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8903), - [anon_sym_RBRACE] = ACTIONS(8903), - [anon_sym_LBRACK] = ACTIONS(8903), - [anon_sym_EQ] = ACTIONS(8901), - [anon_sym_QMARK] = ACTIONS(8903), - [anon_sym_STAR_EQ] = ACTIONS(8903), - [anon_sym_SLASH_EQ] = ACTIONS(8903), - [anon_sym_PERCENT_EQ] = ACTIONS(8903), - [anon_sym_PLUS_EQ] = ACTIONS(8903), - [anon_sym_DASH_EQ] = ACTIONS(8903), - [anon_sym_LT_LT_EQ] = ACTIONS(8903), - [anon_sym_GT_GT_EQ] = ACTIONS(8903), - [anon_sym_AMP_EQ] = ACTIONS(8903), - [anon_sym_CARET_EQ] = ACTIONS(8903), - [anon_sym_PIPE_EQ] = ACTIONS(8903), - [anon_sym_and_eq] = ACTIONS(8901), - [anon_sym_or_eq] = ACTIONS(8901), - [anon_sym_xor_eq] = ACTIONS(8901), - [anon_sym_LT_EQ_GT] = ACTIONS(8903), - [anon_sym_or] = ACTIONS(8901), - [anon_sym_and] = ACTIONS(8901), - [anon_sym_bitor] = ACTIONS(8901), - [anon_sym_xor] = ACTIONS(8901), - [anon_sym_bitand] = ACTIONS(8901), - [anon_sym_not_eq] = ACTIONS(8901), - [anon_sym_DASH_DASH] = ACTIONS(8903), - [anon_sym_PLUS_PLUS] = ACTIONS(8903), - [anon_sym_DOT] = ACTIONS(8901), - [anon_sym_DOT_STAR] = ACTIONS(8903), - [anon_sym_DASH_GT] = ACTIONS(8903), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8901), - [anon_sym_override] = ACTIONS(8901), - [anon_sym_requires] = ACTIONS(8901), - [anon_sym_COLON_RBRACK] = ACTIONS(8903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8792), + [anon_sym_COMMA] = ACTIONS(8792), + [anon_sym_RPAREN] = ACTIONS(8792), + [anon_sym_LPAREN2] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8790), + [anon_sym_STAR] = ACTIONS(8790), + [anon_sym_SLASH] = ACTIONS(8790), + [anon_sym_PERCENT] = ACTIONS(8790), + [anon_sym_PIPE_PIPE] = ACTIONS(8792), + [anon_sym_AMP_AMP] = ACTIONS(8792), + [anon_sym_PIPE] = ACTIONS(8790), + [anon_sym_CARET] = ACTIONS(8790), + [anon_sym_AMP] = ACTIONS(8790), + [anon_sym_EQ_EQ] = ACTIONS(8792), + [anon_sym_BANG_EQ] = ACTIONS(8792), + [anon_sym_GT] = ACTIONS(8790), + [anon_sym_GT_EQ] = ACTIONS(8792), + [anon_sym_LT_EQ] = ACTIONS(8790), + [anon_sym_LT] = ACTIONS(8790), + [anon_sym_LT_LT] = ACTIONS(8790), + [anon_sym_GT_GT] = ACTIONS(8790), + [anon_sym_SEMI] = ACTIONS(8792), + [anon_sym_COLON] = ACTIONS(8790), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8792), + [anon_sym_RBRACE] = ACTIONS(8792), + [anon_sym_LBRACK] = ACTIONS(8792), + [anon_sym_EQ] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [anon_sym_STAR_EQ] = ACTIONS(8792), + [anon_sym_SLASH_EQ] = ACTIONS(8792), + [anon_sym_PERCENT_EQ] = ACTIONS(8792), + [anon_sym_PLUS_EQ] = ACTIONS(8792), + [anon_sym_DASH_EQ] = ACTIONS(8792), + [anon_sym_LT_LT_EQ] = ACTIONS(8792), + [anon_sym_GT_GT_EQ] = ACTIONS(8792), + [anon_sym_AMP_EQ] = ACTIONS(8792), + [anon_sym_CARET_EQ] = ACTIONS(8792), + [anon_sym_PIPE_EQ] = ACTIONS(8792), + [anon_sym_and_eq] = ACTIONS(8790), + [anon_sym_or_eq] = ACTIONS(8790), + [anon_sym_xor_eq] = ACTIONS(8790), + [anon_sym_LT_EQ_GT] = ACTIONS(8792), + [anon_sym_or] = ACTIONS(8790), + [anon_sym_and] = ACTIONS(8790), + [anon_sym_bitor] = ACTIONS(8790), + [anon_sym_xor] = ACTIONS(8790), + [anon_sym_bitand] = ACTIONS(8790), + [anon_sym_not_eq] = ACTIONS(8790), + [anon_sym_DASH_DASH] = ACTIONS(8792), + [anon_sym_PLUS_PLUS] = ACTIONS(8792), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_DOT_STAR] = ACTIONS(8792), + [anon_sym_DASH_GT] = ACTIONS(8792), + [anon_sym_L_DQUOTE] = ACTIONS(8792), + [anon_sym_u_DQUOTE] = ACTIONS(8792), + [anon_sym_U_DQUOTE] = ACTIONS(8792), + [anon_sym_u8_DQUOTE] = ACTIONS(8792), + [anon_sym_DQUOTE] = ACTIONS(8792), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8792), + [anon_sym_LR_DQUOTE] = ACTIONS(8792), + [anon_sym_uR_DQUOTE] = ACTIONS(8792), + [anon_sym_UR_DQUOTE] = ACTIONS(8792), + [anon_sym_u8R_DQUOTE] = ACTIONS(8792), + [anon_sym_COLON_RBRACK] = ACTIONS(8792), + [sym_literal_suffix] = ACTIONS(8790), }, [STATE(3663)] = { - [sym_identifier] = ACTIONS(6594), - [anon_sym_LPAREN2] = ACTIONS(6601), - [anon_sym_TILDE] = ACTIONS(6601), - [anon_sym_STAR] = ACTIONS(6601), - [anon_sym_PIPE_PIPE] = ACTIONS(6601), - [anon_sym_AMP_AMP] = ACTIONS(6601), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym_virtual] = ACTIONS(6594), - [anon_sym_extern] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_using] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), - [anon_sym___declspec] = ACTIONS(6594), - [anon_sym___based] = ACTIONS(6594), - [anon_sym___cdecl] = ACTIONS(6594), - [anon_sym___clrcall] = ACTIONS(6594), - [anon_sym___stdcall] = ACTIONS(6594), - [anon_sym___fastcall] = ACTIONS(6594), - [anon_sym___thiscall] = ACTIONS(6594), - [anon_sym___vectorcall] = ACTIONS(6594), - [anon_sym_signed] = ACTIONS(6594), - [anon_sym_unsigned] = ACTIONS(6594), - [anon_sym_long] = ACTIONS(6594), - [anon_sym_short] = ACTIONS(6594), - [anon_sym_LBRACK] = ACTIONS(6594), - [anon_sym_static] = ACTIONS(6594), - [anon_sym_register] = ACTIONS(6594), - [anon_sym_inline] = ACTIONS(6594), - [anon_sym___inline] = ACTIONS(6594), - [anon_sym___inline__] = ACTIONS(6594), - [anon_sym___forceinline] = ACTIONS(6594), - [anon_sym_thread_local] = ACTIONS(6594), - [anon_sym___thread] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [sym_primitive_type] = ACTIONS(6594), - [anon_sym_enum] = ACTIONS(6594), - [anon_sym_class] = ACTIONS(6594), - [anon_sym_struct] = ACTIONS(6594), - [anon_sym_union] = ACTIONS(6594), - [anon_sym_or] = ACTIONS(6594), - [anon_sym_and] = ACTIONS(6594), - [anon_sym_typename] = ACTIONS(6594), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_explicit] = ACTIONS(6594), - [anon_sym_template] = ACTIONS(6594), - [anon_sym_operator] = ACTIONS(6594), - [anon_sym_friend] = ACTIONS(6594), - [anon_sym_concept] = ACTIONS(6594), - [anon_sym_LBRACK_COLON] = ACTIONS(6601), + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON] = ACTIONS(5700), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), }, [STATE(3664)] = { - [sym_identifier] = ACTIONS(9407), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9409), - [anon_sym_COMMA] = ACTIONS(9409), - [anon_sym_RPAREN] = ACTIONS(9409), - [aux_sym_preproc_if_token2] = ACTIONS(9409), - [aux_sym_preproc_else_token1] = ACTIONS(9409), - [aux_sym_preproc_elif_token1] = ACTIONS(9407), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9409), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9409), - [anon_sym_LPAREN2] = ACTIONS(9409), - [anon_sym_DASH] = ACTIONS(9407), - [anon_sym_PLUS] = ACTIONS(9407), - [anon_sym_STAR] = ACTIONS(9407), - [anon_sym_SLASH] = ACTIONS(9407), - [anon_sym_PERCENT] = ACTIONS(9407), - [anon_sym_PIPE_PIPE] = ACTIONS(9409), - [anon_sym_AMP_AMP] = ACTIONS(9409), - [anon_sym_PIPE] = ACTIONS(9407), - [anon_sym_CARET] = ACTIONS(9407), - [anon_sym_AMP] = ACTIONS(9407), - [anon_sym_EQ_EQ] = ACTIONS(9409), - [anon_sym_BANG_EQ] = ACTIONS(9409), - [anon_sym_GT] = ACTIONS(9407), - [anon_sym_GT_EQ] = ACTIONS(9409), - [anon_sym_LT_EQ] = ACTIONS(9407), - [anon_sym_LT] = ACTIONS(9407), - [anon_sym_LT_LT] = ACTIONS(9407), - [anon_sym_GT_GT] = ACTIONS(9407), - [anon_sym_SEMI] = ACTIONS(9409), - [anon_sym___attribute__] = ACTIONS(9407), - [anon_sym___attribute] = ACTIONS(9407), - [anon_sym_COLON] = ACTIONS(9407), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9409), - [anon_sym_RBRACE] = ACTIONS(9409), - [anon_sym_LBRACK] = ACTIONS(9409), - [anon_sym_EQ] = ACTIONS(9407), - [anon_sym_QMARK] = ACTIONS(9409), - [anon_sym_STAR_EQ] = ACTIONS(9409), - [anon_sym_SLASH_EQ] = ACTIONS(9409), - [anon_sym_PERCENT_EQ] = ACTIONS(9409), - [anon_sym_PLUS_EQ] = ACTIONS(9409), - [anon_sym_DASH_EQ] = ACTIONS(9409), - [anon_sym_LT_LT_EQ] = ACTIONS(9409), - [anon_sym_GT_GT_EQ] = ACTIONS(9409), - [anon_sym_AMP_EQ] = ACTIONS(9409), - [anon_sym_CARET_EQ] = ACTIONS(9409), - [anon_sym_PIPE_EQ] = ACTIONS(9409), - [anon_sym_and_eq] = ACTIONS(9407), - [anon_sym_or_eq] = ACTIONS(9407), - [anon_sym_xor_eq] = ACTIONS(9407), - [anon_sym_LT_EQ_GT] = ACTIONS(9409), - [anon_sym_or] = ACTIONS(9407), - [anon_sym_and] = ACTIONS(9407), - [anon_sym_bitor] = ACTIONS(9407), - [anon_sym_xor] = ACTIONS(9407), - [anon_sym_bitand] = ACTIONS(9407), - [anon_sym_not_eq] = ACTIONS(9407), - [anon_sym_DASH_DASH] = ACTIONS(9409), - [anon_sym_PLUS_PLUS] = ACTIONS(9409), - [anon_sym_DOT] = ACTIONS(9407), - [anon_sym_DOT_STAR] = ACTIONS(9409), - [anon_sym_DASH_GT] = ACTIONS(9409), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9407), - [anon_sym_override] = ACTIONS(9407), - [anon_sym_requires] = ACTIONS(9407), - [anon_sym_COLON_RBRACK] = ACTIONS(9409), + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym__function_exception_specification] = STATE(4103), + [sym__function_attributes_end] = STATE(5951), + [sym__function_postfix] = STATE(5370), + [sym_trailing_return_type] = STATE(6057), + [sym_noexcept] = STATE(4103), + [sym_throw_specifier] = STATE(4103), + [sym_requires_clause] = STATE(5370), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7874), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7874), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7874), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7874), + [anon_sym_GT_GT] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7168), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(9169), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7177), + [anon_sym_override] = ACTIONS(7177), + [anon_sym_noexcept] = ACTIONS(7179), + [anon_sym_throw] = ACTIONS(7181), + [anon_sym_requires] = ACTIONS(7183), }, [STATE(3665)] = { - [sym_attribute_specifier] = STATE(4059), - [sym_enumerator_list] = STATE(3842), - [sym__enum_base_clause] = STATE(3793), - [sym_identifier] = ACTIONS(8000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), - [anon_sym_COMMA] = ACTIONS(8002), - [aux_sym_preproc_if_token2] = ACTIONS(8002), - [aux_sym_preproc_else_token1] = ACTIONS(8002), - [aux_sym_preproc_elif_token1] = ACTIONS(8000), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8002), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8002), - [anon_sym_LPAREN2] = ACTIONS(8002), - [anon_sym_DASH] = ACTIONS(8000), - [anon_sym_PLUS] = ACTIONS(8000), - [anon_sym_STAR] = ACTIONS(8002), - [anon_sym_SLASH] = ACTIONS(8000), - [anon_sym_PERCENT] = ACTIONS(8002), - [anon_sym_PIPE_PIPE] = ACTIONS(8002), - [anon_sym_AMP_AMP] = ACTIONS(8002), - [anon_sym_PIPE] = ACTIONS(8000), - [anon_sym_CARET] = ACTIONS(8002), - [anon_sym_AMP] = ACTIONS(8000), - [anon_sym_EQ_EQ] = ACTIONS(8002), - [anon_sym_BANG_EQ] = ACTIONS(8002), - [anon_sym_GT] = ACTIONS(8000), - [anon_sym_GT_EQ] = ACTIONS(8002), - [anon_sym_LT_EQ] = ACTIONS(8000), - [anon_sym_LT] = ACTIONS(8000), - [anon_sym_LT_LT] = ACTIONS(8002), - [anon_sym_GT_GT] = ACTIONS(8002), - [anon_sym___extension__] = ACTIONS(8000), - [anon_sym___attribute__] = ACTIONS(9244), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_COLON] = ACTIONS(9411), - [anon_sym_LBRACE] = ACTIONS(9413), - [anon_sym_LBRACK] = ACTIONS(8002), - [anon_sym_const] = ACTIONS(8000), - [anon_sym_constexpr] = ACTIONS(8000), - [anon_sym_volatile] = ACTIONS(8000), - [anon_sym_restrict] = ACTIONS(8000), - [anon_sym___restrict__] = ACTIONS(8000), - [anon_sym__Atomic] = ACTIONS(8000), - [anon_sym__Noreturn] = ACTIONS(8000), - [anon_sym_noreturn] = ACTIONS(8000), - [anon_sym__Nonnull] = ACTIONS(8000), - [anon_sym_mutable] = ACTIONS(8000), - [anon_sym_constinit] = ACTIONS(8000), - [anon_sym_consteval] = ACTIONS(8000), - [anon_sym_alignas] = ACTIONS(8000), - [anon_sym__Alignas] = ACTIONS(8000), - [anon_sym_QMARK] = ACTIONS(8002), - [anon_sym_LT_EQ_GT] = ACTIONS(8002), - [anon_sym_or] = ACTIONS(8000), - [anon_sym_and] = ACTIONS(8000), - [anon_sym_bitor] = ACTIONS(8000), - [anon_sym_xor] = ACTIONS(8000), - [anon_sym_bitand] = ACTIONS(8000), - [anon_sym_not_eq] = ACTIONS(8000), - [anon_sym_DASH_DASH] = ACTIONS(8002), - [anon_sym_PLUS_PLUS] = ACTIONS(8002), - [anon_sym_DOT] = ACTIONS(8000), - [anon_sym_DOT_STAR] = ACTIONS(8002), - [anon_sym_DASH_GT] = ACTIONS(8002), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8000), - [anon_sym_override] = ACTIONS(8000), - [anon_sym_requires] = ACTIONS(8000), + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym__function_exception_specification] = STATE(4104), + [sym__function_attributes_end] = STATE(5952), + [sym__function_postfix] = STATE(5296), + [sym_trailing_return_type] = STATE(6073), + [sym_noexcept] = STATE(4104), + [sym_throw_specifier] = STATE(4104), + [sym_requires_clause] = STATE(5296), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(7972), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [aux_sym_preproc_if_token2] = ACTIONS(7970), + [aux_sym_preproc_else_token1] = ACTIONS(7970), + [aux_sym_preproc_elif_token1] = ACTIONS(7972), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7970), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7970), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7970), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7970), + [anon_sym_GT_GT] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(7168), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7972), + [anon_sym_and] = ACTIONS(7972), + [anon_sym_bitor] = ACTIONS(7972), + [anon_sym_xor] = ACTIONS(7972), + [anon_sym_bitand] = ACTIONS(7972), + [anon_sym_not_eq] = ACTIONS(7972), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(9320), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7177), + [anon_sym_override] = ACTIONS(7177), + [anon_sym_noexcept] = ACTIONS(7179), + [anon_sym_throw] = ACTIONS(7181), + [anon_sym_requires] = ACTIONS(7183), }, [STATE(3666)] = { - [sym_attribute_specifier] = STATE(4095), - [sym_enumerator_list] = STATE(3927), - [sym__enum_base_clause] = STATE(3818), - [sym_identifier] = ACTIONS(8006), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), - [anon_sym_COMMA] = ACTIONS(8008), - [aux_sym_preproc_if_token2] = ACTIONS(8008), - [aux_sym_preproc_else_token1] = ACTIONS(8008), - [aux_sym_preproc_elif_token1] = ACTIONS(8006), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8008), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8008), - [anon_sym_LPAREN2] = ACTIONS(8008), - [anon_sym_DASH] = ACTIONS(8006), - [anon_sym_PLUS] = ACTIONS(8006), - [anon_sym_STAR] = ACTIONS(8008), - [anon_sym_SLASH] = ACTIONS(8006), - [anon_sym_PERCENT] = ACTIONS(8008), - [anon_sym_PIPE_PIPE] = ACTIONS(8008), - [anon_sym_AMP_AMP] = ACTIONS(8008), - [anon_sym_PIPE] = ACTIONS(8006), - [anon_sym_CARET] = ACTIONS(8008), - [anon_sym_AMP] = ACTIONS(8006), - [anon_sym_EQ_EQ] = ACTIONS(8008), - [anon_sym_BANG_EQ] = ACTIONS(8008), - [anon_sym_GT] = ACTIONS(8006), - [anon_sym_GT_EQ] = ACTIONS(8008), - [anon_sym_LT_EQ] = ACTIONS(8006), - [anon_sym_LT] = ACTIONS(8006), - [anon_sym_LT_LT] = ACTIONS(8008), - [anon_sym_GT_GT] = ACTIONS(8008), - [anon_sym___extension__] = ACTIONS(8006), - [anon_sym___attribute__] = ACTIONS(9244), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_COLON] = ACTIONS(9411), - [anon_sym_LBRACE] = ACTIONS(9413), - [anon_sym_LBRACK] = ACTIONS(8008), - [anon_sym_const] = ACTIONS(8006), - [anon_sym_constexpr] = ACTIONS(8006), - [anon_sym_volatile] = ACTIONS(8006), - [anon_sym_restrict] = ACTIONS(8006), - [anon_sym___restrict__] = ACTIONS(8006), - [anon_sym__Atomic] = ACTIONS(8006), - [anon_sym__Noreturn] = ACTIONS(8006), - [anon_sym_noreturn] = ACTIONS(8006), - [anon_sym__Nonnull] = ACTIONS(8006), - [anon_sym_mutable] = ACTIONS(8006), - [anon_sym_constinit] = ACTIONS(8006), - [anon_sym_consteval] = ACTIONS(8006), - [anon_sym_alignas] = ACTIONS(8006), - [anon_sym__Alignas] = ACTIONS(8006), - [anon_sym_QMARK] = ACTIONS(8008), - [anon_sym_LT_EQ_GT] = ACTIONS(8008), - [anon_sym_or] = ACTIONS(8006), - [anon_sym_and] = ACTIONS(8006), - [anon_sym_bitor] = ACTIONS(8006), - [anon_sym_xor] = ACTIONS(8006), - [anon_sym_bitand] = ACTIONS(8006), - [anon_sym_not_eq] = ACTIONS(8006), - [anon_sym_DASH_DASH] = ACTIONS(8008), - [anon_sym_PLUS_PLUS] = ACTIONS(8008), - [anon_sym_DOT] = ACTIONS(8006), - [anon_sym_DOT_STAR] = ACTIONS(8008), - [anon_sym_DASH_GT] = ACTIONS(8008), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8006), - [anon_sym_override] = ACTIONS(8006), - [anon_sym_requires] = ACTIONS(8006), + [sym_template_argument_list] = STATE(2906), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7119), + [anon_sym_COMMA] = ACTIONS(7119), + [anon_sym_RPAREN] = ACTIONS(7119), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_DASH] = ACTIONS(7126), + [anon_sym_PLUS] = ACTIONS(7126), + [anon_sym_STAR] = ACTIONS(7126), + [anon_sym_SLASH] = ACTIONS(7126), + [anon_sym_PERCENT] = ACTIONS(7126), + [anon_sym_PIPE_PIPE] = ACTIONS(7119), + [anon_sym_AMP_AMP] = ACTIONS(7119), + [anon_sym_PIPE] = ACTIONS(7126), + [anon_sym_CARET] = ACTIONS(7126), + [anon_sym_AMP] = ACTIONS(7126), + [anon_sym_EQ_EQ] = ACTIONS(7119), + [anon_sym_BANG_EQ] = ACTIONS(7119), + [anon_sym_GT] = ACTIONS(7126), + [anon_sym_GT_EQ] = ACTIONS(7119), + [anon_sym_LT_EQ] = ACTIONS(7126), + [anon_sym_LT] = ACTIONS(8212), + [anon_sym_LT_LT] = ACTIONS(7126), + [anon_sym_GT_GT] = ACTIONS(7126), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7119), + [anon_sym_EQ] = ACTIONS(7126), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7119), + [anon_sym_STAR_EQ] = ACTIONS(7119), + [anon_sym_SLASH_EQ] = ACTIONS(7119), + [anon_sym_PERCENT_EQ] = ACTIONS(7119), + [anon_sym_PLUS_EQ] = ACTIONS(7119), + [anon_sym_DASH_EQ] = ACTIONS(7119), + [anon_sym_LT_LT_EQ] = ACTIONS(7119), + [anon_sym_GT_GT_EQ] = ACTIONS(7119), + [anon_sym_AMP_EQ] = ACTIONS(7119), + [anon_sym_CARET_EQ] = ACTIONS(7119), + [anon_sym_PIPE_EQ] = ACTIONS(7119), + [anon_sym_LT_EQ_GT] = ACTIONS(7119), + [anon_sym_or] = ACTIONS(7119), + [anon_sym_and] = ACTIONS(7119), + [anon_sym_bitor] = ACTIONS(7119), + [anon_sym_xor] = ACTIONS(7119), + [anon_sym_bitand] = ACTIONS(7119), + [anon_sym_not_eq] = ACTIONS(7119), + [anon_sym_DASH_DASH] = ACTIONS(7119), + [anon_sym_PLUS_PLUS] = ACTIONS(7119), + [anon_sym_DOT] = ACTIONS(7126), + [anon_sym_DOT_STAR] = ACTIONS(7119), + [anon_sym_DASH_GT] = ACTIONS(7126), + [sym_comment] = ACTIONS(3), + [anon_sym_DASH_GT_STAR] = ACTIONS(7119), }, [STATE(3667)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(8667), - [anon_sym_COMMA] = ACTIONS(8667), - [anon_sym_RPAREN] = ACTIONS(8667), - [anon_sym_LPAREN2] = ACTIONS(8667), - [anon_sym_DASH] = ACTIONS(8665), - [anon_sym_PLUS] = ACTIONS(8665), - [anon_sym_STAR] = ACTIONS(8665), - [anon_sym_SLASH] = ACTIONS(8665), - [anon_sym_PERCENT] = ACTIONS(8665), - [anon_sym_PIPE_PIPE] = ACTIONS(8667), - [anon_sym_AMP_AMP] = ACTIONS(8667), - [anon_sym_PIPE] = ACTIONS(8665), - [anon_sym_CARET] = ACTIONS(8665), - [anon_sym_AMP] = ACTIONS(8665), - [anon_sym_EQ_EQ] = ACTIONS(8667), - [anon_sym_BANG_EQ] = ACTIONS(8667), - [anon_sym_GT] = ACTIONS(8665), - [anon_sym_GT_EQ] = ACTIONS(8667), - [anon_sym_LT_EQ] = ACTIONS(8665), - [anon_sym_LT] = ACTIONS(8665), - [anon_sym_LT_LT] = ACTIONS(8665), - [anon_sym_GT_GT] = ACTIONS(8665), - [anon_sym_SEMI] = ACTIONS(8667), - [anon_sym_COLON] = ACTIONS(8665), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8667), - [anon_sym_RBRACE] = ACTIONS(8667), - [anon_sym_LBRACK] = ACTIONS(8667), - [anon_sym_EQ] = ACTIONS(8665), - [anon_sym_QMARK] = ACTIONS(8667), - [anon_sym_STAR_EQ] = ACTIONS(8667), - [anon_sym_SLASH_EQ] = ACTIONS(8667), - [anon_sym_PERCENT_EQ] = ACTIONS(8667), - [anon_sym_PLUS_EQ] = ACTIONS(8667), - [anon_sym_DASH_EQ] = ACTIONS(8667), - [anon_sym_LT_LT_EQ] = ACTIONS(8667), - [anon_sym_GT_GT_EQ] = ACTIONS(8667), - [anon_sym_AMP_EQ] = ACTIONS(8667), - [anon_sym_CARET_EQ] = ACTIONS(8667), - [anon_sym_PIPE_EQ] = ACTIONS(8667), - [anon_sym_and_eq] = ACTIONS(8665), - [anon_sym_or_eq] = ACTIONS(8665), - [anon_sym_xor_eq] = ACTIONS(8665), - [anon_sym_LT_EQ_GT] = ACTIONS(8667), - [anon_sym_or] = ACTIONS(8665), - [anon_sym_and] = ACTIONS(8665), - [anon_sym_bitor] = ACTIONS(8665), - [anon_sym_xor] = ACTIONS(8665), - [anon_sym_bitand] = ACTIONS(8665), - [anon_sym_not_eq] = ACTIONS(8665), - [anon_sym_DASH_DASH] = ACTIONS(8667), - [anon_sym_PLUS_PLUS] = ACTIONS(8667), - [anon_sym_DOT] = ACTIONS(8665), - [anon_sym_DOT_STAR] = ACTIONS(8667), - [anon_sym_DASH_GT] = ACTIONS(8667), - [anon_sym_L_DQUOTE] = ACTIONS(8667), - [anon_sym_u_DQUOTE] = ACTIONS(8667), - [anon_sym_U_DQUOTE] = ACTIONS(8667), - [anon_sym_u8_DQUOTE] = ACTIONS(8667), - [anon_sym_DQUOTE] = ACTIONS(8667), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8667), - [anon_sym_LR_DQUOTE] = ACTIONS(8667), - [anon_sym_uR_DQUOTE] = ACTIONS(8667), - [anon_sym_UR_DQUOTE] = ACTIONS(8667), - [anon_sym_u8R_DQUOTE] = ACTIONS(8667), - [anon_sym_COLON_RBRACK] = ACTIONS(8667), - [sym_literal_suffix] = ACTIONS(8665), - }, - [STATE(3668)] = { - [sym_identifier] = ACTIONS(5589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5591), - [anon_sym_COMMA] = ACTIONS(5591), - [anon_sym_RPAREN] = ACTIONS(5591), - [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_virtual] = ACTIONS(5589), - [anon_sym_extern] = ACTIONS(5589), - [anon_sym___attribute__] = ACTIONS(5589), - [anon_sym___attribute] = ACTIONS(5589), - [anon_sym_COLON] = 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___cdecl] = ACTIONS(5589), - [anon_sym___clrcall] = ACTIONS(5589), - [anon_sym___stdcall] = ACTIONS(5589), - [anon_sym___fastcall] = ACTIONS(5589), - [anon_sym___thiscall] = ACTIONS(5589), - [anon_sym___vectorcall] = ACTIONS(5589), - [anon_sym_LBRACE] = ACTIONS(5591), - [anon_sym_LBRACK] = ACTIONS(5589), - [anon_sym_static] = ACTIONS(5589), - [anon_sym_EQ] = ACTIONS(5591), - [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), - [anon_sym_DASH_GT] = ACTIONS(5591), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5589), - [anon_sym_final] = ACTIONS(5589), - [anon_sym_override] = ACTIONS(5589), - [anon_sym_explicit] = ACTIONS(5589), - [anon_sym_private] = ACTIONS(5589), - [anon_sym_template] = ACTIONS(5589), - [anon_sym_GT2] = ACTIONS(5591), - [anon_sym_operator] = ACTIONS(5589), - [anon_sym_public] = ACTIONS(5589), - [anon_sym_protected] = ACTIONS(5589), - [anon_sym_noexcept] = ACTIONS(5589), - [anon_sym_throw] = ACTIONS(5589), - [anon_sym_requires] = ACTIONS(5589), - [anon_sym_LBRACK_COLON] = ACTIONS(5591), + [sym_identifier] = ACTIONS(9409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9411), + [anon_sym_COMMA] = ACTIONS(9411), + [anon_sym_RPAREN] = ACTIONS(9411), + [aux_sym_preproc_if_token2] = ACTIONS(9411), + [aux_sym_preproc_else_token1] = ACTIONS(9411), + [aux_sym_preproc_elif_token1] = ACTIONS(9409), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9411), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9411), + [anon_sym_LPAREN2] = ACTIONS(9411), + [anon_sym_DASH] = ACTIONS(9409), + [anon_sym_PLUS] = ACTIONS(9409), + [anon_sym_STAR] = ACTIONS(9409), + [anon_sym_SLASH] = ACTIONS(9409), + [anon_sym_PERCENT] = ACTIONS(9409), + [anon_sym_PIPE_PIPE] = ACTIONS(9411), + [anon_sym_AMP_AMP] = ACTIONS(9411), + [anon_sym_PIPE] = ACTIONS(9409), + [anon_sym_CARET] = ACTIONS(9409), + [anon_sym_AMP] = ACTIONS(9409), + [anon_sym_EQ_EQ] = ACTIONS(9411), + [anon_sym_BANG_EQ] = ACTIONS(9411), + [anon_sym_GT] = ACTIONS(9409), + [anon_sym_GT_EQ] = ACTIONS(9411), + [anon_sym_LT_EQ] = ACTIONS(9409), + [anon_sym_LT] = ACTIONS(9409), + [anon_sym_LT_LT] = ACTIONS(9409), + [anon_sym_GT_GT] = ACTIONS(9409), + [anon_sym_SEMI] = ACTIONS(9411), + [anon_sym___attribute__] = ACTIONS(9409), + [anon_sym___attribute] = ACTIONS(9409), + [anon_sym_COLON] = ACTIONS(9409), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9411), + [anon_sym_RBRACE] = ACTIONS(9411), + [anon_sym_LBRACK] = ACTIONS(9411), + [anon_sym_EQ] = ACTIONS(9409), + [anon_sym_QMARK] = ACTIONS(9411), + [anon_sym_STAR_EQ] = ACTIONS(9411), + [anon_sym_SLASH_EQ] = ACTIONS(9411), + [anon_sym_PERCENT_EQ] = ACTIONS(9411), + [anon_sym_PLUS_EQ] = ACTIONS(9411), + [anon_sym_DASH_EQ] = ACTIONS(9411), + [anon_sym_LT_LT_EQ] = ACTIONS(9411), + [anon_sym_GT_GT_EQ] = ACTIONS(9411), + [anon_sym_AMP_EQ] = ACTIONS(9411), + [anon_sym_CARET_EQ] = ACTIONS(9411), + [anon_sym_PIPE_EQ] = ACTIONS(9411), + [anon_sym_and_eq] = ACTIONS(9409), + [anon_sym_or_eq] = ACTIONS(9409), + [anon_sym_xor_eq] = ACTIONS(9409), + [anon_sym_LT_EQ_GT] = ACTIONS(9411), + [anon_sym_or] = ACTIONS(9409), + [anon_sym_and] = ACTIONS(9409), + [anon_sym_bitor] = ACTIONS(9409), + [anon_sym_xor] = ACTIONS(9409), + [anon_sym_bitand] = ACTIONS(9409), + [anon_sym_not_eq] = ACTIONS(9409), + [anon_sym_DASH_DASH] = ACTIONS(9411), + [anon_sym_PLUS_PLUS] = ACTIONS(9411), + [anon_sym_DOT] = ACTIONS(9409), + [anon_sym_DOT_STAR] = ACTIONS(9411), + [anon_sym_DASH_GT] = ACTIONS(9411), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9409), + [anon_sym_override] = ACTIONS(9409), + [anon_sym_requires] = ACTIONS(9409), + [anon_sym_COLON_RBRACK] = ACTIONS(9411), + }, + [STATE(3668)] = { + [sym_identifier] = ACTIONS(9413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9415), + [anon_sym_COMMA] = ACTIONS(9415), + [anon_sym_RPAREN] = ACTIONS(9415), + [aux_sym_preproc_if_token2] = ACTIONS(9415), + [aux_sym_preproc_else_token1] = ACTIONS(9415), + [aux_sym_preproc_elif_token1] = ACTIONS(9413), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9415), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9415), + [anon_sym_LPAREN2] = ACTIONS(9415), + [anon_sym_DASH] = ACTIONS(9413), + [anon_sym_PLUS] = ACTIONS(9413), + [anon_sym_STAR] = ACTIONS(9413), + [anon_sym_SLASH] = ACTIONS(9413), + [anon_sym_PERCENT] = ACTIONS(9413), + [anon_sym_PIPE_PIPE] = ACTIONS(9415), + [anon_sym_AMP_AMP] = ACTIONS(9415), + [anon_sym_PIPE] = ACTIONS(9413), + [anon_sym_CARET] = ACTIONS(9413), + [anon_sym_AMP] = ACTIONS(9413), + [anon_sym_EQ_EQ] = ACTIONS(9415), + [anon_sym_BANG_EQ] = ACTIONS(9415), + [anon_sym_GT] = ACTIONS(9413), + [anon_sym_GT_EQ] = ACTIONS(9415), + [anon_sym_LT_EQ] = ACTIONS(9413), + [anon_sym_LT] = ACTIONS(9413), + [anon_sym_LT_LT] = ACTIONS(9413), + [anon_sym_GT_GT] = ACTIONS(9413), + [anon_sym_SEMI] = ACTIONS(9415), + [anon_sym___attribute__] = ACTIONS(9413), + [anon_sym___attribute] = ACTIONS(9413), + [anon_sym_COLON] = ACTIONS(9413), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9415), + [anon_sym_RBRACE] = ACTIONS(9415), + [anon_sym_LBRACK] = ACTIONS(9415), + [anon_sym_EQ] = ACTIONS(9413), + [anon_sym_QMARK] = ACTIONS(9415), + [anon_sym_STAR_EQ] = ACTIONS(9415), + [anon_sym_SLASH_EQ] = ACTIONS(9415), + [anon_sym_PERCENT_EQ] = ACTIONS(9415), + [anon_sym_PLUS_EQ] = ACTIONS(9415), + [anon_sym_DASH_EQ] = ACTIONS(9415), + [anon_sym_LT_LT_EQ] = ACTIONS(9415), + [anon_sym_GT_GT_EQ] = ACTIONS(9415), + [anon_sym_AMP_EQ] = ACTIONS(9415), + [anon_sym_CARET_EQ] = ACTIONS(9415), + [anon_sym_PIPE_EQ] = ACTIONS(9415), + [anon_sym_and_eq] = ACTIONS(9413), + [anon_sym_or_eq] = ACTIONS(9413), + [anon_sym_xor_eq] = ACTIONS(9413), + [anon_sym_LT_EQ_GT] = ACTIONS(9415), + [anon_sym_or] = ACTIONS(9413), + [anon_sym_and] = ACTIONS(9413), + [anon_sym_bitor] = ACTIONS(9413), + [anon_sym_xor] = ACTIONS(9413), + [anon_sym_bitand] = ACTIONS(9413), + [anon_sym_not_eq] = ACTIONS(9413), + [anon_sym_DASH_DASH] = ACTIONS(9415), + [anon_sym_PLUS_PLUS] = ACTIONS(9415), + [anon_sym_DOT] = ACTIONS(9413), + [anon_sym_DOT_STAR] = ACTIONS(9415), + [anon_sym_DASH_GT] = ACTIONS(9415), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9413), + [anon_sym_override] = ACTIONS(9413), + [anon_sym_requires] = ACTIONS(9413), + [anon_sym_COLON_RBRACK] = ACTIONS(9415), }, [STATE(3669)] = { - [sym_identifier] = ACTIONS(9415), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9417), - [anon_sym_COMMA] = ACTIONS(9417), - [anon_sym_RPAREN] = ACTIONS(9417), - [aux_sym_preproc_if_token2] = ACTIONS(9417), - [aux_sym_preproc_else_token1] = ACTIONS(9417), - [aux_sym_preproc_elif_token1] = ACTIONS(9415), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9417), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9417), - [anon_sym_LPAREN2] = ACTIONS(9417), - [anon_sym_DASH] = ACTIONS(9415), - [anon_sym_PLUS] = ACTIONS(9415), - [anon_sym_STAR] = ACTIONS(9415), - [anon_sym_SLASH] = ACTIONS(9415), - [anon_sym_PERCENT] = ACTIONS(9415), - [anon_sym_PIPE_PIPE] = ACTIONS(9417), - [anon_sym_AMP_AMP] = ACTIONS(9417), - [anon_sym_PIPE] = ACTIONS(9415), - [anon_sym_CARET] = ACTIONS(9415), - [anon_sym_AMP] = ACTIONS(9415), - [anon_sym_EQ_EQ] = ACTIONS(9417), - [anon_sym_BANG_EQ] = ACTIONS(9417), - [anon_sym_GT] = ACTIONS(9415), - [anon_sym_GT_EQ] = ACTIONS(9417), - [anon_sym_LT_EQ] = ACTIONS(9415), - [anon_sym_LT] = ACTIONS(9415), - [anon_sym_LT_LT] = ACTIONS(9415), - [anon_sym_GT_GT] = ACTIONS(9415), - [anon_sym_SEMI] = ACTIONS(9417), - [anon_sym___attribute__] = ACTIONS(9415), - [anon_sym___attribute] = ACTIONS(9415), - [anon_sym_COLON] = ACTIONS(9415), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9417), - [anon_sym_RBRACE] = ACTIONS(9417), - [anon_sym_LBRACK] = ACTIONS(9417), - [anon_sym_EQ] = ACTIONS(9415), - [anon_sym_QMARK] = ACTIONS(9417), - [anon_sym_STAR_EQ] = ACTIONS(9417), - [anon_sym_SLASH_EQ] = ACTIONS(9417), - [anon_sym_PERCENT_EQ] = ACTIONS(9417), - [anon_sym_PLUS_EQ] = ACTIONS(9417), - [anon_sym_DASH_EQ] = ACTIONS(9417), - [anon_sym_LT_LT_EQ] = ACTIONS(9417), - [anon_sym_GT_GT_EQ] = ACTIONS(9417), - [anon_sym_AMP_EQ] = ACTIONS(9417), - [anon_sym_CARET_EQ] = ACTIONS(9417), - [anon_sym_PIPE_EQ] = ACTIONS(9417), - [anon_sym_and_eq] = ACTIONS(9415), - [anon_sym_or_eq] = ACTIONS(9415), - [anon_sym_xor_eq] = ACTIONS(9415), - [anon_sym_LT_EQ_GT] = ACTIONS(9417), - [anon_sym_or] = ACTIONS(9415), - [anon_sym_and] = ACTIONS(9415), - [anon_sym_bitor] = ACTIONS(9415), - [anon_sym_xor] = ACTIONS(9415), - [anon_sym_bitand] = ACTIONS(9415), - [anon_sym_not_eq] = ACTIONS(9415), - [anon_sym_DASH_DASH] = ACTIONS(9417), - [anon_sym_PLUS_PLUS] = ACTIONS(9417), - [anon_sym_DOT] = ACTIONS(9415), - [anon_sym_DOT_STAR] = ACTIONS(9417), - [anon_sym_DASH_GT] = ACTIONS(9417), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9415), - [anon_sym_override] = ACTIONS(9415), - [anon_sym_requires] = ACTIONS(9415), - [anon_sym_COLON_RBRACK] = ACTIONS(9417), + [sym_identifier] = ACTIONS(9417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9419), + [anon_sym_COMMA] = ACTIONS(9419), + [anon_sym_RPAREN] = ACTIONS(9419), + [aux_sym_preproc_if_token2] = ACTIONS(9419), + [aux_sym_preproc_else_token1] = ACTIONS(9419), + [aux_sym_preproc_elif_token1] = ACTIONS(9417), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9419), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9419), + [anon_sym_LPAREN2] = ACTIONS(9419), + [anon_sym_DASH] = ACTIONS(9417), + [anon_sym_PLUS] = ACTIONS(9417), + [anon_sym_STAR] = ACTIONS(9417), + [anon_sym_SLASH] = ACTIONS(9417), + [anon_sym_PERCENT] = ACTIONS(9417), + [anon_sym_PIPE_PIPE] = ACTIONS(9419), + [anon_sym_AMP_AMP] = ACTIONS(9419), + [anon_sym_PIPE] = ACTIONS(9417), + [anon_sym_CARET] = ACTIONS(9417), + [anon_sym_AMP] = ACTIONS(9417), + [anon_sym_EQ_EQ] = ACTIONS(9419), + [anon_sym_BANG_EQ] = ACTIONS(9419), + [anon_sym_GT] = ACTIONS(9417), + [anon_sym_GT_EQ] = ACTIONS(9419), + [anon_sym_LT_EQ] = ACTIONS(9417), + [anon_sym_LT] = ACTIONS(9417), + [anon_sym_LT_LT] = ACTIONS(9417), + [anon_sym_GT_GT] = ACTIONS(9417), + [anon_sym_SEMI] = ACTIONS(9419), + [anon_sym___attribute__] = ACTIONS(9417), + [anon_sym___attribute] = ACTIONS(9417), + [anon_sym_COLON] = ACTIONS(9417), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9419), + [anon_sym_RBRACE] = ACTIONS(9419), + [anon_sym_LBRACK] = ACTIONS(9419), + [anon_sym_EQ] = ACTIONS(9417), + [anon_sym_QMARK] = ACTIONS(9419), + [anon_sym_STAR_EQ] = ACTIONS(9419), + [anon_sym_SLASH_EQ] = ACTIONS(9419), + [anon_sym_PERCENT_EQ] = ACTIONS(9419), + [anon_sym_PLUS_EQ] = ACTIONS(9419), + [anon_sym_DASH_EQ] = ACTIONS(9419), + [anon_sym_LT_LT_EQ] = ACTIONS(9419), + [anon_sym_GT_GT_EQ] = ACTIONS(9419), + [anon_sym_AMP_EQ] = ACTIONS(9419), + [anon_sym_CARET_EQ] = ACTIONS(9419), + [anon_sym_PIPE_EQ] = ACTIONS(9419), + [anon_sym_and_eq] = ACTIONS(9417), + [anon_sym_or_eq] = ACTIONS(9417), + [anon_sym_xor_eq] = ACTIONS(9417), + [anon_sym_LT_EQ_GT] = ACTIONS(9419), + [anon_sym_or] = ACTIONS(9417), + [anon_sym_and] = ACTIONS(9417), + [anon_sym_bitor] = ACTIONS(9417), + [anon_sym_xor] = ACTIONS(9417), + [anon_sym_bitand] = ACTIONS(9417), + [anon_sym_not_eq] = ACTIONS(9417), + [anon_sym_DASH_DASH] = ACTIONS(9419), + [anon_sym_PLUS_PLUS] = ACTIONS(9419), + [anon_sym_DOT] = ACTIONS(9417), + [anon_sym_DOT_STAR] = ACTIONS(9419), + [anon_sym_DASH_GT] = ACTIONS(9419), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9417), + [anon_sym_override] = ACTIONS(9417), + [anon_sym_requires] = ACTIONS(9417), + [anon_sym_COLON_RBRACK] = ACTIONS(9419), }, [STATE(3670)] = { - [sym_identifier] = ACTIONS(8921), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8923), - [anon_sym_COMMA] = ACTIONS(8923), - [anon_sym_RPAREN] = ACTIONS(8923), - [aux_sym_preproc_if_token2] = ACTIONS(8923), - [aux_sym_preproc_else_token1] = ACTIONS(8923), - [aux_sym_preproc_elif_token1] = ACTIONS(8921), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8923), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8923), - [anon_sym_LPAREN2] = ACTIONS(8923), - [anon_sym_DASH] = ACTIONS(8921), - [anon_sym_PLUS] = ACTIONS(8921), - [anon_sym_STAR] = ACTIONS(8921), - [anon_sym_SLASH] = ACTIONS(8921), - [anon_sym_PERCENT] = ACTIONS(8921), - [anon_sym_PIPE_PIPE] = ACTIONS(8923), - [anon_sym_AMP_AMP] = ACTIONS(8923), - [anon_sym_PIPE] = ACTIONS(8921), - [anon_sym_CARET] = ACTIONS(8921), - [anon_sym_AMP] = ACTIONS(8921), - [anon_sym_EQ_EQ] = ACTIONS(8923), - [anon_sym_BANG_EQ] = ACTIONS(8923), - [anon_sym_GT] = ACTIONS(8921), - [anon_sym_GT_EQ] = ACTIONS(8923), - [anon_sym_LT_EQ] = ACTIONS(8921), - [anon_sym_LT] = ACTIONS(8921), - [anon_sym_LT_LT] = ACTIONS(8921), - [anon_sym_GT_GT] = ACTIONS(8921), - [anon_sym_SEMI] = ACTIONS(8923), - [anon_sym___attribute__] = ACTIONS(8921), - [anon_sym___attribute] = ACTIONS(8921), - [anon_sym_COLON] = ACTIONS(8921), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8923), - [anon_sym_RBRACE] = ACTIONS(8923), - [anon_sym_LBRACK] = ACTIONS(8923), - [anon_sym_EQ] = ACTIONS(8921), - [anon_sym_QMARK] = ACTIONS(8923), - [anon_sym_STAR_EQ] = ACTIONS(8923), - [anon_sym_SLASH_EQ] = ACTIONS(8923), - [anon_sym_PERCENT_EQ] = ACTIONS(8923), - [anon_sym_PLUS_EQ] = ACTIONS(8923), - [anon_sym_DASH_EQ] = ACTIONS(8923), - [anon_sym_LT_LT_EQ] = ACTIONS(8923), - [anon_sym_GT_GT_EQ] = ACTIONS(8923), - [anon_sym_AMP_EQ] = ACTIONS(8923), - [anon_sym_CARET_EQ] = ACTIONS(8923), - [anon_sym_PIPE_EQ] = ACTIONS(8923), - [anon_sym_and_eq] = ACTIONS(8921), - [anon_sym_or_eq] = ACTIONS(8921), - [anon_sym_xor_eq] = ACTIONS(8921), - [anon_sym_LT_EQ_GT] = ACTIONS(8923), - [anon_sym_or] = ACTIONS(8921), - [anon_sym_and] = ACTIONS(8921), - [anon_sym_bitor] = ACTIONS(8921), - [anon_sym_xor] = ACTIONS(8921), - [anon_sym_bitand] = ACTIONS(8921), - [anon_sym_not_eq] = ACTIONS(8921), - [anon_sym_DASH_DASH] = ACTIONS(8923), - [anon_sym_PLUS_PLUS] = ACTIONS(8923), - [anon_sym_DOT] = ACTIONS(8921), - [anon_sym_DOT_STAR] = ACTIONS(8923), - [anon_sym_DASH_GT] = ACTIONS(8923), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8921), - [anon_sym_override] = ACTIONS(8921), - [anon_sym_requires] = ACTIONS(8921), - [anon_sym_COLON_RBRACK] = ACTIONS(8923), + [sym_identifier] = ACTIONS(9421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9423), + [anon_sym_COMMA] = ACTIONS(9423), + [anon_sym_RPAREN] = ACTIONS(9423), + [aux_sym_preproc_if_token2] = ACTIONS(9423), + [aux_sym_preproc_else_token1] = ACTIONS(9423), + [aux_sym_preproc_elif_token1] = ACTIONS(9421), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9423), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9423), + [anon_sym_LPAREN2] = ACTIONS(9423), + [anon_sym_DASH] = ACTIONS(9421), + [anon_sym_PLUS] = ACTIONS(9421), + [anon_sym_STAR] = ACTIONS(9421), + [anon_sym_SLASH] = ACTIONS(9421), + [anon_sym_PERCENT] = ACTIONS(9421), + [anon_sym_PIPE_PIPE] = ACTIONS(9423), + [anon_sym_AMP_AMP] = ACTIONS(9423), + [anon_sym_PIPE] = ACTIONS(9421), + [anon_sym_CARET] = ACTIONS(9421), + [anon_sym_AMP] = ACTIONS(9421), + [anon_sym_EQ_EQ] = ACTIONS(9423), + [anon_sym_BANG_EQ] = ACTIONS(9423), + [anon_sym_GT] = ACTIONS(9421), + [anon_sym_GT_EQ] = ACTIONS(9423), + [anon_sym_LT_EQ] = ACTIONS(9421), + [anon_sym_LT] = ACTIONS(9421), + [anon_sym_LT_LT] = ACTIONS(9421), + [anon_sym_GT_GT] = ACTIONS(9421), + [anon_sym_SEMI] = ACTIONS(9423), + [anon_sym___attribute__] = ACTIONS(9421), + [anon_sym___attribute] = ACTIONS(9421), + [anon_sym_COLON] = ACTIONS(9421), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9423), + [anon_sym_RBRACE] = ACTIONS(9423), + [anon_sym_LBRACK] = ACTIONS(9423), + [anon_sym_EQ] = ACTIONS(9421), + [anon_sym_QMARK] = ACTIONS(9423), + [anon_sym_STAR_EQ] = ACTIONS(9423), + [anon_sym_SLASH_EQ] = ACTIONS(9423), + [anon_sym_PERCENT_EQ] = ACTIONS(9423), + [anon_sym_PLUS_EQ] = ACTIONS(9423), + [anon_sym_DASH_EQ] = ACTIONS(9423), + [anon_sym_LT_LT_EQ] = ACTIONS(9423), + [anon_sym_GT_GT_EQ] = ACTIONS(9423), + [anon_sym_AMP_EQ] = ACTIONS(9423), + [anon_sym_CARET_EQ] = ACTIONS(9423), + [anon_sym_PIPE_EQ] = ACTIONS(9423), + [anon_sym_and_eq] = ACTIONS(9421), + [anon_sym_or_eq] = ACTIONS(9421), + [anon_sym_xor_eq] = ACTIONS(9421), + [anon_sym_LT_EQ_GT] = ACTIONS(9423), + [anon_sym_or] = ACTIONS(9421), + [anon_sym_and] = ACTIONS(9421), + [anon_sym_bitor] = ACTIONS(9421), + [anon_sym_xor] = ACTIONS(9421), + [anon_sym_bitand] = ACTIONS(9421), + [anon_sym_not_eq] = ACTIONS(9421), + [anon_sym_DASH_DASH] = ACTIONS(9423), + [anon_sym_PLUS_PLUS] = ACTIONS(9423), + [anon_sym_DOT] = ACTIONS(9421), + [anon_sym_DOT_STAR] = ACTIONS(9423), + [anon_sym_DASH_GT] = ACTIONS(9423), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9421), + [anon_sym_override] = ACTIONS(9421), + [anon_sym_requires] = ACTIONS(9421), + [anon_sym_COLON_RBRACK] = ACTIONS(9423), }, [STATE(3671)] = { - [sym_identifier] = ACTIONS(9419), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9421), - [anon_sym_COMMA] = ACTIONS(9421), - [anon_sym_RPAREN] = ACTIONS(9421), - [aux_sym_preproc_if_token2] = ACTIONS(9421), - [aux_sym_preproc_else_token1] = ACTIONS(9421), - [aux_sym_preproc_elif_token1] = ACTIONS(9419), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9421), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9421), - [anon_sym_LPAREN2] = ACTIONS(9421), - [anon_sym_DASH] = ACTIONS(9419), - [anon_sym_PLUS] = ACTIONS(9419), - [anon_sym_STAR] = ACTIONS(9419), - [anon_sym_SLASH] = ACTIONS(9419), - [anon_sym_PERCENT] = ACTIONS(9419), - [anon_sym_PIPE_PIPE] = ACTIONS(9421), - [anon_sym_AMP_AMP] = ACTIONS(9421), - [anon_sym_PIPE] = ACTIONS(9419), - [anon_sym_CARET] = ACTIONS(9419), - [anon_sym_AMP] = ACTIONS(9419), - [anon_sym_EQ_EQ] = ACTIONS(9421), - [anon_sym_BANG_EQ] = ACTIONS(9421), - [anon_sym_GT] = ACTIONS(9419), - [anon_sym_GT_EQ] = ACTIONS(9421), - [anon_sym_LT_EQ] = ACTIONS(9419), - [anon_sym_LT] = ACTIONS(9419), - [anon_sym_LT_LT] = ACTIONS(9419), - [anon_sym_GT_GT] = ACTIONS(9419), - [anon_sym_SEMI] = ACTIONS(9421), - [anon_sym___attribute__] = ACTIONS(9419), - [anon_sym___attribute] = ACTIONS(9419), - [anon_sym_COLON] = ACTIONS(9419), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9421), - [anon_sym_RBRACE] = ACTIONS(9421), - [anon_sym_LBRACK] = ACTIONS(9421), - [anon_sym_EQ] = ACTIONS(9419), - [anon_sym_QMARK] = ACTIONS(9421), - [anon_sym_STAR_EQ] = ACTIONS(9421), - [anon_sym_SLASH_EQ] = ACTIONS(9421), - [anon_sym_PERCENT_EQ] = ACTIONS(9421), - [anon_sym_PLUS_EQ] = ACTIONS(9421), - [anon_sym_DASH_EQ] = ACTIONS(9421), - [anon_sym_LT_LT_EQ] = ACTIONS(9421), - [anon_sym_GT_GT_EQ] = ACTIONS(9421), - [anon_sym_AMP_EQ] = ACTIONS(9421), - [anon_sym_CARET_EQ] = ACTIONS(9421), - [anon_sym_PIPE_EQ] = ACTIONS(9421), - [anon_sym_and_eq] = ACTIONS(9419), - [anon_sym_or_eq] = ACTIONS(9419), - [anon_sym_xor_eq] = ACTIONS(9419), - [anon_sym_LT_EQ_GT] = ACTIONS(9421), - [anon_sym_or] = ACTIONS(9419), - [anon_sym_and] = ACTIONS(9419), - [anon_sym_bitor] = ACTIONS(9419), - [anon_sym_xor] = ACTIONS(9419), - [anon_sym_bitand] = ACTIONS(9419), - [anon_sym_not_eq] = ACTIONS(9419), - [anon_sym_DASH_DASH] = ACTIONS(9421), - [anon_sym_PLUS_PLUS] = ACTIONS(9421), - [anon_sym_DOT] = ACTIONS(9419), - [anon_sym_DOT_STAR] = ACTIONS(9421), - [anon_sym_DASH_GT] = ACTIONS(9421), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9419), - [anon_sym_override] = ACTIONS(9419), - [anon_sym_requires] = ACTIONS(9419), - [anon_sym_COLON_RBRACK] = ACTIONS(9421), + [sym_type_qualifier] = STATE(3671), + [sym_alignas_qualifier] = STATE(3830), + [aux_sym__type_definition_type_repeat1] = STATE(3671), + [sym_identifier] = ACTIONS(6878), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6880), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6880), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6880), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6878), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6880), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(9425), + [anon_sym___attribute__] = ACTIONS(6878), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACE] = ACTIONS(6880), + [anon_sym_signed] = ACTIONS(6878), + [anon_sym_unsigned] = ACTIONS(6878), + [anon_sym_long] = ACTIONS(6878), + [anon_sym_short] = ACTIONS(6878), + [anon_sym_LBRACK] = ACTIONS(6880), + [anon_sym_const] = ACTIONS(9425), + [anon_sym_constexpr] = ACTIONS(9425), + [anon_sym_volatile] = ACTIONS(9425), + [anon_sym_restrict] = ACTIONS(9425), + [anon_sym___restrict__] = ACTIONS(9425), + [anon_sym__Atomic] = ACTIONS(9425), + [anon_sym__Noreturn] = ACTIONS(9425), + [anon_sym_noreturn] = ACTIONS(9425), + [anon_sym__Nonnull] = ACTIONS(9425), + [anon_sym_mutable] = ACTIONS(9425), + [anon_sym_constinit] = ACTIONS(9425), + [anon_sym_consteval] = ACTIONS(9425), + [anon_sym_alignas] = ACTIONS(9428), + [anon_sym__Alignas] = ACTIONS(9428), + [sym_primitive_type] = ACTIONS(6878), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6878), + [anon_sym_and] = ACTIONS(6878), + [anon_sym_bitor] = ACTIONS(6878), + [anon_sym_xor] = ACTIONS(6878), + [anon_sym_bitand] = ACTIONS(6878), + [anon_sym_not_eq] = ACTIONS(6878), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6878), + [anon_sym_override] = ACTIONS(6878), + [anon_sym_GT2] = ACTIONS(6880), + [anon_sym_requires] = ACTIONS(6878), }, [STATE(3672)] = { - [sym_identifier] = ACTIONS(8946), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8948), - [anon_sym_COMMA] = ACTIONS(8948), - [anon_sym_RPAREN] = ACTIONS(8948), - [aux_sym_preproc_if_token2] = ACTIONS(8948), - [aux_sym_preproc_else_token1] = ACTIONS(8948), - [aux_sym_preproc_elif_token1] = ACTIONS(8946), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8948), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8948), - [anon_sym_LPAREN2] = ACTIONS(8948), - [anon_sym_DASH] = ACTIONS(8946), - [anon_sym_PLUS] = ACTIONS(8946), - [anon_sym_STAR] = ACTIONS(8946), - [anon_sym_SLASH] = ACTIONS(8946), - [anon_sym_PERCENT] = ACTIONS(8946), - [anon_sym_PIPE_PIPE] = ACTIONS(8948), - [anon_sym_AMP_AMP] = ACTIONS(8948), - [anon_sym_PIPE] = ACTIONS(8946), - [anon_sym_CARET] = ACTIONS(8946), - [anon_sym_AMP] = ACTIONS(8946), - [anon_sym_EQ_EQ] = ACTIONS(8948), - [anon_sym_BANG_EQ] = ACTIONS(8948), - [anon_sym_GT] = ACTIONS(8946), - [anon_sym_GT_EQ] = ACTIONS(8948), - [anon_sym_LT_EQ] = ACTIONS(8946), - [anon_sym_LT] = ACTIONS(8946), - [anon_sym_LT_LT] = ACTIONS(8946), - [anon_sym_GT_GT] = ACTIONS(8946), - [anon_sym_SEMI] = ACTIONS(8948), - [anon_sym___attribute__] = ACTIONS(8946), - [anon_sym___attribute] = ACTIONS(8946), - [anon_sym_COLON] = ACTIONS(8946), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8948), - [anon_sym_RBRACE] = ACTIONS(8948), - [anon_sym_LBRACK] = ACTIONS(8948), - [anon_sym_EQ] = ACTIONS(8946), - [anon_sym_QMARK] = ACTIONS(8948), - [anon_sym_STAR_EQ] = ACTIONS(8948), - [anon_sym_SLASH_EQ] = ACTIONS(8948), - [anon_sym_PERCENT_EQ] = ACTIONS(8948), - [anon_sym_PLUS_EQ] = ACTIONS(8948), - [anon_sym_DASH_EQ] = ACTIONS(8948), - [anon_sym_LT_LT_EQ] = ACTIONS(8948), - [anon_sym_GT_GT_EQ] = ACTIONS(8948), - [anon_sym_AMP_EQ] = ACTIONS(8948), - [anon_sym_CARET_EQ] = ACTIONS(8948), - [anon_sym_PIPE_EQ] = ACTIONS(8948), - [anon_sym_and_eq] = ACTIONS(8946), - [anon_sym_or_eq] = ACTIONS(8946), - [anon_sym_xor_eq] = ACTIONS(8946), - [anon_sym_LT_EQ_GT] = ACTIONS(8948), - [anon_sym_or] = ACTIONS(8946), - [anon_sym_and] = ACTIONS(8946), - [anon_sym_bitor] = ACTIONS(8946), - [anon_sym_xor] = ACTIONS(8946), - [anon_sym_bitand] = ACTIONS(8946), - [anon_sym_not_eq] = ACTIONS(8946), - [anon_sym_DASH_DASH] = ACTIONS(8948), - [anon_sym_PLUS_PLUS] = ACTIONS(8948), - [anon_sym_DOT] = ACTIONS(8946), - [anon_sym_DOT_STAR] = ACTIONS(8948), - [anon_sym_DASH_GT] = ACTIONS(8948), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8946), - [anon_sym_override] = ACTIONS(8946), - [anon_sym_requires] = ACTIONS(8946), - [anon_sym_COLON_RBRACK] = ACTIONS(8948), + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym__function_exception_specification] = STATE(4040), + [sym__function_attributes_end] = STATE(5971), + [sym__function_postfix] = STATE(5296), + [sym_trailing_return_type] = STATE(5769), + [sym_noexcept] = STATE(4040), + [sym_throw_specifier] = STATE(4040), + [sym_requires_clause] = STATE(5296), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7970), + [anon_sym_COMMA] = ACTIONS(7970), + [anon_sym_RPAREN] = ACTIONS(7970), + [anon_sym_LPAREN2] = ACTIONS(7970), + [anon_sym_DASH] = ACTIONS(7972), + [anon_sym_PLUS] = ACTIONS(7972), + [anon_sym_STAR] = ACTIONS(7970), + [anon_sym_SLASH] = ACTIONS(7972), + [anon_sym_PERCENT] = ACTIONS(7970), + [anon_sym_PIPE_PIPE] = ACTIONS(7970), + [anon_sym_AMP_AMP] = ACTIONS(7970), + [anon_sym_PIPE] = ACTIONS(7972), + [anon_sym_CARET] = ACTIONS(7970), + [anon_sym_AMP] = ACTIONS(7972), + [anon_sym_EQ_EQ] = ACTIONS(7970), + [anon_sym_BANG_EQ] = ACTIONS(7970), + [anon_sym_GT] = ACTIONS(7972), + [anon_sym_GT_EQ] = ACTIONS(7970), + [anon_sym_LT_EQ] = ACTIONS(7972), + [anon_sym_LT] = ACTIONS(7972), + [anon_sym_LT_LT] = ACTIONS(7970), + [anon_sym_GT_GT] = ACTIONS(7970), + [anon_sym_SEMI] = ACTIONS(7970), + [anon_sym___attribute__] = ACTIONS(7225), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_COLON] = ACTIONS(7972), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7970), + [anon_sym_RBRACE] = ACTIONS(7970), + [anon_sym_LBRACK] = ACTIONS(7972), + [anon_sym_QMARK] = ACTIONS(7970), + [anon_sym_LT_EQ_GT] = ACTIONS(7970), + [anon_sym_or] = ACTIONS(7970), + [anon_sym_and] = ACTIONS(7970), + [anon_sym_bitor] = ACTIONS(7970), + [anon_sym_xor] = ACTIONS(7970), + [anon_sym_bitand] = ACTIONS(7970), + [anon_sym_not_eq] = ACTIONS(7970), + [anon_sym_DASH_DASH] = ACTIONS(7970), + [anon_sym_PLUS_PLUS] = ACTIONS(7970), + [anon_sym_asm] = ACTIONS(6520), + [anon_sym___asm__] = ACTIONS(6520), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7972), + [anon_sym_DOT_STAR] = ACTIONS(7970), + [anon_sym_DASH_GT] = ACTIONS(9341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7272), + [anon_sym_override] = ACTIONS(7272), + [anon_sym_noexcept] = ACTIONS(7235), + [anon_sym_throw] = ACTIONS(7237), + [anon_sym_requires] = ACTIONS(7274), + [anon_sym_COLON_RBRACK] = ACTIONS(7970), }, [STATE(3673)] = { - [sym_identifier] = ACTIONS(9423), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9425), - [anon_sym_COMMA] = ACTIONS(9425), - [anon_sym_RPAREN] = ACTIONS(9425), - [aux_sym_preproc_if_token2] = ACTIONS(9425), - [aux_sym_preproc_else_token1] = ACTIONS(9425), - [aux_sym_preproc_elif_token1] = ACTIONS(9423), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9425), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9425), - [anon_sym_LPAREN2] = ACTIONS(9425), - [anon_sym_DASH] = ACTIONS(9423), - [anon_sym_PLUS] = ACTIONS(9423), - [anon_sym_STAR] = ACTIONS(9423), - [anon_sym_SLASH] = ACTIONS(9423), - [anon_sym_PERCENT] = ACTIONS(9423), - [anon_sym_PIPE_PIPE] = ACTIONS(9425), - [anon_sym_AMP_AMP] = ACTIONS(9425), - [anon_sym_PIPE] = ACTIONS(9423), - [anon_sym_CARET] = ACTIONS(9423), - [anon_sym_AMP] = ACTIONS(9423), - [anon_sym_EQ_EQ] = ACTIONS(9425), - [anon_sym_BANG_EQ] = ACTIONS(9425), - [anon_sym_GT] = ACTIONS(9423), - [anon_sym_GT_EQ] = ACTIONS(9425), - [anon_sym_LT_EQ] = ACTIONS(9423), - [anon_sym_LT] = ACTIONS(9423), - [anon_sym_LT_LT] = ACTIONS(9423), - [anon_sym_GT_GT] = ACTIONS(9423), - [anon_sym_SEMI] = ACTIONS(9425), - [anon_sym___attribute__] = ACTIONS(9423), - [anon_sym___attribute] = ACTIONS(9423), - [anon_sym_COLON] = ACTIONS(9423), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9425), - [anon_sym_RBRACE] = ACTIONS(9425), - [anon_sym_LBRACK] = ACTIONS(9425), - [anon_sym_EQ] = ACTIONS(9423), - [anon_sym_QMARK] = ACTIONS(9425), - [anon_sym_STAR_EQ] = ACTIONS(9425), - [anon_sym_SLASH_EQ] = ACTIONS(9425), - [anon_sym_PERCENT_EQ] = ACTIONS(9425), - [anon_sym_PLUS_EQ] = ACTIONS(9425), - [anon_sym_DASH_EQ] = ACTIONS(9425), - [anon_sym_LT_LT_EQ] = ACTIONS(9425), - [anon_sym_GT_GT_EQ] = ACTIONS(9425), - [anon_sym_AMP_EQ] = ACTIONS(9425), - [anon_sym_CARET_EQ] = ACTIONS(9425), - [anon_sym_PIPE_EQ] = ACTIONS(9425), - [anon_sym_and_eq] = ACTIONS(9423), - [anon_sym_or_eq] = ACTIONS(9423), - [anon_sym_xor_eq] = ACTIONS(9423), - [anon_sym_LT_EQ_GT] = ACTIONS(9425), - [anon_sym_or] = ACTIONS(9423), - [anon_sym_and] = ACTIONS(9423), - [anon_sym_bitor] = ACTIONS(9423), - [anon_sym_xor] = ACTIONS(9423), - [anon_sym_bitand] = ACTIONS(9423), - [anon_sym_not_eq] = ACTIONS(9423), - [anon_sym_DASH_DASH] = ACTIONS(9425), - [anon_sym_PLUS_PLUS] = ACTIONS(9425), - [anon_sym_DOT] = ACTIONS(9423), - [anon_sym_DOT_STAR] = ACTIONS(9425), - [anon_sym_DASH_GT] = ACTIONS(9425), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9423), - [anon_sym_override] = ACTIONS(9423), - [anon_sym_requires] = ACTIONS(9423), - [anon_sym_COLON_RBRACK] = ACTIONS(9425), + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON] = ACTIONS(5702), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), }, [STATE(3674)] = { - [sym__abstract_declarator] = STATE(4163), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_parameter_list] = STATE(1953), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9427), - [anon_sym_COMMA] = ACTIONS(9427), - [anon_sym_RPAREN] = ACTIONS(9427), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(9429), - [anon_sym_PLUS] = ACTIONS(9429), - [anon_sym_STAR] = ACTIONS(6843), - [anon_sym_SLASH] = ACTIONS(9429), - [anon_sym_PERCENT] = ACTIONS(9429), - [anon_sym_PIPE_PIPE] = ACTIONS(9427), - [anon_sym_AMP_AMP] = ACTIONS(6845), - [anon_sym_PIPE] = ACTIONS(9429), - [anon_sym_CARET] = ACTIONS(9429), - [anon_sym_AMP] = ACTIONS(6847), - [anon_sym_EQ_EQ] = ACTIONS(9427), - [anon_sym_BANG_EQ] = ACTIONS(9427), - [anon_sym_GT] = ACTIONS(9429), - [anon_sym_GT_EQ] = ACTIONS(9427), - [anon_sym_LT_EQ] = ACTIONS(9429), - [anon_sym_LT] = ACTIONS(9429), - [anon_sym_LT_LT] = ACTIONS(9429), - [anon_sym_GT_GT] = ACTIONS(9429), - [anon_sym_SEMI] = ACTIONS(9427), - [anon_sym_COLON] = ACTIONS(9429), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9427), - [anon_sym_RBRACE] = ACTIONS(9427), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(9429), - [anon_sym_QMARK] = ACTIONS(9427), - [anon_sym_STAR_EQ] = ACTIONS(9427), - [anon_sym_SLASH_EQ] = ACTIONS(9427), - [anon_sym_PERCENT_EQ] = ACTIONS(9427), - [anon_sym_PLUS_EQ] = ACTIONS(9427), - [anon_sym_DASH_EQ] = ACTIONS(9427), - [anon_sym_LT_LT_EQ] = ACTIONS(9427), - [anon_sym_GT_GT_EQ] = ACTIONS(9427), - [anon_sym_AMP_EQ] = ACTIONS(9427), - [anon_sym_CARET_EQ] = ACTIONS(9427), - [anon_sym_PIPE_EQ] = ACTIONS(9427), - [anon_sym_and_eq] = ACTIONS(9427), - [anon_sym_or_eq] = ACTIONS(9427), - [anon_sym_xor_eq] = ACTIONS(9427), - [anon_sym_LT_EQ_GT] = ACTIONS(9427), - [anon_sym_or] = ACTIONS(9429), - [anon_sym_and] = ACTIONS(9429), - [anon_sym_bitor] = ACTIONS(9427), - [anon_sym_xor] = ACTIONS(9429), - [anon_sym_bitand] = ACTIONS(9427), - [anon_sym_not_eq] = ACTIONS(9427), - [anon_sym_DASH_DASH] = ACTIONS(9427), - [anon_sym_PLUS_PLUS] = ACTIONS(9427), - [anon_sym_DOT] = ACTIONS(9429), - [anon_sym_DOT_STAR] = ACTIONS(9427), - [anon_sym_DASH_GT] = ACTIONS(9427), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9427), - [anon_sym_override] = ACTIONS(9427), - [anon_sym_requires] = ACTIONS(9427), - [anon_sym_COLON_RBRACK] = ACTIONS(9427), - }, - [STATE(3675)] = { - [sym_identifier] = ACTIONS(8905), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8907), - [anon_sym_COMMA] = ACTIONS(8907), - [anon_sym_RPAREN] = ACTIONS(8907), - [aux_sym_preproc_if_token2] = ACTIONS(8907), - [aux_sym_preproc_else_token1] = ACTIONS(8907), - [aux_sym_preproc_elif_token1] = ACTIONS(8905), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8907), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8907), - [anon_sym_LPAREN2] = ACTIONS(8907), - [anon_sym_DASH] = ACTIONS(8905), - [anon_sym_PLUS] = ACTIONS(8905), - [anon_sym_STAR] = ACTIONS(8905), - [anon_sym_SLASH] = ACTIONS(8905), - [anon_sym_PERCENT] = ACTIONS(8905), - [anon_sym_PIPE_PIPE] = ACTIONS(8907), - [anon_sym_AMP_AMP] = ACTIONS(8907), - [anon_sym_PIPE] = ACTIONS(8905), - [anon_sym_CARET] = ACTIONS(8905), - [anon_sym_AMP] = ACTIONS(8905), - [anon_sym_EQ_EQ] = ACTIONS(8907), - [anon_sym_BANG_EQ] = ACTIONS(8907), - [anon_sym_GT] = ACTIONS(8905), - [anon_sym_GT_EQ] = ACTIONS(8907), - [anon_sym_LT_EQ] = ACTIONS(8905), - [anon_sym_LT] = ACTIONS(8905), - [anon_sym_LT_LT] = ACTIONS(8905), - [anon_sym_GT_GT] = ACTIONS(8905), - [anon_sym_SEMI] = ACTIONS(8907), - [anon_sym___attribute__] = ACTIONS(8905), - [anon_sym___attribute] = ACTIONS(8905), - [anon_sym_COLON] = ACTIONS(8905), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8907), - [anon_sym_RBRACE] = ACTIONS(8907), - [anon_sym_LBRACK] = ACTIONS(8907), - [anon_sym_EQ] = ACTIONS(8905), - [anon_sym_QMARK] = ACTIONS(8907), - [anon_sym_STAR_EQ] = ACTIONS(8907), - [anon_sym_SLASH_EQ] = ACTIONS(8907), - [anon_sym_PERCENT_EQ] = ACTIONS(8907), - [anon_sym_PLUS_EQ] = ACTIONS(8907), - [anon_sym_DASH_EQ] = ACTIONS(8907), - [anon_sym_LT_LT_EQ] = ACTIONS(8907), - [anon_sym_GT_GT_EQ] = ACTIONS(8907), - [anon_sym_AMP_EQ] = ACTIONS(8907), - [anon_sym_CARET_EQ] = ACTIONS(8907), - [anon_sym_PIPE_EQ] = ACTIONS(8907), - [anon_sym_and_eq] = ACTIONS(8905), - [anon_sym_or_eq] = ACTIONS(8905), - [anon_sym_xor_eq] = ACTIONS(8905), - [anon_sym_LT_EQ_GT] = ACTIONS(8907), - [anon_sym_or] = ACTIONS(8905), - [anon_sym_and] = ACTIONS(8905), - [anon_sym_bitor] = ACTIONS(8905), - [anon_sym_xor] = ACTIONS(8905), - [anon_sym_bitand] = ACTIONS(8905), - [anon_sym_not_eq] = ACTIONS(8905), - [anon_sym_DASH_DASH] = ACTIONS(8907), - [anon_sym_PLUS_PLUS] = ACTIONS(8907), - [anon_sym_DOT] = ACTIONS(8905), - [anon_sym_DOT_STAR] = ACTIONS(8907), - [anon_sym_DASH_GT] = ACTIONS(8907), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8905), - [anon_sym_override] = ACTIONS(8905), - [anon_sym_requires] = ACTIONS(8905), - [anon_sym_COLON_RBRACK] = ACTIONS(8907), - }, - [STATE(3676)] = { - [sym_identifier] = ACTIONS(7459), - [anon_sym_LPAREN2] = ACTIONS(7457), - [anon_sym_TILDE] = ACTIONS(7457), - [anon_sym_STAR] = ACTIONS(7457), - [anon_sym_PIPE_PIPE] = ACTIONS(7457), - [anon_sym_AMP_AMP] = ACTIONS(7457), - [anon_sym_AMP] = ACTIONS(7459), - [anon_sym___extension__] = ACTIONS(7459), - [anon_sym_virtual] = ACTIONS(7459), - [anon_sym_extern] = ACTIONS(7459), - [anon_sym___attribute__] = ACTIONS(7459), - [anon_sym___attribute] = ACTIONS(7459), - [anon_sym_using] = ACTIONS(7459), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7457), - [anon_sym___declspec] = ACTIONS(7459), - [anon_sym___based] = ACTIONS(7459), - [anon_sym___cdecl] = ACTIONS(7459), - [anon_sym___clrcall] = ACTIONS(7459), - [anon_sym___stdcall] = ACTIONS(7459), - [anon_sym___fastcall] = ACTIONS(7459), - [anon_sym___thiscall] = ACTIONS(7459), - [anon_sym___vectorcall] = ACTIONS(7459), - [anon_sym_signed] = ACTIONS(7459), - [anon_sym_unsigned] = ACTIONS(7459), - [anon_sym_long] = ACTIONS(7459), - [anon_sym_short] = ACTIONS(7459), - [anon_sym_LBRACK] = ACTIONS(7459), - [anon_sym_static] = ACTIONS(7459), - [anon_sym_register] = ACTIONS(7459), - [anon_sym_inline] = ACTIONS(7459), - [anon_sym___inline] = ACTIONS(7459), - [anon_sym___inline__] = ACTIONS(7459), - [anon_sym___forceinline] = ACTIONS(7459), - [anon_sym_thread_local] = ACTIONS(7459), - [anon_sym___thread] = ACTIONS(7459), - [anon_sym_const] = ACTIONS(7459), - [anon_sym_constexpr] = ACTIONS(7459), - [anon_sym_volatile] = ACTIONS(7459), - [anon_sym_restrict] = ACTIONS(7459), - [anon_sym___restrict__] = ACTIONS(7459), - [anon_sym__Atomic] = ACTIONS(7459), - [anon_sym__Noreturn] = ACTIONS(7459), - [anon_sym_noreturn] = ACTIONS(7459), - [anon_sym__Nonnull] = ACTIONS(7459), - [anon_sym_mutable] = ACTIONS(7459), - [anon_sym_constinit] = ACTIONS(7459), - [anon_sym_consteval] = ACTIONS(7459), - [anon_sym_alignas] = ACTIONS(7459), - [anon_sym__Alignas] = ACTIONS(7459), - [sym_primitive_type] = ACTIONS(7459), - [anon_sym_enum] = ACTIONS(7459), - [anon_sym_class] = ACTIONS(7459), - [anon_sym_struct] = ACTIONS(7459), - [anon_sym_union] = ACTIONS(7459), - [anon_sym_or] = ACTIONS(7459), - [anon_sym_and] = ACTIONS(7459), - [anon_sym_typename] = ACTIONS(7459), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7459), - [anon_sym_decltype] = ACTIONS(7459), - [anon_sym_explicit] = ACTIONS(7459), - [anon_sym_template] = ACTIONS(7459), - [anon_sym_operator] = ACTIONS(7459), - [anon_sym_friend] = ACTIONS(7459), - [anon_sym_concept] = ACTIONS(7459), - [anon_sym_LBRACK_COLON] = ACTIONS(7457), - }, - [STATE(3677)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(8752), - [anon_sym_COMMA] = ACTIONS(8752), - [anon_sym_RPAREN] = ACTIONS(8752), - [anon_sym_LPAREN2] = ACTIONS(8752), - [anon_sym_DASH] = ACTIONS(8750), - [anon_sym_PLUS] = ACTIONS(8750), - [anon_sym_STAR] = ACTIONS(8750), - [anon_sym_SLASH] = ACTIONS(8750), - [anon_sym_PERCENT] = ACTIONS(8750), - [anon_sym_PIPE_PIPE] = ACTIONS(8752), - [anon_sym_AMP_AMP] = ACTIONS(8752), - [anon_sym_PIPE] = ACTIONS(8750), - [anon_sym_CARET] = ACTIONS(8750), - [anon_sym_AMP] = ACTIONS(8750), - [anon_sym_EQ_EQ] = ACTIONS(8752), - [anon_sym_BANG_EQ] = ACTIONS(8752), - [anon_sym_GT] = ACTIONS(8750), - [anon_sym_GT_EQ] = ACTIONS(8752), - [anon_sym_LT_EQ] = ACTIONS(8750), - [anon_sym_LT] = ACTIONS(8750), - [anon_sym_LT_LT] = ACTIONS(8750), - [anon_sym_GT_GT] = ACTIONS(8750), - [anon_sym_SEMI] = ACTIONS(8752), - [anon_sym_COLON] = ACTIONS(8750), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8752), - [anon_sym_RBRACE] = ACTIONS(8752), - [anon_sym_LBRACK] = ACTIONS(8752), - [anon_sym_EQ] = ACTIONS(8750), - [anon_sym_QMARK] = ACTIONS(8752), - [anon_sym_STAR_EQ] = ACTIONS(8752), - [anon_sym_SLASH_EQ] = ACTIONS(8752), - [anon_sym_PERCENT_EQ] = ACTIONS(8752), - [anon_sym_PLUS_EQ] = ACTIONS(8752), - [anon_sym_DASH_EQ] = ACTIONS(8752), - [anon_sym_LT_LT_EQ] = ACTIONS(8752), - [anon_sym_GT_GT_EQ] = ACTIONS(8752), - [anon_sym_AMP_EQ] = ACTIONS(8752), - [anon_sym_CARET_EQ] = ACTIONS(8752), - [anon_sym_PIPE_EQ] = ACTIONS(8752), - [anon_sym_and_eq] = ACTIONS(8750), - [anon_sym_or_eq] = ACTIONS(8750), - [anon_sym_xor_eq] = ACTIONS(8750), - [anon_sym_LT_EQ_GT] = ACTIONS(8752), - [anon_sym_or] = ACTIONS(8750), - [anon_sym_and] = ACTIONS(8750), - [anon_sym_bitor] = ACTIONS(8750), - [anon_sym_xor] = ACTIONS(8750), - [anon_sym_bitand] = ACTIONS(8750), - [anon_sym_not_eq] = ACTIONS(8750), - [anon_sym_DASH_DASH] = ACTIONS(8752), - [anon_sym_PLUS_PLUS] = ACTIONS(8752), - [anon_sym_DOT] = ACTIONS(8750), - [anon_sym_DOT_STAR] = ACTIONS(8752), - [anon_sym_DASH_GT] = ACTIONS(8752), - [anon_sym_L_DQUOTE] = ACTIONS(8752), - [anon_sym_u_DQUOTE] = ACTIONS(8752), - [anon_sym_U_DQUOTE] = ACTIONS(8752), - [anon_sym_u8_DQUOTE] = ACTIONS(8752), - [anon_sym_DQUOTE] = ACTIONS(8752), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8752), - [anon_sym_LR_DQUOTE] = ACTIONS(8752), - [anon_sym_uR_DQUOTE] = ACTIONS(8752), - [anon_sym_UR_DQUOTE] = ACTIONS(8752), - [anon_sym_u8R_DQUOTE] = ACTIONS(8752), - [anon_sym_COLON_RBRACK] = ACTIONS(8752), - [sym_literal_suffix] = ACTIONS(8750), - }, - [STATE(3678)] = { - [sym_argument_list] = STATE(3898), - [sym_initializer_list] = STATE(3898), + [sym_attribute_declaration] = STATE(3752), + [sym_parameter_list] = STATE(3233), + [aux_sym_attributed_declarator_repeat1] = STATE(3752), [sym_identifier] = ACTIONS(9431), [anon_sym_DOT_DOT_DOT] = ACTIONS(9433), [anon_sym_COMMA] = ACTIONS(9433), @@ -441916,7 +441475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_elif_token1] = ACTIONS(9431), [aux_sym_preproc_elifdef_token1] = ACTIONS(9433), [aux_sym_preproc_elifdef_token2] = ACTIONS(9433), - [anon_sym_LPAREN2] = ACTIONS(9230), + [anon_sym_LPAREN2] = ACTIONS(9393), [anon_sym_DASH] = ACTIONS(9431), [anon_sym_PLUS] = ACTIONS(9431), [anon_sym_STAR] = ACTIONS(9431), @@ -441939,10 +441498,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym___attribute__] = ACTIONS(9431), [anon_sym___attribute] = ACTIONS(9431), [anon_sym_COLON] = ACTIONS(9431), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9433), - [anon_sym_LBRACE] = ACTIONS(2396), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), [anon_sym_RBRACE] = ACTIONS(9433), - [anon_sym_LBRACK] = ACTIONS(9433), + [anon_sym_LBRACK] = ACTIONS(9395), [anon_sym_EQ] = ACTIONS(9431), [anon_sym_QMARK] = ACTIONS(9433), [anon_sym_STAR_EQ] = ACTIONS(9433), @@ -441973,2708 +441531,1824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), [anon_sym_COLON_RBRACK] = ACTIONS(9433), }, - [STATE(3679)] = { - [sym_identifier] = ACTIONS(9435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9437), - [anon_sym_COMMA] = ACTIONS(9437), - [anon_sym_RPAREN] = ACTIONS(9437), - [aux_sym_preproc_if_token2] = ACTIONS(9437), - [aux_sym_preproc_else_token1] = ACTIONS(9437), - [aux_sym_preproc_elif_token1] = ACTIONS(9435), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9437), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9437), - [anon_sym_LPAREN2] = ACTIONS(9437), - [anon_sym_DASH] = ACTIONS(9435), - [anon_sym_PLUS] = ACTIONS(9435), - [anon_sym_STAR] = ACTIONS(9435), - [anon_sym_SLASH] = ACTIONS(9435), - [anon_sym_PERCENT] = ACTIONS(9435), - [anon_sym_PIPE_PIPE] = ACTIONS(9437), - [anon_sym_AMP_AMP] = ACTIONS(9437), - [anon_sym_PIPE] = ACTIONS(9435), - [anon_sym_CARET] = ACTIONS(9435), - [anon_sym_AMP] = ACTIONS(9435), - [anon_sym_EQ_EQ] = ACTIONS(9437), - [anon_sym_BANG_EQ] = ACTIONS(9437), - [anon_sym_GT] = ACTIONS(9435), - [anon_sym_GT_EQ] = ACTIONS(9437), - [anon_sym_LT_EQ] = ACTIONS(9435), + [STATE(3675)] = { + [sym_template_argument_list] = STATE(2048), + [sym_identifier] = ACTIONS(7124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7129), + [anon_sym_COMMA] = ACTIONS(7129), + [anon_sym_RPAREN] = ACTIONS(7129), + [aux_sym_preproc_if_token2] = ACTIONS(7129), + [aux_sym_preproc_else_token1] = ACTIONS(7129), + [aux_sym_preproc_elif_token1] = ACTIONS(7124), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7129), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7129), + [anon_sym_LPAREN2] = ACTIONS(7119), + [anon_sym_DASH] = ACTIONS(7124), + [anon_sym_PLUS] = ACTIONS(7124), + [anon_sym_STAR] = ACTIONS(7124), + [anon_sym_SLASH] = ACTIONS(7124), + [anon_sym_PERCENT] = ACTIONS(7124), + [anon_sym_PIPE_PIPE] = ACTIONS(7129), + [anon_sym_AMP_AMP] = ACTIONS(7129), + [anon_sym_PIPE] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7124), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_EQ_EQ] = ACTIONS(7129), + [anon_sym_BANG_EQ] = ACTIONS(7129), + [anon_sym_GT] = ACTIONS(7124), + [anon_sym_GT_EQ] = ACTIONS(7129), + [anon_sym_LT_EQ] = ACTIONS(7124), + [anon_sym_LT] = ACTIONS(7405), + [anon_sym_LT_LT] = ACTIONS(7124), + [anon_sym_GT_GT] = ACTIONS(7124), + [anon_sym_SEMI] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7124), + [anon_sym___attribute] = ACTIONS(7124), + [anon_sym_COLON] = ACTIONS(7124), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7129), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_RBRACE] = ACTIONS(7129), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_EQ] = ACTIONS(7124), + [anon_sym_QMARK] = ACTIONS(7129), + [anon_sym_STAR_EQ] = ACTIONS(7129), + [anon_sym_SLASH_EQ] = ACTIONS(7129), + [anon_sym_PERCENT_EQ] = ACTIONS(7129), + [anon_sym_PLUS_EQ] = ACTIONS(7129), + [anon_sym_DASH_EQ] = ACTIONS(7129), + [anon_sym_LT_LT_EQ] = ACTIONS(7129), + [anon_sym_GT_GT_EQ] = ACTIONS(7129), + [anon_sym_AMP_EQ] = ACTIONS(7129), + [anon_sym_CARET_EQ] = ACTIONS(7129), + [anon_sym_PIPE_EQ] = ACTIONS(7129), + [anon_sym_and_eq] = ACTIONS(7124), + [anon_sym_or_eq] = ACTIONS(7124), + [anon_sym_xor_eq] = ACTIONS(7124), + [anon_sym_LT_EQ_GT] = ACTIONS(7129), + [anon_sym_or] = ACTIONS(7124), + [anon_sym_and] = ACTIONS(7124), + [anon_sym_bitor] = ACTIONS(7124), + [anon_sym_xor] = ACTIONS(7124), + [anon_sym_bitand] = ACTIONS(7124), + [anon_sym_not_eq] = ACTIONS(7124), + [anon_sym_DASH_DASH] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7129), + [anon_sym_DOT] = ACTIONS(7124), + [anon_sym_DOT_STAR] = ACTIONS(7129), + [anon_sym_DASH_GT] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7129), + }, + [STATE(3676)] = { + [sym_string_literal] = STATE(3874), + [sym_template_argument_list] = STATE(5892), + [sym_raw_string_literal] = STATE(3874), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), [anon_sym_LT] = ACTIONS(9435), - [anon_sym_LT_LT] = ACTIONS(9435), - [anon_sym_GT_GT] = ACTIONS(9435), - [anon_sym_SEMI] = ACTIONS(9437), - [anon_sym___attribute__] = ACTIONS(9435), - [anon_sym___attribute] = ACTIONS(9435), - [anon_sym_COLON] = ACTIONS(9435), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9437), - [anon_sym_RBRACE] = ACTIONS(9437), - [anon_sym_LBRACK] = ACTIONS(9437), - [anon_sym_EQ] = ACTIONS(9435), - [anon_sym_QMARK] = ACTIONS(9437), - [anon_sym_STAR_EQ] = ACTIONS(9437), - [anon_sym_SLASH_EQ] = ACTIONS(9437), - [anon_sym_PERCENT_EQ] = ACTIONS(9437), - [anon_sym_PLUS_EQ] = ACTIONS(9437), - [anon_sym_DASH_EQ] = ACTIONS(9437), - [anon_sym_LT_LT_EQ] = ACTIONS(9437), - [anon_sym_GT_GT_EQ] = ACTIONS(9437), - [anon_sym_AMP_EQ] = ACTIONS(9437), - [anon_sym_CARET_EQ] = ACTIONS(9437), - [anon_sym_PIPE_EQ] = ACTIONS(9437), - [anon_sym_and_eq] = ACTIONS(9435), - [anon_sym_or_eq] = ACTIONS(9435), - [anon_sym_xor_eq] = ACTIONS(9435), - [anon_sym_LT_EQ_GT] = ACTIONS(9437), - [anon_sym_or] = ACTIONS(9435), - [anon_sym_and] = ACTIONS(9435), - [anon_sym_bitor] = ACTIONS(9435), - [anon_sym_xor] = ACTIONS(9435), - [anon_sym_bitand] = ACTIONS(9435), - [anon_sym_not_eq] = ACTIONS(9435), - [anon_sym_DASH_DASH] = ACTIONS(9437), - [anon_sym_PLUS_PLUS] = ACTIONS(9437), - [anon_sym_DOT] = ACTIONS(9435), - [anon_sym_DOT_STAR] = ACTIONS(9437), - [anon_sym_DASH_GT] = ACTIONS(9437), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9435), - [anon_sym_override] = ACTIONS(9435), - [anon_sym_requires] = ACTIONS(9435), - [anon_sym_COLON_RBRACK] = ACTIONS(9437), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(6958), + [anon_sym_or_eq] = ACTIONS(6958), + [anon_sym_xor_eq] = ACTIONS(6958), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5619), + [anon_sym_L_DQUOTE] = ACTIONS(5959), + [anon_sym_u_DQUOTE] = ACTIONS(5959), + [anon_sym_U_DQUOTE] = ACTIONS(5959), + [anon_sym_u8_DQUOTE] = ACTIONS(5959), + [anon_sym_DQUOTE] = ACTIONS(5959), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(5961), + [anon_sym_LR_DQUOTE] = ACTIONS(5961), + [anon_sym_uR_DQUOTE] = ACTIONS(5961), + [anon_sym_UR_DQUOTE] = ACTIONS(5961), + [anon_sym_u8R_DQUOTE] = ACTIONS(5961), + [anon_sym_DASH_GT_STAR] = ACTIONS(5611), + }, + [STATE(3677)] = { + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON] = ACTIONS(5630), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + }, + [STATE(3678)] = { + [sym_identifier] = ACTIONS(8957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8959), + [anon_sym_COMMA] = ACTIONS(8959), + [anon_sym_RPAREN] = ACTIONS(8959), + [aux_sym_preproc_if_token2] = ACTIONS(8959), + [aux_sym_preproc_else_token1] = ACTIONS(8959), + [aux_sym_preproc_elif_token1] = ACTIONS(8957), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8959), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8959), + [anon_sym_LPAREN2] = ACTIONS(8959), + [anon_sym_DASH] = ACTIONS(8957), + [anon_sym_PLUS] = ACTIONS(8957), + [anon_sym_STAR] = ACTIONS(8957), + [anon_sym_SLASH] = ACTIONS(8957), + [anon_sym_PERCENT] = ACTIONS(8957), + [anon_sym_PIPE_PIPE] = ACTIONS(8959), + [anon_sym_AMP_AMP] = ACTIONS(8959), + [anon_sym_PIPE] = ACTIONS(8957), + [anon_sym_CARET] = ACTIONS(8957), + [anon_sym_AMP] = ACTIONS(8957), + [anon_sym_EQ_EQ] = ACTIONS(8959), + [anon_sym_BANG_EQ] = ACTIONS(8959), + [anon_sym_GT] = ACTIONS(8957), + [anon_sym_GT_EQ] = ACTIONS(8959), + [anon_sym_LT_EQ] = ACTIONS(8957), + [anon_sym_LT] = ACTIONS(8957), + [anon_sym_LT_LT] = ACTIONS(8957), + [anon_sym_GT_GT] = ACTIONS(8957), + [anon_sym_SEMI] = ACTIONS(8959), + [anon_sym___attribute__] = ACTIONS(8957), + [anon_sym___attribute] = ACTIONS(8957), + [anon_sym_COLON] = ACTIONS(8957), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8959), + [anon_sym_RBRACE] = ACTIONS(8959), + [anon_sym_LBRACK] = ACTIONS(8959), + [anon_sym_EQ] = ACTIONS(8957), + [anon_sym_QMARK] = ACTIONS(8959), + [anon_sym_STAR_EQ] = ACTIONS(8959), + [anon_sym_SLASH_EQ] = ACTIONS(8959), + [anon_sym_PERCENT_EQ] = ACTIONS(8959), + [anon_sym_PLUS_EQ] = ACTIONS(8959), + [anon_sym_DASH_EQ] = ACTIONS(8959), + [anon_sym_LT_LT_EQ] = ACTIONS(8959), + [anon_sym_GT_GT_EQ] = ACTIONS(8959), + [anon_sym_AMP_EQ] = ACTIONS(8959), + [anon_sym_CARET_EQ] = ACTIONS(8959), + [anon_sym_PIPE_EQ] = ACTIONS(8959), + [anon_sym_and_eq] = ACTIONS(8957), + [anon_sym_or_eq] = ACTIONS(8957), + [anon_sym_xor_eq] = ACTIONS(8957), + [anon_sym_LT_EQ_GT] = ACTIONS(8959), + [anon_sym_or] = ACTIONS(8957), + [anon_sym_and] = ACTIONS(8957), + [anon_sym_bitor] = ACTIONS(8957), + [anon_sym_xor] = ACTIONS(8957), + [anon_sym_bitand] = ACTIONS(8957), + [anon_sym_not_eq] = ACTIONS(8957), + [anon_sym_DASH_DASH] = ACTIONS(8959), + [anon_sym_PLUS_PLUS] = ACTIONS(8959), + [anon_sym_DOT] = ACTIONS(8957), + [anon_sym_DOT_STAR] = ACTIONS(8959), + [anon_sym_DASH_GT] = ACTIONS(8959), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8957), + [anon_sym_override] = ACTIONS(8957), + [anon_sym_requires] = ACTIONS(8957), + [anon_sym_COLON_RBRACK] = ACTIONS(8959), + }, + [STATE(3679)] = { + [sym_identifier] = ACTIONS(9438), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9440), + [anon_sym_COMMA] = ACTIONS(9440), + [anon_sym_RPAREN] = ACTIONS(9440), + [aux_sym_preproc_if_token2] = ACTIONS(9440), + [aux_sym_preproc_else_token1] = ACTIONS(9440), + [aux_sym_preproc_elif_token1] = ACTIONS(9438), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9440), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9440), + [anon_sym_LPAREN2] = ACTIONS(9440), + [anon_sym_DASH] = ACTIONS(9438), + [anon_sym_PLUS] = ACTIONS(9438), + [anon_sym_STAR] = ACTIONS(9438), + [anon_sym_SLASH] = ACTIONS(9438), + [anon_sym_PERCENT] = ACTIONS(9438), + [anon_sym_PIPE_PIPE] = ACTIONS(9440), + [anon_sym_AMP_AMP] = ACTIONS(9440), + [anon_sym_PIPE] = ACTIONS(9438), + [anon_sym_CARET] = ACTIONS(9438), + [anon_sym_AMP] = ACTIONS(9438), + [anon_sym_EQ_EQ] = ACTIONS(9440), + [anon_sym_BANG_EQ] = ACTIONS(9440), + [anon_sym_GT] = ACTIONS(9438), + [anon_sym_GT_EQ] = ACTIONS(9440), + [anon_sym_LT_EQ] = ACTIONS(9438), + [anon_sym_LT] = ACTIONS(9438), + [anon_sym_LT_LT] = ACTIONS(9438), + [anon_sym_GT_GT] = ACTIONS(9438), + [anon_sym_SEMI] = ACTIONS(9440), + [anon_sym___attribute__] = ACTIONS(9438), + [anon_sym___attribute] = ACTIONS(9438), + [anon_sym_COLON] = ACTIONS(9438), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9440), + [anon_sym_RBRACE] = ACTIONS(9440), + [anon_sym_LBRACK] = ACTIONS(9440), + [anon_sym_EQ] = ACTIONS(9438), + [anon_sym_QMARK] = ACTIONS(9440), + [anon_sym_STAR_EQ] = ACTIONS(9440), + [anon_sym_SLASH_EQ] = ACTIONS(9440), + [anon_sym_PERCENT_EQ] = ACTIONS(9440), + [anon_sym_PLUS_EQ] = ACTIONS(9440), + [anon_sym_DASH_EQ] = ACTIONS(9440), + [anon_sym_LT_LT_EQ] = ACTIONS(9440), + [anon_sym_GT_GT_EQ] = ACTIONS(9440), + [anon_sym_AMP_EQ] = ACTIONS(9440), + [anon_sym_CARET_EQ] = ACTIONS(9440), + [anon_sym_PIPE_EQ] = ACTIONS(9440), + [anon_sym_and_eq] = ACTIONS(9438), + [anon_sym_or_eq] = ACTIONS(9438), + [anon_sym_xor_eq] = ACTIONS(9438), + [anon_sym_LT_EQ_GT] = ACTIONS(9440), + [anon_sym_or] = ACTIONS(9438), + [anon_sym_and] = ACTIONS(9438), + [anon_sym_bitor] = ACTIONS(9438), + [anon_sym_xor] = ACTIONS(9438), + [anon_sym_bitand] = ACTIONS(9438), + [anon_sym_not_eq] = ACTIONS(9438), + [anon_sym_DASH_DASH] = ACTIONS(9440), + [anon_sym_PLUS_PLUS] = ACTIONS(9440), + [anon_sym_DOT] = ACTIONS(9438), + [anon_sym_DOT_STAR] = ACTIONS(9440), + [anon_sym_DASH_GT] = ACTIONS(9440), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9438), + [anon_sym_override] = ACTIONS(9438), + [anon_sym_requires] = ACTIONS(9438), + [anon_sym_COLON_RBRACK] = ACTIONS(9440), }, [STATE(3680)] = { - [sym_identifier] = ACTIONS(8942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8944), - [anon_sym_COMMA] = ACTIONS(8944), - [anon_sym_RPAREN] = ACTIONS(8944), - [aux_sym_preproc_if_token2] = ACTIONS(8944), - [aux_sym_preproc_else_token1] = ACTIONS(8944), - [aux_sym_preproc_elif_token1] = ACTIONS(8942), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8944), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8944), - [anon_sym_LPAREN2] = ACTIONS(8944), - [anon_sym_DASH] = ACTIONS(8942), - [anon_sym_PLUS] = ACTIONS(8942), - [anon_sym_STAR] = ACTIONS(8942), - [anon_sym_SLASH] = ACTIONS(8942), - [anon_sym_PERCENT] = ACTIONS(8942), - [anon_sym_PIPE_PIPE] = ACTIONS(8944), - [anon_sym_AMP_AMP] = ACTIONS(8944), - [anon_sym_PIPE] = ACTIONS(8942), - [anon_sym_CARET] = ACTIONS(8942), - [anon_sym_AMP] = ACTIONS(8942), - [anon_sym_EQ_EQ] = ACTIONS(8944), - [anon_sym_BANG_EQ] = ACTIONS(8944), - [anon_sym_GT] = ACTIONS(8942), - [anon_sym_GT_EQ] = ACTIONS(8944), - [anon_sym_LT_EQ] = ACTIONS(8942), - [anon_sym_LT] = ACTIONS(8942), - [anon_sym_LT_LT] = ACTIONS(8942), - [anon_sym_GT_GT] = ACTIONS(8942), - [anon_sym_SEMI] = ACTIONS(8944), - [anon_sym___attribute__] = ACTIONS(8942), - [anon_sym___attribute] = ACTIONS(8942), - [anon_sym_COLON] = ACTIONS(8942), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8944), - [anon_sym_RBRACE] = ACTIONS(8944), - [anon_sym_LBRACK] = ACTIONS(8944), - [anon_sym_EQ] = ACTIONS(8942), - [anon_sym_QMARK] = ACTIONS(8944), - [anon_sym_STAR_EQ] = ACTIONS(8944), - [anon_sym_SLASH_EQ] = ACTIONS(8944), - [anon_sym_PERCENT_EQ] = ACTIONS(8944), - [anon_sym_PLUS_EQ] = ACTIONS(8944), - [anon_sym_DASH_EQ] = ACTIONS(8944), - [anon_sym_LT_LT_EQ] = ACTIONS(8944), - [anon_sym_GT_GT_EQ] = ACTIONS(8944), - [anon_sym_AMP_EQ] = ACTIONS(8944), - [anon_sym_CARET_EQ] = ACTIONS(8944), - [anon_sym_PIPE_EQ] = ACTIONS(8944), - [anon_sym_and_eq] = ACTIONS(8942), - [anon_sym_or_eq] = ACTIONS(8942), - [anon_sym_xor_eq] = ACTIONS(8942), - [anon_sym_LT_EQ_GT] = ACTIONS(8944), - [anon_sym_or] = ACTIONS(8942), - [anon_sym_and] = ACTIONS(8942), - [anon_sym_bitor] = ACTIONS(8942), - [anon_sym_xor] = ACTIONS(8942), - [anon_sym_bitand] = ACTIONS(8942), - [anon_sym_not_eq] = ACTIONS(8942), - [anon_sym_DASH_DASH] = ACTIONS(8944), - [anon_sym_PLUS_PLUS] = ACTIONS(8944), - [anon_sym_DOT] = ACTIONS(8942), - [anon_sym_DOT_STAR] = ACTIONS(8944), - [anon_sym_DASH_GT] = ACTIONS(8944), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8942), - [anon_sym_override] = ACTIONS(8942), - [anon_sym_requires] = ACTIONS(8942), - [anon_sym_COLON_RBRACK] = ACTIONS(8944), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8778), + [anon_sym_COMMA] = ACTIONS(8778), + [anon_sym_RPAREN] = ACTIONS(8778), + [anon_sym_LPAREN2] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8776), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_SLASH] = ACTIONS(8776), + [anon_sym_PERCENT] = ACTIONS(8776), + [anon_sym_PIPE_PIPE] = ACTIONS(8778), + [anon_sym_AMP_AMP] = ACTIONS(8778), + [anon_sym_PIPE] = ACTIONS(8776), + [anon_sym_CARET] = ACTIONS(8776), + [anon_sym_AMP] = ACTIONS(8776), + [anon_sym_EQ_EQ] = ACTIONS(8778), + [anon_sym_BANG_EQ] = ACTIONS(8778), + [anon_sym_GT] = ACTIONS(8776), + [anon_sym_GT_EQ] = ACTIONS(8778), + [anon_sym_LT_EQ] = ACTIONS(8776), + [anon_sym_LT] = ACTIONS(8776), + [anon_sym_LT_LT] = ACTIONS(8776), + [anon_sym_GT_GT] = ACTIONS(8776), + [anon_sym_SEMI] = ACTIONS(8778), + [anon_sym_COLON] = ACTIONS(8776), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8778), + [anon_sym_RBRACE] = ACTIONS(8778), + [anon_sym_LBRACK] = ACTIONS(8778), + [anon_sym_EQ] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [anon_sym_STAR_EQ] = ACTIONS(8778), + [anon_sym_SLASH_EQ] = ACTIONS(8778), + [anon_sym_PERCENT_EQ] = ACTIONS(8778), + [anon_sym_PLUS_EQ] = ACTIONS(8778), + [anon_sym_DASH_EQ] = ACTIONS(8778), + [anon_sym_LT_LT_EQ] = ACTIONS(8778), + [anon_sym_GT_GT_EQ] = ACTIONS(8778), + [anon_sym_AMP_EQ] = ACTIONS(8778), + [anon_sym_CARET_EQ] = ACTIONS(8778), + [anon_sym_PIPE_EQ] = ACTIONS(8778), + [anon_sym_and_eq] = ACTIONS(8776), + [anon_sym_or_eq] = ACTIONS(8776), + [anon_sym_xor_eq] = ACTIONS(8776), + [anon_sym_LT_EQ_GT] = ACTIONS(8778), + [anon_sym_or] = ACTIONS(8776), + [anon_sym_and] = ACTIONS(8776), + [anon_sym_bitor] = ACTIONS(8776), + [anon_sym_xor] = ACTIONS(8776), + [anon_sym_bitand] = ACTIONS(8776), + [anon_sym_not_eq] = ACTIONS(8776), + [anon_sym_DASH_DASH] = ACTIONS(8778), + [anon_sym_PLUS_PLUS] = ACTIONS(8778), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_DOT_STAR] = ACTIONS(8778), + [anon_sym_DASH_GT] = ACTIONS(8778), + [anon_sym_L_DQUOTE] = ACTIONS(8778), + [anon_sym_u_DQUOTE] = ACTIONS(8778), + [anon_sym_U_DQUOTE] = ACTIONS(8778), + [anon_sym_u8_DQUOTE] = ACTIONS(8778), + [anon_sym_DQUOTE] = ACTIONS(8778), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8778), + [anon_sym_LR_DQUOTE] = ACTIONS(8778), + [anon_sym_uR_DQUOTE] = ACTIONS(8778), + [anon_sym_UR_DQUOTE] = ACTIONS(8778), + [anon_sym_u8R_DQUOTE] = ACTIONS(8778), + [anon_sym_COLON_RBRACK] = ACTIONS(8778), + [sym_literal_suffix] = ACTIONS(8776), }, [STATE(3681)] = { - [sym_attribute_declaration] = STATE(3710), - [sym_parameter_list] = STATE(3140), - [aux_sym_attributed_declarator_repeat1] = STATE(3710), - [sym_identifier] = ACTIONS(9439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9441), - [anon_sym_COMMA] = ACTIONS(9441), - [anon_sym_RPAREN] = ACTIONS(9441), - [aux_sym_preproc_if_token2] = ACTIONS(9441), - [aux_sym_preproc_else_token1] = ACTIONS(9441), - [aux_sym_preproc_elif_token1] = ACTIONS(9439), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9441), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9441), - [anon_sym_LPAREN2] = ACTIONS(9304), - [anon_sym_DASH] = ACTIONS(9439), - [anon_sym_PLUS] = ACTIONS(9439), - [anon_sym_STAR] = ACTIONS(9439), - [anon_sym_SLASH] = ACTIONS(9439), - [anon_sym_PERCENT] = ACTIONS(9439), - [anon_sym_PIPE_PIPE] = ACTIONS(9441), - [anon_sym_AMP_AMP] = ACTIONS(9441), - [anon_sym_PIPE] = ACTIONS(9439), - [anon_sym_CARET] = ACTIONS(9439), - [anon_sym_AMP] = ACTIONS(9439), - [anon_sym_EQ_EQ] = ACTIONS(9441), - [anon_sym_BANG_EQ] = ACTIONS(9441), - [anon_sym_GT] = ACTIONS(9439), - [anon_sym_GT_EQ] = ACTIONS(9441), - [anon_sym_LT_EQ] = ACTIONS(9439), - [anon_sym_LT] = ACTIONS(9439), - [anon_sym_LT_LT] = ACTIONS(9439), - [anon_sym_GT_GT] = ACTIONS(9439), - [anon_sym_SEMI] = ACTIONS(9441), - [anon_sym___attribute__] = ACTIONS(9439), - [anon_sym___attribute] = ACTIONS(9439), - [anon_sym_COLON] = ACTIONS(9439), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACE] = ACTIONS(9441), - [anon_sym_LBRACK] = ACTIONS(9306), - [anon_sym_EQ] = ACTIONS(9439), - [anon_sym_QMARK] = ACTIONS(9441), - [anon_sym_STAR_EQ] = ACTIONS(9441), - [anon_sym_SLASH_EQ] = ACTIONS(9441), - [anon_sym_PERCENT_EQ] = ACTIONS(9441), - [anon_sym_PLUS_EQ] = ACTIONS(9441), - [anon_sym_DASH_EQ] = ACTIONS(9441), - [anon_sym_LT_LT_EQ] = ACTIONS(9441), - [anon_sym_GT_GT_EQ] = ACTIONS(9441), - [anon_sym_AMP_EQ] = ACTIONS(9441), - [anon_sym_CARET_EQ] = ACTIONS(9441), - [anon_sym_PIPE_EQ] = ACTIONS(9441), - [anon_sym_and_eq] = ACTIONS(9439), - [anon_sym_or_eq] = ACTIONS(9439), - [anon_sym_xor_eq] = ACTIONS(9439), - [anon_sym_LT_EQ_GT] = ACTIONS(9441), - [anon_sym_or] = ACTIONS(9439), - [anon_sym_and] = ACTIONS(9439), - [anon_sym_bitor] = ACTIONS(9439), - [anon_sym_xor] = ACTIONS(9439), - [anon_sym_bitand] = ACTIONS(9439), - [anon_sym_not_eq] = ACTIONS(9439), - [anon_sym_DASH_DASH] = ACTIONS(9441), - [anon_sym_PLUS_PLUS] = ACTIONS(9441), - [anon_sym_DOT] = ACTIONS(9439), - [anon_sym_DOT_STAR] = ACTIONS(9441), - [anon_sym_DASH_GT] = ACTIONS(9441), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9441), + [sym_identifier] = ACTIONS(7499), + [anon_sym_LPAREN2] = ACTIONS(7479), + [anon_sym_TILDE] = ACTIONS(7479), + [anon_sym_STAR] = ACTIONS(7479), + [anon_sym_PIPE_PIPE] = ACTIONS(7479), + [anon_sym_AMP_AMP] = ACTIONS(7479), + [anon_sym_AMP] = ACTIONS(7499), + [anon_sym___extension__] = ACTIONS(7499), + [anon_sym_virtual] = ACTIONS(7499), + [anon_sym_extern] = ACTIONS(7499), + [anon_sym___attribute__] = ACTIONS(7499), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_using] = ACTIONS(7499), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7479), + [anon_sym___declspec] = ACTIONS(7499), + [anon_sym___based] = ACTIONS(7499), + [anon_sym___cdecl] = ACTIONS(7499), + [anon_sym___clrcall] = ACTIONS(7499), + [anon_sym___stdcall] = ACTIONS(7499), + [anon_sym___fastcall] = ACTIONS(7499), + [anon_sym___thiscall] = ACTIONS(7499), + [anon_sym___vectorcall] = ACTIONS(7499), + [anon_sym_signed] = ACTIONS(7499), + [anon_sym_unsigned] = ACTIONS(7499), + [anon_sym_long] = ACTIONS(7499), + [anon_sym_short] = ACTIONS(7499), + [anon_sym_LBRACK] = ACTIONS(7499), + [anon_sym_static] = ACTIONS(7499), + [anon_sym_register] = ACTIONS(7499), + [anon_sym_inline] = ACTIONS(7499), + [anon_sym___inline] = ACTIONS(7499), + [anon_sym___inline__] = ACTIONS(7499), + [anon_sym___forceinline] = ACTIONS(7499), + [anon_sym_thread_local] = ACTIONS(7499), + [anon_sym___thread] = ACTIONS(7499), + [anon_sym_const] = ACTIONS(7499), + [anon_sym_constexpr] = ACTIONS(7499), + [anon_sym_volatile] = ACTIONS(7499), + [anon_sym_restrict] = ACTIONS(7499), + [anon_sym___restrict__] = ACTIONS(7499), + [anon_sym__Atomic] = ACTIONS(7499), + [anon_sym__Noreturn] = ACTIONS(7499), + [anon_sym_noreturn] = ACTIONS(7499), + [anon_sym__Nonnull] = ACTIONS(7499), + [anon_sym_mutable] = ACTIONS(7499), + [anon_sym_constinit] = ACTIONS(7499), + [anon_sym_consteval] = ACTIONS(7499), + [anon_sym_alignas] = ACTIONS(7499), + [anon_sym__Alignas] = ACTIONS(7499), + [sym_primitive_type] = ACTIONS(7499), + [anon_sym_enum] = ACTIONS(7499), + [anon_sym_class] = ACTIONS(7499), + [anon_sym_struct] = ACTIONS(7499), + [anon_sym_union] = ACTIONS(7499), + [anon_sym_or] = ACTIONS(7499), + [anon_sym_and] = ACTIONS(7499), + [anon_sym_typename] = ACTIONS(7499), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7499), + [anon_sym_decltype] = ACTIONS(7499), + [anon_sym_explicit] = ACTIONS(7499), + [anon_sym_template] = ACTIONS(7499), + [anon_sym_operator] = ACTIONS(7499), + [anon_sym_friend] = ACTIONS(7499), + [anon_sym_concept] = ACTIONS(7499), + [anon_sym_LBRACK_COLON] = ACTIONS(7479), }, [STATE(3682)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3284), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(9114), - [anon_sym_unsigned] = ACTIONS(9114), - [anon_sym_long] = ACTIONS(9114), - [anon_sym_short] = ACTIONS(9114), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), + [sym_identifier] = ACTIONS(8937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8939), + [anon_sym_COMMA] = ACTIONS(8939), + [anon_sym_RPAREN] = ACTIONS(8939), + [aux_sym_preproc_if_token2] = ACTIONS(8939), + [aux_sym_preproc_else_token1] = ACTIONS(8939), + [aux_sym_preproc_elif_token1] = ACTIONS(8937), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8939), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8939), + [anon_sym_LPAREN2] = ACTIONS(8939), + [anon_sym_DASH] = ACTIONS(8937), + [anon_sym_PLUS] = ACTIONS(8937), + [anon_sym_STAR] = ACTIONS(8937), + [anon_sym_SLASH] = ACTIONS(8937), + [anon_sym_PERCENT] = ACTIONS(8937), + [anon_sym_PIPE_PIPE] = ACTIONS(8939), + [anon_sym_AMP_AMP] = ACTIONS(8939), + [anon_sym_PIPE] = ACTIONS(8937), + [anon_sym_CARET] = ACTIONS(8937), + [anon_sym_AMP] = ACTIONS(8937), + [anon_sym_EQ_EQ] = ACTIONS(8939), + [anon_sym_BANG_EQ] = ACTIONS(8939), + [anon_sym_GT] = ACTIONS(8937), + [anon_sym_GT_EQ] = ACTIONS(8939), + [anon_sym_LT_EQ] = ACTIONS(8937), + [anon_sym_LT] = ACTIONS(8937), + [anon_sym_LT_LT] = ACTIONS(8937), + [anon_sym_GT_GT] = ACTIONS(8937), + [anon_sym_SEMI] = ACTIONS(8939), + [anon_sym___attribute__] = ACTIONS(8937), + [anon_sym___attribute] = ACTIONS(8937), + [anon_sym_COLON] = ACTIONS(8937), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8939), + [anon_sym_RBRACE] = ACTIONS(8939), + [anon_sym_LBRACK] = ACTIONS(8939), + [anon_sym_EQ] = ACTIONS(8937), + [anon_sym_QMARK] = ACTIONS(8939), + [anon_sym_STAR_EQ] = ACTIONS(8939), + [anon_sym_SLASH_EQ] = ACTIONS(8939), + [anon_sym_PERCENT_EQ] = ACTIONS(8939), + [anon_sym_PLUS_EQ] = ACTIONS(8939), + [anon_sym_DASH_EQ] = ACTIONS(8939), + [anon_sym_LT_LT_EQ] = ACTIONS(8939), + [anon_sym_GT_GT_EQ] = ACTIONS(8939), + [anon_sym_AMP_EQ] = ACTIONS(8939), + [anon_sym_CARET_EQ] = ACTIONS(8939), + [anon_sym_PIPE_EQ] = ACTIONS(8939), + [anon_sym_and_eq] = ACTIONS(8937), + [anon_sym_or_eq] = ACTIONS(8937), + [anon_sym_xor_eq] = ACTIONS(8937), + [anon_sym_LT_EQ_GT] = ACTIONS(8939), + [anon_sym_or] = ACTIONS(8937), + [anon_sym_and] = ACTIONS(8937), + [anon_sym_bitor] = ACTIONS(8937), + [anon_sym_xor] = ACTIONS(8937), + [anon_sym_bitand] = ACTIONS(8937), + [anon_sym_not_eq] = ACTIONS(8937), + [anon_sym_DASH_DASH] = ACTIONS(8939), + [anon_sym_PLUS_PLUS] = ACTIONS(8939), + [anon_sym_DOT] = ACTIONS(8937), + [anon_sym_DOT_STAR] = ACTIONS(8939), + [anon_sym_DASH_GT] = ACTIONS(8939), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8937), + [anon_sym_override] = ACTIONS(8937), + [anon_sym_requires] = ACTIONS(8937), + [anon_sym_COLON_RBRACK] = ACTIONS(8939), }, [STATE(3683)] = { - [sym_identifier] = ACTIONS(5593), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5595), - [anon_sym_COMMA] = ACTIONS(5595), - [anon_sym_RPAREN] = ACTIONS(5595), - [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_virtual] = ACTIONS(5593), - [anon_sym_extern] = ACTIONS(5593), - [anon_sym___attribute__] = ACTIONS(5593), - [anon_sym___attribute] = ACTIONS(5593), - [anon_sym_COLON] = 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___cdecl] = ACTIONS(5593), - [anon_sym___clrcall] = ACTIONS(5593), - [anon_sym___stdcall] = ACTIONS(5593), - [anon_sym___fastcall] = ACTIONS(5593), - [anon_sym___thiscall] = ACTIONS(5593), - [anon_sym___vectorcall] = ACTIONS(5593), - [anon_sym_LBRACE] = ACTIONS(5595), - [anon_sym_LBRACK] = ACTIONS(5593), - [anon_sym_static] = ACTIONS(5593), - [anon_sym_EQ] = ACTIONS(5595), - [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), - [anon_sym_DASH_GT] = ACTIONS(5595), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(5593), - [anon_sym_final] = ACTIONS(5593), - [anon_sym_override] = ACTIONS(5593), - [anon_sym_explicit] = ACTIONS(5593), - [anon_sym_private] = ACTIONS(5593), - [anon_sym_template] = ACTIONS(5593), - [anon_sym_GT2] = ACTIONS(5595), - [anon_sym_operator] = ACTIONS(5593), - [anon_sym_public] = ACTIONS(5593), - [anon_sym_protected] = ACTIONS(5593), - [anon_sym_noexcept] = ACTIONS(5593), - [anon_sym_throw] = ACTIONS(5593), - [anon_sym_requires] = ACTIONS(5593), - [anon_sym_LBRACK_COLON] = ACTIONS(5595), + [sym_string_literal] = STATE(5629), + [sym_template_argument_list] = STATE(6801), + [sym_raw_string_literal] = STATE(5629), + [aux_sym_structured_binding_declarator_repeat1] = STATE(9663), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(9442), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(8984), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(9444), + [anon_sym_EQ] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(7001), + [anon_sym_SLASH_EQ] = ACTIONS(7001), + [anon_sym_PERCENT_EQ] = ACTIONS(7001), + [anon_sym_PLUS_EQ] = ACTIONS(7001), + [anon_sym_DASH_EQ] = ACTIONS(7001), + [anon_sym_LT_LT_EQ] = ACTIONS(7001), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(7001), + [anon_sym_CARET_EQ] = ACTIONS(7001), + [anon_sym_PIPE_EQ] = ACTIONS(7001), + [anon_sym_and_eq] = ACTIONS(7001), + [anon_sym_or_eq] = ACTIONS(7001), + [anon_sym_xor_eq] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(7003), + [anon_sym_u_DQUOTE] = ACTIONS(7003), + [anon_sym_U_DQUOTE] = ACTIONS(7003), + [anon_sym_u8_DQUOTE] = ACTIONS(7003), + [anon_sym_DQUOTE] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7009), + [anon_sym_LR_DQUOTE] = ACTIONS(7009), + [anon_sym_uR_DQUOTE] = ACTIONS(7009), + [anon_sym_UR_DQUOTE] = ACTIONS(7009), + [anon_sym_u8R_DQUOTE] = ACTIONS(7009), }, [STATE(3684)] = { - [sym_decltype_auto] = STATE(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym___attribute__] = ACTIONS(7225), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9443), - [anon_sym_decltype] = ACTIONS(6871), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), + [sym_identifier] = ACTIONS(9447), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9449), + [anon_sym_COMMA] = ACTIONS(9449), + [anon_sym_RPAREN] = ACTIONS(9449), + [aux_sym_preproc_if_token2] = ACTIONS(9449), + [aux_sym_preproc_else_token1] = ACTIONS(9449), + [aux_sym_preproc_elif_token1] = ACTIONS(9447), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9449), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9449), + [anon_sym_LPAREN2] = ACTIONS(9449), + [anon_sym_DASH] = ACTIONS(9447), + [anon_sym_PLUS] = ACTIONS(9447), + [anon_sym_STAR] = ACTIONS(9447), + [anon_sym_SLASH] = ACTIONS(9447), + [anon_sym_PERCENT] = ACTIONS(9447), + [anon_sym_PIPE_PIPE] = ACTIONS(9449), + [anon_sym_AMP_AMP] = ACTIONS(9449), + [anon_sym_PIPE] = ACTIONS(9447), + [anon_sym_CARET] = ACTIONS(9447), + [anon_sym_AMP] = ACTIONS(9447), + [anon_sym_EQ_EQ] = ACTIONS(9449), + [anon_sym_BANG_EQ] = ACTIONS(9449), + [anon_sym_GT] = ACTIONS(9447), + [anon_sym_GT_EQ] = ACTIONS(9449), + [anon_sym_LT_EQ] = ACTIONS(9447), + [anon_sym_LT] = ACTIONS(9447), + [anon_sym_LT_LT] = ACTIONS(9447), + [anon_sym_GT_GT] = ACTIONS(9447), + [anon_sym_SEMI] = ACTIONS(9449), + [anon_sym___attribute__] = ACTIONS(9447), + [anon_sym___attribute] = ACTIONS(9447), + [anon_sym_COLON] = ACTIONS(9447), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9449), + [anon_sym_RBRACE] = ACTIONS(9449), + [anon_sym_LBRACK] = ACTIONS(9449), + [anon_sym_EQ] = ACTIONS(9447), + [anon_sym_QMARK] = ACTIONS(9449), + [anon_sym_STAR_EQ] = ACTIONS(9449), + [anon_sym_SLASH_EQ] = ACTIONS(9449), + [anon_sym_PERCENT_EQ] = ACTIONS(9449), + [anon_sym_PLUS_EQ] = ACTIONS(9449), + [anon_sym_DASH_EQ] = ACTIONS(9449), + [anon_sym_LT_LT_EQ] = ACTIONS(9449), + [anon_sym_GT_GT_EQ] = ACTIONS(9449), + [anon_sym_AMP_EQ] = ACTIONS(9449), + [anon_sym_CARET_EQ] = ACTIONS(9449), + [anon_sym_PIPE_EQ] = ACTIONS(9449), + [anon_sym_and_eq] = ACTIONS(9447), + [anon_sym_or_eq] = ACTIONS(9447), + [anon_sym_xor_eq] = ACTIONS(9447), + [anon_sym_LT_EQ_GT] = ACTIONS(9449), + [anon_sym_or] = ACTIONS(9447), + [anon_sym_and] = ACTIONS(9447), + [anon_sym_bitor] = ACTIONS(9447), + [anon_sym_xor] = ACTIONS(9447), + [anon_sym_bitand] = ACTIONS(9447), + [anon_sym_not_eq] = ACTIONS(9447), + [anon_sym_DASH_DASH] = ACTIONS(9449), + [anon_sym_PLUS_PLUS] = ACTIONS(9449), + [anon_sym_DOT] = ACTIONS(9447), + [anon_sym_DOT_STAR] = ACTIONS(9449), + [anon_sym_DASH_GT] = ACTIONS(9449), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9447), + [anon_sym_override] = ACTIONS(9447), + [anon_sym_requires] = ACTIONS(9447), + [anon_sym_COLON_RBRACK] = ACTIONS(9449), }, [STATE(3685)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym__declarator] = STATE(8808), - [sym__abstract_declarator] = STATE(8954), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(7086), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(4779), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(7086), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8548), - [anon_sym_AMP_AMP] = ACTIONS(8550), - [anon_sym_AMP] = ACTIONS(8552), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6821), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_EQ] = ACTIONS(6823), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_GT2] = ACTIONS(6823), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [sym_attribute_declaration] = STATE(3752), + [sym_parameter_list] = STATE(3233), + [aux_sym_attributed_declarator_repeat1] = STATE(3752), + [sym_identifier] = ACTIONS(9451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9453), + [anon_sym_COMMA] = ACTIONS(9453), + [anon_sym_RPAREN] = ACTIONS(9453), + [aux_sym_preproc_if_token2] = ACTIONS(9453), + [aux_sym_preproc_else_token1] = ACTIONS(9453), + [aux_sym_preproc_elif_token1] = ACTIONS(9451), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9453), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9453), + [anon_sym_LPAREN2] = ACTIONS(9393), + [anon_sym_DASH] = ACTIONS(9451), + [anon_sym_PLUS] = ACTIONS(9451), + [anon_sym_STAR] = ACTIONS(9451), + [anon_sym_SLASH] = ACTIONS(9451), + [anon_sym_PERCENT] = ACTIONS(9451), + [anon_sym_PIPE_PIPE] = ACTIONS(9453), + [anon_sym_AMP_AMP] = ACTIONS(9453), + [anon_sym_PIPE] = ACTIONS(9451), + [anon_sym_CARET] = ACTIONS(9451), + [anon_sym_AMP] = ACTIONS(9451), + [anon_sym_EQ_EQ] = ACTIONS(9453), + [anon_sym_BANG_EQ] = ACTIONS(9453), + [anon_sym_GT] = ACTIONS(9451), + [anon_sym_GT_EQ] = ACTIONS(9453), + [anon_sym_LT_EQ] = ACTIONS(9451), + [anon_sym_LT] = ACTIONS(9451), + [anon_sym_LT_LT] = ACTIONS(9451), + [anon_sym_GT_GT] = ACTIONS(9451), + [anon_sym_SEMI] = ACTIONS(9453), + [anon_sym___attribute__] = ACTIONS(9451), + [anon_sym___attribute] = ACTIONS(9451), + [anon_sym_COLON] = ACTIONS(9451), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACE] = ACTIONS(9453), + [anon_sym_LBRACK] = ACTIONS(9395), + [anon_sym_EQ] = ACTIONS(9451), + [anon_sym_QMARK] = ACTIONS(9453), + [anon_sym_STAR_EQ] = ACTIONS(9453), + [anon_sym_SLASH_EQ] = ACTIONS(9453), + [anon_sym_PERCENT_EQ] = ACTIONS(9453), + [anon_sym_PLUS_EQ] = ACTIONS(9453), + [anon_sym_DASH_EQ] = ACTIONS(9453), + [anon_sym_LT_LT_EQ] = ACTIONS(9453), + [anon_sym_GT_GT_EQ] = ACTIONS(9453), + [anon_sym_AMP_EQ] = ACTIONS(9453), + [anon_sym_CARET_EQ] = ACTIONS(9453), + [anon_sym_PIPE_EQ] = ACTIONS(9453), + [anon_sym_and_eq] = ACTIONS(9451), + [anon_sym_or_eq] = ACTIONS(9451), + [anon_sym_xor_eq] = ACTIONS(9451), + [anon_sym_LT_EQ_GT] = ACTIONS(9453), + [anon_sym_or] = ACTIONS(9451), + [anon_sym_and] = ACTIONS(9451), + [anon_sym_bitor] = ACTIONS(9451), + [anon_sym_xor] = ACTIONS(9451), + [anon_sym_bitand] = ACTIONS(9451), + [anon_sym_not_eq] = ACTIONS(9451), + [anon_sym_DASH_DASH] = ACTIONS(9453), + [anon_sym_PLUS_PLUS] = ACTIONS(9453), + [anon_sym_DOT] = ACTIONS(9451), + [anon_sym_DOT_STAR] = ACTIONS(9453), + [anon_sym_DASH_GT] = ACTIONS(9453), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9453), }, [STATE(3686)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym__declarator] = STATE(8816), - [sym__abstract_declarator] = STATE(8955), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(7086), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(4779), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(7086), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8548), - [anon_sym_AMP_AMP] = ACTIONS(8550), - [anon_sym_AMP] = ACTIONS(8552), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(7347), - [anon_sym___attribute] = ACTIONS(7347), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_EQ] = ACTIONS(7345), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_GT2] = ACTIONS(7345), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [sym_argument_list] = STATE(3841), + [sym_initializer_list] = STATE(3841), + [sym_identifier] = ACTIONS(9455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9457), + [anon_sym_COMMA] = ACTIONS(9457), + [anon_sym_RPAREN] = ACTIONS(9457), + [aux_sym_preproc_if_token2] = ACTIONS(9457), + [aux_sym_preproc_else_token1] = ACTIONS(9457), + [aux_sym_preproc_elif_token1] = ACTIONS(9455), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9457), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9457), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9455), + [anon_sym_PLUS] = ACTIONS(9455), + [anon_sym_STAR] = ACTIONS(9455), + [anon_sym_SLASH] = ACTIONS(9455), + [anon_sym_PERCENT] = ACTIONS(9455), + [anon_sym_PIPE_PIPE] = ACTIONS(9457), + [anon_sym_AMP_AMP] = ACTIONS(9457), + [anon_sym_PIPE] = ACTIONS(9455), + [anon_sym_CARET] = ACTIONS(9455), + [anon_sym_AMP] = ACTIONS(9455), + [anon_sym_EQ_EQ] = ACTIONS(9457), + [anon_sym_BANG_EQ] = ACTIONS(9457), + [anon_sym_GT] = ACTIONS(9455), + [anon_sym_GT_EQ] = ACTIONS(9457), + [anon_sym_LT_EQ] = ACTIONS(9455), + [anon_sym_LT] = ACTIONS(9455), + [anon_sym_LT_LT] = ACTIONS(9455), + [anon_sym_GT_GT] = ACTIONS(9455), + [anon_sym_SEMI] = ACTIONS(9457), + [anon_sym___attribute__] = ACTIONS(9455), + [anon_sym___attribute] = ACTIONS(9455), + [anon_sym_COLON] = ACTIONS(9455), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9457), + [anon_sym_LBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(9457), + [anon_sym_LBRACK] = ACTIONS(9457), + [anon_sym_EQ] = ACTIONS(9455), + [anon_sym_QMARK] = ACTIONS(9457), + [anon_sym_STAR_EQ] = ACTIONS(9457), + [anon_sym_SLASH_EQ] = ACTIONS(9457), + [anon_sym_PERCENT_EQ] = ACTIONS(9457), + [anon_sym_PLUS_EQ] = ACTIONS(9457), + [anon_sym_DASH_EQ] = ACTIONS(9457), + [anon_sym_LT_LT_EQ] = ACTIONS(9457), + [anon_sym_GT_GT_EQ] = ACTIONS(9457), + [anon_sym_AMP_EQ] = ACTIONS(9457), + [anon_sym_CARET_EQ] = ACTIONS(9457), + [anon_sym_PIPE_EQ] = ACTIONS(9457), + [anon_sym_and_eq] = ACTIONS(9455), + [anon_sym_or_eq] = ACTIONS(9455), + [anon_sym_xor_eq] = ACTIONS(9455), + [anon_sym_LT_EQ_GT] = ACTIONS(9457), + [anon_sym_or] = ACTIONS(9455), + [anon_sym_and] = ACTIONS(9455), + [anon_sym_bitor] = ACTIONS(9455), + [anon_sym_xor] = ACTIONS(9455), + [anon_sym_bitand] = ACTIONS(9455), + [anon_sym_not_eq] = ACTIONS(9455), + [anon_sym_DASH_DASH] = ACTIONS(9457), + [anon_sym_PLUS_PLUS] = ACTIONS(9457), + [anon_sym_DOT] = ACTIONS(9455), + [anon_sym_DOT_STAR] = ACTIONS(9457), + [anon_sym_DASH_GT] = ACTIONS(9457), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9457), }, [STATE(3687)] = { - [sym_identifier] = ACTIONS(8913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8915), - [anon_sym_COMMA] = ACTIONS(8915), - [anon_sym_RPAREN] = ACTIONS(8915), - [aux_sym_preproc_if_token2] = ACTIONS(8915), - [aux_sym_preproc_else_token1] = ACTIONS(8915), - [aux_sym_preproc_elif_token1] = ACTIONS(8913), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8915), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8915), - [anon_sym_LPAREN2] = ACTIONS(8915), - [anon_sym_DASH] = ACTIONS(8913), - [anon_sym_PLUS] = ACTIONS(8913), - [anon_sym_STAR] = ACTIONS(8913), - [anon_sym_SLASH] = ACTIONS(8913), - [anon_sym_PERCENT] = ACTIONS(8913), - [anon_sym_PIPE_PIPE] = ACTIONS(8915), - [anon_sym_AMP_AMP] = ACTIONS(8915), - [anon_sym_PIPE] = ACTIONS(8913), - [anon_sym_CARET] = ACTIONS(8913), - [anon_sym_AMP] = ACTIONS(8913), - [anon_sym_EQ_EQ] = ACTIONS(8915), - [anon_sym_BANG_EQ] = ACTIONS(8915), - [anon_sym_GT] = ACTIONS(8913), - [anon_sym_GT_EQ] = ACTIONS(8915), - [anon_sym_LT_EQ] = ACTIONS(8913), - [anon_sym_LT] = ACTIONS(8913), - [anon_sym_LT_LT] = ACTIONS(8913), - [anon_sym_GT_GT] = ACTIONS(8913), - [anon_sym_SEMI] = ACTIONS(8915), - [anon_sym___attribute__] = ACTIONS(8913), - [anon_sym___attribute] = ACTIONS(8913), - [anon_sym_COLON] = ACTIONS(8913), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8915), - [anon_sym_RBRACE] = ACTIONS(8915), - [anon_sym_LBRACK] = ACTIONS(8915), - [anon_sym_EQ] = ACTIONS(8913), - [anon_sym_QMARK] = ACTIONS(8915), - [anon_sym_STAR_EQ] = ACTIONS(8915), - [anon_sym_SLASH_EQ] = ACTIONS(8915), - [anon_sym_PERCENT_EQ] = ACTIONS(8915), - [anon_sym_PLUS_EQ] = ACTIONS(8915), - [anon_sym_DASH_EQ] = ACTIONS(8915), - [anon_sym_LT_LT_EQ] = ACTIONS(8915), - [anon_sym_GT_GT_EQ] = ACTIONS(8915), - [anon_sym_AMP_EQ] = ACTIONS(8915), - [anon_sym_CARET_EQ] = ACTIONS(8915), - [anon_sym_PIPE_EQ] = ACTIONS(8915), - [anon_sym_and_eq] = ACTIONS(8913), - [anon_sym_or_eq] = ACTIONS(8913), - [anon_sym_xor_eq] = ACTIONS(8913), - [anon_sym_LT_EQ_GT] = ACTIONS(8915), - [anon_sym_or] = ACTIONS(8913), - [anon_sym_and] = ACTIONS(8913), - [anon_sym_bitor] = ACTIONS(8913), - [anon_sym_xor] = ACTIONS(8913), - [anon_sym_bitand] = ACTIONS(8913), - [anon_sym_not_eq] = ACTIONS(8913), - [anon_sym_DASH_DASH] = ACTIONS(8915), - [anon_sym_PLUS_PLUS] = ACTIONS(8915), - [anon_sym_DOT] = ACTIONS(8913), - [anon_sym_DOT_STAR] = ACTIONS(8915), - [anon_sym_DASH_GT] = ACTIONS(8915), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8913), - [anon_sym_override] = ACTIONS(8913), - [anon_sym_requires] = ACTIONS(8913), - [anon_sym_COLON_RBRACK] = ACTIONS(8915), + [sym_string_literal] = STATE(5629), + [sym_template_argument_list] = STATE(6801), + [sym_raw_string_literal] = STATE(5629), + [aux_sym_structured_binding_declarator_repeat1] = STATE(9663), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9459), + [anon_sym_COMMA] = ACTIONS(9462), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(8984), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(9465), + [anon_sym_EQ] = ACTIONS(9469), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(7001), + [anon_sym_SLASH_EQ] = ACTIONS(7001), + [anon_sym_PERCENT_EQ] = ACTIONS(7001), + [anon_sym_PLUS_EQ] = ACTIONS(7001), + [anon_sym_DASH_EQ] = ACTIONS(7001), + [anon_sym_LT_LT_EQ] = ACTIONS(7001), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(7001), + [anon_sym_CARET_EQ] = ACTIONS(7001), + [anon_sym_PIPE_EQ] = ACTIONS(7001), + [anon_sym_and_eq] = ACTIONS(7001), + [anon_sym_or_eq] = ACTIONS(7001), + [anon_sym_xor_eq] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(7003), + [anon_sym_u_DQUOTE] = ACTIONS(7003), + [anon_sym_U_DQUOTE] = ACTIONS(7003), + [anon_sym_u8_DQUOTE] = ACTIONS(7003), + [anon_sym_DQUOTE] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7009), + [anon_sym_LR_DQUOTE] = ACTIONS(7009), + [anon_sym_uR_DQUOTE] = ACTIONS(7009), + [anon_sym_UR_DQUOTE] = ACTIONS(7009), + [anon_sym_u8R_DQUOTE] = ACTIONS(7009), }, [STATE(3688)] = { - [sym_identifier] = ACTIONS(9445), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9447), - [anon_sym_COMMA] = ACTIONS(9447), - [anon_sym_RPAREN] = ACTIONS(9447), - [aux_sym_preproc_if_token2] = ACTIONS(9447), - [aux_sym_preproc_else_token1] = ACTIONS(9447), - [aux_sym_preproc_elif_token1] = ACTIONS(9445), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9447), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9447), - [anon_sym_LPAREN2] = ACTIONS(9447), - [anon_sym_DASH] = ACTIONS(9445), - [anon_sym_PLUS] = ACTIONS(9445), - [anon_sym_STAR] = ACTIONS(9445), - [anon_sym_SLASH] = ACTIONS(9445), - [anon_sym_PERCENT] = ACTIONS(9445), - [anon_sym_PIPE_PIPE] = ACTIONS(9447), - [anon_sym_AMP_AMP] = ACTIONS(9447), - [anon_sym_PIPE] = ACTIONS(9445), - [anon_sym_CARET] = ACTIONS(9445), - [anon_sym_AMP] = ACTIONS(9445), - [anon_sym_EQ_EQ] = ACTIONS(9447), - [anon_sym_BANG_EQ] = ACTIONS(9447), - [anon_sym_GT] = ACTIONS(9445), - [anon_sym_GT_EQ] = ACTIONS(9447), - [anon_sym_LT_EQ] = ACTIONS(9445), - [anon_sym_LT] = ACTIONS(9445), - [anon_sym_LT_LT] = ACTIONS(9445), - [anon_sym_GT_GT] = ACTIONS(9445), - [anon_sym_SEMI] = ACTIONS(9447), - [anon_sym___attribute__] = ACTIONS(9445), - [anon_sym___attribute] = ACTIONS(9445), - [anon_sym_COLON] = ACTIONS(9445), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9447), - [anon_sym_RBRACE] = ACTIONS(9447), - [anon_sym_LBRACK] = ACTIONS(9447), - [anon_sym_EQ] = ACTIONS(9445), - [anon_sym_QMARK] = ACTIONS(9447), - [anon_sym_STAR_EQ] = ACTIONS(9447), - [anon_sym_SLASH_EQ] = ACTIONS(9447), - [anon_sym_PERCENT_EQ] = ACTIONS(9447), - [anon_sym_PLUS_EQ] = ACTIONS(9447), - [anon_sym_DASH_EQ] = ACTIONS(9447), - [anon_sym_LT_LT_EQ] = ACTIONS(9447), - [anon_sym_GT_GT_EQ] = ACTIONS(9447), - [anon_sym_AMP_EQ] = ACTIONS(9447), - [anon_sym_CARET_EQ] = ACTIONS(9447), - [anon_sym_PIPE_EQ] = ACTIONS(9447), - [anon_sym_and_eq] = ACTIONS(9445), - [anon_sym_or_eq] = ACTIONS(9445), - [anon_sym_xor_eq] = ACTIONS(9445), - [anon_sym_LT_EQ_GT] = ACTIONS(9447), - [anon_sym_or] = ACTIONS(9445), - [anon_sym_and] = ACTIONS(9445), - [anon_sym_bitor] = ACTIONS(9445), - [anon_sym_xor] = ACTIONS(9445), - [anon_sym_bitand] = ACTIONS(9445), - [anon_sym_not_eq] = ACTIONS(9445), - [anon_sym_DASH_DASH] = ACTIONS(9447), - [anon_sym_PLUS_PLUS] = ACTIONS(9447), - [anon_sym_DOT] = ACTIONS(9445), - [anon_sym_DOT_STAR] = ACTIONS(9447), - [anon_sym_DASH_GT] = ACTIONS(9447), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9445), - [anon_sym_override] = ACTIONS(9445), - [anon_sym_requires] = ACTIONS(9445), - [anon_sym_COLON_RBRACK] = ACTIONS(9447), + [sym_identifier] = ACTIONS(8965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8967), + [anon_sym_COMMA] = ACTIONS(8967), + [anon_sym_RPAREN] = ACTIONS(8967), + [aux_sym_preproc_if_token2] = ACTIONS(8967), + [aux_sym_preproc_else_token1] = ACTIONS(8967), + [aux_sym_preproc_elif_token1] = ACTIONS(8965), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8967), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8967), + [anon_sym_LPAREN2] = ACTIONS(8967), + [anon_sym_DASH] = ACTIONS(8965), + [anon_sym_PLUS] = ACTIONS(8965), + [anon_sym_STAR] = ACTIONS(8965), + [anon_sym_SLASH] = ACTIONS(8965), + [anon_sym_PERCENT] = ACTIONS(8965), + [anon_sym_PIPE_PIPE] = ACTIONS(8967), + [anon_sym_AMP_AMP] = ACTIONS(8967), + [anon_sym_PIPE] = ACTIONS(8965), + [anon_sym_CARET] = ACTIONS(8965), + [anon_sym_AMP] = ACTIONS(8965), + [anon_sym_EQ_EQ] = ACTIONS(8967), + [anon_sym_BANG_EQ] = ACTIONS(8967), + [anon_sym_GT] = ACTIONS(8965), + [anon_sym_GT_EQ] = ACTIONS(8967), + [anon_sym_LT_EQ] = ACTIONS(8965), + [anon_sym_LT] = ACTIONS(8965), + [anon_sym_LT_LT] = ACTIONS(8965), + [anon_sym_GT_GT] = ACTIONS(8965), + [anon_sym_SEMI] = ACTIONS(8967), + [anon_sym___attribute__] = ACTIONS(8965), + [anon_sym___attribute] = ACTIONS(8965), + [anon_sym_COLON] = ACTIONS(8965), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8967), + [anon_sym_RBRACE] = ACTIONS(8967), + [anon_sym_LBRACK] = ACTIONS(8967), + [anon_sym_EQ] = ACTIONS(8965), + [anon_sym_QMARK] = ACTIONS(8967), + [anon_sym_STAR_EQ] = ACTIONS(8967), + [anon_sym_SLASH_EQ] = ACTIONS(8967), + [anon_sym_PERCENT_EQ] = ACTIONS(8967), + [anon_sym_PLUS_EQ] = ACTIONS(8967), + [anon_sym_DASH_EQ] = ACTIONS(8967), + [anon_sym_LT_LT_EQ] = ACTIONS(8967), + [anon_sym_GT_GT_EQ] = ACTIONS(8967), + [anon_sym_AMP_EQ] = ACTIONS(8967), + [anon_sym_CARET_EQ] = ACTIONS(8967), + [anon_sym_PIPE_EQ] = ACTIONS(8967), + [anon_sym_and_eq] = ACTIONS(8965), + [anon_sym_or_eq] = ACTIONS(8965), + [anon_sym_xor_eq] = ACTIONS(8965), + [anon_sym_LT_EQ_GT] = ACTIONS(8967), + [anon_sym_or] = ACTIONS(8965), + [anon_sym_and] = ACTIONS(8965), + [anon_sym_bitor] = ACTIONS(8965), + [anon_sym_xor] = ACTIONS(8965), + [anon_sym_bitand] = ACTIONS(8965), + [anon_sym_not_eq] = ACTIONS(8965), + [anon_sym_DASH_DASH] = ACTIONS(8967), + [anon_sym_PLUS_PLUS] = ACTIONS(8967), + [anon_sym_DOT] = ACTIONS(8965), + [anon_sym_DOT_STAR] = ACTIONS(8967), + [anon_sym_DASH_GT] = ACTIONS(8967), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8965), + [anon_sym_override] = ACTIONS(8965), + [anon_sym_requires] = ACTIONS(8965), + [anon_sym_COLON_RBRACK] = ACTIONS(8967), }, [STATE(3689)] = { - [sym_identifier] = ACTIONS(9393), - [anon_sym_LPAREN2] = ACTIONS(9395), - [anon_sym_TILDE] = ACTIONS(9395), - [anon_sym_STAR] = ACTIONS(9395), - [anon_sym_PIPE_PIPE] = ACTIONS(9449), - [anon_sym_AMP_AMP] = ACTIONS(9326), - [anon_sym_AMP] = ACTIONS(9393), - [anon_sym___extension__] = ACTIONS(9393), - [anon_sym_virtual] = ACTIONS(9393), - [anon_sym_extern] = ACTIONS(9393), - [anon_sym___attribute__] = ACTIONS(9393), - [anon_sym___attribute] = ACTIONS(9393), - [anon_sym_using] = ACTIONS(9393), - [anon_sym_COLON_COLON] = ACTIONS(9395), - [anon_sym_LBRACK_LBRACK] = ACTIONS(9395), - [anon_sym___declspec] = ACTIONS(9393), - [anon_sym___based] = ACTIONS(9393), - [anon_sym___cdecl] = ACTIONS(9393), - [anon_sym___clrcall] = ACTIONS(9393), - [anon_sym___stdcall] = ACTIONS(9393), - [anon_sym___fastcall] = ACTIONS(9393), - [anon_sym___thiscall] = ACTIONS(9393), - [anon_sym___vectorcall] = ACTIONS(9393), - [anon_sym_signed] = ACTIONS(9393), - [anon_sym_unsigned] = ACTIONS(9393), - [anon_sym_long] = ACTIONS(9393), - [anon_sym_short] = ACTIONS(9393), - [anon_sym_LBRACK] = ACTIONS(9393), - [anon_sym_static] = ACTIONS(9393), - [anon_sym_register] = ACTIONS(9393), - [anon_sym_inline] = ACTIONS(9393), - [anon_sym___inline] = ACTIONS(9393), - [anon_sym___inline__] = ACTIONS(9393), - [anon_sym___forceinline] = ACTIONS(9393), - [anon_sym_thread_local] = ACTIONS(9393), - [anon_sym___thread] = ACTIONS(9393), - [anon_sym_const] = ACTIONS(9393), - [anon_sym_constexpr] = ACTIONS(9393), - [anon_sym_volatile] = ACTIONS(9393), - [anon_sym_restrict] = ACTIONS(9393), - [anon_sym___restrict__] = ACTIONS(9393), - [anon_sym__Atomic] = ACTIONS(9393), - [anon_sym__Noreturn] = ACTIONS(9393), - [anon_sym_noreturn] = ACTIONS(9393), - [anon_sym__Nonnull] = ACTIONS(9393), - [anon_sym_mutable] = ACTIONS(9393), - [anon_sym_constinit] = ACTIONS(9393), - [anon_sym_consteval] = ACTIONS(9393), - [anon_sym_alignas] = ACTIONS(9393), - [anon_sym__Alignas] = ACTIONS(9393), - [sym_primitive_type] = ACTIONS(9393), - [anon_sym_enum] = ACTIONS(9393), - [anon_sym_class] = ACTIONS(9393), - [anon_sym_struct] = ACTIONS(9393), - [anon_sym_union] = ACTIONS(9393), - [anon_sym_or] = ACTIONS(9451), - [anon_sym_and] = ACTIONS(9328), - [anon_sym_typename] = ACTIONS(9393), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9393), - [anon_sym_decltype] = ACTIONS(9393), - [anon_sym_explicit] = ACTIONS(9393), - [anon_sym_template] = ACTIONS(9393), - [anon_sym_operator] = ACTIONS(9393), - [anon_sym_friend] = ACTIONS(9393), - [anon_sym_concept] = ACTIONS(9393), - [anon_sym_LBRACK_COLON] = ACTIONS(9395), + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym_COLON] = ACTIONS(5726), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5645), + [anon_sym_QMARK] = ACTIONS(5611), + [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(5647), + [anon_sym_or_eq] = ACTIONS(5647), + [anon_sym_xor_eq] = ACTIONS(5647), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), }, [STATE(3690)] = { - [sym_string_literal] = STATE(5580), - [sym_template_argument_list] = STATE(6754), - [sym_raw_string_literal] = STATE(5580), - [aux_sym_structured_binding_declarator_repeat1] = STATE(9899), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9453), - [anon_sym_COMMA] = ACTIONS(9456), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(8925), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_RBRACK] = ACTIONS(9459), - [anon_sym_EQ] = ACTIONS(9463), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(7046), - [anon_sym_SLASH_EQ] = ACTIONS(7046), - [anon_sym_PERCENT_EQ] = ACTIONS(7046), - [anon_sym_PLUS_EQ] = ACTIONS(7046), - [anon_sym_DASH_EQ] = ACTIONS(7046), - [anon_sym_LT_LT_EQ] = ACTIONS(7046), - [anon_sym_GT_GT_EQ] = ACTIONS(7046), - [anon_sym_AMP_EQ] = ACTIONS(7046), - [anon_sym_CARET_EQ] = ACTIONS(7046), - [anon_sym_PIPE_EQ] = ACTIONS(7046), - [anon_sym_and_eq] = ACTIONS(7046), - [anon_sym_or_eq] = ACTIONS(7046), - [anon_sym_xor_eq] = ACTIONS(7046), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(7048), - [anon_sym_u_DQUOTE] = ACTIONS(7048), - [anon_sym_U_DQUOTE] = ACTIONS(7048), - [anon_sym_u8_DQUOTE] = ACTIONS(7048), - [anon_sym_DQUOTE] = ACTIONS(7048), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(7054), - [anon_sym_LR_DQUOTE] = ACTIONS(7054), - [anon_sym_uR_DQUOTE] = ACTIONS(7054), - [anon_sym_UR_DQUOTE] = ACTIONS(7054), - [anon_sym_u8R_DQUOTE] = ACTIONS(7054), + [sym_identifier] = ACTIONS(8404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8402), + [anon_sym_COMMA] = ACTIONS(8402), + [anon_sym_RPAREN] = ACTIONS(8402), + [aux_sym_preproc_if_token2] = ACTIONS(8402), + [aux_sym_preproc_else_token1] = ACTIONS(8402), + [aux_sym_preproc_elif_token1] = ACTIONS(8404), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8402), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8402), + [anon_sym_LPAREN2] = ACTIONS(8402), + [anon_sym_DASH] = ACTIONS(8404), + [anon_sym_PLUS] = ACTIONS(8404), + [anon_sym_STAR] = ACTIONS(8404), + [anon_sym_SLASH] = ACTIONS(8404), + [anon_sym_PERCENT] = ACTIONS(8404), + [anon_sym_PIPE_PIPE] = ACTIONS(8402), + [anon_sym_AMP_AMP] = ACTIONS(8402), + [anon_sym_PIPE] = ACTIONS(8404), + [anon_sym_CARET] = ACTIONS(8404), + [anon_sym_AMP] = ACTIONS(8404), + [anon_sym_EQ_EQ] = ACTIONS(8402), + [anon_sym_BANG_EQ] = ACTIONS(8402), + [anon_sym_GT] = ACTIONS(8404), + [anon_sym_GT_EQ] = ACTIONS(8402), + [anon_sym_LT_EQ] = ACTIONS(8404), + [anon_sym_LT] = ACTIONS(8404), + [anon_sym_LT_LT] = ACTIONS(8404), + [anon_sym_GT_GT] = ACTIONS(8404), + [anon_sym_SEMI] = ACTIONS(8402), + [anon_sym___attribute__] = ACTIONS(8404), + [anon_sym___attribute] = ACTIONS(8404), + [anon_sym_COLON] = ACTIONS(8404), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8402), + [anon_sym_RBRACE] = ACTIONS(8402), + [anon_sym_LBRACK] = ACTIONS(8402), + [anon_sym_EQ] = ACTIONS(8404), + [anon_sym_QMARK] = ACTIONS(8402), + [anon_sym_STAR_EQ] = ACTIONS(8402), + [anon_sym_SLASH_EQ] = ACTIONS(8402), + [anon_sym_PERCENT_EQ] = ACTIONS(8402), + [anon_sym_PLUS_EQ] = ACTIONS(8402), + [anon_sym_DASH_EQ] = ACTIONS(8402), + [anon_sym_LT_LT_EQ] = ACTIONS(8402), + [anon_sym_GT_GT_EQ] = ACTIONS(8402), + [anon_sym_AMP_EQ] = ACTIONS(8402), + [anon_sym_CARET_EQ] = ACTIONS(8402), + [anon_sym_PIPE_EQ] = ACTIONS(8402), + [anon_sym_and_eq] = ACTIONS(8404), + [anon_sym_or_eq] = ACTIONS(8404), + [anon_sym_xor_eq] = ACTIONS(8404), + [anon_sym_LT_EQ_GT] = ACTIONS(8402), + [anon_sym_or] = ACTIONS(8404), + [anon_sym_and] = ACTIONS(8404), + [anon_sym_bitor] = ACTIONS(8404), + [anon_sym_xor] = ACTIONS(8404), + [anon_sym_bitand] = ACTIONS(8404), + [anon_sym_not_eq] = ACTIONS(8404), + [anon_sym_DASH_DASH] = ACTIONS(8402), + [anon_sym_PLUS_PLUS] = ACTIONS(8402), + [anon_sym_DOT] = ACTIONS(8404), + [anon_sym_DOT_STAR] = ACTIONS(8402), + [anon_sym_DASH_GT] = ACTIONS(8402), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8404), + [anon_sym_override] = ACTIONS(8404), + [anon_sym_requires] = ACTIONS(8404), + [anon_sym_COLON_RBRACK] = ACTIONS(8402), }, [STATE(3691)] = { - [sym_type_qualifier] = STATE(3691), - [sym_alignas_qualifier] = STATE(3945), - [aux_sym__type_definition_type_repeat1] = STATE(3691), - [sym_identifier] = ACTIONS(6889), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6891), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6891), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6891), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6889), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6891), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(9465), - [anon_sym___attribute__] = ACTIONS(6889), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACE] = ACTIONS(6891), - [anon_sym_signed] = ACTIONS(6889), - [anon_sym_unsigned] = ACTIONS(6889), - [anon_sym_long] = ACTIONS(6889), - [anon_sym_short] = ACTIONS(6889), - [anon_sym_LBRACK] = ACTIONS(6891), - [anon_sym_const] = ACTIONS(9465), - [anon_sym_constexpr] = ACTIONS(9465), - [anon_sym_volatile] = ACTIONS(9465), - [anon_sym_restrict] = ACTIONS(9465), - [anon_sym___restrict__] = ACTIONS(9465), - [anon_sym__Atomic] = ACTIONS(9465), - [anon_sym__Noreturn] = ACTIONS(9465), - [anon_sym_noreturn] = ACTIONS(9465), - [anon_sym__Nonnull] = ACTIONS(9465), - [anon_sym_mutable] = ACTIONS(9465), - [anon_sym_constinit] = ACTIONS(9465), - [anon_sym_consteval] = ACTIONS(9465), - [anon_sym_alignas] = ACTIONS(9468), - [anon_sym__Alignas] = ACTIONS(9468), - [sym_primitive_type] = ACTIONS(6889), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6889), - [anon_sym_and] = ACTIONS(6889), - [anon_sym_bitor] = ACTIONS(6889), - [anon_sym_xor] = ACTIONS(6889), - [anon_sym_bitand] = ACTIONS(6889), - [anon_sym_not_eq] = ACTIONS(6889), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6889), - [anon_sym_override] = ACTIONS(6889), - [anon_sym_GT2] = ACTIONS(6891), - [anon_sym_requires] = ACTIONS(6889), + [sym_identifier] = ACTIONS(7327), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_TILDE] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym_virtual] = ACTIONS(7327), + [anon_sym_extern] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_using] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7329), + [anon_sym___declspec] = ACTIONS(7327), + [anon_sym___based] = ACTIONS(7327), + [anon_sym___cdecl] = ACTIONS(7327), + [anon_sym___clrcall] = ACTIONS(7327), + [anon_sym___stdcall] = ACTIONS(7327), + [anon_sym___fastcall] = ACTIONS(7327), + [anon_sym___thiscall] = ACTIONS(7327), + [anon_sym___vectorcall] = ACTIONS(7327), + [anon_sym_signed] = ACTIONS(7327), + [anon_sym_unsigned] = ACTIONS(7327), + [anon_sym_long] = ACTIONS(7327), + [anon_sym_short] = ACTIONS(7327), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_static] = ACTIONS(7327), + [anon_sym_register] = ACTIONS(7327), + [anon_sym_inline] = ACTIONS(7327), + [anon_sym___inline] = ACTIONS(7327), + [anon_sym___inline__] = ACTIONS(7327), + [anon_sym___forceinline] = ACTIONS(7327), + [anon_sym_thread_local] = ACTIONS(7327), + [anon_sym___thread] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [sym_primitive_type] = ACTIONS(7327), + [anon_sym_enum] = ACTIONS(7327), + [anon_sym_class] = ACTIONS(7327), + [anon_sym_struct] = ACTIONS(7327), + [anon_sym_union] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_typename] = ACTIONS(7327), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_explicit] = ACTIONS(7327), + [anon_sym_template] = ACTIONS(7327), + [anon_sym_operator] = ACTIONS(7327), + [anon_sym_friend] = ACTIONS(7327), + [anon_sym_concept] = ACTIONS(7327), + [anon_sym_LBRACK_COLON] = ACTIONS(7329), }, [STATE(3692)] = { - [sym_attribute_specifier] = STATE(4485), - [sym_attribute_declaration] = STATE(4713), - [sym_gnu_asm_expression] = STATE(9134), - [sym_virtual_specifier] = STATE(4778), - [sym__function_exception_specification] = STATE(4139), - [sym__function_attributes_end] = STATE(6006), - [sym__function_postfix] = STATE(5460), - [sym_trailing_return_type] = STATE(5898), - [sym_noexcept] = STATE(4139), - [sym_throw_specifier] = STATE(4139), - [sym_requires_clause] = STATE(5460), - [aux_sym_type_definition_repeat1] = STATE(4485), - [aux_sym_attributed_declarator_repeat1] = STATE(4713), - [aux_sym__function_postfix_repeat1] = STATE(4778), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7791), - [anon_sym_COMMA] = ACTIONS(7791), - [anon_sym_RPAREN] = ACTIONS(7791), - [anon_sym_LPAREN2] = ACTIONS(7791), - [anon_sym_DASH] = ACTIONS(7789), - [anon_sym_PLUS] = ACTIONS(7789), - [anon_sym_STAR] = ACTIONS(7791), - [anon_sym_SLASH] = ACTIONS(7789), - [anon_sym_PERCENT] = ACTIONS(7791), - [anon_sym_PIPE_PIPE] = ACTIONS(7791), - [anon_sym_AMP_AMP] = ACTIONS(7791), - [anon_sym_PIPE] = ACTIONS(7789), - [anon_sym_CARET] = ACTIONS(7791), - [anon_sym_AMP] = ACTIONS(7789), - [anon_sym_EQ_EQ] = ACTIONS(7791), - [anon_sym_BANG_EQ] = ACTIONS(7791), - [anon_sym_GT] = ACTIONS(7789), - [anon_sym_GT_EQ] = ACTIONS(7791), - [anon_sym_LT_EQ] = ACTIONS(7789), - [anon_sym_LT] = ACTIONS(7789), - [anon_sym_LT_LT] = ACTIONS(7791), - [anon_sym_GT_GT] = ACTIONS(7791), - [anon_sym_SEMI] = ACTIONS(7791), - [anon_sym___attribute__] = ACTIONS(7176), - [anon_sym___attribute] = ACTIONS(7178), - [anon_sym_COLON] = ACTIONS(7789), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7180), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7791), - [anon_sym_RBRACE] = ACTIONS(7791), - [anon_sym_LBRACK] = ACTIONS(7789), - [anon_sym_QMARK] = ACTIONS(7791), - [anon_sym_LT_EQ_GT] = ACTIONS(7791), - [anon_sym_or] = ACTIONS(7791), - [anon_sym_and] = ACTIONS(7791), - [anon_sym_bitor] = ACTIONS(7791), - [anon_sym_xor] = ACTIONS(7791), - [anon_sym_bitand] = ACTIONS(7791), - [anon_sym_not_eq] = ACTIONS(7791), - [anon_sym_DASH_DASH] = ACTIONS(7791), - [anon_sym_PLUS_PLUS] = ACTIONS(7791), - [anon_sym_asm] = ACTIONS(6538), - [anon_sym___asm__] = ACTIONS(6538), - [anon_sym___asm] = ACTIONS(6497), - [anon_sym_DOT] = ACTIONS(7789), - [anon_sym_DOT_STAR] = ACTIONS(7791), - [anon_sym_DASH_GT] = ACTIONS(9211), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9216), - [anon_sym_override] = ACTIONS(9216), - [anon_sym_noexcept] = ACTIONS(7192), - [anon_sym_throw] = ACTIONS(7194), - [anon_sym_requires] = ACTIONS(9219), - [anon_sym_COLON_RBRACK] = ACTIONS(7791), + [sym_identifier] = ACTIONS(8923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8925), + [anon_sym_COMMA] = ACTIONS(8925), + [anon_sym_RPAREN] = ACTIONS(8925), + [aux_sym_preproc_if_token2] = ACTIONS(8925), + [aux_sym_preproc_else_token1] = ACTIONS(8925), + [aux_sym_preproc_elif_token1] = ACTIONS(8923), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8925), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8925), + [anon_sym_LPAREN2] = ACTIONS(8925), + [anon_sym_DASH] = ACTIONS(8923), + [anon_sym_PLUS] = ACTIONS(8923), + [anon_sym_STAR] = ACTIONS(8923), + [anon_sym_SLASH] = ACTIONS(8923), + [anon_sym_PERCENT] = ACTIONS(8923), + [anon_sym_PIPE_PIPE] = ACTIONS(8925), + [anon_sym_AMP_AMP] = ACTIONS(8925), + [anon_sym_PIPE] = ACTIONS(8923), + [anon_sym_CARET] = ACTIONS(8923), + [anon_sym_AMP] = ACTIONS(8923), + [anon_sym_EQ_EQ] = ACTIONS(8925), + [anon_sym_BANG_EQ] = ACTIONS(8925), + [anon_sym_GT] = ACTIONS(8923), + [anon_sym_GT_EQ] = ACTIONS(8925), + [anon_sym_LT_EQ] = ACTIONS(8923), + [anon_sym_LT] = ACTIONS(8923), + [anon_sym_LT_LT] = ACTIONS(8923), + [anon_sym_GT_GT] = ACTIONS(8923), + [anon_sym_SEMI] = ACTIONS(8925), + [anon_sym___attribute__] = ACTIONS(8923), + [anon_sym___attribute] = ACTIONS(8923), + [anon_sym_COLON] = ACTIONS(8923), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8925), + [anon_sym_RBRACE] = ACTIONS(8925), + [anon_sym_LBRACK] = ACTIONS(8925), + [anon_sym_EQ] = ACTIONS(8923), + [anon_sym_QMARK] = ACTIONS(8925), + [anon_sym_STAR_EQ] = ACTIONS(8925), + [anon_sym_SLASH_EQ] = ACTIONS(8925), + [anon_sym_PERCENT_EQ] = ACTIONS(8925), + [anon_sym_PLUS_EQ] = ACTIONS(8925), + [anon_sym_DASH_EQ] = ACTIONS(8925), + [anon_sym_LT_LT_EQ] = ACTIONS(8925), + [anon_sym_GT_GT_EQ] = ACTIONS(8925), + [anon_sym_AMP_EQ] = ACTIONS(8925), + [anon_sym_CARET_EQ] = ACTIONS(8925), + [anon_sym_PIPE_EQ] = ACTIONS(8925), + [anon_sym_and_eq] = ACTIONS(8923), + [anon_sym_or_eq] = ACTIONS(8923), + [anon_sym_xor_eq] = ACTIONS(8923), + [anon_sym_LT_EQ_GT] = ACTIONS(8925), + [anon_sym_or] = ACTIONS(8923), + [anon_sym_and] = ACTIONS(8923), + [anon_sym_bitor] = ACTIONS(8923), + [anon_sym_xor] = ACTIONS(8923), + [anon_sym_bitand] = ACTIONS(8923), + [anon_sym_not_eq] = ACTIONS(8923), + [anon_sym_DASH_DASH] = ACTIONS(8925), + [anon_sym_PLUS_PLUS] = ACTIONS(8925), + [anon_sym_DOT] = ACTIONS(8923), + [anon_sym_DOT_STAR] = ACTIONS(8925), + [anon_sym_DASH_GT] = ACTIONS(8925), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8923), + [anon_sym_override] = ACTIONS(8923), + [anon_sym_requires] = ACTIONS(8923), + [anon_sym_COLON_RBRACK] = ACTIONS(8925), }, [STATE(3693)] = { - [sym_string_literal] = STATE(5580), - [sym_template_argument_list] = STATE(6754), - [sym_raw_string_literal] = STATE(5580), - [aux_sym_structured_binding_declarator_repeat1] = STATE(9899), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(9471), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(8925), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_RBRACK] = ACTIONS(9473), - [anon_sym_EQ] = ACTIONS(7044), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(7046), - [anon_sym_SLASH_EQ] = ACTIONS(7046), - [anon_sym_PERCENT_EQ] = ACTIONS(7046), - [anon_sym_PLUS_EQ] = ACTIONS(7046), - [anon_sym_DASH_EQ] = ACTIONS(7046), - [anon_sym_LT_LT_EQ] = ACTIONS(7046), - [anon_sym_GT_GT_EQ] = ACTIONS(7046), - [anon_sym_AMP_EQ] = ACTIONS(7046), - [anon_sym_CARET_EQ] = ACTIONS(7046), - [anon_sym_PIPE_EQ] = ACTIONS(7046), - [anon_sym_and_eq] = ACTIONS(7046), - [anon_sym_or_eq] = ACTIONS(7046), - [anon_sym_xor_eq] = ACTIONS(7046), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(7048), - [anon_sym_u_DQUOTE] = ACTIONS(7048), - [anon_sym_U_DQUOTE] = ACTIONS(7048), - [anon_sym_u8_DQUOTE] = ACTIONS(7048), - [anon_sym_DQUOTE] = ACTIONS(7048), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(7054), - [anon_sym_LR_DQUOTE] = ACTIONS(7054), - [anon_sym_uR_DQUOTE] = ACTIONS(7054), - [anon_sym_UR_DQUOTE] = ACTIONS(7054), - [anon_sym_u8R_DQUOTE] = ACTIONS(7054), + [sym_attribute_declaration] = STATE(3752), + [sym_parameter_list] = STATE(3233), + [aux_sym_attributed_declarator_repeat1] = STATE(3752), + [sym_identifier] = ACTIONS(9471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9473), + [anon_sym_COMMA] = ACTIONS(9473), + [anon_sym_RPAREN] = ACTIONS(9473), + [aux_sym_preproc_if_token2] = ACTIONS(9473), + [aux_sym_preproc_else_token1] = ACTIONS(9473), + [aux_sym_preproc_elif_token1] = ACTIONS(9471), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9473), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9473), + [anon_sym_LPAREN2] = ACTIONS(9393), + [anon_sym_DASH] = ACTIONS(9471), + [anon_sym_PLUS] = ACTIONS(9471), + [anon_sym_STAR] = ACTIONS(9471), + [anon_sym_SLASH] = ACTIONS(9471), + [anon_sym_PERCENT] = ACTIONS(9471), + [anon_sym_PIPE_PIPE] = ACTIONS(9473), + [anon_sym_AMP_AMP] = ACTIONS(9473), + [anon_sym_PIPE] = ACTIONS(9471), + [anon_sym_CARET] = ACTIONS(9471), + [anon_sym_AMP] = ACTIONS(9471), + [anon_sym_EQ_EQ] = ACTIONS(9473), + [anon_sym_BANG_EQ] = ACTIONS(9473), + [anon_sym_GT] = ACTIONS(9471), + [anon_sym_GT_EQ] = ACTIONS(9473), + [anon_sym_LT_EQ] = ACTIONS(9471), + [anon_sym_LT] = ACTIONS(9471), + [anon_sym_LT_LT] = ACTIONS(9471), + [anon_sym_GT_GT] = ACTIONS(9471), + [anon_sym_SEMI] = ACTIONS(9473), + [anon_sym___attribute__] = ACTIONS(9471), + [anon_sym___attribute] = ACTIONS(9471), + [anon_sym_COLON] = ACTIONS(9471), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACE] = ACTIONS(9473), + [anon_sym_LBRACK] = ACTIONS(9395), + [anon_sym_EQ] = ACTIONS(9471), + [anon_sym_QMARK] = ACTIONS(9473), + [anon_sym_STAR_EQ] = ACTIONS(9473), + [anon_sym_SLASH_EQ] = ACTIONS(9473), + [anon_sym_PERCENT_EQ] = ACTIONS(9473), + [anon_sym_PLUS_EQ] = ACTIONS(9473), + [anon_sym_DASH_EQ] = ACTIONS(9473), + [anon_sym_LT_LT_EQ] = ACTIONS(9473), + [anon_sym_GT_GT_EQ] = ACTIONS(9473), + [anon_sym_AMP_EQ] = ACTIONS(9473), + [anon_sym_CARET_EQ] = ACTIONS(9473), + [anon_sym_PIPE_EQ] = ACTIONS(9473), + [anon_sym_and_eq] = ACTIONS(9471), + [anon_sym_or_eq] = ACTIONS(9471), + [anon_sym_xor_eq] = ACTIONS(9471), + [anon_sym_LT_EQ_GT] = ACTIONS(9473), + [anon_sym_or] = ACTIONS(9471), + [anon_sym_and] = ACTIONS(9471), + [anon_sym_bitor] = ACTIONS(9471), + [anon_sym_xor] = ACTIONS(9471), + [anon_sym_bitand] = ACTIONS(9471), + [anon_sym_not_eq] = ACTIONS(9471), + [anon_sym_DASH_DASH] = ACTIONS(9473), + [anon_sym_PLUS_PLUS] = ACTIONS(9473), + [anon_sym_DOT] = ACTIONS(9471), + [anon_sym_DOT_STAR] = ACTIONS(9473), + [anon_sym_DASH_GT] = ACTIONS(9473), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9473), }, [STATE(3694)] = { - [sym_attribute_declaration] = STATE(3710), - [sym_parameter_list] = STATE(3140), - [aux_sym_attributed_declarator_repeat1] = STATE(3710), - [sym_identifier] = ACTIONS(9476), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9478), - [anon_sym_COMMA] = ACTIONS(9478), - [anon_sym_RPAREN] = ACTIONS(9478), - [aux_sym_preproc_if_token2] = ACTIONS(9478), - [aux_sym_preproc_else_token1] = ACTIONS(9478), - [aux_sym_preproc_elif_token1] = ACTIONS(9476), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9478), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9478), - [anon_sym_LPAREN2] = ACTIONS(9304), - [anon_sym_DASH] = ACTIONS(9476), - [anon_sym_PLUS] = ACTIONS(9476), - [anon_sym_STAR] = ACTIONS(9476), - [anon_sym_SLASH] = ACTIONS(9476), - [anon_sym_PERCENT] = ACTIONS(9476), - [anon_sym_PIPE_PIPE] = ACTIONS(9478), - [anon_sym_AMP_AMP] = ACTIONS(9478), - [anon_sym_PIPE] = ACTIONS(9476), - [anon_sym_CARET] = ACTIONS(9476), - [anon_sym_AMP] = ACTIONS(9476), - [anon_sym_EQ_EQ] = ACTIONS(9478), - [anon_sym_BANG_EQ] = ACTIONS(9478), - [anon_sym_GT] = ACTIONS(9476), - [anon_sym_GT_EQ] = ACTIONS(9478), - [anon_sym_LT_EQ] = ACTIONS(9476), - [anon_sym_LT] = ACTIONS(9476), - [anon_sym_LT_LT] = ACTIONS(9476), - [anon_sym_GT_GT] = ACTIONS(9476), - [anon_sym_SEMI] = ACTIONS(9478), - [anon_sym___attribute__] = ACTIONS(9476), - [anon_sym___attribute] = ACTIONS(9476), - [anon_sym_COLON] = ACTIONS(9476), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACE] = ACTIONS(9478), - [anon_sym_LBRACK] = ACTIONS(9306), - [anon_sym_EQ] = ACTIONS(9476), - [anon_sym_QMARK] = ACTIONS(9478), - [anon_sym_STAR_EQ] = ACTIONS(9478), - [anon_sym_SLASH_EQ] = ACTIONS(9478), - [anon_sym_PERCENT_EQ] = ACTIONS(9478), - [anon_sym_PLUS_EQ] = ACTIONS(9478), - [anon_sym_DASH_EQ] = ACTIONS(9478), - [anon_sym_LT_LT_EQ] = ACTIONS(9478), - [anon_sym_GT_GT_EQ] = ACTIONS(9478), - [anon_sym_AMP_EQ] = ACTIONS(9478), - [anon_sym_CARET_EQ] = ACTIONS(9478), - [anon_sym_PIPE_EQ] = ACTIONS(9478), - [anon_sym_and_eq] = ACTIONS(9476), - [anon_sym_or_eq] = ACTIONS(9476), - [anon_sym_xor_eq] = ACTIONS(9476), - [anon_sym_LT_EQ_GT] = ACTIONS(9478), - [anon_sym_or] = ACTIONS(9476), - [anon_sym_and] = ACTIONS(9476), - [anon_sym_bitor] = ACTIONS(9476), - [anon_sym_xor] = ACTIONS(9476), - [anon_sym_bitand] = ACTIONS(9476), - [anon_sym_not_eq] = ACTIONS(9476), - [anon_sym_DASH_DASH] = ACTIONS(9478), - [anon_sym_PLUS_PLUS] = ACTIONS(9478), - [anon_sym_DOT] = ACTIONS(9476), - [anon_sym_DOT_STAR] = ACTIONS(9478), - [anon_sym_DASH_GT] = ACTIONS(9478), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9478), + [sym_attribute_specifier] = STATE(4441), + [sym_attribute_declaration] = STATE(4748), + [sym_gnu_asm_expression] = STATE(9083), + [sym_virtual_specifier] = STATE(4817), + [sym__function_exception_specification] = STATE(4049), + [sym__function_attributes_end] = STATE(5999), + [sym__function_postfix] = STATE(5370), + [sym_trailing_return_type] = STATE(6084), + [sym_noexcept] = STATE(4049), + [sym_throw_specifier] = STATE(4049), + [sym_requires_clause] = STATE(5370), + [aux_sym_type_definition_repeat1] = STATE(4441), + [aux_sym_attributed_declarator_repeat1] = STATE(4748), + [aux_sym__function_postfix_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(7876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7874), + [anon_sym_COMMA] = ACTIONS(7874), + [aux_sym_preproc_if_token2] = ACTIONS(7874), + [aux_sym_preproc_else_token1] = ACTIONS(7874), + [aux_sym_preproc_elif_token1] = ACTIONS(7876), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7874), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7874), + [anon_sym_LPAREN2] = ACTIONS(7874), + [anon_sym_DASH] = ACTIONS(7876), + [anon_sym_PLUS] = ACTIONS(7876), + [anon_sym_STAR] = ACTIONS(7874), + [anon_sym_SLASH] = ACTIONS(7876), + [anon_sym_PERCENT] = ACTIONS(7874), + [anon_sym_PIPE_PIPE] = ACTIONS(7874), + [anon_sym_AMP_AMP] = ACTIONS(7874), + [anon_sym_PIPE] = ACTIONS(7876), + [anon_sym_CARET] = ACTIONS(7874), + [anon_sym_AMP] = ACTIONS(7876), + [anon_sym_EQ_EQ] = ACTIONS(7874), + [anon_sym_BANG_EQ] = ACTIONS(7874), + [anon_sym_GT] = ACTIONS(7876), + [anon_sym_GT_EQ] = ACTIONS(7874), + [anon_sym_LT_EQ] = ACTIONS(7876), + [anon_sym_LT] = ACTIONS(7876), + [anon_sym_LT_LT] = ACTIONS(7874), + [anon_sym_GT_GT] = ACTIONS(7874), + [anon_sym___attribute__] = ACTIONS(7168), + [anon_sym___attribute] = ACTIONS(7168), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7170), + [anon_sym_LBRACK] = ACTIONS(7876), + [anon_sym_QMARK] = ACTIONS(7874), + [anon_sym_LT_EQ_GT] = ACTIONS(7874), + [anon_sym_or] = ACTIONS(7876), + [anon_sym_and] = ACTIONS(7876), + [anon_sym_bitor] = ACTIONS(7876), + [anon_sym_xor] = ACTIONS(7876), + [anon_sym_bitand] = ACTIONS(7876), + [anon_sym_not_eq] = ACTIONS(7876), + [anon_sym_DASH_DASH] = ACTIONS(7874), + [anon_sym_PLUS_PLUS] = ACTIONS(7874), + [anon_sym_asm] = ACTIONS(6487), + [anon_sym___asm__] = ACTIONS(6487), + [anon_sym___asm] = ACTIONS(6487), + [anon_sym_DOT] = ACTIONS(7876), + [anon_sym_DOT_STAR] = ACTIONS(7874), + [anon_sym_DASH_GT] = ACTIONS(9169), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9172), + [anon_sym_override] = ACTIONS(9172), + [anon_sym_noexcept] = ACTIONS(7179), + [anon_sym_throw] = ACTIONS(7181), + [anon_sym_requires] = ACTIONS(9175), }, [STATE(3695)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_SEMI] = ACTIONS(5638), - [anon_sym_COLON] = ACTIONS(5696), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5661), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5663), - [anon_sym_SLASH_EQ] = ACTIONS(5663), - [anon_sym_PERCENT_EQ] = ACTIONS(5663), - [anon_sym_PLUS_EQ] = ACTIONS(5663), - [anon_sym_DASH_EQ] = ACTIONS(5663), - [anon_sym_LT_LT_EQ] = ACTIONS(5663), - [anon_sym_GT_GT_EQ] = ACTIONS(5663), - [anon_sym_AMP_EQ] = ACTIONS(5663), - [anon_sym_CARET_EQ] = ACTIONS(5663), - [anon_sym_PIPE_EQ] = ACTIONS(5663), - [anon_sym_and_eq] = ACTIONS(5663), - [anon_sym_or_eq] = ACTIONS(5663), - [anon_sym_xor_eq] = ACTIONS(5663), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [sym__abstract_declarator] = STATE(4177), + [sym_abstract_parenthesized_declarator] = STATE(3633), + [sym_abstract_pointer_declarator] = STATE(3633), + [sym_abstract_function_declarator] = STATE(3633), + [sym_abstract_array_declarator] = STATE(3633), + [sym_parameter_list] = STATE(1947), + [sym_abstract_reference_declarator] = STATE(3633), + [sym__function_declarator_seq] = STATE(3634), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9281), + [anon_sym_COMMA] = ACTIONS(9281), + [anon_sym_RPAREN] = ACTIONS(9281), + [anon_sym_LPAREN2] = ACTIONS(6817), + [anon_sym_DASH] = ACTIONS(9279), + [anon_sym_PLUS] = ACTIONS(9279), + [anon_sym_STAR] = ACTIONS(6821), + [anon_sym_SLASH] = ACTIONS(9279), + [anon_sym_PERCENT] = ACTIONS(9279), + [anon_sym_PIPE_PIPE] = ACTIONS(9281), + [anon_sym_AMP_AMP] = ACTIONS(6823), + [anon_sym_PIPE] = ACTIONS(9279), + [anon_sym_CARET] = ACTIONS(9279), + [anon_sym_AMP] = ACTIONS(6825), + [anon_sym_EQ_EQ] = ACTIONS(9281), + [anon_sym_BANG_EQ] = ACTIONS(9281), + [anon_sym_GT] = ACTIONS(9279), + [anon_sym_GT_EQ] = ACTIONS(9281), + [anon_sym_LT_EQ] = ACTIONS(9279), + [anon_sym_LT] = ACTIONS(9279), + [anon_sym_LT_LT] = ACTIONS(9279), + [anon_sym_GT_GT] = ACTIONS(9279), + [anon_sym_SEMI] = ACTIONS(9281), + [anon_sym_COLON] = ACTIONS(9279), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9281), + [anon_sym_RBRACE] = ACTIONS(9281), + [anon_sym_LBRACK] = ACTIONS(6835), + [anon_sym_EQ] = ACTIONS(9279), + [anon_sym_QMARK] = ACTIONS(9281), + [anon_sym_STAR_EQ] = ACTIONS(9281), + [anon_sym_SLASH_EQ] = ACTIONS(9281), + [anon_sym_PERCENT_EQ] = ACTIONS(9281), + [anon_sym_PLUS_EQ] = ACTIONS(9281), + [anon_sym_DASH_EQ] = ACTIONS(9281), + [anon_sym_LT_LT_EQ] = ACTIONS(9281), + [anon_sym_GT_GT_EQ] = ACTIONS(9281), + [anon_sym_AMP_EQ] = ACTIONS(9281), + [anon_sym_CARET_EQ] = ACTIONS(9281), + [anon_sym_PIPE_EQ] = ACTIONS(9281), + [anon_sym_and_eq] = ACTIONS(9281), + [anon_sym_or_eq] = ACTIONS(9281), + [anon_sym_xor_eq] = ACTIONS(9281), + [anon_sym_LT_EQ_GT] = ACTIONS(9281), + [anon_sym_or] = ACTIONS(9279), + [anon_sym_and] = ACTIONS(9279), + [anon_sym_bitor] = ACTIONS(9281), + [anon_sym_xor] = ACTIONS(9279), + [anon_sym_bitand] = ACTIONS(9281), + [anon_sym_not_eq] = ACTIONS(9281), + [anon_sym_DASH_DASH] = ACTIONS(9281), + [anon_sym_PLUS_PLUS] = ACTIONS(9281), + [anon_sym_DOT] = ACTIONS(9279), + [anon_sym_DOT_STAR] = ACTIONS(9281), + [anon_sym_DASH_GT] = ACTIONS(9281), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9281), + [anon_sym_override] = ACTIONS(9281), + [anon_sym_requires] = ACTIONS(9281), + [anon_sym_COLON_RBRACK] = ACTIONS(9281), }, [STATE(3696)] = { - [sym_attribute_declaration] = STATE(3710), - [sym_parameter_list] = STATE(3140), - [aux_sym_attributed_declarator_repeat1] = STATE(3710), - [sym_identifier] = ACTIONS(9480), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9482), - [anon_sym_COMMA] = ACTIONS(9482), - [anon_sym_RPAREN] = ACTIONS(9482), - [aux_sym_preproc_if_token2] = ACTIONS(9482), - [aux_sym_preproc_else_token1] = ACTIONS(9482), - [aux_sym_preproc_elif_token1] = ACTIONS(9480), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9482), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9482), - [anon_sym_LPAREN2] = ACTIONS(9304), - [anon_sym_DASH] = ACTIONS(9480), - [anon_sym_PLUS] = ACTIONS(9480), - [anon_sym_STAR] = ACTIONS(9480), - [anon_sym_SLASH] = ACTIONS(9480), - [anon_sym_PERCENT] = ACTIONS(9480), - [anon_sym_PIPE_PIPE] = ACTIONS(9482), - [anon_sym_AMP_AMP] = ACTIONS(9482), - [anon_sym_PIPE] = ACTIONS(9480), - [anon_sym_CARET] = ACTIONS(9480), - [anon_sym_AMP] = ACTIONS(9480), - [anon_sym_EQ_EQ] = ACTIONS(9482), - [anon_sym_BANG_EQ] = ACTIONS(9482), - [anon_sym_GT] = ACTIONS(9480), - [anon_sym_GT_EQ] = ACTIONS(9482), - [anon_sym_LT_EQ] = ACTIONS(9480), - [anon_sym_LT] = ACTIONS(9480), - [anon_sym_LT_LT] = ACTIONS(9480), - [anon_sym_GT_GT] = ACTIONS(9480), - [anon_sym_SEMI] = ACTIONS(9482), - [anon_sym___attribute__] = ACTIONS(9480), - [anon_sym___attribute] = ACTIONS(9480), - [anon_sym_COLON] = ACTIONS(9480), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACE] = ACTIONS(9482), - [anon_sym_LBRACK] = ACTIONS(9306), - [anon_sym_EQ] = ACTIONS(9480), - [anon_sym_QMARK] = ACTIONS(9482), - [anon_sym_STAR_EQ] = ACTIONS(9482), - [anon_sym_SLASH_EQ] = ACTIONS(9482), - [anon_sym_PERCENT_EQ] = ACTIONS(9482), - [anon_sym_PLUS_EQ] = ACTIONS(9482), - [anon_sym_DASH_EQ] = ACTIONS(9482), - [anon_sym_LT_LT_EQ] = ACTIONS(9482), - [anon_sym_GT_GT_EQ] = ACTIONS(9482), - [anon_sym_AMP_EQ] = ACTIONS(9482), - [anon_sym_CARET_EQ] = ACTIONS(9482), - [anon_sym_PIPE_EQ] = ACTIONS(9482), - [anon_sym_and_eq] = ACTIONS(9480), - [anon_sym_or_eq] = ACTIONS(9480), - [anon_sym_xor_eq] = ACTIONS(9480), - [anon_sym_LT_EQ_GT] = ACTIONS(9482), - [anon_sym_or] = ACTIONS(9480), - [anon_sym_and] = ACTIONS(9480), - [anon_sym_bitor] = ACTIONS(9480), - [anon_sym_xor] = ACTIONS(9480), - [anon_sym_bitand] = ACTIONS(9480), - [anon_sym_not_eq] = ACTIONS(9480), - [anon_sym_DASH_DASH] = ACTIONS(9482), - [anon_sym_PLUS_PLUS] = ACTIONS(9482), - [anon_sym_DOT] = ACTIONS(9480), - [anon_sym_DOT_STAR] = ACTIONS(9482), - [anon_sym_DASH_GT] = ACTIONS(9482), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9482), + [sym_identifier] = ACTIONS(9475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9477), + [anon_sym_COMMA] = ACTIONS(9477), + [anon_sym_RPAREN] = ACTIONS(9477), + [aux_sym_preproc_if_token2] = ACTIONS(9477), + [aux_sym_preproc_else_token1] = ACTIONS(9477), + [aux_sym_preproc_elif_token1] = ACTIONS(9475), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9477), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9477), + [anon_sym_LPAREN2] = ACTIONS(9477), + [anon_sym_DASH] = ACTIONS(9475), + [anon_sym_PLUS] = ACTIONS(9475), + [anon_sym_STAR] = ACTIONS(9475), + [anon_sym_SLASH] = ACTIONS(9475), + [anon_sym_PERCENT] = ACTIONS(9475), + [anon_sym_PIPE_PIPE] = ACTIONS(9477), + [anon_sym_AMP_AMP] = ACTIONS(9477), + [anon_sym_PIPE] = ACTIONS(9475), + [anon_sym_CARET] = ACTIONS(9475), + [anon_sym_AMP] = ACTIONS(9475), + [anon_sym_EQ_EQ] = ACTIONS(9477), + [anon_sym_BANG_EQ] = ACTIONS(9477), + [anon_sym_GT] = ACTIONS(9475), + [anon_sym_GT_EQ] = ACTIONS(9477), + [anon_sym_LT_EQ] = ACTIONS(9475), + [anon_sym_LT] = ACTIONS(9475), + [anon_sym_LT_LT] = ACTIONS(9475), + [anon_sym_GT_GT] = ACTIONS(9475), + [anon_sym_SEMI] = ACTIONS(9477), + [anon_sym___attribute__] = ACTIONS(9475), + [anon_sym___attribute] = ACTIONS(9475), + [anon_sym_COLON] = ACTIONS(9475), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9477), + [anon_sym_RBRACE] = ACTIONS(9477), + [anon_sym_LBRACK] = ACTIONS(9477), + [anon_sym_EQ] = ACTIONS(9475), + [anon_sym_QMARK] = ACTIONS(9477), + [anon_sym_STAR_EQ] = ACTIONS(9477), + [anon_sym_SLASH_EQ] = ACTIONS(9477), + [anon_sym_PERCENT_EQ] = ACTIONS(9477), + [anon_sym_PLUS_EQ] = ACTIONS(9477), + [anon_sym_DASH_EQ] = ACTIONS(9477), + [anon_sym_LT_LT_EQ] = ACTIONS(9477), + [anon_sym_GT_GT_EQ] = ACTIONS(9477), + [anon_sym_AMP_EQ] = ACTIONS(9477), + [anon_sym_CARET_EQ] = ACTIONS(9477), + [anon_sym_PIPE_EQ] = ACTIONS(9477), + [anon_sym_and_eq] = ACTIONS(9475), + [anon_sym_or_eq] = ACTIONS(9475), + [anon_sym_xor_eq] = ACTIONS(9475), + [anon_sym_LT_EQ_GT] = ACTIONS(9477), + [anon_sym_or] = ACTIONS(9475), + [anon_sym_and] = ACTIONS(9475), + [anon_sym_bitor] = ACTIONS(9475), + [anon_sym_xor] = ACTIONS(9475), + [anon_sym_bitand] = ACTIONS(9475), + [anon_sym_not_eq] = ACTIONS(9475), + [anon_sym_DASH_DASH] = ACTIONS(9477), + [anon_sym_PLUS_PLUS] = ACTIONS(9477), + [anon_sym_DOT] = ACTIONS(9475), + [anon_sym_DOT_STAR] = ACTIONS(9477), + [anon_sym_DASH_GT] = ACTIONS(9477), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9475), + [anon_sym_override] = ACTIONS(9475), + [anon_sym_requires] = ACTIONS(9475), + [anon_sym_COLON_RBRACK] = ACTIONS(9477), }, [STATE(3697)] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(8699), - [anon_sym_COMMA] = ACTIONS(8699), - [anon_sym_RPAREN] = ACTIONS(8699), - [anon_sym_LPAREN2] = ACTIONS(8699), - [anon_sym_DASH] = ACTIONS(8697), - [anon_sym_PLUS] = ACTIONS(8697), - [anon_sym_STAR] = ACTIONS(8697), - [anon_sym_SLASH] = ACTIONS(8697), - [anon_sym_PERCENT] = ACTIONS(8697), - [anon_sym_PIPE_PIPE] = ACTIONS(8699), - [anon_sym_AMP_AMP] = ACTIONS(8699), - [anon_sym_PIPE] = ACTIONS(8697), - [anon_sym_CARET] = ACTIONS(8697), - [anon_sym_AMP] = ACTIONS(8697), - [anon_sym_EQ_EQ] = ACTIONS(8699), - [anon_sym_BANG_EQ] = ACTIONS(8699), - [anon_sym_GT] = ACTIONS(8697), - [anon_sym_GT_EQ] = ACTIONS(8699), - [anon_sym_LT_EQ] = ACTIONS(8697), - [anon_sym_LT] = ACTIONS(8697), - [anon_sym_LT_LT] = ACTIONS(8697), - [anon_sym_GT_GT] = ACTIONS(8697), - [anon_sym_SEMI] = ACTIONS(8699), - [anon_sym_COLON] = ACTIONS(8697), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8699), - [anon_sym_RBRACE] = ACTIONS(8699), - [anon_sym_LBRACK] = ACTIONS(8699), - [anon_sym_EQ] = ACTIONS(8697), - [anon_sym_QMARK] = ACTIONS(8699), - [anon_sym_STAR_EQ] = ACTIONS(8699), - [anon_sym_SLASH_EQ] = ACTIONS(8699), - [anon_sym_PERCENT_EQ] = ACTIONS(8699), - [anon_sym_PLUS_EQ] = ACTIONS(8699), - [anon_sym_DASH_EQ] = ACTIONS(8699), - [anon_sym_LT_LT_EQ] = ACTIONS(8699), - [anon_sym_GT_GT_EQ] = ACTIONS(8699), - [anon_sym_AMP_EQ] = ACTIONS(8699), - [anon_sym_CARET_EQ] = ACTIONS(8699), - [anon_sym_PIPE_EQ] = ACTIONS(8699), - [anon_sym_and_eq] = ACTIONS(8697), - [anon_sym_or_eq] = ACTIONS(8697), - [anon_sym_xor_eq] = ACTIONS(8697), - [anon_sym_LT_EQ_GT] = ACTIONS(8699), - [anon_sym_or] = ACTIONS(8697), - [anon_sym_and] = ACTIONS(8697), - [anon_sym_bitor] = ACTIONS(8697), - [anon_sym_xor] = ACTIONS(8697), - [anon_sym_bitand] = ACTIONS(8697), - [anon_sym_not_eq] = ACTIONS(8697), - [anon_sym_DASH_DASH] = ACTIONS(8699), - [anon_sym_PLUS_PLUS] = ACTIONS(8699), - [anon_sym_DOT] = ACTIONS(8697), - [anon_sym_DOT_STAR] = ACTIONS(8699), - [anon_sym_DASH_GT] = ACTIONS(8699), - [anon_sym_L_DQUOTE] = ACTIONS(8699), - [anon_sym_u_DQUOTE] = ACTIONS(8699), - [anon_sym_U_DQUOTE] = ACTIONS(8699), - [anon_sym_u8_DQUOTE] = ACTIONS(8699), - [anon_sym_DQUOTE] = ACTIONS(8699), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8699), - [anon_sym_LR_DQUOTE] = ACTIONS(8699), - [anon_sym_uR_DQUOTE] = ACTIONS(8699), - [anon_sym_UR_DQUOTE] = ACTIONS(8699), - [anon_sym_u8R_DQUOTE] = ACTIONS(8699), - [anon_sym_COLON_RBRACK] = ACTIONS(8699), - [sym_literal_suffix] = ACTIONS(8697), + [sym_identifier] = ACTIONS(9479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9481), + [anon_sym_COMMA] = ACTIONS(9481), + [anon_sym_RPAREN] = ACTIONS(9481), + [aux_sym_preproc_if_token2] = ACTIONS(9481), + [aux_sym_preproc_else_token1] = ACTIONS(9481), + [aux_sym_preproc_elif_token1] = ACTIONS(9479), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9481), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9481), + [anon_sym_LPAREN2] = ACTIONS(9481), + [anon_sym_DASH] = ACTIONS(9479), + [anon_sym_PLUS] = ACTIONS(9479), + [anon_sym_STAR] = ACTIONS(9479), + [anon_sym_SLASH] = ACTIONS(9479), + [anon_sym_PERCENT] = ACTIONS(9479), + [anon_sym_PIPE_PIPE] = ACTIONS(9481), + [anon_sym_AMP_AMP] = ACTIONS(9481), + [anon_sym_PIPE] = ACTIONS(9479), + [anon_sym_CARET] = ACTIONS(9479), + [anon_sym_AMP] = ACTIONS(9479), + [anon_sym_EQ_EQ] = ACTIONS(9481), + [anon_sym_BANG_EQ] = ACTIONS(9481), + [anon_sym_GT] = ACTIONS(9479), + [anon_sym_GT_EQ] = ACTIONS(9481), + [anon_sym_LT_EQ] = ACTIONS(9479), + [anon_sym_LT] = ACTIONS(9479), + [anon_sym_LT_LT] = ACTIONS(9479), + [anon_sym_GT_GT] = ACTIONS(9479), + [anon_sym_SEMI] = ACTIONS(9481), + [anon_sym___attribute__] = ACTIONS(9479), + [anon_sym___attribute] = ACTIONS(9479), + [anon_sym_COLON] = ACTIONS(9479), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9481), + [anon_sym_RBRACE] = ACTIONS(9481), + [anon_sym_LBRACK] = ACTIONS(9481), + [anon_sym_EQ] = ACTIONS(9479), + [anon_sym_QMARK] = ACTIONS(9481), + [anon_sym_STAR_EQ] = ACTIONS(9481), + [anon_sym_SLASH_EQ] = ACTIONS(9481), + [anon_sym_PERCENT_EQ] = ACTIONS(9481), + [anon_sym_PLUS_EQ] = ACTIONS(9481), + [anon_sym_DASH_EQ] = ACTIONS(9481), + [anon_sym_LT_LT_EQ] = ACTIONS(9481), + [anon_sym_GT_GT_EQ] = ACTIONS(9481), + [anon_sym_AMP_EQ] = ACTIONS(9481), + [anon_sym_CARET_EQ] = ACTIONS(9481), + [anon_sym_PIPE_EQ] = ACTIONS(9481), + [anon_sym_and_eq] = ACTIONS(9479), + [anon_sym_or_eq] = ACTIONS(9479), + [anon_sym_xor_eq] = ACTIONS(9479), + [anon_sym_LT_EQ_GT] = ACTIONS(9481), + [anon_sym_or] = ACTIONS(9479), + [anon_sym_and] = ACTIONS(9479), + [anon_sym_bitor] = ACTIONS(9479), + [anon_sym_xor] = ACTIONS(9479), + [anon_sym_bitand] = ACTIONS(9479), + [anon_sym_not_eq] = ACTIONS(9479), + [anon_sym_DASH_DASH] = ACTIONS(9481), + [anon_sym_PLUS_PLUS] = ACTIONS(9481), + [anon_sym_DOT] = ACTIONS(9479), + [anon_sym_DOT_STAR] = ACTIONS(9481), + [anon_sym_DASH_GT] = ACTIONS(9481), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9479), + [anon_sym_override] = ACTIONS(9479), + [anon_sym_requires] = ACTIONS(9479), + [anon_sym_COLON_RBRACK] = ACTIONS(9481), }, [STATE(3698)] = { - [sym_attribute_declaration] = STATE(3710), - [sym_parameter_list] = STATE(3140), - [aux_sym_attributed_declarator_repeat1] = STATE(3710), - [sym_identifier] = ACTIONS(9484), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9486), - [anon_sym_COMMA] = ACTIONS(9486), - [anon_sym_RPAREN] = ACTIONS(9486), - [aux_sym_preproc_if_token2] = ACTIONS(9486), - [aux_sym_preproc_else_token1] = ACTIONS(9486), - [aux_sym_preproc_elif_token1] = ACTIONS(9484), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9486), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9486), - [anon_sym_LPAREN2] = ACTIONS(9304), - [anon_sym_DASH] = ACTIONS(9484), - [anon_sym_PLUS] = ACTIONS(9484), - [anon_sym_STAR] = ACTIONS(9484), - [anon_sym_SLASH] = ACTIONS(9484), - [anon_sym_PERCENT] = ACTIONS(9484), - [anon_sym_PIPE_PIPE] = ACTIONS(9486), - [anon_sym_AMP_AMP] = ACTIONS(9486), - [anon_sym_PIPE] = ACTIONS(9484), - [anon_sym_CARET] = ACTIONS(9484), - [anon_sym_AMP] = ACTIONS(9484), - [anon_sym_EQ_EQ] = ACTIONS(9486), - [anon_sym_BANG_EQ] = ACTIONS(9486), - [anon_sym_GT] = ACTIONS(9484), - [anon_sym_GT_EQ] = ACTIONS(9486), - [anon_sym_LT_EQ] = ACTIONS(9484), - [anon_sym_LT] = ACTIONS(9484), - [anon_sym_LT_LT] = ACTIONS(9484), - [anon_sym_GT_GT] = ACTIONS(9484), - [anon_sym_SEMI] = ACTIONS(9486), - [anon_sym___attribute__] = ACTIONS(9484), - [anon_sym___attribute] = ACTIONS(9484), - [anon_sym_COLON] = ACTIONS(9484), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACE] = ACTIONS(9486), - [anon_sym_LBRACK] = ACTIONS(9306), - [anon_sym_EQ] = ACTIONS(9484), - [anon_sym_QMARK] = ACTIONS(9486), - [anon_sym_STAR_EQ] = ACTIONS(9486), - [anon_sym_SLASH_EQ] = ACTIONS(9486), - [anon_sym_PERCENT_EQ] = ACTIONS(9486), - [anon_sym_PLUS_EQ] = ACTIONS(9486), - [anon_sym_DASH_EQ] = ACTIONS(9486), - [anon_sym_LT_LT_EQ] = ACTIONS(9486), - [anon_sym_GT_GT_EQ] = ACTIONS(9486), - [anon_sym_AMP_EQ] = ACTIONS(9486), - [anon_sym_CARET_EQ] = ACTIONS(9486), - [anon_sym_PIPE_EQ] = ACTIONS(9486), - [anon_sym_and_eq] = ACTIONS(9484), - [anon_sym_or_eq] = ACTIONS(9484), - [anon_sym_xor_eq] = ACTIONS(9484), - [anon_sym_LT_EQ_GT] = ACTIONS(9486), - [anon_sym_or] = ACTIONS(9484), - [anon_sym_and] = ACTIONS(9484), - [anon_sym_bitor] = ACTIONS(9484), - [anon_sym_xor] = ACTIONS(9484), - [anon_sym_bitand] = ACTIONS(9484), - [anon_sym_not_eq] = ACTIONS(9484), - [anon_sym_DASH_DASH] = ACTIONS(9486), - [anon_sym_PLUS_PLUS] = ACTIONS(9486), - [anon_sym_DOT] = ACTIONS(9484), - [anon_sym_DOT_STAR] = ACTIONS(9486), - [anon_sym_DASH_GT] = ACTIONS(9486), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9486), + [sym_identifier] = ACTIONS(9483), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9485), + [anon_sym_COMMA] = ACTIONS(9485), + [anon_sym_RPAREN] = ACTIONS(9485), + [aux_sym_preproc_if_token2] = ACTIONS(9485), + [aux_sym_preproc_else_token1] = ACTIONS(9485), + [aux_sym_preproc_elif_token1] = ACTIONS(9483), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9485), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9485), + [anon_sym_LPAREN2] = ACTIONS(9485), + [anon_sym_DASH] = ACTIONS(9483), + [anon_sym_PLUS] = ACTIONS(9483), + [anon_sym_STAR] = ACTIONS(9483), + [anon_sym_SLASH] = ACTIONS(9483), + [anon_sym_PERCENT] = ACTIONS(9483), + [anon_sym_PIPE_PIPE] = ACTIONS(9485), + [anon_sym_AMP_AMP] = ACTIONS(9485), + [anon_sym_PIPE] = ACTIONS(9483), + [anon_sym_CARET] = ACTIONS(9483), + [anon_sym_AMP] = ACTIONS(9483), + [anon_sym_EQ_EQ] = ACTIONS(9485), + [anon_sym_BANG_EQ] = ACTIONS(9485), + [anon_sym_GT] = ACTIONS(9483), + [anon_sym_GT_EQ] = ACTIONS(9485), + [anon_sym_LT_EQ] = ACTIONS(9483), + [anon_sym_LT] = ACTIONS(9483), + [anon_sym_LT_LT] = ACTIONS(9483), + [anon_sym_GT_GT] = ACTIONS(9483), + [anon_sym_SEMI] = ACTIONS(9485), + [anon_sym___attribute__] = ACTIONS(9483), + [anon_sym___attribute] = ACTIONS(9483), + [anon_sym_COLON] = ACTIONS(9483), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9485), + [anon_sym_RBRACE] = ACTIONS(9485), + [anon_sym_LBRACK] = ACTIONS(9485), + [anon_sym_EQ] = ACTIONS(9483), + [anon_sym_QMARK] = ACTIONS(9485), + [anon_sym_STAR_EQ] = ACTIONS(9485), + [anon_sym_SLASH_EQ] = ACTIONS(9485), + [anon_sym_PERCENT_EQ] = ACTIONS(9485), + [anon_sym_PLUS_EQ] = ACTIONS(9485), + [anon_sym_DASH_EQ] = ACTIONS(9485), + [anon_sym_LT_LT_EQ] = ACTIONS(9485), + [anon_sym_GT_GT_EQ] = ACTIONS(9485), + [anon_sym_AMP_EQ] = ACTIONS(9485), + [anon_sym_CARET_EQ] = ACTIONS(9485), + [anon_sym_PIPE_EQ] = ACTIONS(9485), + [anon_sym_and_eq] = ACTIONS(9483), + [anon_sym_or_eq] = ACTIONS(9483), + [anon_sym_xor_eq] = ACTIONS(9483), + [anon_sym_LT_EQ_GT] = ACTIONS(9485), + [anon_sym_or] = ACTIONS(9483), + [anon_sym_and] = ACTIONS(9483), + [anon_sym_bitor] = ACTIONS(9483), + [anon_sym_xor] = ACTIONS(9483), + [anon_sym_bitand] = ACTIONS(9483), + [anon_sym_not_eq] = ACTIONS(9483), + [anon_sym_DASH_DASH] = ACTIONS(9485), + [anon_sym_PLUS_PLUS] = ACTIONS(9485), + [anon_sym_DOT] = ACTIONS(9483), + [anon_sym_DOT_STAR] = ACTIONS(9485), + [anon_sym_DASH_GT] = ACTIONS(9485), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(9483), + [anon_sym_override] = ACTIONS(9483), + [anon_sym_requires] = ACTIONS(9483), + [anon_sym_COLON_RBRACK] = ACTIONS(9485), }, [STATE(3699)] = { - [sym_identifier] = ACTIONS(7085), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_TILDE] = ACTIONS(7090), - [anon_sym_STAR] = ACTIONS(7090), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym_virtual] = ACTIONS(7085), - [anon_sym_extern] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_using] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), - [anon_sym___declspec] = ACTIONS(7085), - [anon_sym___based] = ACTIONS(7085), - [anon_sym___cdecl] = ACTIONS(7085), - [anon_sym___clrcall] = ACTIONS(7085), - [anon_sym___stdcall] = ACTIONS(7085), - [anon_sym___fastcall] = ACTIONS(7085), - [anon_sym___thiscall] = ACTIONS(7085), - [anon_sym___vectorcall] = ACTIONS(7085), - [anon_sym_signed] = ACTIONS(7085), - [anon_sym_unsigned] = ACTIONS(7085), - [anon_sym_long] = ACTIONS(7085), - [anon_sym_short] = ACTIONS(7085), - [anon_sym_LBRACK] = ACTIONS(7085), - [anon_sym_static] = ACTIONS(7085), - [anon_sym_register] = ACTIONS(7085), - [anon_sym_inline] = ACTIONS(7085), - [anon_sym___inline] = ACTIONS(7085), - [anon_sym___inline__] = ACTIONS(7085), - [anon_sym___forceinline] = ACTIONS(7085), - [anon_sym_thread_local] = ACTIONS(7085), - [anon_sym___thread] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [sym_primitive_type] = ACTIONS(7085), - [anon_sym_enum] = ACTIONS(7085), - [anon_sym_class] = ACTIONS(7085), - [anon_sym_struct] = ACTIONS(7085), - [anon_sym_union] = ACTIONS(7085), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_typename] = ACTIONS(7085), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7085), - [anon_sym_decltype] = ACTIONS(7085), - [anon_sym_explicit] = ACTIONS(7085), - [anon_sym_template] = ACTIONS(7085), - [anon_sym_operator] = ACTIONS(7085), - [anon_sym_friend] = ACTIONS(7085), - [anon_sym_concept] = ACTIONS(7085), - [anon_sym_LBRACK_COLON] = ACTIONS(7090), + [sym_ms_based_modifier] = STATE(10831), + [sym__declarator] = STATE(8775), + [sym__abstract_declarator] = STATE(8975), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(7149), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(4787), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(7149), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8555), + [anon_sym_AMP_AMP] = ACTIONS(8557), + [anon_sym_AMP] = ACTIONS(8559), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_EQ] = ACTIONS(6843), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(6843), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, [STATE(3700)] = { - [sym__abstract_declarator] = STATE(4243), - [sym_abstract_parenthesized_declarator] = STATE(3625), - [sym_abstract_pointer_declarator] = STATE(3625), - [sym_abstract_function_declarator] = STATE(3625), - [sym_abstract_array_declarator] = STATE(3625), - [sym_parameter_list] = STATE(1947), - [sym_abstract_reference_declarator] = STATE(3625), - [sym__function_declarator_seq] = STATE(3626), - [sym_identifier] = ACTIONS(9429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9427), - [anon_sym_COMMA] = ACTIONS(9427), - [aux_sym_preproc_if_token2] = ACTIONS(9427), - [aux_sym_preproc_else_token1] = ACTIONS(9427), - [aux_sym_preproc_elif_token1] = ACTIONS(9429), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9427), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9427), - [anon_sym_LPAREN2] = ACTIONS(6825), - [anon_sym_DASH] = ACTIONS(9429), - [anon_sym_PLUS] = ACTIONS(9429), - [anon_sym_STAR] = ACTIONS(6827), - [anon_sym_SLASH] = ACTIONS(9429), - [anon_sym_PERCENT] = ACTIONS(9429), - [anon_sym_PIPE_PIPE] = ACTIONS(9427), - [anon_sym_AMP_AMP] = ACTIONS(6829), - [anon_sym_PIPE] = ACTIONS(9429), - [anon_sym_CARET] = ACTIONS(9429), - [anon_sym_AMP] = ACTIONS(6831), - [anon_sym_EQ_EQ] = ACTIONS(9427), - [anon_sym_BANG_EQ] = ACTIONS(9427), - [anon_sym_GT] = ACTIONS(9429), - [anon_sym_GT_EQ] = ACTIONS(9427), - [anon_sym_LT_EQ] = ACTIONS(9429), - [anon_sym_LT] = ACTIONS(9429), - [anon_sym_LT_LT] = ACTIONS(9429), - [anon_sym_GT_GT] = ACTIONS(9429), - [anon_sym_LBRACK] = ACTIONS(6839), - [anon_sym_EQ] = ACTIONS(9429), - [anon_sym_QMARK] = ACTIONS(9427), - [anon_sym_STAR_EQ] = ACTIONS(9427), - [anon_sym_SLASH_EQ] = ACTIONS(9427), - [anon_sym_PERCENT_EQ] = ACTIONS(9427), - [anon_sym_PLUS_EQ] = ACTIONS(9427), - [anon_sym_DASH_EQ] = ACTIONS(9427), - [anon_sym_LT_LT_EQ] = ACTIONS(9427), - [anon_sym_GT_GT_EQ] = ACTIONS(9427), - [anon_sym_AMP_EQ] = ACTIONS(9427), - [anon_sym_CARET_EQ] = ACTIONS(9427), - [anon_sym_PIPE_EQ] = ACTIONS(9427), - [anon_sym_and_eq] = ACTIONS(9429), - [anon_sym_or_eq] = ACTIONS(9429), - [anon_sym_xor_eq] = ACTIONS(9429), - [anon_sym_LT_EQ_GT] = ACTIONS(9427), - [anon_sym_or] = ACTIONS(9429), - [anon_sym_and] = ACTIONS(9429), - [anon_sym_bitor] = ACTIONS(9429), - [anon_sym_xor] = ACTIONS(9429), - [anon_sym_bitand] = ACTIONS(9429), - [anon_sym_not_eq] = ACTIONS(9429), - [anon_sym_DASH_DASH] = ACTIONS(9427), - [anon_sym_PLUS_PLUS] = ACTIONS(9427), - [anon_sym_DOT] = ACTIONS(9429), - [anon_sym_DOT_STAR] = ACTIONS(9427), - [anon_sym_DASH_GT] = ACTIONS(9427), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9429), - [anon_sym_override] = ACTIONS(9429), - [anon_sym_requires] = ACTIONS(9429), + [sym_identifier] = ACTIONS(7331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7333), + [anon_sym_COMMA] = ACTIONS(7333), + [anon_sym_RPAREN] = ACTIONS(7333), + [anon_sym_LPAREN2] = ACTIONS(7333), + [anon_sym_TILDE] = ACTIONS(7333), + [anon_sym_STAR] = ACTIONS(7333), + [anon_sym_PIPE_PIPE] = ACTIONS(7333), + [anon_sym_AMP_AMP] = ACTIONS(7333), + [anon_sym_AMP] = ACTIONS(7331), + [anon_sym_SEMI] = ACTIONS(7333), + [anon_sym___extension__] = ACTIONS(7331), + [anon_sym_virtual] = ACTIONS(7331), + [anon_sym_extern] = ACTIONS(7331), + [anon_sym___attribute__] = ACTIONS(7331), + [anon_sym___attribute] = ACTIONS(7331), + [anon_sym_COLON] = ACTIONS(7331), + [anon_sym_COLON_COLON] = ACTIONS(7333), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7333), + [anon_sym___declspec] = ACTIONS(7331), + [anon_sym___based] = ACTIONS(7331), + [anon_sym___cdecl] = ACTIONS(7331), + [anon_sym___clrcall] = ACTIONS(7331), + [anon_sym___stdcall] = ACTIONS(7331), + [anon_sym___fastcall] = ACTIONS(7331), + [anon_sym___thiscall] = ACTIONS(7331), + [anon_sym___vectorcall] = ACTIONS(7331), + [anon_sym_LBRACE] = ACTIONS(7333), + [anon_sym_LBRACK] = ACTIONS(7331), + [anon_sym_static] = ACTIONS(7331), + [anon_sym_EQ] = ACTIONS(7333), + [anon_sym_register] = ACTIONS(7331), + [anon_sym_inline] = ACTIONS(7331), + [anon_sym___inline] = ACTIONS(7331), + [anon_sym___inline__] = ACTIONS(7331), + [anon_sym___forceinline] = ACTIONS(7331), + [anon_sym_thread_local] = ACTIONS(7331), + [anon_sym___thread] = ACTIONS(7331), + [anon_sym_const] = ACTIONS(7331), + [anon_sym_constexpr] = ACTIONS(7331), + [anon_sym_volatile] = ACTIONS(7331), + [anon_sym_restrict] = ACTIONS(7331), + [anon_sym___restrict__] = ACTIONS(7331), + [anon_sym__Atomic] = ACTIONS(7331), + [anon_sym__Noreturn] = ACTIONS(7331), + [anon_sym_noreturn] = ACTIONS(7331), + [anon_sym__Nonnull] = ACTIONS(7331), + [anon_sym_mutable] = ACTIONS(7331), + [anon_sym_constinit] = ACTIONS(7331), + [anon_sym_consteval] = ACTIONS(7331), + [anon_sym_alignas] = ACTIONS(7331), + [anon_sym__Alignas] = ACTIONS(7331), + [anon_sym_or] = ACTIONS(7331), + [anon_sym_and] = ACTIONS(7331), + [anon_sym_DASH_GT] = ACTIONS(7333), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7331), + [anon_sym_decltype] = ACTIONS(7331), + [anon_sym_final] = ACTIONS(7331), + [anon_sym_override] = ACTIONS(7331), + [anon_sym_template] = ACTIONS(7331), + [anon_sym_GT2] = ACTIONS(7333), + [anon_sym_operator] = ACTIONS(7331), + [anon_sym_noexcept] = ACTIONS(7331), + [anon_sym_throw] = ACTIONS(7331), + [anon_sym_LBRACK_COLON] = ACTIONS(7333), }, [STATE(3701)] = { - [sym_string_literal] = STATE(3858), - [sym_template_argument_list] = STATE(5916), - [sym_raw_string_literal] = STATE(3858), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(9488), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(6958), - [anon_sym_or_eq] = ACTIONS(6958), - [anon_sym_xor_eq] = ACTIONS(6958), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5645), - [anon_sym_L_DQUOTE] = ACTIONS(5995), - [anon_sym_u_DQUOTE] = ACTIONS(5995), - [anon_sym_U_DQUOTE] = ACTIONS(5995), - [anon_sym_u8_DQUOTE] = ACTIONS(5995), - [anon_sym_DQUOTE] = ACTIONS(5995), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(5997), - [anon_sym_LR_DQUOTE] = ACTIONS(5997), - [anon_sym_uR_DQUOTE] = ACTIONS(5997), - [anon_sym_UR_DQUOTE] = ACTIONS(5997), - [anon_sym_u8R_DQUOTE] = ACTIONS(5997), - [anon_sym_DASH_GT_STAR] = ACTIONS(5638), - }, - [STATE(3702)] = { - [sym_identifier] = ACTIONS(9011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9013), - [anon_sym_COMMA] = ACTIONS(9013), - [anon_sym_RPAREN] = ACTIONS(9013), - [aux_sym_preproc_if_token2] = ACTIONS(9013), - [aux_sym_preproc_else_token1] = ACTIONS(9013), - [aux_sym_preproc_elif_token1] = ACTIONS(9011), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9013), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9013), - [anon_sym_LPAREN2] = ACTIONS(9013), - [anon_sym_DASH] = ACTIONS(9011), - [anon_sym_PLUS] = ACTIONS(9011), - [anon_sym_STAR] = ACTIONS(9011), - [anon_sym_SLASH] = ACTIONS(9011), - [anon_sym_PERCENT] = ACTIONS(9011), - [anon_sym_PIPE_PIPE] = ACTIONS(9013), - [anon_sym_AMP_AMP] = ACTIONS(9013), - [anon_sym_PIPE] = ACTIONS(9011), - [anon_sym_CARET] = ACTIONS(9011), - [anon_sym_AMP] = ACTIONS(9011), - [anon_sym_EQ_EQ] = ACTIONS(9013), - [anon_sym_BANG_EQ] = ACTIONS(9013), - [anon_sym_GT] = ACTIONS(9011), - [anon_sym_GT_EQ] = ACTIONS(9013), - [anon_sym_LT_EQ] = ACTIONS(9011), - [anon_sym_LT] = ACTIONS(9011), - [anon_sym_LT_LT] = ACTIONS(9011), - [anon_sym_GT_GT] = ACTIONS(9011), - [anon_sym_SEMI] = ACTIONS(9013), - [anon_sym___attribute__] = ACTIONS(9011), - [anon_sym___attribute] = ACTIONS(9011), - [anon_sym_COLON] = ACTIONS(9011), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9013), - [anon_sym_RBRACE] = ACTIONS(9013), - [anon_sym_LBRACK] = ACTIONS(9013), - [anon_sym_EQ] = ACTIONS(9011), - [anon_sym_QMARK] = ACTIONS(9013), - [anon_sym_STAR_EQ] = ACTIONS(9013), - [anon_sym_SLASH_EQ] = ACTIONS(9013), - [anon_sym_PERCENT_EQ] = ACTIONS(9013), - [anon_sym_PLUS_EQ] = ACTIONS(9013), - [anon_sym_DASH_EQ] = ACTIONS(9013), - [anon_sym_LT_LT_EQ] = ACTIONS(9013), - [anon_sym_GT_GT_EQ] = ACTIONS(9013), - [anon_sym_AMP_EQ] = ACTIONS(9013), - [anon_sym_CARET_EQ] = ACTIONS(9013), - [anon_sym_PIPE_EQ] = ACTIONS(9013), - [anon_sym_and_eq] = ACTIONS(9011), - [anon_sym_or_eq] = ACTIONS(9011), - [anon_sym_xor_eq] = ACTIONS(9011), - [anon_sym_LT_EQ_GT] = ACTIONS(9013), - [anon_sym_or] = ACTIONS(9011), - [anon_sym_and] = ACTIONS(9011), - [anon_sym_bitor] = ACTIONS(9011), - [anon_sym_xor] = ACTIONS(9011), - [anon_sym_bitand] = ACTIONS(9011), - [anon_sym_not_eq] = ACTIONS(9011), - [anon_sym_DASH_DASH] = ACTIONS(9013), - [anon_sym_PLUS_PLUS] = ACTIONS(9013), - [anon_sym_DOT] = ACTIONS(9011), - [anon_sym_DOT_STAR] = ACTIONS(9013), - [anon_sym_DASH_GT] = ACTIONS(9013), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(9011), - [anon_sym_override] = ACTIONS(9011), - [anon_sym_requires] = ACTIONS(9011), - [anon_sym_COLON_RBRACK] = ACTIONS(9013), - }, - [STATE(3703)] = { - [sym_argument_list] = STATE(3840), - [sym_initializer_list] = STATE(3840), - [sym_identifier] = ACTIONS(9491), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9493), - [anon_sym_COMMA] = ACTIONS(9493), - [anon_sym_RPAREN] = ACTIONS(9493), - [aux_sym_preproc_if_token2] = ACTIONS(9493), - [aux_sym_preproc_else_token1] = ACTIONS(9493), - [aux_sym_preproc_elif_token1] = ACTIONS(9491), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9493), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9493), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9491), - [anon_sym_PLUS] = ACTIONS(9491), - [anon_sym_STAR] = ACTIONS(9491), - [anon_sym_SLASH] = ACTIONS(9491), - [anon_sym_PERCENT] = ACTIONS(9491), - [anon_sym_PIPE_PIPE] = ACTIONS(9493), - [anon_sym_AMP_AMP] = ACTIONS(9493), - [anon_sym_PIPE] = ACTIONS(9491), - [anon_sym_CARET] = ACTIONS(9491), - [anon_sym_AMP] = ACTIONS(9491), - [anon_sym_EQ_EQ] = ACTIONS(9493), - [anon_sym_BANG_EQ] = ACTIONS(9493), - [anon_sym_GT] = ACTIONS(9491), - [anon_sym_GT_EQ] = ACTIONS(9493), - [anon_sym_LT_EQ] = ACTIONS(9491), - [anon_sym_LT] = ACTIONS(9491), - [anon_sym_LT_LT] = ACTIONS(9491), - [anon_sym_GT_GT] = ACTIONS(9491), - [anon_sym_SEMI] = ACTIONS(9493), - [anon_sym___attribute__] = ACTIONS(9491), - [anon_sym___attribute] = ACTIONS(9491), - [anon_sym_COLON] = ACTIONS(9491), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9493), - [anon_sym_LBRACE] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(9493), - [anon_sym_LBRACK] = ACTIONS(9493), - [anon_sym_EQ] = ACTIONS(9491), - [anon_sym_QMARK] = ACTIONS(9493), - [anon_sym_STAR_EQ] = ACTIONS(9493), - [anon_sym_SLASH_EQ] = ACTIONS(9493), - [anon_sym_PERCENT_EQ] = ACTIONS(9493), - [anon_sym_PLUS_EQ] = ACTIONS(9493), - [anon_sym_DASH_EQ] = ACTIONS(9493), - [anon_sym_LT_LT_EQ] = ACTIONS(9493), - [anon_sym_GT_GT_EQ] = ACTIONS(9493), - [anon_sym_AMP_EQ] = ACTIONS(9493), - [anon_sym_CARET_EQ] = ACTIONS(9493), - [anon_sym_PIPE_EQ] = ACTIONS(9493), - [anon_sym_and_eq] = ACTIONS(9491), - [anon_sym_or_eq] = ACTIONS(9491), - [anon_sym_xor_eq] = ACTIONS(9491), - [anon_sym_LT_EQ_GT] = ACTIONS(9493), - [anon_sym_or] = ACTIONS(9491), - [anon_sym_and] = ACTIONS(9491), - [anon_sym_bitor] = ACTIONS(9491), - [anon_sym_xor] = ACTIONS(9491), - [anon_sym_bitand] = ACTIONS(9491), - [anon_sym_not_eq] = ACTIONS(9491), - [anon_sym_DASH_DASH] = ACTIONS(9493), - [anon_sym_PLUS_PLUS] = ACTIONS(9493), - [anon_sym_DOT] = ACTIONS(9491), - [anon_sym_DOT_STAR] = ACTIONS(9493), - [anon_sym_DASH_GT] = ACTIONS(9493), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9493), - }, - [STATE(3704)] = { - [sym__abstract_declarator] = STATE(6470), - [sym_abstract_parenthesized_declarator] = STATE(6708), - [sym_abstract_pointer_declarator] = STATE(6708), - [sym_abstract_function_declarator] = STATE(6708), - [sym_abstract_array_declarator] = STATE(6708), - [sym_type_qualifier] = STATE(3714), - [sym_alignas_qualifier] = STATE(3945), - [sym_parameter_list] = STATE(2277), - [sym_abstract_reference_declarator] = STATE(6708), - [sym__function_declarator_seq] = STATE(6709), - [aux_sym__type_definition_type_repeat1] = STATE(3714), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(8600), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(8602), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(8604), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(8606), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7393), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7393), - [anon_sym___extension__] = ACTIONS(8608), - [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym___restrict__] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym__Noreturn] = ACTIONS(8608), - [anon_sym_noreturn] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym_mutable] = ACTIONS(8608), - [anon_sym_constinit] = ACTIONS(8608), - [anon_sym_consteval] = ACTIONS(8608), - [anon_sym_alignas] = ACTIONS(8620), - [anon_sym__Alignas] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_GT2] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), - }, - [STATE(3705)] = { - [sym_template_argument_list] = STATE(3709), - [sym_identifier] = ACTIONS(9495), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9497), - [anon_sym_COMMA] = ACTIONS(9497), - [anon_sym_RPAREN] = ACTIONS(9497), - [aux_sym_preproc_if_token2] = ACTIONS(9497), - [aux_sym_preproc_else_token1] = ACTIONS(9497), - [aux_sym_preproc_elif_token1] = ACTIONS(9495), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9497), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9497), - [anon_sym_LPAREN2] = ACTIONS(9497), - [anon_sym_DASH] = ACTIONS(9495), - [anon_sym_PLUS] = ACTIONS(9495), - [anon_sym_STAR] = ACTIONS(9495), - [anon_sym_SLASH] = ACTIONS(9495), - [anon_sym_PERCENT] = ACTIONS(9495), - [anon_sym_PIPE_PIPE] = ACTIONS(9497), - [anon_sym_AMP_AMP] = ACTIONS(9497), - [anon_sym_PIPE] = ACTIONS(9495), - [anon_sym_CARET] = ACTIONS(9495), - [anon_sym_AMP] = ACTIONS(9495), - [anon_sym_EQ_EQ] = ACTIONS(9497), - [anon_sym_BANG_EQ] = ACTIONS(9497), - [anon_sym_GT] = ACTIONS(9495), - [anon_sym_GT_EQ] = ACTIONS(9497), - [anon_sym_LT_EQ] = ACTIONS(9495), - [anon_sym_LT] = ACTIONS(9499), - [anon_sym_LT_LT] = ACTIONS(9495), - [anon_sym_GT_GT] = ACTIONS(9495), - [anon_sym_SEMI] = ACTIONS(9497), - [anon_sym___attribute__] = ACTIONS(9495), - [anon_sym___attribute] = ACTIONS(9495), - [anon_sym_COLON] = ACTIONS(9495), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9497), - [anon_sym_RBRACE] = ACTIONS(9497), - [anon_sym_LBRACK] = ACTIONS(9497), - [anon_sym_EQ] = ACTIONS(9495), - [anon_sym_QMARK] = ACTIONS(9497), - [anon_sym_STAR_EQ] = ACTIONS(9497), - [anon_sym_SLASH_EQ] = ACTIONS(9497), - [anon_sym_PERCENT_EQ] = ACTIONS(9497), - [anon_sym_PLUS_EQ] = ACTIONS(9497), - [anon_sym_DASH_EQ] = ACTIONS(9497), - [anon_sym_LT_LT_EQ] = ACTIONS(9497), - [anon_sym_GT_GT_EQ] = ACTIONS(9497), - [anon_sym_AMP_EQ] = ACTIONS(9497), - [anon_sym_CARET_EQ] = ACTIONS(9497), - [anon_sym_PIPE_EQ] = ACTIONS(9497), - [anon_sym_and_eq] = ACTIONS(9495), - [anon_sym_or_eq] = ACTIONS(9495), - [anon_sym_xor_eq] = ACTIONS(9495), - [anon_sym_LT_EQ_GT] = ACTIONS(9497), - [anon_sym_or] = ACTIONS(9495), - [anon_sym_and] = ACTIONS(9495), - [anon_sym_bitor] = ACTIONS(9495), - [anon_sym_xor] = ACTIONS(9495), - [anon_sym_bitand] = ACTIONS(9495), - [anon_sym_not_eq] = ACTIONS(9495), - [anon_sym_DASH_DASH] = ACTIONS(9497), - [anon_sym_PLUS_PLUS] = ACTIONS(9497), - [anon_sym_DOT] = ACTIONS(9495), - [anon_sym_DOT_STAR] = ACTIONS(9497), - [anon_sym_DASH_GT] = ACTIONS(9497), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9497), - }, - [STATE(3706)] = { - [sym_string_literal] = STATE(3706), - [sym_raw_string_literal] = STATE(3706), - [aux_sym_concatenated_string_repeat1] = STATE(3706), - [sym_identifier] = ACTIONS(9502), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8406), - [anon_sym_COMMA] = ACTIONS(8406), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_DASH] = ACTIONS(8408), - [anon_sym_PLUS] = ACTIONS(8408), - [anon_sym_STAR] = ACTIONS(8408), - [anon_sym_SLASH] = ACTIONS(8408), - [anon_sym_PERCENT] = ACTIONS(8408), - [anon_sym_PIPE_PIPE] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_PIPE] = ACTIONS(8408), - [anon_sym_CARET] = ACTIONS(8408), - [anon_sym_AMP] = ACTIONS(8408), - [anon_sym_EQ_EQ] = ACTIONS(8406), - [anon_sym_BANG_EQ] = ACTIONS(8406), - [anon_sym_GT] = ACTIONS(8408), - [anon_sym_GT_EQ] = ACTIONS(8406), - [anon_sym_LT_EQ] = ACTIONS(8408), - [anon_sym_LT] = ACTIONS(8408), - [anon_sym_LT_LT] = ACTIONS(8408), - [anon_sym_GT_GT] = ACTIONS(8408), - [anon_sym_LBRACK] = ACTIONS(8406), - [anon_sym_RBRACK] = ACTIONS(8406), - [anon_sym_EQ] = ACTIONS(8408), - [anon_sym_QMARK] = ACTIONS(8406), - [anon_sym_STAR_EQ] = ACTIONS(8406), - [anon_sym_SLASH_EQ] = ACTIONS(8406), - [anon_sym_PERCENT_EQ] = ACTIONS(8406), - [anon_sym_PLUS_EQ] = ACTIONS(8406), - [anon_sym_DASH_EQ] = ACTIONS(8406), - [anon_sym_LT_LT_EQ] = ACTIONS(8406), - [anon_sym_GT_GT_EQ] = ACTIONS(8406), - [anon_sym_AMP_EQ] = ACTIONS(8406), - [anon_sym_CARET_EQ] = ACTIONS(8406), - [anon_sym_PIPE_EQ] = ACTIONS(8406), - [anon_sym_and_eq] = ACTIONS(8408), - [anon_sym_or_eq] = ACTIONS(8408), - [anon_sym_xor_eq] = ACTIONS(8408), - [anon_sym_LT_EQ_GT] = ACTIONS(8406), - [anon_sym_or] = ACTIONS(8408), - [anon_sym_and] = ACTIONS(8408), - [anon_sym_bitor] = ACTIONS(8408), - [anon_sym_xor] = ACTIONS(8408), - [anon_sym_bitand] = ACTIONS(8408), - [anon_sym_not_eq] = ACTIONS(8408), - [anon_sym_DASH_DASH] = ACTIONS(8406), - [anon_sym_PLUS_PLUS] = ACTIONS(8406), - [anon_sym_DOT] = ACTIONS(8408), - [anon_sym_DOT_STAR] = ACTIONS(8406), - [anon_sym_DASH_GT] = ACTIONS(8406), - [anon_sym_L_DQUOTE] = ACTIONS(9505), - [anon_sym_u_DQUOTE] = ACTIONS(9505), - [anon_sym_U_DQUOTE] = ACTIONS(9505), - [anon_sym_u8_DQUOTE] = ACTIONS(9505), - [anon_sym_DQUOTE] = ACTIONS(9505), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(9508), - [anon_sym_LR_DQUOTE] = ACTIONS(9508), - [anon_sym_uR_DQUOTE] = ACTIONS(9508), - [anon_sym_UR_DQUOTE] = ACTIONS(9508), - [anon_sym_u8R_DQUOTE] = ACTIONS(9508), - [sym_literal_suffix] = ACTIONS(8408), - }, - [STATE(3707)] = { - [sym_string_literal] = STATE(3727), - [sym_raw_string_literal] = STATE(3727), - [aux_sym_concatenated_string_repeat1] = STATE(3727), - [sym_identifier] = ACTIONS(9511), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8454), - [anon_sym_COMMA] = ACTIONS(8454), - [anon_sym_LPAREN2] = ACTIONS(8454), - [anon_sym_DASH] = ACTIONS(8456), - [anon_sym_PLUS] = ACTIONS(8456), - [anon_sym_STAR] = ACTIONS(8456), - [anon_sym_SLASH] = ACTIONS(8456), - [anon_sym_PERCENT] = ACTIONS(8456), - [anon_sym_PIPE_PIPE] = ACTIONS(8454), - [anon_sym_AMP_AMP] = ACTIONS(8454), - [anon_sym_PIPE] = ACTIONS(8456), - [anon_sym_CARET] = ACTIONS(8456), - [anon_sym_AMP] = ACTIONS(8456), - [anon_sym_EQ_EQ] = ACTIONS(8454), - [anon_sym_BANG_EQ] = ACTIONS(8454), - [anon_sym_GT] = ACTIONS(8456), - [anon_sym_GT_EQ] = ACTIONS(8456), - [anon_sym_LT_EQ] = ACTIONS(8456), - [anon_sym_LT] = ACTIONS(8456), - [anon_sym_LT_LT] = ACTIONS(8456), - [anon_sym_GT_GT] = ACTIONS(8456), - [anon_sym_LBRACK] = ACTIONS(8454), - [anon_sym_EQ] = ACTIONS(8456), - [anon_sym_QMARK] = ACTIONS(8454), - [anon_sym_STAR_EQ] = ACTIONS(8454), - [anon_sym_SLASH_EQ] = ACTIONS(8454), - [anon_sym_PERCENT_EQ] = ACTIONS(8454), - [anon_sym_PLUS_EQ] = ACTIONS(8454), - [anon_sym_DASH_EQ] = ACTIONS(8454), - [anon_sym_LT_LT_EQ] = ACTIONS(8454), - [anon_sym_GT_GT_EQ] = ACTIONS(8456), - [anon_sym_AMP_EQ] = ACTIONS(8454), - [anon_sym_CARET_EQ] = ACTIONS(8454), - [anon_sym_PIPE_EQ] = ACTIONS(8454), - [anon_sym_and_eq] = ACTIONS(8456), - [anon_sym_or_eq] = ACTIONS(8456), - [anon_sym_xor_eq] = ACTIONS(8456), - [anon_sym_LT_EQ_GT] = ACTIONS(8454), - [anon_sym_or] = ACTIONS(8456), - [anon_sym_and] = ACTIONS(8456), - [anon_sym_bitor] = ACTIONS(8456), - [anon_sym_xor] = ACTIONS(8456), - [anon_sym_bitand] = ACTIONS(8456), - [anon_sym_not_eq] = ACTIONS(8456), - [anon_sym_DASH_DASH] = ACTIONS(8454), - [anon_sym_PLUS_PLUS] = ACTIONS(8454), - [anon_sym_DOT] = ACTIONS(8456), - [anon_sym_DOT_STAR] = ACTIONS(8454), - [anon_sym_DASH_GT] = ACTIONS(8454), - [anon_sym_L_DQUOTE] = ACTIONS(7034), - [anon_sym_u_DQUOTE] = ACTIONS(7034), - [anon_sym_U_DQUOTE] = ACTIONS(7034), - [anon_sym_u8_DQUOTE] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(8454), - [anon_sym_R_DQUOTE] = ACTIONS(7040), - [anon_sym_LR_DQUOTE] = ACTIONS(7040), - [anon_sym_uR_DQUOTE] = ACTIONS(7040), - [anon_sym_UR_DQUOTE] = ACTIONS(7040), - [anon_sym_u8R_DQUOTE] = ACTIONS(7040), - [sym_literal_suffix] = ACTIONS(8456), - }, - [STATE(3708)] = { - [sym_type_qualifier] = STATE(3754), - [sym_alignas_qualifier] = STATE(4026), - [aux_sym__type_definition_type_repeat1] = STATE(3754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6754), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6754), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6754), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6754), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6754), - [anon_sym_GT_GT] = ACTIONS(6754), - [anon_sym___extension__] = ACTIONS(7882), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_RBRACK] = ACTIONS(6754), - [anon_sym_const] = ACTIONS(7890), - [anon_sym_constexpr] = ACTIONS(7882), - [anon_sym_volatile] = ACTIONS(7882), - [anon_sym_restrict] = ACTIONS(7882), - [anon_sym___restrict__] = ACTIONS(7882), - [anon_sym__Atomic] = ACTIONS(7882), - [anon_sym__Noreturn] = ACTIONS(7882), - [anon_sym_noreturn] = ACTIONS(7882), - [anon_sym__Nonnull] = ACTIONS(7882), - [anon_sym_mutable] = ACTIONS(7882), - [anon_sym_constinit] = ACTIONS(7882), - [anon_sym_consteval] = ACTIONS(7882), - [anon_sym_alignas] = ACTIONS(7892), - [anon_sym__Alignas] = ACTIONS(7892), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6754), - [anon_sym_and] = ACTIONS(6754), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6754), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), - }, - [STATE(3709)] = { - [sym_identifier] = ACTIONS(9513), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9515), - [anon_sym_COMMA] = ACTIONS(9515), - [anon_sym_RPAREN] = ACTIONS(9515), - [aux_sym_preproc_if_token2] = ACTIONS(9515), - [aux_sym_preproc_else_token1] = ACTIONS(9515), - [aux_sym_preproc_elif_token1] = ACTIONS(9513), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9515), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9515), - [anon_sym_LPAREN2] = ACTIONS(9515), - [anon_sym_DASH] = ACTIONS(9513), - [anon_sym_PLUS] = ACTIONS(9513), - [anon_sym_STAR] = ACTIONS(9513), - [anon_sym_SLASH] = ACTIONS(9513), - [anon_sym_PERCENT] = ACTIONS(9513), - [anon_sym_PIPE_PIPE] = ACTIONS(9515), - [anon_sym_AMP_AMP] = ACTIONS(9515), - [anon_sym_PIPE] = ACTIONS(9513), - [anon_sym_CARET] = ACTIONS(9513), - [anon_sym_AMP] = ACTIONS(9513), - [anon_sym_EQ_EQ] = ACTIONS(9515), - [anon_sym_BANG_EQ] = ACTIONS(9515), - [anon_sym_GT] = ACTIONS(9513), - [anon_sym_GT_EQ] = ACTIONS(9515), - [anon_sym_LT_EQ] = ACTIONS(9513), - [anon_sym_LT] = ACTIONS(9513), - [anon_sym_LT_LT] = ACTIONS(9513), - [anon_sym_GT_GT] = ACTIONS(9513), - [anon_sym_SEMI] = ACTIONS(9515), - [anon_sym___attribute__] = ACTIONS(9513), - [anon_sym___attribute] = ACTIONS(9513), - [anon_sym_COLON] = ACTIONS(9513), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9515), - [anon_sym_LBRACE] = ACTIONS(9515), - [anon_sym_RBRACE] = ACTIONS(9515), - [anon_sym_LBRACK] = ACTIONS(9515), - [anon_sym_EQ] = ACTIONS(9513), - [anon_sym_QMARK] = ACTIONS(9515), - [anon_sym_STAR_EQ] = ACTIONS(9515), - [anon_sym_SLASH_EQ] = ACTIONS(9515), - [anon_sym_PERCENT_EQ] = ACTIONS(9515), - [anon_sym_PLUS_EQ] = ACTIONS(9515), - [anon_sym_DASH_EQ] = ACTIONS(9515), - [anon_sym_LT_LT_EQ] = ACTIONS(9515), - [anon_sym_GT_GT_EQ] = ACTIONS(9515), - [anon_sym_AMP_EQ] = ACTIONS(9515), - [anon_sym_CARET_EQ] = ACTIONS(9515), - [anon_sym_PIPE_EQ] = ACTIONS(9515), - [anon_sym_and_eq] = ACTIONS(9513), - [anon_sym_or_eq] = ACTIONS(9513), - [anon_sym_xor_eq] = ACTIONS(9513), - [anon_sym_LT_EQ_GT] = ACTIONS(9515), - [anon_sym_or] = ACTIONS(9513), - [anon_sym_and] = ACTIONS(9513), - [anon_sym_bitor] = ACTIONS(9513), - [anon_sym_xor] = ACTIONS(9513), - [anon_sym_bitand] = ACTIONS(9513), - [anon_sym_not_eq] = ACTIONS(9513), - [anon_sym_DASH_DASH] = ACTIONS(9515), - [anon_sym_PLUS_PLUS] = ACTIONS(9515), - [anon_sym_DOT] = ACTIONS(9513), - [anon_sym_DOT_STAR] = ACTIONS(9515), - [anon_sym_DASH_GT] = ACTIONS(9515), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9515), - }, - [STATE(3710)] = { - [sym_attribute_declaration] = STATE(3170), - [aux_sym_attributed_declarator_repeat1] = STATE(3170), - [sym_identifier] = ACTIONS(9517), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9519), - [anon_sym_COMMA] = ACTIONS(9519), - [anon_sym_RPAREN] = ACTIONS(9519), - [aux_sym_preproc_if_token2] = ACTIONS(9519), - [aux_sym_preproc_else_token1] = ACTIONS(9519), - [aux_sym_preproc_elif_token1] = ACTIONS(9517), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9519), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9519), - [anon_sym_LPAREN2] = ACTIONS(9519), - [anon_sym_DASH] = ACTIONS(9517), - [anon_sym_PLUS] = ACTIONS(9517), - [anon_sym_STAR] = ACTIONS(9517), - [anon_sym_SLASH] = ACTIONS(9517), - [anon_sym_PERCENT] = ACTIONS(9517), - [anon_sym_PIPE_PIPE] = ACTIONS(9519), - [anon_sym_AMP_AMP] = ACTIONS(9519), - [anon_sym_PIPE] = ACTIONS(9517), - [anon_sym_CARET] = ACTIONS(9517), - [anon_sym_AMP] = ACTIONS(9517), - [anon_sym_EQ_EQ] = ACTIONS(9519), - [anon_sym_BANG_EQ] = ACTIONS(9519), - [anon_sym_GT] = ACTIONS(9517), - [anon_sym_GT_EQ] = ACTIONS(9519), - [anon_sym_LT_EQ] = ACTIONS(9517), - [anon_sym_LT] = ACTIONS(9517), - [anon_sym_LT_LT] = ACTIONS(9517), - [anon_sym_GT_GT] = ACTIONS(9517), - [anon_sym_SEMI] = ACTIONS(9519), - [anon_sym___attribute__] = ACTIONS(9517), - [anon_sym___attribute] = ACTIONS(9517), - [anon_sym_COLON] = ACTIONS(9517), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6493), - [anon_sym_RBRACE] = ACTIONS(9519), - [anon_sym_LBRACK] = ACTIONS(9517), - [anon_sym_EQ] = ACTIONS(9517), - [anon_sym_QMARK] = ACTIONS(9519), - [anon_sym_STAR_EQ] = ACTIONS(9519), - [anon_sym_SLASH_EQ] = ACTIONS(9519), - [anon_sym_PERCENT_EQ] = ACTIONS(9519), - [anon_sym_PLUS_EQ] = ACTIONS(9519), - [anon_sym_DASH_EQ] = ACTIONS(9519), - [anon_sym_LT_LT_EQ] = ACTIONS(9519), - [anon_sym_GT_GT_EQ] = ACTIONS(9519), - [anon_sym_AMP_EQ] = ACTIONS(9519), - [anon_sym_CARET_EQ] = ACTIONS(9519), - [anon_sym_PIPE_EQ] = ACTIONS(9519), - [anon_sym_and_eq] = ACTIONS(9517), - [anon_sym_or_eq] = ACTIONS(9517), - [anon_sym_xor_eq] = ACTIONS(9517), - [anon_sym_LT_EQ_GT] = ACTIONS(9519), - [anon_sym_or] = ACTIONS(9517), - [anon_sym_and] = ACTIONS(9517), - [anon_sym_bitor] = ACTIONS(9517), - [anon_sym_xor] = ACTIONS(9517), - [anon_sym_bitand] = ACTIONS(9517), - [anon_sym_not_eq] = ACTIONS(9517), - [anon_sym_DASH_DASH] = ACTIONS(9519), - [anon_sym_PLUS_PLUS] = ACTIONS(9519), - [anon_sym_DOT] = ACTIONS(9517), - [anon_sym_DOT_STAR] = ACTIONS(9519), - [anon_sym_DASH_GT] = ACTIONS(9519), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9519), - }, - [STATE(3711)] = { - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [aux_sym_preproc_if_token2] = ACTIONS(7090), - [aux_sym_preproc_else_token1] = ACTIONS(7090), - [aux_sym_preproc_elif_token1] = ACTIONS(7085), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7090), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7090), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(7085), - [anon_sym_LT_LT] = ACTIONS(7090), - [anon_sym_GT_GT] = ACTIONS(7090), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7090), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_RBRACK] = ACTIONS(7090), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7085), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7085), - [anon_sym_not_eq] = ACTIONS(7085), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7085), - [anon_sym_override] = ACTIONS(7085), - [anon_sym_requires] = ACTIONS(7085), - }, - [STATE(3712)] = { - [sym_argument_list] = STATE(3894), - [sym_initializer_list] = STATE(5969), - [aux_sym_sized_type_specifier_repeat1] = STATE(3537), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7687), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym___attribute__] = ACTIONS(7225), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_signed] = ACTIONS(9214), - [anon_sym_unsigned] = ACTIONS(9214), - [anon_sym_long] = ACTIONS(9214), - [anon_sym_short] = ACTIONS(9214), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), - }, - [STATE(3713)] = { - [sym_string_literal] = STATE(3760), - [sym_template_argument_list] = STATE(5312), - [sym_raw_string_literal] = STATE(3760), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5645), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(9521), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5645), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(7034), - [anon_sym_u_DQUOTE] = ACTIONS(7034), - [anon_sym_U_DQUOTE] = ACTIONS(7034), - [anon_sym_u8_DQUOTE] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5638), - [anon_sym_R_DQUOTE] = ACTIONS(7040), - [anon_sym_LR_DQUOTE] = ACTIONS(7040), - [anon_sym_uR_DQUOTE] = ACTIONS(7040), - [anon_sym_UR_DQUOTE] = ACTIONS(7040), - [anon_sym_u8R_DQUOTE] = ACTIONS(7040), - }, - [STATE(3714)] = { - [sym__abstract_declarator] = STATE(6471), - [sym_abstract_parenthesized_declarator] = STATE(6708), - [sym_abstract_pointer_declarator] = STATE(6708), - [sym_abstract_function_declarator] = STATE(6708), - [sym_abstract_array_declarator] = STATE(6708), - [sym_type_qualifier] = STATE(3691), - [sym_alignas_qualifier] = STATE(3945), - [sym_parameter_list] = STATE(2277), - [sym_abstract_reference_declarator] = STATE(6708), - [sym__function_declarator_seq] = STATE(6709), - [aux_sym__type_definition_type_repeat1] = STATE(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(8600), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(8602), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(8604), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(8606), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7349), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7349), - [anon_sym___extension__] = ACTIONS(8608), - [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym___restrict__] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym__Noreturn] = ACTIONS(8608), - [anon_sym_noreturn] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym_mutable] = ACTIONS(8608), - [anon_sym_constinit] = ACTIONS(8608), - [anon_sym_consteval] = ACTIONS(8608), - [anon_sym_alignas] = ACTIONS(8620), - [anon_sym__Alignas] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_GT2] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), - }, - [STATE(3715)] = { - [sym__abstract_declarator] = STATE(6472), - [sym_abstract_parenthesized_declarator] = STATE(6708), - [sym_abstract_pointer_declarator] = STATE(6708), - [sym_abstract_function_declarator] = STATE(6708), - [sym_abstract_array_declarator] = STATE(6708), - [sym_type_qualifier] = STATE(3717), - [sym_alignas_qualifier] = STATE(3945), - [sym_parameter_list] = STATE(2277), - [sym_abstract_reference_declarator] = STATE(6708), - [sym__function_declarator_seq] = STATE(6709), - [aux_sym__type_definition_type_repeat1] = STATE(3717), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(8600), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(8602), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7343), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(8604), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7343), - [anon_sym_AMP] = ACTIONS(8606), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7341), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7343), - [anon_sym_GT_GT] = ACTIONS(7341), - [anon_sym___extension__] = ACTIONS(8608), - [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym___restrict__] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym__Noreturn] = ACTIONS(8608), - [anon_sym_noreturn] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym_mutable] = ACTIONS(8608), - [anon_sym_constinit] = ACTIONS(8608), - [anon_sym_consteval] = ACTIONS(8608), - [anon_sym_alignas] = ACTIONS(8620), - [anon_sym__Alignas] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7343), - [anon_sym_and] = ACTIONS(7343), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7343), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_GT2] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), - }, - [STATE(3716)] = { - [sym__abstract_declarator] = STATE(6494), - [sym_abstract_parenthesized_declarator] = STATE(6708), - [sym_abstract_pointer_declarator] = STATE(6708), - [sym_abstract_function_declarator] = STATE(6708), - [sym_abstract_array_declarator] = STATE(6708), - [sym_type_qualifier] = STATE(3691), - [sym_alignas_qualifier] = STATE(3945), - [sym_parameter_list] = STATE(2277), - [sym_abstract_reference_declarator] = STATE(6708), - [sym__function_declarator_seq] = STATE(6709), - [aux_sym__type_definition_type_repeat1] = STATE(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8600), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8602), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8604), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8606), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6821), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6821), - [anon_sym___extension__] = ACTIONS(8608), - [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym___restrict__] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym__Noreturn] = ACTIONS(8608), - [anon_sym_noreturn] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym_mutable] = ACTIONS(8608), - [anon_sym_constinit] = ACTIONS(8608), - [anon_sym_consteval] = ACTIONS(8608), - [anon_sym_alignas] = ACTIONS(8620), - [anon_sym__Alignas] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_GT2] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), - }, - [STATE(3717)] = { - [sym__abstract_declarator] = STATE(6473), - [sym_abstract_parenthesized_declarator] = STATE(6708), - [sym_abstract_pointer_declarator] = STATE(6708), - [sym_abstract_function_declarator] = STATE(6708), - [sym_abstract_array_declarator] = STATE(6708), - [sym_type_qualifier] = STATE(3691), - [sym_alignas_qualifier] = STATE(3945), - [sym_parameter_list] = STATE(2277), - [sym_abstract_reference_declarator] = STATE(6708), - [sym__function_declarator_seq] = STATE(6709), - [aux_sym__type_definition_type_repeat1] = STATE(3691), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(8600), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(8602), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(8604), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(8606), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7353), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7353), - [anon_sym___extension__] = ACTIONS(8608), - [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym___restrict__] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym__Noreturn] = ACTIONS(8608), - [anon_sym_noreturn] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym_mutable] = ACTIONS(8608), - [anon_sym_constinit] = ACTIONS(8608), - [anon_sym_consteval] = ACTIONS(8608), - [anon_sym_alignas] = ACTIONS(8620), - [anon_sym__Alignas] = ACTIONS(8620), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_GT2] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), - }, - [STATE(3718)] = { - [sym__abstract_declarator] = STATE(6495), - [sym_abstract_parenthesized_declarator] = STATE(6708), - [sym_abstract_pointer_declarator] = STATE(6708), - [sym_abstract_function_declarator] = STATE(6708), - [sym_abstract_array_declarator] = STATE(6708), - [sym_type_qualifier] = STATE(3691), - [sym_alignas_qualifier] = STATE(3945), - [sym_parameter_list] = STATE(2277), - [sym_abstract_reference_declarator] = STATE(6708), - [sym__function_declarator_seq] = STATE(6709), - [aux_sym__type_definition_type_repeat1] = STATE(3691), + [sym__abstract_declarator] = STATE(6447), + [sym_abstract_parenthesized_declarator] = STATE(6694), + [sym_abstract_pointer_declarator] = STATE(6694), + [sym_abstract_function_declarator] = STATE(6694), + [sym_abstract_array_declarator] = STATE(6694), + [sym_type_qualifier] = STATE(3671), + [sym_alignas_qualifier] = STATE(3830), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(6694), + [sym__function_declarator_seq] = STATE(6695), + [aux_sym__type_definition_type_repeat1] = STATE(3671), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(8600), + [anon_sym_LPAREN2] = ACTIONS(8568), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(8602), + [anon_sym_STAR] = ACTIONS(8570), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7345), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8604), + [anon_sym_AMP_AMP] = ACTIONS(8572), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8606), + [anon_sym_AMP] = ACTIONS(8574), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), @@ -444683,22 +443357,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7347), [anon_sym_LT_LT] = ACTIONS(7345), [anon_sym_GT_GT] = ACTIONS(7347), - [anon_sym___extension__] = ACTIONS(8608), - [anon_sym_LBRACK] = ACTIONS(8616), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8608), - [anon_sym_volatile] = ACTIONS(8608), - [anon_sym_restrict] = ACTIONS(8608), - [anon_sym___restrict__] = ACTIONS(8608), - [anon_sym__Atomic] = ACTIONS(8608), - [anon_sym__Noreturn] = ACTIONS(8608), - [anon_sym_noreturn] = ACTIONS(8608), - [anon_sym__Nonnull] = ACTIONS(8608), - [anon_sym_mutable] = ACTIONS(8608), - [anon_sym_constinit] = ACTIONS(8608), - [anon_sym_consteval] = ACTIONS(8608), - [anon_sym_alignas] = ACTIONS(8620), - [anon_sym__Alignas] = ACTIONS(8620), + [anon_sym___extension__] = ACTIONS(8576), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8576), + [anon_sym_volatile] = ACTIONS(8576), + [anon_sym_restrict] = ACTIONS(8576), + [anon_sym___restrict__] = ACTIONS(8576), + [anon_sym__Atomic] = ACTIONS(8576), + [anon_sym__Noreturn] = ACTIONS(8576), + [anon_sym_noreturn] = ACTIONS(8576), + [anon_sym__Nonnull] = ACTIONS(8576), + [anon_sym_mutable] = ACTIONS(8576), + [anon_sym_constinit] = ACTIONS(8576), + [anon_sym_consteval] = ACTIONS(8576), + [anon_sym_alignas] = ACTIONS(8588), + [anon_sym__Alignas] = ACTIONS(8588), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_LT_EQ_GT] = ACTIONS(7345), [anon_sym_or] = ACTIONS(7345), @@ -444718,371 +443392,303 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(7345), [anon_sym_requires] = ACTIONS(7345), }, - [STATE(3719)] = { - [sym_template_argument_list] = STATE(3733), - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [aux_sym_preproc_if_token2] = ACTIONS(7090), - [aux_sym_preproc_else_token1] = ACTIONS(7090), - [aux_sym_preproc_elif_token1] = ACTIONS(7085), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7090), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7090), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(8883), - [anon_sym_LT_LT] = ACTIONS(7090), - [anon_sym_GT_GT] = ACTIONS(7090), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_bitor] = ACTIONS(7085), - [anon_sym_xor] = ACTIONS(7085), - [anon_sym_bitand] = ACTIONS(7085), - [anon_sym_not_eq] = ACTIONS(7085), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7085), - [anon_sym_override] = ACTIONS(7085), - [anon_sym_requires] = ACTIONS(7085), - }, - [STATE(3720)] = { - [sym__abstract_declarator] = STATE(6497), - [sym_abstract_parenthesized_declarator] = STATE(6607), - [sym_abstract_pointer_declarator] = STATE(6607), - [sym_abstract_function_declarator] = STATE(6607), - [sym_abstract_array_declarator] = STATE(6607), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2281), - [sym_abstract_reference_declarator] = STATE(6607), - [sym__function_declarator_seq] = STATE(6608), - [aux_sym__type_definition_type_repeat1] = STATE(3860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(8572), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(8574), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(8576), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(8578), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(8580), - [anon_sym_LBRACK] = ACTIONS(8588), - [anon_sym_RBRACK] = ACTIONS(7351), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym___restrict__] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym__Noreturn] = ACTIONS(8580), - [anon_sym_noreturn] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym_mutable] = ACTIONS(8580), - [anon_sym_constinit] = ACTIONS(8580), - [anon_sym_consteval] = ACTIONS(8580), - [anon_sym_alignas] = ACTIONS(8590), - [anon_sym__Alignas] = ACTIONS(8590), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7351), - [anon_sym_override] = ACTIONS(7351), - [anon_sym_requires] = ACTIONS(7351), + [STATE(3702)] = { + [sym_decltype_auto] = STATE(4544), + [sym_template_argument_list] = STATE(4141), + [aux_sym_sized_type_specifier_repeat1] = STATE(3952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5617), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_PERCENT] = ACTIONS(5617), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5617), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_EQ_EQ] = ACTIONS(5617), + [anon_sym_BANG_EQ] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_GT_EQ] = ACTIONS(5609), + [anon_sym_LT_EQ] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(9487), + [anon_sym_LT_LT] = ACTIONS(5617), + [anon_sym_GT_GT] = ACTIONS(5609), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(7032), + [anon_sym_unsigned] = ACTIONS(7032), + [anon_sym_long] = ACTIONS(7032), + [anon_sym_short] = ACTIONS(7032), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_LT_EQ_GT] = ACTIONS(5617), + [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(5617), + [anon_sym_PLUS_PLUS] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_DOT_STAR] = ACTIONS(5617), + [anon_sym_DASH_GT] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7040), + [anon_sym_decltype] = ACTIONS(7042), + [anon_sym_final] = ACTIONS(5617), + [anon_sym_override] = ACTIONS(5617), + [anon_sym_GT2] = ACTIONS(5617), + [anon_sym_requires] = ACTIONS(5617), }, - [STATE(3721)] = { - [sym__abstract_declarator] = STATE(6498), - [sym_abstract_parenthesized_declarator] = STATE(6607), - [sym_abstract_pointer_declarator] = STATE(6607), - [sym_abstract_function_declarator] = STATE(6607), - [sym_abstract_array_declarator] = STATE(6607), - [sym_type_qualifier] = STATE(3723), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2281), - [sym_abstract_reference_declarator] = STATE(6607), - [sym__function_declarator_seq] = STATE(6608), - [aux_sym__type_definition_type_repeat1] = STATE(3723), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(8572), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(8574), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7343), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(8576), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7343), - [anon_sym_AMP] = ACTIONS(8578), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7343), - [anon_sym_GT_GT] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(8580), - [anon_sym_LBRACK] = ACTIONS(8588), - [anon_sym_RBRACK] = ACTIONS(7343), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym___restrict__] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym__Noreturn] = ACTIONS(8580), - [anon_sym_noreturn] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym_mutable] = ACTIONS(8580), - [anon_sym_constinit] = ACTIONS(8580), - [anon_sym_consteval] = ACTIONS(8580), - [anon_sym_alignas] = ACTIONS(8590), - [anon_sym__Alignas] = ACTIONS(8590), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7343), - [anon_sym_and] = ACTIONS(7343), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7343), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7343), - [anon_sym_override] = ACTIONS(7343), - [anon_sym_requires] = ACTIONS(7343), + [STATE(3703)] = { + [sym_type_qualifier] = STATE(3715), + [sym_alignas_qualifier] = STATE(4021), + [aux_sym__type_definition_type_repeat1] = STATE(3715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6748), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6748), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6748), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6746), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6748), + [anon_sym_GT_GT] = ACTIONS(6746), + [anon_sym___extension__] = ACTIONS(7914), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_const] = ACTIONS(7922), + [anon_sym_constexpr] = ACTIONS(7914), + [anon_sym_volatile] = ACTIONS(7914), + [anon_sym_restrict] = ACTIONS(7914), + [anon_sym___restrict__] = ACTIONS(7914), + [anon_sym__Atomic] = ACTIONS(7914), + [anon_sym__Noreturn] = ACTIONS(7914), + [anon_sym_noreturn] = ACTIONS(7914), + [anon_sym__Nonnull] = ACTIONS(7914), + [anon_sym_mutable] = ACTIONS(7914), + [anon_sym_constinit] = ACTIONS(7914), + [anon_sym_consteval] = ACTIONS(7914), + [anon_sym_alignas] = ACTIONS(7924), + [anon_sym__Alignas] = ACTIONS(7924), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6748), + [anon_sym_and] = ACTIONS(6748), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6748), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_GT2] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), }, - [STATE(3722)] = { - [sym__abstract_declarator] = STATE(6443), - [sym_abstract_parenthesized_declarator] = STATE(6607), - [sym_abstract_pointer_declarator] = STATE(6607), - [sym_abstract_function_declarator] = STATE(6607), - [sym_abstract_array_declarator] = STATE(6607), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2281), - [sym_abstract_reference_declarator] = STATE(6607), - [sym__function_declarator_seq] = STATE(6608), - [aux_sym__type_definition_type_repeat1] = STATE(3860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8572), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8574), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8576), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8578), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8580), - [anon_sym_LBRACK] = ACTIONS(8588), - [anon_sym_RBRACK] = ACTIONS(6823), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym___restrict__] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym__Noreturn] = ACTIONS(8580), - [anon_sym_noreturn] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym_mutable] = ACTIONS(8580), - [anon_sym_constinit] = ACTIONS(8580), - [anon_sym_consteval] = ACTIONS(8580), - [anon_sym_alignas] = ACTIONS(8590), - [anon_sym__Alignas] = ACTIONS(8590), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6823), - [anon_sym_override] = ACTIONS(6823), - [anon_sym_requires] = ACTIONS(6823), + [STATE(3704)] = { + [sym_string_literal] = STATE(3737), + [sym_template_argument_list] = STATE(5263), + [sym_raw_string_literal] = STATE(3737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5619), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(9489), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5619), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(7017), + [anon_sym_u_DQUOTE] = ACTIONS(7017), + [anon_sym_U_DQUOTE] = ACTIONS(7017), + [anon_sym_u8_DQUOTE] = ACTIONS(7017), + [anon_sym_DQUOTE] = ACTIONS(7017), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5611), + [anon_sym_R_DQUOTE] = ACTIONS(7023), + [anon_sym_LR_DQUOTE] = ACTIONS(7023), + [anon_sym_uR_DQUOTE] = ACTIONS(7023), + [anon_sym_UR_DQUOTE] = ACTIONS(7023), + [anon_sym_u8R_DQUOTE] = ACTIONS(7023), }, - [STATE(3723)] = { - [sym__abstract_declarator] = STATE(6499), - [sym_abstract_parenthesized_declarator] = STATE(6607), - [sym_abstract_pointer_declarator] = STATE(6607), - [sym_abstract_function_declarator] = STATE(6607), - [sym_abstract_array_declarator] = STATE(6607), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2281), - [sym_abstract_reference_declarator] = STATE(6607), - [sym__function_declarator_seq] = STATE(6608), - [aux_sym__type_definition_type_repeat1] = STATE(3860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(8572), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(8574), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(8576), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(8578), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(8580), - [anon_sym_LBRACK] = ACTIONS(8588), - [anon_sym_RBRACK] = ACTIONS(7355), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym___restrict__] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym__Noreturn] = ACTIONS(8580), - [anon_sym_noreturn] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym_mutable] = ACTIONS(8580), - [anon_sym_constinit] = ACTIONS(8580), - [anon_sym_consteval] = ACTIONS(8580), - [anon_sym_alignas] = ACTIONS(8590), - [anon_sym__Alignas] = ACTIONS(8590), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7355), - [anon_sym_override] = ACTIONS(7355), - [anon_sym_requires] = ACTIONS(7355), + [STATE(3705)] = { + [sym_type_qualifier] = STATE(3715), + [sym_alignas_qualifier] = STATE(4021), + [aux_sym__type_definition_type_repeat1] = STATE(3715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6872), + [anon_sym_COMMA] = ACTIONS(6872), + [anon_sym_LPAREN2] = ACTIONS(6872), + [anon_sym_DASH] = ACTIONS(6870), + [anon_sym_PLUS] = ACTIONS(6870), + [anon_sym_STAR] = ACTIONS(6872), + [anon_sym_SLASH] = ACTIONS(6870), + [anon_sym_PERCENT] = ACTIONS(6872), + [anon_sym_PIPE_PIPE] = ACTIONS(6872), + [anon_sym_AMP_AMP] = ACTIONS(6872), + [anon_sym_PIPE] = ACTIONS(6870), + [anon_sym_CARET] = ACTIONS(6872), + [anon_sym_AMP] = ACTIONS(6870), + [anon_sym_EQ_EQ] = ACTIONS(6872), + [anon_sym_BANG_EQ] = ACTIONS(6872), + [anon_sym_GT] = ACTIONS(6870), + [anon_sym_GT_EQ] = ACTIONS(6870), + [anon_sym_LT_EQ] = ACTIONS(6870), + [anon_sym_LT] = ACTIONS(6870), + [anon_sym_LT_LT] = ACTIONS(6872), + [anon_sym_GT_GT] = ACTIONS(6870), + [anon_sym___extension__] = ACTIONS(7914), + [anon_sym___attribute__] = ACTIONS(6872), + [anon_sym___attribute] = ACTIONS(6870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6872), + [anon_sym_LBRACK] = ACTIONS(6870), + [anon_sym_const] = ACTIONS(7922), + [anon_sym_constexpr] = ACTIONS(7914), + [anon_sym_volatile] = ACTIONS(7914), + [anon_sym_restrict] = ACTIONS(7914), + [anon_sym___restrict__] = ACTIONS(7914), + [anon_sym__Atomic] = ACTIONS(7914), + [anon_sym__Noreturn] = ACTIONS(7914), + [anon_sym_noreturn] = ACTIONS(7914), + [anon_sym__Nonnull] = ACTIONS(7914), + [anon_sym_mutable] = ACTIONS(7914), + [anon_sym_constinit] = ACTIONS(7914), + [anon_sym_consteval] = ACTIONS(7914), + [anon_sym_alignas] = ACTIONS(7924), + [anon_sym__Alignas] = ACTIONS(7924), + [anon_sym_QMARK] = ACTIONS(6872), + [anon_sym_LT_EQ_GT] = ACTIONS(6872), + [anon_sym_or] = ACTIONS(6872), + [anon_sym_and] = ACTIONS(6872), + [anon_sym_bitor] = ACTIONS(6872), + [anon_sym_xor] = ACTIONS(6872), + [anon_sym_bitand] = ACTIONS(6872), + [anon_sym_not_eq] = ACTIONS(6872), + [anon_sym_DASH_DASH] = ACTIONS(6872), + [anon_sym_PLUS_PLUS] = ACTIONS(6872), + [anon_sym_asm] = ACTIONS(6872), + [anon_sym___asm__] = ACTIONS(6872), + [anon_sym___asm] = ACTIONS(6870), + [anon_sym_DOT] = ACTIONS(6870), + [anon_sym_DOT_STAR] = ACTIONS(6872), + [anon_sym_DASH_GT] = ACTIONS(6872), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6872), + [anon_sym_override] = ACTIONS(6872), + [anon_sym_GT2] = ACTIONS(6872), + [anon_sym_noexcept] = ACTIONS(6872), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6872), }, - [STATE(3724)] = { - [sym__abstract_declarator] = STATE(6446), - [sym_abstract_parenthesized_declarator] = STATE(6607), - [sym_abstract_pointer_declarator] = STATE(6607), - [sym_abstract_function_declarator] = STATE(6607), - [sym_abstract_array_declarator] = STATE(6607), - [sym_type_qualifier] = STATE(3860), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2281), - [sym_abstract_reference_declarator] = STATE(6607), - [sym__function_declarator_seq] = STATE(6608), - [aux_sym__type_definition_type_repeat1] = STATE(3860), + [STATE(3706)] = { + [sym__abstract_declarator] = STATE(6455), + [sym_abstract_parenthesized_declarator] = STATE(6601), + [sym_abstract_pointer_declarator] = STATE(6601), + [sym_abstract_function_declarator] = STATE(6601), + [sym_abstract_array_declarator] = STATE(6601), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2276), + [sym_abstract_reference_declarator] = STATE(6601), + [sym__function_declarator_seq] = STATE(6602), + [aux_sym__type_definition_type_repeat1] = STATE(3888), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(8572), + [anon_sym_LPAREN2] = ACTIONS(8597), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(8574), + [anon_sym_STAR] = ACTIONS(8599), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7345), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8576), + [anon_sym_AMP_AMP] = ACTIONS(8601), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8578), + [anon_sym_AMP] = ACTIONS(8603), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), @@ -445091,23 +443697,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(7347), [anon_sym_LT_LT] = ACTIONS(7345), [anon_sym_GT_GT] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(8580), - [anon_sym_LBRACK] = ACTIONS(8588), + [anon_sym___extension__] = ACTIONS(8605), + [anon_sym_LBRACK] = ACTIONS(8613), [anon_sym_RBRACK] = ACTIONS(7345), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym___restrict__] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym__Noreturn] = ACTIONS(8580), - [anon_sym_noreturn] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym_mutable] = ACTIONS(8580), - [anon_sym_constinit] = ACTIONS(8580), - [anon_sym_consteval] = ACTIONS(8580), - [anon_sym_alignas] = ACTIONS(8590), - [anon_sym__Alignas] = ACTIONS(8590), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8605), + [anon_sym_volatile] = ACTIONS(8605), + [anon_sym_restrict] = ACTIONS(8605), + [anon_sym___restrict__] = ACTIONS(8605), + [anon_sym__Atomic] = ACTIONS(8605), + [anon_sym__Noreturn] = ACTIONS(8605), + [anon_sym_noreturn] = ACTIONS(8605), + [anon_sym__Nonnull] = ACTIONS(8605), + [anon_sym_mutable] = ACTIONS(8605), + [anon_sym_constinit] = ACTIONS(8605), + [anon_sym_consteval] = ACTIONS(8605), + [anon_sym_alignas] = ACTIONS(8615), + [anon_sym__Alignas] = ACTIONS(8615), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_LT_EQ_GT] = ACTIONS(7345), [anon_sym_or] = ACTIONS(7345), @@ -445126,2860 +443732,4951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(7345), [anon_sym_requires] = ACTIONS(7345), }, + [STATE(3707)] = { + [sym_string_literal] = STATE(3756), + [sym_template_argument_list] = STATE(5307), + [sym_raw_string_literal] = STATE(3756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9459), + [anon_sym_COMMA] = ACTIONS(9492), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(9494), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(9497), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(7052), + [anon_sym_u_DQUOTE] = ACTIONS(7052), + [anon_sym_U_DQUOTE] = ACTIONS(7052), + [anon_sym_u8_DQUOTE] = ACTIONS(7052), + [anon_sym_DQUOTE] = ACTIONS(7052), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7058), + [anon_sym_LR_DQUOTE] = ACTIONS(7058), + [anon_sym_uR_DQUOTE] = ACTIONS(7058), + [anon_sym_UR_DQUOTE] = ACTIONS(7058), + [anon_sym_u8R_DQUOTE] = ACTIONS(7058), + }, + [STATE(3708)] = { + [sym_identifier] = ACTIONS(6658), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6651), + [anon_sym_COMMA] = ACTIONS(6651), + [anon_sym_RPAREN] = ACTIONS(6651), + [aux_sym_preproc_if_token2] = ACTIONS(6651), + [aux_sym_preproc_else_token1] = ACTIONS(6651), + [aux_sym_preproc_elif_token1] = ACTIONS(6658), + [aux_sym_preproc_elifdef_token1] = ACTIONS(6651), + [aux_sym_preproc_elifdef_token2] = ACTIONS(6651), + [anon_sym_LPAREN2] = ACTIONS(6651), + [anon_sym_DASH] = ACTIONS(6658), + [anon_sym_PLUS] = ACTIONS(6658), + [anon_sym_STAR] = ACTIONS(6658), + [anon_sym_SLASH] = ACTIONS(6658), + [anon_sym_PERCENT] = ACTIONS(6658), + [anon_sym_PIPE_PIPE] = ACTIONS(6651), + [anon_sym_AMP_AMP] = ACTIONS(6651), + [anon_sym_PIPE] = ACTIONS(6658), + [anon_sym_CARET] = ACTIONS(6658), + [anon_sym_AMP] = ACTIONS(6658), + [anon_sym_EQ_EQ] = ACTIONS(6651), + [anon_sym_BANG_EQ] = ACTIONS(6651), + [anon_sym_GT] = ACTIONS(6658), + [anon_sym_GT_EQ] = ACTIONS(6651), + [anon_sym_LT_EQ] = ACTIONS(6658), + [anon_sym_LT] = ACTIONS(6658), + [anon_sym_LT_LT] = ACTIONS(6658), + [anon_sym_GT_GT] = ACTIONS(6658), + [anon_sym_SEMI] = ACTIONS(6651), + [anon_sym___attribute__] = ACTIONS(6658), + [anon_sym___attribute] = ACTIONS(6658), + [anon_sym_COLON] = ACTIONS(6658), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6651), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_RBRACE] = ACTIONS(6651), + [anon_sym_LBRACK] = ACTIONS(6651), + [anon_sym_EQ] = ACTIONS(6658), + [anon_sym_QMARK] = ACTIONS(6651), + [anon_sym_STAR_EQ] = ACTIONS(6651), + [anon_sym_SLASH_EQ] = ACTIONS(6651), + [anon_sym_PERCENT_EQ] = ACTIONS(6651), + [anon_sym_PLUS_EQ] = ACTIONS(6651), + [anon_sym_DASH_EQ] = ACTIONS(6651), + [anon_sym_LT_LT_EQ] = ACTIONS(6651), + [anon_sym_GT_GT_EQ] = ACTIONS(6651), + [anon_sym_AMP_EQ] = ACTIONS(6651), + [anon_sym_CARET_EQ] = ACTIONS(6651), + [anon_sym_PIPE_EQ] = ACTIONS(6651), + [anon_sym_and_eq] = ACTIONS(6658), + [anon_sym_or_eq] = ACTIONS(6658), + [anon_sym_xor_eq] = ACTIONS(6658), + [anon_sym_LT_EQ_GT] = ACTIONS(6651), + [anon_sym_or] = ACTIONS(6658), + [anon_sym_and] = ACTIONS(6658), + [anon_sym_bitor] = ACTIONS(6658), + [anon_sym_xor] = ACTIONS(6658), + [anon_sym_bitand] = ACTIONS(6658), + [anon_sym_not_eq] = ACTIONS(6658), + [anon_sym_DASH_DASH] = ACTIONS(6651), + [anon_sym_PLUS_PLUS] = ACTIONS(6651), + [anon_sym_DOT] = ACTIONS(6658), + [anon_sym_DOT_STAR] = ACTIONS(6651), + [anon_sym_DASH_GT] = ACTIONS(6651), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(6651), + }, + [STATE(3709)] = { + [sym_argument_list] = STATE(3931), + [sym_initializer_list] = STATE(5980), + [aux_sym_sized_type_specifier_repeat1] = STATE(3514), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym___attribute__] = ACTIONS(7248), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_signed] = ACTIONS(9238), + [anon_sym_unsigned] = ACTIONS(9238), + [anon_sym_long] = ACTIONS(9238), + [anon_sym_short] = ACTIONS(9238), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), + }, + [STATE(3710)] = { + [sym_decltype_auto] = STATE(3226), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [anon_sym_RPAREN] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym_SEMI] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7248), + [anon_sym___attribute__] = ACTIONS(7248), + [anon_sym___attribute] = ACTIONS(7246), + [anon_sym_COLON] = ACTIONS(7246), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7248), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7248), + [anon_sym_volatile] = ACTIONS(7248), + [anon_sym_restrict] = ACTIONS(7248), + [anon_sym___restrict__] = ACTIONS(7248), + [anon_sym__Atomic] = ACTIONS(7248), + [anon_sym__Noreturn] = ACTIONS(7248), + [anon_sym_noreturn] = ACTIONS(7248), + [anon_sym__Nonnull] = ACTIONS(7248), + [anon_sym_mutable] = ACTIONS(7248), + [anon_sym_constinit] = ACTIONS(7248), + [anon_sym_consteval] = ACTIONS(7248), + [anon_sym_alignas] = ACTIONS(7248), + [anon_sym__Alignas] = ACTIONS(7248), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7248), + [anon_sym_and] = ACTIONS(7248), + [anon_sym_bitor] = ACTIONS(7248), + [anon_sym_xor] = ACTIONS(7248), + [anon_sym_bitand] = ACTIONS(7248), + [anon_sym_not_eq] = ACTIONS(7248), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9407), + [anon_sym_decltype] = ACTIONS(6868), + [anon_sym_final] = ACTIONS(7248), + [anon_sym_override] = ACTIONS(7248), + [anon_sym_requires] = ACTIONS(7248), + [anon_sym_COLON_RBRACK] = ACTIONS(7248), + }, + [STATE(3711)] = { + [sym_string_literal] = STATE(5628), + [sym_template_argument_list] = STATE(6749), + [sym_raw_string_literal] = STATE(5628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5619), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7029), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(7034), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(7036), + [anon_sym_SLASH_EQ] = ACTIONS(7036), + [anon_sym_PERCENT_EQ] = ACTIONS(7036), + [anon_sym_PLUS_EQ] = ACTIONS(7036), + [anon_sym_DASH_EQ] = ACTIONS(7036), + [anon_sym_LT_LT_EQ] = ACTIONS(7036), + [anon_sym_GT_GT_EQ] = ACTIONS(7034), + [anon_sym_AMP_EQ] = ACTIONS(7036), + [anon_sym_CARET_EQ] = ACTIONS(7036), + [anon_sym_PIPE_EQ] = ACTIONS(7036), + [anon_sym_and_eq] = ACTIONS(7036), + [anon_sym_or_eq] = ACTIONS(7036), + [anon_sym_xor_eq] = ACTIONS(7036), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(7038), + [anon_sym_u_DQUOTE] = ACTIONS(7038), + [anon_sym_U_DQUOTE] = ACTIONS(7038), + [anon_sym_u8_DQUOTE] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(5611), + [anon_sym_R_DQUOTE] = ACTIONS(7044), + [anon_sym_LR_DQUOTE] = ACTIONS(7044), + [anon_sym_uR_DQUOTE] = ACTIONS(7044), + [anon_sym_UR_DQUOTE] = ACTIONS(7044), + [anon_sym_u8R_DQUOTE] = ACTIONS(7044), + }, + [STATE(3712)] = { + [sym_string_literal] = STATE(3712), + [sym_raw_string_literal] = STATE(3712), + [aux_sym_concatenated_string_repeat1] = STATE(3712), + [sym_identifier] = ACTIONS(9500), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8471), + [anon_sym_COMMA] = ACTIONS(8471), + [anon_sym_LPAREN2] = ACTIONS(8471), + [anon_sym_DASH] = ACTIONS(8473), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_STAR] = ACTIONS(8473), + [anon_sym_SLASH] = ACTIONS(8473), + [anon_sym_PERCENT] = ACTIONS(8473), + [anon_sym_PIPE_PIPE] = ACTIONS(8471), + [anon_sym_AMP_AMP] = ACTIONS(8471), + [anon_sym_PIPE] = ACTIONS(8473), + [anon_sym_CARET] = ACTIONS(8473), + [anon_sym_AMP] = ACTIONS(8473), + [anon_sym_EQ_EQ] = ACTIONS(8471), + [anon_sym_BANG_EQ] = ACTIONS(8471), + [anon_sym_GT] = ACTIONS(8473), + [anon_sym_GT_EQ] = ACTIONS(8471), + [anon_sym_LT_EQ] = ACTIONS(8473), + [anon_sym_LT] = ACTIONS(8473), + [anon_sym_LT_LT] = ACTIONS(8473), + [anon_sym_GT_GT] = ACTIONS(8473), + [anon_sym_LBRACK] = ACTIONS(8471), + [anon_sym_RBRACK] = ACTIONS(8471), + [anon_sym_EQ] = ACTIONS(8473), + [anon_sym_QMARK] = ACTIONS(8471), + [anon_sym_STAR_EQ] = ACTIONS(8471), + [anon_sym_SLASH_EQ] = ACTIONS(8471), + [anon_sym_PERCENT_EQ] = ACTIONS(8471), + [anon_sym_PLUS_EQ] = ACTIONS(8471), + [anon_sym_DASH_EQ] = ACTIONS(8471), + [anon_sym_LT_LT_EQ] = ACTIONS(8471), + [anon_sym_GT_GT_EQ] = ACTIONS(8471), + [anon_sym_AMP_EQ] = ACTIONS(8471), + [anon_sym_CARET_EQ] = ACTIONS(8471), + [anon_sym_PIPE_EQ] = ACTIONS(8471), + [anon_sym_and_eq] = ACTIONS(8473), + [anon_sym_or_eq] = ACTIONS(8473), + [anon_sym_xor_eq] = ACTIONS(8473), + [anon_sym_LT_EQ_GT] = ACTIONS(8471), + [anon_sym_or] = ACTIONS(8473), + [anon_sym_and] = ACTIONS(8473), + [anon_sym_bitor] = ACTIONS(8473), + [anon_sym_xor] = ACTIONS(8473), + [anon_sym_bitand] = ACTIONS(8473), + [anon_sym_not_eq] = ACTIONS(8473), + [anon_sym_DASH_DASH] = ACTIONS(8471), + [anon_sym_PLUS_PLUS] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8473), + [anon_sym_DOT_STAR] = ACTIONS(8471), + [anon_sym_DASH_GT] = ACTIONS(8471), + [anon_sym_L_DQUOTE] = ACTIONS(9503), + [anon_sym_u_DQUOTE] = ACTIONS(9503), + [anon_sym_U_DQUOTE] = ACTIONS(9503), + [anon_sym_u8_DQUOTE] = ACTIONS(9503), + [anon_sym_DQUOTE] = ACTIONS(9503), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(9506), + [anon_sym_LR_DQUOTE] = ACTIONS(9506), + [anon_sym_uR_DQUOTE] = ACTIONS(9506), + [anon_sym_UR_DQUOTE] = ACTIONS(9506), + [anon_sym_u8R_DQUOTE] = ACTIONS(9506), + [sym_literal_suffix] = ACTIONS(8473), + }, + [STATE(3713)] = { + [sym_decltype_auto] = STATE(4087), + [sym_template_argument_list] = STATE(4123), + [aux_sym_sized_type_specifier_repeat1] = STATE(3274), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5617), + [anon_sym_COMMA] = ACTIONS(5617), + [anon_sym_LPAREN2] = ACTIONS(5617), + [anon_sym_DASH] = ACTIONS(5609), + [anon_sym_PLUS] = ACTIONS(5609), + [anon_sym_STAR] = ACTIONS(5617), + [anon_sym_SLASH] = ACTIONS(5609), + [anon_sym_PERCENT] = ACTIONS(5617), + [anon_sym_PIPE_PIPE] = ACTIONS(5617), + [anon_sym_AMP_AMP] = ACTIONS(5617), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_CARET] = ACTIONS(5617), + [anon_sym_AMP] = ACTIONS(5609), + [anon_sym_EQ_EQ] = ACTIONS(5617), + [anon_sym_BANG_EQ] = ACTIONS(5617), + [anon_sym_GT] = ACTIONS(5609), + [anon_sym_GT_EQ] = ACTIONS(5617), + [anon_sym_LT_EQ] = ACTIONS(5609), + [anon_sym_LT] = ACTIONS(8927), + [anon_sym_LT_LT] = ACTIONS(5617), + [anon_sym_GT_GT] = ACTIONS(5617), + [anon_sym___extension__] = ACTIONS(5617), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5617), + [anon_sym_signed] = ACTIONS(6997), + [anon_sym_unsigned] = ACTIONS(6997), + [anon_sym_long] = ACTIONS(6997), + [anon_sym_short] = ACTIONS(6997), + [anon_sym_LBRACK] = ACTIONS(5617), + [anon_sym_RBRACK] = ACTIONS(5617), + [anon_sym_const] = ACTIONS(5609), + [anon_sym_constexpr] = ACTIONS(5617), + [anon_sym_volatile] = ACTIONS(5617), + [anon_sym_restrict] = ACTIONS(5617), + [anon_sym___restrict__] = ACTIONS(5617), + [anon_sym__Atomic] = ACTIONS(5617), + [anon_sym__Noreturn] = ACTIONS(5617), + [anon_sym_noreturn] = ACTIONS(5617), + [anon_sym__Nonnull] = ACTIONS(5617), + [anon_sym_mutable] = ACTIONS(5617), + [anon_sym_constinit] = ACTIONS(5617), + [anon_sym_consteval] = ACTIONS(5617), + [anon_sym_alignas] = ACTIONS(5617), + [anon_sym__Alignas] = ACTIONS(5617), + [anon_sym_QMARK] = ACTIONS(5617), + [anon_sym_LT_EQ_GT] = ACTIONS(5617), + [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(5617), + [anon_sym_PLUS_PLUS] = ACTIONS(5617), + [anon_sym_DOT] = ACTIONS(5609), + [anon_sym_DOT_STAR] = ACTIONS(5617), + [anon_sym_DASH_GT] = ACTIONS(5617), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7005), + [anon_sym_decltype] = ACTIONS(7007), + [anon_sym_final] = ACTIONS(5617), + [anon_sym_override] = ACTIONS(5617), + [anon_sym_requires] = ACTIONS(5617), + }, + [STATE(3714)] = { + [sym_type_qualifier] = STATE(3757), + [sym_alignas_qualifier] = STATE(4020), + [aux_sym__type_definition_type_repeat1] = STATE(3757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6748), + [anon_sym_COMMA] = ACTIONS(6748), + [anon_sym_LPAREN2] = ACTIONS(6748), + [anon_sym_DASH] = ACTIONS(6746), + [anon_sym_PLUS] = ACTIONS(6746), + [anon_sym_STAR] = ACTIONS(6748), + [anon_sym_SLASH] = ACTIONS(6746), + [anon_sym_PERCENT] = ACTIONS(6748), + [anon_sym_PIPE_PIPE] = ACTIONS(6748), + [anon_sym_AMP_AMP] = ACTIONS(6748), + [anon_sym_PIPE] = ACTIONS(6746), + [anon_sym_CARET] = ACTIONS(6748), + [anon_sym_AMP] = ACTIONS(6746), + [anon_sym_EQ_EQ] = ACTIONS(6748), + [anon_sym_BANG_EQ] = ACTIONS(6748), + [anon_sym_GT] = ACTIONS(6746), + [anon_sym_GT_EQ] = ACTIONS(6748), + [anon_sym_LT_EQ] = ACTIONS(6746), + [anon_sym_LT] = ACTIONS(6746), + [anon_sym_LT_LT] = ACTIONS(6748), + [anon_sym_GT_GT] = ACTIONS(6748), + [anon_sym___extension__] = ACTIONS(7803), + [anon_sym___attribute__] = ACTIONS(6748), + [anon_sym___attribute] = ACTIONS(6746), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6748), + [anon_sym_LBRACK] = ACTIONS(6746), + [anon_sym_RBRACK] = ACTIONS(6748), + [anon_sym_const] = ACTIONS(7811), + [anon_sym_constexpr] = ACTIONS(7803), + [anon_sym_volatile] = ACTIONS(7803), + [anon_sym_restrict] = ACTIONS(7803), + [anon_sym___restrict__] = ACTIONS(7803), + [anon_sym__Atomic] = ACTIONS(7803), + [anon_sym__Noreturn] = ACTIONS(7803), + [anon_sym_noreturn] = ACTIONS(7803), + [anon_sym__Nonnull] = ACTIONS(7803), + [anon_sym_mutable] = ACTIONS(7803), + [anon_sym_constinit] = ACTIONS(7803), + [anon_sym_consteval] = ACTIONS(7803), + [anon_sym_alignas] = ACTIONS(7813), + [anon_sym__Alignas] = ACTIONS(7813), + [anon_sym_QMARK] = ACTIONS(6748), + [anon_sym_LT_EQ_GT] = ACTIONS(6748), + [anon_sym_or] = ACTIONS(6748), + [anon_sym_and] = ACTIONS(6748), + [anon_sym_bitor] = ACTIONS(6748), + [anon_sym_xor] = ACTIONS(6748), + [anon_sym_bitand] = ACTIONS(6748), + [anon_sym_not_eq] = ACTIONS(6748), + [anon_sym_DASH_DASH] = ACTIONS(6748), + [anon_sym_PLUS_PLUS] = ACTIONS(6748), + [anon_sym_asm] = ACTIONS(6748), + [anon_sym___asm__] = ACTIONS(6748), + [anon_sym___asm] = ACTIONS(6746), + [anon_sym_DOT] = ACTIONS(6746), + [anon_sym_DOT_STAR] = ACTIONS(6748), + [anon_sym_DASH_GT] = ACTIONS(6748), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6748), + [anon_sym_override] = ACTIONS(6748), + [anon_sym_noexcept] = ACTIONS(6748), + [anon_sym_throw] = ACTIONS(6748), + [anon_sym_requires] = ACTIONS(6748), + }, + [STATE(3715)] = { + [sym_type_qualifier] = STATE(3715), + [sym_alignas_qualifier] = STATE(4021), + [aux_sym__type_definition_type_repeat1] = STATE(3715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6880), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6880), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6880), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6878), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6880), + [anon_sym_GT_GT] = ACTIONS(6878), + [anon_sym___extension__] = ACTIONS(9509), + [anon_sym___attribute__] = ACTIONS(6880), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6880), + [anon_sym_LBRACK] = ACTIONS(6878), + [anon_sym_const] = ACTIONS(9512), + [anon_sym_constexpr] = ACTIONS(9509), + [anon_sym_volatile] = ACTIONS(9509), + [anon_sym_restrict] = ACTIONS(9509), + [anon_sym___restrict__] = ACTIONS(9509), + [anon_sym__Atomic] = ACTIONS(9509), + [anon_sym__Noreturn] = ACTIONS(9509), + [anon_sym_noreturn] = ACTIONS(9509), + [anon_sym__Nonnull] = ACTIONS(9509), + [anon_sym_mutable] = ACTIONS(9509), + [anon_sym_constinit] = ACTIONS(9509), + [anon_sym_consteval] = ACTIONS(9509), + [anon_sym_alignas] = ACTIONS(9515), + [anon_sym__Alignas] = ACTIONS(9515), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6880), + [anon_sym_and] = ACTIONS(6880), + [anon_sym_bitor] = ACTIONS(6880), + [anon_sym_xor] = ACTIONS(6880), + [anon_sym_bitand] = ACTIONS(6880), + [anon_sym_not_eq] = ACTIONS(6880), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_asm] = ACTIONS(6880), + [anon_sym___asm__] = ACTIONS(6880), + [anon_sym___asm] = ACTIONS(6878), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6880), + [anon_sym_override] = ACTIONS(6880), + [anon_sym_GT2] = ACTIONS(6880), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6880), + [anon_sym_requires] = ACTIONS(6880), + }, + [STATE(3716)] = { + [sym_attribute_specifier] = STATE(3151), + [sym_enumerator_list] = STATE(3839), + [sym__enum_base_clause] = STATE(3780), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8003), + [anon_sym_COMMA] = ACTIONS(8003), + [anon_sym_RPAREN] = ACTIONS(8003), + [anon_sym_LPAREN2] = ACTIONS(8003), + [anon_sym_DASH] = ACTIONS(8001), + [anon_sym_PLUS] = ACTIONS(8001), + [anon_sym_STAR] = ACTIONS(8003), + [anon_sym_SLASH] = ACTIONS(8001), + [anon_sym_PERCENT] = ACTIONS(8003), + [anon_sym_PIPE_PIPE] = ACTIONS(8003), + [anon_sym_AMP_AMP] = ACTIONS(8003), + [anon_sym_PIPE] = ACTIONS(8001), + [anon_sym_CARET] = ACTIONS(8003), + [anon_sym_AMP] = ACTIONS(8001), + [anon_sym_EQ_EQ] = ACTIONS(8003), + [anon_sym_BANG_EQ] = ACTIONS(8003), + [anon_sym_GT] = ACTIONS(8001), + [anon_sym_GT_EQ] = ACTIONS(8003), + [anon_sym_LT_EQ] = ACTIONS(8001), + [anon_sym_LT] = ACTIONS(8001), + [anon_sym_LT_LT] = ACTIONS(8003), + [anon_sym_GT_GT] = ACTIONS(8003), + [anon_sym_SEMI] = ACTIONS(8003), + [anon_sym___extension__] = ACTIONS(8003), + [anon_sym___attribute__] = ACTIONS(9309), + [anon_sym___attribute] = ACTIONS(9211), + [anon_sym_COLON] = ACTIONS(9518), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8003), + [anon_sym_LBRACE] = ACTIONS(9520), + [anon_sym_RBRACE] = ACTIONS(8003), + [anon_sym_LBRACK] = ACTIONS(8003), + [anon_sym_const] = ACTIONS(8001), + [anon_sym_constexpr] = ACTIONS(8003), + [anon_sym_volatile] = ACTIONS(8003), + [anon_sym_restrict] = ACTIONS(8003), + [anon_sym___restrict__] = ACTIONS(8003), + [anon_sym__Atomic] = ACTIONS(8003), + [anon_sym__Noreturn] = ACTIONS(8003), + [anon_sym_noreturn] = ACTIONS(8003), + [anon_sym__Nonnull] = ACTIONS(8003), + [anon_sym_mutable] = ACTIONS(8003), + [anon_sym_constinit] = ACTIONS(8003), + [anon_sym_consteval] = ACTIONS(8003), + [anon_sym_alignas] = ACTIONS(8003), + [anon_sym__Alignas] = ACTIONS(8003), + [anon_sym_QMARK] = ACTIONS(8003), + [anon_sym_LT_EQ_GT] = ACTIONS(8003), + [anon_sym_or] = ACTIONS(8003), + [anon_sym_and] = ACTIONS(8003), + [anon_sym_bitor] = ACTIONS(8003), + [anon_sym_xor] = ACTIONS(8003), + [anon_sym_bitand] = ACTIONS(8003), + [anon_sym_not_eq] = ACTIONS(8003), + [anon_sym_DASH_DASH] = ACTIONS(8003), + [anon_sym_PLUS_PLUS] = ACTIONS(8003), + [anon_sym_DOT] = ACTIONS(8001), + [anon_sym_DOT_STAR] = ACTIONS(8003), + [anon_sym_DASH_GT] = ACTIONS(8003), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8003), + [anon_sym_override] = ACTIONS(8003), + [anon_sym_requires] = ACTIONS(8003), + [anon_sym_COLON_RBRACK] = ACTIONS(8003), + }, + [STATE(3717)] = { + [sym__abstract_declarator] = STATE(6448), + [sym_abstract_parenthesized_declarator] = STATE(6601), + [sym_abstract_pointer_declarator] = STATE(6601), + [sym_abstract_function_declarator] = STATE(6601), + [sym_abstract_array_declarator] = STATE(6601), + [sym_type_qualifier] = STATE(3743), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2276), + [sym_abstract_reference_declarator] = STATE(6601), + [sym__function_declarator_seq] = STATE(6602), + [aux_sym__type_definition_type_repeat1] = STATE(3743), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(8599), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7367), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(8601), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7367), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7367), + [anon_sym_GT_GT] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(8605), + [anon_sym_LBRACK] = ACTIONS(8613), + [anon_sym_RBRACK] = ACTIONS(7367), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8605), + [anon_sym_volatile] = ACTIONS(8605), + [anon_sym_restrict] = ACTIONS(8605), + [anon_sym___restrict__] = ACTIONS(8605), + [anon_sym__Atomic] = ACTIONS(8605), + [anon_sym__Noreturn] = ACTIONS(8605), + [anon_sym_noreturn] = ACTIONS(8605), + [anon_sym__Nonnull] = ACTIONS(8605), + [anon_sym_mutable] = ACTIONS(8605), + [anon_sym_constinit] = ACTIONS(8605), + [anon_sym_consteval] = ACTIONS(8605), + [anon_sym_alignas] = ACTIONS(8615), + [anon_sym__Alignas] = ACTIONS(8615), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7367), + [anon_sym_and] = ACTIONS(7367), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7367), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7367), + [anon_sym_override] = ACTIONS(7367), + [anon_sym_requires] = ACTIONS(7367), + }, + [STATE(3718)] = { + [sym_string_literal] = STATE(3750), + [sym_raw_string_literal] = STATE(3750), + [aux_sym_concatenated_string_repeat1] = STATE(3750), + [sym_identifier] = ACTIONS(9522), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(8483), + [anon_sym_LPAREN2] = ACTIONS(8483), + [anon_sym_DASH] = ACTIONS(8485), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_STAR] = ACTIONS(8485), + [anon_sym_SLASH] = ACTIONS(8485), + [anon_sym_PERCENT] = ACTIONS(8485), + [anon_sym_PIPE_PIPE] = ACTIONS(8483), + [anon_sym_AMP_AMP] = ACTIONS(8483), + [anon_sym_PIPE] = ACTIONS(8485), + [anon_sym_CARET] = ACTIONS(8485), + [anon_sym_AMP] = ACTIONS(8485), + [anon_sym_EQ_EQ] = ACTIONS(8483), + [anon_sym_BANG_EQ] = ACTIONS(8483), + [anon_sym_GT] = ACTIONS(8485), + [anon_sym_GT_EQ] = ACTIONS(8485), + [anon_sym_LT_EQ] = ACTIONS(8485), + [anon_sym_LT] = ACTIONS(8485), + [anon_sym_LT_LT] = ACTIONS(8485), + [anon_sym_GT_GT] = ACTIONS(8485), + [anon_sym_LBRACK] = ACTIONS(8483), + [anon_sym_EQ] = ACTIONS(8485), + [anon_sym_QMARK] = ACTIONS(8483), + [anon_sym_STAR_EQ] = ACTIONS(8483), + [anon_sym_SLASH_EQ] = ACTIONS(8483), + [anon_sym_PERCENT_EQ] = ACTIONS(8483), + [anon_sym_PLUS_EQ] = ACTIONS(8483), + [anon_sym_DASH_EQ] = ACTIONS(8483), + [anon_sym_LT_LT_EQ] = ACTIONS(8483), + [anon_sym_GT_GT_EQ] = ACTIONS(8485), + [anon_sym_AMP_EQ] = ACTIONS(8483), + [anon_sym_CARET_EQ] = ACTIONS(8483), + [anon_sym_PIPE_EQ] = ACTIONS(8483), + [anon_sym_and_eq] = ACTIONS(8485), + [anon_sym_or_eq] = ACTIONS(8485), + [anon_sym_xor_eq] = ACTIONS(8485), + [anon_sym_LT_EQ_GT] = ACTIONS(8483), + [anon_sym_or] = ACTIONS(8485), + [anon_sym_and] = ACTIONS(8485), + [anon_sym_bitor] = ACTIONS(8485), + [anon_sym_xor] = ACTIONS(8485), + [anon_sym_bitand] = ACTIONS(8485), + [anon_sym_not_eq] = ACTIONS(8485), + [anon_sym_DASH_DASH] = ACTIONS(8483), + [anon_sym_PLUS_PLUS] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8485), + [anon_sym_DOT_STAR] = ACTIONS(8483), + [anon_sym_DASH_GT] = ACTIONS(8483), + [anon_sym_L_DQUOTE] = ACTIONS(7017), + [anon_sym_u_DQUOTE] = ACTIONS(7017), + [anon_sym_U_DQUOTE] = ACTIONS(7017), + [anon_sym_u8_DQUOTE] = ACTIONS(7017), + [anon_sym_DQUOTE] = ACTIONS(7017), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8483), + [anon_sym_R_DQUOTE] = ACTIONS(7023), + [anon_sym_LR_DQUOTE] = ACTIONS(7023), + [anon_sym_uR_DQUOTE] = ACTIONS(7023), + [anon_sym_UR_DQUOTE] = ACTIONS(7023), + [anon_sym_u8R_DQUOTE] = ACTIONS(7023), + [sym_literal_suffix] = ACTIONS(8485), + }, + [STATE(3719)] = { + [sym_string_literal] = STATE(5629), + [sym_template_argument_list] = STATE(6801), + [sym_raw_string_literal] = STATE(5629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9459), + [anon_sym_COMMA] = ACTIONS(9524), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(8984), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(9526), + [anon_sym_EQ] = ACTIONS(9469), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(7001), + [anon_sym_SLASH_EQ] = ACTIONS(7001), + [anon_sym_PERCENT_EQ] = ACTIONS(7001), + [anon_sym_PLUS_EQ] = ACTIONS(7001), + [anon_sym_DASH_EQ] = ACTIONS(7001), + [anon_sym_LT_LT_EQ] = ACTIONS(7001), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(7001), + [anon_sym_CARET_EQ] = ACTIONS(7001), + [anon_sym_PIPE_EQ] = ACTIONS(7001), + [anon_sym_and_eq] = ACTIONS(7001), + [anon_sym_or_eq] = ACTIONS(7001), + [anon_sym_xor_eq] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(7003), + [anon_sym_u_DQUOTE] = ACTIONS(7003), + [anon_sym_U_DQUOTE] = ACTIONS(7003), + [anon_sym_u8_DQUOTE] = ACTIONS(7003), + [anon_sym_DQUOTE] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7009), + [anon_sym_LR_DQUOTE] = ACTIONS(7009), + [anon_sym_uR_DQUOTE] = ACTIONS(7009), + [anon_sym_UR_DQUOTE] = ACTIONS(7009), + [anon_sym_u8R_DQUOTE] = ACTIONS(7009), + }, + [STATE(3720)] = { + [sym_template_argument_list] = STATE(3747), + [sym_identifier] = ACTIONS(9529), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9531), + [anon_sym_COMMA] = ACTIONS(9531), + [anon_sym_RPAREN] = ACTIONS(9531), + [aux_sym_preproc_if_token2] = ACTIONS(9531), + [aux_sym_preproc_else_token1] = ACTIONS(9531), + [aux_sym_preproc_elif_token1] = ACTIONS(9529), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9531), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9531), + [anon_sym_LPAREN2] = ACTIONS(9531), + [anon_sym_DASH] = ACTIONS(9529), + [anon_sym_PLUS] = ACTIONS(9529), + [anon_sym_STAR] = ACTIONS(9529), + [anon_sym_SLASH] = ACTIONS(9529), + [anon_sym_PERCENT] = ACTIONS(9529), + [anon_sym_PIPE_PIPE] = ACTIONS(9531), + [anon_sym_AMP_AMP] = ACTIONS(9531), + [anon_sym_PIPE] = ACTIONS(9529), + [anon_sym_CARET] = ACTIONS(9529), + [anon_sym_AMP] = ACTIONS(9529), + [anon_sym_EQ_EQ] = ACTIONS(9531), + [anon_sym_BANG_EQ] = ACTIONS(9531), + [anon_sym_GT] = ACTIONS(9529), + [anon_sym_GT_EQ] = ACTIONS(9531), + [anon_sym_LT_EQ] = ACTIONS(9529), + [anon_sym_LT] = ACTIONS(9533), + [anon_sym_LT_LT] = ACTIONS(9529), + [anon_sym_GT_GT] = ACTIONS(9529), + [anon_sym_SEMI] = ACTIONS(9531), + [anon_sym___attribute__] = ACTIONS(9529), + [anon_sym___attribute] = ACTIONS(9529), + [anon_sym_COLON] = ACTIONS(9529), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9531), + [anon_sym_RBRACE] = ACTIONS(9531), + [anon_sym_LBRACK] = ACTIONS(9531), + [anon_sym_EQ] = ACTIONS(9529), + [anon_sym_QMARK] = ACTIONS(9531), + [anon_sym_STAR_EQ] = ACTIONS(9531), + [anon_sym_SLASH_EQ] = ACTIONS(9531), + [anon_sym_PERCENT_EQ] = ACTIONS(9531), + [anon_sym_PLUS_EQ] = ACTIONS(9531), + [anon_sym_DASH_EQ] = ACTIONS(9531), + [anon_sym_LT_LT_EQ] = ACTIONS(9531), + [anon_sym_GT_GT_EQ] = ACTIONS(9531), + [anon_sym_AMP_EQ] = ACTIONS(9531), + [anon_sym_CARET_EQ] = ACTIONS(9531), + [anon_sym_PIPE_EQ] = ACTIONS(9531), + [anon_sym_and_eq] = ACTIONS(9529), + [anon_sym_or_eq] = ACTIONS(9529), + [anon_sym_xor_eq] = ACTIONS(9529), + [anon_sym_LT_EQ_GT] = ACTIONS(9531), + [anon_sym_or] = ACTIONS(9529), + [anon_sym_and] = ACTIONS(9529), + [anon_sym_bitor] = ACTIONS(9529), + [anon_sym_xor] = ACTIONS(9529), + [anon_sym_bitand] = ACTIONS(9529), + [anon_sym_not_eq] = ACTIONS(9529), + [anon_sym_DASH_DASH] = ACTIONS(9531), + [anon_sym_PLUS_PLUS] = ACTIONS(9531), + [anon_sym_DOT] = ACTIONS(9529), + [anon_sym_DOT_STAR] = ACTIONS(9531), + [anon_sym_DASH_GT] = ACTIONS(9531), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9531), + }, + [STATE(3721)] = { + [sym_template_argument_list] = STATE(3740), + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [aux_sym_preproc_if_token2] = ACTIONS(7122), + [aux_sym_preproc_else_token1] = ACTIONS(7122), + [aux_sym_preproc_elif_token1] = ACTIONS(7117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7122), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7122), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7122), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(8927), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_GT_GT] = ACTIONS(7122), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7117), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7117), + [anon_sym_not_eq] = ACTIONS(7117), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7117), + [anon_sym_override] = ACTIONS(7117), + [anon_sym_requires] = ACTIONS(7117), + }, + [STATE(3722)] = { + [sym__abstract_declarator] = STATE(6479), + [sym_abstract_parenthesized_declarator] = STATE(6694), + [sym_abstract_pointer_declarator] = STATE(6694), + [sym_abstract_function_declarator] = STATE(6694), + [sym_abstract_array_declarator] = STATE(6694), + [sym_type_qualifier] = STATE(3725), + [sym_alignas_qualifier] = STATE(3830), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(6694), + [sym__function_declarator_seq] = STATE(6695), + [aux_sym__type_definition_type_repeat1] = STATE(3725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(8568), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(8570), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(8572), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(8574), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7373), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7373), + [anon_sym___extension__] = ACTIONS(8576), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8576), + [anon_sym_volatile] = ACTIONS(8576), + [anon_sym_restrict] = ACTIONS(8576), + [anon_sym___restrict__] = ACTIONS(8576), + [anon_sym__Atomic] = ACTIONS(8576), + [anon_sym__Noreturn] = ACTIONS(8576), + [anon_sym_noreturn] = ACTIONS(8576), + [anon_sym__Nonnull] = ACTIONS(8576), + [anon_sym_mutable] = ACTIONS(8576), + [anon_sym_constinit] = ACTIONS(8576), + [anon_sym_consteval] = ACTIONS(8576), + [anon_sym_alignas] = ACTIONS(8588), + [anon_sym__Alignas] = ACTIONS(8588), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_GT2] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), + }, + [STATE(3723)] = { + [sym_type_qualifier] = STATE(3757), + [sym_alignas_qualifier] = STATE(4020), + [aux_sym__type_definition_type_repeat1] = STATE(3757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6872), + [anon_sym_COMMA] = ACTIONS(6872), + [anon_sym_LPAREN2] = ACTIONS(6872), + [anon_sym_DASH] = ACTIONS(6870), + [anon_sym_PLUS] = ACTIONS(6870), + [anon_sym_STAR] = ACTIONS(6872), + [anon_sym_SLASH] = ACTIONS(6870), + [anon_sym_PERCENT] = ACTIONS(6872), + [anon_sym_PIPE_PIPE] = ACTIONS(6872), + [anon_sym_AMP_AMP] = ACTIONS(6872), + [anon_sym_PIPE] = ACTIONS(6870), + [anon_sym_CARET] = ACTIONS(6872), + [anon_sym_AMP] = ACTIONS(6870), + [anon_sym_EQ_EQ] = ACTIONS(6872), + [anon_sym_BANG_EQ] = ACTIONS(6872), + [anon_sym_GT] = ACTIONS(6870), + [anon_sym_GT_EQ] = ACTIONS(6872), + [anon_sym_LT_EQ] = ACTIONS(6870), + [anon_sym_LT] = ACTIONS(6870), + [anon_sym_LT_LT] = ACTIONS(6872), + [anon_sym_GT_GT] = ACTIONS(6872), + [anon_sym___extension__] = ACTIONS(7803), + [anon_sym___attribute__] = ACTIONS(6872), + [anon_sym___attribute] = ACTIONS(6870), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6872), + [anon_sym_LBRACK] = ACTIONS(6870), + [anon_sym_RBRACK] = ACTIONS(6872), + [anon_sym_const] = ACTIONS(7811), + [anon_sym_constexpr] = ACTIONS(7803), + [anon_sym_volatile] = ACTIONS(7803), + [anon_sym_restrict] = ACTIONS(7803), + [anon_sym___restrict__] = ACTIONS(7803), + [anon_sym__Atomic] = ACTIONS(7803), + [anon_sym__Noreturn] = ACTIONS(7803), + [anon_sym_noreturn] = ACTIONS(7803), + [anon_sym__Nonnull] = ACTIONS(7803), + [anon_sym_mutable] = ACTIONS(7803), + [anon_sym_constinit] = ACTIONS(7803), + [anon_sym_consteval] = ACTIONS(7803), + [anon_sym_alignas] = ACTIONS(7813), + [anon_sym__Alignas] = ACTIONS(7813), + [anon_sym_QMARK] = ACTIONS(6872), + [anon_sym_LT_EQ_GT] = ACTIONS(6872), + [anon_sym_or] = ACTIONS(6872), + [anon_sym_and] = ACTIONS(6872), + [anon_sym_bitor] = ACTIONS(6872), + [anon_sym_xor] = ACTIONS(6872), + [anon_sym_bitand] = ACTIONS(6872), + [anon_sym_not_eq] = ACTIONS(6872), + [anon_sym_DASH_DASH] = ACTIONS(6872), + [anon_sym_PLUS_PLUS] = ACTIONS(6872), + [anon_sym_asm] = ACTIONS(6872), + [anon_sym___asm__] = ACTIONS(6872), + [anon_sym___asm] = ACTIONS(6870), + [anon_sym_DOT] = ACTIONS(6870), + [anon_sym_DOT_STAR] = ACTIONS(6872), + [anon_sym_DASH_GT] = ACTIONS(6872), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6872), + [anon_sym_override] = ACTIONS(6872), + [anon_sym_noexcept] = ACTIONS(6872), + [anon_sym_throw] = ACTIONS(6872), + [anon_sym_requires] = ACTIONS(6872), + }, + [STATE(3724)] = { + [sym_template_argument_list] = STATE(3747), + [sym_identifier] = ACTIONS(9536), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9538), + [anon_sym_COMMA] = ACTIONS(9538), + [anon_sym_RPAREN] = ACTIONS(9538), + [aux_sym_preproc_if_token2] = ACTIONS(9538), + [aux_sym_preproc_else_token1] = ACTIONS(9538), + [aux_sym_preproc_elif_token1] = ACTIONS(9536), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9538), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9538), + [anon_sym_LPAREN2] = ACTIONS(9538), + [anon_sym_DASH] = ACTIONS(9536), + [anon_sym_PLUS] = ACTIONS(9536), + [anon_sym_STAR] = ACTIONS(9536), + [anon_sym_SLASH] = ACTIONS(9536), + [anon_sym_PERCENT] = ACTIONS(9536), + [anon_sym_PIPE_PIPE] = ACTIONS(9538), + [anon_sym_AMP_AMP] = ACTIONS(9538), + [anon_sym_PIPE] = ACTIONS(9536), + [anon_sym_CARET] = ACTIONS(9536), + [anon_sym_AMP] = ACTIONS(9536), + [anon_sym_EQ_EQ] = ACTIONS(9538), + [anon_sym_BANG_EQ] = ACTIONS(9538), + [anon_sym_GT] = ACTIONS(9536), + [anon_sym_GT_EQ] = ACTIONS(9538), + [anon_sym_LT_EQ] = ACTIONS(9536), + [anon_sym_LT] = ACTIONS(9540), + [anon_sym_LT_LT] = ACTIONS(9536), + [anon_sym_GT_GT] = ACTIONS(9536), + [anon_sym_SEMI] = ACTIONS(9538), + [anon_sym___attribute__] = ACTIONS(9536), + [anon_sym___attribute] = ACTIONS(9536), + [anon_sym_COLON] = ACTIONS(9536), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9538), + [anon_sym_RBRACE] = ACTIONS(9538), + [anon_sym_LBRACK] = ACTIONS(9538), + [anon_sym_EQ] = ACTIONS(9536), + [anon_sym_QMARK] = ACTIONS(9538), + [anon_sym_STAR_EQ] = ACTIONS(9538), + [anon_sym_SLASH_EQ] = ACTIONS(9538), + [anon_sym_PERCENT_EQ] = ACTIONS(9538), + [anon_sym_PLUS_EQ] = ACTIONS(9538), + [anon_sym_DASH_EQ] = ACTIONS(9538), + [anon_sym_LT_LT_EQ] = ACTIONS(9538), + [anon_sym_GT_GT_EQ] = ACTIONS(9538), + [anon_sym_AMP_EQ] = ACTIONS(9538), + [anon_sym_CARET_EQ] = ACTIONS(9538), + [anon_sym_PIPE_EQ] = ACTIONS(9538), + [anon_sym_and_eq] = ACTIONS(9536), + [anon_sym_or_eq] = ACTIONS(9536), + [anon_sym_xor_eq] = ACTIONS(9536), + [anon_sym_LT_EQ_GT] = ACTIONS(9538), + [anon_sym_or] = ACTIONS(9536), + [anon_sym_and] = ACTIONS(9536), + [anon_sym_bitor] = ACTIONS(9536), + [anon_sym_xor] = ACTIONS(9536), + [anon_sym_bitand] = ACTIONS(9536), + [anon_sym_not_eq] = ACTIONS(9536), + [anon_sym_DASH_DASH] = ACTIONS(9538), + [anon_sym_PLUS_PLUS] = ACTIONS(9538), + [anon_sym_DOT] = ACTIONS(9536), + [anon_sym_DOT_STAR] = ACTIONS(9538), + [anon_sym_DASH_GT] = ACTIONS(9538), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9538), + }, [STATE(3725)] = { - [sym__abstract_declarator] = STATE(6496), - [sym_abstract_parenthesized_declarator] = STATE(6607), - [sym_abstract_pointer_declarator] = STATE(6607), - [sym_abstract_function_declarator] = STATE(6607), - [sym_abstract_array_declarator] = STATE(6607), - [sym_type_qualifier] = STATE(3720), - [sym_alignas_qualifier] = STATE(4183), - [sym_parameter_list] = STATE(2281), - [sym_abstract_reference_declarator] = STATE(6607), - [sym__function_declarator_seq] = STATE(6608), - [aux_sym__type_definition_type_repeat1] = STATE(3720), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(8572), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(8574), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(8576), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(8578), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(8580), - [anon_sym_LBRACK] = ACTIONS(8588), - [anon_sym_RBRACK] = ACTIONS(7391), - [anon_sym_const] = ACTIONS(8092), - [anon_sym_constexpr] = ACTIONS(8580), - [anon_sym_volatile] = ACTIONS(8580), - [anon_sym_restrict] = ACTIONS(8580), - [anon_sym___restrict__] = ACTIONS(8580), - [anon_sym__Atomic] = ACTIONS(8580), - [anon_sym__Noreturn] = ACTIONS(8580), - [anon_sym_noreturn] = ACTIONS(8580), - [anon_sym__Nonnull] = ACTIONS(8580), - [anon_sym_mutable] = ACTIONS(8580), - [anon_sym_constinit] = ACTIONS(8580), - [anon_sym_consteval] = ACTIONS(8580), - [anon_sym_alignas] = ACTIONS(8590), - [anon_sym__Alignas] = ACTIONS(8590), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7391), - [anon_sym_override] = ACTIONS(7391), - [anon_sym_requires] = ACTIONS(7391), + [sym__abstract_declarator] = STATE(6480), + [sym_abstract_parenthesized_declarator] = STATE(6694), + [sym_abstract_pointer_declarator] = STATE(6694), + [sym_abstract_function_declarator] = STATE(6694), + [sym_abstract_array_declarator] = STATE(6694), + [sym_type_qualifier] = STATE(3671), + [sym_alignas_qualifier] = STATE(3830), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(6694), + [sym__function_declarator_seq] = STATE(6695), + [aux_sym__type_definition_type_repeat1] = STATE(3671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(8568), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(8570), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(8572), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(8574), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7343), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7343), + [anon_sym___extension__] = ACTIONS(8576), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8576), + [anon_sym_volatile] = ACTIONS(8576), + [anon_sym_restrict] = ACTIONS(8576), + [anon_sym___restrict__] = ACTIONS(8576), + [anon_sym__Atomic] = ACTIONS(8576), + [anon_sym__Noreturn] = ACTIONS(8576), + [anon_sym_noreturn] = ACTIONS(8576), + [anon_sym__Nonnull] = ACTIONS(8576), + [anon_sym_mutable] = ACTIONS(8576), + [anon_sym_constinit] = ACTIONS(8576), + [anon_sym_consteval] = ACTIONS(8576), + [anon_sym_alignas] = ACTIONS(8588), + [anon_sym__Alignas] = ACTIONS(8588), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_GT2] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), }, [STATE(3726)] = { - [sym_string_literal] = STATE(5659), - [sym_template_argument_list] = STATE(6768), - [sym_raw_string_literal] = STATE(5659), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5645), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7060), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(6983), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(6985), - [anon_sym_SLASH_EQ] = ACTIONS(6985), - [anon_sym_PERCENT_EQ] = ACTIONS(6985), - [anon_sym_PLUS_EQ] = ACTIONS(6985), - [anon_sym_DASH_EQ] = ACTIONS(6985), - [anon_sym_LT_LT_EQ] = ACTIONS(6985), - [anon_sym_GT_GT_EQ] = ACTIONS(6983), - [anon_sym_AMP_EQ] = ACTIONS(6985), - [anon_sym_CARET_EQ] = ACTIONS(6985), - [anon_sym_PIPE_EQ] = ACTIONS(6985), - [anon_sym_and_eq] = ACTIONS(6985), - [anon_sym_or_eq] = ACTIONS(6985), - [anon_sym_xor_eq] = ACTIONS(6985), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(6987), - [anon_sym_u_DQUOTE] = ACTIONS(6987), - [anon_sym_U_DQUOTE] = ACTIONS(6987), - [anon_sym_u8_DQUOTE] = ACTIONS(6987), - [anon_sym_DQUOTE] = ACTIONS(6987), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(5638), - [anon_sym_R_DQUOTE] = ACTIONS(6993), - [anon_sym_LR_DQUOTE] = ACTIONS(6993), - [anon_sym_uR_DQUOTE] = ACTIONS(6993), - [anon_sym_UR_DQUOTE] = ACTIONS(6993), - [anon_sym_u8R_DQUOTE] = ACTIONS(6993), + [aux_sym_sized_type_specifier_repeat1] = STATE(2615), + [sym_identifier] = ACTIONS(7402), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [aux_sym_preproc_if_token2] = ACTIONS(7399), + [aux_sym_preproc_else_token1] = ACTIONS(7399), + [aux_sym_preproc_elif_token1] = ACTIONS(7402), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7399), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7399), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7399), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7399), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7399), + [anon_sym_GT_GT] = ACTIONS(7399), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(8505), + [anon_sym_unsigned] = ACTIONS(8505), + [anon_sym_long] = ACTIONS(8505), + [anon_sym_short] = ACTIONS(8505), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), }, [STATE(3727)] = { - [sym_string_literal] = STATE(3727), - [sym_raw_string_literal] = STATE(3727), - [aux_sym_concatenated_string_repeat1] = STATE(3727), - [sym_identifier] = ACTIONS(9524), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8406), - [anon_sym_COMMA] = ACTIONS(8406), - [anon_sym_LPAREN2] = ACTIONS(8406), - [anon_sym_DASH] = ACTIONS(8408), - [anon_sym_PLUS] = ACTIONS(8408), - [anon_sym_STAR] = ACTIONS(8408), - [anon_sym_SLASH] = ACTIONS(8408), - [anon_sym_PERCENT] = ACTIONS(8408), - [anon_sym_PIPE_PIPE] = ACTIONS(8406), - [anon_sym_AMP_AMP] = ACTIONS(8406), - [anon_sym_PIPE] = ACTIONS(8408), - [anon_sym_CARET] = ACTIONS(8408), - [anon_sym_AMP] = ACTIONS(8408), - [anon_sym_EQ_EQ] = ACTIONS(8406), - [anon_sym_BANG_EQ] = ACTIONS(8406), - [anon_sym_GT] = ACTIONS(8408), - [anon_sym_GT_EQ] = ACTIONS(8408), - [anon_sym_LT_EQ] = ACTIONS(8408), - [anon_sym_LT] = ACTIONS(8408), - [anon_sym_LT_LT] = ACTIONS(8408), - [anon_sym_GT_GT] = ACTIONS(8408), - [anon_sym_LBRACK] = ACTIONS(8406), - [anon_sym_EQ] = ACTIONS(8408), - [anon_sym_QMARK] = ACTIONS(8406), - [anon_sym_STAR_EQ] = ACTIONS(8406), - [anon_sym_SLASH_EQ] = ACTIONS(8406), - [anon_sym_PERCENT_EQ] = ACTIONS(8406), - [anon_sym_PLUS_EQ] = ACTIONS(8406), - [anon_sym_DASH_EQ] = ACTIONS(8406), - [anon_sym_LT_LT_EQ] = ACTIONS(8406), - [anon_sym_GT_GT_EQ] = ACTIONS(8408), - [anon_sym_AMP_EQ] = ACTIONS(8406), - [anon_sym_CARET_EQ] = ACTIONS(8406), - [anon_sym_PIPE_EQ] = ACTIONS(8406), - [anon_sym_and_eq] = ACTIONS(8408), - [anon_sym_or_eq] = ACTIONS(8408), - [anon_sym_xor_eq] = ACTIONS(8408), - [anon_sym_LT_EQ_GT] = ACTIONS(8406), - [anon_sym_or] = ACTIONS(8408), - [anon_sym_and] = ACTIONS(8408), - [anon_sym_bitor] = ACTIONS(8408), - [anon_sym_xor] = ACTIONS(8408), - [anon_sym_bitand] = ACTIONS(8408), - [anon_sym_not_eq] = ACTIONS(8408), - [anon_sym_DASH_DASH] = ACTIONS(8406), - [anon_sym_PLUS_PLUS] = ACTIONS(8406), - [anon_sym_DOT] = ACTIONS(8408), - [anon_sym_DOT_STAR] = ACTIONS(8406), - [anon_sym_DASH_GT] = ACTIONS(8406), - [anon_sym_L_DQUOTE] = ACTIONS(9527), - [anon_sym_u_DQUOTE] = ACTIONS(9527), - [anon_sym_U_DQUOTE] = ACTIONS(9527), - [anon_sym_u8_DQUOTE] = ACTIONS(9527), - [anon_sym_DQUOTE] = ACTIONS(9527), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(8406), - [anon_sym_R_DQUOTE] = ACTIONS(9530), - [anon_sym_LR_DQUOTE] = ACTIONS(9530), - [anon_sym_uR_DQUOTE] = ACTIONS(9530), - [anon_sym_UR_DQUOTE] = ACTIONS(9530), - [anon_sym_u8R_DQUOTE] = ACTIONS(9530), - [sym_literal_suffix] = ACTIONS(8408), + [sym_string_literal] = STATE(3584), + [sym_raw_string_literal] = STATE(3584), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9109), + [anon_sym_COMMA] = ACTIONS(9109), + [anon_sym_LPAREN2] = ACTIONS(9109), + [anon_sym_DASH] = ACTIONS(9107), + [anon_sym_PLUS] = ACTIONS(9107), + [anon_sym_STAR] = ACTIONS(9107), + [anon_sym_SLASH] = ACTIONS(9107), + [anon_sym_PERCENT] = ACTIONS(9107), + [anon_sym_PIPE_PIPE] = ACTIONS(9109), + [anon_sym_AMP_AMP] = ACTIONS(9109), + [anon_sym_PIPE] = ACTIONS(9107), + [anon_sym_CARET] = ACTIONS(9107), + [anon_sym_AMP] = ACTIONS(9107), + [anon_sym_EQ_EQ] = ACTIONS(9109), + [anon_sym_BANG_EQ] = ACTIONS(9109), + [anon_sym_GT] = ACTIONS(9107), + [anon_sym_GT_EQ] = ACTIONS(9109), + [anon_sym_LT_EQ] = ACTIONS(9107), + [anon_sym_LT] = ACTIONS(9107), + [anon_sym_LT_LT] = ACTIONS(9107), + [anon_sym_GT_GT] = ACTIONS(9107), + [anon_sym_SEMI] = ACTIONS(9109), + [anon_sym___attribute__] = ACTIONS(9107), + [anon_sym___attribute] = ACTIONS(9107), + [anon_sym_LBRACK] = ACTIONS(9109), + [anon_sym_EQ] = ACTIONS(9107), + [anon_sym_QMARK] = ACTIONS(9109), + [anon_sym_STAR_EQ] = ACTIONS(9109), + [anon_sym_SLASH_EQ] = ACTIONS(9109), + [anon_sym_PERCENT_EQ] = ACTIONS(9109), + [anon_sym_PLUS_EQ] = ACTIONS(9109), + [anon_sym_DASH_EQ] = ACTIONS(9109), + [anon_sym_LT_LT_EQ] = ACTIONS(9109), + [anon_sym_GT_GT_EQ] = ACTIONS(9109), + [anon_sym_AMP_EQ] = ACTIONS(9109), + [anon_sym_CARET_EQ] = ACTIONS(9109), + [anon_sym_PIPE_EQ] = ACTIONS(9109), + [anon_sym_and_eq] = ACTIONS(9107), + [anon_sym_or_eq] = ACTIONS(9107), + [anon_sym_xor_eq] = ACTIONS(9107), + [anon_sym_LT_EQ_GT] = ACTIONS(9109), + [anon_sym_or] = ACTIONS(9107), + [anon_sym_and] = ACTIONS(9107), + [anon_sym_bitor] = ACTIONS(9107), + [anon_sym_xor] = ACTIONS(9107), + [anon_sym_bitand] = ACTIONS(9107), + [anon_sym_not_eq] = ACTIONS(9107), + [anon_sym_DASH_DASH] = ACTIONS(9109), + [anon_sym_PLUS_PLUS] = ACTIONS(9109), + [anon_sym_DOT] = ACTIONS(9107), + [anon_sym_DOT_STAR] = ACTIONS(9109), + [anon_sym_DASH_GT] = ACTIONS(9109), + [anon_sym_L_DQUOTE] = ACTIONS(6874), + [anon_sym_u_DQUOTE] = ACTIONS(6874), + [anon_sym_U_DQUOTE] = ACTIONS(6874), + [anon_sym_u8_DQUOTE] = ACTIONS(6874), + [anon_sym_DQUOTE] = ACTIONS(6874), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6876), + [anon_sym_LR_DQUOTE] = ACTIONS(6876), + [anon_sym_uR_DQUOTE] = ACTIONS(6876), + [anon_sym_UR_DQUOTE] = ACTIONS(6876), + [anon_sym_u8R_DQUOTE] = ACTIONS(6876), + [sym_literal_suffix] = ACTIONS(9107), }, [STATE(3728)] = { - [sym_identifier] = ACTIONS(7459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), - [anon_sym_COMMA] = ACTIONS(7457), - [aux_sym_preproc_if_token2] = ACTIONS(7457), - [aux_sym_preproc_else_token1] = ACTIONS(7457), - [aux_sym_preproc_elif_token1] = ACTIONS(7459), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7457), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7457), - [anon_sym_LPAREN2] = ACTIONS(7457), - [anon_sym_DASH] = ACTIONS(7459), - [anon_sym_PLUS] = ACTIONS(7459), - [anon_sym_STAR] = ACTIONS(7457), - [anon_sym_SLASH] = ACTIONS(7459), - [anon_sym_PERCENT] = ACTIONS(7457), - [anon_sym_PIPE_PIPE] = ACTIONS(7457), - [anon_sym_AMP_AMP] = ACTIONS(7457), - [anon_sym_PIPE] = ACTIONS(7459), - [anon_sym_CARET] = ACTIONS(7457), - [anon_sym_AMP] = ACTIONS(7459), - [anon_sym_EQ_EQ] = ACTIONS(7457), - [anon_sym_BANG_EQ] = ACTIONS(7457), - [anon_sym_GT] = ACTIONS(7459), - [anon_sym_GT_EQ] = ACTIONS(7457), - [anon_sym_LT_EQ] = ACTIONS(7459), - [anon_sym_LT] = ACTIONS(7459), - [anon_sym_LT_LT] = ACTIONS(7457), - [anon_sym_GT_GT] = ACTIONS(7457), - [anon_sym___extension__] = ACTIONS(7459), - [anon_sym___attribute__] = ACTIONS(7459), - [anon_sym___attribute] = ACTIONS(7459), - [anon_sym_COLON] = ACTIONS(7459), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7457), - [anon_sym_RBRACK] = ACTIONS(7457), - [anon_sym_const] = ACTIONS(7459), - [anon_sym_constexpr] = ACTIONS(7459), - [anon_sym_volatile] = ACTIONS(7459), - [anon_sym_restrict] = ACTIONS(7459), - [anon_sym___restrict__] = ACTIONS(7459), - [anon_sym__Atomic] = ACTIONS(7459), - [anon_sym__Noreturn] = ACTIONS(7459), - [anon_sym_noreturn] = ACTIONS(7459), - [anon_sym__Nonnull] = ACTIONS(7459), - [anon_sym_mutable] = ACTIONS(7459), - [anon_sym_constinit] = ACTIONS(7459), - [anon_sym_consteval] = ACTIONS(7459), - [anon_sym_alignas] = ACTIONS(7459), - [anon_sym__Alignas] = ACTIONS(7459), - [anon_sym_QMARK] = ACTIONS(7457), - [anon_sym_LT_EQ_GT] = ACTIONS(7457), - [anon_sym_or] = ACTIONS(7459), - [anon_sym_and] = ACTIONS(7459), - [anon_sym_bitor] = ACTIONS(7459), - [anon_sym_xor] = ACTIONS(7459), - [anon_sym_bitand] = ACTIONS(7459), - [anon_sym_not_eq] = ACTIONS(7459), - [anon_sym_DASH_DASH] = ACTIONS(7457), - [anon_sym_PLUS_PLUS] = ACTIONS(7457), - [anon_sym_DOT] = ACTIONS(7459), - [anon_sym_DOT_STAR] = ACTIONS(7457), - [anon_sym_DASH_GT] = ACTIONS(7457), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7459), - [anon_sym_override] = ACTIONS(7459), - [anon_sym_requires] = ACTIONS(7459), + [sym_decltype_auto] = STATE(4089), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9543), + [anon_sym_decltype] = ACTIONS(6772), + [anon_sym_final] = ACTIONS(7246), + [anon_sym_override] = ACTIONS(7246), + [anon_sym_requires] = ACTIONS(7246), }, [STATE(3729)] = { - [sym_decltype_auto] = STATE(4116), - [sym_template_argument_list] = STATE(4130), - [aux_sym_sized_type_specifier_repeat1] = STATE(3285), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5643), - [anon_sym_SLASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5643), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5636), - [anon_sym_CARET] = ACTIONS(5643), - [anon_sym_AMP] = ACTIONS(5636), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5636), - [anon_sym_GT_EQ] = ACTIONS(5643), - [anon_sym_LT_EQ] = ACTIONS(5636), - [anon_sym_LT] = ACTIONS(8883), - [anon_sym_LT_LT] = ACTIONS(5643), - [anon_sym_GT_GT] = ACTIONS(5643), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(7042), - [anon_sym_unsigned] = ACTIONS(7042), - [anon_sym_long] = ACTIONS(7042), - [anon_sym_short] = ACTIONS(7042), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_RBRACK] = ACTIONS(5643), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5643), - [anon_sym_and] = ACTIONS(5643), - [anon_sym_bitor] = ACTIONS(5643), - [anon_sym_xor] = ACTIONS(5643), - [anon_sym_bitand] = ACTIONS(5643), - [anon_sym_not_eq] = ACTIONS(5643), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7050), - [anon_sym_decltype] = ACTIONS(7052), - [anon_sym_final] = ACTIONS(5643), - [anon_sym_override] = ACTIONS(5643), - [anon_sym_requires] = ACTIONS(5643), + [sym_attribute_specifier] = STATE(3174), + [sym_enumerator_list] = STATE(3868), + [sym__enum_base_clause] = STATE(3793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8009), + [anon_sym_COMMA] = ACTIONS(8009), + [anon_sym_RPAREN] = ACTIONS(8009), + [anon_sym_LPAREN2] = ACTIONS(8009), + [anon_sym_DASH] = ACTIONS(8007), + [anon_sym_PLUS] = ACTIONS(8007), + [anon_sym_STAR] = ACTIONS(8009), + [anon_sym_SLASH] = ACTIONS(8007), + [anon_sym_PERCENT] = ACTIONS(8009), + [anon_sym_PIPE_PIPE] = ACTIONS(8009), + [anon_sym_AMP_AMP] = ACTIONS(8009), + [anon_sym_PIPE] = ACTIONS(8007), + [anon_sym_CARET] = ACTIONS(8009), + [anon_sym_AMP] = ACTIONS(8007), + [anon_sym_EQ_EQ] = ACTIONS(8009), + [anon_sym_BANG_EQ] = ACTIONS(8009), + [anon_sym_GT] = ACTIONS(8007), + [anon_sym_GT_EQ] = ACTIONS(8009), + [anon_sym_LT_EQ] = ACTIONS(8007), + [anon_sym_LT] = ACTIONS(8007), + [anon_sym_LT_LT] = ACTIONS(8009), + [anon_sym_GT_GT] = ACTIONS(8009), + [anon_sym_SEMI] = ACTIONS(8009), + [anon_sym___extension__] = ACTIONS(8009), + [anon_sym___attribute__] = ACTIONS(9309), + [anon_sym___attribute] = ACTIONS(9211), + [anon_sym_COLON] = ACTIONS(9518), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8009), + [anon_sym_LBRACE] = ACTIONS(9520), + [anon_sym_RBRACE] = ACTIONS(8009), + [anon_sym_LBRACK] = ACTIONS(8009), + [anon_sym_const] = ACTIONS(8007), + [anon_sym_constexpr] = ACTIONS(8009), + [anon_sym_volatile] = ACTIONS(8009), + [anon_sym_restrict] = ACTIONS(8009), + [anon_sym___restrict__] = ACTIONS(8009), + [anon_sym__Atomic] = ACTIONS(8009), + [anon_sym__Noreturn] = ACTIONS(8009), + [anon_sym_noreturn] = ACTIONS(8009), + [anon_sym__Nonnull] = ACTIONS(8009), + [anon_sym_mutable] = ACTIONS(8009), + [anon_sym_constinit] = ACTIONS(8009), + [anon_sym_consteval] = ACTIONS(8009), + [anon_sym_alignas] = ACTIONS(8009), + [anon_sym__Alignas] = ACTIONS(8009), + [anon_sym_QMARK] = ACTIONS(8009), + [anon_sym_LT_EQ_GT] = ACTIONS(8009), + [anon_sym_or] = ACTIONS(8009), + [anon_sym_and] = ACTIONS(8009), + [anon_sym_bitor] = ACTIONS(8009), + [anon_sym_xor] = ACTIONS(8009), + [anon_sym_bitand] = ACTIONS(8009), + [anon_sym_not_eq] = ACTIONS(8009), + [anon_sym_DASH_DASH] = ACTIONS(8009), + [anon_sym_PLUS_PLUS] = ACTIONS(8009), + [anon_sym_DOT] = ACTIONS(8007), + [anon_sym_DOT_STAR] = ACTIONS(8009), + [anon_sym_DASH_GT] = ACTIONS(8009), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(8009), + [anon_sym_override] = ACTIONS(8009), + [anon_sym_requires] = ACTIONS(8009), + [anon_sym_COLON_RBRACK] = ACTIONS(8009), }, [STATE(3730)] = { - [sym_string_literal] = STATE(3751), - [sym_raw_string_literal] = STATE(3751), - [aux_sym_concatenated_string_repeat1] = STATE(3751), - [sym_identifier] = ACTIONS(9533), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), - [anon_sym_COMMA] = ACTIONS(8466), - [anon_sym_LPAREN2] = ACTIONS(8466), - [anon_sym_DASH] = ACTIONS(8468), - [anon_sym_PLUS] = ACTIONS(8468), - [anon_sym_STAR] = ACTIONS(8468), - [anon_sym_SLASH] = ACTIONS(8468), - [anon_sym_PERCENT] = ACTIONS(8468), - [anon_sym_PIPE_PIPE] = ACTIONS(8466), - [anon_sym_AMP_AMP] = ACTIONS(8466), - [anon_sym_PIPE] = ACTIONS(8468), - [anon_sym_CARET] = ACTIONS(8468), - [anon_sym_AMP] = ACTIONS(8468), - [anon_sym_EQ_EQ] = ACTIONS(8466), - [anon_sym_BANG_EQ] = ACTIONS(8466), - [anon_sym_GT] = ACTIONS(8468), - [anon_sym_GT_EQ] = ACTIONS(8466), - [anon_sym_LT_EQ] = ACTIONS(8468), - [anon_sym_LT] = ACTIONS(8468), - [anon_sym_LT_LT] = ACTIONS(8468), - [anon_sym_GT_GT] = ACTIONS(8468), - [anon_sym_LBRACK] = ACTIONS(8466), - [anon_sym_RBRACK] = ACTIONS(8466), - [anon_sym_EQ] = ACTIONS(8468), - [anon_sym_QMARK] = ACTIONS(8466), - [anon_sym_STAR_EQ] = ACTIONS(8466), - [anon_sym_SLASH_EQ] = ACTIONS(8466), - [anon_sym_PERCENT_EQ] = ACTIONS(8466), - [anon_sym_PLUS_EQ] = ACTIONS(8466), - [anon_sym_DASH_EQ] = ACTIONS(8466), - [anon_sym_LT_LT_EQ] = ACTIONS(8466), - [anon_sym_GT_GT_EQ] = ACTIONS(8466), - [anon_sym_AMP_EQ] = ACTIONS(8466), - [anon_sym_CARET_EQ] = ACTIONS(8466), - [anon_sym_PIPE_EQ] = ACTIONS(8466), - [anon_sym_and_eq] = ACTIONS(8468), - [anon_sym_or_eq] = ACTIONS(8468), - [anon_sym_xor_eq] = ACTIONS(8468), - [anon_sym_LT_EQ_GT] = ACTIONS(8466), - [anon_sym_or] = ACTIONS(8468), - [anon_sym_and] = ACTIONS(8468), - [anon_sym_bitor] = ACTIONS(8468), - [anon_sym_xor] = ACTIONS(8468), - [anon_sym_bitand] = ACTIONS(8468), - [anon_sym_not_eq] = ACTIONS(8468), - [anon_sym_DASH_DASH] = ACTIONS(8466), - [anon_sym_PLUS_PLUS] = ACTIONS(8466), - [anon_sym_DOT] = ACTIONS(8468), - [anon_sym_DOT_STAR] = ACTIONS(8466), - [anon_sym_DASH_GT] = ACTIONS(8466), - [anon_sym_L_DQUOTE] = ACTIONS(7069), - [anon_sym_u_DQUOTE] = ACTIONS(7069), - [anon_sym_U_DQUOTE] = ACTIONS(7069), - [anon_sym_u8_DQUOTE] = ACTIONS(7069), - [anon_sym_DQUOTE] = ACTIONS(7069), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(7075), - [anon_sym_LR_DQUOTE] = ACTIONS(7075), - [anon_sym_uR_DQUOTE] = ACTIONS(7075), - [anon_sym_UR_DQUOTE] = ACTIONS(7075), - [anon_sym_u8R_DQUOTE] = ACTIONS(7075), - [sym_literal_suffix] = ACTIONS(8468), + [sym_string_literal] = STATE(3712), + [sym_raw_string_literal] = STATE(3712), + [aux_sym_concatenated_string_repeat1] = STATE(3712), + [sym_identifier] = ACTIONS(9545), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8483), + [anon_sym_COMMA] = ACTIONS(8483), + [anon_sym_LPAREN2] = ACTIONS(8483), + [anon_sym_DASH] = ACTIONS(8485), + [anon_sym_PLUS] = ACTIONS(8485), + [anon_sym_STAR] = ACTIONS(8485), + [anon_sym_SLASH] = ACTIONS(8485), + [anon_sym_PERCENT] = ACTIONS(8485), + [anon_sym_PIPE_PIPE] = ACTIONS(8483), + [anon_sym_AMP_AMP] = ACTIONS(8483), + [anon_sym_PIPE] = ACTIONS(8485), + [anon_sym_CARET] = ACTIONS(8485), + [anon_sym_AMP] = ACTIONS(8485), + [anon_sym_EQ_EQ] = ACTIONS(8483), + [anon_sym_BANG_EQ] = ACTIONS(8483), + [anon_sym_GT] = ACTIONS(8485), + [anon_sym_GT_EQ] = ACTIONS(8483), + [anon_sym_LT_EQ] = ACTIONS(8485), + [anon_sym_LT] = ACTIONS(8485), + [anon_sym_LT_LT] = ACTIONS(8485), + [anon_sym_GT_GT] = ACTIONS(8485), + [anon_sym_LBRACK] = ACTIONS(8483), + [anon_sym_RBRACK] = ACTIONS(8483), + [anon_sym_EQ] = ACTIONS(8485), + [anon_sym_QMARK] = ACTIONS(8483), + [anon_sym_STAR_EQ] = ACTIONS(8483), + [anon_sym_SLASH_EQ] = ACTIONS(8483), + [anon_sym_PERCENT_EQ] = ACTIONS(8483), + [anon_sym_PLUS_EQ] = ACTIONS(8483), + [anon_sym_DASH_EQ] = ACTIONS(8483), + [anon_sym_LT_LT_EQ] = ACTIONS(8483), + [anon_sym_GT_GT_EQ] = ACTIONS(8483), + [anon_sym_AMP_EQ] = ACTIONS(8483), + [anon_sym_CARET_EQ] = ACTIONS(8483), + [anon_sym_PIPE_EQ] = ACTIONS(8483), + [anon_sym_and_eq] = ACTIONS(8485), + [anon_sym_or_eq] = ACTIONS(8485), + [anon_sym_xor_eq] = ACTIONS(8485), + [anon_sym_LT_EQ_GT] = ACTIONS(8483), + [anon_sym_or] = ACTIONS(8485), + [anon_sym_and] = ACTIONS(8485), + [anon_sym_bitor] = ACTIONS(8485), + [anon_sym_xor] = ACTIONS(8485), + [anon_sym_bitand] = ACTIONS(8485), + [anon_sym_not_eq] = ACTIONS(8485), + [anon_sym_DASH_DASH] = ACTIONS(8483), + [anon_sym_PLUS_PLUS] = ACTIONS(8483), + [anon_sym_DOT] = ACTIONS(8485), + [anon_sym_DOT_STAR] = ACTIONS(8483), + [anon_sym_DASH_GT] = ACTIONS(8483), + [anon_sym_L_DQUOTE] = ACTIONS(7052), + [anon_sym_u_DQUOTE] = ACTIONS(7052), + [anon_sym_U_DQUOTE] = ACTIONS(7052), + [anon_sym_u8_DQUOTE] = ACTIONS(7052), + [anon_sym_DQUOTE] = ACTIONS(7052), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7058), + [anon_sym_LR_DQUOTE] = ACTIONS(7058), + [anon_sym_uR_DQUOTE] = ACTIONS(7058), + [anon_sym_UR_DQUOTE] = ACTIONS(7058), + [anon_sym_u8R_DQUOTE] = ACTIONS(7058), + [sym_literal_suffix] = ACTIONS(8485), }, [STATE(3731)] = { - [sym_type_qualifier] = STATE(3746), - [sym_alignas_qualifier] = STATE(3991), - [aux_sym__type_definition_type_repeat1] = STATE(3746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6754), - [anon_sym_COMMA] = ACTIONS(6754), - [anon_sym_LPAREN2] = ACTIONS(6754), - [anon_sym_DASH] = ACTIONS(6752), - [anon_sym_PLUS] = ACTIONS(6752), - [anon_sym_STAR] = ACTIONS(6754), - [anon_sym_SLASH] = ACTIONS(6752), - [anon_sym_PERCENT] = ACTIONS(6754), - [anon_sym_PIPE_PIPE] = ACTIONS(6754), - [anon_sym_AMP_AMP] = ACTIONS(6754), - [anon_sym_PIPE] = ACTIONS(6752), - [anon_sym_CARET] = ACTIONS(6754), - [anon_sym_AMP] = ACTIONS(6752), - [anon_sym_EQ_EQ] = ACTIONS(6754), - [anon_sym_BANG_EQ] = ACTIONS(6754), - [anon_sym_GT] = ACTIONS(6752), - [anon_sym_GT_EQ] = ACTIONS(6752), - [anon_sym_LT_EQ] = ACTIONS(6752), - [anon_sym_LT] = ACTIONS(6752), - [anon_sym_LT_LT] = ACTIONS(6754), - [anon_sym_GT_GT] = ACTIONS(6752), - [anon_sym___extension__] = ACTIONS(7814), - [anon_sym___attribute__] = ACTIONS(6754), - [anon_sym___attribute] = ACTIONS(6752), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6754), - [anon_sym_LBRACK] = ACTIONS(6752), - [anon_sym_const] = ACTIONS(7822), - [anon_sym_constexpr] = ACTIONS(7814), - [anon_sym_volatile] = ACTIONS(7814), - [anon_sym_restrict] = ACTIONS(7814), - [anon_sym___restrict__] = ACTIONS(7814), - [anon_sym__Atomic] = ACTIONS(7814), - [anon_sym__Noreturn] = ACTIONS(7814), - [anon_sym_noreturn] = ACTIONS(7814), - [anon_sym__Nonnull] = ACTIONS(7814), - [anon_sym_mutable] = ACTIONS(7814), - [anon_sym_constinit] = ACTIONS(7814), - [anon_sym_consteval] = ACTIONS(7814), - [anon_sym_alignas] = ACTIONS(7824), - [anon_sym__Alignas] = ACTIONS(7824), - [anon_sym_QMARK] = ACTIONS(6754), - [anon_sym_LT_EQ_GT] = ACTIONS(6754), - [anon_sym_or] = ACTIONS(6754), - [anon_sym_and] = ACTIONS(6754), - [anon_sym_bitor] = ACTIONS(6754), - [anon_sym_xor] = ACTIONS(6754), - [anon_sym_bitand] = ACTIONS(6754), - [anon_sym_not_eq] = ACTIONS(6754), - [anon_sym_DASH_DASH] = ACTIONS(6754), - [anon_sym_PLUS_PLUS] = ACTIONS(6754), - [anon_sym_asm] = ACTIONS(6754), - [anon_sym___asm__] = ACTIONS(6754), - [anon_sym___asm] = ACTIONS(6752), - [anon_sym_DOT] = ACTIONS(6752), - [anon_sym_DOT_STAR] = ACTIONS(6754), - [anon_sym_DASH_GT] = ACTIONS(6754), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6754), - [anon_sym_override] = ACTIONS(6754), - [anon_sym_GT2] = ACTIONS(6754), - [anon_sym_noexcept] = ACTIONS(6754), - [anon_sym_throw] = ACTIONS(6754), - [anon_sym_requires] = ACTIONS(6754), + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_TILDE] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_SEMI] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym_virtual] = ACTIONS(7327), + [anon_sym_extern] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7329), + [anon_sym___declspec] = ACTIONS(7327), + [anon_sym___based] = ACTIONS(7327), + [anon_sym___cdecl] = ACTIONS(7327), + [anon_sym___clrcall] = ACTIONS(7327), + [anon_sym___stdcall] = ACTIONS(7327), + [anon_sym___fastcall] = ACTIONS(7327), + [anon_sym___thiscall] = ACTIONS(7327), + [anon_sym___vectorcall] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_static] = ACTIONS(7327), + [anon_sym_EQ] = ACTIONS(7329), + [anon_sym_register] = ACTIONS(7327), + [anon_sym_inline] = ACTIONS(7327), + [anon_sym___inline] = ACTIONS(7327), + [anon_sym___inline__] = ACTIONS(7327), + [anon_sym___forceinline] = ACTIONS(7327), + [anon_sym_thread_local] = ACTIONS(7327), + [anon_sym___thread] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_template] = ACTIONS(7327), + [anon_sym_GT2] = ACTIONS(7329), + [anon_sym_operator] = ACTIONS(7327), + [anon_sym_noexcept] = ACTIONS(7327), + [anon_sym_throw] = ACTIONS(7327), + [anon_sym_LBRACK_COLON] = ACTIONS(7329), }, [STATE(3732)] = { - [sym_new_declarator] = STATE(3814), - [sym_identifier] = ACTIONS(9535), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9537), - [anon_sym_COMMA] = ACTIONS(9537), - [anon_sym_RPAREN] = ACTIONS(9537), - [aux_sym_preproc_if_token2] = ACTIONS(9537), - [aux_sym_preproc_else_token1] = ACTIONS(9537), - [aux_sym_preproc_elif_token1] = ACTIONS(9535), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9537), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9537), - [anon_sym_LPAREN2] = ACTIONS(9537), - [anon_sym_DASH] = ACTIONS(9535), - [anon_sym_PLUS] = ACTIONS(9535), - [anon_sym_STAR] = ACTIONS(9535), - [anon_sym_SLASH] = ACTIONS(9535), - [anon_sym_PERCENT] = ACTIONS(9535), - [anon_sym_PIPE_PIPE] = ACTIONS(9537), - [anon_sym_AMP_AMP] = ACTIONS(9537), - [anon_sym_PIPE] = ACTIONS(9535), - [anon_sym_CARET] = ACTIONS(9535), - [anon_sym_AMP] = ACTIONS(9535), - [anon_sym_EQ_EQ] = ACTIONS(9537), - [anon_sym_BANG_EQ] = ACTIONS(9537), - [anon_sym_GT] = ACTIONS(9535), - [anon_sym_GT_EQ] = ACTIONS(9537), - [anon_sym_LT_EQ] = ACTIONS(9535), - [anon_sym_LT] = ACTIONS(9535), - [anon_sym_LT_LT] = ACTIONS(9535), - [anon_sym_GT_GT] = ACTIONS(9535), - [anon_sym_SEMI] = ACTIONS(9537), - [anon_sym___attribute__] = ACTIONS(9535), - [anon_sym___attribute] = ACTIONS(9535), - [anon_sym_COLON] = ACTIONS(9535), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9537), - [anon_sym_LBRACE] = ACTIONS(9537), - [anon_sym_RBRACE] = ACTIONS(9537), - [anon_sym_LBRACK] = ACTIONS(9232), - [anon_sym_EQ] = ACTIONS(9535), - [anon_sym_QMARK] = ACTIONS(9537), - [anon_sym_STAR_EQ] = ACTIONS(9537), - [anon_sym_SLASH_EQ] = ACTIONS(9537), - [anon_sym_PERCENT_EQ] = ACTIONS(9537), - [anon_sym_PLUS_EQ] = ACTIONS(9537), - [anon_sym_DASH_EQ] = ACTIONS(9537), - [anon_sym_LT_LT_EQ] = ACTIONS(9537), - [anon_sym_GT_GT_EQ] = ACTIONS(9537), - [anon_sym_AMP_EQ] = ACTIONS(9537), - [anon_sym_CARET_EQ] = ACTIONS(9537), - [anon_sym_PIPE_EQ] = ACTIONS(9537), - [anon_sym_and_eq] = ACTIONS(9535), - [anon_sym_or_eq] = ACTIONS(9535), - [anon_sym_xor_eq] = ACTIONS(9535), - [anon_sym_LT_EQ_GT] = ACTIONS(9537), - [anon_sym_or] = ACTIONS(9535), - [anon_sym_and] = ACTIONS(9535), - [anon_sym_bitor] = ACTIONS(9535), - [anon_sym_xor] = ACTIONS(9535), - [anon_sym_bitand] = ACTIONS(9535), - [anon_sym_not_eq] = ACTIONS(9535), - [anon_sym_DASH_DASH] = ACTIONS(9537), - [anon_sym_PLUS_PLUS] = ACTIONS(9537), - [anon_sym_DOT] = ACTIONS(9535), - [anon_sym_DOT_STAR] = ACTIONS(9537), - [anon_sym_DASH_GT] = ACTIONS(9537), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9537), + [sym_string_literal] = STATE(5629), + [sym_template_argument_list] = STATE(6801), + [sym_raw_string_literal] = STATE(5629), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(8984), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(6999), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(7001), + [anon_sym_SLASH_EQ] = ACTIONS(7001), + [anon_sym_PERCENT_EQ] = ACTIONS(7001), + [anon_sym_PLUS_EQ] = ACTIONS(7001), + [anon_sym_DASH_EQ] = ACTIONS(7001), + [anon_sym_LT_LT_EQ] = ACTIONS(7001), + [anon_sym_GT_GT_EQ] = ACTIONS(7001), + [anon_sym_AMP_EQ] = ACTIONS(7001), + [anon_sym_CARET_EQ] = ACTIONS(7001), + [anon_sym_PIPE_EQ] = ACTIONS(7001), + [anon_sym_and_eq] = ACTIONS(7001), + [anon_sym_or_eq] = ACTIONS(7001), + [anon_sym_xor_eq] = ACTIONS(7001), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(7003), + [anon_sym_u_DQUOTE] = ACTIONS(7003), + [anon_sym_U_DQUOTE] = ACTIONS(7003), + [anon_sym_u8_DQUOTE] = ACTIONS(7003), + [anon_sym_DQUOTE] = ACTIONS(7003), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7009), + [anon_sym_LR_DQUOTE] = ACTIONS(7009), + [anon_sym_uR_DQUOTE] = ACTIONS(7009), + [anon_sym_UR_DQUOTE] = ACTIONS(7009), + [anon_sym_u8R_DQUOTE] = ACTIONS(7009), }, [STATE(3733)] = { - [sym_identifier] = ACTIONS(7104), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7106), - [anon_sym_COMMA] = ACTIONS(7106), - [aux_sym_preproc_if_token2] = ACTIONS(7106), - [aux_sym_preproc_else_token1] = ACTIONS(7106), - [aux_sym_preproc_elif_token1] = ACTIONS(7104), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7106), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7106), - [anon_sym_LPAREN2] = ACTIONS(7106), - [anon_sym_DASH] = ACTIONS(7104), - [anon_sym_PLUS] = ACTIONS(7104), - [anon_sym_STAR] = ACTIONS(7106), - [anon_sym_SLASH] = ACTIONS(7104), - [anon_sym_PERCENT] = ACTIONS(7106), - [anon_sym_PIPE_PIPE] = ACTIONS(7106), - [anon_sym_AMP_AMP] = ACTIONS(7106), - [anon_sym_PIPE] = ACTIONS(7104), - [anon_sym_CARET] = ACTIONS(7106), - [anon_sym_AMP] = ACTIONS(7104), - [anon_sym_EQ_EQ] = ACTIONS(7106), - [anon_sym_BANG_EQ] = ACTIONS(7106), - [anon_sym_GT] = ACTIONS(7104), - [anon_sym_GT_EQ] = ACTIONS(7106), - [anon_sym_LT_EQ] = ACTIONS(7104), - [anon_sym_LT] = ACTIONS(7104), - [anon_sym_LT_LT] = ACTIONS(7106), - [anon_sym_GT_GT] = ACTIONS(7106), - [anon_sym___extension__] = ACTIONS(7104), - [anon_sym___attribute__] = ACTIONS(7104), - [anon_sym___attribute] = ACTIONS(7104), - [anon_sym_COLON] = ACTIONS(7104), - [anon_sym_COLON_COLON] = ACTIONS(7106), - [anon_sym_LBRACE] = ACTIONS(7106), - [anon_sym_LBRACK] = ACTIONS(7106), - [anon_sym_RBRACK] = ACTIONS(7106), - [anon_sym_const] = ACTIONS(7104), - [anon_sym_constexpr] = ACTIONS(7104), - [anon_sym_volatile] = ACTIONS(7104), - [anon_sym_restrict] = ACTIONS(7104), - [anon_sym___restrict__] = ACTIONS(7104), - [anon_sym__Atomic] = ACTIONS(7104), - [anon_sym__Noreturn] = ACTIONS(7104), - [anon_sym_noreturn] = ACTIONS(7104), - [anon_sym__Nonnull] = ACTIONS(7104), - [anon_sym_mutable] = ACTIONS(7104), - [anon_sym_constinit] = ACTIONS(7104), - [anon_sym_consteval] = ACTIONS(7104), - [anon_sym_alignas] = ACTIONS(7104), - [anon_sym__Alignas] = ACTIONS(7104), - [anon_sym_QMARK] = ACTIONS(7106), - [anon_sym_LT_EQ_GT] = ACTIONS(7106), - [anon_sym_or] = ACTIONS(7104), - [anon_sym_and] = ACTIONS(7104), - [anon_sym_bitor] = ACTIONS(7104), - [anon_sym_xor] = ACTIONS(7104), - [anon_sym_bitand] = ACTIONS(7104), - [anon_sym_not_eq] = ACTIONS(7104), - [anon_sym_DASH_DASH] = ACTIONS(7106), - [anon_sym_PLUS_PLUS] = ACTIONS(7106), - [anon_sym_DOT] = ACTIONS(7104), - [anon_sym_DOT_STAR] = ACTIONS(7106), - [anon_sym_DASH_GT] = ACTIONS(7106), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7104), - [anon_sym_override] = ACTIONS(7104), - [anon_sym_requires] = ACTIONS(7104), + [sym__abstract_declarator] = STATE(6446), + [sym_abstract_parenthesized_declarator] = STATE(6694), + [sym_abstract_pointer_declarator] = STATE(6694), + [sym_abstract_function_declarator] = STATE(6694), + [sym_abstract_array_declarator] = STATE(6694), + [sym_type_qualifier] = STATE(3671), + [sym_alignas_qualifier] = STATE(3830), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(6694), + [sym__function_declarator_seq] = STATE(6695), + [aux_sym__type_definition_type_repeat1] = STATE(3671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8568), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8570), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8572), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8574), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6841), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6841), + [anon_sym___extension__] = ACTIONS(8576), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8576), + [anon_sym_volatile] = ACTIONS(8576), + [anon_sym_restrict] = ACTIONS(8576), + [anon_sym___restrict__] = ACTIONS(8576), + [anon_sym__Atomic] = ACTIONS(8576), + [anon_sym__Noreturn] = ACTIONS(8576), + [anon_sym_noreturn] = ACTIONS(8576), + [anon_sym__Nonnull] = ACTIONS(8576), + [anon_sym_mutable] = ACTIONS(8576), + [anon_sym_constinit] = ACTIONS(8576), + [anon_sym_consteval] = ACTIONS(8576), + [anon_sym_alignas] = ACTIONS(8588), + [anon_sym__Alignas] = ACTIONS(8588), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_GT2] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), }, [STATE(3734)] = { - [sym_string_literal] = STATE(5580), - [sym_template_argument_list] = STATE(6754), - [sym_raw_string_literal] = STATE(5580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9453), - [anon_sym_COMMA] = ACTIONS(9539), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(8925), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_RBRACK] = ACTIONS(9541), - [anon_sym_EQ] = ACTIONS(9463), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(7046), - [anon_sym_SLASH_EQ] = ACTIONS(7046), - [anon_sym_PERCENT_EQ] = ACTIONS(7046), - [anon_sym_PLUS_EQ] = ACTIONS(7046), - [anon_sym_DASH_EQ] = ACTIONS(7046), - [anon_sym_LT_LT_EQ] = ACTIONS(7046), - [anon_sym_GT_GT_EQ] = ACTIONS(7046), - [anon_sym_AMP_EQ] = ACTIONS(7046), - [anon_sym_CARET_EQ] = ACTIONS(7046), - [anon_sym_PIPE_EQ] = ACTIONS(7046), - [anon_sym_and_eq] = ACTIONS(7046), - [anon_sym_or_eq] = ACTIONS(7046), - [anon_sym_xor_eq] = ACTIONS(7046), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(7048), - [anon_sym_u_DQUOTE] = ACTIONS(7048), - [anon_sym_U_DQUOTE] = ACTIONS(7048), - [anon_sym_u8_DQUOTE] = ACTIONS(7048), - [anon_sym_DQUOTE] = ACTIONS(7048), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(7054), - [anon_sym_LR_DQUOTE] = ACTIONS(7054), - [anon_sym_uR_DQUOTE] = ACTIONS(7054), - [anon_sym_UR_DQUOTE] = ACTIONS(7054), - [anon_sym_u8R_DQUOTE] = ACTIONS(7054), + [sym_new_declarator] = STATE(3788), + [sym_identifier] = ACTIONS(9547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9549), + [anon_sym_COMMA] = ACTIONS(9549), + [anon_sym_RPAREN] = ACTIONS(9549), + [aux_sym_preproc_if_token2] = ACTIONS(9549), + [aux_sym_preproc_else_token1] = ACTIONS(9549), + [aux_sym_preproc_elif_token1] = ACTIONS(9547), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9549), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9549), + [anon_sym_LPAREN2] = ACTIONS(9549), + [anon_sym_DASH] = ACTIONS(9547), + [anon_sym_PLUS] = ACTIONS(9547), + [anon_sym_STAR] = ACTIONS(9547), + [anon_sym_SLASH] = ACTIONS(9547), + [anon_sym_PERCENT] = ACTIONS(9547), + [anon_sym_PIPE_PIPE] = ACTIONS(9549), + [anon_sym_AMP_AMP] = ACTIONS(9549), + [anon_sym_PIPE] = ACTIONS(9547), + [anon_sym_CARET] = ACTIONS(9547), + [anon_sym_AMP] = ACTIONS(9547), + [anon_sym_EQ_EQ] = ACTIONS(9549), + [anon_sym_BANG_EQ] = ACTIONS(9549), + [anon_sym_GT] = ACTIONS(9547), + [anon_sym_GT_EQ] = ACTIONS(9549), + [anon_sym_LT_EQ] = ACTIONS(9547), + [anon_sym_LT] = ACTIONS(9547), + [anon_sym_LT_LT] = ACTIONS(9547), + [anon_sym_GT_GT] = ACTIONS(9547), + [anon_sym_SEMI] = ACTIONS(9549), + [anon_sym___attribute__] = ACTIONS(9547), + [anon_sym___attribute] = ACTIONS(9547), + [anon_sym_COLON] = ACTIONS(9547), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9549), + [anon_sym_LBRACE] = ACTIONS(9549), + [anon_sym_RBRACE] = ACTIONS(9549), + [anon_sym_LBRACK] = ACTIONS(9184), + [anon_sym_EQ] = ACTIONS(9547), + [anon_sym_QMARK] = ACTIONS(9549), + [anon_sym_STAR_EQ] = ACTIONS(9549), + [anon_sym_SLASH_EQ] = ACTIONS(9549), + [anon_sym_PERCENT_EQ] = ACTIONS(9549), + [anon_sym_PLUS_EQ] = ACTIONS(9549), + [anon_sym_DASH_EQ] = ACTIONS(9549), + [anon_sym_LT_LT_EQ] = ACTIONS(9549), + [anon_sym_GT_GT_EQ] = ACTIONS(9549), + [anon_sym_AMP_EQ] = ACTIONS(9549), + [anon_sym_CARET_EQ] = ACTIONS(9549), + [anon_sym_PIPE_EQ] = ACTIONS(9549), + [anon_sym_and_eq] = ACTIONS(9547), + [anon_sym_or_eq] = ACTIONS(9547), + [anon_sym_xor_eq] = ACTIONS(9547), + [anon_sym_LT_EQ_GT] = ACTIONS(9549), + [anon_sym_or] = ACTIONS(9547), + [anon_sym_and] = ACTIONS(9547), + [anon_sym_bitor] = ACTIONS(9547), + [anon_sym_xor] = ACTIONS(9547), + [anon_sym_bitand] = ACTIONS(9547), + [anon_sym_not_eq] = ACTIONS(9547), + [anon_sym_DASH_DASH] = ACTIONS(9549), + [anon_sym_PLUS_PLUS] = ACTIONS(9549), + [anon_sym_DOT] = ACTIONS(9547), + [anon_sym_DOT_STAR] = ACTIONS(9549), + [anon_sym_DASH_GT] = ACTIONS(9549), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9549), }, [STATE(3735)] = { - [sym_identifier] = ACTIONS(6594), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6601), - [anon_sym_COMMA] = ACTIONS(6601), - [anon_sym_RPAREN] = ACTIONS(6601), - [anon_sym_LPAREN2] = ACTIONS(6601), - [anon_sym_STAR] = ACTIONS(6601), - [anon_sym_PIPE_PIPE] = ACTIONS(6601), - [anon_sym_AMP_AMP] = ACTIONS(6601), - [anon_sym_AMP] = ACTIONS(6594), - [anon_sym_SEMI] = ACTIONS(6601), - [anon_sym___extension__] = ACTIONS(6594), - [anon_sym_virtual] = ACTIONS(6594), - [anon_sym_extern] = ACTIONS(6594), - [anon_sym___attribute__] = ACTIONS(6594), - [anon_sym___attribute] = ACTIONS(6594), - [anon_sym_COLON] = ACTIONS(6594), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6601), - [anon_sym___declspec] = ACTIONS(6594), - [anon_sym___based] = ACTIONS(6594), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_signed] = ACTIONS(6594), - [anon_sym_unsigned] = ACTIONS(6594), - [anon_sym_long] = ACTIONS(6594), - [anon_sym_short] = ACTIONS(6594), - [anon_sym_LBRACK] = ACTIONS(6594), - [anon_sym_static] = ACTIONS(6594), - [anon_sym_EQ] = ACTIONS(6601), - [anon_sym_register] = ACTIONS(6594), - [anon_sym_inline] = ACTIONS(6594), - [anon_sym___inline] = ACTIONS(6594), - [anon_sym___inline__] = ACTIONS(6594), - [anon_sym___forceinline] = ACTIONS(6594), - [anon_sym_thread_local] = ACTIONS(6594), - [anon_sym___thread] = ACTIONS(6594), - [anon_sym_const] = ACTIONS(6594), - [anon_sym_constexpr] = ACTIONS(6594), - [anon_sym_volatile] = ACTIONS(6594), - [anon_sym_restrict] = ACTIONS(6594), - [anon_sym___restrict__] = ACTIONS(6594), - [anon_sym__Atomic] = ACTIONS(6594), - [anon_sym__Noreturn] = ACTIONS(6594), - [anon_sym_noreturn] = ACTIONS(6594), - [anon_sym__Nonnull] = ACTIONS(6594), - [anon_sym_mutable] = ACTIONS(6594), - [anon_sym_constinit] = ACTIONS(6594), - [anon_sym_consteval] = ACTIONS(6594), - [anon_sym_alignas] = ACTIONS(6594), - [anon_sym__Alignas] = ACTIONS(6594), - [sym_primitive_type] = ACTIONS(6594), - [anon_sym_or] = ACTIONS(6594), - [anon_sym_and] = ACTIONS(6594), - [anon_sym_asm] = ACTIONS(6594), - [anon_sym___asm__] = ACTIONS(6594), - [anon_sym___asm] = ACTIONS(6594), - [anon_sym_DASH_GT] = ACTIONS(6601), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6594), - [anon_sym_decltype] = ACTIONS(6594), - [anon_sym_final] = ACTIONS(6594), - [anon_sym_override] = ACTIONS(6594), - [anon_sym_GT2] = ACTIONS(6601), - [anon_sym_try] = ACTIONS(6594), - [anon_sym_noexcept] = ACTIONS(6594), - [anon_sym_throw] = ACTIONS(6594), - [anon_sym_requires] = ACTIONS(6594), + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [aux_sym_preproc_if_token2] = ACTIONS(7122), + [aux_sym_preproc_else_token1] = ACTIONS(7122), + [aux_sym_preproc_elif_token1] = ACTIONS(7117), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7122), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7122), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7122), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(7117), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_GT_GT] = ACTIONS(7122), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7122), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_RBRACK] = ACTIONS(7122), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_bitor] = ACTIONS(7117), + [anon_sym_xor] = ACTIONS(7117), + [anon_sym_bitand] = ACTIONS(7117), + [anon_sym_not_eq] = ACTIONS(7117), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7117), + [anon_sym_override] = ACTIONS(7117), + [anon_sym_requires] = ACTIONS(7117), }, [STATE(3736)] = { - [sym_type_qualifier] = STATE(3754), - [sym_alignas_qualifier] = STATE(4026), - [aux_sym__type_definition_type_repeat1] = STATE(3754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), - [anon_sym_COMMA] = ACTIONS(6901), - [anon_sym_LPAREN2] = ACTIONS(6901), - [anon_sym_DASH] = ACTIONS(6899), - [anon_sym_PLUS] = ACTIONS(6899), - [anon_sym_STAR] = ACTIONS(6901), - [anon_sym_SLASH] = ACTIONS(6899), - [anon_sym_PERCENT] = ACTIONS(6901), - [anon_sym_PIPE_PIPE] = ACTIONS(6901), - [anon_sym_AMP_AMP] = ACTIONS(6901), - [anon_sym_PIPE] = ACTIONS(6899), - [anon_sym_CARET] = ACTIONS(6901), - [anon_sym_AMP] = ACTIONS(6899), - [anon_sym_EQ_EQ] = ACTIONS(6901), - [anon_sym_BANG_EQ] = ACTIONS(6901), - [anon_sym_GT] = ACTIONS(6899), - [anon_sym_GT_EQ] = ACTIONS(6901), - [anon_sym_LT_EQ] = ACTIONS(6899), - [anon_sym_LT] = ACTIONS(6899), - [anon_sym_LT_LT] = ACTIONS(6901), - [anon_sym_GT_GT] = ACTIONS(6901), - [anon_sym___extension__] = ACTIONS(7882), - [anon_sym___attribute__] = ACTIONS(6901), - [anon_sym___attribute] = ACTIONS(6899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(6899), - [anon_sym_RBRACK] = ACTIONS(6901), - [anon_sym_const] = ACTIONS(7890), - [anon_sym_constexpr] = ACTIONS(7882), - [anon_sym_volatile] = ACTIONS(7882), - [anon_sym_restrict] = ACTIONS(7882), - [anon_sym___restrict__] = ACTIONS(7882), - [anon_sym__Atomic] = ACTIONS(7882), - [anon_sym__Noreturn] = ACTIONS(7882), - [anon_sym_noreturn] = ACTIONS(7882), - [anon_sym__Nonnull] = ACTIONS(7882), - [anon_sym_mutable] = ACTIONS(7882), - [anon_sym_constinit] = ACTIONS(7882), - [anon_sym_consteval] = ACTIONS(7882), - [anon_sym_alignas] = ACTIONS(7892), - [anon_sym__Alignas] = ACTIONS(7892), - [anon_sym_QMARK] = ACTIONS(6901), - [anon_sym_LT_EQ_GT] = ACTIONS(6901), - [anon_sym_or] = ACTIONS(6901), - [anon_sym_and] = ACTIONS(6901), - [anon_sym_bitor] = ACTIONS(6901), - [anon_sym_xor] = ACTIONS(6901), - [anon_sym_bitand] = ACTIONS(6901), - [anon_sym_not_eq] = ACTIONS(6901), - [anon_sym_DASH_DASH] = ACTIONS(6901), - [anon_sym_PLUS_PLUS] = ACTIONS(6901), - [anon_sym_asm] = ACTIONS(6901), - [anon_sym___asm__] = ACTIONS(6901), - [anon_sym___asm] = ACTIONS(6899), - [anon_sym_DOT] = ACTIONS(6899), - [anon_sym_DOT_STAR] = ACTIONS(6901), - [anon_sym_DASH_GT] = ACTIONS(6901), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6901), - [anon_sym_override] = ACTIONS(6901), - [anon_sym_noexcept] = ACTIONS(6901), - [anon_sym_throw] = ACTIONS(6901), - [anon_sym_requires] = ACTIONS(6901), + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_TILDE] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_SEMI] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym_virtual] = ACTIONS(7327), + [anon_sym_extern] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7329), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7329), + [anon_sym___declspec] = ACTIONS(7327), + [anon_sym___based] = ACTIONS(7327), + [anon_sym___cdecl] = ACTIONS(7327), + [anon_sym___clrcall] = ACTIONS(7327), + [anon_sym___stdcall] = ACTIONS(7327), + [anon_sym___fastcall] = ACTIONS(7327), + [anon_sym___thiscall] = ACTIONS(7327), + [anon_sym___vectorcall] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_static] = ACTIONS(7327), + [anon_sym_EQ] = ACTIONS(7329), + [anon_sym_register] = ACTIONS(7327), + [anon_sym_inline] = ACTIONS(7327), + [anon_sym___inline] = ACTIONS(7327), + [anon_sym___inline__] = ACTIONS(7327), + [anon_sym___forceinline] = ACTIONS(7327), + [anon_sym_thread_local] = ACTIONS(7327), + [anon_sym___thread] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_template] = ACTIONS(7327), + [anon_sym_GT2] = ACTIONS(7329), + [anon_sym_operator] = ACTIONS(7327), + [anon_sym_noexcept] = ACTIONS(7327), + [anon_sym_throw] = ACTIONS(7327), + [anon_sym_LBRACK_COLON] = ACTIONS(7329), }, [STATE(3737)] = { - [sym_type_qualifier] = STATE(3746), - [sym_alignas_qualifier] = STATE(3991), - [aux_sym__type_definition_type_repeat1] = STATE(3746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6901), - [anon_sym_COMMA] = ACTIONS(6901), - [anon_sym_LPAREN2] = ACTIONS(6901), - [anon_sym_DASH] = ACTIONS(6899), - [anon_sym_PLUS] = ACTIONS(6899), - [anon_sym_STAR] = ACTIONS(6901), - [anon_sym_SLASH] = ACTIONS(6899), - [anon_sym_PERCENT] = ACTIONS(6901), - [anon_sym_PIPE_PIPE] = ACTIONS(6901), - [anon_sym_AMP_AMP] = ACTIONS(6901), - [anon_sym_PIPE] = ACTIONS(6899), - [anon_sym_CARET] = ACTIONS(6901), - [anon_sym_AMP] = ACTIONS(6899), - [anon_sym_EQ_EQ] = ACTIONS(6901), - [anon_sym_BANG_EQ] = ACTIONS(6901), - [anon_sym_GT] = ACTIONS(6899), - [anon_sym_GT_EQ] = ACTIONS(6899), - [anon_sym_LT_EQ] = ACTIONS(6899), - [anon_sym_LT] = ACTIONS(6899), - [anon_sym_LT_LT] = ACTIONS(6901), - [anon_sym_GT_GT] = ACTIONS(6899), - [anon_sym___extension__] = ACTIONS(7814), - [anon_sym___attribute__] = ACTIONS(6901), - [anon_sym___attribute] = ACTIONS(6899), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6901), - [anon_sym_LBRACK] = ACTIONS(6899), - [anon_sym_const] = ACTIONS(7822), - [anon_sym_constexpr] = ACTIONS(7814), - [anon_sym_volatile] = ACTIONS(7814), - [anon_sym_restrict] = ACTIONS(7814), - [anon_sym___restrict__] = ACTIONS(7814), - [anon_sym__Atomic] = ACTIONS(7814), - [anon_sym__Noreturn] = ACTIONS(7814), - [anon_sym_noreturn] = ACTIONS(7814), - [anon_sym__Nonnull] = ACTIONS(7814), - [anon_sym_mutable] = ACTIONS(7814), - [anon_sym_constinit] = ACTIONS(7814), - [anon_sym_consteval] = ACTIONS(7814), - [anon_sym_alignas] = ACTIONS(7824), - [anon_sym__Alignas] = ACTIONS(7824), - [anon_sym_QMARK] = ACTIONS(6901), - [anon_sym_LT_EQ_GT] = ACTIONS(6901), - [anon_sym_or] = ACTIONS(6901), - [anon_sym_and] = ACTIONS(6901), - [anon_sym_bitor] = ACTIONS(6901), - [anon_sym_xor] = ACTIONS(6901), - [anon_sym_bitand] = ACTIONS(6901), - [anon_sym_not_eq] = ACTIONS(6901), - [anon_sym_DASH_DASH] = ACTIONS(6901), - [anon_sym_PLUS_PLUS] = ACTIONS(6901), - [anon_sym_asm] = ACTIONS(6901), - [anon_sym___asm__] = ACTIONS(6901), - [anon_sym___asm] = ACTIONS(6899), - [anon_sym_DOT] = ACTIONS(6899), - [anon_sym_DOT_STAR] = ACTIONS(6901), - [anon_sym_DASH_GT] = ACTIONS(6901), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6901), - [anon_sym_override] = ACTIONS(6901), - [anon_sym_GT2] = ACTIONS(6901), - [anon_sym_noexcept] = ACTIONS(6901), - [anon_sym_throw] = ACTIONS(6901), - [anon_sym_requires] = ACTIONS(6901), + [sym_string_literal] = STATE(3718), + [sym_raw_string_literal] = STATE(3718), + [aux_sym_concatenated_string_repeat1] = STATE(3718), + [sym_identifier] = ACTIONS(9551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8464), + [anon_sym_COMMA] = ACTIONS(8464), + [anon_sym_LPAREN2] = ACTIONS(8464), + [anon_sym_DASH] = ACTIONS(8466), + [anon_sym_PLUS] = ACTIONS(8466), + [anon_sym_STAR] = ACTIONS(8466), + [anon_sym_SLASH] = ACTIONS(8466), + [anon_sym_PERCENT] = ACTIONS(8466), + [anon_sym_PIPE_PIPE] = ACTIONS(8464), + [anon_sym_AMP_AMP] = ACTIONS(8464), + [anon_sym_PIPE] = ACTIONS(8466), + [anon_sym_CARET] = ACTIONS(8466), + [anon_sym_AMP] = ACTIONS(8466), + [anon_sym_EQ_EQ] = ACTIONS(8464), + [anon_sym_BANG_EQ] = ACTIONS(8464), + [anon_sym_GT] = ACTIONS(8466), + [anon_sym_GT_EQ] = ACTIONS(8466), + [anon_sym_LT_EQ] = ACTIONS(8466), + [anon_sym_LT] = ACTIONS(8466), + [anon_sym_LT_LT] = ACTIONS(8466), + [anon_sym_GT_GT] = ACTIONS(8466), + [anon_sym_LBRACK] = ACTIONS(8464), + [anon_sym_EQ] = ACTIONS(8466), + [anon_sym_QMARK] = ACTIONS(8464), + [anon_sym_STAR_EQ] = ACTIONS(8464), + [anon_sym_SLASH_EQ] = ACTIONS(8464), + [anon_sym_PERCENT_EQ] = ACTIONS(8464), + [anon_sym_PLUS_EQ] = ACTIONS(8464), + [anon_sym_DASH_EQ] = ACTIONS(8464), + [anon_sym_LT_LT_EQ] = ACTIONS(8464), + [anon_sym_GT_GT_EQ] = ACTIONS(8466), + [anon_sym_AMP_EQ] = ACTIONS(8464), + [anon_sym_CARET_EQ] = ACTIONS(8464), + [anon_sym_PIPE_EQ] = ACTIONS(8464), + [anon_sym_and_eq] = ACTIONS(8466), + [anon_sym_or_eq] = ACTIONS(8466), + [anon_sym_xor_eq] = ACTIONS(8466), + [anon_sym_LT_EQ_GT] = ACTIONS(8464), + [anon_sym_or] = ACTIONS(8466), + [anon_sym_and] = ACTIONS(8466), + [anon_sym_bitor] = ACTIONS(8466), + [anon_sym_xor] = ACTIONS(8466), + [anon_sym_bitand] = ACTIONS(8466), + [anon_sym_not_eq] = ACTIONS(8466), + [anon_sym_DASH_DASH] = ACTIONS(8464), + [anon_sym_PLUS_PLUS] = ACTIONS(8464), + [anon_sym_DOT] = ACTIONS(8466), + [anon_sym_DOT_STAR] = ACTIONS(8464), + [anon_sym_DASH_GT] = ACTIONS(8464), + [anon_sym_L_DQUOTE] = ACTIONS(7017), + [anon_sym_u_DQUOTE] = ACTIONS(7017), + [anon_sym_U_DQUOTE] = ACTIONS(7017), + [anon_sym_u8_DQUOTE] = ACTIONS(7017), + [anon_sym_DQUOTE] = ACTIONS(7017), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8464), + [anon_sym_R_DQUOTE] = ACTIONS(7023), + [anon_sym_LR_DQUOTE] = ACTIONS(7023), + [anon_sym_uR_DQUOTE] = ACTIONS(7023), + [anon_sym_UR_DQUOTE] = ACTIONS(7023), + [anon_sym_u8R_DQUOTE] = ACTIONS(7023), + [sym_literal_suffix] = ACTIONS(8466), }, [STATE(3738)] = { - [sym_string_literal] = STATE(3730), - [sym_template_argument_list] = STATE(5351), - [sym_raw_string_literal] = STATE(3730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9453), - [anon_sym_COMMA] = ACTIONS(9544), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(9546), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_RBRACK] = ACTIONS(9549), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(7069), - [anon_sym_u_DQUOTE] = ACTIONS(7069), - [anon_sym_U_DQUOTE] = ACTIONS(7069), - [anon_sym_u8_DQUOTE] = ACTIONS(7069), - [anon_sym_DQUOTE] = ACTIONS(7069), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(7075), - [anon_sym_LR_DQUOTE] = ACTIONS(7075), - [anon_sym_uR_DQUOTE] = ACTIONS(7075), - [anon_sym_UR_DQUOTE] = ACTIONS(7075), - [anon_sym_u8R_DQUOTE] = ACTIONS(7075), + [sym_string_literal] = STATE(3756), + [sym_template_argument_list] = STATE(5307), + [sym_raw_string_literal] = STATE(3756), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(9494), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_RBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5611), + [anon_sym_or_eq] = ACTIONS(5611), + [anon_sym_xor_eq] = ACTIONS(5611), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(7052), + [anon_sym_u_DQUOTE] = ACTIONS(7052), + [anon_sym_U_DQUOTE] = ACTIONS(7052), + [anon_sym_u8_DQUOTE] = ACTIONS(7052), + [anon_sym_DQUOTE] = ACTIONS(7052), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7058), + [anon_sym_LR_DQUOTE] = ACTIONS(7058), + [anon_sym_uR_DQUOTE] = ACTIONS(7058), + [anon_sym_UR_DQUOTE] = ACTIONS(7058), + [anon_sym_u8R_DQUOTE] = ACTIONS(7058), }, [STATE(3739)] = { - [sym_identifier] = ACTIONS(7301), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7303), - [anon_sym_COMMA] = ACTIONS(7303), - [anon_sym_RPAREN] = ACTIONS(7303), - [anon_sym_LPAREN2] = ACTIONS(7303), - [anon_sym_TILDE] = ACTIONS(7303), - [anon_sym_STAR] = ACTIONS(7303), - [anon_sym_PIPE_PIPE] = ACTIONS(7303), - [anon_sym_AMP_AMP] = ACTIONS(7303), - [anon_sym_AMP] = ACTIONS(7301), - [anon_sym_SEMI] = ACTIONS(7303), - [anon_sym___extension__] = ACTIONS(7301), - [anon_sym_virtual] = ACTIONS(7301), - [anon_sym_extern] = ACTIONS(7301), - [anon_sym___attribute__] = ACTIONS(7301), - [anon_sym___attribute] = ACTIONS(7301), - [anon_sym_COLON] = ACTIONS(7301), - [anon_sym_COLON_COLON] = ACTIONS(7303), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7303), - [anon_sym___declspec] = ACTIONS(7301), - [anon_sym___based] = ACTIONS(7301), - [anon_sym___cdecl] = ACTIONS(7301), - [anon_sym___clrcall] = ACTIONS(7301), - [anon_sym___stdcall] = ACTIONS(7301), - [anon_sym___fastcall] = ACTIONS(7301), - [anon_sym___thiscall] = ACTIONS(7301), - [anon_sym___vectorcall] = ACTIONS(7301), - [anon_sym_LBRACE] = ACTIONS(7303), - [anon_sym_LBRACK] = ACTIONS(7301), - [anon_sym_static] = ACTIONS(7301), - [anon_sym_EQ] = ACTIONS(7303), - [anon_sym_register] = ACTIONS(7301), - [anon_sym_inline] = ACTIONS(7301), - [anon_sym___inline] = ACTIONS(7301), - [anon_sym___inline__] = ACTIONS(7301), - [anon_sym___forceinline] = ACTIONS(7301), - [anon_sym_thread_local] = ACTIONS(7301), - [anon_sym___thread] = ACTIONS(7301), - [anon_sym_const] = ACTIONS(7301), - [anon_sym_constexpr] = ACTIONS(7301), - [anon_sym_volatile] = ACTIONS(7301), - [anon_sym_restrict] = ACTIONS(7301), - [anon_sym___restrict__] = ACTIONS(7301), - [anon_sym__Atomic] = ACTIONS(7301), - [anon_sym__Noreturn] = ACTIONS(7301), - [anon_sym_noreturn] = ACTIONS(7301), - [anon_sym__Nonnull] = ACTIONS(7301), - [anon_sym_mutable] = ACTIONS(7301), - [anon_sym_constinit] = ACTIONS(7301), - [anon_sym_consteval] = ACTIONS(7301), - [anon_sym_alignas] = ACTIONS(7301), - [anon_sym__Alignas] = ACTIONS(7301), - [anon_sym_or] = ACTIONS(7301), - [anon_sym_and] = ACTIONS(7301), - [anon_sym_DASH_GT] = ACTIONS(7303), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7301), - [anon_sym_decltype] = ACTIONS(7301), - [anon_sym_final] = ACTIONS(7301), - [anon_sym_override] = ACTIONS(7301), - [anon_sym_template] = ACTIONS(7301), - [anon_sym_GT2] = ACTIONS(7303), - [anon_sym_operator] = ACTIONS(7301), - [anon_sym_noexcept] = ACTIONS(7301), - [anon_sym_throw] = ACTIONS(7301), - [anon_sym_LBRACK_COLON] = ACTIONS(7303), + [sym_identifier] = ACTIONS(7499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7479), + [anon_sym_COMMA] = ACTIONS(7479), + [aux_sym_preproc_if_token2] = ACTIONS(7479), + [aux_sym_preproc_else_token1] = ACTIONS(7479), + [aux_sym_preproc_elif_token1] = ACTIONS(7499), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7479), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7479), + [anon_sym_LPAREN2] = ACTIONS(7479), + [anon_sym_DASH] = ACTIONS(7499), + [anon_sym_PLUS] = ACTIONS(7499), + [anon_sym_STAR] = ACTIONS(7479), + [anon_sym_SLASH] = ACTIONS(7499), + [anon_sym_PERCENT] = ACTIONS(7479), + [anon_sym_PIPE_PIPE] = ACTIONS(7479), + [anon_sym_AMP_AMP] = ACTIONS(7479), + [anon_sym_PIPE] = ACTIONS(7499), + [anon_sym_CARET] = ACTIONS(7479), + [anon_sym_AMP] = ACTIONS(7499), + [anon_sym_EQ_EQ] = ACTIONS(7479), + [anon_sym_BANG_EQ] = ACTIONS(7479), + [anon_sym_GT] = ACTIONS(7499), + [anon_sym_GT_EQ] = ACTIONS(7479), + [anon_sym_LT_EQ] = ACTIONS(7499), + [anon_sym_LT] = ACTIONS(7499), + [anon_sym_LT_LT] = ACTIONS(7479), + [anon_sym_GT_GT] = ACTIONS(7479), + [anon_sym___extension__] = ACTIONS(7499), + [anon_sym___attribute__] = ACTIONS(7499), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_COLON] = ACTIONS(7499), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7479), + [anon_sym_RBRACK] = ACTIONS(7479), + [anon_sym_const] = ACTIONS(7499), + [anon_sym_constexpr] = ACTIONS(7499), + [anon_sym_volatile] = ACTIONS(7499), + [anon_sym_restrict] = ACTIONS(7499), + [anon_sym___restrict__] = ACTIONS(7499), + [anon_sym__Atomic] = ACTIONS(7499), + [anon_sym__Noreturn] = ACTIONS(7499), + [anon_sym_noreturn] = ACTIONS(7499), + [anon_sym__Nonnull] = ACTIONS(7499), + [anon_sym_mutable] = ACTIONS(7499), + [anon_sym_constinit] = ACTIONS(7499), + [anon_sym_consteval] = ACTIONS(7499), + [anon_sym_alignas] = ACTIONS(7499), + [anon_sym__Alignas] = ACTIONS(7499), + [anon_sym_QMARK] = ACTIONS(7479), + [anon_sym_LT_EQ_GT] = ACTIONS(7479), + [anon_sym_or] = ACTIONS(7499), + [anon_sym_and] = ACTIONS(7499), + [anon_sym_bitor] = ACTIONS(7499), + [anon_sym_xor] = ACTIONS(7499), + [anon_sym_bitand] = ACTIONS(7499), + [anon_sym_not_eq] = ACTIONS(7499), + [anon_sym_DASH_DASH] = ACTIONS(7479), + [anon_sym_PLUS_PLUS] = ACTIONS(7479), + [anon_sym_DOT] = ACTIONS(7499), + [anon_sym_DOT_STAR] = ACTIONS(7479), + [anon_sym_DASH_GT] = ACTIONS(7479), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7499), + [anon_sym_override] = ACTIONS(7499), + [anon_sym_requires] = ACTIONS(7499), }, [STATE(3740)] = { - [sym_identifier] = ACTIONS(6603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6596), - [anon_sym_COMMA] = ACTIONS(6596), - [anon_sym_RPAREN] = ACTIONS(6596), - [aux_sym_preproc_if_token2] = ACTIONS(6596), - [aux_sym_preproc_else_token1] = ACTIONS(6596), - [aux_sym_preproc_elif_token1] = ACTIONS(6603), - [aux_sym_preproc_elifdef_token1] = ACTIONS(6596), - [aux_sym_preproc_elifdef_token2] = ACTIONS(6596), - [anon_sym_LPAREN2] = ACTIONS(6596), - [anon_sym_DASH] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6603), - [anon_sym_SLASH] = ACTIONS(6603), - [anon_sym_PERCENT] = ACTIONS(6603), - [anon_sym_PIPE_PIPE] = ACTIONS(6596), - [anon_sym_AMP_AMP] = ACTIONS(6596), - [anon_sym_PIPE] = ACTIONS(6603), - [anon_sym_CARET] = ACTIONS(6603), - [anon_sym_AMP] = ACTIONS(6603), - [anon_sym_EQ_EQ] = ACTIONS(6596), - [anon_sym_BANG_EQ] = ACTIONS(6596), - [anon_sym_GT] = ACTIONS(6603), - [anon_sym_GT_EQ] = ACTIONS(6596), - [anon_sym_LT_EQ] = ACTIONS(6603), - [anon_sym_LT] = ACTIONS(6603), - [anon_sym_LT_LT] = ACTIONS(6603), - [anon_sym_GT_GT] = ACTIONS(6603), - [anon_sym_SEMI] = ACTIONS(6596), - [anon_sym___attribute__] = ACTIONS(6603), - [anon_sym___attribute] = ACTIONS(6603), - [anon_sym_COLON] = ACTIONS(6603), - [anon_sym_COLON_COLON] = ACTIONS(6601), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6596), - [anon_sym_LBRACE] = ACTIONS(6601), - [anon_sym_RBRACE] = ACTIONS(6596), - [anon_sym_LBRACK] = ACTIONS(6596), - [anon_sym_EQ] = ACTIONS(6603), - [anon_sym_QMARK] = ACTIONS(6596), - [anon_sym_STAR_EQ] = ACTIONS(6596), - [anon_sym_SLASH_EQ] = ACTIONS(6596), - [anon_sym_PERCENT_EQ] = ACTIONS(6596), - [anon_sym_PLUS_EQ] = ACTIONS(6596), - [anon_sym_DASH_EQ] = ACTIONS(6596), - [anon_sym_LT_LT_EQ] = ACTIONS(6596), - [anon_sym_GT_GT_EQ] = ACTIONS(6596), - [anon_sym_AMP_EQ] = ACTIONS(6596), - [anon_sym_CARET_EQ] = ACTIONS(6596), - [anon_sym_PIPE_EQ] = ACTIONS(6596), - [anon_sym_and_eq] = ACTIONS(6603), - [anon_sym_or_eq] = ACTIONS(6603), - [anon_sym_xor_eq] = ACTIONS(6603), - [anon_sym_LT_EQ_GT] = ACTIONS(6596), - [anon_sym_or] = ACTIONS(6603), - [anon_sym_and] = ACTIONS(6603), - [anon_sym_bitor] = ACTIONS(6603), - [anon_sym_xor] = ACTIONS(6603), - [anon_sym_bitand] = ACTIONS(6603), - [anon_sym_not_eq] = ACTIONS(6603), - [anon_sym_DASH_DASH] = ACTIONS(6596), - [anon_sym_PLUS_PLUS] = ACTIONS(6596), - [anon_sym_DOT] = ACTIONS(6603), - [anon_sym_DOT_STAR] = ACTIONS(6596), - [anon_sym_DASH_GT] = ACTIONS(6596), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(6596), + [sym_identifier] = ACTIONS(7133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7135), + [anon_sym_COMMA] = ACTIONS(7135), + [aux_sym_preproc_if_token2] = ACTIONS(7135), + [aux_sym_preproc_else_token1] = ACTIONS(7135), + [aux_sym_preproc_elif_token1] = ACTIONS(7133), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7135), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7135), + [anon_sym_LPAREN2] = ACTIONS(7135), + [anon_sym_DASH] = ACTIONS(7133), + [anon_sym_PLUS] = ACTIONS(7133), + [anon_sym_STAR] = ACTIONS(7135), + [anon_sym_SLASH] = ACTIONS(7133), + [anon_sym_PERCENT] = ACTIONS(7135), + [anon_sym_PIPE_PIPE] = ACTIONS(7135), + [anon_sym_AMP_AMP] = ACTIONS(7135), + [anon_sym_PIPE] = ACTIONS(7133), + [anon_sym_CARET] = ACTIONS(7135), + [anon_sym_AMP] = ACTIONS(7133), + [anon_sym_EQ_EQ] = ACTIONS(7135), + [anon_sym_BANG_EQ] = ACTIONS(7135), + [anon_sym_GT] = ACTIONS(7133), + [anon_sym_GT_EQ] = ACTIONS(7135), + [anon_sym_LT_EQ] = ACTIONS(7133), + [anon_sym_LT] = ACTIONS(7133), + [anon_sym_LT_LT] = ACTIONS(7135), + [anon_sym_GT_GT] = ACTIONS(7135), + [anon_sym___extension__] = ACTIONS(7133), + [anon_sym___attribute__] = ACTIONS(7133), + [anon_sym___attribute] = ACTIONS(7133), + [anon_sym_COLON] = ACTIONS(7133), + [anon_sym_COLON_COLON] = ACTIONS(7135), + [anon_sym_LBRACE] = ACTIONS(7135), + [anon_sym_LBRACK] = ACTIONS(7135), + [anon_sym_RBRACK] = ACTIONS(7135), + [anon_sym_const] = ACTIONS(7133), + [anon_sym_constexpr] = ACTIONS(7133), + [anon_sym_volatile] = ACTIONS(7133), + [anon_sym_restrict] = ACTIONS(7133), + [anon_sym___restrict__] = ACTIONS(7133), + [anon_sym__Atomic] = ACTIONS(7133), + [anon_sym__Noreturn] = ACTIONS(7133), + [anon_sym_noreturn] = ACTIONS(7133), + [anon_sym__Nonnull] = ACTIONS(7133), + [anon_sym_mutable] = ACTIONS(7133), + [anon_sym_constinit] = ACTIONS(7133), + [anon_sym_consteval] = ACTIONS(7133), + [anon_sym_alignas] = ACTIONS(7133), + [anon_sym__Alignas] = ACTIONS(7133), + [anon_sym_QMARK] = ACTIONS(7135), + [anon_sym_LT_EQ_GT] = ACTIONS(7135), + [anon_sym_or] = ACTIONS(7133), + [anon_sym_and] = ACTIONS(7133), + [anon_sym_bitor] = ACTIONS(7133), + [anon_sym_xor] = ACTIONS(7133), + [anon_sym_bitand] = ACTIONS(7133), + [anon_sym_not_eq] = ACTIONS(7133), + [anon_sym_DASH_DASH] = ACTIONS(7135), + [anon_sym_PLUS_PLUS] = ACTIONS(7135), + [anon_sym_DOT] = ACTIONS(7133), + [anon_sym_DOT_STAR] = ACTIONS(7135), + [anon_sym_DASH_GT] = ACTIONS(7135), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7133), + [anon_sym_override] = ACTIONS(7133), + [anon_sym_requires] = ACTIONS(7133), }, [STATE(3741)] = { - [sym_string_literal] = STATE(3589), - [sym_raw_string_literal] = STATE(3589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9118), - [anon_sym_COMMA] = ACTIONS(9118), - [anon_sym_LPAREN2] = ACTIONS(9118), - [anon_sym_DASH] = ACTIONS(9116), - [anon_sym_PLUS] = ACTIONS(9116), - [anon_sym_STAR] = ACTIONS(9116), - [anon_sym_SLASH] = ACTIONS(9116), - [anon_sym_PERCENT] = ACTIONS(9116), - [anon_sym_PIPE_PIPE] = ACTIONS(9118), - [anon_sym_AMP_AMP] = ACTIONS(9118), - [anon_sym_PIPE] = ACTIONS(9116), - [anon_sym_CARET] = ACTIONS(9116), - [anon_sym_AMP] = ACTIONS(9116), - [anon_sym_EQ_EQ] = ACTIONS(9118), - [anon_sym_BANG_EQ] = ACTIONS(9118), - [anon_sym_GT] = ACTIONS(9116), - [anon_sym_GT_EQ] = ACTIONS(9118), - [anon_sym_LT_EQ] = ACTIONS(9116), - [anon_sym_LT] = ACTIONS(9116), - [anon_sym_LT_LT] = ACTIONS(9116), - [anon_sym_GT_GT] = ACTIONS(9116), - [anon_sym_SEMI] = ACTIONS(9118), - [anon_sym___attribute__] = ACTIONS(9116), - [anon_sym___attribute] = ACTIONS(9116), - [anon_sym_LBRACK] = ACTIONS(9118), - [anon_sym_EQ] = ACTIONS(9116), - [anon_sym_QMARK] = ACTIONS(9118), - [anon_sym_STAR_EQ] = ACTIONS(9118), - [anon_sym_SLASH_EQ] = ACTIONS(9118), - [anon_sym_PERCENT_EQ] = ACTIONS(9118), - [anon_sym_PLUS_EQ] = ACTIONS(9118), - [anon_sym_DASH_EQ] = ACTIONS(9118), - [anon_sym_LT_LT_EQ] = ACTIONS(9118), - [anon_sym_GT_GT_EQ] = ACTIONS(9118), - [anon_sym_AMP_EQ] = ACTIONS(9118), - [anon_sym_CARET_EQ] = ACTIONS(9118), - [anon_sym_PIPE_EQ] = ACTIONS(9118), - [anon_sym_and_eq] = ACTIONS(9116), - [anon_sym_or_eq] = ACTIONS(9116), - [anon_sym_xor_eq] = ACTIONS(9116), - [anon_sym_LT_EQ_GT] = ACTIONS(9118), - [anon_sym_or] = ACTIONS(9116), - [anon_sym_and] = ACTIONS(9116), - [anon_sym_bitor] = ACTIONS(9116), - [anon_sym_xor] = ACTIONS(9116), - [anon_sym_bitand] = ACTIONS(9116), - [anon_sym_not_eq] = ACTIONS(9116), - [anon_sym_DASH_DASH] = ACTIONS(9118), - [anon_sym_PLUS_PLUS] = ACTIONS(9118), - [anon_sym_DOT] = ACTIONS(9116), - [anon_sym_DOT_STAR] = ACTIONS(9118), - [anon_sym_DASH_GT] = ACTIONS(9118), - [anon_sym_L_DQUOTE] = ACTIONS(6876), - [anon_sym_u_DQUOTE] = ACTIONS(6876), - [anon_sym_U_DQUOTE] = ACTIONS(6876), - [anon_sym_u8_DQUOTE] = ACTIONS(6876), - [anon_sym_DQUOTE] = ACTIONS(6876), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6878), - [anon_sym_LR_DQUOTE] = ACTIONS(6878), - [anon_sym_uR_DQUOTE] = ACTIONS(6878), - [anon_sym_UR_DQUOTE] = ACTIONS(6878), - [anon_sym_u8R_DQUOTE] = ACTIONS(6878), - [sym_literal_suffix] = ACTIONS(9116), + [sym__abstract_declarator] = STATE(6477), + [sym_abstract_parenthesized_declarator] = STATE(6694), + [sym_abstract_pointer_declarator] = STATE(6694), + [sym_abstract_function_declarator] = STATE(6694), + [sym_abstract_array_declarator] = STATE(6694), + [sym_type_qualifier] = STATE(3745), + [sym_alignas_qualifier] = STATE(3830), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(6694), + [sym__function_declarator_seq] = STATE(6695), + [aux_sym__type_definition_type_repeat1] = STATE(3745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(8568), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(8570), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7367), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(8572), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7367), + [anon_sym_AMP] = ACTIONS(8574), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7365), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7367), + [anon_sym_GT_GT] = ACTIONS(7365), + [anon_sym___extension__] = ACTIONS(8576), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8576), + [anon_sym_volatile] = ACTIONS(8576), + [anon_sym_restrict] = ACTIONS(8576), + [anon_sym___restrict__] = ACTIONS(8576), + [anon_sym__Atomic] = ACTIONS(8576), + [anon_sym__Noreturn] = ACTIONS(8576), + [anon_sym_noreturn] = ACTIONS(8576), + [anon_sym__Nonnull] = ACTIONS(8576), + [anon_sym_mutable] = ACTIONS(8576), + [anon_sym_constinit] = ACTIONS(8576), + [anon_sym_consteval] = ACTIONS(8576), + [anon_sym_alignas] = ACTIONS(8588), + [anon_sym__Alignas] = ACTIONS(8588), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7367), + [anon_sym_and] = ACTIONS(7367), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7367), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7367), + [anon_sym_override] = ACTIONS(7367), + [anon_sym_GT2] = ACTIONS(7367), + [anon_sym_requires] = ACTIONS(7367), }, [STATE(3742)] = { - [sym_decltype_auto] = STATE(4458), - [sym_template_argument_list] = STATE(4054), - [aux_sym_sized_type_specifier_repeat1] = STATE(4015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5643), - [anon_sym_COMMA] = ACTIONS(5643), - [anon_sym_LPAREN2] = ACTIONS(5643), - [anon_sym_DASH] = ACTIONS(5636), - [anon_sym_PLUS] = ACTIONS(5636), - [anon_sym_STAR] = ACTIONS(5643), - [anon_sym_SLASH] = ACTIONS(5636), - [anon_sym_PERCENT] = ACTIONS(5643), - [anon_sym_PIPE_PIPE] = ACTIONS(5643), - [anon_sym_AMP_AMP] = ACTIONS(5643), - [anon_sym_PIPE] = ACTIONS(5636), - [anon_sym_CARET] = ACTIONS(5643), - [anon_sym_AMP] = ACTIONS(5636), - [anon_sym_EQ_EQ] = ACTIONS(5643), - [anon_sym_BANG_EQ] = ACTIONS(5643), - [anon_sym_GT] = ACTIONS(5636), - [anon_sym_GT_EQ] = ACTIONS(5636), - [anon_sym_LT_EQ] = ACTIONS(5636), - [anon_sym_LT] = ACTIONS(9552), - [anon_sym_LT_LT] = ACTIONS(5643), - [anon_sym_GT_GT] = ACTIONS(5636), - [anon_sym___extension__] = ACTIONS(5643), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5643), - [anon_sym_signed] = ACTIONS(6981), - [anon_sym_unsigned] = ACTIONS(6981), - [anon_sym_long] = ACTIONS(6981), - [anon_sym_short] = ACTIONS(6981), - [anon_sym_LBRACK] = ACTIONS(5643), - [anon_sym_const] = ACTIONS(5636), - [anon_sym_constexpr] = ACTIONS(5643), - [anon_sym_volatile] = ACTIONS(5643), - [anon_sym_restrict] = ACTIONS(5643), - [anon_sym___restrict__] = ACTIONS(5643), - [anon_sym__Atomic] = ACTIONS(5643), - [anon_sym__Noreturn] = ACTIONS(5643), - [anon_sym_noreturn] = ACTIONS(5643), - [anon_sym__Nonnull] = ACTIONS(5643), - [anon_sym_mutable] = ACTIONS(5643), - [anon_sym_constinit] = ACTIONS(5643), - [anon_sym_consteval] = ACTIONS(5643), - [anon_sym_alignas] = ACTIONS(5643), - [anon_sym__Alignas] = ACTIONS(5643), - [anon_sym_QMARK] = ACTIONS(5643), - [anon_sym_LT_EQ_GT] = ACTIONS(5643), - [anon_sym_or] = ACTIONS(5643), - [anon_sym_and] = ACTIONS(5643), - [anon_sym_bitor] = ACTIONS(5643), - [anon_sym_xor] = ACTIONS(5643), - [anon_sym_bitand] = ACTIONS(5643), - [anon_sym_not_eq] = ACTIONS(5643), - [anon_sym_DASH_DASH] = ACTIONS(5643), - [anon_sym_PLUS_PLUS] = ACTIONS(5643), - [anon_sym_DOT] = ACTIONS(5636), - [anon_sym_DOT_STAR] = ACTIONS(5643), - [anon_sym_DASH_GT] = ACTIONS(5643), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(6989), - [anon_sym_decltype] = ACTIONS(6991), - [anon_sym_final] = ACTIONS(5643), - [anon_sym_override] = ACTIONS(5643), - [anon_sym_GT2] = ACTIONS(5643), - [anon_sym_requires] = ACTIONS(5643), + [sym_identifier] = ACTIONS(7327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7329), + [anon_sym_COMMA] = ACTIONS(7329), + [anon_sym_RPAREN] = ACTIONS(7329), + [anon_sym_LPAREN2] = ACTIONS(7329), + [anon_sym_TILDE] = ACTIONS(7329), + [anon_sym_STAR] = ACTIONS(7329), + [anon_sym_PIPE_PIPE] = ACTIONS(7329), + [anon_sym_AMP_AMP] = ACTIONS(7329), + [anon_sym_AMP] = ACTIONS(7327), + [anon_sym_SEMI] = ACTIONS(7329), + [anon_sym___extension__] = ACTIONS(7327), + [anon_sym_virtual] = ACTIONS(7327), + [anon_sym_extern] = ACTIONS(7327), + [anon_sym___attribute__] = ACTIONS(7327), + [anon_sym___attribute] = ACTIONS(7327), + [anon_sym_COLON] = ACTIONS(7327), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7329), + [anon_sym___declspec] = ACTIONS(7327), + [anon_sym___based] = ACTIONS(7327), + [anon_sym___cdecl] = ACTIONS(7327), + [anon_sym___clrcall] = ACTIONS(7327), + [anon_sym___stdcall] = ACTIONS(7327), + [anon_sym___fastcall] = ACTIONS(7327), + [anon_sym___thiscall] = ACTIONS(7327), + [anon_sym___vectorcall] = ACTIONS(7327), + [anon_sym_LBRACE] = ACTIONS(7329), + [anon_sym_LBRACK] = ACTIONS(7327), + [anon_sym_static] = ACTIONS(7327), + [anon_sym_EQ] = ACTIONS(7329), + [anon_sym_register] = ACTIONS(7327), + [anon_sym_inline] = ACTIONS(7327), + [anon_sym___inline] = ACTIONS(7327), + [anon_sym___inline__] = ACTIONS(7327), + [anon_sym___forceinline] = ACTIONS(7327), + [anon_sym_thread_local] = ACTIONS(7327), + [anon_sym___thread] = ACTIONS(7327), + [anon_sym_const] = ACTIONS(7327), + [anon_sym_constexpr] = ACTIONS(7327), + [anon_sym_volatile] = ACTIONS(7327), + [anon_sym_restrict] = ACTIONS(7327), + [anon_sym___restrict__] = ACTIONS(7327), + [anon_sym__Atomic] = ACTIONS(7327), + [anon_sym__Noreturn] = ACTIONS(7327), + [anon_sym_noreturn] = ACTIONS(7327), + [anon_sym__Nonnull] = ACTIONS(7327), + [anon_sym_mutable] = ACTIONS(7327), + [anon_sym_constinit] = ACTIONS(7327), + [anon_sym_consteval] = ACTIONS(7327), + [anon_sym_alignas] = ACTIONS(7327), + [anon_sym__Alignas] = ACTIONS(7327), + [anon_sym_or] = ACTIONS(7327), + [anon_sym_and] = ACTIONS(7327), + [anon_sym_DASH_GT] = ACTIONS(7329), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(7327), + [anon_sym_decltype] = ACTIONS(7327), + [anon_sym_final] = ACTIONS(7327), + [anon_sym_override] = ACTIONS(7327), + [anon_sym_template] = ACTIONS(7327), + [anon_sym_GT2] = ACTIONS(7329), + [anon_sym_operator] = ACTIONS(7327), + [anon_sym_noexcept] = ACTIONS(7327), + [anon_sym_throw] = ACTIONS(7327), + [anon_sym_LBRACK_COLON] = ACTIONS(7329), }, [STATE(3743)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_TILDE] = ACTIONS(7293), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_SEMI] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym_virtual] = ACTIONS(7291), - [anon_sym_extern] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), - [anon_sym___declspec] = ACTIONS(7291), - [anon_sym___based] = ACTIONS(7291), - [anon_sym___cdecl] = ACTIONS(7291), - [anon_sym___clrcall] = ACTIONS(7291), - [anon_sym___stdcall] = ACTIONS(7291), - [anon_sym___fastcall] = ACTIONS(7291), - [anon_sym___thiscall] = ACTIONS(7291), - [anon_sym___vectorcall] = ACTIONS(7291), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7291), - [anon_sym_static] = ACTIONS(7291), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_register] = ACTIONS(7291), - [anon_sym_inline] = ACTIONS(7291), - [anon_sym___inline] = ACTIONS(7291), - [anon_sym___inline__] = ACTIONS(7291), - [anon_sym___forceinline] = ACTIONS(7291), - [anon_sym_thread_local] = ACTIONS(7291), - [anon_sym___thread] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_template] = ACTIONS(7291), - [anon_sym_GT2] = ACTIONS(7293), - [anon_sym_operator] = ACTIONS(7291), - [anon_sym_noexcept] = ACTIONS(7291), - [anon_sym_throw] = ACTIONS(7291), - [anon_sym_LBRACK_COLON] = ACTIONS(7293), + [sym__abstract_declarator] = STATE(6449), + [sym_abstract_parenthesized_declarator] = STATE(6601), + [sym_abstract_pointer_declarator] = STATE(6601), + [sym_abstract_function_declarator] = STATE(6601), + [sym_abstract_array_declarator] = STATE(6601), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2276), + [sym_abstract_reference_declarator] = STATE(6601), + [sym__function_declarator_seq] = STATE(6602), + [aux_sym__type_definition_type_repeat1] = STATE(3888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(8599), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(8601), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(8605), + [anon_sym_LBRACK] = ACTIONS(8613), + [anon_sym_RBRACK] = ACTIONS(7371), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8605), + [anon_sym_volatile] = ACTIONS(8605), + [anon_sym_restrict] = ACTIONS(8605), + [anon_sym___restrict__] = ACTIONS(8605), + [anon_sym__Atomic] = ACTIONS(8605), + [anon_sym__Noreturn] = ACTIONS(8605), + [anon_sym_noreturn] = ACTIONS(8605), + [anon_sym__Nonnull] = ACTIONS(8605), + [anon_sym_mutable] = ACTIONS(8605), + [anon_sym_constinit] = ACTIONS(8605), + [anon_sym_consteval] = ACTIONS(8605), + [anon_sym_alignas] = ACTIONS(8615), + [anon_sym__Alignas] = ACTIONS(8615), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7371), + [anon_sym_override] = ACTIONS(7371), + [anon_sym_requires] = ACTIONS(7371), }, [STATE(3744)] = { - [sym_template_argument_list] = STATE(2053), - [sym_identifier] = ACTIONS(7092), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7097), - [anon_sym_COMMA] = ACTIONS(7097), - [anon_sym_RPAREN] = ACTIONS(7097), - [aux_sym_preproc_if_token2] = ACTIONS(7097), - [aux_sym_preproc_else_token1] = ACTIONS(7097), - [aux_sym_preproc_elif_token1] = ACTIONS(7092), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7097), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7097), - [anon_sym_LPAREN2] = ACTIONS(7097), - [anon_sym_DASH] = ACTIONS(7092), - [anon_sym_PLUS] = ACTIONS(7092), - [anon_sym_STAR] = ACTIONS(7092), - [anon_sym_SLASH] = ACTIONS(7092), - [anon_sym_PERCENT] = ACTIONS(7092), - [anon_sym_PIPE_PIPE] = ACTIONS(7097), - [anon_sym_AMP_AMP] = ACTIONS(7097), - [anon_sym_PIPE] = ACTIONS(7092), - [anon_sym_CARET] = ACTIONS(7092), - [anon_sym_AMP] = ACTIONS(7092), - [anon_sym_EQ_EQ] = ACTIONS(7097), - [anon_sym_BANG_EQ] = ACTIONS(7097), - [anon_sym_GT] = ACTIONS(7092), - [anon_sym_GT_EQ] = ACTIONS(7097), - [anon_sym_LT_EQ] = ACTIONS(7092), - [anon_sym_LT] = ACTIONS(7445), - [anon_sym_LT_LT] = ACTIONS(7092), - [anon_sym_GT_GT] = ACTIONS(7092), - [anon_sym_SEMI] = ACTIONS(7097), - [anon_sym___attribute__] = ACTIONS(7092), - [anon_sym___attribute] = ACTIONS(7092), - [anon_sym_COLON] = ACTIONS(7092), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7097), - [anon_sym_RBRACE] = ACTIONS(7097), - [anon_sym_LBRACK] = ACTIONS(7097), - [anon_sym_EQ] = ACTIONS(7092), - [anon_sym_QMARK] = ACTIONS(7097), - [anon_sym_STAR_EQ] = ACTIONS(7097), - [anon_sym_SLASH_EQ] = ACTIONS(7097), - [anon_sym_PERCENT_EQ] = ACTIONS(7097), - [anon_sym_PLUS_EQ] = ACTIONS(7097), - [anon_sym_DASH_EQ] = ACTIONS(7097), - [anon_sym_LT_LT_EQ] = ACTIONS(7097), - [anon_sym_GT_GT_EQ] = ACTIONS(7097), - [anon_sym_AMP_EQ] = ACTIONS(7097), - [anon_sym_CARET_EQ] = ACTIONS(7097), - [anon_sym_PIPE_EQ] = ACTIONS(7097), - [anon_sym_and_eq] = ACTIONS(7092), - [anon_sym_or_eq] = ACTIONS(7092), - [anon_sym_xor_eq] = ACTIONS(7092), - [anon_sym_LT_EQ_GT] = ACTIONS(7097), - [anon_sym_or] = ACTIONS(7092), - [anon_sym_and] = ACTIONS(7092), - [anon_sym_bitor] = ACTIONS(7092), - [anon_sym_xor] = ACTIONS(7092), - [anon_sym_bitand] = ACTIONS(7092), - [anon_sym_not_eq] = ACTIONS(7092), - [anon_sym_DASH_DASH] = ACTIONS(7097), - [anon_sym_PLUS_PLUS] = ACTIONS(7097), - [anon_sym_DOT] = ACTIONS(7092), - [anon_sym_DOT_STAR] = ACTIONS(7097), - [anon_sym_DASH_GT] = ACTIONS(7097), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(7097), + [sym__abstract_declarator] = STATE(6454), + [sym_abstract_parenthesized_declarator] = STATE(6601), + [sym_abstract_pointer_declarator] = STATE(6601), + [sym_abstract_function_declarator] = STATE(6601), + [sym_abstract_array_declarator] = STATE(6601), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2276), + [sym_abstract_reference_declarator] = STATE(6601), + [sym__function_declarator_seq] = STATE(6602), + [aux_sym__type_definition_type_repeat1] = STATE(3888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8599), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8601), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8605), + [anon_sym_LBRACK] = ACTIONS(8613), + [anon_sym_RBRACK] = ACTIONS(6843), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8605), + [anon_sym_volatile] = ACTIONS(8605), + [anon_sym_restrict] = ACTIONS(8605), + [anon_sym___restrict__] = ACTIONS(8605), + [anon_sym__Atomic] = ACTIONS(8605), + [anon_sym__Noreturn] = ACTIONS(8605), + [anon_sym_noreturn] = ACTIONS(8605), + [anon_sym__Nonnull] = ACTIONS(8605), + [anon_sym_mutable] = ACTIONS(8605), + [anon_sym_constinit] = ACTIONS(8605), + [anon_sym_consteval] = ACTIONS(8605), + [anon_sym_alignas] = ACTIONS(8615), + [anon_sym__Alignas] = ACTIONS(8615), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6843), + [anon_sym_override] = ACTIONS(6843), + [anon_sym_requires] = ACTIONS(6843), }, [STATE(3745)] = { - [sym_string_literal] = STATE(3730), - [sym_template_argument_list] = STATE(5351), - [sym_raw_string_literal] = STATE(3730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(9546), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_RBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5638), - [anon_sym_or_eq] = ACTIONS(5638), - [anon_sym_xor_eq] = ACTIONS(5638), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(7069), - [anon_sym_u_DQUOTE] = ACTIONS(7069), - [anon_sym_U_DQUOTE] = ACTIONS(7069), - [anon_sym_u8_DQUOTE] = ACTIONS(7069), - [anon_sym_DQUOTE] = ACTIONS(7069), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(7075), - [anon_sym_LR_DQUOTE] = ACTIONS(7075), - [anon_sym_uR_DQUOTE] = ACTIONS(7075), - [anon_sym_UR_DQUOTE] = ACTIONS(7075), - [anon_sym_u8R_DQUOTE] = ACTIONS(7075), - }, - [STATE(3746)] = { - [sym_type_qualifier] = STATE(3746), - [sym_alignas_qualifier] = STATE(3991), - [aux_sym__type_definition_type_repeat1] = STATE(3746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6891), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6891), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6891), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6889), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6891), - [anon_sym_GT_GT] = ACTIONS(6889), - [anon_sym___extension__] = ACTIONS(9554), - [anon_sym___attribute__] = ACTIONS(6891), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6889), - [anon_sym_const] = ACTIONS(9557), - [anon_sym_constexpr] = ACTIONS(9554), - [anon_sym_volatile] = ACTIONS(9554), - [anon_sym_restrict] = ACTIONS(9554), - [anon_sym___restrict__] = ACTIONS(9554), - [anon_sym__Atomic] = ACTIONS(9554), - [anon_sym__Noreturn] = ACTIONS(9554), - [anon_sym_noreturn] = ACTIONS(9554), - [anon_sym__Nonnull] = ACTIONS(9554), - [anon_sym_mutable] = ACTIONS(9554), - [anon_sym_constinit] = ACTIONS(9554), - [anon_sym_consteval] = ACTIONS(9554), - [anon_sym_alignas] = ACTIONS(9560), - [anon_sym__Alignas] = ACTIONS(9560), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6891), - [anon_sym_and] = ACTIONS(6891), - [anon_sym_bitor] = ACTIONS(6891), - [anon_sym_xor] = ACTIONS(6891), - [anon_sym_bitand] = ACTIONS(6891), - [anon_sym_not_eq] = ACTIONS(6891), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_asm] = ACTIONS(6891), - [anon_sym___asm__] = ACTIONS(6891), - [anon_sym___asm] = ACTIONS(6889), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6891), - [anon_sym_override] = ACTIONS(6891), - [anon_sym_GT2] = ACTIONS(6891), - [anon_sym_noexcept] = ACTIONS(6891), - [anon_sym_throw] = ACTIONS(6891), - [anon_sym_requires] = ACTIONS(6891), - }, - [STATE(3747)] = { - [sym_decltype_auto] = STATE(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [anon_sym_RPAREN] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym_SEMI] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7225), - [anon_sym___attribute__] = ACTIONS(7225), - [anon_sym___attribute] = ACTIONS(7223), - [anon_sym_COLON] = ACTIONS(7223), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7225), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_RBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7225), - [anon_sym_volatile] = ACTIONS(7225), - [anon_sym_restrict] = ACTIONS(7225), - [anon_sym___restrict__] = ACTIONS(7225), - [anon_sym__Atomic] = ACTIONS(7225), - [anon_sym__Noreturn] = ACTIONS(7225), - [anon_sym_noreturn] = ACTIONS(7225), - [anon_sym__Nonnull] = ACTIONS(7225), - [anon_sym_mutable] = ACTIONS(7225), - [anon_sym_constinit] = ACTIONS(7225), - [anon_sym_consteval] = ACTIONS(7225), - [anon_sym_alignas] = ACTIONS(7225), - [anon_sym__Alignas] = ACTIONS(7225), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7225), - [anon_sym_and] = ACTIONS(7225), - [anon_sym_bitor] = ACTIONS(7225), - [anon_sym_xor] = ACTIONS(7225), - [anon_sym_bitand] = ACTIONS(7225), - [anon_sym_not_eq] = ACTIONS(7225), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9443), - [anon_sym_decltype] = ACTIONS(6871), - [anon_sym_final] = ACTIONS(7225), - [anon_sym_override] = ACTIONS(7225), - [anon_sym_requires] = ACTIONS(7225), - [anon_sym_COLON_RBRACK] = ACTIONS(7225), - }, - [STATE(3748)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_TILDE] = ACTIONS(7293), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_SEMI] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym_virtual] = ACTIONS(7291), - [anon_sym_extern] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), - [anon_sym___declspec] = ACTIONS(7291), - [anon_sym___based] = ACTIONS(7291), - [anon_sym___cdecl] = ACTIONS(7291), - [anon_sym___clrcall] = ACTIONS(7291), - [anon_sym___stdcall] = ACTIONS(7291), - [anon_sym___fastcall] = ACTIONS(7291), - [anon_sym___thiscall] = ACTIONS(7291), - [anon_sym___vectorcall] = ACTIONS(7291), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7291), - [anon_sym_static] = ACTIONS(7291), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_register] = ACTIONS(7291), - [anon_sym_inline] = ACTIONS(7291), - [anon_sym___inline] = ACTIONS(7291), - [anon_sym___inline__] = ACTIONS(7291), - [anon_sym___forceinline] = ACTIONS(7291), - [anon_sym_thread_local] = ACTIONS(7291), - [anon_sym___thread] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_template] = ACTIONS(7291), - [anon_sym_GT2] = ACTIONS(7293), - [anon_sym_operator] = ACTIONS(7291), - [anon_sym_noexcept] = ACTIONS(7291), - [anon_sym_throw] = ACTIONS(7291), - [anon_sym_LBRACK_COLON] = ACTIONS(7293), - }, - [STATE(3749)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5638), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(6995), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(6997), - [anon_sym_SLASH_EQ] = ACTIONS(6997), - [anon_sym_PERCENT_EQ] = ACTIONS(6997), - [anon_sym_PLUS_EQ] = ACTIONS(6997), - [anon_sym_DASH_EQ] = ACTIONS(6997), - [anon_sym_LT_LT_EQ] = ACTIONS(6997), - [anon_sym_GT_GT_EQ] = ACTIONS(6997), - [anon_sym_AMP_EQ] = ACTIONS(6997), - [anon_sym_CARET_EQ] = ACTIONS(6997), - [anon_sym_PIPE_EQ] = ACTIONS(6997), - [anon_sym_and_eq] = ACTIONS(6997), - [anon_sym_or_eq] = ACTIONS(6997), - [anon_sym_xor_eq] = ACTIONS(6997), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), - }, - [STATE(3750)] = { - [sym_template_argument_list] = STATE(2938), - [sym_identifier] = ACTIONS(7371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), - [anon_sym_COMMA] = ACTIONS(5657), - [aux_sym_preproc_if_token2] = ACTIONS(5657), - [aux_sym_preproc_else_token1] = ACTIONS(5657), - [aux_sym_preproc_elif_token1] = ACTIONS(7371), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5657), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5657), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_DASH] = ACTIONS(7371), - [anon_sym_PLUS] = ACTIONS(7371), - [anon_sym_STAR] = ACTIONS(5657), - [anon_sym_SLASH] = ACTIONS(7371), - [anon_sym_PERCENT] = ACTIONS(5657), - [anon_sym_PIPE_PIPE] = ACTIONS(5657), - [anon_sym_AMP_AMP] = ACTIONS(5657), - [anon_sym_PIPE] = ACTIONS(7371), - [anon_sym_CARET] = ACTIONS(5657), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_EQ_EQ] = ACTIONS(5657), - [anon_sym_BANG_EQ] = ACTIONS(5657), - [anon_sym_GT] = ACTIONS(7371), - [anon_sym_GT_EQ] = ACTIONS(5657), - [anon_sym_LT_EQ] = ACTIONS(7371), - [anon_sym_LT] = ACTIONS(8883), - [anon_sym_LT_LT] = ACTIONS(5657), - [anon_sym_GT_GT] = ACTIONS(5657), - [anon_sym___extension__] = ACTIONS(7371), - [anon_sym___attribute__] = ACTIONS(7371), - [anon_sym___attribute] = ACTIONS(7371), - [anon_sym_COLON] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5657), - [anon_sym_const] = ACTIONS(7371), - [anon_sym_constexpr] = ACTIONS(7371), - [anon_sym_volatile] = ACTIONS(7371), - [anon_sym_restrict] = ACTIONS(7371), - [anon_sym___restrict__] = ACTIONS(7371), - [anon_sym__Atomic] = ACTIONS(7371), - [anon_sym__Noreturn] = ACTIONS(7371), - [anon_sym_noreturn] = ACTIONS(7371), - [anon_sym__Nonnull] = ACTIONS(7371), - [anon_sym_mutable] = ACTIONS(7371), - [anon_sym_constinit] = ACTIONS(7371), - [anon_sym_consteval] = ACTIONS(7371), - [anon_sym_alignas] = ACTIONS(7371), - [anon_sym__Alignas] = ACTIONS(7371), - [anon_sym_QMARK] = ACTIONS(5657), - [anon_sym_LT_EQ_GT] = ACTIONS(5657), + [sym__abstract_declarator] = STATE(6478), + [sym_abstract_parenthesized_declarator] = STATE(6694), + [sym_abstract_pointer_declarator] = STATE(6694), + [sym_abstract_function_declarator] = STATE(6694), + [sym_abstract_array_declarator] = STATE(6694), + [sym_type_qualifier] = STATE(3671), + [sym_alignas_qualifier] = STATE(3830), + [sym_parameter_list] = STATE(2274), + [sym_abstract_reference_declarator] = STATE(6694), + [sym__function_declarator_seq] = STATE(6695), + [aux_sym__type_definition_type_repeat1] = STATE(3671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(8568), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(8570), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(8572), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(8574), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7369), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7369), + [anon_sym___extension__] = ACTIONS(8576), + [anon_sym_LBRACK] = ACTIONS(8584), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8576), + [anon_sym_volatile] = ACTIONS(8576), + [anon_sym_restrict] = ACTIONS(8576), + [anon_sym___restrict__] = ACTIONS(8576), + [anon_sym__Atomic] = ACTIONS(8576), + [anon_sym__Noreturn] = ACTIONS(8576), + [anon_sym_noreturn] = ACTIONS(8576), + [anon_sym__Nonnull] = ACTIONS(8576), + [anon_sym_mutable] = ACTIONS(8576), + [anon_sym_constinit] = ACTIONS(8576), + [anon_sym_consteval] = ACTIONS(8576), + [anon_sym_alignas] = ACTIONS(8588), + [anon_sym__Alignas] = ACTIONS(8588), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), [anon_sym_or] = ACTIONS(7371), [anon_sym_and] = ACTIONS(7371), [anon_sym_bitor] = ACTIONS(7371), [anon_sym_xor] = ACTIONS(7371), [anon_sym_bitand] = ACTIONS(7371), [anon_sym_not_eq] = ACTIONS(7371), - [anon_sym_DASH_DASH] = ACTIONS(5657), - [anon_sym_PLUS_PLUS] = ACTIONS(5657), - [anon_sym_DOT] = ACTIONS(7371), - [anon_sym_DOT_STAR] = ACTIONS(5657), - [anon_sym_DASH_GT] = ACTIONS(5657), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), [sym_comment] = ACTIONS(3), [anon_sym_final] = ACTIONS(7371), [anon_sym_override] = ACTIONS(7371), + [anon_sym_GT2] = ACTIONS(7371), [anon_sym_requires] = ACTIONS(7371), }, + [STATE(3746)] = { + [sym_template_argument_list] = STATE(2919), + [sym_identifier] = ACTIONS(7379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5637), + [aux_sym_preproc_if_token2] = ACTIONS(5637), + [aux_sym_preproc_else_token1] = ACTIONS(5637), + [aux_sym_preproc_elif_token1] = ACTIONS(7379), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5637), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(5637), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(5637), + [anon_sym_PIPE_PIPE] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(5637), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(5637), + [anon_sym_BANG_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(8927), + [anon_sym_LT_LT] = ACTIONS(5637), + [anon_sym_GT_GT] = ACTIONS(5637), + [anon_sym___extension__] = ACTIONS(7379), + [anon_sym___attribute__] = ACTIONS(7379), + [anon_sym___attribute] = ACTIONS(7379), + [anon_sym_COLON] = ACTIONS(7379), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_const] = ACTIONS(7379), + [anon_sym_constexpr] = ACTIONS(7379), + [anon_sym_volatile] = ACTIONS(7379), + [anon_sym_restrict] = ACTIONS(7379), + [anon_sym___restrict__] = ACTIONS(7379), + [anon_sym__Atomic] = ACTIONS(7379), + [anon_sym__Noreturn] = ACTIONS(7379), + [anon_sym_noreturn] = ACTIONS(7379), + [anon_sym__Nonnull] = ACTIONS(7379), + [anon_sym_mutable] = ACTIONS(7379), + [anon_sym_constinit] = ACTIONS(7379), + [anon_sym_consteval] = ACTIONS(7379), + [anon_sym_alignas] = ACTIONS(7379), + [anon_sym__Alignas] = ACTIONS(7379), + [anon_sym_QMARK] = ACTIONS(5637), + [anon_sym_LT_EQ_GT] = ACTIONS(5637), + [anon_sym_or] = ACTIONS(7379), + [anon_sym_and] = ACTIONS(7379), + [anon_sym_bitor] = ACTIONS(7379), + [anon_sym_xor] = ACTIONS(7379), + [anon_sym_bitand] = ACTIONS(7379), + [anon_sym_not_eq] = ACTIONS(7379), + [anon_sym_DASH_DASH] = ACTIONS(5637), + [anon_sym_PLUS_PLUS] = ACTIONS(5637), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(5637), + [anon_sym_DASH_GT] = ACTIONS(5637), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7379), + [anon_sym_override] = ACTIONS(7379), + [anon_sym_requires] = ACTIONS(7379), + }, + [STATE(3747)] = { + [sym_identifier] = ACTIONS(9553), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9555), + [anon_sym_COMMA] = ACTIONS(9555), + [anon_sym_RPAREN] = ACTIONS(9555), + [aux_sym_preproc_if_token2] = ACTIONS(9555), + [aux_sym_preproc_else_token1] = ACTIONS(9555), + [aux_sym_preproc_elif_token1] = ACTIONS(9553), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9555), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9555), + [anon_sym_LPAREN2] = ACTIONS(9555), + [anon_sym_DASH] = ACTIONS(9553), + [anon_sym_PLUS] = ACTIONS(9553), + [anon_sym_STAR] = ACTIONS(9553), + [anon_sym_SLASH] = ACTIONS(9553), + [anon_sym_PERCENT] = ACTIONS(9553), + [anon_sym_PIPE_PIPE] = ACTIONS(9555), + [anon_sym_AMP_AMP] = ACTIONS(9555), + [anon_sym_PIPE] = ACTIONS(9553), + [anon_sym_CARET] = ACTIONS(9553), + [anon_sym_AMP] = ACTIONS(9553), + [anon_sym_EQ_EQ] = ACTIONS(9555), + [anon_sym_BANG_EQ] = ACTIONS(9555), + [anon_sym_GT] = ACTIONS(9553), + [anon_sym_GT_EQ] = ACTIONS(9555), + [anon_sym_LT_EQ] = ACTIONS(9553), + [anon_sym_LT] = ACTIONS(9553), + [anon_sym_LT_LT] = ACTIONS(9553), + [anon_sym_GT_GT] = ACTIONS(9553), + [anon_sym_SEMI] = ACTIONS(9555), + [anon_sym___attribute__] = ACTIONS(9553), + [anon_sym___attribute] = ACTIONS(9553), + [anon_sym_COLON] = ACTIONS(9553), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9555), + [anon_sym_LBRACE] = ACTIONS(9555), + [anon_sym_RBRACE] = ACTIONS(9555), + [anon_sym_LBRACK] = ACTIONS(9555), + [anon_sym_EQ] = ACTIONS(9553), + [anon_sym_QMARK] = ACTIONS(9555), + [anon_sym_STAR_EQ] = ACTIONS(9555), + [anon_sym_SLASH_EQ] = ACTIONS(9555), + [anon_sym_PERCENT_EQ] = ACTIONS(9555), + [anon_sym_PLUS_EQ] = ACTIONS(9555), + [anon_sym_DASH_EQ] = ACTIONS(9555), + [anon_sym_LT_LT_EQ] = ACTIONS(9555), + [anon_sym_GT_GT_EQ] = ACTIONS(9555), + [anon_sym_AMP_EQ] = ACTIONS(9555), + [anon_sym_CARET_EQ] = ACTIONS(9555), + [anon_sym_PIPE_EQ] = ACTIONS(9555), + [anon_sym_and_eq] = ACTIONS(9553), + [anon_sym_or_eq] = ACTIONS(9553), + [anon_sym_xor_eq] = ACTIONS(9553), + [anon_sym_LT_EQ_GT] = ACTIONS(9555), + [anon_sym_or] = ACTIONS(9553), + [anon_sym_and] = ACTIONS(9553), + [anon_sym_bitor] = ACTIONS(9553), + [anon_sym_xor] = ACTIONS(9553), + [anon_sym_bitand] = ACTIONS(9553), + [anon_sym_not_eq] = ACTIONS(9553), + [anon_sym_DASH_DASH] = ACTIONS(9555), + [anon_sym_PLUS_PLUS] = ACTIONS(9555), + [anon_sym_DOT] = ACTIONS(9553), + [anon_sym_DOT_STAR] = ACTIONS(9555), + [anon_sym_DASH_GT] = ACTIONS(9555), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9555), + }, + [STATE(3748)] = { + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(6971), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(6973), + [anon_sym_SLASH_EQ] = ACTIONS(6973), + [anon_sym_PERCENT_EQ] = ACTIONS(6973), + [anon_sym_PLUS_EQ] = ACTIONS(6973), + [anon_sym_DASH_EQ] = ACTIONS(6973), + [anon_sym_LT_LT_EQ] = ACTIONS(6973), + [anon_sym_GT_GT_EQ] = ACTIONS(6973), + [anon_sym_AMP_EQ] = ACTIONS(6973), + [anon_sym_CARET_EQ] = ACTIONS(6973), + [anon_sym_PIPE_EQ] = ACTIONS(6973), + [anon_sym_and_eq] = ACTIONS(6973), + [anon_sym_or_eq] = ACTIONS(6973), + [anon_sym_xor_eq] = ACTIONS(6973), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), + }, + [STATE(3749)] = { + [sym__abstract_declarator] = STATE(6450), + [sym_abstract_parenthesized_declarator] = STATE(6601), + [sym_abstract_pointer_declarator] = STATE(6601), + [sym_abstract_function_declarator] = STATE(6601), + [sym_abstract_array_declarator] = STATE(6601), + [sym_type_qualifier] = STATE(3751), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2276), + [sym_abstract_reference_declarator] = STATE(6601), + [sym__function_declarator_seq] = STATE(6602), + [aux_sym__type_definition_type_repeat1] = STATE(3751), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(8599), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(8601), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(8605), + [anon_sym_LBRACK] = ACTIONS(8613), + [anon_sym_RBRACK] = ACTIONS(7375), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8605), + [anon_sym_volatile] = ACTIONS(8605), + [anon_sym_restrict] = ACTIONS(8605), + [anon_sym___restrict__] = ACTIONS(8605), + [anon_sym__Atomic] = ACTIONS(8605), + [anon_sym__Noreturn] = ACTIONS(8605), + [anon_sym_noreturn] = ACTIONS(8605), + [anon_sym__Nonnull] = ACTIONS(8605), + [anon_sym_mutable] = ACTIONS(8605), + [anon_sym_constinit] = ACTIONS(8605), + [anon_sym_consteval] = ACTIONS(8605), + [anon_sym_alignas] = ACTIONS(8615), + [anon_sym__Alignas] = ACTIONS(8615), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7375), + [anon_sym_override] = ACTIONS(7375), + [anon_sym_requires] = ACTIONS(7375), + }, + [STATE(3750)] = { + [sym_string_literal] = STATE(3750), + [sym_raw_string_literal] = STATE(3750), + [aux_sym_concatenated_string_repeat1] = STATE(3750), + [sym_identifier] = ACTIONS(9557), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8471), + [anon_sym_COMMA] = ACTIONS(8471), + [anon_sym_LPAREN2] = ACTIONS(8471), + [anon_sym_DASH] = ACTIONS(8473), + [anon_sym_PLUS] = ACTIONS(8473), + [anon_sym_STAR] = ACTIONS(8473), + [anon_sym_SLASH] = ACTIONS(8473), + [anon_sym_PERCENT] = ACTIONS(8473), + [anon_sym_PIPE_PIPE] = ACTIONS(8471), + [anon_sym_AMP_AMP] = ACTIONS(8471), + [anon_sym_PIPE] = ACTIONS(8473), + [anon_sym_CARET] = ACTIONS(8473), + [anon_sym_AMP] = ACTIONS(8473), + [anon_sym_EQ_EQ] = ACTIONS(8471), + [anon_sym_BANG_EQ] = ACTIONS(8471), + [anon_sym_GT] = ACTIONS(8473), + [anon_sym_GT_EQ] = ACTIONS(8473), + [anon_sym_LT_EQ] = ACTIONS(8473), + [anon_sym_LT] = ACTIONS(8473), + [anon_sym_LT_LT] = ACTIONS(8473), + [anon_sym_GT_GT] = ACTIONS(8473), + [anon_sym_LBRACK] = ACTIONS(8471), + [anon_sym_EQ] = ACTIONS(8473), + [anon_sym_QMARK] = ACTIONS(8471), + [anon_sym_STAR_EQ] = ACTIONS(8471), + [anon_sym_SLASH_EQ] = ACTIONS(8471), + [anon_sym_PERCENT_EQ] = ACTIONS(8471), + [anon_sym_PLUS_EQ] = ACTIONS(8471), + [anon_sym_DASH_EQ] = ACTIONS(8471), + [anon_sym_LT_LT_EQ] = ACTIONS(8471), + [anon_sym_GT_GT_EQ] = ACTIONS(8473), + [anon_sym_AMP_EQ] = ACTIONS(8471), + [anon_sym_CARET_EQ] = ACTIONS(8471), + [anon_sym_PIPE_EQ] = ACTIONS(8471), + [anon_sym_and_eq] = ACTIONS(8473), + [anon_sym_or_eq] = ACTIONS(8473), + [anon_sym_xor_eq] = ACTIONS(8473), + [anon_sym_LT_EQ_GT] = ACTIONS(8471), + [anon_sym_or] = ACTIONS(8473), + [anon_sym_and] = ACTIONS(8473), + [anon_sym_bitor] = ACTIONS(8473), + [anon_sym_xor] = ACTIONS(8473), + [anon_sym_bitand] = ACTIONS(8473), + [anon_sym_not_eq] = ACTIONS(8473), + [anon_sym_DASH_DASH] = ACTIONS(8471), + [anon_sym_PLUS_PLUS] = ACTIONS(8471), + [anon_sym_DOT] = ACTIONS(8473), + [anon_sym_DOT_STAR] = ACTIONS(8471), + [anon_sym_DASH_GT] = ACTIONS(8471), + [anon_sym_L_DQUOTE] = ACTIONS(9560), + [anon_sym_u_DQUOTE] = ACTIONS(9560), + [anon_sym_U_DQUOTE] = ACTIONS(9560), + [anon_sym_u8_DQUOTE] = ACTIONS(9560), + [anon_sym_DQUOTE] = ACTIONS(9560), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(8471), + [anon_sym_R_DQUOTE] = ACTIONS(9563), + [anon_sym_LR_DQUOTE] = ACTIONS(9563), + [anon_sym_uR_DQUOTE] = ACTIONS(9563), + [anon_sym_UR_DQUOTE] = ACTIONS(9563), + [anon_sym_u8R_DQUOTE] = ACTIONS(9563), + [sym_literal_suffix] = ACTIONS(8473), + }, [STATE(3751)] = { - [sym_string_literal] = STATE(3706), - [sym_raw_string_literal] = STATE(3706), - [aux_sym_concatenated_string_repeat1] = STATE(3706), - [sym_identifier] = ACTIONS(9563), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8454), - [anon_sym_COMMA] = ACTIONS(8454), - [anon_sym_LPAREN2] = ACTIONS(8454), - [anon_sym_DASH] = ACTIONS(8456), - [anon_sym_PLUS] = ACTIONS(8456), - [anon_sym_STAR] = ACTIONS(8456), - [anon_sym_SLASH] = ACTIONS(8456), - [anon_sym_PERCENT] = ACTIONS(8456), - [anon_sym_PIPE_PIPE] = ACTIONS(8454), - [anon_sym_AMP_AMP] = ACTIONS(8454), - [anon_sym_PIPE] = ACTIONS(8456), - [anon_sym_CARET] = ACTIONS(8456), - [anon_sym_AMP] = ACTIONS(8456), - [anon_sym_EQ_EQ] = ACTIONS(8454), - [anon_sym_BANG_EQ] = ACTIONS(8454), - [anon_sym_GT] = ACTIONS(8456), - [anon_sym_GT_EQ] = ACTIONS(8454), - [anon_sym_LT_EQ] = ACTIONS(8456), - [anon_sym_LT] = ACTIONS(8456), - [anon_sym_LT_LT] = ACTIONS(8456), - [anon_sym_GT_GT] = ACTIONS(8456), - [anon_sym_LBRACK] = ACTIONS(8454), - [anon_sym_RBRACK] = ACTIONS(8454), - [anon_sym_EQ] = ACTIONS(8456), - [anon_sym_QMARK] = ACTIONS(8454), - [anon_sym_STAR_EQ] = ACTIONS(8454), - [anon_sym_SLASH_EQ] = ACTIONS(8454), - [anon_sym_PERCENT_EQ] = ACTIONS(8454), - [anon_sym_PLUS_EQ] = ACTIONS(8454), - [anon_sym_DASH_EQ] = ACTIONS(8454), - [anon_sym_LT_LT_EQ] = ACTIONS(8454), - [anon_sym_GT_GT_EQ] = ACTIONS(8454), - [anon_sym_AMP_EQ] = ACTIONS(8454), - [anon_sym_CARET_EQ] = ACTIONS(8454), - [anon_sym_PIPE_EQ] = ACTIONS(8454), - [anon_sym_and_eq] = ACTIONS(8456), - [anon_sym_or_eq] = ACTIONS(8456), - [anon_sym_xor_eq] = ACTIONS(8456), - [anon_sym_LT_EQ_GT] = ACTIONS(8454), - [anon_sym_or] = ACTIONS(8456), - [anon_sym_and] = ACTIONS(8456), - [anon_sym_bitor] = ACTIONS(8456), - [anon_sym_xor] = ACTIONS(8456), - [anon_sym_bitand] = ACTIONS(8456), - [anon_sym_not_eq] = ACTIONS(8456), - [anon_sym_DASH_DASH] = ACTIONS(8454), - [anon_sym_PLUS_PLUS] = ACTIONS(8454), - [anon_sym_DOT] = ACTIONS(8456), - [anon_sym_DOT_STAR] = ACTIONS(8454), - [anon_sym_DASH_GT] = ACTIONS(8454), - [anon_sym_L_DQUOTE] = ACTIONS(7069), - [anon_sym_u_DQUOTE] = ACTIONS(7069), - [anon_sym_U_DQUOTE] = ACTIONS(7069), - [anon_sym_u8_DQUOTE] = ACTIONS(7069), - [anon_sym_DQUOTE] = ACTIONS(7069), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(7075), - [anon_sym_LR_DQUOTE] = ACTIONS(7075), - [anon_sym_uR_DQUOTE] = ACTIONS(7075), - [anon_sym_UR_DQUOTE] = ACTIONS(7075), - [anon_sym_u8R_DQUOTE] = ACTIONS(7075), - [sym_literal_suffix] = ACTIONS(8456), + [sym__abstract_declarator] = STATE(6451), + [sym_abstract_parenthesized_declarator] = STATE(6601), + [sym_abstract_pointer_declarator] = STATE(6601), + [sym_abstract_function_declarator] = STATE(6601), + [sym_abstract_array_declarator] = STATE(6601), + [sym_type_qualifier] = STATE(3888), + [sym_alignas_qualifier] = STATE(4156), + [sym_parameter_list] = STATE(2276), + [sym_abstract_reference_declarator] = STATE(6601), + [sym__function_declarator_seq] = STATE(6602), + [aux_sym__type_definition_type_repeat1] = STATE(3888), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(8597), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(8599), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(8601), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(8603), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(8605), + [anon_sym_LBRACK] = ACTIONS(8613), + [anon_sym_RBRACK] = ACTIONS(7341), + [anon_sym_const] = ACTIONS(8086), + [anon_sym_constexpr] = ACTIONS(8605), + [anon_sym_volatile] = ACTIONS(8605), + [anon_sym_restrict] = ACTIONS(8605), + [anon_sym___restrict__] = ACTIONS(8605), + [anon_sym__Atomic] = ACTIONS(8605), + [anon_sym__Noreturn] = ACTIONS(8605), + [anon_sym_noreturn] = ACTIONS(8605), + [anon_sym__Nonnull] = ACTIONS(8605), + [anon_sym_mutable] = ACTIONS(8605), + [anon_sym_constinit] = ACTIONS(8605), + [anon_sym_consteval] = ACTIONS(8605), + [anon_sym_alignas] = ACTIONS(8615), + [anon_sym__Alignas] = ACTIONS(8615), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7341), + [anon_sym_override] = ACTIONS(7341), + [anon_sym_requires] = ACTIONS(7341), }, [STATE(3752)] = { - [sym_identifier] = ACTIONS(7291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7293), - [anon_sym_COMMA] = ACTIONS(7293), - [anon_sym_RPAREN] = ACTIONS(7293), - [anon_sym_LPAREN2] = ACTIONS(7293), - [anon_sym_TILDE] = ACTIONS(7293), - [anon_sym_STAR] = ACTIONS(7293), - [anon_sym_PIPE_PIPE] = ACTIONS(7293), - [anon_sym_AMP_AMP] = ACTIONS(7293), - [anon_sym_AMP] = ACTIONS(7291), - [anon_sym_SEMI] = ACTIONS(7293), - [anon_sym___extension__] = ACTIONS(7291), - [anon_sym_virtual] = ACTIONS(7291), - [anon_sym_extern] = ACTIONS(7291), - [anon_sym___attribute__] = ACTIONS(7291), - [anon_sym___attribute] = ACTIONS(7291), - [anon_sym_COLON] = ACTIONS(7291), - [anon_sym_COLON_COLON] = ACTIONS(7293), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7293), - [anon_sym___declspec] = ACTIONS(7291), - [anon_sym___based] = ACTIONS(7291), - [anon_sym___cdecl] = ACTIONS(7291), - [anon_sym___clrcall] = ACTIONS(7291), - [anon_sym___stdcall] = ACTIONS(7291), - [anon_sym___fastcall] = ACTIONS(7291), - [anon_sym___thiscall] = ACTIONS(7291), - [anon_sym___vectorcall] = ACTIONS(7291), - [anon_sym_LBRACE] = ACTIONS(7293), - [anon_sym_LBRACK] = ACTIONS(7291), - [anon_sym_static] = ACTIONS(7291), - [anon_sym_EQ] = ACTIONS(7293), - [anon_sym_register] = ACTIONS(7291), - [anon_sym_inline] = ACTIONS(7291), - [anon_sym___inline] = ACTIONS(7291), - [anon_sym___inline__] = ACTIONS(7291), - [anon_sym___forceinline] = ACTIONS(7291), - [anon_sym_thread_local] = ACTIONS(7291), - [anon_sym___thread] = ACTIONS(7291), - [anon_sym_const] = ACTIONS(7291), - [anon_sym_constexpr] = ACTIONS(7291), - [anon_sym_volatile] = ACTIONS(7291), - [anon_sym_restrict] = ACTIONS(7291), - [anon_sym___restrict__] = ACTIONS(7291), - [anon_sym__Atomic] = ACTIONS(7291), - [anon_sym__Noreturn] = ACTIONS(7291), - [anon_sym_noreturn] = ACTIONS(7291), - [anon_sym__Nonnull] = ACTIONS(7291), - [anon_sym_mutable] = ACTIONS(7291), - [anon_sym_constinit] = ACTIONS(7291), - [anon_sym_consteval] = ACTIONS(7291), - [anon_sym_alignas] = ACTIONS(7291), - [anon_sym__Alignas] = ACTIONS(7291), - [anon_sym_or] = ACTIONS(7291), - [anon_sym_and] = ACTIONS(7291), - [anon_sym_DASH_GT] = ACTIONS(7293), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(7291), - [anon_sym_decltype] = ACTIONS(7291), - [anon_sym_final] = ACTIONS(7291), - [anon_sym_override] = ACTIONS(7291), - [anon_sym_template] = ACTIONS(7291), - [anon_sym_GT2] = ACTIONS(7293), - [anon_sym_operator] = ACTIONS(7291), - [anon_sym_noexcept] = ACTIONS(7291), - [anon_sym_throw] = ACTIONS(7291), - [anon_sym_LBRACK_COLON] = ACTIONS(7293), + [sym_attribute_declaration] = STATE(3152), + [aux_sym_attributed_declarator_repeat1] = STATE(3152), + [sym_identifier] = ACTIONS(9566), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9568), + [anon_sym_COMMA] = ACTIONS(9568), + [anon_sym_RPAREN] = ACTIONS(9568), + [aux_sym_preproc_if_token2] = ACTIONS(9568), + [aux_sym_preproc_else_token1] = ACTIONS(9568), + [aux_sym_preproc_elif_token1] = ACTIONS(9566), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9568), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9568), + [anon_sym_LPAREN2] = ACTIONS(9568), + [anon_sym_DASH] = ACTIONS(9566), + [anon_sym_PLUS] = ACTIONS(9566), + [anon_sym_STAR] = ACTIONS(9566), + [anon_sym_SLASH] = ACTIONS(9566), + [anon_sym_PERCENT] = ACTIONS(9566), + [anon_sym_PIPE_PIPE] = ACTIONS(9568), + [anon_sym_AMP_AMP] = ACTIONS(9568), + [anon_sym_PIPE] = ACTIONS(9566), + [anon_sym_CARET] = ACTIONS(9566), + [anon_sym_AMP] = ACTIONS(9566), + [anon_sym_EQ_EQ] = ACTIONS(9568), + [anon_sym_BANG_EQ] = ACTIONS(9568), + [anon_sym_GT] = ACTIONS(9566), + [anon_sym_GT_EQ] = ACTIONS(9568), + [anon_sym_LT_EQ] = ACTIONS(9566), + [anon_sym_LT] = ACTIONS(9566), + [anon_sym_LT_LT] = ACTIONS(9566), + [anon_sym_GT_GT] = ACTIONS(9566), + [anon_sym_SEMI] = ACTIONS(9568), + [anon_sym___attribute__] = ACTIONS(9566), + [anon_sym___attribute] = ACTIONS(9566), + [anon_sym_COLON] = ACTIONS(9566), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6483), + [anon_sym_RBRACE] = ACTIONS(9568), + [anon_sym_LBRACK] = ACTIONS(9566), + [anon_sym_EQ] = ACTIONS(9566), + [anon_sym_QMARK] = ACTIONS(9568), + [anon_sym_STAR_EQ] = ACTIONS(9568), + [anon_sym_SLASH_EQ] = ACTIONS(9568), + [anon_sym_PERCENT_EQ] = ACTIONS(9568), + [anon_sym_PLUS_EQ] = ACTIONS(9568), + [anon_sym_DASH_EQ] = ACTIONS(9568), + [anon_sym_LT_LT_EQ] = ACTIONS(9568), + [anon_sym_GT_GT_EQ] = ACTIONS(9568), + [anon_sym_AMP_EQ] = ACTIONS(9568), + [anon_sym_CARET_EQ] = ACTIONS(9568), + [anon_sym_PIPE_EQ] = ACTIONS(9568), + [anon_sym_and_eq] = ACTIONS(9566), + [anon_sym_or_eq] = ACTIONS(9566), + [anon_sym_xor_eq] = ACTIONS(9566), + [anon_sym_LT_EQ_GT] = ACTIONS(9568), + [anon_sym_or] = ACTIONS(9566), + [anon_sym_and] = ACTIONS(9566), + [anon_sym_bitor] = ACTIONS(9566), + [anon_sym_xor] = ACTIONS(9566), + [anon_sym_bitand] = ACTIONS(9566), + [anon_sym_not_eq] = ACTIONS(9566), + [anon_sym_DASH_DASH] = ACTIONS(9568), + [anon_sym_PLUS_PLUS] = ACTIONS(9568), + [anon_sym_DOT] = ACTIONS(9566), + [anon_sym_DOT_STAR] = ACTIONS(9568), + [anon_sym_DASH_GT] = ACTIONS(9568), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9568), }, [STATE(3753)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2607), - [sym_identifier] = ACTIONS(7528), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [aux_sym_preproc_if_token2] = ACTIONS(7525), - [aux_sym_preproc_else_token1] = ACTIONS(7525), - [aux_sym_preproc_elif_token1] = ACTIONS(7528), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7525), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7525), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7525), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7525), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7525), - [anon_sym_GT_GT] = ACTIONS(7525), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(8505), - [anon_sym_unsigned] = ACTIONS(8505), - [anon_sym_long] = ACTIONS(8505), - [anon_sym_short] = ACTIONS(8505), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), + [sym_template_argument_list] = STATE(2048), + [sym_identifier] = ACTIONS(7124), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7129), + [anon_sym_COMMA] = ACTIONS(7129), + [anon_sym_RPAREN] = ACTIONS(7129), + [aux_sym_preproc_if_token2] = ACTIONS(7129), + [aux_sym_preproc_else_token1] = ACTIONS(7129), + [aux_sym_preproc_elif_token1] = ACTIONS(7124), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7129), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7129), + [anon_sym_LPAREN2] = ACTIONS(7129), + [anon_sym_DASH] = ACTIONS(7124), + [anon_sym_PLUS] = ACTIONS(7124), + [anon_sym_STAR] = ACTIONS(7124), + [anon_sym_SLASH] = ACTIONS(7124), + [anon_sym_PERCENT] = ACTIONS(7124), + [anon_sym_PIPE_PIPE] = ACTIONS(7129), + [anon_sym_AMP_AMP] = ACTIONS(7129), + [anon_sym_PIPE] = ACTIONS(7124), + [anon_sym_CARET] = ACTIONS(7124), + [anon_sym_AMP] = ACTIONS(7124), + [anon_sym_EQ_EQ] = ACTIONS(7129), + [anon_sym_BANG_EQ] = ACTIONS(7129), + [anon_sym_GT] = ACTIONS(7124), + [anon_sym_GT_EQ] = ACTIONS(7129), + [anon_sym_LT_EQ] = ACTIONS(7124), + [anon_sym_LT] = ACTIONS(7405), + [anon_sym_LT_LT] = ACTIONS(7124), + [anon_sym_GT_GT] = ACTIONS(7124), + [anon_sym_SEMI] = ACTIONS(7129), + [anon_sym___attribute__] = ACTIONS(7124), + [anon_sym___attribute] = ACTIONS(7124), + [anon_sym_COLON] = ACTIONS(7124), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7129), + [anon_sym_RBRACE] = ACTIONS(7129), + [anon_sym_LBRACK] = ACTIONS(7129), + [anon_sym_EQ] = ACTIONS(7124), + [anon_sym_QMARK] = ACTIONS(7129), + [anon_sym_STAR_EQ] = ACTIONS(7129), + [anon_sym_SLASH_EQ] = ACTIONS(7129), + [anon_sym_PERCENT_EQ] = ACTIONS(7129), + [anon_sym_PLUS_EQ] = ACTIONS(7129), + [anon_sym_DASH_EQ] = ACTIONS(7129), + [anon_sym_LT_LT_EQ] = ACTIONS(7129), + [anon_sym_GT_GT_EQ] = ACTIONS(7129), + [anon_sym_AMP_EQ] = ACTIONS(7129), + [anon_sym_CARET_EQ] = ACTIONS(7129), + [anon_sym_PIPE_EQ] = ACTIONS(7129), + [anon_sym_and_eq] = ACTIONS(7124), + [anon_sym_or_eq] = ACTIONS(7124), + [anon_sym_xor_eq] = ACTIONS(7124), + [anon_sym_LT_EQ_GT] = ACTIONS(7129), + [anon_sym_or] = ACTIONS(7124), + [anon_sym_and] = ACTIONS(7124), + [anon_sym_bitor] = ACTIONS(7124), + [anon_sym_xor] = ACTIONS(7124), + [anon_sym_bitand] = ACTIONS(7124), + [anon_sym_not_eq] = ACTIONS(7124), + [anon_sym_DASH_DASH] = ACTIONS(7129), + [anon_sym_PLUS_PLUS] = ACTIONS(7129), + [anon_sym_DOT] = ACTIONS(7124), + [anon_sym_DOT_STAR] = ACTIONS(7129), + [anon_sym_DASH_GT] = ACTIONS(7129), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(7129), }, [STATE(3754)] = { - [sym_type_qualifier] = STATE(3754), - [sym_alignas_qualifier] = STATE(4026), - [aux_sym__type_definition_type_repeat1] = STATE(3754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6891), - [anon_sym_COMMA] = ACTIONS(6891), - [anon_sym_LPAREN2] = ACTIONS(6891), - [anon_sym_DASH] = ACTIONS(6889), - [anon_sym_PLUS] = ACTIONS(6889), - [anon_sym_STAR] = ACTIONS(6891), - [anon_sym_SLASH] = ACTIONS(6889), - [anon_sym_PERCENT] = ACTIONS(6891), - [anon_sym_PIPE_PIPE] = ACTIONS(6891), - [anon_sym_AMP_AMP] = ACTIONS(6891), - [anon_sym_PIPE] = ACTIONS(6889), - [anon_sym_CARET] = ACTIONS(6891), - [anon_sym_AMP] = ACTIONS(6889), - [anon_sym_EQ_EQ] = ACTIONS(6891), - [anon_sym_BANG_EQ] = ACTIONS(6891), - [anon_sym_GT] = ACTIONS(6889), - [anon_sym_GT_EQ] = ACTIONS(6891), - [anon_sym_LT_EQ] = ACTIONS(6889), - [anon_sym_LT] = ACTIONS(6889), - [anon_sym_LT_LT] = ACTIONS(6891), - [anon_sym_GT_GT] = ACTIONS(6891), - [anon_sym___extension__] = ACTIONS(9565), - [anon_sym___attribute__] = ACTIONS(6891), - [anon_sym___attribute] = ACTIONS(6889), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6891), - [anon_sym_LBRACK] = ACTIONS(6889), - [anon_sym_RBRACK] = ACTIONS(6891), - [anon_sym_const] = ACTIONS(9568), - [anon_sym_constexpr] = ACTIONS(9565), - [anon_sym_volatile] = ACTIONS(9565), - [anon_sym_restrict] = ACTIONS(9565), - [anon_sym___restrict__] = ACTIONS(9565), - [anon_sym__Atomic] = ACTIONS(9565), - [anon_sym__Noreturn] = ACTIONS(9565), - [anon_sym_noreturn] = ACTIONS(9565), - [anon_sym__Nonnull] = ACTIONS(9565), - [anon_sym_mutable] = ACTIONS(9565), - [anon_sym_constinit] = ACTIONS(9565), - [anon_sym_consteval] = ACTIONS(9565), - [anon_sym_alignas] = ACTIONS(9571), - [anon_sym__Alignas] = ACTIONS(9571), - [anon_sym_QMARK] = ACTIONS(6891), - [anon_sym_LT_EQ_GT] = ACTIONS(6891), - [anon_sym_or] = ACTIONS(6891), - [anon_sym_and] = ACTIONS(6891), - [anon_sym_bitor] = ACTIONS(6891), - [anon_sym_xor] = ACTIONS(6891), - [anon_sym_bitand] = ACTIONS(6891), - [anon_sym_not_eq] = ACTIONS(6891), - [anon_sym_DASH_DASH] = ACTIONS(6891), - [anon_sym_PLUS_PLUS] = ACTIONS(6891), - [anon_sym_asm] = ACTIONS(6891), - [anon_sym___asm__] = ACTIONS(6891), - [anon_sym___asm] = ACTIONS(6889), - [anon_sym_DOT] = ACTIONS(6889), - [anon_sym_DOT_STAR] = ACTIONS(6891), - [anon_sym_DASH_GT] = ACTIONS(6891), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6891), - [anon_sym_override] = ACTIONS(6891), - [anon_sym_noexcept] = ACTIONS(6891), - [anon_sym_throw] = ACTIONS(6891), - [anon_sym_requires] = ACTIONS(6891), + [sym_string_literal] = STATE(4050), + [sym_template_argument_list] = STATE(5642), + [sym_raw_string_literal] = STATE(4050), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(7137), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5611), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(7025), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(7027), + [anon_sym_SLASH_EQ] = ACTIONS(7027), + [anon_sym_PERCENT_EQ] = ACTIONS(7027), + [anon_sym_PLUS_EQ] = ACTIONS(7027), + [anon_sym_DASH_EQ] = ACTIONS(7027), + [anon_sym_LT_LT_EQ] = ACTIONS(7027), + [anon_sym_GT_GT_EQ] = ACTIONS(7027), + [anon_sym_AMP_EQ] = ACTIONS(7027), + [anon_sym_CARET_EQ] = ACTIONS(7027), + [anon_sym_PIPE_EQ] = ACTIONS(7027), + [anon_sym_and_eq] = ACTIONS(7027), + [anon_sym_or_eq] = ACTIONS(7027), + [anon_sym_xor_eq] = ACTIONS(7027), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5611), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5611), + [anon_sym_not_eq] = ACTIONS(5611), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [anon_sym_L_DQUOTE] = ACTIONS(4429), + [anon_sym_u_DQUOTE] = ACTIONS(4429), + [anon_sym_U_DQUOTE] = ACTIONS(4429), + [anon_sym_u8_DQUOTE] = ACTIONS(4429), + [anon_sym_DQUOTE] = ACTIONS(4429), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(4435), + [anon_sym_LR_DQUOTE] = ACTIONS(4435), + [anon_sym_uR_DQUOTE] = ACTIONS(4435), + [anon_sym_UR_DQUOTE] = ACTIONS(4435), + [anon_sym_u8R_DQUOTE] = ACTIONS(4435), }, [STATE(3755)] = { - [sym_attribute_specifier] = STATE(3105), - [sym_enumerator_list] = STATE(3946), - [sym__enum_base_clause] = STATE(3767), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8002), - [anon_sym_COMMA] = ACTIONS(8002), - [anon_sym_RPAREN] = ACTIONS(8002), - [anon_sym_LPAREN2] = ACTIONS(8002), - [anon_sym_DASH] = ACTIONS(8000), - [anon_sym_PLUS] = ACTIONS(8000), - [anon_sym_STAR] = ACTIONS(8002), - [anon_sym_SLASH] = ACTIONS(8000), - [anon_sym_PERCENT] = ACTIONS(8002), - [anon_sym_PIPE_PIPE] = ACTIONS(8002), - [anon_sym_AMP_AMP] = ACTIONS(8002), - [anon_sym_PIPE] = ACTIONS(8000), - [anon_sym_CARET] = ACTIONS(8002), - [anon_sym_AMP] = ACTIONS(8000), - [anon_sym_EQ_EQ] = ACTIONS(8002), - [anon_sym_BANG_EQ] = ACTIONS(8002), - [anon_sym_GT] = ACTIONS(8000), - [anon_sym_GT_EQ] = ACTIONS(8002), - [anon_sym_LT_EQ] = ACTIONS(8000), - [anon_sym_LT] = ACTIONS(8000), - [anon_sym_LT_LT] = ACTIONS(8002), - [anon_sym_GT_GT] = ACTIONS(8002), - [anon_sym_SEMI] = ACTIONS(8002), - [anon_sym___extension__] = ACTIONS(8002), - [anon_sym___attribute__] = ACTIONS(9312), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_COLON] = ACTIONS(9574), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8002), - [anon_sym_LBRACE] = ACTIONS(9576), - [anon_sym_RBRACE] = ACTIONS(8002), - [anon_sym_LBRACK] = ACTIONS(8002), - [anon_sym_const] = ACTIONS(8000), - [anon_sym_constexpr] = ACTIONS(8002), - [anon_sym_volatile] = ACTIONS(8002), - [anon_sym_restrict] = ACTIONS(8002), - [anon_sym___restrict__] = ACTIONS(8002), - [anon_sym__Atomic] = ACTIONS(8002), - [anon_sym__Noreturn] = ACTIONS(8002), - [anon_sym_noreturn] = ACTIONS(8002), - [anon_sym__Nonnull] = ACTIONS(8002), - [anon_sym_mutable] = ACTIONS(8002), - [anon_sym_constinit] = ACTIONS(8002), - [anon_sym_consteval] = ACTIONS(8002), - [anon_sym_alignas] = ACTIONS(8002), - [anon_sym__Alignas] = ACTIONS(8002), - [anon_sym_QMARK] = ACTIONS(8002), - [anon_sym_LT_EQ_GT] = ACTIONS(8002), - [anon_sym_or] = ACTIONS(8002), - [anon_sym_and] = ACTIONS(8002), - [anon_sym_bitor] = ACTIONS(8002), - [anon_sym_xor] = ACTIONS(8002), - [anon_sym_bitand] = ACTIONS(8002), - [anon_sym_not_eq] = ACTIONS(8002), - [anon_sym_DASH_DASH] = ACTIONS(8002), - [anon_sym_PLUS_PLUS] = ACTIONS(8002), - [anon_sym_DOT] = ACTIONS(8000), - [anon_sym_DOT_STAR] = ACTIONS(8002), - [anon_sym_DASH_GT] = ACTIONS(8002), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8002), - [anon_sym_override] = ACTIONS(8002), - [anon_sym_requires] = ACTIONS(8002), - [anon_sym_COLON_RBRACK] = ACTIONS(8002), + [sym_identifier] = ACTIONS(6649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6656), + [anon_sym_COMMA] = ACTIONS(6656), + [anon_sym_RPAREN] = ACTIONS(6656), + [anon_sym_LPAREN2] = ACTIONS(6656), + [anon_sym_STAR] = ACTIONS(6656), + [anon_sym_PIPE_PIPE] = ACTIONS(6656), + [anon_sym_AMP_AMP] = ACTIONS(6656), + [anon_sym_AMP] = ACTIONS(6649), + [anon_sym_SEMI] = ACTIONS(6656), + [anon_sym___extension__] = ACTIONS(6649), + [anon_sym_virtual] = ACTIONS(6649), + [anon_sym_extern] = ACTIONS(6649), + [anon_sym___attribute__] = ACTIONS(6649), + [anon_sym___attribute] = ACTIONS(6649), + [anon_sym_COLON] = ACTIONS(6649), + [anon_sym_COLON_COLON] = ACTIONS(6656), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6656), + [anon_sym___declspec] = ACTIONS(6649), + [anon_sym___based] = ACTIONS(6649), + [anon_sym_LBRACE] = ACTIONS(6656), + [anon_sym_signed] = ACTIONS(6649), + [anon_sym_unsigned] = ACTIONS(6649), + [anon_sym_long] = ACTIONS(6649), + [anon_sym_short] = ACTIONS(6649), + [anon_sym_LBRACK] = ACTIONS(6649), + [anon_sym_static] = ACTIONS(6649), + [anon_sym_EQ] = ACTIONS(6656), + [anon_sym_register] = ACTIONS(6649), + [anon_sym_inline] = ACTIONS(6649), + [anon_sym___inline] = ACTIONS(6649), + [anon_sym___inline__] = ACTIONS(6649), + [anon_sym___forceinline] = ACTIONS(6649), + [anon_sym_thread_local] = ACTIONS(6649), + [anon_sym___thread] = ACTIONS(6649), + [anon_sym_const] = ACTIONS(6649), + [anon_sym_constexpr] = ACTIONS(6649), + [anon_sym_volatile] = ACTIONS(6649), + [anon_sym_restrict] = ACTIONS(6649), + [anon_sym___restrict__] = ACTIONS(6649), + [anon_sym__Atomic] = ACTIONS(6649), + [anon_sym__Noreturn] = ACTIONS(6649), + [anon_sym_noreturn] = ACTIONS(6649), + [anon_sym__Nonnull] = ACTIONS(6649), + [anon_sym_mutable] = ACTIONS(6649), + [anon_sym_constinit] = ACTIONS(6649), + [anon_sym_consteval] = ACTIONS(6649), + [anon_sym_alignas] = ACTIONS(6649), + [anon_sym__Alignas] = ACTIONS(6649), + [sym_primitive_type] = ACTIONS(6649), + [anon_sym_or] = ACTIONS(6649), + [anon_sym_and] = ACTIONS(6649), + [anon_sym_asm] = ACTIONS(6649), + [anon_sym___asm__] = ACTIONS(6649), + [anon_sym___asm] = ACTIONS(6649), + [anon_sym_DASH_GT] = ACTIONS(6656), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(6649), + [anon_sym_decltype] = ACTIONS(6649), + [anon_sym_final] = ACTIONS(6649), + [anon_sym_override] = ACTIONS(6649), + [anon_sym_GT2] = ACTIONS(6656), + [anon_sym_try] = ACTIONS(6649), + [anon_sym_noexcept] = ACTIONS(6649), + [anon_sym_throw] = ACTIONS(6649), + [anon_sym_requires] = ACTIONS(6649), }, [STATE(3756)] = { - [sym_attribute_specifier] = STATE(3191), - [sym_enumerator_list] = STATE(3832), - [sym__enum_base_clause] = STATE(3796), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8008), - [anon_sym_COMMA] = ACTIONS(8008), - [anon_sym_RPAREN] = ACTIONS(8008), - [anon_sym_LPAREN2] = ACTIONS(8008), - [anon_sym_DASH] = ACTIONS(8006), - [anon_sym_PLUS] = ACTIONS(8006), - [anon_sym_STAR] = ACTIONS(8008), - [anon_sym_SLASH] = ACTIONS(8006), - [anon_sym_PERCENT] = ACTIONS(8008), - [anon_sym_PIPE_PIPE] = ACTIONS(8008), - [anon_sym_AMP_AMP] = ACTIONS(8008), - [anon_sym_PIPE] = ACTIONS(8006), - [anon_sym_CARET] = ACTIONS(8008), - [anon_sym_AMP] = ACTIONS(8006), - [anon_sym_EQ_EQ] = ACTIONS(8008), - [anon_sym_BANG_EQ] = ACTIONS(8008), - [anon_sym_GT] = ACTIONS(8006), - [anon_sym_GT_EQ] = ACTIONS(8008), - [anon_sym_LT_EQ] = ACTIONS(8006), - [anon_sym_LT] = ACTIONS(8006), - [anon_sym_LT_LT] = ACTIONS(8008), - [anon_sym_GT_GT] = ACTIONS(8008), - [anon_sym_SEMI] = ACTIONS(8008), - [anon_sym___extension__] = ACTIONS(8008), - [anon_sym___attribute__] = ACTIONS(9312), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_COLON] = ACTIONS(9574), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8008), - [anon_sym_LBRACE] = ACTIONS(9576), - [anon_sym_RBRACE] = ACTIONS(8008), - [anon_sym_LBRACK] = ACTIONS(8008), - [anon_sym_const] = ACTIONS(8006), - [anon_sym_constexpr] = ACTIONS(8008), - [anon_sym_volatile] = ACTIONS(8008), - [anon_sym_restrict] = ACTIONS(8008), - [anon_sym___restrict__] = ACTIONS(8008), - [anon_sym__Atomic] = ACTIONS(8008), - [anon_sym__Noreturn] = ACTIONS(8008), - [anon_sym_noreturn] = ACTIONS(8008), - [anon_sym__Nonnull] = ACTIONS(8008), - [anon_sym_mutable] = ACTIONS(8008), - [anon_sym_constinit] = ACTIONS(8008), - [anon_sym_consteval] = ACTIONS(8008), - [anon_sym_alignas] = ACTIONS(8008), - [anon_sym__Alignas] = ACTIONS(8008), - [anon_sym_QMARK] = ACTIONS(8008), - [anon_sym_LT_EQ_GT] = ACTIONS(8008), - [anon_sym_or] = ACTIONS(8008), - [anon_sym_and] = ACTIONS(8008), - [anon_sym_bitor] = ACTIONS(8008), - [anon_sym_xor] = ACTIONS(8008), - [anon_sym_bitand] = ACTIONS(8008), - [anon_sym_not_eq] = ACTIONS(8008), - [anon_sym_DASH_DASH] = ACTIONS(8008), - [anon_sym_PLUS_PLUS] = ACTIONS(8008), - [anon_sym_DOT] = ACTIONS(8006), - [anon_sym_DOT_STAR] = ACTIONS(8008), - [anon_sym_DASH_GT] = ACTIONS(8008), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(8008), - [anon_sym_override] = ACTIONS(8008), - [anon_sym_requires] = ACTIONS(8008), - [anon_sym_COLON_RBRACK] = ACTIONS(8008), + [sym_string_literal] = STATE(3730), + [sym_raw_string_literal] = STATE(3730), + [aux_sym_concatenated_string_repeat1] = STATE(3730), + [sym_identifier] = ACTIONS(9570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8464), + [anon_sym_COMMA] = ACTIONS(8464), + [anon_sym_LPAREN2] = ACTIONS(8464), + [anon_sym_DASH] = ACTIONS(8466), + [anon_sym_PLUS] = ACTIONS(8466), + [anon_sym_STAR] = ACTIONS(8466), + [anon_sym_SLASH] = ACTIONS(8466), + [anon_sym_PERCENT] = ACTIONS(8466), + [anon_sym_PIPE_PIPE] = ACTIONS(8464), + [anon_sym_AMP_AMP] = ACTIONS(8464), + [anon_sym_PIPE] = ACTIONS(8466), + [anon_sym_CARET] = ACTIONS(8466), + [anon_sym_AMP] = ACTIONS(8466), + [anon_sym_EQ_EQ] = ACTIONS(8464), + [anon_sym_BANG_EQ] = ACTIONS(8464), + [anon_sym_GT] = ACTIONS(8466), + [anon_sym_GT_EQ] = ACTIONS(8464), + [anon_sym_LT_EQ] = ACTIONS(8466), + [anon_sym_LT] = ACTIONS(8466), + [anon_sym_LT_LT] = ACTIONS(8466), + [anon_sym_GT_GT] = ACTIONS(8466), + [anon_sym_LBRACK] = ACTIONS(8464), + [anon_sym_RBRACK] = ACTIONS(8464), + [anon_sym_EQ] = ACTIONS(8466), + [anon_sym_QMARK] = ACTIONS(8464), + [anon_sym_STAR_EQ] = ACTIONS(8464), + [anon_sym_SLASH_EQ] = ACTIONS(8464), + [anon_sym_PERCENT_EQ] = ACTIONS(8464), + [anon_sym_PLUS_EQ] = ACTIONS(8464), + [anon_sym_DASH_EQ] = ACTIONS(8464), + [anon_sym_LT_LT_EQ] = ACTIONS(8464), + [anon_sym_GT_GT_EQ] = ACTIONS(8464), + [anon_sym_AMP_EQ] = ACTIONS(8464), + [anon_sym_CARET_EQ] = ACTIONS(8464), + [anon_sym_PIPE_EQ] = ACTIONS(8464), + [anon_sym_and_eq] = ACTIONS(8466), + [anon_sym_or_eq] = ACTIONS(8466), + [anon_sym_xor_eq] = ACTIONS(8466), + [anon_sym_LT_EQ_GT] = ACTIONS(8464), + [anon_sym_or] = ACTIONS(8466), + [anon_sym_and] = ACTIONS(8466), + [anon_sym_bitor] = ACTIONS(8466), + [anon_sym_xor] = ACTIONS(8466), + [anon_sym_bitand] = ACTIONS(8466), + [anon_sym_not_eq] = ACTIONS(8466), + [anon_sym_DASH_DASH] = ACTIONS(8464), + [anon_sym_PLUS_PLUS] = ACTIONS(8464), + [anon_sym_DOT] = ACTIONS(8466), + [anon_sym_DOT_STAR] = ACTIONS(8464), + [anon_sym_DASH_GT] = ACTIONS(8464), + [anon_sym_L_DQUOTE] = ACTIONS(7052), + [anon_sym_u_DQUOTE] = ACTIONS(7052), + [anon_sym_U_DQUOTE] = ACTIONS(7052), + [anon_sym_u8_DQUOTE] = ACTIONS(7052), + [anon_sym_DQUOTE] = ACTIONS(7052), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(7058), + [anon_sym_LR_DQUOTE] = ACTIONS(7058), + [anon_sym_uR_DQUOTE] = ACTIONS(7058), + [anon_sym_UR_DQUOTE] = ACTIONS(7058), + [anon_sym_u8R_DQUOTE] = ACTIONS(7058), + [sym_literal_suffix] = ACTIONS(8466), }, [STATE(3757)] = { - [sym_template_argument_list] = STATE(3709), - [sym_identifier] = ACTIONS(9578), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9580), - [anon_sym_COMMA] = ACTIONS(9580), - [anon_sym_RPAREN] = ACTIONS(9580), - [aux_sym_preproc_if_token2] = ACTIONS(9580), - [aux_sym_preproc_else_token1] = ACTIONS(9580), - [aux_sym_preproc_elif_token1] = ACTIONS(9578), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9580), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9580), - [anon_sym_LPAREN2] = ACTIONS(9580), - [anon_sym_DASH] = ACTIONS(9578), - [anon_sym_PLUS] = ACTIONS(9578), - [anon_sym_STAR] = ACTIONS(9578), - [anon_sym_SLASH] = ACTIONS(9578), - [anon_sym_PERCENT] = ACTIONS(9578), - [anon_sym_PIPE_PIPE] = ACTIONS(9580), - [anon_sym_AMP_AMP] = ACTIONS(9580), - [anon_sym_PIPE] = ACTIONS(9578), - [anon_sym_CARET] = ACTIONS(9578), - [anon_sym_AMP] = ACTIONS(9578), - [anon_sym_EQ_EQ] = ACTIONS(9580), - [anon_sym_BANG_EQ] = ACTIONS(9580), - [anon_sym_GT] = ACTIONS(9578), - [anon_sym_GT_EQ] = ACTIONS(9580), - [anon_sym_LT_EQ] = ACTIONS(9578), - [anon_sym_LT] = ACTIONS(9582), - [anon_sym_LT_LT] = ACTIONS(9578), - [anon_sym_GT_GT] = ACTIONS(9578), - [anon_sym_SEMI] = ACTIONS(9580), - [anon_sym___attribute__] = ACTIONS(9578), - [anon_sym___attribute] = ACTIONS(9578), - [anon_sym_COLON] = ACTIONS(9578), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9580), - [anon_sym_RBRACE] = ACTIONS(9580), - [anon_sym_LBRACK] = ACTIONS(9580), - [anon_sym_EQ] = ACTIONS(9578), - [anon_sym_QMARK] = ACTIONS(9580), - [anon_sym_STAR_EQ] = ACTIONS(9580), - [anon_sym_SLASH_EQ] = ACTIONS(9580), - [anon_sym_PERCENT_EQ] = ACTIONS(9580), - [anon_sym_PLUS_EQ] = ACTIONS(9580), - [anon_sym_DASH_EQ] = ACTIONS(9580), - [anon_sym_LT_LT_EQ] = ACTIONS(9580), - [anon_sym_GT_GT_EQ] = ACTIONS(9580), - [anon_sym_AMP_EQ] = ACTIONS(9580), - [anon_sym_CARET_EQ] = ACTIONS(9580), - [anon_sym_PIPE_EQ] = ACTIONS(9580), - [anon_sym_and_eq] = ACTIONS(9578), - [anon_sym_or_eq] = ACTIONS(9578), - [anon_sym_xor_eq] = ACTIONS(9578), - [anon_sym_LT_EQ_GT] = ACTIONS(9580), - [anon_sym_or] = ACTIONS(9578), - [anon_sym_and] = ACTIONS(9578), - [anon_sym_bitor] = ACTIONS(9578), - [anon_sym_xor] = ACTIONS(9578), - [anon_sym_bitand] = ACTIONS(9578), - [anon_sym_not_eq] = ACTIONS(9578), - [anon_sym_DASH_DASH] = ACTIONS(9580), - [anon_sym_PLUS_PLUS] = ACTIONS(9580), - [anon_sym_DOT] = ACTIONS(9578), - [anon_sym_DOT_STAR] = ACTIONS(9580), - [anon_sym_DASH_GT] = ACTIONS(9580), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9580), + [sym_type_qualifier] = STATE(3757), + [sym_alignas_qualifier] = STATE(4020), + [aux_sym__type_definition_type_repeat1] = STATE(3757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6880), + [anon_sym_COMMA] = ACTIONS(6880), + [anon_sym_LPAREN2] = ACTIONS(6880), + [anon_sym_DASH] = ACTIONS(6878), + [anon_sym_PLUS] = ACTIONS(6878), + [anon_sym_STAR] = ACTIONS(6880), + [anon_sym_SLASH] = ACTIONS(6878), + [anon_sym_PERCENT] = ACTIONS(6880), + [anon_sym_PIPE_PIPE] = ACTIONS(6880), + [anon_sym_AMP_AMP] = ACTIONS(6880), + [anon_sym_PIPE] = ACTIONS(6878), + [anon_sym_CARET] = ACTIONS(6880), + [anon_sym_AMP] = ACTIONS(6878), + [anon_sym_EQ_EQ] = ACTIONS(6880), + [anon_sym_BANG_EQ] = ACTIONS(6880), + [anon_sym_GT] = ACTIONS(6878), + [anon_sym_GT_EQ] = ACTIONS(6880), + [anon_sym_LT_EQ] = ACTIONS(6878), + [anon_sym_LT] = ACTIONS(6878), + [anon_sym_LT_LT] = ACTIONS(6880), + [anon_sym_GT_GT] = ACTIONS(6880), + [anon_sym___extension__] = ACTIONS(9572), + [anon_sym___attribute__] = ACTIONS(6880), + [anon_sym___attribute] = ACTIONS(6878), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6880), + [anon_sym_LBRACK] = ACTIONS(6878), + [anon_sym_RBRACK] = ACTIONS(6880), + [anon_sym_const] = ACTIONS(9575), + [anon_sym_constexpr] = ACTIONS(9572), + [anon_sym_volatile] = ACTIONS(9572), + [anon_sym_restrict] = ACTIONS(9572), + [anon_sym___restrict__] = ACTIONS(9572), + [anon_sym__Atomic] = ACTIONS(9572), + [anon_sym__Noreturn] = ACTIONS(9572), + [anon_sym_noreturn] = ACTIONS(9572), + [anon_sym__Nonnull] = ACTIONS(9572), + [anon_sym_mutable] = ACTIONS(9572), + [anon_sym_constinit] = ACTIONS(9572), + [anon_sym_consteval] = ACTIONS(9572), + [anon_sym_alignas] = ACTIONS(9578), + [anon_sym__Alignas] = ACTIONS(9578), + [anon_sym_QMARK] = ACTIONS(6880), + [anon_sym_LT_EQ_GT] = ACTIONS(6880), + [anon_sym_or] = ACTIONS(6880), + [anon_sym_and] = ACTIONS(6880), + [anon_sym_bitor] = ACTIONS(6880), + [anon_sym_xor] = ACTIONS(6880), + [anon_sym_bitand] = ACTIONS(6880), + [anon_sym_not_eq] = ACTIONS(6880), + [anon_sym_DASH_DASH] = ACTIONS(6880), + [anon_sym_PLUS_PLUS] = ACTIONS(6880), + [anon_sym_asm] = ACTIONS(6880), + [anon_sym___asm__] = ACTIONS(6880), + [anon_sym___asm] = ACTIONS(6878), + [anon_sym_DOT] = ACTIONS(6878), + [anon_sym_DOT_STAR] = ACTIONS(6880), + [anon_sym_DASH_GT] = ACTIONS(6880), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6880), + [anon_sym_override] = ACTIONS(6880), + [anon_sym_noexcept] = ACTIONS(6880), + [anon_sym_throw] = ACTIONS(6880), + [anon_sym_requires] = ACTIONS(6880), }, [STATE(3758)] = { - [sym_string_literal] = STATE(5580), - [sym_template_argument_list] = STATE(6754), - [sym_raw_string_literal] = STATE(5580), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(8925), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_RBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(7044), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(7046), - [anon_sym_SLASH_EQ] = ACTIONS(7046), - [anon_sym_PERCENT_EQ] = ACTIONS(7046), - [anon_sym_PLUS_EQ] = ACTIONS(7046), - [anon_sym_DASH_EQ] = ACTIONS(7046), - [anon_sym_LT_LT_EQ] = ACTIONS(7046), - [anon_sym_GT_GT_EQ] = ACTIONS(7046), - [anon_sym_AMP_EQ] = ACTIONS(7046), - [anon_sym_CARET_EQ] = ACTIONS(7046), - [anon_sym_PIPE_EQ] = ACTIONS(7046), - [anon_sym_and_eq] = ACTIONS(7046), - [anon_sym_or_eq] = ACTIONS(7046), - [anon_sym_xor_eq] = ACTIONS(7046), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(7048), - [anon_sym_u_DQUOTE] = ACTIONS(7048), - [anon_sym_U_DQUOTE] = ACTIONS(7048), - [anon_sym_u8_DQUOTE] = ACTIONS(7048), - [anon_sym_DQUOTE] = ACTIONS(7048), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(7054), - [anon_sym_LR_DQUOTE] = ACTIONS(7054), - [anon_sym_uR_DQUOTE] = ACTIONS(7054), - [anon_sym_UR_DQUOTE] = ACTIONS(7054), - [anon_sym_u8R_DQUOTE] = ACTIONS(7054), + [sym_identifier] = ACTIONS(9581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9583), + [anon_sym_COMMA] = ACTIONS(9583), + [anon_sym_RPAREN] = ACTIONS(9583), + [aux_sym_preproc_if_token2] = ACTIONS(9583), + [aux_sym_preproc_else_token1] = ACTIONS(9583), + [aux_sym_preproc_elif_token1] = ACTIONS(9581), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9583), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9583), + [anon_sym_LPAREN2] = ACTIONS(9583), + [anon_sym_DASH] = ACTIONS(9581), + [anon_sym_PLUS] = ACTIONS(9581), + [anon_sym_STAR] = ACTIONS(9581), + [anon_sym_SLASH] = ACTIONS(9581), + [anon_sym_PERCENT] = ACTIONS(9581), + [anon_sym_PIPE_PIPE] = ACTIONS(9583), + [anon_sym_AMP_AMP] = ACTIONS(9583), + [anon_sym_PIPE] = ACTIONS(9581), + [anon_sym_CARET] = ACTIONS(9581), + [anon_sym_AMP] = ACTIONS(9581), + [anon_sym_EQ_EQ] = ACTIONS(9583), + [anon_sym_BANG_EQ] = ACTIONS(9583), + [anon_sym_GT] = ACTIONS(9581), + [anon_sym_GT_EQ] = ACTIONS(9583), + [anon_sym_LT_EQ] = ACTIONS(9581), + [anon_sym_LT] = ACTIONS(9581), + [anon_sym_LT_LT] = ACTIONS(9581), + [anon_sym_GT_GT] = ACTIONS(9581), + [anon_sym_SEMI] = ACTIONS(9583), + [anon_sym___attribute__] = ACTIONS(9581), + [anon_sym___attribute] = ACTIONS(9581), + [anon_sym_COLON] = ACTIONS(9581), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9583), + [anon_sym_LBRACE] = ACTIONS(9583), + [anon_sym_RBRACE] = ACTIONS(9583), + [anon_sym_LBRACK] = ACTIONS(9583), + [anon_sym_EQ] = ACTIONS(9581), + [anon_sym_QMARK] = ACTIONS(9583), + [anon_sym_STAR_EQ] = ACTIONS(9583), + [anon_sym_SLASH_EQ] = ACTIONS(9583), + [anon_sym_PERCENT_EQ] = ACTIONS(9583), + [anon_sym_PLUS_EQ] = ACTIONS(9583), + [anon_sym_DASH_EQ] = ACTIONS(9583), + [anon_sym_LT_LT_EQ] = ACTIONS(9583), + [anon_sym_GT_GT_EQ] = ACTIONS(9583), + [anon_sym_AMP_EQ] = ACTIONS(9583), + [anon_sym_CARET_EQ] = ACTIONS(9583), + [anon_sym_PIPE_EQ] = ACTIONS(9583), + [anon_sym_and_eq] = ACTIONS(9581), + [anon_sym_or_eq] = ACTIONS(9581), + [anon_sym_xor_eq] = ACTIONS(9581), + [anon_sym_LT_EQ_GT] = ACTIONS(9583), + [anon_sym_or] = ACTIONS(9581), + [anon_sym_and] = ACTIONS(9581), + [anon_sym_bitor] = ACTIONS(9581), + [anon_sym_xor] = ACTIONS(9581), + [anon_sym_bitand] = ACTIONS(9581), + [anon_sym_not_eq] = ACTIONS(9581), + [anon_sym_DASH_DASH] = ACTIONS(9583), + [anon_sym_PLUS_PLUS] = ACTIONS(9583), + [anon_sym_DOT] = ACTIONS(9581), + [anon_sym_DOT_STAR] = ACTIONS(9583), + [anon_sym_DASH_GT] = ACTIONS(9583), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9583), }, [STATE(3759)] = { - [sym_decltype_auto] = STATE(4121), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9585), - [anon_sym_decltype] = ACTIONS(6813), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), + [sym_identifier] = ACTIONS(9585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9587), + [anon_sym_COMMA] = ACTIONS(9587), + [anon_sym_RPAREN] = ACTIONS(9587), + [aux_sym_preproc_if_token2] = ACTIONS(9587), + [aux_sym_preproc_else_token1] = ACTIONS(9587), + [aux_sym_preproc_elif_token1] = ACTIONS(9585), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9587), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9587), + [anon_sym_LPAREN2] = ACTIONS(9587), + [anon_sym_DASH] = ACTIONS(9585), + [anon_sym_PLUS] = ACTIONS(9585), + [anon_sym_STAR] = ACTIONS(9585), + [anon_sym_SLASH] = ACTIONS(9585), + [anon_sym_PERCENT] = ACTIONS(9585), + [anon_sym_PIPE_PIPE] = ACTIONS(9587), + [anon_sym_AMP_AMP] = ACTIONS(9587), + [anon_sym_PIPE] = ACTIONS(9585), + [anon_sym_CARET] = ACTIONS(9585), + [anon_sym_AMP] = ACTIONS(9585), + [anon_sym_EQ_EQ] = ACTIONS(9587), + [anon_sym_BANG_EQ] = ACTIONS(9587), + [anon_sym_GT] = ACTIONS(9585), + [anon_sym_GT_EQ] = ACTIONS(9587), + [anon_sym_LT_EQ] = ACTIONS(9585), + [anon_sym_LT] = ACTIONS(9585), + [anon_sym_LT_LT] = ACTIONS(9585), + [anon_sym_GT_GT] = ACTIONS(9585), + [anon_sym_SEMI] = ACTIONS(9587), + [anon_sym___attribute__] = ACTIONS(9585), + [anon_sym___attribute] = ACTIONS(9585), + [anon_sym_COLON] = ACTIONS(9585), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9587), + [anon_sym_LBRACE] = ACTIONS(9587), + [anon_sym_RBRACE] = ACTIONS(9587), + [anon_sym_LBRACK] = ACTIONS(9587), + [anon_sym_EQ] = ACTIONS(9585), + [anon_sym_QMARK] = ACTIONS(9587), + [anon_sym_STAR_EQ] = ACTIONS(9587), + [anon_sym_SLASH_EQ] = ACTIONS(9587), + [anon_sym_PERCENT_EQ] = ACTIONS(9587), + [anon_sym_PLUS_EQ] = ACTIONS(9587), + [anon_sym_DASH_EQ] = ACTIONS(9587), + [anon_sym_LT_LT_EQ] = ACTIONS(9587), + [anon_sym_GT_GT_EQ] = ACTIONS(9587), + [anon_sym_AMP_EQ] = ACTIONS(9587), + [anon_sym_CARET_EQ] = ACTIONS(9587), + [anon_sym_PIPE_EQ] = ACTIONS(9587), + [anon_sym_and_eq] = ACTIONS(9585), + [anon_sym_or_eq] = ACTIONS(9585), + [anon_sym_xor_eq] = ACTIONS(9585), + [anon_sym_LT_EQ_GT] = ACTIONS(9587), + [anon_sym_or] = ACTIONS(9585), + [anon_sym_and] = ACTIONS(9585), + [anon_sym_bitor] = ACTIONS(9585), + [anon_sym_xor] = ACTIONS(9585), + [anon_sym_bitand] = ACTIONS(9585), + [anon_sym_not_eq] = ACTIONS(9585), + [anon_sym_DASH_DASH] = ACTIONS(9587), + [anon_sym_PLUS_PLUS] = ACTIONS(9587), + [anon_sym_DOT] = ACTIONS(9585), + [anon_sym_DOT_STAR] = ACTIONS(9587), + [anon_sym_DASH_GT] = ACTIONS(9587), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9587), }, [STATE(3760)] = { - [sym_string_literal] = STATE(3707), - [sym_raw_string_literal] = STATE(3707), - [aux_sym_concatenated_string_repeat1] = STATE(3707), - [sym_identifier] = ACTIONS(9587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8466), - [anon_sym_COMMA] = ACTIONS(8466), - [anon_sym_LPAREN2] = ACTIONS(8466), - [anon_sym_DASH] = ACTIONS(8468), - [anon_sym_PLUS] = ACTIONS(8468), - [anon_sym_STAR] = ACTIONS(8468), - [anon_sym_SLASH] = ACTIONS(8468), - [anon_sym_PERCENT] = ACTIONS(8468), - [anon_sym_PIPE_PIPE] = ACTIONS(8466), - [anon_sym_AMP_AMP] = ACTIONS(8466), - [anon_sym_PIPE] = ACTIONS(8468), - [anon_sym_CARET] = ACTIONS(8468), - [anon_sym_AMP] = ACTIONS(8468), - [anon_sym_EQ_EQ] = ACTIONS(8466), - [anon_sym_BANG_EQ] = ACTIONS(8466), - [anon_sym_GT] = ACTIONS(8468), - [anon_sym_GT_EQ] = ACTIONS(8468), - [anon_sym_LT_EQ] = ACTIONS(8468), - [anon_sym_LT] = ACTIONS(8468), - [anon_sym_LT_LT] = ACTIONS(8468), - [anon_sym_GT_GT] = ACTIONS(8468), - [anon_sym_LBRACK] = ACTIONS(8466), - [anon_sym_EQ] = ACTIONS(8468), - [anon_sym_QMARK] = ACTIONS(8466), - [anon_sym_STAR_EQ] = ACTIONS(8466), - [anon_sym_SLASH_EQ] = ACTIONS(8466), - [anon_sym_PERCENT_EQ] = ACTIONS(8466), - [anon_sym_PLUS_EQ] = ACTIONS(8466), - [anon_sym_DASH_EQ] = ACTIONS(8466), - [anon_sym_LT_LT_EQ] = ACTIONS(8466), - [anon_sym_GT_GT_EQ] = ACTIONS(8468), - [anon_sym_AMP_EQ] = ACTIONS(8466), - [anon_sym_CARET_EQ] = ACTIONS(8466), - [anon_sym_PIPE_EQ] = ACTIONS(8466), - [anon_sym_and_eq] = ACTIONS(8468), - [anon_sym_or_eq] = ACTIONS(8468), - [anon_sym_xor_eq] = ACTIONS(8468), - [anon_sym_LT_EQ_GT] = ACTIONS(8466), - [anon_sym_or] = ACTIONS(8468), - [anon_sym_and] = ACTIONS(8468), - [anon_sym_bitor] = ACTIONS(8468), - [anon_sym_xor] = ACTIONS(8468), - [anon_sym_bitand] = ACTIONS(8468), - [anon_sym_not_eq] = ACTIONS(8468), - [anon_sym_DASH_DASH] = ACTIONS(8466), - [anon_sym_PLUS_PLUS] = ACTIONS(8466), - [anon_sym_DOT] = ACTIONS(8468), - [anon_sym_DOT_STAR] = ACTIONS(8466), - [anon_sym_DASH_GT] = ACTIONS(8466), - [anon_sym_L_DQUOTE] = ACTIONS(7034), - [anon_sym_u_DQUOTE] = ACTIONS(7034), - [anon_sym_U_DQUOTE] = ACTIONS(7034), - [anon_sym_u8_DQUOTE] = ACTIONS(7034), - [anon_sym_DQUOTE] = ACTIONS(7034), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(8466), - [anon_sym_R_DQUOTE] = ACTIONS(7040), - [anon_sym_LR_DQUOTE] = ACTIONS(7040), - [anon_sym_uR_DQUOTE] = ACTIONS(7040), - [anon_sym_UR_DQUOTE] = ACTIONS(7040), - [anon_sym_u8R_DQUOTE] = ACTIONS(7040), - [sym_literal_suffix] = ACTIONS(8468), + [sym_identifier] = ACTIONS(9589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9591), + [anon_sym_COMMA] = ACTIONS(9591), + [anon_sym_RPAREN] = ACTIONS(9591), + [aux_sym_preproc_if_token2] = ACTIONS(9591), + [aux_sym_preproc_else_token1] = ACTIONS(9591), + [aux_sym_preproc_elif_token1] = ACTIONS(9589), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9591), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9591), + [anon_sym_LPAREN2] = ACTIONS(9591), + [anon_sym_DASH] = ACTIONS(9589), + [anon_sym_PLUS] = ACTIONS(9589), + [anon_sym_STAR] = ACTIONS(9589), + [anon_sym_SLASH] = ACTIONS(9589), + [anon_sym_PERCENT] = ACTIONS(9589), + [anon_sym_PIPE_PIPE] = ACTIONS(9591), + [anon_sym_AMP_AMP] = ACTIONS(9591), + [anon_sym_PIPE] = ACTIONS(9589), + [anon_sym_CARET] = ACTIONS(9589), + [anon_sym_AMP] = ACTIONS(9589), + [anon_sym_EQ_EQ] = ACTIONS(9591), + [anon_sym_BANG_EQ] = ACTIONS(9591), + [anon_sym_GT] = ACTIONS(9589), + [anon_sym_GT_EQ] = ACTIONS(9591), + [anon_sym_LT_EQ] = ACTIONS(9589), + [anon_sym_LT] = ACTIONS(9589), + [anon_sym_LT_LT] = ACTIONS(9589), + [anon_sym_GT_GT] = ACTIONS(9589), + [anon_sym_SEMI] = ACTIONS(9591), + [anon_sym___attribute__] = ACTIONS(9589), + [anon_sym___attribute] = ACTIONS(9589), + [anon_sym_COLON] = ACTIONS(9589), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9591), + [anon_sym_RBRACE] = ACTIONS(9591), + [anon_sym_LBRACK] = ACTIONS(9591), + [anon_sym_EQ] = ACTIONS(9589), + [anon_sym_QMARK] = ACTIONS(9591), + [anon_sym_STAR_EQ] = ACTIONS(9591), + [anon_sym_SLASH_EQ] = ACTIONS(9591), + [anon_sym_PERCENT_EQ] = ACTIONS(9591), + [anon_sym_PLUS_EQ] = ACTIONS(9591), + [anon_sym_DASH_EQ] = ACTIONS(9591), + [anon_sym_LT_LT_EQ] = ACTIONS(9591), + [anon_sym_GT_GT_EQ] = ACTIONS(9591), + [anon_sym_AMP_EQ] = ACTIONS(9591), + [anon_sym_CARET_EQ] = ACTIONS(9591), + [anon_sym_PIPE_EQ] = ACTIONS(9591), + [anon_sym_and_eq] = ACTIONS(9589), + [anon_sym_or_eq] = ACTIONS(9589), + [anon_sym_xor_eq] = ACTIONS(9589), + [anon_sym_LT_EQ_GT] = ACTIONS(9591), + [anon_sym_or] = ACTIONS(9589), + [anon_sym_and] = ACTIONS(9589), + [anon_sym_bitor] = ACTIONS(9589), + [anon_sym_xor] = ACTIONS(9589), + [anon_sym_bitand] = ACTIONS(9589), + [anon_sym_not_eq] = ACTIONS(9589), + [anon_sym_DASH_DASH] = ACTIONS(9591), + [anon_sym_PLUS_PLUS] = ACTIONS(9591), + [anon_sym_DOT] = ACTIONS(9589), + [anon_sym_DOT_STAR] = ACTIONS(9591), + [anon_sym_DASH_GT] = ACTIONS(9591), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9591), }, [STATE(3761)] = { - [sym_string_literal] = STATE(4105), - [sym_template_argument_list] = STATE(5616), - [sym_raw_string_literal] = STATE(4105), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [anon_sym_LT_EQ] = ACTIONS(5645), - [anon_sym_LT] = ACTIONS(7101), - [anon_sym_LT_LT] = ACTIONS(5645), - [anon_sym_GT_GT] = ACTIONS(5645), - [anon_sym_COLON] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(7056), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(7058), - [anon_sym_SLASH_EQ] = ACTIONS(7058), - [anon_sym_PERCENT_EQ] = ACTIONS(7058), - [anon_sym_PLUS_EQ] = ACTIONS(7058), - [anon_sym_DASH_EQ] = ACTIONS(7058), - [anon_sym_LT_LT_EQ] = ACTIONS(7058), - [anon_sym_GT_GT_EQ] = ACTIONS(7058), - [anon_sym_AMP_EQ] = ACTIONS(7058), - [anon_sym_CARET_EQ] = ACTIONS(7058), - [anon_sym_PIPE_EQ] = ACTIONS(7058), - [anon_sym_and_eq] = ACTIONS(7058), - [anon_sym_or_eq] = ACTIONS(7058), - [anon_sym_xor_eq] = ACTIONS(7058), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [anon_sym_or] = ACTIONS(5645), - [anon_sym_and] = ACTIONS(5645), - [anon_sym_bitor] = ACTIONS(5638), - [anon_sym_xor] = ACTIONS(5645), - [anon_sym_bitand] = ACTIONS(5638), - [anon_sym_not_eq] = ACTIONS(5638), - [anon_sym_DASH_DASH] = ACTIONS(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [anon_sym_L_DQUOTE] = ACTIONS(3889), - [anon_sym_u_DQUOTE] = ACTIONS(3889), - [anon_sym_U_DQUOTE] = ACTIONS(3889), - [anon_sym_u8_DQUOTE] = ACTIONS(3889), - [anon_sym_DQUOTE] = ACTIONS(3889), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(3899), - [anon_sym_LR_DQUOTE] = ACTIONS(3899), - [anon_sym_uR_DQUOTE] = ACTIONS(3899), - [anon_sym_UR_DQUOTE] = ACTIONS(3899), - [anon_sym_u8R_DQUOTE] = ACTIONS(3899), + [sym_template_argument_list] = STATE(3755), + [aux_sym_sized_type_specifier_repeat1] = STATE(3952), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), + [anon_sym_COMMA] = ACTIONS(7359), + [anon_sym_LPAREN2] = ACTIONS(7359), + [anon_sym_DASH] = ACTIONS(7357), + [anon_sym_PLUS] = ACTIONS(7357), + [anon_sym_STAR] = ACTIONS(7359), + [anon_sym_SLASH] = ACTIONS(7357), + [anon_sym_PERCENT] = ACTIONS(7359), + [anon_sym_PIPE_PIPE] = ACTIONS(7359), + [anon_sym_AMP_AMP] = ACTIONS(7359), + [anon_sym_PIPE] = ACTIONS(7357), + [anon_sym_CARET] = ACTIONS(7359), + [anon_sym_AMP] = ACTIONS(7357), + [anon_sym_EQ_EQ] = ACTIONS(7359), + [anon_sym_BANG_EQ] = ACTIONS(7359), + [anon_sym_GT] = ACTIONS(7357), + [anon_sym_GT_EQ] = ACTIONS(7357), + [anon_sym_LT_EQ] = ACTIONS(7357), + [anon_sym_LT] = ACTIONS(7357), + [anon_sym_LT_LT] = ACTIONS(7359), + [anon_sym_GT_GT] = ACTIONS(7357), + [anon_sym___extension__] = ACTIONS(7359), + [anon_sym___attribute__] = ACTIONS(7359), + [anon_sym___attribute] = ACTIONS(7357), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_LBRACE] = ACTIONS(7359), + [anon_sym_signed] = ACTIONS(7032), + [anon_sym_unsigned] = ACTIONS(7032), + [anon_sym_long] = ACTIONS(7032), + [anon_sym_short] = ACTIONS(7032), + [anon_sym_LBRACK] = ACTIONS(7359), + [anon_sym_const] = ACTIONS(7357), + [anon_sym_constexpr] = ACTIONS(7359), + [anon_sym_volatile] = ACTIONS(7359), + [anon_sym_restrict] = ACTIONS(7359), + [anon_sym___restrict__] = ACTIONS(7359), + [anon_sym__Atomic] = ACTIONS(7359), + [anon_sym__Noreturn] = ACTIONS(7359), + [anon_sym_noreturn] = ACTIONS(7359), + [anon_sym__Nonnull] = ACTIONS(7359), + [anon_sym_mutable] = ACTIONS(7359), + [anon_sym_constinit] = ACTIONS(7359), + [anon_sym_consteval] = ACTIONS(7359), + [anon_sym_alignas] = ACTIONS(7359), + [anon_sym__Alignas] = ACTIONS(7359), + [anon_sym_QMARK] = ACTIONS(7359), + [anon_sym_LT_EQ_GT] = ACTIONS(7359), + [anon_sym_or] = ACTIONS(7359), + [anon_sym_and] = ACTIONS(7359), + [anon_sym_bitor] = ACTIONS(7359), + [anon_sym_xor] = ACTIONS(7359), + [anon_sym_bitand] = ACTIONS(7359), + [anon_sym_not_eq] = ACTIONS(7359), + [anon_sym_DASH_DASH] = ACTIONS(7359), + [anon_sym_PLUS_PLUS] = ACTIONS(7359), + [anon_sym_DOT] = ACTIONS(7357), + [anon_sym_DOT_STAR] = ACTIONS(7359), + [anon_sym_DASH_GT] = ACTIONS(7359), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7359), + [anon_sym_override] = ACTIONS(7359), + [anon_sym_GT2] = ACTIONS(7359), + [anon_sym_requires] = ACTIONS(7359), }, [STATE(3762)] = { - [sym_type_qualifier] = STATE(3799), - [sym_alignas_qualifier] = STATE(3877), - [aux_sym__type_definition_type_repeat1] = STATE(3799), - [aux_sym_sized_type_specifier_repeat1] = STATE(4097), - [sym_identifier] = ACTIONS(9154), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7249), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(9589), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(9591), - [anon_sym_unsigned] = ACTIONS(9591), - [anon_sym_long] = ACTIONS(9591), - [anon_sym_short] = ACTIONS(9591), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_RBRACK] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(9589), - [anon_sym_constexpr] = ACTIONS(9589), - [anon_sym_volatile] = ACTIONS(9589), - [anon_sym_restrict] = ACTIONS(9589), - [anon_sym___restrict__] = ACTIONS(9589), - [anon_sym__Atomic] = ACTIONS(9589), - [anon_sym__Noreturn] = ACTIONS(9589), - [anon_sym_noreturn] = ACTIONS(9589), - [anon_sym__Nonnull] = ACTIONS(9589), - [anon_sym_mutable] = ACTIONS(9589), - [anon_sym_constinit] = ACTIONS(9589), - [anon_sym_consteval] = ACTIONS(9589), - [anon_sym_alignas] = ACTIONS(9593), - [anon_sym__Alignas] = ACTIONS(9593), - [sym_primitive_type] = ACTIONS(8878), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(9593), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9595), + [anon_sym_COMMA] = ACTIONS(9595), + [anon_sym_RPAREN] = ACTIONS(9595), + [aux_sym_preproc_if_token2] = ACTIONS(9595), + [aux_sym_preproc_else_token1] = ACTIONS(9595), + [aux_sym_preproc_elif_token1] = ACTIONS(9593), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9595), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9595), + [anon_sym_LPAREN2] = ACTIONS(9595), + [anon_sym_DASH] = ACTIONS(9593), + [anon_sym_PLUS] = ACTIONS(9593), + [anon_sym_STAR] = ACTIONS(9593), + [anon_sym_SLASH] = ACTIONS(9593), + [anon_sym_PERCENT] = ACTIONS(9593), + [anon_sym_PIPE_PIPE] = ACTIONS(9595), + [anon_sym_AMP_AMP] = ACTIONS(9595), + [anon_sym_PIPE] = ACTIONS(9593), + [anon_sym_CARET] = ACTIONS(9593), + [anon_sym_AMP] = ACTIONS(9593), + [anon_sym_EQ_EQ] = ACTIONS(9595), + [anon_sym_BANG_EQ] = ACTIONS(9595), + [anon_sym_GT] = ACTIONS(9593), + [anon_sym_GT_EQ] = ACTIONS(9595), + [anon_sym_LT_EQ] = ACTIONS(9593), + [anon_sym_LT] = ACTIONS(9593), + [anon_sym_LT_LT] = ACTIONS(9593), + [anon_sym_GT_GT] = ACTIONS(9593), + [anon_sym_SEMI] = ACTIONS(9595), + [anon_sym___attribute__] = ACTIONS(9593), + [anon_sym___attribute] = ACTIONS(9593), + [anon_sym_COLON] = ACTIONS(9593), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9595), + [anon_sym_RBRACE] = ACTIONS(9595), + [anon_sym_LBRACK] = ACTIONS(9593), + [anon_sym_EQ] = ACTIONS(9593), + [anon_sym_QMARK] = ACTIONS(9595), + [anon_sym_STAR_EQ] = ACTIONS(9595), + [anon_sym_SLASH_EQ] = ACTIONS(9595), + [anon_sym_PERCENT_EQ] = ACTIONS(9595), + [anon_sym_PLUS_EQ] = ACTIONS(9595), + [anon_sym_DASH_EQ] = ACTIONS(9595), + [anon_sym_LT_LT_EQ] = ACTIONS(9595), + [anon_sym_GT_GT_EQ] = ACTIONS(9595), + [anon_sym_AMP_EQ] = ACTIONS(9595), + [anon_sym_CARET_EQ] = ACTIONS(9595), + [anon_sym_PIPE_EQ] = ACTIONS(9595), + [anon_sym_and_eq] = ACTIONS(9593), + [anon_sym_or_eq] = ACTIONS(9593), + [anon_sym_xor_eq] = ACTIONS(9593), + [anon_sym_LT_EQ_GT] = ACTIONS(9595), + [anon_sym_or] = ACTIONS(9593), + [anon_sym_and] = ACTIONS(9593), + [anon_sym_bitor] = ACTIONS(9593), + [anon_sym_xor] = ACTIONS(9593), + [anon_sym_bitand] = ACTIONS(9593), + [anon_sym_not_eq] = ACTIONS(9593), + [anon_sym_DASH_DASH] = ACTIONS(9595), + [anon_sym_PLUS_PLUS] = ACTIONS(9595), + [anon_sym_DOT] = ACTIONS(9593), + [anon_sym_DOT_STAR] = ACTIONS(9595), + [anon_sym_DASH_GT] = ACTIONS(9595), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9595), + [anon_sym_LBRACK_RBRACK] = ACTIONS(9597), }, [STATE(3763)] = { - [sym_identifier] = ACTIONS(9595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9597), - [anon_sym_COMMA] = ACTIONS(9597), - [aux_sym_preproc_if_token2] = ACTIONS(9597), - [aux_sym_preproc_else_token1] = ACTIONS(9597), - [aux_sym_preproc_elif_token1] = ACTIONS(9599), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9597), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9597), - [anon_sym_LPAREN2] = ACTIONS(9597), - [anon_sym_TILDE] = ACTIONS(9601), - [anon_sym_DASH] = ACTIONS(9599), - [anon_sym_PLUS] = ACTIONS(9599), - [anon_sym_STAR] = ACTIONS(9595), - [anon_sym_SLASH] = ACTIONS(9599), - [anon_sym_PERCENT] = ACTIONS(9599), - [anon_sym_PIPE_PIPE] = ACTIONS(9597), - [anon_sym_AMP_AMP] = ACTIONS(9597), - [anon_sym_PIPE] = ACTIONS(9599), - [anon_sym_CARET] = ACTIONS(9599), - [anon_sym_AMP] = ACTIONS(9599), - [anon_sym_EQ_EQ] = ACTIONS(9597), - [anon_sym_BANG_EQ] = ACTIONS(9597), - [anon_sym_GT] = ACTIONS(9599), - [anon_sym_GT_EQ] = ACTIONS(9597), - [anon_sym_LT_EQ] = ACTIONS(9599), - [anon_sym_LT] = ACTIONS(9599), - [anon_sym_LT_LT] = ACTIONS(9599), - [anon_sym_GT_GT] = ACTIONS(9599), - [anon_sym_COLON_COLON] = ACTIONS(9601), - [anon_sym___based] = ACTIONS(9595), - [anon_sym_LBRACK] = ACTIONS(9599), - [anon_sym_EQ] = ACTIONS(9599), - [anon_sym_QMARK] = ACTIONS(9597), - [anon_sym_STAR_EQ] = ACTIONS(9597), - [anon_sym_SLASH_EQ] = ACTIONS(9597), - [anon_sym_PERCENT_EQ] = ACTIONS(9597), - [anon_sym_PLUS_EQ] = ACTIONS(9597), - [anon_sym_DASH_EQ] = ACTIONS(9597), - [anon_sym_LT_LT_EQ] = ACTIONS(9597), - [anon_sym_GT_GT_EQ] = ACTIONS(9597), - [anon_sym_AMP_EQ] = ACTIONS(9597), - [anon_sym_CARET_EQ] = ACTIONS(9597), - [anon_sym_PIPE_EQ] = ACTIONS(9597), - [anon_sym_and_eq] = ACTIONS(9599), - [anon_sym_or_eq] = ACTIONS(9599), - [anon_sym_xor_eq] = ACTIONS(9599), - [anon_sym_LT_EQ_GT] = ACTIONS(9597), - [anon_sym_or] = ACTIONS(9599), - [anon_sym_and] = ACTIONS(9599), - [anon_sym_bitor] = ACTIONS(9599), - [anon_sym_xor] = ACTIONS(9599), - [anon_sym_bitand] = ACTIONS(9599), - [anon_sym_not_eq] = ACTIONS(9599), - [anon_sym_DASH_DASH] = ACTIONS(9597), - [anon_sym_PLUS_PLUS] = ACTIONS(9597), - [anon_sym_DOT] = ACTIONS(9599), - [anon_sym_DOT_STAR] = ACTIONS(9597), - [anon_sym_DASH_GT] = ACTIONS(9597), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(9595), - [anon_sym_template] = ACTIONS(9595), - [anon_sym_operator] = ACTIONS(9595), - [anon_sym_delete] = ACTIONS(9603), - [anon_sym_new] = ACTIONS(9605), - [anon_sym_LBRACK_COLON] = ACTIONS(9601), + [sym_attribute_specifier] = STATE(3763), + [aux_sym_type_definition_repeat1] = STATE(3763), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6966), + [anon_sym_COMMA] = ACTIONS(6966), + [anon_sym_LPAREN2] = ACTIONS(6966), + [anon_sym_DASH] = ACTIONS(6964), + [anon_sym_PLUS] = ACTIONS(6964), + [anon_sym_STAR] = ACTIONS(6966), + [anon_sym_SLASH] = ACTIONS(6964), + [anon_sym_PERCENT] = ACTIONS(6966), + [anon_sym_PIPE_PIPE] = ACTIONS(6966), + [anon_sym_AMP_AMP] = ACTIONS(6966), + [anon_sym_PIPE] = ACTIONS(6964), + [anon_sym_CARET] = ACTIONS(6966), + [anon_sym_AMP] = ACTIONS(6964), + [anon_sym_EQ_EQ] = ACTIONS(6966), + [anon_sym_BANG_EQ] = ACTIONS(6966), + [anon_sym_GT] = ACTIONS(6964), + [anon_sym_GT_EQ] = ACTIONS(6964), + [anon_sym_LT_EQ] = ACTIONS(6964), + [anon_sym_LT] = ACTIONS(6964), + [anon_sym_LT_LT] = ACTIONS(6966), + [anon_sym_GT_GT] = ACTIONS(6964), + [anon_sym___extension__] = ACTIONS(6966), + [anon_sym___attribute__] = ACTIONS(9599), + [anon_sym___attribute] = ACTIONS(9602), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6966), + [anon_sym_LBRACK] = ACTIONS(6964), + [anon_sym_const] = ACTIONS(6964), + [anon_sym_constexpr] = ACTIONS(6966), + [anon_sym_volatile] = ACTIONS(6966), + [anon_sym_restrict] = ACTIONS(6966), + [anon_sym___restrict__] = ACTIONS(6966), + [anon_sym__Atomic] = ACTIONS(6966), + [anon_sym__Noreturn] = ACTIONS(6966), + [anon_sym_noreturn] = ACTIONS(6966), + [anon_sym__Nonnull] = ACTIONS(6966), + [anon_sym_mutable] = ACTIONS(6966), + [anon_sym_constinit] = ACTIONS(6966), + [anon_sym_consteval] = ACTIONS(6966), + [anon_sym_alignas] = ACTIONS(6966), + [anon_sym__Alignas] = ACTIONS(6966), + [anon_sym_QMARK] = ACTIONS(6966), + [anon_sym_LT_EQ_GT] = ACTIONS(6966), + [anon_sym_or] = ACTIONS(6966), + [anon_sym_and] = ACTIONS(6966), + [anon_sym_bitor] = ACTIONS(6966), + [anon_sym_xor] = ACTIONS(6966), + [anon_sym_bitand] = ACTIONS(6966), + [anon_sym_not_eq] = ACTIONS(6966), + [anon_sym_DASH_DASH] = ACTIONS(6966), + [anon_sym_PLUS_PLUS] = ACTIONS(6966), + [anon_sym_asm] = ACTIONS(6966), + [anon_sym___asm__] = ACTIONS(6966), + [anon_sym___asm] = ACTIONS(6964), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_DOT_STAR] = ACTIONS(6966), + [anon_sym_DASH_GT] = ACTIONS(6966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6966), + [anon_sym_override] = ACTIONS(6966), + [anon_sym_GT2] = ACTIONS(6966), + [anon_sym_noexcept] = ACTIONS(6966), + [anon_sym_throw] = ACTIONS(6966), + [anon_sym_requires] = ACTIONS(6966), }, [STATE(3764)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3823), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7525), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7525), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7525), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7528), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7525), - [anon_sym_GT_GT] = ACTIONS(7528), - [anon_sym___extension__] = ACTIONS(7528), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(9607), - [anon_sym_unsigned] = ACTIONS(9607), - [anon_sym_long] = ACTIONS(9607), - [anon_sym_short] = ACTIONS(9607), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_const] = ACTIONS(7528), - [anon_sym_constexpr] = ACTIONS(7528), - [anon_sym_volatile] = ACTIONS(7528), - [anon_sym_restrict] = ACTIONS(7528), - [anon_sym___restrict__] = ACTIONS(7528), - [anon_sym__Atomic] = ACTIONS(7528), - [anon_sym__Noreturn] = ACTIONS(7528), - [anon_sym_noreturn] = ACTIONS(7528), - [anon_sym__Nonnull] = ACTIONS(7528), - [anon_sym_mutable] = ACTIONS(7528), - [anon_sym_constinit] = ACTIONS(7528), - [anon_sym_consteval] = ACTIONS(7528), - [anon_sym_alignas] = ACTIONS(7528), - [anon_sym__Alignas] = ACTIONS(7528), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), + [aux_sym_sized_type_specifier_repeat1] = STATE(3791), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7399), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7399), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7399), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7402), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7399), + [anon_sym_GT_GT] = ACTIONS(7402), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(9605), + [anon_sym_unsigned] = ACTIONS(9605), + [anon_sym_long] = ACTIONS(9605), + [anon_sym_short] = ACTIONS(9605), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_GT2] = ACTIONS(7525), - [anon_sym_requires] = ACTIONS(7528), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_GT2] = ACTIONS(7399), + [anon_sym_requires] = ACTIONS(7402), }, [STATE(3765)] = { - [sym_type_qualifier] = STATE(3138), - [sym_alignas_qualifier] = STATE(3497), - [aux_sym__type_definition_type_repeat1] = STATE(3138), - [aux_sym_sized_type_specifier_repeat1] = STATE(4266), - [sym_identifier] = ACTIONS(9610), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_RPAREN] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_TILDE] = ACTIONS(7205), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_SEMI] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(9613), - [anon_sym_virtual] = ACTIONS(7207), - [anon_sym_extern] = ACTIONS(7207), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_COLON_COLON] = ACTIONS(7205), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7205), - [anon_sym___declspec] = ACTIONS(7207), - [anon_sym___based] = ACTIONS(7207), - [anon_sym___cdecl] = ACTIONS(7207), - [anon_sym___clrcall] = ACTIONS(7207), - [anon_sym___stdcall] = ACTIONS(7207), - [anon_sym___fastcall] = ACTIONS(7207), - [anon_sym___thiscall] = ACTIONS(7207), - [anon_sym___vectorcall] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(9616), - [anon_sym_unsigned] = ACTIONS(9616), - [anon_sym_long] = ACTIONS(9616), - [anon_sym_short] = ACTIONS(9616), - [anon_sym_LBRACK] = ACTIONS(7207), - [anon_sym_static] = ACTIONS(7207), - [anon_sym_EQ] = ACTIONS(7205), - [anon_sym_register] = ACTIONS(7207), - [anon_sym_inline] = ACTIONS(7207), - [anon_sym___inline] = ACTIONS(7207), - [anon_sym___inline__] = ACTIONS(7207), - [anon_sym___forceinline] = ACTIONS(7207), - [anon_sym_thread_local] = ACTIONS(7207), - [anon_sym___thread] = ACTIONS(7207), - [anon_sym_const] = ACTIONS(9613), - [anon_sym_constexpr] = ACTIONS(9613), - [anon_sym_volatile] = ACTIONS(9613), - [anon_sym_restrict] = ACTIONS(9613), - [anon_sym___restrict__] = ACTIONS(9613), - [anon_sym__Atomic] = ACTIONS(9613), - [anon_sym__Noreturn] = ACTIONS(9613), - [anon_sym_noreturn] = ACTIONS(9613), - [anon_sym__Nonnull] = ACTIONS(9613), - [anon_sym_mutable] = ACTIONS(9613), - [anon_sym_constinit] = ACTIONS(9613), - [anon_sym_consteval] = ACTIONS(9613), - [anon_sym_alignas] = ACTIONS(9618), - [anon_sym__Alignas] = ACTIONS(9618), - [sym_primitive_type] = ACTIONS(9621), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7207), - [anon_sym_template] = ACTIONS(7207), - [anon_sym_GT2] = ACTIONS(7205), - [anon_sym_operator] = ACTIONS(7207), - [anon_sym_LBRACK_COLON] = ACTIONS(7205), + [aux_sym_sized_type_specifier_repeat1] = STATE(3765), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7062), + [anon_sym_COMMA] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(7062), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7062), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7062), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7062), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7062), + [anon_sym_LT_EQ] = ACTIONS(7060), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7062), + [anon_sym_GT_GT] = ACTIONS(7062), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym_LBRACE] = ACTIONS(7062), + [anon_sym_signed] = ACTIONS(9608), + [anon_sym_unsigned] = ACTIONS(9608), + [anon_sym_long] = ACTIONS(9608), + [anon_sym_short] = ACTIONS(9608), + [anon_sym_LBRACK] = ACTIONS(7062), + [anon_sym_RBRACK] = ACTIONS(7062), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_LT_EQ_GT] = ACTIONS(7062), + [anon_sym_or] = ACTIONS(7060), + [anon_sym_and] = ACTIONS(7060), + [anon_sym_bitor] = ACTIONS(7060), + [anon_sym_xor] = ACTIONS(7060), + [anon_sym_bitand] = ACTIONS(7060), + [anon_sym_not_eq] = ACTIONS(7060), + [anon_sym_DASH_DASH] = ACTIONS(7062), + [anon_sym_PLUS_PLUS] = ACTIONS(7062), + [anon_sym_DOT] = ACTIONS(7060), + [anon_sym_DOT_STAR] = ACTIONS(7062), + [anon_sym_DASH_GT] = ACTIONS(7062), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7060), + [anon_sym_override] = ACTIONS(7060), + [anon_sym_requires] = ACTIONS(7060), }, [STATE(3766)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3766), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(7001), - [anon_sym_LPAREN2] = ACTIONS(7001), - [anon_sym_DASH] = ACTIONS(6999), - [anon_sym_PLUS] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(7001), - [anon_sym_SLASH] = ACTIONS(6999), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(7001), - [anon_sym_PIPE] = ACTIONS(6999), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6999), - [anon_sym_EQ_EQ] = ACTIONS(7001), - [anon_sym_BANG_EQ] = ACTIONS(7001), - [anon_sym_GT] = ACTIONS(6999), - [anon_sym_GT_EQ] = ACTIONS(7001), - [anon_sym_LT_EQ] = ACTIONS(6999), - [anon_sym_LT] = ACTIONS(6999), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(7001), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(6999), - [anon_sym_LBRACE] = ACTIONS(7001), - [anon_sym_signed] = ACTIONS(9623), - [anon_sym_unsigned] = ACTIONS(9623), - [anon_sym_long] = ACTIONS(9623), - [anon_sym_short] = ACTIONS(9623), - [anon_sym_LBRACK] = ACTIONS(7001), - [anon_sym_RBRACK] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7001), - [anon_sym_LT_EQ_GT] = ACTIONS(7001), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(7001), - [anon_sym_PLUS_PLUS] = ACTIONS(7001), - [anon_sym_DOT] = ACTIONS(6999), - [anon_sym_DOT_STAR] = ACTIONS(7001), - [anon_sym_DASH_GT] = ACTIONS(7001), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_requires] = ACTIONS(6999), + [sym_identifier] = ACTIONS(7117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_TILDE] = ACTIONS(7122), + [anon_sym_STAR] = ACTIONS(7122), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_SEMI] = ACTIONS(7122), + [anon_sym___extension__] = ACTIONS(7117), + [anon_sym_virtual] = ACTIONS(7117), + [anon_sym_extern] = ACTIONS(7117), + [anon_sym___attribute__] = ACTIONS(7117), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7122), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7122), + [anon_sym___declspec] = ACTIONS(7117), + [anon_sym___based] = ACTIONS(7117), + [anon_sym___cdecl] = ACTIONS(7117), + [anon_sym___clrcall] = ACTIONS(7117), + [anon_sym___stdcall] = ACTIONS(7117), + [anon_sym___fastcall] = ACTIONS(7117), + [anon_sym___thiscall] = ACTIONS(7117), + [anon_sym___vectorcall] = ACTIONS(7117), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7117), + [anon_sym_static] = ACTIONS(7117), + [anon_sym_EQ] = ACTIONS(7122), + [anon_sym_register] = ACTIONS(7117), + [anon_sym_inline] = ACTIONS(7117), + [anon_sym___inline] = ACTIONS(7117), + [anon_sym___inline__] = ACTIONS(7117), + [anon_sym___forceinline] = ACTIONS(7117), + [anon_sym_thread_local] = ACTIONS(7117), + [anon_sym___thread] = ACTIONS(7117), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7117), + [anon_sym_volatile] = ACTIONS(7117), + [anon_sym_restrict] = ACTIONS(7117), + [anon_sym___restrict__] = ACTIONS(7117), + [anon_sym__Atomic] = ACTIONS(7117), + [anon_sym__Noreturn] = ACTIONS(7117), + [anon_sym_noreturn] = ACTIONS(7117), + [anon_sym__Nonnull] = ACTIONS(7117), + [anon_sym_mutable] = ACTIONS(7117), + [anon_sym_constinit] = ACTIONS(7117), + [anon_sym_consteval] = ACTIONS(7117), + [anon_sym_alignas] = ACTIONS(7117), + [anon_sym__Alignas] = ACTIONS(7117), + [anon_sym_or] = ACTIONS(7117), + [anon_sym_and] = ACTIONS(7117), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7117), + [anon_sym_final] = ACTIONS(7117), + [anon_sym_override] = ACTIONS(7117), + [anon_sym_template] = ACTIONS(7117), + [anon_sym_GT2] = ACTIONS(7122), + [anon_sym_operator] = ACTIONS(7117), + [anon_sym_noexcept] = ACTIONS(7117), + [anon_sym_throw] = ACTIONS(7117), + [anon_sym_LBRACK_COLON] = ACTIONS(7122), }, [STATE(3767)] = { - [sym_attribute_specifier] = STATE(3201), - [sym_enumerator_list] = STATE(3839), + [sym_ms_based_modifier] = STATE(10831), + [sym__declarator] = STATE(8768), + [sym__abstract_declarator] = STATE(9062), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(7149), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5335), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(7149), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8657), + [anon_sym_AMP_AMP] = ACTIONS(8659), + [anon_sym_AMP] = ACTIONS(8661), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(7347), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(7345), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(3768)] = { + [sym_type_qualifier] = STATE(3769), + [sym_alignas_qualifier] = STATE(3830), + [aux_sym__type_definition_type_repeat1] = STATE(3769), + [aux_sym_sized_type_specifier_repeat1] = STATE(4082), + [sym_identifier] = ACTIONS(9242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7211), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7211), + [anon_sym___extension__] = ACTIONS(8586), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(9611), + [anon_sym_unsigned] = ACTIONS(9611), + [anon_sym_long] = ACTIONS(9611), + [anon_sym_short] = ACTIONS(9611), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8586), + [anon_sym_volatile] = ACTIONS(8586), + [anon_sym_restrict] = ACTIONS(8586), + [anon_sym___restrict__] = ACTIONS(8586), + [anon_sym__Atomic] = ACTIONS(8586), + [anon_sym__Noreturn] = ACTIONS(8586), + [anon_sym_noreturn] = ACTIONS(8586), + [anon_sym__Nonnull] = ACTIONS(8586), + [anon_sym_mutable] = ACTIONS(8586), + [anon_sym_constinit] = ACTIONS(8586), + [anon_sym_consteval] = ACTIONS(8586), + [anon_sym_alignas] = ACTIONS(9613), + [anon_sym__Alignas] = ACTIONS(9613), + [sym_primitive_type] = ACTIONS(9252), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7209), + }, + [STATE(3769)] = { + [sym_type_qualifier] = STATE(3671), + [sym_alignas_qualifier] = STATE(3830), + [aux_sym__type_definition_type_repeat1] = STATE(3671), + [aux_sym_sized_type_specifier_repeat1] = STATE(4004), + [sym_identifier] = ACTIONS(9258), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7193), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7193), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7193), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7195), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7193), + [anon_sym_GT_GT] = ACTIONS(7195), + [anon_sym___extension__] = ACTIONS(8586), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(9263), + [anon_sym_unsigned] = ACTIONS(9263), + [anon_sym_long] = ACTIONS(9263), + [anon_sym_short] = ACTIONS(9263), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_const] = ACTIONS(8586), + [anon_sym_constexpr] = ACTIONS(8586), + [anon_sym_volatile] = ACTIONS(8586), + [anon_sym_restrict] = ACTIONS(8586), + [anon_sym___restrict__] = ACTIONS(8586), + [anon_sym__Atomic] = ACTIONS(8586), + [anon_sym__Noreturn] = ACTIONS(8586), + [anon_sym_noreturn] = ACTIONS(8586), + [anon_sym__Nonnull] = ACTIONS(8586), + [anon_sym_mutable] = ACTIONS(8586), + [anon_sym_constinit] = ACTIONS(8586), + [anon_sym_consteval] = ACTIONS(8586), + [anon_sym_alignas] = ACTIONS(9613), + [anon_sym__Alignas] = ACTIONS(9613), + [sym_primitive_type] = ACTIONS(9268), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + [anon_sym_GT2] = ACTIONS(7193), + }, + [STATE(3770)] = { + [sym_template_argument_list] = STATE(3011), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7122), + [anon_sym_COMMA] = ACTIONS(7122), + [anon_sym_RPAREN] = ACTIONS(7122), + [anon_sym_LPAREN2] = ACTIONS(7122), + [anon_sym_DASH] = ACTIONS(7117), + [anon_sym_PLUS] = ACTIONS(7117), + [anon_sym_STAR] = ACTIONS(7122), + [anon_sym_SLASH] = ACTIONS(7117), + [anon_sym_PERCENT] = ACTIONS(7122), + [anon_sym_PIPE_PIPE] = ACTIONS(7122), + [anon_sym_AMP_AMP] = ACTIONS(7122), + [anon_sym_PIPE] = ACTIONS(7117), + [anon_sym_CARET] = ACTIONS(7122), + [anon_sym_AMP] = ACTIONS(7117), + [anon_sym_EQ_EQ] = ACTIONS(7122), + [anon_sym_BANG_EQ] = ACTIONS(7122), + [anon_sym_GT] = ACTIONS(7117), + [anon_sym_GT_EQ] = ACTIONS(7122), + [anon_sym_LT_EQ] = ACTIONS(7117), + [anon_sym_LT] = ACTIONS(8655), + [anon_sym_LT_LT] = ACTIONS(7122), + [anon_sym_GT_GT] = ACTIONS(7122), + [anon_sym_SEMI] = ACTIONS(7122), + [anon_sym___extension__] = ACTIONS(7122), + [anon_sym___attribute__] = ACTIONS(7122), + [anon_sym___attribute] = ACTIONS(7117), + [anon_sym_COLON] = ACTIONS(7117), + [anon_sym_COLON_COLON] = ACTIONS(7119), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7122), + [anon_sym_LBRACE] = ACTIONS(7122), + [anon_sym_RBRACE] = ACTIONS(7122), + [anon_sym_LBRACK] = ACTIONS(7122), + [anon_sym_const] = ACTIONS(7117), + [anon_sym_constexpr] = ACTIONS(7122), + [anon_sym_volatile] = ACTIONS(7122), + [anon_sym_restrict] = ACTIONS(7122), + [anon_sym___restrict__] = ACTIONS(7122), + [anon_sym__Atomic] = ACTIONS(7122), + [anon_sym__Noreturn] = ACTIONS(7122), + [anon_sym_noreturn] = ACTIONS(7122), + [anon_sym__Nonnull] = ACTIONS(7122), + [anon_sym_mutable] = ACTIONS(7122), + [anon_sym_constinit] = ACTIONS(7122), + [anon_sym_consteval] = ACTIONS(7122), + [anon_sym_alignas] = ACTIONS(7122), + [anon_sym__Alignas] = ACTIONS(7122), + [anon_sym_QMARK] = ACTIONS(7122), + [anon_sym_LT_EQ_GT] = ACTIONS(7122), + [anon_sym_or] = ACTIONS(7122), + [anon_sym_and] = ACTIONS(7122), + [anon_sym_bitor] = ACTIONS(7122), + [anon_sym_xor] = ACTIONS(7122), + [anon_sym_bitand] = ACTIONS(7122), + [anon_sym_not_eq] = ACTIONS(7122), + [anon_sym_DASH_DASH] = ACTIONS(7122), + [anon_sym_PLUS_PLUS] = ACTIONS(7122), + [anon_sym_DOT] = ACTIONS(7117), + [anon_sym_DOT_STAR] = ACTIONS(7122), + [anon_sym_DASH_GT] = ACTIONS(7122), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7122), + [anon_sym_override] = ACTIONS(7122), + [anon_sym_requires] = ACTIONS(7122), + [anon_sym_COLON_RBRACK] = ACTIONS(7122), + }, + [STATE(3771)] = { + [sym_ms_based_modifier] = STATE(10831), + [sym__declarator] = STATE(8775), + [sym__abstract_declarator] = STATE(9054), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(7149), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5335), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(7149), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8657), + [anon_sym_AMP_AMP] = ACTIONS(8659), + [anon_sym_AMP] = ACTIONS(8661), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_GT2] = ACTIONS(6843), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), + }, + [STATE(3772)] = { + [sym_type_qualifier] = STATE(3773), + [sym_alignas_qualifier] = STATE(3928), + [aux_sym__type_definition_type_repeat1] = STATE(3773), + [aux_sym_sized_type_specifier_repeat1] = STATE(4041), + [sym_identifier] = ACTIONS(9186), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_DASH] = ACTIONS(7211), + [anon_sym_PLUS] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_SLASH] = ACTIONS(7211), + [anon_sym_PERCENT] = ACTIONS(7209), + [anon_sym_PIPE_PIPE] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_PIPE] = ACTIONS(7211), + [anon_sym_CARET] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_EQ_EQ] = ACTIONS(7209), + [anon_sym_BANG_EQ] = ACTIONS(7209), + [anon_sym_GT] = ACTIONS(7211), + [anon_sym_GT_EQ] = ACTIONS(7209), + [anon_sym_LT_EQ] = ACTIONS(7211), + [anon_sym_LT] = ACTIONS(7211), + [anon_sym_LT_LT] = ACTIONS(7209), + [anon_sym_GT_GT] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(9615), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(9617), + [anon_sym_unsigned] = ACTIONS(9617), + [anon_sym_long] = ACTIONS(9617), + [anon_sym_short] = ACTIONS(9617), + [anon_sym_LBRACK] = ACTIONS(7209), + [anon_sym_RBRACK] = ACTIONS(7209), + [anon_sym_const] = ACTIONS(9615), + [anon_sym_constexpr] = ACTIONS(9615), + [anon_sym_volatile] = ACTIONS(9615), + [anon_sym_restrict] = ACTIONS(9615), + [anon_sym___restrict__] = ACTIONS(9615), + [anon_sym__Atomic] = ACTIONS(9615), + [anon_sym__Noreturn] = ACTIONS(9615), + [anon_sym_noreturn] = ACTIONS(9615), + [anon_sym__Nonnull] = ACTIONS(9615), + [anon_sym_mutable] = ACTIONS(9615), + [anon_sym_constinit] = ACTIONS(9615), + [anon_sym_consteval] = ACTIONS(9615), + [anon_sym_alignas] = ACTIONS(9619), + [anon_sym__Alignas] = ACTIONS(9619), + [sym_primitive_type] = ACTIONS(8845), + [anon_sym_QMARK] = ACTIONS(7209), + [anon_sym_LT_EQ_GT] = ACTIONS(7209), + [anon_sym_or] = ACTIONS(7211), + [anon_sym_and] = ACTIONS(7211), + [anon_sym_bitor] = ACTIONS(7211), + [anon_sym_xor] = ACTIONS(7211), + [anon_sym_bitand] = ACTIONS(7211), + [anon_sym_not_eq] = ACTIONS(7211), + [anon_sym_DASH_DASH] = ACTIONS(7209), + [anon_sym_PLUS_PLUS] = ACTIONS(7209), + [anon_sym_DOT] = ACTIONS(7211), + [anon_sym_DOT_STAR] = ACTIONS(7209), + [anon_sym_DASH_GT] = ACTIONS(7209), + [sym_comment] = ACTIONS(3), + }, + [STATE(3773)] = { + [sym_type_qualifier] = STATE(3593), + [sym_alignas_qualifier] = STATE(3928), + [aux_sym__type_definition_type_repeat1] = STATE(3593), + [aux_sym_sized_type_specifier_repeat1] = STATE(3259), + [sym_identifier] = ACTIONS(9196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_DASH] = ACTIONS(7195), + [anon_sym_PLUS] = ACTIONS(7195), + [anon_sym_STAR] = ACTIONS(7193), + [anon_sym_SLASH] = ACTIONS(7195), + [anon_sym_PERCENT] = ACTIONS(7193), + [anon_sym_PIPE_PIPE] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_PIPE] = ACTIONS(7195), + [anon_sym_CARET] = ACTIONS(7193), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_EQ_EQ] = ACTIONS(7193), + [anon_sym_BANG_EQ] = ACTIONS(7193), + [anon_sym_GT] = ACTIONS(7195), + [anon_sym_GT_EQ] = ACTIONS(7193), + [anon_sym_LT_EQ] = ACTIONS(7195), + [anon_sym_LT] = ACTIONS(7195), + [anon_sym_LT_LT] = ACTIONS(7193), + [anon_sym_GT_GT] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(9615), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(8861), + [anon_sym_unsigned] = ACTIONS(8861), + [anon_sym_long] = ACTIONS(8861), + [anon_sym_short] = ACTIONS(8861), + [anon_sym_LBRACK] = ACTIONS(7193), + [anon_sym_RBRACK] = ACTIONS(7193), + [anon_sym_const] = ACTIONS(9615), + [anon_sym_constexpr] = ACTIONS(9615), + [anon_sym_volatile] = ACTIONS(9615), + [anon_sym_restrict] = ACTIONS(9615), + [anon_sym___restrict__] = ACTIONS(9615), + [anon_sym__Atomic] = ACTIONS(9615), + [anon_sym__Noreturn] = ACTIONS(9615), + [anon_sym_noreturn] = ACTIONS(9615), + [anon_sym__Nonnull] = ACTIONS(9615), + [anon_sym_mutable] = ACTIONS(9615), + [anon_sym_constinit] = ACTIONS(9615), + [anon_sym_consteval] = ACTIONS(9615), + [anon_sym_alignas] = ACTIONS(9619), + [anon_sym__Alignas] = ACTIONS(9619), + [sym_primitive_type] = ACTIONS(8863), + [anon_sym_QMARK] = ACTIONS(7193), + [anon_sym_LT_EQ_GT] = ACTIONS(7193), + [anon_sym_or] = ACTIONS(7195), + [anon_sym_and] = ACTIONS(7195), + [anon_sym_bitor] = ACTIONS(7195), + [anon_sym_xor] = ACTIONS(7195), + [anon_sym_bitand] = ACTIONS(7195), + [anon_sym_not_eq] = ACTIONS(7195), + [anon_sym_DASH_DASH] = ACTIONS(7193), + [anon_sym_PLUS_PLUS] = ACTIONS(7193), + [anon_sym_DOT] = ACTIONS(7195), + [anon_sym_DOT_STAR] = ACTIONS(7193), + [anon_sym_DASH_GT] = ACTIONS(7193), + [sym_comment] = ACTIONS(3), + }, + [STATE(3774)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3765), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7399), + [anon_sym_COMMA] = ACTIONS(7399), + [anon_sym_LPAREN2] = ACTIONS(7399), + [anon_sym_DASH] = ACTIONS(7402), + [anon_sym_PLUS] = ACTIONS(7402), + [anon_sym_STAR] = ACTIONS(7399), + [anon_sym_SLASH] = ACTIONS(7402), + [anon_sym_PERCENT] = ACTIONS(7399), + [anon_sym_PIPE_PIPE] = ACTIONS(7399), + [anon_sym_AMP_AMP] = ACTIONS(7399), + [anon_sym_PIPE] = ACTIONS(7402), + [anon_sym_CARET] = ACTIONS(7399), + [anon_sym_AMP] = ACTIONS(7402), + [anon_sym_EQ_EQ] = ACTIONS(7399), + [anon_sym_BANG_EQ] = ACTIONS(7399), + [anon_sym_GT] = ACTIONS(7402), + [anon_sym_GT_EQ] = ACTIONS(7399), + [anon_sym_LT_EQ] = ACTIONS(7402), + [anon_sym_LT] = ACTIONS(7402), + [anon_sym_LT_LT] = ACTIONS(7399), + [anon_sym_GT_GT] = ACTIONS(7399), + [anon_sym___extension__] = ACTIONS(7402), + [anon_sym___attribute__] = ACTIONS(7402), + [anon_sym___attribute] = ACTIONS(7402), + [anon_sym_LBRACE] = ACTIONS(7399), + [anon_sym_signed] = ACTIONS(9608), + [anon_sym_unsigned] = ACTIONS(9608), + [anon_sym_long] = ACTIONS(9608), + [anon_sym_short] = ACTIONS(9608), + [anon_sym_LBRACK] = ACTIONS(7399), + [anon_sym_RBRACK] = ACTIONS(7399), + [anon_sym_const] = ACTIONS(7402), + [anon_sym_constexpr] = ACTIONS(7402), + [anon_sym_volatile] = ACTIONS(7402), + [anon_sym_restrict] = ACTIONS(7402), + [anon_sym___restrict__] = ACTIONS(7402), + [anon_sym__Atomic] = ACTIONS(7402), + [anon_sym__Noreturn] = ACTIONS(7402), + [anon_sym_noreturn] = ACTIONS(7402), + [anon_sym__Nonnull] = ACTIONS(7402), + [anon_sym_mutable] = ACTIONS(7402), + [anon_sym_constinit] = ACTIONS(7402), + [anon_sym_consteval] = ACTIONS(7402), + [anon_sym_alignas] = ACTIONS(7402), + [anon_sym__Alignas] = ACTIONS(7402), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7399), + [anon_sym_LT_EQ_GT] = ACTIONS(7399), + [anon_sym_or] = ACTIONS(7402), + [anon_sym_and] = ACTIONS(7402), + [anon_sym_bitor] = ACTIONS(7402), + [anon_sym_xor] = ACTIONS(7402), + [anon_sym_bitand] = ACTIONS(7402), + [anon_sym_not_eq] = ACTIONS(7402), + [anon_sym_DASH_DASH] = ACTIONS(7399), + [anon_sym_PLUS_PLUS] = ACTIONS(7399), + [anon_sym_DOT] = ACTIONS(7402), + [anon_sym_DOT_STAR] = ACTIONS(7399), + [anon_sym_DASH_GT] = ACTIONS(7399), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7402), + [anon_sym_override] = ACTIONS(7402), + [anon_sym_requires] = ACTIONS(7402), + }, + [STATE(3775)] = { + [sym_identifier] = ACTIONS(8790), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8792), + [anon_sym_COMMA] = ACTIONS(8792), + [anon_sym_LPAREN2] = ACTIONS(8792), + [anon_sym_DASH] = ACTIONS(8790), + [anon_sym_PLUS] = ACTIONS(8790), + [anon_sym_STAR] = ACTIONS(8790), + [anon_sym_SLASH] = ACTIONS(8790), + [anon_sym_PERCENT] = ACTIONS(8790), + [anon_sym_PIPE_PIPE] = ACTIONS(8792), + [anon_sym_AMP_AMP] = ACTIONS(8792), + [anon_sym_PIPE] = ACTIONS(8790), + [anon_sym_CARET] = ACTIONS(8790), + [anon_sym_AMP] = ACTIONS(8790), + [anon_sym_EQ_EQ] = ACTIONS(8792), + [anon_sym_BANG_EQ] = ACTIONS(8792), + [anon_sym_GT] = ACTIONS(8790), + [anon_sym_GT_EQ] = ACTIONS(8792), + [anon_sym_LT_EQ] = ACTIONS(8790), + [anon_sym_LT] = ACTIONS(8790), + [anon_sym_LT_LT] = ACTIONS(8790), + [anon_sym_GT_GT] = ACTIONS(8790), + [anon_sym_SEMI] = ACTIONS(8792), + [anon_sym___attribute__] = ACTIONS(8790), + [anon_sym___attribute] = ACTIONS(8790), + [anon_sym_LBRACK] = ACTIONS(8792), + [anon_sym_EQ] = ACTIONS(8790), + [anon_sym_QMARK] = ACTIONS(8792), + [anon_sym_STAR_EQ] = ACTIONS(8792), + [anon_sym_SLASH_EQ] = ACTIONS(8792), + [anon_sym_PERCENT_EQ] = ACTIONS(8792), + [anon_sym_PLUS_EQ] = ACTIONS(8792), + [anon_sym_DASH_EQ] = ACTIONS(8792), + [anon_sym_LT_LT_EQ] = ACTIONS(8792), + [anon_sym_GT_GT_EQ] = ACTIONS(8792), + [anon_sym_AMP_EQ] = ACTIONS(8792), + [anon_sym_CARET_EQ] = ACTIONS(8792), + [anon_sym_PIPE_EQ] = ACTIONS(8792), + [anon_sym_and_eq] = ACTIONS(8790), + [anon_sym_or_eq] = ACTIONS(8790), + [anon_sym_xor_eq] = ACTIONS(8790), + [anon_sym_LT_EQ_GT] = ACTIONS(8792), + [anon_sym_or] = ACTIONS(8790), + [anon_sym_and] = ACTIONS(8790), + [anon_sym_bitor] = ACTIONS(8790), + [anon_sym_xor] = ACTIONS(8790), + [anon_sym_bitand] = ACTIONS(8790), + [anon_sym_not_eq] = ACTIONS(8790), + [anon_sym_DASH_DASH] = ACTIONS(8792), + [anon_sym_PLUS_PLUS] = ACTIONS(8792), + [anon_sym_DOT] = ACTIONS(8790), + [anon_sym_DOT_STAR] = ACTIONS(8792), + [anon_sym_DASH_GT] = ACTIONS(8792), + [anon_sym_L_DQUOTE] = ACTIONS(8792), + [anon_sym_u_DQUOTE] = ACTIONS(8792), + [anon_sym_U_DQUOTE] = ACTIONS(8792), + [anon_sym_u8_DQUOTE] = ACTIONS(8792), + [anon_sym_DQUOTE] = ACTIONS(8792), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8792), + [anon_sym_LR_DQUOTE] = ACTIONS(8792), + [anon_sym_uR_DQUOTE] = ACTIONS(8792), + [anon_sym_UR_DQUOTE] = ACTIONS(8792), + [anon_sym_u8R_DQUOTE] = ACTIONS(8792), + [sym_literal_suffix] = ACTIONS(8790), + }, + [STATE(3776)] = { + [sym_identifier] = ACTIONS(8761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8763), + [anon_sym_COMMA] = ACTIONS(8763), + [anon_sym_LPAREN2] = ACTIONS(8763), + [anon_sym_DASH] = ACTIONS(8761), + [anon_sym_PLUS] = ACTIONS(8761), + [anon_sym_STAR] = ACTIONS(8761), + [anon_sym_SLASH] = ACTIONS(8761), + [anon_sym_PERCENT] = ACTIONS(8761), + [anon_sym_PIPE_PIPE] = ACTIONS(8763), + [anon_sym_AMP_AMP] = ACTIONS(8763), + [anon_sym_PIPE] = ACTIONS(8761), + [anon_sym_CARET] = ACTIONS(8761), + [anon_sym_AMP] = ACTIONS(8761), + [anon_sym_EQ_EQ] = ACTIONS(8763), + [anon_sym_BANG_EQ] = ACTIONS(8763), + [anon_sym_GT] = ACTIONS(8761), + [anon_sym_GT_EQ] = ACTIONS(8763), + [anon_sym_LT_EQ] = ACTIONS(8761), + [anon_sym_LT] = ACTIONS(8761), + [anon_sym_LT_LT] = ACTIONS(8761), + [anon_sym_GT_GT] = ACTIONS(8761), + [anon_sym_SEMI] = ACTIONS(8763), + [anon_sym___attribute__] = ACTIONS(8761), + [anon_sym___attribute] = ACTIONS(8761), + [anon_sym_LBRACK] = ACTIONS(8763), + [anon_sym_EQ] = ACTIONS(8761), + [anon_sym_QMARK] = ACTIONS(8763), + [anon_sym_STAR_EQ] = ACTIONS(8763), + [anon_sym_SLASH_EQ] = ACTIONS(8763), + [anon_sym_PERCENT_EQ] = ACTIONS(8763), + [anon_sym_PLUS_EQ] = ACTIONS(8763), + [anon_sym_DASH_EQ] = ACTIONS(8763), + [anon_sym_LT_LT_EQ] = ACTIONS(8763), + [anon_sym_GT_GT_EQ] = ACTIONS(8763), + [anon_sym_AMP_EQ] = ACTIONS(8763), + [anon_sym_CARET_EQ] = ACTIONS(8763), + [anon_sym_PIPE_EQ] = ACTIONS(8763), + [anon_sym_and_eq] = ACTIONS(8761), + [anon_sym_or_eq] = ACTIONS(8761), + [anon_sym_xor_eq] = ACTIONS(8761), + [anon_sym_LT_EQ_GT] = ACTIONS(8763), + [anon_sym_or] = ACTIONS(8761), + [anon_sym_and] = ACTIONS(8761), + [anon_sym_bitor] = ACTIONS(8761), + [anon_sym_xor] = ACTIONS(8761), + [anon_sym_bitand] = ACTIONS(8761), + [anon_sym_not_eq] = ACTIONS(8761), + [anon_sym_DASH_DASH] = ACTIONS(8763), + [anon_sym_PLUS_PLUS] = ACTIONS(8763), + [anon_sym_DOT] = ACTIONS(8761), + [anon_sym_DOT_STAR] = ACTIONS(8763), + [anon_sym_DASH_GT] = ACTIONS(8763), + [anon_sym_L_DQUOTE] = ACTIONS(8763), + [anon_sym_u_DQUOTE] = ACTIONS(8763), + [anon_sym_U_DQUOTE] = ACTIONS(8763), + [anon_sym_u8_DQUOTE] = ACTIONS(8763), + [anon_sym_DQUOTE] = ACTIONS(8763), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8763), + [anon_sym_LR_DQUOTE] = ACTIONS(8763), + [anon_sym_uR_DQUOTE] = ACTIONS(8763), + [anon_sym_UR_DQUOTE] = ACTIONS(8763), + [anon_sym_u8R_DQUOTE] = ACTIONS(8763), + [sym_literal_suffix] = ACTIONS(8761), + }, + [STATE(3777)] = { + [sym_identifier] = ACTIONS(8776), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8778), + [anon_sym_COMMA] = ACTIONS(8778), + [anon_sym_LPAREN2] = ACTIONS(8778), + [anon_sym_DASH] = ACTIONS(8776), + [anon_sym_PLUS] = ACTIONS(8776), + [anon_sym_STAR] = ACTIONS(8776), + [anon_sym_SLASH] = ACTIONS(8776), + [anon_sym_PERCENT] = ACTIONS(8776), + [anon_sym_PIPE_PIPE] = ACTIONS(8778), + [anon_sym_AMP_AMP] = ACTIONS(8778), + [anon_sym_PIPE] = ACTIONS(8776), + [anon_sym_CARET] = ACTIONS(8776), + [anon_sym_AMP] = ACTIONS(8776), + [anon_sym_EQ_EQ] = ACTIONS(8778), + [anon_sym_BANG_EQ] = ACTIONS(8778), + [anon_sym_GT] = ACTIONS(8776), + [anon_sym_GT_EQ] = ACTIONS(8778), + [anon_sym_LT_EQ] = ACTIONS(8776), + [anon_sym_LT] = ACTIONS(8776), + [anon_sym_LT_LT] = ACTIONS(8776), + [anon_sym_GT_GT] = ACTIONS(8776), + [anon_sym_SEMI] = ACTIONS(8778), + [anon_sym___attribute__] = ACTIONS(8776), + [anon_sym___attribute] = ACTIONS(8776), + [anon_sym_LBRACK] = ACTIONS(8778), + [anon_sym_EQ] = ACTIONS(8776), + [anon_sym_QMARK] = ACTIONS(8778), + [anon_sym_STAR_EQ] = ACTIONS(8778), + [anon_sym_SLASH_EQ] = ACTIONS(8778), + [anon_sym_PERCENT_EQ] = ACTIONS(8778), + [anon_sym_PLUS_EQ] = ACTIONS(8778), + [anon_sym_DASH_EQ] = ACTIONS(8778), + [anon_sym_LT_LT_EQ] = ACTIONS(8778), + [anon_sym_GT_GT_EQ] = ACTIONS(8778), + [anon_sym_AMP_EQ] = ACTIONS(8778), + [anon_sym_CARET_EQ] = ACTIONS(8778), + [anon_sym_PIPE_EQ] = ACTIONS(8778), + [anon_sym_and_eq] = ACTIONS(8776), + [anon_sym_or_eq] = ACTIONS(8776), + [anon_sym_xor_eq] = ACTIONS(8776), + [anon_sym_LT_EQ_GT] = ACTIONS(8778), + [anon_sym_or] = ACTIONS(8776), + [anon_sym_and] = ACTIONS(8776), + [anon_sym_bitor] = ACTIONS(8776), + [anon_sym_xor] = ACTIONS(8776), + [anon_sym_bitand] = ACTIONS(8776), + [anon_sym_not_eq] = ACTIONS(8776), + [anon_sym_DASH_DASH] = ACTIONS(8778), + [anon_sym_PLUS_PLUS] = ACTIONS(8778), + [anon_sym_DOT] = ACTIONS(8776), + [anon_sym_DOT_STAR] = ACTIONS(8778), + [anon_sym_DASH_GT] = ACTIONS(8778), + [anon_sym_L_DQUOTE] = ACTIONS(8778), + [anon_sym_u_DQUOTE] = ACTIONS(8778), + [anon_sym_U_DQUOTE] = ACTIONS(8778), + [anon_sym_u8_DQUOTE] = ACTIONS(8778), + [anon_sym_DQUOTE] = ACTIONS(8778), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8778), + [anon_sym_LR_DQUOTE] = ACTIONS(8778), + [anon_sym_uR_DQUOTE] = ACTIONS(8778), + [anon_sym_UR_DQUOTE] = ACTIONS(8778), + [anon_sym_u8R_DQUOTE] = ACTIONS(8778), + [sym_literal_suffix] = ACTIONS(8776), + }, + [STATE(3778)] = { + [sym_identifier] = ACTIONS(8786), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8788), + [anon_sym_COMMA] = ACTIONS(8788), + [anon_sym_LPAREN2] = ACTIONS(8788), + [anon_sym_DASH] = ACTIONS(8786), + [anon_sym_PLUS] = ACTIONS(8786), + [anon_sym_STAR] = ACTIONS(8786), + [anon_sym_SLASH] = ACTIONS(8786), + [anon_sym_PERCENT] = ACTIONS(8786), + [anon_sym_PIPE_PIPE] = ACTIONS(8788), + [anon_sym_AMP_AMP] = ACTIONS(8788), + [anon_sym_PIPE] = ACTIONS(8786), + [anon_sym_CARET] = ACTIONS(8786), + [anon_sym_AMP] = ACTIONS(8786), + [anon_sym_EQ_EQ] = ACTIONS(8788), + [anon_sym_BANG_EQ] = ACTIONS(8788), + [anon_sym_GT] = ACTIONS(8786), + [anon_sym_GT_EQ] = ACTIONS(8788), + [anon_sym_LT_EQ] = ACTIONS(8786), + [anon_sym_LT] = ACTIONS(8786), + [anon_sym_LT_LT] = ACTIONS(8786), + [anon_sym_GT_GT] = ACTIONS(8786), + [anon_sym_SEMI] = ACTIONS(8788), + [anon_sym___attribute__] = ACTIONS(8786), + [anon_sym___attribute] = ACTIONS(8786), + [anon_sym_LBRACK] = ACTIONS(8788), + [anon_sym_EQ] = ACTIONS(8786), + [anon_sym_QMARK] = ACTIONS(8788), + [anon_sym_STAR_EQ] = ACTIONS(8788), + [anon_sym_SLASH_EQ] = ACTIONS(8788), + [anon_sym_PERCENT_EQ] = ACTIONS(8788), + [anon_sym_PLUS_EQ] = ACTIONS(8788), + [anon_sym_DASH_EQ] = ACTIONS(8788), + [anon_sym_LT_LT_EQ] = ACTIONS(8788), + [anon_sym_GT_GT_EQ] = ACTIONS(8788), + [anon_sym_AMP_EQ] = ACTIONS(8788), + [anon_sym_CARET_EQ] = ACTIONS(8788), + [anon_sym_PIPE_EQ] = ACTIONS(8788), + [anon_sym_and_eq] = ACTIONS(8786), + [anon_sym_or_eq] = ACTIONS(8786), + [anon_sym_xor_eq] = ACTIONS(8786), + [anon_sym_LT_EQ_GT] = ACTIONS(8788), + [anon_sym_or] = ACTIONS(8786), + [anon_sym_and] = ACTIONS(8786), + [anon_sym_bitor] = ACTIONS(8786), + [anon_sym_xor] = ACTIONS(8786), + [anon_sym_bitand] = ACTIONS(8786), + [anon_sym_not_eq] = ACTIONS(8786), + [anon_sym_DASH_DASH] = ACTIONS(8788), + [anon_sym_PLUS_PLUS] = ACTIONS(8788), + [anon_sym_DOT] = ACTIONS(8786), + [anon_sym_DOT_STAR] = ACTIONS(8788), + [anon_sym_DASH_GT] = ACTIONS(8788), + [anon_sym_L_DQUOTE] = ACTIONS(8788), + [anon_sym_u_DQUOTE] = ACTIONS(8788), + [anon_sym_U_DQUOTE] = ACTIONS(8788), + [anon_sym_u8_DQUOTE] = ACTIONS(8788), + [anon_sym_DQUOTE] = ACTIONS(8788), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(8788), + [anon_sym_LR_DQUOTE] = ACTIONS(8788), + [anon_sym_uR_DQUOTE] = ACTIONS(8788), + [anon_sym_UR_DQUOTE] = ACTIONS(8788), + [anon_sym_u8R_DQUOTE] = ACTIONS(8788), + [sym_literal_suffix] = ACTIONS(8786), + }, + [STATE(3779)] = { + [sym_argument_list] = STATE(3849), + [sym_subscript_argument_list] = STATE(3850), + [sym_identifier] = ACTIONS(9621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9623), + [anon_sym_COMMA] = ACTIONS(9623), + [anon_sym_RPAREN] = ACTIONS(9623), + [aux_sym_preproc_if_token2] = ACTIONS(9623), + [aux_sym_preproc_else_token1] = ACTIONS(9623), + [aux_sym_preproc_elif_token1] = ACTIONS(9621), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9623), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9623), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9621), + [anon_sym_PLUS] = ACTIONS(9621), + [anon_sym_STAR] = ACTIONS(9621), + [anon_sym_SLASH] = ACTIONS(9621), + [anon_sym_PERCENT] = ACTIONS(9621), + [anon_sym_PIPE_PIPE] = ACTIONS(9623), + [anon_sym_AMP_AMP] = ACTIONS(9623), + [anon_sym_PIPE] = ACTIONS(9621), + [anon_sym_CARET] = ACTIONS(9621), + [anon_sym_AMP] = ACTIONS(9621), + [anon_sym_EQ_EQ] = ACTIONS(9623), + [anon_sym_BANG_EQ] = ACTIONS(9623), + [anon_sym_GT] = ACTIONS(9621), + [anon_sym_GT_EQ] = ACTIONS(9623), + [anon_sym_LT_EQ] = ACTIONS(9621), + [anon_sym_LT] = ACTIONS(9621), + [anon_sym_LT_LT] = ACTIONS(9621), + [anon_sym_GT_GT] = ACTIONS(9621), + [anon_sym_SEMI] = ACTIONS(9623), + [anon_sym___attribute__] = ACTIONS(9621), + [anon_sym___attribute] = ACTIONS(9621), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9623), + [anon_sym_RBRACE] = ACTIONS(9623), + [anon_sym_LBRACK] = ACTIONS(9625), + [anon_sym_EQ] = ACTIONS(9621), + [anon_sym_QMARK] = ACTIONS(9623), + [anon_sym_STAR_EQ] = ACTIONS(9623), + [anon_sym_SLASH_EQ] = ACTIONS(9623), + [anon_sym_PERCENT_EQ] = ACTIONS(9623), + [anon_sym_PLUS_EQ] = ACTIONS(9623), + [anon_sym_DASH_EQ] = ACTIONS(9623), + [anon_sym_LT_LT_EQ] = ACTIONS(9623), + [anon_sym_GT_GT_EQ] = ACTIONS(9623), + [anon_sym_AMP_EQ] = ACTIONS(9623), + [anon_sym_CARET_EQ] = ACTIONS(9623), + [anon_sym_PIPE_EQ] = ACTIONS(9623), + [anon_sym_and_eq] = ACTIONS(9621), + [anon_sym_or_eq] = ACTIONS(9621), + [anon_sym_xor_eq] = ACTIONS(9621), + [anon_sym_LT_EQ_GT] = ACTIONS(9623), + [anon_sym_or] = ACTIONS(9621), + [anon_sym_and] = ACTIONS(9621), + [anon_sym_bitor] = ACTIONS(9621), + [anon_sym_xor] = ACTIONS(9621), + [anon_sym_bitand] = ACTIONS(9621), + [anon_sym_not_eq] = ACTIONS(9621), + [anon_sym_DASH_DASH] = ACTIONS(9627), + [anon_sym_PLUS_PLUS] = ACTIONS(9627), + [anon_sym_DOT] = ACTIONS(9629), + [anon_sym_DOT_STAR] = ACTIONS(9631), + [anon_sym_DASH_GT] = ACTIONS(9631), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9623), + }, + [STATE(3780)] = { + [sym_attribute_specifier] = STATE(3182), + [sym_enumerator_list] = STATE(3870), [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), [anon_sym_COMMA] = ACTIONS(7389), [anon_sym_RPAREN] = ACTIONS(7389), @@ -448004,11 +448701,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(7389), [anon_sym_SEMI] = ACTIONS(7389), [anon_sym___extension__] = ACTIONS(7389), - [anon_sym___attribute__] = ACTIONS(9312), - [anon_sym___attribute] = ACTIONS(9244), + [anon_sym___attribute__] = ACTIONS(9309), + [anon_sym___attribute] = ACTIONS(9211), [anon_sym_COLON] = ACTIONS(7387), [anon_sym_RBRACK_RBRACK] = ACTIONS(7389), - [anon_sym_LBRACE] = ACTIONS(9576), + [anon_sym_LBRACE] = ACTIONS(9520), [anon_sym_RBRACE] = ACTIONS(7389), [anon_sym_LBRACK] = ACTIONS(7389), [anon_sym_const] = ACTIONS(7387), @@ -448044,701 +448741,1170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_requires] = ACTIONS(7389), [anon_sym_COLON_RBRACK] = ACTIONS(7389), }, - [STATE(3768)] = { - [sym_identifier] = ACTIONS(9626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9628), - [anon_sym_COMMA] = ACTIONS(9628), - [anon_sym_RPAREN] = ACTIONS(9628), - [aux_sym_preproc_if_token2] = ACTIONS(9628), - [aux_sym_preproc_else_token1] = ACTIONS(9628), - [aux_sym_preproc_elif_token1] = ACTIONS(9626), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9628), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9628), - [anon_sym_LPAREN2] = ACTIONS(9628), - [anon_sym_DASH] = ACTIONS(9626), - [anon_sym_PLUS] = ACTIONS(9626), - [anon_sym_STAR] = ACTIONS(9626), - [anon_sym_SLASH] = ACTIONS(9626), - [anon_sym_PERCENT] = ACTIONS(9626), - [anon_sym_PIPE_PIPE] = ACTIONS(9628), - [anon_sym_AMP_AMP] = ACTIONS(9628), - [anon_sym_PIPE] = ACTIONS(9626), - [anon_sym_CARET] = ACTIONS(9626), - [anon_sym_AMP] = ACTIONS(9626), - [anon_sym_EQ_EQ] = ACTIONS(9628), - [anon_sym_BANG_EQ] = ACTIONS(9628), - [anon_sym_GT] = ACTIONS(9626), - [anon_sym_GT_EQ] = ACTIONS(9628), - [anon_sym_LT_EQ] = ACTIONS(9626), - [anon_sym_LT] = ACTIONS(9626), - [anon_sym_LT_LT] = ACTIONS(9626), - [anon_sym_GT_GT] = ACTIONS(9626), - [anon_sym_SEMI] = ACTIONS(9628), - [anon_sym___attribute__] = ACTIONS(9626), - [anon_sym___attribute] = ACTIONS(9626), - [anon_sym_COLON] = ACTIONS(9626), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9628), - [anon_sym_LBRACE] = ACTIONS(9628), - [anon_sym_RBRACE] = ACTIONS(9628), - [anon_sym_LBRACK] = ACTIONS(9628), - [anon_sym_EQ] = ACTIONS(9626), - [anon_sym_QMARK] = ACTIONS(9628), - [anon_sym_STAR_EQ] = ACTIONS(9628), - [anon_sym_SLASH_EQ] = ACTIONS(9628), - [anon_sym_PERCENT_EQ] = ACTIONS(9628), - [anon_sym_PLUS_EQ] = ACTIONS(9628), - [anon_sym_DASH_EQ] = ACTIONS(9628), - [anon_sym_LT_LT_EQ] = ACTIONS(9628), - [anon_sym_GT_GT_EQ] = ACTIONS(9628), - [anon_sym_AMP_EQ] = ACTIONS(9628), - [anon_sym_CARET_EQ] = ACTIONS(9628), - [anon_sym_PIPE_EQ] = ACTIONS(9628), - [anon_sym_and_eq] = ACTIONS(9626), - [anon_sym_or_eq] = ACTIONS(9626), - [anon_sym_xor_eq] = ACTIONS(9626), - [anon_sym_LT_EQ_GT] = ACTIONS(9628), - [anon_sym_or] = ACTIONS(9626), - [anon_sym_and] = ACTIONS(9626), - [anon_sym_bitor] = ACTIONS(9626), - [anon_sym_xor] = ACTIONS(9626), - [anon_sym_bitand] = ACTIONS(9626), - [anon_sym_not_eq] = ACTIONS(9626), - [anon_sym_DASH_DASH] = ACTIONS(9628), - [anon_sym_PLUS_PLUS] = ACTIONS(9628), - [anon_sym_DOT] = ACTIONS(9626), - [anon_sym_DOT_STAR] = ACTIONS(9628), - [anon_sym_DASH_GT] = ACTIONS(9628), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9628), + [STATE(3781)] = { + [sym_template_argument_list] = STATE(3708), + [sym_identifier] = ACTIONS(9633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9635), + [anon_sym_COMMA] = ACTIONS(9635), + [anon_sym_RPAREN] = ACTIONS(9635), + [aux_sym_preproc_if_token2] = ACTIONS(9635), + [aux_sym_preproc_else_token1] = ACTIONS(9635), + [aux_sym_preproc_elif_token1] = ACTIONS(9633), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9635), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9635), + [anon_sym_LPAREN2] = ACTIONS(9635), + [anon_sym_DASH] = ACTIONS(9633), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_STAR] = ACTIONS(9633), + [anon_sym_SLASH] = ACTIONS(9633), + [anon_sym_PERCENT] = ACTIONS(9633), + [anon_sym_PIPE_PIPE] = ACTIONS(9635), + [anon_sym_AMP_AMP] = ACTIONS(9635), + [anon_sym_PIPE] = ACTIONS(9633), + [anon_sym_CARET] = ACTIONS(9633), + [anon_sym_AMP] = ACTIONS(9633), + [anon_sym_EQ_EQ] = ACTIONS(9635), + [anon_sym_BANG_EQ] = ACTIONS(9635), + [anon_sym_GT] = ACTIONS(9633), + [anon_sym_GT_EQ] = ACTIONS(9635), + [anon_sym_LT_EQ] = ACTIONS(9633), + [anon_sym_LT] = ACTIONS(9637), + [anon_sym_LT_LT] = ACTIONS(9633), + [anon_sym_GT_GT] = ACTIONS(9633), + [anon_sym_SEMI] = ACTIONS(9635), + [anon_sym___attribute__] = ACTIONS(9633), + [anon_sym___attribute] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9635), + [anon_sym_RBRACE] = ACTIONS(9635), + [anon_sym_LBRACK] = ACTIONS(9635), + [anon_sym_EQ] = ACTIONS(9633), + [anon_sym_QMARK] = ACTIONS(9635), + [anon_sym_STAR_EQ] = ACTIONS(9635), + [anon_sym_SLASH_EQ] = ACTIONS(9635), + [anon_sym_PERCENT_EQ] = ACTIONS(9635), + [anon_sym_PLUS_EQ] = ACTIONS(9635), + [anon_sym_DASH_EQ] = ACTIONS(9635), + [anon_sym_LT_LT_EQ] = ACTIONS(9635), + [anon_sym_GT_GT_EQ] = ACTIONS(9635), + [anon_sym_AMP_EQ] = ACTIONS(9635), + [anon_sym_CARET_EQ] = ACTIONS(9635), + [anon_sym_PIPE_EQ] = ACTIONS(9635), + [anon_sym_and_eq] = ACTIONS(9633), + [anon_sym_or_eq] = ACTIONS(9633), + [anon_sym_xor_eq] = ACTIONS(9633), + [anon_sym_LT_EQ_GT] = ACTIONS(9635), + [anon_sym_or] = ACTIONS(9633), + [anon_sym_and] = ACTIONS(9633), + [anon_sym_bitor] = ACTIONS(9633), + [anon_sym_xor] = ACTIONS(9633), + [anon_sym_bitand] = ACTIONS(9633), + [anon_sym_not_eq] = ACTIONS(9633), + [anon_sym_DASH_DASH] = ACTIONS(9635), + [anon_sym_PLUS_PLUS] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9633), + [anon_sym_DOT_STAR] = ACTIONS(9635), + [anon_sym_DASH_GT] = ACTIONS(9635), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9635), }, - [STATE(3769)] = { - [sym_identifier] = ACTIONS(9630), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9632), - [anon_sym_COMMA] = ACTIONS(9632), - [anon_sym_RPAREN] = ACTIONS(9632), - [aux_sym_preproc_if_token2] = ACTIONS(9632), - [aux_sym_preproc_else_token1] = ACTIONS(9632), - [aux_sym_preproc_elif_token1] = ACTIONS(9630), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9632), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9632), - [anon_sym_LPAREN2] = ACTIONS(9632), - [anon_sym_DASH] = ACTIONS(9630), - [anon_sym_PLUS] = ACTIONS(9630), - [anon_sym_STAR] = ACTIONS(9630), - [anon_sym_SLASH] = ACTIONS(9630), - [anon_sym_PERCENT] = ACTIONS(9630), - [anon_sym_PIPE_PIPE] = ACTIONS(9632), - [anon_sym_AMP_AMP] = ACTIONS(9632), - [anon_sym_PIPE] = ACTIONS(9630), - [anon_sym_CARET] = ACTIONS(9630), - [anon_sym_AMP] = ACTIONS(9630), - [anon_sym_EQ_EQ] = ACTIONS(9632), - [anon_sym_BANG_EQ] = ACTIONS(9632), - [anon_sym_GT] = ACTIONS(9630), - [anon_sym_GT_EQ] = ACTIONS(9632), - [anon_sym_LT_EQ] = ACTIONS(9630), - [anon_sym_LT] = ACTIONS(9630), - [anon_sym_LT_LT] = ACTIONS(9630), - [anon_sym_GT_GT] = ACTIONS(9630), - [anon_sym_SEMI] = ACTIONS(9632), - [anon_sym___attribute__] = ACTIONS(9630), - [anon_sym___attribute] = ACTIONS(9630), - [anon_sym_COLON] = ACTIONS(9630), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9632), - [anon_sym_LBRACE] = ACTIONS(9632), - [anon_sym_RBRACE] = ACTIONS(9632), - [anon_sym_LBRACK] = ACTIONS(9632), - [anon_sym_EQ] = ACTIONS(9630), - [anon_sym_QMARK] = ACTIONS(9632), - [anon_sym_STAR_EQ] = ACTIONS(9632), - [anon_sym_SLASH_EQ] = ACTIONS(9632), - [anon_sym_PERCENT_EQ] = ACTIONS(9632), - [anon_sym_PLUS_EQ] = ACTIONS(9632), - [anon_sym_DASH_EQ] = ACTIONS(9632), - [anon_sym_LT_LT_EQ] = ACTIONS(9632), - [anon_sym_GT_GT_EQ] = ACTIONS(9632), - [anon_sym_AMP_EQ] = ACTIONS(9632), - [anon_sym_CARET_EQ] = ACTIONS(9632), - [anon_sym_PIPE_EQ] = ACTIONS(9632), - [anon_sym_and_eq] = ACTIONS(9630), - [anon_sym_or_eq] = ACTIONS(9630), - [anon_sym_xor_eq] = ACTIONS(9630), - [anon_sym_LT_EQ_GT] = ACTIONS(9632), - [anon_sym_or] = ACTIONS(9630), - [anon_sym_and] = ACTIONS(9630), - [anon_sym_bitor] = ACTIONS(9630), - [anon_sym_xor] = ACTIONS(9630), - [anon_sym_bitand] = ACTIONS(9630), - [anon_sym_not_eq] = ACTIONS(9630), - [anon_sym_DASH_DASH] = ACTIONS(9632), - [anon_sym_PLUS_PLUS] = ACTIONS(9632), - [anon_sym_DOT] = ACTIONS(9630), - [anon_sym_DOT_STAR] = ACTIONS(9632), - [anon_sym_DASH_GT] = ACTIONS(9632), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9632), + [STATE(3782)] = { + [sym_string_literal] = STATE(3622), + [sym_raw_string_literal] = STATE(3622), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9109), + [anon_sym_COMMA] = ACTIONS(9109), + [anon_sym_RPAREN] = ACTIONS(9109), + [anon_sym_LPAREN2] = ACTIONS(9109), + [anon_sym_DASH] = ACTIONS(9107), + [anon_sym_PLUS] = ACTIONS(9107), + [anon_sym_STAR] = ACTIONS(9107), + [anon_sym_SLASH] = ACTIONS(9107), + [anon_sym_PERCENT] = ACTIONS(9107), + [anon_sym_PIPE_PIPE] = ACTIONS(9109), + [anon_sym_AMP_AMP] = ACTIONS(9109), + [anon_sym_PIPE] = ACTIONS(9107), + [anon_sym_CARET] = ACTIONS(9107), + [anon_sym_AMP] = ACTIONS(9107), + [anon_sym_EQ_EQ] = ACTIONS(9109), + [anon_sym_BANG_EQ] = ACTIONS(9109), + [anon_sym_GT] = ACTIONS(9107), + [anon_sym_GT_EQ] = ACTIONS(9109), + [anon_sym_LT_EQ] = ACTIONS(9107), + [anon_sym_LT] = ACTIONS(9107), + [anon_sym_LT_LT] = ACTIONS(9107), + [anon_sym_GT_GT] = ACTIONS(9107), + [anon_sym_LBRACK] = ACTIONS(9109), + [anon_sym_EQ] = ACTIONS(9107), + [anon_sym_QMARK] = ACTIONS(9109), + [anon_sym_STAR_EQ] = ACTIONS(9109), + [anon_sym_SLASH_EQ] = ACTIONS(9109), + [anon_sym_PERCENT_EQ] = ACTIONS(9109), + [anon_sym_PLUS_EQ] = ACTIONS(9109), + [anon_sym_DASH_EQ] = ACTIONS(9109), + [anon_sym_LT_LT_EQ] = ACTIONS(9109), + [anon_sym_GT_GT_EQ] = ACTIONS(9109), + [anon_sym_AMP_EQ] = ACTIONS(9109), + [anon_sym_CARET_EQ] = ACTIONS(9109), + [anon_sym_PIPE_EQ] = ACTIONS(9109), + [anon_sym_and_eq] = ACTIONS(9107), + [anon_sym_or_eq] = ACTIONS(9107), + [anon_sym_xor_eq] = ACTIONS(9107), + [anon_sym_LT_EQ_GT] = ACTIONS(9109), + [anon_sym_or] = ACTIONS(9107), + [anon_sym_and] = ACTIONS(9107), + [anon_sym_bitor] = ACTIONS(9107), + [anon_sym_xor] = ACTIONS(9107), + [anon_sym_bitand] = ACTIONS(9107), + [anon_sym_not_eq] = ACTIONS(9107), + [anon_sym_DASH_DASH] = ACTIONS(9109), + [anon_sym_PLUS_PLUS] = ACTIONS(9109), + [anon_sym_DOT] = ACTIONS(9107), + [anon_sym_DOT_STAR] = ACTIONS(9109), + [anon_sym_DASH_GT] = ACTIONS(9107), + [anon_sym_L_DQUOTE] = ACTIONS(6901), + [anon_sym_u_DQUOTE] = ACTIONS(6901), + [anon_sym_U_DQUOTE] = ACTIONS(6901), + [anon_sym_u8_DQUOTE] = ACTIONS(6901), + [anon_sym_DQUOTE] = ACTIONS(6901), + [sym_comment] = ACTIONS(3), + [anon_sym_R_DQUOTE] = ACTIONS(6903), + [anon_sym_LR_DQUOTE] = ACTIONS(6903), + [anon_sym_uR_DQUOTE] = ACTIONS(6903), + [anon_sym_UR_DQUOTE] = ACTIONS(6903), + [anon_sym_u8R_DQUOTE] = ACTIONS(6903), + [anon_sym_DASH_GT_STAR] = ACTIONS(9109), + [sym_literal_suffix] = ACTIONS(9107), }, - [STATE(3770)] = { - [sym_type_qualifier] = STATE(3773), - [sym_alignas_qualifier] = STATE(3945), - [aux_sym__type_definition_type_repeat1] = STATE(3773), - [aux_sym_sized_type_specifier_repeat1] = STATE(4118), - [sym_identifier] = ACTIONS(9172), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_DASH] = ACTIONS(7251), - [anon_sym_PLUS] = ACTIONS(7251), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_SLASH] = ACTIONS(7251), - [anon_sym_PERCENT] = ACTIONS(7249), - [anon_sym_PIPE_PIPE] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_PIPE] = ACTIONS(7251), - [anon_sym_CARET] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_EQ_EQ] = ACTIONS(7249), - [anon_sym_BANG_EQ] = ACTIONS(7249), - [anon_sym_GT] = ACTIONS(7251), - [anon_sym_GT_EQ] = ACTIONS(7251), - [anon_sym_LT_EQ] = ACTIONS(7251), - [anon_sym_LT] = ACTIONS(7251), - [anon_sym_LT_LT] = ACTIONS(7249), - [anon_sym_GT_GT] = ACTIONS(7251), - [anon_sym___extension__] = ACTIONS(8618), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(9634), - [anon_sym_unsigned] = ACTIONS(9634), - [anon_sym_long] = ACTIONS(9634), - [anon_sym_short] = ACTIONS(9634), - [anon_sym_LBRACK] = ACTIONS(7249), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8618), - [anon_sym_volatile] = ACTIONS(8618), - [anon_sym_restrict] = ACTIONS(8618), - [anon_sym___restrict__] = ACTIONS(8618), - [anon_sym__Atomic] = ACTIONS(8618), - [anon_sym__Noreturn] = ACTIONS(8618), - [anon_sym_noreturn] = ACTIONS(8618), - [anon_sym__Nonnull] = ACTIONS(8618), - [anon_sym_mutable] = ACTIONS(8618), - [anon_sym_constinit] = ACTIONS(8618), - [anon_sym_consteval] = ACTIONS(8618), - [anon_sym_alignas] = ACTIONS(9636), - [anon_sym__Alignas] = ACTIONS(9636), - [sym_primitive_type] = ACTIONS(9182), - [anon_sym_QMARK] = ACTIONS(7249), - [anon_sym_LT_EQ_GT] = ACTIONS(7249), - [anon_sym_or] = ACTIONS(7251), - [anon_sym_and] = ACTIONS(7251), - [anon_sym_bitor] = ACTIONS(7251), - [anon_sym_xor] = ACTIONS(7251), - [anon_sym_bitand] = ACTIONS(7251), - [anon_sym_not_eq] = ACTIONS(7251), - [anon_sym_DASH_DASH] = ACTIONS(7249), - [anon_sym_PLUS_PLUS] = ACTIONS(7249), - [anon_sym_DOT] = ACTIONS(7251), - [anon_sym_DOT_STAR] = ACTIONS(7249), - [anon_sym_DASH_GT] = ACTIONS(7249), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7249), + [STATE(3783)] = { + [sym_ms_based_modifier] = STATE(10831), + [sym__declarator] = STATE(8775), + [sym__abstract_declarator] = STATE(9007), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(7149), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5445), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(7149), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8794), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8798), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, - [STATE(3771)] = { - [sym_identifier] = ACTIONS(7231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7233), - [anon_sym_COMMA] = ACTIONS(7233), - [anon_sym_RPAREN] = ACTIONS(7233), - [anon_sym_LPAREN2] = ACTIONS(7233), - [anon_sym_STAR] = ACTIONS(7233), - [anon_sym_PIPE_PIPE] = ACTIONS(7233), - [anon_sym_AMP_AMP] = ACTIONS(7233), - [anon_sym_AMP] = ACTIONS(7231), - [anon_sym_LT] = ACTIONS(7233), - [anon_sym_SEMI] = ACTIONS(7233), - [anon_sym___extension__] = ACTIONS(7231), - [anon_sym_virtual] = ACTIONS(7231), - [anon_sym_extern] = ACTIONS(7231), - [anon_sym___attribute__] = ACTIONS(7231), - [anon_sym___attribute] = ACTIONS(7231), - [anon_sym_COLON] = ACTIONS(7231), - [anon_sym_COLON_COLON] = ACTIONS(7233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7233), - [anon_sym___declspec] = ACTIONS(7231), - [anon_sym___based] = ACTIONS(7231), - [anon_sym_LBRACE] = ACTIONS(7233), - [anon_sym_signed] = ACTIONS(7231), - [anon_sym_unsigned] = ACTIONS(7231), - [anon_sym_long] = ACTIONS(7231), - [anon_sym_short] = ACTIONS(7231), - [anon_sym_LBRACK] = ACTIONS(7231), - [anon_sym_static] = ACTIONS(7231), - [anon_sym_EQ] = ACTIONS(7233), - [anon_sym_register] = ACTIONS(7231), - [anon_sym_inline] = ACTIONS(7231), - [anon_sym___inline] = ACTIONS(7231), - [anon_sym___inline__] = ACTIONS(7231), - [anon_sym___forceinline] = ACTIONS(7231), - [anon_sym_thread_local] = ACTIONS(7231), - [anon_sym___thread] = ACTIONS(7231), - [anon_sym_const] = ACTIONS(7231), - [anon_sym_constexpr] = ACTIONS(7231), - [anon_sym_volatile] = ACTIONS(7231), - [anon_sym_restrict] = ACTIONS(7231), - [anon_sym___restrict__] = ACTIONS(7231), - [anon_sym__Atomic] = ACTIONS(7231), - [anon_sym__Noreturn] = ACTIONS(7231), - [anon_sym_noreturn] = ACTIONS(7231), - [anon_sym__Nonnull] = ACTIONS(7231), - [anon_sym_mutable] = ACTIONS(7231), - [anon_sym_constinit] = ACTIONS(7231), - [anon_sym_consteval] = ACTIONS(7231), - [anon_sym_alignas] = ACTIONS(7231), - [anon_sym__Alignas] = ACTIONS(7231), - [sym_primitive_type] = ACTIONS(7231), - [anon_sym_or] = ACTIONS(7231), - [anon_sym_and] = ACTIONS(7231), - [anon_sym_asm] = ACTIONS(7231), - [anon_sym___asm__] = ACTIONS(7231), - [anon_sym___asm] = ACTIONS(7231), - [anon_sym_DASH_GT] = ACTIONS(7233), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7231), - [anon_sym_override] = ACTIONS(7231), - [anon_sym_GT2] = ACTIONS(7233), - [anon_sym_try] = ACTIONS(7231), - [anon_sym_noexcept] = ACTIONS(7231), - [anon_sym_throw] = ACTIONS(7231), - [anon_sym_requires] = ACTIONS(7231), + [STATE(3784)] = { + [sym_ms_based_modifier] = STATE(10831), + [sym__declarator] = STATE(8768), + [sym__abstract_declarator] = STATE(9014), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(7149), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5445), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7985), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(7149), + [sym_identifier] = ACTIONS(8553), + [anon_sym_COMMA] = ACTIONS(7345), + [anon_sym_RPAREN] = ACTIONS(7345), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8794), + [anon_sym_AMP_AMP] = ACTIONS(8796), + [anon_sym_AMP] = ACTIONS(8798), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(7347), + [anon_sym___attribute] = ACTIONS(7347), + [anon_sym_COLON_COLON] = ACTIONS(8561), + [anon_sym___based] = ACTIONS(53), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, - [STATE(3772)] = { - [sym_argument_list] = STATE(3874), - [sym_subscript_argument_list] = STATE(3900), - [sym_identifier] = ACTIONS(9638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9640), - [anon_sym_COMMA] = ACTIONS(9640), - [anon_sym_RPAREN] = ACTIONS(9640), - [aux_sym_preproc_if_token2] = ACTIONS(9640), - [aux_sym_preproc_else_token1] = ACTIONS(9640), - [aux_sym_preproc_elif_token1] = ACTIONS(9638), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9640), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9640), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9638), - [anon_sym_PLUS] = ACTIONS(9638), - [anon_sym_STAR] = ACTIONS(9638), - [anon_sym_SLASH] = ACTIONS(9638), - [anon_sym_PERCENT] = ACTIONS(9638), - [anon_sym_PIPE_PIPE] = ACTIONS(9640), - [anon_sym_AMP_AMP] = ACTIONS(9640), - [anon_sym_PIPE] = ACTIONS(9638), - [anon_sym_CARET] = ACTIONS(9638), - [anon_sym_AMP] = ACTIONS(9638), - [anon_sym_EQ_EQ] = ACTIONS(9640), - [anon_sym_BANG_EQ] = ACTIONS(9640), - [anon_sym_GT] = ACTIONS(9638), - [anon_sym_GT_EQ] = ACTIONS(9640), - [anon_sym_LT_EQ] = ACTIONS(9638), - [anon_sym_LT] = ACTIONS(9638), - [anon_sym_LT_LT] = ACTIONS(9638), - [anon_sym_GT_GT] = ACTIONS(9638), - [anon_sym_SEMI] = ACTIONS(9640), - [anon_sym___attribute__] = ACTIONS(9638), - [anon_sym___attribute] = ACTIONS(9638), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9640), - [anon_sym_RBRACE] = ACTIONS(9640), - [anon_sym_LBRACK] = ACTIONS(9642), - [anon_sym_EQ] = ACTIONS(9638), - [anon_sym_QMARK] = ACTIONS(9640), - [anon_sym_STAR_EQ] = ACTIONS(9640), - [anon_sym_SLASH_EQ] = ACTIONS(9640), - [anon_sym_PERCENT_EQ] = ACTIONS(9640), - [anon_sym_PLUS_EQ] = ACTIONS(9640), - [anon_sym_DASH_EQ] = ACTIONS(9640), - [anon_sym_LT_LT_EQ] = ACTIONS(9640), - [anon_sym_GT_GT_EQ] = ACTIONS(9640), - [anon_sym_AMP_EQ] = ACTIONS(9640), - [anon_sym_CARET_EQ] = ACTIONS(9640), - [anon_sym_PIPE_EQ] = ACTIONS(9640), - [anon_sym_and_eq] = ACTIONS(9638), - [anon_sym_or_eq] = ACTIONS(9638), - [anon_sym_xor_eq] = ACTIONS(9638), - [anon_sym_LT_EQ_GT] = ACTIONS(9640), - [anon_sym_or] = ACTIONS(9638), - [anon_sym_and] = ACTIONS(9638), - [anon_sym_bitor] = ACTIONS(9638), - [anon_sym_xor] = ACTIONS(9638), - [anon_sym_bitand] = ACTIONS(9638), - [anon_sym_not_eq] = ACTIONS(9638), - [anon_sym_DASH_DASH] = ACTIONS(9644), - [anon_sym_PLUS_PLUS] = ACTIONS(9644), - [anon_sym_DOT] = ACTIONS(9646), - [anon_sym_DOT_STAR] = ACTIONS(9648), - [anon_sym_DASH_GT] = ACTIONS(9648), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9640), + [STATE(3785)] = { + [sym_type_qualifier] = STATE(3802), + [sym_alignas_qualifier] = STATE(3492), + [aux_sym__type_definition_type_repeat1] = STATE(3802), + [aux_sym_sized_type_specifier_repeat1] = STATE(4070), + [sym_identifier] = ACTIONS(9640), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7209), + [anon_sym_COMMA] = ACTIONS(7209), + [anon_sym_RPAREN] = ACTIONS(7209), + [anon_sym_LPAREN2] = ACTIONS(7209), + [anon_sym_TILDE] = ACTIONS(7209), + [anon_sym_STAR] = ACTIONS(7209), + [anon_sym_AMP_AMP] = ACTIONS(7209), + [anon_sym_AMP] = ACTIONS(7211), + [anon_sym_SEMI] = ACTIONS(7209), + [anon_sym___extension__] = ACTIONS(9643), + [anon_sym_virtual] = ACTIONS(7211), + [anon_sym_extern] = ACTIONS(7211), + [anon_sym___attribute__] = ACTIONS(7211), + [anon_sym___attribute] = ACTIONS(7211), + [anon_sym_COLON_COLON] = ACTIONS(7209), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7209), + [anon_sym___declspec] = ACTIONS(7211), + [anon_sym___based] = ACTIONS(7211), + [anon_sym___cdecl] = ACTIONS(7211), + [anon_sym___clrcall] = ACTIONS(7211), + [anon_sym___stdcall] = ACTIONS(7211), + [anon_sym___fastcall] = ACTIONS(7211), + [anon_sym___thiscall] = ACTIONS(7211), + [anon_sym___vectorcall] = ACTIONS(7211), + [anon_sym_LBRACE] = ACTIONS(7209), + [anon_sym_signed] = ACTIONS(9646), + [anon_sym_unsigned] = ACTIONS(9646), + [anon_sym_long] = ACTIONS(9646), + [anon_sym_short] = ACTIONS(9646), + [anon_sym_LBRACK] = ACTIONS(7211), + [anon_sym_static] = ACTIONS(7211), + [anon_sym_EQ] = ACTIONS(7209), + [anon_sym_register] = ACTIONS(7211), + [anon_sym_inline] = ACTIONS(7211), + [anon_sym___inline] = ACTIONS(7211), + [anon_sym___inline__] = ACTIONS(7211), + [anon_sym___forceinline] = ACTIONS(7211), + [anon_sym_thread_local] = ACTIONS(7211), + [anon_sym___thread] = ACTIONS(7211), + [anon_sym_const] = ACTIONS(9643), + [anon_sym_constexpr] = ACTIONS(9643), + [anon_sym_volatile] = ACTIONS(9643), + [anon_sym_restrict] = ACTIONS(9643), + [anon_sym___restrict__] = ACTIONS(9643), + [anon_sym__Atomic] = ACTIONS(9643), + [anon_sym__Noreturn] = ACTIONS(9643), + [anon_sym_noreturn] = ACTIONS(9643), + [anon_sym__Nonnull] = ACTIONS(9643), + [anon_sym_mutable] = ACTIONS(9643), + [anon_sym_constinit] = ACTIONS(9643), + [anon_sym_consteval] = ACTIONS(9643), + [anon_sym_alignas] = ACTIONS(9648), + [anon_sym__Alignas] = ACTIONS(9648), + [sym_primitive_type] = ACTIONS(9651), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7211), + [anon_sym_template] = ACTIONS(7211), + [anon_sym_GT2] = ACTIONS(7209), + [anon_sym_operator] = ACTIONS(7211), + [anon_sym_LBRACK_COLON] = ACTIONS(7209), }, - [STATE(3773)] = { - [sym_type_qualifier] = STATE(3691), - [sym_alignas_qualifier] = STATE(3945), - [aux_sym__type_definition_type_repeat1] = STATE(3691), - [aux_sym_sized_type_specifier_repeat1] = STATE(4039), - [sym_identifier] = ACTIONS(9184), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7207), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7207), - [anon_sym___extension__] = ACTIONS(8618), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(9189), - [anon_sym_unsigned] = ACTIONS(9189), - [anon_sym_long] = ACTIONS(9189), - [anon_sym_short] = ACTIONS(9189), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(8618), - [anon_sym_constexpr] = ACTIONS(8618), - [anon_sym_volatile] = ACTIONS(8618), - [anon_sym_restrict] = ACTIONS(8618), - [anon_sym___restrict__] = ACTIONS(8618), - [anon_sym__Atomic] = ACTIONS(8618), - [anon_sym__Noreturn] = ACTIONS(8618), - [anon_sym_noreturn] = ACTIONS(8618), - [anon_sym__Nonnull] = ACTIONS(8618), - [anon_sym_mutable] = ACTIONS(8618), - [anon_sym_constinit] = ACTIONS(8618), - [anon_sym_consteval] = ACTIONS(8618), - [anon_sym_alignas] = ACTIONS(9636), - [anon_sym__Alignas] = ACTIONS(9636), - [sym_primitive_type] = ACTIONS(9194), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - [anon_sym_GT2] = ACTIONS(7205), + [STATE(3786)] = { + [sym_identifier] = ACTIONS(8513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(8508), + [anon_sym_COMMA] = ACTIONS(8508), + [anon_sym_RPAREN] = ACTIONS(8508), + [aux_sym_preproc_if_token2] = ACTIONS(8508), + [aux_sym_preproc_else_token1] = ACTIONS(8508), + [aux_sym_preproc_elif_token1] = ACTIONS(8513), + [aux_sym_preproc_elifdef_token1] = ACTIONS(8508), + [aux_sym_preproc_elifdef_token2] = ACTIONS(8508), + [anon_sym_LPAREN2] = ACTIONS(8508), + [anon_sym_DASH] = ACTIONS(8513), + [anon_sym_PLUS] = ACTIONS(8513), + [anon_sym_STAR] = ACTIONS(8513), + [anon_sym_SLASH] = ACTIONS(8513), + [anon_sym_PERCENT] = ACTIONS(8513), + [anon_sym_PIPE_PIPE] = ACTIONS(8508), + [anon_sym_AMP_AMP] = ACTIONS(8508), + [anon_sym_PIPE] = ACTIONS(8513), + [anon_sym_CARET] = ACTIONS(8513), + [anon_sym_AMP] = ACTIONS(8513), + [anon_sym_EQ_EQ] = ACTIONS(8508), + [anon_sym_BANG_EQ] = ACTIONS(8508), + [anon_sym_GT] = ACTIONS(8513), + [anon_sym_GT_EQ] = ACTIONS(8508), + [anon_sym_LT_EQ] = ACTIONS(8513), + [anon_sym_LT] = ACTIONS(8513), + [anon_sym_LT_LT] = ACTIONS(8513), + [anon_sym_GT_GT] = ACTIONS(8513), + [anon_sym_SEMI] = ACTIONS(8508), + [anon_sym___attribute__] = ACTIONS(8513), + [anon_sym___attribute] = ACTIONS(8513), + [anon_sym_COLON] = ACTIONS(8513), + [anon_sym_COLON_COLON] = ACTIONS(8508), + [anon_sym_RBRACK_RBRACK] = ACTIONS(8508), + [anon_sym_RBRACE] = ACTIONS(8508), + [anon_sym_LBRACK] = ACTIONS(8508), + [anon_sym_EQ] = ACTIONS(8513), + [anon_sym_QMARK] = ACTIONS(8508), + [anon_sym_STAR_EQ] = ACTIONS(8508), + [anon_sym_SLASH_EQ] = ACTIONS(8508), + [anon_sym_PERCENT_EQ] = ACTIONS(8508), + [anon_sym_PLUS_EQ] = ACTIONS(8508), + [anon_sym_DASH_EQ] = ACTIONS(8508), + [anon_sym_LT_LT_EQ] = ACTIONS(8508), + [anon_sym_GT_GT_EQ] = ACTIONS(8508), + [anon_sym_AMP_EQ] = ACTIONS(8508), + [anon_sym_CARET_EQ] = ACTIONS(8508), + [anon_sym_PIPE_EQ] = ACTIONS(8508), + [anon_sym_and_eq] = ACTIONS(8513), + [anon_sym_or_eq] = ACTIONS(8513), + [anon_sym_xor_eq] = ACTIONS(8513), + [anon_sym_LT_EQ_GT] = ACTIONS(8508), + [anon_sym_or] = ACTIONS(8513), + [anon_sym_and] = ACTIONS(8513), + [anon_sym_bitor] = ACTIONS(8513), + [anon_sym_xor] = ACTIONS(8513), + [anon_sym_bitand] = ACTIONS(8513), + [anon_sym_not_eq] = ACTIONS(8513), + [anon_sym_DASH_DASH] = ACTIONS(8508), + [anon_sym_PLUS_PLUS] = ACTIONS(8508), + [anon_sym_DOT] = ACTIONS(8513), + [anon_sym_DOT_STAR] = ACTIONS(8508), + [anon_sym_DASH_GT] = ACTIONS(8508), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(8508), }, - [STATE(3774)] = { - [sym__abstract_declarator] = STATE(6552), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2274), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7351), - [anon_sym_COMMA] = ACTIONS(7351), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7349), - [anon_sym_PLUS] = ACTIONS(7349), - [anon_sym_STAR] = ACTIONS(8677), - [anon_sym_SLASH] = ACTIONS(7349), - [anon_sym_PERCENT] = ACTIONS(7351), - [anon_sym_PIPE_PIPE] = ACTIONS(7351), - [anon_sym_AMP_AMP] = ACTIONS(8679), - [anon_sym_PIPE] = ACTIONS(7349), - [anon_sym_CARET] = ACTIONS(7351), - [anon_sym_AMP] = ACTIONS(8681), - [anon_sym_EQ_EQ] = ACTIONS(7351), - [anon_sym_BANG_EQ] = ACTIONS(7351), - [anon_sym_GT] = ACTIONS(7349), - [anon_sym_GT_EQ] = ACTIONS(7351), - [anon_sym_LT_EQ] = ACTIONS(7349), - [anon_sym_LT] = ACTIONS(7349), - [anon_sym_LT_LT] = ACTIONS(7351), - [anon_sym_GT_GT] = ACTIONS(7351), - [anon_sym_SEMI] = ACTIONS(7351), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(7351), - [anon_sym___attribute] = ACTIONS(7349), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7351), - [anon_sym_LT_EQ_GT] = ACTIONS(7351), - [anon_sym_or] = ACTIONS(7351), - [anon_sym_and] = ACTIONS(7351), - [anon_sym_bitor] = ACTIONS(7351), - [anon_sym_xor] = ACTIONS(7351), - [anon_sym_bitand] = ACTIONS(7351), - [anon_sym_not_eq] = ACTIONS(7351), - [anon_sym_DASH_DASH] = ACTIONS(7351), - [anon_sym_PLUS_PLUS] = ACTIONS(7351), - [anon_sym_DOT] = ACTIONS(7349), - [anon_sym_DOT_STAR] = ACTIONS(7351), - [anon_sym_DASH_GT] = ACTIONS(7351), + [STATE(3787)] = { + [sym_decltype_auto] = STATE(4089), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7248), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym_LBRACE] = ACTIONS(7248), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_RBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), + [sym_comment] = ACTIONS(3), + [sym_auto] = ACTIONS(9543), + [anon_sym_decltype] = ACTIONS(6772), + [anon_sym_final] = ACTIONS(7246), + [anon_sym_override] = ACTIONS(7246), + [anon_sym_requires] = ACTIONS(7246), + }, + [STATE(3788)] = { + [sym_identifier] = ACTIONS(9653), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9655), + [anon_sym_COMMA] = ACTIONS(9655), + [anon_sym_RPAREN] = ACTIONS(9655), + [aux_sym_preproc_if_token2] = ACTIONS(9655), + [aux_sym_preproc_else_token1] = ACTIONS(9655), + [aux_sym_preproc_elif_token1] = ACTIONS(9653), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9655), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9655), + [anon_sym_LPAREN2] = ACTIONS(9655), + [anon_sym_DASH] = ACTIONS(9653), + [anon_sym_PLUS] = ACTIONS(9653), + [anon_sym_STAR] = ACTIONS(9653), + [anon_sym_SLASH] = ACTIONS(9653), + [anon_sym_PERCENT] = ACTIONS(9653), + [anon_sym_PIPE_PIPE] = ACTIONS(9655), + [anon_sym_AMP_AMP] = ACTIONS(9655), + [anon_sym_PIPE] = ACTIONS(9653), + [anon_sym_CARET] = ACTIONS(9653), + [anon_sym_AMP] = ACTIONS(9653), + [anon_sym_EQ_EQ] = ACTIONS(9655), + [anon_sym_BANG_EQ] = ACTIONS(9655), + [anon_sym_GT] = ACTIONS(9653), + [anon_sym_GT_EQ] = ACTIONS(9655), + [anon_sym_LT_EQ] = ACTIONS(9653), + [anon_sym_LT] = ACTIONS(9653), + [anon_sym_LT_LT] = ACTIONS(9653), + [anon_sym_GT_GT] = ACTIONS(9653), + [anon_sym_SEMI] = ACTIONS(9655), + [anon_sym___attribute__] = ACTIONS(9653), + [anon_sym___attribute] = ACTIONS(9653), + [anon_sym_COLON] = ACTIONS(9653), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9655), + [anon_sym_LBRACE] = ACTIONS(9655), + [anon_sym_RBRACE] = ACTIONS(9655), + [anon_sym_LBRACK] = ACTIONS(9655), + [anon_sym_EQ] = ACTIONS(9653), + [anon_sym_QMARK] = ACTIONS(9655), + [anon_sym_STAR_EQ] = ACTIONS(9655), + [anon_sym_SLASH_EQ] = ACTIONS(9655), + [anon_sym_PERCENT_EQ] = ACTIONS(9655), + [anon_sym_PLUS_EQ] = ACTIONS(9655), + [anon_sym_DASH_EQ] = ACTIONS(9655), + [anon_sym_LT_LT_EQ] = ACTIONS(9655), + [anon_sym_GT_GT_EQ] = ACTIONS(9655), + [anon_sym_AMP_EQ] = ACTIONS(9655), + [anon_sym_CARET_EQ] = ACTIONS(9655), + [anon_sym_PIPE_EQ] = ACTIONS(9655), + [anon_sym_and_eq] = ACTIONS(9653), + [anon_sym_or_eq] = ACTIONS(9653), + [anon_sym_xor_eq] = ACTIONS(9653), + [anon_sym_LT_EQ_GT] = ACTIONS(9655), + [anon_sym_or] = ACTIONS(9653), + [anon_sym_and] = ACTIONS(9653), + [anon_sym_bitor] = ACTIONS(9653), + [anon_sym_xor] = ACTIONS(9653), + [anon_sym_bitand] = ACTIONS(9653), + [anon_sym_not_eq] = ACTIONS(9653), + [anon_sym_DASH_DASH] = ACTIONS(9655), + [anon_sym_PLUS_PLUS] = ACTIONS(9655), + [anon_sym_DOT] = ACTIONS(9653), + [anon_sym_DOT_STAR] = ACTIONS(9655), + [anon_sym_DASH_GT] = ACTIONS(9655), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9655), + }, + [STATE(3789)] = { + [sym_argument_list] = STATE(3931), + [sym_initializer_list] = STATE(5980), + [aux_sym_sized_type_specifier_repeat1] = STATE(3458), + [sym_identifier] = ACTIONS(7246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7248), + [anon_sym_COMMA] = ACTIONS(7248), + [aux_sym_preproc_if_token2] = ACTIONS(7248), + [aux_sym_preproc_else_token1] = ACTIONS(7248), + [aux_sym_preproc_elif_token1] = ACTIONS(7246), + [aux_sym_preproc_elifdef_token1] = ACTIONS(7248), + [aux_sym_preproc_elifdef_token2] = ACTIONS(7248), + [anon_sym_LPAREN2] = ACTIONS(7553), + [anon_sym_DASH] = ACTIONS(7246), + [anon_sym_PLUS] = ACTIONS(7246), + [anon_sym_STAR] = ACTIONS(7248), + [anon_sym_SLASH] = ACTIONS(7246), + [anon_sym_PERCENT] = ACTIONS(7248), + [anon_sym_PIPE_PIPE] = ACTIONS(7248), + [anon_sym_AMP_AMP] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(7246), + [anon_sym_CARET] = ACTIONS(7248), + [anon_sym_AMP] = ACTIONS(7246), + [anon_sym_EQ_EQ] = ACTIONS(7248), + [anon_sym_BANG_EQ] = ACTIONS(7248), + [anon_sym_GT] = ACTIONS(7246), + [anon_sym_GT_EQ] = ACTIONS(7248), + [anon_sym_LT_EQ] = ACTIONS(7246), + [anon_sym_LT] = ACTIONS(7246), + [anon_sym_LT_LT] = ACTIONS(7248), + [anon_sym_GT_GT] = ACTIONS(7248), + [anon_sym___extension__] = ACTIONS(7246), + [anon_sym_LBRACE] = ACTIONS(4674), + [anon_sym_signed] = ACTIONS(9101), + [anon_sym_unsigned] = ACTIONS(9101), + [anon_sym_long] = ACTIONS(9101), + [anon_sym_short] = ACTIONS(9101), + [anon_sym_LBRACK] = ACTIONS(7248), + [anon_sym_const] = ACTIONS(7246), + [anon_sym_constexpr] = ACTIONS(7246), + [anon_sym_volatile] = ACTIONS(7246), + [anon_sym_restrict] = ACTIONS(7246), + [anon_sym___restrict__] = ACTIONS(7246), + [anon_sym__Atomic] = ACTIONS(7246), + [anon_sym__Noreturn] = ACTIONS(7246), + [anon_sym_noreturn] = ACTIONS(7246), + [anon_sym__Nonnull] = ACTIONS(7246), + [anon_sym_mutable] = ACTIONS(7246), + [anon_sym_constinit] = ACTIONS(7246), + [anon_sym_consteval] = ACTIONS(7246), + [anon_sym_alignas] = ACTIONS(7246), + [anon_sym__Alignas] = ACTIONS(7246), + [anon_sym_QMARK] = ACTIONS(7248), + [anon_sym_LT_EQ_GT] = ACTIONS(7248), + [anon_sym_or] = ACTIONS(7246), + [anon_sym_and] = ACTIONS(7246), + [anon_sym_bitor] = ACTIONS(7246), + [anon_sym_xor] = ACTIONS(7246), + [anon_sym_bitand] = ACTIONS(7246), + [anon_sym_not_eq] = ACTIONS(7246), + [anon_sym_DASH_DASH] = ACTIONS(7248), + [anon_sym_PLUS_PLUS] = ACTIONS(7248), + [anon_sym_DOT] = ACTIONS(7246), + [anon_sym_DOT_STAR] = ACTIONS(7248), + [anon_sym_DASH_GT] = ACTIONS(7248), [sym_comment] = ACTIONS(3), }, - [STATE(3775)] = { - [sym__abstract_declarator] = STATE(6553), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3777), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2274), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7343), - [anon_sym_COMMA] = ACTIONS(7343), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7341), - [anon_sym_PLUS] = ACTIONS(7341), - [anon_sym_STAR] = ACTIONS(8677), - [anon_sym_SLASH] = ACTIONS(7341), - [anon_sym_PERCENT] = ACTIONS(7343), - [anon_sym_PIPE_PIPE] = ACTIONS(7343), - [anon_sym_AMP_AMP] = ACTIONS(8679), - [anon_sym_PIPE] = ACTIONS(7341), - [anon_sym_CARET] = ACTIONS(7343), - [anon_sym_AMP] = ACTIONS(8681), - [anon_sym_EQ_EQ] = ACTIONS(7343), - [anon_sym_BANG_EQ] = ACTIONS(7343), - [anon_sym_GT] = ACTIONS(7341), - [anon_sym_GT_EQ] = ACTIONS(7343), - [anon_sym_LT_EQ] = ACTIONS(7341), - [anon_sym_LT] = ACTIONS(7341), - [anon_sym_LT_LT] = ACTIONS(7343), - [anon_sym_GT_GT] = ACTIONS(7343), - [anon_sym_SEMI] = ACTIONS(7343), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(7343), - [anon_sym___attribute] = ACTIONS(7341), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7343), - [anon_sym_LT_EQ_GT] = ACTIONS(7343), - [anon_sym_or] = ACTIONS(7343), - [anon_sym_and] = ACTIONS(7343), - [anon_sym_bitor] = ACTIONS(7343), - [anon_sym_xor] = ACTIONS(7343), - [anon_sym_bitand] = ACTIONS(7343), - [anon_sym_not_eq] = ACTIONS(7343), - [anon_sym_DASH_DASH] = ACTIONS(7343), - [anon_sym_PLUS_PLUS] = ACTIONS(7343), - [anon_sym_DOT] = ACTIONS(7341), - [anon_sym_DOT_STAR] = ACTIONS(7343), - [anon_sym_DASH_GT] = ACTIONS(7343), + [STATE(3790)] = { + [sym_identifier] = ACTIONS(9657), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9659), + [anon_sym_COMMA] = ACTIONS(9659), + [aux_sym_preproc_if_token2] = ACTIONS(9659), + [aux_sym_preproc_else_token1] = ACTIONS(9659), + [aux_sym_preproc_elif_token1] = ACTIONS(9661), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9659), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9659), + [anon_sym_LPAREN2] = ACTIONS(9659), + [anon_sym_TILDE] = ACTIONS(9663), + [anon_sym_DASH] = ACTIONS(9661), + [anon_sym_PLUS] = ACTIONS(9661), + [anon_sym_STAR] = ACTIONS(9657), + [anon_sym_SLASH] = ACTIONS(9661), + [anon_sym_PERCENT] = ACTIONS(9661), + [anon_sym_PIPE_PIPE] = ACTIONS(9659), + [anon_sym_AMP_AMP] = ACTIONS(9659), + [anon_sym_PIPE] = ACTIONS(9661), + [anon_sym_CARET] = ACTIONS(9661), + [anon_sym_AMP] = ACTIONS(9661), + [anon_sym_EQ_EQ] = ACTIONS(9659), + [anon_sym_BANG_EQ] = ACTIONS(9659), + [anon_sym_GT] = ACTIONS(9661), + [anon_sym_GT_EQ] = ACTIONS(9659), + [anon_sym_LT_EQ] = ACTIONS(9661), + [anon_sym_LT] = ACTIONS(9661), + [anon_sym_LT_LT] = ACTIONS(9661), + [anon_sym_GT_GT] = ACTIONS(9661), + [anon_sym_COLON_COLON] = ACTIONS(9663), + [anon_sym___based] = ACTIONS(9657), + [anon_sym_LBRACK] = ACTIONS(9661), + [anon_sym_EQ] = ACTIONS(9661), + [anon_sym_QMARK] = ACTIONS(9659), + [anon_sym_STAR_EQ] = ACTIONS(9659), + [anon_sym_SLASH_EQ] = ACTIONS(9659), + [anon_sym_PERCENT_EQ] = ACTIONS(9659), + [anon_sym_PLUS_EQ] = ACTIONS(9659), + [anon_sym_DASH_EQ] = ACTIONS(9659), + [anon_sym_LT_LT_EQ] = ACTIONS(9659), + [anon_sym_GT_GT_EQ] = ACTIONS(9659), + [anon_sym_AMP_EQ] = ACTIONS(9659), + [anon_sym_CARET_EQ] = ACTIONS(9659), + [anon_sym_PIPE_EQ] = ACTIONS(9659), + [anon_sym_and_eq] = ACTIONS(9661), + [anon_sym_or_eq] = ACTIONS(9661), + [anon_sym_xor_eq] = ACTIONS(9661), + [anon_sym_LT_EQ_GT] = ACTIONS(9659), + [anon_sym_or] = ACTIONS(9661), + [anon_sym_and] = ACTIONS(9661), + [anon_sym_bitor] = ACTIONS(9661), + [anon_sym_xor] = ACTIONS(9661), + [anon_sym_bitand] = ACTIONS(9661), + [anon_sym_not_eq] = ACTIONS(9661), + [anon_sym_DASH_DASH] = ACTIONS(9659), + [anon_sym_PLUS_PLUS] = ACTIONS(9659), + [anon_sym_DOT] = ACTIONS(9661), + [anon_sym_DOT_STAR] = ACTIONS(9659), + [anon_sym_DASH_GT] = ACTIONS(9659), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(9657), + [anon_sym_template] = ACTIONS(9657), + [anon_sym_operator] = ACTIONS(9657), + [anon_sym_delete] = ACTIONS(9665), + [anon_sym_new] = ACTIONS(9667), + [anon_sym_LBRACK_COLON] = ACTIONS(9663), + }, + [STATE(3791)] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(3791), + [sym_identifier] = ACTIONS(7060), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7062), + [anon_sym_COMMA] = ACTIONS(7062), + [anon_sym_LPAREN2] = ACTIONS(7062), + [anon_sym_DASH] = ACTIONS(7060), + [anon_sym_PLUS] = ACTIONS(7060), + [anon_sym_STAR] = ACTIONS(7062), + [anon_sym_SLASH] = ACTIONS(7060), + [anon_sym_PERCENT] = ACTIONS(7062), + [anon_sym_PIPE_PIPE] = ACTIONS(7062), + [anon_sym_AMP_AMP] = ACTIONS(7062), + [anon_sym_PIPE] = ACTIONS(7060), + [anon_sym_CARET] = ACTIONS(7062), + [anon_sym_AMP] = ACTIONS(7060), + [anon_sym_EQ_EQ] = ACTIONS(7062), + [anon_sym_BANG_EQ] = ACTIONS(7062), + [anon_sym_GT] = ACTIONS(7060), + [anon_sym_GT_EQ] = ACTIONS(7060), + [anon_sym_LT_EQ] = ACTIONS(7060), + [anon_sym_LT] = ACTIONS(7060), + [anon_sym_LT_LT] = ACTIONS(7062), + [anon_sym_GT_GT] = ACTIONS(7060), + [anon_sym___extension__] = ACTIONS(7060), + [anon_sym___attribute__] = ACTIONS(7060), + [anon_sym___attribute] = ACTIONS(7060), + [anon_sym_LBRACE] = ACTIONS(7062), + [anon_sym_signed] = ACTIONS(9605), + [anon_sym_unsigned] = ACTIONS(9605), + [anon_sym_long] = ACTIONS(9605), + [anon_sym_short] = ACTIONS(9605), + [anon_sym_LBRACK] = ACTIONS(7062), + [anon_sym_const] = ACTIONS(7060), + [anon_sym_constexpr] = ACTIONS(7060), + [anon_sym_volatile] = ACTIONS(7060), + [anon_sym_restrict] = ACTIONS(7060), + [anon_sym___restrict__] = ACTIONS(7060), + [anon_sym__Atomic] = ACTIONS(7060), + [anon_sym__Noreturn] = ACTIONS(7060), + [anon_sym_noreturn] = ACTIONS(7060), + [anon_sym__Nonnull] = ACTIONS(7060), + [anon_sym_mutable] = ACTIONS(7060), + [anon_sym_constinit] = ACTIONS(7060), + [anon_sym_consteval] = ACTIONS(7060), + [anon_sym_alignas] = ACTIONS(7060), + [anon_sym__Alignas] = ACTIONS(7060), + [sym_primitive_type] = ACTIONS(7060), + [anon_sym_QMARK] = ACTIONS(7062), + [anon_sym_LT_EQ_GT] = ACTIONS(7062), + [anon_sym_or] = ACTIONS(7060), + [anon_sym_and] = ACTIONS(7060), + [anon_sym_bitor] = ACTIONS(7060), + [anon_sym_xor] = ACTIONS(7060), + [anon_sym_bitand] = ACTIONS(7060), + [anon_sym_not_eq] = ACTIONS(7060), + [anon_sym_DASH_DASH] = ACTIONS(7062), + [anon_sym_PLUS_PLUS] = ACTIONS(7062), + [anon_sym_DOT] = ACTIONS(7060), + [anon_sym_DOT_STAR] = ACTIONS(7062), + [anon_sym_DASH_GT] = ACTIONS(7062), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7060), + [anon_sym_override] = ACTIONS(7060), + [anon_sym_GT2] = ACTIONS(7062), + [anon_sym_requires] = ACTIONS(7060), + }, + [STATE(3792)] = { + [sym_argument_list] = STATE(3849), + [sym_subscript_argument_list] = STATE(3850), + [sym_identifier] = ACTIONS(9669), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9671), + [anon_sym_COMMA] = ACTIONS(9671), + [anon_sym_RPAREN] = ACTIONS(9671), + [aux_sym_preproc_if_token2] = ACTIONS(9671), + [aux_sym_preproc_else_token1] = ACTIONS(9671), + [aux_sym_preproc_elif_token1] = ACTIONS(9669), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9671), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9671), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9669), + [anon_sym_PLUS] = ACTIONS(9669), + [anon_sym_STAR] = ACTIONS(9669), + [anon_sym_SLASH] = ACTIONS(9669), + [anon_sym_PERCENT] = ACTIONS(9669), + [anon_sym_PIPE_PIPE] = ACTIONS(9671), + [anon_sym_AMP_AMP] = ACTIONS(9671), + [anon_sym_PIPE] = ACTIONS(9669), + [anon_sym_CARET] = ACTIONS(9669), + [anon_sym_AMP] = ACTIONS(9669), + [anon_sym_EQ_EQ] = ACTIONS(9671), + [anon_sym_BANG_EQ] = ACTIONS(9671), + [anon_sym_GT] = ACTIONS(9669), + [anon_sym_GT_EQ] = ACTIONS(9671), + [anon_sym_LT_EQ] = ACTIONS(9669), + [anon_sym_LT] = ACTIONS(9669), + [anon_sym_LT_LT] = ACTIONS(9669), + [anon_sym_GT_GT] = ACTIONS(9669), + [anon_sym_SEMI] = ACTIONS(9671), + [anon_sym___attribute__] = ACTIONS(9669), + [anon_sym___attribute] = ACTIONS(9669), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9671), + [anon_sym_RBRACE] = ACTIONS(9671), + [anon_sym_LBRACK] = ACTIONS(9625), + [anon_sym_EQ] = ACTIONS(9669), + [anon_sym_QMARK] = ACTIONS(9671), + [anon_sym_STAR_EQ] = ACTIONS(9671), + [anon_sym_SLASH_EQ] = ACTIONS(9671), + [anon_sym_PERCENT_EQ] = ACTIONS(9671), + [anon_sym_PLUS_EQ] = ACTIONS(9671), + [anon_sym_DASH_EQ] = ACTIONS(9671), + [anon_sym_LT_LT_EQ] = ACTIONS(9671), + [anon_sym_GT_GT_EQ] = ACTIONS(9671), + [anon_sym_AMP_EQ] = ACTIONS(9671), + [anon_sym_CARET_EQ] = ACTIONS(9671), + [anon_sym_PIPE_EQ] = ACTIONS(9671), + [anon_sym_and_eq] = ACTIONS(9669), + [anon_sym_or_eq] = ACTIONS(9669), + [anon_sym_xor_eq] = ACTIONS(9669), + [anon_sym_LT_EQ_GT] = ACTIONS(9671), + [anon_sym_or] = ACTIONS(9669), + [anon_sym_and] = ACTIONS(9669), + [anon_sym_bitor] = ACTIONS(9669), + [anon_sym_xor] = ACTIONS(9669), + [anon_sym_bitand] = ACTIONS(9669), + [anon_sym_not_eq] = ACTIONS(9669), + [anon_sym_DASH_DASH] = ACTIONS(9627), + [anon_sym_PLUS_PLUS] = ACTIONS(9627), + [anon_sym_DOT] = ACTIONS(9629), + [anon_sym_DOT_STAR] = ACTIONS(9631), + [anon_sym_DASH_GT] = ACTIONS(9631), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9671), + }, + [STATE(3793)] = { + [sym_attribute_specifier] = STATE(3109), + [sym_enumerator_list] = STATE(3887), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), + [anon_sym_COMMA] = ACTIONS(7383), + [anon_sym_RPAREN] = ACTIONS(7383), + [anon_sym_LPAREN2] = ACTIONS(7383), + [anon_sym_DASH] = ACTIONS(7381), + [anon_sym_PLUS] = ACTIONS(7381), + [anon_sym_STAR] = ACTIONS(7383), + [anon_sym_SLASH] = ACTIONS(7381), + [anon_sym_PERCENT] = ACTIONS(7383), + [anon_sym_PIPE_PIPE] = ACTIONS(7383), + [anon_sym_AMP_AMP] = ACTIONS(7383), + [anon_sym_PIPE] = ACTIONS(7381), + [anon_sym_CARET] = ACTIONS(7383), + [anon_sym_AMP] = ACTIONS(7381), + [anon_sym_EQ_EQ] = ACTIONS(7383), + [anon_sym_BANG_EQ] = ACTIONS(7383), + [anon_sym_GT] = ACTIONS(7381), + [anon_sym_GT_EQ] = ACTIONS(7383), + [anon_sym_LT_EQ] = ACTIONS(7381), + [anon_sym_LT] = ACTIONS(7381), + [anon_sym_LT_LT] = ACTIONS(7383), + [anon_sym_GT_GT] = ACTIONS(7383), + [anon_sym_SEMI] = ACTIONS(7383), + [anon_sym___extension__] = ACTIONS(7383), + [anon_sym___attribute__] = ACTIONS(9309), + [anon_sym___attribute] = ACTIONS(9211), + [anon_sym_COLON] = ACTIONS(7381), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7383), + [anon_sym_LBRACE] = ACTIONS(9520), + [anon_sym_RBRACE] = ACTIONS(7383), + [anon_sym_LBRACK] = ACTIONS(7383), + [anon_sym_const] = ACTIONS(7381), + [anon_sym_constexpr] = ACTIONS(7383), + [anon_sym_volatile] = ACTIONS(7383), + [anon_sym_restrict] = ACTIONS(7383), + [anon_sym___restrict__] = ACTIONS(7383), + [anon_sym__Atomic] = ACTIONS(7383), + [anon_sym__Noreturn] = ACTIONS(7383), + [anon_sym_noreturn] = ACTIONS(7383), + [anon_sym__Nonnull] = ACTIONS(7383), + [anon_sym_mutable] = ACTIONS(7383), + [anon_sym_constinit] = ACTIONS(7383), + [anon_sym_consteval] = ACTIONS(7383), + [anon_sym_alignas] = ACTIONS(7383), + [anon_sym__Alignas] = ACTIONS(7383), + [anon_sym_QMARK] = ACTIONS(7383), + [anon_sym_LT_EQ_GT] = ACTIONS(7383), + [anon_sym_or] = ACTIONS(7383), + [anon_sym_and] = ACTIONS(7383), + [anon_sym_bitor] = ACTIONS(7383), + [anon_sym_xor] = ACTIONS(7383), + [anon_sym_bitand] = ACTIONS(7383), + [anon_sym_not_eq] = ACTIONS(7383), + [anon_sym_DASH_DASH] = ACTIONS(7383), + [anon_sym_PLUS_PLUS] = ACTIONS(7383), + [anon_sym_DOT] = ACTIONS(7381), + [anon_sym_DOT_STAR] = ACTIONS(7383), + [anon_sym_DASH_GT] = ACTIONS(7383), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7383), + [anon_sym_override] = ACTIONS(7383), + [anon_sym_requires] = ACTIONS(7383), + [anon_sym_COLON_RBRACK] = ACTIONS(7383), + }, + [STATE(3794)] = { + [sym__abstract_declarator] = STATE(6521), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2273), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7371), + [anon_sym_COMMA] = ACTIONS(7371), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7369), + [anon_sym_PLUS] = ACTIONS(7369), + [anon_sym_STAR] = ACTIONS(8780), + [anon_sym_SLASH] = ACTIONS(7369), + [anon_sym_PERCENT] = ACTIONS(7371), + [anon_sym_PIPE_PIPE] = ACTIONS(7371), + [anon_sym_AMP_AMP] = ACTIONS(8782), + [anon_sym_PIPE] = ACTIONS(7369), + [anon_sym_CARET] = ACTIONS(7371), + [anon_sym_AMP] = ACTIONS(8784), + [anon_sym_EQ_EQ] = ACTIONS(7371), + [anon_sym_BANG_EQ] = ACTIONS(7371), + [anon_sym_GT] = ACTIONS(7369), + [anon_sym_GT_EQ] = ACTIONS(7371), + [anon_sym_LT_EQ] = ACTIONS(7369), + [anon_sym_LT] = ACTIONS(7369), + [anon_sym_LT_LT] = ACTIONS(7371), + [anon_sym_GT_GT] = ACTIONS(7371), + [anon_sym_SEMI] = ACTIONS(7371), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(7371), + [anon_sym___attribute] = ACTIONS(7369), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7371), + [anon_sym_LT_EQ_GT] = ACTIONS(7371), + [anon_sym_or] = ACTIONS(7371), + [anon_sym_and] = ACTIONS(7371), + [anon_sym_bitor] = ACTIONS(7371), + [anon_sym_xor] = ACTIONS(7371), + [anon_sym_bitand] = ACTIONS(7371), + [anon_sym_not_eq] = ACTIONS(7371), + [anon_sym_DASH_DASH] = ACTIONS(7371), + [anon_sym_PLUS_PLUS] = ACTIONS(7371), + [anon_sym_DOT] = ACTIONS(7369), + [anon_sym_DOT_STAR] = ACTIONS(7371), + [anon_sym_DASH_GT] = ACTIONS(7371), [sym_comment] = ACTIONS(3), }, - [STATE(3776)] = { - [sym__abstract_declarator] = STATE(6548), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2274), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6823), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(6821), - [anon_sym_PLUS] = ACTIONS(6821), - [anon_sym_STAR] = ACTIONS(8677), - [anon_sym_SLASH] = ACTIONS(6821), - [anon_sym_PERCENT] = ACTIONS(6823), - [anon_sym_PIPE_PIPE] = ACTIONS(6823), - [anon_sym_AMP_AMP] = ACTIONS(8679), - [anon_sym_PIPE] = ACTIONS(6821), - [anon_sym_CARET] = ACTIONS(6823), - [anon_sym_AMP] = ACTIONS(8681), - [anon_sym_EQ_EQ] = ACTIONS(6823), - [anon_sym_BANG_EQ] = ACTIONS(6823), - [anon_sym_GT] = ACTIONS(6821), - [anon_sym_GT_EQ] = ACTIONS(6823), - [anon_sym_LT_EQ] = ACTIONS(6821), - [anon_sym_LT] = ACTIONS(6821), - [anon_sym_LT_LT] = ACTIONS(6823), - [anon_sym_GT_GT] = ACTIONS(6823), - [anon_sym_SEMI] = ACTIONS(6823), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(6823), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(6823), - [anon_sym_LT_EQ_GT] = ACTIONS(6823), - [anon_sym_or] = ACTIONS(6823), - [anon_sym_and] = ACTIONS(6823), - [anon_sym_bitor] = ACTIONS(6823), - [anon_sym_xor] = ACTIONS(6823), - [anon_sym_bitand] = ACTIONS(6823), - [anon_sym_not_eq] = ACTIONS(6823), - [anon_sym_DASH_DASH] = ACTIONS(6823), - [anon_sym_PLUS_PLUS] = ACTIONS(6823), - [anon_sym_DOT] = ACTIONS(6821), - [anon_sym_DOT_STAR] = ACTIONS(6823), - [anon_sym_DASH_GT] = ACTIONS(6823), + [STATE(3795)] = { + [sym__abstract_declarator] = STATE(6499), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3797), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2273), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7375), + [anon_sym_COMMA] = ACTIONS(7375), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7373), + [anon_sym_PLUS] = ACTIONS(7373), + [anon_sym_STAR] = ACTIONS(8780), + [anon_sym_SLASH] = ACTIONS(7373), + [anon_sym_PERCENT] = ACTIONS(7375), + [anon_sym_PIPE_PIPE] = ACTIONS(7375), + [anon_sym_AMP_AMP] = ACTIONS(8782), + [anon_sym_PIPE] = ACTIONS(7373), + [anon_sym_CARET] = ACTIONS(7375), + [anon_sym_AMP] = ACTIONS(8784), + [anon_sym_EQ_EQ] = ACTIONS(7375), + [anon_sym_BANG_EQ] = ACTIONS(7375), + [anon_sym_GT] = ACTIONS(7373), + [anon_sym_GT_EQ] = ACTIONS(7375), + [anon_sym_LT_EQ] = ACTIONS(7373), + [anon_sym_LT] = ACTIONS(7373), + [anon_sym_LT_LT] = ACTIONS(7375), + [anon_sym_GT_GT] = ACTIONS(7375), + [anon_sym_SEMI] = ACTIONS(7375), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(7375), + [anon_sym___attribute] = ACTIONS(7373), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7375), + [anon_sym_LT_EQ_GT] = ACTIONS(7375), + [anon_sym_or] = ACTIONS(7375), + [anon_sym_and] = ACTIONS(7375), + [anon_sym_bitor] = ACTIONS(7375), + [anon_sym_xor] = ACTIONS(7375), + [anon_sym_bitand] = ACTIONS(7375), + [anon_sym_not_eq] = ACTIONS(7375), + [anon_sym_DASH_DASH] = ACTIONS(7375), + [anon_sym_PLUS_PLUS] = ACTIONS(7375), + [anon_sym_DOT] = ACTIONS(7373), + [anon_sym_DOT_STAR] = ACTIONS(7375), + [anon_sym_DASH_GT] = ACTIONS(7375), [sym_comment] = ACTIONS(3), }, - [STATE(3777)] = { - [sym__abstract_declarator] = STATE(6554), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2274), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7355), - [anon_sym_COMMA] = ACTIONS(7355), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7353), - [anon_sym_PLUS] = ACTIONS(7353), - [anon_sym_STAR] = ACTIONS(8677), - [anon_sym_SLASH] = ACTIONS(7353), - [anon_sym_PERCENT] = ACTIONS(7355), - [anon_sym_PIPE_PIPE] = ACTIONS(7355), - [anon_sym_AMP_AMP] = ACTIONS(8679), - [anon_sym_PIPE] = ACTIONS(7353), - [anon_sym_CARET] = ACTIONS(7355), - [anon_sym_AMP] = ACTIONS(8681), - [anon_sym_EQ_EQ] = ACTIONS(7355), - [anon_sym_BANG_EQ] = ACTIONS(7355), - [anon_sym_GT] = ACTIONS(7353), - [anon_sym_GT_EQ] = ACTIONS(7355), - [anon_sym_LT_EQ] = ACTIONS(7353), - [anon_sym_LT] = ACTIONS(7353), - [anon_sym_LT_LT] = ACTIONS(7355), - [anon_sym_GT_GT] = ACTIONS(7355), - [anon_sym_SEMI] = ACTIONS(7355), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(7355), - [anon_sym___attribute] = ACTIONS(7353), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7355), - [anon_sym_LT_EQ_GT] = ACTIONS(7355), - [anon_sym_or] = ACTIONS(7355), - [anon_sym_and] = ACTIONS(7355), - [anon_sym_bitor] = ACTIONS(7355), - [anon_sym_xor] = ACTIONS(7355), - [anon_sym_bitand] = ACTIONS(7355), - [anon_sym_not_eq] = ACTIONS(7355), - [anon_sym_DASH_DASH] = ACTIONS(7355), - [anon_sym_PLUS_PLUS] = ACTIONS(7355), - [anon_sym_DOT] = ACTIONS(7353), - [anon_sym_DOT_STAR] = ACTIONS(7355), - [anon_sym_DASH_GT] = ACTIONS(7355), + [STATE(3796)] = { + [sym__abstract_declarator] = STATE(6505), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2273), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6843), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(6841), + [anon_sym_PLUS] = ACTIONS(6841), + [anon_sym_STAR] = ACTIONS(8780), + [anon_sym_SLASH] = ACTIONS(6841), + [anon_sym_PERCENT] = ACTIONS(6843), + [anon_sym_PIPE_PIPE] = ACTIONS(6843), + [anon_sym_AMP_AMP] = ACTIONS(8782), + [anon_sym_PIPE] = ACTIONS(6841), + [anon_sym_CARET] = ACTIONS(6843), + [anon_sym_AMP] = ACTIONS(8784), + [anon_sym_EQ_EQ] = ACTIONS(6843), + [anon_sym_BANG_EQ] = ACTIONS(6843), + [anon_sym_GT] = ACTIONS(6841), + [anon_sym_GT_EQ] = ACTIONS(6843), + [anon_sym_LT_EQ] = ACTIONS(6841), + [anon_sym_LT] = ACTIONS(6841), + [anon_sym_LT_LT] = ACTIONS(6843), + [anon_sym_GT_GT] = ACTIONS(6843), + [anon_sym_SEMI] = ACTIONS(6843), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(6843), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(6843), + [anon_sym_LT_EQ_GT] = ACTIONS(6843), + [anon_sym_or] = ACTIONS(6843), + [anon_sym_and] = ACTIONS(6843), + [anon_sym_bitor] = ACTIONS(6843), + [anon_sym_xor] = ACTIONS(6843), + [anon_sym_bitand] = ACTIONS(6843), + [anon_sym_not_eq] = ACTIONS(6843), + [anon_sym_DASH_DASH] = ACTIONS(6843), + [anon_sym_PLUS_PLUS] = ACTIONS(6843), + [anon_sym_DOT] = ACTIONS(6841), + [anon_sym_DOT_STAR] = ACTIONS(6843), + [anon_sym_DASH_GT] = ACTIONS(6843), [sym_comment] = ACTIONS(3), }, - [STATE(3778)] = { - [sym__abstract_declarator] = STATE(6550), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(2488), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2274), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(2488), + [STATE(3797)] = { + [sym__abstract_declarator] = STATE(6552), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2273), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7341), + [anon_sym_COMMA] = ACTIONS(7341), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7343), + [anon_sym_PLUS] = ACTIONS(7343), + [anon_sym_STAR] = ACTIONS(8780), + [anon_sym_SLASH] = ACTIONS(7343), + [anon_sym_PERCENT] = ACTIONS(7341), + [anon_sym_PIPE_PIPE] = ACTIONS(7341), + [anon_sym_AMP_AMP] = ACTIONS(8782), + [anon_sym_PIPE] = ACTIONS(7343), + [anon_sym_CARET] = ACTIONS(7341), + [anon_sym_AMP] = ACTIONS(8784), + [anon_sym_EQ_EQ] = ACTIONS(7341), + [anon_sym_BANG_EQ] = ACTIONS(7341), + [anon_sym_GT] = ACTIONS(7343), + [anon_sym_GT_EQ] = ACTIONS(7341), + [anon_sym_LT_EQ] = ACTIONS(7343), + [anon_sym_LT] = ACTIONS(7343), + [anon_sym_LT_LT] = ACTIONS(7341), + [anon_sym_GT_GT] = ACTIONS(7341), + [anon_sym_SEMI] = ACTIONS(7341), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(7341), + [anon_sym___attribute] = ACTIONS(7343), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7341), + [anon_sym_LT_EQ_GT] = ACTIONS(7341), + [anon_sym_or] = ACTIONS(7341), + [anon_sym_and] = ACTIONS(7341), + [anon_sym_bitor] = ACTIONS(7341), + [anon_sym_xor] = ACTIONS(7341), + [anon_sym_bitand] = ACTIONS(7341), + [anon_sym_not_eq] = ACTIONS(7341), + [anon_sym_DASH_DASH] = ACTIONS(7341), + [anon_sym_PLUS_PLUS] = ACTIONS(7341), + [anon_sym_DOT] = ACTIONS(7343), + [anon_sym_DOT_STAR] = ACTIONS(7341), + [anon_sym_DASH_GT] = ACTIONS(7341), + [sym_comment] = ACTIONS(3), + }, + [STATE(3798)] = { + [sym__abstract_declarator] = STATE(6506), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(2450), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2273), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(2450), [anon_sym_DOT_DOT_DOT] = ACTIONS(7345), [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(8084), + [anon_sym_LPAREN2] = ACTIONS(8078), [anon_sym_DASH] = ACTIONS(7347), [anon_sym_PLUS] = ACTIONS(7347), - [anon_sym_STAR] = ACTIONS(8677), + [anon_sym_STAR] = ACTIONS(8780), [anon_sym_SLASH] = ACTIONS(7347), [anon_sym_PERCENT] = ACTIONS(7345), [anon_sym_PIPE_PIPE] = ACTIONS(7345), - [anon_sym_AMP_AMP] = ACTIONS(8679), + [anon_sym_AMP_AMP] = ACTIONS(8782), [anon_sym_PIPE] = ACTIONS(7347), [anon_sym_CARET] = ACTIONS(7345), - [anon_sym_AMP] = ACTIONS(8681), + [anon_sym_AMP] = ACTIONS(8784), [anon_sym_EQ_EQ] = ACTIONS(7345), [anon_sym_BANG_EQ] = ACTIONS(7345), [anon_sym_GT] = ACTIONS(7347), @@ -448748,24 +449914,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7345), [anon_sym_GT_GT] = ACTIONS(7345), [anon_sym_SEMI] = ACTIONS(7345), - [anon_sym___extension__] = ACTIONS(8117), + [anon_sym___extension__] = ACTIONS(8134), [anon_sym___attribute__] = ACTIONS(7345), [anon_sym___attribute] = ACTIONS(7347), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), [anon_sym_QMARK] = ACTIONS(7345), [anon_sym_LT_EQ_GT] = ACTIONS(7345), [anon_sym_or] = ACTIONS(7345), @@ -448781,947 +449947,746 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(7345), [sym_comment] = ACTIONS(3), }, - [STATE(3779)] = { - [sym_template_argument_list] = STATE(2231), - [sym_identifier] = ACTIONS(9650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9652), - [anon_sym_COMMA] = ACTIONS(9652), - [anon_sym_RPAREN] = ACTIONS(9652), - [aux_sym_preproc_if_token2] = ACTIONS(9652), - [aux_sym_preproc_else_token1] = ACTIONS(9652), - [aux_sym_preproc_elif_token1] = ACTIONS(9650), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9652), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9652), - [anon_sym_LPAREN2] = ACTIONS(9652), - [anon_sym_DASH] = ACTIONS(9650), - [anon_sym_PLUS] = ACTIONS(9650), - [anon_sym_STAR] = ACTIONS(9650), - [anon_sym_SLASH] = ACTIONS(9650), - [anon_sym_PERCENT] = ACTIONS(9650), - [anon_sym_PIPE_PIPE] = ACTIONS(9652), - [anon_sym_AMP_AMP] = ACTIONS(9652), - [anon_sym_PIPE] = ACTIONS(9650), - [anon_sym_CARET] = ACTIONS(9650), - [anon_sym_AMP] = ACTIONS(9650), - [anon_sym_EQ_EQ] = ACTIONS(9652), - [anon_sym_BANG_EQ] = ACTIONS(9652), - [anon_sym_GT] = ACTIONS(9650), - [anon_sym_GT_EQ] = ACTIONS(9652), - [anon_sym_LT_EQ] = ACTIONS(9650), - [anon_sym_LT] = ACTIONS(9654), - [anon_sym_LT_LT] = ACTIONS(9650), - [anon_sym_GT_GT] = ACTIONS(9650), - [anon_sym_SEMI] = ACTIONS(9652), - [anon_sym___attribute__] = ACTIONS(9650), - [anon_sym___attribute] = ACTIONS(9650), - [anon_sym_COLON] = ACTIONS(9650), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9652), - [anon_sym_RBRACE] = ACTIONS(9652), - [anon_sym_LBRACK] = ACTIONS(9652), - [anon_sym_EQ] = ACTIONS(9650), - [anon_sym_QMARK] = ACTIONS(9652), - [anon_sym_STAR_EQ] = ACTIONS(9652), - [anon_sym_SLASH_EQ] = ACTIONS(9652), - [anon_sym_PERCENT_EQ] = ACTIONS(9652), - [anon_sym_PLUS_EQ] = ACTIONS(9652), - [anon_sym_DASH_EQ] = ACTIONS(9652), - [anon_sym_LT_LT_EQ] = ACTIONS(9652), - [anon_sym_GT_GT_EQ] = ACTIONS(9652), - [anon_sym_AMP_EQ] = ACTIONS(9652), - [anon_sym_CARET_EQ] = ACTIONS(9652), - [anon_sym_PIPE_EQ] = ACTIONS(9652), - [anon_sym_and_eq] = ACTIONS(9650), - [anon_sym_or_eq] = ACTIONS(9650), - [anon_sym_xor_eq] = ACTIONS(9650), - [anon_sym_LT_EQ_GT] = ACTIONS(9652), - [anon_sym_or] = ACTIONS(9650), - [anon_sym_and] = ACTIONS(9650), - [anon_sym_bitor] = ACTIONS(9650), - [anon_sym_xor] = ACTIONS(9650), - [anon_sym_bitand] = ACTIONS(9650), - [anon_sym_not_eq] = ACTIONS(9650), - [anon_sym_DASH_DASH] = ACTIONS(9652), - [anon_sym_PLUS_PLUS] = ACTIONS(9652), - [anon_sym_DOT] = ACTIONS(9650), - [anon_sym_DOT_STAR] = ACTIONS(9652), - [anon_sym_DASH_GT] = ACTIONS(9652), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9652), - }, - [STATE(3780)] = { - [sym_identifier] = ACTIONS(9626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9628), - [anon_sym_COMMA] = ACTIONS(9628), - [anon_sym_RPAREN] = ACTIONS(9628), - [aux_sym_preproc_if_token2] = ACTIONS(9628), - [aux_sym_preproc_else_token1] = ACTIONS(9628), - [aux_sym_preproc_elif_token1] = ACTIONS(9626), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9628), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9628), - [anon_sym_LPAREN2] = ACTIONS(9628), - [anon_sym_DASH] = ACTIONS(9626), - [anon_sym_PLUS] = ACTIONS(9626), - [anon_sym_STAR] = ACTIONS(9626), - [anon_sym_SLASH] = ACTIONS(9626), - [anon_sym_PERCENT] = ACTIONS(9626), - [anon_sym_PIPE_PIPE] = ACTIONS(9628), - [anon_sym_AMP_AMP] = ACTIONS(9628), - [anon_sym_PIPE] = ACTIONS(9626), - [anon_sym_CARET] = ACTIONS(9626), - [anon_sym_AMP] = ACTIONS(9626), - [anon_sym_EQ_EQ] = ACTIONS(9628), - [anon_sym_BANG_EQ] = ACTIONS(9628), - [anon_sym_GT] = ACTIONS(9626), - [anon_sym_GT_EQ] = ACTIONS(9628), - [anon_sym_LT_EQ] = ACTIONS(9626), - [anon_sym_LT] = ACTIONS(9626), - [anon_sym_LT_LT] = ACTIONS(9626), - [anon_sym_GT_GT] = ACTIONS(9626), - [anon_sym_SEMI] = ACTIONS(9628), - [anon_sym___attribute__] = ACTIONS(9626), - [anon_sym___attribute] = ACTIONS(9626), - [anon_sym_COLON] = ACTIONS(9626), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9628), - [anon_sym_LBRACE] = ACTIONS(9628), - [anon_sym_RBRACE] = ACTIONS(9628), - [anon_sym_LBRACK] = ACTIONS(9628), - [anon_sym_EQ] = ACTIONS(9626), - [anon_sym_QMARK] = ACTIONS(9628), - [anon_sym_STAR_EQ] = ACTIONS(9628), - [anon_sym_SLASH_EQ] = ACTIONS(9628), - [anon_sym_PERCENT_EQ] = ACTIONS(9628), - [anon_sym_PLUS_EQ] = ACTIONS(9628), - [anon_sym_DASH_EQ] = ACTIONS(9628), - [anon_sym_LT_LT_EQ] = ACTIONS(9628), - [anon_sym_GT_GT_EQ] = ACTIONS(9628), - [anon_sym_AMP_EQ] = ACTIONS(9628), - [anon_sym_CARET_EQ] = ACTIONS(9628), - [anon_sym_PIPE_EQ] = ACTIONS(9628), - [anon_sym_and_eq] = ACTIONS(9626), - [anon_sym_or_eq] = ACTIONS(9626), - [anon_sym_xor_eq] = ACTIONS(9626), - [anon_sym_LT_EQ_GT] = ACTIONS(9628), - [anon_sym_or] = ACTIONS(9626), - [anon_sym_and] = ACTIONS(9626), - [anon_sym_bitor] = ACTIONS(9626), - [anon_sym_xor] = ACTIONS(9626), - [anon_sym_bitand] = ACTIONS(9626), - [anon_sym_not_eq] = ACTIONS(9626), - [anon_sym_DASH_DASH] = ACTIONS(9628), - [anon_sym_PLUS_PLUS] = ACTIONS(9628), - [anon_sym_DOT] = ACTIONS(9626), - [anon_sym_DOT_STAR] = ACTIONS(9628), - [anon_sym_DASH_GT] = ACTIONS(9628), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9628), - }, - [STATE(3781)] = { - [sym_identifier] = ACTIONS(5645), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5638), - [anon_sym_COMMA] = ACTIONS(5638), - [anon_sym_RPAREN] = ACTIONS(5638), - [aux_sym_preproc_if_token2] = ACTIONS(5638), - [aux_sym_preproc_else_token1] = ACTIONS(5638), - [aux_sym_preproc_elif_token1] = ACTIONS(5645), - [aux_sym_preproc_elifdef_token1] = ACTIONS(5638), - [aux_sym_preproc_elifdef_token2] = ACTIONS(5638), - [anon_sym_LPAREN2] = ACTIONS(5638), - [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(5638), - [anon_sym_AMP_AMP] = ACTIONS(5638), - [anon_sym_PIPE] = ACTIONS(5645), - [anon_sym_CARET] = ACTIONS(5645), - [anon_sym_AMP] = ACTIONS(5645), - [anon_sym_EQ_EQ] = ACTIONS(5638), - [anon_sym_BANG_EQ] = ACTIONS(5638), - [anon_sym_GT] = ACTIONS(5645), - [anon_sym_GT_EQ] = ACTIONS(5638), - [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(5638), - [anon_sym___attribute__] = ACTIONS(5645), - [anon_sym___attribute] = ACTIONS(5645), - [anon_sym_COLON] = ACTIONS(5645), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5638), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_LBRACK] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(5645), - [anon_sym_QMARK] = ACTIONS(5638), - [anon_sym_STAR_EQ] = ACTIONS(5638), - [anon_sym_SLASH_EQ] = ACTIONS(5638), - [anon_sym_PERCENT_EQ] = ACTIONS(5638), - [anon_sym_PLUS_EQ] = ACTIONS(5638), - [anon_sym_DASH_EQ] = ACTIONS(5638), - [anon_sym_LT_LT_EQ] = ACTIONS(5638), - [anon_sym_GT_GT_EQ] = ACTIONS(5638), - [anon_sym_AMP_EQ] = ACTIONS(5638), - [anon_sym_CARET_EQ] = ACTIONS(5638), - [anon_sym_PIPE_EQ] = ACTIONS(5638), - [anon_sym_and_eq] = ACTIONS(5645), - [anon_sym_or_eq] = ACTIONS(5645), - [anon_sym_xor_eq] = ACTIONS(5645), - [anon_sym_LT_EQ_GT] = ACTIONS(5638), - [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(5638), - [anon_sym_PLUS_PLUS] = ACTIONS(5638), - [anon_sym_DOT] = ACTIONS(5645), - [anon_sym_DOT_STAR] = ACTIONS(5638), - [anon_sym_DASH_GT] = ACTIONS(5638), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(5638), - }, - [STATE(3782)] = { - [sym_argument_list] = STATE(3874), - [sym_subscript_argument_list] = STATE(3900), - [sym_identifier] = ACTIONS(9657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9659), - [anon_sym_COMMA] = ACTIONS(9659), - [anon_sym_RPAREN] = ACTIONS(9659), - [aux_sym_preproc_if_token2] = ACTIONS(9659), - [aux_sym_preproc_else_token1] = ACTIONS(9659), - [aux_sym_preproc_elif_token1] = ACTIONS(9657), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9659), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9659), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9657), - [anon_sym_PLUS] = ACTIONS(9657), - [anon_sym_STAR] = ACTIONS(9657), - [anon_sym_SLASH] = ACTIONS(9657), - [anon_sym_PERCENT] = ACTIONS(9657), - [anon_sym_PIPE_PIPE] = ACTIONS(9659), - [anon_sym_AMP_AMP] = ACTIONS(9659), - [anon_sym_PIPE] = ACTIONS(9657), - [anon_sym_CARET] = ACTIONS(9657), - [anon_sym_AMP] = ACTIONS(9657), - [anon_sym_EQ_EQ] = ACTIONS(9659), - [anon_sym_BANG_EQ] = ACTIONS(9659), - [anon_sym_GT] = ACTIONS(9657), - [anon_sym_GT_EQ] = ACTIONS(9659), - [anon_sym_LT_EQ] = ACTIONS(9657), - [anon_sym_LT] = ACTIONS(9657), - [anon_sym_LT_LT] = ACTIONS(9657), - [anon_sym_GT_GT] = ACTIONS(9657), - [anon_sym_SEMI] = ACTIONS(9659), - [anon_sym___attribute__] = ACTIONS(9657), - [anon_sym___attribute] = ACTIONS(9657), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9659), - [anon_sym_RBRACE] = ACTIONS(9659), - [anon_sym_LBRACK] = ACTIONS(9642), - [anon_sym_EQ] = ACTIONS(9657), - [anon_sym_QMARK] = ACTIONS(9659), - [anon_sym_STAR_EQ] = ACTIONS(9659), - [anon_sym_SLASH_EQ] = ACTIONS(9659), - [anon_sym_PERCENT_EQ] = ACTIONS(9659), - [anon_sym_PLUS_EQ] = ACTIONS(9659), - [anon_sym_DASH_EQ] = ACTIONS(9659), - [anon_sym_LT_LT_EQ] = ACTIONS(9659), - [anon_sym_GT_GT_EQ] = ACTIONS(9659), - [anon_sym_AMP_EQ] = ACTIONS(9659), - [anon_sym_CARET_EQ] = ACTIONS(9659), - [anon_sym_PIPE_EQ] = ACTIONS(9659), - [anon_sym_and_eq] = ACTIONS(9657), - [anon_sym_or_eq] = ACTIONS(9657), - [anon_sym_xor_eq] = ACTIONS(9657), - [anon_sym_LT_EQ_GT] = ACTIONS(9659), - [anon_sym_or] = ACTIONS(9657), - [anon_sym_and] = ACTIONS(9657), - [anon_sym_bitor] = ACTIONS(9657), - [anon_sym_xor] = ACTIONS(9657), - [anon_sym_bitand] = ACTIONS(9657), - [anon_sym_not_eq] = ACTIONS(9657), - [anon_sym_DASH_DASH] = ACTIONS(9659), - [anon_sym_PLUS_PLUS] = ACTIONS(9659), - [anon_sym_DOT] = ACTIONS(9646), - [anon_sym_DOT_STAR] = ACTIONS(9648), - [anon_sym_DASH_GT] = ACTIONS(9648), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9659), - }, - [STATE(3783)] = { - [sym_string_literal] = STATE(3632), - [sym_raw_string_literal] = STATE(3632), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9118), - [anon_sym_COMMA] = ACTIONS(9118), - [anon_sym_RPAREN] = ACTIONS(9118), - [anon_sym_LPAREN2] = ACTIONS(9118), - [anon_sym_DASH] = ACTIONS(9116), - [anon_sym_PLUS] = ACTIONS(9116), - [anon_sym_STAR] = ACTIONS(9116), - [anon_sym_SLASH] = ACTIONS(9116), - [anon_sym_PERCENT] = ACTIONS(9116), - [anon_sym_PIPE_PIPE] = ACTIONS(9118), - [anon_sym_AMP_AMP] = ACTIONS(9118), - [anon_sym_PIPE] = ACTIONS(9116), - [anon_sym_CARET] = ACTIONS(9116), - [anon_sym_AMP] = ACTIONS(9116), - [anon_sym_EQ_EQ] = ACTIONS(9118), - [anon_sym_BANG_EQ] = ACTIONS(9118), - [anon_sym_GT] = ACTIONS(9116), - [anon_sym_GT_EQ] = ACTIONS(9118), - [anon_sym_LT_EQ] = ACTIONS(9116), - [anon_sym_LT] = ACTIONS(9116), - [anon_sym_LT_LT] = ACTIONS(9116), - [anon_sym_GT_GT] = ACTIONS(9116), - [anon_sym_LBRACK] = ACTIONS(9118), - [anon_sym_EQ] = ACTIONS(9116), - [anon_sym_QMARK] = ACTIONS(9118), - [anon_sym_STAR_EQ] = ACTIONS(9118), - [anon_sym_SLASH_EQ] = ACTIONS(9118), - [anon_sym_PERCENT_EQ] = ACTIONS(9118), - [anon_sym_PLUS_EQ] = ACTIONS(9118), - [anon_sym_DASH_EQ] = ACTIONS(9118), - [anon_sym_LT_LT_EQ] = ACTIONS(9118), - [anon_sym_GT_GT_EQ] = ACTIONS(9118), - [anon_sym_AMP_EQ] = ACTIONS(9118), - [anon_sym_CARET_EQ] = ACTIONS(9118), - [anon_sym_PIPE_EQ] = ACTIONS(9118), - [anon_sym_and_eq] = ACTIONS(9116), - [anon_sym_or_eq] = ACTIONS(9116), - [anon_sym_xor_eq] = ACTIONS(9116), - [anon_sym_LT_EQ_GT] = ACTIONS(9118), - [anon_sym_or] = ACTIONS(9116), - [anon_sym_and] = ACTIONS(9116), - [anon_sym_bitor] = ACTIONS(9116), - [anon_sym_xor] = ACTIONS(9116), - [anon_sym_bitand] = ACTIONS(9116), - [anon_sym_not_eq] = ACTIONS(9116), - [anon_sym_DASH_DASH] = ACTIONS(9118), - [anon_sym_PLUS_PLUS] = ACTIONS(9118), - [anon_sym_DOT] = ACTIONS(9116), - [anon_sym_DOT_STAR] = ACTIONS(9118), - [anon_sym_DASH_GT] = ACTIONS(9116), - [anon_sym_L_DQUOTE] = ACTIONS(6885), - [anon_sym_u_DQUOTE] = ACTIONS(6885), - [anon_sym_U_DQUOTE] = ACTIONS(6885), - [anon_sym_u8_DQUOTE] = ACTIONS(6885), - [anon_sym_DQUOTE] = ACTIONS(6885), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(6887), - [anon_sym_LR_DQUOTE] = ACTIONS(6887), - [anon_sym_uR_DQUOTE] = ACTIONS(6887), - [anon_sym_UR_DQUOTE] = ACTIONS(6887), - [anon_sym_u8R_DQUOTE] = ACTIONS(6887), - [anon_sym_DASH_GT_STAR] = ACTIONS(9118), - [sym_literal_suffix] = ACTIONS(9116), - }, - [STATE(3784)] = { - [sym_attribute_specifier] = STATE(3784), - [aux_sym_type_definition_repeat1] = STATE(3784), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), - [anon_sym_COMMA] = ACTIONS(6937), - [anon_sym_LPAREN2] = ACTIONS(6937), - [anon_sym_DASH] = ACTIONS(6935), - [anon_sym_PLUS] = ACTIONS(6935), - [anon_sym_STAR] = ACTIONS(6937), - [anon_sym_SLASH] = ACTIONS(6935), - [anon_sym_PERCENT] = ACTIONS(6937), - [anon_sym_PIPE_PIPE] = ACTIONS(6937), - [anon_sym_AMP_AMP] = ACTIONS(6937), - [anon_sym_PIPE] = ACTIONS(6935), - [anon_sym_CARET] = ACTIONS(6937), - [anon_sym_AMP] = ACTIONS(6935), - [anon_sym_EQ_EQ] = ACTIONS(6937), - [anon_sym_BANG_EQ] = ACTIONS(6937), - [anon_sym_GT] = ACTIONS(6935), - [anon_sym_GT_EQ] = ACTIONS(6937), - [anon_sym_LT_EQ] = ACTIONS(6935), - [anon_sym_LT] = ACTIONS(6935), - [anon_sym_LT_LT] = ACTIONS(6937), - [anon_sym_GT_GT] = ACTIONS(6937), - [anon_sym___extension__] = ACTIONS(6937), - [anon_sym___attribute__] = ACTIONS(9661), - [anon_sym___attribute] = ACTIONS(9664), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), - [anon_sym_LBRACK] = ACTIONS(6935), - [anon_sym_RBRACK] = ACTIONS(6937), - [anon_sym_const] = ACTIONS(6935), - [anon_sym_constexpr] = ACTIONS(6937), - [anon_sym_volatile] = ACTIONS(6937), - [anon_sym_restrict] = ACTIONS(6937), - [anon_sym___restrict__] = ACTIONS(6937), - [anon_sym__Atomic] = ACTIONS(6937), - [anon_sym__Noreturn] = ACTIONS(6937), - [anon_sym_noreturn] = ACTIONS(6937), - [anon_sym__Nonnull] = ACTIONS(6937), - [anon_sym_mutable] = ACTIONS(6937), - [anon_sym_constinit] = ACTIONS(6937), - [anon_sym_consteval] = ACTIONS(6937), - [anon_sym_alignas] = ACTIONS(6937), - [anon_sym__Alignas] = ACTIONS(6937), - [anon_sym_QMARK] = ACTIONS(6937), - [anon_sym_LT_EQ_GT] = ACTIONS(6937), - [anon_sym_or] = ACTIONS(6937), - [anon_sym_and] = ACTIONS(6937), - [anon_sym_bitor] = ACTIONS(6937), - [anon_sym_xor] = ACTIONS(6937), - [anon_sym_bitand] = ACTIONS(6937), - [anon_sym_not_eq] = ACTIONS(6937), - [anon_sym_DASH_DASH] = ACTIONS(6937), - [anon_sym_PLUS_PLUS] = ACTIONS(6937), - [anon_sym_asm] = ACTIONS(6937), - [anon_sym___asm__] = ACTIONS(6937), - [anon_sym___asm] = ACTIONS(6935), - [anon_sym_DOT] = ACTIONS(6935), - [anon_sym_DOT_STAR] = ACTIONS(6937), - [anon_sym_DASH_GT] = ACTIONS(6937), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6937), - [anon_sym_override] = ACTIONS(6937), - [anon_sym_noexcept] = ACTIONS(6937), - [anon_sym_throw] = ACTIONS(6937), - [anon_sym_requires] = ACTIONS(6937), - }, - [STATE(3785)] = { - [sym_identifier] = ACTIONS(9626), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9628), - [anon_sym_COMMA] = ACTIONS(9628), - [anon_sym_RPAREN] = ACTIONS(9628), - [aux_sym_preproc_if_token2] = ACTIONS(9628), - [aux_sym_preproc_else_token1] = ACTIONS(9628), - [aux_sym_preproc_elif_token1] = ACTIONS(9626), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9628), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9628), - [anon_sym_LPAREN2] = ACTIONS(9628), - [anon_sym_DASH] = ACTIONS(9626), - [anon_sym_PLUS] = ACTIONS(9626), - [anon_sym_STAR] = ACTIONS(9626), - [anon_sym_SLASH] = ACTIONS(9626), - [anon_sym_PERCENT] = ACTIONS(9626), - [anon_sym_PIPE_PIPE] = ACTIONS(9628), - [anon_sym_AMP_AMP] = ACTIONS(9628), - [anon_sym_PIPE] = ACTIONS(9626), - [anon_sym_CARET] = ACTIONS(9626), - [anon_sym_AMP] = ACTIONS(9626), - [anon_sym_EQ_EQ] = ACTIONS(9628), - [anon_sym_BANG_EQ] = ACTIONS(9628), - [anon_sym_GT] = ACTIONS(9626), - [anon_sym_GT_EQ] = ACTIONS(9628), - [anon_sym_LT_EQ] = ACTIONS(9626), - [anon_sym_LT] = ACTIONS(9626), - [anon_sym_LT_LT] = ACTIONS(9626), - [anon_sym_GT_GT] = ACTIONS(9626), - [anon_sym_SEMI] = ACTIONS(9628), - [anon_sym___attribute__] = ACTIONS(9626), - [anon_sym___attribute] = ACTIONS(9626), - [anon_sym_COLON] = ACTIONS(9626), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9628), - [anon_sym_LBRACE] = ACTIONS(9628), - [anon_sym_RBRACE] = ACTIONS(9628), - [anon_sym_LBRACK] = ACTIONS(9628), - [anon_sym_EQ] = ACTIONS(9626), - [anon_sym_QMARK] = ACTIONS(9628), - [anon_sym_STAR_EQ] = ACTIONS(9628), - [anon_sym_SLASH_EQ] = ACTIONS(9628), - [anon_sym_PERCENT_EQ] = ACTIONS(9628), - [anon_sym_PLUS_EQ] = ACTIONS(9628), - [anon_sym_DASH_EQ] = ACTIONS(9628), - [anon_sym_LT_LT_EQ] = ACTIONS(9628), - [anon_sym_GT_GT_EQ] = ACTIONS(9628), - [anon_sym_AMP_EQ] = ACTIONS(9628), - [anon_sym_CARET_EQ] = ACTIONS(9628), - [anon_sym_PIPE_EQ] = ACTIONS(9628), - [anon_sym_and_eq] = ACTIONS(9626), - [anon_sym_or_eq] = ACTIONS(9626), - [anon_sym_xor_eq] = ACTIONS(9626), - [anon_sym_LT_EQ_GT] = ACTIONS(9628), - [anon_sym_or] = ACTIONS(9626), - [anon_sym_and] = ACTIONS(9626), - [anon_sym_bitor] = ACTIONS(9626), - [anon_sym_xor] = ACTIONS(9626), - [anon_sym_bitand] = ACTIONS(9626), - [anon_sym_not_eq] = ACTIONS(9626), - [anon_sym_DASH_DASH] = ACTIONS(9628), - [anon_sym_PLUS_PLUS] = ACTIONS(9628), - [anon_sym_DOT] = ACTIONS(9626), - [anon_sym_DOT_STAR] = ACTIONS(9628), - [anon_sym_DASH_GT] = ACTIONS(9628), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9628), - }, - [STATE(3786)] = { - [sym_attribute_specifier] = STATE(3786), - [aux_sym_type_definition_repeat1] = STATE(3786), - [anon_sym_DOT_DOT_DOT] = ACTIONS(6937), - [anon_sym_COMMA] = ACTIONS(6937), - [anon_sym_LPAREN2] = ACTIONS(6937), - [anon_sym_DASH] = ACTIONS(6935), - [anon_sym_PLUS] = ACTIONS(6935), - [anon_sym_STAR] = ACTIONS(6937), - [anon_sym_SLASH] = ACTIONS(6935), - [anon_sym_PERCENT] = ACTIONS(6937), - [anon_sym_PIPE_PIPE] = ACTIONS(6937), - [anon_sym_AMP_AMP] = ACTIONS(6937), - [anon_sym_PIPE] = ACTIONS(6935), - [anon_sym_CARET] = ACTIONS(6937), - [anon_sym_AMP] = ACTIONS(6935), - [anon_sym_EQ_EQ] = ACTIONS(6937), - [anon_sym_BANG_EQ] = ACTIONS(6937), - [anon_sym_GT] = ACTIONS(6935), - [anon_sym_GT_EQ] = ACTIONS(6935), - [anon_sym_LT_EQ] = ACTIONS(6935), - [anon_sym_LT] = ACTIONS(6935), - [anon_sym_LT_LT] = ACTIONS(6937), - [anon_sym_GT_GT] = ACTIONS(6935), - [anon_sym___extension__] = ACTIONS(6937), - [anon_sym___attribute__] = ACTIONS(9667), - [anon_sym___attribute] = ACTIONS(9670), - [anon_sym_LBRACK_LBRACK] = ACTIONS(6937), - [anon_sym_LBRACK] = ACTIONS(6935), - [anon_sym_const] = ACTIONS(6935), - [anon_sym_constexpr] = ACTIONS(6937), - [anon_sym_volatile] = ACTIONS(6937), - [anon_sym_restrict] = ACTIONS(6937), - [anon_sym___restrict__] = ACTIONS(6937), - [anon_sym__Atomic] = ACTIONS(6937), - [anon_sym__Noreturn] = ACTIONS(6937), - [anon_sym_noreturn] = ACTIONS(6937), - [anon_sym__Nonnull] = ACTIONS(6937), - [anon_sym_mutable] = ACTIONS(6937), - [anon_sym_constinit] = ACTIONS(6937), - [anon_sym_consteval] = ACTIONS(6937), - [anon_sym_alignas] = ACTIONS(6937), - [anon_sym__Alignas] = ACTIONS(6937), - [anon_sym_QMARK] = ACTIONS(6937), - [anon_sym_LT_EQ_GT] = ACTIONS(6937), - [anon_sym_or] = ACTIONS(6937), - [anon_sym_and] = ACTIONS(6937), - [anon_sym_bitor] = ACTIONS(6937), - [anon_sym_xor] = ACTIONS(6937), - [anon_sym_bitand] = ACTIONS(6937), - [anon_sym_not_eq] = ACTIONS(6937), - [anon_sym_DASH_DASH] = ACTIONS(6937), - [anon_sym_PLUS_PLUS] = ACTIONS(6937), - [anon_sym_asm] = ACTIONS(6937), - [anon_sym___asm__] = ACTIONS(6937), - [anon_sym___asm] = ACTIONS(6935), - [anon_sym_DOT] = ACTIONS(6935), - [anon_sym_DOT_STAR] = ACTIONS(6937), - [anon_sym_DASH_GT] = ACTIONS(6937), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6937), - [anon_sym_override] = ACTIONS(6937), - [anon_sym_GT2] = ACTIONS(6937), - [anon_sym_noexcept] = ACTIONS(6937), - [anon_sym_throw] = ACTIONS(6937), - [anon_sym_requires] = ACTIONS(6937), - }, - [STATE(3787)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym__declarator] = STATE(8808), - [sym__abstract_declarator] = STATE(9080), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(7086), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5340), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(7086), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8708), - [anon_sym_AMP_AMP] = ACTIONS(8710), - [anon_sym_AMP] = ACTIONS(8712), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6821), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [STATE(3799)] = { + [sym_template_argument_list] = STATE(2221), + [sym_identifier] = ACTIONS(9633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9635), + [anon_sym_COMMA] = ACTIONS(9635), + [anon_sym_RPAREN] = ACTIONS(9635), + [aux_sym_preproc_if_token2] = ACTIONS(9635), + [aux_sym_preproc_else_token1] = ACTIONS(9635), + [aux_sym_preproc_elif_token1] = ACTIONS(9633), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9635), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9635), + [anon_sym_LPAREN2] = ACTIONS(9635), + [anon_sym_DASH] = ACTIONS(9633), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_STAR] = ACTIONS(9633), + [anon_sym_SLASH] = ACTIONS(9633), + [anon_sym_PERCENT] = ACTIONS(9633), + [anon_sym_PIPE_PIPE] = ACTIONS(9635), + [anon_sym_AMP_AMP] = ACTIONS(9635), + [anon_sym_PIPE] = ACTIONS(9633), + [anon_sym_CARET] = ACTIONS(9633), + [anon_sym_AMP] = ACTIONS(9633), + [anon_sym_EQ_EQ] = ACTIONS(9635), + [anon_sym_BANG_EQ] = ACTIONS(9635), + [anon_sym_GT] = ACTIONS(9633), + [anon_sym_GT_EQ] = ACTIONS(9635), + [anon_sym_LT_EQ] = ACTIONS(9633), + [anon_sym_LT] = ACTIONS(9637), + [anon_sym_LT_LT] = ACTIONS(9633), + [anon_sym_GT_GT] = ACTIONS(9633), + [anon_sym_SEMI] = ACTIONS(9635), + [anon_sym___attribute__] = ACTIONS(9633), + [anon_sym___attribute] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9635), + [anon_sym_RBRACE] = ACTIONS(9635), + [anon_sym_LBRACK] = ACTIONS(9635), + [anon_sym_EQ] = ACTIONS(9633), + [anon_sym_QMARK] = ACTIONS(9635), + [anon_sym_STAR_EQ] = ACTIONS(9635), + [anon_sym_SLASH_EQ] = ACTIONS(9635), + [anon_sym_PERCENT_EQ] = ACTIONS(9635), + [anon_sym_PLUS_EQ] = ACTIONS(9635), + [anon_sym_DASH_EQ] = ACTIONS(9635), + [anon_sym_LT_LT_EQ] = ACTIONS(9635), + [anon_sym_GT_GT_EQ] = ACTIONS(9635), + [anon_sym_AMP_EQ] = ACTIONS(9635), + [anon_sym_CARET_EQ] = ACTIONS(9635), + [anon_sym_PIPE_EQ] = ACTIONS(9635), + [anon_sym_and_eq] = ACTIONS(9633), + [anon_sym_or_eq] = ACTIONS(9633), + [anon_sym_xor_eq] = ACTIONS(9633), + [anon_sym_LT_EQ_GT] = ACTIONS(9635), + [anon_sym_or] = ACTIONS(9633), + [anon_sym_and] = ACTIONS(9633), + [anon_sym_bitor] = ACTIONS(9633), + [anon_sym_xor] = ACTIONS(9633), + [anon_sym_bitand] = ACTIONS(9633), + [anon_sym_not_eq] = ACTIONS(9633), + [anon_sym_DASH_DASH] = ACTIONS(9635), + [anon_sym_PLUS_PLUS] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9633), + [anon_sym_DOT_STAR] = ACTIONS(9635), + [anon_sym_DASH_GT] = ACTIONS(9635), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9635), }, - [STATE(3788)] = { - [sym_ms_based_modifier] = STATE(11008), - [sym__declarator] = STATE(8808), - [sym__abstract_declarator] = STATE(9080), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(7086), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5340), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7993), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(7086), - [sym_identifier] = ACTIONS(8228), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_RPAREN] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8669), - [anon_sym_AMP_AMP] = ACTIONS(8671), - [anon_sym_AMP] = ACTIONS(8673), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6821), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_COLON_COLON] = ACTIONS(8675), + [STATE(3800)] = { + [sym_ms_based_modifier] = STATE(11002), + [sym__declarator] = STATE(8775), + [sym__abstract_declarator] = STATE(9007), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(7149), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5445), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7984), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(7149), + [sym_identifier] = ACTIONS(8274), + [anon_sym_COMMA] = ACTIONS(6843), + [anon_sym_RPAREN] = ACTIONS(6843), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_AMP_AMP] = ACTIONS(8770), + [anon_sym_AMP] = ACTIONS(8772), + [anon_sym___extension__] = ACTIONS(3368), + [anon_sym___attribute__] = ACTIONS(6841), + [anon_sym___attribute] = ACTIONS(6841), + [anon_sym_COLON_COLON] = ACTIONS(8774), [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, - [STATE(3789)] = { - [sym_ms_based_modifier] = STATE(11008), - [sym__declarator] = STATE(8816), - [sym__abstract_declarator] = STATE(9028), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(7086), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5340), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7993), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(7086), - [sym_identifier] = ACTIONS(8228), + [STATE(3801)] = { + [sym_ms_based_modifier] = STATE(11002), + [sym__declarator] = STATE(8768), + [sym__abstract_declarator] = STATE(9014), + [sym_parenthesized_declarator] = STATE(8564), + [sym_abstract_parenthesized_declarator] = STATE(8572), + [sym_attributed_declarator] = STATE(8564), + [sym_pointer_declarator] = STATE(8564), + [sym_abstract_pointer_declarator] = STATE(8572), + [sym_function_declarator] = STATE(8564), + [sym_abstract_function_declarator] = STATE(8572), + [sym_array_declarator] = STATE(8564), + [sym_abstract_array_declarator] = STATE(8572), + [sym_type_qualifier] = STATE(7149), + [sym_alignas_qualifier] = STATE(7556), + [sym_parameter_list] = STATE(5445), + [sym_decltype] = STATE(11531), + [sym_reference_declarator] = STATE(8564), + [sym_abstract_reference_declarator] = STATE(8572), + [sym_structured_binding_declarator] = STATE(8564), + [sym__function_declarator_seq] = STATE(8515), + [sym_template_type] = STATE(11531), + [sym_template_function] = STATE(8564), + [sym_destructor_name] = STATE(8564), + [sym_dependent_type_identifier] = STATE(11531), + [sym__scope_resolution] = STATE(7984), + [sym_qualified_identifier] = STATE(8564), + [sym_splice_specifier] = STATE(8157), + [sym__splice_specialization_specifier] = STATE(3766), + [sym_splice_type_specifier] = STATE(11531), + [sym_splice_expression] = STATE(11531), + [sym_operator_name] = STATE(8564), + [aux_sym__type_definition_type_repeat1] = STATE(7149), + [sym_identifier] = ACTIONS(8274), [anon_sym_COMMA] = ACTIONS(7345), [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8669), - [anon_sym_AMP_AMP] = ACTIONS(8671), - [anon_sym_AMP] = ACTIONS(8673), - [anon_sym___extension__] = ACTIONS(3270), + [anon_sym_LPAREN2] = ACTIONS(5659), + [anon_sym_TILDE] = ACTIONS(3442), + [anon_sym_STAR] = ACTIONS(8768), + [anon_sym_AMP_AMP] = ACTIONS(8770), + [anon_sym_AMP] = ACTIONS(8772), + [anon_sym___extension__] = ACTIONS(3368), [anon_sym___attribute__] = ACTIONS(7347), [anon_sym___attribute] = ACTIONS(7347), - [anon_sym_COLON_COLON] = ACTIONS(8675), + [anon_sym_COLON_COLON] = ACTIONS(8774), [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(3790)] = { - [sym_identifier] = ACTIONS(7459), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7457), - [anon_sym_COMMA] = ACTIONS(7457), - [anon_sym_RPAREN] = ACTIONS(7457), - [anon_sym_LPAREN2] = ACTIONS(7457), - [anon_sym_TILDE] = ACTIONS(7457), - [anon_sym_STAR] = ACTIONS(7457), - [anon_sym_PIPE_PIPE] = ACTIONS(7457), - [anon_sym_AMP_AMP] = ACTIONS(7457), - [anon_sym_AMP] = ACTIONS(7459), - [anon_sym_SEMI] = ACTIONS(7457), - [anon_sym___extension__] = ACTIONS(7459), - [anon_sym_virtual] = ACTIONS(7459), - [anon_sym_extern] = ACTIONS(7459), - [anon_sym___attribute__] = ACTIONS(7459), - [anon_sym___attribute] = ACTIONS(7459), - [anon_sym_COLON] = ACTIONS(7459), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7457), - [anon_sym___declspec] = ACTIONS(7459), - [anon_sym___based] = ACTIONS(7459), - [anon_sym___cdecl] = ACTIONS(7459), - [anon_sym___clrcall] = ACTIONS(7459), - [anon_sym___stdcall] = ACTIONS(7459), - [anon_sym___fastcall] = ACTIONS(7459), - [anon_sym___thiscall] = ACTIONS(7459), - [anon_sym___vectorcall] = ACTIONS(7459), - [anon_sym_LBRACE] = ACTIONS(7457), - [anon_sym_LBRACK] = ACTIONS(7459), - [anon_sym_static] = ACTIONS(7459), - [anon_sym_EQ] = ACTIONS(7457), - [anon_sym_register] = ACTIONS(7459), - [anon_sym_inline] = ACTIONS(7459), - [anon_sym___inline] = ACTIONS(7459), - [anon_sym___inline__] = ACTIONS(7459), - [anon_sym___forceinline] = ACTIONS(7459), - [anon_sym_thread_local] = ACTIONS(7459), - [anon_sym___thread] = ACTIONS(7459), - [anon_sym_const] = ACTIONS(7459), - [anon_sym_constexpr] = ACTIONS(7459), - [anon_sym_volatile] = ACTIONS(7459), - [anon_sym_restrict] = ACTIONS(7459), - [anon_sym___restrict__] = ACTIONS(7459), - [anon_sym__Atomic] = ACTIONS(7459), - [anon_sym__Noreturn] = ACTIONS(7459), - [anon_sym_noreturn] = ACTIONS(7459), - [anon_sym__Nonnull] = ACTIONS(7459), - [anon_sym_mutable] = ACTIONS(7459), - [anon_sym_constinit] = ACTIONS(7459), - [anon_sym_consteval] = ACTIONS(7459), - [anon_sym_alignas] = ACTIONS(7459), - [anon_sym__Alignas] = ACTIONS(7459), - [anon_sym_or] = ACTIONS(7459), - [anon_sym_and] = ACTIONS(7459), - [anon_sym_DASH_GT] = ACTIONS(7457), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7459), - [anon_sym_final] = ACTIONS(7459), - [anon_sym_override] = ACTIONS(7459), - [anon_sym_template] = ACTIONS(7459), - [anon_sym_GT2] = ACTIONS(7457), - [anon_sym_operator] = ACTIONS(7459), - [anon_sym_noexcept] = ACTIONS(7459), - [anon_sym_throw] = ACTIONS(7459), - [anon_sym_LBRACK_COLON] = ACTIONS(7457), + [anon_sym_LBRACK] = ACTIONS(5669), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_constexpr] = ACTIONS(3368), + [anon_sym_volatile] = ACTIONS(3368), + [anon_sym_restrict] = ACTIONS(3368), + [anon_sym___restrict__] = ACTIONS(3368), + [anon_sym__Atomic] = ACTIONS(3368), + [anon_sym__Noreturn] = ACTIONS(3368), + [anon_sym_noreturn] = ACTIONS(3368), + [anon_sym__Nonnull] = ACTIONS(3368), + [anon_sym_mutable] = ACTIONS(3368), + [anon_sym_constinit] = ACTIONS(3368), + [anon_sym_consteval] = ACTIONS(3368), + [anon_sym_alignas] = ACTIONS(3370), + [anon_sym__Alignas] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(2420), + [anon_sym_template] = ACTIONS(5158), + [anon_sym_operator] = ACTIONS(2284), + [anon_sym_LBRACK_COLON] = ACTIONS(5162), }, - [STATE(3791)] = { - [sym_argument_list] = STATE(3874), - [sym_subscript_argument_list] = STATE(3900), + [STATE(3802)] = { + [sym_type_qualifier] = STATE(3231), + [sym_alignas_qualifier] = STATE(3492), + [aux_sym__type_definition_type_repeat1] = STATE(3231), + [aux_sym_sized_type_specifier_repeat1] = STATE(4238), [sym_identifier] = ACTIONS(9673), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9675), - [anon_sym_COMMA] = ACTIONS(9675), - [anon_sym_RPAREN] = ACTIONS(9675), - [aux_sym_preproc_if_token2] = ACTIONS(9675), - [aux_sym_preproc_else_token1] = ACTIONS(9675), - [aux_sym_preproc_elif_token1] = ACTIONS(9673), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9675), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9675), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9673), - [anon_sym_PLUS] = ACTIONS(9673), - [anon_sym_STAR] = ACTIONS(9673), - [anon_sym_SLASH] = ACTIONS(9673), - [anon_sym_PERCENT] = ACTIONS(9673), - [anon_sym_PIPE_PIPE] = ACTIONS(9675), - [anon_sym_AMP_AMP] = ACTIONS(9675), - [anon_sym_PIPE] = ACTIONS(9673), - [anon_sym_CARET] = ACTIONS(9673), - [anon_sym_AMP] = ACTIONS(9673), - [anon_sym_EQ_EQ] = ACTIONS(9675), - [anon_sym_BANG_EQ] = ACTIONS(9675), - [anon_sym_GT] = ACTIONS(9673), - [anon_sym_GT_EQ] = ACTIONS(9675), - [anon_sym_LT_EQ] = ACTIONS(9673), - [anon_sym_LT] = ACTIONS(9673), - [anon_sym_LT_LT] = ACTIONS(9673), - [anon_sym_GT_GT] = ACTIONS(9673), - [anon_sym_SEMI] = ACTIONS(9675), - [anon_sym___attribute__] = ACTIONS(9673), - [anon_sym___attribute] = ACTIONS(9673), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9675), - [anon_sym_RBRACE] = ACTIONS(9675), - [anon_sym_LBRACK] = ACTIONS(9642), - [anon_sym_EQ] = ACTIONS(9673), - [anon_sym_QMARK] = ACTIONS(9675), - [anon_sym_STAR_EQ] = ACTIONS(9675), - [anon_sym_SLASH_EQ] = ACTIONS(9675), - [anon_sym_PERCENT_EQ] = ACTIONS(9675), - [anon_sym_PLUS_EQ] = ACTIONS(9675), - [anon_sym_DASH_EQ] = ACTIONS(9675), - [anon_sym_LT_LT_EQ] = ACTIONS(9675), - [anon_sym_GT_GT_EQ] = ACTIONS(9675), - [anon_sym_AMP_EQ] = ACTIONS(9675), - [anon_sym_CARET_EQ] = ACTIONS(9675), - [anon_sym_PIPE_EQ] = ACTIONS(9675), - [anon_sym_and_eq] = ACTIONS(9673), - [anon_sym_or_eq] = ACTIONS(9673), - [anon_sym_xor_eq] = ACTIONS(9673), - [anon_sym_LT_EQ_GT] = ACTIONS(9675), - [anon_sym_or] = ACTIONS(9673), - [anon_sym_and] = ACTIONS(9673), - [anon_sym_bitor] = ACTIONS(9673), - [anon_sym_xor] = ACTIONS(9673), - [anon_sym_bitand] = ACTIONS(9673), - [anon_sym_not_eq] = ACTIONS(9673), - [anon_sym_DASH_DASH] = ACTIONS(9644), - [anon_sym_PLUS_PLUS] = ACTIONS(9644), - [anon_sym_DOT] = ACTIONS(9646), - [anon_sym_DOT_STAR] = ACTIONS(9648), - [anon_sym_DASH_GT] = ACTIONS(9648), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9675), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7193), + [anon_sym_COMMA] = ACTIONS(7193), + [anon_sym_RPAREN] = ACTIONS(7193), + [anon_sym_LPAREN2] = ACTIONS(7193), + [anon_sym_TILDE] = ACTIONS(7193), + [anon_sym_STAR] = ACTIONS(7193), + [anon_sym_AMP_AMP] = ACTIONS(7193), + [anon_sym_AMP] = ACTIONS(7195), + [anon_sym_SEMI] = ACTIONS(7193), + [anon_sym___extension__] = ACTIONS(9676), + [anon_sym_virtual] = ACTIONS(7195), + [anon_sym_extern] = ACTIONS(7195), + [anon_sym___attribute__] = ACTIONS(7195), + [anon_sym___attribute] = ACTIONS(7195), + [anon_sym_COLON_COLON] = ACTIONS(7193), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7193), + [anon_sym___declspec] = ACTIONS(7195), + [anon_sym___based] = ACTIONS(7195), + [anon_sym___cdecl] = ACTIONS(7195), + [anon_sym___clrcall] = ACTIONS(7195), + [anon_sym___stdcall] = ACTIONS(7195), + [anon_sym___fastcall] = ACTIONS(7195), + [anon_sym___thiscall] = ACTIONS(7195), + [anon_sym___vectorcall] = ACTIONS(7195), + [anon_sym_LBRACE] = ACTIONS(7193), + [anon_sym_signed] = ACTIONS(9679), + [anon_sym_unsigned] = ACTIONS(9679), + [anon_sym_long] = ACTIONS(9679), + [anon_sym_short] = ACTIONS(9679), + [anon_sym_LBRACK] = ACTIONS(7195), + [anon_sym_static] = ACTIONS(7195), + [anon_sym_EQ] = ACTIONS(7193), + [anon_sym_register] = ACTIONS(7195), + [anon_sym_inline] = ACTIONS(7195), + [anon_sym___inline] = ACTIONS(7195), + [anon_sym___inline__] = ACTIONS(7195), + [anon_sym___forceinline] = ACTIONS(7195), + [anon_sym_thread_local] = ACTIONS(7195), + [anon_sym___thread] = ACTIONS(7195), + [anon_sym_const] = ACTIONS(9676), + [anon_sym_constexpr] = ACTIONS(9676), + [anon_sym_volatile] = ACTIONS(9676), + [anon_sym_restrict] = ACTIONS(9676), + [anon_sym___restrict__] = ACTIONS(9676), + [anon_sym__Atomic] = ACTIONS(9676), + [anon_sym__Noreturn] = ACTIONS(9676), + [anon_sym_noreturn] = ACTIONS(9676), + [anon_sym__Nonnull] = ACTIONS(9676), + [anon_sym_mutable] = ACTIONS(9676), + [anon_sym_constinit] = ACTIONS(9676), + [anon_sym_consteval] = ACTIONS(9676), + [anon_sym_alignas] = ACTIONS(9681), + [anon_sym__Alignas] = ACTIONS(9681), + [sym_primitive_type] = ACTIONS(9684), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7195), + [anon_sym_template] = ACTIONS(7195), + [anon_sym_GT2] = ACTIONS(7193), + [anon_sym_operator] = ACTIONS(7195), + [anon_sym_LBRACK_COLON] = ACTIONS(7193), }, - [STATE(3792)] = { - [sym_argument_list] = STATE(3874), - [sym_subscript_argument_list] = STATE(3900), - [sym_identifier] = ACTIONS(9677), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9679), - [anon_sym_COMMA] = ACTIONS(9679), - [anon_sym_RPAREN] = ACTIONS(9679), - [aux_sym_preproc_if_token2] = ACTIONS(9679), - [aux_sym_preproc_else_token1] = ACTIONS(9679), - [aux_sym_preproc_elif_token1] = ACTIONS(9677), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9679), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9679), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9677), - [anon_sym_PLUS] = ACTIONS(9677), - [anon_sym_STAR] = ACTIONS(9677), - [anon_sym_SLASH] = ACTIONS(9677), - [anon_sym_PERCENT] = ACTIONS(9677), - [anon_sym_PIPE_PIPE] = ACTIONS(9679), - [anon_sym_AMP_AMP] = ACTIONS(9679), - [anon_sym_PIPE] = ACTIONS(9677), - [anon_sym_CARET] = ACTIONS(9677), - [anon_sym_AMP] = ACTIONS(9677), - [anon_sym_EQ_EQ] = ACTIONS(9679), - [anon_sym_BANG_EQ] = ACTIONS(9679), - [anon_sym_GT] = ACTIONS(9677), - [anon_sym_GT_EQ] = ACTIONS(9679), - [anon_sym_LT_EQ] = ACTIONS(9677), - [anon_sym_LT] = ACTIONS(9677), - [anon_sym_LT_LT] = ACTIONS(9677), - [anon_sym_GT_GT] = ACTIONS(9677), - [anon_sym_SEMI] = ACTIONS(9679), - [anon_sym___attribute__] = ACTIONS(9677), - [anon_sym___attribute] = ACTIONS(9677), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9679), - [anon_sym_RBRACE] = ACTIONS(9679), - [anon_sym_LBRACK] = ACTIONS(9642), - [anon_sym_EQ] = ACTIONS(9677), - [anon_sym_QMARK] = ACTIONS(9679), - [anon_sym_STAR_EQ] = ACTIONS(9679), - [anon_sym_SLASH_EQ] = ACTIONS(9679), - [anon_sym_PERCENT_EQ] = ACTIONS(9679), - [anon_sym_PLUS_EQ] = ACTIONS(9679), - [anon_sym_DASH_EQ] = ACTIONS(9679), - [anon_sym_LT_LT_EQ] = ACTIONS(9679), - [anon_sym_GT_GT_EQ] = ACTIONS(9679), - [anon_sym_AMP_EQ] = ACTIONS(9679), - [anon_sym_CARET_EQ] = ACTIONS(9679), - [anon_sym_PIPE_EQ] = ACTIONS(9679), - [anon_sym_and_eq] = ACTIONS(9677), - [anon_sym_or_eq] = ACTIONS(9677), - [anon_sym_xor_eq] = ACTIONS(9677), - [anon_sym_LT_EQ_GT] = ACTIONS(9679), - [anon_sym_or] = ACTIONS(9677), - [anon_sym_and] = ACTIONS(9677), - [anon_sym_bitor] = ACTIONS(9677), - [anon_sym_xor] = ACTIONS(9677), - [anon_sym_bitand] = ACTIONS(9677), - [anon_sym_not_eq] = ACTIONS(9677), - [anon_sym_DASH_DASH] = ACTIONS(9644), - [anon_sym_PLUS_PLUS] = ACTIONS(9644), - [anon_sym_DOT] = ACTIONS(9646), - [anon_sym_DOT_STAR] = ACTIONS(9648), - [anon_sym_DASH_GT] = ACTIONS(9648), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9679), + [STATE(3803)] = { + [sym_identifier] = ACTIONS(7499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7479), + [anon_sym_COMMA] = ACTIONS(7479), + [anon_sym_RPAREN] = ACTIONS(7479), + [anon_sym_LPAREN2] = ACTIONS(7479), + [anon_sym_TILDE] = ACTIONS(7479), + [anon_sym_STAR] = ACTIONS(7479), + [anon_sym_PIPE_PIPE] = ACTIONS(7479), + [anon_sym_AMP_AMP] = ACTIONS(7479), + [anon_sym_AMP] = ACTIONS(7499), + [anon_sym_SEMI] = ACTIONS(7479), + [anon_sym___extension__] = ACTIONS(7499), + [anon_sym_virtual] = ACTIONS(7499), + [anon_sym_extern] = ACTIONS(7499), + [anon_sym___attribute__] = ACTIONS(7499), + [anon_sym___attribute] = ACTIONS(7499), + [anon_sym_COLON] = ACTIONS(7499), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7479), + [anon_sym___declspec] = ACTIONS(7499), + [anon_sym___based] = ACTIONS(7499), + [anon_sym___cdecl] = ACTIONS(7499), + [anon_sym___clrcall] = ACTIONS(7499), + [anon_sym___stdcall] = ACTIONS(7499), + [anon_sym___fastcall] = ACTIONS(7499), + [anon_sym___thiscall] = ACTIONS(7499), + [anon_sym___vectorcall] = ACTIONS(7499), + [anon_sym_LBRACE] = ACTIONS(7479), + [anon_sym_LBRACK] = ACTIONS(7499), + [anon_sym_static] = ACTIONS(7499), + [anon_sym_EQ] = ACTIONS(7479), + [anon_sym_register] = ACTIONS(7499), + [anon_sym_inline] = ACTIONS(7499), + [anon_sym___inline] = ACTIONS(7499), + [anon_sym___inline__] = ACTIONS(7499), + [anon_sym___forceinline] = ACTIONS(7499), + [anon_sym_thread_local] = ACTIONS(7499), + [anon_sym___thread] = ACTIONS(7499), + [anon_sym_const] = ACTIONS(7499), + [anon_sym_constexpr] = ACTIONS(7499), + [anon_sym_volatile] = ACTIONS(7499), + [anon_sym_restrict] = ACTIONS(7499), + [anon_sym___restrict__] = ACTIONS(7499), + [anon_sym__Atomic] = ACTIONS(7499), + [anon_sym__Noreturn] = ACTIONS(7499), + [anon_sym_noreturn] = ACTIONS(7499), + [anon_sym__Nonnull] = ACTIONS(7499), + [anon_sym_mutable] = ACTIONS(7499), + [anon_sym_constinit] = ACTIONS(7499), + [anon_sym_consteval] = ACTIONS(7499), + [anon_sym_alignas] = ACTIONS(7499), + [anon_sym__Alignas] = ACTIONS(7499), + [anon_sym_or] = ACTIONS(7499), + [anon_sym_and] = ACTIONS(7499), + [anon_sym_DASH_GT] = ACTIONS(7479), + [sym_comment] = ACTIONS(3), + [anon_sym_decltype] = ACTIONS(7499), + [anon_sym_final] = ACTIONS(7499), + [anon_sym_override] = ACTIONS(7499), + [anon_sym_template] = ACTIONS(7499), + [anon_sym_GT2] = ACTIONS(7479), + [anon_sym_operator] = ACTIONS(7499), + [anon_sym_noexcept] = ACTIONS(7499), + [anon_sym_throw] = ACTIONS(7499), + [anon_sym_LBRACK_COLON] = ACTIONS(7479), }, - [STATE(3793)] = { - [sym_attribute_specifier] = STATE(4077), - [sym_enumerator_list] = STATE(3835), + [STATE(3804)] = { + [sym_argument_list] = STATE(3849), + [sym_subscript_argument_list] = STATE(3850), + [sym_identifier] = ACTIONS(9686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9688), + [anon_sym_COMMA] = ACTIONS(9688), + [anon_sym_RPAREN] = ACTIONS(9688), + [aux_sym_preproc_if_token2] = ACTIONS(9688), + [aux_sym_preproc_else_token1] = ACTIONS(9688), + [aux_sym_preproc_elif_token1] = ACTIONS(9686), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9688), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9688), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9686), + [anon_sym_PLUS] = ACTIONS(9686), + [anon_sym_STAR] = ACTIONS(9686), + [anon_sym_SLASH] = ACTIONS(9686), + [anon_sym_PERCENT] = ACTIONS(9686), + [anon_sym_PIPE_PIPE] = ACTIONS(9688), + [anon_sym_AMP_AMP] = ACTIONS(9688), + [anon_sym_PIPE] = ACTIONS(9686), + [anon_sym_CARET] = ACTIONS(9686), + [anon_sym_AMP] = ACTIONS(9686), + [anon_sym_EQ_EQ] = ACTIONS(9688), + [anon_sym_BANG_EQ] = ACTIONS(9688), + [anon_sym_GT] = ACTIONS(9686), + [anon_sym_GT_EQ] = ACTIONS(9688), + [anon_sym_LT_EQ] = ACTIONS(9686), + [anon_sym_LT] = ACTIONS(9686), + [anon_sym_LT_LT] = ACTIONS(9686), + [anon_sym_GT_GT] = ACTIONS(9686), + [anon_sym_SEMI] = ACTIONS(9688), + [anon_sym___attribute__] = ACTIONS(9686), + [anon_sym___attribute] = ACTIONS(9686), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9688), + [anon_sym_RBRACE] = ACTIONS(9688), + [anon_sym_LBRACK] = ACTIONS(9625), + [anon_sym_EQ] = ACTIONS(9686), + [anon_sym_QMARK] = ACTIONS(9688), + [anon_sym_STAR_EQ] = ACTIONS(9688), + [anon_sym_SLASH_EQ] = ACTIONS(9688), + [anon_sym_PERCENT_EQ] = ACTIONS(9688), + [anon_sym_PLUS_EQ] = ACTIONS(9688), + [anon_sym_DASH_EQ] = ACTIONS(9688), + [anon_sym_LT_LT_EQ] = ACTIONS(9688), + [anon_sym_GT_GT_EQ] = ACTIONS(9688), + [anon_sym_AMP_EQ] = ACTIONS(9688), + [anon_sym_CARET_EQ] = ACTIONS(9688), + [anon_sym_PIPE_EQ] = ACTIONS(9688), + [anon_sym_and_eq] = ACTIONS(9686), + [anon_sym_or_eq] = ACTIONS(9686), + [anon_sym_xor_eq] = ACTIONS(9686), + [anon_sym_LT_EQ_GT] = ACTIONS(9688), + [anon_sym_or] = ACTIONS(9686), + [anon_sym_and] = ACTIONS(9686), + [anon_sym_bitor] = ACTIONS(9686), + [anon_sym_xor] = ACTIONS(9686), + [anon_sym_bitand] = ACTIONS(9686), + [anon_sym_not_eq] = ACTIONS(9686), + [anon_sym_DASH_DASH] = ACTIONS(9627), + [anon_sym_PLUS_PLUS] = ACTIONS(9627), + [anon_sym_DOT] = ACTIONS(9629), + [anon_sym_DOT_STAR] = ACTIONS(9631), + [anon_sym_DASH_GT] = ACTIONS(9631), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9688), + }, + [STATE(3805)] = { + [sym_template_argument_list] = STATE(2919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5637), + [anon_sym_COMMA] = ACTIONS(5637), + [anon_sym_RPAREN] = ACTIONS(5637), + [anon_sym_LPAREN2] = ACTIONS(5637), + [anon_sym_DASH] = ACTIONS(7379), + [anon_sym_PLUS] = ACTIONS(7379), + [anon_sym_STAR] = ACTIONS(5637), + [anon_sym_SLASH] = ACTIONS(7379), + [anon_sym_PERCENT] = ACTIONS(5637), + [anon_sym_PIPE_PIPE] = ACTIONS(5637), + [anon_sym_AMP_AMP] = ACTIONS(5637), + [anon_sym_PIPE] = ACTIONS(7379), + [anon_sym_CARET] = ACTIONS(5637), + [anon_sym_AMP] = ACTIONS(7379), + [anon_sym_EQ_EQ] = ACTIONS(5637), + [anon_sym_BANG_EQ] = ACTIONS(5637), + [anon_sym_GT] = ACTIONS(7379), + [anon_sym_GT_EQ] = ACTIONS(5637), + [anon_sym_LT_EQ] = ACTIONS(7379), + [anon_sym_LT] = ACTIONS(8655), + [anon_sym_LT_LT] = ACTIONS(5637), + [anon_sym_GT_GT] = ACTIONS(5637), + [anon_sym_SEMI] = ACTIONS(5637), + [anon_sym___extension__] = ACTIONS(5637), + [anon_sym___attribute__] = ACTIONS(5637), + [anon_sym___attribute] = ACTIONS(7379), + [anon_sym_COLON] = ACTIONS(7379), + [anon_sym_COLON_COLON] = ACTIONS(5632), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5637), + [anon_sym_LBRACE] = ACTIONS(5637), + [anon_sym_RBRACE] = ACTIONS(5637), + [anon_sym_LBRACK] = ACTIONS(5637), + [anon_sym_const] = ACTIONS(7379), + [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), + [anon_sym_QMARK] = ACTIONS(5637), + [anon_sym_LT_EQ_GT] = ACTIONS(5637), + [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(5637), + [anon_sym_PLUS_PLUS] = ACTIONS(5637), + [anon_sym_DOT] = ACTIONS(7379), + [anon_sym_DOT_STAR] = ACTIONS(5637), + [anon_sym_DASH_GT] = ACTIONS(5637), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(5637), + [anon_sym_override] = ACTIONS(5637), + [anon_sym_requires] = ACTIONS(5637), + [anon_sym_COLON_RBRACK] = ACTIONS(5637), + }, + [STATE(3806)] = { + [sym__abstract_declarator] = STATE(6520), + [sym_abstract_parenthesized_declarator] = STATE(5524), + [sym_abstract_pointer_declarator] = STATE(5524), + [sym_abstract_function_declarator] = STATE(5524), + [sym_abstract_array_declarator] = STATE(5524), + [sym_type_qualifier] = STATE(3794), + [sym_alignas_qualifier] = STATE(2724), + [sym_parameter_list] = STATE(2273), + [sym_abstract_reference_declarator] = STATE(5524), + [sym__function_declarator_seq] = STATE(5527), + [aux_sym__type_definition_type_repeat1] = STATE(3794), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7367), + [anon_sym_COMMA] = ACTIONS(7367), + [anon_sym_LPAREN2] = ACTIONS(8078), + [anon_sym_DASH] = ACTIONS(7365), + [anon_sym_PLUS] = ACTIONS(7365), + [anon_sym_STAR] = ACTIONS(8780), + [anon_sym_SLASH] = ACTIONS(7365), + [anon_sym_PERCENT] = ACTIONS(7367), + [anon_sym_PIPE_PIPE] = ACTIONS(7367), + [anon_sym_AMP_AMP] = ACTIONS(8782), + [anon_sym_PIPE] = ACTIONS(7365), + [anon_sym_CARET] = ACTIONS(7367), + [anon_sym_AMP] = ACTIONS(8784), + [anon_sym_EQ_EQ] = ACTIONS(7367), + [anon_sym_BANG_EQ] = ACTIONS(7367), + [anon_sym_GT] = ACTIONS(7365), + [anon_sym_GT_EQ] = ACTIONS(7367), + [anon_sym_LT_EQ] = ACTIONS(7365), + [anon_sym_LT] = ACTIONS(7365), + [anon_sym_LT_LT] = ACTIONS(7367), + [anon_sym_GT_GT] = ACTIONS(7367), + [anon_sym_SEMI] = ACTIONS(7367), + [anon_sym___extension__] = ACTIONS(8134), + [anon_sym___attribute__] = ACTIONS(7367), + [anon_sym___attribute] = ACTIONS(7365), + [anon_sym_LBRACK] = ACTIONS(8092), + [anon_sym_const] = ACTIONS(8140), + [anon_sym_constexpr] = ACTIONS(8134), + [anon_sym_volatile] = ACTIONS(8134), + [anon_sym_restrict] = ACTIONS(8134), + [anon_sym___restrict__] = ACTIONS(8134), + [anon_sym__Atomic] = ACTIONS(8134), + [anon_sym__Noreturn] = ACTIONS(8134), + [anon_sym_noreturn] = ACTIONS(8134), + [anon_sym__Nonnull] = ACTIONS(8134), + [anon_sym_mutable] = ACTIONS(8134), + [anon_sym_constinit] = ACTIONS(8134), + [anon_sym_consteval] = ACTIONS(8134), + [anon_sym_alignas] = ACTIONS(8142), + [anon_sym__Alignas] = ACTIONS(8142), + [anon_sym_QMARK] = ACTIONS(7367), + [anon_sym_LT_EQ_GT] = ACTIONS(7367), + [anon_sym_or] = ACTIONS(7367), + [anon_sym_and] = ACTIONS(7367), + [anon_sym_bitor] = ACTIONS(7367), + [anon_sym_xor] = ACTIONS(7367), + [anon_sym_bitand] = ACTIONS(7367), + [anon_sym_not_eq] = ACTIONS(7367), + [anon_sym_DASH_DASH] = ACTIONS(7367), + [anon_sym_PLUS_PLUS] = ACTIONS(7367), + [anon_sym_DOT] = ACTIONS(7365), + [anon_sym_DOT_STAR] = ACTIONS(7367), + [anon_sym_DASH_GT] = ACTIONS(7367), + [sym_comment] = ACTIONS(3), + }, + [STATE(3807)] = { + [sym_identifier] = ACTIONS(9690), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9692), + [anon_sym_COMMA] = ACTIONS(9692), + [anon_sym_RPAREN] = ACTIONS(9692), + [aux_sym_preproc_if_token2] = ACTIONS(9692), + [aux_sym_preproc_else_token1] = ACTIONS(9692), + [aux_sym_preproc_elif_token1] = ACTIONS(9690), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9692), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9692), + [anon_sym_LPAREN2] = ACTIONS(9692), + [anon_sym_DASH] = ACTIONS(9690), + [anon_sym_PLUS] = ACTIONS(9690), + [anon_sym_STAR] = ACTIONS(9690), + [anon_sym_SLASH] = ACTIONS(9690), + [anon_sym_PERCENT] = ACTIONS(9690), + [anon_sym_PIPE_PIPE] = ACTIONS(9692), + [anon_sym_AMP_AMP] = ACTIONS(9692), + [anon_sym_PIPE] = ACTIONS(9690), + [anon_sym_CARET] = ACTIONS(9690), + [anon_sym_AMP] = ACTIONS(9690), + [anon_sym_EQ_EQ] = ACTIONS(9692), + [anon_sym_BANG_EQ] = ACTIONS(9692), + [anon_sym_GT] = ACTIONS(9690), + [anon_sym_GT_EQ] = ACTIONS(9692), + [anon_sym_LT_EQ] = ACTIONS(9690), + [anon_sym_LT] = ACTIONS(9690), + [anon_sym_LT_LT] = ACTIONS(9690), + [anon_sym_GT_GT] = ACTIONS(9690), + [anon_sym_SEMI] = ACTIONS(9692), + [anon_sym___attribute__] = ACTIONS(9690), + [anon_sym___attribute] = ACTIONS(9690), + [anon_sym_COLON] = ACTIONS(9690), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9692), + [anon_sym_LBRACE] = ACTIONS(9692), + [anon_sym_RBRACE] = ACTIONS(9692), + [anon_sym_LBRACK] = ACTIONS(9692), + [anon_sym_EQ] = ACTIONS(9690), + [anon_sym_QMARK] = ACTIONS(9692), + [anon_sym_STAR_EQ] = ACTIONS(9692), + [anon_sym_SLASH_EQ] = ACTIONS(9692), + [anon_sym_PERCENT_EQ] = ACTIONS(9692), + [anon_sym_PLUS_EQ] = ACTIONS(9692), + [anon_sym_DASH_EQ] = ACTIONS(9692), + [anon_sym_LT_LT_EQ] = ACTIONS(9692), + [anon_sym_GT_GT_EQ] = ACTIONS(9692), + [anon_sym_AMP_EQ] = ACTIONS(9692), + [anon_sym_CARET_EQ] = ACTIONS(9692), + [anon_sym_PIPE_EQ] = ACTIONS(9692), + [anon_sym_and_eq] = ACTIONS(9690), + [anon_sym_or_eq] = ACTIONS(9690), + [anon_sym_xor_eq] = ACTIONS(9690), + [anon_sym_LT_EQ_GT] = ACTIONS(9692), + [anon_sym_or] = ACTIONS(9690), + [anon_sym_and] = ACTIONS(9690), + [anon_sym_bitor] = ACTIONS(9690), + [anon_sym_xor] = ACTIONS(9690), + [anon_sym_bitand] = ACTIONS(9690), + [anon_sym_not_eq] = ACTIONS(9690), + [anon_sym_DASH_DASH] = ACTIONS(9692), + [anon_sym_PLUS_PLUS] = ACTIONS(9692), + [anon_sym_DOT] = ACTIONS(9690), + [anon_sym_DOT_STAR] = ACTIONS(9692), + [anon_sym_DASH_GT] = ACTIONS(9692), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9692), + }, + [STATE(3808)] = { + [sym_identifier] = ACTIONS(5619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(5611), + [anon_sym_COMMA] = ACTIONS(5611), + [anon_sym_RPAREN] = ACTIONS(5611), + [aux_sym_preproc_if_token2] = ACTIONS(5611), + [aux_sym_preproc_else_token1] = ACTIONS(5611), + [aux_sym_preproc_elif_token1] = ACTIONS(5619), + [aux_sym_preproc_elifdef_token1] = ACTIONS(5611), + [aux_sym_preproc_elifdef_token2] = ACTIONS(5611), + [anon_sym_LPAREN2] = ACTIONS(5611), + [anon_sym_DASH] = ACTIONS(5619), + [anon_sym_PLUS] = ACTIONS(5619), + [anon_sym_STAR] = ACTIONS(5619), + [anon_sym_SLASH] = ACTIONS(5619), + [anon_sym_PERCENT] = ACTIONS(5619), + [anon_sym_PIPE_PIPE] = ACTIONS(5611), + [anon_sym_AMP_AMP] = ACTIONS(5611), + [anon_sym_PIPE] = ACTIONS(5619), + [anon_sym_CARET] = ACTIONS(5619), + [anon_sym_AMP] = ACTIONS(5619), + [anon_sym_EQ_EQ] = ACTIONS(5611), + [anon_sym_BANG_EQ] = ACTIONS(5611), + [anon_sym_GT] = ACTIONS(5619), + [anon_sym_GT_EQ] = ACTIONS(5611), + [anon_sym_LT_EQ] = ACTIONS(5619), + [anon_sym_LT] = ACTIONS(5619), + [anon_sym_LT_LT] = ACTIONS(5619), + [anon_sym_GT_GT] = ACTIONS(5619), + [anon_sym_SEMI] = ACTIONS(5611), + [anon_sym___attribute__] = ACTIONS(5619), + [anon_sym___attribute] = ACTIONS(5619), + [anon_sym_COLON] = ACTIONS(5619), + [anon_sym_COLON_COLON] = ACTIONS(7250), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5611), + [anon_sym_RBRACE] = ACTIONS(5611), + [anon_sym_LBRACK] = ACTIONS(5611), + [anon_sym_EQ] = ACTIONS(5619), + [anon_sym_QMARK] = ACTIONS(5611), + [anon_sym_STAR_EQ] = ACTIONS(5611), + [anon_sym_SLASH_EQ] = ACTIONS(5611), + [anon_sym_PERCENT_EQ] = ACTIONS(5611), + [anon_sym_PLUS_EQ] = ACTIONS(5611), + [anon_sym_DASH_EQ] = ACTIONS(5611), + [anon_sym_LT_LT_EQ] = ACTIONS(5611), + [anon_sym_GT_GT_EQ] = ACTIONS(5611), + [anon_sym_AMP_EQ] = ACTIONS(5611), + [anon_sym_CARET_EQ] = ACTIONS(5611), + [anon_sym_PIPE_EQ] = ACTIONS(5611), + [anon_sym_and_eq] = ACTIONS(5619), + [anon_sym_or_eq] = ACTIONS(5619), + [anon_sym_xor_eq] = ACTIONS(5619), + [anon_sym_LT_EQ_GT] = ACTIONS(5611), + [anon_sym_or] = ACTIONS(5619), + [anon_sym_and] = ACTIONS(5619), + [anon_sym_bitor] = ACTIONS(5619), + [anon_sym_xor] = ACTIONS(5619), + [anon_sym_bitand] = ACTIONS(5619), + [anon_sym_not_eq] = ACTIONS(5619), + [anon_sym_DASH_DASH] = ACTIONS(5611), + [anon_sym_PLUS_PLUS] = ACTIONS(5611), + [anon_sym_DOT] = ACTIONS(5619), + [anon_sym_DOT_STAR] = ACTIONS(5611), + [anon_sym_DASH_GT] = ACTIONS(5611), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(5611), + }, + [STATE(3809)] = { + [sym_argument_list] = STATE(3849), + [sym_subscript_argument_list] = STATE(3850), + [sym_identifier] = ACTIONS(9694), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9696), + [anon_sym_COMMA] = ACTIONS(9696), + [anon_sym_RPAREN] = ACTIONS(9696), + [aux_sym_preproc_if_token2] = ACTIONS(9696), + [aux_sym_preproc_else_token1] = ACTIONS(9696), + [aux_sym_preproc_elif_token1] = ACTIONS(9694), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9696), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9696), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9694), + [anon_sym_PLUS] = ACTIONS(9694), + [anon_sym_STAR] = ACTIONS(9694), + [anon_sym_SLASH] = ACTIONS(9694), + [anon_sym_PERCENT] = ACTIONS(9694), + [anon_sym_PIPE_PIPE] = ACTIONS(9696), + [anon_sym_AMP_AMP] = ACTIONS(9696), + [anon_sym_PIPE] = ACTIONS(9694), + [anon_sym_CARET] = ACTIONS(9694), + [anon_sym_AMP] = ACTIONS(9694), + [anon_sym_EQ_EQ] = ACTIONS(9696), + [anon_sym_BANG_EQ] = ACTIONS(9696), + [anon_sym_GT] = ACTIONS(9694), + [anon_sym_GT_EQ] = ACTIONS(9696), + [anon_sym_LT_EQ] = ACTIONS(9694), + [anon_sym_LT] = ACTIONS(9694), + [anon_sym_LT_LT] = ACTIONS(9694), + [anon_sym_GT_GT] = ACTIONS(9694), + [anon_sym_SEMI] = ACTIONS(9696), + [anon_sym___attribute__] = ACTIONS(9694), + [anon_sym___attribute] = ACTIONS(9694), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9696), + [anon_sym_RBRACE] = ACTIONS(9696), + [anon_sym_LBRACK] = ACTIONS(9625), + [anon_sym_EQ] = ACTIONS(9694), + [anon_sym_QMARK] = ACTIONS(9696), + [anon_sym_STAR_EQ] = ACTIONS(9696), + [anon_sym_SLASH_EQ] = ACTIONS(9696), + [anon_sym_PERCENT_EQ] = ACTIONS(9696), + [anon_sym_PLUS_EQ] = ACTIONS(9696), + [anon_sym_DASH_EQ] = ACTIONS(9696), + [anon_sym_LT_LT_EQ] = ACTIONS(9696), + [anon_sym_GT_GT_EQ] = ACTIONS(9696), + [anon_sym_AMP_EQ] = ACTIONS(9696), + [anon_sym_CARET_EQ] = ACTIONS(9696), + [anon_sym_PIPE_EQ] = ACTIONS(9696), + [anon_sym_and_eq] = ACTIONS(9694), + [anon_sym_or_eq] = ACTIONS(9694), + [anon_sym_xor_eq] = ACTIONS(9694), + [anon_sym_LT_EQ_GT] = ACTIONS(9696), + [anon_sym_or] = ACTIONS(9694), + [anon_sym_and] = ACTIONS(9694), + [anon_sym_bitor] = ACTIONS(9694), + [anon_sym_xor] = ACTIONS(9694), + [anon_sym_bitand] = ACTIONS(9694), + [anon_sym_not_eq] = ACTIONS(9694), + [anon_sym_DASH_DASH] = ACTIONS(9696), + [anon_sym_PLUS_PLUS] = ACTIONS(9696), + [anon_sym_DOT] = ACTIONS(9629), + [anon_sym_DOT_STAR] = ACTIONS(9631), + [anon_sym_DASH_GT] = ACTIONS(9631), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9696), + }, + [STATE(3810)] = { + [sym_attribute_specifier] = STATE(4114), + [sym_enumerator_list] = STATE(3913), [sym_identifier] = ACTIONS(7387), [anon_sym_DOT_DOT_DOT] = ACTIONS(7389), [anon_sym_COMMA] = ACTIONS(7389), @@ -449750,9 +450715,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7389), [anon_sym_GT_GT] = ACTIONS(7389), [anon_sym___extension__] = ACTIONS(7387), - [anon_sym___attribute__] = ACTIONS(9244), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_LBRACE] = ACTIONS(9413), + [anon_sym___attribute__] = ACTIONS(9211), + [anon_sym___attribute] = ACTIONS(9211), + [anon_sym_LBRACE] = ACTIONS(9291), [anon_sym_LBRACK] = ACTIONS(7389), [anon_sym_const] = ACTIONS(7387), [anon_sym_constexpr] = ACTIONS(7387), @@ -449786,1617 +450751,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(7387), [anon_sym_requires] = ACTIONS(7387), }, - [STATE(3794)] = { - [sym_argument_list] = STATE(3874), - [sym_subscript_argument_list] = STATE(3900), - [sym_identifier] = ACTIONS(9681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9683), - [anon_sym_COMMA] = ACTIONS(9683), - [anon_sym_RPAREN] = ACTIONS(9683), - [aux_sym_preproc_if_token2] = ACTIONS(9683), - [aux_sym_preproc_else_token1] = ACTIONS(9683), - [aux_sym_preproc_elif_token1] = ACTIONS(9681), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9683), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9683), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9681), - [anon_sym_PLUS] = ACTIONS(9681), - [anon_sym_STAR] = ACTIONS(9681), - [anon_sym_SLASH] = ACTIONS(9681), - [anon_sym_PERCENT] = ACTIONS(9681), - [anon_sym_PIPE_PIPE] = ACTIONS(9683), - [anon_sym_AMP_AMP] = ACTIONS(9683), - [anon_sym_PIPE] = ACTIONS(9681), - [anon_sym_CARET] = ACTIONS(9681), - [anon_sym_AMP] = ACTIONS(9681), - [anon_sym_EQ_EQ] = ACTIONS(9683), - [anon_sym_BANG_EQ] = ACTIONS(9683), - [anon_sym_GT] = ACTIONS(9681), - [anon_sym_GT_EQ] = ACTIONS(9683), - [anon_sym_LT_EQ] = ACTIONS(9681), - [anon_sym_LT] = ACTIONS(9681), - [anon_sym_LT_LT] = ACTIONS(9681), - [anon_sym_GT_GT] = ACTIONS(9681), - [anon_sym_SEMI] = ACTIONS(9683), - [anon_sym___attribute__] = ACTIONS(9681), - [anon_sym___attribute] = ACTIONS(9681), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9683), - [anon_sym_RBRACE] = ACTIONS(9683), - [anon_sym_LBRACK] = ACTIONS(9642), - [anon_sym_EQ] = ACTIONS(9681), - [anon_sym_QMARK] = ACTIONS(9683), - [anon_sym_STAR_EQ] = ACTIONS(9683), - [anon_sym_SLASH_EQ] = ACTIONS(9683), - [anon_sym_PERCENT_EQ] = ACTIONS(9683), - [anon_sym_PLUS_EQ] = ACTIONS(9683), - [anon_sym_DASH_EQ] = ACTIONS(9683), - [anon_sym_LT_LT_EQ] = ACTIONS(9683), - [anon_sym_GT_GT_EQ] = ACTIONS(9683), - [anon_sym_AMP_EQ] = ACTIONS(9683), - [anon_sym_CARET_EQ] = ACTIONS(9683), - [anon_sym_PIPE_EQ] = ACTIONS(9683), - [anon_sym_and_eq] = ACTIONS(9681), - [anon_sym_or_eq] = ACTIONS(9681), - [anon_sym_xor_eq] = ACTIONS(9681), - [anon_sym_LT_EQ_GT] = ACTIONS(9683), - [anon_sym_or] = ACTIONS(9681), - [anon_sym_and] = ACTIONS(9681), - [anon_sym_bitor] = ACTIONS(9681), - [anon_sym_xor] = ACTIONS(9681), - [anon_sym_bitand] = ACTIONS(9681), - [anon_sym_not_eq] = ACTIONS(9681), - [anon_sym_DASH_DASH] = ACTIONS(9683), - [anon_sym_PLUS_PLUS] = ACTIONS(9683), - [anon_sym_DOT] = ACTIONS(9646), - [anon_sym_DOT_STAR] = ACTIONS(9648), - [anon_sym_DASH_GT] = ACTIONS(9648), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9683), - }, - [STATE(3795)] = { - [sym_identifier] = ACTIONS(9685), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9687), - [anon_sym_COMMA] = ACTIONS(9687), - [anon_sym_RPAREN] = ACTIONS(9687), - [aux_sym_preproc_if_token2] = ACTIONS(9687), - [aux_sym_preproc_else_token1] = ACTIONS(9687), - [aux_sym_preproc_elif_token1] = ACTIONS(9685), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9687), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9687), - [anon_sym_LPAREN2] = ACTIONS(9687), - [anon_sym_DASH] = ACTIONS(9685), - [anon_sym_PLUS] = ACTIONS(9685), - [anon_sym_STAR] = ACTIONS(9685), - [anon_sym_SLASH] = ACTIONS(9685), - [anon_sym_PERCENT] = ACTIONS(9685), - [anon_sym_PIPE_PIPE] = ACTIONS(9687), - [anon_sym_AMP_AMP] = ACTIONS(9687), - [anon_sym_PIPE] = ACTIONS(9685), - [anon_sym_CARET] = ACTIONS(9685), - [anon_sym_AMP] = ACTIONS(9685), - [anon_sym_EQ_EQ] = ACTIONS(9687), - [anon_sym_BANG_EQ] = ACTIONS(9687), - [anon_sym_GT] = ACTIONS(9685), - [anon_sym_GT_EQ] = ACTIONS(9687), - [anon_sym_LT_EQ] = ACTIONS(9685), - [anon_sym_LT] = ACTIONS(9685), - [anon_sym_LT_LT] = ACTIONS(9685), - [anon_sym_GT_GT] = ACTIONS(9685), - [anon_sym_SEMI] = ACTIONS(9687), - [anon_sym___attribute__] = ACTIONS(9685), - [anon_sym___attribute] = ACTIONS(9685), - [anon_sym_COLON] = ACTIONS(9685), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9687), - [anon_sym_LBRACE] = ACTIONS(9687), - [anon_sym_RBRACE] = ACTIONS(9687), - [anon_sym_LBRACK] = ACTIONS(9687), - [anon_sym_EQ] = ACTIONS(9685), - [anon_sym_QMARK] = ACTIONS(9687), - [anon_sym_STAR_EQ] = ACTIONS(9687), - [anon_sym_SLASH_EQ] = ACTIONS(9687), - [anon_sym_PERCENT_EQ] = ACTIONS(9687), - [anon_sym_PLUS_EQ] = ACTIONS(9687), - [anon_sym_DASH_EQ] = ACTIONS(9687), - [anon_sym_LT_LT_EQ] = ACTIONS(9687), - [anon_sym_GT_GT_EQ] = ACTIONS(9687), - [anon_sym_AMP_EQ] = ACTIONS(9687), - [anon_sym_CARET_EQ] = ACTIONS(9687), - [anon_sym_PIPE_EQ] = ACTIONS(9687), - [anon_sym_and_eq] = ACTIONS(9685), - [anon_sym_or_eq] = ACTIONS(9685), - [anon_sym_xor_eq] = ACTIONS(9685), - [anon_sym_LT_EQ_GT] = ACTIONS(9687), - [anon_sym_or] = ACTIONS(9685), - [anon_sym_and] = ACTIONS(9685), - [anon_sym_bitor] = ACTIONS(9685), - [anon_sym_xor] = ACTIONS(9685), - [anon_sym_bitand] = ACTIONS(9685), - [anon_sym_not_eq] = ACTIONS(9685), - [anon_sym_DASH_DASH] = ACTIONS(9687), - [anon_sym_PLUS_PLUS] = ACTIONS(9687), - [anon_sym_DOT] = ACTIONS(9685), - [anon_sym_DOT_STAR] = ACTIONS(9687), - [anon_sym_DASH_GT] = ACTIONS(9687), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9687), - }, - [STATE(3796)] = { - [sym_attribute_specifier] = STATE(3245), - [sym_enumerator_list] = STATE(3830), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), - [anon_sym_COMMA] = ACTIONS(7383), - [anon_sym_RPAREN] = ACTIONS(7383), - [anon_sym_LPAREN2] = ACTIONS(7383), - [anon_sym_DASH] = ACTIONS(7381), - [anon_sym_PLUS] = ACTIONS(7381), - [anon_sym_STAR] = ACTIONS(7383), - [anon_sym_SLASH] = ACTIONS(7381), - [anon_sym_PERCENT] = ACTIONS(7383), - [anon_sym_PIPE_PIPE] = ACTIONS(7383), - [anon_sym_AMP_AMP] = ACTIONS(7383), - [anon_sym_PIPE] = ACTIONS(7381), - [anon_sym_CARET] = ACTIONS(7383), - [anon_sym_AMP] = ACTIONS(7381), - [anon_sym_EQ_EQ] = ACTIONS(7383), - [anon_sym_BANG_EQ] = ACTIONS(7383), - [anon_sym_GT] = ACTIONS(7381), - [anon_sym_GT_EQ] = ACTIONS(7383), - [anon_sym_LT_EQ] = ACTIONS(7381), - [anon_sym_LT] = ACTIONS(7381), - [anon_sym_LT_LT] = ACTIONS(7383), - [anon_sym_GT_GT] = ACTIONS(7383), - [anon_sym_SEMI] = ACTIONS(7383), - [anon_sym___extension__] = ACTIONS(7383), - [anon_sym___attribute__] = ACTIONS(9312), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_COLON] = ACTIONS(7381), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7383), - [anon_sym_LBRACE] = ACTIONS(9576), - [anon_sym_RBRACE] = ACTIONS(7383), - [anon_sym_LBRACK] = ACTIONS(7383), - [anon_sym_const] = ACTIONS(7381), - [anon_sym_constexpr] = ACTIONS(7383), - [anon_sym_volatile] = ACTIONS(7383), - [anon_sym_restrict] = ACTIONS(7383), - [anon_sym___restrict__] = ACTIONS(7383), - [anon_sym__Atomic] = ACTIONS(7383), - [anon_sym__Noreturn] = ACTIONS(7383), - [anon_sym_noreturn] = ACTIONS(7383), - [anon_sym__Nonnull] = ACTIONS(7383), - [anon_sym_mutable] = ACTIONS(7383), - [anon_sym_constinit] = ACTIONS(7383), - [anon_sym_consteval] = ACTIONS(7383), - [anon_sym_alignas] = ACTIONS(7383), - [anon_sym__Alignas] = ACTIONS(7383), - [anon_sym_QMARK] = ACTIONS(7383), - [anon_sym_LT_EQ_GT] = ACTIONS(7383), - [anon_sym_or] = ACTIONS(7383), - [anon_sym_and] = ACTIONS(7383), - [anon_sym_bitor] = ACTIONS(7383), - [anon_sym_xor] = ACTIONS(7383), - [anon_sym_bitand] = ACTIONS(7383), - [anon_sym_not_eq] = ACTIONS(7383), - [anon_sym_DASH_DASH] = ACTIONS(7383), - [anon_sym_PLUS_PLUS] = ACTIONS(7383), - [anon_sym_DOT] = ACTIONS(7381), - [anon_sym_DOT_STAR] = ACTIONS(7383), - [anon_sym_DASH_GT] = ACTIONS(7383), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7383), - [anon_sym_override] = ACTIONS(7383), - [anon_sym_requires] = ACTIONS(7383), - [anon_sym_COLON_RBRACK] = ACTIONS(7383), - }, - [STATE(3797)] = { - [sym_template_argument_list] = STATE(3735), - [aux_sym_sized_type_specifier_repeat1] = STATE(4015), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7359), - [anon_sym_COMMA] = ACTIONS(7359), - [anon_sym_LPAREN2] = ACTIONS(7359), - [anon_sym_DASH] = ACTIONS(7357), - [anon_sym_PLUS] = ACTIONS(7357), - [anon_sym_STAR] = ACTIONS(7359), - [anon_sym_SLASH] = ACTIONS(7357), - [anon_sym_PERCENT] = ACTIONS(7359), - [anon_sym_PIPE_PIPE] = ACTIONS(7359), - [anon_sym_AMP_AMP] = ACTIONS(7359), - [anon_sym_PIPE] = ACTIONS(7357), - [anon_sym_CARET] = ACTIONS(7359), - [anon_sym_AMP] = ACTIONS(7357), - [anon_sym_EQ_EQ] = ACTIONS(7359), - [anon_sym_BANG_EQ] = ACTIONS(7359), - [anon_sym_GT] = ACTIONS(7357), - [anon_sym_GT_EQ] = ACTIONS(7357), - [anon_sym_LT_EQ] = ACTIONS(7357), - [anon_sym_LT] = ACTIONS(7357), - [anon_sym_LT_LT] = ACTIONS(7359), - [anon_sym_GT_GT] = ACTIONS(7357), - [anon_sym___extension__] = ACTIONS(7359), - [anon_sym___attribute__] = ACTIONS(7359), - [anon_sym___attribute] = ACTIONS(7357), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_LBRACE] = ACTIONS(7359), - [anon_sym_signed] = ACTIONS(6981), - [anon_sym_unsigned] = ACTIONS(6981), - [anon_sym_long] = ACTIONS(6981), - [anon_sym_short] = ACTIONS(6981), - [anon_sym_LBRACK] = ACTIONS(7359), - [anon_sym_const] = ACTIONS(7357), - [anon_sym_constexpr] = ACTIONS(7359), - [anon_sym_volatile] = ACTIONS(7359), - [anon_sym_restrict] = ACTIONS(7359), - [anon_sym___restrict__] = ACTIONS(7359), - [anon_sym__Atomic] = ACTIONS(7359), - [anon_sym__Noreturn] = ACTIONS(7359), - [anon_sym_noreturn] = ACTIONS(7359), - [anon_sym__Nonnull] = ACTIONS(7359), - [anon_sym_mutable] = ACTIONS(7359), - [anon_sym_constinit] = ACTIONS(7359), - [anon_sym_consteval] = ACTIONS(7359), - [anon_sym_alignas] = ACTIONS(7359), - [anon_sym__Alignas] = ACTIONS(7359), - [anon_sym_QMARK] = ACTIONS(7359), - [anon_sym_LT_EQ_GT] = ACTIONS(7359), - [anon_sym_or] = ACTIONS(7359), - [anon_sym_and] = ACTIONS(7359), - [anon_sym_bitor] = ACTIONS(7359), - [anon_sym_xor] = ACTIONS(7359), - [anon_sym_bitand] = ACTIONS(7359), - [anon_sym_not_eq] = ACTIONS(7359), - [anon_sym_DASH_DASH] = ACTIONS(7359), - [anon_sym_PLUS_PLUS] = ACTIONS(7359), - [anon_sym_DOT] = ACTIONS(7357), - [anon_sym_DOT_STAR] = ACTIONS(7359), - [anon_sym_DASH_GT] = ACTIONS(7359), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7359), - [anon_sym_override] = ACTIONS(7359), - [anon_sym_GT2] = ACTIONS(7359), - [anon_sym_requires] = ACTIONS(7359), - }, - [STATE(3798)] = { - [sym_identifier] = ACTIONS(9689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9691), - [anon_sym_COMMA] = ACTIONS(9691), - [anon_sym_RPAREN] = ACTIONS(9691), - [aux_sym_preproc_if_token2] = ACTIONS(9691), - [aux_sym_preproc_else_token1] = ACTIONS(9691), - [aux_sym_preproc_elif_token1] = ACTIONS(9689), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9691), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9691), - [anon_sym_LPAREN2] = ACTIONS(9691), - [anon_sym_DASH] = ACTIONS(9689), - [anon_sym_PLUS] = ACTIONS(9689), - [anon_sym_STAR] = ACTIONS(9689), - [anon_sym_SLASH] = ACTIONS(9689), - [anon_sym_PERCENT] = ACTIONS(9689), - [anon_sym_PIPE_PIPE] = ACTIONS(9691), - [anon_sym_AMP_AMP] = ACTIONS(9691), - [anon_sym_PIPE] = ACTIONS(9689), - [anon_sym_CARET] = ACTIONS(9689), - [anon_sym_AMP] = ACTIONS(9689), - [anon_sym_EQ_EQ] = ACTIONS(9691), - [anon_sym_BANG_EQ] = ACTIONS(9691), - [anon_sym_GT] = ACTIONS(9689), - [anon_sym_GT_EQ] = ACTIONS(9691), - [anon_sym_LT_EQ] = ACTIONS(9689), - [anon_sym_LT] = ACTIONS(9689), - [anon_sym_LT_LT] = ACTIONS(9689), - [anon_sym_GT_GT] = ACTIONS(9689), - [anon_sym_SEMI] = ACTIONS(9691), - [anon_sym___attribute__] = ACTIONS(9689), - [anon_sym___attribute] = ACTIONS(9689), - [anon_sym_COLON] = ACTIONS(9689), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9691), - [anon_sym_LBRACE] = ACTIONS(9691), - [anon_sym_RBRACE] = ACTIONS(9691), - [anon_sym_LBRACK] = ACTIONS(9691), - [anon_sym_EQ] = ACTIONS(9689), - [anon_sym_QMARK] = ACTIONS(9691), - [anon_sym_STAR_EQ] = ACTIONS(9691), - [anon_sym_SLASH_EQ] = ACTIONS(9691), - [anon_sym_PERCENT_EQ] = ACTIONS(9691), - [anon_sym_PLUS_EQ] = ACTIONS(9691), - [anon_sym_DASH_EQ] = ACTIONS(9691), - [anon_sym_LT_LT_EQ] = ACTIONS(9691), - [anon_sym_GT_GT_EQ] = ACTIONS(9691), - [anon_sym_AMP_EQ] = ACTIONS(9691), - [anon_sym_CARET_EQ] = ACTIONS(9691), - [anon_sym_PIPE_EQ] = ACTIONS(9691), - [anon_sym_and_eq] = ACTIONS(9689), - [anon_sym_or_eq] = ACTIONS(9689), - [anon_sym_xor_eq] = ACTIONS(9689), - [anon_sym_LT_EQ_GT] = ACTIONS(9691), - [anon_sym_or] = ACTIONS(9689), - [anon_sym_and] = ACTIONS(9689), - [anon_sym_bitor] = ACTIONS(9689), - [anon_sym_xor] = ACTIONS(9689), - [anon_sym_bitand] = ACTIONS(9689), - [anon_sym_not_eq] = ACTIONS(9689), - [anon_sym_DASH_DASH] = ACTIONS(9691), - [anon_sym_PLUS_PLUS] = ACTIONS(9691), - [anon_sym_DOT] = ACTIONS(9689), - [anon_sym_DOT_STAR] = ACTIONS(9691), - [anon_sym_DASH_GT] = ACTIONS(9691), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9691), - }, - [STATE(3799)] = { - [sym_type_qualifier] = STATE(3659), - [sym_alignas_qualifier] = STATE(3877), - [aux_sym__type_definition_type_repeat1] = STATE(3659), - [aux_sym_sized_type_specifier_repeat1] = STATE(3303), - [sym_identifier] = ACTIONS(9164), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7205), - [anon_sym_COMMA] = ACTIONS(7205), - [anon_sym_LPAREN2] = ACTIONS(7205), - [anon_sym_DASH] = ACTIONS(7207), - [anon_sym_PLUS] = ACTIONS(7207), - [anon_sym_STAR] = ACTIONS(7205), - [anon_sym_SLASH] = ACTIONS(7207), - [anon_sym_PERCENT] = ACTIONS(7205), - [anon_sym_PIPE_PIPE] = ACTIONS(7205), - [anon_sym_AMP_AMP] = ACTIONS(7205), - [anon_sym_PIPE] = ACTIONS(7207), - [anon_sym_CARET] = ACTIONS(7205), - [anon_sym_AMP] = ACTIONS(7207), - [anon_sym_EQ_EQ] = ACTIONS(7205), - [anon_sym_BANG_EQ] = ACTIONS(7205), - [anon_sym_GT] = ACTIONS(7207), - [anon_sym_GT_EQ] = ACTIONS(7205), - [anon_sym_LT_EQ] = ACTIONS(7207), - [anon_sym_LT] = ACTIONS(7207), - [anon_sym_LT_LT] = ACTIONS(7205), - [anon_sym_GT_GT] = ACTIONS(7205), - [anon_sym___extension__] = ACTIONS(9589), - [anon_sym___attribute__] = ACTIONS(7207), - [anon_sym___attribute] = ACTIONS(7207), - [anon_sym_LBRACE] = ACTIONS(7205), - [anon_sym_signed] = ACTIONS(8864), - [anon_sym_unsigned] = ACTIONS(8864), - [anon_sym_long] = ACTIONS(8864), - [anon_sym_short] = ACTIONS(8864), - [anon_sym_LBRACK] = ACTIONS(7205), - [anon_sym_RBRACK] = ACTIONS(7205), - [anon_sym_const] = ACTIONS(9589), - [anon_sym_constexpr] = ACTIONS(9589), - [anon_sym_volatile] = ACTIONS(9589), - [anon_sym_restrict] = ACTIONS(9589), - [anon_sym___restrict__] = ACTIONS(9589), - [anon_sym__Atomic] = ACTIONS(9589), - [anon_sym__Noreturn] = ACTIONS(9589), - [anon_sym_noreturn] = ACTIONS(9589), - [anon_sym__Nonnull] = ACTIONS(9589), - [anon_sym_mutable] = ACTIONS(9589), - [anon_sym_constinit] = ACTIONS(9589), - [anon_sym_consteval] = ACTIONS(9589), - [anon_sym_alignas] = ACTIONS(9593), - [anon_sym__Alignas] = ACTIONS(9593), - [sym_primitive_type] = ACTIONS(8866), - [anon_sym_QMARK] = ACTIONS(7205), - [anon_sym_LT_EQ_GT] = ACTIONS(7205), - [anon_sym_or] = ACTIONS(7207), - [anon_sym_and] = ACTIONS(7207), - [anon_sym_bitor] = ACTIONS(7207), - [anon_sym_xor] = ACTIONS(7207), - [anon_sym_bitand] = ACTIONS(7207), - [anon_sym_not_eq] = ACTIONS(7207), - [anon_sym_DASH_DASH] = ACTIONS(7205), - [anon_sym_PLUS_PLUS] = ACTIONS(7205), - [anon_sym_DOT] = ACTIONS(7207), - [anon_sym_DOT_STAR] = ACTIONS(7205), - [anon_sym_DASH_GT] = ACTIONS(7205), - [sym_comment] = ACTIONS(3), - }, - [STATE(3800)] = { - [sym_template_argument_list] = STATE(2992), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_RPAREN] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_DASH] = ACTIONS(7085), - [anon_sym_PLUS] = ACTIONS(7085), - [anon_sym_STAR] = ACTIONS(7090), - [anon_sym_SLASH] = ACTIONS(7085), - [anon_sym_PERCENT] = ACTIONS(7090), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE] = ACTIONS(7085), - [anon_sym_CARET] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_EQ_EQ] = ACTIONS(7090), - [anon_sym_BANG_EQ] = ACTIONS(7090), - [anon_sym_GT] = ACTIONS(7085), - [anon_sym_GT_EQ] = ACTIONS(7090), - [anon_sym_LT_EQ] = ACTIONS(7085), - [anon_sym_LT] = ACTIONS(8695), - [anon_sym_LT_LT] = ACTIONS(7090), - [anon_sym_GT_GT] = ACTIONS(7090), - [anon_sym_SEMI] = ACTIONS(7090), - [anon_sym___extension__] = ACTIONS(7090), - [anon_sym___attribute__] = ACTIONS(7090), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7087), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7090), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_RBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7090), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7090), - [anon_sym_volatile] = ACTIONS(7090), - [anon_sym_restrict] = ACTIONS(7090), - [anon_sym___restrict__] = ACTIONS(7090), - [anon_sym__Atomic] = ACTIONS(7090), - [anon_sym__Noreturn] = ACTIONS(7090), - [anon_sym_noreturn] = ACTIONS(7090), - [anon_sym__Nonnull] = ACTIONS(7090), - [anon_sym_mutable] = ACTIONS(7090), - [anon_sym_constinit] = ACTIONS(7090), - [anon_sym_consteval] = ACTIONS(7090), - [anon_sym_alignas] = ACTIONS(7090), - [anon_sym__Alignas] = ACTIONS(7090), - [anon_sym_QMARK] = ACTIONS(7090), - [anon_sym_LT_EQ_GT] = ACTIONS(7090), - [anon_sym_or] = ACTIONS(7090), - [anon_sym_and] = ACTIONS(7090), - [anon_sym_bitor] = ACTIONS(7090), - [anon_sym_xor] = ACTIONS(7090), - [anon_sym_bitand] = ACTIONS(7090), - [anon_sym_not_eq] = ACTIONS(7090), - [anon_sym_DASH_DASH] = ACTIONS(7090), - [anon_sym_PLUS_PLUS] = ACTIONS(7090), - [anon_sym_DOT] = ACTIONS(7085), - [anon_sym_DOT_STAR] = ACTIONS(7090), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7090), - [anon_sym_override] = ACTIONS(7090), - [anon_sym_requires] = ACTIONS(7090), - [anon_sym_COLON_RBRACK] = ACTIONS(7090), - }, - [STATE(3801)] = { - [sym__abstract_declarator] = STATE(6551), - [sym_abstract_parenthesized_declarator] = STATE(5347), - [sym_abstract_pointer_declarator] = STATE(5347), - [sym_abstract_function_declarator] = STATE(5347), - [sym_abstract_array_declarator] = STATE(5347), - [sym_type_qualifier] = STATE(3774), - [sym_alignas_qualifier] = STATE(2726), - [sym_parameter_list] = STATE(2274), - [sym_abstract_reference_declarator] = STATE(5347), - [sym__function_declarator_seq] = STATE(5348), - [aux_sym__type_definition_type_repeat1] = STATE(3774), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7391), - [anon_sym_COMMA] = ACTIONS(7391), - [anon_sym_LPAREN2] = ACTIONS(8084), - [anon_sym_DASH] = ACTIONS(7393), - [anon_sym_PLUS] = ACTIONS(7393), - [anon_sym_STAR] = ACTIONS(8677), - [anon_sym_SLASH] = ACTIONS(7393), - [anon_sym_PERCENT] = ACTIONS(7391), - [anon_sym_PIPE_PIPE] = ACTIONS(7391), - [anon_sym_AMP_AMP] = ACTIONS(8679), - [anon_sym_PIPE] = ACTIONS(7393), - [anon_sym_CARET] = ACTIONS(7391), - [anon_sym_AMP] = ACTIONS(8681), - [anon_sym_EQ_EQ] = ACTIONS(7391), - [anon_sym_BANG_EQ] = ACTIONS(7391), - [anon_sym_GT] = ACTIONS(7393), - [anon_sym_GT_EQ] = ACTIONS(7391), - [anon_sym_LT_EQ] = ACTIONS(7393), - [anon_sym_LT] = ACTIONS(7393), - [anon_sym_LT_LT] = ACTIONS(7391), - [anon_sym_GT_GT] = ACTIONS(7391), - [anon_sym_SEMI] = ACTIONS(7391), - [anon_sym___extension__] = ACTIONS(8117), - [anon_sym___attribute__] = ACTIONS(7391), - [anon_sym___attribute] = ACTIONS(7393), - [anon_sym_LBRACK] = ACTIONS(8098), - [anon_sym_const] = ACTIONS(8123), - [anon_sym_constexpr] = ACTIONS(8117), - [anon_sym_volatile] = ACTIONS(8117), - [anon_sym_restrict] = ACTIONS(8117), - [anon_sym___restrict__] = ACTIONS(8117), - [anon_sym__Atomic] = ACTIONS(8117), - [anon_sym__Noreturn] = ACTIONS(8117), - [anon_sym_noreturn] = ACTIONS(8117), - [anon_sym__Nonnull] = ACTIONS(8117), - [anon_sym_mutable] = ACTIONS(8117), - [anon_sym_constinit] = ACTIONS(8117), - [anon_sym_consteval] = ACTIONS(8117), - [anon_sym_alignas] = ACTIONS(8125), - [anon_sym__Alignas] = ACTIONS(8125), - [anon_sym_QMARK] = ACTIONS(7391), - [anon_sym_LT_EQ_GT] = ACTIONS(7391), - [anon_sym_or] = ACTIONS(7391), - [anon_sym_and] = ACTIONS(7391), - [anon_sym_bitor] = ACTIONS(7391), - [anon_sym_xor] = ACTIONS(7391), - [anon_sym_bitand] = ACTIONS(7391), - [anon_sym_not_eq] = ACTIONS(7391), - [anon_sym_DASH_DASH] = ACTIONS(7391), - [anon_sym_PLUS_PLUS] = ACTIONS(7391), - [anon_sym_DOT] = ACTIONS(7393), - [anon_sym_DOT_STAR] = ACTIONS(7391), - [anon_sym_DASH_GT] = ACTIONS(7391), - [sym_comment] = ACTIONS(3), - }, - [STATE(3802)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3766), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7525), - [anon_sym_COMMA] = ACTIONS(7525), - [anon_sym_LPAREN2] = ACTIONS(7525), - [anon_sym_DASH] = ACTIONS(7528), - [anon_sym_PLUS] = ACTIONS(7528), - [anon_sym_STAR] = ACTIONS(7525), - [anon_sym_SLASH] = ACTIONS(7528), - [anon_sym_PERCENT] = ACTIONS(7525), - [anon_sym_PIPE_PIPE] = ACTIONS(7525), - [anon_sym_AMP_AMP] = ACTIONS(7525), - [anon_sym_PIPE] = ACTIONS(7528), - [anon_sym_CARET] = ACTIONS(7525), - [anon_sym_AMP] = ACTIONS(7528), - [anon_sym_EQ_EQ] = ACTIONS(7525), - [anon_sym_BANG_EQ] = ACTIONS(7525), - [anon_sym_GT] = ACTIONS(7528), - [anon_sym_GT_EQ] = ACTIONS(7525), - [anon_sym_LT_EQ] = ACTIONS(7528), - [anon_sym_LT] = ACTIONS(7528), - [anon_sym_LT_LT] = ACTIONS(7525), - [anon_sym_GT_GT] = ACTIONS(7525), - [anon_sym___extension__] = ACTIONS(7528), - [anon_sym___attribute__] = ACTIONS(7528), - [anon_sym___attribute] = ACTIONS(7528), - [anon_sym_LBRACE] = ACTIONS(7525), - [anon_sym_signed] = ACTIONS(9623), - [anon_sym_unsigned] = ACTIONS(9623), - [anon_sym_long] = ACTIONS(9623), - [anon_sym_short] = ACTIONS(9623), - [anon_sym_LBRACK] = ACTIONS(7525), - [anon_sym_RBRACK] = ACTIONS(7525), - [anon_sym_const] = ACTIONS(7528), - [anon_sym_constexpr] = ACTIONS(7528), - [anon_sym_volatile] = ACTIONS(7528), - [anon_sym_restrict] = ACTIONS(7528), - [anon_sym___restrict__] = ACTIONS(7528), - [anon_sym__Atomic] = ACTIONS(7528), - [anon_sym__Noreturn] = ACTIONS(7528), - [anon_sym_noreturn] = ACTIONS(7528), - [anon_sym__Nonnull] = ACTIONS(7528), - [anon_sym_mutable] = ACTIONS(7528), - [anon_sym_constinit] = ACTIONS(7528), - [anon_sym_consteval] = ACTIONS(7528), - [anon_sym_alignas] = ACTIONS(7528), - [anon_sym__Alignas] = ACTIONS(7528), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7525), - [anon_sym_LT_EQ_GT] = ACTIONS(7525), - [anon_sym_or] = ACTIONS(7528), - [anon_sym_and] = ACTIONS(7528), - [anon_sym_bitor] = ACTIONS(7528), - [anon_sym_xor] = ACTIONS(7528), - [anon_sym_bitand] = ACTIONS(7528), - [anon_sym_not_eq] = ACTIONS(7528), - [anon_sym_DASH_DASH] = ACTIONS(7525), - [anon_sym_PLUS_PLUS] = ACTIONS(7525), - [anon_sym_DOT] = ACTIONS(7528), - [anon_sym_DOT_STAR] = ACTIONS(7525), - [anon_sym_DASH_GT] = ACTIONS(7525), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(7528), - [anon_sym_override] = ACTIONS(7528), - [anon_sym_requires] = ACTIONS(7528), - }, - [STATE(3803)] = { - [sym_template_argument_list] = STATE(2938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(5657), - [anon_sym_COMMA] = ACTIONS(5657), - [anon_sym_RPAREN] = ACTIONS(5657), - [anon_sym_LPAREN2] = ACTIONS(5657), - [anon_sym_DASH] = ACTIONS(7371), - [anon_sym_PLUS] = ACTIONS(7371), - [anon_sym_STAR] = ACTIONS(5657), - [anon_sym_SLASH] = ACTIONS(7371), - [anon_sym_PERCENT] = ACTIONS(5657), - [anon_sym_PIPE_PIPE] = ACTIONS(5657), - [anon_sym_AMP_AMP] = ACTIONS(5657), - [anon_sym_PIPE] = ACTIONS(7371), - [anon_sym_CARET] = ACTIONS(5657), - [anon_sym_AMP] = ACTIONS(7371), - [anon_sym_EQ_EQ] = ACTIONS(5657), - [anon_sym_BANG_EQ] = ACTIONS(5657), - [anon_sym_GT] = ACTIONS(7371), - [anon_sym_GT_EQ] = ACTIONS(5657), - [anon_sym_LT_EQ] = ACTIONS(7371), - [anon_sym_LT] = ACTIONS(8695), - [anon_sym_LT_LT] = ACTIONS(5657), - [anon_sym_GT_GT] = ACTIONS(5657), - [anon_sym_SEMI] = ACTIONS(5657), - [anon_sym___extension__] = ACTIONS(5657), - [anon_sym___attribute__] = ACTIONS(5657), - [anon_sym___attribute] = ACTIONS(7371), - [anon_sym_COLON] = ACTIONS(7371), - [anon_sym_COLON_COLON] = ACTIONS(5655), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5657), - [anon_sym_LBRACE] = ACTIONS(5657), - [anon_sym_RBRACE] = ACTIONS(5657), - [anon_sym_LBRACK] = ACTIONS(5657), - [anon_sym_const] = ACTIONS(7371), - [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), - [anon_sym_QMARK] = ACTIONS(5657), - [anon_sym_LT_EQ_GT] = ACTIONS(5657), - [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(5657), - [anon_sym_PLUS_PLUS] = ACTIONS(5657), - [anon_sym_DOT] = ACTIONS(7371), - [anon_sym_DOT_STAR] = ACTIONS(5657), - [anon_sym_DASH_GT] = ACTIONS(5657), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(5657), - [anon_sym_override] = ACTIONS(5657), - [anon_sym_requires] = ACTIONS(5657), - [anon_sym_COLON_RBRACK] = ACTIONS(5657), - }, - [STATE(3804)] = { - [sym_identifier] = ACTIONS(8564), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8559), - [anon_sym_COMMA] = ACTIONS(8559), - [anon_sym_RPAREN] = ACTIONS(8559), - [aux_sym_preproc_if_token2] = ACTIONS(8559), - [aux_sym_preproc_else_token1] = ACTIONS(8559), - [aux_sym_preproc_elif_token1] = ACTIONS(8564), - [aux_sym_preproc_elifdef_token1] = ACTIONS(8559), - [aux_sym_preproc_elifdef_token2] = ACTIONS(8559), - [anon_sym_LPAREN2] = ACTIONS(8559), - [anon_sym_DASH] = ACTIONS(8564), - [anon_sym_PLUS] = ACTIONS(8564), - [anon_sym_STAR] = ACTIONS(8564), - [anon_sym_SLASH] = ACTIONS(8564), - [anon_sym_PERCENT] = ACTIONS(8564), - [anon_sym_PIPE_PIPE] = ACTIONS(8559), - [anon_sym_AMP_AMP] = ACTIONS(8559), - [anon_sym_PIPE] = ACTIONS(8564), - [anon_sym_CARET] = ACTIONS(8564), - [anon_sym_AMP] = ACTIONS(8564), - [anon_sym_EQ_EQ] = ACTIONS(8559), - [anon_sym_BANG_EQ] = ACTIONS(8559), - [anon_sym_GT] = ACTIONS(8564), - [anon_sym_GT_EQ] = ACTIONS(8559), - [anon_sym_LT_EQ] = ACTIONS(8564), - [anon_sym_LT] = ACTIONS(8564), - [anon_sym_LT_LT] = ACTIONS(8564), - [anon_sym_GT_GT] = ACTIONS(8564), - [anon_sym_SEMI] = ACTIONS(8559), - [anon_sym___attribute__] = ACTIONS(8564), - [anon_sym___attribute] = ACTIONS(8564), - [anon_sym_COLON] = ACTIONS(8564), - [anon_sym_COLON_COLON] = ACTIONS(8559), - [anon_sym_RBRACK_RBRACK] = ACTIONS(8559), - [anon_sym_RBRACE] = ACTIONS(8559), - [anon_sym_LBRACK] = ACTIONS(8559), - [anon_sym_EQ] = ACTIONS(8564), - [anon_sym_QMARK] = ACTIONS(8559), - [anon_sym_STAR_EQ] = ACTIONS(8559), - [anon_sym_SLASH_EQ] = ACTIONS(8559), - [anon_sym_PERCENT_EQ] = ACTIONS(8559), - [anon_sym_PLUS_EQ] = ACTIONS(8559), - [anon_sym_DASH_EQ] = ACTIONS(8559), - [anon_sym_LT_LT_EQ] = ACTIONS(8559), - [anon_sym_GT_GT_EQ] = ACTIONS(8559), - [anon_sym_AMP_EQ] = ACTIONS(8559), - [anon_sym_CARET_EQ] = ACTIONS(8559), - [anon_sym_PIPE_EQ] = ACTIONS(8559), - [anon_sym_and_eq] = ACTIONS(8564), - [anon_sym_or_eq] = ACTIONS(8564), - [anon_sym_xor_eq] = ACTIONS(8564), - [anon_sym_LT_EQ_GT] = ACTIONS(8559), - [anon_sym_or] = ACTIONS(8564), - [anon_sym_and] = ACTIONS(8564), - [anon_sym_bitor] = ACTIONS(8564), - [anon_sym_xor] = ACTIONS(8564), - [anon_sym_bitand] = ACTIONS(8564), - [anon_sym_not_eq] = ACTIONS(8564), - [anon_sym_DASH_DASH] = ACTIONS(8559), - [anon_sym_PLUS_PLUS] = ACTIONS(8559), - [anon_sym_DOT] = ACTIONS(8564), - [anon_sym_DOT_STAR] = ACTIONS(8559), - [anon_sym_DASH_GT] = ACTIONS(8559), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(8559), - }, - [STATE(3805)] = { - [sym_identifier] = ACTIONS(9693), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9695), - [anon_sym_COMMA] = ACTIONS(9695), - [anon_sym_RPAREN] = ACTIONS(9695), - [aux_sym_preproc_if_token2] = ACTIONS(9695), - [aux_sym_preproc_else_token1] = ACTIONS(9695), - [aux_sym_preproc_elif_token1] = ACTIONS(9693), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9695), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9695), - [anon_sym_LPAREN2] = ACTIONS(9695), - [anon_sym_DASH] = ACTIONS(9693), - [anon_sym_PLUS] = ACTIONS(9693), - [anon_sym_STAR] = ACTIONS(9693), - [anon_sym_SLASH] = ACTIONS(9693), - [anon_sym_PERCENT] = ACTIONS(9693), - [anon_sym_PIPE_PIPE] = ACTIONS(9695), - [anon_sym_AMP_AMP] = ACTIONS(9695), - [anon_sym_PIPE] = ACTIONS(9693), - [anon_sym_CARET] = ACTIONS(9693), - [anon_sym_AMP] = ACTIONS(9693), - [anon_sym_EQ_EQ] = ACTIONS(9695), - [anon_sym_BANG_EQ] = ACTIONS(9695), - [anon_sym_GT] = ACTIONS(9693), - [anon_sym_GT_EQ] = ACTIONS(9695), - [anon_sym_LT_EQ] = ACTIONS(9693), - [anon_sym_LT] = ACTIONS(9693), - [anon_sym_LT_LT] = ACTIONS(9693), - [anon_sym_GT_GT] = ACTIONS(9693), - [anon_sym_SEMI] = ACTIONS(9695), - [anon_sym___attribute__] = ACTIONS(9693), - [anon_sym___attribute] = ACTIONS(9693), - [anon_sym_COLON] = ACTIONS(9693), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9695), - [anon_sym_LBRACE] = ACTIONS(9695), - [anon_sym_RBRACE] = ACTIONS(9695), - [anon_sym_LBRACK] = ACTIONS(9695), - [anon_sym_EQ] = ACTIONS(9693), - [anon_sym_QMARK] = ACTIONS(9695), - [anon_sym_STAR_EQ] = ACTIONS(9695), - [anon_sym_SLASH_EQ] = ACTIONS(9695), - [anon_sym_PERCENT_EQ] = ACTIONS(9695), - [anon_sym_PLUS_EQ] = ACTIONS(9695), - [anon_sym_DASH_EQ] = ACTIONS(9695), - [anon_sym_LT_LT_EQ] = ACTIONS(9695), - [anon_sym_GT_GT_EQ] = ACTIONS(9695), - [anon_sym_AMP_EQ] = ACTIONS(9695), - [anon_sym_CARET_EQ] = ACTIONS(9695), - [anon_sym_PIPE_EQ] = ACTIONS(9695), - [anon_sym_and_eq] = ACTIONS(9693), - [anon_sym_or_eq] = ACTIONS(9693), - [anon_sym_xor_eq] = ACTIONS(9693), - [anon_sym_LT_EQ_GT] = ACTIONS(9695), - [anon_sym_or] = ACTIONS(9693), - [anon_sym_and] = ACTIONS(9693), - [anon_sym_bitor] = ACTIONS(9693), - [anon_sym_xor] = ACTIONS(9693), - [anon_sym_bitand] = ACTIONS(9693), - [anon_sym_not_eq] = ACTIONS(9693), - [anon_sym_DASH_DASH] = ACTIONS(9695), - [anon_sym_PLUS_PLUS] = ACTIONS(9695), - [anon_sym_DOT] = ACTIONS(9693), - [anon_sym_DOT_STAR] = ACTIONS(9695), - [anon_sym_DASH_GT] = ACTIONS(9695), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9695), - }, - [STATE(3806)] = { - [sym_identifier] = ACTIONS(8750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8752), - [anon_sym_COMMA] = ACTIONS(8752), - [anon_sym_LPAREN2] = ACTIONS(8752), - [anon_sym_DASH] = ACTIONS(8750), - [anon_sym_PLUS] = ACTIONS(8750), - [anon_sym_STAR] = ACTIONS(8750), - [anon_sym_SLASH] = ACTIONS(8750), - [anon_sym_PERCENT] = ACTIONS(8750), - [anon_sym_PIPE_PIPE] = ACTIONS(8752), - [anon_sym_AMP_AMP] = ACTIONS(8752), - [anon_sym_PIPE] = ACTIONS(8750), - [anon_sym_CARET] = ACTIONS(8750), - [anon_sym_AMP] = ACTIONS(8750), - [anon_sym_EQ_EQ] = ACTIONS(8752), - [anon_sym_BANG_EQ] = ACTIONS(8752), - [anon_sym_GT] = ACTIONS(8750), - [anon_sym_GT_EQ] = ACTIONS(8752), - [anon_sym_LT_EQ] = ACTIONS(8750), - [anon_sym_LT] = ACTIONS(8750), - [anon_sym_LT_LT] = ACTIONS(8750), - [anon_sym_GT_GT] = ACTIONS(8750), - [anon_sym_SEMI] = ACTIONS(8752), - [anon_sym___attribute__] = ACTIONS(8750), - [anon_sym___attribute] = ACTIONS(8750), - [anon_sym_LBRACK] = ACTIONS(8752), - [anon_sym_EQ] = ACTIONS(8750), - [anon_sym_QMARK] = ACTIONS(8752), - [anon_sym_STAR_EQ] = ACTIONS(8752), - [anon_sym_SLASH_EQ] = ACTIONS(8752), - [anon_sym_PERCENT_EQ] = ACTIONS(8752), - [anon_sym_PLUS_EQ] = ACTIONS(8752), - [anon_sym_DASH_EQ] = ACTIONS(8752), - [anon_sym_LT_LT_EQ] = ACTIONS(8752), - [anon_sym_GT_GT_EQ] = ACTIONS(8752), - [anon_sym_AMP_EQ] = ACTIONS(8752), - [anon_sym_CARET_EQ] = ACTIONS(8752), - [anon_sym_PIPE_EQ] = ACTIONS(8752), - [anon_sym_and_eq] = ACTIONS(8750), - [anon_sym_or_eq] = ACTIONS(8750), - [anon_sym_xor_eq] = ACTIONS(8750), - [anon_sym_LT_EQ_GT] = ACTIONS(8752), - [anon_sym_or] = ACTIONS(8750), - [anon_sym_and] = ACTIONS(8750), - [anon_sym_bitor] = ACTIONS(8750), - [anon_sym_xor] = ACTIONS(8750), - [anon_sym_bitand] = ACTIONS(8750), - [anon_sym_not_eq] = ACTIONS(8750), - [anon_sym_DASH_DASH] = ACTIONS(8752), - [anon_sym_PLUS_PLUS] = ACTIONS(8752), - [anon_sym_DOT] = ACTIONS(8750), - [anon_sym_DOT_STAR] = ACTIONS(8752), - [anon_sym_DASH_GT] = ACTIONS(8752), - [anon_sym_L_DQUOTE] = ACTIONS(8752), - [anon_sym_u_DQUOTE] = ACTIONS(8752), - [anon_sym_U_DQUOTE] = ACTIONS(8752), - [anon_sym_u8_DQUOTE] = ACTIONS(8752), - [anon_sym_DQUOTE] = ACTIONS(8752), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8752), - [anon_sym_LR_DQUOTE] = ACTIONS(8752), - [anon_sym_uR_DQUOTE] = ACTIONS(8752), - [anon_sym_UR_DQUOTE] = ACTIONS(8752), - [anon_sym_u8R_DQUOTE] = ACTIONS(8752), - [sym_literal_suffix] = ACTIONS(8750), - }, - [STATE(3807)] = { - [sym_identifier] = ACTIONS(8665), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8667), - [anon_sym_COMMA] = ACTIONS(8667), - [anon_sym_LPAREN2] = ACTIONS(8667), - [anon_sym_DASH] = ACTIONS(8665), - [anon_sym_PLUS] = ACTIONS(8665), - [anon_sym_STAR] = ACTIONS(8665), - [anon_sym_SLASH] = ACTIONS(8665), - [anon_sym_PERCENT] = ACTIONS(8665), - [anon_sym_PIPE_PIPE] = ACTIONS(8667), - [anon_sym_AMP_AMP] = ACTIONS(8667), - [anon_sym_PIPE] = ACTIONS(8665), - [anon_sym_CARET] = ACTIONS(8665), - [anon_sym_AMP] = ACTIONS(8665), - [anon_sym_EQ_EQ] = ACTIONS(8667), - [anon_sym_BANG_EQ] = ACTIONS(8667), - [anon_sym_GT] = ACTIONS(8665), - [anon_sym_GT_EQ] = ACTIONS(8667), - [anon_sym_LT_EQ] = ACTIONS(8665), - [anon_sym_LT] = ACTIONS(8665), - [anon_sym_LT_LT] = ACTIONS(8665), - [anon_sym_GT_GT] = ACTIONS(8665), - [anon_sym_SEMI] = ACTIONS(8667), - [anon_sym___attribute__] = ACTIONS(8665), - [anon_sym___attribute] = ACTIONS(8665), - [anon_sym_LBRACK] = ACTIONS(8667), - [anon_sym_EQ] = ACTIONS(8665), - [anon_sym_QMARK] = ACTIONS(8667), - [anon_sym_STAR_EQ] = ACTIONS(8667), - [anon_sym_SLASH_EQ] = ACTIONS(8667), - [anon_sym_PERCENT_EQ] = ACTIONS(8667), - [anon_sym_PLUS_EQ] = ACTIONS(8667), - [anon_sym_DASH_EQ] = ACTIONS(8667), - [anon_sym_LT_LT_EQ] = ACTIONS(8667), - [anon_sym_GT_GT_EQ] = ACTIONS(8667), - [anon_sym_AMP_EQ] = ACTIONS(8667), - [anon_sym_CARET_EQ] = ACTIONS(8667), - [anon_sym_PIPE_EQ] = ACTIONS(8667), - [anon_sym_and_eq] = ACTIONS(8665), - [anon_sym_or_eq] = ACTIONS(8665), - [anon_sym_xor_eq] = ACTIONS(8665), - [anon_sym_LT_EQ_GT] = ACTIONS(8667), - [anon_sym_or] = ACTIONS(8665), - [anon_sym_and] = ACTIONS(8665), - [anon_sym_bitor] = ACTIONS(8665), - [anon_sym_xor] = ACTIONS(8665), - [anon_sym_bitand] = ACTIONS(8665), - [anon_sym_not_eq] = ACTIONS(8665), - [anon_sym_DASH_DASH] = ACTIONS(8667), - [anon_sym_PLUS_PLUS] = ACTIONS(8667), - [anon_sym_DOT] = ACTIONS(8665), - [anon_sym_DOT_STAR] = ACTIONS(8667), - [anon_sym_DASH_GT] = ACTIONS(8667), - [anon_sym_L_DQUOTE] = ACTIONS(8667), - [anon_sym_u_DQUOTE] = ACTIONS(8667), - [anon_sym_U_DQUOTE] = ACTIONS(8667), - [anon_sym_u8_DQUOTE] = ACTIONS(8667), - [anon_sym_DQUOTE] = ACTIONS(8667), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8667), - [anon_sym_LR_DQUOTE] = ACTIONS(8667), - [anon_sym_uR_DQUOTE] = ACTIONS(8667), - [anon_sym_UR_DQUOTE] = ACTIONS(8667), - [anon_sym_u8R_DQUOTE] = ACTIONS(8667), - [sym_literal_suffix] = ACTIONS(8665), - }, - [STATE(3808)] = { - [sym_identifier] = ACTIONS(7085), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7090), - [anon_sym_COMMA] = ACTIONS(7090), - [anon_sym_RPAREN] = ACTIONS(7090), - [anon_sym_LPAREN2] = ACTIONS(7090), - [anon_sym_TILDE] = ACTIONS(7090), - [anon_sym_STAR] = ACTIONS(7090), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_AMP] = ACTIONS(7085), - [anon_sym_SEMI] = ACTIONS(7090), - [anon_sym___extension__] = ACTIONS(7085), - [anon_sym_virtual] = ACTIONS(7085), - [anon_sym_extern] = ACTIONS(7085), - [anon_sym___attribute__] = ACTIONS(7085), - [anon_sym___attribute] = ACTIONS(7085), - [anon_sym_COLON] = ACTIONS(7085), - [anon_sym_COLON_COLON] = ACTIONS(7090), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7090), - [anon_sym___declspec] = ACTIONS(7085), - [anon_sym___based] = ACTIONS(7085), - [anon_sym___cdecl] = ACTIONS(7085), - [anon_sym___clrcall] = ACTIONS(7085), - [anon_sym___stdcall] = ACTIONS(7085), - [anon_sym___fastcall] = ACTIONS(7085), - [anon_sym___thiscall] = ACTIONS(7085), - [anon_sym___vectorcall] = ACTIONS(7085), - [anon_sym_LBRACE] = ACTIONS(7090), - [anon_sym_LBRACK] = ACTIONS(7085), - [anon_sym_static] = ACTIONS(7085), - [anon_sym_EQ] = ACTIONS(7090), - [anon_sym_register] = ACTIONS(7085), - [anon_sym_inline] = ACTIONS(7085), - [anon_sym___inline] = ACTIONS(7085), - [anon_sym___inline__] = ACTIONS(7085), - [anon_sym___forceinline] = ACTIONS(7085), - [anon_sym_thread_local] = ACTIONS(7085), - [anon_sym___thread] = ACTIONS(7085), - [anon_sym_const] = ACTIONS(7085), - [anon_sym_constexpr] = ACTIONS(7085), - [anon_sym_volatile] = ACTIONS(7085), - [anon_sym_restrict] = ACTIONS(7085), - [anon_sym___restrict__] = ACTIONS(7085), - [anon_sym__Atomic] = ACTIONS(7085), - [anon_sym__Noreturn] = ACTIONS(7085), - [anon_sym_noreturn] = ACTIONS(7085), - [anon_sym__Nonnull] = ACTIONS(7085), - [anon_sym_mutable] = ACTIONS(7085), - [anon_sym_constinit] = ACTIONS(7085), - [anon_sym_consteval] = ACTIONS(7085), - [anon_sym_alignas] = ACTIONS(7085), - [anon_sym__Alignas] = ACTIONS(7085), - [anon_sym_or] = ACTIONS(7085), - [anon_sym_and] = ACTIONS(7085), - [anon_sym_DASH_GT] = ACTIONS(7090), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7085), - [anon_sym_final] = ACTIONS(7085), - [anon_sym_override] = ACTIONS(7085), - [anon_sym_template] = ACTIONS(7085), - [anon_sym_GT2] = ACTIONS(7090), - [anon_sym_operator] = ACTIONS(7085), - [anon_sym_noexcept] = ACTIONS(7085), - [anon_sym_throw] = ACTIONS(7085), - [anon_sym_LBRACK_COLON] = ACTIONS(7090), - }, - [STATE(3809)] = { - [sym_identifier] = ACTIONS(9697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9699), - [anon_sym_COMMA] = ACTIONS(9699), - [anon_sym_RPAREN] = ACTIONS(9699), - [aux_sym_preproc_if_token2] = ACTIONS(9699), - [aux_sym_preproc_else_token1] = ACTIONS(9699), - [aux_sym_preproc_elif_token1] = ACTIONS(9697), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9699), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9699), - [anon_sym_LPAREN2] = ACTIONS(9699), - [anon_sym_DASH] = ACTIONS(9697), - [anon_sym_PLUS] = ACTIONS(9697), - [anon_sym_STAR] = ACTIONS(9697), - [anon_sym_SLASH] = ACTIONS(9697), - [anon_sym_PERCENT] = ACTIONS(9697), - [anon_sym_PIPE_PIPE] = ACTIONS(9699), - [anon_sym_AMP_AMP] = ACTIONS(9699), - [anon_sym_PIPE] = ACTIONS(9697), - [anon_sym_CARET] = ACTIONS(9697), - [anon_sym_AMP] = ACTIONS(9697), - [anon_sym_EQ_EQ] = ACTIONS(9699), - [anon_sym_BANG_EQ] = ACTIONS(9699), - [anon_sym_GT] = ACTIONS(9697), - [anon_sym_GT_EQ] = ACTIONS(9699), - [anon_sym_LT_EQ] = ACTIONS(9697), - [anon_sym_LT] = ACTIONS(9697), - [anon_sym_LT_LT] = ACTIONS(9697), - [anon_sym_GT_GT] = ACTIONS(9697), - [anon_sym_SEMI] = ACTIONS(9699), - [anon_sym___attribute__] = ACTIONS(9697), - [anon_sym___attribute] = ACTIONS(9697), - [anon_sym_COLON] = ACTIONS(9697), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9699), - [anon_sym_RBRACE] = ACTIONS(9699), - [anon_sym_LBRACK] = ACTIONS(9697), - [anon_sym_EQ] = ACTIONS(9697), - [anon_sym_QMARK] = ACTIONS(9699), - [anon_sym_STAR_EQ] = ACTIONS(9699), - [anon_sym_SLASH_EQ] = ACTIONS(9699), - [anon_sym_PERCENT_EQ] = ACTIONS(9699), - [anon_sym_PLUS_EQ] = ACTIONS(9699), - [anon_sym_DASH_EQ] = ACTIONS(9699), - [anon_sym_LT_LT_EQ] = ACTIONS(9699), - [anon_sym_GT_GT_EQ] = ACTIONS(9699), - [anon_sym_AMP_EQ] = ACTIONS(9699), - [anon_sym_CARET_EQ] = ACTIONS(9699), - [anon_sym_PIPE_EQ] = ACTIONS(9699), - [anon_sym_and_eq] = ACTIONS(9697), - [anon_sym_or_eq] = ACTIONS(9697), - [anon_sym_xor_eq] = ACTIONS(9697), - [anon_sym_LT_EQ_GT] = ACTIONS(9699), - [anon_sym_or] = ACTIONS(9697), - [anon_sym_and] = ACTIONS(9697), - [anon_sym_bitor] = ACTIONS(9697), - [anon_sym_xor] = ACTIONS(9697), - [anon_sym_bitand] = ACTIONS(9697), - [anon_sym_not_eq] = ACTIONS(9697), - [anon_sym_DASH_DASH] = ACTIONS(9699), - [anon_sym_PLUS_PLUS] = ACTIONS(9699), - [anon_sym_DOT] = ACTIONS(9697), - [anon_sym_DOT_STAR] = ACTIONS(9699), - [anon_sym_DASH_GT] = ACTIONS(9699), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9699), - [anon_sym_LBRACK_RBRACK] = ACTIONS(9701), - }, - [STATE(3810)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym__declarator] = STATE(8816), - [sym__abstract_declarator] = STATE(9063), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(7086), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5327), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(7086), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8651), - [anon_sym_AMP_AMP] = ACTIONS(8653), - [anon_sym_AMP] = ACTIONS(8655), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(7347), - [anon_sym___attribute] = ACTIONS(7347), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_GT2] = ACTIONS(7345), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, [STATE(3811)] = { - [sym_identifier] = ACTIONS(8657), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8659), - [anon_sym_COMMA] = ACTIONS(8659), - [anon_sym_LPAREN2] = ACTIONS(8659), - [anon_sym_DASH] = ACTIONS(8657), - [anon_sym_PLUS] = ACTIONS(8657), - [anon_sym_STAR] = ACTIONS(8657), - [anon_sym_SLASH] = ACTIONS(8657), - [anon_sym_PERCENT] = ACTIONS(8657), - [anon_sym_PIPE_PIPE] = ACTIONS(8659), - [anon_sym_AMP_AMP] = ACTIONS(8659), - [anon_sym_PIPE] = ACTIONS(8657), - [anon_sym_CARET] = ACTIONS(8657), - [anon_sym_AMP] = ACTIONS(8657), - [anon_sym_EQ_EQ] = ACTIONS(8659), - [anon_sym_BANG_EQ] = ACTIONS(8659), - [anon_sym_GT] = ACTIONS(8657), - [anon_sym_GT_EQ] = ACTIONS(8659), - [anon_sym_LT_EQ] = ACTIONS(8657), - [anon_sym_LT] = ACTIONS(8657), - [anon_sym_LT_LT] = ACTIONS(8657), - [anon_sym_GT_GT] = ACTIONS(8657), - [anon_sym_SEMI] = ACTIONS(8659), - [anon_sym___attribute__] = ACTIONS(8657), - [anon_sym___attribute] = ACTIONS(8657), - [anon_sym_LBRACK] = ACTIONS(8659), - [anon_sym_EQ] = ACTIONS(8657), - [anon_sym_QMARK] = ACTIONS(8659), - [anon_sym_STAR_EQ] = ACTIONS(8659), - [anon_sym_SLASH_EQ] = ACTIONS(8659), - [anon_sym_PERCENT_EQ] = ACTIONS(8659), - [anon_sym_PLUS_EQ] = ACTIONS(8659), - [anon_sym_DASH_EQ] = ACTIONS(8659), - [anon_sym_LT_LT_EQ] = ACTIONS(8659), - [anon_sym_GT_GT_EQ] = ACTIONS(8659), - [anon_sym_AMP_EQ] = ACTIONS(8659), - [anon_sym_CARET_EQ] = ACTIONS(8659), - [anon_sym_PIPE_EQ] = ACTIONS(8659), - [anon_sym_and_eq] = ACTIONS(8657), - [anon_sym_or_eq] = ACTIONS(8657), - [anon_sym_xor_eq] = ACTIONS(8657), - [anon_sym_LT_EQ_GT] = ACTIONS(8659), - [anon_sym_or] = ACTIONS(8657), - [anon_sym_and] = ACTIONS(8657), - [anon_sym_bitor] = ACTIONS(8657), - [anon_sym_xor] = ACTIONS(8657), - [anon_sym_bitand] = ACTIONS(8657), - [anon_sym_not_eq] = ACTIONS(8657), - [anon_sym_DASH_DASH] = ACTIONS(8659), - [anon_sym_PLUS_PLUS] = ACTIONS(8659), - [anon_sym_DOT] = ACTIONS(8657), - [anon_sym_DOT_STAR] = ACTIONS(8659), - [anon_sym_DASH_GT] = ACTIONS(8659), - [anon_sym_L_DQUOTE] = ACTIONS(8659), - [anon_sym_u_DQUOTE] = ACTIONS(8659), - [anon_sym_U_DQUOTE] = ACTIONS(8659), - [anon_sym_u8_DQUOTE] = ACTIONS(8659), - [anon_sym_DQUOTE] = ACTIONS(8659), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8659), - [anon_sym_LR_DQUOTE] = ACTIONS(8659), - [anon_sym_uR_DQUOTE] = ACTIONS(8659), - [anon_sym_UR_DQUOTE] = ACTIONS(8659), - [anon_sym_u8R_DQUOTE] = ACTIONS(8659), - [sym_literal_suffix] = ACTIONS(8657), + [sym_identifier] = ACTIONS(7187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(7189), + [anon_sym_COMMA] = ACTIONS(7189), + [anon_sym_RPAREN] = ACTIONS(7189), + [anon_sym_LPAREN2] = ACTIONS(7189), + [anon_sym_STAR] = ACTIONS(7189), + [anon_sym_PIPE_PIPE] = ACTIONS(7189), + [anon_sym_AMP_AMP] = ACTIONS(7189), + [anon_sym_AMP] = ACTIONS(7187), + [anon_sym_LT] = ACTIONS(7189), + [anon_sym_SEMI] = ACTIONS(7189), + [anon_sym___extension__] = ACTIONS(7187), + [anon_sym_virtual] = ACTIONS(7187), + [anon_sym_extern] = ACTIONS(7187), + [anon_sym___attribute__] = ACTIONS(7187), + [anon_sym___attribute] = ACTIONS(7187), + [anon_sym_COLON] = ACTIONS(7187), + [anon_sym_COLON_COLON] = ACTIONS(7189), + [anon_sym_LBRACK_LBRACK] = ACTIONS(7189), + [anon_sym___declspec] = ACTIONS(7187), + [anon_sym___based] = ACTIONS(7187), + [anon_sym_LBRACE] = ACTIONS(7189), + [anon_sym_signed] = ACTIONS(7187), + [anon_sym_unsigned] = ACTIONS(7187), + [anon_sym_long] = ACTIONS(7187), + [anon_sym_short] = ACTIONS(7187), + [anon_sym_LBRACK] = ACTIONS(7187), + [anon_sym_static] = ACTIONS(7187), + [anon_sym_EQ] = ACTIONS(7189), + [anon_sym_register] = ACTIONS(7187), + [anon_sym_inline] = ACTIONS(7187), + [anon_sym___inline] = ACTIONS(7187), + [anon_sym___inline__] = ACTIONS(7187), + [anon_sym___forceinline] = ACTIONS(7187), + [anon_sym_thread_local] = ACTIONS(7187), + [anon_sym___thread] = ACTIONS(7187), + [anon_sym_const] = ACTIONS(7187), + [anon_sym_constexpr] = ACTIONS(7187), + [anon_sym_volatile] = ACTIONS(7187), + [anon_sym_restrict] = ACTIONS(7187), + [anon_sym___restrict__] = ACTIONS(7187), + [anon_sym__Atomic] = ACTIONS(7187), + [anon_sym__Noreturn] = ACTIONS(7187), + [anon_sym_noreturn] = ACTIONS(7187), + [anon_sym__Nonnull] = ACTIONS(7187), + [anon_sym_mutable] = ACTIONS(7187), + [anon_sym_constinit] = ACTIONS(7187), + [anon_sym_consteval] = ACTIONS(7187), + [anon_sym_alignas] = ACTIONS(7187), + [anon_sym__Alignas] = ACTIONS(7187), + [sym_primitive_type] = ACTIONS(7187), + [anon_sym_or] = ACTIONS(7187), + [anon_sym_and] = ACTIONS(7187), + [anon_sym_asm] = ACTIONS(7187), + [anon_sym___asm__] = ACTIONS(7187), + [anon_sym___asm] = ACTIONS(7187), + [anon_sym_DASH_GT] = ACTIONS(7189), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(7187), + [anon_sym_override] = ACTIONS(7187), + [anon_sym_GT2] = ACTIONS(7189), + [anon_sym_try] = ACTIONS(7187), + [anon_sym_noexcept] = ACTIONS(7187), + [anon_sym_throw] = ACTIONS(7187), + [anon_sym_requires] = ACTIONS(7187), }, [STATE(3812)] = { - [sym_identifier] = ACTIONS(8697), - [anon_sym_DOT_DOT_DOT] = ACTIONS(8699), - [anon_sym_COMMA] = ACTIONS(8699), - [anon_sym_LPAREN2] = ACTIONS(8699), - [anon_sym_DASH] = ACTIONS(8697), - [anon_sym_PLUS] = ACTIONS(8697), - [anon_sym_STAR] = ACTIONS(8697), - [anon_sym_SLASH] = ACTIONS(8697), - [anon_sym_PERCENT] = ACTIONS(8697), - [anon_sym_PIPE_PIPE] = ACTIONS(8699), - [anon_sym_AMP_AMP] = ACTIONS(8699), - [anon_sym_PIPE] = ACTIONS(8697), - [anon_sym_CARET] = ACTIONS(8697), - [anon_sym_AMP] = ACTIONS(8697), - [anon_sym_EQ_EQ] = ACTIONS(8699), - [anon_sym_BANG_EQ] = ACTIONS(8699), - [anon_sym_GT] = ACTIONS(8697), - [anon_sym_GT_EQ] = ACTIONS(8699), - [anon_sym_LT_EQ] = ACTIONS(8697), - [anon_sym_LT] = ACTIONS(8697), - [anon_sym_LT_LT] = ACTIONS(8697), - [anon_sym_GT_GT] = ACTIONS(8697), - [anon_sym_SEMI] = ACTIONS(8699), - [anon_sym___attribute__] = ACTIONS(8697), - [anon_sym___attribute] = ACTIONS(8697), - [anon_sym_LBRACK] = ACTIONS(8699), - [anon_sym_EQ] = ACTIONS(8697), - [anon_sym_QMARK] = ACTIONS(8699), - [anon_sym_STAR_EQ] = ACTIONS(8699), - [anon_sym_SLASH_EQ] = ACTIONS(8699), - [anon_sym_PERCENT_EQ] = ACTIONS(8699), - [anon_sym_PLUS_EQ] = ACTIONS(8699), - [anon_sym_DASH_EQ] = ACTIONS(8699), - [anon_sym_LT_LT_EQ] = ACTIONS(8699), - [anon_sym_GT_GT_EQ] = ACTIONS(8699), - [anon_sym_AMP_EQ] = ACTIONS(8699), - [anon_sym_CARET_EQ] = ACTIONS(8699), - [anon_sym_PIPE_EQ] = ACTIONS(8699), - [anon_sym_and_eq] = ACTIONS(8697), - [anon_sym_or_eq] = ACTIONS(8697), - [anon_sym_xor_eq] = ACTIONS(8697), - [anon_sym_LT_EQ_GT] = ACTIONS(8699), - [anon_sym_or] = ACTIONS(8697), - [anon_sym_and] = ACTIONS(8697), - [anon_sym_bitor] = ACTIONS(8697), - [anon_sym_xor] = ACTIONS(8697), - [anon_sym_bitand] = ACTIONS(8697), - [anon_sym_not_eq] = ACTIONS(8697), - [anon_sym_DASH_DASH] = ACTIONS(8699), - [anon_sym_PLUS_PLUS] = ACTIONS(8699), - [anon_sym_DOT] = ACTIONS(8697), - [anon_sym_DOT_STAR] = ACTIONS(8699), - [anon_sym_DASH_GT] = ACTIONS(8699), - [anon_sym_L_DQUOTE] = ACTIONS(8699), - [anon_sym_u_DQUOTE] = ACTIONS(8699), - [anon_sym_U_DQUOTE] = ACTIONS(8699), - [anon_sym_u8_DQUOTE] = ACTIONS(8699), - [anon_sym_DQUOTE] = ACTIONS(8699), - [sym_comment] = ACTIONS(3), - [anon_sym_R_DQUOTE] = ACTIONS(8699), - [anon_sym_LR_DQUOTE] = ACTIONS(8699), - [anon_sym_uR_DQUOTE] = ACTIONS(8699), - [anon_sym_UR_DQUOTE] = ACTIONS(8699), - [anon_sym_u8R_DQUOTE] = ACTIONS(8699), - [sym_literal_suffix] = ACTIONS(8697), - }, - [STATE(3813)] = { - [sym_template_argument_list] = STATE(2206), - [sym_identifier] = ACTIONS(9650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9652), - [anon_sym_COMMA] = ACTIONS(9652), - [anon_sym_RPAREN] = ACTIONS(9652), - [aux_sym_preproc_if_token2] = ACTIONS(9652), - [aux_sym_preproc_else_token1] = ACTIONS(9652), - [aux_sym_preproc_elif_token1] = ACTIONS(9650), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9652), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9652), - [anon_sym_LPAREN2] = ACTIONS(9652), - [anon_sym_DASH] = ACTIONS(9650), - [anon_sym_PLUS] = ACTIONS(9650), - [anon_sym_STAR] = ACTIONS(9650), - [anon_sym_SLASH] = ACTIONS(9650), - [anon_sym_PERCENT] = ACTIONS(9650), - [anon_sym_PIPE_PIPE] = ACTIONS(9652), - [anon_sym_AMP_AMP] = ACTIONS(9652), - [anon_sym_PIPE] = ACTIONS(9650), - [anon_sym_CARET] = ACTIONS(9650), - [anon_sym_AMP] = ACTIONS(9650), - [anon_sym_EQ_EQ] = ACTIONS(9652), - [anon_sym_BANG_EQ] = ACTIONS(9652), - [anon_sym_GT] = ACTIONS(9650), - [anon_sym_GT_EQ] = ACTIONS(9652), - [anon_sym_LT_EQ] = ACTIONS(9650), - [anon_sym_LT] = ACTIONS(9654), - [anon_sym_LT_LT] = ACTIONS(9650), - [anon_sym_GT_GT] = ACTIONS(9650), - [anon_sym_SEMI] = ACTIONS(9652), - [anon_sym___attribute__] = ACTIONS(9650), - [anon_sym___attribute] = ACTIONS(9650), - [anon_sym_COLON] = ACTIONS(9650), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9652), - [anon_sym_RBRACE] = ACTIONS(9652), - [anon_sym_LBRACK] = ACTIONS(9652), - [anon_sym_EQ] = ACTIONS(9650), - [anon_sym_QMARK] = ACTIONS(9652), - [anon_sym_STAR_EQ] = ACTIONS(9652), - [anon_sym_SLASH_EQ] = ACTIONS(9652), - [anon_sym_PERCENT_EQ] = ACTIONS(9652), - [anon_sym_PLUS_EQ] = ACTIONS(9652), - [anon_sym_DASH_EQ] = ACTIONS(9652), - [anon_sym_LT_LT_EQ] = ACTIONS(9652), - [anon_sym_GT_GT_EQ] = ACTIONS(9652), - [anon_sym_AMP_EQ] = ACTIONS(9652), - [anon_sym_CARET_EQ] = ACTIONS(9652), - [anon_sym_PIPE_EQ] = ACTIONS(9652), - [anon_sym_and_eq] = ACTIONS(9650), - [anon_sym_or_eq] = ACTIONS(9650), - [anon_sym_xor_eq] = ACTIONS(9650), - [anon_sym_LT_EQ_GT] = ACTIONS(9652), - [anon_sym_or] = ACTIONS(9650), - [anon_sym_and] = ACTIONS(9650), - [anon_sym_bitor] = ACTIONS(9650), - [anon_sym_xor] = ACTIONS(9650), - [anon_sym_bitand] = ACTIONS(9650), - [anon_sym_not_eq] = ACTIONS(9650), - [anon_sym_DASH_DASH] = ACTIONS(9652), - [anon_sym_PLUS_PLUS] = ACTIONS(9652), - [anon_sym_DOT] = ACTIONS(9650), - [anon_sym_DOT_STAR] = ACTIONS(9652), - [anon_sym_DASH_GT] = ACTIONS(9652), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9652), - }, - [STATE(3814)] = { - [sym_identifier] = ACTIONS(9703), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9705), - [anon_sym_COMMA] = ACTIONS(9705), - [anon_sym_RPAREN] = ACTIONS(9705), - [aux_sym_preproc_if_token2] = ACTIONS(9705), - [aux_sym_preproc_else_token1] = ACTIONS(9705), - [aux_sym_preproc_elif_token1] = ACTIONS(9703), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9705), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9705), - [anon_sym_LPAREN2] = ACTIONS(9705), - [anon_sym_DASH] = ACTIONS(9703), - [anon_sym_PLUS] = ACTIONS(9703), - [anon_sym_STAR] = ACTIONS(9703), - [anon_sym_SLASH] = ACTIONS(9703), - [anon_sym_PERCENT] = ACTIONS(9703), - [anon_sym_PIPE_PIPE] = ACTIONS(9705), - [anon_sym_AMP_AMP] = ACTIONS(9705), - [anon_sym_PIPE] = ACTIONS(9703), - [anon_sym_CARET] = ACTIONS(9703), - [anon_sym_AMP] = ACTIONS(9703), - [anon_sym_EQ_EQ] = ACTIONS(9705), - [anon_sym_BANG_EQ] = ACTIONS(9705), - [anon_sym_GT] = ACTIONS(9703), - [anon_sym_GT_EQ] = ACTIONS(9705), - [anon_sym_LT_EQ] = ACTIONS(9703), - [anon_sym_LT] = ACTIONS(9703), - [anon_sym_LT_LT] = ACTIONS(9703), - [anon_sym_GT_GT] = ACTIONS(9703), - [anon_sym_SEMI] = ACTIONS(9705), - [anon_sym___attribute__] = ACTIONS(9703), - [anon_sym___attribute] = ACTIONS(9703), - [anon_sym_COLON] = ACTIONS(9703), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9705), - [anon_sym_LBRACE] = ACTIONS(9705), - [anon_sym_RBRACE] = ACTIONS(9705), - [anon_sym_LBRACK] = ACTIONS(9705), - [anon_sym_EQ] = ACTIONS(9703), - [anon_sym_QMARK] = ACTIONS(9705), - [anon_sym_STAR_EQ] = ACTIONS(9705), - [anon_sym_SLASH_EQ] = ACTIONS(9705), - [anon_sym_PERCENT_EQ] = ACTIONS(9705), - [anon_sym_PLUS_EQ] = ACTIONS(9705), - [anon_sym_DASH_EQ] = ACTIONS(9705), - [anon_sym_LT_LT_EQ] = ACTIONS(9705), - [anon_sym_GT_GT_EQ] = ACTIONS(9705), - [anon_sym_AMP_EQ] = ACTIONS(9705), - [anon_sym_CARET_EQ] = ACTIONS(9705), - [anon_sym_PIPE_EQ] = ACTIONS(9705), - [anon_sym_and_eq] = ACTIONS(9703), - [anon_sym_or_eq] = ACTIONS(9703), - [anon_sym_xor_eq] = ACTIONS(9703), - [anon_sym_LT_EQ_GT] = ACTIONS(9705), - [anon_sym_or] = ACTIONS(9703), - [anon_sym_and] = ACTIONS(9703), - [anon_sym_bitor] = ACTIONS(9703), - [anon_sym_xor] = ACTIONS(9703), - [anon_sym_bitand] = ACTIONS(9703), - [anon_sym_not_eq] = ACTIONS(9703), - [anon_sym_DASH_DASH] = ACTIONS(9705), - [anon_sym_PLUS_PLUS] = ACTIONS(9705), - [anon_sym_DOT] = ACTIONS(9703), - [anon_sym_DOT_STAR] = ACTIONS(9705), - [anon_sym_DASH_GT] = ACTIONS(9705), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9705), - }, - [STATE(3815)] = { - [sym_argument_list] = STATE(3874), - [sym_subscript_argument_list] = STATE(3900), - [sym_identifier] = ACTIONS(9707), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9709), - [anon_sym_COMMA] = ACTIONS(9709), - [anon_sym_RPAREN] = ACTIONS(9709), - [aux_sym_preproc_if_token2] = ACTIONS(9709), - [aux_sym_preproc_else_token1] = ACTIONS(9709), - [aux_sym_preproc_elif_token1] = ACTIONS(9707), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9709), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9709), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9707), - [anon_sym_PLUS] = ACTIONS(9707), - [anon_sym_STAR] = ACTIONS(9707), - [anon_sym_SLASH] = ACTIONS(9707), - [anon_sym_PERCENT] = ACTIONS(9707), - [anon_sym_PIPE_PIPE] = ACTIONS(9709), - [anon_sym_AMP_AMP] = ACTIONS(9709), - [anon_sym_PIPE] = ACTIONS(9707), - [anon_sym_CARET] = ACTIONS(9707), - [anon_sym_AMP] = ACTIONS(9707), - [anon_sym_EQ_EQ] = ACTIONS(9709), - [anon_sym_BANG_EQ] = ACTIONS(9709), - [anon_sym_GT] = ACTIONS(9707), - [anon_sym_GT_EQ] = ACTIONS(9709), - [anon_sym_LT_EQ] = ACTIONS(9707), - [anon_sym_LT] = ACTIONS(9707), - [anon_sym_LT_LT] = ACTIONS(9707), - [anon_sym_GT_GT] = ACTIONS(9707), - [anon_sym_SEMI] = ACTIONS(9709), - [anon_sym___attribute__] = ACTIONS(9707), - [anon_sym___attribute] = ACTIONS(9707), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9709), - [anon_sym_RBRACE] = ACTIONS(9709), - [anon_sym_LBRACK] = ACTIONS(9642), - [anon_sym_EQ] = ACTIONS(9707), - [anon_sym_QMARK] = ACTIONS(9709), - [anon_sym_STAR_EQ] = ACTIONS(9709), - [anon_sym_SLASH_EQ] = ACTIONS(9709), - [anon_sym_PERCENT_EQ] = ACTIONS(9709), - [anon_sym_PLUS_EQ] = ACTIONS(9709), - [anon_sym_DASH_EQ] = ACTIONS(9709), - [anon_sym_LT_LT_EQ] = ACTIONS(9709), - [anon_sym_GT_GT_EQ] = ACTIONS(9709), - [anon_sym_AMP_EQ] = ACTIONS(9709), - [anon_sym_CARET_EQ] = ACTIONS(9709), - [anon_sym_PIPE_EQ] = ACTIONS(9709), - [anon_sym_and_eq] = ACTIONS(9707), - [anon_sym_or_eq] = ACTIONS(9707), - [anon_sym_xor_eq] = ACTIONS(9707), - [anon_sym_LT_EQ_GT] = ACTIONS(9709), - [anon_sym_or] = ACTIONS(9707), - [anon_sym_and] = ACTIONS(9707), - [anon_sym_bitor] = ACTIONS(9707), - [anon_sym_xor] = ACTIONS(9707), - [anon_sym_bitand] = ACTIONS(9707), - [anon_sym_not_eq] = ACTIONS(9707), - [anon_sym_DASH_DASH] = ACTIONS(9644), - [anon_sym_PLUS_PLUS] = ACTIONS(9644), - [anon_sym_DOT] = ACTIONS(9646), - [anon_sym_DOT_STAR] = ACTIONS(9648), - [anon_sym_DASH_GT] = ACTIONS(9648), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9709), - }, - [STATE(3816)] = { - [sym_template_argument_list] = STATE(3740), - [sym_identifier] = ACTIONS(9650), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9652), - [anon_sym_COMMA] = ACTIONS(9652), - [anon_sym_RPAREN] = ACTIONS(9652), - [aux_sym_preproc_if_token2] = ACTIONS(9652), - [aux_sym_preproc_else_token1] = ACTIONS(9652), - [aux_sym_preproc_elif_token1] = ACTIONS(9650), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9652), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9652), - [anon_sym_LPAREN2] = ACTIONS(9652), - [anon_sym_DASH] = ACTIONS(9650), - [anon_sym_PLUS] = ACTIONS(9650), - [anon_sym_STAR] = ACTIONS(9650), - [anon_sym_SLASH] = ACTIONS(9650), - [anon_sym_PERCENT] = ACTIONS(9650), - [anon_sym_PIPE_PIPE] = ACTIONS(9652), - [anon_sym_AMP_AMP] = ACTIONS(9652), - [anon_sym_PIPE] = ACTIONS(9650), - [anon_sym_CARET] = ACTIONS(9650), - [anon_sym_AMP] = ACTIONS(9650), - [anon_sym_EQ_EQ] = ACTIONS(9652), - [anon_sym_BANG_EQ] = ACTIONS(9652), - [anon_sym_GT] = ACTIONS(9650), - [anon_sym_GT_EQ] = ACTIONS(9652), - [anon_sym_LT_EQ] = ACTIONS(9650), - [anon_sym_LT] = ACTIONS(9654), - [anon_sym_LT_LT] = ACTIONS(9650), - [anon_sym_GT_GT] = ACTIONS(9650), - [anon_sym_SEMI] = ACTIONS(9652), - [anon_sym___attribute__] = ACTIONS(9650), - [anon_sym___attribute] = ACTIONS(9650), - [anon_sym_COLON] = ACTIONS(9650), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9652), - [anon_sym_RBRACE] = ACTIONS(9652), - [anon_sym_LBRACK] = ACTIONS(9652), - [anon_sym_EQ] = ACTIONS(9650), - [anon_sym_QMARK] = ACTIONS(9652), - [anon_sym_STAR_EQ] = ACTIONS(9652), - [anon_sym_SLASH_EQ] = ACTIONS(9652), - [anon_sym_PERCENT_EQ] = ACTIONS(9652), - [anon_sym_PLUS_EQ] = ACTIONS(9652), - [anon_sym_DASH_EQ] = ACTIONS(9652), - [anon_sym_LT_LT_EQ] = ACTIONS(9652), - [anon_sym_GT_GT_EQ] = ACTIONS(9652), - [anon_sym_AMP_EQ] = ACTIONS(9652), - [anon_sym_CARET_EQ] = ACTIONS(9652), - [anon_sym_PIPE_EQ] = ACTIONS(9652), - [anon_sym_and_eq] = ACTIONS(9650), - [anon_sym_or_eq] = ACTIONS(9650), - [anon_sym_xor_eq] = ACTIONS(9650), - [anon_sym_LT_EQ_GT] = ACTIONS(9652), - [anon_sym_or] = ACTIONS(9650), - [anon_sym_and] = ACTIONS(9650), - [anon_sym_bitor] = ACTIONS(9650), - [anon_sym_xor] = ACTIONS(9650), - [anon_sym_bitand] = ACTIONS(9650), - [anon_sym_not_eq] = ACTIONS(9650), - [anon_sym_DASH_DASH] = ACTIONS(9652), - [anon_sym_PLUS_PLUS] = ACTIONS(9652), - [anon_sym_DOT] = ACTIONS(9650), - [anon_sym_DOT_STAR] = ACTIONS(9652), - [anon_sym_DASH_GT] = ACTIONS(9652), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9652), - }, - [STATE(3817)] = { - [sym_identifier] = ACTIONS(9711), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9713), - [anon_sym_COMMA] = ACTIONS(9713), - [anon_sym_RPAREN] = ACTIONS(9713), - [aux_sym_preproc_if_token2] = ACTIONS(9713), - [aux_sym_preproc_else_token1] = ACTIONS(9713), - [aux_sym_preproc_elif_token1] = ACTIONS(9711), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9713), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9713), - [anon_sym_LPAREN2] = ACTIONS(9713), - [anon_sym_DASH] = ACTIONS(9711), - [anon_sym_PLUS] = ACTIONS(9711), - [anon_sym_STAR] = ACTIONS(9711), - [anon_sym_SLASH] = ACTIONS(9711), - [anon_sym_PERCENT] = ACTIONS(9711), - [anon_sym_PIPE_PIPE] = ACTIONS(9713), - [anon_sym_AMP_AMP] = ACTIONS(9713), - [anon_sym_PIPE] = ACTIONS(9711), - [anon_sym_CARET] = ACTIONS(9711), - [anon_sym_AMP] = ACTIONS(9711), - [anon_sym_EQ_EQ] = ACTIONS(9713), - [anon_sym_BANG_EQ] = ACTIONS(9713), - [anon_sym_GT] = ACTIONS(9711), - [anon_sym_GT_EQ] = ACTIONS(9713), - [anon_sym_LT_EQ] = ACTIONS(9711), - [anon_sym_LT] = ACTIONS(9711), - [anon_sym_LT_LT] = ACTIONS(9711), - [anon_sym_GT_GT] = ACTIONS(9711), - [anon_sym_SEMI] = ACTIONS(9713), - [anon_sym___attribute__] = ACTIONS(9711), - [anon_sym___attribute] = ACTIONS(9711), - [anon_sym_COLON] = ACTIONS(9711), - [anon_sym_COLON_COLON] = ACTIONS(7227), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9713), - [anon_sym_RBRACE] = ACTIONS(9713), - [anon_sym_LBRACK] = ACTIONS(9713), - [anon_sym_EQ] = ACTIONS(9711), - [anon_sym_QMARK] = ACTIONS(9713), - [anon_sym_STAR_EQ] = ACTIONS(9713), - [anon_sym_SLASH_EQ] = ACTIONS(9713), - [anon_sym_PERCENT_EQ] = ACTIONS(9713), - [anon_sym_PLUS_EQ] = ACTIONS(9713), - [anon_sym_DASH_EQ] = ACTIONS(9713), - [anon_sym_LT_LT_EQ] = ACTIONS(9713), - [anon_sym_GT_GT_EQ] = ACTIONS(9713), - [anon_sym_AMP_EQ] = ACTIONS(9713), - [anon_sym_CARET_EQ] = ACTIONS(9713), - [anon_sym_PIPE_EQ] = ACTIONS(9713), - [anon_sym_and_eq] = ACTIONS(9711), - [anon_sym_or_eq] = ACTIONS(9711), - [anon_sym_xor_eq] = ACTIONS(9711), - [anon_sym_LT_EQ_GT] = ACTIONS(9713), - [anon_sym_or] = ACTIONS(9711), - [anon_sym_and] = ACTIONS(9711), - [anon_sym_bitor] = ACTIONS(9711), - [anon_sym_xor] = ACTIONS(9711), - [anon_sym_bitand] = ACTIONS(9711), - [anon_sym_not_eq] = ACTIONS(9711), - [anon_sym_DASH_DASH] = ACTIONS(9713), - [anon_sym_PLUS_PLUS] = ACTIONS(9713), - [anon_sym_DOT] = ACTIONS(9711), - [anon_sym_DOT_STAR] = ACTIONS(9713), - [anon_sym_DASH_GT] = ACTIONS(9713), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9713), - }, - [STATE(3818)] = { - [sym_attribute_specifier] = STATE(4056), - [sym_enumerator_list] = STATE(3829), + [sym_attribute_specifier] = STATE(4131), + [sym_enumerator_list] = STATE(3934), [sym_identifier] = ACTIONS(7381), [anon_sym_DOT_DOT_DOT] = ACTIONS(7383), [anon_sym_COMMA] = ACTIONS(7383), @@ -451425,9 +450849,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT] = ACTIONS(7383), [anon_sym_GT_GT] = ACTIONS(7383), [anon_sym___extension__] = ACTIONS(7381), - [anon_sym___attribute__] = ACTIONS(9244), - [anon_sym___attribute] = ACTIONS(9244), - [anon_sym_LBRACE] = ACTIONS(9413), + [anon_sym___attribute__] = ACTIONS(9211), + [anon_sym___attribute] = ACTIONS(9211), + [anon_sym_LBRACE] = ACTIONS(9291), [anon_sym_LBRACK] = ACTIONS(7383), [anon_sym_const] = ACTIONS(7381), [anon_sym_constexpr] = ACTIONS(7381), @@ -451461,474 +450885,608 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_override] = ACTIONS(7381), [anon_sym_requires] = ACTIONS(7381), }, + [STATE(3813)] = { + [sym_argument_list] = STATE(3849), + [sym_subscript_argument_list] = STATE(3850), + [sym_identifier] = ACTIONS(9698), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9700), + [anon_sym_COMMA] = ACTIONS(9700), + [anon_sym_RPAREN] = ACTIONS(9700), + [aux_sym_preproc_if_token2] = ACTIONS(9700), + [aux_sym_preproc_else_token1] = ACTIONS(9700), + [aux_sym_preproc_elif_token1] = ACTIONS(9698), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9700), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9700), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9698), + [anon_sym_PLUS] = ACTIONS(9698), + [anon_sym_STAR] = ACTIONS(9698), + [anon_sym_SLASH] = ACTIONS(9698), + [anon_sym_PERCENT] = ACTIONS(9698), + [anon_sym_PIPE_PIPE] = ACTIONS(9700), + [anon_sym_AMP_AMP] = ACTIONS(9700), + [anon_sym_PIPE] = ACTIONS(9698), + [anon_sym_CARET] = ACTIONS(9698), + [anon_sym_AMP] = ACTIONS(9698), + [anon_sym_EQ_EQ] = ACTIONS(9700), + [anon_sym_BANG_EQ] = ACTIONS(9700), + [anon_sym_GT] = ACTIONS(9698), + [anon_sym_GT_EQ] = ACTIONS(9700), + [anon_sym_LT_EQ] = ACTIONS(9698), + [anon_sym_LT] = ACTIONS(9698), + [anon_sym_LT_LT] = ACTIONS(9698), + [anon_sym_GT_GT] = ACTIONS(9698), + [anon_sym_SEMI] = ACTIONS(9700), + [anon_sym___attribute__] = ACTIONS(9698), + [anon_sym___attribute] = ACTIONS(9698), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9700), + [anon_sym_RBRACE] = ACTIONS(9700), + [anon_sym_LBRACK] = ACTIONS(9625), + [anon_sym_EQ] = ACTIONS(9698), + [anon_sym_QMARK] = ACTIONS(9700), + [anon_sym_STAR_EQ] = ACTIONS(9700), + [anon_sym_SLASH_EQ] = ACTIONS(9700), + [anon_sym_PERCENT_EQ] = ACTIONS(9700), + [anon_sym_PLUS_EQ] = ACTIONS(9700), + [anon_sym_DASH_EQ] = ACTIONS(9700), + [anon_sym_LT_LT_EQ] = ACTIONS(9700), + [anon_sym_GT_GT_EQ] = ACTIONS(9700), + [anon_sym_AMP_EQ] = ACTIONS(9700), + [anon_sym_CARET_EQ] = ACTIONS(9700), + [anon_sym_PIPE_EQ] = ACTIONS(9700), + [anon_sym_and_eq] = ACTIONS(9698), + [anon_sym_or_eq] = ACTIONS(9698), + [anon_sym_xor_eq] = ACTIONS(9698), + [anon_sym_LT_EQ_GT] = ACTIONS(9700), + [anon_sym_or] = ACTIONS(9698), + [anon_sym_and] = ACTIONS(9698), + [anon_sym_bitor] = ACTIONS(9698), + [anon_sym_xor] = ACTIONS(9698), + [anon_sym_bitand] = ACTIONS(9698), + [anon_sym_not_eq] = ACTIONS(9698), + [anon_sym_DASH_DASH] = ACTIONS(9627), + [anon_sym_PLUS_PLUS] = ACTIONS(9627), + [anon_sym_DOT] = ACTIONS(9629), + [anon_sym_DOT_STAR] = ACTIONS(9631), + [anon_sym_DASH_GT] = ACTIONS(9631), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9700), + }, + [STATE(3814)] = { + [sym_argument_list] = STATE(3849), + [sym_subscript_argument_list] = STATE(3850), + [sym_identifier] = ACTIONS(9702), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9704), + [anon_sym_COMMA] = ACTIONS(9704), + [anon_sym_RPAREN] = ACTIONS(9704), + [aux_sym_preproc_if_token2] = ACTIONS(9704), + [aux_sym_preproc_else_token1] = ACTIONS(9704), + [aux_sym_preproc_elif_token1] = ACTIONS(9702), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9704), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9704), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9702), + [anon_sym_PLUS] = ACTIONS(9702), + [anon_sym_STAR] = ACTIONS(9702), + [anon_sym_SLASH] = ACTIONS(9702), + [anon_sym_PERCENT] = ACTIONS(9702), + [anon_sym_PIPE_PIPE] = ACTIONS(9704), + [anon_sym_AMP_AMP] = ACTIONS(9704), + [anon_sym_PIPE] = ACTIONS(9702), + [anon_sym_CARET] = ACTIONS(9702), + [anon_sym_AMP] = ACTIONS(9702), + [anon_sym_EQ_EQ] = ACTIONS(9704), + [anon_sym_BANG_EQ] = ACTIONS(9704), + [anon_sym_GT] = ACTIONS(9702), + [anon_sym_GT_EQ] = ACTIONS(9704), + [anon_sym_LT_EQ] = ACTIONS(9702), + [anon_sym_LT] = ACTIONS(9702), + [anon_sym_LT_LT] = ACTIONS(9702), + [anon_sym_GT_GT] = ACTIONS(9702), + [anon_sym_SEMI] = ACTIONS(9704), + [anon_sym___attribute__] = ACTIONS(9702), + [anon_sym___attribute] = ACTIONS(9702), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9704), + [anon_sym_RBRACE] = ACTIONS(9704), + [anon_sym_LBRACK] = ACTIONS(9625), + [anon_sym_EQ] = ACTIONS(9702), + [anon_sym_QMARK] = ACTIONS(9704), + [anon_sym_STAR_EQ] = ACTIONS(9704), + [anon_sym_SLASH_EQ] = ACTIONS(9704), + [anon_sym_PERCENT_EQ] = ACTIONS(9704), + [anon_sym_PLUS_EQ] = ACTIONS(9704), + [anon_sym_DASH_EQ] = ACTIONS(9704), + [anon_sym_LT_LT_EQ] = ACTIONS(9704), + [anon_sym_GT_GT_EQ] = ACTIONS(9704), + [anon_sym_AMP_EQ] = ACTIONS(9704), + [anon_sym_CARET_EQ] = ACTIONS(9704), + [anon_sym_PIPE_EQ] = ACTIONS(9704), + [anon_sym_and_eq] = ACTIONS(9702), + [anon_sym_or_eq] = ACTIONS(9702), + [anon_sym_xor_eq] = ACTIONS(9702), + [anon_sym_LT_EQ_GT] = ACTIONS(9704), + [anon_sym_or] = ACTIONS(9702), + [anon_sym_and] = ACTIONS(9702), + [anon_sym_bitor] = ACTIONS(9702), + [anon_sym_xor] = ACTIONS(9702), + [anon_sym_bitand] = ACTIONS(9702), + [anon_sym_not_eq] = ACTIONS(9702), + [anon_sym_DASH_DASH] = ACTIONS(9627), + [anon_sym_PLUS_PLUS] = ACTIONS(9627), + [anon_sym_DOT] = ACTIONS(9629), + [anon_sym_DOT_STAR] = ACTIONS(9631), + [anon_sym_DASH_GT] = ACTIONS(9631), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9704), + }, + [STATE(3815)] = { + [sym_identifier] = ACTIONS(9581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9583), + [anon_sym_COMMA] = ACTIONS(9583), + [anon_sym_RPAREN] = ACTIONS(9583), + [aux_sym_preproc_if_token2] = ACTIONS(9583), + [aux_sym_preproc_else_token1] = ACTIONS(9583), + [aux_sym_preproc_elif_token1] = ACTIONS(9581), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9583), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9583), + [anon_sym_LPAREN2] = ACTIONS(9583), + [anon_sym_DASH] = ACTIONS(9581), + [anon_sym_PLUS] = ACTIONS(9581), + [anon_sym_STAR] = ACTIONS(9581), + [anon_sym_SLASH] = ACTIONS(9581), + [anon_sym_PERCENT] = ACTIONS(9581), + [anon_sym_PIPE_PIPE] = ACTIONS(9583), + [anon_sym_AMP_AMP] = ACTIONS(9583), + [anon_sym_PIPE] = ACTIONS(9581), + [anon_sym_CARET] = ACTIONS(9581), + [anon_sym_AMP] = ACTIONS(9581), + [anon_sym_EQ_EQ] = ACTIONS(9583), + [anon_sym_BANG_EQ] = ACTIONS(9583), + [anon_sym_GT] = ACTIONS(9581), + [anon_sym_GT_EQ] = ACTIONS(9583), + [anon_sym_LT_EQ] = ACTIONS(9581), + [anon_sym_LT] = ACTIONS(9581), + [anon_sym_LT_LT] = ACTIONS(9581), + [anon_sym_GT_GT] = ACTIONS(9581), + [anon_sym_SEMI] = ACTIONS(9583), + [anon_sym___attribute__] = ACTIONS(9581), + [anon_sym___attribute] = ACTIONS(9581), + [anon_sym_COLON] = ACTIONS(9581), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9583), + [anon_sym_LBRACE] = ACTIONS(9583), + [anon_sym_RBRACE] = ACTIONS(9583), + [anon_sym_LBRACK] = ACTIONS(9583), + [anon_sym_EQ] = ACTIONS(9581), + [anon_sym_QMARK] = ACTIONS(9583), + [anon_sym_STAR_EQ] = ACTIONS(9583), + [anon_sym_SLASH_EQ] = ACTIONS(9583), + [anon_sym_PERCENT_EQ] = ACTIONS(9583), + [anon_sym_PLUS_EQ] = ACTIONS(9583), + [anon_sym_DASH_EQ] = ACTIONS(9583), + [anon_sym_LT_LT_EQ] = ACTIONS(9583), + [anon_sym_GT_GT_EQ] = ACTIONS(9583), + [anon_sym_AMP_EQ] = ACTIONS(9583), + [anon_sym_CARET_EQ] = ACTIONS(9583), + [anon_sym_PIPE_EQ] = ACTIONS(9583), + [anon_sym_and_eq] = ACTIONS(9581), + [anon_sym_or_eq] = ACTIONS(9581), + [anon_sym_xor_eq] = ACTIONS(9581), + [anon_sym_LT_EQ_GT] = ACTIONS(9583), + [anon_sym_or] = ACTIONS(9581), + [anon_sym_and] = ACTIONS(9581), + [anon_sym_bitor] = ACTIONS(9581), + [anon_sym_xor] = ACTIONS(9581), + [anon_sym_bitand] = ACTIONS(9581), + [anon_sym_not_eq] = ACTIONS(9581), + [anon_sym_DASH_DASH] = ACTIONS(9583), + [anon_sym_PLUS_PLUS] = ACTIONS(9583), + [anon_sym_DOT] = ACTIONS(9581), + [anon_sym_DOT_STAR] = ACTIONS(9583), + [anon_sym_DASH_GT] = ACTIONS(9583), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9583), + }, + [STATE(3816)] = { + [sym_attribute_specifier] = STATE(3816), + [aux_sym_type_definition_repeat1] = STATE(3816), + [anon_sym_DOT_DOT_DOT] = ACTIONS(6966), + [anon_sym_COMMA] = ACTIONS(6966), + [anon_sym_LPAREN2] = ACTIONS(6966), + [anon_sym_DASH] = ACTIONS(6964), + [anon_sym_PLUS] = ACTIONS(6964), + [anon_sym_STAR] = ACTIONS(6966), + [anon_sym_SLASH] = ACTIONS(6964), + [anon_sym_PERCENT] = ACTIONS(6966), + [anon_sym_PIPE_PIPE] = ACTIONS(6966), + [anon_sym_AMP_AMP] = ACTIONS(6966), + [anon_sym_PIPE] = ACTIONS(6964), + [anon_sym_CARET] = ACTIONS(6966), + [anon_sym_AMP] = ACTIONS(6964), + [anon_sym_EQ_EQ] = ACTIONS(6966), + [anon_sym_BANG_EQ] = ACTIONS(6966), + [anon_sym_GT] = ACTIONS(6964), + [anon_sym_GT_EQ] = ACTIONS(6966), + [anon_sym_LT_EQ] = ACTIONS(6964), + [anon_sym_LT] = ACTIONS(6964), + [anon_sym_LT_LT] = ACTIONS(6966), + [anon_sym_GT_GT] = ACTIONS(6966), + [anon_sym___extension__] = ACTIONS(6966), + [anon_sym___attribute__] = ACTIONS(9706), + [anon_sym___attribute] = ACTIONS(9709), + [anon_sym_LBRACK_LBRACK] = ACTIONS(6966), + [anon_sym_LBRACK] = ACTIONS(6964), + [anon_sym_RBRACK] = ACTIONS(6966), + [anon_sym_const] = ACTIONS(6964), + [anon_sym_constexpr] = ACTIONS(6966), + [anon_sym_volatile] = ACTIONS(6966), + [anon_sym_restrict] = ACTIONS(6966), + [anon_sym___restrict__] = ACTIONS(6966), + [anon_sym__Atomic] = ACTIONS(6966), + [anon_sym__Noreturn] = ACTIONS(6966), + [anon_sym_noreturn] = ACTIONS(6966), + [anon_sym__Nonnull] = ACTIONS(6966), + [anon_sym_mutable] = ACTIONS(6966), + [anon_sym_constinit] = ACTIONS(6966), + [anon_sym_consteval] = ACTIONS(6966), + [anon_sym_alignas] = ACTIONS(6966), + [anon_sym__Alignas] = ACTIONS(6966), + [anon_sym_QMARK] = ACTIONS(6966), + [anon_sym_LT_EQ_GT] = ACTIONS(6966), + [anon_sym_or] = ACTIONS(6966), + [anon_sym_and] = ACTIONS(6966), + [anon_sym_bitor] = ACTIONS(6966), + [anon_sym_xor] = ACTIONS(6966), + [anon_sym_bitand] = ACTIONS(6966), + [anon_sym_not_eq] = ACTIONS(6966), + [anon_sym_DASH_DASH] = ACTIONS(6966), + [anon_sym_PLUS_PLUS] = ACTIONS(6966), + [anon_sym_asm] = ACTIONS(6966), + [anon_sym___asm__] = ACTIONS(6966), + [anon_sym___asm] = ACTIONS(6964), + [anon_sym_DOT] = ACTIONS(6964), + [anon_sym_DOT_STAR] = ACTIONS(6966), + [anon_sym_DASH_GT] = ACTIONS(6966), + [sym_comment] = ACTIONS(3), + [anon_sym_final] = ACTIONS(6966), + [anon_sym_override] = ACTIONS(6966), + [anon_sym_noexcept] = ACTIONS(6966), + [anon_sym_throw] = ACTIONS(6966), + [anon_sym_requires] = ACTIONS(6966), + }, + [STATE(3817)] = { + [sym_identifier] = ACTIONS(9581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9583), + [anon_sym_COMMA] = ACTIONS(9583), + [anon_sym_RPAREN] = ACTIONS(9583), + [aux_sym_preproc_if_token2] = ACTIONS(9583), + [aux_sym_preproc_else_token1] = ACTIONS(9583), + [aux_sym_preproc_elif_token1] = ACTIONS(9581), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9583), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9583), + [anon_sym_LPAREN2] = ACTIONS(9583), + [anon_sym_DASH] = ACTIONS(9581), + [anon_sym_PLUS] = ACTIONS(9581), + [anon_sym_STAR] = ACTIONS(9581), + [anon_sym_SLASH] = ACTIONS(9581), + [anon_sym_PERCENT] = ACTIONS(9581), + [anon_sym_PIPE_PIPE] = ACTIONS(9583), + [anon_sym_AMP_AMP] = ACTIONS(9583), + [anon_sym_PIPE] = ACTIONS(9581), + [anon_sym_CARET] = ACTIONS(9581), + [anon_sym_AMP] = ACTIONS(9581), + [anon_sym_EQ_EQ] = ACTIONS(9583), + [anon_sym_BANG_EQ] = ACTIONS(9583), + [anon_sym_GT] = ACTIONS(9581), + [anon_sym_GT_EQ] = ACTIONS(9583), + [anon_sym_LT_EQ] = ACTIONS(9581), + [anon_sym_LT] = ACTIONS(9581), + [anon_sym_LT_LT] = ACTIONS(9581), + [anon_sym_GT_GT] = ACTIONS(9581), + [anon_sym_SEMI] = ACTIONS(9583), + [anon_sym___attribute__] = ACTIONS(9581), + [anon_sym___attribute] = ACTIONS(9581), + [anon_sym_COLON] = ACTIONS(9581), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9583), + [anon_sym_LBRACE] = ACTIONS(9583), + [anon_sym_RBRACE] = ACTIONS(9583), + [anon_sym_LBRACK] = ACTIONS(9583), + [anon_sym_EQ] = ACTIONS(9581), + [anon_sym_QMARK] = ACTIONS(9583), + [anon_sym_STAR_EQ] = ACTIONS(9583), + [anon_sym_SLASH_EQ] = ACTIONS(9583), + [anon_sym_PERCENT_EQ] = ACTIONS(9583), + [anon_sym_PLUS_EQ] = ACTIONS(9583), + [anon_sym_DASH_EQ] = ACTIONS(9583), + [anon_sym_LT_LT_EQ] = ACTIONS(9583), + [anon_sym_GT_GT_EQ] = ACTIONS(9583), + [anon_sym_AMP_EQ] = ACTIONS(9583), + [anon_sym_CARET_EQ] = ACTIONS(9583), + [anon_sym_PIPE_EQ] = ACTIONS(9583), + [anon_sym_and_eq] = ACTIONS(9581), + [anon_sym_or_eq] = ACTIONS(9581), + [anon_sym_xor_eq] = ACTIONS(9581), + [anon_sym_LT_EQ_GT] = ACTIONS(9583), + [anon_sym_or] = ACTIONS(9581), + [anon_sym_and] = ACTIONS(9581), + [anon_sym_bitor] = ACTIONS(9581), + [anon_sym_xor] = ACTIONS(9581), + [anon_sym_bitand] = ACTIONS(9581), + [anon_sym_not_eq] = ACTIONS(9581), + [anon_sym_DASH_DASH] = ACTIONS(9583), + [anon_sym_PLUS_PLUS] = ACTIONS(9583), + [anon_sym_DOT] = ACTIONS(9581), + [anon_sym_DOT_STAR] = ACTIONS(9583), + [anon_sym_DASH_GT] = ACTIONS(9583), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9583), + }, + [STATE(3818)] = { + [sym_identifier] = ACTIONS(9712), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9714), + [anon_sym_COMMA] = ACTIONS(9714), + [anon_sym_RPAREN] = ACTIONS(9714), + [aux_sym_preproc_if_token2] = ACTIONS(9714), + [aux_sym_preproc_else_token1] = ACTIONS(9714), + [aux_sym_preproc_elif_token1] = ACTIONS(9712), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9714), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9714), + [anon_sym_LPAREN2] = ACTIONS(9714), + [anon_sym_DASH] = ACTIONS(9712), + [anon_sym_PLUS] = ACTIONS(9712), + [anon_sym_STAR] = ACTIONS(9712), + [anon_sym_SLASH] = ACTIONS(9712), + [anon_sym_PERCENT] = ACTIONS(9712), + [anon_sym_PIPE_PIPE] = ACTIONS(9714), + [anon_sym_AMP_AMP] = ACTIONS(9714), + [anon_sym_PIPE] = ACTIONS(9712), + [anon_sym_CARET] = ACTIONS(9712), + [anon_sym_AMP] = ACTIONS(9712), + [anon_sym_EQ_EQ] = ACTIONS(9714), + [anon_sym_BANG_EQ] = ACTIONS(9714), + [anon_sym_GT] = ACTIONS(9712), + [anon_sym_GT_EQ] = ACTIONS(9714), + [anon_sym_LT_EQ] = ACTIONS(9712), + [anon_sym_LT] = ACTIONS(9712), + [anon_sym_LT_LT] = ACTIONS(9712), + [anon_sym_GT_GT] = ACTIONS(9712), + [anon_sym_SEMI] = ACTIONS(9714), + [anon_sym___attribute__] = ACTIONS(9712), + [anon_sym___attribute] = ACTIONS(9712), + [anon_sym_COLON] = ACTIONS(9712), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9714), + [anon_sym_LBRACE] = ACTIONS(9714), + [anon_sym_RBRACE] = ACTIONS(9714), + [anon_sym_LBRACK] = ACTIONS(9714), + [anon_sym_EQ] = ACTIONS(9712), + [anon_sym_QMARK] = ACTIONS(9714), + [anon_sym_STAR_EQ] = ACTIONS(9714), + [anon_sym_SLASH_EQ] = ACTIONS(9714), + [anon_sym_PERCENT_EQ] = ACTIONS(9714), + [anon_sym_PLUS_EQ] = ACTIONS(9714), + [anon_sym_DASH_EQ] = ACTIONS(9714), + [anon_sym_LT_LT_EQ] = ACTIONS(9714), + [anon_sym_GT_GT_EQ] = ACTIONS(9714), + [anon_sym_AMP_EQ] = ACTIONS(9714), + [anon_sym_CARET_EQ] = ACTIONS(9714), + [anon_sym_PIPE_EQ] = ACTIONS(9714), + [anon_sym_and_eq] = ACTIONS(9712), + [anon_sym_or_eq] = ACTIONS(9712), + [anon_sym_xor_eq] = ACTIONS(9712), + [anon_sym_LT_EQ_GT] = ACTIONS(9714), + [anon_sym_or] = ACTIONS(9712), + [anon_sym_and] = ACTIONS(9712), + [anon_sym_bitor] = ACTIONS(9712), + [anon_sym_xor] = ACTIONS(9712), + [anon_sym_bitand] = ACTIONS(9712), + [anon_sym_not_eq] = ACTIONS(9712), + [anon_sym_DASH_DASH] = ACTIONS(9714), + [anon_sym_PLUS_PLUS] = ACTIONS(9714), + [anon_sym_DOT] = ACTIONS(9712), + [anon_sym_DOT_STAR] = ACTIONS(9714), + [anon_sym_DASH_GT] = ACTIONS(9714), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9714), + }, [STATE(3819)] = { - [sym_decltype_auto] = STATE(4121), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7225), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(7225), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_RBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - [sym_auto] = ACTIONS(9585), - [anon_sym_decltype] = ACTIONS(6813), - [anon_sym_final] = ACTIONS(7223), - [anon_sym_override] = ACTIONS(7223), - [anon_sym_requires] = ACTIONS(7223), + [sym_argument_list] = STATE(3849), + [sym_subscript_argument_list] = STATE(3850), + [sym_identifier] = ACTIONS(9716), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9718), + [anon_sym_COMMA] = ACTIONS(9718), + [anon_sym_RPAREN] = ACTIONS(9718), + [aux_sym_preproc_if_token2] = ACTIONS(9718), + [aux_sym_preproc_else_token1] = ACTIONS(9718), + [aux_sym_preproc_elif_token1] = ACTIONS(9716), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9718), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9718), + [anon_sym_LPAREN2] = ACTIONS(9182), + [anon_sym_DASH] = ACTIONS(9716), + [anon_sym_PLUS] = ACTIONS(9716), + [anon_sym_STAR] = ACTIONS(9716), + [anon_sym_SLASH] = ACTIONS(9716), + [anon_sym_PERCENT] = ACTIONS(9716), + [anon_sym_PIPE_PIPE] = ACTIONS(9718), + [anon_sym_AMP_AMP] = ACTIONS(9718), + [anon_sym_PIPE] = ACTIONS(9716), + [anon_sym_CARET] = ACTIONS(9716), + [anon_sym_AMP] = ACTIONS(9716), + [anon_sym_EQ_EQ] = ACTIONS(9718), + [anon_sym_BANG_EQ] = ACTIONS(9718), + [anon_sym_GT] = ACTIONS(9716), + [anon_sym_GT_EQ] = ACTIONS(9718), + [anon_sym_LT_EQ] = ACTIONS(9716), + [anon_sym_LT] = ACTIONS(9716), + [anon_sym_LT_LT] = ACTIONS(9716), + [anon_sym_GT_GT] = ACTIONS(9716), + [anon_sym_SEMI] = ACTIONS(9718), + [anon_sym___attribute__] = ACTIONS(9716), + [anon_sym___attribute] = ACTIONS(9716), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9718), + [anon_sym_RBRACE] = ACTIONS(9718), + [anon_sym_LBRACK] = ACTIONS(9625), + [anon_sym_EQ] = ACTIONS(9716), + [anon_sym_QMARK] = ACTIONS(9718), + [anon_sym_STAR_EQ] = ACTIONS(9718), + [anon_sym_SLASH_EQ] = ACTIONS(9718), + [anon_sym_PERCENT_EQ] = ACTIONS(9718), + [anon_sym_PLUS_EQ] = ACTIONS(9718), + [anon_sym_DASH_EQ] = ACTIONS(9718), + [anon_sym_LT_LT_EQ] = ACTIONS(9718), + [anon_sym_GT_GT_EQ] = ACTIONS(9718), + [anon_sym_AMP_EQ] = ACTIONS(9718), + [anon_sym_CARET_EQ] = ACTIONS(9718), + [anon_sym_PIPE_EQ] = ACTIONS(9718), + [anon_sym_and_eq] = ACTIONS(9716), + [anon_sym_or_eq] = ACTIONS(9716), + [anon_sym_xor_eq] = ACTIONS(9716), + [anon_sym_LT_EQ_GT] = ACTIONS(9718), + [anon_sym_or] = ACTIONS(9716), + [anon_sym_and] = ACTIONS(9716), + [anon_sym_bitor] = ACTIONS(9716), + [anon_sym_xor] = ACTIONS(9716), + [anon_sym_bitand] = ACTIONS(9716), + [anon_sym_not_eq] = ACTIONS(9716), + [anon_sym_DASH_DASH] = ACTIONS(9718), + [anon_sym_PLUS_PLUS] = ACTIONS(9718), + [anon_sym_DOT] = ACTIONS(9629), + [anon_sym_DOT_STAR] = ACTIONS(9631), + [anon_sym_DASH_GT] = ACTIONS(9631), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9718), }, [STATE(3820)] = { - [sym_argument_list] = STATE(3874), - [sym_subscript_argument_list] = STATE(3900), - [sym_identifier] = ACTIONS(9715), - [anon_sym_DOT_DOT_DOT] = ACTIONS(9717), - [anon_sym_COMMA] = ACTIONS(9717), - [anon_sym_RPAREN] = ACTIONS(9717), - [aux_sym_preproc_if_token2] = ACTIONS(9717), - [aux_sym_preproc_else_token1] = ACTIONS(9717), - [aux_sym_preproc_elif_token1] = ACTIONS(9715), - [aux_sym_preproc_elifdef_token1] = ACTIONS(9717), - [aux_sym_preproc_elifdef_token2] = ACTIONS(9717), - [anon_sym_LPAREN2] = ACTIONS(9230), - [anon_sym_DASH] = ACTIONS(9715), - [anon_sym_PLUS] = ACTIONS(9715), - [anon_sym_STAR] = ACTIONS(9715), - [anon_sym_SLASH] = ACTIONS(9715), - [anon_sym_PERCENT] = ACTIONS(9715), - [anon_sym_PIPE_PIPE] = ACTIONS(9717), - [anon_sym_AMP_AMP] = ACTIONS(9717), - [anon_sym_PIPE] = ACTIONS(9715), - [anon_sym_CARET] = ACTIONS(9715), - [anon_sym_AMP] = ACTIONS(9715), - [anon_sym_EQ_EQ] = ACTIONS(9717), - [anon_sym_BANG_EQ] = ACTIONS(9717), - [anon_sym_GT] = ACTIONS(9715), - [anon_sym_GT_EQ] = ACTIONS(9717), - [anon_sym_LT_EQ] = ACTIONS(9715), - [anon_sym_LT] = ACTIONS(9715), - [anon_sym_LT_LT] = ACTIONS(9715), - [anon_sym_GT_GT] = ACTIONS(9715), - [anon_sym_SEMI] = ACTIONS(9717), - [anon_sym___attribute__] = ACTIONS(9715), - [anon_sym___attribute] = ACTIONS(9715), - [anon_sym_RBRACK_RBRACK] = ACTIONS(9717), - [anon_sym_RBRACE] = ACTIONS(9717), - [anon_sym_LBRACK] = ACTIONS(9642), - [anon_sym_EQ] = ACTIONS(9715), - [anon_sym_QMARK] = ACTIONS(9717), - [anon_sym_STAR_EQ] = ACTIONS(9717), - [anon_sym_SLASH_EQ] = ACTIONS(9717), - [anon_sym_PERCENT_EQ] = ACTIONS(9717), - [anon_sym_PLUS_EQ] = ACTIONS(9717), - [anon_sym_DASH_EQ] = ACTIONS(9717), - [anon_sym_LT_LT_EQ] = ACTIONS(9717), - [anon_sym_GT_GT_EQ] = ACTIONS(9717), - [anon_sym_AMP_EQ] = ACTIONS(9717), - [anon_sym_CARET_EQ] = ACTIONS(9717), - [anon_sym_PIPE_EQ] = ACTIONS(9717), - [anon_sym_and_eq] = ACTIONS(9715), - [anon_sym_or_eq] = ACTIONS(9715), - [anon_sym_xor_eq] = ACTIONS(9715), - [anon_sym_LT_EQ_GT] = ACTIONS(9717), - [anon_sym_or] = ACTIONS(9715), - [anon_sym_and] = ACTIONS(9715), - [anon_sym_bitor] = ACTIONS(9715), - [anon_sym_xor] = ACTIONS(9715), - [anon_sym_bitand] = ACTIONS(9715), - [anon_sym_not_eq] = ACTIONS(9715), - [anon_sym_DASH_DASH] = ACTIONS(9644), - [anon_sym_PLUS_PLUS] = ACTIONS(9644), - [anon_sym_DOT] = ACTIONS(9646), - [anon_sym_DOT_STAR] = ACTIONS(9648), - [anon_sym_DASH_GT] = ACTIONS(9648), - [sym_comment] = ACTIONS(3), - [anon_sym_COLON_RBRACK] = ACTIONS(9717), + [sym_identifier] = ACTIONS(9720), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9722), + [anon_sym_COMMA] = ACTIONS(9722), + [anon_sym_RPAREN] = ACTIONS(9722), + [aux_sym_preproc_if_token2] = ACTIONS(9722), + [aux_sym_preproc_else_token1] = ACTIONS(9722), + [aux_sym_preproc_elif_token1] = ACTIONS(9720), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9722), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9722), + [anon_sym_LPAREN2] = ACTIONS(9722), + [anon_sym_DASH] = ACTIONS(9720), + [anon_sym_PLUS] = ACTIONS(9720), + [anon_sym_STAR] = ACTIONS(9720), + [anon_sym_SLASH] = ACTIONS(9720), + [anon_sym_PERCENT] = ACTIONS(9720), + [anon_sym_PIPE_PIPE] = ACTIONS(9722), + [anon_sym_AMP_AMP] = ACTIONS(9722), + [anon_sym_PIPE] = ACTIONS(9720), + [anon_sym_CARET] = ACTIONS(9720), + [anon_sym_AMP] = ACTIONS(9720), + [anon_sym_EQ_EQ] = ACTIONS(9722), + [anon_sym_BANG_EQ] = ACTIONS(9722), + [anon_sym_GT] = ACTIONS(9720), + [anon_sym_GT_EQ] = ACTIONS(9722), + [anon_sym_LT_EQ] = ACTIONS(9720), + [anon_sym_LT] = ACTIONS(9720), + [anon_sym_LT_LT] = ACTIONS(9720), + [anon_sym_GT_GT] = ACTIONS(9720), + [anon_sym_SEMI] = ACTIONS(9722), + [anon_sym___attribute__] = ACTIONS(9720), + [anon_sym___attribute] = ACTIONS(9720), + [anon_sym_COLON] = ACTIONS(9720), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9722), + [anon_sym_LBRACE] = ACTIONS(9722), + [anon_sym_RBRACE] = ACTIONS(9722), + [anon_sym_LBRACK] = ACTIONS(9722), + [anon_sym_EQ] = ACTIONS(9720), + [anon_sym_QMARK] = ACTIONS(9722), + [anon_sym_STAR_EQ] = ACTIONS(9722), + [anon_sym_SLASH_EQ] = ACTIONS(9722), + [anon_sym_PERCENT_EQ] = ACTIONS(9722), + [anon_sym_PLUS_EQ] = ACTIONS(9722), + [anon_sym_DASH_EQ] = ACTIONS(9722), + [anon_sym_LT_LT_EQ] = ACTIONS(9722), + [anon_sym_GT_GT_EQ] = ACTIONS(9722), + [anon_sym_AMP_EQ] = ACTIONS(9722), + [anon_sym_CARET_EQ] = ACTIONS(9722), + [anon_sym_PIPE_EQ] = ACTIONS(9722), + [anon_sym_and_eq] = ACTIONS(9720), + [anon_sym_or_eq] = ACTIONS(9720), + [anon_sym_xor_eq] = ACTIONS(9720), + [anon_sym_LT_EQ_GT] = ACTIONS(9722), + [anon_sym_or] = ACTIONS(9720), + [anon_sym_and] = ACTIONS(9720), + [anon_sym_bitor] = ACTIONS(9720), + [anon_sym_xor] = ACTIONS(9720), + [anon_sym_bitand] = ACTIONS(9720), + [anon_sym_not_eq] = ACTIONS(9720), + [anon_sym_DASH_DASH] = ACTIONS(9722), + [anon_sym_PLUS_PLUS] = ACTIONS(9722), + [anon_sym_DOT] = ACTIONS(9720), + [anon_sym_DOT_STAR] = ACTIONS(9722), + [anon_sym_DASH_GT] = ACTIONS(9722), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9722), }, [STATE(3821)] = { - [sym_argument_list] = STATE(3894), - [sym_initializer_list] = STATE(5969), - [aux_sym_sized_type_specifier_repeat1] = STATE(3284), - [sym_identifier] = ACTIONS(7223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7225), - [anon_sym_COMMA] = ACTIONS(7225), - [aux_sym_preproc_if_token2] = ACTIONS(7225), - [aux_sym_preproc_else_token1] = ACTIONS(7225), - [aux_sym_preproc_elif_token1] = ACTIONS(7223), - [aux_sym_preproc_elifdef_token1] = ACTIONS(7225), - [aux_sym_preproc_elifdef_token2] = ACTIONS(7225), - [anon_sym_LPAREN2] = ACTIONS(7687), - [anon_sym_DASH] = ACTIONS(7223), - [anon_sym_PLUS] = ACTIONS(7223), - [anon_sym_STAR] = ACTIONS(7225), - [anon_sym_SLASH] = ACTIONS(7223), - [anon_sym_PERCENT] = ACTIONS(7225), - [anon_sym_PIPE_PIPE] = ACTIONS(7225), - [anon_sym_AMP_AMP] = ACTIONS(7225), - [anon_sym_PIPE] = ACTIONS(7223), - [anon_sym_CARET] = ACTIONS(7225), - [anon_sym_AMP] = ACTIONS(7223), - [anon_sym_EQ_EQ] = ACTIONS(7225), - [anon_sym_BANG_EQ] = ACTIONS(7225), - [anon_sym_GT] = ACTIONS(7223), - [anon_sym_GT_EQ] = ACTIONS(7225), - [anon_sym_LT_EQ] = ACTIONS(7223), - [anon_sym_LT] = ACTIONS(7223), - [anon_sym_LT_LT] = ACTIONS(7225), - [anon_sym_GT_GT] = ACTIONS(7225), - [anon_sym___extension__] = ACTIONS(7223), - [anon_sym_LBRACE] = ACTIONS(4676), - [anon_sym_signed] = ACTIONS(9114), - [anon_sym_unsigned] = ACTIONS(9114), - [anon_sym_long] = ACTIONS(9114), - [anon_sym_short] = ACTIONS(9114), - [anon_sym_LBRACK] = ACTIONS(7225), - [anon_sym_const] = ACTIONS(7223), - [anon_sym_constexpr] = ACTIONS(7223), - [anon_sym_volatile] = ACTIONS(7223), - [anon_sym_restrict] = ACTIONS(7223), - [anon_sym___restrict__] = ACTIONS(7223), - [anon_sym__Atomic] = ACTIONS(7223), - [anon_sym__Noreturn] = ACTIONS(7223), - [anon_sym_noreturn] = ACTIONS(7223), - [anon_sym__Nonnull] = ACTIONS(7223), - [anon_sym_mutable] = ACTIONS(7223), - [anon_sym_constinit] = ACTIONS(7223), - [anon_sym_consteval] = ACTIONS(7223), - [anon_sym_alignas] = ACTIONS(7223), - [anon_sym__Alignas] = ACTIONS(7223), - [anon_sym_QMARK] = ACTIONS(7225), - [anon_sym_LT_EQ_GT] = ACTIONS(7225), - [anon_sym_or] = ACTIONS(7223), - [anon_sym_and] = ACTIONS(7223), - [anon_sym_bitor] = ACTIONS(7223), - [anon_sym_xor] = ACTIONS(7223), - [anon_sym_bitand] = ACTIONS(7223), - [anon_sym_not_eq] = ACTIONS(7223), - [anon_sym_DASH_DASH] = ACTIONS(7225), - [anon_sym_PLUS_PLUS] = ACTIONS(7225), - [anon_sym_DOT] = ACTIONS(7223), - [anon_sym_DOT_STAR] = ACTIONS(7225), - [anon_sym_DASH_GT] = ACTIONS(7225), - [sym_comment] = ACTIONS(3), - }, - [STATE(3822)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym__declarator] = STATE(8808), - [sym__abstract_declarator] = STATE(9023), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(7086), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5327), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(7086), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(6823), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8651), - [anon_sym_AMP_AMP] = ACTIONS(8653), - [anon_sym_AMP] = ACTIONS(8655), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(6821), - [anon_sym___attribute] = ACTIONS(6821), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_GT2] = ACTIONS(6823), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), - }, - [STATE(3823)] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(3823), - [sym_identifier] = ACTIONS(6999), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7001), - [anon_sym_COMMA] = ACTIONS(7001), - [anon_sym_LPAREN2] = ACTIONS(7001), - [anon_sym_DASH] = ACTIONS(6999), - [anon_sym_PLUS] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(7001), - [anon_sym_SLASH] = ACTIONS(6999), - [anon_sym_PERCENT] = ACTIONS(7001), - [anon_sym_PIPE_PIPE] = ACTIONS(7001), - [anon_sym_AMP_AMP] = ACTIONS(7001), - [anon_sym_PIPE] = ACTIONS(6999), - [anon_sym_CARET] = ACTIONS(7001), - [anon_sym_AMP] = ACTIONS(6999), - [anon_sym_EQ_EQ] = ACTIONS(7001), - [anon_sym_BANG_EQ] = ACTIONS(7001), - [anon_sym_GT] = ACTIONS(6999), - [anon_sym_GT_EQ] = ACTIONS(6999), - [anon_sym_LT_EQ] = ACTIONS(6999), - [anon_sym_LT] = ACTIONS(6999), - [anon_sym_LT_LT] = ACTIONS(7001), - [anon_sym_GT_GT] = ACTIONS(6999), - [anon_sym___extension__] = ACTIONS(6999), - [anon_sym___attribute__] = ACTIONS(6999), - [anon_sym___attribute] = ACTIONS(6999), - [anon_sym_LBRACE] = ACTIONS(7001), - [anon_sym_signed] = ACTIONS(9607), - [anon_sym_unsigned] = ACTIONS(9607), - [anon_sym_long] = ACTIONS(9607), - [anon_sym_short] = ACTIONS(9607), - [anon_sym_LBRACK] = ACTIONS(7001), - [anon_sym_const] = ACTIONS(6999), - [anon_sym_constexpr] = ACTIONS(6999), - [anon_sym_volatile] = ACTIONS(6999), - [anon_sym_restrict] = ACTIONS(6999), - [anon_sym___restrict__] = ACTIONS(6999), - [anon_sym__Atomic] = ACTIONS(6999), - [anon_sym__Noreturn] = ACTIONS(6999), - [anon_sym_noreturn] = ACTIONS(6999), - [anon_sym__Nonnull] = ACTIONS(6999), - [anon_sym_mutable] = ACTIONS(6999), - [anon_sym_constinit] = ACTIONS(6999), - [anon_sym_consteval] = ACTIONS(6999), - [anon_sym_alignas] = ACTIONS(6999), - [anon_sym__Alignas] = ACTIONS(6999), - [sym_primitive_type] = ACTIONS(6999), - [anon_sym_QMARK] = ACTIONS(7001), - [anon_sym_LT_EQ_GT] = ACTIONS(7001), - [anon_sym_or] = ACTIONS(6999), - [anon_sym_and] = ACTIONS(6999), - [anon_sym_bitor] = ACTIONS(6999), - [anon_sym_xor] = ACTIONS(6999), - [anon_sym_bitand] = ACTIONS(6999), - [anon_sym_not_eq] = ACTIONS(6999), - [anon_sym_DASH_DASH] = ACTIONS(7001), - [anon_sym_PLUS_PLUS] = ACTIONS(7001), - [anon_sym_DOT] = ACTIONS(6999), - [anon_sym_DOT_STAR] = ACTIONS(7001), - [anon_sym_DASH_GT] = ACTIONS(7001), - [sym_comment] = ACTIONS(3), - [anon_sym_final] = ACTIONS(6999), - [anon_sym_override] = ACTIONS(6999), - [anon_sym_GT2] = ACTIONS(7001), - [anon_sym_requires] = ACTIONS(6999), - }, - [STATE(3824)] = { - [sym_type_qualifier] = STATE(3765), - [sym_alignas_qualifier] = STATE(3497), - [aux_sym__type_definition_type_repeat1] = STATE(3765), - [aux_sym_sized_type_specifier_repeat1] = STATE(4096), - [sym_identifier] = ACTIONS(9719), - [anon_sym_DOT_DOT_DOT] = ACTIONS(7249), - [anon_sym_COMMA] = ACTIONS(7249), - [anon_sym_RPAREN] = ACTIONS(7249), - [anon_sym_LPAREN2] = ACTIONS(7249), - [anon_sym_TILDE] = ACTIONS(7249), - [anon_sym_STAR] = ACTIONS(7249), - [anon_sym_AMP_AMP] = ACTIONS(7249), - [anon_sym_AMP] = ACTIONS(7251), - [anon_sym_SEMI] = ACTIONS(7249), - [anon_sym___extension__] = ACTIONS(9722), - [anon_sym_virtual] = ACTIONS(7251), - [anon_sym_extern] = ACTIONS(7251), - [anon_sym___attribute__] = ACTIONS(7251), - [anon_sym___attribute] = ACTIONS(7251), - [anon_sym_COLON_COLON] = ACTIONS(7249), - [anon_sym_LBRACK_LBRACK] = ACTIONS(7249), - [anon_sym___declspec] = ACTIONS(7251), - [anon_sym___based] = ACTIONS(7251), - [anon_sym___cdecl] = ACTIONS(7251), - [anon_sym___clrcall] = ACTIONS(7251), - [anon_sym___stdcall] = ACTIONS(7251), - [anon_sym___fastcall] = ACTIONS(7251), - [anon_sym___thiscall] = ACTIONS(7251), - [anon_sym___vectorcall] = ACTIONS(7251), - [anon_sym_LBRACE] = ACTIONS(7249), - [anon_sym_signed] = ACTIONS(9725), - [anon_sym_unsigned] = ACTIONS(9725), - [anon_sym_long] = ACTIONS(9725), - [anon_sym_short] = ACTIONS(9725), - [anon_sym_LBRACK] = ACTIONS(7251), - [anon_sym_static] = ACTIONS(7251), - [anon_sym_EQ] = ACTIONS(7249), - [anon_sym_register] = ACTIONS(7251), - [anon_sym_inline] = ACTIONS(7251), - [anon_sym___inline] = ACTIONS(7251), - [anon_sym___inline__] = ACTIONS(7251), - [anon_sym___forceinline] = ACTIONS(7251), - [anon_sym_thread_local] = ACTIONS(7251), - [anon_sym___thread] = ACTIONS(7251), - [anon_sym_const] = ACTIONS(9722), - [anon_sym_constexpr] = ACTIONS(9722), - [anon_sym_volatile] = ACTIONS(9722), - [anon_sym_restrict] = ACTIONS(9722), - [anon_sym___restrict__] = ACTIONS(9722), - [anon_sym__Atomic] = ACTIONS(9722), - [anon_sym__Noreturn] = ACTIONS(9722), - [anon_sym_noreturn] = ACTIONS(9722), - [anon_sym__Nonnull] = ACTIONS(9722), - [anon_sym_mutable] = ACTIONS(9722), - [anon_sym_constinit] = ACTIONS(9722), - [anon_sym_consteval] = ACTIONS(9722), - [anon_sym_alignas] = ACTIONS(9727), - [anon_sym__Alignas] = ACTIONS(9727), - [sym_primitive_type] = ACTIONS(9730), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(7251), - [anon_sym_template] = ACTIONS(7251), - [anon_sym_GT2] = ACTIONS(7249), - [anon_sym_operator] = ACTIONS(7251), - [anon_sym_LBRACK_COLON] = ACTIONS(7249), - }, - [STATE(3825)] = { - [sym_ms_based_modifier] = STATE(10837), - [sym__declarator] = STATE(8816), - [sym__abstract_declarator] = STATE(9028), - [sym_parenthesized_declarator] = STATE(8555), - [sym_abstract_parenthesized_declarator] = STATE(8596), - [sym_attributed_declarator] = STATE(8555), - [sym_pointer_declarator] = STATE(8555), - [sym_abstract_pointer_declarator] = STATE(8596), - [sym_function_declarator] = STATE(8555), - [sym_abstract_function_declarator] = STATE(8596), - [sym_array_declarator] = STATE(8555), - [sym_abstract_array_declarator] = STATE(8596), - [sym_type_qualifier] = STATE(7086), - [sym_alignas_qualifier] = STATE(7511), - [sym_parameter_list] = STATE(5340), - [sym_decltype] = STATE(10768), - [sym_reference_declarator] = STATE(8555), - [sym_abstract_reference_declarator] = STATE(8596), - [sym_structured_binding_declarator] = STATE(8555), - [sym__function_declarator_seq] = STATE(8598), - [sym_template_type] = STATE(10768), - [sym_template_function] = STATE(8555), - [sym_destructor_name] = STATE(8555), - [sym_dependent_type_identifier] = STATE(10768), - [sym__scope_resolution] = STATE(7990), - [sym_qualified_identifier] = STATE(8555), - [sym_splice_specifier] = STATE(8222), - [sym__splice_specialization_specifier] = STATE(3808), - [sym_splice_type_specifier] = STATE(10768), - [sym_splice_expression] = STATE(10768), - [sym_operator_name] = STATE(8555), - [aux_sym__type_definition_type_repeat1] = STATE(7086), - [sym_identifier] = ACTIONS(8546), - [anon_sym_COMMA] = ACTIONS(7345), - [anon_sym_RPAREN] = ACTIONS(7345), - [anon_sym_LPAREN2] = ACTIONS(5617), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(8708), - [anon_sym_AMP_AMP] = ACTIONS(8710), - [anon_sym_AMP] = ACTIONS(8712), - [anon_sym___extension__] = ACTIONS(3270), - [anon_sym___attribute__] = ACTIONS(7347), - [anon_sym___attribute] = ACTIONS(7347), - [anon_sym_COLON_COLON] = ACTIONS(8554), - [anon_sym___based] = ACTIONS(53), - [anon_sym_LBRACK] = ACTIONS(5627), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_constexpr] = ACTIONS(3270), - [anon_sym_volatile] = ACTIONS(3270), - [anon_sym_restrict] = ACTIONS(3270), - [anon_sym___restrict__] = ACTIONS(3270), - [anon_sym__Atomic] = ACTIONS(3270), - [anon_sym__Noreturn] = ACTIONS(3270), - [anon_sym_noreturn] = ACTIONS(3270), - [anon_sym__Nonnull] = ACTIONS(3270), - [anon_sym_mutable] = ACTIONS(3270), - [anon_sym_constinit] = ACTIONS(3270), - [anon_sym_consteval] = ACTIONS(3270), - [anon_sym_alignas] = ACTIONS(3272), - [anon_sym__Alignas] = ACTIONS(3272), - [sym_comment] = ACTIONS(3), - [anon_sym_decltype] = ACTIONS(2422), - [anon_sym_template] = ACTIONS(5160), - [anon_sym_operator] = ACTIONS(2286), - [anon_sym_LBRACK_COLON] = ACTIONS(5164), + [sym_template_argument_list] = STATE(2189), + [sym_identifier] = ACTIONS(9633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(9635), + [anon_sym_COMMA] = ACTIONS(9635), + [anon_sym_RPAREN] = ACTIONS(9635), + [aux_sym_preproc_if_token2] = ACTIONS(9635), + [aux_sym_preproc_else_token1] = ACTIONS(9635), + [aux_sym_preproc_elif_token1] = ACTIONS(9633), + [aux_sym_preproc_elifdef_token1] = ACTIONS(9635), + [aux_sym_preproc_elifdef_token2] = ACTIONS(9635), + [anon_sym_LPAREN2] = ACTIONS(9635), + [anon_sym_DASH] = ACTIONS(9633), + [anon_sym_PLUS] = ACTIONS(9633), + [anon_sym_STAR] = ACTIONS(9633), + [anon_sym_SLASH] = ACTIONS(9633), + [anon_sym_PERCENT] = ACTIONS(9633), + [anon_sym_PIPE_PIPE] = ACTIONS(9635), + [anon_sym_AMP_AMP] = ACTIONS(9635), + [anon_sym_PIPE] = ACTIONS(9633), + [anon_sym_CARET] = ACTIONS(9633), + [anon_sym_AMP] = ACTIONS(9633), + [anon_sym_EQ_EQ] = ACTIONS(9635), + [anon_sym_BANG_EQ] = ACTIONS(9635), + [anon_sym_GT] = ACTIONS(9633), + [anon_sym_GT_EQ] = ACTIONS(9635), + [anon_sym_LT_EQ] = ACTIONS(9633), + [anon_sym_LT] = ACTIONS(9637), + [anon_sym_LT_LT] = ACTIONS(9633), + [anon_sym_GT_GT] = ACTIONS(9633), + [anon_sym_SEMI] = ACTIONS(9635), + [anon_sym___attribute__] = ACTIONS(9633), + [anon_sym___attribute] = ACTIONS(9633), + [anon_sym_COLON] = ACTIONS(9633), + [anon_sym_RBRACK_RBRACK] = ACTIONS(9635), + [anon_sym_RBRACE] = ACTIONS(9635), + [anon_sym_LBRACK] = ACTIONS(9635), + [anon_sym_EQ] = ACTIONS(9633), + [anon_sym_QMARK] = ACTIONS(9635), + [anon_sym_STAR_EQ] = ACTIONS(9635), + [anon_sym_SLASH_EQ] = ACTIONS(9635), + [anon_sym_PERCENT_EQ] = ACTIONS(9635), + [anon_sym_PLUS_EQ] = ACTIONS(9635), + [anon_sym_DASH_EQ] = ACTIONS(9635), + [anon_sym_LT_LT_EQ] = ACTIONS(9635), + [anon_sym_GT_GT_EQ] = ACTIONS(9635), + [anon_sym_AMP_EQ] = ACTIONS(9635), + [anon_sym_CARET_EQ] = ACTIONS(9635), + [anon_sym_PIPE_EQ] = ACTIONS(9635), + [anon_sym_and_eq] = ACTIONS(9633), + [anon_sym_or_eq] = ACTIONS(9633), + [anon_sym_xor_eq] = ACTIONS(9633), + [anon_sym_LT_EQ_GT] = ACTIONS(9635), + [anon_sym_or] = ACTIONS(9633), + [anon_sym_and] = ACTIONS(9633), + [anon_sym_bitor] = ACTIONS(9633), + [anon_sym_xor] = ACTIONS(9633), + [anon_sym_bitand] = ACTIONS(9633), + [anon_sym_not_eq] = ACTIONS(9633), + [anon_sym_DASH_DASH] = ACTIONS(9635), + [anon_sym_PLUS_PLUS] = ACTIONS(9635), + [anon_sym_DOT] = ACTIONS(9633), + [anon_sym_DOT_STAR] = ACTIONS(9635), + [anon_sym_DASH_GT] = ACTIONS(9635), + [sym_comment] = ACTIONS(3), + [anon_sym_COLON_RBRACK] = ACTIONS(9635), }, }; @@ -451936,7 +451494,7 @@ static const uint16_t ts_small_parse_table[] = { [0] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9732), 29, + ACTIONS(9724), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -451966,7 +451524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9734), 34, + ACTIONS(9726), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452004,7 +451562,7 @@ static const uint16_t ts_small_parse_table[] = { [71] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 29, + ACTIONS(9728), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -452034,7 +451592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9738), 34, + ACTIONS(9730), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452072,7 +451630,7 @@ static const uint16_t ts_small_parse_table[] = { [142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 29, + ACTIONS(8566), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -452102,7 +451660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9742), 34, + ACTIONS(3546), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452137,65 +451695,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [213] = 5, + [213] = 7, ACTIONS(3), 1, sym_comment, - STATE(4115), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7523), 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, - ACTIONS(7521), 35, - aux_sym_preproc_elif_token1, + ACTIONS(9732), 1, + sym_identifier, + STATE(3834), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5959), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5961), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8485), 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -452203,102 +451738,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [288] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3139), 1, - sym_attribute_specifier, - ACTIONS(7521), 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7523), 49, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8483), 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___extension__, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, + [292] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6545), 1, + anon_sym_requires, + ACTIONS(7884), 1, anon_sym_DASH_GT, + STATE(3033), 1, + sym_trailing_return_type, + ACTIONS(6543), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [365] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9744), 1, - anon_sym_delete, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(9601), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 24, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -452309,19 +451799,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_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, - ACTIONS(9597), 28, + ACTIONS(7874), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452332,7 +451816,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -452344,87 +451830,89 @@ 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_COLON_RBRACK, - [444] = 6, + [375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3235), 1, - sym_attribute_specifier, - ACTIONS(7423), 11, + ACTIONS(9734), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_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(7425), 49, + sym_identifier, + ACTIONS(9736), 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_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_COLON_RBRACK, - [521] = 3, + [446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 29, + ACTIONS(9738), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -452454,7 +451942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9597), 34, + ACTIONS(9740), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452489,58 +451977,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [592] = 12, + [517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, - anon_sym_LPAREN2, - ACTIONS(6839), 1, - anon_sym_LBRACK, - ACTIONS(6923), 1, - anon_sym_STAR, - ACTIONS(6925), 1, - anon_sym_AMP_AMP, - ACTIONS(6927), 1, - anon_sym_AMP, - STATE(1976), 1, - sym_parameter_list, - STATE(3626), 1, - sym__function_declarator_seq, - STATE(4548), 1, - sym__abstract_declarator, - STATE(3625), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 17, + ACTIONS(9742), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, anon_sym___attribute, + anon_sym_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, - ACTIONS(9427), 33, + sym_identifier, + ACTIONS(9744), 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -452552,35 +452039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - [681] = 5, + anon_sym_COLON_RBRACK, + [588] = 3, ACTIONS(3), 1, sym_comment, - STATE(4068), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7433), 25, + ACTIONS(3116), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -452589,9 +452059,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, @@ -452600,17 +452068,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7431), 35, - aux_sym_preproc_elif_token1, + anon_sym_GT2, + ACTIONS(3126), 43, 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___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, @@ -452625,6 +452101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -452636,21 +452113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [756] = 5, + [659] = 3, ACTIONS(3), 1, sym_comment, - STATE(4122), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7533), 25, + ACTIONS(7115), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -452659,9 +452127,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, @@ -452670,17 +452136,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7531), 35, - aux_sym_preproc_elif_token1, + anon_sym_GT2, + ACTIONS(7113), 43, 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___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, @@ -452695,6 +452169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -452706,10 +452181,292 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [831] = 3, + [730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9746), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_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, + sym_identifier, + ACTIONS(9748), 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_RBRACK_RBRACK, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9750), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_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, + sym_identifier, + ACTIONS(9752), 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_RBRACK_RBRACK, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [872] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9754), 1, + sym_identifier, + STATE(3834), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(9757), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(9760), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8473), 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(8471), 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, + [951] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6545), 1, + anon_sym_requires, + ACTIONS(7974), 1, + anon_sym_DASH_GT, + STATE(3067), 1, + sym_trailing_return_type, + ACTIONS(6543), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3690), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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, + ACTIONS(7970), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_COLON_RBRACK, + [1034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 29, + ACTIONS(9152), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -452739,7 +452496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4928), 34, + ACTIONS(9150), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452774,10 +452531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [902] = 3, + [1105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 27, + ACTIONS(9763), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452791,6 +452549,9 @@ 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_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -452802,19 +452563,24 @@ 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(8667), 36, + ACTIONS(9765), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -452831,27 +452597,18 @@ 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, - [973] = 6, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [1176] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, + ACTIONS(9211), 1, anon_sym___attribute, - ACTIONS(9312), 1, + ACTIONS(9309), 1, anon_sym___attribute__, - STATE(3246), 1, + STATE(3173), 1, sym_attribute_specifier, - ACTIONS(7431), 11, + ACTIONS(7501), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -452863,7 +452620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7433), 49, + ACTIONS(7503), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -452913,79 +452670,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [1050] = 3, + [1253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + STATE(3181), 1, + sym_attribute_specifier, + ACTIONS(7505), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_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_const, anon_sym_DOT, - sym_identifier, - ACTIONS(9750), 34, + ACTIONS(7507), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___extension__, anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [1121] = 3, + [1330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8790), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -452999,9 +452758,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_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -453013,24 +452769,19 @@ 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(5638), 34, + sym_literal_suffix, + ACTIONS(8792), 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -453047,153 +452798,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, - anon_sym_COLON_RBRACK, - [1192] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4147), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7429), 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, - ACTIONS(7427), 35, - 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [1267] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(3760), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(7034), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(7040), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(9118), 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(9116), 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, - [1344] = 3, + anon_sym_DASH_GT_STAR, + [1401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 29, + ACTIONS(9767), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453223,7 +452842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5638), 34, + ACTIONS(9769), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453258,10 +452877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [1415] = 3, + [1472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 29, + ACTIONS(9771), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453291,7 +452910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9754), 34, + ACTIONS(9773), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453326,16 +452945,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [1486] = 3, + [1543] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 26, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + STATE(3213), 1, + sym_attribute_specifier, + ACTIONS(7511), 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_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7513), 49, 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, @@ -453347,17 +452981,51 @@ 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___extension__, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7747), 37, - aux_sym_preproc_elif_token1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [1620] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + STATE(3218), 1, + sym_attribute_specifier, + ACTIONS(7515), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453366,10 +453034,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, anon_sym_const, + anon_sym_DOT, + ACTIONS(7517), 49, + 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_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -453383,21 +453071,26 @@ 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_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [1557] = 3, + anon_sym_COLON_RBRACK, + [1697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 29, + ACTIONS(9775), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453427,7 +453120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9758), 34, + ACTIONS(9777), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453462,10 +453155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [1628] = 3, + [1768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 29, + ACTIONS(9593), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453495,7 +453188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9762), 34, + ACTIONS(9595), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453530,10 +453223,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [1699] = 3, + [1839] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6545), 1, + anon_sym_requires, + ACTIONS(8406), 1, + anon_sym_DASH_GT, + STATE(3071), 1, + sym_trailing_return_type, + ACTIONS(6543), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3654), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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, + ACTIONS(8402), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_COLON_RBRACK, + [1922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 29, + ACTIONS(9779), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453563,7 +453330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9766), 34, + ACTIONS(9781), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453598,10 +453365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [1770] = 3, + [1993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 29, + ACTIONS(9783), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453631,7 +453398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9762), 34, + ACTIONS(9785), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453666,10 +453433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [1841] = 3, + [2064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 29, + ACTIONS(9787), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453699,7 +453466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9762), 34, + ACTIONS(9789), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453734,10 +453501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [1912] = 3, + [2135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 29, + ACTIONS(9791), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453767,7 +453534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9762), 34, + ACTIONS(9793), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453802,10 +453569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [1983] = 3, + [2206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 29, + ACTIONS(9589), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -453835,7 +453602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9762), 34, + ACTIONS(9591), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453870,57 +453637,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [2054] = 3, + [2277] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6817), 1, + anon_sym_LPAREN2, + ACTIONS(6835), 1, + anon_sym_LBRACK, + ACTIONS(6911), 1, + anon_sym_STAR, + ACTIONS(6913), 1, + anon_sym_AMP_AMP, + ACTIONS(6915), 1, + anon_sym_AMP, + STATE(1950), 1, + sym_parameter_list, + STATE(3634), 1, + sym__function_declarator_seq, + STATE(4402), 1, + sym__abstract_declarator, + STATE(3633), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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___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, - sym_identifier, - ACTIONS(9770), 34, + ACTIONS(9281), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -453932,22 +453702,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [2125] = 6, + [2366] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3103), 1, - sym_attribute_specifier, - ACTIONS(7435), 11, + ACTIONS(6868), 1, + anon_sym_decltype, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7479), 1, + anon_sym_LBRACE, + ACTIONS(9407), 1, + sym_auto, + STATE(3226), 1, + sym_decltype_auto, + ACTIONS(7246), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -453956,10 +453736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7437), 49, + ACTIONS(7248), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -453976,8 +453757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, anon_sym___extension__, + anon_sym___attribute__, anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -454005,15 +453786,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_COLON_RBRACK, - [2202] = 3, + [2447] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 29, - aux_sym_preproc_elif_token1, + ACTIONS(6545), 1, + anon_sym_requires, + ACTIONS(9795), 1, + anon_sym_DASH_GT, + STATE(3073), 1, + sym_trailing_return_type, + ACTIONS(6543), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3595), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454027,29 +453819,16 @@ 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_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, - sym_identifier, - ACTIONS(9762), 34, + ACTIONS(8989), 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, @@ -454071,16 +453850,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_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_COLON_RBRACK, - [2273] = 3, + [2530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 29, + ACTIONS(9798), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -454110,7 +453894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9774), 34, + ACTIONS(9800), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454145,28 +453929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [2344] = 7, + [2601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9776), 1, - sym_identifier, - STATE(3879), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5995), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5997), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8468), 23, + ACTIONS(9802), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454180,7 +453947,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___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, @@ -454188,18 +453961,24 @@ 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(8466), 26, + sym_identifier, + ACTIONS(9804), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454216,11 +453995,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, - [2423] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [2672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 29, + ACTIONS(9806), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -454250,7 +454030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9780), 34, + ACTIONS(9808), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454285,41 +454065,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [2494] = 7, + [2743] = 6, ACTIONS(3), 1, sym_comment, - STATE(4183), 1, - sym_alignas_qualifier, - ACTIONS(9785), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3860), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9782), 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(6889), 20, - aux_sym_preproc_elif_token1, + STATE(3756), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7052), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7058), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9107), 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, @@ -454327,93 +454108,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(6891), 25, + sym_literal_suffix, + ACTIONS(9109), 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_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, - [2573] = 3, + [2820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 26, + ACTIONS(8761), 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(8763), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_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, - ACTIONS(7585), 37, - 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, + anon_sym_DASH_GT_STAR, + [2891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8776), 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___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, + 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, @@ -454421,156 +454232,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, + anon_sym_DASH_GT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [2644] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3223), 1, - sym_attribute_specifier, - ACTIONS(7547), 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7549), 49, + sym_literal_suffix, + ACTIONS(8778), 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___extension__, - anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [2721] = 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, + [2962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3116), 1, - sym_attribute_specifier, - ACTIONS(7551), 11, + STATE(3737), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7017), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7023), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9109), 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(9107), 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7553), 49, - 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_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [2798] = 3, + anon_sym_DOT, + sym_literal_suffix, + [3039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 29, + ACTIONS(9810), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -454600,7 +454376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9790), 34, + ACTIONS(9812), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454635,81 +454411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [2869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3175), 1, - sym_attribute_specifier, - ACTIONS(7453), 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7455), 49, - 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_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [2946] = 3, + [3110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 29, + ACTIONS(9814), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -454739,7 +454444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9794), 34, + ACTIONS(9816), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454774,10 +454479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [3017] = 3, + [3181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 27, + ACTIONS(8786), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454791,8 +454496,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, @@ -454804,17 +454507,19 @@ 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(8752), 36, + ACTIONS(8788), 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, @@ -454831,7 +454536,6 @@ 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, @@ -454842,10 +454546,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [3088] = 3, + anon_sym_DASH_GT_STAR, + [3252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 27, + ACTIONS(9818), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -454861,6 +454567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -454872,10 +454579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8667), 36, + sym_identifier, + ACTIONS(9820), 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, @@ -454883,6 +454595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -454900,20 +454614,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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [3159] = 3, + anon_sym_COLON_RBRACK, + [3323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 29, + ACTIONS(9822), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -454943,7 +454648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9798), 34, + ACTIONS(9824), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -454978,20 +454683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [3230] = 8, + [3394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6871), 1, - anon_sym_decltype, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 1, - anon_sym_LBRACE, - ACTIONS(9443), 1, - sym_auto, - STATE(3215), 1, - sym_decltype_auto, - ACTIONS(7223), 12, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + STATE(3083), 1, + sym_attribute_specifier, + ACTIONS(7519), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -455000,11 +454701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 46, + ACTIONS(7521), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -455021,8 +454721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -455050,79 +454750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [3311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8657), 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(8659), 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, - [3382] = 3, + [3471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 27, + ACTIONS(9826), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455138,6 +454774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, + anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -455149,10 +454786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8699), 36, + sym_identifier, + ACTIONS(9828), 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, @@ -455160,6 +454802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -455177,26 +454821,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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [3453] = 6, + anon_sym_COLON_RBRACK, + [3542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, + ACTIONS(9211), 1, anon_sym___attribute, - ACTIONS(9312), 1, + ACTIONS(9309), 1, anon_sym___attribute__, - STATE(3187), 1, + STATE(3110), 1, sym_attribute_specifier, - ACTIONS(7413), 11, + ACTIONS(7523), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -455208,7 +454843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7415), 49, + ACTIONS(7525), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -455258,10 +454893,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [3530] = 3, + [3619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 29, + ACTIONS(9830), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -455291,7 +454926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9802), 34, + ACTIONS(9832), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -455326,10 +454961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [3601] = 3, + [3690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 29, + ACTIONS(9834), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -455359,7 +454994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9806), 34, + ACTIONS(9836), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -455394,10 +455029,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [3672] = 3, + [3761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 29, + ACTIONS(9838), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -455427,7 +455062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9810), 34, + ACTIONS(9840), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -455462,12 +455097,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [3743] = 3, + [3832] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9842), 1, + sym_identifier, + STATE(3825), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(5959), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5961), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8466), 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(8464), 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, + [3911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 22, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + STATE(3130), 1, + sym_attribute_specifier, + ACTIONS(7527), 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_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7529), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -455479,16 +455205,51 @@ 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___extension__, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(3128), 41, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [3988] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + STATE(3131), 1, + sym_attribute_specifier, + ACTIONS(7531), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -455497,14 +455258,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_COLON, anon_sym_const, + anon_sym_DOT, + ACTIONS(7533), 49, + 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_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -455518,22 +455295,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + 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, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [3814] = 3, + anon_sym_COLON_RBRACK, + [4065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 29, + ACTIONS(9844), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -455563,7 +455344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9814), 34, + ACTIONS(9846), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -455598,28 +455379,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [3885] = 7, + [4136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9816), 1, - sym_identifier, - STATE(3897), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(5995), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5997), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8456), 23, + ACTIONS(9848), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455633,7 +455397,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___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, @@ -455641,18 +455411,24 @@ 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(8454), 26, + sym_identifier, + ACTIONS(9850), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -455669,26 +455445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [3964] = 9, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [4207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, - anon_sym_DASH_GT, - ACTIONS(7873), 1, - anon_sym_requires, - STATE(3075), 1, - sym_trailing_return_type, - ACTIONS(7870), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3628), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 19, + ACTIONS(9852), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455702,16 +455465,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___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, - ACTIONS(7791), 35, + sym_identifier, + ACTIONS(9854), 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, @@ -455733,21 +455509,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, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [4047] = 3, + [4278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 29, + ACTIONS(9856), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -455777,7 +455548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9820), 34, + ACTIONS(9858), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -455812,27 +455583,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [4118] = 3, + [4349] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 29, + ACTIONS(6817), 1, + anon_sym_LPAREN2, + ACTIONS(6835), 1, + anon_sym_LBRACK, + ACTIONS(6943), 1, + anon_sym_STAR, + ACTIONS(6945), 1, + anon_sym_AMP_AMP, + ACTIONS(6947), 1, + anon_sym_AMP, + STATE(1954), 1, + sym_parameter_list, + STATE(3634), 1, + sym__function_declarator_seq, + STATE(4513), 1, + sym__abstract_declarator, + STATE(3633), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -455845,24 +455633,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(3488), 34, + ACTIONS(9281), 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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -455879,26 +455660,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [4189] = 9, + [4438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_requires, - ACTIONS(7849), 1, - anon_sym_DASH_GT, - STATE(3071), 1, - sym_trailing_return_type, - ACTIONS(6561), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3628), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 19, + ACTIONS(9860), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -455912,16 +455678,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___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, - ACTIONS(7791), 35, + sym_identifier, + ACTIONS(9862), 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, @@ -455943,76 +455722,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, anon_sym_COLON_RBRACK, - [4272] = 5, + [4509] = 3, ACTIONS(3), 1, sym_comment, - STATE(4066), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7415), 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, - ACTIONS(7413), 35, + ACTIONS(9864), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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, @@ -456021,149 +455761,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [4347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7649), 26, + ACTIONS(9866), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - ACTIONS(7647), 37, - aux_sym_preproc_elif_token1, + anon_sym_COLON_RBRACK, + [4580] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6817), 1, + anon_sym_LPAREN2, + ACTIONS(6835), 1, + anon_sym_LBRACK, + ACTIONS(6937), 1, + anon_sym_STAR, + ACTIONS(6939), 1, + anon_sym_AMP_AMP, + ACTIONS(6941), 1, + anon_sym_AMP, + STATE(1977), 1, + sym_parameter_list, + STATE(3634), 1, + sym__function_declarator_seq, + STATE(4438), 1, + sym__abstract_declarator, + STATE(3633), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_CARET, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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, - [4418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7079), 22, + ACTIONS(9281), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7077), 41, - 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___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, - 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, - [4489] = 3, + [4669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 29, + ACTIONS(9868), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -456193,7 +455906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9824), 34, + ACTIONS(9870), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456228,10 +455941,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [4560] = 3, + [4740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 29, + ACTIONS(9872), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -456261,7 +455974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9699), 34, + ACTIONS(9874), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456296,31 +456009,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [4631] = 3, + [4811] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + STATE(3157), 1, + sym_attribute_specifier, + ACTIONS(7539), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7541), 49, + 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [4888] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4156), 1, + sym_alignas_qualifier, + ACTIONS(9879), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3888), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9876), 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(6878), 20, + 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, @@ -456329,188 +456123,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9828), 34, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(6880), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, - anon_sym_COLON_RBRACK, - [4702] = 3, + [4967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + STATE(3128), 1, + sym_attribute_specifier, + ACTIONS(7491), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7493), 49, + 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [5044] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + STATE(3201), 1, + sym_attribute_specifier, + ACTIONS(7495), 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_COLON, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(9832), 34, + ACTIONS(7497), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___extension__, anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [4773] = 9, + [5121] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7970), 1, - anon_sym_DASH_GT, - ACTIONS(7976), 1, - anon_sym_requires, - STATE(3076), 1, - sym_trailing_return_type, - ACTIONS(7973), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3655), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 19, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + STATE(3160), 1, + sym_attribute_specifier, + ACTIONS(7481), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7966), 35, + ACTIONS(7483), 49, 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_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [4856] = 3, + [5198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8790), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456526,7 +456384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -456538,15 +456395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9836), 34, + sym_literal_suffix, + ACTIONS(8792), 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, @@ -456554,8 +456406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456573,82 +456423,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [4927] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(3730), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(7069), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(7075), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - ACTIONS(9116), 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(9118), 26, + [5269] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4091), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7493), 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_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, - [5004] = 3, + ACTIONS(7491), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [5344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 29, + ACTIONS(9882), 1, + anon_sym_LT, + STATE(3818), 1, + sym_template_argument_list, + ACTIONS(9589), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -456660,12 +456522,10 @@ 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, @@ -456678,7 +456538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9802), 34, + ACTIONS(9591), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -456713,25 +456573,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [5075] = 9, + [5419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8426), 1, - anon_sym_DASH_GT, - ACTIONS(8461), 1, - anon_sym_requires, - STATE(3077), 1, - sym_trailing_return_type, - ACTIONS(8458), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3675), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 19, + ACTIONS(9885), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456745,16 +456591,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___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, - ACTIONS(8422), 35, + sym_identifier, + ACTIONS(9887), 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, @@ -456776,36 +456635,17 @@ 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_COLON_RBRACK, - [5158] = 9, + [5490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9838), 1, - anon_sym_DASH_GT, - ACTIONS(9844), 1, - anon_sym_requires, - STATE(3078), 1, - sym_trailing_return_type, - ACTIONS(9841), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3687), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 19, + ACTIONS(5619), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456819,16 +456659,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___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, - ACTIONS(8907), 35, + sym_identifier, + ACTIONS(5611), 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, @@ -456850,39 +456703,17 @@ 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_COLON_RBRACK, - [5241] = 7, + [5561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9847), 1, - sym_identifier, - STATE(3897), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(9850), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(9853), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8408), 23, + ACTIONS(5619), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456896,7 +456727,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___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, @@ -456904,18 +456741,24 @@ 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(8406), 26, + sym_identifier, + ACTIONS(5611), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -456932,12 +456775,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, - [5320] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [5632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8761), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -456953,7 +456796,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -456965,15 +456807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9858), 34, + sym_literal_suffix, + ACTIONS(8763), 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, @@ -456981,8 +456818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -457000,11 +456835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [5391] = 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, + [5703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 29, + ACTIONS(9889), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -457034,7 +456878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9862), 34, + ACTIONS(9891), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457069,11 +456913,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [5462] = 3, + [5774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8776), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457089,7 +456932,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -457101,15 +456943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9866), 34, + sym_literal_suffix, + ACTIONS(8778), 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, @@ -457117,8 +456954,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -457136,16 +456971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [5533] = 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, + [5845] = 3, ACTIONS(3), 1, sym_comment, - STATE(4089), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7549), 25, + ACTIONS(7644), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -457165,13 +457004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, 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, - ACTIONS(7547), 35, + ACTIONS(7642), 37, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -457182,6 +457022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -457207,10 +457049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [5608] = 3, + [5916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 26, + STATE(4108), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7503), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -457230,14 +457077,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, 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, - ACTIONS(7735), 37, + ACTIONS(7501), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -457248,8 +457094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -457275,93 +457119,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [5679] = 3, + [5991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(4113), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, 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, - sym_identifier, - ACTIONS(9870), 34, + ACTIONS(7507), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [5750] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_requires, - ACTIONS(7970), 1, - anon_sym_DASH_GT, - STATE(3029), 1, - sym_trailing_return_type, - ACTIONS(6561), 2, + ACTIONS(7505), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3655), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 19, + anon_sym_requires, + [6066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9893), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457375,16 +457207,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___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, - ACTIONS(7966), 35, + sym_identifier, + ACTIONS(9895), 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, @@ -457406,26 +457251,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, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [5833] = 5, + [6137] = 3, ACTIONS(3), 1, sym_comment, - STATE(4128), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7553), 25, + ACTIONS(7670), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -457445,13 +457280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, 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, - ACTIONS(7551), 35, + ACTIONS(7668), 37, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -457462,6 +457298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -457487,99 +457325,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [5908] = 3, + [6208] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + STATE(4117), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, 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, - sym_identifier, - ACTIONS(9874), 34, + ACTIONS(7513), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [5979] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9876), 29, + ACTIONS(7511), 35, 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_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -457588,46 +457392,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9878), 34, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [6283] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4119), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7517), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [6050] = 3, + ACTIONS(7515), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [6358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8786), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -457643,7 +457484,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -457655,15 +457495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9882), 34, + sym_literal_suffix, + ACTIONS(8788), 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, @@ -457671,8 +457506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -457690,109 +457523,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [6121] = 12, + 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, + [6429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, + ACTIONS(7698), 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(6839), 1, - anon_sym_LBRACK, - ACTIONS(6929), 1, anon_sym_STAR, - ACTIONS(6931), 1, - anon_sym_AMP_AMP, - ACTIONS(6933), 1, - anon_sym_AMP, - STATE(1957), 1, - sym_parameter_list, - STATE(3626), 1, - sym__function_declarator_seq, - STATE(4484), 1, - sym__abstract_declarator, - STATE(3625), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - 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, - ACTIONS(9427), 33, - 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [6210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9884), 29, + ACTIONS(7696), 37, 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___extension__, 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -457801,45 +457598,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9886), 34, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [6500] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4130), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7521), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [6281] = 3, + ACTIONS(7519), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [6575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 29, + ACTIONS(9897), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -457869,7 +457704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9890), 34, + ACTIONS(9899), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -457904,99 +457739,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [6352] = 3, + [6646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_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, - sym_identifier, - ACTIONS(9894), 34, + ACTIONS(7586), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, 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, - anon_sym_COLON_RBRACK, - [6423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9896), 29, + ACTIONS(7584), 37, 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___extension__, 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -458005,140 +457804,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9898), 34, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [6717] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4132), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7525), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [6494] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_requires, - ACTIONS(8426), 1, - anon_sym_DASH_GT, - STATE(2973), 1, - sym_trailing_return_type, - ACTIONS(6561), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3675), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 19, + ACTIONS(7523), 35, + 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_COLON, - anon_sym_EQ, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8422), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [6792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7721), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, 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_COLON_RBRACK, - [6577] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9900), 29, + anon_sym_DASH_GT, + ACTIONS(7719), 37, 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___extension__, 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -458147,50 +457942,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9902), 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_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [6648] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [6863] = 5, ACTIONS(3), 1, sym_comment, - STATE(4132), 1, + STATE(4133), 1, sym_attribute_specifier, - ACTIONS(9244), 2, + ACTIONS(9211), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7399), 25, + ACTIONS(7529), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -458216,7 +457979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7397), 35, + ACTIONS(7527), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458252,15 +458015,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [6723] = 5, + [6938] = 5, ACTIONS(3), 1, sym_comment, - STATE(4141), 1, + STATE(4135), 1, sym_attribute_specifier, - ACTIONS(9244), 2, + ACTIONS(9211), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7507), 25, + ACTIONS(7533), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -458286,7 +458049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7505), 35, + ACTIONS(7531), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458322,25 +458085,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [6798] = 9, + [7013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 1, - anon_sym_requires, - ACTIONS(7799), 1, - anon_sym_DASH_GT, - STATE(3071), 1, - sym_trailing_return_type, - ACTIONS(6502), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3628), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 26, + ACTIONS(9901), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458355,6 +458103,9 @@ 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_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -458367,9 +458118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7791), 28, + ACTIONS(9903), 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, @@ -458380,6 +458132,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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458396,25 +458151,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [6881] = 9, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [7084] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 1, + ACTIONS(6557), 1, anon_sym_requires, - ACTIONS(7991), 1, + ACTIONS(7949), 1, anon_sym_DASH_GT, - STATE(3029), 1, + STATE(3033), 1, sym_trailing_return_type, - ACTIONS(6502), 2, + ACTIONS(6555), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(3431), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3655), 2, + STATE(3658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 26, + ACTIONS(7876), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458441,7 +458198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7966), 28, + ACTIONS(7874), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -458470,25 +458227,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [6964] = 9, + [7167] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 1, + ACTIONS(6557), 1, anon_sym_requires, - ACTIONS(8478), 1, + ACTIONS(7992), 1, anon_sym_DASH_GT, - STATE(2973), 1, + STATE(3067), 1, sym_trailing_return_type, - ACTIONS(6502), 2, + ACTIONS(6555), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(3431), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3675), 2, + STATE(3690), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 26, + ACTIONS(7972), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458515,7 +458272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8422), 28, + ACTIONS(7970), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -458544,25 +458301,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7047] = 9, + [7250] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 1, + ACTIONS(6557), 1, anon_sym_requires, - ACTIONS(9904), 1, + ACTIONS(8430), 1, anon_sym_DASH_GT, - STATE(2977), 1, + STATE(3071), 1, sym_trailing_return_type, - ACTIONS(6502), 2, + ACTIONS(6555), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(3431), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3687), 2, + STATE(3654), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 26, + ACTIONS(8404), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458589,7 +458346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8907), 28, + ACTIONS(8402), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -458618,25 +458375,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7130] = 9, + [7333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7799), 1, - anon_sym_DASH_GT, - ACTIONS(7805), 1, + ACTIONS(6557), 1, anon_sym_requires, - STATE(3075), 1, + ACTIONS(9905), 1, + anon_sym_DASH_GT, + STATE(3073), 1, sym_trailing_return_type, - ACTIONS(7802), 2, + ACTIONS(6555), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(3431), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3628), 2, + STATE(3595), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 26, + ACTIONS(8987), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458663,7 +458420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7791), 28, + ACTIONS(8989), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -458692,25 +458449,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7213] = 9, + [7416] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7991), 1, + ACTIONS(7949), 1, anon_sym_DASH_GT, - ACTIONS(7997), 1, + ACTIONS(7955), 1, anon_sym_requires, - STATE(3076), 1, + STATE(3061), 1, sym_trailing_return_type, - ACTIONS(7994), 2, + ACTIONS(7952), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(3431), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3655), 2, + STATE(3658), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 26, + ACTIONS(7876), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458737,7 +458494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7966), 28, + ACTIONS(7874), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -458766,25 +458523,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7296] = 9, + [7499] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8478), 1, + ACTIONS(7992), 1, anon_sym_DASH_GT, - ACTIONS(8484), 1, + ACTIONS(7998), 1, anon_sym_requires, - STATE(3077), 1, + STATE(3062), 1, sym_trailing_return_type, - ACTIONS(8481), 2, + ACTIONS(7995), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(3431), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3675), 2, + STATE(3690), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 26, + ACTIONS(7972), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458811,7 +458568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8422), 28, + ACTIONS(7970), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -458840,25 +458597,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7379] = 9, + [7582] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9018), 1, - anon_sym_requires, - ACTIONS(9904), 1, + ACTIONS(8430), 1, anon_sym_DASH_GT, - STATE(3078), 1, + ACTIONS(8450), 1, + anon_sym_requires, + STATE(3063), 1, sym_trailing_return_type, - ACTIONS(9015), 2, + ACTIONS(8447), 2, anon_sym_final, anon_sym_override, - STATE(3433), 2, + STATE(3431), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(3687), 2, + STATE(3654), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 26, + ACTIONS(8404), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458885,7 +458642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8907), 28, + ACTIONS(8402), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -458914,10 +458671,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [7462] = 3, + [7665] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9907), 29, + ACTIONS(8994), 1, + anon_sym_requires, + ACTIONS(9905), 1, + anon_sym_DASH_GT, + STATE(3064), 1, + sym_trailing_return_type, + ACTIONS(8991), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3595), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -458932,9 +458704,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_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -458947,10 +458716,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9909), 34, + ACTIONS(8989), 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, @@ -458961,9 +458729,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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -458980,82 +458745,10 @@ 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_COLON_RBRACK, - [7533] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4055), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7425), 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, - ACTIONS(7423), 35, - 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [7608] = 3, + [7748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9711), 29, + ACTIONS(9908), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -459085,7 +458778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9713), 34, + ACTIONS(9910), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459120,25 +458813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [7679] = 9, + [7819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6563), 1, - anon_sym_requires, - ACTIONS(9838), 1, - anon_sym_DASH_GT, - STATE(2977), 1, - sym_trailing_return_type, - ACTIONS(6561), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3687), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 19, + ACTIONS(9912), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459152,16 +458831,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute__, + anon_sym___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, - ACTIONS(8907), 35, + sym_identifier, + ACTIONS(9914), 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, @@ -459183,42 +458875,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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_COLON_RBRACK, - [7762] = 3, + [7890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9911), 29, - aux_sym_preproc_elif_token1, + ACTIONS(3116), 22, + 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_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, + ACTIONS(3126), 41, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, 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___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + 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, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -459227,46 +458946,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9913), 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_RBRACK_RBRACK, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [7833] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [7961] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 29, - aux_sym_preproc_elif_token1, + ACTIONS(7884), 1, + anon_sym_DASH_GT, + ACTIONS(7890), 1, + anon_sym_requires, + STATE(3061), 1, + sym_trailing_return_type, + ACTIONS(7887), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459280,29 +458981,16 @@ 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_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, - sym_identifier, - ACTIONS(9917), 34, + ACTIONS(7874), 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, @@ -459324,54 +459012,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, anon_sym_LT_EQ_GT, + anon_sym_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_COLON_RBRACK, - [7904] = 12, + [8044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, + ACTIONS(7115), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6839), 1, - anon_sym_LBRACK, - ACTIONS(6917), 1, anon_sym_STAR, - ACTIONS(6919), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(6921), 1, - anon_sym_AMP, - STATE(1946), 1, - sym_parameter_list, - STATE(3626), 1, - sym__function_declarator_seq, - STATE(4523), 1, - sym__abstract_declarator, - STATE(3625), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 24, - aux_sym_preproc_elif_token1, + anon_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_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, + ACTIONS(7113), 41, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_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___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, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -459380,37 +459088,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9427), 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_PIPE_PIPE, - 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [7993] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [8115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 29, + ACTIONS(9783), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -459440,7 +459124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9921), 34, + ACTIONS(9785), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459475,31 +459159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [8064] = 6, + [8186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3243), 1, - sym_attribute_specifier, - ACTIONS(7397), 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7399), 49, + ACTIONS(7745), 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, @@ -459511,12 +459180,29 @@ 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___extension__, - anon_sym_RBRACK_RBRACK, 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, + ACTIONS(7743), 37, + 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___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -459530,102 +459216,100 @@ 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_DOT, + sym_identifier, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_COLON_RBRACK, - [8141] = 6, + [8257] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3164), 1, - sym_attribute_specifier, - ACTIONS(7505), 11, + ACTIONS(7974), 1, + anon_sym_DASH_GT, + ACTIONS(7980), 1, + anon_sym_requires, + STATE(3062), 1, + sym_trailing_return_type, + ACTIONS(7977), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3690), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7507), 49, + ACTIONS(7970), 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___extension__, anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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_final, - anon_sym_override, - anon_sym_requires, anon_sym_COLON_RBRACK, - [8218] = 5, + [8340] = 5, ACTIONS(3), 1, sym_comment, - STATE(4078), 1, + STATE(4038), 1, sym_attribute_specifier, - ACTIONS(9244), 2, + ACTIONS(9211), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7437), 25, + ACTIONS(7541), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -459651,7 +459335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7435), 35, + ACTIONS(7539), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -459687,14 +459371,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [8293] = 3, + [8415] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9916), 1, + anon_sym_delete, + ACTIONS(9918), 1, + anon_sym_new, + ACTIONS(9663), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9661), 24, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -459705,9 +459402,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_COLON, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -459719,15 +459414,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9925), 34, + ACTIONS(9659), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -459735,9 +459425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -459755,14 +459443,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [8364] = 5, + [8494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9927), 1, + STATE(4140), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7483), 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, + ACTIONS(7481), 35, + 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, - STATE(3805), 1, - sym_template_argument_list, - ACTIONS(9711), 27, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [8569] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9661), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -459774,10 +459528,12 @@ 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, @@ -459790,7 +459546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9713), 34, + ACTIONS(9659), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459825,10 +459581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [8439] = 3, + [8640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 29, + ACTIONS(4928), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -459858,7 +459614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9932), 34, + ACTIONS(4926), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -459893,10 +459649,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [8510] = 3, + [8711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 27, + ACTIONS(9920), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -459910,6 +459667,9 @@ 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_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -459921,19 +459681,24 @@ 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(8659), 36, + ACTIONS(9922), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -459950,21 +459715,12 @@ 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, - [8581] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [8782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 29, + ACTIONS(9924), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -459994,7 +459750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9222), 34, + ACTIONS(9926), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460029,80 +459785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [8652] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4084), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7455), 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, - ACTIONS(7453), 35, - 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [8727] = 3, + [8853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 29, + ACTIONS(9928), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -460132,7 +459818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9936), 34, + ACTIONS(9930), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460167,10 +459853,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [8798] = 3, + [8924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 29, + ACTIONS(9928), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -460200,7 +459886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9940), 34, + ACTIONS(9930), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460235,202 +459921,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [8869] = 3, + [8995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 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(3128), 43, - 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___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, - 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, - [8940] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3199), 1, - sym_attribute_specifier, - ACTIONS(7427), 11, + ACTIONS(9928), 29, + 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7429), 49, - 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_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [9017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7079), 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(7077), 43, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - 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, + 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, @@ -460439,81 +459954,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [9088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7633), 26, + ACTIONS(9930), 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_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - ACTIONS(7631), 37, - 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___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, - 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, - [9159] = 3, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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_COLON_RBRACK, + [9066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 27, + ACTIONS(9928), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460527,6 +460007,9 @@ 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_COLON, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, @@ -460538,19 +460021,24 @@ 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(8752), 36, + ACTIONS(9930), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460567,21 +460055,12 @@ 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, - [9230] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [9137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 29, + ACTIONS(9928), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -460611,7 +460090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9944), 34, + ACTIONS(9930), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460646,10 +460125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [9301] = 3, + [9208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 29, + ACTIONS(9928), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -460679,7 +460158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9948), 34, + ACTIONS(9930), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460714,10 +460193,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [9372] = 3, + [9279] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 27, + ACTIONS(8406), 1, + anon_sym_DASH_GT, + ACTIONS(8412), 1, + anon_sym_requires, + STATE(3063), 1, + sym_trailing_return_type, + ACTIONS(8409), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3654), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -460731,21 +460225,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + 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, - sym_identifier, - sym_literal_suffix, - ACTIONS(8699), 36, + ACTIONS(8402), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -460755,6 +460241,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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -460767,78 +460256,42 @@ 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, - anon_sym_DASH_GT_STAR, - [9443] = 3, + anon_sym_COLON_RBRACK, + [9362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7719), 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_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, - ACTIONS(7717), 37, + ACTIONS(9932), 29, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, + anon_sym_LT_LT, + anon_sym_GT_GT, 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, + 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, @@ -460847,100 +460300,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [9514] = 6, + ACTIONS(9934), 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_RBRACK_RBRACK, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [9433] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - STATE(3212), 1, - sym_attribute_specifier, - ACTIONS(7531), 11, + ACTIONS(9795), 1, + anon_sym_DASH_GT, + ACTIONS(9939), 1, + anon_sym_requires, + STATE(3064), 1, + sym_trailing_return_type, + ACTIONS(9936), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3595), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7533), 49, + ACTIONS(8989), 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___extension__, anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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_final, - anon_sym_override, - anon_sym_requires, anon_sym_COLON_RBRACK, - [9591] = 3, + [9516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 13, - 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, + STATE(4096), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(7079), 49, + ACTIONS(7497), 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, @@ -460952,10 +460435,26 @@ 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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(7495), 35, + 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -460969,61 +460468,53 @@ 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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [9661] = 17, + [9591] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, + ACTIONS(8568), 1, anon_sym_LPAREN2, - ACTIONS(8616), 1, + ACTIONS(8584), 1, anon_sym_LBRACK, - ACTIONS(8618), 1, + ACTIONS(8586), 1, anon_sym_const, - ACTIONS(8958), 1, + ACTIONS(8978), 1, anon_sym_STAR, - ACTIONS(8960), 1, + ACTIONS(8980), 1, anon_sym_AMP_AMP, - ACTIONS(8962), 1, + ACTIONS(8982), 1, anon_sym_AMP, - STATE(2249), 1, + STATE(2275), 1, sym_parameter_list, - STATE(3945), 1, + STATE(3830), 1, sym_alignas_qualifier, - STATE(6709), 1, + STATE(6695), 1, sym__function_declarator_seq, - STATE(6902), 1, + STATE(6794), 1, sym__abstract_declarator, - ACTIONS(8620), 2, + ACTIONS(8588), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3691), 2, + STATE(3671), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6708), 5, + STATE(6694), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6821), 10, + ACTIONS(7369), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -461034,7 +460525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8608), 12, + ACTIONS(8576), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -461047,7 +460538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6823), 21, + ACTIONS(7371), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PERCENT, @@ -461069,186 +460560,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [9759] = 3, + [9689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 21, + STATE(3791), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9942), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7662), 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, + anon_sym_const, anon_sym_DOT, - ACTIONS(9762), 41, + ACTIONS(7664), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_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, - 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, - [9829] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8657), 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(8659), 34, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_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, - [9899] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8092), 1, - anon_sym_const, - ACTIONS(8572), 1, - anon_sym_LPAREN2, - ACTIONS(8588), 1, - anon_sym_LBRACK, - ACTIONS(8964), 1, - anon_sym_STAR, - ACTIONS(8966), 1, - anon_sym_AMP_AMP, - ACTIONS(8968), 1, - anon_sym_AMP, - STATE(2267), 1, - sym_parameter_list, - STATE(4183), 1, - sym_alignas_qualifier, - STATE(6608), 1, - sym__function_declarator_seq, - STATE(6872), 1, - sym__abstract_declarator, - ACTIONS(8590), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3860), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6607), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7347), 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(8580), 12, + 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, @@ -461260,18 +460611,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7345), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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_RBRACK, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -461284,184 +460625,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [9997] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(9950), 1, - anon_sym_LT, - STATE(4219), 1, - sym_template_argument_list, - ACTIONS(7090), 28, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(7085), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - sym_this, - [10073] = 8, + [9763] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9230), 1, + ACTIONS(9951), 1, + anon_sym_virtual, + ACTIONS(9960), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9963), 1, + anon_sym___declspec, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(9957), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9966), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3953), 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(9954), 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(9946), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(3892), 1, - sym_argument_list, - STATE(5964), 1, - sym_initializer_list, - ACTIONS(7457), 26, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_RBRACE, - 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, - anon_sym_CARET_CARET, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7459), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(9944), 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_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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, sym_identifier, anon_sym_decltype, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [10153] = 17, + anon_sym_operator, + ACTIONS(9948), 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, + [9851] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, + ACTIONS(8568), 1, anon_sym_LPAREN2, - ACTIONS(8616), 1, + ACTIONS(8584), 1, anon_sym_LBRACK, - ACTIONS(8618), 1, + ACTIONS(8586), 1, anon_sym_const, - ACTIONS(8958), 1, + ACTIONS(8978), 1, anon_sym_STAR, - ACTIONS(8960), 1, + ACTIONS(8980), 1, anon_sym_AMP_AMP, - ACTIONS(8962), 1, + ACTIONS(8982), 1, anon_sym_AMP, - STATE(2249), 1, + STATE(2275), 1, sym_parameter_list, - STATE(3945), 1, + STATE(3830), 1, sym_alignas_qualifier, - STATE(6709), 1, + STATE(6695), 1, sym__function_declarator_seq, - STATE(6812), 1, + STATE(6744), 1, sym__abstract_declarator, - ACTIONS(8620), 2, + ACTIONS(8588), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3691), 2, + STATE(3671), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6708), 5, + STATE(6694), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7353), 10, + ACTIONS(6841), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -461472,7 +460751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8608), 12, + ACTIONS(8576), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -461485,7 +460764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7355), 21, + ACTIONS(6843), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PERCENT, @@ -461507,80 +460786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [10251] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(9950), 1, - anon_sym_LT, - STATE(4214), 1, - sym_template_argument_list, - ACTIONS(6572), 28, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6565), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [10327] = 3, + [9949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 28, + ACTIONS(8786), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -461590,13 +460799,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, @@ -461607,16 +460814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, + anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(8699), 34, + ACTIONS(8788), 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, @@ -461625,6 +460834,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, @@ -461632,46 +460842,42 @@ 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, - [10397] = 8, + anon_sym_DASH_GT_STAR, + [10019] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9952), 1, - sym_ms_restrict_modifier, - STATE(4309), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(9955), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(9958), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3965), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(6942), 10, + STATE(4000), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9969), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7684), 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(6944), 44, + ACTIONS(7686), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -461682,12 +460888,11 @@ 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -461715,140 +460920,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [10477] = 12, + [10093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - ACTIONS(9965), 1, - anon_sym_LBRACE, - STATE(4376), 1, - sym_field_declaration_list, - STATE(4531), 1, - sym_attribute_specifier, - STATE(9423), 1, - sym_virtual_specifier, - STATE(10286), 1, - sym_base_class_clause, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7235), 12, + ACTIONS(8786), 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_GT_GT, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7237), 40, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [10565] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7225), 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_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, - ACTIONS(7223), 35, - 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -461857,28 +460953,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [10637] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(9967), 1, - anon_sym_delete, - ACTIONS(9601), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9597), 25, + sym_literal_suffix, + ACTIONS(8788), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -461886,8 +460962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -461895,7 +460970,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, @@ -461904,196 +460978,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9599), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - [10715] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8092), 1, - anon_sym_const, - ACTIONS(8572), 1, - anon_sym_LPAREN2, - ACTIONS(8588), 1, - anon_sym_LBRACK, - ACTIONS(8964), 1, - anon_sym_STAR, - ACTIONS(8966), 1, - anon_sym_AMP_AMP, - ACTIONS(8968), 1, - anon_sym_AMP, - STATE(2267), 1, - sym_parameter_list, - STATE(4183), 1, - sym_alignas_qualifier, - STATE(6608), 1, - sym__function_declarator_seq, - STATE(6772), 1, - sym__abstract_declarator, - ACTIONS(8590), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3860), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6607), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6821), 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(8580), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(6823), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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_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, - [10813] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9969), 1, - sym_ms_restrict_modifier, - STATE(4321), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(9972), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(9975), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(3970), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(6942), 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(6944), 42, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, anon_sym_GT2, - anon_sym_requires, - [10893] = 6, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [10163] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(9978), 1, - anon_sym_LT, - STATE(4054), 1, - sym_template_argument_list, - ACTIONS(6565), 13, + STATE(4001), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9971), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7690), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -462102,12 +461008,12 @@ static const uint16_t ts_small_parse_table[] = { 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(6572), 46, + ACTIONS(7692), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -462148,16 +461054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [10969] = 3, + [10237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 21, + ACTIONS(8790), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462171,15 +461075,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_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___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9762), 41, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8792), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462189,13 +461098,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___attribute__, - 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, @@ -462207,56 +461110,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_DASH_GT_STAR, + [10307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7248), 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_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_try, - [11039] = 17, + ACTIONS(7246), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [10379] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, + ACTIONS(8568), 1, anon_sym_LPAREN2, - ACTIONS(8616), 1, + ACTIONS(8584), 1, anon_sym_LBRACK, - ACTIONS(8618), 1, + ACTIONS(8586), 1, anon_sym_const, - ACTIONS(8958), 1, + ACTIONS(8978), 1, anon_sym_STAR, - ACTIONS(8960), 1, + ACTIONS(8980), 1, anon_sym_AMP_AMP, - ACTIONS(8962), 1, + ACTIONS(8982), 1, anon_sym_AMP, - STATE(2249), 1, + STATE(2275), 1, sym_parameter_list, - STATE(3945), 1, + STATE(3830), 1, sym_alignas_qualifier, - STATE(6709), 1, + STATE(6695), 1, sym__function_declarator_seq, - STATE(6737), 1, + STATE(6790), 1, sym__abstract_declarator, - ACTIONS(8620), 2, + ACTIONS(8588), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3981), 2, + STATE(3951), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6708), 5, + STATE(6694), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7393), 10, + ACTIONS(7365), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -462267,7 +461239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8608), 12, + ACTIONS(8576), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -462280,7 +461252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7391), 21, + ACTIONS(7367), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PERCENT, @@ -462302,51 +461274,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [11137] = 7, + [10477] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6871), 1, - anon_sym_decltype, - ACTIONS(7457), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(9443), 1, - sym_auto, - STATE(3215), 1, - sym_decltype_auto, - ACTIONS(7223), 12, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + STATE(3823), 1, + sym_argument_list, + STATE(5973), 1, + sym_initializer_list, + ACTIONS(7479), 26, + anon_sym_BANG, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP, + anon_sym_SEMI, + anon_sym_RBRACE, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7499), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [10557] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8086), 1, + anon_sym_const, + ACTIONS(8597), 1, + anon_sym_LPAREN2, + ACTIONS(8613), 1, + anon_sym_LBRACK, + ACTIONS(8909), 1, + anon_sym_STAR, + ACTIONS(8911), 1, + anon_sym_AMP_AMP, + ACTIONS(8913), 1, + anon_sym_AMP, + STATE(2244), 1, + sym_parameter_list, + STATE(4156), 1, + sym_alignas_qualifier, + STATE(6602), 1, + sym__function_declarator_seq, + STATE(6835), 1, + sym__abstract_declarator, + ACTIONS(8615), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3888), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6601), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7369), 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, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 46, + ACTIONS(8605), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7371), 23, 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___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, + [10655] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8086), 1, + anon_sym_const, + ACTIONS(8597), 1, + anon_sym_LPAREN2, + ACTIONS(8613), 1, anon_sym_LBRACK, + ACTIONS(8909), 1, + anon_sym_STAR, + ACTIONS(8911), 1, + anon_sym_AMP_AMP, + ACTIONS(8913), 1, + anon_sym_AMP, + STATE(2244), 1, + sym_parameter_list, + STATE(4156), 1, + sym_alignas_qualifier, + STATE(6602), 1, + sym__function_declarator_seq, + STATE(6846), 1, + sym__abstract_declarator, + ACTIONS(8615), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4015), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6601), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7373), 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(8605), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -462358,8 +461484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(7375), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -462372,11 +461508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [11215] = 3, + [10753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 21, + ACTIONS(8761), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462390,15 +461525,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_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___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9762), 41, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8763), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462408,13 +461548,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___attribute__, - 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, @@ -462426,96 +461560,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [11285] = 24, + 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, + [10823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7816), 1, - anon_sym___attribute__, - ACTIONS(7818), 1, - anon_sym___attribute, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7831), 1, - anon_sym_noexcept, - ACTIONS(7833), 1, - anon_sym_throw, - ACTIONS(7835), 1, - anon_sym_requires, - ACTIONS(9981), 1, - anon_sym_AMP_AMP, - ACTIONS(9984), 1, - anon_sym_AMP, - ACTIONS(9987), 1, - anon_sym_DASH_GT, - STATE(4085), 1, - sym_ref_qualifier, - STATE(6274), 1, - sym__function_attributes_end, - STATE(6299), 1, - sym_trailing_return_type, - STATE(9096), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7829), 2, - anon_sym_final, - anon_sym_override, - STATE(6157), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6403), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6697), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4608), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 11, + ACTIONS(7148), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7791), 22, + ACTIONS(7150), 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_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, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -462526,12 +461632,20 @@ 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_final, + anon_sym_override, anon_sym_GT2, - [11397] = 3, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [10893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7108), 13, + ACTIONS(7144), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -462545,7 +461659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym___asm, anon_sym_DOT, - ACTIONS(7110), 49, + ACTIONS(7146), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -462595,10 +461709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [11467] = 3, + [10963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7108), 15, + ACTIONS(7152), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -462614,7 +461728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym___asm, anon_sym_DOT, - ACTIONS(7110), 47, + ACTIONS(7154), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -462662,255 +461776,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [11537] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9994), 1, - anon_sym_virtual, - STATE(4722), 1, - sym_alignas_qualifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4024), 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(8234), 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(9992), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(8230), 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(9990), 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, - [11625] = 24, + [11033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7192), 1, - anon_sym_noexcept, - ACTIONS(7194), 1, - anon_sym_throw, - ACTIONS(9196), 1, - anon_sym_AMP_AMP, - ACTIONS(9199), 1, - anon_sym_AMP, - ACTIONS(9219), 1, - anon_sym_requires, - ACTIONS(9996), 1, - anon_sym___attribute__, - ACTIONS(9999), 1, - anon_sym___attribute, - ACTIONS(10002), 1, - anon_sym_DASH_GT, - STATE(4087), 1, - sym_ref_qualifier, - STATE(5898), 1, - sym_trailing_return_type, - STATE(6162), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9216), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4598), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 9, + ACTIONS(9928), 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_LBRACK, - anon_sym_DOT, - ACTIONS(7791), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym___attribute, + 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [11737] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8600), 1, - anon_sym_LPAREN2, - ACTIONS(8616), 1, - anon_sym_LBRACK, - ACTIONS(8618), 1, - anon_sym_const, - ACTIONS(8958), 1, - anon_sym_STAR, - ACTIONS(8960), 1, - anon_sym_AMP_AMP, - ACTIONS(8962), 1, - anon_sym_AMP, - STATE(2249), 1, - sym_parameter_list, - STATE(3945), 1, - sym_alignas_qualifier, - STATE(6709), 1, - sym__function_declarator_seq, - STATE(6743), 1, - sym__abstract_declarator, - ACTIONS(8620), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3691), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6708), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7349), 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___asm, anon_sym_DOT, - ACTIONS(8608), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(7351), 21, + ACTIONS(9930), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [11835] = 3, + anon_sym_try, + [11103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 26, + ACTIONS(9928), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -462924,20 +461860,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_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___asm, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8699), 36, + ACTIONS(9930), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -462947,7 +461878,13 @@ 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___attribute__, + 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, @@ -462959,31 +461896,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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [11905] = 6, + anon_sym_DASH_GT, + anon_sym_try, + [11173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(9950), 1, + ACTIONS(9973), 1, anon_sym_LT, - STATE(4214), 1, + STATE(4152), 1, sym_template_argument_list, - ACTIONS(5657), 28, + ACTIONS(6566), 28, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -463012,7 +461948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(7371), 31, + ACTIONS(6559), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -463044,146 +461980,284 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [11981] = 8, + [11249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(9928), 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, - STATE(3735), 1, - sym_template_argument_list, - STATE(4270), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5659), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7359), 13, + 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___asm, + anon_sym_DOT, + ACTIONS(9930), 41, 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___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7357), 41, + 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, + [11319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9928), 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, 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_template, - anon_sym_operator, - [12061] = 17, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9930), 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, + 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, + [11389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, - anon_sym_LPAREN2, - ACTIONS(8616), 1, - anon_sym_LBRACK, - ACTIONS(8618), 1, - anon_sym_const, - ACTIONS(8958), 1, + ACTIONS(9928), 21, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(8960), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9930), 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, + 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, + [11459] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7820), 1, + anon_sym_noexcept, + ACTIONS(7822), 1, + anon_sym_throw, + ACTIONS(9975), 1, anon_sym_AMP_AMP, - ACTIONS(8962), 1, + ACTIONS(9978), 1, anon_sym_AMP, - STATE(2249), 1, - sym_parameter_list, - STATE(3945), 1, - sym_alignas_qualifier, - STATE(6709), 1, - sym__function_declarator_seq, - STATE(6748), 1, - sym__abstract_declarator, - ACTIONS(8620), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3962), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6708), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7341), 10, + ACTIONS(9981), 1, + anon_sym_DASH_GT, + ACTIONS(9987), 1, + anon_sym_requires, + STATE(4112), 1, + sym_ref_qualifier, + STATE(6280), 1, + sym__function_attributes_end, + STATE(6366), 1, + sym_trailing_return_type, + STATE(9110), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9984), 2, + anon_sym_final, + anon_sym_override, + STATE(6172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6616), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4568), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7876), 9, 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_LBRACK, anon_sym_DOT, - ACTIONS(8608), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(7343), 21, + ACTIONS(7874), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -463195,129 +462269,131 @@ 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, - [12159] = 17, + [11571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, - anon_sym_LPAREN2, - ACTIONS(8616), 1, - anon_sym_LBRACK, - ACTIONS(8618), 1, - anon_sym_const, - ACTIONS(8958), 1, - anon_sym_STAR, - ACTIONS(8960), 1, - anon_sym_AMP_AMP, - ACTIONS(8962), 1, - anon_sym_AMP, - STATE(2249), 1, - sym_parameter_list, - STATE(3945), 1, - sym_alignas_qualifier, - STATE(6709), 1, - sym__function_declarator_seq, - STATE(6878), 1, - sym__abstract_declarator, - ACTIONS(8620), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3691), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6708), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7347), 10, + ACTIONS(9928), 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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8608), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(7345), 21, + ACTIONS(9930), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + 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, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [12257] = 6, + anon_sym_try, + [11641] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(9262), 1, - anon_sym_LT, - STATE(4130), 1, - sym_template_argument_list, - ACTIONS(6565), 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___attribute, + ACTIONS(7260), 1, anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6572), 48, + ACTIONS(9990), 1, + anon_sym_LBRACE, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9576), 1, + sym_virtual_specifier, + STATE(10403), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7256), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7254), 39, + anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + 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_RBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463331,41 +462407,30 @@ 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_auto, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [12333] = 3, + anon_sym_template, + anon_sym_operator, + [11727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7132), 13, + ACTIONS(7113), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, anon_sym_DOT, - ACTIONS(7134), 49, + ACTIONS(7115), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -463376,13 +462441,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___extension__, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463412,13 +462474,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [12403] = 3, + [11797] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7119), 1, + anon_sym_COLON_COLON, + ACTIONS(9973), 1, + anon_sym_LT, + STATE(4160), 1, + sym_template_argument_list, + ACTIONS(7122), 28, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7117), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [11873] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9996), 1, + anon_sym_virtual, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3953), 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), 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(9994), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(8276), 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(9992), 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, + [11961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7158), 13, + ACTIONS(7140), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -463432,7 +462641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym___asm, anon_sym_DOT, - ACTIONS(7160), 49, + ACTIONS(7142), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -463482,77 +462691,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [12473] = 3, + [12031] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 26, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7235), 1, + anon_sym_noexcept, + ACTIONS(7237), 1, + anon_sym_throw, + ACTIONS(9163), 1, + anon_sym_AMP_AMP, + ACTIONS(9166), 1, + anon_sym_AMP, + ACTIONS(9227), 1, + anon_sym_requires, + ACTIONS(9998), 1, + anon_sym___attribute__, + ACTIONS(10001), 1, + anon_sym___attribute, + ACTIONS(10004), 1, + anon_sym_DASH_GT, + STATE(4122), 1, + sym_ref_qualifier, + STATE(5770), 1, + sym_trailing_return_type, + STATE(6165), 1, + sym__function_attributes_end, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9224), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4584), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7876), 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_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_LBRACK, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8659), 36, + ACTIONS(7874), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [12543] = 3, + [12143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 15, + ACTIONS(7140), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -463568,7 +462798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, anon_sym___asm, anon_sym_DOT, - ACTIONS(3118), 47, + ACTIONS(7142), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -463616,10 +462846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [12613] = 3, + [12213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 22, + ACTIONS(8820), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463642,7 +462872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8706), 40, + ACTIONS(8822), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -463683,107 +462913,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_throw, anon_sym_requires, anon_sym_DASH_GT_STAR, - [12683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8750), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8752), 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, - [12753] = 3, + [12283] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10011), 1, + anon_sym_virtual, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(8282), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(7079), 47, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3980), 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), 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(10009), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(8276), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463795,62 +462975,68 @@ 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_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [12823] = 3, + ACTIONS(10007), 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, + [12371] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 15, + ACTIONS(8568), 1, + anon_sym_LPAREN2, + ACTIONS(8584), 1, + anon_sym_LBRACK, + ACTIONS(8586), 1, + anon_sym_const, + ACTIONS(8978), 1, + anon_sym_STAR, + ACTIONS(8980), 1, + anon_sym_AMP_AMP, + ACTIONS(8982), 1, + anon_sym_AMP, + STATE(2275), 1, + sym_parameter_list, + STATE(3830), 1, + sym_alignas_qualifier, + STATE(6695), 1, + sym__function_declarator_seq, + STATE(6779), 1, + sym__abstract_declarator, + ACTIONS(8588), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3671), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6694), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7347), 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_LBRACK, - anon_sym_const, - anon_sym___asm, anon_sym_DOT, - ACTIONS(7083), 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, + ACTIONS(8576), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -463862,8 +463048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(7345), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, @@ -463874,20 +463067,13 @@ 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_final, - anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [12893] = 3, + [12469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 21, + ACTIONS(9779), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463909,7 +463095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(9762), 41, + ACTIONS(9781), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -463951,24 +463137,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_try, - [12963] = 9, + [12539] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7385), 1, - anon_sym_LBRACE, - ACTIONS(10007), 1, - anon_sym_COLON, - STATE(2119), 1, - sym__enum_base_clause, - STATE(2137), 1, - sym_enumerator_list, - STATE(2196), 1, - sym_attribute_specifier, - ACTIONS(7239), 2, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9996), 1, + anon_sym_virtual, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8000), 26, - aux_sym_preproc_elif_token1, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3953), 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), 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(10015), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(8276), 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(10013), 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, + [12627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8790), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -463994,13 +463242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8002), 29, + sym_literal_suffix, + ACTIONS(8792), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -464008,6 +463253,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -464024,24 +463270,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [13045] = 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, + [12697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7385), 1, - anon_sym_LBRACE, - ACTIONS(10007), 1, - anon_sym_COLON, - STATE(2118), 1, - sym__enum_base_clause, - STATE(2136), 1, - sym_enumerator_list, - STATE(2200), 1, - sym_attribute_specifier, - ACTIONS(7239), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8006), 26, - aux_sym_preproc_elif_token1, + ACTIONS(8776), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464067,13 +463309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8008), 29, + sym_literal_suffix, + ACTIONS(8778), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -464081,6 +463320,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -464097,146 +463337,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [13127] = 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, + [12767] = 24, ACTIONS(3), 1, sym_comment, - STATE(3823), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7727), 13, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7820), 1, + anon_sym_noexcept, + ACTIONS(7822), 1, + anon_sym_throw, + ACTIONS(7824), 1, + anon_sym_requires, + ACTIONS(9975), 1, + anon_sym_AMP_AMP, + ACTIONS(9978), 1, + anon_sym_AMP, + ACTIONS(9981), 1, + anon_sym_DASH_GT, + STATE(4142), 1, + sym_ref_qualifier, + STATE(6259), 1, + sym__function_attributes_end, + STATE(6306), 1, + sym_trailing_return_type, + STATE(9110), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7818), 2, + anon_sym_final, + anon_sym_override, + STATE(6172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6616), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4579), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7876), 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___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7729), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [13201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7475), 27, + anon_sym_DOT, + ACTIONS(7874), 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_COLON_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, - ACTIONS(7473), 35, - 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [13271] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [12879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 26, + ACTIONS(8790), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464246,11 +463448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -464261,18 +463465,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, + sym_identifier, sym_literal_suffix, - ACTIONS(8667), 36, + ACTIONS(8792), 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, @@ -464281,7 +463483,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, @@ -464289,97 +463490,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, + anon_sym_GT2, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_DASH_GT_STAR, - [13341] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7006), 1, - anon_sym_LPAREN2, - ACTIONS(7008), 1, - anon_sym_STAR, - ACTIONS(7010), 1, - anon_sym_AMP_AMP, - ACTIONS(7012), 1, - anon_sym_AMP, - ACTIONS(7022), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_parameter_list, - STATE(4623), 1, - sym__abstract_declarator, - STATE(4934), 1, - sym__function_declarator_seq, - STATE(4825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - 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(9427), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [13429] = 3, + [12949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 28, + ACTIONS(8761), 28, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464408,7 +463534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(8752), 34, + ACTIONS(8763), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464443,10 +463569,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [13499] = 3, + [13019] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 28, + ACTIONS(7385), 1, + anon_sym_LBRACE, + ACTIONS(10017), 1, + anon_sym_COLON, + STATE(2124), 1, + sym__enum_base_clause, + STATE(2157), 1, + sym_enumerator_list, + STATE(2196), 1, + sym_attribute_specifier, + ACTIONS(7258), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8001), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -464456,13 +463596,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, @@ -464474,15 +463612,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8667), 34, + ACTIONS(8003), 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_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -464491,6 +463633,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, @@ -464499,81 +463642,72 @@ 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, - [13569] = 24, + [13101] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7884), 1, + ACTIONS(7916), 1, anon_sym___attribute__, - ACTIONS(7886), 1, + ACTIONS(7918), 1, anon_sym___attribute, - ACTIONS(7888), 1, + ACTIONS(7920), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7899), 1, + ACTIONS(7932), 1, anon_sym_noexcept, - ACTIONS(7901), 1, + ACTIONS(7934), 1, anon_sym_throw, - ACTIONS(10011), 1, + ACTIONS(10019), 1, anon_sym_AMP_AMP, - ACTIONS(10014), 1, + ACTIONS(10022), 1, anon_sym_AMP, - ACTIONS(10017), 1, + ACTIONS(10025), 1, anon_sym_DASH_GT, - ACTIONS(10023), 1, + ACTIONS(10031), 1, anon_sym_requires, - STATE(4094), 1, + STATE(4107), 1, sym_ref_qualifier, - STATE(6290), 1, + STATE(6262), 1, sym__function_attributes_end, - STATE(6316), 1, + STATE(6299), 1, sym_trailing_return_type, - STATE(9133), 1, + STATE(9080), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10020), 2, + ACTIONS(10028), 2, anon_sym_final, anon_sym_override, - STATE(6193), 2, + STATE(6170), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6393), 2, + STATE(6397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6622), 2, + STATE(6568), 2, sym__function_postfix, sym_requires_clause, - STATE(4584), 3, + STATE(4548), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7789), 9, + ACTIONS(7876), 11, 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_LBRACK, anon_sym_DOT, - ACTIONS(7791), 24, + ACTIONS(7874), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464583,10 +463717,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -464598,24 +463729,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [13681] = 12, + anon_sym_GT2, + [13213] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(9973), 1, + anon_sym_LT, + STATE(4152), 1, + sym_template_argument_list, + ACTIONS(5637), 28, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7379), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [13289] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10030), 1, + ACTIONS(10038), 1, anon_sym_virtual, - STATE(4722), 1, + STATE(4659), 1, sym_alignas_qualifier, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4031), 7, + STATE(3988), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -464623,7 +463825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(8234), 9, + ACTIONS(8280), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -464633,7 +463835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(10028), 12, + ACTIONS(10036), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -464646,7 +463848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(8230), 13, + ACTIONS(8276), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -464660,114 +463862,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(10026), 13, + ACTIONS(10034), 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, - [13769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8750), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8752), 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___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, - 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, - [13839] = 5, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [13377] = 7, ACTIONS(3), 1, sym_comment, - STATE(4010), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10032), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7223), 13, + ACTIONS(6868), 1, + anon_sym_decltype, + ACTIONS(7479), 1, + anon_sym_LBRACE, + ACTIONS(9407), 1, + sym_auto, + STATE(3226), 1, + sym_decltype_auto, + ACTIONS(7246), 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_const, anon_sym_DOT, - ACTIONS(7225), 44, + ACTIONS(7248), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -464776,10 +463912,14 @@ 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___extension__, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -464806,14 +463946,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [13913] = 3, + anon_sym_COLON_RBRACK, + [13455] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7132), 15, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + ACTIONS(10044), 1, + anon_sym_LBRACE, + STATE(4343), 1, + sym_field_declaration_list, + STATE(4520), 1, + sym_attribute_specifier, + STATE(9531), 1, + sym_virtual_specifier, + STATE(10260), 1, + sym_base_class_clause, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7254), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -464824,12 +463980,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, anon_sym_DOT, - ACTIONS(7134), 47, + ACTIONS(7256), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464842,8 +463995,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_LBRACK_LBRACK, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -464867,27 +464019,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, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [13983] = 5, + [13543] = 5, ACTIONS(3), 1, sym_comment, - STATE(3823), 1, + STATE(3791), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10009), 4, + ACTIONS(9942), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7675), 13, + ACTIONS(7731), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -464901,7 +464047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7677), 44, + ACTIONS(7733), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -464946,84 +464092,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [14057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8665), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8667), 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_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, - 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, - [14127] = 5, + [13617] = 5, ACTIONS(3), 1, sym_comment, - STATE(4010), 1, + STATE(3791), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10032), 4, + ACTIONS(9942), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7717), 13, + ACTIONS(7739), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465037,7 +464116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7719), 44, + ACTIONS(7741), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465082,10 +464161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [14201] = 3, + [13691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7158), 15, + STATE(4027), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10046), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7755), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465097,11 +464183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, anon_sym_DOT, - ACTIONS(7160), 47, + ACTIONS(7757), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465115,7 +464199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -465139,34 +464224,37 @@ 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_final, anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [14271] = 3, + [13765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 13, + STATE(4028), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10048), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7769), 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_LBRACK, anon_sym_const, - anon_sym___asm, anon_sym_DOT, - ACTIONS(7083), 49, + ACTIONS(7771), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465177,13 +464265,11 @@ 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___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -465207,26 +464293,23 @@ 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_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, + anon_sym_GT2, anon_sym_requires, - [14341] = 5, + [13839] = 5, ACTIONS(3), 1, sym_comment, - STATE(3823), 1, + STATE(3791), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10009), 4, + ACTIONS(9942), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7681), 13, + ACTIONS(7560), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465240,7 +464323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7683), 44, + ACTIONS(7562), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465285,122 +464368,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [14415] = 3, + [13913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(9762), 41, + ACTIONS(7537), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_try, - [14485] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10038), 1, - anon_sym_virtual, - STATE(4722), 1, - sym_alignas_qualifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3979), 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(8234), 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(10036), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(8230), 13, + ACTIONS(7535), 35, + 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___extension__, anon_sym_const, anon_sym_constexpr, @@ -465414,98 +464422,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(10034), 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, - [14573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 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_LBRACK, - anon_sym_EQ, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(9762), 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, - 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_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_try, - [14643] = 5, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [13983] = 8, ACTIONS(3), 1, sym_comment, - STATE(4035), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10040), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7555), 13, + ACTIONS(10050), 1, + sym_ms_restrict_modifier, + STATE(4311), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(10053), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(10056), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4006), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6917), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -465516,10 +464462,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7557), 44, + ACTIONS(6919), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465532,8 +464477,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -465564,10 +464507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [14717] = 3, + [14063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 26, + ACTIONS(8786), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465594,7 +464537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(8659), 36, + ACTIONS(8788), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465631,31 +464574,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [14787] = 5, + [14133] = 3, ACTIONS(3), 1, sym_comment, - STATE(4036), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10042), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7783), 13, + ACTIONS(7148), 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_LBRACK, anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7785), 44, + ACTIONS(7150), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -465666,11 +464602,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___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -465694,139 +464632,59 @@ 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_final, anon_sym_override, - anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [14861] = 17, + [14203] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 1, - anon_sym_const, - ACTIONS(8572), 1, - anon_sym_LPAREN2, - ACTIONS(8588), 1, - anon_sym_LBRACK, - ACTIONS(8964), 1, - anon_sym_STAR, - ACTIONS(8966), 1, - anon_sym_AMP_AMP, - ACTIONS(8968), 1, - anon_sym_AMP, - STATE(2267), 1, - sym_parameter_list, - STATE(4183), 1, - sym_alignas_qualifier, - STATE(6608), 1, - sym__function_declarator_seq, - STATE(6730), 1, - sym__abstract_declarator, - ACTIONS(8590), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3860), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6607), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7349), 8, + ACTIONS(10059), 1, + sym_ms_restrict_modifier, + STATE(4294), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(10062), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(10065), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(4009), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6917), 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_const, anon_sym_DOT, - ACTIONS(8580), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(7351), 23, + ACTIONS(6919), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [14959] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8092), 1, - anon_sym_const, - ACTIONS(8572), 1, - anon_sym_LPAREN2, - ACTIONS(8588), 1, - anon_sym_LBRACK, - ACTIONS(8964), 1, - anon_sym_STAR, - ACTIONS(8966), 1, - anon_sym_AMP_AMP, - ACTIONS(8968), 1, - anon_sym_AMP, - STATE(2267), 1, - sym_parameter_list, - STATE(4183), 1, - sym_alignas_qualifier, - STATE(6608), 1, - sym__function_declarator_seq, - STATE(6745), 1, - sym__abstract_declarator, - ACTIONS(8590), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4028), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6607), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7341), 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(8580), 12, anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -465838,18 +464696,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7343), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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_RBRACK, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -465862,42 +464710,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15057] = 12, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [14283] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10051), 1, - anon_sym_virtual, - ACTIONS(10060), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10063), 1, - anon_sym___declspec, - STATE(4722), 1, - sym_alignas_qualifier, - ACTIONS(10057), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(10066), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4024), 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(10054), 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(10046), 12, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + STATE(4249), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -465906,12 +464738,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(10044), 13, + ACTIONS(7357), 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, @@ -465920,12 +464759,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___thiscall, anon_sym___vectorcall, anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(10048), 13, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -465938,10 +464779,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [15145] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [14363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 26, + ACTIONS(8776), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -465966,11 +464813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, + anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(8699), 36, + ACTIONS(8778), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -465978,7 +464826,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -465994,7 +464841,6 @@ 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, @@ -466005,24 +464851,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [15215] = 3, + anon_sym_DASH_GT_STAR, + [14433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3128), 13, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10070), 1, + anon_sym_LT, + STATE(4141), 1, + sym_template_argument_list, + ACTIONS(6559), 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_LBRACK, + anon_sym_COLON, anon_sym_const, - anon_sym___asm, anon_sym_DOT, - ACTIONS(3118), 49, + ACTIONS(6566), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466033,13 +464886,11 @@ 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___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466063,118 +464914,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, + anon_sym_GT2, anon_sym_requires, - [15285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9915), 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(9917), 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, - 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, - [15355] = 17, + [14509] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 1, + ACTIONS(8086), 1, anon_sym_const, - ACTIONS(8572), 1, + ACTIONS(8597), 1, anon_sym_LPAREN2, - ACTIONS(8588), 1, + ACTIONS(8613), 1, anon_sym_LBRACK, - ACTIONS(8964), 1, + ACTIONS(8909), 1, anon_sym_STAR, - ACTIONS(8966), 1, + ACTIONS(8911), 1, anon_sym_AMP_AMP, - ACTIONS(8968), 1, + ACTIONS(8913), 1, anon_sym_AMP, - STATE(2267), 1, + STATE(2244), 1, sym_parameter_list, - STATE(4183), 1, + STATE(4156), 1, sym_alignas_qualifier, - STATE(6608), 1, + STATE(6602), 1, sym__function_declarator_seq, - STATE(6749), 1, + STATE(6759), 1, sym__abstract_declarator, - ACTIONS(8590), 2, + ACTIONS(8615), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3860), 2, + STATE(3888), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6607), 5, + STATE(6601), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7353), 8, + ACTIONS(6841), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -466183,7 +464966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8580), 12, + ACTIONS(8605), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -466196,7 +464979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7355), 23, + ACTIONS(6843), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PERCENT, @@ -466220,201 +465003,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [15453] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - STATE(4730), 1, - sym_field_declaration_list, - STATE(4978), 1, - sym_attribute_specifier, - STATE(9508), 1, - sym_virtual_specifier, - STATE(10399), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7237), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, - 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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [15539] = 5, + [14607] = 3, ACTIONS(3), 1, sym_comment, - STATE(3823), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7723), 13, + ACTIONS(8761), 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___attribute, - 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(7725), 44, + sym_identifier, + sym_literal_suffix, + ACTIONS(8763), 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_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_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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [15613] = 12, + 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, + [14677] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9994), 1, - anon_sym_virtual, - STATE(4722), 1, + ACTIONS(8086), 1, + anon_sym_const, + ACTIONS(8597), 1, + anon_sym_LPAREN2, + ACTIONS(8613), 1, + anon_sym_LBRACK, + ACTIONS(8909), 1, + anon_sym_STAR, + ACTIONS(8911), 1, + anon_sym_AMP_AMP, + ACTIONS(8913), 1, + anon_sym_AMP, + STATE(2244), 1, + sym_parameter_list, + STATE(4156), 1, sym_alignas_qualifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, + STATE(6602), 1, + sym__function_declarator_seq, + STATE(6789), 1, + sym__abstract_declarator, + ACTIONS(8615), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4024), 7, - sym__declaration_modifiers, - sym_attribute_specifier, - sym_attribute_declaration, - sym_ms_declspec_modifier, - sym_storage_class_specifier, + STATE(3888), 2, sym_type_qualifier, - aux_sym__declaration_specifiers_repeat1, - ACTIONS(8234), 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(10073), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(8230), 13, + aux_sym__type_definition_type_repeat1, + STATE(6601), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7343), 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(8605), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466426,83 +465127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(10071), 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, - [15701] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9246), 1, - anon_sym_LBRACE, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4098), 1, - sym_attribute_specifier, - STATE(4384), 1, - sym_field_declaration_list, - STATE(9615), 1, - sym_virtual_specifier, - STATE(10357), 1, - sym_base_class_clause, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7235), 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_const, - anon_sym_DOT, - ACTIONS(7237), 42, + ACTIONS(7341), 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, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___extension__, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -466515,142 +465151,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_requires, - [15789] = 17, + [14775] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8092), 1, - anon_sym_const, - ACTIONS(8572), 1, + ACTIONS(6975), 1, anon_sym_LPAREN2, - ACTIONS(8588), 1, - anon_sym_LBRACK, - ACTIONS(8964), 1, + ACTIONS(6977), 1, anon_sym_STAR, - ACTIONS(8966), 1, + ACTIONS(6979), 1, anon_sym_AMP_AMP, - ACTIONS(8968), 1, + ACTIONS(6981), 1, anon_sym_AMP, - STATE(2267), 1, + ACTIONS(6991), 1, + anon_sym_LBRACK, + STATE(1968), 1, sym_parameter_list, - STATE(4183), 1, - sym_alignas_qualifier, - STATE(6608), 1, - sym__function_declarator_seq, - STATE(6815), 1, + STATE(4572), 1, sym__abstract_declarator, - ACTIONS(8590), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4022), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6607), 5, + STATE(4759), 1, + sym__function_declarator_seq, + STATE(4875), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7393), 8, + ACTIONS(9279), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, 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(8580), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(7391), 23, + anon_sym_DASH_GT, + ACTIONS(9281), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PERCENT, + anon_sym_RPAREN, 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_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [15887] = 24, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [14863] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7816), 1, + ACTIONS(7916), 1, anon_sym___attribute__, - ACTIONS(7818), 1, + ACTIONS(7918), 1, anon_sym___attribute, - ACTIONS(7820), 1, + ACTIONS(7920), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7831), 1, + ACTIONS(7932), 1, anon_sym_noexcept, - ACTIONS(7833), 1, + ACTIONS(7934), 1, anon_sym_throw, - ACTIONS(9981), 1, + ACTIONS(7941), 1, + anon_sym_requires, + ACTIONS(10019), 1, anon_sym_AMP_AMP, - ACTIONS(9984), 1, + ACTIONS(10022), 1, anon_sym_AMP, - ACTIONS(9987), 1, + ACTIONS(10025), 1, anon_sym_DASH_GT, - ACTIONS(10082), 1, - anon_sym_requires, - STATE(4138), 1, + STATE(4093), 1, sym_ref_qualifier, - STATE(6278), 1, + STATE(6273), 1, sym__function_attributes_end, - STATE(6292), 1, + STATE(6329), 1, sym_trailing_return_type, - STATE(9096), 1, + STATE(9080), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10079), 2, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, - STATE(6157), 2, + STATE(6170), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6403), 2, + STATE(6397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6697), 2, + STATE(6568), 2, sym__function_postfix, sym_requires_clause, - STATE(4575), 3, + STATE(4612), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7789), 11, + ACTIONS(7876), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -466662,7 +465292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7791), 22, + ACTIONS(7874), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466685,17 +465315,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [15999] = 5, + [14975] = 5, ACTIONS(3), 1, sym_comment, - STATE(3823), 1, + STATE(4030), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10009), 4, + ACTIONS(10073), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7693), 13, + ACTIONS(7584), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -466709,7 +465339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7695), 44, + ACTIONS(7586), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466754,17 +465384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [16073] = 5, + [15049] = 3, ACTIONS(3), 1, sym_comment, - STATE(3823), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7697), 13, + ACTIONS(7144), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -466776,9 +465399,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7699), 44, + ACTIONS(7146), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466792,8 +465417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466817,37 +465441,34 @@ 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_final, anon_sym_override, anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [16147] = 5, + [15119] = 3, ACTIONS(3), 1, sym_comment, - STATE(4030), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10085), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7701), 13, + ACTIONS(3126), 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_LBRACK, anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7703), 44, + ACTIONS(3116), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466858,11 +465479,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___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466886,23 +465509,19 @@ 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_final, anon_sym_override, - anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [16221] = 5, + [15189] = 3, ACTIONS(3), 1, sym_comment, - STATE(3999), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10087), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7707), 13, + ACTIONS(3126), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -466914,9 +465533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym___attribute, + anon_sym_LBRACK, anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7709), 44, + ACTIONS(3116), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466930,8 +465551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -466955,37 +465575,34 @@ 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_final, anon_sym_override, anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [16295] = 5, + [15259] = 3, ACTIONS(3), 1, sym_comment, - STATE(3823), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10009), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7713), 13, + ACTIONS(7152), 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_LBRACK, anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7715), 44, + ACTIONS(7154), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -466996,11 +465613,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___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -467024,177 +465643,135 @@ 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_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [16369] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7192), 1, anon_sym_noexcept, - ACTIONS(7194), 1, anon_sym_throw, - ACTIONS(7221), 1, anon_sym_requires, - ACTIONS(9196), 1, - anon_sym_AMP_AMP, - ACTIONS(9199), 1, - anon_sym_AMP, - ACTIONS(9996), 1, - anon_sym___attribute__, - ACTIONS(9999), 1, - anon_sym___attribute, - ACTIONS(10002), 1, - anon_sym_DASH_GT, - STATE(4146), 1, - sym_ref_qualifier, - STATE(5881), 1, - sym_trailing_return_type, - STATE(6191), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4550), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 9, + [15329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8776), 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_LBRACK, + 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(7791), 24, + sym_identifier, + sym_literal_suffix, + ACTIONS(8778), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, 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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [16481] = 24, + 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, + [15399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7899), 1, - anon_sym_noexcept, - ACTIONS(7901), 1, - anon_sym_throw, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(10011), 1, - anon_sym_AMP_AMP, - ACTIONS(10014), 1, - anon_sym_AMP, - ACTIONS(10017), 1, - anon_sym_DASH_GT, - STATE(4083), 1, - sym_ref_qualifier, - STATE(6272), 1, - sym__function_attributes_end, - STATE(6306), 1, - sym_trailing_return_type, - STATE(9133), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7897), 2, - anon_sym_final, - anon_sym_override, - STATE(6193), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6393), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6622), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4588), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 9, + STATE(4030), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10073), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7246), 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_LBRACK, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(7791), 24, + ACTIONS(7248), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, + 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, @@ -467206,54 +465783,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [16593] = 21, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [15473] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7192), 1, - anon_sym_noexcept, - ACTIONS(7194), 1, - anon_sym_throw, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(9996), 1, + ACTIONS(9918), 1, + anon_sym_new, + ACTIONS(10075), 1, + anon_sym_delete, + ACTIONS(9663), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9659), 25, + 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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(9661), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, - ACTIONS(9999), 1, anon_sym___attribute, - ACTIONS(10002), 1, - anon_sym_DASH_GT, - STATE(5881), 1, - sym_trailing_return_type, - STATE(6191), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4550), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 10, + 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, + [15551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7113), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467262,9 +465871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7791), 25, + ACTIONS(7115), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -467278,7 +465890,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___extension__, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -467289,19 +465917,26 @@ 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, - [16698] = 7, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [15621] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 1, - anon_sym_decltype, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10089), 1, - sym_auto, - STATE(4464), 1, - sym_decltype_auto, - ACTIONS(7223), 13, + STATE(3791), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9942), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7618), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467315,7 +465950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 44, + ACTIONS(7620), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -467360,54 +465995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [16775] = 21, + [15695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7816), 1, - anon_sym___attribute__, - ACTIONS(7818), 1, - anon_sym___attribute, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7831), 1, - anon_sym_noexcept, - ACTIONS(7833), 1, - anon_sym_throw, - ACTIONS(7835), 1, - anon_sym_requires, - ACTIONS(9987), 1, - anon_sym_DASH_GT, - STATE(6274), 1, - sym__function_attributes_end, - STATE(6299), 1, - sym_trailing_return_type, - STATE(9096), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7829), 2, - anon_sym_final, - anon_sym_override, - STATE(6157), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6403), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6697), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4608), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 12, + STATE(3791), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9942), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7622), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467418,9 +466016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(7791), 23, + ACTIONS(7624), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -467432,6 +466031,23 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -467443,137 +466059,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, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [16880] = 4, + anon_sym_requires, + [15769] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 22, + ACTIONS(8086), 1, + anon_sym_const, + ACTIONS(8597), 1, + anon_sym_LPAREN2, + ACTIONS(8613), 1, + anon_sym_LBRACK, + ACTIONS(8909), 1, + anon_sym_STAR, + ACTIONS(8911), 1, + anon_sym_AMP_AMP, + ACTIONS(8913), 1, + anon_sym_AMP, + STATE(2244), 1, + sym_parameter_list, + STATE(4156), 1, + sym_alignas_qualifier, + STATE(6602), 1, + sym__function_declarator_seq, + STATE(6766), 1, + sym__abstract_declarator, + ACTIONS(8615), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3888), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6601), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7347), 8, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(6596), 37, + ACTIONS(8605), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7345), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + anon_sym_PERCENT, anon_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_LBRACK_LBRACK, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [16951] = 16, + [15867] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(9202), 1, - anon_sym_DASH_GT, - STATE(5950), 1, - sym__function_attributes_end, - STATE(6121), 1, - sym_trailing_return_type, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(7178), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6497), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(7789), 18, - aux_sym_preproc_elif_token1, + STATE(3791), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9942), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7658), 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_LBRACK, - 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___attribute, + anon_sym_const, anon_sym_DOT, - sym_identifier, - ACTIONS(7791), 22, + ACTIONS(7660), 44, 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, @@ -467582,135 +466180,169 @@ 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___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, - [17046] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(9352), 1, anon_sym_DASH_GT, - STATE(5951), 1, - sym__function_attributes_end, - STATE(6123), 1, - sym_trailing_return_type, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(7178), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7283), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6497), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(7968), 18, - aux_sym_preproc_elif_token1, + anon_sym_GT2, + anon_sym_requires, + [15941] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8086), 1, + anon_sym_const, + ACTIONS(8597), 1, + anon_sym_LPAREN2, + ACTIONS(8613), 1, + anon_sym_LBRACK, + ACTIONS(8909), 1, + anon_sym_STAR, + ACTIONS(8911), 1, + anon_sym_AMP_AMP, + ACTIONS(8913), 1, + anon_sym_AMP, + STATE(2244), 1, + sym_parameter_list, + STATE(4156), 1, + sym_alignas_qualifier, + STATE(6602), 1, + sym__function_declarator_seq, + STATE(6723), 1, + sym__abstract_declarator, + ACTIONS(8615), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3963), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6601), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7365), 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, - anon_sym_LBRACK, - 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(7966), 22, + ACTIONS(8605), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7367), 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_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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [17141] = 3, + anon_sym_DASH_GT, + [16039] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 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(8568), 1, anon_sym_LPAREN2, + ACTIONS(8584), 1, + anon_sym_LBRACK, + ACTIONS(8586), 1, + anon_sym_const, + ACTIONS(8978), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8980), 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_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, - ACTIONS(7595), 35, - aux_sym_preproc_elif_token1, + ACTIONS(8982), 1, + anon_sym_AMP, + STATE(2275), 1, + sym_parameter_list, + STATE(3830), 1, + sym_alignas_qualifier, + STATE(6695), 1, + sym__function_declarator_seq, + STATE(6800), 1, + sym__abstract_declarator, + ACTIONS(8588), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3671), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6694), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7343), 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_DOT, + ACTIONS(8576), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -467722,121 +466354,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(7341), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [17210] = 16, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [16137] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7170), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7285), 1, + ACTIONS(7235), 1, + anon_sym_noexcept, + ACTIONS(7237), 1, + anon_sym_throw, + ACTIONS(7274), 1, anon_sym_requires, - ACTIONS(10091), 1, + ACTIONS(9163), 1, + anon_sym_AMP_AMP, + ACTIONS(9166), 1, + anon_sym_AMP, + ACTIONS(9998), 1, + anon_sym___attribute__, + ACTIONS(10001), 1, + anon_sym___attribute, + ACTIONS(10004), 1, anon_sym_DASH_GT, - STATE(5952), 1, - sym__function_attributes_end, - STATE(6126), 1, + STATE(4098), 1, + sym_ref_qualifier, + STATE(5793), 1, sym_trailing_return_type, - STATE(9134), 1, + STATE(6153), 1, + sym__function_attributes_end, + STATE(9083), 1, sym_gnu_asm_expression, - ACTIONS(7178), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7283), 2, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7272), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, + STATE(4441), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(4748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5396), 2, + STATE(5370), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(6497), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(8424), 18, - aux_sym_preproc_elif_token1, + STATE(4620), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7876), 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_LBRACK, - 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(8422), 22, + ACTIONS(7874), 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_SEMI, 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, - [17305] = 7, + [16249] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10094), 1, - sym_identifier, - STATE(4050), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(10097), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10100), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8408), 18, - aux_sym_preproc_elif_token1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(9206), 1, + anon_sym_LT, + STATE(4123), 1, + sym_template_argument_list, + ACTIONS(6559), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467844,24 +466481,13 @@ 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_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8406), 29, + ACTIONS(6566), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -467873,35 +466499,64 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [17382] = 10, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [16325] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9413), 1, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - ACTIONS(10103), 1, - anon_sym_COLON, - STATE(4059), 1, + STATE(4097), 1, sym_attribute_specifier, - STATE(4319), 1, - sym__enum_base_clause, - STATE(4382), 1, - sym_enumerator_list, - ACTIONS(8000), 10, + STATE(4379), 1, + sym_field_declaration_list, + STATE(9442), 1, + sym_virtual_specifier, + STATE(10235), 1, + sym_base_class_clause, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7254), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -467912,7 +466567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(8002), 44, + ACTIONS(7256), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -467954,54 +466609,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_requires, - [17465] = 10, + [16413] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - ACTIONS(10103), 1, - anon_sym_COLON, - STATE(4095), 1, - sym_attribute_specifier, - STATE(4320), 1, - sym__enum_base_clause, - STATE(4386), 1, - sym_enumerator_list, - ACTIONS(8006), 10, + ACTIONS(8568), 1, + anon_sym_LPAREN2, + ACTIONS(8584), 1, + anon_sym_LBRACK, + ACTIONS(8586), 1, + anon_sym_const, + ACTIONS(8978), 1, + anon_sym_STAR, + ACTIONS(8980), 1, + anon_sym_AMP_AMP, + ACTIONS(8982), 1, + anon_sym_AMP, + STATE(2275), 1, + sym_parameter_list, + STATE(3830), 1, + sym_alignas_qualifier, + STATE(6695), 1, + sym__function_declarator_seq, + STATE(6798), 1, + sym__abstract_declarator, + ACTIONS(8588), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4032), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6694), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7373), 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_const, - anon_sym_DOT, - ACTIONS(8008), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8576), 12, anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -468013,8 +466669,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + ACTIONS(7375), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, @@ -468027,27 +466690,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [17548] = 10, + anon_sym_GT2, + [16511] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7239), 1, - anon_sym___attribute, ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym___attribute__, - ACTIONS(10105), 1, + ACTIONS(10017), 1, anon_sym_COLON, - STATE(2119), 1, + STATE(2118), 1, sym__enum_base_clause, - STATE(2137), 1, + STATE(2161), 1, sym_enumerator_list, - STATE(2196), 1, + STATE(2210), 1, sym_attribute_specifier, - ACTIONS(8000), 18, + ACTIONS(7258), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8007), 26, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468062,23 +466723,30 @@ 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(8002), 36, + sym_identifier, + ACTIONS(8009), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -468091,88 +466759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [17631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6594), 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(6601), 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, - [17700] = 3, + [16593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7637), 26, + ACTIONS(7640), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -468199,7 +466794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7635), 35, + ACTIONS(7638), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -468235,10 +466830,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [17769] = 3, + [16662] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7641), 26, + ACTIONS(6772), 1, + anon_sym_decltype, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7479), 1, + anon_sym_LBRACE, + ACTIONS(9543), 1, + sym_auto, + STATE(4089), 1, + sym_decltype_auto, + ACTIONS(7248), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -468256,16 +466861,14 @@ 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_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, - ACTIONS(7639), 35, + ACTIONS(7246), 32, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -468298,19 +466901,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [17838] = 3, + [16741] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7741), 26, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7168), 1, + anon_sym___attribute, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7225), 1, + anon_sym___attribute__, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(10081), 1, + anon_sym_DASH_GT, + STATE(5720), 1, + sym_trailing_return_type, + STATE(6011), 1, + sym__function_attributes_end, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(8402), 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_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -468322,105 +466967,33 @@ 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_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(7739), 35, - 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [17907] = 9, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [16840] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7687), 1, - anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(4225), 1, + STATE(3765), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5969), 1, - sym_initializer_list, - ACTIONS(10107), 4, + ACTIONS(9608), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7225), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 41, - anon_sym_AMP, + ACTIONS(7060), 17, 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, @@ -468435,20 +467008,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_primitive_type, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [17988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7645), 26, + ACTIONS(7402), 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(7399), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -468469,8 +467051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7643), 35, - aux_sym_preproc_elif_token1, + [16915] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7117), 1, + anon_sym_const, + ACTIONS(8655), 1, + anon_sym_LT, + STATE(3011), 1, + sym_template_argument_list, + ACTIONS(7126), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -468478,9 +467068,12 @@ 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_COLON, + anon_sym_DOT, + ACTIONS(7122), 15, anon_sym___extension__, - anon_sym_const, + anon_sym_LBRACE, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -468494,57 +467087,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + ACTIONS(7119), 33, + 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_COLON_COLON, + anon_sym_RBRACK_RBRACK, + 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_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [18057] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [16992] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 26, + ACTIONS(10084), 1, + anon_sym_delete, + ACTIONS(10086), 1, + anon_sym_new, + ACTIONS(9663), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9659), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - 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, - ACTIONS(7743), 35, - aux_sym_preproc_elif_token1, + anon_sym_DASH_GT_STAR, + ACTIONS(9661), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, 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, + [17069] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(4335), 1, + sym_alignas_qualifier, + ACTIONS(10091), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6880), 13, + 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(10088), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -468558,35 +467230,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, + ACTIONS(6878), 30, + anon_sym_AMP, + 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_LBRACK, + anon_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_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, anon_sym_final, anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [18126] = 8, + [17146] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 1, + ACTIONS(6626), 1, anon_sym___attribute__, - ACTIONS(6648), 1, + ACTIONS(6628), 1, anon_sym___attribute, - ACTIONS(6650), 1, + ACTIONS(6630), 1, anon_sym_LBRACK_LBRACK, - STATE(2353), 2, + STATE(2339), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4512), 2, + STATE(4462), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 20, + ACTIONS(8870), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -468607,7 +467297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8835), 34, + ACTIONS(8872), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -468642,46 +467332,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [18205] = 3, + [17225] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 25, + ACTIONS(7071), 1, + anon_sym_LPAREN2, + ACTIONS(7073), 1, + anon_sym_STAR, + ACTIONS(7075), 1, + anon_sym_AMP_AMP, + ACTIONS(7077), 1, + anon_sym_AMP, + ACTIONS(7087), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_parameter_list, + STATE(4740), 1, + sym__abstract_declarator, + STATE(5174), 1, + sym__function_declarator_seq, + STATE(5173), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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_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_literal_suffix, - ACTIONS(8659), 36, + ACTIONS(9281), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -468689,61 +467389,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_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, - [18274] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [17312] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 21, + ACTIONS(7093), 1, + anon_sym_LPAREN2, + ACTIONS(7095), 1, + anon_sym_STAR, + ACTIONS(7097), 1, + anon_sym_AMP_AMP, + ACTIONS(7099), 1, + anon_sym_AMP, + ACTIONS(7109), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(4646), 1, + sym__abstract_declarator, + STATE(5138), 1, + sym__function_declarator_seq, + STATE(5134), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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___attribute, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8706), 40, + ACTIONS(9281), 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___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -468765,19 +467477,68 @@ 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_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [18343] = 3, + [17399] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7225), 26, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9169), 1, + anon_sym_DASH_GT, + ACTIONS(9175), 1, + anon_sym_requires, + STATE(5999), 1, + sym__function_attributes_end, + STATE(6084), 1, + sym_trailing_return_type, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(7168), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9172), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6487), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7876), 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_LBRACK, + 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(7874), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -468795,16 +467556,49 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + [17494] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9320), 1, anon_sym_DASH_GT, - ACTIONS(7223), 35, + ACTIONS(9326), 1, + anon_sym_requires, + STATE(6009), 1, + sym__function_attributes_end, + STATE(6104), 1, + sym_trailing_return_type, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(7168), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9323), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6487), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7972), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -468814,21 +467608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -468837,35 +467617,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, + ACTIONS(7970), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [17589] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10094), 1, + sym_identifier, + STATE(4120), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4429), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4435), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8466), 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_COLON, + 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(8464), 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_RBRACK_RBRACK, + 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, + anon_sym_COLON_RBRACK, + [17666] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10096), 1, + anon_sym_DASH_GT, + ACTIONS(10102), 1, + anon_sym_requires, + STATE(5938), 1, + sym__function_attributes_end, + STATE(6037), 1, + sym_trailing_return_type, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(7168), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(10099), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [18412] = 5, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6487), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(8404), 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_LBRACK, + 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(8402), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, + [17761] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(3874), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(5959), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(5961), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9107), 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(9109), 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, + [17836] = 9, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(7553), 1, + anon_sym_LPAREN2, + STATE(3931), 1, + sym_argument_list, + STATE(4255), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10109), 4, + STATE(5980), 1, + sym_initializer_list, + ACTIONS(10105), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7001), 14, + ACTIONS(7248), 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_LBRACE, anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(6999), 42, + ACTIONS(7246), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -468903,51 +467926,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [18485] = 3, + [17917] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7653), 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(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5659), 1, anon_sym_LPAREN2, + ACTIONS(5661), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(5663), 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_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, - ACTIONS(7651), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5665), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(5669), 1, + anon_sym_LBRACK, + ACTIONS(6843), 1, + anon_sym_RPAREN, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4676), 1, + sym_parameter_list, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8773), 1, + sym__declarator, + STATE(8994), 1, + sym__abstract_declarator, + STATE(11132), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -468961,143 +468023,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_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, - [18554] = 21, + [18040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7899), 1, - anon_sym_noexcept, - ACTIONS(7901), 1, - anon_sym_throw, - ACTIONS(10017), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, - anon_sym_requires, - STATE(6290), 1, - sym__function_attributes_end, - STATE(6316), 1, - sym_trailing_return_type, - STATE(9133), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10020), 2, - anon_sym_final, - anon_sym_override, - STATE(6193), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6393), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6622), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4584), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 10, + ACTIONS(8820), 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_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(7791), 25, + ACTIONS(8822), 38, 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_RBRACK, + anon_sym___attribute__, + 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - [18659] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [18109] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 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(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5659), 1, anon_sym_LPAREN2, + ACTIONS(5661), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(5663), 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_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, - ACTIONS(7655), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5665), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(5669), 1, + anon_sym_LBRACK, + ACTIONS(7345), 1, + anon_sym_RPAREN, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4676), 1, + sym_parameter_list, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8769), 1, + sym__declarator, + STATE(8986), 1, + sym__abstract_declarator, + STATE(11132), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -469111,107 +468182,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_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, - [18728] = 21, + [18232] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7192), 1, - anon_sym_noexcept, - ACTIONS(7194), 1, - anon_sym_throw, - ACTIONS(9219), 1, - anon_sym_requires, - ACTIONS(9996), 1, + ACTIONS(6626), 1, anon_sym___attribute__, - ACTIONS(9999), 1, + ACTIONS(6628), 1, anon_sym___attribute, - ACTIONS(10002), 1, - anon_sym_DASH_GT, - STATE(5898), 1, - sym_trailing_return_type, - STATE(6162), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9216), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, + ACTIONS(6630), 1, + anon_sym_LBRACK_LBRACK, + STATE(2339), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(4478), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4598), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 10, + ACTIONS(8854), 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, - ACTIONS(7791), 25, + anon_sym_DASH_GT, + ACTIONS(8856), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_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, - [18833] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [18311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 14, + ACTIONS(6586), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -469226,7 +468271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6634), 47, + ACTIONS(6588), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469274,148 +468319,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [18902] = 3, + [18380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 27, + ACTIONS(6602), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8752), 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, - [18971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7233), 30, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(7231), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [19040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7567), 26, + ACTIONS(6604), 47, 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, @@ -469424,30 +468348,12 @@ 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_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, - ACTIONS(7565), 35, - 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___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -469461,76 +468367,43 @@ 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_DOT, - sym_identifier, + 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, - [19109] = 21, + [18449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7899), 1, - anon_sym_noexcept, - ACTIONS(7901), 1, - anon_sym_throw, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(10017), 1, - anon_sym_DASH_GT, - STATE(6272), 1, - sym__function_attributes_end, - STATE(6306), 1, - sym_trailing_return_type, - STATE(9133), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7897), 2, - anon_sym_final, - anon_sym_override, - STATE(6193), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6393), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6622), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4588), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 10, + ACTIONS(6606), 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_LBRACK, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - ACTIONS(7791), 25, + ACTIONS(6608), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469541,10 +468414,25 @@ 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_RBRACK, + 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, @@ -469556,24 +468444,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [19214] = 10, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [18518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - ACTIONS(10112), 1, - anon_sym_COLON, - ACTIONS(10114), 1, - anon_sym_LBRACE, - STATE(4316), 1, - sym__enum_base_clause, - STATE(4370), 1, - sym_enumerator_list, - STATE(4517), 1, - sym_attribute_specifier, - ACTIONS(8000), 12, + ACTIONS(6590), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -469584,9 +468465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(8002), 42, + ACTIONS(6592), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469599,6 +468482,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -469625,28 +468511,16 @@ 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, - [19297] = 10, + [18587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - ACTIONS(10112), 1, - anon_sym_COLON, - ACTIONS(10114), 1, - anon_sym_LBRACE, - STATE(4291), 1, - sym__enum_base_clause, - STATE(4328), 1, - sym_enumerator_list, - STATE(4429), 1, - sym_attribute_specifier, - ACTIONS(8006), 12, + ACTIONS(6596), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -469657,9 +468531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(8008), 42, + ACTIONS(6598), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -469672,6 +468548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -469698,20 +468577,33 @@ 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, - [19380] = 3, + [18656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 26, + ACTIONS(6610), 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(6612), 47, 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, @@ -469720,30 +468612,12 @@ 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_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, - ACTIONS(7569), 35, - 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___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -469757,27 +468631,45 @@ 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_DOT, - sym_identifier, + 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, - [19449] = 3, + [18725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7665), 26, + ACTIONS(6614), 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(6616), 47, 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, @@ -469786,30 +468678,12 @@ 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___extension__, + anon_sym___attribute__, + anon_sym_COLON_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, - ACTIONS(7663), 35, - 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___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -469823,21 +468697,42 @@ 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_DOT, - sym_identifier, + 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, - [19518] = 3, + [18794] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 27, + ACTIONS(7258), 1, + anon_sym___attribute, + ACTIONS(7385), 1, + anon_sym_LBRACE, + ACTIONS(8024), 1, + anon_sym___attribute__, + ACTIONS(10107), 1, + anon_sym_COLON, + STATE(2118), 1, + sym__enum_base_clause, + STATE(2161), 1, + sym_enumerator_list, + STATE(2210), 1, + sym_attribute_specifier, + ACTIONS(8007), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469847,32 +468742,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_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(8667), 34, + ACTIONS(8009), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -469881,46 +468772,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [19587] = 3, + anon_sym_COLON_RBRACK, + [18877] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 14, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7168), 1, + anon_sym___attribute, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7225), 1, + anon_sym___attribute__, + ACTIONS(9221), 1, + anon_sym_DASH_GT, + ACTIONS(9227), 1, + anon_sym_requires, + STATE(5770), 1, + sym_trailing_return_type, + STATE(5977), 1, + sym__function_attributes_end, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9224), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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___attribute, anon_sym_COLON, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7303), 47, + ACTIONS(7874), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -469929,25 +468851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_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_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -469959,17 +468868,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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [19656] = 3, + anon_sym_COLON_RBRACK, + [18976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 25, + ACTIONS(8790), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -469979,11 +468882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -469995,7 +468900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8699), 36, + ACTIONS(8792), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470003,9 +468908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -470013,7 +468916,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, @@ -470027,125 +468929,52 @@ static const uint16_t ts_small_parse_table[] = { 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, - [19725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7563), 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_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, - ACTIONS(7561), 35, - 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [19794] = 21, + [19045] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, + ACTIONS(7168), 1, anon_sym___attribute, - ACTIONS(7888), 1, + ACTIONS(7170), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7899), 1, - anon_sym_noexcept, - ACTIONS(7901), 1, - anon_sym_throw, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(10116), 1, + ACTIONS(7225), 1, + anon_sym___attribute__, + ACTIONS(9341), 1, anon_sym_DASH_GT, - STATE(6269), 1, - sym__function_attributes_end, - STATE(6324), 1, + ACTIONS(9347), 1, + anon_sym_requires, + STATE(5775), 1, sym_trailing_return_type, - STATE(9133), 1, + STATE(5981), 1, + sym__function_attributes_end, + STATE(9083), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7897), 2, + ACTIONS(9344), 2, anon_sym_final, anon_sym_override, - STATE(6193), 2, + STATE(4441), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6393), 2, + STATE(4748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(5296), 2, sym__function_postfix, sym_requires_clause, - STATE(4558), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7968), 10, + ACTIONS(7972), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -470154,11 +468983,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7966), 25, + ACTIONS(7970), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -470170,7 +469001,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -470182,47 +469015,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [19899] = 3, + anon_sym_COLON_RBRACK, + [19144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7669), 26, + ACTIONS(8761), 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(8763), 34, 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_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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7667), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + 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, + [19213] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7060), 1, + sym_primitive_type, + STATE(4129), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10109), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7399), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7402), 41, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -470237,141 +469147,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_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, - [19968] = 21, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [19288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7816), 1, - anon_sym___attribute__, - ACTIONS(7818), 1, - anon_sym___attribute, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7831), 1, - anon_sym_noexcept, - ACTIONS(7833), 1, - anon_sym_throw, - ACTIONS(7835), 1, - anon_sym_requires, - ACTIONS(10119), 1, - anon_sym_DASH_GT, - STATE(6286), 1, - sym__function_attributes_end, - STATE(6332), 1, - sym_trailing_return_type, - STATE(9096), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7829), 2, - anon_sym_final, - anon_sym_override, - STATE(6157), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6403), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6571), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4624), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7968), 12, + ACTIONS(8790), 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_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_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(7966), 23, + sym_literal_suffix, + ACTIONS(8792), 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_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [20073] = 18, + 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, + [19357] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7176), 1, - anon_sym___attribute__, - ACTIONS(7178), 1, + ACTIONS(7168), 1, anon_sym___attribute, - ACTIONS(7180), 1, + ACTIONS(7170), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(9211), 1, + ACTIONS(7225), 1, + anon_sym___attribute__, + ACTIONS(10081), 1, anon_sym_DASH_GT, - STATE(5881), 1, + ACTIONS(10115), 1, + anon_sym_requires, + STATE(5776), 1, sym_trailing_return_type, - STATE(5960), 1, + STATE(5983), 1, sym__function_attributes_end, - STATE(9134), 1, + STATE(9083), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7219), 2, + ACTIONS(10112), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, + STATE(4441), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(4748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5460), 2, + STATE(5512), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 11, + ACTIONS(8404), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -470383,7 +469268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7791), 29, + ACTIONS(8402), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -470413,191 +469298,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_COLON_RBRACK, - [20172] = 21, + [19456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7192), 1, - anon_sym_noexcept, - ACTIONS(7194), 1, - anon_sym_throw, - ACTIONS(9293), 1, - anon_sym_requires, - ACTIONS(10122), 1, - anon_sym___attribute__, - ACTIONS(10125), 1, - anon_sym___attribute, - ACTIONS(10128), 1, - anon_sym_DASH_GT, - STATE(5907), 1, - sym_trailing_return_type, - STATE(6163), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9290), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4600), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7968), 10, + ACTIONS(8761), 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_LBRACK, + 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(7966), 25, + sym_literal_suffix, + ACTIONS(8763), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + 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, - [20277] = 7, + 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, + [19525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7085), 1, - anon_sym_const, - ACTIONS(8695), 1, - anon_sym_LT, - STATE(2992), 1, - sym_template_argument_list, - ACTIONS(7094), 10, + ACTIONS(8820), 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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7090), 15, - anon_sym___extension__, - 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, - ACTIONS(7087), 33, + ACTIONS(8822), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [20354] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [19594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 26, + ACTIONS(8776), 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(8778), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_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, - ACTIONS(7627), 35, + 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, + [19663] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10118), 1, + sym_identifier, + STATE(4076), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(10121), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10124), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8473), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -470606,22 +469526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_LT, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -470629,60 +469535,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [20423] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7136), 1, + sym_literal_suffix, + ACTIONS(8471), 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(7138), 1, anon_sym_STAR, - ACTIONS(7140), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7142), 1, - anon_sym_AMP, - ACTIONS(7152), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - STATE(1980), 1, - sym_parameter_list, - STATE(4699), 1, - sym__abstract_declarator, - STATE(5091), 1, - sym__function_declarator_seq, - STATE(5090), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 18, + 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_COLON_RBRACK, + [19740] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8786), 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_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(9427), 30, + sym_literal_suffix, + ACTIONS(8788), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -470690,79 +469613,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [20510] = 18, + 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, + [19809] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7176), 1, - anon_sym___attribute__, - ACTIONS(7178), 1, - anon_sym___attribute, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(10131), 1, - anon_sym_DASH_GT, - STATE(5932), 1, - sym_trailing_return_type, - STATE(5994), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7327), 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_LBRACK, + anon_sym_const, anon_sym_DOT, - ACTIONS(8422), 29, + ACTIONS(7329), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -470771,12 +469663,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_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, @@ -470788,11 +469692,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [20609] = 3, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [19880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 14, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7327), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -470807,7 +469719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(6614), 47, + ACTIONS(7329), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -470821,7 +469733,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, @@ -470855,10 +469766,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [20678] = 3, + [19951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 26, + ACTIONS(7558), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -470885,7 +469796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7671), 35, + ACTIONS(7556), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -470921,94 +469832,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [20747] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7899), 1, - anon_sym_noexcept, - ACTIONS(7901), 1, - anon_sym_throw, - ACTIONS(10116), 1, - anon_sym_DASH_GT, - ACTIONS(10137), 1, - anon_sym_requires, - STATE(6268), 1, - sym__function_attributes_end, - STATE(6363), 1, - sym_trailing_return_type, - STATE(9133), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10134), 2, - anon_sym_final, - anon_sym_override, - STATE(6193), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6393), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4585), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7968), 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_LBRACK, - anon_sym_DOT, - ACTIONS(7966), 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_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [20852] = 3, + [20020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7661), 26, + ACTIONS(7248), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -471035,7 +469862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7659), 35, + ACTIONS(7246), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -471071,86 +469898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [20921] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6999), 1, - sym_primitive_type, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10109), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7525), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7528), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [20996] = 6, + [20089] = 6, ACTIONS(3), 1, sym_comment, - STATE(3766), 1, + STATE(3791), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(9623), 4, + ACTIONS(9605), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6999), 17, + ACTIONS(7060), 17, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -471168,15 +469926,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - ACTIONS(7528), 17, + ACTIONS(7402), 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___attribute__, anon_sym___attribute, anon_sym_or, @@ -471186,7 +469946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7525), 22, + ACTIONS(7399), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -471197,22 +469957,20 @@ 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_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, - [21071] = 3, + anon_sym_GT2, + [20164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 26, + ACTIONS(7592), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -471239,7 +469997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7603), 35, + ACTIONS(7590), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -471275,61 +470033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [21140] = 18, + [20233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7176), 1, - anon_sym___attribute__, - ACTIONS(7178), 1, - anon_sym___attribute, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(9287), 1, - anon_sym_DASH_GT, - STATE(5857), 1, - sym_trailing_return_type, - STATE(5963), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 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_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(7966), 29, + ACTIONS(7596), 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, @@ -471341,56 +470054,27 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + 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_COLON_RBRACK, - [21239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6624), 14, + anon_sym_DASH_GT, + ACTIONS(7594), 35, + 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_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(6626), 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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -471404,45 +470088,27 @@ 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_auto, - anon_sym_decltype, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [21308] = 3, + [20302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 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(6630), 47, + ACTIONS(7604), 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, @@ -471451,12 +470117,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, + anon_sym_GT_GT, 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, + ACTIONS(7602), 35, + 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___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -471470,81 +470154,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_auto, - anon_sym_decltype, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [21377] = 16, + [20371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9202), 1, - anon_sym_DASH_GT, - ACTIONS(9208), 1, - anon_sym_requires, - STATE(6021), 1, - sym__function_attributes_end, - STATE(6116), 1, - sym_trailing_return_type, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(7178), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(9205), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6497), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(7789), 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_LBRACK, - 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(7791), 22, + ACTIONS(7608), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -471562,49 +470186,16 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [21472] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9352), 1, anon_sym_DASH_GT, - ACTIONS(9358), 1, - anon_sym_requires, - STATE(6022), 1, - sym__function_attributes_end, - STATE(6118), 1, - sym_trailing_return_type, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(7178), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(9355), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6497), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(7968), 18, + ACTIONS(7606), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -471614,7 +470205,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -471623,7 +470228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7966), 22, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [20440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7612), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -471641,34 +470252,40 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [21567] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8657), 27, + anon_sym_DASH_GT, + ACTIONS(7610), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -471676,90 +470293,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8659), 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, - [21636] = 7, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [20509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10140), 1, - sym_identifier, - STATE(4140), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3889), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3899), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8468), 18, - aux_sym_preproc_elif_token1, + ACTIONS(7331), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_const, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8466), 29, + ACTIONS(7333), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -471768,24 +470326,47 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [21713] = 3, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [20578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7753), 26, + ACTIONS(7616), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -471812,7 +470393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7751), 35, + ACTIONS(7614), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -471848,16 +470429,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [21782] = 3, + [20647] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 26, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7916), 1, + anon_sym___attribute__, + ACTIONS(7918), 1, + anon_sym___attribute, + ACTIONS(7920), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7932), 1, + anon_sym_noexcept, + ACTIONS(7934), 1, + anon_sym_throw, + ACTIONS(7941), 1, + anon_sym_requires, + ACTIONS(10025), 1, + anon_sym_DASH_GT, + STATE(6273), 1, + sym__function_attributes_end, + STATE(6329), 1, + sym_trailing_return_type, + STATE(9080), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7939), 2, + anon_sym_final, + anon_sym_override, + STATE(6170), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6397), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6568), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4612), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7876), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7874), 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, @@ -471866,58 +470500,23 @@ 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_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, - ACTIONS(7755), 35, - 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [21851] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [20752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7761), 26, + ACTIONS(7652), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -471944,7 +470543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7759), 35, + ACTIONS(7650), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -471980,155 +470579,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [21920] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(4333), 1, - sym_alignas_qualifier, - ACTIONS(10145), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6891), 13, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(10142), 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(6889), 30, - anon_sym_AMP, - 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_LBRACK, - anon_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_primitive_type, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [21997] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7112), 1, - anon_sym_LPAREN2, - ACTIONS(7114), 1, - anon_sym_STAR, - ACTIONS(7116), 1, - anon_sym_AMP_AMP, - ACTIONS(7118), 1, - anon_sym_AMP, - ACTIONS(7128), 1, - anon_sym_LBRACK, - STATE(1977), 1, - sym_parameter_list, - STATE(4659), 1, - sym__abstract_declarator, - STATE(5065), 1, - sym__function_declarator_seq, - STATE(5063), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - 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(9427), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - [22084] = 3, + [20821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 26, + ACTIONS(7656), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -472155,7 +470609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7561), 35, + ACTIONS(7654), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472191,69 +470645,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [22153] = 16, + [20890] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7916), 1, + anon_sym___attribute__, + ACTIONS(7918), 1, + anon_sym___attribute, + ACTIONS(7920), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10091), 1, - anon_sym_DASH_GT, - ACTIONS(10151), 1, + ACTIONS(7932), 1, + anon_sym_noexcept, + ACTIONS(7934), 1, + anon_sym_throw, + ACTIONS(7941), 1, anon_sym_requires, - STATE(5983), 1, + ACTIONS(10127), 1, + anon_sym_DASH_GT, + STATE(6286), 1, sym__function_attributes_end, - STATE(6119), 1, + STATE(6295), 1, sym_trailing_return_type, - STATE(9134), 1, + STATE(9080), 1, sym_gnu_asm_expression, - ACTIONS(7178), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(10148), 2, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, + STATE(6170), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(6397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5396), 2, + STATE(6603), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(6497), 3, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - ACTIONS(8424), 18, - aux_sym_preproc_elif_token1, + STATE(4621), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7972), 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_LBRACK, - 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(8422), 22, + ACTIONS(7970), 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, @@ -472262,33 +470716,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_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, - [22248] = 3, + anon_sym_GT2, + [20995] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 14, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7235), 1, + anon_sym_noexcept, + ACTIONS(7237), 1, + anon_sym_throw, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(9998), 1, + anon_sym___attribute__, + ACTIONS(10001), 1, + anon_sym___attribute, + ACTIONS(10004), 1, + anon_sym_DASH_GT, + STATE(5793), 1, + sym_trailing_return_type, + STATE(6153), 1, + sym__function_attributes_end, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4620), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7876), 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_COLON, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6610), 47, + ACTIONS(7874), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472299,25 +470798,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___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_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -472329,34 +470813,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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [22317] = 3, + [21100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 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(6618), 47, + ACTIONS(7674), 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, @@ -472365,12 +470831,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, + anon_sym_GT_GT, 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, + ACTIONS(7672), 35, + 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___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -472384,28 +470868,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_auto, - anon_sym_decltype, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [22386] = 3, + [21169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7769), 26, + ACTIONS(7678), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -472432,7 +470909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7767), 35, + ACTIONS(7676), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472468,10 +470945,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [22455] = 3, + [21238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7765), 26, + ACTIONS(7682), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -472498,7 +470975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7763), 35, + ACTIONS(7680), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472534,25 +471011,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [22524] = 3, + [21307] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 14, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7235), 1, + anon_sym_noexcept, + ACTIONS(7237), 1, + anon_sym_throw, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(10130), 1, + anon_sym___attribute__, + ACTIONS(10133), 1, + anon_sym___attribute, + ACTIONS(10136), 1, + anon_sym_DASH_GT, + STATE(5769), 1, + sym_trailing_return_type, + STATE(6175), 1, + sym__function_attributes_end, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4624), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7972), 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_COLON, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6622), 47, + ACTIONS(7970), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472563,25 +471080,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___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_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -472593,24 +471095,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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [22593] = 6, + [21412] = 3, ACTIONS(3), 1, sym_comment, - STATE(3823), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9607), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(6999), 17, + ACTIONS(7674), 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_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, + ACTIONS(7672), 35, + 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___extension__, anon_sym_const, anon_sym_constexpr, @@ -472626,21 +471150,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - ACTIONS(7528), 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___attribute__, - anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -472648,31 +471157,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7525), 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, - [22668] = 3, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [21481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 26, + ACTIONS(7674), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -472699,7 +471191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7731), 35, + ACTIONS(7672), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472735,68 +471227,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [22737] = 7, + [21550] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10154), 1, - anon_sym_delete, - ACTIONS(10156), 1, - anon_sym_new, - ACTIONS(9601), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7916), 1, + anon_sym___attribute__, + ACTIONS(7918), 1, + anon_sym___attribute, + ACTIONS(7920), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7932), 1, + anon_sym_noexcept, + ACTIONS(7934), 1, + anon_sym_throw, + ACTIONS(10025), 1, + anon_sym_DASH_GT, + ACTIONS(10031), 1, + anon_sym_requires, + STATE(6262), 1, + sym__function_attributes_end, + STATE(6299), 1, + sym_trailing_return_type, + STATE(9080), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10028), 2, + anon_sym_final, + anon_sym_override, + STATE(6170), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6397), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6568), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4548), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7876), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7874), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym___based, + 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_GT2, + [21655] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(9169), 1, + anon_sym_DASH_GT, + STATE(5951), 1, + sym__function_attributes_end, + STATE(6057), 1, + sym_trailing_return_type, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(7168), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7177), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6487), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7876), 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_LBRACK, + 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_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9597), 25, + ACTIONS(7874), 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, anon_sym_AMP_AMP, + anon_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - ACTIONS(9599), 25, + [21750] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(9320), 1, + anon_sym_DASH_GT, + STATE(5952), 1, + sym__function_attributes_end, + STATE(6073), 1, + sym_trailing_return_type, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(7168), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7177), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6487), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(7972), 18, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, 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, @@ -472804,11 +471445,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - [22814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 26, + sym_identifier, + ACTIONS(7970), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -472826,16 +471464,49 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + [21845] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(10096), 1, anon_sym_DASH_GT, - ACTIONS(7779), 35, + STATE(5953), 1, + sym__function_attributes_end, + STATE(6076), 1, + sym_trailing_return_type, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(7168), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7177), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6487), 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + ACTIONS(8404), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -472845,21 +471516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -472868,13 +471525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [22883] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7773), 26, + ACTIONS(8402), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -472892,17 +471543,29 @@ 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_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, - ACTIONS(7771), 35, - aux_sym_preproc_elif_token1, + [21940] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, + anon_sym___attribute, + ACTIONS(10139), 1, + anon_sym_COLON, + STATE(4092), 1, + sym_attribute_specifier, + STATE(4316), 1, + sym__enum_base_clause, + STATE(4377), 1, + sym_enumerator_list, + ACTIONS(8001), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -472911,8 +471574,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___extension__, anon_sym_const, + anon_sym_DOT, + ACTIONS(8003), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -472926,38 +471606,50 @@ 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_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [22952] = 4, + [22023] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7291), 14, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, + anon_sym___attribute, + ACTIONS(10139), 1, + anon_sym_COLON, + STATE(4109), 1, + sym_attribute_specifier, + STATE(4317), 1, + sym__enum_base_clause, + STATE(4381), 1, + sym_enumerator_list, + ACTIONS(8007), 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_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7293), 46, + ACTIONS(8009), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -472968,11 +471660,12 @@ 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -472998,87 +471691,97 @@ 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, - [23023] = 8, + [22106] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6646), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7916), 1, anon_sym___attribute__, - ACTIONS(6648), 1, + ACTIONS(7918), 1, anon_sym___attribute, - ACTIONS(6650), 1, + ACTIONS(7920), 1, anon_sym_LBRACK_LBRACK, - STATE(2353), 2, + ACTIONS(7932), 1, + anon_sym_noexcept, + ACTIONS(7934), 1, + anon_sym_throw, + ACTIONS(10127), 1, + anon_sym_DASH_GT, + ACTIONS(10144), 1, + anon_sym_requires, + STATE(6287), 1, + sym__function_attributes_end, + STATE(6307), 1, + sym_trailing_return_type, + STATE(9080), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10141), 2, + anon_sym_final, + anon_sym_override, + STATE(6170), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4488), 2, + STATE(6397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 20, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6603), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4553), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7972), 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8839), 34, + ACTIONS(7970), 23, 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [23102] = 3, + anon_sym_GT2, + [22211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 26, + ACTIONS(7702), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -473105,7 +471808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7595), 35, + ACTIONS(7700), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473141,86 +471844,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [23171] = 30, + [22280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, + ACTIONS(7706), 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(5619), 1, anon_sym_STAR, - ACTIONS(5621), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(5623), 1, - anon_sym_AMP, - ACTIONS(5627), 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_LBRACE, anon_sym_LBRACK, - ACTIONS(6823), 1, - anon_sym_RPAREN, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4706), 1, - sym_parameter_list, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8785), 1, - sym__declarator, - STATE(9003), 1, - sym__abstract_declarator, - STATE(11554), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 13, + 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, + ACTIONS(7704), 35, + 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___extension__, anon_sym_const, anon_sym_constexpr, @@ -473234,29 +471897,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [23294] = 4, + 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_final, + anon_sym_override, + anon_sym_requires, + [22349] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7291), 14, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7168), 1, + anon_sym___attribute, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7225), 1, + anon_sym___attribute__, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(9341), 1, + anon_sym_DASH_GT, + STATE(5769), 1, + sym_trailing_return_type, + STATE(5971), 1, + sym__function_attributes_end, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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___attribute, anon_sym_COLON, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7293), 46, + ACTIONS(7970), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -473265,24 +471973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_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_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -473294,23 +471990,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_COLON_RBRACK, + [22448] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7820), 1, + anon_sym_noexcept, + ACTIONS(7822), 1, + anon_sym_throw, + ACTIONS(9981), 1, anon_sym_DASH_GT, - sym_auto, - anon_sym_decltype, + ACTIONS(9987), 1, + anon_sym_requires, + STATE(6280), 1, + sym__function_attributes_end, + STATE(6366), 1, + sym_trailing_return_type, + STATE(9110), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9984), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [23365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7601), 26, + STATE(6172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6616), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4568), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7876), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7874), 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, @@ -473322,148 +472063,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_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, - ACTIONS(7599), 35, - 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___extension__, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [23434] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, - anon_sym_LPAREN2, - ACTIONS(5619), 1, - anon_sym_STAR, - ACTIONS(5621), 1, - anon_sym_AMP_AMP, - ACTIONS(5623), 1, - anon_sym_AMP, - ACTIONS(5627), 1, - anon_sym_LBRACK, - ACTIONS(7345), 1, - anon_sym_RPAREN, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4706), 1, - sym_parameter_list, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8804), 1, - sym__declarator, - STATE(8987), 1, - sym__abstract_declarator, - STATE(11554), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [23557] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [22553] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 12, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7820), 1, + anon_sym_noexcept, + ACTIONS(7822), 1, + anon_sym_throw, + ACTIONS(10147), 1, + anon_sym_DASH_GT, + ACTIONS(10153), 1, + anon_sym_requires, + STATE(6266), 1, + sym__function_attributes_end, + STATE(6338), 1, + sym_trailing_return_type, + STATE(9110), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10150), 2, + anon_sym_final, + anon_sym_override, + STATE(6172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4569), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7972), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473472,11 +472131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(6601), 49, + ACTIONS(7970), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -473490,25 +472147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -473520,16 +472159,10 @@ 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_requires, - [23626] = 3, + [22658] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 26, + ACTIONS(7713), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -473556,7 +472189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7561), 35, + ACTIONS(7711), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473592,10 +472225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [23695] = 3, + [22727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7609), 26, + ACTIONS(7717), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -473622,7 +472255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7607), 35, + ACTIONS(7715), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -473658,25 +472291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [23764] = 6, + [22796] = 3, ACTIONS(3), 1, sym_comment, - STATE(3858), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(5995), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(5997), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(9116), 23, + ACTIONS(8776), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -473686,11 +472304,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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -473698,18 +472321,15 @@ 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(9118), 26, + ACTIONS(8778), 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, @@ -473718,7 +472338,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, @@ -473726,113 +472345,198 @@ 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, - [23839] = 3, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [22865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 23, + ACTIONS(7725), 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_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, + ACTIONS(7723), 35, + 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_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym___asm, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8706), 38, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [22934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7729), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACE, + 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_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, + ACTIONS(7727), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [23908] = 18, + [23003] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7176), 1, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7235), 1, + anon_sym_noexcept, + ACTIONS(7237), 1, + anon_sym_throw, + ACTIONS(9227), 1, + anon_sym_requires, + ACTIONS(9998), 1, anon_sym___attribute__, - ACTIONS(7178), 1, + ACTIONS(10001), 1, anon_sym___attribute, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9211), 1, + ACTIONS(10004), 1, anon_sym_DASH_GT, - ACTIONS(9219), 1, - anon_sym_requires, - STATE(5898), 1, + STATE(5770), 1, sym_trailing_return_type, - STATE(6006), 1, + STATE(6165), 1, sym__function_attributes_end, - STATE(9134), 1, + STATE(9083), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(9216), 2, + ACTIONS(9224), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, + STATE(4441), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(4748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5460), 2, + STATE(5370), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 11, + STATE(4584), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7876), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -473841,13 +472545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7791), 29, + ACTIONS(7874), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -473860,8 +472562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -473873,103 +472573,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [24007] = 10, + [23108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7239), 1, - anon_sym___attribute, - ACTIONS(7385), 1, + ACTIONS(7551), 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_LBRACE, - ACTIONS(8028), 1, - anon_sym___attribute__, - ACTIONS(10105), 1, - anon_sym_COLON, - STATE(2118), 1, - sym__enum_base_clause, - STATE(2136), 1, - sym_enumerator_list, - STATE(2200), 1, - sym_attribute_specifier, - ACTIONS(8006), 18, + 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, + ACTIONS(7549), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [23177] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10156), 1, + sym_identifier, + STATE(4076), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(4429), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4435), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8485), 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8008), 36, + sym_literal_suffix, + ACTIONS(8483), 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_RBRACK_RBRACK, 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, anon_sym_COLON_RBRACK, - [24090] = 3, + [23254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 27, + ACTIONS(7725), 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_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, + ACTIONS(7723), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -473977,103 +472771,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8699), 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, - [24159] = 21, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [23323] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7816), 1, - anon_sym___attribute__, - ACTIONS(7818), 1, - anon_sym___attribute, - ACTIONS(7820), 1, + ACTIONS(7170), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7831), 1, + ACTIONS(7235), 1, anon_sym_noexcept, - ACTIONS(7833), 1, + ACTIONS(7237), 1, anon_sym_throw, - ACTIONS(10119), 1, - anon_sym_DASH_GT, - ACTIONS(10161), 1, + ACTIONS(9347), 1, anon_sym_requires, - STATE(6273), 1, - sym__function_attributes_end, - STATE(6295), 1, + ACTIONS(10130), 1, + anon_sym___attribute__, + ACTIONS(10133), 1, + anon_sym___attribute, + ACTIONS(10136), 1, + anon_sym_DASH_GT, + STATE(5775), 1, sym_trailing_return_type, - STATE(9096), 1, + STATE(6174), 1, + sym__function_attributes_end, + STATE(9083), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10158), 2, + ACTIONS(9344), 2, anon_sym_final, anon_sym_override, - STATE(6157), 2, + STATE(4441), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6403), 2, + STATE(4748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6571), 2, + STATE(5296), 2, sym__function_postfix, sym_requires_clause, - STATE(4577), 3, + STATE(4585), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7968), 12, + ACTIONS(7972), 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_LBRACK, anon_sym_DOT, - ACTIONS(7966), 23, + ACTIONS(7970), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -474084,7 +472844,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -474096,47 +472859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [24264] = 18, + [23428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7176), 1, - anon_sym___attribute__, - ACTIONS(7178), 1, - anon_sym___attribute, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9287), 1, - anon_sym_DASH_GT, - ACTIONS(9293), 1, - anon_sym_requires, - STATE(5907), 1, - sym_trailing_return_type, - STATE(6012), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9290), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 11, + ACTIONS(6649), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474145,13 +472871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_const, anon_sym_DOT, - ACTIONS(7966), 29, + ACTIONS(6656), 49, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474163,9 +472889,25 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -474177,55 +472919,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [24363] = 7, + anon_sym_DASH_GT, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [23497] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10164), 1, - sym_identifier, - STATE(4050), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(3889), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3899), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8456), 18, - aux_sym_preproc_elif_token1, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + ACTIONS(10158), 1, + anon_sym_COLON, + ACTIONS(10160), 1, + anon_sym_LBRACE, + STATE(4319), 1, + sym__enum_base_clause, + STATE(4339), 1, + sym_enumerator_list, + STATE(4476), 1, + sym_attribute_specifier, + ACTIONS(8001), 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_COLON, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(8003), 42, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_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, + [23580] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + ACTIONS(10158), 1, + anon_sym_COLON, + ACTIONS(10160), 1, + anon_sym_LBRACE, + STATE(4313), 1, + sym__enum_base_clause, + STATE(4355), 1, + sym_enumerator_list, + STATE(4486), 1, + sym_attribute_specifier, + ACTIONS(8007), 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, - sym_literal_suffix, - ACTIONS(8454), 29, + ACTIONS(8009), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474234,24 +473039,42 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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_COLON_RBRACK, - [24440] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [23663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 26, + ACTIONS(7737), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -474278,7 +473101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(7623), 35, + ACTIONS(7735), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -474314,10 +473137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [24509] = 3, + [23732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 25, + ACTIONS(8786), 27, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474327,11 +473150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, @@ -474343,7 +473168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8752), 36, + ACTIONS(8788), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -474351,9 +473176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -474361,7 +473184,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, @@ -474375,155 +473197,223 @@ static const uint16_t ts_small_parse_table[] = { 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, - [24578] = 18, + [23801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7176), 1, - anon_sym___attribute__, - ACTIONS(7178), 1, - anon_sym___attribute, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10131), 1, - anon_sym_DASH_GT, - ACTIONS(10169), 1, - anon_sym_requires, - STATE(5908), 1, - sym_trailing_return_type, - STATE(6013), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10166), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(6656), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6658), 22, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8422), 29, + ACTIONS(6651), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, + anon_sym___attribute__, + 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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_COLON_RBRACK, - [24677] = 21, + anon_sym_DASH_GT, + [23872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7816), 1, + STATE(4129), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10109), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7062), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7060), 42, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(7818), 1, anon_sym___attribute, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7831), 1, - anon_sym_noexcept, - ACTIONS(7833), 1, - anon_sym_throw, - ACTIONS(9987), 1, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [23945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7749), 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_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, - ACTIONS(10082), 1, - anon_sym_requires, - STATE(6278), 1, - sym__function_attributes_end, - STATE(6292), 1, - sym_trailing_return_type, - STATE(9096), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10079), 2, - anon_sym_final, - anon_sym_override, - STATE(6157), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6403), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6697), 2, - sym__function_postfix, - sym_requires_clause, - STATE(4575), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7789), 12, + ACTIONS(7747), 35, + 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_LBRACK, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7791), 23, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7753), 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, @@ -474532,40 +473422,109 @@ 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_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, + ACTIONS(7751), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24083] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7763), 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_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_GT2, - [24782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8665), 25, + anon_sym_DASH_GT, + ACTIONS(7761), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -474573,92 +473532,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8667), 36, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7767), 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_LBRACE, 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, - 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, - [24851] = 21, + ACTIONS(7765), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24221] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7180), 1, + ACTIONS(7168), 1, + anon_sym___attribute, + ACTIONS(7170), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7192), 1, - anon_sym_noexcept, - ACTIONS(7194), 1, - anon_sym_throw, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(10122), 1, + ACTIONS(7225), 1, anon_sym___attribute__, - ACTIONS(10125), 1, - anon_sym___attribute, - ACTIONS(10128), 1, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(9221), 1, anon_sym_DASH_GT, - STATE(5857), 1, + STATE(5793), 1, sym_trailing_return_type, - STATE(6192), 1, + STATE(5987), 1, sym__function_attributes_end, - STATE(9134), 1, + STATE(9083), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7219), 2, + ACTIONS(7272), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, + STATE(4441), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(4748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5532), 2, + STATE(5370), 2, sym__function_postfix, sym_requires_clause, - STATE(4570), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7968), 10, + ACTIONS(7876), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -474667,11 +473650,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7966), 25, + ACTIONS(7874), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -474684,6 +473669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -474695,7 +473682,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [24956] = 3, + anon_sym_COLON_RBRACK, + [24320] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7777), 26, @@ -474761,20 +473749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [25025] = 8, + [24389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 1, - anon_sym_decltype, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - sym_auto, - STATE(4121), 1, - sym_decltype_auto, - ACTIONS(7225), 24, + ACTIONS(7781), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -474792,14 +473770,16 @@ 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_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, - ACTIONS(7223), 32, + ACTIONS(7779), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -474832,18 +473812,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - [25104] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [24458] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1953), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10174), 19, + ACTIONS(7258), 1, + anon_sym___attribute, + ACTIONS(7385), 1, + anon_sym_LBRACE, + ACTIONS(8024), 1, + anon_sym___attribute__, + ACTIONS(10107), 1, + anon_sym_COLON, + STATE(2124), 1, + sym__enum_base_clause, + STATE(2157), 1, + sym_enumerator_list, + STATE(2196), 1, + sym_attribute_specifier, + ACTIONS(8001), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -474857,16 +473846,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(10172), 37, + ACTIONS(8003), 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, @@ -474875,6 +473864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -474897,19 +473887,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_COLON_RBRACK, - [25180] = 3, + [24541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 29, + ACTIONS(7189), 30, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP, + anon_sym_LT, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACE, @@ -474934,7 +473922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(7085), 31, + ACTIONS(7187), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -474966,175 +473954,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [25248] = 29, + [24610] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7820), 1, + anon_sym_noexcept, + ACTIONS(7822), 1, + anon_sym_throw, + ACTIONS(7824), 1, + anon_sym_requires, + ACTIONS(9981), 1, + anon_sym_DASH_GT, + STATE(6259), 1, + sym__function_attributes_end, + STATE(6306), 1, + sym_trailing_return_type, + STATE(9110), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7818), 2, + anon_sym_final, + anon_sym_override, + STATE(6172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6616), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4579), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7876), 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_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10178), 1, + anon_sym_DOT, + ACTIONS(7874), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10180), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10182), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8541), 1, - sym__declarator, - STATE(11622), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5416), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6427), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [25368] = 29, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [24715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(7648), 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(3444), 1, - anon_sym_TILDE, - ACTIONS(3446), 1, anon_sym_STAR, - ACTIONS(3448), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_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, + ACTIONS(7646), 35, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8785), 1, - sym__declarator, - STATE(11554), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5498), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6427), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 13, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -475148,86 +474091,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [25488] = 29, + 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_final, + anon_sym_override, + anon_sym_requires, + [24784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(6649), 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(6656), 47, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3446), 1, anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8826), 1, - sym__declarator, - STATE(11554), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4152), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5390), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 13, + 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_const, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -475239,28 +474150,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [25608] = 6, + 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, + [24853] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(8883), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7820), 1, + anon_sym_noexcept, + ACTIONS(7822), 1, + anon_sym_throw, + ACTIONS(7824), 1, + anon_sym_requires, + ACTIONS(10147), 1, + anon_sym_DASH_GT, + STATE(6281), 1, + sym__function_attributes_end, + STATE(6356), 1, + sym_trailing_return_type, + STATE(9110), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7818), 2, + anon_sym_final, + anon_sym_override, + STATE(6172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + STATE(4592), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7972), 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, - STATE(4130), 1, - sym_template_argument_list, - ACTIONS(7371), 11, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(7970), 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_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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [24958] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7042), 1, + anon_sym_decltype, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(10162), 1, + sym_auto, + STATE(4527), 1, + sym_decltype_auto, + ACTIONS(7246), 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_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(5657), 46, + ACTIONS(7248), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -475271,14 +474290,11 @@ 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -475306,19 +474322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [25682] = 7, + [25035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 1, - anon_sym_decltype, - ACTIONS(7457), 1, - anon_sym_LBRACE, - ACTIONS(9585), 1, - sym_auto, - STATE(4121), 1, - sym_decltype_auto, - ACTIONS(7225), 24, + ACTIONS(7600), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -475336,14 +474345,16 @@ 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_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, - ACTIONS(7223), 32, + ACTIONS(7598), 35, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -475376,10 +474387,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - [25758] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [25104] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10170), 1, + anon_sym_template, + STATE(2105), 1, + sym_string_literal, + ACTIONS(10168), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10166), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10164), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_operator, + [25178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 29, + ACTIONS(10174), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -475409,7 +474491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(3310), 31, + ACTIONS(10172), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -475441,18 +474523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [25826] = 7, + [25246] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1953), 1, + STATE(1947), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10186), 19, + ACTIONS(10178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475472,7 +474554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10184), 37, + ACTIONS(10176), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475510,10 +474592,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [25902] = 3, + [25322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 29, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(3300), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [25390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 22, + ACTIONS(8919), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -475536,7 +474683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8940), 38, + ACTIONS(8921), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -475575,326 +474722,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [25970] = 7, + [25458] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1953), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10190), 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, - ACTIONS(10188), 37, + ACTIONS(6772), 1, + anon_sym_decltype, + ACTIONS(7479), 1, + anon_sym_LBRACE, + ACTIONS(9543), 1, + sym_auto, + STATE(4089), 1, + sym_decltype_auto, + ACTIONS(7248), 24, 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_RBRACK_RBRACK, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [26046] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1953), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10194), 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, - ACTIONS(10192), 37, - 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_RBRACK_RBRACK, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [26122] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - anon_sym___attribute__, - ACTIONS(6683), 1, - anon_sym___attribute, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - STATE(2375), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4587), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 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(8839), 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_QMARK, - anon_sym_STAR_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [26200] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1953), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10198), 19, + ACTIONS(7246), 32, + 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_COLON, - anon_sym_EQ, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_xor, - anon_sym_DOT, - ACTIONS(10196), 37, - 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_RBRACK_RBRACK, - 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_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_requires, - anon_sym_COLON_RBRACK, - [26276] = 7, + anon_sym_DOT, + sym_identifier, + [25534] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(6817), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(6835), 1, anon_sym_LBRACK, - STATE(1953), 1, + ACTIONS(7266), 1, + anon_sym_STAR, + ACTIONS(7268), 1, + anon_sym_AMP_AMP, + ACTIONS(7270), 1, + anon_sym_AMP, + STATE(1974), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3634), 1, sym__function_declarator_seq, - ACTIONS(10202), 19, + STATE(4771), 1, + sym__abstract_declarator, + STATE(3633), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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_COLON, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10200), 37, + ACTIONS(9281), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -475917,64 +474865,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [26352] = 3, + [25620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 24, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6656), 29, + 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_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(8752), 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + 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, @@ -475985,217 +474896,195 @@ 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, - [26420] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1953), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10206), 19, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6649), 31, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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, - ACTIONS(10204), 37, - 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_RBRACK_RBRACK, - 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, - anon_sym_final, - anon_sym_override, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - anon_sym_COLON_RBRACK, - [26496] = 7, + sym_this, + [25688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1953), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10210), 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, - ACTIONS(10208), 37, + STATE(4154), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10182), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7624), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [26572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8979), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7622), 41, 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___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8981), 38, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [25760] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4154), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10184), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7062), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_COLON_COLON, 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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [26640] = 3, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7060), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [25832] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 24, + ACTIONS(10187), 1, + anon_sym_delete, + ACTIONS(10189), 1, + anon_sym_new, + ACTIONS(9663), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9661), 24, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -476206,7 +475095,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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -476214,20 +475107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8667), 36, + ACTIONS(9659), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476243,28 +475132,84 @@ 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, - [26708] = 3, + anon_sym_DASH_GT, + [25908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3116), 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_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, + ACTIONS(3126), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [25976] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10214), 29, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7329), 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_DASH_DASH, @@ -476287,7 +475232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(10212), 31, + ACTIONS(7327), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -476319,257 +475264,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [26776] = 29, + [26046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7329), 28, anon_sym_LPAREN2, - ACTIONS(3444), 1, + anon_sym_BANG, anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, - sym_identifier, - ACTIONS(10218), 1, anon_sym_STAR, - ACTIONS(10220), 1, - anon_sym_AMP_AMP, - ACTIONS(10222), 1, anon_sym_AMP, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8528), 1, - sym__declarator, - STATE(11612), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4249), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5425), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [26896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9007), 22, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7327), 31, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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___extension__, 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(9009), 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_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, + 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_typename, anon_sym_asm, anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [26964] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, - sym_identifier, - ACTIONS(10218), 1, - anon_sym_STAR, - ACTIONS(10220), 1, - anon_sym_AMP_AMP, - ACTIONS(10222), 1, - anon_sym_AMP, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8523), 1, - sym__declarator, - STATE(11612), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4176), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5295), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [27084] = 3, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10228), 29, + ACTIONS(7329), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -476599,7 +475363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(10226), 31, + ACTIONS(7327), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -476631,60 +475395,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27152] = 3, + [26184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 24, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7135), 29, + 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_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(8659), 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + 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, @@ -476695,11 +475426,56 @@ 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, - [27220] = 3, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7133), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26252] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 24, + ACTIONS(6704), 1, + anon_sym___attribute__, + ACTIONS(6706), 1, + anon_sym___attribute, + ACTIONS(6708), 1, + anon_sym_LBRACK_LBRACK, + STATE(2366), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4591), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8870), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -476713,28 +475489,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8699), 36, + ACTIONS(8872), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -476746,116 +475516,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_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, - [27288] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, - sym_identifier, - ACTIONS(10218), 1, - anon_sym_STAR, - ACTIONS(10220), 1, - anon_sym_AMP_AMP, - ACTIONS(10222), 1, - anon_sym_AMP, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8541), 1, - sym__declarator, - STATE(11612), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5344), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6427), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [27408] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [26330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10232), 29, + ACTIONS(7333), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -476885,7 +475563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(10230), 31, + ACTIONS(7331), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -476917,92 +475595,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [27476] = 8, + [26398] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6719), 1, - anon_sym___attribute__, - ACTIONS(6721), 1, - anon_sym___attribute, - ACTIONS(6723), 1, - anon_sym_LBRACK_LBRACK, - STATE(2388), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4556), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 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(8835), 34, + ACTIONS(7115), 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_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, + ACTIONS(7113), 35, + 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___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, anon_sym_requires, - [27554] = 8, + [26466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6719), 1, + ACTIONS(10191), 1, + anon_sym_template, + STATE(2107), 1, + sym_string_literal, + ACTIONS(10168), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10166), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10164), 46, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(6721), 1, anon_sym___attribute, - ACTIONS(6723), 1, + 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_operator, + [26540] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6704), 1, + anon_sym___attribute__, + ACTIONS(6706), 1, + anon_sym___attribute, + ACTIONS(6708), 1, anon_sym_LBRACK_LBRACK, - STATE(2388), 2, + STATE(2366), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4563), 2, + STATE(4556), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 19, + ACTIONS(8854), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -477022,7 +475763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8839), 34, + ACTIONS(8856), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -477057,146 +475798,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [27632] = 12, + [26618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, + ACTIONS(10195), 29, anon_sym_LPAREN2, - ACTIONS(6839), 1, - anon_sym_LBRACK, - ACTIONS(7162), 1, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(7164), 1, - anon_sym_AMP_AMP, - ACTIONS(7166), 1, anon_sym_AMP, - STATE(1979), 1, - sym_parameter_list, - STATE(3626), 1, - sym__function_declarator_seq, - STATE(4805), 1, - sym__abstract_declarator, - STATE(3625), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - 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, - ACTIONS(9427), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - 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, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [27718] = 29, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(10193), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [26686] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10197), 1, + anon_sym_STAR, + ACTIONS(10199), 1, + anon_sym_AMP_AMP, + ACTIONS(10201), 1, + anon_sym_AMP, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8785), 1, + STATE(8509), 1, sym__declarator, - STATE(11554), 1, + STATE(11637), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4188), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5498), 2, + STATE(5376), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477208,7 +475940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -477222,72 +475954,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [27838] = 29, + [26806] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8528), 1, + STATE(8826), 1, sym__declarator, - STATE(10900), 1, + STATE(10737), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4256), 2, + STATE(4232), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5437), 2, + STATE(5440), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477299,7 +476031,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -477313,46 +476045,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [27958] = 3, + [26926] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(5649), 1, + sym_auto, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(4249), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4286), 1, + sym_template_argument_list, + STATE(4918), 1, + sym_decltype_auto, + ACTIONS(5639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5617), 9, anon_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_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_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, - ACTIONS(3128), 35, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5609), 40, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -477367,83 +476115,75 @@ 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_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, - [28026] = 29, + anon_sym_template, + anon_sym_operator, + [27010] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10213), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10215), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10217), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7986), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8785), 1, + STATE(8534), 1, sym__declarator, - STATE(10743), 1, + STATE(10894), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4185), 2, + STATE(4237), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5269), 2, + STATE(5446), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477455,7 +476195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -477469,108 +476209,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [28146] = 29, + [27130] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, - sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + STATE(1947), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10221), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(10242), 1, - anon_sym_AMP_AMP, - ACTIONS(10244), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8804), 1, - sym__declarator, - STATE(10743), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5275), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6427), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [28266] = 5, + 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, + ACTIONS(10219), 37, + 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_RBRACK_RBRACK, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [27206] = 5, ACTIONS(3), 1, sym_comment, - STATE(4225), 1, + STATE(4255), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10107), 4, + ACTIONS(10105), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7719), 14, + ACTIONS(7586), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -477585,7 +476303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7717), 41, + ACTIONS(7584), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -477627,45 +476345,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [28338] = 3, + [27278] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 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(9393), 1, anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10225), 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, + ACTIONS(10223), 37, + 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_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - ACTIONS(7077), 35, - aux_sym_preproc_elif_token1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [27354] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10229), 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, + ACTIONS(10227), 37, + 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_RBRACK_RBRACK, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [27430] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10203), 1, + sym_identifier, + ACTIONS(10205), 1, + anon_sym_STAR, + ACTIONS(10207), 1, + anon_sym_AMP_AMP, + ACTIONS(10209), 1, + anon_sym_AMP, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7988), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8773), 1, + sym__declarator, + STATE(10737), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4176), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5434), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -477679,85 +476574,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_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, - [28406] = 29, + [27550] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10205), 1, + anon_sym_STAR, + ACTIONS(10207), 1, + anon_sym_AMP_AMP, + ACTIONS(10209), 1, + anon_sym_AMP, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8804), 1, + STATE(8769), 1, sym__declarator, - STATE(11554), 1, + STATE(10737), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5304), 2, + STATE(5466), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(6415), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477769,7 +476651,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -477783,137 +476665,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [28526] = 3, + [27670] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 29, + ACTIONS(9393), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10233), 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, + ACTIONS(10231), 37, + 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_COLON_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, 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, - 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6632), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_requires, - sym_this, - [28594] = 29, + anon_sym_COLON_RBRACK, + [27746] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - ACTIONS(10246), 1, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10248), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10250), 1, + ACTIONS(10239), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8823), 1, + STATE(8534), 1, sym__declarator, - STATE(10837), 1, + STATE(11606), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4259), 2, + STATE(4214), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5445), 2, + STATE(5430), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -477925,7 +476811,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -477939,267 +476825,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [28714] = 3, + [27866] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 29, + ACTIONS(9393), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10243), 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, + ACTIONS(10241), 37, + 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_COLON_COLON, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, 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, - 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6612), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_requires, - sym_this, - [28782] = 3, + anon_sym_COLON_RBRACK, + [27942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6626), 29, - anon_sym_LPAREN2, - anon_sym_BANG, + ACTIONS(9918), 1, + anon_sym_new, + ACTIONS(10245), 1, + anon_sym_delete, + ACTIONS(9663), 3, anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(6624), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(9657), 6, + anon_sym_STAR, + anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [28850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6630), 29, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6628), 31, + anon_sym_operator, + ACTIONS(9661), 24, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [28918] = 29, + 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(9659), 25, + 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_RBRACK_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, + [28018] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - ACTIONS(10246), 1, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10248), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10250), 1, + ACTIONS(10239), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8808), 1, + STATE(8509), 1, sym__declarator, - STATE(10837), 1, + STATE(11606), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4195), 2, + STATE(4217), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5292), 2, + STATE(5461), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -478211,7 +477040,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -478225,72 +477054,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [29038] = 29, + [28138] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10246), 1, + ACTIONS(10247), 1, anon_sym_STAR, - ACTIONS(10248), 1, + ACTIONS(10249), 1, anon_sym_AMP_AMP, - ACTIONS(10250), 1, + ACTIONS(10251), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8816), 1, + STATE(8815), 1, sym__declarator, - STATE(10837), 1, + STATE(10831), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5297), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(4242), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + STATE(5456), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -478302,7 +477131,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -478316,280 +477145,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [29158] = 3, + [28258] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 29, + ACTIONS(6675), 1, + anon_sym___attribute__, + ACTIONS(6677), 1, + anon_sym___attribute, + ACTIONS(6679), 1, + anon_sym_LBRACK_LBRACK, + STATE(2374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4623), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8870), 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(8872), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [28336] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6545), 1, + anon_sym_requires, + ACTIONS(8241), 1, + anon_sym_DASH_GT, + STATE(3033), 1, + sym_trailing_return_type, + ACTIONS(6543), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7874), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6608), 31, + anon_sym_DOT_STAR, + [28416] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6545), 1, + anon_sym_requires, + ACTIONS(8421), 1, + anon_sym_DASH_GT, + STATE(3067), 1, + sym_trailing_return_type, + ACTIONS(6543), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3690), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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, + ACTIONS(7970), 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_SEMI, + anon_sym___attribute__, anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29226] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [28496] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 29, - anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, + ACTIONS(6545), 1, + anon_sym_requires, + ACTIONS(8884), 1, + anon_sym_DASH_GT, + STATE(3071), 1, + sym_trailing_return_type, + ACTIONS(6543), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3654), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8402), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(6616), 31, + anon_sym_DOT_STAR, + [28576] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6545), 1, + anon_sym_requires, + ACTIONS(10253), 1, + anon_sym_DASH_GT, + STATE(3073), 1, + sym_trailing_return_type, + ACTIONS(6543), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3595), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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, + ACTIONS(8989), 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_SEMI, + anon_sym___attribute__, anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29294] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [28656] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 29, + STATE(4227), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10256), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7686), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_BANG, anon_sym_TILDE, anon_sym_STAR, - anon_sym_AMP, + anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_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, - anon_sym_CARET_CARET, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(6620), 31, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(7684), 41, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [29362] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10252), 1, - anon_sym_STAR, - ACTIONS(10254), 1, - anon_sym_AMP_AMP, - ACTIONS(10256), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8823), 1, - sym__declarator, - STATE(11008), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4261), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5450), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 13, - anon_sym___extension__, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -478602,29 +477560,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [29482] = 11, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [28728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, - sym_auto, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(4270), 1, + STATE(4231), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4318), 1, - sym_template_argument_list, - STATE(4991), 1, - sym_decltype_auto, - ACTIONS(5659), 4, + ACTIONS(10258), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(5643), 9, + ACTIONS(7692), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -478632,9 +477585,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(5636), 40, + ACTIONS(7690), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -478673,74 +477630,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + anon_sym_decltype, anon_sym_template, anon_sym_operator, - [29566] = 29, + [28800] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7890), 1, + anon_sym_requires, + ACTIONS(8241), 1, + anon_sym_DASH_GT, + STATE(3061), 1, + sym_trailing_return_type, + ACTIONS(7887), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3658), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7874), 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_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [28880] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7980), 1, + anon_sym_requires, + ACTIONS(8421), 1, + anon_sym_DASH_GT, + STATE(3062), 1, + sym_trailing_return_type, + ACTIONS(7977), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3690), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(7970), 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_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [28960] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8412), 1, + anon_sym_requires, + ACTIONS(8884), 1, + anon_sym_DASH_GT, + STATE(3063), 1, + sym_trailing_return_type, + ACTIONS(8409), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3654), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8402), 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_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [29040] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9939), 1, + anon_sym_requires, + ACTIONS(10253), 1, + anon_sym_DASH_GT, + STATE(3064), 1, + sym_trailing_return_type, + ACTIONS(9936), 2, + anon_sym_final, + anon_sym_override, + STATE(3431), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(3595), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8989), 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_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [29120] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1947), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10262), 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, + ACTIONS(10260), 37, + 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_RBRACK_RBRACK, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [29196] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10247), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10249), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10251), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8523), 1, + STATE(8775), 1, sym__declarator, - STATE(10900), 1, + STATE(10831), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4202), 2, + STATE(4268), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5316), 2, + STATE(5267), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -478752,7 +478063,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -478766,72 +478077,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [29686] = 29, + [29316] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, - anon_sym_STAR, - ACTIONS(10236), 1, - anon_sym_AMP_AMP, - ACTIONS(10238), 1, - anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8541), 1, + STATE(8769), 1, sym__declarator, - STATE(10900), 1, + STATE(11132), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5319), 2, + STATE(5356), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(6415), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -478843,7 +478154,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -478857,96 +478168,710 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [29806] = 4, + [29436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9019), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + 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(9021), 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_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [29504] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9023), 22, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___attribute, + 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(9025), 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_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [29572] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1942), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10223), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10225), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [29648] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1942), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10266), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10264), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [29724] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1942), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10176), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10178), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [29800] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1942), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10219), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10221), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [29876] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1942), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10227), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10229), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [29952] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1942), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10231), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10233), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [30028] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1942), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10241), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10243), 29, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [30104] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 28, + ACTIONS(9393), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1942), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10260), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(7459), 31, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10262), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, + anon_sym_final, + anon_sym_override, anon_sym_requires, - sym_this, - [29876] = 6, + [30180] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 1, - anon_sym_decltype, - ACTIONS(10089), 1, - sym_auto, - STATE(4464), 1, - sym_decltype_auto, - ACTIONS(7223), 13, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(8927), 1, + anon_sym_LT, + STATE(4123), 1, + sym_template_argument_list, + ACTIONS(7379), 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___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 44, + ACTIONS(5637), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -478957,11 +478882,14 @@ 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___extension__, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -478989,29 +478917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [29950] = 7, + [30254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10258), 1, - anon_sym_delete, - ACTIONS(10260), 1, - anon_sym_new, - ACTIONS(9601), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 24, + ACTIONS(8776), 24, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -479022,11 +478935,7 @@ 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, @@ -479034,16 +478943,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 25, + anon_sym_DASH_GT, + sym_identifier, + sym_literal_suffix, + ACTIONS(8778), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -479059,436 +478972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [30026] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4228), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7725), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7723), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [30098] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10264), 1, - anon_sym_STAR, - ACTIONS(10266), 1, - anon_sym_AMP_AMP, - ACTIONS(10268), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8785), 1, - sym__declarator, - STATE(10957), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4208), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5329), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [30218] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10264), 1, - anon_sym_STAR, - ACTIONS(10266), 1, - anon_sym_AMP_AMP, - ACTIONS(10268), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8804), 1, - sym__declarator, - STATE(10957), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5337), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6427), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [30338] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10276), 1, - anon_sym_template, - STATE(2111), 1, - sym_string_literal, - ACTIONS(10274), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10272), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(10270), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_operator, - [30412] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10252), 1, - anon_sym_STAR, - ACTIONS(10254), 1, - anon_sym_AMP_AMP, - ACTIONS(10256), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8808), 1, - sym__declarator, - STATE(11008), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4212), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5345), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [30532] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10280), 29, - 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_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, @@ -479499,106 +478982,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(10278), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [30600] = 29, + anon_sym_DASH_GT_STAR, + [30322] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10252), 1, + ACTIONS(10268), 1, anon_sym_STAR, - ACTIONS(10254), 1, + ACTIONS(10270), 1, anon_sym_AMP_AMP, - ACTIONS(10256), 1, + ACTIONS(10272), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8816), 1, + STATE(8768), 1, sym__declarator, - STATE(11008), 1, + STATE(11002), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5350), 2, + STATE(5315), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(6415), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -479610,7 +479060,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -479624,77 +479074,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [30720] = 5, + [30442] = 8, ACTIONS(3), 1, sym_comment, - STATE(4228), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7729), 14, + ACTIONS(6675), 1, + anon_sym___attribute__, + ACTIONS(6677), 1, + anon_sym___attribute, + ACTIONS(6679), 1, + anon_sym_LBRACK_LBRACK, + STATE(2374), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4596), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8854), 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(8856), 32, 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_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_final, + anon_sym_override, anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7727), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [30792] = 3, + anon_sym_requires, + [30520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 29, + ACTIONS(6588), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -479724,7 +479177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(6594), 31, + ACTIONS(6586), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -479756,18 +479209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [30860] = 4, + [30588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7293), 28, + ACTIONS(6604), 29, 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_DASH_DASH, @@ -479790,7 +479242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(7291), 31, + ACTIONS(6602), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -479822,32 +479274,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [30930] = 5, + [30656] = 6, ACTIONS(3), 1, sym_comment, - STATE(4247), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10282), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7557), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10274), 1, + anon_sym_template, + STATE(2116), 1, + sym_string_literal, + ACTIONS(10168), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10166), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7555), 41, + ACTIONS(10164), 46, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -479856,12 +479304,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, @@ -479885,255 +479331,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [31002] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7293), 28, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(7291), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, 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_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, anon_sym_typename, - 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_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [31072] = 3, + anon_sym_explicit, + anon_sym_operator, + [30730] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 29, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, - anon_sym_BANG, + ACTIONS(3442), 1, anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(7291), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(3458), 1, anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [31140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7106), 29, - 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_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, - anon_sym_CARET_CARET, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(7104), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, + ACTIONS(10203), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [31208] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4248), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10284), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7785), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + ACTIONS(10235), 1, anon_sym_STAR, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7783), 41, + ACTIONS(10239), 1, anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7988), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8509), 1, + sym__declarator, + STATE(11606), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5461), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, @@ -480146,55 +479433,85 @@ 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_template, + [30850] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, anon_sym_operator, - [31280] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10286), 1, - anon_sym_template, - STATE(2116), 1, - sym_string_literal, - ACTIONS(10274), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10272), 7, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, + ACTIONS(3442), 1, anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10276), 1, anon_sym_STAR, + ACTIONS(10278), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(10270), 46, + ACTIONS(10280), 1, anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8826), 1, + sym__declarator, + STATE(10951), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4240), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5451), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, @@ -480207,23 +479524,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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_operator, - [31354] = 3, + [30970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7303), 29, + ACTIONS(6608), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -480253,7 +479557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(7301), 31, + ACTIONS(6606), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -480285,72 +479589,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [31422] = 29, + [31038] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10239), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8523), 1, + STATE(8517), 1, sym__declarator, - STATE(11622), 1, + STATE(11606), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5384), 2, + STATE(5297), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(6415), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -480362,7 +479666,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -480376,72 +479680,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [31542] = 29, + [31158] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10268), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10270), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10272), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7986), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8826), 1, + STATE(8815), 1, sym__declarator, - STATE(10743), 1, + STATE(11002), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4255), 2, + STATE(4243), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5434), 2, + STATE(5459), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -480453,69 +479757,8 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 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, - [31662] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4228), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7677), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7675), 41, - anon_sym_AMP, + ACTIONS(3368), 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, @@ -480528,196 +479771,45 @@ 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_template, - anon_sym_operator, - [31734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3389), 29, - 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_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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(3384), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, - anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [31802] = 7, + [31278] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(10288), 1, - anon_sym_delete, - ACTIONS(9601), 3, - anon_sym_TILDE, + ACTIONS(7119), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 24, + ACTIONS(9487), 1, + anon_sym_LT, + STATE(4275), 1, + sym_template_argument_list, + ACTIONS(7117), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - ACTIONS(9597), 25, + ACTIONS(7122), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_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, - [31878] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4228), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10290), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7001), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6999), 41, - 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_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, @@ -480731,14 +479823,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [31950] = 3, + 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, + [31352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10295), 29, + ACTIONS(6592), 29, anon_sym_LPAREN2, anon_sym_BANG, anon_sym_TILDE, @@ -480768,7 +479872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_u8R_DQUOTE, anon_sym_CARET_CARET, anon_sym_LBRACK_COLON, - ACTIONS(10293), 31, + ACTIONS(6590), 31, anon_sym_DASH, anon_sym_PLUS, anon_sym___extension__, @@ -480800,822 +479904,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, anon_sym_requires, sym_this, - [32018] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_requires, - ACTIONS(8336), 1, - anon_sym_DASH_GT, - STATE(3071), 1, - sym_trailing_return_type, - ACTIONS(6561), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3628), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7791), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [32098] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_requires, - ACTIONS(8397), 1, - anon_sym_DASH_GT, - STATE(3029), 1, - sym_trailing_return_type, - ACTIONS(6561), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3655), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7966), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [32178] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_requires, - ACTIONS(8976), 1, - anon_sym_DASH_GT, - STATE(2973), 1, - sym_trailing_return_type, - ACTIONS(6561), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3675), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8422), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [32258] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6563), 1, - anon_sym_requires, - ACTIONS(10297), 1, - anon_sym_DASH_GT, - STATE(2977), 1, - sym_trailing_return_type, - ACTIONS(6561), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3687), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8907), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [32338] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7873), 1, - anon_sym_requires, - ACTIONS(8336), 1, - anon_sym_DASH_GT, - STATE(3075), 1, - sym_trailing_return_type, - ACTIONS(7870), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3628), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7791), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [32418] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7976), 1, - anon_sym_requires, - ACTIONS(8397), 1, - anon_sym_DASH_GT, - STATE(3076), 1, - sym_trailing_return_type, - ACTIONS(7973), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3655), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7966), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [32498] = 9, + [31420] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8461), 1, - anon_sym_requires, - ACTIONS(8976), 1, - anon_sym_DASH_GT, - STATE(3077), 1, - sym_trailing_return_type, - ACTIONS(8458), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3675), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8422), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 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(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [32578] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9844), 1, - anon_sym_requires, - ACTIONS(10297), 1, - anon_sym_DASH_GT, - STATE(3078), 1, - sym_trailing_return_type, - ACTIONS(9841), 2, - anon_sym_final, - anon_sym_override, - STATE(3433), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(3687), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(10213), 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___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8907), 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_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [32658] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1947), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10184), 27, - 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(10215), 1, 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10186), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10217), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [32734] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1947), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10188), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10190), 29, - aux_sym_preproc_elif_token1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8509), 1, + sym__declarator, + STATE(10894), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4226), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5282), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [31540] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7119), 1, + anon_sym_COLON_COLON, + ACTIONS(8927), 1, + anon_sym_LT, + STATE(3740), 1, + sym_template_argument_list, + ACTIONS(7117), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_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___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [32810] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1947), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10192), 27, + ACTIONS(7122), 46, 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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(10194), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [32886] = 7, + [31614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(10282), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1947), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10172), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10174), 29, - aux_sym_preproc_elif_token1, + ACTIONS(8969), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -481629,44 +480082,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_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___asm, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [32962] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1947), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10196), 27, + anon_sym_DASH_GT, + ACTIONS(8971), 37, 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_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -481678,270 +480113,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10198), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, anon_sym_final, anon_sym_override, anon_sym_requires, - [33038] = 7, + anon_sym_DASH_GT_STAR, + [31684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(6598), 29, anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1947), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10200), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10202), 29, - aux_sym_preproc_elif_token1, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6596), 31, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - anon_sym_final, - anon_sym_override, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [33114] = 7, + sym_this, + [31752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(6612), 29, anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1947), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10204), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, + 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_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10206), 29, - aux_sym_preproc_elif_token1, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6610), 31, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_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___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - anon_sym_final, - anon_sym_override, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [33190] = 7, + sym_this, + [31820] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, anon_sym_LBRACK, - STATE(1947), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10208), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10210), 29, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(10213), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(10215), 1, + anon_sym_AMP_AMP, + ACTIONS(10217), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [33266] = 6, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8517), 1, + sym__declarator, + STATE(10894), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5287), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [31940] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10300), 1, - anon_sym_template, - STATE(2123), 1, - sym_string_literal, - ACTIONS(10274), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(10272), 7, + STATE(4154), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10182), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7733), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(10270), 46, + ACTIONS(7731), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -481950,10 +480384,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, @@ -481977,43 +480413,123 @@ 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, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, + anon_sym_template, anon_sym_operator, - [33340] = 5, + [32012] = 29, ACTIONS(3), 1, sym_comment, - STATE(4228), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7695), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10197), 1, + anon_sym_STAR, + ACTIONS(10199), 1, + anon_sym_AMP_AMP, + ACTIONS(10201), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8534), 1, + sym__declarator, + STATE(11637), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4167), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5369), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [32132] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10284), 1, + anon_sym_template, + STATE(2109), 1, + sym_string_literal, + ACTIONS(10168), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(10166), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7693), 41, + ACTIONS(10164), 46, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -482022,12 +480538,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, @@ -482051,21 +480565,93 @@ 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, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, - anon_sym_template, + anon_sym_explicit, anon_sym_operator, - [33412] = 5, + [32206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10288), 29, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(10286), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [32274] = 5, ACTIONS(3), 1, sym_comment, - STATE(4228), 1, + STATE(4154), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10262), 4, + ACTIONS(10182), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7699), 14, + ACTIONS(7741), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -482080,7 +480666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7697), 41, + ACTIONS(7739), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -482122,72 +480708,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [33484] = 29, + [32346] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10209), 1, anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8523), 1, + STATE(8773), 1, sym__declarator, - STATE(11612), 1, + STATE(10737), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5295), 2, + STATE(5434), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(6415), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -482199,7 +480785,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -482213,85 +480799,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [33604] = 29, + [32466] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + STATE(4259), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10290), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7757), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10264), 1, anon_sym_STAR, - ACTIONS(10266), 1, anon_sym_AMP_AMP, - ACTIONS(10268), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7755), 41, anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8826), 1, - sym__declarator, - STATE(10957), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4258), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5439), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, @@ -482304,98 +480860,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [33724] = 8, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [32538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6681), 1, - anon_sym___attribute__, - ACTIONS(6683), 1, - anon_sym___attribute, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - STATE(2375), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4566), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 21, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10294), 29, + anon_sym_LPAREN2, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8835), 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_QMARK, - anon_sym_STAR_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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(10292), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [33802] = 6, + sym_this, + [32606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10302), 1, - anon_sym_template, - STATE(2109), 1, - sym_string_literal, - ACTIONS(10274), 5, + ACTIONS(3343), 29, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + sym_number_literal, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(10272), 7, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(3338), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [32674] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4153), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10296), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7771), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(10270), 46, + ACTIONS(7769), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -482404,10 +481030,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, @@ -482431,28 +481059,112 @@ 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, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [32746] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, anon_sym_operator, - [33876] = 5, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(10213), 1, + anon_sym_STAR, + ACTIONS(10215), 1, + anon_sym_AMP_AMP, + ACTIONS(10217), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8509), 1, + sym__declarator, + STATE(10894), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5282), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [32866] = 5, ACTIONS(3), 1, sym_comment, - STATE(4206), 1, + STATE(4154), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10304), 4, + ACTIONS(10182), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7703), 14, + ACTIONS(7562), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -482467,7 +481179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7701), 41, + ACTIONS(7560), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -482509,137 +481221,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [33948] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8889), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - 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(8891), 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_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [34016] = 29, + [32938] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7986), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8785), 1, + STATE(8509), 1, sym__declarator, - STATE(10743), 1, + STATE(11637), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5269), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(4254), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + STATE(5376), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -482651,7 +481298,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -482665,72 +481312,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34136] = 29, + [33058] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10276), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10278), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10280), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8523), 1, + STATE(8773), 1, sym__declarator, - STATE(10900), 1, + STATE(10951), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5316), 2, + STATE(5299), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(6415), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -482742,7 +481389,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -482756,138 +481403,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34256] = 4, + [33178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10306), 1, + ACTIONS(6616), 29, anon_sym_LPAREN2, - ACTIONS(9027), 22, - anon_sym_DASH, - anon_sym_PLUS, + 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9029), 37, - 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___attribute__, - 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_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_RBRACE, 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(6614), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, anon_sym_asm, anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [34326] = 29, + sym_this, + [33246] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10264), 1, + ACTIONS(10247), 1, anon_sym_STAR, - ACTIONS(10266), 1, + ACTIONS(10249), 1, anon_sym_AMP_AMP, - ACTIONS(10268), 1, + ACTIONS(10251), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8785), 1, + STATE(8775), 1, sym__declarator, - STATE(10957), 1, + STATE(10831), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5329), 2, + STATE(5267), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(6415), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -482899,7 +481545,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -482913,72 +481559,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34446] = 29, + [33366] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10246), 1, + ACTIONS(10268), 1, anon_sym_STAR, - ACTIONS(10248), 1, + ACTIONS(10270), 1, anon_sym_AMP_AMP, - ACTIONS(10250), 1, + ACTIONS(10272), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8808), 1, + STATE(8775), 1, sym__declarator, - STATE(10837), 1, + STATE(11002), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5292), 2, + STATE(5310), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(6415), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -482990,7 +481636,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -483004,137 +481650,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34566] = 3, + [33486] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 22, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___attribute, - 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(8899), 38, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(29), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym___attribute__, - 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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [34634] = 29, - ACTIONS(3), 1, - sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10252), 1, - anon_sym_STAR, - ACTIONS(10254), 1, - anon_sym_AMP_AMP, - ACTIONS(10256), 1, - anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8808), 1, + STATE(8773), 1, sym__declarator, - STATE(11008), 1, + STATE(11132), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5345), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6427), 2, + STATE(4196), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - ACTIONS(3266), 3, + STATE(5417), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -483146,7 +481727,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -483160,16 +481741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [34754] = 6, + [33606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(9552), 1, + ACTIONS(9487), 1, anon_sym_LT, - STATE(4054), 1, + STATE(4141), 1, sym_template_argument_list, - ACTIONS(7371), 13, + ACTIONS(7379), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -483183,7 +481764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(5657), 44, + ACTIONS(5637), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -483228,28 +481809,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [34828] = 6, + [33680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(8883), 1, - anon_sym_LT, - STATE(3733), 1, - sym_template_argument_list, - ACTIONS(7085), 11, + ACTIONS(7327), 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_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7090), 46, + ACTIONS(7329), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -483260,14 +481837,12 @@ 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___extension__, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -483293,35 +481868,51 @@ 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, - [34902] = 7, + [33748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10308), 1, - anon_sym_delete, - ACTIONS(10310), 1, - anon_sym_new, - ACTIONS(9601), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, + ACTIONS(8790), 24, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym___based, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9597), 23, + sym_literal_suffix, + ACTIONS(8792), 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, @@ -483329,6 +481920,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, @@ -483336,84 +481928,96 @@ 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, - ACTIONS(9599), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_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_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, - [34978] = 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, + [33816] = 29, ACTIONS(3), 1, sym_comment, - STATE(4213), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10312), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7709), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, + ACTIONS(3442), 1, anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10276), 1, anon_sym_STAR, + ACTIONS(10278), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7707), 41, + ACTIONS(10280), 1, anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8773), 1, + sym__declarator, + STATE(10951), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4250), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5299), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, @@ -483426,23 +482030,17 @@ 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_template, - anon_sym_operator, - [35050] = 5, + [33936] = 5, ACTIONS(3), 1, sym_comment, - STATE(4228), 1, + STATE(4154), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10262), 4, + ACTIONS(10182), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7715), 14, + ACTIONS(7664), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483457,7 +482055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7713), 41, + ACTIONS(7662), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -483499,137 +482097,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [35122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7291), 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(7293), 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, - [35190] = 29, + [34008] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10276), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10278), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10280), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8528), 1, + STATE(8769), 1, sym__declarator, - STATE(11622), 1, + STATE(10951), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4223), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(5377), 2, + STATE(5303), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -483641,7 +482174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -483655,33 +482188,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [35310] = 7, + [34128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(10314), 1, - anon_sym_delete, - ACTIONS(9601), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, + ACTIONS(8761), 24, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym___based, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_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_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9597), 24, + sym_literal_suffix, + ACTIONS(8763), 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, @@ -483697,82 +482242,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9599), 25, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, - 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, - [35386] = 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, + [34196] = 29, ACTIONS(3), 1, sym_comment, - STATE(4228), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10262), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7683), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, + ACTIONS(3442), 1, anon_sym_TILDE, + ACTIONS(3444), 1, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7681), 41, + ACTIONS(3446), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + ACTIONS(3458), 1, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8773), 1, + sym__declarator, + STATE(11132), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5417), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -483785,78 +482344,72 @@ 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_template, - anon_sym_operator, - [35458] = 29, + [34316] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, - anon_sym_STAR, - ACTIONS(10180), 1, - anon_sym_AMP_AMP, - ACTIONS(10182), 1, - anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8523), 1, + STATE(8826), 1, sym__declarator, - STATE(11622), 1, + STATE(11132), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4151), 2, + STATE(4252), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(5384), 2, + STATE(5301), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -483868,7 +482421,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -483882,45 +482435,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [35578] = 6, + [34436] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(9552), 1, - anon_sym_LT, - STATE(4313), 1, - sym_template_argument_list, - ACTIONS(7085), 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_GT_GT, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7090), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10197), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(10201), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8517), 1, + sym__declarator, + STATE(11637), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5427), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -483932,28 +482526,17 @@ 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_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, - [35652] = 3, + [34556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7233), 15, + STATE(4154), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10182), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7660), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -483961,7 +482544,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LT, anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, @@ -483969,14 +482551,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7231), 44, + ACTIONS(7658), 41, 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, @@ -484010,14 +482591,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, - anon_sym_operator, - [35719] = 3, + anon_sym_operator, + [34628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10300), 29, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(10298), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [34696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 23, + ACTIONS(8786), 24, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484040,8 +482684,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, anon_sym_DASH_GT, + sym_identifier, sym_literal_suffix, - ACTIONS(8752), 36, + ACTIONS(8788), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -484078,54 +482723,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [35786] = 12, + [34764] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(7307), 1, - anon_sym_STAR, - ACTIONS(7309), 1, - anon_sym_AMP_AMP, - ACTIONS(7311), 1, - anon_sym_AMP, - ACTIONS(7321), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1991), 1, + STATE(1947), 1, sym_parameter_list, - STATE(5254), 1, - sym__abstract_declarator, - STATE(5694), 1, + STATE(3627), 1, sym__function_declarator_seq, - STATE(5693), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 14, + ACTIONS(10264), 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(9427), 32, + ACTIONS(10266), 37, 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484137,48 +482777,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [35871] = 3, + anon_sym_COLON_RBRACK, + [34840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 23, - anon_sym_DASH, - anon_sym_PLUS, + STATE(4154), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10182), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7620), 14, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(7618), 41, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - 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___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8891), 36, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [34912] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10302), 1, + anon_sym_delete, + ACTIONS(10304), 1, + anon_sym_new, + ACTIONS(9663), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 6, + anon_sym_STAR, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9659), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -484186,8 +482885,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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484198,27 +482895,108 @@ 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, + anon_sym_GT2, + ACTIONS(9661), 26, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_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_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + [34988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7122), 29, + 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_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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7117), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, anon_sym_asm, anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, anon_sym_requires, - [35938] = 3, + sym_this, + [35056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 23, + ACTIONS(8949), 22, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484232,17 +483010,16 @@ 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___asm, anon_sym_DOT, anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8659), 36, + ACTIONS(8951), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -484252,7 +483029,8 @@ 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484264,10 +483042,44 @@ 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [35124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7479), 28, + 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_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, @@ -484278,50 +483090,119 @@ 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, - [36005] = 3, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(7499), 31, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym___extension__, + anon_sym_LBRACK, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [35194] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(10318), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, + ACTIONS(3442), 1, anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(10268), 1, anon_sym_STAR, + ACTIONS(10270), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(10316), 45, + ACTIONS(10272), 1, anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8775), 1, + sym__declarator, + STATE(11002), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4209), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(5310), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, @@ -484334,27 +483215,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [36072] = 7, + [35314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 1, - anon_sym_LBRACE, - ACTIONS(8883), 1, + ACTIONS(7042), 1, + anon_sym_decltype, + ACTIONS(10162), 1, + sym_auto, + STATE(4527), 1, + sym_decltype_auto, + ACTIONS(7246), 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, - STATE(3733), 1, - sym_template_argument_list, - ACTIONS(7085), 15, - anon_sym___extension__, + anon_sym_GT_GT, + anon_sym___attribute, anon_sym_const, + anon_sym_DOT, + ACTIONS(7248), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -484368,100 +483267,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7094), 16, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, + anon_sym_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [35388] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9918), 1, + anon_sym_new, + ACTIONS(10306), 1, + anon_sym_delete, + ACTIONS(9663), 3, + anon_sym_TILDE, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 6, + anon_sym_STAR, + anon_sym___based, sym_identifier, - ACTIONS(7087), 25, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9659), 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_COLON_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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [36147] = 12, + ACTIONS(9661), 25, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, + 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, + [35464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7006), 1, - anon_sym_LPAREN2, - ACTIONS(7022), 1, - anon_sym_LBRACK, - ACTIONS(7295), 1, - anon_sym_STAR, - ACTIONS(7297), 1, - anon_sym_AMP_AMP, - ACTIONS(7299), 1, - anon_sym_AMP, - STATE(1974), 1, - sym_parameter_list, - STATE(4934), 1, - sym__function_declarator_seq, - STATE(5051), 1, - sym__abstract_declarator, - STATE(4825), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 17, + ACTIONS(8945), 22, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, + 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(9427), 29, + ACTIONS(8947), 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_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484482,12 +483410,108 @@ 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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [36232] = 3, + [35532] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10247), 1, + anon_sym_STAR, + ACTIONS(10249), 1, + anon_sym_AMP_AMP, + ACTIONS(10251), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8768), 1, + sym__declarator, + STATE(10831), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5270), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [35652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 21, + ACTIONS(9019), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484509,7 +483533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(8891), 38, + ACTIONS(9021), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -484548,43 +483572,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [36299] = 3, + [35719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 21, + ACTIONS(6975), 1, + anon_sym_LPAREN2, + ACTIONS(6991), 1, + anon_sym_LBRACK, + ACTIONS(7285), 1, + anon_sym_STAR, + ACTIONS(7287), 1, + anon_sym_AMP_AMP, + ACTIONS(7289), 1, + anon_sym_AMP, + STATE(1970), 1, + sym_parameter_list, + STATE(4759), 1, + sym__function_declarator_seq, + STATE(5226), 1, + sym__abstract_declarator, + STATE(4875), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8899), 38, + anon_sym_DASH_GT, + ACTIONS(9281), 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_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484605,17 +483643,27 @@ 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_STAR, + [35804] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8167), 1, anon_sym_DASH_GT, + ACTIONS(8173), 1, + anon_sym_requires, + STATE(4331), 1, + sym_trailing_return_type, + ACTIONS(8170), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [36366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8938), 23, + STATE(4618), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4851), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484625,30 +483673,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_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(8940), 36, + ACTIONS(7874), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484656,6 +483700,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, @@ -484668,18 +483713,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36433] = 3, + anon_sym_DASH_GT_STAR, + [35883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 23, + ACTIONS(10308), 1, + anon_sym_LPAREN2, + ACTIONS(8969), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484703,10 +483744,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(8981), 36, + ACTIONS(8971), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -484740,10 +483780,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [36500] = 3, + [35952] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 23, + ACTIONS(6665), 1, + anon_sym_requires, + ACTIONS(8824), 1, + anon_sym_DASH_GT, + STATE(4365), 1, + sym_trailing_return_type, + ACTIONS(6663), 2, + anon_sym_final, + anon_sym_override, + STATE(4618), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4971), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484753,30 +483808,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_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(8899), 36, + ACTIONS(8402), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484784,6 +483835,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, @@ -484796,66 +483848,52 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36567] = 11, + anon_sym_DASH_GT_STAR, + [36031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10320), 1, - anon_sym_LT, - ACTIONS(10324), 1, - sym_auto, - ACTIONS(10326), 1, - anon_sym_decltype, - STATE(3735), 1, - sym_template_argument_list, - STATE(5103), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6073), 1, - sym_decltype_auto, - ACTIONS(10322), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5636), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5643), 41, + ACTIONS(7146), 14, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7144), 45, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, + anon_sym_COLON, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -484869,19 +483907,96 @@ 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [36098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7133), 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(7135), 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___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, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [36650] = 4, + [36165] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10328), 1, - anon_sym_LPAREN2, - ACTIONS(9027), 21, + ACTIONS(8220), 1, + anon_sym_DASH_GT, + ACTIONS(8226), 1, + anon_sym_requires, + STATE(4388), 1, + sym_trailing_return_type, + ACTIONS(8223), 2, + anon_sym_final, + anon_sym_override, + STATE(4618), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4848), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -484895,25 +484010,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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(9029), 37, + ACTIONS(7970), 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -484934,17 +484046,91 @@ 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_DASH_GT_STAR, + [36244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10312), 14, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(10310), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_requires, - [36719] = 3, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [36311] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7231), 14, + ACTIONS(4902), 1, + anon_sym_LBRACE, + ACTIONS(8630), 1, + anon_sym_LPAREN2, + STATE(4030), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5813), 1, + sym_argument_list, + STATE(7381), 1, + sym_initializer_list, + ACTIONS(10073), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7246), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -484955,14 +484141,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7233), 45, + ACTIONS(7248), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -484972,9 +484155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -485001,45 +484181,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [36786] = 3, + [36390] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 19, + ACTIONS(7291), 1, + anon_sym_LPAREN2, + ACTIONS(7293), 1, + anon_sym_STAR, + ACTIONS(7295), 1, + anon_sym_AMP_AMP, + ACTIONS(7297), 1, + anon_sym_AMP, + ACTIONS(7307), 1, + anon_sym_LBRACK, + STATE(1990), 1, + sym_parameter_list, + STATE(5241), 1, + sym__abstract_declarator, + STATE(5658), 1, + sym__function_declarator_seq, + STATE(5606), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym___asm, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8706), 40, + ACTIONS(9281), 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___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -485060,108 +484250,60 @@ 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_final, anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, anon_sym_DASH_GT_STAR, - [36853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9007), 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_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(9009), 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_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36920] = 8, + [36475] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - ACTIONS(10114), 1, + ACTIONS(7122), 1, anon_sym_LBRACE, - STATE(4340), 1, - sym_enumerator_list, - STATE(4405), 1, - sym_attribute_specifier, - ACTIONS(7381), 12, + ACTIONS(8927), 1, + anon_sym_LT, + STATE(3740), 1, + sym_template_argument_list, + ACTIONS(7117), 15, + anon_sym___extension__, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + 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(7126), 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_const, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7383), 42, + sym_identifier, + ACTIONS(7119), 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, @@ -485170,57 +484312,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_GT, + anon_sym_COLON_COLON, 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [36997] = 9, + [36550] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(6665), 1, anon_sym_requires, - ACTIONS(8271), 1, + ACTIONS(8167), 1, anon_sym_DASH_GT, - STATE(4347), 1, + STATE(4354), 1, sym_trailing_return_type, - ACTIONS(6669), 2, + ACTIONS(6663), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4890), 2, + STATE(4851), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 18, + ACTIONS(7876), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485239,7 +484360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 32, + ACTIONS(7874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485272,10 +484393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [37076] = 3, + [36629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 23, + ACTIONS(8786), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485299,7 +484420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_DASH_GT, sym_literal_suffix, - ACTIONS(8699), 36, + ACTIONS(8788), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485336,89 +484457,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_DASH_GT_STAR, - [37143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7231), 12, - 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_const, - anon_sym_DOT, - ACTIONS(7233), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [37210] = 9, + [36696] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8168), 1, + ACTIONS(8824), 1, anon_sym_DASH_GT, - ACTIONS(8177), 1, + ACTIONS(8830), 1, anon_sym_requires, - STATE(4339), 1, + STATE(4323), 1, sym_trailing_return_type, - ACTIONS(8174), 2, + ACTIONS(8827), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4840), 2, + STATE(4971), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 18, + ACTIONS(8404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485437,7 +484494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 32, + ACTIONS(8402), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485470,30 +484527,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [37289] = 4, + [36775] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7459), 14, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(7553), 1, + anon_sym_LPAREN2, + STATE(3514), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3931), 1, + sym_argument_list, + STATE(5980), 1, + sym_initializer_list, + ACTIONS(9238), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7246), 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_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7457), 44, + ACTIONS(7248), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -485501,10 +484566,11 @@ 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -485531,55 +484597,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [37358] = 9, + [36854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(7687), 1, - anon_sym_LPAREN2, - STATE(3537), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3894), 1, - sym_argument_list, - STATE(5969), 1, - sym_initializer_list, - ACTIONS(9214), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7223), 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_const, - anon_sym_DOT, - ACTIONS(7225), 40, + ACTIONS(7115), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7113), 45, + anon_sym_AMP, anon_sym___extension__, - anon_sym_RBRACK_RBRACK, + 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, @@ -485593,107 +484654,81 @@ 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, - [37437] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8271), 1, - anon_sym_DASH_GT, - ACTIONS(8304), 1, - anon_sym_requires, - STATE(4345), 1, - sym_trailing_return_type, - ACTIONS(8301), 2, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4610), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4890), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 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(7966), 32, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [36921] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6656), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6649), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [37516] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8845), 1, - anon_sym_DASH_GT, - ACTIONS(8854), 1, - anon_sym_requires, - STATE(4349), 1, - sym_trailing_return_type, - ACTIONS(8851), 2, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, anon_sym_final, anon_sym_override, - STATE(4610), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4813), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 18, + anon_sym_template, + anon_sym_operator, + [36988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9019), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485703,26 +484738,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_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(8422), 32, + ACTIONS(9021), 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -485730,7 +484769,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, @@ -485743,27 +484781,18 @@ 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_STAR, - [37595] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, - anon_sym_requires, - ACTIONS(8845), 1, anon_sym_DASH_GT, - STATE(4365), 1, - sym_trailing_return_type, - ACTIONS(6669), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4813), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 18, + anon_sym_GT2, + anon_sym_requires, + [37055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9023), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485773,26 +484802,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_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(8422), 32, + ACTIONS(9025), 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___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -485800,7 +484833,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, @@ -485813,27 +484845,33 @@ 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_STAR, - [37674] = 9, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [37122] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10330), 1, + ACTIONS(10314), 1, anon_sym_DASH_GT, - ACTIONS(10336), 1, + ACTIONS(10320), 1, anon_sym_requires, - STATE(4352), 1, + STATE(4337), 1, sym_trailing_return_type, - ACTIONS(10333), 2, + ACTIONS(10317), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4775), 2, + STATE(4972), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 18, + ACTIONS(8987), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -485852,7 +484890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8907), 32, + ACTIONS(8989), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -485885,89 +484923,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [37753] = 3, + [37201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 23, + ACTIONS(7117), 14, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - ACTIONS(8667), 36, + ACTIONS(7122), 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___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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + 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, - [37820] = 9, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [37268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(8626), 1, - anon_sym_LPAREN2, - STATE(3284), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5772), 1, - sym_argument_list, - STATE(7298), 1, - sym_initializer_list, - ACTIONS(10339), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7223), 10, + ACTIONS(7187), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -485976,11 +484999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 40, + ACTIONS(7189), 47, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -485992,6 +485018,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_constexpr, @@ -486019,10 +485048,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [37899] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37335] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 21, + ACTIONS(6665), 1, + anon_sym_requires, + ACTIONS(10314), 1, + anon_sym_DASH_GT, + STATE(4329), 1, + sym_trailing_return_type, + ACTIONS(6663), 2, + anon_sym_final, + anon_sym_override, + STATE(4618), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4972), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486036,26 +485083,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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8940), 38, + ACTIONS(8989), 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___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -486076,32 +485119,88 @@ 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_DASH_GT_STAR, + [37414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7189), 15, + 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_LT, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7187), 44, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_requires, - [37966] = 3, + anon_sym_template, + anon_sym_operator, + [37481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7085), 14, + ACTIONS(7156), 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___attribute, - anon_sym_COLON, + sym_ms_restrict_modifier, anon_sym_const, anon_sym_DOT, - ACTIONS(7090), 45, + ACTIONS(7158), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -486112,12 +485211,16 @@ 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___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -486145,27 +485248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [38033] = 9, + [37548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(8592), 1, - anon_sym_LPAREN2, - STATE(4010), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5862), 1, - sym_argument_list, - STATE(7380), 1, - sym_initializer_list, - ACTIONS(10032), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7223), 12, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7499), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486176,11 +485265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 38, + ACTIONS(7479), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -486190,6 +485282,8 @@ 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, anon_sym_volatile, @@ -486216,11 +485310,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [38112] = 3, + anon_sym_requires, + [37617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 21, + ACTIONS(8949), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486242,7 +485339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(8981), 38, + ACTIONS(8951), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -486281,76 +485378,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [38179] = 5, + [37684] = 4, ACTIONS(3), 1, sym_comment, - STATE(4225), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10107), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7225), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10323), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(8969), 21, + 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 41, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, 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_template, - anon_sym_operator, - [38250] = 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8971), 37, + 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___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [37753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 11, + ACTIONS(7242), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486362,7 +485458,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ms_restrict_modifier, anon_sym_const, anon_sym_DOT, - ACTIONS(7289), 48, + ACTIONS(7244), 48, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -486411,10 +485507,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [38317] = 3, + [37820] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10325), 1, + anon_sym_LT, + ACTIONS(10329), 1, + sym_auto, + ACTIONS(10331), 1, + anon_sym_decltype, + STATE(3755), 1, + sym_template_argument_list, + STATE(5220), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6030), 1, + sym_decltype_auto, + ACTIONS(10327), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5609), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5617), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [37903] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 11, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(8592), 1, + anon_sym_LPAREN2, + STATE(3458), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5856), 1, + sym_argument_list, + STATE(7197), 1, + sym_initializer_list, + ACTIONS(10333), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7246), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486423,13 +485606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - sym_ms_restrict_modifier, anon_sym_const, anon_sym_DOT, - ACTIONS(7201), 48, + ACTIONS(7248), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -486441,10 +485622,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___extension__, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_constexpr, @@ -486472,28 +485649,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [38384] = 9, + [37982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, - anon_sym_requires, - ACTIONS(8168), 1, + ACTIONS(8945), 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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8947), 38, + 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___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(4383), 1, - sym_trailing_return_type, - ACTIONS(6669), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4840), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 18, + anon_sym_requires, + [38049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8790), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486510,9 +485733,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, - ACTIONS(7791), 32, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8792), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -486534,6 +485762,69 @@ 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_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, + [38116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9023), 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_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9025), 38, + 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___attribute__, + anon_sym_LBRACK_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, @@ -486543,27 +485834,17 @@ 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_STAR, - [38463] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6671), 1, - anon_sym_requires, - ACTIONS(10330), 1, anon_sym_DASH_GT, - STATE(4372), 1, - sym_trailing_return_type, - ACTIONS(6669), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4775), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 18, + anon_sym_requires, + [38183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8919), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486577,22 +485858,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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym___asm, anon_sym_DOT, - ACTIONS(8907), 32, + ACTIONS(8921), 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_LBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -486613,12 +485898,17 @@ 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_STAR, - [38542] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [38250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7104), 14, + ACTIONS(7187), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -486633,7 +485923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_const, anon_sym_DOT, - ACTIONS(7106), 45, + ACTIONS(7189), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -486679,12 +485969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [38609] = 4, + [38317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10341), 1, - anon_sym_LPAREN2, - ACTIONS(9027), 23, + ACTIONS(8949), 23, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486708,9 +485996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(9029), 35, + ACTIONS(8951), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -486740,147 +486029,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [38678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7079), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7077), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [38745] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - ACTIONS(10114), 1, - anon_sym_LBRACE, - STATE(4335), 1, - sym_enumerator_list, - STATE(4455), 1, - sym_attribute_specifier, - ACTIONS(7387), 12, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [38384] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8945), 23, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym___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(7389), 42, + ACTIONS(8947), 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_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___attribute__, + 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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [38822] = 3, + [38451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 21, + ACTIONS(8820), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -486897,14 +486117,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym___asm, anon_sym_DOT, - ACTIONS(9009), 38, + anon_sym_DASH_GT, + ACTIONS(8822), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -486913,7 +486132,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -486925,11 +486143,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, @@ -486937,168 +486155,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [38889] = 3, + anon_sym_DASH_GT_STAR, + [38518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 14, + ACTIONS(8761), 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(8763), 36, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6594), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [38956] = 8, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_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, + [38585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4077), 1, - sym_attribute_specifier, - STATE(4388), 1, - sym_enumerator_list, - ACTIONS(7387), 10, + ACTIONS(8776), 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_const, + 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, - ACTIONS(7389), 44, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(8778), 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___extension__, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [39033] = 8, + 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, + [38652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - STATE(4056), 1, - sym_attribute_specifier, - STATE(4391), 1, - sym_enumerator_list, - ACTIONS(7381), 10, + ACTIONS(7156), 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, + sym_ms_restrict_modifier, anon_sym_const, anon_sym_DOT, - ACTIONS(7383), 44, + ACTIONS(7158), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -487109,12 +486317,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___extension__, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -487142,11 +486351,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [39110] = 3, + [38719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7287), 13, + ACTIONS(7242), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487160,7 +486370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_ms_restrict_modifier, anon_sym_const, anon_sym_DOT, - ACTIONS(7289), 46, + ACTIONS(7244), 46, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -487207,10 +486417,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [39177] = 3, + [38786] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 13, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + ACTIONS(10160), 1, + anon_sym_LBRACE, + STATE(4366), 1, + sym_enumerator_list, + STATE(4417), 1, + sym_attribute_specifier, + ACTIONS(7381), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487221,10 +486441,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - sym_ms_restrict_modifier, anon_sym_const, anon_sym_DOT, - ACTIONS(7201), 46, + ACTIONS(7383), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -487237,10 +486456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - 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, @@ -487271,10 +486486,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [39244] = 3, + [38863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 14, + STATE(4255), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10105), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7248), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -487285,18 +486507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7158), 45, + ACTIONS(7246), 41, 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, @@ -487330,21 +486550,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [39311] = 6, + [38934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, + ACTIONS(8919), 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_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(8921), 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_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [39001] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9291), 1, + anon_sym_LBRACE, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4066), 1, + STATE(4114), 1, sym_attribute_specifier, - ACTIONS(7413), 10, + STATE(4383), 1, + sym_enumerator_list, + ACTIONS(7387), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487355,7 +486640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7415), 45, + ACTIONS(7389), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -487370,7 +486655,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___extension__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_constexpr, @@ -487401,11 +486685,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [39383] = 3, + [39078] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 29, - aux_sym_preproc_elif_token1, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, + anon_sym___attribute, + STATE(4131), 1, + sym_attribute_specifier, + STATE(4386), 1, + sym_enumerator_list, + ACTIONS(7381), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487414,34 +486707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + anon_sym_const, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - ACTIONS(8706), 29, + ACTIONS(7383), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -487453,104 +486723,56 @@ 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_LBRACK, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [39449] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [39155] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, + ACTIONS(6665), 1, anon_sym_requires, - ACTIONS(10343), 1, + ACTIONS(8220), 1, anon_sym_DASH_GT, - STATE(4536), 1, + STATE(4352), 1, sym_trailing_return_type, - ACTIONS(6742), 2, + ACTIONS(6663), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5128), 2, + STATE(4848), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 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(8907), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [39527] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8152), 1, - anon_sym___attribute__, - ACTIONS(8154), 1, - anon_sym___attribute, - ACTIONS(8383), 1, - anon_sym_LBRACE, - ACTIONS(10346), 1, - anon_sym_COLON, - STATE(2608), 1, - sym__enum_base_clause, - STATE(2666), 1, - sym_enumerator_list, - STATE(3047), 1, - sym_attribute_specifier, - ACTIONS(8006), 19, + ACTIONS(7972), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487569,8 +486791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8008), 32, + ACTIONS(7970), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -487603,16 +486824,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [39607] = 6, + [39234] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(10040), 1, anon_sym___attribute__, - ACTIONS(9963), 1, + ACTIONS(10042), 1, anon_sym___attribute, - STATE(4540), 1, + ACTIONS(10160), 1, + anon_sym_LBRACE, + STATE(4359), 1, + sym_enumerator_list, + STATE(4501), 1, sym_attribute_specifier, - ACTIONS(7423), 12, + ACTIONS(7387), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -487625,7 +486850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7425), 43, + ACTIONS(7389), 42, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -487638,7 +486863,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, @@ -487669,21 +486893,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [39679] = 7, + [39311] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(6694), 1, anon_sym_requires, - ACTIONS(8174), 2, + ACTIONS(8379), 1, + anon_sym_DASH_GT, + STATE(4468), 1, + sym_trailing_return_type, + ACTIONS(6688), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(4669), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4840), 2, + STATE(5223), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 19, + ACTIONS(7972), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487693,26 +486921,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(7791), 32, + ACTIONS(7970), 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, @@ -487721,7 +486948,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, @@ -487735,116 +486961,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_STAR, - [39753] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10354), 1, - anon_sym___attribute__, - ACTIONS(10357), 1, - anon_sym___attribute, - ACTIONS(10360), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10376), 1, - anon_sym_requires, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(6567), 1, - sym__function_attributes_start, - STATE(7358), 1, - sym_ref_qualifier, - STATE(8054), 1, - sym_trailing_return_type, - STATE(8063), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10369), 2, - anon_sym_final, - anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8298), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7665), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [39873] = 9, + [39389] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 1, - anon_sym_requires, - ACTIONS(10379), 1, + ACTIONS(8896), 1, anon_sym_DASH_GT, - STATE(4447), 1, + ACTIONS(8902), 1, + anon_sym_requires, + STATE(4449), 1, sym_trailing_return_type, - ACTIONS(6694), 2, + ACTIONS(8899), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4702), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5071), 2, + STATE(5040), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 20, + ACTIONS(8404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -487854,18 +486990,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(8907), 29, + ACTIONS(8402), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -487873,7 +487007,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -487881,6 +487017,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, @@ -487891,506 +487028,28 @@ 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_GT2, - [39951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8665), 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_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_literal_suffix, - ACTIONS(8667), 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_RBRACK_RBRACK, - 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, - 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_COLON_RBRACK, - [40017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3118), 13, - 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(3128), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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_noexcept, - anon_sym_throw, - anon_sym_requires, - [40083] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10354), 1, - anon_sym___attribute__, - ACTIONS(10357), 1, - anon_sym___attribute, - ACTIONS(10360), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(6664), 1, - sym__function_attributes_start, - STATE(7333), 1, - sym_ref_qualifier, - STATE(8038), 1, - sym_trailing_return_type, - STATE(8075), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8298), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7657), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [40203] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - STATE(4416), 1, - sym_attribute_specifier, - ACTIONS(7431), 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(7433), 43, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [40275] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, - sym_auto, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(10384), 1, - anon_sym_LBRACK, - STATE(4270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4991), 1, - sym_decltype_auto, - STATE(5825), 1, - sym_template_argument_list, - ACTIONS(5675), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5659), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5643), 5, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_COLON, - ACTIONS(5636), 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_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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_template, - anon_sym_operator, - [40361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7160), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7158), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [40427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8697), 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_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_literal_suffix, - ACTIONS(8699), 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_RBRACK_RBRACK, - 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, - 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_COLON_RBRACK, - [40493] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [39467] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8304), 1, + ACTIONS(10335), 1, + anon_sym_DASH_GT, + ACTIONS(10341), 1, anon_sym_requires, - ACTIONS(8301), 2, + STATE(4451), 1, + sym_trailing_return_type, + ACTIONS(10338), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(4702), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4890), 2, + STATE(5049), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 19, + ACTIONS(8987), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488409,11 +487068,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7966), 32, + ACTIONS(8989), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -488421,6 +487078,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -488442,124 +487100,121 @@ 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, - [40567] = 6, + [39545] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - STATE(4433), 1, - sym_attribute_specifier, - ACTIONS(7521), 12, + ACTIONS(10320), 1, + anon_sym_requires, + ACTIONS(10317), 2, + anon_sym_final, + anon_sym_override, + STATE(4618), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4972), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 19, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7523), 43, + anon_sym_DASH_GT, + ACTIONS(8989), 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___extension__, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [39619] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8379), 1, anon_sym_DASH_GT, + ACTIONS(8385), 1, + anon_sym_requires, + STATE(4430), 1, + sym_trailing_return_type, + ACTIONS(8382), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [40639] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10387), 1, - anon_sym_delete, - ACTIONS(10389), 1, - anon_sym_new, - ACTIONS(9601), 3, - anon_sym_TILDE, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 6, - anon_sym_STAR, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 22, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5223), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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_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, - anon_sym_DASH_GT, - ACTIONS(9597), 25, + ACTIONS(7970), 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, @@ -488567,231 +487222,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [40713] = 6, + anon_sym_GT2, + [39697] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - STATE(4420), 1, - sym_attribute_specifier, - ACTIONS(7435), 12, + ACTIONS(8887), 1, + anon_sym_DASH_GT, + ACTIONS(8893), 1, + anon_sym_requires, + STATE(4431), 1, + sym_trailing_return_type, + ACTIONS(8890), 2, + anon_sym_final, + anon_sym_override, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5230), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7437), 43, + ACTIONS(8402), 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___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, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [40785] = 6, + [39775] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - STATE(4423), 1, - sym_attribute_specifier, - ACTIONS(7453), 12, + ACTIONS(10344), 1, + anon_sym_DASH_GT, + ACTIONS(10350), 1, + anon_sym_requires, + STATE(4443), 1, + sym_trailing_return_type, + ACTIONS(10347), 2, + anon_sym_final, + anon_sym_override, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5233), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7455), 43, + ACTIONS(8989), 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___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, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [40857] = 6, + [39853] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(4318), 1, - sym_template_argument_list, - ACTIONS(6572), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10353), 1, + anon_sym_delete, + ACTIONS(10355), 1, + anon_sym_new, + ACTIONS(9663), 3, anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(6565), 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, + ACTIONS(9657), 6, + anon_sym_STAR, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - [40929] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8854), 1, - anon_sym_requires, - ACTIONS(8851), 2, - anon_sym_final, - anon_sym_override, - STATE(4610), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4813), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 19, + ACTIONS(9661), 22, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_PIPE, @@ -488802,13 +487405,17 @@ 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_DOT, anon_sym_DASH_GT, - ACTIONS(8422), 32, + ACTIONS(9659), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -488818,7 +487425,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, @@ -488830,36 +487436,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [41003] = 9, + [39927] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8318), 1, - anon_sym_DASH_GT, - ACTIONS(8324), 1, + ACTIONS(8173), 1, anon_sym_requires, - STATE(4468), 1, - sym_trailing_return_type, - ACTIONS(8321), 2, + ACTIONS(8170), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(4851), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 20, + ACTIONS(7876), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488869,25 +487465,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(7791), 29, + anon_sym_DASH_GT, + ACTIONS(7874), 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, @@ -488896,6 +487493,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, @@ -488909,22 +487507,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [41081] = 7, + anon_sym_DASH_GT_STAR, + [40001] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(6665), 1, anon_sym_requires, - ACTIONS(6669), 2, + ACTIONS(6663), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4813), 2, + STATE(4803), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 19, + ACTIONS(8997), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -488944,7 +487542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8422), 32, + ACTIONS(8999), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -488977,93 +487575,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [41155] = 12, + [40075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7112), 1, - anon_sym_LPAREN2, - ACTIONS(7128), 1, - anon_sym_LBRACK, - ACTIONS(7363), 1, - anon_sym_STAR, - ACTIONS(7365), 1, - anon_sym_AMP_AMP, - ACTIONS(7367), 1, - anon_sym_AMP, - STATE(1978), 1, - sym_parameter_list, - STATE(5065), 1, - sym__function_declarator_seq, - STATE(5285), 1, - sym__abstract_declarator, - STATE(5063), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 16, + ACTIONS(7535), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, + anon_sym_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, - ACTIONS(9427), 29, + ACTIONS(7537), 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_GT_EQ, - anon_sym_RBRACK, + 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, - [41239] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [40141] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10336), 1, + ACTIONS(8226), 1, anon_sym_requires, - ACTIONS(10333), 2, + ACTIONS(8223), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4775), 2, + STATE(4848), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 19, + ACTIONS(7972), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489083,7 +487672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8907), 32, + ACTIONS(7970), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -489116,31 +487705,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [41313] = 6, + [40215] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(5649), 1, + sym_auto, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(10357), 1, + anon_sym_LBRACK, + STATE(4249), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4918), 1, + sym_decltype_auto, + STATE(5866), 1, + sym_template_argument_list, + ACTIONS(5634), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5617), 5, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_COLON, + ACTIONS(5609), 39, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(9963), 1, anon_sym___attribute, - STATE(4530), 1, - sym_attribute_specifier, - ACTIONS(7551), 12, + anon_sym___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, + anon_sym_template, + anon_sym_operator, + [40301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8786), 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_const, + 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(7553), 43, + sym_identifier, + sym_literal_suffix, + ACTIONS(8788), 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, @@ -489149,49 +487817,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___extension__, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [41385] = 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_COLON_RBRACK, + [40367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(10040), 1, anon_sym___attribute__, - ACTIONS(9963), 1, + ACTIONS(10042), 1, anon_sym___attribute, - STATE(4398), 1, + STATE(4452), 1, sym_attribute_specifier, - ACTIONS(7531), 12, + ACTIONS(7481), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -489204,7 +487863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7533), 43, + ACTIONS(7483), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -489248,92 +487907,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [41457] = 7, + [40439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10394), 1, - anon_sym_requires, - ACTIONS(10391), 2, + ACTIONS(3116), 13, + 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(3126), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, - STATE(4610), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4791), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 19, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [40505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8761), 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_COLON, 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(8915), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(8763), 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_RBRACK_RBRACK, + 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_STAR, - [41531] = 9, + 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, + anon_sym_COLON_RBRACK, + [40571] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8429), 1, - anon_sym_DASH_GT, - ACTIONS(8435), 1, + ACTIONS(10363), 1, anon_sym_requires, - STATE(4470), 1, - sym_trailing_return_type, - ACTIONS(8432), 2, + ACTIONS(10360), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5047), 2, + STATE(4803), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 20, + ACTIONS(8997), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489343,25 +488057,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(7966), 29, + anon_sym_DASH_GT, + ACTIONS(8999), 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, @@ -489370,6 +488085,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, @@ -489383,233 +488099,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [41609] = 9, + anon_sym_DASH_GT_STAR, + [40645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8983), 1, - anon_sym_DASH_GT, - ACTIONS(8989), 1, - anon_sym_requires, - STATE(4471), 1, - sym_trailing_return_type, - ACTIONS(8986), 2, - anon_sym_final, - anon_sym_override, - STATE(4705), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5066), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 20, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + STATE(4420), 1, + sym_attribute_specifier, + ACTIONS(7527), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(8422), 29, + ACTIONS(7529), 43, 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_STAR_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_GT2, - [41687] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6700), 1, - anon_sym_requires, - ACTIONS(8429), 1, anon_sym_DASH_GT, - STATE(4440), 1, - sym_trailing_return_type, - ACTIONS(6694), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5047), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 20, + anon_sym_GT2, + anon_sym_requires, + [40717] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + STATE(4500), 1, + sym_attribute_specifier, + ACTIONS(7505), 12, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(7966), 29, + ACTIONS(7507), 43, 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_STAR_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_GT2, - [41765] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10379), 1, anon_sym_DASH_GT, - ACTIONS(10400), 1, - anon_sym_requires, - STATE(4472), 1, - sym_trailing_return_type, - ACTIONS(10397), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5071), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 20, + anon_sym_GT2, + anon_sym_requires, + [40789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8776), 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_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8907), 29, + sym_identifier, + sym_literal_suffix, + ACTIONS(8778), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [41843] = 9, + 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, + anon_sym_COLON_RBRACK, + [40855] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, + ACTIONS(6723), 1, anon_sym_requires, - ACTIONS(8360), 1, + ACTIONS(8896), 1, anon_sym_DASH_GT, - STATE(4532), 1, + STATE(4495), 1, sym_trailing_return_type, - ACTIONS(6742), 2, + ACTIONS(6717), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, + STATE(4702), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5110), 2, + STATE(5040), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 18, + ACTIONS(8404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489628,7 +488332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 31, + ACTIONS(8402), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -489660,31 +488364,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [41921] = 6, + [40933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - STATE(4513), 1, - sym_attribute_specifier, - ACTIONS(7547), 12, + ACTIONS(8820), 29, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_const, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, - ACTIONS(7549), 43, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + ACTIONS(8822), 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, @@ -489693,49 +488413,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_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_GT_GT, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [41993] = 6, + anon_sym_COLON_RBRACK, + [40999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(10040), 1, anon_sym___attribute__, - ACTIONS(9963), 1, + ACTIONS(10042), 1, anon_sym___attribute, - STATE(4427), 1, + STATE(4519), 1, sym_attribute_specifier, - ACTIONS(7413), 12, + ACTIONS(7511), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -489748,7 +488449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7415), 43, + ACTIONS(7513), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -489792,24 +488493,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [42065] = 3, + [41071] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(5637), 1, + anon_sym_SEMI, + ACTIONS(5649), 1, + sym_auto, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(4249), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4286), 1, + sym_template_argument_list, + STATE(4918), 1, + sym_decltype_auto, + ACTIONS(5639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5617), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(7077), 45, + anon_sym_LBRACK_COLON, + ACTIONS(5609), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -489817,10 +488532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___attribute, anon_sym___declspec, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym___based, + anon_sym___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, @@ -489842,38 +488560,120 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [42131] = 9, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [41155] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym___attribute__, + ACTIONS(10375), 1, + anon_sym___attribute, + ACTIONS(10378), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10394), 1, + anon_sym_requires, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(6556), 1, + sym__function_attributes_start, + STATE(7333), 1, + sym_ref_qualifier, + STATE(8013), 1, + sym_trailing_return_type, + STATE(8063), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10387), 2, + anon_sym_final, + anon_sym_override, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8342), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7654), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [41275] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 1, - anon_sym_requires, - ACTIONS(8983), 1, + ACTIONS(8250), 1, anon_sym_DASH_GT, - STATE(4443), 1, + ACTIONS(8256), 1, + anon_sym_requires, + STATE(4426), 1, sym_trailing_return_type, - ACTIONS(6694), 2, + ACTIONS(8253), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4669), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5066), 2, + STATE(5208), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 20, + ACTIONS(7876), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -489894,7 +488694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 29, + ACTIONS(7874), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -489924,37 +488724,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [42209] = 3, + [41353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 19, - aux_sym_preproc_elif_token1, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + STATE(4422), 1, + sym_attribute_specifier, + ACTIONS(7531), 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_COLON, - 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_const, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8659), 39, + ACTIONS(7533), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -489963,49 +488757,57 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, - 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_COLON_RBRACK, - [42275] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8360), 1, - anon_sym_DASH_GT, - ACTIONS(8366), 1, - anon_sym_requires, - STATE(4476), 1, - sym_trailing_return_type, - ACTIONS(8363), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5110), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 18, + anon_sym_GT2, + anon_sym_requires, + [41425] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8176), 1, + anon_sym___attribute__, + ACTIONS(8178), 1, + anon_sym___attribute, + ACTIONS(8336), 1, + anon_sym_LBRACE, + ACTIONS(10397), 1, + anon_sym_COLON, + STATE(2599), 1, + sym__enum_base_clause, + STATE(2663), 1, + sym_enumerator_list, + STATE(2977), 1, + sym_attribute_specifier, + ACTIONS(8001), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490024,9 +488826,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 31, + anon_sym_DASH_GT, + ACTIONS(8003), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -490034,7 +488838,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -490056,25 +488859,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [42353] = 9, + anon_sym_DASH_GT_STAR, + [41505] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, + ACTIONS(6665), 1, anon_sym_requires, - ACTIONS(8880), 1, - anon_sym_DASH_GT, - STATE(4535), 1, - sym_trailing_return_type, - ACTIONS(6742), 2, + ACTIONS(6663), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5126), 2, + STATE(4851), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 18, + ACTIONS(7876), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490093,9 +488893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 31, + anon_sym_DASH_GT, + ACTIONS(7874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -490103,7 +488905,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -490125,21 +488926,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [42431] = 7, + anon_sym_DASH_GT_STAR, + [41579] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(6723), 1, anon_sym_requires, - ACTIONS(6669), 2, + ACTIONS(8265), 1, + anon_sym_DASH_GT, + STATE(4491), 1, + sym_trailing_return_type, + ACTIONS(6717), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(4702), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4775), 2, + STATE(5251), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 19, + ACTIONS(7876), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490158,11 +488964,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8907), 32, + ACTIONS(7874), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -490170,6 +488974,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -490191,26 +488996,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [42505] = 9, + [41657] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8440), 1, - anon_sym_DASH_GT, - ACTIONS(8446), 1, - anon_sym_requires, - STATE(4477), 1, - sym_trailing_return_type, - ACTIONS(8443), 2, - anon_sym_final, - anon_sym_override, - STATE(4653), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5121), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 18, + ACTIONS(6788), 1, + anon_sym___attribute__, + ACTIONS(6790), 1, + anon_sym___attribute, + ACTIONS(6792), 1, + anon_sym_LBRACK_LBRACK, + STATE(2455), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4807), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8870), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490224,22 +489025,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 31, + anon_sym_DASH_GT, + ACTIONS(8872), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -490251,35 +489050,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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [42583] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [41733] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8880), 1, - anon_sym_DASH_GT, - ACTIONS(8931), 1, + ACTIONS(6665), 1, anon_sym_requires, - STATE(4549), 1, - sym_trailing_return_type, - ACTIONS(8928), 2, + ACTIONS(6663), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5126), 2, + STATE(4971), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 18, + ACTIONS(8404), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490298,9 +489097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 31, + anon_sym_DASH_GT, + ACTIONS(8402), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -490308,7 +489109,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -490330,24 +489130,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [42661] = 10, + anon_sym_DASH_GT_STAR, + [41807] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8152), 1, + ACTIONS(6788), 1, anon_sym___attribute__, - ACTIONS(8154), 1, + ACTIONS(6790), 1, anon_sym___attribute, - ACTIONS(8383), 1, - anon_sym_LBRACE, - ACTIONS(10346), 1, - anon_sym_COLON, - STATE(2626), 1, - sym__enum_base_clause, - STATE(2729), 1, - sym_enumerator_list, - STATE(2962), 1, + ACTIONS(6792), 1, + anon_sym_LBRACK_LBRACK, + STATE(2455), 2, sym_attribute_specifier, - ACTIONS(8000), 19, + aux_sym_type_definition_repeat1, + STATE(4900), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8854), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490361,13 +489160,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(8002), 32, + ACTIONS(8856), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -490377,7 +489174,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, @@ -490389,36 +489185,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_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [42741] = 9, + [41883] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10343), 1, - anon_sym_DASH_GT, - ACTIONS(10406), 1, + ACTIONS(6665), 1, anon_sym_requires, - STATE(4481), 1, - sym_trailing_return_type, - ACTIONS(10403), 2, + ACTIONS(6663), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5128), 2, + STATE(4848), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 18, + ACTIONS(7972), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490437,9 +489232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8907), 31, + anon_sym_DASH_GT, + ACTIONS(7970), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -490447,7 +489244,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -490469,16 +489265,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [42819] = 6, + anon_sym_DASH_GT_STAR, + [41957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(10040), 1, anon_sym___attribute__, - ACTIONS(9963), 1, + ACTIONS(10042), 1, anon_sym___attribute, - STATE(4452), 1, + STATE(4415), 1, sym_attribute_specifier, - ACTIONS(7427), 12, + ACTIONS(7519), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -490491,7 +489288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7429), 43, + ACTIONS(7521), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -490535,22 +489332,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [42891] = 8, + [42029] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, + ACTIONS(10399), 1, + sym_identifier, + ACTIONS(10409), 1, + sym_primitive_type, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(5203), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10406), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(10404), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7193), 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(10401), 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(7195), 22, + anon_sym_AMP, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(6766), 1, anon_sym___attribute, - ACTIONS(6768), 1, - anon_sym_LBRACK_LBRACK, - STATE(2470), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4827), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 17, + 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_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [42111] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7093), 1, + anon_sym_LPAREN2, + ACTIONS(7109), 1, + anon_sym_LBRACK, + ACTIONS(7349), 1, + anon_sym_STAR, + ACTIONS(7351), 1, + anon_sym_AMP_AMP, + ACTIONS(7353), 1, + anon_sym_AMP, + STATE(1973), 1, + sym_parameter_list, + STATE(5138), 1, + sym__function_declarator_seq, + STATE(5460), 1, + sym__abstract_declarator, + STATE(5134), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + 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(9281), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [42195] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6694), 1, + anon_sym_requires, + ACTIONS(8250), 1, + anon_sym_DASH_GT, + STATE(4464), 1, + sym_trailing_return_type, + ACTIONS(6688), 2, + anon_sym_final, + anon_sym_override, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5208), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490560,24 +489503,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(8835), 34, + ACTIONS(7874), 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, @@ -490585,10 +489530,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_GT2, + [42273] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + STATE(4418), 1, + sym_attribute_specifier, + ACTIONS(7523), 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(7525), 43, + 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, @@ -490599,25 +489605,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, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [42967] = 7, + [42345] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(8393), 1, + anon_sym_DASH_GT, + ACTIONS(8399), 1, anon_sym_requires, - ACTIONS(6669), 2, + STATE(4448), 1, + sym_trailing_return_type, + ACTIONS(8396), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(4702), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4791), 2, + STATE(5027), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8913), 19, + ACTIONS(7972), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490636,11 +489647,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8915), 32, + ACTIONS(7970), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -490648,6 +489657,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -490669,13 +489679,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, - [43041] = 4, + [42423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(7223), 13, + ACTIONS(7246), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -490689,7 +489698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 44, + ACTIONS(7248), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -490734,38 +489743,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [43109] = 12, + [42491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(5657), 1, - anon_sym_SEMI, - ACTIONS(5665), 1, - sym_auto, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(10005), 1, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + STATE(4482), 1, + sym_attribute_specifier, + ACTIONS(7501), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4318), 1, - sym_template_argument_list, - STATE(4991), 1, - sym_decltype_auto, - ACTIONS(5659), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5643), 6, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7503), 43, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [42563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7146), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(5636), 40, + ACTIONS(7144), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -490774,12 +489833,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, @@ -490803,28 +489860,37 @@ 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, + anon_sym_typename, sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [43193] = 9, + [42629] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 1, + ACTIONS(6723), 1, anon_sym_requires, - ACTIONS(8318), 1, + ACTIONS(10335), 1, anon_sym_DASH_GT, - STATE(4432), 1, + STATE(4497), 1, sym_trailing_return_type, - ACTIONS(6694), 2, + ACTIONS(6717), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4702), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(5049), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 20, + ACTIONS(8987), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -490834,25 +489900,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_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(8989), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [42707] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6665), 1, + anon_sym_requires, + ACTIONS(6663), 2, + anon_sym_final, + anon_sym_override, + STATE(4618), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(4972), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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(7791), 29, + anon_sym_DASH_GT, + ACTIONS(8989), 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, @@ -490861,6 +489993,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, @@ -490874,17 +490007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [43271] = 6, + anon_sym_DASH_GT_STAR, + [42781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(10040), 1, anon_sym___attribute__, - ACTIONS(9963), 1, + ACTIONS(10042), 1, anon_sym___attribute, - STATE(4462), 1, + STATE(4450), 1, sym_attribute_specifier, - ACTIONS(7397), 12, + ACTIONS(7539), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -490897,7 +490030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7399), 43, + ACTIONS(7541), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -490941,43 +490074,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [43343] = 6, + [42853] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10372), 1, anon_sym___attribute__, - ACTIONS(9963), 1, + ACTIONS(10375), 1, anon_sym___attribute, - STATE(4463), 1, + ACTIONS(10378), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10411), 1, + anon_sym_requires, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(6658), 1, + sym__function_attributes_start, + STATE(7217), 1, + sym_ref_qualifier, + STATE(7996), 1, + sym_trailing_return_type, + STATE(8059), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6141), 2, sym_attribute_specifier, - ACTIONS(7505), 12, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8342), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7656), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [42973] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6694), 1, + anon_sym_requires, + ACTIONS(8887), 1, + anon_sym_DASH_GT, + STATE(4469), 1, + sym_trailing_return_type, + ACTIONS(6688), 2, + anon_sym_final, + anon_sym_override, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5230), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7507), 43, + ACTIONS(8402), 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, + anon_sym_QMARK, + anon_sym_STAR_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_GT2, + [43051] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8176), 1, + anon_sym___attribute__, + ACTIONS(8178), 1, + anon_sym___attribute, + ACTIONS(8336), 1, + anon_sym_LBRACE, + ACTIONS(10397), 1, + anon_sym_COLON, + STATE(2607), 1, + sym__enum_base_clause, + STATE(2656), 1, + sym_enumerator_list, + STATE(2993), 1, + sym_attribute_specifier, + ACTIONS(8007), 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(8009), 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, + [43131] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7071), 1, + anon_sym_LPAREN2, + ACTIONS(7087), 1, + anon_sym_LBRACK, + ACTIONS(7335), 1, + anon_sym_STAR, + ACTIONS(7337), 1, + anon_sym_AMP_AMP, + ACTIONS(7339), 1, + anon_sym_AMP, + STATE(1972), 1, + sym_parameter_list, + STATE(5174), 1, + sym__function_declarator_seq, + STATE(5416), 1, + sym__abstract_declarator, + STATE(5173), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9281), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + 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, + [43215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7115), 13, + 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_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(7113), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -490991,26 +490427,27 @@ 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_primitive_type, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [43415] = 3, + [43281] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 13, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + STATE(4521), 1, + sym_attribute_specifier, + ACTIONS(7515), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491021,10 +490458,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7475), 45, + ACTIONS(7517), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491037,8 +490473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -491070,16 +490504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [43481] = 6, + [43353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4089), 1, + STATE(4091), 1, sym_attribute_specifier, - ACTIONS(7547), 10, + ACTIONS(7491), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491090,7 +490524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7549), 45, + ACTIONS(7493), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491136,16 +490570,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [43553] = 6, + [43425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4128), 1, + STATE(4096), 1, sym_attribute_specifier, - ACTIONS(7551), 10, + ACTIONS(7495), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491156,7 +490590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7553), 45, + ACTIONS(7497), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491202,22 +490636,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [43625] = 8, + [43497] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym___attribute__, - ACTIONS(6766), 1, - anon_sym___attribute, - ACTIONS(6768), 1, - anon_sym_LBRACK_LBRACK, - STATE(2470), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5004), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 17, + ACTIONS(6694), 1, + anon_sym_requires, + ACTIONS(10344), 1, + anon_sym_DASH_GT, + STATE(4474), 1, + sym_trailing_return_type, + ACTIONS(6688), 2, + anon_sym_final, + anon_sym_override, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5233), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -491227,24 +490664,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(8839), 34, + ACTIONS(8989), 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, @@ -491252,34 +490691,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [43701] = 6, + anon_sym_GT2, + [43575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4147), 1, + STATE(4108), 1, sym_attribute_specifier, - ACTIONS(7427), 10, + ACTIONS(7501), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491290,7 +490725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7429), 45, + ACTIONS(7503), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491336,83 +490771,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [43773] = 7, + [43647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, - anon_sym_requires, - ACTIONS(6669), 2, - anon_sym_final, - anon_sym_override, - STATE(4610), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(4890), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 19, + ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, + anon_sym___attribute, + STATE(4113), 1, + sym_attribute_specifier, + ACTIONS(7505), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7966), 32, + ACTIONS(7507), 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_GT_GT, + anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [43847] = 6, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [43719] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(4286), 1, + sym_template_argument_list, + ACTIONS(6566), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(6559), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [43791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4132), 1, + STATE(4117), 1, sym_attribute_specifier, - ACTIONS(7397), 10, + ACTIONS(7511), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491423,7 +490923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7399), 45, + ACTIONS(7513), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491469,16 +490969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [43919] = 6, + [43863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4141), 1, + STATE(4119), 1, sym_attribute_specifier, - ACTIONS(7505), 10, + ACTIONS(7515), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491489,7 +490989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7507), 45, + ACTIONS(7517), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491535,16 +491035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [43991] = 6, + [43935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4055), 1, + STATE(4130), 1, sym_attribute_specifier, - ACTIONS(7423), 10, + ACTIONS(7519), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491555,7 +491055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7425), 45, + ACTIONS(7521), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491601,87 +491101,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44063] = 11, + [44007] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10409), 1, - sym_identifier, - ACTIONS(10419), 1, - sym_primitive_type, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4711), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10416), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4395), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(10414), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7249), 11, + ACTIONS(8265), 1, + anon_sym_DASH_GT, + ACTIONS(8271), 1, + anon_sym_requires, + STATE(4446), 1, + sym_trailing_return_type, + ACTIONS(8268), 2, + anon_sym_final, + anon_sym_override, + STATE(4702), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5251), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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(7874), 31, + 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_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(10411), 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(7251), 22, - anon_sym_AMP, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [44145] = 6, + 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, + [44085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4068), 1, + STATE(4132), 1, sym_attribute_specifier, - ACTIONS(7431), 10, + ACTIONS(7523), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491692,7 +491190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7433), 45, + ACTIONS(7525), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491738,16 +491236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44217] = 6, + [44157] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4078), 1, + STATE(4133), 1, sym_attribute_specifier, - ACTIONS(7435), 10, + ACTIONS(7527), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491758,7 +491256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7437), 45, + ACTIONS(7529), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491804,16 +491302,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44289] = 6, + [44229] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4084), 1, + STATE(4135), 1, sym_attribute_specifier, - ACTIONS(7453), 10, + ACTIONS(7531), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491824,7 +491322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7455), 45, + ACTIONS(7533), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491870,16 +491368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44361] = 6, + [44301] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4115), 1, + STATE(4038), 1, sym_attribute_specifier, - ACTIONS(7521), 10, + ACTIONS(7539), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491890,7 +491388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7523), 45, + ACTIONS(7541), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -491936,16 +491434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44433] = 6, + [44373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10075), 1, - anon_sym___attribute__, ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, anon_sym___attribute, - STATE(4122), 1, + STATE(4140), 1, sym_attribute_specifier, - ACTIONS(7531), 10, + ACTIONS(7481), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -491956,7 +491454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7533), 45, + ACTIONS(7483), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -492002,88 +491500,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [44505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8750), 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_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_literal_suffix, - ACTIONS(8752), 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_RBRACK_RBRACK, - 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, - 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_COLON_RBRACK, - [44571] = 9, + [44445] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, + ACTIONS(8830), 1, anon_sym_requires, - ACTIONS(8440), 1, - anon_sym_DASH_GT, - STATE(4534), 1, - sym_trailing_return_type, - ACTIONS(6742), 2, + ACTIONS(8827), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, + STATE(4618), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5121), 2, + STATE(4971), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 18, + ACTIONS(8404), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492102,9 +491533,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 31, + anon_sym_DASH_GT, + ACTIONS(8402), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -492112,7 +491545,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -492134,164 +491566,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [44649] = 11, + anon_sym_DASH_GT_STAR, + [44519] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10421), 1, - sym_identifier, - ACTIONS(10431), 1, - sym_primitive_type, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(5041), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10428), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(10426), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7205), 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(10423), 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(7207), 22, - anon_sym_AMP, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10040), 1, anon_sym___attribute__, + ACTIONS(10042), 1, 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_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [44731] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7136), 1, - anon_sym_LPAREN2, - ACTIONS(7152), 1, - anon_sym_LBRACK, - ACTIONS(7375), 1, - anon_sym_STAR, - ACTIONS(7377), 1, - anon_sym_AMP_AMP, - ACTIONS(7379), 1, - anon_sym_AMP, - STATE(1975), 1, - sym_parameter_list, - STATE(5091), 1, - sym__function_declarator_seq, - STATE(5419), 1, - sym__abstract_declarator, - STATE(5090), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 18, + STATE(4475), 1, + sym_attribute_specifier, + ACTIONS(7491), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_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_const, anon_sym_DOT, - ACTIONS(9427), 27, + ACTIONS(7493), 43, 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_STAR_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_final, + anon_sym_override, anon_sym_GT2, - [44815] = 7, + anon_sym_requires, + [44591] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(6723), 1, anon_sym_requires, - ACTIONS(6669), 2, + ACTIONS(8393), 1, + anon_sym_DASH_GT, + STATE(4494), 1, + sym_trailing_return_type, + ACTIONS(6717), 2, anon_sym_final, anon_sym_override, - STATE(4610), 2, + STATE(4702), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(4840), 2, + STATE(5027), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 19, + ACTIONS(7972), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -492310,11 +491670,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7791), 32, + ACTIONS(7970), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -492322,6 +491680,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -492343,11 +491702,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, - [44889] = 3, + [44669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 13, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + STATE(4502), 1, + sym_attribute_specifier, + ACTIONS(7495), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -492358,10 +491722,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7773), 44, + ACTIONS(7497), 43, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -492374,7 +491737,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_LT, anon_sym___extension__, - anon_sym___attribute__, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, @@ -492406,51 +491768,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [44954] = 13, + [44741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10038), 1, - anon_sym_virtual, - ACTIONS(10433), 1, + ACTIONS(8790), 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_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_literal_suffix, + ACTIONS(8792), 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, - STATE(4722), 1, + anon_sym_RBRACK_RBRACK, + 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, + 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_COLON_RBRACK, + [44807] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10413), 1, + sym_identifier, + ACTIONS(10423), 1, + sym_primitive_type, + STATE(4335), 1, sym_alignas_qualifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, + STATE(4727), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10420), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10036), 6, + STATE(4356), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(10418), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7209), 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_LBRACK_COLON, - STATE(3979), 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(8234), 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(8230), 13, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(10415), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -492464,93 +491879,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(10034), 13, + ACTIONS(7211), 22, 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_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [45039] = 25, + anon_sym_static, + 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_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [44889] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, - anon_sym_AMP_AMP, - ACTIONS(10457), 1, + ACTIONS(10431), 1, anon_sym_GT_EQ, - ACTIONS(10461), 1, + ACTIONS(10435), 1, anon_sym_LT_EQ_GT, - ACTIONS(10463), 1, - anon_sym_or, - ACTIONS(10465), 1, - anon_sym_and, - ACTIONS(10467), 1, - anon_sym_not_eq, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10447), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10449), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10451), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10453), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10459), 2, + ACTIONS(10433), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + ACTIONS(10429), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10435), 6, + ACTIONS(9621), 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(10437), 17, + ACTIONS(9623), 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, @@ -492562,82 +491977,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45148] = 27, + [44980] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, - anon_sym_AMP_AMP, - ACTIONS(10457), 1, + ACTIONS(10431), 1, anon_sym_GT_EQ, - ACTIONS(10461), 1, + ACTIONS(10435), 1, anon_sym_LT_EQ_GT, - ACTIONS(10463), 1, + ACTIONS(10441), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10443), 1, + anon_sym_AMP_AMP, + ACTIONS(10453), 1, anon_sym_or, - ACTIONS(10465), 1, + ACTIONS(10455), 1, anon_sym_and, - ACTIONS(10467), 1, + ACTIONS(10457), 1, anon_sym_not_eq, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10471), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10447), 2, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(10449), 2, + ACTIONS(10447), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10451), 2, + ACTIONS(10449), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(10453), 2, + ACTIONS(10451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + ACTIONS(10429), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9826), 6, + ACTIONS(10437), 6, aux_sym_preproc_elif_token1, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, sym_identifier, - ACTIONS(9828), 15, + ACTIONS(10439), 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, @@ -492648,78 +492061,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45261] = 23, + [45089] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10445), 1, - anon_sym_AMP_AMP, - ACTIONS(10457), 1, + ACTIONS(10431), 1, anon_sym_GT_EQ, - ACTIONS(10461), 1, + ACTIONS(10435), 1, anon_sym_LT_EQ_GT, - ACTIONS(10465), 1, + ACTIONS(10441), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10443), 1, + anon_sym_AMP_AMP, + ACTIONS(10453), 1, + anon_sym_or, + ACTIONS(10455), 1, anon_sym_and, - ACTIONS(10467), 1, + ACTIONS(10457), 1, anon_sym_not_eq, - STATE(3874), 1, + ACTIONS(10461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10465), 1, + anon_sym_QMARK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10447), 2, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(10449), 2, + ACTIONS(10447), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10451), 2, + ACTIONS(10449), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(10453), 2, + ACTIONS(10451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + ACTIONS(10429), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, + ACTIONS(10459), 6, 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(9709), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(10463), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -492730,75 +492147,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45366] = 21, + [45202] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10457), 1, + ACTIONS(10431), 1, anon_sym_GT_EQ, - ACTIONS(10461), 1, + ACTIONS(10435), 1, anon_sym_LT_EQ_GT, - ACTIONS(10467), 1, + ACTIONS(10441), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10443), 1, + anon_sym_AMP_AMP, + ACTIONS(10453), 1, + anon_sym_or, + ACTIONS(10455), 1, + anon_sym_and, + ACTIONS(10457), 1, anon_sym_not_eq, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10447), 2, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(10449), 2, + ACTIONS(10447), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10451), 2, + ACTIONS(10449), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(10453), 2, + ACTIONS(10451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + ACTIONS(10429), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 8, + ACTIONS(10467), 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, sym_identifier, - ACTIONS(9709), 19, + ACTIONS(10469), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -492810,75 +492231,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45467] = 20, + [45311] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10457), 1, + ACTIONS(10431), 1, anon_sym_GT_EQ, - ACTIONS(10461), 1, + ACTIONS(10435), 1, anon_sym_LT_EQ_GT, - ACTIONS(10467), 1, + ACTIONS(10441), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10443), 1, + anon_sym_AMP_AMP, + ACTIONS(10453), 1, + anon_sym_or, + ACTIONS(10455), 1, + anon_sym_and, + ACTIONS(10457), 1, anon_sym_not_eq, - STATE(3874), 1, + ACTIONS(10461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10465), 1, + anon_sym_QMARK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10449), 2, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10447), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10451), 2, + ACTIONS(10449), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(10453), 2, + ACTIONS(10451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + ACTIONS(10429), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 10, + ACTIONS(10471), 6, aux_sym_preproc_elif_token1, - anon_sym_PIPE, anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, sym_identifier, - ACTIONS(9709), 19, - anon_sym_DOT_DOT_DOT, + ACTIONS(10473), 15, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -492889,10 +492317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45566] = 3, + [45424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 13, + ACTIONS(7672), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -492906,7 +492334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7641), 44, + ACTIONS(7674), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -492951,73 +492379,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [45631] = 19, + [45489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9019), 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_LBRACK, - ACTIONS(9646), 1, + anon_sym_EQ, + anon_sym___asm, anon_sym_DOT, - ACTIONS(10457), 1, + anon_sym_DASH_GT, + ACTIONS(9021), 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, - ACTIONS(10461), 1, + anon_sym___attribute__, + 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_LT_EQ_GT, - ACTIONS(10467), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + anon_sym_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10439), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [45554] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10011), 1, + anon_sym_virtual, + ACTIONS(10475), 1, + anon_sym_SEMI, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10009), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3980), 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), 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(8276), 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(10007), 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, + [45639] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1950), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10233), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10451), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10453), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 12, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, - sym_identifier, - ACTIONS(9709), 19, + anon_sym_DOT, + ACTIONS(10231), 34, 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_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -493029,72 +492567,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45728] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10457), 1, - anon_sym_GT_EQ, - ACTIONS(10461), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(10467), 1, + anon_sym_bitor, + anon_sym_bitand, anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + anon_sym_COLON_RBRACK, + [45712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6604), 12, + 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6602), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_operator, + anon_sym_try, + anon_sym_requires, + [45777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9023), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10453), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 14, - 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_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, - sym_identifier, - ACTIONS(9709), 19, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9025), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -493106,10 +492687,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [45823] = 3, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [45842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7642), 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(7644), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [45907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 12, + ACTIONS(6608), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -493122,7 +492781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6608), 45, + ACTIONS(6606), 45, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -493168,10 +492827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [45888] = 3, + [45972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 12, + ACTIONS(6592), 12, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -493184,7 +492843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6616), 45, + ACTIONS(6590), 45, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -493230,32 +492889,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_operator, anon_sym_try, anon_sym_requires, - [45953] = 3, + [46037] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6622), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(10477), 1, + anon_sym_SEMI, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9576), 1, + sym_virtual_specifier, + STATE(10403), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7256), 7, 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(6620), 45, + anon_sym_LBRACK_COLON, + ACTIONS(7254), 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___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, @@ -493279,361 +492956,96 @@ 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, - [46018] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10457), 1, - anon_sym_GT_EQ, - ACTIONS(10461), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10439), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10455), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 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(9709), 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, - [46109] = 14, + [46120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10481), 26, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10461), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10439), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, + anon_sym_BANG, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9707), 18, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9709), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [46196] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, - anon_sym_AMP_AMP, - ACTIONS(10457), 1, - anon_sym_GT_EQ, - ACTIONS(10461), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10463), 1, - anon_sym_or, - ACTIONS(10465), 1, - anon_sym_and, - ACTIONS(10467), 1, - anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, + anon_sym_COLON_COLON, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10439), 2, + 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, + anon_sym_CARET_CARET, + anon_sym_LBRACK_COLON, + ACTIONS(10479), 31, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10447), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10449), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10451), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10453), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10455), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10473), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(10475), 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, - [46305] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym___extension__, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, - anon_sym_AMP_AMP, - ACTIONS(10457), 1, - anon_sym_GT_EQ, - ACTIONS(10461), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10463), 1, - anon_sym_or, - ACTIONS(10465), 1, - anon_sym_and, - ACTIONS(10467), 1, - anon_sym_not_eq, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10471), 1, - anon_sym_QMARK, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10439), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10447), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10449), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10451), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10453), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10455), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10477), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + 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_typename, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_true, + sym_false, + anon_sym_NULL, + anon_sym_nullptr, sym_identifier, - ACTIONS(10479), 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, - [46418] = 12, + anon_sym_decltype, + anon_sym_template, + anon_sym_delete, + anon_sym_co_await, + anon_sym_new, + anon_sym_requires, + sym_this, + [46185] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(10481), 1, + ACTIONS(10483), 1, anon_sym_SEMI, - STATE(4730), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4978), 1, + STATE(4829), 1, sym_attribute_specifier, - STATE(9508), 1, + STATE(9576), 1, sym_virtual_specifier, - STATE(10399), 1, + STATE(10403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7237), 7, + ACTIONS(7256), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -493641,7 +493053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, + ACTIONS(7254), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -493681,72 +493093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [46501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7655), 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(7657), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [46566] = 3, + [46268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 13, + ACTIONS(7743), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -493760,7 +493110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7649), 44, + ACTIONS(7745), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -493805,133 +493155,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [46631] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10483), 1, - anon_sym_SEMI, - STATE(4730), 1, - sym_field_declaration_list, - STATE(4978), 1, - sym_attribute_specifier, - STATE(9508), 1, - sym_virtual_specifier, - STATE(10399), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7237), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, - 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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [46714] = 25, + [46333] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, - anon_sym_AMP_AMP, - ACTIONS(10457), 1, + ACTIONS(10431), 1, anon_sym_GT_EQ, - ACTIONS(10461), 1, + ACTIONS(10435), 1, anon_sym_LT_EQ_GT, - ACTIONS(10463), 1, + ACTIONS(10441), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10443), 1, + anon_sym_AMP_AMP, + ACTIONS(10453), 1, anon_sym_or, - ACTIONS(10465), 1, + ACTIONS(10455), 1, anon_sym_and, - ACTIONS(10467), 1, + ACTIONS(10457), 1, anon_sym_not_eq, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10447), 2, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(10449), 2, + ACTIONS(10447), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10451), 2, + ACTIONS(10449), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(10453), 2, + ACTIONS(10451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + ACTIONS(10429), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, @@ -493960,128 +493239,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [46823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7663), 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(7665), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [46888] = 27, + [46442] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, - anon_sym_AMP_AMP, - ACTIONS(10457), 1, + ACTIONS(10431), 1, anon_sym_GT_EQ, - ACTIONS(10461), 1, + ACTIONS(10435), 1, anon_sym_LT_EQ_GT, - ACTIONS(10463), 1, + ACTIONS(10441), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10443), 1, + anon_sym_AMP_AMP, + ACTIONS(10453), 1, anon_sym_or, - ACTIONS(10465), 1, + ACTIONS(10455), 1, anon_sym_and, - ACTIONS(10467), 1, + ACTIONS(10457), 1, anon_sym_not_eq, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10471), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10447), 2, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(10449), 2, + ACTIONS(10447), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(10451), 2, + ACTIONS(10449), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(10453), 2, + ACTIONS(10451), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + ACTIONS(10429), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, @@ -494092,12 +493305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, sym_identifier, - ACTIONS(10491), 15, + ACTIONS(10491), 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, @@ -494108,50 +493323,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [47001] = 7, + [46551] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 1, - anon_sym_requires, - ACTIONS(6694), 2, - anon_sym_final, - anon_sym_override, - STATE(4705), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5258), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 20, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10431), 1, + anon_sym_GT_EQ, + ACTIONS(10435), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10441), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10443), 1, + anon_sym_AMP_AMP, + ACTIONS(10453), 1, + anon_sym_or, + ACTIONS(10455), 1, + anon_sym_and, + ACTIONS(10457), 1, + anon_sym_not_eq, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10447), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10449), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10429), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9661), 6, + aux_sym_preproc_elif_token1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7791), 30, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(9659), 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_LBRACK, + 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, @@ -494159,25 +493403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [47074] = 3, + [46660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 13, + ACTIONS(7747), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494191,7 +493424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7669), 44, + ACTIONS(7749), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -494236,80 +493469,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [47139] = 3, + [46725] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 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(7673), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + ACTIONS(8338), 1, anon_sym___attribute__, + ACTIONS(8340), 1, + anon_sym___attribute, + ACTIONS(8439), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [47204] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10210), 19, + ACTIONS(10493), 1, + anon_sym_COLON, + STATE(2706), 1, + sym__enum_base_clause, + STATE(2840), 1, + sym_enumerator_list, + STATE(3188), 1, + sym_attribute_specifier, + ACTIONS(8001), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -494323,24 +493500,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(10208), 34, + ACTIONS(8003), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -494363,11 +493538,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [47277] = 3, + [46804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 13, + ACTIONS(7751), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494381,7 +493555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7733), 44, + ACTIONS(7753), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -494426,10 +493600,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [47342] = 3, + [46869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 13, + ACTIONS(7761), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494443,7 +493617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7653), 44, + ACTIONS(7763), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -494488,33 +493662,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [47407] = 13, + [46934] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10038), 1, + ACTIONS(10011), 1, anon_sym_virtual, - ACTIONS(10493), 1, + ACTIONS(10495), 1, anon_sym_SEMI, - STATE(4722), 1, + STATE(4659), 1, sym_alignas_qualifier, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10036), 6, + ACTIONS(10009), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - STATE(3979), 7, + STATE(3980), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -494522,7 +493696,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(8234), 9, + ACTIONS(8280), 9, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -494532,294 +493706,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(8230), 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(10034), 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, - [47492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7659), 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(7661), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(8276), 13, 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [47557] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7223), 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(7225), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [47622] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10186), 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, - ACTIONS(10184), 34, - 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [47695] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6700), 1, - anon_sym_requires, - ACTIONS(6694), 2, - anon_sym_final, - anon_sym_override, - STATE(4705), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5047), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 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(7966), 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, - [47768] = 3, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + ACTIONS(10007), 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, + [47019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 13, + ACTIONS(7765), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -494833,7 +493751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7769), 44, + ACTIONS(7767), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -494878,38 +493796,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [47833] = 12, + [47084] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(10497), 1, anon_sym_LBRACE, - ACTIONS(10495), 1, - anon_sym_SEMI, - STATE(4730), 1, - sym_field_declaration_list, - STATE(4978), 1, + STATE(4638), 1, + sym_enumerator_list, + STATE(4970), 1, sym_attribute_specifier, - STATE(9508), 1, - sym_virtual_specifier, - STATE(10399), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7237), 7, + ACTIONS(7383), 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_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, + ACTIONS(7381), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -494949,60 +493862,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [47916] = 12, + [47157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10497), 1, - anon_sym_SEMI, - STATE(4730), 1, - sym_field_declaration_list, - STATE(4978), 1, - sym_attribute_specifier, - STATE(9508), 1, - sym_virtual_specifier, - STATE(10399), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, + ACTIONS(7775), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(7237), 7, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7777), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_LBRACK_COLON, - ACTIONS(7235), 39, - 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___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + 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, @@ -495016,93 +493908,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [47999] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10499), 1, - anon_sym_SEMI, - STATE(4730), 1, - sym_field_declaration_list, - STATE(4978), 1, - sym_attribute_specifier, - STATE(9508), 1, - sym_virtual_specifier, - STATE(10399), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + 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, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7237), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, - 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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [48082] = 7, + anon_sym_GT2, + anon_sym_requires, + [47222] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10190), 19, + ACTIONS(8256), 1, + anon_sym_requires, + ACTIONS(8253), 2, + anon_sym_final, + anon_sym_override, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5208), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495112,28 +493948,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_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10188), 34, + ACTIONS(7874), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -495141,7 +493975,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, @@ -495156,109 +493989,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [48155] = 7, + anon_sym_GT2, + [47295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10194), 19, + ACTIONS(7779), 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_COLON, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(10192), 34, + ACTIONS(7781), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [48228] = 13, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [47360] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10038), 1, - anon_sym_virtual, - ACTIONS(10501), 1, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(10499), 1, anon_sym_SEMI, - STATE(4722), 1, - sym_alignas_qualifier, - ACTIONS(8236), 2, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9576), 1, + sym_virtual_specifier, + STATE(10403), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10036), 6, + ACTIONS(7256), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - STATE(3979), 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(8234), 9, + ACTIONS(7254), 39, + 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, @@ -495267,8 +494105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(8230), 13, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -495281,35 +494117,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(10034), 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, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [48313] = 7, + [47443] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 1, + ACTIONS(8385), 1, anon_sym_requires, - ACTIONS(6694), 2, + ACTIONS(8382), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4669), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5066), 2, + STATE(5223), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 20, + ACTIONS(7972), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495330,7 +494158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 30, + ACTIONS(7970), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -495361,105 +494189,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [48386] = 4, + [47516] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10503), 1, - anon_sym_LPAREN2, - ACTIONS(9027), 19, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7168), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2573), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4644), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8870), 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_COLON, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym___asm, + 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(9029), 37, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8872), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [48453] = 13, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [47589] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10038), 1, - anon_sym_virtual, - ACTIONS(10505), 1, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(10501), 1, anon_sym_SEMI, - STATE(4722), 1, - sym_alignas_qualifier, - ACTIONS(8236), 2, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9576), 1, + sym_virtual_specifier, + STATE(10403), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10036), 6, + ACTIONS(7256), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - STATE(3979), 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(8234), 9, + ACTIONS(7254), 39, + 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, @@ -495468,8 +494308,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(8230), 13, - anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -495482,35 +494320,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(10034), 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, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [48538] = 7, + [47672] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 1, - anon_sym_requires, - ACTIONS(6694), 2, - anon_sym_final, - anon_sym_override, - STATE(4705), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5071), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 20, + ACTIONS(8338), 1, + anon_sym___attribute__, + ACTIONS(8340), 1, + anon_sym___attribute, + ACTIONS(8439), 1, + anon_sym_LBRACE, + ACTIONS(10493), 1, + anon_sym_COLON, + STATE(2715), 1, + sym__enum_base_clause, + STATE(2866), 1, + sym_enumerator_list, + STATE(3232), 1, + sym_attribute_specifier, + ACTIONS(8007), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495520,18 +494353,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(8907), 30, + ACTIONS(8009), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -495539,7 +494370,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -495547,6 +494380,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, @@ -495561,25 +494395,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [48611] = 10, + [47751] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8265), 1, - anon_sym___attribute__, - ACTIONS(8267), 1, - anon_sym___attribute, - ACTIONS(8472), 1, - anon_sym_LBRACE, - ACTIONS(10507), 1, - anon_sym_COLON, - STATE(2728), 1, - sym__enum_base_clause, - STATE(2886), 1, - sym_enumerator_list, - STATE(3217), 1, - sym_attribute_specifier, - ACTIONS(8000), 20, + ACTIONS(8893), 1, + anon_sym_requires, + ACTIONS(8890), 2, + anon_sym_final, + anon_sym_override, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5230), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495600,7 +494430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8002), 30, + ACTIONS(8402), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -495631,145 +494461,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [48690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7717), 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(7719), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [48755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7739), 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(7741), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [48820] = 7, + [47824] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6700), 1, + ACTIONS(10350), 1, anon_sym_requires, - ACTIONS(6694), 2, + ACTIONS(10347), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4669), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5074), 2, + STATE(5233), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8913), 20, + ACTIONS(8987), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -495790,7 +494496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8915), 30, + ACTIONS(8989), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -495821,58 +494527,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [48893] = 3, + [47897] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 13, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10225), 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(7745), 44, + ACTIONS(10223), 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_GT_EQ, + anon_sym_SEMI, 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, @@ -495881,32 +494592,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [48958] = 12, + [47970] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(10509), 1, + ACTIONS(10503), 1, anon_sym_SEMI, - STATE(4730), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4978), 1, + STATE(4829), 1, sym_attribute_specifier, - STATE(9508), 1, + STATE(9576), 1, sym_virtual_specifier, - STATE(10399), 1, + STATE(10403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7237), 7, + ACTIONS(7256), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -495914,7 +494624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, + ACTIONS(7254), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -495954,129 +494664,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [49041] = 12, + [48053] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10511), 1, - anon_sym_SEMI, - STATE(4730), 1, - sym_field_declaration_list, - STATE(4978), 1, - sym_attribute_specifier, - STATE(9508), 1, - sym_virtual_specifier, - STATE(10399), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7237), 7, + ACTIONS(9393), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, - 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(10180), 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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [49124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7751), 13, + STATE(1977), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10264), 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(7753), 44, + ACTIONS(10266), 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_GT_EQ, + anon_sym_SEMI, 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, @@ -496085,60 +494729,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [49189] = 3, + [48126] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 13, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10178), 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(7777), 44, + ACTIONS(10176), 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_GT_EQ, + anon_sym_SEMI, 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, @@ -496147,17 +494795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [49254] = 5, + [48199] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10513), 1, - anon_sym_LBRACK_LBRACK, - STATE(4453), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 20, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10221), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -496171,23 +494821,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9075), 34, + ACTIONS(10219), 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -496209,124 +494858,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_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [49323] = 3, + [48272] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10518), 26, + ACTIONS(9393), 1, anon_sym_LPAREN2, - anon_sym_BANG, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP, - anon_sym_COLON_COLON, - 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, - anon_sym_CARET_CARET, - anon_sym_LBRACK_COLON, - ACTIONS(10516), 31, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym___extension__, + ACTIONS(10180), 1, anon_sym_LBRACK, - 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_typename, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - sym_true, - sym_false, - anon_sym_NULL, - anon_sym_nullptr, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_delete, - anon_sym_co_await, - anon_sym_new, - anon_sym_requires, - sym_this, - [49388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7569), 13, + STATE(1977), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10229), 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(7571), 44, + ACTIONS(10227), 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_GT_EQ, + anon_sym_SEMI, 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, @@ -496335,60 +494927,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [49453] = 3, + [48345] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 13, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10233), 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(7757), 44, + ACTIONS(10231), 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_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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, @@ -496397,60 +494993,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [49518] = 3, + [48418] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7759), 13, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10243), 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(7761), 44, + ACTIONS(10241), 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_GT_EQ, + anon_sym_SEMI, 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, @@ -496459,60 +495059,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [49583] = 3, + [48491] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 13, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1977), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10262), 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(7765), 44, + ACTIONS(10260), 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_GT_EQ, + anon_sym_SEMI, 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, @@ -496521,28 +495125,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [49648] = 3, + [48564] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 13, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7168), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(2573), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4721), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8854), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(7587), 44, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8856), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -496551,67 +495179,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_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_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [49713] = 3, + anon_sym_COLON_RBRACK, + [48637] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 12, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10011), 1, + anon_sym_virtual, + ACTIONS(10505), 1, + anon_sym_SEMI, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10009), 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(6632), 45, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, + anon_sym_LBRACK_COLON, + STATE(3980), 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), 9, 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, @@ -496620,6 +495236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + ACTIONS(8276), 13, + anon_sym___extension__, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -496632,240 +495250,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, + ACTIONS(10007), 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, - sym_auto, anon_sym_decltype, - anon_sym_final, - anon_sym_override, + anon_sym_template, anon_sym_operator, - anon_sym_try, - anon_sym_requires, - [49778] = 3, + [48722] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 13, + ACTIONS(10510), 1, + anon_sym_requires, + ACTIONS(10507), 2, + anon_sym_final, + anon_sym_override, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5235), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8997), 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_GT_GT, - anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7597), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___extension__, - anon_sym___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_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_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, - [49843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7607), 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(7609), 44, + ACTIONS(8999), 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_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, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [49908] = 3, + [48795] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 13, + ACTIONS(8271), 1, + anon_sym_requires, + ACTIONS(8268), 2, + anon_sym_final, + anon_sym_override, + STATE(4702), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5251), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_const, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7625), 44, + ACTIONS(7874), 32, 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_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_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [49973] = 3, + [48868] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 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, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(10513), 1, + anon_sym_SEMI, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9576), 1, + sym_virtual_specifier, + STATE(10403), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7781), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7256), 7, 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7254), 39, + anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + 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, @@ -496879,26 +495463,25 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [50038] = 3, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [48951] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 19, + ACTIONS(8399), 1, + anon_sym_requires, + ACTIONS(8396), 2, + anon_sym_final, + anon_sym_override, + STATE(4702), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5027), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -496912,24 +495495,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_LBRACK, anon_sym_EQ, - anon_sym___asm, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9009), 38, + ACTIONS(7970), 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___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -496941,55 +495522,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [50103] = 3, + anon_sym_DASH_GT, + [49024] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 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, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(10515), 1, + anon_sym_SEMI, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9576), 1, + sym_virtual_specifier, + STATE(10403), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - anon_sym_DOT, - ACTIONS(7597), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(7256), 7, 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7254), 39, + anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + 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, @@ -497003,37 +495600,25 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [50168] = 7, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [49107] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8324), 1, + ACTIONS(8902), 1, anon_sym_requires, - ACTIONS(8321), 2, + ACTIONS(8899), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4702), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5258), 2, + STATE(5040), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 20, + ACTIONS(8404), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497043,18 +495628,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(7791), 30, + ACTIONS(8402), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -497062,7 +495645,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497070,6 +495655,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, @@ -497084,22 +495670,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [50241] = 7, + [49180] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8435), 1, + ACTIONS(10341), 1, anon_sym_requires, - ACTIONS(8432), 2, + ACTIONS(10338), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4702), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5047), 2, + STATE(5049), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 20, + ACTIONS(8987), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497109,18 +495694,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(7966), 30, + ACTIONS(8989), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -497128,7 +495711,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497136,6 +495721,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, @@ -497150,11 +495736,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [50314] = 3, + [49253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 13, + ACTIONS(7638), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -497168,7 +495753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7567), 44, + ACTIONS(7640), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -497213,21 +495798,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [50379] = 7, + [49318] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8989), 1, + ACTIONS(10520), 1, anon_sym_requires, - ACTIONS(8986), 2, + ACTIONS(10517), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4702), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5066), 2, + STATE(5050), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 20, + ACTIONS(8997), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497237,18 +495822,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(8422), 30, + ACTIONS(8999), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -497256,7 +495839,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497264,6 +495849,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, @@ -497278,22 +495864,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [50452] = 7, + [49391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10400), 1, + ACTIONS(7646), 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(7648), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(10397), 2, + [49456] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10011), 1, + anon_sym_virtual, + ACTIONS(10523), 1, + anon_sym_SEMI, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10009), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3980), 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), 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(8276), 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(10007), 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, + [49541] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(10525), 1, + anon_sym_SEMI, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9576), 1, + sym_virtual_specifier, + STATE(10403), 1, + sym_base_class_clause, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7256), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7254), 39, + 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, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [49624] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(10527), 1, + anon_sym_SEMI, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9576), 1, sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5071), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 20, + STATE(10403), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7256), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7254), 39, + 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, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [49707] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10011), 1, + anon_sym_virtual, + ACTIONS(10529), 1, + anon_sym_SEMI, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10009), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3980), 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), 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(8276), 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(10007), 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, + [49792] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1950), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10225), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497303,26 +496233,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_COLON, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8907), 30, + ACTIONS(10223), 34, 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_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497330,6 +496262,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, @@ -497344,22 +496277,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [50525] = 7, + anon_sym_COLON_RBRACK, + [49865] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10523), 1, + ACTIONS(6694), 1, anon_sym_requires, - ACTIONS(10520), 2, + ACTIONS(6688), 2, anon_sym_final, anon_sym_override, - STATE(4705), 2, + STATE(4669), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5074), 2, + STATE(5208), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8913), 20, + ACTIONS(7876), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497380,7 +496313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8915), 30, + ACTIONS(7874), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -497411,30 +496344,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [50598] = 12, + [49938] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(10526), 1, + ACTIONS(10531), 1, anon_sym_SEMI, - STATE(4730), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4978), 1, + STATE(4829), 1, sym_attribute_specifier, - STATE(9508), 1, + STATE(9576), 1, sym_virtual_specifier, - STATE(10399), 1, + STATE(10403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7237), 7, + ACTIONS(7256), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -497442,7 +496375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, + ACTIONS(7254), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -497482,30 +496415,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [50681] = 12, + [50021] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(10528), 1, + ACTIONS(10533), 1, anon_sym_SEMI, - STATE(4730), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4978), 1, + STATE(4829), 1, sym_attribute_specifier, - STATE(9508), 1, + STATE(9576), 1, sym_virtual_specifier, - STATE(10399), 1, + STATE(10403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7237), 7, + ACTIONS(7256), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -497513,11 +496446,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, + ACTIONS(7254), 39, + 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, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [50104] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7119), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7122), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7117), 44, 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, @@ -497551,23 +496547,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [50764] = 7, + [50175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8366), 1, - anon_sym_requires, - ACTIONS(8363), 2, - anon_sym_final, - anon_sym_override, - STATE(4653), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5110), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 18, + ACTIONS(6630), 1, + anon_sym_LBRACK_LBRACK, + STATE(4463), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9035), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497581,22 +496573,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 32, + anon_sym_DASH_GT, + ACTIONS(9037), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497618,22 +496611,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, - [50837] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8446), 1, - anon_sym_requires, - ACTIONS(8443), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5121), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 18, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [50244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10535), 1, + anon_sym_LBRACK_LBRACK, + STATE(4463), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2471), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497647,22 +496637,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 32, + anon_sym_DASH_GT, + ACTIONS(9039), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497684,22 +496675,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [50910] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [50313] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8931), 1, + ACTIONS(6694), 1, anon_sym_requires, - ACTIONS(8928), 2, + ACTIONS(6688), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, + STATE(4669), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5126), 2, + STATE(5223), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 18, + ACTIONS(7972), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497709,16 +496703,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(8422), 32, + ACTIONS(7970), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -497726,9 +496722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497736,7 +496730,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, @@ -497751,18 +496744,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [50983] = 7, + anon_sym_GT2, + [50386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10206), 19, + ACTIONS(8949), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497777,21 +496763,23 @@ static const uint16_t ts_small_parse_table[] = { 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___asm, anon_sym_DOT, - ACTIONS(10204), 34, + anon_sym_DASH_GT, + ACTIONS(8951), 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_SEMI, anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497803,24 +496791,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_asm, + anon_sym___asm__, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [51056] = 3, + anon_sym_DASH_GT_STAR, + [50451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 19, + ACTIONS(8945), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497840,7 +496830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8940), 38, + ACTIONS(8947), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -497879,34 +496869,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [51121] = 6, + [50516] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(4318), 1, - sym_template_argument_list, - ACTIONS(5657), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(10538), 1, + anon_sym_SEMI, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9576), 1, + sym_virtual_specifier, + STATE(10403), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7256), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_LBRACK_COLON, - ACTIONS(7371), 44, + ACTIONS(7254), 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___cdecl, @@ -497940,25 +496938,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, anon_sym_template, anon_sym_operator, - [51192] = 7, + [50599] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10533), 1, + ACTIONS(6694), 1, anon_sym_requires, - ACTIONS(10530), 2, + ACTIONS(6688), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, + STATE(4669), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5129), 2, + STATE(5230), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8913), 18, + ACTIONS(8404), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -497968,16 +496964,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(8915), 32, + ACTIONS(8402), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -497985,9 +496983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -497995,7 +496991,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, @@ -498010,18 +497005,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [51265] = 7, + anon_sym_GT2, + [50672] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10198), 19, + ACTIONS(6694), 1, + anon_sym_requires, + ACTIONS(6688), 2, + anon_sym_final, + anon_sym_override, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5233), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498031,28 +497030,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_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10196), 34, + ACTIONS(8989), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498060,7 +497057,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, @@ -498075,85 +497071,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [51338] = 7, + anon_sym_GT2, + [50745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, + ACTIONS(6588), 12, + 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_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(7178), 2, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6586), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_operator, + anon_sym_try, + anon_sym_requires, + [50810] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8229), 1, anon_sym___attribute__, + ACTIONS(8231), 1, anon_sym___attribute, - STATE(2548), 2, + ACTIONS(8435), 1, + anon_sym_LBRACE, + ACTIONS(10540), 1, + anon_sym_COLON, + STATE(2653), 1, + sym__enum_base_clause, + STATE(2879), 1, + sym_enumerator_list, + STATE(3115), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4649), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 22, - aux_sym_preproc_elif_token1, + ACTIONS(8007), 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_COLON, - anon_sym_LBRACK, + 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8835), 28, + ACTIONS(8009), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [51411] = 7, + anon_sym_GT2, + [50889] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10011), 1, + anon_sym_virtual, + ACTIONS(10542), 1, + anon_sym_SEMI, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10009), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3980), 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), 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(8276), 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(10007), 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, + [50974] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1957), 1, + STATE(1950), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10202), 19, + ACTIONS(10221), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498173,7 +497306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10200), 34, + ACTIONS(10219), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -498208,51 +497341,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [51484] = 7, + [51047] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7178), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(2548), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4648), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 22, - aux_sym_preproc_elif_token1, + ACTIONS(6694), 1, + anon_sym_requires, + ACTIONS(6688), 2, + anon_sym_final, + anon_sym_override, + STATE(4669), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5235), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8997), 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_COLON, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(8999), 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, + [51120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7650), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8839), 28, + ACTIONS(7652), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -498261,65 +497435,87 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [51557] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [51185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 19, + ACTIONS(7654), 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_LBRACK, - anon_sym_EQ, - anon_sym___asm, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8981), 38, + ACTIONS(7656), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, @@ -498329,91 +497525,83 @@ 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_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [51622] = 10, + [51250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8293), 1, - anon_sym___attribute__, - ACTIONS(8295), 1, - anon_sym___attribute, - ACTIONS(8476), 1, - anon_sym_LBRACE, - ACTIONS(10536), 1, - anon_sym_COLON, - STATE(2665), 1, - sym__enum_base_clause, - STATE(2891), 1, - sym_enumerator_list, - STATE(3104), 1, - sym_attribute_specifier, - ACTIONS(8000), 18, + ACTIONS(7696), 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, - ACTIONS(8002), 32, + ACTIONS(7698), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [51701] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [51315] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, + ACTIONS(6630), 1, anon_sym_LBRACK_LBRACK, - STATE(4453), 2, + STATE(4463), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 20, + ACTIONS(8870), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498434,7 +497622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8835), 34, + ACTIONS(8872), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -498469,63 +497657,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [51770] = 7, + [51384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10210), 19, + ACTIONS(7144), 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, - ACTIONS(10208), 34, + ACTIONS(7146), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + 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, @@ -498534,16 +497717,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [51843] = 5, + [51449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, + ACTIONS(6630), 1, anon_sym_LBRACK_LBRACK, - STATE(4453), 2, + STATE(4463), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 20, + ACTIONS(8854), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -498564,7 +497748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8839), 34, + ACTIONS(8856), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -498599,163 +497783,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [51912] = 25, + [51518] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, - anon_sym_AMP_AMP, - ACTIONS(10457), 1, - anon_sym_GT_EQ, - ACTIONS(10461), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10463), 1, - anon_sym_or, - ACTIONS(10465), 1, - anon_sym_and, - ACTIONS(10467), 1, - anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10439), 2, + STATE(1950), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10243), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10447), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10449), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10451), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10453), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10455), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10538), 6, - aux_sym_preproc_elif_token1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON, anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(10540), 17, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10241), 34, 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, - [52021] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10443), 1, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, anon_sym_AMP_AMP, - ACTIONS(10457), 1, - anon_sym_GT_EQ, - ACTIONS(10461), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10463), 1, - anon_sym_or, - ACTIONS(10465), 1, - anon_sym_and, - ACTIONS(10467), 1, - anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10439), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10447), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10449), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10451), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10453), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10455), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10542), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(10544), 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_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -498767,94 +497837,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [52130] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10443), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10445), 1, - anon_sym_AMP_AMP, - ACTIONS(10457), 1, - anon_sym_GT_EQ, - ACTIONS(10461), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(10463), 1, - anon_sym_or, - ACTIONS(10465), 1, - anon_sym_and, - ACTIONS(10467), 1, + anon_sym_bitor, + anon_sym_bitand, anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10447), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(10449), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10451), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(10453), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10455), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9599), 6, - aux_sym_preproc_elif_token1, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - sym_identifier, - ACTIONS(9597), 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, - [52239] = 3, + anon_sym_COLON_RBRACK, + [51591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7158), 13, + ACTIONS(7700), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -498868,7 +497866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7160), 44, + ACTIONS(7702), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -498913,86 +497911,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [52304] = 12, + [51656] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10546), 1, - anon_sym_SEMI, - STATE(4730), 1, - sym_field_declaration_list, - STATE(4978), 1, - sym_attribute_specifier, - STATE(9508), 1, - sym_virtual_specifier, - STATE(10399), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7237), 7, + ACTIONS(9182), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, - 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(9625), 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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [52387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8889), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 22, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -499001,86 +497946,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym___asm, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8891), 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_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_LT_EQ_GT, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [52452] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8897), 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_LBRACK, - anon_sym_EQ, - anon_sym___asm, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8899), 38, + sym_identifier, + ACTIONS(9623), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -499093,48 +497981,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [52517] = 11, + [51737] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10441), 3, + ACTIONS(10425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 22, + ACTIONS(9621), 20, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -499154,7 +498028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(9709), 23, + ACTIONS(9623), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -499178,33 +498052,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [52598] = 12, + [51820] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10441), 3, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 20, + ACTIONS(9621), 18, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_CARET, @@ -499212,8 +498089,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -499225,7 +498100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(9709), 23, + ACTIONS(9623), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -499249,66 +498124,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - [52681] = 13, + [51905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(7704), 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(7706), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9642), 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___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10439), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10459), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10441), 3, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [51970] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6723), 1, + anon_sym_requires, + ACTIONS(6717), 2, + anon_sym_final, + anon_sym_override, + STATE(4702), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5251), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 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_bitand, - anon_sym_not_eq, - sym_identifier, - ACTIONS(9709), 23, + anon_sym_DOT, + ACTIONS(7874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_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, @@ -499320,31 +498241,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, - [52766] = 12, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [52043] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(10548), 1, + ACTIONS(10544), 1, anon_sym_SEMI, - STATE(4730), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4978), 1, + STATE(4829), 1, sym_attribute_specifier, - STATE(9508), 1, + STATE(9576), 1, sym_virtual_specifier, - STATE(10399), 1, + STATE(10403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7237), 7, + ACTIONS(7256), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -499352,7 +498283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, + ACTIONS(7254), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -499392,102 +498323,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [52849] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10038), 1, - anon_sym_virtual, - ACTIONS(10550), 1, - anon_sym_SEMI, - STATE(4722), 1, - sym_alignas_qualifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10036), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - STATE(3979), 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(8234), 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(8230), 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(10034), 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, - [52934] = 12, + [52126] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(10552), 1, + ACTIONS(10546), 1, anon_sym_SEMI, - STATE(4730), 1, + STATE(4635), 1, sym_field_declaration_list, - STATE(4978), 1, + STATE(4829), 1, sym_attribute_specifier, - STATE(9508), 1, + STATE(9576), 1, sym_virtual_specifier, - STATE(10399), 1, + STATE(10403), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7237), 7, + ACTIONS(7256), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -499495,7 +498354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(7235), 39, + ACTIONS(7254), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -499535,52 +498394,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [53017] = 6, + [52209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(7668), 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, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7090), 10, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7670), 44, + 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(7085), 44, - 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, @@ -499594,30 +498440,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, + 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_template, - anon_sym_operator, - [53088] = 10, + anon_sym_GT2, + anon_sym_requires, + [52274] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8293), 1, - anon_sym___attribute__, - ACTIONS(8295), 1, - anon_sym___attribute, - ACTIONS(8476), 1, - anon_sym_LBRACE, - ACTIONS(10536), 1, - anon_sym_COLON, - STATE(2680), 1, - sym__enum_base_clause, - STATE(2748), 1, - sym_enumerator_list, - STATE(3130), 1, - sym_attribute_specifier, - ACTIONS(8006), 18, + ACTIONS(6723), 1, + anon_sym_requires, + ACTIONS(6717), 2, + anon_sym_final, + anon_sym_override, + STATE(4702), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5027), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -499636,7 +498489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8008), 32, + ACTIONS(7970), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -499669,10 +498522,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [53167] = 3, + [52347] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 13, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1950), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10264), 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, + ACTIONS(10266), 34, + 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_RBRACK_RBRACK, + 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, + anon_sym_COLON_RBRACK, + [52420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7672), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -499686,7 +498605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7737), 44, + ACTIONS(7674), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -499731,42 +498650,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [53232] = 3, + [52485] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 12, + ACTIONS(6723), 1, + anon_sym_requires, + ACTIONS(6717), 2, + anon_sym_final, + anon_sym_override, + STATE(4702), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5040), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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(8402), 32, + 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [52558] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6723), 1, + anon_sym_requires, + ACTIONS(6717), 2, + anon_sym_final, + anon_sym_override, + STATE(4702), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5049), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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_GT2, - ACTIONS(6612), 45, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8989), 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_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, + [52631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7584), 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(7586), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -499780,91 +498828,164 @@ 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_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_bitor, + anon_sym_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_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [53297] = 3, + [52696] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6626), 12, + ACTIONS(6723), 1, + anon_sym_requires, + ACTIONS(6717), 2, + anon_sym_final, + anon_sym_override, + STATE(4702), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5050), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8997), 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(8999), 32, + 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6624), 45, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [52769] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1950), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10178), 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_COLON, - anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + anon_sym_EQ, anon_sym_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_operator, - anon_sym_try, - anon_sym_requires, - [53362] = 7, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10176), 34, + 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_RBRACK_RBRACK, + 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, + anon_sym_COLON_RBRACK, + [52842] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10554), 1, + ACTIONS(10497), 1, anon_sym_LBRACE, - STATE(4676), 1, + STATE(4685), 1, sym_enumerator_list, - STATE(4799), 1, + STATE(4795), 1, sym_attribute_specifier, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, ACTIONS(7389), 13, @@ -499921,42 +499042,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [53435] = 3, + [52915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 12, + ACTIONS(7711), 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(7713), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6628), 45, - 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_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, @@ -499970,156 +499088,150 @@ 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_asm, - anon_sym___asm__, - anon_sym___asm, - sym_identifier, - sym_auto, - anon_sym_decltype, + anon_sym_bitor, + anon_sym_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_operator, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - [53500] = 10, + [52980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8265), 1, - anon_sym___attribute__, - ACTIONS(8267), 1, - anon_sym___attribute, - ACTIONS(8472), 1, - anon_sym_LBRACE, - ACTIONS(10507), 1, - anon_sym_COLON, - STATE(2667), 1, - sym__enum_base_clause, - STATE(2774), 1, - sym_enumerator_list, - STATE(3147), 1, - sym_attribute_specifier, - ACTIONS(8006), 20, + ACTIONS(7715), 13, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_const, anon_sym_DOT, - ACTIONS(8008), 30, + ACTIONS(7717), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___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, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [53579] = 5, + anon_sym_requires, + [53045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, - anon_sym_LBRACK_LBRACK, - STATE(4453), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 20, + ACTIONS(7676), 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_LBRACK, - 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(9073), 34, + ACTIONS(7678), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_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, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [53648] = 3, + [53110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 13, + ACTIONS(7719), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500133,7 +499245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7629), 44, + ACTIONS(7721), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -500178,20 +499290,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [53713] = 7, + [53175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10554), 1, + ACTIONS(6598), 12, + 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(4674), 1, - sym_enumerator_list, - STATE(5003), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6596), 45, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7383), 13, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON, + anon_sym___declspec, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + 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_operator, + anon_sym_try, + anon_sym_requires, + [53240] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(4286), 1, + sym_template_argument_list, + ACTIONS(5637), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -500199,16 +499369,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + anon_sym_LBRACE, anon_sym_LBRACK_COLON, - ACTIONS(7381), 39, + ACTIONS(7379), 44, 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, @@ -500242,173 +499413,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [53786] = 7, + [53311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, - anon_sym_requires, - ACTIONS(6742), 2, - anon_sym_final, - anon_sym_override, - STATE(4653), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5110), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 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(7791), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(6612), 12, 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_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, - [53859] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10174), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6610), 45, 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_COLON, - anon_sym_EQ, + 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_xor, - anon_sym_DOT, - ACTIONS(10172), 34, - 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [53932] = 3, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_operator, + anon_sym_try, + anon_sym_requires, + [53376] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7643), 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(7645), 44, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10011), 1, + anon_sym_virtual, + ACTIONS(10548), 1, + anon_sym_SEMI, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10009), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + STATE(3980), 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), 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(8276), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -500420,36 +499537,32 @@ 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_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, - [53997] = 7, + ACTIONS(10007), 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, + [53461] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1946), 1, + STATE(1954), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10186), 26, + ACTIONS(10225), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -500476,7 +499589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10184), 27, + ACTIONS(10223), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500504,18 +499617,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54070] = 7, + [53534] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1946), 1, + STATE(1954), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10190), 26, + ACTIONS(10264), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -500542,7 +499655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10188), 27, + ACTIONS(10266), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500570,18 +499683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54143] = 7, + [53607] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1946), 1, + STATE(1954), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10194), 26, + ACTIONS(10178), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -500608,7 +499721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10192), 27, + ACTIONS(10176), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500636,18 +499749,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54216] = 7, + [53680] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1946), 1, + STATE(1954), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10174), 26, + ACTIONS(10221), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -500674,7 +499787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10172), 27, + ACTIONS(10219), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500702,18 +499815,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54289] = 7, + [53753] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1946), 1, + STATE(1954), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10198), 26, + ACTIONS(10229), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -500740,7 +499853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10196), 27, + ACTIONS(10227), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500768,18 +499881,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54362] = 7, + [53826] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1946), 1, + STATE(1954), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10202), 26, + ACTIONS(10233), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -500806,7 +499919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10200), 27, + ACTIONS(10231), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500834,18 +499947,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54435] = 7, + [53899] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1946), 1, + STATE(1954), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10206), 26, + ACTIONS(10243), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -500872,7 +499985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10204), 27, + ACTIONS(10241), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500900,18 +500013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54508] = 7, + [53972] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1946), 1, + STATE(1954), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10210), 26, + ACTIONS(10262), 26, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -500938,7 +500051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10208), 27, + ACTIONS(10260), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -500966,10 +500079,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [54581] = 3, + [54045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 13, + ACTIONS(6616), 12, + 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6614), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_operator, + anon_sym_try, + anon_sym_requires, + [54110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -500983,7 +500158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7749), 44, + ACTIONS(7725), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501028,53 +500203,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [54646] = 13, + [54175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10038), 1, - anon_sym_virtual, - ACTIONS(10556), 1, - anon_sym_SEMI, - STATE(4722), 1, - sym_alignas_qualifier, - ACTIONS(8236), 2, + ACTIONS(10550), 1, + anon_sym_LPAREN2, + ACTIONS(8969), 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_LBRACK, + anon_sym_EQ, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8971), 37, + 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___attribute__, + 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [54242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7727), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10036), 6, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7729), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_COLON, - STATE(3979), 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(8234), 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(8230), 13, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -501086,74 +500310,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(10034), 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, - [54731] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10558), 1, - anon_sym_SEMI, - STATE(4730), 1, - sym_field_declaration_list, - STATE(4978), 1, - sym_attribute_specifier, - STATE(9508), 1, - sym_virtual_specifier, - STATE(10399), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + 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_final, anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, + anon_sym_GT2, + anon_sym_requires, + [54307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7680), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(7237), 7, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7682), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_LBRACK_COLON, - ACTIONS(7235), 39, - 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___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + 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, @@ -501167,14 +500374,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [54814] = 3, + 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, + [54372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 13, + ACTIONS(7549), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501188,7 +500407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7563), 44, + ACTIONS(7551), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501233,10 +500452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [54879] = 3, + [54437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 13, + ACTIONS(7556), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501250,7 +500469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7601), 44, + ACTIONS(7558), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501295,10 +500514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [54944] = 3, + [54502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 13, + ACTIONS(7246), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501312,7 +500531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7605), 44, + ACTIONS(7248), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501357,21 +500576,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [55009] = 7, + [54567] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, - anon_sym_requires, - ACTIONS(6742), 2, - anon_sym_final, - anon_sym_override, - STATE(4653), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5121), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 18, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1950), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10262), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501385,22 +500601,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(7966), 32, + ACTIONS(10260), 34, 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_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -501423,60 +500641,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [55082] = 12, + anon_sym_COLON_RBRACK, + [54640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(10560), 1, - anon_sym_SEMI, - STATE(4730), 1, - sym_field_declaration_list, - STATE(4978), 1, - sym_attribute_specifier, - STATE(9508), 1, - sym_virtual_specifier, - STATE(10399), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(8919), 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_LBRACK, + anon_sym_EQ, + anon_sym___asm, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8921), 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_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [54705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7723), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(7237), 7, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7725), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_LBRACK_COLON, - ACTIONS(7235), 39, - 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___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + 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, @@ -501490,54 +500750,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [55165] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6744), 1, - anon_sym_requires, - ACTIONS(6742), 2, + 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, - STATE(4653), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5126), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 18, + anon_sym_GT2, + anon_sym_requires, + [54770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7614), 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, - ACTIONS(8422), 32, + ACTIONS(7616), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [54835] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10431), 1, + anon_sym_GT_EQ, + ACTIONS(10435), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10441), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10443), 1, + anon_sym_AMP_AMP, + ACTIONS(10453), 1, + anon_sym_or, + ACTIONS(10455), 1, + anon_sym_and, + ACTIONS(10457), 1, + anon_sym_not_eq, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10447), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10449), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10429), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10552), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + sym_identifier, + ACTIONS(10554), 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, @@ -501549,61 +500912,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [54944] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10431), 1, + anon_sym_GT_EQ, + ACTIONS(10435), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10441), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10443), 1, + anon_sym_AMP_AMP, + ACTIONS(10453), 1, + anon_sym_or, + ACTIONS(10455), 1, + anon_sym_and, + ACTIONS(10457), 1, + anon_sym_not_eq, + ACTIONS(10461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10465), 1, + anon_sym_QMARK, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10447), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10449), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10429), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9889), 6, + aux_sym_preproc_elif_token1, + anon_sym_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + sym_identifier, + ACTIONS(9891), 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, + [55057] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10431), 1, + anon_sym_GT_EQ, + ACTIONS(10435), 1, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, + ACTIONS(10443), 1, + anon_sym_AMP_AMP, + ACTIONS(10455), 1, + anon_sym_and, + ACTIONS(10457), 1, anon_sym_not_eq, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [55238] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6744), 1, - anon_sym_requires, - ACTIONS(6742), 2, - anon_sym_final, - anon_sym_override, - STATE(4653), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5128), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 18, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10447), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10449), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(10429), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 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(9623), 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, + [55162] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10431), 1, + anon_sym_GT_EQ, + ACTIONS(10435), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10457), 1, + anon_sym_not_eq, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10445), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(10447), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(10449), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10429), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9621), 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, - ACTIONS(8907), 32, + sym_identifier, + ACTIONS(9623), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -501615,124 +501160,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [55263] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10431), 1, + anon_sym_GT_EQ, + ACTIONS(10435), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10457), 1, + anon_sym_not_eq, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10447), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10449), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10429), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - anon_sym_bitand, + sym_identifier, + ACTIONS(9623), 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, + [55362] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10431), 1, + anon_sym_GT_EQ, + ACTIONS(10435), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10457), 1, anon_sym_not_eq, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [55311] = 7, + ACTIONS(10425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10449), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(10451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10429), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 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(9623), 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, + [55459] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6744), 1, - anon_sym_requires, - ACTIONS(6742), 2, - anon_sym_final, - anon_sym_override, - STATE(4653), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5129), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 18, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10431), 1, + anon_sym_GT_EQ, + ACTIONS(10435), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10457), 1, + anon_sym_not_eq, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10425), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10451), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(10427), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10429), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 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(9623), 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, + [55554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7735), 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, - ACTIONS(8915), 32, + ACTIONS(7737), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [55384] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [55619] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10186), 19, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10435), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10425), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10433), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10427), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 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_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(10184), 34, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9623), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -501744,32 +501529,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [55457] = 7, + [55706] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1957), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10206), 19, + ACTIONS(8229), 1, + anon_sym___attribute__, + ACTIONS(8231), 1, + anon_sym___attribute, + ACTIONS(8435), 1, + anon_sym_LBRACE, + ACTIONS(10540), 1, + anon_sym_COLON, + STATE(2709), 1, + sym__enum_base_clause, + STATE(2843), 1, + sym_enumerator_list, + STATE(3161), 1, + sym_attribute_specifier, + ACTIONS(8001), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -501779,28 +501556,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_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10204), 34, + ACTIONS(8003), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -501808,7 +501583,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, @@ -501823,11 +501597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [55530] = 3, + anon_sym_GT2, + [55785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 13, + ACTIONS(7590), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501841,7 +501615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7633), 44, + ACTIONS(7592), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501886,10 +501660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [55595] = 3, + [55850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 13, + ACTIONS(7594), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -501903,7 +501677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7637), 44, + ACTIONS(7596), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -501948,63 +501722,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [55660] = 7, + [55915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10190), 19, + ACTIONS(7672), 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, - ACTIONS(10188), 34, + ACTIONS(7674), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + 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, @@ -502013,64 +501782,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [55733] = 7, + [55980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10194), 19, + ACTIONS(7598), 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, - ACTIONS(10192), 34, + ACTIONS(7600), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, + 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, @@ -502079,11 +501844,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [55806] = 3, + [56045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 13, + ACTIONS(7602), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -502097,7 +501863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7563), 44, + ACTIONS(7604), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -502142,10 +501908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [55871] = 3, + [56110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 13, + ACTIONS(7606), 13, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -502159,7 +501925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_const, anon_sym_DOT, - ACTIONS(7563), 44, + ACTIONS(7608), 44, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -502204,53 +501970,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [55936] = 13, + [56175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10038), 1, - anon_sym_virtual, - ACTIONS(10562), 1, - anon_sym_SEMI, - STATE(4722), 1, - sym_alignas_qualifier, - ACTIONS(8236), 2, - anon_sym___attribute__, + ACTIONS(7610), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10036), 6, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7612), 44, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_COLON, - STATE(3979), 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(8234), 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(8230), 13, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym___extension__, - anon_sym_const, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -502262,32 +502014,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(10034), 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, - [56021] = 7, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [56240] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(1976), 1, + STATE(1950), 1, sym_parameter_list, - STATE(3611), 1, + STATE(3627), 1, sym__function_declarator_seq, - ACTIONS(10174), 19, + ACTIONS(10229), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502301,22 +502057,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_COLON, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10172), 34, + ACTIONS(10227), 34, 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -502339,21 +502097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [56094] = 7, + anon_sym_COLON_RBRACK, + [56313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10198), 19, + ACTIONS(10556), 27, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502367,22 +502116,33 @@ 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(10196), 34, + sym_identifier, + sym_literal_suffix, + ACTIONS(10558), 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_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -502394,203 +502154,474 @@ 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_final, - anon_sym_override, - anon_sym_requires, - [56167] = 7, + [56377] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1976), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10202), 19, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7916), 1, + anon_sym___attribute__, + ACTIONS(7918), 1, + anon_sym___attribute, + ACTIONS(7920), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10025), 1, + anon_sym_DASH_GT, + ACTIONS(10031), 1, + anon_sym_requires, + STATE(6262), 1, + sym__function_attributes_end, + STATE(6299), 1, + sym_trailing_return_type, + STATE(9080), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10028), 2, + anon_sym_final, + anon_sym_override, + STATE(6170), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6397), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6568), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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_LBRACK, anon_sym_DOT, - ACTIONS(10200), 34, + ACTIONS(7874), 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, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LT_LT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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_final, - anon_sym_override, - anon_sym_requires, - [56240] = 7, + anon_sym_GT2, + [56471] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10406), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7916), 1, + anon_sym___attribute__, + ACTIONS(7918), 1, + anon_sym___attribute, + ACTIONS(7920), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10127), 1, + anon_sym_DASH_GT, + ACTIONS(10144), 1, anon_sym_requires, - ACTIONS(10403), 2, + STATE(6287), 1, + sym__function_attributes_end, + STATE(6307), 1, + sym_trailing_return_type, + STATE(9080), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10141), 2, anon_sym_final, anon_sym_override, - STATE(4653), 2, + STATE(6170), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6397), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5128), 2, + STATE(6603), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 18, + ACTIONS(7972), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8907), 32, + ACTIONS(7970), 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, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LT_LT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [56313] = 18, + anon_sym_GT2, + [56565] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, + ACTIONS(10560), 1, + anon_sym_LBRACE, + STATE(3326), 1, + sym_compound_statement, + ACTIONS(3116), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(10122), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3126), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [56633] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(5649), 1, + sym_auto, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(10562), 1, + anon_sym_LT, + STATE(4249), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4286), 1, + sym_template_argument_list, + STATE(4918), 1, + sym_decltype_auto, + ACTIONS(5639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5617), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(5609), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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_template, + anon_sym_operator, + [56713] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(887), 1, + sym_compound_statement, + ACTIONS(3116), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3126), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [56781] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10564), 1, + anon_sym_LBRACE, + STATE(3349), 1, + sym_compound_statement, + ACTIONS(3116), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3126), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [56849] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7916), 1, anon_sym___attribute__, - ACTIONS(10125), 1, + ACTIONS(7918), 1, anon_sym___attribute, - ACTIONS(10128), 1, + ACTIONS(7920), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10566), 1, anon_sym_DASH_GT, - STATE(5857), 1, - sym_trailing_return_type, - STATE(6192), 1, + ACTIONS(10572), 1, + anon_sym_requires, + STATE(6278), 1, sym__function_attributes_end, - STATE(9134), 1, + STATE(6339), 1, + sym_trailing_return_type, + STATE(9080), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7219), 2, + ACTIONS(10569), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, + STATE(6170), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(6397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5532), 2, + STATE(6641), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 10, + ACTIONS(8404), 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_LBRACK, anon_sym_DOT, - ACTIONS(7966), 25, + ACTIONS(8402), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -502601,10 +502632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -502616,79 +502644,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [56407] = 3, + anon_sym_GT2, + [56943] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 26, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7824), 1, + anon_sym_requires, + ACTIONS(9981), 1, + anon_sym_DASH_GT, + STATE(6259), 1, + sym__function_attributes_end, + STATE(6306), 1, + sym_trailing_return_type, + STATE(9110), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7818), 2, + anon_sym_final, + anon_sym_override, + STATE(6172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6616), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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_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_LBRACK, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(10564), 30, + ACTIONS(7874), 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_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, - anon_sym_COLON_RBRACK, - [56471] = 7, + [57037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10206), 19, + ACTIONS(6708), 1, + anon_sym_LBRACK_LBRACK, + STATE(4586), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8854), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502702,21 +502743,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10204), 33, + ACTIONS(8856), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -502738,22 +502780,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_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [56543] = 7, + [57105] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10210), 19, + ACTIONS(6708), 1, + anon_sym_LBRACK_LBRACK, + STATE(4586), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8870), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502767,21 +502806,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10208), 33, + ACTIONS(8872), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -502803,113 +502843,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, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [56615] = 5, + [57173] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, anon_sym_LBRACK_LBRACK, - STATE(4559), 2, + ACTIONS(9981), 1, + anon_sym_DASH_GT, + ACTIONS(9987), 1, + anon_sym_requires, + STATE(6280), 1, + sym__function_attributes_end, + STATE(6366), 1, + sym_trailing_return_type, + STATE(9110), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9984), 2, + anon_sym_final, + anon_sym_override, + STATE(6172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6404), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 19, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6616), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(8839), 34, + ACTIONS(7874), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [56683] = 6, + [57267] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10320), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(6565), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(6469), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(6572), 46, - anon_sym_COMMA, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10378), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7076), 1, + sym__function_attributes_start, + STATE(7551), 1, + sym_ref_qualifier, + STATE(7996), 1, + sym_trailing_return_type, + STATE(8440), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8342), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7699), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 7, 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_COLON, 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(10370), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -502921,28 +503011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [56753] = 5, + [57385] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_LBRACK_LBRACK, - STATE(4559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 19, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10583), 1, + anon_sym_LBRACK, + STATE(1968), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10225), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -502956,22 +503036,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, - ACTIONS(9073), 34, + anon_sym_DASH_GT, + ACTIONS(10223), 33, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -502993,38 +503072,50 @@ 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_final, anon_sym_override, anon_sym_requires, - [56821] = 5, + anon_sym_DASH_GT_STAR, + [57457] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(10497), 1, anon_sym_LBRACE, - STATE(3463), 1, - sym_compound_statement, - ACTIONS(3118), 7, + ACTIONS(10585), 1, + anon_sym_COLON, + STATE(4421), 1, + sym__enum_base_clause, + STATE(4666), 1, + sym_enumerator_list, + STATE(4978), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8009), 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_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(8007), 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_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, @@ -503048,84 +503139,66 @@ 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, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [56889] = 18, + [57533] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7903), 1, + ACTIONS(6807), 1, anon_sym_requires, - ACTIONS(10574), 1, + ACTIONS(8617), 1, anon_sym_DASH_GT, - STATE(6267), 1, - sym__function_attributes_end, - STATE(6319), 1, + STATE(4724), 1, sym_trailing_return_type, - STATE(9133), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7897), 2, + ACTIONS(6801), 2, anon_sym_final, anon_sym_override, - STATE(6193), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6393), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, + STATE(5064), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6637), 2, + STATE(5706), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 10, + ACTIONS(7972), 15, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(8422), 25, + ACTIONS(7970), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, @@ -503136,15 +503209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [56983] = 5, + anon_sym_DASH_GT_STAR, + [57609] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10577), 1, - anon_sym_LBRACK_LBRACK, - STATE(4559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 19, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10583), 1, + anon_sym_LBRACK, + STATE(1968), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10264), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503158,22 +503235,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, - ACTIONS(9075), 34, + anon_sym_DASH_GT, + ACTIONS(10266), 33, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -503195,22 +503271,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - [57051] = 7, + anon_sym_DASH_GT_STAR, + [57681] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, + ACTIONS(10581), 1, anon_sym_LPAREN2, - ACTIONS(10570), 1, + ACTIONS(10583), 1, anon_sym_LBRACK, - STATE(1972), 1, + STATE(1968), 1, sym_parameter_list, - STATE(4999), 1, + STATE(4827), 1, sym__function_declarator_seq, - ACTIONS(10186), 19, + ACTIONS(10178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503230,7 +503306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10184), 33, + ACTIONS(10176), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -503264,166 +503340,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [57123] = 5, + [57753] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, - anon_sym_LBRACE, - STATE(2808), 1, - sym_compound_statement, - ACTIONS(3118), 7, + ACTIONS(10581), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [57191] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, + ACTIONS(10583), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10360), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10376), 1, - anon_sym_requires, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10589), 1, - anon_sym___asm, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7000), 1, - sym__function_attributes_start, - STATE(7522), 1, - sym_ref_qualifier, - STATE(8054), 1, - sym_trailing_return_type, - STATE(8124), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10369), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10586), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8298), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7703), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [57309] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6723), 1, - anon_sym_LBRACK_LBRACK, - STATE(4559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 19, + STATE(1968), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10221), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503437,22 +503365,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, - ACTIONS(8835), 34, + anon_sym_DASH_GT, + ACTIONS(10219), 33, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -503474,197 +503401,180 @@ 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_final, anon_sym_override, anon_sym_requires, - [57377] = 30, + anon_sym_DASH_GT_STAR, + [57825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(8949), 27, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10360), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, - ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10589), 1, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, anon_sym___asm, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7032), 1, - sym__function_attributes_start, - STATE(7520), 1, - sym_ref_qualifier, - STATE(8038), 1, - sym_trailing_return_type, - STATE(8087), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(8160), 2, + anon_sym_DOT, + sym_identifier, anon_sym_final, anon_sym_override, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10586), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8298), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7726), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [57495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7293), 12, + anon_sym_requires, + ACTIONS(8951), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7291), 44, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [57889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8945), 27, + 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_or, anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_asm, anon_sym___asm__, anon_sym___asm, + anon_sym_DOT, sym_identifier, - sym_auto, - anon_sym_decltype, anon_sym_final, anon_sym_override, - anon_sym_operator, - anon_sym_try, anon_sym_requires, - [57559] = 5, + ACTIONS(8947), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [57953] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - STATE(4614), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 21, + ACTIONS(7291), 1, + anon_sym_LPAREN2, + ACTIONS(7307), 1, + anon_sym_LBRACK, + ACTIONS(7566), 1, + anon_sym_STAR, + ACTIONS(7568), 1, + anon_sym_AMP_AMP, + ACTIONS(7570), 1, + anon_sym_AMP, + STATE(1989), 1, + sym_parameter_list, + STATE(5658), 1, + sym__function_declarator_seq, + STATE(5788), 1, + sym__abstract_declarator, + STATE(5606), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(9073), 32, + anon_sym_DASH_GT, + ACTIONS(9281), 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_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -503672,64 +503582,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [57627] = 18, + anon_sym_DASH_GT_STAR, + [58035] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(9996), 1, + ACTIONS(7805), 1, anon_sym___attribute__, - ACTIONS(9999), 1, + ACTIONS(7807), 1, anon_sym___attribute, - ACTIONS(10002), 1, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10147), 1, anon_sym_DASH_GT, - STATE(5881), 1, - sym_trailing_return_type, - STATE(6191), 1, + ACTIONS(10153), 1, + anon_sym_requires, + STATE(6266), 1, sym__function_attributes_end, - STATE(9134), 1, + STATE(6338), 1, + sym_trailing_return_type, + STATE(9110), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7219), 2, + ACTIONS(10150), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, + STATE(6172), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4713), 2, + STATE(6404), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5460), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 10, + ACTIONS(7972), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -503740,7 +503647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7791), 25, + ACTIONS(7970), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -503754,7 +503661,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -503766,25 +503673,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [57721] = 9, + [58129] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8514), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10587), 1, anon_sym_DASH_GT, - ACTIONS(8520), 1, + ACTIONS(10593), 1, anon_sym_requires, - STATE(4740), 1, + STATE(6265), 1, + sym__function_attributes_end, + STATE(6355), 1, sym_trailing_return_type, - ACTIONS(8517), 2, + STATE(9110), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10590), 2, anon_sym_final, anon_sym_override, - STATE(5261), 2, + STATE(6172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5696), 2, + STATE(6630), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 15, + ACTIONS(8404), 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_LBRACK, + anon_sym_DOT, + ACTIONS(8402), 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_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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [58223] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(7479), 1, + anon_sym_LBRACE, + ACTIONS(10596), 1, + sym_auto, + STATE(4819), 1, + sym_decltype_auto, + ACTIONS(7248), 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_LBRACK_COLON, + ACTIONS(7246), 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, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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_template, + anon_sym_operator, + [58295] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10583), 1, + anon_sym_LBRACK, + STATE(1968), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10229), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -503799,18 +503840,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, - ACTIONS(7791), 32, + anon_sym_DASH_GT, + ACTIONS(10227), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -503822,68 +503865,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_or, - anon_sym_and, anon_sym_bitor, - 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_requires, anon_sym_DASH_GT_STAR, - [57797] = 18, + [58367] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(10017), 1, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10583), 1, + anon_sym_LBRACK, + STATE(1968), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10233), 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(6272), 1, - sym__function_attributes_end, - STATE(6306), 1, - sym_trailing_return_type, - STATE(9133), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7897), 2, + ACTIONS(10231), 33, + 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_final, anon_sym_override, - STATE(6193), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6393), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6622), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 10, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [58439] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7042), 1, + anon_sym_decltype, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7479), 1, + anon_sym_LBRACE, + ACTIONS(10162), 1, + sym_auto, + STATE(4527), 1, + sym_decltype_auto, + ACTIONS(7246), 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_LBRACK, + anon_sym_GT_GT, + anon_sym_const, anon_sym_DOT, - ACTIONS(7791), 25, + ACTIONS(7248), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -503894,10 +503981,22 @@ 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_RBRACK, + 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_LT_EQ_GT, anon_sym_or, @@ -503909,94 +504008,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [57891] = 18, + anon_sym_DASH_GT, + anon_sym_GT2, + [58513] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(10594), 1, - anon_sym___attribute__, - ACTIONS(10597), 1, - anon_sym___attribute, - ACTIONS(10600), 1, - anon_sym_DASH_GT, - STATE(5932), 1, - sym_trailing_return_type, - STATE(6167), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7219), 2, + ACTIONS(10598), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(4574), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 10, + ACTIONS(9129), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 25, + anon_sym_DASH_GT, + ACTIONS(9131), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [57985] = 7, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [58581] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, + ACTIONS(10581), 1, anon_sym_LPAREN2, - ACTIONS(10570), 1, + ACTIONS(10583), 1, anon_sym_LBRACK, - STATE(1972), 1, + STATE(1968), 1, sym_parameter_list, - STATE(4999), 1, + STATE(4827), 1, sym__function_declarator_seq, - ACTIONS(10190), 19, + ACTIONS(10243), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -504016,7 +504104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10188), 33, + ACTIONS(10241), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -504050,25 +504138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [58057] = 9, + [58653] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(9124), 1, - anon_sym_DASH_GT, - STATE(4715), 1, - sym_trailing_return_type, - ACTIONS(6777), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 15, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10583), 1, + anon_sym_LBRACK, + STATE(1968), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10262), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -504083,18 +504164,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, - ACTIONS(8422), 32, + anon_sym_DASH_GT, + ACTIONS(10260), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -504106,6 +504189,217 @@ 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [58725] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(10596), 1, + sym_auto, + STATE(4819), 1, + sym_decltype_auto, + ACTIONS(7248), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7246), 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, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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_template, + anon_sym_operator, + [58797] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + STATE(5220), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10327), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7357), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7359), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [58871] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7824), 1, + anon_sym_requires, + ACTIONS(10147), 1, + anon_sym_DASH_GT, + STATE(6281), 1, + sym__function_attributes_end, + STATE(6356), 1, + sym_trailing_return_type, + STATE(9110), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7818), 2, + anon_sym_final, + anon_sym_override, + STATE(6172), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6404), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7970), 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_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, @@ -504116,15 +504410,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, - [58133] = 5, + [58965] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - STATE(3342), 1, + STATE(731), 1, sym_compound_statement, - ACTIONS(3118), 7, + ACTIONS(3116), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -504132,7 +504425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -504180,46 +504473,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [58201] = 18, + [59033] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6807), 1, + anon_sym_requires, + ACTIONS(9118), 1, + anon_sym_DASH_GT, + STATE(4730), 1, + sym_trailing_return_type, + ACTIONS(6801), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5548), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 15, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + ACTIONS(8402), 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, + [59109] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7816), 1, + ACTIONS(7916), 1, anon_sym___attribute__, - ACTIONS(7818), 1, + ACTIONS(7918), 1, anon_sym___attribute, - ACTIONS(7820), 1, + ACTIONS(7920), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9987), 1, - anon_sym_DASH_GT, - ACTIONS(10082), 1, + ACTIONS(7941), 1, anon_sym_requires, - STATE(6278), 1, + ACTIONS(10025), 1, + anon_sym_DASH_GT, + STATE(6273), 1, sym__function_attributes_end, - STATE(6292), 1, + STATE(6329), 1, sym_trailing_return_type, - STATE(9096), 1, + STATE(9080), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10079), 2, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, - STATE(6157), 2, + STATE(6170), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6403), 2, + STATE(6397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6697), 2, + STATE(6568), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 12, + ACTIONS(7876), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -504232,7 +504592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7791), 23, + ACTIONS(7874), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -504256,59 +504616,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [58295] = 18, + [59203] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7816), 1, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9227), 1, + anon_sym_requires, + ACTIONS(9998), 1, anon_sym___attribute__, - ACTIONS(7818), 1, + ACTIONS(10001), 1, anon_sym___attribute, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10119), 1, + ACTIONS(10004), 1, anon_sym_DASH_GT, - ACTIONS(10161), 1, - anon_sym_requires, - STATE(6273), 1, - sym__function_attributes_end, - STATE(6295), 1, + STATE(5770), 1, sym_trailing_return_type, - STATE(9096), 1, + STATE(6165), 1, + sym__function_attributes_end, + STATE(9083), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10158), 2, + ACTIONS(9224), 2, anon_sym_final, anon_sym_override, - STATE(6157), 2, + STATE(4441), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6403), 2, + STATE(4748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6571), 2, + STATE(5370), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 12, + ACTIONS(7876), 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_LBRACK, anon_sym_DOT, - ACTIONS(7966), 23, + ACTIONS(7874), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -504319,7 +504677,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -504331,63 +504692,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [58389] = 9, + [59297] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8595), 1, - anon_sym_DASH_GT, - ACTIONS(8636), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9347), 1, anon_sym_requires, - STATE(4660), 1, + ACTIONS(10130), 1, + anon_sym___attribute__, + ACTIONS(10133), 1, + anon_sym___attribute, + ACTIONS(10136), 1, + anon_sym_DASH_GT, + STATE(5775), 1, sym_trailing_return_type, - ACTIONS(8633), 2, + STATE(6174), 1, + sym__function_attributes_end, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(9344), 2, anon_sym_final, anon_sym_override, - STATE(5261), 2, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5681), 2, + STATE(5296), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 15, + ACTIONS(7972), 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_LBRACK, anon_sym_DOT, - ACTIONS(7966), 32, + ACTIONS(7970), 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_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, @@ -504398,60 +504768,57 @@ 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, - [58465] = 18, + [59391] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7816), 1, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10115), 1, + anon_sym_requires, + ACTIONS(10601), 1, anon_sym___attribute__, - ACTIONS(7818), 1, + ACTIONS(10604), 1, anon_sym___attribute, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10605), 1, + ACTIONS(10607), 1, anon_sym_DASH_GT, - ACTIONS(10611), 1, - anon_sym_requires, - STATE(6271), 1, - sym__function_attributes_end, - STATE(6357), 1, + STATE(5776), 1, sym_trailing_return_type, - STATE(9096), 1, + STATE(6180), 1, + sym__function_attributes_end, + STATE(9083), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10608), 2, + ACTIONS(10112), 2, anon_sym_final, anon_sym_override, - STATE(6157), 2, + STATE(4441), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6403), 2, + STATE(4748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6641), 2, + STATE(5512), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 12, + ACTIONS(8404), 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_LBRACK, anon_sym_DOT, - ACTIONS(8422), 23, + ACTIONS(8402), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -504462,7 +504829,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -504474,91 +504844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [58559] = 7, + [59485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10614), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 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, + ACTIONS(10610), 1, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 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, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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_template, - anon_sym_operator, - [58631] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(8595), 1, - anon_sym_DASH_GT, - STATE(4639), 1, - sym_trailing_return_type, - ACTIONS(6777), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5681), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 15, + STATE(4586), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2471), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -504572,19 +504866,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7966), 32, + ACTIONS(9039), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -504596,83 +504893,85 @@ 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, - [58707] = 4, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [59553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 25, + ACTIONS(9019), 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_COLON, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, anon_sym_DOT, - ACTIONS(5638), 30, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9021), 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_LBRACK_LBRACK, anon_sym_RBRACK_RBRACK, 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [58773] = 3, + [59617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 27, + ACTIONS(9023), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -504700,7 +504999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9009), 29, + ACTIONS(9025), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -504730,24 +505029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [58837] = 8, + [59681] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(10614), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 11, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7553), 1, + anon_sym_LPAREN2, + STATE(3823), 1, + sym_argument_list, + STATE(5973), 1, + sym_initializer_list, + ACTIONS(7248), 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, @@ -504755,7 +505053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_LBRACK_COLON, - ACTIONS(7223), 40, + ACTIONS(7246), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -504794,333 +505092,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + anon_sym_decltype, anon_sym_template, anon_sym_operator, - [58911] = 18, + [59755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10017), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, - anon_sym_requires, - STATE(6290), 1, - sym__function_attributes_end, - STATE(6316), 1, - sym_trailing_return_type, - STATE(9133), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10020), 2, - anon_sym_final, - anon_sym_override, - STATE(6193), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6393), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6622), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 10, + ACTIONS(10613), 1, + sym_literal_suffix, + ACTIONS(5619), 26, + 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_LBRACK, - anon_sym_DOT, - ACTIONS(7791), 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_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [59005] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10116), 1, - anon_sym_DASH_GT, - ACTIONS(10137), 1, - anon_sym_requires, - STATE(6268), 1, - sym__function_attributes_end, - STATE(6363), 1, - sym_trailing_return_type, - STATE(9133), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10134), 2, - anon_sym_final, - anon_sym_override, - STATE(6193), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6393), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 10, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(7966), 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_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [59099] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10574), 1, - anon_sym_DASH_GT, - ACTIONS(10621), 1, - anon_sym_requires, - STATE(6277), 1, - sym__function_attributes_end, - STATE(6318), 1, - sym_trailing_return_type, - STATE(9133), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10618), 2, - anon_sym_final, - anon_sym_override, - STATE(6193), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6393), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6637), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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_LBRACK, anon_sym_DOT, - ACTIONS(8422), 25, + sym_identifier, + ACTIONS(5611), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, - [59193] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10360), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10624), 1, anon_sym_DASH_GT, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7130), 1, - sym__function_attributes_start, - STATE(7514), 1, - sym_ref_qualifier, - STATE(8038), 1, - sym_trailing_return_type, - STATE(8405), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8298), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7728), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [59311] = 5, + [59821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, + ACTIONS(6708), 1, anon_sym_LBRACK_LBRACK, - STATE(4614), 2, + STATE(4586), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 21, + ACTIONS(9035), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505130,19 +505175,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8835), 32, + ACTIONS(9037), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -505150,6 +505193,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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -505157,6 +505202,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, @@ -505173,48 +505219,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [59379] = 18, + [59889] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7884), 1, + ACTIONS(7805), 1, anon_sym___attribute__, - ACTIONS(7886), 1, + ACTIONS(7807), 1, anon_sym___attribute, - ACTIONS(7888), 1, + ACTIONS(7809), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7903), 1, + ACTIONS(7824), 1, anon_sym_requires, - ACTIONS(10116), 1, + ACTIONS(10587), 1, anon_sym_DASH_GT, - STATE(6269), 1, + STATE(6279), 1, sym__function_attributes_end, - STATE(6324), 1, + STATE(6298), 1, sym_trailing_return_type, - STATE(9133), 1, + STATE(9110), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7897), 2, + ACTIONS(7818), 2, anon_sym_final, anon_sym_override, - STATE(6193), 2, + STATE(6172), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6393), 2, + STATE(6404), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6457), 2, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, STATE(6630), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 10, + ACTIONS(8404), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505225,7 +505270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7966), 25, + ACTIONS(8402), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -505251,16 +505296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [59473] = 5, + [59983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10626), 2, - anon_sym_final, - anon_sym_override, - STATE(4589), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9143), 19, + ACTIONS(10613), 1, + sym_literal_suffix, + ACTIONS(5619), 25, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505274,13 +505315,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + 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(9145), 33, + ACTIONS(5611), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -505290,6 +505337,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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -505302,37 +505352,94 @@ 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_requires, - anon_sym_DASH_GT_STAR, - [59541] = 9, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [60049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 1, + anon_sym_LBRACE, + STATE(796), 1, + sym_compound_statement, + ACTIONS(3116), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3126), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [60117] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, + ACTIONS(6807), 1, anon_sym_requires, - ACTIONS(8514), 1, + ACTIONS(10615), 1, anon_sym_DASH_GT, - STATE(4642), 1, + STATE(4731), 1, sym_trailing_return_type, - ACTIONS(6777), 2, + ACTIONS(6801), 2, anon_sym_final, anon_sym_override, - STATE(5261), 2, + STATE(5064), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5696), 2, + STATE(5568), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 15, + ACTIONS(8987), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505348,7 +505455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(7791), 32, + ACTIONS(8989), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -505381,25 +505488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59617] = 9, + [60193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9124), 1, - anon_sym_DASH_GT, - ACTIONS(9136), 1, - anon_sym_requires, - STATE(4665), 1, - sym_trailing_return_type, - ACTIONS(9133), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 15, + ACTIONS(6679), 1, + anon_sym_LBRACK_LBRACK, + STATE(4607), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8870), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505409,23 +505506,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(8422), 32, + ACTIONS(8872), 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, @@ -505433,160 +505533,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [59693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8889), 27, - 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_LBRACK, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8891), 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_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [59757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8897), 27, - 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_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_asm, - anon_sym___asm__, - anon_sym___asm, - anon_sym_DOT, - sym_identifier, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(8899), 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_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [59821] = 9, + [60261] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(10629), 1, - anon_sym_COLON, - STATE(4514), 1, - sym__enum_base_clause, - STATE(4683), 1, - sym_enumerator_list, - STATE(4912), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8008), 10, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(10596), 1, + sym_auto, + STATE(4819), 1, + sym_decltype_auto, + ACTIONS(7248), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -505596,12 +505571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(8006), 39, + ACTIONS(7246), 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, @@ -505634,28 +505613,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - anon_sym_decltype, anon_sym_template, anon_sym_operator, - [59897] = 9, + [60331] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10631), 1, + ACTIONS(9118), 1, anon_sym_DASH_GT, - ACTIONS(10637), 1, + ACTIONS(9141), 1, anon_sym_requires, - STATE(4669), 1, + STATE(4629), 1, sym_trailing_return_type, - ACTIONS(10634), 2, + ACTIONS(9138), 2, anon_sym_final, anon_sym_override, - STATE(5261), 2, + STATE(5064), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5581), 2, + STATE(5548), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 15, + ACTIONS(8404), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505671,7 +505649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_EQ, anon_sym_DOT, - ACTIONS(8907), 32, + ACTIONS(8402), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -505704,11 +505682,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [59973] = 3, + [60407] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 27, - aux_sym_preproc_elif_token1, + ACTIONS(6679), 1, + anon_sym_LBRACK_LBRACK, + STATE(4607), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8854), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505718,37 +505700,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_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(10564), 29, + ACTIONS(8856), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_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, @@ -505756,81 +505727,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [60037] = 18, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [60475] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9219), 1, - anon_sym_requires, - ACTIONS(9996), 1, - anon_sym___attribute__, - ACTIONS(9999), 1, - anon_sym___attribute, - ACTIONS(10002), 1, + ACTIONS(10615), 1, anon_sym_DASH_GT, - STATE(5898), 1, + ACTIONS(10621), 1, + anon_sym_requires, + STATE(4630), 1, sym_trailing_return_type, - STATE(6162), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9216), 2, + ACTIONS(10618), 2, anon_sym_final, anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, + STATE(5064), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5460), 2, + STATE(5568), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 10, + ACTIONS(8987), 15, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7791), 25, + ACTIONS(8989), 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_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, @@ -505841,46 +505811,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [60131] = 18, + anon_sym_DASH_GT_STAR, + [60551] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9293), 1, - anon_sym_requires, - ACTIONS(10122), 1, - anon_sym___attribute__, - ACTIONS(10125), 1, - anon_sym___attribute, - ACTIONS(10128), 1, - anon_sym_DASH_GT, - STATE(5907), 1, - sym_trailing_return_type, - STATE(6163), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(9290), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 10, + ACTIONS(7007), 1, + anon_sym_decltype, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7479), 1, + anon_sym_LBRACE, + ACTIONS(10624), 1, + sym_auto, + STATE(4089), 1, + sym_decltype_auto, + ACTIONS(7246), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -505889,9 +505834,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym_const, anon_sym_DOT, - ACTIONS(7966), 25, + ACTIONS(7248), 41, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -505905,7 +505850,22 @@ 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___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -505917,18 +505877,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [60225] = 7, + anon_sym_DASH_GT, + [60625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10194), 19, + ACTIONS(10556), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -505942,21 +505895,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + 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(10192), 33, + sym_literal_suffix, + ACTIONS(10558), 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_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -505968,120 +505933,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - 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_requires, - anon_sym_DASH_GT_STAR, - [60297] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10169), 1, - anon_sym_requires, - ACTIONS(10594), 1, - anon_sym___attribute__, - ACTIONS(10597), 1, - anon_sym___attribute, - ACTIONS(10600), 1, anon_sym_DASH_GT, - STATE(5908), 1, - sym_trailing_return_type, - STATE(6164), 1, - sym__function_attributes_end, - STATE(9134), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10166), 2, - anon_sym_final, - anon_sym_override, - STATE(4485), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4713), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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_LBRACK, - anon_sym_DOT, - ACTIONS(8422), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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, - [60391] = 6, + anon_sym_COLON_RBRACK, + [60689] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(10614), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(309), 1, + anon_sym_LBRACE, + STATE(408), 1, + sym_compound_statement, + ACTIONS(3116), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7223), 40, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -506090,12 +505963,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, @@ -506119,80 +505990,24 @@ 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, + anon_sym_typename, sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [60461] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10174), 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(10172), 33, - 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [60533] = 4, + [60757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10640), 1, + ACTIONS(10626), 1, anon_sym_LPAREN2, - ACTIONS(9027), 27, + ACTIONS(8969), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -506220,7 +506035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9029), 28, + ACTIONS(8971), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -506248,88 +506063,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [60599] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(7457), 1, - anon_sym_LBRACE, - ACTIONS(10614), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 12, - anon_sym_DOT_DOT_DOT, + anon_sym_COLON_RBRACK, + [60823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7329), 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_COLON, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 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, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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_template, - anon_sym_operator, - [60671] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(960), 1, anon_sym_LBRACE, - STATE(855), 1, - sym_compound_statement, - ACTIONS(3118), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7327), 44, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -506338,10 +506089,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -506365,22 +506112,23 @@ 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, - anon_sym_typename, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym___asm, sym_identifier, sym_auto, anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, + anon_sym_final, + anon_sym_override, anon_sym_operator, - [60739] = 3, + anon_sym_try, + anon_sym_requires, + [60887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 27, + ACTIONS(8919), 27, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -506408,7 +506156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8940), 29, + ACTIONS(8921), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -506438,54 +506186,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [60803] = 12, + [60951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 1, - anon_sym_LPAREN2, - ACTIONS(7321), 1, - anon_sym_LBRACK, - ACTIONS(7589), 1, - anon_sym_STAR, - ACTIONS(7591), 1, - anon_sym_AMP_AMP, - ACTIONS(7593), 1, - anon_sym_AMP, - STATE(1989), 1, - sym_parameter_list, - STATE(5694), 1, - sym__function_declarator_seq, - STATE(5743), 1, - sym__abstract_declarator, - STATE(5693), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 14, + ACTIONS(10628), 1, + anon_sym_LBRACK_LBRACK, + STATE(4607), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2471), 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, - anon_sym_DASH_GT, - ACTIONS(9427), 29, + ACTIONS(9039), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -506493,146 +506231,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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, - [60885] = 18, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [61019] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7816), 1, - anon_sym___attribute__, - ACTIONS(7818), 1, - anon_sym___attribute, - ACTIONS(7820), 1, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10378), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7835), 1, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10394), 1, anon_sym_requires, - ACTIONS(10119), 1, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10579), 1, anon_sym_DASH_GT, - STATE(6286), 1, - sym__function_attributes_end, - STATE(6332), 1, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7084), 1, + sym__function_attributes_start, + STATE(7540), 1, + sym_ref_qualifier, + STATE(8013), 1, sym_trailing_return_type, - STATE(9096), 1, + STATE(8378), 1, + sym__function_attributes_end, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7829), 2, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10387), 2, anon_sym_final, anon_sym_override, - STATE(6157), 2, + STATE(6141), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6403), 2, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6571), 2, + STATE(8342), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 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_LBRACK, - anon_sym_DOT, - ACTIONS(7966), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(7725), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 7, + 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_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_GT2, - [60979] = 8, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [61137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(7687), 1, - anon_sym_LPAREN2, - STATE(3892), 1, - sym_argument_list, - STATE(5964), 1, - sym_initializer_list, - ACTIONS(7225), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(10325), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + ACTIONS(6559), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(6566), 46, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_TILDE, + anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 41, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -506646,20 +506390,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [61053] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [61207] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6669), 2, + ACTIONS(6807), 1, + anon_sym_requires, + ACTIONS(8541), 1, + anon_sym_DASH_GT, + STATE(4705), 1, + sym_trailing_return_type, + ACTIONS(6801), 2, anon_sym_final, anon_sym_override, - STATE(4589), 2, + STATE(5064), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(9139), 19, + STATE(5619), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -506674,12 +506434,8 @@ 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(9141), 33, + ACTIONS(7874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -506701,64 +506457,66 @@ 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_requires, anon_sym_DASH_GT_STAR, - [61121] = 8, + [61283] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - STATE(5103), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(10322), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7357), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7359), 41, + ACTIONS(7553), 1, + anon_sym_LPAREN2, + STATE(3931), 1, + sym_argument_list, + STATE(5980), 1, + sym_initializer_list, + ACTIONS(7248), 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_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(7246), 41, + 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___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -506772,30 +506530,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [61357] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7916), 1, + anon_sym___attribute__, + ACTIONS(7918), 1, + anon_sym___attribute, + ACTIONS(7920), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7941), 1, + anon_sym_requires, + ACTIONS(10127), 1, + anon_sym_DASH_GT, + STATE(6286), 1, + sym__function_attributes_end, + STATE(6295), 1, + sym_trailing_return_type, + STATE(9080), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, + STATE(6170), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6397), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6603), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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_LBRACK, + anon_sym_DOT, + ACTIONS(7970), 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, + 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_GT2, - anon_sym_try, - anon_sym_requires, - [61195] = 9, + [61451] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10554), 1, + ACTIONS(10497), 1, anon_sym_LBRACE, - ACTIONS(10629), 1, + ACTIONS(10585), 1, anon_sym_COLON, - STATE(4509), 1, + STATE(4499), 1, sym__enum_base_clause, - STATE(4668), 1, + STATE(4691), 1, sym_enumerator_list, - STATE(4868), 1, + STATE(4808), 1, sym_attribute_specifier, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8002), 10, + ACTIONS(8003), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -506806,7 +506637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(8000), 39, + ACTIONS(8001), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -506846,82 +506677,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [61271] = 30, + [61527] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6469), 1, anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, + ACTIONS(10366), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10368), 1, anon_sym_AMP, - ACTIONS(10360), 1, + ACTIONS(10378), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10363), 1, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10376), 1, + ACTIONS(10411), 1, anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10624), 1, + ACTIONS(10634), 1, + anon_sym___asm, + ACTIONS(10637), 1, anon_sym_DASH_GT, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(7150), 1, + STATE(7115), 1, sym__function_attributes_start, - STATE(7564), 1, + STATE(7511), 1, sym_ref_qualifier, - STATE(8054), 1, + STATE(7996), 1, sym_trailing_return_type, - STATE(8411), 1, + STATE(8089), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10369), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(6144), 2, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10631), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6141), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6360), 2, + STATE(6361), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8298), 2, + STATE(8342), 2, sym__function_postfix, sym_requires_clause, - STATE(7729), 3, + STATE(7706), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(6481), 7, - anon_sym_RPAREN, + ACTIONS(6471), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -506934,142 +506765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [61389] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10642), 1, - anon_sym_LBRACK_LBRACK, - STATE(4614), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 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(9075), 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_QMARK, - anon_sym_STAR_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [61457] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10198), 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(10196), 33, - 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [61529] = 5, + [61645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(10639), 1, anon_sym_LBRACE, - STATE(964), 1, + STATE(2745), 1, sym_compound_statement, - ACTIONS(3118), 7, + ACTIONS(3116), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -507077,7 +506780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -507125,236 +506828,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [61597] = 5, + [61713] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - STATE(4614), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 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, + ACTIONS(6469), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8839), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(10366), 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, - anon_sym_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [61665] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 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, + ACTIONS(10368), 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_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(5638), 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_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, - [61731] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6783), 1, + ACTIONS(10378), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10394), 1, anon_sym_requires, - ACTIONS(10631), 1, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10634), 1, + anon_sym___asm, + ACTIONS(10637), 1, anon_sym_DASH_GT, - STATE(4702), 1, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7176), 1, + sym__function_attributes_start, + STATE(7559), 1, + sym_ref_qualifier, + STATE(8013), 1, sym_trailing_return_type, - ACTIONS(6777), 2, + STATE(8099), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10387), 2, anon_sym_final, anon_sym_override, - STATE(5261), 2, + ACTIONS(10631), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5581), 2, + STATE(8342), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 15, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - ACTIONS(8907), 32, - anon_sym_DOT_DOT_DOT, + STATE(7719), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 7, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [61807] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1113), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - STATE(708), 1, - sym_compound_statement, - ACTIONS(3118), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, - anon_sym_AMP, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10370), 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, @@ -507366,36 +506916,32 @@ 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [61875] = 5, + [61831] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7479), 1, anon_sym_LBRACE, - STATE(406), 1, - sym_compound_statement, - ACTIONS(3118), 7, + ACTIONS(10596), 1, + sym_auto, + STATE(4819), 1, + sym_decltype_auto, + ACTIONS(7248), 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_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_EQ, anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(7246), 40, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -507404,10 +506950,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, @@ -507431,96 +506979,19 @@ 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, - anon_sym_typename, sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [61943] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7052), 1, - anon_sym_decltype, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 1, - anon_sym_LBRACE, - ACTIONS(10645), 1, - sym_auto, - STATE(4121), 1, - sym_decltype_auto, - ACTIONS(7223), 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_const, - anon_sym_DOT, - ACTIONS(7225), 41, - 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___extension__, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [62017] = 7, + [61905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1972), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10202), 19, + ACTIONS(6663), 2, + anon_sym_final, + anon_sym_override, + STATE(4574), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9121), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -507540,15 +507011,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10200), 33, + ACTIONS(9123), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -507570,63 +507043,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [62089] = 18, + [61973] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7816), 1, - anon_sym___attribute__, - ACTIONS(7818), 1, - anon_sym___attribute, - ACTIONS(7820), 1, + ACTIONS(7170), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7835), 1, + ACTIONS(7274), 1, anon_sym_requires, - ACTIONS(10605), 1, + ACTIONS(9998), 1, + anon_sym___attribute__, + ACTIONS(10001), 1, + anon_sym___attribute, + ACTIONS(10004), 1, anon_sym_DASH_GT, - STATE(6270), 1, - sym__function_attributes_end, - STATE(6294), 1, + STATE(5793), 1, sym_trailing_return_type, - STATE(9096), 1, + STATE(6153), 1, + sym__function_attributes_end, + STATE(9083), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7829), 2, + ACTIONS(7272), 2, anon_sym_final, anon_sym_override, - STATE(6157), 2, + STATE(4441), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6403), 2, + STATE(4748), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6641), 2, + STATE(5370), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 12, + ACTIONS(7876), 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_LBRACK, anon_sym_DOT, - ACTIONS(8422), 23, + ACTIONS(7874), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -507637,7 +507106,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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -507649,161 +507121,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [62183] = 3, + [62067] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 27, - 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, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(10130), 1, anon_sym___attribute__, + ACTIONS(10133), 1, anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(10136), 1, + anon_sym_DASH_GT, + STATE(5769), 1, + sym_trailing_return_type, + STATE(6175), 1, + sym__function_attributes_end, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - anon_sym___asm, - anon_sym_DOT, - sym_identifier, + ACTIONS(7272), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - ACTIONS(8981), 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_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [62247] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7687), 1, - anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(5969), 1, - sym_initializer_list, - ACTIONS(7225), 10, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [62321] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6991), 1, - anon_sym_decltype, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 1, - anon_sym_LBRACE, - ACTIONS(10089), 1, - sym_auto, - STATE(4464), 1, - sym_decltype_auto, - ACTIONS(7223), 12, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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_const, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7225), 39, + ACTIONS(7970), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -507814,22 +507182,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___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_GT_GT, + anon_sym_SEMI, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -507841,48 +507197,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, - anon_sym_GT2, - [62395] = 18, + [62161] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7816), 1, + ACTIONS(7916), 1, anon_sym___attribute__, - ACTIONS(7818), 1, + ACTIONS(7918), 1, anon_sym___attribute, - ACTIONS(7820), 1, + ACTIONS(7920), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(7835), 1, + ACTIONS(7941), 1, anon_sym_requires, - ACTIONS(9987), 1, + ACTIONS(10566), 1, anon_sym_DASH_GT, - STATE(6274), 1, + STATE(6284), 1, sym__function_attributes_end, - STATE(6299), 1, + STATE(6354), 1, sym_trailing_return_type, - STATE(9096), 1, + STATE(9080), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7829), 2, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, - STATE(6157), 2, + STATE(6170), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6403), 2, + STATE(6397), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6697), 2, + STATE(6641), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 12, + ACTIONS(8404), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -507895,7 +507249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(7791), 23, + ACTIONS(8402), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -507919,224 +507273,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [62489] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, - sym_auto, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(10647), 1, - anon_sym_LT, - STATE(4270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4318), 1, - sym_template_argument_list, - STATE(4991), 1, - sym_decltype_auto, - ACTIONS(5659), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5643), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(5636), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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_template, - anon_sym_operator, - [62569] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10651), 1, - anon_sym_RPAREN, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(9834), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [62688] = 20, + [62255] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10667), 1, - anon_sym_AMP, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(8541), 1, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(8547), 1, + anon_sym_requires, + STATE(4750), 1, + sym_trailing_return_type, + ACTIONS(8544), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5619), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10671), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 4, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(9709), 23, + anon_sym_DOT, + ACTIONS(7874), 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_SEMI, - anon_sym_RBRACE, + 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, @@ -508148,71 +507329,55 @@ 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_bitor, - anon_sym_COLON_RBRACK, - [62785] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10667), 1, - anon_sym_AMP, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10661), 2, + anon_sym_DASH_GT_STAR, + [62331] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6679), 1, + anon_sym_LBRACK_LBRACK, + STATE(4607), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9035), 21, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10671), 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(9707), 6, - 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(9709), 23, + anon_sym_DOT, + ACTIONS(9037), 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_SEMI, - anon_sym_RBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508220,144 +507385,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_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_COLON_RBRACK, - [62880] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10661), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [62399] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(10601), 1, + anon_sym___attribute__, + ACTIONS(10604), 1, + anon_sym___attribute, + ACTIONS(10607), 1, + anon_sym_DASH_GT, + STATE(5720), 1, + sym_trailing_return_type, + STATE(6158), 1, + sym__function_attributes_end, + STATE(9083), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4441), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4748), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10663), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10669), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10671), 3, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 24, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(8402), 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_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - anon_sym_COLON_RBRACK, - [62971] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, + [62493] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8617), 1, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(8623), 1, + anon_sym_requires, + STATE(4628), 1, + sym_trailing_return_type, + ACTIONS(8620), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5706), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 15, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10671), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 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(9709), 27, + anon_sym_DOT, + ACTIONS(7970), 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_SEMI, - anon_sym_RBRACE, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508369,28 +507535,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_COLON_RBRACK, - [63060] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(6777), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5696), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 16, + ACTIONS(5587), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -508404,10 +507563,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(7791), 32, + ACTIONS(5589), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -508417,7 +507580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508429,52 +507592,96 @@ 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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [63131] = 4, + [62632] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(10681), 1, - anon_sym_namespace, - ACTIONS(10272), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10643), 1, + anon_sym_RPAREN, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(10270), 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(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(9805), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 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, + STATE(3139), 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, @@ -508487,73 +507694,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_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [63196] = 14, + [62751] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(9141), 1, + anon_sym_requires, + ACTIONS(9138), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5548), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 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(9709), 28, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8402), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508565,40 +507747,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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [63281] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10661), 2, + anon_sym_DASH_GT_STAR, + [62822] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10621), 1, + anon_sym_requires, + ACTIONS(10618), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5568), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -508608,20 +507787,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8989), 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, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -508633,29 +507811,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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [63362] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [62893] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, + ACTIONS(10656), 1, anon_sym_requires, - ACTIONS(6777), 2, + ACTIONS(10653), 2, anon_sym_final, anon_sym_override, - STATE(5261), 2, + STATE(5064), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5550), 2, + STATE(5578), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 16, + ACTIONS(8997), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -508672,7 +507853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8422), 32, + ACTIONS(8999), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -508705,21 +507886,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [63433] = 8, + [62964] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10568), 1, + ACTIONS(2950), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10683), 1, + ACTIONS(10661), 1, anon_sym_LBRACK, - STATE(5409), 1, - sym_parameter_list, - STATE(4910), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9476), 19, + STATE(4837), 1, + sym_new_declarator, + STATE(5621), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9234), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -508739,7 +507920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9478), 30, + ACTIONS(9236), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -508770,83 +507951,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [63506] = 5, + [63037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5600), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5605), 1, - anon_sym_using, - ACTIONS(5607), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10663), 2, + anon_sym_final, + anon_sym_override, + STATE(4632), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9129), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(5609), 47, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9131), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [63573] = 7, + anon_sym_QMARK, + anon_sym_STAR_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, + anon_sym_requires, + [63104] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(6777), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5681), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 16, + ACTIONS(6630), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, + anon_sym_LBRACK, + STATE(5266), 1, + sym_parameter_list, + STATE(4885), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9389), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -508861,19 +508042,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(7966), 32, + ACTIONS(9391), 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, @@ -508885,47 +508067,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [63644] = 13, + [63177] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10675), 2, + ACTIONS(10672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 10, + ACTIONS(9621), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -508936,7 +508118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 29, + ACTIONS(9623), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -508966,33 +508148,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_COLON_RBRACK, - [63727] = 8, + [63260] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4833), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7513), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7511), 39, + 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, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [63327] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10674), 1, + anon_sym_RPAREN, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(9918), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [63446] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(5649), 1, + sym_auto, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(10562), 1, + anon_sym_LT, + ACTIONS(10678), 1, + anon_sym_EQ, + STATE(4249), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4286), 1, + sym_template_argument_list, + STATE(4918), 1, + sym_decltype_auto, + ACTIONS(10676), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(5639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5617), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5609), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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_template, + anon_sym_operator, + [63529] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5019), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7541), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7539), 39, + 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, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [63596] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4952), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7497), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7495), 39, + 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, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [63663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(7042), 1, + anon_sym_decltype, + ACTIONS(7479), 1, anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(8626), 1, - anon_sym_LPAREN2, - STATE(5772), 1, - sym_argument_list, - STATE(7298), 1, - sym_initializer_list, - ACTIONS(7223), 10, + ACTIONS(10162), 1, + sym_auto, + STATE(4527), 1, + sym_decltype_auto, + ACTIONS(7246), 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(7225), 40, + ACTIONS(7248), 39, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -509000,12 +508527,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___extension__, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -509031,32 +508555,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [63800] = 4, + anon_sym_GT2, + [63734] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10685), 1, - anon_sym_friend, - ACTIONS(3118), 7, + STATE(4836), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7517), 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_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(7515), 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_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, @@ -509080,157 +508614,193 @@ 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, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, - anon_sym_explicit, anon_sym_template, anon_sym_operator, - [63865] = 8, + [63801] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10568), 1, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(8592), 1, anon_sym_LPAREN2, - ACTIONS(10683), 1, - anon_sym_LBRACK, - STATE(5409), 1, - sym_parameter_list, - STATE(4910), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9480), 19, + STATE(5856), 1, + sym_argument_list, + STATE(7197), 1, + sym_initializer_list, + ACTIONS(7246), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9482), 30, + ACTIONS(7248), 40, 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___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_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, - [63938] = 8, + anon_sym_DASH_GT, + [63874] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10689), 1, - anon_sym_LBRACK, - STATE(4762), 1, - sym_new_declarator, - STATE(5618), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 19, + ACTIONS(10680), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10682), 1, + anon_sym_COMMA, + ACTIONS(10684), 1, + anon_sym_RPAREN, + ACTIONS(10686), 1, anon_sym_DASH, + ACTIONS(10688), 1, anon_sym_PLUS, + ACTIONS(10690), 1, anon_sym_STAR, + ACTIONS(10692), 1, anon_sym_SLASH, + ACTIONS(10694), 1, anon_sym_PERCENT, + ACTIONS(10696), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10698), 1, + anon_sym_AMP_AMP, + ACTIONS(10700), 1, anon_sym_PIPE, + ACTIONS(10702), 1, anon_sym_CARET, + ACTIONS(10704), 1, anon_sym_AMP, + ACTIONS(10706), 1, + anon_sym_EQ_EQ, + ACTIONS(10708), 1, + anon_sym_BANG_EQ, + ACTIONS(10710), 1, anon_sym_GT, + ACTIONS(10712), 1, + anon_sym_GT_EQ, + ACTIONS(10714), 1, anon_sym_LT_EQ, + ACTIONS(10716), 1, anon_sym_LT, + ACTIONS(10718), 1, anon_sym_LT_LT, + ACTIONS(10720), 1, anon_sym_GT_GT, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10724), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9258), 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, + ACTIONS(10726), 1, anon_sym_QMARK, + ACTIONS(10728), 1, anon_sym_STAR_EQ, + ACTIONS(10730), 1, anon_sym_SLASH_EQ, + ACTIONS(10732), 1, anon_sym_PERCENT_EQ, + ACTIONS(10734), 1, anon_sym_PLUS_EQ, + ACTIONS(10736), 1, anon_sym_DASH_EQ, + ACTIONS(10738), 1, anon_sym_LT_LT_EQ, + ACTIONS(10740), 1, anon_sym_GT_GT_EQ, + ACTIONS(10742), 1, anon_sym_AMP_EQ, + ACTIONS(10744), 1, anon_sym_CARET_EQ, + ACTIONS(10746), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(10750), 1, anon_sym_LT_EQ_GT, + ACTIONS(10752), 1, + anon_sym_or, + ACTIONS(10754), 1, + anon_sym_and, + ACTIONS(10756), 1, anon_sym_bitor, + ACTIONS(10758), 1, + anon_sym_xor, + ACTIONS(10760), 1, anon_sym_bitand, + ACTIONS(10762), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(10768), 1, anon_sym_DOT_STAR, + ACTIONS(10770), 1, anon_sym_DASH_GT_STAR, - [64011] = 5, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10748), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [64035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, + ACTIONS(7170), 1, anon_sym_LBRACK_LBRACK, - STATE(4755), 2, + STATE(4682), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 24, + ACTIONS(9035), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -509255,7 +508825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8835), 28, + ACTIONS(9037), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -509284,135 +508854,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [64078] = 5, + [64102] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7180), 1, + ACTIONS(6630), 1, anon_sym_LBRACK_LBRACK, - STATE(4755), 2, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, + anon_sym_LBRACK, + STATE(5266), 1, + sym_parameter_list, + STATE(4885), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 24, - aux_sym_preproc_elif_token1, + ACTIONS(9431), 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_COLON, - anon_sym_LBRACK, + 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9073), 28, + anon_sym_DASH_GT, + ACTIONS(9433), 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_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, + [64175] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10772), 1, anon_sym_LPAREN2, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10233), 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(10231), 33, + 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_RBRACK_RBRACK, - 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_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [64145] = 31, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [64246] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(10691), 1, + ACTIONS(10776), 1, anon_sym_RPAREN, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(9814), 1, + STATE(10029), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -509434,138 +509071,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [64264] = 8, + [64365] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(10689), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(4974), 1, - sym_new_declarator, - STATE(5578), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 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, + ACTIONS(9629), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9276), 30, + ACTIONS(9889), 1, + anon_sym_EQ, + ACTIONS(10461), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10778), 1, anon_sym_PIPE_PIPE, + ACTIONS(10780), 1, 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, - [64337] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10489), 1, - anon_sym_EQ, - ACTIONS(10667), 1, + ACTIONS(10782), 1, + anon_sym_PIPE, + ACTIONS(10786), 1, anon_sym_AMP, - ACTIONS(10673), 1, + ACTIONS(10792), 1, anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, - anon_sym_AMP_AMP, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10699), 1, + ACTIONS(10794), 1, anon_sym_QMARK, - ACTIONS(10701), 1, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10798), 1, anon_sym_or, - ACTIONS(10703), 1, + ACTIONS(10800), 1, anon_sym_and, - ACTIONS(10705), 1, + ACTIONS(10802), 1, anon_sym_bitor, - STATE(3874), 1, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(10672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(10788), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(10790), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10491), 18, + ACTIONS(9891), 18, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -509584,16 +509156,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_COLON_RBRACK, - [64450] = 5, + [64478] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 2, - anon_sym_final, - anon_sym_override, - STATE(4737), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9139), 18, + ACTIONS(8518), 1, + anon_sym___attribute__, + ACTIONS(8520), 1, + anon_sym___attribute, + ACTIONS(8628), 1, + anon_sym_LBRACE, + ACTIONS(10806), 1, + anon_sym_COLON, + STATE(2902), 1, + sym__enum_base_clause, + STATE(3031), 1, + sym_enumerator_list, + STATE(3567), 1, + sym_attribute_specifier, + ACTIONS(8001), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -509608,13 +509188,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, - ACTIONS(9141), 33, + anon_sym_DASH_GT, + ACTIONS(8003), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -509622,7 +509201,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -509634,86 +509212,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, - anon_sym_requires, - [64517] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4969), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7553), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7551), 39, - 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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [64584] = 4, + anon_sym_DASH_GT_STAR, + [64555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10707), 1, - anon_sym_namespace, - ACTIONS(10272), 7, + ACTIONS(10808), 1, + anon_sym_typedef, + ACTIONS(3116), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -509721,7 +509236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(10270), 47, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -509769,107 +509284,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [64649] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8499), 1, - anon_sym___attribute__, - ACTIONS(8501), 1, - anon_sym___attribute, - ACTIONS(8624), 1, - anon_sym_LBRACE, - ACTIONS(10709), 1, - anon_sym_COLON, - STATE(2916), 1, - sym__enum_base_clause, - STATE(2965), 1, - sym_enumerator_list, - STATE(3555), 1, - sym_attribute_specifier, - ACTIONS(8006), 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(8008), 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, - [64726] = 3, + [64620] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(5591), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(5589), 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, + ACTIONS(10810), 1, + anon_sym_RPAREN, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(10147), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 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, + STATE(3139), 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, @@ -509882,115 +509372,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_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [64789] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10538), 1, - anon_sym_EQ, - ACTIONS(10667), 1, - anon_sym_AMP, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, - anon_sym_AMP_AMP, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10701), 1, - anon_sym_or, - ACTIONS(10703), 1, - anon_sym_and, - ACTIONS(10705), 1, - anon_sym_bitor, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10669), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10671), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10540), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - 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_COLON_RBRACK, - [64898] = 7, + [64739] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + ACTIONS(6630), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10581), 1, anon_sym_LPAREN2, - ACTIONS(10713), 1, + ACTIONS(10666), 1, anon_sym_LBRACK, - STATE(1977), 1, + STATE(5266), 1, sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10202), 18, + STATE(4885), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9397), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -510009,15 +509405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10200), 33, + anon_sym_DASH_GT, + ACTIONS(9399), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -510039,80 +509436,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [64969] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9136), 1, - anon_sym_requires, - ACTIONS(9133), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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(8422), 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, - [65040] = 4, + [64812] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10715), 1, + ACTIONS(10812), 1, anon_sym_friend, - ACTIONS(3118), 7, + ACTIONS(3116), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -510120,7 +509450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -510168,285 +509498,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [65105] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6594), 1, - anon_sym_const, - ACTIONS(6605), 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(6601), 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(6598), 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, - [65172] = 8, + [64877] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(10689), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(4953), 1, - sym_new_declarator, - STATE(5589), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 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, + ACTIONS(9629), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9228), 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, - [65245] = 52, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10717), 1, + ACTIONS(10461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10719), 1, - anon_sym_COMMA, - ACTIONS(10721), 1, - anon_sym_RPAREN, - ACTIONS(10723), 1, - anon_sym_DASH, - ACTIONS(10725), 1, - anon_sym_PLUS, - ACTIONS(10727), 1, - anon_sym_STAR, - ACTIONS(10729), 1, - anon_sym_SLASH, - ACTIONS(10731), 1, - anon_sym_PERCENT, - ACTIONS(10733), 1, + ACTIONS(10471), 1, + anon_sym_EQ, + ACTIONS(10778), 1, anon_sym_PIPE_PIPE, - ACTIONS(10735), 1, + ACTIONS(10780), 1, anon_sym_AMP_AMP, - ACTIONS(10737), 1, + ACTIONS(10782), 1, anon_sym_PIPE, - ACTIONS(10739), 1, - anon_sym_CARET, - ACTIONS(10741), 1, + ACTIONS(10786), 1, anon_sym_AMP, - ACTIONS(10743), 1, - anon_sym_EQ_EQ, - ACTIONS(10745), 1, - anon_sym_BANG_EQ, - ACTIONS(10747), 1, - anon_sym_GT, - ACTIONS(10749), 1, + ACTIONS(10792), 1, anon_sym_GT_EQ, - ACTIONS(10751), 1, - anon_sym_LT_EQ, - ACTIONS(10753), 1, - anon_sym_LT, - ACTIONS(10755), 1, - anon_sym_LT_LT, - ACTIONS(10757), 1, - anon_sym_GT_GT, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10761), 1, - anon_sym_EQ, - ACTIONS(10763), 1, + ACTIONS(10794), 1, anon_sym_QMARK, - ACTIONS(10765), 1, - anon_sym_STAR_EQ, - ACTIONS(10767), 1, - anon_sym_SLASH_EQ, - ACTIONS(10769), 1, - anon_sym_PERCENT_EQ, - ACTIONS(10771), 1, - anon_sym_PLUS_EQ, - ACTIONS(10773), 1, - anon_sym_DASH_EQ, - ACTIONS(10775), 1, - anon_sym_LT_LT_EQ, - ACTIONS(10777), 1, - anon_sym_GT_GT_EQ, - ACTIONS(10779), 1, - anon_sym_AMP_EQ, - ACTIONS(10781), 1, - anon_sym_CARET_EQ, - ACTIONS(10783), 1, - anon_sym_PIPE_EQ, - ACTIONS(10787), 1, + ACTIONS(10796), 1, anon_sym_LT_EQ_GT, - ACTIONS(10789), 1, + ACTIONS(10798), 1, anon_sym_or, - ACTIONS(10791), 1, + ACTIONS(10800), 1, anon_sym_and, - ACTIONS(10793), 1, + ACTIONS(10802), 1, anon_sym_bitor, - ACTIONS(10795), 1, - anon_sym_xor, - ACTIONS(10797), 1, + ACTIONS(10804), 1, anon_sym_bitand, - ACTIONS(10799), 1, - anon_sym_not_eq, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, + STATE(3849), 1, sym_argument_list, - STATE(5664), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10801), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10785), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [65406] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10637), 1, - anon_sym_requires, - ACTIONS(10634), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5581), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 16, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10672), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10788), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10790), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8907), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(10473), 18, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -510457,31 +509579,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [65477] = 8, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [64990] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(7227), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(7687), 1, + ACTIONS(8592), 1, anon_sym_LPAREN2, - STATE(3894), 1, + STATE(5809), 1, sym_argument_list, - STATE(5969), 1, + STATE(7190), 1, sym_initializer_list, - ACTIONS(7223), 10, + ACTIONS(7246), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -510492,7 +509607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 40, + ACTIONS(7248), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -510506,8 +509621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___extension__, - anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -510533,76 +509648,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [65550] = 4, + [65063] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10809), 1, - anon_sym_friend, - ACTIONS(3118), 7, + ACTIONS(10772), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10243), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [65615] = 5, + 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(10241), 33, + 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_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [65134] = 5, ACTIONS(3), 1, sym_comment, - STATE(4795), 1, + STATE(4976), 1, sym_attribute_specifier, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7429), 13, + ACTIONS(7503), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -510616,7 +509734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7427), 39, + ACTIONS(7501), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -510656,85 +509774,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [65682] = 7, + [65201] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10814), 1, - anon_sym_requires, - ACTIONS(10811), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5623), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 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(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(6566), 1, + anon_sym_LBRACE, + ACTIONS(8765), 1, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8915), 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, - [65753] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6650), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10683), 1, - anon_sym_LBRACK, - STATE(5409), 1, - sym_parameter_list, - STATE(4910), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9484), 19, + STATE(4770), 1, + sym_template_argument_list, + ACTIONS(6568), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -510745,24 +509796,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(9486), 30, + ACTIONS(6561), 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, @@ -510785,15 +509838,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [65826] = 5, + [65272] = 3, ACTIONS(3), 1, sym_comment, - STATE(4887), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7415), 13, + ACTIONS(3116), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -510807,11 +509855,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7413), 39, + ACTIONS(3126), 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, @@ -510845,134 +509895,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_identifier, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [65893] = 30, + [65335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10363), 1, + ACTIONS(6649), 1, anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(10824), 1, - anon_sym_requires, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7357), 1, - sym__function_attributes_start, - STATE(7604), 1, - sym_ref_qualifier, - STATE(8587), 1, - sym__function_attributes_end, - STATE(8588), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10821), 2, - anon_sym_final, - anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7737), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [66010] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(8592), 1, - anon_sym_LPAREN2, - STATE(5862), 1, - sym_argument_list, - STATE(7380), 1, - sym_initializer_list, - ACTIONS(7223), 12, + ACTIONS(6660), 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_const, anon_sym_DOT, - ACTIONS(7225), 38, - 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, + ACTIONS(6656), 18, anon_sym___extension__, - anon_sym_LBRACK, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -510986,6 +509930,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_auto, + anon_sym_decltype, + ACTIONS(6653), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -510998,42 +509960,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [66083] = 5, + [65402] = 52, ACTIONS(3), 1, sym_comment, - STATE(4993), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7523), 13, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10680), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(10682), 1, anon_sym_COMMA, + ACTIONS(10686), 1, + anon_sym_DASH, + ACTIONS(10688), 1, + anon_sym_PLUS, + ACTIONS(10690), 1, + anon_sym_STAR, + ACTIONS(10692), 1, + anon_sym_SLASH, + ACTIONS(10694), 1, + anon_sym_PERCENT, + ACTIONS(10696), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10698), 1, + anon_sym_AMP_AMP, + ACTIONS(10700), 1, + anon_sym_PIPE, + ACTIONS(10702), 1, + anon_sym_CARET, + ACTIONS(10704), 1, + anon_sym_AMP, + ACTIONS(10706), 1, + anon_sym_EQ_EQ, + ACTIONS(10708), 1, + anon_sym_BANG_EQ, + ACTIONS(10710), 1, + anon_sym_GT, + ACTIONS(10712), 1, + anon_sym_GT_EQ, + ACTIONS(10714), 1, + anon_sym_LT_EQ, + ACTIONS(10716), 1, + anon_sym_LT, + ACTIONS(10718), 1, + anon_sym_LT_LT, + ACTIONS(10720), 1, + anon_sym_GT_GT, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10724), 1, + anon_sym_EQ, + ACTIONS(10726), 1, + anon_sym_QMARK, + ACTIONS(10728), 1, + anon_sym_STAR_EQ, + ACTIONS(10730), 1, + anon_sym_SLASH_EQ, + ACTIONS(10732), 1, + anon_sym_PERCENT_EQ, + ACTIONS(10734), 1, + anon_sym_PLUS_EQ, + ACTIONS(10736), 1, + anon_sym_DASH_EQ, + ACTIONS(10738), 1, + anon_sym_LT_LT_EQ, + ACTIONS(10740), 1, + anon_sym_GT_GT_EQ, + ACTIONS(10742), 1, + anon_sym_AMP_EQ, + ACTIONS(10744), 1, + anon_sym_CARET_EQ, + ACTIONS(10746), 1, + anon_sym_PIPE_EQ, + ACTIONS(10750), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10752), 1, + anon_sym_or, + ACTIONS(10754), 1, + anon_sym_and, + ACTIONS(10756), 1, + anon_sym_bitor, + ACTIONS(10758), 1, + anon_sym_xor, + ACTIONS(10760), 1, + anon_sym_bitand, + ACTIONS(10762), 1, + anon_sym_not_eq, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10814), 1, anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10748), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [65563] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10816), 1, + anon_sym_namespace, + ACTIONS(10166), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7521), 39, + ACTIONS(10164), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -511057,16 +510118,162 @@ 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, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [66150] = 4, + [65628] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10827), 1, - anon_sym_friend, - ACTIONS(3118), 7, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10820), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10221), 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(10219), 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_QMARK, + anon_sym_STAR_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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [65699] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10792), 1, + anon_sym_GT_EQ, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10668), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10672), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10670), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10788), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10790), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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_COLON_RBRACK, + [65790] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10822), 1, + anon_sym_namespace, + ACTIONS(10166), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -511074,7 +510281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(10164), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -511122,15 +510329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [66215] = 5, + [65855] = 5, ACTIONS(3), 1, sym_comment, - STATE(5027), 1, + STATE(4798), 1, sym_attribute_specifier, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7433), 13, + ACTIONS(7521), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -511144,7 +510351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7431), 39, + ACTIONS(7519), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -511184,21 +510391,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [66282] = 7, + [65922] = 10, ACTIONS(3), 1, sym_comment, + ACTIONS(8518), 1, + anon_sym___attribute__, ACTIONS(8520), 1, - anon_sym_requires, - ACTIONS(8517), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5696), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 16, + anon_sym___attribute, + ACTIONS(8628), 1, + anon_sym_LBRACE, + ACTIONS(10806), 1, + anon_sym_COLON, + STATE(2923), 1, + sym__enum_base_clause, + STATE(2983), 1, + sym_enumerator_list, + STATE(3549), 1, + sym_attribute_specifier, + ACTIONS(8007), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -511215,7 +510425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7791), 32, + ACTIONS(8009), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -511248,168 +510458,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [66353] = 31, + [65999] = 52, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10829), 1, - anon_sym_RPAREN, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(10151), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [66472] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10831), 2, - anon_sym_final, - anon_sym_override, - STATE(4679), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9143), 20, + anon_sym_LPAREN2, + ACTIONS(10680), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10682), 1, + anon_sym_COMMA, + ACTIONS(10686), 1, anon_sym_DASH, + ACTIONS(10688), 1, anon_sym_PLUS, + ACTIONS(10690), 1, anon_sym_STAR, + ACTIONS(10692), 1, anon_sym_SLASH, + ACTIONS(10694), 1, anon_sym_PERCENT, + ACTIONS(10696), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10698), 1, + anon_sym_AMP_AMP, + ACTIONS(10700), 1, anon_sym_PIPE, + ACTIONS(10702), 1, anon_sym_CARET, + ACTIONS(10704), 1, anon_sym_AMP, + ACTIONS(10706), 1, + anon_sym_EQ_EQ, + ACTIONS(10708), 1, + anon_sym_BANG_EQ, + ACTIONS(10710), 1, anon_sym_GT, + ACTIONS(10712), 1, anon_sym_GT_EQ, + ACTIONS(10714), 1, anon_sym_LT_EQ, + ACTIONS(10716), 1, anon_sym_LT, + ACTIONS(10718), 1, anon_sym_LT_LT, + ACTIONS(10720), 1, 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(9145), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(10722), 1, anon_sym_LBRACK, + ACTIONS(10724), 1, + anon_sym_EQ, + ACTIONS(10726), 1, anon_sym_QMARK, + ACTIONS(10728), 1, anon_sym_STAR_EQ, + ACTIONS(10730), 1, anon_sym_SLASH_EQ, + ACTIONS(10732), 1, anon_sym_PERCENT_EQ, + ACTIONS(10734), 1, anon_sym_PLUS_EQ, + ACTIONS(10736), 1, anon_sym_DASH_EQ, + ACTIONS(10738), 1, anon_sym_LT_LT_EQ, + ACTIONS(10740), 1, + anon_sym_GT_GT_EQ, + ACTIONS(10742), 1, anon_sym_AMP_EQ, + ACTIONS(10744), 1, anon_sym_CARET_EQ, + ACTIONS(10746), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(10750), 1, anon_sym_LT_EQ_GT, + ACTIONS(10752), 1, + anon_sym_or, + ACTIONS(10754), 1, + anon_sym_and, + ACTIONS(10756), 1, anon_sym_bitor, + ACTIONS(10758), 1, + anon_sym_xor, + ACTIONS(10760), 1, anon_sym_bitand, + ACTIONS(10762), 1, anon_sym_not_eq, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10824), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10766), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [66539] = 7, + ACTIONS(10748), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [66160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - ACTIONS(10713), 1, - anon_sym_LBRACK, - STATE(1977), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10206), 18, + ACTIONS(6688), 2, + anon_sym_final, + anon_sym_override, + STATE(4632), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9121), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -511419,24 +510586,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(10204), 33, + ACTIONS(9123), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -511444,7 +510613,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, @@ -511459,82 +510627,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [66610] = 4, + [66227] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10834), 1, - anon_sym_friend, - ACTIONS(3118), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [66675] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - ACTIONS(10713), 1, - anon_sym_LBRACK, - STATE(1977), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10210), 18, + ACTIONS(6566), 1, + anon_sym_LBRACE, + ACTIONS(10826), 1, + anon_sym_LT, + STATE(4128), 1, + sym_template_argument_list, + ACTIONS(6568), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -511545,23 +510651,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(10208), 33, + ACTIONS(6561), 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -511584,18 +510693,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [66746] = 5, + [66298] = 3, ACTIONS(3), 1, sym_comment, - STATE(5000), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7425), 13, + ACTIONS(7586), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -511606,14 +510707,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, anon_sym_LBRACK_COLON, - ACTIONS(7423), 39, + ACTIONS(7584), 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, @@ -511649,139 +510753,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [66813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5595), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(5593), 48, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_using, - anon_sym___declspec, - anon_sym___based, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - anon_sym_enum, - anon_sym_class, - anon_sym_struct, - anon_sym_union, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [66876] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10836), 1, - anon_sym_namespace, - ACTIONS(10272), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(10270), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [66941] = 7, + [66361] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + ACTIONS(2950), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10713), 1, + ACTIONS(10661), 1, anon_sym_LBRACK, - STATE(1977), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10186), 18, + STATE(4897), 1, + sym_new_declarator, + STATE(5550), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -511800,15 +510786,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10184), 33, + anon_sym_DASH_GT, + ACTIONS(9180), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -511830,73 +510817,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [67012] = 26, + anon_sym_DASH_GT_STAR, + [66434] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10542), 1, + ACTIONS(10485), 1, anon_sym_EQ, - ACTIONS(10667), 1, - anon_sym_AMP, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, + ACTIONS(10778), 1, anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, + ACTIONS(10780), 1, anon_sym_AMP_AMP, - ACTIONS(10697), 1, + ACTIONS(10782), 1, anon_sym_PIPE, - ACTIONS(10701), 1, + ACTIONS(10786), 1, + anon_sym_AMP, + ACTIONS(10792), 1, + anon_sym_GT_EQ, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10798), 1, anon_sym_or, - ACTIONS(10703), 1, + ACTIONS(10800), 1, anon_sym_and, - ACTIONS(10705), 1, + ACTIONS(10802), 1, anon_sym_bitor, - STATE(3874), 1, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(10672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(10788), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(10790), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 20, + ACTIONS(10487), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -511917,12 +510901,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_COLON_RBRACK, - [67121] = 4, + [66543] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10838), 1, - anon_sym_typedef, - ACTIONS(3118), 7, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10262), 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(10260), 33, + 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_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [66614] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10829), 1, + anon_sym_friend, + ACTIONS(3116), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, @@ -511930,7 +510978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -511978,38 +511026,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [67186] = 3, + [66679] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7158), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(10381), 1, anon_sym_const, - anon_sym_DOT, - ACTIONS(7160), 45, - anon_sym_DOT_DOT_DOT, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(10837), 1, + anon_sym_requires, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7223), 1, + sym__function_attributes_start, + STATE(7577), 1, + sym_ref_qualifier, + STATE(8550), 1, + sym_trailing_return_type, + STATE(8592), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7730), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 6, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [66796] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(5649), 1, + sym_auto, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(10357), 1, + anon_sym_LBRACK, + ACTIONS(10562), 1, + anon_sym_LT, + STATE(4249), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4918), 1, + sym_decltype_auto, + STATE(6069), 1, + sym_template_argument_list, + ACTIONS(5634), 3, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5617), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(5609), 33, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, + 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, @@ -512023,74 +511180,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [66879] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10792), 1, + anon_sym_GT_EQ, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10668), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10672), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10670), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10790), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 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_QMARK, - anon_sym_LT_EQ_GT, - 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_GT_GT_EQ, + anon_sym_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [67249] = 8, + anon_sym_COLON_RBRACK, + [66968] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(8592), 1, - anon_sym_LPAREN2, - STATE(5807), 1, - sym_argument_list, - STATE(7256), 1, - sym_initializer_list, - ACTIONS(7223), 12, + ACTIONS(6807), 1, + anon_sym_requires, + ACTIONS(6801), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5619), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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_const, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(7225), 38, + anon_sym_DASH_GT, + ACTIONS(7874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___extension__, + anon_sym_GT_EQ, anon_sym_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, @@ -512101,27 +511319,52 @@ 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, - [67322] = 5, + anon_sym_DASH_GT_STAR, + [67039] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 1, - anon_sym_const, - ACTIONS(6605), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + STATE(4924), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7483), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7481), 39, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(6601), 18, anon_sym___extension__, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + 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, @@ -512135,50 +511378,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_auto, + sym_identifier, anon_sym_decltype, - ACTIONS(6598), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [67389] = 4, + anon_sym_template, + anon_sym_operator, + [67106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10840), 1, - anon_sym_friend, - ACTIONS(3118), 7, + ACTIONS(10166), 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_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(10164), 42, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -512187,10 +511408,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, @@ -512214,96 +511437,88 @@ 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, - anon_sym_typename, sym_identifier, - sym_auto, anon_sym_decltype, anon_sym_explicit, anon_sym_template, anon_sym_operator, - [67454] = 7, + [67169] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, - anon_sym_LPAREN2, - ACTIONS(10844), 1, - anon_sym_LBRACK, - STATE(1980), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10198), 20, + ACTIONS(10839), 1, + anon_sym_LBRACK_LBRACK, + STATE(4682), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2471), 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_LBRACK, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(10196), 31, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9039), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [67525] = 4, + anon_sym_COLON_RBRACK, + [67236] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10846), 1, - anon_sym_friend, - ACTIONS(3118), 7, + ACTIONS(5598), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5603), 1, + anon_sym_using, + ACTIONS(5605), 6, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3128), 47, + ACTIONS(5607), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -512351,73 +511566,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [67590] = 31, + [67303] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(10848), 1, + ACTIONS(10842), 1, anon_sym_RPAREN, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(10095), 1, + STATE(9863), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -512439,73 +511654,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [67709] = 31, + [67422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + STATE(4794), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7525), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7523), 39, + 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, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [67489] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(10850), 1, + ACTIONS(10844), 1, anon_sym_RPAREN, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(10005), 1, + STATE(10008), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -512527,18 +511804,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [67828] = 7, + [67608] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6572), 1, - anon_sym_LBRACE, - ACTIONS(10852), 1, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10668), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10672), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10670), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9621), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4045), 1, - sym_template_argument_list, - ACTIONS(6574), 18, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_COLON_RBRACK, + [67693] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5591), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -512549,6 +511889,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_LBRACK, @@ -512557,18 +511898,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6567), 33, + anon_sym_DASH_GT, + ACTIONS(5593), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -512590,21 +511931,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [67899] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [67756] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10846), 1, + anon_sym_RPAREN, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(10179), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [67875] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(10851), 1, + anon_sym_requires, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7369), 1, + sym__function_attributes_start, + STATE(7589), 1, + sym_ref_qualifier, + STATE(8510), 1, + sym__function_attributes_end, + STATE(8511), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10848), 2, + anon_sym_final, + anon_sym_override, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7727), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACE, - ACTIONS(7227), 1, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [67992] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4763), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7507), 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, - ACTIONS(7687), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7505), 39, + 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, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [68059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10854), 1, + anon_sym_namespace, + ACTIONS(10166), 7, anon_sym_LPAREN2, - STATE(3892), 1, - sym_argument_list, - STATE(5964), 1, - sym_initializer_list, - ACTIONS(7223), 10, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10164), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [68124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7144), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -512615,9 +512247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 40, + ACTIONS(7146), 45, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -512629,8 +512262,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___extension__, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -512656,106 +512290,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [67972] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10842), 1, - anon_sym_LPAREN2, - ACTIONS(10844), 1, - anon_sym_LBRACK, - STATE(1980), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10202), 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(10200), 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_QMARK, - anon_sym_STAR_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_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [68043] = 13, + [68187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, - sym_auto, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(10647), 1, - anon_sym_LT, - ACTIONS(10857), 1, - anon_sym_EQ, - STATE(4270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4318), 1, - sym_template_argument_list, - STATE(4991), 1, - sym_decltype_auto, - ACTIONS(10855), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5659), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5643), 7, - anon_sym_DOT_DOT_DOT, + ACTIONS(10856), 1, + anon_sym_friend, + ACTIONS(3116), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(5636), 34, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -512764,6 +512315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -512787,18 +512342,27 @@ 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, + anon_sym_typename, sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [68126] = 5, + [68252] = 5, ACTIONS(3), 1, sym_comment, - STATE(4863), 1, + STATE(4960), 1, sym_attribute_specifier, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7549), 13, + ACTIONS(7529), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -512812,7 +512376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7547), 39, + ACTIONS(7527), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -512852,21 +512416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [68193] = 7, + [68319] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(6777), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5623), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 16, + ACTIONS(2950), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10661), 1, + anon_sym_LBRACK, + STATE(4818), 1, + sym_new_declarator, + STATE(5640), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9215), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -512881,19 +512445,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(8915), 32, + ACTIONS(9217), 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, @@ -512905,96 +512470,264 @@ 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, - [68264] = 7, + [68392] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + STATE(4813), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7533), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10713), 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, + anon_sym_LBRACK_COLON, + ACTIONS(7531), 39, + 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, - STATE(1977), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10194), 18, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [68459] = 52, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10680), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10682), 1, + anon_sym_COMMA, + ACTIONS(10686), 1, anon_sym_DASH, + ACTIONS(10688), 1, anon_sym_PLUS, + ACTIONS(10690), 1, anon_sym_STAR, + ACTIONS(10692), 1, anon_sym_SLASH, + ACTIONS(10694), 1, anon_sym_PERCENT, + ACTIONS(10696), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10698), 1, + anon_sym_AMP_AMP, + ACTIONS(10700), 1, anon_sym_PIPE, + ACTIONS(10702), 1, anon_sym_CARET, + ACTIONS(10704), 1, anon_sym_AMP, + ACTIONS(10706), 1, + anon_sym_EQ_EQ, + ACTIONS(10708), 1, + anon_sym_BANG_EQ, + ACTIONS(10710), 1, anon_sym_GT, + ACTIONS(10712), 1, + anon_sym_GT_EQ, + ACTIONS(10714), 1, anon_sym_LT_EQ, + ACTIONS(10716), 1, anon_sym_LT, + ACTIONS(10718), 1, anon_sym_LT_LT, + ACTIONS(10720), 1, anon_sym_GT_GT, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10724), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(10192), 33, - 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_RBRACK, + ACTIONS(10726), 1, anon_sym_QMARK, + ACTIONS(10728), 1, anon_sym_STAR_EQ, + ACTIONS(10730), 1, anon_sym_SLASH_EQ, + ACTIONS(10732), 1, anon_sym_PERCENT_EQ, + ACTIONS(10734), 1, anon_sym_PLUS_EQ, + ACTIONS(10736), 1, anon_sym_DASH_EQ, + ACTIONS(10738), 1, anon_sym_LT_LT_EQ, + ACTIONS(10740), 1, anon_sym_GT_GT_EQ, + ACTIONS(10742), 1, anon_sym_AMP_EQ, + ACTIONS(10744), 1, anon_sym_CARET_EQ, + ACTIONS(10746), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(10750), 1, anon_sym_LT_EQ_GT, + ACTIONS(10752), 1, + anon_sym_or, + ACTIONS(10754), 1, + anon_sym_and, + ACTIONS(10756), 1, anon_sym_bitor, + ACTIONS(10758), 1, + anon_sym_xor, + ACTIONS(10760), 1, anon_sym_bitand, + ACTIONS(10762), 1, anon_sym_not_eq, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(10858), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10766), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [68335] = 8, + ACTIONS(10748), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [68620] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10860), 1, + anon_sym_namespace, + ACTIONS(10166), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10164), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [68685] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, + ACTIONS(6630), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10568), 1, + ACTIONS(10581), 1, anon_sym_LPAREN2, - ACTIONS(10683), 1, + ACTIONS(10666), 1, anon_sym_LBRACK, - STATE(5409), 1, + STATE(5266), 1, sym_parameter_list, - STATE(4910), 2, + STATE(4885), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9439), 19, + ACTIONS(9471), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -513014,7 +512747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9441), 30, + ACTIONS(9473), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -513045,16 +512778,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [68408] = 5, + [68758] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10862), 1, + anon_sym_friend, + ACTIONS(3116), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3126), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [68823] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 2, + ACTIONS(6717), 2, anon_sym_final, anon_sym_override, - STATE(4679), 2, + STATE(4729), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(9139), 20, + ACTIONS(9121), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -513064,18 +512858,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(9141), 31, + ACTIONS(9123), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -513083,7 +512875,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -513091,6 +512885,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, @@ -513105,84 +512900,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, anon_sym_requires, - [68475] = 30, + [68890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, + ACTIONS(5589), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5587), 48, anon_sym_AMP, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(10861), 1, - anon_sym_requires, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7350), 1, - sym__function_attributes_start, - STATE(7569), 1, - sym_ref_qualifier, - STATE(8515), 1, - sym__function_attributes_end, - STATE(8526), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7736), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - ACTIONS(10352), 12, - anon_sym___extension__, + 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, @@ -513194,73 +512947,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [68592] = 31, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [68953] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(10863), 1, + ACTIONS(10864), 1, anon_sym_RPAREN, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(9915), 1, + STATE(10086), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -513282,24 +513049,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [68711] = 10, + [69072] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8499), 1, - anon_sym___attribute__, - ACTIONS(8501), 1, - anon_sym___attribute, - ACTIONS(8624), 1, - anon_sym_LBRACE, - ACTIONS(10709), 1, - anon_sym_COLON, - STATE(2929), 1, - sym__enum_base_clause, - STATE(3008), 1, - sym_enumerator_list, - STATE(3544), 1, - sym_attribute_specifier, - ACTIONS(8000), 16, + ACTIONS(6807), 1, + anon_sym_requires, + ACTIONS(6801), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5706), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -513316,7 +513080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8002), 32, + ACTIONS(7970), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -513349,164 +513113,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [68788] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9707), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 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_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [68867] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - ACTIONS(10713), 1, - anon_sym_LBRACK, - STATE(1977), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10198), 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(10196), 33, - 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_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [68938] = 6, + [69143] = 4, ACTIONS(3), 1, sym_comment, - STATE(4735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6999), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(10865), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7525), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10866), 1, + anon_sym_friend, + ACTIONS(3116), 7, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7528), 37, + anon_sym_LBRACK_COLON, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -513514,6 +513134,11 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -513537,56 +513162,27 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [69007] = 7, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [69208] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6572), 1, - anon_sym_LBRACE, - ACTIONS(8701), 1, - anon_sym_LT, - STATE(4811), 1, - sym_template_argument_list, - ACTIONS(6574), 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, + ACTIONS(6766), 4, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6567), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(6768), 10, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -513597,39 +513193,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, + ACTIONS(5611), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [69078] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - STATE(4755), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 24, + anon_sym_DASH_GT, + ACTIONS(5619), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -513638,50 +513236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8839), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [69145] = 7, + [69275] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 1, - anon_sym_decltype, - ACTIONS(7457), 1, + ACTIONS(4902), 1, anon_sym_LBRACE, - ACTIONS(10089), 1, - sym_auto, - STATE(4464), 1, - sym_decltype_auto, - ACTIONS(7223), 12, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(8630), 1, + anon_sym_LPAREN2, + STATE(5813), 1, + sym_argument_list, + STATE(7381), 1, + sym_initializer_list, + ACTIONS(7246), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -513694,10 +513262,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 39, + ACTIONS(7248), 38, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -513734,197 +513301,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [69216] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6783), 1, - anon_sym_requires, - ACTIONS(6777), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5581), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 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(8907), 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, - [69287] = 7, + [69348] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(1980), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10206), 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, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10204), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10552), 1, + anon_sym_EQ, + ACTIONS(10778), 1, anon_sym_PIPE_PIPE, + ACTIONS(10780), 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, - anon_sym_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [69358] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10485), 1, - anon_sym_EQ, - ACTIONS(10667), 1, + ACTIONS(10782), 1, + anon_sym_PIPE, + ACTIONS(10786), 1, anon_sym_AMP, - ACTIONS(10673), 1, + ACTIONS(10792), 1, anon_sym_GT_EQ, - ACTIONS(10677), 1, + ACTIONS(10796), 1, anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, - anon_sym_AMP_AMP, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10701), 1, + ACTIONS(10798), 1, anon_sym_or, - ACTIONS(10703), 1, + ACTIONS(10800), 1, anon_sym_and, - ACTIONS(10705), 1, + ACTIONS(10802), 1, anon_sym_bitor, - STATE(3874), 1, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(10672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(10788), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(10790), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 20, + ACTIONS(10554), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -513945,41 +513384,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_COLON_RBRACK, - [69467] = 5, + [69457] = 4, ACTIONS(3), 1, sym_comment, - STATE(4815), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, + ACTIONS(10868), 1, + anon_sym_friend, + ACTIONS(3116), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3126), 47, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7437), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [69522] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10870), 1, + anon_sym_friend, + ACTIONS(3116), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7435), 39, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -514003,74 +513494,84 @@ 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, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [69534] = 24, + [69587] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10667), 1, + ACTIONS(10489), 1, + anon_sym_EQ, + ACTIONS(10778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10780), 1, + anon_sym_AMP_AMP, + ACTIONS(10782), 1, + anon_sym_PIPE, + ACTIONS(10786), 1, anon_sym_AMP, - ACTIONS(10673), 1, + ACTIONS(10792), 1, anon_sym_GT_EQ, - ACTIONS(10677), 1, + ACTIONS(10796), 1, anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10695), 1, - anon_sym_AMP_AMP, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10703), 1, + ACTIONS(10798), 1, + anon_sym_or, + ACTIONS(10800), 1, anon_sym_and, - ACTIONS(10705), 1, + ACTIONS(10802), 1, anon_sym_bitor, - STATE(3874), 1, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(10661), 2, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(10672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(10788), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(10790), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 21, + ACTIONS(10491), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_QMARK, @@ -514088,129 +513589,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_COLON_RBRACK, - [69639] = 31, + [69696] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10868), 1, - anon_sym_RPAREN, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(10166), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [69758] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5589), 20, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10437), 1, + anon_sym_EQ, + ACTIONS(10778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10780), 1, + anon_sym_AMP_AMP, + ACTIONS(10782), 1, + anon_sym_PIPE, + ACTIONS(10786), 1, + anon_sym_AMP, + ACTIONS(10792), 1, + anon_sym_GT_EQ, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10798), 1, + anon_sym_or, + ACTIONS(10800), 1, + anon_sym_and, + ACTIONS(10802), 1, + anon_sym_bitor, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10672), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10788), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10790), 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(5591), 35, + ACTIONS(10439), 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_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -514225,198 +513671,90 @@ 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [69821] = 3, + anon_sym_COLON_RBRACK, + [69805] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9182), 1, 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, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 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, + ACTIONS(9625), 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, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [69884] = 52, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10717), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10719), 1, - anon_sym_COMMA, - ACTIONS(10723), 1, - anon_sym_DASH, - ACTIONS(10725), 1, - anon_sym_PLUS, - ACTIONS(10727), 1, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10670), 3, anon_sym_STAR, - ACTIONS(10729), 1, anon_sym_SLASH, - ACTIONS(10731), 1, anon_sym_PERCENT, - ACTIONS(10733), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10735), 1, - anon_sym_AMP_AMP, - ACTIONS(10737), 1, + ACTIONS(9621), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(10739), 1, anon_sym_CARET, - ACTIONS(10741), 1, anon_sym_AMP, - ACTIONS(10743), 1, - anon_sym_EQ_EQ, - ACTIONS(10745), 1, - anon_sym_BANG_EQ, - ACTIONS(10747), 1, anon_sym_GT, - ACTIONS(10749), 1, - anon_sym_GT_EQ, - ACTIONS(10751), 1, anon_sym_LT_EQ, - ACTIONS(10753), 1, anon_sym_LT, - ACTIONS(10755), 1, anon_sym_LT_LT, - ACTIONS(10757), 1, anon_sym_GT_GT, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10761), 1, anon_sym_EQ, - ACTIONS(10763), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 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_QMARK, - ACTIONS(10765), 1, anon_sym_STAR_EQ, - ACTIONS(10767), 1, anon_sym_SLASH_EQ, - ACTIONS(10769), 1, anon_sym_PERCENT_EQ, - ACTIONS(10771), 1, anon_sym_PLUS_EQ, - ACTIONS(10773), 1, anon_sym_DASH_EQ, - ACTIONS(10775), 1, anon_sym_LT_LT_EQ, - ACTIONS(10777), 1, anon_sym_GT_GT_EQ, - ACTIONS(10779), 1, anon_sym_AMP_EQ, - ACTIONS(10781), 1, anon_sym_CARET_EQ, - ACTIONS(10783), 1, anon_sym_PIPE_EQ, - ACTIONS(10787), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(10789), 1, - anon_sym_or, - ACTIONS(10791), 1, - anon_sym_and, - ACTIONS(10793), 1, anon_sym_bitor, - ACTIONS(10795), 1, - anon_sym_xor, - ACTIONS(10797), 1, anon_sym_bitand, - ACTIONS(10799), 1, anon_sym_not_eq, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10870), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10785), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [70045] = 7, + anon_sym_COLON_RBRACK, + [69884] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(2950), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(10661), 1, anon_sym_LBRACK, - STATE(1980), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10190), 20, + STATE(5016), 1, + sym_new_declarator, + STATE(5655), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9230), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -514426,24 +513764,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(10188), 31, + anon_sym_DASH_GT, + ACTIONS(9232), 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, @@ -514451,6 +513790,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, @@ -514464,60 +513804,104 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [70116] = 7, + anon_sym_DASH_GT_STAR, + [69957] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 1, - anon_sym_const, - ACTIONS(6605), 1, - anon_sym_AMP, - ACTIONS(6598), 7, - anon_sym_DOT_DOT_DOT, + STATE(4716), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(10872), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7062), 11, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(6603), 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(6596), 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(6601), 18, + ACTIONS(7060), 39, + anon_sym_AMP, anon_sym___extension__, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + [70024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5593), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(5591), 48, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_using, + anon_sym___declspec, + anon_sym___based, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + anon_sym_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -514531,70 +513915,82 @@ 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, + anon_sym_typename, + sym_identifier, sym_auto, anon_sym_decltype, - [70187] = 22, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [70087] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10667), 1, + ACTIONS(10780), 1, + anon_sym_AMP_AMP, + ACTIONS(10782), 1, + anon_sym_PIPE, + ACTIONS(10786), 1, anon_sym_AMP, - ACTIONS(10673), 1, + ACTIONS(10792), 1, anon_sym_GT_EQ, - ACTIONS(10677), 1, + ACTIONS(10796), 1, anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10705), 1, + ACTIONS(10800), 1, + anon_sym_and, + ACTIONS(10802), 1, anon_sym_bitor, - STATE(3874), 1, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9621), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(10672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(10663), 3, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(10788), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(10790), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 22, + ACTIONS(9623), 21, 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, @@ -514612,77 +514008,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_COLON_RBRACK, - [70288] = 28, + [70192] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(9826), 1, + ACTIONS(9661), 1, anon_sym_EQ, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10667), 1, - anon_sym_AMP, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, + ACTIONS(10778), 1, anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, + ACTIONS(10780), 1, anon_sym_AMP_AMP, - ACTIONS(10697), 1, + ACTIONS(10782), 1, anon_sym_PIPE, - ACTIONS(10699), 1, - anon_sym_QMARK, - ACTIONS(10701), 1, + ACTIONS(10786), 1, + anon_sym_AMP, + ACTIONS(10792), 1, + anon_sym_GT_EQ, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10798), 1, anon_sym_or, - ACTIONS(10703), 1, + ACTIONS(10800), 1, anon_sym_and, - ACTIONS(10705), 1, + ACTIONS(10802), 1, anon_sym_bitor, - STATE(3874), 1, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(10672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(10788), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(10790), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9828), 18, + ACTIONS(9659), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -514697,247 +514091,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_COLON_RBRACK, - [70401] = 4, + [70301] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10872), 1, - anon_sym_typedef, - ACTIONS(3118), 7, + ACTIONS(9182), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 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(9625), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [70466] = 52, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10717), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10719), 1, - anon_sym_COMMA, - ACTIONS(10723), 1, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10782), 1, + anon_sym_PIPE, + ACTIONS(10786), 1, + anon_sym_AMP, + ACTIONS(10792), 1, + anon_sym_GT_EQ, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10802), 1, + anon_sym_bitor, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10668), 2, anon_sym_DASH, - ACTIONS(10725), 1, anon_sym_PLUS, - ACTIONS(10727), 1, + ACTIONS(10672), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9621), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(10670), 3, anon_sym_STAR, - ACTIONS(10729), 1, anon_sym_SLASH, - ACTIONS(10731), 1, anon_sym_PERCENT, - ACTIONS(10733), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10735), 1, - anon_sym_AMP_AMP, - ACTIONS(10737), 1, - anon_sym_PIPE, - ACTIONS(10739), 1, - anon_sym_CARET, - ACTIONS(10741), 1, - anon_sym_AMP, - ACTIONS(10743), 1, + ACTIONS(10788), 3, anon_sym_EQ_EQ, - ACTIONS(10745), 1, anon_sym_BANG_EQ, - ACTIONS(10747), 1, + anon_sym_not_eq, + ACTIONS(10790), 3, anon_sym_GT, - ACTIONS(10749), 1, - anon_sym_GT_EQ, - ACTIONS(10751), 1, anon_sym_LT_EQ, - ACTIONS(10753), 1, anon_sym_LT, - ACTIONS(10755), 1, - anon_sym_LT_LT, - ACTIONS(10757), 1, - anon_sym_GT_GT, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10761), 1, - anon_sym_EQ, - ACTIONS(10763), 1, + ACTIONS(9623), 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_QMARK, - ACTIONS(10765), 1, anon_sym_STAR_EQ, - ACTIONS(10767), 1, anon_sym_SLASH_EQ, - ACTIONS(10769), 1, anon_sym_PERCENT_EQ, - ACTIONS(10771), 1, anon_sym_PLUS_EQ, - ACTIONS(10773), 1, anon_sym_DASH_EQ, - ACTIONS(10775), 1, anon_sym_LT_LT_EQ, - ACTIONS(10777), 1, anon_sym_GT_GT_EQ, - ACTIONS(10779), 1, anon_sym_AMP_EQ, - ACTIONS(10781), 1, anon_sym_CARET_EQ, - ACTIONS(10783), 1, anon_sym_PIPE_EQ, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10789), 1, - anon_sym_or, - ACTIONS(10791), 1, - anon_sym_and, - ACTIONS(10793), 1, - anon_sym_bitor, - ACTIONS(10795), 1, - anon_sym_xor, - ACTIONS(10797), 1, - anon_sym_bitand, - ACTIONS(10799), 1, - anon_sym_not_eq, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10874), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10785), 3, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [70627] = 5, + anon_sym_COLON_RBRACK, + [70402] = 5, ACTIONS(3), 1, sym_comment, - STATE(4842), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, + ACTIONS(7170), 1, + anon_sym_LBRACK_LBRACK, + STATE(4682), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8870), 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, - ACTIONS(7399), 13, + anon_sym_COLON, + anon_sym_LBRACK, + 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(8872), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7397), 39, - 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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [70694] = 5, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [70469] = 5, ACTIONS(3), 1, sym_comment, - STATE(4852), 1, + STATE(4796), 1, sym_attribute_specifier, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7507), 13, + ACTIONS(7493), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -514951,7 +514254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7505), 39, + ACTIONS(7491), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -514991,45 +514294,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [70761] = 7, + [70536] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(10713), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(1977), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10174), 18, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10786), 1, + anon_sym_AMP, + ACTIONS(10792), 1, + anon_sym_GT_EQ, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10672), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10788), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10790), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9621), 4, + anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(10172), 33, + ACTIONS(9623), 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_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -515044,43 +514369,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [70832] = 5, + anon_sym_COLON_RBRACK, + [70633] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6807), 4, + ACTIONS(6807), 1, + anon_sym_requires, + ACTIONS(6801), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5548), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(6809), 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(5638), 19, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8402), 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_PIPE_PIPE, anon_sym_AMP_AMP, @@ -515089,13 +514414,42 @@ static const uint16_t ts_small_parse_table[] = { 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, - ACTIONS(5645), 22, - aux_sym_preproc_elif_token1, + anon_sym_DASH_GT_STAR, + [70704] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8547), 1, + anon_sym_requires, + ACTIONS(8544), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5619), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515109,53 +514463,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7874), 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_DOT, - sym_identifier, - [70899] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [70775] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(1980), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10186), 20, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 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, - anon_sym_DOT, - ACTIONS(10184), 31, + ACTIONS(9623), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -515163,6 +514556,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, @@ -515173,25 +514567,21 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [70970] = 5, + anon_sym_COLON_RBRACK, + [70856] = 6, ACTIONS(3), 1, sym_comment, - STATE(4735), 1, + STATE(4716), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(10865), 4, + ACTIONS(7060), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(10872), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7001), 11, + ACTIONS(7399), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -515203,7 +514593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_GT2, - ACTIONS(6999), 39, + ACTIONS(7402), 37, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -515234,87 +514624,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, anon_sym_asm, anon_sym___asm__, anon_sym___asm, - sym_identifier, anon_sym_final, anon_sym_override, anon_sym_try, anon_sym_requires, - [71037] = 5, + [70925] = 28, ACTIONS(3), 1, sym_comment, - STATE(4908), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7455), 13, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10459), 1, + anon_sym_EQ, + ACTIONS(10461), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(10778), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10780), 1, + anon_sym_AMP_AMP, + ACTIONS(10782), 1, + anon_sym_PIPE, + ACTIONS(10786), 1, + anon_sym_AMP, + ACTIONS(10792), 1, + anon_sym_GT_EQ, + ACTIONS(10794), 1, + anon_sym_QMARK, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10798), 1, + anon_sym_or, + ACTIONS(10800), 1, + anon_sym_and, + ACTIONS(10802), 1, + anon_sym_bitor, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10668), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10672), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10788), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10790), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10463), 18, 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, - anon_sym_LBRACK_COLON, - ACTIONS(7453), 39, - 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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [71104] = 5, + anon_sym_RBRACE, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_COLON_RBRACK, + [71038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10876), 2, + ACTIONS(10875), 2, anon_sym_final, anon_sym_override, - STATE(4737), 2, + STATE(4729), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(9143), 18, + ACTIONS(9129), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515333,7 +514744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9145), 33, + ACTIONS(9131), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -515367,18 +514778,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_requires, - [71171] = 7, + [71105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, - anon_sym_LPAREN2, - ACTIONS(10844), 1, - anon_sym_LBRACK, - STATE(1980), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10210), 20, + ACTIONS(6807), 1, + anon_sym_requires, + ACTIONS(6801), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5568), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515388,24 +514802,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(10208), 31, + anon_sym_DASH_GT, + ACTIONS(8989), 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, @@ -515413,95 +514827,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [71242] = 28, + anon_sym_DASH_GT_STAR, + [71176] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10477), 1, - anon_sym_EQ, - ACTIONS(10667), 1, - anon_sym_AMP, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, - anon_sym_AMP_AMP, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10699), 1, - anon_sym_QMARK, - ACTIONS(10701), 1, - anon_sym_or, - ACTIONS(10703), 1, - anon_sym_and, - ACTIONS(10705), 1, - anon_sym_bitor, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(6807), 1, + anon_sym_requires, + ACTIONS(6801), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5578), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8997), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10671), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8999), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_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, @@ -515512,25 +514895,120 @@ 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_COLON_RBRACK, - [71355] = 7, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [71247] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(8636), 1, - anon_sym_requires, - ACTIONS(8633), 2, - anon_sym_final, - anon_sym_override, - STATE(5261), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5681), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 16, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10878), 1, + anon_sym_RPAREN, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(10092), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [71366] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6630), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10666), 1, + anon_sym_LBRACK, + STATE(5266), 1, + sym_parameter_list, + STATE(4885), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9451), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515545,19 +515023,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(7966), 32, + ACTIONS(9453), 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, @@ -515569,36 +515048,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [71426] = 3, + [71439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7719), 14, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10880), 1, + anon_sym_typedef, + ACTIONS(3116), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7717), 41, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -515607,12 +515081,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, @@ -515636,76 +515108,269 @@ 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, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [71489] = 26, + [71504] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(4902), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(8630), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10435), 1, - anon_sym_EQ, - ACTIONS(10667), 1, + STATE(5867), 1, + sym_argument_list, + STATE(7321), 1, + sym_initializer_list, + ACTIONS(7246), 12, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(10673), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(10677), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_const, + anon_sym_DOT, + ACTIONS(7248), 38, + 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___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_LT_EQ_GT, - ACTIONS(10679), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, - ACTIONS(10693), 1, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [71577] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7007), 1, + anon_sym_decltype, + ACTIONS(7479), 1, + anon_sym_LBRACE, + ACTIONS(10624), 1, + sym_auto, + STATE(4089), 1, + sym_decltype_auto, + ACTIONS(7246), 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_const, + anon_sym_DOT, + ACTIONS(7248), 41, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, anon_sym_AMP_AMP, - ACTIONS(10697), 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___extension__, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [71648] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10225), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(10701), 1, + anon_sym_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, - ACTIONS(10703), 1, anon_sym_and, - ACTIONS(10705), 1, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10223), 33, + 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_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, - STATE(3874), 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_final, + anon_sym_override, + anon_sym_requires, + [71719] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10786), 1, + anon_sym_AMP, + ACTIONS(10792), 1, + anon_sym_GT_EQ, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10661), 2, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, + ACTIONS(10672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10663), 3, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, + ACTIONS(10788), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10671), 3, + ACTIONS(10790), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 20, + ACTIONS(9621), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 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_QMARK, @@ -515722,19 +515387,84 @@ 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_COLON_RBRACK, - [71598] = 7, + [71814] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10820), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10229), 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(10227), 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_QMARK, + anon_sym_STAR_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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [71885] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(10818), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(10820), 1, anon_sym_LBRACK, - STATE(1980), 1, + STATE(1975), 1, sym_parameter_list, - STATE(5229), 1, + STATE(5187), 1, sym__function_declarator_seq, - ACTIONS(10194), 20, + ACTIONS(10233), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515755,7 +515485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10192), 31, + ACTIONS(10231), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -515787,18 +515517,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [71669] = 7, + [71956] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(10772), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(10774), 1, anon_sym_LBRACK, - STATE(1980), 1, + STATE(1976), 1, sym_parameter_list, - STATE(5229), 1, + STATE(5219), 1, sym__function_declarator_seq, - ACTIONS(10174), 20, + ACTIONS(10264), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515808,24 +515538,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(10172), 31, + ACTIONS(10266), 33, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -515833,6 +515563,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, @@ -515849,100 +515580,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [71740] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10879), 1, - anon_sym_RPAREN, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(9944), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [71859] = 3, + [72027] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 20, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10178), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -515956,24 +515606,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5595), 35, + ACTIONS(10176), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -515995,139 +515641,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [71922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10881), 1, - anon_sym_namespace, - ACTIONS(10272), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(10270), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [71987] = 26, + [72098] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10818), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10820), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10473), 1, - anon_sym_EQ, - ACTIONS(10667), 1, - anon_sym_AMP, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, - anon_sym_AMP_AMP, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10701), 1, - anon_sym_or, - ACTIONS(10703), 1, - anon_sym_and, - ACTIONS(10705), 1, - anon_sym_bitor, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10661), 2, + STATE(1975), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10243), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10671), 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(10475), 20, + 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(10241), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, @@ -516135,29 +515691,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_COLON_RBRACK, - [72096] = 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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [72169] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(10772), 1, anon_sym_LPAREN2, - ACTIONS(10689), 1, + ACTIONS(10774), 1, anon_sym_LBRACK, - STATE(4851), 1, - sym_new_declarator, - STATE(5628), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9248), 19, + STATE(1976), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10221), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -516176,16 +515739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9250), 30, + ACTIONS(10219), 33, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -516207,75 +515769,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [72169] = 26, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [72240] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10818), 1, anon_sym_LPAREN2, - ACTIONS(9599), 1, - anon_sym_EQ, - ACTIONS(9642), 1, + ACTIONS(10820), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10667), 1, - anon_sym_AMP, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, - anon_sym_AMP_AMP, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10701), 1, - anon_sym_or, - ACTIONS(10703), 1, - anon_sym_and, - ACTIONS(10705), 1, - anon_sym_bitor, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10661), 2, + STATE(1975), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10262), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10669), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10671), 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(9597), 20, + 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(10260), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, @@ -516283,127 +515819,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_COLON_RBRACK, - [72278] = 4, + anon_sym_LT_EQ_GT, + anon_sym_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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [72311] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10883), 1, - anon_sym_typedef, - ACTIONS(3118), 7, + ACTIONS(6649), 1, + anon_sym_const, + ACTIONS(6660), 1, + anon_sym_AMP, + ACTIONS(6653), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [72343] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7052), 1, - anon_sym_decltype, - ACTIONS(7457), 1, - anon_sym_LBRACE, - ACTIONS(10645), 1, - sym_auto, - STATE(4121), 1, - sym_decltype_auto, - ACTIONS(7223), 10, + anon_sym_GT2, + ACTIONS(6658), 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_const, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7225), 41, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, + ACTIONS(6651), 18, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -516416,83 +515882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72414] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10885), 1, - anon_sym_RPAREN, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(9849), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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(6656), 18, anon_sym___extension__, - anon_sym_const, + anon_sym_COLON_COLON, + anon_sym_LBRACE, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -516504,85 +515897,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [72533] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, + anon_sym_alignas, + anon_sym__Alignas, sym_auto, - ACTIONS(5667), 1, anon_sym_decltype, - ACTIONS(10384), 1, + [72382] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10820), 1, anon_sym_LBRACK, - ACTIONS(10647), 1, + STATE(1975), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10225), 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, - STATE(4270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4991), 1, - sym_decltype_auto, - STATE(6086), 1, - sym_template_argument_list, - ACTIONS(5675), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5659), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5643), 7, + 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(10223), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(5636), 33, - 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, - anon_sym_template, - anon_sym_operator, - [72616] = 5, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [72453] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10887), 1, + ACTIONS(7170), 1, anon_sym_LBRACK_LBRACK, - STATE(4755), 2, + STATE(4682), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 24, + ACTIONS(8854), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -516607,7 +515998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9075), 28, + ACTIONS(8856), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -516636,189 +516027,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [72683] = 3, + [72520] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10272), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10772), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1976), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10229), 18, + 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(10270), 42, + 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___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, - [72746] = 52, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10717), 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, + ACTIONS(10227), 33, anon_sym_DOT_DOT_DOT, - ACTIONS(10719), 1, anon_sym_COMMA, - ACTIONS(10723), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + [72591] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8623), 1, + anon_sym_requires, + ACTIONS(8620), 2, + anon_sym_final, + anon_sym_override, + STATE(5064), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5706), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 16, anon_sym_DASH, - ACTIONS(10725), 1, anon_sym_PLUS, - ACTIONS(10727), 1, anon_sym_STAR, - ACTIONS(10729), 1, anon_sym_SLASH, - ACTIONS(10731), 1, anon_sym_PERCENT, - ACTIONS(10733), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10735), 1, - anon_sym_AMP_AMP, - ACTIONS(10737), 1, anon_sym_PIPE, - ACTIONS(10739), 1, anon_sym_CARET, - ACTIONS(10741), 1, anon_sym_AMP, - ACTIONS(10743), 1, - anon_sym_EQ_EQ, - ACTIONS(10745), 1, - anon_sym_BANG_EQ, - ACTIONS(10747), 1, anon_sym_GT, - ACTIONS(10749), 1, - anon_sym_GT_EQ, - ACTIONS(10751), 1, anon_sym_LT_EQ, - ACTIONS(10753), 1, anon_sym_LT, - ACTIONS(10755), 1, anon_sym_LT_LT, - ACTIONS(10757), 1, anon_sym_GT_GT, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10761), 1, anon_sym_EQ, - ACTIONS(10763), 1, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(7970), 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, - ACTIONS(10765), 1, anon_sym_STAR_EQ, - ACTIONS(10767), 1, anon_sym_SLASH_EQ, - ACTIONS(10769), 1, anon_sym_PERCENT_EQ, - ACTIONS(10771), 1, anon_sym_PLUS_EQ, - ACTIONS(10773), 1, anon_sym_DASH_EQ, - ACTIONS(10775), 1, anon_sym_LT_LT_EQ, - ACTIONS(10777), 1, anon_sym_GT_GT_EQ, - ACTIONS(10779), 1, anon_sym_AMP_EQ, - ACTIONS(10781), 1, anon_sym_CARET_EQ, - ACTIONS(10783), 1, anon_sym_PIPE_EQ, - ACTIONS(10787), 1, anon_sym_LT_EQ_GT, - ACTIONS(10789), 1, anon_sym_or, - ACTIONS(10791), 1, anon_sym_and, - ACTIONS(10793), 1, anon_sym_bitor, - ACTIONS(10795), 1, anon_sym_xor, - ACTIONS(10797), 1, anon_sym_bitand, - ACTIONS(10799), 1, anon_sym_not_eq, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(10890), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10785), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - [72907] = 8, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [72662] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(4914), 1, anon_sym_LBRACE, - ACTIONS(7227), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(8626), 1, + ACTIONS(7553), 1, anon_sym_LPAREN2, - STATE(5789), 1, + STATE(3931), 1, sym_argument_list, - STATE(7373), 1, + STATE(5980), 1, sym_initializer_list, - ACTIONS(7223), 10, + ACTIONS(7246), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -516829,7 +516179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_const, anon_sym_DOT, - ACTIONS(7225), 40, + ACTIONS(7248), 40, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -516843,8 +516193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym___extension__, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -516870,106 +516220,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [72980] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6650), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10683), 1, - anon_sym_LBRACK, - STATE(5409), 1, - sym_parameter_list, - STATE(4910), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9300), 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(9302), 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, - [73053] = 5, + [72735] = 4, ACTIONS(3), 1, sym_comment, - STATE(4870), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7533), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10882), 1, + anon_sym_typedef, + ACTIONS(3116), 7, anon_sym_LPAREN2, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7531), 39, + ACTIONS(3126), 47, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, anon_sym_LBRACK, anon_sym_static, anon_sym_register, @@ -516993,85 +516269,95 @@ 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, + anon_sym_typename, sym_identifier, + sym_auto, anon_sym_decltype, + anon_sym_explicit, anon_sym_template, anon_sym_operator, - [73120] = 7, + [72800] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7553), 1, anon_sym_LPAREN2, - ACTIONS(10713), 1, - anon_sym_LBRACK, - STATE(1977), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10190), 18, + STATE(3823), 1, + sym_argument_list, + STATE(5973), 1, + sym_initializer_list, + ACTIONS(7246), 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_or, - anon_sym_and, - anon_sym_xor, + anon_sym_const, anon_sym_DOT, - ACTIONS(10188), 33, + ACTIONS(7248), 40, 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_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym___extension__, + anon_sym_RBRACK_RBRACK, + 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [73191] = 6, + [72873] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(10818), 1, anon_sym_LPAREN2, - STATE(5651), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 19, + ACTIONS(10820), 1, + anon_sym_LBRACK, + STATE(1975), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10264), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517081,26 +516367,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(9379), 31, + ACTIONS(10266), 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, @@ -517108,7 +516392,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, @@ -517122,49 +516405,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_STAR, - [73259] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [72944] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7735), 41, + ACTIONS(6649), 1, + anon_sym_const, + ACTIONS(6660), 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(6656), 18, 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_COLON_COLON, + anon_sym_LBRACE, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -517178,47 +516444,103 @@ 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, - [73321] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10898), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(10896), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(10894), 20, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6653), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, + 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, - ACTIONS(10892), 31, - anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_GT2, + [73011] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10467), 1, + anon_sym_EQ, + ACTIONS(10778), 1, anon_sym_PIPE_PIPE, + ACTIONS(10780), 1, anon_sym_AMP_AMP, + ACTIONS(10782), 1, + anon_sym_PIPE, + ACTIONS(10786), 1, + anon_sym_AMP, + ACTIONS(10792), 1, + anon_sym_GT_EQ, + ACTIONS(10796), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10798), 1, + anon_sym_or, + ACTIONS(10800), 1, + anon_sym_and, + ACTIONS(10802), 1, + anon_sym_bitor, + ACTIONS(10804), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10668), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10672), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10788), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_not_eq, + ACTIONS(10790), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10469), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -517232,32 +516554,19 @@ 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, - [73387] = 8, + anon_sym_COLON_RBRACK, + [73120] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, + ACTIONS(10818), 1, anon_sym_LPAREN2, - ACTIONS(10902), 1, + ACTIONS(10820), 1, anon_sym_LBRACK, - STATE(5163), 1, - sym_new_declarator, - STATE(5923), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 18, + STATE(1975), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10178), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517267,24 +516576,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(9228), 30, + ACTIONS(10176), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -517292,7 +516601,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, @@ -517307,132 +516615,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [73459] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7291), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7293), 46, - 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_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_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, - [73523] = 6, + [73191] = 8, ACTIONS(3), 1, sym_comment, - STATE(4105), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3889), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3899), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(9116), 17, + ACTIONS(6483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10884), 1, + anon_sym_LBRACK, + STATE(5645), 1, + sym_parameter_list, + STATE(5106), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9397), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(9118), 25, + ACTIONS(9399), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [73591] = 3, + [73263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 19, + ACTIONS(9373), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517452,7 +516706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9391), 35, + ACTIONS(9375), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -517488,15 +516742,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [73653] = 5, + [73325] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10904), 1, + ACTIONS(6792), 1, anon_sym_LBRACK_LBRACK, - STATE(4769), 2, + STATE(4764), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 17, + ACTIONS(8854), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517514,7 +516768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9075), 34, + ACTIONS(8856), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -517549,21 +516803,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [73719] = 8, + [73391] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10842), 1, + ACTIONS(3034), 1, + anon_sym_LBRACE, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(10907), 1, + ACTIONS(10888), 1, anon_sym_LBRACK, - STATE(5634), 1, - sym_parameter_list, - STATE(5067), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9484), 20, + STATE(5103), 1, + sym_new_declarator, + STATE(5858), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9178), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517584,7 +516838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9486), 28, + ACTIONS(9180), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -517613,105 +516867,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [73791] = 3, + [73463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 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(9409), 35, + ACTIONS(7537), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - 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_requires, - anon_sym_DASH_GT_STAR, - [73853] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10320), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(7371), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5657), 44, - 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, + anon_sym_LBRACK_COLON, + ACTIONS(7535), 41, + 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___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -517725,51 +516922,52 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [73921] = 4, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [73525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7291), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7293), 46, + ACTIONS(7713), 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, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7711), 41, + 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___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -517783,82 +516981,19 @@ 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, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [73985] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10915), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(10913), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(10911), 20, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(10909), 31, - 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [74051] = 3, + anon_sym_template, + anon_sym_operator, + [73587] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 19, + ACTIONS(10890), 1, + anon_sym_LBRACK_LBRACK, + STATE(4764), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2471), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -517872,13 +517007,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(8915), 35, + ACTIONS(9039), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -517888,7 +517021,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, @@ -517900,11 +517032,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, @@ -517914,47 +517046,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [74113] = 3, + [73653] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7761), 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_EQ, - anon_sym_GT2, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(7759), 41, - anon_sym_AMP, + ACTIONS(10893), 1, + sym_identifier, + ACTIONS(10895), 1, + anon_sym_COLON_COLON, + ACTIONS(10899), 1, + sym_primitive_type, + ACTIONS(10901), 1, + anon_sym_enum, + ACTIONS(10903), 1, + anon_sym_class, + ACTIONS(10905), 1, + anon_sym_struct, + ACTIONS(10907), 1, + anon_sym_union, + ACTIONS(10909), 1, + anon_sym_typename, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(7400), 1, + sym_splice_specifier, + STATE(7579), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7663), 1, + sym_template_type, + STATE(7711), 1, + sym_type_specifier, + STATE(7722), 1, + sym_qualified_type_identifier, + STATE(8191), 1, + sym__type_definition_type, + STATE(8705), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5124), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10897), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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___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, @@ -517967,38 +517132,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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [74175] = 11, + [73769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10917), 3, + ACTIONS(8937), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 15, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -518007,21 +517149,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_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8939), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518040,157 +517184,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [74253] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4889), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9139), 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_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, - anon_sym_requires, - ACTIONS(9141), 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [74319] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10354), 1, - anon_sym___attribute__, - ACTIONS(10357), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, - anon_sym_requires, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7452), 1, - sym__function_attributes_start, - STATE(7642), 1, - sym_ref_qualifier, - STATE(8440), 1, - sym_trailing_return_type, - STATE(8491), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7754), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [74435] = 3, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [73831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7567), 13, + ACTIONS(7674), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -518204,7 +517208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7565), 41, + ACTIONS(7672), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -518246,133 +517250,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [74497] = 6, + [73893] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10930), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(10926), 4, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(10928), 5, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_explicit, - anon_sym_operator, - ACTIONS(10933), 11, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, + ACTIONS(2246), 1, anon_sym_enum, + ACTIONS(2248), 1, anon_sym_class, + ACTIONS(2250), 1, anon_sym_struct, + ACTIONS(2252), 1, anon_sym_union, - anon_sym_typename, + ACTIONS(2278), 1, sym_auto, - ACTIONS(10923), 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, + ACTIONS(2280), 1, anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - [74565] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(5140), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(5144), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(5146), 1, - anon_sym_enum, - ACTIONS(5148), 1, - anon_sym_class, - ACTIONS(5150), 1, - anon_sym_struct, - ACTIONS(5152), 1, - anon_sym_union, - ACTIONS(5154), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(5156), 1, - sym_auto, - ACTIONS(5158), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4387), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4802), 1, - sym_splice_specifier, - STATE(5365), 1, - sym_template_type, - STATE(5472), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(5574), 1, - sym_qualified_type_identifier, - STATE(6031), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(6289), 1, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, sym_type_specifier, - STATE(8362), 1, - sym_type_descriptor, - STATE(8757), 1, + STATE(8754), 1, sym__scope_resolution, + STATE(10643), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5185), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5973), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(5142), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6050), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -518394,77 +517336,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [74681] = 28, + [74009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, - anon_sym_AMP_AMP, - ACTIONS(10941), 1, - anon_sym_PIPE, - ACTIONS(10945), 1, - anon_sym_AMP, - ACTIONS(10951), 1, - anon_sym_GT_EQ, - ACTIONS(10955), 1, - anon_sym_QMARK, - ACTIONS(10957), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, - anon_sym_or, - ACTIONS(10961), 1, - anon_sym_and, - ACTIONS(10963), 1, - anon_sym_bitor, - ACTIONS(10965), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10477), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, + ACTIONS(8941), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10947), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10949), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 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(8943), 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_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -518478,16 +517384,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [74793] = 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [74071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(10967), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(5136), 20, - anon_sym_BANG, + ACTIONS(6656), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6658), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518501,20 +517415,25 @@ 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_not, anon_sym_or, anon_sym_and, anon_sym_xor, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5134), 31, + ACTIONS(6651), 32, + 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_LBRACK_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -518528,32 +517447,26 @@ 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, - [74859] = 8, + [74135] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9304), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10969), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(5585), 1, + STATE(1974), 1, sym_parameter_list, - STATE(5055), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9484), 18, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10233), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518567,12 +517480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9486), 30, + ACTIONS(10231), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -518580,7 +517494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518603,10 +517518,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [74931] = 3, + [74205] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(10651), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [74321] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 19, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(10913), 1, + anon_sym_LBRACK, + STATE(5205), 1, + sym_new_declarator, + STATE(5915), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9215), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518625,18 +517637,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3153), 35, + ACTIONS(9217), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -518658,37 +517667,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [74993] = 12, + anon_sym_DASH_GT, + [74393] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10935), 2, + STATE(1974), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10243), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -518702,7 +517698,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 27, + anon_sym_DOT, + ACTIONS(10241), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -518730,48 +517727,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [75073] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10935), 2, + [74463] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1974), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10262), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 11, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 27, + anon_sym_DOT, + ACTIONS(10260), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -518799,10 +517790,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [75155] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [74533] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4141), 1, + anon_sym_enum, + ACTIONS(4143), 1, + anon_sym_class, + ACTIONS(4145), 1, + anon_sym_struct, + ACTIONS(4147), 1, + anon_sym_union, + ACTIONS(4151), 1, + sym_auto, + ACTIONS(4153), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10915), 1, + sym_identifier, + ACTIONS(10917), 1, + anon_sym_COLON_COLON, + ACTIONS(10919), 1, + sym_primitive_type, + ACTIONS(10921), 1, + anon_sym_typename, + STATE(2177), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2309), 1, + sym_type_specifier, + STATE(2581), 1, + sym_splice_specifier, + STATE(2628), 1, + sym_template_type, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2685), 1, + sym_qualified_type_identifier, + STATE(3013), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4951), 1, + sym_type_descriptor, + STATE(8744), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2934), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4137), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3045), 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, + [74649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 19, + ACTIONS(5587), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518822,7 +517903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5595), 35, + ACTIONS(5589), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -518858,16 +517939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [75217] = 5, + [74711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10977), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(10975), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(10973), 20, - anon_sym_BANG, + ACTIONS(8965), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518882,19 +517957,23 @@ 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(10971), 31, + ACTIONS(8967), 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_LBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -518908,21 +517987,29 @@ 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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [75283] = 3, + [74773] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 19, + ACTIONS(10923), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10925), 1, + anon_sym_AMP_AMP, + ACTIONS(10927), 1, + anon_sym_or, + ACTIONS(10929), 1, + anon_sym_and, + ACTIONS(9293), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518937,18 +518024,14 @@ 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(9447), 35, + ACTIONS(9295), 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, @@ -518978,18 +518061,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [75345] = 7, + [74843] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(3034), 1, + anon_sym_LBRACE, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10888), 1, anon_sym_LBRACK, - STATE(1979), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10186), 19, + STATE(5068), 1, + sym_new_declarator, + STATE(5924), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9234), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -518999,26 +518085,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_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10184), 31, + ACTIONS(9236), 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, @@ -519026,7 +518110,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, @@ -519041,10 +518124,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75415] = 3, + anon_sym_GT2, + [74915] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + sym_identifier, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5142), 1, + sym_primitive_type, + ACTIONS(5144), 1, + anon_sym_enum, + ACTIONS(5146), 1, + anon_sym_class, + ACTIONS(5148), 1, + anon_sym_struct, + ACTIONS(5150), 1, + anon_sym_union, + ACTIONS(5152), 1, + anon_sym_typename, + ACTIONS(5154), 1, + sym_auto, + ACTIONS(5156), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4393), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4989), 1, + sym_splice_specifier, + STATE(5341), 1, + sym_template_type, + STATE(5354), 1, + sym__splice_specialization_specifier, + STATE(5691), 1, + sym_qualified_type_identifier, + STATE(6056), 1, + sym_decltype_auto, + STATE(6475), 1, + sym_type_specifier, + STATE(8329), 1, + sym_type_descriptor, + STATE(8753), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5129), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5990), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(5140), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6059), 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, + [75031] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7117), 1, + anon_sym_const, + ACTIONS(7126), 1, + anon_sym_AMP, + ACTIONS(9487), 1, + anon_sym_LT, + STATE(4275), 1, + sym_template_argument_list, + ACTIONS(7119), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(7124), 9, + 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_GT_GT, + anon_sym_DOT, + ACTIONS(7122), 15, + anon_sym___extension__, + 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, + ACTIONS(7129), 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, + [75105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 13, + ACTIONS(7600), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -519058,7 +518293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7755), 41, + ACTIONS(7598), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -519100,72 +518335,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [75477] = 24, + [75167] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6649), 1, + anon_sym_const, + ACTIONS(6660), 1, + anon_sym_AMP, + ACTIONS(6653), 5, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10939), 1, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(10941), 1, + anon_sym_LBRACK, + ACTIONS(6658), 8, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(10945), 1, - anon_sym_AMP, - ACTIONS(10951), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6656), 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(6651), 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, - ACTIONS(10957), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(10961), 1, + anon_sym_or, anon_sym_and, - ACTIONS(10963), 1, anon_sym_bitor, - ACTIONS(10965), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10935), 2, + [75237] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10884), 1, + anon_sym_LBRACK, + STATE(5645), 1, + sym_parameter_list, + STATE(5106), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9451), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 3, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10947), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10949), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9453), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519180,10 +518454,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [75581] = 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, + [75309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7777), 13, + ACTIONS(7592), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -519197,7 +518479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7775), 41, + ACTIONS(7590), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -519239,80 +518521,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [75643] = 30, + [75371] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6469), 1, anon_sym_LBRACK, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(10348), 1, + ACTIONS(10366), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10368), 1, anon_sym_AMP, - ACTIONS(10354), 1, + ACTIONS(10372), 1, anon_sym___attribute__, - ACTIONS(10357), 1, + ACTIONS(10375), 1, anon_sym___attribute, - ACTIONS(10363), 1, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, + ACTIONS(10931), 1, anon_sym_DASH_GT, - ACTIONS(10979), 1, + ACTIONS(10933), 1, anon_sym_requires, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(7505), 1, + STATE(7460), 1, sym__function_attributes_start, - STATE(7615), 1, + STATE(7619), 1, sym_ref_qualifier, - STATE(8396), 1, + STATE(8424), 1, sym_trailing_return_type, - STATE(8470), 1, + STATE(8478), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10821), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(6144), 2, + STATE(6141), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6360), 2, + STATE(6361), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8522), 2, + STATE(8505), 2, sym__function_postfix, sym_requires_clause, - STATE(7765), 3, + STATE(7749), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(6481), 5, + ACTIONS(6471), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -519325,18 +518607,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [75759] = 7, + [75487] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(10913), 1, anon_sym_LBRACK, - STATE(1979), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10190), 19, + STATE(5215), 1, + sym_new_declarator, + STATE(5759), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9230), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519350,13 +518635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10188), 31, + ACTIONS(9232), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -519364,8 +518648,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___attribute__, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519388,18 +518671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [75829] = 7, + [75559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1979), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10194), 19, + ACTIONS(10941), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10939), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(10937), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519413,23 +518694,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_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(10192), 31, - anon_sym_DOT_DOT_DOT, + anon_sym_DASH_GT, + ACTIONS(10935), 31, 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, @@ -519443,55 +518721,91 @@ 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_DASH_GT, - [75899] = 3, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [75625] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(7569), 41, - anon_sym_AMP, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(10930), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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___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, @@ -519504,27 +518818,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_template, - anon_sym_operator, - [75961] = 8, + [75741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(10984), 1, - anon_sym_LBRACK, - STATE(5173), 1, - sym_new_declarator, - STATE(5754), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 20, + ACTIONS(5591), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519539,19 +518836,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9228), 28, + ACTIONS(5593), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519573,19 +518873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [76033] = 7, + anon_sym_requires, + [75803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1979), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10174), 19, + ACTIONS(6586), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -519599,22 +518894,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_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10172), 31, + ACTIONS(6588), 35, 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -519637,133 +518936,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [76103] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(10320), 1, - anon_sym_LT, - STATE(5334), 1, - sym_template_argument_list, - ACTIONS(7085), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7090), 44, - 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_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_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [76171] = 30, + [75865] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10986), 1, - sym_identifier, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(10992), 1, - sym_primitive_type, - ACTIONS(10994), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(10996), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(10998), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(11000), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(11002), 1, - anon_sym_typename, - ACTIONS(11004), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(11006), 1, + ACTIONS(2280), 1, anon_sym_decltype, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(6426), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6581), 1, - sym_splice_specifier, - STATE(6741), 1, - sym_type_specifier, - STATE(7121), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(7225), 1, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, sym_template_type, - STATE(7440), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7625), 1, - sym_decltype_auto, - STATE(8509), 1, + STATE(6588), 1, + sym_type_specifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(8548), 1, sym_type_descriptor, - STATE(8700), 1, + STATE(8754), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5179), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7592), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(5197), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10990), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(7655), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -519785,167 +519022,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [76287] = 7, + [75981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(7763), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1979), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10198), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7761), 41, 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(10196), 31, + anon_sym___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_template, + anon_sym_operator, + [76043] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7717), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7715), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, 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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76357] = 7, + 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_template, + anon_sym_operator, + [76105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(7652), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10176), 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, + anon_sym_LBRACK_COLON, + ACTIONS(7650), 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_LBRACK, - STATE(1979), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10202), 19, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [76167] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4050), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(4429), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4435), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9107), 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_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(10200), 31, + sym_literal_suffix, + ACTIONS(9109), 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___attribute__, + anon_sym_RBRACK_RBRACK, + 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, - [76427] = 3, + anon_sym_COLON_RBRACK, + [76235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7303), 47, + ACTIONS(7749), 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, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7747), 41, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -519959,56 +519316,65 @@ 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, + sym_identifier, anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [76489] = 7, + anon_sym_template, + anon_sym_operator, + [76297] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(10176), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(1979), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10206), 19, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10943), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9621), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(10204), 31, + ACTIONS(9623), 22, 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, @@ -520025,26 +519391,12 @@ 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, - [76559] = 7, + [76387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10176), 1, - anon_sym_LBRACK, - STATE(1979), 1, - sym_parameter_list, - STATE(3611), 1, - sym__function_declarator_seq, - ACTIONS(10210), 19, + ACTIONS(9377), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520058,22 +519410,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_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10208), 31, + anon_sym_DASH_GT, + ACTIONS(9379), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -520095,89 +519448,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [76629] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [76449] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(6469), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10941), 1, - anon_sym_PIPE, - ACTIONS(10945), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, anon_sym_AMP, - ACTIONS(10951), 1, - anon_sym_GT_EQ, - ACTIONS(10957), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10963), 1, - anon_sym_bitor, - ACTIONS(10965), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10947), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10949), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 4, + ACTIONS(10372), 1, + anon_sym___attribute__, + ACTIONS(10375), 1, anon_sym___attribute, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(10957), 1, + anon_sym_requires, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7468), 1, + sym__function_attributes_start, + STATE(7629), 1, + sym_ref_qualifier, + STATE(8412), 1, + sym_trailing_return_type, + STATE(8482), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10848), 2, + anon_sym_final, + anon_sym_override, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7760), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(9709), 20, + anon_sym_GT2, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [76565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7674), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7672), 41, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, 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, - [76729] = 3, + 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_template, + anon_sym_operator, + [76627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 19, + ACTIONS(9438), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520197,7 +519620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9417), 35, + ACTIONS(9440), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -520233,13 +519656,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [76791] = 4, + [76689] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 20, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(10759), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [76805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6602), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520259,18 +519765,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6596), 32, + ACTIONS(6604), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -520292,11 +519800,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, - [76855] = 3, + anon_sym_DASH_GT, + [76867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 13, + ACTIONS(7644), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -520310,7 +519818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7779), 41, + ACTIONS(7642), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -520352,10 +519860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [76917] = 3, + [76929] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 19, + ACTIONS(6792), 1, + anon_sym_LBRACK_LBRACK, + STATE(4764), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9035), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520369,13 +519882,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(8907), 35, + ACTIONS(9037), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -520385,7 +519896,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, @@ -520397,11 +519907,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, @@ -520411,96 +519921,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [76979] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3732), 1, - anon_sym_enum, - ACTIONS(3734), 1, - anon_sym_class, - ACTIONS(3736), 1, - anon_sym_struct, - ACTIONS(3738), 1, - anon_sym_union, - ACTIONS(3742), 1, - sym_auto, - ACTIONS(3744), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11008), 1, - sym_identifier, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(11012), 1, - sym_primitive_type, - ACTIONS(11014), 1, - anon_sym_typename, - STATE(2180), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2292), 1, - sym_type_specifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2622), 1, - sym_template_type, - STATE(2698), 1, - sym_qualified_type_identifier, - STATE(2997), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(5020), 1, - sym_type_descriptor, - STATE(8682), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2942), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5188), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3728), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3067), 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, - [77095] = 3, + [76995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7665), 13, + ACTIONS(7656), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -520514,7 +519938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7663), 41, + ACTIONS(7654), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -520556,40 +519980,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [77157] = 3, + [77057] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 19, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10943), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9621), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8994), 35, + ACTIONS(9623), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -520604,78 +520054,44 @@ 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [77219] = 20, + [77151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10945), 1, - anon_sym_AMP, - ACTIONS(10951), 1, - anon_sym_GT_EQ, - ACTIONS(10957), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10935), 2, + ACTIONS(6596), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10947), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10949), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 5, - anon_sym_PIPE, - anon_sym___attribute, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9709), 21, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(6598), 35, 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___attribute__, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -520690,17 +520106,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, - [77315] = 5, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [77213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(11016), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(5170), 20, - anon_sym_BANG, + ACTIONS(6610), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -520714,20 +520131,27 @@ 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_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(5168), 31, + anon_sym_DOT, + ACTIONS(6612), 35, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_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_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -520741,51 +520165,215 @@ 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, - [77381] = 19, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [77275] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4167), 1, + anon_sym_enum, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10964), 1, + sym_identifier, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(10968), 1, + sym_primitive_type, + ACTIONS(10970), 1, + anon_sym_typename, + STATE(2070), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2120), 1, + sym_type_specifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3616), 1, + sym_type_descriptor, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5150), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4163), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 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, + [77391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7777), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7775), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [77453] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10945), 1, - anon_sym_AMP, + ACTIONS(10461), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(10951), 1, anon_sym_GT_EQ, - ACTIONS(10957), 1, + ACTIONS(10955), 1, anon_sym_LT_EQ_GT, - ACTIONS(10965), 1, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(10972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10974), 1, + anon_sym_AMP_AMP, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10980), 1, + anon_sym_QMARK, + ACTIONS(10982), 1, + anon_sym_or, + ACTIONS(10984), 1, + anon_sym_and, + ACTIONS(10986), 1, + anon_sym_bitor, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10935), 2, + ACTIONS(9889), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10943), 2, anon_sym_DASH, anon_sym_PLUS, ACTIONS(10953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10917), 3, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -520797,22 +520385,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym___attribute, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(9891), 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, @@ -520826,11 +520402,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_bitor, - [77475] = 3, + [77565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 13, + ACTIONS(7721), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -520844,7 +520419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7585), 41, + ACTIONS(7719), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -520886,126 +520461,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [77537] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(10730), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [77653] = 3, + [77627] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 19, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10943), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9621), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9421), 35, + ACTIONS(9623), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -521020,32 +520530,81 @@ 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, + [77715] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7177), 2, anon_sym_final, anon_sym_override, + STATE(4905), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9121), 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_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, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [77715] = 8, + ACTIONS(9123), 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_RBRACK_RBRACK, + 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, + anon_sym_COLON_RBRACK, + [77781] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(2950), 1, anon_sym_LBRACE, - ACTIONS(10900), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10902), 1, - anon_sym_LBRACK, - STATE(5233), 1, - sym_new_declarator, - STATE(5779), 2, + STATE(5595), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9248), 18, + ACTIONS(9305), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521064,15 +520623,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9250), 30, + anon_sym_DASH_GT, + ACTIONS(9307), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -521094,11 +520655,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, - [77787] = 3, + anon_sym_DASH_GT_STAR, + [77849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7475), 13, + ACTIONS(7616), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -521112,7 +520673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7473), 41, + ACTIONS(7614), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -521154,10 +520715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [77849] = 3, + [77911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 19, + ACTIONS(9011), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521177,7 +520738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9335), 35, + ACTIONS(9013), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -521213,71 +520774,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [77911] = 30, + [77973] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(10647), 1, + STATE(10780), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -521299,15 +520860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [78027] = 5, + [78089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6768), 1, - anon_sym_LBRACK_LBRACK, - STATE(4769), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 17, + ACTIONS(8953), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521321,11 +520877,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(9073), 34, + ACTIONS(8955), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -521335,6 +520893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -521346,11 +520905,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, @@ -521360,63 +520919,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [78093] = 17, + [78151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(6614), 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, - ACTIONS(9646), 1, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(10951), 1, + ACTIONS(6616), 35, + 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, - ACTIONS(10957), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + 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, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10935), 2, + [78213] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10925), 1, + anon_sym_AMP_AMP, + ACTIONS(10929), 1, + anon_sym_and, + ACTIONS(9329), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10947), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10949), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 8, + 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(9331), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [78279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9352), 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___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(9709), 22, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9354), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -521431,73 +521087,82 @@ 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, - [78183] = 30, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [78341] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11126), 1, + STATE(11503), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -521519,131 +521184,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [78299] = 4, + [78457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7225), 12, + ACTIONS(9356), 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(9358), 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_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [78363] = 30, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + 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_requires, + anon_sym_DASH_GT_STAR, + [78519] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(10747), 1, + STATE(10852), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -521665,69 +521329,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [78479] = 3, + [78635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 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(8923), 35, + ACTIONS(7682), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_TILDE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - 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_requires, - anon_sym_DASH_GT_STAR, - [78541] = 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7680), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [78697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 19, + ACTIONS(9015), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -521747,7 +521411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8948), 35, + ACTIONS(9017), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -521783,71 +521447,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [78603] = 30, + [78759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(7725), 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_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(7723), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(11024), 1, - sym_primitive_type, - ACTIONS(11026), 1, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [78821] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, anon_sym_typename, - STATE(3028), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, - sym_splice_specifier, - STATE(7606), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(3661), 1, sym_template_type, - STATE(7707), 1, - sym_type_specifier, - STATE(7716), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(8162), 1, - sym__type_definition_type, - STATE(8691), 1, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8329), 1, + sym_type_descriptor, + STATE(8754), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -521869,71 +521592,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [78719] = 30, + [78937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(7729), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7727), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [78999] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11399), 1, + STATE(11178), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -521955,10 +521737,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [78835] = 3, + [79115] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + ACTIONS(10972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10974), 1, + anon_sym_AMP_AMP, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10980), 1, + anon_sym_QMARK, + ACTIONS(10982), 1, + anon_sym_or, + ACTIONS(10984), 1, + anon_sym_and, + ACTIONS(10986), 1, + anon_sym_bitor, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10459), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10463), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [79227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 13, + ACTIONS(7551), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -521972,7 +521838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7595), 41, + ACTIONS(7549), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -522014,10 +521880,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [78897] = 3, + [79289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 21, + ACTIONS(2950), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + STATE(5639), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9403), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522027,27 +521900,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5591), 33, + anon_sym_DASH_GT, + ACTIONS(9405), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522055,6 +521927,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, @@ -522068,15 +521941,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DASH_GT_STAR, + [79357] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10562), 1, + anon_sym_LT, + STATE(4286), 1, + sym_template_argument_list, + ACTIONS(6566), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6559), 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_GT2, - anon_sym_requires, - [78959] = 3, + anon_sym_template, + anon_sym_operator, + [79425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7633), 13, + ACTIONS(7558), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -522090,7 +522021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7631), 41, + ACTIONS(7556), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -522132,82 +522063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [79021] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10951), 1, - anon_sym_GT_EQ, - ACTIONS(10957), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10949), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 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(9709), 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, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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, - [79109] = 3, + [79487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 19, + ACTIONS(8929), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522227,7 +522086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7966), 35, + ACTIONS(8931), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -522263,71 +522122,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [79171] = 30, + [79549] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10901), 1, + anon_sym_enum, + ACTIONS(10903), 1, + anon_sym_class, + ACTIONS(10905), 1, + anon_sym_struct, + ACTIONS(10907), 1, + anon_sym_union, + ACTIONS(10909), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7260), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7593), 1, + STATE(7579), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7663), 1, + sym_template_type, + STATE(7711), 1, sym_type_specifier, - STATE(8362), 1, - sym_type_descriptor, - STATE(8711), 1, + STATE(7722), 1, + sym_qualified_type_identifier, + STATE(8158), 1, + sym__type_definition_type, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5211), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -522349,80 +522208,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [79287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7609), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7607), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [79349] = 8, + [79665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(10984), 1, - anon_sym_LBRACK, - STATE(5197), 1, - sym_new_declarator, - STATE(5813), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9248), 20, + ACTIONS(8933), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522432,24 +522221,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, - ACTIONS(9250), 28, + anon_sym_DASH_GT, + ACTIONS(8935), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522457,6 +522249,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, @@ -522470,138 +522263,52 @@ 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, - [79421] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [79727] = 8, ACTIONS(3), 1, sym_comment, - STATE(4105), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(3889), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(3899), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(9116), 18, - aux_sym_preproc_elif_token1, + ACTIONS(6679), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10988), 1, + anon_sym_LBRACK, + STATE(5703), 1, + sym_parameter_list, + STATE(5244), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9389), 20, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(9118), 24, + ACTIONS(9391), 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, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [79489] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10937), 1, anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, anon_sym_AMP_AMP, - ACTIONS(10941), 1, - anon_sym_PIPE, - ACTIONS(10945), 1, - anon_sym_AMP, - ACTIONS(10951), 1, - anon_sym_GT_EQ, - ACTIONS(10957), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, - anon_sym_or, - ACTIONS(10961), 1, - anon_sym_and, - ACTIONS(10963), 1, - anon_sym_bitor, - ACTIONS(10965), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10435), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10947), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10949), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10437), 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, @@ -522609,78 +522316,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [79597] = 30, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [79799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(7725), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7723), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [79861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10312), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10310), 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, - ACTIONS(2250), 1, anon_sym_class, - ACTIONS(2252), 1, anon_sym_struct, - ACTIONS(2254), 1, anon_sym_union, - ACTIONS(2280), 1, + anon_sym_typename, + sym_identifier, sym_auto, - ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(5160), 1, + anon_sym_explicit, anon_sym_template, - ACTIONS(10649), 1, + anon_sym_operator, + [79923] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(5138), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(5142), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(5144), 1, + anon_sym_enum, + ACTIONS(5146), 1, + anon_sym_class, + ACTIONS(5148), 1, + anon_sym_struct, + ACTIONS(5150), 1, + anon_sym_union, + ACTIONS(5152), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(5154), 1, + sym_auto, + ACTIONS(5156), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(4393), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4989), 1, + sym_splice_specifier, + STATE(5341), 1, sym_template_type, - STATE(3747), 1, + STATE(5354), 1, + sym__splice_specialization_specifier, + STATE(5691), 1, sym_qualified_type_identifier, - STATE(7223), 1, + STATE(6056), 1, + sym_decltype_auto, + STATE(6277), 1, sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8362), 1, + STATE(8329), 1, sym_type_descriptor, - STATE(8711), 1, + STATE(8753), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, + STATE(5145), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(5990), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(5140), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(6059), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -522702,10 +522535,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [79713] = 3, + [80039] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + ACTIONS(10972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10974), 1, + anon_sym_AMP_AMP, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10982), 1, + anon_sym_or, + ACTIONS(10984), 1, + anon_sym_and, + ACTIONS(10986), 1, + anon_sym_bitor, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10485), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10487), 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, + [80147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 19, + ACTIONS(8404), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522725,7 +522640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3161), 35, + ACTIONS(8402), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -522761,107 +522676,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [79775] = 30, + [80209] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3807), 1, - anon_sym_enum, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11036), 1, - sym_identifier, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11040), 1, - sym_primitive_type, - ACTIONS(11042), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2076), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2121), 1, - sym_type_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3603), 1, - sym_type_descriptor, - STATE(8763), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5189), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3803), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 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, - [79891] = 8, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + ACTIONS(10972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10974), 1, + anon_sym_AMP_AMP, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10982), 1, + anon_sym_or, + ACTIONS(10984), 1, + anon_sym_and, + ACTIONS(10986), 1, + anon_sym_bitor, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10489), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10491), 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, + [80317] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + ACTIONS(10972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10974), 1, + anon_sym_AMP_AMP, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10982), 1, + anon_sym_or, + ACTIONS(10984), 1, + anon_sym_and, + ACTIONS(10986), 1, + anon_sym_bitor, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9661), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9659), 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, + [80425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(10902), 1, - anon_sym_LBRACK, - STATE(5249), 1, - sym_new_declarator, - STATE(5853), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 18, + ACTIONS(7972), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522880,15 +522862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9258), 30, + anon_sym_DASH_GT, + ACTIONS(7970), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522910,22 +522895,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [79963] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [80487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9304), 1, + ACTIONS(7248), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10969), 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, + anon_sym_LBRACK_COLON, + ACTIONS(7246), 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_LBRACK, - STATE(5585), 1, - sym_parameter_list, - STATE(5055), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9476), 18, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [80549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6606), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -522939,20 +522975,26 @@ 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(9478), 30, + ACTIONS(6608), 35, 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_RBRACK_RBRACK, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -522975,46 +523017,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [80035] = 6, + [80611] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - STATE(5577), 2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + ACTIONS(10972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10974), 1, + anon_sym_AMP_AMP, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10982), 1, + anon_sym_or, + ACTIONS(10984), 1, + anon_sym_and, + ACTIONS(10986), 1, + anon_sym_bitor, + STATE(3849), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 19, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10467), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10943), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 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(9433), 31, + ACTIONS(10469), 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_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -523029,18 +523099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [80103] = 3, + [80719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 13, + ACTIONS(7596), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -523054,7 +523116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7623), 41, + ACTIONS(7594), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -523096,101 +523158,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [80165] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11022), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [80281] = 3, + [80781] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -523199,23 +523192,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___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5591), 35, + ACTIONS(9623), 27, 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_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -523234,78 +523225,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [80859] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [80343] = 30, + ACTIONS(10943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10945), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9621), 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(9623), 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, + [80939] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11221), 1, + STATE(10753), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -523327,40 +523379,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [80459] = 3, + [81055] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 19, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10943), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 11, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9425), 35, + ACTIONS(9623), 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_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -523379,78 +523448,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [80521] = 30, + [81137] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(10758), 1, + STATE(10822), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -523472,80 +523534,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [80637] = 30, + [81253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, + ACTIONS(7698), 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, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11530), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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(7696), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -523558,21 +523587,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [80753] = 8, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [81315] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, + ACTIONS(6679), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10842), 1, + ACTIONS(10818), 1, anon_sym_LPAREN2, - ACTIONS(10907), 1, + ACTIONS(10988), 1, anon_sym_LBRACK, - STATE(5634), 1, + STATE(5703), 1, sym_parameter_list, - STATE(5067), 2, + STATE(5244), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9439), 20, + ACTIONS(9471), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -523593,7 +523628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9441), 28, + ACTIONS(9473), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -523622,71 +523657,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [80825] = 30, + [81387] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11506), 1, + STATE(10879), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -523708,155 +523743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [80941] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10979), 1, - anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7469), 1, - sym__function_attributes_start, - STATE(7652), 1, - sym_ref_qualifier, - STATE(8396), 1, - sym_trailing_return_type, - STATE(8626), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10821), 2, - anon_sym_final, - anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7793), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [81057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7597), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7595), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [81119] = 3, + [81503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 13, + ACTIONS(7737), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -523870,7 +523760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7627), 41, + ACTIONS(7735), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -523912,331 +523802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [81181] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(6583), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8509), 1, - sym_type_descriptor, - STATE(8711), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5231), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [81297] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11724), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [81413] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11034), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [81529] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7085), 1, - anon_sym_const, - ACTIONS(9552), 1, - anon_sym_LT, - STATE(4313), 1, - sym_template_argument_list, - ACTIONS(7094), 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(7090), 15, - anon_sym___extension__, - 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, - ACTIONS(7087), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_COLON_COLON, - 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, - [81599] = 3, + [81565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 13, + ACTIONS(7781), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -524250,7 +523819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7643), 41, + ACTIONS(7779), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -524292,21 +523861,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [81661] = 8, + [81627] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10842), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10907), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(5634), 1, + STATE(1974), 1, sym_parameter_list, - STATE(5067), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9300), 20, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10225), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524316,24 +523882,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(9302), 28, + ACTIONS(10223), 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -524341,6 +523909,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, @@ -524355,48 +523924,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [81733] = 3, + [81697] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7773), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(7771), 41, - anon_sym_AMP, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(10687), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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___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, @@ -524406,80 +524007,74 @@ static const uint16_t ts_small_parse_table[] = { anon_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, - anon_sym_operator, - [81795] = 30, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [81813] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(3232), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(3234), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(3236), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(3238), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(3264), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(3266), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10990), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10994), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10996), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(4143), 1, sym_template_type, - STATE(3747), 1, + STATE(4265), 1, sym_qualified_type_identifier, - STATE(7223), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, + sym_decltype_auto, + STATE(6638), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7082), 1, sym_type_specifier, - STATE(7260), 1, + STATE(7353), 1, sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11396), 1, + STATE(8548), 1, sym_type_descriptor, + STATE(8710), 1, + sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(4361), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5152), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(3228), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4523), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -524501,21 +524096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [81911] = 8, + [81929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10842), 1, - anon_sym_LPAREN2, - ACTIONS(10907), 1, - anon_sym_LBRACK, - STATE(5634), 1, - sym_parameter_list, - STATE(5067), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9476), 20, + ACTIONS(8905), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524525,24 +524109,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, - ACTIONS(9478), 28, + anon_sym_DASH_GT, + ACTIONS(8907), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -524550,6 +524137,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, @@ -524563,49 +524151,84 @@ 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, - [81983] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [81991] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7649), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(7647), 41, - anon_sym_AMP, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(10936), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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___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, @@ -524618,16 +524241,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, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [82045] = 3, + [82107] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 19, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(10913), 1, + anon_sym_LBRACK, + STATE(5179), 1, + sym_new_declarator, + STATE(5748), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9234), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524646,18 +524274,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(7791), 35, + ACTIONS(9236), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -524679,159 +524304,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [82107] = 28, + anon_sym_DASH_GT, + [82179] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6679), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10818), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10988), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, - anon_sym_AMP_AMP, - ACTIONS(10941), 1, - anon_sym_PIPE, - ACTIONS(10945), 1, - anon_sym_AMP, - ACTIONS(10951), 1, - anon_sym_GT_EQ, - ACTIONS(10955), 1, - anon_sym_QMARK, - ACTIONS(10957), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, - anon_sym_or, - ACTIONS(10961), 1, - anon_sym_and, - ACTIONS(10963), 1, - anon_sym_bitor, - ACTIONS(10965), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10489), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, + STATE(5703), 1, + sym_parameter_list, + STATE(5244), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9451), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10947), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10949), 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(10491), 16, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9453), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + 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, - [82219] = 30, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [82251] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11024), 1, + STATE(11203), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [82367] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3232), 1, + anon_sym_enum, + ACTIONS(3234), 1, + anon_sym_class, + ACTIONS(3236), 1, + anon_sym_struct, + ACTIONS(3238), 1, + anon_sym_union, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10990), 1, + sym_identifier, + ACTIONS(10992), 1, + anon_sym_COLON_COLON, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(10996), 1, + anon_sym_typename, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4143), 1, + sym_template_type, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, + sym_decltype_auto, + STATE(6638), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6725), 1, + sym_type_specifier, + STATE(7353), 1, + sym_splice_specifier, + STATE(8548), 1, + sym_type_descriptor, + STATE(8710), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4361), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5154), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(3228), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4523), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -524853,10 +524541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [82335] = 3, + [82483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 19, + ACTIONS(9369), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -524876,7 +524564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8956), 35, + ACTIONS(9371), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -524912,71 +524600,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [82397] = 30, + [82545] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(3206), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(3208), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(3210), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(3236), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(3238), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11046), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(11048), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(11050), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(11052), 1, + ACTIONS(10649), 1, anon_sym_typename, - STATE(3497), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4043), 1, + STATE(3661), 1, sym_template_type, - STATE(4204), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(6642), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7088), 1, - sym_type_specifier, - STATE(7326), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8509), 1, - sym_type_descriptor, - STATE(8745), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, + STATE(10668), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4373), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5190), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3200), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -524998,71 +524686,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [82513] = 30, + [82661] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11140), 1, + STATE(11077), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -525084,80 +524772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [82629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7741), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7739), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [82691] = 8, + [82777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(10984), 1, - anon_sym_LBRACK, - STATE(5218), 1, - sym_new_declarator, - STATE(5896), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 20, + ACTIONS(3157), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -525167,24 +524785,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, - ACTIONS(9258), 28, + anon_sym_DASH_GT, + ACTIONS(3155), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -525192,6 +524813,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, @@ -525205,73 +524827,75 @@ 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, - [82763] = 30, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [82839] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11242), 1, + STATE(11480), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -525293,278 +524917,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [82879] = 30, + [82955] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(6708), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7471), 1, - sym__function_attributes_start, - STATE(7654), 1, - sym_ref_qualifier, - STATE(8440), 1, - sym_trailing_return_type, - STATE(8661), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, + ACTIONS(9395), 1, + anon_sym_LBRACK, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + STATE(3233), 1, + sym_parameter_list, + STATE(5055), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7799), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [82995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7745), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(9389), 18, + 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7743), 41, + 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___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_template, - anon_sym_operator, - [83057] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10647), 1, + anon_sym_GT, + anon_sym_LT_EQ, anon_sym_LT, - STATE(4318), 1, - sym_template_argument_list, - ACTIONS(6572), 12, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9391), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6565), 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, - [83125] = 30, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [83027] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(10697), 1, + STATE(11120), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -525586,130 +525067,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7653), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7651), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [83303] = 30, + [83143] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(10763), 1, + STATE(11265), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -525731,17 +525153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83419] = 5, + [83259] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11054), 2, - anon_sym_final, - anon_sym_override, - STATE(4889), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9143), 21, - aux_sym_preproc_elif_token1, + ACTIONS(7117), 1, + anon_sym_const, + ACTIONS(8927), 1, + anon_sym_LT, + STATE(3740), 1, + sym_template_argument_list, + ACTIONS(7126), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -525749,27 +525170,26 @@ 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, - sym_identifier, - anon_sym_requires, - ACTIONS(9145), 29, + ACTIONS(7122), 15, + anon_sym___extension__, + 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, + ACTIONS(7119), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -525781,141 +525201,86 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_COLON_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, - anon_sym_COLON_RBRACK, - [83485] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 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(8422), 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [83547] = 30, + anon_sym_DASH_GT, + [83329] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(3206), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(3208), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(3210), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(3236), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(3238), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11046), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(11048), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(11050), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(11052), 1, + ACTIONS(10649), 1, anon_sym_typename, - STATE(3497), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4043), 1, + STATE(3661), 1, sym_template_type, - STATE(4204), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(6642), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6835), 1, - sym_type_specifier, - STATE(7326), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8509), 1, - sym_type_descriptor, - STATE(8745), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, + STATE(11522), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4373), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5191), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3200), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -525937,10 +525302,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [83663] = 3, + [83445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 19, + ACTIONS(6630), 1, + anon_sym_LBRACK_LBRACK, + STATE(4463), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9566), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -525954,13 +525324,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(8998), 35, + ACTIONS(9568), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -525970,7 +525341,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, @@ -525992,100 +525362,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [83725] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(10830), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [83841] = 3, + [83511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 19, + ACTIONS(6590), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -526099,23 +525380,26 @@ 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(9363), 35, + ACTIONS(6592), 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_LBRACK, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -526137,19 +525421,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [83903] = 5, + anon_sym_DASH_GT, + [83573] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6768), 1, + ACTIONS(6679), 1, anon_sym_LBRACK_LBRACK, - STATE(4769), 2, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10988), 1, + anon_sym_LBRACK, + STATE(5703), 1, + sym_parameter_list, + STATE(5244), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 17, + ACTIONS(9431), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -526159,24 +525446,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, - anon_sym_DASH_GT, - ACTIONS(8839), 34, + ACTIONS(9433), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -526184,89 +525471,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [83969] = 30, + anon_sym_DASH_GT, + anon_sym_GT2, + [83645] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(6746), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8509), 1, - sym_type_descriptor, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, + STATE(10806), 1, + sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5239), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -526288,157 +525572,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84085] = 30, + [83761] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5144), 1, - sym_primitive_type, - ACTIONS(5146), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(5148), 1, - anon_sym_class, - ACTIONS(5150), 1, - anon_sym_struct, - ACTIONS(5152), 1, - anon_sym_union, - ACTIONS(5154), 1, - anon_sym_typename, - ACTIONS(5156), 1, - sym_auto, - ACTIONS(5158), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4387), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4802), 1, - sym_splice_specifier, - STATE(5365), 1, - sym_template_type, - STATE(5472), 1, - sym__splice_specialization_specifier, - STATE(5574), 1, - sym_qualified_type_identifier, - STATE(6031), 1, - sym_decltype_auto, - STATE(6205), 1, - sym_type_specifier, - STATE(8362), 1, - sym_type_descriptor, - STATE(8757), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5195), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5973), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(5142), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6050), 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, - [84201] = 30, - ACTIONS(3), 1, - sym_comment, ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11033), 1, + STATE(10868), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -526460,157 +525658,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84317] = 30, + [83877] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4397), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(4399), 1, - anon_sym_class, - ACTIONS(4401), 1, - anon_sym_struct, - ACTIONS(4403), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11057), 1, - sym_identifier, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(11061), 1, - anon_sym_typename, - STATE(3490), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3704), 1, - sym_type_specifier, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(6695), 1, - sym_type_descriptor, - STATE(8676), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4373), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5196), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4395), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4430), 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, - [84433] = 30, - ACTIONS(3), 1, - sym_comment, ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11120), 1, + STATE(10952), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -526632,71 +525744,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84549] = 30, + [83993] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1974), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10264), 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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10266), 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___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, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [84063] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, + STATE(6750), 1, sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11170), 1, + STATE(8548), 1, sym_type_descriptor, + STATE(8754), 1, + sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5204), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -526718,130 +525893,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7749), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7747), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [84727] = 30, + [84179] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11410), 1, + STATE(11286), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -526863,71 +525979,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84843] = 30, + [84295] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11512), 1, + STATE(11362), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -526949,16 +526065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [84959] = 5, + [84411] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11069), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(11067), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(11065), 20, - anon_sym_BANG, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1974), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -526972,20 +526090,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_EQ, - anon_sym_not, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(11063), 31, + anon_sym_DOT, + ACTIONS(10176), 31, + 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, @@ -526999,229 +526120,144 @@ 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, - [85025] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [84481] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7085), 1, - anon_sym_const, - ACTIONS(8883), 1, - anon_sym_LT, - STATE(3733), 1, - sym_template_argument_list, - ACTIONS(7094), 8, + ACTIONS(6708), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9395), 1, + anon_sym_LBRACK, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + STATE(3233), 1, + sym_parameter_list, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9471), 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(7090), 15, - anon_sym___extension__, - 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, - ACTIONS(7087), 28, + ACTIONS(9473), 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_COLON_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [85095] = 30, + [84553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 1, - anon_sym_template, + ACTIONS(2950), 1, + anon_sym_LBRACE, ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10986), 1, - sym_identifier, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(10992), 1, - sym_primitive_type, - ACTIONS(10994), 1, - anon_sym_enum, - ACTIONS(10996), 1, - anon_sym_class, - ACTIONS(10998), 1, - anon_sym_struct, - ACTIONS(11000), 1, - anon_sym_union, - ACTIONS(11002), 1, - anon_sym_typename, - ACTIONS(11004), 1, - sym_auto, - ACTIONS(11006), 1, - anon_sym_decltype, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(6426), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6549), 1, - sym_type_specifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, - sym__splice_specialization_specifier, - STATE(7225), 1, - sym_template_type, - STATE(7440), 1, - sym_qualified_type_identifier, - STATE(7625), 1, - sym_decltype_auto, - STATE(8509), 1, - sym_type_descriptor, - STATE(8700), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5198), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7592), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10990), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(7655), 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, - [85211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7669), 13, + anon_sym_LPAREN2, + STATE(5650), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9316), 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(9318), 31, 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, - anon_sym_LBRACK_COLON, - ACTIONS(7667), 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [85273] = 3, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [84621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 19, + ACTIONS(9475), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527241,7 +526277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9367), 35, + ACTIONS(9477), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -527277,15 +526313,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [85335] = 5, + [84683] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6650), 1, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10945), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9621), 11, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 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_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, + anon_sym_not_eq, + [84767] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6792), 1, anon_sym_LBRACK_LBRACK, - STATE(4453), 2, + STATE(4764), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9517), 20, + ACTIONS(8870), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527301,12 +526407,9 @@ static const uint16_t ts_small_parse_table[] = { 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(9519), 31, + ACTIONS(8872), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -527327,21 +526430,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [85401] = 3, + [84833] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 19, + ACTIONS(5164), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(10998), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(5134), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527356,23 +526468,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(9371), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(5132), 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_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -527386,166 +526494,167 @@ 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_final, - anon_sym_override, - anon_sym_requires, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [85463] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [84899] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7661), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9182), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + ACTIONS(10972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10974), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10982), 1, + anon_sym_or, + ACTIONS(10984), 1, + anon_sym_and, + ACTIONS(10986), 1, + anon_sym_bitor, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10552), 2, + anon_sym___attribute, anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7659), 41, - anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10554), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, 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_template, - anon_sym_operator, - [85525] = 30, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [85007] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4062), 1, - anon_sym_enum, - ACTIONS(4064), 1, - anon_sym_class, - ACTIONS(4066), 1, - anon_sym_struct, - ACTIONS(4068), 1, - anon_sym_union, - ACTIONS(4072), 1, - sym_auto, - ACTIONS(4074), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11071), 1, - sym_identifier, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(11075), 1, - sym_primitive_type, - ACTIONS(11077), 1, - anon_sym_typename, - STATE(2356), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2391), 1, - sym_type_specifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, - sym__splice_specialization_specifier, - STATE(2933), 1, - sym_template_type, - STATE(3031), 1, - sym_qualified_type_identifier, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3527), 1, - sym_decltype_auto, - STATE(5717), 1, - sym_type_descriptor, - STATE(8686), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3447), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5199), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4058), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3528), 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, - [85641] = 3, + ACTIONS(3034), 1, + anon_sym_LBRACE, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(10888), 1, + anon_sym_LBRACK, + STATE(5116), 1, + sym_new_declarator, + STATE(5808), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9215), 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(9217), 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, + [85079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 19, + ACTIONS(9479), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527565,7 +526674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9375), 35, + ACTIONS(9481), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -527601,96 +526710,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [85703] = 30, + [85141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(4314), 1, - anon_sym_enum, - ACTIONS(4316), 1, - anon_sym_class, - ACTIONS(4318), 1, - anon_sym_struct, - ACTIONS(4320), 1, - anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(11000), 2, + anon_sym_final, + anon_sym_override, + STATE(4905), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9129), 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_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, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11085), 1, - anon_sym_typename, - STATE(3488), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3725), 1, - sym_type_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3819), 1, - sym_qualified_type_identifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(6615), 1, - sym_type_descriptor, - STATE(8675), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3967), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5200), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4310), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4064), 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, - [85819] = 3, + anon_sym_requires, + ACTIONS(9131), 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_RBRACK_RBRACK, + 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, + anon_sym_COLON_RBRACK, + [85207] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 19, + ACTIONS(7122), 1, + anon_sym_LBRACE, + ACTIONS(7405), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7119), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7124), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527701,7 +526794,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, @@ -527710,11 +526802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9013), 35, + ACTIONS(7129), 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, @@ -527742,161 +526833,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [85881] = 30, + [85277] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4427), 1, + ACTIONS(5130), 1, + sym_identifier, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5142), 1, + sym_primitive_type, + ACTIONS(5144), 1, anon_sym_enum, - ACTIONS(4429), 1, + ACTIONS(5146), 1, anon_sym_class, - ACTIONS(4431), 1, + ACTIONS(5148), 1, anon_sym_struct, - ACTIONS(4433), 1, + ACTIONS(5150), 1, anon_sym_union, - ACTIONS(4439), 1, + ACTIONS(5152), 1, + anon_sym_typename, + ACTIONS(5154), 1, sym_auto, - ACTIONS(4441), 1, + ACTIONS(5156), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(11091), 1, - sym_primitive_type, - ACTIONS(11093), 1, - anon_sym_typename, - STATE(2283), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4393), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2362), 1, - sym_type_specifier, - STATE(2638), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(2696), 1, - sym__splice_specialization_specifier, - STATE(2701), 1, + STATE(5341), 1, sym_template_type, - STATE(2781), 1, + STATE(5354), 1, + sym__splice_specialization_specifier, + STATE(5691), 1, sym_qualified_type_identifier, - STATE(3099), 1, + STATE(6056), 1, sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(5221), 1, + STATE(6240), 1, + sym_type_specifier, + STATE(8329), 1, sym_type_descriptor, - STATE(8687), 1, + STATE(8753), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2984), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5203), 2, + STATE(5158), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4423), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3123), 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, - [85997] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, - sym_identifier, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(11024), 1, - sym_primitive_type, - ACTIONS(11026), 1, - anon_sym_enum, - ACTIONS(11028), 1, - anon_sym_class, - ACTIONS(11030), 1, - anon_sym_struct, - ACTIONS(11032), 1, - anon_sym_union, - ACTIONS(11034), 1, - anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(7481), 1, - sym_splice_specifier, - STATE(7606), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, - sym_template_type, - STATE(7707), 1, - sym_type_specifier, - STATE(7716), 1, - sym_qualified_type_identifier, - STATE(8239), 1, - sym__type_definition_type, - STATE(8691), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, + STATE(5990), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(5140), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(6059), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -527918,77 +526920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [86113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10272), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(10270), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [86175] = 7, + [85393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6572), 1, - anon_sym_LBRACE, - ACTIONS(8830), 1, - anon_sym_LT, - STATE(5135), 1, - sym_template_argument_list, - ACTIONS(6574), 18, + ACTIONS(9483), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -527999,6 +526934,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, @@ -528007,7 +526943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(6567), 32, + ACTIONS(9485), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -528039,82 +526975,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [86245] = 30, + [85455] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3837), 1, - anon_sym_enum, - ACTIONS(3839), 1, - anon_sym_class, - ACTIONS(3841), 1, - anon_sym_struct, - ACTIONS(3843), 1, - anon_sym_union, - ACTIONS(3849), 1, - sym_auto, - ACTIONS(3851), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11101), 1, - anon_sym_typename, - STATE(2263), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2332), 1, - sym_type_specifier, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2712), 1, - sym_template_type, - STATE(2843), 1, - sym_qualified_type_identifier, - STATE(3166), 1, - sym_decltype_auto, - STATE(3497), 1, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(4335), 1, sym_alignas_qualifier, - STATE(5079), 1, - sym_type_descriptor, - STATE(8702), 1, - sym__scope_resolution, - ACTIONS(71), 2, + STATE(7465), 1, + sym__function_attributes_start, + STATE(7630), 1, + sym_ref_qualifier, + STATE(8424), 1, + sym_trailing_return_type, + STATE(8625), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3053), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5204), 2, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3833), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3167), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7775), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10370), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -528126,80 +527065,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [86361] = 30, + [85571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, - sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10166), 7, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_COLON_COLON, - ACTIONS(11024), 1, - sym_primitive_type, - ACTIONS(11026), 1, - anon_sym_enum, - ACTIONS(11028), 1, - anon_sym_class, - ACTIONS(11030), 1, - anon_sym_struct, - ACTIONS(11032), 1, - anon_sym_union, - ACTIONS(11034), 1, - anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(7481), 1, - sym_splice_specifier, - STATE(7606), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, - sym_template_type, - STATE(7707), 1, - sym_type_specifier, - STATE(7716), 1, - sym_qualified_type_identifier, - STATE(8175), 1, - sym__type_definition_type, - STATE(8691), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5232), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(11022), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(10164), 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, - STATE(3100), 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -528212,243 +527110,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [86477] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, - sym_identifier, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(11024), 1, + anon_sym_alignas, + anon_sym__Alignas, sym_primitive_type, - ACTIONS(11026), 1, anon_sym_enum, - ACTIONS(11028), 1, anon_sym_class, - ACTIONS(11030), 1, anon_sym_struct, - ACTIONS(11032), 1, anon_sym_union, - ACTIONS(11034), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(7481), 1, - sym_splice_specifier, - STATE(7606), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, - sym_template_type, - STATE(7707), 1, - sym_type_specifier, - STATE(7716), 1, - sym_qualified_type_identifier, - STATE(8165), 1, - sym__type_definition_type, - STATE(8691), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5232), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(11022), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [86593] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, + sym_identifier, sym_auto, - ACTIONS(2282), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3704), 1, - anon_sym_enum, - ACTIONS(3706), 1, - anon_sym_class, - ACTIONS(3708), 1, - anon_sym_struct, - ACTIONS(3710), 1, - anon_sym_union, - ACTIONS(5160), 1, + anon_sym_explicit, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, - sym_identifier, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(11107), 1, - anon_sym_typename, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3541), 1, - sym_type_specifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(5430), 1, - sym_type_descriptor, - STATE(8738), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5206), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [86709] = 30, + anon_sym_operator, + [85633] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(3871), 1, + ACTIONS(3832), 1, anon_sym_enum, - ACTIONS(3873), 1, + ACTIONS(3834), 1, anon_sym_class, - ACTIONS(3875), 1, + ACTIONS(3836), 1, anon_sym_struct, - ACTIONS(3877), 1, + ACTIONS(3838), 1, anon_sym_union, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11083), 1, + ACTIONS(10994), 1, sym_primitive_type, - ACTIONS(11109), 1, + ACTIONS(11005), 1, sym_identifier, - ACTIONS(11111), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(11113), 1, + ACTIONS(11009), 1, anon_sym_typename, - STATE(2941), 1, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3062), 1, + STATE(3741), 1, sym_type_specifier, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3759), 1, + STATE(4143), 1, sym_template_type, - STATE(3819), 1, + STATE(4219), 1, + sym_splice_specifier, + STATE(4265), 1, sym_qualified_type_identifier, - STATE(4119), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, sym_decltype_auto, - STATE(5430), 1, + STATE(6704), 1, sym_type_descriptor, - STATE(8707), 1, + STATE(8722), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3967), 2, + STATE(4361), 2, sym_decltype, sym_splice_type_specifier, - STATE(5207), 2, + STATE(5160), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3867), 4, + ACTIONS(3830), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(4523), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -528470,75 +527210,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [86825] = 9, + [85749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(8569), 1, - anon_sym_LPAREN2, - STATE(4225), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(5537), 1, - sym_argument_list, - STATE(6093), 1, - sym_initializer_list, - ACTIONS(10107), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7225), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(5172), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11011), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(5168), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(5166), 31, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_TILDE, - anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [86899] = 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [85815] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 19, + ACTIONS(6708), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9395), 1, + anon_sym_LBRACK, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + STATE(3233), 1, + sym_parameter_list, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9451), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528557,18 +527304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8895), 35, + ACTIONS(9453), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -528590,75 +527334,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [86961] = 30, + anon_sym_DASH_GT, + [85887] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3807), 1, - anon_sym_enum, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11040), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11042), 1, + ACTIONS(10901), 1, + anon_sym_enum, + ACTIONS(10903), 1, + anon_sym_class, + ACTIONS(10905), 1, + anon_sym_struct, + ACTIONS(10907), 1, + anon_sym_union, + ACTIONS(10909), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2076), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2221), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(2259), 1, - sym_type_specifier, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3603), 1, - sym_type_descriptor, - STATE(8763), 1, + STATE(7400), 1, + sym_splice_specifier, + STATE(7579), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7663), 1, + sym_template_type, + STATE(7711), 1, + sym_type_specifier, + STATE(7722), 1, + sym_qualified_type_identifier, + STATE(8164), 1, + sym__type_definition_type, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2169), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5208), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3803), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -528680,10 +527421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [87077] = 3, + [86003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 19, + ACTIONS(9447), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528703,7 +527444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8903), 35, + ACTIONS(9449), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -528739,71 +527480,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [87139] = 30, + [86065] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(3978), 1, - anon_sym_enum, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10893), 1, + sym_identifier, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(11117), 1, + ACTIONS(10901), 1, + anon_sym_enum, + ACTIONS(10903), 1, + anon_sym_class, + ACTIONS(10905), 1, + anon_sym_struct, + ACTIONS(10907), 1, + anon_sym_union, + ACTIONS(10909), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2104), 1, - sym_splice_specifier, - STATE(2122), 1, - sym_type_specifier, - STATE(2170), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2221), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3603), 1, - sym_type_descriptor, - STATE(8763), 1, + STATE(7400), 1, + sym_splice_specifier, + STATE(7579), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7663), 1, + sym_template_type, + STATE(7711), 1, + sym_type_specifier, + STATE(7722), 1, + sym_qualified_type_identifier, + STATE(8170), 1, + sym__type_definition_type, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2169), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5209), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3974), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -528825,21 +527566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [87255] = 8, + [86181] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - ACTIONS(10984), 1, + ACTIONS(10180), 1, anon_sym_LBRACK, - STATE(5226), 1, - sym_new_declarator, - STATE(5747), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 20, + STATE(1974), 1, + sym_parameter_list, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10221), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -528849,24 +527587,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(9276), 28, + ACTIONS(10219), 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -528874,6 +527614,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, @@ -528888,11 +527629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [87327] = 3, + [86251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 13, + ACTIONS(7612), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -528906,7 +527646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7671), 41, + ACTIONS(7610), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -528948,162 +527688,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [87389] = 8, + [86313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, + ACTIONS(11020), 3, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - STATE(3140), 1, - sym_parameter_list, - STATE(5043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9480), 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(9482), 30, - 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_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, - [87461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9337), 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(9339), 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_LBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - 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_requires, - anon_sym_DASH_GT_STAR, - [87523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7225), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LBRACK_COLON, + ACTIONS(11016), 4, 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, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 41, + ACTIONS(11018), 5, anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + anon_sym_explicit, + anon_sym_operator, + ACTIONS(11023), 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, + anon_sym_typename, + sym_auto, + ACTIONS(11013), 31, 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, @@ -529124,20 +527745,107 @@ 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_template, - anon_sym_operator, - [87585] = 5, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + [86381] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11025), 1, + sym_identifier, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + ACTIONS(11031), 1, + sym_primitive_type, + ACTIONS(11033), 1, + anon_sym_enum, + ACTIONS(11035), 1, + anon_sym_class, + ACTIONS(11037), 1, + anon_sym_struct, + ACTIONS(11039), 1, + anon_sym_union, + ACTIONS(11041), 1, + anon_sym_typename, + ACTIONS(11043), 1, + sym_auto, + ACTIONS(11045), 1, + anon_sym_decltype, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(6416), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6517), 1, + sym_type_specifier, + STATE(6587), 1, + sym_splice_specifier, + STATE(7039), 1, + sym__splice_specialization_specifier, + STATE(7280), 1, + sym_template_type, + STATE(7398), 1, + sym_qualified_type_identifier, + STATE(7639), 1, + sym_decltype_auto, + STATE(8548), 1, + sym_type_descriptor, + STATE(8745), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5161), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7597), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7640), 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, + [86497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11119), 1, - anon_sym_AMP_AMP, - ACTIONS(11121), 1, - anon_sym_and, - ACTIONS(9322), 18, + ACTIONS(11053), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11051), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11049), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529152,21 +527860,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(9324), 34, - anon_sym_DOT_DOT_DOT, + ACTIONS(11047), 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_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -529180,21 +527886,29 @@ 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_final, - anon_sym_override, - anon_sym_requires, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [87651] = 3, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [86563] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 19, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(6566), 1, + anon_sym_LBRACE, + ACTIONS(8867), 1, + anon_sym_LT, + STATE(5153), 1, + sym_template_argument_list, + ACTIONS(6568), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529205,7 +527919,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, @@ -529214,7 +527927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8944), 35, + ACTIONS(6561), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -529246,139 +527959,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [87713] = 8, + [86633] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - STATE(3140), 1, - sym_parameter_list, - STATE(5043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9484), 18, + ACTIONS(7117), 1, + anon_sym_const, + ACTIONS(9487), 1, + anon_sym_LT, + STATE(4275), 1, + sym_template_argument_list, + ACTIONS(7126), 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_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(9486), 30, + ACTIONS(7122), 15, + anon_sym___extension__, + 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, + ACTIONS(7119), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_LT_LT, + anon_sym_COLON_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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [87785] = 30, + anon_sym_GT2, + [86703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, + ACTIONS(7648), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7646), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, - ACTIONS(2602), 1, + anon_sym_template, + anon_sym_operator, + [86765] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(3704), 1, + ACTIONS(3895), 1, anon_sym_enum, - ACTIONS(3706), 1, + ACTIONS(3897), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(3899), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(3901), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(3905), 1, + sym_auto, + ACTIONS(3907), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(11055), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(11107), 1, + ACTIONS(11059), 1, + sym_primitive_type, + ACTIONS(11061), 1, anon_sym_typename, - STATE(2852), 1, + STATE(2345), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2993), 1, + STATE(2401), 1, sym_type_specifier, - STATE(3028), 1, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, + STATE(2901), 1, sym_template_type, - STATE(3747), 1, + STATE(3048), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(5430), 1, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3576), 1, + sym_decltype_auto, + STATE(5532), 1, sym_type_descriptor, - STATE(8738), 1, + STATE(8726), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3396), 2, sym_decltype, sym_splice_type_specifier, - STATE(5182), 2, + STATE(5162), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(3891), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3575), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -529400,18 +528168,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [87901] = 3, + [86881] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + ACTIONS(10972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10974), 1, + anon_sym_AMP_AMP, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10982), 1, + anon_sym_or, + ACTIONS(10984), 1, + anon_sym_and, + ACTIONS(10986), 1, + anon_sym_bitor, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10437), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10439), 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, + [86989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10318), 7, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7248), 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_COLON_COLON, + anon_sym_SEMI, anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(10316), 47, + ACTIONS(7246), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -529420,10 +528277,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, @@ -529447,83 +528306,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [87053] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3943), 1, anon_sym_enum, + ACTIONS(3945), 1, anon_sym_class, + ACTIONS(3947), 1, anon_sym_struct, + ACTIONS(3949), 1, anon_sym_union, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11063), 1, + sym_identifier, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11069), 1, anon_sym_typename, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3717), 1, + sym_type_specifier, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(4080), 1, + sym_decltype_auto, + STATE(4222), 1, + sym_splice_specifier, + STATE(6610), 1, + sym_type_descriptor, + STATE(8737), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3960), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5163), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3939), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4081), 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, + [87169] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11025), 1, sym_identifier, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + ACTIONS(11031), 1, + sym_primitive_type, + ACTIONS(11033), 1, + anon_sym_enum, + ACTIONS(11035), 1, + anon_sym_class, + ACTIONS(11037), 1, + anon_sym_struct, + ACTIONS(11039), 1, + anon_sym_union, + ACTIONS(11041), 1, + anon_sym_typename, + ACTIONS(11043), 1, sym_auto, + ACTIONS(11045), 1, anon_sym_decltype, - anon_sym_explicit, - anon_sym_template, - anon_sym_operator, - [87963] = 30, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(6416), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6587), 1, + sym_splice_specifier, + STATE(6905), 1, + sym_type_specifier, + STATE(7039), 1, + sym__splice_specialization_specifier, + STATE(7280), 1, + sym_template_type, + STATE(7398), 1, + sym_qualified_type_identifier, + STATE(7639), 1, + sym_decltype_auto, + STATE(8548), 1, + sym_type_descriptor, + STATE(8745), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5141), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7597), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7640), 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, + [87285] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8157), 1, + STATE(8187), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -529545,71 +528568,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88079] = 30, + [87401] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8154), 1, + STATE(8188), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -529631,21 +528654,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88195] = 8, + [87517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9304), 1, + ACTIONS(7674), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(10969), 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, + anon_sym_LBRACK_COLON, + ACTIONS(7672), 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_LBRACK, - STATE(5585), 1, - sym_parameter_list, - STATE(5055), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9300), 18, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [87579] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9409), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529664,15 +528735,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9302), 30, + anon_sym_DASH_GT, + ACTIONS(9411), 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -529694,72 +528768,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [88267] = 30, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [87641] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8208), 1, + STATE(8234), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -529781,71 +528858,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88383] = 30, + [87757] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8225), 1, + STATE(8194), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -529867,10 +528944,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88499] = 3, + [87873] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + ACTIONS(10972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(10974), 1, + anon_sym_AMP_AMP, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10980), 1, + anon_sym_QMARK, + ACTIONS(10982), 1, + anon_sym_or, + ACTIONS(10984), 1, + anon_sym_and, + ACTIONS(10986), 1, + anon_sym_bitor, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10471), 2, + anon_sym___attribute, + anon_sym_EQ, + ACTIONS(10943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10473), 16, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [87985] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 19, + ACTIONS(6483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10884), 1, + anon_sym_LBRACK, + STATE(5645), 1, + sym_parameter_list, + STATE(5106), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9389), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -529889,18 +529061,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9002), 35, + ACTIONS(9391), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -529922,75 +529091,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [88561] = 30, + anon_sym_DASH_GT, + [88057] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8213), 1, + STATE(8195), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -530012,130 +529178,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7733), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7731), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [88739] = 30, + [88173] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8166), 1, + STATE(8196), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -530157,71 +529264,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88855] = 30, + [88289] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8214), 1, + STATE(8198), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -530243,47 +529350,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [88971] = 3, + [88405] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7753), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(7751), 41, - anon_sym_AMP, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(10634), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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___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, @@ -530296,77 +529436,71 @@ 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_template, - anon_sym_operator, - [89033] = 30, + [88521] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8233), 1, + STATE(8199), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -530388,17 +529522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89149] = 6, + [88637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - STATE(5617), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 19, + ACTIONS(8957), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -530418,10 +529545,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9493), 31, + ACTIONS(8959), 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, @@ -530449,72 +529577,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [89217] = 30, + [88699] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8169), 1, + STATE(8201), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -530536,135 +529667,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89333] = 8, + [88815] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - STATE(3140), 1, - sym_parameter_list, - STATE(5043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9439), 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(9441), 30, - 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_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, - [89405] = 30, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10893), 1, + sym_identifier, + ACTIONS(10895), 1, + anon_sym_COLON_COLON, + ACTIONS(10899), 1, + sym_primitive_type, + ACTIONS(10901), 1, + anon_sym_enum, + ACTIONS(10903), 1, + anon_sym_class, + ACTIONS(10905), 1, + anon_sym_struct, + ACTIONS(10907), 1, + anon_sym_union, + ACTIONS(10909), 1, + anon_sym_typename, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(7400), 1, + sym_splice_specifier, + STATE(7579), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7663), 1, + sym_template_type, + STATE(7711), 1, + sym_type_specifier, + STATE(7722), 1, + sym_qualified_type_identifier, + STATE(8202), 1, + sym__type_definition_type, + STATE(8705), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5124), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10897), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [88931] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8171), 1, + STATE(8204), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -530686,71 +529839,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89521] = 30, + [89047] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8189), 1, + STATE(8205), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -530772,71 +529925,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89637] = 30, + [89163] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8194), 1, + STATE(8206), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -530858,71 +530011,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89753] = 30, + [89279] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(11028), 1, + ACTIONS(10903), 1, anon_sym_class, - ACTIONS(11030), 1, + ACTIONS(10905), 1, anon_sym_struct, - ACTIONS(11032), 1, + ACTIONS(10907), 1, anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(10909), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(7606), 1, + STATE(7579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, + STATE(7663), 1, sym_template_type, - STATE(7707), 1, + STATE(7711), 1, sym_type_specifier, - STATE(7716), 1, + STATE(7722), 1, sym_qualified_type_identifier, - STATE(8196), 1, + STATE(8207), 1, sym__type_definition_type, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5124), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -530944,71 +530097,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89869] = 30, + [89395] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(3074), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4028), 1, + anon_sym_enum, + ACTIONS(4030), 1, + anon_sym_class, + ACTIONS(4032), 1, + anon_sym_struct, + ACTIONS(4034), 1, + anon_sym_union, + ACTIONS(4040), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(4042), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(11075), 1, sym_primitive_type, - ACTIONS(11026), 1, - anon_sym_enum, - ACTIONS(11028), 1, - anon_sym_class, - ACTIONS(11030), 1, - anon_sym_struct, - ACTIONS(11032), 1, - anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(11077), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(7481), 1, - sym_splice_specifier, - STATE(7606), 1, + STATE(2264), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, - sym_template_type, - STATE(7707), 1, + STATE(2353), 1, sym_type_specifier, - STATE(7716), 1, + STATE(2631), 1, + sym_splice_specifier, + STATE(2665), 1, + sym_template_type, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2733), 1, sym_qualified_type_identifier, - STATE(8197), 1, - sym__type_definition_type, - STATE(8691), 1, + STATE(3230), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(5184), 1, + sym_type_descriptor, + STATE(8741), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3080), 2, sym_decltype, sym_splice_type_specifier, - STATE(5232), 2, + STATE(5166), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(4024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3236), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -531030,10 +530183,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [89985] = 3, + [89511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 19, + ACTIONS(9337), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531053,7 +530206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8994), 35, + ACTIONS(9339), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -531089,196 +530242,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [90047] = 5, + [89573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11129), 1, - anon_sym_DQUOTE_DQUOTE, - ACTIONS(11127), 2, - anon_sym_delete, - anon_sym_new, - ACTIONS(11125), 20, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_not, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DASH_GT, - ACTIONS(11123), 31, + ACTIONS(7678), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_TILDE, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_compl, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_co_await, - anon_sym_DASH_GT_STAR, - anon_sym_LPAREN_RPAREN, - anon_sym_LBRACK_RBRACK, - [90113] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6493), 1, + anon_sym_SEMI, + anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10969), 1, - anon_sym_LBRACK, - STATE(5585), 1, - sym_parameter_list, - STATE(5055), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9480), 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(9482), 30, - 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_RBRACK_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, - [90185] = 30, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7676), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [89635] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11169), 1, + STATE(11163), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -531300,10 +530387,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90301] = 3, + [89751] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7327), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7329), 46, + 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_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_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, + [89815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 19, + ACTIONS(8961), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531323,7 +530470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8887), 35, + ACTIONS(8963), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -531359,71 +530506,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [90363] = 30, + [89877] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7593), 1, + sym_type_specifier, + STATE(8329), 1, + sym_type_descriptor, + STATE(8754), 1, sym__scope_resolution, - STATE(10564), 1, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5175), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [89993] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4195), 1, + anon_sym_enum, + ACTIONS(4197), 1, + anon_sym_class, + ACTIONS(4199), 1, + anon_sym_struct, + ACTIONS(4201), 1, + anon_sym_union, + ACTIONS(4207), 1, + sym_auto, + ACTIONS(4209), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11079), 1, + sym_identifier, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11085), 1, + anon_sym_typename, + STATE(2267), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2323), 1, + sym_type_specifier, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(2728), 1, + sym_template_type, + STATE(2818), 1, + sym_qualified_type_identifier, + STATE(3096), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(5201), 1, sym_type_descriptor, + STATE(8746), 1, + sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(2978), 2, sym_decltype, sym_splice_type_specifier, STATE(5167), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4191), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3097), 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, + [90109] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3802), 1, + anon_sym_enum, + ACTIONS(3804), 1, + anon_sym_class, + ACTIONS(3806), 1, + anon_sym_struct, + ACTIONS(3808), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(11091), 1, + anon_sym_typename, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3573), 1, + sym_type_specifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(5340), 1, + sym_type_descriptor, + STATE(8708), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5169), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -531445,10 +530764,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90479] = 3, + [90225] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 19, + ACTIONS(6483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10884), 1, + anon_sym_LBRACK, + STATE(5645), 1, + sym_parameter_list, + STATE(5106), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9431), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531462,26 +530792,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6634), 35, + ACTIONS(9433), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -531504,10 +530828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [90541] = 3, + [90297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 13, + ACTIONS(7767), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -531521,7 +530845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7561), 41, + ACTIONS(7765), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -531563,24 +530887,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [90603] = 3, + [90359] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7601), 13, + ACTIONS(3096), 1, + anon_sym_LBRACE, + ACTIONS(8563), 1, + anon_sym_LPAREN2, + STATE(4255), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(5560), 1, + sym_argument_list, + STATE(6047), 1, + sym_initializer_list, + ACTIONS(10105), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7248), 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_SEMI, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_EQ, - anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7599), 41, + ACTIONS(7246), 35, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -531589,12 +530925,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, @@ -531622,130 +530952,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [90665] = 3, + [90433] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(4411), 1, + anon_sym_enum, + ACTIONS(4413), 1, + anon_sym_class, + ACTIONS(4415), 1, + anon_sym_struct, + ACTIONS(4417), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11093), 1, + sym_identifier, + ACTIONS(11095), 1, + anon_sym_COLON_COLON, + ACTIONS(11097), 1, + anon_sym_typename, + STATE(2914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3038), 1, + sym_type_specifier, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3721), 1, + sym_splice_specifier, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(4080), 1, + sym_decltype_auto, + STATE(5340), 1, + sym_type_descriptor, + STATE(8750), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3960), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5170), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4407), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4081), 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, + [90549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7327), 7, 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_LBRACK, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(6614), 35, - anon_sym_DOT_DOT_DOT, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7329), 46, 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_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_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, - [90727] = 30, + 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_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, + [90613] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11145), 1, + STATE(11199), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -531767,10 +531184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [90843] = 3, + [90729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 19, + ACTIONS(8915), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531784,26 +531201,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6626), 35, + anon_sym_DASH_GT, + ACTIONS(8917), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -531825,59 +531239,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [90905] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [90791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(6708), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9395), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + STATE(3233), 1, + sym_parameter_list, + STATE(5055), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9431), 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(10937), 1, + ACTIONS(9433), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, anon_sym_AMP_AMP, - ACTIONS(10941), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [90863] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5591), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(10945), 1, + anon_sym_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(5593), 35, + 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_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [90925] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4167), 1, + anon_sym_enum, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10964), 1, + sym_identifier, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(10968), 1, + sym_primitive_type, + ACTIONS(10970), 1, + anon_sym_typename, + STATE(2070), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(2255), 1, + sym_type_specifier, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3616), 1, + sym_type_descriptor, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5171), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4163), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 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, + [91041] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, ACTIONS(10951), 1, anon_sym_GT_EQ, - ACTIONS(10957), 1, + ACTIONS(10955), 1, anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, - anon_sym_or, - ACTIONS(10961), 1, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + ACTIONS(10974), 1, + anon_sym_AMP_AMP, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10984), 1, anon_sym_and, - ACTIONS(10963), 1, + ACTIONS(10986), 1, anon_sym_bitor, - ACTIONS(10965), 1, - anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10473), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, + ACTIONS(10943), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, ACTIONS(10953), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10917), 3, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(9621), 3, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -531889,9 +531512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 18, + ACTIONS(9623), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, @@ -531908,17 +531532,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [91013] = 6, + [91145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, + ACTIONS(7753), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(5708), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 19, + 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, + anon_sym_LBRACK_COLON, + ACTIONS(7751), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [91207] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8987), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -531938,10 +531614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9383), 31, + ACTIONS(8989), 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, @@ -531969,22 +531646,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [91081] = 8, + [91269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - STATE(3140), 1, - sym_parameter_list, - STATE(5043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9476), 18, + ACTIONS(8997), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532003,15 +531672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9478), 30, + anon_sym_DASH_GT, + ACTIONS(8999), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532033,72 +531705,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [91153] = 30, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [91331] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(4257), 1, + anon_sym_enum, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11099), 1, + sym_identifier, + ACTIONS(11101), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2093), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2110), 1, + sym_type_specifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3616), 1, + sym_type_descriptor, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5172), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4253), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 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, + [91447] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11205), 1, + STATE(10924), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -532120,10 +531881,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [91269] = 3, + [91563] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(4050), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(4429), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(4435), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9107), 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(9109), 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, + [91631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7702), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7700), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [91693] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 19, + ACTIONS(6483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9393), 1, + anon_sym_LPAREN2, + ACTIONS(10884), 1, + anon_sym_LBRACK, + STATE(5645), 1, + sym_parameter_list, + STATE(5106), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9471), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532137,26 +532030,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6610), 35, + ACTIONS(9473), 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_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532179,10 +532066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [91331] = 3, + [91765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 13, + ACTIONS(7706), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -532196,7 +532083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7603), 41, + ACTIONS(7704), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -532238,10 +532125,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [91393] = 3, + [91827] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 19, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(10913), 1, + anon_sym_LBRACK, + STATE(5190), 1, + sym_new_declarator, + STATE(5784), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9178), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532260,18 +532158,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9437), 35, + ACTIONS(9180), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532293,14 +532188,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [91455] = 3, + anon_sym_DASH_GT, + [91899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 19, + ACTIONS(8923), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532320,7 +532212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8952), 35, + ACTIONS(8925), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -532356,10 +532248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [91517] = 3, + [91961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 19, + ACTIONS(5587), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532369,17 +532261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6618), 35, + ACTIONS(5589), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -532387,12 +532281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532400,7 +532289,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, @@ -532415,18 +532303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [91579] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [92023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11119), 1, - anon_sym_AMP_AMP, - ACTIONS(11121), 1, - anon_sym_and, - ACTIONS(11131), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11133), 1, - anon_sym_or, - ACTIONS(9393), 17, + ACTIONS(8923), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532441,14 +532325,18 @@ 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(9395), 33, + ACTIONS(8925), 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, @@ -532478,10 +532366,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [91649] = 3, + [92085] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + ACTIONS(10976), 1, + anon_sym_PIPE, + ACTIONS(10986), 1, + anon_sym_bitor, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10943), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 4, + anon_sym___attribute, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(9623), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + [92185] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 19, + ACTIONS(6679), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10988), 1, + anon_sym_LBRACK, + STATE(5703), 1, + sym_parameter_list, + STATE(5244), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9397), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532491,30 +532468,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(6622), 35, + ACTIONS(9399), 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_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532522,7 +532493,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, @@ -532537,48 +532507,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [91711] = 3, + anon_sym_GT2, + [92257] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7563), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7561), 41, + ACTIONS(10368), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, anon_sym___attribute__, + ACTIONS(10577), 1, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10957), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7475), 1, + sym__function_attributes_start, + STATE(7636), 1, + sym_ref_qualifier, + STATE(8412), 1, + sym_trailing_return_type, + STATE(8651), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10848), 2, + anon_sym_final, + anon_sym_override, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7784), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + ACTIONS(10370), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -532590,16 +532594,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_template, - anon_sym_operator, - [91773] = 3, + [92373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 19, + ACTIONS(9413), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532619,7 +532617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8911), 35, + ACTIONS(9415), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -532655,10 +532653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [91835] = 3, + [92435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 19, + ACTIONS(9385), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532672,26 +532670,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6630), 35, + anon_sym_DASH_GT, + ACTIONS(9387), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -532713,144 +532708,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, - [91897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7563), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7561), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [91959] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7085), 1, - anon_sym_const, - ACTIONS(7094), 1, - anon_sym_AMP, - ACTIONS(9552), 1, - anon_sym_LT, - STATE(4313), 1, - sym_template_argument_list, - ACTIONS(7087), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK, - anon_sym_GT2, - ACTIONS(7092), 9, - 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_GT_GT, - anon_sym_DOT, - ACTIONS(7090), 15, - anon_sym___extension__, - 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, - ACTIONS(7097), 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, - [92033] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [92497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 1, - anon_sym_LBRACE, - ACTIONS(7445), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7087), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(7092), 18, + ACTIONS(8923), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -532861,6 +532726,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, @@ -532869,10 +532735,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7097), 31, + ACTIONS(8925), 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, @@ -532900,135 +532767,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [92103] = 30, + [92559] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, + ACTIONS(7119), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11532), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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__, + ACTIONS(10325), 1, + anon_sym_LT, + STATE(5515), 1, + sym_template_argument_list, + ACTIONS(7117), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [92219] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7765), 13, - anon_sym_DOT_DOT_DOT, + anon_sym___asm, + ACTIONS(7122), 44, 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, - anon_sym_LBRACK_COLON, - ACTIONS(7763), 41, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -533042,100 +532824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [92281] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(10777), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [92397] = 3, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [92627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7769), 13, + ACTIONS(7745), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -533149,7 +532850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(7767), 41, + ACTIONS(7743), 41, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -533191,107 +532892,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [92459] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11667), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [92575] = 8, + [92689] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10711), 1, + ACTIONS(9393), 1, anon_sym_LPAREN2, - STATE(3140), 1, + ACTIONS(10180), 1, + anon_sym_LBRACK, + STATE(1974), 1, sym_parameter_list, - STATE(5043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9300), 18, + STATE(3627), 1, + sym__function_declarator_seq, + ACTIONS(10229), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533305,12 +532917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9302), 30, + ACTIONS(10227), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -533318,7 +532931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533341,103 +532955,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [92647] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, - anon_sym_AMP_AMP, - ACTIONS(10941), 1, - anon_sym_PIPE, - ACTIONS(10945), 1, - anon_sym_AMP, - ACTIONS(10951), 1, - anon_sym_GT_EQ, - ACTIONS(10957), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, - anon_sym_or, - ACTIONS(10961), 1, - anon_sym_and, - ACTIONS(10963), 1, - anon_sym_bitor, - ACTIONS(10965), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10538), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10947), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10949), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10540), 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, - [92755] = 8, + [92759] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, + ACTIONS(6708), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9304), 1, - anon_sym_LPAREN2, - ACTIONS(10969), 1, + ACTIONS(9395), 1, anon_sym_LBRACK, - STATE(5585), 1, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + STATE(3233), 1, sym_parameter_list, STATE(5055), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9439), 18, + ACTIONS(9397), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533456,7 +532988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9441), 30, + ACTIONS(9399), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -533464,7 +532996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533487,40 +533019,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [92827] = 3, + [92831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7670), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7668), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [92893] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 19, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10951), 1, + anon_sym_GT_EQ, + ACTIONS(10955), 1, + anon_sym_LT_EQ_GT, + ACTIONS(10960), 1, + anon_sym_AMP, + ACTIONS(10962), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10943), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(10953), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10978), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10945), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(10947), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10949), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9621), 5, + anon_sym_PIPE, + anon_sym___attribute, anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9310), 35, + ACTIONS(9623), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533535,21 +533153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [92889] = 3, + [92989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 19, + ACTIONS(9417), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533569,7 +533177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9318), 35, + ACTIONS(9419), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -533605,47 +533213,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [92951] = 3, + [93051] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7637), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(7635), 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_LBRACK, - anon_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(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(11302), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, @@ -533658,80 +533299,40 @@ 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_template, - anon_sym_operator, - [93013] = 26, + [93167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, - anon_sym_AMP_AMP, - ACTIONS(10941), 1, - anon_sym_PIPE, - ACTIONS(10945), 1, - anon_sym_AMP, - ACTIONS(10951), 1, - anon_sym_GT_EQ, - ACTIONS(10957), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, - anon_sym_or, - ACTIONS(10961), 1, - anon_sym_and, - ACTIONS(10963), 1, - anon_sym_bitor, - ACTIONS(10965), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10542), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, + ACTIONS(9421), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10947), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10949), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 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(9423), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533746,130 +533347,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [93121] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10937), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, - anon_sym_AMP_AMP, - ACTIONS(10941), 1, - anon_sym_PIPE, - ACTIONS(10945), 1, - anon_sym_AMP, - ACTIONS(10951), 1, - anon_sym_GT_EQ, - ACTIONS(10957), 1, anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, - anon_sym_or, - ACTIONS(10961), 1, - anon_sym_and, - ACTIONS(10963), 1, anon_sym_bitor, - ACTIONS(10965), 1, anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9599), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(9644), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10935), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10947), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10949), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9597), 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, - [93229] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [93229] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(7641), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(11307), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [93345] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7331), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7333), 47, 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, - anon_sym_LBRACK_COLON, - ACTIONS(7639), 41, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -533883,19 +533492,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + sym_auto, anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [93291] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [93407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6768), 1, - anon_sym_LBRACK_LBRACK, - STATE(4769), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 17, + ACTIONS(7876), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -533909,11 +533520,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(8835), 34, + ACTIONS(7874), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -533923,6 +533536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -533934,11 +533548,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, @@ -533948,71 +533562,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [93357] = 30, + [93469] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, sym_type_specifier, - STATE(7260), 1, + STATE(8754), 1, + sym__scope_resolution, + STATE(11326), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [93585] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11308), 1, + STATE(11331), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534034,10 +533734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93473] = 3, + [93701] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 19, + ACTIONS(11109), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11107), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11105), 20, + anon_sym_BANG, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -534052,23 +533758,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(8994), 35, - anon_sym_DOT_DOT_DOT, + ACTIONS(11103), 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_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -534082,82 +533784,82 @@ 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_final, - anon_sym_override, - anon_sym_requires, + anon_sym_co_await, anon_sym_DASH_GT_STAR, - [93535] = 30, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [93767] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11313), 1, + STATE(10700), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534179,71 +533881,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93651] = 30, + [93883] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11332), 1, + STATE(11348), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534265,71 +533967,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93767] = 30, + [93999] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11337), 1, + STATE(11352), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534351,71 +534053,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93883] = 30, + [94115] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11354), 1, + STATE(11368), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534437,71 +534139,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [93999] = 30, + [94231] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11358), 1, + STATE(11372), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534523,71 +534225,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94115] = 30, + [94347] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11374), 1, + STATE(11388), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534609,71 +534311,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94231] = 30, + [94463] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11378), 1, + STATE(11392), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534695,71 +534397,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94347] = 30, + [94579] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11394), 1, + STATE(11405), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534781,71 +534483,462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94463] = 30, + [94695] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, + STATE(7198), 1, + sym_splice_specifier, + STATE(7206), 1, sym_type_specifier, - STATE(7260), 1, + STATE(8754), 1, + sym__scope_resolution, + STATE(11408), 1, + sym_type_descriptor, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(5058), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [94811] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11117), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11115), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11113), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(11111), 31, + 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [94877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7604), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7602), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [94939] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7608), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7606), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [95001] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2950), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + STATE(5631), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9455), 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(9457), 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_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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, + [95069] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3034), 1, + anon_sym_LBRACE, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(10888), 1, + anon_sym_LBRACK, + STATE(5176), 1, + sym_new_declarator, + STATE(5814), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9230), 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(9232), 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, + [95141] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11398), 1, + STATE(10525), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534867,71 +534960,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94579] = 30, + [95257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7640), 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7638), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [95319] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10325), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + ACTIONS(7379), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5637), 44, + 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_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_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [95387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11125), 1, + anon_sym_DQUOTE_DQUOTE, + ACTIONS(11123), 2, + anon_sym_delete, + anon_sym_new, + ACTIONS(11121), 20, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_not, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DASH_GT, + ACTIONS(11119), 31, + 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_compl, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_co_await, + anon_sym_DASH_GT_STAR, + anon_sym_LPAREN_RPAREN, + anon_sym_LBRACK_RBRACK, + [95453] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3802), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(3804), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(3806), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(3808), 1, anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(11091), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3007), 1, + sym_type_specifier, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11411), 1, + STATE(5340), 1, sym_type_descriptor, + STATE(8708), 1, + sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5144), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -534953,71 +535228,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94695] = 30, + [95569] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(10649), 1, anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(7206), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(11414), 1, + STATE(11490), 1, sym_type_descriptor, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(5167), 2, + STATE(5058), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -535039,74 +535314,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [94811] = 26, + [95685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(3168), 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(10937), 1, + anon_sym_DASH_GT, + ACTIONS(3166), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, anon_sym_AMP_AMP, - ACTIONS(10941), 1, + 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [95747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9479), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(10945), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(10951), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(10957), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, + 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, - ACTIONS(10961), 1, anon_sym_and, - ACTIONS(10963), 1, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9481), 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_QMARK, + anon_sym_STAR_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, - ACTIONS(10965), 1, anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10485), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [95808] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(6566), 1, + anon_sym_LBRACE, + ACTIONS(8975), 1, + anon_sym_LT, + STATE(5263), 1, + sym_template_argument_list, + ACTIONS(6568), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10943), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10953), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10917), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10947), 3, + 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(6561), 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, - ACTIONS(10949), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [95877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8404), 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, - ACTIONS(10487), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(8402), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_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, @@ -535121,96 +535540,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [94919] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5144), 1, - sym_primitive_type, - ACTIONS(5146), 1, - anon_sym_enum, - ACTIONS(5148), 1, - anon_sym_class, - ACTIONS(5150), 1, - anon_sym_struct, - ACTIONS(5152), 1, - anon_sym_union, - ACTIONS(5154), 1, - anon_sym_typename, - ACTIONS(5156), 1, - sym_auto, - ACTIONS(5158), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4387), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4802), 1, - sym_splice_specifier, - STATE(5365), 1, - sym_template_type, - STATE(5472), 1, - sym__splice_specialization_specifier, - STATE(5574), 1, - sym_qualified_type_identifier, - STATE(6031), 1, - sym_decltype_auto, - STATE(6469), 1, - sym_type_specifier, - STATE(8362), 1, - sym_type_descriptor, - STATE(8757), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5160), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5973), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(5142), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6050), 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, - [95035] = 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [95938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 19, + ACTIONS(9475), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535229,11 +535573,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9298), 35, + ACTIONS(9477), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -535241,6 +535583,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -535262,88 +535605,130 @@ 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_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [95097] = 7, + [95999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 1, - anon_sym_const, - ACTIONS(6605), 1, + ACTIONS(9479), 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, - ACTIONS(6598), 5, - anon_sym_RPAREN, + 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(9481), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, 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_LBRACK, - ACTIONS(6603), 8, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [96060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9483), 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(6601), 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(6596), 21, + ACTIONS(9485), 35, anon_sym_DOT_DOT_DOT, - anon_sym_PERCENT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, 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_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95167] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [96121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10842), 1, - anon_sym_LPAREN2, - ACTIONS(10907), 1, - anon_sym_LBRACK, - STATE(5634), 1, - sym_parameter_list, - STATE(5067), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9480), 20, + ACTIONS(9447), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535353,24 +535738,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(9482), 28, + ACTIONS(9449), 35, 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_STAR_EQ, anon_sym_SLASH_EQ, @@ -535378,6 +535765,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, @@ -535392,81 +535780,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [95239] = 30, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [96182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, + ACTIONS(7119), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, + ACTIONS(10562), 1, + anon_sym_LT, + STATE(5597), 1, + sym_template_argument_list, + ACTIONS(7122), 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_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7223), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(11258), 1, - sym_type_descriptor, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(5167), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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(7117), 38, + 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, @@ -535479,21 +535836,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [95355] = 8, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [96249] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10902), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - STATE(5031), 1, - sym_new_declarator, - STATE(5775), 2, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 18, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9621), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535511,16 +535881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9276), 30, + ACTIONS(9623), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -535539,81 +535908,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [96324] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10750), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11133), 1, + anon_sym_AMP_AMP, + ACTIONS(11135), 1, + anon_sym_PIPE, + ACTIONS(11139), 1, + anon_sym_AMP, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + ACTIONS(11149), 1, + anon_sym_and, + ACTIONS(11151), 1, + anon_sym_bitor, + ACTIONS(11153), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(9621), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10766), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [95427] = 28, + ACTIONS(11129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11137), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11147), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11141), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11143), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_DASH_GT_STAR, + [96427] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(10750), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11135), 1, + anon_sym_PIPE, + ACTIONS(11139), 1, + anon_sym_AMP, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + ACTIONS(11151), 1, + anon_sym_bitor, + ACTIONS(11153), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, anon_sym_DOT, - ACTIONS(10469), 1, + anon_sym_DASH_GT, + ACTIONS(11129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11137), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11147), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9621), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(11131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11141), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11143), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 20, anon_sym_DOT_DOT_DOT, - ACTIONS(10937), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - ACTIONS(10939), 1, anon_sym_AMP_AMP, - ACTIONS(10941), 1, - anon_sym_PIPE, - ACTIONS(10945), 1, - anon_sym_AMP, - ACTIONS(10951), 1, - anon_sym_GT_EQ, - ACTIONS(10955), 1, anon_sym_QMARK, - ACTIONS(10957), 1, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [96526] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10750), 1, anon_sym_LT_EQ_GT, - ACTIONS(10959), 1, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11139), 1, + anon_sym_AMP, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + ACTIONS(11153), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11137), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11147), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11141), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11143), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 4, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_or, - ACTIONS(10961), 1, anon_sym_and, - ACTIONS(10963), 1, + ACTIONS(9623), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, - ACTIONS(10965), 1, + anon_sym_DASH_GT_STAR, + [96621] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10750), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11139), 1, + anon_sym_AMP, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + ACTIONS(11153), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(5547), 1, sym_argument_list, - STATE(3900), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(10766), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9826), 2, - anon_sym___attribute, - anon_sym_EQ, - ACTIONS(10935), 2, + ACTIONS(11129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10943), 2, + ACTIONS(11147), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11141), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11143), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 6, + anon_sym_PIPE, anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, anon_sym_xor, - ACTIONS(10953), 2, + ACTIONS(9623), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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_DASH_GT_STAR, + [96714] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10750), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11147), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10917), 3, + ACTIONS(11131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(10947), 3, + ACTIONS(11141), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10949), 3, + ACTIONS(11143), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9828), 16, + ACTIONS(9621), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 22, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_DASH_GT_STAR, + [96803] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10750), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11147), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11143), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 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, anon_sym_PERCENT_EQ, @@ -535627,10 +536353,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [95539] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [96890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 21, + ACTIONS(8987), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535640,19 +536370,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(5595), 33, + ACTIONS(8989), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -535660,7 +536387,9 @@ 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_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -535668,6 +536397,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, @@ -535684,120 +536414,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [95601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7655), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [95663] = 14, + [96951] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10957), 1, + ACTIONS(10750), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, sym_argument_list, - STATE(3900), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(10766), 2, + anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10935), 2, + ACTIONS(11129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(10953), 2, + ACTIONS(11147), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(10917), 3, + ACTIONS(11131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 11, + ACTIONS(9621), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, 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(9709), 26, + ACTIONS(9623), 26, 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___attribute__, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -535815,133 +536483,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [95747] = 3, + anon_sym_DASH_GT_STAR, + [97034] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9013), 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(10659), 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_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(10722), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10766), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [95808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8992), 23, - aux_sym_preproc_elif_token1, + ACTIONS(11129), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11131), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9621), 12, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8994), 30, + ACTIONS(9623), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [95869] = 6, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [97113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - STATE(5883), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 18, + ACTIONS(9385), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -535960,9 +536573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9383), 31, + ACTIONS(9387), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -535992,69 +536606,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [95936] = 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [97174] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(3732), 1, + ACTIONS(4141), 1, anon_sym_enum, - ACTIONS(3734), 1, + ACTIONS(4143), 1, anon_sym_class, - ACTIONS(3736), 1, + ACTIONS(4145), 1, anon_sym_struct, - ACTIONS(3738), 1, + ACTIONS(4147), 1, anon_sym_union, - ACTIONS(3742), 1, + ACTIONS(4151), 1, sym_auto, - ACTIONS(3744), 1, + ACTIONS(4153), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(10915), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, + ACTIONS(10919), 1, sym_primitive_type, - ACTIONS(11014), 1, + ACTIONS(10921), 1, anon_sym_typename, - STATE(2180), 1, + STATE(2177), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2433), 1, + STATE(2411), 1, sym_type_specifier, - STATE(2547), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(2628), 1, sym_template_type, - STATE(2698), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(2997), 1, + STATE(3013), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(8682), 1, + STATE(8744), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2942), 2, + STATE(2934), 2, sym_decltype, sym_splice_type_specifier, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3728), 4, + ACTIONS(4137), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(3045), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -536076,579 +536693,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [96049] = 7, + [97287] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11135), 1, - sym_identifier, - STATE(5077), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6913), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6915), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8468), 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(8466), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10659), 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, + ACTIONS(10722), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10766), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [96118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8992), 23, - aux_sym_preproc_elif_token1, + ACTIONS(11129), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8994), 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(11147), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - 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, - anon_sym_COLON_RBRACK, - [96179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8992), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11131), 3, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9621), 10, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_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(8994), 30, + ACTIONS(9623), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_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, - anon_sym_COLON_RBRACK, - [96240] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11137), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7693), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7695), 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___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [96305] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11137), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7697), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7699), 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___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [96370] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5148), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11139), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7701), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7703), 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___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [96435] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5149), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11141), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7707), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7709), 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___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [96500] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8699), 5, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(8697), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [96561] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11137), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7713), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7715), 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___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [96626] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11143), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11145), 1, - anon_sym_AMP_AMP, - ACTIONS(11147), 1, - anon_sym_or, - ACTIONS(11149), 1, - anon_sym_and, - ACTIONS(9393), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9395), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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, @@ -536656,6 +536749,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, @@ -536666,23 +536760,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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [96695] = 5, + anon_sym_DASH_GT_STAR, + [97368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6723), 1, - anon_sym_LBRACK_LBRACK, - STATE(4559), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9517), 19, + ACTIONS(3168), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536696,13 +536778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9519), 31, + ACTIONS(3166), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -536711,6 +536792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -536734,16 +536816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [96760] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [97429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(7445), 1, + ACTIONS(11155), 1, anon_sym_LT, - STATE(2053), 1, + STATE(5525), 1, sym_template_argument_list, - ACTIONS(7092), 18, + ACTIONS(9536), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536762,7 +536847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7097), 32, + ACTIONS(9538), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -536795,18 +536880,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [96827] = 7, + [97496] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6572), 1, - anon_sym_LBRACE, - ACTIONS(9004), 1, + ACTIONS(11158), 1, anon_sym_LT, - STATE(5312), 1, + STATE(2853), 1, sym_template_argument_list, - ACTIONS(6574), 19, + ACTIONS(9633), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536816,25 +536897,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_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(6567), 30, + anon_sym_DASH_GT, + ACTIONS(9635), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -536842,6 +536925,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, @@ -536855,12 +536939,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, - [96896] = 3, + anon_sym_DASH_GT_STAR, + [97561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 18, + ACTIONS(8997), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536879,7 +536962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9391), 35, + ACTIONS(8999), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -536915,10 +536998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [96957] = 3, + [97622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 20, + ACTIONS(9438), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -536928,18 +537011,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(8422), 33, + ACTIONS(9440), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -536947,7 +537028,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -536955,6 +537038,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, @@ -536971,79 +537055,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [97018] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11154), 1, - anon_sym_virtual, - ACTIONS(11163), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11166), 1, - anon_sym___declspec, - STATE(3497), 1, - sym_alignas_qualifier, - ACTIONS(10046), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(11160), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(11169), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5048), 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(11157), 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(11151), 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(10044), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [97097] = 3, + [97683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 20, + ACTIONS(3157), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537053,18 +537069,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(9409), 33, + ACTIONS(3155), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -537072,7 +537086,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -537080,6 +537096,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, @@ -537096,82 +537113,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [97158] = 7, + [97744] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10570), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - STATE(1974), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10198), 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(10196), 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, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [97227] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1974), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10202), 19, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9669), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537189,9 +537151,7 @@ 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(10200), 30, + ACTIONS(9671), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -537218,33 +537178,13 @@ 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, - [97296] = 3, + [97819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 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(3161), 35, + ACTIONS(10613), 1, + sym_literal_suffix, + ACTIONS(5611), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -537253,8 +537193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -537266,24 +537206,12 @@ 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_final, - anon_sym_override, - anon_sym_requires, - [97357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9415), 20, + ACTIONS(5619), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537293,118 +537221,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___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(9417), 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_QMARK, - anon_sym_STAR_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [97418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9419), 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(9421), 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_QMARK, - anon_sym_STAR_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [97479] = 5, + anon_sym_DOT, + [97882] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6493), 1, - anon_sym_LBRACK_LBRACK, - STATE(3170), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9517), 19, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10583), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10264), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537418,22 +537263,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, - ACTIONS(9519), 31, + anon_sym_DASH_GT, + ACTIONS(10266), 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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -537455,11 +537299,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, - [97544] = 3, + anon_sym_DASH_GT_STAR, + [97951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 20, + ACTIONS(6708), 1, + anon_sym_LBRACK_LBRACK, + STATE(4586), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537469,18 +537318,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9425), 33, + ACTIONS(9568), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -537488,7 +537336,8 @@ 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_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -537496,6 +537345,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, @@ -537510,14 +537360,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [97605] = 3, + [98016] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 18, + ACTIONS(7122), 1, + anon_sym_LBRACE, + ACTIONS(7405), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7119), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7124), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537527,26 +537382,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(3153), 35, + ACTIONS(7129), 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_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -537554,7 +537407,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, @@ -537569,342 +537421,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [97666] = 3, + anon_sym_GT2, + [98085] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8895), 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(10659), 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_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(10722), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10766), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [97727] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6861), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, - anon_sym_LPAREN2, - ACTIONS(11174), 1, - anon_sym_STAR, - ACTIONS(11176), 1, - anon_sym_AMP_AMP, - ACTIONS(11178), 1, - anon_sym_AMP, - ACTIONS(11180), 1, - sym_ms_restrict_modifier, - ACTIONS(11186), 1, - anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(6387), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8379), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11182), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11184), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5060), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6252), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(6859), 13, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [97826] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6821), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, - anon_sym_LPAREN2, - ACTIONS(11174), 1, - anon_sym_STAR, - ACTIONS(11176), 1, - anon_sym_AMP_AMP, - ACTIONS(11178), 1, - anon_sym_AMP, - ACTIONS(11180), 1, - sym_ms_restrict_modifier, - ACTIONS(11186), 1, - anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(6387), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8385), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11182), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11184), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6210), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6215), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(6823), 13, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [97925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8954), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9686), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8956), 30, + ACTIONS(9688), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [97986] = 29, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [98160] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3807), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(3809), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(11040), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(11042), 1, + ACTIONS(10649), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2076), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2221), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(2266), 1, - sym_type_specifier, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(8763), 1, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7364), 1, + sym_type_specifier, + STATE(8754), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2169), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3803), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -537926,10 +537571,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [98099] = 3, + [98273] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 18, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10583), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10178), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -537948,17 +537601,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9335), 35, + anon_sym_DASH_GT, + ACTIONS(10176), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -537980,23 +537632,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_final, - anon_sym_override, - anon_sym_requires, - [98160] = 7, + anon_sym_DASH_GT_STAR, + [98342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 1, - anon_sym_LBRACE, - ACTIONS(7445), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7087), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(7092), 19, + ACTIONS(8905), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538006,24 +537646,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(7097), 29, + ACTIONS(8907), 35, 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_STAR_EQ, anon_sym_SLASH_EQ, @@ -538031,6 +537673,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, @@ -538045,11 +537688,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [98403] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5126), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11161), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7584), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7586), 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___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [98229] = 3, + anon_sym_try, + anon_sym_requires, + [98468] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 18, + ACTIONS(11163), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11165), 1, + anon_sym_AMP_AMP, + ACTIONS(11167), 1, + anon_sym_or, + ACTIONS(11169), 1, + anon_sym_and, + ACTIONS(9293), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538064,16 +537777,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, - ACTIONS(9339), 35, + ACTIONS(9295), 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, @@ -538104,10 +537813,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [98290] = 3, + [98537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 20, + ACTIONS(8915), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538117,18 +537826,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(8907), 33, + ACTIONS(8917), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538136,7 +537843,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538144,6 +537853,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, @@ -538160,17 +537870,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [98351] = 5, + [98598] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - STATE(4614), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9517), 21, + ACTIONS(6801), 2, + anon_sym_final, + anon_sym_override, + STATE(5109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9121), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538180,26 +537890,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(9519), 29, + anon_sym_DASH_GT, + ACTIONS(9123), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538207,143 +537915,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [98416] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5081), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11188), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7223), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7225), 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___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [98481] = 3, + anon_sym_DASH_GT_STAR, + [98663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 24, - aux_sym_preproc_elif_token1, + ACTIONS(8923), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, + 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(5591), 29, + ACTIONS(8925), 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_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_LBRACK, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [98542] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [98724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 20, + ACTIONS(8923), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538353,18 +538002,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(9437), 33, + ACTIONS(8925), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538372,7 +538019,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538380,6 +538029,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, @@ -538396,12 +538046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [98603] = 3, + [98785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 20, + ACTIONS(8923), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538411,18 +538060,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(8915), 33, + ACTIONS(8925), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538430,7 +538077,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538438,6 +538087,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, @@ -538454,86 +538104,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [98664] = 13, + [98846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11197), 1, - anon_sym_virtual, - ACTIONS(11206), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11209), 1, - anon_sym___declspec, - ACTIONS(11215), 1, - anon_sym_explicit, - STATE(4722), 1, - sym_alignas_qualifier, - ACTIONS(11203), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(11212), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11192), 6, + ACTIONS(3034), 1, + anon_sym_LBRACE, + ACTIONS(10886), 1, anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(11190), 7, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(11200), 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(5072), 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(11194), 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, - [98745] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11218), 2, - anon_sym_final, - anon_sym_override, - STATE(5073), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9143), 16, + STATE(5739), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9403), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538543,23 +538125,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(9145), 33, + ACTIONS(9405), 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, @@ -538568,26 +538151,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_requires, - anon_sym_DASH_GT_STAR, - [98810] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [98913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 20, + ACTIONS(8929), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538608,7 +538190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9447), 33, + ACTIONS(8931), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538642,127 +538224,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [98871] = 3, + [98974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 23, - aux_sym_preproc_elif_token1, + ACTIONS(8933), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(3161), 30, + ACTIONS(8935), 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_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_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_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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_COLON_RBRACK, - [98932] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [99035] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, + ACTIONS(6819), 1, + anon_sym___attribute, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, + anon_sym_LPAREN2, + ACTIONS(11173), 1, + anon_sym_STAR, + ACTIONS(11175), 1, + anon_sym_AMP_AMP, + ACTIONS(11177), 1, + anon_sym_AMP, + ACTIONS(11179), 1, + sym_ms_restrict_modifier, + ACTIONS(11185), 1, + anon_sym_LBRACK, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4345), 1, + sym_parameter_list, + STATE(6374), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8429), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11181), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11183), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5072), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6209), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(6815), 13, + 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_GT2, + anon_sym_try, + anon_sym_requires, + [99134] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6841), 1, + anon_sym___attribute, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, + anon_sym_LPAREN2, + ACTIONS(11173), 1, + anon_sym_STAR, + ACTIONS(11175), 1, + anon_sym_AMP_AMP, + ACTIONS(11177), 1, + anon_sym_AMP, + ACTIONS(11179), 1, + sym_ms_restrict_modifier, + ACTIONS(11185), 1, + anon_sym_LBRACK, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4345), 1, + sym_parameter_list, + STATE(6374), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8434), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11181), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11183), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6214), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6225), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(6843), 13, + 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_GT2, + anon_sym_try, + anon_sym_requires, + [99233] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10485), 1, anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, + ACTIONS(10750), 1, anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11133), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, + ACTIONS(11135), 1, anon_sym_PIPE, - ACTIONS(11233), 1, + ACTIONS(11139), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(11145), 1, anon_sym_GT_EQ, - ACTIONS(11243), 1, - anon_sym_or, - ACTIONS(11245), 1, + ACTIONS(11149), 1, anon_sym_and, - ACTIONS(11247), 1, + ACTIONS(11151), 1, anon_sym_bitor, - ACTIONS(11249), 1, + ACTIONS(11153), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(11187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11189), 1, + anon_sym_or, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(11129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(11137), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, + ACTIONS(11147), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(11131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(11141), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(11143), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 18, + ACTIONS(10487), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -538781,38 +538517,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [99039] = 7, + [99340] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(11253), 1, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4167), 1, + anon_sym_enum, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10964), 1, sym_identifier, - STATE(5108), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6913), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6915), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8456), 18, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(10968), 1, + sym_primitive_type, + ACTIONS(10970), 1, + anon_sym_typename, + STATE(2070), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(2283), 1, + sym_type_specifier, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4163), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 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, + [99453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10558), 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, + ACTIONS(10556), 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, @@ -538821,32 +538659,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8454), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + [99514] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 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, + ACTIONS(10722), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(11127), 1, anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, anon_sym_DASH_GT, - [99108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 18, + ACTIONS(9716), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538864,18 +538693,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(7791), 35, + ACTIONS(9718), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -538896,15 +538722,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [99169] = 3, + anon_sym_DASH_GT_STAR, + [99587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 18, + ACTIONS(8929), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538923,7 +538745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9298), 35, + ACTIONS(8931), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -538959,18 +538781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [99230] = 7, + [99648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1974), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10174), 19, + ACTIONS(8933), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -538989,16 +538803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10172), 30, + ACTIONS(8935), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539020,85 +538835,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [99299] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11137), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7675), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7677), 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___attribute__, - anon_sym_COLON, - 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__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [99364] = 5, + [99709] = 5, ACTIONS(3), 1, sym_comment, - STATE(5081), 1, + STATE(5188), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(11188), 4, + ACTIONS(11191), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7717), 6, + ACTIONS(7684), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7719), 42, + ACTIONS(7686), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -539141,68 +538899,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [99429] = 3, + [99774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 23, - aux_sym_preproc_elif_token1, + ACTIONS(8937), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8903), 30, + ACTIONS(8939), 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_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [99490] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [99835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 18, + ACTIONS(8941), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -539221,7 +538979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9310), 35, + ACTIONS(8943), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -539257,10 +539015,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [99551] = 3, + [99896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 18, + ACTIONS(8937), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -539270,16 +539028,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(9318), 35, + ACTIONS(8939), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -539287,9 +539047,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539297,7 +539055,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, @@ -539314,27 +539071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [99612] = 5, + [99957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_EQ, - ACTIONS(5663), 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(5645), 17, + ACTIONS(8941), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -539344,28 +539086,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_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(5638), 22, + ACTIONS(8943), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_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, @@ -539374,79 +539127,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [99677] = 29, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [100018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 1, - anon_sym_enum, - ACTIONS(3206), 1, - anon_sym_class, - ACTIONS(3208), 1, - anon_sym_struct, - ACTIONS(3210), 1, - anon_sym_union, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11046), 1, - sym_identifier, - ACTIONS(11048), 1, + ACTIONS(8778), 5, + anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11052), 1, - anon_sym_typename, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(6642), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7326), 1, - sym_splice_specifier, - STATE(7518), 1, - sym_type_specifier, - STATE(8745), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4373), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3200), 4, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(8776), 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, - STATE(4430), 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -539459,10 +539177,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [99790] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [100079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 24, + ACTIONS(3157), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -539475,7 +539205,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -539487,7 +539216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(5595), 29, + ACTIONS(3155), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -539507,9 +539236,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, 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, @@ -539517,207 +539247,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [99851] = 26, + [100140] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10473), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, - anon_sym_AMP_AMP, - ACTIONS(11229), 1, - anon_sym_PIPE, - ACTIONS(11233), 1, - anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11243), 1, - anon_sym_or, - ACTIONS(11245), 1, - anon_sym_and, - ACTIONS(11247), 1, - anon_sym_bitor, - ACTIONS(11249), 1, - anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11231), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11235), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11237), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10475), 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, - [99958] = 3, + ACTIONS(11196), 1, + anon_sym_virtual, + ACTIONS(11205), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11208), 1, + anon_sym___declspec, + STATE(3492), 1, + sym_alignas_qualifier, + ACTIONS(9946), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(11202), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11211), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5086), 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(11199), 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(11193), 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(9944), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [100219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 20, + ACTIONS(8923), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9335), 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_QMARK, - anon_sym_STAR_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, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [100019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9337), 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(9339), 33, + ACTIONS(8925), 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_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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [100080] = 3, + anon_sym_COLON_RBRACK, + [100280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 23, + ACTIONS(8937), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -539741,7 +539399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8923), 30, + ACTIONS(8939), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -539772,23 +539430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [100141] = 9, + [100341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9657), 17, + ACTIONS(9011), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -539806,15 +539451,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9659), 29, + anon_sym_DOT, + ACTIONS(9013), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539835,33 +539483,20 @@ 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, - [100214] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11223), 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [100402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8953), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 14, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -539874,15 +539509,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 27, + anon_sym_DOT, + ACTIONS(8955), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -539901,27 +539539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [100291] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 17, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [100463] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11214), 1, + anon_sym_AMP_AMP, + ACTIONS(11216), 1, + anon_sym_and, + ACTIONS(9329), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -539931,23 +539563,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, - ACTIONS(9709), 27, + anon_sym_DOT, + ACTIONS(9331), 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, @@ -539955,7 +539588,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, @@ -539966,71 +539598,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [100366] = 24, + 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, + [100528] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(10437), 1, + anon_sym_EQ, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, + ACTIONS(10750), 1, anon_sym_LT_EQ_GT, - ACTIONS(11227), 1, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11133), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, + ACTIONS(11135), 1, anon_sym_PIPE, - ACTIONS(11233), 1, + ACTIONS(11139), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(11145), 1, anon_sym_GT_EQ, - ACTIONS(11245), 1, + ACTIONS(11149), 1, anon_sym_and, - ACTIONS(11247), 1, + ACTIONS(11151), 1, anon_sym_bitor, - ACTIONS(11249), 1, + ACTIONS(11153), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(11187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11189), 1, + anon_sym_or, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(10801), 2, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(11129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(11137), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, + ACTIONS(11147), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(11131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(11141), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(11143), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(10439), 18, 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, @@ -540046,142 +539687,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [100469] = 22, + [100635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11229), 1, - anon_sym_PIPE, - ACTIONS(11233), 1, - anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11247), 1, - anon_sym_bitor, - ACTIONS(11249), 1, - anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(9015), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11237), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_DASH_GT_STAR, - [100568] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11233), 1, - anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11249), 1, - anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11231), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11241), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11235), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11237), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 4, - anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9709), 21, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9017), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540196,66 +539734,83 @@ 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_DASH_GT_STAR, - [100663] = 19, + 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_requires, + [100696] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(10489), 1, + anon_sym_EQ, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, + ACTIONS(10750), 1, anon_sym_LT_EQ_GT, - ACTIONS(11233), 1, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11133), 1, + anon_sym_AMP_AMP, + ACTIONS(11135), 1, + anon_sym_PIPE, + ACTIONS(11139), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(11145), 1, anon_sym_GT_EQ, - ACTIONS(11249), 1, + ACTIONS(11149), 1, + anon_sym_and, + ACTIONS(11151), 1, + anon_sym_bitor, + ACTIONS(11153), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(11187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11189), 1, + anon_sym_or, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(11129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11241), 2, + ACTIONS(11137), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11147), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(11131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(11141), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(11143), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 21, + ACTIONS(10491), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540270,63 +539825,40 @@ 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_DASH_GT_STAR, - [100756] = 17, + [100803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(8957), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11237), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 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(9709), 22, + anon_sym_DOT, + ACTIONS(8959), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540341,62 +539873,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_DASH_GT_STAR, - [100845] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11221), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [100864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8961), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11237), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 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(9709), 25, + anon_sym_DOT, + ACTIONS(8963), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540411,61 +539931,54 @@ 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, - [100932] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11221), 2, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [100925] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11218), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9593), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 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(9709), 26, + anon_sym_DOT, + ACTIONS(9595), 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, @@ -540480,97 +539993,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_GT_STAR, - [101015] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4735), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(11137), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7681), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7683), 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___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [101080] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11221), 2, + [100988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8965), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -540583,15 +540022,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 27, + anon_sym_DOT, + ACTIONS(8967), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540610,19 +540052,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [101159] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [101049] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(6572), 1, + ACTIONS(6566), 1, anon_sym_LBRACE, - ACTIONS(11255), 1, + ACTIONS(11220), 1, anon_sym_LT, - STATE(5351), 1, + STATE(5307), 1, sym_template_argument_list, - ACTIONS(6574), 17, + ACTIONS(6568), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -540640,7 +540088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6567), 32, + ACTIONS(6561), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -540673,10 +540121,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [101228] = 3, + [101118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 23, + ACTIONS(8929), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -540700,7 +540148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8948), 30, + ACTIONS(8931), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -540731,220 +540179,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [101289] = 13, + [101179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(3168), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 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(9709), 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_and_eq, - anon_sym_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, - [101370] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11258), 1, - sym_identifier, - STATE(5108), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(11261), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11264), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8408), 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(8406), 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, - [101439] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(11267), 1, - anon_sym_LT, - STATE(5314), 1, - sym_template_argument_list, - ACTIONS(9578), 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(9580), 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, - [101506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 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(7966), 35, + ACTIONS(3166), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -540952,9 +540211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -540962,7 +540219,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, @@ -540979,11 +540235,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [101567] = 3, + [101240] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3232), 1, + anon_sym_enum, + ACTIONS(3234), 1, + anon_sym_class, + ACTIONS(3236), 1, + anon_sym_struct, + ACTIONS(3238), 1, + anon_sym_union, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10990), 1, + sym_identifier, + ACTIONS(10992), 1, + anon_sym_COLON_COLON, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(10996), 1, + anon_sym_typename, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4143), 1, + sym_template_type, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, + sym_decltype_auto, + STATE(6638), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7353), 1, + sym_splice_specifier, + STATE(7550), 1, + sym_type_specifier, + STATE(8710), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4361), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3228), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4523), 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, + [101353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 18, + ACTIONS(3034), 1, + anon_sym_LBRACE, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + STATE(5801), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9316), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -540993,26 +540341,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(9363), 35, + ACTIONS(9318), 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_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541020,7 +540367,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, @@ -541035,48 +540381,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101628] = 5, + anon_sym_GT2, + [101420] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(11270), 1, - anon_sym_LT, - STATE(1963), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(10459), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10680), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10726), 1, + anon_sym_QMARK, + ACTIONS(10750), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11133), 1, + anon_sym_AMP_AMP, + ACTIONS(11135), 1, + anon_sym_PIPE, + ACTIONS(11139), 1, + anon_sym_AMP, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + ACTIONS(11149), 1, + anon_sym_and, + ACTIONS(11151), 1, + anon_sym_bitor, + ACTIONS(11153), 1, + anon_sym_bitand, + ACTIONS(11187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11189), 1, + anon_sym_or, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11129), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11137), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11147), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11141), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11143), 3, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9652), 34, - anon_sym_DOT_DOT_DOT, + anon_sym_LT, + ACTIONS(10463), 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_SEMI, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -541090,18 +540464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [101693] = 3, + anon_sym_DASH_GT_STAR, + [101531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 18, + ACTIONS(9377), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541120,7 +540487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9367), 35, + ACTIONS(9379), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -541156,10 +540523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [101754] = 3, + [101592] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 18, + ACTIONS(6483), 1, + anon_sym_LBRACK_LBRACK, + STATE(3152), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541173,12 +540545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9371), 35, + ACTIONS(9568), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -541187,8 +540560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541211,75 +540583,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101815] = 3, + [101657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 18, + ACTIONS(8965), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9375), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8967), 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_RBRACK_RBRACK, + 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [101876] = 5, + anon_sym_COLON_RBRACK, + [101718] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11270), 1, - anon_sym_LT, - STATE(1973), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(11230), 1, + anon_sym_virtual, + ACTIONS(11239), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11242), 1, + anon_sym___declspec, + ACTIONS(11248), 1, + anon_sym_explicit, + STATE(4659), 1, + sym_alignas_qualifier, + ACTIONS(11236), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11245), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11225), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(11223), 7, + anon_sym_AMP, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(11233), 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(5108), 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(11227), 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, + [101799] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11251), 2, + anon_sym_final, + anon_sym_override, + STATE(5109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9129), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541290,26 +540729,23 @@ 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(9652), 33, + anon_sym_DASH_GT, + ACTIONS(9131), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541321,37 +540757,103 @@ 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, - [101941] = 10, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [101864] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(9661), 1, + anon_sym_EQ, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(10750), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(11133), 1, + anon_sym_AMP_AMP, + ACTIONS(11135), 1, + anon_sym_PIPE, + ACTIONS(11139), 1, + anon_sym_AMP, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + ACTIONS(11149), 1, + anon_sym_and, + ACTIONS(11151), 1, + anon_sym_bitor, + ACTIONS(11153), 1, + anon_sym_bitand, + ACTIONS(11187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11189), 1, + anon_sym_or, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9638), 17, + ACTIONS(11129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11137), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11147), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11141), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11143), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9659), 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, + [101971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541361,23 +540863,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9640), 27, + anon_sym_DOT, + ACTIONS(3155), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541385,7 +540890,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, @@ -541396,70 +540900,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [102016] = 29, + 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, + [102032] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(3264), 1, sym_auto, - ACTIONS(3238), 1, + ACTIONS(3266), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(4397), 1, + ACTIONS(3832), 1, anon_sym_enum, - ACTIONS(4399), 1, + ACTIONS(3834), 1, anon_sym_class, - ACTIONS(4401), 1, + ACTIONS(3836), 1, anon_sym_struct, - ACTIONS(4403), 1, + ACTIONS(3838), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11050), 1, + ACTIONS(10994), 1, sym_primitive_type, - ACTIONS(11057), 1, + ACTIONS(11005), 1, sym_identifier, - ACTIONS(11059), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(11061), 1, + ACTIONS(11009), 1, anon_sym_typename, - STATE(3490), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3985), 1, + STATE(3579), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4036), 1, sym_type_specifier, - STATE(4043), 1, + STATE(4143), 1, sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4272), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(4426), 1, + STATE(4522), 1, sym_decltype_auto, - STATE(8676), 1, + STATE(8722), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(4373), 2, + STATE(4361), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4395), 4, + ACTIONS(3830), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(4523), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -541481,69 +540992,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [102129] = 26, + [102145] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10538), 1, + ACTIONS(10467), 1, anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, + ACTIONS(10750), 1, anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11133), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, + ACTIONS(11135), 1, anon_sym_PIPE, - ACTIONS(11233), 1, + ACTIONS(11139), 1, anon_sym_AMP, - ACTIONS(11239), 1, + ACTIONS(11145), 1, anon_sym_GT_EQ, - ACTIONS(11243), 1, - anon_sym_or, - ACTIONS(11245), 1, + ACTIONS(11149), 1, anon_sym_and, - ACTIONS(11247), 1, + ACTIONS(11151), 1, anon_sym_bitor, - ACTIONS(11249), 1, + ACTIONS(11153), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, + ACTIONS(11187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11189), 1, + anon_sym_or, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11221), 2, + ACTIONS(11129), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, + ACTIONS(11137), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11241), 2, + ACTIONS(11147), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + ACTIONS(11131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + ACTIONS(11141), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11237), 3, + ACTIONS(11143), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 18, + ACTIONS(10469), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -541562,14 +541073,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_DASH_GT_STAR, - [102236] = 5, + [102252] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11273), 1, + ACTIONS(7122), 1, + anon_sym_LBRACE, + ACTIONS(7405), 1, anon_sym_LT, - STATE(2846), 1, + STATE(2048), 1, sym_template_argument_list, - ACTIONS(9650), 19, + ACTIONS(7119), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7124), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541582,24 +541098,21 @@ 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(9652), 32, + ACTIONS(7129), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541621,11 +541134,102 @@ 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, - [102301] = 3, + anon_sym_DASH_GT, + [102321] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3895), 1, + anon_sym_enum, + ACTIONS(3897), 1, + anon_sym_class, + ACTIONS(3899), 1, + anon_sym_struct, + ACTIONS(3901), 1, + anon_sym_union, + ACTIONS(3905), 1, + sym_auto, + ACTIONS(3907), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11055), 1, + sym_identifier, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(11059), 1, + sym_primitive_type, + ACTIONS(11061), 1, + anon_sym_typename, + STATE(2345), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2649), 1, + sym_type_specifier, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(2901), 1, + sym_template_type, + STATE(3048), 1, + sym_qualified_type_identifier, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3576), 1, + sym_decltype_auto, + STATE(8726), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3396), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3575), 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, + [102434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 18, + ACTIONS(3034), 1, + anon_sym_LBRACE, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + STATE(5803), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9305), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541635,26 +541239,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(8422), 35, + ACTIONS(9307), 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_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541662,7 +541265,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, @@ -541677,13 +541279,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [102362] = 3, + anon_sym_GT2, + [102501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 18, + ACTIONS(8953), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541693,16 +541293,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(9409), 35, + ACTIONS(8955), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -541710,9 +541312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541720,7 +541320,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, @@ -541737,11 +541336,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [102423] = 3, + [102562] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 18, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10583), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10221), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541760,17 +541368,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9417), 35, + anon_sym_DASH_GT, + ACTIONS(10219), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541792,14 +541399,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [102484] = 3, + anon_sym_DASH_GT_STAR, + [102631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 18, + ACTIONS(10661), 1, + anon_sym_LBRACK, + STATE(5321), 1, + sym_new_declarator, + ACTIONS(9547), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541818,17 +541426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9421), 35, + anon_sym_DASH_GT, + ACTIONS(9549), 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_RBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541850,44 +541459,428 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_DASH_GT_STAR, + [102696] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4716), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11254), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7618), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7620), 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___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [102761] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4716), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11254), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7622), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7624), 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___attribute__, + anon_sym_COLON, + 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__, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [102545] = 3, + [102826] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 18, + ACTIONS(7117), 1, + anon_sym_const, + ACTIONS(7126), 1, + anon_sym_AMP, + ACTIONS(8655), 1, + anon_sym_LT, + STATE(3011), 1, + sym_template_argument_list, + ACTIONS(7119), 6, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK, + ACTIONS(7124), 7, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_DOT, + ACTIONS(7122), 15, + anon_sym___extension__, + 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, + ACTIONS(7129), 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_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9425), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [102899] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3943), 1, + anon_sym_enum, + ACTIONS(3945), 1, + anon_sym_class, + ACTIONS(3947), 1, + anon_sym_struct, + ACTIONS(3949), 1, + anon_sym_union, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11063), 1, + sym_identifier, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11069), 1, + anon_sym_typename, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(3964), 1, + sym_type_specifier, + STATE(4080), 1, + sym_decltype_auto, + STATE(4222), 1, + sym_splice_specifier, + STATE(8737), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3960), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3939), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4081), 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, + [103012] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10893), 1, + sym_identifier, + ACTIONS(10895), 1, + anon_sym_COLON_COLON, + ACTIONS(10899), 1, + sym_primitive_type, + ACTIONS(10901), 1, + anon_sym_enum, + ACTIONS(10903), 1, + anon_sym_class, + ACTIONS(10905), 1, + anon_sym_struct, + ACTIONS(10907), 1, + anon_sym_union, + ACTIONS(10909), 1, + anon_sym_typename, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(7400), 1, + sym_splice_specifier, + STATE(7579), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7663), 1, + sym_template_type, + STATE(7722), 1, + sym_qualified_type_identifier, + STATE(7723), 1, + sym_type_specifier, + STATE(8705), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(10897), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [103125] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10471), 1, + anon_sym_EQ, + ACTIONS(10659), 1, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + ACTIONS(10680), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10726), 1, + anon_sym_QMARK, + ACTIONS(10750), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11133), 1, anon_sym_AMP_AMP, + ACTIONS(11135), 1, + anon_sym_PIPE, + ACTIONS(11139), 1, + anon_sym_AMP, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + ACTIONS(11149), 1, + anon_sym_and, + ACTIONS(11151), 1, + anon_sym_bitor, + ACTIONS(11153), 1, + anon_sym_bitand, + ACTIONS(11187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11189), 1, + anon_sym_or, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11137), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11147), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11141), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + anon_sym_not_eq, + ACTIONS(11143), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10473), 16, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -541901,21 +541894,275 @@ 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_DASH_GT_STAR, + [103236] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4716), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11254), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7658), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7660), 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___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [103301] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8941), 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_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8943), 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_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, + anon_sym_COLON_RBRACK, + [103362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9011), 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_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, anon_sym_final, anon_sym_override, anon_sym_requires, - [102606] = 3, + ACTIONS(9013), 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_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, + anon_sym_COLON_RBRACK, + [103423] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + sym_identifier, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5142), 1, + sym_primitive_type, + ACTIONS(5144), 1, + anon_sym_enum, + ACTIONS(5146), 1, + anon_sym_class, + ACTIONS(5148), 1, + anon_sym_struct, + ACTIONS(5150), 1, + anon_sym_union, + ACTIONS(5152), 1, + anon_sym_typename, + ACTIONS(5154), 1, + sym_auto, + ACTIONS(5156), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4393), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4989), 1, + sym_splice_specifier, + STATE(5341), 1, + sym_template_type, + STATE(5354), 1, + sym__splice_specialization_specifier, + STATE(5691), 1, + sym_qualified_type_identifier, + STATE(6056), 1, + sym_decltype_auto, + STATE(6460), 1, + sym_type_specifier, + STATE(8753), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5990), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(5140), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6059), 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, + [103536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 18, + ACTIONS(11256), 1, + anon_sym_LT, + STATE(1971), 1, + sym_template_argument_list, + ACTIONS(9633), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541926,15 +542173,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, - ACTIONS(8907), 35, + ACTIONS(9635), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -541943,8 +542190,9 @@ 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -541967,13 +542215,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [102667] = 3, + [103601] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 18, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10583), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10243), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -541992,17 +542245,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9437), 35, + anon_sym_DASH_GT, + ACTIONS(10241), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542024,14 +542276,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_final, - anon_sym_override, - anon_sym_requires, - [102728] = 3, + anon_sym_DASH_GT_STAR, + [103670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 18, + ACTIONS(9377), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542041,16 +542290,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(8915), 35, + ACTIONS(9379), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -542058,9 +542309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542068,7 +542317,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, @@ -542085,134 +542333,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [102789] = 3, + [103731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 18, + ACTIONS(8953), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9447), 35, - 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_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, anon_sym_final, anon_sym_override, anon_sym_requires, - [102850] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5638), 26, + ACTIONS(8955), 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_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_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5645), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym___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, - [102913] = 6, + anon_sym_COLON_RBRACK, + [103792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(11276), 1, - anon_sym_LT, - STATE(5314), 1, - sym_template_argument_list, - ACTIONS(9495), 18, + ACTIONS(9369), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542223,6 +542407,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, @@ -542230,11 +542415,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9497), 32, + ACTIONS(9371), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -542242,6 +542425,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -542263,11 +542447,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, - [102980] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [103853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 23, + ACTIONS(9015), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -542291,7 +542478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8998), 30, + ACTIONS(9017), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -542322,24 +542509,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [103041] = 29, + [103914] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(4062), 1, + ACTIONS(4028), 1, anon_sym_enum, - ACTIONS(4064), 1, + ACTIONS(4030), 1, anon_sym_class, - ACTIONS(4066), 1, + ACTIONS(4032), 1, anon_sym_struct, - ACTIONS(4068), 1, + ACTIONS(4034), 1, anon_sym_union, - ACTIONS(4072), 1, + ACTIONS(4040), 1, sym_auto, - ACTIONS(4074), 1, + ACTIONS(4042), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, ACTIONS(11071), 1, sym_identifier, @@ -542349,42 +542536,42 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, ACTIONS(11077), 1, anon_sym_typename, - STATE(2356), 1, + STATE(2264), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2630), 1, + STATE(2475), 1, sym_type_specifier, - STATE(2742), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(2921), 1, - sym__splice_specialization_specifier, - STATE(2933), 1, + STATE(2665), 1, sym_template_type, - STATE(3031), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2733), 1, sym_qualified_type_identifier, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3527), 1, + STATE(3230), 1, sym_decltype_auto, - STATE(8686), 1, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8741), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3447), 2, + STATE(3080), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4058), 4, + ACTIONS(4024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3528), 7, + STATE(3236), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -542406,214 +542593,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103154] = 7, + [104027] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 1, - anon_sym_LBRACE, - ACTIONS(7445), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7087), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(7092), 17, + ACTIONS(11259), 1, + sym_identifier, + STATE(5195), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6892), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6894), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8466), 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_LT, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7097), 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_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_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [103223] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 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(6596), 32, + sym_literal_suffix, + ACTIONS(8464), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [103286] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10477), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10717), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10763), 1, - anon_sym_QMARK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, - anon_sym_AMP_AMP, - ACTIONS(11229), 1, - anon_sym_PIPE, - ACTIONS(11233), 1, - anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11243), 1, - anon_sym_or, - ACTIONS(11245), 1, - anon_sym_and, - ACTIONS(11247), 1, - anon_sym_bitor, - ACTIONS(11249), 1, - anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11221), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11231), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11235), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11237), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10479), 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, - [103397] = 3, + [104096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 18, + ACTIONS(9373), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542632,7 +542677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8952), 35, + ACTIONS(9375), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -542668,18 +542713,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [103458] = 7, + [104157] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11279), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11281), 1, + ACTIONS(11214), 1, anon_sym_AMP_AMP, - ACTIONS(11283), 1, - anon_sym_or, - ACTIONS(11285), 1, + ACTIONS(11216), 1, anon_sym_and, - ACTIONS(9393), 16, + ACTIONS(11261), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11263), 1, + anon_sym_or, + ACTIONS(9293), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542689,22 +542734,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_xor, anon_sym_DOT, - ACTIONS(9395), 33, + ACTIONS(9295), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, 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, @@ -542712,7 +542757,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, @@ -542729,71 +542773,466 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [103527] = 3, + [104226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 18, + ACTIONS(8933), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8956), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8935), 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_RBRACK_RBRACK, + 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, + anon_sym_COLON_RBRACK, + [104287] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11025), 1, + sym_identifier, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + ACTIONS(11031), 1, + sym_primitive_type, + ACTIONS(11033), 1, + anon_sym_enum, + ACTIONS(11035), 1, + anon_sym_class, + ACTIONS(11037), 1, + anon_sym_struct, + ACTIONS(11039), 1, + anon_sym_union, + ACTIONS(11041), 1, + anon_sym_typename, + ACTIONS(11043), 1, + sym_auto, + ACTIONS(11045), 1, + anon_sym_decltype, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(6416), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6587), 1, + sym_splice_specifier, + STATE(6734), 1, + sym_type_specifier, + STATE(7039), 1, + sym__splice_specialization_specifier, + STATE(7280), 1, + sym_template_type, + STATE(7398), 1, + sym_qualified_type_identifier, + STATE(7639), 1, + sym_decltype_auto, + STATE(8745), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7597), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7640), 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, + [104400] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3802), 1, + anon_sym_enum, + ACTIONS(3804), 1, + anon_sym_class, + ACTIONS(3806), 1, + anon_sym_struct, + ACTIONS(3808), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(11091), 1, + anon_sym_typename, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3537), 1, + sym_type_specifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(8708), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [104513] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5192), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11265), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7690), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7692), 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___attribute__, + anon_sym_COLON, + 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__, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [103588] = 4, + [104578] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(11287), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 20, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3802), 1, + anon_sym_enum, + ACTIONS(3804), 1, + anon_sym_class, + ACTIONS(3806), 1, + anon_sym_struct, + ACTIONS(3808), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(11091), 1, + anon_sym_typename, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2972), 1, + sym_type_specifier, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(8708), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, + [104691] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + sym_identifier, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5142), 1, + sym_primitive_type, + ACTIONS(5144), 1, + anon_sym_enum, + ACTIONS(5146), 1, + anon_sym_class, + ACTIONS(5148), 1, + anon_sym_struct, + ACTIONS(5150), 1, + anon_sym_union, + ACTIONS(5152), 1, + anon_sym_typename, + ACTIONS(5154), 1, + sym_auto, + ACTIONS(5156), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4393), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4989), 1, + sym_splice_specifier, + STATE(5341), 1, + sym_template_type, + STATE(5354), 1, + sym__splice_specialization_specifier, + STATE(5691), 1, + sym_qualified_type_identifier, + STATE(6056), 1, + sym_decltype_auto, + STATE(6271), 1, + sym_type_specifier, + STATE(8753), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5990), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(5140), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6059), 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, + [104804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8957), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542803,28 +543242,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(9699), 32, + ACTIONS(8959), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542832,7 +543269,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, @@ -542846,69 +543282,325 @@ 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, - [103651] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [104865] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4195), 1, + anon_sym_enum, + ACTIONS(4197), 1, + anon_sym_class, + ACTIONS(4199), 1, + anon_sym_struct, + ACTIONS(4201), 1, + anon_sym_union, + ACTIONS(4207), 1, + sym_auto, + ACTIONS(4209), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11079), 1, + sym_identifier, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11085), 1, + anon_sym_typename, + STATE(2267), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2498), 1, + sym_type_specifier, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(2728), 1, + sym_template_type, + STATE(2818), 1, + sym_qualified_type_identifier, + STATE(3096), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8746), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2978), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4191), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3097), 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, + [104978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 20, + ACTIONS(8905), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_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(8952), 33, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8907), 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_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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [103712] = 3, + anon_sym_COLON_RBRACK, + [105039] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4141), 1, + anon_sym_enum, + ACTIONS(4143), 1, + anon_sym_class, + ACTIONS(4145), 1, + anon_sym_struct, + ACTIONS(4147), 1, + anon_sym_union, + ACTIONS(4151), 1, + sym_auto, + ACTIONS(4153), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10915), 1, + sym_identifier, + ACTIONS(10917), 1, + anon_sym_COLON_COLON, + ACTIONS(10919), 1, + sym_primitive_type, + ACTIONS(10921), 1, + anon_sym_typename, + STATE(2177), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2314), 1, + sym_type_specifier, + STATE(2581), 1, + sym_splice_specifier, + STATE(2628), 1, + sym_template_type, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2685), 1, + sym_qualified_type_identifier, + STATE(3013), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8744), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2934), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4137), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3045), 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, + [105152] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4167), 1, + anon_sym_enum, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10964), 1, + sym_identifier, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(10968), 1, + sym_primitive_type, + ACTIONS(10970), 1, + anon_sym_typename, + STATE(2070), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2125), 1, + sym_type_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4163), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 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, + [105265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 18, + ACTIONS(8961), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542918,16 +543610,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(8994), 35, + ACTIONS(8963), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -542935,9 +543629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -542945,7 +543637,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, @@ -542962,11 +543653,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [103773] = 3, + [105326] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3232), 1, + anon_sym_enum, + ACTIONS(3234), 1, + anon_sym_class, + ACTIONS(3236), 1, + anon_sym_struct, + ACTIONS(3238), 1, + anon_sym_union, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10990), 1, + sym_identifier, + ACTIONS(10992), 1, + anon_sym_COLON_COLON, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(10996), 1, + anon_sym_typename, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4143), 1, + sym_template_type, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, + sym_decltype_auto, + STATE(6638), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6975), 1, + sym_type_specifier, + STATE(7353), 1, + sym_splice_specifier, + STATE(8710), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4361), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3228), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4523), 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, + [105439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 18, + ACTIONS(6656), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6658), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -542985,9 +543764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8994), 35, + anon_sym_DASH_GT, + ACTIONS(6651), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -542995,7 +543776,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -543017,73 +543797,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [103834] = 29, + anon_sym_DASH_GT_STAR, + [105502] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(4314), 1, + ACTIONS(3232), 1, anon_sym_enum, - ACTIONS(4316), 1, + ACTIONS(3234), 1, anon_sym_class, - ACTIONS(4318), 1, + ACTIONS(3236), 1, anon_sym_struct, - ACTIONS(4320), 1, + ACTIONS(3238), 1, anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10990), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(11083), 1, + ACTIONS(10994), 1, sym_primitive_type, - ACTIONS(11085), 1, + ACTIONS(10996), 1, anon_sym_typename, - STATE(3488), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3759), 1, + STATE(4143), 1, sym_template_type, - STATE(3819), 1, + STATE(4265), 1, sym_qualified_type_identifier, - STATE(4023), 1, - sym_type_specifier, - STATE(4119), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, sym_decltype_auto, - STATE(4263), 1, + STATE(6638), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6771), 1, + sym_type_specifier, + STATE(7353), 1, sym_splice_specifier, - STATE(8675), 1, + STATE(8710), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(3967), 2, + STATE(4361), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4310), 4, + ACTIONS(3228), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(4523), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -543105,97 +543882,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [103947] = 3, + [105615] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 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, + ACTIONS(10552), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(8994), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10659), 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(10722), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(10750), 1, anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11133), 1, + anon_sym_AMP_AMP, + ACTIONS(11135), 1, + anon_sym_PIPE, + ACTIONS(11139), 1, + anon_sym_AMP, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + ACTIONS(11149), 1, + anon_sym_and, + ACTIONS(11151), 1, anon_sym_bitor, + ACTIONS(11153), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11189), 1, + anon_sym_or, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + ACTIONS(10766), 2, + anon_sym_DOT, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [104008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8954), 20, + ACTIONS(11129), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11137), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11147), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11141), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11143), 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(8956), 33, + ACTIONS(10554), 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_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -543203,28 +543955,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [104069] = 3, + anon_sym_DASH_GT_STAR, + [105722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 23, + ACTIONS(5587), 24, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -543237,6 +543979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute__, anon_sym___attribute, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -543248,7 +543991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8887), 30, + ACTIONS(5589), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -543268,10 +544011,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, 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, @@ -543279,46 +544021,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [104130] = 5, + [105783] = 29, ACTIONS(3), 1, sym_comment, - STATE(4735), 1, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3802), 1, + anon_sym_enum, + ACTIONS(3804), 1, + anon_sym_class, + ACTIONS(3806), 1, + anon_sym_struct, + ACTIONS(3808), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(11091), 1, + anon_sym_typename, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(11137), 4, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(3795), 1, + sym_type_specifier, + STATE(8708), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7723), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7725), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(3139), 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_COLON, - 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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543330,55 +544105,979 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, + [105896] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + sym_identifier, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5142), 1, + sym_primitive_type, + ACTIONS(5144), 1, + anon_sym_enum, + ACTIONS(5146), 1, + anon_sym_class, + ACTIONS(5148), 1, + anon_sym_struct, + ACTIONS(5150), 1, + anon_sym_union, + ACTIONS(5152), 1, + anon_sym_typename, + ACTIONS(5154), 1, + sym_auto, + ACTIONS(5156), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4393), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4989), 1, + sym_splice_specifier, + STATE(5341), 1, + sym_template_type, + STATE(5354), 1, + sym__splice_specialization_specifier, + STATE(5691), 1, + sym_qualified_type_identifier, + STATE(6056), 1, + sym_decltype_auto, + STATE(6207), 1, + sym_type_specifier, + STATE(8753), 1, + sym__scope_resolution, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(5990), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(5140), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(6059), 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, + [106009] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11165), 1, + anon_sym_AMP_AMP, + ACTIONS(11169), 1, + anon_sym_and, + ACTIONS(9329), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9331), 34, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [104195] = 5, + [106074] = 29, ACTIONS(3), 1, sym_comment, - STATE(4735), 1, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(3284), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3832), 1, + anon_sym_enum, + ACTIONS(3834), 1, + anon_sym_class, + ACTIONS(3836), 1, + anon_sym_struct, + ACTIONS(3838), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(11005), 1, + sym_identifier, + ACTIONS(11007), 1, + anon_sym_COLON_COLON, + ACTIONS(11009), 1, + anon_sym_typename, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3579), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(11137), 4, + STATE(3722), 1, + sym_type_specifier, + STATE(4143), 1, + sym_template_type, + STATE(4219), 1, + sym_splice_specifier, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, + sym_decltype_auto, + STATE(8722), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(4361), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3830), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7727), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, + STATE(4523), 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___asm, - ACTIONS(7729), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106187] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11025), 1, + sym_identifier, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + ACTIONS(11031), 1, + sym_primitive_type, + ACTIONS(11033), 1, + anon_sym_enum, + ACTIONS(11035), 1, + anon_sym_class, + ACTIONS(11037), 1, + anon_sym_struct, + ACTIONS(11039), 1, + anon_sym_union, + ACTIONS(11041), 1, + anon_sym_typename, + ACTIONS(11043), 1, + sym_auto, + ACTIONS(11045), 1, + anon_sym_decltype, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(6416), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6528), 1, + sym_type_specifier, + STATE(6587), 1, + sym_splice_specifier, + STATE(7039), 1, + sym__splice_specialization_specifier, + STATE(7280), 1, + sym_template_type, + STATE(7398), 1, + sym_qualified_type_identifier, + STATE(7639), 1, + sym_decltype_auto, + STATE(8745), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7597), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(11029), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(7640), 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_COLON, - 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [106300] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3895), 1, + anon_sym_enum, + ACTIONS(3897), 1, + anon_sym_class, + ACTIONS(3899), 1, + anon_sym_struct, + ACTIONS(3901), 1, + anon_sym_union, + ACTIONS(3905), 1, + sym_auto, + ACTIONS(3907), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11055), 1, + sym_identifier, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(11059), 1, + sym_primitive_type, + ACTIONS(11061), 1, + anon_sym_typename, + STATE(2345), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2403), 1, + sym_type_specifier, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(2901), 1, + sym_template_type, + STATE(3048), 1, + sym_qualified_type_identifier, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3576), 1, + sym_decltype_auto, + STATE(8726), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3396), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3575), 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, + [106413] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3943), 1, + anon_sym_enum, + ACTIONS(3945), 1, + anon_sym_class, + ACTIONS(3947), 1, + anon_sym_struct, + ACTIONS(3949), 1, + anon_sym_union, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11063), 1, + sym_identifier, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11069), 1, + anon_sym_typename, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3749), 1, + sym_type_specifier, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(4080), 1, + sym_decltype_auto, + STATE(4222), 1, + sym_splice_specifier, + STATE(8737), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3960), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3939), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4081), 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, + [106526] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(4411), 1, + anon_sym_enum, + ACTIONS(4413), 1, + anon_sym_class, + ACTIONS(4415), 1, + anon_sym_struct, + ACTIONS(4417), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11093), 1, + sym_identifier, + ACTIONS(11095), 1, + anon_sym_COLON_COLON, + ACTIONS(11097), 1, + anon_sym_typename, + STATE(2914), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3496), 1, + sym_type_specifier, + STATE(3721), 1, + sym_splice_specifier, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(4080), 1, + sym_decltype_auto, + STATE(8750), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3960), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4407), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4081), 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, + [106639] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4167), 1, + anon_sym_enum, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10964), 1, + sym_identifier, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(10968), 1, + sym_primitive_type, + ACTIONS(10970), 1, + anon_sym_typename, + STATE(2070), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(2375), 1, + sym_type_specifier, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4163), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 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, + [106752] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4028), 1, + anon_sym_enum, + ACTIONS(4030), 1, + anon_sym_class, + ACTIONS(4032), 1, + anon_sym_struct, + ACTIONS(4034), 1, + anon_sym_union, + ACTIONS(4040), 1, + sym_auto, + ACTIONS(4042), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11071), 1, + sym_identifier, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(11075), 1, + sym_primitive_type, + ACTIONS(11077), 1, + anon_sym_typename, + STATE(2264), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2356), 1, + sym_type_specifier, + STATE(2631), 1, + sym_splice_specifier, + STATE(2665), 1, + sym_template_type, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2733), 1, + sym_qualified_type_identifier, + STATE(3230), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8741), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3080), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4024), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3236), 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, + [106865] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4195), 1, + anon_sym_enum, + ACTIONS(4197), 1, + anon_sym_class, + ACTIONS(4199), 1, + anon_sym_struct, + ACTIONS(4201), 1, + anon_sym_union, + ACTIONS(4207), 1, + sym_auto, + ACTIONS(4209), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11079), 1, + sym_identifier, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11085), 1, + anon_sym_typename, + STATE(2267), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2350), 1, + sym_type_specifier, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(2728), 1, + sym_template_type, + STATE(2818), 1, + sym_qualified_type_identifier, + STATE(3096), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8746), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2978), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4191), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3097), 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, + [106978] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(4257), 1, + anon_sym_enum, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11099), 1, + sym_identifier, + ACTIONS(11101), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2093), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(2249), 1, + sym_type_specifier, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4253), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 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, + [107091] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3802), 1, + anon_sym_enum, + ACTIONS(3804), 1, + anon_sym_class, + ACTIONS(3806), 1, + anon_sym_struct, + ACTIONS(3808), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(11091), 1, + anon_sym_typename, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3530), 1, + sym_type_specifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(8708), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 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, @@ -543390,55 +545089,79 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [104260] = 5, + [107204] = 29, ACTIONS(3), 1, sym_comment, - STATE(5036), 1, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(4411), 1, + anon_sym_enum, + ACTIONS(4413), 1, + anon_sym_class, + ACTIONS(4415), 1, + anon_sym_struct, + ACTIONS(4417), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11093), 1, + sym_identifier, + ACTIONS(11095), 1, + anon_sym_COLON_COLON, + ACTIONS(11097), 1, + anon_sym_typename, + STATE(2914), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(11289), 4, + STATE(3017), 1, + sym_type_specifier, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3721), 1, + sym_splice_specifier, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(4080), 1, + sym_decltype_auto, + STATE(8750), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(3960), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4407), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7555), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7557), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(4081), 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_COLON, - 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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543450,179 +545173,79 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [104325] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1974), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10206), 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(10204), 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, - [104394] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1974), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10186), 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(10184), 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, - [104463] = 5, + [107317] = 29, ACTIONS(3), 1, sym_comment, - STATE(5037), 1, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4167), 1, + anon_sym_enum, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10964), 1, + sym_identifier, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(10968), 1, + sym_primitive_type, + ACTIONS(10970), 1, + anon_sym_typename, + STATE(2070), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(11291), 4, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(2257), 1, + sym_type_specifier, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4163), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7783), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7785), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(2173), 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_COLON, - 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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -543634,230 +545257,78 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [104528] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10564), 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, - ACTIONS(10566), 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, - [104589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8885), 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(8887), 35, - 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - [104650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8909), 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(8911), 35, - 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - [104711] = 6, + [107430] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(10647), 1, - anon_sym_LT, - STATE(5613), 1, - sym_template_argument_list, - ACTIONS(7090), 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_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(7085), 38, - anon_sym_AMP, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(4257), 1, + anon_sym_enum, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11099), 1, + sym_identifier, + ACTIONS(11101), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2093), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2112), 1, + sym_type_specifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4253), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 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_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, @@ -543870,18 +545341,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, - [104778] = 3, + [107543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 20, + ACTIONS(9369), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543902,7 +545365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8994), 33, + ACTIONS(9371), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -543936,10 +545399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [104839] = 3, + [107604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 20, + ACTIONS(9373), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -543960,7 +545423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8994), 33, + ACTIONS(9375), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -543994,69 +545457,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [104900] = 29, + [107665] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5144), 1, - sym_primitive_type, - ACTIONS(5146), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(5148), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(5150), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(5152), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(5154), 1, - anon_sym_typename, - ACTIONS(5156), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(5158), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4387), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4802), 1, - sym_splice_specifier, - STATE(5365), 1, - sym_template_type, - STATE(5472), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(5574), 1, - sym_qualified_type_identifier, - STATE(6031), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(6452), 1, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7596), 1, sym_type_specifier, - STATE(8757), 1, + STATE(8754), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5973), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(5142), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6050), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -544078,133 +545541,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8921), 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(8923), 35, - 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - [105074] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8946), 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(8948), 35, - 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - [105135] = 6, + [107778] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(3034), 1, anon_sym_LBRACE, - ACTIONS(10900), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - STATE(5848), 2, + STATE(5885), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9491), 18, + ACTIONS(9455), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544214,80 +545561,25 @@ 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9493), 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_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, - [105202] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8996), 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_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8998), 35, + ACTIONS(9457), 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_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544295,7 +545587,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, @@ -544310,199 +545601,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [105263] = 3, + anon_sym_GT2, + [107845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 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, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10562), 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, - ACTIONS(9013), 35, + STATE(4286), 1, + sym_template_argument_list, + ACTIONS(5637), 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_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [105324] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11145), 1, - anon_sym_AMP_AMP, - ACTIONS(11149), 1, - anon_sym_and, - ACTIONS(9322), 19, - anon_sym_DASH, - anon_sym_PLUS, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9324), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - 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_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [105389] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(7272), 1, - sym_type_specifier, - STATE(8711), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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(7379), 38, + 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, @@ -544515,79 +545655,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105502] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4427), 1, - anon_sym_enum, - ACTIONS(4429), 1, - anon_sym_class, - ACTIONS(4431), 1, - anon_sym_struct, - ACTIONS(4433), 1, - anon_sym_union, - ACTIONS(4439), 1, - sym_auto, - ACTIONS(4441), 1, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, anon_sym_decltype, - ACTIONS(5160), 1, + anon_sym_final, + anon_sym_override, anon_sym_template, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(11091), 1, - sym_primitive_type, - ACTIONS(11093), 1, - anon_sym_typename, - STATE(2283), 1, + anon_sym_operator, + [107912] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5126), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2526), 1, - sym_type_specifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, - sym__splice_specialization_specifier, - STATE(2701), 1, - sym_template_type, - STATE(2781), 1, - sym_qualified_type_identifier, - STATE(3099), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8687), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2984), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4423), 4, + ACTIONS(11161), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 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__, + ACTIONS(7246), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7248), 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___attribute__, + anon_sym_COLON, + 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, @@ -544599,10 +545714,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [105615] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [107977] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 18, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + STATE(5909), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9403), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544621,10 +545752,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9002), 35, + ACTIONS(9405), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -544654,13 +545784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [105676] = 3, + [108044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 18, + ACTIONS(7876), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544670,16 +545797,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(8895), 35, + ACTIONS(7874), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -544687,9 +545816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544697,7 +545824,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, @@ -544714,27 +545840,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [105737] = 10, + [108105] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(11127), 1, anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(10801), 2, + ACTIONS(10764), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9673), 17, + ACTIONS(9698), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544752,7 +545879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9675), 27, + ACTIONS(9700), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -544780,82 +545907,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [105812] = 10, + [108180] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(6469), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11267), 1, anon_sym_DASH_GT, - ACTIONS(9677), 17, + ACTIONS(11269), 1, + anon_sym_requires, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7514), 1, + sym__function_attributes_start, + STATE(7658), 1, + sym_ref_qualifier, + STATE(8672), 1, + sym__function_attributes_end, + STATE(8673), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7875), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [108295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3168), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(9679), 27, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(3166), 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_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_GT_STAR, - [105887] = 6, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [108356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - STATE(5895), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 20, + ACTIONS(9337), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544876,9 +546074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9493), 29, + ACTIONS(9339), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -544905,11 +546104,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [105954] = 3, + anon_sym_requires, + [108417] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 18, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9702), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544927,18 +546145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(8903), 35, + ACTIONS(9704), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -544957,17 +546172,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [106015] = 3, + anon_sym_DASH_GT_STAR, + [108492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 20, + ACTIONS(9352), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -544988,7 +546197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8887), 33, + ACTIONS(9354), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -545022,10 +546231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [106076] = 3, + [108553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 20, + ACTIONS(9356), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -545046,7 +546255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8911), 33, + ACTIONS(9358), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -545080,221 +546289,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [106137] = 29, + [108614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3704), 1, - anon_sym_enum, - ACTIONS(3706), 1, - anon_sym_class, - ACTIONS(3708), 1, - anon_sym_struct, - ACTIONS(3710), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, - sym_identifier, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(11107), 1, - anon_sym_typename, - STATE(2852), 1, + STATE(4716), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3536), 1, - sym_type_specifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(8738), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(11254), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 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, - [106250] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3155), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7731), 6, 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(3153), 30, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7733), 42, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_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_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, - anon_sym_COLON_RBRACK, - [106311] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10986), 1, - sym_identifier, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(10992), 1, - sym_primitive_type, - ACTIONS(10994), 1, - anon_sym_enum, - ACTIONS(10996), 1, - anon_sym_class, - ACTIONS(10998), 1, - anon_sym_struct, - ACTIONS(11000), 1, - anon_sym_union, - ACTIONS(11002), 1, - anon_sym_typename, - ACTIONS(11004), 1, - sym_auto, - ACTIONS(11006), 1, - anon_sym_decltype, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(6426), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6581), 1, - sym_splice_specifier, - STATE(6894), 1, - sym_type_specifier, - STATE(7121), 1, - sym__splice_specialization_specifier, - STATE(7225), 1, - sym_template_type, - STATE(7440), 1, - sym_qualified_type_identifier, - STATE(7625), 1, - sym_decltype_auto, - STATE(8700), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7592), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10990), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(7655), 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___attribute__, + anon_sym_COLON, + 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, @@ -545306,210 +546340,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [106424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8942), 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(8944), 35, - 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [106485] = 3, + [108679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 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, + ACTIONS(11271), 1, 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8944), 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_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, - anon_sym_COLON_RBRACK, - [106546] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3704), 1, - anon_sym_enum, - ACTIONS(3706), 1, - anon_sym_class, - ACTIONS(3708), 1, - anon_sym_struct, - ACTIONS(3710), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, - sym_identifier, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(11107), 1, - anon_sym_typename, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3084), 1, - sym_type_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(8738), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [106659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8921), 20, + STATE(4128), 1, + sym_template_argument_list, + ACTIONS(9633), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -545519,18 +546366,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(8923), 33, + ACTIONS(9635), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -545538,7 +546383,10 @@ 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_GT_EQ, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545546,6 +546394,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, @@ -545560,14 +546409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [106720] = 3, + [108744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 20, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + STATE(5758), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9316), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -545577,26 +546429,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(8948), 33, + ACTIONS(9318), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -545604,6 +546455,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, @@ -545618,248 +546470,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [106781] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5144), 1, - sym_primitive_type, - ACTIONS(5146), 1, - anon_sym_enum, - ACTIONS(5148), 1, - anon_sym_class, - ACTIONS(5150), 1, - anon_sym_struct, - ACTIONS(5152), 1, - anon_sym_union, - ACTIONS(5154), 1, - anon_sym_typename, - ACTIONS(5156), 1, - sym_auto, - ACTIONS(5158), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4387), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4802), 1, - sym_splice_specifier, - STATE(5365), 1, - sym_template_type, - STATE(5472), 1, - sym__splice_specialization_specifier, - STATE(5574), 1, - sym_qualified_type_identifier, - STATE(6031), 1, - sym_decltype_auto, - STATE(6285), 1, - sym_type_specifier, - STATE(8757), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5973), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(5142), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6050), 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, - [106894] = 26, + [108811] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(10485), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(6469), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, - anon_sym_PIPE, - ACTIONS(11233), 1, + ACTIONS(10368), 1, anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11243), 1, - anon_sym_or, - ACTIONS(11245), 1, - anon_sym_and, - ACTIONS(11247), 1, - anon_sym_bitor, - ACTIONS(11249), 1, - anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11267), 1, anon_sym_DASH_GT, - ACTIONS(11221), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11231), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11235), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11237), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10487), 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, - [107001] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3837), 1, - anon_sym_enum, - ACTIONS(3839), 1, - anon_sym_class, - ACTIONS(3841), 1, - anon_sym_struct, - ACTIONS(3843), 1, - anon_sym_union, - ACTIONS(3849), 1, - sym_auto, - ACTIONS(3851), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11101), 1, - anon_sym_typename, - STATE(2263), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2527), 1, - sym_type_specifier, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2712), 1, - sym_template_type, - STATE(2843), 1, - sym_qualified_type_identifier, - STATE(3166), 1, - sym_decltype_auto, - STATE(3497), 1, + ACTIONS(11274), 1, + anon_sym_requires, + STATE(4335), 1, sym_alignas_qualifier, - STATE(8702), 1, - sym__scope_resolution, - ACTIONS(71), 2, + STATE(7516), 1, + sym__function_attributes_start, + STATE(7655), 1, + sym_ref_qualifier, + STATE(8684), 1, + sym__function_attributes_end, + STATE(8685), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3053), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, + ACTIONS(10848), 2, + anon_sym_final, + anon_sym_override, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3833), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3167), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - ACTIONS(67), 13, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7808), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(6471), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + ACTIONS(10370), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -545871,163 +546555,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107114] = 29, + [108926] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3732), 1, - anon_sym_enum, - ACTIONS(3734), 1, - anon_sym_class, - ACTIONS(3736), 1, - anon_sym_struct, - ACTIONS(3738), 1, - anon_sym_union, - ACTIONS(3742), 1, - sym_auto, - ACTIONS(3744), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11008), 1, - sym_identifier, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(11012), 1, - sym_primitive_type, - ACTIONS(11014), 1, - anon_sym_typename, - STATE(2180), 1, + STATE(4716), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2296), 1, - sym_type_specifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2622), 1, - sym_template_type, - STATE(2698), 1, - sym_qualified_type_identifier, - STATE(2997), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8682), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2942), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3728), 4, + ACTIONS(11254), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 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__, + ACTIONS(7739), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [107227] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3807), 1, - anon_sym_enum, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11036), 1, - sym_identifier, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11040), 1, - sym_primitive_type, - ACTIONS(11042), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2076), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2125), 1, - sym_type_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8763), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3803), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 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___asm, + ACTIONS(7741), 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_const, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + 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, @@ -546039,163 +546606,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107340] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3204), 1, - anon_sym_enum, - ACTIONS(3206), 1, - anon_sym_class, - ACTIONS(3208), 1, - anon_sym_struct, - ACTIONS(3210), 1, - anon_sym_union, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11046), 1, - sym_identifier, - ACTIONS(11048), 1, - anon_sym_COLON_COLON, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11052), 1, - anon_sym_typename, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(6642), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6946), 1, - sym_type_specifier, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, - sym__scope_resolution, - ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4373), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3200), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4430), 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, - [107453] = 29, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [108991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 1, - anon_sym_enum, - ACTIONS(3206), 1, - anon_sym_class, - ACTIONS(3208), 1, - anon_sym_struct, - ACTIONS(3210), 1, - anon_sym_union, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11046), 1, - sym_identifier, - ACTIONS(11048), 1, - anon_sym_COLON_COLON, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11052), 1, - anon_sym_typename, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(6642), 1, + STATE(5120), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6825), 1, - sym_type_specifier, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4373), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3200), 4, + ACTIONS(11277), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 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__, + ACTIONS(7755), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7757), 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___attribute__, + anon_sym_COLON, + 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, @@ -546207,69 +546666,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107566] = 29, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [109056] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3704), 1, + ACTIONS(9889), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10680), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10726), 1, + anon_sym_QMARK, + ACTIONS(10750), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11133), 1, + anon_sym_AMP_AMP, + ACTIONS(11135), 1, + anon_sym_PIPE, + ACTIONS(11139), 1, + anon_sym_AMP, + ACTIONS(11145), 1, + anon_sym_GT_EQ, + ACTIONS(11149), 1, + anon_sym_and, + ACTIONS(11151), 1, + anon_sym_bitor, + ACTIONS(11153), 1, + anon_sym_bitand, + ACTIONS(11187), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11189), 1, + anon_sym_or, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11129), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11137), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11147), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11131), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11141), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11143), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9891), 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, + [109167] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11279), 1, + sym_identifier, + STATE(5249), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(6892), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6894), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8485), 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(8483), 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, + [109236] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11281), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9593), 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(9595), 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, + [109299] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(3706), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(11107), 1, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, anon_sym_typename, - STATE(2852), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3684), 1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(3775), 1, + STATE(6590), 1, sym_type_specifier, - STATE(3800), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(8738), 1, + STATE(8754), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3021), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -546291,10 +546963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [107679] = 3, + [109412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 20, + ACTIONS(7876), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -546304,18 +546976,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(7791), 33, + ACTIONS(7874), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -546323,7 +546993,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -546331,6 +547003,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, @@ -546347,12 +547020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [107740] = 3, + [109473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 20, + ACTIONS(8965), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -546373,7 +547045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3161), 33, + ACTIONS(8967), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -546407,185 +547079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [107801] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5144), 1, - sym_primitive_type, - ACTIONS(5146), 1, - anon_sym_enum, - ACTIONS(5148), 1, - anon_sym_class, - ACTIONS(5150), 1, - anon_sym_struct, - ACTIONS(5152), 1, - anon_sym_union, - ACTIONS(5154), 1, - anon_sym_typename, - ACTIONS(5156), 1, - sym_auto, - ACTIONS(5158), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4387), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4802), 1, - sym_splice_specifier, - STATE(5365), 1, - sym_template_type, - STATE(5472), 1, - sym__splice_specialization_specifier, - STATE(5574), 1, - sym_qualified_type_identifier, - STATE(6031), 1, - sym_decltype_auto, - STATE(6235), 1, - sym_type_specifier, - STATE(8757), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(5973), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(5142), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(6050), 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, - [107914] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4397), 1, - anon_sym_enum, - ACTIONS(4399), 1, - anon_sym_class, - ACTIONS(4401), 1, - anon_sym_struct, - ACTIONS(4403), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11057), 1, - sym_identifier, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(11061), 1, - anon_sym_typename, - STATE(3490), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3715), 1, - sym_type_specifier, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(8676), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(4373), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4395), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4430), 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, - [108027] = 6, + [109534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - STATE(5746), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 20, + ACTIONS(8905), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -546606,9 +547103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9433), 29, + ACTIONS(8907), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -546635,836 +547133,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [108094] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10986), 1, - sym_identifier, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(10992), 1, - sym_primitive_type, - ACTIONS(10994), 1, - anon_sym_enum, - ACTIONS(10996), 1, - anon_sym_class, - ACTIONS(10998), 1, - anon_sym_struct, - ACTIONS(11000), 1, - anon_sym_union, - ACTIONS(11002), 1, - anon_sym_typename, - ACTIONS(11004), 1, - sym_auto, - ACTIONS(11006), 1, - anon_sym_decltype, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(6426), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6507), 1, - sym_type_specifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, - sym__splice_specialization_specifier, - STATE(7225), 1, - sym_template_type, - STATE(7440), 1, - sym_qualified_type_identifier, - STATE(7625), 1, - sym_decltype_auto, - STATE(8700), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(7592), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(10990), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(7655), 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, - [108207] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4062), 1, - anon_sym_enum, - ACTIONS(4064), 1, - anon_sym_class, - ACTIONS(4066), 1, - anon_sym_struct, - ACTIONS(4068), 1, - anon_sym_union, - ACTIONS(4072), 1, - sym_auto, - ACTIONS(4074), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11071), 1, - sym_identifier, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(11075), 1, - sym_primitive_type, - ACTIONS(11077), 1, - anon_sym_typename, - STATE(2356), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2404), 1, - sym_type_specifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, - sym__splice_specialization_specifier, - STATE(2933), 1, - sym_template_type, - STATE(3031), 1, - sym_qualified_type_identifier, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3527), 1, - sym_decltype_auto, - STATE(8686), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3447), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4058), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3528), 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, - [108320] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(4314), 1, - anon_sym_enum, - ACTIONS(4316), 1, - anon_sym_class, - ACTIONS(4318), 1, - anon_sym_struct, - ACTIONS(4320), 1, - anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11079), 1, - sym_identifier, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11085), 1, - anon_sym_typename, - STATE(3488), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3721), 1, - sym_type_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3819), 1, - sym_qualified_type_identifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(8675), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3967), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4310), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4064), 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, - [108433] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3871), 1, - anon_sym_enum, - ACTIONS(3873), 1, - anon_sym_class, - ACTIONS(3875), 1, - anon_sym_struct, - ACTIONS(3877), 1, - anon_sym_union, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11109), 1, - sym_identifier, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(11113), 1, - anon_sym_typename, - STATE(2941), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3512), 1, - sym_type_specifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3819), 1, - sym_qualified_type_identifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(8707), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3967), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4064), 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, - [108546] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3807), 1, - anon_sym_enum, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11036), 1, - sym_identifier, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11040), 1, - sym_primitive_type, - ACTIONS(11042), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2076), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(2380), 1, - sym_type_specifier, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8763), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3803), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 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, - [108659] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4427), 1, - anon_sym_enum, - ACTIONS(4429), 1, - anon_sym_class, - ACTIONS(4431), 1, - anon_sym_struct, - ACTIONS(4433), 1, - anon_sym_union, - ACTIONS(4439), 1, - sym_auto, - ACTIONS(4441), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(11091), 1, - sym_primitive_type, - ACTIONS(11093), 1, - anon_sym_typename, - STATE(2283), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2328), 1, - sym_type_specifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, - sym__splice_specialization_specifier, - STATE(2701), 1, - sym_template_type, - STATE(2781), 1, - sym_qualified_type_identifier, - STATE(3099), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8687), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2984), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(4423), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3123), 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, - [108772] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3837), 1, - anon_sym_enum, - ACTIONS(3839), 1, - anon_sym_class, - ACTIONS(3841), 1, - anon_sym_struct, - ACTIONS(3843), 1, - anon_sym_union, - ACTIONS(3849), 1, - sym_auto, - ACTIONS(3851), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11101), 1, - anon_sym_typename, - STATE(2263), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2335), 1, - sym_type_specifier, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2712), 1, - sym_template_type, - STATE(2843), 1, - sym_qualified_type_identifier, - STATE(3166), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8702), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3053), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3833), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3167), 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, - [108885] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(3978), 1, - anon_sym_enum, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(11117), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(2243), 1, - sym_type_specifier, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8763), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3974), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 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, - [108998] = 29, + anon_sym_requires, + [109595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3704), 1, - anon_sym_enum, - ACTIONS(3706), 1, - anon_sym_class, - ACTIONS(3708), 1, - anon_sym_struct, - ACTIONS(3710), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, - sym_identifier, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(11107), 1, - anon_sym_typename, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3521), 1, - sym_type_specifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(8738), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [109111] = 29, + ACTIONS(9337), 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(9339), 35, + 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + [109656] = 5, ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3871), 1, - anon_sym_enum, - ACTIONS(3873), 1, - anon_sym_class, - ACTIONS(3875), 1, - anon_sym_struct, - ACTIONS(3877), 1, - anon_sym_union, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11109), 1, - sym_identifier, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(11113), 1, - anon_sym_typename, - STATE(2941), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2967), 1, - sym_type_specifier, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3819), 1, - sym_qualified_type_identifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(8707), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(3967), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3867), 4, + sym_comment, + STATE(5121), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11283), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 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__, + ACTIONS(7769), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7771), 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___attribute__, + anon_sym_COLON, + 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, @@ -547476,79 +547246,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109224] = 29, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [109721] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3807), 1, - anon_sym_enum, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11036), 1, - sym_identifier, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11040), 1, - sym_primitive_type, - ACTIONS(11042), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2076), 1, + STATE(4716), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(2261), 1, - sym_type_specifier, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8763), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3803), 4, + ACTIONS(11254), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 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__, + ACTIONS(7560), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, anon_sym_const, + anon_sym___asm, + ACTIONS(7562), 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___attribute__, + anon_sym_COLON, + 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, @@ -547560,69 +547306,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109337] = 29, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [109786] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(3978), 1, - anon_sym_enum, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(11117), 1, + ACTIONS(10649), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2093), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2101), 1, - sym_type_specifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2221), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(8763), 1, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(6785), 1, + sym_type_specifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(8754), 1, sym__scope_resolution, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2169), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3974), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -547644,26 +547399,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [109450] = 10, + [109899] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + STATE(5794), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9305), 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(9307), 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_LBRACK, - ACTIONS(11251), 1, + 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, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, + anon_sym_DASH_GT, + [109966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9011), 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(9013), 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_QMARK, + anon_sym_STAR_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, - ACTIONS(10803), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9015), 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(9017), 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_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9715), 17, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -547673,23 +547589,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_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(7970), 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_QMARK, + anon_sym_STAR_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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110149] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11158), 1, + anon_sym_LT, + STATE(4770), 1, + sym_template_argument_list, + ACTIONS(9633), 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, - ACTIONS(9717), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9635), 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, @@ -547708,157 +547690,459 @@ 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, - [109525] = 29, + [110214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(9409), 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(9411), 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_QMARK, + anon_sym_STAR_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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8915), 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_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, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(7568), 1, - sym_type_specifier, - STATE(8711), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [109638] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8917), 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_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, + anon_sym_COLON_RBRACK, + [110336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, + ACTIONS(9413), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(10687), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9415), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10759), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(10787), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(11225), 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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9417), 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(9419), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, anon_sym_AMP_AMP, - ACTIONS(11229), 1, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9421), 20, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(11233), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(11239), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(11243), 1, + 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, - ACTIONS(11245), 1, anon_sym_and, - ACTIONS(11247), 1, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9423), 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_QMARK, + anon_sym_STAR_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, - ACTIONS(11249), 1, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11221), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [110519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + STATE(5845), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9455), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11241), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11223), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9457), 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_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, + [110586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8915), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, + 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(8917), 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_QMARK, + anon_sym_STAR_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, - ACTIONS(11237), 3, + 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, + [110647] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10581), 1, + anon_sym_LPAREN2, + ACTIONS(10583), 1, + anon_sym_LBRACK, + STATE(1970), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10229), 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, - ACTIONS(10544), 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(10227), 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, @@ -547873,49 +548157,170 @@ 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, - [109745] = 6, + [110716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10647), 1, + ACTIONS(9352), 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, - STATE(4318), 1, - sym_template_argument_list, - ACTIONS(5657), 12, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9354), 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_LBRACK_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + [110777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9356), 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_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7371), 38, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9358), 35, + 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_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_final, + anon_sym_override, + anon_sym_requires, + [110838] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4716), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(11254), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7662), 6, anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7664), 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___attribute__, - anon_sym___attribute, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -547929,24 +548334,83 @@ 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [110903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5591), 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_LBRACK, + 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_decltype, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - [109812] = 7, + anon_sym_requires, + ACTIONS(5593), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [110964] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, + ACTIONS(10581), 1, anon_sym_LPAREN2, - ACTIONS(10570), 1, + ACTIONS(10583), 1, anon_sym_LBRACK, - STATE(1974), 1, + STATE(1970), 1, sym_parameter_list, - STATE(4999), 1, + STATE(4827), 1, sym__function_declarator_seq, - ACTIONS(10210), 19, + ACTIONS(10262), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -547966,7 +548430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10208), 30, + ACTIONS(10260), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -547997,23 +548461,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [109881] = 9, + [111033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(8404), 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(8402), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10759), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LBRACK, - ACTIONS(11251), 1, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9681), 17, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [111094] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(11285), 1, + anon_sym_LT, + STATE(5525), 1, + sym_template_argument_list, + ACTIONS(9529), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548024,22 +548539,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(9683), 29, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9531), 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, @@ -548060,11 +548578,12 @@ 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, - [109954] = 3, + [111161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 20, + ACTIONS(9475), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548085,7 +548604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3153), 33, + ACTIONS(9477), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548119,72 +548638,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [110015] = 26, + [111222] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(10581), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10583), 1, anon_sym_LBRACK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, - anon_sym_AMP_AMP, - ACTIONS(11229), 1, - anon_sym_PIPE, - ACTIONS(11233), 1, - anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11243), 1, - anon_sym_or, - ACTIONS(11245), 1, - anon_sym_and, - ACTIONS(11247), 1, - anon_sym_bitor, - ACTIONS(11249), 1, - anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, + STATE(1970), 1, + sym_parameter_list, + STATE(4827), 1, + sym__function_declarator_seq, + ACTIONS(10233), 19, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11231), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11235), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11237), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 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(10231), 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, @@ -548199,18 +548692,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [110122] = 6, + [111291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - STATE(5777), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 20, + ACTIONS(9483), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548231,9 +548724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9379), 29, + ACTIONS(9485), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -548260,11 +548754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [110189] = 3, + anon_sym_requires, + [111352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 20, + ACTIONS(9447), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548285,7 +548782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9013), 33, + ACTIONS(9449), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548319,14 +548816,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [110250] = 5, + [111413] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11293), 1, - anon_sym_LT, - STATE(4045), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(11288), 1, + anon_sym_LPAREN2, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1990), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10225), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548337,26 +548838,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(9652), 33, + anon_sym_DASH_GT, + ACTIONS(10223), 33, 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, @@ -548368,21 +548864,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [110315] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [111482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 20, + ACTIONS(8987), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548403,7 +548902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9298), 33, + ACTIONS(8989), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548437,153 +548936,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [110376] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, - anon_sym_requires, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7533), 1, - sym__function_attributes_start, - STATE(7662), 1, - sym_ref_qualifier, - STATE(8683), 1, - sym__function_attributes_end, - STATE(8688), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7833), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [110491] = 3, + [111543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 23, - aux_sym_preproc_elif_token1, + ACTIONS(5645), 1, + anon_sym_EQ, + ACTIONS(5647), 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(5619), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8911), 30, + ACTIONS(5611), 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, anon_sym_AMP_AMP, - anon_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_RBRACK_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [110552] = 3, + [111608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 20, + ACTIONS(9385), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548604,7 +549020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8895), 33, + ACTIONS(9387), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548638,10 +549054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [110613] = 3, + [111669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 20, + ACTIONS(8997), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548662,7 +549078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8903), 33, + ACTIONS(8999), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548696,17 +549112,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [110674] = 6, + [111730] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(11288), 1, anon_sym_LPAREN2, - STATE(5796), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 20, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1990), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10264), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548716,25 +549133,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(9383), 29, + anon_sym_DASH_GT, + ACTIONS(10266), 33, 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, @@ -548742,110 +549156,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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, - [110741] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11300), 1, - anon_sym_requires, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7536), 1, - sym__function_attributes_start, - STATE(7658), 1, - sym_ref_qualifier, - STATE(8712), 1, - sym__function_attributes_end, - STATE(8713), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10821), 2, anon_sym_final, anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7847), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(6481), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [110856] = 3, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [111799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 20, + ACTIONS(9438), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548866,7 +549198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9310), 33, + ACTIONS(9440), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -548900,10 +549232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [110917] = 3, + [111860] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 20, + ACTIONS(11288), 1, + anon_sym_LPAREN2, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1990), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10178), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -548913,26 +549253,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(9318), 33, + anon_sym_DASH_GT, + ACTIONS(10176), 33, 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, @@ -548940,77 +549276,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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [110978] = 9, + anon_sym_DASH_GT_STAR, + [111929] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7085), 1, - anon_sym_const, - ACTIONS(7094), 1, - anon_sym_AMP, - ACTIONS(8695), 1, - anon_sym_LT, - STATE(2992), 1, - sym_template_argument_list, - ACTIONS(7087), 6, - anon_sym_RPAREN, + ACTIONS(11288), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, + ACTIONS(11290), 1, anon_sym_LBRACK, - ACTIONS(7092), 7, + STATE(1990), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10221), 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(7090), 15, - anon_sym___extension__, - 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, - ACTIONS(7097), 21, + anon_sym_DASH_GT, + ACTIONS(10219), 33, anon_sym_DOT_DOT_DOT, - anon_sym_PERCENT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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, @@ -549021,186 +549352,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [111051] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(6587), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [111164] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, - sym_identifier, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(11024), 1, - sym_primitive_type, - ACTIONS(11026), 1, - anon_sym_enum, - ACTIONS(11028), 1, - anon_sym_class, - ACTIONS(11030), 1, - anon_sym_struct, - ACTIONS(11032), 1, - anon_sym_union, - ACTIONS(11034), 1, - anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(7481), 1, - sym_splice_specifier, - STATE(7606), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, - sym_template_type, - STATE(7716), 1, - sym_qualified_type_identifier, - STATE(7722), 1, - sym_type_specifier, - STATE(8691), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(11022), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [111277] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [111998] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, + ACTIONS(11288), 1, anon_sym_LPAREN2, - STATE(5758), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 18, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1990), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10229), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549215,20 +549382,17 @@ 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, - ACTIONS(9433), 31, + anon_sym_DASH_GT, + ACTIONS(10227), 33, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -549240,143 +549404,148 @@ 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, - [111344] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [112067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 20, + ACTIONS(8923), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_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(8944), 33, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8925), 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_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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [111405] = 5, + anon_sym_COLON_RBRACK, + [112128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11273), 1, - anon_sym_LT, - STATE(4811), 1, - sym_template_argument_list, - ACTIONS(9650), 19, + ACTIONS(8923), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_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, - anon_sym_DASH_GT, - ACTIONS(9652), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8925), 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_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_STAR, - [111470] = 5, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [112189] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10689), 1, + ACTIONS(11288), 1, + anon_sym_LPAREN2, + ACTIONS(11290), 1, anon_sym_LBRACK, - STATE(5470), 1, - sym_new_declarator, - ACTIONS(9535), 19, + STATE(1990), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10233), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549391,22 +549560,17 @@ 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(9537), 32, + ACTIONS(10231), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -549418,250 +549582,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_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [111535] = 28, + [112258] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(11288), 1, anon_sym_LPAREN2, - ACTIONS(10717), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10759), 1, + ACTIONS(11290), 1, anon_sym_LBRACK, - ACTIONS(10763), 1, - anon_sym_QMARK, - ACTIONS(10787), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, - anon_sym_AMP_AMP, - ACTIONS(11229), 1, - anon_sym_PIPE, - ACTIONS(11233), 1, - anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11243), 1, - anon_sym_or, - ACTIONS(11245), 1, - anon_sym_and, - ACTIONS(11247), 1, - anon_sym_bitor, - ACTIONS(11249), 1, - anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11231), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11235), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11237), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9828), 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, - [111646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8659), 5, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(8657), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [111707] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, - anon_sym_class, - ACTIONS(2252), 1, - anon_sym_struct, - ACTIONS(2254), 1, - anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10649), 1, - sym_identifier, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, - anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(6907), 1, - sym_type_specifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 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, - [111820] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11281), 1, - anon_sym_AMP_AMP, - ACTIONS(11285), 1, - anon_sym_and, - ACTIONS(9322), 17, + STATE(1990), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10243), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549676,19 +549622,17 @@ 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, - ACTIONS(9324), 34, + anon_sym_DASH_GT, + ACTIONS(10241), 33, 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -549700,26 +549644,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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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_requires, - [111885] = 4, + anon_sym_DASH_GT_STAR, + [112327] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 19, + ACTIONS(11288), 1, + anon_sym_LPAREN2, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1990), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10262), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549733,24 +549683,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_xor, anon_sym_DOT, - ACTIONS(9699), 33, + anon_sym_DASH_GT, + ACTIONS(10260), 33, 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, @@ -549762,112 +549706,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_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [111948] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10489), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10717), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10763), 1, - anon_sym_QMARK, - ACTIONS(10787), 1, anon_sym_LT_EQ_GT, - ACTIONS(11225), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11227), 1, - anon_sym_AMP_AMP, - ACTIONS(11229), 1, - anon_sym_PIPE, - ACTIONS(11233), 1, - anon_sym_AMP, - ACTIONS(11239), 1, - anon_sym_GT_EQ, - ACTIONS(11243), 1, anon_sym_or, - ACTIONS(11245), 1, anon_sym_and, - ACTIONS(11247), 1, anon_sym_bitor, - ACTIONS(11249), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10801), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11221), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11231), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11241), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11223), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11235), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11237), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10491), 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, - [112059] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1974), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10190), 19, + anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [112396] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6679), 1, + anon_sym_LBRACK_LBRACK, + STATE(4607), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9566), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549877,25 +549738,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(10188), 30, + ACTIONS(9568), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -549903,7 +549765,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, @@ -549917,19 +549778,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, - [112128] = 7, + anon_sym_DASH_GT, + anon_sym_GT2, + [112461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10568), 1, - anon_sym_LPAREN2, - ACTIONS(10570), 1, - anon_sym_LBRACK, - STATE(1974), 1, - sym_parameter_list, - STATE(4999), 1, - sym__function_declarator_seq, - ACTIONS(10194), 19, + ACTIONS(8923), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -549939,25 +549793,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(10192), 30, + ACTIONS(8925), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -549965,7 +549820,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, @@ -549979,11 +549833,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, - [112197] = 3, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [112522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 23, + ACTIONS(8957), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -550007,7 +549865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9002), 30, + ACTIONS(8959), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550038,80 +549896,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [112258] = 7, + [112583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, - anon_sym_LBRACK, - STATE(1991), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10186), 16, + ACTIONS(8961), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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(10184), 33, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8963), 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_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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - 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_requires, - anon_sym_DASH_GT_STAR, - [112327] = 7, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [112644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, - anon_sym_LBRACK, - STATE(1991), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10190), 16, + ACTIONS(8923), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550121,22 +549967,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(10188), 33, + ACTIONS(8925), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550144,36 +549994,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [112396] = 7, + [112705] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(11292), 1, + sym_identifier, + STATE(5249), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(11295), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11298), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8473), 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(8471), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11307), 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, - STATE(1991), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10194), 16, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [112774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8923), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550183,22 +550087,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(10192), 33, + ACTIONS(8925), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550206,35 +550114,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [112465] = 6, + [112835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - STATE(5830), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 18, + ACTIONS(7972), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550253,9 +550154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9379), 31, + ACTIONS(7970), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, @@ -550285,18 +550187,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [112532] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [112896] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(10581), 1, anon_sym_LPAREN2, - ACTIONS(11307), 1, + ACTIONS(10583), 1, anon_sym_LBRACK, - STATE(1991), 1, + STATE(1970), 1, sym_parameter_list, - STATE(5586), 1, + STATE(4827), 1, sym__function_declarator_seq, - ACTIONS(10174), 16, + ACTIONS(10225), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550311,9 +550216,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(10172), 33, + ACTIONS(10223), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550333,24 +550241,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [112601] = 3, + [112965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 20, + ACTIONS(9409), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550360,18 +550265,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(8998), 33, + ACTIONS(9411), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550379,7 +550282,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550387,6 +550292,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, @@ -550403,12 +550309,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [112662] = 3, + [113026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 20, + ACTIONS(9413), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550418,18 +550323,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(9002), 33, + ACTIONS(9415), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550437,7 +550340,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550445,6 +550350,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, @@ -550461,20 +550367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [112723] = 7, + [113087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, - anon_sym_LBRACK, - STATE(1991), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10198), 16, + ACTIONS(9417), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550489,17 +550386,21 @@ 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(10196), 33, + ACTIONS(9419), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550511,32 +550412,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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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_requires, - anon_sym_DASH_GT_STAR, - [112792] = 7, + [113148] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(11307), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - STATE(1991), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10202), 16, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9694), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550551,9 +550457,10 @@ 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(10200), 33, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9696), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550573,32 +550480,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_or, - anon_sym_and, anon_sym_bitor, - 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_requires, anon_sym_DASH_GT_STAR, - [112861] = 7, + [113221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, - anon_sym_LBRACK, - STATE(1991), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10206), 16, + ACTIONS(9421), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550613,17 +550508,21 @@ 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(10204), 33, + ACTIONS(9423), 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550635,37 +550534,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_DASH_GT_STAR, - [112930] = 7, + [113282] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(11307), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - STATE(1991), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10210), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10764), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11131), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 14, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -550675,9 +550583,10 @@ 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(10208), 33, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -550697,24 +550606,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - 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_requires, anon_sym_DASH_GT_STAR, - [112999] = 3, + [113359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 20, + ACTIONS(7119), 1, + anon_sym_COLON_COLON, + ACTIONS(7405), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7124), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550724,25 +550633,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(9391), 33, + anon_sym_DASH_GT, + ACTIONS(7129), 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, @@ -550751,6 +550660,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, @@ -550764,15 +550674,85 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [113060] = 3, + anon_sym_DASH_GT_STAR, + [113426] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8788), 5, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(8786), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [113487] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 20, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9702), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550782,26 +550762,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(7966), 33, + ACTIONS(9704), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -550809,6 +550786,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, @@ -550819,76 +550797,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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [113121] = 3, + [113561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9928), 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_COLON, + 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(8952), 30, + anon_sym_DASH_GT, + ACTIONS(9930), 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_RBRACK_RBRACK, - anon_sym_LBRACE, - 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, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [113182] = 3, + anon_sym_DASH_GT_STAR, + [113621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 20, + ACTIONS(6656), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6658), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -550909,7 +550881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9363), 33, + ACTIONS(6651), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -550939,74 +550911,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [113243] = 5, + [113683] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6777), 2, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym___attribute__, + ACTIONS(10375), 1, + anon_sym___attribute, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10851), 1, + anon_sym_requires, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7586), 1, + sym__function_attributes_start, + STATE(7669), 1, + sym_ref_qualifier, + STATE(8511), 1, + sym_trailing_return_type, + STATE(8632), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10848), 2, anon_sym_final, anon_sym_override, - STATE(5073), 2, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(9139), 16, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6471), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(7971), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [113797] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11311), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11319), 1, + anon_sym_AMP_AMP, + ACTIONS(11321), 1, + anon_sym_PIPE, + ACTIONS(11325), 1, + anon_sym_AMP, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11335), 1, + anon_sym_QMARK, + ACTIONS(11337), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11339), 1, + anon_sym_or, + ACTIONS(11341), 1, + anon_sym_and, + ACTIONS(11343), 1, + anon_sym_bitor, + ACTIONS(11345), 1, + anon_sym_bitand, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(9889), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11313), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(11323), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(11331), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9141), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(11315), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11327), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11329), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9891), 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_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_requires, - anon_sym_DASH_GT_STAR, - [113308] = 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_GT2, + [113905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 20, + ACTIONS(9077), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551016,26 +551090,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(9367), 33, + anon_sym_DASH_GT, + ACTIONS(9079), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -551043,6 +551119,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, @@ -551056,73 +551133,201 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [113369] = 3, + anon_sym_DASH_GT_STAR, + [113965] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 20, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10247), 1, + anon_sym_STAR, + ACTIONS(10249), 1, + anon_sym_AMP_AMP, + ACTIONS(10251), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8768), 1, + sym__declarator, + STATE(10831), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [114069] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11355), 1, + anon_sym_COMMA, + ACTIONS(11357), 1, + anon_sym_RPAREN, + ACTIONS(11359), 1, anon_sym_DASH, + ACTIONS(11361), 1, anon_sym_PLUS, + ACTIONS(11363), 1, anon_sym_STAR, + ACTIONS(11365), 1, anon_sym_SLASH, + ACTIONS(11367), 1, anon_sym_PERCENT, + ACTIONS(11369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11371), 1, + anon_sym_AMP_AMP, + ACTIONS(11373), 1, anon_sym_PIPE, + ACTIONS(11375), 1, anon_sym_CARET, + ACTIONS(11377), 1, anon_sym_AMP, + ACTIONS(11379), 1, + anon_sym_EQ_EQ, + ACTIONS(11381), 1, + anon_sym_BANG_EQ, + ACTIONS(11383), 1, anon_sym_GT, + ACTIONS(11385), 1, anon_sym_GT_EQ, + ACTIONS(11387), 1, anon_sym_LT_EQ, + ACTIONS(11389), 1, anon_sym_LT, + ACTIONS(11391), 1, anon_sym_LT_LT, + ACTIONS(11393), 1, anon_sym_GT_GT, + ACTIONS(11395), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9371), 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, + ACTIONS(11397), 1, anon_sym_QMARK, + ACTIONS(11399), 1, anon_sym_STAR_EQ, + ACTIONS(11401), 1, anon_sym_SLASH_EQ, + ACTIONS(11403), 1, anon_sym_PERCENT_EQ, + ACTIONS(11405), 1, anon_sym_PLUS_EQ, + ACTIONS(11407), 1, anon_sym_DASH_EQ, + ACTIONS(11409), 1, anon_sym_LT_LT_EQ, + ACTIONS(11411), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11413), 1, anon_sym_AMP_EQ, + ACTIONS(11415), 1, anon_sym_CARET_EQ, + ACTIONS(11417), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, + ACTIONS(11421), 1, + anon_sym_or, + ACTIONS(11423), 1, + anon_sym_and, + ACTIONS(11425), 1, anon_sym_bitor, + ACTIONS(11427), 1, + anon_sym_xor, + ACTIONS(11429), 1, anon_sym_bitand, + ACTIONS(11431), 1, anon_sym_not_eq, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, 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, - [113430] = 3, + [114225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 20, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(11435), 1, + anon_sym_LT, + STATE(5705), 1, + sym_template_argument_list, + ACTIONS(9529), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551132,18 +551337,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(9375), 33, + ACTIONS(9531), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -551151,7 +551353,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -551159,6 +551363,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, @@ -551173,14 +551378,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [113491] = 3, + [114291] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10247), 1, + anon_sym_STAR, + ACTIONS(10249), 1, + anon_sym_AMP_AMP, + ACTIONS(10251), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8813), 1, + sym__declarator, + STATE(10831), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [114395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 20, + ACTIONS(9063), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551190,26 +551470,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(8994), 33, + anon_sym_DASH_GT, + ACTIONS(9065), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_GT_EQ, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -551217,6 +551499,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, @@ -551230,60 +551513,126 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [113552] = 13, + anon_sym_DASH_GT_STAR, + [114455] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11311), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11319), 1, + anon_sym_AMP_AMP, + ACTIONS(11321), 1, + anon_sym_PIPE, + ACTIONS(11325), 1, + anon_sym_AMP, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11335), 1, + anon_sym_QMARK, + ACTIONS(11337), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11339), 1, + anon_sym_or, + ACTIONS(11341), 1, + anon_sym_and, + ACTIONS(11343), 1, + anon_sym_bitor, + ACTIONS(11345), 1, + anon_sym_bitand, + ACTIONS(11349), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(5835), 1, sym_argument_list, - STATE(3900), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, + ACTIONS(10459), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11313), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11313), 2, + ACTIONS(11323), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11331), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11317), 2, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11311), 3, + ACTIONS(11315), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11327), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11329), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10463), 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, + [114563] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7119), 1, + anon_sym_COLON_COLON, + ACTIONS(7405), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7124), 19, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + anon_sym_DOT, + ACTIONS(7129), 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, @@ -551291,7 +551640,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, @@ -551302,83 +551650,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [113632] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [114629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 23, - aux_sym_preproc_elif_token1, + ACTIONS(11256), 1, + anon_sym_LT, + STATE(1969), 1, + sym_template_argument_list, + ACTIONS(9633), 17, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9375), 29, + ACTIONS(9635), 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_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [113692] = 10, + [114693] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, + ACTIONS(11317), 1, + anon_sym_PIPE_PIPE, ACTIONS(11319), 1, + anon_sym_AMP_AMP, + ACTIONS(11321), 1, + anon_sym_PIPE, + ACTIONS(11325), 1, + anon_sym_AMP, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11337), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11339), 1, + anon_sym_or, + ACTIONS(11341), 1, + anon_sym_and, + ACTIONS(11343), 1, + anon_sym_bitor, + ACTIONS(11345), 1, + anon_sym_bitand, + ACTIONS(11349), 1, anon_sym_DOT, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, + ACTIONS(10467), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11313), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11323), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11347), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9638), 19, + ACTIONS(11315), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11327), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11329), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10469), 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, + [114797] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11438), 1, + anon_sym_LT, + STATE(2956), 1, + sym_template_argument_list, + ACTIONS(9633), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551388,23 +551810,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9640), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9635), 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, @@ -551412,6 +551837,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, @@ -551422,106 +551848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [113766] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, - sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, - anon_sym_STAR, - ACTIONS(10242), 1, - anon_sym_AMP_AMP, - ACTIONS(10244), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8804), 1, - sym__declarator, - STATE(10743), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [113870] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9638), 17, + anon_sym_DASH_GT_STAR, + [114861] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9089), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -551535,19 +551869,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9640), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9091), 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_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -551566,172 +551905,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [113944] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - ACTIONS(10807), 1, anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, - anon_sym_COMMA, - ACTIONS(11339), 1, - anon_sym_RPAREN, - ACTIONS(11341), 1, + [114921] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(11441), 1, + anon_sym_LT, + STATE(5676), 1, + sym_template_argument_list, + ACTIONS(9536), 19, anon_sym_DASH, - ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(11345), 1, anon_sym_STAR, - ACTIONS(11347), 1, anon_sym_SLASH, - ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(11351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, - anon_sym_AMP_AMP, - ACTIONS(11355), 1, anon_sym_PIPE, - ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11359), 1, anon_sym_AMP, - ACTIONS(11361), 1, - anon_sym_EQ_EQ, - ACTIONS(11363), 1, - anon_sym_BANG_EQ, - ACTIONS(11365), 1, anon_sym_GT, - ACTIONS(11367), 1, anon_sym_GT_EQ, - ACTIONS(11369), 1, anon_sym_LT_EQ, - ACTIONS(11371), 1, - anon_sym_LT, - ACTIONS(11373), 1, anon_sym_LT_LT, - ACTIONS(11375), 1, anon_sym_GT_GT, - ACTIONS(11377), 1, anon_sym_EQ, - ACTIONS(11379), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9538), 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(11381), 1, anon_sym_STAR_EQ, - ACTIONS(11383), 1, anon_sym_SLASH_EQ, - ACTIONS(11385), 1, anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, anon_sym_PLUS_EQ, - ACTIONS(11389), 1, anon_sym_DASH_EQ, - ACTIONS(11391), 1, anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, - anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, anon_sym_AMP_EQ, - ACTIONS(11397), 1, anon_sym_CARET_EQ, - ACTIONS(11399), 1, anon_sym_PIPE_EQ, - ACTIONS(11401), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, - anon_sym_or, - ACTIONS(11405), 1, - anon_sym_and, - ACTIONS(11407), 1, anon_sym_bitor, - ACTIONS(11409), 1, - anon_sym_xor, - ACTIONS(11411), 1, anon_sym_bitand, - ACTIONS(11413), 1, anon_sym_not_eq, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [114100] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [114987] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 17, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9686), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8667), 35, + ACTIONS(9688), 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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - anon_sym_COLON_RBRACK, - [114160] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [115061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 23, + ACTIONS(9409), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -551755,7 +552060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9417), 29, + ACTIONS(9411), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -551785,144 +552090,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [114220] = 30, + [115121] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(5649), 1, + sym_auto, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(6899), 1, + anon_sym_SEMI, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(10357), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10667), 1, - anon_sym_AMP, - ACTIONS(10673), 1, - anon_sym_GT_EQ, - ACTIONS(10677), 1, - anon_sym_LT_EQ_GT, - ACTIONS(10679), 1, - anon_sym_bitand, - ACTIONS(10693), 1, - anon_sym_PIPE_PIPE, - ACTIONS(10695), 1, - anon_sym_AMP_AMP, - ACTIONS(10697), 1, - anon_sym_PIPE, - ACTIONS(10699), 1, - anon_sym_QMARK, - ACTIONS(10701), 1, - anon_sym_or, - ACTIONS(10703), 1, - anon_sym_and, - ACTIONS(10705), 1, - anon_sym_bitor, - ACTIONS(10874), 1, - anon_sym_RPAREN, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(11419), 1, - anon_sym_EQ, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10661), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(10665), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(10675), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10663), 3, + STATE(4249), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4918), 1, + sym_decltype_auto, + STATE(6069), 1, + sym_template_argument_list, + ACTIONS(5634), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(5617), 4, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(10669), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(10671), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10785), 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, - [114334] = 25, + anon_sym_AMP_AMP, + anon_sym_LBRACK_COLON, + ACTIONS(5639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5609), 33, + 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, + anon_sym_template, + anon_sym_operator, + [115203] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10213), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10215), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10217), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7986), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8794), 1, + STATE(8517), 1, sym__declarator, - STATE(10743), 1, + STATE(10894), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -551934,7 +552223,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -551948,76 +552237,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [114438] = 6, + [115307] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(11421), 1, - anon_sym_LT, - STATE(5547), 1, - sym_template_argument_list, - ACTIONS(9495), 17, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11355), 1, + anon_sym_COMMA, + ACTIONS(11359), 1, anon_sym_DASH, + ACTIONS(11361), 1, anon_sym_PLUS, + ACTIONS(11363), 1, anon_sym_STAR, + ACTIONS(11365), 1, anon_sym_SLASH, + ACTIONS(11367), 1, anon_sym_PERCENT, + ACTIONS(11369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11371), 1, + anon_sym_AMP_AMP, + ACTIONS(11373), 1, anon_sym_PIPE, + ACTIONS(11375), 1, anon_sym_CARET, + ACTIONS(11377), 1, anon_sym_AMP, + ACTIONS(11379), 1, + anon_sym_EQ_EQ, + ACTIONS(11381), 1, + anon_sym_BANG_EQ, + ACTIONS(11383), 1, anon_sym_GT, + ACTIONS(11385), 1, + anon_sym_GT_EQ, + ACTIONS(11387), 1, anon_sym_LT_EQ, + ACTIONS(11389), 1, + anon_sym_LT, + ACTIONS(11391), 1, anon_sym_LT_LT, + ACTIONS(11393), 1, anon_sym_GT_GT, + ACTIONS(11395), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9497), 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_LBRACK, - anon_sym_RBRACK, + ACTIONS(11397), 1, anon_sym_QMARK, + ACTIONS(11399), 1, anon_sym_STAR_EQ, + ACTIONS(11401), 1, anon_sym_SLASH_EQ, + ACTIONS(11403), 1, anon_sym_PERCENT_EQ, + ACTIONS(11405), 1, anon_sym_PLUS_EQ, + ACTIONS(11407), 1, anon_sym_DASH_EQ, + ACTIONS(11409), 1, anon_sym_LT_LT_EQ, + ACTIONS(11411), 1, anon_sym_GT_GT_EQ, + ACTIONS(11413), 1, anon_sym_AMP_EQ, + ACTIONS(11415), 1, anon_sym_CARET_EQ, + ACTIONS(11417), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, + ACTIONS(11421), 1, + anon_sym_or, + ACTIONS(11423), 1, + anon_sym_and, + ACTIONS(11425), 1, anon_sym_bitor, + ACTIONS(11427), 1, + anon_sym_xor, + ACTIONS(11429), 1, anon_sym_bitand, + ACTIONS(11431), 1, anon_sym_not_eq, + ACTIONS(11444), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [114504] = 6, + [115463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(11424), 1, - anon_sym_LT, - STATE(5547), 1, - sym_template_argument_list, - ACTIONS(9578), 17, + ACTIONS(9152), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552028,14 +552356,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, - ACTIONS(9580), 32, + ACTIONS(9150), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -552044,8 +552374,9 @@ 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552068,135 +552399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [114570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9389), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9391), 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [114630] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(11427), 1, - anon_sym_LBRACE, - STATE(5936), 1, - sym_field_declaration_list, - STATE(6109), 1, - sym_attribute_specifier, - STATE(9453), 1, - sym_virtual_specifier, - STATE(10436), 1, - sym_base_class_clause, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7235), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7237), 37, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [114708] = 4, + [115523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 19, + ACTIONS(9928), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552210,13 +552416,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(5638), 32, + ACTIONS(9930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -552226,7 +552433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552249,10 +552456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [114770] = 3, + [115583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 23, + ACTIONS(9413), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -552276,7 +552483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9421), 29, + ACTIONS(9415), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -552306,10 +552513,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [114830] = 3, + [115643] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(10213), 1, + anon_sym_STAR, + ACTIONS(10215), 1, + anon_sym_AMP_AMP, + ACTIONS(10217), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8536), 1, + sym__declarator, + STATE(10894), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [115747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 23, + ACTIONS(9417), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -552333,7 +552619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9425), 29, + ACTIONS(9419), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -552363,18 +552649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [114890] = 7, + [115807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - ACTIONS(10713), 1, - anon_sym_LBRACK, - STATE(1978), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10198), 18, + ACTIONS(5591), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552388,20 +552666,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, - ACTIONS(10196), 30, + anon_sym_DASH_GT, + ACTIONS(5593), 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_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552413,25 +552692,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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [114958] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [115867] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11429), 1, - anon_sym_LT, - STATE(2003), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(3096), 1, + anon_sym_LBRACE, + ACTIONS(11446), 1, + anon_sym_LPAREN2, + ACTIONS(11448), 1, + anon_sym_LBRACK, + STATE(5612), 1, + sym_new_declarator, + STATE(6044), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9178), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552442,25 +552731,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_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9652), 32, + ACTIONS(9180), 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, @@ -552472,144 +552757,108 @@ 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, - [115022] = 7, + [115937] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(10713), 1, - anon_sym_LBRACK, - STATE(1978), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10202), 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(10200), 30, + ACTIONS(11311), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11317), 1, anon_sym_PIPE_PIPE, + ACTIONS(11319), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + ACTIONS(11321), 1, + anon_sym_PIPE, + ACTIONS(11325), 1, + anon_sym_AMP, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11335), 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, + ACTIONS(11337), 1, anon_sym_LT_EQ_GT, + ACTIONS(11339), 1, + anon_sym_or, + ACTIONS(11341), 1, + anon_sym_and, + ACTIONS(11343), 1, anon_sym_bitor, + ACTIONS(11345), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(10471), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11313), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11323), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11347), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115090] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, - anon_sym_LPAREN2, - ACTIONS(9239), 1, - anon_sym_LBRACK, - ACTIONS(5645), 18, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11315), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11327), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11329), 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_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(5638), 31, - anon_sym_DOT_DOT_DOT, + ACTIONS(10473), 14, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [115156] = 4, + anon_sym_GT2, + [116045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11432), 1, - sym_literal_suffix, - ACTIONS(5645), 25, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(11450), 1, + anon_sym_LT, + STATE(5676), 1, + sym_template_argument_list, + ACTIONS(9529), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552619,32 +552868,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, - anon_sym_DASH_GT, - ACTIONS(5638), 26, + ACTIONS(9531), 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, @@ -552653,87 +552894,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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, - [115218] = 6, + anon_sym_DASH_GT, + anon_sym_GT2, + [116111] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, + ACTIONS(8078), 1, anon_sym_LPAREN2, - ACTIONS(9239), 1, + ACTIONS(8080), 1, + anon_sym_STAR, + ACTIONS(8082), 1, + anon_sym_AMP_AMP, + ACTIONS(8084), 1, + anon_sym_AMP, + ACTIONS(8092), 1, anon_sym_LBRACK, - ACTIONS(5645), 18, + STATE(2078), 1, + sym_parameter_list, + STATE(5527), 1, + sym__function_declarator_seq, + STATE(6160), 1, + sym__abstract_declarator, + STATE(5524), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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, - ACTIONS(5638), 31, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9281), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_PERCENT, anon_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_LT_LT, + anon_sym_GT_GT, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [115284] = 7, + [116189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - ACTIONS(10713), 1, - anon_sym_LBRACK, - STATE(1978), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10186), 18, + ACTIONS(9928), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -552747,20 +552992,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(10184), 30, + anon_sym_DASH_GT, + ACTIONS(9930), 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_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -552782,180 +553031,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [115352] = 3, + anon_sym_DASH_GT_STAR, + [116249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 19, + ACTIONS(9421), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - 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(9890), 33, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9423), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, 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, - [115412] = 8, + anon_sym_COLON_RBRACK, + [116309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(11434), 1, - anon_sym_LPAREN2, - ACTIONS(11436), 1, - anon_sym_LBRACK, - STATE(5597), 1, - sym_new_declarator, - STATE(6094), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9248), 16, + ACTIONS(8404), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, + 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(9250), 30, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8402), 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_RBRACK_RBRACK, + 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, - anon_sym_DASH_GT_STAR, - [115482] = 25, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [116369] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - ACTIONS(10246), 1, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10248), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10250), 1, + ACTIONS(10239), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8816), 1, + STATE(8536), 1, sym__declarator, - STATE(10837), 1, + STATE(11606), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -552967,7 +553211,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -552981,12 +553225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115586] = 4, + [116473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11438), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 20, + ACTIONS(8513), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553000,14 +553242,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(9699), 31, + ACTIONS(8508), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -553017,6 +553258,8 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553039,165 +553282,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [115648] = 51, + [116533] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10276), 1, + anon_sym_STAR, + ACTIONS(10278), 1, + anon_sym_AMP_AMP, + ACTIONS(10280), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8769), 1, + sym__declarator, + STATE(10951), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [116637] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(10805), 1, + ACTIONS(10768), 1, anon_sym_DOT_STAR, - ACTIONS(10807), 1, + ACTIONS(10770), 1, anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, + ACTIONS(11353), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, + ACTIONS(11355), 1, anon_sym_COMMA, - ACTIONS(11341), 1, + ACTIONS(11359), 1, anon_sym_DASH, - ACTIONS(11343), 1, + ACTIONS(11361), 1, anon_sym_PLUS, - ACTIONS(11345), 1, + ACTIONS(11363), 1, anon_sym_STAR, - ACTIONS(11347), 1, + ACTIONS(11365), 1, anon_sym_SLASH, - ACTIONS(11349), 1, + ACTIONS(11367), 1, anon_sym_PERCENT, - ACTIONS(11351), 1, + ACTIONS(11369), 1, anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, + ACTIONS(11371), 1, anon_sym_AMP_AMP, - ACTIONS(11355), 1, + ACTIONS(11373), 1, anon_sym_PIPE, - ACTIONS(11357), 1, + ACTIONS(11375), 1, anon_sym_CARET, - ACTIONS(11359), 1, + ACTIONS(11377), 1, anon_sym_AMP, - ACTIONS(11361), 1, + ACTIONS(11379), 1, anon_sym_EQ_EQ, - ACTIONS(11363), 1, + ACTIONS(11381), 1, anon_sym_BANG_EQ, - ACTIONS(11365), 1, + ACTIONS(11383), 1, anon_sym_GT, - ACTIONS(11367), 1, + ACTIONS(11385), 1, anon_sym_GT_EQ, - ACTIONS(11369), 1, + ACTIONS(11387), 1, anon_sym_LT_EQ, - ACTIONS(11371), 1, + ACTIONS(11389), 1, anon_sym_LT, - ACTIONS(11373), 1, + ACTIONS(11391), 1, anon_sym_LT_LT, - ACTIONS(11375), 1, + ACTIONS(11393), 1, anon_sym_GT_GT, - ACTIONS(11377), 1, + ACTIONS(11395), 1, anon_sym_EQ, - ACTIONS(11379), 1, + ACTIONS(11397), 1, anon_sym_QMARK, - ACTIONS(11381), 1, + ACTIONS(11399), 1, anon_sym_STAR_EQ, - ACTIONS(11383), 1, + ACTIONS(11401), 1, anon_sym_SLASH_EQ, - ACTIONS(11385), 1, + ACTIONS(11403), 1, anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, + ACTIONS(11405), 1, anon_sym_PLUS_EQ, - ACTIONS(11389), 1, + ACTIONS(11407), 1, anon_sym_DASH_EQ, - ACTIONS(11391), 1, + ACTIONS(11409), 1, anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, + ACTIONS(11411), 1, anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, + ACTIONS(11413), 1, anon_sym_AMP_EQ, - ACTIONS(11397), 1, + ACTIONS(11415), 1, anon_sym_CARET_EQ, - ACTIONS(11399), 1, + ACTIONS(11417), 1, anon_sym_PIPE_EQ, - ACTIONS(11401), 1, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, + ACTIONS(11421), 1, anon_sym_or, - ACTIONS(11405), 1, + ACTIONS(11423), 1, anon_sym_and, - ACTIONS(11407), 1, + ACTIONS(11425), 1, anon_sym_bitor, - ACTIONS(11409), 1, + ACTIONS(11427), 1, anon_sym_xor, - ACTIONS(11411), 1, + ACTIONS(11429), 1, anon_sym_bitand, - ACTIONS(11413), 1, + ACTIONS(11431), 1, anon_sym_not_eq, - ACTIONS(11440), 1, + ACTIONS(11453), 1, anon_sym_RPAREN, - STATE(1712), 1, + STATE(1525), 1, sym__binary_fold_operator, - STATE(5663), 1, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - STATE(10629), 1, + STATE(10866), 1, sym__fold_operator, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11415), 2, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [115804] = 25, + [116793] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(10218), 1, - anon_sym_STAR, - ACTIONS(10220), 1, - anon_sym_AMP_AMP, - ACTIONS(10222), 1, - anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7986), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8541), 1, + STATE(8773), 1, sym__declarator, - STATE(11612), 1, + STATE(11132), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -553209,7 +553531,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -553223,141 +553545,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [115908] = 27, + [116897] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11442), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11450), 1, - anon_sym_AMP_AMP, - ACTIONS(11452), 1, - anon_sym_PIPE, - ACTIONS(11456), 1, - anon_sym_AMP, - ACTIONS(11464), 1, - anon_sym_QMARK, - ACTIONS(11466), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11468), 1, - anon_sym_or, - ACTIONS(11470), 1, - anon_sym_and, - ACTIONS(11472), 1, - anon_sym_bitor, - ACTIONS(11474), 1, - anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(10489), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11460), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10562), 1, anon_sym_LT, - ACTIONS(10491), 14, + ACTIONS(10678), 1, + anon_sym_EQ, + STATE(4286), 1, + sym_template_argument_list, + ACTIONS(10676), 2, 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, - [116016] = 25, + ACTIONS(5637), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(7379), 38, + 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [116967] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10246), 1, + ACTIONS(10276), 1, anon_sym_STAR, - ACTIONS(10248), 1, + ACTIONS(10278), 1, anon_sym_AMP_AMP, - ACTIONS(10250), 1, + ACTIONS(10280), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8789), 1, + STATE(8800), 1, sym__declarator, - STATE(10837), 1, + STATE(10951), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -553369,7 +553672,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -553383,21 +553686,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116120] = 8, + [117071] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(11434), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11436), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - STATE(5611), 1, - sym_new_declarator, - STATE(6042), 2, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 16, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9694), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553407,22 +553712,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_DOT, - anon_sym_DASH_GT, - ACTIONS(9258), 30, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9696), 26, 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, @@ -553430,87 +553736,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [116190] = 26, + anon_sym_GT2, + [117143] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_EQ, - ACTIONS(10900), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11480), 1, + ACTIONS(11317), 1, anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, + ACTIONS(11319), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11321), 1, anon_sym_PIPE, - ACTIONS(11488), 1, + ACTIONS(11325), 1, anon_sym_AMP, - ACTIONS(11494), 1, - anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11337), 1, anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, + ACTIONS(11339), 1, anon_sym_or, - ACTIONS(11502), 1, + ACTIONS(11341), 1, anon_sym_and, - ACTIONS(11504), 1, + ACTIONS(11343), 1, anon_sym_bitor, - ACTIONS(11506), 1, + ACTIONS(11345), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, sym_argument_list, - STATE(5920), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(10485), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11313), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11486), 2, + ACTIONS(11323), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11496), 2, + ACTIONS(11331), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11327), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(11329), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 17, + ACTIONS(10487), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553518,87 +553821,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [116296] = 3, + anon_sym_GT2, + [117247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 23, - aux_sym_preproc_elif_token1, + ACTIONS(6608), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6606), 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, + [117307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6656), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6658), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8915), 29, + ACTIONS(6651), 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [116356] = 9, + [117369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9681), 17, + ACTIONS(7119), 1, + anon_sym_COLON_COLON, + ACTIONS(7405), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7124), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553609,21 +553963,23 @@ 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(9683), 28, + anon_sym_DOT, + ACTIONS(7129), 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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -553645,26 +554001,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [116428] = 10, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [117435] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9715), 19, + ACTIONS(9694), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -553674,23 +554029,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(9717), 24, + ACTIONS(9696), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -553698,6 +554053,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, @@ -553708,73 +554064,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [116502] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [117507] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_EQ, - ACTIONS(10900), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11480), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(10268), 1, + anon_sym_STAR, + ACTIONS(10270), 1, + anon_sym_AMP_AMP, + ACTIONS(10272), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8768), 1, + sym__declarator, + STATE(11002), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [117611] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11355), 1, + anon_sym_COMMA, + ACTIONS(11359), 1, + anon_sym_DASH, + ACTIONS(11361), 1, + anon_sym_PLUS, + ACTIONS(11363), 1, + anon_sym_STAR, + ACTIONS(11365), 1, + anon_sym_SLASH, + ACTIONS(11367), 1, + anon_sym_PERCENT, + ACTIONS(11369), 1, anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, + ACTIONS(11371), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11373), 1, anon_sym_PIPE, - ACTIONS(11488), 1, + ACTIONS(11375), 1, + anon_sym_CARET, + ACTIONS(11377), 1, anon_sym_AMP, - ACTIONS(11494), 1, + ACTIONS(11379), 1, + anon_sym_EQ_EQ, + ACTIONS(11381), 1, + anon_sym_BANG_EQ, + ACTIONS(11383), 1, + anon_sym_GT, + ACTIONS(11385), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11387), 1, + anon_sym_LT_EQ, + ACTIONS(11389), 1, + anon_sym_LT, + ACTIONS(11391), 1, + anon_sym_LT_LT, + ACTIONS(11393), 1, + anon_sym_GT_GT, + ACTIONS(11395), 1, + anon_sym_EQ, + ACTIONS(11397), 1, + anon_sym_QMARK, + ACTIONS(11399), 1, + anon_sym_STAR_EQ, + ACTIONS(11401), 1, + anon_sym_SLASH_EQ, + ACTIONS(11403), 1, + anon_sym_PERCENT_EQ, + ACTIONS(11405), 1, + anon_sym_PLUS_EQ, + ACTIONS(11407), 1, + anon_sym_DASH_EQ, + ACTIONS(11409), 1, + anon_sym_LT_LT_EQ, + ACTIONS(11411), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11413), 1, + anon_sym_AMP_EQ, + ACTIONS(11415), 1, + anon_sym_CARET_EQ, + ACTIONS(11417), 1, + anon_sym_PIPE_EQ, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, + ACTIONS(11421), 1, anon_sym_or, - ACTIONS(11502), 1, + ACTIONS(11423), 1, anon_sym_and, - ACTIONS(11504), 1, + ACTIONS(11425), 1, anon_sym_bitor, - ACTIONS(11506), 1, + ACTIONS(11427), 1, + anon_sym_xor, + ACTIONS(11429), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(11431), 1, + anon_sym_not_eq, + ACTIONS(11455), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, sym_argument_list, - STATE(5920), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11476), 2, + [117767] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9081), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11486), 2, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, anon_sym_CARET, - anon_sym_xor, - ACTIONS(11496), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9083), 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, + [117827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9059), 20, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + anon_sym_PIPE, + anon_sym_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(9061), 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, - ACTIONS(11492), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [117887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9085), 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, - ACTIONS(10437), 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(9087), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_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, @@ -553789,60 +554413,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [116608] = 25, + anon_sym_LT_EQ_GT, + anon_sym_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, + [117947] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10268), 1, + anon_sym_STAR, + ACTIONS(10270), 1, + anon_sym_AMP_AMP, + ACTIONS(10272), 1, + anon_sym_AMP, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8794), 1, + STATE(8813), 1, sym__declarator, - STATE(11554), 1, + STATE(11002), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -553854,7 +554486,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -553868,44 +554500,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [116712] = 7, + [118051] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + ACTIONS(10485), 1, + anon_sym_EQ, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(10713), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - STATE(1978), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10206), 18, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(11461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_PIPE, + ACTIONS(11469), 1, + anon_sym_AMP, + ACTIONS(11475), 1, + anon_sym_GT_EQ, + ACTIONS(11479), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11481), 1, + anon_sym_or, + ACTIONS(11483), 1, + anon_sym_and, + ACTIONS(11485), 1, + anon_sym_bitor, + ACTIONS(11487), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11467), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11471), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(10204), 30, + ACTIONS(10487), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -553921,125 +554580,83 @@ 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, + [118157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 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_COLON, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [116780] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7874), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, anon_sym_COMMA, - ACTIONS(11341), 1, - anon_sym_DASH, - ACTIONS(11343), 1, - anon_sym_PLUS, - ACTIONS(11345), 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(11347), 1, - anon_sym_SLASH, - ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(11351), 1, anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, anon_sym_AMP_AMP, - ACTIONS(11355), 1, - anon_sym_PIPE, - ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11359), 1, - anon_sym_AMP, - ACTIONS(11361), 1, anon_sym_EQ_EQ, - ACTIONS(11363), 1, anon_sym_BANG_EQ, - ACTIONS(11365), 1, - anon_sym_GT, - ACTIONS(11367), 1, anon_sym_GT_EQ, - ACTIONS(11369), 1, - anon_sym_LT_EQ, - ACTIONS(11371), 1, - anon_sym_LT, - ACTIONS(11373), 1, anon_sym_LT_LT, - ACTIONS(11375), 1, anon_sym_GT_GT, - ACTIONS(11377), 1, - anon_sym_EQ, - ACTIONS(11379), 1, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(11381), 1, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [118217] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6888), 1, + anon_sym_EQ, + ACTIONS(6890), 13, anon_sym_STAR_EQ, - ACTIONS(11383), 1, anon_sym_SLASH_EQ, - ACTIONS(11385), 1, anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, anon_sym_PLUS_EQ, - ACTIONS(11389), 1, anon_sym_DASH_EQ, - ACTIONS(11391), 1, anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, anon_sym_AMP_EQ, - ACTIONS(11397), 1, anon_sym_CARET_EQ, - ACTIONS(11399), 1, anon_sym_PIPE_EQ, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, - anon_sym_or, - ACTIONS(11405), 1, - anon_sym_and, - ACTIONS(11407), 1, - anon_sym_bitor, - ACTIONS(11409), 1, - anon_sym_xor, - ACTIONS(11411), 1, - anon_sym_bitand, - ACTIONS(11413), 1, - anon_sym_not_eq, - ACTIONS(11508), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [116936] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9711), 19, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5619), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554053,53 +554670,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9713), 32, + ACTIONS(5611), 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_SEMI, + anon_sym___attribute__, + 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, + [118281] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, anon_sym_LBRACK, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11355), 1, + anon_sym_COMMA, + ACTIONS(11359), 1, + anon_sym_DASH, + ACTIONS(11361), 1, + anon_sym_PLUS, + ACTIONS(11363), 1, + anon_sym_STAR, + ACTIONS(11365), 1, + anon_sym_SLASH, + ACTIONS(11367), 1, + anon_sym_PERCENT, + ACTIONS(11369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11371), 1, + anon_sym_AMP_AMP, + ACTIONS(11373), 1, + anon_sym_PIPE, + ACTIONS(11375), 1, + anon_sym_CARET, + ACTIONS(11377), 1, + anon_sym_AMP, + ACTIONS(11379), 1, + anon_sym_EQ_EQ, + ACTIONS(11381), 1, + anon_sym_BANG_EQ, + ACTIONS(11383), 1, + anon_sym_GT, + ACTIONS(11385), 1, + anon_sym_GT_EQ, + ACTIONS(11387), 1, + anon_sym_LT_EQ, + ACTIONS(11389), 1, + anon_sym_LT, + ACTIONS(11391), 1, + anon_sym_LT_LT, + ACTIONS(11393), 1, + anon_sym_GT_GT, + ACTIONS(11395), 1, + anon_sym_EQ, + ACTIONS(11397), 1, anon_sym_QMARK, + ACTIONS(11399), 1, anon_sym_STAR_EQ, + ACTIONS(11401), 1, anon_sym_SLASH_EQ, + ACTIONS(11403), 1, anon_sym_PERCENT_EQ, + ACTIONS(11405), 1, anon_sym_PLUS_EQ, + ACTIONS(11407), 1, anon_sym_DASH_EQ, + ACTIONS(11409), 1, anon_sym_LT_LT_EQ, + ACTIONS(11411), 1, anon_sym_GT_GT_EQ, + ACTIONS(11413), 1, anon_sym_AMP_EQ, + ACTIONS(11415), 1, anon_sym_CARET_EQ, + ACTIONS(11417), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, + ACTIONS(11421), 1, + anon_sym_or, + ACTIONS(11423), 1, + anon_sym_and, + ACTIONS(11425), 1, anon_sym_bitor, + ACTIONS(11427), 1, + anon_sym_xor, + ACTIONS(11429), 1, anon_sym_bitand, + ACTIONS(11431), 1, anon_sym_not_eq, + ACTIONS(11489), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [116998] = 5, + [118437] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11510), 1, - anon_sym_LT, - STATE(5535), 1, - sym_template_argument_list, - ACTIONS(9711), 18, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10820), 1, + anon_sym_LBRACK, + STATE(1972), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10221), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554109,26 +554822,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(9713), 32, + ACTIONS(10219), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -554136,7 +554847,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, @@ -554150,15 +554860,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, - [117062] = 5, + anon_sym_DASH_GT, + anon_sym_GT2, + [118505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11513), 1, - anon_sym_LT, - STATE(2998), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(9653), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554169,6 +554876,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, @@ -554177,7 +554885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9652), 32, + ACTIONS(9655), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554187,6 +554895,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, @@ -554210,79 +554919,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [117126] = 30, + [118565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, + ACTIONS(6592), 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, - ACTIONS(10350), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6590), 39, anon_sym_AMP, - ACTIONS(10354), 1, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, - ACTIONS(10357), 1, anon_sym___attribute, - ACTIONS(10363), 1, + 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, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11300), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7596), 1, - sym__function_attributes_start, - STATE(7672), 1, - sym_ref_qualifier, - STATE(8636), 1, - sym__function_attributes_end, - STATE(8713), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10821), 2, - anon_sym_final, - anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6481), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7936), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(10352), 12, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -554294,10 +554967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [117240] = 3, + 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, + [118625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 20, + ACTIONS(9051), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554318,7 +555000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9917), 32, + ACTIONS(9053), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -554351,13 +555033,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [117300] = 4, + [118685] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 20, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1973), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10262), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554367,26 +555054,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(6596), 30, + ACTIONS(10260), 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_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -554394,6 +555079,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, @@ -554408,97 +555094,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [117362] = 30, + [118753] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10354), 1, - anon_sym___attribute__, - ACTIONS(10357), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10824), 1, - anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11305), 1, + anon_sym_DOT, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7573), 1, - sym__function_attributes_start, - STATE(7677), 1, - sym_ref_qualifier, - STATE(8588), 1, - sym_trailing_return_type, - STATE(8670), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10821), 2, - anon_sym_final, - anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6481), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(7964), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [117476] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6601), 1, - anon_sym_COLON_COLON, - ACTIONS(9513), 19, + ACTIONS(9698), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554516,19 +555131,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(9515), 32, + ACTIONS(9700), 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, @@ -554547,287 +555158,73 @@ 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, - [117538] = 27, + [118827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11442), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11450), 1, - anon_sym_AMP_AMP, - ACTIONS(11452), 1, + ACTIONS(9438), 23, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - ACTIONS(11456), 1, anon_sym_AMP, - ACTIONS(11464), 1, - anon_sym_QMARK, - ACTIONS(11466), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11468), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, - ACTIONS(11470), 1, anon_sym_and, - ACTIONS(11472), 1, anon_sym_bitor, - ACTIONS(11474), 1, - anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(10477), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(11460), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10479), 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, - [117646] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + anon_sym_DOT, sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10234), 1, - anon_sym_STAR, - ACTIONS(10236), 1, - anon_sym_AMP_AMP, - ACTIONS(10238), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8541), 1, - sym__declarator, - STATE(10900), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [117750] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9440), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, anon_sym_COMMA, - ACTIONS(11341), 1, - anon_sym_DASH, - ACTIONS(11343), 1, - anon_sym_PLUS, - ACTIONS(11345), 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(11347), 1, - anon_sym_SLASH, - ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(11351), 1, anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, anon_sym_AMP_AMP, - ACTIONS(11355), 1, - anon_sym_PIPE, - ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11359), 1, - anon_sym_AMP, - ACTIONS(11361), 1, anon_sym_EQ_EQ, - ACTIONS(11363), 1, anon_sym_BANG_EQ, - ACTIONS(11365), 1, - anon_sym_GT, - ACTIONS(11367), 1, anon_sym_GT_EQ, - ACTIONS(11369), 1, - anon_sym_LT_EQ, - ACTIONS(11371), 1, - anon_sym_LT, - ACTIONS(11373), 1, anon_sym_LT_LT, - ACTIONS(11375), 1, anon_sym_GT_GT, - ACTIONS(11377), 1, - anon_sym_EQ, - ACTIONS(11379), 1, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(11381), 1, - anon_sym_STAR_EQ, - ACTIONS(11383), 1, - anon_sym_SLASH_EQ, - ACTIONS(11385), 1, - anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, - anon_sym_PLUS_EQ, - ACTIONS(11389), 1, - anon_sym_DASH_EQ, - ACTIONS(11391), 1, - anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, - anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, - anon_sym_AMP_EQ, - ACTIONS(11397), 1, - anon_sym_CARET_EQ, - ACTIONS(11399), 1, - anon_sym_PIPE_EQ, - ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, - anon_sym_or, - ACTIONS(11405), 1, - anon_sym_and, - ACTIONS(11407), 1, - anon_sym_bitor, - ACTIONS(11409), 1, - anon_sym_xor, - ACTIONS(11411), 1, - anon_sym_bitand, - ACTIONS(11413), 1, - anon_sym_not_eq, - ACTIONS(11520), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [117906] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [118887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - ACTIONS(10713), 1, - anon_sym_LBRACK, - STATE(1978), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10210), 18, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(11491), 1, + anon_sym_LT, + STATE(5705), 1, + sym_template_argument_list, + ACTIONS(9536), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -554838,7 +555235,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, @@ -554846,14 +555242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10208), 30, + ACTIONS(9538), 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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -554877,274 +555275,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [117974] = 25, + [118953] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10234), 1, - anon_sym_STAR, - ACTIONS(10236), 1, - anon_sym_AMP_AMP, - ACTIONS(10238), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8548), 1, - sym__declarator, - STATE(10900), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [118078] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8084), 1, - anon_sym_LPAREN2, - ACTIONS(8086), 1, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, anon_sym_STAR, - ACTIONS(8088), 1, - anon_sym_AMP_AMP, - ACTIONS(8090), 1, - anon_sym_AMP, - ACTIONS(8098), 1, - anon_sym_LBRACK, - STATE(2079), 1, - sym_parameter_list, - STATE(5348), 1, - sym__function_declarator_seq, - STATE(6149), 1, - sym__abstract_declarator, - STATE(5347), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 19, - aux_sym_preproc_elif_token1, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9621), 16, 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9427), 20, + ACTIONS(9623), 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_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_AMP_AMP, 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_STAR_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [118156] = 6, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [119029] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(7445), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7092), 19, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11355), 1, + anon_sym_COMMA, + ACTIONS(11359), 1, anon_sym_DASH, + ACTIONS(11361), 1, anon_sym_PLUS, + ACTIONS(11363), 1, anon_sym_STAR, + ACTIONS(11365), 1, anon_sym_SLASH, + ACTIONS(11367), 1, anon_sym_PERCENT, + ACTIONS(11369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11371), 1, + anon_sym_AMP_AMP, + ACTIONS(11373), 1, anon_sym_PIPE, + ACTIONS(11375), 1, anon_sym_CARET, + ACTIONS(11377), 1, anon_sym_AMP, + ACTIONS(11379), 1, + anon_sym_EQ_EQ, + ACTIONS(11381), 1, + anon_sym_BANG_EQ, + ACTIONS(11383), 1, anon_sym_GT, + ACTIONS(11385), 1, anon_sym_GT_EQ, + ACTIONS(11387), 1, anon_sym_LT_EQ, + ACTIONS(11389), 1, + anon_sym_LT, + ACTIONS(11391), 1, anon_sym_LT_LT, + ACTIONS(11393), 1, anon_sym_GT_GT, + ACTIONS(11395), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(7097), 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, + ACTIONS(11397), 1, anon_sym_QMARK, + ACTIONS(11399), 1, anon_sym_STAR_EQ, + ACTIONS(11401), 1, anon_sym_SLASH_EQ, + ACTIONS(11403), 1, anon_sym_PERCENT_EQ, + ACTIONS(11405), 1, anon_sym_PLUS_EQ, + ACTIONS(11407), 1, anon_sym_DASH_EQ, + ACTIONS(11409), 1, anon_sym_LT_LT_EQ, + ACTIONS(11411), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11413), 1, anon_sym_AMP_EQ, + ACTIONS(11415), 1, anon_sym_CARET_EQ, + ACTIONS(11417), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, + ACTIONS(11421), 1, + anon_sym_or, + ACTIONS(11423), 1, + anon_sym_and, + ACTIONS(11425), 1, anon_sym_bitor, + ACTIONS(11427), 1, + anon_sym_xor, + ACTIONS(11429), 1, anon_sym_bitand, + ACTIONS(11431), 1, anon_sym_not_eq, + ACTIONS(11494), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [118222] = 26, + [119185] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 1, + ACTIONS(10489), 1, anon_sym_EQ, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11480), 1, + ACTIONS(11461), 1, anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, + ACTIONS(11463), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11465), 1, anon_sym_PIPE, - ACTIONS(11488), 1, + ACTIONS(11469), 1, anon_sym_AMP, - ACTIONS(11494), 1, + ACTIONS(11475), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, + ACTIONS(11481), 1, anon_sym_or, - ACTIONS(11502), 1, + ACTIONS(11483), 1, anon_sym_and, - ACTIONS(11504), 1, + ACTIONS(11485), 1, anon_sym_bitor, - ACTIONS(11506), 1, + ACTIONS(11487), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11486), 2, + ACTIONS(11467), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11496), 2, + ACTIONS(11477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11471), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 17, + ACTIONS(10491), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK, @@ -555162,23 +555525,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [118328] = 9, + [119291] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9657), 19, + ACTIONS(9716), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555188,23 +555551,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(9659), 26, + ACTIONS(9718), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555212,6 +555575,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, @@ -555224,129 +555588,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [118400] = 3, + [119363] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 17, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9621), 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_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_literal_suffix, - ACTIONS(8752), 35, + ACTIONS(9623), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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, - anon_sym_COLON_RBRACK, - [118460] = 25, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [119437] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11450), 1, anon_sym_AMP_AMP, - ACTIONS(11452), 1, + ACTIONS(11321), 1, anon_sym_PIPE, - ACTIONS(11456), 1, + ACTIONS(11325), 1, anon_sym_AMP, - ACTIONS(11466), 1, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11337), 1, anon_sym_LT_EQ_GT, - ACTIONS(11468), 1, - anon_sym_or, - ACTIONS(11470), 1, + ACTIONS(11341), 1, anon_sym_and, - ACTIONS(11472), 1, + ACTIONS(11343), 1, anon_sym_bitor, - ACTIONS(11474), 1, + ACTIONS(11345), 1, anon_sym_bitand, - STATE(5741), 1, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(10538), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(11313), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, + ACTIONS(11323), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11462), 2, + ACTIONS(11331), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11446), 3, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9621), 3, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + ACTIONS(11315), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, + ACTIONS(11327), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11460), 4, + ACTIONS(11329), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 16, + ACTIONS(9623), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555361,41 +555729,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_GT2, - [118564] = 3, + [119537] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 20, + ACTIONS(9661), 1, + anon_sym_EQ, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(11461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_PIPE, + ACTIONS(11469), 1, + anon_sym_AMP, + ACTIONS(11475), 1, + anon_sym_GT_EQ, + ACTIONS(11479), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11481), 1, + anon_sym_or, + ACTIONS(11483), 1, + anon_sym_and, + ACTIONS(11485), 1, + anon_sym_bitor, + ACTIONS(11487), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11467), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11471), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11473), 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(9065), 32, + ACTIONS(9659), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555410,86 +555809,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [118624] = 30, + [119643] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6469), 1, anon_sym_LBRACK, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(10348), 1, + ACTIONS(10366), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10368), 1, anon_sym_AMP, - ACTIONS(10354), 1, + ACTIONS(10372), 1, anon_sym___attribute__, - ACTIONS(10357), 1, + ACTIONS(10375), 1, anon_sym___attribute, - ACTIONS(10363), 1, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, + ACTIONS(11269), 1, anon_sym_requires, - ACTIONS(11516), 1, + ACTIONS(11496), 1, anon_sym_DASH_GT, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(7588), 1, + STATE(7592), 1, sym__function_attributes_start, - STATE(7681), 1, + STATE(7694), 1, sym_ref_qualifier, - STATE(8666), 1, + STATE(8621), 1, sym__function_attributes_end, - STATE(8688), 1, + STATE(8673), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(6144), 2, + STATE(6141), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6360), 2, + STATE(6361), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8522), 2, + STATE(8505), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(6481), 3, + ACTIONS(6471), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - STATE(7916), 3, + STATE(7908), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -555502,43 +555893,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [118738] = 5, + [119757] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10902), 1, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11321), 1, + anon_sym_PIPE, + ACTIONS(11325), 1, + anon_sym_AMP, + ACTIONS(11333), 1, anon_sym_LBRACK, - STATE(5674), 1, - sym_new_declarator, - ACTIONS(9535), 18, + ACTIONS(11337), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11343), 1, + anon_sym_bitor, + ACTIONS(11345), 1, + anon_sym_bitand, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11313), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, + ACTIONS(11323), 2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + anon_sym_xor, + ACTIONS(11331), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11327), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(9621), 4, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9537), 32, + ACTIONS(11329), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 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_GT_EQ, - anon_sym_LBRACE, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555546,180 +555961,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [118802] = 25, + anon_sym_GT2, + [119853] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10264), 1, - anon_sym_STAR, - ACTIONS(10266), 1, - anon_sym_AMP_AMP, - ACTIONS(10268), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8804), 1, - sym__declarator, - STATE(10957), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [118906] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(11522), 1, - anon_sym_LT, - STATE(5542), 1, - sym_template_argument_list, - ACTIONS(9495), 19, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11355), 1, + anon_sym_COMMA, + ACTIONS(11359), 1, anon_sym_DASH, + ACTIONS(11361), 1, anon_sym_PLUS, + ACTIONS(11363), 1, anon_sym_STAR, + ACTIONS(11365), 1, anon_sym_SLASH, + ACTIONS(11367), 1, anon_sym_PERCENT, + ACTIONS(11369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11371), 1, + anon_sym_AMP_AMP, + ACTIONS(11373), 1, anon_sym_PIPE, + ACTIONS(11375), 1, anon_sym_CARET, + ACTIONS(11377), 1, anon_sym_AMP, + ACTIONS(11379), 1, + anon_sym_EQ_EQ, + ACTIONS(11381), 1, + anon_sym_BANG_EQ, + ACTIONS(11383), 1, anon_sym_GT, + ACTIONS(11385), 1, anon_sym_GT_EQ, + ACTIONS(11387), 1, anon_sym_LT_EQ, + ACTIONS(11389), 1, + anon_sym_LT, + ACTIONS(11391), 1, anon_sym_LT_LT, + ACTIONS(11393), 1, anon_sym_GT_GT, + ACTIONS(11395), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9497), 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, + ACTIONS(11397), 1, anon_sym_QMARK, + ACTIONS(11399), 1, anon_sym_STAR_EQ, + ACTIONS(11401), 1, anon_sym_SLASH_EQ, + ACTIONS(11403), 1, anon_sym_PERCENT_EQ, + ACTIONS(11405), 1, anon_sym_PLUS_EQ, + ACTIONS(11407), 1, anon_sym_DASH_EQ, + ACTIONS(11409), 1, anon_sym_LT_LT_EQ, + ACTIONS(11411), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11413), 1, anon_sym_AMP_EQ, + ACTIONS(11415), 1, anon_sym_CARET_EQ, + ACTIONS(11417), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, + ACTIONS(11421), 1, + anon_sym_or, + ACTIONS(11423), 1, + anon_sym_and, + ACTIONS(11425), 1, anon_sym_bitor, + ACTIONS(11427), 1, + anon_sym_xor, + ACTIONS(11429), 1, anon_sym_bitand, + ACTIONS(11431), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [118972] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - STATE(5741), 1, + ACTIONS(11498), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, sym_argument_list, - STATE(5917), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9673), 19, + [120009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9152), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -555729,23 +556086,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, - ACTIONS(9675), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9150), 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, @@ -555753,6 +556115,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, @@ -555763,53 +556126,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [119046] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [120069] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11325), 1, + anon_sym_AMP, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11337), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11345), 1, + anon_sym_bitand, + ACTIONS(11349), 1, anon_sym_DOT, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, + ACTIONS(11313), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11323), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11347), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9677), 19, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11315), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11327), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11329), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(9621), 5, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - anon_sym_xor, - ACTIONS(9679), 24, + ACTIONS(9623), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -555823,120 +556201,77 @@ 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, - [119120] = 51, + [120161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, - anon_sym_COMMA, - ACTIONS(11341), 1, + ACTIONS(9337), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, - ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(11345), 1, - anon_sym_STAR, - ACTIONS(11347), 1, anon_sym_SLASH, - ACTIONS(11349), 1, - anon_sym_PERCENT, - ACTIONS(11351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, - anon_sym_AMP_AMP, - ACTIONS(11355), 1, anon_sym_PIPE, - ACTIONS(11357), 1, - anon_sym_CARET, - ACTIONS(11359), 1, anon_sym_AMP, - ACTIONS(11361), 1, - anon_sym_EQ_EQ, - ACTIONS(11363), 1, - anon_sym_BANG_EQ, - ACTIONS(11365), 1, anon_sym_GT, - ACTIONS(11367), 1, - anon_sym_GT_EQ, - ACTIONS(11369), 1, anon_sym_LT_EQ, - ACTIONS(11371), 1, anon_sym_LT, - ACTIONS(11373), 1, - anon_sym_LT_LT, - ACTIONS(11375), 1, - anon_sym_GT_GT, - ACTIONS(11377), 1, - anon_sym_EQ, - ACTIONS(11379), 1, - anon_sym_QMARK, - ACTIONS(11381), 1, - anon_sym_STAR_EQ, - ACTIONS(11383), 1, - anon_sym_SLASH_EQ, - ACTIONS(11385), 1, - anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, - anon_sym_PLUS_EQ, - ACTIONS(11389), 1, - anon_sym_DASH_EQ, - ACTIONS(11391), 1, - anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, - anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, - anon_sym_AMP_EQ, - ACTIONS(11397), 1, - anon_sym_CARET_EQ, - ACTIONS(11399), 1, - anon_sym_PIPE_EQ, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, - ACTIONS(11405), 1, anon_sym_and, - ACTIONS(11407), 1, anon_sym_bitor, - ACTIONS(11409), 1, anon_sym_xor, - ACTIONS(11411), 1, anon_sym_bitand, - ACTIONS(11413), 1, anon_sym_not_eq, - ACTIONS(11525), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10803), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9339), 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_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [119276] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [120221] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7104), 7, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(10331), 1, + anon_sym_decltype, + ACTIONS(11500), 1, + sym_auto, + STATE(6080), 1, + sym_decltype_auto, + ACTIONS(7246), 7, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, @@ -555944,19 +556279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7106), 45, + ACTIONS(7248), 41, 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_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym___declspec, anon_sym_LBRACE, @@ -555981,8 +556314,6 @@ 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_final, @@ -555990,256 +556321,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [119336] = 8, + [120289] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11529), 1, + ACTIONS(11325), 1, + anon_sym_AMP, + ACTIONS(11333), 1, anon_sym_LBRACK, - STATE(5718), 1, - sym_new_declarator, - STATE(6024), 2, + ACTIONS(11337), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11345), 1, + anon_sym_bitand, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 20, - aux_sym_preproc_elif_token1, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11313), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PERCENT, + ACTIONS(11327), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11329), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(9621), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, + anon_sym_GT2, + [120379] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11337), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11313), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11327), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11329), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, anon_sym_xor, + ACTIONS(9623), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_bitor, anon_sym_bitand, - anon_sym_not_eq, + anon_sym_GT2, + [120465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9027), 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, - sym_identifier, - ACTIONS(9258), 26, + anon_sym_DASH_GT, + ACTIONS(9029), 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_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [119406] = 51, + anon_sym_DASH_GT_STAR, + [120525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, - anon_sym_COMMA, - ACTIONS(11341), 1, + ACTIONS(9791), 20, anon_sym_DASH, - ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(11345), 1, anon_sym_STAR, - ACTIONS(11347), 1, anon_sym_SLASH, - ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(11351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, - anon_sym_AMP_AMP, - ACTIONS(11355), 1, anon_sym_PIPE, - ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11359), 1, anon_sym_AMP, - ACTIONS(11361), 1, - anon_sym_EQ_EQ, - ACTIONS(11363), 1, - anon_sym_BANG_EQ, - ACTIONS(11365), 1, anon_sym_GT, - ACTIONS(11367), 1, - anon_sym_GT_EQ, - ACTIONS(11369), 1, anon_sym_LT_EQ, - ACTIONS(11371), 1, anon_sym_LT, - ACTIONS(11373), 1, anon_sym_LT_LT, - ACTIONS(11375), 1, anon_sym_GT_GT, - ACTIONS(11377), 1, + anon_sym_LBRACK, anon_sym_EQ, - ACTIONS(11379), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9793), 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(11381), 1, anon_sym_STAR_EQ, - ACTIONS(11383), 1, anon_sym_SLASH_EQ, - ACTIONS(11385), 1, anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, anon_sym_PLUS_EQ, - ACTIONS(11389), 1, anon_sym_DASH_EQ, - ACTIONS(11391), 1, anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, anon_sym_AMP_EQ, - ACTIONS(11397), 1, anon_sym_CARET_EQ, - ACTIONS(11399), 1, anon_sym_PIPE_EQ, - ACTIONS(11401), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, - anon_sym_or, - ACTIONS(11405), 1, - anon_sym_and, - ACTIONS(11407), 1, anon_sym_bitor, - ACTIONS(11409), 1, - anon_sym_xor, - ACTIONS(11411), 1, anon_sym_bitand, - ACTIONS(11413), 1, anon_sym_not_eq, - ACTIONS(11531), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [119562] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10264), 1, - anon_sym_STAR, - ACTIONS(10266), 1, - anon_sym_AMP_AMP, - ACTIONS(10268), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8794), 1, - sym__declarator, - STATE(10957), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [119666] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [120585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 20, + ACTIONS(9031), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556260,7 +556601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9699), 32, + ACTIONS(9033), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -556293,71 +556634,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [119726] = 25, + [120645] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11450), 1, - anon_sym_AMP_AMP, - ACTIONS(11452), 1, - anon_sym_PIPE, - ACTIONS(11456), 1, - anon_sym_AMP, - ACTIONS(11466), 1, + ACTIONS(11337), 1, anon_sym_LT_EQ_GT, - ACTIONS(11468), 1, - anon_sym_or, - ACTIONS(11470), 1, - anon_sym_and, - ACTIONS(11472), 1, - anon_sym_bitor, - ACTIONS(11474), 1, - anon_sym_bitand, - STATE(5741), 1, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(10542), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(11313), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, + ACTIONS(11331), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11446), 3, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11460), 4, + ACTIONS(11329), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 16, + ACTIONS(9621), 8, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 23, 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, @@ -556371,108 +556699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_GT2, - [119830] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10354), 1, - anon_sym___attribute__, - ACTIONS(10357), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, - anon_sym_requires, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7587), 1, - sym__function_attributes_start, - STATE(7688), 1, - sym_ref_qualifier, - STATE(8526), 1, - sym_trailing_return_type, - STATE(8665), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(6481), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(7929), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [119944] = 9, + [120729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9681), 19, + ACTIONS(9067), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -556482,23 +556716,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, - ACTIONS(9683), 26, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9069), 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, @@ -556506,6 +556745,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, @@ -556518,72 +556758,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [120016] = 25, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [120789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11450), 1, - anon_sym_AMP_AMP, - ACTIONS(11452), 1, - anon_sym_PIPE, - ACTIONS(11456), 1, - anon_sym_AMP, - ACTIONS(11466), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11468), 1, - anon_sym_or, - ACTIONS(11470), 1, - anon_sym_and, - ACTIONS(11472), 1, - anon_sym_bitor, - ACTIONS(11474), 1, - anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(9599), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(9047), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11460), 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(9597), 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(9049), 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, @@ -556591,78 +556802,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_GT2, - [120120] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11450), 1, - anon_sym_AMP_AMP, - ACTIONS(11452), 1, - anon_sym_PIPE, - ACTIONS(11456), 1, - anon_sym_AMP, - ACTIONS(11466), 1, anon_sym_LT_EQ_GT, - ACTIONS(11468), 1, - anon_sym_or, - ACTIONS(11470), 1, - anon_sym_and, - ACTIONS(11472), 1, anon_sym_bitor, - ACTIONS(11474), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(10473), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11321), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + anon_sym_DASH_GT_STAR, + [120849] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9928), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11460), 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(10475), 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(9930), 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, @@ -556670,337 +556859,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_GT2, - [120224] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, - sym_identifier, - ACTIONS(10218), 1, - anon_sym_STAR, - ACTIONS(10220), 1, - anon_sym_AMP_AMP, - ACTIONS(10222), 1, - anon_sym_AMP, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8548), 1, - sym__declarator, - STATE(11612), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [120328] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10252), 1, - anon_sym_STAR, - ACTIONS(10254), 1, - anon_sym_AMP_AMP, - ACTIONS(10256), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8816), 1, - sym__declarator, - STATE(11008), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [120432] = 51, + anon_sym_LT_EQ_GT, + anon_sym_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, + [120909] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(11337), 1, - anon_sym_COMMA, - ACTIONS(11341), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11313), 2, anon_sym_DASH, - ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(11345), 1, + ACTIONS(11331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, anon_sym_STAR, - ACTIONS(11347), 1, anon_sym_SLASH, - ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(11351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, - anon_sym_AMP_AMP, - ACTIONS(11355), 1, + ACTIONS(9621), 12, anon_sym_PIPE, - ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11359), 1, anon_sym_AMP, - ACTIONS(11361), 1, - anon_sym_EQ_EQ, - ACTIONS(11363), 1, - anon_sym_BANG_EQ, - ACTIONS(11365), 1, anon_sym_GT, - ACTIONS(11367), 1, anon_sym_GT_EQ, - ACTIONS(11369), 1, anon_sym_LT_EQ, - ACTIONS(11371), 1, anon_sym_LT, - ACTIONS(11373), 1, - anon_sym_LT_LT, - ACTIONS(11375), 1, - anon_sym_GT_GT, - ACTIONS(11377), 1, anon_sym_EQ, - ACTIONS(11379), 1, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 23, + 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, - ACTIONS(11381), 1, anon_sym_STAR_EQ, - ACTIONS(11383), 1, anon_sym_SLASH_EQ, - ACTIONS(11385), 1, anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, anon_sym_PLUS_EQ, - ACTIONS(11389), 1, anon_sym_DASH_EQ, - ACTIONS(11391), 1, anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, - anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, anon_sym_AMP_EQ, - ACTIONS(11397), 1, anon_sym_CARET_EQ, - ACTIONS(11399), 1, anon_sym_PIPE_EQ, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, - anon_sym_or, - ACTIONS(11405), 1, - anon_sym_and, - ACTIONS(11407), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_bitor, - ACTIONS(11409), 1, - anon_sym_xor, - ACTIONS(11411), 1, anon_sym_bitand, - ACTIONS(11413), 1, anon_sym_not_eq, - ACTIONS(11533), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [120588] = 3, + anon_sym_GT2, + [120991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 23, - aux_sym_preproc_elif_token1, + ACTIONS(9928), 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_COLON, + 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(9335), 29, + anon_sym_DASH_GT, + ACTIONS(9930), 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_RBRACK_RBRACK, - 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, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [120648] = 3, + anon_sym_DASH_GT_STAR, + [121051] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 23, + ACTIONS(7122), 1, + anon_sym_LBRACE, + ACTIONS(7405), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7119), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7124), 19, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -557009,7 +557020,6 @@ 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, @@ -557021,10 +557031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9339), 29, + ACTIONS(7129), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557032,7 +557039,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -557054,142 +557060,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [120708] = 28, + [121119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 1, - anon_sym_EQ, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(7117), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11480), 1, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7122), 45, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, - anon_sym_PIPE, - ACTIONS(11488), 1, - anon_sym_AMP, - ACTIONS(11494), 1, - anon_sym_GT_EQ, - ACTIONS(11498), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON_COLON, + 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_or, - ACTIONS(11502), 1, anon_sym_and, - ACTIONS(11504), 1, - anon_sym_bitor, - ACTIONS(11506), 1, - anon_sym_bitand, - ACTIONS(11535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11537), 1, - anon_sym_QMARK, - STATE(5875), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [121179] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, sym_argument_list, - STATE(5920), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + ACTIONS(11313), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11347), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11486), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11496), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11315), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(9621), 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(9828), 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(9623), 24, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + 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, - [120818] = 25, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [121257] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10252), 1, - anon_sym_STAR, - ACTIONS(10254), 1, - anon_sym_AMP_AMP, - ACTIONS(10256), 1, - anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8789), 1, + STATE(8800), 1, sym__declarator, - STATE(11008), 1, + STATE(11132), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -557201,7 +557248,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -557215,42 +557262,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [120922] = 4, + [121361] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 18, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11313), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 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, - anon_sym_DOT, - ACTIONS(6596), 32, + ACTIONS(9623), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -557258,7 +557318,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, @@ -557269,77 +557328,88 @@ 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, - [120984] = 3, + anon_sym_GT2, + [121441] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1973), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10225), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9447), 29, + ACTIONS(10223), 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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [121044] = 6, + [121509] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(7445), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7092), 17, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9698), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557349,26 +557419,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(7097), 32, + ACTIONS(9700), 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_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_GT2, + [121583] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 1, + anon_sym_EQ, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9154), 1, + anon_sym_LPAREN2, + ACTIONS(9160), 1, + anon_sym_LBRACK, + ACTIONS(5647), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -557382,6 +557479,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + ACTIONS(5619), 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(5611), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -557390,14 +557516,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [121110] = 5, + [121653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11513), 1, - anon_sym_LT, - STATE(5135), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(7144), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7146), 46, + 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_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + 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__, + 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, + [121713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(9589), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557408,6 +557589,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, @@ -557416,7 +557598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9652), 32, + ACTIONS(9591), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557449,10 +557631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121174] = 3, + [121775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 20, + ACTIONS(11438), 1, + anon_sym_LT, + STATE(3032), 1, + sym_template_argument_list, + ACTIONS(9633), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557463,17 +557649,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(9222), 32, + ACTIONS(9635), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557483,7 +557667,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, @@ -557506,176 +557690,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [121234] = 7, + [121839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, - anon_sym_LPAREN2, - ACTIONS(10844), 1, - anon_sym_LBRACK, - STATE(1975), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10186), 20, + ACTIONS(8761), 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_EQ, - anon_sym_GT_GT_EQ, + 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(10184), 28, + sym_literal_suffix, + ACTIONS(8763), 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_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [121302] = 51, + 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_COLON_RBRACK, + [121899] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, - anon_sym_COMMA, - ACTIONS(11341), 1, + ACTIONS(11502), 1, + anon_sym_LT, + STATE(5670), 1, + sym_template_argument_list, + ACTIONS(9589), 18, anon_sym_DASH, - ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(11345), 1, anon_sym_STAR, - ACTIONS(11347), 1, anon_sym_SLASH, - ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(11351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, - anon_sym_AMP_AMP, - ACTIONS(11355), 1, anon_sym_PIPE, - ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11359), 1, anon_sym_AMP, - ACTIONS(11361), 1, - anon_sym_EQ_EQ, - ACTIONS(11363), 1, - anon_sym_BANG_EQ, - ACTIONS(11365), 1, anon_sym_GT, - ACTIONS(11367), 1, - anon_sym_GT_EQ, - ACTIONS(11369), 1, anon_sym_LT_EQ, - ACTIONS(11371), 1, - anon_sym_LT, - ACTIONS(11373), 1, anon_sym_LT_LT, - ACTIONS(11375), 1, anon_sym_GT_GT, - ACTIONS(11377), 1, anon_sym_EQ, - ACTIONS(11379), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9591), 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, - ACTIONS(11381), 1, anon_sym_STAR_EQ, - ACTIONS(11383), 1, anon_sym_SLASH_EQ, - ACTIONS(11385), 1, anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, anon_sym_PLUS_EQ, - ACTIONS(11389), 1, anon_sym_DASH_EQ, - ACTIONS(11391), 1, anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, anon_sym_AMP_EQ, - ACTIONS(11397), 1, anon_sym_CARET_EQ, - ACTIONS(11399), 1, anon_sym_PIPE_EQ, - ACTIONS(11401), 1, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, - anon_sym_or, - ACTIONS(11405), 1, - anon_sym_and, - ACTIONS(11407), 1, anon_sym_bitor, - ACTIONS(11409), 1, - anon_sym_xor, - ACTIONS(11411), 1, anon_sym_bitand, - ACTIONS(11413), 1, anon_sym_not_eq, - ACTIONS(11539), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [121458] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [121963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 17, + ACTIONS(8790), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -557693,7 +557827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8659), 35, + ACTIONS(8792), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557729,21 +557863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, anon_sym_COLON_RBRACK, - [121518] = 8, + [122023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - ACTIONS(11529), 1, - anon_sym_LBRACK, - STATE(5650), 1, - sym_new_declarator, - STATE(5946), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9248), 20, + ACTIONS(9475), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -557764,7 +557887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9250), 26, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9477), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -557772,6 +557898,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -557783,7 +557910,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -557791,41 +557920,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [121588] = 3, + [122083] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 20, + ACTIONS(10552), 1, + anon_sym_EQ, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(11461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_PIPE, + ACTIONS(11469), 1, + anon_sym_AMP, + ACTIONS(11475), 1, + anon_sym_GT_EQ, + ACTIONS(11479), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11481), 1, + anon_sym_or, + ACTIONS(11483), 1, + anon_sym_and, + ACTIONS(11485), 1, + anon_sym_bitor, + ACTIONS(11487), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11467), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11471), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11473), 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(9890), 32, + ACTIONS(10554), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -557840,123 +558000,162 @@ 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, - [121648] = 51, + [122189] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, - anon_sym_COMMA, - ACTIONS(11341), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10197), 1, + anon_sym_STAR, + ACTIONS(10199), 1, + anon_sym_AMP_AMP, + ACTIONS(10201), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8509), 1, + sym__declarator, + STATE(11637), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [122293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, - ACTIONS(11343), 1, anon_sym_PLUS, - ACTIONS(11345), 1, - anon_sym_STAR, - ACTIONS(11347), 1, anon_sym_SLASH, - ACTIONS(11349), 1, - anon_sym_PERCENT, - ACTIONS(11351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, - anon_sym_AMP_AMP, - ACTIONS(11355), 1, anon_sym_PIPE, - ACTIONS(11357), 1, - anon_sym_CARET, - ACTIONS(11359), 1, anon_sym_AMP, - ACTIONS(11361), 1, - anon_sym_EQ_EQ, - ACTIONS(11363), 1, - anon_sym_BANG_EQ, - ACTIONS(11365), 1, anon_sym_GT, - ACTIONS(11367), 1, - anon_sym_GT_EQ, - ACTIONS(11369), 1, anon_sym_LT_EQ, - ACTIONS(11371), 1, anon_sym_LT, - ACTIONS(11373), 1, - anon_sym_LT_LT, - ACTIONS(11375), 1, - anon_sym_GT_GT, - ACTIONS(11377), 1, - anon_sym_EQ, - ACTIONS(11379), 1, - anon_sym_QMARK, - ACTIONS(11381), 1, - anon_sym_STAR_EQ, - ACTIONS(11383), 1, - anon_sym_SLASH_EQ, - ACTIONS(11385), 1, - anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, - anon_sym_PLUS_EQ, - ACTIONS(11389), 1, - anon_sym_DASH_EQ, - ACTIONS(11391), 1, - anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, - anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, - anon_sym_AMP_EQ, - ACTIONS(11397), 1, - anon_sym_CARET_EQ, - ACTIONS(11399), 1, - anon_sym_PIPE_EQ, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, - ACTIONS(11405), 1, anon_sym_and, - ACTIONS(11407), 1, anon_sym_bitor, - ACTIONS(11409), 1, anon_sym_xor, - ACTIONS(11411), 1, anon_sym_bitand, - ACTIONS(11413), 1, anon_sym_not_eq, - ACTIONS(11541), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10803), 2, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7970), 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_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [121804] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [122353] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 20, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9702), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -557966,28 +558165,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9039), 32, + ACTIONS(9704), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -557995,7 +558189,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, @@ -558006,14 +558199,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_GT2, + [122427] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11347), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [121864] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 20, + anon_sym_DASH_GT, + ACTIONS(9686), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558023,28 +558229,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9035), 32, + ACTIONS(9688), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558052,7 +558253,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, @@ -558063,302 +558263,188 @@ 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, - [121924] = 5, + anon_sym_GT2, + [122501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6909), 1, - anon_sym_EQ, - ACTIONS(6911), 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(5645), 18, + ACTIONS(9479), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym___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(5638), 20, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9481), 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [121988] = 7, + anon_sym_COLON_RBRACK, + [122561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10326), 1, - anon_sym_decltype, - ACTIONS(11543), 1, - sym_auto, - STATE(6061), 1, - sym_decltype_auto, - ACTIONS(7223), 7, + ACTIONS(9483), 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_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7225), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___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__, + 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_GT2, - anon_sym_try, anon_sym_requires, - [122056] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, + ACTIONS(9485), 29, anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, anon_sym_COMMA, - ACTIONS(11341), 1, - anon_sym_DASH, - ACTIONS(11343), 1, - anon_sym_PLUS, - ACTIONS(11345), 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(11347), 1, - anon_sym_SLASH, - ACTIONS(11349), 1, anon_sym_PERCENT, - ACTIONS(11351), 1, anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, anon_sym_AMP_AMP, - ACTIONS(11355), 1, - anon_sym_PIPE, - ACTIONS(11357), 1, anon_sym_CARET, - ACTIONS(11359), 1, - anon_sym_AMP, - ACTIONS(11361), 1, anon_sym_EQ_EQ, - ACTIONS(11363), 1, anon_sym_BANG_EQ, - ACTIONS(11365), 1, - anon_sym_GT, - ACTIONS(11367), 1, anon_sym_GT_EQ, - ACTIONS(11369), 1, - anon_sym_LT_EQ, - ACTIONS(11371), 1, - anon_sym_LT, - ACTIONS(11373), 1, anon_sym_LT_LT, - ACTIONS(11375), 1, anon_sym_GT_GT, - ACTIONS(11377), 1, - anon_sym_EQ, - ACTIONS(11379), 1, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(11381), 1, - anon_sym_STAR_EQ, - ACTIONS(11383), 1, - anon_sym_SLASH_EQ, - ACTIONS(11385), 1, - anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, - anon_sym_PLUS_EQ, - ACTIONS(11389), 1, - anon_sym_DASH_EQ, - ACTIONS(11391), 1, - anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, - anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, - anon_sym_AMP_EQ, - ACTIONS(11397), 1, - anon_sym_CARET_EQ, - ACTIONS(11399), 1, - anon_sym_PIPE_EQ, - ACTIONS(11401), 1, anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, - anon_sym_or, - ACTIONS(11405), 1, - anon_sym_and, - ACTIONS(11407), 1, - anon_sym_bitor, - ACTIONS(11409), 1, - anon_sym_xor, - ACTIONS(11411), 1, - anon_sym_bitand, - ACTIONS(11413), 1, - anon_sym_not_eq, - ACTIONS(11545), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [122212] = 28, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [122621] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10489), 1, + ACTIONS(9889), 1, anon_sym_EQ, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11480), 1, + ACTIONS(11461), 1, anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, + ACTIONS(11463), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11465), 1, anon_sym_PIPE, - ACTIONS(11488), 1, + ACTIONS(11469), 1, anon_sym_AMP, - ACTIONS(11494), 1, + ACTIONS(11475), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, + ACTIONS(11481), 1, anon_sym_or, - ACTIONS(11502), 1, + ACTIONS(11483), 1, anon_sym_and, - ACTIONS(11504), 1, + ACTIONS(11485), 1, anon_sym_bitor, - ACTIONS(11506), 1, + ACTIONS(11487), 1, anon_sym_bitand, - ACTIONS(11535), 1, + ACTIONS(11505), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11537), 1, + ACTIONS(11507), 1, anon_sym_QMARK, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11486), 2, + ACTIONS(11467), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11496), 2, + ACTIONS(11477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11471), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10491), 15, + ACTIONS(9891), 15, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_STAR_EQ, @@ -558374,82 +558460,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [122322] = 33, + [122731] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(5160), 1, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, - anon_sym_LPAREN2, - ACTIONS(5627), 1, - anon_sym_LBRACK, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(8651), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(11547), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11551), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(11553), 1, + ACTIONS(10201), 1, anon_sym_AMP, - ACTIONS(11555), 1, - anon_sym_EQ, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5327), 1, - sym_parameter_list, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8703), 1, - sym__declarator, - STATE(8975), 1, - sym__abstract_declarator, - STATE(9084), 1, - sym_abstract_reference_declarator, - STATE(10001), 1, - sym_variadic_declarator, - STATE(10010), 1, - sym_variadic_reference_declarator, - STATE(10837), 1, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8517), 1, + sym__declarator, + STATE(11637), 1, sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(11549), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(9088), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8596), 4, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - STATE(10768), 5, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -558461,10 +558525,32 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [122442] = 3, + ACTIONS(3368), 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, + [122835] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 17, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10820), 1, + anon_sym_LBRACK, + STATE(1972), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10225), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558474,25 +558560,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, - anon_sym_DASH_GT, - ACTIONS(5591), 35, + ACTIONS(10223), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -558500,92 +558585,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [122502] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [122903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 19, + ACTIONS(9447), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - 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(9222), 33, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9449), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, 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, - [122562] = 6, + anon_sym_COLON_RBRACK, + [122963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9239), 1, - anon_sym_LBRACK, - ACTIONS(9236), 2, - anon_sym_RPAREN, - anon_sym_LPAREN2, - ACTIONS(5645), 19, + ACTIONS(9791), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558599,20 +558674,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, - anon_sym_DASH_GT, - ACTIONS(5638), 29, + ACTIONS(9793), 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, @@ -558634,19 +558713,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, - [122628] = 7, + anon_sym_DASH_GT, + [123023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, - anon_sym_LPAREN2, - ACTIONS(10844), 1, - anon_sym_LBRACK, - STATE(1975), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10210), 20, + ACTIONS(9779), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558656,24 +558727,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(10208), 28, + anon_sym_DASH_GT, + ACTIONS(9781), 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, @@ -558681,6 +558756,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, @@ -558694,32 +558770,31 @@ 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, - [122696] = 11, + anon_sym_DASH_GT_STAR, + [123083] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11478), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 14, + ACTIONS(9621), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -558734,7 +558809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + ACTIONS(9623), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -558761,83 +558836,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [122772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10564), 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, - ACTIONS(10566), 26, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - anon_sym_DASH_GT, - sym_literal_suffix, - [122832] = 10, + [123159] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 17, + ACTIONS(9621), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -558855,7 +558873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + ACTIONS(9623), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -558882,66 +558900,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [122906] = 24, + [123233] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11482), 1, + ACTIONS(11463), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11465), 1, anon_sym_PIPE, - ACTIONS(11488), 1, + ACTIONS(11469), 1, anon_sym_AMP, - ACTIONS(11494), 1, + ACTIONS(11475), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - ACTIONS(11502), 1, + ACTIONS(11483), 1, anon_sym_and, - ACTIONS(11504), 1, + ACTIONS(11485), 1, anon_sym_bitor, - ACTIONS(11506), 1, + ACTIONS(11487), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(9621), 2, anon_sym_EQ, anon_sym_or, - ACTIONS(11329), 2, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11486), 2, + ACTIONS(11467), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11496), 2, + ACTIONS(11477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11471), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 18, + ACTIONS(9623), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -558960,142 +558978,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [123008] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10178), 1, - anon_sym_STAR, - ACTIONS(10180), 1, - anon_sym_AMP_AMP, - ACTIONS(10182), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8523), 1, - sym__declarator, - STATE(11622), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [123112] = 22, + [123335] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11484), 1, + ACTIONS(11465), 1, anon_sym_PIPE, - ACTIONS(11488), 1, + ACTIONS(11469), 1, anon_sym_AMP, - ACTIONS(11494), 1, + ACTIONS(11475), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - ACTIONS(11504), 1, + ACTIONS(11485), 1, anon_sym_bitor, - ACTIONS(11506), 1, + ACTIONS(11487), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11486), 2, + ACTIONS(11467), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11496), 2, + ACTIONS(11477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 3, + ACTIONS(9621), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(11478), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11471), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(9623), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -559115,60 +559054,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [123210] = 20, + [123433] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11488), 1, + ACTIONS(11469), 1, anon_sym_AMP, - ACTIONS(11494), 1, + ACTIONS(11475), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - ACTIONS(11506), 1, + ACTIONS(11487), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11486), 2, + ACTIONS(11467), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11496), 2, + ACTIONS(11477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11471), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 4, + ACTIONS(9621), 4, anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9709), 20, + ACTIONS(9623), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -559189,59 +559128,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - [123304] = 19, + [123527] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11488), 1, + ACTIONS(11469), 1, anon_sym_AMP, - ACTIONS(11494), 1, + ACTIONS(11475), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - ACTIONS(11506), 1, + ACTIONS(11487), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11496), 2, + ACTIONS(11477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11471), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 6, + ACTIONS(9621), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 20, + ACTIONS(9623), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -559262,48 +559201,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - [123396] = 17, + [123619] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11494), 1, + ACTIONS(11475), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11496), 2, + ACTIONS(11477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11471), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, + ACTIONS(9621), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -559311,7 +559250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 21, + ACTIONS(9623), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -559333,59 +559272,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_bitand, - [123484] = 16, + [123707] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11494), 1, + ACTIONS(10485), 1, + anon_sym_EQ, + ACTIONS(11513), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11515), 1, + anon_sym_AMP_AMP, + ACTIONS(11517), 1, + anon_sym_PIPE, + ACTIONS(11521), 1, + anon_sym_AMP, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - STATE(5875), 1, + ACTIONS(11533), 1, + anon_sym_or, + ACTIONS(11535), 1, + anon_sym_and, + ACTIONS(11537), 1, + anon_sym_bitor, + ACTIONS(11539), 1, + anon_sym_bitand, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11496), 2, + ACTIONS(11519), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11492), 3, + ACTIONS(11523), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 24, + ACTIONS(10487), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -559400,59 +559352,58 @@ 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, - [123570] = 14, + [123813] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11498), 1, + ACTIONS(11475), 1, + anon_sym_GT_EQ, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11496), 2, + ACTIONS(11477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 10, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(9621), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 25, + ACTIONS(9623), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -559471,195 +559422,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [123652] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10178), 1, - anon_sym_STAR, - ACTIONS(10180), 1, - anon_sym_AMP_AMP, - ACTIONS(10182), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8541), 1, - sym__declarator, - STATE(11622), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [123756] = 8, + [123899] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(11434), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11436), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(5598), 1, - sym_new_declarator, - STATE(6098), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 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(9629), 1, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9276), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10489), 1, + anon_sym_EQ, + ACTIONS(11513), 1, anon_sym_PIPE_PIPE, + ACTIONS(11515), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(11517), 1, + anon_sym_PIPE, + ACTIONS(11521), 1, + anon_sym_AMP, + ACTIONS(11527), 1, 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, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, + ACTIONS(11533), 1, anon_sym_or, + ACTIONS(11535), 1, anon_sym_and, + ACTIONS(11537), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11539), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [123826] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - STATE(5875), 1, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11478), 3, + ACTIONS(11519), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 12, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11523), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11525), 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(9709), 26, + ACTIONS(10491), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -559674,324 +559502,82 @@ 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, - [123904] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, - sym_auto, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(6883), 1, - anon_sym_SEMI, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(10384), 1, - anon_sym_LBRACK, - STATE(4270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4991), 1, - sym_decltype_auto, - STATE(6086), 1, - sym_template_argument_list, - ACTIONS(5675), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5643), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_COLON, - ACTIONS(5659), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5636), 33, - 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, - anon_sym_template, - anon_sym_operator, - [123986] = 33, + [124005] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, + ACTIONS(5659), 1, anon_sym_LPAREN2, - ACTIONS(5627), 1, + ACTIONS(5669), 1, anon_sym_LBRACK, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(8708), 1, + ACTIONS(8794), 1, anon_sym_STAR, - ACTIONS(11547), 1, + ACTIONS(11541), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11551), 1, + ACTIONS(11545), 1, anon_sym_AMP_AMP, - ACTIONS(11553), 1, + ACTIONS(11547), 1, anon_sym_AMP, - ACTIONS(11557), 1, + ACTIONS(11549), 1, anon_sym_EQ, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5340), 1, + STATE(5445), 1, sym_parameter_list, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8690), 1, + STATE(8718), 1, sym__declarator, - STATE(8982), 1, + STATE(8970), 1, sym__abstract_declarator, - STATE(9120), 1, + STATE(9095), 1, sym_abstract_reference_declarator, - STATE(10001), 1, + STATE(10185), 1, sym_variadic_declarator, - STATE(10010), 1, + STATE(10186), 1, sym_variadic_reference_declarator, - STATE(10837), 1, + STATE(10831), 1, sym_ms_based_modifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(11549), 2, + ACTIONS(11543), 2, anon_sym_COMMA, anon_sym_RPAREN, - STATE(9088), 2, + STATE(9114), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8596), 4, + STATE(8572), 4, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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, - [124106] = 51, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10805), 1, - anon_sym_DOT_STAR, - ACTIONS(10807), 1, - anon_sym_DASH_GT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11337), 1, - anon_sym_COMMA, - ACTIONS(11341), 1, - anon_sym_DASH, - ACTIONS(11343), 1, - anon_sym_PLUS, - ACTIONS(11345), 1, - anon_sym_STAR, - ACTIONS(11347), 1, - anon_sym_SLASH, - ACTIONS(11349), 1, - anon_sym_PERCENT, - ACTIONS(11351), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11353), 1, - anon_sym_AMP_AMP, - ACTIONS(11355), 1, - anon_sym_PIPE, - ACTIONS(11357), 1, - anon_sym_CARET, - ACTIONS(11359), 1, - anon_sym_AMP, - ACTIONS(11361), 1, - anon_sym_EQ_EQ, - ACTIONS(11363), 1, - anon_sym_BANG_EQ, - ACTIONS(11365), 1, - anon_sym_GT, - ACTIONS(11367), 1, - anon_sym_GT_EQ, - ACTIONS(11369), 1, - anon_sym_LT_EQ, - ACTIONS(11371), 1, - anon_sym_LT, - ACTIONS(11373), 1, - anon_sym_LT_LT, - ACTIONS(11375), 1, - anon_sym_GT_GT, - ACTIONS(11377), 1, - anon_sym_EQ, - ACTIONS(11379), 1, - anon_sym_QMARK, - ACTIONS(11381), 1, - anon_sym_STAR_EQ, - ACTIONS(11383), 1, - anon_sym_SLASH_EQ, - ACTIONS(11385), 1, - anon_sym_PERCENT_EQ, - ACTIONS(11387), 1, - anon_sym_PLUS_EQ, - ACTIONS(11389), 1, - anon_sym_DASH_EQ, - ACTIONS(11391), 1, - anon_sym_LT_LT_EQ, - ACTIONS(11393), 1, - anon_sym_GT_GT_EQ, - ACTIONS(11395), 1, - anon_sym_AMP_EQ, - ACTIONS(11397), 1, - anon_sym_CARET_EQ, - ACTIONS(11399), 1, - anon_sym_PIPE_EQ, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11403), 1, - anon_sym_or, - ACTIONS(11405), 1, - anon_sym_and, - ACTIONS(11407), 1, - anon_sym_bitor, - ACTIONS(11409), 1, - anon_sym_xor, - ACTIONS(11411), 1, - anon_sym_bitand, - ACTIONS(11413), 1, - anon_sym_not_eq, - ACTIONS(11559), 1, - anon_sym_RPAREN, - STATE(1712), 1, - sym__binary_fold_operator, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - STATE(10629), 1, - sym__fold_operator, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [124262] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8785), 1, - sym__declarator, - STATE(11554), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -560003,207 +559589,69 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 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, - [124366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6634), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6632), 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, - [124426] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11476), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11496), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11478), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9707), 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(9709), 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_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, - [124506] = 26, + [124125] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10538), 1, + ACTIONS(9661), 1, anon_sym_EQ, - ACTIONS(11565), 1, + ACTIONS(11513), 1, anon_sym_PIPE_PIPE, - ACTIONS(11567), 1, + ACTIONS(11515), 1, anon_sym_AMP_AMP, - ACTIONS(11569), 1, + ACTIONS(11517), 1, anon_sym_PIPE, - ACTIONS(11573), 1, + ACTIONS(11521), 1, anon_sym_AMP, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - ACTIONS(11585), 1, + ACTIONS(11533), 1, anon_sym_or, - ACTIONS(11587), 1, + ACTIONS(11535), 1, anon_sym_and, - ACTIONS(11589), 1, + ACTIONS(11537), 1, anon_sym_bitor, - ACTIONS(11591), 1, + ACTIONS(11539), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, + ACTIONS(11519), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(11523), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 17, + ACTIONS(9659), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, @@ -560221,72 +559669,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [124612] = 26, + [124231] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(10542), 1, - anon_sym_EQ, - ACTIONS(11565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11567), 1, - anon_sym_AMP_AMP, - ACTIONS(11569), 1, - anon_sym_PIPE, - ACTIONS(11573), 1, - anon_sym_AMP, - ACTIONS(11579), 1, - anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - ACTIONS(11585), 1, - anon_sym_or, - ACTIONS(11587), 1, - anon_sym_and, - ACTIONS(11589), 1, - anon_sym_bitor, - ACTIONS(11591), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(11477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(9621), 10, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 17, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560301,72 +559734,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [124718] = 26, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [124313] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9599), 1, - anon_sym_EQ, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11567), 1, - anon_sym_AMP_AMP, - ACTIONS(11569), 1, - anon_sym_PIPE, - ACTIONS(11573), 1, - anon_sym_AMP, - ACTIONS(11579), 1, - anon_sym_GT_EQ, - ACTIONS(11583), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11585), 1, - anon_sym_or, - ACTIONS(11587), 1, - anon_sym_and, - ACTIONS(11589), 1, - anon_sym_bitor, - ACTIONS(11591), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11581), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(9621), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -560381,126 +559799,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [124824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8905), 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_COLON, - anon_sym_or, - anon_sym_and, + anon_sym_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8907), 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [124884] = 26, + [124391] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10435), 1, + ACTIONS(10552), 1, anon_sym_EQ, - ACTIONS(11565), 1, + ACTIONS(11513), 1, anon_sym_PIPE_PIPE, - ACTIONS(11567), 1, + ACTIONS(11515), 1, anon_sym_AMP_AMP, - ACTIONS(11569), 1, + ACTIONS(11517), 1, anon_sym_PIPE, - ACTIONS(11573), 1, + ACTIONS(11521), 1, anon_sym_AMP, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - ACTIONS(11585), 1, + ACTIONS(11533), 1, anon_sym_or, - ACTIONS(11587), 1, + ACTIONS(11535), 1, anon_sym_and, - ACTIONS(11589), 1, + ACTIONS(11537), 1, anon_sym_bitor, - ACTIONS(11591), 1, + ACTIONS(11539), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, + ACTIONS(11519), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(11523), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 17, + ACTIONS(10554), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, @@ -560518,73 +559883,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [124990] = 28, + [124497] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(9826), 1, + ACTIONS(9889), 1, anon_sym_EQ, - ACTIONS(10469), 1, + ACTIONS(10461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(11565), 1, + ACTIONS(11513), 1, anon_sym_PIPE_PIPE, - ACTIONS(11567), 1, + ACTIONS(11515), 1, anon_sym_AMP_AMP, - ACTIONS(11569), 1, + ACTIONS(11517), 1, anon_sym_PIPE, - ACTIONS(11573), 1, + ACTIONS(11521), 1, anon_sym_AMP, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - ACTIONS(11585), 1, + ACTIONS(11533), 1, anon_sym_or, - ACTIONS(11587), 1, + ACTIONS(11535), 1, anon_sym_and, - ACTIONS(11589), 1, + ACTIONS(11537), 1, anon_sym_bitor, - ACTIONS(11591), 1, + ACTIONS(11539), 1, anon_sym_bitand, - ACTIONS(11593), 1, + ACTIONS(11551), 1, anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, + ACTIONS(11519), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(11523), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9828), 15, + ACTIONS(9891), 15, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_STAR_EQ, @@ -560600,89 +559965,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [125100] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11513), 1, - anon_sym_LT, - STATE(2999), 1, - sym_template_argument_list, - ACTIONS(9650), 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(9652), 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, - [125164] = 11, + [124607] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 14, + ACTIONS(9621), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -560697,7 +560003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + ACTIONS(9623), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -560724,66 +560030,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [125240] = 24, + [124683] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11567), 1, + ACTIONS(11515), 1, anon_sym_AMP_AMP, - ACTIONS(11569), 1, + ACTIONS(11517), 1, anon_sym_PIPE, - ACTIONS(11573), 1, + ACTIONS(11521), 1, anon_sym_AMP, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - ACTIONS(11587), 1, + ACTIONS(11535), 1, anon_sym_and, - ACTIONS(11589), 1, + ACTIONS(11537), 1, anon_sym_bitor, - ACTIONS(11591), 1, + ACTIONS(11539), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9621), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, + ACTIONS(11519), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(11523), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 18, + ACTIONS(9623), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -560802,63 +560108,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [125342] = 22, + [124785] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11569), 1, + ACTIONS(11517), 1, anon_sym_PIPE, - ACTIONS(11573), 1, + ACTIONS(11521), 1, anon_sym_AMP, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - ACTIONS(11589), 1, + ACTIONS(11537), 1, anon_sym_bitor, - ACTIONS(11591), 1, + ACTIONS(11539), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, + ACTIONS(11519), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 3, + ACTIONS(9621), 3, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(11523), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(9623), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -560878,60 +560184,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [125440] = 20, + [124883] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11573), 1, + ACTIONS(11521), 1, anon_sym_AMP, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - ACTIONS(11591), 1, + ACTIONS(11539), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, + ACTIONS(11519), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(11523), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 4, + ACTIONS(9621), 4, anon_sym_PIPE, anon_sym_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9709), 20, + ACTIONS(9623), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -560952,59 +560258,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - [125534] = 19, + [124977] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11573), 1, + ACTIONS(11521), 1, anon_sym_AMP, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - ACTIONS(11591), 1, + ACTIONS(11539), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(11523), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 6, + ACTIONS(9621), 6, anon_sym_PIPE, anon_sym_CARET, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 20, + ACTIONS(9623), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -561025,48 +560331,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_bitor, - [125626] = 17, + [125069] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(11523), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, + ACTIONS(9621), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -561074,7 +560380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 21, + ACTIONS(9623), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -561096,44 +560402,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor_eq, anon_sym_bitor, anon_sym_bitand, - [125714] = 16, + [125157] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, + ACTIONS(9621), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -561141,7 +560447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 24, + ACTIONS(9623), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -561166,38 +560472,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [125800] = 14, + [125243] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 10, + ACTIONS(9621), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -561208,7 +560514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 25, + ACTIONS(9623), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -561234,33 +560540,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [125882] = 12, + [125325] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 12, + ACTIONS(9621), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -561273,7 +560579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + ACTIONS(9623), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -561300,41 +560606,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [125960] = 3, + [125403] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 20, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 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, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9061), 32, + ACTIONS(9623), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561353,40 +560673,36 @@ 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, - [126020] = 13, + [125483] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 10, + ACTIONS(9621), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -561397,7 +560713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + ACTIONS(9623), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -561424,69 +560740,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [126100] = 26, + [125563] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10473), 1, + ACTIONS(10437), 1, anon_sym_EQ, - ACTIONS(11565), 1, + ACTIONS(11513), 1, anon_sym_PIPE_PIPE, - ACTIONS(11567), 1, + ACTIONS(11515), 1, anon_sym_AMP_AMP, - ACTIONS(11569), 1, + ACTIONS(11517), 1, anon_sym_PIPE, - ACTIONS(11573), 1, + ACTIONS(11521), 1, anon_sym_AMP, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - ACTIONS(11585), 1, + ACTIONS(11533), 1, anon_sym_or, - ACTIONS(11587), 1, + ACTIONS(11535), 1, anon_sym_and, - ACTIONS(11589), 1, + ACTIONS(11537), 1, anon_sym_bitor, - ACTIONS(11591), 1, + ACTIONS(11539), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, + ACTIONS(11519), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(11523), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 17, + ACTIONS(10439), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, @@ -561504,75 +560820,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [126206] = 28, + [125669] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10469), 1, + ACTIONS(10461), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(10477), 1, - anon_sym_EQ, - ACTIONS(11565), 1, + ACTIONS(10684), 1, + anon_sym_RPAREN, + ACTIONS(10778), 1, anon_sym_PIPE_PIPE, - ACTIONS(11567), 1, + ACTIONS(10780), 1, anon_sym_AMP_AMP, - ACTIONS(11569), 1, + ACTIONS(10782), 1, anon_sym_PIPE, - ACTIONS(11573), 1, + ACTIONS(10786), 1, anon_sym_AMP, - ACTIONS(11579), 1, + ACTIONS(10792), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(10794), 1, + anon_sym_QMARK, + ACTIONS(10796), 1, anon_sym_LT_EQ_GT, - ACTIONS(11585), 1, + ACTIONS(10798), 1, anon_sym_or, - ACTIONS(11587), 1, + ACTIONS(10800), 1, anon_sym_and, - ACTIONS(11589), 1, + ACTIONS(10802), 1, anon_sym_bitor, - ACTIONS(11591), 1, + ACTIONS(10804), 1, anon_sym_bitand, - ACTIONS(11593), 1, - anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(11555), 1, + anon_sym_EQ, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(10668), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(10672), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(10784), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(10670), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(10788), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(10790), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 15, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + ACTIONS(10748), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -561586,90 +560904,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [126316] = 26, + [125783] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(3096), 1, + anon_sym_LBRACE, + ACTIONS(11446), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11448), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10485), 1, - anon_sym_EQ, - ACTIONS(11565), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11567), 1, - anon_sym_AMP_AMP, - ACTIONS(11569), 1, - anon_sym_PIPE, - ACTIONS(11573), 1, - anon_sym_AMP, - ACTIONS(11579), 1, - anon_sym_GT_EQ, - ACTIONS(11583), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11585), 1, - anon_sym_or, - ACTIONS(11587), 1, - anon_sym_and, - ACTIONS(11589), 1, - anon_sym_bitor, - ACTIONS(11591), 1, - anon_sym_bitand, - STATE(3874), 1, + STATE(5579), 1, + sym_new_declarator, + STATE(6117), 2, sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11561), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11571), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11581), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11563), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11575), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11577), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10487), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK_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, - [126422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9045), 20, + sym_initializer_list, + ACTIONS(9215), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -561683,24 +560932,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_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9047), 32, + ACTIONS(9217), 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, @@ -561712,249 +560955,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_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, - [126482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7791), 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [126542] = 25, + anon_sym_DASH_GT_STAR, + [125853] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10178), 1, - anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10467), 1, + anon_sym_EQ, + ACTIONS(11513), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11515), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8548), 1, - sym__declarator, - STATE(11622), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [126646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9435), 23, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11517), 1, anon_sym_PIPE, + ACTIONS(11521), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(11527), 1, + anon_sym_GT_EQ, + ACTIONS(11531), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11533), 1, anon_sym_or, + ACTIONS(11535), 1, anon_sym_and, + ACTIONS(11537), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(11539), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9437), 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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [126706] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10842), 1, - anon_sym_LPAREN2, - ACTIONS(10844), 1, - anon_sym_LBRACK, - STATE(1975), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10198), 20, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11519), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11523), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11525), 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(10196), 28, + ACTIONS(10469), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -561962,122 +561039,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [126774] = 7, + [125959] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(1975), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10202), 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, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10200), 28, + ACTIONS(10461), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10471), 1, + anon_sym_EQ, + ACTIONS(11513), 1, anon_sym_PIPE_PIPE, + ACTIONS(11515), 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, + ACTIONS(11517), 1, + anon_sym_PIPE, + ACTIONS(11521), 1, + anon_sym_AMP, + ACTIONS(11527), 1, + anon_sym_GT_EQ, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, + ACTIONS(11533), 1, + anon_sym_or, + ACTIONS(11535), 1, + anon_sym_and, + ACTIONS(11537), 1, anon_sym_bitor, + ACTIONS(11539), 1, anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(11551), 1, + anon_sym_QMARK, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [126842] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - ACTIONS(10713), 1, - anon_sym_LBRACK, - STATE(1978), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10190), 18, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11519), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11523), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(10188), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(10473), 15, 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_RBRACK, - anon_sym_QMARK, + anon_sym_RBRACK_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -562091,90 +561128,210 @@ 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, - [126910] = 10, + [126069] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5659), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(5669), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(8657), 1, + anon_sym_STAR, + ACTIONS(11541), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11545), 1, + anon_sym_AMP_AMP, + ACTIONS(11547), 1, + anon_sym_AMP, + ACTIONS(11557), 1, + anon_sym_EQ, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(5335), 1, + sym_parameter_list, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8727), 1, + sym__declarator, + STATE(8965), 1, + sym__abstract_declarator, + STATE(9077), 1, + sym_abstract_reference_declarator, + STATE(10185), 1, + sym_variadic_declarator, + STATE(10186), 1, + sym_variadic_reference_declarator, + STATE(10831), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11543), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(9114), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8572), 4, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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, + [126189] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10768), 1, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9715), 17, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11355), 1, + anon_sym_COMMA, + ACTIONS(11359), 1, anon_sym_DASH, + ACTIONS(11361), 1, anon_sym_PLUS, + ACTIONS(11363), 1, anon_sym_STAR, + ACTIONS(11365), 1, anon_sym_SLASH, + ACTIONS(11367), 1, anon_sym_PERCENT, + ACTIONS(11369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11371), 1, + anon_sym_AMP_AMP, + ACTIONS(11373), 1, anon_sym_PIPE, + ACTIONS(11375), 1, anon_sym_CARET, + ACTIONS(11377), 1, anon_sym_AMP, + ACTIONS(11379), 1, + anon_sym_EQ_EQ, + ACTIONS(11381), 1, + anon_sym_BANG_EQ, + ACTIONS(11383), 1, anon_sym_GT, + ACTIONS(11385), 1, + anon_sym_GT_EQ, + ACTIONS(11387), 1, anon_sym_LT_EQ, + ACTIONS(11389), 1, anon_sym_LT, + ACTIONS(11391), 1, anon_sym_LT_LT, + ACTIONS(11393), 1, anon_sym_GT_GT, + ACTIONS(11395), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9717), 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_RBRACK, + ACTIONS(11397), 1, anon_sym_QMARK, + ACTIONS(11399), 1, anon_sym_STAR_EQ, + ACTIONS(11401), 1, anon_sym_SLASH_EQ, + ACTIONS(11403), 1, anon_sym_PERCENT_EQ, + ACTIONS(11405), 1, anon_sym_PLUS_EQ, + ACTIONS(11407), 1, anon_sym_DASH_EQ, + ACTIONS(11409), 1, anon_sym_LT_LT_EQ, + ACTIONS(11411), 1, anon_sym_GT_GT_EQ, + ACTIONS(11413), 1, anon_sym_AMP_EQ, + ACTIONS(11415), 1, anon_sym_CARET_EQ, + ACTIONS(11417), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, + ACTIONS(11421), 1, + anon_sym_or, + ACTIONS(11423), 1, + anon_sym_and, + ACTIONS(11425), 1, anon_sym_bitor, + ACTIONS(11427), 1, + anon_sym_xor, + ACTIONS(11429), 1, anon_sym_bitand, + ACTIONS(11431), 1, anon_sym_not_eq, - [126984] = 7, + ACTIONS(11559), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [126345] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10711), 1, + ACTIONS(10818), 1, anon_sym_LPAREN2, - ACTIONS(10713), 1, + ACTIONS(10820), 1, anon_sym_LBRACK, - STATE(1978), 1, + STATE(1972), 1, sym_parameter_list, - STATE(5085), 1, + STATE(5187), 1, sym__function_declarator_seq, - ACTIONS(10194), 18, + ACTIONS(10229), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562184,24 +561341,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(10192), 30, + ACTIONS(10227), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562209,7 +561366,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, @@ -562224,72 +561380,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [127052] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7459), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7457), 44, - 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_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_or, - anon_sym_and, - anon_sym_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [127114] = 5, + [126413] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10984), 1, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10820), 1, anon_sym_LBRACK, - STATE(5656), 1, - sym_new_declarator, - ACTIONS(9535), 20, + STATE(1972), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10233), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562310,15 +561413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9537), 30, + ACTIONS(10231), 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_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562341,60 +561442,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [127178] = 25, + [126481] = 25, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(10218), 1, - anon_sym_STAR, - ACTIONS(10220), 1, - anon_sym_AMP_AMP, - ACTIONS(10222), 1, - anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7986), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8523), 1, + STATE(8769), 1, sym__declarator, - STATE(11612), 1, + STATE(11132), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -562406,7 +561507,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -562420,10 +561521,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127282] = 3, + [126585] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 19, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1973), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10264), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562442,19 +561551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8559), 33, + ACTIONS(10266), 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_COLON_COLON, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562476,18 +561581,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [127342] = 6, + anon_sym_DASH_GT, + [126653] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9239), 1, - anon_sym_LBRACK, - ACTIONS(9236), 2, - anon_sym_RPAREN, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(5645), 19, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9669), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562505,9 +561619,7 @@ 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(5638), 29, + ACTIONS(9671), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -562515,6 +561627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562533,20 +561646,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_STAR, - [127408] = 6, + [126727] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(11595), 1, - anon_sym_LT, - STATE(5542), 1, - sym_template_argument_list, - ACTIONS(9578), 19, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1973), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10178), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562556,25 +561667,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(9580), 30, + ACTIONS(10176), 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_GT_EQ, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -562582,6 +561692,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, @@ -562596,48 +561707,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [127474] = 12, + [126795] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(8098), 1, - anon_sym_LBRACK, - ACTIONS(8111), 1, - anon_sym_STAR, - ACTIONS(8113), 1, + ACTIONS(11317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11319), 1, anon_sym_AMP_AMP, - ACTIONS(8115), 1, + ACTIONS(11321), 1, + anon_sym_PIPE, + ACTIONS(11325), 1, anon_sym_AMP, - STATE(2069), 1, - sym_parameter_list, - STATE(5348), 1, - sym__function_declarator_seq, - STATE(6175), 1, - sym__abstract_declarator, - STATE(5347), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 9, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11337), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11339), 1, + anon_sym_or, + ACTIONS(11341), 1, + anon_sym_and, + ACTIONS(11343), 1, + anon_sym_bitor, + ACTIONS(11345), 1, + anon_sym_bitand, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(10552), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11313), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11323), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11327), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11329), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10554), 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, + [126899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8776), 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9427), 30, + sym_literal_suffix, + ACTIONS(8778), 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, @@ -562647,153 +561825,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACK_RBRACK, 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, anon_sym_COLON_RBRACK, - [127552] = 3, + [126959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10888), 1, + anon_sym_LBRACK, + STATE(5622), 1, + sym_new_declarator, + ACTIONS(9547), 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9298), 29, + ACTIONS(9549), 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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_STAR_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_COLON_RBRACK, - [127612] = 8, + anon_sym_GT2, + [127023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - ACTIONS(11529), 1, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9160), 1, anon_sym_LBRACK, - STATE(5689), 1, - sym_new_declarator, - STATE(5978), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9154), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(5619), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9276), 26, + anon_sym_DASH_GT, + ACTIONS(5611), 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_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_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_COLON_RBRACK, - [127682] = 7, + anon_sym_DASH_GT_STAR, + [127089] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - STATE(1975), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10190), 20, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9669), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562813,8 +562001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(10188), 28, + ACTIONS(9671), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -562838,23 +562025,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, anon_sym_GT2, - [127750] = 7, + [127163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, - anon_sym_LPAREN2, - ACTIONS(10844), 1, - anon_sym_LBRACK, - STATE(1975), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10194), 20, + ACTIONS(9593), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -562864,24 +562039,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(10192), 28, + anon_sym_DASH_GT, + ACTIONS(9595), 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, @@ -562889,6 +562068,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, @@ -562902,62 +562082,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, - anon_sym_GT2, - [127818] = 25, + anon_sym_DASH_GT_STAR, + [127223] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7986), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8785), 1, + STATE(8536), 1, sym__declarator, - STATE(10743), 1, + STATE(11637), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -562969,7 +562148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -562983,67 +562162,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [127922] = 3, + [127327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 17, + ACTIONS(9377), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - 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, - anon_sym_DASH_GT, - ACTIONS(5595), 35, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9379), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [127982] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [127387] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 20, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9160), 1, + anon_sym_LBRACK, + ACTIONS(9154), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, + ACTIONS(5619), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563057,24 +562243,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9069), 32, + ACTIONS(5611), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -563097,60 +562279,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [128042] = 25, + [127453] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10239), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8523), 1, + STATE(8509), 1, sym__declarator, - STATE(10900), 1, + STATE(11606), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -563162,7 +562344,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -563176,10 +562358,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128146] = 3, + [127557] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11319), 1, + anon_sym_AMP_AMP, + ACTIONS(11321), 1, + anon_sym_PIPE, + ACTIONS(11325), 1, + anon_sym_AMP, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11337), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11339), 1, + anon_sym_or, + ACTIONS(11341), 1, + anon_sym_and, + ACTIONS(11343), 1, + anon_sym_bitor, + ACTIONS(11345), 1, + anon_sym_bitand, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(10489), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11313), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11323), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11327), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11329), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10491), 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, + [127661] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(11561), 1, + anon_sym_LBRACE, + STATE(5956), 1, + sym_field_declaration_list, + STATE(6046), 1, + sym_attribute_specifier, + STATE(9557), 1, + sym_virtual_specifier, + STATE(10383), 1, + sym_base_class_clause, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7254), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7256), 37, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_EQ, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [127739] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 19, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9716), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563189,28 +562529,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(9699), 33, + ACTIONS(9718), 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_LBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -563218,7 +562553,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, @@ -563231,62 +562565,61 @@ 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, - [128206] = 25, + anon_sym_GT2, + [127811] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10264), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10266), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10268), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8785), 1, + STATE(8769), 1, sym__declarator, - STATE(10957), 1, + STATE(10737), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -563298,7 +562631,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -563312,21 +562645,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128310] = 8, + [127915] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 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(5611), 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, + [127977] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, + ACTIONS(3096), 1, anon_sym_LBRACE, - ACTIONS(11434), 1, + ACTIONS(11446), 1, anon_sym_LPAREN2, - ACTIONS(11436), 1, + ACTIONS(11448), 1, anon_sym_LBRACK, - STATE(5645), 1, + STATE(5563), 1, sym_new_declarator, - STATE(6041), 2, + STATE(6118), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9226), 16, + ACTIONS(9230), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563343,7 +562734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9228), 30, + ACTIONS(9232), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -563374,69 +562765,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [128380] = 25, + [128047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9928), 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(11323), 1, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(11448), 1, + anon_sym_DASH_GT, + ACTIONS(9930), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, - ACTIONS(11450), 1, anon_sym_AMP_AMP, - ACTIONS(11452), 1, + 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, + [128107] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11317), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11319), 1, + anon_sym_AMP_AMP, + ACTIONS(11321), 1, anon_sym_PIPE, - ACTIONS(11456), 1, + ACTIONS(11325), 1, anon_sym_AMP, - ACTIONS(11466), 1, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11337), 1, anon_sym_LT_EQ_GT, - ACTIONS(11468), 1, + ACTIONS(11339), 1, anon_sym_or, - ACTIONS(11470), 1, + ACTIONS(11341), 1, anon_sym_and, - ACTIONS(11472), 1, + ACTIONS(11343), 1, anon_sym_bitor, - ACTIONS(11474), 1, + ACTIONS(11345), 1, anon_sym_bitand, - STATE(5741), 1, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(10485), 2, + ACTIONS(9661), 2, anon_sym_EQ, anon_sym_GT_GT_EQ, - ACTIONS(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(11313), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, + ACTIONS(11323), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11462), 2, + ACTIONS(11331), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11446), 3, + ACTIONS(11347), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11315), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, + ACTIONS(11327), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11460), 4, + ACTIONS(11329), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 16, + ACTIONS(9659), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_QMARK, @@ -563453,85 +562901,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or_eq, anon_sym_xor_eq, anon_sym_GT2, - [128484] = 9, + [128211] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10437), 1, + anon_sym_EQ, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + ACTIONS(11461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_PIPE, + ACTIONS(11469), 1, + anon_sym_AMP, + ACTIONS(11475), 1, + anon_sym_GT_EQ, + ACTIONS(11479), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11481), 1, + anon_sym_or, + ACTIONS(11483), 1, + anon_sym_and, + ACTIONS(11485), 1, + anon_sym_bitor, + ACTIONS(11487), 1, + anon_sym_bitand, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9657), 17, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11467), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11471), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11473), 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(9659), 28, + ACTIONS(10439), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, + [128317] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10203), 1, + sym_identifier, + ACTIONS(10205), 1, + anon_sym_STAR, + ACTIONS(10207), 1, + anon_sym_AMP_AMP, + ACTIONS(10209), 1, + anon_sym_AMP, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7988), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8773), 1, + sym__declarator, + STATE(10737), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [128421] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11353), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(11355), 1, anon_sym_COMMA, + ACTIONS(11359), 1, + anon_sym_DASH, + ACTIONS(11361), 1, + anon_sym_PLUS, + ACTIONS(11363), 1, + anon_sym_STAR, + ACTIONS(11365), 1, + anon_sym_SLASH, + ACTIONS(11367), 1, + anon_sym_PERCENT, + ACTIONS(11369), 1, anon_sym_PIPE_PIPE, + ACTIONS(11371), 1, anon_sym_AMP_AMP, + ACTIONS(11373), 1, + anon_sym_PIPE, + ACTIONS(11375), 1, + anon_sym_CARET, + ACTIONS(11377), 1, + anon_sym_AMP, + ACTIONS(11379), 1, anon_sym_EQ_EQ, + ACTIONS(11381), 1, anon_sym_BANG_EQ, + ACTIONS(11383), 1, + anon_sym_GT, + ACTIONS(11385), 1, anon_sym_GT_EQ, - anon_sym_RBRACK, + ACTIONS(11387), 1, + anon_sym_LT_EQ, + ACTIONS(11389), 1, + anon_sym_LT, + ACTIONS(11391), 1, + anon_sym_LT_LT, + ACTIONS(11393), 1, + anon_sym_GT_GT, + ACTIONS(11395), 1, + anon_sym_EQ, + ACTIONS(11397), 1, anon_sym_QMARK, + ACTIONS(11399), 1, anon_sym_STAR_EQ, + ACTIONS(11401), 1, anon_sym_SLASH_EQ, + ACTIONS(11403), 1, anon_sym_PERCENT_EQ, + ACTIONS(11405), 1, anon_sym_PLUS_EQ, + ACTIONS(11407), 1, anon_sym_DASH_EQ, + ACTIONS(11409), 1, anon_sym_LT_LT_EQ, + ACTIONS(11411), 1, anon_sym_GT_GT_EQ, + ACTIONS(11413), 1, anon_sym_AMP_EQ, + ACTIONS(11415), 1, anon_sym_CARET_EQ, + ACTIONS(11417), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, + ACTIONS(11421), 1, + anon_sym_or, + ACTIONS(11423), 1, + anon_sym_and, + ACTIONS(11425), 1, anon_sym_bitor, + ACTIONS(11427), 1, + anon_sym_xor, + ACTIONS(11429), 1, anon_sym_bitand, + ACTIONS(11431), 1, anon_sym_not_eq, + ACTIONS(11563), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [128556] = 3, + [128577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 23, - aux_sym_preproc_elif_token1, + ACTIONS(11565), 1, + sym_literal_suffix, + ACTIONS(5619), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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, @@ -563539,80 +563195,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9310), 29, + anon_sym_DASH_GT, + ACTIONS(5611), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [128616] = 3, + anon_sym_DASH_GT_STAR, + [128639] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 23, - aux_sym_preproc_elif_token1, + ACTIONS(8078), 1, + anon_sym_LPAREN2, + ACTIONS(8092), 1, + anon_sym_LBRACK, + ACTIONS(8128), 1, + anon_sym_STAR, + ACTIONS(8130), 1, + anon_sym_AMP_AMP, + ACTIONS(8132), 1, + anon_sym_AMP, + STATE(2071), 1, + sym_parameter_list, + STATE(5527), 1, + sym__function_declarator_seq, + STATE(6188), 1, + sym__abstract_declarator, + STATE(5524), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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___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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9318), 29, + ACTIONS(9281), 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, @@ -563622,68 +563273,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACK_RBRACK, 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_COLON_RBRACK, - [128676] = 25, + [128717] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7499), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7479), 44, + 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_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_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [128779] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10372), 1, + anon_sym___attribute__, + ACTIONS(10375), 1, + anon_sym___attribute, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7576), 1, + sym__function_attributes_start, + STATE(7673), 1, + sym_ref_qualifier, + STATE(8550), 1, + sym_trailing_return_type, + STATE(8602), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6471), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(7967), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [128893] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10246), 1, + ACTIONS(10213), 1, anon_sym_STAR, - ACTIONS(10248), 1, + ACTIONS(10215), 1, anon_sym_AMP_AMP, - ACTIONS(10250), 1, + ACTIONS(10217), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7990), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8808), 1, + STATE(8509), 1, sym__declarator, - STATE(10837), 1, + STATE(10894), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -563695,7 +563496,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -563709,130 +563510,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [128780] = 3, + [128997] = 51, ACTIONS(3), 1, sym_comment, - ACTIONS(9080), 20, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11355), 1, + anon_sym_COMMA, + ACTIONS(11359), 1, anon_sym_DASH, + ACTIONS(11361), 1, anon_sym_PLUS, + ACTIONS(11363), 1, anon_sym_STAR, + ACTIONS(11365), 1, anon_sym_SLASH, + ACTIONS(11367), 1, anon_sym_PERCENT, + ACTIONS(11369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11371), 1, + anon_sym_AMP_AMP, + ACTIONS(11373), 1, anon_sym_PIPE, + ACTIONS(11375), 1, anon_sym_CARET, + ACTIONS(11377), 1, anon_sym_AMP, + ACTIONS(11379), 1, + anon_sym_EQ_EQ, + ACTIONS(11381), 1, + anon_sym_BANG_EQ, + ACTIONS(11383), 1, anon_sym_GT, + ACTIONS(11385), 1, + anon_sym_GT_EQ, + ACTIONS(11387), 1, anon_sym_LT_EQ, + ACTIONS(11389), 1, anon_sym_LT, + ACTIONS(11391), 1, anon_sym_LT_LT, + ACTIONS(11393), 1, anon_sym_GT_GT, - anon_sym_LBRACK, + ACTIONS(11395), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9082), 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(11397), 1, anon_sym_QMARK, + ACTIONS(11399), 1, anon_sym_STAR_EQ, + ACTIONS(11401), 1, anon_sym_SLASH_EQ, + ACTIONS(11403), 1, anon_sym_PERCENT_EQ, + ACTIONS(11405), 1, anon_sym_PLUS_EQ, + ACTIONS(11407), 1, anon_sym_DASH_EQ, + ACTIONS(11409), 1, anon_sym_LT_LT_EQ, + ACTIONS(11411), 1, anon_sym_GT_GT_EQ, + ACTIONS(11413), 1, anon_sym_AMP_EQ, + ACTIONS(11415), 1, anon_sym_CARET_EQ, + ACTIONS(11417), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, + ACTIONS(11421), 1, + anon_sym_or, + ACTIONS(11423), 1, + anon_sym_and, + ACTIONS(11425), 1, anon_sym_bitor, + ACTIONS(11427), 1, + anon_sym_xor, + ACTIONS(11429), 1, anon_sym_bitand, + ACTIONS(11431), 1, anon_sym_not_eq, + ACTIONS(11567), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [128840] = 26, + [129153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6604), 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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6602), 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, + [129213] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10538), 1, + ACTIONS(10459), 1, anon_sym_EQ, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11480), 1, + ACTIONS(11461), 1, anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, + ACTIONS(11463), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11465), 1, anon_sym_PIPE, - ACTIONS(11488), 1, + ACTIONS(11469), 1, anon_sym_AMP, - ACTIONS(11494), 1, + ACTIONS(11475), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, + ACTIONS(11481), 1, anon_sym_or, - ACTIONS(11502), 1, + ACTIONS(11483), 1, anon_sym_and, - ACTIONS(11504), 1, + ACTIONS(11485), 1, anon_sym_bitor, - ACTIONS(11506), 1, + ACTIONS(11487), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + ACTIONS(11505), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11507), 1, + anon_sym_QMARK, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11486), 2, + ACTIONS(11467), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11496), 2, + ACTIONS(11477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11471), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(10463), 15, anon_sym_COMMA, anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -563846,10 +563754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [128946] = 3, + [129323] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9084), 20, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1973), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10229), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -563863,24 +563779,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9086), 32, + ACTIONS(10227), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -563902,118 +563814,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_STAR, - [129006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8697), 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_COLON, - 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(8699), 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_RBRACK_RBRACK, - 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, - 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_COLON_RBRACK, - [129066] = 25, + [129391] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10252), 1, + ACTIONS(10276), 1, anon_sym_STAR, - ACTIONS(10254), 1, + ACTIONS(10278), 1, anon_sym_AMP_AMP, - ACTIONS(10256), 1, + ACTIONS(10280), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(7993), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8808), 1, + STATE(8773), 1, sym__declarator, - STATE(11008), 1, + STATE(10951), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -564025,7 +563880,7 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -564039,145 +563894,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [129170] = 22, + [129495] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6861), 1, - anon_sym___asm, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, anon_sym_LPAREN2, - ACTIONS(11180), 1, - sym_ms_restrict_modifier, - ACTIONS(11186), 1, + ACTIONS(11571), 1, anon_sym_LBRACK, - ACTIONS(11598), 1, - anon_sym_STAR, - ACTIONS(11600), 1, - anon_sym_AMP_AMP, - ACTIONS(11602), 1, + STATE(5581), 1, + sym_new_declarator, + STATE(5931), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9230), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4562), 1, - sym_parameter_list, - STATE(6387), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8496), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11182), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11184), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5500), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6287), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6859), 12, + 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, + ACTIONS(9232), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_asm, - anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [129268] = 5, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [129565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11513), 1, - anon_sym_LT, - STATE(2985), 1, - sym_template_argument_list, - ACTIONS(9650), 18, + ACTIONS(9352), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - anon_sym_DASH_GT, - ACTIONS(9652), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9354), 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_RBRACK_RBRACK, + 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_STAR, - [129332] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [129625] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10820), 1, + anon_sym_LBRACK, + STATE(1972), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10243), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564187,28 +564034,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, - anon_sym_DASH_GT, - ACTIONS(9762), 32, + ACTIONS(10241), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -564216,7 +564059,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, @@ -564230,11 +564072,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, - [129392] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [129693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 13, + ACTIONS(6588), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -564248,7 +564091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(6612), 39, + ACTIONS(6586), 39, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -564288,40 +564131,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_template, anon_sym_operator, - [129452] = 3, + [129753] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(7158), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7160), 46, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10247), 1, anon_sym_STAR, + ACTIONS(10249), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(10251), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8775), 1, + sym__declarator, + STATE(10831), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 13, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - 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_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -564333,22 +564210,18 @@ 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, - [129512] = 3, + [129857] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(10772), 1, + anon_sym_LPAREN2, + ACTIONS(10774), 1, + anon_sym_LBRACK, + STATE(1973), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10221), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564362,24 +564235,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9762), 32, + ACTIONS(10219), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -564401,42 +564270,73 @@ 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, - [129572] = 3, + anon_sym_DASH_GT, + [129925] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(10467), 1, + anon_sym_EQ, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(11461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_PIPE, + ACTIONS(11469), 1, + anon_sym_AMP, + ACTIONS(11475), 1, + anon_sym_GT_EQ, + ACTIONS(11479), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11481), 1, + anon_sym_or, + ACTIONS(11483), 1, + anon_sym_and, + ACTIONS(11485), 1, + anon_sym_bitor, + ACTIONS(11487), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11457), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11467), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11471), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11473), 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(9762), 32, + ACTIONS(10469), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -564451,107 +564351,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, - anon_sym_DASH_GT_STAR, - [129632] = 3, + [130031] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6626), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6624), 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, + ACTIONS(53), 1, 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, + ACTIONS(2284), 1, anon_sym_operator, - [129692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6630), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, + ACTIONS(3442), 1, anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(10268), 1, anon_sym_STAR, + ACTIONS(10270), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6628), 39, + ACTIONS(10272), 1, anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8775), 1, + sym__declarator, + STATE(11002), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -564564,76 +564430,18 @@ 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, - [129752] = 3, + [130135] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7966), 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, + ACTIONS(10772), 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_RBRACK_RBRACK, - anon_sym_RBRACE, + ACTIONS(10774), 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_COLON_RBRACK, - [129812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 20, + STATE(1973), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10233), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564647,24 +564455,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9762), 32, + ACTIONS(10231), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -564686,91 +564490,92 @@ 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, - [129872] = 26, + anon_sym_DASH_GT, + [130203] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10473), 1, - anon_sym_EQ, - ACTIONS(10900), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10203), 1, + sym_identifier, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + ACTIONS(10235), 1, + anon_sym_STAR, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, - anon_sym_PIPE, - ACTIONS(11488), 1, + ACTIONS(10239), 1, anon_sym_AMP, - ACTIONS(11494), 1, - anon_sym_GT_EQ, - ACTIONS(11498), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, - anon_sym_or, - ACTIONS(11502), 1, - anon_sym_and, - ACTIONS(11504), 1, - anon_sym_bitor, - ACTIONS(11506), 1, - anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11476), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11486), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11496), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11478), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11490), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11492), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10475), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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, - [129978] = 3, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7988), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8517), 1, + sym__declarator, + STATE(11606), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 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, + [130307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(11573), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9593), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564791,7 +564596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9762), 32, + ACTIONS(9595), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -564801,7 +564606,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -564824,72 +564628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [130038] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10647), 1, - anon_sym_LT, - ACTIONS(10857), 1, - anon_sym_EQ, - STATE(4318), 1, - sym_template_argument_list, - ACTIONS(10855), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(5657), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(7371), 38, - 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, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [130108] = 3, + [130369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(9593), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -564909,18 +564651,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9762), 32, + ACTIONS(9595), 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, @@ -564942,22 +564684,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, - [130168] = 8, + anon_sym_DASH_GT, + [130429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - ACTIONS(11529), 1, - anon_sym_LBRACK, - STATE(5672), 1, - sym_new_declarator, - STATE(6007), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 20, + ACTIONS(8997), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -564978,7 +564709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9228), 26, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8999), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -564986,6 +564720,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -564997,7 +564732,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -565005,10 +564742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [130238] = 3, + [130489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 23, + ACTIONS(9356), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -565032,7 +564769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9409), 29, + ACTIONS(9358), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -565062,51 +564799,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [130298] = 9, + [130549] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(11604), 1, - anon_sym_COLON, - STATE(4509), 1, - sym__enum_base_clause, - STATE(4668), 1, - sym_enumerator_list, - STATE(4868), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8002), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, + ACTIONS(3442), 1, anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10203), 1, + sym_identifier, + ACTIONS(10205), 1, anon_sym_STAR, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(8000), 33, + ACTIONS(10209), 1, anon_sym_AMP, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(7988), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8800), 1, + sym__declarator, + STATE(10737), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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(3368), 13, 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, @@ -565119,49 +564878,41 @@ 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_template, - anon_sym_operator, - [130370] = 9, + [130653] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(11604), 1, - anon_sym_COLON, - STATE(4514), 1, - sym__enum_base_clause, - STATE(4683), 1, - sym_enumerator_list, - STATE(4912), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8008), 12, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(6570), 1, + anon_sym_LBRACK, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(5866), 1, + sym_template_argument_list, + ACTIONS(6563), 2, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6566), 5, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + anon_sym_SEMI, anon_sym_LBRACK_COLON, - ACTIONS(8006), 33, + ACTIONS(6559), 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_LBRACK, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -565185,162 +564936,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, + sym_auto, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [130442] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9703), 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(9705), 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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_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, - [130502] = 7, + [130723] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 1, + ACTIONS(10497), 1, anon_sym_LBRACE, - ACTIONS(7445), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7087), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(7092), 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___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, - ACTIONS(7097), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [130570] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7085), 7, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(11575), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7090), 45, + STATE(4499), 1, + sym__enum_base_clause, + STATE(4691), 1, + sym_enumerator_list, + STATE(4808), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8003), 12, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(8001), 33, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, 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, @@ -565354,32 +564999,18 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [130630] = 9, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [130795] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(10913), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9657), 17, + STATE(5685), 1, + sym_new_declarator, + ACTIONS(9547), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565397,15 +565028,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9659), 28, + anon_sym_DOT, + ACTIONS(9549), 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_LBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -565426,73 +565060,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [130702] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [130859] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(11575), 1, + anon_sym_COLON, + STATE(4421), 1, + sym__enum_base_clause, + STATE(4666), 1, + sym_enumerator_list, + STATE(4978), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8009), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(8007), 33, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(10538), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [130931] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10471), 1, anon_sym_EQ, - ACTIONS(11315), 1, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11606), 1, + ACTIONS(11461), 1, anon_sym_PIPE_PIPE, - ACTIONS(11608), 1, + ACTIONS(11463), 1, anon_sym_AMP_AMP, - ACTIONS(11610), 1, + ACTIONS(11465), 1, anon_sym_PIPE, - ACTIONS(11614), 1, + ACTIONS(11469), 1, anon_sym_AMP, - ACTIONS(11620), 1, + ACTIONS(11475), 1, anon_sym_GT_EQ, - ACTIONS(11622), 1, + ACTIONS(11479), 1, anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, + ACTIONS(11481), 1, anon_sym_or, - ACTIONS(11626), 1, + ACTIONS(11483), 1, anon_sym_and, - ACTIONS(11628), 1, + ACTIONS(11485), 1, anon_sym_bitor, - ACTIONS(11630), 1, + ACTIONS(11487), 1, anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + ACTIONS(11505), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11507), 1, + anon_sym_QMARK, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11612), 2, + ACTIONS(11457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11467), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11311), 3, + ACTIONS(11477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11459), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, + ACTIONS(11471), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11618), 3, + ACTIONS(11473), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(10473), 15, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_RBRACK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -565506,26 +565207,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [130808] = 10, + [131041] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9673), 17, + ACTIONS(9694), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565543,7 +565241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9675), 26, + ACTIONS(9696), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -565570,133 +565268,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [130882] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9677), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9679), 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, - [130956] = 26, + [131113] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(10542), 1, + ACTIONS(10485), 1, anon_sym_EQ, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11606), 1, + ACTIONS(11585), 1, anon_sym_PIPE_PIPE, - ACTIONS(11608), 1, + ACTIONS(11587), 1, anon_sym_AMP_AMP, - ACTIONS(11610), 1, + ACTIONS(11589), 1, anon_sym_PIPE, - ACTIONS(11614), 1, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11620), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11622), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, + ACTIONS(11605), 1, anon_sym_or, - ACTIONS(11626), 1, + ACTIONS(11607), 1, anon_sym_and, - ACTIONS(11628), 1, + ACTIONS(11609), 1, anon_sym_bitor, - ACTIONS(11630), 1, + ACTIONS(11611), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11612), 2, + ACTIONS(11581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11591), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11311), 3, + ACTIONS(11601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11618), 3, + ACTIONS(11597), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 17, + ACTIONS(10487), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_COLON, @@ -565714,23 +565350,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [131062] = 9, + [131219] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9681), 17, + ACTIONS(9698), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -565748,7 +565387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9683), 28, + ACTIONS(9700), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -565775,153 +565414,51 @@ 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, - [131134] = 26, + [131293] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9599), 1, - anon_sym_EQ, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11606), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11608), 1, - anon_sym_AMP_AMP, - ACTIONS(11610), 1, - anon_sym_PIPE, - ACTIONS(11614), 1, - anon_sym_AMP, - ACTIONS(11620), 1, - anon_sym_GT_EQ, - ACTIONS(11622), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, - anon_sym_or, - ACTIONS(11626), 1, - anon_sym_and, - ACTIONS(11628), 1, - anon_sym_bitor, - ACTIONS(11630), 1, - anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11612), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11311), 3, + ACTIONS(9702), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11618), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 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, - [131240] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(10435), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(11315), 1, - anon_sym_DOT, - ACTIONS(11606), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11608), 1, - anon_sym_AMP_AMP, - ACTIONS(11610), 1, - anon_sym_PIPE, - ACTIONS(11614), 1, - anon_sym_AMP, - ACTIONS(11620), 1, - anon_sym_GT_EQ, - ACTIONS(11622), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, anon_sym_or, - ACTIONS(11626), 1, anon_sym_and, - ACTIONS(11628), 1, - anon_sym_bitor, - ACTIONS(11630), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11612), 2, - anon_sym_CARET, anon_sym_xor, - ACTIONS(11311), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11616), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11618), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10437), 17, + ACTIONS(9704), 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, @@ -565937,134 +565474,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [131346] = 28, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [131367] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9826), 1, + ACTIONS(10489), 1, anon_sym_EQ, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11606), 1, + ACTIONS(11585), 1, anon_sym_PIPE_PIPE, - ACTIONS(11608), 1, + ACTIONS(11587), 1, anon_sym_AMP_AMP, - ACTIONS(11610), 1, + ACTIONS(11589), 1, anon_sym_PIPE, - ACTIONS(11614), 1, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11620), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11622), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, + ACTIONS(11605), 1, anon_sym_or, - ACTIONS(11626), 1, + ACTIONS(11607), 1, anon_sym_and, - ACTIONS(11628), 1, + ACTIONS(11609), 1, anon_sym_bitor, - ACTIONS(11630), 1, + ACTIONS(11611), 1, anon_sym_bitand, - ACTIONS(11632), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11612), 2, + ACTIONS(11581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11591), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11311), 3, + ACTIONS(11601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11618), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9828), 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, - [131456] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11311), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9707), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11597), 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(9709), 26, + ACTIONS(10491), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -566080,30 +565558,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, - [131532] = 10, + [131473] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 17, + ACTIONS(9716), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -566121,7 +565592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + ACTIONS(9718), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -566148,69 +565619,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [131606] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [131545] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(9661), 1, + anon_sym_EQ, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11608), 1, + ACTIONS(11585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11587), 1, anon_sym_AMP_AMP, - ACTIONS(11610), 1, + ACTIONS(11589), 1, anon_sym_PIPE, - ACTIONS(11614), 1, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11620), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11622), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11626), 1, + ACTIONS(11605), 1, + anon_sym_or, + ACTIONS(11607), 1, anon_sym_and, - ACTIONS(11628), 1, + ACTIONS(11609), 1, anon_sym_bitor, - ACTIONS(11630), 1, + ACTIONS(11611), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 2, - anon_sym_EQ, - anon_sym_or, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11612), 2, + ACTIONS(11581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11591), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11311), 3, + ACTIONS(11601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11618), 3, + ACTIONS(11597), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 18, + ACTIONS(9659), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -566226,67 +565701,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [131708] = 22, + [131651] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(10552), 1, + anon_sym_EQ, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11610), 1, + ACTIONS(11585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11587), 1, + anon_sym_AMP_AMP, + ACTIONS(11589), 1, anon_sym_PIPE, - ACTIONS(11614), 1, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11620), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11622), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11628), 1, + ACTIONS(11605), 1, + anon_sym_or, + ACTIONS(11607), 1, + anon_sym_and, + ACTIONS(11609), 1, anon_sym_bitor, - ACTIONS(11630), 1, + ACTIONS(11611), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11612), 2, + ACTIONS(11581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11591), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(9707), 3, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(11311), 3, + ACTIONS(11601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11618), 3, + ACTIONS(11597), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(10554), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -566302,209 +565781,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [131806] = 20, + [131757] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - ACTIONS(11614), 1, - anon_sym_AMP, - ACTIONS(11620), 1, - anon_sym_GT_EQ, - ACTIONS(11622), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11630), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11612), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11311), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11616), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11618), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 4, - anon_sym_PIPE, + ACTIONS(9889), 1, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(9709), 20, + ACTIONS(10461), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11577), 1, + anon_sym_DOT, + ACTIONS(11585), 1, anon_sym_PIPE_PIPE, + ACTIONS(11587), 1, anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - [131900] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - ACTIONS(11614), 1, + ACTIONS(11589), 1, + anon_sym_PIPE, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11620), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11622), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11630), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11311), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11616), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11618), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 6, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, + ACTIONS(11605), 1, anon_sym_or, + ACTIONS(11607), 1, anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 20, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - 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(11609), 1, anon_sym_bitor, - [131992] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - ACTIONS(11620), 1, - anon_sym_GT_EQ, - ACTIONS(11622), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, + ACTIONS(11611), 1, + anon_sym_bitand, + ACTIONS(11613), 1, + anon_sym_QMARK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, + ACTIONS(11579), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11313), 2, + ACTIONS(11591), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11601), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11311), 3, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11618), 3, + ACTIONS(11597), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 21, - anon_sym_DOT_DOT_DOT, + ACTIONS(9891), 15, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_COLON, - anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -566518,121 +565863,45 @@ 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, - [132080] = 16, + [131867] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11620), 1, - anon_sym_GT_EQ, - ACTIONS(11622), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11311), 3, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11618), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_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, - [132166] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - ACTIONS(11622), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, + ACTIONS(9621), 14, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11311), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9707), 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(9709), 25, + ACTIONS(9623), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -566655,36 +565924,35 @@ 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, - [132248] = 12, + [131943] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11311), 3, + ACTIONS(9621), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -566697,7 +565965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 26, + ACTIONS(9623), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -566724,131 +565992,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [132326] = 26, + [132017] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10485), 1, - anon_sym_EQ, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, + ACTIONS(11587), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11589), 1, anon_sym_PIPE, - ACTIONS(11488), 1, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11494), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, - anon_sym_or, - ACTIONS(11502), 1, + ACTIONS(11607), 1, anon_sym_and, - ACTIONS(11504), 1, + ACTIONS(11609), 1, anon_sym_bitor, - ACTIONS(11506), 1, + ACTIONS(11611), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + ACTIONS(9621), 2, + anon_sym_EQ, + anon_sym_or, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11486), 2, + ACTIONS(11591), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11496), 2, + ACTIONS(11601), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10487), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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, - [132432] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9644), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9715), 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, + ACTIONS(11597), 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(9717), 26, + ACTIONS(9623), 18, 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, @@ -566864,75 +566070,67 @@ 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, - [132506] = 26, + [132119] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(10473), 1, - anon_sym_EQ, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11606), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11608), 1, - anon_sym_AMP_AMP, - ACTIONS(11610), 1, + ACTIONS(11589), 1, anon_sym_PIPE, - ACTIONS(11614), 1, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11620), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11622), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, - anon_sym_or, - ACTIONS(11626), 1, - anon_sym_and, - ACTIONS(11628), 1, + ACTIONS(11609), 1, anon_sym_bitor, - ACTIONS(11630), 1, + ACTIONS(11611), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11612), 2, + ACTIONS(11581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11591), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11311), 3, + ACTIONS(11601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9621), 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11618), 3, + ACTIONS(11597), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 17, + ACTIONS(9623), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -566948,75 +566146,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [132612] = 28, + [132217] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10477), 1, - anon_sym_EQ, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11606), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11608), 1, - anon_sym_AMP_AMP, - ACTIONS(11610), 1, - anon_sym_PIPE, - ACTIONS(11614), 1, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11620), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11622), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, - anon_sym_or, - ACTIONS(11626), 1, - anon_sym_and, - ACTIONS(11628), 1, - anon_sym_bitor, - ACTIONS(11630), 1, + ACTIONS(11611), 1, anon_sym_bitand, - ACTIONS(11632), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11313), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11612), 2, + ACTIONS(11581), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11591), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11311), 3, + ACTIONS(11601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11618), 3, + ACTIONS(11597), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 15, + ACTIONS(9621), 4, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + ACTIONS(9623), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -567030,71 +566219,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [132722] = 26, + anon_sym_bitor, + [132311] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(10485), 1, - anon_sym_EQ, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11606), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11608), 1, - anon_sym_AMP_AMP, - ACTIONS(11610), 1, - anon_sym_PIPE, - ACTIONS(11614), 1, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11620), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11622), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, - anon_sym_or, - ACTIONS(11626), 1, - anon_sym_and, - ACTIONS(11628), 1, - anon_sym_bitor, - ACTIONS(11630), 1, + ACTIONS(11611), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, + ACTIONS(11579), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11313), 2, + ACTIONS(11601), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11612), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11311), 3, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11618), 3, + ACTIONS(11597), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 17, + ACTIONS(9621), 6, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -567110,422 +566292,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [132828] = 28, + anon_sym_bitor, + [132403] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10489), 1, - anon_sym_EQ, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11606), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11608), 1, - anon_sym_AMP_AMP, - ACTIONS(11610), 1, - anon_sym_PIPE, - ACTIONS(11614), 1, - anon_sym_AMP, - ACTIONS(11620), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11622), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11624), 1, - anon_sym_or, - ACTIONS(11626), 1, - anon_sym_and, - ACTIONS(11628), 1, - anon_sym_bitor, - ACTIONS(11630), 1, - anon_sym_bitand, - ACTIONS(11632), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11309), 2, + ACTIONS(11579), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11313), 2, + ACTIONS(11601), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11612), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11311), 3, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11616), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11618), 3, + ACTIONS(11597), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10491), 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, - [132938] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8804), 1, - sym__declarator, - STATE(11554), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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(3270), 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, - [133042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9088), 20, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(9621), 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, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9090), 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, - [133102] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6821), 1, - anon_sym___asm, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, - anon_sym_LPAREN2, - ACTIONS(11180), 1, - sym_ms_restrict_modifier, - ACTIONS(11186), 1, - anon_sym_LBRACK, - ACTIONS(11598), 1, - anon_sym_STAR, - ACTIONS(11600), 1, - anon_sym_AMP_AMP, - ACTIONS(11602), 1, - anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4562), 1, - sym_parameter_list, - STATE(6387), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8499), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11182), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11184), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6210), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6264), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6823), 12, - 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(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [133200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9361), 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_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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9363), 29, + anon_sym_xor, + ACTIONS(9623), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, + anon_sym_COLON, 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_COLON_RBRACK, - [133260] = 25, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_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, + [132491] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11448), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11450), 1, - anon_sym_AMP_AMP, - ACTIONS(11452), 1, - anon_sym_PIPE, - ACTIONS(11456), 1, - anon_sym_AMP, - ACTIONS(11466), 1, + ACTIONS(11599), 1, + anon_sym_GT_EQ, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11468), 1, - anon_sym_or, - ACTIONS(11470), 1, - anon_sym_and, - ACTIONS(11472), 1, - anon_sym_bitor, - ACTIONS(11474), 1, - anon_sym_bitand, - STATE(5741), 1, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(10435), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11321), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, + ACTIONS(11601), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11446), 3, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11460), 4, + ACTIONS(11597), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 16, + ACTIONS(9621), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + ACTIONS(9623), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -567533,52 +566424,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_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, - [133364] = 7, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + [132577] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(1975), 1, - sym_parameter_list, - STATE(5229), 1, - sym__function_declarator_seq, - ACTIONS(10174), 20, + ACTIONS(11577), 1, + anon_sym_DOT, + ACTIONS(11603), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11579), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 10, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - anon_sym_DOT, - ACTIONS(10172), 28, + ACTIONS(9623), 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_GT_EQ, + anon_sym_COLON, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -567586,46 +566492,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_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, - [133432] = 10, + [132659] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9638), 17, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -567638,7 +566541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9640), 26, + ACTIONS(9623), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -567665,41 +566568,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - [133506] = 3, + [132737] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9095), 20, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(11577), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11579), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 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, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9097), 32, + ACTIONS(9623), 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, @@ -567718,14 +566635,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + [132817] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(11577), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(11579), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [133566] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9041), 20, + anon_sym_DASH_GT, + ACTIONS(9669), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -567739,24 +566668,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(9043), 32, + ACTIONS(9671), 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, @@ -567775,79 +566699,73 @@ 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, - [133626] = 28, + [132891] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10477), 1, - anon_sym_EQ, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10437), 1, + anon_sym_EQ, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11480), 1, + ACTIONS(11585), 1, anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, + ACTIONS(11587), 1, anon_sym_AMP_AMP, - ACTIONS(11484), 1, + ACTIONS(11589), 1, anon_sym_PIPE, - ACTIONS(11488), 1, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11494), 1, + ACTIONS(11599), 1, anon_sym_GT_EQ, - ACTIONS(11498), 1, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, + ACTIONS(11605), 1, anon_sym_or, - ACTIONS(11502), 1, + ACTIONS(11607), 1, anon_sym_and, - ACTIONS(11504), 1, + ACTIONS(11609), 1, anon_sym_bitor, - ACTIONS(11506), 1, + ACTIONS(11611), 1, anon_sym_bitand, - ACTIONS(11535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11537), 1, - anon_sym_QMARK, - STATE(5875), 1, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11476), 2, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11486), 2, + ACTIONS(11591), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11496), 2, + ACTIONS(11601), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11478), 3, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11490), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11492), 3, + ACTIONS(11597), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 15, + ACTIONS(10439), 17, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -567861,53 +566779,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [133736] = 10, + [132997] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10459), 1, + anon_sym_EQ, + ACTIONS(10461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(5875), 1, + ACTIONS(11585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11587), 1, + anon_sym_AMP_AMP, + ACTIONS(11589), 1, + anon_sym_PIPE, + ACTIONS(11593), 1, + anon_sym_AMP, + ACTIONS(11599), 1, + anon_sym_GT_EQ, + ACTIONS(11603), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11605), 1, + anon_sym_or, + ACTIONS(11607), 1, + anon_sym_and, + ACTIONS(11609), 1, + anon_sym_bitor, + ACTIONS(11611), 1, + anon_sym_bitand, + ACTIONS(11613), 1, + anon_sym_QMARK, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9673), 17, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11591), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11595), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11597), 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(9675), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(10463), 15, 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_RBRACK, - anon_sym_QMARK, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -567921,138 +566861,155 @@ 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, - [133810] = 27, + [133107] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(10467), 1, + anon_sym_EQ, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11442), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11448), 1, + ACTIONS(11585), 1, anon_sym_PIPE_PIPE, - ACTIONS(11450), 1, + ACTIONS(11587), 1, anon_sym_AMP_AMP, - ACTIONS(11452), 1, + ACTIONS(11589), 1, anon_sym_PIPE, - ACTIONS(11456), 1, + ACTIONS(11593), 1, anon_sym_AMP, - ACTIONS(11464), 1, - anon_sym_QMARK, - ACTIONS(11466), 1, + ACTIONS(11599), 1, + anon_sym_GT_EQ, + ACTIONS(11603), 1, anon_sym_LT_EQ_GT, - ACTIONS(11468), 1, + ACTIONS(11605), 1, anon_sym_or, - ACTIONS(11470), 1, + ACTIONS(11607), 1, anon_sym_and, - ACTIONS(11472), 1, + ACTIONS(11609), 1, anon_sym_bitor, - ACTIONS(11474), 1, + ACTIONS(11611), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9826), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(11321), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, + ACTIONS(11591), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11462), 2, + ACTIONS(11601), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11446), 3, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, + ACTIONS(11595), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11460), 4, + ACTIONS(11597), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9828), 14, + ACTIONS(10469), 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, - [133918] = 10, + [133213] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(10461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(10471), 1, + anon_sym_EQ, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(5875), 1, + ACTIONS(11585), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11587), 1, + anon_sym_AMP_AMP, + ACTIONS(11589), 1, + anon_sym_PIPE, + ACTIONS(11593), 1, + anon_sym_AMP, + ACTIONS(11599), 1, + anon_sym_GT_EQ, + ACTIONS(11603), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11605), 1, + anon_sym_or, + ACTIONS(11607), 1, + anon_sym_and, + ACTIONS(11609), 1, + anon_sym_bitor, + ACTIONS(11611), 1, + anon_sym_bitand, + ACTIONS(11613), 1, + anon_sym_QMARK, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11329), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9677), 17, + ACTIONS(11581), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11591), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11601), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11583), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11595), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11597), 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(9679), 26, - anon_sym_DOT_DOT_DOT, + ACTIONS(10473), 15, 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_RBRACK, - anon_sym_QMARK, + anon_sym_COLON, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -568066,84 +567023,151 @@ 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, - [133992] = 8, + [133323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, - anon_sym_EQ, - ACTIONS(6883), 1, + ACTIONS(6598), 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_COLON_COLON, anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6596), 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, + [133383] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6819), 1, + anon_sym___asm, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(9239), 1, + ACTIONS(11179), 1, + sym_ms_restrict_modifier, + ACTIONS(11185), 1, anon_sym_LBRACK, - ACTIONS(5663), 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(5645), 17, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11615), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(11617), 1, + anon_sym_AMP_AMP, + ACTIONS(11619), 1, 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(5638), 18, - anon_sym_DOT_DOT_DOT, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4616), 1, + sym_parameter_list, + STATE(6374), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8449), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11181), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11183), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5517), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6272), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6815), 12, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_SEMI, - anon_sym_RBRACE, - 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, - [134062] = 7, + 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(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [133481] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10842), 1, + ACTIONS(10818), 1, anon_sym_LPAREN2, - ACTIONS(10844), 1, + ACTIONS(10820), 1, anon_sym_LBRACK, - STATE(1975), 1, + STATE(1972), 1, sym_parameter_list, - STATE(5229), 1, + STATE(5187), 1, sym__function_declarator_seq, - ACTIONS(10206), 20, + ACTIONS(10262), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568164,7 +567188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10204), 28, + ACTIONS(10260), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -568193,101 +567217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [134130] = 29, + [133549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 1, - anon_sym_EQ, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(11480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11482), 1, - anon_sym_AMP_AMP, - ACTIONS(11484), 1, - anon_sym_PIPE, - ACTIONS(11488), 1, - anon_sym_AMP, - ACTIONS(11494), 1, - anon_sym_GT_EQ, - ACTIONS(11498), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11500), 1, - anon_sym_or, - ACTIONS(11502), 1, - anon_sym_and, - ACTIONS(11504), 1, - anon_sym_bitor, - ACTIONS(11506), 1, - anon_sym_bitand, - ACTIONS(11535), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11537), 1, - anon_sym_QMARK, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11329), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11476), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11486), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11496), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11634), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(11478), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11490), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11492), 3, - anon_sym_GT, - anon_sym_LT_EQ, + ACTIONS(11438), 1, anon_sym_LT, - ACTIONS(9828), 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, - [134242] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10711), 1, - anon_sym_LPAREN2, - ACTIONS(10713), 1, - anon_sym_LBRACK, - STATE(1978), 1, - sym_parameter_list, - STATE(5085), 1, - sym__function_declarator_seq, - ACTIONS(10174), 18, + STATE(3015), 1, + sym_template_argument_list, + ACTIONS(9633), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568298,7 +567235,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, @@ -568306,15 +567242,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(10172), 30, + anon_sym_DASH_GT, + ACTIONS(9635), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -568336,42 +567275,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [134310] = 8, + anon_sym_DASH_GT_STAR, + [133613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(6612), 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_COLON_COLON, - ACTIONS(6576), 1, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6610), 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(10005), 1, - anon_sym_LT, - STATE(5825), 1, - sym_template_argument_list, - ACTIONS(6569), 2, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [133673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6616), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6572), 5, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, anon_sym_LBRACK_COLON, - ACTIONS(6565), 41, + ACTIONS(6614), 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___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, @@ -568397,55 +567386,104 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, sym_auto, anon_sym_decltype, + anon_sym_final, + anon_sym_override, anon_sym_template, anon_sym_operator, - [134380] = 11, + [133733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(5587), 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_LBRACK, - ACTIONS(11323), 1, + anon_sym_EQ, anon_sym_DOT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11321), 2, + anon_sym_DASH_GT, + ACTIONS(5589), 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_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_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11446), 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [133793] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11438), 1, + anon_sym_LT, + STATE(5153), 1, + sym_template_argument_list, + ACTIONS(9633), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 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_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9635), 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, @@ -568453,6 +567491,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, @@ -568463,27 +567502,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [134456] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [133857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(8786), 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_COLON, + 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(8788), 35, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11319), 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_RBRACK_RBRACK, + 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, + 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_COLON_RBRACK, + [133917] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(5741), 1, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 19, + ACTIONS(9686), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -568493,23 +567592,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(9709), 24, + ACTIONS(9688), 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, @@ -568517,6 +567616,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, @@ -568527,70 +567627,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [134530] = 23, + [133991] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(3096), 1, + anon_sym_LBRACE, + ACTIONS(11446), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11448), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11450), 1, - anon_sym_AMP_AMP, - ACTIONS(11452), 1, + STATE(5574), 1, + sym_new_declarator, + STATE(6120), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9234), 16, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, - ACTIONS(11456), 1, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(11466), 1, + 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(9236), 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, - ACTIONS(11470), 1, + anon_sym_or, anon_sym_and, - ACTIONS(11472), 1, anon_sym_bitor, - ACTIONS(11474), 1, + anon_sym_xor, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11321), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + anon_sym_DASH_GT_STAR, + [134061] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9154), 1, + anon_sym_LPAREN2, + ACTIONS(9160), 1, + anon_sym_LBRACK, + ACTIONS(5619), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 3, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11460), 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(9709), 17, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5611), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -568598,74 +567734,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_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, - [134630] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11452), 1, - anon_sym_PIPE, - ACTIONS(11456), 1, - anon_sym_AMP, - ACTIONS(11466), 1, anon_sym_LT_EQ_GT, - ACTIONS(11472), 1, anon_sym_bitor, - ACTIONS(11474), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11321), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11444), 2, + [134127] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9154), 1, + anon_sym_LPAREN2, + ACTIONS(9160), 1, + anon_sym_LBRACK, + ACTIONS(5619), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(9707), 4, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - ACTIONS(11460), 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(9709), 18, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(5611), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -568673,71 +567794,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_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, - [134726] = 19, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [134193] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11571), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11456), 1, + STATE(5636), 1, + sym_new_declarator, + STATE(5957), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9178), 20, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11466), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11474), 1, + 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, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11321), 2, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9180), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11444), 2, + anon_sym_COLON_RBRACK, + [134263] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10818), 1, + anon_sym_LPAREN2, + ACTIONS(10820), 1, + anon_sym_LBRACK, + STATE(1972), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10264), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11454), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11460), 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(9707), 5, - anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, - ACTIONS(9709), 19, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(10266), 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, @@ -568751,187 +567923,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - [134818] = 18, + [134331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(8987), 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_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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8989), 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(11319), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11456), 1, - anon_sym_AMP, - ACTIONS(11466), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(11474), 1, - anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11444), 2, + anon_sym_COLON_RBRACK, + [134391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9385), 23, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11460), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, - anon_sym_PIPE, - anon_sym_CARET, - 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, - ACTIONS(9709), 19, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9387), 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_QMARK, - anon_sym_STAR_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_GT2, - [134908] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11466), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11444), 2, + anon_sym_COLON_RBRACK, + [134451] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + ACTIONS(11571), 1, + anon_sym_LBRACK, + STATE(5633), 1, + sym_new_declarator, + STATE(5946), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9215), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11458), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11460), 4, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(9709), 20, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_identifier, + ACTIONS(9217), 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_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_GT2, - [134994] = 3, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [134521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 13, - anon_sym_DOT_DOT_DOT, + ACTIONS(7133), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7135), 45, 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, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6608), 39, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -568945,59 +568156,48 @@ 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_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - [135054] = 15, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [134581] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10818), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10820), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(11466), 1, - anon_sym_LT_EQ_GT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + STATE(1972), 1, + sym_parameter_list, + STATE(5187), 1, + sym__function_declarator_seq, + ACTIONS(10178), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11460), 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(9707), 8, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + 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(9709), 23, + anon_sym_DOT, + ACTIONS(10176), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -569017,126 +568217,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, + anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - [135138] = 14, + [134649] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(6841), 1, + anon_sym___asm, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11179), 1, + sym_ms_restrict_modifier, + ACTIONS(11185), 1, + anon_sym_LBRACK, + ACTIONS(11615), 1, + anon_sym_STAR, + ACTIONS(11617), 1, + anon_sym_AMP_AMP, + ACTIONS(11619), 1, + anon_sym_AMP, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4616), 1, + sym_parameter_list, + STATE(6374), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8442), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11181), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11183), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6225), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6276), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6843), 12, + 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(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [134747] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + ACTIONS(11571), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + STATE(5719), 1, + sym_new_declarator, + STATE(6013), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9234), 20, + 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, - ACTIONS(11466), 1, + sym_identifier, + ACTIONS(9236), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11321), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11444), 2, + anon_sym_COLON_RBRACK, + [134817] = 51, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(10768), 1, + anon_sym_DOT_STAR, + ACTIONS(10770), 1, + anon_sym_DASH_GT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11355), 1, + anon_sym_COMMA, + ACTIONS(11359), 1, anon_sym_DASH, + ACTIONS(11361), 1, anon_sym_PLUS, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, + ACTIONS(11363), 1, anon_sym_STAR, + ACTIONS(11365), 1, anon_sym_SLASH, + ACTIONS(11367), 1, anon_sym_PERCENT, - ACTIONS(9707), 12, + ACTIONS(11369), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11371), 1, + anon_sym_AMP_AMP, + ACTIONS(11373), 1, anon_sym_PIPE, + ACTIONS(11375), 1, anon_sym_CARET, + ACTIONS(11377), 1, anon_sym_AMP, + ACTIONS(11379), 1, + anon_sym_EQ_EQ, + ACTIONS(11381), 1, + anon_sym_BANG_EQ, + ACTIONS(11383), 1, anon_sym_GT, + ACTIONS(11385), 1, anon_sym_GT_EQ, + ACTIONS(11387), 1, anon_sym_LT_EQ, + ACTIONS(11389), 1, anon_sym_LT, + ACTIONS(11391), 1, + anon_sym_LT_LT, + ACTIONS(11393), 1, + anon_sym_GT_GT, + ACTIONS(11395), 1, anon_sym_EQ, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - ACTIONS(9709), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(11397), 1, anon_sym_QMARK, + ACTIONS(11399), 1, anon_sym_STAR_EQ, + ACTIONS(11401), 1, anon_sym_SLASH_EQ, + ACTIONS(11403), 1, anon_sym_PERCENT_EQ, + ACTIONS(11405), 1, anon_sym_PLUS_EQ, + ACTIONS(11407), 1, anon_sym_DASH_EQ, + ACTIONS(11409), 1, anon_sym_LT_LT_EQ, + ACTIONS(11411), 1, + anon_sym_GT_GT_EQ, + ACTIONS(11413), 1, anon_sym_AMP_EQ, + ACTIONS(11415), 1, anon_sym_CARET_EQ, + ACTIONS(11417), 1, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11421), 1, + anon_sym_or, + ACTIONS(11423), 1, + anon_sym_and, + ACTIONS(11425), 1, anon_sym_bitor, + ACTIONS(11427), 1, + anon_sym_xor, + ACTIONS(11429), 1, anon_sym_bitand, + ACTIONS(11431), 1, anon_sym_not_eq, - anon_sym_GT2, - [135220] = 12, + ACTIONS(11621), 1, + anon_sym_RPAREN, + STATE(1525), 1, + sym__binary_fold_operator, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + STATE(10866), 1, + sym__fold_operator, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [134973] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, + ACTIONS(11317), 1, + anon_sym_PIPE_PIPE, ACTIONS(11319), 1, + anon_sym_AMP_AMP, + ACTIONS(11321), 1, + anon_sym_PIPE, + ACTIONS(11325), 1, + anon_sym_AMP, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11337), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11339), 1, + anon_sym_or, + ACTIONS(11341), 1, + anon_sym_and, + ACTIONS(11343), 1, + anon_sym_bitor, + ACTIONS(11345), 1, + anon_sym_bitand, + ACTIONS(11349), 1, anon_sym_DOT, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11321), 2, + ACTIONS(10437), 2, + anon_sym_EQ, + anon_sym_GT_GT_EQ, + ACTIONS(11313), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11323), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11331), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11347), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11444), 2, + ACTIONS(11315), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11327), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11329), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10439), 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, + [135077] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11623), 1, + anon_sym_LT, + STATE(2000), 1, + sym_template_argument_list, + ACTIONS(9633), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 14, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, - ACTIONS(9709), 24, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9635), 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, @@ -569144,6 +568592,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, @@ -569154,56 +568603,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [135298] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [135141] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10772), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(10774), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11321), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11444), 2, + STATE(1973), 1, + sym_parameter_list, + STATE(5219), 1, + sym__function_declarator_seq, + ACTIONS(10243), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11462), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11446), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 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(9709), 24, + anon_sym_DOT, + ACTIONS(10241), 30, 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -569211,6 +568653,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, @@ -569221,101 +568664,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [135378] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [135209] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6616), 39, + ACTIONS(10368), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10372), 1, anon_sym___attribute__, + ACTIONS(10375), 1, 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, + ACTIONS(10381), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11274), 1, + anon_sym_requires, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7587), 1, + sym__function_attributes_start, + STATE(7689), 1, + sym_ref_qualifier, + STATE(8635), 1, + sym__function_attributes_end, + STATE(8685), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - sym_auto, - anon_sym_decltype, + ACTIONS(10848), 2, anon_sym_final, anon_sym_override, - anon_sym_template, - anon_sym_operator, - [135438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6622), 13, - anon_sym_DOT_DOT_DOT, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(6471), 3, 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_LBRACE, - anon_sym_EQ, anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6620), 39, - anon_sym_AMP, + STATE(7933), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10370), 12, 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, @@ -569327,19 +568752,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_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [135498] = 3, + [135323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 23, + ACTIONS(9369), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -569363,7 +568779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9367), 29, + ACTIONS(9371), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -569393,10 +568809,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [135558] = 3, + [135383] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 23, + ACTIONS(6656), 1, + anon_sym_COLON_COLON, + ACTIONS(9553), 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(9555), 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, + [135445] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9889), 1, + anon_sym_EQ, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(11461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11463), 1, + anon_sym_AMP_AMP, + ACTIONS(11465), 1, + anon_sym_PIPE, + ACTIONS(11469), 1, + anon_sym_AMP, + ACTIONS(11475), 1, + anon_sym_GT_EQ, + ACTIONS(11479), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11481), 1, + anon_sym_or, + ACTIONS(11483), 1, + anon_sym_and, + ACTIONS(11485), 1, + anon_sym_bitor, + ACTIONS(11487), 1, + anon_sym_bitand, + ACTIONS(11505), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11507), 1, + anon_sym_QMARK, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11303), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11457), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11467), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(11477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11626), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11459), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11471), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11473), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9891), 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, + [135557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9373), 23, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -569420,7 +568977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(9371), 29, + ACTIONS(9375), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -569450,22 +569007,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [135618] = 3, + [135617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 23, - aux_sym_preproc_elif_token1, + ACTIONS(10556), 26, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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, @@ -569473,107 +569035,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8422), 29, + anon_sym_DASH_GT, + sym_literal_suffix, + ACTIONS(10558), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [135678] = 28, + anon_sym_DASH_GT_STAR, + [135677] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10469), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(10489), 1, + ACTIONS(10459), 1, anon_sym_EQ, - ACTIONS(11565), 1, + ACTIONS(10461), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11513), 1, anon_sym_PIPE_PIPE, - ACTIONS(11567), 1, + ACTIONS(11515), 1, anon_sym_AMP_AMP, - ACTIONS(11569), 1, + ACTIONS(11517), 1, anon_sym_PIPE, - ACTIONS(11573), 1, + ACTIONS(11521), 1, anon_sym_AMP, - ACTIONS(11579), 1, + ACTIONS(11527), 1, anon_sym_GT_EQ, - ACTIONS(11583), 1, + ACTIONS(11531), 1, anon_sym_LT_EQ_GT, - ACTIONS(11585), 1, + ACTIONS(11533), 1, anon_sym_or, - ACTIONS(11587), 1, + ACTIONS(11535), 1, anon_sym_and, - ACTIONS(11589), 1, + ACTIONS(11537), 1, anon_sym_bitor, - ACTIONS(11591), 1, + ACTIONS(11539), 1, anon_sym_bitand, - ACTIONS(11593), 1, + ACTIONS(11551), 1, anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9644), 2, + ACTIONS(9627), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11561), 2, + ACTIONS(11509), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11571), 2, + ACTIONS(11519), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(11581), 2, + ACTIONS(11529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11563), 3, + ACTIONS(11511), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11575), 3, + ACTIONS(11523), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11577), 3, + ACTIONS(11525), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10491), 15, + ACTIONS(10463), 15, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_STAR_EQ, @@ -569589,10 +569146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - [135788] = 3, + [135787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9080), 21, + ACTIONS(9059), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569614,7 +569171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9082), 30, + ACTIONS(9061), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -569645,10 +569202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [135847] = 3, + [135846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9693), 19, + ACTIONS(9475), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569663,12 +569220,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9477), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [135905] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9337), 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(9695), 32, + ACTIONS(9339), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -569690,21 +569300,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [135906] = 3, + [135964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 16, + ACTIONS(9479), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569721,7 +569334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9421), 35, + ACTIONS(9481), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -569757,10 +569370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [135965] = 3, + [136023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 19, + ACTIONS(9483), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569775,12 +569388,70 @@ 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(9485), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [136082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11256), 1, + anon_sym_LT, + STATE(2023), 1, + sym_template_argument_list, + ACTIONS(9633), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9802), 32, + ACTIONS(9635), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -569812,11 +569483,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [136145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9447), 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(9449), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + 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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [136024] = 3, + [136204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 19, + ACTIONS(9067), 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(9069), 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, + [136263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9589), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569836,7 +569619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9862), 32, + ACTIONS(9591), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -569869,14 +569652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [136083] = 5, + [136322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11270), 1, - anon_sym_LT, - STATE(2031), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(9089), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569886,25 +569665,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(9652), 32, + ACTIONS(9091), 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, @@ -569912,7 +569693,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, @@ -569927,12 +569707,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [136146] = 4, + anon_sym_GT2, + [136381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 20, + ACTIONS(9928), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -569942,25 +569721,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(5638), 30, + anon_sym_DASH_GT, + ACTIONS(9930), 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, @@ -569969,6 +569749,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, @@ -569982,12 +569763,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, - [136207] = 3, + anon_sym_DASH_GT_STAR, + [136440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 16, + ACTIONS(3157), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570004,7 +569784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9425), 35, + ACTIONS(3155), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -570040,12 +569820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [136266] = 4, + [136499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 1, - anon_sym_COLON_COLON, - ACTIONS(9513), 20, + ACTIONS(11628), 1, + anon_sym_LT, + STATE(3085), 1, + sym_template_argument_list, + ACTIONS(9633), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570057,7 +569839,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, @@ -570066,7 +569847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9515), 30, + ACTIONS(9635), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570097,68 +569878,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [136327] = 5, + [136562] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11529), 1, - anon_sym_LBRACK, - STATE(5850), 1, - sym_new_declarator, - ACTIONS(9535), 20, - 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, + ACTIONS(11631), 1, 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, - ACTIONS(9537), 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_RBRACK_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [136390] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9911), 19, + STATE(5307), 1, + sym_template_argument_list, + ACTIONS(9633), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570169,7 +569896,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, @@ -570177,11 +569903,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9913), 32, + ACTIONS(9635), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -570189,6 +569913,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -570210,11 +569935,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, - [136449] = 3, + anon_sym_DASH_GT, + [136625] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 16, + ACTIONS(11631), 1, + anon_sym_LT, + STATE(3087), 1, + sym_template_argument_list, + ACTIONS(9633), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570225,16 +569954,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_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3161), 35, + ACTIONS(9635), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -570242,6 +569971,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -570253,82 +569983,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [136508] = 3, + anon_sym_DASH_GT, + [136688] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 19, + ACTIONS(11571), 1, + anon_sym_LBRACK, + STATE(5905), 1, + sym_new_declarator, + ACTIONS(9547), 20, + 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, - anon_sym_DASH_GT, - ACTIONS(9691), 32, + sym_identifier, + ACTIONS(9549), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + 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_STAR, - [136567] = 4, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [136751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 1, - anon_sym_COLON_COLON, - ACTIONS(9513), 18, + ACTIONS(9047), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570338,16 +570065,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9515), 32, + ACTIONS(9049), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570355,9 +570085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -570365,7 +570093,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, @@ -570380,10 +570107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [136628] = 3, + anon_sym_GT2, + [136810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 16, + ACTIONS(9783), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570398,9 +570126,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(8895), 35, + ACTIONS(9785), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -570422,24 +570153,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [136687] = 3, + [136869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 16, + ACTIONS(8987), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570456,7 +570184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8903), 35, + ACTIONS(8989), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -570492,10 +570220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [136746] = 3, + [136928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 16, + ACTIONS(8566), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570510,9 +570238,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(8907), 35, + ACTIONS(3546), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -570534,30 +570265,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [136805] = 5, + [136987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11636), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11638), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9393), 16, + ACTIONS(9848), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570572,13 +570294,18 @@ 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(9395), 31, + ACTIONS(9850), 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, @@ -570594,47 +570321,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_bitor, - 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_requires, anon_sym_DASH_GT_STAR, - [136868] = 3, + [137046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10564), 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(10566), 27, + ACTIONS(9885), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570644,45 +570345,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_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, - [136927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9435), 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(9437), 35, + ACTIONS(9887), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -570704,24 +570377,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [136986] = 3, + [137105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 16, + ACTIONS(9063), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570735,20 +570405,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_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(3153), 35, + ACTIONS(9065), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -570760,24 +570433,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [137045] = 3, + anon_sym_DASH_GT, + [137164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 16, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570787,23 +570459,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(8923), 35, + ACTIONS(5611), 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, @@ -570812,28 +570486,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [137104] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [137225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 20, + ACTIONS(6602), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570843,18 +570514,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(8559), 31, + ACTIONS(6604), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -570862,8 +570531,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_COLON_COLON, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -570871,6 +570542,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, @@ -570885,11 +570557,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [137284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10558), 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, - [137163] = 3, + ACTIONS(10556), 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, + [137343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 16, + ACTIONS(9089), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570903,20 +570630,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_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8948), 35, + ACTIONS(9091), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -570928,24 +570658,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_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [137402] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11634), 1, + sym_identifier, + STATE(5644), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7038), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7044), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8485), 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(8483), 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [137222] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [137469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 19, + ACTIONS(9661), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -570965,7 +570752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9917), 32, + ACTIONS(9659), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -570998,10 +570785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [137281] = 3, + [137528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 21, + ACTIONS(9385), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571011,27 +570798,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(9039), 30, + anon_sym_DASH_GT, + ACTIONS(9387), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -571039,25 +570823,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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, - [137340] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [137587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 21, + ACTIONS(9783), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571067,27 +570854,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(9035), 30, + anon_sym_DASH_GT, + ACTIONS(9785), 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, @@ -571095,6 +570882,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, @@ -571108,12 +570896,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, - anon_sym_GT2, - [137399] = 3, + anon_sym_DASH_GT_STAR, + [137646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 19, + ACTIONS(11636), 1, + anon_sym_LT, + STATE(3818), 1, + sym_template_argument_list, + ACTIONS(9589), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571124,7 +570915,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, @@ -571132,17 +570922,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9742), 32, + ACTIONS(9591), 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, @@ -571165,71 +570954,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, - [137458] = 7, + anon_sym_DASH_GT, + [137709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11640), 1, - sym_identifier, - STATE(5562), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(11643), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11646), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8408), 18, + ACTIONS(9734), 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(8406), 19, + anon_sym_DASH_GT, + ACTIONS(9736), 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, - [137525] = 3, + anon_sym_DASH_GT_STAR, + [137768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 19, + ACTIONS(3096), 1, + anon_sym_LBRACE, + ACTIONS(11446), 1, + anon_sym_LPAREN2, + STATE(6072), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9455), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571244,16 +571036,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(9222), 32, + ACTIONS(9457), 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, @@ -571271,21 +571059,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [137584] = 3, + [137833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 19, + ACTIONS(9738), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571305,7 +571093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5638), 32, + ACTIONS(9740), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -571338,66 +571126,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [137643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5589), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5591), 45, - 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_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, - 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__, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [137702] = 3, + [137892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 19, + ACTIONS(9742), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571417,7 +571149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9770), 32, + ACTIONS(9744), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -571450,10 +571182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [137761] = 3, + [137951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 19, + ACTIONS(9011), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571468,12 +571200,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(9794), 32, + ACTIONS(9013), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -571495,84 +571224,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_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, - [137820] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(11649), 1, - anon_sym_COLON, - ACTIONS(11651), 1, - anon_sym_LBRACE, - STATE(5771), 1, - sym__enum_base_clause, - STATE(6010), 1, - sym_enumerator_list, - STATE(6091), 1, - sym_attribute_specifier, - ACTIONS(8000), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(8002), 39, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_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__, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [137893] = 3, + anon_sym_DASH_GT_STAR, + [138010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 19, + ACTIONS(9081), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571586,23 +571255,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9836), 32, + ACTIONS(9083), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -571624,11 +571293,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, - [137952] = 3, + anon_sym_DASH_GT, + [138069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 19, + ACTIONS(8997), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571643,12 +571312,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(9806), 32, + ACTIONS(8999), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -571670,21 +571336,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [138011] = 3, + [138128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 19, + ACTIONS(9928), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571704,7 +571373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9814), 32, + ACTIONS(9930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -571737,10 +571406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [138070] = 3, + [138187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 19, + ACTIONS(9897), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571760,7 +571429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9820), 32, + ACTIONS(9899), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -571793,10 +571462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [138129] = 3, + [138246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9732), 19, + ACTIONS(11639), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9329), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571811,18 +571483,14 @@ 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(9734), 32, + ACTIONS(9331), 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, @@ -571838,56 +571506,64 @@ 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_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [138188] = 6, + [138307] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10326), 1, + ACTIONS(5651), 1, anon_sym_decltype, - ACTIONS(11543), 1, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7479), 1, + anon_sym_SEMI, + ACTIONS(10596), 1, sym_auto, - STATE(6061), 1, + STATE(4819), 1, sym_decltype_auto, - ACTIONS(7223), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7225), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7248), 6, anon_sym_LPAREN2, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7246), 40, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + anon_sym_LBRACK, anon_sym_static, - anon_sym_EQ, anon_sym_register, anon_sym_inline, + anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -571901,17 +571577,13 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [138253] = 3, + sym_identifier, + anon_sym_template, + anon_sym_operator, + [138376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 19, + ACTIONS(9015), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571925,23 +571597,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(9069), 32, + anon_sym_DASH_GT, + ACTIONS(9017), 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_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -571953,25 +571622,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [138312] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [138435] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_LT, - STATE(3157), 1, - sym_template_argument_list, - ACTIONS(9650), 19, + ACTIONS(3096), 1, + anon_sym_LBRACE, + ACTIONS(11446), 1, + anon_sym_LPAREN2, + STATE(6113), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9403), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -571981,24 +571656,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(9652), 30, + anon_sym_DASH_GT, + ACTIONS(9405), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -572007,25 +571680,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, - [138375] = 3, + anon_sym_DASH_GT_STAR, + [138500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 19, + ACTIONS(6606), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572044,18 +571717,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9858), 32, + ACTIONS(6608), 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_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572077,11 +571750,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, - [138434] = 3, + anon_sym_DASH_GT, + [138559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 19, + ACTIONS(9409), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572096,12 +571769,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(9758), 32, + ACTIONS(9411), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -572123,21 +571793,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [138493] = 3, + [138618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 19, + ACTIONS(6590), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572156,18 +571829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9824), 32, + ACTIONS(6592), 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_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572189,71 +571862,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, - [138552] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11656), 1, - sym_identifier, - STATE(5707), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7048), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7054), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8468), 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(8466), 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_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, - [138619] = 3, + [138677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 16, + ACTIONS(9438), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572270,7 +571883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8915), 35, + ACTIONS(9440), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -572306,68 +571919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [138678] = 5, + [138736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_LT, - STATE(3193), 1, - sym_template_argument_list, - ACTIONS(9650), 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(9652), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(3096), 1, + anon_sym_LBRACE, + ACTIONS(11446), 1, 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, - [138741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9037), 19, + STATE(6099), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9305), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572381,23 +571943,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, - ACTIONS(9039), 32, + anon_sym_DASH_GT, + ACTIONS(9307), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572409,21 +571967,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [138800] = 3, + anon_sym_DASH_GT_STAR, + [138801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 19, + ACTIONS(9413), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572438,12 +571996,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(9944), 32, + ACTIONS(9415), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -572465,77 +572020,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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [138859] = 3, + [138860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 19, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + STATE(5933), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9455), 20, + 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_COLON, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9061), 32, + sym_identifier, + ACTIONS(9457), 27, 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, 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_RBRACK_RBRACK, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [138918] = 3, + anon_sym_COLON_RBRACK, + [138925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 16, + ACTIONS(9864), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572550,9 +572111,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(9318), 35, + ACTIONS(9866), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -572574,24 +572138,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [138977] = 3, + [138984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 19, + ACTIONS(8957), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572606,12 +572167,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(9874), 32, + ACTIONS(8959), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -572633,21 +572191,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [139036] = 3, + [139043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 19, + ACTIONS(9152), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572667,7 +572228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9936), 32, + ACTIONS(9150), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -572700,10 +572261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [139095] = 3, + [139102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 19, + ACTIONS(6596), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572722,18 +572283,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9870), 32, + ACTIONS(6598), 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_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572755,11 +572316,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, - [139154] = 3, + anon_sym_DASH_GT, + [139161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 19, + ACTIONS(8929), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572774,12 +572335,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(5638), 32, + ACTIONS(8931), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -572801,21 +572359,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [139213] = 3, + [139220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 19, + ACTIONS(8933), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572829,23 +572390,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(9035), 32, + anon_sym_DASH_GT, + ACTIONS(8935), 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_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572857,21 +572415,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [139272] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [139279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 21, + ACTIONS(6610), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572881,19 +572442,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(9065), 30, + ACTIONS(6612), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -572901,7 +572459,10 @@ 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_GT_EQ, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -572909,6 +572470,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, @@ -572923,67 +572485,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [139331] = 3, + [139338] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 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(9069), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(7479), 1, + anon_sym_SEMI, + ACTIONS(10596), 1, + sym_auto, + STATE(4819), 1, + sym_decltype_auto, + ACTIONS(7248), 7, 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_COLON_COLON, 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, - [139390] = 3, + anon_sym_LBRACK_COLON, + ACTIONS(7246), 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, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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_template, + anon_sym_operator, + [139405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9084), 21, + ACTIONS(6614), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -572993,19 +572558,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(9086), 30, + ACTIONS(6616), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -573013,7 +572575,10 @@ 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_GT_EQ, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -573021,6 +572586,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, @@ -573035,11 +572601,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [139449] = 3, + [139464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 19, + ACTIONS(8961), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573054,12 +572619,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(9878), 32, + ACTIONS(8963), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573081,21 +572643,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [139508] = 3, + [139523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 19, + ACTIONS(9901), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573115,7 +572680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9925), 32, + ACTIONS(9903), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573148,17 +572713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [139567] = 6, + [139582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(11434), 1, - anon_sym_LPAREN2, - STATE(6096), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 16, + ACTIONS(4928), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573173,71 +572731,16 @@ 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(9433), 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, - [139632] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(11434), 1, - anon_sym_LPAREN2, - STATE(6043), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 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(9383), 31, + ACTIONS(4926), 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, @@ -573255,21 +572758,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [139697] = 3, + [139641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 19, + ACTIONS(9908), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573289,7 +572792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9890), 32, + ACTIONS(9910), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573322,10 +572825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [139756] = 3, + [139700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9088), 21, + ACTIONS(9750), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573335,27 +572838,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(9090), 30, + anon_sym_DASH_GT, + ACTIONS(9752), 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, @@ -573363,6 +572866,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, @@ -573376,12 +572880,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, - [139815] = 3, + anon_sym_DASH_GT_STAR, + [139759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9095), 21, + ACTIONS(9763), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573391,27 +572894,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(9097), 30, + anon_sym_DASH_GT, + ACTIONS(9765), 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, @@ -573419,6 +572922,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, @@ -573432,72 +572936,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, - [139874] = 7, + anon_sym_DASH_GT_STAR, + [139818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11658), 1, - sym_identifier, - STATE(5562), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6987), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6993), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8456), 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(8454), 19, + ACTIONS(7135), 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_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_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [139941] = 3, + anon_sym_LBRACK_COLON, + ACTIONS(7133), 38, + 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + anon_sym_operator, + [139877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9041), 21, + ACTIONS(9417), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573507,27 +573006,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(9043), 30, + anon_sym_DASH_GT, + ACTIONS(9419), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -573535,81 +573031,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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, - [140000] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5593), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(5595), 45, - 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_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_RBRACK, - 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__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [140059] = 3, + anon_sym_DASH_GT_STAR, + [139936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 16, + ACTIONS(9352), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573626,7 +573069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8998), 35, + ACTIONS(9354), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573662,13 +573105,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [140118] = 4, + [139995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11638), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9322), 16, + ACTIONS(9356), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573685,12 +573125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9324), 33, + ACTIONS(9358), 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, @@ -573708,6 +573149,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, @@ -573719,14 +573161,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [140179] = 5, + [140054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11660), 1, - anon_sym_LT, - STATE(3805), 1, - sym_template_argument_list, - ACTIONS(9711), 17, + ACTIONS(5619), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573737,6 +573175,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, @@ -573744,16 +573183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9713), 32, + anon_sym_DASH_GT, + ACTIONS(5611), 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, @@ -573776,11 +573216,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, - [140242] = 3, + anon_sym_DASH_GT_STAR, + [140113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 16, + ACTIONS(9728), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573795,9 +573235,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(9002), 35, + ACTIONS(9730), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573819,24 +573262,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [140301] = 3, + [140172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 19, + ACTIONS(5619), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573856,7 +573296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9597), 32, + ACTIONS(5611), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573889,10 +573329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [140360] = 3, + [140231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 19, + ACTIONS(9856), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573912,7 +573352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9894), 32, + ACTIONS(9858), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -573945,17 +573385,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [140419] = 6, + [140290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(11434), 1, + ACTIONS(11641), 1, + sym_literal_suffix, + ACTIONS(5619), 24, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(5611), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - STATE(6104), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [140351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9369), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -573972,10 +573462,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9379), 31, + ACTIONS(9371), 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, @@ -574003,11 +573494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [140484] = 3, + [140410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6632), 18, + ACTIONS(9889), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574026,18 +573520,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6634), 33, + anon_sym_DASH_GT, + ACTIONS(9891), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -574059,67 +573553,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, - [140543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7106), 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_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7104), 38, - 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, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - anon_sym_operator, - [140602] = 3, + anon_sym_DASH_GT_STAR, + [140469] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 19, + ACTIONS(11628), 1, + anon_sym_LT, + STATE(3120), 1, + sym_template_argument_list, + ACTIONS(9633), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574129,26 +573571,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(4928), 32, + ACTIONS(9635), 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, @@ -574157,7 +573597,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, @@ -574171,11 +573610,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, - [140661] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [140532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 19, + ACTIONS(9421), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574190,12 +573630,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(9882), 32, + ACTIONS(9423), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574217,36 +573654,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_final, + anon_sym_override, + anon_sym_requires, anon_sym_DASH_GT_STAR, - [140720] = 4, + [140591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 20, - aux_sym_preproc_elif_token1, + ACTIONS(10556), 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___attribute__, - anon_sym___attribute, - anon_sym_COLON, + 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, @@ -574254,41 +573696,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(6596), 29, + sym_literal_suffix, + ACTIONS(10558), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [140781] = 3, + [140650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 19, + ACTIONS(9720), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574308,7 +573747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9750), 32, + ACTIONS(9722), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574341,10 +573780,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [140840] = 3, + [140709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 19, + ACTIONS(3096), 1, + anon_sym_LBRACE, + ACTIONS(11446), 1, + anon_sym_LPAREN2, + STATE(6107), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9316), 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(9318), 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, + [140774] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574363,11 +573863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9766), 32, + ACTIONS(5611), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -574375,6 +573873,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -574396,11 +573895,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, - [140899] = 3, + anon_sym_DASH_GT, + [140835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 19, + ACTIONS(9746), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574420,7 +573919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9898), 32, + ACTIONS(9748), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574453,10 +573952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [140958] = 3, + [140894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 19, + ACTIONS(9932), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574476,7 +573975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9699), 32, + ACTIONS(9934), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -574509,10 +574008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [141017] = 3, + [140953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 16, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(9589), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574522,23 +574023,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(9013), 35, + ACTIONS(9591), 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, @@ -574547,28 +574050,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [141076] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [141014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 21, + ACTIONS(9059), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574578,19 +574078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9047), 30, + ACTIONS(9061), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -574598,7 +574096,9 @@ 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -574606,6 +574106,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, @@ -574620,11 +574121,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [141135] = 3, + [141073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 16, + ACTIONS(11639), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11643), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9293), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574641,13 +574147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9447), 35, + ACTIONS(9295), 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, @@ -574664,8 +574168,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, @@ -574677,73 +574179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [141194] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(11649), 1, - anon_sym_COLON, - ACTIONS(11651), 1, - anon_sym_LBRACE, - STATE(5878), 1, - sym__enum_base_clause, - STATE(5989), 1, - sym_enumerator_list, - STATE(6056), 1, - sym_attribute_specifier, - ACTIONS(8006), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(8008), 39, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [141267] = 3, + [141136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 18, + ACTIONS(7972), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574758,22 +574197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(6614), 33, + anon_sym_DASH_GT, + ACTIONS(7970), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -574785,21 +574221,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [141326] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [141195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 18, + ACTIONS(6958), 3, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, + ACTIONS(5619), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574818,18 +574261,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6626), 33, + anon_sym_DASH_GT, + ACTIONS(5611), 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_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -574841,9 +574284,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, @@ -574851,11 +574291,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, - [141385] = 3, + anon_sym_DASH_GT_STAR, + [141256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 18, + ACTIONS(9852), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574874,18 +574314,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6630), 33, + anon_sym_DASH_GT, + ACTIONS(9854), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -574907,11 +574347,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, - [141444] = 3, + anon_sym_DASH_GT_STAR, + [141315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 19, + ACTIONS(9653), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574921,26 +574361,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(9932), 32, + ACTIONS(9655), 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, @@ -574949,7 +574389,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, @@ -574963,11 +574402,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, - [141503] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [141374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 19, + ACTIONS(9051), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -574981,23 +574421,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9948), 32, + ACTIONS(9053), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -575019,52 +574459,42 @@ 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, - [141562] = 8, + anon_sym_DASH_GT, + [141433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 1, - anon_sym_SEMI, - ACTIONS(10614), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 6, + ACTIONS(5591), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5593), 45, + 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_LBRACK_COLON, - ACTIONS(7223), 40, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + 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_RBRACK, + 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, @@ -575078,53 +574508,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_template, - anon_sym_operator, - [141631] = 7, + 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, + [141492] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(7457), 1, - anon_sym_SEMI, - ACTIONS(10614), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(6469), 1, + anon_sym_LBRACK, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(10366), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 40, + ACTIONS(10368), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, anon_sym___attribute__, + ACTIONS(10577), 1, anon_sym___attribute, - anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(10851), 1, + anon_sym_requires, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(7626), 1, + sym__function_attributes_start, + STATE(7710), 1, + sym_ref_qualifier, + STATE(8844), 1, + sym__function_attributes_end, + STATE(8955), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6471), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(6141), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6361), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8505), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7990), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(10370), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -575136,15 +574599,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_template, - anon_sym_operator, - [141698] = 3, + [141605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 18, + ACTIONS(9791), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575163,18 +574621,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6610), 33, + anon_sym_DASH_GT, + ACTIONS(9793), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -575196,11 +574654,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, - [141757] = 3, + anon_sym_DASH_GT_STAR, + [141664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 18, + ACTIONS(9581), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575219,18 +574677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6618), 33, + anon_sym_DASH_GT, + ACTIONS(9583), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -575252,123 +574710,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [141816] = 3, + anon_sym_DASH_GT_STAR, + [141723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 21, + ACTIONS(11645), 1, + sym_identifier, + STATE(5557), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7038), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7044), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8466), 18, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9061), 30, + sym_literal_suffix, + ACTIONS(8464), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK_LBRACK, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [141875] = 3, + [141790] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 19, + ACTIONS(11647), 1, + sym_identifier, + STATE(5668), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7003), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7009), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8466), 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(9790), 32, + sym_literal_suffix, + ACTIONS(8464), 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_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, - [141934] = 3, + anon_sym_DASH_GT, + [141857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 19, + ACTIONS(9581), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575388,7 +574854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9810), 32, + ACTIONS(9583), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -575421,14 +574887,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [141993] = 4, + [141916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6958), 3, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - ACTIONS(5645), 19, + ACTIONS(9767), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575448,7 +574910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5638), 29, + ACTIONS(9769), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -575470,6 +574932,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -575478,14 +574943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [142054] = 5, + [141975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_LT, - STATE(3151), 1, - sym_template_argument_list, - ACTIONS(9650), 19, + ACTIONS(9085), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575495,17 +574956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9652), 30, + ACTIONS(9087), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -575513,7 +574974,9 @@ 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_GT_EQ, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -575521,6 +574984,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, @@ -575535,69 +574999,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [142117] = 5, + [142034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11663), 1, - anon_sym_LT, - STATE(3131), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + STATE(5955), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9305), 20, + 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_LT, - anon_sym_GT_GT, - anon_sym_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(9652), 32, + sym_identifier, + ACTIONS(9307), 27, 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, anon_sym_AMP_AMP, + anon_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_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142180] = 3, + anon_sym_COLON_RBRACK, + [142099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 19, + ACTIONS(9775), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575617,7 +575081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9832), 32, + ACTIONS(9777), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -575650,10 +575114,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [142239] = 3, + [142158] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 16, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(11649), 1, + anon_sym_COLON, + ACTIONS(11651), 1, + anon_sym_LBRACE, + STATE(5843), 1, + sym__enum_base_clause, + STATE(5989), 1, + sym_enumerator_list, + STATE(6108), 1, + sym_attribute_specifier, + ACTIONS(8001), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(8003), 39, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [142231] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + STATE(5979), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9316), 20, + 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, + ACTIONS(9318), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [142296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9868), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575668,9 +575254,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(9310), 35, + ACTIONS(9870), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -575692,24 +575281,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [142298] = 3, + [142355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 19, + ACTIONS(3168), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575724,12 +575310,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(3488), 32, + ACTIONS(3166), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -575751,21 +575334,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [142357] = 3, + [142414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 16, + ACTIONS(9872), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575780,9 +575366,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(9363), 35, + ACTIONS(9874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -575804,24 +575393,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [142416] = 3, + [142473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9084), 19, + ACTIONS(9912), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575835,23 +575421,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9086), 32, + anon_sym_DASH_GT, + ACTIONS(9914), 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -575873,18 +575459,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, - [142475] = 6, + anon_sym_DASH_GT_STAR, + [142532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(11434), 1, - anon_sym_LPAREN2, - STATE(6103), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 16, + ACTIONS(6586), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -575899,18 +575478,22 @@ 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(9493), 31, + ACTIONS(6588), 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_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -575922,79 +575505,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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [142540] = 3, + anon_sym_DASH_GT, + [142591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 19, + ACTIONS(6656), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6658), 20, + 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, - anon_sym_DASH_GT, - ACTIONS(9940), 32, + sym_identifier, + ACTIONS(6651), 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_RBRACK_RBRACK, + 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_STAR, - [142599] = 4, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [142652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9711), 20, + ACTIONS(7876), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576004,25 +575586,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(9713), 30, + anon_sym_DASH_GT, + ACTIONS(7874), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -576031,85 +575611,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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, - [142660] = 5, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [142711] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11666), 1, - anon_sym_LT, - STATE(5732), 1, - sym_template_argument_list, - ACTIONS(9711), 19, + ACTIONS(11653), 1, + sym_identifier, + STATE(5644), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(11656), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11659), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8473), 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_LT, + anon_sym_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(9713), 30, + sym_literal_suffix, + ACTIONS(8471), 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_STAR_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, - [142723] = 4, + [142778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9711), 18, + ACTIONS(9077), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576123,12 +575706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9713), 32, + ACTIONS(9079), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -576137,8 +575721,8 @@ 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_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -576161,18 +575745,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [142784] = 6, + [142837] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - STATE(5977), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 20, - aux_sym_preproc_elif_token1, + STATE(5137), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(6892), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(6894), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9107), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -576183,7 +575774,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -576191,15 +575781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9433), 27, + sym_literal_suffix, + ACTIONS(9109), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -576211,7 +575797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -576219,11 +575804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [142849] = 3, + [142902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 19, + ACTIONS(9593), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576243,7 +575827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9780), 32, + ACTIONS(9595), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576276,10 +575860,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [142908] = 3, + [142961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 16, + ACTIONS(11662), 1, + anon_sym_LT, + STATE(5852), 1, + sym_template_argument_list, + ACTIONS(9589), 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(9591), 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, + [143024] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9798), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576294,9 +575936,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(8887), 35, + ACTIONS(9800), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576318,33 +575963,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [142967] = 7, + [143083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 1, - anon_sym_LBRACE, - ACTIONS(7445), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7087), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(7092), 15, + ACTIONS(9838), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576355,15 +575988,20 @@ 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(7097), 31, + ACTIONS(9840), 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, @@ -576381,21 +576019,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [143034] = 3, + [143142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 16, + ACTIONS(9802), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576410,9 +576048,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(9367), 35, + ACTIONS(9804), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576434,24 +576075,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [143093] = 3, + [143201] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 16, + ACTIONS(7122), 1, + anon_sym_LBRACE, + ACTIONS(7405), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7119), 2, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + ACTIONS(7124), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576462,17 +576109,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_DOT, anon_sym_DASH_GT, - ACTIONS(8911), 35, + ACTIONS(7129), 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, @@ -576500,14 +576145,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [143152] = 3, + [143268] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 20, + ACTIONS(11665), 1, + sym_literal_suffix, + ACTIONS(5611), 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(5619), 26, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576524,19 +576193,49 @@ static const uint16_t ts_small_parse_table[] = { 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, + [143329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9806), 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(9705), 31, + anon_sym_DASH_GT, + ACTIONS(9808), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACE, + anon_sym_GT_EQ, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -576545,6 +576244,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, @@ -576558,12 +576258,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, - [143211] = 3, + anon_sym_DASH_GT_STAR, + [143388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 16, + ACTIONS(9860), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576578,9 +576277,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(9371), 35, + ACTIONS(9862), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576602,24 +576304,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [143270] = 3, + [143447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 16, + ACTIONS(8937), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576636,7 +576335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9375), 35, + ACTIONS(8939), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576672,70 +576371,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [143329] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11669), 1, - sym_identifier, - STATE(5602), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(6987), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6993), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8468), 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(8466), 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, - [143396] = 3, + [143506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 19, + ACTIONS(8941), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576750,12 +576389,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(9921), 32, + ACTIONS(8943), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576777,23 +576413,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [143455] = 4, + [143565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11671), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 21, + ACTIONS(9373), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576803,26 +576440,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(9699), 29, + anon_sym_DASH_GT, + ACTIONS(9375), 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -576830,25 +576465,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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, - [143516] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_DASH_GT_STAR, + [143624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 19, + ACTIONS(8923), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576863,12 +576501,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(9754), 32, + ACTIONS(8925), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576890,21 +576525,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [143575] = 3, + [143683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 19, + ACTIONS(8923), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576919,12 +576557,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(9802), 32, + ACTIONS(8925), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -576946,21 +576581,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [143634] = 3, + [143742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 19, + ACTIONS(8953), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -576975,12 +576613,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(9866), 32, + ACTIONS(8955), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577002,23 +576637,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [143693] = 4, + [143801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11673), 1, - sym_literal_suffix, - ACTIONS(5645), 24, + ACTIONS(9585), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577033,19 +576669,15 @@ 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(5638), 26, + anon_sym_DASH_GT, + ACTIONS(9587), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -577053,7 +576685,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -577065,74 +576696,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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143754] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(5033), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6913), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6915), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(9116), 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(9118), 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, - [143819] = 3, + anon_sym_DASH_GT_STAR, + [143860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9900), 19, + ACTIONS(8923), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577147,12 +576725,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(9902), 32, + ACTIONS(8925), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577174,21 +576749,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [143878] = 3, + [143919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9907), 19, + ACTIONS(9581), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577208,7 +576786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9909), 32, + ACTIONS(9583), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577241,12 +576819,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [143937] = 4, + [143978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 18, + ACTIONS(9893), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577265,9 +576841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5638), 32, + anon_sym_DASH_GT, + ACTIONS(9895), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -577275,7 +576853,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -577297,20 +576874,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [143998] = 4, + anon_sym_DASH_GT_STAR, + [144037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11675), 1, - sym_literal_suffix, - ACTIONS(5638), 24, + ACTIONS(9810), 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(9812), 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, @@ -577319,46 +576916,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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5645), 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_LT_EQ_GT, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - [144059] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [144096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 16, + ACTIONS(9814), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577373,9 +576949,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(8952), 35, + ACTIONS(9816), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577397,32 +576976,39 @@ 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [144118] = 6, + [144155] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - STATE(6023), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 20, - aux_sym_preproc_elif_token1, + ACTIONS(11667), 1, + sym_identifier, + STATE(5700), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(7003), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7009), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8485), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -577431,9 +577017,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, @@ -577441,15 +577024,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9493), 27, + sym_literal_suffix, + ACTIONS(8483), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -577460,20 +577039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACE, anon_sym_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_COLON_RBRACK, - [144183] = 3, + [144222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 16, + ACTIONS(9787), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577488,9 +577065,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(8944), 35, + ACTIONS(9789), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577512,24 +577092,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_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, + [144281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9712), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9714), 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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [144242] = 3, + [144340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 18, + ACTIONS(9826), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577548,18 +577181,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9705), 33, + anon_sym_DASH_GT, + ACTIONS(9828), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -577581,11 +577214,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, - [144301] = 3, + anon_sym_DASH_GT_STAR, + [144399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9711), 19, + ACTIONS(9830), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577605,7 +577238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9713), 32, + ACTIONS(9832), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577638,10 +577271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [144360] = 3, + [144458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9080), 19, + ACTIONS(9027), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577651,17 +577284,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9082), 32, + ACTIONS(9029), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -577669,9 +577304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -577679,7 +577312,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, @@ -577694,10 +577326,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144419] = 3, + anon_sym_GT2, + [144517] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(11649), 1, + anon_sym_COLON, + ACTIONS(11651), 1, + anon_sym_LBRACE, + STATE(5859), 1, + sym__enum_base_clause, + STATE(5972), 1, + sym_enumerator_list, + STATE(6036), 1, + sym_attribute_specifier, + ACTIONS(8007), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(8009), 39, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [144590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 16, + ACTIONS(9834), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577712,9 +577408,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(9391), 35, + ACTIONS(9836), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577736,24 +577435,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [144478] = 3, + [144649] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 25, + ACTIONS(6656), 1, + anon_sym_COLON_COLON, + ACTIONS(9553), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577763,23 +577461,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_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_literal_suffix, - ACTIONS(10564), 26, + ACTIONS(9555), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -577787,9 +577480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -577797,21 +577488,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [144537] = 4, + anon_sym_GT2, + [144710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11677), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 19, + ACTIONS(9822), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577825,22 +577520,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9699), 31, + anon_sym_DASH_GT, + ACTIONS(9824), 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -577862,11 +577558,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, - [144598] = 3, + anon_sym_DASH_GT_STAR, + [144769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 19, + ACTIONS(9928), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577886,7 +577582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9738), 32, + ACTIONS(9930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -577919,10 +577615,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [144657] = 3, + [144828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 16, + ACTIONS(9027), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577936,20 +577632,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_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(8422), 35, + ACTIONS(9029), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -577961,28 +577660,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [144716] = 5, + anon_sym_DASH_GT, + [144887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11653), 1, - anon_sym_LT, - STATE(5312), 1, - sym_template_argument_list, - ACTIONS(9650), 19, + ACTIONS(9081), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -577994,15 +577686,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(9652), 30, + ACTIONS(9083), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -578010,7 +577704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -578033,10 +577727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [144779] = 3, + [144946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 19, + ACTIONS(9724), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578056,7 +577750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9886), 32, + ACTIONS(9726), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -578089,10 +577783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [144838] = 3, + [145005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9088), 19, + ACTIONS(9920), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578106,23 +577800,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_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9090), 32, + anon_sym_DASH_GT, + ACTIONS(9922), 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_RBRACK_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -578144,11 +577838,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, - [144897] = 3, + anon_sym_DASH_GT_STAR, + [145064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9095), 19, + ACTIONS(9844), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578162,66 +577856,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9097), 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_LBRACK_LBRACK, - anon_sym_RBRACK_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, - [144956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8954), 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(8956), 35, + ACTIONS(9846), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -578243,24 +577884,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [145015] = 3, + [145123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9041), 19, + ACTIONS(9085), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578270,17 +577908,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9043), 32, + ACTIONS(9087), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -578288,9 +577928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -578298,7 +577936,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, @@ -578313,133 +577950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145074] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11679), 1, - sym_identifier, - STATE(5688), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(11682), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(11685), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8408), 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(8406), 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_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, - [145141] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - STATE(5982), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 20, - 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, - ACTIONS(9383), 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_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [145206] = 5, + anon_sym_GT2, + [145182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11663), 1, - anon_sym_LT, - STATE(3137), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(9653), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578450,6 +577965,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, @@ -578457,7 +577973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9652), 32, + ACTIONS(9655), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -578466,6 +577982,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_RBRACK, anon_sym_QMARK, @@ -578490,10 +578007,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145269] = 3, + [145241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(9377), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578508,12 +578025,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(9762), 32, + ACTIONS(9379), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -578535,21 +578049,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [145328] = 3, + [145300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 18, + ACTIONS(9031), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578563,12 +578080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(8559), 33, + ACTIONS(9033), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -578577,9 +578095,8 @@ 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_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -578602,10 +578119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145387] = 3, + [145359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 16, + ACTIONS(9067), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578619,20 +578136,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_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9335), 35, + ACTIONS(9069), 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_LBRACK_LBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -578644,24 +578164,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [145446] = 3, + anon_sym_DASH_GT, + [145418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 16, + ACTIONS(9063), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578671,24 +578188,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(9339), 35, + ACTIONS(9065), 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, @@ -578696,28 +578216,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [145505] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [145477] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(11628), 1, + anon_sym_LT, + STATE(5263), 1, + sym_template_argument_list, + ACTIONS(9633), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578727,26 +578248,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(9762), 32, + ACTIONS(9635), 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, @@ -578755,7 +578274,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, @@ -578769,11 +578287,71 @@ 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, - [145564] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [145540] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10331), 1, + anon_sym_decltype, + ACTIONS(11500), 1, + sym_auto, + STATE(6080), 1, + sym_decltype_auto, + ACTIONS(7246), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7248), 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___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [145605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 16, + ACTIONS(8905), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578790,7 +578368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7966), 35, + ACTIONS(8907), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -578826,93 +578404,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [145623] = 30, + [145664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(10824), 1, - anon_sym_requires, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(7649), 1, - sym__function_attributes_start, - STATE(7721), 1, - sym_ref_qualifier, - STATE(8851), 1, - sym__function_attributes_end, - STATE(8980), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6481), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(6144), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6360), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8522), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7989), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [145736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9045), 19, + ACTIONS(9047), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578932,7 +578427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9047), 32, + ACTIONS(9049), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -578965,10 +578460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145795] = 3, + [145723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9630), 19, + ACTIONS(9779), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -578988,7 +578483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9632), 32, + ACTIONS(9781), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579021,14 +578516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [145854] = 5, + [145782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11660), 1, - anon_sym_LT, - STATE(5840), 1, - sym_template_argument_list, - ACTIONS(9711), 17, + ACTIONS(9031), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579038,15 +578529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_EQ, + anon_sym_GT_GT_EQ, anon_sym_or, anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9713), 32, + ACTIONS(9033), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -579054,9 +578549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -579064,7 +578557,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, @@ -579079,10 +578571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [145917] = 3, + anon_sym_GT2, + [145841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(9818), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579102,7 +578595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9762), 32, + ACTIONS(9820), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579135,10 +578628,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [145976] = 3, + [145900] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(11631), 1, + anon_sym_LT, + STATE(3093), 1, + sym_template_argument_list, + ACTIONS(9633), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579149,7 +578646,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, @@ -579157,11 +578653,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9762), 32, + ACTIONS(9635), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -579169,6 +578663,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -579190,11 +578685,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, - [146035] = 3, + anon_sym_DASH_GT, + [145963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 16, + ACTIONS(9690), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579209,9 +578704,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(9409), 35, + ACTIONS(9692), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579233,24 +578731,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_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [146094] = 3, + [146022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(11669), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9593), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579260,27 +578757,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(9762), 32, + ACTIONS(9595), 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, @@ -579288,7 +578784,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, @@ -579302,11 +578797,72 @@ 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, - [146153] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [146083] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11671), 1, + sym_identifier, + STATE(5700), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(11674), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(11677), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(8473), 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(8471), 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_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, + [146150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 19, + ACTIONS(9771), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579326,7 +578882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9762), 32, + ACTIONS(9773), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579359,10 +578915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [146212] = 3, + [146209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 19, + ACTIONS(11680), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9593), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579382,7 +578940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9065), 32, + ACTIONS(9595), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -579391,8 +578949,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_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -579415,70 +578972,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [146271] = 7, + [146270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11688), 1, - sym_identifier, - STATE(5688), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(7048), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7054), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(8456), 16, + ACTIONS(9077), 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_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8454), 21, + ACTIONS(9079), 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_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, + [146329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8513), 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(8508), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_COLON_COLON, 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, - [146338] = 3, + anon_sym_GT2, + [146388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 19, + ACTIONS(6656), 1, + anon_sym_COLON_COLON, + ACTIONS(9553), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579497,11 +579108,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9774), 32, + ACTIONS(9555), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -579509,6 +579118,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -579530,11 +579140,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, - [146397] = 3, + anon_sym_DASH_GT, + [146449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 19, + ACTIONS(8404), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579549,12 +579159,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(9628), 32, + ACTIONS(8402), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579576,21 +579183,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + 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_requires, anon_sym_DASH_GT_STAR, - [146456] = 3, + [146508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9685), 19, + ACTIONS(9928), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579610,7 +579220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9687), 32, + ACTIONS(9930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579643,10 +579253,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [146515] = 3, + [146567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 16, + ACTIONS(5587), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(5589), 45, + 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_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_RBRACK, + 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__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [146626] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8915), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579663,7 +579329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(7791), 35, + ACTIONS(8917), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579699,10 +579365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [146574] = 3, + [146685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 19, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(9589), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579721,11 +579389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9798), 32, + ACTIONS(9591), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -579733,6 +579399,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -579754,11 +579421,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, - [146633] = 3, + anon_sym_DASH_GT, + [146746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 19, + ACTIONS(9051), 21, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579768,26 +579435,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_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(9628), 32, + ACTIONS(9053), 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_LBRACK, + anon_sym_QMARK, + anon_sym_STAR_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, + [146805] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11628), 1, + anon_sym_LT, + STATE(3121), 1, + sym_template_argument_list, + ACTIONS(9633), 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(9635), 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, @@ -579796,7 +579521,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, @@ -579810,11 +579534,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, - [146692] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [146868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 19, + ACTIONS(9928), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579834,7 +579559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9628), 32, + ACTIONS(9930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579867,10 +579592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [146751] = 3, + [146927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 16, + ACTIONS(8513), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579885,19 +579610,22 @@ 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(8994), 35, + ACTIONS(8508), 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_COLON_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -579909,24 +579637,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [146810] = 3, + anon_sym_DASH_GT, + [146986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 16, + ACTIONS(9928), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579941,9 +579666,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(8994), 35, + ACTIONS(9930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -579965,24 +579693,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [146869] = 3, + [147045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 16, + ACTIONS(9924), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -579997,9 +579722,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(9298), 35, + ACTIONS(9926), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -580021,87 +579749,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, anon_sym_DASH_GT_STAR, - [146928] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - STATE(5980), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 20, - 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, - ACTIONS(9379), 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_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [146993] = 5, + [147104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11663), 1, + ACTIONS(11636), 1, anon_sym_LT, - STATE(5351), 1, + STATE(5812), 1, sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(9589), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580119,7 +579785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9652), 32, + ACTIONS(9591), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580152,10 +579818,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147056] = 3, + [147167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 16, + ACTIONS(8965), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580172,7 +579838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(8994), 35, + ACTIONS(8967), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -580208,48 +579874,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_DASH_GT_STAR, - [147115] = 3, + [147226] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 16, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + STATE(5944), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9403), 20, + 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___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, + ACTIONS(9405), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, + anon_sym_SEMI, + 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(9417), 35, + anon_sym_COLON_RBRACK, + [147291] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5464), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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(8989), 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___attribute__, + anon_sym_RBRACK_RBRACK, + 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, @@ -580260,14 +579990,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_DASH_GT_STAR, - [147174] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [147357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 19, + ACTIONS(9492), 1, + anon_sym_COMMA, + ACTIONS(9497), 1, + anon_sym_RBRACK, + ACTIONS(5619), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580286,11 +580018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9828), 32, + ACTIONS(5611), 30, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -580319,11 +580048,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, - [147233] = 3, + anon_sym_DASH_GT, + [147419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 18, + ACTIONS(9924), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580342,7 +580071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(6622), 33, + ACTIONS(9926), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580351,7 +580080,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_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, @@ -580376,39 +580104,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147292] = 3, + [147477] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9907), 20, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 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, - anon_sym_GT_GT_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9909), 30, + ACTIONS(9623), 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, @@ -580416,25 +580155,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, - [147350] = 3, + anon_sym_DASH_GT_STAR, + [147551] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9732), 20, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9669), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580444,26 +580196,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(9734), 30, + ACTIONS(9671), 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, @@ -580471,25 +580217,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, - anon_sym_DASH_GT, - anon_sym_GT2, - [147408] = 3, + anon_sym_DASH_GT_STAR, + [147623] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 18, + ACTIONS(11288), 1, + anon_sym_LPAREN2, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10221), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580504,21 +580255,17 @@ 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, - ACTIONS(9628), 32, + anon_sym_DASH_GT, + ACTIONS(10219), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -580530,21 +580277,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [147466] = 3, + anon_sym_DASH_GT_STAR, + [147689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 18, + ACTIONS(9885), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580563,7 +580310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4928), 32, + ACTIONS(9887), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580596,10 +580343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147524] = 3, + [147747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 18, + ACTIONS(9720), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580618,7 +580365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9628), 32, + ACTIONS(9722), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580651,10 +580398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147582] = 3, + [147805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 20, + ACTIONS(9791), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580664,18 +580411,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(9894), 30, + ACTIONS(9793), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580683,7 +580428,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -580691,6 +580438,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, @@ -580705,11 +580453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [147640] = 3, + [147863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 18, + ACTIONS(9826), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580719,16 +580466,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(9628), 32, + ACTIONS(9828), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580736,9 +580485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -580746,7 +580493,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, @@ -580761,10 +580507,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147698] = 3, + anon_sym_GT2, + [147921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 18, + ACTIONS(9724), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580774,16 +580521,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(9898), 32, + ACTIONS(9726), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580791,9 +580540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -580801,7 +580548,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, @@ -580816,10 +580562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147756] = 3, + anon_sym_GT2, + [147979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9693), 20, + ACTIONS(4928), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580840,7 +580587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9695), 30, + ACTIONS(4926), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580871,10 +580618,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [147814] = 3, + [148037] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 18, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9621), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580889,21 +580652,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_xor, - anon_sym_DOT, - ACTIONS(9742), 32, + ACTIONS(9623), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -580915,21 +580672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [147872] = 3, + anon_sym_DASH_GT_STAR, + [148109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 18, + ACTIONS(9830), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -580948,7 +580702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9770), 32, + ACTIONS(9832), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -580981,40 +580735,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [147930] = 9, + [148167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(7034), 2, anon_sym_EQ, - ACTIONS(5796), 1, - anon_sym_SEMI, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, - anon_sym_LPAREN2, - ACTIONS(9239), 1, - anon_sym_LBRACK, - ACTIONS(5663), 13, + anon_sym_GT_GT_EQ, + ACTIONS(7036), 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_GT_GT_EQ, 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(5638), 15, + ACTIONS(5611), 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_GT_EQ, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_bitor, @@ -581024,7 +580772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5645), 17, + anon_sym_GT2, + ACTIONS(5619), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581034,6 +580783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, anon_sym_LT_LT, @@ -581042,10 +580792,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - [148000] = 3, + [148229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 18, + ACTIONS(9771), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581055,16 +580805,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(9794), 32, + ACTIONS(9773), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -581072,9 +580824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -581082,7 +580832,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, @@ -581097,65 +580846,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [148058] = 24, + anon_sym_GT2, + [148287] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9707), 1, + ACTIONS(9621), 1, anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(11127), 1, anon_sym_DOT_STAR, - ACTIONS(11401), 1, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, + ACTIONS(11688), 1, anon_sym_PIPE, - ACTIONS(11698), 1, + ACTIONS(11690), 1, anon_sym_CARET, - ACTIONS(11700), 1, + ACTIONS(11692), 1, anon_sym_AMP, - ACTIONS(11706), 1, + ACTIONS(11698), 1, anon_sym_GT_EQ, - ACTIONS(11710), 1, + ACTIONS(11702), 1, anon_sym_bitor, - ACTIONS(11712), 1, + ACTIONS(11704), 1, anon_sym_xor, - ACTIONS(11714), 1, + ACTIONS(11706), 1, anon_sym_bitand, - STATE(5663), 1, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11415), 2, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11694), 2, + ACTIONS(11686), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(11708), 2, + ACTIONS(11700), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11692), 3, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11702), 3, + ACTIONS(11694), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11704), 3, + ACTIONS(11696), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 17, + ACTIONS(9623), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -581173,10 +580923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_or, anon_sym_DASH_GT_STAR, - [148158] = 3, + [148387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 20, + ACTIONS(9889), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581186,18 +580936,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(9824), 30, + ACTIONS(9891), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -581205,7 +580953,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -581213,6 +580963,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, @@ -581227,11 +580978,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [148216] = 3, + [148445] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 20, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9702), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581241,26 +581007,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(9820), 30, + ACTIONS(9704), 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, @@ -581268,80 +581028,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_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, - [148274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9934), 20, - 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, - ACTIONS(9936), 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_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, - anon_sym_COLON_RBRACK, - [148332] = 3, + anon_sym_DASH_GT_STAR, + [148517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 20, + ACTIONS(9872), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581362,7 +581064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9802), 30, + ACTIONS(9874), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -581393,77 +581095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [148390] = 7, + [148575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5352), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 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(8915), 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___attribute__, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [148456] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, - anon_sym_LBRACK, - STATE(1989), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10202), 16, + ACTIONS(5619), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581478,17 +581113,21 @@ 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(10200), 30, + ACTIONS(5611), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -581500,50 +581139,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_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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, - [148522] = 3, + anon_sym_DASH_GT, + [148633] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 20, + ACTIONS(9621), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11688), 1, + anon_sym_PIPE, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 1, + anon_sym_AMP, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11702), 1, + anon_sym_bitor, + ACTIONS(11704), 1, + anon_sym_xor, + ACTIONS(11706), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 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(9828), 30, + ACTIONS(9623), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -581551,58 +581218,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [148580] = 7, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT_STAR, + [148731] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(11307), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - STATE(1989), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10174), 16, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 1, + anon_sym_AMP, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11704), 1, + anon_sym_xor, + ACTIONS(11706), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(9621), 2, + anon_sym_PIPE, + anon_sym_EQ, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10172), 30, + ACTIONS(9623), 20, 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, @@ -581614,18 +581294,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [148646] = 3, + [148825] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9856), 20, @@ -581680,10 +581353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [148704] = 3, + [148883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 20, + ACTIONS(9897), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581693,18 +581366,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(9758), 30, + ACTIONS(9899), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -581712,7 +581383,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -581720,6 +581393,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, @@ -581734,86 +581408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [148762] = 23, + [148941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9707), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, - anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11710), 1, - anon_sym_bitor, - ACTIONS(11712), 1, - anon_sym_xor, - ACTIONS(11714), 1, - anon_sym_bitand, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT_STAR, - [148860] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9934), 20, + ACTIONS(9802), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581823,18 +581421,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(9936), 30, + ACTIONS(9804), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -581842,7 +581438,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -581850,6 +581448,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, @@ -581864,66 +581463,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [148918] = 3, + [148999] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 19, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10467), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11688), 1, anon_sym_PIPE, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 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(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11702), 1, anon_sym_bitor, + ACTIONS(11704), 1, anon_sym_xor, + ACTIONS(11706), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(8699), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11686), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11708), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11682), 3, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(11694), 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, - [148976] = 3, + anon_sym_not_eq, + ACTIONS(11696), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10469), 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, + [149101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 18, + ACTIONS(9763), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581942,7 +581562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9597), 32, + ACTIONS(9765), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -581975,10 +581595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149034] = 3, + [149159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9911), 18, + ACTIONS(9852), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -581997,7 +581617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9913), 32, + ACTIONS(9854), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582030,10 +581650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149092] = 3, + [149217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 18, + ACTIONS(9834), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582052,7 +581672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9886), 32, + ACTIONS(9836), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582085,10 +581705,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149150] = 3, + [149275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 20, + ACTIONS(9920), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582109,7 +581729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9870), 30, + ACTIONS(9922), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582140,40 +581760,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [149208] = 3, + [149333] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 18, + ACTIONS(9889), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11397), 1, + anon_sym_QMARK, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11688), 1, + anon_sym_PIPE, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 1, + anon_sym_AMP, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11702), 1, + anon_sym_bitor, + ACTIONS(11704), 1, + anon_sym_xor, + ACTIONS(11706), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11686), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11708), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9754), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(9891), 13, 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_RPAREN, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -582184,36 +581838,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [149266] = 7, + anon_sym_DASH_GT_STAR, + [149439] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11716), 1, - anon_sym_delete, - ACTIONS(11718), 1, - anon_sym_new, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 17, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9702), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -582223,22 +581868,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + 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(9597), 22, + sym_identifier, + ACTIONS(9704), 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, @@ -582248,65 +581895,62 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [149332] = 21, + anon_sym_COLON_RBRACK, + [149511] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(11127), 1, anon_sym_DOT_STAR, - ACTIONS(11401), 1, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, + ACTIONS(11692), 1, anon_sym_AMP, - ACTIONS(11706), 1, + ACTIONS(11698), 1, anon_sym_GT_EQ, - ACTIONS(11712), 1, - anon_sym_xor, - ACTIONS(11714), 1, + ACTIONS(11706), 1, anon_sym_bitand, - STATE(5663), 1, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym_EQ, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11415), 2, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11708), 2, + ACTIONS(11700), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11692), 3, + ACTIONS(9621), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_EQ, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11702), 3, + ACTIONS(11694), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(11704), 3, + ACTIONS(11696), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 20, + ACTIONS(9623), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -582326,127 +581970,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_DASH_GT_STAR, - [149426] = 3, + [149601] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 18, + ACTIONS(9227), 1, + anon_sym_requires, + ACTIONS(9224), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(9858), 32, + ACTIONS(7874), 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149484] = 25, + anon_sym_COLON_RBRACK, + [149667] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10435), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(11127), 1, anon_sym_DOT_STAR, - ACTIONS(11401), 1, + ACTIONS(11419), 1, anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, - anon_sym_PIPE, ACTIONS(11698), 1, + anon_sym_GT_EQ, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11682), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 4, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(11700), 1, anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11710), 1, + anon_sym_EQ, + ACTIONS(9623), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(11712), 1, anon_sym_xor, - ACTIONS(11714), 1, anon_sym_bitand, - STATE(5663), 1, + anon_sym_DASH_GT_STAR, + [149753] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11415), 2, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11694), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11708), 2, + ACTIONS(11700), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(11720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11692), 3, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, + ACTIONS(11696), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 15, + ACTIONS(9621), 4, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ, + ACTIONS(9623), 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, @@ -582458,11 +582161,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, - [149586] = 3, + [149837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 20, + ACTIONS(9734), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582483,7 +582192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9898), 30, + ACTIONS(9736), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582514,10 +582223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [149644] = 3, + [149895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 18, + ACTIONS(9838), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582536,7 +582245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9691), 32, + ACTIONS(9840), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582569,10 +582278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [149702] = 3, + [149953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 20, + ACTIONS(9860), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582582,18 +582291,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(9790), 30, + ACTIONS(9862), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582601,7 +582308,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -582609,6 +582318,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, @@ -582623,46 +582333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [149760] = 5, + [150011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 2, - anon_sym_EQ, - anon_sym_GT_GT_EQ, - ACTIONS(6985), 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(5638), 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, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(5645), 18, + ACTIONS(9897), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582677,127 +582351,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, - [149822] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9707), 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(9709), 23, + ACTIONS(9899), 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_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_COLON_RBRACK, - [149894] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11714), 1, - anon_sym_bitand, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_EQ, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -582805,19 +582373,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_DASH_GT_STAR, - [149984] = 3, + 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, + [150069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9732), 18, + ACTIONS(9928), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582836,7 +582410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9734), 32, + ACTIONS(9930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582869,10 +582443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150042] = 3, + [150127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 18, + ACTIONS(9928), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582891,7 +582465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9925), 32, + ACTIONS(9930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582924,26 +582498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150100] = 5, + [150185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6995), 1, - anon_sym_EQ, - ACTIONS(6997), 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(5645), 17, + ACTIONS(9822), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -582957,11 +582515,12 @@ 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_xor, anon_sym_DOT, - ACTIONS(5638), 19, + ACTIONS(9824), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -582970,9 +582529,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, 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, @@ -582981,23 +582553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150162] = 9, + [150243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9657), 14, + ACTIONS(9152), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583012,15 +582571,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(9659), 29, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9150), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -583032,20 +582597,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_DASH_GT_STAR, - [150232] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [150301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 18, + ACTIONS(9152), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583055,16 +582621,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(9814), 32, + ACTIONS(9150), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583072,9 +582640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -583082,7 +582648,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, @@ -583097,70 +582662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150290] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(11651), 1, - anon_sym_LBRACE, - STATE(5993), 1, - sym_enumerator_list, - STATE(6063), 1, - sym_attribute_specifier, - ACTIONS(7387), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7389), 40, - 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_COLON, - 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__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [150358] = 3, + [150359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 18, + ACTIONS(8566), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583170,16 +582676,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(9802), 32, + ACTIONS(3546), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583187,9 +582695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -583197,7 +582703,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, @@ -583212,87 +582717,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150416] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10538), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, - anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11710), 1, - anon_sym_bitor, - ACTIONS(11712), 1, - anon_sym_xor, - ACTIONS(11714), 1, - anon_sym_bitand, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11694), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10540), 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, - [150518] = 3, + anon_sym_GT2, + [150417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 20, + ACTIONS(9868), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583302,18 +582731,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(9917), 30, + ACTIONS(9870), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583321,7 +582748,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -583329,6 +582758,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, @@ -583343,11 +582773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [150576] = 3, + [150475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 18, + ACTIONS(9893), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583366,7 +582795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9758), 32, + ACTIONS(9895), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583399,94 +582828,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150634] = 3, + [150533] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9907), 18, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(8402), 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_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + 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, + anon_sym_COLON_RBRACK, + [150599] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9347), 1, + anon_sym_requires, + ACTIONS(9344), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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(9909), 32, + ACTIONS(7970), 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150692] = 3, + anon_sym_COLON_RBRACK, + [150665] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 20, + ACTIONS(11712), 1, + anon_sym_delete, + ACTIONS(11714), 1, + anon_sym_new, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9661), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_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_LBRACK, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9780), 30, + ACTIONS(9659), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_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, + [150731] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10485), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11688), 1, + anon_sym_PIPE, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 1, + anon_sym_AMP, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11702), 1, + anon_sym_bitor, + ACTIONS(11704), 1, + anon_sym_xor, + ACTIONS(11706), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11686), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11708), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11682), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10487), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -583494,25 +583077,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, - anon_sym_GT2, - [150750] = 3, + anon_sym_DASH_GT_STAR, + [150833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 20, + ACTIONS(9928), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583533,7 +583106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9597), 30, + ACTIONS(9930), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583564,65 +583137,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [150808] = 3, + [150891] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 18, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9621), 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_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(9623), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_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_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_COLON_RBRACK, + [150963] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10115), 1, + anon_sym_requires, + ACTIONS(10112), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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(8402), 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_EQ, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + 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, + anon_sym_COLON_RBRACK, + [151029] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11719), 1, + anon_sym_requires, + ACTIONS(11716), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5464), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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(9932), 32, + ACTIONS(8989), 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___attribute__, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150866] = 3, + anon_sym_COLON_RBRACK, + [151095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 18, + ACTIONS(9746), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583641,7 +583339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9824), 32, + ACTIONS(9748), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583674,14 +583372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [150924] = 5, + [151153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11436), 1, - anon_sym_LBRACK, - STATE(5984), 1, - sym_new_declarator, - ACTIONS(9535), 16, + ACTIONS(9690), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583696,19 +583390,21 @@ 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(9537), 32, + ACTIONS(9692), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -583720,21 +583416,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [150986] = 3, + anon_sym_DASH_GT, + [151211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 18, + ACTIONS(9734), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583753,7 +583449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5638), 32, + ACTIONS(9736), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583786,54 +583482,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151044] = 7, + [151269] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, - anon_sym_LBRACK, - STATE(1989), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10206), 16, + ACTIONS(11725), 1, + anon_sym_requires, + ACTIONS(11722), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5326), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8997), 11, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10204), 30, + ACTIONS(8999), 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___attribute__, + anon_sym_RBRACK_RBRACK, + 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, @@ -583844,11 +583539,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, - [151110] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [151335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9711), 20, + ACTIONS(9738), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583858,18 +583554,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(9713), 30, + ACTIONS(9740), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583877,7 +583571,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -583885,6 +583581,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, @@ -583899,11 +583596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [151168] = 3, + [151393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9685), 18, + ACTIONS(9742), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583922,7 +583618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9687), 32, + ACTIONS(9744), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -583955,10 +583651,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151226] = 3, + [151451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 20, + ACTIONS(9928), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -583979,7 +583675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(4928), 30, + ACTIONS(9930), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584010,14 +583706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [151284] = 5, + [151509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11724), 1, - anon_sym_COMMA, - ACTIONS(11726), 1, - anon_sym_RBRACK, - ACTIONS(5645), 18, + ACTIONS(9848), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584036,8 +583728,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5638), 30, + ACTIONS(9850), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -584045,6 +583738,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -584067,10 +583761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151346] = 3, + [151567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 20, + ACTIONS(5619), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584091,7 +583785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9628), 30, + ACTIONS(5611), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584122,39 +583816,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [151404] = 3, + [151625] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 18, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 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(9623), 26, + 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_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_GT_STAR, + [151705] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, anon_sym_DOT, - ACTIONS(9836), 32, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11682), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(9621), 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(9623), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584166,21 +583938,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, - anon_sym_DASH_GT, - [151462] = 3, + anon_sym_DASH_GT_STAR, + [151781] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 18, + ACTIONS(11288), 1, + anon_sym_LPAREN2, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10233), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584195,21 +583972,17 @@ 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, - ACTIONS(9894), 32, + anon_sym_DASH_GT, + ACTIONS(10231), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584221,107 +583994,55 @@ 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, - [151520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 6, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(11729), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [151578] = 10, + anon_sym_DASH_GT_STAR, + [151847] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(11127), 1, anon_sym_DOT_STAR, - STATE(5663), 1, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11415), 2, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9673), 14, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(9621), 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(9675), 27, + ACTIONS(9623), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -584349,26 +584070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_GT_STAR, - [151650] = 10, + [151925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9677), 14, + ACTIONS(8566), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584383,15 +584088,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(9679), 27, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(3546), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584403,18 +584114,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_GT_STAR, - [151722] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [151983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 20, + ACTIONS(9844), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584424,18 +584138,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(9628), 30, + ACTIONS(9846), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584443,7 +584155,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584451,6 +584165,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, @@ -584465,11 +584180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [151780] = 3, + [152041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 18, + ACTIONS(9932), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584488,7 +584202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9738), 32, + ACTIONS(9934), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584521,10 +584235,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [151838] = 3, + [152099] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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(7970), 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___attribute__, + anon_sym_RBRACK_RBRACK, + 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, + anon_sym_COLON_RBRACK, + [152165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 20, + ACTIONS(9750), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584534,18 +584307,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(9774), 30, + ACTIONS(9752), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584553,7 +584324,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584561,6 +584334,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, @@ -584575,11 +584349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [151896] = 3, + [152223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 20, + ACTIONS(9928), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584600,7 +584373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9798), 30, + ACTIONS(9930), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584631,18 +584404,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [151954] = 7, + [152281] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5645), 1, + anon_sym_EQ, + ACTIONS(5912), 1, + anon_sym_SEMI, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9154), 1, + anon_sym_LPAREN2, + ACTIONS(9160), 1, + anon_sym_LBRACK, + ACTIONS(5647), 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(5611), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5619), 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, + [152351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, - anon_sym_LBRACK, - STATE(1989), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10190), 16, + ACTIONS(9585), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584657,17 +584483,21 @@ 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(10188), 30, + ACTIONS(9587), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584679,21 +584509,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [152020] = 3, + anon_sym_DASH_GT, + [152409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 20, + ACTIONS(9771), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584703,18 +584533,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(9925), 30, + ACTIONS(9773), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584722,7 +584550,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584730,6 +584560,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, @@ -584744,11 +584575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [152078] = 3, + [152467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 18, + ACTIONS(9928), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584758,16 +584588,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(9940), 32, + ACTIONS(9930), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584775,9 +584607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584785,7 +584615,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, @@ -584800,10 +584629,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [152136] = 3, + anon_sym_GT2, + [152525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 20, + ACTIONS(11730), 6, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(11728), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [152583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9838), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584824,7 +584709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9874), 30, + ACTIONS(9840), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584855,18 +584740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [152194] = 7, + [152641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, - anon_sym_LBRACK, - STATE(1989), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10194), 16, + ACTIONS(9806), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584881,17 +584758,21 @@ 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(10192), 30, + ACTIONS(9808), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -584903,21 +584784,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [152260] = 3, + anon_sym_DASH_GT, + [152699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 20, + ACTIONS(9750), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -584938,7 +584819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9699), 30, + ACTIONS(9752), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -584969,26 +584850,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [152318] = 10, + [152757] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(5645), 1, + anon_sym_EQ, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9154), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(9160), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, + ACTIONS(5647), 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(5611), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9715), 14, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5619), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585002,39 +584907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(9717), 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, - [152390] = 3, + anon_sym_DOT, + [152827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 20, + ACTIONS(9818), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585044,18 +584924,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(9754), 30, + ACTIONS(9820), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585063,7 +584941,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -585071,6 +584951,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, @@ -585085,80 +584966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [152448] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 4, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ, - ACTIONS(9709), 22, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_DASH_GT_STAR, - [152534] = 3, + [152885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9834), 20, + ACTIONS(9864), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585168,18 +584979,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(9836), 30, + ACTIONS(9866), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585187,7 +584996,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -585195,6 +585006,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, @@ -585209,66 +585021,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [152592] = 3, + [152943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 20, + ACTIONS(8776), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9742), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(8778), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [152650] = 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, + [153001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 20, + ACTIONS(9912), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585289,7 +585100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9814), 30, + ACTIONS(9914), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585320,89 +585131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [152708] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9826), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11379), 1, - anon_sym_QMARK, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, - anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11710), 1, - anon_sym_bitor, - ACTIONS(11712), 1, - anon_sym_xor, - ACTIONS(11714), 1, - anon_sym_bitand, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11694), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9828), 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, - [152814] = 3, + [153059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9685), 20, + ACTIONS(9728), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585412,18 +585144,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(9687), 30, + ACTIONS(9730), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585431,7 +585161,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -585439,6 +585171,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, @@ -585453,24 +585186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [152872] = 9, + [153117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9681), 18, + ACTIONS(9893), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -585482,14 +585201,16 @@ 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, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(9683), 25, + ACTIONS(9895), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -585497,6 +585218,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -585508,17 +585230,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, + 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, anon_sym_COLON_RBRACK, - [152942] = 3, + [153175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 20, + ACTIONS(9810), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585539,7 +585265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9932), 30, + ACTIONS(9812), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585570,14 +585296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [153000] = 5, + [153233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9544), 1, - anon_sym_COMMA, - ACTIONS(9549), 1, - anon_sym_RBRACK, - ACTIONS(5645), 18, + ACTIONS(9712), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585596,8 +585318,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5638), 30, + ACTIONS(9714), 32, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -585605,6 +585328,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -585627,56 +585351,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153062] = 16, + [153291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + ACTIONS(9783), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 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(9709), 25, + anon_sym_GT_GT_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9785), 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, @@ -585684,21 +585391,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, - [153146] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [153349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 18, + ACTIONS(9860), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585708,16 +585419,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(9921), 32, + ACTIONS(9862), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585725,9 +585438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -585735,7 +585446,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, @@ -585750,10 +585460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153204] = 3, + anon_sym_GT2, + [153407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 18, + ACTIONS(9738), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585763,16 +585474,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(9820), 32, + ACTIONS(9740), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585780,9 +585493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -585790,7 +585501,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, @@ -585805,71 +585515,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153262] = 25, + anon_sym_GT2, + [153465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10542), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, - anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11710), 1, - anon_sym_bitor, - ACTIONS(11712), 1, - anon_sym_xor, - ACTIONS(11714), 1, - anon_sym_bitand, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + ACTIONS(9742), 20, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11694), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 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(10544), 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(9744), 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, @@ -585877,15 +585556,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, - [153364] = 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, + [153523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 20, + ACTIONS(9814), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585906,7 +585595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9770), 30, + ACTIONS(9816), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585937,10 +585626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [153422] = 3, + [153581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 18, + ACTIONS(9928), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -585959,7 +585648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9874), 32, + ACTIONS(9930), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -585992,23 +585681,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153480] = 9, + [153639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(6999), 1, + anon_sym_EQ, + ACTIONS(9524), 1, + anon_sym_COMMA, + ACTIONS(9526), 1, + anon_sym_RBRACK, + ACTIONS(7001), 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(5611), 17, + anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, - ACTIONS(10759), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(11251), 1, + 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, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9681), 14, + ACTIONS(5619), 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, + [153705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9661), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -586023,15 +585758,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(9683), 29, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9659), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -586043,20 +585784,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_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, - [153550] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [153763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 19, + ACTIONS(9864), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -586067,6 +585810,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, @@ -586075,10 +585819,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8667), 31, + ACTIONS(9866), 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, @@ -586091,27 +585839,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + 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, - 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, - [153608] = 3, + anon_sym_COLON_RBRACK, + [153821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 18, + ACTIONS(6999), 1, + anon_sym_EQ, + ACTIONS(7001), 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(5619), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -586125,12 +585883,11 @@ 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_xor, anon_sym_DOT, - ACTIONS(5638), 32, + ACTIONS(5611), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -586142,19 +585899,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, anon_sym_bitor, anon_sym_bitand, @@ -586163,54 +585907,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153666] = 14, + [153883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + ACTIONS(4928), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 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(9709), 26, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(4926), 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_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -586222,129 +585951,138 @@ 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_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, - [153746] = 5, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [153941] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6605), 1, - anon_sym_LBRACK, - ACTIONS(6598), 2, + ACTIONS(9182), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6601), 6, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(6594), 41, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9698), 18, + 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_GT, + anon_sym_LT_EQ, + anon_sym_LT, 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, + 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, - [153808] = 3, + ACTIONS(9700), 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_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_COLON_RBRACK, + [154013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 20, + ACTIONS(8786), 19, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT_GT_EQ, + anon_sym___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5638), 30, + sym_identifier, + sym_literal_suffix, + ACTIONS(8788), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [153866] = 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, + [154071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 18, + ACTIONS(9893), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -586354,16 +586092,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(9936), 32, + ACTIONS(9895), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -586371,9 +586111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -586381,7 +586119,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, @@ -586396,33 +586133,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [153924] = 12, + anon_sym_GT2, + [154129] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(11288), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(11290), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + STATE(1989), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10262), 16, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -586432,7 +586160,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(9709), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10260), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -586459,90 +586189,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_GT_STAR, - [154000] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10489), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11379), 1, - anon_sym_QMARK, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, - anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11710), 1, - anon_sym_bitor, - ACTIONS(11712), 1, - anon_sym_xor, - ACTIONS(11714), 1, - anon_sym_bitand, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11694), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10491), 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_DOT_STAR, anon_sym_DASH_GT_STAR, - [154106] = 3, + [154195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 18, + ACTIONS(5619), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -586561,7 +586215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9780), 32, + ACTIONS(5611), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -586594,142 +586248,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154164] = 3, + [154253] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 20, - aux_sym_preproc_elif_token1, + ACTIONS(11288), 1, + anon_sym_LPAREN2, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10229), 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_COLON, - 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(9940), 30, + anon_sym_DASH_GT, + ACTIONS(10227), 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_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [154222] = 25, + anon_sym_DASH_GT_STAR, + [154319] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 1, - anon_sym_EQ, - ACTIONS(10687), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(10722), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, + ACTIONS(11127), 1, anon_sym_DOT_STAR, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, - anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11710), 1, - anon_sym_bitor, - ACTIONS(11712), 1, - anon_sym_xor, - ACTIONS(11714), 1, - anon_sym_bitand, - STATE(5663), 1, + STATE(5547), 1, sym_argument_list, - STATE(5664), 1, + STATE(5669), 1, sym_subscript_argument_list, - ACTIONS(10803), 2, + ACTIONS(10766), 2, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(11415), 2, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11694), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9597), 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, - [154324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9942), 18, + ACTIONS(9698), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -586744,21 +586341,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_xor, - anon_sym_DOT, - ACTIONS(9944), 32, + ACTIONS(9700), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -586770,21 +586361,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [154382] = 3, + anon_sym_DASH_GT_STAR, + [154391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 20, + ACTIONS(9932), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -586805,7 +586393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9890), 30, + ACTIONS(9934), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -586836,10 +586424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [154440] = 3, + [154449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9630), 18, + ACTIONS(9581), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -586849,16 +586437,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(9632), 32, + ACTIONS(9583), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -586866,9 +586456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -586876,7 +586464,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, @@ -586891,10 +586478,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154498] = 3, + anon_sym_GT2, + [154507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(9928), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -586915,7 +586503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9762), 30, + ACTIONS(9930), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -586946,71 +586534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [154556] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9657), 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(9659), 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_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_COLON_RBRACK, - [154626] = 3, + [154565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 18, + ACTIONS(9901), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587020,16 +586547,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(9948), 32, + ACTIONS(9903), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587037,9 +586566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -587047,7 +586574,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, @@ -587062,18 +586588,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [154684] = 7, + anon_sym_GT2, + [154623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, - anon_sym_LBRACK, - STATE(1989), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10198), 16, + ACTIONS(9783), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587083,22 +586602,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(10196), 30, + ACTIONS(9785), 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, @@ -587106,80 +586629,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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, - [154750] = 3, + anon_sym_DASH_GT, + anon_sym_GT2, + [154681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9693), 18, + ACTIONS(8566), 20, + 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(9695), 32, + sym_identifier, + ACTIONS(3546), 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_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, - [154808] = 3, + anon_sym_COLON_RBRACK, + [154739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(9920), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587189,18 +586712,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(9762), 30, + ACTIONS(9922), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587208,7 +586729,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -587216,6 +586739,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, @@ -587230,11 +586754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [154866] = 3, + [154797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9626), 20, + ACTIONS(9779), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587255,7 +586778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9628), 30, + ACTIONS(9781), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587286,39 +586809,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [154924] = 3, + [154855] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 18, + ACTIONS(10489), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11688), 1, + anon_sym_PIPE, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 1, + anon_sym_AMP, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11702), 1, + anon_sym_bitor, + ACTIONS(11704), 1, + anon_sym_xor, + ACTIONS(11706), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11686), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11708), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, - anon_sym_DOT, - ACTIONS(9862), 32, + ACTIONS(10491), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -587330,21 +586885,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, - [154982] = 3, + anon_sym_DASH_GT_STAR, + [154957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 18, + ACTIONS(9928), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587354,16 +586899,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(9699), 32, + ACTIONS(9930), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587371,9 +586918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -587381,7 +586926,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, @@ -587396,10 +586940,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155040] = 3, + anon_sym_GT2, + [155015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(9585), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587420,7 +586965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9762), 30, + ACTIONS(9587), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587451,65 +586996,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [155098] = 3, + [155073] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 20, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9669), 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___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - ACTIONS(9948), 30, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9671), 23, 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, 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_RBRACK_RBRACK, + 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_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_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_COLON_RBRACK, + [155145] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(11651), 1, + anon_sym_LBRACE, + STATE(5994), 1, + sym_enumerator_list, + STATE(6068), 1, + sym_attribute_specifier, + ACTIONS(7387), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7389), 40, + 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_COLON, + 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__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [155156] = 3, + anon_sym_try, + anon_sym_requires, + [155213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 20, + ACTIONS(9581), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587530,7 +587142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9940), 30, + ACTIONS(9583), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587561,10 +587173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [155214] = 3, + [155271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 18, + ACTIONS(9767), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587583,7 +587195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9750), 32, + ACTIONS(9769), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587616,10 +587228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155272] = 3, + [155329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(9830), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587640,7 +587252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9762), 30, + ACTIONS(9832), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587671,38 +587283,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [155330] = 3, + [155387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9775), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, + anon_sym_DOT, + ACTIONS(9777), 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_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, + [155445] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5326), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8997), 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, - sym_identifier, - ACTIONS(9705), 30, + ACTIONS(8999), 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, @@ -587715,83 +587380,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym___attribute__, anon_sym_RBRACK_RBRACK, - anon_sym_LBRACE, 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, anon_sym_COLON_RBRACK, - [155388] = 10, + [155511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9673), 18, - aux_sym_preproc_elif_token1, + ACTIONS(9928), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_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, - sym_identifier, - ACTIONS(9675), 23, + anon_sym_DOT, + ACTIONS(9930), 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_STAR, - anon_sym_PERCENT, + anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_COLON_RBRACK, - [155460] = 3, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [155569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 19, + ACTIONS(8790), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -587811,7 +587475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(8752), 31, + ACTIONS(8792), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587843,10 +587507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [155518] = 3, + [155627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 18, + ACTIONS(9889), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587856,16 +587520,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(9766), 32, + ACTIONS(9891), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587873,9 +587539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -587883,7 +587547,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, @@ -587898,10 +587561,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155576] = 3, + anon_sym_GT2, + [155685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 18, + ACTIONS(9712), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587911,16 +587575,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(9762), 32, + ACTIONS(9714), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587928,9 +587594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -587938,7 +587602,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, @@ -587953,10 +587616,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155634] = 3, + anon_sym_GT2, + [155743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 20, + ACTIONS(9798), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -587966,18 +587630,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(9222), 30, + ACTIONS(9800), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -587985,7 +587647,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -587993,6 +587657,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, @@ -588007,11 +587672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [155692] = 3, + [155801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 18, + ACTIONS(9834), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588021,16 +587685,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(9762), 32, + ACTIONS(9836), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588038,9 +587704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -588048,7 +587712,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, @@ -588063,21 +587726,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155750] = 7, + anon_sym_GT2, + [155859] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, + ACTIONS(7274), 1, anon_sym_requires, - ACTIONS(7219), 2, + ACTIONS(7272), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5396), 2, + STATE(5370), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(7876), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -588089,7 +587753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym_COLON, anon_sym_DOT, - ACTIONS(8422), 32, + ACTIONS(7874), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -588122,120 +587786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [155816] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 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(9762), 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_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, - [155874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 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(9762), 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_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, - [155932] = 3, + [155925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 18, + ACTIONS(9783), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588254,7 +587808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9762), 32, + ACTIONS(9785), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588287,10 +587841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [155990] = 3, + [155983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(9581), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588311,7 +587865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9762), 30, + ACTIONS(9583), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588342,10 +587896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [156048] = 3, + [156041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 20, + ACTIONS(9848), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588366,7 +587920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9802), 30, + ACTIONS(9850), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588397,10 +587951,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [156106] = 3, + [156099] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 18, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(11651), 1, + anon_sym_LBRACE, + STATE(6015), 1, + sym_enumerator_list, + STATE(6119), 1, + sym_attribute_specifier, + ACTIONS(7381), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7383), 40, + 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_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [156167] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9716), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588415,21 +588042,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_xor, - anon_sym_DOT, - ACTIONS(9762), 32, + ACTIONS(9718), 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_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -588441,21 +588062,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_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [156164] = 3, + anon_sym_DASH_GT_STAR, + [156237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9900), 18, + ACTIONS(9779), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588474,7 +588094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9902), 32, + ACTIONS(9781), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588507,164 +588127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [156222] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10473), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, - anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11710), 1, - anon_sym_bitor, - ACTIONS(11712), 1, - anon_sym_xor, - ACTIONS(11714), 1, - anon_sym_bitand, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11694), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10475), 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, - [156324] = 25, + [156295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10485), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, - anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11710), 1, - anon_sym_bitor, - ACTIONS(11712), 1, - anon_sym_xor, - ACTIONS(11714), 1, - anon_sym_bitand, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11694), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10487), 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, - [156426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9911), 20, + ACTIONS(9864), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588685,7 +588151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9913), 30, + ACTIONS(9866), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588716,10 +588182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [156484] = 3, + [156353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 18, + ACTIONS(9802), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588729,16 +588195,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(9806), 32, + ACTIONS(9804), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588746,9 +588214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -588756,7 +588222,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, @@ -588771,10 +588236,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [156542] = 3, + anon_sym_GT2, + [156411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 20, + ACTIONS(9581), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588784,18 +588250,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(9738), 30, + ACTIONS(9583), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588803,7 +588267,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -588811,6 +588277,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, @@ -588825,11 +588292,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [156600] = 3, + [156469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 18, + ACTIONS(9901), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588848,7 +588314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3488), 32, + ACTIONS(9903), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588881,10 +588347,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [156658] = 3, + [156527] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6660), 1, + anon_sym_LBRACK, + ACTIONS(6653), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6656), 6, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(6649), 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, + [156589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 20, + ACTIONS(9728), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -588905,7 +588428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9762), 30, + ACTIONS(9730), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -588936,81 +588459,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [156716] = 13, + [156647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, + ACTIONS(9928), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11692), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(9707), 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(9709), 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, - [156794] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7044), 1, - anon_sym_EQ, - ACTIONS(9539), 1, + anon_sym_or, + anon_sym_and, + anon_sym_xor, + anon_sym_DOT, + ACTIONS(9930), 32, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(9541), 1, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(7046), 13, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -589024,16 +588506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(5638), 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, @@ -589042,7 +588514,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5645), 17, + [156705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9826), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589056,24 +588531,23 @@ 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_xor, anon_sym_DOT, - [156860] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_EQ, - ACTIONS(5906), 1, - anon_sym_SEMI, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, + ACTIONS(9828), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9239), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(5663), 13, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -589087,14 +588561,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(5638), 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, @@ -589103,28 +588569,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5645), 17, + [156763] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9661), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11688), 1, + anon_sym_PIPE, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 1, + anon_sym_AMP, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11702), 1, + anon_sym_bitor, + ACTIONS(11704), 1, + anon_sym_xor, + ACTIONS(11706), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11686), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11708), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 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, - [156930] = 3, + ACTIONS(9659), 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, + [156865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9800), 18, + ACTIONS(9724), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589143,7 +588668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9802), 32, + ACTIONS(9726), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -589176,10 +588701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [156988] = 3, + [156923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 20, + ACTIONS(9810), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589189,18 +588714,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(9862), 30, + ACTIONS(9812), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -589208,7 +588731,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -589216,6 +588741,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, @@ -589230,11 +588756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [157046] = 3, + [156981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9711), 18, + ACTIONS(9661), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589244,16 +588769,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(9713), 32, + ACTIONS(9659), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -589261,9 +588788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -589271,7 +588796,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, @@ -589286,70 +588810,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [157104] = 8, + anon_sym_GT2, + [157039] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9694), 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__, - ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(11651), 1, - anon_sym_LBRACE, - STATE(5975), 1, - sym_enumerator_list, - STATE(6127), 1, - sym_attribute_specifier, - ACTIONS(7381), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7383), 40, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9696), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [157172] = 3, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_COLON_RBRACK, + [157109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 19, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -589360,6 +588889,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, @@ -589368,10 +588898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8659), 31, + ACTIONS(5611), 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, @@ -589384,6 +588918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -589391,20 +588927,27 @@ 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, - [157230] = 3, + anon_sym_COLON_RBRACK, + [157169] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 20, + ACTIONS(7025), 1, + anon_sym_EQ, + ACTIONS(7027), 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(5619), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589414,18 +588957,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(9944), 30, + ACTIONS(5611), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -589433,20 +588973,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_RBRACK_RBRACK, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_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, @@ -589455,22 +588985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [157288] = 7, + [157231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 11, + ACTIONS(8761), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -589479,13 +588997,20 @@ 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(7966), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(8763), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -589498,27 +589023,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [157354] = 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, + [157289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9224), 18, + ACTIONS(9593), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589528,16 +589053,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(9222), 32, + ACTIONS(9595), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -589545,9 +589072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -589555,7 +589080,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, @@ -589570,10 +589094,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [157412] = 3, + anon_sym_GT2, + [157347] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10437), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11688), 1, + anon_sym_PIPE, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 1, + anon_sym_AMP, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11702), 1, + anon_sym_bitor, + ACTIONS(11704), 1, + anon_sym_xor, + ACTIONS(11706), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11686), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11708), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11682), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10439), 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, + [157449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 18, + ACTIONS(11448), 1, + anon_sym_LBRACK, + STATE(5935), 1, + sym_new_declarator, + ACTIONS(9547), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589588,21 +589194,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_xor, anon_sym_DOT, - ACTIONS(9774), 32, + anon_sym_DASH_GT, + ACTIONS(9549), 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_RBRACK, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -589614,25 +589218,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_and_eq, - anon_sym_or_eq, - anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [157470] = 5, + anon_sym_DASH_GT_STAR, + [157511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9654), 1, - anon_sym_LT, - STATE(3376), 1, - sym_template_argument_list, - ACTIONS(9650), 17, + ACTIONS(9746), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589642,23 +589242,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(9652), 31, + ACTIONS(9748), 30, 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_LBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, @@ -589667,7 +589269,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, @@ -589682,20 +589283,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [157532] = 9, + anon_sym_GT2, + [157569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(6971), 1, anon_sym_EQ, - ACTIONS(5800), 1, - anon_sym_SEMI, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, - anon_sym_LPAREN2, - ACTIONS(9239), 1, - anon_sym_LBRACK, - ACTIONS(5663), 13, + ACTIONS(6973), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -589709,23 +589303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(5638), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(5645), 17, + ACTIONS(5619), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589743,73 +589321,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - [157602] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10687), 1, + ACTIONS(5611), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(10759), 1, + 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, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, + 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, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(9707), 11, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [157631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8513), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(9709), 27, + 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, + ACTIONS(8508), 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_COLON, + anon_sym_RBRACK_RBRACK, + 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_GT_STAR, - [157676] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [157689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 20, + ACTIONS(9589), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589830,7 +589420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9810), 30, + ACTIONS(9591), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -589861,10 +589451,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [157734] = 3, + [157747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 20, + ACTIONS(9767), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589885,7 +589475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9832), 30, + ACTIONS(9769), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -589916,65 +589506,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [157792] = 3, + [157805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9908), 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(3488), 30, + ACTIONS(9910), 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_LBRACE, - anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [157850] = 3, + anon_sym_GT2, + [157863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 20, + ACTIONS(9791), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -589995,7 +589585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9878), 30, + ACTIONS(9793), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590026,99 +589616,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [157908] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, - anon_sym_LPAREN2, - ACTIONS(5627), 1, - anon_sym_LBRACK, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8548), 1, - anon_sym_STAR, - ACTIONS(8550), 1, - anon_sym_AMP_AMP, - ACTIONS(8552), 1, - anon_sym_AMP, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(11547), 1, - anon_sym_DOT_DOT_DOT, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4779), 1, - sym_parameter_list, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8788), 1, - sym__declarator, - STATE(8974), 1, - sym__abstract_declarator, - STATE(10167), 1, - sym_variadic_declarator, - STATE(10837), 1, - sym_ms_based_modifier, - ACTIONS(9429), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(9427), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_GT2, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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, - [158018] = 7, + [157921] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11305), 1, + ACTIONS(11288), 1, anon_sym_LPAREN2, - ACTIONS(11307), 1, + ACTIONS(11290), 1, anon_sym_LBRACK, STATE(1989), 1, sym_parameter_list, - STATE(5586), 1, + STATE(5600), 1, sym__function_declarator_seq, - ACTIONS(10186), 16, + ACTIONS(10243), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590135,7 +589644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(10184), 30, + ACTIONS(10241), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -590166,69 +589675,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [158084] = 7, + [157987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9219), 1, - anon_sym_requires, - ACTIONS(9216), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 11, + ACTIONS(9593), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(7791), 32, + ACTIONS(9595), 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___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [158150] = 3, + [158045] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 20, + ACTIONS(9637), 1, + anon_sym_LT, + STATE(3455), 1, + sym_template_argument_list, + ACTIONS(9633), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590238,25 +589747,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(9806), 30, + ACTIONS(9635), 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, @@ -590265,6 +589772,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, @@ -590279,11 +589787,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [158208] = 3, + [158107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 20, + ACTIONS(9775), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590304,7 +589811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9750), 30, + ACTIONS(9777), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590335,10 +589842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [158266] = 3, + [158165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 20, + ACTIONS(6656), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6658), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590348,25 +589858,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(9766), 30, + anon_sym_DASH_GT, + ACTIONS(6651), 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, @@ -590375,25 +589883,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, - [158324] = 3, + anon_sym_DASH_GT_STAR, + [158225] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9630), 20, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(9694), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590403,26 +589924,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_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(9696), 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, + [158295] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_LPAREN2, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10264), 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(9632), 30, + anon_sym_DASH_GT, + ACTIONS(10266), 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_LBRACK, + anon_sym_GT_EQ, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -590430,36 +590003,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_AMP_EQ, anon_sym_CARET_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, - [158382] = 7, + anon_sym_DASH_GT_STAR, + [158361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9293), 1, - anon_sym_requires, - ACTIONS(9290), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 11, + ACTIONS(9775), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -590468,13 +590031,25 @@ 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(7966), 32, + sym_identifier, + ACTIONS(9777), 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, @@ -590487,29 +590062,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, + 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, anon_sym_COLON_RBRACK, - [158448] = 5, + [158419] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10552), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11688), 1, + anon_sym_PIPE, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 1, + anon_sym_AMP, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11702), 1, + anon_sym_bitor, + ACTIONS(11704), 1, + anon_sym_xor, + ACTIONS(11706), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11686), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11708), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11682), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10554), 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, + [158521] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7056), 1, + ACTIONS(5645), 1, anon_sym_EQ, - ACTIONS(7058), 13, + ACTIONS(5760), 1, + anon_sym_SEMI, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9154), 1, + anon_sym_LPAREN2, + ACTIONS(9160), 1, + anon_sym_LBRACK, + ACTIONS(5647), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -590523,7 +590177,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(5645), 17, + ACTIONS(5611), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_bitor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(5619), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590541,30 +590211,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(5638), 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_COLON, - 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, - [158510] = 3, + [158591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9888), 18, + ACTIONS(9798), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590574,16 +590224,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(9890), 32, + ACTIONS(9800), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590591,9 +590243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -590601,7 +590251,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, @@ -590616,10 +590265,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [158568] = 3, + anon_sym_GT2, + [158649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 18, + ACTIONS(9856), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590638,7 +590288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9828), 32, + ACTIONS(9858), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590671,10 +590321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [158626] = 3, + [158707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 18, + ACTIONS(9924), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590684,16 +590334,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(9878), 32, + ACTIONS(9926), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590701,9 +590353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -590711,7 +590361,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, @@ -590726,65 +590375,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [158684] = 3, + anon_sym_GT2, + [158765] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 20, - aux_sym_preproc_elif_token1, + ACTIONS(11732), 1, + anon_sym_COMMA, + ACTIONS(11734), 1, + anon_sym_RBRACK, + ACTIONS(5619), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(8559), 30, + ACTIONS(5611), 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_COLON, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [158742] = 3, + [158827] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 18, + ACTIONS(11288), 1, + anon_sym_LPAREN2, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10225), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590799,21 +590459,17 @@ 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, - ACTIONS(9798), 32, + anon_sym_DASH_GT, + ACTIONS(10223), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -590825,78 +590481,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, - anon_sym_DASH_GT, - [158800] = 5, + anon_sym_DASH_GT_STAR, + [158893] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7044), 1, - anon_sym_EQ, - ACTIONS(7046), 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(5645), 17, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9716), 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___attribute__, + anon_sym___attribute, anon_sym_or, anon_sym_and, + anon_sym_bitor, anon_sym_xor, - anon_sym_DOT, - ACTIONS(5638), 19, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9718), 25, 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, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, 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, - [158862] = 3, + anon_sym_COLON_RBRACK, + [158963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9689), 20, + ACTIONS(9885), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -590917,7 +590577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9691), 30, + ACTIONS(9887), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -590948,21 +590608,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [158920] = 7, + [159021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10169), 1, - anon_sym_requires, - ACTIONS(10166), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(9653), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -590971,13 +590621,25 @@ 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(8422), 32, + sym_identifier, + ACTIONS(9655), 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, @@ -590990,86 +590652,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, 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, anon_sym_COLON_RBRACK, - [158986] = 7, + [159079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11736), 1, - anon_sym_requires, - ACTIONS(11733), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5300), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 11, + ACTIONS(9589), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(8907), 32, + ACTIONS(9591), 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___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [159052] = 3, + [159137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 18, + ACTIONS(9822), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591079,16 +590731,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(9882), 32, + ACTIONS(9824), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -591096,9 +590750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -591106,7 +590758,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, @@ -591121,10 +590772,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159110] = 3, + anon_sym_GT2, + [159195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 20, + ACTIONS(9844), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591145,7 +590797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9882), 30, + ACTIONS(9846), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -591176,128 +590828,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [159168] = 7, + [159253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11742), 1, - anon_sym_requires, - ACTIONS(11739), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5352), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 11, + ACTIONS(9872), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(8915), 32, + ACTIONS(9874), 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___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [159234] = 7, + [159311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 11, + ACTIONS(9690), 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_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_xor, anon_sym_DOT, - ACTIONS(7791), 32, + ACTIONS(9692), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_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_COLON_RBRACK, - [159300] = 3, + anon_sym_GT2, + [159369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 18, + ACTIONS(9814), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591316,7 +590960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9810), 32, + ACTIONS(9816), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -591349,26 +590993,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159358] = 10, + [159427] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(10687), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5659), 1, anon_sym_LPAREN2, - ACTIONS(10759), 1, + ACTIONS(5669), 1, anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9707), 14, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8555), 1, + anon_sym_STAR, + ACTIONS(8557), 1, + anon_sym_AMP_AMP, + ACTIONS(8559), 1, + anon_sym_AMP, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(11541), 1, + anon_sym_DOT_DOT_DOT, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4787), 1, + sym_parameter_list, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8760), 1, + sym__declarator, + STATE(8964), 1, + sym__abstract_declarator, + STATE(10009), 1, + sym_variadic_declarator, + STATE(10831), 1, + sym_ms_based_modifier, + ACTIONS(9279), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9281), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_EQ, + anon_sym_GT2, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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, + [159537] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11288), 1, + anon_sym_LPAREN2, + ACTIONS(11290), 1, + anon_sym_LBRACK, + STATE(1989), 1, + sym_parameter_list, + STATE(5600), 1, + sym__function_declarator_seq, + ACTIONS(10178), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591383,7 +591100,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(9709), 27, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(10176), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -591410,11 +591129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [159430] = 3, + [159603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 18, + ACTIONS(9720), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591424,16 +591146,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(9832), 32, + ACTIONS(9722), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -591441,9 +591165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -591451,7 +591173,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, @@ -591466,13 +591187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159488] = 4, + anon_sym_GT2, + [159661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 16, + ACTIONS(9912), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591487,12 +591206,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(6596), 32, + ACTIONS(9914), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -591500,6 +591220,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -591511,21 +591232,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [159548] = 3, + anon_sym_DASH_GT, + [159719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 20, + ACTIONS(9763), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591546,7 +591267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9866), 30, + ACTIONS(9765), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -591577,10 +591298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [159606] = 3, + [159777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 20, + ACTIONS(9818), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591601,7 +591322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9886), 30, + ACTIONS(9820), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -591632,72 +591353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [159664] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9715), 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(9717), 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_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_COLON_RBRACK, - [159736] = 3, + [159835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9864), 18, + ACTIONS(9806), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591707,16 +591366,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(9866), 32, + ACTIONS(9808), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -591724,9 +591385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -591734,7 +591393,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, @@ -591749,100 +591407,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159794] = 4, + anon_sym_GT2, + [159893] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 20, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(10459), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11397), 1, + anon_sym_QMARK, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11688), 1, anon_sym_PIPE, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 1, 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, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11702), 1, anon_sym_bitor, + ACTIONS(11704), 1, anon_sym_xor, + ACTIONS(11706), 1, anon_sym_bitand, - anon_sym_not_eq, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, anon_sym_DOT, - sym_identifier, - ACTIONS(5638), 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_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [159854] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11305), 1, - anon_sym_LPAREN2, - ACTIONS(11307), 1, - anon_sym_LBRACK, - STATE(1989), 1, - sym_parameter_list, - STATE(5586), 1, - sym__function_declarator_seq, - ACTIONS(10210), 16, + ACTIONS(11684), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(11686), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11708), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(10208), 30, - anon_sym_DOT_DOT_DOT, + ACTIONS(10463), 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, @@ -591853,21 +591486,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [159920] = 3, + [159999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 18, + ACTIONS(5619), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591877,16 +591500,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(9870), 32, + ACTIONS(5611), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -591894,9 +591519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -591904,7 +591527,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, @@ -591919,65 +591541,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [159978] = 3, + anon_sym_GT2, + [160057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 20, - aux_sym_preproc_elif_token1, + ACTIONS(9581), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, - anon_sym_bitor, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9798), 30, + ACTIONS(9583), 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_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, - anon_sym_COLON_RBRACK, - [160036] = 3, + [160115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 20, + ACTIONS(9868), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -591998,7 +591621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(3488), 30, + ACTIONS(9870), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592029,10 +591652,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [160094] = 3, + [160173] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10471), 1, + anon_sym_EQ, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + ACTIONS(10722), 1, + anon_sym_LBRACK, + ACTIONS(11127), 1, + anon_sym_DOT_STAR, + ACTIONS(11353), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(11397), 1, + anon_sym_QMARK, + ACTIONS(11419), 1, + anon_sym_LT_EQ_GT, + ACTIONS(11688), 1, + anon_sym_PIPE, + ACTIONS(11690), 1, + anon_sym_CARET, + ACTIONS(11692), 1, + anon_sym_AMP, + ACTIONS(11698), 1, + anon_sym_GT_EQ, + ACTIONS(11702), 1, + anon_sym_bitor, + ACTIONS(11704), 1, + anon_sym_xor, + ACTIONS(11706), 1, + anon_sym_bitand, + STATE(5547), 1, + sym_argument_list, + STATE(5669), 1, + sym_subscript_argument_list, + ACTIONS(10766), 2, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(11433), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11684), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11686), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(11700), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(11708), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11682), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(11694), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(11696), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10473), 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, + [160279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 18, + ACTIONS(9852), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -592042,16 +591744,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(9917), 32, + ACTIONS(9854), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592059,9 +591763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -592069,7 +591771,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, @@ -592084,10 +591785,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [160152] = 3, + anon_sym_GT2, + [160337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 20, + ACTIONS(9787), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -592097,18 +591799,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(9794), 30, + ACTIONS(9789), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592116,7 +591816,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -592124,6 +591826,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, @@ -592138,11 +591841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [160210] = 3, + [160395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 18, + ACTIONS(9581), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -592161,7 +591863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9790), 32, + ACTIONS(9583), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592194,10 +591896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [160268] = 3, + [160453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 20, + ACTIONS(9783), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -592207,18 +591909,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(5638), 30, + ACTIONS(9785), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592226,7 +591926,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -592234,6 +591936,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, @@ -592248,90 +591951,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [160326] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10477), 1, - anon_sym_EQ, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(11251), 1, - anon_sym_DOT_STAR, - ACTIONS(11335), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(11379), 1, - anon_sym_QMARK, - ACTIONS(11401), 1, - anon_sym_LT_EQ_GT, - ACTIONS(11696), 1, - anon_sym_PIPE, - ACTIONS(11698), 1, - anon_sym_CARET, - ACTIONS(11700), 1, - anon_sym_AMP, - ACTIONS(11706), 1, - anon_sym_GT_EQ, - ACTIONS(11710), 1, - anon_sym_bitor, - ACTIONS(11712), 1, - anon_sym_xor, - ACTIONS(11714), 1, - anon_sym_bitand, - STATE(5663), 1, - sym_argument_list, - STATE(5664), 1, - sym_subscript_argument_list, - ACTIONS(10803), 2, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(11415), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(11690), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(11694), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(11708), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(11720), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11692), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(11702), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(11704), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10479), 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, - [160432] = 3, + [160511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9900), 20, + ACTIONS(9908), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -592341,18 +591964,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(9902), 30, + ACTIONS(9910), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592360,7 +591981,9 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -592368,6 +591991,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, @@ -592382,70 +592006,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [160490] = 7, + [160569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5300), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 11, + ACTIONS(9928), 18, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_xor, anon_sym_DOT, - ACTIONS(8907), 32, + ACTIONS(9930), 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___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_and_eq, + anon_sym_or_eq, + anon_sym_xor_eq, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, anon_sym_bitor, - anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [160556] = 3, + [160627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 20, + ACTIONS(9787), 20, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -592466,7 +592085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - ACTIONS(9921), 30, + ACTIONS(9789), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -592497,26 +592116,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [160614] = 10, + [160685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9677), 18, + ACTIONS(9860), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -592528,14 +592131,16 @@ 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, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, sym_identifier, - ACTIONS(9679), 23, + ACTIONS(9862), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -592543,6 +592148,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -592556,124 +592162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_COLON_RBRACK, - [160686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8564), 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(8559), 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_COLON_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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [160743] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6078), 1, - sym_attribute_specifier, - ACTIONS(7397), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7399), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [160806] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [160742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 20, + ACTIONS(9834), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -592694,7 +592194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9921), 29, + ACTIONS(9836), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -592724,92 +592224,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [160863] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6080), 1, - sym_attribute_specifier, - ACTIONS(7505), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7507), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [160926] = 6, + [160799] = 3, ACTIONS(3), 1, sym_comment, - STATE(5659), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(6987), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(6993), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(9116), 18, + ACTIONS(9767), 20, + 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_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -592817,10 +592247,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(9118), 19, + sym_identifier, + ACTIONS(9769), 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, @@ -592829,7 +592264,12 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -592837,56 +592277,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [160989] = 21, + anon_sym_COLON_RBRACK, + [160856] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(11180), 1, + ACTIONS(11179), 1, sym_ms_restrict_modifier, - ACTIONS(11186), 1, + ACTIONS(11185), 1, anon_sym_LBRACK, - ACTIONS(11745), 1, + ACTIONS(11737), 1, anon_sym_STAR, - ACTIONS(11747), 1, + ACTIONS(11739), 1, anon_sym_AMP_AMP, - ACTIONS(11749), 1, + ACTIONS(11741), 1, anon_sym_AMP, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(4613), 1, + STATE(4608), 1, sym_parameter_list, - STATE(6387), 1, + STATE(6374), 1, sym_ms_unaligned_ptr_modifier, - STATE(8314), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(8704), 1, + STATE(8703), 1, sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11182), 2, + ACTIONS(11181), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11184), 2, + ACTIONS(11183), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6210), 2, + STATE(6225), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6464), 2, + STATE(6472), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6823), 10, + ACTIONS(6843), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -592897,7 +592337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -592910,12 +592350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [161082] = 4, + [160949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11432), 1, - sym_literal_suffix, - ACTIONS(5645), 22, + ACTIONS(9653), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -592930,120 +592368,248 @@ 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(9655), 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_DOT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [161006] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(9221), 1, anon_sym_DASH_GT, - ACTIONS(5638), 26, + STATE(5793), 1, + sym_trailing_return_type, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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_COLON, + anon_sym_DOT, + ACTIONS(7874), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_RBRACK_RBRACK, + 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_COLON_RBRACK, + [161075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9763), 20, + 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, + ACTIONS(9765), 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_RBRACK_RBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [161141] = 4, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [161132] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 16, + ACTIONS(11743), 1, + anon_sym_DASH_GT, + ACTIONS(11749), 1, + anon_sym_requires, + STATE(6096), 1, + sym_trailing_return_type, + ACTIONS(11746), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5464), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(5638), 32, + sym_identifier, + ACTIONS(8989), 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_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - 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, - [161200] = 8, + [161201] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(8569), 1, + ACTIONS(5649), 1, + sym_auto, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(10325), 1, + anon_sym_LT, + ACTIONS(11752), 1, + anon_sym_LBRACK, + STATE(4249), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4918), 1, + sym_decltype_auto, + STATE(6494), 1, + sym_template_argument_list, + ACTIONS(5634), 2, anon_sym_LPAREN2, - STATE(5569), 1, - sym_argument_list, - STATE(6057), 1, - sym_initializer_list, - ACTIONS(7225), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_TILDE, + anon_sym_LBRACK_LBRACK, + ACTIONS(5617), 3, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 35, + anon_sym_SEMI, + ACTIONS(5639), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5609), 32, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -593052,7 +592618,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___attribute, anon_sym___declspec, anon_sym___based, - anon_sym_LBRACK, anon_sym_static, anon_sym_register, anon_sym_inline, @@ -593076,13 +592641,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_alignas, anon_sym__Alignas, sym_identifier, - anon_sym_decltype, - anon_sym_template, anon_sym_operator, - [161267] = 3, + [161278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 20, + ACTIONS(9920), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593103,7 +592666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9794), 29, + ACTIONS(9922), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -593133,22 +592696,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [161324] = 6, + [161335] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - STATE(6070), 1, + STATE(6114), 1, sym_attribute_specifier, - ACTIONS(7531), 5, + ACTIONS(7491), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7533), 41, + ACTIONS(7493), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [161398] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + STATE(6025), 1, + sym_attribute_specifier, + ACTIONS(7495), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7497), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -593190,10 +592810,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [161387] = 3, + [161461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 20, + ACTIONS(9822), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593214,7 +592834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9932), 29, + ACTIONS(9824), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -593244,10 +592864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [161444] = 3, + [161518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 20, + ACTIONS(9872), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593268,7 +592888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9820), 29, + ACTIONS(9874), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -593298,82 +592918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [161501] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5661), 1, - anon_sym_EQ, - ACTIONS(5906), 1, - anon_sym_SEMI, - ACTIONS(5663), 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(5638), 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(5645), 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, - [161564] = 9, + [161575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(9202), 1, - anon_sym_DASH_GT, - STATE(6121), 1, - sym_trailing_return_type, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 17, + ACTIONS(9724), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593383,6 +592931,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, @@ -593391,9 +592942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7791), 23, + ACTIONS(9726), 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, @@ -593409,31 +592961,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - [161633] = 9, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [161632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(9352), 1, - anon_sym_DASH_GT, - STATE(6123), 1, - sym_trailing_return_type, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 17, + ACTIONS(9912), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593443,6 +592985,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, @@ -593451,9 +592996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7966), 23, + ACTIONS(9914), 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, @@ -593469,31 +593015,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - [161702] = 9, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [161689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(10091), 1, - anon_sym_DASH_GT, - STATE(6126), 1, - sym_trailing_return_type, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 17, + ACTIONS(4928), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593503,6 +593039,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, @@ -593511,9 +593050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8422), 23, + ACTIONS(4926), 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, @@ -593529,31 +593069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - [161771] = 9, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [161746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(11751), 1, - anon_sym_DASH_GT, - STATE(6128), 1, - sym_trailing_return_type, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5300), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 17, + ACTIONS(9661), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593563,6 +593093,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, @@ -593571,9 +593104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(8907), 23, + ACTIONS(9659), 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, @@ -593589,17 +593123,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - [161840] = 3, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [161803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 20, - aux_sym_preproc_elif_token1, + ACTIONS(8790), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593610,7 +593148,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -593618,15 +593155,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9874), 29, + sym_literal_suffix, + ACTIONS(8792), 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, @@ -593639,8 +593171,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -593648,68 +593178,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [161897] = 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, + [161860] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6032), 1, - sym_attribute_specifier, - ACTIONS(7551), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7553), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - 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__, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(9169), 1, + anon_sym_DASH_GT, + STATE(6057), 1, + sym_trailing_return_type, + ACTIONS(7177), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [161960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9804), 20, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593719,9 +593216,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, @@ -593730,10 +593224,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9806), 29, + ACTIONS(7874), 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, @@ -593749,21 +593242,31 @@ 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [162017] = 3, + [161929] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 20, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(9320), 1, + anon_sym_DASH_GT, + STATE(6073), 1, + sym_trailing_return_type, + ACTIONS(7177), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593773,9 +593276,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, @@ -593784,10 +593284,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9878), 29, + ACTIONS(7970), 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, @@ -593803,21 +593302,31 @@ 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [162074] = 3, + [161998] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 20, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(10096), 1, + anon_sym_DASH_GT, + STATE(6076), 1, + sym_trailing_return_type, + ACTIONS(7177), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593827,9 +593336,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, @@ -593838,10 +593344,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9882), 29, + ACTIONS(8402), 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, @@ -593857,21 +593362,31 @@ 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [162131] = 3, + [162067] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 20, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(11743), 1, + anon_sym_DASH_GT, + STATE(6078), 1, + sym_trailing_return_type, + ACTIONS(7177), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5464), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -593881,9 +593396,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, @@ -593892,10 +593404,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9886), 29, + ACTIONS(8989), 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, @@ -593911,22 +593422,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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [162188] = 3, + [162136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 20, - aux_sym_preproc_elif_token1, + ACTIONS(8761), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -593937,7 +593442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -593945,15 +593449,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9770), 29, + sym_literal_suffix, + ACTIONS(8763), 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, @@ -593966,8 +593465,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -593975,71 +593472,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [162245] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(9287), 1, - anon_sym_DASH_GT, - STATE(5857), 1, - sym_trailing_return_type, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 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_COLON, - anon_sym_DOT, - ACTIONS(7966), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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_RBRACK_RBRACK, - 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_COLON_RBRACK, - [162314] = 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, + [162193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 20, + ACTIONS(9750), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -594060,7 +593506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9738), 29, + ACTIONS(9752), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -594090,55 +593536,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162371] = 13, + [162250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(5665), 1, - sym_auto, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(10320), 1, - anon_sym_LT, - ACTIONS(11754), 1, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + STATE(6111), 1, + sym_attribute_specifier, + ACTIONS(7511), 5, + anon_sym_AMP, anon_sym_LBRACK, - STATE(4270), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4991), 1, - sym_decltype_auto, - STATE(6491), 1, - sym_template_argument_list, - ACTIONS(5675), 2, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7513), 41, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(5643), 3, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(5659), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5636), 32, - anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, + 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, @@ -594152,72 +593586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_operator, - [162448] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(10131), 1, - anon_sym_DASH_GT, - STATE(5932), 1, - sym_trailing_return_type, - ACTIONS(7219), 2, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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_COLON, - anon_sym_DOT, - ACTIONS(8422), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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_RBRACK_RBRACK, - 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_COLON_RBRACK, - [162517] = 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [162313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 20, + ACTIONS(9848), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -594238,7 +593617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9824), 29, + ACTIONS(9850), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -594268,10 +593647,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162574] = 3, + [162370] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + STATE(6102), 1, + sym_attribute_specifier, + ACTIONS(7527), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7529), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [162433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 20, + ACTIONS(9818), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -594292,7 +593728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9597), 29, + ACTIONS(9820), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -594322,10 +593758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162631] = 3, + [162490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 20, + ACTIONS(9844), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -594346,7 +593782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9898), 29, + ACTIONS(9846), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -594376,25 +593812,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162688] = 7, + [162547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11756), 1, - anon_sym_delete, - ACTIONS(11758), 1, - anon_sym_new, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 16, + ACTIONS(9798), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -594403,7 +593825,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -594411,11 +593835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 22, + sym_identifier, + ACTIONS(9800), 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, @@ -594426,7 +593856,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, @@ -594434,14 +593866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162753] = 6, + [162604] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5645), 1, anon_sym_EQ, - ACTIONS(5796), 1, + ACTIONS(5906), 1, anon_sym_SEMI, - ACTIONS(5663), 13, + ACTIONS(5647), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -594455,7 +593887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(5638), 17, + ACTIONS(5611), 17, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -594473,7 +593905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5645), 17, + ACTIONS(5619), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -594491,10 +593923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - [162816] = 3, + [162667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 20, + ACTIONS(9734), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -594515,7 +593947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9862), 29, + ACTIONS(9736), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -594545,20 +593977,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162873] = 8, + [162724] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, + ACTIONS(3096), 1, anon_sym_LBRACE, - ACTIONS(7227), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(8569), 1, + ACTIONS(8563), 1, anon_sym_LPAREN2, - STATE(5537), 1, + STATE(5560), 1, sym_argument_list, - STATE(6093), 1, + STATE(6047), 1, sym_initializer_list, - ACTIONS(7225), 9, + ACTIONS(7248), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -594568,7 +594000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_EQ, anon_sym_LBRACK_COLON, - ACTIONS(7223), 35, + ACTIONS(7246), 35, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -594604,10 +594036,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_decltype, anon_sym_template, anon_sym_operator, - [162940] = 3, + [162791] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + STATE(6045), 1, + sym_attribute_specifier, + ACTIONS(7531), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7533), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [162854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 20, + ACTIONS(5619), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -594628,7 +594117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9754), 29, + ACTIONS(5611), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -594658,46 +594147,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [162997] = 12, + [162911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, - anon_sym_LPAREN2, - ACTIONS(8098), 1, - anon_sym_LBRACK, - ACTIONS(8385), 1, - anon_sym_STAR, - ACTIONS(8387), 1, - anon_sym_AMP_AMP, - ACTIONS(8389), 1, - anon_sym_AMP, - STATE(2275), 1, - sym_parameter_list, - STATE(5348), 1, - sym__function_declarator_seq, - STATE(6344), 1, - sym__abstract_declarator, - STATE(5347), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 9, + ACTIONS(9810), 20, + 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, - ACTIONS(9427), 27, + sym_identifier, + ACTIONS(9812), 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, @@ -594705,57 +594191,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [163072] = 4, + anon_sym_COLON_RBRACK, + [162968] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7223), 7, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7225), 41, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(11757), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(11754), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(6919), 12, + 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_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_static, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, + anon_sym_GT2, + ACTIONS(6917), 29, + 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, @@ -594769,88 +594253,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, + sym_primitive_type, + sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_try, anon_sym_requires, - [163131] = 8, + [163033] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6576), 1, - anon_sym_LBRACK, - ACTIONS(10647), 1, + ACTIONS(9221), 1, + anon_sym_DASH_GT, + ACTIONS(9227), 1, + anon_sym_requires, + STATE(5770), 1, + sym_trailing_return_type, + ACTIONS(9224), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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, - STATE(6086), 1, - sym_template_argument_list, - ACTIONS(6569), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6572), 7, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(7874), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(6565), 35, + anon_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_RBRACK_RBRACK, + 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_COLON_RBRACK, + [163102] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8078), 1, + anon_sym_LPAREN2, + ACTIONS(8092), 1, + anon_sym_LBRACK, + ACTIONS(8453), 1, + anon_sym_STAR, + ACTIONS(8455), 1, + anon_sym_AMP_AMP, + ACTIONS(8457), 1, anon_sym_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + STATE(2277), 1, + sym_parameter_list, + STATE(5527), 1, + sym__function_declarator_seq, + STATE(6352), 1, + sym__abstract_declarator, + STATE(5524), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 9, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, 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, - [163198] = 6, + anon_sym_DOT, + ACTIONS(9281), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_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_requires, + [163177] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(10081), 1, + anon_sym_DASH_GT, + STATE(5720), 1, + sym_trailing_return_type, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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_COLON, + anon_sym_DOT, + ACTIONS(8402), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_RBRACK_RBRACK, + 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_COLON_RBRACK, + [163246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, STATE(6115), 1, sym_attribute_specifier, - ACTIONS(7521), 5, + ACTIONS(7519), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7523), 41, + ACTIONS(7521), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -594892,10 +594499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [163261] = 3, + [163309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 20, + ACTIONS(9856), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -594916,7 +594523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9742), 29, + ACTIONS(9858), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -594946,22 +594553,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163318] = 3, + [163366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 20, - aux_sym_preproc_elif_token1, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + STATE(6125), 1, + sym_attribute_specifier, + ACTIONS(7515), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7517), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [163429] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11565), 1, + sym_literal_suffix, + ACTIONS(5619), 22, anon_sym_DASH, anon_sym_PLUS, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -594969,69 +594637,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9858), 29, + anon_sym_DASH_GT, + ACTIONS(5611), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [163375] = 3, + anon_sym_DASH_GT_STAR, + [163488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 20, - aux_sym_preproc_elif_token1, + ACTIONS(8513), 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_COLON, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_DASH_GT, + ACTIONS(8508), 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_COLON_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_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_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, + [163545] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9341), 1, + anon_sym_DASH_GT, + ACTIONS(9347), 1, + anon_sym_requires, + STATE(5775), 1, + sym_trailing_return_type, + ACTIONS(9344), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(9758), 29, + ACTIONS(7970), 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, @@ -595049,105 +594769,57 @@ 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, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163432] = 6, + [163614] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6089), 1, - sym_attribute_specifier, - ACTIONS(7547), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7549), 41, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8078), 1, anon_sym_LPAREN2, + ACTIONS(8092), 1, + anon_sym_LBRACK, + ACTIONS(8424), 1, anon_sym_STAR, + ACTIONS(8426), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [163495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9778), 20, - aux_sym_preproc_elif_token1, + ACTIONS(8428), 1, + anon_sym_AMP, + STATE(2077), 1, + sym_parameter_list, + STATE(5527), 1, + sym__function_declarator_seq, + STATE(6316), 1, + sym__abstract_declarator, + STATE(5524), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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___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, - ACTIONS(9780), 29, + ACTIONS(9281), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -595157,18 +594829,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_RBRACK_RBRACK, 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, anon_sym_COLON_RBRACK, - [163552] = 3, + [163689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 20, + ACTIONS(9838), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -595189,7 +594866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9894), 29, + ACTIONS(9840), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -595219,10 +594896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163609] = 3, + [163746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 20, + ACTIONS(9897), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -595243,7 +594920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9774), 29, + ACTIONS(9899), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -595273,26 +594950,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163666] = 9, + [163803] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11751), 1, + ACTIONS(10081), 1, anon_sym_DASH_GT, - ACTIONS(11763), 1, + ACTIONS(10115), 1, anon_sym_requires, - STATE(6124), 1, + STATE(5776), 1, sym_trailing_return_type, - ACTIONS(11760), 2, + ACTIONS(10112), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5300), 2, + STATE(5512), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8404), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595301,21 +594977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(8907), 23, + ACTIONS(8402), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -595327,16 +594994,28 @@ 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_RBRACK_RBRACK, + 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, - [163735] = 3, + anon_sym_COLON_RBRACK, + [163872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 16, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -595353,7 +595032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9705), 33, + ACTIONS(5611), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -595363,7 +595042,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, @@ -595387,10 +595065,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [163792] = 3, + [163931] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11719), 1, + anon_sym_requires, + ACTIONS(11760), 1, + anon_sym_DASH_GT, + STATE(5780), 1, + sym_trailing_return_type, + ACTIONS(11716), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5464), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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_COLON, + anon_sym_DOT, + ACTIONS(8989), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_RBRACK_RBRACK, + 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_COLON_RBRACK, + [164000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 20, + ACTIONS(9885), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -595411,7 +595149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9790), 29, + ACTIONS(9887), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -595441,10 +595179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163849] = 3, + [164057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 20, + ACTIONS(9901), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -595465,7 +595203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9925), 29, + ACTIONS(9903), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -595495,10 +595233,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [163906] = 3, + [164114] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(5629), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7003), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7009), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9107), 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(9109), 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_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, + [164177] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(9341), 1, + anon_sym_DASH_GT, + STATE(5769), 1, + sym_trailing_return_type, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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_COLON, + anon_sym_DOT, + ACTIONS(7970), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_RBRACK_RBRACK, + 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_COLON_RBRACK, + [164246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 18, + ACTIONS(8776), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595517,7 +595372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8667), 31, + ACTIONS(8778), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -595549,10 +595404,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [163963] = 3, + [164303] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + STATE(6067), 1, + sym_attribute_specifier, + ACTIONS(7505), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7507), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [164366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 20, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7246), 7, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7248), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [164425] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9908), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -595573,7 +595540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9944), 29, + ACTIONS(9910), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -595603,22 +595570,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [164020] = 6, + [164482] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7479), 1, + anon_sym_SEMI, + ACTIONS(7248), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7246), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [164543] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3096), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(8563), 1, + anon_sym_LPAREN2, + STATE(5602), 1, + sym_argument_list, + STATE(6061), 1, + sym_initializer_list, + ACTIONS(7248), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(7246), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, + anon_sym_operator, + [164610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - STATE(6099), 1, + STATE(6086), 1, sym_attribute_specifier, - ACTIONS(7423), 5, + ACTIONS(7523), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7425), 41, + ACTIONS(7525), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -595660,10 +595742,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [164083] = 3, + [164673] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 20, + ACTIONS(9169), 1, + anon_sym_DASH_GT, + ACTIONS(9175), 1, + anon_sym_requires, + STATE(6084), 1, + sym_trailing_return_type, + ACTIONS(9172), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -595673,9 +595770,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, @@ -595684,10 +595778,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(4928), 29, + ACTIONS(7874), 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, @@ -595703,22 +595796,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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [164140] = 3, + [164742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 20, - aux_sym_preproc_elif_token1, + ACTIONS(8786), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595729,7 +595816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -595737,15 +595823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - ACTIONS(9814), 29, + sym_literal_suffix, + ACTIONS(8788), 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, @@ -595758,8 +595839,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -595767,11 +595846,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [164197] = 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, + [164799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 20, + ACTIONS(9814), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -595792,7 +595880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9828), 29, + ACTIONS(9816), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -595822,43 +595910,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [164254] = 6, + [164856] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6102), 1, - sym_attribute_specifier, - ACTIONS(7431), 5, - anon_sym_AMP, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(6570), 1, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7433), 41, - anon_sym_COMMA, + ACTIONS(10562), 1, + anon_sym_LT, + STATE(6069), 1, + sym_template_argument_list, + ACTIONS(6563), 3, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6566), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6559), 35, + anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + anon_sym___attribute__, + anon_sym___attribute, anon_sym___declspec, - anon_sym_LBRACE, + anon_sym___based, 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, @@ -595872,32 +595964,31 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [164317] = 9, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [164923] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(11766), 1, + ACTIONS(9320), 1, anon_sym_DASH_GT, - STATE(5742), 1, + ACTIONS(9326), 1, + anon_sym_requires, + STATE(6104), 1, sym_trailing_return_type, - ACTIONS(7219), 2, + ACTIONS(9323), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5300), 2, + STATE(5296), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 10, + ACTIONS(7972), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -595906,12 +595997,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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(8907), 30, + sym_identifier, + ACTIONS(7970), 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, @@ -595923,99 +596023,17 @@ 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_RBRACK_RBRACK, - 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_COLON_RBRACK, - [164386] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(11772), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(11769), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(6944), 12, - 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_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(6942), 29, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [164451] = 6, + [164992] = 3, ACTIONS(3), 1, sym_comment, - STATE(5580), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(7048), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(7054), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - ACTIONS(9116), 16, + ACTIONS(9868), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -596024,6 +596042,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, @@ -596031,10 +596052,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(9118), 21, + sym_identifier, + ACTIONS(9870), 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, @@ -596046,18 +596072,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - [164514] = 3, + anon_sym_COLON_RBRACK, + [165049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 20, + ACTIONS(9738), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -596078,7 +596107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9810), 29, + ACTIONS(9740), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -596108,10 +596137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [164571] = 3, + [165106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 20, + ACTIONS(9889), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -596132,7 +596161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9948), 29, + ACTIONS(9891), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -596162,139 +596191,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [164628] = 6, + [165163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6059), 1, - sym_attribute_specifier, - ACTIONS(7435), 5, - anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7437), 41, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(10556), 23, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [164691] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - STATE(6117), 1, - sym_attribute_specifier, - ACTIONS(7453), 5, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7455), 41, + 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(10558), 26, + 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_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [164754] = 9, + 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, + [165220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9211), 1, - anon_sym_DASH_GT, - ACTIONS(9219), 1, - anon_sym_requires, - STATE(5898), 1, - sym_trailing_return_type, - ACTIONS(9216), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 10, + ACTIONS(9826), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -596303,12 +596258,25 @@ 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(7791), 30, + sym_identifier, + ACTIONS(9828), 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, @@ -596326,50 +596294,27 @@ 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, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [164823] = 12, + [165277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, - anon_sym_LPAREN2, - ACTIONS(8098), 1, - anon_sym_LBRACK, - ACTIONS(8416), 1, - anon_sym_STAR, - ACTIONS(8418), 1, - anon_sym_AMP_AMP, - ACTIONS(8420), 1, - anon_sym_AMP, - STATE(2080), 1, - sym_parameter_list, - STATE(5348), 1, - sym__function_declarator_seq, - STATE(6334), 1, - sym__abstract_declarator, - STATE(5347), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 16, + ACTIONS(9742), 20, 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, @@ -596378,35 +596323,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9427), 20, + ACTIONS(9744), 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_RBRACK_RBRACK, + 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, - [164898] = 6, + anon_sym_COLON_RBRACK, + [165334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5661), 1, + ACTIONS(5645), 1, anon_sym_EQ, - ACTIONS(5800), 1, + ACTIONS(5912), 1, anon_sym_SEMI, - ACTIONS(5663), 13, + ACTIONS(5647), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -596420,7 +596374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and_eq, anon_sym_or_eq, anon_sym_xor_eq, - ACTIONS(5638), 17, + ACTIONS(5611), 17, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_PIPE_PIPE, @@ -596438,7 +596392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(5645), 17, + ACTIONS(5619), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -596456,24 +596410,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_xor, anon_sym_DOT, - [164961] = 3, + [165397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 23, + ACTIONS(9830), 20, + 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, @@ -596481,51 +596433,53 @@ 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(10564), 26, + sym_identifier, + ACTIONS(9832), 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_RBRACK_RBRACK, + 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [165018] = 6, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [165454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - STATE(6055), 1, + STATE(6032), 1, sym_attribute_specifier, - ACTIONS(7413), 5, + ACTIONS(7501), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7415), 41, + ACTIONS(7503), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596567,25 +596521,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [165081] = 9, + [165517] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9287), 1, + ACTIONS(10096), 1, anon_sym_DASH_GT, - ACTIONS(9293), 1, + ACTIONS(10102), 1, anon_sym_requires, - STATE(5907), 1, + STATE(6037), 1, sym_trailing_return_type, - ACTIONS(9290), 2, + ACTIONS(10099), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5532), 2, + STATE(5512), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 10, + ACTIONS(8404), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -596594,12 +596549,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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(7966), 30, + sym_identifier, + ACTIONS(8402), 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, @@ -596611,27 +596575,89 @@ 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_RBRACK_RBRACK, - 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, + [165586] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11763), 1, + anon_sym_delete, + ACTIONS(11765), 1, + anon_sym_new, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9661), 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_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(9659), 22, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165150] = 3, + [165651] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 20, - aux_sym_preproc_elif_token1, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(11760), 1, + anon_sym_DASH_GT, + STATE(5848), 1, + sym_trailing_return_type, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5464), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -596640,25 +596666,12 @@ 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, - sym_identifier, - ACTIONS(9870), 29, + ACTIONS(8989), 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, @@ -596676,15 +596689,20 @@ 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, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165207] = 3, + [165720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 7, + ACTIONS(7535), 7, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, @@ -596692,7 +596710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7475), 42, + ACTIONS(7537), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596735,10 +596753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [165264] = 3, + [165777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 20, + ACTIONS(9852), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -596759,7 +596777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(5638), 29, + ACTIONS(9854), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -596789,22 +596807,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165321] = 6, + [165834] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(5628), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(7038), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(7044), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + ACTIONS(9107), 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(9109), 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, + [165897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - STATE(6062), 1, + STATE(6029), 1, sym_attribute_specifier, - ACTIONS(7427), 5, + ACTIONS(7539), 5, anon_sym_AMP, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7429), 41, + ACTIONS(7541), 41, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -596846,102 +596921,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [165384] = 12, + [165960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, - anon_sym_LPAREN2, - ACTIONS(8098), 1, - anon_sym_LBRACK, - ACTIONS(8487), 1, - anon_sym_STAR, - ACTIONS(8489), 1, - anon_sym_AMP_AMP, - ACTIONS(8491), 1, - anon_sym_AMP, - STATE(2072), 1, - sym_parameter_list, - STATE(5348), 1, - sym__function_declarator_seq, - STATE(6322), 1, - sym__abstract_declarator, - STATE(5347), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 9, + ACTIONS(9802), 20, + 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_DOT, - ACTIONS(9427), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_COLON_RBRACK, - [165459] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10131), 1, - anon_sym_DASH_GT, - ACTIONS(10169), 1, - anon_sym_requires, - STATE(5908), 1, - sym_trailing_return_type, - ACTIONS(10166), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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_COLON, anon_sym_DOT, - ACTIONS(8422), 30, + sym_identifier, + ACTIONS(9804), 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, @@ -596959,92 +596970,45 @@ 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, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [165528] = 9, + [166017] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11736), 1, - anon_sym_requires, - ACTIONS(11766), 1, - anon_sym_DASH_GT, - STATE(5911), 1, - sym_trailing_return_type, - ACTIONS(11733), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5300), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 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_COLON, - anon_sym_DOT, - ACTIONS(8907), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8078), 1, anon_sym_LPAREN2, + ACTIONS(8092), 1, + anon_sym_LBRACK, + ACTIONS(8441), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(8443), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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_COLON_RBRACK, - [165597] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9830), 20, + ACTIONS(8445), 1, + anon_sym_AMP, + STATE(2066), 1, + sym_parameter_list, + STATE(5527), 1, + sym__function_declarator_seq, + STATE(6322), 1, + sym__abstract_declarator, + STATE(5524), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 16, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, - anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -597053,100 +597017,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9832), 29, + ACTIONS(9281), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [165654] = 9, + [166092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(9211), 1, - anon_sym_DASH_GT, - STATE(5881), 1, - sym_trailing_return_type, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 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_COLON, - anon_sym_DOT, - ACTIONS(7791), 30, + ACTIONS(5645), 1, + anon_sym_EQ, + ACTIONS(5760), 1, + anon_sym_SEMI, + ACTIONS(5647), 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(5611), 17, 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_RBRACK_RBRACK, - 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_COLON_RBRACK, - [165723] = 3, + anon_sym_DASH_GT, + ACTIONS(5619), 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, + [166155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 18, + ACTIONS(9806), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -597157,6 +597110,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, @@ -597164,10 +597118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8659), 31, + sym_identifier, + ACTIONS(9808), 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, @@ -597180,6 +597139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -597187,65 +597148,113 @@ 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, - [165780] = 21, + anon_sym_COLON_RBRACK, + [166212] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + STATE(6031), 1, + sym_attribute_specifier, + ACTIONS(7481), 5, + anon_sym_AMP, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7483), 41, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166275] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(11180), 1, + ACTIONS(11179), 1, sym_ms_restrict_modifier, - ACTIONS(11186), 1, + ACTIONS(11185), 1, anon_sym_LBRACK, - ACTIONS(11745), 1, + ACTIONS(11737), 1, anon_sym_STAR, - ACTIONS(11747), 1, + ACTIONS(11739), 1, anon_sym_AMP_AMP, - ACTIONS(11749), 1, + ACTIONS(11741), 1, anon_sym_AMP, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(4613), 1, + STATE(4608), 1, sym_parameter_list, - STATE(6387), 1, + STATE(6374), 1, sym_ms_unaligned_ptr_modifier, - STATE(8314), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(8764), 1, + STATE(8759), 1, sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11182), 2, + ACTIONS(11181), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11184), 2, + ACTIONS(11183), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5940), 2, + STATE(5934), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6458), 2, + STATE(6464), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6859), 10, + ACTIONS(6815), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -597256,7 +597265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -597269,99 +597278,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [165873] = 3, + [166368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 18, + ACTIONS(9920), 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_literal_suffix, - ACTIONS(8699), 31, + anon_sym_DASH_GT, + ACTIONS(9922), 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_LBRACK, anon_sym_QMARK, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_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, - [165930] = 5, + anon_sym_DASH_GT_STAR, + [166424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7457), 1, - anon_sym_SEMI, - ACTIONS(7225), 6, + ACTIONS(7606), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7608), 42, + 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_LBRACK_COLON, - ACTIONS(7223), 41, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, anon_sym___attribute__, - anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym___declspec, - anon_sym___based, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_static, + anon_sym_EQ, anon_sym_register, anon_sym_inline, - anon_sym___inline, anon_sym___inline__, anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -597375,248 +597377,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [165991] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9202), 1, - anon_sym_DASH_GT, - ACTIONS(9208), 1, - anon_sym_requires, - STATE(6116), 1, - sym_trailing_return_type, - ACTIONS(9205), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 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(7791), 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_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, - [166060] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9352), 1, - anon_sym_DASH_GT, - ACTIONS(9358), 1, - anon_sym_requires, - STATE(6118), 1, - sym_trailing_return_type, - ACTIONS(9355), 2, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 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(7966), 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_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, - [166129] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10091), 1, - anon_sym_DASH_GT, - ACTIONS(10151), 1, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - STATE(6119), 1, - sym_trailing_return_type, - ACTIONS(10148), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 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(8422), 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_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, - [166198] = 3, + [166480] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 20, - 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, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(11767), 1, + anon_sym_COLON, + STATE(3812), 1, + sym__enum_base_clause, + STATE(3910), 1, + sym_enumerator_list, + STATE(4109), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, 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, - ACTIONS(9750), 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [166255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9764), 20, + ACTIONS(8007), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -597626,9 +597410,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, @@ -597637,10 +597418,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(9766), 29, + ACTIONS(8009), 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, @@ -597656,54 +597436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [166312] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8750), 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(8752), 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, @@ -597711,27 +597443,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_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [166369] = 3, + [166548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7759), 6, + ACTIONS(7676), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7761), 42, + ACTIONS(7678), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -597774,10 +597496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166425] = 3, + [166604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9826), 16, + ACTIONS(5619), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -597794,7 +597516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9828), 32, + ACTIONS(5611), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -597827,17 +597549,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [166481] = 3, + [166660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 6, + ACTIONS(7696), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7673), 42, + ACTIONS(7698), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -597880,10 +597602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166537] = 3, + [166716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 19, + ACTIONS(8786), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -597903,7 +597625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(8699), 29, + ACTIONS(8788), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -597933,70 +597655,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [166593] = 3, + [166772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7638), 6, 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(8667), 31, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7640), 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___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7610), 6, + anon_sym_AMP, + anon_sym___attribute, 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, - [166649] = 3, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7612), 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___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [166884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 6, + ACTIONS(7646), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7733), 42, + ACTIONS(7648), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -598039,17 +597814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166705] = 3, + [166940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 6, + ACTIONS(7700), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7601), 42, + ACTIONS(7702), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -598092,17 +597867,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166761] = 3, + [166996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 6, + ACTIONS(7723), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7757), 42, + ACTIONS(7725), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -598145,123 +597920,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166817] = 3, + [167052] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5659), 1, + anon_sym_LPAREN2, + ACTIONS(5669), 1, + anon_sym_LBRACK, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8768), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(8770), 1, + anon_sym_AMP_AMP, + ACTIONS(8772), 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(4928), 32, - anon_sym_DOT_DOT_DOT, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(5445), 1, + sym_parameter_list, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8802), 1, + sym__declarator, + STATE(8970), 1, + sym__abstract_declarator, + STATE(11002), 1, + sym_ms_based_modifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(11543), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_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, - [166873] = 3, + STATE(9114), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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, + [167158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 16, + ACTIONS(8776), 17, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9754), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(8778), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_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, - [166929] = 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, + [167214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 6, + ACTIONS(7704), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7563), 42, + ACTIONS(7706), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -598304,125 +598104,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [166985] = 3, + [167270] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9942), 16, + ACTIONS(11749), 1, + anon_sym_requires, + ACTIONS(11746), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5464), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9944), 32, + sym_identifier, + ACTIONS(8989), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [167041] = 27, + anon_sym_DASH_GT, + [167334] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, + ACTIONS(5659), 1, anon_sym_LPAREN2, - ACTIONS(5627), 1, + ACTIONS(5669), 1, anon_sym_LBRACK, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8548), 1, + ACTIONS(8555), 1, anon_sym_STAR, - ACTIONS(8550), 1, + ACTIONS(8557), 1, anon_sym_AMP_AMP, - ACTIONS(8552), 1, + ACTIONS(8559), 1, anon_sym_AMP, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4779), 1, + STATE(4787), 1, sym_parameter_list, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8788), 1, + STATE(8760), 1, sym__declarator, - STATE(8974), 1, + STATE(8964), 1, sym__abstract_declarator, - STATE(10837), 1, + STATE(10831), 1, sym_ms_based_modifier, - ACTIONS(9429), 2, + ACTIONS(9279), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(9427), 4, + ACTIONS(9281), 4, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_EQ, anon_sym_GT2, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -598434,116 +598238,10 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [167145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9934), 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(9936), 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, - [167201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9804), 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(9806), 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, - [167257] = 3, + [167438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 16, + ACTIONS(9724), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -598560,7 +598258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9870), 32, + ACTIONS(9726), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -598593,222 +598291,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [167313] = 3, + [167494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7672), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(9766), 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___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_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [167369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9772), 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(9774), 32, - anon_sym_DOT_DOT_DOT, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7674), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_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, - [167425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9796), 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(9798), 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, - [167481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9872), 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_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - ACTIONS(9874), 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, - [167537] = 3, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [167550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 16, + ACTIONS(9868), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -598825,7 +598364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9878), 32, + ACTIONS(9870), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -598858,10 +598397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [167593] = 3, + [167606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 16, + ACTIONS(9775), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -598878,7 +598417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9882), 32, + ACTIONS(9777), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -598911,10 +598450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [167649] = 3, + [167662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 16, + ACTIONS(9844), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -598931,7 +598470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9948), 32, + ACTIONS(9846), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -598964,10 +598503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [167705] = 3, + [167718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 16, + ACTIONS(9848), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -598984,7 +598523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(3488), 32, + ACTIONS(9850), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -599017,17 +598556,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [167761] = 3, + [167774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 6, + ACTIONS(7775), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7225), 42, + ACTIONS(7777), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599070,17 +598609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [167817] = 3, + [167830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 6, + ACTIONS(7680), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7649), 42, + ACTIONS(7682), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599123,10 +598662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [167873] = 3, + [167886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 16, + ACTIONS(9897), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -599143,7 +598682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9832), 32, + ACTIONS(9899), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -599176,69 +598715,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [167929] = 9, + [167942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(11775), 1, - anon_sym_COLON, - STATE(3793), 1, - sym__enum_base_clause, - STATE(3842), 1, - sym_enumerator_list, - STATE(4059), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8000), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9908), 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_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(8002), 24, + anon_sym_DASH_GT, + ACTIONS(9910), 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, - [167997] = 3, + anon_sym_DASH_GT_STAR, + [167998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 19, + ACTIONS(8776), 19, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -599258,7 +598791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, sym_identifier, sym_literal_suffix, - ACTIONS(8752), 29, + ACTIONS(8778), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -599288,92 +598821,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [168053] = 3, + [168054] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 6, - anon_sym_AMP, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(6819), 1, anon_sym___attribute, + ACTIONS(11769), 1, + anon_sym_STAR, + ACTIONS(11771), 1, + anon_sym_AMP_AMP, + ACTIONS(11773), 1, + anon_sym_AMP, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(11785), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(7653), 42, + STATE(4801), 1, + sym_parameter_list, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8780), 1, + sym__abstract_declarator, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6052), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6537), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6815), 8, 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_COLON, - 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__, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [168109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7659), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7661), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11775), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - 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, @@ -599385,260 +598893,120 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [168165] = 3, + [168148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 16, + ACTIONS(8786), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(9824), 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, - [168221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9736), 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(9738), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(8788), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_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, - [168277] = 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, + [168204] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(7663), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7665), 42, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6455), 1, anon_sym_LPAREN2, + ACTIONS(6841), 1, + anon_sym___attribute, + ACTIONS(11769), 1, anon_sym_STAR, + ACTIONS(11771), 1, anon_sym_AMP_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___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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [168333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7717), 6, + ACTIONS(11773), 1, anon_sym_AMP, - anon_sym___attribute, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(11785), 1, anon_sym_const, - anon_sym___asm, - ACTIONS(7719), 42, + STATE(4801), 1, + sym_parameter_list, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8782), 1, + sym__abstract_declarator, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6538), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6843), 8, 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_COLON, - 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__, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [168389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7779), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7781), 42, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11775), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - 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, @@ -599650,79 +599018,74 @@ 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [168445] = 3, + [168298] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7775), 6, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(7177), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 17, + aux_sym_preproc_elif_token1, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7777), 42, + 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(7874), 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [168501] = 3, + anon_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, + [168362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 6, + ACTIONS(7779), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7571), 42, + ACTIONS(7781), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599765,17 +599128,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [168557] = 3, + [168418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 6, + ACTIONS(7584), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7741), 42, + ACTIONS(7586), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599818,17 +599181,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [168613] = 3, + [168474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 6, + ACTIONS(7556), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7745), 42, + ACTIONS(7558), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -599871,77 +599234,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [168669] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11758), 1, - anon_sym_new, - ACTIONS(11777), 1, - anon_sym_delete, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 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_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(9597), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [168733] = 3, + [168530] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 19, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(7177), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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, @@ -599950,10 +599266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8659), 29, + ACTIONS(7970), 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, @@ -599962,7 +599281,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, @@ -599970,78 +599291,39 @@ 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, - [168789] = 22, + [168594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6861), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym_STAR, - ACTIONS(11781), 1, - anon_sym_AMP_AMP, - ACTIONS(11783), 1, + ACTIONS(7590), 6, anon_sym_AMP, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11795), 1, + anon_sym___inline, anon_sym_const, - STATE(4796), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8777), 1, - sym__abstract_declarator, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6069), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6556), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6859), 8, + anon_sym___asm, + ACTIONS(7592), 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___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, + 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, @@ -600053,67 +599335,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168883] = 22, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [168650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6821), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym_STAR, - ACTIONS(11781), 1, - anon_sym_AMP_AMP, - ACTIONS(11783), 1, + ACTIONS(7246), 6, anon_sym_AMP, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(11795), 1, + anon_sym___inline, anon_sym_const, - STATE(4796), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8791), 1, - sym__abstract_declarator, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6528), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6823), 8, + anon_sym___asm, + ACTIONS(7248), 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___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_LBRACE, + anon_sym_static, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, + 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, @@ -600125,17 +599388,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [168977] = 3, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [168706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 6, + ACTIONS(7594), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7773), 42, + ACTIONS(7596), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -600178,10 +599450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169033] = 3, + [168762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 16, + ACTIONS(9856), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -600198,7 +599470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9894), 32, + ACTIONS(9858), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -600231,123 +599503,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [169089] = 3, + [168818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 17, + ACTIONS(9885), 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_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_literal_suffix, - ACTIONS(8699), 31, + anon_sym_DASH_GT, + ACTIONS(9887), 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_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, - 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, - [169145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7763), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7765), 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___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [169201] = 3, + anon_sym_DASH_GT_STAR, + [168874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 6, + ACTIONS(7598), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7587), 42, + ACTIONS(7600), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -600390,17 +599609,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169257] = 3, + [168930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 6, + ACTIONS(7602), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7737), 42, + ACTIONS(7604), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -600443,10 +599662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169313] = 3, + [168986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 16, + ACTIONS(9864), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -600463,7 +599682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9898), 32, + ACTIONS(9866), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -600496,17 +599715,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [169369] = 3, + [169042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 6, + ACTIONS(7672), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7597), 42, + ACTIONS(7674), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -600549,17 +599768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169425] = 3, + [169098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 6, + ACTIONS(7711), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7609), 42, + ACTIONS(7713), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -600602,95 +599821,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169481] = 28, + [169154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, + ACTIONS(7715), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7717), 42, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(5627), 1, + anon_sym_STAR, + anon_sym_AMP_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___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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [169210] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6651), 1, + anon_sym_SEMI, + ACTIONS(6660), 1, anon_sym_LBRACK, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8669), 1, + ACTIONS(6653), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6656), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(8671), 1, anon_sym_AMP_AMP, - ACTIONS(8673), 1, - anon_sym_AMP, - ACTIONS(8675), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5340), 1, - sym_parameter_list, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8802), 1, - sym__declarator, - STATE(8982), 1, - sym__abstract_declarator, - STATE(11008), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, + anon_sym_EQ, + anon_sym_LBRACK_COLON, + ACTIONS(6649), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(11549), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(9088), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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, - [169587] = 3, + 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, + [169272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 6, + ACTIONS(7668), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7625), 42, + ACTIONS(7670), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -600733,10 +599983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169643] = 3, + [169328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 16, + ACTIONS(9818), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -600753,7 +600003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9886), 32, + ACTIONS(9820), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -600786,63 +600036,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [169699] = 3, + [169384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 6, + ACTIONS(9767), 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___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7597), 42, + 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(9769), 32, + 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_COLON, - 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__, + 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, + [169440] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(7177), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [169755] = 3, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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(8402), 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, + [169504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 16, + ACTIONS(9798), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -600859,7 +600166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(5638), 32, + ACTIONS(9800), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -600892,70 +600199,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [169811] = 3, + [169560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 6, + ACTIONS(8790), 17, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - 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_literal_suffix, + ACTIONS(8792), 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_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7753), 42, + 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, + [169616] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7183), 1, + anon_sym_requires, + ACTIONS(7177), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5464), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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(8989), 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___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - 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__, + anon_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, + [169680] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9175), 1, + anon_sym_requires, + ACTIONS(9172), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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(7874), 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, + [169744] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7183), 1, anon_sym_requires, - [169867] = 3, + ACTIONS(7177), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5326), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8997), 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(8999), 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, + [169808] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 6, + ACTIONS(11765), 1, + anon_sym_new, + ACTIONS(11789), 1, + anon_sym_delete, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9661), 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_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(9659), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [169872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7614), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7563), 42, + ACTIONS(7616), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -600998,66 +600533,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [169923] = 6, + [169928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6596), 1, - anon_sym_SEMI, - ACTIONS(6605), 1, - anon_sym_LBRACK, - ACTIONS(6598), 3, + ACTIONS(9734), 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(9736), 32, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6601), 8, + 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, + [169984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9738), 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(9740), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_LBRACK_COLON, - ACTIONS(6594), 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, - [169985] = 3, + 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, + [170040] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9742), 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(9744), 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, + [170096] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 17, + ACTIONS(9326), 1, + anon_sym_requires, + ACTIONS(9323), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -601074,10 +600724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8752), 31, + ACTIONS(7970), 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, @@ -601090,27 +600743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, 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, - [170041] = 3, + [170160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 16, + ACTIONS(9802), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -601127,7 +600769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9925), 32, + ACTIONS(9804), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -601160,17 +600802,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170097] = 3, + [170216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 6, + ACTIONS(7761), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7629), 42, + ACTIONS(7763), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -601213,10 +600855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [170153] = 3, + [170272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 16, + ACTIONS(9889), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -601233,7 +600875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9940), 32, + ACTIONS(9891), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -601266,116 +600908,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170209] = 3, + [170328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7643), 6, + ACTIONS(8790), 19, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7645), 42, + 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(8792), 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_SEMI, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7565), 6, - anon_sym_AMP, - anon_sym___attribute, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7567), 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___attribute__, - anon_sym_COLON, - 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__, - 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_try, - anon_sym_requires, - [170321] = 3, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [170384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 16, + ACTIONS(9826), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -601392,7 +600981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9862), 32, + ACTIONS(9828), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -601425,10 +601014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170377] = 3, + [170440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 16, + ACTIONS(9830), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -601445,7 +601034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9932), 32, + ACTIONS(9832), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -601478,63 +601067,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170433] = 3, + [170496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 16, + ACTIONS(8761), 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, - anon_sym_DASH_GT, - ACTIONS(9742), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(8763), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_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, - [170489] = 3, + anon_sym_DASH_GT, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + anon_sym_GT2, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [170552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 16, + ACTIONS(9763), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -601551,7 +601140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9858), 32, + ACTIONS(9765), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -601584,10 +601173,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170545] = 3, + [170608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 16, + ACTIONS(9822), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -601604,7 +601193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9770), 32, + ACTIONS(9824), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -601637,10 +601226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170601] = 3, + [170664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 16, + ACTIONS(9834), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -601657,7 +601246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9758), 32, + ACTIONS(9836), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -601690,17 +601279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170657] = 3, + [170720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 6, + ACTIONS(7723), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7637), 42, + ACTIONS(7725), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -601743,10 +601332,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [170713] = 3, + [170776] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 17, + ACTIONS(11794), 1, + anon_sym_requires, + ACTIONS(11791), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5326), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8997), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -601763,10 +601364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8659), 31, + ACTIONS(8999), 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, @@ -601779,27 +601383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, 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, - [170769] = 3, + [170840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9788), 16, + ACTIONS(9810), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -601816,7 +601409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9790), 32, + ACTIONS(9812), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -601849,63 +601442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7655), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7657), 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___attribute__, - anon_sym_COLON, - 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__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [170881] = 3, + [170896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9748), 16, + ACTIONS(9814), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -601922,7 +601462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9750), 32, + ACTIONS(9816), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -601955,10 +601495,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170937] = 3, + [170952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 16, + ACTIONS(9750), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -601975,7 +601515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9780), 32, + ACTIONS(9752), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602008,10 +601548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [170993] = 3, + [171008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 16, + ACTIONS(8566), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -602028,7 +601568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9794), 32, + ACTIONS(3546), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602061,176 +601601,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [171049] = 3, + [171064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 16, + ACTIONS(8761), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(9810), 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, - [171105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9812), 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(9814), 32, + sym_identifier, + sym_literal_suffix, + ACTIONS(8763), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_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, - [171161] = 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, + [171120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9818), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7765), 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_DOT, - anon_sym_DASH_GT, - ACTIONS(9820), 32, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7767), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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, - [171217] = 3, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [171176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 6, + ACTIONS(7642), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7605), 42, + ACTIONS(7644), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -602273,20 +601760,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [171273] = 3, + [171232] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 19, + ACTIONS(10102), 1, + anon_sym_requires, + ACTIONS(10099), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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, @@ -602295,10 +601792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - sym_literal_suffix, - ACTIONS(8667), 29, + ACTIONS(8402), 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, @@ -602307,7 +601807,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, @@ -602315,32 +601817,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_GT2, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [171329] = 7, + [171296] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 17, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(11767), 1, + anon_sym_COLON, + STATE(3810), 1, + sym__enum_base_clause, + STATE(3903), 1, + sym_enumerator_list, + STATE(4092), 1, + sym_attribute_specifier, + ACTIONS(9211), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8001), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -602358,7 +601851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(7791), 24, + ACTIONS(8003), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -602383,10 +601876,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [171393] = 3, + [171364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7719), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7721), 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___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [171420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 16, + ACTIONS(9838), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -602403,7 +601949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9921), 32, + ACTIONS(9840), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602436,10 +601982,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [171449] = 3, + [171476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7654), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7656), 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___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [171532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7735), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7737), 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___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [171588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 16, + ACTIONS(9661), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -602456,7 +602108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_DOT, anon_sym_DASH_GT, - ACTIONS(9597), 32, + ACTIONS(9659), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -602489,74 +602141,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT_STAR, - [171505] = 7, + [171644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9208), 1, - anon_sym_requires, - ACTIONS(9205), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 17, - aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7727), 6, 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(7791), 24, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7729), 42, anon_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_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [171569] = 3, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_COLON, + 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__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [171700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 6, + ACTIONS(7743), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7769), 42, + ACTIONS(7745), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -602599,74 +602247,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [171625] = 7, + [171756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9358), 1, - anon_sym_requires, - ACTIONS(9355), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9872), 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_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(7966), 24, + anon_sym_DASH_GT, + ACTIONS(9874), 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, - [171689] = 3, + anon_sym_DASH_GT_STAR, + [171812] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 6, + ACTIONS(7650), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7669), 42, + ACTIONS(7652), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -602709,247 +602353,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [171745] = 7, + [171868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10151), 1, - anon_sym_requires, - ACTIONS(10148), 2, + ACTIONS(7747), 6, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + anon_sym___asm, + ACTIONS(7749), 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___attribute__, + anon_sym_COLON, + 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__, anon_sym_final, anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 17, - aux_sym_preproc_elif_token1, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [171924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9893), 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_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(8422), 24, + anon_sym_DASH_GT, + ACTIONS(9895), 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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [171809] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11763), 1, - anon_sym_requires, - ACTIONS(11760), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5300), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 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(8907), 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, - [171873] = 9, + anon_sym_DASH_GT_STAR, + [171980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(11775), 1, - anon_sym_COLON, - STATE(3818), 1, - sym__enum_base_clause, - STATE(3927), 1, - sym_enumerator_list, - STATE(4095), 1, - sym_attribute_specifier, - ACTIONS(9244), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8006), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9912), 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_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(8008), 24, + anon_sym_DASH_GT, + ACTIONS(9914), 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, - [171941] = 7, + anon_sym_DASH_GT_STAR, + [172036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9860), 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_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(7966), 24, + anon_sym_DASH_GT, + ACTIONS(9862), 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, - [172005] = 3, + anon_sym_DASH_GT_STAR, + [172092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 6, + ACTIONS(7751), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7563), 42, + ACTIONS(7753), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -602992,131 +602618,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172061] = 7, + [172148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9852), 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(9854), 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, + [172204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9901), 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(8422), 24, + anon_sym_DASH_GT, + ACTIONS(9903), 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, - [172125] = 7, + anon_sym_DASH_GT_STAR, + [172260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11802), 1, - anon_sym_requires, - ACTIONS(11799), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5352), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9806), 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(9808), 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, + [172316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4928), 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(8915), 24, + anon_sym_DASH_GT, + ACTIONS(4926), 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, - [172189] = 3, + anon_sym_DASH_GT_STAR, + [172372] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 6, + ACTIONS(7672), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7749), 42, + ACTIONS(7674), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -603159,74 +602883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172245] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5300), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 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(8907), 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, - [172309] = 3, + [172428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 6, + ACTIONS(7549), 6, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym___inline, anon_sym_const, anon_sym___asm, - ACTIONS(7641), 42, + ACTIONS(7551), 42, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -603269,120 +602936,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [172365] = 7, + [172484] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_requires, - ACTIONS(7283), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5352), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 17, - aux_sym_preproc_elif_token1, + ACTIONS(8597), 1, + anon_sym_LPAREN2, + ACTIONS(8599), 1, + anon_sym_STAR, + ACTIONS(8601), 1, + anon_sym_AMP_AMP, + ACTIONS(8603), 1, + anon_sym_AMP, + ACTIONS(8613), 1, + anon_sym_LBRACK, + STATE(2276), 1, + sym_parameter_list, + STATE(6453), 1, + sym__abstract_declarator, + STATE(6602), 1, + sym__function_declarator_seq, + STATE(6601), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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, - 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(8915), 24, + ACTIONS(9281), 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_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, - [172429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7631), 6, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___inline, - anon_sym_const, - anon_sym___asm, - ACTIONS(7633), 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___attribute__, - anon_sym_COLON, - 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__, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [172485] = 3, + [172557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 18, + ACTIONS(8761), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603401,7 +603019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8667), 29, + ACTIONS(8763), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603431,10 +603049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [172540] = 3, + [172612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 16, + ACTIONS(8786), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603451,7 +603069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8659), 31, + ACTIONS(8788), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603483,139 +603101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [172595] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11805), 1, - anon_sym_STAR, - ACTIONS(11807), 1, - anon_sym_AMP_AMP, - ACTIONS(11809), 1, - anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(4672), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8849), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6597), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6823), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [172686] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - ACTIONS(9576), 1, - anon_sym_LBRACE, - ACTIONS(11811), 1, - anon_sym_COLON, - STATE(3191), 1, - sym_attribute_specifier, - STATE(3796), 1, - sym__enum_base_clause, - STATE(3832), 1, - sym_enumerator_list, - ACTIONS(8006), 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(8008), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [172755] = 3, + [172667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 16, + ACTIONS(8790), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603632,7 +603121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8667), 31, + ACTIONS(8792), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603664,52 +603153,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [172810] = 12, + [172722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8572), 1, - anon_sym_LPAREN2, - ACTIONS(8574), 1, - anon_sym_STAR, - ACTIONS(8576), 1, - anon_sym_AMP_AMP, - ACTIONS(8578), 1, - anon_sym_AMP, - ACTIONS(8588), 1, - anon_sym_LBRACK, - STATE(2281), 1, - sym_parameter_list, - STATE(6441), 1, - sym__abstract_declarator, - STATE(6608), 1, - sym__function_declarator_seq, - STATE(6607), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 8, + ACTIONS(8820), 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_LBRACK, + anon_sym___asm, anon_sym_DOT, - ACTIONS(9427), 26, + ACTIONS(8822), 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_RBRACK, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -603720,29 +603195,20 @@ 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_final, anon_sym_override, + anon_sym_GT2, + anon_sym_noexcept, + anon_sym_throw, anon_sym_requires, - [172883] = 10, + [172777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, - anon_sym___attribute__, - ACTIONS(9576), 1, - anon_sym_LBRACE, - ACTIONS(11811), 1, - anon_sym_COLON, - STATE(3105), 1, - sym_attribute_specifier, - STATE(3767), 1, - sym__enum_base_clause, - STATE(3946), 1, - sym_enumerator_list, - ACTIONS(8000), 9, + ACTIONS(8761), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603751,11 +603217,17 @@ 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(8002), 31, + sym_literal_suffix, + ACTIONS(8763), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -603767,27 +603239,28 @@ 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [172952] = 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, + [172832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 12, + ACTIONS(8820), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603800,7 +603273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(8706), 35, + ACTIONS(8822), 35, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603836,10 +603309,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [173007] = 3, + [172887] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 16, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + ACTIONS(9520), 1, + anon_sym_LBRACE, + ACTIONS(11797), 1, + anon_sym_COLON, + STATE(3151), 1, + sym_attribute_specifier, + STATE(3780), 1, + sym__enum_base_clause, + STATE(3839), 1, + sym_enumerator_list, + ACTIONS(8001), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603848,17 +603335,11 @@ 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_literal_suffix, - ACTIONS(8699), 31, + ACTIONS(8003), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -603870,28 +603351,27 @@ 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_RBRACK_RBRACK, + 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, - 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, - [173062] = 3, + anon_sym_COLON_RBRACK, + [172956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8697), 18, + ACTIONS(8790), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -603910,7 +603390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8699), 29, + ACTIONS(8792), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -603940,55 +603420,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [173117] = 21, + [173011] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11787), 1, + ACTIONS(11777), 1, sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11805), 1, + ACTIONS(11799), 1, anon_sym_STAR, - ACTIONS(11807), 1, + ACTIONS(11801), 1, anon_sym_AMP_AMP, - ACTIONS(11809), 1, + ACTIONS(11803), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8858), 1, + STATE(8829), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11789), 2, + ACTIONS(11779), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, + ACTIONS(11781), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6132), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6594), 2, + STATE(6597), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6859), 8, + ACTIONS(6843), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -603997,7 +603477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -604010,71 +603490,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [173208] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8600), 1, - anon_sym_LPAREN2, - ACTIONS(8602), 1, - anon_sym_STAR, - ACTIONS(8604), 1, - anon_sym_AMP_AMP, - ACTIONS(8606), 1, - anon_sym_AMP, - ACTIONS(8616), 1, - anon_sym_LBRACK, - STATE(2277), 1, - sym_parameter_list, - STATE(6493), 1, - sym__abstract_declarator, - STATE(6709), 1, - sym__function_declarator_seq, - STATE(6708), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 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(9427), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [173281] = 3, + [173102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 18, + ACTIONS(8786), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604093,7 +603512,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8752), 29, + ACTIONS(8788), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -604123,31 +603542,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [173336] = 3, + [173157] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(8657), 18, + ACTIONS(9211), 1, + anon_sym___attribute, + ACTIONS(9309), 1, + anon_sym___attribute__, + ACTIONS(9520), 1, + anon_sym_LBRACE, + ACTIONS(11797), 1, + anon_sym_COLON, + STATE(3174), 1, + sym_attribute_specifier, + STATE(3793), 1, + sym__enum_base_clause, + STATE(3868), 1, + sym_enumerator_list, + ACTIONS(8007), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(8659), 29, + ACTIONS(8009), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -604156,88 +603581,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - 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, - [173391] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - STATE(4333), 1, - sym_alignas_qualifier, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6372), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(6377), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8005), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(6752), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(6754), 21, - 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_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, - [173460] = 3, + anon_sym_COLON_RBRACK, + [173226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 16, + ACTIONS(8776), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604254,7 +603621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_literal_suffix, - ACTIONS(8752), 31, + ACTIONS(8778), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -604286,38 +603653,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [173515] = 3, + [173281] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8704), 14, + ACTIONS(8568), 1, + anon_sym_LPAREN2, + ACTIONS(8570), 1, + anon_sym_STAR, + ACTIONS(8572), 1, + anon_sym_AMP_AMP, + ACTIONS(8574), 1, + anon_sym_AMP, + ACTIONS(8584), 1, + anon_sym_LBRACK, + STATE(2274), 1, + sym_parameter_list, + STATE(6445), 1, + sym__abstract_declarator, + STATE(6695), 1, + sym__function_declarator_seq, + STATE(6694), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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_LBRACK, - anon_sym___asm, anon_sym_DOT, - ACTIONS(8706), 33, + ACTIONS(9281), 24, 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -604328,92 +603708,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_asm, - anon_sym___asm__, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, anon_sym_GT2, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [173570] = 7, + [173354] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, - anon_sym_delete, - ACTIONS(11815), 1, - anon_sym_new, - ACTIONS(9601), 4, - anon_sym_TILDE, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11799), 1, anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 16, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(11801), 1, + anon_sym_AMP_AMP, + ACTIONS(11803), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(4690), 1, + sym_parameter_list, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8839), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6135), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6595), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6815), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [173445] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10381), 1, + anon_sym_const, + STATE(4335), 1, + sym_alignas_qualifier, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6305), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(6398), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8003), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(6746), 4, + anon_sym_AMP, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(9597), 19, + anon_sym___asm, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(6748), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_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_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + 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, - [173632] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [173514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2079), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10198), 20, - aux_sym_preproc_elif_token1, + ACTIONS(8776), 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, @@ -604421,17 +603864,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(10196), 22, + sym_literal_suffix, + ACTIONS(8778), 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, @@ -604439,138 +603876,176 @@ 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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [173694] = 7, + 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, + [173569] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(6841), 1, + anon_sym___attribute, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, anon_sym_LBRACK, - STATE(2079), 1, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(5523), 1, sym_parameter_list, - STATE(5444), 1, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, sym__function_declarator_seq, - ACTIONS(10202), 20, - 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, + STATE(8913), 1, + sym__abstract_declarator, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6760), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6843), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(10200), 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, - [173756] = 7, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [173661] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, anon_sym_LBRACK, - STATE(2079), 1, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11811), 1, + anon_sym_STAR, + ACTIONS(11813), 1, + anon_sym_AMP_AMP, + ACTIONS(11815), 1, + anon_sym_AMP, + STATE(4985), 1, sym_parameter_list, - STATE(5444), 1, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, sym__function_declarator_seq, - ACTIONS(10206), 20, - 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, + STATE(8874), 1, + sym__abstract_declarator, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6168), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(6737), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6815), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(10204), 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, - [173818] = 7, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [173751] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2079), 1, + STATE(2071), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10210), 20, - aux_sym_preproc_elif_token1, + ACTIONS(10243), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604579,24 +604054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(10208), 22, + ACTIONS(10241), 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_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -604607,24 +604070,41 @@ 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_RBRACK_RBRACK, + 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, - [173880] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [173813] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2069), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10174), 10, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + STATE(3816), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6377), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8870), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604633,12 +604113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(10172), 32, + ACTIONS(8872), 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, @@ -604649,9 +604129,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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -604667,64 +604145,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_COLON_RBRACK, - [173942] = 21, + [173877] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11787), 1, + ACTIONS(6819), 1, + anon_sym___attribute, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11777), 1, sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, ACTIONS(11821), 1, anon_sym_STAR, ACTIONS(11823), 1, anon_sym_AMP_AMP, ACTIONS(11825), 1, anon_sym_AMP, - STATE(4861), 1, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(5264), 1, sym_parameter_list, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8891), 1, + STATE(8866), 1, sym__abstract_declarator, - ACTIONS(11789), 2, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11779), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, + ACTIONS(11781), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5995), 2, + STATE(6167), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6727), 2, + STATE(6776), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6823), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6815), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -604737,50 +604215,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [174032] = 8, + [173969] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, - anon_sym___attribute__, - ACTIONS(7818), 1, - anon_sym___attribute, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - STATE(3786), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6412), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 12, + ACTIONS(11827), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(11829), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9293), 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_LBRACK, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(8835), 27, + ACTIONS(9295), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_RBRACK_RBRACK, + 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, @@ -604791,77 +604266,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [174096] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6567), 1, - anon_sym_SEMI, - ACTIONS(6576), 1, - anon_sym_LBRACK, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(6086), 1, - sym_template_argument_list, - ACTIONS(6569), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6572), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_COLON, - ACTIONS(6565), 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, - [174162] = 7, + anon_sym_COLON_RBRACK, + [174027] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2069), 1, + STATE(2078), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10190), 10, + ACTIONS(10264), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -604870,12 +604289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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(10188), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(10266), 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, @@ -604886,57 +604317,93 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [174089] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11831), 1, + anon_sym_delete, + ACTIONS(11833), 1, + anon_sym_new, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9661), 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_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(9659), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [174224] = 8, + [174151] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, - anon_sym___attribute__, - ACTIONS(7818), 1, - anon_sym___attribute, - ACTIONS(7820), 1, - anon_sym_LBRACK_LBRACK, - STATE(3786), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6408), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 12, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2071), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10262), 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_LBRACK, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(8839), 27, + ACTIONS(10260), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -604944,7 +604411,12 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -604959,20 +604431,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [174288] = 7, + anon_sym_COLON_RBRACK, + [174213] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2079), 1, + STATE(2078), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10186), 20, + ACTIONS(10178), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -604993,7 +604465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(10184), 22, + ACTIONS(10176), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -605016,95 +604488,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [174350] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6861), 1, - anon_sym___attribute, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11827), 1, - anon_sym_STAR, - ACTIONS(11829), 1, - anon_sym_AMP_AMP, - ACTIONS(11831), 1, - anon_sym_AMP, - STATE(5310), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8914), 1, - sym__abstract_declarator, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6176), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6762), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6859), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [174442] = 9, + [174275] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9219), 1, + ACTIONS(7274), 1, anon_sym_requires, - ACTIONS(10002), 1, + ACTIONS(10136), 1, anon_sym_DASH_GT, - STATE(5898), 1, + STATE(5769), 1, sym_trailing_return_type, - ACTIONS(9216), 2, + ACTIONS(7272), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5460), 2, + STATE(5296), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 10, + ACTIONS(7972), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605115,7 +604517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(7791), 27, + ACTIONS(7970), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -605143,18 +604545,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [174508] = 7, + [174341] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2069), 1, + STATE(2078), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10194), 10, + ACTIONS(10221), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605163,12 +604566,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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(10192), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(10219), 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, @@ -605179,44 +604594,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_RBRACK_RBRACK, - 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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [174570] = 9, + [174403] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9293), 1, - anon_sym_requires, - ACTIONS(10128), 1, - anon_sym_DASH_GT, - STATE(5907), 1, - sym_trailing_return_type, - ACTIONS(9290), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 10, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2071), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10225), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605225,12 +604620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7966), 27, + ACTIONS(10223), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -605242,8 +604637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -605255,25 +604650,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [174636] = 9, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [174465] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10169), 1, + ACTIONS(9227), 1, anon_sym_requires, - ACTIONS(10600), 1, + ACTIONS(10004), 1, anon_sym_DASH_GT, - STATE(5908), 1, + STATE(5770), 1, sym_trailing_return_type, - ACTIONS(10166), 2, + ACTIONS(9224), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5396), 2, + STATE(5370), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 10, + ACTIONS(7876), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605284,7 +604684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8422), 27, + ACTIONS(7874), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -605312,25 +604712,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [174702] = 9, + [174531] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11835), 1, + anon_sym_delete, + ACTIONS(11837), 1, + anon_sym_new, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9659), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + 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_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + ACTIONS(9661), 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_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + [174593] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11736), 1, + ACTIONS(7274), 1, anon_sym_requires, - ACTIONS(11833), 1, + ACTIONS(11839), 1, anon_sym_DASH_GT, - STATE(5911), 1, + STATE(5848), 1, sym_trailing_return_type, - ACTIONS(11733), 2, + ACTIONS(7272), 2, anon_sym_final, anon_sym_override, - STATE(4778), 2, + STATE(4817), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(5300), 2, + STATE(5464), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 10, + ACTIONS(8987), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605341,7 +604796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8907), 27, + ACTIONS(8989), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -605369,22 +604824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [174768] = 8, + [174659] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - STATE(3784), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6397), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 10, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2078), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10229), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605393,12 +604845,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8835), 29, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(10227), 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, @@ -605409,34 +604873,24 @@ static const uint16_t ts_small_parse_table[] = { 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, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [174832] = 7, + [174721] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2079), 1, + STATE(2078), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10190), 20, + ACTIONS(10233), 20, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -605457,7 +604911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(10188), 22, + ACTIONS(10231), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -605480,25 +604934,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [174894] = 9, + [174783] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(11833), 1, - anon_sym_DASH_GT, - STATE(5742), 1, - sym_trailing_return_type, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5300), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 10, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5659), 1, + anon_sym_LPAREN2, + ACTIONS(5669), 1, + anon_sym_LBRACK, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(8657), 1, + anon_sym_STAR, + ACTIONS(8659), 1, + anon_sym_AMP_AMP, + ACTIONS(8661), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(5335), 1, + sym_parameter_list, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8760), 1, + sym__declarator, + STATE(9026), 1, + sym__abstract_declarator, + STATE(10831), 1, + sym_ms_based_modifier, + ACTIONS(9279), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9281), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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, + [174885] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2078), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10243), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605507,12 +605030,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(8907), 27, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(10241), 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, @@ -605523,46 +605058,38 @@ 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_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, - [174960] = 12, + anon_sym_DASH_GT, + [174947] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, + ACTIONS(8078), 1, anon_sym_LPAREN2, - ACTIONS(8098), 1, + ACTIONS(8092), 1, anon_sym_LBRACK, - ACTIONS(8677), 1, + ACTIONS(8780), 1, anon_sym_STAR, - ACTIONS(8679), 1, + ACTIONS(8782), 1, anon_sym_AMP_AMP, - ACTIONS(8681), 1, + ACTIONS(8784), 1, anon_sym_AMP, - STATE(2274), 1, + STATE(2273), 1, sym_parameter_list, - STATE(5348), 1, + STATE(5527), 1, sym__function_declarator_seq, - STATE(6547), 1, + STATE(6504), 1, sym__abstract_declarator, - STATE(5347), 5, + STATE(5524), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9429), 9, + ACTIONS(9279), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605572,7 +605099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(9427), 24, + ACTIONS(9281), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PERCENT, @@ -605597,25 +605124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175032] = 7, + [175019] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11758), 1, - anon_sym_new, - ACTIONS(11836), 1, - anon_sym_delete, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9599), 17, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2078), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10262), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605624,8 +605145,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, @@ -605633,10 +605152,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 18, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(10260), 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, anon_sym_AMP_AMP, @@ -605652,18 +605179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175094] = 7, + [175081] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2069), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10198), 10, + ACTIONS(9347), 1, + anon_sym_requires, + ACTIONS(10136), 1, + anon_sym_DASH_GT, + STATE(5775), 1, + sym_trailing_return_type, + ACTIONS(9344), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5296), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605672,12 +605206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(10196), 32, + ACTIONS(7970), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -605689,8 +605223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -605702,24 +605236,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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [175156] = 7, + [175147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2079), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10194), 20, - aux_sym_preproc_elif_token1, + ACTIONS(11829), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9329), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605728,98 +605251,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(10192), 22, + ACTIONS(9331), 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_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_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [175218] = 22, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [175203] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(6861), 1, + ACTIONS(6841), 1, anon_sym___attribute, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11787), 1, + ACTIONS(11777), 1, sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11838), 1, + ACTIONS(11821), 1, anon_sym_STAR, - ACTIONS(11840), 1, + ACTIONS(11823), 1, anon_sym_AMP_AMP, - ACTIONS(11842), 1, + ACTIONS(11825), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(5313), 1, + STATE(5264), 1, sym_parameter_list, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8938), 1, + STATE(8896), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11789), 2, + ACTIONS(11779), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, + ACTIONS(11781), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6173), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6834), 2, + STATE(6778), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6859), 6, + ACTIONS(6843), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -605832,64 +605358,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [175310] = 22, + [175295] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(6821), 1, - anon_sym___attribute, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11787), 1, + ACTIONS(11777), 1, sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11838), 1, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11811), 1, anon_sym_STAR, - ACTIONS(11840), 1, + ACTIONS(11813), 1, anon_sym_AMP_AMP, - ACTIONS(11842), 1, + ACTIONS(11815), 1, anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(5313), 1, + STATE(4985), 1, sym_parameter_list, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8942), 1, + STATE(8891), 1, sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11789), 2, + ACTIONS(11779), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, + ACTIONS(11781), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6843), 2, + STATE(6740), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6823), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(6843), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - ACTIONS(8117), 12, + ACTIONS(11775), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -605902,93 +605427,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [175402] = 27, + [175385] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(6561), 1, + anon_sym_SEMI, + ACTIONS(6570), 1, + anon_sym_LBRACK, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(6069), 1, + sym_template_argument_list, + ACTIONS(6563), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6566), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_COLON, + ACTIONS(6559), 35, + anon_sym_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + sym_auto, anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, - anon_sym_LPAREN2, - ACTIONS(5627), 1, + anon_sym_operator, + [175451] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7916), 1, + anon_sym___attribute__, + ACTIONS(7918), 1, + anon_sym___attribute, + ACTIONS(7920), 1, + anon_sym_LBRACK_LBRACK, + STATE(3763), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6403), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8854), 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_LBRACK, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(8708), 1, + anon_sym_DOT, + ACTIONS(8856), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(8710), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(8712), 1, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [175515] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(10004), 1, + anon_sym_DASH_GT, + STATE(5793), 1, + sym_trailing_return_type, + ACTIONS(7272), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5370), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5340), 1, - sym_parameter_list, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8788), 1, - sym__declarator, - STATE(9068), 1, - sym__abstract_declarator, - STATE(10837), 1, - sym_ms_based_modifier, - ACTIONS(9427), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(7874), 27, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(9429), 2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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___attribute, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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, - [175504] = 7, + 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, + [175581] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2069), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10202), 10, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + STATE(3816), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6423), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8854), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -605997,12 +605621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(10200), 32, + ACTIONS(8856), 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, @@ -606013,9 +605637,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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -606031,90 +605653,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - anon_sym_COLON_RBRACK, - [175566] = 22, + [175645] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6821), 1, + ACTIONS(7916), 1, + anon_sym___attribute__, + ACTIONS(7918), 1, anon_sym___attribute, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(7920), 1, + anon_sym_LBRACK_LBRACK, + STATE(3763), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6391), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8870), 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_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11827), 1, + anon_sym_DOT, + ACTIONS(8872), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(11829), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11831), 1, - anon_sym_AMP, - STATE(5310), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8920), 1, - sym__abstract_declarator, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6764), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6823), 6, - anon_sym_COMMA, - anon_sym___attribute__, + 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_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [175658] = 7, + [175709] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2079), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10174), 20, - aux_sym_preproc_elif_token1, + ACTIONS(10115), 1, + anon_sym_requires, + ACTIONS(10607), 1, + anon_sym_DASH_GT, + STATE(5776), 1, + sym_trailing_return_type, + ACTIONS(10112), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606123,24 +605736,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(8402), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + 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_DOT, - sym_identifier, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + [175775] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7274), 1, + anon_sym_requires, + ACTIONS(10607), 1, + anon_sym_DASH_GT, + STATE(5720), 1, + sym_trailing_return_type, + ACTIONS(7272), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - ACTIONS(10172), 22, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5512), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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(8402), 27, 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, @@ -606151,75 +605809,87 @@ 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_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, - [175720] = 3, + [175841] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7289), 12, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2071), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10264), 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_COLON, + anon_sym_DOT, + ACTIONS(10266), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7287), 34, - 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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, + anon_sym_RBRACK_RBRACK, + 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_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [175774] = 7, + anon_sym_COLON_RBRACK, + [175903] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2069), 1, + STATE(2071), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10206), 10, + ACTIONS(10178), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606230,7 +605900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(10204), 32, + ACTIONS(10176), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -606263,63 +605933,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [175836] = 21, + [175965] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11787), 1, + ACTIONS(6819), 1, + anon_sym___attribute, + ACTIONS(11777), 1, sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, + ACTIONS(11785), 1, anon_sym_const, - ACTIONS(11821), 1, + ACTIONS(11805), 1, anon_sym_STAR, - ACTIONS(11823), 1, + ACTIONS(11807), 1, anon_sym_AMP_AMP, - ACTIONS(11825), 1, + ACTIONS(11809), 1, anon_sym_AMP, - STATE(4861), 1, + STATE(5523), 1, sym_parameter_list, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, + STATE(6698), 1, sym_alignas_qualifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8884), 1, + STATE(8899), 1, sym__abstract_declarator, - ACTIONS(11789), 2, + ACTIONS(11779), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, + ACTIONS(11781), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(11797), 2, + ACTIONS(11787), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6153), 2, + STATE(6143), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6925), 2, + STATE(6757), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6859), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(6815), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(11775), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -606332,18 +606003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [175926] = 7, + [176057] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2069), 1, + STATE(2078), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10186), 10, + ACTIONS(10225), 20, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606352,12 +606024,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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(10184), 32, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(10223), 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_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [176119] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11719), 1, + anon_sym_requires, + ACTIONS(11839), 1, + anon_sym_DASH_GT, + STATE(5780), 1, + sym_trailing_return_type, + ACTIONS(11716), 2, + anon_sym_final, + anon_sym_override, + STATE(4817), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(5464), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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(8989), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -606369,8 +606102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -606382,23 +606115,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_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [175988] = 7, + [176185] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2069), 1, + STATE(2071), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10210), 10, + ACTIONS(10229), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606409,7 +606137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(10208), 32, + ACTIONS(10227), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -606442,100 +606170,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_requires, anon_sym_COLON_RBRACK, - [176050] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, - anon_sym_LPAREN2, - ACTIONS(5627), 1, - anon_sym_LBRACK, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8669), 1, - anon_sym_STAR, - ACTIONS(8671), 1, - anon_sym_AMP_AMP, - ACTIONS(8673), 1, - anon_sym_AMP, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5340), 1, - sym_parameter_list, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8788), 1, - sym__declarator, - STATE(9068), 1, - sym__abstract_declarator, - STATE(11008), 1, - sym_ms_based_modifier, - ACTIONS(9427), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(9429), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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, - [176152] = 7, + [176247] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11844), 1, - anon_sym_delete, - ACTIONS(11846), 1, + ACTIONS(11765), 1, anon_sym_new, - ACTIONS(9601), 4, + ACTIONS(11842), 1, + anon_sym_delete, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - ACTIONS(9599), 16, + ACTIONS(9661), 17, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606544,6 +606197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_or, anon_sym_and, @@ -606552,7 +606206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9597), 19, + ACTIONS(9659), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -606565,77 +606219,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_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, - [176214] = 27, + [176309] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, + ACTIONS(5659), 1, anon_sym_LPAREN2, - ACTIONS(5627), 1, + ACTIONS(5669), 1, anon_sym_LBRACK, - ACTIONS(8546), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(8651), 1, + ACTIONS(8768), 1, anon_sym_STAR, - ACTIONS(8653), 1, + ACTIONS(8770), 1, anon_sym_AMP_AMP, - ACTIONS(8655), 1, + ACTIONS(8772), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5327), 1, + STATE(5445), 1, sym_parameter_list, - STATE(7990), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8788), 1, + STATE(8760), 1, sym__declarator, STATE(9037), 1, sym__abstract_declarator, - STATE(10837), 1, + STATE(11002), 1, sym_ms_based_modifier, - ACTIONS(9427), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(9429), 2, + ACTIONS(9279), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(8596), 5, + ACTIONS(9281), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -606647,65 +606300,65 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [176316] = 7, + [176411] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11848), 1, - anon_sym_delete, - ACTIONS(11850), 1, - anon_sym_new, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(9597), 17, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2071), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10221), 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_COLON, + anon_sym_DOT, + ACTIONS(10219), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - ACTIONS(9599), 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_LBRACK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DOT, - [176378] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + anon_sym_COLON_RBRACK, + [176473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7201), 12, + ACTIONS(7244), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -606718,7 +606371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_EQ, anon_sym_GT2, - ACTIONS(7199), 34, + ACTIONS(7242), 34, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -606753,78 +606406,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [176432] = 5, + [176527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11852), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(11854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9393), 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(9395), 31, + ACTIONS(7158), 12, 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_AMP_AMP, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7156), 34, + 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_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - anon_sym_COLON_RBRACK, - [176490] = 9, + [176581] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(10002), 1, - anon_sym_DASH_GT, - STATE(5881), 1, - sym_trailing_return_type, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5460), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 10, + ACTIONS(11844), 1, + anon_sym_delete, + ACTIONS(11846), 1, + anon_sym_new, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(9661), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606833,164 +606484,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(7791), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - 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, - [176556] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11854), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9322), 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(9324), 33, + ACTIONS(9659), 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_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - anon_sym_COLON_RBRACK, - [176612] = 9, + [176643] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(10128), 1, - anon_sym_DASH_GT, - STATE(5857), 1, - sym_trailing_return_type, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5532), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 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(7966), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11817), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(11819), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [176678] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7221), 1, - anon_sym_requires, - ACTIONS(10600), 1, - anon_sym_DASH_GT, - STATE(5932), 1, - sym_trailing_return_type, - ACTIONS(7219), 2, - anon_sym_final, - anon_sym_override, - STATE(4778), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(5396), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 10, + STATE(2071), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10233), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -606999,12 +606532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(8422), 27, + ACTIONS(10231), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -607016,60 +606549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - 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, - [176744] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - STATE(3784), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6395), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 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_LBRACK, - anon_sym_DOT, - ACTIONS(8839), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -607085,377 +606566,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [176808] = 21, + anon_sym_COLON_RBRACK, + [176705] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11856), 1, - sym_identifier, - ACTIONS(11858), 1, - anon_sym_LPAREN2, - ACTIONS(11860), 1, - anon_sym_STAR, - ACTIONS(11862), 1, - anon_sym_AMP_AMP, - ACTIONS(11864), 1, - anon_sym_AMP, - ACTIONS(11870), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8339), 1, - sym__type_declarator, - STATE(8576), 1, - sym_pointer_type_declarator, - STATE(11686), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6258), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(6977), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11868), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(8574), 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, - [176897] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5659), 1, anon_sym_LPAREN2, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(5669), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11872), 1, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(8794), 1, anon_sym_STAR, - ACTIONS(11874), 1, + ACTIONS(8796), 1, anon_sym_AMP_AMP, - ACTIONS(11876), 1, + ACTIONS(8798), 1, anon_sym_AMP, - STATE(5227), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(5445), 1, sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8958), 1, + STATE(8760), 1, + sym__declarator, + STATE(9037), 1, sym__abstract_declarator, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6196), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7108), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6859), 6, - anon_sym_DOT_DOT_DOT, + STATE(10831), 1, + sym_ms_based_modifier, + ACTIONS(9279), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(9281), 2, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [176986] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11872), 1, - anon_sym_STAR, - ACTIONS(11874), 1, - anon_sym_AMP_AMP, - ACTIONS(11876), 1, - anon_sym_AMP, - STATE(5227), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8963), 1, - sym__abstract_declarator, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + anon_sym_RPAREN, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6823), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [177075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3632), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3630), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [177128] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11878), 1, - sym_identifier, - ACTIONS(11880), 1, - anon_sym_LPAREN2, - ACTIONS(11882), 1, - anon_sym_STAR, - ACTIONS(11884), 1, - anon_sym_AMP_AMP, - ACTIONS(11886), 1, - anon_sym_AMP, - ACTIONS(11890), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4640), 1, - sym__type_declarator, - STATE(5448), 1, - sym_pointer_type_declarator, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11657), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7077), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11888), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5436), 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, - [177217] = 21, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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, + [176807] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11856), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11858), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11860), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11862), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11864), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11870), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, sym_alignas_qualifier, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(8339), 1, + STATE(8392), 1, sym__type_declarator, - STATE(8576), 1, - sym_pointer_type_declarator, - STATE(11686), 1, + STATE(11150), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(6251), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6977), 2, + STATE(7023), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11868), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8574), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -607475,10 +606710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177306] = 3, + [176896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 14, + ACTIONS(11864), 1, + anon_sym_LPAREN2, + ACTIONS(8969), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -607493,10 +606730,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(8940), 31, + ACTIONS(8971), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -607525,10 +606761,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [177359] = 3, + [176951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 14, + ACTIONS(8945), 14, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -607543,7 +606779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(9009), 31, + ACTIONS(8947), 31, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -607575,146 +606811,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [177412] = 21, + [177004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11866), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8406), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7098), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [177501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3624), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3622), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [177554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8979), 14, + ACTIONS(8969), 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_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(8981), 31, + ACTIONS(8971), 32, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -607722,9 +606839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -607741,47 +606861,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [177607] = 17, + [177059] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11174), 1, + ACTIONS(11862), 1, + sym_primitive_type, + ACTIONS(11868), 1, anon_sym_STAR, - ACTIONS(11176), 1, + ACTIONS(11870), 1, anon_sym_AMP_AMP, - ACTIONS(11178), 1, + ACTIONS(11872), 1, anon_sym_AMP, - ACTIONS(11186), 1, - anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(4333), 1, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, sym_alignas_qualifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8376), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, + STATE(4880), 1, + sym__type_declarator, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11298), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6234), 2, + ACTIONS(11858), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6195), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7049), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10352), 12, + ACTIONS(11777), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, @@ -607793,69 +606930,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7391), 13, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [177688] = 21, + [177148] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - ACTIONS(11906), 1, + ACTIONS(11868), 1, anon_sym_STAR, - ACTIONS(11908), 1, + ACTIONS(11870), 1, anon_sym_AMP_AMP, - ACTIONS(11910), 1, + ACTIONS(11872), 1, anon_sym_AMP, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4955), 1, + STATE(4913), 1, sym__type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11304), 1, + STATE(11298), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7117), 2, + STATE(7053), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -607875,55 +606998,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177777] = 21, + [177237] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - ACTIONS(11912), 1, + ACTIONS(11868), 1, anon_sym_STAR, - ACTIONS(11914), 1, + ACTIONS(11870), 1, anon_sym_AMP_AMP, - ACTIONS(11916), 1, + ACTIONS(11872), 1, anon_sym_AMP, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3681), 1, + STATE(4913), 1, sym__type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11037), 1, + STATE(11298), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(6199), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7084), 2, + STATE(7053), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -607943,64 +607066,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [177866] = 3, + [177326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3662), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + ACTIONS(9019), 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___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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [177919] = 3, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9021), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [177379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 3, + ACTIONS(3662), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3626), 42, + ACTIONS(3660), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -608043,110 +607166,55 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [177972] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11918), 1, - sym_ms_restrict_modifier, - STATE(6387), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(11921), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11924), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6210), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(6942), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6944), 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, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_GT2, - anon_sym_try, - anon_sym_requires, - [178035] = 21, + [177432] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - ACTIONS(11912), 1, + ACTIONS(11868), 1, anon_sym_STAR, - ACTIONS(11914), 1, + ACTIONS(11870), 1, anon_sym_AMP_AMP, - ACTIONS(11916), 1, + ACTIONS(11872), 1, anon_sym_AMP, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3694), 1, + STATE(4966), 1, sym__type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11037), 1, + STATE(11298), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7134), 2, + STATE(7056), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -608166,14 +607234,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178124] = 3, + [177521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9023), 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_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(9025), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [177574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4194), 3, + ACTIONS(3642), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(4192), 42, + ACTIONS(3640), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -608216,55 +607334,55 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [178177] = 21, + [177627] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11878), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11880), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11882), 1, + ACTIONS(11862), 1, + sym_primitive_type, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(11884), 1, + ACTIONS(11876), 1, anon_sym_AMP_AMP, - ACTIONS(11886), 1, + ACTIONS(11878), 1, anon_sym_AMP, - ACTIONS(11890), 1, - sym_primitive_type, - STATE(3497), 1, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4704), 1, + STATE(3685), 1, sym__type_declarator, - STATE(5448), 1, - sym_pointer_type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11657), 1, + STATE(11034), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7005), 2, + STATE(6933), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11888), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5436), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -608284,55 +607402,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178266] = 21, + [177716] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11856), 1, + ACTIONS(11880), 1, sym_identifier, - ACTIONS(11858), 1, + ACTIONS(11882), 1, anon_sym_LPAREN2, - ACTIONS(11860), 1, + ACTIONS(11884), 1, anon_sym_STAR, - ACTIONS(11862), 1, + ACTIONS(11886), 1, anon_sym_AMP_AMP, - ACTIONS(11864), 1, + ACTIONS(11888), 1, anon_sym_AMP, - ACTIONS(11870), 1, + ACTIONS(11892), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8251), 1, + STATE(4937), 1, sym__type_declarator, - STATE(8576), 1, + STATE(5693), 1, sym_pointer_type_declarator, - STATE(11686), 1, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11715), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6199), 2, + STATE(6237), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7172), 2, + STATE(7052), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11868), 4, + ACTIONS(11890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8574), 5, + STATE(5687), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -608352,44 +607470,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178355] = 17, + [177805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7347), 1, + ACTIONS(3343), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3338), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(10363), 1, + 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [177858] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7369), 1, + anon_sym___attribute, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(11174), 1, + ACTIONS(11173), 1, anon_sym_STAR, - ACTIONS(11176), 1, + ACTIONS(11175), 1, anon_sym_AMP_AMP, - ACTIONS(11178), 1, + ACTIONS(11177), 1, anon_sym_AMP, - ACTIONS(11186), 1, + ACTIONS(11185), 1, anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(8314), 1, + STATE(4345), 1, + sym_parameter_list, + STATE(8341), 1, sym__function_declarator_seq, - STATE(8387), 1, + STATE(8431), 1, sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4109), 2, + STATE(4044), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -608402,7 +607570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7345), 13, + ACTIONS(7371), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -608416,14 +607584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [178436] = 3, + [177939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 3, + ACTIONS(3524), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3662), 42, + ACTIONS(3522), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -608466,65 +607634,78 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [178489] = 4, + [177992] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(11927), 1, + ACTIONS(7373), 1, + anon_sym___attribute, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(9027), 14, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(11173), 1, + anon_sym_STAR, + ACTIONS(11175), 1, + anon_sym_AMP_AMP, + ACTIONS(11177), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym___attribute, + ACTIONS(11185), 1, anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(9029), 30, - anon_sym_DOT_DOT_DOT, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4345), 1, + sym_parameter_list, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8432), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6212), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7375), 13, 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_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [178544] = 3, + [178073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 3, + ACTIONS(3760), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3618), 42, + ACTIONS(3758), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -608567,55 +607748,119 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [178597] = 21, + [178126] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6841), 1, + anon_sym___attribute, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, + anon_sym_LPAREN2, + ACTIONS(11173), 1, + anon_sym_STAR, + ACTIONS(11175), 1, + anon_sym_AMP_AMP, + ACTIONS(11177), 1, + anon_sym_AMP, + ACTIONS(11185), 1, + anon_sym_LBRACK, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4345), 1, + sym_parameter_list, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8434), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(6843), 13, + 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_GT2, + anon_sym_try, + anon_sym_requires, + [178207] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11929), 1, + ACTIONS(11894), 1, sym_identifier, - ACTIONS(11931), 1, + ACTIONS(11896), 1, anon_sym_LPAREN2, - ACTIONS(11933), 1, + ACTIONS(11898), 1, anon_sym_STAR, - ACTIONS(11935), 1, + ACTIONS(11900), 1, anon_sym_AMP_AMP, - ACTIONS(11937), 1, + ACTIONS(11902), 1, anon_sym_AMP, - ACTIONS(11941), 1, + ACTIONS(11906), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4859), 1, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8260), 1, sym__type_declarator, - STATE(5594), 1, + STATE(8546), 1, sym_pointer_type_declarator, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11053), 1, + STATE(11001), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7103), 2, + STATE(7137), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11939), 4, + ACTIONS(11904), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5593), 5, + STATE(8542), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -608635,155 +607880,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178686] = 3, + [178296] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11894), 1, + sym_identifier, + ACTIONS(11896), 1, + anon_sym_LPAREN2, + ACTIONS(11898), 1, + anon_sym_STAR, + ACTIONS(11900), 1, + anon_sym_AMP_AMP, + ACTIONS(11902), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(11906), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8339), 1, + sym__type_declarator, + STATE(8546), 1, + sym_pointer_type_declarator, + STATE(11001), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11858), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6210), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7128), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11777), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11904), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8542), 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, + [178385] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7343), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8891), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, anon_sym_LPAREN2, + ACTIONS(11173), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11175), 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(11177), 1, + anon_sym_AMP, + ACTIONS(11185), 1, + anon_sym_LBRACK, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4345), 1, + sym_parameter_list, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8435), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7341), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [178739] = 3, + [178466] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11908), 1, + sym_identifier, + ACTIONS(11910), 1, + anon_sym_LPAREN2, + ACTIONS(11912), 1, + anon_sym_STAR, + ACTIONS(11914), 1, + anon_sym_AMP_AMP, + ACTIONS(11916), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(11920), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4887), 1, + sym__type_declarator, + STATE(5546), 1, + sym_pointer_type_declarator, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(11300), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11858), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7029), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11777), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11918), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5695), 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, + [178555] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7347), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8899), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, anon_sym_LPAREN2, + ACTIONS(11173), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11175), 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(11177), 1, + anon_sym_AMP, + ACTIONS(11185), 1, + anon_sym_LBRACK, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4345), 1, + sym_parameter_list, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8436), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(7345), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [178792] = 21, + [178636] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11878), 1, + ACTIONS(11894), 1, sym_identifier, - ACTIONS(11880), 1, + ACTIONS(11896), 1, anon_sym_LPAREN2, - ACTIONS(11882), 1, + ACTIONS(11898), 1, anon_sym_STAR, - ACTIONS(11884), 1, + ACTIONS(11900), 1, anon_sym_AMP_AMP, - ACTIONS(11886), 1, + ACTIONS(11902), 1, anon_sym_AMP, - ACTIONS(11890), 1, + ACTIONS(11906), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4704), 1, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8260), 1, sym__type_declarator, - STATE(5448), 1, + STATE(8546), 1, sym_pointer_type_declarator, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11657), 1, + STATE(11001), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6198), 2, + STATE(6232), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7005), 2, + STATE(7137), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11888), 4, + ACTIONS(11904), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5436), 5, + STATE(8542), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -608803,55 +608212,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178881] = 21, + [178725] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11922), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11924), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11926), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11928), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11930), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11934), 1, sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8446), 1, + STATE(4645), 1, sym__type_declarator, - STATE(11156), 1, + STATE(5349), 1, + sym_pointer_type_declarator, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10861), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6247), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7095), 2, + STATE(7172), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, + ACTIONS(11932), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(5346), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -608871,62 +608280,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [178970] = 21, + [178814] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11929), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11931), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11933), 1, + ACTIONS(11862), 1, + sym_primitive_type, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(11935), 1, + ACTIONS(11876), 1, anon_sym_AMP_AMP, - ACTIONS(11937), 1, + ACTIONS(11878), 1, anon_sym_AMP, - ACTIONS(11941), 1, - sym_primitive_type, - STATE(3497), 1, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, sym_alignas_qualifier, - STATE(5022), 1, + STATE(3685), 1, sym__type_declarator, - STATE(5594), 1, - sym_pointer_type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11053), 1, + STATE(11034), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6219), 2, + STATE(6252), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7054), 2, + STATE(6933), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11939), 4, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, + [178903] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8949), 12, + 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___asm, + anon_sym_DOT, + ACTIONS(8951), 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___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [178956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8919), 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_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8921), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [179009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3305), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3300), 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, - STATE(5593), 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -608939,82 +608486,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179059] = 21, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [179062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(8945), 12, + 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___asm, + anon_sym_DOT, + ACTIONS(8947), 33, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11914), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11916), 1, - anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3681), 1, - sym__type_declarator, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11037), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6211), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7084), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [179148] = 3, + anon_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_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [179115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 3, + ACTIONS(3516), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3310), 42, + ACTIONS(3514), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -609057,14 +608598,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [179201] = 3, + [179168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 3, + ACTIONS(3520), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3600), 42, + ACTIONS(3518), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -609107,14 +608648,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [179254] = 3, + [179221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 3, + ACTIONS(3520), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3622), 42, + ACTIONS(3518), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -609157,14 +608698,69 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [179307] = 3, + [179274] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11936), 1, + sym_ms_restrict_modifier, + STATE(6374), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(11939), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11942), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6225), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(6917), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(6919), 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, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_GT2, + anon_sym_try, + anon_sym_requires, + [179337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 3, + ACTIONS(3670), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3600), 42, + ACTIONS(3668), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -609207,55 +608803,55 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [179360] = 21, + [179390] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11929), 1, + ACTIONS(11908), 1, sym_identifier, - ACTIONS(11931), 1, + ACTIONS(11910), 1, anon_sym_LPAREN2, - ACTIONS(11933), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11935), 1, + ACTIONS(11914), 1, anon_sym_AMP_AMP, - ACTIONS(11937), 1, + ACTIONS(11916), 1, anon_sym_AMP, - ACTIONS(11941), 1, + ACTIONS(11920), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4859), 1, + STATE(4872), 1, sym__type_declarator, - STATE(5594), 1, + STATE(5546), 1, sym_pointer_type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11053), 1, + STATE(11300), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6243), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7103), 2, + STATE(6995), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11939), 4, + ACTIONS(11918), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5593), 5, + STATE(5695), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -609275,62 +608871,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179449] = 21, + [179479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, - anon_sym_STAR, - ACTIONS(11908), 1, - anon_sym_AMP_AMP, - ACTIONS(11910), 1, - anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4975), 1, - sym__type_declarator, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(11304), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(11866), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7118), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, + ACTIONS(3598), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3596), 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, - STATE(3152), 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -609343,62 +608909,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179538] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11943), 1, - sym_identifier, - ACTIONS(11945), 1, - anon_sym_LPAREN2, - ACTIONS(11947), 1, - anon_sym_STAR, - ACTIONS(11949), 1, - anon_sym_AMP_AMP, - ACTIONS(11951), 1, - anon_sym_AMP, - ACTIONS(11955), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4997), 1, - sym__type_declarator, - STATE(5644), 1, - sym_pointer_type_declarator, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(10893), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6259), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7125), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11953), 4, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [179532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3646), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3644), 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, - STATE(5575), 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_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -609411,14 +608959,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [179627] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [179585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3680), 3, + ACTIONS(3197), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3678), 42, + ACTIONS(3192), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -609461,45 +609021,33 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [179680] = 17, + [179638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7349), 1, + ACTIONS(3662), 3, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(3660), 42, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, anon_sym___attribute, - ACTIONS(10363), 1, + 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(11172), 1, - anon_sym_LPAREN2, - ACTIONS(11174), 1, - anon_sym_STAR, - ACTIONS(11176), 1, - anon_sym_AMP_AMP, - ACTIONS(11178), 1, - anon_sym_AMP, - ACTIONS(11186), 1, - anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8382), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10352), 12, - anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -609511,59 +609059,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7351), 13, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [179761] = 17, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + anon_sym_enum, + anon_sym_class, + anon_sym_struct, + anon_sym_union, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [179691] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7341), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11894), 1, + sym_identifier, + ACTIONS(11896), 1, anon_sym_LPAREN2, - ACTIONS(11174), 1, + ACTIONS(11898), 1, anon_sym_STAR, - ACTIONS(11176), 1, + ACTIONS(11900), 1, anon_sym_AMP_AMP, - ACTIONS(11178), 1, + ACTIONS(11902), 1, anon_sym_AMP, - ACTIONS(11186), 1, - anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(4333), 1, + ACTIONS(11906), 1, + sym_primitive_type, + STATE(3492), 1, sym_alignas_qualifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8384), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8334), 1, + sym__type_declarator, + STATE(8546), 1, + sym_pointer_type_declarator, + STATE(11001), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6260), 2, + ACTIONS(11858), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7163), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10352), 12, + ACTIONS(11777), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11904), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8542), 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, @@ -609575,39 +609139,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7343), 13, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [179842] = 3, + [179780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8889), 14, + ACTIONS(8919), 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_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(8891), 31, + ACTIONS(8921), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -609618,59 +609166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym___attribute__, - anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [179895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8897), 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_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(8899), 31, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -609687,57 +609188,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [179948] = 21, + [179833] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11878), 1, - sym_identifier, ACTIONS(11880), 1, - anon_sym_LPAREN2, + sym_identifier, ACTIONS(11882), 1, - anon_sym_STAR, + anon_sym_LPAREN2, ACTIONS(11884), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(11886), 1, + anon_sym_AMP_AMP, + ACTIONS(11888), 1, anon_sym_AMP, - ACTIONS(11890), 1, + ACTIONS(11892), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4646), 1, + STATE(4785), 1, sym__type_declarator, - STATE(5448), 1, + STATE(5693), 1, sym_pointer_type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11657), 1, + STATE(11715), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6213), 2, + STATE(6250), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7168), 2, + STATE(7051), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11888), 4, + ACTIONS(11890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5436), 5, + STATE(5687), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -609757,55 +609257,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180037] = 21, + [179922] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11943), 1, + ACTIONS(11908), 1, sym_identifier, - ACTIONS(11945), 1, + ACTIONS(11910), 1, anon_sym_LPAREN2, - ACTIONS(11947), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11949), 1, + ACTIONS(11914), 1, anon_sym_AMP_AMP, - ACTIONS(11951), 1, + ACTIONS(11916), 1, anon_sym_AMP, - ACTIONS(11955), 1, + ACTIONS(11920), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4997), 1, + STATE(4843), 1, sym__type_declarator, - STATE(5644), 1, + STATE(5546), 1, sym_pointer_type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(10893), 1, + STATE(11300), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(6227), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7125), 2, + STATE(7145), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11953), 4, + ACTIONS(11918), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5575), 5, + STATE(5695), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -609825,105 +609325,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3389), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3384), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [180179] = 21, + [180011] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11922), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11924), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11912), 1, + ACTIONS(11926), 1, anon_sym_STAR, - ACTIONS(11914), 1, + ACTIONS(11928), 1, anon_sym_AMP_AMP, - ACTIONS(11916), 1, + ACTIONS(11930), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + ACTIONS(11934), 1, + sym_primitive_type, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3696), 1, + STATE(4633), 1, sym__type_declarator, - STATE(6178), 1, + STATE(5349), 1, + sym_pointer_type_declarator, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11037), 1, + STATE(10861), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6207), 2, + STATE(6245), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(6961), 2, + STATE(7170), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, + ACTIONS(11932), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(5346), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -609943,55 +609393,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180268] = 21, + [180100] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11880), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11882), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, + ACTIONS(11884), 1, anon_sym_STAR, - ACTIONS(11908), 1, + ACTIONS(11886), 1, anon_sym_AMP_AMP, - ACTIONS(11910), 1, + ACTIONS(11888), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + ACTIONS(11892), 1, + sym_primitive_type, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4955), 1, + STATE(4785), 1, sym__type_declarator, - STATE(6178), 1, + STATE(5693), 1, + sym_pointer_type_declarator, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11304), 1, + STATE(11715), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6231), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7117), 2, + STATE(7051), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, + ACTIONS(11890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(5687), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -610011,55 +609461,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180357] = 21, + [180189] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11929), 1, + ACTIONS(11908), 1, sym_identifier, - ACTIONS(11931), 1, + ACTIONS(11910), 1, anon_sym_LPAREN2, - ACTIONS(11933), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11935), 1, + ACTIONS(11914), 1, anon_sym_AMP_AMP, - ACTIONS(11937), 1, + ACTIONS(11916), 1, anon_sym_AMP, - ACTIONS(11941), 1, + ACTIONS(11920), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, STATE(4872), 1, sym__type_declarator, - STATE(5594), 1, + STATE(5546), 1, sym_pointer_type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11053), 1, + STATE(11300), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(6213), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7119), 2, + STATE(6995), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11939), 4, + ACTIONS(11918), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5593), 5, + STATE(5695), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -610079,14 +609529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180446] = 3, + [180278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 3, + ACTIONS(3666), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3666), 42, + ACTIONS(3664), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -610129,33 +609579,45 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [180499] = 3, + [180331] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 3, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(3604), 42, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, + ACTIONS(7365), 1, 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, + ACTIONS(10381), 1, anon_sym_const, + ACTIONS(11171), 1, + anon_sym_LPAREN2, + ACTIONS(11173), 1, + anon_sym_STAR, + ACTIONS(11175), 1, + anon_sym_AMP_AMP, + ACTIONS(11177), 1, + anon_sym_AMP, + ACTIONS(11185), 1, + anon_sym_LBRACK, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4345), 1, + sym_parameter_list, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8428), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6205), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(10370), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -610167,117 +609629,137 @@ 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [180552] = 3, + ACTIONS(7367), 13, + 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_GT2, + anon_sym_try, + anon_sym_requires, + [180412] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 12, - 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___asm, - anon_sym_DOT, - ACTIONS(8940), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6455), 1, anon_sym_LPAREN2, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11945), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11947), 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___attribute__, - anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(11949), 1, + anon_sym_AMP, + STATE(5191), 1, + sym_parameter_list, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8962), 1, + sym__abstract_declarator, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6244), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7031), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6815), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [180605] = 21, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [180501] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(8430), 1, + STATE(8410), 1, sym__type_declarator, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(6247), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7096), 2, + STATE(7020), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -610297,10 +609779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [180694] = 3, + [180590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 12, + ACTIONS(9019), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -610313,7 +609795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym___asm, anon_sym_DOT, - ACTIONS(9009), 33, + ACTIONS(9021), 33, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -610347,115 +609829,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [180747] = 4, + [180643] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11957), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(9027), 12, - 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(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, anon_sym_LBRACK, - anon_sym___asm, - anon_sym_DOT, - ACTIONS(9029), 32, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11945), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11947), 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___attribute__, - anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(11949), 1, + anon_sym_AMP, + STATE(5191), 1, + sym_parameter_list, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8945), 1, + sym__abstract_declarator, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7032), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6843), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [180802] = 3, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [180732] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 12, - 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___asm, - anon_sym_DOT, - ACTIONS(8981), 33, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11922), 1, + sym_identifier, + ACTIONS(11924), 1, anon_sym_LPAREN2, + ACTIONS(11926), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11928), 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___attribute__, - anon_sym_LBRACK_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_asm, - anon_sym___asm__, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [180855] = 3, + ACTIONS(11930), 1, + anon_sym_AMP, + ACTIONS(11934), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4733), 1, + sym__type_declarator, + STATE(5349), 1, + sym_pointer_type_declarator, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10861), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11858), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7027), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11777), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11932), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5346), 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, + [180821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4284), 3, + ACTIONS(3536), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(4282), 42, + ACTIONS(3534), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -610498,119 +610015,55 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [180908] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6821), 1, - anon_sym___attribute, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, - anon_sym_LPAREN2, - ACTIONS(11174), 1, - anon_sym_STAR, - ACTIONS(11176), 1, - anon_sym_AMP_AMP, - ACTIONS(11178), 1, - anon_sym_AMP, - ACTIONS(11186), 1, - anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8385), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(6823), 13, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [180989] = 21, + [180874] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(8430), 1, + STATE(8392), 1, sym__type_declarator, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6202), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7096), 2, + STATE(7023), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -610630,14 +610083,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181078] = 3, + [180963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3660), 3, + ACTIONS(3666), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3658), 42, + ACTIONS(3664), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -610680,55 +610133,105 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [181131] = 21, + [181016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9023), 12, + 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___asm, + anon_sym_DOT, + ACTIONS(9025), 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___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [181069] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11943), 1, + ACTIONS(11880), 1, sym_identifier, - ACTIONS(11945), 1, + ACTIONS(11882), 1, anon_sym_LPAREN2, - ACTIONS(11947), 1, + ACTIONS(11884), 1, anon_sym_STAR, - ACTIONS(11949), 1, + ACTIONS(11886), 1, anon_sym_AMP_AMP, - ACTIONS(11951), 1, + ACTIONS(11888), 1, anon_sym_AMP, - ACTIONS(11955), 1, + ACTIONS(11892), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4963), 1, + STATE(4959), 1, sym__type_declarator, - STATE(5644), 1, + STATE(5693), 1, sym_pointer_type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(10893), 1, + STATE(11715), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6239), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7024), 2, + STATE(7014), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11953), 4, + ACTIONS(11890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5575), 5, + STATE(5687), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -610748,48 +610251,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181220] = 11, + [181158] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - STATE(4730), 1, - sym_field_declaration_list, - STATE(4978), 1, - sym_attribute_specifier, - STATE(9508), 1, - sym_virtual_specifier, - STATE(10399), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7237), 5, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, anon_sym_LPAREN2, + ACTIONS(11852), 1, anon_sym_STAR, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(7235), 30, + ACTIONS(11856), 1, anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8408), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11858), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7026), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11777), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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_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, @@ -610802,59 +610319,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_operator, - [181289] = 21, + [181247] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - ACTIONS(11906), 1, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(11908), 1, + ACTIONS(11876), 1, anon_sym_AMP_AMP, - ACTIONS(11910), 1, + ACTIONS(11878), 1, anon_sym_AMP, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4933), 1, + STATE(3674), 1, sym__type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(11304), 1, + STATE(11034), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(6206), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7116), 2, + STATE(7122), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -610874,55 +610387,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181378] = 21, + [181336] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11856), 1, + ACTIONS(11922), 1, sym_identifier, - ACTIONS(11858), 1, + ACTIONS(11924), 1, anon_sym_LPAREN2, - ACTIONS(11860), 1, + ACTIONS(11926), 1, anon_sym_STAR, - ACTIONS(11862), 1, + ACTIONS(11928), 1, anon_sym_AMP_AMP, - ACTIONS(11864), 1, + ACTIONS(11930), 1, anon_sym_AMP, - ACTIONS(11870), 1, + ACTIONS(11934), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8266), 1, + STATE(4733), 1, sym__type_declarator, - STATE(8576), 1, + STATE(5349), 1, sym_pointer_type_declarator, - STATE(11686), 1, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(10861), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(6216), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7078), 2, + STATE(7027), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11868), 4, + ACTIONS(11932), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8574), 5, + STATE(5346), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -610942,55 +610455,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181467] = 21, + [181425] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11943), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11945), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11947), 1, + ACTIONS(11862), 1, + sym_primitive_type, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(11949), 1, + ACTIONS(11876), 1, anon_sym_AMP_AMP, - ACTIONS(11951), 1, + ACTIONS(11878), 1, anon_sym_AMP, - ACTIONS(11955), 1, - sym_primitive_type, - STATE(3497), 1, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4850), 1, + STATE(3642), 1, sym__type_declarator, - STATE(5644), 1, - sym_pointer_type_declarator, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(10893), 1, + STATE(11034), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11866), 2, + ACTIONS(11858), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(6202), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7161), 2, + STATE(7155), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11787), 3, + ACTIONS(11777), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11953), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5575), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -611010,45 +610523,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181556] = 17, + [181514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(8949), 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, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + anon_sym_LBRACK, + anon_sym___asm, + anon_sym_DOT, + ACTIONS(8951), 31, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK_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_asm, + anon_sym___asm__, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [181567] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + STATE(4635), 1, + sym_field_declaration_list, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9576), 1, + sym_virtual_specifier, + STATE(10403), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7256), 5, anon_sym_LPAREN2, - ACTIONS(11174), 1, anon_sym_STAR, - ACTIONS(11176), 1, anon_sym_AMP_AMP, - ACTIONS(11178), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(7254), 30, anon_sym_AMP, - ACTIONS(11186), 1, - anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8386), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(10352), 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, @@ -611060,28 +610627,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(7355), 13, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [181637] = 3, + anon_sym_alignas, + anon_sym__Alignas, + sym_identifier, + anon_sym_operator, + [181636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3620), 3, + ACTIONS(3642), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3618), 42, + ACTIONS(3640), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -611124,14 +610681,14 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [181690] = 3, + [181689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3345), 3, + ACTIONS(4369), 3, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(3340), 42, + ACTIONS(4367), 42, anon_sym___extension__, anon_sym_virtual, anon_sym_extern, @@ -611174,44 +610731,665 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_template, - [181743] = 17, + [181742] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(7824), 1, + anon_sym_requires, + ACTIONS(10147), 1, + anon_sym_DASH_GT, + STATE(6356), 1, + sym_trailing_return_type, + ACTIONS(7818), 2, + anon_sym_final, + anon_sym_override, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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(7970), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [181806] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9981), 1, + anon_sym_DASH_GT, + ACTIONS(9987), 1, + anon_sym_requires, + STATE(6366), 1, + sym_trailing_return_type, + ACTIONS(9984), 2, + anon_sym_final, + anon_sym_override, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6616), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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(7874), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [181870] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5651), 1, + anon_sym_decltype, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(10596), 1, + sym_auto, + STATE(4819), 1, + sym_decltype_auto, + ACTIONS(7248), 6, + anon_sym_LPAREN2, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(7246), 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_LBRACK, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_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_template, + anon_sym_operator, + [181930] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10127), 1, + anon_sym_DASH_GT, + ACTIONS(10144), 1, + anon_sym_requires, + STATE(6307), 1, + sym_trailing_return_type, + ACTIONS(10141), 2, + anon_sym_final, + anon_sym_override, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6603), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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(7970), 24, + 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_GT2, + [181994] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7824), 1, + anon_sym_requires, + ACTIONS(9981), 1, + anon_sym_DASH_GT, + STATE(6306), 1, + sym_trailing_return_type, + ACTIONS(7818), 2, + anon_sym_final, + anon_sym_override, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6616), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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(7874), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [182058] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8597), 1, + anon_sym_LPAREN2, + ACTIONS(8613), 1, + anon_sym_LBRACK, + ACTIONS(8909), 1, + anon_sym_STAR, + ACTIONS(8911), 1, + anon_sym_AMP_AMP, + ACTIONS(8913), 1, + anon_sym_AMP, + STATE(2244), 1, + sym_parameter_list, + STATE(6602), 1, + sym__function_declarator_seq, + STATE(6742), 1, + sym__abstract_declarator, + STATE(6601), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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(9281), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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_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, + [182128] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11951), 1, + anon_sym_DASH_GT, + ACTIONS(11957), 1, + anon_sym_requires, + STATE(6304), 1, + sym_trailing_return_type, + ACTIONS(11954), 2, + anon_sym_final, + anon_sym_override, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6632), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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(8989), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [182192] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10587), 1, + anon_sym_DASH_GT, + ACTIONS(10593), 1, + anon_sym_requires, + STATE(6355), 1, + sym_trailing_return_type, + ACTIONS(10590), 2, + anon_sym_final, + anon_sym_override, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6630), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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(8402), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [182256] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7941), 1, + anon_sym_requires, + ACTIONS(10025), 1, + anon_sym_DASH_GT, + STATE(6329), 1, + sym_trailing_return_type, + ACTIONS(7939), 2, + anon_sym_final, + anon_sym_override, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6568), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 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(7874), 24, + 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_GT2, + [182320] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8568), 1, + anon_sym_LPAREN2, + ACTIONS(8584), 1, + anon_sym_LBRACK, + ACTIONS(8978), 1, + anon_sym_STAR, + ACTIONS(8980), 1, + anon_sym_AMP_AMP, + ACTIONS(8982), 1, + anon_sym_AMP, + STATE(2275), 1, + sym_parameter_list, + STATE(6695), 1, + sym__function_declarator_seq, + STATE(6908), 1, + sym__abstract_declarator, + STATE(6694), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9279), 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(9281), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + 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, + anon_sym_GT2, + [182390] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, + anon_sym_LBRACK, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(4676), 1, + sym_parameter_list, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9000), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6283), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7332), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6815), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [182478] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7369), 1, anon_sym___asm, - ACTIONS(10363), 1, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(11185), 1, anon_sym_LBRACK, - ACTIONS(11598), 1, + ACTIONS(11615), 1, anon_sym_STAR, - ACTIONS(11600), 1, + ACTIONS(11617), 1, anon_sym_AMP_AMP, - ACTIONS(11602), 1, + ACTIONS(11619), 1, anon_sym_AMP, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(4562), 1, + STATE(4616), 1, sym_parameter_list, - STATE(8314), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(8477), 1, + STATE(8458), 1, sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4109), 2, + STATE(4044), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7355), 12, + ACTIONS(7371), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -611224,7 +611402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -611237,44 +611415,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181823] = 17, + [182558] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(7347), 1, + ACTIONS(7373), 1, anon_sym___asm, - ACTIONS(10363), 1, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(11185), 1, anon_sym_LBRACK, - ACTIONS(11598), 1, + ACTIONS(11615), 1, anon_sym_STAR, - ACTIONS(11600), 1, + ACTIONS(11617), 1, anon_sym_AMP_AMP, - ACTIONS(11602), 1, + ACTIONS(11619), 1, anon_sym_AMP, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(4562), 1, + STATE(4616), 1, sym_parameter_list, - STATE(8314), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(8494), 1, + STATE(8460), 1, sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4109), 2, + STATE(6275), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7345), 12, + ACTIONS(7375), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -611287,7 +611465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -611300,61 +611478,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181903] = 21, + [182638] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6841), 1, + anon_sym___asm, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(6463), 1, + ACTIONS(11185), 1, + anon_sym_LBRACK, + ACTIONS(11615), 1, anon_sym_STAR, - ACTIONS(6465), 1, + ACTIONS(11617), 1, anon_sym_AMP_AMP, - ACTIONS(6467), 1, + ACTIONS(11619), 1, anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(2726), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(4706), 1, + STATE(4616), 1, sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(8989), 1, + STATE(8442), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6266), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7257), 2, + STATE(4044), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6859), 5, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6843), 12, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(8596), 5, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [182718] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7941), 1, + anon_sym_requires, + ACTIONS(10127), 1, + anon_sym_DASH_GT, + STATE(6295), 1, + sym_trailing_return_type, + ACTIONS(7939), 2, + anon_sym_final, + anon_sym_override, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6603), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 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(7970), 24, + 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_GT2, + [182782] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11960), 1, + anon_sym_AMP_AMP, + ACTIONS(11962), 1, + anon_sym_and, + ACTIONS(9329), 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_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(9331), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [182838] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7343), 1, + anon_sym___asm, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, + anon_sym_LPAREN2, + ACTIONS(11185), 1, + anon_sym_LBRACK, + ACTIONS(11615), 1, + anon_sym_STAR, + ACTIONS(11617), 1, + anon_sym_AMP_AMP, + ACTIONS(11619), 1, + anon_sym_AMP, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4616), 1, + sym_parameter_list, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8491), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8117), 12, + ACTIONS(7341), 12, + 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(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -611367,61 +611710,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [181991] = 21, + [182918] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(7347), 1, + anon_sym___asm, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(6463), 1, + ACTIONS(11185), 1, + anon_sym_LBRACK, + ACTIONS(11615), 1, anon_sym_STAR, - ACTIONS(6465), 1, + ACTIONS(11617), 1, anon_sym_AMP_AMP, - ACTIONS(6467), 1, + ACTIONS(11619), 1, anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(2726), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(4706), 1, + STATE(4616), 1, sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(9003), 1, + STATE(8496), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7248), 2, + STATE(4044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 12, + 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(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [182998] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7365), 1, + anon_sym___asm, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(11171), 1, + anon_sym_LPAREN2, + ACTIONS(11185), 1, + anon_sym_LBRACK, + ACTIONS(11615), 1, + anon_sym_STAR, + ACTIONS(11617), 1, + anon_sym_AMP_AMP, + ACTIONS(11619), 1, + anon_sym_AMP, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4616), 1, + sym_parameter_list, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8462), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6270), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6823), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8596), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8117), 12, + ACTIONS(7367), 12, + 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(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -611434,35 +611836,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [182079] = 9, + [183078] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(11959), 1, + ACTIONS(11964), 1, anon_sym_DASH_GT, - STATE(6314), 1, + ACTIONS(11970), 1, + anon_sym_requires, + STATE(6288), 1, sym_trailing_return_type, - ACTIONS(7897), 2, + ACTIONS(11967), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6639), 2, + STATE(6558), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 9, + ACTIONS(8987), 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(8907), 26, + ACTIONS(8989), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611473,11 +611877,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -611489,25 +611890,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182143] = 9, + anon_sym_GT2, + [183142] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10574), 1, - anon_sym_DASH_GT, - ACTIONS(10621), 1, + ACTIONS(7824), 1, anon_sym_requires, - STATE(6318), 1, + ACTIONS(11951), 1, + anon_sym_DASH_GT, + STATE(6314), 1, sym_trailing_return_type, - ACTIONS(10618), 2, + ACTIONS(7818), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6637), 2, + STATE(6632), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 9, + ACTIONS(8987), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611517,7 +611919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8422), 26, + ACTIONS(8989), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611544,25 +611946,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182207] = 9, + [183206] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(10574), 1, + ACTIONS(10147), 1, anon_sym_DASH_GT, - STATE(6319), 1, + ACTIONS(10153), 1, + anon_sym_requires, + STATE(6338), 1, sym_trailing_return_type, - ACTIONS(7897), 2, + ACTIONS(10150), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6637), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 9, + ACTIONS(7972), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611572,7 +611974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8422), 26, + ACTIONS(7970), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611599,37 +612001,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182271] = 9, + [183270] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(7824), 1, anon_sym_requires, - ACTIONS(11962), 1, + ACTIONS(10587), 1, anon_sym_DASH_GT, - STATE(6353), 1, + STATE(6298), 1, sym_trailing_return_type, - ACTIONS(7829), 2, + ACTIONS(7818), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6658), 2, + STATE(6630), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 11, + ACTIONS(8404), 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(8907), 24, + ACTIONS(8402), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611640,8 +612040,11 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -611653,91 +612056,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_GT2, - [182335] = 9, + [183334] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(11960), 1, + anon_sym_AMP_AMP, ACTIONS(11962), 1, - anon_sym_DASH_GT, - ACTIONS(11968), 1, - anon_sym_requires, - STATE(6323), 1, - sym_trailing_return_type, - ACTIONS(11965), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6658), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 11, + anon_sym_and, + ACTIONS(11973), 1, + anon_sym_PIPE_PIPE, + ACTIONS(11975), 1, + anon_sym_or, + ACTIONS(9293), 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_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8907), 24, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(9295), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_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_GT2, - [182399] = 9, + anon_sym_DASH_GT, + [183394] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, + anon_sym_LBRACK, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(4676), 1, + sym_parameter_list, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8994), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(5968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7239), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6843), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [183482] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(7941), 1, anon_sym_requires, - ACTIONS(10116), 1, + ACTIONS(11964), 1, anon_sym_DASH_GT, - STATE(6324), 1, + STATE(6292), 1, sym_trailing_return_type, - ACTIONS(7897), 2, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6558), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 9, + ACTIONS(8987), 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(7966), 26, + ACTIONS(8989), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611748,11 +612217,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -611764,25 +612230,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182463] = 9, + anon_sym_GT2, + [183546] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10605), 1, + ACTIONS(10025), 1, anon_sym_DASH_GT, - ACTIONS(10611), 1, + ACTIONS(10031), 1, anon_sym_requires, - STATE(6357), 1, + STATE(6299), 1, sym_trailing_return_type, - ACTIONS(10608), 2, + ACTIONS(10028), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6641), 2, + STATE(6568), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(7876), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611794,7 +612261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8422), 24, + ACTIONS(7874), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611819,25 +612286,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [182527] = 9, + [183610] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(7941), 1, anon_sym_requires, - ACTIONS(10119), 1, + ACTIONS(10566), 1, anon_sym_DASH_GT, - STATE(6332), 1, + STATE(6354), 1, sym_trailing_return_type, - ACTIONS(7829), 2, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6571), 2, + STATE(6641), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 11, + ACTIONS(8404), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611849,7 +612316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7966), 24, + ACTIONS(8402), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611874,52 +612341,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_GT2, - [182591] = 12, + [183674] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8572), 1, - anon_sym_LPAREN2, - ACTIONS(8588), 1, - anon_sym_LBRACK, - ACTIONS(8964), 1, - anon_sym_STAR, - ACTIONS(8966), 1, - anon_sym_AMP_AMP, - ACTIONS(8968), 1, - anon_sym_AMP, - STATE(2267), 1, - sym_parameter_list, - STATE(6608), 1, - sym__function_declarator_seq, - STATE(6751), 1, - sym__abstract_declarator, - STATE(6607), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 8, + ACTIONS(10566), 1, + anon_sym_DASH_GT, + ACTIONS(10572), 1, + anon_sym_requires, + STATE(6339), 1, + sym_trailing_return_type, + ACTIONS(10569), 2, + anon_sym_final, + anon_sym_override, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6641), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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(9427), 23, + ACTIONS(8402), 24, 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_RBRACK, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -611931,26 +612395,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [182661] = 9, + anon_sym_GT2, + [183738] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(11980), 1, anon_sym_requires, - ACTIONS(9987), 1, - anon_sym_DASH_GT, - STATE(6299), 1, - sym_trailing_return_type, - ACTIONS(7829), 2, + ACTIONS(11977), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6697), 2, + STATE(6560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 11, + ACTIONS(8997), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -611962,7 +612422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7791), 24, + ACTIONS(8999), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -611986,26 +612446,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, anon_sym_GT2, - [182725] = 9, + [183797] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11959), 1, - anon_sym_DASH_GT, - ACTIONS(11974), 1, - anon_sym_requires, - STATE(6305), 1, - sym_trailing_return_type, - ACTIONS(11971), 2, - anon_sym_final, - anon_sym_override, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6639), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 9, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2066), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10221), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612014,11 +612469,21 @@ 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(8907), 26, + sym_identifier, + ACTIONS(10219), 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, @@ -612029,38 +612494,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - 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, + [183856] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11983), 1, + sym_identifier, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(11987), 1, + anon_sym_STAR, + ACTIONS(11989), 1, + anon_sym_AMP_AMP, + ACTIONS(11991), 1, + anon_sym_AMP, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(8605), 1, + sym__field_declarator, + STATE(8822), 1, + sym_operator_name, + STATE(10677), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6325), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7469), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8836), 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(3368), 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, + [183941] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11997), 1, + anon_sym_SLASH, + ACTIONS(11999), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12001), 1, + anon_sym_AMP_AMP, + ACTIONS(12005), 1, + anon_sym_CARET, + ACTIONS(12013), 1, + anon_sym_GT_EQ, + ACTIONS(12017), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12019), 1, anon_sym_or, + ACTIONS(12021), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(12023), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12025), 1, anon_sym_not_eq, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10552), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - [182789] = 9, + ACTIONS(11993), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11995), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12003), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12007), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12009), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12011), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10554), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [184040] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10119), 1, - anon_sym_DASH_GT, - ACTIONS(10161), 1, + ACTIONS(7941), 1, anon_sym_requires, - STATE(6295), 1, - sym_trailing_return_type, - ACTIONS(10158), 2, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6571), 2, + STATE(6560), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 11, + ACTIONS(8997), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612072,7 +612663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7966), 24, + ACTIONS(8999), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612096,26 +612687,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, anon_sym_GT2, - [182853] = 9, + [184099] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10017), 1, - anon_sym_DASH_GT, - ACTIONS(10023), 1, - anon_sym_requires, - STATE(6316), 1, - sym_trailing_return_type, - ACTIONS(10020), 2, - anon_sym_final, - anon_sym_override, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6622), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 9, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, + anon_sym___attribute, + ACTIONS(12027), 1, + anon_sym_COLON, + STATE(4109), 1, + sym_attribute_specifier, + STATE(4317), 1, + sym__enum_base_clause, + STATE(4381), 1, + sym_enumerator_list, + ACTIONS(8007), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612125,7 +612716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7791), 26, + ACTIONS(8009), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612152,83 +612743,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [182917] = 12, + anon_sym_DASH_GT, + [184164] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11983), 1, + sym_identifier, + ACTIONS(11985), 1, anon_sym_LPAREN2, - ACTIONS(8616), 1, - anon_sym_LBRACK, - ACTIONS(8958), 1, + ACTIONS(11987), 1, anon_sym_STAR, - ACTIONS(8960), 1, + ACTIONS(11989), 1, anon_sym_AMP_AMP, - ACTIONS(8962), 1, + ACTIONS(11991), 1, anon_sym_AMP, - STATE(2249), 1, - sym_parameter_list, - STATE(6709), 1, - sym__function_declarator_seq, - STATE(6778), 1, - sym__abstract_declarator, - STATE(6708), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9429), 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(9427), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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, - anon_sym_GT2, - [182987] = 9, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(8599), 1, + sym__field_declarator, + STATE(8822), 1, + sym_operator_name, + STATE(10677), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6359), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7467), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8836), 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(3368), 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, + [184249] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9987), 1, - anon_sym_DASH_GT, - ACTIONS(10082), 1, + ACTIONS(7941), 1, anon_sym_requires, - STATE(6292), 1, - sym_trailing_return_type, - ACTIONS(10079), 2, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6697), 2, + STATE(6641), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 11, + ACTIONS(8404), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612240,7 +612835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7791), 24, + ACTIONS(8402), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612264,45 +612859,174 @@ 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, - [183051] = 5, + [184308] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(11977), 1, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11997), 1, + anon_sym_SLASH, + ACTIONS(11999), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12001), 1, anon_sym_AMP_AMP, - ACTIONS(11979), 1, + ACTIONS(12005), 1, + anon_sym_CARET, + ACTIONS(12013), 1, + anon_sym_GT_EQ, + ACTIONS(12017), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12019), 1, + anon_sym_or, + ACTIONS(12021), 1, anon_sym_and, - ACTIONS(9322), 19, + ACTIONS(12023), 1, + anon_sym_xor, + ACTIONS(12025), 1, + anon_sym_not_eq, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(10467), 2, aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11995), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12003), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12007), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12009), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12011), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10469), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + anon_sym_QMARK, + [184407] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11997), 1, + anon_sym_SLASH, + ACTIONS(12013), 1, + anon_sym_GT_EQ, + ACTIONS(12017), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11993), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11995), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(9621), 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, - anon_sym_DOT, sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9324), 23, + ACTIONS(9623), 12, 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, + [184486] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7824), 1, + anon_sym_requires, + ACTIONS(7818), 2, + anon_sym_final, + anon_sym_override, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6632), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 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(8989), 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, @@ -612310,210 +613034,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, 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, - [183107] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7349), 1, - anon_sym___asm, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, - anon_sym_LPAREN2, - ACTIONS(11186), 1, - anon_sym_LBRACK, - ACTIONS(11598), 1, - anon_sym_STAR, - ACTIONS(11600), 1, - anon_sym_AMP_AMP, - ACTIONS(11602), 1, - anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4562), 1, - sym_parameter_list, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8482), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7351), 12, - 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(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183187] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5667), 1, - anon_sym_decltype, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10614), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(7223), 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_LBRACK, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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_template, - anon_sym_operator, - [183247] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7341), 1, - anon_sym___asm, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, - anon_sym_LPAREN2, - ACTIONS(11186), 1, - anon_sym_LBRACK, - ACTIONS(11598), 1, - anon_sym_STAR, - ACTIONS(11600), 1, - anon_sym_AMP_AMP, - ACTIONS(11602), 1, - anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4562), 1, - sym_parameter_list, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8485), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6263), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7343), 12, - 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(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183327] = 9, + [184545] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(10144), 1, anon_sym_requires, - ACTIONS(10605), 1, - anon_sym_DASH_GT, - STATE(6294), 1, - sym_trailing_return_type, - ACTIONS(7829), 2, + ACTIONS(10141), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6641), 2, + STATE(6603), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(7972), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612525,7 +613073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8422), 24, + ACTIONS(7970), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612549,83 +613097,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, anon_sym_GT2, - [183391] = 17, + [184604] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6821), 1, - anon_sym___asm, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(11598), 1, - anon_sym_STAR, - ACTIONS(11600), 1, - anon_sym_AMP_AMP, - ACTIONS(11602), 1, - anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4562), 1, + STATE(2077), 1, sym_parameter_list, - STATE(8314), 1, + STATE(5465), 1, sym__function_declarator_seq, - STATE(8499), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6823), 12, - 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(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183471] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11977), 1, - anon_sym_AMP_AMP, - ACTIONS(11979), 1, - anon_sym_and, - ACTIONS(11981), 1, - anon_sym_PIPE_PIPE, - ACTIONS(11983), 1, - anon_sym_or, - ACTIONS(9393), 18, - aux_sym_preproc_elif_token1, + ACTIONS(10262), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612634,120 +613119,50 @@ static const uint16_t ts_small_parse_table[] = { 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_COLON, anon_sym_DOT, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(9395), 22, + ACTIONS(10260), 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_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_LBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + 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, - [183531] = 17, + anon_sym_COLON_RBRACK, + [184663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7393), 1, - anon_sym___asm, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(11598), 1, - anon_sym_STAR, - ACTIONS(11600), 1, - anon_sym_AMP_AMP, - ACTIONS(11602), 1, - anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4562), 1, + STATE(2077), 1, sym_parameter_list, - STATE(8314), 1, + STATE(5465), 1, sym__function_declarator_seq, - STATE(8487), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6283), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7391), 12, - 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(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [183611] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10116), 1, - anon_sym_DASH_GT, - ACTIONS(10137), 1, - anon_sym_requires, - STATE(6363), 1, - sym_trailing_return_type, - ACTIONS(10134), 2, - anon_sym_final, - anon_sym_override, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 9, + ACTIONS(10229), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612756,11 +613171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7966), 26, + ACTIONS(10227), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -612771,8 +613187,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -612784,25 +613201,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [183675] = 9, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [184722] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(10017), 1, - anon_sym_DASH_GT, - STATE(6306), 1, - sym_trailing_return_type, - ACTIONS(7897), 2, - anon_sym_final, - anon_sym_override, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6622), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 9, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2077), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10243), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -612811,11 +613223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(7791), 26, + ACTIONS(10241), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -612826,8 +613239,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -612839,36 +613253,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, - [183739] = 7, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [184781] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10161), 1, - anon_sym_requires, - ACTIONS(10158), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6571), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 11, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2277), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10225), 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(7966), 25, + ACTIONS(10223), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -612876,8 +613287,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -612890,99 +613304,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [183798] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, - anon_sym_STAR, - ACTIONS(11991), 1, - anon_sym_AMP_AMP, - ACTIONS(11993), 1, - anon_sym_AMP, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(8612), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10687), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6427), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7429), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8839), 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(3270), 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, - [183883] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [184840] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(12032), 1, anon_sym_requires, - ACTIONS(7829), 2, + ACTIONS(12029), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6658), 2, + STATE(6634), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 11, + ACTIONS(8997), 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(8907), 25, + ACTIONS(8999), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -612993,8 +613342,11 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -613007,34 +613359,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [184899] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10381), 1, + anon_sym_const, + STATE(4335), 1, + sym_alignas_qualifier, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6870), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(6872), 21, + 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_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, - [183942] = 7, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [184960] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10611), 1, + ACTIONS(7824), 1, anon_sym_requires, - ACTIONS(10608), 2, + ACTIONS(7818), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6641), 2, + STATE(6625), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(7972), 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(8422), 25, + ACTIONS(7970), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -613045,8 +613447,11 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -613059,98 +613464,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [184001] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11995), 1, - sym_identifier, - ACTIONS(11997), 1, - anon_sym_STAR, - ACTIONS(11999), 1, - anon_sym_AMP_AMP, - ACTIONS(12001), 1, - anon_sym_AMP, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(9033), 1, - sym__field_declarator, - STATE(9236), 1, - sym_operator_name, - STATE(11191), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6427), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7433), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8839), 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(3270), 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, - [184086] = 7, + [185019] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2072), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10190), 10, + ACTIONS(10572), 1, + anon_sym_requires, + ACTIONS(10569), 2, + anon_sym_final, + anon_sym_override, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6641), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 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_COLON, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10188), 29, + ACTIONS(8402), 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, @@ -613158,12 +613501,8 @@ 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_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -613176,35 +613515,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [184145] = 13, + anon_sym_GT2, + [185078] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - STATE(3874), 1, + ACTIONS(12017), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 13, + ACTIONS(12015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9621), 13, aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, @@ -613218,7 +613562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(9709), 16, + ACTIONS(9623), 13, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -613231,25 +613575,22 @@ 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_QMARK, - anon_sym_LT_EQ_GT, - [184216] = 7, + [185153] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(10031), 1, anon_sym_requires, - ACTIONS(7829), 2, + ACTIONS(10028), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6571), 2, + STATE(6568), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 11, + ACTIONS(7876), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -613261,7 +613602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(7966), 25, + ACTIONS(7874), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -613287,18 +613628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [184275] = 7, + [185212] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2072), 1, + STATE(2277), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10194), 10, + ACTIONS(10243), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -613307,12 +613648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(10192), 29, + ACTIONS(10241), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -613324,8 +613664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -613338,93 +613677,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [184334] = 29, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [185271] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 1, - anon_sym_SLASH, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(12017), 1, - anon_sym_AMP_AMP, - ACTIONS(12021), 1, - anon_sym_CARET, - ACTIONS(12029), 1, - anon_sym_GT_EQ, - ACTIONS(12033), 1, - anon_sym_QMARK, + ACTIONS(11785), 1, + anon_sym_const, ACTIONS(12035), 1, - anon_sym_LT_EQ_GT, + anon_sym_STAR, ACTIONS(12037), 1, - anon_sym_or, + anon_sym_AMP_AMP, ACTIONS(12039), 1, - anon_sym_and, - ACTIONS(12041), 1, - anon_sym_xor, - ACTIONS(12043), 1, - anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12005), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12009), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(12019), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(12023), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(12025), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(12031), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12027), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(12013), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [184437] = 7, + STATE(4909), 1, + sym_parameter_list, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9016), 1, + sym__abstract_declarator, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6341), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7404), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6815), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [185358] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2072), 1, + STATE(2077), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10198), 10, + ACTIONS(10225), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -613435,7 +613768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_COLON, anon_sym_DOT, - ACTIONS(10196), 29, + ACTIONS(10223), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -613465,141 +613798,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [184496] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - ACTIONS(10114), 1, - anon_sym_LBRACE, - ACTIONS(12045), 1, - anon_sym_COLON, - STATE(4291), 1, - sym__enum_base_clause, - STATE(4328), 1, - sym_enumerator_list, - STATE(4429), 1, - sym_attribute_specifier, - ACTIONS(8006), 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(8008), 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, - [184561] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11995), 1, - sym_identifier, - ACTIONS(11997), 1, - anon_sym_STAR, - ACTIONS(11999), 1, - anon_sym_AMP_AMP, - ACTIONS(12001), 1, - anon_sym_AMP, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(9033), 1, - sym__field_declarator, - STATE(9236), 1, - sym_operator_name, - STATE(11191), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6376), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7433), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8839), 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(3270), 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, - [184646] = 7, + [185417] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12050), 1, + ACTIONS(7824), 1, anon_sym_requires, - ACTIONS(12047), 2, + ACTIONS(7818), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6640), 2, + STATE(6616), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8913), 9, + ACTIONS(7876), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -613609,7 +613822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8915), 27, + ACTIONS(7874), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -613637,21 +613850,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [184705] = 7, + [185476] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(7824), 1, anon_sym_requires, - ACTIONS(7897), 2, + ACTIONS(7818), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6630), 2, + STATE(6634), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 9, + ACTIONS(8997), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -613661,7 +613874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7966), 27, + ACTIONS(8999), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -613689,89 +613902,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [184764] = 25, + [185535] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5659), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 1, - anon_sym_SLASH, - ACTIONS(12017), 1, - anon_sym_AMP_AMP, - ACTIONS(12021), 1, - anon_sym_CARET, - ACTIONS(12029), 1, - anon_sym_GT_EQ, - ACTIONS(12035), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12039), 1, - anon_sym_and, - ACTIONS(12041), 1, - anon_sym_xor, - ACTIONS(12043), 1, - anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(5661), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12019), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(12023), 2, + ACTIONS(5663), 1, + anon_sym_AMP_AMP, + ACTIONS(5665), 1, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(12025), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(12031), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 3, - aux_sym_preproc_elif_token1, - anon_sym_or, + ACTIONS(5669), 1, + anon_sym_LBRACK, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(12027), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 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, - [184859] = 7, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(9281), 1, + anon_sym_RPAREN, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4676), 1, + sym_parameter_list, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8825), 1, + sym__declarator, + STATE(8995), 1, + sym__abstract_declarator, + STATE(11132), 1, + sym_ms_based_modifier, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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, + [185632] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2080), 1, + STATE(2077), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10190), 17, - aux_sym_preproc_elif_token1, + ACTIONS(10233), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -613780,21 +613993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(10188), 22, + ACTIONS(10231), 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_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -613805,40 +614009,104 @@ 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_RBRACK_RBRACK, + 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, - [184918] = 12, + anon_sym_COLON_RBRACK, + [185691] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(6568), 1, + anon_sym_LBRACK, + ACTIONS(10325), 1, + anon_sym_LT, + STATE(6494), 1, + sym_template_argument_list, + ACTIONS(6563), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + ACTIONS(6566), 3, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + ACTIONS(6559), 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, + [185752] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12005), 2, + ACTIONS(11993), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 15, + ACTIONS(9621), 13, aux_sym_preproc_elif_token1, - anon_sym_DASH, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -613851,7 +614119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, sym_identifier, - ACTIONS(9709), 16, + ACTIONS(9623), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -613868,83 +614136,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_QMARK, anon_sym_LT_EQ_GT, - [184987] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, - anon_sym_STAR, - ACTIONS(11991), 1, - anon_sym_AMP_AMP, - ACTIONS(11993), 1, - anon_sym_AMP, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(8638), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10687), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6427), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7459), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8839), 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(3270), 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, - [185072] = 7, + [185823] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2275), 1, + STATE(2066), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10206), 10, + ACTIONS(10229), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -613953,11 +614157,21 @@ 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(10204), 29, + sym_identifier, + ACTIONS(10227), 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, @@ -613968,181 +614182,148 @@ 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_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_requires, - [185131] = 26, + [185882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, + ACTIONS(12043), 1, anon_sym_LPAREN2, - ACTIONS(5619), 1, + ACTIONS(12045), 6, + anon_sym_TILDE, anon_sym_STAR, - ACTIONS(5621), 1, anon_sym_AMP_AMP, - ACTIONS(5623), 1, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACK_COLON, + ACTIONS(12041), 36, anon_sym_AMP, - ACTIONS(5627), 1, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___declspec, + anon_sym___based, anon_sym_LBRACK, - ACTIONS(8228), 1, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(9427), 1, - anon_sym_RPAREN, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4706), 1, - sym_parameter_list, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8831), 1, - sym__declarator, - STATE(8994), 1, - sym__abstract_declarator, - STATE(11554), 1, - sym_ms_based_modifier, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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, - [185228] = 27, + anon_sym_decltype, + anon_sym_explicit, + anon_sym_template, + anon_sym_operator, + [185935] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - ACTIONS(12015), 1, + ACTIONS(11999), 1, anon_sym_PIPE_PIPE, - ACTIONS(12017), 1, + ACTIONS(12001), 1, anon_sym_AMP_AMP, - ACTIONS(12021), 1, + ACTIONS(12005), 1, anon_sym_CARET, - ACTIONS(12029), 1, + ACTIONS(12013), 1, anon_sym_GT_EQ, - ACTIONS(12035), 1, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, - ACTIONS(12037), 1, + ACTIONS(12019), 1, anon_sym_or, - ACTIONS(12039), 1, + ACTIONS(12021), 1, anon_sym_and, - ACTIONS(12041), 1, + ACTIONS(12023), 1, anon_sym_xor, - ACTIONS(12043), 1, + ACTIONS(12025), 1, anon_sym_not_eq, - STATE(3874), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12049), 1, + anon_sym_QMARK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10473), 2, + ACTIONS(9889), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12019), 2, + ACTIONS(12003), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(12023), 2, + ACTIONS(12007), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(12025), 2, + ACTIONS(12009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(12031), 2, + ACTIONS(12015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 7, - anon_sym_DOT_DOT_DOT, + ACTIONS(9891), 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, - [185327] = 7, + [186038] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(7897), 2, - anon_sym_final, - anon_sym_override, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6640), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 9, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2066), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10233), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614151,11 +614332,21 @@ 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(8915), 27, + sym_identifier, + ACTIONS(10231), 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, @@ -614166,50 +614357,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - [185386] = 7, + [186097] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, - anon_sym_requires, - ACTIONS(7829), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6697), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 11, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2277), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10221), 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(7791), 25, + ACTIONS(10219), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -614217,8 +614395,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -614231,94 +614412,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [185445] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10137), 1, - anon_sym_requires, - ACTIONS(10134), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6630), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7968), 9, + anon_sym_requires, + [186156] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11997), 1, + anon_sym_SLASH, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11995), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9621), 13, + aux_sym_preproc_elif_token1, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(7966), 27, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9623), 14, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - 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_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, - [185504] = 8, + [186229] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6574), 1, - anon_sym_LBRACK, - ACTIONS(10320), 1, - anon_sym_LT, - STATE(6491), 1, - sym_template_argument_list, - ACTIONS(6569), 2, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11983), 1, + sym_identifier, + ACTIONS(11985), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - ACTIONS(6572), 3, + ACTIONS(11987), 1, anon_sym_STAR, + ACTIONS(11989), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, - ACTIONS(6565), 34, + ACTIONS(11991), 1, anon_sym_AMP, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(8630), 1, + sym__field_declarator, + STATE(8822), 1, + sym_operator_name, + STATE(10677), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7433), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8836), 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(3368), 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, @@ -614331,27 +614539,18 @@ 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, - [185565] = 7, + [186314] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11974), 1, - anon_sym_requires, - ACTIONS(11971), 2, - anon_sym_final, - anon_sym_override, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6639), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 9, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2077), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10264), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614360,11 +614559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_COLON, anon_sym_DOT, - ACTIONS(8907), 27, + ACTIONS(10266), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -614375,8 +614575,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -614389,21 +614590,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185624] = 7, + anon_sym_COLON_RBRACK, + [186373] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(7897), 2, - anon_sym_final, - anon_sym_override, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6639), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 9, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(10077), 1, + anon_sym___attribute__, + ACTIONS(10079), 1, + anon_sym___attribute, + ACTIONS(12027), 1, + anon_sym_COLON, + STATE(4092), 1, + sym_attribute_specifier, + STATE(4316), 1, + sym__enum_base_clause, + STATE(4377), 1, + sym_enumerator_list, + ACTIONS(8001), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614413,7 +614618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8907), 27, + ACTIONS(8003), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -614441,18 +614646,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185683] = 7, + [186438] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2275), 1, + STATE(2277), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10198), 10, + ACTIONS(10229), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614463,7 +614668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(10196), 29, + ACTIONS(10227), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -614493,31 +614698,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [185742] = 7, + [186497] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, + ACTIONS(7941), 1, anon_sym_requires, - ACTIONS(7897), 2, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6622), 2, + STATE(6603), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 9, + ACTIONS(7972), 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(7791), 27, + ACTIONS(7970), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -614528,11 +614735,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -614545,18 +614749,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [185801] = 7, + anon_sym_GT2, + [186556] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(12051), 1, + anon_sym_LT, + ACTIONS(12055), 1, + sym_auto, + ACTIONS(12057), 1, + anon_sym_decltype, + STATE(6688), 1, + sym_template_argument_list, + STATE(7046), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7609), 1, + sym_decltype_auto, + ACTIONS(5609), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12053), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5617), 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___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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [186623] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2072), 1, + STATE(2066), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10202), 10, + ACTIONS(10243), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614565,12 +614827,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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(10200), 29, + sym_identifier, + ACTIONS(10241), 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, @@ -614581,37 +614852,27 @@ 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_RBRACK_RBRACK, - 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_COLON_RBRACK, - [185860] = 7, + [186682] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12056), 1, + ACTIONS(7941), 1, anon_sym_requires, - ACTIONS(12053), 2, + ACTIONS(7939), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6661), 2, + STATE(6568), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8913), 11, + ACTIONS(7876), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614623,7 +614884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8915), 25, + ACTIONS(7874), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -614649,21 +614910,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [185919] = 7, + [186741] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_requires, - ACTIONS(7897), 2, - anon_sym_final, - anon_sym_override, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6637), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 9, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2066), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10225), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614672,11 +614931,21 @@ 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(8422), 27, + sym_identifier, + ACTIONS(10223), 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, @@ -614687,58 +614956,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - [185978] = 11, + [186800] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11985), 1, + anon_sym_LPAREN2, ACTIONS(12059), 1, - anon_sym_LT, + sym_identifier, + ACTIONS(12061), 1, + anon_sym_STAR, ACTIONS(12063), 1, - sym_auto, + anon_sym_AMP_AMP, ACTIONS(12065), 1, - anon_sym_decltype, - STATE(6693), 1, - sym_template_argument_list, - STATE(7126), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7640), 1, - sym_decltype_auto, - ACTIONS(5636), 3, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12061), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5643), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(9029), 1, + sym__field_declarator, + STATE(9170), 1, + sym_operator_name, + STATE(11185), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6343), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7443), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8836), 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(3368), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -614750,25 +615027,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [186045] = 7, + [186885] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2080), 1, + STATE(2066), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10194), 17, + ACTIONS(10262), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -614786,7 +615056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10192), 22, + ACTIONS(10260), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -614809,163 +615079,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [186104] = 27, + [186944] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 1, - anon_sym_SLASH, - ACTIONS(12015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(12017), 1, - anon_sym_AMP_AMP, - ACTIONS(12021), 1, - anon_sym_CARET, - ACTIONS(12029), 1, - anon_sym_GT_EQ, - ACTIONS(12035), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12037), 1, - anon_sym_or, - ACTIONS(12039), 1, - anon_sym_and, - ACTIONS(12041), 1, - anon_sym_xor, - ACTIONS(12043), 1, - anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10538), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + STATE(2077), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10178), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12019), 2, + anon_sym_SLASH, anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(12023), 2, anon_sym_AMP, - anon_sym_bitand, - ACTIONS(12025), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(12031), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12027), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 7, + anon_sym_COLON, + anon_sym_DOT, + ACTIONS(10176), 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, - [186203] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 1, - anon_sym_SLASH, - ACTIONS(12015), 1, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(12017), 1, anon_sym_AMP_AMP, - ACTIONS(12021), 1, anon_sym_CARET, - ACTIONS(12029), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(12035), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACK_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12037), 1, anon_sym_or, - ACTIONS(12039), 1, anon_sym_and, - ACTIONS(12041), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(12043), 1, + anon_sym_bitand, anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(10435), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12005), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12019), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(12023), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(12025), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(12031), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12027), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10437), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_QMARK, - [186302] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [187003] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2080), 1, + STATE(2077), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10174), 17, - aux_sym_preproc_elif_token1, + ACTIONS(10221), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -614974,21 +615151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + anon_sym_COLON, anon_sym_DOT, - sym_identifier, - ACTIONS(10172), 22, + ACTIONS(10219), 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_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -614999,99 +615167,37 @@ 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_RBRACK_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [186361] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 1, - anon_sym_SLASH, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(12017), 1, - anon_sym_AMP_AMP, - ACTIONS(12021), 1, - anon_sym_CARET, - ACTIONS(12029), 1, - anon_sym_GT_EQ, - ACTIONS(12033), 1, - anon_sym_QMARK, - ACTIONS(12035), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12037), 1, anon_sym_or, - ACTIONS(12039), 1, anon_sym_and, - ACTIONS(12041), 1, + anon_sym_bitor, anon_sym_xor, - ACTIONS(12043), 1, + anon_sym_bitand, anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9826), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12005), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12019), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(12023), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(12025), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(12031), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12027), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9828), 5, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [186464] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_COLON_RBRACK, + [187062] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2080), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10198), 17, - aux_sym_preproc_elif_token1, + ACTIONS(10593), 1, + anon_sym_requires, + ACTIONS(10590), 2, + anon_sym_final, + anon_sym_override, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6630), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -615100,21 +615206,11 @@ 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, - ACTIONS(10196), 22, + ACTIONS(8402), 27, 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, @@ -615125,27 +615221,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + 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, - [186523] = 7, + [187121] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, + ACTIONS(11970), 1, anon_sym_requires, - ACTIONS(7829), 2, + ACTIONS(11967), 2, anon_sym_final, anon_sym_override, - STATE(6501), 2, + STATE(6497), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6641), 2, + STATE(6558), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 11, + ACTIONS(8987), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -615157,7 +615261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8422), 25, + ACTIONS(8989), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -615183,87 +615287,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [186582] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 1, - anon_sym_SLASH, - ACTIONS(12021), 1, - anon_sym_CARET, - ACTIONS(12029), 1, - anon_sym_GT_EQ, - ACTIONS(12035), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12041), 1, - anon_sym_xor, - ACTIONS(12043), 1, - anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12005), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12019), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(12023), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(12025), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(12031), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12027), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 4, - aux_sym_preproc_elif_token1, - anon_sym_or, - anon_sym_and, - sym_identifier, - ACTIONS(9709), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - [186673] = 7, + [187180] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2080), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10202), 17, - aux_sym_preproc_elif_token1, + ACTIONS(9987), 1, + anon_sym_requires, + ACTIONS(9984), 2, + anon_sym_final, + anon_sym_override, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6616), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -615272,21 +615310,11 @@ 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, - ACTIONS(10200), 22, + ACTIONS(7874), 27, 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, @@ -615297,66 +615325,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + 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, - [186732] = 21, + [187239] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11787), 1, + ACTIONS(11777), 1, sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, + ACTIONS(11785), 1, anon_sym_const, - ACTIONS(12067), 1, + ACTIONS(12035), 1, anon_sym_STAR, - ACTIONS(12069), 1, + ACTIONS(12037), 1, anon_sym_AMP_AMP, - ACTIONS(12071), 1, + ACTIONS(12039), 1, anon_sym_AMP, - STATE(4883), 1, + STATE(4909), 1, sym_parameter_list, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, + STATE(6698), 1, sym_alignas_qualifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9073), 1, + STATE(9051), 1, sym__abstract_declarator, - ACTIONS(11789), 2, + ACTIONS(11779), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, + ACTIONS(11781), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(11797), 2, + ACTIONS(11787), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5995), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7467), 2, + STATE(7423), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6823), 4, + ACTIONS(6843), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(11785), 12, + ACTIONS(11775), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -615369,216 +615405,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [186819] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2072), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10174), 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_COLON, - anon_sym_DOT, - ACTIONS(10172), 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_RBRACK_RBRACK, - 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_COLON_RBRACK, - [186878] = 27, + [187326] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - ACTIONS(12015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(12017), 1, - anon_sym_AMP_AMP, - ACTIONS(12021), 1, + ACTIONS(12005), 1, anon_sym_CARET, - ACTIONS(12029), 1, + ACTIONS(12013), 1, anon_sym_GT_EQ, - ACTIONS(12035), 1, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, - ACTIONS(12037), 1, - anon_sym_or, - ACTIONS(12039), 1, - anon_sym_and, - ACTIONS(12041), 1, + ACTIONS(12023), 1, anon_sym_xor, - ACTIONS(12043), 1, + ACTIONS(12025), 1, anon_sym_not_eq, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10485), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12019), 2, - anon_sym_PIPE, - anon_sym_bitor, - ACTIONS(12023), 2, + ACTIONS(12007), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(12025), 2, + ACTIONS(12009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(12031), 2, + ACTIONS(12015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 7, + ACTIONS(9621), 6, + aux_sym_preproc_elif_token1, + anon_sym_PIPE, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + sym_identifier, + ACTIONS(9623), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_QMARK, - [186977] = 29, + [187415] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(12059), 1, + sym_identifier, + ACTIONS(12061), 1, + anon_sym_STAR, + ACTIONS(12063), 1, + anon_sym_AMP_AMP, + ACTIONS(12065), 1, + anon_sym_AMP, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(9053), 1, + sym__field_declarator, + STATE(9170), 1, + sym_operator_name, + STATE(11185), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7448), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8836), 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(3368), 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, + [187500] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(12059), 1, + sym_identifier, + ACTIONS(12061), 1, + anon_sym_STAR, + ACTIONS(12063), 1, + anon_sym_AMP_AMP, + ACTIONS(12065), 1, + anon_sym_AMP, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(9053), 1, + sym__field_declarator, + STATE(9170), 1, + sym_operator_name, + STATE(11185), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6345), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7448), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8836), 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(3368), 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, + [187585] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(12059), 1, + sym_identifier, + ACTIONS(12061), 1, + anon_sym_STAR, + ACTIONS(12063), 1, + anon_sym_AMP_AMP, + ACTIONS(12065), 1, + anon_sym_AMP, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(9056), 1, + sym__field_declarator, + STATE(9170), 1, + sym_operator_name, + STATE(11185), 1, + sym_ms_based_modifier, + ACTIONS(3366), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7499), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(3364), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + STATE(8836), 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(3368), 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, + [187670] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12015), 1, + ACTIONS(11999), 1, anon_sym_PIPE_PIPE, - ACTIONS(12017), 1, + ACTIONS(12001), 1, anon_sym_AMP_AMP, - ACTIONS(12021), 1, + ACTIONS(12005), 1, anon_sym_CARET, - ACTIONS(12029), 1, + ACTIONS(12013), 1, anon_sym_GT_EQ, - ACTIONS(12033), 1, - anon_sym_QMARK, - ACTIONS(12035), 1, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, - ACTIONS(12037), 1, + ACTIONS(12019), 1, anon_sym_or, - ACTIONS(12039), 1, + ACTIONS(12021), 1, anon_sym_and, - ACTIONS(12041), 1, + ACTIONS(12023), 1, anon_sym_xor, - ACTIONS(12043), 1, + ACTIONS(12025), 1, anon_sym_not_eq, - STATE(3874), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12049), 1, + anon_sym_QMARK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10489), 2, + ACTIONS(10459), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12019), 2, + ACTIONS(12003), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(12023), 2, + ACTIONS(12007), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(12025), 2, + ACTIONS(12009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(12031), 2, + ACTIONS(12015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10491), 5, + ACTIONS(10463), 5, anon_sym_COMMA, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [187080] = 7, + [187773] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2072), 1, + STATE(2066), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10210), 10, + ACTIONS(10264), 17, + aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -615587,12 +615762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - 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(10208), 29, + sym_identifier, + ACTIONS(10266), 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, @@ -615603,179 +615787,141 @@ 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_RBRACK_RBRACK, - 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_COLON_RBRACK, - [187139] = 10, + [187832] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - ACTIONS(12073), 1, - anon_sym_COLON, - STATE(4059), 1, - sym_attribute_specifier, - STATE(4319), 1, - sym__enum_base_clause, - STATE(4382), 1, - sym_enumerator_list, - ACTIONS(8000), 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(8002), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(9182), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11997), 1, + anon_sym_SLASH, + ACTIONS(11999), 1, anon_sym_PIPE_PIPE, + ACTIONS(12001), 1, anon_sym_AMP_AMP, + ACTIONS(12005), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(12013), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, + ACTIONS(12019), 1, anon_sym_or, + ACTIONS(12021), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(12023), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12025), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12049), 1, + anon_sym_QMARK, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [187204] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10082), 1, - anon_sym_requires, - ACTIONS(10079), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6697), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 11, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11995), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12003), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12007), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12009), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12067), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(12011), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7791), 25, - anon_sym_DOT_DOT_DOT, + ACTIONS(12069), 5, 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, - [187263] = 17, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [187935] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - ACTIONS(12029), 1, + ACTIONS(12013), 1, anon_sym_GT_EQ, - ACTIONS(12035), 1, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + ACTIONS(12025), 1, + anon_sym_not_eq, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12031), 2, + ACTIONS(12007), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12009), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 10, + ACTIONS(9621), 7, 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(9709), 12, + ACTIONS(9623), 10, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -615785,54 +615931,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_QMARK, + [188020] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2277), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10262), 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(10260), 29, + 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___attribute__, anon_sym_QMARK, - [187342] = 14, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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_requires, + [188079] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - STATE(3874), 1, + ACTIONS(12005), 1, + anon_sym_CARET, + ACTIONS(12013), 1, + anon_sym_GT_EQ, + ACTIONS(12017), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12023), 1, + anon_sym_xor, + ACTIONS(12025), 1, + anon_sym_not_eq, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12031), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 13, - aux_sym_preproc_elif_token1, + ACTIONS(12003), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12007), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12009), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(9621), 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(9709), 14, + ACTIONS(9623), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -615841,24 +616051,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - [187415] = 7, + [188170] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2275), 1, + STATE(2277), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10202), 10, + ACTIONS(10233), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -615869,7 +616074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(10200), 29, + ACTIONS(10231), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -615899,66 +616104,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [187474] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12077), 7, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACK_COLON, - ACTIONS(12075), 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, - [187525] = 7, + [188229] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2072), 1, + STATE(2277), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10206), 10, + ACTIONS(10264), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -615967,12 +616124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_COLON, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(10204), 29, + ACTIONS(10266), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -615984,8 +616140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -615998,146 +616153,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [187584] = 15, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [188288] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 1, - anon_sym_SLASH, - ACTIONS(12035), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(7941), 1, + anon_sym_requires, + ACTIONS(7939), 2, + anon_sym_final, + anon_sym_override, + STATE(6497), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6558), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12031), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 13, - aux_sym_preproc_elif_token1, + 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, - sym_identifier, - ACTIONS(9709), 13, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8989), 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_QMARK, - [187659] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12007), 1, - anon_sym_SLASH, - ACTIONS(12021), 1, - anon_sym_CARET, - ACTIONS(12029), 1, - anon_sym_GT_EQ, - ACTIONS(12035), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12041), 1, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(12043), 1, + anon_sym_bitand, anon_sym_not_eq, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12005), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12023), 2, - anon_sym_AMP, - anon_sym_bitand, - ACTIONS(12025), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(12031), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12027), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9707), 6, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - sym_identifier, - ACTIONS(9709), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_QMARK, - [187748] = 7, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [188347] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2275), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10190), 10, + ACTIONS(11957), 1, + anon_sym_requires, + ACTIONS(11954), 2, + anon_sym_final, + anon_sym_override, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6632), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -616146,11 +616231,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(10188), 29, + ACTIONS(8989), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -616161,8 +616246,8 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -616175,24 +616260,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [187807] = 7, + [188406] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10023), 1, + ACTIONS(7824), 1, anon_sym_requires, - ACTIONS(10020), 2, + ACTIONS(7818), 2, anon_sym_final, anon_sym_override, - STATE(6457), 2, + STATE(6462), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(6622), 2, + STATE(6630), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 9, + ACTIONS(8404), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -616202,7 +616284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(7791), 27, + ACTIONS(8402), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -616230,167 +616312,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [187866] = 21, + [188465] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12067), 1, - anon_sym_STAR, - ACTIONS(12069), 1, - anon_sym_AMP_AMP, - ACTIONS(12071), 1, - anon_sym_AMP, - STATE(4883), 1, + STATE(2277), 1, sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, + STATE(5465), 1, sym__function_declarator_seq, - STATE(9041), 1, - sym__abstract_declarator, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6335), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7453), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6859), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [187953] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, - anon_sym_STAR, - ACTIONS(11991), 1, - anon_sym_AMP_AMP, - ACTIONS(11993), 1, - anon_sym_AMP, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(8617), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10687), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6293), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7497), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8839), 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(3270), 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, - [188038] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7835), 1, - anon_sym_requires, - ACTIONS(7829), 2, - anon_sym_final, - anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6661), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 11, + ACTIONS(10178), 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(8915), 25, + ACTIONS(10176), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -616398,8 +616344,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -616412,72 +616361,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [188097] = 27, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [188524] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - ACTIONS(12015), 1, + ACTIONS(11999), 1, anon_sym_PIPE_PIPE, - ACTIONS(12017), 1, + ACTIONS(12001), 1, anon_sym_AMP_AMP, - ACTIONS(12021), 1, + ACTIONS(12005), 1, anon_sym_CARET, - ACTIONS(12029), 1, + ACTIONS(12013), 1, anon_sym_GT_EQ, - ACTIONS(12035), 1, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, - ACTIONS(12037), 1, + ACTIONS(12019), 1, anon_sym_or, - ACTIONS(12039), 1, + ACTIONS(12021), 1, anon_sym_and, - ACTIONS(12041), 1, + ACTIONS(12023), 1, anon_sym_xor, - ACTIONS(12043), 1, + ACTIONS(12025), 1, anon_sym_not_eq, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10542), 2, + ACTIONS(10485), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12019), 2, + ACTIONS(12003), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(12023), 2, + ACTIONS(12007), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(12025), 2, + ACTIONS(12009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(12031), 2, + ACTIONS(12015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 7, + ACTIONS(10487), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -616485,50 +616436,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_QMARK, - [188196] = 20, + [188623] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11995), 1, + ACTIONS(11983), 1, sym_identifier, - ACTIONS(11997), 1, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(11987), 1, anon_sym_STAR, - ACTIONS(11999), 1, + ACTIONS(11989), 1, anon_sym_AMP_AMP, - ACTIONS(12001), 1, + ACTIONS(11991), 1, anon_sym_AMP, - STATE(6574), 1, + STATE(6700), 1, sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(9079), 1, + STATE(8605), 1, sym__field_declarator, - STATE(9236), 1, + STATE(8822), 1, sym_operator_name, - STATE(11191), 1, + STATE(10677), 1, sym_ms_based_modifier, - ACTIONS(3268), 2, + ACTIONS(3366), 2, anon_sym__unaligned, anon_sym___unaligned, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6296), 2, + STATE(6415), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7428), 2, + STATE(7469), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, + ACTIONS(3364), 3, sym_ms_restrict_modifier, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - STATE(8839), 7, + STATE(8836), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -616536,7 +616487,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -616550,19 +616501,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [188281] = 4, + [188708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12081), 1, + ACTIONS(12073), 7, anon_sym_LPAREN2, - ACTIONS(12083), 6, anon_sym_TILDE, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_COLON_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACK_COLON, - ACTIONS(12079), 36, + ACTIONS(12071), 36, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -616599,21 +616549,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_explicit, anon_sym_template, anon_sym_operator, - [188334] = 7, + [188759] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11968), 1, - anon_sym_requires, - ACTIONS(11965), 2, + ACTIONS(10381), 1, + anon_sym_const, + STATE(4335), 1, + sym_alignas_qualifier, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6746), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + 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(6748), 21, + 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_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - STATE(6501), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6658), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 11, + anon_sym_GT2, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [188820] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11997), 1, + anon_sym_SLASH, + ACTIONS(12013), 1, + anon_sym_GT_EQ, + ACTIONS(12017), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12025), 1, + anon_sym_not_eq, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11993), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(11995), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12009), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12011), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9621), 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(9623), 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, + [188903] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + ACTIONS(10160), 1, + anon_sym_LBRACE, + ACTIONS(12075), 1, + anon_sym_COLON, + STATE(4319), 1, + sym__enum_base_clause, + STATE(4339), 1, + sym_enumerator_list, + STATE(4476), 1, + sym_attribute_specifier, + ACTIONS(8001), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -616625,7 +616695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8907), 25, + ACTIONS(8003), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -616651,18 +616721,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [188393] = 7, + [188968] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(11817), 1, anon_sym_LPAREN2, ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2080), 1, + STATE(2066), 1, sym_parameter_list, - STATE(5444), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10206), 17, + ACTIONS(10178), 17, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -616680,7 +616750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10204), 22, + ACTIONS(10176), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -616703,71 +616773,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188452] = 27, + [189027] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - ACTIONS(12015), 1, + ACTIONS(11999), 1, anon_sym_PIPE_PIPE, - ACTIONS(12017), 1, + ACTIONS(12001), 1, anon_sym_AMP_AMP, - ACTIONS(12021), 1, + ACTIONS(12005), 1, anon_sym_CARET, - ACTIONS(12029), 1, + ACTIONS(12013), 1, anon_sym_GT_EQ, - ACTIONS(12035), 1, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, - ACTIONS(12037), 1, + ACTIONS(12019), 1, anon_sym_or, - ACTIONS(12039), 1, + ACTIONS(12021), 1, anon_sym_and, - ACTIONS(12041), 1, + ACTIONS(12023), 1, anon_sym_xor, - ACTIONS(12043), 1, + ACTIONS(12025), 1, anon_sym_not_eq, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9599), 2, - aux_sym_preproc_elif_token1, - sym_identifier, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(9661), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12019), 2, + ACTIONS(12003), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(12023), 2, + ACTIONS(12007), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(12025), 2, + ACTIONS(12009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(12031), 2, + ACTIONS(12015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 7, + ACTIONS(9659), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, aux_sym_preproc_if_token2, @@ -616775,123 +616845,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, anon_sym_QMARK, - [188551] = 8, + [189126] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - STATE(4333), 1, - sym_alignas_qualifier, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6752), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - 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(6754), 21, - 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_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, + ACTIONS(10153), 1, anon_sym_requires, - [188612] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2275), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10194), 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(10192), 29, - 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___attribute__, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + ACTIONS(10150), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [188671] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2275), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10174), 10, + STATE(6462), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(6625), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -616900,11 +616868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(10172), 29, + ACTIONS(7970), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -616915,8 +616883,8 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -616929,34 +616897,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [188730] = 7, + [189185] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10621), 1, - anon_sym_requires, - ACTIONS(10618), 2, - anon_sym_final, - anon_sym_override, - STATE(6457), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(6637), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 9, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + ACTIONS(10160), 1, + anon_sym_LBRACE, + ACTIONS(12075), 1, + anon_sym_COLON, + STATE(4313), 1, + sym__enum_base_clause, + STATE(4355), 1, + sym_enumerator_list, + STATE(4486), 1, + sym_attribute_specifier, + ACTIONS(8007), 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(8422), 27, + ACTIONS(8009), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -616967,11 +616937,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -616984,162 +616951,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [188789] = 20, + anon_sym_GT2, + [189250] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - ACTIONS(12029), 1, + ACTIONS(11999), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12001), 1, + anon_sym_AMP_AMP, + ACTIONS(12005), 1, + anon_sym_CARET, + ACTIONS(12013), 1, anon_sym_GT_EQ, - ACTIONS(12035), 1, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, - ACTIONS(12043), 1, + ACTIONS(12019), 1, + anon_sym_or, + ACTIONS(12021), 1, + anon_sym_and, + ACTIONS(12023), 1, + anon_sym_xor, + ACTIONS(12025), 1, anon_sym_not_eq, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(10489), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12023), 2, + ACTIONS(12003), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12007), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(12025), 2, + ACTIONS(12009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(12031), 2, + ACTIONS(12015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 7, - aux_sym_preproc_elif_token1, - anon_sym_PIPE, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - sym_identifier, - ACTIONS(9709), 10, + ACTIONS(10491), 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_QMARK, - [188874] = 19, + [189349] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - ACTIONS(12029), 1, + ACTIONS(11999), 1, + anon_sym_PIPE_PIPE, + ACTIONS(12001), 1, + anon_sym_AMP_AMP, + ACTIONS(12005), 1, + anon_sym_CARET, + ACTIONS(12013), 1, anon_sym_GT_EQ, - ACTIONS(12035), 1, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, - ACTIONS(12043), 1, + ACTIONS(12019), 1, + anon_sym_or, + ACTIONS(12021), 1, + anon_sym_and, + ACTIONS(12023), 1, + anon_sym_xor, + ACTIONS(12025), 1, anon_sym_not_eq, - STATE(3874), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12049), 1, + anon_sym_QMARK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(10471), 2, + aux_sym_preproc_elif_token1, + sym_identifier, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12025), 2, + ACTIONS(12003), 2, + anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12007), 2, + anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(12031), 2, + ACTIONS(12015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9707), 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(9709), 10, - anon_sym_DOT_DOT_DOT, + ACTIONS(10473), 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_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_QMARK, - [188957] = 7, + [189452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(2275), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10186), 10, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11997), 1, + anon_sym_SLASH, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11995), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9621), 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___attribute, - anon_sym_DOT, - ACTIONS(10184), 29, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + sym_identifier, + ACTIONS(9623), 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, @@ -617148,298 +617153,175 @@ 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_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_requires, - [189016] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, - anon_sym_STAR, - ACTIONS(11991), 1, - anon_sym_AMP_AMP, - ACTIONS(11993), 1, - anon_sym_AMP, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(8612), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10687), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6310), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7429), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8839), 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(3270), 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, - [189101] = 7, + [189521] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(2072), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10186), 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_COLON, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10184), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11997), 1, + anon_sym_SLASH, + ACTIONS(12001), 1, anon_sym_AMP_AMP, + ACTIONS(12005), 1, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(12013), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI, - anon_sym_RBRACK_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, - anon_sym_or, + ACTIONS(12021), 1, anon_sym_and, - anon_sym_bitor, + ACTIONS(12023), 1, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12025), 1, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_COLON_RBRACK, - [189160] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2275), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10210), 10, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(11995), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12003), 2, anon_sym_PIPE, + anon_sym_bitor, + ACTIONS(12007), 2, anon_sym_AMP, + anon_sym_bitand, + ACTIONS(12009), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(12015), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9621), 3, + aux_sym_preproc_elif_token1, + anon_sym_or, + sym_identifier, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - anon_sym_DOT, - ACTIONS(10208), 29, + ACTIONS(9623), 8, 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_SEMI, - anon_sym___attribute__, anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [189219] = 29, + [189616] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12007), 1, + ACTIONS(11997), 1, anon_sym_SLASH, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12015), 1, + ACTIONS(11999), 1, anon_sym_PIPE_PIPE, - ACTIONS(12017), 1, + ACTIONS(12001), 1, anon_sym_AMP_AMP, - ACTIONS(12021), 1, + ACTIONS(12005), 1, anon_sym_CARET, - ACTIONS(12029), 1, + ACTIONS(12013), 1, anon_sym_GT_EQ, - ACTIONS(12033), 1, - anon_sym_QMARK, - ACTIONS(12035), 1, + ACTIONS(12017), 1, anon_sym_LT_EQ_GT, - ACTIONS(12037), 1, + ACTIONS(12019), 1, anon_sym_or, - ACTIONS(12039), 1, + ACTIONS(12021), 1, anon_sym_and, - ACTIONS(12041), 1, + ACTIONS(12023), 1, anon_sym_xor, - ACTIONS(12043), 1, + ACTIONS(12025), 1, anon_sym_not_eq, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10477), 2, + ACTIONS(10437), 2, aux_sym_preproc_elif_token1, sym_identifier, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12003), 2, + ACTIONS(11993), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12005), 2, + ACTIONS(11995), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12019), 2, + ACTIONS(12003), 2, anon_sym_PIPE, anon_sym_bitor, - ACTIONS(12023), 2, + ACTIONS(12007), 2, anon_sym_AMP, anon_sym_bitand, - ACTIONS(12025), 2, + ACTIONS(12009), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(12031), 2, + ACTIONS(12015), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12027), 3, + ACTIONS(12011), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 5, + ACTIONS(10439), 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, - [189322] = 10, + anon_sym_QMARK, + [189715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - ACTIONS(10114), 1, - anon_sym_LBRACE, - ACTIONS(12045), 1, - anon_sym_COLON, - STATE(4316), 1, - sym__enum_base_clause, - STATE(4370), 1, - sym_enumerator_list, - STATE(4517), 1, - sym_attribute_specifier, - ACTIONS(8000), 11, + ACTIONS(10556), 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_COLON, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(8002), 25, + sym_literal_suffix, + ACTIONS(10558), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -617448,41 +617330,47 @@ 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_RBRACK_RBRACK, + 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, - anon_sym_GT2, - [189387] = 8, + anon_sym_COLON_RBRACK, + [189765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - STATE(4333), 1, - sym_alignas_qualifier, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6899), 4, + ACTIONS(7156), 6, anon_sym_AMP, anon_sym___attribute, + sym_ms_restrict_modifier, anon_sym_LBRACK, + anon_sym_const, anon_sym___asm, - ACTIONS(10352), 12, + ACTIONS(7158), 36, + 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, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -617494,40 +617382,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - ACTIONS(6901), 21, - 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_COLON, - 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, - [189448] = 7, + [189815] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, anon_sym_LBRACK, - STATE(2080), 1, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(12077), 1, + anon_sym_STAR, + ACTIONS(12079), 1, + anon_sym_AMP_AMP, + ACTIONS(12081), 1, + anon_sym_AMP, + STATE(5182), 1, sym_parameter_list, - STATE(5444), 1, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, sym__function_declarator_seq, - ACTIONS(10186), 17, + STATE(9088), 1, + sym__abstract_declarator, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(5968), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7517), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6843), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [189901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10556), 18, aux_sym_preproc_elif_token1, anon_sym_DASH, anon_sym_PLUS, @@ -617545,59 +617477,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DOT, sym_identifier, - ACTIONS(10184), 22, + sym_literal_suffix, + ACTIONS(10558), 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_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_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, - [189507] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(10075), 1, - anon_sym___attribute__, - ACTIONS(10077), 1, - anon_sym___attribute, - ACTIONS(12073), 1, - anon_sym_COLON, - STATE(4095), 1, - sym_attribute_specifier, - STATE(4320), 1, - sym__enum_base_clause, - STATE(4386), 1, - sym_enumerator_list, - ACTIONS(8006), 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(8008), 27, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -617610,32 +617497,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, 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, - [189572] = 7, + [189951] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2080), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10210), 17, - aux_sym_preproc_elif_token1, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + STATE(6393), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9035), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -617644,265 +617520,137 @@ 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, - ACTIONS(10208), 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, - [189631] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11995), 1, - sym_identifier, - ACTIONS(11997), 1, - anon_sym_STAR, - ACTIONS(11999), 1, - anon_sym_AMP_AMP, - ACTIONS(12001), 1, - anon_sym_AMP, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(9026), 1, - sym__field_declarator, - STATE(9236), 1, - sym_operator_name, - STATE(11191), 1, - sym_ms_based_modifier, - ACTIONS(3268), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6427), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7434), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(3266), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - STATE(8839), 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(3270), 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, - [189716] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12085), 1, - anon_sym___attribute__, - ACTIONS(12088), 1, - anon_sym___attribute, - STATE(6377), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(6935), 4, - anon_sym_AMP, anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(6937), 34, + anon_sym_DOT, + ACTIONS(9037), 29, 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_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_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_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [189772] = 31, + [190005] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12097), 1, + ACTIONS(12089), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12095), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12099), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12105), 1, anon_sym_GT_EQ, - ACTIONS(12117), 1, + ACTIONS(12109), 1, anon_sym_SEMI, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(12121), 1, + ACTIONS(12113), 1, anon_sym_QMARK, - ACTIONS(12123), 1, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12117), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12119), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9217), 1, + STATE(9230), 1, aux_sym_field_declaration_repeat1, - STATE(10714), 1, + STATE(11359), 1, sym_attribute_specifier, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12091), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12093), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12097), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12101), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12103), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [189878] = 9, + [190111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(12129), 1, - anon_sym_COLON, - STATE(4509), 1, - sym__enum_base_clause, - STATE(4668), 1, - sym_enumerator_list, - STATE(4868), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, + ACTIONS(7152), 5, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(8002), 5, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7154), 37, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(8000), 30, - anon_sym_AMP, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___declspec, - anon_sym___based, + anon_sym___attribute__, + 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, @@ -617916,65 +617664,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_operator, - [189940] = 24, + 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, + [190161] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7530), 1, + STATE(7541), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8437), 1, + STATE(8082), 1, sym__declarator, - STATE(9921), 1, + STATE(8157), 1, + sym_splice_specifier, + STATE(9972), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -617986,191 +617742,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [190032] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(12129), 1, - anon_sym_COLON, - STATE(4514), 1, - sym__enum_base_clause, - STATE(4683), 1, - sym_enumerator_list, - STATE(4912), 1, - sym_attribute_specifier, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8008), 5, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - ACTIONS(8006), 30, - 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, - anon_sym_operator, - [190094] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12097), 1, - anon_sym_SLASH, - ACTIONS(12103), 1, - anon_sym_PIPE, - ACTIONS(12107), 1, - anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(12121), 1, - anon_sym_QMARK, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, - anon_sym_bitor, - ACTIONS(12127), 1, - anon_sym_bitand, - ACTIONS(12131), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9205), 1, - aux_sym_field_declaration_repeat1, - STATE(11041), 1, - sym_attribute_specifier, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12099), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12101), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12105), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12109), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [190200] = 24, + [190253] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7521), 1, + STATE(7508), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8481), 1, + STATE(8439), 1, sym__declarator, - STATE(10594), 1, + STATE(10073), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -618182,110 +617810,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [190292] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7132), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(7134), 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, - [190342] = 24, + [190345] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7507), 1, + STATE(7547), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8096), 1, + STATE(8118), 1, sym__declarator, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9927), 1, + STATE(10096), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -618297,323 +617878,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [190434] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 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_COLON, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(5638), 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_RBRACK_RBRACK, - 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, - anon_sym_COLON_RBRACK, - [190486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7287), 6, - anon_sym_AMP, - anon_sym___attribute, - sym_ms_restrict_modifier, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(7289), 36, - 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, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [190536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7199), 6, - anon_sym_AMP, - anon_sym___attribute, - sym_ms_restrict_modifier, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(7201), 36, - 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, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - anon_sym__unaligned, - anon_sym___unaligned, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [190586] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12133), 1, - anon_sym_virtual, - ACTIONS(12137), 1, - anon_sym___declspec, - ACTIONS(12139), 1, - anon_sym___inline, - STATE(4333), 1, - sym_alignas_qualifier, - ACTIONS(10034), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10036), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6390), 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(12135), 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(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [190660] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12137), 1, - anon_sym___declspec, - ACTIONS(12139), 1, - anon_sym___inline, - ACTIONS(12141), 1, - anon_sym_virtual, - STATE(4333), 1, - sym_alignas_qualifier, - ACTIONS(9990), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(9992), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6417), 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(12135), 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(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [190734] = 24, + [190437] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7567), 1, + STATE(7508), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8394), 1, + STATE(8320), 1, sym__declarator, - STATE(10028), 1, + STATE(10073), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -618625,295 +617946,207 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [190826] = 15, + [190529] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12137), 1, - anon_sym___declspec, - ACTIONS(12139), 1, - anon_sym___inline, - ACTIONS(12143), 1, - anon_sym_virtual, - STATE(4333), 1, - sym_alignas_qualifier, - ACTIONS(10026), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10028), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5659), 1, anon_sym_LPAREN2, + ACTIONS(5661), 1, anon_sym_STAR, + ACTIONS(5663), 1, anon_sym_AMP_AMP, - STATE(6399), 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(12135), 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(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [190900] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - STATE(6400), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(5665), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(5669), 1, anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(8839), 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_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [190954] = 31, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4676), 1, + sym_parameter_list, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9068), 1, + sym__declarator, + STATE(9300), 1, + sym__abstract_declarator, + STATE(11132), 1, + sym_ms_based_modifier, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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, + [190623] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12097), 1, + ACTIONS(12089), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12095), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12099), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12105), 1, anon_sym_GT_EQ, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(12121), 1, + ACTIONS(12113), 1, anon_sym_QMARK, - ACTIONS(12123), 1, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12117), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12119), 1, anon_sym_bitand, - ACTIONS(12145), 1, + ACTIONS(12121), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9199), 1, + STATE(9177), 1, aux_sym_field_declaration_repeat1, - STATE(10945), 1, + STATE(10966), 1, sym_attribute_specifier, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12091), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12093), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12097), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12101), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [191060] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - STATE(6400), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12103), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(8835), 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_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [191114] = 24, + [190729] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7551), 1, + STATE(7555), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8389), 1, + STATE(8443), 1, sym__declarator, - STATE(10181), 1, + STATE(10548), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -618925,112 +618158,131 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [191206] = 5, + [190821] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - STATE(6400), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 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_LBRACK, - anon_sym_DOT, - ACTIONS(9073), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10197), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(10199), 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_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [191260] = 24, + ACTIONS(10201), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7521), 1, + sym_ms_call_modifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8092), 1, + sym__declarator, + STATE(8157), 1, + sym_splice_specifier, + STATE(9855), 1, + sym_init_declarator, + STATE(11637), 1, + sym_ms_based_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2240), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8564), 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, + [190913] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7555), 1, + STATE(7561), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8432), 1, + STATE(8357), 1, sym__declarator, - STATE(9719), 1, + STATE(9861), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -619042,226 +618294,158 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [191352] = 15, + [191005] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12137), 1, - anon_sym___declspec, - ACTIONS(12139), 1, - anon_sym___inline, - ACTIONS(12141), 1, - anon_sym_virtual, - STATE(4333), 1, - sym_alignas_qualifier, - ACTIONS(10071), 2, - anon_sym_AMP, - anon_sym_LBRACK, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(10073), 3, + ACTIONS(9182), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - STATE(6417), 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(12135), 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(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [191426] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12147), 1, - anon_sym_LBRACK_LBRACK, - STATE(6400), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, + ACTIONS(9625), 1, anon_sym_LBRACK, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(9075), 29, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12083), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12095), 1, + anon_sym_PIPE, + ACTIONS(12099), 1, + anon_sym_AMP, + ACTIONS(12105), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(12113), 1, anon_sym_QMARK, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12117), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12119), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12123), 1, + anon_sym_SEMI, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + STATE(9218), 1, + aux_sym_field_declaration_repeat1, + STATE(11578), 1, + sym_attribute_specifier, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [191480] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12150), 1, - sym_identifier, - ACTIONS(12160), 1, - sym_primitive_type, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(7139), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(12157), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(12155), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7207), 7, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7205), 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(12152), 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, - [191546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 17, - aux_sym_preproc_elif_token1, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_identifier, - ACTIONS(5638), 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, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12091), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12093), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12097), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(12101), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12103), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [191111] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 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, - [191598] = 5, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10197), 1, + anon_sym_STAR, + ACTIONS(10199), 1, + anon_sym_AMP_AMP, + ACTIONS(10201), 1, + anon_sym_AMP, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7538), 1, + sym_ms_call_modifier, + STATE(7985), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8371), 1, + sym__declarator, + STATE(9898), 1, + sym_init_declarator, + STATE(11637), 1, + sym_ms_based_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2240), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8564), 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, + [191203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7820), 1, + ACTIONS(7920), 1, anon_sym_LBRACK_LBRACK, - STATE(6424), 2, + STATE(6395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 12, + ACTIONS(9035), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -619274,7 +618458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8839), 27, + ACTIONS(9037), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -619302,11 +618486,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [191652] = 3, + [191257] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 18, - aux_sym_preproc_elif_token1, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(12125), 1, + anon_sym_COLON, + STATE(4421), 1, + sym__enum_base_clause, + STATE(4666), 1, + sym_enumerator_list, + STATE(4978), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8009), 5, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(8007), 30, + 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, + anon_sym_operator, + [191319] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12127), 1, + anon_sym_LBRACK_LBRACK, + STATE(6393), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2471), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -619315,22 +618556,11 @@ 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_LBRACK, anon_sym_DOT, - sym_identifier, - sym_literal_suffix, - ACTIONS(10564), 24, + ACTIONS(9039), 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, @@ -619342,117 +618572,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - 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, - [191702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7108), 5, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym_const, - anon_sym___asm, - ACTIONS(7110), 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, - [191752] = 24, + [191373] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7527), 1, + STATE(7509), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8100), 1, - sym__declarator, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9921), 1, + STATE(8402), 1, + sym__declarator, + STATE(9765), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -619464,63 +618656,112 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [191844] = 24, + [191465] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12130), 1, + anon_sym_LBRACK_LBRACK, + STATE(6395), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(2471), 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_LBRACK, + anon_sym_DOT, + ACTIONS(9039), 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_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, + [191519] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7545), 1, + STATE(7508), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8334), 1, + STATE(8384), 1, sym__declarator, - STATE(9963), 1, + STATE(10073), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -619532,15 +618773,15 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [191936] = 5, + [191611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7820), 1, + ACTIONS(7920), 1, anon_sym_LBRACK_LBRACK, - STATE(6424), 2, + STATE(6395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 12, + ACTIONS(8854), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -619553,7 +618794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(8835), 27, + ACTIONS(8856), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -619581,60 +618822,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [191990] = 21, + [191665] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(12133), 1, + anon_sym___attribute__, + ACTIONS(12136), 1, + anon_sym___attribute, + STATE(6398), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(6964), 4, + anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(11795), 1, anon_sym_const, - ACTIONS(12162), 1, - anon_sym_STAR, - ACTIONS(12164), 1, - anon_sym_AMP_AMP, - ACTIONS(12166), 1, - anon_sym_AMP, - STATE(5222), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9098), 1, - sym__abstract_declarator, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6410), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7537), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6859), 3, + anon_sym___asm, + ACTIONS(6966), 34, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_GT2, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11785), 12, + anon_sym_RPAREN, + 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, @@ -619646,60 +618860,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192076] = 21, + 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, + [191721] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(12125), 1, + anon_sym_COLON, + STATE(4499), 1, + sym__enum_base_clause, + STATE(4691), 1, + sym_enumerator_list, + STATE(4808), 1, + sym_attribute_specifier, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8003), 5, anon_sym_LPAREN2, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12162), 1, anon_sym_STAR, - ACTIONS(12164), 1, anon_sym_AMP_AMP, - ACTIONS(12166), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + ACTIONS(8001), 30, anon_sym_AMP, - STATE(5222), 1, - sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9105), 1, - sym__abstract_declarator, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - ACTIONS(11797), 2, + 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, - STATE(5995), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7538), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6823), 3, + sym_identifier, + anon_sym_operator, + [191783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7140), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7142), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_GT2, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11785), 12, + 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, @@ -619711,63 +618960,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192162] = 24, + 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, + [191833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10613), 1, + sym_literal_suffix, + ACTIONS(5619), 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(5611), 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, + [191885] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7542), 1, + STATE(7531), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8082), 1, + STATE(8107), 1, sym__declarator, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10181), 1, + STATE(9898), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -619779,15 +619088,15 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [192254] = 5, + [191977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7820), 1, + ACTIONS(7920), 1, anon_sym_LBRACK_LBRACK, - STATE(6424), 2, + STATE(6395), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 12, + ACTIONS(8870), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -619800,7 +619109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(9073), 27, + ACTIONS(8872), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -619828,199 +619137,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [192308] = 24, + [192031] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + STATE(6393), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8854), 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_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10178), 1, + anon_sym_DOT, + ACTIONS(8856), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, - ACTIONS(10180), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(10182), 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_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [192085] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12139), 1, + anon_sym_virtual, + ACTIONS(12143), 1, + anon_sym___declspec, + ACTIONS(12145), 1, + anon_sym___inline, + STATE(4335), 1, + sym_alignas_qualifier, + ACTIONS(9992), 2, anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7548), 1, - sym_ms_call_modifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8146), 1, - sym__declarator, - STATE(8222), 1, - sym_splice_specifier, - STATE(9719), 1, - sym_init_declarator, - STATE(11622), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(2242), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8555), 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, - [192400] = 24, + anon_sym_LBRACK, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9994), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6413), 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(12141), 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(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [192159] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + STATE(6698), 1, + sym_alignas_qualifier, + ACTIONS(12150), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6880), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10178), 1, anon_sym_STAR, - ACTIONS(10180), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(6878), 13, anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7553), 1, - sym_ms_call_modifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8121), 1, - sym__declarator, - STATE(8222), 1, - sym_splice_specifier, - STATE(9874), 1, - sym_init_declarator, - STATE(11622), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(2242), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8555), 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, - [192492] = 24, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + sym_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(12147), 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, + [192217] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7556), 1, + STATE(7536), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8108), 1, + STATE(8116), 1, sym__declarator, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10051), 1, + STATE(9698), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -620032,63 +619364,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [192584] = 24, + [192309] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7560), 1, + STATE(7544), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8128), 1, + STATE(8108), 1, sym__declarator, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10121), 1, + STATE(9858), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -620100,36 +619432,36 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [192676] = 15, + [192401] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(12171), 1, - anon_sym_virtual, - ACTIONS(12177), 1, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(12180), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(12183), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12186), 1, + ACTIONS(12139), 1, + anon_sym_virtual, + ACTIONS(12143), 1, anon_sym___declspec, - ACTIONS(12189), 1, + ACTIONS(12145), 1, anon_sym___inline, - ACTIONS(12192), 1, - anon_sym_const, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - ACTIONS(10044), 2, + ACTIONS(10013), 2, anon_sym_AMP, anon_sym_LBRACK, - ACTIONS(12195), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(10046), 3, + ACTIONS(10015), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - STATE(6417), 7, + STATE(6413), 7, sym__declaration_modifiers, sym_attribute_specifier, sym_attribute_declaration, @@ -620137,7 +619469,7 @@ static const uint16_t ts_small_parse_table[] = { sym_storage_class_specifier, sym_type_qualifier, aux_sym__declaration_specifiers_repeat1, - ACTIONS(12174), 8, + ACTIONS(12141), 8, anon_sym_extern, anon_sym_static, anon_sym_register, @@ -620146,7 +619478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___forceinline, anon_sym_thread_local, anon_sym___thread, - ACTIONS(12168), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -620159,78 +619491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192750] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, - sym_identifier, - ACTIONS(8554), 1, - anon_sym_COLON_COLON, - ACTIONS(10178), 1, - anon_sym_STAR, - ACTIONS(10180), 1, - anon_sym_AMP_AMP, - ACTIONS(10182), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7567), 1, - sym_ms_call_modifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8419), 1, - sym__declarator, - STATE(10028), 1, - sym_init_declarator, - STATE(11622), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(2242), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8555), 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, - [192842] = 3, + [192475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 17, + ACTIONS(10613), 1, + sym_literal_suffix, + ACTIONS(5619), 16, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -620247,8 +619513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(10564), 25, + ACTIONS(5611), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -620274,46 +619539,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_COLON_RBRACK, - [192892] = 7, + [192527] = 21, ACTIONS(3), 1, sym_comment, - STATE(6707), 1, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(12077), 1, + anon_sym_STAR, + ACTIONS(12079), 1, + anon_sym_AMP_AMP, + ACTIONS(12081), 1, + anon_sym_AMP, + STATE(5182), 1, + sym_parameter_list, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(6698), 1, sym_alignas_qualifier, - ACTIONS(12201), 2, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9086), 1, + sym__abstract_declarator, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + ACTIONS(11787), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6420), 2, + STATE(6375), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7500), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6891), 11, + ACTIONS(6815), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_GT2, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [192613] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12143), 1, + anon_sym___declspec, + ACTIONS(12145), 1, + anon_sym___inline, + ACTIONS(12153), 1, + anon_sym_virtual, + STATE(4335), 1, + sym_alignas_qualifier, + ACTIONS(10034), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10036), 3, 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(6889), 13, - anon_sym_AMP, + STATE(6409), 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(12141), 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(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [192687] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12158), 1, + anon_sym_virtual, + ACTIONS(12164), 1, anon_sym___attribute__, + ACTIONS(12167), 1, anon_sym___attribute, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(12198), 13, - anon_sym___extension__, + ACTIONS(12170), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12173), 1, + anon_sym___declspec, + ACTIONS(12176), 1, + anon_sym___inline, + ACTIONS(12179), 1, anon_sym_const, + STATE(4335), 1, + sym_alignas_qualifier, + ACTIONS(9944), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(12182), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(9946), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6413), 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(12161), 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(12155), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -620325,63 +619722,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [192950] = 24, + [192761] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7566), 1, + STATE(7502), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8392), 1, + STATE(8074), 1, sym__declarator, - STATE(9927), 1, + STATE(8157), 1, + sym_splice_specifier, + STATE(9765), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -620393,64 +619790,228 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [193042] = 25, + [192853] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(6700), 1, + sym_ms_unaligned_ptr_modifier, + ACTIONS(12188), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6415), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + ACTIONS(12185), 3, + sym_ms_restrict_modifier, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(6919), 10, + 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(6917), 24, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + 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_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [192911] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12191), 1, + sym_identifier, + ACTIONS(12201), 1, + sym_primitive_type, + STATE(6697), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6698), 1, + sym_alignas_qualifier, + ACTIONS(12198), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6420), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12196), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7211), 7, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7209), 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(12193), 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, + [192977] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10381), 1, + anon_sym_const, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12143), 1, + anon_sym___declspec, + ACTIONS(12145), 1, + anon_sym___inline, + ACTIONS(12203), 1, + anon_sym_virtual, + STATE(4335), 1, + sym_alignas_qualifier, + ACTIONS(10007), 2, + anon_sym_AMP, + anon_sym_LBRACK, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(10009), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + STATE(6405), 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(12141), 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(10370), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [193051] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(5160), 1, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5617), 1, - anon_sym_LPAREN2, - ACTIONS(5619), 1, + ACTIONS(8553), 1, + sym_identifier, + ACTIONS(8561), 1, + anon_sym_COLON_COLON, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(5621), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(5623), 1, + ACTIONS(10201), 1, anon_sym_AMP, - ACTIONS(5627), 1, - anon_sym_LBRACK, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4706), 1, - sym_parameter_list, - STATE(7993), 1, + STATE(7526), 1, + sym_ms_call_modifier, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9044), 1, + STATE(8385), 1, sym__declarator, - STATE(9403), 1, - sym__abstract_declarator, - STATE(11554), 1, + STATE(9858), 1, + sym_init_declarator, + STATE(11637), 1, sym_ms_based_modifier, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + ACTIONS(2240), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -620462,63 +620023,63 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [193136] = 24, + [193143] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10197), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10199), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10201), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7567), 1, + STATE(7534), 1, sym_ms_call_modifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8294), 1, + STATE(8409), 1, sym__declarator, - STATE(10028), 1, + STATE(9855), 1, sym_init_declarator, - STATE(11622), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -620530,65 +620091,71 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [193228] = 5, + [193235] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12204), 1, - anon_sym_LBRACK_LBRACK, - STATE(6424), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 12, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(12205), 1, + sym_identifier, + ACTIONS(12215), 1, + sym_primitive_type, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(7066), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12212), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(12210), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7195), 7, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_DOT, - ACTIONS(9075), 27, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(7193), 10, 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_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_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - [193282] = 3, + ACTIONS(12207), 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, + [193301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7081), 5, + ACTIONS(7148), 5, anon_sym_AMP, anon_sym___attribute, anon_sym_LBRACK, anon_sym_const, anon_sym___asm, - ACTIONS(7083), 37, + ACTIONS(7150), 37, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -620626,50 +620193,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_noexcept, anon_sym_throw, anon_sym_requires, - [193332] = 11, + [193351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12207), 1, - sym_identifier, - ACTIONS(12217), 1, - sym_primitive_type, - STATE(6560), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6707), 1, - sym_alignas_qualifier, - ACTIONS(12214), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6401), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(12212), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7251), 7, + ACTIONS(7242), 6, anon_sym_AMP, - anon_sym___attribute__, anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(7249), 10, + sym_ms_restrict_modifier, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7244), 36, 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, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + anon_sym__unaligned, + anon_sym___unaligned, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(12209), 13, - anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -620681,197 +620231,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [193398] = 7, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [193401] = 5, ACTIONS(3), 1, sym_comment, - STATE(6574), 1, - sym_ms_unaligned_ptr_modifier, - ACTIONS(12222), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6427), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - ACTIONS(12219), 3, - sym_ms_restrict_modifier, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(6944), 10, + ACTIONS(7809), 1, + anon_sym_LBRACK_LBRACK, + STATE(6393), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8870), 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_LBRACK, + anon_sym_DOT, + ACTIONS(8872), 29, + 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_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(6942), 24, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - 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_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [193456] = 24, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [193455] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9621), 1, + anon_sym_PIPE, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 7, + ACTIONS(9623), 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_COLON_RBRACK, - [193547] = 26, + [193538] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10491), 5, + ACTIONS(9659), 7, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_COLON_RBRACK, - [193642] = 3, + [193629] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 12, + ACTIONS(12247), 2, + anon_sym_final, + anon_sym_override, + STATE(6426), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9129), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -620882,9 +620439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(8956), 29, + ACTIONS(9131), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -620896,7 +620452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -620910,35 +620465,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_requires, - [193691] = 12, + [193682] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10203), 1, + sym_identifier, + ACTIONS(10205), 1, + anon_sym_STAR, + ACTIONS(10207), 1, + anon_sym_AMP_AMP, + ACTIONS(10209), 1, + anon_sym_AMP, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7558), 1, + sym_ms_call_modifier, + STATE(7988), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8915), 1, + sym__declarator, + STATE(10737), 1, + sym_ms_based_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2240), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8564), 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, + [193771] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, + anon_sym_LPAREN2, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7543), 1, + sym_ms_call_modifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(9010), 1, + sym__declarator, + STATE(11132), 1, + sym_ms_based_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + ACTIONS(2240), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8564), 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, + [193860] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10487), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_RBRACK, + [193951] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 7, + ACTIONS(9621), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -620946,7 +620698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 22, + ACTIONS(9623), 22, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -620969,63 +620721,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_COLON_RBRACK, - [193758] = 23, + [194018] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12233), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 9, + ACTIONS(9623), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -621035,60 +620787,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_or, anon_sym_COLON_RBRACK, - [193847] = 22, + [194107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8905), 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(8907), 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, + [194156] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 11, + ACTIONS(9623), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -621100,58 +620898,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_COLON_RBRACK, - [193934] = 21, + [194243] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9621), 1, + anon_sym_PIPE, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 12, + ACTIONS(9623), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -621164,127 +620962,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_COLON_RBRACK, - [194019] = 26, + [194328] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9621), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9828), 5, + ACTIONS(9623), 15, + 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, anon_sym_COLON_RBRACK, - [194114] = 18, + [194407] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9707), 2, + ACTIONS(9621), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11722), 2, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12247), 2, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 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_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, - ACTIONS(12243), 3, + anon_sym_COLON_RBRACK, + [194484] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9621), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 15, + ACTIONS(9623), 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, @@ -621293,49 +621139,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, + anon_sym_not_eq, anon_sym_COLON_RBRACK, - [194193] = 17, + [194557] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9621), 5, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11722), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 22, + 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, + anon_sym_COLON_RBRACK, + [194626] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12247), 2, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12243), 3, + ACTIONS(9621), 5, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 18, + ACTIONS(9623), 20, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -621344,38 +621242,376 @@ 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_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, + anon_sym_COLON_RBRACK, + [194697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8915), 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(8917), 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, + [194746] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8923), 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(8925), 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, + [194795] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12250), 1, + anon_sym_LPAREN2, + ACTIONS(12252), 1, + anon_sym_LBRACK, + STATE(2274), 1, + sym_parameter_list, + STATE(6709), 1, + sym__function_declarator_seq, + ACTIONS(10229), 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(10227), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [194852] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8923), 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(8925), 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, + [194901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8923), 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(8925), 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, + [194950] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12250), 1, + anon_sym_LPAREN2, + ACTIONS(12252), 1, + anon_sym_LBRACK, + STATE(2274), 1, + sym_parameter_list, + STATE(6709), 1, + sym__function_declarator_seq, + ACTIONS(10233), 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(10231), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [195007] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12250), 1, + anon_sym_LPAREN2, + ACTIONS(12252), 1, + anon_sym_LBRACK, + STATE(2274), 1, + sym_parameter_list, + STATE(6709), 1, + sym__function_declarator_seq, + ACTIONS(10243), 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(10241), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_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_COLON_RBRACK, - [194270] = 7, + 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, + [195064] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(12250), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12252), 1, anon_sym_LBRACK, - STATE(2281), 1, + STATE(2274), 1, sym_parameter_list, - STATE(6617), 1, + STATE(6709), 1, sym__function_declarator_seq, - ACTIONS(10198), 9, + ACTIONS(10262), 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(10196), 28, + ACTIONS(10260), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -621385,10 +621621,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621403,102 +621636,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [194327] = 15, + [195121] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12254), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12256), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + STATE(2276), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10225), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + anon_sym_DOT, + ACTIONS(10223), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + 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, - anon_sym_COLON_RBRACK, - [194400] = 13, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [195178] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12254), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12256), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + STATE(2276), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10264), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9707), 5, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 22, + anon_sym_DOT, + ACTIONS(10266), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, @@ -621507,8 +621722,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_RBRACE, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621517,19 +621731,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [194469] = 7, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [195235] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(12254), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12256), 1, anon_sym_LBRACK, - STATE(2281), 1, + STATE(2276), 1, sym_parameter_list, - STATE(6617), 1, + STATE(6613), 1, sym__function_declarator_seq, - ACTIONS(10202), 9, + ACTIONS(10178), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -621539,7 +621759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10200), 28, + ACTIONS(10176), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -621568,26 +621788,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [194526] = 3, + [195292] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 12, + ACTIONS(12254), 1, + anon_sym_LPAREN2, + ACTIONS(12256), 1, + anon_sym_LBRACK, + STATE(2276), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10221), 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___attribute, anon_sym_DOT, - ACTIONS(8994), 29, + ACTIONS(10219), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -621595,9 +621819,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___attribute__, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621612,20 +621837,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [194575] = 7, + [195349] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(12254), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12256), 1, anon_sym_LBRACK, - STATE(2281), 1, + STATE(2276), 1, sym_parameter_list, - STATE(6617), 1, + STATE(6613), 1, sym__function_declarator_seq, - ACTIONS(10206), 9, + ACTIONS(10229), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -621635,7 +621859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10204), 28, + ACTIONS(10227), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -621664,26 +621888,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [194632] = 3, + [195406] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 12, + ACTIONS(12254), 1, + anon_sym_LPAREN2, + ACTIONS(12256), 1, + anon_sym_LBRACK, + STATE(2276), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10233), 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___attribute, anon_sym_DOT, - ACTIONS(8994), 29, + ACTIONS(10231), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -621691,9 +621919,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___attribute__, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621708,28 +621937,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [194681] = 3, + [195463] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 12, + ACTIONS(12254), 1, + anon_sym_LPAREN2, + ACTIONS(12256), 1, + anon_sym_LBRACK, + STATE(2276), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10243), 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___attribute, anon_sym_DOT, - ACTIONS(8994), 29, + ACTIONS(10241), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -621737,9 +621969,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___attribute__, - anon_sym_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621754,20 +621987,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [194730] = 7, + [195520] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(12254), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12256), 1, anon_sym_LBRACK, - STATE(2281), 1, + STATE(2276), 1, sym_parameter_list, - STATE(6617), 1, + STATE(6613), 1, sym__function_declarator_seq, - ACTIONS(10210), 9, + ACTIONS(10262), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -621777,7 +622009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10208), 28, + ACTIONS(10260), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -621806,54 +622038,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [194787] = 14, + [195577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(8929), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 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(9709), 20, + anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_DOT, + ACTIONS(8931), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -621862,11 +622076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_COLON_RBRACK, - [194858] = 3, + 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, + [195626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 12, + ACTIONS(8933), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -621879,7 +622100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8887), 29, + ACTIONS(8935), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -621909,10 +622130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [194907] = 3, + [195675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 12, + ACTIONS(8937), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -621925,7 +622146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8911), 29, + ACTIONS(8939), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -621955,58 +622176,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [194956] = 21, + [195724] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(11787), 1, - sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(11171), 1, + anon_sym_LPAREN2, + ACTIONS(11185), 1, anon_sym_LBRACK, - ACTIONS(12261), 1, + ACTIONS(11737), 1, anon_sym_STAR, - ACTIONS(12263), 1, + ACTIONS(11739), 1, anon_sym_AMP_AMP, - ACTIONS(12265), 1, + ACTIONS(11741), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(5697), 1, + STATE(4608), 1, sym_parameter_list, - STATE(6178), 1, - sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(9215), 1, + STATE(8725), 1, sym__abstract_declarator, - ACTIONS(6859), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8125), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11789), 2, - sym_ms_unsigned_ptr_modifier, - sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, - anon_sym__unaligned, - anon_sym___unaligned, - STATE(6455), 2, - sym_ms_pointer_modifier, - aux_sym_pointer_declarator_repeat1, - STATE(7598), 2, + STATE(4044), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8117), 12, + ACTIONS(7371), 10, + anon_sym_RPAREN, + 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(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -622019,42 +622235,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195041] = 16, + [195799] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(11185), 1, anon_sym_LBRACK, - ACTIONS(11745), 1, + ACTIONS(11737), 1, anon_sym_STAR, - ACTIONS(11747), 1, + ACTIONS(11739), 1, anon_sym_AMP_AMP, - ACTIONS(11749), 1, + ACTIONS(11741), 1, anon_sym_AMP, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(4613), 1, + STATE(4608), 1, sym_parameter_list, - STATE(8314), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(8723), 1, + STATE(8734), 1, sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4109), 2, + STATE(6465), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7351), 10, + ACTIONS(7375), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -622065,7 +622281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -622078,53 +622294,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195116] = 16, + [195874] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11777), 1, + sym_ms_restrict_modifier, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11745), 1, + ACTIONS(12258), 1, anon_sym_STAR, - ACTIONS(11747), 1, + ACTIONS(12260), 1, anon_sym_AMP_AMP, - ACTIONS(11749), 1, + ACTIONS(12262), 1, anon_sym_AMP, - STATE(4333), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(4613), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8314), 1, + STATE(6186), 1, + sym_ms_unaligned_ptr_modifier, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8709), 1, + STATE(9199), 1, sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(6815), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6459), 2, + ACTIONS(11779), 2, + sym_ms_unsigned_ptr_modifier, + sym_ms_signed_ptr_modifier, + ACTIONS(11781), 2, + anon_sym__unaligned, + anon_sym___unaligned, + STATE(6463), 2, + sym_ms_pointer_modifier, + aux_sym_pointer_declarator_repeat1, + STATE(7569), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7343), 10, - anon_sym_RPAREN, - 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(10352), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -622137,69 +622358,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195191] = 3, + [195959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 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(8923), 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, + ACTIONS(7818), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [195240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8946), 12, + STATE(6471), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9121), 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___attribute, anon_sym_DOT, - ACTIONS(8948), 29, + ACTIONS(9123), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622210,9 +622388,11 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -622225,62 +622405,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [195289] = 21, + [196012] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11787), 1, + ACTIONS(11777), 1, sym_ms_restrict_modifier, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(12261), 1, + ACTIONS(12258), 1, anon_sym_STAR, - ACTIONS(12263), 1, + ACTIONS(12260), 1, anon_sym_AMP_AMP, - ACTIONS(12265), 1, + ACTIONS(12262), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(6178), 1, + STATE(6186), 1, sym_ms_unaligned_ptr_modifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9200), 1, + STATE(9169), 1, sym__abstract_declarator, - ACTIONS(6823), 2, + ACTIONS(6843), 2, anon_sym_LBRACE, anon_sym_requires, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(11789), 2, + ACTIONS(11779), 2, sym_ms_unsigned_ptr_modifier, sym_ms_signed_ptr_modifier, - ACTIONS(11791), 2, + ACTIONS(11781), 2, anon_sym__unaligned, anon_sym___unaligned, - STATE(5995), 2, + STATE(5968), 2, sym_ms_pointer_modifier, aux_sym_pointer_declarator_repeat1, - STATE(7585), 2, + STATE(7591), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -622293,138 +622470,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195374] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12267), 2, - anon_sym_final, - anon_sym_override, - STATE(6456), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9143), 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(9145), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [195427] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7897), 2, - anon_sym_final, - anon_sym_override, - STATE(6463), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9139), 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(9141), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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_requires, - [195480] = 16, + [196097] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(11185), 1, anon_sym_LBRACK, - ACTIONS(11745), 1, + ACTIONS(11737), 1, anon_sym_STAR, - ACTIONS(11747), 1, + ACTIONS(11739), 1, anon_sym_AMP_AMP, - ACTIONS(11749), 1, + ACTIONS(11741), 1, anon_sym_AMP, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(4613), 1, + STATE(4608), 1, sym_parameter_list, - STATE(8314), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(8704), 1, + STATE(8703), 1, sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4109), 2, + STATE(4044), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6823), 10, + ACTIONS(6843), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -622435,7 +622516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -622448,42 +622529,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195555] = 16, + [196172] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(11185), 1, anon_sym_LBRACK, - ACTIONS(11745), 1, + ACTIONS(11737), 1, anon_sym_STAR, - ACTIONS(11747), 1, + ACTIONS(11739), 1, anon_sym_AMP_AMP, - ACTIONS(11749), 1, + ACTIONS(11741), 1, anon_sym_AMP, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(4613), 1, + STATE(4608), 1, sym_parameter_list, - STATE(8314), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(8722), 1, + STATE(8712), 1, sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(4109), 2, + STATE(4044), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7355), 10, + ACTIONS(7341), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -622494,7 +622575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -622507,10 +622588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [195630] = 3, + [196247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 12, + ACTIONS(9011), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622523,7 +622604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8998), 29, + ACTIONS(9013), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622553,10 +622634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [195679] = 3, + [196296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 12, + ACTIONS(8953), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622569,7 +622650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(9013), 29, + ACTIONS(8955), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622599,10 +622680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [195728] = 3, + [196345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 12, + ACTIONS(9015), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622615,7 +622696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(9002), 29, + ACTIONS(9017), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622645,26 +622726,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [195777] = 5, + [196394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12270), 2, - anon_sym_final, - anon_sym_override, - STATE(6463), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9143), 9, + ACTIONS(8957), 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(9145), 28, + ACTIONS(8959), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622675,11 +622753,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___attribute__, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -622692,70 +622768,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_requires, - [195830] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10363), 1, - anon_sym_const, - ACTIONS(11172), 1, - anon_sym_LPAREN2, - ACTIONS(11186), 1, - anon_sym_LBRACK, - ACTIONS(11745), 1, - anon_sym_STAR, - ACTIONS(11747), 1, - anon_sym_AMP_AMP, - ACTIONS(11749), 1, - anon_sym_AMP, - STATE(4333), 1, - sym_alignas_qualifier, - STATE(4613), 1, - sym_parameter_list, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8732), 1, - sym__abstract_declarator, - ACTIONS(10365), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(4109), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7345), 10, - anon_sym_RPAREN, - 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_GT2, anon_sym_requires, - ACTIONS(10352), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [195905] = 3, + [196443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 12, + ACTIONS(8961), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622768,7 +622788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8895), 29, + ACTIONS(8963), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622798,23 +622818,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [195954] = 3, + [196492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 12, + ACTIONS(12264), 2, + anon_sym_final, + anon_sym_override, + STATE(6471), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9129), 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___attribute, anon_sym_DOT, - ACTIONS(8903), 29, + ACTIONS(9131), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622825,9 +622848,11 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -622840,37 +622865,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [196003] = 6, + [196545] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(12059), 1, - anon_sym_LT, - STATE(6693), 1, - sym_template_argument_list, - ACTIONS(6565), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(6572), 34, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(11171), 1, anon_sym_LPAREN2, + ACTIONS(11185), 1, + anon_sym_LBRACK, + ACTIONS(11737), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(11739), 1, anon_sym_AMP_AMP, + ACTIONS(11741), 1, + anon_sym_AMP, + STATE(4335), 1, + sym_alignas_qualifier, + STATE(4608), 1, + sym_parameter_list, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8683), 1, + sym__abstract_declarator, + ACTIONS(10383), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(4044), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 10, + anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(10370), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -622882,21 +622925,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_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [196058] = 3, + [196620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 12, + ACTIONS(8965), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -622909,7 +622941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(8944), 29, + ACTIONS(8967), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -622939,42 +622971,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [196107] = 16, + [196669] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10363), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(12051), 1, + anon_sym_LT, + STATE(6688), 1, + sym_template_argument_list, + ACTIONS(6559), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6566), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [196724] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10381), 1, anon_sym_const, - ACTIONS(11172), 1, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, + ACTIONS(11185), 1, anon_sym_LBRACK, - ACTIONS(11745), 1, + ACTIONS(11737), 1, anon_sym_STAR, - ACTIONS(11747), 1, + ACTIONS(11739), 1, anon_sym_AMP_AMP, - ACTIONS(11749), 1, + ACTIONS(11741), 1, anon_sym_AMP, - STATE(4333), 1, + STATE(4335), 1, sym_alignas_qualifier, - STATE(4613), 1, + STATE(4608), 1, sym_parameter_list, - STATE(8314), 1, + STATE(8341), 1, sym__function_declarator_seq, - STATE(8758), 1, + STATE(8668), 1, sym__abstract_declarator, - ACTIONS(10365), 2, + ACTIONS(10383), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6451), 2, + STATE(6459), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8312), 5, + STATE(8338), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7391), 10, + ACTIONS(7367), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -622985,7 +623066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - ACTIONS(10352), 12, + ACTIONS(10370), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -622998,18 +623079,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [196182] = 7, + [196799] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(6866), 1, + sym_auto, + ACTIONS(6868), 1, + anon_sym_decltype, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(2919), 1, + sym_template_argument_list, + STATE(3215), 1, + sym_decltype_auto, + STATE(3552), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5609), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6864), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5617), 26, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(12275), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(2277), 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, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [196864] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12250), 1, + anon_sym_LPAREN2, + ACTIONS(12252), 1, + anon_sym_LBRACK, + STATE(2274), 1, sym_parameter_list, - STATE(6557), 1, + STATE(6709), 1, sym__function_declarator_seq, - ACTIONS(10186), 11, + ACTIONS(10225), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623021,7 +623156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10184), 26, + ACTIONS(10223), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -623048,18 +623183,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [196239] = 7, + [196921] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(12250), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(12252), 1, anon_sym_LBRACK, - STATE(2277), 1, + STATE(2274), 1, sym_parameter_list, - STATE(6557), 1, + STATE(6709), 1, sym__function_declarator_seq, - ACTIONS(10190), 11, + ACTIONS(10264), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623071,7 +623206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10188), 26, + ACTIONS(10266), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -623098,18 +623233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [196296] = 7, + [196978] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(12250), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(12252), 1, anon_sym_LBRACK, - STATE(2277), 1, + STATE(2274), 1, sym_parameter_list, - STATE(6557), 1, + STATE(6709), 1, sym__function_declarator_seq, - ACTIONS(10194), 11, + ACTIONS(10178), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623121,7 +623256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10192), 26, + ACTIONS(10176), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -623148,18 +623283,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [196353] = 7, + [197035] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(12250), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(12252), 1, anon_sym_LBRACK, - STATE(2277), 1, + STATE(2274), 1, sym_parameter_list, - STATE(6557), 1, + STATE(6709), 1, sym__function_declarator_seq, - ACTIONS(10174), 11, + ACTIONS(10221), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623171,7 +623306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10172), 26, + ACTIONS(10219), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -623198,120 +623333,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [196410] = 11, + [197092] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6869), 1, - sym_auto, - ACTIONS(6871), 1, - anon_sym_decltype, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(2938), 1, - sym_template_argument_list, - STATE(3203), 1, - sym_decltype_auto, - STATE(3552), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5636), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5643), 26, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9182), 1, anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10439), 7, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [196475] = 24, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COLON_RBRACK, + [197183] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 7, + ACTIONS(10554), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -623319,10 +623467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COLON_RBRACK, - [196566] = 3, + [197274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 12, + ACTIONS(3168), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623335,7 +623483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(3161), 29, + ACTIONS(3166), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -623365,10 +623513,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [196615] = 3, + [197323] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10463), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [197418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 12, + ACTIONS(3157), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -623381,7 +623598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym___attribute, anon_sym_DOT, - ACTIONS(3153), 29, + ACTIONS(3155), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -623411,263 +623628,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [196664] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7524), 1, - sym_ms_call_modifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(9071), 1, - sym__declarator, - STATE(11554), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(2242), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8555), 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, - [196753] = 24, + [197467] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10437), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [196844] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10479), 5, + ACTIONS(10469), 7, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_COLON_RBRACK, - [196939] = 23, + [197558] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7529), 1, + STATE(7507), 1, sym_ms_call_modifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8934), 1, + STATE(8854), 1, sym__declarator, - STATE(10743), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -623679,133 +623761,66 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [197028] = 24, + [197647] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10487), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [197119] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 7, + ACTIONS(10491), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -623813,61 +623828,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COLON_RBRACK, - [197210] = 23, + [197738] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7544), 1, + STATE(7523), 1, sym_ms_call_modifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8931), 1, + STATE(8893), 1, sym__declarator, - STATE(10743), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -623879,61 +623894,61 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [197299] = 23, + [197827] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7550), 1, + STATE(7533), 1, sym_ms_call_modifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8879), 1, + STATE(8857), 1, sym__declarator, - STATE(10743), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -623945,61 +623960,61 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [197388] = 23, + [197916] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7554), 1, + STATE(7537), 1, sym_ms_call_modifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8903), 1, + STATE(8864), 1, sym__declarator, - STATE(10743), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -624011,128 +624026,61 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [197477] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10540), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COLON_RBRACK, - [197568] = 23, + [198005] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7557), 1, + STATE(7542), 1, sym_ms_call_modifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8917), 1, + STATE(8884), 1, sym__declarator, - STATE(10743), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -624144,61 +624092,61 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [197657] = 23, + [198094] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7561), 1, + STATE(7548), 1, sym_ms_call_modifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8880), 1, + STATE(8860), 1, sym__declarator, - STATE(10743), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - ACTIONS(2242), 6, + ACTIONS(2240), 6, anon_sym___cdecl, anon_sym___clrcall, anon_sym___stdcall, anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -624210,70 +624158,20 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [197746] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12273), 1, - anon_sym_LPAREN2, - ACTIONS(12275), 1, - anon_sym_LBRACK, - STATE(2277), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10198), 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(10196), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [197803] = 5, + [198183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6603), 1, + ACTIONS(6658), 1, anon_sym_LBRACK, - ACTIONS(6598), 2, + ACTIONS(6653), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - ACTIONS(6601), 4, + ACTIONS(6656), 4, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym_COLON_COLON, - ACTIONS(6594), 34, + ACTIONS(6649), 34, anon_sym_AMP, anon_sym___extension__, anon_sym_virtual, @@ -624308,10 +624206,154 @@ static const uint16_t ts_small_parse_table[] = { sym_auto, anon_sym_decltype, anon_sym_operator, - [197856] = 3, + [198236] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10473), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [198331] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9891), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON_RBRACK, + [198426] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 12, + ACTIONS(7939), 2, + anon_sym_final, + anon_sym_override, + STATE(6426), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9121), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624322,9 +624364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(8952), 29, + ACTIONS(9123), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -624336,7 +624377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym___attribute__, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -624350,22 +624390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_requires, - [197905] = 7, + [198479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, - anon_sym_LPAREN2, - ACTIONS(12275), 1, - anon_sym_LBRACK, - STATE(2277), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10202), 11, + ACTIONS(8941), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624376,10 +624406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(10200), 26, + ACTIONS(8943), 29, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -624388,6 +624420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_LT, + anon_sym___attribute__, + anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -624404,30 +624438,263 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [197962] = 7, + [198528] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2277), 1, + STATE(2273), 1, sym_parameter_list, - STATE(6557), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10206), 11, + ACTIONS(10178), 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(10176), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [198584] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12099), 1, + anon_sym_AMP, + ACTIONS(12105), 1, + anon_sym_GT_EQ, + ACTIONS(12115), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12119), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9621), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12097), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12107), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12101), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12103), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + [198668] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12099), 1, + anon_sym_AMP, + ACTIONS(12105), 1, anon_sym_GT_EQ, + ACTIONS(12115), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12119), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9621), 2, + anon_sym_PIPE, + anon_sym___attribute, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12107), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12101), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12103), 3, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + ACTIONS(9623), 12, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + [198750] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12105), 1, + anon_sym_GT_EQ, + ACTIONS(12115), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12107), 2, + anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(9621), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(12101), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12103), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + [198828] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11817), 1, + anon_sym_LPAREN2, + ACTIONS(11819), 1, + anon_sym_LBRACK, + STATE(2273), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10229), 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(10204), 26, + ACTIONS(10227), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -624437,7 +624704,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -624450,34 +624721,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [198019] = 7, + [198884] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2277), 1, + STATE(2273), 1, sym_parameter_list, - STATE(6557), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10210), 11, + ACTIONS(10233), 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(10208), 26, + ACTIONS(10231), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -624487,7 +624753,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -624500,22 +624770,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [198076] = 7, + [198940] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2281), 1, + STATE(2273), 1, sym_parameter_list, - STATE(6617), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10186), 9, + ACTIONS(10243), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624524,8 +624790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(10184), 28, + ACTIONS(10241), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -624538,7 +624805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -624551,21 +624819,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [198133] = 7, + [198996] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2281), 1, + STATE(2273), 1, sym_parameter_list, - STATE(6617), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10190), 9, + ACTIONS(10262), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624574,8 +624839,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(10188), 28, + ACTIONS(10260), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -624588,34 +624854,743 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [199052] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12105), 1, + anon_sym_GT_EQ, + ACTIONS(12115), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12107), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9621), 3, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym___attribute, + ACTIONS(12103), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 16, + 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_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, + [199128] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12115), 1, + anon_sym_LT_EQ_GT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12107), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9621), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(9623), 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, + [199200] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12089), 1, + anon_sym_SLASH, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9621), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(9623), 20, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [199268] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12089), 1, + anon_sym_SLASH, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12107), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(9621), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym___attribute, + ACTIONS(9623), 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, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [199338] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + ACTIONS(11571), 1, + anon_sym_LBRACK, + STATE(6682), 1, + sym_new_declarator, + STATE(5931), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9230), 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(9232), 25, + 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_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, + [199396] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10437), 1, + anon_sym___attribute, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12095), 1, + anon_sym_PIPE, + ACTIONS(12099), 1, + anon_sym_AMP, + ACTIONS(12105), 1, + anon_sym_GT_EQ, + ACTIONS(12115), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12117), 1, + anon_sym_bitor, + ACTIONS(12119), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12091), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12093), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12097), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12107), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12101), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12103), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10439), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [199488] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 1, + anon_sym_LBRACE, + ACTIONS(12271), 1, + anon_sym_LPAREN2, + ACTIONS(12273), 1, + anon_sym_LBRACK, + STATE(6570), 1, + sym_new_declarator, + STATE(7386), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9178), 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(9180), 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, + [199546] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10459), 1, + anon_sym___attribute, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12095), 1, + anon_sym_PIPE, + ACTIONS(12099), 1, + anon_sym_AMP, + ACTIONS(12105), 1, + anon_sym_GT_EQ, + ACTIONS(12113), 1, anon_sym_QMARK, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, + ACTIONS(12117), 1, + anon_sym_bitor, + ACTIONS(12119), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12091), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12093), 2, + anon_sym_AMP_AMP, anon_sym_and, + ACTIONS(12097), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12107), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10463), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(12101), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12103), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [199642] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + STATE(7046), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7357), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12053), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7359), 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___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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [199700] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10467), 1, + anon_sym___attribute, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12095), 1, + anon_sym_PIPE, + ACTIONS(12099), 1, + anon_sym_AMP, + ACTIONS(12105), 1, + anon_sym_GT_EQ, + ACTIONS(12115), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12117), 1, anon_sym_bitor, + ACTIONS(12119), 1, + anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12091), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12093), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12097), 2, + anon_sym_CARET, anon_sym_xor, + ACTIONS(12107), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12101), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12103), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10469), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_QMARK, + [199792] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(7365), 1, + anon_sym___attribute, + ACTIONS(11769), 1, + anon_sym_STAR, + ACTIONS(11771), 1, + anon_sym_AMP_AMP, + ACTIONS(11773), 1, + anon_sym_AMP, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + STATE(4801), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8764), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6527), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7367), 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(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [199868] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(10471), 1, + anon_sym___attribute, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12095), 1, + anon_sym_PIPE, + ACTIONS(12099), 1, + anon_sym_AMP, + ACTIONS(12105), 1, + anon_sym_GT_EQ, + ACTIONS(12113), 1, + anon_sym_QMARK, + ACTIONS(12115), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12117), 1, + anon_sym_bitor, + ACTIONS(12119), 1, anon_sym_bitand, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12091), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12093), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12097), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12107), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(10473), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(12101), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [198190] = 7, + ACTIONS(12103), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [199964] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(12275), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12277), 1, anon_sym_LBRACK, - STATE(2281), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10194), 9, + STATE(6563), 1, + sym_new_declarator, + STATE(7230), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9230), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624625,7 +625600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10192), 28, + ACTIONS(9232), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -624651,21 +625626,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [198247] = 7, + [200022] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(2281), 1, + STATE(2273), 1, sym_parameter_list, - STATE(6617), 1, + STATE(5465), 1, sym__function_declarator_seq, - ACTIONS(10174), 9, + ACTIONS(10225), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -624674,8 +625646,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym___attribute, anon_sym_DOT, - ACTIONS(10172), 28, + ACTIONS(10223), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -624688,7 +625661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -624701,100 +625675,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [198304] = 23, + [200078] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, - sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, - anon_sym_STAR, - ACTIONS(10242), 1, - anon_sym_AMP_AMP, - ACTIONS(10244), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7510), 1, - sym_ms_call_modifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8945), 1, - sym__declarator, - STATE(10743), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - ACTIONS(2242), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8555), 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, - [198393] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7829), 2, - anon_sym_final, - anon_sym_override, - STATE(6456), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9139), 11, + STATE(2273), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10264), 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(9141), 26, + ACTIONS(10266), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -624802,8 +625707,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -624816,175 +625724,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_requires, - [198446] = 20, + [200134] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(12229), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12089), 1, anon_sym_SLASH, - ACTIONS(12239), 1, + ACTIONS(12095), 1, + anon_sym_PIPE, + ACTIONS(12099), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12105), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12113), 1, + anon_sym_QMARK, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - ACTIONS(12253), 1, + ACTIONS(12117), 1, + anon_sym_bitor, + ACTIONS(12119), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12281), 1, + anon_sym___attribute, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12247), 2, + ACTIONS(12091), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12093), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12097), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12101), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12103), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 14, - anon_sym_DOT_DOT_DOT, + ACTIONS(12279), 3, 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_COLON_RBRACK, - [198529] = 25, + anon_sym___attribute__, + [200230] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9621), 1, + anon_sym___attribute, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10435), 1, - anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(12089), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12095), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12099), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12105), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12117), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12119), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12101), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12097), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12101), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12103), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 5, + ACTIONS(9623), 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, - [198621] = 13, + anon_sym_or, + anon_sym_and, + [200318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(12275), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12277), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12097), 1, - anon_sym_SLASH, - STATE(3874), 1, + STATE(6579), 1, + sym_new_declarator, + STATE(7201), 2, sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + sym_initializer_list, + ACTIONS(9234), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9707), 6, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, - ACTIONS(9709), 20, + anon_sym_DOT, + ACTIONS(9236), 25, 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, @@ -624993,8 +625895,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___attribute__, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -625003,21 +625904,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [198689] = 8, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [200376] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(4902), 1, anon_sym_LBRACE, - ACTIONS(12279), 1, + ACTIONS(12271), 1, anon_sym_LPAREN2, - ACTIONS(12281), 1, + ACTIONS(12273), 1, anon_sym_LBRACK, - STATE(6577), 1, + STATE(6580), 1, sym_new_declarator, - STATE(7231), 2, + STATE(7200), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9256), 11, + ACTIONS(9215), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -625029,7 +625934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9258), 23, + ACTIONS(9217), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -625053,44 +625958,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [198747] = 17, + [200434] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(12275), 1, anon_sym_LPAREN2, - ACTIONS(7349), 1, + ACTIONS(12277), 1, + anon_sym_LBRACK, + STATE(6696), 1, + sym_new_declarator, + STATE(7380), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9178), 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(9180), 25, + 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, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [200492] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(7369), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(11769), 1, anon_sym_STAR, - ACTIONS(11781), 1, + ACTIONS(11771), 1, anon_sym_AMP_AMP, - ACTIONS(11783), 1, + ACTIONS(11773), 1, anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, + ACTIONS(11785), 1, anon_sym_const, - STATE(4796), 1, + STATE(4801), 1, sym_parameter_list, - STATE(6707), 1, + STATE(6698), 1, sym_alignas_qualifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8814), 1, + STATE(8770), 1, sym__abstract_declarator, - ACTIONS(11797), 2, + ACTIONS(11787), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6420), 2, + STATE(6406), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7351), 8, + ACTIONS(7371), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -625099,7 +626054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(11775), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -625112,44 +626067,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198823] = 17, + [200568] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(7341), 1, + ACTIONS(7373), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(11769), 1, anon_sym_STAR, - ACTIONS(11781), 1, + ACTIONS(11771), 1, anon_sym_AMP_AMP, - ACTIONS(11783), 1, + ACTIONS(11773), 1, anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, + ACTIONS(11785), 1, anon_sym_const, - STATE(4796), 1, + STATE(4801), 1, sym_parameter_list, - STATE(6707), 1, + STATE(6698), 1, sym_alignas_qualifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8820), 1, + STATE(8771), 1, sym__abstract_declarator, - ACTIONS(11797), 2, + ACTIONS(11787), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6508), 2, + STATE(6529), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7343), 8, + ACTIONS(7375), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -625158,7 +626113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(11775), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -625171,44 +626126,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198899] = 17, + [200644] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(7353), 1, + ACTIONS(7343), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(11769), 1, anon_sym_STAR, - ACTIONS(11781), 1, + ACTIONS(11771), 1, anon_sym_AMP_AMP, - ACTIONS(11783), 1, + ACTIONS(11773), 1, anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, + ACTIONS(11785), 1, anon_sym_const, - STATE(4796), 1, + STATE(4801), 1, sym_parameter_list, - STATE(6707), 1, + STATE(6698), 1, sym_alignas_qualifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8828), 1, + STATE(8772), 1, sym__abstract_declarator, - ACTIONS(11797), 2, + ACTIONS(11787), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6420), 2, + STATE(6406), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7355), 8, + ACTIONS(7341), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -625217,7 +626172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(11775), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -625230,243 +626185,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [198975] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - ACTIONS(11529), 1, - anon_sym_LBRACK, - STATE(6704), 1, - sym_new_declarator, - STATE(6007), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 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(9228), 25, - 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_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, - [199033] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12097), 1, - anon_sym_SLASH, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym___attribute, - ACTIONS(9709), 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, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - [199103] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - ACTIONS(11529), 1, - anon_sym_LBRACK, - STATE(6582), 1, - sym_new_declarator, - STATE(5978), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 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(9276), 25, - 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_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, - [199161] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(9707), 1, - anon_sym___attribute, - ACTIONS(12097), 1, - anon_sym_SLASH, - ACTIONS(12103), 1, - anon_sym_PIPE, - ACTIONS(12107), 1, - anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, - anon_sym_bitor, - ACTIONS(12127), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12101), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12105), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12109), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 7, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - [199251] = 8, + [200720] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(4902), 1, anon_sym_LBRACE, - ACTIONS(12279), 1, + ACTIONS(12271), 1, anon_sym_LPAREN2, - ACTIONS(12281), 1, + ACTIONS(12273), 1, anon_sym_LBRACK, - STATE(6569), 1, + STATE(6565), 1, sym_new_declarator, - STATE(7389), 2, + STATE(7334), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9248), 11, + ACTIONS(9234), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -625478,7 +626211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9250), 23, + ACTIONS(9236), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -625502,532 +626235,234 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [199309] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - ACTIONS(11529), 1, - anon_sym_LBRACK, - STATE(6575), 1, - sym_new_declarator, - STATE(6024), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 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(9258), 25, - 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_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, - [199367] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(12283), 1, - anon_sym_LPAREN2, - ACTIONS(12285), 1, - anon_sym_LBRACK, - STATE(6610), 1, - sym_new_declarator, - STATE(7199), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9256), 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(9258), 25, - 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, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [199425] = 25, + [200778] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10538), 1, + ACTIONS(10485), 1, anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(12089), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12095), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12099), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12105), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12117), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12119), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12091), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12093), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12097), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12101), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12103), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 5, + ACTIONS(10487), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, - [199517] = 25, + [200870] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10542), 1, + ACTIONS(10489), 1, anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(12089), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12095), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12099), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12105), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12117), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12119), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12091), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12105), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12109), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10544), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [199609] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9599), 1, - anon_sym___attribute, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12097), 1, - anon_sym_SLASH, - ACTIONS(12103), 1, - anon_sym_PIPE, - ACTIONS(12107), 1, - anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, - anon_sym_bitor, - ACTIONS(12127), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, ACTIONS(12093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12099), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12101), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12097), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12101), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12103), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 5, + ACTIONS(10491), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, - [199701] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12097), 1, - anon_sym_SLASH, - ACTIONS(12103), 1, - anon_sym_PIPE, - ACTIONS(12107), 1, - anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12121), 1, - anon_sym_QMARK, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, - anon_sym_bitor, - ACTIONS(12127), 1, - anon_sym_bitand, - ACTIONS(12289), 1, - anon_sym___attribute, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12099), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12101), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12105), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12109), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(12287), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [199797] = 25, + [200962] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(10473), 1, + ACTIONS(9661), 1, anon_sym___attribute, - ACTIONS(12097), 1, + ACTIONS(12089), 1, anon_sym_SLASH, - ACTIONS(12103), 1, + ACTIONS(12095), 1, anon_sym_PIPE, - ACTIONS(12107), 1, + ACTIONS(12099), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12105), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + ACTIONS(12117), 1, anon_sym_bitor, - ACTIONS(12127), 1, + ACTIONS(12119), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12099), 2, + ACTIONS(12091), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(12093), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12105), 2, + ACTIONS(12097), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12101), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12103), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 5, + ACTIONS(9659), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, - [199889] = 27, + [201054] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11571), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10477), 1, - anon_sym___attribute, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12097), 1, - anon_sym_SLASH, - ACTIONS(12103), 1, - anon_sym_PIPE, - ACTIONS(12107), 1, - anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12121), 1, - anon_sym_QMARK, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, - anon_sym_bitor, - ACTIONS(12127), 1, - anon_sym_bitand, - STATE(3874), 1, + STATE(6585), 1, + sym_new_declarator, + STATE(6013), 2, sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12099), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12101), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12105), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10479), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(12109), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [199985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5589), 12, + sym_initializer_list, + ACTIONS(9234), 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_LBRACK, anon_sym_DOT, - ACTIONS(5591), 28, + ACTIONS(9236), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -626035,8 +626470,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_LBRACK_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -626049,14 +626486,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [200033] = 3, + [201112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 12, + ACTIONS(5587), 12, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -626069,7 +626502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5595), 28, + ACTIONS(5589), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -626098,219 +626531,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [200081] = 25, + [201160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10485), 1, - anon_sym___attribute, - ACTIONS(12097), 1, - anon_sym_SLASH, - ACTIONS(12103), 1, - anon_sym_PIPE, - ACTIONS(12107), 1, - anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, - anon_sym_bitor, - ACTIONS(12127), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(5591), 12, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12099), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12101), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12105), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12109), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10487), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - [200173] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(10489), 1, - anon_sym___attribute, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12097), 1, anon_sym_SLASH, - ACTIONS(12103), 1, anon_sym_PIPE, - ACTIONS(12107), 1, anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12121), 1, - anon_sym_QMARK, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, - anon_sym_bitor, - ACTIONS(12127), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12099), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12101), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12105), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(10491), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(12109), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12111), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [200269] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - STATE(7126), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7357), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(12061), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7359), 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___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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [200327] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(12283), 1, - anon_sym_LPAREN2, - ACTIONS(12285), 1, + anon_sym_GT_GT, anon_sym_LBRACK, - STATE(6596), 1, - sym_new_declarator, - STATE(7217), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9248), 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(9250), 25, + ACTIONS(5593), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -626318,10 +626558,8 @@ 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_RBRACK, + anon_sym_LBRACK_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -626334,44 +626572,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200385] = 17, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [201208] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(7347), 1, + ACTIONS(6841), 1, anon_sym___attribute, - ACTIONS(11779), 1, + ACTIONS(11769), 1, anon_sym_STAR, - ACTIONS(11781), 1, + ACTIONS(11771), 1, anon_sym_AMP_AMP, - ACTIONS(11783), 1, + ACTIONS(11773), 1, anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, + ACTIONS(11785), 1, anon_sym_const, - STATE(4796), 1, + STATE(4801), 1, sym_parameter_list, - STATE(6707), 1, + STATE(6698), 1, sym_alignas_qualifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8803), 1, + STATE(8782), 1, sym__abstract_declarator, - ACTIONS(11797), 2, + ACTIONS(11787), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6420), 2, + STATE(6406), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7345), 8, + ACTIONS(6843), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -626380,7 +626622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(11775), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -626393,361 +626635,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [200461] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12291), 1, - anon_sym_COMMA, - ACTIONS(12293), 1, - anon_sym_SEMI, - ACTIONS(12295), 1, - anon_sym_RBRACE, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9672), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [200561] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(9707), 1, - anon_sym___attribute, - ACTIONS(12097), 1, - anon_sym_SLASH, - ACTIONS(12103), 1, - anon_sym_PIPE, - ACTIONS(12107), 1, - anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, - anon_sym_bitor, - ACTIONS(12127), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12105), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12109), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 9, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - [200649] = 27, + [201284] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12097), 1, - anon_sym_SLASH, - ACTIONS(12103), 1, - anon_sym_PIPE, - ACTIONS(12107), 1, - anon_sym_AMP, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12121), 1, - anon_sym_QMARK, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, - anon_sym_bitor, - ACTIONS(12127), 1, - anon_sym_bitand, - ACTIONS(12299), 1, + ACTIONS(7347), 1, anon_sym___attribute, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(11769), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12099), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12101), 2, + ACTIONS(11771), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12105), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12109), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(12297), 3, + ACTIONS(11773), 1, + anon_sym_AMP, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + STATE(4801), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8783), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 8, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym___attribute__, - [200745] = 30, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [201360] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(12301), 1, + ACTIONS(12283), 1, sym_identifier, - ACTIONS(12303), 1, + ACTIONS(12285), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12307), 1, + ACTIONS(12289), 1, anon_sym_EQ, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4786), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(5157), 1, + STATE(5032), 1, sym_splice_specifier, - STATE(7818), 1, + STATE(7812), 1, sym_ms_declspec_modifier, - STATE(8756), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(12305), 2, + ACTIONS(12287), 2, anon_sym_COMMA, anon_sym_GT2, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7819), 2, + STATE(7817), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7409), 3, + STATE(7407), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [200847] = 21, + [201462] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(10552), 1, + anon_sym___attribute, + ACTIONS(12089), 1, anon_sym_SLASH, - ACTIONS(12107), 1, + ACTIONS(12095), 1, + anon_sym_PIPE, + ACTIONS(12099), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12105), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - ACTIONS(12127), 1, + ACTIONS(12117), 1, + anon_sym_bitor, + ACTIONS(12119), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12105), 2, + ACTIONS(12091), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12093), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12097), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12115), 2, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(12101), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12103), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 10, + ACTIONS(10554), 5, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, + [201554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5587), 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_LBRACK, + anon_sym_DOT, + ACTIONS(5589), 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_LBRACK_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, anon_sym_bitor, - [200931] = 8, + anon_sym_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_requires, + [201602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(12283), 1, - anon_sym_LPAREN2, - ACTIONS(12285), 1, - anon_sym_LBRACK, - STATE(6684), 1, - sym_new_declarator, - STATE(7302), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9274), 9, + ACTIONS(5591), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -626756,10 +626890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(9276), 25, + ACTIONS(5593), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -626770,6 +626906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LBRACK_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -626783,33 +626920,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [200989] = 8, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [201650] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(4914), 1, anon_sym_LBRACE, - ACTIONS(12279), 1, + ACTIONS(11569), 1, anon_sym_LPAREN2, - ACTIONS(12281), 1, + ACTIONS(11571), 1, anon_sym_LBRACK, - STATE(6598), 1, + STATE(6633), 1, sym_new_declarator, - STATE(7325), 2, + STATE(5957), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9274), 11, + ACTIONS(9178), 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(9276), 23, + ACTIONS(9180), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -626819,7 +626957,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_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -626832,25 +626973,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [201047] = 3, + [201708] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5589), 10, + ACTIONS(4902), 1, + anon_sym_LBRACE, + ACTIONS(12271), 1, + anon_sym_LPAREN2, + ACTIONS(12273), 1, + anon_sym_LBRACK, + STATE(6586), 1, + sym_new_declarator, + STATE(7216), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9230), 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_LBRACK, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5591), 30, + ACTIONS(9232), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -626858,11 +627009,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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -626875,45 +627022,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [201095] = 12, + anon_sym_GT2, + [201766] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(12275), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12277), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12097), 1, - anon_sym_SLASH, - STATE(3874), 1, + STATE(6554), 1, + sym_new_declarator, + STATE(7196), 2, sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(9707), 8, + sym_initializer_list, + ACTIONS(9215), 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___attribute, - ACTIONS(9709), 20, + anon_sym_DOT, + ACTIONS(9217), 25, 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, @@ -626922,8 +627060,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___attribute__, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -626932,72 +627069,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [201161] = 20, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [201824] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(9889), 1, + anon_sym___attribute, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12089), 1, anon_sym_SLASH, - ACTIONS(12107), 1, + ACTIONS(12095), 1, + anon_sym_PIPE, + ACTIONS(12099), 1, anon_sym_AMP, - ACTIONS(12113), 1, + ACTIONS(12105), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12113), 1, + anon_sym_QMARK, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - ACTIONS(12127), 1, + ACTIONS(12117), 1, + anon_sym_bitor, + ACTIONS(12119), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym___attribute, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12115), 2, + ACTIONS(12091), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12093), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12097), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12109), 3, + ACTIONS(9891), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + ACTIONS(12101), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12103), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 12, + [201920] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12089), 1, + anon_sym_SLASH, + ACTIONS(12095), 1, + anon_sym_PIPE, + ACTIONS(12099), 1, + anon_sym_AMP, + ACTIONS(12105), 1, + anon_sym_GT_EQ, + ACTIONS(12113), 1, + anon_sym_QMARK, + ACTIONS(12115), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12117), 1, + anon_sym_bitor, + ACTIONS(12119), 1, + anon_sym_bitand, + ACTIONS(12293), 1, + anon_sym___attribute, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12085), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12091), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12093), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12097), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12107), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12101), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12103), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(12291), 3, + anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - [201243] = 3, + [202016] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5593), 10, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + ACTIONS(11571), 1, + anon_sym_LBRACK, + STATE(6652), 1, + sym_new_declarator, + STATE(5946), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9215), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627006,12 +627234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LBRACK, anon_sym_DOT, - ACTIONS(5595), 30, + ACTIONS(9217), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627022,8 +627248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627036,38 +627261,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [201291] = 8, + [202074] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(12283), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(12285), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(6573), 1, - sym_new_declarator, - STATE(7387), 2, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12295), 1, + anon_sym_COMMA, + ACTIONS(12297), 1, + anon_sym_SEMI, + ACTIONS(12299), 1, + anon_sym_RBRACE, + STATE(3849), 1, sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 9, + STATE(3850), 1, + sym_subscript_argument_list, + STATE(9958), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [202174] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12089), 1, anon_sym_SLASH, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12087), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(9621), 8, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(9228), 25, + anon_sym___attribute, + ACTIONS(9623), 20, 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, @@ -627076,7 +627376,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627085,97 +627386,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [201349] = 18, + [202240] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9621), 1, + anon_sym___attribute, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(12089), 1, anon_sym_SLASH, - ACTIONS(12113), 1, + ACTIONS(12095), 1, + anon_sym_PIPE, + ACTIONS(12099), 1, + anon_sym_AMP, + ACTIONS(12105), 1, anon_sym_GT_EQ, - ACTIONS(12123), 1, + ACTIONS(12115), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + ACTIONS(12117), 1, + anon_sym_bitor, + ACTIONS(12119), 1, + anon_sym_bitand, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(12085), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, + ACTIONS(12087), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12115), 2, + ACTIONS(12093), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12097), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12107), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 3, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym___attribute, - ACTIONS(12109), 3, + ACTIONS(12101), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12111), 3, + ACTIONS(12103), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 13, + ACTIONS(9623), 7, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, anon_sym_SEMI, anon_sym___attribute__, anon_sym_QMARK, anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - [201427] = 8, + [202330] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, + ACTIONS(11817), 1, anon_sym_LPAREN2, - ACTIONS(12281), 1, + ACTIONS(11819), 1, anon_sym_LBRACK, - STATE(6713), 1, - sym_new_declarator, - STATE(7324), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9226), 11, + STATE(2273), 1, + sym_parameter_list, + STATE(5465), 1, + sym__function_declarator_seq, + ACTIONS(10221), 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(9228), 23, + ACTIONS(10219), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -627185,7 +627484,11 @@ 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_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627198,81 +627501,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [201485] = 17, + [202386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12097), 1, - anon_sym_SLASH, - ACTIONS(12113), 1, - anon_sym_GT_EQ, - ACTIONS(12123), 1, - anon_sym_LT_EQ_GT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + ACTIONS(9409), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 3, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, - anon_sym___attribute, - ACTIONS(12111), 3, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 16, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9411), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + 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, - [201561] = 8, + 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, + [202433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(11527), 1, + ACTIONS(12275), 1, anon_sym_LPAREN2, - ACTIONS(11529), 1, - anon_sym_LBRACK, - STATE(6568), 1, - sym_new_declarator, - STATE(5946), 2, + STATE(7276), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9248), 9, + ACTIONS(9305), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627282,7 +627565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9250), 25, + ACTIONS(9307), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -627295,7 +627578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627308,100 +627592,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201619] = 27, + [202486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(9826), 1, - anon_sym___attribute, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12097), 1, + ACTIONS(12301), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9329), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12103), 1, anon_sym_PIPE, - ACTIONS(12107), 1, anon_sym_AMP, - ACTIONS(12113), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9331), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_GT_EQ, - ACTIONS(12121), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(12123), 1, anon_sym_LT_EQ_GT, - ACTIONS(12125), 1, + anon_sym_or, anon_sym_bitor, - ACTIONS(12127), 1, + anon_sym_xor, anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12099), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12101), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [202535] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12105), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9828), 3, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_requires, + STATE(7335), 1, + sym_ref_qualifier, + STATE(8019), 1, + sym_trailing_return_type, + STATE(8064), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12312), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7652), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 9, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - ACTIONS(12109), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12111), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [201715] = 7, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [202624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2274), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10198), 10, + ACTIONS(9385), 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___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10196), 26, + ACTIONS(9387), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627409,11 +627728,8 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627426,31 +627742,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201771] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [202671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2274), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10202), 10, + ACTIONS(8997), 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___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10200), 26, + ACTIONS(8999), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627458,11 +627772,8 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627475,47 +627786,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201827] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [202718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2274), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10206), 10, + ACTIONS(12318), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12320), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9293), 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___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10204), 26, + ACTIONS(9295), 24, 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___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, @@ -627524,90 +627832,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [201883] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7393), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym_STAR, - ACTIONS(11781), 1, - anon_sym_AMP_AMP, - ACTIONS(11783), 1, - anon_sym_AMP, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - STATE(4796), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8800), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6506), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7391), 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(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [201959] = 7, + [202769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, - anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2274), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10210), 10, + ACTIONS(9438), 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___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10208), 26, + ACTIONS(9440), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627615,11 +627862,8 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627632,18 +627876,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202015] = 7, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [202816] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(7122), 1, + anon_sym_LBRACE, + ACTIONS(7405), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7119), 2, anon_sym_LPAREN2, - ACTIONS(11819), 1, - anon_sym_LBRACK, - STATE(2274), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10186), 10, + anon_sym_COLON_COLON, + ACTIONS(7124), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627651,10 +627900,8 @@ 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_DOT, - ACTIONS(10184), 26, + ACTIONS(7129), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -627667,8 +627914,8 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627681,18 +627928,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202071] = 7, + [202871] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - STATE(2274), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10190), 10, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12324), 1, + anon_sym_COMMA, + ACTIONS(12330), 1, + anon_sym_SLASH, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, + anon_sym_AMP, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12350), 1, + anon_sym_RBRACK, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + STATE(9980), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12332), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12334), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12338), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [202968] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(12275), 1, + anon_sym_LPAREN2, + STATE(7309), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9455), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627701,9 +628016,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym___attribute, anon_sym_DOT, - ACTIONS(10188), 26, + ACTIONS(9457), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -627716,8 +628030,8 @@ 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_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627730,29 +628044,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202127] = 7, + [203021] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11819), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(2274), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10194), 10, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12362), 1, + anon_sym_COMMA, + ACTIONS(12364), 1, + anon_sym_RPAREN, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + STATE(9824), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [203118] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 1, + anon_sym_LBRACE, + ACTIONS(12271), 1, + anon_sym_LPAREN2, + STATE(7199), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9403), 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___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10192), 26, + ACTIONS(9405), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -627762,11 +628145,8 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627779,31 +628159,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202183] = 7, + anon_sym_GT2, + [203171] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11817), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(7040), 1, + sym_auto, + ACTIONS(7042), 1, + anon_sym_decltype, + ACTIONS(12366), 1, + anon_sym_LT, + STATE(3952), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4141), 1, + sym_template_argument_list, + STATE(4544), 1, + sym_decltype_auto, + ACTIONS(5609), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7032), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5617), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11819), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACK, - STATE(2274), 1, - sym_parameter_list, - STATE(5444), 1, - sym__function_declarator_seq, - ACTIONS(10174), 10, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_GT2, + anon_sym_requires, + [203234] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12368), 2, + anon_sym_RPAREN, + anon_sym_SEMI, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [203329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 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___attribute, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10172), 26, + ACTIONS(7970), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -627811,11 +628306,8 @@ 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_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -627828,126 +628320,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [202239] = 15, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [203376] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12097), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12123), 1, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12372), 1, + anon_sym_RPAREN, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12370), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [203471] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 1, + anon_sym_LBRACE, + ACTIONS(12271), 1, + anon_sym_LPAREN2, + STATE(7215), 2, sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12093), 2, + sym_initializer_list, + ACTIONS(9316), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12095), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12115), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(9707), 6, + 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, - ACTIONS(9709), 17, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9318), 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_GT_EQ, - anon_sym_SEMI, - anon_sym___attribute__, + 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, - [202311] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6821), 1, - anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym_STAR, - ACTIONS(11781), 1, - anon_sym_AMP_AMP, - ACTIONS(11783), 1, - anon_sym_AMP, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - STATE(4796), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8791), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6823), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [202387] = 3, + [203524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 11, + ACTIONS(9413), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -627959,7 +628454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9318), 28, + ACTIONS(9415), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -627988,655 +628483,475 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [202434] = 28, + [203571] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12309), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(12311), 1, + ACTIONS(12376), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9808), 1, + STATE(10010), 1, aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [202531] = 28, + [203668] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12313), 1, + ACTIONS(12378), 1, anon_sym_COMMA, - ACTIONS(12315), 1, + ACTIONS(12380), 1, anon_sym_RBRACE, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9817), 1, + STATE(10014), 1, aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [202628] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(6999), 2, - sym_primitive_type, - sym_identifier, - ACTIONS(12317), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7525), 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(7528), 22, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [202681] = 28, + [203765] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12358), 1, + ACTIONS(12420), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9827), 1, + STATE(10035), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [202778] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6616), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6618), 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, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [202825] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, - anon_sym_decltype, - ACTIONS(2314), 1, - anon_sym_enum, - ACTIONS(2316), 1, - anon_sym_class, - ACTIONS(2318), 1, - anon_sym_struct, - ACTIONS(2320), 1, - anon_sym_union, - ACTIONS(3466), 1, - sym_primitive_type, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5629), 1, - anon_sym_typename, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(12303), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12307), 1, - anon_sym_EQ, - ACTIONS(12360), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4578), 1, - sym_template_type, - STATE(4601), 1, - sym_qualified_type_identifier, - STATE(4776), 1, - sym_type_specifier, - STATE(4948), 1, - sym_decltype_auto, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, - sym__scope_resolution, - ACTIONS(12305), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(4830), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4935), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [202922] = 28, + [203862] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12364), 1, + ACTIONS(12324), 1, anon_sym_COMMA, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12390), 1, - anon_sym_RBRACK, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + ACTIONS(12422), 1, + anon_sym_RBRACK, + STATE(5925), 1, sym_subscript_argument_list, - STATE(9848), 1, + STATE(5927), 1, + sym_argument_list, + STATE(10075), 1, aux_sym_subscript_argument_list_repeat1, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [203959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9417), 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, - [203019] = 28, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9419), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_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, + [204006] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12364), 1, - anon_sym_COMMA, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12402), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12374), 1, + anon_sym_COMMA, + ACTIONS(12424), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9942), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(11333), 2, + STATE(9985), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [203116] = 27, + [204103] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(12426), 1, + anon_sym_COMMA, + ACTIONS(12428), 1, + anon_sym_RBRACE, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(10183), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12404), 2, - anon_sym_RPAREN, - anon_sym_SEMI, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [203211] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, - anon_sym_requires, - STATE(7376), 1, - sym_ref_qualifier, - STATE(8013), 1, - sym_trailing_return_type, - STATE(8066), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12415), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7656), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [203300] = 6, + [204200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(11527), 1, + ACTIONS(12275), 1, anon_sym_LPAREN2, - STATE(5977), 2, + STATE(7195), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9431), 9, + ACTIONS(9403), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -628646,7 +628961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9433), 26, + ACTIONS(9405), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -628659,8 +628974,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -628673,17 +628988,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [203353] = 6, + [204253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(4902), 1, anon_sym_LBRACE, - ACTIONS(12279), 1, + ACTIONS(12271), 1, anon_sym_LPAREN2, - STATE(7303), 2, + STATE(7242), 2, sym_argument_list, sym_initializer_list, - ACTIONS(9431), 11, + ACTIONS(9305), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -628695,7 +629010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9433), 24, + ACTIONS(9307), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -628720,54 +629035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [203406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6620), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6622), 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, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [203453] = 3, + [204306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 11, + ACTIONS(9421), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -628779,7 +629050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8422), 28, + ACTIONS(9423), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -628808,217 +629079,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [203500] = 28, + [204353] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12410), 1, + anon_sym_QMARK, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(12423), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12430), 1, + anon_sym_GT2, + STATE(5835), 1, sym_argument_list, - STATE(3900), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9885), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + STATE(9735), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [203597] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(12283), 1, - anon_sym_LPAREN2, - STATE(7391), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12404), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(9493), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [203650] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7289), 10, - 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7287), 29, - 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_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_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [203697] = 6, + [204450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - STATE(5980), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 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(9379), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(12320), 2, anon_sym_AMP_AMP, - anon_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_RBRACK, - 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, - [203750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9407), 11, + ACTIONS(9329), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -629030,14 +629166,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9409), 28, + ACTIONS(9331), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -629046,7 +629181,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, @@ -629059,135 +629193,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [203797] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, - anon_sym_LPAREN2, - STATE(7347), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 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(9379), 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, - [203850] = 28, + [204499] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12421), 1, + ACTIONS(12362), 1, anon_sym_COMMA, - ACTIONS(12425), 1, + ACTIONS(12432), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9694), 1, + STATE(10163), 1, aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [203947] = 7, + [204596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7090), 1, + ACTIONS(4914), 1, anon_sym_LBRACE, - ACTIONS(7445), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7087), 2, + ACTIONS(11569), 1, anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(7092), 8, + STATE(5944), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9403), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -629195,8 +629280,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, + anon_sym_LT, anon_sym_DOT, - ACTIONS(7097), 26, + ACTIONS(9405), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -629209,8 +629295,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -629223,13 +629309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [204002] = 4, + [204649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12427), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9322), 11, + ACTIONS(4902), 1, + anon_sym_LBRACE, + ACTIONS(12271), 1, + anon_sym_LPAREN2, + STATE(7284), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9455), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -629241,13 +629331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9324), 26, + ACTIONS(9457), 24, 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, @@ -629256,6 +629346,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, @@ -629264,25 +629355,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [204051] = 6, + [204702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 1, + ACTIONS(7119), 1, anon_sym_COLON_COLON, - ACTIONS(12059), 1, + ACTIONS(12051), 1, anon_sym_LT, - STATE(7148), 1, + STATE(7079), 1, sym_template_argument_list, - ACTIONS(7085), 4, + ACTIONS(7117), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(7090), 32, + ACTIONS(7122), 32, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -629315,89 +629403,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [204104] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, - anon_sym_LPAREN2, - STATE(5982), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 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(9383), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, - 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, - [204157] = 16, + [204755] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11805), 1, + ACTIONS(11799), 1, anon_sym_STAR, - ACTIONS(11807), 1, + ACTIONS(11801), 1, anon_sym_AMP_AMP, - ACTIONS(11809), 1, + ACTIONS(11803), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8857), 1, + STATE(8834), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6586), 2, + STATE(6589), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7391), 8, + ACTIONS(7367), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -629406,7 +629447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -629419,155 +629460,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [204230] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9415), 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(9417), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_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, - [204277] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(12429), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(10108), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [204374] = 16, + [204828] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11805), 1, + ACTIONS(11799), 1, anon_sym_STAR, - ACTIONS(11807), 1, + ACTIONS(11801), 1, anon_sym_AMP_AMP, - ACTIONS(11809), 1, + ACTIONS(11803), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, STATE(8841), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2488), 2, + STATE(2450), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7351), 8, + ACTIONS(7371), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -629576,7 +629504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -629589,42 +629517,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [204447] = 16, + [204901] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11805), 1, + ACTIONS(11799), 1, anon_sym_STAR, - ACTIONS(11807), 1, + ACTIONS(11801), 1, anon_sym_AMP_AMP, - ACTIONS(11809), 1, + ACTIONS(11803), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8846), 1, + STATE(8847), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6595), 2, + STATE(6596), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7343), 8, + ACTIONS(7375), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -629633,7 +629561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -629646,406 +629574,318 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [204520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9419), 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(9421), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_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, - [204567] = 28, + [204974] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12309), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(12431), 1, + ACTIONS(12434), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(10113), 1, + STATE(10004), 1, aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [204664] = 28, + [205071] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12433), 1, + ACTIONS(12436), 1, anon_sym_COMMA, - ACTIONS(12435), 1, + ACTIONS(12438), 1, anon_sym_RBRACE, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(10118), 1, + STATE(10031), 1, aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [204761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9423), 11, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 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(9425), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [204808] = 28, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [205168] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12437), 1, + ACTIONS(12440), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(10128), 1, + STATE(10101), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [204905] = 28, + [205265] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12364), 1, + ACTIONS(12324), 1, anon_sym_COMMA, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12439), 1, + ACTIONS(12442), 1, anon_sym_RBRACK, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - STATE(10149), 1, + STATE(5927), 1, + sym_argument_list, + STATE(10178), 1, aux_sym_subscript_argument_list_repeat1, - ACTIONS(11333), 2, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [205002] = 16, + [205362] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11805), 1, + ACTIONS(11799), 1, anon_sym_STAR, - ACTIONS(11807), 1, + ACTIONS(11801), 1, anon_sym_AMP_AMP, - ACTIONS(11809), 1, + ACTIONS(11803), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8849), 1, + STATE(8829), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2488), 2, + STATE(2450), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(6823), 8, + ACTIONS(6843), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -630054,7 +629894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -630067,42 +629907,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [205075] = 16, + [205435] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11805), 1, + ACTIONS(11799), 1, anon_sym_STAR, - ACTIONS(11807), 1, + ACTIONS(11801), 1, anon_sym_AMP_AMP, - ACTIONS(11809), 1, + ACTIONS(11803), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8835), 1, + STATE(8840), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2488), 2, + STATE(2450), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7355), 8, + ACTIONS(7341), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -630111,7 +629951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -630124,83 +629964,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [205148] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(12283), 1, - anon_sym_LPAREN2, - STATE(7290), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9431), 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(9433), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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, - [205201] = 16, + [205508] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11805), 1, + ACTIONS(11799), 1, anon_sym_STAR, - ACTIONS(11807), 1, + ACTIONS(11801), 1, anon_sym_AMP_AMP, - ACTIONS(11809), 1, + ACTIONS(11803), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8838), 1, + STATE(8830), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2488), 2, + STATE(2450), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, @@ -630215,7 +630008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -630228,31 +630021,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [205274] = 6, + [205581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, - anon_sym_LPAREN2, - STATE(7365), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 11, + ACTIONS(10613), 1, + sym_literal_suffix, + ACTIONS(5619), 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___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(9383), 24, + ACTIONS(5611), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -630260,96 +630055,90 @@ 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_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, - [205327] = 28, + [205630] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12421), 1, + ACTIONS(12362), 1, anon_sym_COMMA, - ACTIONS(12441), 1, + ACTIONS(12444), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(10197), 1, + STATE(9703), 1, aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [205424] = 4, + [205727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 17, + ACTIONS(9377), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -630358,16 +630147,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, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - ACTIONS(5638), 21, + ACTIONS(9379), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -630381,62 +630162,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_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, - [205473] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [205774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7201), 10, + ACTIONS(9369), 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(9371), 30, + 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_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7199), 29, - 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_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_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_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, - anon_sym_operator, - [205520] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [205821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 9, + ACTIONS(9373), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -630446,7 +630236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9391), 30, + ACTIONS(9375), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -630477,285 +630267,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [205567] = 27, + [205868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(8404), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12249), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8402), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12253), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12445), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [205915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10556), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + sym_literal_suffix, + ACTIONS(10558), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12443), 2, - anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [205662] = 28, + 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, + [205962] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12309), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(12447), 1, + ACTIONS(12446), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9792), 1, + STATE(10038), 1, aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [205759] = 28, + [206059] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12449), 1, + ACTIONS(12448), 1, anon_sym_COMMA, - ACTIONS(12451), 1, + ACTIONS(12450), 1, anon_sym_RBRACE, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9793), 1, + STATE(10040), 1, aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [205856] = 28, + [206156] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12453), 1, + ACTIONS(12452), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9800), 1, + STATE(10062), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [205953] = 3, + [206253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 9, + ACTIONS(7876), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -630765,7 +630575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9335), 30, + ACTIONS(7874), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -630796,7 +630606,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206000] = 3, + [206300] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(1749), 1, + sym__fold_operator, + ACTIONS(12456), 13, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + ACTIONS(12454), 25, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT_STAR, + anon_sym_DASH_GT_STAR, + [206349] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9337), 9, @@ -630840,86 +630695,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206047] = 28, + [206396] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12421), 1, + ACTIONS(12362), 1, anon_sym_COMMA, - ACTIONS(12455), 1, + ACTIONS(12458), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9837), 1, + STATE(10150), 1, aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [206144] = 6, + [206493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(12283), 1, - anon_sym_LPAREN2, - STATE(7369), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9377), 9, + ACTIONS(9352), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -630929,9 +630777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9379), 26, + ACTIONS(9354), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -630956,10 +630805,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [206197] = 3, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [206540] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 18, + ACTIONS(9356), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -630968,17 +630820,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, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, anon_sym_DOT, - sym_literal_suffix, - ACTIONS(10564), 21, + ACTIONS(9358), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -630992,29 +630835,38 @@ 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_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, - [206244] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [206587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(12059), 1, + ACTIONS(12051), 1, anon_sym_LT, - STATE(6693), 1, + STATE(6688), 1, sym_template_argument_list, - ACTIONS(7371), 4, + ACTIONS(7379), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(5657), 32, + ACTIONS(5637), 32, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -631047,187 +630899,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [206297] = 3, + [206640] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 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(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(7791), 30, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12324), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_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_final, - anon_sym_override, - anon_sym_requires, - [206344] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12457), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9322), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(12330), 1, anon_sym_SLASH, + ACTIONS(12336), 1, anon_sym_PIPE, + ACTIONS(12340), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9324), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + ACTIONS(12346), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(12352), 1, anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - anon_sym_or, + ACTIONS(12356), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12358), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12460), 1, + anon_sym_RBRACK, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + STATE(9658), 1, + aux_sym_subscript_argument_list_repeat1, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [206393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9296), 9, + ACTIONS(12326), 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_DOT, - ACTIONS(9298), 30, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12334), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12338), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - 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, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [206440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9308), 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(9310), 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, + ACTIONS(12342), 3, 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_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [206487] = 3, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [206737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 9, + ACTIONS(7972), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631237,7 +630981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9318), 30, + ACTIONS(7970), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -631268,330 +631012,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [206534] = 28, + [206784] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12309), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(12459), 1, + ACTIONS(12462), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9902), 1, + STATE(9781), 1, aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [206631] = 28, + [206881] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12461), 1, + ACTIONS(12464), 1, anon_sym_COMMA, - ACTIONS(12463), 1, + ACTIONS(12466), 1, anon_sym_RBRACE, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9903), 1, + STATE(9782), 1, aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [206728] = 28, + [206978] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12465), 1, + ACTIONS(12468), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9907), 1, + STATE(9789), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [206825] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(12467), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9925), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [206922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 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(7966), 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_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_final, - anon_sym_override, - anon_sym_requires, - [206969] = 3, + [207075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 9, + ACTIONS(9409), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631601,7 +631232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9363), 30, + ACTIONS(9411), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -631632,10 +631263,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207016] = 3, + [207122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 9, + ACTIONS(9413), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631645,7 +631276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9367), 30, + ACTIONS(9415), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -631676,10 +631307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207063] = 3, + [207169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 9, + ACTIONS(9417), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631689,7 +631320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9371), 30, + ACTIONS(9419), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -631720,10 +631351,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207110] = 3, + [207216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 9, + ACTIONS(9421), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -631733,7 +631364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9375), 30, + ACTIONS(9423), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -631764,261 +631395,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207157] = 28, + [207263] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(12469), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9987), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [207254] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12471), 1, + ACTIONS(12362), 1, anon_sym_COMMA, - ACTIONS(12473), 1, - anon_sym_RBRACE, - STATE(3874), 1, + ACTIONS(12470), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9988), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + STATE(9821), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [207351] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(12328), 1, - anon_sym_SLASH, - ACTIONS(12334), 1, - anon_sym_PIPE, - ACTIONS(12338), 1, - anon_sym_AMP, - ACTIONS(12344), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, - anon_sym_QMARK, - ACTIONS(12350), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, - ACTIONS(12354), 1, - anon_sym_bitand, - ACTIONS(12475), 1, - anon_sym_GT2, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - STATE(9994), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12326), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12342), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [207448] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 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(8422), 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, + ACTIONS(12225), 3, 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_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [207495] = 3, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [207360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 9, + ACTIONS(8404), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632028,7 +631477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9409), 30, + ACTIONS(8402), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632059,10 +631508,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207542] = 3, + [207407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 9, + ACTIONS(9475), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632072,7 +631521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9417), 30, + ACTIONS(9477), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632103,10 +631552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207589] = 3, + [207454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 9, + ACTIONS(9479), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632116,7 +631565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9421), 30, + ACTIONS(9481), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632147,79 +631596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207636] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(12477), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(10027), 1, - aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [207733] = 3, + [207501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 9, + ACTIONS(9483), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632229,7 +631609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9425), 30, + ACTIONS(9485), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632260,55 +631640,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207780] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1541), 1, - sym__fold_operator, - ACTIONS(12481), 13, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - ACTIONS(12479), 25, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT_STAR, - anon_sym_DASH_GT_STAR, - [207829] = 3, + [207548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 9, + ACTIONS(9447), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632318,7 +631653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8907), 30, + ACTIONS(9449), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632349,10 +631684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207876] = 3, + [207595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 9, + ACTIONS(8987), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632362,7 +631697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9437), 30, + ACTIONS(8989), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632393,10 +631728,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207923] = 3, + [207642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 9, + ACTIONS(9385), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632406,7 +631741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8915), 30, + ACTIONS(9387), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632437,10 +631772,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [207970] = 3, + [207689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 9, + ACTIONS(8997), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632450,7 +631785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9447), 30, + ACTIONS(8999), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632481,25 +631816,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [208017] = 3, + [207736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 11, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + STATE(5979), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9316), 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(8907), 28, + ACTIONS(9318), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -632507,7 +631846,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_RBRACK_RBRACK, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -632521,78 +631863,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [208064] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9172), 1, - sym_identifier, - ACTIONS(9182), 1, - sym_primitive_type, - STATE(3764), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(6707), 1, - sym_alignas_qualifier, - ACTIONS(12214), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6652), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(9177), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7251), 6, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(7249), 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(12209), 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, - [208127] = 3, + [207789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 11, + ACTIONS(9438), 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(9437), 28, + ACTIONS(9440), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632603,8 +631887,11 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -632619,200 +631906,270 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [208174] = 28, + [207836] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12309), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(12483), 1, + ACTIONS(12472), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(10082), 1, + STATE(9902), 1, aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [208271] = 3, + [207933] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 4, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6610), 35, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12474), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12476), 1, + anon_sym_RBRACE, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + STATE(9903), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 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(12239), 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, - [208318] = 28, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [208030] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12485), 1, + ACTIONS(12478), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(10087), 1, + STATE(9907), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [208415] = 5, + [208127] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12427), 2, + ACTIONS(9242), 1, + sym_identifier, + ACTIONS(9252), 1, + sym_primitive_type, + STATE(3764), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(6698), 1, + sym_alignas_qualifier, + ACTIONS(12198), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6645), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(9247), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7211), 6, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(7209), 8, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12487), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9393), 11, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_GT2, + ACTIONS(12193), 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, + [208190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9475), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632824,12 +632181,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9395), 24, + ACTIONS(9477), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -632837,6 +632196,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, @@ -632849,89 +632210,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [208466] = 28, + [208237] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12421), 1, + ACTIONS(12362), 1, anon_sym_COMMA, - ACTIONS(12489), 1, + ACTIONS(12480), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(10107), 1, + STATE(9937), 1, aux_sym_generic_expression_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [208563] = 3, + [208334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 9, + ACTIONS(8987), 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(8952), 30, + ACTIONS(8989), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -632942,11 +632305,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -632961,17 +632321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [208610] = 5, + [208381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12457), 2, + ACTIONS(12301), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12491), 2, + ACTIONS(12482), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(9393), 9, + ACTIONS(9293), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -632981,7 +632342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9395), 26, + ACTIONS(9295), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633008,10 +632369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [208661] = 3, + [208432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 9, + ACTIONS(8915), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633021,7 +632382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8956), 30, + ACTIONS(8917), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633052,36 +632413,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [208708] = 11, + [208479] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12374), 1, + anon_sym_COMMA, + ACTIONS(12484), 1, + anon_sym_RPAREN, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + STATE(10112), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [208576] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9184), 1, + ACTIONS(9258), 1, sym_identifier, - ACTIONS(9194), 1, + ACTIONS(9268), 1, sym_primitive_type, - STATE(4039), 1, + STATE(4004), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6707), 1, + STATE(6698), 1, sym_alignas_qualifier, - ACTIONS(12157), 2, + ACTIONS(12212), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6420), 2, + STATE(6406), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(9189), 4, + ACTIONS(9263), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7207), 6, + ACTIONS(7195), 6, anon_sym_AMP, anon_sym___attribute__, anon_sym___attribute, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(7205), 8, + ACTIONS(7193), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633090,7 +632520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_GT2, - ACTIONS(12152), 13, + ACTIONS(12207), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -633104,148 +632534,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [208771] = 28, + [208639] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12309), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(12493), 1, + ACTIONS(12486), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(10155), 1, + STATE(10011), 1, aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [208736] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12488), 1, + anon_sym_COMMA, + ACTIONS(12490), 1, + anon_sym_RBRACE, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + STATE(10013), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [208868] = 28, + [208833] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12495), 1, + ACTIONS(12492), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(10159), 1, + STATE(10019), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [208930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8923), 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(8925), 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_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_final, + anon_sym_override, + anon_sym_requires, + [208977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8923), 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, - [208965] = 3, + anon_sym_DOT, + ACTIONS(8925), 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_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_final, + anon_sym_override, + anon_sym_requires, + [209024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 9, + ACTIONS(8923), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633255,7 +632842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8994), 30, + ACTIONS(8925), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633286,10 +632873,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209012] = 3, + [209071] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + STATE(5955), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9305), 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(9307), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, + 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, + [209124] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12362), 1, + anon_sym_COMMA, + ACTIONS(12494), 1, + anon_sym_RPAREN, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + STATE(10056), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [209221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 9, + ACTIONS(8929), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633299,7 +633002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8994), 30, + ACTIONS(8931), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633330,10 +633033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209059] = 3, + [209268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 9, + ACTIONS(8933), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633343,7 +633046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8994), 30, + ACTIONS(8935), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633374,10 +633077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209106] = 3, + [209315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 11, + ACTIONS(9479), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633389,7 +633092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(8915), 28, + ACTIONS(9481), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633418,160 +633121,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [209153] = 28, + [209362] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12374), 1, + anon_sym_COMMA, + ACTIONS(12496), 1, + anon_sym_RPAREN, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + STATE(10135), 1, + aux_sym_argument_list_repeat1, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [209459] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + STATE(7247), 1, + sym_ref_qualifier, + STATE(8004), 1, + sym_trailing_return_type, + STATE(8060), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7657), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [209548] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12497), 1, + ACTIONS(12498), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9936), 1, + STATE(10138), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209250] = 28, + [209645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(8937), 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(8939), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11319), 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_LBRACK, - ACTIONS(11323), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [209692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8941), 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(12320), 1, + ACTIONS(8943), 30, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(12328), 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_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_final, + anon_sym_override, + anon_sym_requires, + [209739] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12499), 1, + ACTIONS(12500), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9664), 1, + STATE(9660), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12398), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [209836] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(12390), 1, + anon_sym_SLASH, + ACTIONS(12396), 1, + anon_sym_PIPE, + ACTIONS(12400), 1, + anon_sym_AMP, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12410), 1, + anon_sym_QMARK, + ACTIONS(12412), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12414), 1, + anon_sym_bitor, + ACTIONS(12416), 1, + anon_sym_bitand, + ACTIONS(12502), 1, + anon_sym_GT2, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + STATE(9677), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12386), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12392), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209347] = 3, + [209933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 11, + ACTIONS(9011), 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(9447), 28, + ACTIONS(9013), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633582,8 +633574,11 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -633598,12 +633593,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [209394] = 3, + [209980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 9, + ACTIONS(8953), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633613,7 +633607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8887), 30, + ACTIONS(8955), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633644,10 +633638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209441] = 3, + [210027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 9, + ACTIONS(9015), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633657,7 +633651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8911), 30, + ACTIONS(9017), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633688,75 +633682,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209488] = 24, + [210074] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(12390), 1, + anon_sym_SLASH, + ACTIONS(12396), 1, + anon_sym_PIPE, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12410), 1, + anon_sym_QMARK, ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - STATE(7210), 1, - sym_ref_qualifier, - STATE(7999), 1, - sym_trailing_return_type, - STATE(8069), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8160), 2, + anon_sym_LT_EQ_GT, + ACTIONS(12414), 1, + anon_sym_bitor, + ACTIONS(12416), 1, + anon_sym_bitand, + ACTIONS(12504), 1, + anon_sym_GT2, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + STATE(9700), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12386), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12392), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12394), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12398), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [210171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8957), 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(8959), 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_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_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7661), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [209577] = 3, + anon_sym_requires, + [210218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 9, + ACTIONS(8961), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -633766,7 +633808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8923), 30, + ACTIONS(8963), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -633797,616 +633839,756 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [209624] = 28, + [210265] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12501), 1, + ACTIONS(12506), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9689), 1, + STATE(9716), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209721] = 3, + [210362] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 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(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(8948), 30, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12384), 1, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(12390), 1, + anon_sym_SLASH, + ACTIONS(12396), 1, + anon_sym_PIPE, + ACTIONS(12400), 1, + anon_sym_AMP, + ACTIONS(12406), 1, anon_sym_LT_LT, + ACTIONS(12408), 1, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(12410), 1, anon_sym_QMARK, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, + ACTIONS(12414), 1, + anon_sym_bitor, + ACTIONS(12416), 1, + anon_sym_bitand, + ACTIONS(12508), 1, + anon_sym_GT2, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + STATE(9726), 1, + aux_sym_template_argument_list_repeat1, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12386), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12392), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12394), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12398), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [209768] = 28, + ACTIONS(12402), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [210459] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12503), 1, + ACTIONS(12510), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9702), 1, + STATE(9739), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209865] = 28, + [210556] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12505), 1, + ACTIONS(12512), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9721), 1, + STATE(9750), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [209962] = 28, + [210653] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12507), 1, + ACTIONS(12514), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9736), 1, + STATE(9760), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210059] = 28, + [210750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(8965), 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(8967), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(11319), 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_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_final, + anon_sym_override, + anon_sym_requires, + [210797] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12299), 1, + anon_sym_RBRACE, + ACTIONS(12516), 1, + anon_sym_COMMA, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + STATE(9958), 1, + aux_sym_initializer_list_repeat1, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [210894] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12509), 1, + ACTIONS(12518), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9746), 1, + STATE(9770), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210156] = 28, + [210991] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12511), 1, + ACTIONS(12520), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9757), 1, + STATE(9778), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210253] = 28, + [211088] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12513), 1, + ACTIONS(12522), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9770), 1, + STATE(9784), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210350] = 28, + [211185] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12515), 1, + ACTIONS(12524), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9780), 1, + STATE(9794), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210447] = 3, + [211282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 9, + ACTIONS(9483), 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(8998), 30, + ACTIONS(9485), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -634417,11 +634599,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -634436,11 +634615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [210494] = 3, + [211329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 9, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(11569), 1, + anon_sym_LPAREN2, + STATE(5933), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9455), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -634450,10 +634637,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9013), 30, + ACTIONS(9457), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -634464,8 +634650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -634478,23 +634664,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [210541] = 3, + [211382] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12526), 1, + anon_sym_RPAREN, + ACTIONS(12528), 1, + anon_sym_SEMI, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [211479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 9, + ACTIONS(9447), 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(9002), 30, + ACTIONS(9449), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -634505,11 +634759,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -634524,218 +634775,864 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [210588] = 28, + [211526] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7327), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7329), 34, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11319), 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(11323), 1, - anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 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, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [211575] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7327), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7329), 34, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [211624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7331), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7333), 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, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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, + [211671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6649), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6656), 35, anon_sym_COMMA, - ACTIONS(12328), 1, + 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, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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, + [211718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9377), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_GT_GT, - ACTIONS(12348), 1, + anon_sym_DOT, + ACTIONS(9379), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12354), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12517), 1, + 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, + [211765] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6690), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(12530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7062), 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(7060), 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_primitive_type, + sym_identifier, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [211816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7187), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7189), 35, + 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_LT, + 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, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - STATE(5741), 1, + anon_sym_try, + anon_sym_requires, + [211863] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12362), 1, + anon_sym_COMMA, + ACTIONS(12533), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9788), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + STATE(9731), 1, + aux_sym_generic_expression_repeat1, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12227), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [210685] = 28, + [211960] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12348), 1, + ACTIONS(12410), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12519), 1, + ACTIONS(12535), 1, anon_sym_GT2, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9795), 1, + STATE(9930), 1, aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12398), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [212057] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9369), 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(9371), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, anon_sym_and, - ACTIONS(12336), 2, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [212104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9373), 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(9375), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(12356), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [212151] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(12275), 1, + anon_sym_LPAREN2, + STATE(7229), 2, + sym_argument_list, + sym_initializer_list, + ACTIONS(9316), 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(9318), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, - ACTIONS(12342), 4, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [212204] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(6690), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7060), 2, + sym_primitive_type, + sym_identifier, + ACTIONS(12530), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7399), 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(7402), 22, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [212257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3116), 11, + 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_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(3126), 28, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [212304] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7115), 11, + 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_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + ACTIONS(7113), 28, + 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, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [212351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7158), 10, + 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7156), 29, + 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_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_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [212398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 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, - [210782] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(7874), 28, anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, anon_sym_COMMA, - ACTIONS(12328), 1, - anon_sym_SLASH, - ACTIONS(12334), 1, - anon_sym_PIPE, - ACTIONS(12338), 1, - anon_sym_AMP, - ACTIONS(12344), 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(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(12350), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12354), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12521), 1, - anon_sym_GT2, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - STATE(9804), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [212445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3168), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(3166), 30, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12332), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12336), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12342), 4, - anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [210879] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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_final, + anon_sym_override, + anon_sym_requires, + [212492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 9, + ACTIONS(3157), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -634745,7 +635642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(8895), 30, + ACTIONS(3155), 30, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -634776,20 +635673,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [210926] = 3, + [212539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 9, + ACTIONS(9337), 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(8903), 30, + ACTIONS(9339), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -634800,11 +635699,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -634819,97 +635715,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [210973] = 28, + [212586] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12309), 1, + ACTIONS(12368), 1, + anon_sym_SEMI, + ACTIONS(12537), 1, anon_sym_COMMA, - ACTIONS(12523), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12540), 1, + anon_sym_RBRACE, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(10074), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [211070] = 6, + [212683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7244), 10, + 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(7242), 29, + 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_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_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [212730] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(7122), 1, anon_sym_LBRACE, - ACTIONS(12283), 1, + ACTIONS(7405), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7119), 2, anon_sym_LPAREN2, - STATE(7212), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9381), 9, + anon_sym_COLON_COLON, + ACTIONS(7124), 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_DOT, - ACTIONS(9383), 26, + ACTIONS(7129), 24, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -634919,11 +635863,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -634936,20 +635877,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [211123] = 3, + anon_sym_GT2, + [212785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 9, + ACTIONS(9352), 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(8944), 30, + ACTIONS(9354), 28, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -634960,11 +635904,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -634979,294 +635920,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [211170] = 28, + [212832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(9356), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12293), 1, - anon_sym_SEMI, - ACTIONS(12525), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9358), 28, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - ACTIONS(12528), 1, - anon_sym_RBRACE, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [211267] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12253), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12404), 1, - anon_sym_SEMI, - ACTIONS(12530), 1, - anon_sym_COMMA, - ACTIONS(12533), 1, - anon_sym_RBRACE, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [212879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6586), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6588), 35, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, 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, anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [211364] = 28, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [212926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(6602), 4, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12295), 1, - anon_sym_RBRACE, - ACTIONS(12535), 1, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6604), 35, anon_sym_COMMA, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - STATE(9672), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, 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, anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [211461] = 28, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [212973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12364), 1, - anon_sym_COMMA, - ACTIONS(12370), 1, - anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(6606), 4, anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - ACTIONS(12537), 1, - anon_sym_RBRACK, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - STATE(9816), 1, - aux_sym_subscript_argument_list_repeat1, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6608), 35, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12372), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, 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, anon_sym_and, - ACTIONS(12378), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [211558] = 4, + sym_auto, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [213020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7291), 4, + ACTIONS(6590), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(7293), 34, + ACTIONS(6592), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -635276,6 +636116,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, @@ -635301,17 +636142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [211607] = 4, + [213067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7291), 4, + ACTIONS(6596), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(7293), 34, + ACTIONS(6598), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -635321,6 +636160,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, @@ -635346,15 +636186,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [211656] = 3, + [213114] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7301), 4, + ACTIONS(6610), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(7303), 35, + ACTIONS(6612), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -635390,15 +636230,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [211703] = 3, + [213161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6594), 4, + ACTIONS(6614), 4, anon_sym_AMP, anon_sym___attribute, anon_sym_COLON, anon_sym_const, - ACTIONS(6601), 35, + ACTIONS(6616), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -635434,94 +636274,402 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [211750] = 28, + [213208] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(2312), 1, + anon_sym_enum, + ACTIONS(2314), 1, + anon_sym_class, + ACTIONS(2316), 1, + anon_sym_struct, + ACTIONS(2318), 1, + anon_sym_union, + ACTIONS(3464), 1, + sym_primitive_type, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5671), 1, + anon_sym_typename, + ACTIONS(6463), 1, + anon_sym_COLON_COLON, + ACTIONS(12285), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12289), 1, + anon_sym_EQ, + ACTIONS(12542), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4577), 1, + sym_template_type, + STATE(4597), 1, + sym_qualified_type_identifier, + STATE(4839), 1, + sym_decltype_auto, + STATE(5015), 1, + sym_type_specifier, + STATE(5032), 1, + sym_splice_specifier, + STATE(8667), 1, + sym__scope_resolution, + ACTIONS(12287), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(4927), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4852), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [213305] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8905), 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(8907), 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_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_final, + anon_sym_override, + anon_sym_requires, + [213352] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9621), 1, + anon_sym_PIPE, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12390), 1, + anon_sym_SLASH, + ACTIONS(12400), 1, + anon_sym_AMP, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12412), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12416), 1, + anon_sym_bitand, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12386), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12398), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 9, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + 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, + [213434] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12255), 1, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12386), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12392), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12394), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12398), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(10491), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(12309), 1, + anon_sym_GT2, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [213522] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11553), 1, anon_sym_COMMA, - ACTIONS(12539), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12297), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9866), 1, - aux_sym_argument_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [213616] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12544), 1, + anon_sym_RPAREN, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [211847] = 3, + [213710] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 11, + ACTIONS(12254), 1, + anon_sym_LPAREN2, + ACTIONS(12256), 1, + anon_sym_LBRACK, + STATE(2244), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10225), 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(9298), 28, + ACTIONS(10223), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -635529,8 +636677,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_LBRACK, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -635543,194 +636693,562 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, + [213764] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12390), 1, + anon_sym_SLASH, + ACTIONS(12396), 1, + anon_sym_PIPE, + ACTIONS(12400), 1, + anon_sym_AMP, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12410), 1, + anon_sym_QMARK, + ACTIONS(12412), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12414), 1, + anon_sym_bitor, + ACTIONS(12416), 1, + anon_sym_bitand, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(9891), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12386), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12392), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12394), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12398), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [213856] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(7365), 1, + anon_sym___attribute, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(5523), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8876), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6770), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7367), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [211894] = 28, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [213930] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12546), 1, + anon_sym_SEMI, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [214024] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12548), 1, + anon_sym_SEMI, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [214118] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12528), 1, + anon_sym_SEMI, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [214212] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12550), 1, + anon_sym_SEMI, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [214306] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12390), 1, + anon_sym_SLASH, + ACTIONS(12396), 1, + anon_sym_PIPE, + ACTIONS(12400), 1, + anon_sym_AMP, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12410), 1, + anon_sym_QMARK, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12541), 1, - anon_sym_COMMA, - ACTIONS(12543), 1, - anon_sym_RBRACE, - STATE(3874), 1, + STATE(5835), 1, sym_argument_list, - STATE(3900), 1, + STATE(5930), 1, sym_subscript_argument_list, - STATE(9872), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12552), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12404), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [211991] = 3, + [214398] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(12223), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12229), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7966), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(12235), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12554), 1, + anon_sym_SEMI, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [212038] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9308), 11, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 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(9310), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [212085] = 5, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [214492] = 8, ACTIONS(3), 1, sym_comment, - STATE(6699), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3552), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(12317), 4, + STATE(3755), 1, + sym_template_argument_list, + ACTIONS(6864), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7001), 10, + ACTIONS(7357), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7359), 26, 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(6999), 24, - anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym___attribute, - anon_sym_const, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -635744,36 +637262,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [212136] = 3, + [214548] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7231), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7233), 35, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6455), 1, anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11811), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(11813), 1, anon_sym_AMP_AMP, - anon_sym_LT, + ACTIONS(11815), 1, + anon_sym_AMP, + STATE(4985), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8921), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7371), 7, anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_COLON_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -635785,278 +637321,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [212183] = 3, + [214620] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 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(9391), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6455), 1, anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11811), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11813), 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, + ACTIONS(11815), 1, + anon_sym_AMP, + STATE(4985), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8923), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6739), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7375), 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, - [212230] = 28, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [214692] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12322), 1, + ACTIONS(11553), 1, anon_sym_COMMA, - ACTIONS(12328), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12334), 1, - anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, - anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12545), 1, - anon_sym_GT2, - STATE(5741), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12556), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - STATE(9897), 1, - aux_sym_template_argument_list_repeat1, - ACTIONS(11325), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12227), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [212327] = 28, + [214786] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12558), 1, + anon_sym_COMMA, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12584), 1, + anon_sym_COLON, + ACTIONS(12586), 1, + anon_sym_QMARK, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12547), 1, - anon_sym_RPAREN, - ACTIONS(12549), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [212424] = 6, + [214880] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(11527), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - STATE(6023), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 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(9493), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11811), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11813), 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_RBRACK_RBRACK, - 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, - [212477] = 11, + ACTIONS(11815), 1, + anon_sym_AMP, + STATE(4985), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8891), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6843), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [214952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(6989), 1, - sym_auto, - ACTIONS(6991), 1, - anon_sym_decltype, - ACTIONS(12551), 1, + ACTIONS(12366), 1, anon_sym_LT, - STATE(4015), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4054), 1, + STATE(4141), 1, sym_template_argument_list, - STATE(4458), 1, - sym_decltype_auto, - ACTIONS(5636), 3, + ACTIONS(6559), 4, anon_sym_AMP, anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(6981), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5643), 25, + ACTIONS(6566), 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, @@ -636071,79 +637605,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [212540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9361), 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(9363), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_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, anon_sym_requires, - [212587] = 3, + [215004] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6455), 1, anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11811), 1, anon_sym_STAR, + ACTIONS(11813), 1, anon_sym_AMP_AMP, + ACTIONS(11815), 1, + anon_sym_AMP, + STATE(4985), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8863), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7341), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(3128), 28, - anon_sym_AMP, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11775), 12, 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, @@ -636155,127 +637669,51 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [212634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9333), 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(9335), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_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, - [212681] = 3, + [215076] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9337), 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(9339), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6455), 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(11783), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [212728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7079), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11811), 1, anon_sym_STAR, + ACTIONS(11813), 1, anon_sym_AMP_AMP, + ACTIONS(11815), 1, + anon_sym_AMP, + STATE(4985), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8900), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_EQ, - anon_sym_GT2, - ACTIONS(7077), 28, - anon_sym_AMP, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11775), 12, 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, @@ -636287,18 +637725,18 @@ 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, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [212775] = 3, + [215148] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 9, + ACTIONS(12254), 1, + anon_sym_LPAREN2, + ACTIONS(12256), 1, + anon_sym_LBRACK, + STATE(2244), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10229), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -636308,10 +637746,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(3161), 30, + ACTIONS(10227), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -636322,7 +637759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -636336,13 +637772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [212822] = 3, + [215202] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 9, + ACTIONS(12254), 1, + anon_sym_LPAREN2, + ACTIONS(12256), 1, + anon_sym_LBRACK, + STATE(2244), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10233), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -636352,10 +637793,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(3153), 30, + ACTIONS(10231), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -636366,7 +637806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -636380,240 +637819,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [212869] = 6, + [215256] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(12279), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - STATE(7230), 2, - sym_argument_list, - sym_initializer_list, - ACTIONS(9491), 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(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(9493), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(11553), 1, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - 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, - [212922] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7090), 1, - anon_sym_LBRACE, - ACTIONS(7445), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7087), 2, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - ACTIONS(7092), 10, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(12223), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12229), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(7097), 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(12233), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, + ACTIONS(12235), 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, - [212977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12241), 1, 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(7791), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, + ACTIONS(12245), 1, anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12594), 1, + anon_sym_SEMI, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [213024] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9365), 11, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 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(9367), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [213071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9369), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12227), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(9371), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_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, - [213118] = 3, + [215350] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 11, + ACTIONS(12250), 1, + anon_sym_LPAREN2, + ACTIONS(12252), 1, + anon_sym_LBRACK, + STATE(2275), 1, + sym_parameter_list, + STATE(6709), 1, + sym__function_declarator_seq, + ACTIONS(10243), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -636625,10 +637909,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9375), 28, + ACTIONS(10241), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -636637,7 +637920,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -636650,472 +637932,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [213165] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6632), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6634), 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, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [213212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6612), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6614), 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, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [213259] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6624), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6626), 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, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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, - [213306] = 3, + [215404] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6630), 35, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10911), 1, 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, + ACTIONS(11301), 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(11305), 1, + anon_sym_DOT, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9694), 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(9696), 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_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, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [213353] = 28, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [215462] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12553), 1, - anon_sym_COMMA, - ACTIONS(12555), 1, - anon_sym_RBRACE, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - STATE(10084), 1, - aux_sym_initializer_list_repeat1, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(10473), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [213450] = 20, + [215554] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9707), 1, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12390), 1, + anon_sym_SLASH, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9621), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(10900), 1, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + ACTIONS(9623), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_GT2, + [215618] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12558), 1, + anon_sym_COMMA, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12380), 1, + ACTIONS(12570), 1, + anon_sym_PIPE, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12586), 1, + anon_sym_QMARK, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12398), 1, + ACTIONS(12590), 1, + anon_sym_bitor, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12596), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12388), 2, + ACTIONS(12566), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12568), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12572), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12578), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [215712] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6656), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6658), 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(9709), 11, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(6651), 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_RBRACK, + 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, - [213530] = 17, + 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, + [215760] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(7353), 1, + ACTIONS(7365), 1, anon_sym___attribute, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11838), 1, - anon_sym_STAR, - ACTIONS(11840), 1, - anon_sym_AMP_AMP, - ACTIONS(11842), 1, - anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(5313), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8933), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2488), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7355), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [213604] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, ACTIONS(11821), 1, anon_sym_STAR, ACTIONS(11823), 1, anon_sym_AMP_AMP, ACTIONS(11825), 1, anon_sym_AMP, - STATE(4861), 1, - sym_parameter_list, - STATE(6707), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8909), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7355), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [213676] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11821), 1, - anon_sym_STAR, - ACTIONS(11823), 1, - anon_sym_AMP_AMP, - ACTIONS(11825), 1, - anon_sym_AMP, - STATE(4861), 1, + STATE(5264), 1, sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8895), 1, + STATE(8924), 1, sym__abstract_declarator, - ACTIONS(11797), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6420), 2, + STATE(6784), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7345), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7367), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -637128,90 +638268,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [213748] = 16, + [215834] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - STATE(5741), 1, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12598), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9707), 6, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 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, - [213820] = 13, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [215928] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12328), 1, - anon_sym_SLASH, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12326), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 7, + ACTIONS(9621), 10, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -637219,9 +638365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(9709), 17, + ACTIONS(9623), 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, @@ -637237,297 +638385,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [213886] = 7, + [215988] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10190), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12390), 1, anon_sym_SLASH, + ACTIONS(12396), 1, anon_sym_PIPE, + ACTIONS(12400), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(10188), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12412), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12414), 1, + anon_sym_bitor, + ACTIONS(12416), 1, + anon_sym_bitand, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12386), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(12394), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12398), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12404), 4, + anon_sym_GT, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, 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, - [213940] = 27, + anon_sym_GT2, + [216074] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12557), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(5835), 1, sym_argument_list, - STATE(3900), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12404), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [214034] = 24, + ACTIONS(9623), 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, + [216158] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + anon_sym_GT_EQ, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(9597), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(12342), 4, + ACTIONS(12344), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [214122] = 27, + ACTIONS(10487), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [216246] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12558), 1, + anon_sym_COMMA, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12586), 1, + anon_sym_QMARK, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12559), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12600), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214216] = 15, + [216340] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(6841), 1, + anon_sym___attribute, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(5523), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8913), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6843), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [216414] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9621), 1, + anon_sym_PIPE, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12344), 1, + ACTIONS(12400), 1, + anon_sym_AMP, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - STATE(5741), 1, + ACTIONS(12412), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12416), 1, + anon_sym_bitand, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 6, + ACTIONS(12402), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 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, + [216494] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12254), 1, + anon_sym_LPAREN2, + ACTIONS(12256), 1, + anon_sym_LBRACK, + STATE(2244), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10243), 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, - ACTIONS(9709), 16, + anon_sym_DOT, + ACTIONS(10241), 25, 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, @@ -637536,210 +638801,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [216548] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(7347), 1, + anon_sym___attribute, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(5523), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8925), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [214286] = 27, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [216622] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, - anon_sym_AMP, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12587), 1, - anon_sym_COLON, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, - anon_sym_bitand, - STATE(3874), 1, + STATE(5835), 1, sym_argument_list, - STATE(3900), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9621), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12571), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12575), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12404), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [214380] = 26, + ACTIONS(9623), 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, + [216698] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, - anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - STATE(5875), 1, + STATE(5835), 1, sym_argument_list, - STATE(5920), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(10491), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(11333), 2, + ACTIONS(9621), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 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(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [214472] = 7, + anon_sym_GT2, + [216772] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - STATE(2249), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10186), 11, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12390), 1, + anon_sym_SLASH, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12412), 1, + anon_sym_LT_EQ_GT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9621), 6, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(10184), 23, + ACTIONS(9623), 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_DOT_STAR, - anon_sym_DASH_GT, anon_sym_GT2, - [214526] = 10, + [216844] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - STATE(5741), 1, + ACTIONS(12390), 1, + anon_sym_SLASH, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9673), 10, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9621), 7, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, @@ -637747,11 +639068,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(9675), 19, + ACTIONS(9623), 17, 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, @@ -637767,37 +639086,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitand, anon_sym_not_eq, anon_sym_GT2, - [214586] = 10, + [216910] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - STATE(5741), 1, + ACTIONS(12390), 1, + anon_sym_SLASH, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12356), 2, + ACTIONS(12386), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9677), 10, + ACTIONS(9621), 6, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 16, + 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_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, + [216980] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12254), 1, + anon_sym_LPAREN2, + ACTIONS(12256), 1, + anon_sym_LBRACK, + STATE(2244), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10262), 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, - ACTIONS(9679), 19, + anon_sym_DOT, + ACTIONS(10260), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -637807,7 +639172,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -637816,118 +639184,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [214646] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [217034] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12370), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [217126] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12597), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12602), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [217220] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12604), 1, + anon_sym_SEMI, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214740] = 16, + [217314] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(7369), 1, + anon_sym___attribute, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, + ACTIONS(11785), 1, anon_sym_const, - ACTIONS(11821), 1, + ACTIONS(11805), 1, anon_sym_STAR, - ACTIONS(11823), 1, + ACTIONS(11807), 1, anon_sym_AMP_AMP, - ACTIONS(11825), 1, + ACTIONS(11809), 1, anon_sym_AMP, - STATE(4861), 1, + STATE(5523), 1, sym_parameter_list, - STATE(6707), 1, + STATE(6698), 1, sym_alignas_qualifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8936), 1, + STATE(8880), 1, sym__abstract_declarator, - ACTIONS(11797), 2, + ACTIONS(11787), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6883), 2, + STATE(6406), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7391), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(7371), 6, + anon_sym_COMMA, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [217388] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(7373), 1, + anon_sym___attribute, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, + anon_sym_AMP, + STATE(5523), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8881), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6777), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7375), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(11775), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -637940,96 +639502,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [214812] = 26, + [217462] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(12606), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12443), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [214904] = 7, + [217556] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - STATE(2249), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10190), 11, + ACTIONS(11305), 1, + anon_sym_DOT, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9698), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(10188), 23, + ACTIONS(9700), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -638039,7 +639607,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -638048,170 +639619,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [214958] = 27, + [217616] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12634), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12640), 1, anon_sym_bitand, - ACTIONS(12599), 1, - anon_sym_COLON, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12608), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12616), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [215052] = 7, + [217708] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10194), 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(11577), 1, anon_sym_DOT, - ACTIONS(10192), 25, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12558), 1, anon_sym_COMMA, + ACTIONS(12564), 1, + anon_sym_SLASH, + ACTIONS(12570), 1, + anon_sym_PIPE, + ACTIONS(12574), 1, + anon_sym_AMP, + ACTIONS(12580), 1, + anon_sym_GT_EQ, + ACTIONS(12586), 1, + anon_sym_QMARK, + ACTIONS(12588), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12590), 1, + anon_sym_bitor, + ACTIONS(12592), 1, + anon_sym_bitand, + ACTIONS(12642), 1, + anon_sym_COLON, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(11579), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12560), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12568), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12572), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12582), 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(12576), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [215106] = 17, + ACTIONS(12578), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [217802] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(7393), 1, + ACTIONS(6841), 1, anon_sym___attribute, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11838), 1, + ACTIONS(11821), 1, anon_sym_STAR, - ACTIONS(11840), 1, + ACTIONS(11823), 1, anon_sym_AMP_AMP, - ACTIONS(11842), 1, + ACTIONS(11825), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(5313), 1, + STATE(5264), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8907), 1, + STATE(8896), 1, sym__abstract_declarator, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6906), 2, + STATE(2450), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(7391), 6, + ACTIONS(6843), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -638224,85 +639809,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [215180] = 27, + [217876] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(7343), 1, + anon_sym___attribute, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11805), 1, + anon_sym_STAR, + ACTIONS(11807), 1, + anon_sym_AMP_AMP, + ACTIONS(11809), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12601), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + STATE(5523), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8883), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7341), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [217950] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(7347), 1, + anon_sym___attribute, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11821), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(11823), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [215274] = 7, + ACTIONS(11825), 1, + anon_sym_AMP, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(5264), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8897), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2450), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [218024] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(12250), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(12252), 1, anon_sym_LBRACK, - STATE(2249), 1, + STATE(2275), 1, sym_parameter_list, - STATE(6557), 1, + STATE(6709), 1, sym__function_declarator_seq, - ACTIONS(10194), 11, + ACTIONS(10262), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -638314,7 +639946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(10192), 23, + ACTIONS(10260), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -638338,28 +639970,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [215328] = 7, + [218078] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10174), 9, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9669), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(10172), 25, + anon_sym_GT_GT, + ACTIONS(9671), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -638369,10 +640010,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -638381,32 +640019,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [215382] = 7, + anon_sym_GT2, + [218138] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10198), 9, + ACTIONS(11349), 1, + anon_sym_DOT, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9716), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(10196), 25, + anon_sym_GT_GT, + ACTIONS(9718), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -638416,10 +640057,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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -638430,75 +640068,274 @@ 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, - [215436] = 7, + anon_sym_GT2, + [218196] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10202), 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(11577), 1, anon_sym_DOT, - ACTIONS(10200), 25, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12558), 1, anon_sym_COMMA, + ACTIONS(12564), 1, + anon_sym_SLASH, + ACTIONS(12570), 1, + anon_sym_PIPE, + ACTIONS(12574), 1, + anon_sym_AMP, + ACTIONS(12580), 1, + anon_sym_GT_EQ, + ACTIONS(12586), 1, + anon_sym_QMARK, + ACTIONS(12588), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12590), 1, + anon_sym_bitor, + ACTIONS(12592), 1, + anon_sym_bitand, + ACTIONS(12644), 1, + anon_sym_COLON, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(11579), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12560), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12568), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12572), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12582), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12578), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [218290] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12243), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12646), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [215490] = 10, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [218382] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(7369), 1, + anon_sym___attribute, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11821), 1, + anon_sym_STAR, + ACTIONS(11823), 1, + anon_sym_AMP_AMP, + ACTIONS(11825), 1, + anon_sym_AMP, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(5264), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8933), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2450), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7371), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [218456] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(7373), 1, + anon_sym___attribute, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11821), 1, + anon_sym_STAR, + ACTIONS(11823), 1, + anon_sym_AMP_AMP, + ACTIONS(11825), 1, + anon_sym_AMP, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(5264), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8937), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6788), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7375), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [218530] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9715), 8, + ACTIONS(9702), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -638507,7 +640344,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9717), 21, + ACTIONS(9704), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -638529,75 +640366,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [215550] = 22, + [218590] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12558), 1, + anon_sym_COMMA, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(12580), 1, + anon_sym_GT_EQ, + ACTIONS(12586), 1, + anon_sym_QMARK, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(5741), 1, + ACTIONS(12648), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12336), 2, + ACTIONS(12566), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12568), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12582), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12578), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 8, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, + [218684] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(7343), 1, + anon_sym___attribute, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11821), 1, + anon_sym_STAR, + ACTIONS(11823), 1, anon_sym_AMP_AMP, - anon_sym_QMARK, - anon_sym_or, - anon_sym_and, - anon_sym_GT2, - [215634] = 4, + ACTIONS(11825), 1, + anon_sym_AMP, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(5264), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8871), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2450), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7341), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [218758] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 9, + ACTIONS(12254), 1, + anon_sym_LPAREN2, + ACTIONS(12256), 1, + anon_sym_LBRACK, + STATE(2244), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10221), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -638607,10 +640511,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(6596), 27, + ACTIONS(10219), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -638621,7 +640524,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -638635,26 +640537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [215682] = 10, + [218812] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(12250), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(12252), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9707), 10, + STATE(2275), 1, + sym_parameter_list, + STATE(6709), 1, + sym__function_declarator_seq, + ACTIONS(10225), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -638665,7 +640559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - ACTIONS(9709), 19, + anon_sym_DOT, + ACTIONS(10223), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -638684,774 +640579,578 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_GT2, - [215742] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12603), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [215834] = 27, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [218866] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12605), 1, + ACTIONS(12650), 1, anon_sym_COLON, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [215928] = 24, + [218960] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10475), 4, + ACTIONS(9659), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_QMARK, anon_sym_GT2, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [216016] = 26, + [219048] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12613), 1, + ACTIONS(12558), 1, + anon_sym_COMMA, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12633), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12635), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + ACTIONS(12652), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12607), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - ACTIONS(12609), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216108] = 27, + [219142] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12250), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12252), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + STATE(2275), 1, + sym_parameter_list, + STATE(6709), 1, + sym__function_declarator_seq, + ACTIONS(10264), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12641), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10266), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [216202] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [219196] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12643), 1, + ACTIONS(12654), 1, anon_sym_COLON, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216296] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6821), 1, - anon_sym___attribute, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11827), 1, - anon_sym_STAR, - ACTIONS(11829), 1, - anon_sym_AMP_AMP, - ACTIONS(11831), 1, - anon_sym_AMP, - STATE(5310), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8920), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6823), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [216370] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3552), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(6867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7357), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7359), 26, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [216426] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7347), 1, - anon_sym___attribute, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11827), 1, - anon_sym_STAR, - ACTIONS(11829), 1, - anon_sym_AMP_AMP, - ACTIONS(11831), 1, - anon_sym_AMP, - STATE(5310), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8922), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7345), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [216500] = 27, + [219290] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12645), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12552), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216594] = 27, + [219382] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12647), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12552), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [216688] = 27, + [219474] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12250), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12252), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + STATE(2275), 1, + sym_parameter_list, + STATE(6709), 1, + sym__function_declarator_seq, + ACTIONS(10178), 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(12011), 1, + ACTIONS(10176), 23, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, anon_sym_COMMA, - ACTIONS(12567), 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_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, + [219528] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12583), 1, - anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12649), 1, - anon_sym_COLON, - STATE(3874), 1, + STATE(5835), 1, sym_argument_list, - STATE(3900), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(10439), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(12404), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [216782] = 4, + [219616] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6601), 2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - ACTIONS(6603), 11, + ACTIONS(12250), 1, + anon_sym_LPAREN2, + ACTIONS(12252), 1, + anon_sym_LBRACK, + STATE(2275), 1, + sym_parameter_list, + STATE(6709), 1, + sym__function_declarator_seq, + ACTIONS(10221), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -639463,10 +641162,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(6596), 25, + ACTIONS(10219), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -639475,7 +641173,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -639489,198 +641186,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [216830] = 27, + [219670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(6656), 2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + ACTIONS(6658), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12651), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(6651), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, 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_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(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [216924] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [219718] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + anon_sym_GT_EQ, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10487), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(12342), 4, + ACTIONS(12344), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [217012] = 9, + ACTIONS(10491), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [219806] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - STATE(5875), 1, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12656), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9657), 8, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 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(9659), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_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(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12243), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [217070] = 7, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [219900] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10206), 9, + ACTIONS(11305), 1, + anon_sym_DOT, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9716), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -639689,8 +641386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(10204), 25, + ACTIONS(9718), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -639714,358 +641410,339 @@ 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, - [217124] = 27, + [219958] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12653), 1, - anon_sym_COLON, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12658), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217218] = 23, + [220050] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12344), 1, + ACTIONS(12406), 1, anon_sym_LT_LT, - ACTIONS(12346), 1, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(12410), 1, + anon_sym_QMARK, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12416), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(10463), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12332), 2, + ACTIONS(12392), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK, - anon_sym_or, - anon_sym_GT2, - [217304] = 24, + [220142] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [217392] = 26, + [220234] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(11626), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12655), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(12340), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12344), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [217484] = 26, + [220326] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, - anon_sym_SLASH, - ACTIONS(12334), 1, - anon_sym_PIPE, - ACTIONS(12338), 1, - anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, - anon_sym_QMARK, - ACTIONS(12350), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, - ACTIONS(12354), 1, - anon_sym_bitand, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(9694), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 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(9696), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12332), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12336), 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(12356), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12655), 2, - anon_sym_COMMA, anon_sym_GT2, - ACTIONS(12340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12342), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [217576] = 7, + [220384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9154), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(9160), 1, anon_sym_LBRACK, - STATE(2249), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10202), 11, + ACTIONS(5619), 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(10200), 23, + ACTIONS(5611), 26, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -640075,7 +641752,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -640088,411 +641769,360 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [217630] = 26, + [220436] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12655), 2, + ACTIONS(12540), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(12241), 3, + anon_sym_RBRACE, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217722] = 26, + [220528] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12655), 2, + ACTIONS(12662), 2, anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(12241), 3, + anon_sym_RBRACE, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [217814] = 24, + [220620] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12616), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 4, + ACTIONS(10554), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [217902] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9673), 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(9675), 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_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, - [217962] = 26, + [220708] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12633), 1, + ACTIONS(12634), 1, anon_sym_QMARK, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9828), 2, + ACTIONS(9891), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12616), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [218054] = 27, + [220800] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12657), 1, + ACTIONS(12664), 1, anon_sym_COMMA, - ACTIONS(12659), 1, + ACTIONS(12666), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [218148] = 12, + [220894] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 7, + ACTIONS(9621), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -640500,7 +642130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(9623), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640520,123 +642150,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [218212] = 23, + [220958] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12617), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 6, + ACTIONS(9623), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, anon_sym_or, - [218298] = 22, + [221044] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 8, + ACTIONS(9623), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640645,58 +642275,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_or, anon_sym_and, - [218382] = 21, + [221128] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9621), 1, + anon_sym_PIPE, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 9, + ACTIONS(9623), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640706,55 +642336,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, - [218464] = 20, + [221210] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9621), 1, + anon_sym_PIPE, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 11, + ACTIONS(9623), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640766,52 +642396,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_xor, - [218544] = 18, + [221290] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9707), 2, + ACTIONS(9621), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11722), 2, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 12, + ACTIONS(9623), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640824,48 +642454,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [218620] = 17, + [221366] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9707), 2, + ACTIONS(9621), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11722), 2, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 15, + ACTIONS(9623), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640881,45 +642511,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [218694] = 15, + [221440] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 5, + ACTIONS(9621), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 16, + ACTIONS(9623), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640936,40 +642566,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [218764] = 13, + [221510] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 5, + ACTIONS(9621), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(9623), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -640989,110 +642619,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [218830] = 27, + [221576] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12661), 1, + ACTIONS(12668), 1, anon_sym_COLON, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [218924] = 14, + [221670] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 5, + ACTIONS(9621), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 17, + ACTIONS(9623), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -641110,1173 +642740,542 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [218992] = 24, + [221738] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12616), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 4, + ACTIONS(10439), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [219080] = 26, + [221826] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12633), 1, + ACTIONS(12634), 1, anon_sym_QMARK, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10479), 2, + ACTIONS(10463), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12616), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219172] = 24, + [221918] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12616), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 4, + ACTIONS(10469), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [219260] = 26, + [222006] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12633), 1, + ACTIONS(12634), 1, anon_sym_QMARK, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(10491), 2, + ACTIONS(10473), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12616), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [219352] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12285), 1, - anon_sym_LBRACK, - STATE(6940), 1, - sym_new_declarator, - ACTIONS(9535), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_DOT, - ACTIONS(9537), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LBRACE, - 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, - [219402] = 10, + [222098] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9677), 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(9679), 21, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(12558), 1, anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - 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, - [219462] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12586), 1, + anon_sym_QMARK, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12670), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [219550] = 9, + [222192] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9681), 8, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(12223), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9683), 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(12229), 1, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [219608] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12663), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12069), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [219702] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, - anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, - anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12665), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219794] = 27, + [222284] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12667), 1, + ACTIONS(12672), 1, anon_sym_COLON, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [219888] = 27, + [222378] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12669), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12406), 1, anon_sym_LT_LT, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [219982] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12370), 1, - anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, - anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12416), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(5835), 1, sym_argument_list, - STATE(5920), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12372), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, - anon_sym_CARET, - anon_sym_xor, ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9597), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [220070] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12671), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [220162] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, - anon_sym_LPAREN2, - ACTIONS(9239), 1, - anon_sym_LBRACK, - ACTIONS(5645), 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(5638), 26, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12398), 2, anon_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, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [220214] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12673), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [220308] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12273), 1, - anon_sym_LPAREN2, - ACTIONS(12275), 1, - anon_sym_LBRACK, - STATE(2249), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10174), 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(10172), 23, + ACTIONS(10487), 4, 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, - [220362] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, - anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, - anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11634), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12372), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12404), 4, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [220454] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12370), 1, - anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, - anon_sym_AMP, - ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12372), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [220542] = 7, + [222466] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(12254), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(12256), 1, anon_sym_LBRACK, - STATE(2267), 1, + STATE(2244), 1, sym_parameter_list, - STATE(6617), 1, + STATE(6613), 1, sym__function_declarator_seq, - ACTIONS(10186), 9, + ACTIONS(10264), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -642286,7 +643285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(10184), 25, + ACTIONS(10266), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -642303,719 +643302,492 @@ 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, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [220596] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12675), 1, - anon_sym_COMMA, - ACTIONS(12677), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 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(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [220690] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [222520] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(11553), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12679), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12674), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220784] = 26, + [222614] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(12676), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12528), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220876] = 26, + [222708] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(12678), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12533), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [220968] = 26, + [222802] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(12680), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12681), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221060] = 27, + [222896] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12683), 1, + ACTIONS(12682), 1, anon_sym_COMMA, - ACTIONS(12685), 1, + ACTIONS(12684), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221154] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7349), 1, - anon_sym___attribute, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11827), 1, - anon_sym_STAR, - ACTIONS(11829), 1, - anon_sym_AMP_AMP, - ACTIONS(11831), 1, - anon_sym_AMP, - STATE(5310), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8946), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7351), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [221228] = 26, + [222990] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12558), 1, + anon_sym_COMMA, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12586), 1, + anon_sym_QMARK, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(12686), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12013), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(12225), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221320] = 27, + [223084] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12687), 1, - anon_sym_COMMA, - ACTIONS(12689), 1, + ACTIONS(12688), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [221414] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7341), 1, - anon_sym___attribute, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11827), 1, - anon_sym_STAR, - ACTIONS(11829), 1, - anon_sym_AMP_AMP, - ACTIONS(11831), 1, - anon_sym_AMP, - STATE(5310), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8905), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6842), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7343), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [221488] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9715), 10, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12227), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(9717), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [221548] = 3, + [223178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 3, + ACTIONS(7327), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7293), 35, + ACTIONS(7329), 35, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -643051,95 +643823,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [221594] = 26, + [223224] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(10463), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [223316] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + ACTIONS(11333), 1, + anon_sym_LBRACK, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12390), 1, + anon_sym_SLASH, + ACTIONS(12396), 1, + anon_sym_PIPE, + ACTIONS(12400), 1, + anon_sym_AMP, + ACTIONS(12406), 1, anon_sym_LT_LT, + ACTIONS(12408), 1, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12410), 1, + anon_sym_QMARK, + ACTIONS(12412), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12414), 1, + anon_sym_bitor, + ACTIONS(12416), 1, + anon_sym_bitand, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12386), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12392), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12394), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12398), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12691), 2, + ACTIONS(12690), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(12382), 3, + anon_sym_GT2, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12404), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [221686] = 5, + [223408] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(12281), 1, + ACTIONS(12254), 1, + anon_sym_LPAREN2, + ACTIONS(12256), 1, anon_sym_LBRACK, - STATE(7175), 1, - sym_new_declarator, - ACTIONS(9535), 11, + STATE(2244), 1, + sym_parameter_list, + STATE(6613), 1, + sym__function_declarator_seq, + ACTIONS(10178), 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(9537), 25, + ACTIONS(10176), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -643147,8 +643986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_GT, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -643161,1269 +644002,1124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [221736] = 21, + [223462] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(10982), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12338), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12354), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5741), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12692), 1, + anon_sym_COMMA, + ACTIONS(12694), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12336), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12227), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 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, - [221818] = 26, + [223556] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12696), 1, + anon_sym_COMMA, + ACTIONS(12698), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12665), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [221910] = 27, + [223650] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(11553), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12693), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12700), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222004] = 27, + [223744] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12695), 1, + ACTIONS(12702), 1, anon_sym_COMMA, - ACTIONS(12697), 1, + ACTIONS(12704), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222098] = 17, + [223838] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(6821), 1, - anon_sym___attribute, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11838), 1, - anon_sym_STAR, - ACTIONS(11840), 1, - anon_sym_AMP_AMP, - ACTIONS(11842), 1, + ACTIONS(11349), 1, + anon_sym_DOT, + ACTIONS(12382), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12390), 1, + anon_sym_SLASH, + ACTIONS(12396), 1, + anon_sym_PIPE, + ACTIONS(12400), 1, anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(5313), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8942), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2488), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6823), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [222172] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7393), 1, - anon_sym___attribute, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11827), 1, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12410), 1, + anon_sym_QMARK, + ACTIONS(12412), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12414), 1, + anon_sym_bitor, + ACTIONS(12416), 1, + anon_sym_bitand, + STATE(5835), 1, + sym_argument_list, + STATE(5930), 1, + sym_subscript_argument_list, + ACTIONS(11351), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12386), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12388), 2, anon_sym_STAR, - ACTIONS(11829), 1, + anon_sym_PERCENT, + ACTIONS(12392), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12394), 2, anon_sym_AMP_AMP, - ACTIONS(11831), 1, - anon_sym_AMP, - STATE(5310), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8899), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6822), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7391), 6, + anon_sym_and, + ACTIONS(12398), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12646), 2, anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [222246] = 12, + ACTIONS(12402), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [223930] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - STATE(5741), 1, + ACTIONS(12396), 1, + anon_sym_PIPE, + ACTIONS(12400), 1, + anon_sym_AMP, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12412), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12414), 1, + anon_sym_bitor, + ACTIONS(12416), 1, + anon_sym_bitand, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12326), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9707), 9, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - 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(9709), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12394), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12398), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, + ACTIONS(10469), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, anon_sym_GT2, - [222310] = 26, + ACTIONS(12404), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [224018] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - STATE(3874), 1, + ACTIONS(12706), 1, + anon_sym_COMMA, + ACTIONS(12708), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12699), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222402] = 27, + [224112] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12701), 1, + ACTIONS(12710), 1, anon_sym_COMMA, - ACTIONS(12703), 1, + ACTIONS(12712), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222496] = 24, + [224206] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(12277), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(12328), 1, + STATE(7008), 1, + sym_new_declarator, + ACTIONS(9547), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12334), 1, anon_sym_PIPE, - ACTIONS(12338), 1, anon_sym_AMP, - ACTIONS(12344), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9549), 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_GT_EQ, anon_sym_LT_LT, - ACTIONS(12346), 1, anon_sym_GT_GT, - ACTIONS(12350), 1, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [224256] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, + anon_sym_AMP, + ACTIONS(12346), 1, + anon_sym_GT_EQ, ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10544), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(12342), 4, + ACTIONS(12344), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [222584] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(12551), 1, - anon_sym_LT, - STATE(4054), 1, - sym_template_argument_list, - ACTIONS(6565), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6572), 31, + ACTIONS(9659), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - sym_auto, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [222636] = 27, + anon_sym_RBRACK, + anon_sym_QMARK, + [224344] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12640), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12705), 1, - anon_sym_COMMA, - ACTIONS(12707), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12616), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [222730] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7353), 1, - anon_sym___attribute, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11827), 1, - anon_sym_STAR, - ACTIONS(11829), 1, - anon_sym_AMP_AMP, - ACTIONS(11831), 1, - anon_sym_AMP, - STATE(5310), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8906), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7355), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [222804] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7347), 1, - anon_sym___attribute, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11838), 1, - anon_sym_STAR, - ACTIONS(11840), 1, - anon_sym_AMP_AMP, - ACTIONS(11842), 1, - anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(5313), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8944), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2488), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7345), 6, + ACTIONS(10487), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [222878] = 24, + anon_sym_RBRACK_RBRACK, + anon_sym_QMARK, + [224432] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, - anon_sym_LT_EQ_GT, + anon_sym_GT_EQ, ACTIONS(12352), 1, - anon_sym_bitor, + anon_sym_QMARK, ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12714), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10437), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(12342), 4, + ACTIONS(12344), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [222966] = 24, + [224524] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12616), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 4, + ACTIONS(10491), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [223054] = 24, + [224612] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12614), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12620), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12624), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12630), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12636), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12638), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12640), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12610), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12612), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12616), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12618), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12622), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12632), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12626), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12628), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 4, + ACTIONS(9659), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, anon_sym_QMARK, - [223142] = 24, + [224700] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12613), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12619), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12623), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12629), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12635), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12637), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12639), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12609), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12611), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12615), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12617), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12621), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12631), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12625), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12627), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9597), 4, + ACTIONS(10554), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + anon_sym_COLON, anon_sym_QMARK, - [223230] = 24, + [224788] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10437), 4, + ACTIONS(10554), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - [223318] = 26, + [224876] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9828), 2, + ACTIONS(9891), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [223410] = 12, + [224968] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 7, + ACTIONS(9621), 7, anon_sym_DASH, anon_sym_PLUS, anon_sym_PIPE, @@ -644431,7 +645127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(9623), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644451,26 +645147,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [223474] = 10, + [225032] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 8, + ACTIONS(9621), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -644479,7 +645175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 21, + ACTIONS(9623), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -644501,123 +645197,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [223534] = 23, + [225092] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 6, + ACTIONS(9623), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_COLON, anon_sym_QMARK, anon_sym_or, - [223620] = 22, + [225178] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 8, + ACTIONS(9623), 8, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644626,58 +645322,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_or, anon_sym_and, - [223704] = 21, + [225262] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9707), 1, + ACTIONS(9621), 1, anon_sym_PIPE, - ACTIONS(11315), 1, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 9, + ACTIONS(9623), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644687,55 +645383,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_and, anon_sym_bitor, - [223786] = 20, + [225344] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9707), 1, + ACTIONS(9621), 1, anon_sym_PIPE, - ACTIONS(11315), 1, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 11, + ACTIONS(9623), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644747,52 +645443,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and, anon_sym_bitor, anon_sym_xor, - [223866] = 18, + [225424] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, + ACTIONS(9621), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 12, + ACTIONS(9623), 12, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644805,48 +645501,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bitor, anon_sym_xor, anon_sym_bitand, - [223942] = 17, + [225500] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, + ACTIONS(9621), 2, anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 15, + ACTIONS(9623), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644862,45 +645558,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [224016] = 15, + [225574] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 5, + ACTIONS(9621), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 16, + ACTIONS(9623), 16, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644917,40 +645613,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [224086] = 13, + [225644] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(9707), 5, + ACTIONS(9621), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 19, + ACTIONS(9623), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -644970,110 +645666,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [224152] = 27, + [225710] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12709), 1, + ACTIONS(12716), 1, anon_sym_COLON, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224246] = 14, + [225804] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(9707), 5, + ACTIONS(9621), 5, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 17, + ACTIONS(9623), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_PIPE_PIPE, @@ -645091,93 +645787,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [224314] = 27, + [225872] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12404), 1, + ACTIONS(12368), 1, anon_sym_COLON, - ACTIONS(12561), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224408] = 10, + [225966] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9715), 8, + ACTIONS(9669), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -645186,7 +645882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9717), 21, + ACTIONS(9671), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -645208,538 +645904,613 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [224468] = 9, + [226026] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(9629), 1, anon_sym_DOT, - STATE(5741), 1, + ACTIONS(11553), 1, + anon_sym_COMMA, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12718), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9681), 10, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - ACTIONS(9683), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_LT, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_GT2, - [224526] = 24, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [226120] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10475), 4, + ACTIONS(10439), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [224614] = 26, + [226208] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(10479), 2, + ACTIONS(10463), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224706] = 24, + [226300] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 4, + ACTIONS(10469), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [224794] = 26, + [226388] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(10491), 2, + ACTIONS(10473), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224886] = 27, + [226480] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12711), 1, - anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12720), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [224980] = 27, + [226572] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12713), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(9891), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225074] = 27, + [226664] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11417), 1, + ACTIONS(11553), 1, anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12293), 1, + ACTIONS(12722), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225168] = 7, + [226758] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(12257), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(12259), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - STATE(2267), 1, - sym_parameter_list, - STATE(6617), 1, - sym__function_declarator_seq, - ACTIONS(10210), 9, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12328), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9621), 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(9623), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [226822] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(10208), 25, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9621), 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(9623), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -645761,359 +646532,393 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [225222] = 27, + [226882] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12715), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225316] = 26, + ACTIONS(9623), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + [226968] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(10479), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [225408] = 26, + ACTIONS(9623), 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, + [227052] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9621), 1, + anon_sym_PIPE, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12334), 1, - anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, - anon_sym_QMARK, - ACTIONS(12350), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, + anon_sym_GT_EQ, ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(10491), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12332), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12344), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [225500] = 26, + ACTIONS(9623), 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, + [227134] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9621), 1, + anon_sym_PIPE, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12334), 1, - anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, - anon_sym_QMARK, - ACTIONS(12350), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, + anon_sym_GT_EQ, ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 11, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12332), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12336), 2, anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, anon_sym_xor, - ACTIONS(12356), 2, + [227214] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(9621), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12717), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(12340), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12344), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [225592] = 20, + ACTIONS(9623), 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, + [227290] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(10982), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12338), 1, - anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, - anon_sym_LT_EQ_GT, + anon_sym_GT_EQ, ACTIONS(12354), 1, - anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + anon_sym_LT_EQ_GT, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(9621), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12356), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12344), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 11, + ACTIONS(9623), 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_RBRACK, anon_sym_QMARK, anon_sym_or, anon_sym_and, anon_sym_bitor, anon_sym_xor, - anon_sym_GT2, - [225672] = 7, + anon_sym_bitand, + anon_sym_not_eq, + [227364] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - STATE(2249), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10210), 11, + ACTIONS(11577), 1, + anon_sym_DOT, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(11579), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(9694), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(10208), 23, + ACTIONS(9696), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -646123,7 +646928,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, @@ -646134,226 +646942,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [225726] = 26, + [227422] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12320), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, - anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12580), 1, + anon_sym_GT_EQ, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(5741), 1, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9828), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11325), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12582), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12578), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [225818] = 27, + ACTIONS(10487), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [227510] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12549), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9621), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 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, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [225912] = 27, + [227580] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12719), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(9698), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9700), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, 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, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [226006] = 9, + [227640] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9657), 8, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9702), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -646362,7 +647139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9659), 23, + ACTIONS(9704), 21, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -646384,148 +647161,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - [226064] = 16, + [227700] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11821), 1, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, anon_sym_STAR, - ACTIONS(11823), 1, - anon_sym_AMP_AMP, - ACTIONS(11825), 1, + anon_sym_PERCENT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9621), 5, + anon_sym_PIPE, anon_sym_AMP, - STATE(4861), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8886), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7351), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [226136] = 24, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + [227766] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10540), 4, + ACTIONS(10491), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [226224] = 10, + [227854] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9673), 8, + ACTIONS(9716), 8, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -646534,7 +647303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9675), 21, + ACTIONS(9718), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -646556,37 +647325,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [226284] = 10, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + [227912] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11305), 1, anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + ACTIONS(12330), 1, + anon_sym_SLASH, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9677), 8, + ACTIONS(9621), 5, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9623), 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_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, + [227980] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12273), 1, + anon_sym_LBRACK, + STATE(7011), 1, + sym_new_declarator, + ACTIONS(9547), 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(9679), 21, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9549), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -646594,10 +647411,8 @@ 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_LBRACE, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -646606,96 +647421,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - [226344] = 24, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [228030] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10544), 4, + ACTIONS(9659), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [226432] = 9, + [228118] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(9681), 8, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11811), 1, + anon_sym_STAR, + ACTIONS(11813), 1, + anon_sym_AMP_AMP, + ACTIONS(11815), 1, + anon_sym_AMP, + STATE(4985), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8882), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6733), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7367), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [228190] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12250), 1, + anon_sym_LPAREN2, + ACTIONS(12252), 1, + anon_sym_LBRACK, + STATE(2275), 1, + sym_parameter_list, + STATE(6709), 1, + sym__function_declarator_seq, + ACTIONS(10229), 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(9683), 23, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10227), 23, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -646705,10 +647579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_COLON, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -646719,843 +647590,641 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - [226490] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [228244] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12603), 2, + ACTIONS(12724), 2, anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(12340), 3, + anon_sym_RBRACK, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12344), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [226582] = 24, + [228336] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(12250), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(12252), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, - anon_sym_DOT, - ACTIONS(12567), 1, + STATE(2275), 1, + sym_parameter_list, + STATE(6709), 1, + sym__function_declarator_seq, + ACTIONS(10233), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12573), 1, anon_sym_PIPE, - ACTIONS(12577), 1, anon_sym_AMP, - ACTIONS(12583), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12591), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, - anon_sym_bitand, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(11317), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12565), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(10231), 23, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12571), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12575), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12581), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9597), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_COLON, + anon_sym_LT_LT, anon_sym_QMARK, - [226670] = 27, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_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, + [228390] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12721), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(9669), 8, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(9671), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 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(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [226764] = 27, + [228450] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12723), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12658), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [226858] = 24, + [228542] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12370), 1, - anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, - anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - STATE(5875), 1, + STATE(5835), 1, sym_argument_list, - STATE(5920), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(9698), 10, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 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(9700), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(10437), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_LT_LT, anon_sym_QMARK, - [226946] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11821), 1, - anon_sym_STAR, - ACTIONS(11823), 1, - anon_sym_AMP_AMP, - ACTIONS(11825), 1, - anon_sym_AMP, - STATE(4861), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8887), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6726), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7343), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [227018] = 27, + anon_sym_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, + [228602] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12410), 1, + anon_sym_QMARK, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12725), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(5835), 1, sym_argument_list, - STATE(3900), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(10473), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12418), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12404), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [227112] = 27, + [228694] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(11417), 1, + ACTIONS(11553), 1, anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12727), 1, + ACTIONS(12726), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227206] = 26, + [228788] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12558), 1, + anon_sym_COMMA, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12728), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9828), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(11333), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227298] = 27, + [228882] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, + ACTIONS(12382), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12410), 1, + anon_sym_QMARK, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12416), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12729), 1, - anon_sym_SEMI, - STATE(3874), 1, + STATE(5835), 1, sym_argument_list, - STATE(3900), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [227392] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - ACTIONS(11319), 1, - anon_sym_LBRACK, - ACTIONS(11323), 1, - anon_sym_DOT, - ACTIONS(12328), 1, - anon_sym_SLASH, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, - anon_sym_LT_EQ_GT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, - sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11325), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12324), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12326), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12356), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12552), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12404), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 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, - [227468] = 27, + [228974] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, + ACTIONS(12558), 1, anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12731), 1, + ACTIONS(12730), 1, anon_sym_COLON, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227562] = 9, + [229068] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11349), 1, anon_sym_DOT, - STATE(5741), 1, + STATE(5835), 1, sym_argument_list, - STATE(5917), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(9657), 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(9659), 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, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_GT2, - [227620] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12273), 1, - anon_sym_LPAREN2, - ACTIONS(12275), 1, - anon_sym_LBRACK, - STATE(2249), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10206), 11, + ACTIONS(9702), 10, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -647566,8 +648235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(10204), 23, + ACTIONS(9704), 19, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_STAR, @@ -647586,2154 +648254,2439 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor, anon_sym_bitand, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, anon_sym_GT2, - [227674] = 27, + [229128] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(11417), 1, - anon_sym_COMMA, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12733), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [227768] = 26, + ACTIONS(10439), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [229216] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11333), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11349), 1, anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12390), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12396), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12400), 1, anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12406), 1, + anon_sym_LT_LT, + ACTIONS(12408), 1, + anon_sym_GT_GT, + ACTIONS(12412), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12414), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12416), 1, anon_sym_bitand, - STATE(5875), 1, + STATE(5835), 1, sym_argument_list, - STATE(5920), 1, + STATE(5930), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11351), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12386), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12388), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12392), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12394), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12398), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12418), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12735), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(12382), 3, + ACTIONS(12402), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(10554), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_GT2, + ACTIONS(12404), 4, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [227860] = 17, + [229304] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12344), 1, - anon_sym_LT_LT, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, + anon_sym_AMP, ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, + anon_sym_GT_EQ, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12342), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12332), 2, 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, + ACTIONS(12334), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12338), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_GT2, - [227934] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7349), 1, - anon_sym___attribute, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11838), 1, - anon_sym_STAR, - ACTIONS(11840), 1, - anon_sym_AMP_AMP, - ACTIONS(11842), 1, - anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(5313), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8926), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2488), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7351), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [228008] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(7341), 1, - anon_sym___attribute, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11838), 1, - anon_sym_STAR, - ACTIONS(11840), 1, - anon_sym_AMP_AMP, - ACTIONS(11842), 1, - anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(5313), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8927), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6725), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7343), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [228082] = 12, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + ACTIONS(10469), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + [229392] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - STATE(5875), 1, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12732), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12368), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12400), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 7, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12243), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [228146] = 26, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [229483] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12320), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12328), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12334), 1, - anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, - ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12348), 1, - anon_sym_QMARK, - ACTIONS(12350), 1, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12352), 1, - anon_sym_bitor, - ACTIONS(12354), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5741), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12734), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5917), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(10479), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(11325), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12342), 4, + ACTIONS(12227), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [228238] = 10, + [229574] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - STATE(5875), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12736), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12400), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(9707), 8, + ACTIONS(12217), 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(9709), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_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(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12243), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [228298] = 23, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [229665] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12738), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12374), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_or, - [228384] = 22, + [229756] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12740), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12378), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 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, - [228468] = 21, + [229847] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9707), 1, - anon_sym_PIPE, - ACTIONS(10900), 1, + ACTIONS(6254), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12380), 1, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12398), 1, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12378), 2, + ACTIONS(12332), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12334), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 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, - [228550] = 7, + [229938] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(12275), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - STATE(2249), 1, - sym_parameter_list, - STATE(6557), 1, - sym__function_declarator_seq, - ACTIONS(10198), 11, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, anon_sym_SLASH, + ACTIONS(12336), 1, anon_sym_PIPE, + ACTIONS(12340), 1, anon_sym_AMP, - anon_sym_GT, + ACTIONS(12346), 1, anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, - anon_sym_DOT, - ACTIONS(10196), 23, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + ACTIONS(12742), 1, + anon_sym_RBRACK, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12332), 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_QMARK, - anon_sym_LT_EQ_GT, anon_sym_or, + ACTIONS(12334), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12338), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [228604] = 18, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [230029] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12386), 1, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - STATE(5875), 1, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12744), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12388), 2, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(9709), 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, - [228680] = 17, + [230120] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12386), 1, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - STATE(5875), 1, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12746), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9707), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12388), 2, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_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, - [228754] = 27, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [230211] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12737), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12748), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [228848] = 24, + [230302] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10982), 1, + ACTIONS(6273), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11319), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11323), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12328), 1, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12334), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12338), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12344), 1, - anon_sym_LT_LT, ACTIONS(12346), 1, - anon_sym_GT_GT, - ACTIONS(12350), 1, - anon_sym_LT_EQ_GT, + anon_sym_GT_EQ, ACTIONS(12352), 1, - anon_sym_bitor, + anon_sym_QMARK, ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5741), 1, - sym_argument_list, - STATE(5917), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11325), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12324), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12326), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12330), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12332), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12336), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12356), 2, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12340), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(10540), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_GT2, - ACTIONS(12342), 4, + ACTIONS(12344), 3, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [228936] = 27, + [230393] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6287), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12739), 1, - anon_sym_COLON, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229030] = 24, + [230484] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11862), 1, + sym_primitive_type, + ACTIONS(11874), 1, + anon_sym_STAR, + ACTIONS(11876), 1, + anon_sym_AMP_AMP, + ACTIONS(11878), 1, + anon_sym_AMP, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3674), 1, + sym__type_declarator, + STATE(11034), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, + [230557] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(6295), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12394), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(10487), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - [229118] = 27, + [230648] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11099), 1, + sym_identifier, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(12754), 1, + anon_sym_enum, + ACTIONS(12756), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(2199), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3563), 1, + sym_type_specifier, + STATE(7434), 1, + sym_argument_list, + STATE(8665), 1, + sym__scope_resolution, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12752), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [230741] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11099), 1, + sym_identifier, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(12754), 1, + anon_sym_enum, + ACTIONS(12756), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(2199), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3499), 1, + sym_type_specifier, + STATE(7439), 1, + sym_argument_list, + STATE(8665), 1, + sym__scope_resolution, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12752), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [230834] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12741), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12758), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229212] = 15, + [230925] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12394), 1, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - STATE(5875), 1, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12760), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12388), 2, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9707), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 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, - [229282] = 13, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [231016] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - STATE(5875), 1, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12762), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9707), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 19, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [231107] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6203), 1, anon_sym_RBRACK, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, + anon_sym_AMP, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12332), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12334), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12338), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - [229348] = 14, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [231198] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - STATE(5875), 1, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12764), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12388), 2, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(9707), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - ACTIONS(9709), 17, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, anon_sym_not_eq, - [229416] = 16, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [231289] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(3945), 1, + anon_sym_class, + ACTIONS(3947), 1, + anon_sym_struct, + ACTIONS(3949), 1, + anon_sym_union, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11063), 1, + sym_identifier, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(12750), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11821), 1, - anon_sym_STAR, - ACTIONS(11823), 1, - anon_sym_AMP_AMP, - ACTIONS(11825), 1, - anon_sym_AMP, - STATE(4861), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8891), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6823), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [229488] = 27, + ACTIONS(12768), 1, + anon_sym_enum, + ACTIONS(12770), 1, + anon_sym_typename, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3772), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(4080), 1, + sym_decltype_auto, + STATE(4222), 1, + sym_splice_specifier, + STATE(6524), 1, + sym_type_specifier, + STATE(7472), 1, + sym_argument_list, + STATE(8737), 1, + sym__scope_resolution, + STATE(3960), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12766), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4081), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [231382] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6352), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12561), 1, - anon_sym_COMMA, - ACTIONS(12567), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12743), 1, - anon_sym_COLON, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229582] = 26, + [231473] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6367), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12745), 1, - anon_sym_COMMA, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229673] = 26, + [231564] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6222), 1, + ACTIONS(6371), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [231655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8513), 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, - [229764] = 26, + anon_sym_DOT, + ACTIONS(8508), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_COLON_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, + [231700] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6224), 1, + ACTIONS(6375), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229855] = 26, + [231791] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6228), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12772), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [229946] = 26, + [231882] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6230), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12774), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230037] = 26, + [231973] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12747), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12776), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230128] = 26, + [232064] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6266), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12778), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230219] = 26, + [232155] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12749), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12780), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230310] = 26, + [232246] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(6329), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12751), 1, - anon_sym_RBRACK, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230401] = 26, + [232337] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6104), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12753), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230492] = 27, + [232428] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(4316), 1, + ACTIONS(3945), 1, anon_sym_class, - ACTIONS(4318), 1, + ACTIONS(3947), 1, anon_sym_struct, - ACTIONS(4320), 1, + ACTIONS(3949), 1, anon_sym_union, - ACTIONS(4360), 1, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(11063), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(11083), 1, + ACTIONS(11067), 1, sym_primitive_type, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - ACTIONS(12759), 1, + ACTIONS(12768), 1, anon_sym_enum, - ACTIONS(12761), 1, + ACTIONS(12770), 1, anon_sym_typename, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3759), 1, + STATE(3728), 1, sym_template_type, - STATE(3762), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3772), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3819), 1, + STATE(3787), 1, sym_qualified_type_identifier, - STATE(4119), 1, + STATE(4080), 1, sym_decltype_auto, - STATE(4263), 1, + STATE(4222), 1, sym_splice_specifier, - STATE(6540), 1, + STATE(6526), 1, sym_type_specifier, - STATE(7432), 1, + STATE(7476), 1, sym_argument_list, - STATE(8675), 1, + STATE(8737), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(3960), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12757), 4, + ACTIONS(12766), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -649741,4334 +650694,4034 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [230585] = 26, + [232521] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12763), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12782), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230676] = 27, + [232612] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(4316), 1, - anon_sym_class, - ACTIONS(4318), 1, - anon_sym_struct, - ACTIONS(4320), 1, - anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11079), 1, - sym_identifier, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(12755), 1, + ACTIONS(6166), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(12759), 1, - anon_sym_enum, - ACTIONS(12761), 1, - anon_sym_typename, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3762), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3819), 1, - sym_qualified_type_identifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(6527), 1, - sym_type_specifier, - STATE(7488), 1, - sym_argument_list, - STATE(8675), 1, - sym__scope_resolution, - STATE(3967), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12757), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4064), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [230769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9703), 9, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, anon_sym_SLASH, + ACTIONS(12336), 1, anon_sym_PIPE, + ACTIONS(12340), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9705), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12334), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12338), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - 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, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [230814] = 26, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [232703] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12765), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12784), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230905] = 26, + [232794] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12767), 1, + ACTIONS(12786), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [230996] = 26, + [232885] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6351), 1, + ACTIONS(6136), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231087] = 26, + [232976] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12769), 1, + ACTIONS(12788), 1, anon_sym_COLON_RBRACK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231178] = 16, + [233067] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11872), 1, - anon_sym_STAR, - ACTIONS(11874), 1, - anon_sym_AMP_AMP, - ACTIONS(11876), 1, - anon_sym_AMP, - STATE(5227), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8959), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7351), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [231249] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11872), 1, - anon_sym_STAR, - ACTIONS(11874), 1, - anon_sym_AMP_AMP, - ACTIONS(11876), 1, - anon_sym_AMP, - STATE(5227), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8960), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6951), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7343), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [231320] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, + ACTIONS(6168), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12771), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231411] = 26, + [233158] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12773), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12790), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231502] = 26, + [233249] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12775), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12792), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231593] = 26, + [233340] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6244), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(8513), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12386), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(8508), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [231684] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, + anon_sym_LT_LT, + anon_sym_COLON_COLON, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11872), 1, - anon_sym_STAR, - ACTIONS(11874), 1, - anon_sym_AMP_AMP, - ACTIONS(11876), 1, - anon_sym_AMP, - STATE(5227), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8962), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7355), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [231755] = 26, + [233385] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12777), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12794), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231846] = 26, + [233476] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12779), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12796), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [231937] = 26, + [233567] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12781), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + ACTIONS(12798), 1, + anon_sym_RBRACK, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232028] = 26, + [233658] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12783), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12800), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232119] = 26, + [233749] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6246), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12802), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232210] = 26, + [233840] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6248), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12804), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232301] = 26, + [233931] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11945), 1, + anon_sym_STAR, + ACTIONS(11947), 1, + anon_sym_AMP_AMP, + ACTIONS(11949), 1, + anon_sym_AMP, + STATE(5191), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8946), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7371), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234002] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6250), 1, + ACTIONS(6182), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232392] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, - anon_sym_class, - ACTIONS(3708), 1, - anon_sym_struct, - ACTIONS(3710), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, - sym_identifier, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12787), 1, - anon_sym_enum, - ACTIONS(12789), 1, - anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3126), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(5359), 1, - sym_type_specifier, - STATE(7495), 1, - sym_argument_list, - STATE(8738), 1, - sym__scope_resolution, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12785), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [232485] = 26, + [234093] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12791), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12806), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232576] = 17, + [234184] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11912), 1, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11945), 1, anon_sym_STAR, - ACTIONS(11914), 1, + ACTIONS(11947), 1, anon_sym_AMP_AMP, - ACTIONS(11916), 1, - anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3681), 1, - sym__type_declarator, - STATE(11037), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [232649] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4429), 1, - anon_sym_class, - ACTIONS(4431), 1, - anon_sym_struct, - ACTIONS(4433), 1, - anon_sym_union, - ACTIONS(4439), 1, - sym_auto, - ACTIONS(4441), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(11091), 1, - sym_primitive_type, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12795), 1, - anon_sym_enum, - ACTIONS(12797), 1, - anon_sym_typename, - STATE(2377), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, - sym__splice_specialization_specifier, - STATE(2701), 1, - sym_template_type, - STATE(2781), 1, - sym_qualified_type_identifier, - STATE(3099), 1, - sym_decltype_auto, - STATE(4800), 1, - sym_type_specifier, - STATE(7439), 1, - sym_argument_list, - STATE(8687), 1, - sym__scope_resolution, - STATE(2984), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12793), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3123), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [232742] = 26, + ACTIONS(11949), 1, + anon_sym_AMP, + STATE(5191), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8951), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7007), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7375), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [234255] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6353), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12808), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232833] = 26, + [234346] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6215), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12573), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12799), 1, - anon_sym_COLON, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [232924] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4429), 1, - anon_sym_class, - ACTIONS(4431), 1, - anon_sym_struct, - ACTIONS(4433), 1, - anon_sym_union, - ACTIONS(4439), 1, - sym_auto, - ACTIONS(4441), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(11091), 1, - sym_primitive_type, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12795), 1, - anon_sym_enum, - ACTIONS(12797), 1, - anon_sym_typename, - STATE(2377), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, - sym__splice_specialization_specifier, - STATE(2701), 1, - sym_template_type, - STATE(2781), 1, - sym_qualified_type_identifier, - STATE(3099), 1, - sym_decltype_auto, - STATE(4843), 1, - sym_type_specifier, - STATE(7487), 1, - sym_argument_list, - STATE(8687), 1, - sym__scope_resolution, - STATE(2984), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12793), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3123), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [233017] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11036), 1, - sym_identifier, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11040), 1, - sym_primitive_type, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12803), 1, - anon_sym_enum, - ACTIONS(12805), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2153), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(3517), 1, - sym_type_specifier, - STATE(7402), 1, - sym_argument_list, - STATE(8763), 1, - sym__scope_resolution, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12801), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [233110] = 26, + [234437] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6234), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12807), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233201] = 26, + [234528] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6357), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12810), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233292] = 27, + [234619] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, - anon_sym_class, - ACTIONS(3708), 1, - anon_sym_struct, - ACTIONS(3710), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, - sym_identifier, - ACTIONS(11105), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12787), 1, - anon_sym_enum, - ACTIONS(12789), 1, - anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3126), 1, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + STATE(3952), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(5466), 1, - sym_type_specifier, - STATE(7502), 1, - sym_argument_list, - STATE(8738), 1, - sym__scope_resolution, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(7357), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7032), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [233385] = 26, + ACTIONS(7359), 26, + 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_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_GT2, + anon_sym_requires, + [234674] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12809), 1, + ACTIONS(12812), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233476] = 26, + [234765] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12811), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12814), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233567] = 27, + [234856] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11036), 1, - sym_identifier, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11040), 1, - sym_primitive_type, - ACTIONS(12755), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(12803), 1, - anon_sym_enum, - ACTIONS(12805), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2153), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(3548), 1, - sym_type_specifier, - STATE(7501), 1, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12816), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(8763), 1, - sym__scope_resolution, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12801), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [233660] = 26, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [234947] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12813), 1, + ACTIONS(12818), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233751] = 26, + [235038] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12815), 1, + ACTIONS(12820), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233842] = 26, + [235129] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6270), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12822), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [233933] = 26, + [235220] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12817), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12824), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234024] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11856), 1, - sym_identifier, - ACTIONS(11858), 1, - anon_sym_LPAREN2, - ACTIONS(11860), 1, - anon_sym_STAR, - ACTIONS(11862), 1, - anon_sym_AMP_AMP, - ACTIONS(11864), 1, - anon_sym_AMP, - ACTIONS(11870), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8266), 1, - sym__type_declarator, - STATE(8576), 1, - sym_pointer_type_declarator, - STATE(11686), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11868), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(8574), 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, - [234097] = 26, + [235311] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12819), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12826), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234188] = 26, + [235402] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12821), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12828), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234279] = 26, + [235493] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12823), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12830), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234370] = 26, + [235584] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12825), 1, + ACTIONS(12832), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234461] = 26, + [235675] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6335), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12827), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234552] = 26, + [235766] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3804), 1, + anon_sym_class, + ACTIONS(3806), 1, + anon_sym_struct, + ACTIONS(3808), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(12836), 1, + anon_sym_enum, + ACTIONS(12838), 1, + anon_sym_typename, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(6534), 1, + sym_type_specifier, + STATE(7412), 1, + sym_argument_list, + STATE(8708), 1, + sym__scope_resolution, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12834), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [235859] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(12840), 1, + anon_sym___attribute__, + ACTIONS(12842), 1, + anon_sym___attribute, + ACTIONS(12844), 1, + anon_sym_LBRACE, + STATE(7574), 1, + sym_field_declaration_list, + STATE(7606), 1, + sym_attribute_specifier, + STATE(9539), 1, + sym_virtual_specifier, + STATE(10613), 1, + sym_base_class_clause, + ACTIONS(7254), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7256), 25, + 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, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [235922] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11908), 1, + sym_identifier, + ACTIONS(11910), 1, + anon_sym_LPAREN2, + ACTIONS(11912), 1, + anon_sym_STAR, + ACTIONS(11914), 1, + anon_sym_AMP_AMP, + ACTIONS(11916), 1, + anon_sym_AMP, + ACTIONS(11920), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4887), 1, + sym__type_declarator, + STATE(5546), 1, + sym_pointer_type_declarator, + STATE(11300), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11918), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5695), 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, + [235995] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12829), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12846), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234643] = 26, + [236086] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6272), 1, + ACTIONS(6363), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [236177] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3804), 1, + anon_sym_class, + ACTIONS(3806), 1, + anon_sym_struct, + ACTIONS(3808), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(12836), 1, + anon_sym_enum, + ACTIONS(12838), 1, + anon_sym_typename, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(6543), 1, + sym_type_specifier, + STATE(7419), 1, + sym_argument_list, + STATE(8708), 1, + sym__scope_resolution, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12834), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [236270] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 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, - [234734] = 26, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(5611), 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, + [236317] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6274), 1, + ACTIONS(6373), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234825] = 26, + [236408] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12831), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12848), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [234916] = 26, + [236499] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6375), 1, + ACTIONS(6337), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235007] = 26, + [236590] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6278), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12850), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235098] = 26, + [236681] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6379), 1, + ACTIONS(6089), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235189] = 26, + [236772] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12833), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(12852), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235280] = 26, + [236863] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6143), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12835), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235371] = 27, + [236954] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3839), 1, - anon_sym_class, - ACTIONS(3841), 1, - anon_sym_struct, - ACTIONS(3843), 1, - anon_sym_union, - ACTIONS(3849), 1, - sym_auto, - ACTIONS(3851), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(12755), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(12839), 1, - anon_sym_enum, - ACTIONS(12841), 1, - anon_sym_typename, - STATE(2385), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2712), 1, - sym_template_type, - STATE(2843), 1, - sym_qualified_type_identifier, - STATE(3166), 1, - sym_decltype_auto, - STATE(4765), 1, - sym_type_specifier, - STATE(7456), 1, - sym_argument_list, - STATE(8702), 1, - sym__scope_resolution, - STATE(3053), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12837), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3167), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [235464] = 27, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11945), 1, + anon_sym_STAR, + ACTIONS(11947), 1, + anon_sym_AMP_AMP, + ACTIONS(11949), 1, + anon_sym_AMP, + STATE(5191), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8963), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7341), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [237025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3839), 1, - anon_sym_class, - ACTIONS(3841), 1, - anon_sym_struct, - ACTIONS(3843), 1, - anon_sym_union, - ACTIONS(3849), 1, - sym_auto, - ACTIONS(3851), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(12755), 1, + ACTIONS(9653), 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(9655), 28, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(12839), 1, - anon_sym_enum, - ACTIONS(12841), 1, - anon_sym_typename, - STATE(2385), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2712), 1, - sym_template_type, - STATE(2843), 1, - sym_qualified_type_identifier, - STATE(3166), 1, - sym_decltype_auto, - STATE(4823), 1, - sym_type_specifier, - STATE(7405), 1, - sym_argument_list, - STATE(8702), 1, - sym__scope_resolution, - STATE(3053), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12837), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3167), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [235557] = 26, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_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_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, + [237070] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12843), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(12854), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235648] = 26, + [237161] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12845), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + ACTIONS(12856), 1, + anon_sym_RBRACK, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235739] = 26, + [237252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(9653), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12847), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9655), 26, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 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, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [235830] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [237297] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12849), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12858), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [235921] = 26, + [237388] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12851), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12860), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236012] = 26, + [237479] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11880), 1, + sym_identifier, + ACTIONS(11882), 1, + anon_sym_LPAREN2, + ACTIONS(11884), 1, + anon_sym_STAR, + ACTIONS(11886), 1, + anon_sym_AMP_AMP, + ACTIONS(11888), 1, + anon_sym_AMP, + ACTIONS(11892), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4758), 1, + sym__type_declarator, + STATE(5693), 1, + sym_pointer_type_declarator, + STATE(11715), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11890), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5687), 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, + [237552] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(6178), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12853), 1, - anon_sym_RBRACK, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236103] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, - anon_sym_requires, - ACTIONS(12858), 1, - anon_sym___asm, - STATE(7509), 1, - sym_ref_qualifier, - STATE(8013), 1, - sym_trailing_return_type, - STATE(8125), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(12415), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(12855), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7727), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [236190] = 26, + [237643] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12861), 1, + ACTIONS(12862), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236281] = 26, + [237734] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6180), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12863), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236372] = 26, + [237825] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12865), 1, + ACTIONS(12864), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236463] = 26, + [237916] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6288), 1, + ACTIONS(6205), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236554] = 17, + [238007] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11878), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11880), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11882), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11884), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11886), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11890), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4640), 1, + STATE(8392), 1, sym__type_declarator, - STATE(5448), 1, - sym_pointer_type_declarator, - STATE(11657), 1, + STATE(11150), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11888), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5436), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -654088,628 +654741,900 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [236627] = 26, + [238080] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6196), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12867), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236718] = 26, + [238171] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12869), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12866), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236809] = 26, + [238262] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8408), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, + [238335] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12871), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12868), 1, + anon_sym_RBRACE, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236900] = 26, + [238426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6290), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + ACTIONS(6566), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(6559), 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, + [238477] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(8421), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, + [238550] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11922), 1, + sym_identifier, + ACTIONS(11924), 1, + anon_sym_LPAREN2, + ACTIONS(11926), 1, + anon_sym_STAR, + ACTIONS(11928), 1, + anon_sym_AMP_AMP, + ACTIONS(11930), 1, + anon_sym_AMP, + ACTIONS(11934), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4645), 1, + sym__type_declarator, + STATE(5349), 1, + sym_pointer_type_declarator, + STATE(10861), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11932), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5346), 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, + [238623] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10964), 1, + sym_identifier, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(10968), 1, + sym_primitive_type, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(12872), 1, + anon_sym_enum, + ACTIONS(12874), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2158), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2172), 1, + sym_decltype_auto, + STATE(3563), 1, + sym_type_specifier, + STATE(7393), 1, + sym_argument_list, + STATE(8665), 1, + sym__scope_resolution, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12870), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [238716] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11908), 1, + sym_identifier, + ACTIONS(11910), 1, + anon_sym_LPAREN2, + ACTIONS(11912), 1, + anon_sym_STAR, + ACTIONS(11914), 1, + anon_sym_AMP_AMP, + ACTIONS(11916), 1, + anon_sym_AMP, + ACTIONS(11920), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4984), 1, + sym__type_declarator, + STATE(5546), 1, + sym_pointer_type_declarator, + STATE(11300), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11918), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5695), 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, + [238789] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12876), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [236991] = 26, + [238880] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11945), 1, + anon_sym_STAR, + ACTIONS(11947), 1, + anon_sym_AMP_AMP, + ACTIONS(11949), 1, + anon_sym_AMP, + STATE(5191), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8945), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(6843), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [238951] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11945), 1, + anon_sym_STAR, + ACTIONS(11947), 1, + anon_sym_AMP_AMP, + ACTIONS(11949), 1, + anon_sym_AMP, + STATE(5191), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8947), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7345), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [239022] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6292), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12878), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237082] = 26, + [239113] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6294), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12880), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12372), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [237173] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8564), 9, + ACTIONS(12217), 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_DOT, - ACTIONS(8559), 28, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_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(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_COLON_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, - [237218] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3873), 1, - anon_sym_class, - ACTIONS(3875), 1, - anon_sym_struct, - ACTIONS(3877), 1, - anon_sym_union, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11109), 1, - sym_identifier, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12875), 1, - anon_sym_enum, - ACTIONS(12877), 1, - anon_sym_typename, - STATE(3375), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3819), 1, - sym_qualified_type_identifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(5466), 1, - sym_type_specifier, - STATE(7443), 1, - sym_argument_list, - STATE(8707), 1, - sym__scope_resolution, - STATE(3967), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12873), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4064), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [237311] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, - anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, - anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - ACTIONS(12879), 1, - anon_sym_RBRACK, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237402] = 27, + [239204] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(3873), 1, + ACTIONS(4030), 1, anon_sym_class, - ACTIONS(3875), 1, + ACTIONS(4032), 1, anon_sym_struct, - ACTIONS(3877), 1, + ACTIONS(4034), 1, anon_sym_union, - ACTIONS(3891), 1, + ACTIONS(4040), 1, sym_auto, - ACTIONS(3893), 1, + ACTIONS(4042), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11109), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(11111), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(12755), 1, + ACTIONS(11075), 1, + sym_primitive_type, + ACTIONS(12750), 1, anon_sym_LPAREN2, - ACTIONS(12875), 1, + ACTIONS(12884), 1, anon_sym_enum, - ACTIONS(12877), 1, + ACTIONS(12886), 1, anon_sym_typename, - STATE(3375), 1, + STATE(2384), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(3759), 1, + STATE(2665), 1, sym_template_type, - STATE(3819), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2733), 1, sym_qualified_type_identifier, - STATE(4119), 1, + STATE(3230), 1, sym_decltype_auto, - STATE(5359), 1, + STATE(4780), 1, sym_type_specifier, - STATE(7477), 1, + STATE(7484), 1, sym_argument_list, - STATE(8707), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(3080), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12873), 4, + ACTIONS(12882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(3236), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -654717,519 +655642,759 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [237495] = 26, + [239297] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12881), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(12888), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237586] = 26, + [239388] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12883), 1, - anon_sym_RBRACE, - STATE(3874), 1, + ACTIONS(12890), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237677] = 26, + [239479] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12885), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12892), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237768] = 4, + [239570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11675), 1, - sym_literal_suffix, - ACTIONS(5645), 17, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(7117), 4, anon_sym_AMP, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_GT_GT, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7122), 33, + 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, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, anon_sym_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - ACTIONS(5638), 19, - anon_sym_DOT_DOT_DOT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [239615] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7499), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7479), 32, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [239662] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7044), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7246), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7248), 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___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_final, + anon_sym_override, anon_sym_GT2, - [237815] = 26, + anon_sym_try, + anon_sym_requires, + [239711] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12887), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12896), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237906] = 26, + [239802] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12889), 1, + ACTIONS(12898), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [237997] = 4, + [239893] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 11, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + STATE(6690), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7658), 3, 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(5638), 25, - anon_sym_DOT_DOT_DOT, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7660), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + anon_sym_SEMI, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [239942] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12902), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(7140), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym_const, + anon_sym___asm, + ACTIONS(7142), 30, + anon_sym_LPAREN2, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + anon_sym_asm, + anon_sym___asm__, anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [239989] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6690), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7662), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7664), 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___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_final, + anon_sym_override, anon_sym_GT2, - [238044] = 26, + anon_sym_try, + anon_sym_requires, + [240038] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6304), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(3074), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4030), 1, + anon_sym_class, + ACTIONS(4032), 1, + anon_sym_struct, + ACTIONS(4034), 1, + anon_sym_union, + ACTIONS(4040), 1, + sym_auto, + ACTIONS(4042), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11071), 1, + sym_identifier, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(11075), 1, + sym_primitive_type, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(12884), 1, + anon_sym_enum, + ACTIONS(12886), 1, + anon_sym_typename, + STATE(2384), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2631), 1, + sym_splice_specifier, + STATE(2665), 1, + sym_template_type, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2733), 1, + sym_qualified_type_identifier, + STATE(3230), 1, + sym_decltype_auto, + STATE(4761), 1, + sym_type_specifier, + STATE(7473), 1, + sym_argument_list, + STATE(8741), 1, + sym__scope_resolution, + STATE(3080), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3236), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [240131] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12905), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238135] = 17, + [240222] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11943), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11945), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11947), 1, + ACTIONS(11862), 1, + sym_primitive_type, + ACTIONS(11868), 1, anon_sym_STAR, - ACTIONS(11949), 1, + ACTIONS(11870), 1, anon_sym_AMP_AMP, - ACTIONS(11951), 1, + ACTIONS(11872), 1, anon_sym_AMP, - ACTIONS(11955), 1, - sym_primitive_type, - STATE(3497), 1, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4997), 1, + STATE(4913), 1, sym__type_declarator, - STATE(5644), 1, - sym_pointer_type_declarator, - STATE(10893), 1, + STATE(11298), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11953), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5575), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -655249,226 +656414,371 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [238208] = 26, + [240295] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6213), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12891), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238299] = 26, + [240386] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11880), 1, + sym_identifier, + ACTIONS(11882), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12893), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(11884), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(11886), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [238390] = 26, + ACTIONS(11888), 1, + anon_sym_AMP, + ACTIONS(11892), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4959), 1, + sym__type_declarator, + STATE(5693), 1, + sym_pointer_type_declarator, + STATE(11715), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11890), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5687), 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, + [240459] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6308), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11880), 1, + sym_identifier, + ACTIONS(11882), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, - anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(11884), 1, + anon_sym_STAR, + ACTIONS(11886), 1, + anon_sym_AMP_AMP, + ACTIONS(11888), 1, anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(11892), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4785), 1, + sym__type_declarator, + STATE(5693), 1, + sym_pointer_type_declarator, + STATE(11715), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11890), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5687), 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, + [240532] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11862), 1, + sym_primitive_type, + ACTIONS(11868), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12372), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(11870), 1, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [238481] = 6, + ACTIONS(11872), 1, + anon_sym_AMP, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4966), 1, + sym__type_declarator, + STATE(11298), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, + [240605] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(6572), 4, + STATE(7062), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7684), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12907), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7686), 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___attribute__, anon_sym_LBRACE, - ACTIONS(6565), 30, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [240654] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7063), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7690), 3, anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12909), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7692), 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___attribute__, - 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [240703] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11862), 1, + sym_primitive_type, + ACTIONS(11868), 1, + anon_sym_STAR, + ACTIONS(11870), 1, + anon_sym_AMP_AMP, + ACTIONS(11872), 1, + anon_sym_AMP, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4992), 1, + sym__type_declarator, + STATE(11298), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + STATE(3145), 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, @@ -655481,359 +656791,444 @@ 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, - [238532] = 26, + [240776] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6310), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + ACTIONS(12911), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12913), 1, + anon_sym_RBRACK, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [240867] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10964), 1, + sym_identifier, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(10968), 1, + sym_primitive_type, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(12872), 1, + anon_sym_enum, + ACTIONS(12874), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2158), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2172), 1, + sym_decltype_auto, + STATE(3499), 1, + sym_type_specifier, + STATE(7490), 1, + sym_argument_list, + STATE(8665), 1, + sym__scope_resolution, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12870), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [240960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11641), 1, + sym_literal_suffix, + ACTIONS(5619), 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, - [238623] = 26, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(5611), 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_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, + [241007] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6312), 1, + ACTIONS(6151), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [238714] = 27, + [241098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(12755), 1, + ACTIONS(10556), 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(10558), 21, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(12897), 1, - anon_sym_enum, - ACTIONS(12899), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2210), 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_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, + [241143] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6690), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2221), 1, - sym_decltype_auto, - STATE(3517), 1, - sym_type_specifier, - STATE(7464), 1, - sym_argument_list, - STATE(8763), 1, - sym__scope_resolution, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12895), 4, + ACTIONS(7731), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12900), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [238807] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(7733), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, + anon_sym_SEMI, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12858), 1, - anon_sym___asm, - STATE(7531), 1, - sym_ref_qualifier, - STATE(7999), 1, - sym_trailing_return_type, - STATE(8132), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(8160), 2, + 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_final, anon_sym_override, - ACTIONS(12855), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7724), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 7, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [241192] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6690), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7739), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7741), 29, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, + anon_sym___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_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [238894] = 27, + anon_sym_requires, + [241241] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12897), 1, - anon_sym_enum, - ACTIONS(12899), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2210), 1, + STATE(7071), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2221), 1, - sym_decltype_auto, - STATE(3548), 1, - sym_type_specifier, - STATE(7476), 1, - sym_argument_list, - STATE(8763), 1, - sym__scope_resolution, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12895), 4, + ACTIONS(7755), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12915), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [238987] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12901), 2, + ACTIONS(7757), 29, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(7132), 5, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [241290] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7072), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7769), 3, anon_sym_AMP, anon_sym___attribute, - anon_sym_LBRACK, anon_sym_const, - anon_sym___asm, - ACTIONS(7134), 30, + ACTIONS(12917), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7771), 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___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, @@ -655848,2972 +657243,3200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_asm, - anon_sym___asm__, - anon_sym_DASH_GT, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, anon_sym_requires, - [239034] = 26, + [241339] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + STATE(6690), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7560), 3, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12904), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7562), 29, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [239125] = 26, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [241388] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6164), 1, + ACTIONS(6158), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239216] = 26, + [241479] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7044), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7584), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12894), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7586), 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___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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [241528] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6172), 1, + ACTIONS(6211), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239307] = 26, + [241619] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12906), 1, + ACTIONS(12919), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239398] = 26, + [241710] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6690), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7618), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7620), 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___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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [241759] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(6690), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7622), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(12900), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7624), 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___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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [241808] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12908), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + ACTIONS(12921), 1, + anon_sym_RBRACK, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239489] = 26, + [241899] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12910), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12923), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239580] = 26, + [241990] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6320), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12925), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239671] = 26, + [242081] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + STATE(7510), 1, + sym_ref_qualifier, + STATE(8004), 1, + sym_trailing_return_type, + STATE(8372), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7703), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [242168] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12912), 1, + ACTIONS(12927), 1, anon_sym_SEMI, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239762] = 26, + [242259] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6322), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12929), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239853] = 26, + [242350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6324), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(7133), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7135), 33, + 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, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [242395] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12931), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [239944] = 26, + [242486] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12914), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12933), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240035] = 26, + [242577] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6326), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(11945), 1, + anon_sym_STAR, + ACTIONS(11947), 1, + anon_sym_AMP_AMP, + ACTIONS(11949), 1, + anon_sym_AMP, + STATE(5191), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8971), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6972), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(7367), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [242648] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + ACTIONS(12935), 1, + anon_sym_RBRACK, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240126] = 26, + [242739] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12916), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10579), 1, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [240217] = 26, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_requires, + STATE(7546), 1, + sym_ref_qualifier, + STATE(8019), 1, + sym_trailing_return_type, + STATE(8381), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12312), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7715), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [242826] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12918), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(12937), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240308] = 26, + [242917] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12920), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12939), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240399] = 26, + [243008] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12922), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12941), 1, + anon_sym_COMMA, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240490] = 26, + [243099] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6166), 1, + ACTIONS(6217), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240581] = 26, + [243190] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12924), 1, + ACTIONS(12943), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240672] = 26, + [243281] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6168), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12945), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240763] = 17, + [243372] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(3284), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3834), 1, + anon_sym_class, + ACTIONS(3836), 1, + anon_sym_struct, + ACTIONS(3838), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(11005), 1, sym_identifier, - ACTIONS(11931), 1, + ACTIONS(11007), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, anon_sym_LPAREN2, - ACTIONS(11933), 1, - anon_sym_STAR, - ACTIONS(11935), 1, - anon_sym_AMP_AMP, - ACTIONS(11937), 1, - anon_sym_AMP, - ACTIONS(11941), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4859), 1, - sym__type_declarator, - STATE(5594), 1, - sym_pointer_type_declarator, - STATE(11053), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11939), 4, + ACTIONS(12949), 1, + anon_sym_enum, + ACTIONS(12951), 1, + anon_sym_typename, + STATE(3768), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4143), 1, + sym_template_type, + STATE(4219), 1, + sym_splice_specifier, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, + sym_decltype_auto, + STATE(6530), 1, + sym_type_specifier, + STATE(7474), 1, + sym_argument_list, + STATE(8722), 1, + sym__scope_resolution, + STATE(4361), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12947), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5593), 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, - [240836] = 26, + STATE(4523), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [243465] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12926), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(12953), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [240927] = 26, + [243556] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6342), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12955), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241018] = 26, + [243647] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(3284), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3834), 1, + anon_sym_class, + ACTIONS(3836), 1, + anon_sym_struct, + ACTIONS(3838), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(11005), 1, + sym_identifier, + ACTIONS(11007), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(12949), 1, + anon_sym_enum, + ACTIONS(12951), 1, + anon_sym_typename, + STATE(3768), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4143), 1, + sym_template_type, + STATE(4219), 1, + sym_splice_specifier, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, + sym_decltype_auto, + STATE(6513), 1, + sym_type_specifier, + STATE(7424), 1, + sym_argument_list, + STATE(8722), 1, + sym__scope_resolution, + STATE(4361), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12947), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4523), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [243740] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12928), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12957), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241109] = 26, + [243831] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12959), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241200] = 26, + [243922] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6302), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12930), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241291] = 26, + [244013] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6129), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12932), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241382] = 26, + [244104] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12934), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(12961), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241473] = 26, + [244195] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6083), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12936), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241564] = 26, + [244286] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12938), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(12963), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241655] = 26, + [244377] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6333), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12940), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241746] = 26, + [244468] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, + ACTIONS(6331), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241837] = 26, + [244559] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12942), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12965), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [241928] = 26, + [244650] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6176), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + ACTIONS(12967), 1, + anon_sym_RBRACK, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242019] = 26, + [244741] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12944), 1, + ACTIONS(12969), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242110] = 26, + [244832] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12946), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12971), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242201] = 26, + [244923] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6350), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12948), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242292] = 26, + [245014] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6279), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12950), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242383] = 26, + [245105] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6289), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12952), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242474] = 26, + [245196] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3804), 1, + anon_sym_class, + ACTIONS(3806), 1, + anon_sym_struct, + ACTIONS(3808), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12954), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12836), 1, + anon_sym_enum, + ACTIONS(12838), 1, + anon_sym_typename, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(5510), 1, + sym_type_specifier, + STATE(7427), 1, sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [242565] = 26, + STATE(8708), 1, + sym__scope_resolution, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12834), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [245289] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12956), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12973), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242656] = 26, + [245380] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6220), 1, + ACTIONS(6300), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242747] = 26, + [245471] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12958), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12975), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [242838] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11878), 1, - sym_identifier, - ACTIONS(11880), 1, - anon_sym_LPAREN2, - ACTIONS(11882), 1, - anon_sym_STAR, - ACTIONS(11884), 1, - anon_sym_AMP_AMP, - ACTIONS(11886), 1, - anon_sym_AMP, - ACTIONS(11890), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4759), 1, - sym__type_declarator, - STATE(5448), 1, - sym_pointer_type_declarator, - STATE(11657), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11888), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5436), 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, - [242911] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11856), 1, - sym_identifier, - ACTIONS(11858), 1, - anon_sym_LPAREN2, - ACTIONS(11860), 1, - anon_sym_STAR, - ACTIONS(11862), 1, - anon_sym_AMP_AMP, - ACTIONS(11864), 1, - anon_sym_AMP, - ACTIONS(11870), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8364), 1, - sym__type_declarator, - STATE(8576), 1, - sym_pointer_type_declarator, - STATE(11686), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11868), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(8574), 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, - [242984] = 26, + [245562] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12960), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10637), 1, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [243075] = 27, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12980), 1, + anon_sym___asm, + STATE(7553), 1, + sym_ref_qualifier, + STATE(8004), 1, + sym_trailing_return_type, + STATE(8090), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(12977), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7713), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [245649] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, + ACTIONS(4197), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(4199), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(4201), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(4207), 1, + sym_auto, + ACTIONS(4209), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(11079), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(12755), 1, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(12750), 1, anon_sym_LPAREN2, - ACTIONS(12787), 1, + ACTIONS(12985), 1, anon_sym_enum, - ACTIONS(12789), 1, + ACTIONS(12987), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3126), 1, + STATE(2367), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(2728), 1, sym_template_type, - STATE(3747), 1, + STATE(2818), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(6509), 1, + STATE(3096), 1, + sym_decltype_auto, + STATE(4871), 1, sym_type_specifier, - STATE(7411), 1, + STATE(7496), 1, sym_argument_list, - STATE(8738), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(2978), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(12983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3097), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -658821,130 +660444,173 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [243168] = 26, + [245742] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 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(5611), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [245789] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6365), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12962), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243259] = 27, + [245880] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, + ACTIONS(4197), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(4199), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(4201), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(4207), 1, + sym_auto, + ACTIONS(4209), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(11079), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(12755), 1, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(12750), 1, anon_sym_LPAREN2, - ACTIONS(12787), 1, + ACTIONS(12985), 1, anon_sym_enum, - ACTIONS(12789), 1, + ACTIONS(12987), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3126), 1, + STATE(2367), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(2728), 1, sym_template_type, - STATE(3747), 1, + STATE(2818), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(6544), 1, + STATE(3096), 1, + sym_decltype_auto, + STATE(4979), 1, sym_type_specifier, - STATE(7447), 1, + STATE(7401), 1, sym_argument_list, - STATE(8738), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(2978), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(12983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3097), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -658952,329 +660618,181 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [243352] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - STATE(4015), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7357), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(6981), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7359), 26, - 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_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_GT2, - anon_sym_requires, - [243407] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11912), 1, - anon_sym_STAR, - ACTIONS(11914), 1, - anon_sym_AMP_AMP, - ACTIONS(11916), 1, - anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(3694), 1, - sym__type_declarator, - STATE(11037), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [243480] = 26, + [245973] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12964), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12989), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243571] = 7, - ACTIONS(3), 1, - sym_comment, - STATE(7511), 1, - sym_alignas_qualifier, - ACTIONS(12969), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6889), 9, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - ACTIONS(6891), 10, - 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(12966), 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, - [243624] = 26, + [246064] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12586), 1, + anon_sym_QMARK, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12972), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(12991), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243715] = 16, + [246155] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11872), 1, - anon_sym_STAR, + ACTIONS(11862), 1, + sym_primitive_type, ACTIONS(11874), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(11876), 1, + anon_sym_AMP_AMP, + ACTIONS(11878), 1, anon_sym_AMP, - STATE(5227), 1, - sym_parameter_list, - STATE(6707), 1, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8957), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, + STATE(3643), 1, + sym__type_declarator, + STATE(11034), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6945), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7391), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, @@ -659286,575 +660804,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [243786] = 12, + [246228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - ACTIONS(12978), 1, - anon_sym_LBRACE, - STATE(7570), 1, - sym_field_declaration_list, - STATE(7636), 1, - sym_attribute_specifier, - STATE(9430), 1, - sym_virtual_specifier, - STATE(10623), 1, - sym_base_class_clause, - ACTIONS(7235), 2, + ACTIONS(10556), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_const, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(7237), 25, + 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(10558), 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_SEMI, - anon_sym___extension__, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + 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, - anon_sym_try, - anon_sym_requires, - [243849] = 26, + [246273] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6124), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12980), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [243940] = 26, + [246364] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12982), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(12993), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244031] = 4, + [246455] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 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(5638), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [244078] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6276), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(12995), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244169] = 26, + [246546] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12586), 1, + anon_sym_QMARK, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12592), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(12984), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12997), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244260] = 17, + [246637] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8430), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [244333] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8406), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [244406] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4399), 1, - anon_sym_class, - ACTIONS(4401), 1, - anon_sym_struct, - ACTIONS(4403), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11057), 1, - sym_identifier, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12988), 1, - anon_sym_enum, - ACTIONS(12990), 1, - anon_sym_typename, - STATE(3770), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(6542), 1, - sym_type_specifier, - STATE(7486), 1, - sym_argument_list, - STATE(8676), 1, - sym__scope_resolution, - STATE(4373), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12986), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4430), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [244499] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, ACTIONS(11898), 1, - anon_sym_AMP_AMP, + anon_sym_STAR, ACTIONS(11900), 1, + anon_sym_AMP_AMP, + ACTIONS(11902), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11906), 1, sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(8404), 1, + STATE(8260), 1, sym__type_declarator, - STATE(11156), 1, + STATE(8546), 1, + sym_pointer_type_declarator, + STATE(11001), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, + ACTIONS(11904), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(8542), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -659874,682 +661162,571 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [244572] = 26, + [246710] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6130), 1, + ACTIONS(6194), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244663] = 26, + [246801] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12992), 1, - anon_sym_RPAREN, - STATE(3874), 1, + ACTIONS(12999), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244754] = 26, + [246892] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6095), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13001), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244845] = 26, + [246983] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6097), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13003), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [244936] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, - sym_identifier, - ACTIONS(11931), 1, - anon_sym_LPAREN2, - ACTIONS(11933), 1, - anon_sym_STAR, - ACTIONS(11935), 1, - anon_sym_AMP_AMP, - ACTIONS(11937), 1, - anon_sym_AMP, - ACTIONS(11941), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4872), 1, - sym__type_declarator, - STATE(5594), 1, - sym_pointer_type_declarator, - STATE(11053), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5593), 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, - [245009] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4399), 1, - anon_sym_class, - ACTIONS(4401), 1, - anon_sym_struct, - ACTIONS(4403), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11057), 1, - sym_identifier, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(12988), 1, - anon_sym_enum, - ACTIONS(12990), 1, - anon_sym_typename, - STATE(3770), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, - sym_decltype_auto, - STATE(6513), 1, - sym_type_specifier, - STATE(7498), 1, - sym_argument_list, - STATE(8676), 1, - sym__scope_resolution, - STATE(4373), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12986), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4430), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [245102] = 26, + [247074] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6109), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13005), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245193] = 26, + [247165] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12994), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13007), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245284] = 26, + [247256] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12996), 1, + ACTIONS(13009), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245375] = 16, + [247347] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11872), 1, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, + anon_sym_AMP, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + ACTIONS(13011), 1, + anon_sym_RBRACK, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, anon_sym_STAR, - ACTIONS(11874), 1, + anon_sym_PERCENT, + ACTIONS(12332), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12334), 2, anon_sym_AMP_AMP, - ACTIONS(11876), 1, - anon_sym_AMP, - STATE(5227), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8963), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(6823), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [245446] = 16, + anon_sym_and, + ACTIONS(12338), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [247438] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11894), 1, + sym_identifier, + ACTIONS(11896), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(11872), 1, + ACTIONS(11898), 1, anon_sym_STAR, - ACTIONS(11874), 1, + ACTIONS(11900), 1, anon_sym_AMP_AMP, - ACTIONS(11876), 1, + ACTIONS(11902), 1, anon_sym_AMP, - STATE(5227), 1, - sym_parameter_list, - STATE(6707), 1, + ACTIONS(11906), 1, + sym_primitive_type, + STATE(3492), 1, sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8964), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, + STATE(8334), 1, + sym__type_declarator, + STATE(8546), 1, + sym_pointer_type_declarator, + STATE(11001), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6420), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(7345), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - ACTIONS(11785), 12, + ACTIONS(11904), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8542), 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, @@ -660561,545 +661738,499 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [245517] = 26, + [247511] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(12998), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13013), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245608] = 26, + [247602] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3897), 1, + anon_sym_class, + ACTIONS(3899), 1, + anon_sym_struct, + ACTIONS(3901), 1, + anon_sym_union, + ACTIONS(3905), 1, + sym_auto, + ACTIONS(3907), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11055), 1, + sym_identifier, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(11059), 1, + sym_primitive_type, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(13017), 1, + anon_sym_enum, + ACTIONS(13019), 1, + anon_sym_typename, + STATE(2456), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(2901), 1, + sym_template_type, + STATE(3048), 1, + sym_qualified_type_identifier, + STATE(3576), 1, + sym_decltype_auto, + STATE(5507), 1, + sym_type_specifier, + STATE(7405), 1, + sym_argument_list, + STATE(8726), 1, + sym__scope_resolution, + STATE(3396), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13015), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3575), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [247695] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13000), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13021), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245699] = 26, + [247786] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13002), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13023), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245790] = 26, + [247877] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13004), 1, + ACTIONS(13025), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245881] = 26, + [247968] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13006), 1, - anon_sym_COLON_RBRACK, - STATE(3874), 1, + ACTIONS(13027), 1, + anon_sym_SEMI, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [245972] = 26, + [248059] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13008), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13029), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246063] = 17, + [248150] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, - anon_sym_STAR, ACTIONS(11908), 1, - anon_sym_AMP_AMP, - ACTIONS(11910), 1, - anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4955), 1, - sym__type_declarator, - STATE(11304), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [246136] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, - anon_sym_STAR, - ACTIONS(11908), 1, - anon_sym_AMP_AMP, ACTIONS(11910), 1, - anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4975), 1, - sym__type_declarator, - STATE(11304), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [246209] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11906), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11908), 1, + ACTIONS(11914), 1, anon_sym_AMP_AMP, - ACTIONS(11910), 1, + ACTIONS(11916), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + ACTIONS(11920), 1, + sym_primitive_type, + STATE(3492), 1, sym_alignas_qualifier, - STATE(4995), 1, + STATE(4872), 1, sym__type_declarator, - STATE(11304), 1, + STATE(5546), 1, + sym_pointer_type_declarator, + STATE(11300), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, + ACTIONS(11918), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(5695), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -661119,192 +662250,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [246282] = 17, + [248223] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, - sym_identifier, - ACTIONS(11931), 1, + ACTIONS(6264), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11933), 1, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, + anon_sym_AMP, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, anon_sym_STAR, - ACTIONS(11935), 1, + anon_sym_PERCENT, + ACTIONS(12332), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12334), 2, anon_sym_AMP_AMP, - ACTIONS(11937), 1, - anon_sym_AMP, - ACTIONS(11941), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4869), 1, - sym__type_declarator, - STATE(5594), 1, - sym_pointer_type_declarator, - STATE(11053), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5593), 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, - [246355] = 26, + anon_sym_and, + ACTIONS(12338), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248314] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13010), 1, + ACTIONS(13031), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246446] = 3, + [248405] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(7085), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7090), 33, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6281), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, + anon_sym_AMP, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12332), 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(12334), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [246491] = 4, + ACTIONS(12338), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248496] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7459), 4, + STATE(7556), 1, + sym_alignas_qualifier, + ACTIONS(13036), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6878), 9, anon_sym_AMP, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7457), 32, + anon_sym___based, + anon_sym_LBRACK, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + ACTIONS(6880), 10, 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___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, + anon_sym_COLON_COLON, anon_sym_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(13033), 13, + anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661316,294 +662491,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [246538] = 5, + [248549] = 26, ACTIONS(3), 1, sym_comment, - STATE(7124), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7223), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13012), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7225), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6192), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, + anon_sym_AMP, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12332), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12334), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [246587] = 5, + anon_sym_and, + ACTIONS(12338), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248640] = 26, ACTIONS(3), 1, sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7675), 3, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13014), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7677), 29, - anon_sym_COMMA, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13039), 1, anon_sym_RPAREN, - anon_sym_LPAREN2, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [246636] = 17, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [248731] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11943), 1, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4143), 1, + anon_sym_class, + ACTIONS(4145), 1, + anon_sym_struct, + ACTIONS(4147), 1, + anon_sym_union, + ACTIONS(4151), 1, + sym_auto, + ACTIONS(4153), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10915), 1, sym_identifier, - ACTIONS(11945), 1, - anon_sym_LPAREN2, - ACTIONS(11947), 1, - anon_sym_STAR, - ACTIONS(11949), 1, - anon_sym_AMP_AMP, - ACTIONS(11951), 1, - anon_sym_AMP, - ACTIONS(11955), 1, + ACTIONS(10917), 1, + anon_sym_COLON_COLON, + ACTIONS(10919), 1, sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4850), 1, - sym__type_declarator, - STATE(5644), 1, - sym_pointer_type_declarator, - STATE(10893), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11953), 4, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(13043), 1, + anon_sym_enum, + ACTIONS(13045), 1, + anon_sym_typename, + STATE(2327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2581), 1, + sym_splice_specifier, + STATE(2628), 1, + sym_template_type, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2685), 1, + sym_qualified_type_identifier, + STATE(3013), 1, + sym_decltype_auto, + STATE(4672), 1, + sym_type_specifier, + STATE(7420), 1, + sym_argument_list, + STATE(8744), 1, + sym__scope_resolution, + STATE(2934), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13041), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5575), 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, - [246709] = 5, + STATE(3045), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [248824] = 27, ACTIONS(3), 1, sym_comment, - STATE(6699), 1, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3897), 1, + anon_sym_class, + ACTIONS(3899), 1, + anon_sym_struct, + ACTIONS(3901), 1, + anon_sym_union, + ACTIONS(3905), 1, + sym_auto, + ACTIONS(3907), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11055), 1, + sym_identifier, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(11059), 1, + sym_primitive_type, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(13017), 1, + anon_sym_enum, + ACTIONS(13019), 1, + anon_sym_typename, + STATE(2456), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7681), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13014), 4, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(2901), 1, + sym_template_type, + STATE(3048), 1, + sym_qualified_type_identifier, + STATE(3576), 1, + sym_decltype_auto, + STATE(5290), 1, + sym_type_specifier, + STATE(7411), 1, + sym_argument_list, + STATE(8726), 1, + sym__scope_resolution, + STATE(3396), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13015), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7683), 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___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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [246758] = 26, + STATE(3575), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [248917] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6341), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13016), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [246849] = 5, + [249008] = 17, ACTIONS(3), 1, sym_comment, - STATE(7135), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7555), 3, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11862), 1, + sym_primitive_type, + ACTIONS(11874), 1, + anon_sym_STAR, + ACTIONS(11876), 1, + anon_sym_AMP_AMP, + ACTIONS(11878), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13018), 4, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(3685), 1, + sym__type_declarator, + STATE(11034), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7557), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, + STATE(3145), 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_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -661615,329 +662874,500 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [246898] = 5, + [249081] = 27, ACTIONS(3), 1, sym_comment, - STATE(7136), 1, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4143), 1, + anon_sym_class, + ACTIONS(4145), 1, + anon_sym_struct, + ACTIONS(4147), 1, + anon_sym_union, + ACTIONS(4151), 1, + sym_auto, + ACTIONS(4153), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10915), 1, + sym_identifier, + ACTIONS(10917), 1, + anon_sym_COLON_COLON, + ACTIONS(10919), 1, + sym_primitive_type, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(13043), 1, + anon_sym_enum, + ACTIONS(13045), 1, + anon_sym_typename, + STATE(2327), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7783), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13020), 4, + STATE(2581), 1, + sym_splice_specifier, + STATE(2628), 1, + sym_template_type, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2685), 1, + sym_qualified_type_identifier, + STATE(3013), 1, + sym_decltype_auto, + STATE(4631), 1, + sym_type_specifier, + STATE(7488), 1, + sym_argument_list, + STATE(8744), 1, + sym__scope_resolution, + STATE(2934), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13041), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7785), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + STATE(3045), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [249174] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3804), 1, + anon_sym_class, + ACTIONS(3806), 1, + anon_sym_struct, + ACTIONS(3808), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [246947] = 24, + ACTIONS(12836), 1, + anon_sym_enum, + ACTIONS(12838), 1, + anon_sym_typename, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(5518), 1, + sym_type_specifier, + STATE(7447), 1, + sym_argument_list, + STATE(8708), 1, + sym__scope_resolution, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12834), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [249267] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10624), 1, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + ACTIONS(13047), 1, + anon_sym_RBRACK, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - STATE(7523), 1, - sym_ref_qualifier, - STATE(7999), 1, - sym_trailing_return_type, - STATE(8373), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7723), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [247034] = 26, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12332), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12334), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12338), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249358] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13022), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13049), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247125] = 26, + [249449] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6196), 1, + ACTIONS(6354), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247216] = 3, + [249540] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 16, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(6102), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + ACTIONS(11301), 1, + anon_sym_LBRACK, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, anon_sym_SLASH, + ACTIONS(12336), 1, anon_sym_PIPE, + ACTIONS(12340), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_or, - anon_sym_and, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, anon_sym_bitor, - anon_sym_xor, + ACTIONS(12358), 1, anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DOT, - sym_literal_suffix, - ACTIONS(10564), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12334), 2, anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12338), 2, anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + anon_sym_xor, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249631] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13051), 1, + anon_sym_RPAREN, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [247261] = 17, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249722] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, ACTIONS(11894), 1, + sym_identifier, + ACTIONS(11896), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11912), 1, + ACTIONS(11898), 1, anon_sym_STAR, - ACTIONS(11914), 1, + ACTIONS(11900), 1, anon_sym_AMP_AMP, - ACTIONS(11916), 1, + ACTIONS(11902), 1, anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3497), 1, + ACTIONS(11906), 1, + sym_primitive_type, + STATE(3492), 1, sym_alignas_qualifier, - STATE(3604), 1, + STATE(8237), 1, sym__type_declarator, - STATE(11037), 1, + STATE(8546), 1, + sym_pointer_type_declarator, + STATE(11001), 1, sym_ms_based_modifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(11902), 4, + ACTIONS(11904), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(8542), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -661957,683 +663387,442 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [247334] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7693), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13014), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7695), 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___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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247383] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7697), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13014), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7699), 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___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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247432] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(7143), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7701), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13024), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7703), 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___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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247481] = 5, + [249795] = 26, ACTIONS(3), 1, sym_comment, - STATE(7145), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7707), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13026), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7709), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6131), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(11301), 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247530] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7713), 3, + ACTIONS(11305), 1, + anon_sym_DOT, + ACTIONS(12322), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12330), 1, + anon_sym_SLASH, + ACTIONS(12336), 1, + anon_sym_PIPE, + ACTIONS(12340), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13014), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7715), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, + ACTIONS(12346), 1, + anon_sym_GT_EQ, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12356), 1, + anon_sym_bitor, + ACTIONS(12358), 1, + anon_sym_bitand, + STATE(5925), 1, + sym_subscript_argument_list, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(12326), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12328), 2, anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12332), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12334), 2, anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247579] = 26, + anon_sym_and, + ACTIONS(12338), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12348), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12344), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [249886] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(6285), 1, + anon_sym_RBRACK, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12235), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12352), 1, + anon_sym_QMARK, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13028), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12360), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247670] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(7124), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7717), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13012), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7719), 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___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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247719] = 26, + [249977] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - ACTIONS(13030), 1, + ACTIONS(13053), 1, anon_sym_RBRACK, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247810] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(6699), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7723), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13014), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7725), 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___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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247859] = 26, + [250068] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13032), 1, + ACTIONS(12372), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [247950] = 5, + [250159] = 27, ACTIONS(3), 1, sym_comment, - STATE(6699), 1, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(4413), 1, + anon_sym_class, + ACTIONS(4415), 1, + anon_sym_struct, + ACTIONS(4417), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11093), 1, + sym_identifier, + ACTIONS(11095), 1, + anon_sym_COLON_COLON, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + ACTIONS(13057), 1, + anon_sym_enum, + ACTIONS(13059), 1, + anon_sym_typename, + STATE(3454), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7727), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(13014), 4, + STATE(3721), 1, + sym_splice_specifier, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(4080), 1, + sym_decltype_auto, + STATE(5518), 1, + sym_type_specifier, + STATE(7464), 1, + sym_argument_list, + STATE(8750), 1, + sym__scope_resolution, + STATE(3960), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13055), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7729), 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___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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [247999] = 26, + STATE(4081), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [250252] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13034), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13061), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248090] = 4, + [250343] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(11673), 1, - sym_literal_suffix, - ACTIONS(5645), 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(5638), 21, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11922), 1, + sym_identifier, + ACTIONS(11924), 1, anon_sym_LPAREN2, + ACTIONS(11926), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11928), 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_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, - [248137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7104), 4, + ACTIONS(11930), 1, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7106), 33, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11934), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4733), 1, + sym__type_declarator, + STATE(5349), 1, + sym_pointer_type_declarator, + STATE(10861), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11932), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5346), 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_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -662645,74 +663834,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [248182] = 27, + [250416] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(3734), 1, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(4413), 1, anon_sym_class, - ACTIONS(3736), 1, + ACTIONS(4415), 1, anon_sym_struct, - ACTIONS(3738), 1, + ACTIONS(4417), 1, anon_sym_union, - ACTIONS(3742), 1, - sym_auto, - ACTIONS(3744), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11093), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, - sym_primitive_type, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - ACTIONS(13038), 1, + ACTIONS(13057), 1, anon_sym_enum, - ACTIONS(13040), 1, + ACTIONS(13059), 1, anon_sym_typename, - STATE(2360), 1, + STATE(3454), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(3728), 1, sym_template_type, - STATE(2698), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, sym_qualified_type_identifier, - STATE(2997), 1, + STATE(4080), 1, sym_decltype_auto, - STATE(4663), 1, + STATE(5510), 1, sym_type_specifier, - STATE(7438), 1, + STATE(7479), 1, sym_argument_list, - STATE(8682), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(2942), 2, + STATE(3960), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13036), 4, + ACTIONS(13055), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -662720,1357 +663900,1270 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [248275] = 24, + [250509] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11922), 1, + sym_identifier, + ACTIONS(11924), 1, + anon_sym_LPAREN2, + ACTIONS(11926), 1, + anon_sym_STAR, + ACTIONS(11928), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(11930), 1, anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, - anon_sym_requires, - STATE(7565), 1, - sym_ref_qualifier, - STATE(8013), 1, - sym_trailing_return_type, - STATE(8410), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12415), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7702), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [248362] = 26, + ACTIONS(11934), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(4652), 1, + sym__type_declarator, + STATE(5349), 1, + sym_pointer_type_declarator, + STATE(10861), 1, + sym_ms_based_modifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(11932), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5346), 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, + [250582] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6198), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13063), 1, + anon_sym_COLON_RBRACK, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248453] = 26, + [250673] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6200), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11577), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12564), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12570), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12574), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12580), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12586), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12588), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12590), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12592), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(13065), 1, + anon_sym_COLON, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(11579), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12560), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12562), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12566), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12568), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12572), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12582), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12576), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12578), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248544] = 26, + [250764] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, + anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13067), 1, + anon_sym_SEMI, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(12243), 2, + anon_sym_CARET, + anon_sym_xor, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_not_eq, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [250855] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_requires, + ACTIONS(12980), 1, + anon_sym___asm, + STATE(7560), 1, + sym_ref_qualifier, + STATE(8019), 1, + sym_trailing_return_type, + STATE(8100), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(12312), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(12977), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7721), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [250942] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11665), 1, + sym_literal_suffix, + ACTIONS(5619), 17, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12386), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12398), 1, + anon_sym_xor, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, + anon_sym_not_eq, + anon_sym_DOT, + ACTIONS(5611), 19, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [248635] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [250989] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6204), 1, + ACTIONS(6293), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248726] = 26, + [251080] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6206), 1, + ACTIONS(6339), 1, anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(11301), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(11305), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12322), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12330), 1, anon_sym_SLASH, - ACTIONS(12376), 1, + ACTIONS(12336), 1, anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12340), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12346), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + ACTIONS(12352), 1, anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12354), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + ACTIONS(12356), 1, anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12358), 1, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, + STATE(5925), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + STATE(5927), 1, + sym_argument_list, + ACTIONS(11307), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(12326), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12328), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12332), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12334), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12338), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, + ACTIONS(12348), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + ACTIONS(12360), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12342), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12344), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248817] = 26, + [251171] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12370), 1, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(13042), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13044), 1, - anon_sym_RBRACK, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13069), 1, + anon_sym_COMMA, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248908] = 26, + [251262] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6306), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12362), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12386), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, + ACTIONS(12235), 1, anon_sym_bitand, - STATE(5875), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13071), 1, + anon_sym_RPAREN, + STATE(3849), 1, sym_argument_list, - STATE(5920), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11333), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12384), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [248999] = 26, + [251353] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13046), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13073), 1, + anon_sym_COMMA, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249090] = 26, + [251444] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13048), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13075), 1, + anon_sym_COMMA, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249181] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4064), 1, - anon_sym_class, - ACTIONS(4066), 1, - anon_sym_struct, - ACTIONS(4068), 1, - anon_sym_union, - ACTIONS(4072), 1, - sym_auto, - ACTIONS(4074), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11071), 1, - sym_identifier, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(11075), 1, - sym_primitive_type, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(13052), 1, - anon_sym_enum, - ACTIONS(13054), 1, - anon_sym_typename, - STATE(2449), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, - sym__splice_specialization_specifier, - STATE(2933), 1, - sym_template_type, - STATE(3031), 1, - sym_qualified_type_identifier, - STATE(3527), 1, - sym_decltype_auto, - STATE(5440), 1, - sym_type_specifier, - STATE(7457), 1, - sym_argument_list, - STATE(8686), 1, - sym__scope_resolution, - STATE(3447), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(13050), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3528), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [249274] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11943), 1, - sym_identifier, - ACTIONS(11945), 1, - anon_sym_LPAREN2, - ACTIONS(11947), 1, - anon_sym_STAR, - ACTIONS(11949), 1, - anon_sym_AMP_AMP, - ACTIONS(11951), 1, - anon_sym_AMP, - ACTIONS(11955), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4943), 1, - sym__type_declarator, - STATE(5644), 1, - sym_pointer_type_declarator, - STATE(10893), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11953), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5575), 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, - [249347] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4064), 1, - anon_sym_class, - ACTIONS(4066), 1, - anon_sym_struct, - ACTIONS(4068), 1, - anon_sym_union, - ACTIONS(4072), 1, - sym_auto, - ACTIONS(4074), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11071), 1, - sym_identifier, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(11075), 1, - sym_primitive_type, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(13052), 1, - anon_sym_enum, - ACTIONS(13054), 1, - anon_sym_typename, - STATE(2449), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, - sym__splice_specialization_specifier, - STATE(2933), 1, - sym_template_type, - STATE(3031), 1, - sym_qualified_type_identifier, - STATE(3527), 1, - sym_decltype_auto, - STATE(5291), 1, - sym_type_specifier, - STATE(7468), 1, - sym_argument_list, - STATE(8686), 1, - sym__scope_resolution, - STATE(3447), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(13050), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3528), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [249440] = 26, + [251535] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(11315), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12567), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12573), 1, - anon_sym_PIPE, - ACTIONS(12577), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12583), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12589), 1, - anon_sym_QMARK, - ACTIONS(12591), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12593), 1, - anon_sym_bitor, - ACTIONS(12595), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(13056), 1, - anon_sym_COLON, - STATE(3874), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + ACTIONS(13077), 1, + anon_sym_COMMA, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(11317), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12563), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12565), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12569), 2, + ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12571), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12575), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12585), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12579), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12581), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249531] = 26, + [251626] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13058), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13079), 1, + anon_sym_COMMA, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249622] = 26, + [251717] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13060), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13081), 1, + anon_sym_COMMA, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249713] = 26, + [251808] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13062), 1, - anon_sym_SEMI, - STATE(3874), 1, + ACTIONS(13083), 1, + anon_sym_COMMA, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249804] = 26, + [251899] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - ACTIONS(9642), 1, + ACTIONS(9625), 1, anon_sym_LBRACK, - ACTIONS(9646), 1, + ACTIONS(9629), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(12047), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(12221), 1, anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(12223), 1, anon_sym_AMP, - ACTIONS(12245), 1, + ACTIONS(12229), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + ACTIONS(12233), 1, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, + ACTIONS(12235), 1, anon_sym_bitand, - ACTIONS(12255), 1, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, anon_sym_QMARK, - ACTIONS(13064), 1, + ACTIONS(13085), 1, anon_sym_COLON_RBRACK, - STATE(3874), 1, + STATE(3849), 1, sym_argument_list, - STATE(3900), 1, + STATE(3850), 1, sym_subscript_argument_list, - ACTIONS(9648), 2, + ACTIONS(9631), 2, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(11722), 2, + ACTIONS(11710), 2, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + ACTIONS(12217), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + ACTIONS(12219), 2, anon_sym_STAR, anon_sym_PERCENT, ACTIONS(12231), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(12237), 2, anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12233), 2, + ACTIONS(12239), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, + ACTIONS(12243), 2, anon_sym_CARET, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, + ACTIONS(12225), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_not_eq, - ACTIONS(12243), 3, + ACTIONS(12227), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [249895] = 17, + [251990] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11878), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, sym_identifier, - ACTIONS(11880), 1, - anon_sym_LPAREN2, - ACTIONS(11882), 1, - anon_sym_STAR, - ACTIONS(11884), 1, - anon_sym_AMP_AMP, - ACTIONS(11886), 1, - anon_sym_AMP, - ACTIONS(11890), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(4704), 1, - sym__type_declarator, - STATE(5448), 1, - sym_pointer_type_declarator, - STATE(11657), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4855), 1, + sym__class_declaration_item, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, + sym_ms_declspec_modifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11888), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5436), 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, - [249968] = 26, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4455), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7408), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(9856), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9858), 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_GT_EQ, - ACTIONS(12249), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12253), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13066), 1, - anon_sym_COMMA, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [252126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9901), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9903), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250059] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6346), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, - anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, - anon_sym_AMP, - ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12398), 1, + anon_sym_xor, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + [252170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9889), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9891), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(12400), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250150] = 3, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [252214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 18, + ACTIONS(9901), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -664081,15 +665174,8 @@ static const uint16_t ts_small_parse_table[] = { 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(10564), 19, + ACTIONS(9903), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -664104,213 +665190,154 @@ 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, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [250195] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11856), 1, - sym_identifier, - ACTIONS(11858), 1, - anon_sym_LPAREN2, - ACTIONS(11860), 1, - anon_sym_STAR, - ACTIONS(11862), 1, - anon_sym_AMP_AMP, - ACTIONS(11864), 1, - anon_sym_AMP, - ACTIONS(11870), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8339), 1, - sym__type_declarator, - STATE(8576), 1, - sym_pointer_type_declarator, - STATE(11686), 1, - sym_ms_based_modifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(11868), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(8574), 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, - [250268] = 26, + [252258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6340), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + ACTIONS(9908), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12386), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12392), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9910), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12398), 1, + anon_sym_xor, anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - ACTIONS(12366), 2, + anon_sym_GT2, + [252302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9872), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12368), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9874), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12372), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250359] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12253), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13068), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [252346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9912), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9914), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, 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_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(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250450] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [252390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9703), 11, + ACTIONS(9897), 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(9705), 26, + ACTIONS(9899), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -664321,9 +665348,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_LBRACE, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -664336,218 +665365,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [250495] = 26, + [252434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(7119), 1, + anon_sym_COLON_COLON, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(3011), 1, + sym_template_argument_list, + ACTIONS(7117), 4, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13070), 1, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7122), 29, + anon_sym_COMMA, anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, 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, + anon_sym_or, anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250586] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [252484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(9872), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13072), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9874), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250677] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12253), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13074), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [252528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9912), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 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(9914), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 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(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250768] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [252572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 11, + ACTIONS(9852), 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(8559), 26, + ACTIONS(9854), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -664558,9 +665515,11 @@ 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_COLON_COLON, + anon_sym_GT_GT, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -664573,987 +665532,746 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [250813] = 26, + [252616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(9661), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13076), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9659), 25, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250904] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(12445), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [250995] = 27, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [252660] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3734), 1, - anon_sym_class, - ACTIONS(3736), 1, - anon_sym_struct, - ACTIONS(3738), 1, - anon_sym_union, - ACTIONS(3742), 1, - sym_auto, - ACTIONS(3744), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(13089), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, - sym_primitive_type, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(13038), 1, - anon_sym_enum, - ACTIONS(13040), 1, - anon_sym_typename, - STATE(2360), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4786), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7816), 1, + sym_ms_declspec_modifier, + STATE(8695), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, sym_template_type, - STATE(2698), 1, + sym_splice_type_specifier, + STATE(6256), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(2997), 1, - sym_decltype_auto, - STATE(4749), 1, - sym_type_specifier, - STATE(7425), 1, - sym_argument_list, - STATE(8682), 1, + STATE(7818), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7451), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252752] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + ACTIONS(13089), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4783), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7816), 1, + sym_ms_declspec_modifier, + STATE(8695), 1, sym__scope_resolution, - STATE(2942), 2, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6256), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7818), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7451), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [252844] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + ACTIONS(13089), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4855), 1, + sym__class_declaration_item, + STATE(5014), 1, + sym__class_declaration, + STATE(7816), 1, + sym_ms_declspec_modifier, + STATE(8695), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, sym_splice_type_specifier, - STATE(10768), 2, + STATE(6256), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7818), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7451), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13036), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3067), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [251088] = 26, + [252936] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6218), 1, - anon_sym_RBRACK, - ACTIONS(10900), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11327), 1, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(4676), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8981), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7367), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [253006] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9908), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12376), 1, anon_sym_PIPE, - ACTIONS(12380), 1, anon_sym_AMP, - ACTIONS(12386), 1, - anon_sym_GT_EQ, - ACTIONS(12392), 1, - anon_sym_QMARK, - ACTIONS(12394), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12372), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12374), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12378), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251179] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(9910), 27, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13078), 1, anon_sym_COMMA, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251270] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(13080), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251361] = 26, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [253050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(12366), 1, + anon_sym_LT, + STATE(4141), 1, + sym_template_argument_list, + ACTIONS(7379), 4, anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13082), 1, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(5637), 29, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LPAREN2, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, 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, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251452] = 26, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [253100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(4928), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13084), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(4926), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251543] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12253), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13086), 1, - anon_sym_COMMA, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [253144] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13091), 1, + anon_sym_COMMA, + ACTIONS(13093), 1, + anon_sym_RBRACK, + ACTIONS(5619), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, - [251634] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(5611), 25, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13088), 1, - anon_sym_COMMA, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251725] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - ACTIONS(11327), 1, - anon_sym_LBRACK, - ACTIONS(11331), 1, - anon_sym_DOT, - ACTIONS(12362), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12370), 1, - anon_sym_SLASH, - ACTIONS(12376), 1, - anon_sym_PIPE, - ACTIONS(12380), 1, - anon_sym_AMP, - ACTIONS(12386), 1, anon_sym_GT_EQ, - ACTIONS(12392), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, anon_sym_QMARK, - ACTIONS(12394), 1, anon_sym_LT_EQ_GT, - ACTIONS(12396), 1, - anon_sym_bitor, - ACTIONS(12398), 1, - anon_sym_bitand, - ACTIONS(13090), 1, - anon_sym_RBRACK, - STATE(5875), 1, - sym_argument_list, - STATE(5920), 1, - sym_subscript_argument_list, - ACTIONS(11333), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(12366), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12368), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12372), 2, - anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(12374), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12378), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(12388), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12400), 2, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12382), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12384), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251816] = 26, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [253192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + ACTIONS(9920), 11, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13092), 1, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_GT_GT, + anon_sym_DOT, + ACTIONS(9922), 25, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [251907] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12253), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13094), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [253236] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10044), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10992), 1, + anon_sym_COLON_COLON, + ACTIONS(13096), 1, + sym_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(4538), 1, + sym__class_declaration, + STATE(4539), 1, + sym__class_declaration_item, + STATE(7353), 1, + sym_splice_specifier, + STATE(7881), 1, + sym_ms_declspec_modifier, + STATE(8710), 1, + sym__scope_resolution, + STATE(9509), 1, + sym_virtual_specifier, + STATE(10341), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3999), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7491), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [253328] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10044), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10992), 1, + anon_sym_COLON_COLON, + ACTIONS(13096), 1, + sym_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(4539), 1, + sym__class_declaration_item, + STATE(4541), 1, + sym__class_declaration, + STATE(7353), 1, + sym_splice_specifier, + STATE(7881), 1, + sym_ms_declspec_modifier, + STATE(8710), 1, + sym__scope_resolution, + STATE(9509), 1, + sym_virtual_specifier, + STATE(10341), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3999), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7491), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [253420] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10044), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10992), 1, + anon_sym_COLON_COLON, + ACTIONS(13096), 1, + sym_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(4539), 1, + sym__class_declaration_item, + STATE(4542), 1, + sym__class_declaration, + STATE(7353), 1, + sym_splice_specifier, + STATE(7881), 1, + sym_ms_declspec_modifier, + STATE(8710), 1, + sym__scope_resolution, + STATE(9509), 1, + sym_virtual_specifier, + STATE(10341), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3999), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7882), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7491), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [253512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9838), 11, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_GT, + anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [251998] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, - anon_sym_LBRACK, - ACTIONS(9646), 1, + anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(12011), 1, + ACTIONS(9840), 25, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - ACTIONS(13096), 1, - anon_sym_SEMI, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [252089] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - ACTIONS(9642), 1, + anon_sym_LT_LT, anon_sym_LBRACK, - ACTIONS(9646), 1, - anon_sym_DOT, - ACTIONS(12011), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, - anon_sym_SLASH, - ACTIONS(12235), 1, - anon_sym_PIPE, - ACTIONS(12239), 1, - anon_sym_AMP, - ACTIONS(12245), 1, - anon_sym_GT_EQ, - ACTIONS(12249), 1, - anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, - anon_sym_bitor, - ACTIONS(12253), 1, - anon_sym_bitand, - ACTIONS(12255), 1, anon_sym_QMARK, - ACTIONS(13098), 1, - anon_sym_RPAREN, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(12227), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(12231), 2, - anon_sym_PIPE_PIPE, + anon_sym_LT_EQ_GT, anon_sym_or, - ACTIONS(12233), 2, - anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(12237), 2, - anon_sym_CARET, + anon_sym_bitor, anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_bitand, anon_sym_not_eq, - ACTIONS(12243), 3, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - [252180] = 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [253556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 11, + ACTIONS(9860), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -665565,7 +666283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9878), 25, + ACTIONS(9862), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -665591,215 +666309,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [252224] = 27, + [253600] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + STATE(8004), 1, + sym_trailing_return_type, + STATE(8060), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7657), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [253680] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(8297), 1, + ACTIONS(11561), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13098), 1, sym_identifier, - STATE(2605), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(5942), 1, sym_field_declaration_list, - STATE(3214), 1, + STATE(6058), 1, sym__class_declaration, - STATE(3227), 1, + STATE(6060), 1, sym__class_declaration_item, - STATE(7806), 1, + STATE(7893), 1, sym_ms_declspec_modifier, - STATE(8702), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(9655), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(10505), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2475), 2, + STATE(5432), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(7807), 2, + STATE(7899), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7472), 3, + STATE(7497), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252316] = 27, + [253772] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(8297), 1, + ACTIONS(11561), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13098), 1, sym_identifier, - STATE(2605), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(5942), 1, sym_field_declaration_list, - STATE(3227), 1, + STATE(6060), 1, sym__class_declaration_item, - STATE(3231), 1, + STATE(6063), 1, sym__class_declaration, - STATE(7806), 1, + STATE(7893), 1, sym_ms_declspec_modifier, - STATE(8702), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(9655), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(10505), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2475), 2, + STATE(5432), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(7807), 2, + STATE(7899), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7472), 3, + STATE(7497), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252408] = 27, + [253864] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(8297), 1, + ACTIONS(11561), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13098), 1, sym_identifier, - STATE(2605), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(5942), 1, sym_field_declaration_list, - STATE(3227), 1, + STATE(6060), 1, sym__class_declaration_item, - STATE(3233), 1, + STATE(6064), 1, sym__class_declaration, - STATE(7806), 1, + STATE(7893), 1, sym_ms_declspec_modifier, - STATE(8702), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(9655), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(10505), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2475), 2, + STATE(5432), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(7807), 2, + STATE(7899), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7472), 3, + STATE(7497), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252500] = 3, + [253956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9764), 9, + ACTIONS(9893), 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(9766), 27, + ACTIONS(9895), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -665810,11 +666589,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_LT, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + anon_sym_GT2, + [254000] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5760), 1, + anon_sym_SEMI, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9154), 1, + anon_sym_LPAREN2, + ACTIONS(9160), 1, + anon_sym_LBRACK, + ACTIONS(5619), 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(5611), 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_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -665827,339 +666649,308 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [252544] = 27, + [254052] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(13102), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3091), 1, - sym__class_declaration, - STATE(3144), 1, - sym__class_declaration_item, - STATE(7481), 1, - sym_splice_specifier, - STATE(7709), 1, - sym_field_declaration_list, - STATE(7823), 1, - sym_ms_declspec_modifier, - STATE(8691), 1, - sym__scope_resolution, - STATE(9483), 1, - sym_virtual_specifier, - STATE(10463), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(10837), 1, + anon_sym_requires, + STATE(7594), 1, + sym_ref_qualifier, + STATE(8568), 1, + sym__function_attributes_end, + STATE(8579), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7348), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7826), 2, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7480), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [252636] = 27, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7731), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [254138] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4391), 1, sym_field_declaration_list, - STATE(4057), 1, + STATE(4538), 1, sym__class_declaration, - STATE(4060), 1, + STATE(4539), 1, sym__class_declaration_item, - STATE(7865), 1, + STATE(7851), 1, sym_ms_declspec_modifier, - STATE(8707), 1, + STATE(8722), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3540), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(7871), 2, + STATE(7801), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7466), 3, + STATE(7435), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252728] = 27, + [254230] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4391), 1, sym_field_declaration_list, - STATE(4060), 1, + STATE(4539), 1, sym__class_declaration_item, - STATE(4106), 1, + STATE(4541), 1, sym__class_declaration, - STATE(7865), 1, + STATE(7851), 1, sym_ms_declspec_modifier, - STATE(8707), 1, + STATE(8722), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3540), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(7871), 2, + STATE(7801), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7466), 3, + STATE(7435), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252820] = 27, + [254322] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4391), 1, sym_field_declaration_list, - STATE(4060), 1, + STATE(4539), 1, sym__class_declaration_item, - STATE(4107), 1, + STATE(4542), 1, sym__class_declaration, - STATE(7865), 1, + STATE(7851), 1, sym_ms_declspec_modifier, - STATE(8707), 1, + STATE(8722), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3540), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(7871), 2, + STATE(7801), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7466), 3, + STATE(7435), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [252912] = 27, + [254414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, - sym__class_declaration, - STATE(7828), 1, - sym_ms_declspec_modifier, - STATE(8716), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [253004] = 5, + ACTIONS(9738), 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(9740), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [254458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, - anon_sym_SEMI, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 15, + ACTIONS(9742), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666168,15 +666959,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_LT, + anon_sym_DOT, + ACTIONS(9744), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [254502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9838), 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(5638), 19, + ACTIONS(9840), 27, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -666189,16 +667016,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, 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, - [253052] = 3, + [254546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 9, + ACTIONS(9860), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666208,7 +667042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9886), 27, + ACTIONS(9862), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666236,10 +667070,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [253096] = 3, + [254590] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, + anon_sym_LBRACK, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(4676), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8980), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2450), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7371), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [254660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9938), 11, + ACTIONS(9734), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666251,7 +667139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9940), 25, + ACTIONS(9736), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666277,10 +667165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [253140] = 3, + [254704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 11, + ACTIONS(9738), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666292,7 +667180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9742), 25, + ACTIONS(9740), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666318,20 +667206,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [253184] = 3, + [254748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9923), 9, + ACTIONS(9742), 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(9925), 27, + ACTIONS(9744), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666342,11 +667232,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -666359,90 +667246,286 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [253228] = 21, + anon_sym_GT2, + [254792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(9868), 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(9870), 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, - ACTIONS(10367), 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, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(13108), 1, - anon_sym___attribute__, - ACTIONS(13111), 1, - anon_sym___attribute, - ACTIONS(13114), 1, + anon_sym_GT2, + [254836] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - STATE(8057), 1, - sym_trailing_return_type, - STATE(8070), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(8522), 1, + anon_sym_LBRACE, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, + sym_identifier, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(3014), 1, + sym_field_declaration_list, + STATE(3498), 1, + sym__class_declaration_item, + STATE(3574), 1, + sym__class_declaration, + STATE(7827), 1, + sym_ms_declspec_modifier, + STATE(8726), 1, + sym__scope_resolution, + STATE(9591), 1, + sym_virtual_specifier, + STATE(10213), 1, + sym_base_class_clause, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2621), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2937), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7832), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7664), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, + STATE(7441), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [254928] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(8522), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [253308] = 6, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, + sym_identifier, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(3014), 1, + sym_field_declaration_list, + STATE(3498), 1, + sym__class_declaration_item, + STATE(3500), 1, + sym__class_declaration, + STATE(7827), 1, + sym_ms_declspec_modifier, + STATE(8726), 1, + sym__scope_resolution, + STATE(9591), 1, + sym_virtual_specifier, + STATE(10213), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2621), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2937), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7832), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7441), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255020] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(8522), 1, + anon_sym_LBRACE, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(12551), 1, - anon_sym_LT, - STATE(4054), 1, - sym_template_argument_list, - ACTIONS(7371), 4, - anon_sym_AMP, + ACTIONS(13102), 1, + sym_identifier, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(3014), 1, + sym_field_declaration_list, + STATE(3498), 1, + sym__class_declaration_item, + STATE(3527), 1, + sym__class_declaration, + STATE(7827), 1, + sym_ms_declspec_modifier, + STATE(8726), 1, + sym__scope_resolution, + STATE(9591), 1, + sym_virtual_specifier, + STATE(10213), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(5657), 29, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2621), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2937), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7832), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7441), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255112] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, anon_sym_LPAREN2, + ACTIONS(6457), 1, anon_sym_STAR, - anon_sym_PIPE_PIPE, + ACTIONS(6459), 1, anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, anon_sym_LBRACK, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(4676), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8986), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2450), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7345), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8134), 12, + anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -666454,18 +667537,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, + [255182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9893), 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(9895), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT_EQ_GT, anon_sym_or, anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [253358] = 3, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [255226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9772), 9, + ACTIONS(9661), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666475,7 +667591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9774), 27, + ACTIONS(9659), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666503,205 +667619,760 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [253402] = 27, + [255270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9750), 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(9752), 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, + [255314] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4786), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, + sym_ms_declspec_modifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4433), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7408), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255406] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9213), 1, + anon_sym_LBRACE, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, + sym_identifier, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(4083), 1, + sym__class_declaration, + STATE(4084), 1, + sym__class_declaration_item, + STATE(4222), 1, + sym_splice_specifier, + STATE(4374), 1, + sym_field_declaration_list, + STATE(7857), 1, + sym_ms_declspec_modifier, + STATE(8737), 1, + sym__scope_resolution, + STATE(9644), 1, + sym_virtual_specifier, + STATE(10557), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4035), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7864), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7417), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255498] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9213), 1, + anon_sym_LBRACE, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, + sym_identifier, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(4084), 1, + sym__class_declaration_item, + STATE(4144), 1, + sym__class_declaration, + STATE(4222), 1, + sym_splice_specifier, + STATE(4374), 1, + sym_field_declaration_list, + STATE(7857), 1, + sym_ms_declspec_modifier, + STATE(8737), 1, + sym__scope_resolution, + STATE(9644), 1, + sym_virtual_specifier, + STATE(10557), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4035), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7864), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7417), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255590] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9213), 1, + anon_sym_LBRACE, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, + sym_identifier, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(4084), 1, + sym__class_declaration_item, + STATE(4085), 1, + sym__class_declaration, + STATE(4222), 1, + sym_splice_specifier, + STATE(4374), 1, + sym_field_declaration_list, + STATE(7857), 1, + sym_ms_declspec_modifier, + STATE(8737), 1, + sym__scope_resolution, + STATE(9644), 1, + sym_virtual_specifier, + STATE(10557), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4035), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7864), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7417), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255682] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + ACTIONS(13112), 1, + anon_sym_LBRACK_LBRACK, + STATE(8050), 1, + sym_trailing_return_type, + STATE(8061), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7661), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7970), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [255762] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4783), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, + sym_ms_declspec_modifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4433), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7408), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255854] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4855), 1, + sym__class_declaration_item, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, + sym_ms_declspec_modifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4433), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7408), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [255946] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9311), 1, + anon_sym_LBRACE, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, + sym_identifier, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3202), 1, + sym__class_declaration, + STATE(3203), 1, + sym__class_declaration_item, + STATE(3890), 1, + sym_field_declaration_list, + STATE(7198), 1, + sym_splice_specifier, + STATE(7802), 1, + sym_ms_declspec_modifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(9478), 1, + sym_virtual_specifier, + STATE(10520), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3043), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7805), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7489), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [256038] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8233), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, ACTIONS(13117), 1, sym_identifier, - STATE(3808), 1, + STATE(2631), 1, + sym_splice_specifier, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(2786), 1, sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(3122), 1, sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(7818), 1, + STATE(3228), 1, + sym__class_declaration, + STATE(7845), 1, sym_ms_declspec_modifier, - STATE(8756), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9425), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10409), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(2439), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7819), 2, + STATE(2688), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7799), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7409), 3, + STATE(7462), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253494] = 27, + [256130] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8233), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, ACTIONS(13117), 1, sym_identifier, - STATE(3808), 1, + STATE(2631), 1, + sym_splice_specifier, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(2786), 1, sym_field_declaration_list, - STATE(4884), 1, + STATE(3122), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(3243), 1, sym__class_declaration, - STATE(5157), 1, - sym_splice_specifier, - STATE(7818), 1, + STATE(7845), 1, sym_ms_declspec_modifier, - STATE(8756), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9425), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10409), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(2439), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7819), 2, + STATE(2688), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7799), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7409), 3, + STATE(7462), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253586] = 27, + [256222] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8233), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, ACTIONS(13117), 1, sym_identifier, - STATE(3808), 1, + STATE(2631), 1, + sym_splice_specifier, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(2786), 1, sym_field_declaration_list, - STATE(4793), 1, + STATE(3094), 1, sym__class_declaration, - STATE(4884), 1, + STATE(3122), 1, sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(7818), 1, + STATE(7845), 1, sym_ms_declspec_modifier, - STATE(8756), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9425), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10409), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(2439), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7819), 2, + STATE(2688), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7799), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7409), 3, + STATE(7462), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253678] = 3, + [256314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 9, + ACTIONS(9802), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666711,7 +668382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(5638), 27, + ACTIONS(9804), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666739,10 +668410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [253722] = 3, + [256358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 9, + ACTIONS(9734), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -666752,7 +668423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9932), 27, + ACTIONS(9736), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -666780,483 +668451,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [253766] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5906), 1, - anon_sym_SEMI, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 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(5638), 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, - [253814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9942), 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(9944), 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, - [253858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9946), 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(9948), 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, - [253902] = 27, + [256402] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, ACTIONS(13119), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2172), 1, - sym_field_declaration_list, - STATE(2227), 1, + STATE(4786), 1, sym__class_declaration, - STATE(2228), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7891), 1, + STATE(4989), 1, + sym_splice_specifier, + STATE(7861), 1, sym_ms_declspec_modifier, - STATE(8763), 1, + STATE(8748), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(9299), 1, + sym_field_declaration_list, + STATE(9584), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(10526), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2075), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2147), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7892), 2, + STATE(7862), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7492), 3, + STATE(8831), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7477), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [253994] = 27, + [256494] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, ACTIONS(13119), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2172), 1, - sym_field_declaration_list, - STATE(2228), 1, - sym__class_declaration_item, - STATE(2230), 1, + STATE(4783), 1, sym__class_declaration, - STATE(7891), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(4989), 1, + sym_splice_specifier, + STATE(7861), 1, sym_ms_declspec_modifier, - STATE(8763), 1, + STATE(8748), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(9299), 1, + sym_field_declaration_list, + STATE(9584), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(10526), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2075), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2147), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7892), 2, + STATE(7862), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7492), 3, + STATE(8831), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7477), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254086] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(4706), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8998), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7388), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7391), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [254156] = 27, + [256586] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, ACTIONS(13119), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2172), 1, - sym_field_declaration_list, - STATE(2228), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(2232), 1, + STATE(4989), 1, + sym_splice_specifier, + STATE(5014), 1, sym__class_declaration, - STATE(7891), 1, + STATE(7861), 1, sym_ms_declspec_modifier, - STATE(8763), 1, + STATE(8748), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(9299), 1, + sym_field_declaration_list, + STATE(9584), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(10526), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2075), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2147), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7892), 2, + STATE(7862), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7492), 3, + STATE(8831), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7477), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254248] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(12065), 1, - anon_sym_decltype, - ACTIONS(13121), 1, - sym_auto, - STATE(7607), 1, - sym_decltype_auto, - ACTIONS(7223), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7225), 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___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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [254300] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(4706), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8984), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2488), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7355), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [254370] = 3, + [256678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 9, + ACTIONS(9806), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -667266,7 +668659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9948), 27, + ACTIONS(9808), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -667294,1127 +668687,1336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [254414] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9768), 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(9770), 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, - [254458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9796), 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(9798), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, - 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, - [254502] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9748), 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(9750), 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, - [254546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9764), 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(9766), 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, - [254590] = 27, + [256722] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + ACTIONS(12844), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13123), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(6587), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(7039), 1, + sym__splice_specialization_specifier, + STATE(7583), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(7625), 1, sym__class_declaration, - STATE(4884), 1, + STATE(7647), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7884), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9594), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10562), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(6994), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7040), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7885), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7485), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254682] = 27, + [256814] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9965), 1, - anon_sym_LBRACE, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11027), 1, anon_sym_COLON_COLON, + ACTIONS(12844), 1, + anon_sym_LBRACE, ACTIONS(13123), 1, sym_identifier, - STATE(4305), 1, + STATE(6587), 1, + sym_splice_specifier, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(7583), 1, sym_field_declaration_list, - STATE(4446), 1, + STATE(7632), 1, sym__class_declaration, - STATE(4448), 1, + STATE(7647), 1, sym__class_declaration_item, - STATE(7326), 1, - sym_splice_specifier, - STATE(7837), 1, + STATE(7884), 1, sym_ms_declspec_modifier, STATE(8745), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9594), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10562), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3966), 2, + STATE(6994), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(7040), 2, sym_template_type, sym_splice_type_specifier, - STATE(7838), 2, + STATE(7885), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7482), 3, + STATE(7485), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254774] = 27, + [256906] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11427), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + ACTIONS(12844), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13123), 1, sym_identifier, - STATE(4802), 1, + STATE(6587), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(5954), 1, + STATE(7583), 1, sym_field_declaration_list, - STATE(6064), 1, + STATE(7624), 1, sym__class_declaration, - STATE(6065), 1, + STATE(7647), 1, sym__class_declaration_item, - STATE(7867), 1, + STATE(7884), 1, sym_ms_declspec_modifier, - STATE(8757), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(9594), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(10562), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5279), 2, + STATE(6994), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5423), 2, + STATE(7040), 2, sym_template_type, sym_splice_type_specifier, - STATE(7868), 2, + STATE(7885), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7455), 3, + STATE(7485), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254866] = 27, + [256998] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9311), 1, + anon_sym_LBRACE, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, + sym_identifier, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3203), 1, + sym__class_declaration_item, + STATE(3205), 1, + sym__class_declaration, + STATE(3890), 1, + sym_field_declaration_list, + STATE(7198), 1, + sym_splice_specifier, + STATE(7802), 1, + sym_ms_declspec_modifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(9478), 1, + sym_virtual_specifier, + STATE(10520), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3043), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7805), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7489), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [257090] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11427), 1, + ACTIONS(8342), 1, anon_sym_LBRACE, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, ACTIONS(13125), 1, sym_identifier, - STATE(4802), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(5954), 1, + STATE(2895), 1, sym_field_declaration_list, - STATE(6065), 1, - sym__class_declaration_item, - STATE(6084), 1, + STATE(3129), 1, sym__class_declaration, - STATE(7867), 1, + STATE(3133), 1, + sym__class_declaration_item, + STATE(7804), 1, sym_ms_declspec_modifier, - STATE(8757), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(9416), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(10314), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5279), 2, + STATE(2493), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5423), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(7868), 2, + STATE(7806), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7455), 3, + STATE(7414), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [254958] = 27, + [257182] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9965), 1, + ACTIONS(8342), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(4305), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2895), 1, sym_field_declaration_list, - STATE(4448), 1, + STATE(3133), 1, sym__class_declaration_item, - STATE(4451), 1, + STATE(3136), 1, sym__class_declaration, - STATE(7326), 1, - sym_splice_specifier, - STATE(7837), 1, + STATE(7804), 1, sym_ms_declspec_modifier, - STATE(8745), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9416), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10314), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3966), 2, + STATE(2493), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(7838), 2, + STATE(7806), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7482), 3, + STATE(7414), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255050] = 27, + [257274] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(8342), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13125), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(2895), 1, sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(3133), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(3137), 1, + sym__class_declaration, + STATE(7804), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9416), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10314), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4495), 2, + STATE(2493), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(2675), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7806), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7414), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255142] = 27, + [257366] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, sym_identifier, - STATE(3808), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4884), 1, + STATE(3203), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(3206), 1, sym__class_declaration, - STATE(7828), 1, + STATE(3890), 1, + sym_field_declaration_list, + STATE(7198), 1, + sym_splice_specifier, + STATE(7802), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8754), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4495), 2, + STATE(3606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7805), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7489), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255234] = 27, + [257458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9810), 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(9812), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [257502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9814), 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(9816), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [257546] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11095), 1, + anon_sym_COLON_COLON, + ACTIONS(13127), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3950), 1, sym_field_declaration_list, - STATE(4793), 1, + STATE(4083), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4084), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7854), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9626), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10569), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3526), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(4495), 2, + STATE(7847), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7471), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [257638] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9213), 1, + anon_sym_LBRACE, + ACTIONS(11095), 1, + anon_sym_COLON_COLON, + ACTIONS(13127), 1, + sym_identifier, + STATE(3721), 1, + sym_splice_specifier, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3950), 1, + sym_field_declaration_list, + STATE(4084), 1, + sym__class_declaration_item, + STATE(4144), 1, + sym__class_declaration, + STATE(7854), 1, + sym_ms_declspec_modifier, + STATE(8750), 1, + sym__scope_resolution, + STATE(9626), 1, + sym_virtual_specifier, + STATE(10569), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3526), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7847), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7471), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255326] = 27, + [257730] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11427), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(11095), 1, + anon_sym_COLON_COLON, + ACTIONS(13127), 1, sym_identifier, - STATE(4802), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(5954), 1, + STATE(3950), 1, sym_field_declaration_list, - STATE(6033), 1, - sym__class_declaration, - STATE(6065), 1, + STATE(4084), 1, sym__class_declaration_item, - STATE(7867), 1, + STATE(4085), 1, + sym__class_declaration, + STATE(7854), 1, sym_ms_declspec_modifier, - STATE(8757), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(9626), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(10569), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(5279), 2, + STATE(3526), 2, sym__class_name, sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(7868), 2, + STATE(7847), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7455), 3, + STATE(7471), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255418] = 25, + [257822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4928), 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(4926), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [257866] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(10613), 1, + sym_literal_suffix, + ACTIONS(5619), 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(5611), 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, + [257914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9230), 1, + ACTIONS(9920), 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(9922), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(9642), 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_LBRACK, - ACTIONS(9646), 1, + 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, + [257958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9750), 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(12011), 1, + ACTIONS(9752), 27, anon_sym_DOT_DOT_DOT, - ACTIONS(12229), 1, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_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, + [258002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9830), 9, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_SLASH, - ACTIONS(12235), 1, anon_sym_PIPE, - ACTIONS(12239), 1, anon_sym_AMP, - ACTIONS(12245), 1, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9832), 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_GT_EQ, - ACTIONS(12249), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_LT_EQ_GT, - ACTIONS(12251), 1, + anon_sym_or, + anon_sym_and, anon_sym_bitor, - ACTIONS(12253), 1, + anon_sym_xor, anon_sym_bitand, - ACTIONS(12255), 1, - anon_sym_QMARK, - STATE(3874), 1, - sym_argument_list, - STATE(3900), 1, - sym_subscript_argument_list, - ACTIONS(9648), 2, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - ACTIONS(11722), 2, + anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, - ACTIONS(12225), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [258046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9834), 9, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(12227), 2, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_DOT, + ACTIONS(9836), 27, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(12231), 2, anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(12233), 2, anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(12237), 2, anon_sym_CARET, - anon_sym_xor, - ACTIONS(12247), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(12241), 3, 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_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(12243), 3, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [258090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9844), 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, - [255506] = 27, + anon_sym_DOT, + ACTIONS(9846), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [258134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9965), 1, - anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, - sym_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, - sym_field_declaration_list, - STATE(4448), 1, - sym__class_declaration_item, - STATE(4456), 1, - sym__class_declaration, - STATE(7326), 1, - sym_splice_specifier, - STATE(7837), 1, - sym_ms_declspec_modifier, - STATE(8745), 1, - sym__scope_resolution, - STATE(9426), 1, - sym_virtual_specifier, - STATE(10236), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, + ACTIONS(12057), 1, + anon_sym_decltype, + ACTIONS(13129), 1, + sym_auto, + STATE(7612), 1, + sym_decltype_auto, + ACTIONS(7246), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(8244), 2, + anon_sym_const, + ACTIONS(7248), 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___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, - STATE(3966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7838), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7482), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [255598] = 27, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [258186] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13131), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4786), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(5032), 1, + sym_splice_specifier, + STATE(7812), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4503), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7817), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7407), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255690] = 27, + [258278] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13131), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4783), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(5032), 1, + sym_splice_specifier, + STATE(7812), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4503), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7817), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7407), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255782] = 27, + [258370] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13131), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(5014), 1, + sym__class_declaration, + STATE(5032), 1, + sym_splice_specifier, + STATE(7812), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4503), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7817), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7407), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [255874] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5906), 1, - anon_sym_SEMI, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, - anon_sym_LPAREN2, - ACTIONS(9239), 1, - anon_sym_LBRACK, - ACTIONS(5645), 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(5638), 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, - [255926] = 3, + [258462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9736), 11, + ACTIONS(9767), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668426,7 +670028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9738), 25, + ACTIONS(9769), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668452,64 +670054,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [255970] = 16, + [258506] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(4706), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8987), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2488), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7345), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5760), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [256040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9938), 9, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668519,9 +670071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9940), 27, + ACTIONS(5611), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -668533,7 +670084,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -668547,20 +670097,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256084] = 3, + [258554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9919), 9, + ACTIONS(9775), 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(9921), 27, + ACTIONS(9777), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668571,11 +670123,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -668588,10 +670137,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256128] = 3, + anon_sym_GT2, + [258598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 11, + ACTIONS(9885), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668603,7 +670153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9814), 25, + ACTIONS(9887), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668629,10 +670179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [256172] = 3, + [258642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 11, + ACTIONS(9798), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668644,7 +670194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9806), 25, + ACTIONS(9800), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668670,20 +670220,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [256216] = 3, + [258686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 9, + ACTIONS(9802), 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(9597), 27, + ACTIONS(9804), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668694,11 +670246,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -668711,20 +670260,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256260] = 3, + anon_sym_GT2, + [258730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 9, + ACTIONS(9806), 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(3488), 27, + ACTIONS(9808), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668735,10 +670287,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_RBRACK_RBRACK, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, @@ -668752,14 +670301,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256304] = 5, + anon_sym_GT2, + [258774] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5906), 1, + ACTIONS(5760), 1, anon_sym_SEMI, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 9, + ACTIONS(10613), 1, + sym_literal_suffix, + ACTIONS(5619), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668768,8 +670318,14 @@ 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(5638), 25, + ACTIONS(5611), 19, anon_sym_DOT_DOT_DOT, anon_sym_LPAREN2, anon_sym_STAR, @@ -668785,20 +670341,14 @@ 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, - anon_sym_not_eq, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [256352] = 3, + [258822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9822), 11, + ACTIONS(9810), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668810,7 +670360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9824), 25, + ACTIONS(9812), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668836,129 +670386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [256396] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(4706), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9003), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2488), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6823), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [256466] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3190), 1, - sym__class_declaration, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(7859), 1, - sym_ms_declspec_modifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(9550), 1, - sym_virtual_specifier, - STATE(10518), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7860), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7475), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [256558] = 3, + [258866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9599), 11, + ACTIONS(9814), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -668970,7 +670401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9597), 25, + ACTIONS(9816), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -668996,547 +670427,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [256602] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(2992), 1, - sym_template_argument_list, - ACTIONS(7085), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7090), 29, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__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_final, - anon_sym_override, - anon_sym_requires, - [256652] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7828), 1, - sym_ms_declspec_modifier, - STATE(8716), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4473), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [256744] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, - sym__class_declaration, - STATE(7828), 1, - sym_ms_declspec_modifier, - STATE(8716), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4473), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [256836] = 27, + [258910] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, + STATE(4786), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4473), 2, + STATE(4488), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [256928] = 27, + [259002] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4783), 1, sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7828), 1, - sym_ms_declspec_modifier, - STATE(8716), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4474), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [257020] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(4951), 1, - sym__class_declaration, - STATE(7828), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4474), 2, + STATE(4488), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257112] = 27, + [259094] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7828), 1, - sym_ms_declspec_modifier, - STATE(8716), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4474), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [257204] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4930), 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(4928), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [257248] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3144), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(3155), 1, + STATE(5014), 1, sym__class_declaration, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(7859), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8711), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(4488), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7860), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7475), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257340] = 3, + [259186] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9826), 11, @@ -669577,10 +670663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [257384] = 3, + [259230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 11, + ACTIONS(9830), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -669592,165 +670678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9794), 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, - [257428] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3091), 1, - sym__class_declaration, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(7859), 1, - sym_ms_declspec_modifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(9550), 1, - sym_virtual_specifier, - STATE(10518), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7860), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7475), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [257520] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(4706), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8992), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7226), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7343), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [257590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9736), 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(9738), 27, + ACTIONS(9832), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -669761,11 +670689,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -669778,296 +670703,288 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [257634] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - ACTIONS(13129), 1, - anon_sym_COLON, - ACTIONS(13131), 1, - anon_sym_LBRACE, - STATE(7532), 1, - sym__enum_base_clause, - STATE(7584), 1, - sym_enumerator_list, - STATE(7646), 1, - sym_attribute_specifier, - ACTIONS(8000), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8002), 27, - 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, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [257692] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5796), 1, - anon_sym_SEMI, - ACTIONS(10616), 1, - sym_literal_suffix, - ACTIONS(5645), 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(5638), 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, - [257740] = 27, + [259274] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4786), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4528), 2, + STATE(4489), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257832] = 27, + [259366] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4783), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4528), 2, + STATE(4489), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [257924] = 27, + [259458] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(7262), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(13133), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2152), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(2180), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(2182), 1, + sym__class_declaration, + STATE(7823), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9605), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10264), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4528), 2, + STATE(2074), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(2153), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7824), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7454), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258016] = 3, + [259550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9834), 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(9836), 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, + [259594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9724), 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(9726), 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, + [259638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4930), 11, + ACTIONS(9844), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -670079,7 +670996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(4928), 25, + ACTIONS(9846), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -670105,10 +671022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [258060] = 3, + [259682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 11, + ACTIONS(8566), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -670120,7 +671037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9898), 25, + ACTIONS(3546), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -670146,205 +671063,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [258104] = 27, + [259726] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4786), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4533), 2, + STATE(4467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258196] = 27, + [259818] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, + STATE(4783), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4533), 2, + STATE(4467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258288] = 27, + [259910] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(4467), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [258380] = 3, + [260002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 9, + ACTIONS(9767), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -670354,7 +671271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9810), 27, + ACTIONS(9769), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -670382,140 +671299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [258424] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9965), 1, - anon_sym_LBRACE, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13133), 1, - sym_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, - sym_field_declaration_list, - STATE(4446), 1, - sym__class_declaration, - STATE(4448), 1, - sym__class_declaration_item, - STATE(7852), 1, - sym_ms_declspec_modifier, - STATE(8676), 1, - sym__scope_resolution, - STATE(9426), 1, - sym_virtual_specifier, - STATE(10236), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7853), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7450), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [258516] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9965), 1, - anon_sym_LBRACE, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13133), 1, - sym_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, - sym_field_declaration_list, - STATE(4448), 1, - sym__class_declaration_item, - STATE(4451), 1, - sym__class_declaration, - STATE(7852), 1, - sym_ms_declspec_modifier, - STATE(8676), 1, - sym__scope_resolution, - STATE(9426), 1, - sym_virtual_specifier, - STATE(10236), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7853), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7450), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [258608] = 3, + [260046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 9, + ACTIONS(9775), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -670525,7 +671312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9832), 27, + ACTIONS(9777), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -670539,8 +671326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -670553,75 +671340,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [258652] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9965), 1, - anon_sym_LBRACE, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13133), 1, - sym_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4350), 1, - sym_field_declaration_list, - STATE(4448), 1, - sym__class_declaration_item, - STATE(4456), 1, - sym__class_declaration, - STATE(7852), 1, - sym_ms_declspec_modifier, - STATE(8676), 1, - sym__scope_resolution, - STATE(9426), 1, - sym_virtual_specifier, - STATE(10236), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7853), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7450), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [258744] = 3, + [260090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9740), 9, + ACTIONS(9798), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -670631,7 +671353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9742), 27, + ACTIONS(9800), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -670659,10 +671381,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [258788] = 3, + [260134] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 9, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(6899), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9154), 1, + anon_sym_LPAREN2, + ACTIONS(9160), 1, + anon_sym_LBRACK, + ACTIONS(5619), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -670672,10 +671402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9858), 27, + ACTIONS(5611), 23, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -670686,8 +671414,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -670700,448 +671426,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [258832] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - ACTIONS(13129), 1, - anon_sym_COLON, - ACTIONS(13131), 1, - anon_sym_LBRACE, - STATE(7534), 1, - sym__enum_base_clause, - STATE(7572), 1, - sym_enumerator_list, - STATE(7622), 1, - sym_attribute_specifier, - ACTIONS(8006), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8008), 27, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [258890] = 27, + [260186] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - STATE(3808), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4880), 1, + STATE(3202), 1, sym__class_declaration, - STATE(4884), 1, + STATE(3203), 1, sym__class_declaration_item, - STATE(7828), 1, - sym_ms_declspec_modifier, - STATE(8716), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4415), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [258982] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(3890), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, - sym__class_declaration, - STATE(7828), 1, + STATE(7870), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4415), 2, + STATE(3606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7853), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7457), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259074] = 27, + [260278] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7828), 1, - sym_ms_declspec_modifier, - STATE(8716), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4415), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [259166] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(3808), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(3203), 1, + sym__class_declaration_item, + STATE(3205), 1, + sym__class_declaration, + STATE(3770), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(3890), 1, sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7828), 1, + STATE(7870), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4418), 2, + STATE(3606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7853), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7457), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259258] = 27, + [260370] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - STATE(3808), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4884), 1, + STATE(3203), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(3206), 1, sym__class_declaration, - STATE(7828), 1, - sym_ms_declspec_modifier, - STATE(8716), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4418), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [259350] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(3890), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7828), 1, + STATE(7870), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4418), 2, + STATE(3606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7853), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7457), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259442] = 3, + [260462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 9, + ACTIONS(9826), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -671151,7 +671634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9862), 27, + ACTIONS(9828), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671179,10 +671662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [259486] = 3, + [260506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9812), 9, + ACTIONS(9724), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -671192,7 +671675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9814), 27, + ACTIONS(9726), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671220,22 +671703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [259530] = 3, + [260550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8598), 11, + ACTIONS(9763), 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(3488), 25, + ACTIONS(9765), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671246,8 +671727,11 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -671260,62 +671744,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [259574] = 3, + [260594] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 9, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PIPE, + ACTIONS(12840), 1, + anon_sym___attribute__, + ACTIONS(12842), 1, + anon_sym___attribute, + ACTIONS(13137), 1, + anon_sym_COLON, + ACTIONS(13139), 1, + anon_sym_LBRACE, + STATE(7505), 1, + sym__enum_base_clause, + STATE(7570), 1, + sym_enumerator_list, + STATE(7643), 1, + sym_attribute_specifier, + ACTIONS(8001), 2, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_DOT, - ACTIONS(9874), 27, - anon_sym_DOT_DOT_DOT, + anon_sym_const, + ACTIONS(8003), 27, 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_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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [260652] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + ACTIONS(9625), 1, + anon_sym_LBRACK, + ACTIONS(9629), 1, + anon_sym_DOT, + ACTIONS(12047), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12221), 1, + anon_sym_SLASH, + ACTIONS(12223), 1, + anon_sym_AMP, + ACTIONS(12229), 1, anon_sym_GT_EQ, + ACTIONS(12233), 1, + anon_sym_LT_EQ_GT, + ACTIONS(12235), 1, + anon_sym_bitand, + ACTIONS(12241), 1, + anon_sym_PIPE, + ACTIONS(12245), 1, + anon_sym_bitor, + ACTIONS(12269), 1, + anon_sym_QMARK, + STATE(3849), 1, + sym_argument_list, + STATE(3850), 1, + sym_subscript_argument_list, + ACTIONS(9631), 2, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + ACTIONS(11710), 2, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + ACTIONS(12217), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(12219), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(12231), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, + ACTIONS(12237), 2, + anon_sym_PIPE_PIPE, anon_sym_or, + ACTIONS(12239), 2, + anon_sym_AMP_AMP, anon_sym_and, - anon_sym_bitor, + ACTIONS(12243), 2, + anon_sym_CARET, anon_sym_xor, - anon_sym_bitand, + ACTIONS(12225), 3, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [259618] = 3, + ACTIONS(12227), 3, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_LT, + [260740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9756), 9, + ACTIONS(9856), 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(9758), 27, + ACTIONS(9858), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671326,11 +671881,8 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -671343,10 +671895,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [259662] = 3, + anon_sym_GT2, + [260784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9856), 11, + ACTIONS(5619), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -671358,7 +671911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9858), 25, + ACTIONS(5611), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -671384,484 +671937,660 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [259706] = 27, + [260828] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4786), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4435), 2, + STATE(4408), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259798] = 27, + [260920] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4783), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4435), 2, + STATE(4408), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259890] = 27, + [261012] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4435), 2, + STATE(4408), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [259982] = 27, + [261104] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4786), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4436), 2, + STATE(4410), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260074] = 27, + [261196] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4783), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4436), 2, + STATE(4410), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260166] = 27, + [261288] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4436), 2, + STATE(4410), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260258] = 27, + [261380] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(9889), 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(9891), 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, + [261424] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(5619), 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(5611), 25, + 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [261472] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12840), 1, + anon_sym___attribute__, + ACTIONS(12842), 1, + anon_sym___attribute, + ACTIONS(13137), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(13139), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7828), 1, - sym_ms_declspec_modifier, - STATE(8716), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + STATE(7513), 1, + sym__enum_base_clause, + STATE(7585), 1, + sym_enumerator_list, + STATE(7649), 1, + sym_attribute_specifier, + ACTIONS(8007), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(8009), 27, + 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, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [261530] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, + anon_sym_LBRACK, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(4676), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8994), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4501), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7831), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [260350] = 7, + STATE(2450), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6843), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [261600] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, - anon_sym_SEMI, - ACTIONS(6883), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + ACTIONS(12309), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, + ACTIONS(12315), 1, + anon_sym_requires, + STATE(8019), 1, + sym_trailing_return_type, + STATE(8064), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12312), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7652), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 9, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(9239), 1, - anon_sym_LBRACK, - ACTIONS(5645), 9, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [261680] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9852), 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(5638), 23, + ACTIONS(9854), 25, anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -671869,9 +672598,8 @@ 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, @@ -671884,1881 +672612,1196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [260402] = 27, + anon_sym_GT2, + [261724] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + ACTIONS(13112), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13144), 1, + anon_sym_requires, + STATE(8022), 1, + sym_trailing_return_type, + STATE(8065), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13141), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7653), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7970), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [261804] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4786), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4501), 2, + STATE(4425), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260494] = 27, + [261896] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, + STATE(4783), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4501), 2, + STATE(4425), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260586] = 5, + [261988] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, - anon_sym_SEMI, - ACTIONS(7227), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(5645), 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(5638), 25, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [260634] = 27, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4855), 1, + sym__class_declaration_item, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, + sym_ms_declspec_modifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4425), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7408), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [262080] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, sym_identifier, - STATE(2547), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4786), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, + sym_ms_declspec_modifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4428), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7408), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [262172] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(3045), 1, + STATE(4783), 1, sym__class_declaration, - STATE(3048), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7878), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8682), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7879), 2, + STATE(4428), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7418), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260726] = 27, + [262264] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(3048), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(3049), 1, + STATE(5014), 1, sym__class_declaration, - STATE(7878), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8682), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7879), 2, + STATE(4428), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7418), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260818] = 27, + [262356] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4786), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4449), 2, + STATE(4445), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [260910] = 27, + [262448] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4783), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4449), 2, + STATE(4445), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261002] = 27, + [262540] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4449), 2, + STATE(4445), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261094] = 27, + [262632] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(4786), 1, sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4450), 2, + STATE(4447), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261186] = 27, + [262724] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4783), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4450), 2, + STATE(4447), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261278] = 27, + [262816] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4450), 2, + STATE(4447), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261370] = 27, + [262908] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(3048), 1, - sym__class_declaration_item, - STATE(3057), 1, + STATE(4786), 1, sym__class_declaration, - STATE(7878), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8682), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7879), 2, + STATE(4454), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7418), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9868), 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(9870), 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, - [261506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9756), 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(9758), 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, - [261550] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(12551), 1, - anon_sym_LT, - STATE(4313), 1, - sym_template_argument_list, - ACTIONS(7085), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(7090), 29, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [261600] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9919), 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(9921), 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, - [261644] = 27, + [263000] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(8503), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(3530), 1, + STATE(4783), 1, sym__class_declaration, - STATE(3531), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7869), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8686), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2606), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2934), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7870), 2, + STATE(4454), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7504), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261736] = 27, + [263092] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(8503), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(3531), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(3532), 1, + STATE(5014), 1, sym__class_declaration, - STATE(7869), 1, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8686), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2606), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2934), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7870), 2, + STATE(4454), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7504), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [261828] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5796), 1, - anon_sym_SEMI, - ACTIONS(6883), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9236), 1, - anon_sym_LPAREN2, - ACTIONS(9239), 1, - anon_sym_LBRACK, - ACTIONS(5645), 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(5638), 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, - [261880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9934), 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(9936), 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, - [261924] = 27, + [263184] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(8503), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(3531), 1, - sym__class_declaration_item, - STATE(3533), 1, + STATE(4786), 1, sym__class_declaration, - STATE(7869), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8686), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2606), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2934), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7870), 2, + STATE(4455), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7504), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [262016] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - STATE(7999), 1, - sym_trailing_return_type, - STATE(8069), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7661), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [262096] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9934), 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(9936), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RBRACK_RBRACK, - 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, - [262140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9876), 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(9878), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [262184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9880), 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(9882), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [262228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9892), 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(9894), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [262272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9896), 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(9898), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [262316] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13139), 1, - anon_sym_COMMA, - ACTIONS(13141), 1, - anon_sym_RBRACK, - ACTIONS(5645), 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(5638), 25, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [262364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9942), 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(9944), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [262408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9768), 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(9770), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [262452] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9792), 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(9794), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [262496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9788), 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(9790), 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, - [262540] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9808), 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(9810), 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, - [262584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9818), 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(9820), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [262628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9830), 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(9832), 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, - [262672] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9778), 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(9780), 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, - [262716] = 11, + [263276] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(9314), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, anon_sym_LBRACE, - STATE(3117), 1, - sym_attribute_specifier, - STATE(7712), 1, + ACTIONS(13087), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(9484), 1, + STATE(4783), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, + sym_ms_declspec_modifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(9461), 1, sym_virtual_specifier, - STATE(10465), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(7237), 3, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4455), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(7408), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [263368] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7119), 1, + anon_sym_COLON_COLON, + ACTIONS(12366), 1, + anon_sym_LT, + STATE(4275), 1, + sym_template_argument_list, + ACTIONS(7117), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(7122), 29, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7235), 23, - 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___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -673772,1059 +673815,741 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [262776] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5796), 1, - anon_sym_SEMI, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(5645), 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(5638), 25, - 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_or, anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [262824] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(10861), 1, - anon_sym_requires, - STATE(7578), 1, - sym_ref_qualifier, - STATE(8583), 1, - sym__function_attributes_end, - STATE(8585), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7738), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [262910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9752), 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(9754), 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, - [262954] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9788), 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(9790), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [262998] = 27, + anon_sym_requires, + [263418] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3028), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3190), 1, - sym__class_declaration, - STATE(3800), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(7861), 1, + STATE(4786), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8738), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(4459), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7862), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7412), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263090] = 27, + [263510] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3028), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3155), 1, - sym__class_declaration, - STATE(3800), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(7861), 1, + STATE(4783), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8738), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(4459), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7862), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7412), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263182] = 27, + [263602] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3028), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3091), 1, - sym__class_declaration, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3800), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(7861), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8738), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(4459), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7862), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7412), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263274] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9818), 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(9820), 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, - [263318] = 24, + [263694] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13149), 1, - anon_sym_requires, - STATE(7583), 1, - sym_ref_qualifier, - STATE(8510), 1, - sym__function_attributes_end, - STATE(8511), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4786), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, + sym_ms_declspec_modifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4460), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7733), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [263404] = 21, + STATE(7408), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [263786] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - ACTIONS(12412), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, - anon_sym_requires, - STATE(8013), 1, - sym_trailing_return_type, - STATE(8066), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12415), 2, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4783), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, + sym_ms_declspec_modifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4460), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7656), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [263484] = 27, + STATE(7408), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [263878] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3028), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3190), 1, - sym__class_declaration, - STATE(7481), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(7823), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8691), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7348), 2, + STATE(4460), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7826), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7480), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9923), 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(9925), 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, - [263620] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9752), 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(9754), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [263664] = 27, + [263970] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9314), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3028), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3144), 1, - sym__class_declaration_item, - STATE(3155), 1, - sym__class_declaration, - STATE(7481), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(7823), 1, + STATE(4786), 1, + sym__class_declaration, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8691), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7348), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7826), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7480), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263756] = 27, + [264062] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13147), 1, sym_identifier, - STATE(3711), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4057), 1, + STATE(3202), 1, sym__class_declaration, - STATE(4060), 1, + STATE(3203), 1, sym__class_declaration_item, - STATE(4263), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(4380), 1, + STATE(7709), 1, sym_field_declaration_list, - STATE(7885), 1, + STATE(7873), 1, sym_ms_declspec_modifier, - STATE(8675), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(10474), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3728), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4032), 2, + STATE(7371), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7886), 2, + STATE(7874), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7420), 3, + STATE(7487), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263848] = 27, + [264154] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13147), 1, sym_identifier, - STATE(3711), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4060), 1, + STATE(3203), 1, sym__class_declaration_item, - STATE(4106), 1, + STATE(3205), 1, sym__class_declaration, - STATE(4263), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(4380), 1, + STATE(7709), 1, sym_field_declaration_list, - STATE(7885), 1, + STATE(7873), 1, sym_ms_declspec_modifier, - STATE(8675), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(10474), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3728), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4032), 2, + STATE(7371), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7886), 2, + STATE(7874), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7420), 3, + STATE(7487), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [263940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9772), 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(9774), 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, - [263984] = 27, + [264246] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13147), 1, sym_identifier, - STATE(3711), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4060), 1, + STATE(3203), 1, sym__class_declaration_item, - STATE(4107), 1, + STATE(3206), 1, sym__class_declaration, - STATE(4263), 1, + STATE(7400), 1, sym_splice_specifier, - STATE(4380), 1, + STATE(7709), 1, sym_field_declaration_list, - STATE(7885), 1, + STATE(7873), 1, sym_ms_declspec_modifier, - STATE(8675), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(10474), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3728), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4032), 2, + STATE(7371), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7886), 2, + STATE(7874), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7420), 3, + STATE(7487), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [264076] = 3, + [264338] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(9796), 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(9798), 25, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(6455), 1, anon_sym_LPAREN2, + ACTIONS(6457), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(6459), 1, anon_sym_AMP_AMP, - anon_sym_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_LT, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT_EQ_GT, - anon_sym_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - anon_sym_GT2, - [264120] = 3, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(4676), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8991), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7389), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7375), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [264408] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9872), 11, + ACTIONS(5912), 1, + anon_sym_SEMI, + ACTIONS(10613), 1, + sym_literal_suffix, + ACTIONS(5619), 15, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, - anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_GT_GT, + anon_sym_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, anon_sym_DOT, - ACTIONS(9874), 25, + ACTIONS(5611), 19, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -674833,25 +674558,20 @@ 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, - anon_sym_GT2, - [264164] = 3, + [264456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9778), 9, + ACTIONS(9885), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -674861,7 +674581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9780), 27, + ACTIONS(9887), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -674889,152 +674609,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [264208] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7836), 1, - sym_ms_declspec_modifier, - STATE(8710), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7839), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7448), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [264300] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, - sym__class_declaration, - STATE(7836), 1, - sym_ms_declspec_modifier, - STATE(8710), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7839), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7448), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [264392] = 3, + [264500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9880), 11, + ACTIONS(9818), 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(9882), 25, + ACTIONS(9820), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -675045,8 +674633,11 @@ 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -675059,8 +674650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [264436] = 3, + [264544] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(9822), 9, @@ -675101,329 +674691,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [264480] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(8269), 1, - anon_sym_LBRACE, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, - sym_identifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, - sym__splice_specialization_specifier, - STATE(2800), 1, - sym_field_declaration_list, - STATE(3220), 1, - sym__class_declaration, - STATE(3222), 1, - sym__class_declaration_item, - STATE(7895), 1, - sym_ms_declspec_modifier, - STATE(8687), 1, - sym__scope_resolution, - STATE(9491), 1, - sym_virtual_specifier, - STATE(10452), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2460), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2678), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7897), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7406), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [264572] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(8269), 1, - anon_sym_LBRACE, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, - sym_identifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, - sym__splice_specialization_specifier, - STATE(2800), 1, - sym_field_declaration_list, - STATE(3222), 1, - sym__class_declaration_item, - STATE(3226), 1, - sym__class_declaration, - STATE(7895), 1, - sym_ms_declspec_modifier, - STATE(8687), 1, - sym__scope_resolution, - STATE(9491), 1, - sym_virtual_specifier, - STATE(10452), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2460), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2678), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7897), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7406), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [264664] = 21, + [264588] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10372), 1, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13108), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(13114), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13161), 1, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(13152), 1, anon_sym_requires, - STATE(8035), 1, - sym_trailing_return_type, - STATE(8067), 1, + STATE(7590), 1, + sym_ref_qualifier, + STATE(8518), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(8519), 1, + sym_trailing_return_type, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13158), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - STATE(7667), 3, + STATE(7732), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 9, + ACTIONS(7874), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [264744] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(8269), 1, - anon_sym_LBRACE, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, - sym_identifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, - sym__splice_specialization_specifier, - STATE(2800), 1, - sym_field_declaration_list, - STATE(3222), 1, - sym__class_declaration_item, - STATE(3230), 1, - sym__class_declaration, - STATE(7895), 1, - sym_ms_declspec_modifier, - STATE(8687), 1, - sym__scope_resolution, - STATE(9491), 1, - sym_virtual_specifier, - STATE(10452), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2460), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2678), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7897), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7406), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [264836] = 27, + [264674] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(5912), 1, + anon_sym_SEMI, + ACTIONS(6899), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7836), 1, - sym_ms_declspec_modifier, - STATE(8710), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7839), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7448), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [264928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9826), 9, + ACTIONS(9154), 1, + anon_sym_LPAREN2, + ACTIONS(9160), 1, + anon_sym_LBRACK, + ACTIONS(5619), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -675433,10 +674774,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9828), 27, + ACTIONS(5611), 23, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, anon_sym_PIPE_PIPE, @@ -675447,8 +674786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -675461,24 +674798,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [264972] = 3, + [264726] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(9860), 11, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(9311), 1, + anon_sym_LBRACE, + STATE(3204), 1, + sym_attribute_specifier, + STATE(7707), 1, + sym_field_declaration_list, + STATE(9524), 1, + sym_virtual_specifier, + STATE(10476), 1, + sym_base_class_clause, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(7256), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7254), 23, + 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, + [264786] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5912), 1, + anon_sym_SEMI, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(5619), 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(9862), 25, + ACTIONS(5611), 25, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_PERCENT, @@ -675487,7 +674874,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, @@ -675501,401 +674890,417 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - anon_sym_GT2, - [265016] = 27, + [264834] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8182), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, + ACTIONS(13155), 1, + sym_identifier, + STATE(2581), 1, sym_splice_specifier, - STATE(4880), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2703), 1, + sym_field_declaration_list, + STATE(2962), 1, sym__class_declaration, - STATE(4884), 1, + STATE(2963), 1, sym__class_declaration_item, - STATE(7893), 1, + STATE(7859), 1, sym_ms_declspec_modifier, - STATE(8705), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(10408), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(2397), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(7894), 2, + STATE(7860), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7449), 3, + STATE(7425), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265108] = 27, + [264926] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8182), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, + ACTIONS(13155), 1, + sym_identifier, + STATE(2581), 1, sym_splice_specifier, - STATE(4884), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2703), 1, + sym_field_declaration_list, + STATE(2963), 1, sym__class_declaration_item, - STATE(4951), 1, + STATE(2964), 1, sym__class_declaration, - STATE(7893), 1, + STATE(7859), 1, sym_ms_declspec_modifier, - STATE(8705), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(10408), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7894), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, + STATE(2397), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7449), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [265200] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4793), 1, - sym__class_declaration, - STATE(4802), 1, - sym_splice_specifier, - STATE(4884), 1, - sym__class_declaration_item, - STATE(7893), 1, - sym_ms_declspec_modifier, - STATE(8705), 1, - sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, - sym_virtual_specifier, - STATE(10528), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(7894), 2, + STATE(7860), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7449), 3, + STATE(7425), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265292] = 27, + [265018] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8182), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(10917), 1, + anon_sym_COLON_COLON, + ACTIONS(13155), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2703), 1, sym_field_declaration_list, - STATE(4880), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(2963), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(2965), 1, + sym__class_declaration, + STATE(7859), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10408), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4434), 2, + STATE(2397), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(2624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7860), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7425), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265384] = 27, + [265110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5619), 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(5611), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [265154] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4884), 1, - sym__class_declaration_item, - STATE(4951), 1, + STATE(4783), 1, sym__class_declaration, - STATE(7828), 1, + STATE(4855), 1, + sym__class_declaration_item, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4434), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265476] = 27, + [265246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9763), 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(9765), 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, + [265290] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4793), 1, - sym__class_declaration, - STATE(4884), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4434), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [265568] = 3, + [265382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 9, + ACTIONS(9848), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -675905,7 +675310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9870), 27, + ACTIONS(9850), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -675933,64 +675338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [265612] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(4706), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9006), 1, - sym__abstract_declarator, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(2488), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7351), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [265682] = 3, + [265426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9930), 11, + ACTIONS(9897), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -676002,7 +675353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9932), 25, + ACTIONS(9899), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -676028,10 +675379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265726] = 3, + [265470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9884), 11, + ACTIONS(9818), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -676043,7 +675394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9886), 25, + ACTIONS(9820), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -676069,246 +675420,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [265770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9748), 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(9750), 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_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - 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, - [265814] = 27, + [265514] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10659), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, - anon_sym_LBRACE, - ACTIONS(13168), 1, - sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, - sym__splice_specialization_specifier, - STATE(7595), 1, - sym_field_declaration_list, - STATE(7634), 1, - sym__class_declaration, - STATE(7635), 1, - sym__class_declaration_item, - STATE(7902), 1, - sym_ms_declspec_modifier, - STATE(8700), 1, - sym__scope_resolution, - STATE(9479), 1, - sym_virtual_specifier, - STATE(10590), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7089), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7122), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7903), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7399), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [265906] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, + ACTIONS(7262), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, - sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, - sym__splice_specialization_specifier, - STATE(7595), 1, - sym_field_declaration_list, - STATE(7635), 1, - sym__class_declaration_item, - STATE(7637), 1, - sym__class_declaration, - STATE(7902), 1, - sym_ms_declspec_modifier, - STATE(8700), 1, - sym__scope_resolution, - STATE(9479), 1, - sym_virtual_specifier, - STATE(10590), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7089), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7122), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7903), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(7399), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [265998] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(12978), 1, - anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(6581), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(7595), 1, + STATE(2152), 1, sym_field_declaration_list, - STATE(7635), 1, + STATE(2180), 1, sym__class_declaration_item, - STATE(7638), 1, + STATE(2183), 1, sym__class_declaration, - STATE(7902), 1, + STATE(7823), 1, sym_ms_declspec_modifier, - STATE(8700), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9605), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(10264), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7089), 2, + STATE(2074), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7122), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(7903), 2, + STATE(7824), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7399), 3, + STATE(7454), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [266090] = 3, + [265606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9804), 9, + ACTIONS(9864), 9, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -676318,7 +675498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT, anon_sym_DOT, - ACTIONS(9806), 27, + ACTIONS(9866), 27, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -676332,8 +675512,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, + 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, + [265650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9822), 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(9824), 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_RBRACK, anon_sym_QMARK, anon_sym_LT_EQ_GT, anon_sym_or, @@ -676346,10 +675566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DOT_STAR, anon_sym_DASH_GT, - [266134] = 3, + anon_sym_GT2, + [265694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 11, + ACTIONS(9848), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -676361,7 +675582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(9894), 25, + ACTIONS(9850), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -676387,10 +675608,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266178] = 3, + [265738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8566), 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(3546), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RBRACK_RBRACK, + 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, + [265782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9868), 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(9870), 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_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + 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, + [265826] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, + anon_sym_LBRACK, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(4676), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8983), 1, + sym__abstract_declarator, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2450), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7341), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [265896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5645), 11, + ACTIONS(9864), 11, anon_sym_DASH, anon_sym_PLUS, anon_sym_SLASH, @@ -676402,7 +675759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT_GT, anon_sym_DOT, - ACTIONS(5638), 25, + ACTIONS(9866), 25, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, @@ -676428,189 +675785,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_STAR, anon_sym_DASH_GT, anon_sym_GT2, - [266222] = 27, + [265940] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(7262), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(13133), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2152), 1, sym_field_declaration_list, - STATE(4880), 1, + STATE(2179), 1, sym__class_declaration, - STATE(4884), 1, + STATE(2180), 1, sym__class_declaration_item, - STATE(7828), 1, + STATE(7823), 1, sym_ms_declspec_modifier, - STATE(8716), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9605), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10264), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4533), 2, + STATE(2074), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7831), 2, + STATE(2153), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7824), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(7478), 3, + STATE(7454), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [266314] = 26, + [266032] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7595), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(7610), 1, + STATE(4855), 1, sym__class_declaration_item, - STATE(7905), 1, + STATE(5014), 1, + sym__class_declaration, + STATE(7819), 1, sym_ms_declspec_modifier, - STATE(8700), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7089), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7122), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7904), 2, + STATE(4489), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7894), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(7408), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [266403] = 25, + [266124] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(3873), 1, + ACTIONS(4169), 1, anon_sym_class, - ACTIONS(3875), 1, + ACTIONS(4171), 1, anon_sym_struct, - ACTIONS(3877), 1, + ACTIONS(4173), 1, anon_sym_union, - ACTIONS(3891), 1, + ACTIONS(4179), 1, sym_auto, - ACTIONS(3893), 1, + ACTIONS(4181), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11083), 1, + ACTIONS(10964), 1, + sym_identifier, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(10968), 1, sym_primitive_type, - ACTIONS(11109), 1, + ACTIONS(12872), 1, + anon_sym_enum, + ACTIONS(12874), 1, + anon_sym_typename, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2158), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2172), 1, + sym_decltype_auto, + STATE(3528), 1, + sym_type_specifier, + STATE(8665), 1, + sym__scope_resolution, + STATE(2148), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12870), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(2173), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266211] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(3284), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3834), 1, + anon_sym_class, + ACTIONS(3836), 1, + anon_sym_struct, + ACTIONS(3838), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(11005), 1, sym_identifier, - ACTIONS(11111), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(12875), 1, + ACTIONS(12949), 1, anon_sym_enum, - ACTIONS(12877), 1, + ACTIONS(12951), 1, anon_sym_typename, - STATE(3375), 1, + STATE(3768), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, + STATE(4143), 1, + sym_template_type, + STATE(4219), 1, + sym_splice_specifier, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(4522), 1, + sym_decltype_auto, + STATE(4543), 1, + sym_type_specifier, + STATE(8722), 1, + sym__scope_resolution, + STATE(4361), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12947), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4523), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266298] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4141), 1, + anon_sym_enum, + ACTIONS(4143), 1, + anon_sym_class, + ACTIONS(4145), 1, + anon_sym_struct, + ACTIONS(4147), 1, + anon_sym_union, + ACTIONS(4151), 1, + sym_auto, + ACTIONS(4153), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10915), 1, + sym_identifier, + ACTIONS(10917), 1, + anon_sym_COLON_COLON, + ACTIONS(10919), 1, + sym_primitive_type, + ACTIONS(10921), 1, + anon_sym_typename, + STATE(2177), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2581), 1, sym_splice_specifier, - STATE(3759), 1, + STATE(2628), 1, sym_template_type, - STATE(3819), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(4108), 1, + STATE(2934), 1, + sym_decltype, + STATE(2966), 1, sym_type_specifier, - STATE(4119), 1, + STATE(3013), 1, sym_decltype_auto, - STATE(8707), 1, + STATE(3066), 1, + sym_splice_type_specifier, + STATE(8744), 1, + sym__scope_resolution, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4137), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3045), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266387] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13157), 1, + sym_identifier, + ACTIONS(13159), 1, + anon_sym_COLON_COLON, + ACTIONS(13163), 1, + sym_primitive_type, + ACTIONS(13165), 1, + anon_sym_enum, + ACTIONS(13167), 1, + anon_sym_class, + ACTIONS(13169), 1, + anon_sym_struct, + ACTIONS(13171), 1, + anon_sym_union, + ACTIONS(13173), 1, + anon_sym_typename, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4839), 1, + sym_decltype_auto, + STATE(4989), 1, + sym_splice_specifier, + STATE(5015), 1, + sym_type_specifier, + STATE(7679), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8742), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(9220), 1, + sym_template_type, + STATE(9372), 1, + sym_qualified_type_identifier, + STATE(4927), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12873), 4, + ACTIONS(13161), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(4852), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -676618,61 +676164,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266490] = 25, + [266474] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(3871), 1, - anon_sym_enum, - ACTIONS(3873), 1, + ACTIONS(4030), 1, anon_sym_class, - ACTIONS(3875), 1, + ACTIONS(4032), 1, anon_sym_struct, - ACTIONS(3877), 1, + ACTIONS(4034), 1, anon_sym_union, - ACTIONS(3891), 1, + ACTIONS(4040), 1, sym_auto, - ACTIONS(3893), 1, + ACTIONS(4042), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11109), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(11111), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(11113), 1, + ACTIONS(11075), 1, + sym_primitive_type, + ACTIONS(12884), 1, + anon_sym_enum, + ACTIONS(12886), 1, anon_sym_typename, - STATE(2941), 1, + STATE(2384), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(3759), 1, + STATE(2665), 1, sym_template_type, - STATE(3819), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2733), 1, sym_qualified_type_identifier, - STATE(4108), 1, + STATE(3107), 1, sym_type_specifier, - STATE(4119), 1, + STATE(3230), 1, sym_decltype_auto, - STATE(8707), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(3080), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3867), 4, + ACTIONS(12882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(3236), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -676680,61 +676226,209 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266577] = 25, + [266561] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12057), 1, + anon_sym_decltype, + ACTIONS(13129), 1, + sym_auto, + STATE(7612), 1, + sym_decltype_auto, + ACTIONS(7246), 3, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_const, + ACTIONS(7248), 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___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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [266610] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(4143), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(4145), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(4147), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(4151), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(4153), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(10915), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(11040), 1, + ACTIONS(10919), 1, sym_primitive_type, - ACTIONS(12803), 1, + ACTIONS(13043), 1, anon_sym_enum, - ACTIONS(12805), 1, + ACTIONS(13045), 1, anon_sym_typename, - STATE(2073), 1, + STATE(2327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2581), 1, + sym_splice_specifier, + STATE(2628), 1, sym_template_type, - STATE(2087), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2153), 1, + STATE(2966), 1, + sym_type_specifier, + STATE(3013), 1, + sym_decltype_auto, + STATE(8744), 1, + sym__scope_resolution, + STATE(2934), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(13041), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3045), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266697] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7119), 1, + anon_sym_COLON_COLON, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(3011), 1, + sym_template_argument_list, + ACTIONS(7122), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(7117), 28, + 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, + anon_sym_final, + anon_sym_override, + [266746] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4197), 1, + anon_sym_class, + ACTIONS(4199), 1, + anon_sym_struct, + ACTIONS(4201), 1, + anon_sym_union, + ACTIONS(4207), 1, + sym_auto, + ACTIONS(4209), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11079), 1, + sym_identifier, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(12985), 1, + anon_sym_enum, + ACTIONS(12987), 1, + anon_sym_typename, + STATE(2367), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2170), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(2221), 1, + STATE(2728), 1, + sym_template_type, + STATE(2818), 1, + sym_qualified_type_identifier, + STATE(3096), 1, sym_decltype_auto, - STATE(3566), 1, + STATE(4788), 1, sym_type_specifier, - STATE(8763), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(2169), 2, + STATE(2978), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12801), 4, + ACTIONS(12983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3097), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -676742,61 +676436,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266664] = 25, + [266833] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(3807), 1, + ACTIONS(4141), 1, anon_sym_enum, - ACTIONS(3809), 1, + ACTIONS(4143), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(4145), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(4147), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(4151), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(4153), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(10915), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(11040), 1, + ACTIONS(10919), 1, sym_primitive_type, - ACTIONS(11042), 1, + ACTIONS(10921), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2076), 1, + STATE(2177), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2628), 1, + sym_template_type, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(2233), 1, + STATE(2685), 1, + sym_qualified_type_identifier, + STATE(2966), 1, sym_type_specifier, - STATE(8763), 1, + STATE(3013), 1, + sym_decltype_auto, + STATE(8744), 1, sym__scope_resolution, - STATE(2169), 2, + STATE(2934), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(4137), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3045), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [266920] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(2312), 1, + anon_sym_enum, + ACTIONS(2314), 1, + anon_sym_class, + ACTIONS(2316), 1, + anon_sym_struct, + ACTIONS(2318), 1, + anon_sym_union, + ACTIONS(3464), 1, + sym_primitive_type, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5671), 1, + anon_sym_typename, + ACTIONS(6449), 1, + sym_identifier, + ACTIONS(6463), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4577), 1, + sym_template_type, + STATE(4597), 1, + sym_qualified_type_identifier, + STATE(4839), 1, + sym_decltype_auto, + STATE(4927), 1, sym_decltype, + STATE(5015), 1, + sym_type_specifier, + STATE(5032), 1, + sym_splice_specifier, + STATE(5993), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(8667), 1, + sym__scope_resolution, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3803), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(4852), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -676804,61 +676561,114 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266751] = 25, + [267009] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(12035), 1, + anon_sym_STAR, + ACTIONS(12037), 1, + anon_sym_AMP_AMP, + ACTIONS(12039), 1, + anon_sym_AMP, + STATE(4909), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9051), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(6843), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [267078] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(3897), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(3899), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(3901), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(3905), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(3907), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(11055), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(11040), 1, + ACTIONS(11059), 1, sym_primitive_type, - ACTIONS(12803), 1, + ACTIONS(13017), 1, anon_sym_enum, - ACTIONS(12805), 1, + ACTIONS(13019), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2153), 1, + STATE(2456), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2170), 1, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(2221), 1, + STATE(2901), 1, + sym_template_type, + STATE(3048), 1, + sym_qualified_type_identifier, + STATE(3576), 1, sym_decltype_auto, - STATE(2233), 1, + STATE(5410), 1, sym_type_specifier, - STATE(8763), 1, + STATE(8726), 1, sym__scope_resolution, - STATE(2169), 2, + STATE(3396), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12801), 4, + ACTIONS(13015), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3575), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -676866,61 +676676,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266838] = 25, + [267165] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3839), 1, - anon_sym_class, - ACTIONS(3841), 1, - anon_sym_struct, - ACTIONS(3843), 1, - anon_sym_union, - ACTIONS(3849), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(3851), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11095), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10893), 1, sym_identifier, - ACTIONS(11097), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(10899), 1, sym_primitive_type, - ACTIONS(12839), 1, + ACTIONS(10901), 1, anon_sym_enum, - ACTIONS(12841), 1, + ACTIONS(10903), 1, + anon_sym_class, + ACTIONS(10905), 1, + anon_sym_struct, + ACTIONS(10907), 1, + anon_sym_union, + ACTIONS(10909), 1, anon_sym_typename, - STATE(2385), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2712), 1, - sym_template_type, - STATE(2843), 1, - sym_qualified_type_identifier, - STATE(3166), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(5024), 1, + STATE(3211), 1, sym_type_specifier, - STATE(8702), 1, + STATE(7400), 1, + sym_splice_specifier, + STATE(7579), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7663), 1, + sym_template_type, + STATE(7722), 1, + sym_qualified_type_identifier, + STATE(8705), 1, sym__scope_resolution, - STATE(3053), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12837), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3167), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -676928,374 +676738,187 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [266925] = 26, + [267252] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(6463), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(8269), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13131), 1, sym_identifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(3133), 1, + STATE(4802), 1, sym__class_declaration_item, - STATE(7899), 1, + STATE(5032), 1, + sym_splice_specifier, + STATE(7841), 1, sym_ms_declspec_modifier, - STATE(8687), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2460), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2678), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7898), 2, + STATE(3977), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7836), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(8399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [267014] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3704), 1, - anon_sym_enum, - ACTIONS(3706), 1, - anon_sym_class, - ACTIONS(3708), 1, - anon_sym_struct, - ACTIONS(3710), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, - sym_identifier, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(11107), 1, - anon_sym_typename, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(8738), 1, - sym__scope_resolution, - STATE(3021), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [267101] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3732), 1, - anon_sym_enum, - ACTIONS(3734), 1, - anon_sym_class, - ACTIONS(3736), 1, - anon_sym_struct, - ACTIONS(3738), 1, - anon_sym_union, - ACTIONS(3742), 1, - sym_auto, - ACTIONS(3744), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11008), 1, - sym_identifier, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(11012), 1, - sym_primitive_type, - ACTIONS(11014), 1, - anon_sym_typename, - STATE(2180), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2622), 1, - sym_template_type, - STATE(2698), 1, - sym_qualified_type_identifier, - STATE(2997), 1, - sym_decltype_auto, - STATE(3023), 1, - sym_type_specifier, - STATE(8682), 1, - sym__scope_resolution, - STATE(2942), 2, + STATE(11531), 3, sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3728), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3067), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [267188] = 26, + [267341] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(4987), 1, + STATE(4802), 1, sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(7825), 1, + STATE(7839), 1, sym_ms_declspec_modifier, - STATE(8756), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7824), 2, + STATE(7828), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(8399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [267277] = 26, + [267430] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 1, + ACTIONS(3074), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4028), 1, anon_sym_enum, - ACTIONS(3206), 1, + ACTIONS(4030), 1, anon_sym_class, - ACTIONS(3208), 1, + ACTIONS(4032), 1, anon_sym_struct, - ACTIONS(3210), 1, + ACTIONS(4034), 1, anon_sym_union, - ACTIONS(3236), 1, + ACTIONS(4040), 1, sym_auto, - ACTIONS(3238), 1, + ACTIONS(4042), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11046), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(11048), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(11050), 1, + ACTIONS(11075), 1, sym_primitive_type, - ACTIONS(11052), 1, + ACTIONS(11077), 1, anon_sym_typename, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4373), 1, - sym_decltype, - STATE(4426), 1, - sym_decltype_auto, - STATE(4457), 1, - sym_type_specifier, - STATE(4690), 1, - sym_splice_type_specifier, - STATE(6642), 1, + STATE(2264), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7326), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(8745), 1, - sym__scope_resolution, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3200), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4430), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [267366] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, - anon_sym_class, - ACTIONS(3708), 1, - anon_sym_struct, - ACTIONS(3710), 1, - anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, - sym_identifier, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(12787), 1, - anon_sym_enum, - ACTIONS(12789), 1, - anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3126), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(2665), 1, sym_template_type, - STATE(3747), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2733), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(6514), 1, + STATE(3107), 1, sym_type_specifier, - STATE(8738), 1, + STATE(3230), 1, + sym_decltype_auto, + STATE(8741), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(3080), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(4024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3236), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677303,124 +676926,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267453] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3185), 1, - sym__class_declaration_item, - STATE(3800), 1, - sym_splice_specifier, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7896), 1, - sym_ms_declspec_modifier, - STATE(8738), 1, - sym__scope_resolution, - STATE(9550), 1, - sym_virtual_specifier, - STATE(10518), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7805), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [267542] = 25, + [267517] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(3734), 1, + ACTIONS(4169), 1, anon_sym_class, - ACTIONS(3736), 1, + ACTIONS(4171), 1, anon_sym_struct, - ACTIONS(3738), 1, + ACTIONS(4173), 1, anon_sym_union, - ACTIONS(3742), 1, + ACTIONS(4179), 1, sym_auto, - ACTIONS(3744), 1, + ACTIONS(4181), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(10964), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, + ACTIONS(10968), 1, sym_primitive_type, - ACTIONS(13038), 1, + ACTIONS(12872), 1, anon_sym_enum, - ACTIONS(13040), 1, + ACTIONS(12874), 1, anon_sym_typename, - STATE(2360), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(2073), 1, sym_template_type, - STATE(2698), 1, + STATE(2088), 1, sym_qualified_type_identifier, - STATE(2997), 1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2158), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2172), 1, sym_decltype_auto, - STATE(3023), 1, + STATE(2184), 1, sym_type_specifier, - STATE(8682), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(2942), 2, + STATE(2148), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13036), 4, + ACTIONS(12870), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(2173), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677428,62 +676988,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267629] = 26, + [267604] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(4062), 1, - anon_sym_enum, - ACTIONS(4064), 1, + ACTIONS(3897), 1, anon_sym_class, - ACTIONS(4066), 1, + ACTIONS(3899), 1, anon_sym_struct, - ACTIONS(4068), 1, + ACTIONS(3901), 1, anon_sym_union, - ACTIONS(4072), 1, + ACTIONS(3905), 1, sym_auto, - ACTIONS(4074), 1, + ACTIONS(3907), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11071), 1, + ACTIONS(11055), 1, sym_identifier, - ACTIONS(11073), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(11075), 1, + ACTIONS(11059), 1, sym_primitive_type, - ACTIONS(11077), 1, + ACTIONS(13017), 1, + anon_sym_enum, + ACTIONS(13019), 1, anon_sym_typename, - STATE(2356), 1, + STATE(2456), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, + STATE(2800), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(2933), 1, + STATE(2901), 1, sym_template_type, - STATE(3031), 1, + STATE(3048), 1, sym_qualified_type_identifier, - STATE(3447), 1, - sym_decltype, - STATE(3486), 1, - sym_splice_type_specifier, - STATE(3527), 1, + STATE(3576), 1, sym_decltype_auto, - STATE(3534), 1, + STATE(5436), 1, sym_type_specifier, - STATE(8686), 1, + STATE(8726), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(3396), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4058), 4, + ACTIONS(13015), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3528), 7, + STATE(3575), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677491,61 +677050,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267718] = 25, + [267691] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(3804), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(3806), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(3978), 1, - anon_sym_enum, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(11115), 1, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(11117), 1, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(12836), 1, + anon_sym_enum, + ACTIONS(12838), 1, anon_sym_typename, - STATE(2073), 1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3661), 1, sym_template_type, - STATE(2087), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(2093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2104), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(2233), 1, + STATE(6548), 1, sym_type_specifier, - STATE(8763), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(2169), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3974), 4, + ACTIONS(12834), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677553,104 +677112,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267805] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(2938), 1, - sym_template_argument_list, - ACTIONS(6565), 4, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_const, - ACTIONS(6572), 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, - [267854] = 25, + [267778] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(3839), 1, + ACTIONS(3897), 1, anon_sym_class, - ACTIONS(3841), 1, + ACTIONS(3899), 1, anon_sym_struct, - ACTIONS(3843), 1, + ACTIONS(3901), 1, anon_sym_union, - ACTIONS(3849), 1, + ACTIONS(3905), 1, sym_auto, - ACTIONS(3851), 1, + ACTIONS(3907), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11095), 1, + ACTIONS(11055), 1, sym_identifier, - ACTIONS(11097), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(11059), 1, sym_primitive_type, - ACTIONS(12839), 1, + ACTIONS(13017), 1, anon_sym_enum, - ACTIONS(12841), 1, + ACTIONS(13019), 1, anon_sym_typename, - STATE(2385), 1, + STATE(2456), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2605), 1, + STATE(2800), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(2712), 1, + STATE(2901), 1, sym_template_type, - STATE(2843), 1, + STATE(3048), 1, sym_qualified_type_identifier, - STATE(3166), 1, - sym_decltype_auto, - STATE(3238), 1, + STATE(3531), 1, sym_type_specifier, - STATE(8702), 1, + STATE(3576), 1, + sym_decltype_auto, + STATE(8726), 1, sym__scope_resolution, - STATE(3053), 2, + STATE(3396), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12837), 4, + ACTIONS(13015), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3167), 7, + STATE(3575), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677658,228 +677174,125 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [267941] = 26, + [267865] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11010), 1, + ACTIONS(8342), 1, + anon_sym_LBRACE, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(2547), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(2895), 1, sym_field_declaration_list, - STATE(2982), 1, + STATE(3200), 1, sym__class_declaration_item, STATE(7822), 1, sym_ms_declspec_modifier, - STATE(8682), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(9416), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(10314), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2389), 2, + STATE(2493), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2615), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, STATE(7820), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [268030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5800), 1, - anon_sym_SEMI, - ACTIONS(5645), 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(5638), 25, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [268075] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9246), 1, - anon_sym_LBRACE, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, - sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(4131), 1, - sym__class_declaration_item, - STATE(4263), 1, - sym_splice_specifier, - STATE(4380), 1, - sym_field_declaration_list, - STATE(7888), 1, - sym_ms_declspec_modifier, - STATE(8675), 1, - sym__scope_resolution, - STATE(9587), 1, - sym_virtual_specifier, - STATE(10321), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4032), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7887), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(8399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [268164] = 25, + [267954] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4399), 1, + ACTIONS(3232), 1, + anon_sym_enum, + ACTIONS(3234), 1, anon_sym_class, - ACTIONS(4401), 1, + ACTIONS(3236), 1, anon_sym_struct, - ACTIONS(4403), 1, + ACTIONS(3238), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11057), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10990), 1, sym_identifier, - ACTIONS(11059), 1, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(12988), 1, - anon_sym_enum, - ACTIONS(12990), 1, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(10996), 1, anon_sym_typename, - STATE(3770), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, + STATE(4143), 1, sym_template_type, - STATE(4204), 1, + STATE(4265), 1, sym_qualified_type_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(4426), 1, + STATE(4361), 1, + sym_decltype, + STATE(4522), 1, sym_decltype_auto, - STATE(4457), 1, + STATE(4543), 1, sym_type_specifier, - STATE(8676), 1, - sym__scope_resolution, - STATE(4373), 2, - sym_decltype, + STATE(4735), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(6638), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7353), 1, + sym_splice_specifier, + STATE(8710), 1, + sym__scope_resolution, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12986), 4, + ACTIONS(3228), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(4523), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677887,61 +677300,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268251] = 25, + [268043] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4064), 1, + ACTIONS(3945), 1, anon_sym_class, - ACTIONS(4066), 1, + ACTIONS(3947), 1, anon_sym_struct, - ACTIONS(4068), 1, + ACTIONS(3949), 1, anon_sym_union, - ACTIONS(4072), 1, + ACTIONS(3975), 1, sym_auto, - ACTIONS(4074), 1, + ACTIONS(3977), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11071), 1, + ACTIONS(11063), 1, sym_identifier, - ACTIONS(11073), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(11075), 1, + ACTIONS(11067), 1, sym_primitive_type, - ACTIONS(13052), 1, + ACTIONS(12768), 1, anon_sym_enum, - ACTIONS(13054), 1, + ACTIONS(12770), 1, anon_sym_typename, - STATE(2449), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, - sym__splice_specialization_specifier, - STATE(2933), 1, + STATE(3728), 1, sym_template_type, - STATE(3031), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3772), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3787), 1, sym_qualified_type_identifier, - STATE(3527), 1, + STATE(4080), 1, sym_decltype_auto, - STATE(3534), 1, + STATE(4086), 1, sym_type_specifier, - STATE(8686), 1, + STATE(4222), 1, + sym_splice_specifier, + STATE(8737), 1, sym__scope_resolution, - STATE(3447), 2, + STATE(3960), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13050), 4, + ACTIONS(12766), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3528), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -677949,62 +677362,125 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268338] = 26, + [268130] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4314), 1, - anon_sym_enum, - ACTIONS(4316), 1, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9213), 1, + anon_sym_LBRACE, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, + sym_identifier, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(4100), 1, + sym__class_declaration_item, + STATE(4222), 1, + sym_splice_specifier, + STATE(4374), 1, + sym_field_declaration_list, + STATE(7879), 1, + sym_ms_declspec_modifier, + STATE(8737), 1, + sym__scope_resolution, + STATE(9644), 1, + sym_virtual_specifier, + STATE(10557), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4035), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7877), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8399), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [268219] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4169), 1, anon_sym_class, - ACTIONS(4318), 1, + ACTIONS(4171), 1, anon_sym_struct, - ACTIONS(4320), 1, + ACTIONS(4173), 1, anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(4257), 1, + anon_sym_enum, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11079), 1, - sym_identifier, - ACTIONS(11081), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(11085), 1, + ACTIONS(11099), 1, + sym_identifier, + ACTIONS(11101), 1, anon_sym_typename, - STATE(3488), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3759), 1, + STATE(2073), 1, sym_template_type, - STATE(3819), 1, + STATE(2088), 1, sym_qualified_type_identifier, - STATE(3967), 1, + STATE(2093), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2148), 1, sym_decltype, - STATE(4108), 1, - sym_type_specifier, - STATE(4119), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(4758), 1, + STATE(2174), 1, sym_splice_type_specifier, - STATE(8675), 1, + STATE(2184), 1, + sym_type_specifier, + STATE(8665), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4310), 4, + ACTIONS(4253), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(2173), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678012,62 +677488,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268427] = 26, + [268308] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(3804), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(3806), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(3808), 1, anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(3978), 1, - anon_sym_enum, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(11115), 1, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(11117), 1, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(12836), 1, + anon_sym_enum, + ACTIONS(12838), 1, anon_sym_typename, - STATE(2073), 1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3661), 1, sym_template_type, - STATE(2087), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(2093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2104), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(2169), 1, - sym_decltype, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2211), 1, - sym_splice_type_specifier, - STATE(2221), 1, - sym_decltype_auto, - STATE(2233), 1, + STATE(6511), 1, sym_type_specifier, - STATE(8763), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3974), 4, + ACTIONS(12834), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678075,61 +677550,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268516] = 25, + [268395] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(3734), 1, + ACTIONS(4143), 1, anon_sym_class, - ACTIONS(3736), 1, + ACTIONS(4145), 1, anon_sym_struct, - ACTIONS(3738), 1, + ACTIONS(4147), 1, anon_sym_union, - ACTIONS(3742), 1, + ACTIONS(4151), 1, sym_auto, - ACTIONS(3744), 1, + ACTIONS(4153), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(10915), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, + ACTIONS(10919), 1, sym_primitive_type, - ACTIONS(13038), 1, + ACTIONS(13043), 1, anon_sym_enum, - ACTIONS(13040), 1, + ACTIONS(13045), 1, anon_sym_typename, - STATE(2360), 1, + STATE(2327), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(2628), 1, sym_template_type, - STATE(2698), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(2997), 1, + STATE(3013), 1, sym_decltype_auto, - STATE(4651), 1, + STATE(4715), 1, sym_type_specifier, - STATE(8682), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(2942), 2, + STATE(2934), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13036), 4, + ACTIONS(13041), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(3045), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678137,61 +677612,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268603] = 25, + [268482] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, sym_auto, ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13170), 1, + ACTIONS(13157), 1, sym_identifier, - ACTIONS(13172), 1, + ACTIONS(13159), 1, anon_sym_COLON_COLON, - ACTIONS(13176), 1, + ACTIONS(13163), 1, sym_primitive_type, - ACTIONS(13178), 1, + ACTIONS(13165), 1, anon_sym_enum, - ACTIONS(13180), 1, + ACTIONS(13167), 1, anon_sym_class, - ACTIONS(13182), 1, + ACTIONS(13169), 1, anon_sym_struct, - ACTIONS(13184), 1, + ACTIONS(13171), 1, anon_sym_union, - ACTIONS(13186), 1, + ACTIONS(13173), 1, anon_sym_typename, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4776), 1, - sym_type_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4948), 1, + STATE(4839), 1, sym_decltype_auto, - STATE(7700), 1, + STATE(4989), 1, + sym_splice_specifier, + STATE(7679), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8695), 1, + STATE(8742), 1, sym__scope_resolution, - STATE(9262), 1, + STATE(9220), 1, sym_template_type, - STATE(9343), 1, + STATE(9372), 1, sym_qualified_type_identifier, - STATE(4830), 2, + STATE(10330), 1, + sym_type_specifier, + STATE(4927), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13174), 4, + ACTIONS(13161), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(4852), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678199,62 +677674,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268690] = 26, + [268569] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3975), 1, sym_auto, - ACTIONS(3238), 1, + ACTIONS(3977), 1, anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4397), 1, - anon_sym_enum, - ACTIONS(4399), 1, + ACTIONS(4413), 1, anon_sym_class, - ACTIONS(4401), 1, + ACTIONS(4415), 1, anon_sym_struct, - ACTIONS(4403), 1, + ACTIONS(4417), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11050), 1, + ACTIONS(11067), 1, sym_primitive_type, - ACTIONS(11057), 1, + ACTIONS(11093), 1, sym_identifier, - ACTIONS(11059), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(11061), 1, + ACTIONS(13057), 1, + anon_sym_enum, + ACTIONS(13059), 1, anon_sym_typename, - STATE(3490), 1, + STATE(3454), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4272), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(4373), 1, - sym_decltype, - STATE(4426), 1, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(4080), 1, sym_decltype_auto, - STATE(4457), 1, + STATE(4086), 1, sym_type_specifier, - STATE(4690), 1, - sym_splice_type_specifier, - STATE(8676), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(3960), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4395), 4, + ACTIONS(13055), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678262,101 +677736,48 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [268779] = 16, + [268656] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11987), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11995), 1, - sym_identifier, - ACTIONS(11997), 1, - anon_sym_STAR, - ACTIONS(11999), 1, - anon_sym_AMP_AMP, - ACTIONS(12001), 1, - anon_sym_AMP, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(9033), 1, - sym__field_declarator, - STATE(9236), 1, - sym_operator_name, - STATE(11191), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8839), 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(3270), 13, - anon_sym___extension__, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [268848] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, + ACTIONS(12035), 1, anon_sym_STAR, - ACTIONS(11991), 1, + ACTIONS(12037), 1, anon_sym_AMP_AMP, - ACTIONS(11993), 1, + ACTIONS(12039), 1, anon_sym_AMP, - STATE(7511), 1, + STATE(4909), 1, + sym_parameter_list, + STATE(6698), 1, sym_alignas_qualifier, - STATE(8638), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10687), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9043), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(6406), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8839), 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(3270), 13, + ACTIONS(7345), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11775), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -678368,61 +677789,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [268917] = 25, + [268725] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(4062), 1, - anon_sym_enum, - ACTIONS(4064), 1, + ACTIONS(3834), 1, anon_sym_class, - ACTIONS(4066), 1, + ACTIONS(3836), 1, anon_sym_struct, - ACTIONS(4068), 1, + ACTIONS(3838), 1, anon_sym_union, - ACTIONS(4072), 1, - sym_auto, - ACTIONS(4074), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11071), 1, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(11005), 1, sym_identifier, - ACTIONS(11073), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(11075), 1, - sym_primitive_type, - ACTIONS(11077), 1, + ACTIONS(12949), 1, + anon_sym_enum, + ACTIONS(12951), 1, anon_sym_typename, - STATE(2356), 1, + STATE(3768), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, - sym__splice_specialization_specifier, - STATE(2933), 1, + STATE(4143), 1, sym_template_type, - STATE(3031), 1, + STATE(4219), 1, + sym_splice_specifier, + STATE(4265), 1, sym_qualified_type_identifier, - STATE(3527), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, sym_decltype_auto, - STATE(3534), 1, + STATE(6544), 1, sym_type_specifier, - STATE(8686), 1, + STATE(8722), 1, sym__scope_resolution, - STATE(3447), 2, + STATE(4361), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4058), 4, + ACTIONS(12947), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3528), 7, + STATE(4523), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678430,292 +677851,186 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269004] = 25, + [268812] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8182), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11115), 1, + ACTIONS(13155), 1, sym_identifier, - ACTIONS(12897), 1, - anon_sym_enum, - ACTIONS(12899), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(2210), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2221), 1, - sym_decltype_auto, - STATE(2233), 1, - sym_type_specifier, - STATE(8763), 1, + STATE(2703), 1, + sym_field_declaration_list, + STATE(2989), 1, + sym__class_declaration_item, + STATE(7886), 1, + sym_ms_declspec_modifier, + STATE(8744), 1, sym__scope_resolution, - STATE(2169), 2, - sym_decltype, + STATE(9508), 1, + sym_virtual_specifier, + STATE(10408), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2397), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2624), 2, + sym_template_type, sym_splice_type_specifier, - STATE(10768), 2, + STATE(7876), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8399), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12895), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [269091] = 25, + [268901] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(4316), 1, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3895), 1, + anon_sym_enum, + ACTIONS(3897), 1, anon_sym_class, - ACTIONS(4318), 1, + ACTIONS(3899), 1, anon_sym_struct, - ACTIONS(4320), 1, + ACTIONS(3901), 1, anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(3905), 1, + sym_auto, + ACTIONS(3907), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(11055), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(11083), 1, + ACTIONS(11059), 1, sym_primitive_type, - ACTIONS(12759), 1, - anon_sym_enum, - ACTIONS(12761), 1, + ACTIONS(11061), 1, anon_sym_typename, - STATE(3711), 1, + STATE(2345), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(3759), 1, + STATE(2901), 1, sym_template_type, - STATE(3762), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3819), 1, + STATE(3048), 1, sym_qualified_type_identifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(6515), 1, + STATE(3531), 1, sym_type_specifier, - STATE(8675), 1, - sym__scope_resolution, - STATE(3967), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12757), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4064), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [269178] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11995), 1, - sym_identifier, - ACTIONS(11997), 1, - anon_sym_STAR, - ACTIONS(11999), 1, - anon_sym_AMP_AMP, - ACTIONS(12001), 1, - anon_sym_AMP, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(9026), 1, - sym__field_declarator, - STATE(9236), 1, - sym_operator_name, - STATE(11191), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8839), 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(3270), 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, - [269247] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11995), 1, - sym_identifier, - ACTIONS(11997), 1, - anon_sym_STAR, - ACTIONS(11999), 1, - anon_sym_AMP_AMP, - ACTIONS(12001), 1, - anon_sym_AMP, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(9054), 1, - sym__field_declarator, - STATE(9236), 1, - sym_operator_name, - STATE(11191), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8839), 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(3270), 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, - [269316] = 26, + STATE(3576), 1, + sym_decltype_auto, + STATE(8726), 1, + sym__scope_resolution, + STATE(3396), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3575), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [268988] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3804), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(3806), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(3808), 1, anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(12836), 1, + anon_sym_enum, + ACTIONS(12838), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3021), 1, - sym_decltype, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3485), 1, - sym_splice_type_specifier, - STATE(3684), 1, + STATE(3169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7260), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(5452), 1, + sym_type_specifier, + STATE(8708), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(12834), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678723,61 +678038,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269405] = 25, + [269075] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(3893), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(4316), 1, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3802), 1, + anon_sym_enum, + ACTIONS(3804), 1, anon_sym_class, - ACTIONS(4318), 1, + ACTIONS(3806), 1, anon_sym_struct, - ACTIONS(4320), 1, + ACTIONS(3808), 1, anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(12759), 1, - anon_sym_enum, - ACTIONS(12761), 1, + ACTIONS(11091), 1, anon_sym_typename, - STATE(3711), 1, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3759), 1, + STATE(3117), 1, + sym_decltype_auto, + STATE(3211), 1, + sym_type_specifier, + STATE(3661), 1, sym_template_type, - STATE(3762), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3819), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(4108), 1, - sym_type_specifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(4263), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(8675), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(3029), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12757), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678785,61 +678100,104 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269492] = 25, + [269162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(2919), 1, + sym_template_argument_list, + ACTIONS(6559), 4, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_const, + ACTIONS(6566), 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, - ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(2314), 1, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [269211] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4195), 1, anon_sym_enum, - ACTIONS(2316), 1, + ACTIONS(4197), 1, anon_sym_class, - ACTIONS(2318), 1, + ACTIONS(4199), 1, anon_sym_struct, - ACTIONS(2320), 1, + ACTIONS(4201), 1, anon_sym_union, - ACTIONS(3466), 1, - sym_primitive_type, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(4207), 1, + sym_auto, + ACTIONS(4209), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5629), 1, - anon_sym_typename, - ACTIONS(6455), 1, + ACTIONS(11079), 1, sym_identifier, - ACTIONS(6469), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, + ACTIONS(11083), 1, + sym_primitive_type, + ACTIONS(11085), 1, + anon_sym_typename, + STATE(2267), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4578), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(2728), 1, sym_template_type, - STATE(4601), 1, + STATE(2818), 1, sym_qualified_type_identifier, - STATE(4776), 1, - sym_type_specifier, - STATE(4948), 1, + STATE(3096), 1, sym_decltype_auto, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(3138), 1, + sym_type_specifier, + STATE(8746), 1, sym__scope_resolution, - STATE(4830), 2, + STATE(2978), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(4191), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(3097), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678847,61 +678205,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269579] = 25, + [269298] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(3734), 1, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(4411), 1, + anon_sym_enum, + ACTIONS(4413), 1, anon_sym_class, - ACTIONS(3736), 1, + ACTIONS(4415), 1, anon_sym_struct, - ACTIONS(3738), 1, + ACTIONS(4417), 1, anon_sym_union, - ACTIONS(3742), 1, - sym_auto, - ACTIONS(3744), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11093), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, - sym_primitive_type, - ACTIONS(13038), 1, - anon_sym_enum, - ACTIONS(13040), 1, + ACTIONS(11097), 1, anon_sym_typename, - STATE(2360), 1, + STATE(2914), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(3728), 1, sym_template_type, - STATE(2698), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, sym_qualified_type_identifier, - STATE(2997), 1, + STATE(4080), 1, sym_decltype_auto, - STATE(4647), 1, + STATE(4086), 1, sym_type_specifier, - STATE(8682), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(2942), 2, + STATE(3960), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13036), 4, + ACTIONS(4407), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678909,61 +678267,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269666] = 25, + [269385] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(4429), 1, + ACTIONS(4169), 1, anon_sym_class, - ACTIONS(4431), 1, + ACTIONS(4171), 1, anon_sym_struct, - ACTIONS(4433), 1, + ACTIONS(4173), 1, anon_sym_union, - ACTIONS(4439), 1, + ACTIONS(4179), 1, sym_auto, - ACTIONS(4441), 1, + ACTIONS(4181), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(4257), 1, + anon_sym_enum, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11089), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(11091), 1, + ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(12795), 1, - anon_sym_enum, - ACTIONS(12797), 1, + ACTIONS(11099), 1, + sym_identifier, + ACTIONS(11101), 1, anon_sym_typename, - STATE(2377), 1, + STATE(2073), 1, + sym_template_type, + STATE(2088), 1, + sym_qualified_type_identifier, + STATE(2093), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(2701), 1, - sym_template_type, - STATE(2781), 1, - sym_qualified_type_identifier, - STATE(3099), 1, + STATE(2172), 1, sym_decltype_auto, - STATE(4881), 1, + STATE(2184), 1, sym_type_specifier, - STATE(8687), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(2984), 2, + STATE(2148), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12793), 4, + ACTIONS(4253), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 7, + STATE(2173), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -678971,31 +678329,48 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269753] = 6, + [269472] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(12065), 1, - anon_sym_decltype, - ACTIONS(13121), 1, - sym_auto, - STATE(7607), 1, - sym_decltype_auto, - ACTIONS(7223), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7225), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11983), 1, + sym_identifier, + ACTIONS(11985), 1, anon_sym_LPAREN2, + ACTIONS(11987), 1, anon_sym_STAR, + ACTIONS(11989), 1, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(11991), 1, + anon_sym_AMP, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(8660), 1, + sym__field_declarator, + STATE(8822), 1, + sym_operator_name, + STATE(10677), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8836), 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(3368), 13, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -679007,150 +678382,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [269802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5796), 1, - anon_sym_SEMI, - ACTIONS(5645), 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(5638), 25, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [269847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5906), 1, - anon_sym_SEMI, - ACTIONS(5645), 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(5638), 25, - 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_or, - anon_sym_and, - anon_sym_bitor, - anon_sym_xor, - anon_sym_bitand, - anon_sym_not_eq, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS, - anon_sym_DOT_STAR, - anon_sym_DASH_GT, - [269892] = 25, + [269541] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(3873), 1, + ACTIONS(4169), 1, anon_sym_class, - ACTIONS(3875), 1, + ACTIONS(4171), 1, anon_sym_struct, - ACTIONS(3877), 1, + ACTIONS(4173), 1, anon_sym_union, - ACTIONS(3891), 1, + ACTIONS(4179), 1, sym_auto, - ACTIONS(3893), 1, + ACTIONS(4181), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(11109), 1, + ACTIONS(11099), 1, sym_identifier, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(12875), 1, + ACTIONS(12754), 1, anon_sym_enum, - ACTIONS(12877), 1, + ACTIONS(12756), 1, anon_sym_typename, - STATE(3375), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3759), 1, + STATE(2073), 1, sym_template_type, - STATE(3819), 1, + STATE(2088), 1, sym_qualified_type_identifier, - STATE(4119), 1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, sym_decltype_auto, - STATE(5335), 1, + STATE(2199), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3528), 1, sym_type_specifier, - STATE(8707), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(2148), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12873), 4, + ACTIONS(12752), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(2173), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679158,61 +678444,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [269979] = 25, + [269628] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(4427), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10044), 1, + anon_sym_LBRACE, + ACTIONS(11007), 1, + anon_sym_COLON_COLON, + ACTIONS(13100), 1, + sym_identifier, + STATE(4219), 1, + sym_splice_specifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(4399), 1, + sym__class_declaration_item, + STATE(7800), 1, + sym_ms_declspec_modifier, + STATE(8722), 1, + sym__scope_resolution, + STATE(9509), 1, + sym_virtual_specifier, + STATE(10341), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3999), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7890), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8399), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [269717] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + sym_identifier, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5142), 1, + sym_primitive_type, + ACTIONS(5144), 1, anon_sym_enum, - ACTIONS(4429), 1, + ACTIONS(5146), 1, anon_sym_class, - ACTIONS(4431), 1, + ACTIONS(5148), 1, anon_sym_struct, - ACTIONS(4433), 1, + ACTIONS(5150), 1, anon_sym_union, - ACTIONS(4439), 1, + ACTIONS(5152), 1, + anon_sym_typename, + ACTIONS(5154), 1, sym_auto, - ACTIONS(4441), 1, + ACTIONS(5156), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11087), 1, - sym_identifier, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(11091), 1, - sym_primitive_type, - ACTIONS(11093), 1, - anon_sym_typename, - STATE(2283), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(4393), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(2696), 1, - sym__splice_specialization_specifier, - STATE(2701), 1, + STATE(5341), 1, sym_template_type, - STATE(2781), 1, + STATE(5354), 1, + sym__splice_specialization_specifier, + STATE(5691), 1, sym_qualified_type_identifier, - STATE(3089), 1, + STATE(6023), 1, sym_type_specifier, - STATE(3099), 1, + STATE(6056), 1, sym_decltype_auto, - STATE(8687), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(2984), 2, + STATE(5990), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4423), 4, + ACTIONS(5140), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 7, + STATE(6059), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679220,62 +678569,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270066] = 26, + [269804] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(3807), 1, + ACTIONS(3832), 1, anon_sym_enum, - ACTIONS(3809), 1, + ACTIONS(3834), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(3836), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(3838), 1, anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(11005), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(11040), 1, - sym_primitive_type, - ACTIONS(11042), 1, + ACTIONS(11009), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2076), 1, + STATE(3579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, + STATE(4143), 1, + sym_template_type, + STATE(4219), 1, sym_splice_specifier, - STATE(2169), 1, - sym_decltype, - STATE(2170), 1, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(2211), 1, - sym_splice_type_specifier, - STATE(2221), 1, + STATE(4361), 1, + sym_decltype, + STATE(4522), 1, sym_decltype_auto, - STATE(2233), 1, + STATE(4543), 1, sym_type_specifier, - STATE(8763), 1, + STATE(4735), 1, + sym_splice_type_specifier, + STATE(8722), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3803), 4, + ACTIONS(3830), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(4523), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679283,61 +678632,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270155] = 25, + [269893] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4167), 1, + anon_sym_enum, + ACTIONS(4169), 1, + anon_sym_class, + ACTIONS(4171), 1, + anon_sym_struct, + ACTIONS(4173), 1, + anon_sym_union, + ACTIONS(4179), 1, sym_auto, - ACTIONS(131), 1, + ACTIONS(4181), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13170), 1, + ACTIONS(10964), 1, sym_identifier, - ACTIONS(13172), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13176), 1, + ACTIONS(10968), 1, sym_primitive_type, - ACTIONS(13178), 1, - anon_sym_enum, - ACTIONS(13180), 1, - anon_sym_class, - ACTIONS(13182), 1, - anon_sym_struct, - ACTIONS(13184), 1, - anon_sym_union, - ACTIONS(13186), 1, + ACTIONS(10970), 1, anon_sym_typename, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4948), 1, - sym_decltype_auto, - STATE(7700), 1, + STATE(2070), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8695), 1, - sym__scope_resolution, - STATE(9262), 1, + STATE(2073), 1, sym_template_type, - STATE(9343), 1, + STATE(2088), 1, sym_qualified_type_identifier, - STATE(10496), 1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(2184), 1, sym_type_specifier, - STATE(4830), 2, + STATE(8665), 1, + sym__scope_resolution, + STATE(2148), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13174), 4, + ACTIONS(4163), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(2173), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679345,61 +678694,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270242] = 25, + [269980] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, + ACTIONS(4169), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(4171), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(4173), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10655), 1, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(11099), 1, sym_identifier, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(12787), 1, + ACTIONS(12754), 1, anon_sym_enum, - ACTIONS(12789), 1, + ACTIONS(12756), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3126), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(2073), 1, sym_template_type, - STATE(3747), 1, + STATE(2088), 1, sym_qualified_type_identifier, - STATE(3800), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(6511), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, + sym_decltype_auto, + STATE(2199), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3555), 1, sym_type_specifier, - STATE(8738), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(2148), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(12752), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(2173), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679407,213 +678756,149 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270329] = 26, + [270067] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, + anon_sym_class, + ACTIONS(2250), 1, + anon_sym_struct, + ACTIONS(2252), 1, + anon_sym_union, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(13154), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, + anon_sym_typename, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4987), 1, - sym__class_declaration_item, - STATE(7812), 1, - sym_ms_declspec_modifier, - STATE(8710), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, + STATE(3117), 1, + sym_decltype_auto, + STATE(3211), 1, + sym_type_specifier, + STATE(3661), 1, sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, - sym__class_name, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(7811), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [270418] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, + STATE(7198), 1, sym_splice_specifier, - STATE(4987), 1, - sym__class_declaration_item, - STATE(7817), 1, - sym_ms_declspec_modifier, - STATE(8705), 1, + STATE(8754), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, - sym_virtual_specifier, - STATE(10528), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7816), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(8412), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(3029), 2, sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - [270507] = 26, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [270154] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9965), 1, + ACTIONS(8522), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13102), 1, sym_identifier, - STATE(4272), 1, + STATE(2800), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3014), 1, sym_field_declaration_list, - STATE(4544), 1, + STATE(3488), 1, sym__class_declaration_item, - STATE(7856), 1, + STATE(7840), 1, sym_ms_declspec_modifier, - STATE(8676), 1, + STATE(8726), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9591), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10213), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3966), 2, + STATE(2621), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2937), 2, sym_template_type, sym_splice_type_specifier, - STATE(7855), 2, + STATE(7837), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(8399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [270596] = 25, + [270243] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(4314), 1, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4195), 1, anon_sym_enum, - ACTIONS(4316), 1, + ACTIONS(4197), 1, anon_sym_class, - ACTIONS(4318), 1, + ACTIONS(4199), 1, anon_sym_struct, - ACTIONS(4320), 1, + ACTIONS(4201), 1, anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(4207), 1, + sym_auto, + ACTIONS(4209), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, ACTIONS(11079), 1, sym_identifier, @@ -679623,34 +678908,35 @@ static const uint16_t ts_small_parse_table[] = { sym_primitive_type, ACTIONS(11085), 1, anon_sym_typename, - STATE(3488), 1, + STATE(2267), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(3759), 1, + STATE(2728), 1, sym_template_type, - STATE(3819), 1, + STATE(2818), 1, sym_qualified_type_identifier, - STATE(4108), 1, - sym_type_specifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(8675), 1, - sym__scope_resolution, - STATE(3967), 2, + STATE(2978), 1, sym_decltype, + STATE(3096), 1, + sym_decltype_auto, + STATE(3138), 1, + sym_type_specifier, + STATE(3234), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(8746), 1, + sym__scope_resolution, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4310), 4, + ACTIONS(4191), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(3097), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679658,109 +678944,48 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [270683] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - STATE(7643), 1, - sym_ref_qualifier, - STATE(8441), 1, - sym_trailing_return_type, - STATE(8497), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7770), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [270768] = 16, + [270332] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11985), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12067), 1, + ACTIONS(12059), 1, + sym_identifier, + ACTIONS(12061), 1, anon_sym_STAR, - ACTIONS(12069), 1, + ACTIONS(12063), 1, anon_sym_AMP_AMP, - ACTIONS(12071), 1, + ACTIONS(12065), 1, anon_sym_AMP, - STATE(4883), 1, - sym_parameter_list, - STATE(6707), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9073), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, + STATE(9053), 1, + sym__field_declarator, + STATE(9170), 1, + sym_operator_name, + STATE(11185), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(6420), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(6823), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11785), 12, + STATE(8836), 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(3368), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -679772,187 +678997,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [270837] = 26, + [270401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3837), 1, - anon_sym_enum, - ACTIONS(3839), 1, - anon_sym_class, - ACTIONS(3841), 1, - anon_sym_struct, - ACTIONS(3843), 1, - anon_sym_union, - ACTIONS(3849), 1, - sym_auto, - ACTIONS(3851), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11101), 1, - anon_sym_typename, - STATE(2263), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2712), 1, - sym_template_type, - STATE(2843), 1, - sym_qualified_type_identifier, - STATE(3053), 1, - sym_decltype, - STATE(3166), 1, - sym_decltype_auto, - STATE(3219), 1, - sym_splice_type_specifier, - STATE(3238), 1, - sym_type_specifier, - STATE(8702), 1, - sym__scope_resolution, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3833), 4, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + ACTIONS(5637), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(7379), 28, + 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, - STATE(3167), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [270926] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(11427), 1, - anon_sym_LBRACE, - ACTIONS(13125), 1, + anon_sym_const, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, - sym__splice_specialization_specifier, - STATE(5954), 1, - sym_field_declaration_list, - STATE(6122), 1, - sym__class_declaration_item, - STATE(7873), 1, - sym_ms_declspec_modifier, - STATE(8757), 1, - sym__scope_resolution, - STATE(9636), 1, - sym_virtual_specifier, - STATE(10429), 1, - sym_base_class_clause, - ACTIONS(7245), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7872), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [271015] = 25, + [270450] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(3839), 1, + ACTIONS(4169), 1, anon_sym_class, - ACTIONS(3841), 1, + ACTIONS(4171), 1, anon_sym_struct, - ACTIONS(3843), 1, + ACTIONS(4173), 1, anon_sym_union, - ACTIONS(3849), 1, + ACTIONS(4179), 1, sym_auto, - ACTIONS(3851), 1, + ACTIONS(4181), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11095), 1, - sym_identifier, - ACTIONS(11097), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(12839), 1, + ACTIONS(11099), 1, + sym_identifier, + ACTIONS(12754), 1, anon_sym_enum, - ACTIONS(12841), 1, + ACTIONS(12756), 1, anon_sym_typename, - STATE(2385), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2712), 1, + STATE(2073), 1, sym_template_type, - STATE(2843), 1, + STATE(2088), 1, sym_qualified_type_identifier, - STATE(3166), 1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, sym_decltype_auto, - STATE(4849), 1, + STATE(2184), 1, sym_type_specifier, - STATE(8702), 1, + STATE(2199), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8665), 1, sym__scope_resolution, - STATE(3053), 2, + STATE(2148), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12837), 4, + ACTIONS(12752), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3167), 7, + STATE(2173), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -679960,22 +679102,24 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271102] = 25, + [270537] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(4064), 1, + ACTIONS(4028), 1, + anon_sym_enum, + ACTIONS(4030), 1, anon_sym_class, - ACTIONS(4066), 1, + ACTIONS(4032), 1, anon_sym_struct, - ACTIONS(4068), 1, + ACTIONS(4034), 1, anon_sym_union, - ACTIONS(4072), 1, + ACTIONS(4040), 1, sym_auto, - ACTIONS(4074), 1, + ACTIONS(4042), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, ACTIONS(11071), 1, sym_identifier, @@ -679983,38 +679127,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(11075), 1, sym_primitive_type, - ACTIONS(13052), 1, - anon_sym_enum, - ACTIONS(13054), 1, + ACTIONS(11077), 1, anon_sym_typename, - STATE(2449), 1, + STATE(2264), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(2921), 1, - sym__splice_specialization_specifier, - STATE(2933), 1, + STATE(2665), 1, sym_template_type, - STATE(3031), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2733), 1, sym_qualified_type_identifier, - STATE(3527), 1, - sym_decltype_auto, - STATE(5298), 1, - sym_type_specifier, - STATE(8686), 1, - sym__scope_resolution, - STATE(3447), 2, + STATE(3080), 1, sym_decltype, + STATE(3107), 1, + sym_type_specifier, + STATE(3191), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(3230), 1, + sym_decltype_auto, + STATE(8741), 1, + sym__scope_resolution, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13050), 4, + ACTIONS(4024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3528), 7, + STATE(3236), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680022,62 +679165,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271189] = 26, + [270626] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(3732), 1, - anon_sym_enum, - ACTIONS(3734), 1, + ACTIONS(3804), 1, anon_sym_class, - ACTIONS(3736), 1, + ACTIONS(3806), 1, anon_sym_struct, - ACTIONS(3738), 1, + ACTIONS(3808), 1, anon_sym_union, - ACTIONS(3742), 1, - sym_auto, - ACTIONS(3744), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11008), 1, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(11010), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(11012), 1, - sym_primitive_type, - ACTIONS(11014), 1, + ACTIONS(12836), 1, + anon_sym_enum, + ACTIONS(12838), 1, anon_sym_typename, - STATE(2180), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2622), 1, + STATE(3117), 1, + sym_decltype_auto, + STATE(3169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3661), 1, sym_template_type, - STATE(2698), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(2942), 1, - sym_decltype, - STATE(2969), 1, - sym_splice_type_specifier, - STATE(2997), 1, - sym_decltype_auto, - STATE(3023), 1, + STATE(3770), 1, + sym_splice_specifier, + STATE(5514), 1, sym_type_specifier, - STATE(8682), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3728), 4, + ACTIONS(12834), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3067), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680085,38 +679227,38 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271278] = 16, + [270713] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, anon_sym_LPAREN2, - ACTIONS(11989), 1, + ACTIONS(12059), 1, + sym_identifier, + ACTIONS(12061), 1, anon_sym_STAR, - ACTIONS(11991), 1, + ACTIONS(12063), 1, anon_sym_AMP_AMP, - ACTIONS(11993), 1, + ACTIONS(12065), 1, anon_sym_AMP, - STATE(7511), 1, + STATE(7556), 1, sym_alignas_qualifier, - STATE(8625), 1, + STATE(9056), 1, sym__field_declarator, - STATE(8807), 1, + STATE(9170), 1, sym_operator_name, - STATE(10687), 1, + STATE(11185), 1, sym_ms_based_modifier, - ACTIONS(3272), 2, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, + STATE(7149), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8839), 7, + STATE(8836), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -680124,7 +679266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - ACTIONS(3270), 13, + ACTIONS(3368), 13, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -680138,168 +679280,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [271347] = 6, + [270782] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(3232), 1, + anon_sym_enum, + ACTIONS(3234), 1, + anon_sym_class, + ACTIONS(3236), 1, + anon_sym_struct, + ACTIONS(3238), 1, + anon_sym_union, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10990), 1, + sym_identifier, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(5657), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(7371), 28, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym_COLON, - anon_sym___based, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(10996), 1, + anon_sym_typename, + STATE(4143), 1, + sym_template_type, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, + sym_decltype_auto, + STATE(4543), 1, + sym_type_specifier, + STATE(6638), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(7353), 1, + sym_splice_specifier, + STATE(8710), 1, + sym__scope_resolution, + STATE(4361), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(3228), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - anon_sym_const, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - anon_sym_final, - anon_sym_override, - [271396] = 26, + STATE(4523), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [270869] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3704), 1, + ACTIONS(2246), 1, anon_sym_enum, - ACTIONS(3706), 1, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(11107), 1, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(10649), 1, anon_sym_typename, - STATE(2852), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3021), 1, + STATE(3029), 1, sym_decltype, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3485), 1, + STATE(3211), 1, + sym_type_specifier, + STATE(3577), 1, sym_splice_type_specifier, - STATE(3684), 1, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [270958] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + ACTIONS(13089), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4802), 1, + sym__class_declaration_item, + STATE(7868), 1, + sym_ms_declspec_modifier, + STATE(8695), 1, + sym__scope_resolution, + STATE(9461), 1, + sym_virtual_specifier, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, sym_template_type, - STATE(3747), 1, + sym_splice_type_specifier, + STATE(6256), 2, + sym__class_name, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(8738), 1, - sym__scope_resolution, - STATE(10768), 2, + STATE(7844), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8399), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [271485] = 26, + [271047] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(129), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3704), 1, + ACTIONS(2312), 1, anon_sym_enum, - ACTIONS(3706), 1, + ACTIONS(2314), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(2316), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(2318), 1, anon_sym_union, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10655), 1, + ACTIONS(3464), 1, sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5671), 1, + anon_sym_typename, + ACTIONS(6449), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(11107), 1, - anon_sym_typename, - STATE(2852), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3021), 1, - sym_decltype, - STATE(3028), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(3785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4577), 1, sym_template_type, - STATE(3747), 1, + STATE(4597), 1, sym_qualified_type_identifier, - STATE(3800), 1, + STATE(4839), 1, + sym_decltype_auto, + STATE(5015), 1, + sym_type_specifier, + STATE(5032), 1, sym_splice_specifier, - STATE(4698), 1, - sym_splice_type_specifier, - STATE(8738), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(4927), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4852), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680307,62 +679530,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271574] = 26, + [271134] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(4427), 1, + ACTIONS(4167), 1, anon_sym_enum, - ACTIONS(4429), 1, + ACTIONS(4169), 1, anon_sym_class, - ACTIONS(4431), 1, + ACTIONS(4171), 1, anon_sym_struct, - ACTIONS(4433), 1, + ACTIONS(4173), 1, anon_sym_union, - ACTIONS(4439), 1, + ACTIONS(4179), 1, sym_auto, - ACTIONS(4441), 1, + ACTIONS(4181), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11087), 1, + ACTIONS(10964), 1, sym_identifier, - ACTIONS(11089), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(11091), 1, + ACTIONS(10968), 1, sym_primitive_type, - ACTIONS(11093), 1, + ACTIONS(10970), 1, anon_sym_typename, - STATE(2283), 1, + STATE(2070), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, - sym__splice_specialization_specifier, - STATE(2701), 1, + STATE(2073), 1, sym_template_type, - STATE(2781), 1, + STATE(2088), 1, sym_qualified_type_identifier, - STATE(2984), 1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2148), 1, sym_decltype, - STATE(3089), 1, - sym_type_specifier, - STATE(3099), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2172), 1, sym_decltype_auto, - STATE(3153), 1, + STATE(2174), 1, sym_splice_type_specifier, - STATE(8687), 1, + STATE(2184), 1, + sym_type_specifier, + STATE(8665), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4423), 4, + ACTIONS(4163), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 7, + STATE(2173), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680370,123 +679593,165 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271663] = 25, + [271223] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, - anon_sym_class, - ACTIONS(3811), 1, - anon_sym_struct, - ACTIONS(3813), 1, - anon_sym_union, - ACTIONS(3819), 1, - sym_auto, - ACTIONS(3821), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(7262), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, - sym_primitive_type, - ACTIONS(11115), 1, + ACTIONS(13133), 1, sym_identifier, - ACTIONS(12897), 1, - anon_sym_enum, - ACTIONS(12899), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(2210), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2221), 1, - sym_decltype_auto, - STATE(3566), 1, - sym_type_specifier, - STATE(8763), 1, + STATE(2152), 1, + sym_field_declaration_list, + STATE(2207), 1, + sym__class_declaration_item, + STATE(7830), 1, + sym_ms_declspec_modifier, + STATE(8665), 1, sym__scope_resolution, - STATE(2169), 2, - sym_decltype, + STATE(9605), 1, + sym_virtual_specifier, + STATE(10264), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2074), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2153), 2, + sym_template_type, sym_splice_type_specifier, - STATE(10768), 2, + STATE(7829), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8399), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12895), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [271750] = 25, + [271312] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5912), 1, + anon_sym_SEMI, + ACTIONS(5619), 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(5611), 25, + 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [271357] = 25, ACTIONS(3), 1, sym_comment, ACTIONS(129), 1, sym_auto, ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(3466), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13157), 1, + sym_identifier, + ACTIONS(13159), 1, + anon_sym_COLON_COLON, + ACTIONS(13163), 1, sym_primitive_type, - ACTIONS(3468), 1, + ACTIONS(13165), 1, anon_sym_enum, - ACTIONS(3470), 1, + ACTIONS(13167), 1, anon_sym_class, - ACTIONS(3472), 1, + ACTIONS(13169), 1, anon_sym_struct, - ACTIONS(3474), 1, + ACTIONS(13171), 1, anon_sym_union, - ACTIONS(3476), 1, + ACTIONS(13173), 1, anon_sym_typename, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5936), 1, - sym_identifier, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3824), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4504), 1, + STATE(4839), 1, + sym_decltype_auto, + STATE(4989), 1, sym_splice_specifier, - STATE(4578), 1, + STATE(7679), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8742), 1, + sym__scope_resolution, + STATE(9220), 1, sym_template_type, - STATE(4601), 1, + STATE(9372), 1, sym_qualified_type_identifier, - STATE(4776), 1, + STATE(10250), 1, sym_type_specifier, - STATE(4948), 1, - sym_decltype_auto, - STATE(8716), 1, - sym__scope_resolution, - STATE(4830), 2, + STATE(4927), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(13161), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(4852), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680494,177 +679759,187 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [271837] = 26, + [271444] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9246), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(3711), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(3216), 1, + sym__class_declaration_item, + STATE(3770), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(3890), 1, sym_field_declaration_list, - STATE(4131), 1, - sym__class_declaration_item, - STATE(7883), 1, + STATE(7809), 1, sym_ms_declspec_modifier, - STATE(8707), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3540), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3728), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7882), 2, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7900), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(8399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [271926] = 16, + [271533] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12067), 1, - anon_sym_STAR, - ACTIONS(12069), 1, - anon_sym_AMP_AMP, - ACTIONS(12071), 1, - anon_sym_AMP, - STATE(4883), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9042), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7345), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [271995] = 25, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3804), 1, + anon_sym_class, + ACTIONS(3806), 1, + anon_sym_struct, + ACTIONS(3808), 1, + anon_sym_union, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, + ACTIONS(11087), 1, + sym_identifier, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(12836), 1, + anon_sym_enum, + ACTIONS(12838), 1, + anon_sym_typename, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, + sym_decltype_auto, + STATE(3169), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3211), 1, + sym_type_specifier, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(8708), 1, + sym__scope_resolution, + STATE(3029), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, + sym_dependent_type_identifier, + sym_splice_expression, + ACTIONS(12834), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3139), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [271620] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3104), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(4064), 1, + ACTIONS(3895), 1, + anon_sym_enum, + ACTIONS(3897), 1, anon_sym_class, - ACTIONS(4066), 1, + ACTIONS(3899), 1, anon_sym_struct, - ACTIONS(4068), 1, + ACTIONS(3901), 1, anon_sym_union, - ACTIONS(4072), 1, + ACTIONS(3905), 1, sym_auto, - ACTIONS(4074), 1, + ACTIONS(3907), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11071), 1, + ACTIONS(11055), 1, sym_identifier, - ACTIONS(11073), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(11075), 1, + ACTIONS(11059), 1, sym_primitive_type, - ACTIONS(13052), 1, - anon_sym_enum, - ACTIONS(13054), 1, + ACTIONS(11061), 1, anon_sym_typename, - STATE(2449), 1, + STATE(2345), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2742), 1, + STATE(2800), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(2933), 1, + STATE(2901), 1, sym_template_type, - STATE(3031), 1, + STATE(3048), 1, sym_qualified_type_identifier, - STATE(3527), 1, - sym_decltype_auto, - STATE(5385), 1, - sym_type_specifier, - STATE(8686), 1, - sym__scope_resolution, - STATE(3447), 2, + STATE(3396), 1, sym_decltype, + STATE(3505), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(3531), 1, + sym_type_specifier, + STATE(3576), 1, + sym_decltype_auto, + STATE(8726), 1, + sym__scope_resolution, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13050), 4, + ACTIONS(3891), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3528), 7, + STATE(3575), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680672,122 +679947,122 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272082] = 24, + [271709] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10366), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10368), 1, anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11044), 1, + ACTIONS(10931), 1, anon_sym_DASH_GT, - ACTIONS(13188), 1, + ACTIONS(10933), 1, anon_sym_requires, - STATE(7653), 1, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + STATE(7620), 1, sym_ref_qualifier, - STATE(8398), 1, + STATE(8373), 1, sym_trailing_return_type, - STATE(8627), 1, + STATE(8479), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - STATE(7794), 3, + STATE(7750), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 5, + ACTIONS(7874), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [272167] = 25, + anon_sym_GT2, + [271794] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(10986), 1, + ACTIONS(11025), 1, sym_identifier, - ACTIONS(10988), 1, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(10992), 1, + ACTIONS(11031), 1, sym_primitive_type, - ACTIONS(10994), 1, + ACTIONS(11033), 1, anon_sym_enum, - ACTIONS(10996), 1, + ACTIONS(11035), 1, anon_sym_class, - ACTIONS(10998), 1, + ACTIONS(11037), 1, anon_sym_struct, - ACTIONS(11000), 1, + ACTIONS(11039), 1, anon_sym_union, - ACTIONS(11002), 1, + ACTIONS(11041), 1, anon_sym_typename, - ACTIONS(11004), 1, + ACTIONS(11043), 1, sym_auto, - ACTIONS(11006), 1, + ACTIONS(11045), 1, anon_sym_decltype, - STATE(6426), 1, + STATE(6416), 1, aux_sym_sized_type_specifier_repeat1, - STATE(6581), 1, + STATE(6587), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(7225), 1, + STATE(7280), 1, sym_template_type, - STATE(7440), 1, + STATE(7398), 1, sym_qualified_type_identifier, - STATE(7625), 1, - sym_decltype_auto, - STATE(7639), 1, + STATE(7602), 1, sym_type_specifier, - STATE(8700), 1, + STATE(7639), 1, + sym_decltype_auto, + STATE(8745), 1, sym__scope_resolution, - STATE(7592), 2, + STATE(7597), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(10990), 4, + ACTIONS(11029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(7655), 7, + STATE(7640), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680795,185 +680070,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272254] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - STATE(7644), 1, - sym_ref_qualifier, - STATE(8441), 1, - sym_trailing_return_type, - STATE(8631), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7759), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [272339] = 26, + [271881] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8233), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(8297), 1, - anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(2605), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(2786), 1, sym_field_declaration_list, - STATE(3165), 1, + STATE(3194), 1, sym__class_declaration_item, - STATE(7809), 1, + STATE(7901), 1, sym_ms_declspec_modifier, - STATE(8702), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(9425), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(10409), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2475), 2, + STATE(2439), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(2688), 2, sym_template_type, sym_splice_type_specifier, - STATE(7808), 2, + STATE(7848), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(8399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [272428] = 25, + [271970] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, + ACTIONS(3264), 1, + sym_auto, + ACTIONS(3266), 1, + anon_sym_decltype, + ACTIONS(3284), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3832), 1, anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(3834), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(3836), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(3838), 1, anon_sym_union, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(11005), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(11009), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(3579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(4143), 1, sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(7260), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(4265), 1, + sym_qualified_type_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, + sym_decltype_auto, + STATE(4543), 1, + sym_type_specifier, + STATE(8722), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(4361), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(3830), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4523), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -680981,61 +680195,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272515] = 25, + [272057] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3975), 1, sym_auto, - ACTIONS(3238), 1, + ACTIONS(3977), 1, anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4397), 1, - anon_sym_enum, - ACTIONS(4399), 1, + ACTIONS(4413), 1, anon_sym_class, - ACTIONS(4401), 1, + ACTIONS(4415), 1, anon_sym_struct, - ACTIONS(4403), 1, + ACTIONS(4417), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11050), 1, + ACTIONS(11067), 1, sym_primitive_type, - ACTIONS(11057), 1, + ACTIONS(11093), 1, sym_identifier, - ACTIONS(11059), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(11061), 1, + ACTIONS(13057), 1, + anon_sym_enum, + ACTIONS(13059), 1, anon_sym_typename, - STATE(3490), 1, + STATE(3454), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, - sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4272), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(4426), 1, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(4080), 1, sym_decltype_auto, - STATE(4457), 1, + STATE(5514), 1, sym_type_specifier, - STATE(8676), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(4373), 2, + STATE(3960), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(4395), 4, + ACTIONS(13055), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681043,186 +680257,122 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272602] = 26, + [272144] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3185), 1, - sym__class_declaration_item, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(7841), 1, - sym_ms_declspec_modifier, - STATE(8711), 1, - sym__scope_resolution, - STATE(9550), 1, - sym_virtual_specifier, - STATE(10518), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(7601), 1, + sym_ref_qualifier, + STATE(8373), 1, + sym_trailing_return_type, + STATE(8604), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7857), 2, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [272691] = 25, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7794), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [272229] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(75), 1, + anon_sym_enum, + ACTIONS(77), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(79), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(81), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(129), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(3464), 1, sym_primitive_type, - ACTIONS(11115), 1, - sym_identifier, - ACTIONS(12897), 1, - anon_sym_enum, - ACTIONS(12899), 1, - anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2210), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(2221), 1, - sym_decltype_auto, - STATE(3581), 1, - sym_type_specifier, - STATE(8763), 1, - sym__scope_resolution, - STATE(2169), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(12895), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(2222), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [272778] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2602), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(3873), 1, - anon_sym_class, - ACTIONS(3875), 1, - anon_sym_struct, - ACTIONS(3877), 1, - anon_sym_union, - ACTIONS(3891), 1, - sym_auto, - ACTIONS(3893), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11109), 1, + ACTIONS(5462), 1, + anon_sym_typename, + ACTIONS(5930), 1, sym_identifier, - ACTIONS(11111), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(12875), 1, - anon_sym_enum, - ACTIONS(12877), 1, - anon_sym_typename, - STATE(3375), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3711), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(3785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4461), 1, sym_splice_specifier, - STATE(3759), 1, + STATE(4577), 1, sym_template_type, - STATE(3819), 1, + STATE(4597), 1, sym_qualified_type_identifier, - STATE(4119), 1, + STATE(4839), 1, sym_decltype_auto, - STATE(5431), 1, + STATE(5015), 1, sym_type_specifier, - STATE(8707), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(4927), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12873), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(4852), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681230,124 +680380,229 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [272865] = 26, + [272316] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11983), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4987), 1, - sym__class_declaration_item, - STATE(7890), 1, - sym_ms_declspec_modifier, - STATE(8716), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(11987), 1, + anon_sym_STAR, + ACTIONS(11989), 1, + anon_sym_AMP_AMP, + ACTIONS(11991), 1, + anon_sym_AMP, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(8605), 1, + sym__field_declarator, + STATE(8822), 1, + sym_operator_name, + STATE(10677), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7880), 2, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8836), 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(3368), 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, + [272385] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + ACTIONS(13175), 1, + anon_sym_requires, + STATE(7631), 1, + sym_ref_qualifier, + STATE(8413), 1, + sym_trailing_return_type, + STATE(8483), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, - sym_attribute_specifier, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7761), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [272470] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11983), 1, + sym_identifier, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(11987), 1, + anon_sym_STAR, + ACTIONS(11989), 1, + anon_sym_AMP_AMP, + ACTIONS(11991), 1, + anon_sym_AMP, + STATE(7556), 1, sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [272954] = 25, + STATE(8630), 1, + sym__field_declarator, + STATE(8822), 1, + sym_operator_name, + STATE(10677), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8836), 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(3368), 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, + [272539] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, + ACTIONS(3802), 1, + anon_sym_enum, + ACTIONS(3804), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(3806), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(3808), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10655), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(11087), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(12787), 1, - anon_sym_enum, - ACTIONS(12789), 1, + ACTIONS(11091), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3126), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, + STATE(3029), 1, + sym_decltype, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3117), 1, sym_decltype_auto, - STATE(3684), 1, + STATE(3211), 1, + sym_type_specifier, + STATE(3661), 1, sym_template_type, - STATE(3747), 1, + STATE(3710), 1, sym_qualified_type_identifier, - STATE(3800), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(8738), 1, - sym__scope_resolution, - STATE(3021), 2, - sym_decltype, + STATE(4753), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(8708), 1, + sym__scope_resolution, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681355,230 +680610,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273041] = 26, + [272628] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, - anon_sym___declspec, - ACTIONS(9314), 1, - anon_sym_LBRACE, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(13102), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3185), 1, - sym__class_declaration_item, - STATE(7481), 1, - sym_splice_specifier, - STATE(7709), 1, - sym_field_declaration_list, - STATE(7835), 1, - sym_ms_declspec_modifier, - STATE(8691), 1, - sym__scope_resolution, - STATE(9483), 1, - sym_virtual_specifier, - STATE(10463), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8236), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8244), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7348), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7834), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [273130] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(2992), 1, - sym_template_argument_list, - ACTIONS(7090), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(7085), 28, - 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, - anon_sym_final, - anon_sym_override, - [273179] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(9965), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13127), 1, sym_identifier, - STATE(4305), 1, + STATE(3721), 1, + sym_splice_specifier, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3950), 1, sym_field_declaration_list, - STATE(4544), 1, + STATE(4100), 1, sym__class_declaration_item, - STATE(7326), 1, - sym_splice_specifier, - STATE(7845), 1, + STATE(7855), 1, sym_ms_declspec_modifier, - STATE(8745), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9626), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10569), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3966), 2, + STATE(3526), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(7844), 2, + STATE(7843), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(8399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [273268] = 25, + [272717] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(3945), 1, + anon_sym_class, + ACTIONS(3947), 1, + anon_sym_struct, + ACTIONS(3949), 1, + anon_sym_union, + ACTIONS(3975), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(3977), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(11018), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11063), 1, sym_identifier, - ACTIONS(11020), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(11024), 1, + ACTIONS(11067), 1, sym_primitive_type, - ACTIONS(11026), 1, + ACTIONS(12768), 1, anon_sym_enum, - ACTIONS(11028), 1, - anon_sym_class, - ACTIONS(11030), 1, - anon_sym_struct, - ACTIONS(11032), 1, - anon_sym_union, - ACTIONS(11034), 1, + ACTIONS(12770), 1, anon_sym_typename, - STATE(3028), 1, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(7481), 1, - sym_splice_specifier, - STATE(7606), 1, + STATE(3772), 1, aux_sym_sized_type_specifier_repeat1, - STATE(7693), 1, - sym_template_type, - STATE(7716), 1, + STATE(3787), 1, sym_qualified_type_identifier, - STATE(8691), 1, + STATE(4080), 1, + sym_decltype_auto, + STATE(4222), 1, + sym_splice_specifier, + STATE(6545), 1, + sym_type_specifier, + STATE(8737), 1, sym__scope_resolution, - STATE(3021), 2, + STATE(3960), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(11022), 4, + ACTIONS(12766), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681586,61 +680735,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273355] = 25, + [272804] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(3074), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4030), 1, + anon_sym_class, + ACTIONS(4032), 1, + anon_sym_struct, + ACTIONS(4034), 1, + anon_sym_union, + ACTIONS(4040), 1, sym_auto, - ACTIONS(131), 1, + ACTIONS(4042), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13170), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(13172), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13176), 1, + ACTIONS(11075), 1, sym_primitive_type, - ACTIONS(13178), 1, + ACTIONS(12884), 1, anon_sym_enum, - ACTIONS(13180), 1, - anon_sym_class, - ACTIONS(13182), 1, - anon_sym_struct, - ACTIONS(13184), 1, - anon_sym_union, - ACTIONS(13186), 1, + ACTIONS(12886), 1, anon_sym_typename, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4948), 1, - sym_decltype_auto, - STATE(7700), 1, + STATE(2384), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8695), 1, - sym__scope_resolution, - STATE(9262), 1, + STATE(2631), 1, + sym_splice_specifier, + STATE(2665), 1, sym_template_type, - STATE(9343), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2733), 1, sym_qualified_type_identifier, - STATE(10506), 1, + STATE(3230), 1, + sym_decltype_auto, + STATE(5017), 1, sym_type_specifier, - STATE(4830), 2, + STATE(8741), 1, + sym__scope_resolution, + STATE(3080), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(13174), 4, + ACTIONS(12882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(3236), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681648,62 +680797,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273442] = 26, + [272891] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(129), 1, + ACTIONS(3264), 1, sym_auto, - ACTIONS(131), 1, + ACTIONS(3266), 1, anon_sym_decltype, - ACTIONS(2314), 1, - anon_sym_enum, - ACTIONS(2316), 1, + ACTIONS(3284), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3834), 1, anon_sym_class, - ACTIONS(2318), 1, + ACTIONS(3836), 1, anon_sym_struct, - ACTIONS(2320), 1, + ACTIONS(3838), 1, anon_sym_union, - ACTIONS(3466), 1, - sym_primitive_type, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5629), 1, - anon_sym_typename, - ACTIONS(6455), 1, + ACTIONS(10994), 1, + sym_primitive_type, + ACTIONS(11005), 1, sym_identifier, - ACTIONS(6469), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, + ACTIONS(12949), 1, + anon_sym_enum, + ACTIONS(12951), 1, + anon_sym_typename, + STATE(3768), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4578), 1, + STATE(4143), 1, sym_template_type, - STATE(4601), 1, + STATE(4219), 1, + sym_splice_specifier, + STATE(4265), 1, sym_qualified_type_identifier, - STATE(4609), 1, - sym_splice_type_specifier, - STATE(4776), 1, - sym_type_specifier, - STATE(4830), 1, - sym_decltype, - STATE(4948), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4522), 1, sym_decltype_auto, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(6525), 1, + sym_type_specifier, + STATE(8722), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(4361), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(12947), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(4523), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681711,61 +680859,122 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273531] = 25, + [272978] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(4399), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + ACTIONS(13175), 1, + anon_sym_requires, + STATE(7637), 1, + sym_ref_qualifier, + STATE(8413), 1, + sym_trailing_return_type, + STATE(8662), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7790), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [273063] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 1, anon_sym_class, - ACTIONS(4401), 1, + ACTIONS(3947), 1, anon_sym_struct, - ACTIONS(4403), 1, + ACTIONS(3949), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11057), 1, + ACTIONS(11063), 1, sym_identifier, - ACTIONS(11059), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(12988), 1, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(12768), 1, anon_sym_enum, - ACTIONS(12990), 1, + ACTIONS(12770), 1, anon_sym_typename, - STATE(3770), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, + STATE(3728), 1, sym_template_type, - STATE(4204), 1, - sym_qualified_type_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(4426), 1, + STATE(3772), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3787), 1, + sym_qualified_type_identifier, + STATE(4080), 1, sym_decltype_auto, - STATE(6505), 1, + STATE(4222), 1, + sym_splice_specifier, + STATE(6519), 1, sym_type_specifier, - STATE(8676), 1, + STATE(8737), 1, sym__scope_resolution, - STATE(4373), 2, + STATE(3960), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12986), 4, + ACTIONS(12766), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681773,61 +680982,125 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273618] = 25, + [273150] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13119), 1, + sym_identifier, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4802), 1, + sym__class_declaration_item, + STATE(4989), 1, + sym_splice_specifier, + STATE(7815), 1, + sym_ms_declspec_modifier, + STATE(8748), 1, + sym__scope_resolution, + STATE(9299), 1, + sym_field_declaration_list, + STATE(9584), 1, + sym_virtual_specifier, + STATE(10526), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7866), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8831), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(8399), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [273239] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(2278), 1, + sym_auto, + ACTIONS(2280), 1, + anon_sym_decltype, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(4429), 1, + ACTIONS(3802), 1, + anon_sym_enum, + ACTIONS(3804), 1, anon_sym_class, - ACTIONS(4431), 1, + ACTIONS(3806), 1, anon_sym_struct, - ACTIONS(4433), 1, + ACTIONS(3808), 1, anon_sym_union, - ACTIONS(4439), 1, - sym_auto, - ACTIONS(4441), 1, - anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, + ACTIONS(10647), 1, + sym_primitive_type, ACTIONS(11087), 1, sym_identifier, ACTIONS(11089), 1, anon_sym_COLON_COLON, ACTIONS(11091), 1, - sym_primitive_type, - ACTIONS(12795), 1, - anon_sym_enum, - ACTIONS(12797), 1, anon_sym_typename, - STATE(2377), 1, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + STATE(3029), 1, + sym_decltype, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2701), 1, - sym_template_type, - STATE(2781), 1, - sym_qualified_type_identifier, - STATE(3099), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(4931), 1, + STATE(3211), 1, sym_type_specifier, - STATE(8687), 1, - sym__scope_resolution, - STATE(2984), 2, - sym_decltype, + STATE(3577), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(3770), 1, + sym_splice_specifier, + STATE(8708), 1, + sym__scope_resolution, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12793), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681835,61 +681108,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273705] = 25, + [273328] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3975), 1, sym_auto, - ACTIONS(3893), 1, + ACTIONS(3977), 1, anon_sym_decltype, - ACTIONS(4316), 1, + ACTIONS(4413), 1, anon_sym_class, - ACTIONS(4318), 1, + ACTIONS(4415), 1, anon_sym_struct, - ACTIONS(4320), 1, + ACTIONS(4417), 1, anon_sym_union, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11079), 1, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11093), 1, sym_identifier, - ACTIONS(11081), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(12759), 1, + ACTIONS(13057), 1, anon_sym_enum, - ACTIONS(12761), 1, + ACTIONS(13059), 1, anon_sym_typename, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3762), 1, + STATE(3454), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3819), 1, + STATE(3721), 1, + sym_splice_specifier, + STATE(3728), 1, + sym_template_type, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, sym_qualified_type_identifier, - STATE(4119), 1, + STATE(4080), 1, sym_decltype_auto, - STATE(4263), 1, - sym_splice_specifier, - STATE(6534), 1, + STATE(5452), 1, sym_type_specifier, - STATE(8675), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(3967), 2, + STATE(3960), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12757), 4, + ACTIONS(13055), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4064), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681897,61 +681170,103 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273792] = 25, + [273415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5760), 1, + anon_sym_SEMI, + ACTIONS(5619), 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(5611), 25, + 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [273460] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3204), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(2312), 1, anon_sym_enum, - ACTIONS(3206), 1, + ACTIONS(2314), 1, anon_sym_class, - ACTIONS(3208), 1, + ACTIONS(2316), 1, anon_sym_struct, - ACTIONS(3210), 1, + ACTIONS(2318), 1, anon_sym_union, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(3464), 1, + sym_primitive_type, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(11046), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5671), 1, + anon_sym_typename, + ACTIONS(6449), 1, sym_identifier, - ACTIONS(11048), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11052), 1, - anon_sym_typename, - STATE(4043), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4577), 1, sym_template_type, - STATE(4204), 1, + STATE(4589), 1, + sym_splice_type_specifier, + STATE(4597), 1, sym_qualified_type_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4426), 1, + STATE(4839), 1, sym_decltype_auto, - STATE(4457), 1, + STATE(4927), 1, + sym_decltype, + STATE(5015), 1, sym_type_specifier, - STATE(6642), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(7326), 1, + STATE(5032), 1, sym_splice_specifier, - STATE(8745), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(4373), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3200), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(4852), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -681959,61 +681274,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273879] = 25, + [273549] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, - sym_identifier, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5144), 1, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, + anon_sym_decltype, + ACTIONS(3464), 1, sym_primitive_type, - ACTIONS(5146), 1, + ACTIONS(3466), 1, anon_sym_enum, - ACTIONS(5148), 1, + ACTIONS(3468), 1, anon_sym_class, - ACTIONS(5150), 1, + ACTIONS(3470), 1, anon_sym_struct, - ACTIONS(5152), 1, + ACTIONS(3472), 1, anon_sym_union, - ACTIONS(5154), 1, + ACTIONS(3474), 1, anon_sym_typename, - ACTIONS(5156), 1, - sym_auto, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, ACTIONS(5158), 1, - anon_sym_decltype, - ACTIONS(5160), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(4387), 1, + ACTIONS(5930), 1, + sym_identifier, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4802), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(5365), 1, + STATE(4577), 1, sym_template_type, - STATE(5472), 1, - sym__splice_specialization_specifier, - STATE(5574), 1, + STATE(4597), 1, sym_qualified_type_identifier, - STATE(6026), 1, - sym_type_specifier, - STATE(6031), 1, + STATE(4839), 1, sym_decltype_auto, + STATE(5015), 1, + sym_type_specifier, STATE(8757), 1, sym__scope_resolution, - STATE(5973), 2, + STATE(4927), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(5142), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(6050), 7, + STATE(4852), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682021,62 +681336,102 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [273966] = 26, + [273636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, - anon_sym_enum, - ACTIONS(77), 1, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(5619), 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(5611), 25, + 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_or, + anon_sym_and, + anon_sym_bitor, + anon_sym_xor, + anon_sym_bitand, + anon_sym_not_eq, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, + anon_sym_DOT_STAR, + anon_sym_DASH_GT, + [273681] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4030), 1, anon_sym_class, - ACTIONS(79), 1, + ACTIONS(4032), 1, anon_sym_struct, - ACTIONS(81), 1, + ACTIONS(4034), 1, anon_sym_union, - ACTIONS(129), 1, + ACTIONS(4040), 1, sym_auto, - ACTIONS(131), 1, + ACTIONS(4042), 1, anon_sym_decltype, - ACTIONS(3466), 1, - sym_primitive_type, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5464), 1, - anon_sym_typename, - ACTIONS(5936), 1, + ACTIONS(11071), 1, sym_identifier, - ACTIONS(5938), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, + ACTIONS(11075), 1, + sym_primitive_type, + ACTIONS(12884), 1, + anon_sym_enum, + ACTIONS(12886), 1, + anon_sym_typename, + STATE(2384), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4504), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(4578), 1, + STATE(2665), 1, sym_template_type, - STATE(4601), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2733), 1, sym_qualified_type_identifier, - STATE(4609), 1, - sym_splice_type_specifier, - STATE(4776), 1, - sym_type_specifier, - STATE(4830), 1, - sym_decltype, - STATE(4948), 1, + STATE(3230), 1, sym_decltype_auto, - STATE(8716), 1, + STATE(4903), 1, + sym_type_specifier, + STATE(8741), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(3080), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(12882), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(3236), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682084,188 +681439,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274055] = 26, + [273768] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(11038), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(12844), 1, + anon_sym_LBRACE, + ACTIONS(13123), 1, sym_identifier, - STATE(2104), 1, + STATE(6587), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(7583), 1, sym_field_declaration_list, - STATE(2190), 1, + STATE(7614), 1, sym__class_declaration_item, - STATE(7814), 1, + STATE(7891), 1, sym_ms_declspec_modifier, - STATE(8763), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(9594), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(10562), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2075), 2, + STATE(6994), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(7040), 2, sym_template_type, sym_splice_type_specifier, - STATE(7813), 2, + STATE(7889), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(8399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [274144] = 26, + [273857] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3871), 1, + ACTIONS(3943), 1, anon_sym_enum, - ACTIONS(3873), 1, + ACTIONS(3945), 1, anon_sym_class, - ACTIONS(3875), 1, + ACTIONS(3947), 1, anon_sym_struct, - ACTIONS(3877), 1, + ACTIONS(3949), 1, anon_sym_union, - ACTIONS(3891), 1, + ACTIONS(3975), 1, sym_auto, - ACTIONS(3893), 1, + ACTIONS(3977), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11083), 1, - sym_primitive_type, - ACTIONS(11109), 1, + ACTIONS(11063), 1, sym_identifier, - ACTIONS(11111), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(11113), 1, - anon_sym_typename, - STATE(2941), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3485), 1, - sym_splice_type_specifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3759), 1, - sym_template_type, - STATE(3819), 1, - sym_qualified_type_identifier, - STATE(3967), 1, - sym_decltype, - STATE(4108), 1, - sym_type_specifier, - STATE(4119), 1, - sym_decltype_auto, - STATE(8707), 1, - sym__scope_resolution, - STATE(10768), 2, - sym_dependent_type_identifier, - sym_splice_expression, - ACTIONS(3867), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(4064), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [274233] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, - anon_sym_decltype, - ACTIONS(2314), 1, - anon_sym_enum, - ACTIONS(2316), 1, - anon_sym_class, - ACTIONS(2318), 1, - anon_sym_struct, - ACTIONS(2320), 1, - anon_sym_union, - ACTIONS(3466), 1, + ACTIONS(11067), 1, sym_primitive_type, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5629), 1, + ACTIONS(11069), 1, anon_sym_typename, - ACTIONS(6455), 1, - sym_identifier, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, + STATE(3511), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4578), 1, + STATE(3728), 1, sym_template_type, - STATE(4601), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, sym_qualified_type_identifier, - STATE(4776), 1, - sym_type_specifier, - STATE(4830), 1, - sym_decltype, - STATE(4948), 1, + STATE(4080), 1, sym_decltype_auto, - STATE(5157), 1, + STATE(4086), 1, + sym_type_specifier, + STATE(4222), 1, sym_splice_specifier, - STATE(5943), 1, - sym_splice_type_specifier, - STATE(8756), 1, + STATE(8737), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(3960), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(3939), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682273,123 +681564,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274322] = 25, + [273944] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, - anon_sym_class, - ACTIONS(3708), 1, - anon_sym_struct, - ACTIONS(3710), 1, - anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, - sym_identifier, - ACTIONS(11105), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9311), 1, + anon_sym_LBRACE, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(12787), 1, - anon_sym_enum, - ACTIONS(12789), 1, - anon_sym_typename, - STATE(3028), 1, + ACTIONS(13147), 1, + sym_identifier, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3126), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, - sym_template_type, - STATE(3747), 1, - sym_qualified_type_identifier, - STATE(3800), 1, + STATE(3216), 1, + sym__class_declaration_item, + STATE(7400), 1, sym_splice_specifier, - STATE(5431), 1, - sym_type_specifier, - STATE(8738), 1, + STATE(7709), 1, + sym_field_declaration_list, + STATE(7888), 1, + sym_ms_declspec_modifier, + STATE(8705), 1, sym__scope_resolution, - STATE(3021), 2, - sym_decltype, + STATE(9523), 1, + sym_virtual_specifier, + STATE(10474), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3043), 2, + sym_template_type, sym_splice_type_specifier, - STATE(10768), 2, + STATE(7371), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7863), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8399), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3100), 7, - sym_sized_type_specifier, - sym_enum_specifier, - sym_struct_specifier, - sym_union_specifier, - sym_placeholder_type_specifier, - sym_class_specifier, - sym_dependent_type, - [274409] = 25, + [274033] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3092), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(3837), 1, - anon_sym_enum, - ACTIONS(3839), 1, + ACTIONS(4143), 1, anon_sym_class, - ACTIONS(3841), 1, + ACTIONS(4145), 1, anon_sym_struct, - ACTIONS(3843), 1, + ACTIONS(4147), 1, anon_sym_union, - ACTIONS(3849), 1, + ACTIONS(4151), 1, sym_auto, - ACTIONS(3851), 1, + ACTIONS(4153), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11095), 1, + ACTIONS(10915), 1, sym_identifier, - ACTIONS(11097), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(11099), 1, + ACTIONS(10919), 1, sym_primitive_type, - ACTIONS(11101), 1, + ACTIONS(13043), 1, + anon_sym_enum, + ACTIONS(13045), 1, anon_sym_typename, - STATE(2263), 1, + STATE(2327), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2605), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2712), 1, + STATE(2628), 1, sym_template_type, - STATE(2843), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2685), 1, sym_qualified_type_identifier, - STATE(3166), 1, + STATE(3013), 1, sym_decltype_auto, - STATE(3238), 1, + STATE(4696), 1, sym_type_specifier, - STATE(8702), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(3053), 2, + STATE(2934), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(3833), 4, + ACTIONS(13041), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3167), 7, + STATE(3045), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682397,114 +681689,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274496] = 16, + [274120] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11985), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(9311), 1, + anon_sym_LBRACE, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, - anon_sym_STAR, - ACTIONS(11991), 1, - anon_sym_AMP_AMP, - ACTIONS(11993), 1, - anon_sym_AMP, - STATE(7511), 1, - sym_alignas_qualifier, - STATE(8612), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10687), 1, - sym_ms_based_modifier, - ACTIONS(3272), 2, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(3216), 1, + sym__class_declaration_item, + STATE(3890), 1, + sym_field_declaration_list, + STATE(7198), 1, + sym_splice_specifier, + STATE(7880), 1, + sym_ms_declspec_modifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(9478), 1, + sym_virtual_specifier, + STATE(10520), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7086), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8839), 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(3270), 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, - [274565] = 25, + STATE(3043), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7858), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8399), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [274209] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3236), 1, - sym_auto, - ACTIONS(3238), 1, - anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(4399), 1, + ACTIONS(4169), 1, anon_sym_class, - ACTIONS(4401), 1, + ACTIONS(4171), 1, anon_sym_struct, - ACTIONS(4403), 1, + ACTIONS(4173), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(4179), 1, + sym_auto, + ACTIONS(4181), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11050), 1, - sym_primitive_type, - ACTIONS(11057), 1, + ACTIONS(10964), 1, sym_identifier, - ACTIONS(11059), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(12988), 1, + ACTIONS(10968), 1, + sym_primitive_type, + ACTIONS(12872), 1, anon_sym_enum, - ACTIONS(12990), 1, + ACTIONS(12874), 1, anon_sym_typename, - STATE(3770), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(4043), 1, + STATE(2073), 1, sym_template_type, - STATE(4204), 1, + STATE(2088), 1, sym_qualified_type_identifier, - STATE(4272), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(4426), 1, + STATE(2158), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(2172), 1, sym_decltype_auto, - STATE(6535), 1, + STATE(3555), 1, sym_type_specifier, - STATE(8676), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(4373), 2, + STATE(2148), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12986), 4, + ACTIONS(12870), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4430), 7, + STATE(2173), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682512,61 +681814,124 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274652] = 25, + [274296] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8288), 1, + anon_sym___declspec, + ACTIONS(10044), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10992), 1, + anon_sym_COLON_COLON, + ACTIONS(13096), 1, + sym_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(4399), 1, + sym__class_declaration_item, + STATE(7353), 1, + sym_splice_specifier, + STATE(7897), 1, + sym_ms_declspec_modifier, + STATE(8710), 1, + sym__scope_resolution, + STATE(9509), 1, + sym_virtual_specifier, + STATE(10341), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8282), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(8290), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3999), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7896), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8399), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [274385] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(4429), 1, + ACTIONS(4197), 1, anon_sym_class, - ACTIONS(4431), 1, + ACTIONS(4199), 1, anon_sym_struct, - ACTIONS(4433), 1, + ACTIONS(4201), 1, anon_sym_union, - ACTIONS(4439), 1, + ACTIONS(4207), 1, sym_auto, - ACTIONS(4441), 1, + ACTIONS(4209), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11087), 1, + ACTIONS(11079), 1, sym_identifier, - ACTIONS(11089), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(11091), 1, + ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(12795), 1, + ACTIONS(12985), 1, anon_sym_enum, - ACTIONS(12797), 1, + ACTIONS(12987), 1, anon_sym_typename, - STATE(2377), 1, + STATE(2367), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2638), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(2701), 1, + STATE(2728), 1, sym_template_type, - STATE(2781), 1, + STATE(2818), 1, sym_qualified_type_identifier, - STATE(3089), 1, - sym_type_specifier, - STATE(3099), 1, + STATE(3096), 1, sym_decltype_auto, - STATE(8687), 1, + STATE(3138), 1, + sym_type_specifier, + STATE(8746), 1, sym__scope_resolution, - STATE(2984), 2, + STATE(2978), 2, sym_decltype, sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12793), 4, + ACTIONS(12983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3123), 7, + STATE(3097), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682574,61 +681939,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274739] = 25, + [274472] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(75), 1, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(4411), 1, anon_sym_enum, - ACTIONS(77), 1, + ACTIONS(4413), 1, anon_sym_class, - ACTIONS(79), 1, + ACTIONS(4415), 1, anon_sym_struct, - ACTIONS(81), 1, + ACTIONS(4417), 1, anon_sym_union, - ACTIONS(129), 1, - sym_auto, - ACTIONS(131), 1, - anon_sym_decltype, - ACTIONS(3466), 1, - sym_primitive_type, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5464), 1, - anon_sym_typename, - ACTIONS(5936), 1, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11093), 1, sym_identifier, - ACTIONS(5938), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, + ACTIONS(11097), 1, + anon_sym_typename, + STATE(2914), 1, aux_sym_sized_type_specifier_repeat1, - STATE(4504), 1, + STATE(3577), 1, + sym_splice_type_specifier, + STATE(3721), 1, sym_splice_specifier, - STATE(4578), 1, + STATE(3728), 1, sym_template_type, - STATE(4601), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, sym_qualified_type_identifier, - STATE(4776), 1, - sym_type_specifier, - STATE(4948), 1, + STATE(3960), 1, + sym_decltype, + STATE(4080), 1, sym_decltype_auto, - STATE(8716), 1, + STATE(4086), 1, + sym_type_specifier, + STATE(8750), 1, sym__scope_resolution, - STATE(4830), 2, - sym_decltype, - sym_splice_type_specifier, - STATE(10768), 2, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(59), 4, + ACTIONS(4407), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(4935), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682636,61 +682002,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274826] = 25, + [274561] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3809), 1, + ACTIONS(2246), 1, + anon_sym_enum, + ACTIONS(2248), 1, anon_sym_class, - ACTIONS(3811), 1, + ACTIONS(2250), 1, anon_sym_struct, - ACTIONS(3813), 1, + ACTIONS(2252), 1, anon_sym_union, - ACTIONS(3819), 1, + ACTIONS(2278), 1, sym_auto, - ACTIONS(3821), 1, + ACTIONS(2280), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11036), 1, + ACTIONS(10641), 1, sym_identifier, - ACTIONS(11038), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(11040), 1, + ACTIONS(10647), 1, sym_primitive_type, - ACTIONS(12803), 1, - anon_sym_enum, - ACTIONS(12805), 1, + ACTIONS(10649), 1, anon_sym_typename, - STATE(2073), 1, - sym_template_type, - STATE(2087), 1, - sym_qualified_type_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2153), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + STATE(2749), 1, aux_sym_sized_type_specifier_repeat1, - STATE(2170), 1, + STATE(3029), 1, + sym_decltype, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2221), 1, + STATE(3117), 1, sym_decltype_auto, - STATE(3581), 1, + STATE(3211), 1, sym_type_specifier, - STATE(8763), 1, - sym__scope_resolution, - STATE(2169), 2, - sym_decltype, + STATE(3661), 1, + sym_template_type, + STATE(3710), 1, + sym_qualified_type_identifier, + STATE(7198), 1, + sym_splice_specifier, + STATE(7929), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(8754), 1, + sym__scope_resolution, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12801), 4, + ACTIONS(2242), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(2222), 7, + STATE(3139), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682698,61 +682065,62 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [274913] = 25, + [274650] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - sym_auto, - ACTIONS(2282), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(3706), 1, + ACTIONS(3943), 1, + anon_sym_enum, + ACTIONS(3945), 1, anon_sym_class, - ACTIONS(3708), 1, + ACTIONS(3947), 1, anon_sym_struct, - ACTIONS(3710), 1, + ACTIONS(3949), 1, anon_sym_union, - ACTIONS(5160), 1, + ACTIONS(3975), 1, + sym_auto, + ACTIONS(3977), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10655), 1, - sym_primitive_type, - ACTIONS(11103), 1, + ACTIONS(11063), 1, sym_identifier, - ACTIONS(11105), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(12787), 1, - anon_sym_enum, - ACTIONS(12789), 1, + ACTIONS(11067), 1, + sym_primitive_type, + ACTIONS(11069), 1, anon_sym_typename, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3126), 1, + STATE(3511), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(3728), 1, sym_template_type, - STATE(3747), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3787), 1, sym_qualified_type_identifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(5335), 1, - sym_type_specifier, - STATE(8738), 1, - sym__scope_resolution, - STATE(3021), 2, + STATE(3960), 1, sym_decltype, + STATE(4080), 1, + sym_decltype_auto, + STATE(4086), 1, + sym_type_specifier, + STATE(4222), 1, + sym_splice_specifier, + STATE(4655), 1, sym_splice_type_specifier, - STATE(10768), 2, + STATE(8737), 1, + sym__scope_resolution, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(12785), 4, + ACTIONS(3939), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(4081), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682760,62 +682128,61 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [275000] = 26, + [274739] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2248), 1, - anon_sym_enum, - ACTIONS(2250), 1, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(4197), 1, anon_sym_class, - ACTIONS(2252), 1, + ACTIONS(4199), 1, anon_sym_struct, - ACTIONS(2254), 1, + ACTIONS(4201), 1, anon_sym_union, - ACTIONS(2280), 1, + ACTIONS(4207), 1, sym_auto, - ACTIONS(2282), 1, + ACTIONS(4209), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10649), 1, + ACTIONS(11079), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(10655), 1, + ACTIONS(11083), 1, sym_primitive_type, - ACTIONS(10657), 1, + ACTIONS(12985), 1, + anon_sym_enum, + ACTIONS(12987), 1, anon_sym_typename, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - STATE(2852), 1, + STATE(2367), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3021), 1, - sym_decltype, - STATE(3028), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(3097), 1, - sym_type_specifier, - STATE(3197), 1, - sym_decltype_auto, - STATE(3684), 1, + STATE(2728), 1, sym_template_type, - STATE(3747), 1, + STATE(2818), 1, sym_qualified_type_identifier, - STATE(7260), 1, - sym_splice_specifier, - STATE(7935), 1, - sym_splice_type_specifier, - STATE(8711), 1, + STATE(3096), 1, + sym_decltype_auto, + STATE(4773), 1, + sym_type_specifier, + STATE(8746), 1, sym__scope_resolution, - STATE(10768), 2, + STATE(2978), 2, + sym_decltype, + sym_splice_type_specifier, + STATE(11531), 2, sym_dependent_type_identifier, sym_splice_expression, - ACTIONS(2244), 4, + ACTIONS(12983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3100), 7, + STATE(3097), 7, sym_sized_type_specifier, sym_enum_specifier, sym_struct_specifier, @@ -682823,284 +682190,225 @@ static const uint16_t ts_small_parse_table[] = { sym_placeholder_type_specifier, sym_class_specifier, sym_dependent_type, - [275089] = 26, + [274826] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8242), 1, + ACTIONS(8288), 1, anon_sym___declspec, - ACTIONS(8503), 1, + ACTIONS(11561), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13098), 1, sym_identifier, - STATE(2742), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(5942), 1, sym_field_declaration_list, - STATE(3550), 1, + STATE(6124), 1, sym__class_declaration_item, - STATE(7876), 1, + STATE(7814), 1, sym_ms_declspec_modifier, - STATE(8686), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(9655), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(10505), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - ACTIONS(8236), 2, + ACTIONS(8282), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(8244), 2, + ACTIONS(8290), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2606), 2, + STATE(5432), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(7874), 2, + STATE(7867), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8412), 3, + STATE(8399), 3, sym_attribute_specifier, sym_alignas_qualifier, aux_sym__class_declaration_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [275178] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - ACTIONS(13188), 1, - anon_sym_requires, - STATE(7616), 1, - sym_ref_qualifier, - STATE(8398), 1, - sym_trailing_return_type, - STATE(8471), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7767), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [275263] = 21, + [274915] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(75), 1, + anon_sym_enum, + ACTIONS(77), 1, + anon_sym_class, + ACTIONS(79), 1, + anon_sym_struct, + ACTIONS(81), 1, + anon_sym_union, + ACTIONS(129), 1, + sym_auto, + ACTIONS(131), 1, anon_sym_decltype, - ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3464), 1, + sym_primitive_type, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5462), 1, + anon_sym_typename, + ACTIONS(5930), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(10264), 1, - anon_sym_STAR, - ACTIONS(10266), 1, - anon_sym_AMP_AMP, - ACTIONS(10268), 1, - anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7990), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(3785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(4461), 1, sym_splice_specifier, - STATE(8831), 1, - sym__declarator, - STATE(10957), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, + STATE(4577), 1, sym_template_type, - sym_dependent_type_identifier, + STATE(4589), 1, sym_splice_type_specifier, + STATE(4597), 1, + sym_qualified_type_identifier, + STATE(4839), 1, + sym_decltype_auto, + STATE(4927), 1, + sym_decltype, + STATE(5015), 1, + sym_type_specifier, + STATE(8757), 1, + sym__scope_resolution, + STATE(11531), 2, + sym_dependent_type_identifier, sym_splice_expression, - STATE(8555), 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, - [275341] = 21, + ACTIONS(59), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(4852), 7, + sym_sized_type_specifier, + sym_enum_specifier, + sym_struct_specifier, + sym_union_specifier, + sym_placeholder_type_specifier, + sym_class_specifier, + sym_dependent_type, + [275004] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(11985), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(12059), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(12061), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(12063), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(12065), 1, anon_sym_AMP, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7986), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8383), 1, - sym__declarator, - STATE(11612), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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, + STATE(7556), 1, + sym_alignas_qualifier, + STATE(9071), 1, + sym__field_declarator, + STATE(9170), 1, sym_operator_name, - [275419] = 16, + STATE(11185), 1, + sym_ms_based_modifier, + ACTIONS(3370), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7149), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8836), 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(3368), 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, + [275073] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, + ACTIONS(11785), 1, anon_sym_const, - ACTIONS(12162), 1, + ACTIONS(12077), 1, anon_sym_STAR, - ACTIONS(12164), 1, + ACTIONS(12079), 1, anon_sym_AMP_AMP, - ACTIONS(12166), 1, + ACTIONS(12081), 1, anon_sym_AMP, - STATE(5222), 1, + STATE(5182), 1, sym_parameter_list, - STATE(6707), 1, + STATE(6698), 1, sym_alignas_qualifier, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9154), 1, + STATE(9088), 1, sym__abstract_declarator, - ACTIONS(11797), 2, + ACTIONS(11787), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7517), 2, + STATE(6406), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7391), 3, + ACTIONS(6843), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(11785), 12, + ACTIONS(11775), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -683113,109 +682421,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [275487] = 21, + [275141] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13114), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13161), 1, - anon_sym_requires, - ACTIONS(13194), 1, - anon_sym___asm, - STATE(8035), 1, - sym_trailing_return_type, - STATE(8126), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(13158), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(13191), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7704), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 7, - anon_sym_COMMA, + ACTIONS(29), 1, + anon_sym_AMP_AMP, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [275565] = 21, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, + anon_sym_LBRACK, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(9075), 1, + sym__declarator, + STATE(11132), 1, + sym_ms_based_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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, + [275219] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10239), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8868), 1, + STATE(8361), 1, sym__declarator, - STATE(10743), 1, + STATE(11606), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683227,28 +682535,47 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275643] = 3, + [275297] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3118), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6455), 1, anon_sym_LPAREN2, - anon_sym_TILDE, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(12077), 1, anon_sym_STAR, + ACTIONS(12079), 1, anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(3128), 24, + ACTIONS(12081), 1, anon_sym_AMP, + STATE(5182), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9151), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7341), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11775), 12, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - anon_sym_LBRACK, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -683260,58 +682587,52 @@ 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_template, - anon_sym_operator, - [275685] = 21, + [275365] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10264), 1, - anon_sym_STAR, - ACTIONS(10266), 1, - anon_sym_AMP_AMP, - ACTIONS(10268), 1, - anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7990), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8969), 1, + STATE(9034), 1, sym__declarator, - STATE(10957), 1, + STATE(11132), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683323,28 +682644,32 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275763] = 3, + [275443] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 10, + ACTIONS(12840), 1, + anon_sym___attribute__, + ACTIONS(12842), 1, + anon_sym___attribute, + ACTIONS(13139), 1, + anon_sym_LBRACE, + STATE(7595), 1, + sym_enumerator_list, + STATE(7633), 1, + sym_attribute_specifier, + ACTIONS(7387), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7389), 27, 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_EQ, - anon_sym_GT2, - anon_sym_LBRACK_COLON, - ACTIONS(7077), 24, - anon_sym_AMP, + anon_sym_SEMI, anon_sym___extension__, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, anon_sym_LBRACK, - anon_sym_const, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -683358,113 +682683,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [275805] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - STATE(7999), 1, - sym_trailing_return_type, - STATE(8373), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7723), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [275883] = 21, + anon_sym_requires, + [275495] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10197), 1, + anon_sym_STAR, + ACTIONS(10199), 1, + anon_sym_AMP_AMP, + ACTIONS(10201), 1, + anon_sym_AMP, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9034), 1, + STATE(8556), 1, sym__declarator, - STATE(11554), 1, + STATE(11637), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683476,52 +682745,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [275961] = 21, + [275573] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10205), 1, + anon_sym_STAR, + ACTIONS(10207), 1, + anon_sym_AMP_AMP, + ACTIONS(10209), 1, + anon_sym_AMP, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8831), 1, + STATE(8905), 1, sym__declarator, - STATE(11554), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683533,156 +682802,109 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276039] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12162), 1, - anon_sym_STAR, - ACTIONS(12164), 1, - anon_sym_AMP_AMP, - ACTIONS(12166), 1, - anon_sym_AMP, - STATE(5222), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9091), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7351), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [276107] = 16, + [275651] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12162), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(10213), 1, anon_sym_STAR, - ACTIONS(12164), 1, + ACTIONS(10215), 1, anon_sym_AMP_AMP, - ACTIONS(12166), 1, + ACTIONS(10217), 1, anon_sym_AMP, - STATE(5222), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9095), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7558), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7343), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [276175] = 21, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(8697), 1, + sym__declarator, + STATE(10894), 1, + sym_ms_based_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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, + [275729] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10213), 1, + anon_sym_STAR, + ACTIONS(10215), 1, + anon_sym_AMP_AMP, + ACTIONS(10217), 1, + anon_sym_AMP, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9048), 1, + STATE(8707), 1, sym__declarator, - STATE(11554), 1, + STATE(10894), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683694,56 +682916,113 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276253] = 21, + [275807] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10382), 1, + ACTIONS(10411), 1, anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10592), 1, + ACTIONS(10579), 1, anon_sym_DASH_GT, - ACTIONS(12412), 1, + ACTIONS(13112), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12858), 1, + STATE(8050), 1, + sym_trailing_return_type, + STATE(8418), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7716), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7970), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [275885] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12980), 1, anon_sym___asm, - STATE(7999), 1, + STATE(8004), 1, sym_trailing_return_type, - STATE(8132), 1, + STATE(8090), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(8160), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - ACTIONS(12855), 2, + ACTIONS(12977), 2, anon_sym_asm, anon_sym___asm__, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(8319), 2, sym__function_postfix, sym_requires_clause, - STATE(7724), 3, + STATE(7713), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 7, + ACTIONS(7874), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -683751,52 +683030,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [276331] = 21, + [275963] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10276), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10278), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10280), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8792), 1, + STATE(8961), 1, sym__declarator, - STATE(10900), 1, + STATE(10951), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683808,166 +683087,156 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276409] = 21, + [276041] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(12840), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(12842), 1, anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, - anon_sym_requires, - ACTIONS(12858), 1, - anon_sym___asm, - STATE(8013), 1, - sym_trailing_return_type, - STATE(8125), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(12415), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(12855), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7923), 2, + ACTIONS(13139), 1, + anon_sym_LBRACE, + STATE(7566), 1, + sym_enumerator_list, + STATE(7607), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7727), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 7, + ACTIONS(7381), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7383), 27, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___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, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [276487] = 21, + anon_sym_requires, + [276093] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13114), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - STATE(8057), 1, - sym_trailing_return_type, - STATE(8434), 1, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(11269), 1, + anon_sym_requires, + STATE(7659), 1, + sym_ref_qualifier, + STATE(8675), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(8676), 1, + sym_trailing_return_type, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - STATE(7731), 3, + STATE(7872), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 7, - anon_sym_RPAREN, + ACTIONS(7874), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [276565] = 21, + anon_sym_GT2, + [276177] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, + ACTIONS(3444), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3446), 1, anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9044), 1, + STATE(9013), 1, sym__declarator, - STATE(11554), 1, + STATE(11132), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -683979,52 +683248,164 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276643] = 21, + [276255] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(13178), 1, + anon_sym_requires, + STATE(7660), 1, + sym_ref_qualifier, + STATE(8686), 1, + sym__function_attributes_end, + STATE(8687), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7811), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [276339] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(12077), 1, + anon_sym_STAR, + ACTIONS(12079), 1, + anon_sym_AMP_AMP, + ACTIONS(12081), 1, + anon_sym_AMP, + STATE(5182), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9089), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7345), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [276407] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - ACTIONS(10178), 1, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10180), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10182), 1, + ACTIONS(10239), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7990), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8530), 1, + STATE(8556), 1, sym__declarator, - STATE(11622), 1, + STATE(11606), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684036,52 +683417,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276721] = 21, + [276485] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, + ACTIONS(3444), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3446), 1, anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9014), 1, + STATE(8825), 1, sym__declarator, - STATE(11554), 1, + STATE(11132), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684093,52 +683474,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276799] = 21, + [276563] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(10218), 1, - anon_sym_STAR, - ACTIONS(10220), 1, - anon_sym_AMP_AMP, - ACTIONS(10222), 1, - anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8438), 1, + STATE(9035), 1, sym__declarator, - STATE(11612), 1, + STATE(11132), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684150,52 +683531,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276877] = 21, + [276641] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10235), 1, + anon_sym_STAR, + ACTIONS(10237), 1, + anon_sym_AMP_AMP, + ACTIONS(10239), 1, + anon_sym_AMP, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9020), 1, + STATE(8404), 1, sym__declarator, - STATE(11554), 1, + STATE(11606), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684207,52 +683588,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [276955] = 21, + [276719] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, - anon_sym_STAR, - ACTIONS(10242), 1, - anon_sym_AMP_AMP, - ACTIONS(10244), 1, - anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8935), 1, + STATE(9050), 1, sym__declarator, - STATE(10743), 1, + STATE(11132), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684264,52 +683645,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277033] = 21, + [276797] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8753), 1, + STATE(8890), 1, sym__declarator, - STATE(10900), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684321,237 +683702,28 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277111] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13114), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13194), 1, - anon_sym___asm, - STATE(8057), 1, - sym_trailing_return_type, - STATE(8080), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(13191), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7706), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [277189] = 8, + [276875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - ACTIONS(13131), 1, - anon_sym_LBRACE, - STATE(7574), 1, - sym_enumerator_list, - STATE(7628), 1, - sym_attribute_specifier, - ACTIONS(7387), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7389), 27, + ACTIONS(7115), 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___extension__, - anon_sym_LBRACK, + anon_sym_COLON_COLON, 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [277241] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, - anon_sym_requires, - STATE(7666), 1, - sym_ref_qualifier, - STATE(8717), 1, - sym__function_attributes_end, - STATE(8718), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7840), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_GT2, - [277325] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - ACTIONS(13131), 1, - anon_sym_LBRACE, - STATE(7580), 1, - sym_enumerator_list, - STATE(7609), 1, - sym_attribute_specifier, - ACTIONS(7381), 2, + anon_sym_LBRACK_COLON, + ACTIONS(7113), 24, anon_sym_AMP, - anon_sym_const, - ACTIONS(7383), 27, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [277377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10270), 5, - anon_sym_AMP, + anon_sym___attribute__, anon_sym___attribute, + anon_sym___based, anon_sym_LBRACK, - anon_sym___inline, anon_sym_const, - ACTIONS(10272), 29, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -684565,216 +683737,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - [277419] = 24, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [276917] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(29), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(13197), 1, - anon_sym_requires, - STATE(7663), 1, - sym_ref_qualifier, - STATE(8714), 1, - sym__function_attributes_end, - STATE(8715), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7848), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [277503] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12162), 1, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3444), 1, anon_sym_STAR, - ACTIONS(12164), 1, - anon_sym_AMP_AMP, - ACTIONS(12166), 1, + ACTIONS(3446), 1, anon_sym_AMP, - STATE(5222), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9105), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(6823), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [277571] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12162), 1, - anon_sym_STAR, - ACTIONS(12164), 1, - anon_sym_AMP_AMP, - ACTIONS(12166), 1, - anon_sym_AMP, - STATE(5222), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9106), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7345), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [277639] = 21, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8274), 1, + sym_identifier, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(9039), 1, + sym__declarator, + STATE(11132), 1, + sym_ms_based_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + STATE(8564), 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, + [276995] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(10213), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10215), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10217), 1, anon_sym_AMP, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8530), 1, + STATE(8716), 1, sym__declarator, - STATE(11612), 1, + STATE(10894), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684786,32 +683855,47 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277717] = 3, + [277073] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10316), 5, - anon_sym_AMP, - anon_sym___attribute, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, anon_sym_LBRACK, - anon_sym___inline, + ACTIONS(11785), 1, anon_sym_const, - ACTIONS(10318), 29, - anon_sym_LPAREN2, + ACTIONS(12077), 1, anon_sym_STAR, + ACTIONS(12079), 1, anon_sym_AMP_AMP, + ACTIONS(12081), 1, + anon_sym_AMP, + STATE(5182), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9124), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(6406), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7371), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11775), 12, anon_sym___extension__, - anon_sym_virtual, - anon_sym_extern, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym___declspec, - anon_sym_static, - anon_sym_register, - anon_sym_inline, - anon_sym___inline__, - anon_sym___forceinline, - anon_sym_thread_local, - anon_sym___thread, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -684823,54 +683907,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - [277759] = 21, + [277141] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, + ACTIONS(3444), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3446), 1, anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9018), 1, + STATE(9040), 1, sym__declarator, - STATE(11554), 1, + STATE(11132), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684882,52 +683964,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277837] = 21, + [277219] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10209), 1, anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8443), 1, + STATE(8825), 1, sym__declarator, - STATE(11612), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684939,52 +684021,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277915] = 21, + [277297] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(29), 1, anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, + ACTIONS(3444), 1, anon_sym_STAR, - ACTIONS(3448), 1, + ACTIONS(3446), 1, anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9031), 1, + STATE(9073), 1, sym__declarator, - STATE(11554), 1, + STATE(11132), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -684996,52 +684078,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [277993] = 21, + [277375] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10239), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8877), 1, + STATE(8374), 1, sym__declarator, - STATE(10743), 1, + STATE(11606), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685053,52 +684135,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278071] = 21, + [277453] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, - anon_sym_STAR, - ACTIONS(10236), 1, - anon_sym_AMP_AMP, - ACTIONS(10238), 1, - anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8742), 1, + STATE(9060), 1, sym__declarator, - STATE(10900), 1, + STATE(11132), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685110,52 +684192,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278149] = 21, + [277531] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8831), 1, + STATE(8868), 1, sym__declarator, - STATE(10743), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685167,52 +684249,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278227] = 21, + [277609] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10213), 1, + anon_sym_STAR, + ACTIONS(10215), 1, + anon_sym_AMP_AMP, + ACTIONS(10217), 1, + anon_sym_AMP, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9065), 1, + STATE(8699), 1, sym__declarator, - STATE(11554), 1, + STATE(10894), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685224,52 +684306,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278305] = 21, + [277687] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(10213), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10215), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10217), 1, anon_sym_AMP, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8390), 1, + STATE(8556), 1, sym__declarator, - STATE(11612), 1, + STATE(10894), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685281,52 +684363,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278383] = 21, + [277765] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, - anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10235), 1, + anon_sym_STAR, + ACTIONS(10237), 1, + anon_sym_AMP_AMP, + ACTIONS(10239), 1, + anon_sym_AMP, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9043), 1, + STATE(8396), 1, sym__declarator, - STATE(11554), 1, + STATE(11606), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685338,52 +684420,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278461] = 21, + [277843] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8873), 1, + STATE(8870), 1, sym__declarator, - STATE(10743), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685395,52 +684477,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278539] = 21, + [277921] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10213), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10215), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10217), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8755), 1, + STATE(8711), 1, sym__declarator, - STATE(10900), 1, + STATE(10894), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685452,52 +684534,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278617] = 21, + [277999] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10276), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10278), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10280), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8530), 1, + STATE(8825), 1, sym__declarator, - STATE(10900), 1, + STATE(10951), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685509,52 +684591,109 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278695] = 21, + [278077] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_requires, + STATE(8019), 1, + sym_trailing_return_type, + STATE(8381), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(12312), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7715), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [278155] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10239), 1, anon_sym_AMP, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8442), 1, + STATE(8405), 1, sym__declarator, - STATE(11612), 1, + STATE(11606), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685566,52 +684705,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278773] = 21, + [278233] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10209), 1, anon_sym_AMP, - STATE(3808), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8921), 1, + STATE(8855), 1, sym__declarator, - STATE(10743), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685623,52 +684762,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278851] = 21, + [278311] = 21, ACTIONS(3), 1, sym_comment, + ACTIONS(29), 1, + anon_sym_AMP_AMP, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3444), 1, + anon_sym_STAR, + ACTIONS(3446), 1, + anon_sym_AMP, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, - anon_sym_STAR, - ACTIONS(10236), 1, - anon_sym_AMP_AMP, - ACTIONS(10238), 1, - anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8739), 1, + STATE(9068), 1, sym__declarator, - STATE(10900), 1, + STATE(11132), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685680,52 +684819,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [278929] = 21, + [278389] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10211), 1, + anon_sym_COLON_COLON, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10239), 1, anon_sym_AMP, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8439), 1, + STATE(8370), 1, sym__declarator, - STATE(11612), 1, + STATE(11606), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685737,52 +684876,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279007] = 21, + [278467] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8553), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10247), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10249), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10251), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8929), 1, + STATE(8760), 1, sym__declarator, - STATE(10743), 1, + STATE(10831), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685794,104 +684933,109 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279085] = 16, + [278545] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(11795), 1, - anon_sym_const, - ACTIONS(12162), 1, - anon_sym_STAR, - ACTIONS(12164), 1, - anon_sym_AMP_AMP, - ACTIONS(12166), 1, - anon_sym_AMP, - STATE(5222), 1, - sym_parameter_list, - STATE(6707), 1, - sym_alignas_qualifier, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9083), 1, - sym__abstract_declarator, - ACTIONS(11797), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(6420), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7355), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(11785), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [279153] = 21, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(13112), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13144), 1, + anon_sym_requires, + STATE(8022), 1, + sym_trailing_return_type, + STATE(8386), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13141), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7704), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7970), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [278623] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8546), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8554), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - ACTIONS(10246), 1, + ACTIONS(10235), 1, anon_sym_STAR, - ACTIONS(10248), 1, + ACTIONS(10237), 1, anon_sym_AMP_AMP, - ACTIONS(10250), 1, + ACTIONS(10239), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7990), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8788), 1, + STATE(8369), 1, sym__declarator, - STATE(10837), 1, + STATE(11606), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685903,52 +685047,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279231] = 21, + [278701] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(10218), 1, + ACTIONS(10205), 1, anon_sym_STAR, - ACTIONS(10220), 1, + ACTIONS(10207), 1, anon_sym_AMP_AMP, - ACTIONS(10222), 1, + ACTIONS(10209), 1, anon_sym_AMP, - ACTIONS(10224), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8409), 1, + STATE(8888), 1, sym__declarator, - STATE(11612), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -685960,52 +685104,52 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279309] = 21, + [278779] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10216), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(10224), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10240), 1, + ACTIONS(10268), 1, anon_sym_STAR, - ACTIONS(10242), 1, + ACTIONS(10270), 1, anon_sym_AMP_AMP, - ACTIONS(10244), 1, + ACTIONS(10272), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7986), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8889), 1, + STATE(8760), 1, sym__declarator, - STATE(10743), 1, + STATE(11002), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -686017,52 +685161,309 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279387] = 21, + [278857] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(12077), 1, + anon_sym_STAR, + ACTIONS(12079), 1, + anon_sym_AMP_AMP, + ACTIONS(12081), 1, + anon_sym_AMP, + STATE(5182), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9134), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7503), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7375), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [278925] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + STATE(8004), 1, + sym_trailing_return_type, + STATE(8372), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7703), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 7, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [279003] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11785), 1, + anon_sym_const, + ACTIONS(12077), 1, + anon_sym_STAR, + ACTIONS(12079), 1, + anon_sym_AMP_AMP, + ACTIONS(12081), 1, + anon_sym_AMP, + STATE(5182), 1, + sym_parameter_list, + STATE(6698), 1, + sym_alignas_qualifier, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9149), 1, + sym__abstract_declarator, + ACTIONS(11787), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7527), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7367), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(11775), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [279071] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(13112), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13184), 1, + anon_sym___asm, + STATE(8050), 1, + sym_trailing_return_type, + STATE(8093), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13181), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7708), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7970), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [279149] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10164), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(10166), 29, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + [279191] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10252), 1, + ACTIONS(10213), 1, anon_sym_STAR, - ACTIONS(10254), 1, + ACTIONS(10215), 1, anon_sym_AMP_AMP, - ACTIONS(10256), 1, + ACTIONS(10217), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8788), 1, + STATE(8798), 1, sym__declarator, - STATE(11008), 1, + STATE(10894), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -686074,52 +685475,130 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279465] = 21, + [279269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(29), 1, + ACTIONS(3116), 10, + 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_EQ, + anon_sym_GT2, + anon_sym_LBRACK_COLON, + ACTIONS(3126), 24, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + 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_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [279311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10310), 5, + anon_sym_AMP, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___inline, + anon_sym_const, + ACTIONS(10312), 29, + anon_sym_LPAREN2, + anon_sym_STAR, anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_virtual, + anon_sym_extern, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym___declspec, + anon_sym_static, + anon_sym_register, + anon_sym_inline, + anon_sym___inline__, + anon_sym___forceinline, + anon_sym_thread_local, + anon_sym___thread, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + [279353] = 21, + ACTIONS(3), 1, + sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3446), 1, - anon_sym_STAR, - ACTIONS(3448), 1, - anon_sym_AMP, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(10203), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(10205), 1, + anon_sym_STAR, + ACTIONS(10207), 1, + anon_sym_AMP_AMP, + ACTIONS(10209), 1, + anon_sym_AMP, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9013), 1, + STATE(8909), 1, sym__declarator, - STATE(11554), 1, + STATE(10737), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -686131,223 +685610,166 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279543] = 21, + [279431] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10624), 1, + ACTIONS(10637), 1, anon_sym_DASH_GT, - ACTIONS(12412), 1, + ACTIONS(12309), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, + ACTIONS(12315), 1, anon_sym_requires, - STATE(8013), 1, + ACTIONS(12980), 1, + anon_sym___asm, + STATE(8019), 1, sym_trailing_return_type, - STATE(8410), 1, + STATE(8100), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(12415), 2, + ACTIONS(12312), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + ACTIONS(12977), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(8319), 2, sym__function_postfix, sym_requires_clause, - STATE(7702), 3, + STATE(7721), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 7, - anon_sym_RPAREN, + ACTIONS(7874), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [279621] = 21, + [279509] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10624), 1, + ACTIONS(10637), 1, anon_sym_DASH_GT, - ACTIONS(13114), 1, + ACTIONS(13112), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13161), 1, + ACTIONS(13144), 1, anon_sym_requires, - STATE(8035), 1, + ACTIONS(13184), 1, + anon_sym___asm, + STATE(8022), 1, sym_trailing_return_type, - STATE(8429), 1, + STATE(8101), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13158), 2, + ACTIONS(13141), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + ACTIONS(13181), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8317), 2, sym__function_postfix, sym_requires_clause, - STATE(7705), 3, + STATE(7724), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 7, - anon_sym_RPAREN, + ACTIONS(7970), 7, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [279699] = 21, + [279587] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3442), 1, + ACTIONS(3440), 1, anon_sym_LPAREN2, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(3460), 1, - anon_sym_LBRACK, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, - sym_identifier, - ACTIONS(8675), 1, - anon_sym_COLON_COLON, - ACTIONS(10234), 1, - anon_sym_STAR, - ACTIONS(10236), 1, - anon_sym_AMP_AMP, - ACTIONS(10238), 1, - anon_sym_AMP, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7993), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(8701), 1, - sym__declarator, - STATE(10900), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - STATE(8555), 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, - [279777] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, ACTIONS(3442), 1, - anon_sym_LPAREN2, - ACTIONS(3444), 1, anon_sym_TILDE, - ACTIONS(3460), 1, + ACTIONS(3458), 1, anon_sym_LBRACK, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8228), 1, + ACTIONS(8274), 1, sym_identifier, - ACTIONS(8675), 1, + ACTIONS(8774), 1, anon_sym_COLON_COLON, - ACTIONS(10234), 1, + ACTIONS(10213), 1, anon_sym_STAR, - ACTIONS(10236), 1, + ACTIONS(10215), 1, anon_sym_AMP_AMP, - ACTIONS(10238), 1, + ACTIONS(10217), 1, anon_sym_AMP, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7993), 1, + STATE(7984), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8694), 1, + STATE(8749), 1, sym__declarator, - STATE(10900), 1, + STATE(10894), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - STATE(8555), 11, + STATE(8564), 11, sym_parenthesized_declarator, sym_attributed_declarator, sym_pointer_declarator, @@ -686359,45 +685781,45 @@ static const uint16_t ts_small_parse_table[] = { sym_destructor_name, sym_qualified_identifier, sym_operator_name, - [279855] = 16, + [279665] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(12261), 1, + ACTIONS(12258), 1, anon_sym_STAR, - ACTIONS(12263), 1, + ACTIONS(12260), 1, anon_sym_AMP_AMP, - ACTIONS(12265), 1, + ACTIONS(12262), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9251), 1, + STATE(9237), 1, sym__abstract_declarator, - ACTIONS(7343), 2, + ACTIONS(7371), 2, anon_sym_LBRACE, anon_sym_requires, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7600), 2, + STATE(2450), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -686410,75 +685832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [279922] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(10861), 1, - anon_sym_requires, - STATE(8583), 1, - sym__function_attributes_end, - STATE(8585), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7738), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [279999] = 6, + [279732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - STATE(7632), 1, - sym_attribute_specifier, - ACTIONS(7397), 2, + ACTIONS(7535), 3, anon_sym_AMP, + anon_sym___attribute, anon_sym_const, - ACTIONS(7399), 28, + ACTIONS(7537), 30, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686486,6 +685847,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -686507,19 +685870,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280046] = 6, + [279773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - STATE(7633), 1, - sym_attribute_specifier, - ACTIONS(7505), 2, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(2919), 1, + sym_template_argument_list, + ACTIONS(7379), 4, anon_sym_AMP, + anon_sym___attribute, + anon_sym_COLON, anon_sym_const, - ACTIONS(7507), 28, + ACTIONS(5637), 26, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686527,9 +685892,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, @@ -686545,32 +685910,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, anon_sym_requires, - [280093] = 6, + [279820] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(9520), 1, + anon_sym_LBRACE, + ACTIONS(13187), 1, + anon_sym_COLON, + STATE(3151), 1, + sym_attribute_specifier, + STATE(7650), 1, + sym__enum_base_clause, + STATE(7720), 1, + sym_enumerator_list, + ACTIONS(43), 2, anon_sym___attribute__, - ACTIONS(12976), 1, anon_sym___attribute, - STATE(7608), 1, - sym_attribute_specifier, - ACTIONS(7423), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7425), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8003), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8001), 23, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + 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, @@ -686584,83 +685953,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [280140] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - ACTIONS(13149), 1, - anon_sym_requires, - STATE(7680), 1, - sym_ref_qualifier, - STATE(8511), 1, - sym_trailing_return_type, - STATE(8640), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(7969), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [280223] = 6, + sym_primitive_type, + sym_identifier, + [279873] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(12840), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(12842), 1, anon_sym___attribute, - STATE(7611), 1, + STATE(7617), 1, sym_attribute_specifier, - ACTIONS(7431), 2, + ACTIONS(7539), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7433), 28, + ACTIONS(7541), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686689,19 +685996,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280270] = 6, + [279920] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(12840), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(12842), 1, anon_sym___attribute, - STATE(7612), 1, + STATE(7618), 1, sym_attribute_specifier, - ACTIONS(7435), 2, + ACTIONS(7481), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7437), 28, + ACTIONS(7483), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686730,19 +686037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280317] = 6, + [279967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(12840), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(12842), 1, anon_sym___attribute, - STATE(7613), 1, + STATE(7622), 1, sym_attribute_specifier, - ACTIONS(7453), 2, + ACTIONS(7501), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7455), 28, + ACTIONS(7503), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686771,14 +686078,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280364] = 3, + [280014] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 3, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(12258), 1, + anon_sym_STAR, + ACTIONS(12260), 1, + anon_sym_AMP_AMP, + ACTIONS(12262), 1, anon_sym_AMP, + STATE(2724), 1, + sym_alignas_qualifier, + STATE(5625), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9169), 1, + sym__abstract_declarator, + ACTIONS(6843), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(8142), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(2450), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8134), 12, + anon_sym___extension__, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + [280081] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12840), 1, + anon_sym___attribute__, + ACTIONS(12842), 1, anon_sym___attribute, + STATE(7628), 1, + sym_attribute_specifier, + ACTIONS(7505), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(7475), 30, + ACTIONS(7507), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686786,8 +686149,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -686809,101 +686170,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280405] = 21, + [280128] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(10861), 1, - anon_sym_requires, - STATE(8559), 1, - sym__function_attributes_end, - STATE(8565), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7735), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 6, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13189), 1, + sym_identifier, + ACTIONS(13195), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(7678), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9681), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(3231), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7193), 4, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_LBRACE, - [280482] = 16, + ACTIONS(7195), 4, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + ACTIONS(13192), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9676), 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, + [280185] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(12261), 1, + ACTIONS(12258), 1, anon_sym_STAR, - ACTIONS(12263), 1, + ACTIONS(12260), 1, anon_sym_AMP_AMP, - ACTIONS(12265), 1, + ACTIONS(12262), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9250), 1, + STATE(9201), 1, sym__abstract_declarator, - ACTIONS(7351), 2, + ACTIONS(7341), 2, anon_sym_LBRACE, anon_sym_requires, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2488), 2, + STATE(2450), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -686916,29 +686267,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [280549] = 6, + [280252] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, - anon_sym___attribute__, - ACTIONS(12976), 1, - anon_sym___attribute, - STATE(7619), 1, - sym_attribute_specifier, - ACTIONS(7521), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7523), 28, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(12267), 1, + anon_sym_LT, + ACTIONS(13200), 1, + sym_auto, + ACTIONS(13202), 1, + anon_sym_decltype, + STATE(3215), 1, + sym_decltype_auto, + STATE(3755), 1, + sym_template_argument_list, + STATE(7686), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5617), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(13198), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(5609), 19, + anon_sym_AMP, anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + anon_sym___based, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -686952,24 +686311,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [280596] = 6, + sym_primitive_type, + sym_identifier, + [280309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(12840), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(12842), 1, anon_sym___attribute, - STATE(7620), 1, + STATE(7642), 1, sym_attribute_specifier, - ACTIONS(7531), 2, + ACTIONS(7511), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7533), 28, + ACTIONS(7513), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -686998,27 +686354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280643] = 10, + [280356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym___attribute, - ACTIONS(9312), 1, + ACTIONS(12840), 1, anon_sym___attribute__, - ACTIONS(9576), 1, - anon_sym_LBRACE, - ACTIONS(13200), 1, - anon_sym_COLON, - STATE(3105), 1, + ACTIONS(12842), 1, + anon_sym___attribute, + STATE(7644), 1, sym_attribute_specifier, - STATE(3767), 1, - sym__enum_base_clause, - STATE(3946), 1, - sym_enumerator_list, - ACTIONS(8000), 2, + ACTIONS(7515), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(8002), 24, + ACTIONS(7517), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -687026,7 +686374,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___extension__, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_EQ, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -687042,76 +686392,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [280698] = 21, + [280403] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + STATE(7683), 1, + sym_ref_qualifier, + STATE(8579), 1, + sym_trailing_return_type, + STATE(8606), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(7906), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [280486] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(13205), 1, + ACTIONS(10837), 1, anon_sym_requires, - STATE(8512), 1, + STATE(8568), 1, sym__function_attributes_end, - STATE(8513), 1, + STATE(8579), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - STATE(7734), 3, + STATE(7731), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 6, + ACTIONS(7874), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [280775] = 6, + [280563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(12840), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(12842), 1, anon_sym___attribute, - STATE(7627), 1, + STATE(7615), 1, sym_attribute_specifier, - ACTIONS(7427), 2, + ACTIONS(7531), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7429), 28, + ACTIONS(7533), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -687140,46 +686551,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [280822] = 16, + [280610] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(12261), 1, - anon_sym_STAR, - ACTIONS(12263), 1, - anon_sym_AMP_AMP, - ACTIONS(12265), 1, - anon_sym_AMP, - STATE(2726), 1, + ACTIONS(13204), 1, + sym_identifier, + ACTIONS(13210), 1, + sym_primitive_type, + STATE(3492), 1, sym_alignas_qualifier, - STATE(5697), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9224), 1, - sym__abstract_declarator, - ACTIONS(7345), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8125), 2, + STATE(7672), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(9648), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2488), 2, + STATE(7571), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8117), 12, + ACTIONS(7209), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(7211), 4, + anon_sym_AMP, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, + ACTIONS(13207), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(9643), 13, anon_sym___extension__, + anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -687191,32 +686597,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [280889] = 10, + [280667] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, + ACTIONS(9211), 1, anon_sym___attribute, - ACTIONS(10114), 1, + ACTIONS(9309), 1, + anon_sym___attribute__, + ACTIONS(9520), 1, anon_sym_LBRACE, - ACTIONS(13208), 1, + ACTIONS(13213), 1, anon_sym_COLON, - STATE(4316), 1, + STATE(3151), 1, + sym_attribute_specifier, + STATE(3780), 1, sym__enum_base_clause, - STATE(4370), 1, + STATE(3839), 1, sym_enumerator_list, - STATE(4517), 1, - sym_attribute_specifier, - ACTIONS(8000), 2, + ACTIONS(8001), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(8002), 24, - anon_sym_DOT_DOT_DOT, + ACTIONS(8003), 24, 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_constexpr, @@ -687234,150 +686641,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [280944] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, anon_sym_requires, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - STATE(7673), 1, - sym_ref_qualifier, - STATE(8585), 1, - sym_trailing_return_type, - STATE(8604), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(7933), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [281027] = 24, + [280722] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, - anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(10040), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(10042), 1, anon_sym___attribute, - STATE(7698), 1, - sym_ref_qualifier, - STATE(8667), 1, - sym__function_attributes_end, - STATE(8718), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, + ACTIONS(10160), 1, + anon_sym_LBRACE, + ACTIONS(13215), 1, + anon_sym_COLON, + STATE(4319), 1, + sym__enum_base_clause, + STATE(4339), 1, + sym_enumerator_list, + STATE(4476), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7968), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [281110] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(2938), 1, - sym_template_argument_list, - ACTIONS(7371), 4, + ACTIONS(8001), 2, anon_sym_AMP, - anon_sym___attribute, - anon_sym_COLON, anon_sym_const, - ACTIONS(5657), 26, + ACTIONS(8003), 24, + 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___attribute__, - anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, @@ -687394,72 +686685,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [281157] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9576), 1, - anon_sym_LBRACE, - ACTIONS(13210), 1, - anon_sym_COLON, - STATE(3105), 1, - sym_attribute_specifier, - STATE(7659), 1, - sym__enum_base_clause, - STATE(7711), 1, - sym_enumerator_list, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(8002), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(8000), 23, - 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, - [281210] = 10, + [280777] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9244), 1, + ACTIONS(9211), 1, anon_sym___attribute, - ACTIONS(9312), 1, + ACTIONS(9309), 1, anon_sym___attribute__, - ACTIONS(9576), 1, + ACTIONS(9520), 1, anon_sym_LBRACE, - ACTIONS(13200), 1, + ACTIONS(13213), 1, anon_sym_COLON, - STATE(3191), 1, + STATE(3174), 1, sym_attribute_specifier, - STATE(3796), 1, + STATE(3793), 1, sym__enum_base_clause, - STATE(3832), 1, + STATE(3868), 1, sym_enumerator_list, - ACTIONS(8006), 2, + ACTIONS(8007), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(8008), 24, + ACTIONS(8009), 24, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -687484,16 +686732,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [281265] = 4, + [280832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(7223), 3, - anon_sym_AMP, + ACTIONS(12840), 1, + anon_sym___attribute__, + ACTIONS(12842), 1, anon_sym___attribute, + STATE(7605), 1, + sym_attribute_specifier, + ACTIONS(7495), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(7225), 29, + ACTIONS(7497), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -687501,7 +686752,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, @@ -687523,70 +686773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281308] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(8123), 1, - anon_sym_const, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(12261), 1, - anon_sym_STAR, - ACTIONS(12263), 1, - anon_sym_AMP_AMP, - ACTIONS(12265), 1, - anon_sym_AMP, - STATE(2726), 1, - sym_alignas_qualifier, - STATE(5697), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9184), 1, - sym__abstract_declarator, - ACTIONS(7391), 2, - anon_sym_LBRACE, - anon_sym_requires, - ACTIONS(8125), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(7579), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [281375] = 6, + [280879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(12840), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(12842), 1, anon_sym___attribute, - STATE(7629), 1, + STATE(7635), 1, sym_attribute_specifier, - ACTIONS(7547), 2, + ACTIONS(7491), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7549), 28, + ACTIONS(7493), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -687615,19 +686814,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281422] = 6, + [280926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(12840), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(12842), 1, anon_sym___attribute, - STATE(7624), 1, + STATE(7648), 1, sym_attribute_specifier, - ACTIONS(7551), 2, + ACTIONS(7519), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7553), 28, + ACTIONS(7521), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -687656,96 +686855,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [281469] = 24, + [280973] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10348), 1, + ACTIONS(10366), 1, anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(10368), 1, anon_sym_AMP, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, + ACTIONS(11309), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(12303), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(12306), 1, anon_sym___attribute, - ACTIONS(13197), 1, + ACTIONS(13152), 1, anon_sym_requires, - STATE(7675), 1, + STATE(7670), 1, sym_ref_qualifier, - STATE(8643), 1, + STATE(8519), 1, + sym_trailing_return_type, + STATE(8649), 1, sym__function_attributes_end, - STATE(8715), 1, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(7920), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [281056] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + ACTIONS(13178), 1, + anon_sym_requires, + STATE(7684), 1, + sym_ref_qualifier, + STATE(8636), 1, + sym__function_attributes_end, + STATE(8687), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7874), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - STATE(7938), 3, + STATE(7921), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [281552] = 11, + [281139] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(12277), 1, - anon_sym_LT, - ACTIONS(13214), 1, - sym_auto, - ACTIONS(13216), 1, - anon_sym_decltype, - STATE(3203), 1, - sym_decltype_auto, - STATE(3735), 1, - sym_template_argument_list, - STATE(7686), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5643), 3, + ACTIONS(10040), 1, + anon_sym___attribute__, + ACTIONS(10042), 1, + anon_sym___attribute, + ACTIONS(10160), 1, + anon_sym_LBRACE, + ACTIONS(13215), 1, + anon_sym_COLON, + STATE(4313), 1, + sym__enum_base_clause, + STATE(4355), 1, + sym_enumerator_list, + STATE(4486), 1, + sym_attribute_specifier, + ACTIONS(8007), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(8009), 24, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(13212), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(5636), 19, - anon_sym_AMP, anon_sym___extension__, - anon_sym___based, - anon_sym_const, + anon_sym_LBRACK, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -687759,47 +687014,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [281609] = 16, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [281194] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(13152), 1, + anon_sym_requires, + STATE(8518), 1, + sym__function_attributes_end, + STATE(8519), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7732), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 6, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(8123), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [281271] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(13220), 1, + anon_sym_requires, + STATE(8521), 1, + sym__function_attributes_end, + STATE(8522), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13217), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7728), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7970), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [281348] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(12261), 1, + ACTIONS(12258), 1, anon_sym_STAR, - ACTIONS(12263), 1, + ACTIONS(12260), 1, anon_sym_AMP_AMP, - ACTIONS(12265), 1, + ACTIONS(12262), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9200), 1, + STATE(9205), 1, sym__abstract_declarator, - ACTIONS(6823), 2, + ACTIONS(7345), 2, anon_sym_LBRACE, anon_sym_requires, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2488), 2, + STATE(2450), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8117), 12, + ACTIONS(8134), 12, anon_sym___extension__, anon_sym_constexpr, anon_sym_volatile, @@ -687812,216 +687181,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [281676] = 6, + [281415] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(12974), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11269), 1, + anon_sym_requires, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + ACTIONS(12303), 1, anon_sym___attribute__, - ACTIONS(12976), 1, + ACTIONS(12306), 1, anon_sym___attribute, - STATE(7618), 1, + STATE(7692), 1, + sym_ref_qualifier, + STATE(8622), 1, + sym__function_attributes_end, + STATE(8676), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, sym_attribute_specifier, - ACTIONS(7413), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7415), 28, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym___extension__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - anon_sym_final, - anon_sym_override, anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [281723] = 16, + STATE(7918), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [281498] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(8123), 1, + ACTIONS(8140), 1, anon_sym_const, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(12261), 1, + ACTIONS(12258), 1, anon_sym_STAR, - ACTIONS(12263), 1, + ACTIONS(12260), 1, anon_sym_AMP_AMP, - ACTIONS(12265), 1, + ACTIONS(12262), 1, anon_sym_AMP, - STATE(2726), 1, + STATE(2724), 1, sym_alignas_qualifier, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9269), 1, + STATE(9182), 1, sym__abstract_declarator, - ACTIONS(7355), 2, + ACTIONS(7367), 2, anon_sym_LBRACE, anon_sym_requires, - ACTIONS(8125), 2, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(2488), 2, + STATE(7562), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(8117), 12, - anon_sym___extension__, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - [281790] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9961), 1, - anon_sym___attribute__, - ACTIONS(9963), 1, - anon_sym___attribute, - ACTIONS(10114), 1, - anon_sym_LBRACE, - ACTIONS(13208), 1, - anon_sym_COLON, - STATE(4291), 1, - sym__enum_base_clause, - STATE(4328), 1, - sym_enumerator_list, - STATE(4429), 1, - sym_attribute_specifier, - ACTIONS(8006), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(8008), 24, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [281845] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13218), 1, - sym_identifier, - ACTIONS(13224), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(7676), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9618), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7205), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(7207), 4, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - ACTIONS(13221), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9613), 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, - [281902] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - STATE(7686), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7359), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(7357), 25, - anon_sym_AMP, + ACTIONS(8134), 12, 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, @@ -688033,95 +687291,85 @@ 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, - [281951] = 21, + [281565] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(10837), 1, anon_sym_requires, - STATE(8510), 1, - sym__function_attributes_end, - STATE(8511), 1, + STATE(8562), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(8596), 1, + sym__function_attributes_end, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - STATE(7733), 3, + STATE(7729), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7791), 6, + ACTIONS(7970), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [282028] = 9, + [281642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9576), 1, - anon_sym_LBRACE, - ACTIONS(13210), 1, - anon_sym_COLON, - STATE(3191), 1, - sym_attribute_specifier, - STATE(7660), 1, - sym__enum_base_clause, - STATE(7714), 1, - sym_enumerator_list, - ACTIONS(43), 2, + ACTIONS(12840), 1, anon_sym___attribute__, + ACTIONS(12842), 1, anon_sym___attribute, - ACTIONS(8008), 3, + STATE(7610), 1, + sym_attribute_specifier, + ACTIONS(7523), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7525), 28, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(8006), 23, - 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, @@ -688135,43 +687383,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - sym_primitive_type, - sym_identifier, - [282081] = 11, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [281689] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(13227), 1, - sym_identifier, - ACTIONS(13233), 1, - sym_primitive_type, - STATE(3497), 1, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(8140), 1, + anon_sym_const, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(12258), 1, + anon_sym_STAR, + ACTIONS(12260), 1, + anon_sym_AMP_AMP, + ACTIONS(12262), 1, + anon_sym_AMP, + STATE(2724), 1, sym_alignas_qualifier, - STATE(7694), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(9727), 2, + STATE(5625), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9238), 1, + sym__abstract_declarator, + ACTIONS(7375), 2, + anon_sym_LBRACE, + anon_sym_requires, + ACTIONS(8142), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7602), 2, + STATE(7572), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7249), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(7251), 4, - anon_sym_AMP, - anon_sym___attribute__, - anon_sym___attribute, - anon_sym___based, - ACTIONS(13230), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(9722), 13, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(8134), 12, anon_sym___extension__, - anon_sym_const, anon_sym_constexpr, anon_sym_volatile, anon_sym_restrict, @@ -688183,14 +687439,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [282138] = 3, + [281756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 3, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(7246), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7781), 29, + ACTIONS(7248), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688220,14 +687478,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282178] = 3, + [281799] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7635), 3, - anon_sym_AMP, + ACTIONS(12840), 1, + anon_sym___attribute__, + ACTIONS(12842), 1, anon_sym___attribute, + STATE(7611), 1, + sym_attribute_specifier, + ACTIONS(7527), 2, + anon_sym_AMP, anon_sym_const, - ACTIONS(7637), 29, + ACTIONS(7529), 28, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688235,7 +687498,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, @@ -688257,25 +687519,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282218] = 3, + [281846] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 3, - anon_sym_AMP, - anon_sym___attribute, - anon_sym_const, - ACTIONS(7641), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + STATE(7686), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7359), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(7357), 25, + anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + 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, @@ -688289,30 +687559,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [282258] = 3, + sym_primitive_type, + sym_identifier, + [281895] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 3, - anon_sym_AMP, + ACTIONS(9520), 1, + anon_sym_LBRACE, + ACTIONS(13187), 1, + anon_sym_COLON, + STATE(3174), 1, + sym_attribute_specifier, + STATE(7651), 1, + sym__enum_base_clause, + STATE(7696), 1, + sym_enumerator_list, + ACTIONS(43), 2, + anon_sym___attribute__, anon_sym___attribute, - anon_sym_const, - ACTIONS(7563), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8009), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - anon_sym_SEMI, + ACTIONS(8007), 23, + anon_sym_AMP, anon_sym___extension__, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, + 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, @@ -688326,56 +687603,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [282298] = 3, + sym_primitive_type, + sym_identifier, + [281948] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7655), 3, - anon_sym_AMP, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, anon_sym___attribute, - anon_sym_const, - ACTIONS(7657), 29, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(8367), 1, + sym_trailing_return_type, + STATE(8629), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7783), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7970), 5, 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, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [282338] = 3, + [282024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7663), 3, + ACTIONS(7606), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7665), 29, + ACTIONS(7608), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688405,14 +687697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282378] = 3, + [282064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 3, + ACTIONS(7668), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7669), 29, + ACTIONS(7670), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688442,14 +687734,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282418] = 3, + [282104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7671), 3, + ACTIONS(7672), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7673), 29, + ACTIONS(7674), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688479,124 +687771,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282458] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - ACTIONS(13188), 1, - anon_sym_requires, - STATE(8398), 1, - sym_trailing_return_type, - STATE(8471), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7767), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [282534] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(13108), 1, - anon_sym___attribute__, - ACTIONS(13111), 1, - anon_sym___attribute, - ACTIONS(13236), 1, - anon_sym_requires, - STATE(8401), 1, - sym_trailing_return_type, - STATE(8472), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13202), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7776), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [282610] = 3, + [282144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 3, + ACTIONS(7676), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7649), 29, + ACTIONS(7678), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688626,14 +687808,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282650] = 3, + [282184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 3, + ACTIONS(7680), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7653), 29, + ACTIONS(7682), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688663,14 +687845,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282690] = 3, + [282224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 3, + ACTIONS(7751), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7769), 29, + ACTIONS(7753), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688700,14 +687882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282730] = 3, + [282264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 3, + ACTIONS(7735), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7773), 29, + ACTIONS(7737), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688737,14 +687919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282770] = 3, + [282304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7158), 3, + ACTIONS(7610), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7160), 29, + ACTIONS(7612), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688774,14 +687956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282810] = 3, + [282344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7659), 3, + ACTIONS(7761), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7661), 29, + ACTIONS(7763), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688811,14 +687993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282850] = 3, + [282384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 3, + ACTIONS(7765), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7563), 29, + ACTIONS(7767), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688848,14 +688030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282890] = 3, + [282424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 3, + ACTIONS(7614), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7601), 29, + ACTIONS(7616), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688885,14 +688067,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282930] = 3, + [282464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 3, + ACTIONS(7672), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7733), 29, + ACTIONS(7674), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688922,14 +688104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [282970] = 3, + [282504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 3, + ACTIONS(7672), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7719), 29, + ACTIONS(7674), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -688959,7 +688141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283010] = 3, + [282544] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7775), 3, @@ -688996,14 +688178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283050] = 3, + [282584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7569), 3, + ACTIONS(7779), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7571), 29, + ACTIONS(7781), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689033,14 +688215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283090] = 3, + [282624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 3, + ACTIONS(7638), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7629), 29, + ACTIONS(7640), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689070,14 +688252,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283130] = 3, + [282664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 3, + ACTIONS(7646), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7587), 29, + ACTIONS(7648), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689107,14 +688289,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283170] = 3, + [282704] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + STATE(8373), 1, + sym_trailing_return_type, + STATE(8479), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7750), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [282780] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 3, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + STATE(8367), 1, + sym_trailing_return_type, + STATE(8480), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7754), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7970), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [282856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7696), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7597), 29, + ACTIONS(7698), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689144,14 +688436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283210] = 3, + [282896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 3, + ACTIONS(7700), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7609), 29, + ACTIONS(7702), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689181,14 +688473,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283250] = 3, + [282936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 3, + ACTIONS(7642), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7625), 29, + ACTIONS(7644), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689218,14 +688510,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283290] = 3, + [282976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 3, + ACTIONS(7602), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7741), 29, + ACTIONS(7604), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689255,14 +688547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283330] = 3, + [283016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7743), 3, + ACTIONS(7590), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7745), 29, + ACTIONS(7592), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689292,14 +688584,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283370] = 3, + [283056] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10366), 1, + anon_sym_AMP_AMP, + ACTIONS(10368), 1, + anon_sym_AMP, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(13152), 1, + anon_sym_requires, + STATE(7714), 1, + sym_ref_qualifier, + STATE(8833), 1, + sym__function_attributes_end, + STATE(8969), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7874), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7991), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [283138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 3, + ACTIONS(7584), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7605), 29, + ACTIONS(7586), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689329,14 +688679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283410] = 3, + [283178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 3, + ACTIONS(7711), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7753), 29, + ACTIONS(7713), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689366,14 +688716,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283450] = 3, + [283218] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 3, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + ACTIONS(13175), 1, + anon_sym_requires, + STATE(8413), 1, + sym_trailing_return_type, + STATE(8483), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7761), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [283294] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(8373), 1, + sym_trailing_return_type, + STATE(8604), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7794), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [283370] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + ACTIONS(13223), 1, + anon_sym_requires, + STATE(8414), 1, + sym_trailing_return_type, + STATE(8484), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13217), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + STATE(7763), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7970), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [283446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7598), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7757), 29, + ACTIONS(7600), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689403,14 +688918,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283490] = 3, + [283486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7759), 3, + ACTIONS(7715), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7761), 29, + ACTIONS(7717), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689440,14 +688955,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283530] = 3, + [283526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 3, + ACTIONS(7743), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7765), 29, + ACTIONS(7745), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689477,14 +688992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283570] = 3, + [283566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 3, + ACTIONS(7650), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7597), 29, + ACTIONS(7652), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689514,179 +689029,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283610] = 21, + [283606] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(12406), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(10577), 1, anon_sym___attribute, - STATE(8441), 1, - sym_trailing_return_type, - STATE(8497), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7770), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [283686] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, + ACTIONS(11003), 1, anon_sym_DASH_GT, - ACTIONS(10921), 1, + ACTIONS(13175), 1, anon_sym_requires, - ACTIONS(13108), 1, - anon_sym___attribute__, - ACTIONS(13111), 1, - anon_sym___attribute, - STATE(8374), 1, + STATE(8413), 1, sym_trailing_return_type, - STATE(8450), 1, + STATE(8662), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - STATE(7743), 3, + STATE(7790), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7874), 5, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [283762] = 21, + anon_sym_try, + [283682] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, + ACTIONS(11003), 1, anon_sym_DASH_GT, - STATE(8374), 1, + ACTIONS(13223), 1, + anon_sym_requires, + STATE(8414), 1, sym_trailing_return_type, - STATE(8659), 1, + STATE(8598), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - STATE(7758), 3, + STATE(7791), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 5, + ACTIONS(7970), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [283838] = 3, + [283758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 3, + ACTIONS(7719), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7567), 29, + ACTIONS(7721), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689716,14 +689176,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283878] = 3, + [283798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7643), 3, + ACTIONS(7556), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7645), 29, + ACTIONS(7558), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689753,14 +689213,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283918] = 3, + [283838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 3, + ACTIONS(7246), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7737), 29, + ACTIONS(7248), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689790,14 +689250,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283958] = 3, + [283878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 3, + ACTIONS(7723), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7749), 29, + ACTIONS(7725), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689827,72 +689287,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [283998] = 24, + [283918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10348), 1, - anon_sym_AMP_AMP, - ACTIONS(10350), 1, + ACTIONS(7727), 3, anon_sym_AMP, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13149), 1, - anon_sym_requires, - STATE(7701), 1, - sym_ref_qualifier, - STATE(8845), 1, - sym__function_attributes_end, - STATE(8972), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7791), 2, + anon_sym_const, + ACTIONS(7729), 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___attribute__, anon_sym_LBRACE, - ACTIONS(10859), 2, + 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_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7991), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [284080] = 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [283958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 3, + ACTIONS(7654), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7563), 29, + ACTIONS(7656), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689922,14 +689361,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [284120] = 3, + [283998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 3, + ACTIONS(7549), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7633), 29, + ACTIONS(7551), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -689959,179 +689398,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [284160] = 21, + [284038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(7723), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - ACTIONS(13188), 1, - anon_sym_requires, - STATE(8398), 1, - sym_trailing_return_type, - STATE(8627), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7794), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 5, + anon_sym_const, + ACTIONS(7725), 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___attribute__, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [284236] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - ACTIONS(13236), 1, - anon_sym_requires, - STATE(8401), 1, - sym_trailing_return_type, - STATE(8629), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13202), 2, + 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_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7800), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7966), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [284312] = 21, + anon_sym_requires, + [284078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(7144), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - STATE(8441), 1, - sym_trailing_return_type, - STATE(8631), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7759), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 5, + anon_sym_const, + ACTIONS(7146), 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___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_final, + anon_sym_override, + anon_sym_GT2, anon_sym_try, - [284388] = 3, + anon_sym_requires, + [284118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7223), 3, + ACTIONS(7594), 3, anon_sym_AMP, anon_sym___attribute, anon_sym_const, - ACTIONS(7225), 29, + ACTIONS(7596), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -690161,170 +689509,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [284428] = 18, + [284158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(13108), 1, - anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(7747), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(13114), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13161), 1, - anon_sym_requires, - STATE(8035), 1, - sym_trailing_return_type, - STATE(8067), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13158), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 9, + anon_sym_const, + ACTIONS(7749), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, + anon_sym___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_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [284497] = 18, + anon_sym_requires, + [284198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(7704), 3, + anon_sym_AMP, anon_sym___attribute, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - STATE(7999), 1, - sym_trailing_return_type, - STATE(8069), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 9, + anon_sym_const, + ACTIONS(7706), 29, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON, + anon_sym___extension__, + anon_sym___attribute__, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [284566] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(13197), 1, - anon_sym_requires, - STATE(8714), 1, - sym__function_attributes_end, - STATE(8715), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13146), 2, + 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_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - STATE(7848), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, anon_sym_GT2, - [284641] = 7, + anon_sym_try, + anon_sym_requires, + [284238] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9576), 1, + ACTIONS(9520), 1, anon_sym_LBRACE, - STATE(3201), 1, + STATE(3182), 1, sym_attribute_specifier, - STATE(7732), 1, + STATE(7697), 1, sym_enumerator_list, ACTIONS(43), 2, anon_sym___attribute__, @@ -690357,14 +689623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [284688] = 7, + [284285] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9576), 1, + ACTIONS(9520), 1, anon_sym_LBRACE, - STATE(3245), 1, + STATE(3109), 1, sym_attribute_specifier, - STATE(7719), 1, + STATE(7701), 1, sym_enumerator_list, ACTIONS(43), 2, anon_sym___attribute__, @@ -690397,48 +689663,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [284735] = 18, + [284332] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, + ACTIONS(10385), 1, anon_sym_DASH_GT, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(13108), 1, + ACTIONS(13106), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13109), 1, anon_sym___attribute, - ACTIONS(13114), 1, + ACTIONS(13112), 1, anon_sym_LBRACK_LBRACK, - STATE(8057), 1, + ACTIONS(13144), 1, + anon_sym_requires, + STATE(8022), 1, sym_trailing_return_type, - STATE(8070), 1, + STATE(8065), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(13141), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8317), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 9, + ACTIONS(7970), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -690448,312 +689714,468 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [284804] = 21, + [284401] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(13226), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(13229), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(13232), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, + ACTIONS(13238), 1, anon_sym_requires, - STATE(8717), 1, + STATE(7993), 1, + sym_trailing_return_type, + STATE(8066), 1, sym__function_attributes_end, - STATE(8718), 1, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13235), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8267), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [284470] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_requires, + STATE(8019), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(8064), 1, + sym__function_attributes_end, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(12312), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8319), 2, sym__function_postfix, sym_requires_clause, - STATE(7840), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(7791), 4, - anon_sym_DOT_DOT_DOT, + ACTIONS(7874), 9, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - [284879] = 21, + anon_sym_try, + [284539] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, + ACTIONS(11267), 1, anon_sym_DASH_GT, - ACTIONS(13239), 1, + ACTIONS(13178), 1, anon_sym_requires, - STATE(8724), 1, + STATE(8686), 1, sym__function_attributes_end, - STATE(8725), 1, + STATE(8687), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - STATE(7849), 3, + STATE(7811), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 4, + ACTIONS(7874), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [284954] = 18, + [284614] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, + ACTIONS(10385), 1, anon_sym_DASH_GT, - ACTIONS(10382), 1, + ACTIONS(10411), 1, anon_sym_requires, - ACTIONS(13242), 1, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + STATE(8004), 1, + sym_trailing_return_type, + STATE(8060), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [284683] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + ACTIONS(13112), 1, + anon_sym_LBRACK_LBRACK, + STATE(8050), 1, + sym_trailing_return_type, + STATE(8061), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 9, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [284752] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(13245), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(13248), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - STATE(8032), 1, - sym_trailing_return_type, - STATE(8073), 1, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(11269), 1, + anon_sym_requires, + STATE(8675), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(8676), 1, + sym_trailing_return_type, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 9, + STATE(7872), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7874), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [285023] = 18, + [284827] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(12412), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(11269), 1, anon_sym_requires, - STATE(8013), 1, - sym_trailing_return_type, - STATE(8066), 1, + STATE(8677), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(8678), 1, + sym_trailing_return_type, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12415), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 9, + STATE(7835), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(7970), 4, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, anon_sym_GT2, - anon_sym_try, - [285092] = 21, + [284902] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, + ACTIONS(11267), 1, anon_sym_DASH_GT, - ACTIONS(11298), 1, + ACTIONS(13241), 1, anon_sym_requires, - STATE(8726), 1, + STATE(8688), 1, sym__function_attributes_end, - STATE(8730), 1, + STATE(8689), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - STATE(7842), 3, + STATE(7813), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(7966), 4, + ACTIONS(7970), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [285167] = 18, + [284977] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, + ACTIONS(10385), 1, anon_sym_DASH_GT, - ACTIONS(13242), 1, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(13226), 1, anon_sym___attribute__, - ACTIONS(13245), 1, + ACTIONS(13229), 1, anon_sym___attribute, - ACTIONS(13248), 1, + ACTIONS(13232), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13254), 1, - anon_sym_requires, - STATE(8046), 1, + STATE(8011), 1, sym_trailing_return_type, - STATE(8068), 1, + STATE(8062), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13251), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(8267), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 9, + ACTIONS(8402), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -690763,27 +690185,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [285236] = 5, + [285046] = 4, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, + STATE(7666), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7725), 4, + ACTIONS(7586), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13257), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7723), 21, + ACTIONS(7584), 25, 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, @@ -690800,37 +690221,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285278] = 11, + [285086] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13260), 1, - sym_identifier, - ACTIONS(13264), 1, - sym_primitive_type, - STATE(3497), 1, - sym_alignas_qualifier, - STATE(8970), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - ACTIONS(7207), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(7205), 3, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_GT2, - ACTIONS(13262), 4, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(13202), 1, + anon_sym_decltype, + ACTIONS(13244), 1, + sym_auto, + STATE(3226), 1, + sym_decltype_auto, + ACTIONS(7248), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7246), 23, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___based, 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, @@ -690843,50 +690256,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [285332] = 20, + anon_sym_alignas, + anon_sym__Alignas, + sym_primitive_type, + sym_identifier, + [285132] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11073), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13133), 1, sym_identifier, - ACTIONS(13266), 1, + ACTIONS(13246), 1, anon_sym_LPAREN2, - ACTIONS(13268), 1, + ACTIONS(13248), 1, anon_sym_LBRACE, - ACTIONS(13272), 1, + ACTIONS(13252), 1, anon_sym_requires, - STATE(2742), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(5671), 1, + STATE(3638), 1, sym_requirement_seq, - STATE(8042), 1, + STATE(8026), 1, sym_lambda_capture_specifier, - STATE(8686), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(10366), 1, + STATE(10208), 1, sym_requires_parameter_list, - ACTIONS(13270), 2, + ACTIONS(13250), 2, sym_true, sym_false, - STATE(2934), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5551), 8, + STATE(3639), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -690895,22 +690312,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [285404] = 5, + [285204] = 5, ACTIONS(3), 1, sym_comment, - STATE(7699), 1, + STATE(4129), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7709), 4, + ACTIONS(7624), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13274), 4, + ACTIONS(13254), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7707), 21, + ACTIONS(7622), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -690932,156 +690349,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285446] = 21, + [285246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - ACTIONS(13197), 1, - anon_sym_requires, - STATE(8643), 1, - sym__function_attributes_end, - STATE(8715), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 3, - anon_sym_COMMA, + STATE(4129), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7660), 4, anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7938), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [285520] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, - anon_sym_requires, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(13108), 1, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(13257), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7658), 21, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(13111), 1, anon_sym___attribute, - STATE(8565), 1, - sym_trailing_return_type, - STATE(8606), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - STATE(7962), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [285594] = 20, + 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, + [285288] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13135), 1, sym_identifier, - ACTIONS(13277), 1, + ACTIONS(13260), 1, anon_sym_LPAREN2, - ACTIONS(13279), 1, + ACTIONS(13262), 1, anon_sym_LBRACE, - ACTIONS(13283), 1, + ACTIONS(13266), 1, anon_sym_requires, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(5141), 1, + STATE(3770), 1, + sym_splice_specifier, + STATE(5148), 1, sym_requirement_seq, - STATE(8045), 1, + STATE(8038), 1, sym_lambda_capture_specifier, - STATE(8687), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(10515), 1, + STATE(10534), 1, sym_requires_parameter_list, - ACTIONS(13281), 2, + ACTIONS(13264), 2, sym_true, sym_false, - STATE(2678), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5042), 8, + STATE(6148), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -691090,75 +690438,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [285666] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(13108), 1, - anon_sym___attribute__, - ACTIONS(13111), 1, - anon_sym___attribute, - ACTIONS(13239), 1, - anon_sym_requires, - STATE(8662), 1, - sym__function_attributes_end, - STATE(8725), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13202), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7985), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [285740] = 5, + [285360] = 5, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, + STATE(7674), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7715), 4, + ACTIONS(7686), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13285), 4, + ACTIONS(13268), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7713), 21, + ACTIONS(7684), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -691180,454 +690475,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [285782] = 21, + [285402] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11518), 1, + ACTIONS(11309), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(12303), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(12306), 1, anon_sym___attribute, - ACTIONS(13149), 1, + ACTIONS(13152), 1, anon_sym_requires, - STATE(8511), 1, + STATE(8519), 1, sym_trailing_return_type, - STATE(8640), 1, + STATE(8649), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7874), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7969), 3, + STATE(7920), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [285856] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, - sym_identifier, - ACTIONS(13288), 1, - anon_sym_LPAREN2, - ACTIONS(13290), 1, - anon_sym_LBRACE, - ACTIONS(13294), 1, - anon_sym_requires, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(4980), 1, - sym_requirement_seq, - STATE(8041), 1, - sym_lambda_capture_specifier, - STATE(8682), 1, - sym__scope_resolution, - STATE(10367), 1, - sym_requires_parameter_list, - ACTIONS(13292), 2, - sym_true, - sym_false, - STATE(2615), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(4982), 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, - [285928] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(13100), 1, - sym_identifier, - ACTIONS(13296), 1, - anon_sym_LPAREN2, - ACTIONS(13298), 1, - anon_sym_LBRACE, - ACTIONS(13302), 1, - anon_sym_requires, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(5137), 1, - sym_requirement_seq, - STATE(8024), 1, - sym_lambda_capture_specifier, - STATE(8702), 1, - sym__scope_resolution, - STATE(10457), 1, - sym_requires_parameter_list, - ACTIONS(13300), 2, - sym_true, - sym_false, - STATE(2661), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(5138), 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, - [286000] = 21, + [285476] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11518), 1, + ACTIONS(11309), 1, anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13106), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13109), 1, anon_sym___attribute, - ACTIONS(13205), 1, + ACTIONS(13220), 1, anon_sym_requires, - STATE(8513), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(8641), 1, + STATE(8652), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(7970), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7922), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [286074] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - STATE(8667), 1, - sym__function_attributes_end, - STATE(8718), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7968), 3, + STATE(7935), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [286148] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7677), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(13304), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7675), 21, - 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, - [286190] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, - sym_identifier, - ACTIONS(13307), 1, - anon_sym_LPAREN2, - ACTIONS(13309), 1, - anon_sym_LBRACE, - ACTIONS(13313), 1, - anon_sym_requires, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(5259), 1, - sym_requirement_seq, - STATE(8001), 1, - sym_lambda_capture_specifier, - STATE(8738), 1, - sym__scope_resolution, - STATE(10473), 1, - sym_requires_parameter_list, - ACTIONS(13311), 2, - sym_true, - sym_false, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(6188), 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, - [286262] = 20, + [285550] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11111), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, ACTIONS(13104), 1, sym_identifier, - ACTIONS(13307), 1, + ACTIONS(13271), 1, anon_sym_LPAREN2, - ACTIONS(13309), 1, + ACTIONS(13273), 1, anon_sym_LBRACE, - ACTIONS(13313), 1, + ACTIONS(13277), 1, anon_sym_requires, - STATE(3711), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(5259), 1, - sym_requirement_seq, - STATE(8001), 1, - sym_lambda_capture_specifier, - STATE(8707), 1, - sym__scope_resolution, - STATE(10473), 1, - sym_requires_parameter_list, - ACTIONS(13315), 2, - sym_true, - sym_false, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(6288), 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, - [286334] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, - sym_identifier, - ACTIONS(13317), 1, - anon_sym_LPAREN2, - ACTIONS(13319), 1, - anon_sym_LBRACE, - ACTIONS(13323), 1, - anon_sym_requires, - STATE(2104), 1, + STATE(4222), 1, sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(3648), 1, + STATE(6718), 1, sym_requirement_seq, - STATE(8030), 1, + STATE(8053), 1, sym_lambda_capture_specifier, - STATE(8763), 1, + STATE(8737), 1, sym__scope_resolution, - STATE(10534), 1, + STATE(10470), 1, sym_requires_parameter_list, - ACTIONS(13321), 2, + ACTIONS(13275), 2, sym_true, sym_false, - STATE(2147), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3657), 8, + STATE(6642), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -691636,59 +690633,22 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [286406] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7683), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACE, - ACTIONS(13325), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7681), 21, - 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, - [286448] = 5, + [285622] = 5, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, + STATE(4129), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7695), 4, + ACTIONS(7399), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13328), 4, + ACTIONS(13279), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7693), 21, + ACTIONS(7402), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -691710,75 +690670,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286490] = 21, + [285664] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, + ACTIONS(10837), 1, anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11309), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(12303), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(12306), 1, anon_sym___attribute, - STATE(8585), 1, + STATE(8579), 1, sym_trailing_return_type, - STATE(8604), 1, + STATE(8606), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7874), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - STATE(7933), 3, + STATE(7906), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [286564] = 5, + [285738] = 5, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, + STATE(4129), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7699), 4, + ACTIONS(7733), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13331), 4, + ACTIONS(13283), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7697), 21, + ACTIONS(7731), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -691800,22 +690760,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286606] = 5, + [285780] = 5, ACTIONS(3), 1, sym_comment, - STATE(7687), 1, + STATE(4129), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7557), 4, + ACTIONS(7741), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13334), 4, + ACTIONS(13286), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7555), 21, + ACTIONS(7739), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -691837,22 +690797,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286648] = 5, + [285822] = 5, ACTIONS(3), 1, sym_comment, - STATE(7689), 1, + STATE(7681), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7785), 4, + ACTIONS(7757), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13337), 4, + ACTIONS(13289), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7783), 21, + ACTIONS(7755), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -691874,26 +690834,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286690] = 4, + [285864] = 5, ACTIONS(3), 1, sym_comment, - STATE(7682), 1, + STATE(7665), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7719), 4, + ACTIONS(7771), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(7717), 25, + ACTIONS(13292), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7769), 21, 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, @@ -691910,29 +690871,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286730] = 7, + [285906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(13216), 1, - anon_sym_decltype, - ACTIONS(13340), 1, - sym_auto, - STATE(3215), 1, - sym_decltype_auto, - ACTIONS(7225), 3, + STATE(4129), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7562), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7223), 23, - anon_sym_AMP, - anon_sym___extension__, - anon_sym___based, + anon_sym_LBRACE, + ACTIONS(13295), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, + ACTIONS(7560), 21, + anon_sym_AMP, + anon_sym___extension__, + anon_sym___attribute__, + anon_sym___attribute, + anon_sym___based, anon_sym_const, anon_sym_constexpr, anon_sym_volatile, @@ -691949,27 +690908,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [286776] = 5, + [285948] = 11, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, + ACTIONS(13298), 1, + sym_identifier, + ACTIONS(13302), 1, + sym_primitive_type, + STATE(3492), 1, + sym_alignas_qualifier, + STATE(7781), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7525), 4, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + ACTIONS(7211), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(7682), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(7209), 3, + anon_sym_COMMA, anon_sym_LBRACE, - ACTIONS(13342), 4, + anon_sym_GT2, + ACTIONS(13300), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7528), 21, - 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, @@ -691982,130 +690951,22 @@ 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, - [286818] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, - sym_identifier, - ACTIONS(13346), 1, - anon_sym_LPAREN2, - ACTIONS(13348), 1, - anon_sym_LBRACE, - ACTIONS(13352), 1, - anon_sym_requires, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(4263), 1, - sym_splice_specifier, - STATE(6649), 1, - sym_requirement_seq, - STATE(8009), 1, - sym_lambda_capture_specifier, - STATE(8675), 1, - sym__scope_resolution, - STATE(10244), 1, - sym_requires_parameter_list, - ACTIONS(13350), 2, - sym_true, - sym_false, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(6650), 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, - [286890] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13133), 1, - sym_identifier, - ACTIONS(13354), 1, - anon_sym_LPAREN2, - ACTIONS(13356), 1, - anon_sym_LBRACE, - ACTIONS(13360), 1, - anon_sym_requires, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(6492), 1, - sym_requirement_seq, - STATE(8047), 1, - sym_lambda_capture_specifier, - STATE(8676), 1, - sym__scope_resolution, - STATE(10281), 1, - sym_requires_parameter_list, - ACTIONS(13358), 2, - sym_true, - sym_false, - STATE(4296), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(6647), 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, - [286962] = 5, + [286002] = 5, ACTIONS(3), 1, sym_comment, - STATE(7668), 1, + STATE(7675), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7703), 4, + ACTIONS(7692), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13362), 4, + ACTIONS(13304), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7701), 21, + ACTIONS(7690), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -692127,75 +690988,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [287004] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(13108), 1, - anon_sym___attribute__, - ACTIONS(13111), 1, - anon_sym___attribute, - STATE(8668), 1, - sym__function_attributes_end, - STATE(8730), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - STATE(7917), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - [287078] = 5, + [286044] = 5, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, + STATE(4129), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7729), 4, + ACTIONS(7620), 4, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, anon_sym_LBRACE, - ACTIONS(13365), 4, + ACTIONS(13307), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7727), 21, + ACTIONS(7618), 21, anon_sym_AMP, anon_sym___extension__, anon_sym___attribute__, @@ -692217,31 +691025,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [287120] = 11, + [286086] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(13368), 1, + ACTIONS(13310), 1, sym_identifier, - ACTIONS(13372), 1, + ACTIONS(13314), 1, sym_primitive_type, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, - STATE(7789), 1, + STATE(8968), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - ACTIONS(7251), 2, + ACTIONS(7195), 2, anon_sym___attribute__, anon_sym___attribute, - STATE(7669), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(7249), 3, + ACTIONS(7193), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(13370), 4, + ACTIONS(13312), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, @@ -692260,319 +691068,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [287174] = 21, + [286140] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13205), 1, + ACTIONS(10837), 1, anon_sym_requires, - STATE(8853), 1, - sym__function_attributes_end, - STATE(8949), 1, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + STATE(8562), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(8613), 1, + sym__function_attributes_end, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7966), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - STATE(7994), 3, + ACTIONS(7970), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + STATE(7975), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [287247] = 18, + [286214] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + ACTIONS(13106), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(13109), 1, anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13114), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13161), 1, + ACTIONS(13241), 1, anon_sym_requires, - STATE(8035), 1, - sym_trailing_return_type, - STATE(8429), 1, + STATE(8642), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(8689), 1, + sym_trailing_return_type, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13158), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, - anon_sym_RPAREN, + ACTIONS(7970), 3, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [287314] = 18, + anon_sym_GT2, + STATE(7926), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [286288] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11095), 1, + anon_sym_COLON_COLON, + ACTIONS(13127), 1, + sym_identifier, + ACTIONS(13260), 1, + anon_sym_LPAREN2, + ACTIONS(13262), 1, + anon_sym_LBRACE, + ACTIONS(13266), 1, + anon_sym_requires, + STATE(3721), 1, + sym_splice_specifier, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(5148), 1, + sym_requirement_seq, + STATE(8038), 1, + sym_lambda_capture_specifier, + STATE(8750), 1, + sym__scope_resolution, + STATE(10534), 1, + sym_requires_parameter_list, + ACTIONS(13316), 2, + sym_true, + sym_false, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6282), 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, + [286360] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(4129), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7664), 4, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACE, + ACTIONS(13318), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7662), 21, + anon_sym_AMP, + anon_sym___extension__, anon_sym___attribute__, - ACTIONS(10584), 1, anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(12412), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, + 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, + [286402] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10917), 1, + anon_sym_COLON_COLON, + ACTIONS(13155), 1, + sym_identifier, + ACTIONS(13321), 1, + anon_sym_LPAREN2, + ACTIONS(13323), 1, + anon_sym_LBRACE, + ACTIONS(13327), 1, anon_sym_requires, - ACTIONS(12858), 1, - anon_sym___asm, - STATE(8013), 1, - sym_trailing_return_type, - STATE(8125), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(12415), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(12855), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 7, - anon_sym_COMMA, + STATE(2581), 1, + sym_splice_specifier, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(4869), 1, + sym_requirement_seq, + STATE(8002), 1, + sym_lambda_capture_specifier, + STATE(8744), 1, + sym__scope_resolution, + STATE(10344), 1, + sym_requires_parameter_list, + ACTIONS(13325), 2, + sym_true, + sym_false, + STATE(2624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(4779), 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, + [286474] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13125), 1, + sym_identifier, + ACTIONS(13329), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(13331), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [287381] = 18, + ACTIONS(13335), 1, + anon_sym_requires, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(5060), 1, + sym_requirement_seq, + STATE(8010), 1, + sym_lambda_capture_specifier, + STATE(8746), 1, + sym__scope_resolution, + STATE(10421), 1, + sym_requires_parameter_list, + ACTIONS(13333), 2, + sym_true, + sym_false, + STATE(2675), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5062), 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, + [286546] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + ACTIONS(12303), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(12306), 1, anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13248), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13254), 1, + ACTIONS(13178), 1, anon_sym_requires, - ACTIONS(13377), 1, - anon_sym___asm, - STATE(8046), 1, - sym_trailing_return_type, - STATE(8127), 1, + STATE(8636), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(8687), 1, + sym_trailing_return_type, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(13251), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(13374), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - STATE(7923), 2, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, + ACTIONS(7874), 3, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_GT2, + STATE(7921), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [286620] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3284), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11007), 1, + anon_sym_COLON_COLON, + ACTIONS(13100), 1, + sym_identifier, + ACTIONS(13337), 1, + anon_sym_LPAREN2, + ACTIONS(13339), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [287448] = 18, + ACTIONS(13343), 1, + anon_sym_requires, + STATE(4219), 1, + sym_splice_specifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(6432), 1, + sym_requirement_seq, + STATE(8024), 1, + sym_lambda_capture_specifier, + STATE(8722), 1, + sym__scope_resolution, + STATE(10238), 1, + sym_requires_parameter_list, + ACTIONS(13341), 2, + sym_true, + sym_false, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6559), 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, + [286692] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, + sym_identifier, + ACTIONS(13345), 1, + anon_sym_LPAREN2, + ACTIONS(13347), 1, + anon_sym_LBRACE, + ACTIONS(13351), 1, + anon_sym_requires, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(5692), 1, + sym_requirement_seq, + STATE(8045), 1, + sym_lambda_capture_specifier, + STATE(8726), 1, + sym__scope_resolution, + STATE(10342), 1, + sym_requires_parameter_list, + ACTIONS(13349), 2, + sym_true, + sym_false, + STATE(2937), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5618), 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, + [286764] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13248), 1, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13254), 1, + ACTIONS(11269), 1, anon_sym_requires, - STATE(8046), 1, - sym_trailing_return_type, - STATE(8435), 1, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + STATE(8623), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(8678), 1, + sym_trailing_return_type, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13251), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, - anon_sym_RPAREN, + ACTIONS(7970), 3, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_GT2, + STATE(7949), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [286838] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3074), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13117), 1, + sym_identifier, + ACTIONS(13353), 1, + anon_sym_LPAREN2, + ACTIONS(13355), 1, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [287515] = 18, + ACTIONS(13359), 1, + anon_sym_requires, + STATE(2631), 1, + sym_splice_specifier, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(5200), 1, + sym_requirement_seq, + STATE(7998), 1, + sym_lambda_capture_specifier, + STATE(8741), 1, + sym__scope_resolution, + STATE(10234), 1, + sym_requires_parameter_list, + ACTIONS(13357), 2, + sym_true, + sym_false, + STATE(2688), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5139), 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, + [286910] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11269), 1, anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + ACTIONS(12303), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(12306), 1, anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13248), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13377), 1, - anon_sym___asm, - STATE(8032), 1, - sym_trailing_return_type, - STATE(8081), 1, + STATE(8622), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(8676), 1, + sym_trailing_return_type, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(13374), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - STATE(7923), 2, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, + ACTIONS(7874), 3, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [287582] = 7, + anon_sym_GT2, + STATE(7918), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [286984] = 7, ACTIONS(3), 1, sym_comment, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7715), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(13382), 3, + ACTIONS(13363), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(13380), 8, + ACTIONS(13361), 8, anon_sym_AMP, anon_sym___based, anon_sym_signed, @@ -692595,19 +691720,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [287627] = 5, + [287029] = 5, ACTIONS(3), 1, sym_comment, - STATE(3223), 1, + STATE(3083), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7549), 3, + ACTIONS(7521), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7547), 23, + ACTIONS(7519), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -692631,19 +691756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [287668] = 5, + [287070] = 5, ACTIONS(3), 1, sym_comment, - STATE(3116), 1, + STATE(3110), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7553), 3, + ACTIONS(7525), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7551), 23, + ACTIONS(7523), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -692667,19 +691792,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [287709] = 5, + [287111] = 5, ACTIONS(3), 1, sym_comment, - STATE(3187), 1, + STATE(3130), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7415), 3, + ACTIONS(7529), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7413), 23, + ACTIONS(7527), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -692703,55 +691828,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [287750] = 5, + [287152] = 18, ACTIONS(3), 1, sym_comment, - STATE(3199), 1, - sym_attribute_specifier, - ACTIONS(43), 2, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, anon_sym___attribute__, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(7429), 3, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + STATE(8004), 1, + sym_trailing_return_type, + STATE(8372), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7427), 23, - 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, - [287791] = 5, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [287219] = 5, ACTIONS(3), 1, sym_comment, - STATE(3243), 1, + STATE(3131), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7399), 3, + ACTIONS(7533), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7397), 23, + ACTIONS(7531), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -692775,19 +691913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [287832] = 5, + [287260] = 5, ACTIONS(3), 1, sym_comment, - STATE(3164), 1, + STATE(3157), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7507), 3, + ACTIONS(7541), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7505), 23, + ACTIONS(7539), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -692811,19 +691949,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [287873] = 5, + [287301] = 5, ACTIONS(3), 1, sym_comment, - STATE(3235), 1, + STATE(3160), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7425), 3, + ACTIONS(7483), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7423), 23, + ACTIONS(7481), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -692847,94 +691985,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [287914] = 7, + [287342] = 18, ACTIONS(3), 1, sym_comment, - STATE(3497), 1, - sym_alignas_qualifier, - ACTIONS(71), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(3138), 2, - sym_type_qualifier, - aux_sym__type_definition_type_repeat1, - ACTIONS(13386), 3, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(13112), 1, + anon_sym_LBRACK_LBRACK, + STATE(8050), 1, + sym_trailing_return_type, + STATE(8418), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(13384), 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, - [287959] = 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [287409] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(13216), 1, - anon_sym_decltype, - ACTIONS(13340), 1, - sym_auto, - STATE(3215), 1, - sym_decltype_auto, - ACTIONS(7225), 3, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(8404), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(13232), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13238), 1, + anon_sym_requires, + STATE(7993), 1, + sym_trailing_return_type, + STATE(8389), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13235), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8267), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 7, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7223), 23, - 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, - [288002] = 5, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [287476] = 5, ACTIONS(3), 1, sym_comment, - STATE(3103), 1, + STATE(3128), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7437), 3, + ACTIONS(7493), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7435), 23, + ACTIONS(7491), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -692958,55 +692119,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [288043] = 5, + [287517] = 18, ACTIONS(3), 1, sym_comment, - STATE(3175), 1, - sym_attribute_specifier, - ACTIONS(43), 2, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, anon_sym___attribute__, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(7455), 3, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12980), 1, + anon_sym___asm, + STATE(8004), 1, + sym_trailing_return_type, + STATE(8090), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(12977), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 7, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(7453), 23, - 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, - [288084] = 5, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [287584] = 5, ACTIONS(3), 1, sym_comment, - STATE(3139), 1, + STATE(3213), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7523), 3, + ACTIONS(7513), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7521), 23, + ACTIONS(7511), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -693030,19 +692204,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [288125] = 5, + [287625] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8404), 1, + anon_sym_LBRACK, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(13232), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13368), 1, + anon_sym___asm, + STATE(8011), 1, + sym_trailing_return_type, + STATE(8094), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13365), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8267), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [287692] = 5, ACTIONS(3), 1, sym_comment, - STATE(3212), 1, + STATE(3201), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7533), 3, + ACTIONS(7497), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7531), 23, + ACTIONS(7495), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -693066,74 +692289,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [288166] = 21, + [287733] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(13152), 1, anon_sym_requires, - STATE(8845), 1, + STATE(8833), 1, sym__function_attributes_end, - STATE(8972), 1, + STATE(8969), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(7791), 2, + ACTIONS(7874), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, STATE(7991), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - [288239] = 7, + [287806] = 7, ACTIONS(3), 1, sym_comment, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(7725), 2, + STATE(7695), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(13390), 3, + ACTIONS(13373), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(13388), 8, + ACTIONS(13371), 8, anon_sym_AMP, anon_sym___based, anon_sym_signed, @@ -693156,120 +692379,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [288284] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13114), 1, - anon_sym_LBRACK_LBRACK, - STATE(8057), 1, - sym_trailing_return_type, - STATE(8434), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 7, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [288351] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13114), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13194), 1, - anon_sym___asm, - STATE(8057), 1, - sym_trailing_return_type, - STATE(8080), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(13191), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [288418] = 7, + [287851] = 7, ACTIONS(3), 1, sym_comment, - STATE(3497), 1, + STATE(3492), 1, sym_alignas_qualifier, ACTIONS(71), 2, anon_sym_alignas, anon_sym__Alignas, - STATE(3138), 2, + STATE(3231), 2, sym_type_qualifier, aux_sym__type_definition_type_repeat1, - ACTIONS(13394), 3, + ACTIONS(13377), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(13392), 8, + ACTIONS(13375), 8, anon_sym_AMP, anon_sym___based, anon_sym_signed, @@ -693292,48 +692417,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mutable, anon_sym_constinit, anon_sym_consteval, - [288463] = 18, + [287896] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, + ACTIONS(10411), 1, anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10592), 1, + ACTIONS(10637), 1, anon_sym_DASH_GT, - ACTIONS(12412), 1, + ACTIONS(13112), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12858), 1, + ACTIONS(13184), 1, anon_sym___asm, - STATE(7999), 1, + STATE(8050), 1, sym_trailing_return_type, - STATE(8132), 1, + STATE(8093), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(8160), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - ACTIONS(12855), 2, + ACTIONS(13181), 2, anon_sym_asm, anon_sym___asm__, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(8317), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 7, + ACTIONS(7970), 7, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -693341,97 +692466,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [288530] = 18, + [287963] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13114), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13161), 1, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(13220), 1, anon_sym_requires, - ACTIONS(13194), 1, - anon_sym___asm, - STATE(8035), 1, - sym_trailing_return_type, - STATE(8126), 1, + STATE(8838), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(8953), 1, + sym_trailing_return_type, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(13158), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(13191), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - STATE(7923), 2, + ACTIONS(7970), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [288597] = 18, + STATE(7992), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + [288036] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10624), 1, + ACTIONS(10579), 1, anon_sym_DASH_GT, - ACTIONS(12412), 1, + ACTIONS(13112), 1, anon_sym_LBRACK_LBRACK, - STATE(7999), 1, + ACTIONS(13144), 1, + anon_sym_requires, + STATE(8022), 1, sym_trailing_return_type, - STATE(8373), 1, + STATE(8386), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(13141), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(8317), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 7, + ACTIONS(7970), 7, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -693439,48 +692567,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [288664] = 18, + [288103] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10624), 1, + ACTIONS(10579), 1, anon_sym_DASH_GT, - ACTIONS(12412), 1, + ACTIONS(13232), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12418), 1, - anon_sym_requires, - STATE(8013), 1, + STATE(8011), 1, sym_trailing_return_type, - STATE(8410), 1, + STATE(8377), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(12415), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(8267), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 7, + ACTIONS(8402), 7, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -693488,28 +692616,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [288731] = 9, + [288170] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3173), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7503), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7501), 23, + 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, + [288211] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(2950), 1, anon_sym_LBRACE, - ACTIONS(8569), 1, + ACTIONS(8563), 1, anon_sym_LPAREN2, - STATE(3537), 1, + STATE(3514), 1, aux_sym_sized_type_specifier_repeat1, - STATE(5537), 1, + STATE(5560), 1, sym_argument_list, - STATE(5538), 1, + STATE(5570), 1, sym_initializer_list, - ACTIONS(7223), 2, + ACTIONS(7246), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(9214), 4, + ACTIONS(9238), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(7225), 18, + ACTIONS(7248), 18, anon_sym_RPAREN, anon_sym_STAR, anon_sym_AMP_AMP, @@ -693528,48 +692692,306 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - [288780] = 18, + [288260] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_requires, + ACTIONS(12980), 1, anon_sym___asm, - ACTIONS(8424), 1, + STATE(8019), 1, + sym_trailing_return_type, + STATE(8100), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(12312), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(12977), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [288327] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3181), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(7507), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7505), 23, + 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, + [288368] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(13112), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13144), 1, anon_sym_requires, - ACTIONS(10582), 1, + ACTIONS(13184), 1, + anon_sym___asm, + STATE(8022), 1, + sym_trailing_return_type, + STATE(8101), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(13141), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13181), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [288435] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13202), 1, + anon_sym_decltype, + ACTIONS(13244), 1, + sym_auto, + STATE(3226), 1, + sym_decltype_auto, + ACTIONS(7248), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(7246), 23, + 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, + [288478] = 7, + ACTIONS(3), 1, + sym_comment, + STATE(3492), 1, + sym_alignas_qualifier, + ACTIONS(71), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(7712), 2, + sym_type_qualifier, + aux_sym__type_definition_type_repeat1, + ACTIONS(13381), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(13379), 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, + [288523] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8404), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10624), 1, + ACTIONS(10637), 1, anon_sym_DASH_GT, - ACTIONS(13248), 1, + ACTIONS(13232), 1, anon_sym_LBRACK_LBRACK, - STATE(8032), 1, + ACTIONS(13238), 1, + anon_sym_requires, + ACTIONS(13368), 1, + anon_sym___asm, + STATE(7993), 1, sym_trailing_return_type, - STATE(8372), 1, + STATE(8102), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(13235), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(13365), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8267), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 7, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [288590] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(12309), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12315), 1, + anon_sym_requires, + STATE(8019), 1, + sym_trailing_return_type, + STATE(8381), 1, + sym__function_attributes_end, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8160), 2, + ACTIONS(12312), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(8319), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, + ACTIONS(7874), 7, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -693577,19 +692999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [288847] = 5, + [288657] = 5, ACTIONS(3), 1, sym_comment, - STATE(3246), 1, + STATE(3218), 1, sym_attribute_specifier, ACTIONS(43), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7433), 3, + ACTIONS(7517), 3, anon_sym_LPAREN2, anon_sym_STAR, anon_sym_AMP_AMP, - ACTIONS(7431), 23, + ACTIONS(7515), 23, anon_sym_AMP, anon_sym___extension__, anon_sym___based, @@ -693613,373 +693035,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [288888] = 18, + [288698] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(13205), 1, + ACTIONS(13152), 1, anon_sym_requires, - STATE(8512), 1, + STATE(8518), 1, sym__function_attributes_end, - STATE(8513), 1, + STATE(8519), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 6, + ACTIONS(7874), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [288954] = 18, + [288764] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(13399), 1, + ACTIONS(13386), 1, anon_sym_requires, - STATE(8517), 1, + STATE(8523), 1, sym_trailing_return_type, - STATE(8518), 1, + STATE(8524), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13396), 2, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 6, + ACTIONS(8402), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [289020] = 18, + [288830] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(10837), 1, anon_sym_requires, - STATE(8551), 1, + STATE(8502), 1, sym_trailing_return_type, - STATE(8593), 1, + STATE(8590), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 6, + ACTIONS(8402), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [289086] = 18, + [288896] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(10837), 1, anon_sym_requires, - STATE(8583), 1, + STATE(8568), 1, sym__function_attributes_end, - STATE(8585), 1, + STATE(8579), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 6, + ACTIONS(7874), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [289152] = 18, + [288962] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(10837), 1, anon_sym_requires, - STATE(8510), 1, - sym__function_attributes_end, - STATE(8511), 1, + STATE(8562), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(8596), 1, + sym__function_attributes_end, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 6, + ACTIONS(7970), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [289218] = 18, + [289028] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(13220), 1, anon_sym_requires, - STATE(8559), 1, + STATE(8521), 1, sym__function_attributes_end, - STATE(8565), 1, + STATE(8522), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 6, + ACTIONS(7970), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [289284] = 12, + [289094] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9429), 1, - anon_sym___attribute, - ACTIONS(11172), 1, - anon_sym_LPAREN2, - ACTIONS(11174), 1, - anon_sym_STAR, - ACTIONS(11176), 1, - anon_sym_AMP_AMP, - ACTIONS(11178), 1, - anon_sym_AMP, - ACTIONS(11186), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8380), 1, - sym__abstract_declarator, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9427), 13, - 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_GT2, - anon_sym_try, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, + sym_identifier, + ACTIONS(13277), 1, anon_sym_requires, - [289337] = 17, + ACTIONS(13389), 1, + anon_sym_LPAREN2, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(4222), 1, + sym_splice_specifier, + STATE(8053), 1, + sym_lambda_capture_specifier, + STATE(8737), 1, + sym__scope_resolution, + ACTIONS(13275), 2, + sym_true, + sym_false, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(6642), 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, + [289157] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(13168), 1, + ACTIONS(13391), 1, sym_identifier, - ACTIONS(13402), 1, + ACTIONS(13393), 1, anon_sym_LPAREN2, - ACTIONS(13406), 1, + ACTIONS(13395), 1, + anon_sym_COLON_COLON, + ACTIONS(13399), 1, anon_sym_requires, - STATE(6581), 1, + ACTIONS(13401), 1, + anon_sym_LBRACK_COLON, + STATE(3249), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(3640), 1, sym__splice_specialization_specifier, - STATE(8060), 1, + STATE(8006), 1, sym_lambda_capture_specifier, - STATE(8700), 1, + STATE(8724), 1, sym__scope_resolution, - ACTIONS(13404), 2, + ACTIONS(13397), 2, sym_true, sym_false, - STATE(7122), 2, + STATE(3681), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8424), 8, + STATE(3651), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -693988,44 +693415,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289400] = 17, + [289220] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(13104), 1, - sym_identifier, - ACTIONS(13313), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13266), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13405), 1, anon_sym_LPAREN2, - STATE(3711), 1, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(8001), 1, + STATE(8016), 1, sym_lambda_capture_specifier, - STATE(8707), 1, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, sym__scope_resolution, - ACTIONS(13315), 2, + ACTIONS(13409), 2, sym_true, sym_false, - STATE(3728), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6288), 8, + STATE(9343), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694034,44 +693461,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289463] = 17, + [289283] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, - sym_identifier, - ACTIONS(13283), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13266), 1, anon_sym_requires, - ACTIONS(13410), 1, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13405), 1, anon_sym_LPAREN2, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8045), 1, + STATE(8016), 1, sym_lambda_capture_specifier, - STATE(8687), 1, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, sym__scope_resolution, - ACTIONS(13281), 2, + ACTIONS(13411), 2, sym_true, sym_false, - STATE(2678), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5042), 8, + STATE(5135), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694080,125 +693507,90 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289526] = 18, + [289346] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3074), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(13117), 1, + sym_identifier, + ACTIONS(13359), 1, anon_sym_requires, - ACTIONS(13242), 1, - anon_sym___attribute__, - ACTIONS(13245), 1, - anon_sym___attribute, - STATE(8428), 1, - sym_trailing_return_type, - STATE(8455), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13413), 1, anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [289591] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(7682), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7225), 3, - anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - ACTIONS(13412), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - ACTIONS(7223), 19, - 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, - [289630] = 17, + STATE(2631), 1, + sym_splice_specifier, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(7998), 1, + sym_lambda_capture_specifier, + STATE(8741), 1, + sym__scope_resolution, + ACTIONS(13415), 2, + sym_true, + sym_false, + STATE(2688), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(5091), 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, + [289409] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, + sym_identifier, + ACTIONS(13266), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(13405), 1, anon_sym_LPAREN2, - ACTIONS(13415), 1, - sym_identifier, - ACTIONS(13417), 1, - anon_sym_COLON_COLON, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(7260), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(8001), 1, + STATE(8038), 1, sym_lambda_capture_specifier, - STATE(8685), 1, + STATE(8708), 1, sym__scope_resolution, - ACTIONS(13419), 2, + ACTIONS(13264), 2, sym_true, sym_false, - STATE(3060), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8597), 8, + STATE(6148), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694207,44 +693599,99 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289693] = 17, + [289472] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(11874), 1, + anon_sym_STAR, + ACTIONS(13417), 1, sym_identifier, + ACTIONS(13419), 1, + anon_sym_TILDE, + ACTIONS(13421), 1, + anon_sym_COLON_COLON, ACTIONS(13423), 1, - anon_sym_LPAREN2, + anon_sym_template, ACTIONS(13425), 1, + anon_sym_operator, + STATE(3731), 1, + sym_template_type, + STATE(3736), 1, + sym_qualified_type_identifier, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3969), 1, + sym_pointer_type_declarator, + STATE(3970), 1, + sym_template_function, + STATE(3972), 1, + sym_destructor_name, + STATE(3973), 1, + sym_dependent_identifier, + STATE(3974), 1, + sym_qualified_identifier, + STATE(3976), 1, + sym_operator_name, + STATE(7739), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(9413), 1, + sym_operator_cast, + STATE(9608), 1, + sym_qualified_operator_cast_identifier, + STATE(11034), 1, + sym_ms_based_modifier, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [289553] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(13429), 1, + ACTIONS(13123), 1, + sym_identifier, + ACTIONS(13427), 1, + anon_sym_LPAREN2, + ACTIONS(13431), 1, anon_sym_requires, - STATE(3808), 1, + STATE(6587), 1, + sym_splice_specifier, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(8008), 1, + STATE(8018), 1, sym_lambda_capture_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, + STATE(8745), 1, sym__scope_resolution, - ACTIONS(13427), 2, + ACTIONS(13429), 2, sym_true, sym_false, - STATE(3790), 2, + STATE(7040), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8697), 8, + STATE(8382), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694253,44 +693700,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289756] = 17, + [289616] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(13133), 1, + sym_identifier, + ACTIONS(13252), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(13433), 1, anon_sym_LPAREN2, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(8052), 1, + STATE(8026), 1, sym_lambda_capture_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, + STATE(8665), 1, sym__scope_resolution, - ACTIONS(13431), 2, + ACTIONS(13250), 2, sym_true, sym_false, - STATE(3790), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(9391), 8, + STATE(3639), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694299,44 +693746,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289819] = 17, + [289679] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(13168), 1, + ACTIONS(13100), 1, sym_identifier, - ACTIONS(13402), 1, - anon_sym_LPAREN2, - ACTIONS(13406), 1, + ACTIONS(13343), 1, anon_sym_requires, - STATE(6581), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(4219), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(8060), 1, + STATE(8024), 1, sym_lambda_capture_specifier, - STATE(8700), 1, + STATE(8722), 1, sym__scope_resolution, - ACTIONS(13433), 2, + ACTIONS(13437), 2, sym_true, sym_false, - STATE(7122), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8431), 8, + STATE(6583), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694345,44 +693792,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289882] = 17, + [289742] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13117), 1, sym_identifier, - ACTIONS(13323), 1, + ACTIONS(13359), 1, anon_sym_requires, - ACTIONS(13435), 1, + ACTIONS(13413), 1, anon_sym_LPAREN2, - STATE(2104), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(8030), 1, + STATE(7998), 1, sym_lambda_capture_specifier, - STATE(8763), 1, + STATE(8741), 1, sym__scope_resolution, - ACTIONS(13321), 2, + ACTIONS(13439), 2, sym_true, sym_false, - STATE(2147), 2, + STATE(2688), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3657), 8, + STATE(5207), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694391,44 +693838,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [289945] = 17, + [289805] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3284), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11010), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13100), 1, sym_identifier, - ACTIONS(13294), 1, + ACTIONS(13343), 1, anon_sym_requires, - ACTIONS(13437), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(2547), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(8041), 1, + STATE(8024), 1, sym_lambda_capture_specifier, - STATE(8682), 1, + STATE(8722), 1, sym__scope_resolution, - ACTIONS(13292), 2, + ACTIONS(13441), 2, sym_true, sym_false, - STATE(2615), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(4982), 8, + STATE(6468), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694437,44 +693884,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290008] = 17, + [289868] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11097), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, ACTIONS(13100), 1, sym_identifier, - ACTIONS(13302), 1, + ACTIONS(13343), 1, anon_sym_requires, - ACTIONS(13439), 1, + ACTIONS(13435), 1, anon_sym_LPAREN2, - STATE(2605), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(4290), 1, sym__splice_specialization_specifier, STATE(8024), 1, sym_lambda_capture_specifier, - STATE(8702), 1, + STATE(8722), 1, sym__scope_resolution, - ACTIONS(13441), 2, + ACTIONS(13341), 2, sym_true, sym_false, - STATE(2661), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5240), 8, + STATE(6559), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694483,44 +693930,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290071] = 17, + [289931] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11097), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13123), 1, sym_identifier, - ACTIONS(13302), 1, - anon_sym_requires, - ACTIONS(13439), 1, + ACTIONS(13427), 1, anon_sym_LPAREN2, - STATE(2605), 1, + ACTIONS(13431), 1, + anon_sym_requires, + STATE(6587), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(8024), 1, + STATE(8018), 1, sym_lambda_capture_specifier, - STATE(8702), 1, + STATE(8745), 1, sym__scope_resolution, ACTIONS(13443), 2, sym_true, sym_false, - STATE(2661), 2, + STATE(7040), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5169), 8, + STATE(8400), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694529,44 +693976,90 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290134] = 17, + [289994] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + ACTIONS(13123), 1, sym_identifier, - ACTIONS(13423), 1, + ACTIONS(13427), 1, anon_sym_LPAREN2, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - ACTIONS(13429), 1, + ACTIONS(13431), 1, anon_sym_requires, - STATE(3808), 1, + STATE(6587), 1, + sym_splice_specifier, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(8008), 1, + STATE(8018), 1, sym_lambda_capture_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, + STATE(8745), 1, sym__scope_resolution, ACTIONS(13445), 2, sym_true, sym_false, - STATE(3790), 2, + STATE(7040), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(8426), 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, + [290057] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, + sym_identifier, + ACTIONS(13351), 1, + anon_sym_requires, + ACTIONS(13447), 1, + anon_sym_LPAREN2, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(8045), 1, + sym_lambda_capture_specifier, + STATE(8726), 1, + sym__scope_resolution, + ACTIONS(13349), 2, + sym_true, + sym_false, + STATE(2937), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3038), 8, + STATE(5618), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694575,91 +694068,138 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290197] = 18, + [290120] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, + ACTIONS(10931), 1, anon_sym_DASH_GT, - ACTIONS(10921), 1, + ACTIONS(10933), 1, anon_sym_requires, - ACTIONS(12406), 1, + ACTIONS(12303), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(12306), 1, anon_sym___attribute, - STATE(8441), 1, + STATE(8373), 1, sym_trailing_return_type, - STATE(8497), 1, + STATE(8479), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_EQ, + anon_sym_GT2, + [290185] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + STATE(8367), 1, + sym_trailing_return_type, + STATE(8480), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 5, + ACTIONS(7970), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [290262] = 17, + [290250] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, - anon_sym_COLON_COLON, - ACTIONS(13123), 1, - sym_identifier, - ACTIONS(13360), 1, - anon_sym_requires, - ACTIONS(13447), 1, + ACTIONS(13393), 1, anon_sym_LPAREN2, - STATE(4305), 1, + ACTIONS(13399), 1, + anon_sym_requires, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7326), 1, - sym_splice_specifier, - STATE(8047), 1, + STATE(8006), 1, sym_lambda_capture_specifier, - STATE(8745), 1, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, sym__scope_resolution, ACTIONS(13449), 2, sym_true, sym_false, - STATE(4296), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8680), 8, + STATE(3075), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694668,44 +694208,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290325] = 17, + [290313] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11073), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13104), 1, sym_identifier, - ACTIONS(13272), 1, + ACTIONS(13277), 1, anon_sym_requires, - ACTIONS(13451), 1, + ACTIONS(13389), 1, anon_sym_LPAREN2, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(8042), 1, + STATE(4222), 1, + sym_splice_specifier, + STATE(8053), 1, sym_lambda_capture_specifier, - STATE(8686), 1, + STATE(8737), 1, sym__scope_resolution, - ACTIONS(13270), 2, + ACTIONS(13451), 2, sym_true, sym_false, - STATE(2934), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5551), 8, + STATE(6555), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694714,44 +694254,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290388] = 17, + [290376] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13104), 1, sym_identifier, - ACTIONS(13360), 1, + ACTIONS(13277), 1, anon_sym_requires, - ACTIONS(13447), 1, + ACTIONS(13389), 1, anon_sym_LPAREN2, - STATE(4305), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(7326), 1, + STATE(4222), 1, sym_splice_specifier, - STATE(8047), 1, + STATE(8053), 1, sym_lambda_capture_specifier, - STATE(8745), 1, + STATE(8737), 1, sym__scope_resolution, ACTIONS(13453), 2, sym_true, sym_false, - STATE(4296), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6462), 8, + STATE(6666), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694760,138 +694300,91 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290451] = 18, + [290439] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, + ACTIONS(10931), 1, anon_sym_DASH_GT, - STATE(8428), 1, - sym_trailing_return_type, - STATE(8630), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 5, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [290516] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(13226), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(13229), 1, anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - STATE(8374), 1, + STATE(8391), 1, sym_trailing_return_type, - STATE(8659), 1, + STATE(8481), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(8402), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_try, - [290581] = 17, + anon_sym_GT2, + [290504] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11089), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13127), 1, sym_identifier, - ACTIONS(13283), 1, + ACTIONS(13266), 1, anon_sym_requires, - ACTIONS(13410), 1, + ACTIONS(13405), 1, anon_sym_LPAREN2, - STATE(2638), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(8045), 1, + STATE(8038), 1, sym_lambda_capture_specifier, - STATE(8687), 1, + STATE(8750), 1, sym__scope_resolution, ACTIONS(13455), 2, sym_true, sym_false, - STATE(2678), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5166), 8, + STATE(6274), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694900,44 +694393,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290644] = 17, + [290567] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11097), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13127), 1, sym_identifier, - ACTIONS(13302), 1, + ACTIONS(13266), 1, anon_sym_requires, - ACTIONS(13439), 1, + ACTIONS(13405), 1, anon_sym_LPAREN2, - STATE(2605), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(8024), 1, + STATE(8038), 1, sym_lambda_capture_specifier, - STATE(8702), 1, + STATE(8750), 1, sym__scope_resolution, - ACTIONS(13300), 2, + ACTIONS(13411), 2, sym_true, sym_false, - STATE(2661), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5138), 8, + STATE(5135), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694946,44 +694439,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290707] = 17, + [290630] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11111), 1, + ACTIONS(5138), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13098), 1, sym_identifier, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(13457), 1, anon_sym_LPAREN2, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + ACTIONS(13461), 1, + anon_sym_requires, + STATE(4989), 1, sym_splice_specifier, - STATE(8001), 1, + STATE(5354), 1, + sym__splice_specialization_specifier, + STATE(8014), 1, sym_lambda_capture_specifier, - STATE(8707), 1, + STATE(8753), 1, sym__scope_resolution, - ACTIONS(13457), 2, + ACTIONS(13459), 2, sym_true, sym_false, - STATE(3728), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6282), 8, + STATE(8055), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -694992,44 +694485,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290770] = 17, + [290693] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11111), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13155), 1, sym_identifier, - ACTIONS(13313), 1, + ACTIONS(13327), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(13463), 1, anon_sym_LPAREN2, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(8001), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(8002), 1, sym_lambda_capture_specifier, - STATE(8707), 1, + STATE(8744), 1, sym__scope_resolution, - ACTIONS(13459), 2, + ACTIONS(13325), 2, sym_true, sym_false, - STATE(3728), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5245), 8, + STATE(4779), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695038,44 +694531,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290833] = 17, + [290756] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, - sym_identifier, - ACTIONS(13283), 1, - anon_sym_requires, - ACTIONS(13410), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13393), 1, anon_sym_LPAREN2, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + ACTIONS(13399), 1, + anon_sym_requires, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8045), 1, + STATE(8006), 1, sym_lambda_capture_specifier, - STATE(8687), 1, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, sym__scope_resolution, - ACTIONS(13461), 2, + ACTIONS(13465), 2, sym_true, sym_false, - STATE(2678), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5252), 8, + STATE(8733), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695084,230 +694577,138 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [290896] = 18, + [290819] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, + ACTIONS(10931), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(12303), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(12306), 1, anon_sym___attribute, - ACTIONS(13188), 1, + ACTIONS(13175), 1, anon_sym_requires, - STATE(8398), 1, + STATE(8413), 1, sym_trailing_return_type, - STATE(8471), 1, + STATE(8483), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 5, + ACTIONS(7874), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [290961] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, - sym_identifier, - ACTIONS(13294), 1, - anon_sym_requires, - ACTIONS(13437), 1, - anon_sym_LPAREN2, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, - sym__splice_specialization_specifier, - STATE(8041), 1, - sym_lambda_capture_specifier, - STATE(8682), 1, - sym__scope_resolution, - ACTIONS(13463), 2, - sym_true, - sym_false, - STATE(2615), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(4936), 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, - [291024] = 18, + [290884] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, + ACTIONS(10931), 1, anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13106), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13109), 1, anon_sym___attribute, - ACTIONS(13236), 1, + ACTIONS(13223), 1, anon_sym_requires, - STATE(8401), 1, + STATE(8414), 1, sym_trailing_return_type, - STATE(8472), 1, + STATE(8484), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(7970), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [291089] = 17, + [290949] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, + ACTIONS(13266), 1, anon_sym_requires, - ACTIONS(13408), 1, - anon_sym_LPAREN2, - ACTIONS(13421), 1, + ACTIONS(13403), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(13405), 1, + anon_sym_LPAREN2, + ACTIONS(13407), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8052), 1, + STATE(8016), 1, sym_lambda_capture_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, - sym__scope_resolution, - ACTIONS(13465), 2, - sym_true, - sym_false, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(9398), 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, - [291152] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, - sym_identifier, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, - anon_sym_LPAREN2, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3800), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8001), 1, - sym_lambda_capture_specifier, - STATE(8738), 1, + STATE(8729), 1, sym__scope_resolution, - ACTIONS(13311), 2, + ACTIONS(13467), 2, sym_true, sym_false, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6188), 8, + STATE(9354), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695316,91 +694717,91 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291215] = 18, + [291012] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, + ACTIONS(10931), 1, anon_sym_DASH_GT, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(13108), 1, + ACTIONS(13226), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13229), 1, anon_sym___attribute, - STATE(8374), 1, + ACTIONS(13469), 1, + anon_sym_requires, + STATE(8415), 1, sym_trailing_return_type, - STATE(8450), 1, + STATE(8485), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(8402), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_EQ, anon_sym_GT2, - [291280] = 17, + [291077] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11081), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13133), 1, sym_identifier, - ACTIONS(13352), 1, + ACTIONS(13252), 1, anon_sym_requires, - ACTIONS(13467), 1, + ACTIONS(13433), 1, anon_sym_LPAREN2, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(4263), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(8009), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(8026), 1, sym_lambda_capture_specifier, - STATE(8675), 1, + STATE(8665), 1, sym__scope_resolution, - ACTIONS(13350), 2, + ACTIONS(13472), 2, sym_true, sym_false, - STATE(3728), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6650), 8, + STATE(3610), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695409,44 +694810,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291343] = 17, + [291140] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11059), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13117), 1, sym_identifier, - ACTIONS(13360), 1, + ACTIONS(13359), 1, anon_sym_requires, - ACTIONS(13447), 1, + ACTIONS(13413), 1, anon_sym_LPAREN2, - STATE(4272), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(8047), 1, + STATE(7998), 1, sym_lambda_capture_specifier, - STATE(8676), 1, + STATE(8741), 1, sym__scope_resolution, - ACTIONS(13469), 2, + ACTIONS(13357), 2, sym_true, sym_false, - STATE(4296), 2, + STATE(2688), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6580), 8, + STATE(5139), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695455,44 +694856,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291406] = 17, + [291203] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(13423), 1, - anon_sym_LPAREN2, - ACTIONS(13429), 1, - anon_sym_requires, - ACTIONS(13471), 1, - sym_identifier, - ACTIONS(13473), 1, - anon_sym_COLON_COLON, - ACTIONS(13477), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(3389), 1, - sym_splice_specifier, - STATE(3699), 1, + ACTIONS(10992), 1, + anon_sym_COLON_COLON, + ACTIONS(13096), 1, + sym_identifier, + ACTIONS(13343), 1, + anon_sym_requires, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(8008), 1, + STATE(7353), 1, + sym_splice_specifier, + STATE(8024), 1, sym_lambda_capture_specifier, - STATE(8746), 1, + STATE(8710), 1, sym__scope_resolution, - ACTIONS(13475), 2, + ACTIONS(13474), 2, sym_true, sym_false, - STATE(3676), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3622), 8, + STATE(8736), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695501,44 +694902,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291469] = 17, + [291266] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(13423), 1, - anon_sym_LPAREN2, - ACTIONS(13429), 1, - anon_sym_requires, - ACTIONS(13471), 1, - sym_identifier, - ACTIONS(13473), 1, - anon_sym_COLON_COLON, - ACTIONS(13477), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - STATE(3389), 1, - sym_splice_specifier, - STATE(3699), 1, + ACTIONS(10992), 1, + anon_sym_COLON_COLON, + ACTIONS(13096), 1, + sym_identifier, + ACTIONS(13343), 1, + anon_sym_requires, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(8008), 1, + STATE(7353), 1, + sym_splice_specifier, + STATE(8024), 1, sym_lambda_capture_specifier, - STATE(8746), 1, + STATE(8710), 1, sym__scope_resolution, - ACTIONS(13445), 2, + ACTIONS(13441), 2, sym_true, sym_false, - STATE(3676), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3038), 8, + STATE(6468), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695547,44 +694948,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291532] = 17, + [291329] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(13125), 1, - sym_identifier, - ACTIONS(13479), 1, - anon_sym_LPAREN2, - ACTIONS(13483), 1, + ACTIONS(13266), 1, anon_sym_requires, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + ACTIONS(13405), 1, + anon_sym_LPAREN2, + ACTIONS(13476), 1, + sym_identifier, + ACTIONS(13478), 1, + anon_sym_COLON_COLON, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(8039), 1, + STATE(7198), 1, + sym_splice_specifier, + STATE(8038), 1, sym_lambda_capture_specifier, - STATE(8757), 1, + STATE(8739), 1, sym__scope_resolution, - ACTIONS(13481), 2, + ACTIONS(13480), 2, sym_true, sym_false, - STATE(5423), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8049), 8, + STATE(8503), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695593,146 +694994,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291595] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(13242), 1, - anon_sym___attribute__, - ACTIONS(13245), 1, - anon_sym___attribute, - ACTIONS(13485), 1, - anon_sym_requires, - STATE(8402), 1, - sym_trailing_return_type, - STATE(8480), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13396), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_EQ, - anon_sym_GT2, - [291660] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(143), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5460), 1, - anon_sym_COLON_COLON, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(13488), 1, - sym_identifier, - ACTIONS(13490), 1, - anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3752), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3957), 1, - sym_pointer_type_declarator, - STATE(3972), 1, - sym_destructor_name, - STATE(3975), 1, - sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, - sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7777), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(9442), 1, - sym_operator_cast, - STATE(9637), 1, - sym_qualified_operator_cast_identifier, - STATE(11156), 1, - sym_ms_based_modifier, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [291741] = 17, + [291392] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13125), 1, + ACTIONS(13391), 1, sym_identifier, - ACTIONS(13479), 1, + ACTIONS(13393), 1, anon_sym_LPAREN2, - ACTIONS(13483), 1, + ACTIONS(13395), 1, + anon_sym_COLON_COLON, + ACTIONS(13399), 1, anon_sym_requires, - STATE(4802), 1, + ACTIONS(13401), 1, + anon_sym_LBRACK_COLON, + STATE(3249), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(3640), 1, sym__splice_specialization_specifier, - STATE(8039), 1, + STATE(8006), 1, sym_lambda_capture_specifier, - STATE(8757), 1, + STATE(8724), 1, sym__scope_resolution, - ACTIONS(13492), 2, + ACTIONS(13482), 2, sym_true, sym_false, - STATE(5423), 2, + STATE(3681), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8020), 8, + STATE(3600), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695741,99 +695040,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291804] = 26, + [291455] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, - anon_sym_STAR, - ACTIONS(13494), 1, - sym_identifier, - ACTIONS(13496), 1, - anon_sym_TILDE, - ACTIONS(13498), 1, + ACTIONS(5138), 1, anon_sym_COLON_COLON, - ACTIONS(13500), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(13502), 1, - anon_sym_operator, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3752), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3957), 1, - sym_pointer_type_declarator, - STATE(3972), 1, - sym_destructor_name, - STATE(3975), 1, - sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, - sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7779), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(9442), 1, - sym_operator_cast, - STATE(9637), 1, - sym_qualified_operator_cast_identifier, - STATE(11037), 1, - sym_ms_based_modifier, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [291885] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13098), 1, sym_identifier, - ACTIONS(13360), 1, - anon_sym_requires, - ACTIONS(13447), 1, + ACTIONS(13457), 1, anon_sym_LPAREN2, - STATE(4272), 1, + ACTIONS(13461), 1, + anon_sym_requires, + STATE(4989), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(8047), 1, + STATE(8014), 1, sym_lambda_capture_specifier, - STATE(8676), 1, + STATE(8753), 1, sym__scope_resolution, - ACTIONS(13358), 2, + ACTIONS(13484), 2, sym_true, sym_false, - STATE(4296), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6647), 8, + STATE(8001), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695842,44 +695086,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [291948] = 17, + [291518] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13125), 1, sym_identifier, - ACTIONS(13360), 1, + ACTIONS(13335), 1, anon_sym_requires, - ACTIONS(13447), 1, + ACTIONS(13486), 1, anon_sym_LPAREN2, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(7326), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(8047), 1, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(8010), 1, sym_lambda_capture_specifier, - STATE(8745), 1, + STATE(8746), 1, sym__scope_resolution, - ACTIONS(13504), 2, + ACTIONS(13488), 2, sym_true, sym_false, - STATE(4296), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8765), 8, + STATE(5093), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695888,90 +695132,99 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292011] = 17, + [291581] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(143), 1, + anon_sym_operator, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(3456), 1, + anon_sym_COLON_COLON, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, - anon_sym_LPAREN2, - ACTIONS(13421), 1, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(13490), 1, sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(13492), 1, + anon_sym_template, + STATE(3731), 1, + sym_template_type, + STATE(3736), 1, + sym_qualified_type_identifier, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8052), 1, - sym_lambda_capture_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, + STATE(3969), 1, + sym_pointer_type_declarator, + STATE(3970), 1, + sym_template_function, + STATE(3972), 1, + sym_destructor_name, + STATE(3973), 1, + sym_dependent_identifier, + STATE(3974), 1, + sym_qualified_identifier, + STATE(3976), 1, + sym_operator_name, + STATE(7772), 1, sym__scope_resolution, - ACTIONS(13459), 2, - sym_true, - sym_false, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, + STATE(8157), 1, + sym_splice_specifier, + STATE(9413), 1, + sym_operator_cast, + STATE(9608), 1, + sym_qualified_operator_cast_identifier, + STATE(11150), 1, + sym_ms_based_modifier, + STATE(11531), 3, sym_decltype, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - STATE(5245), 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, - [292074] = 17, + [291662] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, - sym_identifier, - ACTIONS(13352), 1, - anon_sym_requires, - ACTIONS(13467), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13393), 1, anon_sym_LPAREN2, - STATE(3711), 1, + ACTIONS(13399), 1, + anon_sym_requires, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4263), 1, - sym_splice_specifier, - STATE(8009), 1, + STATE(8006), 1, sym_lambda_capture_specifier, - STATE(8675), 1, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, sym__scope_resolution, - ACTIONS(13506), 2, + ACTIONS(13494), 2, sym_true, sym_false, - STATE(3728), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6614), 8, + STATE(8719), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -695980,99 +695233,146 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292137] = 26, + [291725] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, ACTIONS(143), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(3458), 1, - anon_sym_COLON_COLON, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11896), 1, + ACTIONS(5458), 1, + anon_sym_COLON_COLON, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(13508), 1, + ACTIONS(13496), 1, sym_identifier, - ACTIONS(13510), 1, + ACTIONS(13498), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + STATE(3731), 1, sym_template_type, - STATE(3752), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3957), 1, + STATE(3969), 1, sym_pointer_type_declarator, + STATE(3970), 1, + sym_template_function, STATE(3972), 1, sym_destructor_name, - STATE(3975), 1, + STATE(3973), 1, + sym_dependent_identifier, + STATE(3974), 1, sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, + STATE(3976), 1, sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7784), 1, + STATE(7774), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(9442), 1, + STATE(9413), 1, sym_operator_cast, - STATE(9637), 1, + STATE(9608), 1, sym_qualified_operator_cast_identifier, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [292218] = 17, + [291806] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(8373), 1, + sym_trailing_return_type, + STATE(8604), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [291871] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, + sym_identifier, + ACTIONS(13351), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(13447), 1, anon_sym_LPAREN2, - ACTIONS(13415), 1, - sym_identifier, - ACTIONS(13417), 1, - anon_sym_COLON_COLON, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(7260), 1, + STATE(2800), 1, sym_splice_specifier, - STATE(8001), 1, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(8045), 1, sym_lambda_capture_specifier, - STATE(8685), 1, + STATE(8726), 1, sym__scope_resolution, - ACTIONS(13512), 2, + ACTIONS(13500), 2, sym_true, sym_false, - STATE(3060), 2, + STATE(2937), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8569), 8, + STATE(5571), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696081,44 +695381,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292281] = 17, + [291934] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13423), 1, - anon_sym_LPAREN2, - ACTIONS(13425), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(13429), 1, + ACTIONS(13102), 1, + sym_identifier, + ACTIONS(13351), 1, anon_sym_requires, - STATE(3808), 1, + ACTIONS(13447), 1, + anon_sym_LPAREN2, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(8008), 1, + STATE(8045), 1, sym_lambda_capture_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, + STATE(8726), 1, sym__scope_resolution, - ACTIONS(13514), 2, + ACTIONS(13502), 2, sym_true, sym_false, - STATE(3790), 2, + STATE(2937), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8719), 8, + STATE(5573), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696127,44 +695427,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292344] = 17, + [291997] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13391), 1, sym_identifier, - ACTIONS(13294), 1, - anon_sym_requires, - ACTIONS(13437), 1, + ACTIONS(13393), 1, anon_sym_LPAREN2, - STATE(2547), 1, + ACTIONS(13395), 1, + anon_sym_COLON_COLON, + ACTIONS(13399), 1, + anon_sym_requires, + ACTIONS(13401), 1, + anon_sym_LBRACK_COLON, + STATE(3249), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(3640), 1, sym__splice_specialization_specifier, - STATE(8041), 1, + STATE(8006), 1, sym_lambda_capture_specifier, - STATE(8682), 1, + STATE(8724), 1, sym__scope_resolution, - ACTIONS(13516), 2, + ACTIONS(13449), 2, sym_true, sym_false, - STATE(2615), 2, + STATE(3681), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(4946), 8, + STATE(3075), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696173,44 +695473,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292407] = 17, + [292060] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(13313), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13125), 1, + sym_identifier, + ACTIONS(13335), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(13486), 1, anon_sym_LPAREN2, - ACTIONS(13415), 1, - sym_identifier, - ACTIONS(13417), 1, - anon_sym_COLON_COLON, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(7260), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(8001), 1, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(8010), 1, sym_lambda_capture_specifier, - STATE(8685), 1, + STATE(8746), 1, sym__scope_resolution, - ACTIONS(13459), 2, + ACTIONS(13504), 2, sym_true, sym_false, - STATE(3060), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5245), 8, + STATE(5159), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696219,15 +695519,49 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292470] = 6, + [292123] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(7666), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7248), 3, + anon_sym_LPAREN2, + anon_sym_STAR, + anon_sym_AMP_AMP, + ACTIONS(13506), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + ACTIONS(7246), 19, + 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, + [292162] = 6, ACTIONS(3), 1, sym_comment, - STATE(4065), 1, + STATE(4129), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7528), 2, + ACTIONS(7402), 2, anon_sym___attribute__, anon_sym___attribute, - ACTIONS(7525), 3, + ACTIONS(7399), 3, anon_sym_COMMA, anon_sym_LBRACE, anon_sym_GT2, @@ -696236,7 +695570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsigned, anon_sym_long, anon_sym_short, - ACTIONS(6999), 17, + ACTIONS(7060), 17, anon_sym___extension__, anon_sym_const, anon_sym_constexpr, @@ -696254,136 +695588,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__Alignas, sym_primitive_type, sym_identifier, - [292511] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, - sym_identifier, - ACTIONS(13323), 1, - anon_sym_requires, - ACTIONS(13435), 1, - anon_sym_LPAREN2, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(8030), 1, - sym_lambda_capture_specifier, - STATE(8763), 1, - sym__scope_resolution, - ACTIONS(13518), 2, - sym_true, - sym_false, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(3650), 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, - [292574] = 17, + [292203] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11038), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13127), 1, sym_identifier, - ACTIONS(13323), 1, + ACTIONS(13266), 1, anon_sym_requires, - ACTIONS(13435), 1, + ACTIONS(13405), 1, anon_sym_LPAREN2, - STATE(2104), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(8030), 1, - sym_lambda_capture_specifier, - STATE(8763), 1, - sym__scope_resolution, - ACTIONS(13520), 2, - sym_true, - sym_false, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - STATE(3627), 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, - [292637] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1670), 1, - anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, - sym_identifier, - ACTIONS(13313), 1, - anon_sym_requires, - ACTIONS(13408), 1, - anon_sym_LPAREN2, - STATE(3028), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(3800), 1, - sym_splice_specifier, - STATE(8001), 1, + STATE(8038), 1, sym_lambda_capture_specifier, - STATE(8738), 1, + STATE(8750), 1, sym__scope_resolution, - ACTIONS(13522), 2, + ACTIONS(13316), 2, sym_true, sym_false, - STATE(3060), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6190), 8, + STATE(6282), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696392,138 +695634,138 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292700] = 18, + [292266] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - ACTIONS(13188), 1, + ACTIONS(10933), 1, anon_sym_requires, - STATE(8398), 1, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(8391), 1, sym_trailing_return_type, - STATE(8627), 1, + STATE(8619), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 5, + ACTIONS(8402), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [292765] = 18, + [292331] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11044), 1, + ACTIONS(11003), 1, anon_sym_DASH_GT, - ACTIONS(13236), 1, + ACTIONS(13175), 1, anon_sym_requires, - STATE(8401), 1, + STATE(8413), 1, sym_trailing_return_type, - STATE(8629), 1, + STATE(8662), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(7874), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [292830] = 17, + [292396] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11073), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13135), 1, sym_identifier, - ACTIONS(13272), 1, + ACTIONS(13266), 1, anon_sym_requires, - ACTIONS(13451), 1, + ACTIONS(13405), 1, anon_sym_LPAREN2, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(8042), 1, + STATE(3770), 1, + sym_splice_specifier, + STATE(8038), 1, sym_lambda_capture_specifier, - STATE(8686), 1, + STATE(8708), 1, sym__scope_resolution, - ACTIONS(13524), 2, + ACTIONS(13509), 2, sym_true, sym_false, - STATE(2934), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5606), 8, + STATE(6166), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696532,44 +695774,90 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292893] = 17, + [292459] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13098), 1, + sym_identifier, + ACTIONS(13457), 1, + anon_sym_LPAREN2, + ACTIONS(13461), 1, + anon_sym_requires, + STATE(4989), 1, + sym_splice_specifier, + STATE(5354), 1, + sym__splice_specialization_specifier, + STATE(8014), 1, + sym_lambda_capture_specifier, + STATE(8753), 1, + sym__scope_resolution, + ACTIONS(13511), 2, + sym_true, + sym_false, + STATE(5444), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + STATE(7995), 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, + [292522] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11073), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13155), 1, sym_identifier, - ACTIONS(13272), 1, + ACTIONS(13327), 1, anon_sym_requires, - ACTIONS(13451), 1, + ACTIONS(13463), 1, anon_sym_LPAREN2, - STATE(2742), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(8042), 1, + STATE(8002), 1, sym_lambda_capture_specifier, - STATE(8686), 1, + STATE(8744), 1, sym__scope_resolution, - ACTIONS(13526), 2, + ACTIONS(13513), 2, sym_true, sym_false, - STATE(2934), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5608), 8, + STATE(4830), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696578,44 +695866,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [292956] = 17, + [292585] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10659), 1, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(13168), 1, + ACTIONS(13096), 1, sym_identifier, - ACTIONS(13402), 1, - anon_sym_LPAREN2, - ACTIONS(13406), 1, + ACTIONS(13343), 1, anon_sym_requires, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + ACTIONS(13435), 1, + anon_sym_LPAREN2, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(8060), 1, + STATE(7353), 1, + sym_splice_specifier, + STATE(8024), 1, sym_lambda_capture_specifier, - STATE(8700), 1, + STATE(8710), 1, sym__scope_resolution, - ACTIONS(13528), 2, + ACTIONS(13515), 2, sym_true, sym_false, - STATE(7122), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8425), 8, + STATE(8714), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696624,44 +695912,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [293019] = 17, + [292648] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(13125), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - ACTIONS(13479), 1, - anon_sym_LPAREN2, - ACTIONS(13483), 1, + ACTIONS(13266), 1, anon_sym_requires, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + ACTIONS(13405), 1, + anon_sym_LPAREN2, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(8039), 1, + STATE(3770), 1, + sym_splice_specifier, + STATE(8038), 1, sym_lambda_capture_specifier, - STATE(8757), 1, + STATE(8708), 1, sym__scope_resolution, - ACTIONS(13530), 2, + ACTIONS(13411), 2, sym_true, sym_false, - STATE(5423), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(8034), 8, + STATE(5135), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696670,138 +695958,138 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [293082] = 18, + [292711] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, + ACTIONS(11003), 1, anon_sym_DASH_GT, - STATE(8441), 1, + ACTIONS(13223), 1, + anon_sym_requires, + STATE(8414), 1, sym_trailing_return_type, - STATE(8631), 1, + STATE(8598), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 5, + ACTIONS(7970), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [293147] = 18, + [292776] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11044), 1, + ACTIONS(11003), 1, anon_sym_DASH_GT, - ACTIONS(13485), 1, + ACTIONS(13469), 1, anon_sym_requires, - STATE(8402), 1, + STATE(8415), 1, sym_trailing_return_type, - STATE(8632), 1, + STATE(8603), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13396), 2, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 5, + ACTIONS(8402), 5, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [293212] = 17, + [292841] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(13423), 1, - anon_sym_LPAREN2, - ACTIONS(13429), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13266), 1, anon_sym_requires, - ACTIONS(13471), 1, + ACTIONS(13405), 1, + anon_sym_LPAREN2, + ACTIONS(13476), 1, sym_identifier, - ACTIONS(13473), 1, + ACTIONS(13478), 1, anon_sym_COLON_COLON, - ACTIONS(13477), 1, - anon_sym_LBRACK_COLON, - STATE(3389), 1, - sym_splice_specifier, - STATE(3699), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(8008), 1, + STATE(7198), 1, + sym_splice_specifier, + STATE(8038), 1, sym_lambda_capture_specifier, - STATE(8746), 1, + STATE(8739), 1, sym__scope_resolution, - ACTIONS(13532), 2, + ACTIONS(13411), 2, sym_true, sym_false, - STATE(3676), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(3689), 8, + STATE(5135), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696810,44 +696098,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [293275] = 17, + [292904] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11105), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13125), 1, sym_identifier, - ACTIONS(13313), 1, + ACTIONS(13335), 1, anon_sym_requires, - ACTIONS(13408), 1, + ACTIONS(13486), 1, anon_sym_LPAREN2, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3800), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(8001), 1, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(8010), 1, sym_lambda_capture_specifier, - STATE(8738), 1, + STATE(8746), 1, sym__scope_resolution, - ACTIONS(13459), 2, + ACTIONS(13333), 2, sym_true, sym_false, - STATE(3060), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(5245), 8, + STATE(5062), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696856,44 +696144,91 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [293338] = 17, + [292967] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(8367), 1, + sym_trailing_return_type, + STATE(8629), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 5, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [293032] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11081), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13155), 1, sym_identifier, - ACTIONS(13352), 1, + ACTIONS(13327), 1, anon_sym_requires, - ACTIONS(13467), 1, + ACTIONS(13463), 1, anon_sym_LPAREN2, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(4263), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(8009), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(8002), 1, sym_lambda_capture_specifier, - STATE(8675), 1, + STATE(8744), 1, sym__scope_resolution, - ACTIONS(13534), 2, + ACTIONS(13517), 2, sym_true, sym_false, - STATE(3728), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6677), 8, + STATE(4824), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696902,44 +696237,44 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [293401] = 17, + [293095] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1670), 1, + ACTIONS(1668), 1, anon_sym_LBRACK, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13133), 1, - sym_identifier, - ACTIONS(13360), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13266), 1, anon_sym_requires, - ACTIONS(13447), 1, + ACTIONS(13405), 1, anon_sym_LPAREN2, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, + ACTIONS(13476), 1, + sym_identifier, + ACTIONS(13478), 1, + anon_sym_COLON_COLON, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(8047), 1, + STATE(7198), 1, + sym_splice_specifier, + STATE(8038), 1, sym_lambda_capture_specifier, - STATE(8676), 1, + STATE(8739), 1, sym__scope_resolution, - ACTIONS(13453), 2, + ACTIONS(13519), 2, sym_true, sym_false, - STATE(4296), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - STATE(6462), 8, + STATE(8545), 8, sym__class_name, sym_constraint_conjunction, sym_constraint_disjunction, @@ -696948,2975 +696283,2881 @@ static const uint16_t ts_small_parse_table[] = { sym_lambda_expression, sym_fold_expression, sym_qualified_type_identifier, - [293464] = 21, + [293158] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(9279), 1, + anon_sym___attribute, + ACTIONS(11171), 1, + anon_sym_LPAREN2, + ACTIONS(11173), 1, + anon_sym_STAR, + ACTIONS(11175), 1, + anon_sym_AMP_AMP, + ACTIONS(11177), 1, + anon_sym_AMP, + ACTIONS(11185), 1, + anon_sym_LBRACK, + STATE(4345), 1, + sym_parameter_list, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8430), 1, + sym__abstract_declarator, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9281), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, anon_sym_COLON, - ACTIONS(8240), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [293211] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1668), 1, + anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3240), 1, - sym__class_declaration_item, - STATE(3800), 1, + ACTIONS(13252), 1, + anon_sym_requires, + ACTIONS(13433), 1, + anon_sym_LPAREN2, + STATE(2122), 1, sym_splice_specifier, - STATE(3863), 1, - sym_field_declaration_list, - STATE(8738), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(8026), 1, + sym_lambda_capture_specifier, + STATE(8665), 1, sym__scope_resolution, - STATE(9550), 1, - sym_virtual_specifier, - STATE(10518), 1, - sym_base_class_clause, - ACTIONS(7245), 2, - anon_sym_final, - anon_sym_override, - STATE(3060), 2, + ACTIONS(13521), 2, + sym_true, + sym_false, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293534] = 21, + STATE(3636), 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, + [293274] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8297), 1, + ACTIONS(8233), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(2605), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(2786), 1, sym_field_declaration_list, - STATE(3195), 1, + STATE(3193), 1, sym__class_declaration_item, - STATE(8702), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(9425), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(10409), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(2439), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(2688), 2, sym_template_type, sym_splice_type_specifier, - STATE(7808), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293604] = 21, + [293344] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8297), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, ACTIONS(13100), 1, sym_identifier, - STATE(2605), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(4391), 1, sym_field_declaration_list, - STATE(3229), 1, + STATE(4526), 1, sym__class_declaration_item, - STATE(8702), 1, + STATE(8722), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7810), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293674] = 21, + [293414] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8297), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, ACTIONS(13100), 1, sym_identifier, - STATE(2605), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(4391), 1, sym_field_declaration_list, - STATE(3106), 1, + STATE(4540), 1, sym__class_declaration_item, - STATE(8702), 1, + STATE(8722), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293744] = 21, + [293484] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8297), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, sym_identifier, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2848), 1, - sym_field_declaration_list, - STATE(3141), 1, + STATE(3162), 1, sym__class_declaration_item, - STATE(8702), 1, + STATE(3890), 1, + sym_field_declaration_list, + STATE(7198), 1, + sym_splice_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2661), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7810), 2, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7858), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293814] = 21, + [293554] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8297), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13127), 1, sym_identifier, - STATE(2605), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(2848), 1, + STATE(3950), 1, sym_field_declaration_list, - STATE(3228), 1, + STATE(4136), 1, sym__class_declaration_item, - STATE(8702), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(9504), 1, + STATE(9626), 1, sym_virtual_specifier, - STATE(10445), 1, + STATE(10569), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2475), 2, + STATE(3526), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293884] = 21, + [293624] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(8342), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + ACTIONS(13125), 1, + sym_identifier, + STATE(2639), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(2895), 1, sym_field_declaration_list, - STATE(4836), 1, + STATE(3196), 1, sym__class_declaration_item, - STATE(8710), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9416), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10314), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, + STATE(2493), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(2675), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7820), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [293954] = 21, + [293694] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, + sym_identifier, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4862), 1, + STATE(3214), 1, sym__class_declaration_item, - STATE(8710), 1, + STATE(3890), 1, + sym_field_declaration_list, + STATE(7198), 1, + sym_splice_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(6256), 2, + STATE(3606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7881), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294024] = 21, + [293764] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11038), 1, + ACTIONS(8342), 1, + anon_sym_LBRACE, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(2104), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(2895), 1, sym_field_declaration_list, - STATE(2183), 1, + STATE(3199), 1, sym__class_declaration_item, - STATE(8763), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(9416), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(10314), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2075), 2, + STATE(2493), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294094] = 21, + [293834] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(2172), 1, - sym_field_declaration_list, - STATE(2202), 1, - sym__class_declaration_item, - STATE(8763), 1, - sym__scope_resolution, - STATE(9644), 1, - sym_virtual_specifier, - STATE(10276), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8327), 1, + sym_ms_call_modifier, + STATE(9153), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, + [293892] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(13178), 1, + anon_sym_requires, + STATE(8686), 1, + sym__function_attributes_end, + STATE(8687), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(2075), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7815), 2, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [294164] = 21, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [293956] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11038), 1, + ACTIONS(9311), 1, + anon_sym_LBRACE, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(2104), 1, - sym_splice_specifier, - STATE(2170), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2172), 1, - sym_field_declaration_list, - STATE(2205), 1, + STATE(3222), 1, sym__class_declaration_item, - STATE(8763), 1, + STATE(3770), 1, + sym_splice_specifier, + STATE(3890), 1, + sym_field_declaration_list, + STATE(8708), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2075), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2147), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7895), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294234] = 21, + [294026] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, + ACTIONS(13100), 1, + sym_identifier, + STATE(4219), 1, sym_splice_specifier, - STATE(4836), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4391), 1, + sym_field_declaration_list, + STATE(4424), 1, sym__class_declaration_item, - STATE(8705), 1, + STATE(8722), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3999), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294304] = 21, + [294096] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4862), 1, - sym__class_declaration_item, - STATE(8705), 1, - sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, - sym_virtual_specifier, - STATE(10528), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(13241), 1, + anon_sym_requires, + STATE(8688), 1, + sym__function_attributes_end, + STATE(8689), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7854), 2, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [294374] = 21, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [294160] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13131), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4968), 1, + STATE(4932), 1, sym__class_declaration_item, - STATE(5157), 1, + STATE(5032), 1, sym_splice_specifier, - STATE(8756), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7824), 2, + STATE(7836), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294444] = 21, + [294230] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(8404), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(13117), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4654), 1, - sym_field_declaration_list, - STATE(4984), 1, - sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, - sym__scope_resolution, - STATE(9470), 1, - sym_virtual_specifier, - STATE(10307), 1, - sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(13523), 1, + anon_sym_requires, + STATE(8690), 1, + sym_trailing_return_type, + STATE(8691), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [294514] = 21, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [294294] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(11561), 1, + anon_sym_LBRACE, + ACTIONS(13098), 1, sym_identifier, - STATE(2547), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(5942), 1, sym_field_declaration_list, - STATE(3058), 1, + STATE(6033), 1, sym__class_declaration_item, - STATE(8682), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(9655), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(10505), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2389), 2, + STATE(5432), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2615), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7846), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294584] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8245), 1, - sym_ms_call_modifier, - STATE(9103), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [294642] = 21, + [294364] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13119), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2692), 1, - sym_field_declaration_list, - STATE(3066), 1, + STATE(4844), 1, sym__class_declaration_item, - STATE(8682), 1, + STATE(4989), 1, + sym_splice_specifier, + STATE(8748), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(9299), 1, + sym_field_declaration_list, + STATE(9584), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(10526), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7827), 2, + STATE(7850), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(8831), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294712] = 21, + [294434] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3028), 1, + ACTIONS(13089), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3109), 1, - sym__class_declaration_item, - STATE(7481), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(8691), 1, + STATE(4932), 1, + sym__class_declaration_item, + STATE(8695), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7348), 2, + STATE(6256), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7834), 2, + STATE(7844), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294782] = 21, + [294504] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13131), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4836), 1, + STATE(4767), 1, sym__class_declaration_item, - STATE(5157), 1, + STATE(5032), 1, sym_splice_specifier, - STATE(8756), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294852] = 21, + [294574] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(13089), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(4862), 1, + STATE(4767), 1, sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(8695), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(6256), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7829), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294922] = 21, + [294644] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3028), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3178), 1, - sym__class_declaration_item, - STATE(7481), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(8691), 1, + STATE(4932), 1, + sym__class_declaration_item, + STATE(8757), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7348), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7828), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [294992] = 21, + [294714] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11010), 1, + ACTIONS(8342), 1, + anon_sym_LBRACE, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(2547), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(2895), 1, sym_field_declaration_list, - STATE(2964), 1, + STATE(3089), 1, sym__class_declaration_item, - STATE(8682), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(9416), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(10314), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2389), 2, + STATE(2493), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2615), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295062] = 21, + [294784] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13131), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4968), 1, + STATE(4865), 1, sym__class_declaration_item, - STATE(8716), 1, + STATE(5032), 1, + sym_splice_specifier, + STATE(8667), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7880), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295132] = 21, + [294854] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(8342), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13125), 1, sym_identifier, - STATE(3808), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(4654), 1, + STATE(2895), 1, sym_field_declaration_list, - STATE(4932), 1, + STATE(3092), 1, sym__class_declaration_item, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9416), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10314), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(2493), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(2675), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7842), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295202] = 21, + [294924] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(7262), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(13133), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2152), 1, sym_field_declaration_list, - STATE(4932), 1, + STATE(2201), 1, sym__class_declaration_item, - STATE(8716), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9605), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10264), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(2074), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(2153), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7829), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295272] = 21, + [294994] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(7262), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(13133), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2152), 1, sym_field_declaration_list, - STATE(4984), 1, + STATE(2236), 1, sym__class_declaration_item, - STATE(8716), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9605), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10264), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(2074), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(2153), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295342] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9429), 1, - anon_sym___asm, - ACTIONS(11172), 1, - anon_sym_LPAREN2, - ACTIONS(11186), 1, - anon_sym_LBRACK, - ACTIONS(11598), 1, - anon_sym_STAR, - ACTIONS(11600), 1, - anon_sym_AMP_AMP, - ACTIONS(11602), 1, - anon_sym_AMP, - STATE(4562), 1, - sym_parameter_list, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8467), 1, - sym__abstract_declarator, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9427), 12, - 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, - [295394] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, - anon_sym_requires, - STATE(8717), 1, - sym__function_attributes_end, - STATE(8718), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [295458] = 21, + [295064] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13147), 1, sym_identifier, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3240), 1, + STATE(3132), 1, sym__class_declaration_item, - STATE(7481), 1, + STATE(7400), 1, sym_splice_specifier, STATE(7709), 1, sym_field_declaration_list, - STATE(8691), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(10474), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7348), 2, + STATE(7371), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295528] = 21, + [295134] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8297), 1, + sym_ms_call_modifier, + STATE(9091), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, + [295192] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(8522), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, ACTIONS(13102), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3237), 1, - sym__class_declaration_item, - STATE(7481), 1, + STATE(2800), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(3014), 1, sym_field_declaration_list, - STATE(8691), 1, + STATE(3580), 1, + sym__class_declaration_item, + STATE(8726), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(9591), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(10213), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7348), 2, + STATE(2621), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7851), 2, + STATE(2937), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7837), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295598] = 21, + [295262] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - ACTIONS(13154), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4968), 1, + STATE(4831), 1, sym__class_declaration_item, - STATE(8710), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(6256), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7811), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295668] = 21, + [295332] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(7262), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(4305), 1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2152), 1, sym_field_declaration_list, - STATE(4529), 1, + STATE(2218), 1, sym__class_declaration_item, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9605), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10264), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2074), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(7844), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295738] = 21, + [295402] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(7262), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(4305), 1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2152), 1, sym_field_declaration_list, - STATE(4543), 1, + STATE(2223), 1, sym__class_declaration_item, - STATE(7326), 1, + STATE(8665), 1, + sym__scope_resolution, + STATE(9605), 1, + sym_virtual_specifier, + STATE(10264), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + STATE(2074), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2153), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7831), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [295472] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(7262), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(13133), 1, + sym_identifier, + STATE(2122), 1, sym_splice_specifier, - STATE(8745), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2152), 1, + sym_field_declaration_list, + STATE(2235), 1, + sym__class_declaration_item, + STATE(8665), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9605), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10264), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2074), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295808] = 21, + [295542] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(8522), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + ACTIONS(13102), 1, + sym_identifier, + STATE(2800), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(3014), 1, sym_field_declaration_list, - STATE(4984), 1, + STATE(3483), 1, sym__class_declaration_item, - STATE(8710), 1, + STATE(8726), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9591), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10213), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6256), 2, + STATE(2621), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(2937), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [295878] = 18, + [295612] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8247), 1, + sym_ms_call_modifier, + STATE(9094), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, + [295670] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8287), 1, + sym_ms_call_modifier, + STATE(9115), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 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, + [295728] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, + ACTIONS(11267), 1, anon_sym_DASH_GT, - ACTIONS(11298), 1, + ACTIONS(11269), 1, anon_sym_requires, - STATE(8726), 1, - sym__function_attributes_end, - STATE(8730), 1, + STATE(8679), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(8680), 1, + sym__function_attributes_end, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 4, + ACTIONS(8402), 4, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [295942] = 21, + [295792] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(6463), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13131), 1, sym_identifier, - STATE(3028), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3237), 1, - sym__class_declaration_item, - STATE(3863), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(7260), 1, + STATE(4831), 1, + sym__class_declaration_item, + STATE(5032), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7843), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296012] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, - anon_sym_LBRACK, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, - anon_sym_requires, - STATE(8736), 1, - sym_trailing_return_type, - STATE(8737), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [296076] = 21, + [295862] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(8522), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13102), 1, sym_identifier, - STATE(3028), 1, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(3225), 1, - sym__class_declaration_item, - STATE(3863), 1, + STATE(3014), 1, sym_field_declaration_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, + STATE(3510), 1, + sym__class_declaration_item, + STATE(8726), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9591), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10213), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(2621), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(2937), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296146] = 21, + [295932] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(8182), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13155), 1, sym_identifier, - STATE(4305), 1, + STATE(2581), 1, + sym_splice_specifier, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2703), 1, sym_field_declaration_list, - STATE(4461), 1, + STATE(3027), 1, sym__class_declaration_item, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10408), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2397), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296216] = 21, + [296002] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, - anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(4305), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(4466), 1, + STATE(4844), 1, sym__class_declaration_item, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7846), 2, + STATE(3977), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7871), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296286] = 21, + [296072] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3102), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(8522), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13102), 1, sym_identifier, - STATE(4305), 1, + STATE(2800), 1, + sym_splice_specifier, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3014), 1, sym_field_declaration_list, - STATE(4424), 1, + STATE(3494), 1, sym__class_declaration_item, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(8726), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9591), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10213), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2621), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2937), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7849), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296356] = 18, + [296142] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(6463), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(13197), 1, - anon_sym_requires, - STATE(8714), 1, - sym__function_attributes_end, - STATE(8715), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13131), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4639), 1, + sym_field_declaration_list, + STATE(4844), 1, + sym__class_declaration_item, + STATE(5032), 1, + sym_splice_specifier, + STATE(8667), 1, + sym__scope_resolution, + STATE(9461), 1, sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [296420] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(13239), 1, - anon_sym_requires, - STATE(8724), 1, - sym__function_attributes_end, - STATE(8725), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13202), 2, + STATE(10588), 1, + sym_base_class_clause, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3977), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7821), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [296484] = 18, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [296212] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, - anon_sym_LBRACK, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(13536), 1, - anon_sym_requires, - STATE(8735), 1, - sym_trailing_return_type, - STATE(8743), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13396), 2, + ACTIONS(8342), 1, + anon_sym_LBRACE, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13125), 1, + sym_identifier, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, + sym__splice_specialization_specifier, + STATE(2895), 1, + sym_field_declaration_list, + STATE(3105), 1, + sym__class_declaration_item, + STATE(8746), 1, + sym__scope_resolution, + STATE(9416), 1, + sym_virtual_specifier, + STATE(10314), 1, + sym_base_class_clause, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(2493), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(2675), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 4, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [296548] = 21, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [296282] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13127), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3225), 1, - sym__class_declaration_item, - STATE(3800), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3950), 1, sym_field_declaration_list, - STATE(8738), 1, + STATE(4116), 1, + sym__class_declaration_item, + STATE(8750), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9626), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10569), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(3526), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296618] = 21, + [296352] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3028), 1, + ACTIONS(13089), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3225), 1, - sym__class_declaration_item, - STATE(7481), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(7709), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(8691), 1, + STATE(4831), 1, + sym__class_declaration_item, + STATE(8695), 1, sym__scope_resolution, - STATE(9483), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10463), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7348), 2, + STATE(6256), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296688] = 21, + [296422] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(8233), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(4272), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2786), 1, sym_field_declaration_list, - STATE(4529), 1, + STATE(3163), 1, sym__class_declaration_item, - STATE(8676), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9425), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10409), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2439), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2688), 2, sym_template_type, sym_splice_type_specifier, - STATE(7855), 2, + STATE(7848), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296758] = 21, + [296492] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(11561), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13098), 1, sym_identifier, - STATE(4272), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(5942), 1, sym_field_declaration_list, - STATE(4543), 1, + STATE(6054), 1, sym__class_declaration_item, - STATE(8676), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9655), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10505), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(5432), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296828] = 21, + [296562] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, + ACTIONS(13127), 1, + sym_identifier, + STATE(3721), 1, sym_splice_specifier, - STATE(4932), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3950), 1, + sym_field_declaration_list, + STATE(4099), 1, sym__class_declaration_item, - STATE(8705), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(9626), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(10569), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3526), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296898] = 21, + [296632] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(8233), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(4272), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2786), 1, sym_field_declaration_list, - STATE(4461), 1, + STATE(3140), 1, sym__class_declaration_item, - STATE(8676), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9425), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10409), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2439), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2688), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [296968] = 21, + [296702] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(8522), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13102), 1, sym_identifier, - STATE(4272), 1, + STATE(2800), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(3014), 1, sym_field_declaration_list, - STATE(4466), 1, + STATE(3522), 1, sym__class_declaration_item, - STATE(8676), 1, + STATE(8726), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9591), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10213), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2621), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2937), 2, sym_template_type, sym_splice_type_specifier, - STATE(7907), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297038] = 21, + [296772] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(3028), 1, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3240), 1, + STATE(4865), 1, sym__class_declaration_item, - STATE(3863), 1, - sym_field_declaration_list, - STATE(7260), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(8748), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9299), 1, + sym_field_declaration_list, + STATE(9584), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10526), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(8831), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297108] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8292), 1, - sym_ms_call_modifier, - STATE(9114), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [297166] = 21, + [296842] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3284), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(3028), 1, + STATE(4219), 1, + sym_splice_specifier, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(3109), 1, - sym__class_declaration_item, - STATE(3863), 1, + STATE(4391), 1, sym_field_declaration_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, + STATE(4493), 1, + sym__class_declaration_item, + STATE(8722), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7857), 2, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7890), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297236] = 21, + [296912] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3074), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(8233), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(3028), 1, + STATE(2631), 1, + sym_splice_specifier, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(3178), 1, - sym__class_declaration_item, - STATE(3863), 1, + STATE(2786), 1, sym_field_declaration_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, + STATE(3179), 1, + sym__class_declaration_item, + STATE(8741), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9425), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10409), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(2439), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(2688), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297306] = 21, + [296982] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3109), 1, + STATE(3214), 1, sym__class_declaration_item, - STATE(3800), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(3890), 1, sym_field_declaration_list, - STATE(8738), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(3609), 2, + STATE(3606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7805), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297376] = 21, + [297052] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13127), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3178), 1, - sym__class_declaration_item, - STATE(3800), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3950), 1, sym_field_declaration_list, - STATE(8738), 1, + STATE(4095), 1, + sym__class_declaration_item, + STATE(8750), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9626), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10569), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(3526), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7843), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297446] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8337), 1, - sym_ms_call_modifier, - STATE(9122), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [297504] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8366), 1, - sym_ms_call_modifier, - STATE(9107), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 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, - [297562] = 21, + [297122] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13127), 1, sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3950), 1, sym_field_declaration_list, - STATE(4111), 1, + STATE(4121), 1, sym__class_declaration_item, - STATE(8707), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(9626), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(10569), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3540), 2, + STATE(3526), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(7882), 2, + STATE(7803), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297632] = 15, + [297192] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(8311), 1, + STATE(8269), 1, sym_ms_call_modifier, - STATE(9109), 1, + STATE(9111), 1, sym__type_declarator, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, @@ -699929,3317 +699170,3589 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___fastcall, anon_sym___thiscall, anon_sym___vectorcall, - [297690] = 21, + [297250] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11427), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(5954), 1, - sym_field_declaration_list, - STATE(6036), 1, + STATE(4095), 1, sym__class_declaration_item, - STATE(8757), 1, + STATE(4222), 1, + sym_splice_specifier, + STATE(4374), 1, + sym_field_declaration_list, + STATE(8737), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(10557), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(7872), 2, + STATE(4035), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7877), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297760] = 21, + [297320] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11427), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(5954), 1, - sym_field_declaration_list, - STATE(6085), 1, + STATE(3210), 1, sym__class_declaration_item, - STATE(8757), 1, + STATE(3890), 1, + sym_field_declaration_list, + STATE(7198), 1, + sym_splice_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297830] = 21, + [297390] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8503), 1, + ACTIONS(8182), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13155), 1, sym_identifier, - STATE(2742), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(2703), 1, sym_field_declaration_list, - STATE(3545), 1, + STATE(2984), 1, sym__class_declaration_item, - STATE(8686), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(10408), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2606), 2, + STATE(2397), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(7874), 2, + STATE(7876), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297900] = 21, + [297460] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8503), 1, + ACTIONS(8182), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13155), 1, sym_identifier, - STATE(2742), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(2703), 1, sym_field_declaration_list, - STATE(3549), 1, + STATE(2987), 1, sym__class_declaration_item, - STATE(8686), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(10408), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2606), 2, + STATE(2397), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [297970] = 21, + [297530] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(3711), 1, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3905), 1, - sym_field_declaration_list, - STATE(4082), 1, + STATE(4932), 1, sym__class_declaration_item, - STATE(8707), 1, + STATE(4989), 1, + sym_splice_specifier, + STATE(8748), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(9299), 1, + sym_field_declaration_list, + STATE(9584), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(10526), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3540), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3728), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7866), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(8831), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298040] = 21, + [297600] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11427), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5954), 1, - sym_field_declaration_list, - STATE(6077), 1, + STATE(4767), 1, sym__class_declaration_item, - STATE(8757), 1, + STATE(4989), 1, + sym_splice_specifier, + STATE(8748), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(9299), 1, + sym_field_declaration_list, + STATE(9584), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(10526), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(8831), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298110] = 21, + [297670] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11427), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(10895), 1, + anon_sym_COLON_COLON, + ACTIONS(13147), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(5954), 1, - sym_field_declaration_list, - STATE(6082), 1, + STATE(3210), 1, sym__class_declaration_item, - STATE(8757), 1, + STATE(7400), 1, + sym_splice_specifier, + STATE(7709), 1, + sym_field_declaration_list, + STATE(8705), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(10474), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7875), 2, + STATE(7371), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298180] = 21, + [297740] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8503), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13104), 1, sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(3040), 1, - sym_field_declaration_list, - STATE(3558), 1, + STATE(4099), 1, sym__class_declaration_item, - STATE(8686), 1, + STATE(4222), 1, + sym_splice_specifier, + STATE(4374), 1, + sym_field_declaration_list, + STATE(8737), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(10557), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2606), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2934), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(4035), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298250] = 21, + [297810] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11427), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, sym_identifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(5472), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(5954), 1, - sym_field_declaration_list, - STATE(6028), 1, + STATE(3132), 1, sym__class_declaration_item, - STATE(8757), 1, + STATE(3890), 1, + sym_field_declaration_list, + STATE(7198), 1, + sym_splice_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(9636), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10429), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(5279), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(5423), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298320] = 21, + [297880] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8503), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13119), 1, sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3040), 1, - sym_field_declaration_list, - STATE(3561), 1, + STATE(4831), 1, sym__class_declaration_item, - STATE(8686), 1, + STATE(4989), 1, + sym_splice_specifier, + STATE(8748), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(9299), 1, + sym_field_declaration_list, + STATE(9584), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(10526), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2606), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2934), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7877), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(8831), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298390] = 21, + [297950] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8503), 1, + ACTIONS(11561), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13098), 1, sym_identifier, - STATE(2742), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(3040), 1, + STATE(5942), 1, sym_field_declaration_list, - STATE(3575), 1, + STATE(6095), 1, sym__class_declaration_item, - STATE(8686), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(9512), 1, + STATE(9655), 1, sym_virtual_specifier, - STATE(10494), 1, + STATE(10505), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2606), 2, + STATE(5432), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298460] = 21, + [298020] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + ACTIONS(13089), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(3042), 1, + STATE(4844), 1, sym__class_declaration_item, - STATE(8682), 1, + STATE(8695), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7820), 2, + STATE(6256), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7869), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298530] = 21, + [298090] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8158), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + ACTIONS(13089), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2692), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(2949), 1, + STATE(4865), 1, sym__class_declaration_item, - STATE(8682), 1, + STATE(8695), 1, sym__scope_resolution, - STATE(9585), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10216), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2389), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(6256), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298600] = 21, + [298160] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - STATE(3808), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(3162), 1, + sym__class_declaration_item, + STATE(3770), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(3890), 1, sym_field_declaration_list, - STATE(4836), 1, - sym__class_declaration_item, - STATE(8716), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4029), 2, + STATE(3606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7900), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298670] = 21, + [298230] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13087), 1, sym_identifier, - ACTIONS(13154), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(4639), 1, sym_field_declaration_list, - STATE(4932), 1, + STATE(4865), 1, sym__class_declaration_item, - STATE(8710), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(6256), 2, + STATE(3977), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298740] = 21, + [298300] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(11269), 1, + anon_sym_requires, + STATE(8677), 1, + sym__function_attributes_end, + STATE(8678), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [298364] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13147), 1, sym_identifier, - STATE(3711), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(3162), 1, + sym__class_declaration_item, + STATE(7400), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(7709), 1, sym_field_declaration_list, - STATE(4125), 1, - sym__class_declaration_item, - STATE(8707), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(10474), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3540), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3728), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7371), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7863), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298810] = 21, + [298434] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13147), 1, sym_identifier, - STATE(3711), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(3214), 1, + sym__class_declaration_item, + STATE(7400), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(7709), 1, sym_field_declaration_list, - STATE(4048), 1, - sym__class_declaration_item, - STATE(8707), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(10474), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3540), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3728), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7884), 2, + STATE(7371), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298880] = 21, + [298504] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(11269), 1, + anon_sym_requires, + STATE(8675), 1, + sym__function_attributes_end, + STATE(8676), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 4, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [298568] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(8182), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13155), 1, sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(3905), 1, + STATE(2640), 1, + sym__splice_specialization_specifier, + STATE(2703), 1, sym_field_declaration_list, - STATE(4093), 1, + STATE(3003), 1, sym__class_declaration_item, - STATE(8707), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(9611), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10572), 1, + STATE(10408), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3540), 2, + STATE(2397), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [298950] = 21, + [298638] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13104), 1, sym_identifier, - STATE(3711), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(4111), 1, + STATE(4116), 1, sym__class_declaration_item, - STATE(4263), 1, + STATE(4222), 1, sym_splice_specifier, - STATE(4380), 1, + STATE(4374), 1, sym_field_declaration_list, - STATE(8675), 1, + STATE(8737), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(10557), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3728), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(4032), 2, + STATE(4035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7887), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [298708] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(143), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8284), 1, + anon_sym_COLON_COLON, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(13526), 1, + sym_identifier, + ACTIONS(13528), 1, + anon_sym_template, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3969), 1, + sym_pointer_type_declarator, + STATE(3970), 1, + sym_template_function, + STATE(3972), 1, + sym_destructor_name, + STATE(3973), 1, + sym_dependent_identifier, + STATE(3974), 1, + sym_qualified_identifier, + STATE(3976), 1, + sym_operator_name, + STATE(7878), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(9413), 1, + sym_operator_cast, + STATE(9608), 1, + sym_qualified_operator_cast_identifier, + STATE(11150), 1, + sym_ms_based_modifier, + STATE(11531), 5, sym_decltype, + sym_template_type, sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [299020] = 21, + [298782] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13104), 1, sym_identifier, - STATE(3711), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(4082), 1, + STATE(4121), 1, sym__class_declaration_item, - STATE(4263), 1, + STATE(4222), 1, sym_splice_specifier, - STATE(4380), 1, + STATE(4374), 1, sym_field_declaration_list, - STATE(8675), 1, + STATE(8737), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(9644), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(10557), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3728), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(4032), 2, + STATE(4035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7887), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299090] = 21, + [298852] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, sym_identifier, - STATE(3711), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4125), 1, + STATE(3222), 1, sym__class_declaration_item, - STATE(4263), 1, - sym_splice_specifier, - STATE(4380), 1, + STATE(3890), 1, sym_field_declaration_list, - STATE(8675), 1, + STATE(7198), 1, + sym_splice_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3728), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4032), 2, + STATE(3606), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(7865), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299160] = 21, + [298922] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13096), 1, sym_identifier, - STATE(3711), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(4048), 1, + STATE(4391), 1, + sym_field_declaration_list, + STATE(4493), 1, sym__class_declaration_item, - STATE(4263), 1, + STATE(7353), 1, sym_splice_specifier, - STATE(4380), 1, - sym_field_declaration_list, - STATE(8675), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4032), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7889), 2, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7896), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299230] = 21, + [298992] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9246), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13096), 1, sym_identifier, - STATE(3711), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(4093), 1, + STATE(4391), 1, + sym_field_declaration_list, + STATE(4540), 1, sym__class_declaration_item, - STATE(4263), 1, + STATE(7353), 1, sym_splice_specifier, - STATE(4380), 1, - sym_field_declaration_list, - STATE(8675), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(9587), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10321), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4032), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7955), 2, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299300] = 21, + [299062] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(9279), 1, + anon_sym___asm, + ACTIONS(11171), 1, + anon_sym_LPAREN2, + ACTIONS(11185), 1, + anon_sym_LBRACK, + ACTIONS(11615), 1, + anon_sym_STAR, + ACTIONS(11617), 1, + anon_sym_AMP_AMP, + ACTIONS(11619), 1, + anon_sym_AMP, + STATE(4616), 1, + sym_parameter_list, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8453), 1, + sym__abstract_declarator, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9281), 12, + 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, + [299114] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + ACTIONS(12844), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(13123), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(6587), 1, sym_splice_specifier, - STATE(4654), 1, + STATE(7039), 1, + sym__splice_specialization_specifier, + STATE(7583), 1, sym_field_declaration_list, - STATE(4862), 1, + STATE(7604), 1, sym__class_declaration_item, - STATE(8716), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9470), 1, + STATE(9594), 1, sym_virtual_specifier, - STATE(10307), 1, + STATE(10562), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4029), 2, + STATE(6994), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7830), 2, + STATE(7040), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7889), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299370] = 21, + [299184] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11038), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(12844), 1, + anon_sym_LBRACE, + ACTIONS(13123), 1, sym_identifier, - STATE(2104), 1, + STATE(6587), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(7583), 1, sym_field_declaration_list, - STATE(2176), 1, + STATE(7613), 1, sym__class_declaration_item, - STATE(8763), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(9594), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(10562), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2075), 2, + STATE(6994), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(7040), 2, sym_template_type, sym_splice_type_specifier, - STATE(7813), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299440] = 21, + [299254] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(7243), 1, + ACTIONS(8182), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11038), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13155), 1, sym_identifier, - STATE(2104), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(2172), 1, + STATE(2703), 1, sym_field_declaration_list, - STATE(2189), 1, + STATE(3006), 1, sym__class_declaration_item, - STATE(8763), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(9644), 1, + STATE(9508), 1, sym_virtual_specifier, - STATE(10276), 1, + STATE(10408), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2075), 2, + STATE(2397), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2147), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7838), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299510] = 21, + [299324] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(13104), 1, + sym_identifier, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4968), 1, + STATE(4136), 1, sym__class_declaration_item, - STATE(8705), 1, - sym__scope_resolution, - STATE(9320), 1, + STATE(4222), 1, + sym_splice_specifier, + STATE(4374), 1, sym_field_declaration_list, - STATE(9556), 1, + STATE(8737), 1, + sym__scope_resolution, + STATE(9644), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(10557), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(7816), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, + STATE(4035), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(7970), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299580] = 21, + [299394] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10069), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(13147), 1, + sym_identifier, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4802), 1, - sym_splice_specifier, - STATE(4984), 1, + STATE(3222), 1, sym__class_declaration_item, + STATE(7400), 1, + sym_splice_specifier, + STATE(7709), 1, + sym_field_declaration_list, STATE(8705), 1, sym__scope_resolution, - STATE(9320), 1, - sym_field_declaration_list, - STATE(9556), 1, + STATE(9523), 1, sym_virtual_specifier, - STATE(10528), 1, + STATE(10474), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3790), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8848), 2, + STATE(7371), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(7825), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299650] = 21, + [299464] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8269), 1, - anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(12844), 1, + anon_sym_LBRACE, + ACTIONS(13123), 1, sym_identifier, - STATE(2638), 1, + STATE(6587), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(7583), 1, sym_field_declaration_list, - STATE(3086), 1, + STATE(7641), 1, sym__class_declaration_item, - STATE(8687), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(9594), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(10562), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2460), 2, + STATE(6994), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(7040), 2, sym_template_type, sym_splice_type_specifier, - STATE(7898), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299720] = 21, + [299534] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9314), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3237), 1, - sym__class_declaration_item, - STATE(3800), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(3863), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4391), 1, sym_field_declaration_list, - STATE(8738), 1, + STATE(4517), 1, + sym__class_declaration_item, + STATE(8722), 1, sym__scope_resolution, - STATE(9550), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10518), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(3609), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7850), 2, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299790] = 21, + [299604] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8269), 1, - anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(12844), 1, + anon_sym_LBRACE, + ACTIONS(13123), 1, sym_identifier, - STATE(2638), 1, + STATE(6587), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(7583), 1, sym_field_declaration_list, - STATE(3213), 1, + STATE(7645), 1, sym__class_declaration_item, - STATE(8687), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(9594), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(10562), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2460), 2, + STATE(6994), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(7040), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7892), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299860] = 21, + [299674] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8269), 1, - anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(12844), 1, + anon_sym_LBRACE, + ACTIONS(13123), 1, sym_identifier, - STATE(2638), 1, + STATE(6587), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(7583), 1, sym_field_declaration_list, - STATE(3112), 1, + STATE(7616), 1, sym__class_declaration_item, - STATE(8687), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(9594), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(10562), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2460), 2, + STATE(6994), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(7040), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [299930] = 21, + [299744] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8269), 1, + ACTIONS(11561), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13098), 1, sym_identifier, - STATE(2638), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(5942), 1, sym_field_declaration_list, - STATE(3179), 1, + STATE(6040), 1, sym__class_declaration_item, - STATE(8687), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(9655), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(10505), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2460), 2, + STATE(5432), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(7900), 2, + STATE(7867), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300000] = 21, + [299814] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(8269), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2800), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4639), 1, sym_field_declaration_list, - STATE(3162), 1, + STATE(4767), 1, sym__class_declaration_item, - STATE(8687), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(9491), 1, + STATE(9461), 1, sym_virtual_specifier, - STATE(10452), 1, + STATE(10588), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(2460), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2678), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(3977), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300070] = 23, + [299884] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(143), 1, - anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(8238), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(7260), 1, + anon_sym_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9311), 1, + anon_sym_LBRACE, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(13539), 1, + ACTIONS(13135), 1, sym_identifier, - ACTIONS(13541), 1, - anon_sym_template, - STATE(3808), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3957), 1, - sym_pointer_type_declarator, - STATE(3972), 1, - sym_destructor_name, - STATE(3975), 1, - sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, - sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7901), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(3132), 1, + sym__class_declaration_item, + STATE(3770), 1, sym_splice_specifier, - STATE(9442), 1, - sym_operator_cast, - STATE(9637), 1, - sym_qualified_operator_cast_identifier, - STATE(11156), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, + STATE(3890), 1, + sym_field_declaration_list, + STATE(8708), 1, + sym__scope_resolution, + STATE(9478), 1, + sym_virtual_specifier, + STATE(10520), 1, + sym_base_class_clause, + ACTIONS(7264), 2, + anon_sym_final, + anon_sym_override, + STATE(3043), 2, sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7970), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, sym_splice_expression, - [300144] = 21, + [299954] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10659), 1, + ACTIONS(10044), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(12978), 1, - anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(13096), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(7595), 1, + STATE(4391), 1, sym_field_declaration_list, - STATE(7623), 1, + STATE(4517), 1, sym__class_declaration_item, - STATE(8700), 1, + STATE(7353), 1, + sym_splice_specifier, + STATE(8710), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(7089), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7122), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(7904), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300214] = 21, + [300024] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10659), 1, + ACTIONS(10044), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(12978), 1, - anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(13096), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(7595), 1, + STATE(4391), 1, sym_field_declaration_list, - STATE(7650), 1, + STATE(4526), 1, sym__class_declaration_item, - STATE(8700), 1, + STATE(7353), 1, + sym_splice_specifier, + STATE(8710), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(7089), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7122), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7898), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300284] = 21, + [300094] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10659), 1, + ACTIONS(10044), 1, + anon_sym_LBRACE, + ACTIONS(10651), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(12978), 1, - anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(13096), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(7595), 1, + STATE(4391), 1, sym_field_declaration_list, - STATE(7631), 1, + STATE(4424), 1, sym__class_declaration_item, - STATE(8700), 1, + STATE(7353), 1, + sym_splice_specifier, + STATE(8710), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9509), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(10341), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(7089), 2, + STATE(3999), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7122), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300354] = 21, + [300164] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, + ACTIONS(11561), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(13098), 1, sym_identifier, - STATE(6581), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(7121), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(7595), 1, + STATE(5942), 1, sym_field_declaration_list, - STATE(7641), 1, + STATE(6066), 1, sym__class_declaration_item, - STATE(8700), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9655), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(10505), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(7089), 2, + STATE(5432), 2, sym__class_name, sym_qualified_type_identifier, - STATE(7122), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(7906), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300424] = 21, + [300234] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(2448), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(12978), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - ACTIONS(13168), 1, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(7595), 1, - sym_field_declaration_list, - STATE(7614), 1, + STATE(3210), 1, sym__class_declaration_item, - STATE(8700), 1, + STATE(3770), 1, + sym_splice_specifier, + STATE(3890), 1, + sym_field_declaration_list, + STATE(8708), 1, sym__scope_resolution, - STATE(9479), 1, + STATE(9478), 1, sym_virtual_specifier, - STATE(10590), 1, + STATE(10520), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(7089), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(7122), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(3606), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [300494] = 21, + [300304] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7241), 1, + ACTIONS(7260), 1, anon_sym_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(9965), 1, + ACTIONS(8233), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(4272), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(4350), 1, + STATE(2786), 1, sym_field_declaration_list, - STATE(4424), 1, + STATE(3147), 1, sym__class_declaration_item, - STATE(8676), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(9426), 1, + STATE(9425), 1, sym_virtual_specifier, - STATE(10236), 1, + STATE(10409), 1, sym_base_class_clause, - ACTIONS(7245), 2, + ACTIONS(7264), 2, anon_sym_final, anon_sym_override, - STATE(3966), 2, + STATE(2439), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(2688), 2, sym_template_type, sym_splice_type_specifier, - STATE(7955), 2, + STATE(7852), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [300564] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, - anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, - anon_sym_COLON_COLON, - ACTIONS(13551), 1, - anon_sym_RBRACK, - ACTIONS(13553), 1, - sym_this, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, - sym_splice_type_specifier, sym_splice_expression, - [300627] = 24, + [300374] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(13555), 1, + ACTIONS(13530), 1, sym_identifier, - ACTIONS(13557), 1, + ACTIONS(13532), 1, anon_sym_TILDE, - ACTIONS(13559), 1, + ACTIONS(13534), 1, anon_sym_COLON_COLON, - ACTIONS(13561), 1, + ACTIONS(13536), 1, anon_sym_template, - ACTIONS(13563), 1, + ACTIONS(13538), 1, anon_sym_operator, - STATE(2455), 1, - sym_template_type, - STATE(2457), 1, + STATE(2787), 1, sym_dependent_type_identifier, - STATE(2543), 1, + STATE(2880), 1, + sym_template_type, + STATE(2912), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5691), 1, + STATE(3941), 1, sym_pointer_type_declarator, - STATE(5695), 1, + STATE(3942), 1, sym_template_function, - STATE(5701), 1, + STATE(3943), 1, sym_destructor_name, - STATE(5702), 1, + STATE(3944), 1, sym_dependent_identifier, - STATE(5704), 1, + STATE(3945), 1, sym_qualified_identifier, - STATE(5705), 1, + STATE(3946), 1, sym_operator_name, - STATE(7909), 1, + STATE(7902), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11657), 1, + STATE(11034), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [300702] = 18, + [300449] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(11884), 1, anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13532), 1, + anon_sym_TILDE, + ACTIONS(13538), 1, + anon_sym_operator, + ACTIONS(13540), 1, + sym_identifier, + ACTIONS(13542), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13565), 1, - anon_sym_RBRACK, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, - sym_decltype, + ACTIONS(13544), 1, + anon_sym_template, + STATE(3731), 1, sym_template_type, + STATE(3736), 1, + sym_qualified_type_identifier, + STATE(3742), 1, sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [300765] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, - anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, - anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13567), 1, - anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(3941), 1, + sym_pointer_type_declarator, + STATE(3942), 1, + sym_template_function, + STATE(3943), 1, + sym_destructor_name, + STATE(3944), 1, + sym_dependent_identifier, + STATE(3945), 1, + sym_qualified_identifier, + STATE(3946), 1, + sym_operator_name, + STATE(7903), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, + STATE(11715), 1, + sym_ms_based_modifier, + STATE(11531), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300828] = 24, + [300524] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(13569), 1, - sym_identifier, - ACTIONS(13571), 1, + ACTIONS(13532), 1, anon_sym_TILDE, - ACTIONS(13573), 1, + ACTIONS(13538), 1, + anon_sym_operator, + ACTIONS(13546), 1, + sym_identifier, + ACTIONS(13548), 1, anon_sym_COLON_COLON, - ACTIONS(13575), 1, + ACTIONS(13550), 1, anon_sym_template, - ACTIONS(13577), 1, - anon_sym_operator, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + STATE(3731), 1, sym_template_type, - STATE(2920), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(3941), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(3942), 1, sym_template_function, - STATE(3851), 1, + STATE(3943), 1, sym_destructor_name, - STATE(3852), 1, + STATE(3944), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(3945), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(3946), 1, sym_operator_name, - STATE(7912), 1, + STATE(7904), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(11034), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [300903] = 18, + [300599] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5922), 1, + anon_sym_RBRACK, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(13552), 1, sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13579), 1, - anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [300966] = 18, + [300662] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, - anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, - anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13581), 1, - anon_sym_RBRACK, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [301029] = 18, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + STATE(8562), 1, + sym_trailing_return_type, + STATE(8613), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [300725] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13583), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13564), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301092] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - STATE(8667), 1, - sym__function_attributes_end, - STATE(8718), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [301155] = 18, + [300788] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, + ACTIONS(11269), 1, anon_sym_requires, - ACTIONS(11516), 1, + ACTIONS(11496), 1, anon_sym_DASH_GT, - ACTIONS(13242), 1, + ACTIONS(12303), 1, anon_sym___attribute__, - ACTIONS(13245), 1, + ACTIONS(12306), 1, anon_sym___attribute, - STATE(8669), 1, + STATE(8622), 1, sym__function_attributes_end, - STATE(8736), 1, + STATE(8676), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 3, + ACTIONS(7874), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [301218] = 24, + [300851] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5625), 1, - anon_sym_COLON_COLON, - ACTIONS(11896), 1, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(13585), 1, + ACTIONS(13532), 1, + anon_sym_TILDE, + ACTIONS(13538), 1, + anon_sym_operator, + ACTIONS(13540), 1, sym_identifier, - ACTIONS(13587), 1, + ACTIONS(13544), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + ACTIONS(13566), 1, + anon_sym_COLON_COLON, + STATE(3731), 1, sym_template_type, - STATE(3752), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3957), 1, + STATE(3941), 1, sym_pointer_type_declarator, - STATE(3972), 1, + STATE(3942), 1, + sym_template_function, + STATE(3943), 1, sym_destructor_name, - STATE(3975), 1, + STATE(3944), 1, + sym_dependent_identifier, + STATE(3945), 1, sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, + STATE(3946), 1, sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7918), 1, + STATE(7909), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11156), 1, + STATE(11034), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [301293] = 24, + [300926] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11906), 1, + ACTIONS(5916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13589), 1, - sym_identifier, - ACTIONS(13591), 1, - anon_sym_TILDE, - ACTIONS(13593), 1, + ACTIONS(13556), 1, + anon_sym_AMP, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13595), 1, - anon_sym_template, - ACTIONS(13597), 1, - anon_sym_operator, - STATE(2579), 1, - sym_template_type, - STATE(2580), 1, - sym_dependent_type_identifier, - STATE(2633), 1, - sym_qualified_type_identifier, - STATE(3808), 1, + ACTIONS(13560), 1, + sym_this, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13568), 1, + anon_sym_RBRACK, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5854), 1, - sym_pointer_type_declarator, - STATE(5856), 1, - sym_template_function, - STATE(5858), 1, - sym_destructor_name, - STATE(5859), 1, - sym_dependent_identifier, - STATE(5860), 1, - sym_qualified_identifier, - STATE(5863), 1, - sym_operator_name, - STATE(7919), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11304), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301368] = 24, + [300989] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(5916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(13599), 1, - sym_identifier, - ACTIONS(13601), 1, + ACTIONS(13556), 1, + anon_sym_AMP, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13603), 1, - anon_sym_template, - STATE(3491), 1, - sym_template_type, - STATE(3495), 1, - sym_dependent_type_identifier, - STATE(3644), 1, - sym_qualified_type_identifier, - STATE(3808), 1, + ACTIONS(13560), 1, + sym_this, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13570), 1, + anon_sym_RBRACK, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3848), 1, - sym_pointer_type_declarator, - STATE(3850), 1, - sym_template_function, - STATE(3851), 1, - sym_destructor_name, - STATE(3852), 1, - sym_dependent_identifier, - STATE(3853), 1, - sym_qualified_identifier, - STATE(3856), 1, - sym_operator_name, - STATE(7920), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11037), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301443] = 24, + [301052] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11933), 1, + ACTIONS(5916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13605), 1, - sym_identifier, - ACTIONS(13607), 1, - anon_sym_TILDE, - ACTIONS(13609), 1, + ACTIONS(13556), 1, + anon_sym_AMP, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13611), 1, - anon_sym_template, - ACTIONS(13613), 1, - anon_sym_operator, - STATE(3808), 1, + ACTIONS(13560), 1, + sym_this, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13572), 1, + anon_sym_RBRACK, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4123), 1, - sym_template_type, - STATE(4127), 1, - sym_dependent_type_identifier, - STATE(4267), 1, - sym_qualified_type_identifier, - STATE(5836), 1, - sym_pointer_type_declarator, - STATE(5841), 1, - sym_template_function, - STATE(5845), 1, - sym_destructor_name, - STATE(5849), 1, - sym_dependent_identifier, - STATE(5861), 1, - sym_qualified_identifier, - STATE(5871), 1, - sym_operator_name, - STATE(7921), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11053), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301518] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(13242), 1, - anon_sym___attribute__, - ACTIONS(13245), 1, - anon_sym___attribute, - ACTIONS(13399), 1, - anon_sym_requires, - STATE(8517), 1, - sym_trailing_return_type, - STATE(8642), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13396), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - [301581] = 8, + [301115] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8837), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(6377), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8005), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8839), 16, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(5924), 1, 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, - [301624] = 24, + ACTIONS(13554), 1, + anon_sym_STAR, + ACTIONS(13556), 1, + anon_sym_AMP, + ACTIONS(13558), 1, + anon_sym_COLON_COLON, + ACTIONS(13560), 1, + sym_this, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13574), 1, + anon_sym_RBRACK, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7987), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [301178] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(6580), 1, + anon_sym_COLON_COLON, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(13557), 1, - anon_sym_TILDE, - ACTIONS(13563), 1, - anon_sym_operator, - ACTIONS(13615), 1, + ACTIONS(13576), 1, sym_identifier, - ACTIONS(13617), 1, - anon_sym_COLON_COLON, - ACTIONS(13619), 1, + ACTIONS(13578), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + STATE(3731), 1, sym_template_type, - STATE(3752), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5691), 1, + STATE(3969), 1, sym_pointer_type_declarator, - STATE(5695), 1, + STATE(3970), 1, sym_template_function, - STATE(5701), 1, + STATE(3972), 1, sym_destructor_name, - STATE(5702), 1, + STATE(3973), 1, sym_dependent_identifier, - STATE(5704), 1, + STATE(3974), 1, sym_qualified_identifier, - STATE(5705), 1, + STATE(3976), 1, sym_operator_name, - STATE(7924), 1, + STATE(7914), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11657), 1, + STATE(11150), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [301699] = 24, + [301253] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11906), 1, + ACTIONS(11926), 1, anon_sym_STAR, - ACTIONS(13591), 1, - anon_sym_TILDE, - ACTIONS(13597), 1, - anon_sym_operator, - ACTIONS(13621), 1, + ACTIONS(13580), 1, sym_identifier, - ACTIONS(13623), 1, + ACTIONS(13582), 1, + anon_sym_TILDE, + ACTIONS(13584), 1, anon_sym_COLON_COLON, - ACTIONS(13625), 1, + ACTIONS(13586), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + ACTIONS(13588), 1, + anon_sym_operator, + STATE(2678), 1, sym_template_type, - STATE(3752), 1, + STATE(2679), 1, + sym_dependent_type_identifier, + STATE(2792), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5854), 1, - sym_pointer_type_declarator, - STATE(5856), 1, - sym_template_function, - STATE(5858), 1, + STATE(5540), 1, sym_destructor_name, - STATE(5859), 1, + STATE(5569), 1, sym_dependent_identifier, - STATE(5860), 1, + STATE(5678), 1, sym_qualified_identifier, - STATE(5863), 1, + STATE(5707), 1, + sym_template_function, + STATE(5713), 1, sym_operator_name, - STATE(7925), 1, + STATE(5715), 1, + sym_pointer_type_declarator, + STATE(7915), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11304), 1, + STATE(10861), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [301774] = 24, + [301328] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11947), 1, + ACTIONS(5916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(13599), 1, - sym_identifier, - ACTIONS(13627), 1, + ACTIONS(13556), 1, + anon_sym_AMP, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13629), 1, - anon_sym_template, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, - sym_template_type, - STATE(2920), 1, - sym_qualified_type_identifier, - STATE(3808), 1, + ACTIONS(13560), 1, + sym_this, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13590), 1, + anon_sym_RBRACK, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3848), 1, - sym_pointer_type_declarator, - STATE(3850), 1, - sym_template_function, - STATE(3851), 1, - sym_destructor_name, - STATE(3852), 1, - sym_dependent_identifier, - STATE(3853), 1, - sym_qualified_identifier, - STATE(3856), 1, - sym_operator_name, - STATE(7926), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10893), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301849] = 18, + [301391] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13631), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13592), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [301912] = 24, + [301454] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11269), 1, + anon_sym_requires, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + STATE(8623), 1, + sym__function_attributes_end, + STATE(8678), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [301517] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11933), 1, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(13607), 1, + ACTIONS(13532), 1, anon_sym_TILDE, - ACTIONS(13613), 1, + ACTIONS(13538), 1, anon_sym_operator, - ACTIONS(13633), 1, + ACTIONS(13594), 1, sym_identifier, - ACTIONS(13635), 1, + ACTIONS(13596), 1, anon_sym_COLON_COLON, - ACTIONS(13637), 1, + ACTIONS(13598), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + STATE(3731), 1, sym_template_type, - STATE(3752), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5836), 1, + STATE(3941), 1, sym_pointer_type_declarator, - STATE(5841), 1, + STATE(3942), 1, sym_template_function, - STATE(5845), 1, + STATE(3943), 1, sym_destructor_name, - STATE(5849), 1, + STATE(3944), 1, sym_dependent_identifier, - STATE(5861), 1, + STATE(3945), 1, sym_qualified_identifier, - STATE(5871), 1, + STATE(3946), 1, sym_operator_name, - STATE(7928), 1, + STATE(7919), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11053), 1, + STATE(11034), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [301987] = 18, + [301592] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, - anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11309), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(13106), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(13109), 1, anon_sym___attribute, - STATE(8585), 1, + ACTIONS(13220), 1, + anon_sym_requires, + STATE(8522), 1, sym_trailing_return_type, - STATE(8604), 1, + STATE(8652), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7970), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - [302050] = 24, + [301655] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + ACTIONS(13106), 1, + anon_sym___attribute__, + ACTIONS(13109), 1, + anon_sym___attribute, + ACTIONS(13241), 1, + anon_sym_requires, + STATE(8642), 1, + sym__function_attributes_end, + STATE(8689), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13217), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [301718] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(11868), 1, anon_sym_STAR, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(13639), 1, + ACTIONS(13600), 1, sym_identifier, - ACTIONS(13641), 1, + ACTIONS(13602), 1, + anon_sym_TILDE, + ACTIONS(13604), 1, anon_sym_COLON_COLON, - ACTIONS(13643), 1, + ACTIONS(13606), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + ACTIONS(13608), 1, + anon_sym_operator, + STATE(3731), 1, sym_template_type, - STATE(3752), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3848), 1, - sym_pointer_type_declarator, - STATE(3850), 1, + STATE(5761), 1, sym_template_function, - STATE(3851), 1, + STATE(5762), 1, sym_destructor_name, - STATE(3852), 1, + STATE(5818), 1, sym_dependent_identifier, - STATE(3853), 1, - sym_qualified_identifier, - STATE(3856), 1, + STATE(5849), 1, sym_operator_name, - STATE(7930), 1, + STATE(5868), 1, + sym_qualified_identifier, + STATE(5929), 1, + sym_pointer_type_declarator, + STATE(7922), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(11298), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302125] = 24, + [301793] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8870), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(6398), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8048), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8872), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_GT2, + anon_sym_try, + anon_sym_requires, + [301836] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11933), 1, + ACTIONS(5916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13607), 1, - anon_sym_TILDE, - ACTIONS(13613), 1, - anon_sym_operator, - ACTIONS(13645), 1, - sym_identifier, - ACTIONS(13647), 1, + ACTIONS(13556), 1, + anon_sym_AMP, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13649), 1, - anon_sym_template, - STATE(3808), 1, + ACTIONS(13560), 1, + sym_this, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13610), 1, + anon_sym_RBRACK, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4123), 1, - sym_template_type, - STATE(4127), 1, - sym_dependent_type_identifier, - STATE(4267), 1, - sym_qualified_type_identifier, - STATE(5836), 1, - sym_pointer_type_declarator, - STATE(5841), 1, - sym_template_function, - STATE(5845), 1, - sym_destructor_name, - STATE(5849), 1, - sym_dependent_identifier, - STATE(5861), 1, - sym_qualified_identifier, - STATE(5871), 1, - sym_operator_name, - STATE(7931), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11053), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302200] = 18, + [301899] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13651), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13612), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302263] = 18, + [301962] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, - anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11496), 1, anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13226), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13229), 1, anon_sym___attribute, - STATE(8565), 1, - sym_trailing_return_type, - STATE(8606), 1, + ACTIONS(13523), 1, + anon_sym_requires, + STATE(8646), 1, sym__function_attributes_end, - STATE(9124), 1, + STATE(8690), 1, + sym_trailing_return_type, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(10859), 2, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(8402), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, - [302326] = 24, + anon_sym_GT2, + [302025] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(13554), 1, + anon_sym_STAR, + ACTIONS(13556), 1, + anon_sym_AMP, + ACTIONS(13558), 1, + anon_sym_COLON_COLON, + ACTIONS(13560), 1, + sym_this, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13614), 1, + anon_sym_RBRACK, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7987), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [302088] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(13554), 1, + anon_sym_STAR, + ACTIONS(13556), 1, + anon_sym_AMP, + ACTIONS(13558), 1, + anon_sym_COLON_COLON, + ACTIONS(13560), 1, + sym_this, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13616), 1, + anon_sym_RBRACK, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7987), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [302151] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2950), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(8563), 1, + anon_sym_LPAREN2, + STATE(5602), 1, + sym_argument_list, + STATE(5604), 1, + sym_initializer_list, + ACTIONS(7246), 2, + anon_sym_AMP, + anon_sym_const, + ACTIONS(7248), 18, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym___extension__, + anon_sym_LBRACK, + anon_sym_constexpr, + anon_sym_volatile, + anon_sym_restrict, + anon_sym___restrict__, + anon_sym__Atomic, + anon_sym__Noreturn, + anon_sym_noreturn, + anon_sym__Nonnull, + anon_sym_mutable, + anon_sym_constinit, + anon_sym_consteval, + anon_sym_alignas, + anon_sym__Alignas, + [302194] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(11868), 1, anon_sym_STAR, - ACTIONS(13653), 1, - sym_identifier, - ACTIONS(13655), 1, + ACTIONS(13602), 1, anon_sym_TILDE, - ACTIONS(13657), 1, + ACTIONS(13608), 1, + anon_sym_operator, + ACTIONS(13618), 1, + sym_identifier, + ACTIONS(13620), 1, anon_sym_COLON_COLON, - ACTIONS(13659), 1, + ACTIONS(13622), 1, anon_sym_template, - ACTIONS(13661), 1, - anon_sym_operator, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + STATE(3490), 1, sym_template_type, - STATE(2920), 1, + STATE(3509), 1, + sym_dependent_type_identifier, + STATE(3592), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5453), 1, - sym_pointer_type_declarator, - STATE(5456), 1, + STATE(5761), 1, sym_template_function, - STATE(5457), 1, + STATE(5762), 1, sym_destructor_name, - STATE(5461), 1, + STATE(5818), 1, sym_dependent_identifier, - STATE(5463), 1, - sym_qualified_identifier, - STATE(5465), 1, + STATE(5849), 1, sym_operator_name, - STATE(7934), 1, + STATE(5868), 1, + sym_qualified_identifier, + STATE(5929), 1, + sym_pointer_type_declarator, + STATE(7930), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11657), 1, + STATE(11298), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302401] = 8, + [302269] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(8854), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(6398), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8003), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8856), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + 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_GT2, + anon_sym_try, + anon_sym_requires, + [302312] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(2950), 1, anon_sym_LBRACE, - ACTIONS(7227), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(8569), 1, + ACTIONS(8563), 1, anon_sym_LPAREN2, - STATE(5569), 1, + STATE(5560), 1, sym_argument_list, - STATE(5579), 1, + STATE(5570), 1, sym_initializer_list, - ACTIONS(7223), 2, + ACTIONS(7246), 2, anon_sym_AMP, anon_sym_const, - ACTIONS(7225), 18, + ACTIONS(7248), 18, anon_sym_RPAREN, anon_sym_STAR, anon_sym_AMP_AMP, @@ -703258,2367 +702771,2279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_consteval, anon_sym_alignas, anon_sym__Alignas, - [302444] = 18, + [302355] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7789), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, + ACTIONS(11496), 1, anon_sym_DASH_GT, - ACTIONS(12406), 1, + ACTIONS(12303), 1, anon_sym___attribute__, - ACTIONS(12409), 1, + ACTIONS(12306), 1, anon_sym___attribute, - ACTIONS(13197), 1, + ACTIONS(13178), 1, anon_sym_requires, - STATE(8643), 1, + STATE(8636), 1, sym__function_attributes_end, - STATE(8715), 1, + STATE(8687), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13146), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(7874), 3, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_GT2, - [302507] = 24, + [302418] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(11926), 1, anon_sym_STAR, - ACTIONS(13557), 1, + ACTIONS(13582), 1, anon_sym_TILDE, - ACTIONS(13563), 1, + ACTIONS(13588), 1, anon_sym_operator, - ACTIONS(13663), 1, + ACTIONS(13624), 1, sym_identifier, - ACTIONS(13665), 1, + ACTIONS(13626), 1, anon_sym_COLON_COLON, - ACTIONS(13667), 1, + ACTIONS(13628), 1, anon_sym_template, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + STATE(3731), 1, sym_template_type, - STATE(2920), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5691), 1, - sym_pointer_type_declarator, - STATE(5695), 1, - sym_template_function, - STATE(5701), 1, + STATE(5540), 1, sym_destructor_name, - STATE(5702), 1, + STATE(5569), 1, sym_dependent_identifier, - STATE(5704), 1, + STATE(5678), 1, sym_qualified_identifier, - STATE(5705), 1, + STATE(5707), 1, + sym_template_function, + STATE(5713), 1, sym_operator_name, - STATE(7937), 1, + STATE(5715), 1, + sym_pointer_type_declarator, + STATE(7934), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11657), 1, + STATE(10861), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302582] = 18, + [302493] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(7968), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, + ACTIONS(11309), 1, anon_sym_DASH_GT, - ACTIONS(13108), 1, + ACTIONS(13226), 1, anon_sym___attribute__, - ACTIONS(13111), 1, + ACTIONS(13229), 1, anon_sym___attribute, - ACTIONS(13239), 1, + ACTIONS(13386), 1, anon_sym_requires, - STATE(8662), 1, - sym__function_attributes_end, - STATE(8725), 1, + STATE(8523), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(8654), 1, + sym__function_attributes_end, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(13202), 2, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(8402), 3, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [302645] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(8569), 1, - anon_sym_LPAREN2, - STATE(5537), 1, - sym_argument_list, - STATE(5538), 1, - sym_initializer_list, - ACTIONS(7223), 2, - anon_sym_AMP, - anon_sym_const, - ACTIONS(7225), 18, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym___extension__, - anon_sym_LBRACK, - anon_sym_constexpr, - anon_sym_volatile, - anon_sym_restrict, - anon_sym___restrict__, - anon_sym__Atomic, - anon_sym__Noreturn, - anon_sym_noreturn, - anon_sym__Nonnull, - anon_sym_mutable, - anon_sym_constinit, - anon_sym_consteval, - anon_sym_alignas, - anon_sym__Alignas, - [302688] = 18, + anon_sym_LPAREN2, + [302556] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(11884), 1, anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13532), 1, + anon_sym_TILDE, + ACTIONS(13538), 1, + anon_sym_operator, + ACTIONS(13630), 1, + sym_identifier, + ACTIONS(13632), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13669), 1, - anon_sym_RBRACK, - STATE(3808), 1, + ACTIONS(13634), 1, + anon_sym_template, + STATE(2095), 1, + sym_template_type, + STATE(2096), 1, + sym_dependent_type_identifier, + STATE(2121), 1, + sym_qualified_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(3941), 1, + sym_pointer_type_declarator, + STATE(3942), 1, + sym_template_function, + STATE(3943), 1, + sym_destructor_name, + STATE(3944), 1, + sym_dependent_identifier, + STATE(3945), 1, + sym_qualified_identifier, + STATE(3946), 1, + sym_operator_name, + STATE(7936), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, + STATE(11715), 1, + sym_ms_based_modifier, + STATE(11531), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302751] = 18, + [302631] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13671), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13636), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [302814] = 24, + [302694] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(13655), 1, + ACTIONS(13532), 1, anon_sym_TILDE, - ACTIONS(13661), 1, + ACTIONS(13538), 1, anon_sym_operator, - ACTIONS(13673), 1, + ACTIONS(13638), 1, sym_identifier, - ACTIONS(13675), 1, + ACTIONS(13640), 1, anon_sym_COLON_COLON, - ACTIONS(13677), 1, + ACTIONS(13642), 1, anon_sym_template, - STATE(3743), 1, + STATE(2787), 1, sym_dependent_type_identifier, - STATE(3748), 1, + STATE(2880), 1, sym_template_type, - STATE(3752), 1, + STATE(2912), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5453), 1, + STATE(3941), 1, sym_pointer_type_declarator, - STATE(5456), 1, + STATE(3942), 1, sym_template_function, - STATE(5457), 1, + STATE(3943), 1, sym_destructor_name, - STATE(5461), 1, + STATE(3944), 1, sym_dependent_identifier, - STATE(5463), 1, + STATE(3945), 1, sym_qualified_identifier, - STATE(5465), 1, + STATE(3946), 1, sym_operator_name, - STATE(7942), 1, + STATE(7938), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11657), 1, + STATE(11034), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302889] = 24, + [302769] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(11926), 1, anon_sym_STAR, - ACTIONS(13571), 1, + ACTIONS(13582), 1, anon_sym_TILDE, - ACTIONS(13577), 1, + ACTIONS(13588), 1, anon_sym_operator, - ACTIONS(13599), 1, + ACTIONS(13644), 1, sym_identifier, - ACTIONS(13629), 1, - anon_sym_template, - ACTIONS(13679), 1, + ACTIONS(13646), 1, anon_sym_COLON_COLON, - STATE(2755), 1, + ACTIONS(13648), 1, + anon_sym_template, + STATE(2787), 1, sym_dependent_type_identifier, - STATE(2812), 1, + STATE(2880), 1, sym_template_type, - STATE(2920), 1, + STATE(2912), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3848), 1, - sym_pointer_type_declarator, - STATE(3850), 1, - sym_template_function, - STATE(3851), 1, + STATE(5540), 1, sym_destructor_name, - STATE(3852), 1, + STATE(5569), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(5678), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(5707), 1, + sym_template_function, + STATE(5713), 1, sym_operator_name, - STATE(7943), 1, + STATE(5715), 1, + sym_pointer_type_declarator, + STATE(7939), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(10861), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [302964] = 18, + [302844] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13650), 1, + sym_identifier, + ACTIONS(13652), 1, + anon_sym_TILDE, + ACTIONS(13654), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13681), 1, - anon_sym_RBRACK, - STATE(3808), 1, + ACTIONS(13656), 1, + anon_sym_template, + ACTIONS(13658), 1, + anon_sym_operator, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(4078), 1, + sym_template_type, + STATE(4079), 1, + sym_dependent_type_identifier, + STATE(4246), 1, + sym_qualified_type_identifier, + STATE(5773), 1, + sym_pointer_type_declarator, + STATE(5783), 1, + sym_template_function, + STATE(5795), 1, + sym_destructor_name, + STATE(5799), 1, + sym_dependent_identifier, + STATE(5833), 1, + sym_qualified_identifier, + STATE(5840), 1, + sym_operator_name, + STATE(7940), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, + STATE(11300), 1, + sym_ms_based_modifier, + STATE(11531), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303027] = 18, + [302919] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13652), 1, + anon_sym_TILDE, + ACTIONS(13658), 1, + anon_sym_operator, + ACTIONS(13660), 1, + sym_identifier, + ACTIONS(13662), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13683), 1, - anon_sym_RBRACK, - STATE(3808), 1, + ACTIONS(13664), 1, + anon_sym_template, + STATE(2583), 1, + sym_template_type, + STATE(2586), 1, + sym_dependent_type_identifier, + STATE(2620), 1, + sym_qualified_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(5773), 1, + sym_pointer_type_declarator, + STATE(5783), 1, + sym_template_function, + STATE(5795), 1, + sym_destructor_name, + STATE(5799), 1, + sym_dependent_identifier, + STATE(5833), 1, + sym_qualified_identifier, + STATE(5840), 1, + sym_operator_name, + STATE(7941), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, + STATE(11300), 1, + sym_ms_based_modifier, + STATE(11531), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303090] = 18, + [302994] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13652), 1, + anon_sym_TILDE, + ACTIONS(13658), 1, + anon_sym_operator, + ACTIONS(13666), 1, + sym_identifier, + ACTIONS(13668), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13685), 1, - anon_sym_RBRACK, - STATE(3808), 1, + ACTIONS(13670), 1, + anon_sym_template, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(4078), 1, + sym_template_type, + STATE(4079), 1, + sym_dependent_type_identifier, + STATE(4246), 1, + sym_qualified_type_identifier, + STATE(5773), 1, + sym_pointer_type_declarator, + STATE(5783), 1, + sym_template_function, + STATE(5795), 1, + sym_destructor_name, + STATE(5799), 1, + sym_dependent_identifier, + STATE(5833), 1, + sym_qualified_identifier, + STATE(5840), 1, + sym_operator_name, + STATE(7942), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, + STATE(11300), 1, + sym_ms_based_modifier, + STATE(11531), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303153] = 24, + [303069] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(11884), 1, anon_sym_STAR, - ACTIONS(13496), 1, - anon_sym_TILDE, - ACTIONS(13687), 1, + ACTIONS(13530), 1, sym_identifier, - ACTIONS(13689), 1, - anon_sym_COLON_COLON, - ACTIONS(13691), 1, + ACTIONS(13532), 1, + anon_sym_TILDE, + ACTIONS(13536), 1, anon_sym_template, - ACTIONS(13693), 1, + ACTIONS(13538), 1, anon_sym_operator, - STATE(3743), 1, + ACTIONS(13672), 1, + anon_sym_COLON_COLON, + STATE(2787), 1, sym_dependent_type_identifier, - STATE(3748), 1, + STATE(2880), 1, sym_template_type, - STATE(3752), 1, + STATE(2912), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3957), 1, + STATE(3941), 1, sym_pointer_type_declarator, - STATE(3972), 1, + STATE(3942), 1, + sym_template_function, + STATE(3943), 1, sym_destructor_name, - STATE(3975), 1, + STATE(3944), 1, + sym_dependent_identifier, + STATE(3945), 1, sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, + STATE(3946), 1, sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7947), 1, + STATE(7943), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(11715), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [303228] = 18, + [303144] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13695), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13674), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303291] = 24, + [303207] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(13557), 1, + ACTIONS(13652), 1, anon_sym_TILDE, - ACTIONS(13563), 1, + ACTIONS(13658), 1, anon_sym_operator, - ACTIONS(13697), 1, + ACTIONS(13676), 1, sym_identifier, - ACTIONS(13699), 1, + ACTIONS(13678), 1, anon_sym_COLON_COLON, - ACTIONS(13701), 1, + ACTIONS(13680), 1, anon_sym_template, - STATE(2675), 1, + STATE(3731), 1, sym_template_type, - STATE(2676), 1, - sym_dependent_type_identifier, - STATE(2811), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5691), 1, + STATE(5773), 1, sym_pointer_type_declarator, - STATE(5695), 1, + STATE(5783), 1, sym_template_function, - STATE(5701), 1, + STATE(5795), 1, sym_destructor_name, - STATE(5702), 1, + STATE(5799), 1, sym_dependent_identifier, - STATE(5704), 1, + STATE(5833), 1, sym_qualified_identifier, - STATE(5705), 1, + STATE(5840), 1, sym_operator_name, - STATE(7949), 1, + STATE(7945), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11657), 1, + STATE(11300), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [303366] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(8833), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(6377), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8056), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8835), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [303409] = 18, + [303282] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13703), 1, - anon_sym_RBRACK, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [303472] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, + ACTIONS(13562), 1, sym_identifier, - ACTIONS(13545), 1, - anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, - anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13705), 1, + ACTIONS(13682), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303535] = 18, + [303345] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13707), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13684), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303598] = 24, + [303408] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(11926), 1, anon_sym_STAR, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(13709), 1, + ACTIONS(13686), 1, sym_identifier, - ACTIONS(13711), 1, + ACTIONS(13688), 1, + anon_sym_TILDE, + ACTIONS(13690), 1, anon_sym_COLON_COLON, - ACTIONS(13713), 1, + ACTIONS(13692), 1, anon_sym_template, - STATE(2083), 1, + ACTIONS(13694), 1, + anon_sym_operator, + STATE(2787), 1, sym_dependent_type_identifier, - STATE(2094), 1, + STATE(2880), 1, sym_template_type, - STATE(2114), 1, + STATE(2912), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3848), 1, - sym_pointer_type_declarator, - STATE(3850), 1, - sym_template_function, - STATE(3851), 1, - sym_destructor_name, - STATE(3852), 1, + STATE(5262), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(5285), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(5294), 1, sym_operator_name, - STATE(7954), 1, + STATE(5350), 1, + sym_template_function, + STATE(5352), 1, + sym_destructor_name, + STATE(5437), 1, + sym_pointer_type_declarator, + STATE(7948), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(10861), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [303673] = 5, + [303483] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(13715), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(8404), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9075), 5, - anon_sym_LPAREN2, - anon_sym_COLON_COLON, - anon_sym_LBRACE, + ACTIONS(11269), 1, + anon_sym_requires, + ACTIONS(11496), 1, anon_sym_DASH_GT, - anon_sym_LBRACK_COLON, - ACTIONS(2461), 17, - anon_sym_virtual, - anon_sym_COLON, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - sym_identifier, - anon_sym_decltype, + ACTIONS(13226), 1, + anon_sym___attribute__, + ACTIONS(13229), 1, + anon_sym___attribute, + STATE(8626), 1, + sym__function_attributes_end, + STATE(8679), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - anon_sym_private, - anon_sym_template, - anon_sym_public, - anon_sym_protected, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [303710] = 24, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 3, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_GT2, + [303546] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, + ACTIONS(5667), 1, + anon_sym_COLON_COLON, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(13718), 1, + ACTIONS(13696), 1, sym_identifier, - ACTIONS(13720), 1, - anon_sym_COLON_COLON, - ACTIONS(13722), 1, + ACTIONS(13698), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + STATE(3731), 1, sym_template_type, - STATE(3752), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(3969), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(3970), 1, sym_template_function, - STATE(3851), 1, + STATE(3972), 1, sym_destructor_name, - STATE(3852), 1, + STATE(3973), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(3974), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(3976), 1, sym_operator_name, - STATE(7956), 1, + STATE(7950), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11037), 1, + STATE(11150), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [303785] = 18, + [303621] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13724), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13700), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303848] = 18, + [303684] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13726), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13702), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303911] = 18, + [303747] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13728), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13704), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [303974] = 18, + [303810] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13730), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13706), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304037] = 18, + [303873] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13732), 1, - anon_sym_RBRACK, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [304100] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10861), 1, - anon_sym_requires, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(13242), 1, - anon_sym___attribute__, - ACTIONS(13245), 1, - anon_sym___attribute, - STATE(8551), 1, - sym_trailing_return_type, - STATE(8607), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - [304163] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11912), 1, - anon_sym_STAR, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(13734), 1, + ACTIONS(13562), 1, sym_identifier, - ACTIONS(13736), 1, - anon_sym_COLON_COLON, - ACTIONS(13738), 1, - anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3752), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3848), 1, - sym_pointer_type_declarator, - STATE(3850), 1, - sym_template_function, - STATE(3851), 1, - sym_destructor_name, - STATE(3852), 1, - sym_dependent_identifier, - STATE(3853), 1, - sym_qualified_identifier, - STATE(3856), 1, - sym_operator_name, - STATE(7963), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(11037), 1, - sym_ms_based_modifier, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [304238] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(12406), 1, - anon_sym___attribute__, - ACTIONS(12409), 1, - anon_sym___attribute, - ACTIONS(13149), 1, - anon_sym_requires, - STATE(8511), 1, - sym_trailing_return_type, - STATE(8640), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - [304301] = 24, + ACTIONS(13708), 1, + anon_sym_RBRACK, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7987), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [303936] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11882), 1, + ACTIONS(5916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13557), 1, - anon_sym_TILDE, - ACTIONS(13563), 1, - anon_sym_operator, - ACTIONS(13740), 1, - sym_identifier, - ACTIONS(13742), 1, + ACTIONS(13556), 1, + anon_sym_AMP, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13744), 1, - anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3752), 1, - sym_qualified_type_identifier, - STATE(3808), 1, + ACTIONS(13560), 1, + sym_this, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13710), 1, + anon_sym_RBRACK, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5691), 1, - sym_pointer_type_declarator, - STATE(5695), 1, - sym_template_function, - STATE(5701), 1, - sym_destructor_name, - STATE(5702), 1, - sym_dependent_identifier, - STATE(5704), 1, - sym_qualified_identifier, - STATE(5705), 1, - sym_operator_name, - STATE(7965), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11657), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304376] = 24, + [303999] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(6586), 1, - anon_sym_COLON_COLON, - ACTIONS(11896), 1, + ACTIONS(5916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5924), 1, + anon_sym_EQ, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13746), 1, + ACTIONS(13556), 1, + anon_sym_AMP, + ACTIONS(13558), 1, + anon_sym_COLON_COLON, + ACTIONS(13560), 1, + sym_this, + ACTIONS(13562), 1, sym_identifier, - ACTIONS(13748), 1, - anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3752), 1, - sym_qualified_type_identifier, - STATE(3808), 1, + ACTIONS(13712), 1, + anon_sym_RBRACK, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3957), 1, - sym_pointer_type_declarator, - STATE(3972), 1, - sym_destructor_name, - STATE(3975), 1, - sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, - sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7966), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11156), 1, - sym_ms_based_modifier, - STATE(10768), 3, + STATE(10558), 1, + sym_lambda_default_capture, + STATE(10192), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304451] = 18, + [304062] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13750), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13714), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304514] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(13108), 1, - anon_sym___attribute__, - ACTIONS(13111), 1, - anon_sym___attribute, - STATE(8668), 1, - sym__function_attributes_end, - STATE(8730), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [304577] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(13108), 1, - anon_sym___attribute__, - ACTIONS(13111), 1, - anon_sym___attribute, - ACTIONS(13205), 1, - anon_sym_requires, - STATE(8513), 1, - sym_trailing_return_type, - STATE(8641), 1, - sym__function_attributes_end, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13202), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - [304640] = 18, + [304125] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - STATE(3808), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13716), 1, + anon_sym_RBRACK, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304703] = 24, + [304188] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11906), 1, + ACTIONS(11926), 1, anon_sym_STAR, - ACTIONS(13591), 1, + ACTIONS(13582), 1, anon_sym_TILDE, - ACTIONS(13597), 1, + ACTIONS(13588), 1, anon_sym_operator, - ACTIONS(13752), 1, + ACTIONS(13718), 1, sym_identifier, - ACTIONS(13754), 1, + ACTIONS(13720), 1, anon_sym_COLON_COLON, - ACTIONS(13756), 1, + ACTIONS(13722), 1, anon_sym_template, - STATE(3491), 1, + STATE(3731), 1, sym_template_type, - STATE(3495), 1, - sym_dependent_type_identifier, - STATE(3644), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5854), 1, - sym_pointer_type_declarator, - STATE(5856), 1, - sym_template_function, - STATE(5858), 1, + STATE(5540), 1, sym_destructor_name, - STATE(5859), 1, + STATE(5569), 1, sym_dependent_identifier, - STATE(5860), 1, + STATE(5678), 1, sym_qualified_identifier, - STATE(5863), 1, + STATE(5707), 1, + sym_template_function, + STATE(5713), 1, sym_operator_name, - STATE(7971), 1, + STATE(5715), 1, + sym_pointer_type_declarator, + STATE(7960), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11304), 1, + STATE(10861), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [304778] = 24, + [304263] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11947), 1, + ACTIONS(11868), 1, anon_sym_STAR, - ACTIONS(13571), 1, + ACTIONS(13602), 1, anon_sym_TILDE, - ACTIONS(13577), 1, + ACTIONS(13608), 1, anon_sym_operator, - ACTIONS(13718), 1, + ACTIONS(13724), 1, sym_identifier, - ACTIONS(13722), 1, - anon_sym_template, - ACTIONS(13758), 1, + ACTIONS(13726), 1, anon_sym_COLON_COLON, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + ACTIONS(13728), 1, + anon_sym_template, + STATE(2538), 1, sym_template_type, - STATE(3752), 1, + STATE(2582), 1, + sym_dependent_type_identifier, + STATE(2619), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3848), 1, - sym_pointer_type_declarator, - STATE(3850), 1, + STATE(5761), 1, sym_template_function, - STATE(3851), 1, + STATE(5762), 1, sym_destructor_name, - STATE(3852), 1, + STATE(5818), 1, sym_dependent_identifier, - STATE(3853), 1, - sym_qualified_identifier, - STATE(3856), 1, + STATE(5849), 1, sym_operator_name, - STATE(7972), 1, + STATE(5868), 1, + sym_qualified_identifier, + STATE(5929), 1, + sym_pointer_type_declarator, + STATE(7961), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10893), 1, + STATE(11298), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [304853] = 18, + [304338] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, - anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(11926), 1, anon_sym_STAR, - ACTIONS(13547), 1, - anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13688), 1, + anon_sym_TILDE, + ACTIONS(13694), 1, + anon_sym_operator, + ACTIONS(13730), 1, + sym_identifier, + ACTIONS(13732), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, - sym_this, - ACTIONS(13760), 1, - anon_sym_RBRACK, - STATE(3808), 1, + ACTIONS(13734), 1, + anon_sym_template, + STATE(3731), 1, + sym_template_type, + STATE(3736), 1, + sym_qualified_type_identifier, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(5262), 1, + sym_dependent_identifier, + STATE(5285), 1, + sym_qualified_identifier, + STATE(5294), 1, + sym_operator_name, + STATE(5350), 1, + sym_template_function, + STATE(5352), 1, + sym_destructor_name, + STATE(5437), 1, + sym_pointer_type_declarator, + STATE(7962), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, - sym_lambda_default_capture, - STATE(9680), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, + STATE(10861), 1, + sym_ms_based_modifier, + STATE(11531), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304916] = 18, + [304413] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13762), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13736), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [304979] = 24, + [304476] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11947), 1, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(13571), 1, + ACTIONS(13419), 1, anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(13709), 1, + ACTIONS(13738), 1, sym_identifier, - ACTIONS(13713), 1, - anon_sym_template, - ACTIONS(13764), 1, + ACTIONS(13740), 1, anon_sym_COLON_COLON, - STATE(2083), 1, - sym_dependent_type_identifier, - STATE(2094), 1, + ACTIONS(13742), 1, + anon_sym_template, + ACTIONS(13744), 1, + anon_sym_operator, + STATE(3731), 1, sym_template_type, - STATE(2114), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3848), 1, + STATE(3969), 1, sym_pointer_type_declarator, - STATE(3850), 1, + STATE(3970), 1, sym_template_function, - STATE(3851), 1, + STATE(3972), 1, sym_destructor_name, - STATE(3852), 1, + STATE(3973), 1, sym_dependent_identifier, - STATE(3853), 1, + STATE(3974), 1, sym_qualified_identifier, - STATE(3856), 1, + STATE(3976), 1, sym_operator_name, - STATE(7975), 1, + STATE(7964), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10893), 1, + STATE(11034), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [305054] = 24, + [304551] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11933), 1, + ACTIONS(11926), 1, anon_sym_STAR, - ACTIONS(13607), 1, + ACTIONS(13582), 1, anon_sym_TILDE, - ACTIONS(13613), 1, + ACTIONS(13588), 1, anon_sym_operator, - ACTIONS(13766), 1, + ACTIONS(13746), 1, sym_identifier, - ACTIONS(13768), 1, + ACTIONS(13748), 1, anon_sym_COLON_COLON, - ACTIONS(13770), 1, + ACTIONS(13750), 1, anon_sym_template, - STATE(2550), 1, + STATE(2452), 1, sym_template_type, - STATE(2551), 1, + STATE(2453), 1, sym_dependent_type_identifier, - STATE(2625), 1, + STATE(2594), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5836), 1, - sym_pointer_type_declarator, - STATE(5841), 1, - sym_template_function, - STATE(5845), 1, + STATE(5540), 1, sym_destructor_name, - STATE(5849), 1, + STATE(5569), 1, sym_dependent_identifier, - STATE(5861), 1, + STATE(5678), 1, sym_qualified_identifier, - STATE(5871), 1, + STATE(5707), 1, + sym_template_function, + STATE(5713), 1, sym_operator_name, - STATE(7976), 1, + STATE(5715), 1, + sym_pointer_type_declarator, + STATE(7965), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11053), 1, + STATE(10861), 1, sym_ms_based_modifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [305129] = 18, + [304626] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5922), 1, + anon_sym_RBRACK, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13772), 1, - anon_sym_RBRACK, - STATE(3808), 1, + ACTIONS(13562), 1, + sym_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305192] = 18, + [304689] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + STATE(8579), 1, + sym_trailing_return_type, + STATE(8606), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [304752] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13774), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13752), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305255] = 18, + [304815] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13776), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13754), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305318] = 18, + [304878] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13756), 1, + anon_sym_LBRACK_LBRACK, + STATE(7970), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9039), 5, + anon_sym_LPAREN2, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_LBRACK_COLON, + ACTIONS(2471), 17, + anon_sym_virtual, + anon_sym_COLON, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_private, + anon_sym_template, + anon_sym_public, + anon_sym_protected, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [304915] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + ACTIONS(12303), 1, + anon_sym___attribute__, + ACTIONS(12306), 1, + anon_sym___attribute, + ACTIONS(13152), 1, + anon_sym_requires, + STATE(8519), 1, + sym_trailing_return_type, + STATE(8649), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [304978] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13778), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13759), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305381] = 18, + [305041] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13780), 1, + ACTIONS(13562), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(13761), 1, + anon_sym_RBRACK, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305444] = 18, + [305104] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11874), 1, + anon_sym_STAR, + ACTIONS(13530), 1, + sym_identifier, + ACTIONS(13532), 1, + anon_sym_TILDE, + ACTIONS(13538), 1, + anon_sym_operator, + ACTIONS(13763), 1, + anon_sym_COLON_COLON, + ACTIONS(13765), 1, anon_sym_template, - ACTIONS(5164), 1, + STATE(3490), 1, + sym_template_type, + STATE(3509), 1, + sym_dependent_type_identifier, + STATE(3592), 1, + sym_qualified_type_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3941), 1, + sym_pointer_type_declarator, + STATE(3942), 1, + sym_template_function, + STATE(3943), 1, + sym_destructor_name, + STATE(3944), 1, + sym_dependent_identifier, + STATE(3945), 1, + sym_qualified_identifier, + STATE(3946), 1, + sym_operator_name, + STATE(7974), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(11034), 1, + sym_ms_based_modifier, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [305179] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(8404), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + ACTIONS(13226), 1, + anon_sym___attribute__, + ACTIONS(13229), 1, + anon_sym___attribute, + STATE(8502), 1, + sym_trailing_return_type, + STATE(8616), 1, + sym__function_attributes_end, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + [305242] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13782), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13767), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305507] = 18, + [305305] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13784), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13769), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305570] = 18, + [305368] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5930), 1, + ACTIONS(5924), 1, anon_sym_EQ, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13547), 1, + ACTIONS(13556), 1, anon_sym_AMP, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13553), 1, + ACTIONS(13560), 1, sym_this, - ACTIONS(13786), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13771), 1, anon_sym_RBRACK, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10396), 1, + STATE(10558), 1, sym_lambda_default_capture, - STATE(9680), 5, + STATE(10192), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305633] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(8424), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(13242), 1, - anon_sym___attribute__, - ACTIONS(13245), 1, - anon_sym___attribute, - ACTIONS(13536), 1, - anon_sym_requires, - STATE(8609), 1, - sym__function_attributes_end, - STATE(8735), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(13396), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 3, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_GT2, - [305696] = 21, + [305431] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10224), 1, - anon_sym_COLON_COLON, - ACTIONS(11896), 1, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(13788), 1, + ACTIONS(13532), 1, + anon_sym_TILDE, + ACTIONS(13538), 1, + anon_sym_operator, + ACTIONS(13630), 1, sym_identifier, - ACTIONS(13790), 1, + ACTIONS(13634), 1, anon_sym_template, - STATE(3808), 1, + ACTIONS(13773), 1, + anon_sym_COLON_COLON, + STATE(2095), 1, + sym_template_type, + STATE(2096), 1, + sym_dependent_type_identifier, + STATE(2121), 1, + sym_qualified_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3957), 1, + STATE(3941), 1, sym_pointer_type_declarator, - STATE(3972), 1, + STATE(3942), 1, + sym_template_function, + STATE(3943), 1, sym_destructor_name, - STATE(3975), 1, + STATE(3944), 1, + sym_dependent_identifier, + STATE(3945), 1, sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, + STATE(3946), 1, sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7986), 1, + STATE(7979), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11156), 1, + STATE(11034), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [305764] = 5, + [305506] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(13792), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13777), 1, + anon_sym_SEMI, + ACTIONS(13779), 1, + anon_sym_COLON, + ACTIONS(13781), 1, + anon_sym_LBRACE, + ACTIONS(13783), 1, + anon_sym_LBRACK, + ACTIONS(13785), 1, + anon_sym_EQ, + ACTIONS(13787), 1, + anon_sym_try, + STATE(2877), 1, + sym_compound_statement, + STATE(2882), 1, + sym_default_method_clause, + STATE(2883), 1, + sym_delete_method_clause, + STATE(2885), 1, + sym_pure_virtual_clause, + STATE(2893), 1, + sym_try_statement, + STATE(4367), 1, + sym_parameter_list, + STATE(8853), 1, + sym__function_declarator_seq, + STATE(9163), 1, + sym_bitfield_clause, + STATE(9165), 1, + sym_initializer_list, + STATE(9173), 1, + aux_sym_field_declaration_repeat1, + STATE(11108), 1, + sym_attribute_specifier, + STATE(8696), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [305580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13789), 1, anon_sym_LBRACK_LBRACK, - STATE(7987), 2, + STATE(7981), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(2461), 3, + ACTIONS(2471), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9075), 18, + ACTIONS(9039), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -705637,535 +705062,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [305800] = 24, + [305616] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(12059), 1, + sym_identifier, + ACTIONS(12061), 1, + anon_sym_STAR, + ACTIONS(12063), 1, + anon_sym_AMP_AMP, + ACTIONS(12065), 1, + anon_sym_AMP, + STATE(8464), 1, + sym_ms_call_modifier, + STATE(9024), 1, + sym__field_declarator, + STATE(9170), 1, + sym_operator_name, + STATE(11185), 1, + sym_ms_based_modifier, + ACTIONS(2240), 6, + anon_sym___cdecl, + anon_sym___clrcall, + anon_sym___stdcall, + anon_sym___fastcall, + anon_sym___thiscall, + anon_sym___vectorcall, + STATE(8836), 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, + [305670] = 24, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13797), 1, - anon_sym_SEMI, - ACTIONS(13799), 1, + ACTIONS(13779), 1, anon_sym_COLON, - ACTIONS(13801), 1, - anon_sym_LBRACE, - ACTIONS(13803), 1, + ACTIONS(13783), 1, anon_sym_LBRACK, - ACTIONS(13805), 1, + ACTIONS(13792), 1, + anon_sym_SEMI, + ACTIONS(13794), 1, + anon_sym_LBRACE, + ACTIONS(13796), 1, anon_sym_EQ, - ACTIONS(13807), 1, + ACTIONS(13798), 1, anon_sym_try, - STATE(3359), 1, + STATE(3312), 1, sym_compound_statement, - STATE(3360), 1, + STATE(3318), 1, sym_default_method_clause, - STATE(3361), 1, + STATE(3339), 1, sym_delete_method_clause, - STATE(3362), 1, + STATE(3372), 1, sym_pure_virtual_clause, - STATE(3363), 1, + STATE(3380), 1, sym_try_statement, - STATE(4334), 1, + STATE(4367), 1, sym_parameter_list, - STATE(8856), 1, + STATE(8853), 1, sym__function_declarator_seq, - STATE(9176), 1, + STATE(9202), 1, sym_bitfield_clause, - STATE(9177), 1, + STATE(9203), 1, sym_initializer_list, - STATE(9185), 1, + STATE(9224), 1, aux_sym_field_declaration_repeat1, - STATE(11032), 1, + STATE(11312), 1, sym_attribute_specifier, - STATE(8678), 2, + STATE(8696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [305874] = 18, + [305744] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13149), 1, - anon_sym_requires, - STATE(8845), 1, - sym__function_attributes_end, - STATE(8972), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7791), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - [305936] = 21, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8774), 1, + anon_sym_COLON_COLON, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(13526), 1, + sym_identifier, + ACTIONS(13528), 1, + anon_sym_template, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3969), 1, + sym_pointer_type_declarator, + STATE(3970), 1, + sym_template_function, + STATE(3972), 1, + sym_destructor_name, + STATE(3973), 1, + sym_dependent_identifier, + STATE(3974), 1, + sym_qualified_identifier, + STATE(3976), 1, + sym_operator_name, + STATE(7984), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(11150), 1, + sym_ms_based_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [305812] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8554), 1, + ACTIONS(8561), 1, anon_sym_COLON_COLON, - ACTIONS(11860), 1, + ACTIONS(11898), 1, anon_sym_STAR, - ACTIONS(13809), 1, + ACTIONS(13800), 1, sym_identifier, - ACTIONS(13811), 1, + ACTIONS(13802), 1, anon_sym_template, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7990), 1, + STATE(7985), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8546), 1, - sym_pointer_type_declarator, - STATE(8547), 1, - sym_template_function, - STATE(8554), 1, + STATE(8504), 1, sym_destructor_name, - STATE(8557), 1, + STATE(8508), 1, + sym_dependent_identifier, + STATE(8512), 1, sym_qualified_identifier, - STATE(8558), 1, + STATE(8514), 1, sym_operator_name, - STATE(8602), 1, - sym_dependent_identifier, - STATE(11686), 1, + STATE(8560), 1, + sym_pointer_type_declarator, + STATE(8570), 1, + sym_template_function, + STATE(11001), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [306004] = 18, + [305880] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, - anon_sym___asm, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13205), 1, - anon_sym_requires, - STATE(8853), 1, - sym__function_attributes_end, - STATE(8949), 1, - sym_trailing_return_type, - STATE(9124), 1, - sym_gnu_asm_expression, - ACTIONS(6538), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(7966), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(7923), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8043), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - [306066] = 14, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(13804), 1, + sym_identifier, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(13808), 1, + anon_sym_template, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3969), 1, + sym_pointer_type_declarator, + STATE(3970), 1, + sym_template_function, + STATE(3972), 1, + sym_destructor_name, + STATE(3973), 1, + sym_dependent_identifier, + STATE(3974), 1, + sym_qualified_identifier, + STATE(3976), 1, + sym_operator_name, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(11150), 1, + sym_ms_based_modifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [305948] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11995), 1, - sym_identifier, - ACTIONS(11997), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3442), 1, + anon_sym_TILDE, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11999), 1, - anon_sym_AMP_AMP, - ACTIONS(12001), 1, - anon_sym_AMP, - STATE(8457), 1, - sym_ms_call_modifier, - STATE(9029), 1, - sym__field_declarator, - STATE(9236), 1, + ACTIONS(13558), 1, + anon_sym_COLON_COLON, + ACTIONS(13810), 1, + sym_identifier, + ACTIONS(13812), 1, + anon_sym_template, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3969), 1, + sym_pointer_type_declarator, + STATE(3970), 1, + sym_template_function, + STATE(3972), 1, + sym_destructor_name, + STATE(3973), 1, + sym_dependent_identifier, + STATE(3974), 1, + sym_qualified_identifier, + STATE(3976), 1, sym_operator_name, - STATE(11191), 1, + STATE(7987), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(2242), 6, - anon_sym___cdecl, - anon_sym___clrcall, - anon_sym___stdcall, - anon_sym___fastcall, - anon_sym___thiscall, - anon_sym___vectorcall, - STATE(8839), 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, - [306120] = 21, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [306016] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3444), 1, + ACTIONS(3442), 1, anon_sym_TILDE, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8675), 1, + ACTIONS(10211), 1, anon_sym_COLON_COLON, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(13539), 1, + ACTIONS(13814), 1, sym_identifier, - ACTIONS(13541), 1, + ACTIONS(13816), 1, anon_sym_template, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3957), 1, + STATE(3969), 1, sym_pointer_type_declarator, + STATE(3970), 1, + sym_template_function, STATE(3972), 1, sym_destructor_name, - STATE(3975), 1, + STATE(3973), 1, + sym_dependent_identifier, + STATE(3974), 1, sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, + STATE(3976), 1, sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7993), 1, + STATE(7988), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [306188] = 18, + [306084] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13779), 1, + anon_sym_COLON, + ACTIONS(13783), 1, + anon_sym_LBRACK, + ACTIONS(13818), 1, + anon_sym_SEMI, + ACTIONS(13820), 1, + anon_sym_LBRACE, + ACTIONS(13822), 1, + anon_sym_EQ, + ACTIONS(13824), 1, + anon_sym_try, + STATE(3311), 1, + sym_default_method_clause, + STATE(3362), 1, + sym_compound_statement, + STATE(3434), 1, + sym_delete_method_clause, + STATE(3442), 1, + sym_pure_virtual_clause, + STATE(3464), 1, + sym_try_statement, + STATE(4367), 1, + sym_parameter_list, + STATE(8853), 1, + sym__function_declarator_seq, + STATE(9207), 1, + sym_bitfield_clause, + STATE(9208), 1, + sym_initializer_list, + STATE(9209), 1, + aux_sym_field_declaration_repeat1, + STATE(11204), 1, + sym_attribute_specifier, + STATE(8696), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [306158] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6497), 1, + ACTIONS(6487), 1, anon_sym___asm, - ACTIONS(8424), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - ACTIONS(10582), 1, + ACTIONS(10575), 1, anon_sym___attribute__, - ACTIONS(10584), 1, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(13399), 1, + ACTIONS(13152), 1, anon_sym_requires, - STATE(8843), 1, + STATE(8833), 1, sym__function_attributes_end, - STATE(8950), 1, + STATE(8969), 1, sym_trailing_return_type, - STATE(9124), 1, + STATE(9081), 1, sym_gnu_asm_expression, - ACTIONS(6538), 2, + ACTIONS(6520), 2, anon_sym_asm, anon_sym___asm__, - ACTIONS(8422), 2, + ACTIONS(7874), 2, anon_sym_LPAREN2, anon_sym_LBRACE, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(7923), 2, + STATE(7931), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(8043), 2, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - [306250] = 24, + [306220] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(13220), 1, + anon_sym_requires, + STATE(8838), 1, + sym__function_attributes_end, + STATE(8953), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(7970), 2, anon_sym_LPAREN2, - ACTIONS(13799), 1, - anon_sym_COLON, - ACTIONS(13803), 1, - anon_sym_LBRACK, - ACTIONS(13813), 1, - anon_sym_SEMI, - ACTIONS(13815), 1, anon_sym_LBRACE, - ACTIONS(13817), 1, - anon_sym_EQ, - ACTIONS(13819), 1, - anon_sym_try, - STATE(3279), 1, - sym_compound_statement, - STATE(3280), 1, - sym_default_method_clause, - STATE(3281), 1, - sym_delete_method_clause, - STATE(3282), 1, - sym_pure_virtual_clause, - STATE(3283), 1, - sym_try_statement, - STATE(4334), 1, - sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(9174), 1, - sym_bitfield_clause, - STATE(9238), 1, - sym_initializer_list, - STATE(9242), 1, - aux_sym_field_declaration_repeat1, - STATE(10776), 1, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, sym_attribute_specifier, - STATE(8678), 2, + aux_sym_type_definition_repeat1, + STATE(7997), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [306324] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(13821), 1, - sym_identifier, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(13825), 1, - anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3957), 1, - sym_pointer_type_declarator, - STATE(3972), 1, - sym_destructor_name, - STATE(3975), 1, - sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, - sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(11156), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [306392] = 24, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + [306282] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(6487), 1, + anon_sym___asm, + ACTIONS(8404), 1, + anon_sym_LBRACK, + ACTIONS(10575), 1, + anon_sym___attribute__, + ACTIONS(10577), 1, anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(13386), 1, + anon_sym_requires, + STATE(8851), 1, + sym__function_attributes_end, + STATE(8959), 1, + sym_trailing_return_type, + STATE(9081), 1, + sym_gnu_asm_expression, + ACTIONS(6520), 2, + anon_sym_asm, + anon_sym___asm__, + ACTIONS(8402), 2, anon_sym_LPAREN2, - ACTIONS(13799), 1, - anon_sym_COLON, - ACTIONS(13803), 1, + anon_sym_LBRACE, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(7931), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(7997), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + [306344] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13829), 1, + anon_sym_requires, + ACTIONS(13826), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8987), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(13827), 1, + anon_sym___asm, + ACTIONS(8989), 13, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, - ACTIONS(13829), 1, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - ACTIONS(13831), 1, anon_sym_EQ, - ACTIONS(13833), 1, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - STATE(2862), 1, + [306383] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13832), 1, + anon_sym_LBRACE, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(13838), 1, + anon_sym_requires, + STATE(6660), 1, sym_compound_statement, - STATE(2864), 1, - sym_default_method_clause, - STATE(2865), 1, - sym_delete_method_clause, - STATE(2866), 1, - sym_pure_virtual_clause, - STATE(2868), 1, - sym_try_statement, - STATE(4334), 1, + STATE(8098), 1, + sym_requires_clause, + STATE(8321), 1, sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(9181), 1, - aux_sym_field_declaration_repeat1, - STATE(9225), 1, - sym_bitfield_clause, - STATE(9248), 1, - sym_initializer_list, - STATE(10716), 1, - sym_attribute_specifier, - STATE(8678), 2, + STATE(10430), 1, + sym_lambda_declarator, + STATE(11651), 1, + sym_trailing_return_type, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [306466] = 21, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3444), 1, - anon_sym_TILDE, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(13549), 1, - anon_sym_COLON_COLON, - ACTIONS(13835), 1, - sym_identifier, - ACTIONS(13837), 1, - anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3957), 1, - sym_pointer_type_declarator, - STATE(3972), 1, - sym_destructor_name, - STATE(3975), 1, - sym_qualified_identifier, - STATE(3996), 1, - sym_template_function, - STATE(4016), 1, - sym_operator_name, - STATE(4018), 1, - sym_dependent_identifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(11156), 1, - sym_ms_based_modifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [306534] = 7, + ACTIONS(13840), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(13842), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9293), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9295), 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, + [306477] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 1, + ACTIONS(10411), 1, anon_sym_requires, - ACTIONS(8160), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8319), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 3, + ACTIONS(7876), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7966), 13, + ACTIONS(7874), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -706179,126 +705705,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [306573] = 3, + [306516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 3, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + STATE(7981), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(8854), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8887), 20, + ACTIONS(8856), 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_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, - [306604] = 17, + [306551] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13839), 1, - anon_sym_LBRACE, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - STATE(5061), 1, + ACTIONS(13844), 1, + anon_sym_LBRACE, + STATE(5216), 1, sym_compound_statement, - STATE(8027), 1, + STATE(8000), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10264), 1, + STATE(10243), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [306663] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - ACTIONS(13845), 1, - anon_sym_virtual, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8534), 1, - sym_access_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(8019), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10029), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13847), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [306722] = 3, + [306610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 3, + ACTIONS(9011), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8911), 20, + ACTIONS(9013), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -706319,55 +705805,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306753] = 11, + [306641] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(11172), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(11186), 1, - anon_sym_LBRACK, - ACTIONS(11745), 1, - anon_sym_STAR, - ACTIONS(11747), 1, - anon_sym_AMP_AMP, - ACTIONS(11749), 1, - anon_sym_AMP, - STATE(4613), 1, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(13838), 1, + anon_sym_requires, + ACTIONS(13844), 1, + anon_sym_LBRACE, + STATE(5082), 1, + sym_compound_statement, + STATE(8131), 1, + sym_requires_clause, + STATE(8321), 1, sym_parameter_list, - STATE(8314), 1, - sym__function_declarator_seq, - STATE(8750), 1, - sym__abstract_declarator, - STATE(8312), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9427), 10, + STATE(10345), 1, + sym_lambda_declarator, + STATE(11651), 1, + sym_trailing_return_type, + STATE(8239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9015), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9017), 20, + 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_final, anon_sym_override, + anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306800] = 5, + [306731] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6578), 1, + anon_sym_LT, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(13846), 1, + anon_sym_LBRACE, + STATE(4965), 1, + sym_compound_statement, + STATE(8030), 1, + sym_template_parameter_list, + STATE(8321), 1, + sym_parameter_list, + STATE(10533), 1, + sym_lambda_declarator, + STATE(11651), 1, + sym_trailing_return_type, + STATE(8239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [306790] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - STATE(7987), 2, + STATE(7981), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(8833), 3, + ACTIONS(8870), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8835), 17, + ACTIONS(8872), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -706385,305 +705947,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [306835] = 3, + [306825] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9921), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7972), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7970), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_STAR, + anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(9919), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [306866] = 17, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [306864] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13849), 1, - anon_sym_LBRACE, - ACTIONS(13851), 1, + ACTIONS(13838), 1, anon_sym_requires, - STATE(5555), 1, + ACTIONS(13848), 1, + anon_sym_LBRACE, + STATE(5088), 1, sym_compound_statement, - STATE(8091), 1, + STATE(8086), 1, sym_requires_clause, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10520), 1, + STATE(10226), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [306925] = 17, + [306923] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13853), 1, + ACTIONS(13850), 1, anon_sym_LBRACE, - STATE(3009), 1, + STATE(2969), 1, sym_compound_statement, - STATE(8011), 1, + STATE(8007), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10337), 1, + STATE(10589), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [306984] = 17, + [306982] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13855), 1, + ACTIONS(13838), 1, + anon_sym_requires, + ACTIONS(13850), 1, anon_sym_LBRACE, - STATE(6651), 1, + STATE(3001), 1, sym_compound_statement, - STATE(8014), 1, - sym_template_parameter_list, - STATE(8263), 1, + STATE(8087), 1, + sym_requires_clause, + STATE(8321), 1, sym_parameter_list, - STATE(10250), 1, + STATE(10256), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307043] = 17, + [307041] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13421), 1, + ACTIONS(13403), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(13407), 1, anon_sym_COLON_COLON, - ACTIONS(13857), 1, + ACTIONS(13852), 1, anon_sym_virtual, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8536), 1, + STATE(8547), 1, sym_access_specifier, - STATE(8762), 1, + STATE(8729), 1, sym__scope_resolution, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(8021), 2, + STATE(8034), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9603), 2, + STATE(9636), 2, sym__class_name, sym_qualified_type_identifier, - ACTIONS(13847), 3, + ACTIONS(13854), 3, anon_sym_private, anon_sym_public, anon_sym_protected, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [307102] = 17, + [307100] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(11171), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13851), 1, - anon_sym_requires, - ACTIONS(13853), 1, - anon_sym_LBRACE, - STATE(2983), 1, - sym_compound_statement, - STATE(8140), 1, - sym_requires_clause, - STATE(8263), 1, + ACTIONS(11185), 1, + anon_sym_LBRACK, + ACTIONS(11737), 1, + anon_sym_STAR, + ACTIONS(11739), 1, + anon_sym_AMP_AMP, + ACTIONS(11741), 1, + anon_sym_AMP, + STATE(4608), 1, sym_parameter_list, - STATE(10378), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [307161] = 17, + STATE(8341), 1, + sym__function_declarator_seq, + STATE(8715), 1, + sym__abstract_declarator, + STATE(8338), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9281), 10, + anon_sym_RPAREN, + 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, + [307147] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(6578), 1, + anon_sym_LT, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, - anon_sym_requires, - ACTIONS(13859), 1, + ACTIONS(13856), 1, anon_sym_LBRACE, - STATE(4832), 1, + STATE(5063), 1, sym_compound_statement, - STATE(8077), 1, - sym_requires_clause, - STATE(8263), 1, + STATE(8012), 1, + sym_template_parameter_list, + STATE(8321), 1, sym_parameter_list, - STATE(10423), 1, + STATE(10425), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307220] = 7, + [307206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13161), 1, + ACTIONS(10411), 1, anon_sym_requires, - ACTIONS(13158), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8305), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7968), 3, + ACTIONS(8987), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7966), 13, + ACTIONS(8989), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -706697,643 +706257,309 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [307259] = 17, + [307245] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, + ACTIONS(13838), 1, anon_sym_requires, - ACTIONS(13855), 1, + ACTIONS(13856), 1, anon_sym_LBRACE, - STATE(6665), 1, + STATE(5080), 1, sym_compound_statement, - STATE(8090), 1, + STATE(8111), 1, sym_requires_clause, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10318), 1, + STATE(10475), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8954), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8956), 20, - 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [307349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8921), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8923), 20, - 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [307380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8946), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8948), 20, - 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [307411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8950), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8952), 20, - 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [307442] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - ACTIONS(13861), 1, - anon_sym_virtual, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8539), 1, - sym_access_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9763), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13847), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [307501] = 5, + [307304] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13863), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(13865), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9393), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9395), 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, + ACTIONS(12315), 1, anon_sym_requires, - [307536] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - ACTIONS(13867), 1, - anon_sym_virtual, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8508), 1, - sym_access_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9481), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13847), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [307595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8704), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8706), 20, - 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, + ACTIONS(12312), 2, anon_sym_final, anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [307626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8942), 3, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7876), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8944), 20, + ACTIONS(7874), 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_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [307657] = 17, + [307343] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13869), 1, + ACTIONS(13858), 1, anon_sym_LBRACE, - STATE(5139), 1, - sym_compound_statement, - STATE(8028), 1, + STATE(8015), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(8027), 1, + sym_compound_statement, + STATE(8321), 1, sym_parameter_list, - STATE(10460), 1, + STATE(10575), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3163), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3161), 20, - 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [307747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3155), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(3153), 20, - 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [307778] = 17, + [307402] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13839), 1, - anon_sym_LBRACE, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, + ACTIONS(13838), 1, anon_sym_requires, - STATE(5092), 1, + ACTIONS(13858), 1, + anon_sym_LBRACE, + STATE(8042), 1, sym_compound_statement, - STATE(8148), 1, + STATE(8117), 1, sym_requires_clause, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10541), 1, + STATE(10433), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307837] = 17, + [307461] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(6578), 1, + anon_sym_LT, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, - anon_sym_requires, - ACTIONS(13869), 1, - anon_sym_LBRACE, - STATE(5161), 1, + STATE(5211), 1, sym_compound_statement, - STATE(8101), 1, - sym_requires_clause, - STATE(8263), 1, + STATE(8017), 1, + sym_template_parameter_list, + STATE(8321), 1, sym_parameter_list, - STATE(10504), 1, + STATE(10375), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307896] = 17, + [307520] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, + ACTIONS(13838), 1, anon_sym_requires, - ACTIONS(13871), 1, - anon_sym_LBRACE, - STATE(6453), 1, + STATE(5088), 1, sym_compound_statement, - STATE(8079), 1, + STATE(8126), 1, sym_requires_clause, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10430), 1, + STATE(10225), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [307955] = 17, + [307579] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13873), 1, + ACTIONS(13860), 1, anon_sym_LBRACE, - STATE(3595), 1, - sym_compound_statement, - STATE(8062), 1, + STATE(8020), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10615), 1, + STATE(8383), 1, + sym_compound_statement, + STATE(10490), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8992), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8994), 20, - 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [308045] = 7, + [307638] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 1, + ACTIONS(13144), 1, anon_sym_requires, - ACTIONS(8160), 2, + ACTIONS(13141), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(8317), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8905), 3, + ACTIONS(7972), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8907), 13, + ACTIONS(7970), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707347,49 +706573,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308084] = 3, + [307677] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9013), 20, - 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, + ACTIONS(8286), 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_GT2, - anon_sym_try, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(13838), 1, anon_sym_requires, - [308115] = 4, + ACTIONS(13860), 1, + anon_sym_LBRACE, + STATE(8132), 1, + sym_requires_clause, + STATE(8321), 1, + sym_parameter_list, + STATE(8406), 1, + sym_compound_statement, + STATE(10204), 1, + sym_lambda_declarator, + STATE(11651), 1, + sym_trailing_return_type, + STATE(8239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13865), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9322), 3, + ACTIONS(8905), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9324), 18, + ACTIONS(8907), 20, 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, @@ -707397,6 +706635,7 @@ 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, @@ -707404,25 +706643,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308148] = 7, + [307767] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13254), 1, + ACTIONS(13238), 1, anon_sym_requires, - ACTIONS(13251), 2, + ACTIONS(13235), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(8267), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8424), 3, + ACTIONS(8404), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8422), 13, + ACTIONS(8402), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707436,81 +706675,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308187] = 3, + [307806] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 3, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8274), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8997), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8994), 20, + ACTIONS(8999), 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_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [308218] = 3, + [307845] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8994), 20, - 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, + ACTIONS(6578), 1, + anon_sym_LT, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(13862), 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_GT2, - anon_sym_try, - anon_sym_requires, - [308249] = 7, + STATE(6440), 1, + sym_compound_statement, + STATE(8046), 1, + sym_template_parameter_list, + STATE(8321), 1, + sym_parameter_list, + STATE(10565), 1, + sym_lambda_declarator, + STATE(11651), 1, + sym_trailing_return_type, + STATE(8239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [307904] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 1, + ACTIONS(13867), 1, anon_sym_requires, - ACTIONS(8160), 2, + ACTIONS(13864), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(8274), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7789), 3, + ACTIONS(8997), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7791), 13, + ACTIONS(8999), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707524,56 +706781,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [308288] = 17, + [307943] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13875), 1, + ACTIONS(13870), 1, anon_sym_LBRACE, - STATE(8015), 1, + STATE(3655), 1, sym_compound_statement, - STATE(8044), 1, + STATE(8035), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10614), 1, + STATE(10248), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308347] = 3, + [308002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 3, + ACTIONS(8915), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8998), 20, + ACTIONS(8917), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707594,328 +706851,434 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308378] = 17, + [308033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13859), 1, + ACTIONS(9870), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, anon_sym_LBRACE, - STATE(4877), 1, - sym_compound_statement, - STATE(8012), 1, - sym_template_parameter_list, - STATE(8263), 1, - sym_parameter_list, - STATE(10492), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, + anon_sym_LBRACK_COLON, + ACTIONS(9868), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [308064] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + ACTIONS(13872), 1, + anon_sym_virtual, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8584), 1, + sym_access_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8036), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [308437] = 17, + STATE(9879), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13854), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [308123] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13849), 1, + ACTIONS(13838), 1, + anon_sym_requires, + ACTIONS(13846), 1, anon_sym_LBRACE, - STATE(5686), 1, + STATE(4766), 1, sym_compound_statement, - STATE(8007), 1, - sym_template_parameter_list, - STATE(8263), 1, + STATE(8123), 1, + sym_requires_clause, + STATE(8321), 1, sym_parameter_list, - STATE(10443), 1, + STATE(10584), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308496] = 5, + [308182] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8923), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8925), 20, + 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_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(8923), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8925), 20, + 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, - STATE(7987), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(8837), 3, + 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_GT2, + anon_sym_try, + anon_sym_requires, + [308244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8923), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8839), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(8925), 20, 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, - [308531] = 17, + [308275] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + ACTIONS(13874), 1, + anon_sym_virtual, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8566), 1, + sym_access_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7970), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9481), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13854), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [308334] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, + ACTIONS(13838), 1, anon_sym_requires, - ACTIONS(13875), 1, + ACTIONS(13870), 1, anon_sym_LBRACE, - STATE(8016), 1, + STATE(3682), 1, sym_compound_statement, - STATE(8117), 1, + STATE(8119), 1, sym_requires_clause, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10393), 1, + STATE(10619), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308590] = 17, + [308393] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13877), 1, - anon_sym_LBRACE, - STATE(5146), 1, - sym_compound_statement, - STATE(8053), 1, - sym_template_parameter_list, - STATE(8263), 1, - sym_parameter_list, - STATE(10525), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + ACTIONS(13876), 1, + anon_sym_virtual, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8593), 1, + sym_access_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [308649] = 7, + STATE(10194), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13854), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [308452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13882), 1, - anon_sym_requires, - ACTIONS(13879), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8905), 3, + ACTIONS(8929), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8907), 13, + ACTIONS(8931), 20, 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_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [308688] = 17, + anon_sym_requires, + [308483] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13871), 1, + ACTIONS(13848), 1, anon_sym_LBRACE, - STATE(6430), 1, + STATE(5211), 1, sym_compound_statement, - STATE(8029), 1, + STATE(8005), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10295), 1, + STATE(10496), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308747] = 17, + [308542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(8933), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8935), 20, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13851), 1, - anon_sym_requires, - ACTIONS(13885), 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(8115), 1, - sym_requires_clause, - STATE(8263), 1, - sym_parameter_list, - STATE(8418), 1, - sym_compound_statement, - STATE(10240), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [308806] = 3, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 3, + ACTIONS(8957), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9002), 20, + ACTIONS(8959), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -707936,241 +707299,257 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [308837] = 7, + [308604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13890), 1, - anon_sym_requires, - ACTIONS(13887), 2, + ACTIONS(3168), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(3166), 20, + 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_final, anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8301), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8937), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8915), 13, + ACTIONS(8939), 20, 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_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [308876] = 7, + anon_sym_requires, + [308666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(8160), 2, + ACTIONS(8941), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8943), 20, + 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_final, anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8301), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8913), 3, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [308697] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3157), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8915), 13, + ACTIONS(3155), 20, 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_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [308915] = 17, + anon_sym_requires, + [308728] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - STATE(5061), 1, + ACTIONS(13878), 1, + anon_sym_LBRACE, + STATE(5709), 1, sym_compound_statement, - STATE(8055), 1, + STATE(8047), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10595), 1, + STATE(10369), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [308974] = 17, + [308787] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, + ACTIONS(13838), 1, anon_sym_requires, - ACTIONS(13877), 1, + ACTIONS(13862), 1, anon_sym_LBRACE, - STATE(5183), 1, + STATE(6458), 1, sym_compound_statement, - STATE(8147), 1, + STATE(8124), 1, sym_requires_clause, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10209), 1, + STATE(10483), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [309033] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12418), 1, - anon_sym_requires, - ACTIONS(12415), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7789), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7791), 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, - [309072] = 17, + [308846] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13851), 1, + ACTIONS(13838), 1, anon_sym_requires, - STATE(5092), 1, + ACTIONS(13878), 1, + anon_sym_LBRACE, + STATE(5656), 1, sym_compound_statement, - STATE(8134), 1, + STATE(8071), 1, sym_requires_clause, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10329), 1, + STATE(10251), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [309131] = 5, + [308905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - STATE(7987), 2, + STATE(7981), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9071), 3, + ACTIONS(9035), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9073), 17, + ACTIONS(9037), 17, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -708188,25 +707567,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [309166] = 7, + [308940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8297), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8424), 3, + ACTIONS(8820), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8422), 13, + ACTIONS(8822), 20, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708218,44 +707587,82 @@ 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, - [309205] = 3, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [308971] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 3, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8267), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8404), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8895), 20, + ACTIONS(8402), 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_EQ, - anon_sym_or, - anon_sym_and, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [309236] = 3, + [309010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9820), 9, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(9818), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [309041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 3, + ACTIONS(8961), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8903), 20, + ACTIONS(8963), 20, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708276,251 +707683,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [309267] = 17, + [309072] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13885), 1, + ACTIONS(13832), 1, anon_sym_LBRACE, - STATE(8048), 1, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + STATE(6643), 1, + sym_compound_statement, + STATE(7994), 1, sym_template_parameter_list, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(8378), 1, - sym_compound_statement, - STATE(10585), 1, + STATE(10290), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [309326] = 3, + [309131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9738), 9, - anon_sym_DOT_DOT_DOT, + ACTIONS(8953), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8955), 20, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_STAR, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(9736), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [309357] = 17, + anon_sym_EQ, + anon_sym_or, + anon_sym_and, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [309162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13842), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9329), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9331), 18, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13851), 1, - anon_sym_requires, - ACTIONS(13873), 1, + anon_sym_PIPE_PIPE, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - STATE(3670), 1, - sym_compound_statement, - STATE(8129), 1, - sym_requires_clause, - STATE(8263), 1, - sym_parameter_list, - STATE(10385), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [309416] = 9, + 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, + [309195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(12418), 1, - anon_sym_requires, - STATE(8013), 1, - sym_trailing_return_type, - ACTIONS(7789), 2, + ACTIONS(8965), 3, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(12415), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 11, + anon_sym___asm, + ACTIONS(8967), 20, 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_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [309458] = 15, + anon_sym_requires, + [309226] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(5916), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + ACTIONS(13554), 1, anon_sym_STAR, - ACTIONS(13549), 1, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(13893), 1, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13880), 1, anon_sym_AMP, - ACTIONS(13895), 1, + ACTIONS(13882), 1, sym_this, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10184), 5, + STATE(10171), 5, sym__lambda_capture_identifier, sym_lambda_capture_initializer, sym__lambda_capture, sym_identifier_parameter_pack_expansion, sym_qualified_identifier, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [309512] = 15, + [309280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5922), 1, + ACTIONS(9765), 8, anon_sym_DOT_DOT_DOT, - ACTIONS(13543), 1, - sym_identifier, - ACTIONS(13545), 1, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_STAR, - ACTIONS(13549), 1, anon_sym_COLON_COLON, - ACTIONS(13893), 1, - anon_sym_AMP, - ACTIONS(13897), 1, - sym_this, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10562), 5, - sym__lambda_capture_identifier, - sym_lambda_capture_initializer, - sym__lambda_capture, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [309566] = 9, + anon_sym_RBRACK_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(9763), 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, + anon_sym_typename, + sym_identifier, + sym_auto, + anon_sym_decltype, + anon_sym_template, + [309310] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10385), 1, anon_sym_DASH_GT, - ACTIONS(13161), 1, + ACTIONS(10411), 1, anon_sym_requires, - STATE(8035), 1, + STATE(8004), 1, sym_trailing_return_type, - ACTIONS(7968), 2, + ACTIONS(7876), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(13158), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8319), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 11, + ACTIONS(7874), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708532,28 +707909,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309608] = 9, + [309352] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10385), 1, anon_sym_DASH_GT, - ACTIONS(13254), 1, + ACTIONS(10411), 1, anon_sym_requires, - STATE(8046), 1, + STATE(8050), 1, sym_trailing_return_type, - ACTIONS(8424), 2, + ACTIONS(7972), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(13251), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(8317), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 11, + ACTIONS(7970), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708565,28 +707942,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309650] = 9, + [309394] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10385), 1, anon_sym_DASH_GT, - ACTIONS(13882), 1, + ACTIONS(10411), 1, anon_sym_requires, - STATE(8050), 1, + STATE(8011), 1, sym_trailing_return_type, - ACTIONS(8905), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(13879), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + ACTIONS(8404), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(8267), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 11, + ACTIONS(8402), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708598,28 +707975,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309692] = 9, + [309436] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10385), 1, anon_sym_DASH_GT, - ACTIONS(10382), 1, + ACTIONS(10411), 1, anon_sym_requires, - STATE(8057), 1, + STATE(8023), 1, sym_trailing_return_type, - ACTIONS(7968), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(8160), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + ACTIONS(8987), 2, + anon_sym___attribute, + anon_sym_LBRACK, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8305), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 11, + ACTIONS(8989), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708631,28 +708008,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309734] = 9, + [309478] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10385), 1, anon_sym_DASH_GT, - ACTIONS(10382), 1, + ACTIONS(12315), 1, anon_sym_requires, - STATE(8032), 1, + STATE(8019), 1, sym_trailing_return_type, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8424), 2, + ACTIONS(7876), 2, anon_sym___attribute, anon_sym_LBRACK, - STATE(8114), 2, + ACTIONS(12312), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8297), 2, + STATE(8319), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 11, + ACTIONS(7874), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708664,91 +708041,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309776] = 12, + [309520] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(9429), 1, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(13144), 1, + anon_sym_requires, + STATE(8022), 1, + sym_trailing_return_type, + ACTIONS(7972), 2, anon_sym___attribute, - ACTIONS(11779), 1, - anon_sym_STAR, - ACTIONS(11781), 1, - anon_sym_AMP_AMP, - ACTIONS(11783), 1, - anon_sym_AMP, - ACTIONS(11793), 1, anon_sym_LBRACK, - STATE(4796), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8787), 1, - sym__abstract_declarator, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9427), 8, + ACTIONS(13141), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 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_final, - anon_sym_override, anon_sym_GT2, - anon_sym_requires, - [309824] = 3, + anon_sym_try, + [309562] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9806), 8, - anon_sym_DOT_DOT_DOT, + ACTIONS(10385), 1, + anon_sym_DASH_GT, + ACTIONS(13238), 1, + anon_sym_requires, + STATE(7993), 1, + sym_trailing_return_type, + ACTIONS(8404), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(13235), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8267), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 11, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_RBRACK_RBRACK, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(9804), 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, - anon_sym_typename, - sym_identifier, - sym_auto, - anon_sym_decltype, - anon_sym_template, - [309854] = 9, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [309604] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, + ACTIONS(10385), 1, anon_sym_DASH_GT, - ACTIONS(10382), 1, + ACTIONS(13829), 1, anon_sym_requires, - STATE(8051), 1, + STATE(8025), 1, sym_trailing_return_type, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8905), 2, + ACTIONS(8987), 2, anon_sym___attribute, anon_sym_LBRACK, - STATE(8114), 2, + ACTIONS(13826), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8363), 2, + STATE(8305), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 11, + ACTIONS(8989), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -708760,20 +708140,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [309896] = 5, + [309646] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13901), 1, + ACTIONS(13886), 1, anon_sym_LPAREN2, - STATE(8155), 1, + STATE(8190), 1, sym_preproc_argument_list, - ACTIONS(13903), 5, + ACTIONS(13888), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(13899), 15, + ACTIONS(13884), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -708789,1008 +708169,746 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [309930] = 9, + [309680] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10367), 1, - anon_sym_DASH_GT, - ACTIONS(10382), 1, - anon_sym_requires, - STATE(7999), 1, - sym_trailing_return_type, - ACTIONS(7789), 2, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5916), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13554), 1, + anon_sym_STAR, + ACTIONS(13558), 1, + anon_sym_COLON_COLON, + ACTIONS(13562), 1, + sym_identifier, + ACTIONS(13880), 1, + anon_sym_AMP, + ACTIONS(13890), 1, + sym_this, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7987), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10538), 5, + sym__lambda_capture_identifier, + sym_lambda_capture_initializer, + sym__lambda_capture, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [309734] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(9279), 1, anon_sym___attribute, + ACTIONS(11769), 1, + anon_sym_STAR, + ACTIONS(11771), 1, + anon_sym_AMP_AMP, + ACTIONS(11773), 1, + anon_sym_AMP, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 11, + STATE(4801), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8781), 1, + sym__abstract_declarator, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9281), 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_GT2, - anon_sym_try, - [309972] = 14, + anon_sym_requires, + [309782] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11105), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(13905), 1, + ACTIONS(13892), 1, sym_identifier, - ACTIONS(13907), 1, + ACTIONS(13894), 1, sym_primitive_type, - STATE(3126), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(7579), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8157), 1, sym_splice_specifier, - STATE(8738), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(3192), 2, + STATE(3177), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12785), 4, + ACTIONS(10897), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310023] = 15, + [309833] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13859), 1, + ACTIONS(13878), 1, anon_sym_LBRACE, - STATE(4927), 1, + STATE(5583), 1, sym_compound_statement, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10453), 1, + STATE(10412), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [310076] = 16, + [309886] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, - anon_sym_COMMA, - ACTIONS(13911), 1, - anon_sym_RPAREN, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13919), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13921), 1, - anon_sym_AMP_AMP, - ACTIONS(13923), 1, - anon_sym_PIPE, - ACTIONS(13925), 1, - anon_sym_CARET, - ACTIONS(13927), 1, - anon_sym_AMP, - STATE(9947), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(13913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13929), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13931), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13933), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [310131] = 15, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13896), 1, + sym_identifier, + ACTIONS(13898), 1, + sym_primitive_type, + STATE(2267), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8746), 1, + sym__scope_resolution, + STATE(2911), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(4191), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [309937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13900), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13871), 1, - anon_sym_LBRACE, - STATE(6465), 1, - sym_compound_statement, - STATE(8263), 1, - sym_parameter_list, - STATE(10505), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [310184] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - STATE(8032), 1, - sym_trailing_return_type, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - ACTIONS(8424), 2, + ACTIONS(8969), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8297), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 10, + ACTIONS(8971), 17, + anon_sym_DOT_DOT_DOT, 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_asm, anon_sym___asm__, - anon_sym_try, - [310225] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10592), 1, anon_sym_DASH_GT, - STATE(8051), 1, - sym_trailing_return_type, - ACTIONS(8160), 2, anon_sym_final, anon_sym_override, - ACTIONS(8905), 2, - anon_sym_LBRACK, - anon_sym___asm, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 10, - 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_GT2, anon_sym_try, - [310266] = 19, + anon_sym_requires, + [309968] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(13904), 1, anon_sym_LPAREN2, - ACTIONS(13941), 1, + ACTIONS(13906), 1, anon_sym_SEMI, - ACTIONS(13943), 1, + ACTIONS(13908), 1, anon_sym_LBRACE, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, + ACTIONS(13912), 1, anon_sym_EQ, - ACTIONS(13951), 1, + ACTIONS(13916), 1, anon_sym_try, - STATE(437), 1, + STATE(802), 1, sym_compound_statement, - STATE(438), 1, + STATE(804), 1, sym_try_statement, - STATE(4564), 1, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(9730), 1, + STATE(9729), 1, sym_gnu_asm_expression, - STATE(9731), 1, + STATE(9733), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, + STATE(10551), 2, sym_argument_list, sym_initializer_list, - [310327] = 14, + [310029] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11038), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13953), 1, + ACTIONS(13896), 1, sym_identifier, - ACTIONS(13955), 1, + ACTIONS(13898), 1, sym_primitive_type, - STATE(2153), 1, + STATE(2199), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8763), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(2226), 2, + STATE(2213), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12801), 4, + ACTIONS(12752), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310378] = 14, + [310080] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(6469), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13957), 1, + ACTIONS(13918), 1, sym_identifier, - ACTIONS(13959), 1, + ACTIONS(13920), 1, sym_primitive_type, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3824), 1, + STATE(2914), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, sym_splice_specifier, - STATE(8756), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(4741), 2, + STATE(3912), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(59), 4, + ACTIONS(4407), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310429] = 14, + [310131] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11105), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13905), 1, + ACTIONS(13896), 1, sym_identifier, - ACTIONS(13907), 1, + ACTIONS(13898), 1, sym_primitive_type, - STATE(2852), 1, + STATE(2093), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8738), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(3192), 2, + STATE(2213), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(2244), 4, + ACTIONS(4253), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310480] = 14, + [310182] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11081), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13961), 1, + ACTIONS(13922), 1, sym_identifier, - ACTIONS(13963), 1, + ACTIONS(13924), 1, sym_primitive_type, - STATE(3488), 1, + STATE(2070), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8675), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(3953), 2, + STATE(2213), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(4310), 4, + ACTIONS(4163), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310531] = 9, + [310233] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - STATE(7999), 1, - sym_trailing_return_type, - ACTIONS(7789), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8160), 2, + ACTIONS(13926), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8079), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 10, + ACTIONS(9129), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9131), 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, - [310572] = 14, + anon_sym_requires, + [310266] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11010), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(13965), 1, + ACTIONS(13929), 1, sym_identifier, - ACTIONS(13967), 1, + ACTIONS(13931), 1, sym_primitive_type, - STATE(2180), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8682), 1, - sym__scope_resolution, - STATE(2827), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(3728), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [310623] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13969), 1, - sym_identifier, - ACTIONS(13971), 1, - sym_primitive_type, - STATE(3490), 1, + STATE(3768), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8676), 1, + STATE(8722), 1, sym__scope_resolution, - STATE(4445), 2, + STATE(4496), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(4395), 4, + ACTIONS(12947), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310674] = 15, + [310317] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13855), 1, - anon_sym_LBRACE, - STATE(6681), 1, - sym_compound_statement, - STATE(8263), 1, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11799), 1, + anon_sym_STAR, + ACTIONS(11801), 1, + anon_sym_AMP_AMP, + ACTIONS(11803), 1, + anon_sym_AMP, + STATE(4690), 1, sym_parameter_list, - STATE(10375), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [310727] = 15, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8835), 1, + sym__abstract_declarator, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9281), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [310362] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13787), 1, + anon_sym_try, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13904), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13849), 1, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13912), 1, + anon_sym_EQ, + ACTIONS(13933), 1, + anon_sym_SEMI, + ACTIONS(13935), 1, anon_sym_LBRACE, - STATE(5548), 1, + STATE(2816), 1, sym_compound_statement, - STATE(8263), 1, + STATE(2826), 1, + sym_try_statement, + STATE(4614), 1, sym_parameter_list, - STATE(10322), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(9999), 1, + sym_gnu_asm_expression, + STATE(10000), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [310780] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, - anon_sym_STAR, - ACTIONS(11991), 1, - anon_sym_AMP_AMP, - ACTIONS(11993), 1, - anon_sym_AMP, - ACTIONS(13973), 1, - anon_sym_SEMI, - STATE(7988), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10680), 1, - sym_attribute_specifier, - STATE(10687), 1, - sym_ms_based_modifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8839), 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, - [310833] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, - anon_sym_STAR, - ACTIONS(11991), 1, - anon_sym_AMP_AMP, - ACTIONS(11993), 1, - anon_sym_AMP, - ACTIONS(13975), 1, - anon_sym_SEMI, - STATE(7997), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10687), 1, - sym_ms_based_modifier, - STATE(10876), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8839), 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, - [310886] = 14, + STATE(10551), 2, + sym_argument_list, + sym_initializer_list, + [310423] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11089), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(13977), 1, + ACTIONS(13937), 1, sym_identifier, - ACTIONS(13979), 1, + ACTIONS(13939), 1, sym_primitive_type, - STATE(2283), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(3785), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8157), 1, sym_splice_specifier, - STATE(8687), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(2946), 2, + STATE(4671), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(4423), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [310937] = 14, + [310474] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13172), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(13981), 1, + ACTIONS(13937), 1, sym_identifier, - ACTIONS(13983), 1, + ACTIONS(13939), 1, sym_primitive_type, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7700), 1, + STATE(3785), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8695), 1, + STATE(8667), 1, sym__scope_resolution, - STATE(4741), 2, + STATE(4671), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(13174), 4, + ACTIONS(59), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, - anon_sym_short, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [310988] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(2312), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(13985), 1, - anon_sym_SEMI, - ACTIONS(13987), 1, - anon_sym_try, - STATE(1007), 1, - sym_compound_statement, - STATE(1008), 1, - sym_try_statement, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9692), 1, - sym_gnu_asm_expression, - STATE(9729), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [311049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8889), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8891), 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, - [311078] = 14, + anon_sym_short, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [310525] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11010), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13965), 1, + ACTIONS(13918), 1, sym_identifier, - ACTIONS(13967), 1, + ACTIONS(13920), 1, sym_primitive_type, - STATE(2360), 1, + STATE(3454), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8682), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(2827), 2, + STATE(3912), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(13036), 4, + ACTIONS(13055), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311129] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, - anon_sym_STAR, - ACTIONS(11991), 1, - anon_sym_AMP_AMP, - ACTIONS(11993), 1, - anon_sym_AMP, - ACTIONS(13989), 1, - anon_sym_SEMI, - STATE(7995), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10687), 1, - sym_ms_based_modifier, - STATE(11363), 1, - sym_attribute_specifier, - ACTIONS(43), 2, - anon_sym___attribute__, - anon_sym___attribute, - STATE(8839), 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, - [311182] = 19, + [310576] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(13991), 1, - anon_sym_SEMI, - ACTIONS(13993), 1, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(13848), 1, anon_sym_LBRACE, - ACTIONS(13995), 1, - anon_sym_try, - STATE(813), 1, + STATE(5246), 1, sym_compound_statement, - STATE(835), 1, - sym_try_statement, - STATE(4564), 1, + STATE(8321), 1, sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9724), 1, - sym_gnu_asm_expression, - STATE(9726), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, + STATE(10366), 1, + sym_lambda_declarator, + STATE(11651), 1, + sym_trailing_return_type, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [311243] = 15, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [310629] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13869), 1, + ACTIONS(13850), 1, anon_sym_LBRACE, - STATE(5170), 1, + STATE(3041), 1, sym_compound_statement, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10531), 1, + STATE(10299), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [311296] = 3, + [310682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8897), 3, + ACTIONS(9019), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8899), 18, + ACTIONS(9021), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -709809,171 +708927,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [311325] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(13977), 1, - sym_identifier, - ACTIONS(13979), 1, - sym_primitive_type, - STATE(2377), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8687), 1, - sym__scope_resolution, - STATE(2946), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(12793), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [311376] = 5, + [310711] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13997), 2, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + STATE(8004), 1, + sym_trailing_return_type, + ACTIONS(7876), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(8104), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(9143), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9145), 14, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 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_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [311409] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(14000), 1, - sym_identifier, - ACTIONS(14002), 1, - sym_primitive_type, - STATE(2210), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8763), 1, - sym__scope_resolution, - STATE(2226), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(12895), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [311460] = 14, + [310752] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13969), 1, - sym_identifier, - ACTIONS(13971), 1, - sym_primitive_type, - STATE(3770), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8676), 1, - sym__scope_resolution, - STATE(4445), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(12986), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [311511] = 10, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + STATE(8050), 1, + sym_trailing_return_type, + ACTIONS(7972), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 10, + 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, + [310793] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14006), 1, + ACTIONS(13943), 1, anon_sym_RPAREN, - ACTIONS(14008), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14016), 1, + ACTIONS(13953), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8078), 7, + STATE(8125), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -709981,297 +709024,622 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [311554] = 19, + [310836] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13833), 1, - anon_sym_try, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(13904), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, + ACTIONS(13912), 1, anon_sym_EQ, - ACTIONS(14020), 1, + ACTIONS(13957), 1, anon_sym_SEMI, - ACTIONS(14022), 1, + ACTIONS(13959), 1, anon_sym_LBRACE, - STATE(2855), 1, + ACTIONS(13961), 1, + anon_sym_try, + STATE(415), 1, sym_compound_statement, - STATE(2874), 1, + STATE(419), 1, sym_try_statement, - STATE(4564), 1, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(10066), 1, + STATE(9953), 1, sym_gnu_asm_expression, - STATE(10067), 1, + STATE(9954), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, + STATE(10551), 2, sym_argument_list, sym_initializer_list, - [311615] = 14, + [310897] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + STATE(8011), 1, + sym_trailing_return_type, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8404), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8267), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 10, + 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, + [310938] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + STATE(8023), 1, + sym_trailing_return_type, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + ACTIONS(8987), 2, + anon_sym_LBRACK, + anon_sym___asm, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 10, + 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, + [310979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9023), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9025), 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, + [311008] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11073), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(14024), 1, + ACTIONS(13922), 1, sym_identifier, - ACTIONS(14026), 1, + ACTIONS(13924), 1, sym_primitive_type, - STATE(2449), 1, + STATE(2158), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8686), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(3211), 2, + STATE(2213), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(13050), 4, + ACTIONS(12870), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311666] = 14, + [311059] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, - anon_sym_COLON_COLON, - ACTIONS(13971), 1, - sym_primitive_type, - ACTIONS(14028), 1, + ACTIONS(13941), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6642), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, - sym_splice_specifier, - STATE(8745), 1, - sym__scope_resolution, - STATE(4445), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(3200), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [311717] = 14, + ACTIONS(13945), 1, + anon_sym_LPAREN2, + ACTIONS(13947), 1, + anon_sym_defined, + ACTIONS(13963), 1, + anon_sym_RPAREN, + ACTIONS(13965), 1, + sym_number_literal, + ACTIONS(13949), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13955), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8120), 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, + [311102] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13832), 1, + anon_sym_LBRACE, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + STATE(6668), 1, + sym_compound_statement, + STATE(8321), 1, + sym_parameter_list, + STATE(10313), 1, + sym_lambda_declarator, + STATE(11651), 1, + sym_trailing_return_type, + STATE(8239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [311155] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(12315), 1, + anon_sym_requires, + STATE(8019), 1, + sym_trailing_return_type, + ACTIONS(7876), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(12312), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 10, + 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, + [311196] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(13144), 1, + anon_sym_requires, + STATE(8022), 1, + sym_trailing_return_type, + ACTIONS(7972), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(13141), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 10, + 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, + [311237] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(13238), 1, + anon_sym_requires, + STATE(7993), 1, + sym_trailing_return_type, + ACTIONS(8404), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(13235), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8267), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 10, + 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, + [311278] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10637), 1, + anon_sym_DASH_GT, + ACTIONS(13829), 1, + anon_sym_requires, + STATE(8025), 1, + sym_trailing_return_type, + ACTIONS(8987), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(13826), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 10, + 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, + [311319] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11983), 1, + sym_identifier, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(11987), 1, + anon_sym_STAR, + ACTIONS(11989), 1, + anon_sym_AMP_AMP, + ACTIONS(11991), 1, + anon_sym_AMP, + ACTIONS(13967), 1, + anon_sym_SEMI, + STATE(7983), 1, + sym__field_declarator, + STATE(8822), 1, + sym_operator_name, + STATE(10677), 1, + sym_ms_based_modifier, + STATE(11599), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8836), 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, + [311372] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11111), 1, + ACTIONS(13159), 1, anon_sym_COLON_COLON, - ACTIONS(13961), 1, + ACTIONS(13969), 1, sym_identifier, - ACTIONS(13963), 1, + ACTIONS(13971), 1, sym_primitive_type, - STATE(2941), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(7679), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8157), 1, sym_splice_specifier, - STATE(8707), 1, + STATE(8742), 1, sym__scope_resolution, - STATE(3953), 2, + STATE(4671), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3867), 4, + ACTIONS(13161), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311768] = 3, + [311423] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8979), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8981), 18, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11983), 1, + sym_identifier, + ACTIONS(11985), 1, anon_sym_LPAREN2, + ACTIONS(11987), 1, + anon_sym_STAR, + ACTIONS(11989), 1, + anon_sym_AMP_AMP, + ACTIONS(11991), 1, + anon_sym_AMP, + ACTIONS(13973), 1, anon_sym_SEMI, + STATE(7989), 1, + sym__field_declarator, + STATE(8822), 1, + sym_operator_name, + STATE(10677), 1, + sym_ms_based_modifier, + STATE(10893), 1, + sym_attribute_specifier, + ACTIONS(43), 2, 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, - [311797] = 14, + anon_sym___attribute, + STATE(8836), 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, + [311476] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(14030), 1, + ACTIONS(13929), 1, sym_identifier, - ACTIONS(14032), 1, + ACTIONS(13931), 1, sym_primitive_type, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6426), 1, + STATE(3579), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, sym_splice_specifier, - STATE(8700), 1, + STATE(8722), 1, sym__scope_resolution, - STATE(7626), 2, + STATE(4496), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(10990), 4, + ACTIONS(3830), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [311848] = 5, + [311527] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - STATE(8104), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - ACTIONS(9139), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(9141), 14, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13902), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13904), 1, anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13912), 1, + anon_sym_EQ, + ACTIONS(13975), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(13977), 1, anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(13979), 1, + anon_sym_try, + STATE(723), 1, + sym_try_statement, + STATE(779), 1, + sym_compound_statement, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(9976), 1, + sym_gnu_asm_expression, + STATE(9981), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [311881] = 15, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10551), 2, + sym_argument_list, + sym_initializer_list, + [311588] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(2310), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13904), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13885), 1, - anon_sym_LBRACE, - STATE(8263), 1, - sym_parameter_list, - STATE(8369), 1, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13912), 1, + anon_sym_EQ, + ACTIONS(13981), 1, + anon_sym_SEMI, + ACTIONS(13983), 1, + anon_sym_try, + STATE(919), 1, sym_compound_statement, - STATE(10272), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, + STATE(920), 1, + sym_try_statement, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(9684), 1, + sym_gnu_asm_expression, + STATE(10107), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [311934] = 3, + STATE(10551), 2, + sym_argument_list, + sym_initializer_list, + [311649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 3, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(8079), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9121), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8940), 18, - anon_sym_DOT_DOT_DOT, + ACTIONS(9123), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -710283,76 +709651,110 @@ 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, - [311963] = 15, + [311682] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10917), 1, + anon_sym_COLON_COLON, + ACTIONS(13985), 1, + sym_identifier, + ACTIONS(13987), 1, + sym_primitive_type, + STATE(2327), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8744), 1, + sym__scope_resolution, + STATE(2794), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(13041), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [311733] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13875), 1, + ACTIONS(13856), 1, anon_sym_LBRACE, - STATE(8058), 1, + STATE(5095), 1, sym_compound_statement, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10245), 1, + STATE(10502), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [312016] = 10, + [311786] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14034), 1, + ACTIONS(13989), 1, anon_sym_RPAREN, - ACTIONS(14036), 1, + ACTIONS(13991), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8145), 7, + STATE(8113), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -710360,626 +709762,618 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [312059] = 14, + [311829] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13993), 1, + anon_sym_COMMA, + ACTIONS(13995), 1, + anon_sym_RPAREN, + ACTIONS(14001), 1, + anon_sym_SLASH, + ACTIONS(14003), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14005), 1, + anon_sym_AMP_AMP, + ACTIONS(14007), 1, + anon_sym_PIPE, + ACTIONS(14009), 1, + anon_sym_CARET, + ACTIONS(14011), 1, + anon_sym_AMP, + STATE(10184), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(13997), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13999), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14015), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14017), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14019), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [311884] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(14038), 1, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(14021), 1, sym_identifier, - ACTIONS(14040), 1, + ACTIONS(14023), 1, sym_primitive_type, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4387), 1, + STATE(2456), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, sym_splice_specifier, - STATE(8757), 1, + STATE(8726), 1, sym__scope_resolution, - STATE(6060), 2, + STATE(3143), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(5142), 4, + ACTIONS(13015), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312110] = 14, + [311935] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11097), 1, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(14000), 1, - sym_identifier, - ACTIONS(14002), 1, + ACTIONS(13931), 1, sym_primitive_type, - STATE(2263), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + ACTIONS(14025), 1, + sym_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(6638), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8157), 1, sym_splice_specifier, - STATE(8702), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(2913), 2, + STATE(4496), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3833), 4, + ACTIONS(3228), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312161] = 19, + [311986] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13807), 1, + ACTIONS(13798), 1, anon_sym_try, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(13904), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, + ACTIONS(13912), 1, anon_sym_EQ, - ACTIONS(14042), 1, + ACTIONS(14027), 1, anon_sym_SEMI, - ACTIONS(14044), 1, + ACTIONS(14029), 1, anon_sym_LBRACE, - STATE(3431), 1, + STATE(3428), 1, sym_compound_statement, - STATE(3432), 1, + STATE(3429), 1, sym_try_statement, - STATE(4564), 1, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(9889), 1, + STATE(9754), 1, sym_gnu_asm_expression, - STATE(9890), 1, + STATE(9755), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, + STATE(10551), 2, sym_argument_list, sym_initializer_list, - [312222] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(13557), 1, - anon_sym_TILDE, - ACTIONS(13563), 1, - anon_sym_operator, - ACTIONS(14046), 1, - sym_identifier, - ACTIONS(14048), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(14051), 1, - anon_sym_COLON_COLON, - ACTIONS(14053), 1, - anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5044), 1, - sym_splice_specifier, - STATE(5307), 1, - sym_splice_expression, - STATE(5308), 1, - sym_operator_name, - STATE(8388), 1, - sym__scope_resolution, - STATE(5675), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - [312277] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11038), 1, - anon_sym_COLON_COLON, - ACTIONS(14000), 1, - sym_identifier, - ACTIONS(14002), 1, - sym_primitive_type, - STATE(2093), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8763), 1, - sym__scope_resolution, - STATE(2226), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(3974), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [312328] = 9, + [312047] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10592), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(12418), 1, - anon_sym_requires, - STATE(8013), 1, + ACTIONS(13858), 1, + anon_sym_LBRACE, + STATE(8040), 1, + sym_compound_statement, + STATE(8321), 1, + sym_parameter_list, + STATE(10583), 1, + sym_lambda_declarator, + STATE(11651), 1, sym_trailing_return_type, - ACTIONS(7789), 2, - anon_sym_LBRACK, + STATE(8239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [312100] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(12415), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8313), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 10, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13824), 1, + anon_sym_try, + ACTIONS(13902), 1, anon_sym_COMMA, + ACTIONS(13904), 1, anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13912), 1, + anon_sym_EQ, + ACTIONS(14031), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, + ACTIONS(14033), 1, anon_sym_LBRACE, - anon_sym_EQ, + STATE(3260), 1, + sym_compound_statement, + STATE(3261), 1, + sym_try_statement, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(10119), 1, + sym_gnu_asm_expression, + STATE(10120), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [312369] = 9, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10551), 2, + sym_argument_list, + sym_initializer_list, + [312161] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(10592), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13161), 1, - anon_sym_requires, - STATE(8035), 1, + ACTIONS(13870), 1, + anon_sym_LBRACE, + STATE(3678), 1, + sym_compound_statement, + STATE(8321), 1, + sym_parameter_list, + STATE(10400), 1, + sym_lambda_declarator, + STATE(11651), 1, sym_trailing_return_type, - ACTIONS(7968), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(13158), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 10, + STATE(8239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [312214] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13993), 1, 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, - [312410] = 9, + ACTIONS(14001), 1, + anon_sym_SLASH, + ACTIONS(14003), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14005), 1, + anon_sym_AMP_AMP, + ACTIONS(14007), 1, + anon_sym_PIPE, + ACTIONS(14009), 1, + anon_sym_CARET, + ACTIONS(14011), 1, + anon_sym_AMP, + ACTIONS(14035), 1, + anon_sym_RPAREN, + STATE(10094), 1, + aux_sym_preproc_argument_list_repeat1, + ACTIONS(13997), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13999), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14015), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14017), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14019), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [312269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - ACTIONS(13254), 1, - anon_sym_requires, - STATE(8046), 1, - sym_trailing_return_type, - ACTIONS(8424), 2, + ACTIONS(8919), 3, + anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(13251), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8297), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 10, + ACTIONS(8921), 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_try, - [312451] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10592), 1, anon_sym_DASH_GT, - ACTIONS(13882), 1, - anon_sym_requires, - STATE(8050), 1, - sym_trailing_return_type, - ACTIONS(8905), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(13879), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 10, - 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_GT2, anon_sym_try, - [312492] = 19, + anon_sym_requires, + [312298] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(14021), 1, + sym_identifier, + ACTIONS(14023), 1, + sym_primitive_type, + STATE(2345), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8726), 1, + sym__scope_resolution, + STATE(3143), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3891), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312349] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13819), 1, - anon_sym_try, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(14055), 1, - anon_sym_SEMI, - ACTIONS(14057), 1, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(13846), 1, anon_sym_LBRACE, - STATE(3476), 1, + STATE(4943), 1, sym_compound_statement, - STATE(3477), 1, - sym_try_statement, - STATE(4564), 1, + STATE(8321), 1, sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(10143), 1, - sym_gnu_asm_expression, - STATE(10144), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, + STATE(10263), 1, + sym_lambda_declarator, + STATE(11651), 1, + sym_trailing_return_type, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [312553] = 15, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [312402] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - ACTIONS(13873), 1, + ACTIONS(13862), 1, anon_sym_LBRACE, - STATE(3636), 1, + STATE(6469), 1, sym_compound_statement, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10495), 1, + STATE(10555), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [312606] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(14024), 1, - sym_identifier, - ACTIONS(14026), 1, - sym_primitive_type, - STATE(2356), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8686), 1, - sym__scope_resolution, - STATE(3211), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(4058), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [312657] = 16, + [312455] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, + ACTIONS(13993), 1, anon_sym_COMMA, - ACTIONS(13917), 1, + ACTIONS(14001), 1, anon_sym_SLASH, - ACTIONS(13919), 1, + ACTIONS(14003), 1, anon_sym_PIPE_PIPE, - ACTIONS(13921), 1, + ACTIONS(14005), 1, anon_sym_AMP_AMP, - ACTIONS(13923), 1, + ACTIONS(14007), 1, anon_sym_PIPE, - ACTIONS(13925), 1, + ACTIONS(14009), 1, anon_sym_CARET, - ACTIONS(13927), 1, + ACTIONS(14011), 1, anon_sym_AMP, - ACTIONS(14059), 1, + ACTIONS(14037), 1, anon_sym_RPAREN, - STATE(9875), 1, + STATE(9880), 1, aux_sym_preproc_argument_list_repeat1, - ACTIONS(13913), 2, + ACTIONS(13997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, + ACTIONS(13999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13929), 2, + ACTIONS(14013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13931), 2, + ACTIONS(14015), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(13933), 2, + ACTIONS(14017), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(13935), 2, + ACTIONS(14019), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [312712] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10592), 1, - anon_sym_DASH_GT, - STATE(8057), 1, - sym_trailing_return_type, - ACTIONS(7968), 2, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 10, - 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, - [312753] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14061), 1, - anon_sym_LPAREN2, - ACTIONS(9027), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9029), 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, - [312784] = 15, + [312510] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13843), 1, + ACTIONS(13836), 1, anon_sym_DASH_GT, - STATE(5058), 1, + STATE(5246), 1, sym_compound_statement, - STATE(8263), 1, + STATE(8321), 1, sym_parameter_list, - STATE(10383), 1, + STATE(10294), 1, sym_lambda_declarator, - STATE(10827), 1, + STATE(11651), 1, sym_trailing_return_type, - STATE(8271), 2, + STATE(8239), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, + STATE(8474), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, + STATE(9213), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [312837] = 14, + [312563] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(14000), 1, + ACTIONS(14039), 1, sym_identifier, - ACTIONS(14002), 1, + ACTIONS(14041), 1, sym_primitive_type, - STATE(2385), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4393), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(8157), 1, + sym_splice_specifier, + STATE(8753), 1, + sym__scope_resolution, + STATE(6055), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(5140), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312614] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(13918), 1, + sym_identifier, + ACTIONS(13920), 1, + sym_primitive_type, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(3772), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8157), 1, sym_splice_specifier, - STATE(8702), 1, + STATE(8737), 1, sym__scope_resolution, - STATE(2913), 2, + STATE(3912), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12837), 4, + ACTIONS(12766), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [312888] = 5, - ACTIONS(13899), 1, + [312665] = 5, + ACTIONS(13884), 1, anon_sym_LF, - ACTIONS(14063), 1, + ACTIONS(14043), 1, anon_sym_LPAREN2, - ACTIONS(14065), 1, + ACTIONS(14045), 1, sym_comment, - STATE(8277), 1, + STATE(8355), 1, sym_preproc_argument_list, - ACTIONS(13903), 18, + ACTIONS(13888), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -710998,47 +710392,304 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [312921] = 10, + [312698] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(13582), 1, + anon_sym_TILDE, + ACTIONS(13588), 1, + anon_sym_operator, + ACTIONS(14047), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14049), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(14052), 1, + anon_sym_COLON_COLON, + ACTIONS(14054), 1, + anon_sym_template, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(5259), 1, + sym_splice_specifier, + STATE(5362), 1, + sym_splice_expression, + STATE(5365), 1, + sym_operator_name, + STATE(8441), 1, + sym__scope_resolution, + STATE(5538), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [312753] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, - anon_sym_defined, - ACTIONS(14067), 1, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(13844), 1, + anon_sym_LBRACE, + STATE(5146), 1, + sym_compound_statement, + STATE(8321), 1, + sym_parameter_list, + STATE(10432), 1, + sym_lambda_declarator, + STATE(11651), 1, + sym_trailing_return_type, + STATE(8239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [312806] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(13860), 1, + anon_sym_LBRACE, + STATE(8321), 1, + sym_parameter_list, + STATE(8362), 1, + sym_compound_statement, + STATE(10239), 1, + sym_lambda_declarator, + STATE(11651), 1, + sym_trailing_return_type, + STATE(8239), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8474), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9213), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [312859] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(13918), 1, + sym_identifier, + ACTIONS(13920), 1, + sym_primitive_type, + STATE(3511), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8737), 1, + sym__scope_resolution, + STATE(3912), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(3939), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312910] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11073), 1, + anon_sym_COLON_COLON, + ACTIONS(14056), 1, + sym_identifier, + ACTIONS(14058), 1, + sym_primitive_type, + STATE(2384), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8741), 1, + sym__scope_resolution, + STATE(2903), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(12882), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [312961] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11983), 1, + sym_identifier, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(11987), 1, + anon_sym_STAR, + ACTIONS(11989), 1, + anon_sym_AMP_AMP, + ACTIONS(11991), 1, + anon_sym_AMP, + ACTIONS(14060), 1, + anon_sym_SEMI, + STATE(7980), 1, + sym__field_declarator, + STATE(8822), 1, + sym_operator_name, + STATE(10677), 1, + sym_ms_based_modifier, + STATE(11024), 1, + sym_attribute_specifier, + ACTIONS(43), 2, + anon_sym___attribute__, + anon_sym___attribute, + STATE(8836), 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, + [313014] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(14062), 1, + sym_identifier, + ACTIONS(14064), 1, + sym_primitive_type, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8754), 1, + sym__scope_resolution, + STATE(3177), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [313065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8949), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8951), 18, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(14069), 1, - sym_number_literal, - ACTIONS(14012), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14014), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14018), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8131), 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, - [312964] = 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_asm, + anon_sym___asm__, + anon_sym_DASH_GT, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [313094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9007), 3, + ACTIONS(8945), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9009), 18, + ACTIONS(8947), 18, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -711057,596 +710708,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [312993] = 14, + [313123] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11038), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13953), 1, + ACTIONS(14056), 1, sym_identifier, - ACTIONS(13955), 1, + ACTIONS(14058), 1, sym_primitive_type, - STATE(2076), 1, + STATE(2264), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8763), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(2226), 2, + STATE(2903), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(3803), 4, + ACTIONS(4024), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313044] = 15, + [313174] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13853), 1, - anon_sym_LBRACE, - STATE(2957), 1, - sym_compound_statement, - STATE(8263), 1, - sym_parameter_list, - STATE(10415), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [313097] = 14, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(14064), 1, + sym_primitive_type, + ACTIONS(14066), 1, + sym_identifier, + STATE(2749), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8708), 1, + sym__scope_resolution, + STATE(3177), 2, + sym_sized_type_specifier, + sym_qualified_type_identifier, + ACTIONS(2242), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [313225] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11081), 1, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(13961), 1, + ACTIONS(14068), 1, sym_identifier, - ACTIONS(13963), 1, + ACTIONS(14070), 1, sym_primitive_type, - STATE(3762), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(6416), 1, + aux_sym_sized_type_specifier_repeat1, + STATE(8157), 1, sym_splice_specifier, - STATE(8675), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(3953), 2, + STATE(7627), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12757), 4, + ACTIONS(11029), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313148] = 14, + [313276] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10653), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13907), 1, - sym_primitive_type, - ACTIONS(14071), 1, + ACTIONS(13896), 1, sym_identifier, - STATE(2852), 1, + ACTIONS(13898), 1, + sym_primitive_type, + STATE(2367), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8711), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(3192), 2, + STATE(2911), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(2244), 4, + ACTIONS(12983), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313199] = 14, + [313327] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11111), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13961), 1, + ACTIONS(13985), 1, sym_identifier, - ACTIONS(13963), 1, + ACTIONS(13987), 1, sym_primitive_type, - STATE(3375), 1, + STATE(2177), 1, aux_sym_sized_type_specifier_repeat1, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8707), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(3953), 2, + STATE(2794), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(12873), 4, + ACTIONS(4137), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313250] = 14, + [313378] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11020), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(14073), 1, - sym_identifier, - ACTIONS(14075), 1, + ACTIONS(14064), 1, sym_primitive_type, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7606), 1, + ACTIONS(14066), 1, + sym_identifier, + STATE(3169), 1, aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, sym_splice_specifier, - STATE(8691), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(3192), 2, + STATE(3177), 2, sym_sized_type_specifier, sym_qualified_type_identifier, - ACTIONS(11022), 4, + ACTIONS(12834), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [313301] = 16, + [313429] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, - anon_sym_COMMA, - ACTIONS(13917), 1, + ACTIONS(14001), 1, anon_sym_SLASH, - ACTIONS(13919), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13921), 1, - anon_sym_AMP_AMP, - ACTIONS(13923), 1, - anon_sym_PIPE, - ACTIONS(13925), 1, + ACTIONS(14009), 1, anon_sym_CARET, - ACTIONS(13927), 1, + ACTIONS(14011), 1, anon_sym_AMP, - ACTIONS(14077), 1, - anon_sym_RPAREN, - STATE(9850), 1, - aux_sym_preproc_argument_list_repeat1, - ACTIONS(13913), 2, + ACTIONS(14074), 1, + anon_sym_PIPE, + ACTIONS(13997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, + ACTIONS(13999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13929), 2, + ACTIONS(14013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13931), 2, + ACTIONS(14015), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(13933), 2, + ACTIONS(14017), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(13935), 2, + ACTIONS(14019), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [313356] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(14072), 4, anon_sym_COMMA, - ACTIONS(13939), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(14079), 1, - anon_sym_SEMI, - ACTIONS(14081), 1, - anon_sym_LBRACE, - ACTIONS(14083), 1, - anon_sym_try, - STATE(667), 1, - sym_compound_statement, - STATE(668), 1, - sym_try_statement, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9764), 1, - sym_gnu_asm_expression, - STATE(9765), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [313417] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(13877), 1, - anon_sym_LBRACE, - STATE(5224), 1, - sym_compound_statement, - STATE(8263), 1, - sym_parameter_list, - STATE(10249), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [313470] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13839), 1, - anon_sym_LBRACE, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - STATE(5058), 1, - sym_compound_statement, - STATE(8263), 1, - sym_parameter_list, - STATE(10427), 1, - sym_lambda_declarator, - STATE(10827), 1, - sym_trailing_return_type, - STATE(8271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8462), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9219), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [313523] = 11, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [313475] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11805), 1, - anon_sym_STAR, - ACTIONS(11807), 1, - anon_sym_AMP_AMP, - ACTIONS(11809), 1, + ACTIONS(14001), 1, + anon_sym_SLASH, + ACTIONS(14007), 1, + anon_sym_PIPE, + ACTIONS(14009), 1, + anon_sym_CARET, + ACTIONS(14011), 1, anon_sym_AMP, - STATE(4672), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8852), 1, - sym__abstract_declarator, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9427), 8, + ACTIONS(13997), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13999), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14015), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14017), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14019), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14072), 4, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [313568] = 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + [313521] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(13957), 1, + ACTIONS(13602), 1, + anon_sym_TILDE, + ACTIONS(13608), 1, + anon_sym_operator, + ACTIONS(14076), 1, sym_identifier, - ACTIONS(13959), 1, - sym_primitive_type, - STATE(3808), 1, + ACTIONS(14078), 1, + anon_sym_COLON_COLON, + ACTIONS(14080), 1, + anon_sym_template, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3824), 1, - aux_sym_sized_type_specifier_repeat1, - STATE(8222), 1, + STATE(5308), 1, sym_splice_specifier, - STATE(8716), 1, + STATE(5710), 1, + sym_splice_expression, + STATE(5717), 1, + sym_operator_name, + STATE(8397), 1, sym__scope_resolution, - STATE(4741), 2, - sym_sized_type_specifier, - sym_qualified_type_identifier, - ACTIONS(59), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(10768), 5, + STATE(5906), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, - sym_splice_expression, - [313619] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14085), 1, - sym_identifier, - ACTIONS(14087), 1, - anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14095), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8324), 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, - [313659] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14085), 1, - sym_identifier, - ACTIONS(14087), 1, - anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14099), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8315), 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, - [313699] = 9, + [313573] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, - sym_identifier, - ACTIONS(14087), 1, - anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14101), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14001), 1, + anon_sym_SLASH, + ACTIONS(14011), 1, + anon_sym_AMP, + ACTIONS(14074), 1, + anon_sym_PIPE, + ACTIONS(13997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8288), 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, - [313739] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(13999), 2, anon_sym_STAR, - ACTIONS(11898), 1, + anon_sym_PERCENT, + ACTIONS(14013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14015), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14017), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14019), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14072), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9405), 1, - sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [313789] = 3, + anon_sym_CARET, + [313617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14105), 5, + ACTIONS(14084), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(14103), 15, + ACTIONS(14082), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -711662,124 +711093,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [313817] = 9, + [313645] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, - sym_identifier, - ACTIONS(14087), 1, - anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14107), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14001), 1, + anon_sym_SLASH, + ACTIONS(13997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8321), 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, - [313857] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(13999), 2, anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, + anon_sym_PERCENT, + ACTIONS(14013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14015), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14017), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14019), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14074), 2, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9379), 1, - sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [313907] = 9, + ACTIONS(14072), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, + [313687] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, - sym_identifier, - ACTIONS(14087), 1, - anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14109), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14001), 1, + anon_sym_SLASH, + ACTIONS(13997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8303), 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, - [313947] = 7, + ACTIONS(13999), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14015), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14017), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14019), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14074), 2, + anon_sym_PIPE, + anon_sym_AMP, + ACTIONS(14072), 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, + [313727] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, + ACTIONS(14001), 1, anon_sym_SLASH, - ACTIONS(13913), 2, + ACTIONS(13997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, + ACTIONS(13999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13935), 2, + ACTIONS(14019), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14113), 4, + ACTIONS(14074), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(14111), 9, + ACTIONS(14072), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_PIPE_PIPE, @@ -711789,128 +711185,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - [313983] = 9, + [313763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, - sym_identifier, - ACTIONS(14008), 1, - anon_sym_LPAREN2, - ACTIONS(14010), 1, - anon_sym_defined, - ACTIONS(14115), 1, - sym_number_literal, - ACTIONS(14012), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14001), 1, + anon_sym_SLASH, + ACTIONS(13997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8206), 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, - [314023] = 9, + ACTIONS(13999), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14074), 4, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14072), 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, + [313797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, - sym_identifier, - ACTIONS(14087), 1, - anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14117), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(10556), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(10558), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8273), 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, - [314063] = 14, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_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, + [313825] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(9279), 1, + anon_sym___attribute, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(11821), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11823), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11825), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9328), 1, - sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [314113] = 9, + STATE(5264), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(8867), 1, + sym__abstract_declarator, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + ACTIONS(9281), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [313871] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14119), 1, + ACTIONS(14096), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8247), 7, + STATE(8312), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -711918,133 +711303,143 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314153] = 9, + [313911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13931), 2, - anon_sym_GT, + ACTIONS(7119), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, anon_sym_LT, - ACTIONS(13933), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14113), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(14111), 7, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7122), 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_CARET, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [314193] = 14, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [313943] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(8932), 1, sym__type_declarator, - STATE(9276), 1, + STATE(9397), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [314243] = 14, + [313993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(14102), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14100), 15, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, - ACTIONS(11898), 1, + anon_sym_PERCENT, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + anon_sym_CARET, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [314021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14106), 5, + anon_sym_SLASH, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9293), 1, - sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [314293] = 9, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14104), 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, + [314049] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14121), 1, + ACTIONS(14108), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8212), 7, + STATE(8345), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712052,30 +711447,55 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314333] = 9, + [314089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14112), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14110), 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, + [314117] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14123), 1, + ACTIONS(14114), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8326), 7, + STATE(8197), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712083,66 +711503,66 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314373] = 14, + [314157] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(8932), 1, sym__type_declarator, - STATE(9314), 1, + STATE(9362), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [314423] = 9, + [314207] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14125), 1, + ACTIONS(14116), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8287), 7, + STATE(8200), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712150,66 +711570,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314463] = 14, + [314247] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9348), 1, - sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [314513] = 9, + ACTIONS(13947), 1, + anon_sym_defined, + ACTIONS(14118), 1, + sym_number_literal, + ACTIONS(13949), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13955), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8209), 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, + [314287] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14127), 1, + ACTIONS(14120), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8185), 7, + STATE(8146), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712217,30 +711632,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314553] = 9, + [314327] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14129), 1, + ACTIONS(14122), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8348), 7, + STATE(8145), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712248,100 +711663,97 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314593] = 12, + [314367] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(13941), 1, + sym_identifier, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(9429), 1, - anon_sym___attribute, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(11827), 1, - anon_sym_STAR, - ACTIONS(11829), 1, - anon_sym_AMP_AMP, - ACTIONS(11831), 1, - anon_sym_AMP, - STATE(5310), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(8915), 1, - sym__abstract_declarator, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - ACTIONS(9427), 6, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [314639] = 14, + ACTIONS(13947), 1, + anon_sym_defined, + ACTIONS(14124), 1, + sym_number_literal, + ACTIONS(13949), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13951), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13955), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8148), 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, + [314407] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(8932), 1, sym__type_declarator, - STATE(9402), 1, + STATE(9338), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [314689] = 9, + [314457] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14131), 1, + ACTIONS(14126), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8347), 7, + STATE(8150), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712349,30 +711761,67 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314729] = 9, + [314497] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(13582), 1, + anon_sym_TILDE, + ACTIONS(13588), 1, + anon_sym_operator, + ACTIONS(14047), 1, + sym_identifier, + ACTIONS(14052), 1, + anon_sym_COLON_COLON, + ACTIONS(14054), 1, + anon_sym_template, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(5259), 1, + sym_splice_specifier, + STATE(5362), 1, + sym_splice_expression, + STATE(5365), 1, + sym_operator_name, + STATE(8441), 1, + sym__scope_resolution, + STATE(5538), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [314549] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14133), 1, + ACTIONS(14128), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8342), 7, + STATE(8160), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712380,30 +711829,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314769] = 9, + [314589] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14135), 1, + ACTIONS(14130), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8193), 7, + STATE(8151), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712411,63 +711860,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314809] = 11, + [314629] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13927), 1, - anon_sym_AMP, - ACTIONS(14113), 1, - anon_sym_PIPE, - ACTIONS(13913), 2, + ACTIONS(13941), 1, + sym_identifier, + ACTIONS(13945), 1, + anon_sym_LPAREN2, + ACTIONS(13947), 1, + anon_sym_defined, + ACTIONS(14132), 1, + sym_number_literal, + ACTIONS(13949), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13929), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13931), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13933), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14111), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [314853] = 9, + ACTIONS(13955), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8288), 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, + [314669] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14137), 1, + ACTIONS(14134), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8286), 7, + STATE(8152), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712475,67 +711922,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314893] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13607), 1, - anon_sym_TILDE, - ACTIONS(13613), 1, - anon_sym_operator, - ACTIONS(14139), 1, - sym_identifier, - ACTIONS(14141), 1, - anon_sym_COLON_COLON, - ACTIONS(14143), 1, - anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5321), 1, - sym_splice_specifier, - STATE(5647), 1, - sym_splice_expression, - STATE(5648), 1, - sym_operator_name, - STATE(8391), 1, - sym__scope_resolution, - STATE(5784), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - [314945] = 9, + [314709] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14145), 1, + ACTIONS(14136), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8291), 7, + STATE(8153), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712543,30 +711953,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [314985] = 9, + [314749] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14147), 1, + ACTIONS(14138), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8293), 7, + STATE(8350), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712574,32 +711984,69 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315025] = 11, + [314789] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13532), 1, + anon_sym_TILDE, + ACTIONS(13538), 1, + anon_sym_operator, + ACTIONS(14140), 1, + sym_identifier, + ACTIONS(14142), 1, + anon_sym_COLON_COLON, + ACTIONS(14144), 1, + anon_sym_template, + STATE(3753), 1, + sym_splice_specifier, + STATE(3760), 1, + sym_splice_expression, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3894), 1, + sym_operator_name, + STATE(8365), 1, + sym__scope_resolution, + STATE(3852), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [314841] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11821), 1, + ACTIONS(11811), 1, anon_sym_STAR, - ACTIONS(11823), 1, + ACTIONS(11813), 1, anon_sym_AMP_AMP, - ACTIONS(11825), 1, + ACTIONS(11815), 1, anon_sym_AMP, - STATE(4861), 1, + STATE(4985), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8885), 1, + STATE(8879), 1, sym__abstract_declarator, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9427), 7, + ACTIONS(9281), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -712607,65 +712054,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [315069] = 13, + [314885] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13921), 1, - anon_sym_AMP_AMP, - ACTIONS(13923), 1, - anon_sym_PIPE, - ACTIONS(13925), 1, - anon_sym_CARET, - ACTIONS(13927), 1, - anon_sym_AMP, - ACTIONS(13913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13929), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13931), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13933), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14111), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - [315117] = 9, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3074), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13652), 1, + anon_sym_TILDE, + ACTIONS(13658), 1, + anon_sym_operator, + ACTIONS(14146), 1, + sym_identifier, + ACTIONS(14148), 1, + anon_sym_COLON_COLON, + ACTIONS(14150), 1, + anon_sym_template, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(5273), 1, + sym_splice_specifier, + STATE(5616), 1, + sym_splice_expression, + STATE(5648), 1, + sym_operator_name, + STATE(8376), 1, + sym__scope_resolution, + STATE(5884), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [314937] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14149), 1, + ACTIONS(14152), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8302), 7, + STATE(8293), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712673,30 +712122,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315157] = 9, + [314977] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14151), 1, + ACTIONS(14154), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8195), 7, + STATE(8356), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712704,102 +712153,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315197] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13919), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13921), 1, - anon_sym_AMP_AMP, - ACTIONS(13923), 1, - anon_sym_PIPE, - ACTIONS(13925), 1, - anon_sym_CARET, - ACTIONS(13927), 1, - anon_sym_AMP, - ACTIONS(13913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13929), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13931), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13933), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14153), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [315247] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9283), 1, - sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [315297] = 9, + [315017] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14155), 1, + ACTIONS(14156), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8221), 7, + STATE(8245), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712807,30 +712184,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315337] = 9, + [315057] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14157), 1, + ACTIONS(14158), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8159), 7, + STATE(8263), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712838,30 +712215,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315377] = 9, + [315097] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14159), 1, + ACTIONS(14160), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8210), 7, + STATE(8359), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -712869,198 +712246,346 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315417] = 12, + [315137] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8932), 1, + sym__type_declarator, + STATE(9378), 1, + sym__type_definition_declarators, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315187] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8932), 1, + sym__type_declarator, + STATE(9351), 1, + sym__type_definition_declarators, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, + ACTIONS(14164), 5, anon_sym_SLASH, - ACTIONS(13923), 1, anon_sym_PIPE, - ACTIONS(13925), 1, - anon_sym_CARET, - ACTIONS(13927), 1, anon_sym_AMP, - ACTIONS(13913), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14162), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13929), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13931), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13933), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(13935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14111), 4, + [315265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14168), 5, + anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14166), 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, - [315463] = 14, + 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, + [315293] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(8932), 1, sym__type_declarator, - STATE(9315), 1, + STATE(9267), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [315513] = 12, + [315343] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14086), 1, + sym_identifier, + ACTIONS(14088), 1, + anon_sym_LPAREN2, + ACTIONS(14090), 1, + anon_sym_defined, + ACTIONS(14170), 1, + sym_number_literal, + ACTIONS(14092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14094), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14098), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8346), 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, + [315383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, + ACTIONS(14174), 5, anon_sym_SLASH, - ACTIONS(13925), 1, - anon_sym_CARET, - ACTIONS(13927), 1, - anon_sym_AMP, - ACTIONS(14113), 1, anon_sym_PIPE, - ACTIONS(13913), 2, + anon_sym_AMP, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14172), 15, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(13929), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_CARET, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13931), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13933), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(13935), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14111), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, + [315411] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - [315559] = 14, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8932), 1, + sym__type_declarator, + STATE(9375), 1, + sym__type_definition_declarators, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315461] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(8932), 1, sym__type_declarator, - STATE(9377), 1, + STATE(9294), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [315609] = 14, + [315511] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(8932), 1, sym__type_declarator, - STATE(9407), 1, + STATE(9280), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [315659] = 3, + [315561] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14163), 5, + ACTIONS(14001), 1, anon_sym_SLASH, + ACTIONS(13999), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14074), 4, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(14161), 15, + ACTIONS(14072), 13, 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, @@ -713070,78 +712595,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [315687] = 9, + [315593] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14165), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8272), 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, - [315727] = 9, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8932), 1, + sym__type_declarator, + STATE(9395), 1, + sym__type_definition_declarators, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315643] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14167), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8318), 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, - [315767] = 3, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8932), 1, + sym__type_declarator, + STATE(9271), 1, + sym__type_definition_declarators, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14171), 5, + ACTIONS(14074), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(14169), 15, + ACTIONS(14072), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -713157,86 +712692,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [315795] = 3, + [315721] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14175), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14173), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11854), 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, - [315823] = 9, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8932), 1, + sym__type_declarator, + STATE(9310), 1, + sym__type_definition_declarators, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315771] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14177), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8330), 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, - [315863] = 9, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8932), 1, + sym__type_declarator, + STATE(9347), 1, + sym__type_definition_declarators, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315821] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14179), 1, + ACTIONS(14176), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8357), 7, + STATE(8315), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713244,149 +712795,174 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [315903] = 9, + [315861] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14181), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8333), 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, - [315943] = 5, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8932), 1, + sym__type_declarator, + STATE(9346), 1, + sym__type_definition_declarators, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315911] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13915), 2, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(14113), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14111), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_PIPE_PIPE, + ACTIONS(11854), 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, - [315975] = 3, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8932), 1, + sym__type_declarator, + STATE(9290), 1, + sym__type_definition_declarators, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [315961] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(10566), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(10564), 15, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_DASH, - anon_sym_PLUS, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_PIPE_PIPE, + ACTIONS(11854), 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, - [316003] = 14, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8932), 1, + sym__type_declarator, + STATE(9355), 1, + sym__type_definition_declarators, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [316011] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(8932), 1, sym__type_declarator, - STATE(9395), 1, + STATE(9334), 1, sym__type_definition_declarators, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [316053] = 9, + [316061] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14183), 1, + ACTIONS(14178), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8179), 7, + STATE(8316), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713394,180 +712970,195 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316093] = 6, + [316101] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(13917), 1, + ACTIONS(14001), 1, anon_sym_SLASH, - ACTIONS(13913), 2, + ACTIONS(14005), 1, + anon_sym_AMP_AMP, + ACTIONS(14007), 1, + anon_sym_PIPE, + ACTIONS(14009), 1, + anon_sym_CARET, + ACTIONS(14011), 1, + anon_sym_AMP, + ACTIONS(13997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, + ACTIONS(13999), 2, anon_sym_STAR, anon_sym_PERCENT, - ACTIONS(14113), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14111), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(14013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(14015), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14017), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(14019), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [316127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14187), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14185), 15, + ACTIONS(14072), 3, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + [316149] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14086), 1, + sym_identifier, + ACTIONS(14088), 1, + anon_sym_LPAREN2, + ACTIONS(14090), 1, + anon_sym_defined, + ACTIONS(14180), 1, + sym_number_literal, + ACTIONS(14092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14094), 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, - [316155] = 3, + ACTIONS(14098), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8318), 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, + [316189] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14113), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14111), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14086), 1, + sym_identifier, + ACTIONS(14088), 1, + anon_sym_LPAREN2, + ACTIONS(14090), 1, + anon_sym_defined, + ACTIONS(14182), 1, + sym_number_literal, + ACTIONS(14092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14094), 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, - [316183] = 14, + ACTIONS(14098), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8278), 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, + [316229] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9272), 1, - sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [316233] = 14, + ACTIONS(14090), 1, + anon_sym_defined, + ACTIONS(14184), 1, + sym_number_literal, + ACTIONS(14092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14094), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14098), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8310), 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, + [316269] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(2436), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13532), 1, + anon_sym_TILDE, + ACTIONS(13538), 1, + anon_sym_operator, + ACTIONS(14140), 1, sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9278), 1, - sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [316283] = 9, + ACTIONS(14186), 1, + anon_sym_COLON_COLON, + ACTIONS(14188), 1, + anon_sym_template, + STATE(3753), 1, + sym_splice_specifier, + STATE(3760), 1, + sym_splice_expression, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(5561), 1, + sym_operator_name, + STATE(8425), 1, + sym__scope_resolution, + STATE(3852), 4, + sym_template_method, + sym_destructor_name, + sym_dependent_field_identifier, + sym_qualified_field_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + [316321] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14189), 1, + ACTIONS(14190), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8355), 7, + STATE(8328), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713575,30 +713166,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316323] = 9, + [316361] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14191), 1, + ACTIONS(14192), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8327), 7, + STATE(8324), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713606,30 +713197,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316363] = 9, + [316401] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(13941), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(13945), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(13947), 1, anon_sym_defined, - ACTIONS(14193), 1, + ACTIONS(14194), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(13949), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(13951), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(13955), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8319), 7, + STATE(8222), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713637,58 +713228,120 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316403] = 12, + [316441] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(9429), 1, + ACTIONS(9279), 1, anon_sym___attribute, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11838), 1, + ACTIONS(11805), 1, anon_sym_STAR, - ACTIONS(11840), 1, + ACTIONS(11807), 1, anon_sym_AMP_AMP, - ACTIONS(11842), 1, + ACTIONS(11809), 1, anon_sym_AMP, - STATE(5313), 1, + STATE(5523), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8939), 1, + STATE(8903), 1, sym__abstract_declarator, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9427), 6, + ACTIONS(9281), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [316449] = 9, + [316487] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14086), 1, + sym_identifier, + ACTIONS(14088), 1, + anon_sym_LPAREN2, + ACTIONS(14090), 1, + anon_sym_defined, + ACTIONS(14196), 1, + sym_number_literal, + ACTIONS(14092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14094), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14098), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8326), 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, + [316527] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14086), 1, + sym_identifier, + ACTIONS(14088), 1, + anon_sym_LPAREN2, + ACTIONS(14090), 1, + anon_sym_defined, + ACTIONS(14198), 1, + sym_number_literal, + ACTIONS(14092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14094), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14098), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8330), 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, + [316567] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14195), 1, + ACTIONS(14200), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, @@ -713702,30 +713355,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316489] = 9, + [316607] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14197), 1, + ACTIONS(14202), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8305), 7, + STATE(8261), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713733,119 +713386,97 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316529] = 3, + [316647] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(14201), 5, + ACTIONS(14001), 1, anon_sym_SLASH, + ACTIONS(14003), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14005), 1, + anon_sym_AMP_AMP, + ACTIONS(14007), 1, anon_sym_PIPE, + ACTIONS(14009), 1, + anon_sym_CARET, + ACTIONS(14011), 1, anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14199), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13997), 2, anon_sym_DASH, anon_sym_PLUS, + ACTIONS(13999), 2, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, + ACTIONS(14013), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(14015), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14017), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, + ACTIONS(14019), 2, anon_sym_LT_LT, anon_sym_GT_GT, - [316557] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7087), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - ACTIONS(7090), 17, - anon_sym_DOT_DOT_DOT, + ACTIONS(14204), 2, anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [316589] = 15, + anon_sym_RPAREN, + [316697] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(14203), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14205), 1, - anon_sym_COLON_COLON, - ACTIONS(14207), 1, - anon_sym_template, - STATE(3744), 1, - sym_splice_specifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3817), 1, - sym_splice_expression, - STATE(3938), 1, - sym_operator_name, - STATE(8375), 1, - sym__scope_resolution, - STATE(3928), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - [316641] = 9, + ACTIONS(14088), 1, + anon_sym_LPAREN2, + ACTIONS(14090), 1, + anon_sym_defined, + ACTIONS(14206), 1, + sym_number_literal, + ACTIONS(14092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14094), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14098), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8259), 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, + [316737] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14209), 1, + ACTIONS(14208), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8232), 7, + STATE(8266), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713853,66 +713484,61 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316681] = 14, + [316777] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9380), 1, - sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [316731] = 9, + ACTIONS(14090), 1, + anon_sym_defined, + ACTIONS(14210), 1, + sym_number_literal, + ACTIONS(14092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14094), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14098), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8235), 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, + [316817] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14211), 1, + ACTIONS(14212), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8188), 7, + STATE(8286), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713920,30 +713546,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316771] = 9, + [316857] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14213), 1, + ACTIONS(14214), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8322), 7, + STATE(8344), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713951,30 +713577,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316811] = 9, + [316897] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14215), 1, + ACTIONS(14216), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8329), 7, + STATE(8347), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -713982,78 +713608,47 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [316851] = 15, + [316937] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2438), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13571), 1, - anon_sym_TILDE, - ACTIONS(13577), 1, - anon_sym_operator, - ACTIONS(14203), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14217), 1, - anon_sym_COLON_COLON, - ACTIONS(14219), 1, - anon_sym_template, - STATE(3744), 1, - sym_splice_specifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(3817), 1, - sym_splice_expression, - STATE(5607), 1, - sym_operator_name, - STATE(8416), 1, - sym__scope_resolution, - STATE(3928), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - [316903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14223), 5, - anon_sym_SLASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_GT, - anon_sym_LT, - ACTIONS(14221), 15, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(14088), 1, + anon_sym_LPAREN2, + ACTIONS(14090), 1, + anon_sym_defined, + ACTIONS(14218), 1, + sym_number_literal, + ACTIONS(14092), 2, + anon_sym_BANG, + anon_sym_TILDE, + ACTIONS(14094), 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, - [316931] = 3, + ACTIONS(14098), 5, + anon_sym_L_SQUOTE, + anon_sym_u_SQUOTE, + anon_sym_U_SQUOTE, + anon_sym_u8_SQUOTE, + anon_sym_SQUOTE, + STATE(8352), 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, + [316977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14227), 5, + ACTIONS(14222), 5, anon_sym_SLASH, anon_sym_PIPE, anon_sym_AMP, anon_sym_GT, anon_sym_LT, - ACTIONS(14225), 15, + ACTIONS(14220), 15, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_DASH, @@ -714069,98 +713664,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - [316959] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13929), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13931), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13933), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14113), 2, - anon_sym_PIPE, - anon_sym_AMP, - ACTIONS(14111), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_CARET, - [317001] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8941), 1, - sym__type_declarator, - STATE(9346), 1, - sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [317051] = 9, + [317005] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14229), 1, + ACTIONS(14224), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8323), 7, + STATE(8314), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -714168,30 +713695,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [317091] = 9, + [317045] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14085), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14087), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14089), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14231), 1, + ACTIONS(14226), 1, sym_number_literal, - ACTIONS(14091), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14093), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14097), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8246), 7, + STATE(8270), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -714199,67 +713726,30 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [317131] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13591), 1, - anon_sym_TILDE, - ACTIONS(13597), 1, - anon_sym_operator, - ACTIONS(14233), 1, - sym_identifier, - ACTIONS(14235), 1, - anon_sym_COLON_COLON, - ACTIONS(14237), 1, - anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5353), 1, - sym_splice_specifier, - STATE(5649), 1, - sym_splice_expression, - STATE(5700), 1, - sym_operator_name, - STATE(8371), 1, - sym__scope_resolution, - STATE(5877), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - [317183] = 9, + [317085] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14004), 1, + ACTIONS(14086), 1, sym_identifier, - ACTIONS(14008), 1, + ACTIONS(14088), 1, anon_sym_LPAREN2, - ACTIONS(14010), 1, + ACTIONS(14090), 1, anon_sym_defined, - ACTIONS(14239), 1, + ACTIONS(14228), 1, sym_number_literal, - ACTIONS(14012), 2, + ACTIONS(14092), 2, anon_sym_BANG, anon_sym_TILDE, - ACTIONS(14014), 2, + ACTIONS(14094), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14018), 5, + ACTIONS(14098), 5, anon_sym_L_SQUOTE, anon_sym_u_SQUOTE, anon_sym_U_SQUOTE, anon_sym_u8_SQUOTE, anon_sym_SQUOTE, - STATE(8164), 7, + STATE(8244), 7, sym__preproc_expression, sym_preproc_parenthesized_expression, sym_preproc_defined, @@ -714267,433 +713757,128 @@ static const uint16_t ts_small_parse_table[] = { sym_preproc_call_expression, sym_preproc_binary_expression, sym_char_literal, - [317223] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(13557), 1, - anon_sym_TILDE, - ACTIONS(13563), 1, - anon_sym_operator, - ACTIONS(14046), 1, - sym_identifier, - ACTIONS(14051), 1, - anon_sym_COLON_COLON, - ACTIONS(14053), 1, - anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5044), 1, - sym_splice_specifier, - STATE(5307), 1, - sym_splice_expression, - STATE(5308), 1, - sym_operator_name, - STATE(8388), 1, - sym__scope_resolution, - STATE(5675), 4, - sym_template_method, - sym_destructor_name, - sym_dependent_field_identifier, - sym_qualified_field_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - [317275] = 14, + [317125] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(8941), 1, + STATE(8932), 1, sym__type_declarator, - STATE(9394), 1, + STATE(9345), 1, sym__type_definition_declarators, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [317325] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14085), 1, - sym_identifier, - ACTIONS(14087), 1, - anon_sym_LPAREN2, - ACTIONS(14089), 1, - anon_sym_defined, - ACTIONS(14241), 1, - sym_number_literal, - ACTIONS(14091), 2, - anon_sym_BANG, - anon_sym_TILDE, - ACTIONS(14093), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14097), 5, - anon_sym_L_SQUOTE, - anon_sym_u_SQUOTE, - anon_sym_U_SQUOTE, - anon_sym_u8_SQUOTE, - anon_sym_SQUOTE, - STATE(8356), 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, - [317365] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10320), 1, - anon_sym_LT, - STATE(8449), 1, - sym_template_argument_list, - ACTIONS(6574), 4, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6567), 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, - [317398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9308), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9310), 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, - [317425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9316), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9318), 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, - [317452] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(14243), 1, - anon_sym_LBRACE, - ACTIONS(14245), 1, - anon_sym_DASH_GT, - ACTIONS(14247), 1, - anon_sym_requires, - STATE(9835), 1, - sym_trailing_return_type, - STATE(11587), 1, - sym_requires_clause, - STATE(8834), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9062), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9067), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [317499] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(9121), 1, - sym__type_declarator, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [317546] = 12, - ACTIONS(14065), 1, + [317175] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14249), 1, + ACTIONS(14230), 1, anon_sym_LF, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [317591] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13917), 1, - anon_sym_SLASH, - ACTIONS(13919), 1, - anon_sym_PIPE_PIPE, - ACTIONS(13921), 1, - anon_sym_AMP_AMP, - ACTIONS(13923), 1, - anon_sym_PIPE, - ACTIONS(13925), 1, - anon_sym_CARET, - ACTIONS(13927), 1, - anon_sym_AMP, - ACTIONS(14271), 1, - anon_sym_RPAREN, - ACTIONS(13913), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(13915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13929), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(13931), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(13933), 2, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(13935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [317640] = 15, + [317220] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8383), 1, - anon_sym_LBRACE, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13403), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2691), 1, - sym_enumerator_list, - STATE(8682), 1, + STATE(8157), 1, + sym_splice_specifier, + STATE(8658), 1, + sym_access_specifier, + STATE(8729), 1, sym__scope_resolution, - ACTIONS(14273), 2, - anon_sym_class, - anon_sym_struct, - STATE(2615), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4368), 2, + STATE(10194), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + ACTIONS(13854), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [317691] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, - sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8407), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [317738] = 3, + [317269] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9437), 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, - [317765] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14275), 1, + ACTIONS(14252), 1, anon_sym_LBRACK, - STATE(8570), 1, + STATE(8587), 1, sym_parameter_list, - ACTIONS(9480), 2, + ACTIONS(9397), 2, anon_sym___attribute, anon_sym___asm, - STATE(8436), 2, + STATE(8433), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9482), 11, + ACTIONS(9399), 11, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -714705,367 +713890,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [317802] = 13, + [317306] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(14245), 1, + ACTIONS(14254), 1, + anon_sym_LBRACE, + ACTIONS(14256), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(14258), 1, anon_sym_requires, - ACTIONS(14277), 1, - anon_sym_LBRACE, - STATE(9842), 1, + STATE(10026), 1, sym_trailing_return_type, - STATE(10631), 1, + STATE(10927), 1, sym_requires_clause, - STATE(8359), 2, + STATE(8832), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9008), 2, + STATE(9076), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9076), 3, + STATE(9046), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [317849] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14161), 1, - anon_sym_LF, - ACTIONS(14163), 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, - [317876] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14225), 1, - anon_sym_LF, - ACTIONS(14227), 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, - [317903] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8605), 1, - sym_access_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9533), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13847), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [317952] = 15, + [317353] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(9576), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(14260), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(13102), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(7481), 1, - sym_splice_specifier, - STATE(7708), 1, - sym_enumerator_list, - STATE(8691), 1, - sym__scope_resolution, - ACTIONS(14279), 2, - anon_sym_class, - anon_sym_struct, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7590), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [318003] = 13, + STATE(8241), 1, + sym_parameter_list, + STATE(10808), 1, + sym_trailing_return_type, + STATE(7970), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(8487), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9206), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [317400] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11943), 1, + ACTIONS(11908), 1, sym_identifier, - ACTIONS(11945), 1, + ACTIONS(11910), 1, anon_sym_LPAREN2, - ACTIONS(11947), 1, + ACTIONS(11912), 1, anon_sym_STAR, - ACTIONS(11949), 1, + ACTIONS(11914), 1, anon_sym_AMP_AMP, - ACTIONS(11951), 1, + ACTIONS(11916), 1, anon_sym_AMP, - ACTIONS(11955), 1, + ACTIONS(11920), 1, sym_primitive_type, - STATE(4785), 1, + STATE(4862), 1, sym__type_declarator, - STATE(5644), 1, + STATE(5546), 1, sym_pointer_type_declarator, - STATE(10893), 1, + STATE(11300), 1, sym_ms_based_modifier, - ACTIONS(11953), 4, + ACTIONS(11918), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(5575), 5, + STATE(5695), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [318050] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9361), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9363), 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, - [318077] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10114), 1, - anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, - anon_sym_COLON_COLON, - ACTIONS(13123), 1, - sym_identifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4358), 1, - sym_enumerator_list, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, - sym__scope_resolution, - ACTIONS(14281), 2, - anon_sym_class, - anon_sym_struct, - STATE(4296), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7586), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [318128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9365), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9367), 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, - [318155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9389), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9391), 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, - [318182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9369), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9371), 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, - [318209] = 13, + [317447] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, + ACTIONS(10390), 1, anon_sym_noexcept, - ACTIONS(10374), 1, + ACTIONS(10392), 1, anon_sym_throw, - ACTIONS(14245), 1, + ACTIONS(14256), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(14258), 1, anon_sym_requires, - ACTIONS(14283), 1, + ACTIONS(14262), 1, anon_sym_LBRACE, - STATE(9958), 1, + STATE(10082), 1, sym_trailing_return_type, - STATE(11663), 1, + STATE(11104), 1, sym_requires_clause, - STATE(8244), 2, + STATE(8273), 2, sym_lambda_specifier, aux_sym_lambda_declarator_repeat1, - STATE(9038), 2, + STATE(9057), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9064), 3, + STATE(9052), 3, sym__function_exception_specification, sym_noexcept, sym_throw_specifier, - ACTIONS(13841), 4, + ACTIONS(13834), 4, anon_sym_static, anon_sym_constexpr, anon_sym_mutable, anon_sym_consteval, - [318256] = 3, + [317494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 3, + ACTIONS(9409), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9375), 16, + ACTIONS(9411), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -715082,1037 +714050,951 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [318283] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(9576), 1, - anon_sym_LBRACE, - ACTIONS(10653), 1, - anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, - sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3862), 1, - sym_enumerator_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, - sym__scope_resolution, - ACTIONS(14285), 2, - anon_sym_class, - anon_sym_struct, - STATE(3060), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7582), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [318334] = 8, + [317521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14275), 1, - anon_sym_LBRACK, - STATE(8570), 1, - sym_parameter_list, - ACTIONS(9476), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8436), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9478), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [318371] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11878), 1, - sym_identifier, - ACTIONS(11880), 1, - anon_sym_LPAREN2, - ACTIONS(11882), 1, - anon_sym_STAR, - ACTIONS(11884), 1, - anon_sym_AMP_AMP, - ACTIONS(11886), 1, - anon_sym_AMP, - ACTIONS(11890), 1, - sym_primitive_type, - STATE(4670), 1, - sym__type_declarator, - STATE(5448), 1, - sym_pointer_type_declarator, - STATE(11657), 1, - sym_ms_based_modifier, - ACTIONS(11888), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5436), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [318418] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10320), 1, - anon_sym_LT, - STATE(8449), 1, - sym_template_argument_list, - ACTIONS(11754), 4, + ACTIONS(9377), 3, anon_sym___attribute, - anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6883), 12, + ACTIONS(9379), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [318451] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11929), 1, - sym_identifier, - ACTIONS(11931), 1, - anon_sym_LPAREN2, - ACTIONS(11933), 1, - anon_sym_STAR, - ACTIONS(11935), 1, - anon_sym_AMP_AMP, - ACTIONS(11937), 1, - anon_sym_AMP, - ACTIONS(11941), 1, - sym_primitive_type, - STATE(4770), 1, - sym__type_declarator, - STATE(5594), 1, - sym_pointer_type_declarator, - STATE(11053), 1, - sym_ms_based_modifier, - ACTIONS(11939), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(5593), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [318498] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(6572), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [318529] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(14287), 1, - anon_sym_LBRACE, - STATE(8252), 1, - sym_parameter_list, - STATE(10657), 1, - sym_trailing_return_type, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(8458), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9189), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [318576] = 12, - ACTIONS(14065), 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, + [317548] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14289), 1, + ACTIONS(14264), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [318621] = 12, - ACTIONS(14065), 1, + [317593] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14291), 1, + ACTIONS(14266), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [318666] = 14, + [317638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8649), 1, - sym_access_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9946), 2, - sym__class_name, - sym_qualified_type_identifier, - ACTIONS(13847), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [318715] = 15, + ACTIONS(14268), 1, + anon_sym_LBRACK_RBRACK, + ACTIONS(9593), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9595), 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, + [317667] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3256), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10114), 1, - anon_sym_LBRACE, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, sym_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, - sym__splice_specialization_specifier, - STATE(4358), 1, - sym_enumerator_list, - STATE(8676), 1, - sym__scope_resolution, - ACTIONS(14293), 2, - anon_sym_class, - anon_sym_struct, - STATE(4296), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6371), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [318766] = 6, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(9101), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [317714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(12277), 1, + ACTIONS(10325), 1, anon_sym_LT, - STATE(2648), 1, + STATE(8476), 1, sym_template_argument_list, - ACTIONS(7371), 2, + ACTIONS(11752), 4, anon_sym___attribute, anon_sym_COLON, - ACTIONS(5657), 14, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6899), 12, 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_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [318799] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14103), 1, - anon_sym_LF, - ACTIONS(14105), 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, - [318826] = 11, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [317747] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(11872), 1, + ACTIONS(11945), 1, anon_sym_STAR, - ACTIONS(11874), 1, + ACTIONS(11947), 1, anon_sym_AMP_AMP, - ACTIONS(11876), 1, + ACTIONS(11949), 1, anon_sym_AMP, - STATE(5227), 1, + STATE(5191), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(8961), 1, + STATE(8944), 1, sym__abstract_declarator, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - ACTIONS(9427), 6, + ACTIONS(9281), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [318869] = 15, + [317790] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8383), 1, + ACTIONS(8336), 1, anon_sym_LBRACE, - ACTIONS(11010), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13155), 1, sym_identifier, - STATE(2547), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2601), 1, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(2691), 1, + STATE(2702), 1, sym_enumerator_list, - STATE(8682), 1, + STATE(8744), 1, sym__scope_resolution, - ACTIONS(14295), 2, + ACTIONS(14270), 2, anon_sym_class, anon_sym_struct, - STATE(2520), 2, + STATE(2491), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2615), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318920] = 15, + [317841] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(2630), 1, + sym_template_argument_list, + ACTIONS(6559), 2, + anon_sym___attribute, + anon_sym_COLON, + ACTIONS(6566), 14, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [317874] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(11038), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(2104), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(2171), 1, + STATE(2151), 1, sym_enumerator_list, - STATE(8763), 1, + STATE(8665), 1, sym__scope_resolution, - ACTIONS(14297), 2, + ACTIONS(14272), 2, anon_sym_class, anon_sym_struct, - STATE(2147), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(2345), 2, + STATE(2333), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [318971] = 15, + [317925] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8624), 1, + ACTIONS(8628), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13102), 1, sym_identifier, - STATE(2742), 1, + STATE(2800), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(3039), 1, + STATE(2998), 1, sym_enumerator_list, - STATE(8686), 1, + STATE(8726), 1, sym__scope_resolution, - ACTIONS(14299), 2, + ACTIONS(14274), 2, anon_sym_class, anon_sym_struct, - STATE(2690), 2, + STATE(2697), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(2937), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [319022] = 15, + [317976] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9413), 1, + ACTIONS(9291), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13104), 1, sym_identifier, - STATE(3711), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(4263), 1, + STATE(4222), 1, sym_splice_specifier, - STATE(4379), 1, + STATE(4373), 1, sym_enumerator_list, - STATE(8675), 1, + STATE(8737), 1, sym__scope_resolution, - ACTIONS(14301), 2, + ACTIONS(14276), 2, anon_sym_class, anon_sym_struct, - STATE(3728), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(4051), 2, + STATE(4105), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [319073] = 15, + [318027] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8472), 1, + ACTIONS(8435), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(2638), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(2672), 1, sym__splice_specialization_specifier, - STATE(2796), 1, + STATE(2825), 1, sym_enumerator_list, - STATE(8687), 1, + STATE(8741), 1, sym__scope_resolution, - ACTIONS(14303), 2, + ACTIONS(14278), 2, anon_sym_class, anon_sym_struct, - STATE(2569), 2, + STATE(2552), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2678), 2, + STATE(2688), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [319124] = 15, + [318078] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8476), 1, + ACTIONS(8439), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(2605), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(2847), 1, + STATE(2821), 1, sym_enumerator_list, - STATE(8702), 1, + STATE(8746), 1, sym__scope_resolution, - ACTIONS(14305), 2, + ACTIONS(14280), 2, anon_sym_class, anon_sym_struct, - STATE(2571), 2, + STATE(2554), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2661), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [319175] = 15, + [318129] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9413), 1, + ACTIONS(9291), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13127), 1, sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(3901), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3893), 1, sym_enumerator_list, - STATE(8707), 1, + STATE(8750), 1, sym__scope_resolution, - ACTIONS(14307), 2, + ACTIONS(14282), 2, anon_sym_class, anon_sym_struct, - STATE(3665), 2, + STATE(3597), 2, sym__class_name, sym_qualified_type_identifier, - STATE(3728), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [319226] = 12, - ACTIONS(14065), 1, + [318180] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11922), 1, + sym_identifier, + ACTIONS(11924), 1, + anon_sym_LPAREN2, + ACTIONS(11926), 1, + anon_sym_STAR, + ACTIONS(11928), 1, + anon_sym_AMP_AMP, + ACTIONS(11930), 1, + anon_sym_AMP, + ACTIONS(11934), 1, + sym_primitive_type, + STATE(4700), 1, + sym__type_declarator, + STATE(5349), 1, + sym_pointer_type_declarator, + STATE(10861), 1, + sym_ms_based_modifier, + ACTIONS(11932), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(5346), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [318227] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14309), 1, + ACTIONS(14284), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319271] = 12, - ACTIONS(14065), 1, + [318272] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14252), 1, + anon_sym_LBRACK, + STATE(8587), 1, + sym_parameter_list, + ACTIONS(9451), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(8433), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9453), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [318309] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14311), 1, + ACTIONS(14286), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319316] = 12, - ACTIONS(14065), 1, + [318354] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + ACTIONS(6566), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [318385] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14313), 1, + ACTIONS(14288), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319361] = 13, + [318430] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(6463), 1, + anon_sym_COLON_COLON, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(13131), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4722), 1, + sym_enumerator_list, + STATE(5032), 1, + sym_splice_specifier, + STATE(8667), 1, + sym__scope_resolution, + ACTIONS(14290), 2, + anon_sym_class, + anon_sym_struct, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(5468), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318481] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - ACTIONS(11906), 1, + ACTIONS(11868), 1, anon_sym_STAR, - ACTIONS(11908), 1, + ACTIONS(11870), 1, anon_sym_AMP_AMP, - ACTIONS(11910), 1, + ACTIONS(11872), 1, anon_sym_AMP, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(4938), 1, + STATE(4896), 1, sym__type_declarator, - STATE(11304), 1, + STATE(11298), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [319408] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3104), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(8624), 1, - anon_sym_LBRACE, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(13137), 1, - sym_identifier, - STATE(2742), 1, - sym_splice_specifier, - STATE(2921), 1, - sym__splice_specialization_specifier, - STATE(3039), 1, - sym_enumerator_list, - STATE(8686), 1, - sym__scope_resolution, - ACTIONS(14315), 2, - anon_sym_class, - anon_sym_struct, - STATE(2934), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4708), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [319459] = 12, - ACTIONS(14065), 1, + [318528] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14317), 1, + ACTIONS(14292), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319504] = 13, + [318573] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8987), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8989), 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, + [318600] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8957), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [318647] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(9082), 1, + STATE(9129), 1, sym__type_declarator, - STATE(11156), 1, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [319551] = 12, - ACTIONS(14065), 1, + [318694] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14319), 1, + ACTIONS(14294), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319596] = 17, + [318739] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4676), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10160), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(14321), 1, - anon_sym_SEMI, - ACTIONS(14323), 1, - anon_sym_COLON, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(10077), 1, - sym_gnu_asm_expression, - STATE(10079), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [319651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(5657), 16, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - anon_sym_or, - anon_sym_and, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - [319682] = 3, - ACTIONS(14065), 1, + ACTIONS(13096), 1, + sym_identifier, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4389), 1, + sym_enumerator_list, + STATE(7353), 1, + sym_splice_specifier, + STATE(8710), 1, + sym__scope_resolution, + ACTIONS(14296), 2, + anon_sym_class, + anon_sym_struct, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7581), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [318790] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14173), 1, + ACTIONS(14220), 1, anon_sym_LF, - ACTIONS(14175), 18, + ACTIONS(14222), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -716131,14 +715013,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [319709] = 3, + [318817] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 3, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(14256), 1, + anon_sym_DASH_GT, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(14298), 1, + anon_sym_LBRACE, + STATE(10123), 1, + sym_trailing_return_type, + STATE(11237), 1, + sym_requires_clause, + STATE(8832), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9063), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9064), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [318864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9438), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(8907), 16, + ACTIONS(9440), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -716155,14 +715071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [319736] = 3, + [318891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 3, + ACTIONS(9413), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(7791), 16, + ACTIONS(9415), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -716179,86 +715095,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [319763] = 15, + [318918] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9413), 1, + ACTIONS(8435), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(4263), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(4379), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2825), 1, sym_enumerator_list, - STATE(8675), 1, + STATE(8741), 1, sym__scope_resolution, - ACTIONS(14325), 2, + ACTIONS(14300), 2, anon_sym_class, anon_sym_struct, - STATE(3728), 2, + STATE(2688), 2, sym_template_type, sym_splice_type_specifier, - STATE(6340), 2, + STATE(4537), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [319814] = 15, + [318969] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14110), 1, + anon_sym_LF, + ACTIONS(14112), 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, + [318996] = 12, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14238), 1, + anon_sym_AMP_AMP, + ACTIONS(14240), 1, + anon_sym_PIPE, + ACTIONS(14242), 1, + anon_sym_CARET, + ACTIONS(14244), 1, + anon_sym_AMP, + ACTIONS(14302), 1, + anon_sym_LF, + ACTIONS(14232), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14250), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14234), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14248), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [319041] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + ACTIONS(5637), 16, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + anon_sym_or, + anon_sym_and, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + [319072] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(11038), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13133), 1, + sym_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2151), 1, + sym_enumerator_list, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(14304), 2, + anon_sym_class, + anon_sym_struct, + STATE(2153), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(3994), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [319123] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(8401), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [319170] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(8336), 1, + anon_sym_LBRACE, + ACTIONS(10917), 1, + anon_sym_COLON_COLON, + ACTIONS(13155), 1, sym_identifier, - STATE(2104), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(2171), 1, + STATE(2702), 1, sym_enumerator_list, - STATE(8763), 1, + STATE(8744), 1, sym__scope_resolution, - ACTIONS(14327), 2, + ACTIONS(14306), 2, anon_sym_class, anon_sym_struct, - STATE(2147), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(3997), 2, + STATE(4348), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [319865] = 3, + [319221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 3, + ACTIONS(9475), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9447), 16, + ACTIONS(9477), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -716275,147 +715344,494 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [319892] = 12, - ACTIONS(14065), 1, + [319248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9417), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9419), 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, + [319275] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(13119), 1, + sym_identifier, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4989), 1, + sym_splice_specifier, + STATE(8748), 1, + sym__scope_resolution, + STATE(9298), 1, + sym_enumerator_list, + ACTIONS(14308), 2, + anon_sym_class, + anon_sym_struct, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(8979), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [319326] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14329), 1, + ACTIONS(14310), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [319937] = 12, - ACTIONS(14065), 1, + [319371] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(9131), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [319418] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14001), 1, + anon_sym_SLASH, + ACTIONS(14003), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14005), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14007), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14009), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14011), 1, anon_sym_AMP, - ACTIONS(14331), 1, - anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14312), 1, + anon_sym_RPAREN, + ACTIONS(13997), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(14269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(13999), 2, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14015), 2, anon_sym_GT, + anon_sym_LT, + ACTIONS(14017), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_LT, - [319982] = 15, + ACTIONS(14019), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [319467] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(11038), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(2104), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(2171), 1, + STATE(2151), 1, sym_enumerator_list, - STATE(8763), 1, + STATE(8665), 1, sym__scope_resolution, - ACTIONS(14333), 2, + ACTIONS(14314), 2, anon_sym_class, anon_sym_struct, - STATE(2147), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(4053), 2, + STATE(2310), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320033] = 12, - ACTIONS(14065), 1, + [319518] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14100), 1, + anon_sym_LF, + ACTIONS(14102), 18, + anon_sym_DASH, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(14335), 1, - anon_sym_LF, - ACTIONS(14251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + [319545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9421), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9423), 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, + [319572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9479), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9481), 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, + [319599] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14104), 1, + anon_sym_LF, + ACTIONS(14106), 18, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 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, - [320078] = 3, - ACTIONS(14065), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [319626] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, + anon_sym_COLON_COLON, + ACTIONS(13123), 1, + sym_identifier, + ACTIONS(13139), 1, + anon_sym_LBRACE, + STATE(6587), 1, + sym_splice_specifier, + STATE(7039), 1, + sym__splice_specialization_specifier, + STATE(7584), 1, + sym_enumerator_list, + STATE(8745), 1, + sym__scope_resolution, + ACTIONS(14316), 2, + anon_sym_class, + anon_sym_struct, + STATE(7040), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7319), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [319677] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4722), 1, + sym_enumerator_list, + STATE(8757), 1, + sym__scope_resolution, + ACTIONS(14318), 2, + anon_sym_class, + anon_sym_struct, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4613), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [319728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9483), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9485), 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, + [319755] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11848), 1, + sym_identifier, + ACTIONS(11850), 1, + anon_sym_LPAREN2, + ACTIONS(11852), 1, + anon_sym_STAR, + ACTIONS(11854), 1, + anon_sym_AMP_AMP, + ACTIONS(11856), 1, + anon_sym_AMP, + ACTIONS(11862), 1, + sym_primitive_type, + STATE(3156), 1, + sym_pointer_type_declarator, + STATE(9099), 1, + sym__type_declarator, + STATE(11150), 1, + sym_ms_based_modifier, + ACTIONS(11860), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(3145), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [319802] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9447), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9449), 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, + [319829] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(14185), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(11894), 1, + sym_identifier, + ACTIONS(11896), 1, + anon_sym_LPAREN2, + ACTIONS(11898), 1, + anon_sym_STAR, + ACTIONS(11900), 1, + anon_sym_AMP_AMP, + ACTIONS(11902), 1, + anon_sym_AMP, + ACTIONS(11906), 1, + sym_primitive_type, + STATE(8349), 1, + sym__type_declarator, + STATE(8546), 1, + sym_pointer_type_declarator, + STATE(11001), 1, + sym_ms_based_modifier, + ACTIONS(11904), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + STATE(8542), 5, + sym_parenthesized_type_declarator, + sym_attributed_type_declarator, + sym_function_type_declarator, + sym_array_type_declarator, + sym_reference_type_declarator, + [319876] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14162), 1, anon_sym_LF, - ACTIONS(14187), 18, + ACTIONS(14164), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -716434,634 +715850,486 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [320105] = 15, + [319903] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(11038), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13133), 1, + sym_identifier, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2151), 1, + sym_enumerator_list, + STATE(8665), 1, + sym__scope_resolution, + ACTIONS(14320), 2, + anon_sym_class, + anon_sym_struct, + STATE(2153), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4137), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [319954] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(8439), 1, + anon_sym_LBRACE, + ACTIONS(11081), 1, + anon_sym_COLON_COLON, + ACTIONS(13125), 1, sym_identifier, - STATE(2104), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2170), 1, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(2171), 1, + STATE(2821), 1, sym_enumerator_list, - STATE(8763), 1, + STATE(8746), 1, sym__scope_resolution, - ACTIONS(14337), 2, + ACTIONS(14322), 2, anon_sym_class, anon_sym_struct, - STATE(2147), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(2317), 2, + STATE(4416), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320156] = 14, + [320005] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(9520), 1, + anon_sym_LBRACE, + ACTIONS(10895), 1, + anon_sym_COLON_COLON, + ACTIONS(13147), 1, sym_identifier, - ACTIONS(13425), 1, + STATE(3030), 1, + sym__splice_specialization_specifier, + STATE(7400), 1, + sym_splice_specifier, + STATE(7705), 1, + sym_enumerator_list, + STATE(8705), 1, + sym__scope_resolution, + ACTIONS(14324), 2, + anon_sym_class, + anon_sym_struct, + STATE(3043), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(7565), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320056] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8660), 1, + STATE(8631), 1, sym_access_specifier, - STATE(8762), 1, + STATE(8729), 1, sym__scope_resolution, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, STATE(9481), 2, sym__class_name, sym_qualified_type_identifier, - ACTIONS(13847), 3, + ACTIONS(13854), 3, anon_sym_private, anon_sym_public, anon_sym_protected, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320205] = 15, + [320105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8997), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8999), 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, + [320132] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8472), 1, + ACTIONS(9520), 1, anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, sym_identifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2796), 1, + STATE(3889), 1, sym_enumerator_list, - STATE(8687), 1, + STATE(7198), 1, + sym_splice_specifier, + STATE(8754), 1, sym__scope_resolution, - ACTIONS(14339), 2, + ACTIONS(14326), 2, anon_sym_class, anon_sym_struct, - STATE(2678), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4444), 2, + STATE(7580), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320256] = 14, + [320183] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + ACTIONS(13127), 1, + sym_identifier, + STATE(3721), 1, sym_splice_specifier, - STATE(8619), 1, - sym_access_specifier, - STATE(8762), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(3893), 1, + sym_enumerator_list, + STATE(8750), 1, sym__scope_resolution, - STATE(3790), 2, + ACTIONS(14328), 2, + anon_sym_class, + anon_sym_struct, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(9763), 2, + STATE(6105), 2, sym__class_name, sym_qualified_type_identifier, - ACTIONS(13847), 3, - anon_sym_private, - anon_sym_public, - anon_sym_protected, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320305] = 13, + [320234] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11862), 1, + sym_primitive_type, + ACTIONS(11874), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11876), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11878), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(9130), 1, + STATE(3693), 1, sym__type_declarator, - STATE(11156), 1, + STATE(11034), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [320352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9333), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9335), 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, - [320379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(7966), 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, - [320406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9337), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9339), 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, - [320433] = 4, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14111), 1, - anon_sym_LF, - ACTIONS(14253), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(14113), 15, - anon_sym_DASH, - anon_sym_PLUS, - 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, - [320462] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14169), 1, - anon_sym_LF, - ACTIONS(14171), 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, - [320489] = 15, + [320281] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(10554), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(8628), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4802), 1, + ACTIONS(13102), 1, + sym_identifier, + STATE(2800), 1, sym_splice_specifier, - STATE(8705), 1, - sym__scope_resolution, - STATE(9319), 1, + STATE(2899), 1, + sym__splice_specialization_specifier, + STATE(2998), 1, sym_enumerator_list, - ACTIONS(14341), 2, + STATE(8726), 1, + sym__scope_resolution, + ACTIONS(14330), 2, anon_sym_class, anon_sym_struct, - STATE(3790), 2, + STATE(2937), 2, sym_template_type, sym_splice_type_specifier, - STATE(8996), 2, + STATE(4649), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320540] = 3, - ACTIONS(14065), 1, + [320332] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14111), 1, - anon_sym_LF, - ACTIONS(14113), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, + ACTIONS(14238), 1, anon_sym_AMP_AMP, + ACTIONS(14240), 1, anon_sym_PIPE, + ACTIONS(14242), 1, anon_sym_CARET, + ACTIONS(14244), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [320567] = 12, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14111), 1, + ACTIONS(14332), 1, anon_sym_LF, - ACTIONS(14113), 1, - anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, - anon_sym_AMP_AMP, - ACTIONS(14259), 1, - anon_sym_PIPE, - ACTIONS(14261), 1, - anon_sym_CARET, - ACTIONS(14263), 1, - anon_sym_AMP, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320612] = 15, + [320377] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9576), 1, + ACTIONS(10160), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3800), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(3862), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4389), 1, sym_enumerator_list, - STATE(8738), 1, + STATE(8722), 1, sym__scope_resolution, - ACTIONS(14343), 2, + ACTIONS(14334), 2, anon_sym_class, anon_sym_struct, - STATE(3060), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(6136), 2, + STATE(6363), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [320663] = 11, - ACTIONS(14065), 1, + [320428] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14111), 1, - anon_sym_LF, - ACTIONS(14259), 1, - anon_sym_PIPE, - ACTIONS(14261), 1, - anon_sym_CARET, - ACTIONS(14263), 1, - anon_sym_AMP, - ACTIONS(14113), 2, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(14269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14253), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(14267), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [320706] = 10, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14111), 1, - anon_sym_LF, - ACTIONS(14261), 1, + ACTIONS(14240), 1, + anon_sym_PIPE, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14251), 2, + ACTIONS(14336), 1, + anon_sym_LF, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14113), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320747] = 9, - ACTIONS(14065), 1, + [320473] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(14172), 1, anon_sym_LF, - ACTIONS(14263), 1, - anon_sym_AMP, - ACTIONS(14251), 2, + ACTIONS(14174), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(14269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14113), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(14267), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [320786] = 8, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14111), 1, - anon_sym_LF, - ACTIONS(14251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14265), 2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14253), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(14113), 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + [320500] = 12, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, + ACTIONS(14238), 1, anon_sym_AMP_AMP, + ACTIONS(14240), 1, anon_sym_PIPE, + ACTIONS(14242), 1, anon_sym_CARET, + ACTIONS(14244), 1, anon_sym_AMP, - [320823] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(13131), 1, - anon_sym_LBRACE, - ACTIONS(13168), 1, - sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, - sym__splice_specialization_specifier, - STATE(7594), 1, - sym_enumerator_list, - STATE(8700), 1, - sym__scope_resolution, - ACTIONS(14345), 2, - anon_sym_class, - anon_sym_struct, - STATE(7122), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7274), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [320874] = 7, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14111), 1, + ACTIONS(14338), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14269), 2, + ACTIONS(14246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - ACTIONS(14113), 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, - [320909] = 6, - ACTIONS(14065), 1, + [320545] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(14072), 1, anon_sym_LF, - ACTIONS(14251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14113), 11, + ACTIONS(14074), 15, + anon_sym_DASH, + anon_sym_PLUS, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -717073,88 +716341,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [320942] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3092), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(8476), 1, - anon_sym_LBRACE, - ACTIONS(11097), 1, - anon_sym_COLON_COLON, - ACTIONS(13100), 1, - sym_identifier, - STATE(2605), 1, - sym_splice_specifier, - STATE(2659), 1, - sym__splice_specialization_specifier, - STATE(2847), 1, - sym_enumerator_list, - STATE(8702), 1, - sym__scope_resolution, - ACTIONS(14347), 2, - anon_sym_class, - anon_sym_struct, - STATE(2661), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4487), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [320993] = 12, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, - anon_sym_AMP_AMP, - ACTIONS(14259), 1, - anon_sym_PIPE, - ACTIONS(14261), 1, - anon_sym_CARET, - ACTIONS(14263), 1, - anon_sym_AMP, - ACTIONS(14349), 1, - anon_sym_LF, - ACTIONS(14251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(14269), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(14267), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [321038] = 5, - ACTIONS(14065), 1, + [320574] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14111), 1, + ACTIONS(14072), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14074), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14113), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -717168,186 +716367,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [321069] = 12, - ACTIONS(14065), 1, + [320601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8404), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(8402), 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, + [320628] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14072), 1, + anon_sym_LF, + ACTIONS(14074), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14351), 1, - anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [321114] = 15, + [320673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(9413), 1, + ACTIONS(7972), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7970), 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, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(13104), 1, - sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3901), 1, - sym_enumerator_list, - STATE(8707), 1, - sym__scope_resolution, - ACTIONS(14353), 2, - anon_sym_class, - anon_sym_struct, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6053), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [321165] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14199), 1, - anon_sym_LF, - ACTIONS(14201), 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, - [321192] = 17, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [320700] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(4676), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(13904), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, + ACTIONS(13912), 1, anon_sym_EQ, - ACTIONS(14323), 1, - anon_sym_COLON, - ACTIONS(14355), 1, + ACTIONS(14340), 1, anon_sym_SEMI, - STATE(4564), 1, + ACTIONS(14342), 1, + anon_sym_COLON, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(9976), 1, + STATE(9868), 1, sym_gnu_asm_expression, - STATE(9977), 1, + STATE(9869), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, + STATE(10551), 2, sym_argument_list, sym_initializer_list, - [321247] = 15, + [320755] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(10554), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(14256), 1, + anon_sym_DASH_GT, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(14344), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4701), 1, - sym_enumerator_list, - STATE(8716), 1, - sym__scope_resolution, - ACTIONS(14357), 2, - anon_sym_class, - anon_sym_struct, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(4612), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [321298] = 6, + STATE(9956), 1, + sym_trailing_return_type, + STATE(10678), 1, + sym_requires_clause, + STATE(8238), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9022), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9017), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [320802] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(12277), 1, + ACTIONS(12267), 1, anon_sym_LT, - STATE(2648), 1, + STATE(2630), 1, sym_template_argument_list, - ACTIONS(6565), 2, + ACTIONS(7379), 2, anon_sym___attribute, anon_sym_COLON, - ACTIONS(6572), 14, + ACTIONS(5637), 14, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -717362,406 +716547,767 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [321331] = 13, + [320835] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3993), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(11065), 1, + anon_sym_COLON_COLON, + ACTIONS(13104), 1, sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(4222), 1, + sym_splice_specifier, + STATE(4373), 1, + sym_enumerator_list, + STATE(8737), 1, + sym__scope_resolution, + ACTIONS(14346), 2, + anon_sym_class, + anon_sym_struct, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6327), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [320886] = 11, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14072), 1, + anon_sym_LF, + ACTIONS(14240), 1, + anon_sym_PIPE, + ACTIONS(14242), 1, + anon_sym_CARET, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(9081), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [321378] = 15, + ACTIONS(14074), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(14232), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14250), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14234), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14248), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [320929] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, + ACTIONS(5138), 1, anon_sym_COLON_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, ACTIONS(11651), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(13098), 1, sym_identifier, - STATE(4802), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(5354), 1, sym__splice_specialization_specifier, - STATE(5979), 1, + STATE(5941), 1, sym_enumerator_list, - STATE(8757), 1, + STATE(8753), 1, sym__scope_resolution, - ACTIONS(14359), 2, + ACTIONS(14348), 2, anon_sym_class, anon_sym_struct, - STATE(5423), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(5568), 2, + STATE(5635), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321429] = 8, - ACTIONS(3), 1, + [320980] = 10, + ACTIONS(14045), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14275), 1, - anon_sym_LBRACK, - STATE(8570), 1, - sym_parameter_list, - ACTIONS(9439), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8436), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9441), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [321466] = 13, + ACTIONS(14072), 1, + anon_sym_LF, + ACTIONS(14242), 1, + anon_sym_CARET, + ACTIONS(14244), 1, + anon_sym_AMP, + ACTIONS(14232), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14250), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14074), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + ACTIONS(14234), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14248), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321021] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11856), 1, + ACTIONS(11848), 1, sym_identifier, - ACTIONS(11858), 1, + ACTIONS(11850), 1, anon_sym_LPAREN2, - ACTIONS(11860), 1, + ACTIONS(11852), 1, anon_sym_STAR, - ACTIONS(11862), 1, + ACTIONS(11854), 1, anon_sym_AMP_AMP, - ACTIONS(11864), 1, + ACTIONS(11856), 1, anon_sym_AMP, - ACTIONS(11870), 1, + ACTIONS(11862), 1, sym_primitive_type, - STATE(8343), 1, - sym__type_declarator, - STATE(8576), 1, + STATE(3156), 1, sym_pointer_type_declarator, - STATE(11686), 1, + STATE(9112), 1, + sym__type_declarator, + STATE(11150), 1, sym_ms_based_modifier, - ACTIONS(11868), 4, + ACTIONS(11860), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(8574), 5, + STATE(3145), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [321513] = 4, + [321068] = 12, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14238), 1, + anon_sym_AMP_AMP, + ACTIONS(14240), 1, + anon_sym_PIPE, + ACTIONS(14242), 1, + anon_sym_CARET, + ACTIONS(14244), 1, + anon_sym_AMP, + ACTIONS(14350), 1, + anon_sym_LF, + ACTIONS(14232), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14250), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14234), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14248), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14361), 1, - anon_sym_LBRACK_RBRACK, - ACTIONS(9697), 3, + ACTIONS(9337), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9699), 15, + ACTIONS(9339), 16, 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, - [321542] = 14, - ACTIONS(3), 1, + anon_sym_requires, + [321140] = 9, + ACTIONS(14045), 1, sym_comment, - ACTIONS(13917), 1, + ACTIONS(14072), 1, + anon_sym_LF, + ACTIONS(14244), 1, + anon_sym_AMP, + ACTIONS(14232), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14250), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14234), 3, + anon_sym_STAR, anon_sym_SLASH, - ACTIONS(13919), 1, + anon_sym_PERCENT, + ACTIONS(14074), 4, anon_sym_PIPE_PIPE, - ACTIONS(13921), 1, anon_sym_AMP_AMP, - ACTIONS(13923), 1, anon_sym_PIPE, - ACTIONS(13925), 1, anon_sym_CARET, - ACTIONS(13927), 1, - anon_sym_AMP, - ACTIONS(14363), 1, - anon_sym_RPAREN, - ACTIONS(13913), 2, + ACTIONS(14248), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321179] = 8, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14072), 1, + anon_sym_LF, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(13915), 2, - anon_sym_STAR, - anon_sym_PERCENT, - ACTIONS(13929), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(13931), 2, + ACTIONS(14250), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14234), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14248), 4, anon_sym_GT, - anon_sym_LT, - ACTIONS(13933), 2, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(13935), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - [321591] = 8, + anon_sym_LT, + ACTIONS(14074), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [321216] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14275), 1, - anon_sym_LBRACK, - STATE(8570), 1, - sym_parameter_list, - ACTIONS(9484), 2, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10325), 1, + anon_sym_LT, + STATE(8476), 1, + sym_template_argument_list, + ACTIONS(6568), 4, anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym___asm, - STATE(8436), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9486), 11, + ACTIONS(6561), 12, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, anon_sym_asm, anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [321628] = 13, + [321249] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(11880), 1, sym_identifier, - ACTIONS(11894), 1, + ACTIONS(11882), 1, anon_sym_LPAREN2, - ACTIONS(11896), 1, + ACTIONS(11884), 1, anon_sym_STAR, - ACTIONS(11898), 1, + ACTIONS(11886), 1, anon_sym_AMP_AMP, - ACTIONS(11900), 1, + ACTIONS(11888), 1, anon_sym_AMP, - ACTIONS(11904), 1, + ACTIONS(11892), 1, sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(8966), 1, + STATE(4977), 1, sym__type_declarator, - STATE(11156), 1, + STATE(5693), 1, + sym_pointer_type_declarator, + STATE(11715), 1, sym_ms_based_modifier, - ACTIONS(11902), 4, + ACTIONS(11890), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - STATE(3152), 5, + STATE(5687), 5, sym_parenthesized_type_declarator, sym_attributed_type_declarator, sym_function_type_declarator, sym_array_type_declarator, sym_reference_type_declarator, - [321675] = 15, + [321296] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14252), 1, + anon_sym_LBRACK, + STATE(8587), 1, + sym_parameter_list, + ACTIONS(9431), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(8433), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9433), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [321333] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9576), 1, + ACTIONS(9520), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(3800), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(3862), 1, + STATE(3889), 1, sym_enumerator_list, - STATE(8738), 1, + STATE(8708), 1, sym__scope_resolution, - ACTIONS(14365), 2, + ACTIONS(14352), 2, anon_sym_class, anon_sym_struct, - STATE(3060), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(3755), 2, + STATE(3716), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321726] = 15, + [321384] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10114), 1, + ACTIONS(10160), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(4272), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(4358), 1, + STATE(4389), 1, sym_enumerator_list, - STATE(8676), 1, + STATE(8722), 1, sym__scope_resolution, - ACTIONS(14367), 2, + ACTIONS(14354), 2, anon_sym_class, anon_sym_struct, - STATE(4075), 2, + STATE(4124), 2, sym__class_name, sym_qualified_type_identifier, - STATE(4296), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321777] = 12, - ACTIONS(14065), 1, + [321435] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(14255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, - anon_sym_AMP_AMP, - ACTIONS(14259), 1, - anon_sym_PIPE, - ACTIONS(14261), 1, - anon_sym_CARET, - ACTIONS(14263), 1, - anon_sym_AMP, - ACTIONS(14369), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, + sym_identifier, + ACTIONS(13089), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4461), 1, + sym_splice_specifier, + STATE(4722), 1, + sym_enumerator_list, + STATE(8695), 1, + sym__scope_resolution, + ACTIONS(14356), 2, + anon_sym_class, + anon_sym_struct, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(6399), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [321486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9369), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9371), 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, + [321513] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14252), 1, + anon_sym_LBRACK, + STATE(8587), 1, + sym_parameter_list, + ACTIONS(9389), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(8433), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9391), 11, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [321550] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9352), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9354), 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, + [321577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9373), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9375), 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, + [321604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(7874), 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, + [321631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9356), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9358), 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, + [321658] = 7, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14072), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [321822] = 12, - ACTIONS(14065), 1, + ACTIONS(14074), 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, + [321693] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14001), 1, + anon_sym_SLASH, + ACTIONS(14003), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14005), 1, + anon_sym_AMP_AMP, + ACTIONS(14007), 1, + anon_sym_PIPE, + ACTIONS(14009), 1, + anon_sym_CARET, + ACTIONS(14011), 1, + anon_sym_AMP, + ACTIONS(14358), 1, + anon_sym_RPAREN, + ACTIONS(13997), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(13999), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(14013), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14015), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(14017), 2, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(14019), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + [321742] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14371), 1, + ACTIONS(14360), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [321867] = 3, - ACTIONS(14065), 1, + [321787] = 6, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14221), 1, + ACTIONS(14072), 1, anon_sym_LF, - ACTIONS(14223), 18, + ACTIONS(14232), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14250), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14234), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14074), 11, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321820] = 3, + ACTIONS(10558), 1, + anon_sym_LF, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(10556), 18, anon_sym_DASH, anon_sym_PLUS, anon_sym_STAR, @@ -717780,122 +717326,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_LT_LT, anon_sym_GT_GT, - [321894] = 3, + [321847] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9409), 16, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(10831), 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, - anon_sym_requires, - [321921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9415), 3, - anon_sym___attribute, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14252), 1, anon_sym_LBRACK, + STATE(8587), 1, + sym_parameter_list, + ACTIONS(9471), 2, + anon_sym___attribute, anon_sym___asm, - ACTIONS(9417), 16, + STATE(8433), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9473), 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_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [321948] = 15, + [321884] = 12, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14236), 1, + anon_sym_PIPE_PIPE, + ACTIONS(14238), 1, + anon_sym_AMP_AMP, + ACTIONS(14240), 1, + anon_sym_PIPE, + ACTIONS(14242), 1, + anon_sym_CARET, + ACTIONS(14244), 1, + anon_sym_AMP, + ACTIONS(14362), 1, + anon_sym_LF, + ACTIONS(14232), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14246), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(14250), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14234), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14248), 4, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + [321929] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(10554), 1, + ACTIONS(9520), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(11089), 1, + anon_sym_COLON_COLON, + ACTIONS(13135), 1, sym_identifier, - STATE(3808), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4701), 1, - sym_enumerator_list, - STATE(5157), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(8756), 1, + STATE(3889), 1, + sym_enumerator_list, + STATE(8708), 1, sym__scope_resolution, - ACTIONS(14373), 2, + ACTIONS(14364), 2, anon_sym_class, anon_sym_struct, - STATE(3790), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(5468), 2, + STATE(6133), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [321999] = 3, - ACTIONS(3), 1, + [321980] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14072), 1, + anon_sym_LF, + ACTIONS(14232), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14234), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14074), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_LT, + anon_sym_LT_LT, + anon_sym_GT_GT, + [322011] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(9419), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9421), 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, - [322026] = 3, + ACTIONS(14082), 1, + anon_sym_LF, + ACTIONS(14084), 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, + [322038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9423), 3, + ACTIONS(9385), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9425), 16, + ACTIONS(9387), 16, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -717912,422 +717498,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [322053] = 12, - ACTIONS(14065), 1, + [322065] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, - anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, - anon_sym_AMP_AMP, - ACTIONS(14259), 1, - anon_sym_PIPE, - ACTIONS(14261), 1, - anon_sym_CARET, - ACTIONS(14263), 1, - anon_sym_AMP, - ACTIONS(14375), 1, + ACTIONS(14166), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14168), 18, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(14269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14253), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_LT, - [322098] = 12, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14255), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, anon_sym_PIPE, - ACTIONS(14261), 1, anon_sym_CARET, - ACTIONS(14263), 1, anon_sym_AMP, - ACTIONS(14377), 1, - anon_sym_LF, - ACTIONS(14251), 2, - anon_sym_DASH, - anon_sym_PLUS, - ACTIONS(14265), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(14253), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(14267), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [322143] = 12, - ACTIONS(14065), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + [322092] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(14255), 1, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, - ACTIONS(14257), 1, + ACTIONS(14238), 1, anon_sym_AMP_AMP, - ACTIONS(14259), 1, + ACTIONS(14240), 1, anon_sym_PIPE, - ACTIONS(14261), 1, + ACTIONS(14242), 1, anon_sym_CARET, - ACTIONS(14263), 1, + ACTIONS(14244), 1, anon_sym_AMP, - ACTIONS(14379), 1, + ACTIONS(14366), 1, anon_sym_LF, - ACTIONS(14251), 2, + ACTIONS(14232), 2, anon_sym_DASH, anon_sym_PLUS, - ACTIONS(14265), 2, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(14269), 2, + ACTIONS(14250), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(14253), 3, + ACTIONS(14234), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(14267), 4, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - [322188] = 3, + [322137] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(8422), 16, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13902), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13904), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13912), 1, anon_sym_EQ, + ACTIONS(14342), 1, + anon_sym_COLON, + ACTIONS(14368), 1, + anon_sym_SEMI, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(9886), 1, + sym_gnu_asm_expression, + STATE(9887), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [322215] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(14245), 1, - anon_sym_DASH_GT, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(14381), 1, - anon_sym_LBRACE, - STATE(10012), 1, - sym_trailing_return_type, - STATE(11133), 1, - sym_requires_clause, - STATE(8834), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9027), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9066), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [322262] = 15, + STATE(10551), 2, + sym_argument_list, + sym_initializer_list, + [322192] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13403), 1, sym_identifier, - ACTIONS(13154), 1, + ACTIONS(13407), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4504), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(4701), 1, - sym_enumerator_list, - STATE(8710), 1, + STATE(8647), 1, + sym_access_specifier, + STATE(8729), 1, sym__scope_resolution, - ACTIONS(14383), 2, - anon_sym_class, - anon_sym_struct, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(6379), 2, + STATE(9822), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + ACTIONS(13854), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [322313] = 3, - ACTIONS(10564), 1, - anon_sym_LF, - ACTIONS(14065), 1, + [322241] = 12, + ACTIONS(14045), 1, sym_comment, - ACTIONS(10566), 18, - anon_sym_DASH, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(14236), 1, anon_sym_PIPE_PIPE, + ACTIONS(14238), 1, anon_sym_AMP_AMP, + ACTIONS(14240), 1, anon_sym_PIPE, + ACTIONS(14242), 1, anon_sym_CARET, + ACTIONS(14244), 1, anon_sym_AMP, + ACTIONS(14370), 1, + anon_sym_LF, + ACTIONS(14232), 2, + anon_sym_DASH, + anon_sym_PLUS, + ACTIONS(14246), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(14250), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(14234), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14248), 4, anon_sym_GT, anon_sym_GT_EQ, anon_sym_LT_EQ, anon_sym_LT, - anon_sym_LT_LT, - anon_sym_GT_GT, - [322340] = 3, + [322286] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8653), 1, + sym_access_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9486), 2, + sym__class_name, + sym_qualified_type_identifier, + ACTIONS(13854), 3, + anon_sym_private, + anon_sym_public, + anon_sym_protected, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [322335] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(9298), 16, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(958), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13916), 1, + anon_sym_try, + ACTIONS(14372), 1, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + STATE(784), 1, + sym_compound_statement, + STATE(786), 1, + sym_try_statement, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(9831), 1, + sym_gnu_asm_expression, + STATE(9832), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [322367] = 3, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [322389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 3, + ACTIONS(8957), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(8915), 16, + ACTIONS(8959), 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_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [322394] = 8, + [322415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14275), 1, - anon_sym_LBRACK, - STATE(8570), 1, - sym_parameter_list, - ACTIONS(9300), 2, + ACTIONS(8961), 1, anon_sym___attribute, - anon_sym___asm, - STATE(8436), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9302), 11, + ACTIONS(8963), 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_asm, - anon_sym___asm__, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [322431] = 13, + anon_sym_requires, + [322441] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14374), 1, sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11904), 1, - sym_primitive_type, - ACTIONS(11912), 1, - anon_sym_STAR, - ACTIONS(11914), 1, - anon_sym_AMP_AMP, - ACTIONS(11916), 1, - anon_sym_AMP, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(3698), 1, - sym__type_declarator, - STATE(11037), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [322478] = 13, + ACTIONS(14376), 1, + anon_sym_COLON_COLON, + ACTIONS(14378), 1, + anon_sym_template, + STATE(3758), 1, + sym_dependent_field_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3815), 1, + sym_template_method, + STATE(3817), 1, + sym_qualified_field_identifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8364), 1, + sym__scope_resolution, + STATE(10457), 1, + sym_operator_name, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [322491] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(11892), 1, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14142), 1, + anon_sym_COLON_COLON, + ACTIONS(14380), 1, sym_identifier, - ACTIONS(11894), 1, - anon_sym_LPAREN2, - ACTIONS(11896), 1, - anon_sym_STAR, - ACTIONS(11898), 1, - anon_sym_AMP_AMP, - ACTIONS(11900), 1, - anon_sym_AMP, - ACTIONS(11904), 1, - sym_primitive_type, - STATE(3180), 1, - sym_pointer_type_declarator, - STATE(9104), 1, - sym__type_declarator, - STATE(11156), 1, - sym_ms_based_modifier, - ACTIONS(11902), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - STATE(3152), 5, - sym_parenthesized_type_declarator, - sym_attributed_type_declarator, - sym_function_type_declarator, - sym_array_type_declarator, - sym_reference_type_declarator, - [322525] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - STATE(7987), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14387), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14385), 12, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [322555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9888), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9890), 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, - [322581] = 3, + ACTIONS(14382), 1, + anon_sym_template, + STATE(3758), 1, + sym_dependent_field_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3815), 1, + sym_template_method, + STATE(3817), 1, + sym_qualified_field_identifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8365), 1, + sym__scope_resolution, + STATE(10424), 1, + sym_operator_name, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [322541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8893), 1, + ACTIONS(8965), 1, anon_sym___attribute, - ACTIONS(8895), 17, + ACTIONS(8967), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -718345,114 +717872,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [322607] = 3, + [322567] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8901), 1, + ACTIONS(8404), 1, anon_sym___attribute, - ACTIONS(8903), 17, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 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, - [322633] = 15, + [322601] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(14235), 1, + ACTIONS(14376), 1, anon_sym_COLON_COLON, - ACTIONS(14389), 1, + ACTIONS(14384), 1, sym_identifier, - ACTIONS(14391), 1, - anon_sym_template, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5726), 1, - sym_template_method, - STATE(5728), 1, - sym_dependent_field_identifier, - STATE(5730), 1, - sym_qualified_field_identifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8371), 1, + STATE(8364), 1, sym__scope_resolution, - STATE(10434), 1, + STATE(9823), 1, + sym_field_initializer, + STATE(10457), 1, sym_operator_name, - STATE(10768), 5, + STATE(9589), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [322683] = 9, + [322649] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, - anon_sym_LBRACK, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - STATE(8051), 1, - sym_trailing_return_type, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 8, - anon_sym_RPAREN, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10560), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, + ACTIONS(13824), 1, + anon_sym_try, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(14386), 1, anon_sym_SEMI, - anon_sym_COLON, + STATE(3367), 1, + sym_compound_statement, + STATE(3368), 1, + sym_try_statement, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(10141), 1, + sym_gnu_asm_expression, + STATE(10142), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [322703] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13983), 1, + anon_sym_try, + ACTIONS(14388), 1, + anon_sym_SEMI, + STATE(982), 1, + sym_compound_statement, + STATE(984), 1, + sym_try_statement, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(9829), 1, + sym_gnu_asm_expression, + STATE(9839), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [322757] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4674), 1, anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13904), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13912), 1, anon_sym_EQ, - anon_sym_try, - [322721] = 9, + ACTIONS(13975), 1, + anon_sym_SEMI, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(9976), 1, + sym_gnu_asm_expression, + STATE(9981), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10551), 2, + sym_argument_list, + sym_initializer_list, + [322809] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym_LBRACK, - ACTIONS(10382), 1, + ACTIONS(10411), 1, anon_sym_requires, - ACTIONS(10624), 1, + ACTIONS(10579), 1, anon_sym_DASH_GT, - STATE(8057), 1, + STATE(8050), 1, sym_trailing_return_type, - ACTIONS(8160), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8358), 2, + STATE(8317), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 8, + ACTIONS(7970), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -718461,23 +718072,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [322759] = 7, + [322847] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(7972), 1, anon_sym___attribute, - ACTIONS(10921), 1, + ACTIONS(10933), 1, anon_sym_requires, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 10, + ACTIONS(7970), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -718488,632 +718099,949 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [322793] = 15, + [322881] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13979), 1, + anon_sym_try, + ACTIONS(14390), 1, + anon_sym_SEMI, + STATE(749), 1, + sym_compound_statement, + STATE(750), 1, + sym_try_statement, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(10074), 1, + sym_gnu_asm_expression, + STATE(10081), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [322935] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(14205), 1, + ACTIONS(14376), 1, anon_sym_COLON_COLON, - ACTIONS(14393), 1, + ACTIONS(14384), 1, sym_identifier, - ACTIONS(14395), 1, - anon_sym_template, - STATE(3768), 1, - sym_template_method, - STATE(3780), 1, - sym_dependent_field_identifier, - STATE(3785), 1, - sym_qualified_field_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8375), 1, + STATE(8364), 1, sym__scope_resolution, - STATE(10254), 1, + STATE(10402), 1, + sym_field_initializer, + STATE(10457), 1, sym_operator_name, - STATE(10768), 5, + STATE(9589), 2, + sym_template_method, + sym_qualified_field_identifier, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [322843] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10186), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10184), 13, - 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_GT2, - anon_sym_try, - anon_sym_requires, - [322877] = 15, + [322983] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(14399), 1, - sym_identifier, - ACTIONS(14401), 1, + ACTIONS(14148), 1, anon_sym_COLON_COLON, - ACTIONS(14403), 1, + ACTIONS(14392), 1, + sym_identifier, + ACTIONS(14394), 1, anon_sym_template, - STATE(3768), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(5832), 1, sym_template_method, - STATE(3780), 1, + STATE(5844), 1, sym_dependent_field_identifier, - STATE(3785), 1, + STATE(5857), 1, sym_qualified_field_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8377), 1, + STATE(8376), 1, sym__scope_resolution, - STATE(10296), 1, + STATE(10367), 1, sym_operator_name, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [322927] = 3, + [323033] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 1, - anon_sym___attribute, - ACTIONS(8956), 17, - anon_sym_COMMA, + ACTIONS(8987), 1, + anon_sym_LBRACK, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + STATE(8023), 1, + sym_trailing_return_type, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 8, 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_GT2, anon_sym_try, - anon_sym_requires, - [322953] = 7, + [323071] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(7876), 1, anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10196), 13, - anon_sym_COMMA, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(12315), 1, + anon_sym_requires, + STATE(8019), 1, + sym_trailing_return_type, + ACTIONS(12312), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 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_GT2, anon_sym_try, - anon_sym_requires, - [322987] = 7, + [323109] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(11783), 1, anon_sym_LBRACK, - STATE(4330), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8243), 1, + STATE(8515), 1, sym__function_declarator_seq, - ACTIONS(10200), 13, + STATE(8995), 1, + sym__abstract_declarator, + ACTIONS(9281), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [323151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8905), 1, + anon_sym___attribute, + ACTIONS(8907), 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, - [323021] = 5, + [323177] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9139), 1, - anon_sym___attribute, - ACTIONS(10859), 2, + ACTIONS(7972), 1, + anon_sym_LBRACK, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(13144), 1, + anon_sym_requires, + STATE(8022), 1, + sym_trailing_return_type, + ACTIONS(13141), 2, anon_sym_final, anon_sym_override, - STATE(8444), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(9141), 13, - anon_sym_DOT_DOT_DOT, + STATE(8317), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 8, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [323215] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9293), 1, + anon_sym___attribute, + ACTIONS(14396), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(14398), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9295), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [323051] = 7, + [323245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10190), 1, + ACTIONS(8915), 1, anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10188), 13, + ACTIONS(8917), 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_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [323085] = 17, + [323271] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(13904), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(13987), 1, - anon_sym_try, - ACTIONS(14405), 1, + ACTIONS(14340), 1, anon_sym_SEMI, - STATE(912), 1, - sym_compound_statement, - STATE(913), 1, - sym_try_statement, - STATE(4564), 1, + ACTIONS(14400), 1, + anon_sym_EQ, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(10168), 1, + STATE(9868), 1, sym_gnu_asm_expression, - STATE(10188), 1, + STATE(9869), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + STATE(9935), 1, + sym_initializer_list, + STATE(10551), 1, + sym_argument_list, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [323139] = 7, + [323325] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(10194), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13904), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(4330), 1, + ACTIONS(13912), 1, + anon_sym_EQ, + ACTIONS(13981), 1, + anon_sym_SEMI, + STATE(4614), 1, sym_parameter_list, - STATE(8243), 1, + STATE(8583), 1, sym__function_declarator_seq, - ACTIONS(10192), 13, - anon_sym_COMMA, + STATE(9684), 1, + sym_gnu_asm_expression, + STATE(10107), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10551), 2, + sym_argument_list, + sym_initializer_list, + [323377] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8404), 1, + anon_sym_LBRACK, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(13238), 1, + anon_sym_requires, + STATE(7993), 1, + sym_trailing_return_type, + ACTIONS(13235), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8267), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 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_try, + [323415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8923), 1, + anon_sym___attribute, + ACTIONS(8925), 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, - [323173] = 7, + [323441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(8923), 1, anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10204), 13, + ACTIONS(8925), 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_or, + anon_sym_and, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [323207] = 7, + [323467] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10174), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(8987), 1, anon_sym_LBRACK, - STATE(4330), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10172), 13, - anon_sym_COMMA, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + ACTIONS(13829), 1, + anon_sym_requires, + STATE(8025), 1, + sym_trailing_return_type, + ACTIONS(13826), 2, + anon_sym_final, + anon_sym_override, + STATE(8109), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8305), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 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_try, + [323505] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8923), 1, + anon_sym___attribute, + ACTIONS(8925), 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, - [323241] = 7, + [323531] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(8987), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8533), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 10, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(14397), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + anon_sym_try, + [323565] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9395), 1, anon_sym_LBRACK, - STATE(4330), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + STATE(3233), 1, sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10208), 13, + ACTIONS(9451), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(8475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9453), 10, 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_RBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [323601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9121), 1, + anon_sym___attribute, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, + STATE(8427), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9123), 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, anon_sym_requires, - [323275] = 15, + [323631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14051), 1, - anon_sym_COLON_COLON, - ACTIONS(14407), 1, - sym_identifier, - ACTIONS(14409), 1, - anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(5709), 1, - sym_template_method, - STATE(5713), 1, - sym_dependent_field_identifier, - STATE(5714), 1, - sym_qualified_field_identifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8388), 1, - sym__scope_resolution, - STATE(10211), 1, - sym_operator_name, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [323325] = 16, + ACTIONS(8929), 1, + anon_sym___attribute, + ACTIONS(8931), 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, + [323657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(8933), 1, + anon_sym___attribute, + ACTIONS(8935), 17, anon_sym_COMMA, - ACTIONS(13939), 1, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(13941), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_SEMI, - ACTIONS(13945), 1, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(13947), 1, anon_sym_EQ, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9730), 1, - sym_gnu_asm_expression, - STATE(9731), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [323377] = 17, + anon_sym_or, + anon_sym_and, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [323683] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(1113), 1, + ACTIONS(10564), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, + ACTIONS(13798), 1, + anon_sym_try, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14083), 1, - anon_sym_try, - ACTIONS(14411), 1, + ACTIONS(14402), 1, anon_sym_SEMI, - STATE(684), 1, + STATE(3449), 1, sym_compound_statement, - STATE(685), 1, + STATE(3450), 1, sym_try_statement, - STATE(4564), 1, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(9809), 1, + STATE(9797), 1, sym_gnu_asm_expression, - STATE(9810), 1, + STATE(9798), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [323431] = 15, + [323737] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(14141), 1, + ACTIONS(14078), 1, anon_sym_COLON_COLON, - ACTIONS(14413), 1, + ACTIONS(14404), 1, sym_identifier, - ACTIONS(14415), 1, + ACTIONS(14406), 1, anon_sym_template, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(5788), 1, - sym_dependent_field_identifier, - STATE(5794), 1, - sym_template_method, - STATE(5842), 1, + STATE(5864), 1, sym_qualified_field_identifier, - STATE(8222), 1, + STATE(5921), 1, + sym_template_method, + STATE(5926), 1, + sym_dependent_field_identifier, + STATE(8157), 1, sym_splice_specifier, - STATE(8391), 1, + STATE(8397), 1, sym__scope_resolution, - STATE(10416), 1, + STATE(10220), 1, sym_operator_name, - STATE(10768), 5, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [323481] = 16, + [323787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9593), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9595), 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, + [323813] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14410), 2, + anon_sym___attribute__, + anon_sym___attribute, + ACTIONS(14415), 2, + anon_sym_alignas, + anon_sym__Alignas, + STATE(8399), 3, + sym_attribute_specifier, + sym_alignas_qualifier, + aux_sym__class_declaration_repeat1, + ACTIONS(14413), 4, + anon_sym_COLON_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_COLON, + ACTIONS(14408), 7, + anon_sym_COLON, + anon_sym___declspec, + sym_identifier, + anon_sym_decltype, + anon_sym_final, + anon_sym_override, + anon_sym_template, + [323845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9329), 1, + anon_sym___attribute, + ACTIONS(14398), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9331), 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, + [323873] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9395), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + STATE(3233), 1, + sym_parameter_list, + ACTIONS(9471), 2, + anon_sym___attribute, + anon_sym___asm, + STATE(8475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9473), 10, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [323909] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(4676), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(13904), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13906), 1, + anon_sym_SEMI, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, + ACTIONS(13912), 1, anon_sym_EQ, - ACTIONS(13985), 1, - anon_sym_SEMI, - STATE(4564), 1, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(9692), 1, - sym_gnu_asm_expression, STATE(9729), 1, + sym_gnu_asm_expression, + STATE(9733), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, + STATE(10551), 2, sym_argument_list, sym_initializer_list, - [323533] = 14, + [323961] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(14401), 1, + ACTIONS(5965), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13558), 1, anon_sym_COLON_COLON, - ACTIONS(14417), 1, + ACTIONS(14418), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8377), 1, + STATE(7987), 1, sym__scope_resolution, - STATE(10296), 1, - sym_operator_name, - STATE(10582), 1, - sym_field_initializer, - STATE(9461), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(10768), 5, + STATE(8157), 1, + sym_splice_specifier, + ACTIONS(5967), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(10559), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [323581] = 16, + [324007] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(4676), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13939), 1, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13961), 1, + anon_sym_try, + ACTIONS(14420), 1, + anon_sym_SEMI, + STATE(470), 1, + sym_compound_statement, + STATE(471), 1, + sym_try_statement, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(10053), 1, + sym_gnu_asm_expression, + STATE(10055), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [324061] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10639), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13787), 1, + anon_sym_try, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(14321), 1, + ACTIONS(14422), 1, anon_sym_SEMI, - STATE(4564), 1, + STATE(2806), 1, + sym_compound_statement, + STATE(2809), 1, + sym_try_statement, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(10077), 1, + STATE(10022), 1, sym_gnu_asm_expression, - STATE(10079), 1, + STATE(10024), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [323633] = 3, + [324115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 1, + ACTIONS(8937), 1, anon_sym___attribute, - ACTIONS(8994), 17, + ACTIONS(8939), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719131,157 +719059,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [323659] = 7, + [324141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(8941), 1, anon_sym___attribute, - ACTIONS(13188), 1, - anon_sym_requires, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 10, + ACTIONS(8943), 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, - [323693] = 3, + anon_sym_requires, + [324167] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9697), 3, - anon_sym___attribute, + ACTIONS(9395), 1, anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + STATE(3233), 1, + sym_parameter_list, + ACTIONS(9431), 2, + anon_sym___attribute, anon_sym___asm, - ACTIONS(9699), 15, + STATE(8475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9433), 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, - [323719] = 7, + [324203] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13904), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13912), 1, + anon_sym_EQ, + ACTIONS(13957), 1, + anon_sym_SEMI, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(9953), 1, + sym_gnu_asm_expression, + STATE(9954), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10551), 2, + sym_argument_list, + sym_initializer_list, + [324255] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(9395), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + STATE(3233), 1, + sym_parameter_list, + ACTIONS(9389), 2, anon_sym___attribute, - ACTIONS(13236), 1, - anon_sym_requires, - ACTIONS(13202), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 10, + anon_sym___asm, + STATE(8475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9391), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, + anon_sym_RBRACK, + anon_sym_asm, + anon_sym___asm__, anon_sym_try, - [323753] = 3, + [324291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8992), 1, + ACTIONS(10325), 1, + anon_sym_LT, + STATE(8476), 1, + sym_template_argument_list, + ACTIONS(9633), 3, anon_sym___attribute, - ACTIONS(8994), 17, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9635), 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, - [323779] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14401), 1, - anon_sym_COLON_COLON, - ACTIONS(14417), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8377), 1, - sym__scope_resolution, - STATE(9879), 1, - sym_field_initializer, - STATE(10296), 1, - sym_operator_name, - STATE(9461), 2, - sym_template_method, - sym_qualified_field_identifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [323827] = 7, + [324321] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(7876), 1, anon_sym___attribute, - ACTIONS(13485), 1, + ACTIONS(13175), 1, anon_sym_requires, - ACTIONS(13396), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 10, + ACTIONS(7874), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719292,23 +719226,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [323861] = 7, + [324355] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(7972), 1, anon_sym___attribute, - ACTIONS(14422), 1, + ACTIONS(13223), 1, anon_sym_requires, - ACTIONS(14419), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 10, + ACTIONS(7970), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719319,23 +719253,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [323895] = 7, + [324389] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 1, + ACTIONS(8404), 1, anon_sym___attribute, - ACTIONS(14428), 1, + ACTIONS(13469), 1, anon_sym_requires, - ACTIONS(14425), 2, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8601), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8915), 10, + ACTIONS(8402), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719346,136 +719280,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [323929] = 8, + [324423] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(3140), 1, - sym_parameter_list, - ACTIONS(9300), 2, + ACTIONS(8987), 1, anon_sym___attribute, - anon_sym___asm, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9302), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [323965] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 1, - anon_sym_LBRACK, - ACTIONS(10382), 1, + ACTIONS(14427), 1, anon_sym_requires, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - STATE(7999), 1, - sym_trailing_return_type, - ACTIONS(8160), 2, + ACTIONS(14424), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 8, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [324003] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(3140), 1, - sym_parameter_list, - ACTIONS(9476), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9478), 10, + ACTIONS(8989), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [324039] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, anon_sym_LPAREN2, - STATE(3140), 1, - sym_parameter_list, - ACTIONS(9484), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9486), 10, - anon_sym_COMMA, - anon_sym_RPAREN, 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_GT2, anon_sym_try, - [324075] = 7, + [324457] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 1, + ACTIONS(8997), 1, anon_sym___attribute, - ACTIONS(10921), 1, + ACTIONS(14433), 1, anon_sym_requires, - ACTIONS(10859), 2, + ACTIONS(14430), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8601), 2, + STATE(8506), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8915), 10, + ACTIONS(8999), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719486,93 +719334,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [324109] = 17, + [324491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(9791), 3, + anon_sym___attribute, + anon_sym_LBRACK, anon_sym___asm, - ACTIONS(10572), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13819), 1, - anon_sym_try, - ACTIONS(13937), 1, + ACTIONS(9793), 15, anon_sym_COMMA, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14431), 1, - anon_sym_SEMI, - STATE(3254), 1, - sym_compound_statement, - STATE(3255), 1, - sym_try_statement, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(10162), 1, - sym_gnu_asm_expression, - STATE(10163), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [324163] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, - anon_sym_LBRACK, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13161), 1, - anon_sym_requires, - STATE(8035), 1, - sym_trailing_return_type, - ACTIONS(13158), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8358), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 8, 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, - [324201] = 9, + [324517] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(8404), 1, anon_sym_LBRACK, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(12418), 1, + ACTIONS(10411), 1, anon_sym_requires, - STATE(8013), 1, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + STATE(8011), 1, sym_trailing_return_type, - ACTIONS(12415), 2, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8313), 2, + STATE(8267), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 8, + ACTIONS(8402), 8, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, @@ -719581,38 +719386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [324239] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14435), 2, - anon_sym___attribute__, - anon_sym___attribute, - ACTIONS(14440), 2, - anon_sym_alignas, - anon_sym__Alignas, - STATE(8412), 3, - sym_attribute_specifier, - sym_alignas_qualifier, - aux_sym__class_declaration_repeat1, - ACTIONS(14438), 4, - anon_sym_COLON_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_LBRACK_COLON, - ACTIONS(14433), 7, - anon_sym_COLON, - anon_sym___declspec, - sym_identifier, - anon_sym_decltype, - anon_sym_final, - anon_sym_override, - anon_sym_template, - [324271] = 3, + [324555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8885), 1, + ACTIONS(3168), 1, anon_sym___attribute, - ACTIONS(8887), 17, + ACTIONS(3166), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719630,12 +719409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324297] = 3, + [324581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 1, + ACTIONS(3157), 1, anon_sym___attribute, - ACTIONS(8944), 17, + ACTIONS(3155), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719653,95 +719432,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324323] = 3, + [324607] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, - anon_sym___attribute, - ACTIONS(3161), 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, + ACTIONS(9395), 1, 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, - [324349] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14217), 1, - anon_sym_COLON_COLON, - ACTIONS(14393), 1, - sym_identifier, - ACTIONS(14443), 1, - anon_sym_template, - STATE(3768), 1, - sym_template_method, - STATE(3780), 1, - sym_dependent_field_identifier, - STATE(3785), 1, - sym_qualified_field_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8416), 1, - sym__scope_resolution, - STATE(10412), 1, - sym_operator_name, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [324399] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10320), 1, - anon_sym_LT, - STATE(8449), 1, - sym_template_argument_list, - ACTIONS(9650), 3, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + STATE(3233), 1, + sym_parameter_list, + ACTIONS(9397), 2, anon_sym___attribute, - anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9652), 13, + STATE(8475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9399), 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_RBRACK, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [324429] = 3, + [324643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8921), 1, + ACTIONS(9011), 1, anon_sym___attribute, - ACTIONS(8923), 17, + ACTIONS(9013), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719759,49 +719483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324455] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14321), 1, - anon_sym_SEMI, - ACTIONS(14445), 1, - anon_sym_EQ, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(10077), 1, - sym_gnu_asm_expression, - STATE(10079), 1, - aux_sym_declaration_repeat1, - STATE(10114), 1, - sym_initializer_list, - STATE(10418), 1, - sym_argument_list, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [324509] = 3, + [324669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8996), 1, + ACTIONS(8953), 1, anon_sym___attribute, - ACTIONS(8998), 17, + ACTIONS(8955), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719819,35 +719506,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324535] = 3, + [324695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(7876), 1, anon_sym___attribute, - ACTIONS(3153), 17, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 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, - [324561] = 3, + [324729] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14186), 1, + anon_sym_COLON_COLON, + ACTIONS(14380), 1, + sym_identifier, + ACTIONS(14436), 1, + anon_sym_template, + STATE(3758), 1, + sym_dependent_field_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(3815), 1, + sym_template_method, + STATE(3817), 1, + sym_qualified_field_identifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8425), 1, + sym__scope_resolution, + STATE(10376), 1, + sym_operator_name, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [324779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8950), 1, + ACTIONS(9015), 1, anon_sym___attribute, - ACTIONS(8952), 17, + ACTIONS(9017), 17, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -719865,535 +719591,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324587] = 3, + [324805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 1, + ACTIONS(9129), 1, anon_sym___attribute, - ACTIONS(9013), 17, + ACTIONS(14438), 2, + anon_sym_final, + anon_sym_override, + STATE(8427), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + ACTIONS(9131), 13, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_SEMI, anon_sym___attribute__, + anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_EQ, - anon_sym_or, - anon_sym_and, - anon_sym_final, - anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324613] = 3, + [324835] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9000), 1, + ACTIONS(10225), 1, anon_sym___attribute, - ACTIONS(9002), 17, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4345), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10223), 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_GT2, anon_sym_try, anon_sym_requires, - [324639] = 4, + [324869] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9322), 1, + ACTIONS(10229), 1, anon_sym___attribute, - ACTIONS(14447), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9324), 15, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4345), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10227), 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_EQ, - anon_sym_or, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_try, anon_sym_requires, - [324667] = 3, + [324903] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 1, + ACTIONS(10233), 1, anon_sym___attribute, - ACTIONS(8948), 17, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4345), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10231), 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_GT2, anon_sym_try, anon_sym_requires, - [324693] = 3, + [324937] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8909), 1, + ACTIONS(10264), 1, anon_sym___attribute, - ACTIONS(8911), 17, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4345), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10266), 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_GT2, anon_sym_try, anon_sym_requires, - [324719] = 7, + [324971] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(10178), 1, anon_sym___attribute, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8560), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 10, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(13775), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - anon_sym_try, - [324753] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 1, + ACTIONS(14441), 1, anon_sym_LBRACK, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13254), 1, - anon_sym_requires, - STATE(8046), 1, - sym_trailing_return_type, - ACTIONS(13251), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8297), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 8, + STATE(4345), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10176), 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_GT2, anon_sym_try, - [324791] = 8, + anon_sym_requires, + [325005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(3140), 1, - sym_parameter_list, - ACTIONS(9439), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8473), 2, + STATE(7981), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(9441), 10, + ACTIONS(9566), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9568), 12, 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_EQ, anon_sym_asm, anon_sym___asm__, + anon_sym_GT2, anon_sym_try, - [324827] = 5, + [325035] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9393), 1, + ACTIONS(10243), 1, anon_sym___attribute, - ACTIONS(14447), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(14449), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9395), 13, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4345), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10241), 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_GT2, anon_sym_try, anon_sym_requires, - [324857] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(14079), 1, - anon_sym_SEMI, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9764), 1, - sym_gnu_asm_expression, - STATE(9765), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [324909] = 11, + [325069] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(10221), 1, + anon_sym___attribute, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(14441), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4345), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8343), 1, sym__function_declarator_seq, - STATE(8994), 1, - sym__abstract_declarator, - ACTIONS(9427), 5, + ACTIONS(10219), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [324951] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 1, - anon_sym_LBRACK, - ACTIONS(10382), 1, - anon_sym_requires, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - STATE(8032), 1, - sym_trailing_return_type, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8297), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 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_try, - [324989] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8905), 1, - anon_sym_LBRACK, - ACTIONS(10624), 1, - anon_sym_DASH_GT, - ACTIONS(13882), 1, - anon_sym_requires, - STATE(8050), 1, - sym_trailing_return_type, - ACTIONS(13879), 2, anon_sym_final, anon_sym_override, - STATE(8114), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8363), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 8, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_EQ, + anon_sym_GT2, anon_sym_try, - [325027] = 5, + anon_sym_requires, + [325103] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - STATE(7987), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9517), 3, + ACTIONS(10262), 1, anon_sym___attribute, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9519), 12, + STATE(4345), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10260), 13, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [325057] = 16, + anon_sym_requires, + [325137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13939), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - ACTIONS(13991), 1, - anon_sym_SEMI, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9724), 1, - sym_gnu_asm_expression, - STATE(9726), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, + STATE(7981), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [325109] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(960), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(14445), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(13995), 1, - anon_sym_try, - ACTIONS(14451), 1, - anon_sym_SEMI, - STATE(791), 1, - sym_compound_statement, - STATE(792), 1, - sym_try_statement, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9933), 1, - sym_gnu_asm_expression, - STATE(9934), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [325163] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10580), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13833), 1, - anon_sym_try, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14453), 1, - anon_sym_SEMI, - STATE(2790), 1, - sym_compound_statement, - STATE(2792), 1, - sym_try_statement, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(10091), 1, - sym_gnu_asm_expression, - STATE(10092), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [325217] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 1, - anon_sym___attribute, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 10, + ACTIONS(14443), 12, 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_GT2, anon_sym_try, - [325251] = 7, + [325167] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(8997), 1, anon_sym___attribute, - ACTIONS(10921), 1, + ACTIONS(10933), 1, anon_sym_requires, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8506), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 10, + ACTIONS(8999), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -720404,487 +719909,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT2, anon_sym_try, - [325285] = 17, + [325201] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10603), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13807), 1, - anon_sym_try, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14455), 1, - anon_sym_SEMI, - STATE(3437), 1, - sym_compound_statement, - STATE(3438), 1, - sym_try_statement, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9910), 1, - sym_gnu_asm_expression, - STATE(9911), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [325339] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13904), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(13951), 1, - anon_sym_try, - ACTIONS(14457), 1, + ACTIONS(13912), 1, + anon_sym_EQ, + ACTIONS(14340), 1, anon_sym_SEMI, - STATE(458), 1, - sym_compound_statement, - STATE(459), 1, - sym_try_statement, - STATE(4564), 1, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(9843), 1, + STATE(9868), 1, sym_gnu_asm_expression, - STATE(9844), 1, + STATE(9869), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [325393] = 5, + STATE(10551), 2, + sym_argument_list, + sym_initializer_list, + [325253] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9143), 1, - anon_sym___attribute, - ACTIONS(14459), 2, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(10411), 1, + anon_sym_requires, + ACTIONS(10579), 1, + anon_sym_DASH_GT, + STATE(8004), 1, + sym_trailing_return_type, + ACTIONS(8184), 2, anon_sym_final, anon_sym_override, - STATE(8444), 2, + STATE(8109), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - ACTIONS(9145), 13, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + STATE(8319), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 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_LBRACK, anon_sym_EQ, - anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [325423] = 13, + [325291] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5946), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13549), 1, + ACTIONS(14052), 1, anon_sym_COLON_COLON, - ACTIONS(14462), 1, + ACTIONS(14447), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(14449), 1, + anon_sym_template, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(5627), 1, + sym_dependent_field_identifier, + STATE(5630), 1, + sym_template_method, + STATE(5664), 1, + sym_qualified_field_identifier, + STATE(8157), 1, sym_splice_specifier, - ACTIONS(5948), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(10273), 2, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, + STATE(8441), 1, + sym__scope_resolution, + STATE(10527), 1, + sym_operator_name, + STATE(11531), 5, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_type_specifier, sym_splice_expression, - [325469] = 8, + [325341] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(10243), 1, + anon_sym___asm, + ACTIONS(13775), 1, anon_sym_LPAREN2, - STATE(3140), 1, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4616), 1, sym_parameter_list, - ACTIONS(9480), 2, - anon_sym___attribute, - anon_sym___asm, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9482), 10, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10241), 12, 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_EQ, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [325505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8992), 1, - anon_sym___attribute, - ACTIONS(8994), 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, - [325531] = 11, + [325374] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13904), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(12067), 1, - anon_sym_STAR, - ACTIONS(12069), 1, - anon_sym_AMP_AMP, - ACTIONS(12071), 1, - anon_sym_AMP, - STATE(4883), 1, + ACTIONS(13912), 1, + anon_sym_EQ, + STATE(4614), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(9061), 1, - sym__abstract_declarator, - ACTIONS(9427), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [325572] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6601), 1, - anon_sym_COLON_COLON, - ACTIONS(6603), 4, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6596), 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, + STATE(10371), 1, + sym_gnu_asm_expression, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_GT2, - anon_sym_try, - [325599] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, - anon_sym_requires, - STATE(8428), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 7, + ACTIONS(14451), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [325636] = 14, + anon_sym_SEMI, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(10551), 2, + sym_argument_list, + sym_initializer_list, + [325421] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(10554), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(9291), 1, anon_sym_LBRACE, - ACTIONS(13164), 1, - sym_identifier, - ACTIONS(13166), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + ACTIONS(13104), 1, + sym_identifier, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(4802), 1, + STATE(4222), 1, sym_splice_specifier, - STATE(8705), 1, - sym__scope_resolution, - STATE(9323), 1, + STATE(4376), 1, sym_enumerator_list, - STATE(3790), 2, + STATE(8737), 1, + sym__scope_resolution, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(9001), 2, + STATE(6293), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325683] = 14, + [325468] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8624), 1, + ACTIONS(8435), 1, anon_sym_LBRACE, ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13117), 1, sym_identifier, - STATE(2742), 1, + STATE(2631), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2833), 1, + sym_enumerator_list, + STATE(8741), 1, + sym__scope_resolution, + STATE(2688), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(4471), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [325515] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(13119), 1, + sym_identifier, + ACTIONS(13121), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(3007), 1, - sym_enumerator_list, - STATE(8686), 1, + STATE(4989), 1, + sym_splice_specifier, + STATE(8748), 1, sym__scope_resolution, - STATE(2934), 2, + STATE(9303), 1, + sym_enumerator_list, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4656), 2, + STATE(8998), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325730] = 14, + [325562] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8472), 1, - anon_sym_LBRACE, - ACTIONS(11089), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13123), 1, sym_identifier, - STATE(2638), 1, + ACTIONS(13139), 1, + anon_sym_LBRACE, + STATE(6587), 1, sym_splice_specifier, - STATE(2696), 1, + STATE(7039), 1, sym__splice_specialization_specifier, - STATE(2882), 1, + STATE(7568), 1, sym_enumerator_list, - STATE(8687), 1, + STATE(8745), 1, sym__scope_resolution, - STATE(2570), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2678), 2, + STATE(7040), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(7331), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325777] = 14, + [325609] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3022), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10114), 1, + ACTIONS(8439), 1, anon_sym_LBRACE, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13123), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(4305), 1, + STATE(2639), 1, + sym_splice_specifier, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(4359), 1, + STATE(2838), 1, sym_enumerator_list, - STATE(7326), 1, - sym_splice_specifier, - STATE(8745), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(4296), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(7601), 2, + STATE(4429), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325824] = 9, + [325656] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, - anon_sym_requires, - STATE(8408), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8560), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10229), 1, + anon_sym___asm, + ACTIONS(13775), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(14441), 1, anon_sym_LBRACK, + STATE(4616), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10227), 12, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, anon_sym_EQ, - anon_sym_GT2, - [325861] = 14, + anon_sym_asm, + anon_sym___asm__, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [325689] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8476), 1, + ACTIONS(9291), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13127), 1, sym_identifier, - STATE(2605), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(2885), 1, + STATE(3902), 1, sym_enumerator_list, - STATE(8702), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(2572), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2661), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(6024), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [325908] = 12, + [325736] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11995), 1, + ACTIONS(11983), 1, sym_identifier, - ACTIONS(11997), 1, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(11987), 1, anon_sym_STAR, - ACTIONS(11999), 1, + ACTIONS(11989), 1, anon_sym_AMP_AMP, - ACTIONS(12001), 1, + ACTIONS(11991), 1, anon_sym_AMP, - STATE(9035), 1, + STATE(8612), 1, sym__field_declarator, - STATE(9236), 1, + STATE(8822), 1, sym_operator_name, - STATE(11191), 1, + STATE(10677), 1, sym_ms_based_modifier, - STATE(8839), 7, + STATE(8836), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -720892,303 +720323,262 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [325951] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(14464), 1, - anon_sym_LBRACE, - STATE(11685), 1, - sym_trailing_return_type, - STATE(8834), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9191), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9192), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [325992] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(9413), 1, - anon_sym_LBRACE, - ACTIONS(11111), 1, - anon_sym_COLON_COLON, - ACTIONS(13104), 1, - sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, - sym_splice_specifier, - STATE(3884), 1, - sym_enumerator_list, - STATE(8707), 1, - sym__scope_resolution, - STATE(3666), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(3728), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [326039] = 6, + [325779] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14466), 1, + ACTIONS(14453), 1, sym_identifier, - ACTIONS(8406), 3, + ACTIONS(8464), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(8460), 3, + STATE(8500), 3, sym_string_literal, sym_raw_string_literal, aux_sym_concatenated_string_repeat1, - ACTIONS(14469), 5, + ACTIONS(14455), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(14472), 5, + ACTIONS(14457), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [326070] = 14, + [325810] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10233), 1, + anon_sym___asm, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4616), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10231), 12, + 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, + [325843] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9576), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11651), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, - anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13098), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3800), 1, + STATE(4989), 1, sym_splice_specifier, - STATE(3873), 1, + STATE(5354), 1, + sym__splice_specialization_specifier, + STATE(6008), 1, sym_enumerator_list, - STATE(8738), 1, + STATE(8753), 1, sym__scope_resolution, - STATE(3060), 2, + STATE(5444), 2, sym_template_type, sym_splice_type_specifier, - STATE(3756), 2, + STATE(5674), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326117] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(10372), 1, - anon_sym_noexcept, - ACTIONS(10374), 1, - anon_sym_throw, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(14287), 1, - anon_sym_LBRACE, - STATE(10657), 1, - sym_trailing_return_type, - STATE(8834), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - STATE(9183), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9189), 3, - sym__function_exception_specification, - sym_noexcept, - sym_throw_specifier, - ACTIONS(13841), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - [326158] = 14, + [325890] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10114), 1, - anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(5932), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(13087), 1, sym_identifier, - STATE(4272), 1, - sym_splice_specifier, - STATE(4305), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4359), 1, + STATE(4461), 1, + sym_splice_specifier, + STATE(4657), 1, sym_enumerator_list, - STATE(8676), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(4076), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(4296), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(4560), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326205] = 14, + [325937] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(3484), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8383), 1, - anon_sym_LBRACE, - ACTIONS(11010), 1, + ACTIONS(6463), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(13131), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(2704), 1, + STATE(4657), 1, sym_enumerator_list, - STATE(8682), 1, + STATE(5032), 1, + sym_splice_specifier, + STATE(8667), 1, sym__scope_resolution, - STATE(2615), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(4327), 2, + STATE(5470), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326252] = 14, + [325984] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(9576), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(9520), 1, anon_sym_LBRACE, - ACTIONS(11020), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(13102), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(3028), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(7481), 1, + STATE(3770), 1, sym_splice_specifier, - STATE(7710), 1, + STATE(3838), 1, sym_enumerator_list, - STATE(8691), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(3060), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(7605), 2, + STATE(6137), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326299] = 14, + [326031] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2300), 1, - anon_sym_LBRACK_COLON, - ACTIONS(2422), 1, + ACTIONS(10264), 1, + anon_sym___asm, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4616), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10266), 12, + 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, + [326064] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8383), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(9520), 1, anon_sym_LBRACE, - ACTIONS(11010), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(13135), 1, + ACTIONS(13147), 1, sym_identifier, - STATE(2547), 1, - sym_splice_specifier, - STATE(2601), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2704), 1, + STATE(7400), 1, + sym_splice_specifier, + STATE(7717), 1, sym_enumerator_list, - STATE(8682), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(2521), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(2615), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(7600), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326346] = 7, + [326111] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(10178), 1, anon_sym___asm, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14441), 1, anon_sym_LBRACK, - STATE(4562), 1, + STATE(4616), 1, sym_parameter_list, - STATE(8243), 1, + STATE(8343), 1, sym__function_declarator_seq, - ACTIONS(10200), 12, + ACTIONS(10176), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -721201,30 +720591,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [326379] = 12, + [326144] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, anon_sym_LPAREN2, - ACTIONS(11989), 1, + ACTIONS(12059), 1, + sym_identifier, + ACTIONS(12061), 1, anon_sym_STAR, - ACTIONS(11991), 1, + ACTIONS(12063), 1, anon_sym_AMP_AMP, - ACTIONS(11993), 1, + ACTIONS(12065), 1, anon_sym_AMP, - STATE(8578), 1, + STATE(9031), 1, sym__field_declarator, - STATE(8807), 1, + STATE(9170), 1, sym_operator_name, - STATE(10687), 1, + STATE(11185), 1, sym_ms_based_modifier, - STATE(8839), 7, + STATE(8836), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -721232,171 +720622,86 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [326422] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, - anon_sym_COLON_COLON, - ACTIONS(13131), 1, - anon_sym_LBRACE, - ACTIONS(13168), 1, - sym_identifier, - STATE(6581), 1, - sym_splice_specifier, - STATE(7121), 1, - sym__splice_specialization_specifier, - STATE(7599), 1, - sym_enumerator_list, - STATE(8700), 1, - sym__scope_resolution, - STATE(7122), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(7291), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [326469] = 9, + [326187] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(13188), 1, - anon_sym_requires, - STATE(8398), 1, - sym_trailing_return_type, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10225), 1, + anon_sym___asm, + ACTIONS(13775), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(14441), 1, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [326506] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, - anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(13236), 1, - anon_sym_requires, - STATE(8401), 1, - sym_trailing_return_type, - ACTIONS(13202), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 7, + STATE(4616), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10223), 12, anon_sym_COMMA, - anon_sym_RPAREN, - 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, - [326543] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(13485), 1, - anon_sym_requires, - STATE(8402), 1, - sym_trailing_return_type, - ACTIONS(13396), 2, + anon_sym_asm, + anon_sym___asm__, anon_sym_final, anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [326580] = 5, + anon_sym_try, + anon_sym_requires, + [326220] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - STATE(7987), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(9517), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9519), 11, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(6455), 1, anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(12035), 1, + anon_sym_STAR, + ACTIONS(12037), 1, + anon_sym_AMP_AMP, + ACTIONS(12039), 1, + anon_sym_AMP, + STATE(4909), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9002), 1, + sym__abstract_declarator, + ACTIONS(9281), 4, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, - anon_sym_RBRACK, - anon_sym_asm, - anon_sym___asm__, + anon_sym_EQ, anon_sym_try, - [326609] = 12, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [326261] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(53), 1, anon_sym___based, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(11987), 1, + ACTIONS(11985), 1, anon_sym_LPAREN2, - ACTIONS(11995), 1, + ACTIONS(12059), 1, sym_identifier, - ACTIONS(11997), 1, + ACTIONS(12061), 1, anon_sym_STAR, - ACTIONS(11999), 1, + ACTIONS(12063), 1, anon_sym_AMP_AMP, - ACTIONS(12001), 1, + ACTIONS(12065), 1, anon_sym_AMP, - STATE(9012), 1, + STATE(9015), 1, sym__field_declarator, - STATE(9236), 1, + STATE(9170), 1, sym_operator_name, - STATE(11191), 1, + STATE(11185), 1, sym_ms_based_modifier, - STATE(8839), 7, + STATE(8836), 7, sym_parenthesized_field_declarator, sym_attributed_field_declarator, sym_pointer_field_declarator, @@ -721404,738 +720709,792 @@ static const uint16_t ts_small_parse_table[] = { sym_array_field_declarator, sym_reference_field_declarator, sym_template_method, - [326652] = 14, + [326304] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(3256), 1, + ACTIONS(53), 1, + anon_sym___based, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(11983), 1, + sym_identifier, + ACTIONS(11985), 1, + anon_sym_LPAREN2, + ACTIONS(11987), 1, + anon_sym_STAR, + ACTIONS(11989), 1, + anon_sym_AMP_AMP, + ACTIONS(11991), 1, + anon_sym_AMP, + STATE(8554), 1, + sym__field_declarator, + STATE(8822), 1, + sym_operator_name, + STATE(10677), 1, + sym_ms_based_modifier, + STATE(8836), 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, + [326347] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10114), 1, + ACTIONS(8336), 1, anon_sym_LBRACE, - ACTIONS(11059), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(13133), 1, + ACTIONS(13155), 1, sym_identifier, - STATE(4272), 1, + STATE(2581), 1, sym_splice_specifier, - STATE(4305), 1, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(4359), 1, + STATE(2726), 1, sym_enumerator_list, - STATE(8676), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(4296), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(6303), 2, + STATE(2492), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(2624), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14475), 1, - sym_identifier, - ACTIONS(8454), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(8460), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(14477), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(14479), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [326730] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10174), 1, - anon_sym___asm, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10172), 12, - 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, - [326763] = 14, + [326394] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9576), 1, + ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(11105), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13144), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(3028), 1, - sym__splice_specialization_specifier, - STATE(3800), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(3873), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2156), 1, sym_enumerator_list, - STATE(8738), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(3060), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(6133), 2, + STATE(2334), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326810] = 14, + [326441] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(11651), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(8628), 1, anon_sym_LBRACE, - ACTIONS(13125), 1, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(13102), 1, sym_identifier, - STATE(4802), 1, + STATE(2800), 1, sym_splice_specifier, - STATE(5472), 1, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(6005), 1, + STATE(3028), 1, sym_enumerator_list, - STATE(8757), 1, + STATE(8726), 1, sym__scope_resolution, - STATE(5423), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(5624), 2, + STATE(2698), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(2937), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [326857] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(14422), 1, - anon_sym_requires, - STATE(8403), 1, - sym_trailing_return_type, - ACTIONS(14419), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8560), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [326894] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13939), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13947), 1, - anon_sym_EQ, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(10551), 1, - sym_gnu_asm_expression, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(14481), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(10418), 2, - sym_argument_list, - sym_initializer_list, - [326941] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10190), 1, - anon_sym___asm, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10188), 12, - 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, - [326974] = 14, + [326488] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(3993), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7385), 1, + ACTIONS(9291), 1, anon_sym_LBRACE, - ACTIONS(11038), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13104), 1, sym_identifier, - STATE(2104), 1, + STATE(3735), 1, + sym__splice_specialization_specifier, + STATE(4222), 1, sym_splice_specifier, - STATE(2134), 1, + STATE(4376), 1, sym_enumerator_list, - STATE(2170), 1, - sym__splice_specialization_specifier, - STATE(8763), 1, + STATE(8737), 1, sym__scope_resolution, - STATE(2147), 2, + STATE(3739), 2, sym_template_type, sym_splice_type_specifier, - STATE(3998), 2, + STATE(4106), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327021] = 14, + [326535] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3092), 1, + ACTIONS(3102), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8476), 1, + ACTIONS(8628), 1, anon_sym_LBRACE, - ACTIONS(11097), 1, + ACTIONS(11057), 1, anon_sym_COLON_COLON, - ACTIONS(13100), 1, + ACTIONS(13102), 1, sym_identifier, - STATE(2605), 1, + STATE(2800), 1, sym_splice_specifier, - STATE(2659), 1, + STATE(2899), 1, sym__splice_specialization_specifier, - STATE(2885), 1, + STATE(3028), 1, sym_enumerator_list, - STATE(8702), 1, + STATE(8726), 1, sym__scope_resolution, - STATE(2661), 2, + STATE(2937), 2, sym_template_type, sym_splice_type_specifier, - STATE(4505), 2, + STATE(4667), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327068] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10194), 1, - anon_sym___asm, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10192), 12, - 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, - [327101] = 14, + [326582] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3104), 1, + ACTIONS(3022), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8624), 1, + ACTIONS(8439), 1, anon_sym_LBRACE, - ACTIONS(11073), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(13137), 1, + ACTIONS(13125), 1, sym_identifier, - STATE(2742), 1, + STATE(2639), 1, sym_splice_specifier, - STATE(2921), 1, + STATE(2652), 1, sym__splice_specialization_specifier, - STATE(3007), 1, + STATE(2838), 1, sym_enumerator_list, - STATE(8686), 1, + STATE(8746), 1, sym__scope_resolution, - STATE(2731), 2, + STATE(2555), 2, sym__class_name, sym_qualified_type_identifier, - STATE(2934), 2, + STATE(2675), 2, sym_template_type, sym_splice_type_specifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327148] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10186), 1, - anon_sym___asm, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10184), 12, - 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, - [327181] = 14, + [326629] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7385), 1, + ACTIONS(9291), 1, anon_sym_LBRACE, - ACTIONS(11038), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13127), 1, sym_identifier, - STATE(2104), 1, + STATE(3721), 1, sym_splice_specifier, - STATE(2134), 1, - sym_enumerator_list, - STATE(2170), 1, + STATE(3735), 1, sym__splice_specialization_specifier, - STATE(8763), 1, + STATE(3902), 1, + sym_enumerator_list, + STATE(8750), 1, sym__scope_resolution, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(2318), 2, + STATE(3598), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(3739), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327228] = 14, + [326676] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, + ACTIONS(3484), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9413), 1, + ACTIONS(10497), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, - anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13087), 1, sym_identifier, - STATE(3711), 1, + ACTIONS(13089), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4263), 1, + STATE(4461), 1, sym_splice_specifier, - STATE(4324), 1, + STATE(4657), 1, sym_enumerator_list, - STATE(8675), 1, + STATE(8695), 1, sym__scope_resolution, - STATE(3728), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(6374), 2, + STATE(6392), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327275] = 12, + [326723] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, - anon_sym___based, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(11985), 1, - sym_identifier, - ACTIONS(11987), 1, - anon_sym_LPAREN2, - ACTIONS(11989), 1, - anon_sym_STAR, - ACTIONS(11991), 1, - anon_sym_AMP_AMP, - ACTIONS(11993), 1, - anon_sym_AMP, - STATE(8618), 1, - sym__field_declarator, - STATE(8807), 1, - sym_operator_name, - STATE(10687), 1, - sym_ms_based_modifier, - STATE(8839), 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, - [327318] = 9, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(14260), 1, + anon_sym_LBRACE, + STATE(10808), 1, + sym_trailing_return_type, + STATE(8832), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9236), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9206), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [326764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + STATE(7981), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(9566), 3, anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, - anon_sym_requires, - STATE(8441), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 7, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9568), 11, 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_try, + [326793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6656), 1, + anon_sym_COLON_COLON, + ACTIONS(6658), 4, + anon_sym___attribute, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6651), 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, - [327355] = 14, + anon_sym_try, + [326820] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(10554), 1, + ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(13117), 1, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(13133), 1, sym_identifier, - STATE(3808), 1, + STATE(2122), 1, + sym_splice_specifier, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(4671), 1, + STATE(2156), 1, sym_enumerator_list, - STATE(5157), 1, - sym_splice_specifier, - STATE(8756), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(3790), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(5469), 2, + STATE(4037), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327402] = 14, + [326867] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 1, + anon_sym___attribute, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(10933), 1, + anon_sym_requires, + STATE(8373), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [326904] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 1, + anon_sym___attribute, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(10933), 1, + anon_sym_requires, + STATE(8367), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [326941] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8404), 1, + anon_sym___attribute, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(10933), 1, + anon_sym_requires, + STATE(8391), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [326978] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8987), 1, + anon_sym___attribute, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(10933), 1, + anon_sym_requires, + STATE(8438), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8533), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [327015] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 1, + anon_sym___attribute, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(13175), 1, + anon_sym_requires, + STATE(8413), 1, + sym_trailing_return_type, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [327052] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 1, + anon_sym___attribute, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(13223), 1, + anon_sym_requires, + STATE(8414), 1, + sym_trailing_return_type, + ACTIONS(13217), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [327089] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8404), 1, + anon_sym___attribute, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(13469), 1, + anon_sym_requires, + STATE(8415), 1, + sym_trailing_return_type, + ACTIONS(13383), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [327126] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8987), 1, + anon_sym___attribute, + ACTIONS(10931), 1, + anon_sym_DASH_GT, + ACTIONS(14427), 1, + anon_sym_requires, + STATE(8416), 1, + sym_trailing_return_type, + ACTIONS(14424), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8533), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_GT2, + [327163] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2602), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9413), 1, + ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(11111), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13104), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(3711), 1, - sym__splice_specialization_specifier, - STATE(3719), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(3884), 1, + STATE(2149), 1, + sym__splice_specialization_specifier, + STATE(2156), 1, sym_enumerator_list, - STATE(8707), 1, + STATE(8665), 1, sym__scope_resolution, - STATE(3728), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(6120), 2, + STATE(2311), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327449] = 7, + [327210] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, - anon_sym___asm, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(10390), 1, + anon_sym_noexcept, + ACTIONS(10392), 1, + anon_sym_throw, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(14459), 1, + anon_sym_LBRACE, + STATE(11057), 1, + sym_trailing_return_type, + STATE(8832), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + STATE(9249), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9159), 3, + sym__function_exception_specification, + sym_noexcept, + sym_throw_specifier, + ACTIONS(13834), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + [327251] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9152), 3, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10208), 12, + anon_sym___asm, + ACTIONS(9150), 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_final, - anon_sym_override, + anon_sym_GT2, anon_sym_try, - anon_sym_requires, - [327482] = 7, + [327276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14461), 1, sym_identifier, - ACTIONS(14485), 2, + ACTIONS(8471), 3, + anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - STATE(8656), 2, + STATE(8489), 3, sym_string_literal, sym_raw_string_literal, - STATE(9518), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, + aux_sym_concatenated_string_repeat1, + ACTIONS(14464), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(161), 5, + ACTIONS(14467), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [327515] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10198), 1, - anon_sym___asm, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4562), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10196), 12, - 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, - [327548] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, - anon_sym___attribute, - ACTIONS(10919), 1, - anon_sym_DASH_GT, - ACTIONS(10921), 1, - anon_sym_requires, - STATE(8374), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 7, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_GT2, - [327585] = 14, + [327307] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(4360), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9413), 1, + ACTIONS(10160), 1, anon_sym_LBRACE, - ACTIONS(11081), 1, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(13152), 1, + ACTIONS(13096), 1, sym_identifier, - STATE(3711), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(4263), 1, - sym_splice_specifier, - STATE(4324), 1, + STATE(4362), 1, sym_enumerator_list, - STATE(8675), 1, + STATE(7353), 1, + sym_splice_specifier, + STATE(8710), 1, sym__scope_resolution, - STATE(3728), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(4052), 2, + STATE(7588), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327632] = 7, + [327354] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(10221), 1, anon_sym___asm, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14441), 1, anon_sym_LBRACK, - STATE(4562), 1, + STATE(4616), 1, sym_parameter_list, - STATE(8243), 1, + STATE(8343), 1, sym__function_declarator_seq, - ACTIONS(10204), 12, + ACTIONS(10219), 12, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -722148,288 +721507,409 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [327665] = 14, + [327387] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5938), 1, - anon_sym_COLON_COLON, - ACTIONS(10554), 1, + ACTIONS(9520), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, + ACTIONS(10645), 1, + anon_sym_COLON_COLON, + ACTIONS(10651), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13115), 1, sym_identifier, - STATE(3808), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(4504), 1, - sym_splice_specifier, - STATE(4671), 1, + STATE(3838), 1, sym_enumerator_list, - STATE(8716), 1, + STATE(7198), 1, + sym_splice_specifier, + STATE(8754), 1, sym__scope_resolution, - STATE(3790), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4594), 2, + STATE(7582), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327712] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14487), 1, - sym_identifier, - ACTIONS(8466), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - STATE(8476), 3, - sym_string_literal, - sym_raw_string_literal, - aux_sym_concatenated_string_repeat1, - ACTIONS(14477), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(14479), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [327743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9224), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9222), 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, - [327768] = 14, + [327434] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(2436), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, ACTIONS(7385), 1, anon_sym_LBRACE, - ACTIONS(11038), 1, + ACTIONS(10966), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13133), 1, sym_identifier, - STATE(2104), 1, + STATE(2122), 1, sym_splice_specifier, - STATE(2134), 1, - sym_enumerator_list, - STATE(2170), 1, + STATE(2149), 1, sym__splice_specialization_specifier, - STATE(8763), 1, + STATE(2156), 1, + sym_enumerator_list, + STATE(8665), 1, sym__scope_resolution, - STATE(2147), 2, + STATE(2153), 2, sym_template_type, sym_splice_type_specifier, - STATE(4136), 2, + STATE(4065), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327815] = 14, + [327481] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3486), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(10554), 1, + ACTIONS(10160), 1, anon_sym_LBRACE, - ACTIONS(13106), 1, - sym_identifier, - ACTIONS(13154), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4504), 1, + ACTIONS(13100), 1, + sym_identifier, + STATE(4219), 1, sym_splice_specifier, - STATE(4671), 1, + STATE(4290), 1, + sym__splice_specialization_specifier, + STATE(4362), 1, sym_enumerator_list, - STATE(8710), 1, + STATE(8722), 1, sym__scope_resolution, - STATE(3790), 2, + STATE(4295), 2, sym_template_type, sym_splice_type_specifier, - STATE(6381), 2, + STATE(6367), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327862] = 14, + [327528] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2298), 1, + anon_sym_LBRACK_COLON, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(9576), 1, + ACTIONS(8336), 1, anon_sym_LBRACE, - ACTIONS(10653), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(10659), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13127), 1, + ACTIONS(13155), 1, sym_identifier, - STATE(3028), 1, + STATE(2581), 1, + sym_splice_specifier, + STATE(2640), 1, sym__splice_specialization_specifier, - STATE(3873), 1, + STATE(2726), 1, sym_enumerator_list, - STATE(7260), 1, - sym_splice_specifier, - STATE(8711), 1, + STATE(8744), 1, sym__scope_resolution, - STATE(3060), 2, + STATE(2624), 2, sym_template_type, sym_splice_type_specifier, - STATE(7591), 2, + STATE(4369), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327909] = 14, + [327575] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(10262), 1, + anon_sym___asm, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4616), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10260), 12, + 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, + [327608] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(3008), 1, + ACTIONS(2448), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(8472), 1, + ACTIONS(9520), 1, anon_sym_LBRACE, ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(13156), 1, + ACTIONS(13135), 1, sym_identifier, - STATE(2638), 1, - sym_splice_specifier, - STATE(2696), 1, + STATE(3030), 1, sym__splice_specialization_specifier, - STATE(2882), 1, + STATE(3770), 1, + sym_splice_specifier, + STATE(3838), 1, sym_enumerator_list, - STATE(8687), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(2678), 2, + STATE(3043), 2, sym_template_type, sym_splice_type_specifier, - STATE(4511), 2, + STATE(3729), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [327956] = 14, + [327655] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(2438), 1, + ACTIONS(3284), 1, anon_sym_LBRACK_COLON, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(7385), 1, + ACTIONS(10160), 1, anon_sym_LBRACE, - ACTIONS(11038), 1, + ACTIONS(11007), 1, anon_sym_COLON_COLON, - ACTIONS(13119), 1, + ACTIONS(13100), 1, sym_identifier, - STATE(2104), 1, + STATE(4219), 1, sym_splice_specifier, - STATE(2134), 1, - sym_enumerator_list, - STATE(2170), 1, + STATE(4290), 1, sym__splice_specialization_specifier, - STATE(8763), 1, + STATE(4362), 1, + sym_enumerator_list, + STATE(8722), 1, sym__scope_resolution, - STATE(2147), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(2346), 2, + STATE(4125), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(4295), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [328003] = 13, + [327702] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14470), 1, + sym_identifier, + ACTIONS(14472), 2, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9616), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [327735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14474), 1, + sym_identifier, + ACTIONS(8483), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + STATE(8489), 3, + sym_string_literal, + sym_raw_string_literal, + aux_sym_concatenated_string_repeat1, + ACTIONS(14455), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(14457), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [327766] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(3074), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(8435), 1, + anon_sym_LBRACE, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(14489), 1, - anon_sym_virtual, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + ACTIONS(13117), 1, + sym_identifier, + STATE(2631), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(2672), 1, + sym__splice_specialization_specifier, + STATE(2833), 1, + sym_enumerator_list, + STATE(8741), 1, sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9533), 2, + STATE(2553), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(2688), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [328047] = 3, + [327813] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8987), 1, + anon_sym___attribute, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8533), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 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, + [327845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9329), 1, + anon_sym___attribute, + ACTIONS(14476), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9331), 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, + [327871] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9928), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9930), 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, + [327895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 1, + anon_sym___attribute, + ACTIONS(7874), 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, + [327919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9296), 1, + ACTIONS(9438), 1, anon_sym___attribute, - ACTIONS(9298), 15, + ACTIONS(9440), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -722445,25 +721925,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [328071] = 8, + [327943] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(12077), 1, + anon_sym_STAR, + ACTIONS(12079), 1, + anon_sym_AMP_AMP, + ACTIONS(12081), 1, + anon_sym_AMP, + STATE(5182), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9087), 1, + sym__abstract_declarator, + ACTIONS(9281), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [327983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9928), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9930), 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, + [328007] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(14480), 1, + anon_sym___asm, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14478), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [328043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(13205), 1, + ACTIONS(13152), 1, anon_sym_requires, - STATE(8513), 1, + STATE(8519), 1, sym_trailing_return_type, - ACTIONS(13202), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, + ACTIONS(7874), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722471,23 +722028,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328105] = 7, + [328077] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(7876), 1, anon_sym___attribute, - ACTIONS(13205), 1, + ACTIONS(13152), 1, anon_sym_requires, - ACTIONS(13202), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 8, + ACTIONS(7874), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722496,49 +722053,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328137] = 8, + [328109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13399), 1, - anon_sym_requires, - STATE(8517), 1, - sym_trailing_return_type, - ACTIONS(13396), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 7, + ACTIONS(9928), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9930), 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, - [328171] = 7, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [328133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(9417), 1, anon_sym___attribute, - ACTIONS(13399), 1, - anon_sym_requires, - ACTIONS(13396), 2, + ACTIONS(9419), 15, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 8, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [328157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9928), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9930), 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, + [328181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9373), 1, + anon_sym___attribute, + ACTIONS(9375), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722547,14 +722131,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328203] = 3, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_try, + anon_sym_requires, + [328205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14493), 3, + ACTIONS(14484), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14491), 13, + ACTIONS(14482), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722568,80 +722158,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328227] = 8, + [328229] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(14488), 1, + anon_sym___asm, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14486), 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [328265] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(13220), 1, anon_sym_requires, - STATE(8585), 1, + STATE(8522), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(13217), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [328299] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 1, + anon_sym___attribute, + ACTIONS(13220), 1, + anon_sym_requires, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 7, + ACTIONS(7970), 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, - [328261] = 13, + [328331] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14495), 1, + ACTIONS(14490), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10580), 1, + STATE(10440), 1, sym_splice_type_specifier, - STATE(10707), 1, + STATE(10660), 1, sym_qualified_identifier, - ACTIONS(14497), 2, + ACTIONS(14492), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328305] = 7, + [328375] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(13386), 1, + anon_sym_requires, + STATE(8523), 1, + sym_trailing_return_type, + ACTIONS(13383), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 7, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_LBRACK, + [328409] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8404), 1, + anon_sym___attribute, + ACTIONS(13386), 1, + anon_sym_requires, + ACTIONS(13383), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 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, + [328441] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8987), 1, anon_sym___attribute, - ACTIONS(14499), 1, + ACTIONS(14494), 1, anon_sym_requires, - ACTIONS(14419), 2, + ACTIONS(14424), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 8, + ACTIONS(8989), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722650,25 +722343,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328337] = 8, + [328473] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(14499), 1, + ACTIONS(14494), 1, anon_sym_requires, - STATE(8519), 1, + STATE(8525), 1, sym_trailing_return_type, - ACTIONS(14419), 2, + ACTIONS(14424), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 7, + ACTIONS(8989), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722676,23 +722369,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328371] = 7, + [328507] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 1, + ACTIONS(8997), 1, anon_sym___attribute, - ACTIONS(14502), 1, + ACTIONS(14497), 1, anon_sym_requires, - ACTIONS(14425), 2, + ACTIONS(14430), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8601), 2, + STATE(8506), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8915), 8, + ACTIONS(8999), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722701,14 +722394,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328403] = 3, + [328539] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14500), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10316), 1, + sym_splice_type_specifier, + STATE(11118), 1, + sym_qualified_identifier, + ACTIONS(14502), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [328583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9095), 3, + ACTIONS(14506), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9097), 13, + ACTIONS(14504), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722722,14 +722446,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328427] = 3, + [328607] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14508), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10350), 1, + sym_splice_type_specifier, + STATE(11009), 1, + sym_qualified_identifier, + ACTIONS(14510), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [328651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9041), 3, + ACTIONS(9081), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9043), 13, + ACTIONS(9083), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722743,62 +722498,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328451] = 3, + [328675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(9059), 3, anon_sym___attribute, - ACTIONS(7791), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9061), 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, - [328475] = 9, + [328699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(9051), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14507), 1, anon_sym___asm, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14505), 8, + ACTIONS(9053), 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, - [328511] = 3, + [328723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14511), 3, + ACTIONS(9085), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14509), 13, + ACTIONS(9087), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722812,54 +722561,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [328535] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14513), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10317), 1, - sym_splice_type_specifier, - STATE(10933), 1, - sym_qualified_identifier, - ACTIONS(14515), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [328579] = 7, + [328747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(8997), 1, anon_sym___attribute, - ACTIONS(10861), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 8, + ACTIONS(8999), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -722868,46 +722576,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [328611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9033), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9035), 13, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, + anon_sym_final, + anon_sym_override, anon_sym_GT2, anon_sym_try, - [328635] = 9, + anon_sym_requires, + [328771] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14519), 1, + ACTIONS(14514), 1, anon_sym___asm, - STATE(4564), 1, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14517), 8, + ACTIONS(14512), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -722916,46 +722609,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [328671] = 3, + [328807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9308), 1, + ACTIONS(9779), 3, anon_sym___attribute, - ACTIONS(9310), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9781), 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, - [328695] = 9, + [328831] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14523), 1, + ACTIONS(14518), 1, anon_sym___asm, - STATE(4564), 1, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14521), 8, + ACTIONS(14516), 8, anon_sym_COMMA, anon_sym_SEMI, anon_sym_COLON, @@ -722964,273 +722657,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [328731] = 3, + [328867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 3, + ACTIONS(9377), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9047), 13, + ACTIONS(9379), 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, - [328755] = 13, + anon_sym_requires, + [328891] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14525), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10503), 1, - sym_splice_type_specifier, - STATE(11289), 1, - sym_qualified_identifier, - ACTIONS(14527), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [328799] = 13, + ACTIONS(8997), 1, + anon_sym___attribute, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8506), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8999), 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, + [328923] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14529), 1, + ACTIONS(14520), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10225), 1, + STATE(10381), 1, sym_splice_type_specifier, - STATE(11282), 1, + STATE(11208), 1, sym_qualified_identifier, - ACTIONS(14531), 2, + ACTIONS(14522), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328843] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - ACTIONS(14533), 1, - anon_sym_virtual, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9763), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [328887] = 13, + [328967] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14535), 1, + ACTIONS(14524), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10219), 1, + STATE(10361), 1, sym_splice_type_specifier, - STATE(10828), 1, + STATE(10675), 1, sym_qualified_identifier, - ACTIONS(14537), 2, + ACTIONS(14526), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [328931] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - ACTIONS(14539), 1, - anon_sym_virtual, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9481), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [328975] = 3, + [329011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9361), 1, + ACTIONS(9027), 3, anon_sym___attribute, - ACTIONS(9363), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9029), 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, - [328999] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14541), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10266), 1, - sym_splice_type_specifier, - STATE(10958), 1, - sym_qualified_identifier, - ACTIONS(14543), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [329043] = 13, + [329035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - ACTIONS(14545), 1, - anon_sym_virtual, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9946), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [329087] = 3, + ACTIONS(9031), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9033), 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, + [329059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9037), 3, + ACTIONS(9067), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9039), 13, + ACTIONS(9069), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723244,99 +722828,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329111] = 9, + [329083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14530), 3, + anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14549), 1, anon_sym___asm, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14547), 8, + ACTIONS(14528), 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, - [329147] = 11, + [329107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(9293), 1, + anon_sym___attribute, + ACTIONS(14476), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(14532), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9295), 11, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(11793), 1, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(12162), 1, - anon_sym_STAR, - ACTIONS(12164), 1, - anon_sym_AMP_AMP, - ACTIONS(12166), 1, - anon_sym_AMP, - STATE(5222), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9101), 1, - sym__abstract_declarator, - ACTIONS(9427), 3, - anon_sym_DOT_DOT_DOT, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [329135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9047), 3, + anon_sym___attribute, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9049), 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, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [329187] = 13, + anon_sym_try, + [329159] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14551), 1, + ACTIONS(13403), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + ACTIONS(14534), 1, + anon_sym_virtual, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10478), 1, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, sym_splice_type_specifier, - STATE(11562), 1, - sym_qualified_identifier, - ACTIONS(14553), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, + STATE(9481), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, sym_decltype, - sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [329231] = 3, + [329203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9365), 1, + ACTIONS(9337), 1, anon_sym___attribute, - ACTIONS(9367), 15, + ACTIONS(9339), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723352,112 +722945,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329255] = 13, + [329227] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14555), 1, + ACTIONS(14536), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10549), 1, + STATE(10532), 1, sym_splice_type_specifier, - STATE(10666), 1, + STATE(10671), 1, sym_qualified_identifier, - ACTIONS(14557), 2, + ACTIONS(14538), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [329299] = 3, + [329271] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 3, + ACTIONS(7876), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9762), 13, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 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, - [329323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9760), 3, - anon_sym___attribute, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9762), 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, - [329347] = 9, + [329303] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14561), 1, - anon_sym___asm, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14559), 8, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_try, - [329383] = 3, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14540), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10224), 1, + sym_splice_type_specifier, + STATE(10947), 1, + sym_qualified_identifier, + ACTIONS(14542), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [329347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9389), 1, + ACTIONS(9421), 1, anon_sym___attribute, - ACTIONS(9391), 15, + ACTIONS(9423), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723473,58 +723053,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329407] = 3, + [329371] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute, - ACTIONS(8907), 15, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14544), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10481), 1, + sym_splice_type_specifier, + STATE(11611), 1, + sym_qualified_identifier, + ACTIONS(14546), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [329415] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(13779), 1, anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(13783), 1, anon_sym_LBRACK, + ACTIONS(14550), 1, + anon_sym___attribute, + ACTIONS(14552), 1, anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [329431] = 7, + STATE(4367), 1, + sym_parameter_list, + STATE(8853), 1, + sym__function_declarator_seq, + STATE(9441), 1, + sym_bitfield_clause, + STATE(9467), 1, + sym_initializer_list, + STATE(8696), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14548), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [329461] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute, - ACTIONS(10861), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8560), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14554), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10516), 1, + sym_splice_type_specifier, + STATE(10768), 1, + sym_qualified_identifier, + ACTIONS(14556), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [329505] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(14560), 1, + anon_sym___asm, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14558), 8, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_LBRACK, - [329463] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [329541] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14562), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10453), 1, + sym_splice_type_specifier, + STATE(11210), 1, + sym_qualified_identifier, + ACTIONS(14564), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [329585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9415), 1, + ACTIONS(9356), 1, anon_sym___attribute, - ACTIONS(9417), 15, + ACTIONS(9358), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723540,12 +723226,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329487] = 3, + [329609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9419), 1, + ACTIONS(8404), 1, anon_sym___attribute, - ACTIONS(9421), 15, + ACTIONS(8402), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723561,14 +723247,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329511] = 3, + [329633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 3, + ACTIONS(9928), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9762), 13, + ACTIONS(9930), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723582,56 +723268,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329535] = 3, + [329657] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11754), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6883), 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, - [329559] = 3, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14566), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10590), 1, + sym_splice_type_specifier, + STATE(10876), 1, + sym_qualified_identifier, + ACTIONS(14568), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [329701] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14565), 3, + ACTIONS(8404), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14563), 13, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 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, - [329583] = 3, + anon_sym_LBRACK, + [329733] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 3, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14570), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10275), 1, + sym_splice_type_specifier, + STATE(11050), 1, + sym_qualified_identifier, + ACTIONS(14572), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [329777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11752), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9762), 13, + ACTIONS(6899), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723645,14 +723376,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329607] = 3, + [329801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 3, + ACTIONS(14576), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9762), 13, + ACTIONS(14574), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723666,25 +723397,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329631] = 8, + [329825] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + ACTIONS(14578), 1, + anon_sym_virtual, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9486), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [329869] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14580), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10485), 1, + sym_splice_type_specifier, + STATE(10692), 1, + sym_qualified_identifier, + ACTIONS(14582), 2, + anon_sym_enum, + anon_sym_namespace, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [329913] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(10837), 1, anon_sym_requires, - STATE(8551), 1, + STATE(8562), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 7, + ACTIONS(7970), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723692,12 +723485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [329665] = 3, + [329947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 1, + ACTIONS(9385), 1, anon_sym___attribute, - ACTIONS(8915), 15, + ACTIONS(9387), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723713,89 +723506,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329689] = 3, + [329971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(9928), 3, anon_sym___attribute, - ACTIONS(8422), 15, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9930), 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, - [329713] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14567), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10469), 1, - sym_splice_type_specifier, - STATE(11519), 1, - sym_qualified_identifier, - ACTIONS(14569), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [329757] = 7, + [329995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8913), 1, + ACTIONS(14586), 3, anon_sym___attribute, - ACTIONS(10861), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8601), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8915), 8, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14584), 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, - [329789] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [330019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9435), 1, + ACTIONS(9369), 1, anon_sym___attribute, - ACTIONS(9437), 15, + ACTIONS(9371), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723811,68 +723569,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329813] = 7, + [330043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(14590), 3, anon_sym___attribute, - ACTIONS(10861), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 8, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(14588), 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, - [329845] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14571), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10355), 1, - sym_splice_type_specifier, - STATE(11014), 1, - sym_qualified_identifier, - ACTIONS(14573), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [329889] = 3, + anon_sym_EQ, + anon_sym_asm, + anon_sym___asm__, + anon_sym_GT2, + anon_sym_try, + [330067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9369), 1, + ACTIONS(9475), 1, anon_sym___attribute, - ACTIONS(9371), 15, + ACTIONS(9477), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -723888,14 +723611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [329913] = 3, + [330091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14577), 3, + ACTIONS(9063), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14575), 13, + ACTIONS(9065), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -723909,120 +723632,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [329937] = 4, + [330115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9322), 1, + ACTIONS(7972), 1, anon_sym___attribute, - ACTIONS(14579), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9324), 13, + ACTIONS(7970), 15, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_PIPE_PIPE, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_or, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_GT2, + anon_sym_try, anon_sym_requires, - [329963] = 3, + [330139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 3, + ACTIONS(9479), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9061), 13, + ACTIONS(9481), 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, - [329987] = 3, + anon_sym_requires, + [330163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9088), 3, + ACTIONS(9483), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9090), 13, + ACTIONS(9485), 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, - [330011] = 3, + anon_sym_requires, + [330187] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14583), 3, + ACTIONS(7972), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14581), 13, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 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, - [330035] = 3, + anon_sym_LBRACK, + [330219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9063), 3, + ACTIONS(9447), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9065), 13, + ACTIONS(9449), 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, - [330059] = 3, + anon_sym_requires, + [330243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 3, + ACTIONS(14594), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9069), 13, + ACTIONS(14592), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724036,14 +723762,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [330083] = 3, + [330267] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5965), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(13558), 1, + anon_sym_COLON_COLON, + ACTIONS(14418), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7987), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10559), 2, + sym_identifier_parameter_pack_expansion, + sym_qualified_identifier, + STATE(11531), 5, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_type_specifier, + sym_splice_expression, + [330309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9080), 3, + ACTIONS(14598), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9082), 13, + ACTIONS(14596), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724057,14 +723813,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [330107] = 3, + [330333] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + ACTIONS(14600), 1, + anon_sym_virtual, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(10194), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [330377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9084), 3, + ACTIONS(14604), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9086), 13, + ACTIONS(14602), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724078,12 +723865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [330131] = 3, + [330401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9407), 1, + ACTIONS(9409), 1, anon_sym___attribute, - ACTIONS(9409), 15, + ACTIONS(9411), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -724099,44 +723886,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330155] = 14, + [330425] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13799), 1, - anon_sym_COLON, - ACTIONS(13803), 1, - anon_sym_LBRACK, - ACTIONS(14587), 1, + ACTIONS(9077), 3, anon_sym___attribute, - ACTIONS(14589), 1, - anon_sym_EQ, - STATE(4334), 1, - sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(9441), 1, - sym_bitfield_clause, - STATE(9444), 1, - sym_initializer_list, - STATE(8678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14585), 3, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(9079), 13, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, - [330201] = 3, + 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, + [330449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9373), 1, + ACTIONS(8987), 1, anon_sym___attribute, - ACTIONS(9375), 15, + ACTIONS(8989), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -724152,108 +723928,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330225] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14591), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10297), 1, - sym_splice_type_specifier, - STATE(11625), 1, - sym_qualified_identifier, - ACTIONS(14593), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [330269] = 13, + [330473] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14595), 1, + ACTIONS(14606), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10490), 1, + STATE(10395), 1, sym_splice_type_specifier, - STATE(11253), 1, + STATE(11487), 1, sym_qualified_identifier, - ACTIONS(14597), 2, + ACTIONS(14608), 2, anon_sym_enum, anon_sym_namespace, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [330313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9423), 1, - anon_sym___attribute, - ACTIONS(9425), 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, - [330337] = 8, + [330517] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(10837), 1, anon_sym_requires, - STATE(8565), 1, + STATE(8538), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 7, + ACTIONS(8989), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724261,12 +723985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [330371] = 3, + [330551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(9413), 1, anon_sym___attribute, - ACTIONS(7966), 15, + ACTIONS(9415), 15, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_RPAREN, @@ -724282,39 +724006,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT2, anon_sym_try, anon_sym_requires, - [330395] = 7, + [330575] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, - anon_sym___attribute, - ACTIONS(10861), 1, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(10837), 1, anon_sym_requires, - ACTIONS(10859), 2, + STATE(8579), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 8, + ACTIONS(7874), 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, - [330427] = 3, + [330609] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + ACTIONS(14610), 1, + anon_sym_virtual, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9822), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [330653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14601), 3, + ACTIONS(9089), 3, anon_sym___attribute, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(14599), 13, + ACTIONS(9091), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724328,25 +724084,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym___asm__, anon_sym_GT2, anon_sym_try, - [330451] = 8, + [330677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9352), 1, + anon_sym___attribute, + ACTIONS(9354), 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, + [330701] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(10837), 1, anon_sym_requires, - STATE(8511), 1, + STATE(8502), 1, sym_trailing_return_type, - ACTIONS(13146), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 7, + ACTIONS(8402), 7, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -724354,370 +724131,458 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [330485] = 7, + [330735] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym___attribute, - ACTIONS(13149), 1, + ACTIONS(14612), 1, + sym_identifier, + ACTIONS(14614), 1, + aux_sym_preproc_if_token2, + ACTIONS(14616), 1, + aux_sym_preproc_else_token1, + ACTIONS(14618), 1, + aux_sym_preproc_elif_token1, + STATE(8926), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8927), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9122), 1, + sym_enumerator, + ACTIONS(14620), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(11542), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(11543), 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, + [330774] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + ACTIONS(13469), 1, anon_sym_requires, - ACTIONS(13146), 2, + STATE(8415), 1, + sym_trailing_return_type, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 8, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8402), 6, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [330517] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14605), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14603), 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, - [330541] = 3, + [330807] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14609), 3, - anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13783), 1, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14607), 13, + ACTIONS(14624), 1, + anon_sym___attribute, + STATE(4367), 1, + sym_parameter_list, + STATE(8853), 1, + sym__function_declarator_seq, + STATE(8696), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14622), 7, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [330565] = 13, + [330842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14611), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10261), 1, - sym_splice_type_specifier, - STATE(11179), 1, - sym_qualified_identifier, - ACTIONS(14613), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [330609] = 3, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10132), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [330871] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14470), 1, + sym_identifier, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9906), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [330900] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 1, + ACTIONS(7876), 1, anon_sym___attribute, - ACTIONS(9318), 15, - anon_sym_DOT_DOT_DOT, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + STATE(8579), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [330633] = 8, + [330935] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + ACTIONS(11003), 1, anon_sym_DASH_GT, - ACTIONS(10861), 1, + ACTIONS(14427), 1, anon_sym_requires, - STATE(8563), 1, + STATE(8416), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(14424), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 7, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(8989), 6, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, anon_sym_LBRACK, - [330667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14617), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(14615), 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, - [330691] = 3, + [330968] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9915), 3, - anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9917), 13, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(8367), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 6, anon_sym_LPAREN2, anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_EQ, - anon_sym_asm, - anon_sym___asm__, - anon_sym_GT2, anon_sym_try, - [330715] = 3, + [331001] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13783), 1, + anon_sym_LBRACK, + ACTIONS(14628), 1, anon_sym___attribute, - ACTIONS(9335), 15, - anon_sym_DOT_DOT_DOT, + STATE(4367), 1, + sym_parameter_list, + STATE(8853), 1, + sym__function_declarator_seq, + STATE(8696), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14626), 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, - [330739] = 5, + [331036] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9393), 1, + ACTIONS(7972), 1, anon_sym___attribute, - ACTIONS(14579), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(14619), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9395), 11, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + STATE(8562), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - anon_sym_requires, - [330767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9337), 1, - anon_sym___attribute, - ACTIONS(9339), 15, - anon_sym_DOT_DOT_DOT, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, - anon_sym_SEMI, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_try, - anon_sym_requires, - [330791] = 12, + [331071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(5946), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(13549), 1, - anon_sym_COLON_COLON, - ACTIONS(14462), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7998), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10273), 2, - sym_identifier_parameter_pack_expansion, - sym_qualified_identifier, - STATE(10768), 5, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_type_specifier, - sym_splice_expression, - [330833] = 13, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9920), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331100] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14621), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10346), 1, - sym_splice_type_specifier, - STATE(10997), 1, - sym_qualified_identifier, - ACTIONS(14623), 2, - anon_sym_enum, - anon_sym_namespace, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [330877] = 3, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9996), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331129] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14470), 1, + sym_identifier, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10018), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331158] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14470), 1, + sym_identifier, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10109), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331187] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14470), 1, + sym_identifier, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10137), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331216] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9445), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13783), 1, + anon_sym_LBRACK, + ACTIONS(14632), 1, anon_sym___attribute, - ACTIONS(9447), 15, - anon_sym_DOT_DOT_DOT, + STATE(4367), 1, + sym_parameter_list, + STATE(8853), 1, + sym__function_declarator_seq, + STATE(8696), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14630), 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, - [330901] = 3, + [331251] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9760), 3, + ACTIONS(8404), 1, anon_sym___attribute, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(9762), 13, + ACTIONS(10837), 1, + anon_sym_requires, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + STATE(8502), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 5, 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, - [330925] = 6, + anon_sym_LBRACK, + [331286] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14470), 1, + sym_identifier, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10166), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331315] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(9673), 2, + STATE(10983), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -724732,171 +724597,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [330954] = 9, + [331344] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(8987), 1, anon_sym___attribute, - ACTIONS(10861), 1, + ACTIONS(10837), 1, anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11309), 1, anon_sym_DASH_GT, - STATE(8565), 1, + STATE(8538), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(8989), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [330989] = 12, + [331379] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(8452), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(9109), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(14455), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(14457), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331406] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(14634), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(14636), 1, anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + ACTIONS(14638), 1, + anon_sym_LBRACK_COLON, + STATE(3962), 1, + sym_splice_type_specifier, + STATE(3979), 1, sym_splice_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, + STATE(4261), 1, + sym__splice_specialization_specifier, + STATE(4263), 1, sym_template_type, - sym_splice_type_specifier, - STATE(9642), 2, + STATE(8732), 1, + sym__scope_resolution, + STATE(4146), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [331030] = 9, + [331449] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(8438), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8533), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [331482] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14470), 1, + sym_identifier, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(10928), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [331511] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 1, anon_sym___attribute, - ACTIONS(10861), 1, + ACTIONS(11269), 1, anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11496), 1, anon_sym_DASH_GT, - STATE(8551), 1, + STATE(8676), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 5, + ACTIONS(7874), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [331065] = 9, + anon_sym_GT2, + [331546] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(7972), 1, anon_sym___attribute, - ACTIONS(10861), 1, + ACTIONS(11269), 1, anon_sym_requires, - ACTIONS(11518), 1, + ACTIONS(11496), 1, anon_sym_DASH_GT, - STATE(8563), 1, + STATE(8678), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 5, + ACTIONS(7970), 5, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [331100] = 6, + anon_sym_GT2, + [331581] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, - sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9886), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [331129] = 9, + ACTIONS(8404), 1, + anon_sym___attribute, + ACTIONS(11269), 1, + anon_sym_requires, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + STATE(8679), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 5, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [331616] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(12258), 1, + anon_sym_STAR, + ACTIONS(12260), 1, + anon_sym_AMP_AMP, + ACTIONS(12262), 1, + anon_sym_AMP, + STATE(5625), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9231), 1, + sym__abstract_declarator, + ACTIONS(9281), 2, + anon_sym_LBRACE, + anon_sym_requires, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [331655] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(8373), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [331688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(8987), 1, anon_sym___attribute, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - ACTIONS(14625), 1, + ACTIONS(11269), 1, anon_sym_requires, - STATE(8749), 1, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + STATE(8681), 1, sym_trailing_return_type, - ACTIONS(14419), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 5, + ACTIONS(8989), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [331164] = 6, + [331723] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(10062), 2, + STATE(9921), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -724911,15 +724903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331193] = 6, + [331752] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(9906), 2, + STATE(9734), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -724934,25 +724926,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331222] = 9, + [331781] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10933), 1, + anon_sym_requires, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + STATE(8391), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [331814] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(13783), 1, anon_sym_LBRACK, - ACTIONS(14630), 1, + ACTIONS(14642), 1, anon_sym___attribute, - STATE(4334), 1, + STATE(4367), 1, sym_parameter_list, - STATE(8856), 1, + STATE(8853), 1, sym__function_declarator_seq, - STATE(8678), 2, + STATE(8696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14628), 7, + ACTIONS(14640), 7, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, @@ -724960,66 +724977,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [331257] = 11, + [331849] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13403), 1, sym_identifier, - ACTIONS(14634), 1, - aux_sym_preproc_if_token2, - ACTIONS(14636), 1, - aux_sym_preproc_else_token1, - ACTIONS(14638), 1, - aux_sym_preproc_elif_token1, - STATE(8923), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8924), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9089), 1, - sym_enumerator, - ACTIONS(14640), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(10850), 3, - sym_preproc_else_in_enumerator_list_no_comma, - sym_preproc_elif_in_enumerator_list_no_comma, - sym_preproc_elifdef_in_enumerator_list_no_comma, - STATE(10879), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [331296] = 6, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9486), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [331890] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, - sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9971), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [331325] = 6, + ACTIONS(7876), 1, + anon_sym___attribute, + ACTIONS(11309), 1, + anon_sym_DASH_GT, + ACTIONS(13152), 1, + anon_sym_requires, + STATE(8519), 1, + sym_trailing_return_type, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + [331925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(11518), 2, + STATE(9873), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725034,15 +725055,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331354] = 6, + [331954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(9993), 2, + STATE(9965), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725057,96 +725078,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331383] = 9, + [331983] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13803), 1, - anon_sym_LBRACK, - ACTIONS(14644), 1, + ACTIONS(7876), 1, anon_sym___attribute, - STATE(4334), 1, - sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(8678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14642), 7, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + ACTIONS(13178), 1, + anon_sym_requires, + STATE(8687), 1, + sym_trailing_return_type, + ACTIONS(13149), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 5, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN2, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [331418] = 9, + anon_sym_LBRACK, + anon_sym_GT2, + [332018] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13803), 1, - anon_sym_LBRACK, - ACTIONS(14648), 1, + ACTIONS(7972), 1, anon_sym___attribute, - STATE(4334), 1, - sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(8678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14646), 7, + ACTIONS(11496), 1, + anon_sym_DASH_GT, + ACTIONS(13241), 1, + anon_sym_requires, + STATE(8689), 1, + sym_trailing_return_type, + ACTIONS(13217), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 5, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN2, anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [331453] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9946), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [331494] = 6, + anon_sym_LBRACK, + anon_sym_GT2, + [332053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(10061), 2, + STATE(10679), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725161,15 +725153,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331523] = 6, + [332082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(10086), 2, + STATE(10804), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725184,15 +725176,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331552] = 6, + [332111] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(10137), 2, + STATE(10883), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725207,15 +725199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331581] = 6, + [332140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(10126), 2, + STATE(10940), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725230,15 +725222,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331610] = 6, + [332169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(10158), 2, + STATE(10994), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725253,242 +725245,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331639] = 9, + [332198] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13803), 1, - anon_sym_LBRACK, - ACTIONS(14652), 1, + ACTIONS(8404), 1, anon_sym___attribute, - STATE(4334), 1, - sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(8678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14650), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [331674] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - ACTIONS(13188), 1, - anon_sym_requires, - STATE(8398), 1, - sym_trailing_return_type, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [331707] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - ACTIONS(13236), 1, - anon_sym_requires, - STATE(8401), 1, - sym_trailing_return_type, - ACTIONS(13202), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [331740] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(12261), 1, - anon_sym_STAR, - ACTIONS(12263), 1, - anon_sym_AMP_AMP, - ACTIONS(12265), 1, - anon_sym_AMP, - STATE(5697), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9226), 1, - sym__abstract_declarator, - ACTIONS(9427), 2, - anon_sym_LBRACE, - anon_sym_requires, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [331779] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - ACTIONS(13485), 1, - anon_sym_requires, - STATE(8402), 1, - sym_trailing_return_type, - ACTIONS(13396), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [331812] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - STATE(8408), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8560), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [331845] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10921), 1, - anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - STATE(8374), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 6, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [331878] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11044), 1, + ACTIONS(11496), 1, anon_sym_DASH_GT, - ACTIONS(14422), 1, + ACTIONS(13523), 1, anon_sym_requires, - STATE(8403), 1, + STATE(8690), 1, sym_trailing_return_type, - ACTIONS(14419), 2, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 6, + ACTIONS(8402), 5, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [331911] = 6, + anon_sym_GT2, + [332233] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14612), 1, sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(10179), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [331940] = 6, + ACTIONS(14616), 1, + aux_sym_preproc_else_token1, + ACTIONS(14618), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14644), 1, + aux_sym_preproc_if_token2, + STATE(8917), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8928), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9122), 1, + sym_enumerator, + ACTIONS(14620), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10939), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(10950), 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, + [332272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(9784), 2, + STATE(10060), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725503,124 +725322,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [331969] = 6, + [332301] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14612), 1, sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(10927), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [331998] = 9, + ACTIONS(14616), 1, + aux_sym_preproc_else_token1, + ACTIONS(14618), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14646), 1, + aux_sym_preproc_if_token2, + STATE(8938), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(8939), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(9122), 1, + sym_enumerator, + ACTIONS(14620), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10681), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + STATE(10715), 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, + [332340] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(8987), 1, anon_sym___attribute, - ACTIONS(11516), 1, + ACTIONS(11496), 1, anon_sym_DASH_GT, - ACTIONS(13197), 1, + ACTIONS(14648), 1, anon_sym_requires, - STATE(8715), 1, + STATE(8692), 1, sym_trailing_return_type, - ACTIONS(13146), 2, + ACTIONS(14424), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 5, + ACTIONS(8989), 5, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [332033] = 11, + [332375] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13403), 1, sym_identifier, - ACTIONS(14636), 1, - aux_sym_preproc_else_token1, - ACTIONS(14638), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14654), 1, - aux_sym_preproc_if_token2, - STATE(8870), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8871), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9089), 1, - sym_enumerator, - ACTIONS(14640), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(11503), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(11504), 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, - [332072] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13803), 1, - anon_sym_LBRACK, - ACTIONS(14658), 1, - anon_sym___attribute, - STATE(4334), 1, - sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(8678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14656), 7, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [332107] = 6, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9895), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [332416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(14660), 1, + ACTIONS(14651), 1, anon_sym_LT, - STATE(4045), 1, + STATE(4128), 1, sym_template_argument_list, - ACTIONS(6574), 4, + ACTIONS(6568), 4, anon_sym___attribute, anon_sym_COLON, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(6567), 8, + ACTIONS(6561), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -725629,142 +725428,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK_LBRACK, anon_sym_asm, anon_sym___asm__, - [332136] = 9, + [332445] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(7972), 1, anon_sym___attribute, - ACTIONS(11518), 1, + ACTIONS(11309), 1, anon_sym_DASH_GT, - ACTIONS(13205), 1, + ACTIONS(13220), 1, anon_sym_requires, - STATE(8513), 1, + STATE(8522), 1, sym_trailing_return_type, - ACTIONS(13202), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(7970), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [332171] = 9, + [332480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(11518), 1, + ACTIONS(14470), 1, + sym_identifier, + STATE(8617), 2, + sym_string_literal, + sym_raw_string_literal, + STATE(9742), 2, + sym__string, + sym_concatenated_string, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(161), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [332509] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11003), 1, anon_sym_DASH_GT, - ACTIONS(13399), 1, + ACTIONS(13175), 1, anon_sym_requires, - STATE(8517), 1, + STATE(8413), 1, sym_trailing_return_type, - ACTIONS(13396), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7874), 6, anon_sym_LPAREN2, - anon_sym___attribute__, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_LBRACK, - [332206] = 9, + anon_sym_EQ, + anon_sym_try, + [332542] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(8404), 1, anon_sym___attribute, - ACTIONS(11518), 1, + ACTIONS(11309), 1, anon_sym_DASH_GT, - ACTIONS(14499), 1, + ACTIONS(13386), 1, anon_sym_requires, - STATE(8519), 1, + STATE(8523), 1, sym_trailing_return_type, - ACTIONS(14419), 2, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 5, + ACTIONS(8402), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [332241] = 9, + [332577] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13403), 1, + sym_identifier, + ACTIONS(13407), 1, + anon_sym_COLON_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(3803), 2, + sym_template_type, + sym_splice_type_specifier, + STATE(9645), 2, + sym__class_name, + sym_qualified_type_identifier, + STATE(11531), 3, + sym_decltype, + sym_dependent_type_identifier, + sym_splice_expression, + [332618] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(8987), 1, anon_sym___attribute, - ACTIONS(11516), 1, + ACTIONS(11309), 1, anon_sym_DASH_GT, - ACTIONS(13239), 1, + ACTIONS(14494), 1, anon_sym_requires, - STATE(8725), 1, + STATE(8525), 1, sym_trailing_return_type, - ACTIONS(13202), 2, + ACTIONS(14424), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(8989), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_GT2, - [332276] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14483), 1, - sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9705), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [332305] = 6, + [332653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(9896), 2, + STATE(9841), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725779,68 +725606,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332334] = 13, + [332682] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(14662), 1, + ACTIONS(14612), 1, sym_identifier, - ACTIONS(14664), 1, - anon_sym_COLON_COLON, - ACTIONS(14666), 1, - anon_sym_LBRACK_COLON, - STATE(3960), 1, - sym_splice_specifier, - STATE(3961), 1, - sym_splice_type_specifier, - STATE(4150), 1, - sym__splice_specialization_specifier, - STATE(4203), 1, - sym_template_type, - STATE(8754), 1, - sym__scope_resolution, - STATE(4229), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [332377] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(14660), 1, - anon_sym_LT, - STATE(4045), 1, - sym_template_argument_list, - ACTIONS(11754), 4, - anon_sym___attribute, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6883), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - anon_sym_asm, - anon_sym___asm__, - [332406] = 6, + ACTIONS(14616), 1, + aux_sym_preproc_else_token1, + ACTIONS(14618), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14653), 1, + aux_sym_preproc_if_token2, + STATE(8872), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(8895), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9122), 1, + sym_enumerator, + ACTIONS(14620), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10963), 3, + sym_preproc_else_in_enumerator_list_no_comma, + sym_preproc_elif_in_enumerator_list_no_comma, + sym_preproc_elifdef_in_enumerator_list_no_comma, + STATE(11581), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [332721] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(10685), 2, + STATE(9788), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725855,44 +725657,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332435] = 12, + [332750] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, + ACTIONS(13403), 1, sym_identifier, - ACTIONS(13425), 1, + ACTIONS(13407), 1, anon_sym_COLON_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(8729), 1, sym__scope_resolution, - STATE(3790), 2, + STATE(3803), 2, sym_template_type, sym_splice_type_specifier, - STATE(10198), 2, + STATE(9822), 2, sym__class_name, sym_qualified_type_identifier, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_dependent_type_identifier, sym_splice_expression, - [332476] = 6, + [332791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(10810), 2, + STATE(10034), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725907,38 +725709,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332505] = 6, + [332820] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, - sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(10889), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [332534] = 6, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13783), 1, + anon_sym_LBRACK, + ACTIONS(14657), 1, + anon_sym___attribute, + STATE(4367), 1, + sym_parameter_list, + STATE(8853), 1, + sym__function_declarator_seq, + STATE(8696), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14655), 7, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [332855] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(9755), 2, + STATE(10100), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725953,38 +725758,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332563] = 6, + [332884] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, - sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(10946), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [332592] = 6, + ACTIONS(11003), 1, + anon_sym_DASH_GT, + ACTIONS(13223), 1, + anon_sym_requires, + STATE(8414), 1, + sym_trailing_return_type, + ACTIONS(13217), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 6, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_try, + [332917] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(14651), 1, + anon_sym_LT, + STATE(4128), 1, + sym_template_argument_list, + ACTIONS(11752), 4, + anon_sym___attribute, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6899), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + anon_sym_asm, + anon_sym___asm__, + [332946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(14470), 1, sym_identifier, - STATE(8656), 2, + STATE(8617), 2, sym_string_literal, sym_raw_string_literal, - STATE(11000), 2, + STATE(10054), 2, sym__string, sym_concatenated_string, ACTIONS(123), 5, @@ -725999,612 +725829,780 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332621] = 6, + [332975] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(10966), 1, + anon_sym_COLON_COLON, + ACTIONS(14659), 1, sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9826), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [332650] = 5, + ACTIONS(14661), 1, + anon_sym_template, + STATE(2095), 1, + sym_template_type, + STATE(2096), 1, + sym_dependent_type_identifier, + STATE(2121), 1, + sym_qualified_type_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8665), 1, + sym__scope_resolution, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [333017] = 3, ACTIONS(3), 1, sym_comment, - STATE(8501), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(9118), 3, + ACTIONS(8786), 1, + sym_identifier, + ACTIONS(8788), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(14477), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - ACTIONS(14479), 5, anon_sym_R_DQUOTE, anon_sym_LR_DQUOTE, anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [332677] = 6, + [333039] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(14483), 1, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6463), 1, + anon_sym_COLON_COLON, + ACTIONS(14663), 1, sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9799), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [332706] = 11, + ACTIONS(14665), 1, + anon_sym_template, + STATE(3731), 1, + sym_template_type, + STATE(3736), 1, + sym_qualified_type_identifier, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8667), 1, + sym__scope_resolution, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [333081] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4608), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10223), 10, + anon_sym_RPAREN, + 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, + [333109] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14667), 1, sym_identifier, - ACTIONS(14636), 1, - aux_sym_preproc_else_token1, - ACTIONS(14638), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14668), 1, - aux_sym_preproc_if_token2, - STATE(8900), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8901), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9089), 1, - sym_enumerator, - ACTIONS(14640), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(10741), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(10744), 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, - [332745] = 8, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10547), 1, + sym_splice_type_specifier, + STATE(11524), 1, + sym_qualified_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [333149] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10921), 1, + ACTIONS(10639), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, + anon_sym_LBRACK, + ACTIONS(14669), 1, + anon_sym_SEMI, + ACTIONS(14671), 1, + anon_sym_COLON, + ACTIONS(14673), 1, + anon_sym_EQ, + ACTIONS(14675), 1, + anon_sym_try, + STATE(2785), 1, + sym_compound_statement, + STATE(10280), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(2863), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [333187] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, + anon_sym_LBRACK, + ACTIONS(14671), 1, + anon_sym_COLON, + ACTIONS(14677), 1, + anon_sym_SEMI, + ACTIONS(14679), 1, + anon_sym_EQ, + ACTIONS(14681), 1, + anon_sym_try, + STATE(433), 1, + sym_compound_statement, + STATE(10203), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(434), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [333225] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(11269), 1, + anon_sym_requires, + STATE(8676), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [333257] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7876), 1, + anon_sym___attribute, + ACTIONS(11269), 1, anon_sym_requires, - ACTIONS(11044), 1, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [333287] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10560), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, + anon_sym_LBRACK, + ACTIONS(14671), 1, + anon_sym_COLON, + ACTIONS(14683), 1, + anon_sym_SEMI, + ACTIONS(14685), 1, + anon_sym_EQ, + ACTIONS(14687), 1, + anon_sym_try, + STATE(3348), 1, + sym_compound_statement, + STATE(10242), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(3351), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [333325] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11267), 1, anon_sym_DASH_GT, - STATE(8428), 1, + ACTIONS(11269), 1, + anon_sym_requires, + STATE(8678), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [333357] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7972), 1, + anon_sym___attribute, + ACTIONS(11269), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [333387] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(11269), 1, + anon_sym_requires, + STATE(8679), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [333419] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8404), 1, + anon_sym___attribute, + ACTIONS(11269), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [333449] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8987), 1, + anon_sym___attribute, + ACTIONS(11269), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8533), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [333479] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(11269), 1, + anon_sym_requires, + STATE(8681), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8533), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_LBRACK, + anon_sym_GT2, + [333511] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8997), 1, + anon_sym___attribute, + ACTIONS(11269), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8506), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8999), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym___attribute__, + anon_sym_LBRACK, + anon_sym_GT2, + [333541] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10564), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, + anon_sym_LBRACK, + ACTIONS(14671), 1, + anon_sym_COLON, + ACTIONS(14689), 1, + anon_sym_SEMI, + ACTIONS(14691), 1, + anon_sym_EQ, + ACTIONS(14693), 1, + anon_sym_try, + STATE(3435), 1, + sym_compound_statement, + STATE(10495), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(3440), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [333579] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4608), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10260), 10, + anon_sym_RPAREN, + 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, + [333607] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11267), 1, + anon_sym_DASH_GT, + ACTIONS(13178), 1, + anon_sym_requires, + STATE(8687), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 6, + ACTIONS(7874), 5, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [332778] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13421), 1, - sym_identifier, - ACTIONS(13425), 1, - anon_sym_COLON_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8762), 1, - sym__scope_resolution, - STATE(3790), 2, - sym_template_type, - sym_splice_type_specifier, - STATE(9533), 2, - sym__class_name, - sym_qualified_type_identifier, - STATE(10768), 3, - sym_decltype, - sym_dependent_type_identifier, - sym_splice_expression, - [332819] = 8, + anon_sym_GT2, + [333639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10921), 1, + ACTIONS(7876), 1, + anon_sym___attribute, + ACTIONS(13178), 1, anon_sym_requires, - ACTIONS(11044), 1, - anon_sym_DASH_GT, - STATE(8441), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(13149), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8576), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 6, + ACTIONS(7874), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_try, - [332852] = 9, + anon_sym_GT2, + [333669] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(11516), 1, + ACTIONS(11267), 1, anon_sym_DASH_GT, - ACTIONS(13536), 1, + ACTIONS(13241), 1, anon_sym_requires, - STATE(8735), 1, + STATE(8689), 1, sym_trailing_return_type, - ACTIONS(13396), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 5, + ACTIONS(7970), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [332887] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14483), 1, - sym_identifier, - STATE(8656), 2, - sym_string_literal, - sym_raw_string_literal, - STATE(9930), 2, - sym__string, - sym_concatenated_string, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(161), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [332916] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14632), 1, - sym_identifier, - ACTIONS(14636), 1, - aux_sym_preproc_else_token1, - ACTIONS(14638), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14670), 1, - aux_sym_preproc_if_token2, - STATE(8890), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(8892), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(9089), 1, - sym_enumerator, - ACTIONS(14640), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(11038), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - STATE(11064), 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, - [332955] = 9, + [333701] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(7972), 1, anon_sym___attribute, - ACTIONS(10861), 1, + ACTIONS(13241), 1, anon_sym_requires, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - STATE(8585), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(13217), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 5, + ACTIONS(7970), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [332990] = 9, + anon_sym_GT2, + [333731] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, + ACTIONS(11267), 1, anon_sym_DASH_GT, - STATE(8718), 1, + ACTIONS(13523), 1, + anon_sym_requires, + STATE(8690), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 5, + ACTIONS(8402), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [333025] = 9, + [333763] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, + ACTIONS(8404), 1, anon_sym___attribute, - ACTIONS(11298), 1, + ACTIONS(13523), 1, anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - STATE(8730), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(13383), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 5, + ACTIONS(8402), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [333060] = 9, + [333793] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(8987), 1, anon_sym___attribute, - ACTIONS(11298), 1, + ACTIONS(14648), 1, anon_sym_requires, - ACTIONS(11516), 1, - anon_sym_DASH_GT, - STATE(8736), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(14424), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8550), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8422), 5, + ACTIONS(8989), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [333095] = 9, + [333823] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(11516), 1, + ACTIONS(11267), 1, anon_sym_DASH_GT, - STATE(8744), 1, + ACTIONS(14648), 1, + anon_sym_requires, + STATE(8692), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(14424), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(8533), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 5, + ACTIONS(8989), 5, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, - anon_sym___attribute__, anon_sym_LBRACK, anon_sym_GT2, - [333130] = 9, + [333855] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(8997), 1, anon_sym___attribute, - ACTIONS(11518), 1, - anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(14695), 1, anon_sym_requires, - STATE(8511), 1, - sym_trailing_return_type, - ACTIONS(13146), 2, + ACTIONS(14430), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8506), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 5, + ACTIONS(8999), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - [333165] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14672), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10553), 1, - sym_splice_type_specifier, - STATE(10723), 1, - sym_qualified_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [333205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8657), 1, - sym_identifier, - ACTIONS(8659), 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, - [333227] = 11, + anon_sym_GT2, + [333885] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(10564), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14674), 1, - anon_sym_SEMI, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14678), 1, + ACTIONS(14691), 1, anon_sym_EQ, - ACTIONS(14680), 1, + ACTIONS(14693), 1, anon_sym_try, - STATE(1013), 1, + ACTIONS(14698), 1, + anon_sym_SEMI, + STATE(3393), 1, sym_compound_statement, - STATE(10376), 1, + STATE(10463), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(874), 4, + STATE(3395), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [333265] = 11, + [333923] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(958), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14682), 1, + ACTIONS(14700), 1, anon_sym_SEMI, - ACTIONS(14684), 1, + ACTIONS(14702), 1, anon_sym_EQ, - ACTIONS(14686), 1, + ACTIONS(14704), 1, anon_sym_try, - STATE(2869), 1, + STATE(855), 1, sym_compound_statement, - STATE(10248), 1, + STATE(10501), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(2871), 4, + STATE(859), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [333303] = 13, + [333961] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11081), 1, + ACTIONS(13089), 1, anon_sym_COLON_COLON, - ACTIONS(14688), 1, + ACTIONS(14706), 1, sym_identifier, - ACTIONS(14690), 1, + ACTIONS(14708), 1, anon_sym_template, - STATE(3491), 1, + STATE(3731), 1, sym_template_type, - STATE(3495), 1, + STATE(3742), 1, sym_dependent_type_identifier, - STATE(3644), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8675), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [333345] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11059), 1, - anon_sym_COLON_COLON, - ACTIONS(14692), 1, - sym_identifier, - ACTIONS(14694), 1, - anon_sym_template, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4123), 1, - sym_template_type, - STATE(4127), 1, - sym_dependent_type_identifier, - STATE(4267), 1, + STATE(4605), 1, sym_qualified_type_identifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8676), 1, + STATE(8695), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [333387] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10603), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14696), 1, - anon_sym_SEMI, - ACTIONS(14698), 1, - anon_sym_EQ, - ACTIONS(14700), 1, - anon_sym_try, - STATE(3366), 1, - sym_compound_statement, - STATE(10431), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(3367), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [333425] = 5, + [334003] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14704), 2, + ACTIONS(14712), 2, anon_sym___attribute, anon_sym_LBRACK, - STATE(7987), 2, + STATE(7981), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14702), 9, + ACTIONS(14710), 9, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -726614,534 +726612,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [333451] = 5, + [334029] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(14660), 1, - anon_sym_LT, - STATE(4045), 1, - sym_template_argument_list, - ACTIONS(9650), 3, - anon_sym___attribute, - anon_sym_LBRACK, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(9652), 9, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, - anon_sym_COLON, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - anon_sym_asm, - anon_sym___asm__, - [333477] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9322), 1, - anon_sym___attribute, - ACTIONS(14706), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9324), 11, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(13775), 1, 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, - [333501] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14708), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10377), 1, - sym_splice_type_specifier, - STATE(11216), 1, - sym_qualified_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [333541] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11010), 1, - anon_sym_COLON_COLON, - ACTIONS(14710), 1, - sym_identifier, - ACTIONS(14712), 1, - anon_sym_template, - STATE(2455), 1, - sym_template_type, - STATE(2457), 1, - sym_dependent_type_identifier, - STATE(2543), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8682), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [333583] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, - anon_sym_requires, - STATE(8718), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 5, - anon_sym_DOT_DOT_DOT, + ACTIONS(13902), 1, anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(13910), 1, anon_sym_LBRACK, - anon_sym_GT2, - [333615] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, ACTIONS(14714), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10507), 1, - sym_splice_type_specifier, - STATE(11383), 1, - sym_qualified_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [333655] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13417), 1, - anon_sym_COLON_COLON, - ACTIONS(14716), 1, - sym_identifier, - ACTIONS(14718), 1, - anon_sym_template, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, - sym_template_type, - STATE(2920), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8685), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [333697] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11073), 1, - anon_sym_COLON_COLON, - ACTIONS(14720), 1, - sym_identifier, - ACTIONS(14722), 1, - anon_sym_template, - STATE(2675), 1, - sym_template_type, - STATE(2676), 1, - sym_dependent_type_identifier, - STATE(2811), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8686), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [333739] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11089), 1, - anon_sym_COLON_COLON, - ACTIONS(14724), 1, - sym_identifier, - ACTIONS(14726), 1, - anon_sym_template, - STATE(2550), 1, - sym_template_type, - STATE(2551), 1, - sym_dependent_type_identifier, - STATE(2625), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8687), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [333781] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 1, - anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [333811] = 11, + anon_sym_SEMI, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(10164), 1, + sym_gnu_asm_expression, + STATE(10165), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [334071] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14728), 1, - anon_sym_SEMI, - ACTIONS(14730), 1, + ACTIONS(14679), 1, anon_sym_EQ, - ACTIONS(14732), 1, + ACTIONS(14681), 1, anon_sym_try, - STATE(3464), 1, + ACTIONS(14716), 1, + anon_sym_SEMI, + STATE(473), 1, sym_compound_statement, - STATE(10524), 1, + STATE(10217), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(3465), 4, + STATE(474), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [333849] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14736), 1, - anon_sym_EQ, - STATE(4334), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - ACTIONS(14734), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9150), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [333889] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(11020), 1, - anon_sym_COLON_COLON, - ACTIONS(14738), 1, - sym_identifier, - ACTIONS(14740), 1, - anon_sym_template, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, - sym_template_type, - STATE(2920), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8691), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [333931] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, - anon_sym_COLON_COLON, - ACTIONS(14742), 1, - sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10470), 1, - sym_splice_type_specifier, - STATE(11517), 1, - sym_qualified_identifier, - STATE(10768), 4, - sym_decltype, - sym_template_type, - sym_dependent_type_identifier, - sym_splice_expression, - [333971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8697), 1, - sym_identifier, - ACTIONS(8699), 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, - [333993] = 13, + [334109] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14744), 1, + ACTIONS(14420), 1, anon_sym_SEMI, - STATE(4564), 1, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(10138), 1, + STATE(10053), 1, sym_gnu_asm_expression, - STATE(10140), 1, + STATE(10055), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [334035] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13172), 1, - anon_sym_COLON_COLON, - ACTIONS(14746), 1, - sym_identifier, - ACTIONS(14748), 1, - anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3752), 1, - sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8695), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [334077] = 11, + [334151] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(10639), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14750), 1, - anon_sym_SEMI, - ACTIONS(14752), 1, + ACTIONS(14673), 1, anon_sym_EQ, - ACTIONS(14754), 1, + ACTIONS(14675), 1, anon_sym_try, - STATE(440), 1, + ACTIONS(14718), 1, + anon_sym_SEMI, + STATE(2796), 1, sym_compound_statement, - STATE(10405), 1, + STATE(10444), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(441), 4, + STATE(2797), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [334115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14756), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9324), 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, - [334137] = 11, + [334189] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14752), 1, + ACTIONS(14720), 1, + anon_sym_SEMI, + ACTIONS(14722), 1, anon_sym_EQ, - ACTIONS(14754), 1, + ACTIONS(14724), 1, anon_sym_try, - ACTIONS(14758), 1, - anon_sym_SEMI, - STATE(411), 1, + STATE(924), 1, sym_compound_statement, - STATE(10566), 1, + STATE(10449), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(414), 4, + STATE(865), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [334175] = 3, + [334227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 1, + ACTIONS(8790), 1, sym_identifier, - ACTIONS(8752), 13, + ACTIONS(8792), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -727155,268 +726770,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [334197] = 13, + [334249] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4608), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10241), 10, + anon_sym_RPAREN, + 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, + [334277] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10560), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, + anon_sym_LBRACK, + ACTIONS(14671), 1, + anon_sym_COLON, + ACTIONS(14685), 1, + anon_sym_EQ, + ACTIONS(14687), 1, + anon_sym_try, + ACTIONS(14726), 1, + anon_sym_SEMI, + STATE(3275), 1, + sym_compound_statement, + STATE(10353), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(3279), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [334315] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10988), 1, + ACTIONS(10895), 1, anon_sym_COLON_COLON, - ACTIONS(14760), 1, + ACTIONS(14728), 1, sym_identifier, - ACTIONS(14762), 1, + ACTIONS(14730), 1, anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(6690), 1, - sym_template_type, - STATE(6691), 1, + STATE(2787), 1, sym_dependent_type_identifier, - STATE(6827), 1, + STATE(2880), 1, + sym_template_type, + STATE(2912), 1, sym_qualified_type_identifier, - STATE(8222), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, sym_splice_specifier, - STATE(8700), 1, + STATE(8705), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [334239] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14405), 1, - anon_sym_SEMI, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(10168), 1, - sym_gnu_asm_expression, - STATE(10188), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [334281] = 13, + [334357] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11097), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14764), 1, + ACTIONS(14500), 1, sym_identifier, - ACTIONS(14766), 1, - anon_sym_template, - STATE(2579), 1, - sym_template_type, - STATE(2580), 1, - sym_dependent_type_identifier, - STATE(2633), 1, - sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8702), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(10768), 3, - sym_decltype, + STATE(8157), 1, + sym_splice_specifier, + STATE(10316), 1, sym_splice_type_specifier, + STATE(11118), 1, + sym_qualified_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_expression, - [334323] = 12, + [334397] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(10817), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14768), 1, - anon_sym_EQ, - STATE(4334), 1, + ACTIONS(14372), 1, + anon_sym_SEMI, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - ACTIONS(14734), 2, - anon_sym_COMMA, - anon_sym_GT2, - STATE(8367), 2, + STATE(9831), 1, + sym_gnu_asm_expression, + STATE(9832), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - STATE(9150), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [334363] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4613), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10204), 10, - anon_sym_RPAREN, - 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, - [334391] = 13, + [334439] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13166), 1, + ACTIONS(11089), 1, anon_sym_COLON_COLON, - ACTIONS(14746), 1, + ACTIONS(14732), 1, sym_identifier, - ACTIONS(14748), 1, + ACTIONS(14734), 1, anon_sym_template, - STATE(3743), 1, + STATE(2787), 1, sym_dependent_type_identifier, - STATE(3748), 1, + STATE(2880), 1, sym_template_type, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4565), 1, + STATE(2912), 1, sym_qualified_type_identifier, - STATE(8222), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, sym_splice_specifier, - STATE(8705), 1, + STATE(8708), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [334433] = 12, + [334481] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14555), 1, + ACTIONS(14736), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10549), 1, + STATE(10415), 1, sym_splice_type_specifier, - STATE(10666), 1, + STATE(11136), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [334473] = 13, + [334521] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11111), 1, + ACTIONS(10992), 1, anon_sym_COLON_COLON, - ACTIONS(14770), 1, + ACTIONS(14738), 1, sym_identifier, - ACTIONS(14772), 1, + ACTIONS(14740), 1, anon_sym_template, - STATE(3491), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4078), 1, sym_template_type, - STATE(3495), 1, + STATE(4079), 1, sym_dependent_type_identifier, - STATE(3644), 1, + STATE(4246), 1, sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8707), 1, + STATE(8710), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [334515] = 11, + [334563] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14730), 1, - anon_sym_EQ, - ACTIONS(14732), 1, - anon_sym_try, - ACTIONS(14774), 1, + ACTIONS(14390), 1, anon_sym_SEMI, - STATE(3479), 1, - sym_compound_statement, - STATE(10212), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(3480), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [334553] = 6, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(10074), 1, + sym_gnu_asm_expression, + STATE(10081), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [334605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14441), 1, anon_sym_LBRACK, - STATE(4613), 1, + STATE(4608), 1, sym_parameter_list, - STATE(8243), 1, + STATE(8343), 1, sym__function_declarator_seq, - ACTIONS(10192), 10, + ACTIONS(10219), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -727427,343 +727042,334 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [334581] = 13, + [334633] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(13154), 1, - anon_sym_COLON_COLON, - ACTIONS(14776), 1, - sym_identifier, - ACTIONS(14778), 1, + ACTIONS(5158), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4565), 1, - sym_qualified_type_identifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8710), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [334623] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(10653), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14780), 1, + ACTIONS(14742), 1, sym_identifier, - ACTIONS(14782), 1, - anon_sym_template, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, - sym_template_type, - STATE(2920), 1, - sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8711), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(10768), 3, - sym_decltype, + STATE(8157), 1, + sym_splice_specifier, + STATE(10295), 1, sym_splice_type_specifier, + STATE(11096), 1, + sym_qualified_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_expression, - [334665] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(13197), 1, - anon_sym_requires, - STATE(8715), 1, - sym_trailing_return_type, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [334697] = 7, + [334673] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, + ACTIONS(9293), 1, anon_sym___attribute, - ACTIONS(13197), 1, - anon_sym_requires, - ACTIONS(13146), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 6, + ACTIONS(14744), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(14746), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9295), 9, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_GT2, - [334727] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(13239), 1, - anon_sym_requires, - STATE(8725), 1, - sym_trailing_return_type, - ACTIONS(13202), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, anon_sym_GT2, - [334759] = 7, + anon_sym_requires, + [334699] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7968), 1, - anon_sym___attribute, - ACTIONS(13239), 1, - anon_sym_requires, - ACTIONS(13202), 2, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14441), 1, + anon_sym_LBRACK, + STATE(4608), 1, + sym_parameter_list, + STATE(8343), 1, + sym__function_declarator_seq, + ACTIONS(10231), 10, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + anon_sym_try, + anon_sym_requires, + [334727] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym___asm, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(13910), 1, anon_sym_LBRACK, - anon_sym_GT2, - [334789] = 13, + ACTIONS(14388), 1, + anon_sym_SEMI, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(9829), 1, + sym_gnu_asm_expression, + STATE(9839), 1, + aux_sym_declaration_repeat1, + ACTIONS(13914), 2, + anon_sym_asm, + anon_sym___asm__, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [334769] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(5938), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14776), 1, + ACTIONS(14524), 1, sym_identifier, - ACTIONS(14778), 1, - anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, - sym_template_type, - STATE(3752), 1, - sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8716), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(10768), 3, - sym_decltype, + STATE(8157), 1, + sym_splice_specifier, + STATE(10361), 1, sym_splice_type_specifier, + STATE(10675), 1, + sym_qualified_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, sym_splice_expression, - [334831] = 8, + [334809] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, - anon_sym_requires, - STATE(8730), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [334863] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7968), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12111), 1, anon_sym___attribute__, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, anon_sym_LBRACK, - anon_sym_GT2, - [334893] = 4, + ACTIONS(14750), 1, + anon_sym_EQ, + STATE(4367), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + ACTIONS(14748), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9116), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [334849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14756), 2, + ACTIONS(14752), 2, anon_sym_AMP_AMP, anon_sym_and, - ACTIONS(14784), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9395), 10, + ACTIONS(9331), 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, - [334917] = 11, + [334871] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14754), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10561), 1, + sym_splice_type_specifier, + STATE(11554), 1, + sym_qualified_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [334911] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14786), 1, + ACTIONS(14756), 1, anon_sym_SEMI, - ACTIONS(14788), 1, + ACTIONS(14758), 1, anon_sym_EQ, - ACTIONS(14790), 1, + ACTIONS(14760), 1, anon_sym_try, - STATE(719), 1, + STATE(671), 1, sym_compound_statement, - STATE(10522), 1, + STATE(10252), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(720), 4, + STATE(672), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [334955] = 12, + [334949] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11007), 1, + anon_sym_COLON_COLON, + ACTIONS(14740), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(14762), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4078), 1, + sym_template_type, + STATE(4079), 1, + sym_dependent_type_identifier, + STATE(4246), 1, + sym_qualified_type_identifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8722), 1, + sym__scope_resolution, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [334991] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14591), 1, + ACTIONS(14544), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10297), 1, + STATE(10481), 1, sym_splice_type_specifier, - STATE(11625), 1, + STATE(11611), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [334995] = 6, + [335031] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4613), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10172), 10, - anon_sym_RPAREN, - 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, - [335023] = 6, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13395), 1, + anon_sym_COLON_COLON, + ACTIONS(14764), 1, + sym_identifier, + ACTIONS(14766), 1, + anon_sym_template, + STATE(3594), 1, + sym_dependent_type_identifier, + STATE(3624), 1, + sym_qualified_type_identifier, + STATE(3691), 1, + sym_template_type, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8724), 1, + sym__scope_resolution, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [335073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14441), 1, anon_sym_LBRACK, - STATE(4613), 1, + STATE(4608), 1, sym_parameter_list, - STATE(8243), 1, + STATE(8343), 1, sym__function_declarator_seq, - ACTIONS(10188), 10, + ACTIONS(10266), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -727774,223 +727380,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [335051] = 8, + [335101] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(13536), 1, - anon_sym_requires, - STATE(8735), 1, - sym_trailing_return_type, - ACTIONS(13396), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [335083] = 7, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(11057), 1, + anon_sym_COLON_COLON, + ACTIONS(14768), 1, + sym_identifier, + ACTIONS(14770), 1, + anon_sym_template, + STATE(2678), 1, + sym_template_type, + STATE(2679), 1, + sym_dependent_type_identifier, + STATE(2792), 1, + sym_qualified_type_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8726), 1, + sym__scope_resolution, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [335143] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(8424), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(13536), 1, - anon_sym_requires, - ACTIONS(13396), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12111), 1, anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [335113] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, - anon_sym_requires, - STATE(8736), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, + ACTIONS(13775), 1, anon_sym_LPAREN2, + ACTIONS(13910), 1, anon_sym_LBRACK, + ACTIONS(14772), 1, + anon_sym_EQ, + STATE(4367), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + ACTIONS(14748), 2, + anon_sym_COMMA, anon_sym_GT2, - [335145] = 12, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9116), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [335183] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14529), 1, + ACTIONS(14774), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10225), 1, + STATE(10420), 1, sym_splice_type_specifier, - STATE(11282), 1, + STATE(11149), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [335185] = 12, + [335223] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13407), 1, anon_sym_COLON_COLON, - ACTIONS(14513), 1, + ACTIONS(14776), 1, sym_identifier, - STATE(3808), 1, + STATE(3731), 1, + sym_template_type, + STATE(3736), 1, + sym_qualified_type_identifier, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(8157), 1, + sym_splice_specifier, + STATE(8729), 1, + sym__scope_resolution, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [335265] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14562), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10317), 1, + STATE(10453), 1, sym_splice_type_specifier, - STATE(10933), 1, + STATE(11210), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [335225] = 11, + [335305] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(958), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14792), 1, - anon_sym_SEMI, - ACTIONS(14794), 1, + ACTIONS(14702), 1, anon_sym_EQ, - ACTIONS(14796), 1, + ACTIONS(14704), 1, anon_sym_try, - STATE(842), 1, + ACTIONS(14778), 1, + anon_sym_SEMI, + STATE(810), 1, sym_compound_statement, - STATE(10456), 1, + STATE(10563), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(850), 4, + STATE(811), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [335263] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8424), 1, - anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [335293] = 12, + [335343] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(14636), 1, anon_sym_COLON_COLON, - ACTIONS(14798), 1, + ACTIONS(14780), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(14782), 1, + anon_sym_template, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10251), 1, - sym_splice_type_specifier, - STATE(10814), 1, - sym_qualified_identifier, - STATE(10768), 4, - sym_decltype, + STATE(4157), 1, sym_template_type, + STATE(4158), 1, sym_dependent_type_identifier, + STATE(4159), 1, + sym_qualified_type_identifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8732), 1, + sym__scope_resolution, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, sym_splice_expression, - [335333] = 6, + [335385] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14752), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(14784), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + ACTIONS(9295), 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, + [335409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14441), 1, anon_sym_LBRACK, - STATE(4613), 1, + STATE(4608), 1, sym_parameter_list, - STATE(8243), 1, + STATE(8343), 1, sym__function_declarator_seq, - ACTIONS(10208), 10, + ACTIONS(10176), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -728001,734 +727620,473 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [335361] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14678), 1, - anon_sym_EQ, - ACTIONS(14680), 1, - anon_sym_try, - ACTIONS(14800), 1, - anon_sym_SEMI, - STATE(994), 1, - sym_compound_statement, - STATE(10230), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(996), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [335399] = 11, + [335437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14794), 1, - anon_sym_EQ, - ACTIONS(14796), 1, - anon_sym_try, - ACTIONS(14802), 1, - anon_sym_SEMI, - STATE(834), 1, - sym_compound_statement, - STATE(10414), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(782), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [335437] = 7, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14786), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10319), 1, + sym_splice_type_specifier, + STATE(11308), 1, + sym_qualified_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [335477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8905), 1, + ACTIONS(9329), 1, anon_sym___attribute, - ACTIONS(14625), 1, - anon_sym_requires, - ACTIONS(14419), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8560), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 6, + ACTIONS(14746), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9331), 11, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_LPAREN2, + anon_sym_PIPE_PIPE, anon_sym___attribute__, anon_sym_LBRACK, - anon_sym_GT2, - [335467] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8905), 1, - anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(10859), 2, + anon_sym_or, anon_sym_final, anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8560), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, anon_sym_GT2, - [335497] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(11298), 1, anon_sym_requires, - STATE(8744), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8560), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [335529] = 13, + [335501] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11105), 1, + ACTIONS(11065), 1, anon_sym_COLON_COLON, - ACTIONS(14782), 1, - anon_sym_template, - ACTIONS(14804), 1, + ACTIONS(14788), 1, sym_identifier, - STATE(2755), 1, - sym_dependent_type_identifier, - STATE(2812), 1, + ACTIONS(14790), 1, + anon_sym_template, + STATE(3490), 1, sym_template_type, - STATE(2920), 1, + STATE(3509), 1, + sym_dependent_type_identifier, + STATE(3592), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8738), 1, + STATE(8737), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335571] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14411), 1, - anon_sym_SEMI, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9809), 1, - sym_gnu_asm_expression, - STATE(9810), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [335613] = 12, + [335543] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5158), 1, anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14541), 1, + ACTIONS(14570), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10266), 1, + STATE(10275), 1, sym_splice_type_specifier, - STATE(10958), 1, + STATE(11050), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [335653] = 12, + [335583] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13478), 1, + anon_sym_COLON_COLON, + ACTIONS(14792), 1, + sym_identifier, + ACTIONS(14794), 1, anon_sym_template, - ACTIONS(5164), 1, + STATE(2787), 1, + sym_dependent_type_identifier, + STATE(2880), 1, + sym_template_type, + STATE(2912), 1, + sym_qualified_type_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8739), 1, + sym__scope_resolution, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [335625] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14611), 1, + ACTIONS(14796), 1, sym_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, + STATE(7986), 1, sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10261), 1, + STATE(10434), 1, sym_splice_type_specifier, - STATE(11179), 1, + STATE(11488), 1, sym_qualified_identifier, - STATE(10768), 4, + STATE(11531), 4, sym_decltype, sym_template_type, sym_dependent_type_identifier, sym_splice_expression, - [335693] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14806), 1, - anon_sym_SEMI, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9997), 1, - sym_gnu_asm_expression, - STATE(9999), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [335735] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11296), 1, - anon_sym_DASH_GT, - ACTIONS(14625), 1, - anon_sym_requires, - STATE(8749), 1, - sym_trailing_return_type, - ACTIONS(14419), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8560), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 5, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_LBRACK, - anon_sym_GT2, - [335767] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8913), 1, - anon_sym___attribute, - ACTIONS(11298), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8601), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8915), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [335797] = 13, + [335665] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11048), 1, + ACTIONS(11073), 1, anon_sym_COLON_COLON, - ACTIONS(14694), 1, - anon_sym_template, - ACTIONS(14808), 1, + ACTIONS(14798), 1, sym_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4123), 1, + ACTIONS(14800), 1, + anon_sym_template, + STATE(2583), 1, sym_template_type, - STATE(4127), 1, + STATE(2586), 1, sym_dependent_type_identifier, - STATE(4267), 1, + STATE(2620), 1, sym_qualified_type_identifier, - STATE(8222), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(8157), 1, sym_splice_specifier, - STATE(8745), 1, + STATE(8741), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335839] = 13, + [335707] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13473), 1, + ACTIONS(13159), 1, anon_sym_COLON_COLON, - ACTIONS(14810), 1, + ACTIONS(14802), 1, sym_identifier, - ACTIONS(14812), 1, + ACTIONS(14804), 1, anon_sym_template, - STATE(3594), 1, - sym_dependent_type_identifier, - STATE(3610), 1, + STATE(3731), 1, sym_template_type, - STATE(3612), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8746), 1, + STATE(8742), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [335881] = 12, + [335749] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8761), 1, + sym_identifier, + ACTIONS(8763), 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, + [335771] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(10917), 1, anon_sym_COLON_COLON, - ACTIONS(14814), 1, + ACTIONS(14806), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(14808), 1, + anon_sym_template, + STATE(2452), 1, + sym_template_type, + STATE(2453), 1, + sym_dependent_type_identifier, + STATE(2594), 1, + sym_qualified_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10499), 1, - sym_splice_type_specifier, - STATE(10689), 1, - sym_qualified_identifier, - STATE(10768), 4, + STATE(8744), 1, + sym__scope_resolution, + STATE(11531), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [335921] = 12, + [335813] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(11027), 1, anon_sym_COLON_COLON, - ACTIONS(14621), 1, + ACTIONS(14810), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(14812), 1, + anon_sym_template, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, - sym_splice_specifier, - STATE(10346), 1, - sym_splice_type_specifier, - STATE(10997), 1, - sym_qualified_identifier, - STATE(10768), 4, - sym_decltype, + STATE(6685), 1, sym_template_type, + STATE(6686), 1, sym_dependent_type_identifier, + STATE(6843), 1, + sym_qualified_type_identifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8745), 1, + sym__scope_resolution, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, sym_splice_expression, - [335961] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8913), 1, - anon_sym___attribute, - ACTIONS(14816), 1, - anon_sym_requires, - ACTIONS(14425), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8601), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8915), 6, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_GT2, - [335991] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, - anon_sym_LBRACK, - STATE(4613), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10200), 10, - anon_sym_RPAREN, - 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, - [336019] = 12, + [335855] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13823), 1, + ACTIONS(11081), 1, anon_sym_COLON_COLON, - ACTIONS(14819), 1, + ACTIONS(14814), 1, sym_identifier, - STATE(3808), 1, + ACTIONS(14816), 1, + anon_sym_template, + STATE(2538), 1, + sym_template_type, + STATE(2582), 1, + sym_dependent_type_identifier, + STATE(2619), 1, + sym_qualified_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(7996), 1, - sym__scope_resolution, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(10326), 1, - sym_splice_type_specifier, - STATE(11273), 1, - sym_qualified_identifier, - STATE(10768), 4, + STATE(8746), 1, + sym__scope_resolution, + STATE(11531), 3, sym_decltype, - sym_template_type, - sym_dependent_type_identifier, + sym_splice_type_specifier, sym_splice_expression, - [336059] = 11, + [335897] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14788), 1, + ACTIONS(14722), 1, anon_sym_EQ, - ACTIONS(14790), 1, + ACTIONS(14724), 1, anon_sym_try, - ACTIONS(14821), 1, + ACTIONS(14818), 1, anon_sym_SEMI, - STATE(709), 1, + STATE(898), 1, sym_compound_statement, - STATE(10420), 1, + STATE(10471), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(710), 4, + STATE(903), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [336097] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14451), 1, - anon_sym_SEMI, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(9933), 1, - sym_gnu_asm_expression, - STATE(9934), 1, - aux_sym_declaration_repeat1, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [336139] = 13, + [335935] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(14664), 1, + ACTIONS(13121), 1, anon_sym_COLON_COLON, - ACTIONS(14823), 1, + ACTIONS(14802), 1, sym_identifier, - ACTIONS(14825), 1, + ACTIONS(14804), 1, anon_sym_template, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(4215), 1, + STATE(3731), 1, sym_template_type, - STATE(4217), 1, + STATE(3742), 1, sym_dependent_type_identifier, - STATE(4218), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4605), 1, sym_qualified_type_identifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8754), 1, + STATE(8748), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [336181] = 13, + [335977] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym___asm, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14457), 1, + ACTIONS(14820), 1, anon_sym_SEMI, - STATE(4564), 1, + STATE(4614), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(9843), 1, + STATE(9911), 1, sym_gnu_asm_expression, - STATE(9844), 1, + STATE(9912), 1, aux_sym_declaration_repeat1, - ACTIONS(13949), 2, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [336223] = 13, + [336019] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(6469), 1, + ACTIONS(11095), 1, anon_sym_COLON_COLON, - ACTIONS(14827), 1, + ACTIONS(14822), 1, sym_identifier, - ACTIONS(14829), 1, + ACTIONS(14824), 1, anon_sym_template, - STATE(3743), 1, - sym_dependent_type_identifier, - STATE(3748), 1, + STATE(3490), 1, sym_template_type, - STATE(3752), 1, + STATE(3509), 1, + sym_dependent_type_identifier, + STATE(3592), 1, sym_qualified_type_identifier, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(8222), 1, - sym_splice_specifier, - STATE(8756), 1, - sym__scope_resolution, - STATE(10768), 3, - sym_decltype, - sym_splice_type_specifier, - sym_splice_expression, - [336265] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2422), 1, - anon_sym_decltype, - ACTIONS(5140), 1, - anon_sym_COLON_COLON, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(14746), 1, - sym_identifier, - ACTIONS(14831), 1, - anon_sym_template, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(4565), 1, - sym_qualified_type_identifier, - STATE(4766), 1, - sym_template_type, - STATE(4773), 1, - sym_dependent_type_identifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8757), 1, + STATE(8750), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [336307] = 6, + [336061] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14651), 1, + anon_sym_LT, + STATE(4128), 1, + sym_template_argument_list, + ACTIONS(9633), 3, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4613), 1, - sym_parameter_list, - STATE(8243), 1, - sym__function_declarator_seq, - ACTIONS(10184), 10, + anon_sym___asm, + ACTIONS(9635), 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_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [336335] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10580), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14684), 1, - anon_sym_EQ, - ACTIONS(14686), 1, - anon_sym_try, - ACTIONS(14833), 1, - anon_sym_SEMI, - STATE(2821), 1, - sym_compound_statement, - STATE(10319), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(2835), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [336373] = 3, + anon_sym_asm, + anon_sym___asm__, + [336087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 1, + ACTIONS(8776), 1, sym_identifier, - ACTIONS(8667), 13, + ACTIONS(8778), 13, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -728742,103 +728100,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_uR_DQUOTE, anon_sym_UR_DQUOTE, anon_sym_u8R_DQUOTE, - [336395] = 11, + [336109] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14698), 1, - anon_sym_EQ, - ACTIONS(14700), 1, - anon_sym_try, - ACTIONS(14835), 1, - anon_sym_SEMI, - STATE(3343), 1, - sym_compound_statement, - STATE(10290), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(3344), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [336433] = 13, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5138), 1, + anon_sym_COLON_COLON, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(14802), 1, + sym_identifier, + ACTIONS(14826), 1, + anon_sym_template, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(4605), 1, + sym_qualified_type_identifier, + STATE(4954), 1, + sym_template_type, + STATE(4963), 1, + sym_dependent_type_identifier, + STATE(8157), 1, + sym_splice_specifier, + STATE(8753), 1, + sym__scope_resolution, + STATE(11531), 3, + sym_decltype, + sym_splice_type_specifier, + sym_splice_expression, + [336151] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5160), 1, - anon_sym_template, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(13425), 1, + ACTIONS(10645), 1, anon_sym_COLON_COLON, - ACTIONS(14837), 1, + ACTIONS(14734), 1, + anon_sym_template, + ACTIONS(14828), 1, sym_identifier, - STATE(3743), 1, + STATE(2787), 1, sym_dependent_type_identifier, - STATE(3748), 1, + STATE(2880), 1, sym_template_type, - STATE(3752), 1, + STATE(2912), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8762), 1, + STATE(8754), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [336475] = 13, + [336193] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2422), 1, + ACTIONS(2420), 1, anon_sym_decltype, - ACTIONS(5164), 1, + ACTIONS(5158), 1, + anon_sym_template, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(11038), 1, + ACTIONS(13806), 1, anon_sym_COLON_COLON, - ACTIONS(14839), 1, + ACTIONS(14536), 1, sym_identifier, - ACTIONS(14841), 1, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10532), 1, + sym_splice_type_specifier, + STATE(10671), 1, + sym_qualified_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, + sym_dependent_type_identifier, + sym_splice_expression, + [336233] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5158), 1, anon_sym_template, - STATE(2083), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(13806), 1, + anon_sym_COLON_COLON, + ACTIONS(14580), 1, + sym_identifier, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(7986), 1, + sym__scope_resolution, + STATE(8157), 1, + sym_splice_specifier, + STATE(10485), 1, + sym_splice_type_specifier, + STATE(10692), 1, + sym_qualified_identifier, + STATE(11531), 4, + sym_decltype, + sym_template_type, sym_dependent_type_identifier, - STATE(2094), 1, + sym_splice_expression, + [336273] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_decltype, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(5932), 1, + anon_sym_COLON_COLON, + ACTIONS(14706), 1, + sym_identifier, + ACTIONS(14708), 1, + anon_sym_template, + STATE(3731), 1, sym_template_type, - STATE(2114), 1, + STATE(3736), 1, sym_qualified_type_identifier, - STATE(3808), 1, + STATE(3742), 1, + sym_dependent_type_identifier, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(8222), 1, + STATE(8157), 1, sym_splice_specifier, - STATE(8763), 1, + STATE(8757), 1, sym__scope_resolution, - STATE(10768), 3, + STATE(11531), 3, sym_decltype, sym_splice_type_specifier, sym_splice_expression, - [336517] = 6, + [336315] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, + anon_sym_LBRACK, + ACTIONS(14671), 1, + anon_sym_COLON, + ACTIONS(14758), 1, + anon_sym_EQ, + ACTIONS(14760), 1, + anon_sym_try, + ACTIONS(14830), 1, + anon_sym_SEMI, + STATE(733), 1, + sym_compound_statement, + STATE(10364), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(734), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [336353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14397), 1, + ACTIONS(14441), 1, anon_sym_LBRACK, - STATE(4613), 1, + STATE(4608), 1, sym_parameter_list, - STATE(8243), 1, + STATE(8343), 1, sym__function_declarator_seq, - ACTIONS(10196), 10, + ACTIONS(10227), 10, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, @@ -728849,546 +728292,485 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [336545] = 5, + [336381] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(9393), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(14560), 1, anon_sym___attribute, - ACTIONS(14706), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(14843), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(9395), 9, - anon_sym_DOT_DOT_DOT, + STATE(4367), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14558), 5, anon_sym_COMMA, - anon_sym_LPAREN2, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACK, - anon_sym_final, - anon_sym_override, + anon_sym_EQ, anon_sym_GT2, - anon_sym_requires, - [336571] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14847), 1, - aux_sym_preproc_if_token1, - ACTIONS(14851), 1, - anon_sym_RBRACE, - ACTIONS(14849), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10341), 2, - sym_preproc_call, - sym_enumerator, - STATE(11154), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [336604] = 10, + [336414] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14794), 1, + ACTIONS(14722), 1, anon_sym_EQ, - ACTIONS(14796), 1, + ACTIONS(14724), 1, anon_sym_try, - STATE(834), 1, + STATE(924), 1, sym_compound_statement, - STATE(10414), 1, + STATE(10449), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(782), 4, + STATE(865), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [336639] = 8, + [336449] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, ACTIONS(7357), 1, anon_sym___attribute, - ACTIONS(10005), 1, + ACTIONS(10068), 1, anon_sym_LT, - STATE(3735), 1, + STATE(3755), 1, sym_template_argument_list, - STATE(8973), 1, + STATE(8952), 1, aux_sym_sized_type_specifier_repeat1, ACTIONS(7359), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(14853), 4, + ACTIONS(14832), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [336670] = 9, + [336480] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14855), 1, + ACTIONS(14840), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10400), 2, + STATE(10277), 2, sym_preproc_call, sym_enumerator, - STATE(11131), 2, + STATE(10881), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(8892), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336703] = 5, + [336513] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14859), 1, - anon_sym_LT, - STATE(8837), 1, - sym_template_argument_list, - ACTIONS(14861), 2, + ACTIONS(10225), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(14857), 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, - [336728] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4801), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8558), 1, sym__function_declarator_seq, - STATE(9409), 1, - sym__abstract_declarator, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [336763] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14678), 1, + ACTIONS(10223), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_EQ, - ACTIONS(14680), 1, - anon_sym_try, - STATE(994), 1, - sym_compound_statement, - STATE(10230), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(996), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [336798] = 9, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [336542] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14863), 1, + ACTIONS(14844), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10483), 2, + STATE(10321), 2, sym_preproc_call, sym_enumerator, - STATE(11307), 2, + STATE(10969), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8833), 3, + STATE(8892), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [336831] = 10, + [336575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(14651), 1, + anon_sym_LT, + STATE(8476), 1, + sym_template_argument_list, + ACTIONS(11752), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6899), 8, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(6463), 1, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_asm, + anon_sym___asm__, + anon_sym_try, + [336602] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, anon_sym_STAR, - ACTIONS(6465), 1, + ACTIONS(6459), 1, anon_sym_AMP_AMP, - ACTIONS(6467), 1, + ACTIONS(6461), 1, anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9401), 1, + STATE(9316), 1, sym__abstract_declarator, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [336866] = 10, + [336637] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(4706), 1, + ACTIONS(14488), 1, + anon_sym___attribute, + STATE(4367), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(9389), 1, - sym__abstract_declarator, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [336901] = 10, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14486), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + anon_sym_EQ, + anon_sym_GT2, + [336670] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(9357), 1, - sym__abstract_declarator, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [336936] = 7, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14486), 6, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [336701] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, + ACTIONS(10264), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4796), 1, + STATE(4801), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10266), 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, + [336730] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10178), 1, + anon_sym___attribute, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4801), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10176), 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, + [336759] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10221), 1, + anon_sym___attribute, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4801), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10219), 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, + [336788] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14478), 6, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [336819] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, + anon_sym_LBRACK, + ACTIONS(14671), 1, + anon_sym_COLON, + ACTIONS(14758), 1, + anon_sym_EQ, + ACTIONS(14760), 1, + anon_sym_try, + STATE(671), 1, + sym_compound_statement, + STATE(10252), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(672), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [336854] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(14480), 1, + anon_sym___attribute, + STATE(4367), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8583), 1, sym__function_declarator_seq, - ACTIONS(10196), 8, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14478), 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, - [336965] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14847), 1, - aux_sym_preproc_if_token1, - ACTIONS(14867), 1, - anon_sym_RBRACE, - ACTIONS(14849), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10294), 2, - sym_preproc_call, - sym_enumerator, - STATE(11584), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8829), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [336998] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14847), 1, - aux_sym_preproc_if_token1, - ACTIONS(14869), 1, - anon_sym_RBRACE, - ACTIONS(14849), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10305), 2, - sym_preproc_call, - sym_enumerator, - STATE(10728), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8819), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [337031] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14847), 1, - aux_sym_preproc_if_token1, - ACTIONS(14871), 1, - anon_sym_RBRACE, - ACTIONS(14849), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10621), 2, - sym_preproc_call, - sym_enumerator, - STATE(11696), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8817), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [337064] = 10, + [336887] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(6463), 1, + ACTIONS(11783), 1, + anon_sym_LBRACK, + ACTIONS(12035), 1, anon_sym_STAR, - ACTIONS(6465), 1, + ACTIONS(12037), 1, anon_sym_AMP_AMP, - ACTIONS(6467), 1, + ACTIONS(12039), 1, anon_sym_AMP, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(4706), 1, + STATE(4909), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9277), 1, + STATE(9047), 1, sym__abstract_declarator, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [337099] = 9, + [336922] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14873), 1, + ACTIONS(14846), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10279), 2, + STATE(10609), 2, sym_preproc_call, sym_enumerator, - STATE(11004), 2, + STATE(11665), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8766), 3, + STATE(8790), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337132] = 10, + [336955] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(6463), 1, + ACTIONS(6457), 1, anon_sym_STAR, - ACTIONS(6465), 1, + ACTIONS(6459), 1, anon_sym_AMP_AMP, - ACTIONS(6467), 1, + ACTIONS(6461), 1, anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9410), 1, + STATE(9377), 1, sym__abstract_declarator, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [337167] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14794), 1, - anon_sym_EQ, - ACTIONS(14796), 1, - anon_sym_try, - STATE(842), 1, - sym_compound_statement, - STATE(10456), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(850), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [337202] = 8, + [336990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(11730), 6, anon_sym_LPAREN2, - ACTIONS(13945), 1, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(11728), 7, + anon_sym_AMP, + anon_sym___based, anon_sym_LBRACK, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14505), 6, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [337233] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14845), 1, sym_identifier, - ACTIONS(14847), 1, - aux_sym_preproc_if_token1, - ACTIONS(14875), 1, - anon_sym_RBRACE, - ACTIONS(14849), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10274), 2, - sym_preproc_call, - sym_enumerator, - STATE(10695), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [337266] = 7, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [337011] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(10229), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4796), 1, + STATE(4801), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10200), 8, + ACTIONS(10227), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -729397,93 +728779,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [337295] = 9, + [337040] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(10233), 1, + anon_sym___attribute, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(14523), 1, - anon_sym___attribute, - STATE(4334), 1, + STATE(4801), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8558), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14521), 5, + ACTIONS(10231), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [337328] = 9, + anon_sym_requires, + [337069] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(10243), 1, + anon_sym___attribute, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(14561), 1, - anon_sym___attribute, - STATE(4334), 1, + STATE(4801), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8558), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14559), 5, + ACTIONS(10241), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - [337361] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14678), 1, - anon_sym_EQ, - ACTIONS(14680), 1, - anon_sym_try, - STATE(1013), 1, - sym_compound_statement, - STATE(10376), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(874), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [337396] = 7, + anon_sym_requires, + [337098] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(10262), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4796), 1, + STATE(4801), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10204), 8, + ACTIONS(10260), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, @@ -729492,1097 +728845,1074 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_GT2, anon_sym_requires, - [337425] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym___asm, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - STATE(4564), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(10475), 1, - sym_gnu_asm_expression, - ACTIONS(13949), 2, - anon_sym_asm, - anon_sym___asm__, - ACTIONS(14877), 2, - anon_sym_COMMA, - anon_sym_SEMI, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [337462] = 9, + [337127] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14879), 1, + ACTIONS(14848), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10343), 2, + STATE(10232), 2, sym_preproc_call, sym_enumerator, - STATE(10990), 2, + STATE(10792), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, STATE(8796), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337495] = 8, + [337160] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14559), 6, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [337526] = 9, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14836), 1, + aux_sym_preproc_if_token1, + ACTIONS(14850), 1, + anon_sym_RBRACE, + ACTIONS(14838), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10293), 2, + sym_preproc_call, + sym_enumerator, + STATE(11091), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8810), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [337193] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14881), 1, + ACTIONS(14852), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10591), 2, + STATE(10426), 2, sym_preproc_call, sym_enumerator, - STATE(11621), 2, + STATE(11167), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8799), 3, + STATE(8807), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337559] = 9, + [337226] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14883), 1, + ACTIONS(14854), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10451), 2, + STATE(10337), 2, sym_preproc_call, sym_enumerator, - STATE(11239), 2, + STATE(11033), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(8892), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337592] = 10, + [337259] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(11793), 1, - anon_sym_LBRACK, - ACTIONS(12067), 1, + ACTIONS(6457), 1, anon_sym_STAR, - ACTIONS(12069), 1, + ACTIONS(6459), 1, anon_sym_AMP_AMP, - ACTIONS(12071), 1, + ACTIONS(6461), 1, anon_sym_AMP, - STATE(4883), 1, + ACTIONS(11783), 1, + anon_sym_LBRACK, + STATE(4676), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9019), 1, + STATE(9398), 1, sym__abstract_declarator, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [337627] = 10, + [337294] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10320), 1, - anon_sym_LT, - ACTIONS(14885), 1, - sym_auto, - ACTIONS(14887), 1, - anon_sym_decltype, - STATE(3735), 1, - sym_template_argument_list, - STATE(4991), 1, - sym_decltype_auto, - STATE(8973), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(5643), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(14853), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [337662] = 9, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14836), 1, + aux_sym_preproc_if_token1, + ACTIONS(14856), 1, + anon_sym_RBRACE, + ACTIONS(14838), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10487), 2, + sym_preproc_call, + sym_enumerator, + STATE(11291), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8892), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [337327] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14836), 1, + aux_sym_preproc_if_token1, + ACTIONS(14858), 1, + anon_sym_RBRACE, + ACTIONS(14838), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10544), 2, + sym_preproc_call, + sym_enumerator, + STATE(11131), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8892), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [337360] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14889), 1, + ACTIONS(14860), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10234), 2, + STATE(10359), 2, sym_preproc_call, sym_enumerator, - STATE(10849), 2, + STATE(11589), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(8818), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337695] = 7, + [337393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10186), 1, + ACTIONS(14864), 1, + anon_sym_LT, + STATE(8845), 1, + sym_template_argument_list, + ACTIONS(14866), 2, anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4796), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10184), 8, + ACTIONS(14862), 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_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [337724] = 10, + anon_sym_try, + [337418] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, + anon_sym_LBRACK, + ACTIONS(14671), 1, + anon_sym_COLON, + ACTIONS(14722), 1, + anon_sym_EQ, + ACTIONS(14724), 1, + anon_sym_try, + STATE(898), 1, + sym_compound_statement, + STATE(10471), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, anon_sym_LPAREN2, - ACTIONS(6463), 1, + anon_sym_LBRACK_LBRACK, + STATE(903), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [337453] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, anon_sym_STAR, - ACTIONS(6465), 1, + ACTIONS(6459), 1, anon_sym_AMP_AMP, - ACTIONS(6467), 1, + ACTIONS(6461), 1, anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9384), 1, + STATE(9266), 1, sym__abstract_declarator, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [337759] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - STATE(4334), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - ACTIONS(14734), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - STATE(9150), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [337796] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10210), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(4796), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10208), 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, - [337825] = 8, + [337488] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, anon_sym_LBRACK, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14547), 6, - anon_sym_RPAREN, - anon_sym_SEMI, + ACTIONS(14671), 1, anon_sym_COLON, - anon_sym_LBRACE, + ACTIONS(14758), 1, anon_sym_EQ, + ACTIONS(14760), 1, anon_sym_try, - [337856] = 9, + STATE(733), 1, + sym_compound_statement, + STATE(10364), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(734), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [337523] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14891), 1, + ACTIONS(14868), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10252), 2, + STATE(10276), 2, sym_preproc_call, sym_enumerator, - STATE(11598), 2, + STATE(10885), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8812), 3, + STATE(8892), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [337889] = 6, + [337556] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(14660), 1, - anon_sym_LT, - STATE(8449), 1, - sym_template_argument_list, - ACTIONS(6574), 2, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(11783), 1, anon_sym_LBRACK, + STATE(4676), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9306), 1, + sym__abstract_declarator, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337591] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, anon_sym___asm, - ACTIONS(6567), 8, - anon_sym_COMMA, - anon_sym_LPAREN2, - anon_sym_SEMI, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + STATE(4614), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(10351), 1, + sym_gnu_asm_expression, + ACTIONS(13914), 2, anon_sym_asm, anon_sym___asm__, - anon_sym_try, - [337916] = 5, + ACTIONS(14870), 2, + anon_sym_COMMA, + anon_sym_SEMI, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [337628] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(14859), 1, - anon_sym_LT, - STATE(8854), 1, - sym_template_argument_list, - ACTIONS(14895), 2, - anon_sym___attribute, + ACTIONS(6455), 1, + anon_sym_LPAREN2, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(14893), 9, - anon_sym_COMMA, + STATE(4676), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9357), 1, + sym__abstract_declarator, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337663] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14516), 6, + 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, - [337941] = 9, + [337694] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(11783), 1, anon_sym_LBRACK, - ACTIONS(14507), 1, + STATE(4676), 1, + sym_parameter_list, + STATE(8515), 1, + sym__function_declarator_seq, + STATE(9384), 1, + sym__abstract_declarator, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337729] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, anon_sym___attribute, - STATE(4334), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + STATE(4367), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14505), 5, + ACTIONS(14748), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [337974] = 10, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + STATE(9116), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [337766] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(6463), 1, + ACTIONS(6457), 1, anon_sym_STAR, - ACTIONS(6465), 1, + ACTIONS(6459), 1, anon_sym_AMP_AMP, - ACTIONS(6467), 1, + ACTIONS(6461), 1, anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9340), 1, + STATE(9410), 1, sym__abstract_declarator, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [338009] = 10, + [337801] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(14651), 1, + anon_sym_LT, + STATE(8476), 1, + sym_template_argument_list, + ACTIONS(6568), 2, + anon_sym_LBRACK, + anon_sym___asm, + ACTIONS(6561), 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, + [337828] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14788), 1, + ACTIONS(14679), 1, anon_sym_EQ, - ACTIONS(14790), 1, + ACTIONS(14681), 1, anon_sym_try, - STATE(709), 1, + STATE(473), 1, sym_compound_statement, - STATE(10420), 1, + STATE(10217), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(710), 4, + STATE(474), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [338044] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_LPAREN2, - ACTIONS(6463), 1, - anon_sym_STAR, - ACTIONS(6465), 1, - anon_sym_AMP_AMP, - ACTIONS(6467), 1, - anon_sym_AMP, - ACTIONS(11793), 1, - anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(8598), 1, - sym__function_declarator_seq, - STATE(9403), 1, - sym__abstract_declarator, - STATE(8596), 5, - sym_abstract_parenthesized_declarator, - sym_abstract_pointer_declarator, - sym_abstract_function_declarator, - sym_abstract_array_declarator, - sym_abstract_reference_declarator, - [338079] = 9, + [337863] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14897), 1, + ACTIONS(14872), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10336), 2, + STATE(10439), 2, sym_preproc_call, sym_enumerator, - STATE(10836), 2, + STATE(11197), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(8789), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338112] = 9, + [337896] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14899), 1, + ACTIONS(14874), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10563), 2, + STATE(10610), 2, sym_preproc_call, sym_enumerator, - STATE(10688), 2, + STATE(11675), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8815), 3, + STATE(8892), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338145] = 7, + [337929] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(10190), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(6457), 1, + anon_sym_STAR, + ACTIONS(6459), 1, + anon_sym_AMP_AMP, + ACTIONS(6461), 1, + anon_sym_AMP, + ACTIONS(11783), 1, anon_sym_LBRACK, - STATE(4796), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8515), 1, sym__function_declarator_seq, - ACTIONS(10188), 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, - [338174] = 9, + STATE(9300), 1, + sym__abstract_declarator, + STATE(8572), 5, + sym_abstract_parenthesized_declarator, + sym_abstract_pointer_declarator, + sym_abstract_function_declarator, + sym_abstract_array_declarator, + sym_abstract_reference_declarator, + [337964] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14901), 1, + ACTIONS(14876), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10226), 2, + STATE(10405), 2, sym_preproc_call, sym_enumerator, - STATE(10769), 2, + STATE(10623), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(8787), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338207] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(14549), 1, - anon_sym___attribute, - STATE(4334), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14547), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [338240] = 9, + [337997] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14903), 1, + ACTIONS(14878), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10359), 2, + STATE(10379), 2, sym_preproc_call, sym_enumerator, - STATE(10848), 2, + STATE(11289), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(8892), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338273] = 9, + [338030] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14847), 1, - aux_sym_preproc_if_token1, - ACTIONS(14905), 1, - anon_sym_RBRACE, - ACTIONS(14849), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10523), 2, - sym_preproc_call, - sym_enumerator, - STATE(11255), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8786), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338306] = 9, + ACTIONS(958), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, + anon_sym_LBRACK, + ACTIONS(14671), 1, + anon_sym_COLON, + ACTIONS(14702), 1, + anon_sym_EQ, + ACTIONS(14704), 1, + anon_sym_try, + STATE(810), 1, + sym_compound_statement, + STATE(10563), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + STATE(811), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [338065] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14907), 1, + ACTIONS(14880), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10344), 2, + STATE(10564), 2, sym_preproc_call, sym_enumerator, - STATE(11334), 2, + STATE(11571), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(8824), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338339] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10194), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(4796), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10192), 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, - [338368] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 6, - anon_sym_LPAREN2, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(11729), 7, - anon_sym_AMP, - anon_sym___based, - anon_sym_LBRACK, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [338389] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14752), 1, - anon_sym_EQ, - ACTIONS(14754), 1, - anon_sym_try, - STATE(411), 1, - sym_compound_statement, - STATE(10566), 1, - sym_field_initializer_list, - ACTIONS(6883), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - STATE(414), 4, - sym_constructor_try_statement, - sym_default_method_clause, - sym_delete_method_clause, - sym_pure_virtual_clause, - [338424] = 9, + [338098] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14519), 1, + ACTIONS(14518), 1, anon_sym___attribute, - STATE(4334), 1, + STATE(4367), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14517), 5, + ACTIONS(14516), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_EQ, anon_sym_GT2, - [338457] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17), 1, - sym_preproc_directive, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14847), 1, - aux_sym_preproc_if_token1, - ACTIONS(14909), 1, - anon_sym_RBRACE, - ACTIONS(14849), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10354), 2, - sym_preproc_call, - sym_enumerator, - STATE(11017), 2, - sym_preproc_if_in_enumerator_list_no_comma, - sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8769), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [338490] = 10, + [338131] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6461), 1, + ACTIONS(6455), 1, anon_sym_LPAREN2, - ACTIONS(6463), 1, + ACTIONS(6457), 1, anon_sym_STAR, - ACTIONS(6465), 1, + ACTIONS(6459), 1, anon_sym_AMP_AMP, - ACTIONS(6467), 1, + ACTIONS(6461), 1, anon_sym_AMP, - ACTIONS(11793), 1, + ACTIONS(11783), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8598), 1, + STATE(8515), 1, sym__function_declarator_seq, - STATE(9322), 1, + STATE(9302), 1, sym__abstract_declarator, - STATE(8596), 5, + STATE(8572), 5, sym_abstract_parenthesized_declarator, sym_abstract_pointer_declarator, sym_abstract_function_declarator, sym_abstract_array_declarator, sym_abstract_reference_declarator, - [338525] = 8, + [338166] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(4586), 1, + ACTIONS(14514), 1, + anon_sym___attribute, + STATE(4367), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(14517), 6, + ACTIONS(14512), 5, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, + anon_sym___attribute__, anon_sym_EQ, - anon_sym_try, - [338556] = 10, + anon_sym_GT2, + [338199] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(958), 1, anon_sym_LBRACE, - ACTIONS(11754), 1, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - ACTIONS(14752), 1, + ACTIONS(14702), 1, anon_sym_EQ, - ACTIONS(14754), 1, + ACTIONS(14704), 1, anon_sym_try, - STATE(440), 1, + STATE(855), 1, sym_compound_statement, - STATE(10405), 1, + STATE(10501), 1, sym_field_initializer_list, - ACTIONS(6883), 2, + ACTIONS(6899), 2, anon_sym_LPAREN2, anon_sym_LBRACK_LBRACK, - STATE(441), 4, + STATE(859), 4, sym_constructor_try_statement, sym_default_method_clause, sym_delete_method_clause, sym_pure_virtual_clause, - [338591] = 7, + [338234] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10174), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(4796), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10172), 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, - [338620] = 9, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14836), 1, + aux_sym_preproc_if_token1, + ACTIONS(14882), 1, + anon_sym_RBRACE, + ACTIONS(14838), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10461), 2, + sym_preproc_call, + sym_enumerator, + STATE(10704), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8819), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [338267] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14911), 1, + ACTIONS(14884), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10227), 2, + STATE(10517), 2, sym_preproc_call, sym_enumerator, - STATE(11066), 2, + STATE(11046), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(8892), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338653] = 10, + [338300] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(11754), 1, - anon_sym_LBRACK, - ACTIONS(14676), 1, - anon_sym_COLON, - ACTIONS(14788), 1, - anon_sym_EQ, - ACTIONS(14790), 1, - anon_sym_try, - STATE(719), 1, - sym_compound_statement, - STATE(10522), 1, - sym_field_initializer_list, - ACTIONS(6883), 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, - [338688] = 8, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14836), 1, + aux_sym_preproc_if_token1, + ACTIONS(14886), 1, + anon_sym_RBRACE, + ACTIONS(14838), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10237), 2, + sym_preproc_call, + sym_enumerator, + STATE(10949), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8892), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [338333] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - ACTIONS(14521), 6, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [338719] = 6, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14836), 1, + aux_sym_preproc_if_token1, + ACTIONS(14888), 1, + anon_sym_RBRACE, + ACTIONS(14838), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10507), 2, + sym_preproc_call, + sym_enumerator, + STATE(10629), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8765), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [338366] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(14660), 1, + ACTIONS(10325), 1, anon_sym_LT, - STATE(8449), 1, + ACTIONS(14890), 1, + sym_auto, + ACTIONS(14892), 1, + anon_sym_decltype, + STATE(3755), 1, + sym_template_argument_list, + STATE(4918), 1, + sym_decltype_auto, + STATE(8952), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(5617), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(14832), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [338401] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14864), 1, + anon_sym_LT, + STATE(8846), 1, sym_template_argument_list, - ACTIONS(11754), 2, + ACTIONS(14896), 2, + anon_sym___attribute, anon_sym_LBRACK, - anon_sym___asm, - ACTIONS(6883), 8, + ACTIONS(14894), 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_asm, - anon_sym___asm__, + anon_sym_EQ, anon_sym_try, - [338746] = 9, + [338426] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(17), 1, sym_preproc_directive, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14847), 1, + ACTIONS(14836), 1, aux_sym_preproc_if_token1, - ACTIONS(14913), 1, + ACTIONS(14898), 1, anon_sym_RBRACE, - ACTIONS(14849), 2, + ACTIONS(14838), 2, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, - STATE(10516), 2, + STATE(10365), 2, sym_preproc_call, sym_enumerator, - STATE(11420), 2, + STATE(11255), 2, sym_preproc_if_in_enumerator_list_no_comma, sym_preproc_ifdef_in_enumerator_list_no_comma, - STATE(8930), 3, + STATE(8763), 3, sym_preproc_if_in_enumerator_list, sym_preproc_ifdef_in_enumerator_list, aux_sym_enumerator_list_repeat1, - [338779] = 4, + [338459] = 9, ACTIONS(3), 1, sym_comment, - STATE(8834), 2, - sym_lambda_specifier, - aux_sym_lambda_declarator_repeat1, - ACTIONS(14917), 4, - anon_sym_static, - anon_sym_constexpr, - anon_sym_mutable, - anon_sym_consteval, - ACTIONS(14915), 6, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_noexcept, - anon_sym_throw, - anon_sym_requires, - [338801] = 6, + ACTIONS(17), 1, + sym_preproc_directive, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14836), 1, + aux_sym_preproc_if_token1, + ACTIONS(14900), 1, + anon_sym_RBRACE, + ACTIONS(14838), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(10568), 2, + sym_preproc_call, + sym_enumerator, + STATE(11095), 2, + sym_preproc_if_in_enumerator_list_no_comma, + sym_preproc_ifdef_in_enumerator_list_no_comma, + STATE(8892), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [338492] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8583), 1, sym__function_declarator_seq, - ACTIONS(10172), 8, - anon_sym_COMMA, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14558), 6, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [338827] = 3, + anon_sym_EQ, + anon_sym_try, + [338523] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14922), 2, - anon_sym___attribute, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14920), 10, - anon_sym_COMMA, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + ACTIONS(14512), 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_try, - [338847] = 3, + [338554] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9513), 2, - anon_sym___attribute, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(11752), 1, anon_sym_LBRACK, - ACTIONS(9515), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(14671), 1, anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_LBRACE, + ACTIONS(14679), 1, anon_sym_EQ, + ACTIONS(14681), 1, anon_sym_try, - [338867] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, + STATE(433), 1, + sym_compound_statement, + STATE(10203), 1, + sym_field_initializer_list, + ACTIONS(6899), 2, anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(4672), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10208), 8, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [338893] = 3, + anon_sym_LBRACK_LBRACK, + STATE(434), 4, + sym_constructor_try_statement, + sym_default_method_clause, + sym_delete_method_clause, + sym_pure_virtual_clause, + [338589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14895), 2, + ACTIONS(14904), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14893), 10, + ACTIONS(14902), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730593,35 +729923,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [338913] = 3, + [338609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14926), 2, - anon_sym___attribute, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(14924), 10, + STATE(4690), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10241), 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, - [338933] = 6, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [338635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10188), 8, + ACTIONS(10260), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -730630,96 +729963,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [338959] = 3, + [338661] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(14930), 2, + ACTIONS(43), 1, anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(14928), 10, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_SEMI, - anon_sym___attribute__, + ACTIONS(8180), 1, anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + ACTIONS(12111), 1, + anon_sym___attribute__, + STATE(4829), 1, + sym_attribute_specifier, + STATE(9308), 1, + sym_field_declaration_list, + STATE(9592), 1, + sym_virtual_specifier, + STATE(10542), 1, + sym_base_class_clause, + ACTIONS(7256), 2, + anon_sym_COMMA, + anon_sym_GT2, + ACTIONS(8184), 2, + anon_sym_final, + anon_sym_override, + [338697] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(8832), 2, + sym_lambda_specifier, + aux_sym_lambda_declarator_repeat1, + ACTIONS(14908), 4, + anon_sym_static, + anon_sym_constexpr, + anon_sym_mutable, + anon_sym_consteval, + ACTIONS(14906), 6, anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [338979] = 8, + anon_sym_DASH_GT, + anon_sym_noexcept, + anon_sym_throw, + anon_sym_requires, + [338719] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(14499), 1, + ACTIONS(13220), 1, anon_sym_requires, - STATE(8951), 1, + STATE(8953), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8560), 2, + STATE(8559), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(8907), 3, + ACTIONS(7970), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [339009] = 3, + [338749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14934), 2, - anon_sym___attribute, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(14932), 10, + STATE(4690), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10223), 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, - [339029] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13205), 1, - anon_sym_requires, - STATE(8949), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8561), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7966), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [339059] = 6, + anon_sym_requires, + [338775] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10192), 8, + ACTIONS(10231), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -730728,13 +730068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [339085] = 3, + [338801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14938), 2, + ACTIONS(14896), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14936), 10, + ACTIONS(14894), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730745,103 +730085,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339105] = 11, + [338821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(14913), 2, anon_sym___attribute, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - ACTIONS(12119), 1, - anon_sym___attribute__, - STATE(4978), 1, - sym_attribute_specifier, - STATE(9326), 1, - sym_field_declaration_list, - STATE(9572), 1, - sym_virtual_specifier, - STATE(10542), 1, - sym_base_class_clause, - ACTIONS(7237), 2, - anon_sym_COMMA, - anon_sym_GT2, - ACTIONS(8160), 2, - anon_sym_final, - anon_sym_override, - [339141] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(4672), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10204), 8, + ACTIONS(14911), 10, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_requires, - [339167] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(8501), 2, - sym_string_literal, - sym_raw_string_literal, - ACTIONS(14477), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - ACTIONS(14479), 5, - anon_sym_R_DQUOTE, - anon_sym_LR_DQUOTE, - anon_sym_uR_DQUOTE, - anon_sym_UR_DQUOTE, - anon_sym_u8R_DQUOTE, - [339189] = 8, + 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, + [338841] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, + ACTIONS(10833), 1, anon_sym_DASH_GT, - ACTIONS(13149), 1, + ACTIONS(13386), 1, anon_sym_requires, - STATE(8972), 1, + STATE(8959), 1, sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8584), 2, + STATE(8588), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7791), 3, + ACTIONS(8402), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [339219] = 6, + [338871] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10200), 8, + ACTIONS(10227), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -730850,35 +730144,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [339245] = 8, + [338897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10819), 1, - anon_sym_DASH_GT, - ACTIONS(13399), 1, - anon_sym_requires, - STATE(8950), 1, - sym_trailing_return_type, - ACTIONS(10859), 2, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4690), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10219), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 3, + anon_sym_requires, + [338923] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, anon_sym_LPAREN2, - anon_sym_LBRACE, + ACTIONS(14842), 1, anon_sym_LBRACK, - [339275] = 3, + STATE(4690), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10266), 8, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_final, + anon_sym_override, + anon_sym_requires, + [338949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9693), 2, + ACTIONS(14917), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(9695), 10, + ACTIONS(14915), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730889,13 +730201,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339295] = 3, + [338969] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(8452), 2, + sym_string_literal, + sym_raw_string_literal, + ACTIONS(14455), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + ACTIONS(14457), 5, + anon_sym_R_DQUOTE, + anon_sym_LR_DQUOTE, + anon_sym_uR_DQUOTE, + anon_sym_UR_DQUOTE, + anon_sym_u8R_DQUOTE, + [338991] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(13152), 1, + anon_sym_requires, + STATE(8969), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [339021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14942), 2, + ACTIONS(9553), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14940), 10, + ACTIONS(9555), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730906,13 +730258,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339315] = 3, + [339041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14946), 2, + ACTIONS(9712), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(14944), 10, + ACTIONS(9714), 10, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LPAREN2, @@ -730923,18 +730275,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339335] = 6, + [339061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4672), 1, + STATE(4690), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10184), 8, + ACTIONS(10176), 8, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, @@ -730943,37 +730295,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_final, anon_sym_override, anon_sym_requires, - [339361] = 6, + [339087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14921), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4672), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10196), 8, + ACTIONS(14919), 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_final, - anon_sym_override, - anon_sym_requires, - [339387] = 5, + anon_sym_EQ, + anon_sym_try, + [339107] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14660), 1, + ACTIONS(14651), 1, anon_sym_LT, - STATE(8449), 1, + STATE(8476), 1, sym_template_argument_list, - ACTIONS(9650), 2, + ACTIONS(9633), 2, anon_sym_LBRACK, anon_sym___asm, - ACTIONS(9652), 8, + ACTIONS(9635), 8, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -730982,50 +730331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_asm, anon_sym___asm__, anon_sym_try, - [339411] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11848), 1, - anon_sym_delete, - ACTIONS(11850), 1, - anon_sym_new, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [339434] = 5, + [339131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10308), 1, - anon_sym_delete, - ACTIONS(10310), 1, - anon_sym_new, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [339457] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6632), 2, + ACTIONS(14925), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6634), 9, + ACTIONS(14923), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -731034,30 +730348,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339476] = 3, + [339151] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(6614), 9, - anon_sym_COMMA, + ACTIONS(10833), 1, + anon_sym_DASH_GT, + ACTIONS(14494), 1, + anon_sym_requires, + STATE(8966), 1, + sym_trailing_return_type, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8533), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 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, - [339495] = 3, + anon_sym_LBRACK, + [339181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6624), 2, + ACTIONS(14929), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6626), 9, + ACTIONS(14927), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -731066,14 +730387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339514] = 3, + [339201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 2, + ACTIONS(14933), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6630), 9, + ACTIONS(14931), 10, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, anon_sym_SEMI, anon_sym___attribute__, @@ -731082,172 +730404,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339533] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14948), 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, - [339550] = 6, + [339221] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10320), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(7371), 2, - anon_sym___attribute, - anon_sym_COLON, - ACTIONS(5657), 6, - anon_sym_COMMA, - anon_sym___attribute__, + ACTIONS(958), 1, anon_sym_LBRACE, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - [339575] = 11, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13916), 1, + anon_sym_try, + STATE(792), 1, + sym_compound_statement, + STATE(793), 1, + sym_try_statement, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [339256] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(10639), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13987), 1, + ACTIONS(13787), 1, anon_sym_try, - STATE(975), 1, + ACTIONS(13910), 1, + anon_sym_LBRACK, + STATE(2857), 1, sym_compound_statement, - STATE(976), 1, + STATE(2862), 1, sym_try_statement, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [339610] = 5, + [339291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10187), 1, anon_sym_delete, - ACTIONS(10156), 1, + ACTIONS(10189), 1, anon_sym_new, - ACTIONS(9601), 4, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [339633] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14950), 1, - aux_sym_preproc_if_token2, - ACTIONS(14952), 1, - aux_sym_preproc_else_token1, - ACTIONS(14954), 1, - aux_sym_preproc_elif_token1, - STATE(9072), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - ACTIONS(14956), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(11496), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [339664] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14632), 1, - sym_identifier, - ACTIONS(14958), 1, - aux_sym_preproc_if_token2, - ACTIONS(14960), 1, - aux_sym_preproc_else_token1, - ACTIONS(14962), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14964), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(9007), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(11497), 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, - [339693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 2, - anon_sym___attribute, - anon_sym_LBRACK, - ACTIONS(6610), 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, - [339712] = 11, + [339314] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14083), 1, + ACTIONS(13979), 1, anon_sym_try, - STATE(698), 1, + STATE(751), 1, sym_compound_statement, - STATE(699), 1, + STATE(752), 1, sym_try_statement, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [339747] = 3, + [339349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6616), 2, + ACTIONS(6602), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6618), 9, + ACTIONS(6604), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -731257,13 +730510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339766] = 3, + [339368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6620), 2, + ACTIONS(6606), 2, anon_sym___attribute, anon_sym_LBRACK, - ACTIONS(6622), 9, + ACTIONS(6608), 9, anon_sym_COMMA, anon_sym_LPAREN2, anon_sym_SEMI, @@ -731273,407 +730526,303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [339785] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(10288), 1, - anon_sym_delete, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [339808] = 11, + [339387] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(10560), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13951), 1, + ACTIONS(13824), 1, anon_sym_try, - STATE(483), 1, + ACTIONS(13910), 1, + anon_sym_LBRACK, + STATE(3369), 1, sym_compound_statement, - STATE(484), 1, + STATE(3370), 1, sym_try_statement, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [339843] = 5, + [339422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11813), 1, + ACTIONS(6590), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6592), 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, + [339441] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11835), 1, anon_sym_delete, - ACTIONS(11815), 1, + ACTIONS(11837), 1, anon_sym_new, - ACTIONS(9601), 4, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [339866] = 11, + [339464] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(14083), 1, - anon_sym_try, - STATE(686), 1, - sym_compound_statement, - STATE(687), 1, - sym_try_statement, - STATE(4586), 1, + STATE(4985), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8558), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [339901] = 11, + ACTIONS(10219), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [339489] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(10564), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13819), 1, + ACTIONS(13798), 1, anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(3256), 1, + STATE(3451), 1, sym_compound_statement, - STATE(3257), 1, + STATE(3453), 1, sym_try_statement, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [339936] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11716), 1, - anon_sym_delete, - ACTIONS(11718), 1, - anon_sym_new, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [339959] = 8, + [339524] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14966), 1, + ACTIONS(14612), 1, sym_identifier, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(14970), 1, - sym_system_lib_string, - STATE(10122), 1, - sym_string_literal, - STATE(10123), 1, - sym_module_name, - STATE(10131), 1, - sym_module_partition, - ACTIONS(10274), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [339988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14972), 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, - [340005] = 6, + ACTIONS(14935), 1, + aux_sym_preproc_if_token2, + ACTIONS(14937), 1, + aux_sym_preproc_else_token1, + ACTIONS(14939), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14941), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(8939), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(10715), 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, + [339553] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(10229), 1, + anon_sym___attribute, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4861), 1, + STATE(5264), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10196), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10227), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [340030] = 6, + [339580] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(10233), 1, + anon_sym___attribute, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4861), 1, + STATE(5264), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10200), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10231), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [340055] = 6, + [339607] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(4861), 1, + ACTIONS(13979), 1, + anon_sym_try, + STATE(649), 1, + sym_compound_statement, + STATE(655), 1, + sym_try_statement, + STATE(4558), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8583), 1, sym__function_declarator_seq, - ACTIONS(10188), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [340080] = 6, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [339642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(6586), 2, + anon_sym___attribute, anon_sym_LBRACK, - STATE(4861), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10192), 7, + ACTIONS(6588), 9, + anon_sym_COMMA, + anon_sym_LPAREN2, anon_sym_SEMI, + anon_sym___attribute__, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, anon_sym_LBRACE, anon_sym_EQ, - anon_sym_final, - anon_sym_override, anon_sym_try, - anon_sym_requires, - [340105] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14654), 1, - aux_sym_preproc_if_token2, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14952), 1, - aux_sym_preproc_else_token1, - ACTIONS(14954), 1, - aux_sym_preproc_elif_token1, - STATE(8870), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - ACTIONS(14956), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(11503), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [340136] = 11, + [339661] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(10564), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13819), 1, + ACTIONS(13798), 1, anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(3268), 1, + STATE(3473), 1, sym_compound_statement, - STATE(3269), 1, + STATE(3474), 1, sym_try_statement, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [340171] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14952), 1, - aux_sym_preproc_else_token1, - ACTIONS(14954), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14974), 1, - aux_sym_preproc_if_token2, - STATE(9072), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - ACTIONS(14956), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(11557), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [340202] = 6, + [339696] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(10221), 1, + anon_sym___attribute, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4861), 1, + STATE(5264), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10204), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + ACTIONS(10219), 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_try, anon_sym_requires, - [340227] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14632), 1, - sym_identifier, - ACTIONS(14960), 1, - aux_sym_preproc_else_token1, - ACTIONS(14962), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14976), 1, - aux_sym_preproc_if_token2, - ACTIONS(14964), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(9007), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(11559), 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, - [340256] = 8, + [339723] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(14612), 1, sym_identifier, - ACTIONS(14960), 1, + ACTIONS(14937), 1, aux_sym_preproc_else_token1, - ACTIONS(14962), 1, + ACTIONS(14939), 1, aux_sym_preproc_elif_token1, - ACTIONS(14978), 1, + ACTIONS(14943), 1, aux_sym_preproc_if_token2, - ACTIONS(14964), 2, + ACTIONS(14941), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(8871), 2, + STATE(9072), 2, sym_enumerator, aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(11504), 3, + STATE(10888), 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, - [340285] = 9, + [339752] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14670), 1, - aux_sym_preproc_if_token2, - ACTIONS(14845), 1, + ACTIONS(9916), 1, + anon_sym_delete, + ACTIONS(9918), 1, + anon_sym_new, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, sym_identifier, - ACTIONS(14952), 1, - aux_sym_preproc_else_token1, - ACTIONS(14954), 1, - aux_sym_preproc_elif_token1, - STATE(8890), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - ACTIONS(14956), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(11038), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [340316] = 6, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [339775] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4861), 1, + STATE(4985), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10208), 7, + ACTIONS(10227), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -731681,257 +730830,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [340341] = 8, + [339800] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(11712), 1, + anon_sym_delete, + ACTIONS(11714), 1, + anon_sym_new, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, sym_identifier, - ACTIONS(14960), 1, - aux_sym_preproc_else_token1, - ACTIONS(14962), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14980), 1, - aux_sym_preproc_if_token2, - ACTIONS(14964), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(8892), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(11064), 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, - [340370] = 9, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [339823] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10225), 1, + anon_sym___attribute, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5523), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10223), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [339850] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14845), 1, + ACTIONS(14945), 1, sym_identifier, - ACTIONS(14952), 1, - aux_sym_preproc_else_token1, - ACTIONS(14954), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14982), 1, - aux_sym_preproc_if_token2, - STATE(8923), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - ACTIONS(14956), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(10879), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [340401] = 8, + ACTIONS(14947), 1, + anon_sym_COLON, + ACTIONS(14949), 1, + sym_system_lib_string, + STATE(9846), 1, + sym_string_literal, + STATE(9847), 1, + sym_module_name, + STATE(9848), 1, + sym_module_partition, + ACTIONS(10168), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [339879] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14966), 1, + ACTIONS(14945), 1, sym_identifier, - ACTIONS(14968), 1, + ACTIONS(14947), 1, anon_sym_COLON, - ACTIONS(14984), 1, + ACTIONS(14951), 1, sym_system_lib_string, - STATE(10004), 1, + STATE(9828), 1, sym_string_literal, - STATE(10006), 1, + STATE(9835), 1, sym_module_name, - STATE(10007), 1, + STATE(9836), 1, sym_module_partition, - ACTIONS(10274), 5, + ACTIONS(10168), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [340430] = 7, + [339908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10186), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(4985), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10184), 6, - anon_sym_COMMA, - anon_sym___attribute__, + ACTIONS(10231), 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, - [340457] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14952), 1, - aux_sym_preproc_else_token1, - ACTIONS(14954), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14986), 1, - aux_sym_preproc_if_token2, - STATE(9072), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - ACTIONS(14956), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(10817), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [340488] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14632), 1, - sym_identifier, - ACTIONS(14960), 1, - aux_sym_preproc_else_token1, - ACTIONS(14962), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14988), 1, - aux_sym_preproc_if_token2, - ACTIONS(14964), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(9007), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(10868), 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, - [340517] = 5, + [339933] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10258), 1, - anon_sym_delete, - ACTIONS(10260), 1, - anon_sym_new, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [340540] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10603), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(10264), 1, + anon_sym___attribute, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13807), 1, - anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(3439), 1, - sym_compound_statement, - STATE(3440), 1, - sym_try_statement, - STATE(4586), 1, + STATE(5523), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8558), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [340575] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9603), 1, - anon_sym_delete, - ACTIONS(9605), 1, - anon_sym_new, - ACTIONS(9601), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [340598] = 7, + ACTIONS(10266), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [339960] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10194), 1, + ACTIONS(10178), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(5523), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10192), 6, + ACTIONS(10176), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [340625] = 7, + [339987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10174), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(4985), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10172), 6, - anon_sym_COMMA, - anon_sym___attribute__, + ACTIONS(10223), 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, - [340652] = 7, + [340012] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10186), 1, + ACTIONS(10221), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(5523), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10184), 6, + ACTIONS(10219), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [340679] = 2, + [340039] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10639), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13787), 1, + anon_sym_try, + ACTIONS(13910), 1, + anon_sym_LBRACK, + STATE(2829), 1, + sym_compound_statement, + STATE(2859), 1, + sym_try_statement, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14990), 11, + ACTIONS(14953), 11, anon_sym_LPAREN2, anon_sym_LT, anon_sym_LBRACK_LBRACK, @@ -731943,475 +731047,686 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - [340696] = 6, + [340091] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(4861), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10172), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_final, - anon_sym_override, - anon_sym_try, - anon_sym_requires, - [340721] = 5, + ACTIONS(14646), 1, + aux_sym_preproc_if_token2, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14955), 1, + aux_sym_preproc_else_token1, + ACTIONS(14957), 1, + aux_sym_preproc_elif_token1, + STATE(8938), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11567), 1, + sym_enumerator, + ACTIONS(14959), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10681), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [340122] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10387), 1, + ACTIONS(10353), 1, anon_sym_delete, - ACTIONS(10389), 1, + ACTIONS(10355), 1, anon_sym_new, - ACTIONS(9601), 4, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [340744] = 5, + [340145] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10560), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13824), 1, + anon_sym_try, + ACTIONS(13910), 1, + anon_sym_LBRACK, + STATE(3400), 1, + sym_compound_statement, + STATE(3401), 1, + sym_try_statement, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11756), 1, + ACTIONS(11831), 1, anon_sym_delete, - ACTIONS(11758), 1, + ACTIONS(11833), 1, anon_sym_new, - ACTIONS(9601), 4, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [340767] = 5, + [340203] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11758), 1, - anon_sym_new, - ACTIONS(11777), 1, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13961), 1, + anon_sym_try, + STATE(404), 1, + sym_compound_statement, + STATE(405), 1, + sym_try_statement, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340238] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4985), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10241), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [340263] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14961), 1, + sym_identifier, + ACTIONS(14964), 1, + aux_sym_preproc_if_token1, + ACTIONS(14970), 1, + sym_preproc_directive, + ACTIONS(14973), 1, + anon_sym_RBRACE, + ACTIONS(14967), 2, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + STATE(11043), 2, + sym_preproc_call, + sym_enumerator, + STATE(8892), 3, + sym_preproc_if_in_enumerator_list, + sym_preproc_ifdef_in_enumerator_list, + aux_sym_enumerator_list_repeat1, + [340292] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 1, + anon_sym_LBRACE, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(13961), 1, + anon_sym_try, + STATE(475), 1, + sym_compound_statement, + STATE(476), 1, + sym_try_statement, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340327] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11763), 1, anon_sym_delete, - ACTIONS(9601), 4, + ACTIONS(11765), 1, + anon_sym_new, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [340790] = 8, + [340350] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14966), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(14992), 1, - sym_system_lib_string, - STATE(9856), 1, - sym_string_literal, - STATE(9857), 1, - sym_module_name, - STATE(9858), 1, - sym_module_partition, - ACTIONS(10274), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [340819] = 7, + ACTIONS(14955), 1, + aux_sym_preproc_else_token1, + ACTIONS(14957), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14975), 1, + aux_sym_preproc_if_token2, + STATE(9070), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11567), 1, + sym_enumerator, + ACTIONS(14959), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10774), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [340381] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, + ACTIONS(10243), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(5264), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10196), 6, + ACTIONS(10241), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [340846] = 7, + [340408] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(10262), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(5264), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10200), 6, + ACTIONS(10260), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [340873] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(14952), 1, - aux_sym_preproc_else_token1, - ACTIONS(14954), 1, - aux_sym_preproc_elif_token1, - ACTIONS(14994), 1, - aux_sym_preproc_if_token2, - STATE(8900), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - ACTIONS(14956), 2, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - STATE(10741), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [340904] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10580), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13833), 1, - anon_sym_try, - ACTIONS(13945), 1, - anon_sym_LBRACK, - STATE(2794), 1, - sym_compound_statement, - STATE(2795), 1, - sym_try_statement, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [340939] = 5, + [340435] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(11844), 1, anon_sym_delete, ACTIONS(11846), 1, anon_sym_new, - ACTIONS(9601), 4, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [340962] = 5, + [340458] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10229), 1, + anon_sym___attribute, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5523), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10227), 6, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [340485] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4985), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10260), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_final, + anon_sym_override, + anon_sym_try, + anon_sym_requires, + [340510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9744), 1, + ACTIONS(10302), 1, anon_sym_delete, - ACTIONS(9746), 1, + ACTIONS(10304), 1, anon_sym_new, - ACTIONS(9601), 4, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [340985] = 7, + [340533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6596), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6598), 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, + [340552] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(10233), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(5523), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10204), 6, + ACTIONS(10231), 6, anon_sym_COMMA, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [341012] = 11, + [340579] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10084), 1, + anon_sym_delete, + ACTIONS(10086), 1, + anon_sym_new, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [340602] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(958), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13807), 1, - anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(3443), 1, - sym_compound_statement, - STATE(3444), 1, + ACTIONS(13916), 1, + anon_sym_try, + STATE(845), 1, sym_try_statement, - STATE(4586), 1, + STATE(863), 1, + sym_compound_statement, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [341047] = 7, + [340637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(6610), 2, anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, anon_sym_LBRACK, - STATE(5310), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10208), 6, + ACTIONS(6612), 9, anon_sym_COMMA, + anon_sym_LPAREN2, + anon_sym_SEMI, anon_sym___attribute__, - anon_sym_final, - anon_sym_override, - anon_sym_GT2, - anon_sym_requires, - [341074] = 9, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [340656] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14845), 1, + ACTIONS(14612), 1, sym_identifier, - ACTIONS(14952), 1, + ACTIONS(14937), 1, aux_sym_preproc_else_token1, - ACTIONS(14954), 1, + ACTIONS(14939), 1, aux_sym_preproc_elif_token1, - ACTIONS(14996), 1, + ACTIONS(14977), 1, aux_sym_preproc_if_token2, - STATE(9072), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - ACTIONS(14956), 2, + ACTIONS(14941), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(10710), 3, - sym_preproc_else_in_enumerator_list, - sym_preproc_elif_in_enumerator_list, - sym_preproc_elifdef_in_enumerator_list, - [341105] = 8, + STATE(8872), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(10963), 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, + [340685] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(14960), 1, + ACTIONS(14955), 1, aux_sym_preproc_else_token1, - ACTIONS(14962), 1, + ACTIONS(14957), 1, aux_sym_preproc_elif_token1, - ACTIONS(14998), 1, + ACTIONS(14979), 1, aux_sym_preproc_if_token2, - ACTIONS(14964), 2, + STATE(8926), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11567), 1, + sym_enumerator, + ACTIONS(14959), 2, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - STATE(9007), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - STATE(10748), 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, - [341134] = 2, + STATE(11542), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [340716] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 11, - anon_sym_LPAREN2, - anon_sym_LT, - anon_sym_LBRACK_LBRACK, + ACTIONS(57), 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, - [341151] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10190), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(5313), 1, + ACTIONS(13983), 1, + anon_sym_try, + STATE(876), 1, + sym_compound_statement, + STATE(877), 1, + sym_try_statement, + STATE(4558), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8583), 1, sym__function_declarator_seq, - ACTIONS(10188), 6, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [340751] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11765), 1, + anon_sym_new, + ACTIONS(11789), 1, + anon_sym_delete, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [340774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6614), 2, + anon_sym___attribute, + anon_sym_LBRACK, + ACTIONS(6616), 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, - [341178] = 7, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [340793] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14945), 1, + sym_identifier, + ACTIONS(14947), 1, + anon_sym_COLON, + ACTIONS(14981), 1, + sym_system_lib_string, + STATE(9685), 1, + sym_string_literal, + STATE(9686), 1, + sym_module_name, + STATE(9689), 1, + sym_module_partition, + ACTIONS(10168), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [340822] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10194), 1, + ACTIONS(10243), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(5523), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10192), 6, + ACTIONS(10241), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [341205] = 5, + [340849] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9746), 1, - anon_sym_new, - ACTIONS(9967), 1, + ACTIONS(9665), 1, anon_sym_delete, - ACTIONS(9601), 4, + ACTIONS(9667), 1, + anon_sym_new, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [341228] = 11, + [340872] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13833), 1, - anon_sym_try, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(2867), 1, + ACTIONS(13983), 1, + anon_sym_try, + STATE(986), 1, sym_compound_statement, - STATE(2872), 1, + STATE(987), 1, sym_try_statement, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [341263] = 8, + [340907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5678), 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, + [340924] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(15000), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(15003), 1, - aux_sym_preproc_if_token1, - ACTIONS(15009), 1, - sym_preproc_directive, - ACTIONS(15012), 1, - anon_sym_RBRACE, - ACTIONS(15006), 2, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - STATE(10795), 2, - sym_preproc_call, + ACTIONS(14955), 1, + aux_sym_preproc_else_token1, + ACTIONS(14957), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14983), 1, + aux_sym_preproc_if_token2, + STATE(9070), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11567), 1, sym_enumerator, - STATE(8930), 3, - sym_preproc_if_in_enumerator_list, - sym_preproc_ifdef_in_enumerator_list, - aux_sym_enumerator_list_repeat1, - [341292] = 11, + ACTIONS(14959), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(11564), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [340955] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14945), 1, + sym_identifier, + ACTIONS(14947), 1, + anon_sym_COLON, + ACTIONS(14985), 1, + sym_system_lib_string, + STATE(9889), 1, + sym_string_literal, + STATE(9893), 1, + sym_module_name, + STATE(9894), 1, + sym_module_partition, + ACTIONS(10168), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [340984] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14987), 11, anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13951), 1, - anon_sym_try, - STATE(460), 1, - sym_compound_statement, - STATE(461), 1, - sym_try_statement, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [341327] = 2, + 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, + [341001] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15014), 11, + ACTIONS(14989), 11, anon_sym_LPAREN2, anon_sym_LT, anon_sym_LBRACK_LBRACK, @@ -732423,86 +731738,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_noexcept, anon_sym_throw, - [341344] = 7, + [341018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10174), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(4985), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10172), 6, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, + ACTIONS(10266), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, anon_sym_final, anon_sym_override, + anon_sym_try, anon_sym_requires, - [341371] = 11, + [341043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(14991), 11, anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13995), 1, - anon_sym_try, - STATE(796), 1, - sym_compound_statement, - STATE(797), 1, - sym_try_statement, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [341406] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, + anon_sym_LT, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13995), 1, - anon_sym_try, - STATE(781), 1, - sym_try_statement, - STATE(823), 1, - sym_compound_statement, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [341441] = 6, + 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, + [341060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4861), 1, + STATE(4985), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10184), 7, + ACTIONS(10176), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -732510,30947 +731791,31094 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_try, anon_sym_requires, - [341466] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14966), 1, - sym_identifier, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(15016), 1, - sym_system_lib_string, - STATE(9992), 1, - sym_string_literal, - STATE(9998), 1, - sym_module_name, - STATE(10008), 1, - sym_module_partition, - ACTIONS(10274), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [341495] = 7, + [341085] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, + ACTIONS(10225), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(5264), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10196), 6, + ACTIONS(10223), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [341522] = 7, + [341112] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(10262), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(5523), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10200), 6, + ACTIONS(10260), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, + anon_sym_GT2, anon_sym_requires, - [341549] = 5, + [341139] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14955), 1, + aux_sym_preproc_else_token1, + ACTIONS(14957), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14993), 1, + aux_sym_preproc_if_token2, + STATE(9070), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11567), 1, + sym_enumerator, + ACTIONS(14959), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10631), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [341170] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14612), 1, + sym_identifier, + ACTIONS(14937), 1, + aux_sym_preproc_else_token1, + ACTIONS(14939), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14995), 1, + aux_sym_preproc_if_token2, + ACTIONS(14941), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(9072), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(10925), 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, + [341199] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14612), 1, + sym_identifier, + ACTIONS(14937), 1, + aux_sym_preproc_else_token1, + ACTIONS(14939), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14997), 1, + aux_sym_preproc_if_token2, + ACTIONS(14941), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(9072), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(11593), 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, + [341228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9746), 1, + ACTIONS(9918), 1, anon_sym_new, - ACTIONS(10314), 1, + ACTIONS(10306), 1, + anon_sym_delete, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [341251] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9918), 1, + anon_sym_new, + ACTIONS(10075), 1, anon_sym_delete, - ACTIONS(9601), 4, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [341572] = 10, + [341274] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14955), 1, + aux_sym_preproc_else_token1, + ACTIONS(14957), 1, + aux_sym_preproc_elif_token1, + ACTIONS(14999), 1, + aux_sym_preproc_if_token2, + STATE(8917), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11567), 1, + sym_enumerator, + ACTIONS(14959), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10939), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [341305] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9395), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(15018), 1, + ACTIONS(15001), 1, anon_sym_COMMA, - ACTIONS(15022), 1, + ACTIONS(15005), 1, anon_sym___attribute, - STATE(3140), 1, + STATE(3233), 1, sym_parameter_list, - STATE(9373), 1, + STATE(9279), 1, aux_sym__type_definition_declarators_repeat1, - ACTIONS(15020), 2, + ACTIONS(15003), 2, anon_sym_SEMI, anon_sym___attribute__, - STATE(8473), 2, + STATE(8475), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [341605] = 7, + [341338] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(10264), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5313), 1, + STATE(5264), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10204), 6, + ACTIONS(10266), 6, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, anon_sym_requires, - [341632] = 5, + [341365] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11765), 1, + anon_sym_new, + ACTIONS(11842), 1, + anon_sym_delete, + ACTIONS(9663), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(9657), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [341388] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11758), 1, + ACTIONS(9918), 1, anon_sym_new, - ACTIONS(11836), 1, + ACTIONS(10245), 1, anon_sym_delete, - ACTIONS(9601), 4, + ACTIONS(9663), 4, anon_sym_TILDE, anon_sym_STAR, anon_sym_COLON_COLON, anon_sym_LBRACK_COLON, - ACTIONS(9595), 5, + ACTIONS(9657), 5, anon_sym___based, sym_identifier, anon_sym_decltype, anon_sym_template, anon_sym_operator, - [341655] = 7, + [341411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10325), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + ACTIONS(7379), 2, anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5313), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10208), 6, + anon_sym_COLON, + ACTIONS(5637), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_final, anon_sym_override, - anon_sym_requires, - [341682] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(13987), 1, - anon_sym_try, - STATE(918), 1, - sym_compound_statement, - STATE(919), 1, - sym_try_statement, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [341717] = 7, + anon_sym_GT2, + [341436] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10190), 1, + ACTIONS(10178), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5310), 1, + STATE(5264), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10188), 6, + ACTIONS(10176), 6, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, anon_sym_final, anon_sym_override, - anon_sym_GT2, anon_sym_requires, - [341744] = 5, + [341463] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14955), 1, + aux_sym_preproc_else_token1, + ACTIONS(14957), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15007), 1, + aux_sym_preproc_if_token2, + STATE(9070), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11567), 1, + sym_enumerator, + ACTIONS(14959), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(10770), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [341494] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14612), 1, + sym_identifier, + ACTIONS(14937), 1, + aux_sym_preproc_else_token1, + ACTIONS(14939), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15009), 1, + aux_sym_preproc_if_token2, + ACTIONS(14941), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(9072), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + STATE(11111), 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, + [341523] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14653), 1, + aux_sym_preproc_if_token2, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(14955), 1, + aux_sym_preproc_else_token1, + ACTIONS(14957), 1, + aux_sym_preproc_elif_token1, + STATE(8895), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11567), 1, + sym_enumerator, + ACTIONS(14959), 2, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + STATE(11581), 3, + sym_preproc_else_in_enumerator_list, + sym_preproc_elif_in_enumerator_list, + sym_preproc_elifdef_in_enumerator_list, + [341554] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, + ACTIONS(10262), 1, anon_sym___attribute, - STATE(8968), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7719), 4, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4787), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10260), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(15024), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [341766] = 5, + [341580] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7693), 1, + ACTIONS(7739), 1, anon_sym___attribute, - STATE(4065), 1, + STATE(4129), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7695), 4, + ACTIONS(7741), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15026), 4, + ACTIONS(15011), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [341788] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13399), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8550), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8422), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [341812] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14499), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8560), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8907), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [341836] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14502), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8601), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(8915), 3, - anon_sym_LPAREN2, - anon_sym_LBRACE, - anon_sym_LBRACK, - [341860] = 5, + [341602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7697), 1, + ACTIONS(7755), 1, anon_sym___attribute, - STATE(4065), 1, + STATE(8954), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7699), 4, + ACTIONS(7757), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15026), 4, + ACTIONS(15013), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [341882] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10198), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(4779), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10196), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [341908] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10206), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(4779), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10204), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [341934] = 7, + [341624] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4779), 1, + STATE(5191), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10208), 5, + ACTIONS(10231), 6, + 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, - [341960] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15028), 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, - [341976] = 6, + [341648] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5227), 1, + STATE(5191), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10184), 6, + ACTIONS(10241), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [342000] = 6, + [341672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5227), 1, + STATE(5191), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10196), 6, + ACTIONS(10266), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [342024] = 6, + [341696] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5227), 1, + STATE(5191), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10188), 6, + ACTIONS(10260), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [342048] = 6, + [341720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5227), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10192), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(7658), 1, + anon_sym___attribute, + STATE(4129), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7660), 4, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_GT2, - anon_sym_requires, - [342072] = 6, + ACTIONS(15011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341742] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15017), 1, anon_sym_LBRACK, - STATE(5227), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10200), 6, - anon_sym_DOT_DOT_DOT, + STATE(9496), 1, + sym_gnu_asm_input_operand, + STATE(11236), 1, + sym_string_literal, + ACTIONS(15015), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [341766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7769), 1, + anon_sym___attribute, + STATE(8976), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7771), 4, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_GT2, - anon_sym_requires, - [342096] = 6, + ACTIONS(15019), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5227), 1, + STATE(5191), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10172), 6, + ACTIONS(10176), 6, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_final, anon_sym_override, anon_sym_GT2, anon_sym_requires, - [342120] = 6, + [341812] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5227), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10204), 6, - anon_sym_DOT_DOT_DOT, + ACTIONS(7662), 1, + anon_sym___attribute, + STATE(4129), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7664), 4, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_GT2, - anon_sym_requires, - [342144] = 6, + ACTIONS(15011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13386), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8588), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8402), 3, anon_sym_LPAREN2, - ACTIONS(14865), 1, + anon_sym_LBRACE, anon_sym_LBRACK, - STATE(5227), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10208), 6, - anon_sym_DOT_DOT_DOT, + [341858] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7618), 1, + anon_sym___attribute, + STATE(4129), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7620), 4, anon_sym_COMMA, - anon_sym_final, - anon_sym_override, + anon_sym___attribute__, + anon_sym_LBRACE, anon_sym_GT2, + ACTIONS(15011), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [341880] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13152), 1, anon_sym_requires, - [342168] = 5, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8576), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7874), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [341904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7701), 1, + ACTIONS(7731), 1, anon_sym___attribute, - STATE(8978), 1, + STATE(4129), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7703), 4, + ACTIONS(7733), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15030), 4, + ACTIONS(15011), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342190] = 8, + [341926] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9395), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(15034), 1, + ACTIONS(15023), 1, anon_sym___attribute, - STATE(3140), 1, + STATE(3233), 1, sym_parameter_list, - STATE(8473), 2, + STATE(8475), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - ACTIONS(15032), 3, + ACTIONS(15021), 3, anon_sym_COMMA, anon_sym_SEMI, anon_sym___attribute__, - [342218] = 5, + [341954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, + ACTIONS(7684), 1, anon_sym___attribute, - STATE(8979), 1, + STATE(8956), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7709), 4, + ACTIONS(7686), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15036), 4, + ACTIONS(15025), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342240] = 5, + [341976] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14494), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8533), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(8989), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [342000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(7690), 1, anon_sym___attribute, - STATE(4065), 1, + STATE(8942), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7677), 4, + ACTIONS(7692), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15026), 4, + ACTIONS(15027), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342262] = 10, + [342022] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(15038), 1, + ACTIONS(15029), 1, anon_sym_EQ, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(10637), 1, + STATE(10741), 1, sym_initializer_list, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [342294] = 5, + [342054] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5191), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10227), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [342078] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5191), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10219), 6, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_final, + anon_sym_override, + anon_sym_GT2, + anon_sym_requires, + [342102] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7713), 1, + ACTIONS(10233), 1, anon_sym___attribute, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7715), 4, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4787), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10231), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(15026), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [342316] = 6, + [342128] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(15042), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(9522), 1, - sym_gnu_asm_input_operand, - STATE(10677), 1, - sym_string_literal, - ACTIONS(15040), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [342340] = 6, + STATE(5335), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(14748), 2, + anon_sym_COMMA, + anon_sym_GT2, + STATE(9155), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [342158] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13205), 1, + ACTIONS(14497), 1, anon_sym_requires, - ACTIONS(10859), 2, + ACTIONS(10835), 2, anon_sym_final, anon_sym_override, - STATE(8381), 2, + STATE(8393), 2, sym_virtual_specifier, aux_sym__function_postfix_repeat1, - STATE(8561), 2, + STATE(8506), 2, sym__function_postfix, sym_requires_clause, - ACTIONS(7966), 3, + ACTIONS(8999), 3, anon_sym_LPAREN2, anon_sym_LBRACE, anon_sym_LBRACK, - [342364] = 5, + [342182] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15031), 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, + [342198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7681), 1, + ACTIONS(7560), 1, anon_sym___attribute, - STATE(4065), 1, + STATE(4129), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7683), 4, + ACTIONS(7562), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15026), 4, + ACTIONS(15011), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342386] = 7, + [342220] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13220), 1, + anon_sym_requires, + ACTIONS(10835), 2, + anon_sym_final, + anon_sym_override, + STATE(8393), 2, + sym_virtual_specifier, + aux_sym__function_postfix_repeat1, + STATE(8559), 2, + sym__function_postfix, + sym_requires_clause, + ACTIONS(7970), 3, + anon_sym_LPAREN2, + anon_sym_LBRACE, + anon_sym_LBRACK, + [342244] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4779), 1, + STATE(5445), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10200), 5, + ACTIONS(14748), 2, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym___attribute__, - anon_sym_EQ, - anon_sym_GT2, - [342412] = 9, + STATE(9155), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [342274] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5327), 1, + STATE(5191), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(14734), 2, + ACTIONS(10223), 6, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_final, + anon_sym_override, anon_sym_GT2, - STATE(9151), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [342442] = 5, + anon_sym_requires, + [342298] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7555), 1, + ACTIONS(10229), 1, anon_sym___attribute, - STATE(8948), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7557), 4, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4787), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10227), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(15044), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [342464] = 5, + [342324] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15035), 1, + anon_sym_LBRACK, + STATE(9438), 1, + sym_gnu_asm_output_operand, + STATE(10711), 1, + sym_string_literal, + ACTIONS(15033), 2, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [342348] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7783), 1, + ACTIONS(7584), 1, anon_sym___attribute, - STATE(8952), 1, + STATE(8948), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7785), 4, + ACTIONS(7586), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15046), 4, + ACTIONS(15037), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342486] = 5, + [342370] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7723), 1, + ACTIONS(10243), 1, anon_sym___attribute, - STATE(4065), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7725), 4, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4787), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10241), 5, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym___attribute__, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_GT2, - ACTIONS(15026), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [342508] = 5, + [342396] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7727), 1, + ACTIONS(7622), 1, anon_sym___attribute, - STATE(4065), 1, + STATE(4129), 1, aux_sym_sized_type_specifier_repeat1, - ACTIONS(7729), 4, + ACTIONS(7624), 4, anon_sym_COMMA, anon_sym___attribute__, anon_sym_LBRACE, anon_sym_GT2, - ACTIONS(15026), 4, + ACTIONS(15011), 4, anon_sym_signed, anon_sym_unsigned, anon_sym_long, anon_sym_short, - [342530] = 6, + [342418] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(13149), 1, - anon_sym_requires, - ACTIONS(10859), 2, - anon_sym_final, - anon_sym_override, - STATE(8381), 2, - sym_virtual_specifier, - aux_sym__function_postfix_repeat1, - STATE(8584), 2, - sym__function_postfix, - sym_requires_clause, - ACTIONS(7791), 3, - anon_sym_LPAREN2, + ACTIONS(7361), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - [342554] = 6, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15039), 1, + sym_identifier, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + STATE(839), 1, + sym_declaration_list, + STATE(9118), 1, + sym_attribute_declaration, + STATE(10323), 1, + sym_nested_namespace_specifier, + STATE(10736), 1, + sym__namespace_specifier, + [342449] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15050), 1, - anon_sym_LBRACK, - STATE(9480), 1, - sym_gnu_asm_output_operand, - STATE(11261), 1, + ACTIONS(15045), 1, + sym_identifier, + ACTIONS(15049), 1, + sym_system_lib_string, + STATE(11264), 2, + sym_preproc_call_expression, sym_string_literal, - ACTIONS(15048), 2, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(123), 5, + ACTIONS(15047), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [342578] = 9, + [342470] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(10497), 1, + anon_sym_LBRACE, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(13795), 1, + ACTIONS(15051), 1, + anon_sym_COLON, + STATE(4808), 1, + sym_attribute_specifier, + STATE(9127), 1, + sym__enum_base_clause, + STATE(9305), 1, + sym_enumerator_list, + ACTIONS(8003), 2, + anon_sym_COMMA, + anon_sym_GT2, + [342499] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5340), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(14734), 2, + ACTIONS(10266), 5, anon_sym_COMMA, anon_sym_RPAREN, - STATE(9151), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [342608] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15054), 4, - anon_sym_TILDE, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_LBRACK_COLON, - ACTIONS(15052), 5, - anon_sym___based, - sym_identifier, - anon_sym_decltype, - anon_sym_template, - anon_sym_operator, - [342625] = 6, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [342522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10172), 5, + ACTIONS(10223), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [342648] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7373), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15056), 1, - sym_identifier, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - STATE(827), 1, - sym_declaration_list, - STATE(9113), 1, - sym_attribute_declaration, - STATE(10533), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [342679] = 10, + [342545] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7355), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15062), 1, + ACTIONS(15053), 1, sym_identifier, - STATE(424), 1, + STATE(453), 1, sym_declaration_list, - STATE(9102), 1, + STATE(9084), 1, sym_attribute_declaration, - STATE(10570), 1, + STATE(10356), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - [342710] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10208), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [342733] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15064), 1, - sym_identifier, - ACTIONS(15068), 1, - sym_system_lib_string, - STATE(10634), 2, - sym_preproc_call_expression, - sym_string_literal, - ACTIONS(15066), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [342754] = 6, + [342576] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10196), 5, + ACTIONS(10219), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [342777] = 10, + [342599] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15070), 1, + ACTIONS(15055), 1, sym_identifier, - STATE(973), 1, + STATE(667), 1, sym_declaration_list, - STATE(9148), 1, + STATE(9090), 1, sym_attribute_declaration, - STATE(10539), 1, + STATE(10283), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - [342808] = 10, + [342630] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15072), 1, + ACTIONS(15057), 1, sym_identifier, - STATE(409), 1, + STATE(850), 1, sym_declaration_list, - STATE(9116), 1, + STATE(9102), 1, sym_attribute_declaration, - STATE(10510), 1, + STATE(10539), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - [342839] = 6, + [342661] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10192), 5, + ACTIONS(10260), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [342862] = 10, + [342684] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(7355), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15074), 1, + ACTIONS(15059), 1, sym_identifier, - STATE(656), 1, + STATE(469), 1, sym_declaration_list, - STATE(9086), 1, + STATE(9085), 1, sym_attribute_declaration, - STATE(10335), 1, + STATE(10617), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - [342893] = 6, + [342715] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10200), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4674), 1, anon_sym_LBRACE, - [342916] = 5, + ACTIONS(15061), 1, + anon_sym_LBRACK, + ACTIONS(15063), 1, + anon_sym_EQ, + ACTIONS(15065), 1, + anon_sym_DOT, + STATE(10489), 1, + sym_initializer_list, + STATE(9012), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [342740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15076), 1, + ACTIONS(15067), 1, sym_identifier, - ACTIONS(15078), 1, + ACTIONS(15069), 1, sym_system_lib_string, - STATE(10881), 2, + STATE(10750), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(15066), 5, + ACTIONS(15047), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [342937] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(10554), 1, - anon_sym_LBRACE, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15080), 1, - anon_sym_COLON, - STATE(4868), 1, - sym_attribute_specifier, - STATE(9119), 1, - sym__enum_base_clause, - STATE(9324), 1, - sym_enumerator_list, - ACTIONS(8002), 2, - anon_sym_COMMA, - anon_sym_GT2, - [342966] = 5, + [342761] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15082), 1, + ACTIONS(15071), 1, sym_identifier, - ACTIONS(15084), 1, + ACTIONS(15073), 1, sym_system_lib_string, - STATE(10869), 2, + STATE(11261), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(15066), 5, + ACTIONS(15047), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [342987] = 6, + [342782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10184), 5, + ACTIONS(10176), 5, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACE, - [343010] = 10, + [342805] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15086), 1, + ACTIONS(15075), 1, sym_identifier, - STATE(863), 1, + STATE(763), 1, sym_declaration_list, - STATE(9158), 1, + STATE(9109), 1, sym_attribute_declaration, - STATE(10232), 1, + STATE(10549), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - [343041] = 10, + [342836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(15079), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(15077), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [342853] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10241), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [342876] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10231), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [342899] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7377), 1, anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15088), 1, + ACTIONS(15081), 1, sym_identifier, - STATE(939), 1, + STATE(885), 1, sym_declaration_list, - STATE(9110), 1, + STATE(9093), 1, sym_attribute_declaration, - STATE(10428), 1, + STATE(10456), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - [343072] = 9, + [342930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15085), 4, + anon_sym_TILDE, + anon_sym_STAR, + anon_sym_COLON_COLON, + anon_sym_LBRACK_COLON, + ACTIONS(15083), 5, + anon_sym___based, + sym_identifier, + anon_sym_decltype, + anon_sym_template, + anon_sym_operator, + [342947] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10554), 1, + ACTIONS(10497), 1, anon_sym_LBRACE, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15080), 1, + ACTIONS(15051), 1, anon_sym_COLON, - STATE(4912), 1, + STATE(4978), 1, sym_attribute_specifier, - STATE(9123), 1, + STATE(9132), 1, sym__enum_base_clause, - STATE(9335), 1, + STATE(9320), 1, sym_enumerator_list, - ACTIONS(8008), 2, + ACTIONS(8009), 2, anon_sym_COMMA, anon_sym_GT2, - [343101] = 5, + [342976] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7377), 1, + anon_sym_LBRACE, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + ACTIONS(15087), 1, + sym_identifier, + STATE(893), 1, + sym_declaration_list, + STATE(9103), 1, + sym_attribute_declaration, + STATE(10218), 1, + sym_nested_namespace_specifier, + STATE(10736), 1, + sym__namespace_specifier, + [343007] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10227), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACE, + [343030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15090), 1, + ACTIONS(15089), 1, sym_identifier, - ACTIONS(15092), 1, + ACTIONS(15091), 1, sym_system_lib_string, - STATE(11393), 2, + STATE(10996), 2, sym_preproc_call_expression, sym_string_literal, - ACTIONS(15066), 5, + ACTIONS(15047), 5, anon_sym_L_DQUOTE, anon_sym_u_DQUOTE, anon_sym_U_DQUOTE, anon_sym_u8_DQUOTE, anon_sym_DQUOTE, - [343122] = 6, + [343051] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(4909), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10204), 5, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10231), 4, anon_sym_SEMI, - anon_sym_COLON, anon_sym_LBRACE, - [343145] = 3, + anon_sym_EQ, + anon_sym_try, + [343073] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15096), 4, - anon_sym_TILDE, - anon_sym_STAR, + ACTIONS(15095), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15097), 1, + anon_sym_EQ, + ACTIONS(15093), 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, + [343091] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15099), 1, + anon_sym_SEMI, + ACTIONS(15101), 1, + anon_sym_EQ, + STATE(3755), 1, + sym_template_argument_list, + STATE(9581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343117] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(5632), 1, anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15103), 1, + anon_sym_SEMI, + ACTIONS(15105), 1, + anon_sym_EQ, + STATE(3755), 1, + sym_template_argument_list, + STATE(9615), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343143] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(15107), 1, + anon_sym_SEMI, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343169] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10243), 1, + anon_sym___attribute, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5445), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10241), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [343193] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15094), 5, - anon_sym___based, + ACTIONS(15109), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, + STATE(3700), 1, + sym_template_type, + STATE(3786), 1, + sym__splice_specialization_specifier, + STATE(3820), 1, + sym_template_method, + STATE(10274), 1, + sym_splice_specifier, + STATE(10424), 1, + sym_operator_name, + [343221] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2284), 1, anon_sym_operator, - [343162] = 10, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15111), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(5611), 1, + sym_template_method, + STATE(10455), 1, + sym_splice_specifier, + STATE(10527), 1, + sym_operator_name, + [343249] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_LBRACE, - ACTIONS(8240), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15098), 1, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(15113), 1, + anon_sym_RPAREN, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343275] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15115), 1, sym_identifier, - STATE(653), 1, - sym_declaration_list, - STATE(9159), 1, + STATE(3700), 1, + sym_template_type, + STATE(5704), 1, + sym__splice_specialization_specifier, + STATE(5914), 1, + sym_template_method, + STATE(10367), 1, + sym_operator_name, + STATE(10618), 1, + sym_splice_specifier, + [343303] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15119), 1, + anon_sym_LBRACK, + ACTIONS(15122), 1, + anon_sym_DOT, + ACTIONS(15117), 2, + anon_sym_LBRACE, + anon_sym_EQ, + STATE(9012), 4, + sym_subscript_designator, + sym_subscript_range_designator, + sym_field_designator, + aux_sym_initializer_pair_repeat1, + [343323] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(15125), 1, + anon_sym_SEMI, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, sym_attribute_declaration, - STATE(10263), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [343193] = 6, + aux_sym_attributed_declarator_repeat1, + [343349] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(10262), 1, + anon_sym___attribute, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4706), 1, + STATE(5445), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10188), 5, + ACTIONS(10260), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACE, - [343216] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15100), 1, - sym_identifier, - ACTIONS(15105), 1, - aux_sym_preproc_elif_token1, - STATE(9007), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - ACTIONS(15103), 4, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - [343236] = 8, + anon_sym___attribute__, + [343373] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14245), 1, - anon_sym_DASH_GT, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(14381), 1, - anon_sym_LBRACE, - STATE(10012), 1, - sym_trailing_return_type, - STATE(11133), 1, - sym_requires_clause, - STATE(7955), 2, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13783), 1, + anon_sym_LBRACK, + ACTIONS(15127), 1, + anon_sym_RPAREN, + STATE(4558), 1, + sym_parameter_list, + STATE(8853), 1, + sym__function_declarator_seq, + STATE(8696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343262] = 8, + [343399] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4909), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10227), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [343421] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14245), 1, + ACTIONS(14254), 1, + anon_sym_LBRACE, + ACTIONS(14256), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(14258), 1, anon_sym_requires, - ACTIONS(15107), 1, - anon_sym_LBRACE, - STATE(10152), 1, + STATE(10026), 1, sym_trailing_return_type, - STATE(11324), 1, + STATE(10927), 1, sym_requires_clause, - STATE(7955), 2, + STATE(9076), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343288] = 8, + [343447] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(15109), 1, + ACTIONS(15129), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343314] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15111), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5556), 1, - sym__splice_specialization_specifier, - STATE(5906), 1, - sym_template_method, - STATE(10340), 1, - sym_splice_specifier, - STATE(10416), 1, - sym_operator_name, - [343342] = 8, + [343473] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14646), 1, - anon_sym_RPAREN, - STATE(4586), 1, + ACTIONS(15131), 1, + anon_sym_SEMI, + STATE(4558), 1, sym_parameter_list, - STATE(8856), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8678), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343368] = 8, + [343499] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(15113), 1, + ACTIONS(15133), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343394] = 8, + [343525] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(15115), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15135), 1, anon_sym_SEMI, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, + ACTIONS(15137), 1, + anon_sym_EQ, + STATE(3755), 1, + sym_template_argument_list, + STATE(9553), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343420] = 5, + [343551] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(15050), 1, - anon_sym_LBRACK, - STATE(9957), 1, - sym_gnu_asm_output_operand, - STATE(11261), 1, - sym_string_literal, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [343440] = 9, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14254), 1, + anon_sym_LBRACE, + ACTIONS(14256), 1, + anon_sym_DASH_GT, + ACTIONS(14258), 1, + anon_sym_requires, + STATE(10026), 1, + sym_trailing_return_type, + STATE(10927), 1, + sym_requires_clause, + STATE(7970), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [343577] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15117), 1, + ACTIONS(15111), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(3798), 1, - sym_template_method, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - STATE(10412), 1, - sym_operator_name, - [343468] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15117), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(3798), 1, + STATE(5611), 1, sym_template_method, - STATE(3804), 1, - sym__splice_specialization_specifier, - STATE(10412), 1, - sym_operator_name, - STATE(10450), 1, + STATE(10448), 1, sym_splice_specifier, - [343496] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(15119), 1, - anon_sym_SEMI, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [343522] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(4883), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(15121), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [343544] = 8, + STATE(10527), 1, + sym_operator_name, + [343605] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13783), 1, anon_sym_LBRACK, - ACTIONS(15123), 1, - anon_sym_SEMI, - STATE(4586), 1, + ACTIONS(15139), 1, + anon_sym_RPAREN, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8853), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343570] = 5, + [343631] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(15125), 1, - anon_sym___attribute__, - ACTIONS(15128), 1, - anon_sym___attribute, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(6937), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_SEMI, - anon_sym_GT2, - [343590] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15131), 1, + ACTIONS(15109), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5692), 1, - sym__splice_specialization_specifier, - STATE(5761), 1, + STATE(3820), 1, sym_template_method, - STATE(10434), 1, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10424), 1, sym_operator_name, - STATE(10464), 1, + STATE(10448), 1, sym_splice_specifier, - [343618] = 7, + [343659] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(10233), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5327), 1, + STATE(5335), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10204), 3, + ACTIONS(10231), 3, anon_sym_COMMA, anon_sym___attribute__, anon_sym_GT2, - [343642] = 9, + [343683] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15117), 1, + ACTIONS(15109), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(3798), 1, + STATE(3820), 1, sym_template_method, - STATE(3804), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10254), 1, + STATE(10376), 1, sym_operator_name, - STATE(10450), 1, + STATE(10448), 1, sym_splice_specifier, - [343670] = 8, + [343711] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15133), 1, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(15141), 1, anon_sym_SEMI, - ACTIONS(15135), 1, - anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - STATE(9501), 2, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343696] = 8, + [343737] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(13783), 1, anon_sym_LBRACK, - ACTIONS(14656), 1, + ACTIONS(14622), 1, anon_sym_RPAREN, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8856), 1, + STATE(8853), 1, sym__function_declarator_seq, - STATE(8678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [343722] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14245), 1, - anon_sym_DASH_GT, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(15137), 1, - anon_sym_LBRACE, - STATE(10150), 1, - sym_trailing_return_type, - STATE(11184), 1, - sym_requires_clause, - STATE(7955), 2, + STATE(8696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343748] = 7, + [343763] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(10229), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5340), 1, + STATE(5445), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10208), 3, + ACTIONS(10227), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym___attribute__, - [343772] = 8, + [343787] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(13783), 1, anon_sym_LBRACK, - ACTIONS(15139), 1, + ACTIONS(14630), 1, anon_sym_RPAREN, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8856), 1, + STATE(8853), 1, sym__function_declarator_seq, - STATE(8678), 2, + STATE(8696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343798] = 4, + [343813] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15143), 1, - aux_sym_preproc_elif_token1, - ACTIONS(15145), 1, - anon_sym_EQ, - ACTIONS(15141), 6, - anon_sym_COMMA, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(15035), 1, + anon_sym_LBRACK, + STATE(10079), 1, + sym_gnu_asm_output_operand, + STATE(10711), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [343833] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15115), 1, sym_identifier, - [343816] = 8, + STATE(3700), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(5914), 1, + sym_template_method, + STATE(10367), 1, + sym_operator_name, + STATE(10448), 1, + sym_splice_specifier, + [343861] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(15147), 1, + ACTIONS(15143), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343842] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(9456), 1, - anon_sym_COMMA, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15151), 1, - anon_sym_RBRACK, - ACTIONS(15154), 1, - anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - STATE(9899), 1, - aux_sym_structured_binding_declarator_repeat1, - [343870] = 8, + [343887] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(14628), 1, - anon_sym_RPAREN, - STATE(4586), 1, + ACTIONS(15145), 1, + anon_sym_SEMI, + STATE(4558), 1, sym_parameter_list, - STATE(8856), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8678), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343896] = 8, + [343913] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(15156), 1, - anon_sym_COLON, - STATE(4586), 1, + ACTIONS(15147), 1, + anon_sym_SEMI, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343922] = 8, + [343939] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(10233), 1, + anon_sym___attribute, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13803), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15158), 1, - anon_sym_RPAREN, - STATE(4586), 1, + STATE(5445), 1, sym_parameter_list, - STATE(8856), 1, + STATE(8558), 1, sym__function_declarator_seq, - STATE(8678), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [343948] = 8, + ACTIONS(10231), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym___attribute__, + [343963] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15160), 1, - anon_sym_SEMI, - ACTIONS(15162), 1, - anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - STATE(9433), 2, + ACTIONS(14256), 1, + anon_sym_DASH_GT, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(15149), 1, + anon_sym_LBRACE, + STATE(9792), 1, + sym_trailing_return_type, + STATE(11018), 1, + sym_requires_clause, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [343974] = 7, + [343989] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10202), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(5327), 1, + ACTIONS(15151), 1, + anon_sym_COLON, + STATE(4558), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8583), 1, sym__function_declarator_seq, - ACTIONS(10200), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [343998] = 8, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344015] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14243), 1, - anon_sym_LBRACE, - ACTIONS(14245), 1, - anon_sym_DASH_GT, - ACTIONS(14247), 1, - anon_sym_requires, - STATE(9835), 1, - sym_trailing_return_type, - STATE(11587), 1, - sym_requires_clause, - STATE(7955), 2, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(13910), 1, + anon_sym_LBRACK, + ACTIONS(15153), 1, + anon_sym_SEMI, + STATE(4558), 1, + sym_parameter_list, + STATE(8583), 1, + sym__function_declarator_seq, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344024] = 9, + [344041] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15164), 1, + ACTIONS(15155), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5546), 1, + STATE(3820), 1, sym_template_method, - STATE(10211), 1, - sym_operator_name, - STATE(10302), 1, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, sym_splice_specifier, - [344052] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15166), 1, - anon_sym_SEMI, - ACTIONS(15168), 1, - anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - STATE(9543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344078] = 6, + STATE(10457), 1, + sym_operator_name, + [344069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(15017), 1, anon_sym_LBRACK, - STATE(4883), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10196), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [344100] = 6, + STATE(9925), 1, + sym_gnu_asm_input_operand, + STATE(11236), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [344089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(4883), 1, + STATE(4909), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10208), 4, + ACTIONS(10260), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [344122] = 8, + [344111] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(15170), 1, + ACTIONS(15157), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344148] = 8, + [344137] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(10229), 1, + anon_sym___attribute, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15172), 1, - anon_sym_RPAREN, - STATE(4586), 1, + STATE(5335), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8558), 1, sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344174] = 8, + ACTIONS(10227), 3, + anon_sym_COMMA, + anon_sym___attribute__, + anon_sym_GT2, + [344161] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14245), 1, + ACTIONS(14256), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(14258), 1, anon_sym_requires, - ACTIONS(15174), 1, + ACTIONS(15159), 1, anon_sym_LBRACE, - STATE(10081), 1, + STATE(10118), 1, sym_trailing_return_type, - STATE(10847), 1, + STATE(11224), 1, sym_requires_clause, - STATE(7955), 2, + STATE(9061), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344200] = 9, + [344187] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4909), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(15161), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_try, + [344209] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15176), 1, + ACTIONS(15163), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(3798), 1, - sym_template_method, - STATE(5426), 1, + STATE(5714), 1, sym__splice_specialization_specifier, - STATE(10296), 1, + STATE(5727), 1, + sym_template_method, + STATE(10220), 1, sym_operator_name, - STATE(10302), 1, + STATE(10428), 1, sym_splice_specifier, - [344228] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(15178), 1, - anon_sym_SEMI, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344254] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(15180), 1, - anon_sym_SEMI, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344280] = 8, + [344237] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(10068), 1, anon_sym_LT, - ACTIONS(15182), 1, + ACTIONS(15165), 1, anon_sym_SEMI, - ACTIONS(15184), 1, + ACTIONS(15167), 1, anon_sym_EQ, - STATE(3735), 1, + STATE(3755), 1, sym_template_argument_list, - STATE(9514), 2, + STATE(9466), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344306] = 8, + [344263] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(15186), 1, + ACTIONS(15169), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344332] = 8, + [344289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15188), 1, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(4909), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10241), 4, anon_sym_SEMI, - ACTIONS(15190), 1, + anon_sym_LBRACE, anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - STATE(9584), 2, + anon_sym_try, + [344311] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14256), 1, + anon_sym_DASH_GT, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(14298), 1, + anon_sym_LBRACE, + STATE(10123), 1, + sym_trailing_return_type, + STATE(11237), 1, + sym_requires_clause, + STATE(9063), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344358] = 7, + [344337] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, - anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(13783), 1, anon_sym_LBRACK, - STATE(5327), 1, + ACTIONS(14626), 1, + anon_sym_RPAREN, + STATE(4558), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8853), 1, sym__function_declarator_seq, - ACTIONS(10196), 3, - anon_sym_COMMA, - anon_sym___attribute__, - anon_sym_GT2, - [344382] = 7, + STATE(8696), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344363] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10198), 1, + ACTIONS(10243), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5340), 1, + STATE(5335), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10196), 3, + ACTIONS(10241), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym___attribute__, - [344406] = 8, + anon_sym_GT2, + [344387] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13803), 1, - anon_sym_LBRACK, - ACTIONS(14650), 1, - anon_sym_RPAREN, - STATE(4586), 1, - sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(8678), 2, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15171), 1, + anon_sym_SEMI, + ACTIONS(15173), 1, + anon_sym_EQ, + STATE(3755), 1, + sym_template_argument_list, + STATE(9577), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344432] = 8, + [344413] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13783), 1, anon_sym_LBRACK, - ACTIONS(15192), 1, - anon_sym_SEMI, - STATE(4586), 1, + ACTIONS(14640), 1, + anon_sym_RPAREN, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8853), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344458] = 8, + [344439] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15194), 1, - anon_sym_SEMI, - ACTIONS(15196), 1, - anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - STATE(9537), 2, + ACTIONS(14256), 1, + anon_sym_DASH_GT, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(14298), 1, + anon_sym_LBRACE, + STATE(10123), 1, + sym_trailing_return_type, + STATE(11237), 1, + sym_requires_clause, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344484] = 9, + [344465] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, + ACTIONS(2284), 1, anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15131), 1, + ACTIONS(15109), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, + STATE(3786), 1, sym__splice_specialization_specifier, - STATE(5761), 1, + STATE(3820), 1, sym_template_method, - STATE(10302), 1, + STATE(10274), 1, sym_splice_specifier, - STATE(10434), 1, - sym_operator_name, - [344512] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15164), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5546), 1, - sym_template_method, - STATE(10211), 1, + STATE(10376), 1, sym_operator_name, - STATE(10419), 1, - sym_splice_specifier, - [344540] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15042), 1, - anon_sym_LBRACK, - STATE(9709), 1, - sym_gnu_asm_input_operand, - STATE(10677), 1, - sym_string_literal, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [344560] = 9, + [344493] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15111), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5906), 1, - sym_template_method, - STATE(10302), 1, - sym_splice_specifier, - STATE(10416), 1, - sym_operator_name, - [344588] = 6, + ACTIONS(15175), 1, + anon_sym___attribute__, + ACTIONS(15178), 1, + anon_sym___attribute, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(6966), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_GT2, + [344513] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(4883), 1, + ACTIONS(15181), 1, + anon_sym_SEMI, + STATE(4558), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8583), 1, sym__function_declarator_seq, - ACTIONS(10200), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [344610] = 8, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344539] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14245), 1, + ACTIONS(14256), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(14258), 1, anon_sym_requires, - ACTIONS(15198), 1, + ACTIONS(15183), 1, anon_sym_LBRACE, - STATE(9693), 1, + STATE(9871), 1, sym_trailing_return_type, - STATE(10701), 1, + STATE(10827), 1, sym_requires_clause, - STATE(7955), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344636] = 7, + [344565] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(10262), 1, anon_sym___attribute, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5327), 1, + STATE(5335), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10208), 3, + ACTIONS(10260), 3, anon_sym_COMMA, anon_sym___attribute__, anon_sym_GT2, - [344660] = 8, + [344589] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14243), 1, - anon_sym_LBRACE, - ACTIONS(14245), 1, + ACTIONS(14256), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(14258), 1, anon_sym_requires, - STATE(9835), 1, + ACTIONS(15185), 1, + anon_sym_LBRACE, + STATE(9960), 1, sym_trailing_return_type, - STATE(11587), 1, + STATE(11216), 1, sym_requires_clause, - STATE(9062), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [344686] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - ACTIONS(15200), 1, - anon_sym_SEMI, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344712] = 8, + [344615] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14245), 1, + ACTIONS(14256), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(14258), 1, anon_sym_requires, - ACTIONS(15137), 1, + ACTIONS(15185), 1, anon_sym_LBRACE, - STATE(10150), 1, + STATE(9960), 1, sym_trailing_return_type, - STATE(11184), 1, + STATE(11216), 1, sym_requires_clause, - STATE(9009), 2, + STATE(9038), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344738] = 8, + [344641] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14245), 1, - anon_sym_DASH_GT, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(15198), 1, - anon_sym_LBRACE, - STATE(9693), 1, - sym_trailing_return_type, - STATE(10701), 1, - sym_requires_clause, - STATE(9045), 2, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15187), 1, + anon_sym_SEMI, + ACTIONS(15189), 1, + anon_sym_EQ, + STATE(3755), 1, + sym_template_argument_list, + STATE(9572), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344764] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10202), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5340), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10200), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym___attribute__, - [344788] = 8, + [344667] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(10068), 1, anon_sym_LT, - ACTIONS(15202), 1, + ACTIONS(15191), 1, anon_sym_SEMI, - ACTIONS(15204), 1, + ACTIONS(15193), 1, anon_sym_EQ, - STATE(3735), 1, + STATE(3755), 1, sym_template_argument_list, - STATE(9548), 2, + STATE(9543), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344814] = 8, + [344693] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(9462), 1, + anon_sym_COMMA, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15195), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15197), 1, + anon_sym_RBRACK, + ACTIONS(15200), 1, + anon_sym_EQ, + STATE(3755), 1, + sym_template_argument_list, + STATE(9663), 1, + aux_sym_structured_binding_declarator_repeat1, + [344721] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(15206), 1, - anon_sym_SEMI, - STATE(4586), 1, + ACTIONS(15202), 1, + anon_sym_RPAREN, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344840] = 8, + [344747] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2284), 1, + anon_sym_operator, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15163), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(5727), 1, + sym_template_method, + STATE(10220), 1, + sym_operator_name, + STATE(10448), 1, + sym_splice_specifier, + [344775] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15204), 1, + sym_identifier, + ACTIONS(15209), 1, + aux_sym_preproc_elif_token1, + STATE(9070), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11567), 1, + sym_enumerator, + ACTIONS(15207), 4, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + [344797] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13783), 1, anon_sym_LBRACK, - ACTIONS(15208), 1, + ACTIONS(14655), 1, anon_sym_RPAREN, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8853), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8696), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344866] = 6, + [344823] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15210), 1, + ACTIONS(15211), 1, sym_identifier, - ACTIONS(15215), 1, + ACTIONS(15216), 1, aux_sym_preproc_elif_token1, - STATE(9072), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, + STATE(9072), 2, sym_enumerator, - ACTIONS(15213), 4, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + ACTIONS(15214), 4, aux_sym_preproc_if_token2, aux_sym_preproc_else_token1, aux_sym_preproc_elifdef_token1, aux_sym_preproc_elifdef_token2, - [344888] = 6, + [344843] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(4883), 1, + ACTIONS(15218), 1, + anon_sym_SEMI, + STATE(4558), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8583), 1, sym__function_declarator_seq, - ACTIONS(10204), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_try, - [344910] = 8, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [344869] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(15217), 1, + ACTIONS(15220), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344936] = 8, + [344895] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(13945), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - ACTIONS(15219), 1, + ACTIONS(15222), 1, anon_sym_SEMI, - STATE(4586), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8572), 1, + STATE(8583), 1, sym__function_declarator_seq, - STATE(8367), 2, + STATE(8437), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344962] = 8, + [344921] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, + ACTIONS(8286), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14245), 1, + ACTIONS(14256), 1, anon_sym_DASH_GT, - ACTIONS(14247), 1, + ACTIONS(14258), 1, anon_sym_requires, - ACTIONS(14381), 1, + ACTIONS(15159), 1, anon_sym_LBRACE, - STATE(10012), 1, + STATE(10118), 1, sym_trailing_return_type, - STATE(11133), 1, + STATE(11224), 1, sym_requires_clause, - STATE(9027), 2, + STATE(7970), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [344988] = 8, + [344947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(9369), 1, + anon_sym___attribute, + ACTIONS(15224), 1, + anon_sym_EQ, + ACTIONS(9371), 5, + anon_sym_COMMA, anon_sym_LPAREN2, - ACTIONS(13945), 1, + anon_sym___attribute__, anon_sym_LBRACK, - ACTIONS(15221), 1, - anon_sym_SEMI, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, + anon_sym_GT2, + [344964] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6481), 1, + anon_sym___attribute, + ACTIONS(6483), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(6516), 1, + anon_sym___attribute__, + STATE(2943), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(3098), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345014] = 9, + [344985] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2286), 1, - anon_sym_operator, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15117), 1, + ACTIONS(6578), 1, + anon_sym_LT, + ACTIONS(15226), 1, sym_identifier, - STATE(3739), 1, + STATE(1095), 1, + sym_template_parameter_list, + STATE(3700), 1, sym_template_type, - STATE(3798), 1, - sym_template_method, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10254), 1, - sym_operator_name, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [345042] = 8, + [345010] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(7916), 1, + anon_sym___attribute__, + ACTIONS(7918), 1, + anon_sym___attribute, + ACTIONS(7920), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13803), 1, - anon_sym_LBRACK, - ACTIONS(14642), 1, - anon_sym_RPAREN, - STATE(4586), 1, - sym_parameter_list, - STATE(8856), 1, - sym__function_declarator_seq, - STATE(8678), 2, + STATE(6173), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6403), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345068] = 7, + [345031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10206), 1, - anon_sym___attribute, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5340), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10204), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(10575), 1, anon_sym___attribute__, - [345092] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10577), 1, + anon_sym___attribute, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(15223), 1, - anon_sym_RPAREN, - STATE(3140), 1, - sym_parameter_list, - STATE(8473), 2, + STATE(7923), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(8003), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345115] = 7, + [345052] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6578), 1, + anon_sym_LT, + ACTIONS(15226), 1, + sym_identifier, + STATE(1097), 1, + sym_template_parameter_list, + STATE(3700), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [345077] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7168), 1, + anon_sym___attribute, + ACTIONS(7170), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(15225), 1, - anon_sym_RPAREN, - STATE(3140), 1, - sym_parameter_list, - STATE(8473), 2, + ACTIONS(7225), 1, + anon_sym___attribute__, + STATE(4427), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4721), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345138] = 6, + [345098] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7355), 1, + anon_sym_LBRACE, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + ACTIONS(15228), 1, + sym_identifier, + STATE(450), 1, + sym_declaration_list, + STATE(10273), 1, + sym_nested_namespace_specifier, + STATE(10736), 1, + sym__namespace_specifier, + [345123] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7355), 1, + anon_sym_LBRACE, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + ACTIONS(15053), 1, + sym_identifier, + STATE(453), 1, + sym_declaration_list, + STATE(10356), 1, + sym_nested_namespace_specifier, + STATE(10736), 1, + sym__namespace_specifier, + [345148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5222), 1, + STATE(5182), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10172), 3, + ACTIONS(10227), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [345159] = 4, + [345169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 1, - anon_sym___attribute, - ACTIONS(15227), 1, - anon_sym_EQ, - ACTIONS(9335), 5, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5182), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10231), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, + anon_sym_GT2, + [345190] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, anon_sym_LPAREN2, - anon_sym___attribute__, + ACTIONS(14842), 1, anon_sym_LBRACK, + STATE(5182), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10241), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, anon_sym_GT2, - [345176] = 5, + [345211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15229), 1, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15232), 1, - anon_sym_EQ, - ACTIONS(15234), 1, - anon_sym_DOT, - STATE(9085), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [345195] = 8, + STATE(5182), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10260), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [345232] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15237), 1, + ACTIONS(15230), 1, sym_identifier, - STATE(672), 1, + STATE(728), 1, sym_declaration_list, - STATE(10448), 1, + STATE(10300), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - [345220] = 7, + [345257] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(12755), 1, + ACTIONS(9395), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - STATE(3709), 1, - sym_template_argument_list, - STATE(9741), 2, - sym_argument_list, - sym_initializer_list, - [345243] = 5, + ACTIONS(15232), 1, + anon_sym_RPAREN, + STATE(3233), 1, + sym_parameter_list, + STATE(8475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(6675), 1, anon_sym___attribute__, - STATE(9021), 2, + ACTIONS(6677), 1, + anon_sym___attribute, + ACTIONS(6679), 1, + anon_sym_LBRACK_LBRACK, + STATE(4183), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - ACTIONS(15239), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [345262] = 4, + STATE(4596), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345301] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(15243), 1, - anon_sym_COMMA, - ACTIONS(15245), 1, - aux_sym_preproc_elif_token1, - ACTIONS(15241), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, + ACTIONS(7377), 1, + anon_sym_LBRACE, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + ACTIONS(15234), 1, sym_identifier, - [345279] = 6, + STATE(952), 1, + sym_declaration_list, + STATE(10567), 1, + sym_nested_namespace_specifier, + STATE(10736), 1, + sym__namespace_specifier, + [345326] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6491), 1, - anon_sym___attribute, - ACTIONS(6493), 1, + ACTIONS(9395), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(6534), 1, - anon_sym___attribute__, - STATE(2902), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(3129), 2, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(15236), 1, + anon_sym_RPAREN, + STATE(3233), 1, + sym_parameter_list, + STATE(8475), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345300] = 6, + [345349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(9369), 1, + anon_sym___attribute, + ACTIONS(15238), 1, + anon_sym_EQ, + ACTIONS(9371), 5, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LPAREN2, - ACTIONS(14865), 1, + anon_sym___attribute__, anon_sym_LBRACK, - STATE(5222), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10188), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [345321] = 7, + [345366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10817), 1, + ACTIONS(6788), 1, + anon_sym___attribute__, + ACTIONS(6790), 1, + anon_sym___attribute, + ACTIONS(6792), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(13945), 1, - anon_sym_LBRACK, - STATE(4586), 1, - sym_parameter_list, - STATE(8572), 1, - sym__function_declarator_seq, - STATE(8367), 2, + STATE(4351), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(4900), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345344] = 8, + [345387] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(15247), 1, + ACTIONS(15226), 1, sym_identifier, - STATE(1099), 1, + STATE(1093), 1, sym_template_parameter_list, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [345369] = 7, + [345412] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(171), 1, anon_sym_LBRACK_COLON, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15249), 1, + ACTIONS(15240), 1, sym_identifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - STATE(11298), 2, + STATE(10980), 2, sym_nested_namespace_specifier, sym_splice_specifier, - [345392] = 6, + [345435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(9395), 1, anon_sym_LBRACK, - STATE(5222), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(15242), 1, + anon_sym_RPAREN, + STATE(3233), 1, sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10192), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [345413] = 6, + STATE(8475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7816), 1, + ACTIONS(6626), 1, anon_sym___attribute__, - ACTIONS(7818), 1, + ACTIONS(6628), 1, anon_sym___attribute, - ACTIONS(7820), 1, + ACTIONS(6630), 1, anon_sym_LBRACK_LBRACK, - STATE(6154), 2, + STATE(4045), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(6408), 2, + STATE(4478), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345434] = 8, + [345479] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(15247), 1, + ACTIONS(9395), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(15244), 1, + anon_sym_RPAREN, + STATE(3233), 1, + sym_parameter_list, + STATE(8475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345502] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7361), 1, + anon_sym_LBRACE, + ACTIONS(15039), 1, sym_identifier, - STATE(1100), 1, - sym_template_parameter_list, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [345459] = 6, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + STATE(839), 1, + sym_declaration_list, + STATE(10323), 1, + sym_nested_namespace_specifier, + STATE(10736), 1, + sym__namespace_specifier, + [345527] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7377), 1, + anon_sym_LBRACE, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + ACTIONS(15081), 1, + sym_identifier, + STATE(885), 1, + sym_declaration_list, + STATE(10456), 1, + sym_nested_namespace_specifier, + STATE(10736), 1, + sym__namespace_specifier, + [345552] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15195), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15200), 1, + anon_sym_EQ, + STATE(3755), 1, + sym_template_argument_list, + ACTIONS(9524), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [345575] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(13910), 1, anon_sym_LBRACK, - STATE(5222), 1, + STATE(4558), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8583), 1, sym__function_declarator_seq, - ACTIONS(10196), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [345480] = 8, + STATE(8437), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345598] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(171), 1, anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(15247), 1, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + ACTIONS(15246), 1, sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(9344), 1, - sym_template_parameter_list, - STATE(10302), 1, + STATE(10736), 1, + sym__namespace_specifier, + STATE(10882), 2, + sym_nested_namespace_specifier, sym_splice_specifier, - [345505] = 8, + [345621] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(15247), 1, + ACTIONS(15226), 1, sym_identifier, - STATE(1096), 1, + STATE(1099), 1, sym_template_parameter_list, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [345530] = 6, + [345646] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5222), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10200), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [345551] = 8, + ACTIONS(171), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + ACTIONS(15248), 1, + sym_identifier, + STATE(10736), 1, + sym__namespace_specifier, + STATE(11270), 2, + sym_nested_namespace_specifier, + sym_splice_specifier, + [345669] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15251), 1, + ACTIONS(15055), 1, sym_identifier, - STATE(449), 1, + STATE(667), 1, sym_declaration_list, - STATE(10330), 1, + STATE(10283), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - [345576] = 7, + [345694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(7805), 1, + anon_sym___attribute__, + ACTIONS(7807), 1, + anon_sym___attribute, + ACTIONS(7809), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(15253), 1, - anon_sym_RPAREN, - STATE(3140), 1, - sym_parameter_list, - STATE(8473), 2, + STATE(6146), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + STATE(6423), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345599] = 7, + [345715] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9395), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(15255), 1, + ACTIONS(15250), 1, anon_sym_RPAREN, - STATE(3140), 1, - sym_parameter_list, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345622] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5222), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10204), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [345643] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5222), 1, + STATE(3233), 1, sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10208), 3, - anon_sym_DOT_DOT_DOT, - anon_sym_COMMA, - anon_sym_GT2, - [345664] = 7, + STATE(8475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [345738] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9395), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(15257), 1, + ACTIONS(15252), 1, anon_sym_RPAREN, - STATE(3140), 1, + STATE(3233), 1, sym_parameter_list, - STATE(8473), 2, + STATE(8475), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345687] = 8, + [345761] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(15247), 1, + ACTIONS(15226), 1, sym_identifier, STATE(1098), 1, sym_template_parameter_list, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [345712] = 7, + [345786] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(15254), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [345805] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9395), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(15259), 1, + ACTIONS(15256), 1, anon_sym_RPAREN, - STATE(3140), 1, + STATE(3233), 1, sym_parameter_list, - STATE(8473), 2, + STATE(8475), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345735] = 8, + [345828] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, - anon_sym_LBRACE, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15261), 1, - sym_identifier, - STATE(868), 1, - sym_declaration_list, - STATE(10599), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [345760] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(15258), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [345847] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(171), 1, anon_sym_LBRACK_COLON, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15263), 1, + ACTIONS(15260), 1, sym_identifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - STATE(10961), 2, + STATE(11568), 2, sym_nested_namespace_specifier, sym_splice_specifier, - [345783] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6681), 1, - anon_sym___attribute__, - ACTIONS(6683), 1, - anon_sym___attribute, - ACTIONS(6685), 1, - anon_sym_LBRACK_LBRACK, - STATE(4251), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4587), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345804] = 8, + [345870] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - ACTIONS(15058), 1, + ACTIONS(15041), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15043), 1, anon_sym_inline, - ACTIONS(15265), 1, + ACTIONS(15262), 1, sym_identifier, - STATE(830), 1, + STATE(829), 1, sym_declaration_list, - STATE(10229), 1, + STATE(10553), 1, sym_nested_namespace_specifier, - STATE(11515), 1, + STATE(10736), 1, sym__namespace_specifier, - [345829] = 7, + [345895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(15264), 1, anon_sym_LPAREN2, - ACTIONS(15267), 1, - anon_sym_RPAREN, - STATE(3140), 1, - sym_parameter_list, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345852] = 6, + STATE(9123), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(15266), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345912] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym___attribute__, - ACTIONS(6766), 1, - anon_sym___attribute, - ACTIONS(6768), 1, - anon_sym_LBRACK_LBRACK, - STATE(4371), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(5004), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [345873] = 8, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6578), 1, + anon_sym_LT, + ACTIONS(15226), 1, + sym_identifier, + STATE(1094), 1, + sym_template_parameter_list, + STATE(3700), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [345937] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(15058), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15062), 1, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + STATE(3747), 1, + sym_template_argument_list, + STATE(9944), 2, + sym_argument_list, + sym_initializer_list, + [345960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15270), 1, + anon_sym_COMMA, + ACTIONS(15272), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15268), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, sym_identifier, - STATE(424), 1, - sym_declaration_list, - STATE(10570), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [345898] = 4, + [345977] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15274), 1, + anon_sym_LPAREN2, + STATE(9123), 2, + sym_gnu_asm_qualifier, + aux_sym_gnu_asm_expression_repeat1, + ACTIONS(15276), 4, + anon_sym_inline, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [345994] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5182), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10266), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [346015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15269), 1, + ACTIONS(15279), 1, anon_sym_LPAREN2, - STATE(9118), 2, + STATE(9126), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345915] = 4, + [346032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15273), 1, + ACTIONS(15281), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(9123), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [345932] = 7, + [346049] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10554), 1, + ACTIONS(10497), 1, anon_sym_LBRACE, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4799), 1, + STATE(4795), 1, sym_attribute_specifier, - STATE(9337), 1, + STATE(9322), 1, sym_enumerator_list, ACTIONS(7389), 2, anon_sym_COMMA, anon_sym_GT2, - [345955] = 4, + [346072] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9333), 1, - anon_sym___attribute, - ACTIONS(15275), 1, - anon_sym_EQ, - ACTIONS(9335), 5, + STATE(8948), 1, + aux_sym_sized_type_specifier_repeat1, + ACTIONS(7248), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym___attribute__, - anon_sym_LBRACK, - [345972] = 7, + anon_sym_GT2, + ACTIONS(15037), 4, + anon_sym_signed, + anon_sym_unsigned, + anon_sym_long, + anon_sym_short, + [346089] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9395), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(15277), 1, + ACTIONS(15283), 1, anon_sym_RPAREN, - STATE(3140), 1, + STATE(3233), 1, sym_parameter_list, - STATE(8473), 2, + STATE(8475), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [345995] = 7, + [346112] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6578), 1, + anon_sym_LT, + ACTIONS(15226), 1, + sym_identifier, + STATE(1096), 1, + sym_template_parameter_list, + STATE(3700), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [346137] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, + ACTIONS(9395), 1, anon_sym_LBRACK, - ACTIONS(10817), 1, + ACTIONS(10831), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(15279), 1, + ACTIONS(15285), 1, anon_sym_RPAREN, - STATE(3140), 1, + STATE(3233), 1, sym_parameter_list, - STATE(8473), 2, + STATE(8475), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [346018] = 7, + [346160] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(10554), 1, + ACTIONS(10497), 1, anon_sym_LBRACE, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(5003), 1, + STATE(4970), 1, sym_attribute_specifier, - STATE(9341), 1, + STATE(9326), 1, sym_enumerator_list, ACTIONS(7383), 2, anon_sym_COMMA, anon_sym_GT2, - [346041] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10582), 1, - anon_sym___attribute__, - ACTIONS(10584), 1, - anon_sym___attribute, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - STATE(7950), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(8005), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [346062] = 7, + [346183] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15058), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15281), 1, - sym_identifier, - STATE(11515), 1, - sym__namespace_specifier, - STATE(11659), 2, - sym_nested_namespace_specifier, - sym_splice_specifier, - [346085] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15283), 1, - anon_sym_LPAREN2, - STATE(9149), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [346102] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, + ACTIONS(10068), 1, anon_sym_LT, - ACTIONS(15247), 1, - sym_identifier, - STATE(1095), 1, - sym_template_parameter_list, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [346127] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(171), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15285), 1, - sym_identifier, - STATE(11515), 1, - sym__namespace_specifier, - STATE(11292), 2, - sym_nested_namespace_specifier, - sym_splice_specifier, - [346150] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6646), 1, - anon_sym___attribute__, - ACTIONS(6648), 1, - anon_sym___attribute, - ACTIONS(6650), 1, - anon_sym_LBRACK_LBRACK, - STATE(4061), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4488), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [346171] = 7, + ACTIONS(15195), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15287), 1, + anon_sym_EQ, + STATE(3755), 1, + sym_template_argument_list, + ACTIONS(9492), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [346206] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9306), 1, - anon_sym_LBRACK, - ACTIONS(10817), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(15287), 1, - anon_sym_RPAREN, - STATE(3140), 1, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5182), 1, sym_parameter_list, - STATE(8473), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [346194] = 4, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10176), 3, + anon_sym_DOT_DOT_DOT, + anon_sym_COMMA, + anon_sym_GT2, + [346227] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15289), 1, anon_sym_LPAREN2, - STATE(9132), 2, + STATE(9136), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346211] = 4, + [346244] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15291), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(9123), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346228] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7884), 1, - anon_sym___attribute__, - ACTIONS(7886), 1, - anon_sym___attribute, - ACTIONS(7888), 1, - anon_sym_LBRACK_LBRACK, - STATE(6165), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(6395), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [346249] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7176), 1, - anon_sym___attribute__, - ACTIONS(7178), 1, - anon_sym___attribute, - ACTIONS(7180), 1, - anon_sym_LBRACK_LBRACK, - STATE(4483), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - STATE(4648), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [346270] = 4, + [346261] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15293), 1, anon_sym_LPAREN2, - STATE(9136), 2, + STATE(9138), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346287] = 4, + [346278] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15295), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(9123), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346304] = 4, + [346295] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15297), 1, anon_sym_LPAREN2, - STATE(9138), 2, + STATE(9140), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346321] = 4, + [346312] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15299), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(9123), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346338] = 4, + [346329] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15301), 1, anon_sym_LPAREN2, - STATE(9140), 2, + STATE(9142), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346355] = 4, + [346346] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15303), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(9123), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346372] = 4, + [346363] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15305), 1, anon_sym_LPAREN2, - STATE(9142), 2, + STATE(9144), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346389] = 4, + [346380] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15307), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(9123), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346406] = 4, + [346397] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15309), 1, anon_sym_LPAREN2, - STATE(9145), 2, + STATE(9146), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346423] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, - anon_sym_LT, - ACTIONS(15247), 1, - sym_identifier, - STATE(1094), 1, - sym_template_parameter_list, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [346448] = 4, + [346414] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15311), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(9123), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346465] = 4, + [346431] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15313), 1, anon_sym_LPAREN2, - STATE(9147), 2, + STATE(9148), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346482] = 4, + [346448] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(15315), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(9123), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346499] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7369), 1, - anon_sym_LBRACE, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15088), 1, - sym_identifier, - STATE(939), 1, - sym_declaration_list, - STATE(10428), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [346524] = 4, + [346465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15317), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - STATE(9157), 2, - sym_gnu_asm_qualifier, - aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15271), 4, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [346541] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(15319), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [346560] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - ACTIONS(15319), 3, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5182), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10223), 3, + anon_sym_DOT_DOT_DOT, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_GT2, - [346579] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15321), 1, - anon_sym_LBRACK, - ACTIONS(15323), 1, - anon_sym_EQ, - ACTIONS(15325), 1, - anon_sym_DOT, - STATE(9085), 4, - sym_subscript_designator, - sym_subscript_range_designator, - sym_field_designator, - aux_sym_initializer_pair_repeat1, - [346598] = 6, + [346486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6719), 1, + ACTIONS(6704), 1, anon_sym___attribute__, - ACTIONS(6721), 1, + ACTIONS(6706), 1, anon_sym___attribute, - ACTIONS(6723), 1, + ACTIONS(6708), 1, anon_sym_LBRACK_LBRACK, - STATE(4178), 2, + STATE(4161), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - STATE(4563), 2, + STATE(4556), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [346619] = 6, + [346507] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5222), 1, + STATE(5182), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10184), 3, + ACTIONS(10219), 3, anon_sym_DOT_DOT_DOT, anon_sym_COMMA, anon_sym_GT2, - [346640] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15154), 1, - anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(9539), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [346663] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15149), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15327), 1, - anon_sym_EQ, - STATE(3735), 1, - sym_template_argument_list, - ACTIONS(9544), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [346686] = 4, + [346528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15329), 1, + ACTIONS(15317), 1, anon_sym_LPAREN2, - STATE(9157), 2, + STATE(9119), 2, sym_gnu_asm_qualifier, aux_sym_gnu_asm_expression_repeat1, - ACTIONS(15331), 4, + ACTIONS(15266), 4, anon_sym_inline, anon_sym_volatile, anon_sym_goto, anon_sym___volatile__, - [346703] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7373), 1, - anon_sym_LBRACE, - ACTIONS(15056), 1, - sym_identifier, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - STATE(827), 1, - sym_declaration_list, - STATE(10533), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [346728] = 8, + [346545] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_LBRACE, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15074), 1, - sym_identifier, - STATE(656), 1, - sym_declaration_list, - STATE(10335), 1, - sym_nested_namespace_specifier, - STATE(11515), 1, - sym__namespace_specifier, - [346753] = 8, + ACTIONS(9395), 1, + anon_sym_LBRACK, + ACTIONS(10831), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(15319), 1, + anon_sym_RPAREN, + STATE(3233), 1, + sym_parameter_list, + STATE(8475), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [346568] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(6584), 1, + ACTIONS(6578), 1, anon_sym_LT, - ACTIONS(15247), 1, + ACTIONS(15226), 1, sym_identifier, - STATE(1097), 1, - sym_template_parameter_list, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(9329), 1, + sym_template_parameter_list, + STATE(10448), 1, sym_splice_specifier, - [346778] = 4, + [346593] = 5, ACTIONS(3), 1, sym_comment, - STATE(8968), 1, - aux_sym_sized_type_specifier_repeat1, - ACTIONS(7225), 2, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + ACTIONS(15258), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_GT2, - ACTIONS(15024), 4, - anon_sym_signed, - anon_sym_unsigned, - anon_sym_long, - anon_sym_short, - [346795] = 7, + [346612] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15334), 1, + ACTIONS(15321), 1, sym_identifier, - ACTIONS(15336), 1, - anon_sym_for, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5903), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10214), 1, + STATE(5838), 1, + sym_template_function, + STATE(10448), 1, sym_splice_specifier, - [346817] = 7, + [346634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(9633), 1, + anon_sym_LBRACK, + ACTIONS(10562), 1, + anon_sym_LT, + STATE(6069), 1, + sym_template_argument_list, + ACTIONS(9635), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [346652] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15338), 1, + ACTIONS(15323), 1, sym_identifier, - STATE(3498), 1, + STATE(4088), 1, sym_template_type, - STATE(3931), 1, - sym_template_function, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(5838), 1, + sym_template_function, + STATE(10448), 1, sym_splice_specifier, - [346839] = 3, + [346674] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15215), 1, - aux_sym_preproc_elif_token1, - ACTIONS(15213), 5, - aux_sym_preproc_if_token2, - aux_sym_preproc_else_token1, - aux_sym_preproc_elifdef_token1, - aux_sym_preproc_elifdef_token2, - sym_identifier, - [346853] = 6, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(15325), 1, + anon_sym_LBRACE, + STATE(11240), 1, + sym_trailing_return_type, + STATE(9215), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [346694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(10564), 1, anon_sym_LBRACE, - ACTIONS(13995), 1, + ACTIONS(13798), 1, anon_sym_try, - ACTIONS(15340), 1, + ACTIONS(15327), 1, anon_sym_SEMI, - ACTIONS(15342), 1, + ACTIONS(15329), 1, anon_sym_EQ, - STATE(825), 2, + STATE(3459), 2, sym_compound_statement, sym_try_statement, - [346873] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15344), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5311), 1, - sym_template_function, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [346895] = 6, + [346714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(13819), 1, + ACTIONS(13983), 1, anon_sym_try, - ACTIONS(15346), 1, + ACTIONS(15331), 1, anon_sym_SEMI, - ACTIONS(15348), 1, + ACTIONS(15333), 1, anon_sym_EQ, - STATE(3468), 2, + STATE(917), 2, sym_compound_statement, sym_try_statement, - [346915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15350), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(15352), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [346929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15012), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(15354), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [346943] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15356), 1, - sym_identifier, - STATE(2086), 1, - sym_template_type, - STATE(3931), 1, - sym_template_function, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [346965] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15358), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [346987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15360), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(15362), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [347001] = 3, + [346734] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15364), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(15366), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [347015] = 7, + ACTIONS(14651), 1, + anon_sym_LT, + ACTIONS(14866), 1, + anon_sym_LBRACK, + STATE(8845), 1, + sym_template_argument_list, + ACTIONS(14862), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [346752] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15368), 1, + ACTIONS(15335), 1, anon_sym_SEMI, - STATE(9194), 1, + STATE(9185), 1, aux_sym_field_declaration_repeat1, - STATE(10873), 1, + STATE(11032), 1, sym_attribute_specifier, - [347037] = 3, + [346774] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15370), 2, - anon_sym_RBRACE, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15337), 1, sym_identifier, - ACTIONS(15372), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [347051] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15374), 1, - anon_sym_SEMI, - STATE(9209), 1, - aux_sym_field_declaration_repeat1, - STATE(10774), 1, - sym_attribute_specifier, - [347073] = 7, + STATE(3700), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(5380), 1, + sym_template_function, + STATE(10448), 1, + sym_splice_specifier, + [346796] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15376), 1, + ACTIONS(15339), 1, anon_sym_SEMI, - STATE(9182), 1, + STATE(9188), 1, aux_sym_field_declaration_repeat1, - STATE(11010), 1, + STATE(10650), 1, sym_attribute_specifier, - [347095] = 3, + [346818] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15378), 2, - anon_sym_RBRACE, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15341), 1, sym_identifier, - ACTIONS(15380), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [347109] = 7, + STATE(3700), 1, + sym_template_type, + STATE(3987), 1, + sym_template_function, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [346840] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15382), 1, + ACTIONS(15343), 1, sym_identifier, - STATE(3739), 1, + STATE(2884), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(5558), 1, + STATE(5694), 1, sym_template_function, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [347131] = 7, + [346862] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15384), 1, + ACTIONS(15345), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(4027), 1, + STATE(3987), 1, sym_template_function, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [347153] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15386), 1, - anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(10959), 1, - sym_attribute_specifier, - [347175] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15388), 1, - anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(10853), 1, - sym_attribute_specifier, - [347197] = 6, + [346884] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(14464), 1, - anon_sym_LBRACE, - STATE(11685), 1, - sym_trailing_return_type, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [347217] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10184), 2, + ACTIONS(10241), 2, anon_sym_LBRACE, anon_sym_requires, - [347237] = 7, + [346904] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15390), 1, - anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(11581), 1, - sym_attribute_specifier, - [347259] = 6, + ACTIONS(14651), 1, + anon_sym_LT, + ACTIONS(14896), 1, + anon_sym_LBRACK, + STATE(8846), 1, + sym_template_argument_list, + ACTIONS(14894), 3, + anon_sym_RPAREN, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [346922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(958), 1, anon_sym_LBRACE, - ACTIONS(13819), 1, + ACTIONS(13916), 1, anon_sym_try, - ACTIONS(15392), 1, + ACTIONS(15347), 1, anon_sym_SEMI, - ACTIONS(15394), 1, + ACTIONS(15349), 1, anon_sym_EQ, - STATE(3482), 2, + STATE(815), 2, sym_compound_statement, sym_try_statement, - [347279] = 3, + [346942] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15396), 2, - anon_sym_RBRACE, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15351), 1, sym_identifier, - ACTIONS(15398), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [347293] = 7, + STATE(3700), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(5694), 1, + sym_template_function, + STATE(10448), 1, + sym_splice_specifier, + [346964] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15400), 1, + ACTIONS(15353), 1, anon_sym_SEMI, - STATE(9201), 1, + STATE(9278), 1, aux_sym_field_declaration_repeat1, - STATE(10950), 1, + STATE(10693), 1, sym_attribute_specifier, - [347315] = 6, + [346986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(14464), 1, - anon_sym_LBRACE, - STATE(11685), 1, - sym_trailing_return_type, - STATE(9191), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [347335] = 7, + ACTIONS(15355), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15357), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [347000] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15402), 1, + ACTIONS(15359), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(3931), 1, + STATE(3987), 1, sym_template_function, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [347357] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(15404), 1, - anon_sym_LBRACE, - STATE(10948), 1, - sym_trailing_return_type, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [347377] = 6, + [347022] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(15404), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(10948), 1, - sym_trailing_return_type, - STATE(9271), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [347397] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15406), 1, + ACTIONS(13961), 1, + anon_sym_try, + ACTIONS(15361), 1, anon_sym_SEMI, - STATE(9213), 1, - aux_sym_field_declaration_repeat1, - STATE(11083), 1, - sym_attribute_specifier, - [347419] = 7, + ACTIONS(15363), 1, + anon_sym_EQ, + STATE(396), 2, + sym_compound_statement, + sym_try_statement, + [347042] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15408), 1, + ACTIONS(15365), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(9278), 1, aux_sym_field_declaration_repeat1, - STATE(10953), 1, + STATE(11474), 1, sym_attribute_specifier, - [347441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15410), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(15412), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [347455] = 7, + [347064] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15414), 1, + ACTIONS(15367), 1, sym_identifier, - STATE(4080), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(5774), 1, + STATE(5861), 1, sym_template_function, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [347477] = 7, + [347086] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15416), 1, + ACTIONS(10560), 1, + anon_sym_LBRACE, + ACTIONS(13824), 1, + anon_sym_try, + ACTIONS(15369), 1, anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(10956), 1, - sym_attribute_specifier, - [347499] = 5, + ACTIONS(15371), 1, + anon_sym_EQ, + STATE(3247), 2, + sym_compound_statement, + sym_try_statement, + [347106] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9650), 1, - anon_sym_LBRACK, - ACTIONS(10647), 1, - anon_sym_LT, - STATE(6086), 1, - sym_template_argument_list, - ACTIONS(9652), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [347517] = 7, + STATE(10863), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [347120] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15418), 1, + ACTIONS(15373), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(9225), 1, aux_sym_field_declaration_repeat1, - STATE(10986), 1, + STATE(10636), 1, sym_attribute_specifier, - [347539] = 6, + [347142] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10204), 2, + ACTIONS(10223), 2, anon_sym_LBRACE, anon_sym_requires, - [347559] = 7, + [347162] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15375), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(3987), 1, + sym_template_function, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [347184] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1002), 1, + anon_sym_LBRACE, + ACTIONS(13979), 1, + anon_sym_try, + ACTIONS(15377), 1, + anon_sym_SEMI, + ACTIONS(15379), 1, + anon_sym_EQ, + STATE(738), 2, + sym_compound_statement, + sym_try_statement, + [347204] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15420), 1, + ACTIONS(15381), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(9278), 1, aux_sym_field_declaration_repeat1, - STATE(10999), 1, + STATE(10823), 1, sym_attribute_specifier, - [347581] = 3, + [347226] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(15424), 2, - anon_sym_COLON_COLON, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15422), 4, - anon_sym_virtual, + ACTIONS(15383), 1, sym_identifier, - anon_sym_decltype, - anon_sym_template, - [347595] = 7, + STATE(4088), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(5838), 1, + sym_template_function, + STATE(10448), 1, + sym_splice_specifier, + [347248] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15426), 1, + ACTIONS(15385), 1, sym_identifier, - STATE(3739), 1, + STATE(2686), 1, sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(5694), 1, + sym_template_function, + STATE(10448), 1, sym_splice_specifier, - [347617] = 7, + [347270] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15428), 1, + ACTIONS(15387), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(9278), 1, aux_sym_field_declaration_repeat1, - STATE(11117), 1, + STATE(10964), 1, sym_attribute_specifier, - [347639] = 7, + [347292] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15430), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15389), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(3848), 1, + sym_template_function, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [347314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10639), 1, + anon_sym_LBRACE, + ACTIONS(13787), 1, + anon_sym_try, + ACTIONS(15391), 1, anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(11189), 1, - sym_attribute_specifier, - [347661] = 7, + ACTIONS(15393), 1, + anon_sym_EQ, + STATE(2820), 2, + sym_compound_statement, + sym_try_statement, + [347334] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15432), 1, + ACTIONS(15395), 1, sym_identifier, - STATE(3739), 1, + STATE(3535), 1, sym_template_type, - STATE(3931), 1, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, sym_template_function, - STATE(5426), 1, + STATE(10448), 1, + sym_splice_specifier, + [347356] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15397), 1, + sym_identifier, + STATE(2587), 1, + sym_template_type, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(5838), 1, + sym_template_function, + STATE(10448), 1, sym_splice_specifier, - [347683] = 7, + [347378] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15434), 1, + ACTIONS(15399), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(4027), 1, + STATE(3987), 1, sym_template_function, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [347705] = 7, + [347400] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15436), 1, + ACTIONS(15401), 1, sym_identifier, - STATE(3739), 1, + STATE(2884), 1, sym_template_type, - STATE(4027), 1, + STATE(3848), 1, sym_template_function, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [347727] = 7, + [347422] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15438), 1, - anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(10816), 1, - sym_attribute_specifier, - [347749] = 6, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15403), 1, + sym_identifier, + STATE(2547), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(5861), 1, + sym_template_function, + STATE(10448), 1, + sym_splice_specifier, + [347444] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15405), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(3987), 1, + sym_template_function, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [347466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(10560), 1, anon_sym_LBRACE, - ACTIONS(14083), 1, + ACTIONS(13824), 1, anon_sym_try, - ACTIONS(15440), 1, + ACTIONS(15407), 1, anon_sym_SEMI, - ACTIONS(15442), 1, + ACTIONS(15409), 1, anon_sym_EQ, - STATE(712), 2, + STATE(3283), 2, sym_compound_statement, sym_try_statement, - [347769] = 6, + [347486] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15401), 1, + sym_identifier, + STATE(3535), 1, + sym_template_type, + STATE(3848), 1, + sym_template_function, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [347508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5625), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10227), 2, anon_sym_LBRACE, - ACTIONS(13807), 1, - anon_sym_try, - ACTIONS(15444), 1, - anon_sym_SEMI, - ACTIONS(15446), 1, - anon_sym_EQ, - STATE(3346), 2, - sym_compound_statement, - sym_try_statement, - [347789] = 3, + anon_sym_requires, + [347528] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15396), 2, + ACTIONS(15411), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(15398), 4, + ACTIONS(15413), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [347803] = 7, + [347542] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15448), 1, - anon_sym_SEMI, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - STATE(11192), 1, - sym_attribute_specifier, - [347825] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10580), 1, - anon_sym_LBRACE, - ACTIONS(13833), 1, - anon_sym_try, - ACTIONS(15450), 1, - anon_sym_SEMI, - ACTIONS(15452), 1, - anon_sym_EQ, - STATE(2840), 2, - sym_compound_statement, - sym_try_statement, - [347845] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10196), 2, + ACTIONS(10219), 2, anon_sym_LBRACE, anon_sym_requires, - [347865] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15454), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5558), 1, - sym_template_function, - STATE(10302), 1, - sym_splice_specifier, - [347887] = 7, + [347562] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15456), 1, + ACTIONS(15415), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(9261), 1, aux_sym_field_declaration_repeat1, - STATE(11176), 1, + STATE(11027), 1, sym_attribute_specifier, - [347909] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10580), 1, - anon_sym_LBRACE, - ACTIONS(13833), 1, - anon_sym_try, - ACTIONS(15458), 1, - anon_sym_SEMI, - ACTIONS(15460), 1, - anon_sym_EQ, - STATE(2739), 2, - sym_compound_statement, - sym_try_statement, - [347929] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(14287), 1, - anon_sym_LBRACE, - STATE(10657), 1, - sym_trailing_return_type, - STATE(9183), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [347949] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15462), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(8595), 1, - sym_template_function, - STATE(10302), 1, - sym_splice_specifier, - [347971] = 7, + [347584] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15464), 1, + ACTIONS(15417), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(9247), 1, aux_sym_field_declaration_repeat1, - STATE(11155), 1, + STATE(10717), 1, sym_attribute_specifier, - [347993] = 7, + [347606] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15466), 1, + ACTIONS(15419), 1, sym_identifier, - STATE(3739), 1, + STATE(2097), 1, sym_template_type, - STATE(4027), 1, + STATE(3848), 1, sym_template_function, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [348015] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15468), 1, - sym_identifier, - STATE(2736), 1, - sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(5558), 1, - sym_template_function, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [348037] = 6, + [347628] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10208), 2, + ACTIONS(10260), 2, anon_sym_LBRACE, anon_sym_requires, - [348057] = 7, + [347648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(14459), 1, + anon_sym_LBRACE, + STATE(11057), 1, + sym_trailing_return_type, + STATE(9249), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [347668] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15470), 1, + ACTIONS(15421), 1, anon_sym_SEMI, - STATE(9204), 1, + STATE(9221), 1, aux_sym_field_declaration_repeat1, - STATE(10943), 1, + STATE(11269), 1, sym_attribute_specifier, - [348079] = 6, + [347690] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5697), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10200), 2, - anon_sym_LBRACE, - anon_sym_requires, - [348099] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15423), 1, + anon_sym_SEMI, + STATE(9223), 1, + aux_sym_field_declaration_repeat1, + STATE(11303), 1, + sym_attribute_specifier, + [347712] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15425), 1, + anon_sym_SEMI, + STATE(9278), 1, + aux_sym_field_declaration_repeat1, + STATE(11314), 1, + sym_attribute_specifier, + [347734] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15472), 1, + ACTIONS(15427), 1, sym_identifier, - STATE(2736), 1, + ACTIONS(15429), 1, + anon_sym_for, + STATE(3700), 1, sym_template_type, - STATE(3931), 1, - sym_template_function, - STATE(5426), 1, + STATE(5883), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10285), 1, sym_splice_specifier, - [348121] = 7, + [347756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(15431), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15433), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [347770] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15474), 1, + ACTIONS(15435), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(5926), 1, + STATE(5694), 1, sym_template_function, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [348143] = 6, + [347792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(14260), 1, + anon_sym_LBRACE, + STATE(10808), 1, + sym_trailing_return_type, + STATE(9236), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [347812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10564), 1, anon_sym_LBRACE, - ACTIONS(13951), 1, + ACTIONS(13798), 1, anon_sym_try, - ACTIONS(15476), 1, + ACTIONS(15437), 1, anon_sym_SEMI, - ACTIONS(15478), 1, + ACTIONS(15439), 1, anon_sym_EQ, - STATE(443), 2, + STATE(3254), 2, sym_compound_statement, sym_try_statement, - [348163] = 7, + [347832] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(15441), 1, + anon_sym_LBRACE, + STATE(10801), 1, + sym_trailing_return_type, + STATE(7970), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [347852] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15443), 1, + anon_sym_SEMI, + STATE(9232), 1, + aux_sym_field_declaration_repeat1, + STATE(11364), 1, + sym_attribute_specifier, + [347874] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15338), 1, + ACTIONS(15445), 1, sym_identifier, - STATE(2736), 1, + STATE(3700), 1, sym_template_type, - STATE(3931), 1, - sym_template_function, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(8535), 1, + sym_template_function, + STATE(10448), 1, sym_splice_specifier, - [348185] = 7, + [347896] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15447), 1, + anon_sym_SEMI, + STATE(9278), 1, + aux_sym_field_declaration_repeat1, + STATE(11223), 1, + sym_attribute_specifier, + [347918] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15480), 1, + ACTIONS(15449), 1, sym_identifier, - STATE(3739), 1, + STATE(2884), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(5774), 1, + STATE(5380), 1, sym_template_function, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [348207] = 7, + [347940] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15482), 1, - sym_identifier, - STATE(2736), 1, - sym_template_type, - STATE(5311), 1, - sym_template_function, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [348229] = 7, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(14892), 1, + anon_sym_decltype, + ACTIONS(15451), 1, + sym_auto, + STATE(4819), 1, + sym_decltype_auto, + ACTIONS(7248), 2, + anon_sym_COMMA, + anon_sym_GT2, + [347960] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15484), 1, + ACTIONS(15453), 1, anon_sym_SEMI, - STATE(9239), 1, + STATE(9278), 1, aux_sym_field_declaration_repeat1, - STATE(10732), 1, + STATE(11379), 1, sym_attribute_specifier, - [348251] = 6, + [347982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(13995), 1, + ACTIONS(13983), 1, anon_sym_try, - ACTIONS(15486), 1, + ACTIONS(15455), 1, anon_sym_SEMI, - ACTIONS(15488), 1, + ACTIONS(15457), 1, anon_sym_EQ, - STATE(790), 2, + STATE(931), 2, sym_compound_statement, sym_try_statement, - [348271] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14660), 1, - anon_sym_LT, - ACTIONS(14861), 1, - anon_sym_LBRACK, - STATE(8837), 1, - sym_template_argument_list, - ACTIONS(14857), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [348289] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14660), 1, - anon_sym_LT, - ACTIONS(14895), 1, - anon_sym_LBRACK, - STATE(8854), 1, - sym_template_argument_list, - ACTIONS(14893), 3, - anon_sym_RPAREN, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [348307] = 7, + [348002] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6592), 1, - anon_sym_for, - ACTIONS(15334), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5903), 1, - sym__splice_specialization_specifier, - STATE(10214), 1, - sym_splice_specifier, - [348329] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15459), 1, + anon_sym_SEMI, + STATE(9278), 1, + aux_sym_field_declaration_repeat1, + STATE(11380), 1, + sym_attribute_specifier, + [348024] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15490), 1, + ACTIONS(15461), 1, anon_sym_SEMI, - STATE(9197), 1, + STATE(9278), 1, aux_sym_field_declaration_repeat1, - STATE(10877), 1, + STATE(11718), 1, sym_attribute_specifier, - [348351] = 7, + [348046] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15492), 1, + ACTIONS(15463), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(9278), 1, aux_sym_field_declaration_repeat1, - STATE(11005), 1, + STATE(11384), 1, sym_attribute_specifier, - [348373] = 5, + [348068] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(9650), 1, - anon_sym_LBRACK, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(6086), 1, - sym_template_argument_list, - ACTIONS(9652), 3, - anon_sym_LPAREN2, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15465), 1, anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [348391] = 7, + STATE(9278), 1, + aux_sym_field_declaration_repeat1, + STATE(10625), 1, + sym_attribute_specifier, + [348090] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15494), 1, + ACTIONS(15467), 1, sym_identifier, - STATE(4080), 1, + STATE(2884), 1, sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5774), 1, + STATE(3848), 1, sym_template_function, - STATE(10302), 1, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, sym_splice_specifier, - [348413] = 7, + [348112] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(958), 1, + anon_sym_LBRACE, + ACTIONS(13916), 1, + anon_sym_try, + ACTIONS(15469), 1, + anon_sym_SEMI, + ACTIONS(15471), 1, + anon_sym_EQ, + STATE(790), 2, + sym_compound_statement, + sym_try_statement, + [348132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15473), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15475), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [348146] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12091), 1, + ACTIONS(12083), 1, anon_sym_COMMA, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15496), 1, + ACTIONS(15477), 1, anon_sym_SEMI, - STATE(9282), 1, + STATE(9278), 1, aux_sym_field_declaration_repeat1, - STATE(10897), 1, + STATE(11409), 1, sym_attribute_specifier, - [348435] = 6, + [348168] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + STATE(5625), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + ACTIONS(10231), 2, anon_sym_LBRACE, - ACTIONS(13987), 1, - anon_sym_try, - ACTIONS(15498), 1, - anon_sym_SEMI, - ACTIONS(15500), 1, - anon_sym_EQ, - STATE(883), 2, - sym_compound_statement, - sym_try_statement, - [348455] = 6, + anon_sym_requires, + [348188] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_LBRACE, - ACTIONS(13951), 1, - anon_sym_try, - ACTIONS(15502), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15479), 1, anon_sym_SEMI, - ACTIONS(15504), 1, - anon_sym_EQ, - STATE(418), 2, - sym_compound_statement, - sym_try_statement, - [348475] = 7, + STATE(9278), 1, + aux_sym_field_declaration_repeat1, + STATE(11414), 1, + sym_attribute_specifier, + [348210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15506), 1, + ACTIONS(15481), 2, + anon_sym_RBRACE, sym_identifier, - STATE(2682), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5558), 1, - sym_template_function, - STATE(10302), 1, - sym_splice_specifier, - [348497] = 7, + ACTIONS(15483), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [348224] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15508), 1, + ACTIONS(15485), 1, sym_identifier, - STATE(2466), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5558), 1, + STATE(3987), 1, sym_template_function, - STATE(10302), 1, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, sym_splice_specifier, - [348519] = 7, + [348246] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15510), 1, + ACTIONS(15487), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(3931), 1, + STATE(3987), 1, sym_template_function, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [348541] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12091), 1, - anon_sym_COMMA, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15512), 1, - anon_sym_SEMI, - STATE(9221), 1, - aux_sym_field_declaration_repeat1, - STATE(10951), 1, - sym_attribute_specifier, - [348563] = 7, + [348268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15514), 1, - sym_identifier, - STATE(3498), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5926), 1, - sym_template_function, - STATE(10302), 1, - sym_splice_specifier, - [348585] = 6, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(14459), 1, + anon_sym_LBRACE, + STATE(11057), 1, + sym_trailing_return_type, + STATE(7970), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [348288] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10188), 2, + ACTIONS(10266), 2, anon_sym_LBRACE, anon_sym_requires, - [348605] = 6, + [348308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - STATE(5697), 1, + STATE(5625), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - ACTIONS(10192), 2, + ACTIONS(10176), 2, anon_sym_LBRACE, anon_sym_requires, - [348625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15410), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(15412), 4, - aux_sym_preproc_if_token1, - aux_sym_preproc_ifdef_token1, - aux_sym_preproc_ifdef_token2, - sym_preproc_directive, - [348639] = 7, + [348328] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15334), 1, + ACTIONS(15489), 1, sym_identifier, - ACTIONS(15516), 1, - anon_sym_for, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5903), 1, + STATE(3987), 1, + sym_template_function, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10214), 1, + STATE(10448), 1, sym_splice_specifier, - [348661] = 7, + [348350] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(6588), 1, + ACTIONS(6584), 1, anon_sym_for, - ACTIONS(15334), 1, + ACTIONS(15427), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5903), 1, + STATE(5883), 1, sym__splice_specialization_specifier, - STATE(10214), 1, + STATE(10285), 1, sym_splice_specifier, - [348683] = 7, + [348372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6590), 1, - anon_sym_for, - ACTIONS(15334), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5903), 1, - sym__splice_specialization_specifier, - STATE(10214), 1, - sym_splice_specifier, - [348705] = 3, + ACTIONS(10639), 1, + anon_sym_LBRACE, + ACTIONS(13787), 1, + anon_sym_try, + ACTIONS(15491), 1, + anon_sym_SEMI, + ACTIONS(15493), 1, + anon_sym_EQ, + STATE(2807), 2, + sym_compound_statement, + sym_try_statement, + [348392] = 7, ACTIONS(3), 1, sym_comment, - STATE(10690), 1, - sym_string_literal, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [348719] = 3, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15495), 1, + anon_sym_SEMI, + STATE(9226), 1, + aux_sym_field_declaration_repeat1, + STATE(10955), 1, + sym_attribute_specifier, + [348414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15518), 2, + ACTIONS(15473), 2, anon_sym_RBRACE, sym_identifier, - ACTIONS(15520), 4, + ACTIONS(15475), 4, aux_sym_preproc_if_token1, aux_sym_preproc_ifdef_token1, aux_sym_preproc_ifdef_token2, sym_preproc_directive, - [348733] = 7, + [348428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(6636), 1, - anon_sym_for, - ACTIONS(15334), 1, + ACTIONS(15497), 2, + anon_sym_RBRACE, sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5903), 1, - sym__splice_specialization_specifier, - STATE(10214), 1, - sym_splice_specifier, - [348755] = 7, + ACTIONS(15499), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [348442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(15481), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15483), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [348456] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15522), 1, + ACTIONS(15501), 1, sym_identifier, - STATE(2553), 1, + STATE(2454), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(5774), 1, + STATE(5694), 1, sym_template_function, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [348777] = 3, + [348478] = 7, ACTIONS(3), 1, sym_comment, - STATE(10903), 1, - sym_string_literal, - ACTIONS(123), 5, - anon_sym_L_DQUOTE, - anon_sym_u_DQUOTE, - anon_sym_U_DQUOTE, - anon_sym_u8_DQUOTE, - anon_sym_DQUOTE, - [348791] = 7, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15503), 1, + anon_sym_SEMI, + STATE(9278), 1, + aux_sym_field_declaration_repeat1, + STATE(11509), 1, + sym_attribute_specifier, + [348500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15524), 1, + ACTIONS(14973), 2, + anon_sym_RBRACE, sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [348813] = 6, + ACTIONS(15505), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [348514] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8286), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(15325), 1, + anon_sym_LBRACE, + STATE(11240), 1, + sym_trailing_return_type, + STATE(7970), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [348534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15507), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15509), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [348548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15209), 1, + aux_sym_preproc_elif_token1, + ACTIONS(15207), 5, + aux_sym_preproc_if_token2, + aux_sym_preproc_else_token1, + aux_sym_preproc_elifdef_token1, + aux_sym_preproc_elifdef_token2, + sym_identifier, + [348562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15511), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(15513), 4, + aux_sym_preproc_if_token1, + aux_sym_preproc_ifdef_token1, + aux_sym_preproc_ifdef_token2, + sym_preproc_directive, + [348576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(15517), 2, anon_sym_COLON_COLON, - ACTIONS(14887), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15515), 4, + anon_sym_virtual, + sym_identifier, anon_sym_decltype, - ACTIONS(15526), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 2, - anon_sym_COMMA, - anon_sym_GT2, - [348833] = 7, + anon_sym_template, + [348590] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15528), 1, + ACTIONS(15519), 1, sym_identifier, - STATE(2582), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(5926), 1, + STATE(3848), 1, sym_template_function, - STATE(10302), 1, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, sym_splice_specifier, - [348855] = 7, + [348612] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15530), 1, + ACTIONS(6600), 1, + anon_sym_for, + ACTIONS(15427), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(5883), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10285), 1, sym_splice_specifier, - [348877] = 6, + [348634] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(13987), 1, - anon_sym_try, - ACTIONS(15532), 1, - anon_sym_SEMI, - ACTIONS(15534), 1, - anon_sym_EQ, - STATE(1005), 2, - sym_compound_statement, - sym_try_statement, - [348897] = 6, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(6594), 1, + anon_sym_for, + ACTIONS(15427), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(5883), 1, + sym__splice_specialization_specifier, + STATE(10285), 1, + sym_splice_specifier, + [348656] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - ACTIONS(14083), 1, + ACTIONS(13961), 1, anon_sym_try, - ACTIONS(15536), 1, + ACTIONS(15521), 1, anon_sym_SEMI, - ACTIONS(15538), 1, + ACTIONS(15523), 1, anon_sym_EQ, - STATE(721), 2, + STATE(436), 2, sym_compound_statement, sym_try_statement, - [348917] = 7, + [348676] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15540), 1, + ACTIONS(15427), 1, sym_identifier, - STATE(3739), 1, + ACTIONS(15525), 1, + anon_sym_for, + STATE(3700), 1, sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(5883), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10285), 1, sym_splice_specifier, - [348939] = 6, + [348698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - ACTIONS(13807), 1, + ACTIONS(13979), 1, anon_sym_try, - ACTIONS(15542), 1, + ACTIONS(15527), 1, anon_sym_SEMI, - ACTIONS(15544), 1, + ACTIONS(15529), 1, anon_sym_EQ, - STATE(3369), 2, + STATE(677), 2, sym_compound_statement, sym_try_statement, - [348959] = 6, + [348718] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - STATE(5697), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - ACTIONS(10172), 2, - anon_sym_LBRACE, - anon_sym_requires, - [348979] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15546), 1, + ACTIONS(6582), 1, + anon_sym_for, + ACTIONS(15427), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(4027), 1, - sym_template_function, - STATE(5426), 1, + STATE(5883), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10285), 1, sym_splice_specifier, - [349001] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8240), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(15548), 1, - anon_sym_LBRACE, - STATE(11678), 1, - sym_trailing_return_type, - STATE(7955), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [349021] = 5, + [348740] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12083), 1, + anon_sym_COMMA, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15550), 1, + ACTIONS(15531), 1, anon_sym_SEMI, - STATE(9295), 2, + STATE(9278), 1, + aux_sym_field_declaration_repeat1, + STATE(11075), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349038] = 6, + [348762] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15552), 1, + ACTIONS(15533), 1, sym_identifier, - STATE(3498), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, + STATE(3987), 1, + sym_template_function, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [349057] = 5, + [348784] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15554), 1, - anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349074] = 5, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15535), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(3848), 1, + sym_template_function, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [348806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15556), 1, - anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349091] = 5, + STATE(10771), 1, + sym_string_literal, + ACTIONS(123), 5, + anon_sym_L_DQUOTE, + anon_sym_u_DQUOTE, + anon_sym_U_DQUOTE, + anon_sym_u8_DQUOTE, + anon_sym_DQUOTE, + [348820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15558), 1, + ACTIONS(9633), 1, + anon_sym_LBRACK, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(6069), 1, + sym_template_argument_list, + ACTIONS(9635), 3, + anon_sym_LPAREN2, anon_sym_SEMI, - STATE(9352), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349108] = 6, + anon_sym_LBRACK_LBRACK, + [348838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15560), 1, + ACTIONS(15537), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - [349127] = 5, + [348857] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15562), 1, + ACTIONS(15539), 1, anon_sym_SEMI, - STATE(9347), 2, + STATE(9402), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349144] = 6, + [348874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15564), 1, + ACTIONS(15541), 1, sym_identifier, - STATE(3739), 1, + STATE(2547), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [349163] = 6, + [348893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + STATE(5856), 1, + sym_argument_list, + STATE(7197), 1, + sym_initializer_list, + [348912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(15543), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(15545), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(15547), 1, anon_sym_EQ, - STATE(9949), 1, + STATE(9961), 1, sym_attribute, - STATE(9950), 1, + STATE(10200), 1, sym_annotation, - [349182] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15572), 1, - anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349199] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15574), 1, - anon_sym_COMMA, - ACTIONS(15579), 1, - anon_sym___attribute, - STATE(9282), 1, - aux_sym_field_declaration_repeat1, - ACTIONS(15577), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [349216] = 5, + [348931] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15581), 1, + ACTIONS(15549), 1, anon_sym_SEMI, - STATE(9316), 2, + STATE(9297), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349233] = 6, + [348948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9230), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(3899), 1, - sym_initializer_list, - [349252] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(15583), 1, - anon_sym_SEMI, - STATE(9714), 1, - sym_module_partition, - STATE(10771), 1, - sym_attribute_declaration, - [349271] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15585), 1, - sym_identifier, - STATE(2086), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [349290] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15587), 1, - sym_identifier, - STATE(2682), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [349309] = 6, + ACTIONS(14842), 1, + anon_sym_LBRACK, + ACTIONS(15551), 1, + anon_sym_RPAREN, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + [348967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5692), 1, - sym__splice_specialization_specifier, - STATE(10464), 1, - sym_splice_specifier, - [349328] = 6, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + ACTIONS(15553), 1, + anon_sym_RPAREN, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + [348986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15589), 1, + ACTIONS(15555), 1, sym_identifier, - STATE(4080), 1, + STATE(3535), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [349347] = 6, + [349005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15591), 1, - sym_identifier, - STATE(2466), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [349366] = 5, + ACTIONS(15559), 1, + anon_sym_DOT, + STATE(9275), 1, + aux_sym_module_name_repeat1, + ACTIONS(15557), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [349020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3709), 1, - sym_template_argument_list, - ACTIONS(9497), 2, - anon_sym_LPAREN2, - anon_sym_LBRACE, - [349383] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14947), 1, + anon_sym_COLON, + ACTIONS(15562), 1, + anon_sym_SEMI, + STATE(10195), 1, + sym_module_partition, + STATE(11633), 1, + sym_attribute_declaration, + [349039] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(15543), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(15545), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(15547), 1, anon_sym_EQ, - STATE(10040), 1, + STATE(10085), 1, sym_attribute, - STATE(10041), 1, + STATE(10087), 1, sym_annotation, - [349402] = 5, + [349058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, + ACTIONS(15564), 1, + anon_sym_COMMA, + ACTIONS(15569), 1, anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15593), 1, + STATE(9278), 1, + aux_sym_field_declaration_repeat1, + ACTIONS(15567), 2, anon_sym_SEMI, - STATE(9358), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349419] = 5, + anon_sym___attribute__, + [349075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9650), 1, - anon_sym_LBRACK, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(5825), 1, - sym_template_argument_list, - ACTIONS(9652), 2, - anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [349436] = 5, + ACTIONS(15001), 1, + anon_sym_COMMA, + ACTIONS(15573), 1, + anon_sym___attribute, + STATE(9335), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(15571), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [349092] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15595), 1, + ACTIONS(15575), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9411), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349453] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15597), 1, - anon_sym_COMMA, - ACTIONS(15602), 1, - anon_sym___attribute, - STATE(9296), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(15600), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [349470] = 6, + [349109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15226), 1, sym_identifier, - ACTIONS(15568), 1, - anon_sym_using, - ACTIONS(15570), 1, - anon_sym_EQ, - STATE(9708), 1, - sym_attribute, - STATE(9710), 1, - sym_annotation, - [349489] = 6, + STATE(3700), 1, + sym_template_type, + STATE(5704), 1, + sym__splice_specialization_specifier, + STATE(10618), 1, + sym_splice_specifier, + [349128] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(15543), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(15545), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(15547), 1, anon_sym_EQ, - STATE(10115), 1, + STATE(10180), 1, sym_attribute, - STATE(10116), 1, + STATE(10181), 1, sym_annotation, - [349508] = 6, + [349147] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15604), 1, + ACTIONS(15226), 1, sym_identifier, - STATE(4806), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, + STATE(3786), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10274), 1, sym_splice_specifier, - [349527] = 5, + [349166] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15606), 1, - anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [349544] = 6, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + ACTIONS(15577), 1, + anon_sym_RPAREN, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + [349185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(15543), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(15545), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(15547), 1, anon_sym_EQ, - STATE(10193), 1, + STATE(9666), 1, sym_attribute, - STATE(10194), 1, + STATE(9667), 1, sym_annotation, - [349563] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(15610), 1, - anon_sym_COLON_COLON, - STATE(10332), 1, - sym_argument_list, - ACTIONS(15608), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [349580] = 6, + [349204] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15612), 1, + ACTIONS(15579), 1, sym_identifier, - STATE(2736), 1, + STATE(3644), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [349599] = 6, + [349223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(15543), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(15545), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(15547), 1, anon_sym_EQ, - STATE(9678), 1, + STATE(9691), 1, sym_attribute, - STATE(9679), 1, + STATE(9692), 1, sym_annotation, - [349618] = 6, + [349242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15614), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [349637] = 6, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15226), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10455), 1, + sym_splice_specifier, + [349261] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(15543), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(15545), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(15547), 1, anon_sym_EQ, - STATE(9695), 1, + STATE(9709), 1, sym_attribute, - STATE(9696), 1, + STATE(9710), 1, sym_annotation, - [349656] = 5, + [349280] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15616), 1, + ACTIONS(15581), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9412), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349673] = 6, + [349297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, - sym_identifier, - ACTIONS(15568), 1, + ACTIONS(15583), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(9039), 2, anon_sym_using, - ACTIONS(15570), 1, anon_sym_EQ, - STATE(9712), 1, - sym_attribute, - STATE(9713), 1, - sym_annotation, - [349692] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [349711] = 5, + STATE(9291), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [349312] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15618), 1, + ACTIONS(15586), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349728] = 6, + [349329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15620), 1, + ACTIONS(15588), 1, sym_identifier, - STATE(4222), 1, + STATE(4999), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [349747] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(5969), 1, - sym_initializer_list, - [349766] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(15622), 1, - anon_sym_SEMI, - STATE(9901), 1, - sym_module_partition, - STATE(11137), 1, - sym_attribute_declaration, - [349785] = 5, + [349348] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15624), 1, + ACTIONS(15590), 1, anon_sym_SEMI, - STATE(9275), 2, + STATE(9292), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349802] = 5, + [349365] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15626), 1, + ACTIONS(15592), 1, anon_sym_SEMI, - STATE(9329), 2, + STATE(9059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349819] = 5, + [349382] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15226), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(5976), 1, + sym__splice_specialization_specifier, + STATE(10329), 1, + sym_splice_specifier, + [349401] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15628), 1, + ACTIONS(15594), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [349836] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15632), 1, - anon_sym_DOT, - STATE(9325), 1, - aux_sym_module_name_repeat1, - ACTIONS(15630), 3, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [349851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15634), 5, - anon_sym_LPAREN2, - anon_sym_inline, - anon_sym_volatile, - anon_sym_goto, - anon_sym___volatile__, - [349862] = 5, + [349418] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4863), 1, + STATE(4796), 1, sym_attribute_specifier, - ACTIONS(7549), 2, + ACTIONS(7493), 2, anon_sym_COMMA, anon_sym_GT2, - [349879] = 5, + [349435] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4969), 1, + STATE(4952), 1, sym_attribute_specifier, - ACTIONS(7553), 2, + ACTIONS(7497), 2, anon_sym_COMMA, anon_sym_GT2, - [349896] = 6, + [349452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15636), 1, + ACTIONS(15596), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - [349915] = 6, + [349471] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3034), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + STATE(5760), 1, + sym_initializer_list, + STATE(5813), 1, + sym_argument_list, + [349490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15638), 1, + ACTIONS(15598), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - [349934] = 5, + [349509] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4887), 1, + STATE(4976), 1, sym_attribute_specifier, - ACTIONS(7415), 2, + ACTIONS(7503), 2, anon_sym_COMMA, anon_sym_GT2, - [349951] = 5, + [349526] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4795), 1, + ACTIONS(15600), 1, + anon_sym_SEMI, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349543] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + STATE(4763), 1, sym_attribute_specifier, - ACTIONS(7429), 2, + ACTIONS(7507), 2, anon_sym_COMMA, anon_sym_GT2, - [349968] = 4, + [349560] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + ACTIONS(15602), 1, + anon_sym_RPAREN, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + [349579] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15642), 1, + ACTIONS(15606), 1, anon_sym_DOT, - STATE(9325), 1, + STATE(9380), 1, aux_sym_module_name_repeat1, - ACTIONS(15640), 3, + ACTIONS(15604), 3, anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK_LBRACK, - [349983] = 5, + [349594] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4842), 1, + STATE(4833), 1, sym_attribute_specifier, - ACTIONS(7399), 2, + ACTIONS(7513), 2, anon_sym_COMMA, anon_sym_GT2, - [350000] = 5, + [349611] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4852), 1, + STATE(4836), 1, sym_attribute_specifier, - ACTIONS(7507), 2, + ACTIONS(7517), 2, anon_sym_COMMA, anon_sym_GT2, - [350017] = 5, + [349628] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15645), 1, + ACTIONS(15608), 1, anon_sym_SEMI, - STATE(9307), 2, + STATE(9348), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350034] = 5, + [349645] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15543), 1, + sym_identifier, + ACTIONS(15545), 1, + anon_sym_using, + ACTIONS(15547), 1, + anon_sym_EQ, + STATE(10071), 1, + sym_attribute, + STATE(10097), 1, + sym_annotation, + [349664] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + ACTIONS(15610), 1, + sym_identifier, + STATE(9668), 1, + sym__namespace_specifier, + STATE(10310), 1, + sym_nested_namespace_specifier, + [349683] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15543), 1, + sym_identifier, + ACTIONS(15545), 1, + anon_sym_using, + ACTIONS(15547), 1, + anon_sym_EQ, + STATE(9712), 1, + sym_attribute, + STATE(9719), 1, + sym_annotation, + [349702] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15647), 1, + ACTIONS(15612), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350051] = 5, + [349719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - ACTIONS(15651), 1, - anon_sym_COLON_COLON, - STATE(10391), 1, - sym_argument_list, - ACTIONS(15649), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [350068] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15614), 1, + anon_sym_SEMI, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15653), 1, + ACTIONS(15616), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - [350087] = 6, + [349755] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - STATE(5537), 1, - sym_argument_list, - STATE(6093), 1, - sym_initializer_list, - [350106] = 5, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15618), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [349774] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15620), 1, + sym_identifier, + STATE(2686), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [349793] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15622), 1, + sym_identifier, + STATE(2454), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [349812] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15655), 1, - anon_sym_SEMI, - STATE(9021), 2, + STATE(4798), 1, sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [350123] = 6, + ACTIONS(7521), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349829] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(15657), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15624), 1, anon_sym_SEMI, - STATE(9838), 1, - sym_module_partition, - STATE(11607), 1, - sym_attribute_declaration, - [350142] = 5, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [349846] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(5000), 1, + STATE(4794), 1, sym_attribute_specifier, - ACTIONS(7425), 2, + ACTIONS(7525), 2, anon_sym_COMMA, anon_sym_GT2, - [350159] = 6, + [349863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15659), 1, - sym_identifier, - STATE(3498), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [350178] = 5, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + STATE(4960), 1, + sym_attribute_specifier, + ACTIONS(7529), 2, + anon_sym_COMMA, + anon_sym_GT2, + [349880] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(5027), 1, + STATE(4813), 1, sym_attribute_specifier, - ACTIONS(7433), 2, + ACTIONS(7533), 2, anon_sym_COMMA, anon_sym_GT2, - [350195] = 5, + [349897] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14612), 1, + sym_identifier, + ACTIONS(15626), 1, + aux_sym_preproc_if_token2, + STATE(9122), 1, + sym_enumerator, + STATE(9610), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(9611), 1, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [349916] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4815), 1, + STATE(5019), 1, sym_attribute_specifier, - ACTIONS(7437), 2, + ACTIONS(7541), 2, anon_sym_COMMA, anon_sym_GT2, - [350212] = 5, + [349933] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4908), 1, + STATE(4924), 1, sym_attribute_specifier, - ACTIONS(7455), 2, + ACTIONS(7483), 2, anon_sym_COMMA, anon_sym_GT2, - [350229] = 6, + [349950] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15543), 1, + sym_identifier, + ACTIONS(15545), 1, + anon_sym_using, + ACTIONS(15547), 1, + anon_sym_EQ, + STATE(10067), 1, + sym_attribute, + STATE(10070), 1, + sym_annotation, + [349969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15628), 2, + anon_sym_class, + anon_sym_typename, + STATE(10253), 3, + sym_type_parameter_declaration, + sym_variadic_type_parameter_declaration, + sym_optional_type_parameter_declaration, + [349982] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15661), 1, + ACTIONS(15630), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, + sym__function_declarator_seq, + [350001] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2394), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + STATE(3911), 1, + sym_initializer_list, + STATE(3931), 1, + sym_argument_list, + [350020] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + ACTIONS(15632), 1, + anon_sym_RPAREN, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, sym__function_declarator_seq, - [350248] = 5, + [350039] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15226), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(6965), 1, + sym__splice_specialization_specifier, + STATE(10435), 1, + sym_splice_specifier, + [350058] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4993), 1, + ACTIONS(15634), 1, + anon_sym_SEMI, + STATE(9342), 2, sym_attribute_specifier, - ACTIONS(7523), 2, + aux_sym_type_definition_repeat1, + [350075] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15636), 1, anon_sym_COMMA, - anon_sym_GT2, - [350265] = 5, + ACTIONS(15641), 1, + anon_sym___attribute, + STATE(9335), 1, + aux_sym__type_definition_declarators_repeat1, + ACTIONS(15639), 2, + anon_sym_SEMI, + anon_sym___attribute__, + [350092] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - STATE(4870), 1, + ACTIONS(15643), 1, + anon_sym_SEMI, + STATE(9059), 2, sym_attribute_specifier, - ACTIONS(7533), 2, - anon_sym_COMMA, - anon_sym_GT2, - [350282] = 5, + aux_sym_type_definition_repeat1, + [350109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14887), 1, - anon_sym_decltype, - ACTIONS(15526), 1, - sym_auto, - STATE(4812), 1, - sym_decltype_auto, - ACTIONS(7225), 2, - anon_sym_COMMA, - anon_sym_GT2, - [350299] = 3, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + STATE(3931), 1, + sym_argument_list, + STATE(5980), 1, + sym_initializer_list, + [350128] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15645), 1, + anon_sym_SEMI, + STATE(9341), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [350145] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15226), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(5883), 1, + sym__splice_specialization_specifier, + STATE(10259), 1, + sym_splice_specifier, + [350164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9633), 1, + anon_sym_LBRACK, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(5866), 1, + sym_template_argument_list, + ACTIONS(9635), 2, + anon_sym_LPAREN2, + anon_sym_LBRACK_LBRACK, + [350181] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15647), 1, + anon_sym_SEMI, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [350198] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15649), 1, + anon_sym_SEMI, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [350215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15651), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(9331), 3, + anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_or, + [350228] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2950), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + STATE(5560), 1, + sym_argument_list, + STATE(5570), 1, + sym_initializer_list, + [350247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15663), 2, - anon_sym_class, - anon_sym_typename, - STATE(10512), 3, - sym_type_parameter_declaration, - sym_variadic_type_parameter_declaration, - sym_optional_type_parameter_declaration, - [350312] = 6, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15653), 1, + anon_sym_SEMI, + STATE(9390), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [350264] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(15665), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15655), 1, anon_sym_SEMI, - STATE(9685), 1, - sym_module_partition, - STATE(11194), 1, - sym_attribute_declaration, - [350331] = 5, + STATE(9295), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [350281] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15667), 1, + ACTIONS(15657), 1, anon_sym_SEMI, - STATE(9361), 2, + STATE(9409), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350348] = 5, + [350298] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15669), 1, + ACTIONS(15659), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350365] = 5, + [350315] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15543), 1, + sym_identifier, + ACTIONS(15545), 1, + anon_sym_using, + ACTIONS(15547), 1, + anon_sym_EQ, + STATE(9826), 1, + sym_attribute, + STATE(9830), 1, + sym_annotation, + [350334] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + STATE(5813), 1, + sym_argument_list, + STATE(7381), 1, + sym_initializer_list, + [350353] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15671), 1, + ACTIONS(15661), 1, anon_sym_SEMI, - STATE(9300), 2, + STATE(9315), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350382] = 6, + [350370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, + ACTIONS(15226), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(5903), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10214), 1, + STATE(10448), 1, sym_splice_specifier, - [350401] = 6, + [350389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, + ACTIONS(15663), 1, sym_identifier, - STATE(3739), 1, + STATE(4162), 1, sym_template_type, - STATE(5556), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10340), 1, + STATE(10448), 1, sym_splice_specifier, - [350420] = 6, + [350408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, - sym_identifier, - ACTIONS(15568), 1, - anon_sym_using, - ACTIONS(15570), 1, - anon_sym_EQ, - STATE(9697), 1, - sym_attribute, - STATE(9698), 1, - sym_annotation, - [350439] = 5, + ACTIONS(9295), 1, + anon_sym_LBRACE, + ACTIONS(15651), 2, + anon_sym_AMP_AMP, + anon_sym_and, + ACTIONS(15665), 2, + anon_sym_PIPE_PIPE, + anon_sym_or, + [350423] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15673), 1, + ACTIONS(15667), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9336), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350456] = 6, + [350440] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15226), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(5714), 1, + sym__splice_specialization_specifier, + STATE(10428), 1, + sym_splice_specifier, + [350459] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + ACTIONS(15669), 1, + anon_sym_RPAREN, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + [350478] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(2982), 1, anon_sym_LBRACE, - ACTIONS(7227), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(10687), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - STATE(5537), 1, - sym_argument_list, - STATE(5538), 1, + STATE(5744), 1, sym_initializer_list, - [350475] = 4, + STATE(5856), 1, + sym_argument_list, + [350497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15675), 1, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(9075), 2, - anon_sym_using, - anon_sym_EQ, - STATE(9354), 2, + ACTIONS(14947), 1, + anon_sym_COLON, + ACTIONS(15671), 1, + anon_sym_SEMI, + STATE(10098), 1, + sym_module_partition, + STATE(11165), 1, sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [350490] = 6, + [350516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, + ACTIONS(15673), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(7012), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10536), 1, + STATE(10448), 1, sym_splice_specifier, - [350509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15678), 1, - anon_sym_SEMI, - STATE(9021), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [350526] = 6, + [350535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15680), 1, + ACTIONS(15675), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - [350545] = 5, + [350554] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15682), 1, + ACTIONS(15677), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9314), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350562] = 6, + [350571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15604), 1, + ACTIONS(15543), 1, sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [350581] = 3, + ACTIONS(15545), 1, + anon_sym_using, + ACTIONS(15547), 1, + anon_sym_EQ, + STATE(9859), 1, + sym_attribute, + STATE(9860), 1, + sym_annotation, + [350590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, - anon_sym_AMP, - ACTIONS(11731), 4, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(9182), 1, anon_sym_LPAREN2, - anon_sym_STAR, - anon_sym_AMP_AMP, - anon_sym_LBRACK, - [350594] = 5, + STATE(3931), 1, + sym_argument_list, + STATE(5980), 1, + sym_initializer_list, + [350609] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15684), 1, + ACTIONS(15679), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350611] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15686), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [350630] = 6, + [350626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, - sym_identifier, - ACTIONS(15568), 1, - anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(12285), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(12289), 1, anon_sym_EQ, - STATE(10065), 1, - sym_attribute, - STATE(10072), 1, - sym_annotation, - [350649] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, - sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5935), 1, - sym__splice_specialization_specifier, - STATE(10257), 1, - sym_splice_specifier, - [350668] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, + ACTIONS(15681), 1, sym_identifier, - STATE(3739), 1, - sym_template_type, - STATE(5903), 1, - sym__splice_specialization_specifier, - STATE(10536), 1, - sym_splice_specifier, - [350687] = 6, + ACTIONS(12287), 2, + anon_sym_COMMA, + anon_sym_GT2, + [350643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, + ACTIONS(15588), 1, sym_identifier, - STATE(3739), 1, + STATE(3700), 1, sym_template_type, - STATE(7179), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10486), 1, + STATE(10448), 1, sym_splice_specifier, - [350706] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14968), 1, - anon_sym_COLON, - ACTIONS(15688), 1, - anon_sym_SEMI, - STATE(9855), 1, - sym_module_partition, - STATE(10891), 1, - sym_attribute_declaration, - [350725] = 6, + [350662] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14968), 1, + ACTIONS(14947), 1, anon_sym_COLON, - ACTIONS(15690), 1, + ACTIONS(15683), 1, anon_sym_SEMI, - STATE(9955), 1, + STATE(10172), 1, sym_module_partition, - STATE(11616), 1, + STATE(11505), 1, sym_attribute_declaration, - [350744] = 6, + [350681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15692), 1, + ACTIONS(15685), 1, sym_identifier, - STATE(2736), 1, + STATE(3535), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [350763] = 6, + [350700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, + ACTIONS(15687), 5, + anon_sym_LPAREN2, anon_sym_inline, - ACTIONS(15694), 1, - sym_identifier, - STATE(9863), 1, - sym__namespace_specifier, - STATE(10409), 1, - sym_nested_namespace_specifier, - [350782] = 6, + anon_sym_volatile, + anon_sym_goto, + anon_sym___volatile__, + [350711] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15696), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [350801] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - ACTIONS(15698), 1, - sym_identifier, - STATE(2736), 1, - sym_template_type, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(10302), 1, - sym_splice_specifier, - [350820] = 5, + ACTIONS(15691), 1, + anon_sym_COLON_COLON, + STATE(10343), 1, + sym_argument_list, + ACTIONS(15689), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [350728] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15018), 1, + ACTIONS(14892), 1, + anon_sym_decltype, + ACTIONS(15451), 1, + sym_auto, + STATE(4819), 1, + sym_decltype_auto, + ACTIONS(7248), 2, anon_sym_COMMA, - ACTIONS(15702), 1, - anon_sym___attribute, - STATE(9296), 1, - aux_sym__type_definition_declarators_repeat1, - ACTIONS(15700), 2, - anon_sym_SEMI, - anon_sym___attribute__, - [350837] = 5, + anon_sym_GT2, + [350745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(10068), 1, anon_sym_LT, - STATE(2131), 1, + STATE(2150), 1, sym_template_argument_list, - ACTIONS(6567), 2, + ACTIONS(6561), 2, anon_sym_COMMA, anon_sym_RBRACK, - [350854] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15704), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [350873] = 5, + [350762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12303), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(12307), 1, - anon_sym_EQ, - ACTIONS(15706), 1, - sym_identifier, - ACTIONS(12305), 2, - anon_sym_COMMA, - anon_sym_GT2, - [350890] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14947), 1, + anon_sym_COLON, + ACTIONS(15693), 1, + anon_sym_SEMI, + STATE(9945), 1, + sym_module_partition, + STATE(11666), 1, + sym_attribute_declaration, + [350781] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15708), 1, + ACTIONS(15695), 1, anon_sym_SEMI, - STATE(9408), 2, + STATE(9304), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350907] = 6, + [350798] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10900), 1, + ACTIONS(9633), 1, + anon_sym_LBRACK, + ACTIONS(10325), 1, + anon_sym_LT, + STATE(6494), 1, + sym_template_argument_list, + ACTIONS(9635), 2, anon_sym_LPAREN2, - STATE(5772), 1, - sym_argument_list, - STATE(5843), 1, - sym_initializer_list, - [350926] = 5, + anon_sym_LBRACK_LBRACK, + [350815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15710), 1, - anon_sym_SEMI, - STATE(9356), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [350943] = 5, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + ACTIONS(15697), 1, + anon_sym_RPAREN, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + [350834] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15712), 1, + ACTIONS(15699), 1, anon_sym_SEMI, - STATE(9274), 2, + STATE(9365), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [350960] = 6, + [350851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15714), 1, + ACTIONS(15701), 1, sym_identifier, - STATE(3739), 1, + STATE(2884), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [350979] = 6, + [350870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(15606), 1, + anon_sym_DOT, + STATE(9275), 1, + aux_sym_module_name_repeat1, + ACTIONS(15703), 3, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + [350885] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15716), 1, + ACTIONS(15705), 1, sym_identifier, - STATE(2553), 1, + STATE(2884), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10448), 1, sym_splice_specifier, - [350998] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - STATE(5772), 1, - sym_argument_list, - STATE(7298), 1, - sym_initializer_list, - [351017] = 6, + [350904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15718), 1, + ACTIONS(15707), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - [351036] = 6, + [350923] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15720), 1, + ACTIONS(15226), 1, sym_identifier, - STATE(3614), 1, + STATE(3700), 1, sym_template_type, - STATE(5426), 1, + STATE(5883), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(10285), 1, sym_splice_specifier, - [351055] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15566), 1, - sym_identifier, - ACTIONS(15568), 1, - anon_sym_using, - ACTIONS(15570), 1, - anon_sym_EQ, - STATE(10090), 1, - sym_attribute, - STATE(10109), 1, - sym_annotation, - [351074] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14632), 1, - sym_identifier, - ACTIONS(15722), 1, - aux_sym_preproc_if_token2, - STATE(9089), 1, - sym_enumerator, - STATE(9445), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(9496), 1, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [351093] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - STATE(5862), 1, - sym_argument_list, - STATE(7380), 1, - sym_initializer_list, - [351112] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15724), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [351131] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15726), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [351150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9395), 1, - anon_sym_LBRACE, - ACTIONS(15728), 2, - anon_sym_PIPE_PIPE, - anon_sym_or, - ACTIONS(15730), 2, - anon_sym_AMP_AMP, - anon_sym_and, - [351165] = 6, + [350942] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15732), 1, + ACTIONS(15709), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - [351184] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(5969), 1, - sym_initializer_list, - [351203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15734), 1, - anon_sym_SEMI, - STATE(9418), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [351220] = 5, + [350961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15736), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14947), 1, + anon_sym_COLON, + ACTIONS(15711), 1, anon_sym_SEMI, - STATE(9310), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [351237] = 6, + STATE(10041), 1, + sym_module_partition, + STATE(10944), 1, + sym_attribute_declaration, + [350980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15566), 1, + ACTIONS(15543), 1, sym_identifier, - ACTIONS(15568), 1, + ACTIONS(15545), 1, anon_sym_using, - ACTIONS(15570), 1, + ACTIONS(15547), 1, anon_sym_EQ, - STATE(9868), 1, + STATE(9675), 1, sym_attribute, - STATE(9869), 1, + STATE(9676), 1, sym_annotation, - [351256] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2968), 1, - anon_sym_LBRACE, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - STATE(5862), 1, - sym_argument_list, - STATE(5876), 1, - sym_initializer_list, - [351275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15730), 2, - anon_sym_AMP_AMP, - anon_sym_and, - ACTIONS(9324), 3, - anon_sym_PIPE_PIPE, - anon_sym_LBRACE, - anon_sym_or, - [351288] = 6, + [350999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15738), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [351307] = 6, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15713), 1, + sym_identifier, + STATE(2097), 1, + sym_template_type, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, + sym_splice_specifier, + [351018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15740), 1, + ACTIONS(15715), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - [351326] = 6, + [351037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15742), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [351345] = 5, + ACTIONS(15719), 1, + anon_sym_COLON_COLON, + STATE(10537), 1, + sym_argument_list, + ACTIONS(15717), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [351054] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15744), 1, + ACTIONS(15721), 1, anon_sym_SEMI, - STATE(9281), 2, + STATE(9059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [351362] = 6, + [351071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15746), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [351381] = 6, + ACTIONS(15041), 1, + anon_sym_COLON_COLON, + ACTIONS(15043), 1, + anon_sym_inline, + ACTIONS(15610), 1, + sym_identifier, + STATE(9837), 1, + sym__namespace_specifier, + STATE(10261), 1, + sym_nested_namespace_specifier, + [351090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15748), 1, + ACTIONS(15723), 1, sym_identifier, - STATE(5426), 1, - sym__splice_specialization_specifier, - STATE(6692), 1, + STATE(2884), 1, sym_template_type, - STATE(10302), 1, + STATE(5298), 1, + sym__splice_specialization_specifier, + STATE(10448), 1, sym_splice_specifier, - [351400] = 5, + [351109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(43), 1, - anon_sym___attribute, - ACTIONS(12119), 1, - anon_sym___attribute__, - ACTIONS(15750), 1, - anon_sym_SEMI, - STATE(9333), 2, - sym_attribute_specifier, - aux_sym_type_definition_repeat1, - [351417] = 6, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + ACTIONS(15725), 1, + anon_sym_RPAREN, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + [351128] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, + ACTIONS(15727), 1, sym_identifier, - STATE(3739), 1, + STATE(2587), 1, sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10419), 1, + STATE(10448), 1, sym_splice_specifier, - [351436] = 5, + [351147] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15752), 1, + ACTIONS(15729), 1, anon_sym_SEMI, - STATE(9413), 2, + STATE(9321), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [351453] = 5, + [351164] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3747), 1, + sym_template_argument_list, + ACTIONS(9531), 2, + anon_sym_LPAREN2, + anon_sym_LBRACE, + [351181] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15754), 1, + ACTIONS(15731), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9406), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [351470] = 6, + [351198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - ACTIONS(14865), 1, + ACTIONS(14842), 1, anon_sym_LBRACK, - ACTIONS(15756), 1, + ACTIONS(15733), 1, anon_sym_RPAREN, - STATE(4706), 1, + STATE(4676), 1, sym_parameter_list, - STATE(8592), 1, + STATE(8558), 1, sym__function_declarator_seq, - [351489] = 6, + [351217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - ACTIONS(14865), 1, - anon_sym_LBRACK, - ACTIONS(15758), 1, - anon_sym_RPAREN, - STATE(4706), 1, - sym_parameter_list, - STATE(8592), 1, - sym__function_declarator_seq, - [351508] = 6, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(14947), 1, + anon_sym_COLON, + ACTIONS(15735), 1, + anon_sym_SEMI, + STATE(9753), 1, + sym_module_partition, + STATE(10696), 1, + sym_attribute_declaration, + [351236] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15247), 1, + ACTIONS(15737), 1, sym_identifier, - STATE(3739), 1, + STATE(4088), 1, sym_template_type, - STATE(3804), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10450), 1, + STATE(10448), 1, sym_splice_specifier, - [351527] = 4, + [351255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15632), 1, - anon_sym_DOT, - STATE(9317), 1, - aux_sym_module_name_repeat1, - ACTIONS(15760), 3, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - [351542] = 5, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + ACTIONS(15226), 1, + sym_identifier, + STATE(3700), 1, + sym_template_type, + STATE(6946), 1, + sym__splice_specialization_specifier, + STATE(10259), 1, + sym_splice_specifier, + [351274] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15762), 1, + ACTIONS(15739), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [351559] = 6, + [351291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15058), 1, - anon_sym_COLON_COLON, - ACTIONS(15060), 1, - anon_sym_inline, - ACTIONS(15694), 1, + ACTIONS(15543), 1, sym_identifier, - STATE(10049), 1, - sym__namespace_specifier, - STATE(10334), 1, - sym_nested_namespace_specifier, - [351578] = 6, + ACTIONS(15545), 1, + anon_sym_using, + ACTIONS(15547), 1, + anon_sym_EQ, + STATE(9852), 1, + sym_attribute, + STATE(9853), 1, + sym_annotation, + [351310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - ACTIONS(15764), 1, + ACTIONS(15741), 1, sym_identifier, - STATE(2582), 1, - sym_template_type, - STATE(5426), 1, + STATE(5298), 1, sym__splice_specialization_specifier, - STATE(10302), 1, + STATE(6687), 1, + sym_template_type, + STATE(10448), 1, sym_splice_specifier, - [351597] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15566), 1, - sym_identifier, - ACTIONS(15568), 1, - anon_sym_using, - ACTIONS(15570), 1, - anon_sym_EQ, - STATE(9974), 1, - sym_attribute, - STATE(9975), 1, - sym_annotation, - [351616] = 5, + [351329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9650), 1, - anon_sym_LBRACK, - ACTIONS(10320), 1, - anon_sym_LT, - STATE(6491), 1, - sym_template_argument_list, - ACTIONS(9652), 2, + ACTIONS(13775), 1, anon_sym_LPAREN2, - anon_sym_LBRACK_LBRACK, - [351633] = 5, + ACTIONS(14842), 1, + anon_sym_LBRACK, + ACTIONS(15743), 1, + anon_sym_RPAREN, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + [351348] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(12119), 1, + ACTIONS(12111), 1, anon_sym___attribute__, - ACTIONS(15766), 1, + ACTIONS(15745), 1, anon_sym_SEMI, - STATE(9021), 2, + STATE(9059), 2, sym_attribute_specifier, aux_sym_type_definition_repeat1, - [351650] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13290), 1, - anon_sym_LBRACE, - ACTIONS(15768), 1, - anon_sym_LPAREN2, - STATE(4980), 1, - sym_requirement_seq, - STATE(10367), 1, - sym_requires_parameter_list, - [351666] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15770), 1, - anon_sym_DQUOTE, - ACTIONS(15772), 1, - aux_sym_string_literal_token1, - ACTIONS(15774), 1, - sym_escape_sequence, - STATE(9439), 1, - aux_sym_string_literal_repeat1, - [351682] = 5, + [351365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(3096), 1, anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(10659), 1, anon_sym_LPAREN2, - STATE(5738), 1, - sym_initializer_list, - STATE(5807), 1, + STATE(5560), 1, sym_argument_list, - [351698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(14676), 1, - anon_sym_COLON, - STATE(9760), 1, - sym_compound_statement, - STATE(10215), 1, - sym_field_initializer_list, - [351714] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9965), 1, - anon_sym_LBRACE, - STATE(4342), 1, - sym_field_declaration_list, - STATE(10345), 1, - sym_base_class_clause, - [351730] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15778), 1, - anon_sym_GT2, - STATE(9758), 1, - aux_sym_template_argument_list_repeat1, - [351746] = 5, + STATE(6047), 1, + sym_initializer_list, + [351384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13298), 1, - anon_sym_LBRACE, - ACTIONS(15768), 1, + ACTIONS(11728), 1, + anon_sym_AMP, + ACTIONS(11730), 4, anon_sym_LPAREN2, - STATE(5137), 1, - sym_requirement_seq, - STATE(10457), 1, - sym_requires_parameter_list, - [351762] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9965), 1, - anon_sym_LBRACE, - STATE(4377), 1, - sym_field_declaration_list, - STATE(10288), 1, - sym_base_class_clause, - [351778] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(9532), 1, - sym_splice_type_specifier, - STATE(9605), 1, - sym_splice_specifier, - [351794] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15780), 1, - anon_sym_EQ, - STATE(9529), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [351808] = 4, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15782), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [351822] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(12978), 1, - anon_sym_LBRACE, - STATE(7575), 1, - sym_field_declaration_list, - STATE(10360), 1, - sym_base_class_clause, - [351838] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15786), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [351854] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15788), 1, - anon_sym_GT2, - STATE(9908), 1, - aux_sym_template_argument_list_repeat1, - [351870] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15790), 1, - anon_sym_EQ, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [351884] = 5, + anon_sym_STAR, + anon_sym_AMP_AMP, + anon_sym_LBRACK, + [351397] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15792), 1, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15747), 1, anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [351900] = 4, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [351414] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(15794), 1, - anon_sym_COMMA, - STATE(9435), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(15797), 2, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + ACTIONS(14842), 1, + anon_sym_LBRACK, + ACTIONS(15749), 1, anon_sym_RPAREN, - anon_sym_COLON, - [351914] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(14676), 1, - anon_sym_COLON, - STATE(9980), 1, - sym_compound_statement, - STATE(10342), 1, - sym_field_initializer_list, - [351930] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(8297), 1, - anon_sym_LBRACE, - STATE(2753), 1, - sym_field_declaration_list, - STATE(10347), 1, - sym_base_class_clause, - [351946] = 5, + STATE(4676), 1, + sym_parameter_list, + STATE(8558), 1, + sym__function_declarator_seq, + [351433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - STATE(5789), 1, - sym_argument_list, - STATE(7373), 1, - sym_initializer_list, - [351962] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15799), 1, - anon_sym_DQUOTE, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [351978] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15805), 1, - anon_sym_DQUOTE, - ACTIONS(15807), 1, - aux_sym_string_literal_token1, - ACTIONS(15809), 1, - sym_escape_sequence, - STATE(9620), 1, - aux_sym_string_literal_repeat1, - [351994] = 3, + ACTIONS(43), 1, + anon_sym___attribute, + ACTIONS(12111), 1, + anon_sym___attribute__, + ACTIONS(15751), 1, + anon_sym_SEMI, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [351450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15813), 1, + ACTIONS(43), 1, anon_sym___attribute, - ACTIONS(15811), 3, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(12111), 1, anon_sym___attribute__, - [352006] = 2, + ACTIONS(15753), 1, + anon_sym_SEMI, + STATE(9059), 2, + sym_attribute_specifier, + aux_sym_type_definition_repeat1, + [351467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15815), 4, + ACTIONS(15755), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [352016] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15817), 1, - anon_sym_GT2, - STATE(9939), 1, - aux_sym_template_argument_list_repeat1, - [352032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15821), 1, - anon_sym___attribute, - ACTIONS(15819), 3, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [352044] = 5, + [351477] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14845), 1, - sym_identifier, - ACTIONS(15823), 1, - aux_sym_preproc_if_token2, - STATE(9072), 1, - aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, - sym_enumerator, - [352060] = 4, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15825), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [352074] = 5, - ACTIONS(14065), 1, + ACTIONS(3034), 1, + anon_sym_LBRACE, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + STATE(5743), 1, + sym_initializer_list, + STATE(5867), 1, + sym_argument_list, + [351493] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15757), 1, + anon_sym_DQUOTE, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(15827), 1, - anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [352090] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15829), 1, - sym_identifier, - ACTIONS(15831), 1, - anon_sym_SEMI, - ACTIONS(15833), 1, - anon_sym_COLON, - STATE(9367), 1, - sym_module_name, - [352106] = 5, + [351509] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(8180), 1, anon_sym_COLON, - ACTIONS(8503), 1, + ACTIONS(8342), 1, anon_sym_LBRACE, - STATE(3025), 1, + STATE(2855), 1, sym_field_declaration_list, - STATE(10228), 1, + STATE(10509), 1, sym_base_class_clause, - [352122] = 4, + [351525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15835), 1, - anon_sym_COMMA, - STATE(9450), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(15838), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [352136] = 5, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(9443), 1, + sym_splice_specifier, + STATE(9580), 1, + sym_splice_type_specifier, + [351541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15840), 1, - anon_sym_GT2, - STATE(9995), 1, - aux_sym_template_argument_list_repeat1, - [352152] = 5, + ACTIONS(13248), 1, + anon_sym_LBRACE, + ACTIONS(15763), 1, + anon_sym_LPAREN2, + STATE(3638), 1, + sym_requirement_seq, + STATE(10208), 1, + sym_requires_parameter_list, + [351557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(15765), 1, anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15842), 1, - anon_sym_GT2, - STATE(9665), 1, - aux_sym_template_argument_list_repeat1, - [352168] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, + STATE(9419), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(15768), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(11427), 1, - anon_sym_LBRACE, - STATE(5999), 1, - sym_field_declaration_list, - STATE(10364), 1, - sym_base_class_clause, - [352184] = 4, - ACTIONS(3), 1, + [351571] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(2131), 1, - sym_template_argument_list, - ACTIONS(9652), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [352198] = 4, + ACTIONS(15770), 1, + anon_sym_DQUOTE, + ACTIONS(15772), 1, + aux_sym_string_literal_token1, + ACTIONS(15774), 1, + sym_escape_sequence, + STATE(9430), 1, + aux_sym_string_literal_repeat1, + [351587] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15844), 1, - anon_sym_using, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [352212] = 5, - ACTIONS(14065), 1, + ACTIONS(7377), 1, + anon_sym_LBRACE, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + ACTIONS(15778), 1, + anon_sym_EQ, + STATE(913), 1, + sym_declaration_list, + [351603] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15846), 1, + ACTIONS(15780), 1, anon_sym_DQUOTE, - ACTIONS(15848), 1, + ACTIONS(15782), 1, aux_sym_string_literal_token1, - ACTIONS(15850), 1, + ACTIONS(15784), 1, sym_escape_sequence, - STATE(9473), 1, + STATE(9456), 1, aux_sym_string_literal_repeat1, - [352228] = 5, - ACTIONS(14065), 1, + [351619] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15852), 1, + ACTIONS(15786), 1, anon_sym_DQUOTE, - ACTIONS(15854), 1, + ACTIONS(15788), 1, aux_sym_string_literal_token1, - ACTIONS(15856), 1, + ACTIONS(15790), 1, sym_escape_sequence, - STATE(9500), 1, + STATE(9446), 1, aux_sym_string_literal_repeat1, - [352244] = 4, - ACTIONS(14065), 1, + [351635] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15858), 1, + ACTIONS(15792), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(9427), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(15794), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [352258] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15860), 1, - anon_sym_DQUOTE, - ACTIONS(15862), 1, - aux_sym_string_literal_token1, - ACTIONS(15864), 1, - sym_escape_sequence, - STATE(9497), 1, - aux_sym_string_literal_repeat1, - [352274] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15866), 1, - anon_sym___except, - ACTIONS(15868), 1, - anon_sym___finally, - STATE(748), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [352288] = 4, + [351649] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(9752), 2, - sym_argument_list, - sym_initializer_list, - [352302] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15870), 1, - sym_identifier, - ACTIONS(15872), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [352314] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, + ACTIONS(8180), 1, anon_sym_COLON, - ACTIONS(8158), 1, + ACTIONS(8233), 1, anon_sym_LBRACE, - STATE(2697), 1, + STATE(2848), 1, sym_field_declaration_list, - STATE(10454), 1, + STATE(10443), 1, sym_base_class_clause, - [352330] = 4, - ACTIONS(14065), 1, + [351665] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(15796), 1, + anon_sym_SEMI, + ACTIONS(15798), 1, + anon_sym_noexcept, + STATE(11252), 1, + sym_trailing_return_type, + [351681] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15874), 1, + ACTIONS(15800), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(9427), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(15802), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [352344] = 5, + [351695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(15805), 1, anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15876), 1, - anon_sym_GT2, - STATE(9737), 1, - aux_sym_template_argument_list_repeat1, - [352360] = 5, + STATE(9494), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(15807), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [351709] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - STATE(5537), 1, - sym_argument_list, - STATE(5538), 1, - sym_initializer_list, - [352376] = 5, - ACTIONS(14065), 1, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(9443), 1, + sym_splice_specifier, + STATE(9538), 1, + sym_splice_type_specifier, + [351725] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(15878), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [352392] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15880), 1, - anon_sym_GT2, - STATE(9690), 1, - aux_sym_template_argument_list_repeat1, - [352408] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15882), 1, + ACTIONS(15809), 1, anon_sym_DQUOTE, - ACTIONS(15884), 1, - aux_sym_string_literal_token1, - ACTIONS(15886), 1, - sym_escape_sequence, - STATE(9547), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [352424] = 5, + [351741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(2394), 1, anon_sym_LBRACE, - STATE(4731), 1, - sym_field_declaration_list, - STATE(10444), 1, - sym_base_class_clause, - [352440] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15888), 1, - anon_sym_DQUOTE, - ACTIONS(15890), 1, - aux_sym_string_literal_token1, - ACTIONS(15892), 1, - sym_escape_sequence, - STATE(9467), 1, - aux_sym_string_literal_repeat1, - [352456] = 5, - ACTIONS(3), 1, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + STATE(3911), 1, + sym_initializer_list, + STATE(3931), 1, + sym_argument_list, + [351757] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(15894), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [352472] = 5, - ACTIONS(14065), 1, + ACTIONS(15811), 1, + aux_sym_preproc_include_token2, + ACTIONS(15813), 1, + anon_sym_LPAREN, + ACTIONS(15815), 1, + sym_preproc_arg, + STATE(10267), 1, + sym_preproc_params, + [351773] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(15896), 1, + ACTIONS(15817), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [352488] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14632), 1, - sym_identifier, - ACTIONS(15898), 1, - aux_sym_preproc_if_token2, - STATE(9496), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [352502] = 5, - ACTIONS(14065), 1, + [351789] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15900), 1, + ACTIONS(15819), 1, anon_sym_DQUOTE, - ACTIONS(15902), 1, + ACTIONS(15821), 1, aux_sym_string_literal_token1, - ACTIONS(15904), 1, + ACTIONS(15823), 1, sym_escape_sequence, - STATE(9559), 1, + STATE(9488), 1, aux_sym_string_literal_repeat1, - [352518] = 5, + [351805] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7355), 1, anon_sym_LBRACE, - ACTIONS(15906), 1, + ACTIONS(15776), 1, anon_sym_COLON_COLON, - ACTIONS(15908), 1, + ACTIONS(15825), 1, anon_sym_EQ, - STATE(435), 1, + STATE(402), 1, sym_declaration_list, - [352534] = 5, - ACTIONS(14065), 1, + [351821] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15910), 1, - aux_sym_preproc_include_token2, - ACTIONS(15912), 1, - anon_sym_LPAREN, - ACTIONS(15914), 1, - sym_preproc_arg, - STATE(10529), 1, - sym_preproc_params, - [352550] = 5, + ACTIONS(15827), 1, + anon_sym_SQUOTE, + STATE(9427), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15794), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [351835] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13268), 1, + ACTIONS(13339), 1, anon_sym_LBRACE, - ACTIONS(15768), 1, + ACTIONS(15763), 1, anon_sym_LPAREN2, - STATE(5671), 1, + STATE(6432), 1, sym_requirement_seq, - STATE(10366), 1, + STATE(10238), 1, sym_requires_parameter_list, - [352566] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(12978), 1, - anon_sym_LBRACE, - STATE(7571), 1, - sym_field_declaration_list, - STATE(10624), 1, - sym_base_class_clause, - [352582] = 4, + [351851] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15916), 1, + ACTIONS(15805), 1, anon_sym_COMMA, - STATE(9606), 1, + STATE(9428), 1, aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(15918), 2, + ACTIONS(15829), 2, anon_sym_RPAREN, anon_sym_COLON, - [352596] = 5, + [351865] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15831), 1, + anon_sym_DQUOTE, + ACTIONS(15833), 1, + aux_sym_string_literal_token1, + ACTIONS(15836), 1, + sym_escape_sequence, + STATE(9439), 1, + aux_sym_string_literal_repeat1, + [351881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15920), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(15924), 1, - anon_sym_LBRACE, - STATE(10026), 1, - aux_sym_base_class_clause_repeat1, - [352612] = 5, + ACTIONS(15839), 1, + anon_sym___except, + ACTIONS(15841), 1, + anon_sym___finally, + STATE(374), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [351895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13348), 1, - anon_sym_LBRACE, - ACTIONS(15768), 1, - anon_sym_LPAREN2, - STATE(6649), 1, - sym_requirement_seq, - STATE(10244), 1, - sym_requires_parameter_list, - [352628] = 5, + ACTIONS(15845), 1, + anon_sym___attribute, + ACTIONS(15843), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [351907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(8180), 1, anon_sym_COLON, - ACTIONS(9314), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - STATE(7713), 1, + STATE(4384), 1, sym_field_declaration_list, - STATE(10466), 1, + STATE(10279), 1, sym_base_class_clause, - [352644] = 5, + [351923] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9314), 1, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(2048), 1, + sym_template_argument_list, + ACTIONS(7122), 2, + anon_sym_LPAREN2, anon_sym_LBRACE, - STATE(7717), 1, - sym_field_declaration_list, - STATE(10467), 1, - sym_base_class_clause, - [352660] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(15926), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [352676] = 4, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15928), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [352690] = 5, - ACTIONS(14065), 1, + [351937] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15912), 1, - anon_sym_LPAREN, - ACTIONS(15930), 1, - aux_sym_preproc_include_token2, - ACTIONS(15932), 1, - sym_preproc_arg, - STATE(10477), 1, - sym_preproc_params, - [352706] = 5, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15849), 1, + anon_sym_GT2, + STATE(9975), 1, + aux_sym_template_argument_list_repeat1, + [351953] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(9438), 1, - sym_splice_type_specifier, - STATE(9605), 1, - sym_splice_specifier, - [352722] = 5, - ACTIONS(14065), 1, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(8522), 1, + anon_sym_LBRACE, + STATE(2995), 1, + sym_field_declaration_list, + STATE(10382), 1, + sym_base_class_clause, + [351969] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(15934), 1, + ACTIONS(15851), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [352738] = 5, + [351985] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15853), 1, + anon_sym_GT2, + STATE(10020), 1, + aux_sym_template_argument_list_repeat1, + [352001] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(10911), 1, anon_sym_LPAREN2, - STATE(5807), 1, + STATE(5856), 1, sym_argument_list, - STATE(7256), 1, + STATE(7197), 1, sym_initializer_list, - [352754] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(8269), 1, - anon_sym_LBRACE, - STATE(2820), 1, - sym_field_declaration_list, - STATE(10485), 1, - sym_base_class_clause, - [352770] = 5, - ACTIONS(14065), 1, + [352017] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15936), 1, + ACTIONS(15855), 1, anon_sym_DQUOTE, - ACTIONS(15938), 1, + ACTIONS(15857), 1, aux_sym_string_literal_token1, - ACTIONS(15940), 1, + ACTIONS(15859), 1, sym_escape_sequence, - STATE(9539), 1, + STATE(9515), 1, aux_sym_string_literal_repeat1, - [352786] = 4, - ACTIONS(14065), 1, + [352033] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15942), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, + ACTIONS(15759), 1, + aux_sym_string_literal_token1, + ACTIONS(15761), 1, sym_escape_sequence, - [352800] = 4, - ACTIONS(14065), 1, + ACTIONS(15861), 1, + anon_sym_DQUOTE, + STATE(9439), 1, + aux_sym_string_literal_repeat1, + [352049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + STATE(3931), 1, + sym_argument_list, + STATE(5980), 1, + sym_initializer_list, + [352065] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15813), 1, + anon_sym_LPAREN, + ACTIONS(15863), 1, + aux_sym_preproc_include_token2, + ACTIONS(15865), 1, + sym_preproc_arg, + STATE(10422), 1, + sym_preproc_params, + [352081] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15944), 1, + ACTIONS(15867), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(9427), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(15794), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [352814] = 5, - ACTIONS(14065), 1, + [352095] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15946), 1, - anon_sym_DQUOTE, - ACTIONS(15948), 1, - aux_sym_string_literal_token1, - ACTIONS(15950), 1, - sym_escape_sequence, - STATE(9557), 1, - aux_sym_string_literal_repeat1, - [352830] = 4, + ACTIONS(15813), 1, + anon_sym_LPAREN, + ACTIONS(15869), 1, + aux_sym_preproc_include_token2, + ACTIONS(15871), 1, + sym_preproc_arg, + STATE(10309), 1, + sym_preproc_params, + [352111] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14632), 1, - sym_identifier, - ACTIONS(15952), 1, - aux_sym_preproc_if_token2, - STATE(9007), 2, - sym_enumerator, - aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, - [352844] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(15954), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [352860] = 5, - ACTIONS(14065), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15873), 1, + anon_sym_SEMI, + STATE(3755), 1, + sym_template_argument_list, + [352127] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(15956), 1, + ACTIONS(15875), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [352876] = 5, + [352143] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(15847), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(15958), 1, + ACTIONS(15877), 1, anon_sym_GT2, - STATE(9781), 1, + STATE(9740), 1, aux_sym_template_argument_list_repeat1, - [352892] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(15960), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [352908] = 4, + [352159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15962), 1, - anon_sym_EQ, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [352922] = 5, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15879), 1, + anon_sym_GT2, + STATE(9908), 1, + aux_sym_template_argument_list_repeat1, + [352175] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15768), 1, - anon_sym_LPAREN2, - ACTIONS(15964), 1, + ACTIONS(13331), 1, anon_sym_LBRACE, - STATE(3006), 1, + ACTIONS(15763), 1, + anon_sym_LPAREN2, + STATE(5060), 1, sym_requirement_seq, - STATE(10331), 1, + STATE(10421), 1, sym_requires_parameter_list, - [352938] = 4, + [352191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15966), 1, - anon_sym_using, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [352952] = 5, + ACTIONS(3034), 1, + anon_sym_LBRACE, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + STATE(5760), 1, + sym_initializer_list, + STATE(5813), 1, + sym_argument_list, + [352207] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(8180), 1, anon_sym_COLON, - ACTIONS(8297), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - STATE(2733), 1, + STATE(4641), 1, sym_field_declaration_list, - STATE(10291), 1, + STATE(10406), 1, sym_base_class_clause, - [352968] = 4, + [352223] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15881), 1, + anon_sym_SEMI, + STATE(3755), 1, + sym_template_argument_list, + [352239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15883), 1, + anon_sym_SEMI, + STATE(3755), 1, + sym_template_argument_list, + [352255] = 4, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15885), 1, + anon_sym_SQUOTE, + STATE(9427), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15794), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352269] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7363), 1, + anon_sym_LBRACE, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + ACTIONS(15887), 1, + anon_sym_EQ, + STATE(714), 1, + sym_declaration_list, + [352285] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15190), 1, + ACTIONS(15889), 1, anon_sym_EQ, - STATE(9584), 2, + STATE(9291), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [352982] = 5, - ACTIONS(14065), 1, + [352299] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(15968), 1, + ACTIONS(15893), 1, + anon_sym___attribute, + ACTIONS(15891), 3, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym___attribute__, + [352311] = 4, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15895), 1, + anon_sym_SQUOTE, + STATE(9427), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15794), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [352325] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15897), 1, anon_sym_DQUOTE, - ACTIONS(15970), 1, + ACTIONS(15899), 1, aux_sym_string_literal_token1, - ACTIONS(15972), 1, + ACTIONS(15901), 1, sym_escape_sequence, - STATE(9582), 1, + STATE(9485), 1, aux_sym_string_literal_repeat1, - [352998] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15912), 1, - anon_sym_LPAREN, - ACTIONS(15974), 1, - aux_sym_preproc_include_token2, - ACTIONS(15976), 1, - sym_preproc_arg, - STATE(10300), 1, - sym_preproc_params, - [353014] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(10069), 1, - anon_sym_LBRACE, - STATE(4718), 1, - sym_field_declaration_list, - STATE(10239), 1, - sym_base_class_clause, - [353030] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15829), 1, - sym_identifier, - ACTIONS(15978), 1, - anon_sym_SEMI, - ACTIONS(15980), 1, - anon_sym_COLON, - STATE(9285), 1, - sym_module_name, - [353046] = 5, + [352341] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13279), 1, - anon_sym_LBRACE, - ACTIONS(15768), 1, - anon_sym_LPAREN2, - STATE(5141), 1, - sym_requirement_seq, - STATE(10515), 1, - sym_requires_parameter_list, - [353062] = 5, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(9443), 1, + sym_splice_specifier, + STATE(9569), 1, + sym_splice_type_specifier, + [352357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - ACTIONS(9230), 1, + ACTIONS(9182), 1, anon_sym_LPAREN2, - STATE(3894), 1, + STATE(3823), 1, sym_argument_list, - STATE(5969), 1, + STATE(5973), 1, sym_initializer_list, - [353078] = 5, + [352373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(15903), 1, + anon_sym_COMMA, + STATE(9419), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(15905), 2, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(8503), 1, - anon_sym_LBRACE, - STATE(3036), 1, - sym_field_declaration_list, - STATE(10568), 1, - sym_base_class_clause, - [353094] = 5, - ACTIONS(14065), 1, + [352387] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15982), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15907), 1, + anon_sym_using, + STATE(9291), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [352401] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15909), 1, anon_sym_DQUOTE, - ACTIONS(15984), 1, + ACTIONS(15911), 1, aux_sym_string_literal_token1, - ACTIONS(15986), 1, + ACTIONS(15913), 1, sym_escape_sequence, - STATE(9540), 1, + STATE(9642), 1, aux_sym_string_literal_repeat1, - [353110] = 4, + [352417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15988), 1, - anon_sym_EQ, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353124] = 5, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15915), 1, + anon_sym_GT2, + STATE(9701), 1, + aux_sym_template_argument_list_repeat1, + [352433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14671), 1, + anon_sym_COLON, + STATE(9910), 1, + sym_compound_statement, + STATE(10230), 1, + sym_field_initializer_list, + [352449] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(9525), 1, - sym_splice_type_specifier, - STATE(9605), 1, + STATE(9443), 1, sym_splice_specifier, - [353140] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15135), 1, - anon_sym_EQ, - STATE(9501), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353154] = 4, + STATE(9471), 1, + sym_splice_type_specifier, + [352465] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15990), 1, - anon_sym___except, - ACTIONS(15992), 1, - anon_sym___finally, - STATE(363), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [353168] = 4, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(9311), 1, + anon_sym_LBRACE, + STATE(3844), 1, + sym_field_declaration_list, + STATE(10459), 1, + sym_base_class_clause, + [352481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15994), 1, + ACTIONS(15917), 1, anon_sym_COMMA, - STATE(9600), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(15996), 2, + STATE(9548), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(15919), 2, anon_sym_RPAREN, anon_sym_COLON, - [353182] = 5, + [352495] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15921), 1, + anon_sym_DQUOTE, + ACTIONS(15923), 1, + aux_sym_string_literal_token1, + ACTIONS(15925), 1, + sym_escape_sequence, + STATE(9629), 1, + aux_sym_string_literal_repeat1, + [352511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(15927), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15929), 1, + anon_sym_COMMA, + ACTIONS(15931), 1, anon_sym_LBRACE, - ACTIONS(14676), 1, - anon_sym_COLON, - STATE(9774), 1, - sym_compound_statement, - STATE(10287), 1, - sym_field_initializer_list, - [353198] = 4, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15998), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [353212] = 4, - ACTIONS(14065), 1, + STATE(9876), 1, + aux_sym_base_class_clause_repeat1, + [352527] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(16000), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [353226] = 4, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15933), 1, + anon_sym_SEMI, + STATE(3755), 1, + sym_template_argument_list, + [352543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16002), 1, + ACTIONS(15935), 1, + sym_identifier, + ACTIONS(15937), 3, anon_sym_COMMA, - STATE(9630), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(16004), 2, anon_sym_RPAREN, - anon_sym_COLON, - [353240] = 4, + anon_sym_GT2, + [352555] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16006), 1, + ACTIONS(15939), 1, anon_sym_EQ, - STATE(9354), 2, + STATE(9559), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [353254] = 4, + [352569] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15759), 1, + aux_sym_string_literal_token1, + ACTIONS(15761), 1, + sym_escape_sequence, + ACTIONS(15941), 1, + anon_sym_DQUOTE, + STATE(9439), 1, + aux_sym_string_literal_repeat1, + [352585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15929), 1, + anon_sym_COMMA, + ACTIONS(15943), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15945), 1, + anon_sym_LBRACE, + STATE(10191), 1, + aux_sym_base_class_clause_repeat1, + [352601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15947), 1, + anon_sym_SEMI, + STATE(3755), 1, + sym_template_argument_list, + [352617] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15759), 1, + aux_sym_string_literal_token1, + ACTIONS(15761), 1, + sym_escape_sequence, + ACTIONS(15949), 1, + anon_sym_DQUOTE, + STATE(9439), 1, + aux_sym_string_literal_repeat1, + [352633] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(15184), 1, - anon_sym_EQ, - STATE(9514), 2, + ACTIONS(15951), 1, + anon_sym_using, + STATE(9291), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [353268] = 5, + [352647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(13323), 1, anon_sym_LBRACE, - ACTIONS(9230), 1, + ACTIONS(15763), 1, anon_sym_LPAREN2, - STATE(3887), 1, - sym_initializer_list, - STATE(3892), 1, - sym_argument_list, - [353284] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15829), 1, - sym_identifier, - ACTIONS(16008), 1, - anon_sym_SEMI, - ACTIONS(16010), 1, - anon_sym_COLON, - STATE(9345), 1, - sym_module_name, - [353300] = 2, + STATE(4869), 1, + sym_requirement_seq, + STATE(10344), 1, + sym_requires_parameter_list, + [352663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15640), 4, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15953), 1, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK_LBRACK, - anon_sym_DOT, - [353310] = 5, + STATE(3755), 1, + sym_template_argument_list, + [352679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - STATE(5772), 1, - sym_argument_list, - STATE(5843), 1, - sym_initializer_list, - [353326] = 4, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15955), 1, + anon_sym_GT2, + STATE(9751), 1, + aux_sym_template_argument_list_repeat1, + [352695] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16012), 1, + ACTIONS(15957), 1, anon_sym_EQ, - STATE(9354), 2, + STATE(9565), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [353340] = 4, + [352709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15196), 1, - anon_sym_EQ, - STATE(9537), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353354] = 5, + ACTIONS(15959), 1, + anon_sym_COMMA, + STATE(9494), 1, + aux_sym_gnu_asm_output_operand_list_repeat1, + ACTIONS(15962), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [352723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16014), 1, + ACTIONS(6561), 1, anon_sym_SEMI, - STATE(3735), 1, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(2853), 1, sym_template_argument_list, - [353370] = 5, + [352739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - STATE(5780), 1, - sym_initializer_list, - STATE(5789), 1, - sym_argument_list, - [353386] = 5, + ACTIONS(15917), 1, + anon_sym_COMMA, + STATE(9479), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(15964), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [352753] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(16016), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16018), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - STATE(9740), 1, - aux_sym_base_class_clause_repeat1, - [353402] = 5, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + ACTIONS(15966), 1, + anon_sym_EQ, + STATE(794), 1, + sym_declaration_list, + [352769] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13319), 1, - anon_sym_LBRACE, - ACTIONS(15768), 1, + ACTIONS(15763), 1, anon_sym_LPAREN2, - STATE(3648), 1, + ACTIONS(15968), 1, + anon_sym_LBRACE, + STATE(8021), 1, sym_requirement_seq, - STATE(10534), 1, + STATE(10566), 1, sym_requires_parameter_list, - [353418] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7243), 1, - anon_sym_LBRACE, - ACTIONS(8156), 1, - anon_sym_COLON, - STATE(2140), 1, - sym_field_declaration_list, - STATE(10253), 1, - sym_base_class_clause, - [353434] = 5, - ACTIONS(14065), 1, + [352785] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15970), 1, + anon_sym_DQUOTE, + ACTIONS(15972), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15974), 1, sym_escape_sequence, - ACTIONS(16020), 1, - anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9529), 1, aux_sym_string_literal_repeat1, - [353450] = 4, + [352801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16022), 1, - anon_sym_EQ, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353464] = 4, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(9311), 1, + anon_sym_LBRACE, + STATE(3875), 1, + sym_field_declaration_list, + STATE(10465), 1, + sym_base_class_clause, + [352817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15168), 1, - anon_sym_EQ, - STATE(9543), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353478] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(16024), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [353494] = 5, - ACTIONS(14065), 1, + ACTIONS(2394), 1, + anon_sym_LBRACE, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + STATE(3823), 1, + sym_argument_list, + STATE(3880), 1, + sym_initializer_list, + [352833] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(16026), 1, + ACTIONS(15976), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [353510] = 5, - ACTIONS(14065), 1, + [352849] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16028), 1, + ACTIONS(15978), 1, anon_sym_DQUOTE, - ACTIONS(16030), 1, + ACTIONS(15980), 1, aux_sym_string_literal_token1, - ACTIONS(16032), 1, + ACTIONS(15982), 1, sym_escape_sequence, - STATE(9485), 1, + STATE(9514), 1, aux_sym_string_literal_repeat1, - [353526] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(14676), 1, - anon_sym_COLON, - STATE(10096), 1, - sym_compound_statement, - STATE(10238), 1, - sym_field_initializer_list, - [353542] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16034), 1, - anon_sym_EQ, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353556] = 4, + [352865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15204), 1, - anon_sym_EQ, - STATE(9548), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353570] = 4, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(16036), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [353584] = 5, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(15984), 1, + anon_sym_GT2, + STATE(10036), 1, + aux_sym_template_argument_list_repeat1, + [352881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, - anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - ACTIONS(16038), 1, - anon_sym_EQ, - STATE(1002), 1, - sym_declaration_list, - [353600] = 5, - ACTIONS(14065), 1, + ACTIONS(15986), 1, + anon_sym___except, + ACTIONS(15988), 1, + anon_sym___finally, + STATE(706), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [352895] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(16040), 1, + ACTIONS(15990), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [353616] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16042), 1, - anon_sym_EQ, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353630] = 5, + [352911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16044), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [353646] = 5, + ACTIONS(13355), 1, + anon_sym_LBRACE, + ACTIONS(15763), 1, + anon_sym_LPAREN2, + STATE(5200), 1, + sym_requirement_seq, + STATE(10234), 1, + sym_requires_parameter_list, + [352927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(8180), 1, anon_sym_COLON, - ACTIONS(9314), 1, + ACTIONS(8182), 1, anon_sym_LBRACE, - STATE(3935), 1, + STATE(2695), 1, sym_field_declaration_list, - STATE(10309), 1, + STATE(10460), 1, sym_base_class_clause, - [353662] = 5, + [352943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16046), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [353678] = 5, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(10044), 1, + anon_sym_LBRACE, + STATE(4372), 1, + sym_field_declaration_list, + STATE(10278), 1, + sym_base_class_clause, + [352959] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(15847), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16048), 1, + ACTIONS(15992), 1, anon_sym_GT2, - STATE(9789), 1, + STATE(9790), 1, aux_sym_template_argument_list_repeat1, - [353694] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(16050), 1, - anon_sym_DQUOTE, - ACTIONS(16052), 1, - aux_sym_string_literal_token1, - ACTIONS(16054), 1, - sym_escape_sequence, - STATE(9638), 1, - aux_sym_string_literal_repeat1, - [353710] = 5, - ACTIONS(14065), 1, + [352975] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16056), 1, - anon_sym_DQUOTE, - ACTIONS(16058), 1, - aux_sym_string_literal_token1, - ACTIONS(16060), 1, + ACTIONS(15994), 1, + anon_sym_SQUOTE, + STATE(9427), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15794), 2, + aux_sym_char_literal_token1, sym_escape_sequence, - STATE(9568), 1, - aux_sym_string_literal_repeat1, - [353726] = 5, + [352989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - ACTIONS(10900), 1, - anon_sym_LPAREN2, - STATE(5772), 1, - sym_argument_list, - STATE(7298), 1, - sym_initializer_list, - [353742] = 5, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(15996), 1, + anon_sym_SEMI, + STATE(3755), 1, + sym_template_argument_list, + [353005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(8180), 1, anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(8342), 1, anon_sym_LBRACE, - STATE(9327), 1, + STATE(2870), 1, sym_field_declaration_list, - STATE(10543), 1, + STATE(10240), 1, sym_base_class_clause, - [353758] = 5, - ACTIONS(14065), 1, + [353021] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(16062), 1, + ACTIONS(15998), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [353774] = 5, - ACTIONS(14065), 1, + [353037] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(16064), 1, + ACTIONS(16000), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [353790] = 5, - ACTIONS(14065), 1, + [353053] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(16066), 1, + ACTIONS(16002), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [353806] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15768), 1, - anon_sym_LPAREN2, - ACTIONS(16068), 1, - anon_sym_LBRACE, - STATE(8422), 1, - sym_requirement_seq, - STATE(10555), 1, - sym_requires_parameter_list, - [353822] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16070), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [353838] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16072), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [353854] = 4, - ACTIONS(3), 1, + [353069] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(15162), 1, - anon_sym_EQ, - STATE(9433), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [353868] = 4, - ACTIONS(14065), 1, + ACTIONS(16004), 1, + anon_sym_DQUOTE, + ACTIONS(16006), 1, + aux_sym_string_literal_token1, + ACTIONS(16008), 1, + sym_escape_sequence, + STATE(9633), 1, + aux_sym_string_literal_repeat1, + [353085] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16074), 1, + ACTIONS(16010), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(9427), 1, aux_sym_char_literal_repeat1, - ACTIONS(16076), 2, + ACTIONS(15794), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [353882] = 5, - ACTIONS(3), 1, + [353099] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(4910), 1, - anon_sym_LBRACE, - ACTIONS(10982), 1, - anon_sym_LPAREN2, - STATE(5862), 1, - sym_argument_list, - STATE(7380), 1, - sym_initializer_list, - [353898] = 5, + ACTIONS(16012), 1, + anon_sym_DQUOTE, + ACTIONS(16014), 1, + aux_sym_string_literal_token1, + ACTIONS(16016), 1, + sym_escape_sequence, + STATE(9502), 1, + aux_sym_string_literal_repeat1, + [353115] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(6567), 1, - anon_sym_SEMI, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(2846), 1, - sym_template_argument_list, - [353914] = 5, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16018), 1, + anon_sym_GT2, + STATE(9761), 1, + aux_sym_template_argument_list_repeat1, + [353131] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9314), 1, + ACTIONS(13262), 1, anon_sym_LBRACE, - STATE(3855), 1, - sym_field_declaration_list, - STATE(10265), 1, - sym_base_class_clause, - [353930] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(16079), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [353946] = 4, + ACTIONS(15763), 1, + anon_sym_LPAREN2, + STATE(5148), 1, + sym_requirement_seq, + STATE(10534), 1, + sym_requires_parameter_list, + [353147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(16081), 1, - anon_sym___except, - ACTIONS(16083), 1, - anon_sym___finally, - STATE(632), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [353960] = 5, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(9443), 1, + sym_splice_specifier, + STATE(9540), 1, + sym_splice_type_specifier, + [353163] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(8180), 1, anon_sym_COLON, - ACTIONS(8269), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - STATE(2834), 1, + STATE(7726), 1, sym_field_declaration_list, - STATE(10517), 1, + STATE(10477), 1, sym_base_class_clause, - [353976] = 4, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(16085), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [353990] = 5, + [353179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(8180), 1, anon_sym_COLON, - ACTIONS(10069), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - STATE(9338), 1, + STATE(7698), 1, sym_field_declaration_list, - STATE(10545), 1, + STATE(10479), 1, sym_base_class_clause, - [354006] = 5, + [353195] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(2950), 1, anon_sym_LBRACE, - ACTIONS(9230), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - STATE(3894), 1, + STATE(5560), 1, sym_argument_list, - STATE(5969), 1, + STATE(5570), 1, sym_initializer_list, - [354022] = 4, + [353211] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16020), 1, + anon_sym_DQUOTE, + ACTIONS(16022), 1, + aux_sym_string_literal_token1, + ACTIONS(16024), 1, + sym_escape_sequence, + STATE(9506), 1, + aux_sym_string_literal_repeat1, + [353227] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16026), 1, + anon_sym_DQUOTE, + ACTIONS(16028), 1, + aux_sym_string_literal_token1, + ACTIONS(16030), 1, + sym_escape_sequence, + STATE(9541), 1, + aux_sym_string_literal_repeat1, + [353243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16087), 1, - anon_sym_EQ, - STATE(9523), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [354036] = 5, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16032), 1, + anon_sym_GT2, + STATE(9678), 1, + aux_sym_template_argument_list_repeat1, + [353259] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15759), 1, + aux_sym_string_literal_token1, + ACTIONS(15761), 1, + sym_escape_sequence, + ACTIONS(16034), 1, + anon_sym_DQUOTE, + STATE(9439), 1, + aux_sym_string_literal_repeat1, + [353275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(16089), 1, + ACTIONS(16036), 1, + sym_identifier, + ACTIONS(16038), 1, anon_sym_SEMI, - ACTIONS(16091), 1, - anon_sym_noexcept, - STATE(11555), 1, - sym_trailing_return_type, - [354052] = 5, + ACTIONS(16040), 1, + anon_sym_COLON, + STATE(9368), 1, + sym_module_name, + [353291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(9605), 1, - sym_splice_specifier, - STATE(9651), 1, - sym_splice_type_specifier, - [354068] = 5, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(10044), 1, + anon_sym_LBRACE, + STATE(4338), 1, + sym_field_declaration_list, + STATE(10210), 1, + sym_base_class_clause, + [353307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(15847), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16093), 1, + ACTIONS(16042), 1, anon_sym_GT2, - STATE(10160), 1, + STATE(10105), 1, aux_sym_template_argument_list_repeat1, - [354084] = 5, + [353323] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(4902), 1, anon_sym_LBRACE, - ACTIONS(10982), 1, + ACTIONS(10886), 1, anon_sym_LPAREN2, - STATE(5862), 1, + STATE(5813), 1, sym_argument_list, - STATE(5876), 1, + STATE(7381), 1, sym_initializer_list, - [354100] = 5, + [353339] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(9605), 1, + STATE(9443), 1, sym_splice_specifier, - STATE(9613), 1, + STATE(9654), 1, sym_splice_type_specifier, - [354116] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15912), 1, - anon_sym_LPAREN, - ACTIONS(16095), 1, - aux_sym_preproc_include_token2, - ACTIONS(16097), 1, - sym_preproc_arg, - STATE(10559), 1, - sym_preproc_params, - [354132] = 5, + [353355] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16099), 1, - anon_sym_GT2, - STATE(9828), 1, - aux_sym_template_argument_list_repeat1, - [354148] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(16101), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [354164] = 4, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + STATE(5744), 1, + sym_initializer_list, + STATE(5856), 1, + sym_argument_list, + [353371] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(16103), 1, - anon_sym_COMMA, - STATE(9583), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(16106), 2, - anon_sym_RPAREN, + ACTIONS(16036), 1, + sym_identifier, + ACTIONS(16044), 1, + anon_sym_SEMI, + ACTIONS(16046), 1, anon_sym_COLON, - [354178] = 4, + STATE(9374), 1, + sym_module_name, + [353387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16108), 1, - anon_sym_EQ, - STATE(9354), 2, - sym_attribute_declaration, - aux_sym_attributed_declarator_repeat1, - [354192] = 5, + ACTIONS(16048), 1, + anon_sym___except, + ACTIONS(16050), 1, + anon_sym___finally, + STATE(579), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [353401] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + STATE(5809), 1, + sym_argument_list, + STATE(5899), 1, + sym_initializer_list, + [353417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(8180), 1, anon_sym_COLON, - ACTIONS(8158), 1, + ACTIONS(12844), 1, anon_sym_LBRACE, - STATE(2671), 1, + STATE(7598), 1, sym_field_declaration_list, - STATE(10351), 1, + STATE(10245), 1, sym_base_class_clause, - [354208] = 5, - ACTIONS(14065), 1, + [353433] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(16110), 1, - anon_sym_DQUOTE, - ACTIONS(16112), 1, + ACTIONS(2950), 1, + anon_sym_LBRACE, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + STATE(5602), 1, + sym_argument_list, + STATE(5604), 1, + sym_initializer_list, + [353449] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(16114), 1, + ACTIONS(15761), 1, sym_escape_sequence, - STATE(9498), 1, + ACTIONS(16052), 1, + anon_sym_DQUOTE, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [354224] = 5, + [353465] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9246), 1, + ACTIONS(13347), 1, anon_sym_LBRACE, - STATE(4385), 1, - sym_field_declaration_list, - STATE(10358), 1, - sym_base_class_clause, - [354240] = 5, + ACTIONS(15763), 1, + anon_sym_LPAREN2, + STATE(5692), 1, + sym_requirement_seq, + STATE(10342), 1, + sym_requires_parameter_list, + [353481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16116), 1, - anon_sym_GT2, - STATE(9703), 1, - aux_sym_template_argument_list_repeat1, - [354256] = 5, - ACTIONS(14065), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16054), 1, + anon_sym_EQ, + STATE(9291), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [353495] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(15813), 1, anon_sym_LPAREN, - ACTIONS(16118), 1, + ACTIONS(16056), 1, aux_sym_preproc_include_token2, - ACTIONS(16120), 1, + ACTIONS(16058), 1, sym_preproc_arg, - STATE(10255), 1, + STATE(10254), 1, sym_preproc_params, - [354272] = 3, + [353511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12299), 1, - anon_sym___attribute, - ACTIONS(12297), 3, + ACTIONS(15763), 1, + anon_sym_LPAREN2, + ACTIONS(16060), 1, + anon_sym_LBRACE, + STATE(8380), 1, + sym_requirement_seq, + STATE(10340), 1, + sym_requires_parameter_list, + [353527] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15167), 1, + anon_sym_EQ, + STATE(9466), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [353541] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + STATE(3931), 1, + sym_argument_list, + STATE(5980), 1, + sym_initializer_list, + [353557] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16062), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym___attribute__, - [354284] = 4, + STATE(9548), 1, + aux_sym_gnu_asm_input_operand_list_repeat1, + ACTIONS(16065), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [353571] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14671), 1, + anon_sym_COLON, + STATE(9995), 1, + sym_compound_statement, + STATE(10268), 1, + sym_field_initializer_list, + [353587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16122), 1, + ACTIONS(16067), 1, anon_sym___except, - ACTIONS(16124), 1, + ACTIONS(16069), 1, anon_sym___finally, - STATE(748), 2, + STATE(706), 2, sym_seh_except_clause, sym_seh_finally_clause, - [354298] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16126), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [354314] = 5, + [353601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(9605), 1, - sym_splice_specifier, - STATE(9619), 1, - sym_splice_type_specifier, - [354330] = 5, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16071), 1, + anon_sym_GT2, + STATE(9717), 1, + aux_sym_template_argument_list_repeat1, + [353617] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(15847), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16128), 1, + ACTIONS(16073), 1, anon_sym_GT2, - STATE(9796), 1, + STATE(9771), 1, aux_sym_template_argument_list_repeat1, - [354346] = 5, + [353633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16130), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [354362] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16075), 1, + anon_sym_EQ, + STATE(9291), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [353647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15193), 1, + anon_sym_EQ, + STATE(9543), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [353661] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(9490), 1, - sym_splice_type_specifier, - STATE(9605), 1, + STATE(9443), 1, sym_splice_specifier, - [354378] = 5, + STATE(9501), 1, + sym_splice_type_specifier, + [353677] = 4, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16077), 1, + anon_sym_SQUOTE, + STATE(9427), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15794), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [353691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(11561), 1, anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - STATE(5537), 1, - sym_argument_list, - STATE(6093), 1, - sym_initializer_list, - [354394] = 5, - ACTIONS(14065), 1, + STATE(5958), 1, + sym_field_declaration_list, + STATE(10289), 1, + sym_base_class_clause, + [353707] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(16132), 1, - anon_sym_DQUOTE, - ACTIONS(16134), 1, - aux_sym_string_literal_token1, - ACTIONS(16136), 1, - sym_escape_sequence, - STATE(9629), 1, - aux_sym_string_literal_repeat1, - [354410] = 5, + ACTIONS(13273), 1, + anon_sym_LBRACE, + ACTIONS(15763), 1, + anon_sym_LPAREN2, + STATE(6718), 1, + sym_requirement_seq, + STATE(10470), 1, + sym_requires_parameter_list, + [353723] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, - anon_sym_LBRACK_COLON, - STATE(3808), 1, - sym__splice_specialization_specifier, - STATE(9605), 1, - sym_splice_specifier, - STATE(9659), 1, - sym_splice_type_specifier, - [354426] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16079), 1, + anon_sym_EQ, + STATE(9291), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [353737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15994), 1, - anon_sym_COMMA, - STATE(9435), 1, - aux_sym_gnu_asm_clobber_list_repeat1, - ACTIONS(16138), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [354440] = 5, - ACTIONS(14065), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15137), 1, + anon_sym_EQ, + STATE(9553), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [353751] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(16140), 1, - anon_sym_DQUOTE, - ACTIONS(16142), 1, - aux_sym_string_literal_token1, - ACTIONS(16145), 1, - sym_escape_sequence, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [354456] = 5, + ACTIONS(16081), 1, + anon_sym___except, + ACTIONS(16083), 1, + anon_sym___finally, + STATE(613), 2, + sym_seh_except_clause, + sym_seh_finally_clause, + [353765] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - STATE(9739), 1, + STATE(9959), 1, sym_compound_statement, - STATE(10544), 1, + STATE(10518), 1, sym_field_initializer_list, - [354472] = 5, + [353781] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16085), 1, + anon_sym_DQUOTE, + ACTIONS(16087), 1, + aux_sym_string_literal_token1, + ACTIONS(16089), 1, + sym_escape_sequence, + STATE(9585), 1, + aux_sym_string_literal_repeat1, + [353797] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16148), 1, + ACTIONS(15847), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16150), 1, - anon_sym_LBRACE, - STATE(9727), 1, - aux_sym_base_class_clause_repeat1, - [354488] = 5, - ACTIONS(14065), 1, + ACTIONS(16091), 1, + anon_sym_GT2, + STATE(10063), 1, + aux_sym_template_argument_list_repeat1, + [353813] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16093), 1, + anon_sym_EQ, + STATE(9291), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [353827] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15189), 1, + anon_sym_EQ, + STATE(9572), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [353841] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16152), 1, + ACTIONS(16095), 1, anon_sym_DQUOTE, - ACTIONS(16154), 1, + ACTIONS(16097), 1, aux_sym_string_literal_token1, - ACTIONS(16156), 1, + ACTIONS(16099), 1, sym_escape_sequence, - STATE(9536), 1, + STATE(9433), 1, aux_sym_string_literal_repeat1, - [354504] = 4, + [353857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, anon_sym_LT, - STATE(2053), 1, + ACTIONS(16101), 1, + anon_sym_SEMI, + STATE(3755), 1, sym_template_argument_list, - ACTIONS(7090), 2, - anon_sym_LPAREN2, + [353873] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4914), 1, anon_sym_LBRACE, - [354518] = 4, + ACTIONS(9182), 1, + anon_sym_LPAREN2, + STATE(3823), 1, + sym_argument_list, + STATE(5973), 1, + sym_initializer_list, + [353889] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15916), 1, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + STATE(10581), 1, + sym_argument_list, + ACTIONS(16103), 2, anon_sym_COMMA, - STATE(9583), 1, - aux_sym_gnu_asm_output_operand_list_repeat1, - ACTIONS(16158), 2, - anon_sym_RPAREN, - anon_sym_COLON, - [354532] = 5, + anon_sym_RBRACK_RBRACK, + [353903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13309), 1, - anon_sym_LBRACE, - ACTIONS(15768), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(5259), 1, - sym_requirement_seq, - STATE(10473), 1, - sym_requires_parameter_list, - [354548] = 4, + STATE(10286), 1, + sym_argument_list, + ACTIONS(16105), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [353917] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(16160), 1, - anon_sym_using, - STATE(9354), 2, + ACTIONS(16107), 1, + anon_sym_EQ, + STATE(9291), 2, sym_attribute_declaration, aux_sym_attributed_declarator_repeat1, - [354562] = 5, + [353931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16162), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [354578] = 4, - ACTIONS(14065), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15173), 1, + anon_sym_EQ, + STATE(9577), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [353945] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16164), 1, - anon_sym_SQUOTE, - STATE(9564), 1, - aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, - aux_sym_char_literal_token1, + ACTIONS(15813), 1, + anon_sym_LPAREN, + ACTIONS(16109), 1, + aux_sym_preproc_include_token2, + ACTIONS(16111), 1, + sym_preproc_arg, + STATE(10222), 1, + sym_preproc_params, + [353961] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16113), 1, + anon_sym_DQUOTE, + ACTIONS(16115), 1, + aux_sym_string_literal_token1, + ACTIONS(16117), 1, sym_escape_sequence, - [354592] = 5, + STATE(9631), 1, + aux_sym_string_literal_repeat1, + [353977] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, + ACTIONS(8180), 1, anon_sym_COLON, - ACTIONS(9246), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - STATE(3917), 1, + STATE(4695), 1, sym_field_declaration_list, - STATE(10574), 1, + STATE(10423), 1, sym_base_class_clause, - [354608] = 5, + [353993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9246), 1, - anon_sym_LBRACE, - STATE(3936), 1, - sym_field_declaration_list, - STATE(10575), 1, - sym_base_class_clause, - [354624] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16119), 1, + anon_sym_EQ, + STATE(9291), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [354007] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15101), 1, + anon_sym_EQ, + STATE(9581), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [354021] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5162), 1, + anon_sym_LBRACK_COLON, + STATE(3766), 1, + sym__splice_specialization_specifier, + STATE(9443), 1, + sym_splice_specifier, + STATE(9621), 1, + sym_splice_type_specifier, + [354037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(3096), 1, anon_sym_LBRACE, - ACTIONS(9230), 1, + ACTIONS(10659), 1, anon_sym_LPAREN2, - STATE(3892), 1, + STATE(5602), 1, sym_argument_list, - STATE(5964), 1, + STATE(6061), 1, sym_initializer_list, - [354640] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(16166), 1, - anon_sym_DQUOTE, - ACTIONS(16168), 1, - aux_sym_string_literal_token1, - ACTIONS(16170), 1, - sym_escape_sequence, - STATE(9626), 1, - aux_sym_string_literal_repeat1, - [354656] = 5, + [354053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(9246), 1, - anon_sym_LBRACE, - STATE(4389), 1, - sym_field_declaration_list, - STATE(10401), 1, - sym_base_class_clause, - [354672] = 5, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16121), 1, + anon_sym_EQ, + STATE(9291), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [354067] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(16123), 4, anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - ACTIONS(16172), 1, + anon_sym_LBRACK, anon_sym_EQ, - STATE(861), 1, - sym_declaration_list, - [354688] = 5, + anon_sym_DOT, + [354077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(15847), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16174), 1, + ACTIONS(16125), 1, anon_sym_GT2, - STATE(9747), 1, + STATE(9661), 1, aux_sym_template_argument_list_repeat1, - [354704] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15912), 1, - anon_sym_LPAREN, - ACTIONS(16176), 1, - aux_sym_preproc_include_token2, - ACTIONS(16178), 1, - sym_preproc_arg, - STATE(10277), 1, - sym_preproc_params, - [354720] = 5, + [354093] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(9990), 1, anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - STATE(5569), 1, - sym_argument_list, - STATE(6057), 1, - sym_initializer_list, - [354736] = 5, - ACTIONS(14065), 1, + STATE(9309), 1, + sym_field_declaration_list, + STATE(10543), 1, + sym_base_class_clause, + [354109] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(15761), 1, sym_escape_sequence, - ACTIONS(16180), 1, + ACTIONS(16127), 1, anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [354752] = 5, - ACTIONS(3), 1, + [354125] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(2396), 1, - anon_sym_LBRACE, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - STATE(3894), 1, - sym_argument_list, - STATE(3899), 1, - sym_initializer_list, - [354768] = 5, - ACTIONS(14065), 1, + ACTIONS(16129), 1, + anon_sym_SQUOTE, + STATE(9427), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15794), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [354139] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15912), 1, + ACTIONS(15813), 1, anon_sym_LPAREN, - ACTIONS(16182), 1, + ACTIONS(16131), 1, aux_sym_preproc_include_token2, - ACTIONS(16184), 1, + ACTIONS(16133), 1, sym_preproc_arg, - STATE(10306), 1, + STATE(10221), 1, sym_preproc_params, - [354784] = 4, - ACTIONS(14065), 1, + [354155] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16186), 1, + ACTIONS(16135), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(9427), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(15794), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [354798] = 5, - ACTIONS(14065), 1, + [354169] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(16188), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [354814] = 5, + ACTIONS(4674), 1, + anon_sym_LBRACE, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + STATE(9951), 2, + sym_argument_list, + sym_initializer_list, + [354183] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15813), 1, + anon_sym_LPAREN, + ACTIONS(16137), 1, + aux_sym_preproc_include_token2, + ACTIONS(16139), 1, + sym_preproc_arg, + STATE(10229), 1, + sym_preproc_params, + [354199] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, - anon_sym_COLON_COLON, - ACTIONS(10005), 1, - anon_sym_LT, - ACTIONS(16190), 1, - anon_sym_SEMI, - STATE(3735), 1, - sym_template_argument_list, - [354830] = 5, - ACTIONS(14065), 1, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(8522), 1, + anon_sym_LBRACE, + STATE(3040), 1, + sym_field_declaration_list, + STATE(10298), 1, + sym_base_class_clause, + [354215] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(16192), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [354846] = 5, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(9990), 1, + anon_sym_LBRACE, + STATE(9323), 1, + sym_field_declaration_list, + STATE(10545), 1, + sym_base_class_clause, + [354231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(15847), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16194), 1, + ACTIONS(16141), 1, anon_sym_GT2, - STATE(9722), 1, + STATE(9779), 1, aux_sym_template_argument_list_repeat1, - [354862] = 4, + [354247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(16196), 1, - anon_sym___except, - ACTIONS(16198), 1, - anon_sym___finally, - STATE(558), 2, - sym_seh_except_clause, - sym_seh_finally_clause, - [354876] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(15801), 1, - aux_sym_string_literal_token1, - ACTIONS(15803), 1, - sym_escape_sequence, - ACTIONS(16200), 1, - anon_sym_DQUOTE, - STATE(9601), 1, - aux_sym_string_literal_repeat1, - [354892] = 4, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(12844), 1, + anon_sym_LBRACE, + STATE(7575), 1, + sym_field_declaration_list, + STATE(10614), 1, + sym_base_class_clause, + [354263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(16002), 1, - anon_sym_COMMA, - STATE(9450), 1, - aux_sym_gnu_asm_input_operand_list_repeat1, - ACTIONS(16202), 2, - anon_sym_RPAREN, + ACTIONS(7262), 1, + anon_sym_LBRACE, + ACTIONS(8180), 1, anon_sym_COLON, - [354906] = 5, + STATE(2163), 1, + sym_field_declaration_list, + STATE(10348), 1, + sym_base_class_clause, + [354279] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(15847), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16204), 1, + ACTIONS(16143), 1, anon_sym_GT2, - STATE(10088), 1, + STATE(9743), 1, aux_sym_template_argument_list_repeat1, - [354922] = 5, + [354295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(15906), 1, + ACTIONS(14671), 1, + anon_sym_COLON, + STATE(9843), 1, + sym_compound_statement, + STATE(10554), 1, + sym_field_initializer_list, + [354311] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(16206), 1, - anon_sym_EQ, - STATE(664), 1, - sym_declaration_list, - [354938] = 5, - ACTIONS(14065), 1, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(16145), 1, + anon_sym_SEMI, + STATE(3755), 1, + sym_template_argument_list, + [354327] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(16208), 1, - anon_sym_DQUOTE, - ACTIONS(16210), 1, - aux_sym_string_literal_token1, - ACTIONS(16212), 1, - sym_escape_sequence, - STATE(9447), 1, - aux_sym_string_literal_repeat1, - [354954] = 5, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(16147), 1, + anon_sym_SEMI, + STATE(3755), 1, + sym_template_argument_list, + [354343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - ACTIONS(14676), 1, + ACTIONS(8180), 1, anon_sym_COLON, - STATE(9904), 1, - sym_compound_statement, - STATE(10363), 1, - sym_field_initializer_list, - [354970] = 5, + ACTIONS(8233), 1, + anon_sym_LBRACE, + STATE(2793), 1, + sym_field_declaration_list, + STATE(10488), 1, + sym_base_class_clause, + [354359] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16149), 1, + anon_sym_GT2, + STATE(10139), 1, + aux_sym_template_argument_list_repeat1, + [354375] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - ACTIONS(14676), 1, + ACTIONS(14671), 1, anon_sym_COLON, - STATE(9894), 1, + STATE(9758), 1, sym_compound_statement, - STATE(10312), 1, + STATE(10304), 1, sym_field_initializer_list, - [354986] = 5, + [354391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8156), 1, - anon_sym_COLON, - ACTIONS(11427), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(15105), 1, + anon_sym_EQ, + STATE(9615), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [354405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3096), 1, anon_sym_LBRACE, - STATE(5938), 1, + ACTIONS(10659), 1, + anon_sym_LPAREN2, + STATE(5560), 1, + sym_argument_list, + STATE(6047), 1, + sym_initializer_list, + [354421] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7262), 1, + anon_sym_LBRACE, + ACTIONS(8180), 1, + anon_sym_COLON, + STATE(2160), 1, sym_field_declaration_list, - STATE(10442), 1, + STATE(10535), 1, sym_base_class_clause, - [355002] = 2, + [354437] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16151), 1, + anon_sym_DQUOTE, + ACTIONS(16153), 1, + aux_sym_string_literal_token1, + ACTIONS(16155), 1, + sym_escape_sequence, + STATE(9619), 1, + aux_sym_string_literal_repeat1, + [354453] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16157), 1, + anon_sym_DQUOTE, + ACTIONS(16159), 1, + aux_sym_string_literal_token1, + ACTIONS(16161), 1, + sym_escape_sequence, + STATE(9516), 1, + aux_sym_string_literal_repeat1, + [354469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15815), 4, + ACTIONS(15755), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, anon_sym_try, - [355012] = 5, - ACTIONS(14065), 1, + [354479] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(16163), 1, + anon_sym_DQUOTE, + ACTIONS(16165), 1, aux_sym_string_literal_token1, - ACTIONS(15803), 1, + ACTIONS(16167), 1, sym_escape_sequence, - ACTIONS(16214), 1, - anon_sym_DQUOTE, - STATE(9601), 1, + STATE(9450), 1, aux_sym_string_literal_repeat1, - [355028] = 4, + [354495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10441), 1, - sym_argument_list, - ACTIONS(16216), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [355042] = 5, + ACTIONS(14834), 1, + sym_identifier, + ACTIONS(16169), 1, + aux_sym_preproc_if_token2, + STATE(9070), 1, + aux_sym_preproc_if_in_enumerator_list_repeat1, + STATE(11567), 1, + sym_enumerator, + [354511] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13356), 1, - anon_sym_LBRACE, - ACTIONS(15768), 1, - anon_sym_LPAREN2, - STATE(6492), 1, - sym_requirement_seq, - STATE(10281), 1, - sym_requires_parameter_list, - [355058] = 5, + ACTIONS(14612), 1, + sym_identifier, + ACTIONS(16171), 1, + aux_sym_preproc_if_token2, + STATE(9072), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [354525] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(10068), 1, anon_sym_LT, - ACTIONS(16218), 1, + ACTIONS(16173), 1, anon_sym_SEMI, - STATE(3735), 1, + STATE(3755), 1, sym_template_argument_list, - [355074] = 5, + [354541] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14671), 1, + anon_sym_COLON, + STATE(9776), 1, + sym_compound_statement, + STATE(10550), 1, + sym_field_initializer_list, + [354557] = 4, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16175), 1, + anon_sym_SQUOTE, + STATE(9427), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15794), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [354571] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16177), 1, + anon_sym_EQ, + STATE(9291), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [354585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(15903), 1, anon_sym_COMMA, - ACTIONS(16220), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16222), 1, + STATE(9472), 1, + aux_sym_gnu_asm_clobber_list_repeat1, + ACTIONS(16179), 2, + anon_sym_RPAREN, + anon_sym_COLON, + [354599] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15557), 4, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK_LBRACK, + anon_sym_DOT, + [354609] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16181), 4, anon_sym_LBRACE, - STATE(9945), 1, - aux_sym_base_class_clause_repeat1, - [355090] = 5, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [354619] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(15759), 1, + aux_sym_string_literal_token1, + ACTIONS(15761), 1, + sym_escape_sequence, + ACTIONS(16183), 1, + anon_sym_DQUOTE, + STATE(9439), 1, + aux_sym_string_literal_repeat1, + [354635] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14845), 1, + ACTIONS(14834), 1, sym_identifier, - ACTIONS(15722), 1, + ACTIONS(15626), 1, aux_sym_preproc_if_token2, - STATE(9445), 1, + STATE(9610), 1, aux_sym_preproc_if_in_enumerator_list_repeat1, - STATE(10856), 1, + STATE(11567), 1, sym_enumerator, - [355106] = 5, + [354651] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(4902), 1, anon_sym_LBRACE, - ACTIONS(8156), 1, - anon_sym_COLON, - STATE(2158), 1, - sym_field_declaration_list, - STATE(10320), 1, - sym_base_class_clause, - [355122] = 4, + ACTIONS(10886), 1, + anon_sym_LPAREN2, + STATE(5867), 1, + sym_argument_list, + STATE(7321), 1, + sym_initializer_list, + [354667] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16224), 1, + ACTIONS(16185), 1, anon_sym___except, - ACTIONS(16226), 1, + ACTIONS(16187), 1, anon_sym___finally, - STATE(1245), 2, + STATE(1239), 2, sym_seh_except_clause, sym_seh_finally_clause, - [355136] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15768), 1, - anon_sym_LPAREN2, - ACTIONS(16228), 1, - anon_sym_LBRACE, - STATE(8018), 1, - sym_requirement_seq, - STATE(10600), 1, - sym_requires_parameter_list, - [355152] = 5, + [354681] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(15776), 1, + ACTIONS(15847), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(16230), 1, + ACTIONS(16189), 1, anon_sym_GT2, - STATE(9805), 1, + STATE(9785), 1, aux_sym_template_argument_list_repeat1, - [355168] = 5, + [354697] = 5, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16191), 1, + anon_sym_DQUOTE, + ACTIONS(16193), 1, + aux_sym_string_literal_token1, + ACTIONS(16195), 1, + sym_escape_sequence, + STATE(9639), 1, + aux_sym_string_literal_repeat1, + [354713] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5655), 1, + ACTIONS(5632), 1, anon_sym_COLON_COLON, - ACTIONS(10005), 1, + ACTIONS(10068), 1, anon_sym_LT, - ACTIONS(16232), 1, + ACTIONS(16197), 1, anon_sym_SEMI, - STATE(3735), 1, + STATE(3755), 1, sym_template_argument_list, - [355184] = 5, + [354729] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16234), 1, - anon_sym_GT2, - STATE(10129), 1, - aux_sym_template_argument_list_repeat1, - [355200] = 5, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(16236), 1, - anon_sym_DQUOTE, - ACTIONS(16238), 1, - aux_sym_string_literal_token1, - ACTIONS(16240), 1, - sym_escape_sequence, - STATE(9489), 1, - aux_sym_string_literal_repeat1, - [355216] = 5, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(9213), 1, + anon_sym_LBRACE, + STATE(3907), 1, + sym_field_declaration_list, + STATE(10571), 1, + sym_base_class_clause, + [354745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(9213), 1, anon_sym_LBRACE, - ACTIONS(10687), 1, - anon_sym_LPAREN2, - STATE(5569), 1, - sym_argument_list, - STATE(5579), 1, - sym_initializer_list, - [355232] = 5, + STATE(3915), 1, + sym_field_declaration_list, + STATE(10572), 1, + sym_base_class_clause, + [354761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16242), 1, - anon_sym_GT2, - STATE(9801), 1, - aux_sym_template_argument_list_repeat1, - [355248] = 5, - ACTIONS(3), 1, + ACTIONS(14612), 1, + sym_identifier, + ACTIONS(16199), 1, + aux_sym_preproc_if_token2, + STATE(9611), 2, + sym_enumerator, + aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, + [354775] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16244), 1, - anon_sym_GT2, - STATE(9771), 1, - aux_sym_template_argument_list_repeat1, - [355264] = 4, - ACTIONS(14065), 1, + ACTIONS(15759), 1, + aux_sym_string_literal_token1, + ACTIONS(15761), 1, + sym_escape_sequence, + ACTIONS(16201), 1, + anon_sym_DQUOTE, + STATE(9439), 1, + aux_sym_string_literal_repeat1, + [354791] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16246), 1, + ACTIONS(16203), 1, anon_sym_SQUOTE, - STATE(9564), 1, + STATE(9427), 1, aux_sym_char_literal_repeat1, - ACTIONS(15784), 2, + ACTIONS(15794), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [355278] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16248), 1, - anon_sym_GT2, - STATE(9898), 1, - aux_sym_template_argument_list_repeat1, - [355294] = 5, - ACTIONS(14065), 1, + [354805] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16250), 1, - anon_sym_DQUOTE, - ACTIONS(16252), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(16254), 1, + ACTIONS(15761), 1, sym_escape_sequence, - STATE(9558), 1, + ACTIONS(16205), 1, + anon_sym_DQUOTE, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [355310] = 4, + [354821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10513), 1, - sym_argument_list, - ACTIONS(16256), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [355324] = 5, - ACTIONS(14065), 1, + ACTIONS(16207), 4, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ, + anon_sym_DOT, + [354831] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16258), 1, - anon_sym_DQUOTE, - ACTIONS(16260), 1, + ACTIONS(15759), 1, aux_sym_string_literal_token1, - ACTIONS(16262), 1, + ACTIONS(15761), 1, sym_escape_sequence, - STATE(9624), 1, + ACTIONS(16209), 1, + anon_sym_DQUOTE, + STATE(9439), 1, aux_sym_string_literal_repeat1, - [355340] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4922), 1, - anon_sym_LBRACE, - ACTIONS(9230), 1, - anon_sym_LPAREN2, - STATE(3892), 1, - sym_argument_list, - STATE(5964), 1, - sym_initializer_list, - [355356] = 5, + [354847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5164), 1, + ACTIONS(5162), 1, anon_sym_LBRACK_COLON, - STATE(3808), 1, + STATE(3766), 1, sym__splice_specialization_specifier, - STATE(9421), 1, + STATE(9414), 1, sym_splice_type_specifier, - STATE(9605), 1, + STATE(9443), 1, sym_splice_specifier, - [355372] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16264), 1, - anon_sym_COMMA, - ACTIONS(16267), 1, - anon_sym_RPAREN, - STATE(9661), 1, - aux_sym_preproc_params_repeat1, - [355385] = 4, + [354863] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16269), 1, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(16211), 1, anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [355398] = 4, + STATE(3755), 1, + sym_template_argument_list, + [354879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(16271), 1, + ACTIONS(15929), 1, anon_sym_COMMA, - ACTIONS(16274), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [355411] = 4, + ACTIONS(16213), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16215), 1, + anon_sym_LBRACE, + STATE(9986), 1, + aux_sym_base_class_clause_repeat1, + [354895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16276), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [355424] = 4, - ACTIONS(3), 1, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(8182), 1, + anon_sym_LBRACE, + STATE(2659), 1, + sym_field_declaration_list, + STATE(10414), 1, + sym_base_class_clause, + [354911] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16278), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [355437] = 4, - ACTIONS(3), 1, + ACTIONS(16217), 1, + anon_sym_SQUOTE, + STATE(9427), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15794), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [354925] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16280), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [355450] = 3, + ACTIONS(15759), 1, + aux_sym_string_literal_token1, + ACTIONS(15761), 1, + sym_escape_sequence, + ACTIONS(16219), 1, + anon_sym_DQUOTE, + STATE(9439), 1, + aux_sym_string_literal_repeat1, + [354941] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9830), 1, - anon_sym___attribute, - ACTIONS(9832), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [355461] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + ACTIONS(14671), 1, + anon_sym_COLON, + STATE(9892), 1, + sym_compound_statement, + STATE(10336), 1, + sym_field_initializer_list, + [354957] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9768), 1, - anon_sym___attribute, - ACTIONS(9770), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [355472] = 4, - ACTIONS(3), 1, + ACTIONS(15763), 1, + anon_sym_LPAREN2, + ACTIONS(16221), 1, + anon_sym_LBRACE, + STATE(2957), 1, + sym_requirement_seq, + STATE(10576), 1, + sym_requires_parameter_list, + [354973] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(3370), 1, - anon_sym_while, - ACTIONS(16282), 1, - anon_sym_else, - STATE(597), 1, - sym_else_clause, - [355485] = 2, + ACTIONS(15759), 1, + aux_sym_string_literal_token1, + ACTIONS(15761), 1, + sym_escape_sequence, + ACTIONS(16223), 1, + anon_sym_DQUOTE, + STATE(9439), 1, + aux_sym_string_literal_repeat1, + [354989] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(16284), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [355494] = 3, + ACTIONS(5632), 1, + anon_sym_COLON_COLON, + ACTIONS(10068), 1, + anon_sym_LT, + ACTIONS(16225), 1, + anon_sym_SEMI, + STATE(3755), 1, + sym_template_argument_list, + [355005] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(9792), 1, - anon_sym___attribute, - ACTIONS(9794), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [355505] = 4, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(9213), 1, + anon_sym_LBRACE, + STATE(4380), 1, + sym_field_declaration_list, + STATE(10236), 1, + sym_base_class_clause, + [355021] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 1, - anon_sym_RBRACE, - ACTIONS(16286), 1, + ACTIONS(15929), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [355518] = 4, + ACTIONS(16227), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16229), 1, + anon_sym_LBRACE, + STATE(9682), 1, + aux_sym_base_class_clause_repeat1, + [355037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(16288), 1, - anon_sym_RPAREN, - ACTIONS(16290), 1, + ACTIONS(16036), 1, + sym_identifier, + ACTIONS(16231), 1, + anon_sym_SEMI, + ACTIONS(16233), 1, anon_sym_COLON, - STATE(9895), 1, - sym_gnu_asm_output_operand_list, - [355531] = 4, + STATE(9276), 1, + sym_module_name, + [355053] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16292), 1, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16235), 1, anon_sym_GT2, - STATE(9900), 1, + STATE(9727), 1, aux_sym_template_argument_list_repeat1, - [355544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9818), 1, - anon_sym___attribute, - ACTIONS(9820), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [355555] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(16296), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [355568] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16296), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(16298), 1, - anon_sym_COMMA, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [355581] = 4, - ACTIONS(3), 1, + [355069] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(16300), 1, - anon_sym_RBRACK_RBRACK, - STATE(9683), 1, - aux_sym_attribute_declaration_repeat1, - [355594] = 4, - ACTIONS(3), 1, + ACTIONS(16237), 1, + anon_sym_SQUOTE, + STATE(9427), 1, + aux_sym_char_literal_repeat1, + ACTIONS(15794), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [355083] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16298), 1, - anon_sym_COMMA, - ACTIONS(16300), 1, - anon_sym_RBRACK_RBRACK, - STATE(9684), 1, - aux_sym_attribute_declaration_repeat2, - [355607] = 4, + ACTIONS(15759), 1, + aux_sym_string_literal_token1, + ACTIONS(15761), 1, + sym_escape_sequence, + ACTIONS(16239), 1, + anon_sym_DQUOTE, + STATE(9439), 1, + aux_sym_string_literal_repeat1, + [355099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16302), 1, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(2150), 1, + sym_template_argument_list, + ACTIONS(9635), 2, anon_sym_COMMA, - ACTIONS(16304), 1, anon_sym_RBRACK, - STATE(9916), 1, - aux_sym_lambda_capture_specifier_repeat1, - [355620] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(12311), 1, - anon_sym_RPAREN, - STATE(9808), 1, - aux_sym_argument_list_repeat1, - [355633] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7395), 1, - anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(448), 1, - sym_declaration_list, - [355646] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(16306), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [355659] = 4, + [355113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(12293), 1, + anon_sym___attribute, + ACTIONS(12291), 3, anon_sym_COMMA, - ACTIONS(16306), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [355672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16308), 1, anon_sym_SEMI, - STATE(11196), 1, - sym_attribute_declaration, - [355685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12313), 1, - anon_sym_COMMA, - ACTIONS(12315), 1, - anon_sym_RBRACE, - STATE(9817), 1, - aux_sym_initializer_list_repeat1, - [355698] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16310), 1, - anon_sym_GT2, - STATE(9691), 1, - aux_sym_template_argument_list_repeat1, - [355711] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16312), 1, - anon_sym_COMMA, - ACTIONS(16314), 1, - anon_sym_RPAREN, - STATE(10185), 1, - aux_sym_parameter_list_repeat1, - [355724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16316), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [355737] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16318), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [355750] = 4, + anon_sym___attribute__, + [355125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16320), 1, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16241), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9795), 1, aux_sym_template_argument_list_repeat1, - [355763] = 4, - ACTIONS(3), 1, + [355141] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16322), 1, - anon_sym_SEMI, - STATE(9662), 1, - aux_sym_declaration_repeat1, - [355776] = 4, + ACTIONS(16243), 1, + anon_sym_DQUOTE, + ACTIONS(16245), 1, + aux_sym_string_literal_token1, + ACTIONS(16247), 1, + sym_escape_sequence, + STATE(9415), 1, + aux_sym_string_literal_repeat1, + [355157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(15174), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - STATE(10847), 1, - sym_requires_clause, - [355789] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12421), 1, - anon_sym_COMMA, - ACTIONS(16324), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [355802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(16326), 1, - anon_sym_RBRACK_RBRACK, - STATE(9699), 1, - aux_sym_attribute_declaration_repeat1, - [355815] = 4, + ACTIONS(10911), 1, + anon_sym_LPAREN2, + STATE(5809), 1, + sym_argument_list, + STATE(7190), 1, + sym_initializer_list, + [355173] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, - anon_sym_COMMA, - ACTIONS(16326), 1, - anon_sym_RBRACK_RBRACK, - STATE(9700), 1, - aux_sym_attribute_declaration_repeat2, - [355828] = 4, - ACTIONS(3), 1, + ACTIONS(8180), 1, + anon_sym_COLON, + ACTIONS(11561), 1, + anon_sym_LBRACE, + STATE(5974), 1, + sym_field_declaration_list, + STATE(10386), 1, + sym_base_class_clause, + [355189] = 5, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(16328), 1, - anon_sym_RBRACK_RBRACK, - STATE(9742), 1, - aux_sym_attribute_declaration_repeat1, - [355841] = 4, + ACTIONS(16249), 1, + anon_sym_DQUOTE, + ACTIONS(16251), 1, + aux_sym_string_literal_token1, + ACTIONS(16253), 1, + sym_escape_sequence, + STATE(9649), 1, + aux_sym_string_literal_repeat1, + [355205] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, - anon_sym_COMMA, - ACTIONS(16328), 1, - anon_sym_RBRACK_RBRACK, - STATE(9743), 1, - aux_sym_attribute_declaration_repeat2, - [355854] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16255), 1, + anon_sym_using, + STATE(9291), 2, + sym_attribute_declaration, + aux_sym_attributed_declarator_repeat1, + [355219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12324), 1, anon_sym_COMMA, - ACTIONS(16330), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [355867] = 4, + ACTIONS(16257), 1, + anon_sym_RBRACK, + STATE(10095), 1, + aux_sym_subscript_argument_list_repeat1, + [355232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, - anon_sym_COMMA, - ACTIONS(16330), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [355880] = 4, + ACTIONS(16259), 1, + anon_sym_RPAREN, + ACTIONS(16261), 1, + anon_sym_COLON, + STATE(11327), 1, + sym_gnu_asm_goto_list, + [355245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16332), 1, + ACTIONS(16263), 1, anon_sym_GT2, - STATE(9704), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [355893] = 4, + [355258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16334), 1, + ACTIONS(16265), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [355906] = 4, + [355271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16336), 1, + ACTIONS(16267), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [355919] = 4, + [355284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(9442), 1, anon_sym_COMMA, - ACTIONS(16338), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [355932] = 4, + ACTIONS(16269), 1, + anon_sym_RBRACK, + STATE(10168), 1, + aux_sym_structured_binding_declarator_repeat1, + [355297] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16261), 1, anon_sym_COLON, - ACTIONS(16340), 1, - anon_sym_RPAREN, - STATE(9825), 1, - sym_gnu_asm_output_operand_list, - [355945] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16342), 1, - anon_sym_GT2, - STATE(9832), 1, - aux_sym_template_argument_list_repeat1, - [355958] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16344), 3, - anon_sym_COMMA, + ACTIONS(16271), 1, anon_sym_RPAREN, - anon_sym_COLON, - [355967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(16346), 1, - anon_sym_RBRACK_RBRACK, - STATE(10110), 1, - aux_sym_attribute_declaration_repeat1, - [355980] = 2, + STATE(11154), 1, + sym_gnu_asm_goto_list, + [355310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16348), 3, - anon_sym_COMMA, + ACTIONS(16273), 1, anon_sym_RPAREN, + ACTIONS(16275), 1, anon_sym_COLON, - [355989] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16298), 1, - anon_sym_COMMA, - ACTIONS(16346), 1, - anon_sym_RBRACK_RBRACK, - STATE(10111), 1, - aux_sym_attribute_declaration_repeat2, - [356002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16350), 1, - anon_sym_catch, - STATE(2940), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [356013] = 4, + STATE(9721), 1, + sym_gnu_asm_clobber_list, + [355323] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16352), 1, + ACTIONS(16279), 1, anon_sym_RBRACK_RBRACK, - STATE(9717), 1, + STATE(9671), 1, aux_sym_attribute_declaration_repeat1, - [356026] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16298), 1, - anon_sym_COMMA, - ACTIONS(16352), 1, - anon_sym_RBRACK_RBRACK, - STATE(9718), 1, - aux_sym_attribute_declaration_repeat2, - [356039] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16354), 1, - anon_sym_SEMI, - STATE(11630), 1, - sym_attribute_declaration, - [356052] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(16358), 1, - anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [356065] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(15924), 1, - anon_sym_LBRACE, - STATE(10026), 1, - aux_sym_base_class_clause_repeat1, - [356078] = 4, + [355336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, - anon_sym_COMMA, - ACTIONS(16360), 1, + ACTIONS(16279), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [356091] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16298), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(16360), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(9672), 1, aux_sym_attribute_declaration_repeat2, - [356104] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16362), 1, - anon_sym_SEMI, - STATE(9766), 1, - aux_sym_declaration_repeat1, - [356117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16364), 1, - anon_sym_GT2, - STATE(9723), 1, - aux_sym_template_argument_list_repeat1, - [356130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16366), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16368), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16370), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16372), 1, - anon_sym_SEMI, - STATE(9935), 1, - aux_sym_declaration_repeat1, - [356182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16374), 1, - anon_sym_COMMA, - ACTIONS(16376), 1, - anon_sym_RPAREN, - STATE(9786), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [356195] = 4, + [355349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16378), 1, + ACTIONS(16285), 1, + anon_sym_COLON_COLON, + ACTIONS(16283), 2, anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356208] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(15924), 1, anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [356221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16380), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356234] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16382), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356247] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16384), 1, - anon_sym_SEMI, - STATE(9845), 1, - aux_sym_declaration_repeat1, - [356260] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16386), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356273] = 4, + [355360] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16388), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356286] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16312), 1, - anon_sym_COMMA, - ACTIONS(16390), 1, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(16287), 1, anon_sym_RPAREN, - STATE(9846), 1, - aux_sym_parameter_list_repeat1, - [356299] = 4, + STATE(9687), 1, + sym_gnu_asm_clobber_list, + [355373] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, - anon_sym_COMMA, - ACTIONS(16392), 1, + ACTIONS(16289), 1, anon_sym_RPAREN, - STATE(9937), 1, - aux_sym_parameter_list_repeat1, - [356312] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16394), 1, - anon_sym_GT2, - STATE(9738), 1, - aux_sym_template_argument_list_repeat1, - [356325] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16396), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356338] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16398), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356351] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16400), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16402), 1, - anon_sym_catch, - STATE(292), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [356375] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(16222), 1, - anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [356388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16404), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16406), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [356399] = 4, + ACTIONS(16291), 1, + anon_sym_COLON, + STATE(9688), 1, + sym_gnu_asm_input_operand_list, + [355386] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16408), 1, + ACTIONS(16293), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(10032), 1, aux_sym_attribute_declaration_repeat1, - [356412] = 4, + [355399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(16408), 1, + ACTIONS(16293), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(10052), 1, aux_sym_attribute_declaration_repeat2, - [356425] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(12447), 1, - anon_sym_RPAREN, - STATE(9792), 1, - aux_sym_argument_list_repeat1, - [356438] = 4, + [355412] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16410), 1, - anon_sym_GT2, - STATE(9748), 1, - aux_sym_template_argument_list_repeat1, - [356451] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16412), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356464] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16414), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356477] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16416), 1, + ACTIONS(16295), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9679), 1, aux_sym_template_argument_list_repeat1, - [356490] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16418), 1, - anon_sym_COMMA, - ACTIONS(16420), 1, - anon_sym_LBRACE, - STATE(10196), 1, - aux_sym_field_initializer_list_repeat1, - [356503] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12449), 1, - anon_sym_COMMA, - ACTIONS(12451), 1, - anon_sym_RBRACE, - STATE(9793), 1, - aux_sym_initializer_list_repeat1, - [356516] = 4, + [355425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16422), 1, + ACTIONS(16297), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [356529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16424), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16426), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [356540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12364), 1, - anon_sym_COMMA, - ACTIONS(12390), 1, - anon_sym_RBRACK, - STATE(9848), 1, - aux_sym_subscript_argument_list_repeat1, - [356553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9652), 1, - anon_sym_SEMI, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(2846), 1, - sym_template_argument_list, - [356566] = 4, + [355438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(16428), 1, - anon_sym_RPAREN, - STATE(9798), 1, - sym_gnu_asm_output_operand_list, - [356579] = 4, + ACTIONS(16277), 1, + anon_sym_COMMA, + ACTIONS(16299), 1, + anon_sym_RBRACK_RBRACK, + STATE(9723), 1, + aux_sym_attribute_declaration_repeat1, + [355451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(16430), 1, - anon_sym_GT2, - STATE(9759), 1, - aux_sym_template_argument_list_repeat1, - [356592] = 4, + ACTIONS(16299), 1, + anon_sym_RBRACK_RBRACK, + STATE(9724), 1, + aux_sym_attribute_declaration_repeat2, + [355464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16432), 1, + ACTIONS(16301), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [356605] = 4, + [355477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16434), 1, + ACTIONS(16303), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [356618] = 4, + [355490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16436), 1, + ACTIONS(16305), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [356631] = 3, + [355503] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16438), 1, - anon_sym_catch, - STATE(531), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [356642] = 4, + ACTIONS(16261), 1, + anon_sym_COLON, + ACTIONS(16307), 1, + anon_sym_RPAREN, + STATE(11632), 1, + sym_gnu_asm_goto_list, + [355516] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(16440), 1, - anon_sym_GT2, - STATE(9802), 1, - aux_sym_template_argument_list_repeat1, - [356655] = 4, + ACTIONS(16311), 1, + anon_sym_RPAREN, + STATE(9694), 1, + aux_sym_throw_specifier_repeat1, + [355529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(15929), 1, anon_sym_COMMA, - ACTIONS(16222), 1, + ACTIONS(16313), 1, anon_sym_LBRACE, - STATE(9945), 1, + STATE(9881), 1, aux_sym_base_class_clause_repeat1, - [356668] = 3, + [355542] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16442), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16444), 2, + ACTIONS(16315), 1, anon_sym_COMMA, - anon_sym_LBRACE, - [356679] = 4, + ACTIONS(16317), 1, + anon_sym_RPAREN, + STATE(9882), 1, + aux_sym_parameter_list_repeat1, + [355555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16446), 1, + ACTIONS(16319), 1, anon_sym_SEMI, - STATE(9811), 1, + STATE(9854), 1, aux_sym_declaration_repeat1, - [356692] = 4, + [355568] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16448), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16321), 1, anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356705] = 4, + STATE(11670), 1, + sym_attribute_declaration, + [355581] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16450), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16323), 1, anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [356718] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15566), 1, - sym_identifier, - ACTIONS(15568), 1, - anon_sym_using, - STATE(10283), 1, - sym_attribute, - [356731] = 4, + STATE(11672), 1, + sym_attribute_declaration, + [355594] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, - anon_sym_COMMA, - ACTIONS(16452), 1, + ACTIONS(16261), 1, + anon_sym_COLON, + ACTIONS(16325), 1, anon_sym_RPAREN, - STATE(9812), 1, - aux_sym_parameter_list_repeat1, - [356744] = 4, + STATE(11649), 1, + sym_gnu_asm_goto_list, + [355607] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16454), 1, - anon_sym_GT2, - STATE(9772), 1, - aux_sym_template_argument_list_repeat1, - [356757] = 4, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(16327), 1, + anon_sym_RPAREN, + STATE(9697), 1, + sym_gnu_asm_clobber_list, + [355620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16456), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356770] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16329), 1, + anon_sym_SEMI, + STATE(11673), 1, + sym_attribute_declaration, + [355633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16458), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356783] = 4, + ACTIONS(3324), 1, + anon_sym_while, + ACTIONS(16331), 1, + anon_sym_else, + STATE(643), 1, + sym_else_clause, + [355646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16460), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356796] = 4, + ACTIONS(16333), 1, + anon_sym_RBRACK_RBRACK, + STATE(9695), 1, + aux_sym_attribute_declaration_repeat1, + [355659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(16462), 1, + ACTIONS(16333), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [356809] = 3, + STATE(9696), 1, + aux_sym_attribute_declaration_repeat2, + [355672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16464), 1, + ACTIONS(16335), 1, anon_sym_catch, - STATE(522), 2, + STATE(1116), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [356820] = 4, + [355683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16337), 1, anon_sym_COMMA, - ACTIONS(16462), 1, + ACTIONS(16340), 1, + anon_sym_RPAREN, + STATE(9694), 1, + aux_sym_throw_specifier_repeat1, + [355696] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16277), 1, + anon_sym_COMMA, + ACTIONS(16342), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [356833] = 3, + STATE(10032), 1, + aux_sym_attribute_declaration_repeat1, + [355709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16466), 1, - anon_sym_catch, - STATE(626), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [356844] = 4, + ACTIONS(16281), 1, + anon_sym_COMMA, + ACTIONS(16342), 1, + anon_sym_RBRACK_RBRACK, + STATE(10052), 1, + aux_sym_attribute_declaration_repeat2, + [355722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16468), 1, - anon_sym_RPAREN, - ACTIONS(16470), 1, + ACTIONS(16261), 1, anon_sym_COLON, - STATE(10887), 1, + ACTIONS(16344), 1, + anon_sym_RPAREN, + STATE(10834), 1, sym_gnu_asm_goto_list, - [356857] = 4, + [355735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16472), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16475), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [356870] = 4, + ACTIONS(16346), 1, + anon_sym_SEMI, + STATE(9756), 1, + aux_sym_declaration_repeat1, + [355748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16477), 1, + ACTIONS(16348), 1, anon_sym_GT2, - STATE(9782), 1, + STATE(9702), 1, aux_sym_template_argument_list_repeat1, - [356883] = 4, + [355761] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16479), 1, + ACTIONS(16350), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [356896] = 4, + [355774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16481), 1, + ACTIONS(16352), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [356909] = 4, + [355787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16483), 1, + ACTIONS(16354), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [356922] = 2, + [355800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16485), 3, + ACTIONS(12362), 1, anon_sym_COMMA, + ACTIONS(16356), 1, anon_sym_RPAREN, - anon_sym_COLON, - [356931] = 2, + STATE(10006), 1, + aux_sym_generic_expression_repeat1, + [355813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16487), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [356940] = 4, + ACTIONS(16358), 1, + anon_sym_catch, + STATE(521), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [355824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, - anon_sym_COMMA, - ACTIONS(12402), 1, - anon_sym_RBRACK, - STATE(9942), 1, - aux_sym_subscript_argument_list_repeat1, - [356953] = 4, + ACTIONS(16360), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [355833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16374), 1, - anon_sym_COMMA, - ACTIONS(16489), 1, + ACTIONS(12368), 3, anon_sym_RPAREN, - STATE(9820), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [356966] = 4, + anon_sym_SEMI, + anon_sym_COLON, + [355842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16362), 1, anon_sym_COMMA, - ACTIONS(16491), 1, - anon_sym_GT2, - STATE(9790), 1, - aux_sym_template_argument_list_repeat1, - [356979] = 4, + ACTIONS(16364), 1, + anon_sym_RBRACK, + STATE(10173), 1, + aux_sym_lambda_capture_specifier_repeat1, + [355855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(10678), 1, + anon_sym_EQ, + ACTIONS(10676), 2, anon_sym_COMMA, - ACTIONS(16493), 1, anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [356992] = 4, + [355866] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16495), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [357005] = 4, + ACTIONS(16366), 1, + anon_sym_RBRACK_RBRACK, + STATE(9713), 1, + aux_sym_attribute_declaration_repeat1, + [355879] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(16497), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [357018] = 4, + ACTIONS(16366), 1, + anon_sym_RBRACK_RBRACK, + STATE(9714), 1, + aux_sym_attribute_declaration_repeat2, + [355892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7377), 1, + anon_sym_LBRACE, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + STATE(951), 1, + sym_declaration_list, + [355905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16499), 1, - anon_sym_RPAREN, - STATE(9688), 1, - aux_sym_parameter_list_repeat1, - [357031] = 4, + ACTIONS(16368), 1, + anon_sym_RBRACK_RBRACK, + STATE(9767), 1, + aux_sym_attribute_declaration_repeat1, + [355918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16501), 1, - anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [357044] = 4, + ACTIONS(16370), 1, + anon_sym_RBRACK_RBRACK, + STATE(10032), 1, + aux_sym_attribute_declaration_repeat1, + [355931] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5764), 1, - anon_sym_RBRACE, - ACTIONS(16503), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [357057] = 4, + ACTIONS(16370), 1, + anon_sym_RBRACK_RBRACK, + STATE(10052), 1, + aux_sym_attribute_declaration_repeat2, + [355944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16505), 1, + ACTIONS(16372), 1, anon_sym_GT2, - STATE(9797), 1, + STATE(9718), 1, aux_sym_template_argument_list_repeat1, - [357070] = 4, + [355957] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16507), 1, + ACTIONS(16374), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [357083] = 4, + [355970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16509), 1, + ACTIONS(16376), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [357096] = 4, + [355983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16511), 1, + ACTIONS(16378), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [357109] = 4, + [355996] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16513), 1, - anon_sym_RPAREN, - ACTIONS(16515), 1, + ACTIONS(16281), 1, + anon_sym_COMMA, + ACTIONS(16368), 1, + anon_sym_RBRACK_RBRACK, + STATE(9768), 1, + aux_sym_attribute_declaration_repeat2, + [356009] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16291), 1, anon_sym_COLON, - STATE(9821), 1, + ACTIONS(16380), 1, + anon_sym_RPAREN, + STATE(10106), 1, sym_gnu_asm_input_operand_list, - [357122] = 4, + [356022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16261), 1, anon_sym_COLON, - ACTIONS(16517), 1, + ACTIONS(16382), 1, anon_sym_RPAREN, - STATE(9822), 1, - sym_gnu_asm_output_operand_list, - [357135] = 4, + STATE(11541), 1, + sym_gnu_asm_goto_list, + [356035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16519), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [357148] = 4, + ACTIONS(16384), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [356048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16521), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [357161] = 4, + ACTIONS(16386), 1, + anon_sym_RBRACK_RBRACK, + STATE(10032), 1, + aux_sym_attribute_declaration_repeat1, + [356061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(16523), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [357174] = 4, + ACTIONS(16386), 1, + anon_sym_RBRACK_RBRACK, + STATE(10052), 1, + aux_sym_attribute_declaration_repeat2, + [356074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16525), 1, + ACTIONS(16388), 1, anon_sym_GT2, - STATE(9806), 1, + STATE(9728), 1, aux_sym_template_argument_list_repeat1, - [357187] = 4, + [356087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16527), 1, + ACTIONS(16390), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [357200] = 4, + [356100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16529), 1, + ACTIONS(16392), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [357213] = 4, + [356113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16531), 1, + ACTIONS(16394), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [357226] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16533), 1, - anon_sym_RPAREN, - ACTIONS(16535), 1, - anon_sym_COLON, - STATE(10038), 1, - sym_gnu_asm_clobber_list, - [357239] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(16537), 1, - anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [357252] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16539), 1, - anon_sym_SEMI, - STATE(9823), 1, - aux_sym_declaration_repeat1, - [357265] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16541), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [357278] = 4, + [356126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16543), 1, + ACTIONS(16396), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9834), 1, aux_sym_declaration_repeat1, - [357291] = 4, + [356139] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(16545), 1, + ACTIONS(12462), 1, anon_sym_RPAREN, - STATE(10185), 1, - aux_sym_parameter_list_repeat1, - [357304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16464), 1, - anon_sym_catch, - STATE(523), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [357315] = 4, + STATE(9781), 1, + aux_sym_argument_list_repeat1, + [356152] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(12362), 1, anon_sym_COMMA, - ACTIONS(16547), 1, + ACTIONS(16398), 1, anon_sym_RPAREN, - STATE(9824), 1, - aux_sym_throw_specifier_repeat1, - [357328] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7395), 1, - anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(473), 1, - sym_declaration_list, - [357341] = 4, + STATE(10006), 1, + aux_sym_generic_expression_repeat1, + [356165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(12464), 1, anon_sym_COMMA, - ACTIONS(16549), 1, - anon_sym_RBRACK, - STATE(10201), 1, - aux_sym_subscript_argument_list_repeat1, - [357354] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5774), 1, + ACTIONS(12466), 1, anon_sym_RBRACE, - ACTIONS(16551), 1, - anon_sym_COMMA, - STATE(9972), 1, + STATE(9782), 1, aux_sym_initializer_list_repeat1, - [357367] = 2, + [356178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12404), 3, - anon_sym_RPAREN, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16400), 1, anon_sym_SEMI, - anon_sym_COLON, - [357376] = 4, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [356191] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(12523), 1, + ACTIONS(16402), 1, anon_sym_RPAREN, - STATE(10074), 1, - aux_sym_argument_list_repeat1, - [357389] = 4, + ACTIONS(16404), 1, + anon_sym_COLON, + STATE(10116), 1, + sym_gnu_asm_output_operand_list, + [356204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16553), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16556), 1, - anon_sym_RPAREN, - STATE(9820), 1, - aux_sym_gnu_asm_goto_list_repeat1, - [357402] = 4, + ACTIONS(16406), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(16558), 1, - anon_sym_RPAREN, - STATE(9829), 1, - sym_gnu_asm_clobber_list, - [357415] = 4, + ACTIONS(9738), 1, + anon_sym___attribute, + ACTIONS(9740), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [356228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(16560), 1, - anon_sym_RPAREN, - STATE(9831), 1, - sym_gnu_asm_input_operand_list, - [357428] = 4, + ACTIONS(9742), 1, + anon_sym___attribute, + ACTIONS(9744), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [356239] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16562), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [357441] = 4, + ACTIONS(16408), 1, + anon_sym_GT2, + STATE(9741), 1, + aux_sym_template_argument_list_repeat1, + [356252] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16564), 1, - anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [357454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(16566), 1, - anon_sym_RPAREN, - STATE(9864), 1, - sym_gnu_asm_input_operand_list, - [357467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(16568), 1, - anon_sym_RPAREN, - STATE(9865), 1, - sym_gnu_asm_output_operand_list, - [357480] = 4, + ACTIONS(16410), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16570), 1, + ACTIONS(16412), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [357493] = 4, + [356278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16572), 1, + ACTIONS(16414), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [357506] = 4, + [356291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(16574), 1, + ACTIONS(16416), 1, anon_sym_RPAREN, - STATE(11573), 1, - sym_gnu_asm_goto_list, - [357519] = 4, + STATE(9787), 1, + sym_gnu_asm_output_operand_list, + [356304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16418), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16420), 1, anon_sym_LPAREN2, - ACTIONS(16578), 1, + ACTIONS(16422), 1, anon_sym_constexpr, - STATE(217), 1, + STATE(216), 1, sym_condition_clause, - [357532] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(16580), 1, - anon_sym_RPAREN, - STATE(9836), 1, - sym_gnu_asm_clobber_list, - [357545] = 4, + [356330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16582), 1, + ACTIONS(16424), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9791), 1, aux_sym_template_argument_list_repeat1, - [357558] = 3, - ACTIONS(14065), 1, - sym_comment, - STATE(9654), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16584), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [357569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(16586), 1, - anon_sym_RPAREN, - STATE(9715), 1, - aux_sym_throw_specifier_repeat1, - [357582] = 4, + [356343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(15198), 1, - anon_sym_LBRACE, - STATE(10701), 1, - sym_requires_clause, - [357595] = 4, + ACTIONS(16426), 1, + anon_sym_default, + ACTIONS(16428), 1, + anon_sym_delete, + ACTIONS(16430), 1, + aux_sym_pure_virtual_clause_token1, + [356356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(16588), 1, - anon_sym_RPAREN, - STATE(11601), 1, - sym_gnu_asm_goto_list, - [357608] = 4, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16432), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(16434), 1, anon_sym_COMMA, - ACTIONS(16590), 1, + ACTIONS(16436), 1, anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [357621] = 4, + STATE(10061), 1, + aux_sym_requires_parameter_list_repeat1, + [356382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16592), 1, - anon_sym_SEMI, - STATE(10813), 1, - sym_attribute_declaration, - [357634] = 2, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16438), 1, + anon_sym_GT2, + STATE(9752), 1, + aux_sym_template_argument_list_repeat1, + [356395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16594), 3, + ACTIONS(12384), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [357643] = 2, + ACTIONS(16440), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16596), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [357652] = 2, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16442), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16598), 3, + ACTIONS(12384), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [357661] = 4, + ACTIONS(16444), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(14381), 1, - anon_sym_LBRACE, - STATE(11133), 1, - sym_requires_clause, - [357674] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16446), 1, + anon_sym_SEMI, + STATE(11227), 1, + sym_attribute_declaration, + [356447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16600), 1, + ACTIONS(16448), 1, anon_sym_SEMI, - STATE(9867), 1, + STATE(9799), 1, aux_sym_declaration_repeat1, - [357687] = 4, + [356460] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16602), 1, + ACTIONS(16450), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [357700] = 4, + [356473] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16604), 1, + ACTIONS(16452), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [357713] = 4, + [356486] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(16606), 1, + ACTIONS(16454), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(9802), 1, aux_sym_parameter_list_repeat1, - [357726] = 3, + [356499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16402), 1, + ACTIONS(16456), 1, anon_sym_catch, - STATE(291), 2, + STATE(2534), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [357737] = 4, + [356510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16608), 1, - anon_sym_RBRACK, - STATE(10201), 1, - aux_sym_subscript_argument_list_repeat1, - [357750] = 4, + ACTIONS(16458), 1, + anon_sym_GT2, + STATE(9762), 1, + aux_sym_template_argument_list_repeat1, + [356523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16610), 1, - anon_sym_RPAREN, - STATE(9871), 1, - aux_sym_throw_specifier_repeat1, - [357763] = 4, + ACTIONS(16460), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16612), 1, - anon_sym_RPAREN, - STATE(9932), 1, - aux_sym_preproc_argument_list_repeat1, - [357776] = 3, + ACTIONS(16462), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(10857), 1, - anon_sym_EQ, - ACTIONS(10855), 2, + ACTIONS(12384), 1, anon_sym_COMMA, + ACTIONS(16464), 1, anon_sym_GT2, - [357787] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15906), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACE, - [357796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16614), 1, - anon_sym_default, - ACTIONS(16616), 1, - anon_sym_delete, - ACTIONS(16618), 1, - aux_sym_pure_virtual_clause_token1, - [357809] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16620), 1, - anon_sym_default, - ACTIONS(16622), 1, - anon_sym_delete, - ACTIONS(16624), 1, - aux_sym_pure_virtual_clause_token1, - [357822] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16626), 1, - anon_sym_SEMI, - STATE(10632), 1, - sym_attribute_declaration, - [357835] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16628), 1, - anon_sym_SEMI, - STATE(10766), 1, - sym_attribute_declaration, - [357848] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16630), 1, - anon_sym_SEMI, - STATE(10786), 1, - sym_attribute_declaration, - [357861] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16632), 1, - anon_sym_SEMI, - STATE(10939), 1, - sym_attribute_declaration, - [357874] = 3, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9946), 1, + ACTIONS(9810), 1, anon_sym___attribute, - ACTIONS(9948), 2, + ACTIONS(9812), 2, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [357885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16438), 1, - anon_sym_catch, - STATE(520), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [357896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16634), 1, - anon_sym_COMMA, - ACTIONS(16636), 1, - anon_sym_GT2, - STATE(10030), 1, - aux_sym_template_parameter_list_repeat1, - [357909] = 4, + [356573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16638), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16640), 1, - anon_sym_RPAREN, - STATE(10078), 1, - aux_sym_requires_parameter_list_repeat1, - [357922] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16644), 1, - anon_sym_COLON_COLON, - ACTIONS(16642), 2, + ACTIONS(16466), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [357933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(16646), 1, - anon_sym_RPAREN, - STATE(9876), 1, - sym_gnu_asm_clobber_list, - [357946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(16648), 1, - anon_sym_RPAREN, - STATE(9877), 1, - sym_gnu_asm_input_operand_list, - [357959] = 4, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [356586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16650), 1, - anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [357972] = 4, + ACTIONS(16468), 1, + anon_sym_SEMI, + STATE(9764), 1, + aux_sym_declaration_repeat1, + [356599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12299), 1, + anon_sym_RBRACE, + ACTIONS(12516), 1, anon_sym_COMMA, - ACTIONS(16652), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [357985] = 4, + STATE(9958), 1, + aux_sym_initializer_list_repeat1, + [356612] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16654), 1, + ACTIONS(16470), 1, anon_sym_RBRACK_RBRACK, - STATE(9880), 1, + STATE(10032), 1, aux_sym_attribute_declaration_repeat1, - [357998] = 4, + [356625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(16654), 1, + ACTIONS(16470), 1, anon_sym_RBRACK_RBRACK, - STATE(9881), 1, + STATE(10052), 1, aux_sym_attribute_declaration_repeat2, - [358011] = 4, + [356638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, - anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(809), 1, - sym_declaration_list, - [358024] = 4, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16472), 1, + anon_sym_GT2, + STATE(9772), 1, + aux_sym_template_argument_list_repeat1, + [356651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16656), 1, - anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [358037] = 4, + ACTIONS(16474), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5760), 1, - anon_sym_RBRACE, - ACTIONS(16658), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [358050] = 3, + ACTIONS(16476), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16660), 1, - anon_sym_catch, - STATE(1116), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [358061] = 4, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16478), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(16662), 1, - anon_sym_SEMI, - STATE(9891), 1, - aux_sym_declaration_repeat1, - [358074] = 4, + ACTIONS(12434), 1, + anon_sym_RPAREN, + STATE(10004), 1, + aux_sym_argument_list_repeat1, + [356703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, + ACTIONS(16480), 1, anon_sym_COMMA, - ACTIONS(16664), 1, + ACTIONS(16483), 1, anon_sym_RPAREN, - STATE(9932), 1, - aux_sym_preproc_argument_list_repeat1, - [358087] = 4, + STATE(9774), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [356716] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(16666), 1, - anon_sym_RPAREN, - STATE(10970), 1, - sym_gnu_asm_goto_list, - [358100] = 4, + ACTIONS(7363), 1, + anon_sym_LBRACE, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + STATE(727), 1, + sym_declaration_list, + [356729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(16668), 1, - anon_sym_RPAREN, - STATE(9883), 1, - sym_gnu_asm_clobber_list, - [358113] = 4, + ACTIONS(16358), 1, + anon_sym_catch, + STATE(546), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [356740] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16670), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16672), 1, - anon_sym_RPAREN, - STATE(9661), 1, - aux_sym_preproc_params_repeat1, - [358126] = 4, + ACTIONS(16485), 1, + anon_sym_GT2, + STATE(9780), 1, + aux_sym_template_argument_list_repeat1, + [356753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16418), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16674), 1, - anon_sym_LBRACE, - STATE(9749), 1, - aux_sym_field_initializer_list_repeat1, - [358139] = 4, + ACTIONS(16487), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16676), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [358152] = 4, + ACTIONS(16489), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16676), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [358165] = 4, + ACTIONS(16491), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356792] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(12459), 1, + ACTIONS(16493), 1, anon_sym_RPAREN, - STATE(9902), 1, + STATE(9809), 1, aux_sym_argument_list_repeat1, - [358178] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(16678), 1, - anon_sym_RPAREN, - STATE(11006), 1, - sym_gnu_asm_goto_list, - [358191] = 4, + [356805] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12461), 1, - anon_sym_COMMA, - ACTIONS(12463), 1, + ACTIONS(5740), 1, anon_sym_RBRACE, - STATE(9903), 1, - aux_sym_initializer_list_repeat1, - [358204] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12421), 1, + ACTIONS(16495), 1, anon_sym_COMMA, - ACTIONS(16680), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [358217] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(16682), 1, - anon_sym_RPAREN, - STATE(9905), 1, - sym_gnu_asm_output_operand_list, - [358230] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3410), 1, - anon_sym_while, - ACTIONS(16282), 1, - anon_sym_else, - STATE(582), 1, - sym_else_clause, - [358243] = 4, + STATE(9838), 1, + aux_sym_initializer_list_repeat1, + [356818] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16684), 1, + ACTIONS(16497), 1, anon_sym_GT2, - STATE(9909), 1, + STATE(9786), 1, aux_sym_template_argument_list_repeat1, - [358256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16686), 1, - anon_sym_SEMI, - STATE(9912), 1, - aux_sym_declaration_repeat1, - [358269] = 4, + [356831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16688), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [358282] = 4, + ACTIONS(16499), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356844] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16690), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [358295] = 4, + ACTIONS(16501), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356857] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16692), 1, - anon_sym_RPAREN, - STATE(9913), 1, - aux_sym_parameter_list_repeat1, - [358308] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - ACTIONS(16694), 1, - anon_sym_constexpr, - STATE(207), 1, - sym_condition_clause, - [358321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16696), 1, - anon_sym_catch, - STATE(2545), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [358332] = 4, + ACTIONS(16503), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(16291), 1, anon_sym_COLON, - ACTIONS(16698), 1, + ACTIONS(16505), 1, anon_sym_RPAREN, - STATE(9985), 1, + STATE(9811), 1, sym_gnu_asm_input_operand_list, - [358345] = 4, + [356883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(16700), 1, + ACTIONS(16507), 1, anon_sym_RPAREN, - STATE(9986), 1, + STATE(9812), 1, sym_gnu_asm_output_operand_list, - [358358] = 4, + [356896] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16702), 1, + ACTIONS(16509), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [358371] = 4, + [356909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16704), 1, + ACTIONS(16511), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [358384] = 4, + [356922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9471), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16706), 1, - anon_sym_RBRACK, - STATE(10180), 1, - aux_sym_structured_binding_declarator_repeat1, - [358397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16708), 1, + ACTIONS(16513), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [358410] = 4, + [356935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16710), 1, - anon_sym_SEMI, - STATE(10765), 1, - sym_attribute_declaration, - [358423] = 4, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(16515), 1, + anon_sym_LBRACE, + STATE(11087), 1, + sym_requires_clause, + [356948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16712), 1, - anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [358436] = 4, + ACTIONS(16517), 1, + anon_sym_GT2, + STATE(9796), 1, + aux_sym_template_argument_list_repeat1, + [356961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5782), 1, - anon_sym_RBRACE, - ACTIONS(16714), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [358449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16466), 1, - anon_sym_catch, - STATE(560), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [358460] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(16716), 1, - anon_sym_RPAREN, - STATE(9917), 1, - sym_gnu_asm_input_operand_list, - [358473] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(16718), 1, - anon_sym_RPAREN, - STATE(9918), 1, - sym_gnu_asm_output_operand_list, - [358486] = 4, + ACTIONS(16519), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [356974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16720), 1, + ACTIONS(16521), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [358499] = 4, + [356987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16722), 1, + ACTIONS(16523), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [358512] = 4, + [357000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16724), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [358525] = 4, + ACTIONS(16525), 1, + anon_sym_SEMI, + STATE(9813), 1, + aux_sym_declaration_repeat1, + [357013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16726), 1, + ACTIONS(16527), 1, anon_sym_SEMI, - STATE(9919), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [358538] = 4, + [357026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16728), 1, + ACTIONS(16529), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [358551] = 4, + [357039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12324), 1, anon_sym_COMMA, - ACTIONS(16730), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [358564] = 4, + ACTIONS(12460), 1, + anon_sym_RBRACK, + STATE(9658), 1, + aux_sym_subscript_argument_list_repeat1, + [357052] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9556), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16531), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [357063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(16732), 1, + ACTIONS(16533), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(10078), 1, aux_sym_parameter_list_repeat1, - [358577] = 3, + [357076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16696), 1, + ACTIONS(16456), 1, anon_sym_catch, - STATE(2564), 2, + STATE(2535), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [358588] = 4, + [357087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + ACTIONS(16535), 1, + anon_sym_constexpr, + STATE(231), 1, + sym_condition_clause, + [357100] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(16734), 1, + ACTIONS(16537), 1, anon_sym_RPAREN, - STATE(9920), 1, + STATE(9814), 1, aux_sym_throw_specifier_repeat1, - [358601] = 4, + [357113] = 4, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16539), 1, + aux_sym_preproc_include_token2, + ACTIONS(16541), 1, + anon_sym_LPAREN2, + STATE(10676), 1, + sym_preproc_argument_list, + [357126] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16302), 1, + ACTIONS(16543), 3, anon_sym_COMMA, - ACTIONS(16736), 1, - anon_sym_RBRACK, - STATE(10189), 1, - aux_sym_lambda_capture_specifier_repeat1, - [358614] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + [357135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(16545), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [357144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12660), 1, + anon_sym_RPAREN, + ACTIONS(16547), 1, + anon_sym_COMMA, + STATE(9809), 1, + aux_sym_argument_list_repeat1, + [357157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16550), 1, + anon_sym_EQ, + ACTIONS(15093), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [357168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16275), 1, anon_sym_COLON, - ACTIONS(16738), 1, + ACTIONS(16552), 1, anon_sym_RPAREN, - STATE(9922), 1, + STATE(9817), 1, sym_gnu_asm_clobber_list, - [358627] = 4, + [357181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(16291), 1, anon_sym_COLON, - ACTIONS(16740), 1, + ACTIONS(16554), 1, anon_sym_RPAREN, - STATE(9923), 1, + STATE(9818), 1, sym_gnu_asm_input_operand_list, - [358640] = 4, + [357194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16742), 1, + ACTIONS(16556), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [358653] = 4, + [357207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(16744), 1, + ACTIONS(16558), 1, anon_sym_RPAREN, - STATE(10013), 1, + STATE(9694), 1, aux_sym_throw_specifier_repeat1, - [358666] = 4, + [357220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16746), 1, - anon_sym_SEMI, - STATE(9728), 1, - aux_sym_declaration_repeat1, - [358679] = 4, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + ACTIONS(16560), 1, + anon_sym_constexpr, + STATE(194), 1, + sym_condition_clause, + [357233] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9464), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16562), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [357244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(16261), 1, anon_sym_COLON, - ACTIONS(16748), 1, + ACTIONS(16564), 1, anon_sym_RPAREN, - STATE(11279), 1, + STATE(11643), 1, sym_gnu_asm_goto_list, - [358692] = 4, + [357257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(16275), 1, anon_sym_COLON, - ACTIONS(16750), 1, + ACTIONS(16566), 1, anon_sym_RPAREN, - STATE(9924), 1, + STATE(9820), 1, sym_gnu_asm_clobber_list, - [358705] = 4, + [357270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(12436), 1, + anon_sym_COMMA, + ACTIONS(12438), 1, + anon_sym_RBRACE, + STATE(10031), 1, + aux_sym_initializer_list_repeat1, + [357283] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16261), 1, anon_sym_COLON, - ACTIONS(16752), 1, + ACTIONS(16568), 1, anon_sym_RPAREN, - STATE(11283), 1, + STATE(11655), 1, sym_gnu_asm_goto_list, - [358718] = 4, + [357296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(12362), 1, anon_sym_COMMA, - ACTIONS(16754), 1, + ACTIONS(16570), 1, anon_sym_RPAREN, - STATE(9778), 1, + STATE(10006), 1, aux_sym_generic_expression_repeat1, - [358731] = 3, - ACTIONS(14065), 1, - sym_comment, - STATE(9429), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16756), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [358742] = 4, + [357309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16572), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16574), 2, anon_sym_COMMA, - ACTIONS(16758), 1, - anon_sym_SEMI, - STATE(9751), 1, - aux_sym_declaration_repeat1, - [358755] = 4, + anon_sym_LBRACE, + [357320] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(16576), 1, anon_sym_COMMA, - ACTIONS(12537), 1, - anon_sym_RBRACK, - STATE(9816), 1, - aux_sym_subscript_argument_list_repeat1, - [358768] = 4, + ACTIONS(16578), 1, + anon_sym_LBRACE, + STATE(9949), 1, + aux_sym_field_initializer_list_repeat1, + [357333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(16760), 1, + ACTIONS(12362), 1, + anon_sym_COMMA, + ACTIONS(16580), 1, anon_sym_RPAREN, - STATE(10124), 1, - sym_gnu_asm_input_operand_list, - [358781] = 4, + STATE(10006), 1, + aux_sym_generic_expression_repeat1, + [357346] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(16762), 1, - anon_sym_RPAREN, - STATE(10127), 1, - sym_gnu_asm_output_operand_list, - [358794] = 4, + ACTIONS(15929), 1, + anon_sym_COMMA, + ACTIONS(16313), 1, + anon_sym_LBRACE, + STATE(9897), 1, + aux_sym_base_class_clause_repeat1, + [357359] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, - anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(867), 1, - sym_declaration_list, - [358807] = 4, + ACTIONS(16277), 1, + anon_sym_COMMA, + ACTIONS(16582), 1, + anon_sym_RBRACK_RBRACK, + STATE(9883), 1, + aux_sym_attribute_declaration_repeat1, + [357372] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14153), 1, - anon_sym_RPAREN, - ACTIONS(16764), 1, + ACTIONS(16362), 1, anon_sym_COMMA, - STATE(9932), 1, - aux_sym_preproc_argument_list_repeat1, - [358820] = 4, + ACTIONS(16584), 1, + anon_sym_RBRACK, + STATE(10173), 1, + aux_sym_lambda_capture_specifier_repeat1, + [357385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16586), 1, + anon_sym_SEMI, + STATE(11521), 1, + sym_attribute_declaration, + [357398] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16767), 1, + ACTIONS(16588), 1, anon_sym_SEMI, - STATE(10009), 1, + STATE(10066), 1, aux_sym_declaration_repeat1, - [358833] = 4, + [357411] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16281), 1, + anon_sym_COMMA, + ACTIONS(16582), 1, + anon_sym_RBRACK_RBRACK, + STATE(9884), 1, + aux_sym_attribute_declaration_repeat2, + [357424] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16769), 1, + ACTIONS(16590), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(10151), 1, aux_sym_declaration_repeat1, - [358846] = 4, + [357437] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16771), 1, + ACTIONS(16592), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [358859] = 4, + [357450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16594), 1, + anon_sym_default, + ACTIONS(16596), 1, + anon_sym_delete, + ACTIONS(16598), 1, + aux_sym_pure_virtual_clause_token1, + [357463] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16773), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [358872] = 4, + ACTIONS(16600), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [357476] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16602), 1, + anon_sym_SEMI, + STATE(11526), 1, + sym_attribute_declaration, + [357489] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16604), 1, + anon_sym_SEMI, + STATE(11540), 1, + sym_attribute_declaration, + [357502] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16285), 1, + anon_sym_COLON_COLON, + ACTIONS(16606), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [357513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(12540), 1, + anon_sym_RBRACE, + ACTIONS(16608), 1, anon_sym_COMMA, - ACTIONS(16775), 1, + STATE(9838), 1, + aux_sym_initializer_list_repeat1, + [357526] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16611), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [357539] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16315), 1, + anon_sym_COMMA, + ACTIONS(16613), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(10078), 1, aux_sym_parameter_list_repeat1, - [358885] = 4, - ACTIONS(14065), 1, + [357552] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(16777), 1, - aux_sym_preproc_include_token2, - ACTIONS(16779), 1, - anon_sym_LPAREN2, - STATE(10803), 1, - sym_preproc_argument_list, - [358898] = 4, + ACTIONS(16404), 1, + anon_sym_COLON, + ACTIONS(16615), 1, + anon_sym_RPAREN, + STATE(10099), 1, + sym_gnu_asm_output_operand_list, + [357565] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16781), 1, + ACTIONS(16617), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(10108), 1, aux_sym_template_argument_list_repeat1, - [358911] = 3, + [357578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16438), 1, + ACTIONS(16619), 1, anon_sym_catch, - STATE(539), 2, + STATE(576), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [358922] = 4, + [357589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, - anon_sym_COMMA, - ACTIONS(16783), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [358935] = 4, + ACTIONS(16358), 1, + anon_sym_catch, + STATE(524), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [357600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, - anon_sym_COMMA, - ACTIONS(16785), 1, - anon_sym_RBRACK, - STATE(10201), 1, - aux_sym_subscript_argument_list_repeat1, - [358948] = 4, + ACTIONS(9814), 1, + anon_sym___attribute, + ACTIONS(9816), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [357611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13843), 1, - anon_sym_DASH_GT, - ACTIONS(16787), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16621), 1, anon_sym_SEMI, - STATE(11214), 1, - sym_trailing_return_type, - [358961] = 4, + STATE(11669), 1, + sym_attribute_declaration, + [357624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(16789), 1, - anon_sym_RPAREN, - STATE(10014), 1, - aux_sym_throw_specifier_repeat1, - [358974] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16623), 1, + anon_sym_SEMI, + STATE(11677), 1, + sym_attribute_declaration, + [357637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, - anon_sym_COMMA, - ACTIONS(16791), 1, - anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [358987] = 3, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16625), 1, + anon_sym_SEMI, + STATE(11678), 1, + sym_attribute_declaration, + [357650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16793), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16795), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [358998] = 4, + ACTIONS(16627), 1, + anon_sym_catch, + STATE(289), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [357661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13909), 1, + ACTIONS(16629), 3, anon_sym_COMMA, - ACTIONS(16797), 1, anon_sym_RPAREN, - STATE(9932), 1, - aux_sym_preproc_argument_list_repeat1, - [359011] = 4, + anon_sym_COLON, + [357670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16434), 1, anon_sym_COMMA, - ACTIONS(16799), 1, - anon_sym_GT2, - STATE(9941), 1, - aux_sym_template_argument_list_repeat1, - [359024] = 4, + ACTIONS(16631), 1, + anon_sym_RPAREN, + STATE(9748), 1, + aux_sym_requires_parameter_list_repeat1, + [357683] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16801), 1, + ACTIONS(16633), 1, anon_sym_RBRACK_RBRACK, - STATE(9967), 1, + STATE(9865), 1, aux_sym_attribute_declaration_repeat1, - [359037] = 4, + [357696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(16801), 1, + ACTIONS(16633), 1, anon_sym_RBRACK_RBRACK, - STATE(9968), 1, + STATE(9866), 1, aux_sym_attribute_declaration_repeat2, - [359050] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - ACTIONS(16803), 1, - anon_sym_constexpr, - STATE(200), 1, - sym_condition_clause, - [359063] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12671), 1, - anon_sym_RPAREN, - ACTIONS(16805), 1, - anon_sym_COMMA, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [359076] = 3, - ACTIONS(14065), 1, - sym_comment, - STATE(9458), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16808), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359087] = 4, + [357709] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16791), 1, - anon_sym_LBRACE, - STATE(10199), 1, - aux_sym_base_class_clause_repeat1, - [359100] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16810), 1, + ACTIONS(16635), 1, anon_sym_SEMI, - STATE(11359), 1, - sym_attribute_declaration, - [359113] = 4, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [357722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12295), 1, - anon_sym_RBRACE, - ACTIONS(12535), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - STATE(9672), 1, - aux_sym_initializer_list_repeat1, - [359126] = 2, + ACTIONS(16637), 1, + anon_sym_SEMI, + STATE(9955), 1, + aux_sym_declaration_repeat1, + [357735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16812), 3, + ACTIONS(16639), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [359135] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14243), 1, - anon_sym_LBRACE, - ACTIONS(14247), 1, - anon_sym_requires, - STATE(11587), 1, - sym_requires_clause, - [359148] = 3, + ACTIONS(16642), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [357748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16696), 1, + ACTIONS(16456), 1, anon_sym_catch, - STATE(2568), 2, + STATE(2567), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [359159] = 4, + [357759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16302), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16814), 1, - anon_sym_RBRACK, - STATE(10189), 1, - aux_sym_lambda_capture_specifier_repeat1, - [359172] = 3, + ACTIONS(16644), 1, + anon_sym_SEMI, + STATE(9722), 1, + aux_sym_declaration_repeat1, + [357772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16816), 1, - anon_sym_EQ, - ACTIONS(15141), 2, + ACTIONS(16277), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [359183] = 4, + ACTIONS(16646), 1, + anon_sym_RBRACK_RBRACK, + STATE(9941), 1, + aux_sym_attribute_declaration_repeat1, + [357785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16818), 1, - anon_sym_default, - ACTIONS(16820), 1, - anon_sym_delete, - ACTIONS(16822), 1, - aux_sym_pure_virtual_clause_token1, - [359196] = 4, + ACTIONS(16281), 1, + anon_sym_COMMA, + ACTIONS(16646), 1, + anon_sym_RBRACK_RBRACK, + STATE(9943), 1, + aux_sym_attribute_declaration_repeat2, + [357798] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16824), 1, + ACTIONS(16648), 1, anon_sym_SEMI, - STATE(9978), 1, + STATE(9888), 1, aux_sym_declaration_repeat1, - [359209] = 4, - ACTIONS(14065), 1, + [357811] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16779), 1, + ACTIONS(16541), 1, anon_sym_LPAREN2, - ACTIONS(16826), 1, + ACTIONS(16650), 1, aux_sym_preproc_include_token2, - STATE(10803), 1, + STATE(10676), 1, sym_preproc_argument_list, - [359222] = 3, + [357824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16828), 1, - sym_identifier, - ACTIONS(16830), 2, + ACTIONS(16309), 1, anon_sym_COMMA, - anon_sym_GT2, - [359233] = 2, - ACTIONS(3), 1, + ACTIONS(16652), 1, + anon_sym_RPAREN, + STATE(10167), 1, + aux_sym_throw_specifier_repeat1, + [357837] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16832), 3, - anon_sym_LBRACK, - anon_sym_EQ, - anon_sym_DOT, - [359242] = 4, + ACTIONS(16541), 1, + anon_sym_LPAREN2, + ACTIONS(16654), 1, + aux_sym_preproc_include_token2, + STATE(10676), 1, + sym_preproc_argument_list, + [357850] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16834), 1, + ACTIONS(16656), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(10032), 1, aux_sym_attribute_declaration_repeat1, - [359255] = 4, + [357863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(16834), 1, + ACTIONS(16656), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(10052), 1, aux_sym_attribute_declaration_repeat2, - [359268] = 4, + [357876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(12469), 1, + ACTIONS(12472), 1, anon_sym_RPAREN, - STATE(9987), 1, + STATE(9902), 1, aux_sym_argument_list_repeat1, - [359281] = 4, + [357889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16658), 1, + anon_sym_SEMI, + STATE(10170), 1, + aux_sym_declaration_repeat1, + [357902] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16660), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [357915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12471), 1, + ACTIONS(12474), 1, anon_sym_COMMA, - ACTIONS(12473), 1, + ACTIONS(12476), 1, anon_sym_RBRACE, - STATE(9988), 1, + STATE(9903), 1, aux_sym_initializer_list_repeat1, - [359294] = 4, + [357928] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(16662), 1, + anon_sym_LBRACE, + STATE(11000), 1, + sym_requires_clause, + [357941] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16664), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [357954] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(16836), 1, + ACTIONS(16666), 1, anon_sym_RPAREN, - STATE(9991), 1, + STATE(9905), 1, sym_gnu_asm_output_operand_list, - [359307] = 4, + [357967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 1, - anon_sym_RBRACE, - ACTIONS(16838), 1, + ACTIONS(15929), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [359320] = 4, + ACTIONS(15945), 1, + anon_sym_LBRACE, + STATE(10191), 1, + aux_sym_base_class_clause_repeat1, + [357980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16668), 1, + anon_sym_catch, + STATE(2921), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [357991] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15929), 1, + anon_sym_COMMA, + ACTIONS(15945), 1, + anon_sym_LBRACE, + STATE(9881), 1, + aux_sym_base_class_clause_repeat1, + [358004] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15929), 1, anon_sym_COMMA, - ACTIONS(16841), 1, + ACTIONS(15931), 1, + anon_sym_LBRACE, + STATE(9876), 1, + aux_sym_base_class_clause_repeat1, + [358017] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16670), 1, anon_sym_GT2, - STATE(9996), 1, + STATE(9909), 1, aux_sym_template_argument_list_repeat1, - [359333] = 4, + [358030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16672), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16674), 2, anon_sym_COMMA, - ACTIONS(16843), 1, + anon_sym_LBRACE, + [358041] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13993), 1, + anon_sym_COMMA, + ACTIONS(16676), 1, + anon_sym_RPAREN, + STATE(10127), 1, + aux_sym_preproc_argument_list_repeat1, + [358054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16674), 1, + anon_sym_LBRACE, + ACTIONS(16678), 1, + anon_sym_COMMA, + STATE(9881), 1, + aux_sym_base_class_clause_repeat1, + [358067] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16315), 1, + anon_sym_COMMA, + ACTIONS(16681), 1, + anon_sym_RPAREN, + STATE(10078), 1, + aux_sym_parameter_list_repeat1, + [358080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16277), 1, + anon_sym_COMMA, + ACTIONS(16683), 1, anon_sym_RBRACK_RBRACK, - STATE(10043), 1, + STATE(10032), 1, aux_sym_attribute_declaration_repeat1, - [359346] = 4, + [358093] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(16843), 1, + ACTIONS(16683), 1, anon_sym_RBRACK_RBRACK, - STATE(10044), 1, + STATE(10052), 1, aux_sym_attribute_declaration_repeat2, - [359359] = 4, + [358106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(16845), 1, + ACTIONS(12376), 1, + anon_sym_RPAREN, + STATE(10010), 1, + aux_sym_argument_list_repeat1, + [358119] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16685), 1, anon_sym_SEMI, - STATE(10000), 1, + STATE(9913), 1, aux_sym_declaration_repeat1, - [359372] = 4, + [358132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16847), 1, + ACTIONS(16687), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [359385] = 4, + [358145] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16849), 1, + ACTIONS(16689), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [359398] = 4, + [358158] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16691), 1, + anon_sym_SEMI, + STATE(10907), 1, + sym_attribute_declaration, + [358171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(16851), 1, + ACTIONS(16693), 1, anon_sym_RPAREN, - STATE(10002), 1, + STATE(10176), 1, aux_sym_parameter_list_repeat1, - [359411] = 3, + [358184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16853), 1, + ACTIONS(16315), 1, + anon_sym_COMMA, + ACTIONS(16695), 1, + anon_sym_RPAREN, + STATE(9915), 1, + aux_sym_parameter_list_repeat1, + [358197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16697), 1, anon_sym_catch, - STATE(2910), 2, + STATE(2922), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [359422] = 4, + [358208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - ACTIONS(16855), 1, - anon_sym_constexpr, - STATE(235), 1, - sym_condition_clause, - [359435] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16699), 1, + anon_sym_SEMI, + STATE(10913), 1, + sym_attribute_declaration, + [358221] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - ACTIONS(16857), 1, - anon_sym_constexpr, - STATE(195), 1, - sym_condition_clause, - [359448] = 3, - ACTIONS(14065), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16701), 1, + anon_sym_SEMI, + STATE(10926), 1, + sym_attribute_declaration, + [358234] = 3, + ACTIONS(3), 1, sym_comment, - STATE(9610), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16859), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359459] = 3, + ACTIONS(16703), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16705), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [358245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9876), 1, - anon_sym___attribute, - ACTIONS(9878), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [359470] = 4, + ACTIONS(7355), 1, + anon_sym_LBRACE, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + STATE(449), 1, + sym_declaration_list, + [358258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(16861), 1, - anon_sym_RPAREN, - STATE(10048), 1, - sym_gnu_asm_clobber_list, - [359483] = 4, + ACTIONS(15929), 1, + anon_sym_COMMA, + ACTIONS(16707), 1, + anon_sym_LBRACE, + STATE(9881), 1, + aux_sym_base_class_clause_repeat1, + [358271] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(16863), 1, - anon_sym_RPAREN, - STATE(10053), 1, - sym_gnu_asm_input_operand_list, - [359496] = 4, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16709), 1, + anon_sym_SEMI, + STATE(9983), 1, + aux_sym_declaration_repeat1, + [358284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12378), 1, + anon_sym_COMMA, + ACTIONS(12380), 1, + anon_sym_RBRACE, + STATE(10014), 1, + aux_sym_initializer_list_repeat1, + [358297] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13836), 1, + anon_sym_DASH_GT, + ACTIONS(16711), 1, + anon_sym_SEMI, + STATE(10673), 1, + sym_trailing_return_type, + [358310] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15543), 1, + sym_identifier, + ACTIONS(15545), 1, + anon_sym_using, + STATE(10291), 1, + sym_attribute, + [358323] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(16865), 1, + ACTIONS(16713), 1, anon_sym_RPAREN, - STATE(9952), 1, + STATE(9809), 1, aux_sym_argument_list_repeat1, - [359509] = 4, + [358336] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5734), 1, + ACTIONS(5894), 1, anon_sym_RBRACE, - ACTIONS(16867), 1, + ACTIONS(16715), 1, anon_sym_COMMA, - STATE(9972), 1, + STATE(9838), 1, aux_sym_initializer_list_repeat1, - [359522] = 4, - ACTIONS(3), 1, + [358349] = 4, + ACTIONS(14045), 1, sym_comment, - ACTIONS(16869), 1, - anon_sym_default, - ACTIONS(16871), 1, - anon_sym_delete, - ACTIONS(16873), 1, - aux_sym_pure_virtual_clause_token1, - [359535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9880), 1, - anon_sym___attribute, - ACTIONS(9882), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [359546] = 4, + ACTIONS(16541), 1, + anon_sym_LPAREN2, + ACTIONS(16717), 1, + aux_sym_preproc_include_token2, + STATE(10676), 1, + sym_preproc_argument_list, + [358362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(16291), 1, anon_sym_COLON, - ACTIONS(16875), 1, + ACTIONS(16719), 1, anon_sym_RPAREN, - STATE(10016), 1, + STATE(9926), 1, sym_gnu_asm_input_operand_list, - [359559] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16877), 1, - anon_sym_SEMI, - STATE(11500), 1, - sym_attribute_declaration, - [359572] = 4, + [358375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(16879), 1, + ACTIONS(16721), 1, anon_sym_RPAREN, - STATE(10017), 1, + STATE(9927), 1, sym_gnu_asm_output_operand_list, - [359585] = 4, + [358388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16881), 1, + ACTIONS(16723), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [359598] = 4, + [358401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16883), 1, + ACTIONS(16725), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [359611] = 4, + [358414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16885), 1, + ACTIONS(16727), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [359624] = 4, + [358427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16887), 1, - anon_sym_SEMI, - STATE(10018), 1, - aux_sym_declaration_repeat1, - [359637] = 4, + ACTIONS(16668), 1, + anon_sym_catch, + STATE(2908), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [358438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16889), 1, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16729), 1, anon_sym_SEMI, - STATE(11626), 1, - sym_attribute_declaration, - [359650] = 4, + STATE(9928), 1, + aux_sym_declaration_repeat1, + [358451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16891), 1, + ACTIONS(16731), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [359663] = 4, + [358464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16893), 1, + ACTIONS(16733), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [359676] = 2, + [358477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16895), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_GT2, - [359685] = 4, + ACTIONS(16619), 1, + anon_sym_catch, + STATE(447), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [358488] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(16897), 1, + ACTIONS(16735), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(10078), 1, aux_sym_parameter_list_repeat1, - [359698] = 3, + [358501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16853), 1, + ACTIONS(16697), 1, anon_sym_catch, STATE(2924), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [359709] = 4, + [358512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16899), 1, - anon_sym_SEMI, - STATE(11060), 1, - sym_attribute_declaration, - [359722] = 4, + ACTIONS(12324), 1, + anon_sym_COMMA, + ACTIONS(12350), 1, + anon_sym_RBRACK, + STATE(9980), 1, + aux_sym_subscript_argument_list_repeat1, + [358525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(16901), 1, + ACTIONS(16737), 1, anon_sym_RPAREN, - STATE(10019), 1, + STATE(9929), 1, aux_sym_throw_specifier_repeat1, - [359735] = 4, + [358538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16903), 1, - anon_sym_SEMI, - STATE(11061), 1, - sym_attribute_declaration, - [359748] = 4, + ACTIONS(16291), 1, + anon_sym_COLON, + ACTIONS(16739), 1, + anon_sym_RPAREN, + STATE(9973), 1, + sym_gnu_asm_input_operand_list, + [358551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16905), 1, - anon_sym_SEMI, - STATE(11065), 1, - sym_attribute_declaration, - [359761] = 4, + ACTIONS(16404), 1, + anon_sym_COLON, + ACTIONS(16741), 1, + anon_sym_RPAREN, + STATE(9982), 1, + sym_gnu_asm_output_operand_list, + [358564] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(16907), 1, - anon_sym_SEMI, - STATE(11702), 1, - sym_attribute_declaration, - [359774] = 4, + ACTIONS(16404), 1, + anon_sym_COLON, + ACTIONS(16743), 1, + anon_sym_RPAREN, + STATE(10033), 1, + sym_gnu_asm_output_operand_list, + [358577] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(16909), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [359787] = 2, + ACTIONS(16745), 1, + anon_sym_RPAREN, + STATE(9840), 1, + aux_sym_parameter_list_repeat1, + [358590] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12324), 1, + anon_sym_COMMA, + ACTIONS(12442), 1, + anon_sym_RBRACK, + STATE(10178), 1, + aux_sym_subscript_argument_list_repeat1, + [358603] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + ACTIONS(16747), 1, + anon_sym_constexpr, + STATE(233), 1, + sym_condition_clause, + [358616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16895), 3, + ACTIONS(16749), 3, anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_GT2, - [359796] = 3, + anon_sym_COLON, + [358625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16464), 1, - anon_sym_catch, - STATE(397), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [359807] = 4, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(16751), 1, + anon_sym_RPAREN, + STATE(9931), 1, + sym_gnu_asm_clobber_list, + [358638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(15137), 1, - anon_sym_LBRACE, - STATE(11184), 1, - sym_requires_clause, - [359820] = 4, + ACTIONS(16291), 1, + anon_sym_COLON, + ACTIONS(16753), 1, + anon_sym_RPAREN, + STATE(9932), 1, + sym_gnu_asm_input_operand_list, + [358651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16911), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16914), 1, - anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [359833] = 4, + ACTIONS(16755), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [358664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(16916), 1, + ACTIONS(16757), 1, anon_sym_RPAREN, - STATE(10013), 1, + STATE(9694), 1, aux_sym_throw_specifier_repeat1, - [359846] = 3, - ACTIONS(14065), 1, + [358677] = 4, + ACTIONS(3), 1, sym_comment, - STATE(9571), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16918), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [359857] = 4, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16759), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [358690] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(16261), 1, anon_sym_COLON, - ACTIONS(16920), 1, + ACTIONS(16761), 1, anon_sym_RPAREN, - STATE(10022), 1, - sym_gnu_asm_clobber_list, - [359870] = 4, + STATE(11569), 1, + sym_gnu_asm_goto_list, + [358703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(16275), 1, anon_sym_COLON, - ACTIONS(16922), 1, + ACTIONS(16763), 1, anon_sym_RPAREN, - STATE(10023), 1, - sym_gnu_asm_input_operand_list, - [359883] = 4, + STATE(9934), 1, + sym_gnu_asm_clobber_list, + [358716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(16924), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [359896] = 4, + ACTIONS(16765), 1, + anon_sym_catch, + STATE(422), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [358727] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(16926), 1, + ACTIONS(16261), 1, + anon_sym_COLON, + ACTIONS(16767), 1, anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [359909] = 4, + STATE(11580), 1, + sym_gnu_asm_goto_list, + [358740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(16771), 1, + anon_sym_RPAREN, + ACTIONS(16769), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [358751] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16420), 1, anon_sym_LPAREN2, - ACTIONS(16928), 1, + ACTIONS(16773), 1, anon_sym_constexpr, STATE(203), 1, sym_condition_clause, - [359922] = 4, + [358764] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12362), 1, + anon_sym_COMMA, + ACTIONS(16775), 1, + anon_sym_RPAREN, + STATE(10006), 1, + aux_sym_generic_expression_repeat1, + [358777] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9586), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16777), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [358788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16779), 1, + anon_sym_GT2, + STATE(10037), 1, + aux_sym_template_argument_list_repeat1, + [358801] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16277), 1, + anon_sym_COMMA, + ACTIONS(16781), 1, + anon_sym_RBRACK_RBRACK, + STATE(10032), 1, + aux_sym_attribute_declaration_repeat1, + [358814] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16277), 1, + anon_sym_COMMA, + ACTIONS(16783), 1, + anon_sym_RBRACK_RBRACK, + STATE(10032), 1, + aux_sym_attribute_declaration_repeat1, + [358827] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9635), 1, + anon_sym_SEMI, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(2853), 1, + sym_template_argument_list, + [358840] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16281), 1, + anon_sym_COMMA, + ACTIONS(16783), 1, + anon_sym_RBRACK_RBRACK, + STATE(10052), 1, + aux_sym_attribute_declaration_repeat2, + [358853] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16785), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16787), 2, anon_sym_COMMA, - ACTIONS(16018), 1, anon_sym_LBRACE, - STATE(9740), 1, - aux_sym_base_class_clause_repeat1, - [359935] = 4, + [358864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(16930), 1, - anon_sym_RPAREN, - STATE(10857), 1, - sym_gnu_asm_goto_list, - [359948] = 4, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16789), 1, + anon_sym_SEMI, + STATE(10954), 1, + sym_attribute_declaration, + [358877] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(16932), 1, + ACTIONS(12374), 1, + anon_sym_COMMA, + ACTIONS(12446), 1, anon_sym_RPAREN, - STATE(10025), 1, - sym_gnu_asm_clobber_list, - [359961] = 4, + STATE(10038), 1, + aux_sym_argument_list_repeat1, + [358890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16934), 1, + ACTIONS(16791), 1, anon_sym_default, - ACTIONS(16936), 1, + ACTIONS(16793), 1, anon_sym_delete, - ACTIONS(16938), 1, + ACTIONS(16795), 1, aux_sym_pure_virtual_clause_token1, - [359974] = 4, + [358903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(16275), 1, anon_sym_COLON, - ACTIONS(16940), 1, + ACTIONS(16797), 1, anon_sym_RPAREN, - STATE(10861), 1, - sym_gnu_asm_goto_list, - [359987] = 4, + STATE(9680), 1, + sym_gnu_asm_clobber_list, + [358916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(16576), 1, anon_sym_COMMA, - ACTIONS(16018), 1, + ACTIONS(16799), 1, anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [360000] = 4, + STATE(10088), 1, + aux_sym_field_initializer_list_repeat1, + [358929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(12448), 1, anon_sym_COMMA, - ACTIONS(16942), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [360013] = 4, + ACTIONS(12450), 1, + anon_sym_RBRACE, + STATE(10040), 1, + aux_sym_initializer_list_repeat1, + [358942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16801), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16803), 2, anon_sym_COMMA, - ACTIONS(16944), 1, + anon_sym_LBRACE, + [358953] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16281), 1, + anon_sym_COMMA, + ACTIONS(16781), 1, + anon_sym_RBRACK_RBRACK, + STATE(10052), 1, + aux_sym_attribute_declaration_repeat2, + [358966] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16805), 1, anon_sym_SEMI, - STATE(10080), 1, + STATE(10058), 1, aux_sym_declaration_repeat1, - [360026] = 3, + [358979] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16946), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(16948), 2, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16807), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [358992] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, anon_sym_COMMA, + ACTIONS(16809), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [359005] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14254), 1, anon_sym_LBRACE, - [360037] = 4, + ACTIONS(14258), 1, + anon_sym_requires, + STATE(10927), 1, + sym_requires_clause, + [359018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16634), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(16950), 1, - anon_sym_GT2, - STATE(10169), 1, - aux_sym_template_parameter_list_repeat1, - [360050] = 4, + ACTIONS(16811), 1, + anon_sym_RPAREN, + STATE(10068), 1, + aux_sym_parameter_list_repeat1, + [359031] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16952), 1, + ACTIONS(5714), 1, + anon_sym_RBRACE, + ACTIONS(16813), 1, anon_sym_COMMA, - ACTIONS(16955), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [360063] = 4, - ACTIONS(14065), 1, + STATE(9838), 1, + aux_sym_initializer_list_repeat1, + [359044] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(16779), 1, - anon_sym_LPAREN2, - ACTIONS(16957), 1, - aux_sym_preproc_include_token2, - STATE(10803), 1, - sym_preproc_argument_list, - [360076] = 4, + ACTIONS(16627), 1, + anon_sym_catch, + STATE(290), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [359055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16948), 1, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(15149), 1, anon_sym_LBRACE, - ACTIONS(16959), 1, - anon_sym_COMMA, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [360089] = 4, + STATE(11018), 1, + sym_requires_clause, + [359068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16962), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(16965), 1, + ACTIONS(16815), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [360102] = 3, - ACTIONS(14065), 1, - sym_comment, - STATE(9520), 1, - aux_sym_char_literal_repeat1, - ACTIONS(16967), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [360113] = 3, + STATE(9990), 1, + aux_sym_attribute_declaration_repeat1, + [359081] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16971), 1, + ACTIONS(16817), 1, + anon_sym_COMMA, + ACTIONS(16819), 1, anon_sym_RPAREN, - ACTIONS(16969), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [360124] = 4, - ACTIONS(14065), 1, + STATE(9774), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [359094] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(16779), 1, - anon_sym_LPAREN2, - ACTIONS(16973), 1, - aux_sym_preproc_include_token2, - STATE(10803), 1, - sym_preproc_argument_list, - [360137] = 4, + ACTIONS(9830), 1, + anon_sym___attribute, + ACTIONS(9832), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [359105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(9834), 1, + anon_sym___attribute, + ACTIONS(9836), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [359116] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(16975), 1, + ACTIONS(16821), 1, anon_sym_RPAREN, - STATE(11173), 1, - sym_gnu_asm_goto_list, - [360150] = 4, + STATE(10059), 1, + sym_gnu_asm_output_operand_list, + [359129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16977), 1, - anon_sym_default, - ACTIONS(16979), 1, - anon_sym_delete, - ACTIONS(16981), 1, - aux_sym_pure_virtual_clause_token1, - [360163] = 4, + ACTIONS(12374), 1, + anon_sym_COMMA, + ACTIONS(12484), 1, + anon_sym_RPAREN, + STATE(10112), 1, + aux_sym_argument_list_repeat1, + [359142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12324), 1, anon_sym_COMMA, - ACTIONS(16983), 1, + ACTIONS(12422), 1, + anon_sym_RBRACK, + STATE(10075), 1, + aux_sym_subscript_argument_list_repeat1, + [359155] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16277), 1, + anon_sym_COMMA, + ACTIONS(16823), 1, anon_sym_RBRACK_RBRACK, - STATE(10055), 1, + STATE(10032), 1, aux_sym_attribute_declaration_repeat1, - [360176] = 4, + [359168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16281), 1, + anon_sym_COMMA, + ACTIONS(16823), 1, + anon_sym_RBRACK_RBRACK, + STATE(10052), 1, + aux_sym_attribute_declaration_repeat2, + [359181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16825), 1, + anon_sym_GT2, + STATE(10064), 1, + aux_sym_template_argument_list_repeat1, + [359194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16697), 1, + anon_sym_catch, + STATE(2926), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [359205] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16827), 1, + anon_sym_SEMI, + STATE(10001), 1, + aux_sym_declaration_repeat1, + [359218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, - anon_sym_COMMA, - ACTIONS(16983), 1, - anon_sym_RBRACK_RBRACK, - STATE(10056), 1, - aux_sym_attribute_declaration_repeat2, - [360189] = 4, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(16829), 1, + anon_sym_RPAREN, + STATE(9659), 1, + sym_gnu_asm_clobber_list, + [359231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9471), 1, - anon_sym_COMMA, - ACTIONS(16985), 1, - anon_sym_RBRACK, - STATE(9899), 1, - aux_sym_structured_binding_declarator_repeat1, - [360202] = 4, + ACTIONS(16619), 1, + anon_sym_catch, + STATE(566), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [359242] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(16987), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [360215] = 4, + ACTIONS(16831), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [359255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(16987), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [360228] = 4, + ACTIONS(16833), 1, + anon_sym_SEMI, + STATE(10084), 1, + aux_sym_declaration_repeat1, + [359268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, - anon_sym_COMMA, - ACTIONS(12431), 1, + ACTIONS(16837), 1, anon_sym_RPAREN, - STATE(10113), 1, - aux_sym_argument_list_repeat1, - [360241] = 3, - ACTIONS(14065), 1, + ACTIONS(16835), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [359279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + ACTIONS(16839), 1, + anon_sym_constexpr, + STATE(236), 1, + sym_condition_clause, + [359292] = 3, + ACTIONS(14045), 1, sym_comment, - STATE(9545), 1, + STATE(9588), 1, aux_sym_char_literal_repeat1, - ACTIONS(16989), 2, + ACTIONS(16841), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [360252] = 3, + [359303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16853), 1, - anon_sym_catch, - STATE(2906), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [360263] = 4, + ACTIONS(12324), 1, + anon_sym_COMMA, + ACTIONS(16843), 1, + anon_sym_RBRACK, + STATE(10095), 1, + aux_sym_subscript_argument_list_repeat1, + [359316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16845), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [359329] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16291), 1, anon_sym_COLON, - ACTIONS(16991), 1, + ACTIONS(16847), 1, anon_sym_RPAREN, - STATE(11177), 1, - sym_gnu_asm_goto_list, - [360276] = 3, + STATE(9948), 1, + sym_gnu_asm_input_operand_list, + [359342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16644), 1, - anon_sym_COLON_COLON, - ACTIONS(16993), 2, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16849), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [360287] = 4, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [359355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(671), 1, - sym_declaration_list, - [360300] = 4, + ACTIONS(15847), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(16851), 2, + anon_sym_COMMA, + anon_sym_GT2, + [359366] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(16995), 1, - anon_sym_SEMI, - STATE(10068), 1, - aux_sym_declaration_repeat1, - [360313] = 4, + ACTIONS(16853), 1, + anon_sym_RPAREN, + STATE(9809), 1, + aux_sym_argument_list_repeat1, + [359379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16997), 1, - anon_sym_default, - ACTIONS(16999), 1, - anon_sym_delete, - ACTIONS(17001), 1, - aux_sym_pure_virtual_clause_token1, - [360326] = 4, + ACTIONS(15929), 1, + anon_sym_COMMA, + ACTIONS(15931), 1, + anon_sym_LBRACE, + STATE(9881), 1, + aux_sym_base_class_clause_repeat1, + [359392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(17003), 1, + ACTIONS(16315), 1, + anon_sym_COMMA, + ACTIONS(16855), 1, anon_sym_RPAREN, - STATE(10103), 1, - sym_gnu_asm_clobber_list, - [360339] = 4, + STATE(10089), 1, + aux_sym_parameter_list_repeat1, + [359405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12433), 1, + ACTIONS(16857), 1, anon_sym_COMMA, - ACTIONS(12435), 1, - anon_sym_RBRACE, - STATE(10118), 1, - aux_sym_initializer_list_repeat1, - [360352] = 4, + ACTIONS(16860), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [359418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16862), 1, + anon_sym_default, + ACTIONS(16864), 1, + anon_sym_delete, + ACTIONS(16866), 1, + aux_sym_pure_virtual_clause_token1, + [359431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(17005), 1, + ACTIONS(16868), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(10032), 1, aux_sym_attribute_declaration_repeat1, - [360365] = 4, + [359444] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(17005), 1, + ACTIONS(16868), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(10052), 1, aux_sym_attribute_declaration_repeat2, - [360378] = 4, + [359457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(12483), 1, + ACTIONS(12486), 1, anon_sym_RPAREN, - STATE(10082), 1, + STATE(10011), 1, aux_sym_argument_list_repeat1, - [360391] = 3, - ACTIONS(14065), 1, + [359470] = 4, + ACTIONS(3), 1, sym_comment, - STATE(9623), 1, - aux_sym_char_literal_repeat1, - ACTIONS(17007), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [360402] = 4, + ACTIONS(12374), 1, + anon_sym_COMMA, + ACTIONS(12424), 1, + anon_sym_RPAREN, + STATE(9985), 1, + aux_sym_argument_list_repeat1, + [359483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12553), 1, + ACTIONS(12488), 1, anon_sym_COMMA, - ACTIONS(12555), 1, + ACTIONS(12490), 1, anon_sym_RBRACE, - STATE(10084), 1, + STATE(10013), 1, aux_sym_initializer_list_repeat1, - [360415] = 3, - ACTIONS(14065), 1, - sym_comment, - STATE(9494), 1, - aux_sym_char_literal_repeat1, - ACTIONS(17009), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [360426] = 4, + [359496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, - anon_sym_COLON, - ACTIONS(17011), 1, - anon_sym_RPAREN, - STATE(10085), 1, - sym_gnu_asm_output_operand_list, - [360439] = 4, + ACTIONS(16765), 1, + anon_sym_catch, + STATE(522), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [359507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(17013), 1, + ACTIONS(16870), 1, anon_sym_RPAREN, - STATE(10125), 1, + STATE(10017), 1, sym_gnu_asm_output_operand_list, - [360452] = 4, + [359520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17015), 1, + ACTIONS(16872), 1, anon_sym_GT2, - STATE(10089), 1, + STATE(10021), 1, aux_sym_template_argument_list_repeat1, - [360465] = 4, + [359533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17017), 1, + ACTIONS(16874), 1, anon_sym_GT2, - STATE(10130), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [360478] = 4, + [359546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17019), 1, - anon_sym_RBRACK_RBRACK, - STATE(9676), 1, - aux_sym_attribute_declaration_repeat1, - [360491] = 4, + ACTIONS(16876), 1, + anon_sym_SEMI, + STATE(10025), 1, + aux_sym_declaration_repeat1, + [359559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17021), 1, + ACTIONS(16878), 1, anon_sym_SEMI, - STATE(10093), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [360504] = 4, + [359572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17023), 1, + ACTIONS(16880), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [360517] = 4, + [359585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(17025), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [360530] = 3, - ACTIONS(14065), 1, + ACTIONS(16882), 1, + anon_sym_RPAREN, + STATE(10027), 1, + aux_sym_parameter_list_repeat1, + [359598] = 3, + ACTIONS(14045), 1, sym_comment, - STATE(9493), 1, + STATE(9638), 1, aux_sym_char_literal_repeat1, - ACTIONS(17027), 2, + ACTIONS(16884), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [360541] = 4, + [359609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(17029), 1, + ACTIONS(16886), 1, anon_sym_RPAREN, - STATE(10094), 1, - aux_sym_parameter_list_repeat1, - [360554] = 3, - ACTIONS(14065), 1, + STATE(9809), 1, + aux_sym_argument_list_repeat1, + [359622] = 2, + ACTIONS(3), 1, sym_comment, - STATE(9521), 1, - aux_sym_char_literal_repeat1, - ACTIONS(17031), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [360565] = 4, + ACTIONS(16888), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [359631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16890), 1, anon_sym_COMMA, - ACTIONS(17019), 1, - anon_sym_RBRACK_RBRACK, - STATE(9677), 1, - aux_sym_attribute_declaration_repeat2, - [360578] = 3, - ACTIONS(14065), 1, + ACTIONS(16893), 1, + anon_sym_RPAREN, + STATE(10006), 1, + aux_sym_generic_expression_repeat1, + [359644] = 4, + ACTIONS(3), 1, sym_comment, - STATE(9486), 1, - aux_sym_char_literal_repeat1, - ACTIONS(17033), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [360589] = 4, + ACTIONS(16895), 1, + anon_sym_default, + ACTIONS(16897), 1, + anon_sym_delete, + ACTIONS(16899), 1, + aux_sym_pure_virtual_clause_token1, + [359657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(17035), 1, + ACTIONS(16901), 1, anon_sym_RPAREN, - STATE(9952), 1, + STATE(10117), 1, + aux_sym_throw_specifier_repeat1, + [359670] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16903), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_GT2, + [359679] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12374), 1, + anon_sym_COMMA, + ACTIONS(16905), 1, + anon_sym_RPAREN, + STATE(9809), 1, aux_sym_argument_list_repeat1, - [360602] = 3, - ACTIONS(14065), 1, + [359692] = 4, + ACTIONS(3), 1, sym_comment, - STATE(9446), 1, - aux_sym_char_literal_repeat1, - ACTIONS(17037), 2, - aux_sym_char_literal_token1, - sym_escape_sequence, - [360613] = 3, - ACTIONS(14065), 1, + ACTIONS(12374), 1, + anon_sym_COMMA, + ACTIONS(16907), 1, + anon_sym_RPAREN, + STATE(9809), 1, + aux_sym_argument_list_repeat1, + [359705] = 4, + ACTIONS(3), 1, sym_comment, - STATE(9464), 1, + ACTIONS(7355), 1, + anon_sym_LBRACE, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + STATE(517), 1, + sym_declaration_list, + [359718] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5908), 1, + anon_sym_RBRACE, + ACTIONS(16909), 1, + anon_sym_COMMA, + STATE(9838), 1, + aux_sym_initializer_list_repeat1, + [359731] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5904), 1, + anon_sym_RBRACE, + ACTIONS(16911), 1, + anon_sym_COMMA, + STATE(9838), 1, + aux_sym_initializer_list_repeat1, + [359744] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7361), 1, + anon_sym_LBRACE, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + STATE(828), 1, + sym_declaration_list, + [359757] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9511), 1, aux_sym_char_literal_repeat1, - ACTIONS(17039), 2, + ACTIONS(16913), 2, aux_sym_char_literal_token1, sym_escape_sequence, - [360624] = 4, + [359768] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16291), 1, + anon_sym_COLON, + ACTIONS(16915), 1, + anon_sym_RPAREN, + STATE(10042), 1, + sym_gnu_asm_input_operand_list, + [359781] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16404), 1, + anon_sym_COLON, + ACTIONS(16917), 1, + anon_sym_RPAREN, + STATE(10044), 1, + sym_gnu_asm_output_operand_list, + [359794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16919), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [359807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16921), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [359820] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(16923), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [359833] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17041), 1, + ACTIONS(16925), 1, anon_sym_SEMI, - STATE(10141), 1, + STATE(10045), 1, aux_sym_declaration_repeat1, - [360637] = 4, + [359846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16638), 1, - anon_sym_COMMA, - ACTIONS(17043), 1, - anon_sym_RPAREN, - STATE(10174), 1, - aux_sym_requires_parameter_list_repeat1, - [360650] = 4, + ACTIONS(16927), 1, + anon_sym_default, + ACTIONS(16929), 1, + anon_sym_delete, + ACTIONS(16931), 1, + aux_sym_pure_virtual_clause_token1, + [359859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17045), 1, + ACTIONS(16933), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [360663] = 4, + [359872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17047), 1, + ACTIONS(16935), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [360676] = 4, + [359885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, + ACTIONS(14258), 1, anon_sym_requires, - ACTIONS(17049), 1, + ACTIONS(15159), 1, anon_sym_LBRACE, - STATE(11309), 1, + STATE(11224), 1, sym_requires_clause, - [360689] = 4, + [359898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(17051), 1, + ACTIONS(16937), 1, anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [360702] = 4, + STATE(10078), 1, + aux_sym_parameter_list_repeat1, + [359911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7363), 1, + anon_sym_LBRACE, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + STATE(757), 1, + sym_declaration_list, + [359924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(17053), 1, + ACTIONS(16939), 1, anon_sym_RPAREN, - STATE(10147), 1, - aux_sym_parameter_list_repeat1, - [360715] = 4, + STATE(10046), 1, + aux_sym_throw_specifier_repeat1, + [359937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5908), 1, + ACTIONS(16941), 1, + anon_sym_COMMA, + ACTIONS(16944), 1, + anon_sym_GT2, + STATE(10030), 1, + aux_sym_template_parameter_list_repeat1, + [359950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5910), 1, anon_sym_RBRACE, - ACTIONS(17055), 1, + ACTIONS(16946), 1, anon_sym_COMMA, - STATE(9972), 1, + STATE(9838), 1, aux_sym_initializer_list_repeat1, - [360728] = 4, + [359963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(16948), 1, + anon_sym_COMMA, + ACTIONS(16951), 1, + anon_sym_RBRACK_RBRACK, + STATE(10032), 1, + aux_sym_attribute_declaration_repeat1, + [359976] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16291), 1, anon_sym_COLON, - ACTIONS(17057), 1, + ACTIONS(16953), 1, anon_sym_RPAREN, - STATE(10099), 1, + STATE(10110), 1, sym_gnu_asm_input_operand_list, - [360741] = 4, + [359989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(17059), 1, + ACTIONS(16955), 1, anon_sym_RPAREN, - STATE(10100), 1, + STATE(10111), 1, sym_gnu_asm_output_operand_list, - [360754] = 4, + [360002] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17061), 1, + ACTIONS(16957), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [360767] = 4, + [360015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17063), 1, + ACTIONS(16959), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [360780] = 4, + [360028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17065), 1, + ACTIONS(16961), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [360793] = 4, + [360041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(17067), 1, - anon_sym_RBRACK_RBRACK, - STATE(9773), 1, - aux_sym_attribute_declaration_repeat1, - [360806] = 4, + ACTIONS(16963), 1, + anon_sym_RPAREN, + STATE(9809), 1, + aux_sym_argument_list_repeat1, + [360054] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9648), 1, + aux_sym_char_literal_repeat1, + ACTIONS(16965), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(5748), 1, + anon_sym_RBRACE, + ACTIONS(16967), 1, anon_sym_COMMA, - ACTIONS(17069), 1, - anon_sym_SEMI, - STATE(10101), 1, - aux_sym_declaration_repeat1, - [360819] = 4, + STATE(9838), 1, + aux_sym_initializer_list_repeat1, + [360078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17071), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(16969), 1, anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [360832] = 4, + STATE(11212), 1, + sym_attribute_declaration, + [360091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(16971), 1, + anon_sym_RPAREN, + STATE(10048), 1, + sym_gnu_asm_clobber_list, + [360104] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16973), 1, + anon_sym_default, + ACTIONS(16975), 1, + anon_sym_delete, + ACTIONS(16977), 1, + aux_sym_pure_virtual_clause_token1, + [360117] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16291), 1, + anon_sym_COLON, + ACTIONS(16979), 1, + anon_sym_RPAREN, + STATE(10049), 1, + sym_gnu_asm_input_operand_list, + [360130] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17073), 1, + ACTIONS(16981), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [360845] = 4, + [360143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(17075), 1, + ACTIONS(16983), 1, anon_sym_RPAREN, - STATE(10185), 1, - aux_sym_parameter_list_repeat1, - [360858] = 4, + STATE(9694), 1, + aux_sym_throw_specifier_repeat1, + [360156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, - anon_sym_COMMA, - ACTIONS(17077), 1, + ACTIONS(15776), 3, + anon_sym_SEMI, + anon_sym_COLON_COLON, + anon_sym_LBRACE, + [360165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16261), 1, + anon_sym_COLON, + ACTIONS(16985), 1, anon_sym_RPAREN, - STATE(10102), 1, - aux_sym_throw_specifier_repeat1, - [360871] = 3, + STATE(10985), 1, + sym_gnu_asm_goto_list, + [360178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16350), 1, - anon_sym_catch, - STATE(2904), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [360882] = 3, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(16987), 1, + anon_sym_RPAREN, + STATE(10051), 1, + sym_gnu_asm_clobber_list, + [360191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 1, + ACTIONS(9844), 1, anon_sym___attribute, - ACTIONS(9894), 2, + ACTIONS(9846), 2, anon_sym___attribute__, anon_sym_LBRACK_LBRACK, - [360893] = 4, + [360202] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(16261), 1, + anon_sym_COLON, + ACTIONS(16989), 1, + anon_sym_RPAREN, + STATE(11003), 1, + sym_gnu_asm_goto_list, + [360215] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16991), 1, anon_sym_COMMA, - ACTIONS(12439), 1, - anon_sym_RBRACK, - STATE(10149), 1, - aux_sym_subscript_argument_list_repeat1, - [360906] = 4, + ACTIONS(16994), 1, + anon_sym_RBRACK_RBRACK, + STATE(10052), 1, + aux_sym_attribute_declaration_repeat2, + [360228] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(17079), 1, - anon_sym_RPAREN, - STATE(10104), 1, - sym_gnu_asm_clobber_list, - [360919] = 4, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(16996), 1, + anon_sym_SEMI, + STATE(10113), 1, + aux_sym_declaration_repeat1, + [360241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(17081), 1, + ACTIONS(16998), 1, anon_sym_RPAREN, - STATE(10105), 1, - sym_gnu_asm_input_operand_list, - [360932] = 4, + STATE(9919), 1, + sym_gnu_asm_output_operand_list, + [360254] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17083), 1, + ACTIONS(17000), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [360945] = 4, + [360267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(12362), 1, anon_sym_COMMA, - ACTIONS(17085), 1, + ACTIONS(17002), 1, anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [360958] = 4, + STATE(10006), 1, + aux_sym_generic_expression_repeat1, + [360280] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9468), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17004), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360291] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(17087), 1, - anon_sym_RPAREN, - STATE(11202), 1, - sym_gnu_asm_goto_list, - [360971] = 4, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(17006), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [360304] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(16291), 1, anon_sym_COLON, - ACTIONS(17089), 1, + ACTIONS(17008), 1, anon_sym_RPAREN, - STATE(11185), 1, - sym_gnu_asm_goto_list, - [360984] = 4, + STATE(10124), 1, + sym_gnu_asm_input_operand_list, + [360317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(17091), 1, + ACTIONS(17010), 1, anon_sym_RPAREN, - STATE(10106), 1, - sym_gnu_asm_clobber_list, - [360997] = 4, + STATE(10125), 1, + sym_gnu_asm_output_operand_list, + [360330] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(17093), 1, + ACTIONS(17012), 1, + anon_sym_COMMA, + ACTIONS(17015), 1, anon_sym_RPAREN, - STATE(11188), 1, - sym_gnu_asm_goto_list, - [361010] = 4, + STATE(10061), 1, + aux_sym_requires_parameter_list_repeat1, + [360343] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17095), 1, - anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [361023] = 4, + ACTIONS(17017), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [360356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(17019), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [360369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(17021), 1, + anon_sym_GT2, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [360382] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9436), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17023), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360393] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(17025), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [360406] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16277), 1, + anon_sym_COMMA, + ACTIONS(17027), 1, + anon_sym_RBRACK_RBRACK, + STATE(9968), 1, + aux_sym_attribute_declaration_repeat1, + [360419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(17097), 1, + ACTIONS(17029), 1, anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [361036] = 4, + STATE(10078), 1, + aux_sym_parameter_list_repeat1, + [360432] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16627), 1, + anon_sym_catch, + STATE(291), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [360443] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(17067), 1, + ACTIONS(17027), 1, anon_sym_RBRACK_RBRACK, - STATE(9775), 1, + STATE(9969), 1, aux_sym_attribute_declaration_repeat2, - [361049] = 4, + [360456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(17099), 1, + ACTIONS(17031), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(9940), 1, aux_sym_attribute_declaration_repeat1, - [361062] = 4, + [360469] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9614), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17033), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360480] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17099), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [361075] = 4, + ACTIONS(17035), 1, + anon_sym_SEMI, + STATE(9872), 1, + aux_sym_declaration_repeat1, + [360493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16670), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17101), 1, - anon_sym_RPAREN, - STATE(9878), 1, - aux_sym_preproc_params_repeat1, - [361088] = 4, + ACTIONS(17037), 1, + anon_sym_SEMI, + STATE(10126), 1, + aux_sym_declaration_repeat1, + [360506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12324), 1, + anon_sym_COMMA, + ACTIONS(17039), 1, + anon_sym_RBRACK, + STATE(10095), 1, + aux_sym_subscript_argument_list_repeat1, + [360519] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9424), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17041), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360530] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9453), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17043), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360541] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17045), 1, anon_sym_COMMA, - ACTIONS(17103), 1, + ACTIONS(17048), 1, anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [361101] = 3, + STATE(10078), 1, + aux_sym_parameter_list_repeat1, + [360554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17107), 1, + ACTIONS(17050), 3, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(17105), 2, + anon_sym_COLON, + [360563] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9518), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17052), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(17054), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [360587] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(14298), 1, + anon_sym_LBRACE, + STATE(11237), 1, + sym_requires_clause, + [360600] = 3, + ACTIONS(14045), 1, + sym_comment, + STATE(9630), 1, + aux_sym_char_literal_repeat1, + ACTIONS(17056), 2, + aux_sym_char_literal_token1, + sym_escape_sequence, + [360611] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, anon_sym_COMMA, + ACTIONS(17058), 1, anon_sym_SEMI, - [361112] = 4, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [360624] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(17109), 1, + ACTIONS(17060), 1, anon_sym_RBRACK_RBRACK, - STATE(10132), 1, + STATE(10102), 1, aux_sym_attribute_declaration_repeat1, - [361125] = 4, + [360637] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16309), 1, + anon_sym_COMMA, + ACTIONS(17062), 1, + anon_sym_RPAREN, + STATE(10115), 1, + aux_sym_throw_specifier_repeat1, + [360650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(17109), 1, + ACTIONS(17060), 1, anon_sym_RBRACK_RBRACK, - STATE(10134), 1, + STATE(10103), 1, aux_sym_attribute_declaration_repeat2, - [361138] = 4, + [360663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, + ACTIONS(17064), 1, + anon_sym_COMMA, + ACTIONS(17067), 1, anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(692), 1, - sym_declaration_list, - [361151] = 4, + STATE(10088), 1, + aux_sym_field_initializer_list_repeat1, + [360676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, - anon_sym_RBRACE, - ACTIONS(17111), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - STATE(9972), 1, - aux_sym_initializer_list_repeat1, - [361164] = 3, + ACTIONS(17069), 1, + anon_sym_RPAREN, + STATE(10078), 1, + aux_sym_parameter_list_repeat1, + [360689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16466), 1, + ACTIONS(16765), 1, anon_sym_catch, - STATE(396), 2, + STATE(520), 2, sym_catch_clause, aux_sym_constructor_try_statement_repeat1, - [361175] = 4, + [360700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(17071), 1, + anon_sym_GT2, + STATE(9998), 1, + aux_sym_template_argument_list_repeat1, + [360713] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(12539), 1, + ACTIONS(17073), 1, anon_sym_RPAREN, - STATE(9866), 1, - aux_sym_argument_list_repeat1, - [361188] = 4, + STATE(10130), 1, + aux_sym_throw_specifier_repeat1, + [360726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(12426), 1, + anon_sym_COMMA, + ACTIONS(12428), 1, + anon_sym_RBRACE, + STATE(10183), 1, + aux_sym_initializer_list_repeat1, + [360739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13993), 1, + anon_sym_COMMA, + ACTIONS(17075), 1, + anon_sym_RPAREN, + STATE(10127), 1, + aux_sym_preproc_argument_list_repeat1, + [360752] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12714), 1, + anon_sym_RBRACK, + ACTIONS(17077), 1, + anon_sym_COMMA, + STATE(10095), 1, + aux_sym_subscript_argument_list_repeat1, + [360765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17113), 1, + ACTIONS(17080), 1, anon_sym_SEMI, - STATE(10145), 1, + STATE(10121), 1, aux_sym_declaration_repeat1, - [361201] = 4, + [360778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(17115), 1, - anon_sym_SEMI, - STATE(10812), 1, - sym_attribute_declaration, - [361214] = 4, + ACTIONS(16281), 1, + anon_sym_COMMA, + ACTIONS(17031), 1, + anon_sym_RBRACK_RBRACK, + STATE(9952), 1, + aux_sym_attribute_declaration_repeat2, + [360791] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(17117), 1, + ACTIONS(17082), 1, anon_sym_SEMI, - STATE(10829), 1, + STATE(10785), 1, sym_attribute_declaration, - [361227] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(17119), 1, - anon_sym_RPAREN, - STATE(9777), 1, - sym_gnu_asm_clobber_list, - [361240] = 4, + [360804] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(16291), 1, anon_sym_COLON, - ACTIONS(17121), 1, + ACTIONS(17084), 1, anon_sym_RPAREN, - STATE(10182), 1, + STATE(9669), 1, sym_gnu_asm_input_operand_list, - [361253] = 4, + [360817] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(17123), 1, + ACTIONS(17086), 1, anon_sym_RPAREN, - STATE(10183), 1, + STATE(9670), 1, sym_gnu_asm_output_operand_list, - [361266] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(17125), 1, - anon_sym_RPAREN, - STATE(9807), 1, - sym_gnu_asm_input_operand_list, - [361279] = 4, + [360830] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17127), 1, + ACTIONS(17088), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [361292] = 4, + [360843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(17129), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [361305] = 4, + ACTIONS(17090), 1, + anon_sym_RBRACK_RBRACK, + STATE(10032), 1, + aux_sym_attribute_declaration_repeat1, + [360856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(17131), 1, - anon_sym_GT2, - STATE(10136), 1, - aux_sym_template_argument_list_repeat1, - [361318] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(49), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(17133), 1, - anon_sym_SEMI, - STATE(10832), 1, - sym_attribute_declaration, - [361331] = 4, + ACTIONS(17090), 1, + anon_sym_RBRACK_RBRACK, + STATE(10052), 1, + aux_sym_attribute_declaration_repeat2, + [360869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(17135), 1, - anon_sym_RBRACK_RBRACK, - STATE(10031), 1, - aux_sym_attribute_declaration_repeat1, - [361344] = 3, + ACTIONS(12496), 1, + anon_sym_RPAREN, + STATE(10135), 1, + aux_sym_argument_list_repeat1, + [360882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(15776), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(17137), 2, + ACTIONS(12384), 1, anon_sym_COMMA, + ACTIONS(17092), 1, anon_sym_GT2, - [361355] = 4, + STATE(9988), 1, + aux_sym_template_argument_list_repeat1, + [360895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, - anon_sym_COMMA, - ACTIONS(17135), 1, - anon_sym_RBRACK_RBRACK, - STATE(10034), 1, - aux_sym_attribute_declaration_repeat2, - [361368] = 4, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(17094), 1, + anon_sym_RPAREN, + STATE(9664), 1, + sym_gnu_asm_clobber_list, + [360908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(12493), 1, - anon_sym_RPAREN, - STATE(10155), 1, - aux_sym_argument_list_repeat1, - [361381] = 4, + ACTIONS(17096), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [360921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(17139), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17142), 1, + ACTIONS(17098), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [361394] = 4, + [360934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(17144), 1, + ACTIONS(17100), 1, anon_sym_RPAREN, - STATE(10157), 1, + STATE(10136), 1, sym_gnu_asm_output_operand_list, - [361407] = 4, + [360947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(17102), 1, + anon_sym_RPAREN, + STATE(10146), 1, + sym_gnu_asm_clobber_list, + [360960] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16291), 1, + anon_sym_COLON, + ACTIONS(17104), 1, + anon_sym_RPAREN, + STATE(10148), 1, + sym_gnu_asm_input_operand_list, + [360973] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12374), 1, anon_sym_COMMA, - ACTIONS(17146), 1, + ACTIONS(17106), 1, + anon_sym_RPAREN, + STATE(9809), 1, + aux_sym_argument_list_repeat1, + [360986] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13902), 1, + anon_sym_COMMA, + ACTIONS(17108), 1, anon_sym_SEMI, - STATE(10186), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [361420] = 4, + [360999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17148), 1, + ACTIONS(17110), 1, anon_sym_GT2, - STATE(10161), 1, + STATE(10140), 1, aux_sym_template_argument_list_repeat1, - [361433] = 4, + [361012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(17150), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [361446] = 4, + ACTIONS(17112), 1, + anon_sym_RPAREN, + STATE(9694), 1, + aux_sym_throw_specifier_repeat1, + [361025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(16291), 1, + anon_sym_COLON, + ACTIONS(17114), 1, + anon_sym_RPAREN, + STATE(9665), 1, + sym_gnu_asm_input_operand_list, + [361038] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(17152), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [361459] = 3, + ACTIONS(17116), 1, + anon_sym_RPAREN, + STATE(9694), 1, + aux_sym_throw_specifier_repeat1, + [361051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16402), 1, - anon_sym_catch, - STATE(289), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [361470] = 4, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(15183), 1, + anon_sym_LBRACE, + STATE(10827), 1, + sym_requires_clause, + [361064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17154), 1, + ACTIONS(17118), 1, anon_sym_SEMI, - STATE(10164), 1, + STATE(10143), 1, aux_sym_declaration_repeat1, - [361483] = 4, + [361077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17156), 1, + ACTIONS(17120), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [361496] = 4, + [361090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17158), 1, + ACTIONS(17122), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [361509] = 4, + [361103] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(17160), 1, + ACTIONS(17124), 1, anon_sym_RPAREN, - STATE(10165), 1, + STATE(10144), 1, aux_sym_parameter_list_repeat1, - [361522] = 4, + [361116] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, - anon_sym_COMMA, - ACTIONS(17162), 1, + ACTIONS(14258), 1, + anon_sym_requires, + ACTIONS(15185), 1, + anon_sym_LBRACE, + STATE(11216), 1, + sym_requires_clause, + [361129] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(17126), 1, anon_sym_RPAREN, - STATE(10185), 1, - aux_sym_parameter_list_repeat1, - [361535] = 3, + STATE(10133), 1, + sym_gnu_asm_clobber_list, + [361142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16350), 1, - anon_sym_catch, - STATE(2922), 2, - sym_catch_clause, - aux_sym_constructor_try_statement_repeat1, - [361546] = 4, + ACTIONS(16291), 1, + anon_sym_COLON, + ACTIONS(17128), 1, + anon_sym_RPAREN, + STATE(10134), 1, + sym_gnu_asm_input_operand_list, + [361155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12364), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17164), 1, - anon_sym_RBRACK, - STATE(10201), 1, - aux_sym_subscript_argument_list_repeat1, - [361559] = 4, + ACTIONS(17130), 1, + anon_sym_SEMI, + STATE(9856), 1, + aux_sym_declaration_repeat1, + [361168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(15107), 1, - anon_sym_LBRACE, - STATE(11324), 1, - sym_requires_clause, - [361572] = 4, + ACTIONS(14204), 1, + anon_sym_RPAREN, + ACTIONS(17132), 1, + anon_sym_COMMA, + STATE(10127), 1, + aux_sym_preproc_argument_list_repeat1, + [361181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(17135), 1, anon_sym_COMMA, - ACTIONS(17166), 1, + ACTIONS(17138), 1, anon_sym_RPAREN, - STATE(10187), 1, - aux_sym_throw_specifier_repeat1, - [361585] = 4, + STATE(10128), 1, + aux_sym_preproc_params_repeat1, + [361194] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14247), 1, - anon_sym_requires, - ACTIONS(17168), 1, - anon_sym_LBRACE, - STATE(11328), 1, - sym_requires_clause, - [361598] = 3, + ACTIONS(3288), 1, + anon_sym_while, + ACTIONS(16331), 1, + anon_sym_else, + STATE(629), 1, + sym_else_clause, + [361207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9896), 1, - anon_sym___attribute, - ACTIONS(9898), 2, - anon_sym___attribute__, - anon_sym_LBRACK_LBRACK, - [361609] = 4, + ACTIONS(16309), 1, + anon_sym_COMMA, + ACTIONS(17140), 1, + anon_sym_RPAREN, + STATE(9694), 1, + aux_sym_throw_specifier_repeat1, + [361220] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, - anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(829), 1, - sym_declaration_list, - [361622] = 4, + ACTIONS(17142), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [361229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12309), 1, + ACTIONS(17144), 3, anon_sym_COMMA, - ACTIONS(17170), 1, anon_sym_RPAREN, - STATE(9952), 1, - aux_sym_argument_list_repeat1, - [361635] = 2, + anon_sym_COLON, + [361238] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16261), 1, + anon_sym_COLON, + ACTIONS(17146), 1, + anon_sym_RPAREN, + STATE(11332), 1, + sym_gnu_asm_goto_list, + [361251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(17148), 1, + anon_sym_RPAREN, + STATE(10149), 1, + sym_gnu_asm_clobber_list, + [361264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(17172), 3, + ACTIONS(12374), 1, anon_sym_COMMA, + ACTIONS(17150), 1, anon_sym_RPAREN, - anon_sym_GT2, - [361644] = 4, + STATE(9809), 1, + aux_sym_argument_list_repeat1, + [361277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(16291), 1, anon_sym_COLON, - ACTIONS(17174), 1, + ACTIONS(17152), 1, anon_sym_RPAREN, - STATE(10170), 1, + STATE(10152), 1, sym_gnu_asm_input_operand_list, - [361657] = 4, + [361290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(17176), 1, + ACTIONS(17154), 1, anon_sym_RPAREN, - STATE(10171), 1, + STATE(10153), 1, sym_gnu_asm_output_operand_list, - [361670] = 4, + [361303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17178), 1, + ACTIONS(17156), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [361683] = 4, + [361316] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17180), 1, + ACTIONS(17158), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [361696] = 4, + [361329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(12384), 1, anon_sym_COMMA, - ACTIONS(17182), 1, + ACTIONS(17160), 1, anon_sym_GT2, - STATE(10136), 1, + STATE(9988), 1, aux_sym_template_argument_list_repeat1, - [361709] = 4, + [361342] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17184), 1, + ACTIONS(17162), 1, anon_sym_SEMI, - STATE(10172), 1, + STATE(10154), 1, aux_sym_declaration_repeat1, - [361722] = 4, + [361355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17186), 1, + ACTIONS(17164), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [361735] = 4, + [361368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17188), 1, + ACTIONS(17166), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [361748] = 4, + [361381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16312), 1, + ACTIONS(16315), 1, anon_sym_COMMA, - ACTIONS(17190), 1, + ACTIONS(17168), 1, anon_sym_RPAREN, - STATE(10185), 1, + STATE(10078), 1, aux_sym_parameter_list_repeat1, - [361761] = 4, + [361394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(9802), 1, + anon_sym___attribute, + ACTIONS(9804), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [361405] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16261), 1, + anon_sym_COLON, + ACTIONS(17170), 1, + anon_sym_RPAREN, + STATE(11393), 1, + sym_gnu_asm_goto_list, + [361418] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(17192), 1, + ACTIONS(17172), 1, anon_sym_RPAREN, - STATE(10173), 1, + STATE(10155), 1, aux_sym_throw_specifier_repeat1, - [361774] = 2, + [361431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16275), 1, + anon_sym_COLON, + ACTIONS(17174), 1, + anon_sym_RPAREN, + STATE(10160), 1, + sym_gnu_asm_clobber_list, + [361444] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16261), 1, + anon_sym_COLON, + ACTIONS(17176), 1, + anon_sym_RPAREN, + STATE(11347), 1, + sym_gnu_asm_goto_list, + [361457] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(17194), 3, + ACTIONS(12362), 1, anon_sym_COMMA, + ACTIONS(17178), 1, anon_sym_RPAREN, - anon_sym_GT2, - [361783] = 4, + STATE(10006), 1, + aux_sym_generic_expression_repeat1, + [361470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17196), 1, + ACTIONS(17180), 1, anon_sym_SEMI, - STATE(10175), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [361796] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17198), 1, - anon_sym_COMMA, - ACTIONS(17201), 1, - anon_sym_GT2, - STATE(10169), 1, - aux_sym_template_parameter_list_repeat1, - [361809] = 4, + [361483] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(16275), 1, anon_sym_COLON, - ACTIONS(17203), 1, + ACTIONS(17182), 1, anon_sym_RPAREN, - STATE(10176), 1, + STATE(10158), 1, sym_gnu_asm_clobber_list, - [361822] = 4, + [361496] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(16291), 1, anon_sym_COLON, - ACTIONS(17205), 1, + ACTIONS(17184), 1, anon_sym_RPAREN, - STATE(10177), 1, + STATE(10159), 1, sym_gnu_asm_input_operand_list, - [361835] = 4, + [361509] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17207), 1, + ACTIONS(17186), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [361848] = 4, + [361522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(16309), 1, anon_sym_COMMA, - ACTIONS(17209), 1, + ACTIONS(17188), 1, anon_sym_RPAREN, - STATE(10013), 1, + STATE(9694), 1, aux_sym_throw_specifier_repeat1, - [361861] = 4, + [361535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(17211), 1, - anon_sym_COMMA, - ACTIONS(17214), 1, - anon_sym_RPAREN, - STATE(10174), 1, - aux_sym_requires_parameter_list_repeat1, - [361874] = 4, + ACTIONS(7361), 1, + anon_sym_LBRACE, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + STATE(837), 1, + sym_declaration_list, + [361548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(17190), 1, anon_sym_COMMA, - ACTIONS(17216), 1, - anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [361887] = 4, + ACTIONS(17192), 1, + anon_sym_RPAREN, + STATE(10196), 1, + aux_sym_preproc_params_repeat1, + [361561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(16261), 1, anon_sym_COLON, - ACTIONS(17218), 1, + ACTIONS(17194), 1, anon_sym_RPAREN, - STATE(11545), 1, + STATE(11397), 1, sym_gnu_asm_goto_list, - [361900] = 4, + [361574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(16275), 1, anon_sym_COLON, - ACTIONS(17220), 1, + ACTIONS(17196), 1, anon_sym_RPAREN, - STATE(10178), 1, + STATE(10161), 1, sym_gnu_asm_clobber_list, - [361913] = 4, + [361587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, + ACTIONS(16261), 1, anon_sym_COLON, - ACTIONS(17222), 1, + ACTIONS(17198), 1, anon_sym_RPAREN, - STATE(11547), 1, + STATE(11475), 1, sym_gnu_asm_goto_list, - [361926] = 4, + [361600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16290), 1, + ACTIONS(16261), 1, anon_sym_COLON, - ACTIONS(17224), 1, + ACTIONS(17200), 1, anon_sym_RPAREN, - STATE(9929), 1, - sym_gnu_asm_output_operand_list, - [361939] = 4, + STATE(11404), 1, + sym_gnu_asm_goto_list, + [361613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9806), 1, + anon_sym___attribute, + ACTIONS(9808), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [361624] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12362), 1, + anon_sym_COMMA, + ACTIONS(17202), 1, + anon_sym_RPAREN, + STATE(10006), 1, + aux_sym_generic_expression_repeat1, + [361637] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(17226), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17229), 1, - anon_sym_RBRACK, - STATE(10180), 1, - aux_sym_structured_binding_declarator_repeat1, - [361952] = 4, + ACTIONS(17204), 1, + anon_sym_SEMI, + STATE(9674), 1, + aux_sym_declaration_repeat1, + [361650] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17231), 1, + ACTIONS(17206), 1, anon_sym_SEMI, - STATE(9732), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [361965] = 4, + [361663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(16404), 1, anon_sym_COLON, - ACTIONS(17233), 1, + ACTIONS(17208), 1, anon_sym_RPAREN, - STATE(10190), 1, - sym_gnu_asm_clobber_list, - [361978] = 4, + STATE(9720), 1, + sym_gnu_asm_output_operand_list, + [361676] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16515), 1, - anon_sym_COLON, - ACTIONS(17235), 1, + ACTIONS(16309), 1, + anon_sym_COMMA, + ACTIONS(17210), 1, anon_sym_RPAREN, - STATE(10191), 1, - sym_gnu_asm_input_operand_list, - [361991] = 4, + STATE(9694), 1, + aux_sym_throw_specifier_repeat1, + [361689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16302), 1, + ACTIONS(17212), 1, anon_sym_COMMA, - ACTIONS(17237), 1, + ACTIONS(17215), 1, anon_sym_RBRACK, - STATE(9960), 1, - aux_sym_lambda_capture_specifier_repeat1, - [362004] = 4, + STATE(10168), 1, + aux_sym_structured_binding_declarator_repeat1, + [361702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17239), 1, + ACTIONS(17217), 1, + sym_identifier, + ACTIONS(17219), 2, anon_sym_COMMA, - ACTIONS(17242), 1, - anon_sym_RPAREN, - STATE(10185), 1, - aux_sym_parameter_list_repeat1, - [362017] = 4, + anon_sym_GT2, + [361713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, + ACTIONS(13902), 1, anon_sym_COMMA, - ACTIONS(17244), 1, + ACTIONS(17221), 1, anon_sym_SEMI, - STATE(9663), 1, + STATE(9856), 1, aux_sym_declaration_repeat1, - [362030] = 4, + [361726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16356), 1, + ACTIONS(16362), 1, anon_sym_COMMA, - ACTIONS(17246), 1, - anon_sym_RPAREN, - STATE(10013), 1, - aux_sym_throw_specifier_repeat1, - [362043] = 4, + ACTIONS(17223), 1, + anon_sym_RBRACK, + STATE(9827), 1, + aux_sym_lambda_capture_specifier_repeat1, + [361739] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13937), 1, - anon_sym_COMMA, - ACTIONS(17248), 1, + ACTIONS(49), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(17225), 1, anon_sym_SEMI, - STATE(9663), 1, - aux_sym_declaration_repeat1, - [362056] = 4, + STATE(11349), 1, + sym_attribute_declaration, + [361752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(17250), 1, + ACTIONS(17227), 1, anon_sym_COMMA, - ACTIONS(17253), 1, + ACTIONS(17230), 1, anon_sym_RBRACK, - STATE(10189), 1, + STATE(10173), 1, aux_sym_lambda_capture_specifier_repeat1, - [362069] = 4, + [361765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(17255), 1, - anon_sym_RPAREN, - STATE(11592), 1, - sym_gnu_asm_goto_list, - [362082] = 4, + ACTIONS(7377), 1, + anon_sym_LBRACE, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + STATE(1004), 1, + sym_declaration_list, + [361778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16535), 1, - anon_sym_COLON, - ACTIONS(17257), 1, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(17232), 1, + anon_sym_GT2, + STATE(9747), 1, + aux_sym_template_argument_list_repeat1, + [361791] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16315), 1, + anon_sym_COMMA, + ACTIONS(17234), 1, anon_sym_RPAREN, - STATE(10195), 1, - sym_gnu_asm_clobber_list, - [362095] = 4, + STATE(10078), 1, + aux_sym_parameter_list_repeat1, + [361804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16668), 1, + anon_sym_catch, + STATE(2935), 2, + sym_catch_clause, + aux_sym_constructor_try_statement_repeat1, + [361815] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12541), 1, + ACTIONS(12324), 1, anon_sym_COMMA, - ACTIONS(12543), 1, - anon_sym_RBRACE, - STATE(9872), 1, - aux_sym_initializer_list_repeat1, - [362108] = 4, + ACTIONS(17236), 1, + anon_sym_RBRACK, + STATE(10095), 1, + aux_sym_subscript_argument_list_repeat1, + [361828] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16309), 1, + anon_sym_COMMA, + ACTIONS(17238), 1, + anon_sym_RPAREN, + STATE(9681), 1, + aux_sym_throw_specifier_repeat1, + [361841] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(17259), 1, + ACTIONS(17240), 1, anon_sym_RBRACK_RBRACK, - STATE(10202), 1, + STATE(10188), 1, aux_sym_attribute_declaration_repeat1, - [362121] = 4, + [361854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(17259), 1, + ACTIONS(17240), 1, anon_sym_RBRACK_RBRACK, - STATE(10203), 1, + STATE(10189), 1, aux_sym_attribute_declaration_repeat2, - [362134] = 4, + [361867] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16470), 1, - anon_sym_COLON, - ACTIONS(17261), 1, - anon_sym_RPAREN, - STATE(11611), 1, - sym_gnu_asm_goto_list, - [362147] = 4, + ACTIONS(9442), 1, + anon_sym_COMMA, + ACTIONS(17242), 1, + anon_sym_RBRACK, + STATE(9663), 1, + aux_sym_structured_binding_declarator_repeat1, + [361880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(17263), 1, + ACTIONS(5754), 1, + anon_sym_RBRACE, + ACTIONS(17244), 1, anon_sym_COMMA, - ACTIONS(17266), 1, - anon_sym_LBRACE, - STATE(10196), 1, - aux_sym_field_initializer_list_repeat1, - [362160] = 4, + STATE(9838), 1, + aux_sym_initializer_list_repeat1, + [361893] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12421), 1, + ACTIONS(13993), 1, anon_sym_COMMA, - ACTIONS(17268), 1, + ACTIONS(17246), 1, anon_sym_RPAREN, - STATE(9778), 1, - aux_sym_generic_expression_repeat1, - [362173] = 3, + STATE(10127), 1, + aux_sym_preproc_argument_list_repeat1, + [361906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17270), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(17272), 2, + ACTIONS(17248), 3, anon_sym_COMMA, - anon_sym_LBRACE, - [362184] = 4, + anon_sym_RPAREN, + anon_sym_GT2, + [361915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15922), 1, + ACTIONS(17248), 3, anon_sym_COMMA, - ACTIONS(17274), 1, - anon_sym_LBRACE, - STATE(10033), 1, - aux_sym_base_class_clause_repeat1, - [362197] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7369), 1, - anon_sym_LBRACE, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - STATE(945), 1, - sym_declaration_list, - [362210] = 4, + anon_sym_RPAREN, + anon_sym_GT2, + [361924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12735), 1, - anon_sym_RBRACK, - ACTIONS(17276), 1, + ACTIONS(16817), 1, anon_sym_COMMA, - STATE(10201), 1, - aux_sym_subscript_argument_list_repeat1, - [362223] = 4, + ACTIONS(17250), 1, + anon_sym_RPAREN, + STATE(9962), 1, + aux_sym_gnu_asm_goto_list_repeat1, + [361937] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16294), 1, + ACTIONS(16277), 1, anon_sym_COMMA, - ACTIONS(17279), 1, + ACTIONS(17252), 1, anon_sym_RBRACK_RBRACK, - STATE(10031), 1, + STATE(10032), 1, aux_sym_attribute_declaration_repeat1, - [362236] = 4, + [361950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16298), 1, + ACTIONS(16281), 1, anon_sym_COMMA, - ACTIONS(17279), 1, + ACTIONS(17252), 1, anon_sym_RBRACK_RBRACK, - STATE(10034), 1, + STATE(10052), 1, aux_sym_attribute_declaration_repeat2, - [362249] = 2, + [361963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17281), 3, - anon_sym_SEMI, - anon_sym_COLON_COLON, + ACTIONS(9908), 1, + anon_sym___attribute, + ACTIONS(9910), 2, + anon_sym___attribute__, + anon_sym_LBRACK_LBRACK, + [361974] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15929), 1, + anon_sym_COMMA, + ACTIONS(16229), 1, anon_sym_LBRACE, - [362258] = 4, + STATE(9881), 1, + aux_sym_base_class_clause_repeat1, + [361987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(12322), 1, + ACTIONS(16362), 1, anon_sym_COMMA, - ACTIONS(17283), 1, - anon_sym_GT2, - STATE(9666), 1, - aux_sym_template_argument_list_repeat1, - [362271] = 3, + ACTIONS(17254), 1, + anon_sym_RBRACK, + STATE(9707), 1, + aux_sym_lambda_capture_specifier_repeat1, + [362000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9808), 1, - anon_sym___attribute, - ACTIONS(9810), 2, - anon_sym___attribute__, + ACTIONS(15929), 1, + anon_sym_COMMA, + ACTIONS(16229), 1, + anon_sym_LBRACE, + STATE(9682), 1, + aux_sym_base_class_clause_repeat1, + [362013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17256), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(17258), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [362024] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(49), 1, anon_sym_LBRACK_LBRACK, - [362282] = 3, - ACTIONS(14065), 1, + ACTIONS(17260), 1, + anon_sym_SEMI, + STATE(10766), 1, + sym_attribute_declaration, + [362037] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(17285), 1, - aux_sym_preproc_include_token2, - ACTIONS(17287), 1, - sym_preproc_arg, - [362292] = 3, + ACTIONS(17190), 1, + anon_sym_COMMA, + ACTIONS(17262), 1, + anon_sym_RPAREN, + STATE(10128), 1, + aux_sym_preproc_params_repeat1, + [362050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(10217), 1, - sym_condition_clause, - [362302] = 3, + ACTIONS(17264), 1, + anon_sym_COMMA, + ACTIONS(17266), 1, + anon_sym_GT2, + STATE(10030), 1, + aux_sym_template_parameter_list_repeat1, + [362063] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13877), 1, - anon_sym_LBRACE, - STATE(5225), 1, - sym_compound_statement, - [362312] = 3, + ACTIONS(12384), 1, + anon_sym_COMMA, + ACTIONS(17268), 1, + anon_sym_GT2, + STATE(9662), 1, + aux_sym_template_argument_list_repeat1, + [362076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(17264), 1, + anon_sym_COMMA, + ACTIONS(17270), 1, + anon_sym_GT2, + STATE(10197), 1, + aux_sym_template_parameter_list_repeat1, + [362089] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16281), 1, + anon_sym_COMMA, + ACTIONS(16815), 1, + anon_sym_RBRACK_RBRACK, + STATE(9991), 1, + aux_sym_attribute_declaration_repeat2, + [362102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17272), 1, anon_sym_LPAREN2, - STATE(196), 1, - sym_condition_clause, - [362322] = 3, + ACTIONS(17274), 1, + sym_raw_string_delimiter, + [362112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17289), 1, - anon_sym_LT, - STATE(5535), 1, - sym_template_argument_list, - [362332] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9933), 1, + sym_compound_statement, + [362122] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(3262), 1, + STATE(481), 1, sym_compound_statement, - [362342] = 3, + [362132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13860), 1, anon_sym_LBRACE, - STATE(10011), 1, + STATE(8363), 1, sym_compound_statement, - [362352] = 3, + [362142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 1, + ACTIONS(12051), 1, anon_sym_LT, - STATE(2992), 1, + STATE(6688), 1, sym_template_argument_list, - [362362] = 3, + [362152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(17276), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(9940), 1, - sym_compound_statement, - [362372] = 3, + [362160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12370), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [362168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, + ACTIONS(13248), 1, anon_sym_LBRACE, - STATE(2671), 1, - sym_field_declaration_list, - [362382] = 3, + STATE(3646), 1, + sym_requirement_seq, + [362178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(958), 1, anon_sym_LBRACE, - STATE(583), 1, + STATE(642), 1, sym_compound_statement, - [362392] = 3, + [362188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10044), 1, + anon_sym_LBRACE, + STATE(4334), 1, + sym_field_declaration_list, + [362198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(17278), 2, + anon_sym_COMMA, + anon_sym_GT2, + [362206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(10930), 1, + STATE(11594), 1, sym_argument_list, - [362402] = 3, + [362216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15166), 1, - anon_sym_SEMI, - [362412] = 3, + ACTIONS(8522), 1, + anon_sym_LBRACE, + STATE(3040), 1, + sym_field_declaration_list, + [362226] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9645), 1, + STATE(9622), 1, sym_compound_statement, - [362422] = 3, + [362236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(17280), 1, + anon_sym_LPAREN2, + STATE(10747), 1, + sym_parenthesized_expression, + [362246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16420), 1, anon_sym_LPAREN2, - STATE(201), 1, + STATE(202), 1, sym_condition_clause, - [362432] = 3, + [362256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(771), 1, + STATE(423), 1, sym_compound_statement, - [362442] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17291), 1, - aux_sym_preproc_include_token2, - ACTIONS(17293), 1, - sym_preproc_arg, - [362452] = 3, + [362266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(7377), 1, anon_sym_LBRACE, - STATE(1230), 1, - sym_compound_statement, - [362462] = 3, + STATE(914), 1, + sym_declaration_list, + [362276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15786), 1, - anon_sym_SEMI, - [362472] = 3, + ACTIONS(2394), 1, + anon_sym_LBRACE, + STATE(3911), 1, + sym_initializer_list, + [362286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17297), 1, - anon_sym_RBRACE, - [362482] = 3, - ACTIONS(3), 1, + ACTIONS(17282), 1, + anon_sym_LT, + STATE(5812), 1, + sym_template_argument_list, + [362296] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17299), 1, - anon_sym_RBRACE, - [362492] = 3, + ACTIONS(17284), 1, + aux_sym_preproc_include_token2, + ACTIONS(17286), 1, + sym_preproc_arg, + [362306] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17288), 1, + aux_sym_preproc_include_token2, + ACTIONS(17290), 1, + sym_preproc_arg, + [362316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8503), 1, - anon_sym_LBRACE, - STATE(3030), 1, - sym_field_declaration_list, - [362502] = 3, + ACTIONS(17292), 1, + anon_sym_LT, + STATE(3747), 1, + sym_template_argument_list, + [362326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, - anon_sym_LBRACE, - STATE(810), 1, - sym_declaration_list, - [362512] = 3, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15187), 1, + anon_sym_SEMI, + [362336] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(1011), 1, + STATE(5247), 1, sym_compound_statement, - [362522] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - STATE(5969), 1, - sym_initializer_list, - [362532] = 3, + [362346] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, + ACTIONS(13848), 1, anon_sym_LBRACE, - STATE(783), 1, - sym_declaration_list, - [362542] = 3, + STATE(5247), 1, + sym_compound_statement, + [362356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, + ACTIONS(17280), 1, anon_sym_LPAREN2, - STATE(11252), 1, + STATE(11155), 1, sym_parenthesized_expression, - [362552] = 3, + [362366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17303), 1, - anon_sym_RBRACE, - [362562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - STATE(10476), 1, + STATE(10478), 1, sym_parameter_list, - [362572] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9965), 1, - anon_sym_LBRACE, - STATE(4377), 1, - sym_field_declaration_list, - [362582] = 3, - ACTIONS(3), 1, + [362376] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(10580), 1, - anon_sym_LBRACE, - STATE(2716), 1, - sym_compound_statement, - [362592] = 3, + ACTIONS(17294), 1, + aux_sym_preproc_include_token2, + ACTIONS(17296), 1, + sym_preproc_arg, + [362386] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(10148), 1, + STATE(10177), 1, sym_compound_statement, - [362602] = 3, + [362396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, - anon_sym_LBRACE, - STATE(4760), 1, - sym_field_declaration_list, - [362612] = 3, + ACTIONS(17298), 1, + anon_sym_LT, + STATE(5525), 1, + sym_template_argument_list, + [362406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13885), 1, - anon_sym_LBRACE, - STATE(8370), 1, - sym_compound_statement, - [362622] = 3, + ACTIONS(14868), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, + anon_sym_COMMA, + [362416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, + ACTIONS(17280), 1, anon_sym_LPAREN2, - STATE(10550), 1, + STATE(10305), 1, sym_parenthesized_expression, - [362632] = 3, + [362426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(10546), 1, - sym_parenthesized_expression, - [362642] = 3, + ACTIONS(13355), 1, + anon_sym_LBRACE, + STATE(5070), 1, + sym_requirement_seq, + [362436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(10406), 1, - sym_condition_clause, - [362652] = 3, + ACTIONS(9213), 1, + anon_sym_LBRACE, + STATE(4384), 1, + sym_field_declaration_list, + [362446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9213), 1, + anon_sym_LBRACE, + STATE(4385), 1, + sym_field_declaration_list, + [362456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17300), 1, + anon_sym_COMMA, + ACTIONS(17302), 1, + anon_sym_RBRACE, + [362466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13348), 1, + ACTIONS(13339), 1, anon_sym_LBRACE, - STATE(6663), 1, + STATE(6457), 1, sym_requirement_seq, - [362662] = 3, + [362476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13875), 1, + ACTIONS(13860), 1, anon_sym_LBRACE, - STATE(8023), 1, + STATE(8366), 1, sym_compound_statement, - [362672] = 2, + [362486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17305), 2, - anon_sym_SEMI, - anon_sym_LBRACK_LBRACK, - [362680] = 3, + ACTIONS(8342), 1, + anon_sym_LBRACE, + STATE(2889), 1, + sym_field_declaration_list, + [362496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11568), 1, - sym_argument_list, - [362690] = 3, + ACTIONS(2089), 1, + anon_sym_LBRACE, + STATE(1182), 1, + sym_compound_statement, + [362506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, + ACTIONS(10560), 1, anon_sym_LBRACE, - STATE(2839), 1, + STATE(3268), 1, sym_compound_statement, - [362700] = 3, + [362516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13877), 1, + ACTIONS(13844), 1, anon_sym_LBRACE, - STATE(5234), 1, + STATE(5083), 1, sym_compound_statement, - [362710] = 3, + [362526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13855), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(6667), 1, + STATE(716), 1, sym_compound_statement, - [362720] = 3, + [362536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16046), 1, - anon_sym_SEMI, - [362730] = 3, + ACTIONS(12844), 1, + anon_sym_LBRACE, + STATE(7567), 1, + sym_field_declaration_list, + [362546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14897), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(10270), 1, + sym_condition_clause, + [362556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17304), 2, anon_sym_COMMA, - [362740] = 3, + anon_sym_GT2, + [362564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(13870), 1, anon_sym_LBRACE, - STATE(2165), 1, - sym_field_declaration_list, - [362750] = 3, + STATE(3645), 1, + sym_compound_statement, + [362574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17307), 1, - anon_sym_LT, - STATE(3805), 1, - sym_template_argument_list, - [362760] = 3, - ACTIONS(14065), 1, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9875), 1, + sym_compound_statement, + [362584] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17309), 1, - aux_sym_preproc_include_token2, - ACTIONS(17311), 1, - sym_preproc_arg, - [362770] = 3, + ACTIONS(17306), 2, + anon_sym_COMMA, + anon_sym_GT2, + [362592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17307), 1, - anon_sym_LT, - STATE(2090), 1, - sym_template_argument_list, - [362780] = 3, + ACTIONS(13878), 1, + anon_sym_LBRACE, + STATE(5591), 1, + sym_compound_statement, + [362602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17313), 1, - anon_sym_LT, - STATE(2928), 1, - sym_template_argument_list, - [362790] = 2, + ACTIONS(1002), 1, + anon_sym_LBRACE, + STATE(718), 1, + sym_compound_statement, + [362612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17315), 2, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [362798] = 3, - ACTIONS(14065), 1, + ACTIONS(17308), 2, + anon_sym_COMMA, + anon_sym_GT2, + [362620] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(17317), 1, + ACTIONS(17310), 1, aux_sym_preproc_include_token2, - ACTIONS(17319), 1, + ACTIONS(17312), 1, sym_preproc_arg, - [362808] = 3, + [362630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(10278), 1, - sym_condition_clause, - [362818] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16130), 1, - anon_sym_SEMI, - [362828] = 3, + STATE(11586), 1, + sym_argument_list, + [362640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13850), 1, anon_sym_LBRACE, - STATE(9711), 1, + STATE(3042), 1, sym_compound_statement, - [362838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(665), 1, - sym_declaration_list, - [362848] = 3, + [362650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13839), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5106), 1, + STATE(9537), 1, sym_compound_statement, - [362858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9314), 1, - anon_sym_LBRACE, - STATE(3954), 1, - sym_field_declaration_list, - [362868] = 3, + [362660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16162), 1, - anon_sym_SEMI, - [362878] = 3, + ACTIONS(10562), 1, + anon_sym_LT, + STATE(4286), 1, + sym_template_argument_list, + [362670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12059), 1, + ACTIONS(17314), 1, anon_sym_LT, - STATE(6693), 1, + STATE(3740), 1, sym_template_argument_list, - [362888] = 2, + [362680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11724), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [362896] = 3, + ACTIONS(10044), 1, + anon_sym_LBRACE, + STATE(4338), 1, + sym_field_declaration_list, + [362690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11274), 1, - sym_argument_list, - [362906] = 3, + ACTIONS(16606), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [362698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(9628), 1, + STATE(324), 1, sym_compound_statement, - [362916] = 3, + [362708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2396), 1, + ACTIONS(13846), 1, anon_sym_LBRACE, - STATE(3899), 1, - sym_initializer_list, - [362926] = 3, + STATE(4778), 1, + sym_compound_statement, + [362718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13885), 1, + ACTIONS(7262), 1, anon_sym_LBRACE, - STATE(8414), 1, - sym_compound_statement, - [362936] = 2, + STATE(2160), 1, + sym_field_declaration_list, + [362728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9544), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [362944] = 3, + ACTIONS(17280), 1, + anon_sym_LPAREN2, + STATE(11006), 1, + sym_parenthesized_expression, + [362738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17321), 1, - anon_sym_RBRACE, - [362954] = 3, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + STATE(10362), 1, + sym_parameter_list, + [362748] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17316), 1, + aux_sym_preproc_include_token2, + ACTIONS(17318), 1, + sym_preproc_arg, + [362758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3234), 1, + STATE(10090), 1, sym_compound_statement, - [362964] = 3, + [362768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2158), 1, - sym_field_declaration_list, - [362974] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17323), 1, - aux_sym_preproc_include_token2, - ACTIONS(17325), 1, - sym_preproc_arg, - [362984] = 3, + STATE(635), 1, + sym_compound_statement, + [362778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - STATE(1252), 1, + STATE(1264), 1, sym_compound_statement, - [362994] = 3, + [362788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14851), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, - anon_sym_COMMA, - [363004] = 3, + ACTIONS(17280), 1, + anon_sym_LPAREN2, + STATE(10450), 1, + sym_parenthesized_expression, + [362798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8297), 1, - anon_sym_LBRACE, - STATE(2753), 1, - sym_field_declaration_list, - [363014] = 3, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(4286), 1, + sym_template_argument_list, + [362808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13356), 1, + ACTIONS(7355), 1, anon_sym_LBRACE, - STATE(6449), 1, - sym_requirement_seq, - [363024] = 3, + STATE(390), 1, + sym_declaration_list, + [362818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(11139), 1, - sym_parenthesized_expression, - [363034] = 2, + ACTIONS(17292), 1, + anon_sym_LT, + STATE(2154), 1, + sym_template_argument_list, + [362828] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16955), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [363042] = 3, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15883), 1, + anon_sym_SEMI, + [362838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(10275), 1, - sym_parameter_list, - [363052] = 3, + ACTIONS(17300), 1, + anon_sym_COMMA, + ACTIONS(17320), 1, + anon_sym_RBRACE, + [362848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17327), 1, - sym_identifier, - ACTIONS(17329), 1, - anon_sym_RPAREN, - [363062] = 3, + ACTIONS(17300), 1, + anon_sym_COMMA, + ACTIONS(17322), 1, + anon_sym_RBRACE, + [362858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9965), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - STATE(4342), 1, + STATE(4347), 1, sym_field_declaration_list, - [363072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9813), 1, - sym_compound_statement, - [363082] = 3, + [362868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9965), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - STATE(4343), 1, + STATE(4387), 1, sym_field_declaration_list, - [363092] = 2, + [362878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17331), 2, - anon_sym_COMMA, + ACTIONS(10639), 1, anon_sym_LBRACE, - [363100] = 3, + STATE(2822), 1, + sym_compound_statement, + [362888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(3365), 1, + STATE(9693), 1, sym_compound_statement, - [363110] = 3, + [362898] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17324), 1, + aux_sym_preproc_include_token2, + ACTIONS(17326), 1, + sym_preproc_arg, + [362908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, - STATE(2754), 1, - sym_field_declaration_list, - [363120] = 3, + STATE(730), 1, + sym_declaration_list, + [362918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(10365), 1, - sym_parenthesized_expression, - [363130] = 2, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + [362928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16965), 2, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(3011), 1, + sym_template_argument_list, + [362938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17328), 2, anon_sym_COMMA, anon_sym_RBRACK_RBRACK, - [363138] = 3, + [362946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14911), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, - anon_sym_COMMA, - [363148] = 3, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + STATE(11206), 1, + sym_argument_list, + [362956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13871), 1, + ACTIONS(10560), 1, anon_sym_LBRACE, - STATE(6454), 1, + STATE(3240), 1, sym_compound_statement, - [363158] = 3, + [362966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3805), 1, - sym_template_argument_list, - [363168] = 3, + ACTIONS(11561), 1, + anon_sym_LBRACE, + STATE(6020), 1, + sym_field_declaration_list, + [362976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16044), 1, - anon_sym_SEMI, - [363178] = 3, + ACTIONS(13832), 1, + anon_sym_LBRACE, + STATE(6661), 1, + sym_compound_statement, + [362986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_LBRACE, - STATE(3855), 1, - sym_field_declaration_list, - [363188] = 3, + ACTIONS(16951), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [362994] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9873), 1, + STATE(530), 1, sym_compound_statement, - [363198] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17333), 1, - aux_sym_preproc_include_token2, - ACTIONS(17335), 1, - sym_preproc_arg, - [363208] = 3, + [363004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(2938), 1, - sym_template_argument_list, - [363218] = 3, + ACTIONS(14878), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, + anon_sym_COMMA, + [363014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(2053), 1, - sym_template_argument_list, - [363228] = 2, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(5107), 1, + sym_compound_statement, + [363024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17337), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [363236] = 3, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(16173), 1, + anon_sym_SEMI, + [363034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(10954), 1, - sym_argument_list, - [363246] = 3, + ACTIONS(2950), 1, + anon_sym_LBRACE, + STATE(5570), 1, + sym_initializer_list, + [363044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14907), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, - anon_sym_COMMA, - [363256] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17339), 1, - aux_sym_preproc_include_token2, - ACTIONS(17341), 1, - sym_preproc_arg, - [363266] = 3, + ACTIONS(8522), 1, + anon_sym_LBRACE, + STATE(2995), 1, + sym_field_declaration_list, + [363054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(8522), 1, anon_sym_LBRACE, - STATE(4731), 1, + STATE(2996), 1, sym_field_declaration_list, - [363276] = 3, + [363064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3052), 1, + ACTIONS(13850), 1, anon_sym_LBRACE, - STATE(5843), 1, - sym_initializer_list, - [363286] = 3, + STATE(3051), 1, + sym_compound_statement, + [363074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(7363), 1, anon_sym_LBRACE, - STATE(3865), 1, - sym_field_declaration_list, - [363296] = 3, + STATE(759), 1, + sym_declaration_list, + [363084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - STATE(10361), 1, + STATE(10241), 1, sym_parameter_list, - [363306] = 3, + [363094] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17343), 1, - sym_identifier, - ACTIONS(17345), 1, - anon_sym_LPAREN2, - [363316] = 3, + ACTIONS(5967), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [363102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16944), 2, + anon_sym_COMMA, + anon_sym_GT2, + [363110] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9914), 1, + STATE(9803), 1, sym_compound_statement, - [363326] = 3, + [363120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(2140), 1, - sym_field_declaration_list, - [363336] = 3, + STATE(335), 1, + sym_compound_statement, + [363130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17347), 1, + ACTIONS(17330), 1, anon_sym_LT, - STATE(5547), 1, + STATE(2526), 1, sym_template_argument_list, - [363346] = 3, + [363140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, + ACTIONS(17280), 1, anon_sym_LPAREN2, - STATE(10381), 1, + STATE(10338), 1, sym_parenthesized_expression, - [363356] = 3, + [363150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(545), 1, - sym_compound_statement, - [363366] = 3, - ACTIONS(3), 1, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(217), 1, + sym_condition_clause, + [363160] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16218), 1, - anon_sym_SEMI, - [363376] = 3, + ACTIONS(17332), 1, + aux_sym_preproc_include_token2, + ACTIONS(17334), 1, + sym_preproc_arg, + [363170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13855), 1, + ACTIONS(16283), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(6682), 1, - sym_compound_statement, - [363386] = 3, + [363178] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17336), 1, + aux_sym_preproc_include_token2, + ACTIONS(17338), 1, + sym_preproc_arg, + [363188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10580), 1, - anon_sym_LBRACE, - STATE(2793), 1, - sym_compound_statement, - [363396] = 3, + ACTIONS(12660), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [363196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7243), 1, + ACTIONS(13832), 1, anon_sym_LBRACE, - STATE(2144), 1, - sym_field_declaration_list, - [363406] = 3, + STATE(6675), 1, + sym_compound_statement, + [363206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(8342), 1, anon_sym_LBRACE, - STATE(4385), 1, + STATE(2855), 1, sym_field_declaration_list, - [363416] = 3, + [363216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13849), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - STATE(5673), 1, + STATE(1250), 1, sym_compound_statement, - [363426] = 3, + [363226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(625), 1, - sym_compound_statement, - [363436] = 3, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(16225), 1, + anon_sym_SEMI, + [363236] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9959), 1, + STATE(9857), 1, sym_compound_statement, - [363446] = 3, + [363246] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17340), 1, + aux_sym_preproc_include_token2, + ACTIONS(17342), 1, + sym_preproc_arg, + [363256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15906), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(17349), 1, + ACTIONS(15953), 1, anon_sym_SEMI, - [363456] = 3, + [363266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16190), 1, - anon_sym_SEMI, - [363466] = 3, + ACTIONS(16705), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [363274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17347), 1, - anon_sym_LT, - STATE(2577), 1, - sym_template_argument_list, - [363476] = 3, + ACTIONS(17300), 1, + anon_sym_COMMA, + ACTIONS(17344), 1, + anon_sym_RBRACE, + [363284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(10664), 1, + STATE(11047), 1, sym_argument_list, - [363486] = 3, + [363294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - STATE(5083), 1, - sym_compound_statement, - [363496] = 3, + STATE(830), 1, + sym_declaration_list, + [363304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, - anon_sym_LBRACE, - STATE(474), 1, - sym_declaration_list, - [363506] = 3, + ACTIONS(17292), 1, + anon_sym_LT, + STATE(2090), 1, + sym_template_argument_list, + [363314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15964), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(2976), 1, - sym_requirement_seq, - [363516] = 2, + STATE(297), 1, + sym_compound_statement, + [363324] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17351), 2, + ACTIONS(16574), 2, anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [363524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1113), 1, anon_sym_LBRACE, - STATE(585), 1, - sym_compound_statement, - [363534] = 2, + [363332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16993), 2, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + ACTIONS(17346), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [363542] = 3, + [363342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym_declaration_list, - [363552] = 3, + ACTIONS(17348), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [363350] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17350), 1, + anon_sym_LT, + STATE(2906), 1, + sym_template_argument_list, + [363360] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, + ACTIONS(17352), 2, anon_sym_COMMA, - ACTIONS(17353), 1, - anon_sym_RBRACE, - [363562] = 3, + anon_sym_GT2, + [363368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13853), 1, - anon_sym_LBRACE, - STATE(3004), 1, - sym_compound_statement, - [363572] = 3, + ACTIONS(16994), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [363376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - STATE(10237), 1, + STATE(10397), 1, sym_parameter_list, - [363582] = 3, + [363386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12551), 1, - anon_sym_LT, - STATE(4054), 1, - sym_template_argument_list, - [363592] = 3, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + ACTIONS(17354), 1, + anon_sym_SEMI, + [363396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17355), 1, - anon_sym_LT, - STATE(2721), 1, - sym_template_argument_list, - [363602] = 3, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(225), 1, + sym_condition_clause, + [363406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17357), 1, - anon_sym_RBRACE, - [363612] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(558), 1, + sym_compound_statement, + [363416] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(10003), 1, + STATE(9916), 1, sym_compound_statement, - [363622] = 3, + [363426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14883), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(17300), 1, anon_sym_COMMA, - [363632] = 3, + ACTIONS(17356), 1, + anon_sym_RBRACE, + [363436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17359), 1, - anon_sym_RBRACE, - [363642] = 3, + ACTIONS(1002), 1, + anon_sym_LBRACE, + STATE(617), 1, + sym_compound_statement, + [363446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(2630), 1, + sym_template_argument_list, + [363456] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16060), 1, + anon_sym_LBRACE, + STATE(8395), 1, + sym_requirement_seq, + [363466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9965), 1, + ACTIONS(10044), 1, anon_sym_LBRACE, - STATE(4351), 1, + STATE(4372), 1, sym_field_declaration_list, - [363652] = 3, + [363476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16232), 1, - anon_sym_SEMI, - [363662] = 3, + ACTIONS(13347), 1, + anon_sym_LBRACE, + STATE(5587), 1, + sym_requirement_seq, + [363486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17358), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [363494] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(13323), 1, anon_sym_LBRACE, - STATE(2760), 1, - sym_field_declaration_list, - [363672] = 3, + STATE(4842), 1, + sym_requirement_seq, + [363504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17307), 1, - anon_sym_LT, - STATE(3709), 1, - sym_template_argument_list, - [363682] = 3, + ACTIONS(13844), 1, + anon_sym_LBRACE, + STATE(5151), 1, + sym_compound_statement, + [363514] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(10047), 1, + STATE(9971), 1, sym_compound_statement, - [363692] = 3, + [363524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, - anon_sym_LBRACE, - STATE(2697), 1, - sym_field_declaration_list, - [363702] = 3, + ACTIONS(17360), 1, + sym_identifier, + ACTIONS(17362), 1, + anon_sym_RPAREN, + [363534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, + ACTIONS(7262), 1, anon_sym_LBRACE, - STATE(2699), 1, + STATE(2146), 1, sym_field_declaration_list, - [363712] = 3, + [363544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(10996), 1, + STATE(10762), 1, sym_argument_list, - [363722] = 2, + [363554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15165), 1, + anon_sym_SEMI, + [363564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17361), 2, + ACTIONS(17364), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [363730] = 3, + anon_sym_SEMI, + [363572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14855), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(17015), 2, anon_sym_COMMA, - [363740] = 3, + anon_sym_RPAREN, + [363580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15133), 1, - anon_sym_SEMI, - [363750] = 3, + ACTIONS(10560), 1, + anon_sym_LBRACE, + STATE(3383), 1, + sym_compound_statement, + [363590] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(13775), 1, anon_sym_LPAREN2, - STATE(10408), 1, + STATE(10288), 1, sym_parameter_list, - [363760] = 3, + [363600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, - anon_sym_LBRACE, - STATE(4389), 1, - sym_field_declaration_list, - [363770] = 3, + ACTIONS(17314), 1, + anon_sym_LT, + STATE(2919), 1, + sym_template_argument_list, + [363610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(7355), 1, anon_sym_LBRACE, - STATE(4390), 1, - sym_field_declaration_list, - [363780] = 3, + STATE(451), 1, + sym_declaration_list, + [363620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17363), 1, - anon_sym_RBRACE, - [363790] = 3, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(10607), 1, + sym_condition_clause, + [363630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 1, - anon_sym_LBRACE, - STATE(7581), 1, - sym_field_declaration_list, - [363800] = 3, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(195), 1, + sym_condition_clause, + [363640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, - anon_sym_LBRACE, - STATE(1200), 1, - sym_compound_statement, - [363810] = 3, + ACTIONS(14884), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, + anon_sym_COMMA, + [363650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(17366), 1, + sym_identifier, + ACTIONS(17368), 1, anon_sym_LPAREN2, - STATE(11281), 1, - sym_argument_list, - [363820] = 3, + [363660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15947), 1, + anon_sym_SEMI, + [363670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10564), 1, anon_sym_LBRACE, - STATE(9776), 1, + STATE(3241), 1, sym_compound_statement, - [363830] = 3, + [363680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11427), 1, - anon_sym_LBRACE, - STATE(5945), 1, - sym_field_declaration_list, - [363840] = 3, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + STATE(11179), 1, + sym_argument_list, + [363690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - STATE(1257), 1, + STATE(669), 1, sym_compound_statement, - [363850] = 3, + [363700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13268), 1, - anon_sym_LBRACE, - STATE(5655), 1, - sym_requirement_seq, - [363860] = 3, + ACTIONS(14840), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, + anon_sym_COMMA, + [363710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13290), 1, + ACTIONS(13848), 1, anon_sym_LBRACE, - STATE(4985), 1, - sym_requirement_seq, - [363870] = 3, + STATE(5107), 1, + sym_compound_statement, + [363720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 1, + ACTIONS(17370), 1, anon_sym_LT, - STATE(2648), 1, + STATE(5852), 1, sym_template_argument_list, - [363880] = 3, + [363730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9591), 1, - sym_compound_statement, - [363890] = 3, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(235), 1, + sym_condition_clause, + [363740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13878), 1, anon_sym_LBRACE, - STATE(10119), 1, + STATE(5657), 1, sym_compound_statement, - [363900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11679), 1, - sym_argument_list, - [363910] = 3, + [363750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(16420), 1, anon_sym_LPAREN2, - STATE(212), 1, + STATE(10335), 1, sym_condition_clause, - [363920] = 3, + [363760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(4318), 1, - sym_template_argument_list, - [363930] = 3, + ACTIONS(14870), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [363768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(11368), 1, + STATE(11601), 1, sym_argument_list, - [363940] = 3, + [363778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13855), 1, - anon_sym_LBRACE, - STATE(6685), 1, - sym_compound_statement, - [363950] = 3, + ACTIONS(10325), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + [363788] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(926), 1, + STATE(9704), 1, sym_compound_statement, - [363960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15894), 1, - anon_sym_SEMI, - [363970] = 3, + [363798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13853), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2960), 1, + STATE(5127), 1, sym_compound_statement, - [363980] = 3, + [363808] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17282), 1, + anon_sym_LT, + STATE(3818), 1, + sym_template_argument_list, + [363818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(11509), 1, + STATE(10628), 1, sym_argument_list, - [363990] = 3, + [363828] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(211), 1, - sym_condition_clause, - [364000] = 3, + ACTIONS(17048), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [363836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, - anon_sym_LBRACE, - STATE(623), 1, - sym_compound_statement, - [364010] = 3, + ACTIONS(17300), 1, + anon_sym_COMMA, + ACTIONS(17372), 1, + anon_sym_RBRACE, + [363846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(10862), 1, + STATE(10653), 1, sym_argument_list, - [364020] = 3, + [363856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15135), 1, + anon_sym_SEMI, + [363866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8522), 1, anon_sym_LBRACE, - STATE(5181), 1, - sym_compound_statement, - [364030] = 3, + STATE(3054), 1, + sym_field_declaration_list, + [363876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11561), 1, + anon_sym_LBRACE, + STATE(5958), 1, + sym_field_declaration_list, + [363886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12267), 1, + anon_sym_LT, + STATE(2919), 1, + sym_template_argument_list, + [363896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(11164), 1, + STATE(11035), 1, sym_argument_list, - [364040] = 3, + [363906] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13873), 1, + ACTIONS(11561), 1, anon_sym_LBRACE, - STATE(3662), 1, - sym_compound_statement, - [364050] = 3, + STATE(5965), 1, + sym_field_declaration_list, + [363916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, + ACTIONS(4914), 1, anon_sym_LBRACE, - STATE(6093), 1, + STATE(5980), 1, sym_initializer_list, - [364060] = 3, + [363926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(9973), 1, + anon_sym_LT, + STATE(4152), 1, + sym_template_argument_list, + [363936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(11405), 1, + STATE(11253), 1, + sym_argument_list, + [363946] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3747), 1, + sym_template_argument_list, + [363956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + STATE(11620), 1, sym_argument_list, - [364070] = 3, + [363966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(11720), 1, + STATE(11170), 1, sym_argument_list, - [364080] = 3, + [363976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(10733), 1, + STATE(10710), 1, sym_argument_list, - [364090] = 3, + [363986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(10842), 1, + STATE(10821), 1, sym_argument_list, - [364100] = 2, + [363996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17365), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [364108] = 3, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15103), 1, + anon_sym_SEMI, + [364006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(10940), 1, + STATE(10912), 1, sym_argument_list, - [364118] = 3, + [364016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13875), 1, + ACTIONS(10639), 1, anon_sym_LBRACE, - STATE(8059), 1, + STATE(2717), 1, sym_compound_statement, - [364128] = 3, + [364026] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + STATE(11013), 1, + sym_argument_list, + [364036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(11054), 1, + STATE(11114), 1, sym_argument_list, - [364138] = 3, + [364046] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(13870), 1, anon_sym_LBRACE, - STATE(561), 1, + STATE(3688), 1, sym_compound_statement, - [364148] = 3, + [364056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16304), 1, - anon_sym_RBRACK, - ACTIONS(17367), 1, + ACTIONS(17374), 2, anon_sym_COMMA, - [364158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(10619), 1, - sym_condition_clause, - [364168] = 3, + anon_sym_LBRACE, + [364064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - [364178] = 3, + ACTIONS(17067), 2, + anon_sym_COMMA, + anon_sym_LBRACE, + [364072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - STATE(4718), 1, + STATE(4695), 1, sym_field_declaration_list, - [364188] = 3, + [364082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, + ACTIONS(17376), 2, anon_sym_COMMA, - ACTIONS(17369), 1, + anon_sym_LBRACE, + [364090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14854), 1, anon_sym_RBRACE, - [364198] = 3, + ACTIONS(17300), 1, + anon_sym_COMMA, + [364100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - STATE(4392), 1, + STATE(4697), 1, sym_field_declaration_list, - [364208] = 3, + [364110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15906), 1, - anon_sym_COLON_COLON, - ACTIONS(17371), 1, - anon_sym_SEMI, - [364218] = 3, + ACTIONS(17330), 1, + anon_sym_LT, + STATE(5705), 1, + sym_template_argument_list, + [364120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(218), 1, - sym_condition_clause, - [364228] = 3, + ACTIONS(8182), 1, + anon_sym_LBRACE, + STATE(2695), 1, + sym_field_declaration_list, + [364130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8233), 1, + anon_sym_LBRACE, + STATE(2848), 1, + sym_field_declaration_list, + [364140] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9460), 1, + STATE(9550), 1, sym_compound_statement, - [364238] = 3, + [364150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(958), 1, anon_sym_LBRACE, - STATE(466), 1, + STATE(716), 1, sym_compound_statement, - [364248] = 3, + [364160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13878), 1, anon_sym_LBRACE, - STATE(586), 1, + STATE(5718), 1, sym_compound_statement, - [364258] = 3, + [364170] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17373), 1, - anon_sym_LT, - STATE(2938), 1, - sym_template_argument_list, - [364268] = 3, + ACTIONS(12714), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [364178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(8182), 1, anon_sym_LBRACE, - STATE(3118), 1, - sym_compound_statement, - [364278] = 2, + STATE(2670), 1, + sym_field_declaration_list, + [364188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16642), 2, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15881), 1, anon_sym_SEMI, - anon_sym_LBRACE, - [364286] = 3, + [364198] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10320), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - [364296] = 3, + ACTIONS(17378), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [364206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(17380), 1, anon_sym_LPAREN2, - STATE(11271), 1, - sym_argument_list, - [364306] = 3, + ACTIONS(17382), 1, + sym_raw_string_delimiter, + [364216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17375), 1, - anon_sym_LT, - STATE(3805), 1, - sym_template_argument_list, - [364316] = 2, + ACTIONS(17384), 1, + sym_identifier, + ACTIONS(17386), 1, + anon_sym_LPAREN2, + [364226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17377), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [364324] = 3, + ACTIONS(16036), 1, + sym_identifier, + STATE(9359), 1, + sym_module_name, + [364236] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15996), 1, + anon_sym_SEMI, + [364246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13331), 1, anon_sym_LBRACE, - STATE(841), 1, - sym_compound_statement, - [364334] = 3, + STATE(5078), 1, + sym_requirement_seq, + [364256] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17388), 1, + aux_sym_preproc_include_token2, + ACTIONS(17390), 1, + sym_preproc_arg, + [364266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13853), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - STATE(3002), 1, - sym_compound_statement, - [364344] = 3, + STATE(4680), 1, + sym_field_declaration_list, + [364276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17355), 1, + ACTIONS(17292), 1, anon_sym_LT, - STATE(5732), 1, + STATE(3818), 1, sym_template_argument_list, - [364354] = 3, + [364286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13856), 1, anon_sym_LBRACE, - STATE(9860), 1, + STATE(5081), 1, sym_compound_statement, - [364364] = 2, + [364296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17105), 2, + ACTIONS(14874), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, anon_sym_COMMA, - anon_sym_SEMI, - [364372] = 3, + [364306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17289), 1, + ACTIONS(9093), 1, anon_sym_LT, - STATE(2613), 1, + STATE(3629), 1, sym_template_argument_list, - [364382] = 3, + [364316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, - anon_sym_LBRACE, - STATE(718), 1, - sym_compound_statement, - [364392] = 3, - ACTIONS(14065), 1, + ACTIONS(17330), 1, + anon_sym_LT, + STATE(2664), 1, + sym_template_argument_list, + [364326] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(17379), 1, - aux_sym_preproc_include_token2, - ACTIONS(17381), 1, - sym_preproc_arg, - [364402] = 3, + ACTIONS(12750), 1, + anon_sym_LPAREN2, + STATE(10630), 1, + sym_argument_list, + [364336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4922), 1, + ACTIONS(13832), 1, anon_sym_LBRACE, - STATE(5969), 1, - sym_initializer_list, - [364412] = 3, + STATE(6669), 1, + sym_compound_statement, + [364346] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16036), 1, + sym_identifier, + STATE(10540), 1, + sym_module_name, + [364356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13859), 1, + ACTIONS(13844), 1, anon_sym_LBRACE, - STATE(4929), 1, + STATE(5199), 1, sym_compound_statement, - [364422] = 3, + [364366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(13858), 1, anon_sym_LBRACE, - STATE(310), 1, + STATE(8052), 1, sym_compound_statement, - [364432] = 3, + [364376] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15906), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(17383), 1, + ACTIONS(16145), 1, anon_sym_SEMI, - [364442] = 2, + [364386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16267), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [364450] = 3, + ACTIONS(12366), 1, + anon_sym_LT, + STATE(4275), 1, + sym_template_argument_list, + [364396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13839), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5181), 1, + STATE(9561), 1, sym_compound_statement, - [364460] = 3, + [364406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(871), 1, - sym_declaration_list, - [364470] = 3, + STATE(639), 1, + sym_compound_statement, + [364416] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17392), 1, + aux_sym_preproc_include_token2, + ACTIONS(17394), 1, + sym_preproc_arg, + [364426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11427), 1, + ACTIONS(14856), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, + anon_sym_COMMA, + [364436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15191), 1, + anon_sym_SEMI, + [364446] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4674), 1, anon_sym_LBRACE, - STATE(5938), 1, - sym_field_declaration_list, - [364480] = 3, + STATE(5980), 1, + sym_initializer_list, + [364456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13871), 1, + ACTIONS(8233), 1, anon_sym_LBRACE, - STATE(6466), 1, - sym_compound_statement, - [364490] = 3, + STATE(2793), 1, + sym_field_declaration_list, + [364466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10603), 1, + ACTIONS(8233), 1, anon_sym_LBRACE, - STATE(3390), 1, - sym_compound_statement, - [364500] = 2, + STATE(2799), 1, + sym_field_declaration_list, + [364476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17385), 2, - anon_sym_COMMA, - anon_sym_GT2, - [364508] = 3, + ACTIONS(10639), 1, + anon_sym_LBRACE, + STATE(2814), 1, + sym_compound_statement, + [364486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(16420), 1, anon_sym_LPAREN2, - STATE(239), 1, + STATE(206), 1, sym_condition_clause, - [364518] = 3, + [364496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15776), 1, + anon_sym_COLON_COLON, + ACTIONS(17396), 1, + anon_sym_SEMI, + [364506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9311), 1, + anon_sym_LBRACE, + STATE(3875), 1, + sym_field_declaration_list, + [364516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17375), 1, + ACTIONS(10068), 1, anon_sym_LT, - STATE(5840), 1, + STATE(2048), 1, sym_template_argument_list, - [364528] = 3, + [364526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(351), 1, + STATE(992), 1, sym_compound_statement, - [364538] = 3, + [364536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11427), 1, + ACTIONS(2089), 1, anon_sym_LBRACE, - STATE(5999), 1, - sym_field_declaration_list, - [364548] = 3, + STATE(1254), 1, + sym_compound_statement, + [364546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15570), 1, - anon_sym_EQ, - STATE(10293), 1, - sym_annotation, - [364558] = 3, + ACTIONS(1002), 1, + anon_sym_LBRACE, + STATE(601), 1, + sym_compound_statement, + [364556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 1, - anon_sym_LT, - STATE(3735), 1, - sym_template_argument_list, - [364568] = 3, + ACTIONS(4902), 1, + anon_sym_LBRACE, + STATE(7381), 1, + sym_initializer_list, + [364566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(189), 1, - sym_condition_clause, - [364578] = 3, - ACTIONS(14065), 1, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(16197), 1, + anon_sym_SEMI, + [364576] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(17387), 1, - aux_sym_preproc_include_token2, - ACTIONS(17389), 1, - sym_preproc_arg, - [364588] = 2, + ACTIONS(16036), 1, + sym_identifier, + STATE(9399), 1, + sym_module_name, + [364586] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17391), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, + ACTIONS(17298), 1, + anon_sym_LT, + STATE(2643), 1, + sym_template_argument_list, [364596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11427), 1, + ACTIONS(7377), 1, anon_sym_LBRACE, - STATE(6000), 1, - sym_field_declaration_list, + STATE(1014), 1, + sym_declaration_list, [364606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13849), 1, - anon_sym_LBRACE, - STATE(5557), 1, - sym_compound_statement, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3818), 1, + sym_template_argument_list, [364616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(8182), 1, anon_sym_LBRACE, - STATE(4736), 1, + STATE(2659), 1, sym_field_declaration_list, [364626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8297), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - STATE(2733), 1, + STATE(3876), 1, sym_field_declaration_list, [364636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(8182), 1, anon_sym_LBRACE, - STATE(372), 1, - sym_compound_statement, + STATE(2660), 1, + sym_field_declaration_list, [364646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17289), 1, - anon_sym_LT, - STATE(5314), 1, - sym_template_argument_list, + ACTIONS(14886), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, + anon_sym_COMMA, [364656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7361), 1, - anon_sym_LBRACE, - STATE(693), 1, - sym_declaration_list, + ACTIONS(17370), 1, + anon_sym_LT, + STATE(2576), 1, + sym_template_argument_list, [364666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(10564), 1, anon_sym_LBRACE, - STATE(771), 1, + STATE(3433), 1, sym_compound_statement, [364676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17307), 1, - anon_sym_LT, - STATE(2174), 1, - sym_template_argument_list, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(10519), 1, + sym_condition_clause, [364686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - ACTIONS(17393), 1, - anon_sym_RBRACE, - [364696] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8269), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - STATE(2820), 1, + STATE(3891), 1, sym_field_declaration_list, - [364706] = 3, + [364696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13859), 1, - anon_sym_LBRACE, - STATE(4937), 1, - sym_compound_statement, - [364716] = 3, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(199), 1, + sym_condition_clause, + [364706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8158), 1, + ACTIONS(8342), 1, anon_sym_LBRACE, - STATE(2672), 1, + STATE(2870), 1, sym_field_declaration_list, - [364726] = 3, + [364716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12547), 1, + ACTIONS(17138), 2, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(12549), 1, - anon_sym_SEMI, - [364736] = 3, - ACTIONS(3), 1, + [364724] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - STATE(802), 1, - sym_compound_statement, - [364746] = 3, + ACTIONS(17398), 1, + aux_sym_preproc_include_token2, + ACTIONS(17400), 1, + sym_preproc_arg, + [364734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13298), 1, + ACTIONS(13273), 1, anon_sym_LBRACE, - STATE(5156), 1, + STATE(6655), 1, sym_requirement_seq, - [364756] = 2, + [364744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16795), 2, - anon_sym_COMMA, + ACTIONS(57), 1, anon_sym_LBRACE, - [364764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15829), 1, - sym_identifier, - STATE(9368), 1, - sym_module_name, - [364774] = 3, + STATE(922), 1, + sym_compound_statement, + [364754] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13869), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5162), 1, + STATE(9849), 1, sym_compound_statement, - [364784] = 2, + [364764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12671), 2, - anon_sym_COMMA, + ACTIONS(12526), 1, anon_sym_RPAREN, - [364792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9099), 1, - anon_sym_LT, - STATE(3663), 1, - sym_template_argument_list, - [364802] = 3, + ACTIONS(12528), 1, + anon_sym_SEMI, + [364774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - STATE(7713), 1, + STATE(7726), 1, sym_field_declaration_list, - [364812] = 3, + [364784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17347), 1, - anon_sym_LT, - STATE(2681), 1, - sym_template_argument_list, - [364822] = 3, + ACTIONS(13856), 1, + anon_sym_LBRACE, + STATE(5096), 1, + sym_compound_statement, + [364794] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - STATE(7717), 1, + STATE(7698), 1, sym_field_declaration_list, - [364832] = 3, + [364804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - STATE(7718), 1, + STATE(7700), 1, sym_field_declaration_list, - [364842] = 3, + [364814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(1002), 1, anon_sym_LBRACE, - STATE(7720), 1, - sym_field_declaration_list, - [364852] = 3, + STATE(551), 1, + sym_compound_statement, + [364824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 1, + ACTIONS(9311), 1, anon_sym_LBRACE, - STATE(5876), 1, - sym_initializer_list, - [364862] = 3, + STATE(7702), 1, + sym_field_declaration_list, + [364834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(15776), 1, anon_sym_COLON_COLON, - ACTIONS(15160), 1, + ACTIONS(17402), 1, anon_sym_SEMI, - [364872] = 3, + [364844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(16126), 1, + ACTIONS(15873), 1, anon_sym_SEMI, - [364882] = 3, + [364854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12755), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(10955), 1, + STATE(10672), 1, sym_argument_list, - [364892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17395), 1, - sym_identifier, - ACTIONS(17397), 1, - anon_sym_LPAREN2, - [364902] = 3, + [364864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13309), 1, + ACTIONS(13862), 1, anon_sym_LBRACE, - STATE(5223), 1, - sym_requirement_seq, - [364912] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17399), 1, - aux_sym_preproc_include_token2, - ACTIONS(17401), 1, - sym_preproc_arg, - [364922] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17403), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [364930] = 3, + STATE(6470), 1, + sym_compound_statement, + [364874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(549), 1, + STATE(9505), 1, sym_compound_statement, - [364940] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17405), 1, - aux_sym_preproc_include_token2, - ACTIONS(17407), 1, - sym_preproc_arg, - [364950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15202), 1, - anon_sym_SEMI, - [364960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17289), 1, - anon_sym_LT, - STATE(2494), 1, - sym_template_argument_list, - [364970] = 3, + [364884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15906), 1, + ACTIONS(7250), 1, anon_sym_COLON_COLON, - ACTIONS(17409), 1, + ACTIONS(16101), 1, anon_sym_SEMI, - [364980] = 3, + [364894] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(9569), 1, + STATE(9914), 1, sym_compound_statement, - [364990] = 2, + [364904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17411), 2, + ACTIONS(17300), 1, anon_sym_COMMA, - anon_sym_GT2, - [364998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14913), 1, + ACTIONS(17404), 1, anon_sym_RBRACE, - ACTIONS(17295), 1, - anon_sym_COMMA, - [365008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8269), 1, - anon_sym_LBRACE, - STATE(2834), 1, - sym_field_declaration_list, - [365018] = 3, + [364914] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8269), 1, + ACTIONS(8233), 1, anon_sym_LBRACE, - STATE(2858), 1, + STATE(2839), 1, sym_field_declaration_list, - [365028] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12551), 1, - anon_sym_LT, - STATE(4313), 1, - sym_template_argument_list, - [365038] = 3, + [364924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(10435), 1, - sym_condition_clause, - [365048] = 3, + ACTIONS(17406), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [364932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10005), 1, - anon_sym_LT, - STATE(3709), 1, - sym_template_argument_list, - [365058] = 3, + ACTIONS(13860), 1, + anon_sym_LBRACE, + STATE(8407), 1, + sym_compound_statement, + [364942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(12750), 1, anon_sym_LPAREN2, - STATE(202), 1, - sym_condition_clause, - [365068] = 3, + STATE(11115), 1, + sym_argument_list, + [364952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15188), 1, - anon_sym_SEMI, - [365078] = 3, + ACTIONS(15547), 1, + anon_sym_EQ, + STATE(10331), 1, + sym_annotation, + [364962] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(57), 1, anon_sym_LBRACE, - STATE(10142), 1, - sym_compound_statement, - [365088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13859), 1, - anon_sym_LBRACE, - STATE(4833), 1, + STATE(9440), 1, sym_compound_statement, - [365098] = 3, + [364972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(16420), 1, anon_sym_LPAREN2, - STATE(226), 1, + STATE(197), 1, sym_condition_clause, - [365108] = 3, + [364982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8503), 1, + ACTIONS(10564), 1, anon_sym_LBRACE, - STATE(3036), 1, - sym_field_declaration_list, - [365118] = 3, + STATE(3332), 1, + sym_compound_statement, + [364992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13873), 1, + ACTIONS(13848), 1, anon_sym_LBRACE, - STATE(3680), 1, + STATE(5127), 1, sym_compound_statement, - [365128] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17413), 2, - anon_sym_COMMA, - anon_sym_GT2, - [365136] = 3, + [365002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15829), 1, + ACTIONS(16036), 1, sym_identifier, - STATE(9313), 1, + STATE(9385), 1, sym_module_name, - [365146] = 3, + [365012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, - anon_sym_LBRACE, - STATE(774), 1, - sym_compound_statement, - [365156] = 3, - ACTIONS(3), 1, + ACTIONS(12540), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [365020] = 3, + ACTIONS(14045), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16014), 1, - anon_sym_SEMI, - [365166] = 3, + ACTIONS(17408), 1, + aux_sym_preproc_include_token2, + ACTIONS(17410), 1, + sym_preproc_arg, + [365030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17355), 1, + ACTIONS(17314), 1, anon_sym_LT, - STATE(5542), 1, + STATE(4123), 1, sym_template_argument_list, - [365176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12755), 1, - anon_sym_LPAREN2, - STATE(11370), 1, - sym_argument_list, - [365186] = 2, + [365040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17415), 2, - anon_sym_COMMA, - anon_sym_GT2, - [365194] = 3, + ACTIONS(958), 1, + anon_sym_LBRACE, + STATE(809), 1, + sym_compound_statement, + [365050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15194), 1, - anon_sym_SEMI, - [365204] = 3, + ACTIONS(13856), 1, + anon_sym_LBRACE, + STATE(5098), 1, + sym_compound_statement, + [365060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13869), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(5174), 1, + STATE(664), 1, sym_compound_statement, - [365214] = 3, + [365070] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17412), 1, + aux_sym_preproc_include_token2, + ACTIONS(17414), 1, + sym_preproc_arg, + [365080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13871), 1, + ACTIONS(11561), 1, anon_sym_LBRACE, - STATE(6468), 1, - sym_compound_statement, - [365224] = 2, + STATE(5974), 1, + sym_field_declaration_list, + [365090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17280), 1, + anon_sym_LPAREN2, + STATE(10411), 1, + sym_parenthesized_expression, + [365100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17417), 2, + ACTIONS(14844), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, anon_sym_COMMA, - anon_sym_GT2, - [365232] = 3, + [365110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16072), 1, - anon_sym_SEMI, - [365242] = 3, + ACTIONS(11732), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [365118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(8342), 1, anon_sym_LBRACE, - STATE(9517), 1, - sym_compound_statement, - [365252] = 3, + STATE(2881), 1, + sym_field_declaration_list, + [365128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, + ACTIONS(17280), 1, anon_sym_LPAREN2, - STATE(236), 1, - sym_condition_clause, - [365262] = 3, + STATE(10906), 1, + sym_parenthesized_expression, + [365138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(2982), 1, anon_sym_LBRACE, - STATE(390), 1, - sym_declaration_list, - [365272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15829), 1, - sym_identifier, - STATE(9334), 1, - sym_module_name, - [365282] = 2, + STATE(5744), 1, + sym_initializer_list, + [365148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17419), 2, - anon_sym_COMMA, - anon_sym_GT2, - [365290] = 2, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + STATE(10325), 1, + sym_parameter_list, + [365158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17421), 2, - anon_sym_COMMA, - anon_sym_RBRACK_RBRACK, - [365298] = 3, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(220), 1, + sym_condition_clause, + [365168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(3096), 1, anon_sym_LBRACE, - STATE(7380), 1, + STATE(6047), 1, sym_initializer_list, - [365308] = 3, + [365178] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17416), 1, + aux_sym_preproc_include_token2, + ACTIONS(17418), 1, + sym_preproc_arg, + [365188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13279), 1, - anon_sym_LBRACE, - STATE(5176), 1, - sym_requirement_seq, - [365318] = 3, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15171), 1, + anon_sym_SEMI, + [365198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, + ACTIONS(17300), 1, anon_sym_COMMA, - ACTIONS(17423), 1, + ACTIONS(17420), 1, anon_sym_RBRACE, - [365328] = 3, + [365208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8269), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(2826), 1, - sym_field_declaration_list, - [365338] = 3, + STATE(10069), 1, + sym_compound_statement, + [365218] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, + ACTIONS(309), 1, anon_sym_LBRACE, - STATE(3935), 1, - sym_field_declaration_list, - [365348] = 3, - ACTIONS(14065), 1, + STATE(348), 1, + sym_compound_statement, + [365228] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(17425), 1, - aux_sym_preproc_include_token2, - ACTIONS(17427), 1, - sym_preproc_arg, - [365358] = 3, + ACTIONS(9311), 1, + anon_sym_LBRACE, + STATE(3844), 1, + sym_field_declaration_list, + [365238] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13849), 1, + ACTIONS(3034), 1, anon_sym_LBRACE, - STATE(5549), 1, - sym_compound_statement, - [365368] = 3, + STATE(5760), 1, + sym_initializer_list, + [365248] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17422), 1, + aux_sym_preproc_include_token2, + ACTIONS(17424), 1, + sym_preproc_arg, + [365258] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17429), 1, + ACTIONS(17426), 1, anon_sym_LPAREN2, - ACTIONS(17431), 1, + ACTIONS(17428), 1, sym_raw_string_delimiter, - [365378] = 3, + [365268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(958), 1, anon_sym_LBRACE, - STATE(731), 1, + STATE(664), 1, sym_compound_statement, - [365388] = 3, + [365278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14875), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(16340), 2, anon_sym_COMMA, - [365398] = 3, + anon_sym_RPAREN, + [365286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10572), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - STATE(3478), 1, - sym_compound_statement, - [365408] = 3, + STATE(9309), 1, + sym_field_declaration_list, + [365296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13877), 1, - anon_sym_LBRACE, - STATE(5184), 1, - sym_compound_statement, - [365418] = 3, + ACTIONS(17298), 1, + anon_sym_LT, + STATE(5670), 1, + sym_template_argument_list, + [365306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, + ACTIONS(17280), 1, anon_sym_LPAREN2, - STATE(11148), 1, + STATE(10437), 1, sym_parenthesized_expression, - [365428] = 3, + [365316] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17215), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [365324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17433), 1, + ACTIONS(17280), 1, anon_sym_LPAREN2, - ACTIONS(17435), 1, - sym_raw_string_delimiter, - [365438] = 3, + STATE(10839), 1, + sym_parenthesized_expression, + [365334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(7262), 1, anon_sym_LBRACE, - STATE(9327), 1, + STATE(2163), 1, sym_field_declaration_list, - [365448] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17437), 1, - aux_sym_preproc_include_token2, - ACTIONS(17439), 1, - sym_preproc_arg, - [365458] = 3, + [365344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10647), 1, - anon_sym_LT, - STATE(4318), 1, - sym_template_argument_list, - [365468] = 3, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(16147), 1, + anon_sym_SEMI, + [365354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13869), 1, + ACTIONS(13846), 1, anon_sym_LBRACE, - STATE(5180), 1, + STATE(4769), 1, sym_compound_statement, - [365478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(11412), 1, - sym_parenthesized_expression, - [365488] = 3, + [365364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7373), 1, - anon_sym_LBRACE, - STATE(836), 1, - sym_declaration_list, - [365498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13319), 1, + ACTIONS(13262), 1, anon_sym_LBRACE, - STATE(3653), 1, + STATE(5140), 1, sym_requirement_seq, - [365508] = 2, + [365374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17229), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [365516] = 3, + ACTIONS(7262), 1, + anon_sym_LBRACE, + STATE(2165), 1, + sym_field_declaration_list, + [365384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17373), 1, - anon_sym_LT, - STATE(3733), 1, - sym_template_argument_list, - [365526] = 2, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + STATE(10209), 1, + sym_parameter_list, + [365394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17201), 2, + ACTIONS(17430), 2, anon_sym_COMMA, - anon_sym_GT2, - [365534] = 3, + anon_sym_RBRACK_RBRACK, + [365402] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(10424), 1, - sym_parameter_list, - [365544] = 3, + ACTIONS(17230), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [365410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, + ACTIONS(7361), 1, anon_sym_LBRACE, - STATE(1003), 1, + STATE(795), 1, sym_declaration_list, - [365554] = 3, + [365420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, - anon_sym_LPAREN2, - STATE(10316), 1, - sym_parameter_list, - [365564] = 3, + ACTIONS(17432), 2, + anon_sym_SEMI, + anon_sym_LBRACK_LBRACK, + [365428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13839), 1, - anon_sym_LBRACE, - STATE(5083), 1, - sym_compound_statement, - [365574] = 3, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(198), 1, + sym_condition_clause, + [365438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - STATE(9338), 1, + STATE(9323), 1, sym_field_declaration_list, - [365584] = 3, + [365448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - STATE(9339), 1, + STATE(9324), 1, sym_field_declaration_list, - [365594] = 3, + [365458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(9847), 1, - sym_compound_statement, - [365604] = 3, + ACTIONS(17300), 1, + anon_sym_COMMA, + ACTIONS(17434), 1, + anon_sym_RBRACE, + [365468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(10069), 1, + ACTIONS(9990), 1, anon_sym_LBRACE, - STATE(9342), 1, + STATE(9327), 1, sym_field_declaration_list, - [365614] = 3, + [365478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(774), 1, - sym_compound_statement, - [365624] = 2, + ACTIONS(13775), 1, + anon_sym_LPAREN2, + STATE(10292), 1, + sym_parameter_list, + [365488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17214), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [365632] = 3, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(16211), 1, + anon_sym_SEMI, + [365498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17355), 1, - anon_sym_LT, - STATE(2594), 1, - sym_template_argument_list, - [365642] = 3, + ACTIONS(14451), 2, + anon_sym_COMMA, + anon_sym_SEMI, + [365506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(16070), 1, - anon_sym_SEMI, - [365652] = 3, + ACTIONS(7363), 1, + anon_sym_LBRACE, + STATE(715), 1, + sym_declaration_list, + [365516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(57), 1, anon_sym_LBRACE, - STATE(383), 1, + STATE(9844), 1, sym_compound_statement, - [365662] = 2, + [365526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14877), 2, + ACTIONS(16769), 2, anon_sym_COMMA, anon_sym_SEMI, - [365670] = 3, + [365534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(10571), 1, - sym_parenthesized_expression, - [365680] = 3, + ACTIONS(17370), 1, + anon_sym_LT, + STATE(5676), 1, + sym_template_argument_list, + [365544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15792), 1, - anon_sym_SEMI, - [365690] = 3, + ACTIONS(7361), 1, + anon_sym_LBRACE, + STATE(838), 1, + sym_declaration_list, + [365554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(224), 1, - sym_condition_clause, - [365700] = 3, + ACTIONS(57), 1, + anon_sym_LBRACE, + STATE(9974), 1, + sym_compound_statement, + [365564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16068), 1, + ACTIONS(13862), 1, anon_sym_LBRACE, - STATE(8427), 1, - sym_requirement_seq, - [365710] = 2, + STATE(6473), 1, + sym_compound_statement, + [365574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12528), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [365718] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17441), 1, - aux_sym_preproc_include_token2, - ACTIONS(17443), 1, - sym_preproc_arg, - [365728] = 3, + ACTIONS(1002), 1, + anon_sym_LBRACE, + STATE(607), 1, + sym_compound_statement, + [365584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(15829), 1, - sym_identifier, - STATE(10246), 1, - sym_module_name, - [365738] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17445), 1, - aux_sym_preproc_include_token2, - ACTIONS(17447), 1, - sym_preproc_arg, - [365748] = 2, + ACTIONS(9213), 1, + anon_sym_LBRACE, + STATE(4380), 1, + sym_field_declaration_list, + [365594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17242), 2, + ACTIONS(17254), 1, + anon_sym_RBRACK, + ACTIONS(17436), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [365756] = 3, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17449), 1, - aux_sym_preproc_include_token2, - ACTIONS(17451), 1, - sym_preproc_arg, - [365766] = 2, + [365604] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17253), 2, + ACTIONS(9492), 2, anon_sym_COMMA, anon_sym_RBRACK, - [365774] = 3, + [365612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14901), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, + ACTIONS(17438), 2, anon_sym_COMMA, - [365784] = 2, + anon_sym_RBRACK, + [365620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16914), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [365792] = 3, - ACTIONS(14065), 1, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15933), 1, + anon_sym_SEMI, + [365630] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(17453), 1, - aux_sym_preproc_include_token2, - ACTIONS(17455), 1, - sym_preproc_arg, - [365802] = 3, + ACTIONS(12844), 1, + anon_sym_LBRACE, + STATE(7575), 1, + sym_field_declaration_list, + [365640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, + ACTIONS(958), 1, anon_sym_LBRACE, - STATE(439), 1, + STATE(805), 1, sym_compound_statement, - [365812] = 3, + [365650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8503), 1, - anon_sym_LBRACE, - STATE(3025), 1, - sym_field_declaration_list, - [365822] = 3, + ACTIONS(14900), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, + anon_sym_COMMA, + [365660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8503), 1, + ACTIONS(13862), 1, anon_sym_LBRACE, - STATE(3035), 1, - sym_field_declaration_list, - [365832] = 2, + STATE(6498), 1, + sym_compound_statement, + [365670] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12533), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [365840] = 3, + ACTIONS(15968), 1, + anon_sym_LBRACE, + STATE(8039), 1, + sym_requirement_seq, + [365680] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7395), 1, + ACTIONS(7377), 1, anon_sym_LBRACE, - STATE(450), 1, + STATE(1005), 1, sym_declaration_list, - [365850] = 3, + [365690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, - anon_sym_LBRACE, - STATE(564), 1, - sym_compound_statement, - [365860] = 3, + ACTIONS(17300), 1, + anon_sym_COMMA, + ACTIONS(17440), 1, + anon_sym_RBRACE, + [365700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - STATE(3917), 1, + STATE(3907), 1, sym_field_declaration_list, - [365870] = 3, + [365710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - STATE(3936), 1, + STATE(3915), 1, sym_field_declaration_list, - [365880] = 3, + [365720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - STATE(3942), 1, + STATE(3916), 1, sym_field_declaration_list, - [365890] = 3, + [365730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9246), 1, + ACTIONS(9213), 1, anon_sym_LBRACE, - STATE(3836), 1, + STATE(3936), 1, sym_field_declaration_list, - [365900] = 2, + [365740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17272), 2, + ACTIONS(17442), 2, anon_sym_COMMA, - anon_sym_LBRACE, - [365908] = 3, + anon_sym_GT2, + [365748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17457), 1, + ACTIONS(17444), 1, anon_sym_LPAREN2, - ACTIONS(17459), 1, + ACTIONS(17446), 1, sym_raw_string_delimiter, - [365918] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16444), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [365926] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12681), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [365934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - ACTIONS(15182), 1, - anon_sym_SEMI, - [365944] = 2, + [365758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17461), 2, - anon_sym_COMMA, + ACTIONS(13858), 1, anon_sym_LBRACE, - [365952] = 2, + STATE(8043), 1, + sym_compound_statement, + [365768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17266), 2, - anon_sym_COMMA, + ACTIONS(16221), 1, anon_sym_LBRACE, - [365960] = 3, + STATE(2994), 1, + sym_requirement_seq, + [365778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - STATE(5538), 1, - sym_initializer_list, - [365970] = 3, + ACTIONS(17350), 1, + anon_sym_LT, + STATE(2630), 1, + sym_template_argument_list, + [365788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17463), 1, + ACTIONS(17448), 1, anon_sym_LPAREN2, - ACTIONS(17465), 1, + ACTIONS(17450), 1, sym_raw_string_delimiter, - [365980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13885), 1, - anon_sym_LBRACE, - STATE(8426), 1, - sym_compound_statement, - [365990] = 2, + [365798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17467), 2, - anon_sym_COMMA, - anon_sym_LBRACE, - [365998] = 3, + ACTIONS(17452), 2, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [365806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_LBRACE, - STATE(7298), 1, - sym_initializer_list, - [366008] = 3, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(227), 1, + sym_condition_clause, + [365816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17373), 1, - anon_sym_LT, - STATE(4130), 1, - sym_template_argument_list, - [366018] = 3, + ACTIONS(17454), 2, + anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + [365824] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17469), 1, + ACTIONS(17456), 1, anon_sym_LPAREN2, - ACTIONS(17471), 1, + ACTIONS(17458), 1, sym_raw_string_delimiter, - [366028] = 3, + [365834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 1, + ACTIONS(13858), 1, anon_sym_LBRACE, - STATE(7571), 1, - sym_field_declaration_list, - [366038] = 3, + STATE(8056), 1, + sym_compound_statement, + [365844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14889), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, - anon_sym_COMMA, - [366048] = 2, + ACTIONS(13846), 1, + anon_sym_LBRACE, + STATE(4955), 1, + sym_compound_statement, + [365854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12735), 2, + ACTIONS(12662), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [366056] = 3, + anon_sym_RBRACE, + [365862] = 3, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17460), 1, + aux_sym_preproc_include_token2, + ACTIONS(17462), 1, + sym_preproc_arg, + [365872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17473), 1, + ACTIONS(17464), 1, anon_sym_LPAREN2, - ACTIONS(17475), 1, + ACTIONS(17466), 1, sym_raw_string_delimiter, - [366066] = 2, + [365882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14481), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [366074] = 3, + ACTIONS(9990), 1, + anon_sym_LBRACE, + STATE(4641), 1, + sym_field_declaration_list, + [365892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(57), 1, + ACTIONS(13850), 1, anon_sym_LBRACE, - STATE(5106), 1, + STATE(3002), 1, sym_compound_statement, - [366084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17477), 1, - anon_sym_LPAREN2, - ACTIONS(17479), 1, - sym_raw_string_delimiter, - [366094] = 3, + [365902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(11039), 1, - sym_parenthesized_expression, - [366104] = 3, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + ACTIONS(15099), 1, + anon_sym_SEMI, + [365912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17481), 1, + ACTIONS(17468), 1, anon_sym_LPAREN2, - ACTIONS(17483), 1, + ACTIONS(17470), 1, sym_raw_string_delimiter, - [366114] = 3, + [365922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7369), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_declaration_list, - [366124] = 3, + ACTIONS(17280), 1, + anon_sym_LPAREN2, + STATE(10244), 1, + sym_parenthesized_expression, + [365932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16228), 1, + ACTIONS(4674), 1, anon_sym_LBRACE, - STATE(8003), 1, - sym_requirement_seq, - [366134] = 3, + STATE(7197), 1, + sym_initializer_list, + [365942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17485), 1, + ACTIONS(17472), 1, anon_sym_LPAREN2, - ACTIONS(17487), 1, + ACTIONS(17474), 1, sym_raw_string_delimiter, - [366144] = 3, + [365952] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17489), 1, + ACTIONS(17476), 1, anon_sym_LPAREN2, - ACTIONS(17491), 1, + ACTIONS(17478), 1, sym_raw_string_delimiter, - [366154] = 3, + [365962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17493), 1, + ACTIONS(17480), 1, anon_sym_LPAREN2, - ACTIONS(17495), 1, + ACTIONS(17482), 1, sym_raw_string_delimiter, - [366164] = 3, + [365972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17497), 1, + ACTIONS(17484), 1, anon_sym_LPAREN2, - ACTIONS(17499), 1, + ACTIONS(17486), 1, sym_raw_string_delimiter, - [366174] = 3, + [365982] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17501), 1, + ACTIONS(17488), 1, anon_sym_LPAREN2, - ACTIONS(17503), 1, + ACTIONS(17490), 1, sym_raw_string_delimiter, - [366184] = 3, + [365992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17505), 1, + ACTIONS(17492), 1, anon_sym_LPAREN2, - ACTIONS(17507), 1, + ACTIONS(17494), 1, sym_raw_string_delimiter, - [366194] = 3, + [366002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17509), 1, + ACTIONS(17496), 1, anon_sym_LPAREN2, - ACTIONS(17511), 1, + ACTIONS(17498), 1, sym_raw_string_delimiter, - [366204] = 3, + [366012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17513), 1, + ACTIONS(17500), 1, anon_sym_LPAREN2, - ACTIONS(17515), 1, + ACTIONS(17502), 1, sym_raw_string_delimiter, - [366214] = 3, + [366022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17517), 1, + ACTIONS(17504), 1, anon_sym_LPAREN2, - ACTIONS(17519), 1, + ACTIONS(17506), 1, sym_raw_string_delimiter, - [366224] = 3, + [366032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17521), 1, + ACTIONS(17508), 1, anon_sym_LPAREN2, - ACTIONS(17523), 1, + ACTIONS(17510), 1, sym_raw_string_delimiter, - [366234] = 3, + [366042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17525), 1, + ACTIONS(17512), 1, anon_sym_LPAREN2, - ACTIONS(17527), 1, + ACTIONS(17514), 1, sym_raw_string_delimiter, - [366244] = 3, + [366052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17529), 1, + ACTIONS(17516), 1, anon_sym_LPAREN2, - ACTIONS(17531), 1, + ACTIONS(17518), 1, sym_raw_string_delimiter, - [366254] = 3, + [366062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17533), 1, + ACTIONS(17520), 1, anon_sym_LPAREN2, - ACTIONS(17535), 1, + ACTIONS(17522), 1, sym_raw_string_delimiter, - [366264] = 3, + [366072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13875), 1, + ACTIONS(958), 1, anon_sym_LBRACE, - STATE(8017), 1, + STATE(673), 1, sym_compound_statement, - [366274] = 3, + [366082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13873), 1, + ACTIONS(17258), 2, + anon_sym_COMMA, anon_sym_LBRACE, - STATE(3672), 1, - sym_compound_statement, - [366284] = 3, + [366090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17313), 1, - anon_sym_LT, - STATE(2648), 1, - sym_template_argument_list, - [366294] = 2, + ACTIONS(14858), 1, + anon_sym_RBRACE, + ACTIONS(17300), 1, + anon_sym_COMMA, + [366100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5948), 2, + ACTIONS(17300), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [366302] = 3, + ACTIONS(17524), 1, + anon_sym_RBRACE, + [366110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16420), 1, + anon_sym_LPAREN2, + STATE(10451), 1, + sym_condition_clause, + [366120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9950), 1, + ACTIONS(12366), 1, anon_sym_LT, - STATE(4214), 1, + STATE(4141), 1, sym_template_argument_list, - [366312] = 3, + [366130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(12844), 1, anon_sym_LBRACE, - STATE(666), 1, - sym_compound_statement, - [366322] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12443), 2, - anon_sym_COMMA, - anon_sym_SEMI, - [366330] = 3, + STATE(7598), 1, + sym_field_declaration_list, + [366140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14903), 1, - anon_sym_RBRACE, - ACTIONS(17295), 1, - anon_sym_COMMA, - [366340] = 3, + ACTIONS(12844), 1, + anon_sym_LBRACE, + STATE(7578), 1, + sym_field_declaration_list, + [366150] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13795), 1, + ACTIONS(16420), 1, anon_sym_LPAREN2, - STATE(10395), 1, - sym_parameter_list, - [366350] = 3, + STATE(237), 1, + sym_condition_clause, + [366160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 1, - anon_sym_LBRACE, - STATE(7575), 1, - sym_field_declaration_list, - [366360] = 3, + ACTIONS(10068), 1, + anon_sym_LT, + STATE(3755), 1, + sym_template_argument_list, + [366170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12978), 1, + ACTIONS(7355), 1, anon_sym_LBRACE, - STATE(7576), 1, - sym_field_declaration_list, - [366370] = 3, + STATE(403), 1, + sym_declaration_list, + [366180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(16576), 1, - anon_sym_LPAREN2, - STATE(237), 1, - sym_condition_clause, - [366380] = 3, + ACTIONS(17370), 1, + anon_sym_LT, + STATE(2676), 1, + sym_template_argument_list, + [366190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17301), 1, - anon_sym_LPAREN2, - STATE(10498), 1, - sym_parenthesized_expression, - [366390] = 2, + ACTIONS(13870), 1, + anon_sym_LBRACE, + STATE(3590), 1, + sym_compound_statement, + [366200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(17537), 1, - anon_sym_SEMI, - [366397] = 2, + ACTIONS(17298), 1, + anon_sym_LT, + STATE(2434), 1, + sym_template_argument_list, + [366210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17539), 1, + ACTIONS(17526), 1, anon_sym_LPAREN2, - [366404] = 2, + [366217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17541), 1, - anon_sym_DOT_DOT_DOT, - [366411] = 2, + ACTIONS(17528), 1, + anon_sym_LPAREN2, + [366224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17543), 1, - aux_sym_preproc_if_token2, - [366418] = 2, + ACTIONS(14854), 1, + anon_sym_RBRACE, + [366231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14381), 1, - anon_sym_LBRACE, - [366425] = 2, + ACTIONS(12450), 1, + anon_sym_RBRACE, + [366238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17545), 1, + ACTIONS(17530), 1, anon_sym_SEMI, - [366432] = 2, + [366245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17547), 1, - anon_sym_LPAREN2, - [366439] = 2, - ACTIONS(14065), 1, + ACTIONS(6007), 1, + anon_sym_DOT_DOT_DOT, + [366252] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16826), 1, - aux_sym_preproc_include_token2, - [366446] = 2, + ACTIONS(17532), 1, + aux_sym_preproc_if_token2, + [366259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12942), 1, + ACTIONS(17534), 1, anon_sym_RPAREN, - [366453] = 2, + [366266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17549), 1, - anon_sym_DQUOTE, - [366460] = 2, + ACTIONS(14844), 1, + anon_sym_RBRACE, + [366273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17107), 1, + ACTIONS(17536), 1, anon_sym_RPAREN, - [366467] = 2, + [366280] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17538), 1, + aux_sym_preproc_if_token2, + [366287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17551), 1, + ACTIONS(17540), 1, sym_identifier, - [366474] = 2, - ACTIONS(14065), 1, + [366294] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17553), 1, - aux_sym_preproc_include_token2, - [366481] = 2, + ACTIONS(17542), 1, + sym_identifier, + [366301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17555), 1, - anon_sym_SEMI, - [366488] = 2, + ACTIONS(17544), 1, + anon_sym_COLON, + [366308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17557), 1, + ACTIONS(12726), 1, anon_sym_RPAREN, - [366495] = 2, + [366315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17559), 1, - anon_sym_RPAREN, - [366502] = 2, + ACTIONS(17546), 1, + anon_sym_SEMI, + [366322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17561), 1, + ACTIONS(17548), 1, anon_sym_RPAREN, - [366509] = 2, + [366329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17563), 1, + ACTIONS(17550), 1, anon_sym_RPAREN, - [366516] = 2, + [366336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17565), 1, + ACTIONS(17552), 1, sym_identifier, - [366523] = 2, + [366343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17567), 1, + ACTIONS(17554), 1, anon_sym_RPAREN, - [366530] = 2, + [366350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17569), 1, - anon_sym_RPAREN, - [366537] = 2, + ACTIONS(17556), 1, + anon_sym_SEMI, + [366357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17571), 1, + ACTIONS(17558), 1, sym_auto, - [366544] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17573), 1, - aux_sym_preproc_include_token2, - [366551] = 2, + [366364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17575), 1, - ts_builtin_sym_end, - [366558] = 2, + ACTIONS(17560), 1, + anon_sym_SEMI, + [366371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12293), 1, + ACTIONS(17562), 1, anon_sym_SEMI, - [366565] = 2, + [366378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17577), 1, - aux_sym_preproc_if_token2, - [366572] = 2, + ACTIONS(17564), 1, + anon_sym_DQUOTE, + [366385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17579), 1, + ACTIONS(17566), 1, anon_sym_DQUOTE, - [366579] = 2, + [366392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17581), 1, + ACTIONS(12680), 1, + anon_sym_SEMI, + [366399] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17568), 1, anon_sym_RPAREN, - [366586] = 2, + [366406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17583), 1, - sym_identifier, - [366593] = 2, + ACTIONS(17570), 1, + anon_sym_DQUOTE, + [366413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10890), 1, - anon_sym_RPAREN, - [366600] = 2, + ACTIONS(17572), 1, + anon_sym_SEMI, + [366420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14464), 1, - anon_sym_LBRACE, - [366607] = 2, + ACTIONS(17574), 1, + anon_sym_SEMI, + [366427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17585), 1, - sym_identifier, - [366614] = 2, + ACTIONS(12299), 1, + anon_sym_RBRACE, + [366434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17587), 1, - anon_sym_DQUOTE, - [366621] = 2, + ACTIONS(17576), 1, + anon_sym_RPAREN, + [366441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12679), 1, + ACTIONS(12686), 1, anon_sym_COLON, - [366628] = 2, + [366448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17589), 1, + ACTIONS(17578), 1, anon_sym_RPAREN, - [366635] = 2, + [366455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17591), 1, + ACTIONS(17580), 1, anon_sym_RPAREN, - [366642] = 2, + [366462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17593), 1, - anon_sym_RBRACK, - [366649] = 2, + ACTIONS(17582), 1, + anon_sym_RPAREN, + [366469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17595), 1, + ACTIONS(17584), 1, anon_sym_RPAREN, - [366656] = 2, + [366476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17597), 1, + ACTIONS(17586), 1, anon_sym_RPAREN, - [366663] = 2, + [366483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16070), 1, + ACTIONS(15191), 1, anon_sym_SEMI, - [366670] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17599), 1, - aux_sym_preproc_include_token2, - [366677] = 2, + [366490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17601), 1, + ACTIONS(17588), 1, anon_sym_RPAREN, - [366684] = 2, + [366497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PIPE_PIPE, - [366691] = 2, + ACTIONS(17590), 1, + sym_identifier, + [366504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17605), 1, - anon_sym_LPAREN2, - [366698] = 2, + ACTIONS(17592), 1, + sym_identifier, + [366511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17607), 1, + ACTIONS(17594), 1, anon_sym_RPAREN, - [366705] = 2, + [366518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17609), 1, - anon_sym_RPAREN, - [366712] = 2, + ACTIONS(17596), 1, + anon_sym_SEMI, + [366525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17611), 1, - anon_sym_RPAREN, - [366719] = 2, + ACTIONS(17598), 1, + anon_sym_SEMI, + [366532] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17600), 1, + anon_sym_SEMI, + [366539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17613), 1, + ACTIONS(17602), 1, anon_sym_RPAREN, - [366726] = 2, + [366546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17615), 1, + ACTIONS(17604), 1, sym_identifier, - [366733] = 2, + [366553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17617), 1, + ACTIONS(17606), 1, anon_sym_RPAREN, - [366740] = 2, + [366560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17619), 1, - anon_sym_LPAREN2, - [366747] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17621), 1, - aux_sym_preproc_include_token2, - [366754] = 2, + ACTIONS(16147), 1, + anon_sym_SEMI, + [366567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17623), 1, + ACTIONS(17608), 1, anon_sym_RPAREN, - [366761] = 2, + [366574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17625), 1, + ACTIONS(17610), 1, anon_sym_SEMI, - [366768] = 2, + [366581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12809), 1, - anon_sym_RPAREN, - [366775] = 2, + ACTIONS(17612), 1, + aux_sym_preproc_if_token2, + [366588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12473), 1, - anon_sym_RBRACE, - [366782] = 2, + ACTIONS(15947), 1, + anon_sym_SEMI, + [366595] = 2, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14166), 1, + aux_sym_preproc_include_token2, + [366602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17627), 1, - aux_sym_preproc_if_token2, - [366789] = 2, + ACTIONS(17614), 1, + anon_sym_STAR, + [366609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17629), 1, - anon_sym_LPAREN2, - [366796] = 2, + ACTIONS(14254), 1, + anon_sym_LBRACE, + [366616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17631), 1, + ACTIONS(17616), 1, anon_sym_RPAREN, - [366803] = 2, + [366623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17633), 1, + ACTIONS(17618), 1, sym_raw_string_delimiter, - [366810] = 2, + [366630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17635), 1, - anon_sym_STAR, - [366817] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14901), 1, - anon_sym_RBRACE, - [366824] = 2, + ACTIONS(17620), 1, + aux_sym_preproc_if_token2, + [366637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16014), 1, + ACTIONS(17622), 1, anon_sym_SEMI, - [366831] = 2, + [366644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17637), 1, - anon_sym_LPAREN2, - [366838] = 2, + ACTIONS(17624), 1, + sym_identifier, + [366651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17639), 1, - aux_sym_preproc_if_token2, - [366845] = 2, + ACTIONS(17626), 1, + anon_sym_RPAREN, + [366658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17641), 1, - sym_identifier, - [366852] = 2, + ACTIONS(17628), 1, + anon_sym_RPAREN, + [366665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17643), 1, - anon_sym_RBRACK, - [366859] = 2, + ACTIONS(12784), 1, + anon_sym_RPAREN, + [366672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17645), 1, - anon_sym_private, - [366866] = 2, + ACTIONS(17630), 1, + anon_sym_RPAREN, + [366679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17321), 1, - anon_sym_RBRACE, - [366873] = 2, + ACTIONS(17632), 1, + anon_sym_RPAREN, + [366686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17647), 1, + ACTIONS(17634), 1, anon_sym_RPAREN, - [366880] = 2, + [366693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17649), 1, + ACTIONS(12776), 1, anon_sym_RPAREN, - [366887] = 2, + [366700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17651), 1, - aux_sym_preproc_if_token2, - [366894] = 2, + ACTIONS(17636), 1, + anon_sym_RBRACE, + [366707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17653), 1, - anon_sym_RPAREN, - [366901] = 2, + ACTIONS(16101), 1, + anon_sym_SEMI, + [366714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10546), 1, + ACTIONS(17638), 1, anon_sym_SEMI, - [366908] = 2, + [366721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15174), 1, - anon_sym_LBRACE, - [366915] = 2, + ACTIONS(17640), 1, + anon_sym_COLON, + [366728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17655), 1, - aux_sym_preproc_if_token2, - [366922] = 2, + ACTIONS(17642), 1, + anon_sym_private, + [366735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17657), 1, - sym_identifier, - [366929] = 2, + ACTIONS(17644), 1, + anon_sym_SEMI, + [366742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17659), 1, - anon_sym_RPAREN, - [366936] = 2, + ACTIONS(12650), 1, + anon_sym_COLON, + [366749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17661), 1, - aux_sym_preproc_if_token2, - [366943] = 2, + ACTIONS(17646), 1, + anon_sym_RPAREN, + [366756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12719), 1, - anon_sym_SEMI, - [366950] = 2, + ACTIONS(17648), 1, + anon_sym_RPAREN, + [366763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15182), 1, - anon_sym_SEMI, - [366957] = 2, + ACTIONS(17650), 1, + anon_sym_COLON, + [366770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17663), 1, - anon_sym_RBRACE, - [366964] = 2, + ACTIONS(17652), 1, + sym_identifier, + [366777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17665), 1, - anon_sym_SEMI, - [366971] = 2, + ACTIONS(17654), 1, + anon_sym_RPAREN, + [366784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17667), 1, + ACTIONS(17656), 1, aux_sym_preproc_if_token2, - [366978] = 2, + [366791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17669), 1, - anon_sym_RPAREN, - [366985] = 2, + ACTIONS(14886), 1, + anon_sym_RBRACE, + [366798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17671), 1, + ACTIONS(17658), 1, anon_sym_RPAREN, - [366992] = 2, + [366805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17673), 1, + ACTIONS(17660), 1, anon_sym_RPAREN, - [366999] = 2, + [366812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17675), 1, - anon_sym_SEMI, - [367006] = 2, - ACTIONS(14065), 1, + ACTIONS(12688), 1, + anon_sym_RPAREN, + [366819] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17677), 1, - aux_sym_preproc_include_token2, - [367013] = 2, + ACTIONS(17662), 1, + anon_sym_LPAREN2, + [366826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17679), 1, + ACTIONS(17664), 1, anon_sym_SEMI, - [367020] = 2, + [366833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10874), 1, + ACTIONS(17666), 1, anon_sym_RPAREN, - [367027] = 2, + [366840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17681), 1, - anon_sym_SEMI, - [367034] = 2, + ACTIONS(17668), 1, + anon_sym_LPAREN2, + [366847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17683), 1, - anon_sym_SEMI, - [367041] = 2, + ACTIONS(17670), 1, + anon_sym_RPAREN, + [366854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 1, - anon_sym_SEMI, - [367048] = 2, + ACTIONS(17672), 1, + anon_sym_DQUOTE, + [366861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17685), 1, - anon_sym_SEMI, - [367055] = 2, + ACTIONS(12806), 1, + anon_sym_RPAREN, + [366868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17687), 1, + ACTIONS(17674), 1, aux_sym_preproc_if_token2, - [367062] = 2, + [366875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15792), 1, + ACTIONS(12604), 1, anon_sym_SEMI, - [367069] = 2, + [366882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12693), 1, - anon_sym_COLON, - [367076] = 2, + ACTIONS(17676), 1, + anon_sym_SEMI, + [366889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17689), 1, - sym_identifier, - [367083] = 2, + ACTIONS(17678), 1, + anon_sym_LBRACE, + [366896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17691), 1, - anon_sym_COLON, - [367090] = 2, + ACTIONS(17680), 1, + sym_identifier, + [366903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12729), 1, - anon_sym_SEMI, - [367097] = 2, + ACTIONS(17682), 1, + anon_sym_RPAREN, + [366910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14907), 1, - anon_sym_RBRACE, - [367104] = 2, + ACTIONS(17684), 1, + anon_sym_RPAREN, + [366917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17693), 1, - anon_sym_LPAREN2, - [367111] = 2, + ACTIONS(17686), 1, + anon_sym_DQUOTE, + [366924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17695), 1, - anon_sym_SEMI, - [367118] = 2, + ACTIONS(17688), 1, + anon_sym_RPAREN, + [366931] = 2, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17690), 1, + aux_sym_preproc_include_token2, + [366938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17697), 1, - anon_sym_SEMI, - [367125] = 2, + ACTIONS(17692), 1, + anon_sym_RPAREN, + [366945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17699), 1, - anon_sym_SEMI, - [367132] = 2, + ACTIONS(17694), 1, + anon_sym_DQUOTE, + [366952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17701), 1, - anon_sym_RPAREN, - [367139] = 2, + ACTIONS(17696), 1, + anon_sym_DQUOTE, + [366959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11438), 1, - sym_identifier, - [367146] = 2, + ACTIONS(17698), 1, + anon_sym_COLON, + [366966] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17703), 1, + ACTIONS(17700), 1, sym_identifier, - [367153] = 2, + [366973] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17705), 1, - anon_sym_RBRACE, - [367160] = 2, + ACTIONS(17702), 1, + anon_sym_DQUOTE, + [366980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12944), 1, - anon_sym_RPAREN, - [367167] = 2, + ACTIONS(17704), 1, + anon_sym_SEMI, + [366987] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17707), 1, - sym_identifier, - [367174] = 2, + ACTIONS(17706), 1, + anon_sym_SEMI, + [366994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17709), 1, - anon_sym_LPAREN2, - [367181] = 2, - ACTIONS(14065), 1, + ACTIONS(17708), 1, + anon_sym_DQUOTE, + [367001] = 2, + ACTIONS(14045), 1, sym_comment, - ACTIONS(17711), 1, + ACTIONS(17710), 1, aux_sym_preproc_include_token2, - [367188] = 2, + [367008] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17713), 1, - aux_sym_preproc_if_token2, - [367195] = 2, + ACTIONS(17712), 1, + sym_identifier, + [367015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17715), 1, - anon_sym_SEMI, - [367202] = 2, + ACTIONS(16285), 1, + anon_sym_COLON_COLON, + [367022] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17717), 1, + ACTIONS(17714), 1, anon_sym_STAR, - [367209] = 2, + [367029] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17719), 1, - aux_sym_preproc_if_token2, - [367216] = 2, + ACTIONS(17716), 1, + anon_sym_DQUOTE, + [367036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17721), 1, - anon_sym_SEMI, - [367223] = 2, + ACTIONS(13013), 1, + anon_sym_RPAREN, + [367043] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17723), 1, + ACTIONS(17718), 1, anon_sym_RPAREN, - [367230] = 2, + [367050] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17725), 1, - anon_sym_SEMI, - [367237] = 2, + ACTIONS(16771), 1, + anon_sym_RPAREN, + [367057] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17727), 1, - aux_sym_preproc_if_token2, - [367244] = 2, + ACTIONS(17720), 1, + anon_sym_SEMI, + [367064] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17729), 1, - aux_sym_preproc_if_token2, - [367251] = 2, - ACTIONS(3), 1, + ACTIONS(17722), 1, + anon_sym_LPAREN2, + [367071] = 2, + ACTIONS(14045), 1, sym_comment, - ACTIONS(17731), 1, - aux_sym_preproc_if_token2, - [367258] = 2, + ACTIONS(17724), 1, + aux_sym_preproc_include_token2, + [367078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17733), 1, - sym_identifier, - [367265] = 2, + ACTIONS(17726), 1, + anon_sym_SEMI, + [367085] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17735), 1, + ACTIONS(17728), 1, anon_sym_RPAREN, - [367272] = 2, + [367092] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17737), 1, - sym_identifier, - [367279] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17739), 1, - sym_this, - [367286] = 2, + ACTIONS(17730), 1, + anon_sym_SEMI, + [367099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, + ACTIONS(17732), 1, sym_identifier, - [367293] = 2, + [367106] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17741), 1, - aux_sym_preproc_if_token2, - [367300] = 2, + ACTIONS(17734), 1, + anon_sym_RPAREN, + [367113] = 2, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16650), 1, + aux_sym_preproc_include_token2, + [367120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17743), 1, + ACTIONS(17736), 1, sym_identifier, - [367307] = 2, + [367127] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17745), 1, - anon_sym_COLON, - [367314] = 2, + ACTIONS(17738), 1, + anon_sym_LBRACE, + [367134] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12733), 1, - anon_sym_SEMI, - [367321] = 2, - ACTIONS(14065), 1, + ACTIONS(17740), 1, + anon_sym_RPAREN, + [367141] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(17747), 1, - aux_sym_preproc_include_token2, - [367328] = 2, + ACTIONS(17742), 1, + anon_sym_SEMI, + [367148] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17749), 1, + ACTIONS(17744), 1, anon_sym_SEMI, - [367335] = 2, + [367155] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17751), 1, - anon_sym_LBRACE, - [367342] = 2, + ACTIONS(17746), 1, + anon_sym_RPAREN, + [367162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17753), 1, - anon_sym_SEMI, - [367349] = 2, + ACTIONS(11218), 1, + sym_identifier, + [367169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17755), 1, + ACTIONS(17748), 1, aux_sym_preproc_if_token2, - [367356] = 2, + [367176] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17757), 1, + ACTIONS(17750), 1, anon_sym_SEMI, - [367363] = 2, + [367183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17759), 1, - anon_sym_SEMI, - [367370] = 2, + ACTIONS(17752), 1, + aux_sym_preproc_if_token2, + [367190] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10526), 1, - anon_sym_SEMI, - [367377] = 2, + ACTIONS(6050), 1, + anon_sym_DOT_DOT_DOT, + [367197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 1, - anon_sym_COLON_COLON, - [367384] = 2, + ACTIONS(17754), 1, + anon_sym_RPAREN, + [367204] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17297), 1, - anon_sym_RBRACE, - [367391] = 2, + ACTIONS(17756), 1, + anon_sym_RPAREN, + [367211] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17761), 1, + ACTIONS(17758), 1, anon_sym_LPAREN2, - [367398] = 2, + [367218] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12546), 1, + anon_sym_SEMI, + [367225] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17763), 1, + ACTIONS(17760), 1, anon_sym_SEMI, - [367405] = 2, + [367232] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17765), 1, + ACTIONS(17762), 1, anon_sym_SEMI, - [367412] = 2, - ACTIONS(8659), 1, - aux_sym_preproc_include_token2, - ACTIONS(14065), 1, - sym_comment, - [367419] = 2, + [367239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17767), 1, + ACTIONS(15171), 1, anon_sym_SEMI, - [367426] = 2, + [367246] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17769), 1, - anon_sym_RPAREN, - [367433] = 2, + ACTIONS(17764), 1, + aux_sym_preproc_if_token2, + [367253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17771), 1, - anon_sym_SEMI, - [367440] = 2, + ACTIONS(17766), 1, + aux_sym_preproc_if_token2, + [367260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17773), 1, - anon_sym_SEMI, - [367447] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(17775), 1, - aux_sym_preproc_include_token2, - [367454] = 2, + ACTIONS(17768), 1, + anon_sym_LPAREN2, + [367267] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17777), 1, + ACTIONS(17770), 1, sym_identifier, - [367461] = 2, + [367274] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17779), 1, - anon_sym_RPAREN, - [367468] = 2, + ACTIONS(17772), 1, + anon_sym_EQ, + [367281] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17774), 1, + aux_sym_preproc_if_token2, + [367288] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17781), 1, + ACTIONS(17776), 1, anon_sym_RPAREN, - [367475] = 2, + [367295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17783), 1, + ACTIONS(17778), 1, anon_sym_RPAREN, - [367482] = 2, + [367302] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17785), 1, + ACTIONS(17780), 1, sym_identifier, - [367489] = 2, + [367309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17787), 1, - aux_sym_preproc_if_token2, - [367496] = 2, + ACTIONS(17782), 1, + anon_sym_SEMI, + [367316] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17789), 1, + ACTIONS(17784), 1, sym_auto, - [367503] = 2, + [367323] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17791), 1, + ACTIONS(17786), 1, anon_sym_SEMI, - [367510] = 2, + [367330] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17793), 1, + ACTIONS(13023), 1, anon_sym_RPAREN, - [367517] = 2, + [367337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17795), 1, - anon_sym_RPAREN, - [367524] = 2, + ACTIONS(12490), 1, + anon_sym_RBRACE, + [367344] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17797), 1, - anon_sym_SEMI, - [367531] = 2, + ACTIONS(17788), 1, + anon_sym_RPAREN, + [367351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17799), 1, + ACTIONS(17790), 1, anon_sym_RPAREN, - [367538] = 2, + [367358] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17801), 1, - sym_identifier, - [367545] = 2, + ACTIONS(17792), 1, + anon_sym_SEMI, + [367365] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12597), 1, - anon_sym_RPAREN, - [367552] = 2, + ACTIONS(17794), 1, + anon_sym_SEMI, + [367372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17803), 1, - anon_sym_RPAREN, - [367559] = 2, + ACTIONS(6184), 1, + anon_sym_SEMI, + [367379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17805), 1, - anon_sym_DQUOTE, - [367566] = 2, + ACTIONS(17796), 1, + anon_sym_SEMI, + [367386] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17295), 1, - anon_sym_COMMA, - [367573] = 2, - ACTIONS(3), 1, + ACTIONS(17798), 1, + sym_identifier, + [367393] = 2, + ACTIONS(14045), 1, sym_comment, - ACTIONS(17807), 1, - aux_sym_preproc_if_token2, - [367580] = 2, + ACTIONS(17800), 1, + aux_sym_preproc_include_token2, + [367400] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17809), 1, - anon_sym_DQUOTE, - [367587] = 2, + ACTIONS(17802), 1, + anon_sym_SEMI, + [367407] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17811), 1, - anon_sym_RPAREN, - [367594] = 2, + ACTIONS(14868), 1, + anon_sym_RBRACE, + [367414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17813), 1, - anon_sym_RPAREN, - [367601] = 2, + ACTIONS(10499), 1, + anon_sym_SEMI, + [367421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17815), 1, - anon_sym_RPAREN, - [367608] = 2, + ACTIONS(17804), 1, + anon_sym_SEMI, + [367428] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17817), 1, + ACTIONS(17806), 1, sym_identifier, - [367615] = 2, + [367435] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17819), 1, + ACTIONS(17808), 1, anon_sym_RPAREN, - [367622] = 2, - ACTIONS(14065), 1, + [367442] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14103), 1, - aux_sym_preproc_include_token2, - [367629] = 2, + ACTIONS(17810), 1, + anon_sym_RPAREN, + [367449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17821), 1, + ACTIONS(17812), 1, sym_identifier, - [367636] = 2, + [367456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17823), 1, + ACTIONS(17814), 1, anon_sym_RPAREN, - [367643] = 2, + [367463] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17825), 1, + ACTIONS(17816), 1, anon_sym_RPAREN, - [367650] = 2, + [367470] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17827), 1, - anon_sym_DQUOTE, - [367657] = 2, + ACTIONS(17818), 1, + anon_sym_LBRACE, + [367477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17829), 1, - sym_auto, - [367664] = 2, + ACTIONS(17820), 1, + anon_sym_RPAREN, + [367484] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17831), 1, - sym_identifier, - [367671] = 2, + ACTIONS(17822), 1, + anon_sym_RPAREN, + [367491] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17833), 1, + ACTIONS(17824), 1, anon_sym_RPAREN, - [367678] = 2, + [367498] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17835), 1, + ACTIONS(17826), 1, sym_raw_string_delimiter, - [367685] = 2, + [367505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17837), 1, - anon_sym_SEMI, - [367692] = 2, + ACTIONS(17828), 1, + anon_sym_RPAREN, + [367512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17839), 1, - anon_sym_SEMI, - [367699] = 2, + ACTIONS(17830), 1, + sym_identifier, + [367519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16046), 1, - anon_sym_SEMI, - [367706] = 2, + ACTIONS(14459), 1, + anon_sym_LBRACE, + [367526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17841), 1, - anon_sym_SEMI, - [367713] = 2, - ACTIONS(3), 1, + ACTIONS(17832), 1, + anon_sym_RPAREN, + [367533] = 2, + ACTIONS(14045), 1, sym_comment, - ACTIONS(17843), 1, - anon_sym_SEMI, - [367720] = 2, + ACTIONS(17834), 1, + aux_sym_preproc_include_token2, + [367540] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17845), 1, - aux_sym_preproc_if_token2, - [367727] = 2, + ACTIONS(17836), 1, + anon_sym_RPAREN, + [367547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17847), 1, - sym_identifier, - [367734] = 2, + ACTIONS(12584), 1, + anon_sym_COLON, + [367554] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17849), 1, - anon_sym_RPAREN, - [367741] = 2, + ACTIONS(17838), 1, + anon_sym_RBRACE, + [367561] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9701), 1, - sym_identifier, - [367748] = 2, + ACTIONS(17840), 1, + aux_sym_preproc_if_token2, + [367568] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17851), 1, + ACTIONS(17842), 1, aux_sym_preproc_if_token2, - [367755] = 2, + [367575] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17853), 1, - anon_sym_SEMI, - [367762] = 2, + ACTIONS(17844), 1, + sym_auto, + [367582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17855), 1, + ACTIONS(12606), 1, anon_sym_SEMI, - [367769] = 2, + [367589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17857), 1, - anon_sym_SEMI, - [367776] = 2, + ACTIONS(17846), 1, + anon_sym_RBRACK, + [367596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17859), 1, + ACTIONS(17848), 1, sym_identifier, - [367783] = 2, + [367603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17861), 1, - sym_identifier, - [367790] = 2, + ACTIONS(17850), 1, + anon_sym_SEMI, + [367610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14287), 1, - anon_sym_LBRACE, - [367797] = 2, + ACTIONS(17852), 1, + anon_sym_RPAREN, + [367617] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15166), 1, + ACTIONS(17854), 1, anon_sym_SEMI, - [367804] = 2, + [367624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17863), 1, + ACTIONS(17856), 1, anon_sym_SEMI, - [367811] = 2, + [367631] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17865), 1, - anon_sym_SEMI, - [367818] = 2, + ACTIONS(12808), 1, + anon_sym_RPAREN, + [367638] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17867), 1, + ACTIONS(17858), 1, sym_identifier, - [367825] = 2, + [367645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17869), 1, - anon_sym_SEMI, - [367832] = 2, + ACTIONS(17860), 1, + anon_sym_RPAREN, + [367652] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17871), 1, - anon_sym_DQUOTE, - [367839] = 2, + ACTIONS(16662), 1, + anon_sym_LBRACE, + [367659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17873), 1, - aux_sym_preproc_if_token2, - [367846] = 2, + ACTIONS(17862), 1, + anon_sym_RPAREN, + [367666] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10509), 1, - anon_sym_SEMI, - [367853] = 2, + ACTIONS(17864), 1, + anon_sym_RPAREN, + [367673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17353), 1, - anon_sym_RBRACE, - [367860] = 2, + ACTIONS(12648), 1, + anon_sym_COLON, + [367680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17875), 1, + ACTIONS(17866), 1, anon_sym_STAR, - [367867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17877), 1, - anon_sym_RPAREN, - [367874] = 2, + [367687] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12737), 1, + ACTIONS(12600), 1, anon_sym_COLON, - [367881] = 2, + [367694] = 2, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(17868), 1, + aux_sym_preproc_include_token2, + [367701] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12601), 1, - anon_sym_SEMI, - [367888] = 2, + ACTIONS(17870), 1, + anon_sym_RPAREN, + [367708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17879), 1, - anon_sym_SEMI, - [367895] = 2, + ACTIONS(17872), 1, + sym_identifier, + [367715] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17881), 1, + ACTIONS(17874), 1, anon_sym_RPAREN, - [367902] = 2, + [367722] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17883), 1, - aux_sym_preproc_if_token2, - [367909] = 2, + ACTIONS(17876), 1, + anon_sym_RPAREN, + [367729] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12727), 1, - anon_sym_RPAREN, - [367916] = 2, + ACTIONS(17878), 1, + anon_sym_COMMA, + [367736] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12661), 1, - anon_sym_COLON, - [367923] = 2, + ACTIONS(17880), 1, + anon_sym_SEMI, + [367743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12946), 1, + ACTIONS(17882), 1, anon_sym_RPAREN, - [367930] = 2, + [367750] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17049), 1, - anon_sym_LBRACE, - [367937] = 2, + ACTIONS(17884), 1, + anon_sym_RPAREN, + [367757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17363), 1, - anon_sym_RBRACE, - [367944] = 2, + ACTIONS(17886), 1, + anon_sym_DQUOTE, + [367764] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17303), 1, - anon_sym_RBRACE, - [367951] = 2, + ACTIONS(12700), 1, + anon_sym_SEMI, + [367771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17885), 1, + ACTIONS(17888), 1, aux_sym_preproc_if_token2, - [367958] = 2, + [367778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17887), 1, + ACTIONS(17890), 1, aux_sym_preproc_if_token2, - [367965] = 2, + [367785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17889), 1, - aux_sym_preproc_if_token2, - [367972] = 2, + ACTIONS(17892), 1, + anon_sym_DQUOTE, + [367792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17891), 1, - anon_sym_SEMI, - [367979] = 2, + ACTIONS(17894), 1, + sym_identifier, + [367799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17893), 1, - anon_sym_DQUOTE, - [367986] = 2, + ACTIONS(17896), 1, + anon_sym_RPAREN, + [367806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17895), 1, + ACTIONS(17898), 1, anon_sym_LPAREN2, - [367993] = 2, + [367813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15243), 1, - anon_sym_COMMA, - [368000] = 2, + ACTIONS(12888), 1, + anon_sym_RPAREN, + [367820] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17897), 1, - anon_sym_RPAREN, - [368007] = 2, + ACTIONS(11281), 1, + sym_identifier, + [367827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17899), 1, - aux_sym_preproc_if_token2, - [368014] = 2, + ACTIONS(17900), 1, + anon_sym_SEMI, + [367834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17901), 1, + ACTIONS(17902), 1, aux_sym_preproc_if_token2, - [368021] = 2, + [367841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11671), 1, + ACTIONS(17904), 1, sym_identifier, - [368028] = 2, + [367848] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17903), 1, - anon_sym_RPAREN, - [368035] = 2, + ACTIONS(17906), 1, + anon_sym_SEMI, + [367855] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17905), 1, - anon_sym_RPAREN, - [368042] = 2, + ACTIONS(12668), 1, + anon_sym_COLON, + [367862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17907), 1, - anon_sym_RPAREN, - [368049] = 2, + ACTIONS(17878), 1, + anon_sym_DASH, + [367869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17909), 1, + ACTIONS(17908), 1, sym_identifier, - [368056] = 2, + [367876] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17911), 1, - sym_identifier, - [368063] = 2, + ACTIONS(17910), 1, + anon_sym_DOT_DOT_DOT, + [367883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17913), 1, sym_auto, - [368070] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_AMP_AMP, - [368077] = 2, + [367890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17915), 1, - aux_sym_preproc_if_token2, - [368084] = 2, - ACTIONS(14065), 1, + anon_sym_STAR, + [367897] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16973), 1, - aux_sym_preproc_include_token2, - [368091] = 2, + ACTIONS(17878), 1, + anon_sym_STAR_EQ, + [367904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17917), 1, - anon_sym_RPAREN, - [368098] = 2, + anon_sym_LPAREN2, + [367911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17919), 1, - anon_sym_SEMI, - [368105] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15424), 1, - anon_sym_COLON, - [368112] = 2, + anon_sym_RPAREN, + [367918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17921), 1, - anon_sym_SEMI, - [368119] = 2, + aux_sym_preproc_if_token2, + [367925] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17923), 1, - aux_sym_preproc_if_token2, - [368126] = 2, + anon_sym_DOT_DOT_DOT, + [367932] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17925), 1, - anon_sym_DQUOTE, - [368133] = 2, + anon_sym_RPAREN, + [367939] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17927), 1, anon_sym_SEMI, - [368140] = 2, + [367946] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17929), 1, - anon_sym_SEMI, - [368147] = 2, + anon_sym_RPAREN, + [367953] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17931), 1, - anon_sym_DQUOTE, - [368154] = 2, + sym_identifier, + [367960] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17933), 1, - aux_sym_preproc_if_token2, - [368161] = 2, + anon_sym_LPAREN2, + [367967] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17935), 1, - aux_sym_preproc_if_token2, - [368168] = 2, - ACTIONS(14065), 1, + sym_identifier, + [367974] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16957), 1, - aux_sym_preproc_include_token2, - [368175] = 2, + ACTIONS(17937), 1, + anon_sym_SEMI, + [367981] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12932), 1, + ACTIONS(17939), 1, anon_sym_RPAREN, - [368182] = 2, + [367988] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17937), 1, + ACTIONS(17941), 1, anon_sym_RPAREN, - [368189] = 2, + [367995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17939), 1, - sym_identifier, - [368196] = 2, + ACTIONS(15099), 1, + anon_sym_SEMI, + [368002] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17941), 1, - sym_identifier, - [368203] = 2, + ACTIONS(6016), 1, + anon_sym_DOT_DOT_DOT, + [368009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17943), 1, - anon_sym_RPAREN, - [368210] = 2, + sym_identifier, + [368016] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17945), 1, - anon_sym_RPAREN, - [368217] = 2, + anon_sym_SEMI, + [368023] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17947), 1, aux_sym_preproc_if_token2, - [368224] = 2, + [368030] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17322), 1, + anon_sym_RBRACE, + [368037] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17949), 1, - anon_sym_RPAREN, - [368231] = 2, + anon_sym_SEMI, + [368044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17951), 1, - sym_raw_string_delimiter, - [368238] = 2, + anon_sym_RPAREN, + [368051] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17953), 1, - anon_sym_SEMI, - [368245] = 2, + sym_raw_string_delimiter, + [368058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17320), 1, + anon_sym_RBRACE, + [368065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17955), 1, sym_identifier, - [368252] = 2, + [368072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17957), 1, - anon_sym_STAR, - [368259] = 2, + anon_sym_SEMI, + [368079] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17959), 1, - anon_sym_LPAREN2, - [368266] = 2, - ACTIONS(14065), 1, + aux_sym_preproc_if_token2, + [368086] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(17961), 1, - aux_sym_preproc_include_token2, - [368273] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [368093] = 2, + ACTIONS(14045), 1, sym_comment, ACTIONS(17963), 1, - anon_sym_LPAREN2, - [368280] = 2, - ACTIONS(3), 1, + aux_sym_preproc_include_token2, + [368100] = 2, + ACTIONS(14045), 1, sym_comment, ACTIONS(17965), 1, - anon_sym_SEMI, - [368287] = 2, + aux_sym_preproc_include_token2, + [368107] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12656), 1, + anon_sym_RPAREN, + [368114] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17967), 1, - sym_identifier, - [368294] = 2, - ACTIONS(14065), 1, + anon_sym_SEMI, + [368121] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(17969), 1, - aux_sym_preproc_include_token2, - [368301] = 2, + anon_sym_STAR, + [368128] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17971), 1, + ACTIONS(17878), 1, + anon_sym_PLUS, + [368135] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12602), 1, + anon_sym_SEMI, + [368142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, anon_sym_STAR, - [368308] = 2, - ACTIONS(14065), 1, + [368149] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14225), 1, - aux_sym_preproc_include_token2, - [368315] = 2, - ACTIONS(14065), 1, + ACTIONS(12548), 1, + anon_sym_SEMI, + [368156] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_SLASH_EQ, + [368163] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17971), 1, + sym_identifier, + [368170] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(17973), 1, - aux_sym_preproc_include_token2, - [368322] = 2, + anon_sym_DQUOTE, + [368177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17975), 1, - anon_sym_LPAREN2, - [368329] = 2, + anon_sym_RPAREN, + [368184] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10544), 1, + anon_sym_SEMI, + [368191] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_PERCENT_EQ, + [368198] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12722), 1, + anon_sym_SEMI, + [368205] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17977), 1, - anon_sym_DQUOTE, - [368336] = 2, + anon_sym_SEMI, + [368212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17979), 1, anon_sym_SEMI, - [368343] = 2, - ACTIONS(14065), 1, + [368219] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(17981), 1, - aux_sym_preproc_include_token2, - [368350] = 2, - ACTIONS(14065), 1, + sym_identifier, + [368226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_PLUS_EQ, + [368233] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(17983), 1, - aux_sym_preproc_include_token2, - [368357] = 2, + anon_sym_LPAREN2, + [368240] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_DASH_EQ, + [368247] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17985), 1, anon_sym_RPAREN, - [368364] = 2, + [368254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17987), 1, - sym_identifier, - [368371] = 2, + anon_sym_SEMI, + [368261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10721), 1, - anon_sym_RPAREN, - [368378] = 2, + ACTIONS(12654), 1, + anon_sym_COLON, + [368268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17989), 1, - anon_sym_DQUOTE, - [368385] = 2, + ACTIONS(17878), 1, + anon_sym_LT_LT_EQ, + [368275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13074), 1, + ACTIONS(17989), 1, anon_sym_RPAREN, - [368392] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_PIPE, - [368399] = 2, + [368282] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17991), 1, sym_identifier, - [368406] = 2, + [368289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17993), 1, + ACTIONS(12812), 1, anon_sym_RPAREN, - [368413] = 2, + [368296] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17993), 1, + sym_auto, + [368303] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_LT_EQ, + [368310] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17995), 1, - anon_sym_LPAREN2, - [368420] = 2, + sym_identifier, + [368317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17997), 1, - anon_sym_RPAREN, - [368427] = 2, + anon_sym_while, + [368324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(17999), 1, anon_sym_RPAREN, - [368434] = 2, + [368331] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18001), 1, anon_sym_RPAREN, - [368441] = 2, + [368338] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18003), 1, - anon_sym_RPAREN, - [368448] = 2, + aux_sym_preproc_if_token2, + [368345] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18005), 1, - anon_sym_RPAREN, - [368455] = 2, + anon_sym_SEMI, + [368352] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15159), 1, + anon_sym_LBRACE, + [368359] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18007), 1, anon_sym_RPAREN, - [368462] = 2, + [368366] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18009), 1, - sym_identifier, - [368469] = 2, + sym_raw_string_delimiter, + [368373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18011), 1, - anon_sym_RPAREN, - [368476] = 2, + anon_sym_COMMA, + [368380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18013), 1, - sym_auto, - [368483] = 2, + anon_sym_SEMI, + [368387] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18015), 1, anon_sym_RPAREN, - [368490] = 2, + [368394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18017), 1, - anon_sym_RPAREN, - [368497] = 2, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [368401] = 2, + ACTIONS(14045), 1, sym_comment, ACTIONS(18019), 1, - anon_sym_RPAREN, - [368504] = 2, + aux_sym_preproc_include_token2, + [368408] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18021), 1, - anon_sym_RPAREN, - [368511] = 2, + sym_identifier, + [368415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18023), 1, - anon_sym_RPAREN, - [368518] = 2, + anon_sym_SEMI, + [368422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18025), 1, - anon_sym_COLON, - [368525] = 2, + anon_sym_RPAREN, + [368429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18027), 1, - sym_raw_string_delimiter, - [368532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16218), 1, - anon_sym_SEMI, - [368539] = 2, + sym_identifier, + [368436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18029), 1, - anon_sym_SEMI, - [368546] = 2, + aux_sym_preproc_if_token2, + [368443] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18031), 1, - anon_sym_DQUOTE, - [368553] = 2, + anon_sym_RPAREN, + [368450] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18033), 1, - sym_identifier, - [368560] = 2, + sym_raw_string_delimiter, + [368457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_CARET, - [368567] = 2, + ACTIONS(11680), 1, + sym_identifier, + [368464] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18035), 1, - aux_sym_preproc_if_token2, - [368574] = 2, + sym_identifier, + [368471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18037), 1, anon_sym_SEMI, - [368581] = 2, + [368478] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18039), 1, anon_sym_RPAREN, - [368588] = 2, + [368485] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_GT_GT_EQ, + [368492] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15187), 1, + anon_sym_SEMI, + [368499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_AMP_EQ, + [368506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17302), 1, + anon_sym_RBRACE, + [368513] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18041), 1, - sym_identifier, - [368595] = 2, + aux_sym_preproc_if_token2, + [368520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18043), 1, - aux_sym_preproc_if_token2, - [368602] = 2, + anon_sym_STAR, + [368527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18045), 1, anon_sym_SEMI, - [368609] = 2, + [368534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18047), 1, - anon_sym_SEMI, - [368616] = 2, + anon_sym_RPAREN, + [368541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18049), 1, anon_sym_SEMI, - [368623] = 2, + [368548] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18051), 1, - anon_sym_RPAREN, - [368630] = 2, + anon_sym_SEMI, + [368555] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18053), 1, - sym_raw_string_delimiter, - [368637] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15548), 1, - anon_sym_LBRACE, - [368644] = 2, + anon_sym_DQUOTE, + [368562] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18055), 1, - sym_identifier, - [368651] = 2, + anon_sym_RPAREN, + [368569] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18057), 1, - anon_sym_SEMI, - [368658] = 2, + anon_sym_DQUOTE, + [368576] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18059), 1, - anon_sym_SEMI, - [368665] = 2, + anon_sym_LPAREN2, + [368583] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + anon_sym_DOT_DOT_DOT, + [368590] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18061), 1, - sym_identifier, - [368672] = 2, + sym_raw_string_content, + [368597] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18063), 1, - anon_sym_SEMI, - [368679] = 2, + anon_sym_RPAREN, + [368604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18065), 1, - anon_sym_RPAREN, - [368686] = 2, + aux_sym_preproc_if_token2, + [368611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18067), 1, - anon_sym_RPAREN, - [368693] = 2, + anon_sym_SEMI, + [368618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_CARET_EQ, + [368625] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18069), 1, anon_sym_SEMI, - [368700] = 2, + [368632] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18071), 1, - anon_sym_STAR, - [368707] = 2, + anon_sym_LPAREN2, + [368639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16162), 1, - anon_sym_SEMI, - [368714] = 2, + ACTIONS(17878), 1, + anon_sym_PIPE_EQ, + [368646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18073), 1, - anon_sym_SEMI, - [368721] = 2, + ACTIONS(17344), 1, + anon_sym_RBRACE, + [368653] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12948), 1, - anon_sym_RPAREN, - [368728] = 2, + ACTIONS(17878), 1, + anon_sym_or, + [368660] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18075), 1, + ACTIONS(18073), 1, anon_sym_SEMI, - [368735] = 2, + [368667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18077), 1, - anon_sym_DQUOTE, - [368742] = 2, + ACTIONS(18075), 1, + sym_identifier, + [368674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15327), 1, - anon_sym_EQ, - [368749] = 2, + ACTIONS(18077), 1, + anon_sym_SEMI, + [368681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18079), 1, - sym_identifier, - [368756] = 2, + sym_auto, + [368688] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10495), 1, - anon_sym_SEMI, - [368763] = 2, + ACTIONS(17878), 1, + anon_sym_LT, + [368695] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18081), 1, - anon_sym_DQUOTE, - [368770] = 2, + aux_sym_preproc_if_token2, + [368702] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12528), 1, + anon_sym_SEMI, + [368709] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18083), 1, - aux_sym_preproc_if_token2, - [368777] = 2, + anon_sym_RPAREN, + [368716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_and, + [368723] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18085), 1, - sym_identifier, - [368784] = 2, + anon_sym_SEMI, + [368730] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_bitor, + [368737] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18087), 1, - sym_identifier, - [368791] = 2, + anon_sym_DQUOTE, + [368744] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18089), 1, anon_sym_RPAREN, - [368798] = 2, + [368751] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_xor, + [368758] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18091), 1, - aux_sym_preproc_if_token2, - [368805] = 2, + anon_sym_RPAREN, + [368765] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18093), 1, - sym_auto, - [368812] = 2, + anon_sym_SEMI, + [368772] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_bitand, + [368779] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18095), 1, - anon_sym_LPAREN2, - [368819] = 2, + anon_sym_DQUOTE, + [368786] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18097), 1, - anon_sym_SEMI, - [368826] = 2, + sym_identifier, + [368793] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18099), 1, - anon_sym_RPAREN, - [368833] = 2, + ACTIONS(12596), 1, + anon_sym_COLON, + [368800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13010), 1, + ACTIONS(12734), 1, anon_sym_RPAREN, - [368840] = 2, - ACTIONS(14065), 1, + [368807] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(18101), 1, - aux_sym_preproc_include_token2, - [368847] = 2, + ACTIONS(18099), 1, + anon_sym_SEMI, + [368814] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18103), 1, - sym_identifier, - [368854] = 2, + ACTIONS(6021), 1, + anon_sym_DOT_DOT_DOT, + [368821] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12435), 1, - anon_sym_RBRACE, - [368861] = 2, + ACTIONS(18101), 1, + anon_sym_RPAREN, + [368828] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(18103), 1, + sym_raw_string_delimiter, + [368835] = 2, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16654), 1, + aux_sym_preproc_include_token2, + [368842] = 2, + ACTIONS(14045), 1, + sym_comment, ACTIONS(18105), 1, - sym_auto, - [368868] = 2, + aux_sym_preproc_include_token2, + [368849] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18107), 1, - anon_sym_LPAREN2, - [368875] = 2, + anon_sym_SEMI, + [368856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18109), 1, - anon_sym_COLON, - [368882] = 2, + anon_sym_RPAREN, + [368863] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18111), 1, - anon_sym_DQUOTE, - [368889] = 2, + anon_sym_LBRACE, + [368870] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18113), 1, - anon_sym_RPAREN, - [368896] = 2, + anon_sym_STAR, + [368877] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18115), 1, - sym_identifier, - [368903] = 2, + anon_sym_STAR, + [368884] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18117), 1, - anon_sym_SEMI, - [368910] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12771), 1, anon_sym_RPAREN, - [368917] = 2, + [368891] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18119), 1, - anon_sym_RPAREN, - [368924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12463), 1, - anon_sym_RBRACE, - [368931] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14883), 1, - anon_sym_RBRACE, - [368938] = 2, + aux_sym_preproc_if_token2, + [368898] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18121), 1, - anon_sym_LPAREN2, - [368945] = 2, + sym_raw_string_delimiter, + [368905] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18123), 1, anon_sym_SEMI, - [368952] = 2, + [368912] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18125), 1, - anon_sym_DQUOTE, - [368959] = 2, + anon_sym_SLASH, + [368919] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18127), 1, - anon_sym_DQUOTE, - [368966] = 2, + anon_sym_RPAREN, + [368926] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18129), 1, - sym_identifier, - [368973] = 2, + ACTIONS(15165), 1, + anon_sym_SEMI, + [368933] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18131), 1, + ACTIONS(18129), 1, anon_sym_RPAREN, - [368980] = 2, + [368940] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16232), 1, - anon_sym_SEMI, - [368987] = 2, + ACTIONS(18131), 1, + anon_sym_LPAREN2, + [368947] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18133), 1, - aux_sym_preproc_if_token2, - [368994] = 2, + anon_sym_LPAREN2, + [368954] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18135), 1, - anon_sym_SEMI, - [369001] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [368961] = 2, + ACTIONS(14045), 1, sym_comment, ACTIONS(18137), 1, - anon_sym_RPAREN, - [369008] = 2, + aux_sym_preproc_include_token2, + [368968] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18139), 1, - sym_raw_string_delimiter, - [369015] = 2, + sym_identifier, + [368975] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18141), 1, - anon_sym_DQUOTE, - [369022] = 2, + anon_sym_RBRACE, + [368982] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18143), 1, - anon_sym_RPAREN, - [369029] = 2, + sym_auto, + [368989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14851), 1, - anon_sym_RBRACE, - [369036] = 2, + ACTIONS(16515), 1, + anon_sym_LBRACE, + [368996] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18145), 1, - anon_sym_SEMI, - [369043] = 2, + anon_sym_RPAREN, + [369003] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18147), 1, + anon_sym_LBRACE, + [369010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12816), 1, anon_sym_RPAREN, - [369050] = 2, + [369017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_not_eq, + [369024] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18149), 1, sym_identifier, - [369057] = 2, + [369031] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18151), 1, - anon_sym_STAR, - [369064] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_AMP, - [369071] = 2, + anon_sym_SEMI, + [369038] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18153), 1, - anon_sym_SEMI, - [369078] = 2, + sym_raw_string_delimiter, + [369045] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12861), 1, + ACTIONS(12674), 1, anon_sym_RPAREN, - [369085] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12555), 1, - anon_sym_RBRACE, - [369092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_EQ_EQ, - [369099] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15133), 1, - anon_sym_SEMI, - [369106] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12653), 1, - anon_sym_COLON, - [369113] = 2, + [369052] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18155), 1, anon_sym_SEMI, - [369120] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14855), 1, - anon_sym_RBRACE, - [369127] = 2, - ACTIONS(3), 1, + [369059] = 2, + ACTIONS(14045), 1, sym_comment, ACTIONS(18157), 1, - anon_sym_LPAREN2, - [369134] = 2, + aux_sym_preproc_include_token2, + [369066] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18159), 1, - anon_sym_RPAREN, - [369141] = 2, + aux_sym_preproc_if_token2, + [369073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_DOT_STAR, + [369080] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18161), 1, - anon_sym_RPAREN, - [369148] = 2, + anon_sym_SEMI, + [369087] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18163), 1, - sym_identifier, - [369155] = 2, + anon_sym_SEMI, + [369094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17356), 1, + anon_sym_RBRACE, + [369101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18165), 1, - anon_sym_RPAREN, - [369162] = 2, + anon_sym_STAR, + [369108] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18167), 1, - sym_auto, - [369169] = 2, + anon_sym_RPAREN, + [369115] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18169), 1, - anon_sym_RPAREN, - [369176] = 2, + anon_sym_LPAREN2, + [369122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18171), 1, anon_sym_RPAREN, - [369183] = 2, + [369129] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18173), 1, - aux_sym_preproc_if_token2, - [369190] = 2, - ACTIONS(14065), 1, + sym_identifier, + [369136] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14221), 1, - aux_sym_preproc_include_token2, - [369197] = 2, + ACTIONS(17878), 1, + anon_sym_DASH_GT_STAR, + [369143] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18175), 1, - anon_sym_RPAREN, - [369204] = 2, + sym_auto, + [369150] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18177), 1, - sym_identifier, - [369211] = 2, + anon_sym_RPAREN, + [369157] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18179), 1, - anon_sym_COLON, - [369218] = 2, + anon_sym_DQUOTE, + [369164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17300), 1, + anon_sym_COMMA, + [369171] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18181), 1, - sym_raw_string_delimiter, - [369225] = 2, + anon_sym_RPAREN, + [369178] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18183), 1, - anon_sym_SEMI, - [369232] = 2, + sym_raw_string_delimiter, + [369185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17420), 1, + anon_sym_RBRACE, + [369192] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18185), 1, anon_sym_RPAREN, - [369239] = 2, + [369199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18187), 1, + ACTIONS(12550), 1, anon_sym_SEMI, - [369246] = 2, + [369206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18187), 1, + anon_sym_RPAREN, + [369213] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12669), 1, + ACTIONS(15883), 1, anon_sym_SEMI, - [369253] = 2, + [369220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15287), 1, + anon_sym_EQ, + [369227] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18189), 1, - anon_sym_RPAREN, - [369260] = 2, + sym_auto, + [369234] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18191), 1, - anon_sym_STAR, - [369267] = 2, + anon_sym_RPAREN, + [369241] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18193), 1, - aux_sym_preproc_if_token2, - [369274] = 2, + anon_sym_RPAREN, + [369248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12898), 1, + anon_sym_RPAREN, + [369255] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18195), 1, - anon_sym_SEMI, - [369281] = 2, + sym_raw_string_delimiter, + [369262] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18197), 1, - anon_sym_RPAREN, - [369288] = 2, + ACTIONS(15325), 1, + anon_sym_LBRACE, + [369269] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18199), 1, + ACTIONS(18197), 1, anon_sym_SEMI, - [369295] = 2, + [369276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18201), 1, - anon_sym_LPAREN2, - [369302] = 2, + ACTIONS(18199), 1, + anon_sym_RPAREN, + [369283] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18203), 1, - anon_sym_RPAREN, - [369309] = 2, + ACTIONS(18201), 1, + anon_sym_DQUOTE, + [369290] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18205), 1, - anon_sym_RPAREN, - [369316] = 2, + ACTIONS(17878), 1, + anon_sym_PERCENT, + [369297] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12641), 1, + ACTIONS(18203), 1, anon_sym_RPAREN, - [369323] = 2, + [369304] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18207), 1, + ACTIONS(18205), 1, sym_auto, - [369330] = 2, + [369311] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18209), 1, + ACTIONS(18207), 1, anon_sym_RPAREN, - [369337] = 2, + [369318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_BANG_EQ, - [369344] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_GT, - [369351] = 2, + ACTIONS(18209), 1, + sym_raw_string_delimiter, + [369325] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18211), 1, anon_sym_RPAREN, - [369358] = 2, + [369332] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18213), 1, - sym_raw_string_delimiter, - [369365] = 2, + sym_identifier, + [369339] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18215), 1, - anon_sym_SEMI, - [369372] = 2, + anon_sym_RPAREN, + [369346] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18217), 1, - anon_sym_STAR, - [369379] = 2, + anon_sym_COLON, + [369353] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18219), 1, - anon_sym_RPAREN, - [369386] = 2, + anon_sym_DQUOTE, + [369360] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18221), 1, anon_sym_RPAREN, - [369393] = 2, + [369367] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18223), 1, - sym_identifier, - [369400] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12950), 1, - anon_sym_RPAREN, - [369407] = 2, + sym_raw_string_delimiter, + [369374] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18225), 1, - sym_auto, - [369414] = 2, + anon_sym_DQUOTE, + [369381] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18227), 1, - anon_sym_RPAREN, - [369421] = 2, + anon_sym_LPAREN2, + [369388] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18229), 1, anon_sym_SEMI, - [369428] = 2, + [369395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12939), 1, + anon_sym_RPAREN, + [369402] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18231), 1, anon_sym_SEMI, - [369435] = 2, + [369409] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18233), 1, + anon_sym_RPAREN, + [369416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18235), 1, sym_raw_string_delimiter, - [369442] = 2, + [369423] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12741), 1, - anon_sym_COLON, - [369449] = 2, + ACTIONS(12792), 1, + anon_sym_RPAREN, + [369430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18235), 1, - aux_sym_preproc_if_token2, - [369456] = 2, + ACTIONS(12476), 1, + anon_sym_RBRACE, + [369437] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18237), 1, - anon_sym_SEMI, - [369463] = 2, + ACTIONS(17878), 1, + anon_sym_PIPE_PIPE, + [369444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17299), 1, - anon_sym_RBRACE, - [369470] = 2, + ACTIONS(18237), 1, + anon_sym_SEMI, + [369451] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18239), 1, - aux_sym_preproc_if_token2, - [369477] = 2, + anon_sym_RPAREN, + [369458] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18241), 1, - anon_sym_LBRACE, - [369484] = 2, + sym_raw_string_delimiter, + [369465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6004), 1, + anon_sym_DOT_DOT_DOT, + [369472] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18243), 1, - sym_auto, - [369491] = 2, + anon_sym_LBRACE, + [369479] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18245), 1, - anon_sym_RPAREN, - [369498] = 2, + aux_sym_preproc_if_token2, + [369486] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18247), 1, - sym_raw_string_delimiter, - [369505] = 2, + anon_sym_RPAREN, + [369493] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18249), 1, - anon_sym_SEMI, - [369512] = 2, + sym_raw_string_delimiter, + [369500] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6381), 1, - anon_sym_SEMI, - [369519] = 2, + ACTIONS(14878), 1, + anon_sym_RBRACE, + [369507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12428), 1, + anon_sym_RBRACE, + [369514] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18251), 1, - anon_sym_SEMI, - [369526] = 2, + anon_sym_RPAREN, + [369521] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18253), 1, - sym_identifier, - [369533] = 2, + sym_raw_string_delimiter, + [369528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18255), 1, + ACTIONS(17440), 1, + anon_sym_RBRACE, + [369535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16173), 1, anon_sym_SEMI, - [369540] = 2, + [369542] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18257), 1, + ACTIONS(18255), 1, anon_sym_RPAREN, - [369547] = 2, + [369549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18259), 1, + ACTIONS(18257), 1, sym_raw_string_delimiter, - [369554] = 2, - ACTIONS(14065), 1, + [369556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18259), 1, + anon_sym_DQUOTE, + [369563] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(18261), 1, - aux_sym_preproc_include_token2, - [369561] = 2, + anon_sym_private, + [369570] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18263), 1, - anon_sym_SEMI, - [369568] = 2, - ACTIONS(14065), 1, + anon_sym_RPAREN, + [369577] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(18265), 1, - aux_sym_preproc_include_token2, - [369575] = 2, + sym_raw_string_delimiter, + [369584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 1, - anon_sym_COLON, - [369582] = 2, + ACTIONS(18267), 1, + anon_sym_RPAREN, + [369591] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18267), 1, - anon_sym_SEMI, - [369589] = 2, + ACTIONS(14298), 1, + anon_sym_LBRACE, + [369598] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18269), 1, anon_sym_RPAREN, - [369596] = 2, + [369605] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18271), 1, sym_raw_string_delimiter, - [369603] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12559), 1, - anon_sym_RPAREN, - [369610] = 2, + [369612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12721), 1, - anon_sym_SEMI, - [369617] = 2, + ACTIONS(11573), 1, + sym_identifier, + [369619] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18273), 1, - anon_sym_RPAREN, - [369624] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_GT_EQ, - [369631] = 2, + anon_sym_SEMI, + [369626] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18275), 1, anon_sym_RPAREN, - [369638] = 2, + [369633] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18277), 1, sym_raw_string_delimiter, - [369645] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_LT_EQ, - [369652] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_LT, - [369659] = 2, + [369640] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18279), 1, - anon_sym_LPAREN2, - [369666] = 2, + aux_sym_preproc_if_token2, + [369647] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18281), 1, anon_sym_RPAREN, - [369673] = 2, + [369654] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18283), 1, sym_raw_string_delimiter, - [369680] = 2, + [369661] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18285), 1, anon_sym_RPAREN, - [369687] = 2, + [369668] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18287), 1, - anon_sym_LPAREN2, - [369694] = 2, + anon_sym_RPAREN, + [369675] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18289), 1, anon_sym_RPAREN, - [369701] = 2, + [369682] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18291), 1, - sym_raw_string_delimiter, - [369708] = 2, + anon_sym_SEMI, + [369689] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18293), 1, - anon_sym_RPAREN, - [369715] = 2, + ACTIONS(16225), 1, + anon_sym_SEMI, + [369696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6046), 1, - anon_sym_DOT_DOT_DOT, - [369722] = 2, + ACTIONS(18293), 1, + anon_sym_LPAREN2, + [369703] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18295), 1, anon_sym_RPAREN, - [369729] = 2, + [369710] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18297), 1, - sym_raw_string_delimiter, - [369736] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(18299), 1, - aux_sym_preproc_include_token2, - [369743] = 2, + anon_sym_LPAREN2, + [369717] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_LT_LT, - [369750] = 2, + ACTIONS(18299), 1, + anon_sym_LPAREN2, + [369724] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18301), 1, - anon_sym_RPAREN, - [369757] = 2, + anon_sym_LPAREN2, + [369731] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18303), 1, - sym_raw_string_delimiter, - [369764] = 2, + anon_sym_LPAREN2, + [369738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_GT_GT, - [369771] = 2, + ACTIONS(17878), 1, + anon_sym_LT_LT, + [369745] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18305), 1, - anon_sym_COLON, - [369778] = 2, + anon_sym_LPAREN2, + [369752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12820), 1, + anon_sym_RPAREN, + [369759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_GT_GT, + [369766] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18307), 1, anon_sym_RPAREN, - [369785] = 2, + [369773] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18309), 1, - sym_raw_string_delimiter, - [369792] = 2, + anon_sym_SEMI, + [369780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_EQ, - [369799] = 2, + ACTIONS(17434), 1, + anon_sym_RBRACE, + [369787] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18311), 1, - sym_raw_string_content, - [369806] = 2, + anon_sym_STAR, + [369794] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18313), 1, anon_sym_RPAREN, - [369813] = 2, + [369801] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18315), 1, - sym_raw_string_delimiter, - [369820] = 2, + anon_sym_DQUOTE, + [369808] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18317), 1, + anon_sym_while, + [369815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15881), 1, anon_sym_SEMI, - [369827] = 2, + [369822] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18319), 1, - anon_sym_RPAREN, - [369834] = 2, + anon_sym_LPAREN2, + [369829] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18321), 1, - sym_raw_string_delimiter, - [369841] = 2, + anon_sym_RPAREN, + [369836] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18323), 1, - anon_sym_SEMI, - [369848] = 2, + anon_sym_DQUOTE, + [369843] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18325), 1, - anon_sym_DQUOTE, - [369855] = 2, + anon_sym_LPAREN2, + [369850] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18327), 1, - anon_sym_RPAREN, - [369862] = 2, + anon_sym_LPAREN2, + [369857] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18329), 1, anon_sym_DQUOTE, - [369869] = 2, + [369864] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18331), 1, - anon_sym_SEMI, - [369876] = 2, + sym_identifier, + [369871] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18333), 1, - anon_sym_LPAREN2, - [369883] = 2, + anon_sym_DQUOTE, + [369878] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18335), 1, - anon_sym_SEMI, - [369890] = 2, + anon_sym_EQ, + [369885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18337), 1, - anon_sym_LPAREN2, - [369897] = 2, + sym_raw_string_content, + [369892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18339), 1, - anon_sym_LPAREN2, - [369904] = 2, + aux_sym_preproc_if_token2, + [369899] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18341), 1, - anon_sym_LPAREN2, - [369911] = 2, + sym_this, + [369906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18343), 1, - anon_sym_LPAREN2, - [369918] = 2, + ACTIONS(15996), 1, + anon_sym_SEMI, + [369913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17369), 1, - anon_sym_RBRACE, - [369925] = 2, + ACTIONS(18343), 1, + anon_sym_STAR, + [369920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18345), 1, - anon_sym_LPAREN2, - [369932] = 2, + ACTIONS(12598), 1, + anon_sym_SEMI, + [369927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15137), 1, - anon_sym_LBRACE, - [369939] = 2, + ACTIONS(18345), 1, + aux_sym_preproc_if_token2, + [369934] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18347), 1, - anon_sym_RPAREN, - [369946] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12952), 1, - anon_sym_RPAREN, - [369953] = 2, + anon_sym_LPAREN2, + [369941] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18349), 1, - anon_sym_SEMI, - [369960] = 2, + anon_sym_RPAREN, + [369948] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18351), 1, anon_sym_SEMI, - [369967] = 2, + [369955] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18353), 1, - anon_sym_SEMI, - [369974] = 2, + anon_sym_RPAREN, + [369962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18355), 1, - anon_sym_SEMI, - [369981] = 2, + anon_sym_LPAREN2, + [369969] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18357), 1, - anon_sym_SEMI, - [369988] = 2, + anon_sym_RPAREN, + [369976] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18359), 1, - anon_sym_while, - [369995] = 2, + sym_identifier, + [369983] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18361), 1, - anon_sym_RPAREN, - [370002] = 2, + sym_identifier, + [369990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_AMP_AMP, + [369997] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18363), 1, - anon_sym_LPAREN2, - [370009] = 2, + sym_identifier, + [370004] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18365), 1, - anon_sym_DQUOTE, - [370016] = 2, + anon_sym_COMMA, + [370011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_PIPE, + [370018] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18367), 1, - anon_sym_RPAREN, - [370023] = 2, + anon_sym_SEMI, + [370025] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18369), 1, - anon_sym_LPAREN2, - [370030] = 2, + aux_sym_preproc_if_token2, + [370032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14874), 1, + anon_sym_RBRACE, + [370039] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_CARET, + [370046] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18371), 1, - anon_sym_LPAREN2, - [370037] = 2, + anon_sym_RPAREN, + [370053] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18373), 1, - anon_sym_SEMI, - [370044] = 2, - ACTIONS(3), 1, + anon_sym_STAR, + [370060] = 2, + ACTIONS(14045), 1, sym_comment, ACTIONS(18375), 1, - sym_identifier, - [370051] = 2, + aux_sym_preproc_include_token2, + [370067] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18377), 1, - anon_sym_SEMI, - [370058] = 2, + anon_sym_RPAREN, + [370074] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(12556), 1, + anon_sym_SEMI, + [370081] = 2, + ACTIONS(14045), 1, + sym_comment, ACTIONS(18379), 1, - anon_sym_EQ, - [370065] = 2, + aux_sym_preproc_include_token2, + [370088] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18381), 1, - sym_raw_string_content, - [370072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6039), 1, - anon_sym_DOT_DOT_DOT, - [370079] = 2, + aux_sym_preproc_if_token2, + [370095] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17357), 1, - anon_sym_RBRACE, - [370086] = 2, + ACTIONS(18383), 1, + aux_sym_preproc_if_token2, + [370102] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18383), 1, - anon_sym_SEMI, - [370093] = 2, + ACTIONS(12716), 1, + anon_sym_COLON, + [370109] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18385), 1, - anon_sym_STAR, - [370100] = 2, + anon_sym_SEMI, + [370116] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_STAR_EQ, - [370107] = 2, + ACTIONS(18387), 1, + anon_sym_RPAREN, + [370123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18387), 1, - anon_sym_SEMI, - [370114] = 2, + ACTIONS(17878), 1, + anon_sym_AMP, + [370130] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18389), 1, - anon_sym_SEMI, - [370121] = 2, + aux_sym_preproc_if_token2, + [370137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18391), 1, - anon_sym_SEMI, - [370128] = 2, + ACTIONS(12824), 1, + anon_sym_RPAREN, + [370144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6316), 1, - anon_sym_SEMI, - [370135] = 2, + ACTIONS(18391), 1, + sym_identifier, + [370151] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18393), 1, - anon_sym_SEMI, - [370142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6036), 1, - anon_sym_DOT_DOT_DOT, - [370149] = 2, + aux_sym_preproc_if_token2, + [370158] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18395), 1, - anon_sym_RPAREN, - [370156] = 2, + anon_sym_STAR, + [370165] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18397), 1, - anon_sym_RPAREN, - [370163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6001), 1, - anon_sym_DOT_DOT_DOT, - [370170] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12954), 1, - anon_sym_RPAREN, - [370177] = 2, + anon_sym_RBRACK, + [370172] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18399), 1, - sym_identifier, - [370184] = 2, + anon_sym_SEMI, + [370179] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18401), 1, - anon_sym_COMMA, - [370191] = 2, + aux_sym_preproc_if_token2, + [370186] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18403), 1, - anon_sym_SEMI, - [370198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6011), 1, - anon_sym_DOT_DOT_DOT, - [370205] = 2, + anon_sym_COLON, + [370193] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18405), 1, - anon_sym_RPAREN, - [370212] = 2, + aux_sym_preproc_if_token2, + [370200] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18407), 1, - anon_sym_RPAREN, - [370219] = 2, + anon_sym_SEMI, + [370207] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18409), 1, + ACTIONS(6377), 1, anon_sym_SEMI, - [370226] = 2, + [370214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18409), 1, + anon_sym_RPAREN, + [370221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12936), 1, + ACTIONS(13071), 1, anon_sym_RPAREN, - [370233] = 2, + [370228] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18411), 1, anon_sym_SEMI, - [370240] = 2, + [370235] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18413), 1, - anon_sym_RPAREN, - [370247] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12605), 1, - anon_sym_COLON, - [370254] = 2, + anon_sym_SEMI, + [370242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16130), 1, - anon_sym_SEMI, - [370261] = 2, + ACTIONS(14856), 1, + anon_sym_RBRACE, + [370249] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18415), 1, - anon_sym_SEMI, - [370268] = 2, + sym_identifier, + [370256] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18417), 1, - sym_identifier, - [370275] = 2, + anon_sym_COLON, + [370263] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18419), 1, - anon_sym_DQUOTE, - [370282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12709), 1, - anon_sym_COLON, - [370289] = 2, + aux_sym_preproc_if_token2, + [370270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15107), 1, - anon_sym_LBRACE, - [370296] = 2, + ACTIONS(18421), 1, + sym_identifier, + [370277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18421), 1, - anon_sym_RPAREN, - [370303] = 2, + ACTIONS(10477), 1, + anon_sym_SEMI, + [370284] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18423), 1, - anon_sym_DQUOTE, - [370310] = 2, + anon_sym_SEMI, + [370291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_SLASH_EQ, - [370317] = 2, + ACTIONS(18425), 1, + anon_sym_SEMI, + [370298] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18425), 1, - anon_sym_RPAREN, - [370324] = 2, + ACTIONS(12642), 1, + anon_sym_COLON, + [370305] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18427), 1, - anon_sym_SEMI, - [370331] = 2, + anon_sym_RPAREN, + [370312] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18429), 1, - anon_sym_DQUOTE, - [370338] = 2, + anon_sym_RPAREN, + [370319] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15135), 1, + anon_sym_SEMI, + [370326] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18431), 1, - anon_sym_STAR, - [370345] = 2, + anon_sym_RPAREN, + [370333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18433), 1, + ACTIONS(16197), 1, anon_sym_SEMI, - [370352] = 2, + [370340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18435), 1, - anon_sym_DQUOTE, - [370359] = 2, + ACTIONS(18433), 1, + aux_sym_preproc_if_token2, + [370347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18437), 1, + ACTIONS(18435), 1, anon_sym_SEMI, - [370366] = 2, - ACTIONS(14065), 1, + [370354] = 2, + ACTIONS(14045), 1, sym_comment, - ACTIONS(18439), 1, + ACTIONS(18437), 1, aux_sym_preproc_include_token2, - [370373] = 2, + [370361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18441), 1, - anon_sym_SEMI, - [370380] = 2, + ACTIONS(18439), 1, + anon_sym_DQUOTE, + [370368] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18443), 1, + ACTIONS(18441), 1, anon_sym_DQUOTE, - [370387] = 2, + [370375] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12851), 1, - anon_sym_RPAREN, - [370394] = 2, + ACTIONS(15149), 1, + anon_sym_LBRACE, + [370382] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18445), 1, - anon_sym_RPAREN, - [370401] = 2, + ACTIONS(18443), 1, + anon_sym_DQUOTE, + [370389] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6019), 1, - anon_sym_DOT_DOT_DOT, - [370408] = 2, + ACTIONS(18445), 1, + anon_sym_DQUOTE, + [370396] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18447), 1, - aux_sym_preproc_if_token2, - [370415] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18449), 1, anon_sym_RPAREN, - [370422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18451), 1, - sym_identifier, - [370429] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(14185), 1, + [370403] = 2, + ACTIONS(8778), 1, aux_sym_preproc_include_token2, - [370436] = 2, - ACTIONS(3), 1, + ACTIONS(14045), 1, sym_comment, - ACTIONS(18453), 1, - anon_sym_COLON, - [370443] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18455), 1, - aux_sym_preproc_if_token2, - [370450] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18457), 1, - anon_sym_DQUOTE, - [370457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18459), 1, - anon_sym_DQUOTE, - [370464] = 2, - ACTIONS(3), 1, + [370410] = 2, + ACTIONS(14045), 1, sym_comment, - ACTIONS(6016), 1, - anon_sym_DOT_DOT_DOT, - [370471] = 2, + ACTIONS(18449), 1, + aux_sym_preproc_include_token2, + [370417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12725), 1, + ACTIONS(18451), 1, anon_sym_SEMI, - [370478] = 2, + [370424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18461), 1, + ACTIONS(18453), 1, anon_sym_SEMI, - [370485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18463), 1, - sym_identifier, - [370492] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18465), 1, - anon_sym_RPAREN, - [370499] = 2, + [370431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18467), 1, - anon_sym_SEMI, - [370506] = 2, + ACTIONS(15183), 1, + anon_sym_LBRACE, + [370438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PERCENT_EQ, - [370513] = 2, + ACTIONS(13025), 1, + anon_sym_RPAREN, + [370445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15894), 1, + ACTIONS(10513), 1, anon_sym_SEMI, - [370520] = 2, + [370452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18469), 1, - anon_sym_RPAREN, - [370527] = 2, + ACTIONS(18455), 1, + anon_sym_SEMI, + [370459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18471), 1, - anon_sym_RPAREN, - [370534] = 2, + ACTIONS(12380), 1, + anon_sym_RBRACE, + [370466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18473), 1, - anon_sym_RPAREN, - [370541] = 2, + ACTIONS(17878), 1, + anon_sym_EQ_EQ, + [370473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18475), 1, - anon_sym_RPAREN, - [370548] = 2, + ACTIONS(15517), 1, + anon_sym_COLON, + [370480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18477), 1, + ACTIONS(12554), 1, anon_sym_SEMI, - [370555] = 2, + [370487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18479), 1, - aux_sym_preproc_if_token2, - [370562] = 2, + ACTIONS(10503), 1, + anon_sym_SEMI, + [370494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18481), 1, - sym_identifier, - [370569] = 2, + ACTIONS(18457), 1, + anon_sym_SEMI, + [370501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18483), 1, - aux_sym_preproc_if_token2, - [370576] = 2, - ACTIONS(8699), 1, - aux_sym_preproc_include_token2, - ACTIONS(14065), 1, - sym_comment, - [370583] = 2, + ACTIONS(18459), 1, + anon_sym_COLON, + [370508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PLUS_EQ, - [370590] = 2, + ACTIONS(17878), 1, + anon_sym_EQ, + [370515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_DASH_EQ, - [370597] = 2, + ACTIONS(18461), 1, + anon_sym_LPAREN2, + [370522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_LT_LT_EQ, - [370604] = 2, + ACTIONS(15185), 1, + anon_sym_LBRACE, + [370529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14361), 1, - sym_identifier, - [370611] = 2, + ACTIONS(18463), 1, + anon_sym_RPAREN, + [370536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_GT_GT_EQ, - [370618] = 2, + ACTIONS(12652), 1, + anon_sym_COLON, + [370543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18485), 1, - anon_sym_DQUOTE, - [370625] = 2, + ACTIONS(15441), 1, + anon_sym_LBRACE, + [370550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_AMP_EQ, - [370632] = 2, + ACTIONS(18465), 1, + aux_sym_preproc_if_token2, + [370557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12645), 1, - anon_sym_SEMI, - [370639] = 2, + ACTIONS(18467), 1, + aux_sym_preproc_if_token2, + [370564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12711), 1, - anon_sym_RPAREN, - [370646] = 2, + ACTIONS(18469), 1, + sym_auto, + [370571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_CARET_EQ, - [370653] = 2, + ACTIONS(18471), 1, + aux_sym_preproc_if_token2, + [370578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18487), 1, + ACTIONS(18473), 1, sym_identifier, - [370660] = 2, + [370585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PIPE_EQ, - [370667] = 2, + ACTIONS(18475), 1, + anon_sym_DQUOTE, + [370592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18489), 1, - anon_sym_SEMI, - [370674] = 2, + ACTIONS(18477), 1, + anon_sym_RPAREN, + [370599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17393), 1, - anon_sym_RBRACE, - [370681] = 2, + ACTIONS(18479), 1, + aux_sym_preproc_if_token2, + [370606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12713), 1, + ACTIONS(12862), 1, anon_sym_RPAREN, - [370688] = 2, + [370613] = 2, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14110), 1, + aux_sym_preproc_include_token2, + [370620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18491), 1, - sym_identifier, - [370695] = 2, + ACTIONS(18481), 1, + anon_sym_LPAREN2, + [370627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18493), 1, + ACTIONS(16711), 1, anon_sym_SEMI, - [370702] = 2, + [370634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10870), 1, + ACTIONS(18483), 1, anon_sym_RPAREN, - [370709] = 2, + [370641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18495), 1, - anon_sym_SEMI, - [370716] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(18497), 1, - aux_sym_preproc_include_token2, - [370723] = 2, + ACTIONS(17878), 1, + anon_sym_BANG_EQ, + [370648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12956), 1, - anon_sym_RPAREN, - [370730] = 2, + ACTIONS(14840), 1, + anon_sym_RBRACE, + [370655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12715), 1, - anon_sym_SEMI, - [370737] = 2, + ACTIONS(18485), 1, + aux_sym_preproc_if_token2, + [370662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_or, - [370744] = 2, + ACTIONS(18487), 1, + sym_raw_string_content, + [370669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6022), 1, - anon_sym_DOT_DOT_DOT, - [370751] = 2, + ACTIONS(18489), 1, + aux_sym_preproc_if_token2, + [370676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10497), 1, + ACTIONS(18491), 1, anon_sym_SEMI, - [370758] = 2, + [370683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12647), 1, + ACTIONS(6266), 1, anon_sym_SEMI, - [370765] = 2, + [370690] = 2, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16717), 1, + aux_sym_preproc_include_token2, + [370697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18499), 1, - anon_sym_SEMI, - [370772] = 2, + ACTIONS(12796), 1, + anon_sym_RPAREN, + [370704] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18493), 1, + anon_sym_LPAREN2, + [370711] = 2, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(16539), 1, + aux_sym_preproc_include_token2, + [370718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15188), 1, + ACTIONS(18495), 1, anon_sym_SEMI, - [370779] = 2, + [370725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6025), 1, - anon_sym_DOT_DOT_DOT, - [370786] = 2, + ACTIONS(17878), 1, + anon_sym_GT, + [370732] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14875), 1, - anon_sym_RBRACE, - [370793] = 2, + ACTIONS(18497), 1, + aux_sym_preproc_if_token2, + [370739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6031), 1, - anon_sym_DOT_DOT_DOT, - [370800] = 2, + ACTIONS(18499), 1, + sym_identifier, + [370746] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18501), 1, - anon_sym_RPAREN, - [370807] = 2, + anon_sym_SEMI, + [370753] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18503), 1, - anon_sym_COLON, - [370814] = 2, + anon_sym_SEMI, + [370760] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18505), 1, - sym_identifier, - [370821] = 2, + anon_sym_RPAREN, + [370767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18507), 1, - anon_sym_RPAREN, - [370828] = 2, + anon_sym_SEMI, + [370774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18509), 1, - anon_sym_LPAREN2, - [370835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12547), 1, - anon_sym_RPAREN, - [370842] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18511), 1, anon_sym_SEMI, - [370849] = 2, + [370781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_COMMA, - [370856] = 2, + ACTIONS(18511), 1, + anon_sym_RPAREN, + [370788] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18513), 1, - anon_sym_RPAREN, - [370863] = 2, + anon_sym_COLON, + [370795] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18515), 1, - anon_sym_SEMI, - [370870] = 2, + anon_sym_RPAREN, + [370802] = 2, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14220), 1, + aux_sym_preproc_include_token2, + [370809] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18517), 1, - anon_sym_RPAREN, - [370877] = 2, + anon_sym_LPAREN2, + [370816] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18519), 1, - anon_sym_SEMI, - [370884] = 2, + anon_sym_LPAREN2, + [370823] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18521), 1, - anon_sym_SEMI, - [370891] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6028), 1, - anon_sym_DOT_DOT_DOT, - [370898] = 2, + anon_sym_LPAREN2, + [370830] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18523), 1, - anon_sym_RPAREN, - [370905] = 2, + anon_sym_LPAREN2, + [370837] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18525), 1, - anon_sym_RPAREN, - [370912] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16190), 1, - anon_sym_SEMI, - [370919] = 2, + anon_sym_LPAREN2, + [370844] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18527), 1, - anon_sym_RPAREN, - [370926] = 2, + anon_sym_SEMI, + [370851] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18529), 1, - anon_sym_SEMI, - [370933] = 2, + anon_sym_LPAREN2, + [370858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18531), 1, anon_sym_DQUOTE, - [370940] = 2, + [370865] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18533), 1, - anon_sym_RPAREN, - [370947] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13098), 1, - anon_sym_RPAREN, - [370954] = 2, + anon_sym_SEMI, + [370872] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18535), 1, - anon_sym_RPAREN, - [370961] = 2, + aux_sym_preproc_if_token2, + [370879] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18537), 1, - aux_sym_preproc_if_token2, - [370968] = 2, + anon_sym_while, + [370886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17372), 1, + anon_sym_RBRACE, + [370893] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18539), 1, - anon_sym_RPAREN, - [370975] = 2, + anon_sym_LPAREN2, + [370900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15786), 1, - anon_sym_SEMI, - [370982] = 2, + ACTIONS(17404), 1, + anon_sym_RBRACE, + [370907] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18541), 1, - anon_sym_RPAREN, - [370989] = 2, + anon_sym_LPAREN2, + [370914] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18543), 1, anon_sym_LPAREN2, - [370996] = 2, + [370921] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18545), 1, anon_sym_LPAREN2, - [371003] = 2, + [370928] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12830), 1, + anon_sym_RPAREN, + [370935] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18547), 1, - anon_sym_LPAREN2, - [371010] = 2, + anon_sym_EQ, + [370942] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18549), 1, - anon_sym_LPAREN2, - [371017] = 2, + sym_raw_string_content, + [370949] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18551), 1, - anon_sym_LPAREN2, - [371024] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15194), 1, - anon_sym_SEMI, - [371031] = 2, + anon_sym_STAR, + [370956] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18553), 1, - anon_sym_LPAREN2, - [371038] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_and, - [371045] = 2, + anon_sym_SEMI, + [370963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18555), 1, - anon_sym_SEMI, - [371052] = 2, + anon_sym_STAR, + [370970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_bitor, - [371059] = 2, + ACTIONS(13051), 1, + anon_sym_RPAREN, + [370977] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18557), 1, - anon_sym_while, - [371066] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_xor, - [371073] = 2, + anon_sym_COMMA, + [370984] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18559), 1, - anon_sym_LPAREN2, - [371080] = 2, + anon_sym_SEMI, + [370991] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18561), 1, - anon_sym_SEMI, - [371087] = 2, + anon_sym_RPAREN, + [370998] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18563), 1, - anon_sym_SEMI, - [371094] = 2, + anon_sym_DQUOTE, + [371005] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18565), 1, - anon_sym_LPAREN2, - [371101] = 2, + anon_sym_RPAREN, + [371012] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18567), 1, - anon_sym_LPAREN2, - [371108] = 2, + anon_sym_COLON, + [371019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18569), 1, + ACTIONS(15953), 1, anon_sym_SEMI, - [371115] = 2, + [371026] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(18569), 1, + anon_sym_LPAREN2, + [371033] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18571), 1, - anon_sym_EQ, - [371122] = 2, + anon_sym_LPAREN2, + [371040] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18573), 1, - sym_raw_string_content, - [371129] = 2, + anon_sym_LPAREN2, + [371047] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18575), 1, - anon_sym_STAR, - [371136] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12887), 1, - anon_sym_RPAREN, - [371143] = 2, + anon_sym_SEMI, + [371054] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18577), 1, - anon_sym_RPAREN, - [371150] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14913), 1, - anon_sym_RBRACE, - [371157] = 2, + anon_sym_LPAREN2, + [371061] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18579), 1, - anon_sym_COMMA, - [371164] = 2, + anon_sym_SEMI, + [371068] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18581), 1, - anon_sym_LBRACE, - [371171] = 2, - ACTIONS(3), 1, + anon_sym_RPAREN, + [371075] = 2, + ACTIONS(14045), 1, sym_comment, ACTIONS(18583), 1, - anon_sym_LPAREN2, - [371178] = 2, + aux_sym_preproc_include_token2, + [371082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18585), 1, - anon_sym_DQUOTE, - [371185] = 2, + anon_sym_while, + [371089] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18587), 1, - anon_sym_RPAREN, - [371192] = 2, + anon_sym_SEMI, + [371096] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18589), 1, - anon_sym_COLON, - [371199] = 2, + anon_sym_LPAREN2, + [371103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12832), 1, + anon_sym_RPAREN, + [371110] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18591), 1, - anon_sym_COLON, - [371206] = 2, + anon_sym_LPAREN2, + [371117] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18593), 1, - anon_sym_LPAREN2, - [371213] = 2, + anon_sym_DQUOTE, + [371124] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18595), 1, - anon_sym_LPAREN2, - [371220] = 2, + anon_sym_EQ, + [371131] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18597), 1, - anon_sym_LPAREN2, - [371227] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12958), 1, - anon_sym_RPAREN, - [371234] = 2, + sym_raw_string_content, + [371138] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18599), 1, - anon_sym_LPAREN2, - [371241] = 2, + anon_sym_DQUOTE, + [371145] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18601), 1, - anon_sym_RPAREN, - [371248] = 2, + anon_sym_COMMA, + [371152] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18603), 1, - sym_identifier, - [371255] = 2, + anon_sym_RPAREN, + [371159] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18605), 1, - sym_identifier, - [371262] = 2, + aux_sym_preproc_if_token2, + [371166] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18607), 1, - anon_sym_while, - [371269] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17168), 1, - anon_sym_LBRACE, - [371276] = 2, + anon_sym_SEMI, + [371173] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18609), 1, - anon_sym_LPAREN2, - [371283] = 2, + anon_sym_RPAREN, + [371180] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18611), 1, - anon_sym_DQUOTE, - [371290] = 2, + anon_sym_COLON, + [371187] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18613), 1, - anon_sym_LPAREN2, - [371297] = 2, + anon_sym_RPAREN, + [371194] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18615), 1, - anon_sym_LBRACE, - [371304] = 2, + anon_sym_LPAREN2, + [371201] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18617), 1, - anon_sym_EQ, - [371311] = 2, + anon_sym_LPAREN2, + [371208] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18619), 1, - sym_raw_string_content, - [371318] = 2, + anon_sym_LPAREN2, + [371215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18621), 1, + ACTIONS(10858), 1, anon_sym_RPAREN, - [371325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18623), 1, - anon_sym_COMMA, - [371332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_bitand, - [371339] = 2, + [371222] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17359), 1, - anon_sym_RBRACE, - [371346] = 2, + ACTIONS(18621), 1, + anon_sym_LPAREN2, + [371229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11287), 1, - sym_identifier, - [371353] = 2, + ACTIONS(18623), 1, + anon_sym_SEMI, + [371236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18625), 1, - anon_sym_RPAREN, - [371360] = 2, + anon_sym_DQUOTE, + [371243] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18627), 1, - anon_sym_COLON, - [371367] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_not_eq, - [371374] = 2, + anon_sym_while, + [371250] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18629), 1, anon_sym_LPAREN2, - [371381] = 2, + [371257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18631), 1, - anon_sym_LPAREN2, - [371388] = 2, + ACTIONS(14268), 1, + sym_identifier, + [371264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18633), 1, + ACTIONS(18631), 1, anon_sym_LPAREN2, - [371395] = 2, + [371271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_DOT_STAR, - [371402] = 2, + ACTIONS(18633), 1, + anon_sym_COLON, + [371278] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18635), 1, - anon_sym_LPAREN2, - [371409] = 2, + anon_sym_EQ, + [371285] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18637), 1, - anon_sym_LPAREN2, - [371416] = 2, + sym_raw_string_content, + [371292] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18639), 1, - sym_identifier, - [371423] = 2, + anon_sym_RPAREN, + [371299] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18641), 1, - anon_sym_while, - [371430] = 2, + anon_sym_COMMA, + [371306] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18643), 1, - anon_sym_LPAREN2, - [371437] = 2, + anon_sym_SEMI, + [371313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_DASH_GT_STAR, - [371444] = 2, + ACTIONS(6013), 1, + anon_sym_DOT_DOT_DOT, + [371320] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18645), 1, - anon_sym_LPAREN2, - [371451] = 2, + anon_sym_RPAREN, + [371327] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18647), 1, - anon_sym_RPAREN, - [371458] = 2, + anon_sym_COLON, + [371334] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18649), 1, - anon_sym_EQ, - [371465] = 2, + aux_sym_preproc_if_token2, + [371341] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18651), 1, - sym_raw_string_content, - [371472] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_DASH, - [371479] = 2, + anon_sym_LPAREN2, + [371348] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18653), 1, - anon_sym_COMMA, - [371486] = 2, + anon_sym_LPAREN2, + [371355] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18655), 1, - anon_sym_SEMI, - [371493] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12587), 1, - anon_sym_COLON, - [371500] = 2, + anon_sym_LPAREN2, + [371362] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18657), 1, - anon_sym_RPAREN, - [371507] = 2, + anon_sym_DQUOTE, + [371369] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18659), 1, - anon_sym_COLON, - [371514] = 2, + anon_sym_LPAREN2, + [371376] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18661), 1, anon_sym_SEMI, - [371521] = 2, + [371383] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18663), 1, - anon_sym_LPAREN2, - [371528] = 2, + anon_sym_DQUOTE, + [371390] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18665), 1, anon_sym_LPAREN2, - [371535] = 2, + [371397] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18667), 1, - anon_sym_LPAREN2, - [371542] = 2, + anon_sym_SEMI, + [371404] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18669), 1, - anon_sym_SEMI, - [371549] = 2, + anon_sym_LPAREN2, + [371411] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18671), 1, - anon_sym_LPAREN2, - [371556] = 2, + anon_sym_SEMI, + [371418] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18673), 1, - sym_identifier, - [371563] = 2, + anon_sym_EQ, + [371425] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18675), 1, - anon_sym_COLON, - [371570] = 2, - ACTIONS(3), 1, + sym_raw_string_content, + [371432] = 2, + ACTIONS(14045), 1, sym_comment, ACTIONS(18677), 1, - anon_sym_LPAREN2, - [371577] = 2, + aux_sym_preproc_include_token2, + [371439] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18679), 1, + anon_sym_COMMA, + [371446] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(17878), 1, + anon_sym_GT_EQ, + [371453] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12544), 1, anon_sym_RPAREN, - [371584] = 2, + [371460] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18681), 1, - anon_sym_LPAREN2, - [371591] = 2, + anon_sym_RPAREN, + [371467] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18683), 1, - anon_sym_RPAREN, - [371598] = 2, + anon_sym_COLON, + [371474] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18685), 1, - anon_sym_EQ, - [371605] = 2, + anon_sym_RPAREN, + [371481] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18687), 1, - sym_raw_string_content, - [371612] = 2, + anon_sym_LPAREN2, + [371488] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18689), 1, - anon_sym_while, - [371619] = 2, + anon_sym_LPAREN2, + [371495] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18691), 1, - anon_sym_COMMA, - [371626] = 2, + anon_sym_LPAREN2, + [371502] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18693), 1, - anon_sym_LPAREN2, - [371633] = 2, + anon_sym_COLON, + [371509] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18695), 1, - sym_identifier, - [371640] = 2, + anon_sym_LPAREN2, + [371516] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18697), 1, - anon_sym_RPAREN, - [371647] = 2, + anon_sym_SEMI, + [371523] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18699), 1, - anon_sym_COLON, - [371654] = 2, + anon_sym_SEMI, + [371530] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18701), 1, - sym_raw_string_content, - [371661] = 2, + anon_sym_LPAREN2, + [371537] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18703), 1, - anon_sym_LPAREN2, - [371668] = 2, + anon_sym_RPAREN, + [371544] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18705), 1, anon_sym_LPAREN2, - [371675] = 2, + [371551] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18707), 1, - anon_sym_LPAREN2, - [371682] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16072), 1, anon_sym_SEMI, - [371689] = 2, + [371558] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18709), 1, - anon_sym_LPAREN2, - [371696] = 2, + anon_sym_EQ, + [371565] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18711), 1, - aux_sym_preproc_if_token2, - [371703] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12673), 1, - anon_sym_SEMI, - [371710] = 2, + sym_raw_string_content, + [371572] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18713), 1, - anon_sym_LPAREN2, - [371717] = 2, + sym_identifier, + [371579] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18715), 1, - anon_sym_RPAREN, - [371724] = 2, + anon_sym_COMMA, + [371586] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12438), 1, + anon_sym_RBRACE, + [371593] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18717), 1, - anon_sym_LPAREN2, - [371731] = 2, + anon_sym_DQUOTE, + [371600] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18719), 1, - anon_sym_RBRACE, - [371738] = 2, + anon_sym_RPAREN, + [371607] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18721), 1, - anon_sym_EQ, - [371745] = 2, + anon_sym_COLON, + [371614] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18723), 1, - sym_raw_string_content, - [371752] = 2, - ACTIONS(14065), 1, - sym_comment, - ACTIONS(16777), 1, - aux_sym_preproc_include_token2, - [371759] = 2, + anon_sym_RPAREN, + [371621] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18725), 1, - anon_sym_COMMA, - [371766] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_PLUS, - [371773] = 2, + anon_sym_LPAREN2, + [371628] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18727), 1, - anon_sym_SEMI, - [371780] = 2, + anon_sym_LPAREN2, + [371635] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18729), 1, - anon_sym_RPAREN, - [371787] = 2, + anon_sym_LPAREN2, + [371642] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18731), 1, - anon_sym_COLON, - [371794] = 2, + anon_sym_RPAREN, + [371649] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18733), 1, - anon_sym_SEMI, - [371801] = 2, + anon_sym_LPAREN2, + [371656] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18735), 1, - anon_sym_LPAREN2, - [371808] = 2, + anon_sym_RPAREN, + [371663] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18737), 1, anon_sym_LPAREN2, - [371815] = 2, + [371670] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18739), 1, - anon_sym_LPAREN2, - [371822] = 2, + anon_sym_RPAREN, + [371677] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18741), 1, - anon_sym_RPAREN, - [371829] = 2, + anon_sym_LPAREN2, + [371684] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18743), 1, - anon_sym_LPAREN2, - [371836] = 2, + sym_raw_string_content, + [371691] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18745), 1, anon_sym_RPAREN, - [371843] = 2, + [371698] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18747), 1, - anon_sym_LPAREN2, - [371850] = 2, + anon_sym_COMMA, + [371705] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12672), 1, + anon_sym_COLON, + [371712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18749), 1, - aux_sym_preproc_if_token2, - [371857] = 2, + anon_sym_RPAREN, + [371719] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18751), 1, - anon_sym_LPAREN2, - [371864] = 2, + anon_sym_COLON, + [371726] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18753), 1, - sym_raw_string_content, - [371871] = 2, + anon_sym_SEMI, + [371733] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18755), 1, - anon_sym_SEMI, - [371878] = 2, + anon_sym_LPAREN2, + [371740] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18757), 1, - anon_sym_COMMA, - [371885] = 2, + anon_sym_LPAREN2, + [371747] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18759), 1, anon_sym_SEMI, - [371892] = 2, + [371754] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18761), 1, - anon_sym_RPAREN, - [371899] = 2, + anon_sym_LPAREN2, + [371761] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18763), 1, - anon_sym_COLON, - [371906] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10481), 1, anon_sym_SEMI, - [371913] = 2, + [371768] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18765), 1, - anon_sym_LPAREN2, - [371920] = 2, + aux_sym_preproc_if_token2, + [371775] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18767), 1, anon_sym_LPAREN2, - [371927] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12996), 1, - anon_sym_RPAREN, - [371934] = 2, + [371782] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18769), 1, - anon_sym_LPAREN2, - [371941] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17423), 1, - anon_sym_RBRACE, - [371948] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(17603), 1, - anon_sym_STAR, - [371955] = 2, + sym_raw_string_content, + [371789] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18771), 1, anon_sym_LPAREN2, - [371962] = 2, + [371796] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18773), 1, - sym_raw_string_content, - [371969] = 2, + anon_sym_RPAREN, + [371803] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18775), 1, - anon_sym_RPAREN, - [371976] = 2, + anon_sym_LPAREN2, + [371810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18777), 1, - anon_sym_RPAREN, - [371983] = 2, + anon_sym_LPAREN2, + [371817] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18779), 1, anon_sym_LPAREN2, - [371990] = 2, + [371824] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18781), 1, anon_sym_LPAREN2, - [371997] = 2, + [371831] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18783), 1, - anon_sym_LPAREN2, - [372004] = 2, + sym_raw_string_content, + [371838] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18785), 1, - anon_sym_LPAREN2, - [372011] = 2, + anon_sym_RPAREN, + [371845] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18787), 1, - sym_raw_string_content, - [372018] = 2, + anon_sym_LPAREN2, + [371852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18789), 1, - anon_sym_RPAREN, - [372025] = 2, + anon_sym_LPAREN2, + [371859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18791), 1, anon_sym_LPAREN2, - [372032] = 2, + [371866] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18793), 1, anon_sym_LPAREN2, - [372039] = 2, + [371873] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18795), 1, - anon_sym_LPAREN2, - [372046] = 2, + sym_raw_string_content, + [371880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18797), 1, - anon_sym_LPAREN2, - [372053] = 2, + anon_sym_RPAREN, + [371887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18799), 1, - sym_raw_string_content, - [372060] = 2, + anon_sym_LPAREN2, + [371894] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18801), 1, - anon_sym_RPAREN, - [372067] = 2, + anon_sym_LPAREN2, + [371901] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18803), 1, - anon_sym_LPAREN2, - [372074] = 2, + sym_raw_string_content, + [371908] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18805), 1, - anon_sym_LPAREN2, - [372081] = 2, + anon_sym_RPAREN, + [371915] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18807), 1, - sym_raw_string_content, - [372088] = 2, + anon_sym_LPAREN2, + [371922] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18809), 1, - anon_sym_RPAREN, - [372095] = 2, + anon_sym_LPAREN2, + [371929] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18811), 1, - anon_sym_LPAREN2, - [372102] = 2, + sym_raw_string_content, + [371936] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18813), 1, - anon_sym_LPAREN2, - [372109] = 2, + anon_sym_RPAREN, + [371943] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18815), 1, - sym_raw_string_content, - [372116] = 2, + anon_sym_LPAREN2, + [371950] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18817), 1, - anon_sym_RPAREN, - [372123] = 2, + anon_sym_LPAREN2, + [371957] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18819), 1, - anon_sym_LPAREN2, - [372130] = 2, + sym_raw_string_content, + [371964] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18821), 1, - anon_sym_LPAREN2, - [372137] = 2, + anon_sym_RPAREN, + [371971] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18823), 1, - sym_raw_string_content, - [372144] = 2, + anon_sym_LPAREN2, + [371978] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18825), 1, - anon_sym_RPAREN, - [372151] = 2, + anon_sym_LPAREN2, + [371985] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18827), 1, - anon_sym_LPAREN2, - [372158] = 2, + sym_raw_string_content, + [371992] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18829), 1, - anon_sym_LPAREN2, - [372165] = 2, + anon_sym_RPAREN, + [371999] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18831), 1, - sym_raw_string_content, - [372172] = 2, + anon_sym_LPAREN2, + [372006] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18833), 1, - anon_sym_RPAREN, - [372179] = 2, + anon_sym_LPAREN2, + [372013] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18835), 1, - anon_sym_LPAREN2, - [372186] = 2, + sym_raw_string_content, + [372020] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18837), 1, - anon_sym_LPAREN2, - [372193] = 2, + anon_sym_RPAREN, + [372027] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18839), 1, - sym_raw_string_content, - [372200] = 2, + anon_sym_LPAREN2, + [372034] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18841), 1, - anon_sym_RPAREN, - [372207] = 2, + anon_sym_LPAREN2, + [372041] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18843), 1, - anon_sym_LPAREN2, - [372214] = 2, + sym_raw_string_content, + [372048] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18845), 1, - anon_sym_LPAREN2, - [372221] = 2, + anon_sym_RPAREN, + [372055] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18847), 1, - sym_raw_string_content, - [372228] = 2, + anon_sym_LPAREN2, + [372062] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18849), 1, - anon_sym_RPAREN, - [372235] = 2, + anon_sym_LPAREN2, + [372069] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18851), 1, - anon_sym_LPAREN2, - [372242] = 2, + sym_raw_string_content, + [372076] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18853), 1, - anon_sym_LPAREN2, - [372249] = 2, + anon_sym_RPAREN, + [372083] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18855), 1, - sym_raw_string_content, - [372256] = 2, + anon_sym_LPAREN2, + [372090] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18857), 1, - anon_sym_RPAREN, - [372263] = 2, + anon_sym_LPAREN2, + [372097] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18859), 1, - anon_sym_LPAREN2, - [372270] = 2, + sym_raw_string_content, + [372104] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18861), 1, - anon_sym_LPAREN2, - [372277] = 2, + anon_sym_RPAREN, + [372111] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18863), 1, - sym_raw_string_content, - [372284] = 2, + anon_sym_LPAREN2, + [372118] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18865), 1, - anon_sym_RPAREN, - [372291] = 2, + anon_sym_LPAREN2, + [372125] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18867), 1, - anon_sym_LPAREN2, - [372298] = 2, + sym_raw_string_content, + [372132] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18869), 1, - anon_sym_LPAREN2, - [372305] = 2, + anon_sym_RPAREN, + [372139] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18871), 1, - sym_raw_string_content, - [372312] = 2, + anon_sym_LPAREN2, + [372146] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18873), 1, - anon_sym_RPAREN, - [372319] = 2, + sym_raw_string_content, + [372153] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18875), 1, - anon_sym_LPAREN2, - [372326] = 2, + anon_sym_RPAREN, + [372160] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18877), 1, - sym_raw_string_content, - [372333] = 2, + anon_sym_LPAREN2, + [372167] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18879), 1, - anon_sym_RPAREN, - [372340] = 2, + anon_sym_LPAREN2, + [372174] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18881), 1, anon_sym_LPAREN2, - [372347] = 2, + [372181] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18883), 1, - anon_sym_LPAREN2, - [372354] = 2, + anon_sym_SEMI, + [372188] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18885), 1, - anon_sym_LPAREN2, - [372361] = 2, + anon_sym_RPAREN, + [372195] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18887), 1, - anon_sym_SLASH, - [372368] = 2, + anon_sym_LPAREN2, + [372202] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18889), 1, - sym_identifier, - [372375] = 2, + anon_sym_LPAREN2, + [372209] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18891), 1, - anon_sym_LPAREN2, - [372382] = 2, + sym_identifier, + [372216] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12297), 1, + anon_sym_SEMI, + [372223] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18893), 1, - anon_sym_LPAREN2, - [372389] = 2, + anon_sym_SEMI, + [372230] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18895), 1, - sym_identifier, - [372396] = 2, + aux_sym_preproc_if_token2, + [372237] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18897), 1, - sym_identifier, - [372403] = 2, - ACTIONS(3), 1, + anon_sym_SEMI, + [372244] = 2, + ACTIONS(14045), 1, sym_comment, ACTIONS(18899), 1, - anon_sym_RPAREN, - [372410] = 2, + aux_sym_preproc_include_token2, + [372251] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18901), 1, - anon_sym_SEMI, - [372417] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18903), 1, - anon_sym_DQUOTE, - [372424] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18905), 1, anon_sym_RPAREN, - [372431] = 2, + [372258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12940), 1, + ACTIONS(18903), 1, anon_sym_RPAREN, - [372438] = 2, + [372265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12667), 1, - anon_sym_COLON, - [372445] = 2, + ACTIONS(18905), 1, + anon_sym_LPAREN2, + [372272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(18907), 1, - anon_sym_RBRACE, - [372452] = 2, + ACTIONS(15103), 1, + anon_sym_SEMI, + [372279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12651), 1, + ACTIONS(16145), 1, anon_sym_SEMI, - [372459] = 2, + [372286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12743), 1, - anon_sym_COLON, - [372466] = 2, + ACTIONS(18907), 1, + anon_sym_RPAREN, + [372293] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18909), 1, - anon_sym_EQ, - [372473] = 2, + anon_sym_RPAREN, + [372300] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18911), 1, - aux_sym_preproc_if_token2, - [372480] = 2, + anon_sym_RPAREN, + [372307] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18913), 1, - aux_sym_preproc_if_token2, - [372487] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12295), 1, - anon_sym_RBRACE, - [372494] = 2, + sym_identifier, + [372314] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18915), 1, anon_sym_LPAREN2, - [372501] = 2, + [372321] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18917), 1, + anon_sym_EQ, + [372328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10525), 1, anon_sym_SEMI, - [372508] = 2, + [372335] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18919), 1, - anon_sym_RBRACE, - [372515] = 2, + anon_sym_RPAREN, + [372342] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18921), 1, - anon_sym_RPAREN, - [372522] = 2, + sym_identifier, + [372349] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18923), 1, - aux_sym_preproc_if_token2, - [372529] = 2, + ts_builtin_sym_end, + [372356] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18925), 1, - aux_sym_preproc_if_token2, - [372536] = 2, + anon_sym_LPAREN2, + [372363] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18927), 1, - anon_sym_RPAREN, - [372543] = 2, + sym_identifier, + [372370] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18929), 1, - anon_sym_SEMI, - [372550] = 2, + sym_identifier, + [372377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(17603), 1, - anon_sym_PERCENT, - [372557] = 2, + ACTIONS(11669), 1, + sym_identifier, + [372384] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18931), 1, anon_sym_RPAREN, - [372564] = 2, + [372391] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18933), 1, - anon_sym_RPAREN, - [372571] = 2, + sym_identifier, + [372398] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18935), 1, - aux_sym_preproc_if_token2, - [372578] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12315), 1, - anon_sym_RBRACE, - [372585] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(18937), 1, anon_sym_SEMI, - [372592] = 2, + [372405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12723), 1, - anon_sym_SEMI, - [372599] = 2, + ACTIONS(18937), 1, + sym_identifier, + [372412] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18939), 1, anon_sym_RPAREN, - [372606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16644), 1, - anon_sym_COLON_COLON, - [372613] = 2, + [372419] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18941), 1, - anon_sym_SEMI, - [372620] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(16126), 1, - anon_sym_SEMI, - [372627] = 2, + anon_sym_RPAREN, + [372426] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18943), 1, - anon_sym_RPAREN, - [372634] = 2, + anon_sym_SEMI, + [372433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15160), 1, - anon_sym_SEMI, - [372641] = 2, + ACTIONS(12644), 1, + anon_sym_COLON, + [372440] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18945), 1, - anon_sym_SEMI, - [372648] = 2, + anon_sym_RPAREN, + [372447] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18947), 1, - anon_sym_DQUOTE, - [372655] = 2, - ACTIONS(3), 1, + aux_sym_preproc_if_token2, + [372454] = 2, + ACTIONS(14045), 1, sym_comment, ACTIONS(18949), 1, - sym_identifier, - [372662] = 2, + aux_sym_preproc_include_token2, + [372461] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18951), 1, anon_sym_RPAREN, - [372669] = 2, + [372468] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18953), 1, - anon_sym_DQUOTE, - [372676] = 2, + sym_identifier, + [372475] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18955), 1, - sym_raw_string_content, - [372683] = 2, + sym_identifier, + [372482] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18957), 1, - sym_identifier, - [372690] = 2, + anon_sym_RPAREN, + [372489] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18959), 1, - sym_raw_string_delimiter, - [372697] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13068), 1, - anon_sym_RPAREN, - [372704] = 2, + anon_sym_SEMI, + [372496] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18961), 1, - anon_sym_RPAREN, - [372711] = 2, + sym_raw_string_content, + [372503] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18963), 1, - anon_sym_RPAREN, - [372718] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12928), 1, - anon_sym_RPAREN, - [372725] = 2, + aux_sym_preproc_if_token2, + [372510] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18965), 1, - anon_sym_COMMA, - [372732] = 2, - ACTIONS(14065), 1, + anon_sym_SEMI, + [372517] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(18967), 1, - aux_sym_preproc_include_token2, - [372739] = 2, + anon_sym_SEMI, + [372524] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18969), 1, - anon_sym_LBRACE, - [372746] = 2, + anon_sym_COLON, + [372531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12451), 1, - anon_sym_RBRACE, - [372753] = 2, + ACTIONS(16211), 1, + anon_sym_SEMI, + [372538] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5998), 1, + anon_sym_DOT_DOT_DOT, + [372545] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18971), 1, - anon_sym_RPAREN, - [372760] = 2, + anon_sym_SEMI, + [372552] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10531), 1, + anon_sym_SEMI, + [372559] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18973), 1, - aux_sym_preproc_if_token2, - [372767] = 2, + sym_identifier, + [372566] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18975), 1, - sym_identifier, - [372774] = 2, + anon_sym_RPAREN, + [372573] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18977), 1, - anon_sym_EQ, - [372781] = 2, + aux_sym_preproc_if_token2, + [372580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_COLON_COLON, + [372587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18979), 1, - anon_sym_SEMI, - [372788] = 2, + anon_sym_RPAREN, + [372594] = 2, + ACTIONS(8788), 1, + aux_sym_preproc_include_token2, + ACTIONS(14045), 1, + sym_comment, + [372601] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12822), 1, + anon_sym_RPAREN, + [372608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18981), 1, - aux_sym_preproc_if_token2, - [372795] = 2, + anon_sym_RPAREN, + [372615] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18983), 1, anon_sym_RPAREN, - [372802] = 2, + [372622] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18985), 1, anon_sym_RPAREN, - [372809] = 2, + [372629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18987), 1, - anon_sym_DQUOTE, - [372816] = 2, + anon_sym_RPAREN, + [372636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12466), 1, + anon_sym_RBRACE, + [372643] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18989), 1, - anon_sym_RPAREN, - [372823] = 2, + anon_sym_SEMI, + [372650] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18991), 1, anon_sym_RPAREN, - [372830] = 2, + [372657] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18993), 1, - anon_sym_RPAREN, - [372837] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12962), 1, - anon_sym_RPAREN, - [372844] = 2, + aux_sym_preproc_if_token2, + [372664] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18995), 1, - anon_sym_RPAREN, - [372851] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10558), 1, - anon_sym_SEMI, - [372858] = 2, + aux_sym_preproc_if_token2, + [372671] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18997), 1, - anon_sym_LPAREN2, - [372865] = 2, + aux_sym_preproc_if_token2, + [372678] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(18999), 1, - anon_sym_SEMI, - [372872] = 2, + anon_sym_RPAREN, + [372685] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19001), 1, anon_sym_RPAREN, - [372879] = 2, + [372692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19003), 1, - anon_sym_STAR, - [372886] = 2, + ACTIONS(12728), 1, + anon_sym_COLON, + [372699] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16787), 1, + ACTIONS(19003), 1, anon_sym_SEMI, - [372893] = 2, + [372706] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19005), 1, - aux_sym_preproc_if_token2, - [372900] = 2, + anon_sym_RPAREN, + [372713] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9597), 1, + sym_identifier, + [372720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12800), 1, + anon_sym_RPAREN, + [372727] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19007), 1, - aux_sym_preproc_if_token2, - [372907] = 2, + sym_identifier, + [372734] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19009), 1, - sym_identifier, - [372914] = 2, + anon_sym_SEMI, + [372741] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15933), 1, + anon_sym_SEMI, + [372748] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19011), 1, - aux_sym_preproc_if_token2, - [372921] = 2, + sym_identifier, + [372755] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19013), 1, - anon_sym_DQUOTE, - [372928] = 2, + anon_sym_SEMI, + [372762] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19015), 1, - anon_sym_RPAREN, - [372935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15202), 1, anon_sym_SEMI, - [372942] = 2, + [372769] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19017), 1, - sym_identifier, - [372949] = 2, + anon_sym_RBRACE, + [372776] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19019), 1, - sym_identifier, - [372956] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12543), 1, - anon_sym_RBRACE, - [372963] = 2, + aux_sym_preproc_if_token2, + [372783] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19021), 1, - anon_sym_RPAREN, - [372970] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12549), 1, - anon_sym_SEMI, - [372977] = 2, + anon_sym_DQUOTE, + [372790] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19023), 1, - anon_sym_STAR, - [372984] = 2, + aux_sym_preproc_if_token2, + [372797] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19025), 1, - aux_sym_preproc_if_token2, - [372991] = 2, + sym_identifier, + [372804] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19027), 1, - aux_sym_preproc_if_token2, - [372998] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12753), 1, - anon_sym_RPAREN, - [373005] = 2, + sym_identifier, + [372811] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19029), 1, - anon_sym_RPAREN, - [373012] = 2, + aux_sym_preproc_if_token2, + [372818] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19031), 1, - anon_sym_RPAREN, - [373019] = 2, + aux_sym_preproc_if_token2, + [372825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12922), 1, + ACTIONS(19033), 1, anon_sym_RPAREN, - [373026] = 2, + [372832] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19033), 1, - anon_sym_RPAREN, - [373033] = 2, + ACTIONS(15270), 1, + anon_sym_COMMA, + [372839] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19035), 1, - anon_sym_RPAREN, - [373040] = 2, + anon_sym_SEMI, + [372846] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19037), 1, anon_sym_RPAREN, - [373047] = 2, + [372853] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19039), 1, - anon_sym_RPAREN, - [373054] = 2, + anon_sym_RBRACE, + [372860] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12731), 1, - anon_sym_COLON, - [373061] = 2, + ACTIONS(14900), 1, + anon_sym_RBRACE, + [372867] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19041), 1, - anon_sym_COLON, - [373068] = 2, + sym_identifier, + [372874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19043), 1, - anon_sym_SEMI, - [373075] = 2, + ACTIONS(12730), 1, + anon_sym_COLON, + [372881] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19045), 1, + ACTIONS(12594), 1, anon_sym_SEMI, - [373082] = 2, + [372888] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12663), 1, - anon_sym_SEMI, - [373089] = 2, + ACTIONS(6031), 1, + anon_sym_DOT_DOT_DOT, + [372895] = 2, + ACTIONS(14045), 1, + sym_comment, + ACTIONS(14172), 1, + aux_sym_preproc_include_token2, + [372902] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14911), 1, + ACTIONS(19043), 1, anon_sym_RBRACE, - [373096] = 2, + [372909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19047), 1, - aux_sym_preproc_if_token2, - [373103] = 2, + ACTIONS(19045), 1, + anon_sym_SEMI, + [372916] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19049), 1, - anon_sym_DQUOTE, - [373110] = 2, + ACTIONS(19047), 1, + sym_identifier, + [372923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15198), 1, - anon_sym_LBRACE, - [373117] = 2, + ACTIONS(19049), 1, + anon_sym_RPAREN, + [372930] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19051), 1, - anon_sym_LPAREN2, - [373124] = 2, + aux_sym_preproc_if_token2, + [372937] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19053), 1, anon_sym_LPAREN2, - [373131] = 2, + [372944] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19055), 1, - sym_identifier, - [373138] = 2, + anon_sym_LPAREN2, + [372951] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19057), 1, sym_identifier, - [373145] = 2, + [372958] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19059), 1, - anon_sym_RPAREN, - [373152] = 2, + anon_sym_SEMI, + [372965] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19061), 1, - sym_identifier, - [373159] = 2, + anon_sym_RPAREN, + [372972] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19063), 1, - anon_sym_LPAREN2, - [373166] = 2, + sym_identifier, + [372979] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19065), 1, - anon_sym_SEMI, - [373173] = 2, + anon_sym_LPAREN2, + [372986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14884), 1, + anon_sym_RBRACE, + [372993] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19067), 1, sym_identifier, - [373180] = 2, + [373000] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19069), 1, sym_raw_string_content, - [373187] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14897), 1, - anon_sym_RBRACE, - [373194] = 2, + [373007] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19071), 1, - anon_sym_SEMI, - [373201] = 2, + sym_identifier, + [373014] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19073), 1, - sym_identifier, - [373208] = 2, + aux_sym_preproc_if_token2, + [373021] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19075), 1, anon_sym_RPAREN, - [373215] = 2, + [373028] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19077), 1, - anon_sym_LPAREN2, - [373222] = 2, + aux_sym_preproc_if_token2, + [373035] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19079), 1, anon_sym_LPAREN2, - [373229] = 2, + [373042] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19081), 1, - sym_identifier, - [373236] = 2, + anon_sym_LPAREN2, + [373049] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19083), 1, - aux_sym_preproc_if_token2, - [373243] = 2, + sym_identifier, + [373056] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19085), 1, - aux_sym_preproc_if_token2, - [373250] = 2, + anon_sym_SEMI, + [373063] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19087), 1, - anon_sym_SEMI, - [373257] = 2, + anon_sym_RPAREN, + [373070] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19089), 1, - anon_sym_LPAREN2, - [373264] = 2, + anon_sym_RPAREN, + [373077] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19091), 1, - sym_identifier, - [373271] = 2, + anon_sym_LPAREN2, + [373084] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19093), 1, - sym_raw_string_content, - [373278] = 2, + sym_identifier, + [373091] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19095), 1, - anon_sym_RPAREN, - [373285] = 2, + sym_raw_string_content, + [373098] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5995), 1, + anon_sym_DOT_DOT_DOT, + [373105] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19097), 1, anon_sym_STAR, - [373292] = 2, + [373112] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19099), 1, - anon_sym_RPAREN, - [373299] = 2, + anon_sym_SEMI, + [373119] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19101), 1, anon_sym_LPAREN2, - [373306] = 2, + [373126] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19103), 1, sym_identifier, - [373313] = 2, + [373133] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19105), 1, + sym_identifier, + [373140] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15873), 1, anon_sym_SEMI, - [373320] = 2, + [373147] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19107), 1, - anon_sym_SEMI, - [373327] = 2, + anon_sym_DQUOTE, + [373154] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19109), 1, - anon_sym_RPAREN, - [373334] = 2, + sym_identifier, + [373161] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19111), 1, - sym_identifier, - [373341] = 2, + sym_raw_string_content, + [373168] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19113), 1, - sym_raw_string_content, - [373348] = 2, + anon_sym_RPAREN, + [373175] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14889), 1, - anon_sym_RBRACE, - [373355] = 2, + ACTIONS(10684), 1, + anon_sym_RPAREN, + [373182] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(19115), 1, - anon_sym_STAR, - [373362] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(19117), 1, anon_sym_LPAREN2, - [373369] = 2, + [373189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19119), 1, + ACTIONS(19117), 1, sym_identifier, - [373376] = 2, + [373196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16044), 1, - anon_sym_SEMI, - [373383] = 2, + ACTIONS(10824), 1, + anon_sym_RPAREN, + [373203] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19121), 1, - anon_sym_SEMI, - [373390] = 2, + ACTIONS(19119), 1, + anon_sym_RPAREN, + [373210] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19123), 1, + ACTIONS(10814), 1, anon_sym_RPAREN, - [373397] = 2, + [373217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19125), 1, + ACTIONS(19121), 1, sym_identifier, - [373404] = 2, + [373224] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19127), 1, + ACTIONS(19123), 1, sym_raw_string_content, - [373411] = 2, + [373231] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19129), 1, + ACTIONS(19125), 1, anon_sym_SEMI, - [373418] = 2, + [373238] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19131), 1, + ACTIONS(19127), 1, anon_sym_LPAREN2, - [373425] = 2, + [373245] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19133), 1, + ACTIONS(19129), 1, sym_identifier, - [373432] = 2, + [373252] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19135), 1, - anon_sym_SEMI, - [373439] = 2, + ACTIONS(19131), 1, + anon_sym_DQUOTE, + [373259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19137), 1, + ACTIONS(12676), 1, anon_sym_RPAREN, - [373446] = 2, + [373266] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19139), 1, + ACTIONS(19133), 1, sym_identifier, - [373453] = 2, + [373273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19141), 1, + ACTIONS(19135), 1, sym_raw_string_content, - [373460] = 2, + [373280] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19143), 1, - aux_sym_preproc_if_token2, - [373467] = 2, + ACTIONS(19137), 1, + sym_identifier, + [373287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19145), 1, - aux_sym_preproc_if_token2, - [373474] = 2, + ACTIONS(19139), 1, + anon_sym_RPAREN, + [373294] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19147), 1, - anon_sym_DOT_DOT_DOT, - [373481] = 2, + ACTIONS(19141), 1, + anon_sym_SEMI, + [373301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19150), 1, + ACTIONS(19143), 1, sym_identifier, - [373488] = 2, + [373308] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19152), 1, + ACTIONS(19145), 1, sym_raw_string_content, - [373495] = 2, + [373315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19154), 1, + ACTIONS(12762), 1, anon_sym_RPAREN, - [373502] = 2, + [373322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12599), 1, - anon_sym_COLON, - [373509] = 2, + ACTIONS(19147), 1, + anon_sym_STAR, + [373329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19156), 1, + ACTIONS(19149), 1, sym_raw_string_content, - [373516] = 2, + [373336] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(11677), 1, - sym_identifier, - [373523] = 2, + ACTIONS(12526), 1, + anon_sym_RPAREN, + [373343] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19158), 1, + ACTIONS(19151), 1, sym_raw_string_content, - [373530] = 2, + [373350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19160), 1, - anon_sym_SEMI, - [373537] = 2, + ACTIONS(12804), 1, + anon_sym_RPAREN, + [373357] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19162), 1, + ACTIONS(19153), 1, sym_raw_string_content, - [373544] = 2, + [373364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19164), 1, + ACTIONS(19155), 1, anon_sym_RPAREN, - [373551] = 2, + [373371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19166), 1, + ACTIONS(19157), 1, sym_raw_string_content, - [373558] = 2, + [373378] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19168), 1, + ACTIONS(19159), 1, sym_identifier, - [373565] = 2, + [373385] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19170), 1, + ACTIONS(19161), 1, sym_raw_string_content, - [373572] = 2, + [373392] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19172), 1, + ACTIONS(19163), 1, sym_identifier, - [373579] = 2, + [373399] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19174), 1, + ACTIONS(19165), 1, sym_raw_string_content, - [373586] = 2, + [373406] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19176), 1, - anon_sym_DQUOTE, - [373593] = 2, + ACTIONS(19167), 1, + anon_sym_RPAREN, + [373413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19178), 1, + ACTIONS(19169), 1, sym_raw_string_content, - [373600] = 2, + [373420] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19180), 1, - anon_sym_STAR, - [373607] = 2, + ACTIONS(14260), 1, + anon_sym_LBRACE, + [373427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19182), 1, + ACTIONS(19171), 1, sym_raw_string_content, - [373614] = 2, + [373434] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19184), 1, + ACTIONS(12718), 1, anon_sym_SEMI, - [373621] = 2, + [373441] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19186), 1, + ACTIONS(19173), 1, sym_raw_string_content, - [373628] = 2, + [373448] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19188), 1, - sym_identifier, - [373635] = 2, + ACTIONS(19175), 1, + anon_sym_RPAREN, + [373455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19190), 1, + ACTIONS(19177), 1, sym_raw_string_content, - [373642] = 2, + [373462] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14243), 1, - anon_sym_LBRACE, - [373649] = 2, + ACTIONS(12678), 1, + anon_sym_RPAREN, + [373469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19192), 1, + ACTIONS(19179), 1, sym_raw_string_content, - [373656] = 2, + [373476] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19194), 1, - aux_sym_preproc_if_token2, - [373663] = 2, + ACTIONS(6010), 1, + anon_sym_DOT_DOT_DOT, + [373483] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19196), 1, + ACTIONS(19181), 1, sym_raw_string_content, - [373670] = 2, + [373490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19198), 1, + ACTIONS(19183), 1, anon_sym_SEMI, - [373677] = 2, + [373497] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19200), 1, + ACTIONS(19185), 1, sym_raw_string_content, - [373684] = 2, + [373504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12557), 1, + ACTIONS(19187), 1, anon_sym_RPAREN, - [373691] = 2, + [373511] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19202), 1, - aux_sym_preproc_if_token2, - [373698] = 2, + ACTIONS(19189), 1, + anon_sym_private, + [373518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19204), 1, - anon_sym_RPAREN, - [373705] = 2, + ACTIONS(14858), 1, + anon_sym_RBRACE, + [373525] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19206), 1, - anon_sym_RPAREN, - [373712] = 2, + ACTIONS(19191), 1, + anon_sym_SEMI, + [373532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19208), 1, + ACTIONS(19193), 1, anon_sym_LPAREN2, - [373719] = 2, + [373539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12649), 1, - anon_sym_COLON, - [373726] = 2, + ACTIONS(19195), 1, + anon_sym_SEMI, + [373546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19210), 1, - anon_sym_private, - [373733] = 2, + ACTIONS(19197), 1, + anon_sym_SEMI, + [373553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19212), 1, + ACTIONS(19199), 1, anon_sym_SEMI, - [373740] = 2, + [373560] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19214), 1, + ACTIONS(19201), 1, anon_sym_RPAREN, - [373747] = 2, + [373567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19216), 1, - anon_sym_LBRACE, - [373754] = 2, + ACTIONS(19203), 1, + anon_sym_SEMI, + [373574] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19218), 1, - anon_sym_RPAREN, - [373761] = 2, + ACTIONS(19205), 1, + anon_sym_SEMI, + [373581] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19220), 1, - anon_sym_RBRACE, - [373768] = 2, + ACTIONS(19207), 1, + aux_sym_preproc_if_token2, + [373588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19222), 1, - anon_sym_RPAREN, - [373775] = 2, + ACTIONS(17524), 1, + anon_sym_RBRACE, + [373595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19224), 1, + ACTIONS(19209), 1, anon_sym_LPAREN2, - [373782] = 2, + [373602] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19226), 1, - anon_sym_DQUOTE, - [373789] = 2, + ACTIONS(19211), 1, + anon_sym_SEMI, + [373609] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19228), 1, - anon_sym_private, - [373796] = 2, + ACTIONS(19213), 1, + anon_sym_SEMI, + [373616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15404), 1, - anon_sym_LBRACE, - [373803] = 2, + ACTIONS(19215), 1, + anon_sym_RPAREN, + [373623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19230), 1, - anon_sym_STAR, - [373810] = 2, + ACTIONS(19217), 1, + sym_identifier, + [373630] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12739), 1, + ACTIONS(12670), 1, anon_sym_COLON, - [373817] = 2, + [373637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19232), 1, + ACTIONS(19219), 1, anon_sym_LPAREN2, - [373824] = 2, + [373644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19234), 1, + ACTIONS(19221), 1, anon_sym_LPAREN2, - [373831] = 2, + [373651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(12906), 1, - anon_sym_RPAREN, - [373838] = 2, + ACTIONS(19223), 1, + sym_identifier, + [373658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19236), 1, + ACTIONS(19225), 1, anon_sym_LPAREN2, - [373845] = 2, + [373665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19238), 1, + ACTIONS(19227), 1, anon_sym_LPAREN2, - [373852] = 2, + [373672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19240), 1, - sym_identifier, - [373859] = 2, + ACTIONS(19229), 1, + anon_sym_SEMI, + [373679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19242), 1, + ACTIONS(19231), 1, anon_sym_LPAREN2, - [373866] = 2, + [373686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19244), 1, + ACTIONS(19233), 1, anon_sym_LPAREN2, - [373873] = 2, + [373693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(14903), 1, - anon_sym_RBRACE, - [373880] = 2, + ACTIONS(19235), 1, + aux_sym_preproc_if_token2, + [373700] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19246), 1, + ACTIONS(19237), 1, anon_sym_LPAREN2, - [373887] = 2, + [373707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19248), 1, + ACTIONS(19239), 1, anon_sym_LPAREN2, - [373894] = 2, + [373714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19250), 1, - anon_sym_COLON, - [373901] = 2, + ACTIONS(19241), 1, + anon_sym_SEMI, + [373721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19252), 1, + ACTIONS(19243), 1, anon_sym_LPAREN2, - [373908] = 2, + [373728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19254), 1, + ACTIONS(19245), 1, anon_sym_LPAREN2, - [373915] = 2, - ACTIONS(3), 1, + [373735] = 2, + ACTIONS(14045), 1, sym_comment, - ACTIONS(19256), 1, - anon_sym_SEMI, - [373922] = 2, + ACTIONS(19247), 1, + aux_sym_preproc_include_token2, + [373742] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19258), 1, + ACTIONS(19249), 1, anon_sym_LPAREN2, - [373929] = 2, + [373749] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19260), 1, + ACTIONS(19251), 1, anon_sym_LPAREN2, - [373936] = 2, + [373756] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19262), 1, + ACTIONS(19253), 1, aux_sym_preproc_if_token2, - [373943] = 2, + [373763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19264), 1, + ACTIONS(19255), 1, anon_sym_LPAREN2, - [373950] = 2, + [373770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19266), 1, + ACTIONS(19257), 1, anon_sym_LPAREN2, - [373957] = 2, + [373777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19268), 1, + ACTIONS(19259), 1, anon_sym_LPAREN2, - [373964] = 2, + [373784] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19270), 1, + ACTIONS(19261), 1, anon_sym_LPAREN2, - [373971] = 2, + [373791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19272), 1, + ACTIONS(19263), 1, anon_sym_LPAREN2, - [373978] = 2, + [373798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19274), 1, + ACTIONS(19265), 1, anon_sym_LPAREN2, - [373985] = 2, + [373805] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19276), 1, + ACTIONS(19267), 1, anon_sym_LPAREN2, - [373992] = 2, + [373812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19278), 1, + ACTIONS(19269), 1, anon_sym_LPAREN2, - [373999] = 2, + [373819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19280), 1, + ACTIONS(19271), 1, anon_sym_LPAREN2, - [374006] = 2, + [373826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19282), 1, + ACTIONS(19273), 1, anon_sym_LPAREN2, - [374013] = 2, + [373833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19284), 1, + ACTIONS(19275), 1, anon_sym_LPAREN2, - [374020] = 2, + [373840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19286), 1, + ACTIONS(19277), 1, anon_sym_LPAREN2, - [374027] = 2, + [373847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19288), 1, + ACTIONS(19279), 1, anon_sym_LPAREN2, - [374034] = 2, + [373854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19290), 1, - anon_sym_DQUOTE, - [374041] = 2, + ACTIONS(19281), 1, + anon_sym_RPAREN, + [373861] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19292), 1, + ACTIONS(19283), 1, anon_sym_RPAREN, - [374048] = 2, + [373868] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19294), 1, - anon_sym_RPAREN, - [374055] = 2, + ACTIONS(19285), 1, + anon_sym_STAR, + [373875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19296), 1, - anon_sym_LPAREN2, - [374062] = 2, - ACTIONS(14065), 1, + ACTIONS(19287), 1, + sym_identifier, + [373882] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(19298), 1, - aux_sym_preproc_include_token2, - [374069] = 2, + ACTIONS(6001), 1, + anon_sym_DOT_DOT_DOT, + [373889] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19300), 1, - anon_sym_RPAREN, - [374076] = 2, + ACTIONS(19289), 1, + anon_sym_SEMI, + [373896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19302), 1, - anon_sym_RPAREN, - [374083] = 2, + ACTIONS(19291), 1, + aux_sym_preproc_if_token2, + [373903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19304), 1, + ACTIONS(19293), 1, anon_sym_LPAREN2, - [374090] = 2, + [373910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19306), 1, + ACTIONS(19295), 1, anon_sym_LPAREN2, - [374097] = 2, + [373917] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19308), 1, + ACTIONS(19297), 1, anon_sym_LPAREN2, - [374104] = 2, + [373924] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19310), 1, + ACTIONS(19299), 1, anon_sym_LPAREN2, - [374111] = 2, + [373931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19312), 1, + ACTIONS(19301), 1, anon_sym_LPAREN2, - [374118] = 2, + [373938] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19314), 1, + ACTIONS(19303), 1, anon_sym_LPAREN2, - [374125] = 2, + [373945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(19316), 1, + ACTIONS(19305), 1, anon_sym_LPAREN2, - [374132] = 2, + [373952] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6006), 1, - anon_sym_DOT_DOT_DOT, + ACTIONS(12828), 1, + anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(3826)] = 0, - [SMALL_STATE(3827)] = 71, - [SMALL_STATE(3828)] = 142, - [SMALL_STATE(3829)] = 213, - [SMALL_STATE(3830)] = 288, - [SMALL_STATE(3831)] = 365, - [SMALL_STATE(3832)] = 444, - [SMALL_STATE(3833)] = 521, - [SMALL_STATE(3834)] = 592, - [SMALL_STATE(3835)] = 681, - [SMALL_STATE(3836)] = 756, - [SMALL_STATE(3837)] = 831, - [SMALL_STATE(3838)] = 902, - [SMALL_STATE(3839)] = 973, - [SMALL_STATE(3840)] = 1050, - [SMALL_STATE(3841)] = 1121, - [SMALL_STATE(3842)] = 1192, - [SMALL_STATE(3843)] = 1267, - [SMALL_STATE(3844)] = 1344, - [SMALL_STATE(3845)] = 1415, - [SMALL_STATE(3846)] = 1486, - [SMALL_STATE(3847)] = 1557, - [SMALL_STATE(3848)] = 1628, - [SMALL_STATE(3849)] = 1699, - [SMALL_STATE(3850)] = 1770, - [SMALL_STATE(3851)] = 1841, - [SMALL_STATE(3852)] = 1912, - [SMALL_STATE(3853)] = 1983, - [SMALL_STATE(3854)] = 2054, - [SMALL_STATE(3855)] = 2125, - [SMALL_STATE(3856)] = 2202, - [SMALL_STATE(3857)] = 2273, - [SMALL_STATE(3858)] = 2344, - [SMALL_STATE(3859)] = 2423, - [SMALL_STATE(3860)] = 2494, - [SMALL_STATE(3861)] = 2573, - [SMALL_STATE(3862)] = 2644, - [SMALL_STATE(3863)] = 2721, - [SMALL_STATE(3864)] = 2798, - [SMALL_STATE(3865)] = 2869, - [SMALL_STATE(3866)] = 2946, - [SMALL_STATE(3867)] = 3017, - [SMALL_STATE(3868)] = 3088, - [SMALL_STATE(3869)] = 3159, - [SMALL_STATE(3870)] = 3230, - [SMALL_STATE(3871)] = 3311, - [SMALL_STATE(3872)] = 3382, - [SMALL_STATE(3873)] = 3453, - [SMALL_STATE(3874)] = 3530, - [SMALL_STATE(3875)] = 3601, - [SMALL_STATE(3876)] = 3672, - [SMALL_STATE(3877)] = 3743, - [SMALL_STATE(3878)] = 3814, - [SMALL_STATE(3879)] = 3885, - [SMALL_STATE(3880)] = 3964, - [SMALL_STATE(3881)] = 4047, - [SMALL_STATE(3882)] = 4118, - [SMALL_STATE(3883)] = 4189, - [SMALL_STATE(3884)] = 4272, - [SMALL_STATE(3885)] = 4347, - [SMALL_STATE(3886)] = 4418, - [SMALL_STATE(3887)] = 4489, - [SMALL_STATE(3888)] = 4560, - [SMALL_STATE(3889)] = 4631, - [SMALL_STATE(3890)] = 4702, - [SMALL_STATE(3891)] = 4773, - [SMALL_STATE(3892)] = 4856, - [SMALL_STATE(3893)] = 4927, - [SMALL_STATE(3894)] = 5004, - [SMALL_STATE(3895)] = 5075, - [SMALL_STATE(3896)] = 5158, - [SMALL_STATE(3897)] = 5241, - [SMALL_STATE(3898)] = 5320, - [SMALL_STATE(3899)] = 5391, - [SMALL_STATE(3900)] = 5462, - [SMALL_STATE(3901)] = 5533, - [SMALL_STATE(3902)] = 5608, - [SMALL_STATE(3903)] = 5679, - [SMALL_STATE(3904)] = 5750, - [SMALL_STATE(3905)] = 5833, - [SMALL_STATE(3906)] = 5908, - [SMALL_STATE(3907)] = 5979, - [SMALL_STATE(3908)] = 6050, - [SMALL_STATE(3909)] = 6121, - [SMALL_STATE(3910)] = 6210, - [SMALL_STATE(3911)] = 6281, - [SMALL_STATE(3912)] = 6352, - [SMALL_STATE(3913)] = 6423, - [SMALL_STATE(3914)] = 6494, - [SMALL_STATE(3915)] = 6577, - [SMALL_STATE(3916)] = 6648, - [SMALL_STATE(3917)] = 6723, - [SMALL_STATE(3918)] = 6798, - [SMALL_STATE(3919)] = 6881, - [SMALL_STATE(3920)] = 6964, - [SMALL_STATE(3921)] = 7047, - [SMALL_STATE(3922)] = 7130, - [SMALL_STATE(3923)] = 7213, - [SMALL_STATE(3924)] = 7296, - [SMALL_STATE(3925)] = 7379, - [SMALL_STATE(3926)] = 7462, - [SMALL_STATE(3927)] = 7533, - [SMALL_STATE(3928)] = 7608, - [SMALL_STATE(3929)] = 7679, - [SMALL_STATE(3930)] = 7762, - [SMALL_STATE(3931)] = 7833, - [SMALL_STATE(3932)] = 7904, - [SMALL_STATE(3933)] = 7993, - [SMALL_STATE(3934)] = 8064, - [SMALL_STATE(3935)] = 8141, - [SMALL_STATE(3936)] = 8218, - [SMALL_STATE(3937)] = 8293, - [SMALL_STATE(3938)] = 8364, - [SMALL_STATE(3939)] = 8439, - [SMALL_STATE(3940)] = 8510, - [SMALL_STATE(3941)] = 8581, - [SMALL_STATE(3942)] = 8652, - [SMALL_STATE(3943)] = 8727, - [SMALL_STATE(3944)] = 8798, - [SMALL_STATE(3945)] = 8869, - [SMALL_STATE(3946)] = 8940, - [SMALL_STATE(3947)] = 9017, - [SMALL_STATE(3948)] = 9088, - [SMALL_STATE(3949)] = 9159, - [SMALL_STATE(3950)] = 9230, - [SMALL_STATE(3951)] = 9301, - [SMALL_STATE(3952)] = 9372, - [SMALL_STATE(3953)] = 9443, - [SMALL_STATE(3954)] = 9514, - [SMALL_STATE(3955)] = 9591, - [SMALL_STATE(3956)] = 9661, - [SMALL_STATE(3957)] = 9759, - [SMALL_STATE(3958)] = 9829, - [SMALL_STATE(3959)] = 9899, - [SMALL_STATE(3960)] = 9997, - [SMALL_STATE(3961)] = 10073, - [SMALL_STATE(3962)] = 10153, - [SMALL_STATE(3963)] = 10251, - [SMALL_STATE(3964)] = 10327, - [SMALL_STATE(3965)] = 10397, - [SMALL_STATE(3966)] = 10477, - [SMALL_STATE(3967)] = 10565, - [SMALL_STATE(3968)] = 10637, - [SMALL_STATE(3969)] = 10715, - [SMALL_STATE(3970)] = 10813, - [SMALL_STATE(3971)] = 10893, - [SMALL_STATE(3972)] = 10969, - [SMALL_STATE(3973)] = 11039, - [SMALL_STATE(3974)] = 11137, - [SMALL_STATE(3975)] = 11215, - [SMALL_STATE(3976)] = 11285, - [SMALL_STATE(3977)] = 11397, - [SMALL_STATE(3978)] = 11467, - [SMALL_STATE(3979)] = 11537, - [SMALL_STATE(3980)] = 11625, - [SMALL_STATE(3981)] = 11737, - [SMALL_STATE(3982)] = 11835, - [SMALL_STATE(3983)] = 11905, - [SMALL_STATE(3984)] = 11981, - [SMALL_STATE(3985)] = 12061, - [SMALL_STATE(3986)] = 12159, - [SMALL_STATE(3987)] = 12257, - [SMALL_STATE(3988)] = 12333, - [SMALL_STATE(3989)] = 12403, - [SMALL_STATE(3990)] = 12473, - [SMALL_STATE(3991)] = 12543, - [SMALL_STATE(3992)] = 12613, - [SMALL_STATE(3993)] = 12683, - [SMALL_STATE(3994)] = 12753, - [SMALL_STATE(3995)] = 12823, - [SMALL_STATE(3996)] = 12893, - [SMALL_STATE(3997)] = 12963, - [SMALL_STATE(3998)] = 13045, - [SMALL_STATE(3999)] = 13127, - [SMALL_STATE(4000)] = 13201, - [SMALL_STATE(4001)] = 13271, - [SMALL_STATE(4002)] = 13341, - [SMALL_STATE(4003)] = 13429, - [SMALL_STATE(4004)] = 13499, - [SMALL_STATE(4005)] = 13569, - [SMALL_STATE(4006)] = 13681, - [SMALL_STATE(4007)] = 13769, - [SMALL_STATE(4008)] = 13839, - [SMALL_STATE(4009)] = 13913, - [SMALL_STATE(4010)] = 13983, - [SMALL_STATE(4011)] = 14057, - [SMALL_STATE(4012)] = 14127, - [SMALL_STATE(4013)] = 14201, - [SMALL_STATE(4014)] = 14271, - [SMALL_STATE(4015)] = 14341, - [SMALL_STATE(4016)] = 14415, - [SMALL_STATE(4017)] = 14485, - [SMALL_STATE(4018)] = 14573, - [SMALL_STATE(4019)] = 14643, - [SMALL_STATE(4020)] = 14717, - [SMALL_STATE(4021)] = 14787, - [SMALL_STATE(4022)] = 14861, - [SMALL_STATE(4023)] = 14959, - [SMALL_STATE(4024)] = 15057, - [SMALL_STATE(4025)] = 15145, - [SMALL_STATE(4026)] = 15215, - [SMALL_STATE(4027)] = 15285, - [SMALL_STATE(4028)] = 15355, - [SMALL_STATE(4029)] = 15453, - [SMALL_STATE(4030)] = 15539, - [SMALL_STATE(4031)] = 15613, - [SMALL_STATE(4032)] = 15701, - [SMALL_STATE(4033)] = 15789, - [SMALL_STATE(4034)] = 15887, - [SMALL_STATE(4035)] = 15999, - [SMALL_STATE(4036)] = 16073, - [SMALL_STATE(4037)] = 16147, - [SMALL_STATE(4038)] = 16221, - [SMALL_STATE(4039)] = 16295, - [SMALL_STATE(4040)] = 16369, - [SMALL_STATE(4041)] = 16481, - [SMALL_STATE(4042)] = 16593, - [SMALL_STATE(4043)] = 16698, - [SMALL_STATE(4044)] = 16775, - [SMALL_STATE(4045)] = 16880, - [SMALL_STATE(4046)] = 16951, - [SMALL_STATE(4047)] = 17046, - [SMALL_STATE(4048)] = 17141, - [SMALL_STATE(4049)] = 17210, - [SMALL_STATE(4050)] = 17305, - [SMALL_STATE(4051)] = 17382, - [SMALL_STATE(4052)] = 17465, - [SMALL_STATE(4053)] = 17548, - [SMALL_STATE(4054)] = 17631, - [SMALL_STATE(4055)] = 17700, - [SMALL_STATE(4056)] = 17769, - [SMALL_STATE(4057)] = 17838, - [SMALL_STATE(4058)] = 17907, - [SMALL_STATE(4059)] = 17988, - [SMALL_STATE(4060)] = 18057, - [SMALL_STATE(4061)] = 18126, - [SMALL_STATE(4062)] = 18205, - [SMALL_STATE(4063)] = 18274, - [SMALL_STATE(4064)] = 18343, - [SMALL_STATE(4065)] = 18412, - [SMALL_STATE(4066)] = 18485, - [SMALL_STATE(4067)] = 18554, - [SMALL_STATE(4068)] = 18659, - [SMALL_STATE(4069)] = 18728, - [SMALL_STATE(4070)] = 18833, - [SMALL_STATE(4071)] = 18902, - [SMALL_STATE(4072)] = 18971, - [SMALL_STATE(4073)] = 19040, - [SMALL_STATE(4074)] = 19109, - [SMALL_STATE(4075)] = 19214, - [SMALL_STATE(4076)] = 19297, - [SMALL_STATE(4077)] = 19380, - [SMALL_STATE(4078)] = 19449, - [SMALL_STATE(4079)] = 19518, - [SMALL_STATE(4080)] = 19587, - [SMALL_STATE(4081)] = 19656, - [SMALL_STATE(4082)] = 19725, - [SMALL_STATE(4083)] = 19794, - [SMALL_STATE(4084)] = 19899, - [SMALL_STATE(4085)] = 19968, - [SMALL_STATE(4086)] = 20073, - [SMALL_STATE(4087)] = 20172, - [SMALL_STATE(4088)] = 20277, - [SMALL_STATE(4089)] = 20354, - [SMALL_STATE(4090)] = 20423, - [SMALL_STATE(4091)] = 20510, - [SMALL_STATE(4092)] = 20609, - [SMALL_STATE(4093)] = 20678, - [SMALL_STATE(4094)] = 20747, - [SMALL_STATE(4095)] = 20852, - [SMALL_STATE(4096)] = 20921, - [SMALL_STATE(4097)] = 20996, - [SMALL_STATE(4098)] = 21071, - [SMALL_STATE(4099)] = 21140, - [SMALL_STATE(4100)] = 21239, - [SMALL_STATE(4101)] = 21308, - [SMALL_STATE(4102)] = 21377, - [SMALL_STATE(4103)] = 21472, - [SMALL_STATE(4104)] = 21567, - [SMALL_STATE(4105)] = 21636, - [SMALL_STATE(4106)] = 21713, - [SMALL_STATE(4107)] = 21782, - [SMALL_STATE(4108)] = 21851, - [SMALL_STATE(4109)] = 21920, - [SMALL_STATE(4110)] = 21997, - [SMALL_STATE(4111)] = 22084, - [SMALL_STATE(4112)] = 22153, - [SMALL_STATE(4113)] = 22248, - [SMALL_STATE(4114)] = 22317, - [SMALL_STATE(4115)] = 22386, - [SMALL_STATE(4116)] = 22455, - [SMALL_STATE(4117)] = 22524, - [SMALL_STATE(4118)] = 22593, - [SMALL_STATE(4119)] = 22668, - [SMALL_STATE(4120)] = 22737, - [SMALL_STATE(4121)] = 22814, - [SMALL_STATE(4122)] = 22883, - [SMALL_STATE(4123)] = 22952, - [SMALL_STATE(4124)] = 23023, - [SMALL_STATE(4125)] = 23102, - [SMALL_STATE(4126)] = 23171, - [SMALL_STATE(4127)] = 23294, - [SMALL_STATE(4128)] = 23365, - [SMALL_STATE(4129)] = 23434, - [SMALL_STATE(4130)] = 23557, - [SMALL_STATE(4131)] = 23626, - [SMALL_STATE(4132)] = 23695, - [SMALL_STATE(4133)] = 23764, - [SMALL_STATE(4134)] = 23839, - [SMALL_STATE(4135)] = 23908, - [SMALL_STATE(4136)] = 24007, - [SMALL_STATE(4137)] = 24090, - [SMALL_STATE(4138)] = 24159, - [SMALL_STATE(4139)] = 24264, - [SMALL_STATE(4140)] = 24363, - [SMALL_STATE(4141)] = 24440, - [SMALL_STATE(4142)] = 24509, - [SMALL_STATE(4143)] = 24578, - [SMALL_STATE(4144)] = 24677, - [SMALL_STATE(4145)] = 24782, - [SMALL_STATE(4146)] = 24851, - [SMALL_STATE(4147)] = 24956, - [SMALL_STATE(4148)] = 25025, - [SMALL_STATE(4149)] = 25104, - [SMALL_STATE(4150)] = 25180, - [SMALL_STATE(4151)] = 25248, - [SMALL_STATE(4152)] = 25368, - [SMALL_STATE(4153)] = 25488, - [SMALL_STATE(4154)] = 25608, - [SMALL_STATE(4155)] = 25682, - [SMALL_STATE(4156)] = 25758, - [SMALL_STATE(4157)] = 25826, - [SMALL_STATE(4158)] = 25902, - [SMALL_STATE(4159)] = 25970, - [SMALL_STATE(4160)] = 26046, - [SMALL_STATE(4161)] = 26122, - [SMALL_STATE(4162)] = 26200, - [SMALL_STATE(4163)] = 26276, - [SMALL_STATE(4164)] = 26352, - [SMALL_STATE(4165)] = 26420, - [SMALL_STATE(4166)] = 26496, - [SMALL_STATE(4167)] = 26572, - [SMALL_STATE(4168)] = 26640, - [SMALL_STATE(4169)] = 26708, - [SMALL_STATE(4170)] = 26776, - [SMALL_STATE(4171)] = 26896, - [SMALL_STATE(4172)] = 26964, - [SMALL_STATE(4173)] = 27084, - [SMALL_STATE(4174)] = 27152, - [SMALL_STATE(4175)] = 27220, - [SMALL_STATE(4176)] = 27288, - [SMALL_STATE(4177)] = 27408, - [SMALL_STATE(4178)] = 27476, - [SMALL_STATE(4179)] = 27554, - [SMALL_STATE(4180)] = 27632, - [SMALL_STATE(4181)] = 27718, - [SMALL_STATE(4182)] = 27838, - [SMALL_STATE(4183)] = 27958, - [SMALL_STATE(4184)] = 28026, - [SMALL_STATE(4185)] = 28146, - [SMALL_STATE(4186)] = 28266, - [SMALL_STATE(4187)] = 28338, - [SMALL_STATE(4188)] = 28406, - [SMALL_STATE(4189)] = 28526, - [SMALL_STATE(4190)] = 28594, - [SMALL_STATE(4191)] = 28714, - [SMALL_STATE(4192)] = 28782, - [SMALL_STATE(4193)] = 28850, - [SMALL_STATE(4194)] = 28918, - [SMALL_STATE(4195)] = 29038, - [SMALL_STATE(4196)] = 29158, - [SMALL_STATE(4197)] = 29226, - [SMALL_STATE(4198)] = 29294, - [SMALL_STATE(4199)] = 29362, - [SMALL_STATE(4200)] = 29482, - [SMALL_STATE(4201)] = 29566, - [SMALL_STATE(4202)] = 29686, - [SMALL_STATE(4203)] = 29806, - [SMALL_STATE(4204)] = 29876, - [SMALL_STATE(4205)] = 29950, - [SMALL_STATE(4206)] = 30026, - [SMALL_STATE(4207)] = 30098, - [SMALL_STATE(4208)] = 30218, - [SMALL_STATE(4209)] = 30338, - [SMALL_STATE(4210)] = 30412, - [SMALL_STATE(4211)] = 30532, - [SMALL_STATE(4212)] = 30600, - [SMALL_STATE(4213)] = 30720, - [SMALL_STATE(4214)] = 30792, - [SMALL_STATE(4215)] = 30860, - [SMALL_STATE(4216)] = 30930, - [SMALL_STATE(4217)] = 31002, - [SMALL_STATE(4218)] = 31072, - [SMALL_STATE(4219)] = 31140, - [SMALL_STATE(4220)] = 31208, - [SMALL_STATE(4221)] = 31280, - [SMALL_STATE(4222)] = 31354, - [SMALL_STATE(4223)] = 31422, - [SMALL_STATE(4224)] = 31542, - [SMALL_STATE(4225)] = 31662, - [SMALL_STATE(4226)] = 31734, - [SMALL_STATE(4227)] = 31802, - [SMALL_STATE(4228)] = 31878, - [SMALL_STATE(4229)] = 31950, - [SMALL_STATE(4230)] = 32018, - [SMALL_STATE(4231)] = 32098, - [SMALL_STATE(4232)] = 32178, - [SMALL_STATE(4233)] = 32258, - [SMALL_STATE(4234)] = 32338, - [SMALL_STATE(4235)] = 32418, - [SMALL_STATE(4236)] = 32498, - [SMALL_STATE(4237)] = 32578, - [SMALL_STATE(4238)] = 32658, - [SMALL_STATE(4239)] = 32734, - [SMALL_STATE(4240)] = 32810, - [SMALL_STATE(4241)] = 32886, - [SMALL_STATE(4242)] = 32962, - [SMALL_STATE(4243)] = 33038, - [SMALL_STATE(4244)] = 33114, - [SMALL_STATE(4245)] = 33190, - [SMALL_STATE(4246)] = 33266, - [SMALL_STATE(4247)] = 33340, - [SMALL_STATE(4248)] = 33412, - [SMALL_STATE(4249)] = 33484, - [SMALL_STATE(4250)] = 33604, - [SMALL_STATE(4251)] = 33724, - [SMALL_STATE(4252)] = 33802, - [SMALL_STATE(4253)] = 33876, - [SMALL_STATE(4254)] = 33948, - [SMALL_STATE(4255)] = 34016, - [SMALL_STATE(4256)] = 34136, - [SMALL_STATE(4257)] = 34256, - [SMALL_STATE(4258)] = 34326, - [SMALL_STATE(4259)] = 34446, - [SMALL_STATE(4260)] = 34566, - [SMALL_STATE(4261)] = 34634, - [SMALL_STATE(4262)] = 34754, - [SMALL_STATE(4263)] = 34828, - [SMALL_STATE(4264)] = 34902, - [SMALL_STATE(4265)] = 34978, - [SMALL_STATE(4266)] = 35050, - [SMALL_STATE(4267)] = 35122, - [SMALL_STATE(4268)] = 35190, - [SMALL_STATE(4269)] = 35310, - [SMALL_STATE(4270)] = 35386, - [SMALL_STATE(4271)] = 35458, - [SMALL_STATE(4272)] = 35578, - [SMALL_STATE(4273)] = 35652, - [SMALL_STATE(4274)] = 35719, - [SMALL_STATE(4275)] = 35786, - [SMALL_STATE(4276)] = 35871, - [SMALL_STATE(4277)] = 35938, - [SMALL_STATE(4278)] = 36005, - [SMALL_STATE(4279)] = 36072, - [SMALL_STATE(4280)] = 36147, - [SMALL_STATE(4281)] = 36232, - [SMALL_STATE(4282)] = 36299, - [SMALL_STATE(4283)] = 36366, - [SMALL_STATE(4284)] = 36433, - [SMALL_STATE(4285)] = 36500, - [SMALL_STATE(4286)] = 36567, - [SMALL_STATE(4287)] = 36650, - [SMALL_STATE(4288)] = 36719, - [SMALL_STATE(4289)] = 36786, - [SMALL_STATE(4290)] = 36853, - [SMALL_STATE(4291)] = 36920, - [SMALL_STATE(4292)] = 36997, - [SMALL_STATE(4293)] = 37076, - [SMALL_STATE(4294)] = 37143, - [SMALL_STATE(4295)] = 37210, - [SMALL_STATE(4296)] = 37289, - [SMALL_STATE(4297)] = 37358, - [SMALL_STATE(4298)] = 37437, - [SMALL_STATE(4299)] = 37516, - [SMALL_STATE(4300)] = 37595, - [SMALL_STATE(4301)] = 37674, - [SMALL_STATE(4302)] = 37753, - [SMALL_STATE(4303)] = 37820, - [SMALL_STATE(4304)] = 37899, - [SMALL_STATE(4305)] = 37966, - [SMALL_STATE(4306)] = 38033, - [SMALL_STATE(4307)] = 38112, - [SMALL_STATE(4308)] = 38179, - [SMALL_STATE(4309)] = 38250, - [SMALL_STATE(4310)] = 38317, - [SMALL_STATE(4311)] = 38384, - [SMALL_STATE(4312)] = 38463, - [SMALL_STATE(4313)] = 38542, - [SMALL_STATE(4314)] = 38609, - [SMALL_STATE(4315)] = 38678, - [SMALL_STATE(4316)] = 38745, - [SMALL_STATE(4317)] = 38822, - [SMALL_STATE(4318)] = 38889, - [SMALL_STATE(4319)] = 38956, - [SMALL_STATE(4320)] = 39033, - [SMALL_STATE(4321)] = 39110, - [SMALL_STATE(4322)] = 39177, - [SMALL_STATE(4323)] = 39244, - [SMALL_STATE(4324)] = 39311, - [SMALL_STATE(4325)] = 39383, - [SMALL_STATE(4326)] = 39449, - [SMALL_STATE(4327)] = 39527, - [SMALL_STATE(4328)] = 39607, - [SMALL_STATE(4329)] = 39679, - [SMALL_STATE(4330)] = 39753, - [SMALL_STATE(4331)] = 39873, - [SMALL_STATE(4332)] = 39951, - [SMALL_STATE(4333)] = 40017, - [SMALL_STATE(4334)] = 40083, - [SMALL_STATE(4335)] = 40203, - [SMALL_STATE(4336)] = 40275, - [SMALL_STATE(4337)] = 40361, - [SMALL_STATE(4338)] = 40427, - [SMALL_STATE(4339)] = 40493, - [SMALL_STATE(4340)] = 40567, - [SMALL_STATE(4341)] = 40639, - [SMALL_STATE(4342)] = 40713, - [SMALL_STATE(4343)] = 40785, - [SMALL_STATE(4344)] = 40857, - [SMALL_STATE(4345)] = 40929, - [SMALL_STATE(4346)] = 41003, - [SMALL_STATE(4347)] = 41081, - [SMALL_STATE(4348)] = 41155, - [SMALL_STATE(4349)] = 41239, - [SMALL_STATE(4350)] = 41313, - [SMALL_STATE(4351)] = 41385, - [SMALL_STATE(4352)] = 41457, - [SMALL_STATE(4353)] = 41531, - [SMALL_STATE(4354)] = 41609, - [SMALL_STATE(4355)] = 41687, - [SMALL_STATE(4356)] = 41765, - [SMALL_STATE(4357)] = 41843, - [SMALL_STATE(4358)] = 41921, - [SMALL_STATE(4359)] = 41993, - [SMALL_STATE(4360)] = 42065, - [SMALL_STATE(4361)] = 42131, - [SMALL_STATE(4362)] = 42209, - [SMALL_STATE(4363)] = 42275, - [SMALL_STATE(4364)] = 42353, - [SMALL_STATE(4365)] = 42431, - [SMALL_STATE(4366)] = 42505, - [SMALL_STATE(4367)] = 42583, - [SMALL_STATE(4368)] = 42661, - [SMALL_STATE(4369)] = 42741, - [SMALL_STATE(4370)] = 42819, - [SMALL_STATE(4371)] = 42891, - [SMALL_STATE(4372)] = 42967, - [SMALL_STATE(4373)] = 43041, - [SMALL_STATE(4374)] = 43109, - [SMALL_STATE(4375)] = 43193, - [SMALL_STATE(4376)] = 43271, - [SMALL_STATE(4377)] = 43343, - [SMALL_STATE(4378)] = 43415, - [SMALL_STATE(4379)] = 43481, - [SMALL_STATE(4380)] = 43553, - [SMALL_STATE(4381)] = 43625, - [SMALL_STATE(4382)] = 43701, - [SMALL_STATE(4383)] = 43773, - [SMALL_STATE(4384)] = 43847, - [SMALL_STATE(4385)] = 43919, - [SMALL_STATE(4386)] = 43991, - [SMALL_STATE(4387)] = 44063, - [SMALL_STATE(4388)] = 44145, - [SMALL_STATE(4389)] = 44217, - [SMALL_STATE(4390)] = 44289, - [SMALL_STATE(4391)] = 44361, - [SMALL_STATE(4392)] = 44433, - [SMALL_STATE(4393)] = 44505, - [SMALL_STATE(4394)] = 44571, - [SMALL_STATE(4395)] = 44649, - [SMALL_STATE(4396)] = 44731, - [SMALL_STATE(4397)] = 44815, - [SMALL_STATE(4398)] = 44889, - [SMALL_STATE(4399)] = 44954, - [SMALL_STATE(4400)] = 45039, - [SMALL_STATE(4401)] = 45148, - [SMALL_STATE(4402)] = 45261, - [SMALL_STATE(4403)] = 45366, - [SMALL_STATE(4404)] = 45467, - [SMALL_STATE(4405)] = 45566, - [SMALL_STATE(4406)] = 45631, - [SMALL_STATE(4407)] = 45728, - [SMALL_STATE(4408)] = 45823, - [SMALL_STATE(4409)] = 45888, - [SMALL_STATE(4410)] = 45953, - [SMALL_STATE(4411)] = 46018, - [SMALL_STATE(4412)] = 46109, - [SMALL_STATE(4413)] = 46196, - [SMALL_STATE(4414)] = 46305, - [SMALL_STATE(4415)] = 46418, - [SMALL_STATE(4416)] = 46501, - [SMALL_STATE(4417)] = 46566, - [SMALL_STATE(4418)] = 46631, - [SMALL_STATE(4419)] = 46714, - [SMALL_STATE(4420)] = 46823, - [SMALL_STATE(4421)] = 46888, - [SMALL_STATE(4422)] = 47001, - [SMALL_STATE(4423)] = 47074, - [SMALL_STATE(4424)] = 47139, - [SMALL_STATE(4425)] = 47204, - [SMALL_STATE(4426)] = 47277, - [SMALL_STATE(4427)] = 47342, - [SMALL_STATE(4428)] = 47407, - [SMALL_STATE(4429)] = 47492, - [SMALL_STATE(4430)] = 47557, - [SMALL_STATE(4431)] = 47622, - [SMALL_STATE(4432)] = 47695, - [SMALL_STATE(4433)] = 47768, - [SMALL_STATE(4434)] = 47833, - [SMALL_STATE(4435)] = 47916, - [SMALL_STATE(4436)] = 47999, - [SMALL_STATE(4437)] = 48082, - [SMALL_STATE(4438)] = 48155, - [SMALL_STATE(4439)] = 48228, - [SMALL_STATE(4440)] = 48313, - [SMALL_STATE(4441)] = 48386, - [SMALL_STATE(4442)] = 48453, - [SMALL_STATE(4443)] = 48538, - [SMALL_STATE(4444)] = 48611, - [SMALL_STATE(4445)] = 48690, - [SMALL_STATE(4446)] = 48755, - [SMALL_STATE(4447)] = 48820, - [SMALL_STATE(4448)] = 48893, - [SMALL_STATE(4449)] = 48958, - [SMALL_STATE(4450)] = 49041, - [SMALL_STATE(4451)] = 49124, - [SMALL_STATE(4452)] = 49189, - [SMALL_STATE(4453)] = 49254, - [SMALL_STATE(4454)] = 49323, - [SMALL_STATE(4455)] = 49388, - [SMALL_STATE(4456)] = 49453, - [SMALL_STATE(4457)] = 49518, - [SMALL_STATE(4458)] = 49583, - [SMALL_STATE(4459)] = 49648, - [SMALL_STATE(4460)] = 49713, - [SMALL_STATE(4461)] = 49778, - [SMALL_STATE(4462)] = 49843, - [SMALL_STATE(4463)] = 49908, - [SMALL_STATE(4464)] = 49973, - [SMALL_STATE(4465)] = 50038, - [SMALL_STATE(4466)] = 50103, - [SMALL_STATE(4467)] = 50168, - [SMALL_STATE(4468)] = 50241, - [SMALL_STATE(4469)] = 50314, - [SMALL_STATE(4470)] = 50379, - [SMALL_STATE(4471)] = 50452, - [SMALL_STATE(4472)] = 50525, - [SMALL_STATE(4473)] = 50598, - [SMALL_STATE(4474)] = 50681, - [SMALL_STATE(4475)] = 50764, - [SMALL_STATE(4476)] = 50837, - [SMALL_STATE(4477)] = 50910, - [SMALL_STATE(4478)] = 50983, - [SMALL_STATE(4479)] = 51056, - [SMALL_STATE(4480)] = 51121, - [SMALL_STATE(4481)] = 51192, - [SMALL_STATE(4482)] = 51265, - [SMALL_STATE(4483)] = 51338, - [SMALL_STATE(4484)] = 51411, - [SMALL_STATE(4485)] = 51484, - [SMALL_STATE(4486)] = 51557, - [SMALL_STATE(4487)] = 51622, - [SMALL_STATE(4488)] = 51701, - [SMALL_STATE(4489)] = 51770, - [SMALL_STATE(4490)] = 51843, - [SMALL_STATE(4491)] = 51912, - [SMALL_STATE(4492)] = 52021, - [SMALL_STATE(4493)] = 52130, - [SMALL_STATE(4494)] = 52239, - [SMALL_STATE(4495)] = 52304, - [SMALL_STATE(4496)] = 52387, - [SMALL_STATE(4497)] = 52452, - [SMALL_STATE(4498)] = 52517, - [SMALL_STATE(4499)] = 52598, - [SMALL_STATE(4500)] = 52681, - [SMALL_STATE(4501)] = 52766, - [SMALL_STATE(4502)] = 52849, - [SMALL_STATE(4503)] = 52934, - [SMALL_STATE(4504)] = 53017, - [SMALL_STATE(4505)] = 53088, - [SMALL_STATE(4506)] = 53167, - [SMALL_STATE(4507)] = 53232, - [SMALL_STATE(4508)] = 53297, - [SMALL_STATE(4509)] = 53362, - [SMALL_STATE(4510)] = 53435, - [SMALL_STATE(4511)] = 53500, - [SMALL_STATE(4512)] = 53579, - [SMALL_STATE(4513)] = 53648, - [SMALL_STATE(4514)] = 53713, - [SMALL_STATE(4515)] = 53786, - [SMALL_STATE(4516)] = 53859, - [SMALL_STATE(4517)] = 53932, - [SMALL_STATE(4518)] = 53997, - [SMALL_STATE(4519)] = 54070, - [SMALL_STATE(4520)] = 54143, - [SMALL_STATE(4521)] = 54216, - [SMALL_STATE(4522)] = 54289, - [SMALL_STATE(4523)] = 54362, - [SMALL_STATE(4524)] = 54435, - [SMALL_STATE(4525)] = 54508, - [SMALL_STATE(4526)] = 54581, - [SMALL_STATE(4527)] = 54646, - [SMALL_STATE(4528)] = 54731, - [SMALL_STATE(4529)] = 54814, - [SMALL_STATE(4530)] = 54879, - [SMALL_STATE(4531)] = 54944, - [SMALL_STATE(4532)] = 55009, - [SMALL_STATE(4533)] = 55082, - [SMALL_STATE(4534)] = 55165, - [SMALL_STATE(4535)] = 55238, - [SMALL_STATE(4536)] = 55311, - [SMALL_STATE(4537)] = 55384, - [SMALL_STATE(4538)] = 55457, - [SMALL_STATE(4539)] = 55530, - [SMALL_STATE(4540)] = 55595, - [SMALL_STATE(4541)] = 55660, - [SMALL_STATE(4542)] = 55733, - [SMALL_STATE(4543)] = 55806, - [SMALL_STATE(4544)] = 55871, - [SMALL_STATE(4545)] = 55936, - [SMALL_STATE(4546)] = 56021, - [SMALL_STATE(4547)] = 56094, - [SMALL_STATE(4548)] = 56167, - [SMALL_STATE(4549)] = 56240, - [SMALL_STATE(4550)] = 56313, - [SMALL_STATE(4551)] = 56407, - [SMALL_STATE(4552)] = 56471, - [SMALL_STATE(4553)] = 56543, - [SMALL_STATE(4554)] = 56615, - [SMALL_STATE(4555)] = 56683, - [SMALL_STATE(4556)] = 56753, - [SMALL_STATE(4557)] = 56821, - [SMALL_STATE(4558)] = 56889, - [SMALL_STATE(4559)] = 56983, - [SMALL_STATE(4560)] = 57051, - [SMALL_STATE(4561)] = 57123, - [SMALL_STATE(4562)] = 57191, - [SMALL_STATE(4563)] = 57309, - [SMALL_STATE(4564)] = 57377, - [SMALL_STATE(4565)] = 57495, - [SMALL_STATE(4566)] = 57559, - [SMALL_STATE(4567)] = 57627, - [SMALL_STATE(4568)] = 57721, - [SMALL_STATE(4569)] = 57797, - [SMALL_STATE(4570)] = 57891, - [SMALL_STATE(4571)] = 57985, - [SMALL_STATE(4572)] = 58057, - [SMALL_STATE(4573)] = 58133, - [SMALL_STATE(4574)] = 58201, - [SMALL_STATE(4575)] = 58295, - [SMALL_STATE(4576)] = 58389, - [SMALL_STATE(4577)] = 58465, - [SMALL_STATE(4578)] = 58559, - [SMALL_STATE(4579)] = 58631, - [SMALL_STATE(4580)] = 58707, - [SMALL_STATE(4581)] = 58773, - [SMALL_STATE(4582)] = 58837, - [SMALL_STATE(4583)] = 58911, - [SMALL_STATE(4584)] = 59005, - [SMALL_STATE(4585)] = 59099, - [SMALL_STATE(4586)] = 59193, - [SMALL_STATE(4587)] = 59311, - [SMALL_STATE(4588)] = 59379, - [SMALL_STATE(4589)] = 59473, - [SMALL_STATE(4590)] = 59541, - [SMALL_STATE(4591)] = 59617, - [SMALL_STATE(4592)] = 59693, - [SMALL_STATE(4593)] = 59757, - [SMALL_STATE(4594)] = 59821, - [SMALL_STATE(4595)] = 59897, - [SMALL_STATE(4596)] = 59973, - [SMALL_STATE(4597)] = 60037, - [SMALL_STATE(4598)] = 60131, - [SMALL_STATE(4599)] = 60225, - [SMALL_STATE(4600)] = 60297, - [SMALL_STATE(4601)] = 60391, - [SMALL_STATE(4602)] = 60461, - [SMALL_STATE(4603)] = 60533, - [SMALL_STATE(4604)] = 60599, - [SMALL_STATE(4605)] = 60671, - [SMALL_STATE(4606)] = 60739, - [SMALL_STATE(4607)] = 60803, - [SMALL_STATE(4608)] = 60885, - [SMALL_STATE(4609)] = 60979, - [SMALL_STATE(4610)] = 61053, - [SMALL_STATE(4611)] = 61121, - [SMALL_STATE(4612)] = 61195, - [SMALL_STATE(4613)] = 61271, - [SMALL_STATE(4614)] = 61389, - [SMALL_STATE(4615)] = 61457, - [SMALL_STATE(4616)] = 61529, - [SMALL_STATE(4617)] = 61597, - [SMALL_STATE(4618)] = 61665, - [SMALL_STATE(4619)] = 61731, - [SMALL_STATE(4620)] = 61807, - [SMALL_STATE(4621)] = 61875, - [SMALL_STATE(4622)] = 61943, - [SMALL_STATE(4623)] = 62017, - [SMALL_STATE(4624)] = 62089, - [SMALL_STATE(4625)] = 62183, - [SMALL_STATE(4626)] = 62247, - [SMALL_STATE(4627)] = 62321, - [SMALL_STATE(4628)] = 62395, - [SMALL_STATE(4629)] = 62489, - [SMALL_STATE(4630)] = 62569, - [SMALL_STATE(4631)] = 62688, - [SMALL_STATE(4632)] = 62785, - [SMALL_STATE(4633)] = 62880, - [SMALL_STATE(4634)] = 62971, - [SMALL_STATE(4635)] = 63060, - [SMALL_STATE(4636)] = 63131, - [SMALL_STATE(4637)] = 63196, - [SMALL_STATE(4638)] = 63281, - [SMALL_STATE(4639)] = 63362, - [SMALL_STATE(4640)] = 63433, - [SMALL_STATE(4641)] = 63506, - [SMALL_STATE(4642)] = 63573, - [SMALL_STATE(4643)] = 63644, - [SMALL_STATE(4644)] = 63727, - [SMALL_STATE(4645)] = 63800, - [SMALL_STATE(4646)] = 63865, - [SMALL_STATE(4647)] = 63938, - [SMALL_STATE(4648)] = 64011, - [SMALL_STATE(4649)] = 64078, - [SMALL_STATE(4650)] = 64145, - [SMALL_STATE(4651)] = 64264, - [SMALL_STATE(4652)] = 64337, - [SMALL_STATE(4653)] = 64450, - [SMALL_STATE(4654)] = 64517, - [SMALL_STATE(4655)] = 64584, - [SMALL_STATE(4656)] = 64649, - [SMALL_STATE(4657)] = 64726, - [SMALL_STATE(4658)] = 64789, - [SMALL_STATE(4659)] = 64898, - [SMALL_STATE(4660)] = 64969, - [SMALL_STATE(4661)] = 65040, - [SMALL_STATE(4662)] = 65105, - [SMALL_STATE(4663)] = 65172, - [SMALL_STATE(4664)] = 65245, - [SMALL_STATE(4665)] = 65406, - [SMALL_STATE(4666)] = 65477, - [SMALL_STATE(4667)] = 65550, - [SMALL_STATE(4668)] = 65615, - [SMALL_STATE(4669)] = 65682, - [SMALL_STATE(4670)] = 65753, - [SMALL_STATE(4671)] = 65826, - [SMALL_STATE(4672)] = 65893, - [SMALL_STATE(4673)] = 66010, - [SMALL_STATE(4674)] = 66083, - [SMALL_STATE(4675)] = 66150, - [SMALL_STATE(4676)] = 66215, - [SMALL_STATE(4677)] = 66282, - [SMALL_STATE(4678)] = 66353, - [SMALL_STATE(4679)] = 66472, - [SMALL_STATE(4680)] = 66539, - [SMALL_STATE(4681)] = 66610, - [SMALL_STATE(4682)] = 66675, - [SMALL_STATE(4683)] = 66746, - [SMALL_STATE(4684)] = 66813, - [SMALL_STATE(4685)] = 66876, - [SMALL_STATE(4686)] = 66941, - [SMALL_STATE(4687)] = 67012, - [SMALL_STATE(4688)] = 67121, - [SMALL_STATE(4689)] = 67186, - [SMALL_STATE(4690)] = 67249, - [SMALL_STATE(4691)] = 67322, - [SMALL_STATE(4692)] = 67389, - [SMALL_STATE(4693)] = 67454, - [SMALL_STATE(4694)] = 67525, - [SMALL_STATE(4695)] = 67590, - [SMALL_STATE(4696)] = 67709, - [SMALL_STATE(4697)] = 67828, - [SMALL_STATE(4698)] = 67899, - [SMALL_STATE(4699)] = 67972, - [SMALL_STATE(4700)] = 68043, - [SMALL_STATE(4701)] = 68126, - [SMALL_STATE(4702)] = 68193, - [SMALL_STATE(4703)] = 68264, - [SMALL_STATE(4704)] = 68335, - [SMALL_STATE(4705)] = 68408, - [SMALL_STATE(4706)] = 68475, - [SMALL_STATE(4707)] = 68592, - [SMALL_STATE(4708)] = 68711, - [SMALL_STATE(4709)] = 68788, - [SMALL_STATE(4710)] = 68867, - [SMALL_STATE(4711)] = 68938, - [SMALL_STATE(4712)] = 69007, - [SMALL_STATE(4713)] = 69078, - [SMALL_STATE(4714)] = 69145, - [SMALL_STATE(4715)] = 69216, - [SMALL_STATE(4716)] = 69287, - [SMALL_STATE(4717)] = 69358, - [SMALL_STATE(4718)] = 69467, - [SMALL_STATE(4719)] = 69534, - [SMALL_STATE(4720)] = 69639, - [SMALL_STATE(4721)] = 69758, - [SMALL_STATE(4722)] = 69821, - [SMALL_STATE(4723)] = 69884, - [SMALL_STATE(4724)] = 70045, - [SMALL_STATE(4725)] = 70116, - [SMALL_STATE(4726)] = 70187, - [SMALL_STATE(4727)] = 70288, - [SMALL_STATE(4728)] = 70401, - [SMALL_STATE(4729)] = 70466, - [SMALL_STATE(4730)] = 70627, - [SMALL_STATE(4731)] = 70694, - [SMALL_STATE(4732)] = 70761, - [SMALL_STATE(4733)] = 70832, - [SMALL_STATE(4734)] = 70899, - [SMALL_STATE(4735)] = 70970, - [SMALL_STATE(4736)] = 71037, - [SMALL_STATE(4737)] = 71104, - [SMALL_STATE(4738)] = 71171, - [SMALL_STATE(4739)] = 71242, - [SMALL_STATE(4740)] = 71355, - [SMALL_STATE(4741)] = 71426, - [SMALL_STATE(4742)] = 71489, - [SMALL_STATE(4743)] = 71598, - [SMALL_STATE(4744)] = 71669, - [SMALL_STATE(4745)] = 71740, - [SMALL_STATE(4746)] = 71859, - [SMALL_STATE(4747)] = 71922, - [SMALL_STATE(4748)] = 71987, - [SMALL_STATE(4749)] = 72096, - [SMALL_STATE(4750)] = 72169, - [SMALL_STATE(4751)] = 72278, - [SMALL_STATE(4752)] = 72343, - [SMALL_STATE(4753)] = 72414, - [SMALL_STATE(4754)] = 72533, - [SMALL_STATE(4755)] = 72616, - [SMALL_STATE(4756)] = 72683, - [SMALL_STATE(4757)] = 72746, - [SMALL_STATE(4758)] = 72907, - [SMALL_STATE(4759)] = 72980, - [SMALL_STATE(4760)] = 73053, - [SMALL_STATE(4761)] = 73120, - [SMALL_STATE(4762)] = 73191, - [SMALL_STATE(4763)] = 73259, - [SMALL_STATE(4764)] = 73321, - [SMALL_STATE(4765)] = 73387, - [SMALL_STATE(4766)] = 73459, - [SMALL_STATE(4767)] = 73523, - [SMALL_STATE(4768)] = 73591, - [SMALL_STATE(4769)] = 73653, - [SMALL_STATE(4770)] = 73719, - [SMALL_STATE(4771)] = 73791, - [SMALL_STATE(4772)] = 73853, - [SMALL_STATE(4773)] = 73921, - [SMALL_STATE(4774)] = 73985, - [SMALL_STATE(4775)] = 74051, - [SMALL_STATE(4776)] = 74113, - [SMALL_STATE(4777)] = 74175, - [SMALL_STATE(4778)] = 74253, - [SMALL_STATE(4779)] = 74319, - [SMALL_STATE(4780)] = 74435, - [SMALL_STATE(4781)] = 74497, - [SMALL_STATE(4782)] = 74565, - [SMALL_STATE(4783)] = 74681, - [SMALL_STATE(4784)] = 74793, - [SMALL_STATE(4785)] = 74859, - [SMALL_STATE(4786)] = 74931, - [SMALL_STATE(4787)] = 74993, - [SMALL_STATE(4788)] = 75073, - [SMALL_STATE(4789)] = 75155, - [SMALL_STATE(4790)] = 75217, - [SMALL_STATE(4791)] = 75283, - [SMALL_STATE(4792)] = 75345, - [SMALL_STATE(4793)] = 75415, - [SMALL_STATE(4794)] = 75477, - [SMALL_STATE(4795)] = 75581, - [SMALL_STATE(4796)] = 75643, - [SMALL_STATE(4797)] = 75759, - [SMALL_STATE(4798)] = 75829, - [SMALL_STATE(4799)] = 75899, - [SMALL_STATE(4800)] = 75961, - [SMALL_STATE(4801)] = 76033, - [SMALL_STATE(4802)] = 76103, - [SMALL_STATE(4803)] = 76171, - [SMALL_STATE(4804)] = 76287, - [SMALL_STATE(4805)] = 76357, - [SMALL_STATE(4806)] = 76427, - [SMALL_STATE(4807)] = 76489, - [SMALL_STATE(4808)] = 76559, - [SMALL_STATE(4809)] = 76629, - [SMALL_STATE(4810)] = 76729, - [SMALL_STATE(4811)] = 76791, - [SMALL_STATE(4812)] = 76855, - [SMALL_STATE(4813)] = 76917, - [SMALL_STATE(4814)] = 76979, - [SMALL_STATE(4815)] = 77095, - [SMALL_STATE(4816)] = 77157, - [SMALL_STATE(4817)] = 77219, - [SMALL_STATE(4818)] = 77315, - [SMALL_STATE(4819)] = 77381, - [SMALL_STATE(4820)] = 77475, - [SMALL_STATE(4821)] = 77537, - [SMALL_STATE(4822)] = 77653, - [SMALL_STATE(4823)] = 77715, - [SMALL_STATE(4824)] = 77787, - [SMALL_STATE(4825)] = 77849, - [SMALL_STATE(4826)] = 77911, - [SMALL_STATE(4827)] = 78027, - [SMALL_STATE(4828)] = 78093, - [SMALL_STATE(4829)] = 78183, - [SMALL_STATE(4830)] = 78299, - [SMALL_STATE(4831)] = 78363, - [SMALL_STATE(4832)] = 78479, - [SMALL_STATE(4833)] = 78541, - [SMALL_STATE(4834)] = 78603, - [SMALL_STATE(4835)] = 78719, - [SMALL_STATE(4836)] = 78835, - [SMALL_STATE(4837)] = 78897, - [SMALL_STATE(4838)] = 78959, - [SMALL_STATE(4839)] = 79021, - [SMALL_STATE(4840)] = 79109, - [SMALL_STATE(4841)] = 79171, - [SMALL_STATE(4842)] = 79287, - [SMALL_STATE(4843)] = 79349, - [SMALL_STATE(4844)] = 79421, - [SMALL_STATE(4845)] = 79489, - [SMALL_STATE(4846)] = 79597, - [SMALL_STATE(4847)] = 79713, - [SMALL_STATE(4848)] = 79775, - [SMALL_STATE(4849)] = 79891, - [SMALL_STATE(4850)] = 79963, - [SMALL_STATE(4851)] = 80035, - [SMALL_STATE(4852)] = 80103, - [SMALL_STATE(4853)] = 80165, - [SMALL_STATE(4854)] = 80281, - [SMALL_STATE(4855)] = 80343, - [SMALL_STATE(4856)] = 80459, - [SMALL_STATE(4857)] = 80521, - [SMALL_STATE(4858)] = 80637, - [SMALL_STATE(4859)] = 80753, - [SMALL_STATE(4860)] = 80825, - [SMALL_STATE(4861)] = 80941, - [SMALL_STATE(4862)] = 81057, - [SMALL_STATE(4863)] = 81119, - [SMALL_STATE(4864)] = 81181, - [SMALL_STATE(4865)] = 81297, - [SMALL_STATE(4866)] = 81413, - [SMALL_STATE(4867)] = 81529, - [SMALL_STATE(4868)] = 81599, - [SMALL_STATE(4869)] = 81661, - [SMALL_STATE(4870)] = 81733, - [SMALL_STATE(4871)] = 81795, - [SMALL_STATE(4872)] = 81911, - [SMALL_STATE(4873)] = 81983, - [SMALL_STATE(4874)] = 82045, - [SMALL_STATE(4875)] = 82107, - [SMALL_STATE(4876)] = 82219, - [SMALL_STATE(4877)] = 82335, - [SMALL_STATE(4878)] = 82397, - [SMALL_STATE(4879)] = 82513, - [SMALL_STATE(4880)] = 82629, - [SMALL_STATE(4881)] = 82691, - [SMALL_STATE(4882)] = 82763, - [SMALL_STATE(4883)] = 82879, - [SMALL_STATE(4884)] = 82995, - [SMALL_STATE(4885)] = 83057, - [SMALL_STATE(4886)] = 83125, - [SMALL_STATE(4887)] = 83241, - [SMALL_STATE(4888)] = 83303, - [SMALL_STATE(4889)] = 83419, - [SMALL_STATE(4890)] = 83485, - [SMALL_STATE(4891)] = 83547, - [SMALL_STATE(4892)] = 83663, - [SMALL_STATE(4893)] = 83725, - [SMALL_STATE(4894)] = 83841, - [SMALL_STATE(4895)] = 83903, - [SMALL_STATE(4896)] = 83969, - [SMALL_STATE(4897)] = 84085, - [SMALL_STATE(4898)] = 84201, - [SMALL_STATE(4899)] = 84317, - [SMALL_STATE(4900)] = 84433, - [SMALL_STATE(4901)] = 84549, - [SMALL_STATE(4902)] = 84665, - [SMALL_STATE(4903)] = 84727, - [SMALL_STATE(4904)] = 84843, - [SMALL_STATE(4905)] = 84959, - [SMALL_STATE(4906)] = 85025, - [SMALL_STATE(4907)] = 85095, - [SMALL_STATE(4908)] = 85211, - [SMALL_STATE(4909)] = 85273, - [SMALL_STATE(4910)] = 85335, - [SMALL_STATE(4911)] = 85401, - [SMALL_STATE(4912)] = 85463, - [SMALL_STATE(4913)] = 85525, - [SMALL_STATE(4914)] = 85641, - [SMALL_STATE(4915)] = 85703, - [SMALL_STATE(4916)] = 85819, - [SMALL_STATE(4917)] = 85881, - [SMALL_STATE(4918)] = 85997, - [SMALL_STATE(4919)] = 86113, - [SMALL_STATE(4920)] = 86175, - [SMALL_STATE(4921)] = 86245, - [SMALL_STATE(4922)] = 86361, - [SMALL_STATE(4923)] = 86477, - [SMALL_STATE(4924)] = 86593, - [SMALL_STATE(4925)] = 86709, - [SMALL_STATE(4926)] = 86825, - [SMALL_STATE(4927)] = 86899, - [SMALL_STATE(4928)] = 86961, - [SMALL_STATE(4929)] = 87077, - [SMALL_STATE(4930)] = 87139, - [SMALL_STATE(4931)] = 87255, - [SMALL_STATE(4932)] = 87327, - [SMALL_STATE(4933)] = 87389, - [SMALL_STATE(4934)] = 87461, - [SMALL_STATE(4935)] = 87523, - [SMALL_STATE(4936)] = 87585, - [SMALL_STATE(4937)] = 87651, - [SMALL_STATE(4938)] = 87713, - [SMALL_STATE(4939)] = 87785, - [SMALL_STATE(4940)] = 87901, - [SMALL_STATE(4941)] = 87963, - [SMALL_STATE(4942)] = 88079, - [SMALL_STATE(4943)] = 88195, - [SMALL_STATE(4944)] = 88267, - [SMALL_STATE(4945)] = 88383, - [SMALL_STATE(4946)] = 88499, - [SMALL_STATE(4947)] = 88561, - [SMALL_STATE(4948)] = 88677, - [SMALL_STATE(4949)] = 88739, - [SMALL_STATE(4950)] = 88855, - [SMALL_STATE(4951)] = 88971, - [SMALL_STATE(4952)] = 89033, - [SMALL_STATE(4953)] = 89149, - [SMALL_STATE(4954)] = 89217, - [SMALL_STATE(4955)] = 89333, - [SMALL_STATE(4956)] = 89405, - [SMALL_STATE(4957)] = 89521, - [SMALL_STATE(4958)] = 89637, - [SMALL_STATE(4959)] = 89753, - [SMALL_STATE(4960)] = 89869, - [SMALL_STATE(4961)] = 89985, - [SMALL_STATE(4962)] = 90047, - [SMALL_STATE(4963)] = 90113, - [SMALL_STATE(4964)] = 90185, - [SMALL_STATE(4965)] = 90301, - [SMALL_STATE(4966)] = 90363, - [SMALL_STATE(4967)] = 90479, - [SMALL_STATE(4968)] = 90541, - [SMALL_STATE(4969)] = 90603, - [SMALL_STATE(4970)] = 90665, - [SMALL_STATE(4971)] = 90727, - [SMALL_STATE(4972)] = 90843, - [SMALL_STATE(4973)] = 90905, - [SMALL_STATE(4974)] = 91013, - [SMALL_STATE(4975)] = 91081, - [SMALL_STATE(4976)] = 91153, - [SMALL_STATE(4977)] = 91269, - [SMALL_STATE(4978)] = 91331, - [SMALL_STATE(4979)] = 91393, - [SMALL_STATE(4980)] = 91455, - [SMALL_STATE(4981)] = 91517, - [SMALL_STATE(4982)] = 91579, - [SMALL_STATE(4983)] = 91649, - [SMALL_STATE(4984)] = 91711, - [SMALL_STATE(4985)] = 91773, - [SMALL_STATE(4986)] = 91835, - [SMALL_STATE(4987)] = 91897, - [SMALL_STATE(4988)] = 91959, - [SMALL_STATE(4989)] = 92033, - [SMALL_STATE(4990)] = 92103, - [SMALL_STATE(4991)] = 92219, - [SMALL_STATE(4992)] = 92281, - [SMALL_STATE(4993)] = 92397, - [SMALL_STATE(4994)] = 92459, - [SMALL_STATE(4995)] = 92575, - [SMALL_STATE(4996)] = 92647, - [SMALL_STATE(4997)] = 92755, - [SMALL_STATE(4998)] = 92827, - [SMALL_STATE(4999)] = 92889, - [SMALL_STATE(5000)] = 92951, - [SMALL_STATE(5001)] = 93013, - [SMALL_STATE(5002)] = 93121, - [SMALL_STATE(5003)] = 93229, - [SMALL_STATE(5004)] = 93291, - [SMALL_STATE(5005)] = 93357, - [SMALL_STATE(5006)] = 93473, - [SMALL_STATE(5007)] = 93535, - [SMALL_STATE(5008)] = 93651, - [SMALL_STATE(5009)] = 93767, - [SMALL_STATE(5010)] = 93883, - [SMALL_STATE(5011)] = 93999, - [SMALL_STATE(5012)] = 94115, - [SMALL_STATE(5013)] = 94231, - [SMALL_STATE(5014)] = 94347, - [SMALL_STATE(5015)] = 94463, - [SMALL_STATE(5016)] = 94579, - [SMALL_STATE(5017)] = 94695, - [SMALL_STATE(5018)] = 94811, - [SMALL_STATE(5019)] = 94919, - [SMALL_STATE(5020)] = 95035, - [SMALL_STATE(5021)] = 95097, - [SMALL_STATE(5022)] = 95167, - [SMALL_STATE(5023)] = 95239, - [SMALL_STATE(5024)] = 95355, - [SMALL_STATE(5025)] = 95427, - [SMALL_STATE(5026)] = 95539, - [SMALL_STATE(5027)] = 95601, - [SMALL_STATE(5028)] = 95663, - [SMALL_STATE(5029)] = 95747, - [SMALL_STATE(5030)] = 95808, - [SMALL_STATE(5031)] = 95869, - [SMALL_STATE(5032)] = 95936, - [SMALL_STATE(5033)] = 96049, - [SMALL_STATE(5034)] = 96118, - [SMALL_STATE(5035)] = 96179, - [SMALL_STATE(5036)] = 96240, - [SMALL_STATE(5037)] = 96305, - [SMALL_STATE(5038)] = 96370, - [SMALL_STATE(5039)] = 96435, - [SMALL_STATE(5040)] = 96500, - [SMALL_STATE(5041)] = 96561, - [SMALL_STATE(5042)] = 96626, - [SMALL_STATE(5043)] = 96695, - [SMALL_STATE(5044)] = 96760, - [SMALL_STATE(5045)] = 96827, - [SMALL_STATE(5046)] = 96896, - [SMALL_STATE(5047)] = 96957, - [SMALL_STATE(5048)] = 97018, - [SMALL_STATE(5049)] = 97097, - [SMALL_STATE(5050)] = 97158, - [SMALL_STATE(5051)] = 97227, - [SMALL_STATE(5052)] = 97296, - [SMALL_STATE(5053)] = 97357, - [SMALL_STATE(5054)] = 97418, - [SMALL_STATE(5055)] = 97479, - [SMALL_STATE(5056)] = 97544, - [SMALL_STATE(5057)] = 97605, - [SMALL_STATE(5058)] = 97666, - [SMALL_STATE(5059)] = 97727, - [SMALL_STATE(5060)] = 97826, - [SMALL_STATE(5061)] = 97925, - [SMALL_STATE(5062)] = 97986, - [SMALL_STATE(5063)] = 98099, - [SMALL_STATE(5064)] = 98160, - [SMALL_STATE(5065)] = 98229, - [SMALL_STATE(5066)] = 98290, - [SMALL_STATE(5067)] = 98351, - [SMALL_STATE(5068)] = 98416, - [SMALL_STATE(5069)] = 98481, - [SMALL_STATE(5070)] = 98542, - [SMALL_STATE(5071)] = 98603, - [SMALL_STATE(5072)] = 98664, - [SMALL_STATE(5073)] = 98745, - [SMALL_STATE(5074)] = 98810, - [SMALL_STATE(5075)] = 98871, - [SMALL_STATE(5076)] = 98932, - [SMALL_STATE(5077)] = 99039, - [SMALL_STATE(5078)] = 99108, - [SMALL_STATE(5079)] = 99169, - [SMALL_STATE(5080)] = 99230, - [SMALL_STATE(5081)] = 99299, - [SMALL_STATE(5082)] = 99364, - [SMALL_STATE(5083)] = 99429, - [SMALL_STATE(5084)] = 99490, - [SMALL_STATE(5085)] = 99551, - [SMALL_STATE(5086)] = 99612, - [SMALL_STATE(5087)] = 99677, - [SMALL_STATE(5088)] = 99790, - [SMALL_STATE(5089)] = 99851, - [SMALL_STATE(5090)] = 99958, - [SMALL_STATE(5091)] = 100019, - [SMALL_STATE(5092)] = 100080, - [SMALL_STATE(5093)] = 100141, - [SMALL_STATE(5094)] = 100214, - [SMALL_STATE(5095)] = 100291, - [SMALL_STATE(5096)] = 100366, - [SMALL_STATE(5097)] = 100469, - [SMALL_STATE(5098)] = 100568, - [SMALL_STATE(5099)] = 100663, - [SMALL_STATE(5100)] = 100756, - [SMALL_STATE(5101)] = 100845, - [SMALL_STATE(5102)] = 100932, - [SMALL_STATE(5103)] = 101015, - [SMALL_STATE(5104)] = 101080, - [SMALL_STATE(5105)] = 101159, - [SMALL_STATE(5106)] = 101228, - [SMALL_STATE(5107)] = 101289, - [SMALL_STATE(5108)] = 101370, - [SMALL_STATE(5109)] = 101439, - [SMALL_STATE(5110)] = 101506, - [SMALL_STATE(5111)] = 101567, - [SMALL_STATE(5112)] = 101628, - [SMALL_STATE(5113)] = 101693, - [SMALL_STATE(5114)] = 101754, - [SMALL_STATE(5115)] = 101815, - [SMALL_STATE(5116)] = 101876, - [SMALL_STATE(5117)] = 101941, - [SMALL_STATE(5118)] = 102016, - [SMALL_STATE(5119)] = 102129, - [SMALL_STATE(5120)] = 102236, - [SMALL_STATE(5121)] = 102301, - [SMALL_STATE(5122)] = 102362, - [SMALL_STATE(5123)] = 102423, - [SMALL_STATE(5124)] = 102484, - [SMALL_STATE(5125)] = 102545, - [SMALL_STATE(5126)] = 102606, - [SMALL_STATE(5127)] = 102667, - [SMALL_STATE(5128)] = 102728, - [SMALL_STATE(5129)] = 102789, - [SMALL_STATE(5130)] = 102850, - [SMALL_STATE(5131)] = 102913, - [SMALL_STATE(5132)] = 102980, - [SMALL_STATE(5133)] = 103041, - [SMALL_STATE(5134)] = 103154, - [SMALL_STATE(5135)] = 103223, - [SMALL_STATE(5136)] = 103286, - [SMALL_STATE(5137)] = 103397, - [SMALL_STATE(5138)] = 103458, - [SMALL_STATE(5139)] = 103527, - [SMALL_STATE(5140)] = 103588, - [SMALL_STATE(5141)] = 103651, - [SMALL_STATE(5142)] = 103712, - [SMALL_STATE(5143)] = 103773, - [SMALL_STATE(5144)] = 103834, - [SMALL_STATE(5145)] = 103947, - [SMALL_STATE(5146)] = 104008, - [SMALL_STATE(5147)] = 104069, - [SMALL_STATE(5148)] = 104130, - [SMALL_STATE(5149)] = 104195, - [SMALL_STATE(5150)] = 104260, - [SMALL_STATE(5151)] = 104325, - [SMALL_STATE(5152)] = 104394, - [SMALL_STATE(5153)] = 104463, - [SMALL_STATE(5154)] = 104528, - [SMALL_STATE(5155)] = 104589, - [SMALL_STATE(5156)] = 104650, - [SMALL_STATE(5157)] = 104711, - [SMALL_STATE(5158)] = 104778, - [SMALL_STATE(5159)] = 104839, - [SMALL_STATE(5160)] = 104900, - [SMALL_STATE(5161)] = 105013, - [SMALL_STATE(5162)] = 105074, - [SMALL_STATE(5163)] = 105135, - [SMALL_STATE(5164)] = 105202, - [SMALL_STATE(5165)] = 105263, - [SMALL_STATE(5166)] = 105324, - [SMALL_STATE(5167)] = 105389, - [SMALL_STATE(5168)] = 105502, - [SMALL_STATE(5169)] = 105615, - [SMALL_STATE(5170)] = 105676, - [SMALL_STATE(5171)] = 105737, - [SMALL_STATE(5172)] = 105812, - [SMALL_STATE(5173)] = 105887, - [SMALL_STATE(5174)] = 105954, - [SMALL_STATE(5175)] = 106015, - [SMALL_STATE(5176)] = 106076, - [SMALL_STATE(5177)] = 106137, - [SMALL_STATE(5178)] = 106250, - [SMALL_STATE(5179)] = 106311, - [SMALL_STATE(5180)] = 106424, - [SMALL_STATE(5181)] = 106485, - [SMALL_STATE(5182)] = 106546, - [SMALL_STATE(5183)] = 106659, - [SMALL_STATE(5184)] = 106720, - [SMALL_STATE(5185)] = 106781, - [SMALL_STATE(5186)] = 106894, - [SMALL_STATE(5187)] = 107001, - [SMALL_STATE(5188)] = 107114, - [SMALL_STATE(5189)] = 107227, - [SMALL_STATE(5190)] = 107340, - [SMALL_STATE(5191)] = 107453, - [SMALL_STATE(5192)] = 107566, - [SMALL_STATE(5193)] = 107679, - [SMALL_STATE(5194)] = 107740, - [SMALL_STATE(5195)] = 107801, - [SMALL_STATE(5196)] = 107914, - [SMALL_STATE(5197)] = 108027, - [SMALL_STATE(5198)] = 108094, - [SMALL_STATE(5199)] = 108207, - [SMALL_STATE(5200)] = 108320, - [SMALL_STATE(5201)] = 108433, - [SMALL_STATE(5202)] = 108546, - [SMALL_STATE(5203)] = 108659, - [SMALL_STATE(5204)] = 108772, - [SMALL_STATE(5205)] = 108885, - [SMALL_STATE(5206)] = 108998, - [SMALL_STATE(5207)] = 109111, - [SMALL_STATE(5208)] = 109224, - [SMALL_STATE(5209)] = 109337, - [SMALL_STATE(5210)] = 109450, - [SMALL_STATE(5211)] = 109525, - [SMALL_STATE(5212)] = 109638, - [SMALL_STATE(5213)] = 109745, - [SMALL_STATE(5214)] = 109812, - [SMALL_STATE(5215)] = 109881, - [SMALL_STATE(5216)] = 109954, - [SMALL_STATE(5217)] = 110015, - [SMALL_STATE(5218)] = 110122, - [SMALL_STATE(5219)] = 110189, - [SMALL_STATE(5220)] = 110250, - [SMALL_STATE(5221)] = 110315, - [SMALL_STATE(5222)] = 110376, - [SMALL_STATE(5223)] = 110491, - [SMALL_STATE(5224)] = 110552, - [SMALL_STATE(5225)] = 110613, - [SMALL_STATE(5226)] = 110674, - [SMALL_STATE(5227)] = 110741, - [SMALL_STATE(5228)] = 110856, - [SMALL_STATE(5229)] = 110917, - [SMALL_STATE(5230)] = 110978, - [SMALL_STATE(5231)] = 111051, - [SMALL_STATE(5232)] = 111164, - [SMALL_STATE(5233)] = 111277, - [SMALL_STATE(5234)] = 111344, - [SMALL_STATE(5235)] = 111405, - [SMALL_STATE(5236)] = 111470, - [SMALL_STATE(5237)] = 111535, - [SMALL_STATE(5238)] = 111646, - [SMALL_STATE(5239)] = 111707, - [SMALL_STATE(5240)] = 111820, - [SMALL_STATE(5241)] = 111885, - [SMALL_STATE(5242)] = 111948, - [SMALL_STATE(5243)] = 112059, - [SMALL_STATE(5244)] = 112128, - [SMALL_STATE(5245)] = 112197, - [SMALL_STATE(5246)] = 112258, - [SMALL_STATE(5247)] = 112327, - [SMALL_STATE(5248)] = 112396, - [SMALL_STATE(5249)] = 112465, - [SMALL_STATE(5250)] = 112532, - [SMALL_STATE(5251)] = 112601, - [SMALL_STATE(5252)] = 112662, - [SMALL_STATE(5253)] = 112723, - [SMALL_STATE(5254)] = 112792, - [SMALL_STATE(5255)] = 112861, - [SMALL_STATE(5256)] = 112930, - [SMALL_STATE(5257)] = 112999, - [SMALL_STATE(5258)] = 113060, - [SMALL_STATE(5259)] = 113121, - [SMALL_STATE(5260)] = 113182, - [SMALL_STATE(5261)] = 113243, - [SMALL_STATE(5262)] = 113308, - [SMALL_STATE(5263)] = 113369, - [SMALL_STATE(5264)] = 113430, - [SMALL_STATE(5265)] = 113491, - [SMALL_STATE(5266)] = 113552, - [SMALL_STATE(5267)] = 113632, - [SMALL_STATE(5268)] = 113692, - [SMALL_STATE(5269)] = 113766, - [SMALL_STATE(5270)] = 113870, - [SMALL_STATE(5271)] = 113944, - [SMALL_STATE(5272)] = 114100, - [SMALL_STATE(5273)] = 114160, - [SMALL_STATE(5274)] = 114220, - [SMALL_STATE(5275)] = 114334, - [SMALL_STATE(5276)] = 114438, - [SMALL_STATE(5277)] = 114504, - [SMALL_STATE(5278)] = 114570, - [SMALL_STATE(5279)] = 114630, - [SMALL_STATE(5280)] = 114708, - [SMALL_STATE(5281)] = 114770, - [SMALL_STATE(5282)] = 114830, - [SMALL_STATE(5283)] = 114890, - [SMALL_STATE(5284)] = 114958, - [SMALL_STATE(5285)] = 115022, - [SMALL_STATE(5286)] = 115090, - [SMALL_STATE(5287)] = 115156, - [SMALL_STATE(5288)] = 115218, - [SMALL_STATE(5289)] = 115284, - [SMALL_STATE(5290)] = 115352, - [SMALL_STATE(5291)] = 115412, - [SMALL_STATE(5292)] = 115482, - [SMALL_STATE(5293)] = 115586, - [SMALL_STATE(5294)] = 115648, - [SMALL_STATE(5295)] = 115804, - [SMALL_STATE(5296)] = 115908, - [SMALL_STATE(5297)] = 116016, - [SMALL_STATE(5298)] = 116120, - [SMALL_STATE(5299)] = 116190, - [SMALL_STATE(5300)] = 116296, - [SMALL_STATE(5301)] = 116356, - [SMALL_STATE(5302)] = 116428, - [SMALL_STATE(5303)] = 116502, - [SMALL_STATE(5304)] = 116608, - [SMALL_STATE(5305)] = 116712, - [SMALL_STATE(5306)] = 116780, - [SMALL_STATE(5307)] = 116936, - [SMALL_STATE(5308)] = 116998, - [SMALL_STATE(5309)] = 117062, - [SMALL_STATE(5310)] = 117126, - [SMALL_STATE(5311)] = 117240, - [SMALL_STATE(5312)] = 117300, - [SMALL_STATE(5313)] = 117362, - [SMALL_STATE(5314)] = 117476, - [SMALL_STATE(5315)] = 117538, - [SMALL_STATE(5316)] = 117646, - [SMALL_STATE(5317)] = 117750, - [SMALL_STATE(5318)] = 117906, - [SMALL_STATE(5319)] = 117974, - [SMALL_STATE(5320)] = 118078, - [SMALL_STATE(5321)] = 118156, - [SMALL_STATE(5322)] = 118222, - [SMALL_STATE(5323)] = 118328, - [SMALL_STATE(5324)] = 118400, - [SMALL_STATE(5325)] = 118460, - [SMALL_STATE(5326)] = 118564, - [SMALL_STATE(5327)] = 118624, - [SMALL_STATE(5328)] = 118738, - [SMALL_STATE(5329)] = 118802, - [SMALL_STATE(5330)] = 118906, - [SMALL_STATE(5331)] = 118972, - [SMALL_STATE(5332)] = 119046, - [SMALL_STATE(5333)] = 119120, - [SMALL_STATE(5334)] = 119276, - [SMALL_STATE(5335)] = 119336, - [SMALL_STATE(5336)] = 119406, - [SMALL_STATE(5337)] = 119562, - [SMALL_STATE(5338)] = 119666, - [SMALL_STATE(5339)] = 119726, - [SMALL_STATE(5340)] = 119830, - [SMALL_STATE(5341)] = 119944, - [SMALL_STATE(5342)] = 120016, - [SMALL_STATE(5343)] = 120120, - [SMALL_STATE(5344)] = 120224, - [SMALL_STATE(5345)] = 120328, - [SMALL_STATE(5346)] = 120432, - [SMALL_STATE(5347)] = 120588, - [SMALL_STATE(5348)] = 120648, - [SMALL_STATE(5349)] = 120708, - [SMALL_STATE(5350)] = 120818, - [SMALL_STATE(5351)] = 120922, - [SMALL_STATE(5352)] = 120984, - [SMALL_STATE(5353)] = 121044, - [SMALL_STATE(5354)] = 121110, - [SMALL_STATE(5355)] = 121174, - [SMALL_STATE(5356)] = 121234, - [SMALL_STATE(5357)] = 121302, - [SMALL_STATE(5358)] = 121458, - [SMALL_STATE(5359)] = 121518, - [SMALL_STATE(5360)] = 121588, - [SMALL_STATE(5361)] = 121648, - [SMALL_STATE(5362)] = 121804, - [SMALL_STATE(5363)] = 121864, - [SMALL_STATE(5364)] = 121924, - [SMALL_STATE(5365)] = 121988, - [SMALL_STATE(5366)] = 122056, - [SMALL_STATE(5367)] = 122212, - [SMALL_STATE(5368)] = 122322, - [SMALL_STATE(5369)] = 122442, - [SMALL_STATE(5370)] = 122502, - [SMALL_STATE(5371)] = 122562, - [SMALL_STATE(5372)] = 122628, - [SMALL_STATE(5373)] = 122696, - [SMALL_STATE(5374)] = 122772, - [SMALL_STATE(5375)] = 122832, - [SMALL_STATE(5376)] = 122906, - [SMALL_STATE(5377)] = 123008, - [SMALL_STATE(5378)] = 123112, - [SMALL_STATE(5379)] = 123210, - [SMALL_STATE(5380)] = 123304, - [SMALL_STATE(5381)] = 123396, - [SMALL_STATE(5382)] = 123484, - [SMALL_STATE(5383)] = 123570, - [SMALL_STATE(5384)] = 123652, - [SMALL_STATE(5385)] = 123756, - [SMALL_STATE(5386)] = 123826, - [SMALL_STATE(5387)] = 123904, - [SMALL_STATE(5388)] = 123986, - [SMALL_STATE(5389)] = 124106, - [SMALL_STATE(5390)] = 124262, - [SMALL_STATE(5391)] = 124366, - [SMALL_STATE(5392)] = 124426, - [SMALL_STATE(5393)] = 124506, - [SMALL_STATE(5394)] = 124612, - [SMALL_STATE(5395)] = 124718, - [SMALL_STATE(5396)] = 124824, - [SMALL_STATE(5397)] = 124884, - [SMALL_STATE(5398)] = 124990, - [SMALL_STATE(5399)] = 125100, - [SMALL_STATE(5400)] = 125164, - [SMALL_STATE(5401)] = 125240, - [SMALL_STATE(5402)] = 125342, - [SMALL_STATE(5403)] = 125440, - [SMALL_STATE(5404)] = 125534, - [SMALL_STATE(5405)] = 125626, - [SMALL_STATE(5406)] = 125714, - [SMALL_STATE(5407)] = 125800, - [SMALL_STATE(5408)] = 125882, - [SMALL_STATE(5409)] = 125960, - [SMALL_STATE(5410)] = 126020, - [SMALL_STATE(5411)] = 126100, - [SMALL_STATE(5412)] = 126206, - [SMALL_STATE(5413)] = 126316, - [SMALL_STATE(5414)] = 126422, - [SMALL_STATE(5415)] = 126482, - [SMALL_STATE(5416)] = 126542, - [SMALL_STATE(5417)] = 126646, - [SMALL_STATE(5418)] = 126706, - [SMALL_STATE(5419)] = 126774, - [SMALL_STATE(5420)] = 126842, - [SMALL_STATE(5421)] = 126910, - [SMALL_STATE(5422)] = 126984, - [SMALL_STATE(5423)] = 127052, - [SMALL_STATE(5424)] = 127114, - [SMALL_STATE(5425)] = 127178, - [SMALL_STATE(5426)] = 127282, - [SMALL_STATE(5427)] = 127342, - [SMALL_STATE(5428)] = 127408, - [SMALL_STATE(5429)] = 127474, - [SMALL_STATE(5430)] = 127552, - [SMALL_STATE(5431)] = 127612, - [SMALL_STATE(5432)] = 127682, - [SMALL_STATE(5433)] = 127750, - [SMALL_STATE(5434)] = 127818, - [SMALL_STATE(5435)] = 127922, - [SMALL_STATE(5436)] = 127982, - [SMALL_STATE(5437)] = 128042, - [SMALL_STATE(5438)] = 128146, - [SMALL_STATE(5439)] = 128206, - [SMALL_STATE(5440)] = 128310, - [SMALL_STATE(5441)] = 128380, - [SMALL_STATE(5442)] = 128484, - [SMALL_STATE(5443)] = 128556, - [SMALL_STATE(5444)] = 128616, - [SMALL_STATE(5445)] = 128676, - [SMALL_STATE(5446)] = 128780, - [SMALL_STATE(5447)] = 128840, - [SMALL_STATE(5448)] = 128946, - [SMALL_STATE(5449)] = 129006, - [SMALL_STATE(5450)] = 129066, - [SMALL_STATE(5451)] = 129170, - [SMALL_STATE(5452)] = 129268, - [SMALL_STATE(5453)] = 129332, - [SMALL_STATE(5454)] = 129392, - [SMALL_STATE(5455)] = 129452, - [SMALL_STATE(5456)] = 129512, - [SMALL_STATE(5457)] = 129572, - [SMALL_STATE(5458)] = 129632, - [SMALL_STATE(5459)] = 129692, - [SMALL_STATE(5460)] = 129752, - [SMALL_STATE(5461)] = 129812, - [SMALL_STATE(5462)] = 129872, - [SMALL_STATE(5463)] = 129978, - [SMALL_STATE(5464)] = 130038, - [SMALL_STATE(5465)] = 130108, - [SMALL_STATE(5466)] = 130168, - [SMALL_STATE(5467)] = 130238, - [SMALL_STATE(5468)] = 130298, - [SMALL_STATE(5469)] = 130370, - [SMALL_STATE(5470)] = 130442, - [SMALL_STATE(5471)] = 130502, - [SMALL_STATE(5472)] = 130570, - [SMALL_STATE(5473)] = 130630, - [SMALL_STATE(5474)] = 130702, - [SMALL_STATE(5475)] = 130808, - [SMALL_STATE(5476)] = 130882, - [SMALL_STATE(5477)] = 130956, - [SMALL_STATE(5478)] = 131062, - [SMALL_STATE(5479)] = 131134, - [SMALL_STATE(5480)] = 131240, - [SMALL_STATE(5481)] = 131346, - [SMALL_STATE(5482)] = 131456, - [SMALL_STATE(5483)] = 131532, - [SMALL_STATE(5484)] = 131606, - [SMALL_STATE(5485)] = 131708, - [SMALL_STATE(5486)] = 131806, - [SMALL_STATE(5487)] = 131900, - [SMALL_STATE(5488)] = 131992, - [SMALL_STATE(5489)] = 132080, - [SMALL_STATE(5490)] = 132166, - [SMALL_STATE(5491)] = 132248, - [SMALL_STATE(5492)] = 132326, - [SMALL_STATE(5493)] = 132432, - [SMALL_STATE(5494)] = 132506, - [SMALL_STATE(5495)] = 132612, - [SMALL_STATE(5496)] = 132722, - [SMALL_STATE(5497)] = 132828, - [SMALL_STATE(5498)] = 132938, - [SMALL_STATE(5499)] = 133042, - [SMALL_STATE(5500)] = 133102, - [SMALL_STATE(5501)] = 133200, - [SMALL_STATE(5502)] = 133260, - [SMALL_STATE(5503)] = 133364, - [SMALL_STATE(5504)] = 133432, - [SMALL_STATE(5505)] = 133506, - [SMALL_STATE(5506)] = 133566, - [SMALL_STATE(5507)] = 133626, - [SMALL_STATE(5508)] = 133736, - [SMALL_STATE(5509)] = 133810, - [SMALL_STATE(5510)] = 133918, - [SMALL_STATE(5511)] = 133992, - [SMALL_STATE(5512)] = 134062, - [SMALL_STATE(5513)] = 134130, - [SMALL_STATE(5514)] = 134242, - [SMALL_STATE(5515)] = 134310, - [SMALL_STATE(5516)] = 134380, - [SMALL_STATE(5517)] = 134456, - [SMALL_STATE(5518)] = 134530, - [SMALL_STATE(5519)] = 134630, - [SMALL_STATE(5520)] = 134726, - [SMALL_STATE(5521)] = 134818, - [SMALL_STATE(5522)] = 134908, - [SMALL_STATE(5523)] = 134994, - [SMALL_STATE(5524)] = 135054, - [SMALL_STATE(5525)] = 135138, - [SMALL_STATE(5526)] = 135220, - [SMALL_STATE(5527)] = 135298, - [SMALL_STATE(5528)] = 135378, - [SMALL_STATE(5529)] = 135438, - [SMALL_STATE(5530)] = 135498, - [SMALL_STATE(5531)] = 135558, - [SMALL_STATE(5532)] = 135618, - [SMALL_STATE(5533)] = 135678, - [SMALL_STATE(5534)] = 135788, - [SMALL_STATE(5535)] = 135847, - [SMALL_STATE(5536)] = 135906, - [SMALL_STATE(5537)] = 135965, - [SMALL_STATE(5538)] = 136024, - [SMALL_STATE(5539)] = 136083, - [SMALL_STATE(5540)] = 136146, - [SMALL_STATE(5541)] = 136207, - [SMALL_STATE(5542)] = 136266, - [SMALL_STATE(5543)] = 136327, - [SMALL_STATE(5544)] = 136390, - [SMALL_STATE(5545)] = 136449, - [SMALL_STATE(5546)] = 136508, - [SMALL_STATE(5547)] = 136567, - [SMALL_STATE(5548)] = 136628, - [SMALL_STATE(5549)] = 136687, - [SMALL_STATE(5550)] = 136746, - [SMALL_STATE(5551)] = 136805, - [SMALL_STATE(5552)] = 136868, - [SMALL_STATE(5553)] = 136927, - [SMALL_STATE(5554)] = 136986, - [SMALL_STATE(5555)] = 137045, - [SMALL_STATE(5556)] = 137104, - [SMALL_STATE(5557)] = 137163, - [SMALL_STATE(5558)] = 137222, - [SMALL_STATE(5559)] = 137281, - [SMALL_STATE(5560)] = 137340, - [SMALL_STATE(5561)] = 137399, - [SMALL_STATE(5562)] = 137458, - [SMALL_STATE(5563)] = 137525, - [SMALL_STATE(5564)] = 137584, - [SMALL_STATE(5565)] = 137643, - [SMALL_STATE(5566)] = 137702, - [SMALL_STATE(5567)] = 137761, - [SMALL_STATE(5568)] = 137820, - [SMALL_STATE(5569)] = 137893, - [SMALL_STATE(5570)] = 137952, - [SMALL_STATE(5571)] = 138011, - [SMALL_STATE(5572)] = 138070, - [SMALL_STATE(5573)] = 138129, - [SMALL_STATE(5574)] = 138188, - [SMALL_STATE(5575)] = 138253, - [SMALL_STATE(5576)] = 138312, - [SMALL_STATE(5577)] = 138375, - [SMALL_STATE(5578)] = 138434, - [SMALL_STATE(5579)] = 138493, - [SMALL_STATE(5580)] = 138552, - [SMALL_STATE(5581)] = 138619, - [SMALL_STATE(5582)] = 138678, - [SMALL_STATE(5583)] = 138741, - [SMALL_STATE(5584)] = 138800, - [SMALL_STATE(5585)] = 138859, - [SMALL_STATE(5586)] = 138918, - [SMALL_STATE(5587)] = 138977, - [SMALL_STATE(5588)] = 139036, - [SMALL_STATE(5589)] = 139095, - [SMALL_STATE(5590)] = 139154, - [SMALL_STATE(5591)] = 139213, - [SMALL_STATE(5592)] = 139272, - [SMALL_STATE(5593)] = 139331, - [SMALL_STATE(5594)] = 139390, - [SMALL_STATE(5595)] = 139449, - [SMALL_STATE(5596)] = 139508, - [SMALL_STATE(5597)] = 139567, - [SMALL_STATE(5598)] = 139632, - [SMALL_STATE(5599)] = 139697, - [SMALL_STATE(5600)] = 139756, - [SMALL_STATE(5601)] = 139815, - [SMALL_STATE(5602)] = 139874, - [SMALL_STATE(5603)] = 139941, - [SMALL_STATE(5604)] = 140000, - [SMALL_STATE(5605)] = 140059, - [SMALL_STATE(5606)] = 140118, - [SMALL_STATE(5607)] = 140179, - [SMALL_STATE(5608)] = 140242, - [SMALL_STATE(5609)] = 140301, - [SMALL_STATE(5610)] = 140360, - [SMALL_STATE(5611)] = 140419, - [SMALL_STATE(5612)] = 140484, - [SMALL_STATE(5613)] = 140543, - [SMALL_STATE(5614)] = 140602, - [SMALL_STATE(5615)] = 140661, - [SMALL_STATE(5616)] = 140720, - [SMALL_STATE(5617)] = 140781, - [SMALL_STATE(5618)] = 140840, - [SMALL_STATE(5619)] = 140899, - [SMALL_STATE(5620)] = 140958, - [SMALL_STATE(5621)] = 141017, - [SMALL_STATE(5622)] = 141076, - [SMALL_STATE(5623)] = 141135, - [SMALL_STATE(5624)] = 141194, - [SMALL_STATE(5625)] = 141267, - [SMALL_STATE(5626)] = 141326, - [SMALL_STATE(5627)] = 141385, - [SMALL_STATE(5628)] = 141444, - [SMALL_STATE(5629)] = 141503, - [SMALL_STATE(5630)] = 141562, - [SMALL_STATE(5631)] = 141631, - [SMALL_STATE(5632)] = 141698, - [SMALL_STATE(5633)] = 141757, - [SMALL_STATE(5634)] = 141816, - [SMALL_STATE(5635)] = 141875, - [SMALL_STATE(5636)] = 141934, - [SMALL_STATE(5637)] = 141993, - [SMALL_STATE(5638)] = 142054, - [SMALL_STATE(5639)] = 142117, - [SMALL_STATE(5640)] = 142180, - [SMALL_STATE(5641)] = 142239, - [SMALL_STATE(5642)] = 142298, - [SMALL_STATE(5643)] = 142357, - [SMALL_STATE(5644)] = 142416, - [SMALL_STATE(5645)] = 142475, - [SMALL_STATE(5646)] = 142540, - [SMALL_STATE(5647)] = 142599, - [SMALL_STATE(5648)] = 142660, - [SMALL_STATE(5649)] = 142723, - [SMALL_STATE(5650)] = 142784, - [SMALL_STATE(5651)] = 142849, - [SMALL_STATE(5652)] = 142908, - [SMALL_STATE(5653)] = 142967, - [SMALL_STATE(5654)] = 143034, - [SMALL_STATE(5655)] = 143093, - [SMALL_STATE(5656)] = 143152, - [SMALL_STATE(5657)] = 143211, - [SMALL_STATE(5658)] = 143270, - [SMALL_STATE(5659)] = 143329, - [SMALL_STATE(5660)] = 143396, - [SMALL_STATE(5661)] = 143455, - [SMALL_STATE(5662)] = 143516, - [SMALL_STATE(5663)] = 143575, - [SMALL_STATE(5664)] = 143634, - [SMALL_STATE(5665)] = 143693, - [SMALL_STATE(5666)] = 143754, - [SMALL_STATE(5667)] = 143819, - [SMALL_STATE(5668)] = 143878, - [SMALL_STATE(5669)] = 143937, - [SMALL_STATE(5670)] = 143998, - [SMALL_STATE(5671)] = 144059, - [SMALL_STATE(5672)] = 144118, - [SMALL_STATE(5673)] = 144183, - [SMALL_STATE(5674)] = 144242, - [SMALL_STATE(5675)] = 144301, - [SMALL_STATE(5676)] = 144360, - [SMALL_STATE(5677)] = 144419, - [SMALL_STATE(5678)] = 144478, - [SMALL_STATE(5679)] = 144537, - [SMALL_STATE(5680)] = 144598, - [SMALL_STATE(5681)] = 144657, - [SMALL_STATE(5682)] = 144716, - [SMALL_STATE(5683)] = 144779, - [SMALL_STATE(5684)] = 144838, - [SMALL_STATE(5685)] = 144897, - [SMALL_STATE(5686)] = 144956, - [SMALL_STATE(5687)] = 145015, - [SMALL_STATE(5688)] = 145074, - [SMALL_STATE(5689)] = 145141, - [SMALL_STATE(5690)] = 145206, - [SMALL_STATE(5691)] = 145269, - [SMALL_STATE(5692)] = 145328, - [SMALL_STATE(5693)] = 145387, - [SMALL_STATE(5694)] = 145446, - [SMALL_STATE(5695)] = 145505, - [SMALL_STATE(5696)] = 145564, - [SMALL_STATE(5697)] = 145623, - [SMALL_STATE(5698)] = 145736, - [SMALL_STATE(5699)] = 145795, - [SMALL_STATE(5700)] = 145854, - [SMALL_STATE(5701)] = 145917, - [SMALL_STATE(5702)] = 145976, - [SMALL_STATE(5703)] = 146035, - [SMALL_STATE(5704)] = 146094, - [SMALL_STATE(5705)] = 146153, - [SMALL_STATE(5706)] = 146212, - [SMALL_STATE(5707)] = 146271, - [SMALL_STATE(5708)] = 146338, - [SMALL_STATE(5709)] = 146397, - [SMALL_STATE(5710)] = 146456, - [SMALL_STATE(5711)] = 146515, - [SMALL_STATE(5712)] = 146574, - [SMALL_STATE(5713)] = 146633, - [SMALL_STATE(5714)] = 146692, - [SMALL_STATE(5715)] = 146751, - [SMALL_STATE(5716)] = 146810, - [SMALL_STATE(5717)] = 146869, - [SMALL_STATE(5718)] = 146928, - [SMALL_STATE(5719)] = 146993, - [SMALL_STATE(5720)] = 147056, - [SMALL_STATE(5721)] = 147115, - [SMALL_STATE(5722)] = 147174, - [SMALL_STATE(5723)] = 147233, - [SMALL_STATE(5724)] = 147292, - [SMALL_STATE(5725)] = 147350, - [SMALL_STATE(5726)] = 147408, - [SMALL_STATE(5727)] = 147466, - [SMALL_STATE(5728)] = 147524, - [SMALL_STATE(5729)] = 147582, - [SMALL_STATE(5730)] = 147640, - [SMALL_STATE(5731)] = 147698, - [SMALL_STATE(5732)] = 147756, - [SMALL_STATE(5733)] = 147814, - [SMALL_STATE(5734)] = 147872, - [SMALL_STATE(5735)] = 147930, - [SMALL_STATE(5736)] = 148000, - [SMALL_STATE(5737)] = 148058, - [SMALL_STATE(5738)] = 148158, - [SMALL_STATE(5739)] = 148216, - [SMALL_STATE(5740)] = 148274, - [SMALL_STATE(5741)] = 148332, - [SMALL_STATE(5742)] = 148390, - [SMALL_STATE(5743)] = 148456, - [SMALL_STATE(5744)] = 148522, - [SMALL_STATE(5745)] = 148580, - [SMALL_STATE(5746)] = 148646, - [SMALL_STATE(5747)] = 148704, - [SMALL_STATE(5748)] = 148762, - [SMALL_STATE(5749)] = 148860, - [SMALL_STATE(5750)] = 148918, - [SMALL_STATE(5751)] = 148976, - [SMALL_STATE(5752)] = 149034, - [SMALL_STATE(5753)] = 149092, - [SMALL_STATE(5754)] = 149150, - [SMALL_STATE(5755)] = 149208, - [SMALL_STATE(5756)] = 149266, - [SMALL_STATE(5757)] = 149332, - [SMALL_STATE(5758)] = 149426, - [SMALL_STATE(5759)] = 149484, - [SMALL_STATE(5760)] = 149586, - [SMALL_STATE(5761)] = 149644, - [SMALL_STATE(5762)] = 149702, - [SMALL_STATE(5763)] = 149760, - [SMALL_STATE(5764)] = 149822, - [SMALL_STATE(5765)] = 149894, - [SMALL_STATE(5766)] = 149984, - [SMALL_STATE(5767)] = 150042, - [SMALL_STATE(5768)] = 150100, - [SMALL_STATE(5769)] = 150162, - [SMALL_STATE(5770)] = 150232, - [SMALL_STATE(5771)] = 150290, - [SMALL_STATE(5772)] = 150358, - [SMALL_STATE(5773)] = 150416, - [SMALL_STATE(5774)] = 150518, - [SMALL_STATE(5775)] = 150576, - [SMALL_STATE(5776)] = 150634, - [SMALL_STATE(5777)] = 150692, - [SMALL_STATE(5778)] = 150750, - [SMALL_STATE(5779)] = 150808, - [SMALL_STATE(5780)] = 150866, - [SMALL_STATE(5781)] = 150924, - [SMALL_STATE(5782)] = 150986, - [SMALL_STATE(5783)] = 151044, - [SMALL_STATE(5784)] = 151110, - [SMALL_STATE(5785)] = 151168, - [SMALL_STATE(5786)] = 151226, - [SMALL_STATE(5787)] = 151284, - [SMALL_STATE(5788)] = 151346, - [SMALL_STATE(5789)] = 151404, - [SMALL_STATE(5790)] = 151462, - [SMALL_STATE(5791)] = 151520, - [SMALL_STATE(5792)] = 151578, - [SMALL_STATE(5793)] = 151650, - [SMALL_STATE(5794)] = 151722, - [SMALL_STATE(5795)] = 151780, - [SMALL_STATE(5796)] = 151838, - [SMALL_STATE(5797)] = 151896, - [SMALL_STATE(5798)] = 151954, - [SMALL_STATE(5799)] = 152020, - [SMALL_STATE(5800)] = 152078, - [SMALL_STATE(5801)] = 152136, - [SMALL_STATE(5802)] = 152194, - [SMALL_STATE(5803)] = 152260, - [SMALL_STATE(5804)] = 152318, - [SMALL_STATE(5805)] = 152390, - [SMALL_STATE(5806)] = 152448, - [SMALL_STATE(5807)] = 152534, - [SMALL_STATE(5808)] = 152592, - [SMALL_STATE(5809)] = 152650, - [SMALL_STATE(5810)] = 152708, - [SMALL_STATE(5811)] = 152814, - [SMALL_STATE(5812)] = 152872, - [SMALL_STATE(5813)] = 152942, - [SMALL_STATE(5814)] = 153000, - [SMALL_STATE(5815)] = 153062, - [SMALL_STATE(5816)] = 153146, - [SMALL_STATE(5817)] = 153204, - [SMALL_STATE(5818)] = 153262, - [SMALL_STATE(5819)] = 153364, - [SMALL_STATE(5820)] = 153422, - [SMALL_STATE(5821)] = 153480, - [SMALL_STATE(5822)] = 153550, - [SMALL_STATE(5823)] = 153608, - [SMALL_STATE(5824)] = 153666, - [SMALL_STATE(5825)] = 153746, - [SMALL_STATE(5826)] = 153808, - [SMALL_STATE(5827)] = 153866, - [SMALL_STATE(5828)] = 153924, - [SMALL_STATE(5829)] = 154000, - [SMALL_STATE(5830)] = 154106, - [SMALL_STATE(5831)] = 154164, - [SMALL_STATE(5832)] = 154222, - [SMALL_STATE(5833)] = 154324, - [SMALL_STATE(5834)] = 154382, - [SMALL_STATE(5835)] = 154440, - [SMALL_STATE(5836)] = 154498, - [SMALL_STATE(5837)] = 154556, - [SMALL_STATE(5838)] = 154626, - [SMALL_STATE(5839)] = 154684, - [SMALL_STATE(5840)] = 154750, - [SMALL_STATE(5841)] = 154808, - [SMALL_STATE(5842)] = 154866, - [SMALL_STATE(5843)] = 154924, - [SMALL_STATE(5844)] = 154982, - [SMALL_STATE(5845)] = 155040, - [SMALL_STATE(5846)] = 155098, - [SMALL_STATE(5847)] = 155156, - [SMALL_STATE(5848)] = 155214, - [SMALL_STATE(5849)] = 155272, - [SMALL_STATE(5850)] = 155330, - [SMALL_STATE(5851)] = 155388, - [SMALL_STATE(5852)] = 155460, - [SMALL_STATE(5853)] = 155518, - [SMALL_STATE(5854)] = 155576, - [SMALL_STATE(5855)] = 155634, - [SMALL_STATE(5856)] = 155692, - [SMALL_STATE(5857)] = 155750, - [SMALL_STATE(5858)] = 155816, - [SMALL_STATE(5859)] = 155874, - [SMALL_STATE(5860)] = 155932, - [SMALL_STATE(5861)] = 155990, - [SMALL_STATE(5862)] = 156048, - [SMALL_STATE(5863)] = 156106, - [SMALL_STATE(5864)] = 156164, - [SMALL_STATE(5865)] = 156222, - [SMALL_STATE(5866)] = 156324, - [SMALL_STATE(5867)] = 156426, - [SMALL_STATE(5868)] = 156484, - [SMALL_STATE(5869)] = 156542, - [SMALL_STATE(5870)] = 156600, - [SMALL_STATE(5871)] = 156658, - [SMALL_STATE(5872)] = 156716, - [SMALL_STATE(5873)] = 156794, - [SMALL_STATE(5874)] = 156860, - [SMALL_STATE(5875)] = 156930, - [SMALL_STATE(5876)] = 156988, - [SMALL_STATE(5877)] = 157046, - [SMALL_STATE(5878)] = 157104, - [SMALL_STATE(5879)] = 157172, - [SMALL_STATE(5880)] = 157230, - [SMALL_STATE(5881)] = 157288, - [SMALL_STATE(5882)] = 157354, - [SMALL_STATE(5883)] = 157412, - [SMALL_STATE(5884)] = 157470, - [SMALL_STATE(5885)] = 157532, - [SMALL_STATE(5886)] = 157602, - [SMALL_STATE(5887)] = 157676, - [SMALL_STATE(5888)] = 157734, - [SMALL_STATE(5889)] = 157792, - [SMALL_STATE(5890)] = 157850, - [SMALL_STATE(5891)] = 157908, - [SMALL_STATE(5892)] = 158018, - [SMALL_STATE(5893)] = 158084, - [SMALL_STATE(5894)] = 158150, - [SMALL_STATE(5895)] = 158208, - [SMALL_STATE(5896)] = 158266, - [SMALL_STATE(5897)] = 158324, - [SMALL_STATE(5898)] = 158382, - [SMALL_STATE(5899)] = 158448, - [SMALL_STATE(5900)] = 158510, - [SMALL_STATE(5901)] = 158568, - [SMALL_STATE(5902)] = 158626, - [SMALL_STATE(5903)] = 158684, - [SMALL_STATE(5904)] = 158742, - [SMALL_STATE(5905)] = 158800, - [SMALL_STATE(5906)] = 158862, - [SMALL_STATE(5907)] = 158920, - [SMALL_STATE(5908)] = 158986, - [SMALL_STATE(5909)] = 159052, - [SMALL_STATE(5910)] = 159110, - [SMALL_STATE(5911)] = 159168, - [SMALL_STATE(5912)] = 159234, - [SMALL_STATE(5913)] = 159300, - [SMALL_STATE(5914)] = 159358, - [SMALL_STATE(5915)] = 159430, - [SMALL_STATE(5916)] = 159488, - [SMALL_STATE(5917)] = 159548, - [SMALL_STATE(5918)] = 159606, - [SMALL_STATE(5919)] = 159664, - [SMALL_STATE(5920)] = 159736, - [SMALL_STATE(5921)] = 159794, - [SMALL_STATE(5922)] = 159854, - [SMALL_STATE(5923)] = 159920, - [SMALL_STATE(5924)] = 159978, - [SMALL_STATE(5925)] = 160036, - [SMALL_STATE(5926)] = 160094, - [SMALL_STATE(5927)] = 160152, - [SMALL_STATE(5928)] = 160210, - [SMALL_STATE(5929)] = 160268, - [SMALL_STATE(5930)] = 160326, - [SMALL_STATE(5931)] = 160432, - [SMALL_STATE(5932)] = 160490, - [SMALL_STATE(5933)] = 160556, - [SMALL_STATE(5934)] = 160614, - [SMALL_STATE(5935)] = 160686, - [SMALL_STATE(5936)] = 160743, - [SMALL_STATE(5937)] = 160806, - [SMALL_STATE(5938)] = 160863, - [SMALL_STATE(5939)] = 160926, - [SMALL_STATE(5940)] = 160989, - [SMALL_STATE(5941)] = 161082, - [SMALL_STATE(5942)] = 161141, - [SMALL_STATE(5943)] = 161200, - [SMALL_STATE(5944)] = 161267, - [SMALL_STATE(5945)] = 161324, - [SMALL_STATE(5946)] = 161387, - [SMALL_STATE(5947)] = 161444, - [SMALL_STATE(5948)] = 161501, - [SMALL_STATE(5949)] = 161564, - [SMALL_STATE(5950)] = 161633, - [SMALL_STATE(5951)] = 161702, - [SMALL_STATE(5952)] = 161771, - [SMALL_STATE(5953)] = 161840, - [SMALL_STATE(5954)] = 161897, - [SMALL_STATE(5955)] = 161960, - [SMALL_STATE(5956)] = 162017, - [SMALL_STATE(5957)] = 162074, - [SMALL_STATE(5958)] = 162131, - [SMALL_STATE(5959)] = 162188, - [SMALL_STATE(5960)] = 162245, - [SMALL_STATE(5961)] = 162314, - [SMALL_STATE(5962)] = 162371, - [SMALL_STATE(5963)] = 162448, - [SMALL_STATE(5964)] = 162517, - [SMALL_STATE(5965)] = 162574, - [SMALL_STATE(5966)] = 162631, - [SMALL_STATE(5967)] = 162688, - [SMALL_STATE(5968)] = 162753, - [SMALL_STATE(5969)] = 162816, - [SMALL_STATE(5970)] = 162873, - [SMALL_STATE(5971)] = 162940, - [SMALL_STATE(5972)] = 162997, - [SMALL_STATE(5973)] = 163072, - [SMALL_STATE(5974)] = 163131, - [SMALL_STATE(5975)] = 163198, - [SMALL_STATE(5976)] = 163261, - [SMALL_STATE(5977)] = 163318, - [SMALL_STATE(5978)] = 163375, - [SMALL_STATE(5979)] = 163432, - [SMALL_STATE(5980)] = 163495, - [SMALL_STATE(5981)] = 163552, - [SMALL_STATE(5982)] = 163609, - [SMALL_STATE(5983)] = 163666, - [SMALL_STATE(5984)] = 163735, - [SMALL_STATE(5985)] = 163792, - [SMALL_STATE(5986)] = 163849, - [SMALL_STATE(5987)] = 163906, - [SMALL_STATE(5988)] = 163963, - [SMALL_STATE(5989)] = 164020, - [SMALL_STATE(5990)] = 164083, - [SMALL_STATE(5991)] = 164140, - [SMALL_STATE(5992)] = 164197, - [SMALL_STATE(5993)] = 164254, - [SMALL_STATE(5994)] = 164317, - [SMALL_STATE(5995)] = 164386, - [SMALL_STATE(5996)] = 164451, - [SMALL_STATE(5997)] = 164514, - [SMALL_STATE(5998)] = 164571, - [SMALL_STATE(5999)] = 164628, - [SMALL_STATE(6000)] = 164691, - [SMALL_STATE(6001)] = 164754, - [SMALL_STATE(6002)] = 164823, - [SMALL_STATE(6003)] = 164898, - [SMALL_STATE(6004)] = 164961, - [SMALL_STATE(6005)] = 165018, - [SMALL_STATE(6006)] = 165081, - [SMALL_STATE(6007)] = 165150, - [SMALL_STATE(6008)] = 165207, - [SMALL_STATE(6009)] = 165264, - [SMALL_STATE(6010)] = 165321, - [SMALL_STATE(6011)] = 165384, - [SMALL_STATE(6012)] = 165459, - [SMALL_STATE(6013)] = 165528, - [SMALL_STATE(6014)] = 165597, - [SMALL_STATE(6015)] = 165654, - [SMALL_STATE(6016)] = 165723, - [SMALL_STATE(6017)] = 165780, - [SMALL_STATE(6018)] = 165873, - [SMALL_STATE(6019)] = 165930, - [SMALL_STATE(6020)] = 165991, - [SMALL_STATE(6021)] = 166060, - [SMALL_STATE(6022)] = 166129, - [SMALL_STATE(6023)] = 166198, - [SMALL_STATE(6024)] = 166255, - [SMALL_STATE(6025)] = 166312, - [SMALL_STATE(6026)] = 166369, - [SMALL_STATE(6027)] = 166425, - [SMALL_STATE(6028)] = 166481, - [SMALL_STATE(6029)] = 166537, - [SMALL_STATE(6030)] = 166593, - [SMALL_STATE(6031)] = 166649, - [SMALL_STATE(6032)] = 166705, - [SMALL_STATE(6033)] = 166761, - [SMALL_STATE(6034)] = 166817, - [SMALL_STATE(6035)] = 166873, - [SMALL_STATE(6036)] = 166929, - [SMALL_STATE(6037)] = 166985, - [SMALL_STATE(6038)] = 167041, - [SMALL_STATE(6039)] = 167145, - [SMALL_STATE(6040)] = 167201, - [SMALL_STATE(6041)] = 167257, - [SMALL_STATE(6042)] = 167313, - [SMALL_STATE(6043)] = 167369, - [SMALL_STATE(6044)] = 167425, - [SMALL_STATE(6045)] = 167481, - [SMALL_STATE(6046)] = 167537, - [SMALL_STATE(6047)] = 167593, - [SMALL_STATE(6048)] = 167649, - [SMALL_STATE(6049)] = 167705, - [SMALL_STATE(6050)] = 167761, - [SMALL_STATE(6051)] = 167817, - [SMALL_STATE(6052)] = 167873, - [SMALL_STATE(6053)] = 167929, - [SMALL_STATE(6054)] = 167997, - [SMALL_STATE(6055)] = 168053, - [SMALL_STATE(6056)] = 168109, - [SMALL_STATE(6057)] = 168165, - [SMALL_STATE(6058)] = 168221, - [SMALL_STATE(6059)] = 168277, - [SMALL_STATE(6060)] = 168333, - [SMALL_STATE(6061)] = 168389, - [SMALL_STATE(6062)] = 168445, - [SMALL_STATE(6063)] = 168501, - [SMALL_STATE(6064)] = 168557, - [SMALL_STATE(6065)] = 168613, - [SMALL_STATE(6066)] = 168669, - [SMALL_STATE(6067)] = 168733, - [SMALL_STATE(6068)] = 168789, - [SMALL_STATE(6069)] = 168883, - [SMALL_STATE(6070)] = 168977, - [SMALL_STATE(6071)] = 169033, - [SMALL_STATE(6072)] = 169089, - [SMALL_STATE(6073)] = 169145, - [SMALL_STATE(6074)] = 169201, - [SMALL_STATE(6075)] = 169257, - [SMALL_STATE(6076)] = 169313, - [SMALL_STATE(6077)] = 169369, - [SMALL_STATE(6078)] = 169425, - [SMALL_STATE(6079)] = 169481, - [SMALL_STATE(6080)] = 169587, - [SMALL_STATE(6081)] = 169643, - [SMALL_STATE(6082)] = 169699, - [SMALL_STATE(6083)] = 169755, - [SMALL_STATE(6084)] = 169811, - [SMALL_STATE(6085)] = 169867, - [SMALL_STATE(6086)] = 169923, - [SMALL_STATE(6087)] = 169985, - [SMALL_STATE(6088)] = 170041, - [SMALL_STATE(6089)] = 170097, - [SMALL_STATE(6090)] = 170153, - [SMALL_STATE(6091)] = 170209, - [SMALL_STATE(6092)] = 170265, - [SMALL_STATE(6093)] = 170321, - [SMALL_STATE(6094)] = 170377, - [SMALL_STATE(6095)] = 170433, - [SMALL_STATE(6096)] = 170489, - [SMALL_STATE(6097)] = 170545, - [SMALL_STATE(6098)] = 170601, - [SMALL_STATE(6099)] = 170657, - [SMALL_STATE(6100)] = 170713, - [SMALL_STATE(6101)] = 170769, - [SMALL_STATE(6102)] = 170825, - [SMALL_STATE(6103)] = 170881, - [SMALL_STATE(6104)] = 170937, - [SMALL_STATE(6105)] = 170993, - [SMALL_STATE(6106)] = 171049, - [SMALL_STATE(6107)] = 171105, - [SMALL_STATE(6108)] = 171161, - [SMALL_STATE(6109)] = 171217, - [SMALL_STATE(6110)] = 171273, - [SMALL_STATE(6111)] = 171329, - [SMALL_STATE(6112)] = 171393, - [SMALL_STATE(6113)] = 171449, - [SMALL_STATE(6114)] = 171505, - [SMALL_STATE(6115)] = 171569, - [SMALL_STATE(6116)] = 171625, - [SMALL_STATE(6117)] = 171689, - [SMALL_STATE(6118)] = 171745, - [SMALL_STATE(6119)] = 171809, - [SMALL_STATE(6120)] = 171873, - [SMALL_STATE(6121)] = 171941, - [SMALL_STATE(6122)] = 172005, - [SMALL_STATE(6123)] = 172061, - [SMALL_STATE(6124)] = 172125, - [SMALL_STATE(6125)] = 172189, - [SMALL_STATE(6126)] = 172245, - [SMALL_STATE(6127)] = 172309, - [SMALL_STATE(6128)] = 172365, - [SMALL_STATE(6129)] = 172429, - [SMALL_STATE(6130)] = 172485, - [SMALL_STATE(6131)] = 172540, - [SMALL_STATE(6132)] = 172595, - [SMALL_STATE(6133)] = 172686, - [SMALL_STATE(6134)] = 172755, - [SMALL_STATE(6135)] = 172810, - [SMALL_STATE(6136)] = 172883, - [SMALL_STATE(6137)] = 172952, - [SMALL_STATE(6138)] = 173007, - [SMALL_STATE(6139)] = 173062, - [SMALL_STATE(6140)] = 173117, - [SMALL_STATE(6141)] = 173208, - [SMALL_STATE(6142)] = 173281, - [SMALL_STATE(6143)] = 173336, - [SMALL_STATE(6144)] = 173391, - [SMALL_STATE(6145)] = 173460, - [SMALL_STATE(6146)] = 173515, - [SMALL_STATE(6147)] = 173570, - [SMALL_STATE(6148)] = 173632, - [SMALL_STATE(6149)] = 173694, - [SMALL_STATE(6150)] = 173756, - [SMALL_STATE(6151)] = 173818, - [SMALL_STATE(6152)] = 173880, - [SMALL_STATE(6153)] = 173942, - [SMALL_STATE(6154)] = 174032, - [SMALL_STATE(6155)] = 174096, - [SMALL_STATE(6156)] = 174162, - [SMALL_STATE(6157)] = 174224, - [SMALL_STATE(6158)] = 174288, - [SMALL_STATE(6159)] = 174350, - [SMALL_STATE(6160)] = 174442, - [SMALL_STATE(6161)] = 174508, - [SMALL_STATE(6162)] = 174570, - [SMALL_STATE(6163)] = 174636, - [SMALL_STATE(6164)] = 174702, - [SMALL_STATE(6165)] = 174768, - [SMALL_STATE(6166)] = 174832, - [SMALL_STATE(6167)] = 174894, - [SMALL_STATE(6168)] = 174960, - [SMALL_STATE(6169)] = 175032, - [SMALL_STATE(6170)] = 175094, - [SMALL_STATE(6171)] = 175156, - [SMALL_STATE(6172)] = 175218, - [SMALL_STATE(6173)] = 175310, - [SMALL_STATE(6174)] = 175402, - [SMALL_STATE(6175)] = 175504, - [SMALL_STATE(6176)] = 175566, - [SMALL_STATE(6177)] = 175658, - [SMALL_STATE(6178)] = 175720, - [SMALL_STATE(6179)] = 175774, - [SMALL_STATE(6180)] = 175836, - [SMALL_STATE(6181)] = 175926, - [SMALL_STATE(6182)] = 175988, - [SMALL_STATE(6183)] = 176050, - [SMALL_STATE(6184)] = 176152, - [SMALL_STATE(6185)] = 176214, - [SMALL_STATE(6186)] = 176316, - [SMALL_STATE(6187)] = 176378, - [SMALL_STATE(6188)] = 176432, - [SMALL_STATE(6189)] = 176490, - [SMALL_STATE(6190)] = 176556, - [SMALL_STATE(6191)] = 176612, - [SMALL_STATE(6192)] = 176678, - [SMALL_STATE(6193)] = 176744, - [SMALL_STATE(6194)] = 176808, - [SMALL_STATE(6195)] = 176897, - [SMALL_STATE(6196)] = 176986, - [SMALL_STATE(6197)] = 177075, - [SMALL_STATE(6198)] = 177128, - [SMALL_STATE(6199)] = 177217, - [SMALL_STATE(6200)] = 177306, - [SMALL_STATE(6201)] = 177359, - [SMALL_STATE(6202)] = 177412, - [SMALL_STATE(6203)] = 177501, - [SMALL_STATE(6204)] = 177554, - [SMALL_STATE(6205)] = 177607, - [SMALL_STATE(6206)] = 177688, - [SMALL_STATE(6207)] = 177777, - [SMALL_STATE(6208)] = 177866, - [SMALL_STATE(6209)] = 177919, - [SMALL_STATE(6210)] = 177972, - [SMALL_STATE(6211)] = 178035, - [SMALL_STATE(6212)] = 178124, - [SMALL_STATE(6213)] = 178177, - [SMALL_STATE(6214)] = 178266, - [SMALL_STATE(6215)] = 178355, - [SMALL_STATE(6216)] = 178436, - [SMALL_STATE(6217)] = 178489, - [SMALL_STATE(6218)] = 178544, - [SMALL_STATE(6219)] = 178597, - [SMALL_STATE(6220)] = 178686, - [SMALL_STATE(6221)] = 178739, - [SMALL_STATE(6222)] = 178792, - [SMALL_STATE(6223)] = 178881, - [SMALL_STATE(6224)] = 178970, - [SMALL_STATE(6225)] = 179059, - [SMALL_STATE(6226)] = 179148, - [SMALL_STATE(6227)] = 179201, - [SMALL_STATE(6228)] = 179254, - [SMALL_STATE(6229)] = 179307, - [SMALL_STATE(6230)] = 179360, - [SMALL_STATE(6231)] = 179449, - [SMALL_STATE(6232)] = 179538, - [SMALL_STATE(6233)] = 179627, - [SMALL_STATE(6234)] = 179680, - [SMALL_STATE(6235)] = 179761, - [SMALL_STATE(6236)] = 179842, - [SMALL_STATE(6237)] = 179895, - [SMALL_STATE(6238)] = 179948, - [SMALL_STATE(6239)] = 180037, - [SMALL_STATE(6240)] = 180126, - [SMALL_STATE(6241)] = 180179, - [SMALL_STATE(6242)] = 180268, - [SMALL_STATE(6243)] = 180357, - [SMALL_STATE(6244)] = 180446, - [SMALL_STATE(6245)] = 180499, - [SMALL_STATE(6246)] = 180552, - [SMALL_STATE(6247)] = 180605, - [SMALL_STATE(6248)] = 180694, - [SMALL_STATE(6249)] = 180747, - [SMALL_STATE(6250)] = 180802, - [SMALL_STATE(6251)] = 180855, - [SMALL_STATE(6252)] = 180908, - [SMALL_STATE(6253)] = 180989, - [SMALL_STATE(6254)] = 181078, - [SMALL_STATE(6255)] = 181131, - [SMALL_STATE(6256)] = 181220, - [SMALL_STATE(6257)] = 181289, - [SMALL_STATE(6258)] = 181378, - [SMALL_STATE(6259)] = 181467, - [SMALL_STATE(6260)] = 181556, - [SMALL_STATE(6261)] = 181637, - [SMALL_STATE(6262)] = 181690, - [SMALL_STATE(6263)] = 181743, - [SMALL_STATE(6264)] = 181823, - [SMALL_STATE(6265)] = 181903, - [SMALL_STATE(6266)] = 181991, - [SMALL_STATE(6267)] = 182079, - [SMALL_STATE(6268)] = 182143, - [SMALL_STATE(6269)] = 182207, - [SMALL_STATE(6270)] = 182271, - [SMALL_STATE(6271)] = 182335, - [SMALL_STATE(6272)] = 182399, - [SMALL_STATE(6273)] = 182463, - [SMALL_STATE(6274)] = 182527, - [SMALL_STATE(6275)] = 182591, - [SMALL_STATE(6276)] = 182661, - [SMALL_STATE(6277)] = 182725, - [SMALL_STATE(6278)] = 182789, - [SMALL_STATE(6279)] = 182853, - [SMALL_STATE(6280)] = 182917, - [SMALL_STATE(6281)] = 182987, - [SMALL_STATE(6282)] = 183051, - [SMALL_STATE(6283)] = 183107, - [SMALL_STATE(6284)] = 183187, - [SMALL_STATE(6285)] = 183247, - [SMALL_STATE(6286)] = 183327, - [SMALL_STATE(6287)] = 183391, - [SMALL_STATE(6288)] = 183471, - [SMALL_STATE(6289)] = 183531, - [SMALL_STATE(6290)] = 183611, - [SMALL_STATE(6291)] = 183675, - [SMALL_STATE(6292)] = 183739, - [SMALL_STATE(6293)] = 183798, - [SMALL_STATE(6294)] = 183883, - [SMALL_STATE(6295)] = 183942, - [SMALL_STATE(6296)] = 184001, - [SMALL_STATE(6297)] = 184086, - [SMALL_STATE(6298)] = 184145, - [SMALL_STATE(6299)] = 184216, - [SMALL_STATE(6300)] = 184275, - [SMALL_STATE(6301)] = 184334, - [SMALL_STATE(6302)] = 184437, - [SMALL_STATE(6303)] = 184496, - [SMALL_STATE(6304)] = 184561, - [SMALL_STATE(6305)] = 184646, - [SMALL_STATE(6306)] = 184705, - [SMALL_STATE(6307)] = 184764, - [SMALL_STATE(6308)] = 184859, - [SMALL_STATE(6309)] = 184918, - [SMALL_STATE(6310)] = 184987, - [SMALL_STATE(6311)] = 185072, - [SMALL_STATE(6312)] = 185131, - [SMALL_STATE(6313)] = 185228, - [SMALL_STATE(6314)] = 185327, - [SMALL_STATE(6315)] = 185386, - [SMALL_STATE(6316)] = 185445, - [SMALL_STATE(6317)] = 185504, - [SMALL_STATE(6318)] = 185565, - [SMALL_STATE(6319)] = 185624, - [SMALL_STATE(6320)] = 185683, - [SMALL_STATE(6321)] = 185742, - [SMALL_STATE(6322)] = 185801, - [SMALL_STATE(6323)] = 185860, - [SMALL_STATE(6324)] = 185919, - [SMALL_STATE(6325)] = 185978, - [SMALL_STATE(6326)] = 186045, - [SMALL_STATE(6327)] = 186104, - [SMALL_STATE(6328)] = 186203, - [SMALL_STATE(6329)] = 186302, - [SMALL_STATE(6330)] = 186361, - [SMALL_STATE(6331)] = 186464, - [SMALL_STATE(6332)] = 186523, - [SMALL_STATE(6333)] = 186582, - [SMALL_STATE(6334)] = 186673, - [SMALL_STATE(6335)] = 186732, - [SMALL_STATE(6336)] = 186819, - [SMALL_STATE(6337)] = 186878, - [SMALL_STATE(6338)] = 186977, - [SMALL_STATE(6339)] = 187080, - [SMALL_STATE(6340)] = 187139, - [SMALL_STATE(6341)] = 187204, - [SMALL_STATE(6342)] = 187263, - [SMALL_STATE(6343)] = 187342, - [SMALL_STATE(6344)] = 187415, - [SMALL_STATE(6345)] = 187474, - [SMALL_STATE(6346)] = 187525, - [SMALL_STATE(6347)] = 187584, - [SMALL_STATE(6348)] = 187659, - [SMALL_STATE(6349)] = 187748, - [SMALL_STATE(6350)] = 187807, - [SMALL_STATE(6351)] = 187866, - [SMALL_STATE(6352)] = 187953, - [SMALL_STATE(6353)] = 188038, - [SMALL_STATE(6354)] = 188097, - [SMALL_STATE(6355)] = 188196, - [SMALL_STATE(6356)] = 188281, - [SMALL_STATE(6357)] = 188334, - [SMALL_STATE(6358)] = 188393, - [SMALL_STATE(6359)] = 188452, - [SMALL_STATE(6360)] = 188551, - [SMALL_STATE(6361)] = 188612, - [SMALL_STATE(6362)] = 188671, - [SMALL_STATE(6363)] = 188730, - [SMALL_STATE(6364)] = 188789, - [SMALL_STATE(6365)] = 188874, - [SMALL_STATE(6366)] = 188957, - [SMALL_STATE(6367)] = 189016, - [SMALL_STATE(6368)] = 189101, - [SMALL_STATE(6369)] = 189160, - [SMALL_STATE(6370)] = 189219, - [SMALL_STATE(6371)] = 189322, - [SMALL_STATE(6372)] = 189387, - [SMALL_STATE(6373)] = 189448, - [SMALL_STATE(6374)] = 189507, - [SMALL_STATE(6375)] = 189572, - [SMALL_STATE(6376)] = 189631, - [SMALL_STATE(6377)] = 189716, - [SMALL_STATE(6378)] = 189772, - [SMALL_STATE(6379)] = 189878, - [SMALL_STATE(6380)] = 189940, - [SMALL_STATE(6381)] = 190032, - [SMALL_STATE(6382)] = 190094, - [SMALL_STATE(6383)] = 190200, - [SMALL_STATE(6384)] = 190292, - [SMALL_STATE(6385)] = 190342, - [SMALL_STATE(6386)] = 190434, - [SMALL_STATE(6387)] = 190486, - [SMALL_STATE(6388)] = 190536, - [SMALL_STATE(6389)] = 190586, - [SMALL_STATE(6390)] = 190660, - [SMALL_STATE(6391)] = 190734, - [SMALL_STATE(6392)] = 190826, - [SMALL_STATE(6393)] = 190900, - [SMALL_STATE(6394)] = 190954, - [SMALL_STATE(6395)] = 191060, - [SMALL_STATE(6396)] = 191114, - [SMALL_STATE(6397)] = 191206, - [SMALL_STATE(6398)] = 191260, - [SMALL_STATE(6399)] = 191352, - [SMALL_STATE(6400)] = 191426, - [SMALL_STATE(6401)] = 191480, - [SMALL_STATE(6402)] = 191546, - [SMALL_STATE(6403)] = 191598, - [SMALL_STATE(6404)] = 191652, - [SMALL_STATE(6405)] = 191702, - [SMALL_STATE(6406)] = 191752, - [SMALL_STATE(6407)] = 191844, - [SMALL_STATE(6408)] = 191936, - [SMALL_STATE(6409)] = 191990, - [SMALL_STATE(6410)] = 192076, - [SMALL_STATE(6411)] = 192162, - [SMALL_STATE(6412)] = 192254, - [SMALL_STATE(6413)] = 192308, - [SMALL_STATE(6414)] = 192400, - [SMALL_STATE(6415)] = 192492, - [SMALL_STATE(6416)] = 192584, - [SMALL_STATE(6417)] = 192676, - [SMALL_STATE(6418)] = 192750, - [SMALL_STATE(6419)] = 192842, - [SMALL_STATE(6420)] = 192892, - [SMALL_STATE(6421)] = 192950, - [SMALL_STATE(6422)] = 193042, - [SMALL_STATE(6423)] = 193136, - [SMALL_STATE(6424)] = 193228, - [SMALL_STATE(6425)] = 193282, - [SMALL_STATE(6426)] = 193332, - [SMALL_STATE(6427)] = 193398, - [SMALL_STATE(6428)] = 193456, - [SMALL_STATE(6429)] = 193547, - [SMALL_STATE(6430)] = 193642, - [SMALL_STATE(6431)] = 193691, - [SMALL_STATE(6432)] = 193758, - [SMALL_STATE(6433)] = 193847, - [SMALL_STATE(6434)] = 193934, - [SMALL_STATE(6435)] = 194019, - [SMALL_STATE(6436)] = 194114, - [SMALL_STATE(6437)] = 194193, - [SMALL_STATE(6438)] = 194270, - [SMALL_STATE(6439)] = 194327, - [SMALL_STATE(6440)] = 194400, - [SMALL_STATE(6441)] = 194469, - [SMALL_STATE(6442)] = 194526, - [SMALL_STATE(6443)] = 194575, - [SMALL_STATE(6444)] = 194632, - [SMALL_STATE(6445)] = 194681, - [SMALL_STATE(6446)] = 194730, - [SMALL_STATE(6447)] = 194787, - [SMALL_STATE(6448)] = 194858, - [SMALL_STATE(6449)] = 194907, - [SMALL_STATE(6450)] = 194956, - [SMALL_STATE(6451)] = 195041, - [SMALL_STATE(6452)] = 195116, - [SMALL_STATE(6453)] = 195191, - [SMALL_STATE(6454)] = 195240, - [SMALL_STATE(6455)] = 195289, - [SMALL_STATE(6456)] = 195374, - [SMALL_STATE(6457)] = 195427, - [SMALL_STATE(6458)] = 195480, - [SMALL_STATE(6459)] = 195555, - [SMALL_STATE(6460)] = 195630, - [SMALL_STATE(6461)] = 195679, - [SMALL_STATE(6462)] = 195728, - [SMALL_STATE(6463)] = 195777, - [SMALL_STATE(6464)] = 195830, - [SMALL_STATE(6465)] = 195905, - [SMALL_STATE(6466)] = 195954, - [SMALL_STATE(6467)] = 196003, - [SMALL_STATE(6468)] = 196058, - [SMALL_STATE(6469)] = 196107, - [SMALL_STATE(6470)] = 196182, - [SMALL_STATE(6471)] = 196239, - [SMALL_STATE(6472)] = 196296, - [SMALL_STATE(6473)] = 196353, - [SMALL_STATE(6474)] = 196410, - [SMALL_STATE(6475)] = 196475, - [SMALL_STATE(6476)] = 196566, - [SMALL_STATE(6477)] = 196615, - [SMALL_STATE(6478)] = 196664, - [SMALL_STATE(6479)] = 196753, - [SMALL_STATE(6480)] = 196844, - [SMALL_STATE(6481)] = 196939, - [SMALL_STATE(6482)] = 197028, - [SMALL_STATE(6483)] = 197119, - [SMALL_STATE(6484)] = 197210, - [SMALL_STATE(6485)] = 197299, - [SMALL_STATE(6486)] = 197388, - [SMALL_STATE(6487)] = 197477, - [SMALL_STATE(6488)] = 197568, - [SMALL_STATE(6489)] = 197657, - [SMALL_STATE(6490)] = 197746, - [SMALL_STATE(6491)] = 197803, - [SMALL_STATE(6492)] = 197856, - [SMALL_STATE(6493)] = 197905, - [SMALL_STATE(6494)] = 197962, - [SMALL_STATE(6495)] = 198019, - [SMALL_STATE(6496)] = 198076, - [SMALL_STATE(6497)] = 198133, - [SMALL_STATE(6498)] = 198190, - [SMALL_STATE(6499)] = 198247, - [SMALL_STATE(6500)] = 198304, - [SMALL_STATE(6501)] = 198393, - [SMALL_STATE(6502)] = 198446, - [SMALL_STATE(6503)] = 198529, - [SMALL_STATE(6504)] = 198621, - [SMALL_STATE(6505)] = 198689, - [SMALL_STATE(6506)] = 198747, - [SMALL_STATE(6507)] = 198823, - [SMALL_STATE(6508)] = 198899, - [SMALL_STATE(6509)] = 198975, - [SMALL_STATE(6510)] = 199033, - [SMALL_STATE(6511)] = 199103, - [SMALL_STATE(6512)] = 199161, - [SMALL_STATE(6513)] = 199251, - [SMALL_STATE(6514)] = 199309, - [SMALL_STATE(6515)] = 199367, - [SMALL_STATE(6516)] = 199425, - [SMALL_STATE(6517)] = 199517, - [SMALL_STATE(6518)] = 199609, - [SMALL_STATE(6519)] = 199701, - [SMALL_STATE(6520)] = 199797, - [SMALL_STATE(6521)] = 199889, - [SMALL_STATE(6522)] = 199985, - [SMALL_STATE(6523)] = 200033, - [SMALL_STATE(6524)] = 200081, - [SMALL_STATE(6525)] = 200173, - [SMALL_STATE(6526)] = 200269, - [SMALL_STATE(6527)] = 200327, - [SMALL_STATE(6528)] = 200385, - [SMALL_STATE(6529)] = 200461, - [SMALL_STATE(6530)] = 200561, - [SMALL_STATE(6531)] = 200649, - [SMALL_STATE(6532)] = 200745, - [SMALL_STATE(6533)] = 200847, - [SMALL_STATE(6534)] = 200931, - [SMALL_STATE(6535)] = 200989, - [SMALL_STATE(6536)] = 201047, - [SMALL_STATE(6537)] = 201095, - [SMALL_STATE(6538)] = 201161, - [SMALL_STATE(6539)] = 201243, - [SMALL_STATE(6540)] = 201291, - [SMALL_STATE(6541)] = 201349, - [SMALL_STATE(6542)] = 201427, - [SMALL_STATE(6543)] = 201485, - [SMALL_STATE(6544)] = 201561, - [SMALL_STATE(6545)] = 201619, - [SMALL_STATE(6546)] = 201715, - [SMALL_STATE(6547)] = 201771, - [SMALL_STATE(6548)] = 201827, - [SMALL_STATE(6549)] = 201883, - [SMALL_STATE(6550)] = 201959, - [SMALL_STATE(6551)] = 202015, - [SMALL_STATE(6552)] = 202071, - [SMALL_STATE(6553)] = 202127, - [SMALL_STATE(6554)] = 202183, - [SMALL_STATE(6555)] = 202239, - [SMALL_STATE(6556)] = 202311, - [SMALL_STATE(6557)] = 202387, - [SMALL_STATE(6558)] = 202434, - [SMALL_STATE(6559)] = 202531, - [SMALL_STATE(6560)] = 202628, - [SMALL_STATE(6561)] = 202681, - [SMALL_STATE(6562)] = 202778, - [SMALL_STATE(6563)] = 202825, - [SMALL_STATE(6564)] = 202922, - [SMALL_STATE(6565)] = 203019, - [SMALL_STATE(6566)] = 203116, - [SMALL_STATE(6567)] = 203211, - [SMALL_STATE(6568)] = 203300, - [SMALL_STATE(6569)] = 203353, - [SMALL_STATE(6570)] = 203406, - [SMALL_STATE(6571)] = 203453, - [SMALL_STATE(6572)] = 203500, - [SMALL_STATE(6573)] = 203597, - [SMALL_STATE(6574)] = 203650, - [SMALL_STATE(6575)] = 203697, - [SMALL_STATE(6576)] = 203750, - [SMALL_STATE(6577)] = 203797, - [SMALL_STATE(6578)] = 203850, - [SMALL_STATE(6579)] = 203947, - [SMALL_STATE(6580)] = 204002, - [SMALL_STATE(6581)] = 204051, - [SMALL_STATE(6582)] = 204104, - [SMALL_STATE(6583)] = 204157, - [SMALL_STATE(6584)] = 204230, - [SMALL_STATE(6585)] = 204277, - [SMALL_STATE(6586)] = 204374, - [SMALL_STATE(6587)] = 204447, - [SMALL_STATE(6588)] = 204520, - [SMALL_STATE(6589)] = 204567, - [SMALL_STATE(6590)] = 204664, - [SMALL_STATE(6591)] = 204761, - [SMALL_STATE(6592)] = 204808, - [SMALL_STATE(6593)] = 204905, - [SMALL_STATE(6594)] = 205002, - [SMALL_STATE(6595)] = 205075, - [SMALL_STATE(6596)] = 205148, - [SMALL_STATE(6597)] = 205201, - [SMALL_STATE(6598)] = 205274, - [SMALL_STATE(6599)] = 205327, - [SMALL_STATE(6600)] = 205424, - [SMALL_STATE(6601)] = 205473, - [SMALL_STATE(6602)] = 205520, - [SMALL_STATE(6603)] = 205567, - [SMALL_STATE(6604)] = 205662, - [SMALL_STATE(6605)] = 205759, - [SMALL_STATE(6606)] = 205856, - [SMALL_STATE(6607)] = 205953, - [SMALL_STATE(6608)] = 206000, - [SMALL_STATE(6609)] = 206047, - [SMALL_STATE(6610)] = 206144, - [SMALL_STATE(6611)] = 206197, - [SMALL_STATE(6612)] = 206244, - [SMALL_STATE(6613)] = 206297, - [SMALL_STATE(6614)] = 206344, - [SMALL_STATE(6615)] = 206393, - [SMALL_STATE(6616)] = 206440, - [SMALL_STATE(6617)] = 206487, - [SMALL_STATE(6618)] = 206534, - [SMALL_STATE(6619)] = 206631, - [SMALL_STATE(6620)] = 206728, - [SMALL_STATE(6621)] = 206825, - [SMALL_STATE(6622)] = 206922, - [SMALL_STATE(6623)] = 206969, - [SMALL_STATE(6624)] = 207016, - [SMALL_STATE(6625)] = 207063, - [SMALL_STATE(6626)] = 207110, - [SMALL_STATE(6627)] = 207157, - [SMALL_STATE(6628)] = 207254, - [SMALL_STATE(6629)] = 207351, - [SMALL_STATE(6630)] = 207448, - [SMALL_STATE(6631)] = 207495, - [SMALL_STATE(6632)] = 207542, - [SMALL_STATE(6633)] = 207589, - [SMALL_STATE(6634)] = 207636, - [SMALL_STATE(6635)] = 207733, - [SMALL_STATE(6636)] = 207780, - [SMALL_STATE(6637)] = 207829, - [SMALL_STATE(6638)] = 207876, - [SMALL_STATE(6639)] = 207923, - [SMALL_STATE(6640)] = 207970, - [SMALL_STATE(6641)] = 208017, - [SMALL_STATE(6642)] = 208064, - [SMALL_STATE(6643)] = 208127, - [SMALL_STATE(6644)] = 208174, - [SMALL_STATE(6645)] = 208271, - [SMALL_STATE(6646)] = 208318, - [SMALL_STATE(6647)] = 208415, - [SMALL_STATE(6648)] = 208466, - [SMALL_STATE(6649)] = 208563, - [SMALL_STATE(6650)] = 208610, - [SMALL_STATE(6651)] = 208661, - [SMALL_STATE(6652)] = 208708, - [SMALL_STATE(6653)] = 208771, - [SMALL_STATE(6654)] = 208868, - [SMALL_STATE(6655)] = 208965, - [SMALL_STATE(6656)] = 209012, - [SMALL_STATE(6657)] = 209059, - [SMALL_STATE(6658)] = 209106, - [SMALL_STATE(6659)] = 209153, - [SMALL_STATE(6660)] = 209250, - [SMALL_STATE(6661)] = 209347, - [SMALL_STATE(6662)] = 209394, - [SMALL_STATE(6663)] = 209441, - [SMALL_STATE(6664)] = 209488, - [SMALL_STATE(6665)] = 209577, - [SMALL_STATE(6666)] = 209624, - [SMALL_STATE(6667)] = 209721, - [SMALL_STATE(6668)] = 209768, - [SMALL_STATE(6669)] = 209865, - [SMALL_STATE(6670)] = 209962, - [SMALL_STATE(6671)] = 210059, - [SMALL_STATE(6672)] = 210156, - [SMALL_STATE(6673)] = 210253, - [SMALL_STATE(6674)] = 210350, - [SMALL_STATE(6675)] = 210447, - [SMALL_STATE(6676)] = 210494, - [SMALL_STATE(6677)] = 210541, - [SMALL_STATE(6678)] = 210588, - [SMALL_STATE(6679)] = 210685, - [SMALL_STATE(6680)] = 210782, - [SMALL_STATE(6681)] = 210879, - [SMALL_STATE(6682)] = 210926, - [SMALL_STATE(6683)] = 210973, - [SMALL_STATE(6684)] = 211070, - [SMALL_STATE(6685)] = 211123, - [SMALL_STATE(6686)] = 211170, - [SMALL_STATE(6687)] = 211267, - [SMALL_STATE(6688)] = 211364, - [SMALL_STATE(6689)] = 211461, - [SMALL_STATE(6690)] = 211558, - [SMALL_STATE(6691)] = 211607, - [SMALL_STATE(6692)] = 211656, - [SMALL_STATE(6693)] = 211703, - [SMALL_STATE(6694)] = 211750, - [SMALL_STATE(6695)] = 211847, - [SMALL_STATE(6696)] = 211894, - [SMALL_STATE(6697)] = 211991, - [SMALL_STATE(6698)] = 212038, - [SMALL_STATE(6699)] = 212085, - [SMALL_STATE(6700)] = 212136, - [SMALL_STATE(6701)] = 212183, - [SMALL_STATE(6702)] = 212230, - [SMALL_STATE(6703)] = 212327, - [SMALL_STATE(6704)] = 212424, - [SMALL_STATE(6705)] = 212477, - [SMALL_STATE(6706)] = 212540, - [SMALL_STATE(6707)] = 212587, - [SMALL_STATE(6708)] = 212634, - [SMALL_STATE(6709)] = 212681, - [SMALL_STATE(6710)] = 212728, - [SMALL_STATE(6711)] = 212775, - [SMALL_STATE(6712)] = 212822, - [SMALL_STATE(6713)] = 212869, - [SMALL_STATE(6714)] = 212922, - [SMALL_STATE(6715)] = 212977, - [SMALL_STATE(6716)] = 213024, - [SMALL_STATE(6717)] = 213071, - [SMALL_STATE(6718)] = 213118, - [SMALL_STATE(6719)] = 213165, - [SMALL_STATE(6720)] = 213212, - [SMALL_STATE(6721)] = 213259, - [SMALL_STATE(6722)] = 213306, - [SMALL_STATE(6723)] = 213353, - [SMALL_STATE(6724)] = 213450, - [SMALL_STATE(6725)] = 213530, - [SMALL_STATE(6726)] = 213604, - [SMALL_STATE(6727)] = 213676, - [SMALL_STATE(6728)] = 213748, - [SMALL_STATE(6729)] = 213820, - [SMALL_STATE(6730)] = 213886, - [SMALL_STATE(6731)] = 213940, - [SMALL_STATE(6732)] = 214034, - [SMALL_STATE(6733)] = 214122, - [SMALL_STATE(6734)] = 214216, - [SMALL_STATE(6735)] = 214286, - [SMALL_STATE(6736)] = 214380, - [SMALL_STATE(6737)] = 214472, - [SMALL_STATE(6738)] = 214526, - [SMALL_STATE(6739)] = 214586, - [SMALL_STATE(6740)] = 214646, - [SMALL_STATE(6741)] = 214740, - [SMALL_STATE(6742)] = 214812, - [SMALL_STATE(6743)] = 214904, - [SMALL_STATE(6744)] = 214958, - [SMALL_STATE(6745)] = 215052, - [SMALL_STATE(6746)] = 215106, - [SMALL_STATE(6747)] = 215180, - [SMALL_STATE(6748)] = 215274, - [SMALL_STATE(6749)] = 215328, - [SMALL_STATE(6750)] = 215382, - [SMALL_STATE(6751)] = 215436, - [SMALL_STATE(6752)] = 215490, - [SMALL_STATE(6753)] = 215550, - [SMALL_STATE(6754)] = 215634, - [SMALL_STATE(6755)] = 215682, - [SMALL_STATE(6756)] = 215742, - [SMALL_STATE(6757)] = 215834, - [SMALL_STATE(6758)] = 215928, - [SMALL_STATE(6759)] = 216016, - [SMALL_STATE(6760)] = 216108, - [SMALL_STATE(6761)] = 216202, - [SMALL_STATE(6762)] = 216296, - [SMALL_STATE(6763)] = 216370, - [SMALL_STATE(6764)] = 216426, - [SMALL_STATE(6765)] = 216500, - [SMALL_STATE(6766)] = 216594, - [SMALL_STATE(6767)] = 216688, - [SMALL_STATE(6768)] = 216782, - [SMALL_STATE(6769)] = 216830, - [SMALL_STATE(6770)] = 216924, - [SMALL_STATE(6771)] = 217012, - [SMALL_STATE(6772)] = 217070, - [SMALL_STATE(6773)] = 217124, - [SMALL_STATE(6774)] = 217218, - [SMALL_STATE(6775)] = 217304, - [SMALL_STATE(6776)] = 217392, - [SMALL_STATE(6777)] = 217484, - [SMALL_STATE(6778)] = 217576, - [SMALL_STATE(6779)] = 217630, - [SMALL_STATE(6780)] = 217722, - [SMALL_STATE(6781)] = 217814, - [SMALL_STATE(6782)] = 217902, - [SMALL_STATE(6783)] = 217962, - [SMALL_STATE(6784)] = 218054, - [SMALL_STATE(6785)] = 218148, - [SMALL_STATE(6786)] = 218212, - [SMALL_STATE(6787)] = 218298, - [SMALL_STATE(6788)] = 218382, - [SMALL_STATE(6789)] = 218464, - [SMALL_STATE(6790)] = 218544, - [SMALL_STATE(6791)] = 218620, - [SMALL_STATE(6792)] = 218694, - [SMALL_STATE(6793)] = 218764, - [SMALL_STATE(6794)] = 218830, - [SMALL_STATE(6795)] = 218924, - [SMALL_STATE(6796)] = 218992, - [SMALL_STATE(6797)] = 219080, - [SMALL_STATE(6798)] = 219172, - [SMALL_STATE(6799)] = 219260, - [SMALL_STATE(6800)] = 219352, - [SMALL_STATE(6801)] = 219402, - [SMALL_STATE(6802)] = 219462, - [SMALL_STATE(6803)] = 219550, - [SMALL_STATE(6804)] = 219608, - [SMALL_STATE(6805)] = 219702, - [SMALL_STATE(6806)] = 219794, - [SMALL_STATE(6807)] = 219888, - [SMALL_STATE(6808)] = 219982, - [SMALL_STATE(6809)] = 220070, - [SMALL_STATE(6810)] = 220162, - [SMALL_STATE(6811)] = 220214, - [SMALL_STATE(6812)] = 220308, - [SMALL_STATE(6813)] = 220362, - [SMALL_STATE(6814)] = 220454, - [SMALL_STATE(6815)] = 220542, - [SMALL_STATE(6816)] = 220596, - [SMALL_STATE(6817)] = 220690, - [SMALL_STATE(6818)] = 220784, - [SMALL_STATE(6819)] = 220876, - [SMALL_STATE(6820)] = 220968, - [SMALL_STATE(6821)] = 221060, - [SMALL_STATE(6822)] = 221154, - [SMALL_STATE(6823)] = 221228, - [SMALL_STATE(6824)] = 221320, - [SMALL_STATE(6825)] = 221414, - [SMALL_STATE(6826)] = 221488, - [SMALL_STATE(6827)] = 221548, - [SMALL_STATE(6828)] = 221594, - [SMALL_STATE(6829)] = 221686, - [SMALL_STATE(6830)] = 221736, - [SMALL_STATE(6831)] = 221818, - [SMALL_STATE(6832)] = 221910, - [SMALL_STATE(6833)] = 222004, - [SMALL_STATE(6834)] = 222098, - [SMALL_STATE(6835)] = 222172, - [SMALL_STATE(6836)] = 222246, - [SMALL_STATE(6837)] = 222310, - [SMALL_STATE(6838)] = 222402, - [SMALL_STATE(6839)] = 222496, - [SMALL_STATE(6840)] = 222584, - [SMALL_STATE(6841)] = 222636, - [SMALL_STATE(6842)] = 222730, - [SMALL_STATE(6843)] = 222804, - [SMALL_STATE(6844)] = 222878, - [SMALL_STATE(6845)] = 222966, - [SMALL_STATE(6846)] = 223054, - [SMALL_STATE(6847)] = 223142, - [SMALL_STATE(6848)] = 223230, - [SMALL_STATE(6849)] = 223318, - [SMALL_STATE(6850)] = 223410, - [SMALL_STATE(6851)] = 223474, - [SMALL_STATE(6852)] = 223534, - [SMALL_STATE(6853)] = 223620, - [SMALL_STATE(6854)] = 223704, - [SMALL_STATE(6855)] = 223786, - [SMALL_STATE(6856)] = 223866, - [SMALL_STATE(6857)] = 223942, - [SMALL_STATE(6858)] = 224016, - [SMALL_STATE(6859)] = 224086, - [SMALL_STATE(6860)] = 224152, - [SMALL_STATE(6861)] = 224246, - [SMALL_STATE(6862)] = 224314, - [SMALL_STATE(6863)] = 224408, - [SMALL_STATE(6864)] = 224468, - [SMALL_STATE(6865)] = 224526, - [SMALL_STATE(6866)] = 224614, - [SMALL_STATE(6867)] = 224706, - [SMALL_STATE(6868)] = 224794, - [SMALL_STATE(6869)] = 224886, - [SMALL_STATE(6870)] = 224980, - [SMALL_STATE(6871)] = 225074, - [SMALL_STATE(6872)] = 225168, - [SMALL_STATE(6873)] = 225222, - [SMALL_STATE(6874)] = 225316, - [SMALL_STATE(6875)] = 225408, - [SMALL_STATE(6876)] = 225500, - [SMALL_STATE(6877)] = 225592, - [SMALL_STATE(6878)] = 225672, - [SMALL_STATE(6879)] = 225726, - [SMALL_STATE(6880)] = 225818, - [SMALL_STATE(6881)] = 225912, - [SMALL_STATE(6882)] = 226006, - [SMALL_STATE(6883)] = 226064, - [SMALL_STATE(6884)] = 226136, - [SMALL_STATE(6885)] = 226224, - [SMALL_STATE(6886)] = 226284, - [SMALL_STATE(6887)] = 226344, - [SMALL_STATE(6888)] = 226432, - [SMALL_STATE(6889)] = 226490, - [SMALL_STATE(6890)] = 226582, - [SMALL_STATE(6891)] = 226670, - [SMALL_STATE(6892)] = 226764, - [SMALL_STATE(6893)] = 226858, - [SMALL_STATE(6894)] = 226946, - [SMALL_STATE(6895)] = 227018, - [SMALL_STATE(6896)] = 227112, - [SMALL_STATE(6897)] = 227206, - [SMALL_STATE(6898)] = 227298, - [SMALL_STATE(6899)] = 227392, - [SMALL_STATE(6900)] = 227468, - [SMALL_STATE(6901)] = 227562, - [SMALL_STATE(6902)] = 227620, - [SMALL_STATE(6903)] = 227674, - [SMALL_STATE(6904)] = 227768, - [SMALL_STATE(6905)] = 227860, - [SMALL_STATE(6906)] = 227934, - [SMALL_STATE(6907)] = 228008, - [SMALL_STATE(6908)] = 228082, - [SMALL_STATE(6909)] = 228146, - [SMALL_STATE(6910)] = 228238, - [SMALL_STATE(6911)] = 228298, - [SMALL_STATE(6912)] = 228384, - [SMALL_STATE(6913)] = 228468, - [SMALL_STATE(6914)] = 228550, - [SMALL_STATE(6915)] = 228604, - [SMALL_STATE(6916)] = 228680, - [SMALL_STATE(6917)] = 228754, - [SMALL_STATE(6918)] = 228848, - [SMALL_STATE(6919)] = 228936, - [SMALL_STATE(6920)] = 229030, - [SMALL_STATE(6921)] = 229118, - [SMALL_STATE(6922)] = 229212, - [SMALL_STATE(6923)] = 229282, - [SMALL_STATE(6924)] = 229348, - [SMALL_STATE(6925)] = 229416, - [SMALL_STATE(6926)] = 229488, - [SMALL_STATE(6927)] = 229582, - [SMALL_STATE(6928)] = 229673, - [SMALL_STATE(6929)] = 229764, - [SMALL_STATE(6930)] = 229855, - [SMALL_STATE(6931)] = 229946, - [SMALL_STATE(6932)] = 230037, - [SMALL_STATE(6933)] = 230128, - [SMALL_STATE(6934)] = 230219, - [SMALL_STATE(6935)] = 230310, - [SMALL_STATE(6936)] = 230401, - [SMALL_STATE(6937)] = 230492, - [SMALL_STATE(6938)] = 230585, - [SMALL_STATE(6939)] = 230676, - [SMALL_STATE(6940)] = 230769, - [SMALL_STATE(6941)] = 230814, - [SMALL_STATE(6942)] = 230905, - [SMALL_STATE(6943)] = 230996, - [SMALL_STATE(6944)] = 231087, - [SMALL_STATE(6945)] = 231178, - [SMALL_STATE(6946)] = 231249, - [SMALL_STATE(6947)] = 231320, - [SMALL_STATE(6948)] = 231411, - [SMALL_STATE(6949)] = 231502, - [SMALL_STATE(6950)] = 231593, - [SMALL_STATE(6951)] = 231684, - [SMALL_STATE(6952)] = 231755, - [SMALL_STATE(6953)] = 231846, - [SMALL_STATE(6954)] = 231937, - [SMALL_STATE(6955)] = 232028, - [SMALL_STATE(6956)] = 232119, - [SMALL_STATE(6957)] = 232210, - [SMALL_STATE(6958)] = 232301, - [SMALL_STATE(6959)] = 232392, - [SMALL_STATE(6960)] = 232485, - [SMALL_STATE(6961)] = 232576, - [SMALL_STATE(6962)] = 232649, - [SMALL_STATE(6963)] = 232742, - [SMALL_STATE(6964)] = 232833, - [SMALL_STATE(6965)] = 232924, - [SMALL_STATE(6966)] = 233017, - [SMALL_STATE(6967)] = 233110, - [SMALL_STATE(6968)] = 233201, - [SMALL_STATE(6969)] = 233292, - [SMALL_STATE(6970)] = 233385, - [SMALL_STATE(6971)] = 233476, - [SMALL_STATE(6972)] = 233567, - [SMALL_STATE(6973)] = 233660, - [SMALL_STATE(6974)] = 233751, - [SMALL_STATE(6975)] = 233842, - [SMALL_STATE(6976)] = 233933, - [SMALL_STATE(6977)] = 234024, - [SMALL_STATE(6978)] = 234097, - [SMALL_STATE(6979)] = 234188, - [SMALL_STATE(6980)] = 234279, - [SMALL_STATE(6981)] = 234370, - [SMALL_STATE(6982)] = 234461, - [SMALL_STATE(6983)] = 234552, - [SMALL_STATE(6984)] = 234643, - [SMALL_STATE(6985)] = 234734, - [SMALL_STATE(6986)] = 234825, - [SMALL_STATE(6987)] = 234916, - [SMALL_STATE(6988)] = 235007, - [SMALL_STATE(6989)] = 235098, - [SMALL_STATE(6990)] = 235189, - [SMALL_STATE(6991)] = 235280, - [SMALL_STATE(6992)] = 235371, - [SMALL_STATE(6993)] = 235464, - [SMALL_STATE(6994)] = 235557, - [SMALL_STATE(6995)] = 235648, - [SMALL_STATE(6996)] = 235739, - [SMALL_STATE(6997)] = 235830, - [SMALL_STATE(6998)] = 235921, - [SMALL_STATE(6999)] = 236012, - [SMALL_STATE(7000)] = 236103, - [SMALL_STATE(7001)] = 236190, - [SMALL_STATE(7002)] = 236281, - [SMALL_STATE(7003)] = 236372, - [SMALL_STATE(7004)] = 236463, - [SMALL_STATE(7005)] = 236554, - [SMALL_STATE(7006)] = 236627, - [SMALL_STATE(7007)] = 236718, - [SMALL_STATE(7008)] = 236809, - [SMALL_STATE(7009)] = 236900, - [SMALL_STATE(7010)] = 236991, - [SMALL_STATE(7011)] = 237082, - [SMALL_STATE(7012)] = 237173, - [SMALL_STATE(7013)] = 237218, - [SMALL_STATE(7014)] = 237311, - [SMALL_STATE(7015)] = 237402, - [SMALL_STATE(7016)] = 237495, - [SMALL_STATE(7017)] = 237586, - [SMALL_STATE(7018)] = 237677, - [SMALL_STATE(7019)] = 237768, - [SMALL_STATE(7020)] = 237815, - [SMALL_STATE(7021)] = 237906, - [SMALL_STATE(7022)] = 237997, - [SMALL_STATE(7023)] = 238044, - [SMALL_STATE(7024)] = 238135, - [SMALL_STATE(7025)] = 238208, - [SMALL_STATE(7026)] = 238299, - [SMALL_STATE(7027)] = 238390, - [SMALL_STATE(7028)] = 238481, - [SMALL_STATE(7029)] = 238532, - [SMALL_STATE(7030)] = 238623, - [SMALL_STATE(7031)] = 238714, - [SMALL_STATE(7032)] = 238807, - [SMALL_STATE(7033)] = 238894, - [SMALL_STATE(7034)] = 238987, - [SMALL_STATE(7035)] = 239034, - [SMALL_STATE(7036)] = 239125, - [SMALL_STATE(7037)] = 239216, - [SMALL_STATE(7038)] = 239307, - [SMALL_STATE(7039)] = 239398, - [SMALL_STATE(7040)] = 239489, - [SMALL_STATE(7041)] = 239580, - [SMALL_STATE(7042)] = 239671, - [SMALL_STATE(7043)] = 239762, - [SMALL_STATE(7044)] = 239853, - [SMALL_STATE(7045)] = 239944, - [SMALL_STATE(7046)] = 240035, - [SMALL_STATE(7047)] = 240126, - [SMALL_STATE(7048)] = 240217, - [SMALL_STATE(7049)] = 240308, - [SMALL_STATE(7050)] = 240399, - [SMALL_STATE(7051)] = 240490, - [SMALL_STATE(7052)] = 240581, - [SMALL_STATE(7053)] = 240672, - [SMALL_STATE(7054)] = 240763, - [SMALL_STATE(7055)] = 240836, - [SMALL_STATE(7056)] = 240927, - [SMALL_STATE(7057)] = 241018, - [SMALL_STATE(7058)] = 241109, - [SMALL_STATE(7059)] = 241200, - [SMALL_STATE(7060)] = 241291, - [SMALL_STATE(7061)] = 241382, - [SMALL_STATE(7062)] = 241473, - [SMALL_STATE(7063)] = 241564, - [SMALL_STATE(7064)] = 241655, - [SMALL_STATE(7065)] = 241746, - [SMALL_STATE(7066)] = 241837, - [SMALL_STATE(7067)] = 241928, - [SMALL_STATE(7068)] = 242019, - [SMALL_STATE(7069)] = 242110, - [SMALL_STATE(7070)] = 242201, - [SMALL_STATE(7071)] = 242292, - [SMALL_STATE(7072)] = 242383, - [SMALL_STATE(7073)] = 242474, - [SMALL_STATE(7074)] = 242565, - [SMALL_STATE(7075)] = 242656, - [SMALL_STATE(7076)] = 242747, - [SMALL_STATE(7077)] = 242838, - [SMALL_STATE(7078)] = 242911, - [SMALL_STATE(7079)] = 242984, - [SMALL_STATE(7080)] = 243075, - [SMALL_STATE(7081)] = 243168, - [SMALL_STATE(7082)] = 243259, - [SMALL_STATE(7083)] = 243352, - [SMALL_STATE(7084)] = 243407, - [SMALL_STATE(7085)] = 243480, - [SMALL_STATE(7086)] = 243571, - [SMALL_STATE(7087)] = 243624, - [SMALL_STATE(7088)] = 243715, - [SMALL_STATE(7089)] = 243786, - [SMALL_STATE(7090)] = 243849, - [SMALL_STATE(7091)] = 243940, - [SMALL_STATE(7092)] = 244031, - [SMALL_STATE(7093)] = 244078, - [SMALL_STATE(7094)] = 244169, - [SMALL_STATE(7095)] = 244260, - [SMALL_STATE(7096)] = 244333, - [SMALL_STATE(7097)] = 244406, - [SMALL_STATE(7098)] = 244499, - [SMALL_STATE(7099)] = 244572, - [SMALL_STATE(7100)] = 244663, - [SMALL_STATE(7101)] = 244754, - [SMALL_STATE(7102)] = 244845, - [SMALL_STATE(7103)] = 244936, - [SMALL_STATE(7104)] = 245009, - [SMALL_STATE(7105)] = 245102, - [SMALL_STATE(7106)] = 245193, - [SMALL_STATE(7107)] = 245284, - [SMALL_STATE(7108)] = 245375, - [SMALL_STATE(7109)] = 245446, - [SMALL_STATE(7110)] = 245517, - [SMALL_STATE(7111)] = 245608, - [SMALL_STATE(7112)] = 245699, - [SMALL_STATE(7113)] = 245790, - [SMALL_STATE(7114)] = 245881, - [SMALL_STATE(7115)] = 245972, - [SMALL_STATE(7116)] = 246063, - [SMALL_STATE(7117)] = 246136, - [SMALL_STATE(7118)] = 246209, - [SMALL_STATE(7119)] = 246282, - [SMALL_STATE(7120)] = 246355, - [SMALL_STATE(7121)] = 246446, - [SMALL_STATE(7122)] = 246491, - [SMALL_STATE(7123)] = 246538, - [SMALL_STATE(7124)] = 246587, - [SMALL_STATE(7125)] = 246636, - [SMALL_STATE(7126)] = 246709, - [SMALL_STATE(7127)] = 246758, - [SMALL_STATE(7128)] = 246849, - [SMALL_STATE(7129)] = 246898, - [SMALL_STATE(7130)] = 246947, - [SMALL_STATE(7131)] = 247034, - [SMALL_STATE(7132)] = 247125, - [SMALL_STATE(7133)] = 247216, - [SMALL_STATE(7134)] = 247261, - [SMALL_STATE(7135)] = 247334, - [SMALL_STATE(7136)] = 247383, - [SMALL_STATE(7137)] = 247432, - [SMALL_STATE(7138)] = 247481, - [SMALL_STATE(7139)] = 247530, - [SMALL_STATE(7140)] = 247579, - [SMALL_STATE(7141)] = 247670, - [SMALL_STATE(7142)] = 247719, - [SMALL_STATE(7143)] = 247810, - [SMALL_STATE(7144)] = 247859, - [SMALL_STATE(7145)] = 247950, - [SMALL_STATE(7146)] = 247999, - [SMALL_STATE(7147)] = 248090, - [SMALL_STATE(7148)] = 248137, - [SMALL_STATE(7149)] = 248182, - [SMALL_STATE(7150)] = 248275, - [SMALL_STATE(7151)] = 248362, - [SMALL_STATE(7152)] = 248453, - [SMALL_STATE(7153)] = 248544, - [SMALL_STATE(7154)] = 248635, - [SMALL_STATE(7155)] = 248726, - [SMALL_STATE(7156)] = 248817, - [SMALL_STATE(7157)] = 248908, - [SMALL_STATE(7158)] = 248999, - [SMALL_STATE(7159)] = 249090, - [SMALL_STATE(7160)] = 249181, - [SMALL_STATE(7161)] = 249274, - [SMALL_STATE(7162)] = 249347, - [SMALL_STATE(7163)] = 249440, - [SMALL_STATE(7164)] = 249531, - [SMALL_STATE(7165)] = 249622, - [SMALL_STATE(7166)] = 249713, - [SMALL_STATE(7167)] = 249804, - [SMALL_STATE(7168)] = 249895, - [SMALL_STATE(7169)] = 249968, - [SMALL_STATE(7170)] = 250059, - [SMALL_STATE(7171)] = 250150, - [SMALL_STATE(7172)] = 250195, - [SMALL_STATE(7173)] = 250268, - [SMALL_STATE(7174)] = 250359, - [SMALL_STATE(7175)] = 250450, - [SMALL_STATE(7176)] = 250495, - [SMALL_STATE(7177)] = 250586, - [SMALL_STATE(7178)] = 250677, - [SMALL_STATE(7179)] = 250768, - [SMALL_STATE(7180)] = 250813, - [SMALL_STATE(7181)] = 250904, - [SMALL_STATE(7182)] = 250995, - [SMALL_STATE(7183)] = 251088, - [SMALL_STATE(7184)] = 251179, - [SMALL_STATE(7185)] = 251270, - [SMALL_STATE(7186)] = 251361, - [SMALL_STATE(7187)] = 251452, - [SMALL_STATE(7188)] = 251543, - [SMALL_STATE(7189)] = 251634, - [SMALL_STATE(7190)] = 251725, - [SMALL_STATE(7191)] = 251816, - [SMALL_STATE(7192)] = 251907, - [SMALL_STATE(7193)] = 251998, - [SMALL_STATE(7194)] = 252089, - [SMALL_STATE(7195)] = 252180, - [SMALL_STATE(7196)] = 252224, - [SMALL_STATE(7197)] = 252316, - [SMALL_STATE(7198)] = 252408, - [SMALL_STATE(7199)] = 252500, - [SMALL_STATE(7200)] = 252544, - [SMALL_STATE(7201)] = 252636, - [SMALL_STATE(7202)] = 252728, - [SMALL_STATE(7203)] = 252820, - [SMALL_STATE(7204)] = 252912, - [SMALL_STATE(7205)] = 253004, - [SMALL_STATE(7206)] = 253052, - [SMALL_STATE(7207)] = 253096, - [SMALL_STATE(7208)] = 253140, - [SMALL_STATE(7209)] = 253184, - [SMALL_STATE(7210)] = 253228, - [SMALL_STATE(7211)] = 253308, - [SMALL_STATE(7212)] = 253358, - [SMALL_STATE(7213)] = 253402, - [SMALL_STATE(7214)] = 253494, - [SMALL_STATE(7215)] = 253586, - [SMALL_STATE(7216)] = 253678, - [SMALL_STATE(7217)] = 253722, - [SMALL_STATE(7218)] = 253766, - [SMALL_STATE(7219)] = 253814, - [SMALL_STATE(7220)] = 253858, - [SMALL_STATE(7221)] = 253902, - [SMALL_STATE(7222)] = 253994, - [SMALL_STATE(7223)] = 254086, - [SMALL_STATE(7224)] = 254156, - [SMALL_STATE(7225)] = 254248, - [SMALL_STATE(7226)] = 254300, - [SMALL_STATE(7227)] = 254370, - [SMALL_STATE(7228)] = 254414, - [SMALL_STATE(7229)] = 254458, - [SMALL_STATE(7230)] = 254502, - [SMALL_STATE(7231)] = 254546, - [SMALL_STATE(7232)] = 254590, - [SMALL_STATE(7233)] = 254682, - [SMALL_STATE(7234)] = 254774, - [SMALL_STATE(7235)] = 254866, - [SMALL_STATE(7236)] = 254958, - [SMALL_STATE(7237)] = 255050, - [SMALL_STATE(7238)] = 255142, - [SMALL_STATE(7239)] = 255234, - [SMALL_STATE(7240)] = 255326, - [SMALL_STATE(7241)] = 255418, - [SMALL_STATE(7242)] = 255506, - [SMALL_STATE(7243)] = 255598, - [SMALL_STATE(7244)] = 255690, - [SMALL_STATE(7245)] = 255782, - [SMALL_STATE(7246)] = 255874, - [SMALL_STATE(7247)] = 255926, - [SMALL_STATE(7248)] = 255970, - [SMALL_STATE(7249)] = 256040, - [SMALL_STATE(7250)] = 256084, - [SMALL_STATE(7251)] = 256128, - [SMALL_STATE(7252)] = 256172, - [SMALL_STATE(7253)] = 256216, - [SMALL_STATE(7254)] = 256260, - [SMALL_STATE(7255)] = 256304, - [SMALL_STATE(7256)] = 256352, - [SMALL_STATE(7257)] = 256396, - [SMALL_STATE(7258)] = 256466, - [SMALL_STATE(7259)] = 256558, - [SMALL_STATE(7260)] = 256602, - [SMALL_STATE(7261)] = 256652, - [SMALL_STATE(7262)] = 256744, - [SMALL_STATE(7263)] = 256836, - [SMALL_STATE(7264)] = 256928, - [SMALL_STATE(7265)] = 257020, - [SMALL_STATE(7266)] = 257112, - [SMALL_STATE(7267)] = 257204, - [SMALL_STATE(7268)] = 257248, - [SMALL_STATE(7269)] = 257340, - [SMALL_STATE(7270)] = 257384, - [SMALL_STATE(7271)] = 257428, - [SMALL_STATE(7272)] = 257520, - [SMALL_STATE(7273)] = 257590, - [SMALL_STATE(7274)] = 257634, - [SMALL_STATE(7275)] = 257692, - [SMALL_STATE(7276)] = 257740, - [SMALL_STATE(7277)] = 257832, - [SMALL_STATE(7278)] = 257924, - [SMALL_STATE(7279)] = 258016, - [SMALL_STATE(7280)] = 258060, - [SMALL_STATE(7281)] = 258104, - [SMALL_STATE(7282)] = 258196, - [SMALL_STATE(7283)] = 258288, - [SMALL_STATE(7284)] = 258380, - [SMALL_STATE(7285)] = 258424, - [SMALL_STATE(7286)] = 258516, - [SMALL_STATE(7287)] = 258608, - [SMALL_STATE(7288)] = 258652, - [SMALL_STATE(7289)] = 258744, - [SMALL_STATE(7290)] = 258788, - [SMALL_STATE(7291)] = 258832, - [SMALL_STATE(7292)] = 258890, - [SMALL_STATE(7293)] = 258982, - [SMALL_STATE(7294)] = 259074, - [SMALL_STATE(7295)] = 259166, - [SMALL_STATE(7296)] = 259258, - [SMALL_STATE(7297)] = 259350, - [SMALL_STATE(7298)] = 259442, - [SMALL_STATE(7299)] = 259486, - [SMALL_STATE(7300)] = 259530, - [SMALL_STATE(7301)] = 259574, - [SMALL_STATE(7302)] = 259618, - [SMALL_STATE(7303)] = 259662, - [SMALL_STATE(7304)] = 259706, - [SMALL_STATE(7305)] = 259798, - [SMALL_STATE(7306)] = 259890, - [SMALL_STATE(7307)] = 259982, - [SMALL_STATE(7308)] = 260074, - [SMALL_STATE(7309)] = 260166, - [SMALL_STATE(7310)] = 260258, - [SMALL_STATE(7311)] = 260350, - [SMALL_STATE(7312)] = 260402, - [SMALL_STATE(7313)] = 260494, - [SMALL_STATE(7314)] = 260586, - [SMALL_STATE(7315)] = 260634, - [SMALL_STATE(7316)] = 260726, - [SMALL_STATE(7317)] = 260818, - [SMALL_STATE(7318)] = 260910, - [SMALL_STATE(7319)] = 261002, - [SMALL_STATE(7320)] = 261094, - [SMALL_STATE(7321)] = 261186, - [SMALL_STATE(7322)] = 261278, - [SMALL_STATE(7323)] = 261370, - [SMALL_STATE(7324)] = 261462, - [SMALL_STATE(7325)] = 261506, - [SMALL_STATE(7326)] = 261550, - [SMALL_STATE(7327)] = 261600, - [SMALL_STATE(7328)] = 261644, - [SMALL_STATE(7329)] = 261736, - [SMALL_STATE(7330)] = 261828, - [SMALL_STATE(7331)] = 261880, - [SMALL_STATE(7332)] = 261924, - [SMALL_STATE(7333)] = 262016, - [SMALL_STATE(7334)] = 262096, - [SMALL_STATE(7335)] = 262140, - [SMALL_STATE(7336)] = 262184, - [SMALL_STATE(7337)] = 262228, - [SMALL_STATE(7338)] = 262272, - [SMALL_STATE(7339)] = 262316, - [SMALL_STATE(7340)] = 262364, - [SMALL_STATE(7341)] = 262408, - [SMALL_STATE(7342)] = 262452, - [SMALL_STATE(7343)] = 262496, + [SMALL_STATE(3822)] = 0, + [SMALL_STATE(3823)] = 71, + [SMALL_STATE(3824)] = 142, + [SMALL_STATE(3825)] = 213, + [SMALL_STATE(3826)] = 292, + [SMALL_STATE(3827)] = 375, + [SMALL_STATE(3828)] = 446, + [SMALL_STATE(3829)] = 517, + [SMALL_STATE(3830)] = 588, + [SMALL_STATE(3831)] = 659, + [SMALL_STATE(3832)] = 730, + [SMALL_STATE(3833)] = 801, + [SMALL_STATE(3834)] = 872, + [SMALL_STATE(3835)] = 951, + [SMALL_STATE(3836)] = 1034, + [SMALL_STATE(3837)] = 1105, + [SMALL_STATE(3838)] = 1176, + [SMALL_STATE(3839)] = 1253, + [SMALL_STATE(3840)] = 1330, + [SMALL_STATE(3841)] = 1401, + [SMALL_STATE(3842)] = 1472, + [SMALL_STATE(3843)] = 1543, + [SMALL_STATE(3844)] = 1620, + [SMALL_STATE(3845)] = 1697, + [SMALL_STATE(3846)] = 1768, + [SMALL_STATE(3847)] = 1839, + [SMALL_STATE(3848)] = 1922, + [SMALL_STATE(3849)] = 1993, + [SMALL_STATE(3850)] = 2064, + [SMALL_STATE(3851)] = 2135, + [SMALL_STATE(3852)] = 2206, + [SMALL_STATE(3853)] = 2277, + [SMALL_STATE(3854)] = 2366, + [SMALL_STATE(3855)] = 2447, + [SMALL_STATE(3856)] = 2530, + [SMALL_STATE(3857)] = 2601, + [SMALL_STATE(3858)] = 2672, + [SMALL_STATE(3859)] = 2743, + [SMALL_STATE(3860)] = 2820, + [SMALL_STATE(3861)] = 2891, + [SMALL_STATE(3862)] = 2962, + [SMALL_STATE(3863)] = 3039, + [SMALL_STATE(3864)] = 3110, + [SMALL_STATE(3865)] = 3181, + [SMALL_STATE(3866)] = 3252, + [SMALL_STATE(3867)] = 3323, + [SMALL_STATE(3868)] = 3394, + [SMALL_STATE(3869)] = 3471, + [SMALL_STATE(3870)] = 3542, + [SMALL_STATE(3871)] = 3619, + [SMALL_STATE(3872)] = 3690, + [SMALL_STATE(3873)] = 3761, + [SMALL_STATE(3874)] = 3832, + [SMALL_STATE(3875)] = 3911, + [SMALL_STATE(3876)] = 3988, + [SMALL_STATE(3877)] = 4065, + [SMALL_STATE(3878)] = 4136, + [SMALL_STATE(3879)] = 4207, + [SMALL_STATE(3880)] = 4278, + [SMALL_STATE(3881)] = 4349, + [SMALL_STATE(3882)] = 4438, + [SMALL_STATE(3883)] = 4509, + [SMALL_STATE(3884)] = 4580, + [SMALL_STATE(3885)] = 4669, + [SMALL_STATE(3886)] = 4740, + [SMALL_STATE(3887)] = 4811, + [SMALL_STATE(3888)] = 4888, + [SMALL_STATE(3889)] = 4967, + [SMALL_STATE(3890)] = 5044, + [SMALL_STATE(3891)] = 5121, + [SMALL_STATE(3892)] = 5198, + [SMALL_STATE(3893)] = 5269, + [SMALL_STATE(3894)] = 5344, + [SMALL_STATE(3895)] = 5419, + [SMALL_STATE(3896)] = 5490, + [SMALL_STATE(3897)] = 5561, + [SMALL_STATE(3898)] = 5632, + [SMALL_STATE(3899)] = 5703, + [SMALL_STATE(3900)] = 5774, + [SMALL_STATE(3901)] = 5845, + [SMALL_STATE(3902)] = 5916, + [SMALL_STATE(3903)] = 5991, + [SMALL_STATE(3904)] = 6066, + [SMALL_STATE(3905)] = 6137, + [SMALL_STATE(3906)] = 6208, + [SMALL_STATE(3907)] = 6283, + [SMALL_STATE(3908)] = 6358, + [SMALL_STATE(3909)] = 6429, + [SMALL_STATE(3910)] = 6500, + [SMALL_STATE(3911)] = 6575, + [SMALL_STATE(3912)] = 6646, + [SMALL_STATE(3913)] = 6717, + [SMALL_STATE(3914)] = 6792, + [SMALL_STATE(3915)] = 6863, + [SMALL_STATE(3916)] = 6938, + [SMALL_STATE(3917)] = 7013, + [SMALL_STATE(3918)] = 7084, + [SMALL_STATE(3919)] = 7167, + [SMALL_STATE(3920)] = 7250, + [SMALL_STATE(3921)] = 7333, + [SMALL_STATE(3922)] = 7416, + [SMALL_STATE(3923)] = 7499, + [SMALL_STATE(3924)] = 7582, + [SMALL_STATE(3925)] = 7665, + [SMALL_STATE(3926)] = 7748, + [SMALL_STATE(3927)] = 7819, + [SMALL_STATE(3928)] = 7890, + [SMALL_STATE(3929)] = 7961, + [SMALL_STATE(3930)] = 8044, + [SMALL_STATE(3931)] = 8115, + [SMALL_STATE(3932)] = 8186, + [SMALL_STATE(3933)] = 8257, + [SMALL_STATE(3934)] = 8340, + [SMALL_STATE(3935)] = 8415, + [SMALL_STATE(3936)] = 8494, + [SMALL_STATE(3937)] = 8569, + [SMALL_STATE(3938)] = 8640, + [SMALL_STATE(3939)] = 8711, + [SMALL_STATE(3940)] = 8782, + [SMALL_STATE(3941)] = 8853, + [SMALL_STATE(3942)] = 8924, + [SMALL_STATE(3943)] = 8995, + [SMALL_STATE(3944)] = 9066, + [SMALL_STATE(3945)] = 9137, + [SMALL_STATE(3946)] = 9208, + [SMALL_STATE(3947)] = 9279, + [SMALL_STATE(3948)] = 9362, + [SMALL_STATE(3949)] = 9433, + [SMALL_STATE(3950)] = 9516, + [SMALL_STATE(3951)] = 9591, + [SMALL_STATE(3952)] = 9689, + [SMALL_STATE(3953)] = 9763, + [SMALL_STATE(3954)] = 9851, + [SMALL_STATE(3955)] = 9949, + [SMALL_STATE(3956)] = 10019, + [SMALL_STATE(3957)] = 10093, + [SMALL_STATE(3958)] = 10163, + [SMALL_STATE(3959)] = 10237, + [SMALL_STATE(3960)] = 10307, + [SMALL_STATE(3961)] = 10379, + [SMALL_STATE(3962)] = 10477, + [SMALL_STATE(3963)] = 10557, + [SMALL_STATE(3964)] = 10655, + [SMALL_STATE(3965)] = 10753, + [SMALL_STATE(3966)] = 10823, + [SMALL_STATE(3967)] = 10893, + [SMALL_STATE(3968)] = 10963, + [SMALL_STATE(3969)] = 11033, + [SMALL_STATE(3970)] = 11103, + [SMALL_STATE(3971)] = 11173, + [SMALL_STATE(3972)] = 11249, + [SMALL_STATE(3973)] = 11319, + [SMALL_STATE(3974)] = 11389, + [SMALL_STATE(3975)] = 11459, + [SMALL_STATE(3976)] = 11571, + [SMALL_STATE(3977)] = 11641, + [SMALL_STATE(3978)] = 11727, + [SMALL_STATE(3979)] = 11797, + [SMALL_STATE(3980)] = 11873, + [SMALL_STATE(3981)] = 11961, + [SMALL_STATE(3982)] = 12031, + [SMALL_STATE(3983)] = 12143, + [SMALL_STATE(3984)] = 12213, + [SMALL_STATE(3985)] = 12283, + [SMALL_STATE(3986)] = 12371, + [SMALL_STATE(3987)] = 12469, + [SMALL_STATE(3988)] = 12539, + [SMALL_STATE(3989)] = 12627, + [SMALL_STATE(3990)] = 12697, + [SMALL_STATE(3991)] = 12767, + [SMALL_STATE(3992)] = 12879, + [SMALL_STATE(3993)] = 12949, + [SMALL_STATE(3994)] = 13019, + [SMALL_STATE(3995)] = 13101, + [SMALL_STATE(3996)] = 13213, + [SMALL_STATE(3997)] = 13289, + [SMALL_STATE(3998)] = 13377, + [SMALL_STATE(3999)] = 13455, + [SMALL_STATE(4000)] = 13543, + [SMALL_STATE(4001)] = 13617, + [SMALL_STATE(4002)] = 13691, + [SMALL_STATE(4003)] = 13765, + [SMALL_STATE(4004)] = 13839, + [SMALL_STATE(4005)] = 13913, + [SMALL_STATE(4006)] = 13983, + [SMALL_STATE(4007)] = 14063, + [SMALL_STATE(4008)] = 14133, + [SMALL_STATE(4009)] = 14203, + [SMALL_STATE(4010)] = 14283, + [SMALL_STATE(4011)] = 14363, + [SMALL_STATE(4012)] = 14433, + [SMALL_STATE(4013)] = 14509, + [SMALL_STATE(4014)] = 14607, + [SMALL_STATE(4015)] = 14677, + [SMALL_STATE(4016)] = 14775, + [SMALL_STATE(4017)] = 14863, + [SMALL_STATE(4018)] = 14975, + [SMALL_STATE(4019)] = 15049, + [SMALL_STATE(4020)] = 15119, + [SMALL_STATE(4021)] = 15189, + [SMALL_STATE(4022)] = 15259, + [SMALL_STATE(4023)] = 15329, + [SMALL_STATE(4024)] = 15399, + [SMALL_STATE(4025)] = 15473, + [SMALL_STATE(4026)] = 15551, + [SMALL_STATE(4027)] = 15621, + [SMALL_STATE(4028)] = 15695, + [SMALL_STATE(4029)] = 15769, + [SMALL_STATE(4030)] = 15867, + [SMALL_STATE(4031)] = 15941, + [SMALL_STATE(4032)] = 16039, + [SMALL_STATE(4033)] = 16137, + [SMALL_STATE(4034)] = 16249, + [SMALL_STATE(4035)] = 16325, + [SMALL_STATE(4036)] = 16413, + [SMALL_STATE(4037)] = 16511, + [SMALL_STATE(4038)] = 16593, + [SMALL_STATE(4039)] = 16662, + [SMALL_STATE(4040)] = 16741, + [SMALL_STATE(4041)] = 16840, + [SMALL_STATE(4042)] = 16915, + [SMALL_STATE(4043)] = 16992, + [SMALL_STATE(4044)] = 17069, + [SMALL_STATE(4045)] = 17146, + [SMALL_STATE(4046)] = 17225, + [SMALL_STATE(4047)] = 17312, + [SMALL_STATE(4048)] = 17399, + [SMALL_STATE(4049)] = 17494, + [SMALL_STATE(4050)] = 17589, + [SMALL_STATE(4051)] = 17666, + [SMALL_STATE(4052)] = 17761, + [SMALL_STATE(4053)] = 17836, + [SMALL_STATE(4054)] = 17917, + [SMALL_STATE(4055)] = 18040, + [SMALL_STATE(4056)] = 18109, + [SMALL_STATE(4057)] = 18232, + [SMALL_STATE(4058)] = 18311, + [SMALL_STATE(4059)] = 18380, + [SMALL_STATE(4060)] = 18449, + [SMALL_STATE(4061)] = 18518, + [SMALL_STATE(4062)] = 18587, + [SMALL_STATE(4063)] = 18656, + [SMALL_STATE(4064)] = 18725, + [SMALL_STATE(4065)] = 18794, + [SMALL_STATE(4066)] = 18877, + [SMALL_STATE(4067)] = 18976, + [SMALL_STATE(4068)] = 19045, + [SMALL_STATE(4069)] = 19144, + [SMALL_STATE(4070)] = 19213, + [SMALL_STATE(4071)] = 19288, + [SMALL_STATE(4072)] = 19357, + [SMALL_STATE(4073)] = 19456, + [SMALL_STATE(4074)] = 19525, + [SMALL_STATE(4075)] = 19594, + [SMALL_STATE(4076)] = 19663, + [SMALL_STATE(4077)] = 19740, + [SMALL_STATE(4078)] = 19809, + [SMALL_STATE(4079)] = 19880, + [SMALL_STATE(4080)] = 19951, + [SMALL_STATE(4081)] = 20020, + [SMALL_STATE(4082)] = 20089, + [SMALL_STATE(4083)] = 20164, + [SMALL_STATE(4084)] = 20233, + [SMALL_STATE(4085)] = 20302, + [SMALL_STATE(4086)] = 20371, + [SMALL_STATE(4087)] = 20440, + [SMALL_STATE(4088)] = 20509, + [SMALL_STATE(4089)] = 20578, + [SMALL_STATE(4090)] = 20647, + [SMALL_STATE(4091)] = 20752, + [SMALL_STATE(4092)] = 20821, + [SMALL_STATE(4093)] = 20890, + [SMALL_STATE(4094)] = 20995, + [SMALL_STATE(4095)] = 21100, + [SMALL_STATE(4096)] = 21169, + [SMALL_STATE(4097)] = 21238, + [SMALL_STATE(4098)] = 21307, + [SMALL_STATE(4099)] = 21412, + [SMALL_STATE(4100)] = 21481, + [SMALL_STATE(4101)] = 21550, + [SMALL_STATE(4102)] = 21655, + [SMALL_STATE(4103)] = 21750, + [SMALL_STATE(4104)] = 21845, + [SMALL_STATE(4105)] = 21940, + [SMALL_STATE(4106)] = 22023, + [SMALL_STATE(4107)] = 22106, + [SMALL_STATE(4108)] = 22211, + [SMALL_STATE(4109)] = 22280, + [SMALL_STATE(4110)] = 22349, + [SMALL_STATE(4111)] = 22448, + [SMALL_STATE(4112)] = 22553, + [SMALL_STATE(4113)] = 22658, + [SMALL_STATE(4114)] = 22727, + [SMALL_STATE(4115)] = 22796, + [SMALL_STATE(4116)] = 22865, + [SMALL_STATE(4117)] = 22934, + [SMALL_STATE(4118)] = 23003, + [SMALL_STATE(4119)] = 23108, + [SMALL_STATE(4120)] = 23177, + [SMALL_STATE(4121)] = 23254, + [SMALL_STATE(4122)] = 23323, + [SMALL_STATE(4123)] = 23428, + [SMALL_STATE(4124)] = 23497, + [SMALL_STATE(4125)] = 23580, + [SMALL_STATE(4126)] = 23663, + [SMALL_STATE(4127)] = 23732, + [SMALL_STATE(4128)] = 23801, + [SMALL_STATE(4129)] = 23872, + [SMALL_STATE(4130)] = 23945, + [SMALL_STATE(4131)] = 24014, + [SMALL_STATE(4132)] = 24083, + [SMALL_STATE(4133)] = 24152, + [SMALL_STATE(4134)] = 24221, + [SMALL_STATE(4135)] = 24320, + [SMALL_STATE(4136)] = 24389, + [SMALL_STATE(4137)] = 24458, + [SMALL_STATE(4138)] = 24541, + [SMALL_STATE(4139)] = 24610, + [SMALL_STATE(4140)] = 24715, + [SMALL_STATE(4141)] = 24784, + [SMALL_STATE(4142)] = 24853, + [SMALL_STATE(4143)] = 24958, + [SMALL_STATE(4144)] = 25035, + [SMALL_STATE(4145)] = 25104, + [SMALL_STATE(4146)] = 25178, + [SMALL_STATE(4147)] = 25246, + [SMALL_STATE(4148)] = 25322, + [SMALL_STATE(4149)] = 25390, + [SMALL_STATE(4150)] = 25458, + [SMALL_STATE(4151)] = 25534, + [SMALL_STATE(4152)] = 25620, + [SMALL_STATE(4153)] = 25688, + [SMALL_STATE(4154)] = 25760, + [SMALL_STATE(4155)] = 25832, + [SMALL_STATE(4156)] = 25908, + [SMALL_STATE(4157)] = 25976, + [SMALL_STATE(4158)] = 26046, + [SMALL_STATE(4159)] = 26116, + [SMALL_STATE(4160)] = 26184, + [SMALL_STATE(4161)] = 26252, + [SMALL_STATE(4162)] = 26330, + [SMALL_STATE(4163)] = 26398, + [SMALL_STATE(4164)] = 26466, + [SMALL_STATE(4165)] = 26540, + [SMALL_STATE(4166)] = 26618, + [SMALL_STATE(4167)] = 26686, + [SMALL_STATE(4168)] = 26806, + [SMALL_STATE(4169)] = 26926, + [SMALL_STATE(4170)] = 27010, + [SMALL_STATE(4171)] = 27130, + [SMALL_STATE(4172)] = 27206, + [SMALL_STATE(4173)] = 27278, + [SMALL_STATE(4174)] = 27354, + [SMALL_STATE(4175)] = 27430, + [SMALL_STATE(4176)] = 27550, + [SMALL_STATE(4177)] = 27670, + [SMALL_STATE(4178)] = 27746, + [SMALL_STATE(4179)] = 27866, + [SMALL_STATE(4180)] = 27942, + [SMALL_STATE(4181)] = 28018, + [SMALL_STATE(4182)] = 28138, + [SMALL_STATE(4183)] = 28258, + [SMALL_STATE(4184)] = 28336, + [SMALL_STATE(4185)] = 28416, + [SMALL_STATE(4186)] = 28496, + [SMALL_STATE(4187)] = 28576, + [SMALL_STATE(4188)] = 28656, + [SMALL_STATE(4189)] = 28728, + [SMALL_STATE(4190)] = 28800, + [SMALL_STATE(4191)] = 28880, + [SMALL_STATE(4192)] = 28960, + [SMALL_STATE(4193)] = 29040, + [SMALL_STATE(4194)] = 29120, + [SMALL_STATE(4195)] = 29196, + [SMALL_STATE(4196)] = 29316, + [SMALL_STATE(4197)] = 29436, + [SMALL_STATE(4198)] = 29504, + [SMALL_STATE(4199)] = 29572, + [SMALL_STATE(4200)] = 29648, + [SMALL_STATE(4201)] = 29724, + [SMALL_STATE(4202)] = 29800, + [SMALL_STATE(4203)] = 29876, + [SMALL_STATE(4204)] = 29952, + [SMALL_STATE(4205)] = 30028, + [SMALL_STATE(4206)] = 30104, + [SMALL_STATE(4207)] = 30180, + [SMALL_STATE(4208)] = 30254, + [SMALL_STATE(4209)] = 30322, + [SMALL_STATE(4210)] = 30442, + [SMALL_STATE(4211)] = 30520, + [SMALL_STATE(4212)] = 30588, + [SMALL_STATE(4213)] = 30656, + [SMALL_STATE(4214)] = 30730, + [SMALL_STATE(4215)] = 30850, + [SMALL_STATE(4216)] = 30970, + [SMALL_STATE(4217)] = 31038, + [SMALL_STATE(4218)] = 31158, + [SMALL_STATE(4219)] = 31278, + [SMALL_STATE(4220)] = 31352, + [SMALL_STATE(4221)] = 31420, + [SMALL_STATE(4222)] = 31540, + [SMALL_STATE(4223)] = 31614, + [SMALL_STATE(4224)] = 31684, + [SMALL_STATE(4225)] = 31752, + [SMALL_STATE(4226)] = 31820, + [SMALL_STATE(4227)] = 31940, + [SMALL_STATE(4228)] = 32012, + [SMALL_STATE(4229)] = 32132, + [SMALL_STATE(4230)] = 32206, + [SMALL_STATE(4231)] = 32274, + [SMALL_STATE(4232)] = 32346, + [SMALL_STATE(4233)] = 32466, + [SMALL_STATE(4234)] = 32538, + [SMALL_STATE(4235)] = 32606, + [SMALL_STATE(4236)] = 32674, + [SMALL_STATE(4237)] = 32746, + [SMALL_STATE(4238)] = 32866, + [SMALL_STATE(4239)] = 32938, + [SMALL_STATE(4240)] = 33058, + [SMALL_STATE(4241)] = 33178, + [SMALL_STATE(4242)] = 33246, + [SMALL_STATE(4243)] = 33366, + [SMALL_STATE(4244)] = 33486, + [SMALL_STATE(4245)] = 33606, + [SMALL_STATE(4246)] = 33680, + [SMALL_STATE(4247)] = 33748, + [SMALL_STATE(4248)] = 33816, + [SMALL_STATE(4249)] = 33936, + [SMALL_STATE(4250)] = 34008, + [SMALL_STATE(4251)] = 34128, + [SMALL_STATE(4252)] = 34196, + [SMALL_STATE(4253)] = 34316, + [SMALL_STATE(4254)] = 34436, + [SMALL_STATE(4255)] = 34556, + [SMALL_STATE(4256)] = 34628, + [SMALL_STATE(4257)] = 34696, + [SMALL_STATE(4258)] = 34764, + [SMALL_STATE(4259)] = 34840, + [SMALL_STATE(4260)] = 34912, + [SMALL_STATE(4261)] = 34988, + [SMALL_STATE(4262)] = 35056, + [SMALL_STATE(4263)] = 35124, + [SMALL_STATE(4264)] = 35194, + [SMALL_STATE(4265)] = 35314, + [SMALL_STATE(4266)] = 35388, + [SMALL_STATE(4267)] = 35464, + [SMALL_STATE(4268)] = 35532, + [SMALL_STATE(4269)] = 35652, + [SMALL_STATE(4270)] = 35719, + [SMALL_STATE(4271)] = 35804, + [SMALL_STATE(4272)] = 35883, + [SMALL_STATE(4273)] = 35952, + [SMALL_STATE(4274)] = 36031, + [SMALL_STATE(4275)] = 36098, + [SMALL_STATE(4276)] = 36165, + [SMALL_STATE(4277)] = 36244, + [SMALL_STATE(4278)] = 36311, + [SMALL_STATE(4279)] = 36390, + [SMALL_STATE(4280)] = 36475, + [SMALL_STATE(4281)] = 36550, + [SMALL_STATE(4282)] = 36629, + [SMALL_STATE(4283)] = 36696, + [SMALL_STATE(4284)] = 36775, + [SMALL_STATE(4285)] = 36854, + [SMALL_STATE(4286)] = 36921, + [SMALL_STATE(4287)] = 36988, + [SMALL_STATE(4288)] = 37055, + [SMALL_STATE(4289)] = 37122, + [SMALL_STATE(4290)] = 37201, + [SMALL_STATE(4291)] = 37268, + [SMALL_STATE(4292)] = 37335, + [SMALL_STATE(4293)] = 37414, + [SMALL_STATE(4294)] = 37481, + [SMALL_STATE(4295)] = 37548, + [SMALL_STATE(4296)] = 37617, + [SMALL_STATE(4297)] = 37684, + [SMALL_STATE(4298)] = 37753, + [SMALL_STATE(4299)] = 37820, + [SMALL_STATE(4300)] = 37903, + [SMALL_STATE(4301)] = 37982, + [SMALL_STATE(4302)] = 38049, + [SMALL_STATE(4303)] = 38116, + [SMALL_STATE(4304)] = 38183, + [SMALL_STATE(4305)] = 38250, + [SMALL_STATE(4306)] = 38317, + [SMALL_STATE(4307)] = 38384, + [SMALL_STATE(4308)] = 38451, + [SMALL_STATE(4309)] = 38518, + [SMALL_STATE(4310)] = 38585, + [SMALL_STATE(4311)] = 38652, + [SMALL_STATE(4312)] = 38719, + [SMALL_STATE(4313)] = 38786, + [SMALL_STATE(4314)] = 38863, + [SMALL_STATE(4315)] = 38934, + [SMALL_STATE(4316)] = 39001, + [SMALL_STATE(4317)] = 39078, + [SMALL_STATE(4318)] = 39155, + [SMALL_STATE(4319)] = 39234, + [SMALL_STATE(4320)] = 39311, + [SMALL_STATE(4321)] = 39389, + [SMALL_STATE(4322)] = 39467, + [SMALL_STATE(4323)] = 39545, + [SMALL_STATE(4324)] = 39619, + [SMALL_STATE(4325)] = 39697, + [SMALL_STATE(4326)] = 39775, + [SMALL_STATE(4327)] = 39853, + [SMALL_STATE(4328)] = 39927, + [SMALL_STATE(4329)] = 40001, + [SMALL_STATE(4330)] = 40075, + [SMALL_STATE(4331)] = 40141, + [SMALL_STATE(4332)] = 40215, + [SMALL_STATE(4333)] = 40301, + [SMALL_STATE(4334)] = 40367, + [SMALL_STATE(4335)] = 40439, + [SMALL_STATE(4336)] = 40505, + [SMALL_STATE(4337)] = 40571, + [SMALL_STATE(4338)] = 40645, + [SMALL_STATE(4339)] = 40717, + [SMALL_STATE(4340)] = 40789, + [SMALL_STATE(4341)] = 40855, + [SMALL_STATE(4342)] = 40933, + [SMALL_STATE(4343)] = 40999, + [SMALL_STATE(4344)] = 41071, + [SMALL_STATE(4345)] = 41155, + [SMALL_STATE(4346)] = 41275, + [SMALL_STATE(4347)] = 41353, + [SMALL_STATE(4348)] = 41425, + [SMALL_STATE(4349)] = 41505, + [SMALL_STATE(4350)] = 41579, + [SMALL_STATE(4351)] = 41657, + [SMALL_STATE(4352)] = 41733, + [SMALL_STATE(4353)] = 41807, + [SMALL_STATE(4354)] = 41883, + [SMALL_STATE(4355)] = 41957, + [SMALL_STATE(4356)] = 42029, + [SMALL_STATE(4357)] = 42111, + [SMALL_STATE(4358)] = 42195, + [SMALL_STATE(4359)] = 42273, + [SMALL_STATE(4360)] = 42345, + [SMALL_STATE(4361)] = 42423, + [SMALL_STATE(4362)] = 42491, + [SMALL_STATE(4363)] = 42563, + [SMALL_STATE(4364)] = 42629, + [SMALL_STATE(4365)] = 42707, + [SMALL_STATE(4366)] = 42781, + [SMALL_STATE(4367)] = 42853, + [SMALL_STATE(4368)] = 42973, + [SMALL_STATE(4369)] = 43051, + [SMALL_STATE(4370)] = 43131, + [SMALL_STATE(4371)] = 43215, + [SMALL_STATE(4372)] = 43281, + [SMALL_STATE(4373)] = 43353, + [SMALL_STATE(4374)] = 43425, + [SMALL_STATE(4375)] = 43497, + [SMALL_STATE(4376)] = 43575, + [SMALL_STATE(4377)] = 43647, + [SMALL_STATE(4378)] = 43719, + [SMALL_STATE(4379)] = 43791, + [SMALL_STATE(4380)] = 43863, + [SMALL_STATE(4381)] = 43935, + [SMALL_STATE(4382)] = 44007, + [SMALL_STATE(4383)] = 44085, + [SMALL_STATE(4384)] = 44157, + [SMALL_STATE(4385)] = 44229, + [SMALL_STATE(4386)] = 44301, + [SMALL_STATE(4387)] = 44373, + [SMALL_STATE(4388)] = 44445, + [SMALL_STATE(4389)] = 44519, + [SMALL_STATE(4390)] = 44591, + [SMALL_STATE(4391)] = 44669, + [SMALL_STATE(4392)] = 44741, + [SMALL_STATE(4393)] = 44807, + [SMALL_STATE(4394)] = 44889, + [SMALL_STATE(4395)] = 44980, + [SMALL_STATE(4396)] = 45089, + [SMALL_STATE(4397)] = 45202, + [SMALL_STATE(4398)] = 45311, + [SMALL_STATE(4399)] = 45424, + [SMALL_STATE(4400)] = 45489, + [SMALL_STATE(4401)] = 45554, + [SMALL_STATE(4402)] = 45639, + [SMALL_STATE(4403)] = 45712, + [SMALL_STATE(4404)] = 45777, + [SMALL_STATE(4405)] = 45842, + [SMALL_STATE(4406)] = 45907, + [SMALL_STATE(4407)] = 45972, + [SMALL_STATE(4408)] = 46037, + [SMALL_STATE(4409)] = 46120, + [SMALL_STATE(4410)] = 46185, + [SMALL_STATE(4411)] = 46268, + [SMALL_STATE(4412)] = 46333, + [SMALL_STATE(4413)] = 46442, + [SMALL_STATE(4414)] = 46551, + [SMALL_STATE(4415)] = 46660, + [SMALL_STATE(4416)] = 46725, + [SMALL_STATE(4417)] = 46804, + [SMALL_STATE(4418)] = 46869, + [SMALL_STATE(4419)] = 46934, + [SMALL_STATE(4420)] = 47019, + [SMALL_STATE(4421)] = 47084, + [SMALL_STATE(4422)] = 47157, + [SMALL_STATE(4423)] = 47222, + [SMALL_STATE(4424)] = 47295, + [SMALL_STATE(4425)] = 47360, + [SMALL_STATE(4426)] = 47443, + [SMALL_STATE(4427)] = 47516, + [SMALL_STATE(4428)] = 47589, + [SMALL_STATE(4429)] = 47672, + [SMALL_STATE(4430)] = 47751, + [SMALL_STATE(4431)] = 47824, + [SMALL_STATE(4432)] = 47897, + [SMALL_STATE(4433)] = 47970, + [SMALL_STATE(4434)] = 48053, + [SMALL_STATE(4435)] = 48126, + [SMALL_STATE(4436)] = 48199, + [SMALL_STATE(4437)] = 48272, + [SMALL_STATE(4438)] = 48345, + [SMALL_STATE(4439)] = 48418, + [SMALL_STATE(4440)] = 48491, + [SMALL_STATE(4441)] = 48564, + [SMALL_STATE(4442)] = 48637, + [SMALL_STATE(4443)] = 48722, + [SMALL_STATE(4444)] = 48795, + [SMALL_STATE(4445)] = 48868, + [SMALL_STATE(4446)] = 48951, + [SMALL_STATE(4447)] = 49024, + [SMALL_STATE(4448)] = 49107, + [SMALL_STATE(4449)] = 49180, + [SMALL_STATE(4450)] = 49253, + [SMALL_STATE(4451)] = 49318, + [SMALL_STATE(4452)] = 49391, + [SMALL_STATE(4453)] = 49456, + [SMALL_STATE(4454)] = 49541, + [SMALL_STATE(4455)] = 49624, + [SMALL_STATE(4456)] = 49707, + [SMALL_STATE(4457)] = 49792, + [SMALL_STATE(4458)] = 49865, + [SMALL_STATE(4459)] = 49938, + [SMALL_STATE(4460)] = 50021, + [SMALL_STATE(4461)] = 50104, + [SMALL_STATE(4462)] = 50175, + [SMALL_STATE(4463)] = 50244, + [SMALL_STATE(4464)] = 50313, + [SMALL_STATE(4465)] = 50386, + [SMALL_STATE(4466)] = 50451, + [SMALL_STATE(4467)] = 50516, + [SMALL_STATE(4468)] = 50599, + [SMALL_STATE(4469)] = 50672, + [SMALL_STATE(4470)] = 50745, + [SMALL_STATE(4471)] = 50810, + [SMALL_STATE(4472)] = 50889, + [SMALL_STATE(4473)] = 50974, + [SMALL_STATE(4474)] = 51047, + [SMALL_STATE(4475)] = 51120, + [SMALL_STATE(4476)] = 51185, + [SMALL_STATE(4477)] = 51250, + [SMALL_STATE(4478)] = 51315, + [SMALL_STATE(4479)] = 51384, + [SMALL_STATE(4480)] = 51449, + [SMALL_STATE(4481)] = 51518, + [SMALL_STATE(4482)] = 51591, + [SMALL_STATE(4483)] = 51656, + [SMALL_STATE(4484)] = 51737, + [SMALL_STATE(4485)] = 51820, + [SMALL_STATE(4486)] = 51905, + [SMALL_STATE(4487)] = 51970, + [SMALL_STATE(4488)] = 52043, + [SMALL_STATE(4489)] = 52126, + [SMALL_STATE(4490)] = 52209, + [SMALL_STATE(4491)] = 52274, + [SMALL_STATE(4492)] = 52347, + [SMALL_STATE(4493)] = 52420, + [SMALL_STATE(4494)] = 52485, + [SMALL_STATE(4495)] = 52558, + [SMALL_STATE(4496)] = 52631, + [SMALL_STATE(4497)] = 52696, + [SMALL_STATE(4498)] = 52769, + [SMALL_STATE(4499)] = 52842, + [SMALL_STATE(4500)] = 52915, + [SMALL_STATE(4501)] = 52980, + [SMALL_STATE(4502)] = 53045, + [SMALL_STATE(4503)] = 53110, + [SMALL_STATE(4504)] = 53175, + [SMALL_STATE(4505)] = 53240, + [SMALL_STATE(4506)] = 53311, + [SMALL_STATE(4507)] = 53376, + [SMALL_STATE(4508)] = 53461, + [SMALL_STATE(4509)] = 53534, + [SMALL_STATE(4510)] = 53607, + [SMALL_STATE(4511)] = 53680, + [SMALL_STATE(4512)] = 53753, + [SMALL_STATE(4513)] = 53826, + [SMALL_STATE(4514)] = 53899, + [SMALL_STATE(4515)] = 53972, + [SMALL_STATE(4516)] = 54045, + [SMALL_STATE(4517)] = 54110, + [SMALL_STATE(4518)] = 54175, + [SMALL_STATE(4519)] = 54242, + [SMALL_STATE(4520)] = 54307, + [SMALL_STATE(4521)] = 54372, + [SMALL_STATE(4522)] = 54437, + [SMALL_STATE(4523)] = 54502, + [SMALL_STATE(4524)] = 54567, + [SMALL_STATE(4525)] = 54640, + [SMALL_STATE(4526)] = 54705, + [SMALL_STATE(4527)] = 54770, + [SMALL_STATE(4528)] = 54835, + [SMALL_STATE(4529)] = 54944, + [SMALL_STATE(4530)] = 55057, + [SMALL_STATE(4531)] = 55162, + [SMALL_STATE(4532)] = 55263, + [SMALL_STATE(4533)] = 55362, + [SMALL_STATE(4534)] = 55459, + [SMALL_STATE(4535)] = 55554, + [SMALL_STATE(4536)] = 55619, + [SMALL_STATE(4537)] = 55706, + [SMALL_STATE(4538)] = 55785, + [SMALL_STATE(4539)] = 55850, + [SMALL_STATE(4540)] = 55915, + [SMALL_STATE(4541)] = 55980, + [SMALL_STATE(4542)] = 56045, + [SMALL_STATE(4543)] = 56110, + [SMALL_STATE(4544)] = 56175, + [SMALL_STATE(4545)] = 56240, + [SMALL_STATE(4546)] = 56313, + [SMALL_STATE(4547)] = 56377, + [SMALL_STATE(4548)] = 56471, + [SMALL_STATE(4549)] = 56565, + [SMALL_STATE(4550)] = 56633, + [SMALL_STATE(4551)] = 56713, + [SMALL_STATE(4552)] = 56781, + [SMALL_STATE(4553)] = 56849, + [SMALL_STATE(4554)] = 56943, + [SMALL_STATE(4555)] = 57037, + [SMALL_STATE(4556)] = 57105, + [SMALL_STATE(4557)] = 57173, + [SMALL_STATE(4558)] = 57267, + [SMALL_STATE(4559)] = 57385, + [SMALL_STATE(4560)] = 57457, + [SMALL_STATE(4561)] = 57533, + [SMALL_STATE(4562)] = 57609, + [SMALL_STATE(4563)] = 57681, + [SMALL_STATE(4564)] = 57753, + [SMALL_STATE(4565)] = 57825, + [SMALL_STATE(4566)] = 57889, + [SMALL_STATE(4567)] = 57953, + [SMALL_STATE(4568)] = 58035, + [SMALL_STATE(4569)] = 58129, + [SMALL_STATE(4570)] = 58223, + [SMALL_STATE(4571)] = 58295, + [SMALL_STATE(4572)] = 58367, + [SMALL_STATE(4573)] = 58439, + [SMALL_STATE(4574)] = 58513, + [SMALL_STATE(4575)] = 58581, + [SMALL_STATE(4576)] = 58653, + [SMALL_STATE(4577)] = 58725, + [SMALL_STATE(4578)] = 58797, + [SMALL_STATE(4579)] = 58871, + [SMALL_STATE(4580)] = 58965, + [SMALL_STATE(4581)] = 59033, + [SMALL_STATE(4582)] = 59109, + [SMALL_STATE(4583)] = 59203, + [SMALL_STATE(4584)] = 59297, + [SMALL_STATE(4585)] = 59391, + [SMALL_STATE(4586)] = 59485, + [SMALL_STATE(4587)] = 59553, + [SMALL_STATE(4588)] = 59617, + [SMALL_STATE(4589)] = 59681, + [SMALL_STATE(4590)] = 59755, + [SMALL_STATE(4591)] = 59821, + [SMALL_STATE(4592)] = 59889, + [SMALL_STATE(4593)] = 59983, + [SMALL_STATE(4594)] = 60049, + [SMALL_STATE(4595)] = 60117, + [SMALL_STATE(4596)] = 60193, + [SMALL_STATE(4597)] = 60261, + [SMALL_STATE(4598)] = 60331, + [SMALL_STATE(4599)] = 60407, + [SMALL_STATE(4600)] = 60475, + [SMALL_STATE(4601)] = 60551, + [SMALL_STATE(4602)] = 60625, + [SMALL_STATE(4603)] = 60689, + [SMALL_STATE(4604)] = 60757, + [SMALL_STATE(4605)] = 60823, + [SMALL_STATE(4606)] = 60887, + [SMALL_STATE(4607)] = 60951, + [SMALL_STATE(4608)] = 61019, + [SMALL_STATE(4609)] = 61137, + [SMALL_STATE(4610)] = 61207, + [SMALL_STATE(4611)] = 61283, + [SMALL_STATE(4612)] = 61357, + [SMALL_STATE(4613)] = 61451, + [SMALL_STATE(4614)] = 61527, + [SMALL_STATE(4615)] = 61645, + [SMALL_STATE(4616)] = 61713, + [SMALL_STATE(4617)] = 61831, + [SMALL_STATE(4618)] = 61905, + [SMALL_STATE(4619)] = 61973, + [SMALL_STATE(4620)] = 62067, + [SMALL_STATE(4621)] = 62161, + [SMALL_STATE(4622)] = 62255, + [SMALL_STATE(4623)] = 62331, + [SMALL_STATE(4624)] = 62399, + [SMALL_STATE(4625)] = 62493, + [SMALL_STATE(4626)] = 62569, + [SMALL_STATE(4627)] = 62632, + [SMALL_STATE(4628)] = 62751, + [SMALL_STATE(4629)] = 62822, + [SMALL_STATE(4630)] = 62893, + [SMALL_STATE(4631)] = 62964, + [SMALL_STATE(4632)] = 63037, + [SMALL_STATE(4633)] = 63104, + [SMALL_STATE(4634)] = 63177, + [SMALL_STATE(4635)] = 63260, + [SMALL_STATE(4636)] = 63327, + [SMALL_STATE(4637)] = 63446, + [SMALL_STATE(4638)] = 63529, + [SMALL_STATE(4639)] = 63596, + [SMALL_STATE(4640)] = 63663, + [SMALL_STATE(4641)] = 63734, + [SMALL_STATE(4642)] = 63801, + [SMALL_STATE(4643)] = 63874, + [SMALL_STATE(4644)] = 64035, + [SMALL_STATE(4645)] = 64102, + [SMALL_STATE(4646)] = 64175, + [SMALL_STATE(4647)] = 64246, + [SMALL_STATE(4648)] = 64365, + [SMALL_STATE(4649)] = 64478, + [SMALL_STATE(4650)] = 64555, + [SMALL_STATE(4651)] = 64620, + [SMALL_STATE(4652)] = 64739, + [SMALL_STATE(4653)] = 64812, + [SMALL_STATE(4654)] = 64877, + [SMALL_STATE(4655)] = 64990, + [SMALL_STATE(4656)] = 65063, + [SMALL_STATE(4657)] = 65134, + [SMALL_STATE(4658)] = 65201, + [SMALL_STATE(4659)] = 65272, + [SMALL_STATE(4660)] = 65335, + [SMALL_STATE(4661)] = 65402, + [SMALL_STATE(4662)] = 65563, + [SMALL_STATE(4663)] = 65628, + [SMALL_STATE(4664)] = 65699, + [SMALL_STATE(4665)] = 65790, + [SMALL_STATE(4666)] = 65855, + [SMALL_STATE(4667)] = 65922, + [SMALL_STATE(4668)] = 65999, + [SMALL_STATE(4669)] = 66160, + [SMALL_STATE(4670)] = 66227, + [SMALL_STATE(4671)] = 66298, + [SMALL_STATE(4672)] = 66361, + [SMALL_STATE(4673)] = 66434, + [SMALL_STATE(4674)] = 66543, + [SMALL_STATE(4675)] = 66614, + [SMALL_STATE(4676)] = 66679, + [SMALL_STATE(4677)] = 66796, + [SMALL_STATE(4678)] = 66879, + [SMALL_STATE(4679)] = 66968, + [SMALL_STATE(4680)] = 67039, + [SMALL_STATE(4681)] = 67106, + [SMALL_STATE(4682)] = 67169, + [SMALL_STATE(4683)] = 67236, + [SMALL_STATE(4684)] = 67303, + [SMALL_STATE(4685)] = 67422, + [SMALL_STATE(4686)] = 67489, + [SMALL_STATE(4687)] = 67608, + [SMALL_STATE(4688)] = 67693, + [SMALL_STATE(4689)] = 67756, + [SMALL_STATE(4690)] = 67875, + [SMALL_STATE(4691)] = 67992, + [SMALL_STATE(4692)] = 68059, + [SMALL_STATE(4693)] = 68124, + [SMALL_STATE(4694)] = 68187, + [SMALL_STATE(4695)] = 68252, + [SMALL_STATE(4696)] = 68319, + [SMALL_STATE(4697)] = 68392, + [SMALL_STATE(4698)] = 68459, + [SMALL_STATE(4699)] = 68620, + [SMALL_STATE(4700)] = 68685, + [SMALL_STATE(4701)] = 68758, + [SMALL_STATE(4702)] = 68823, + [SMALL_STATE(4703)] = 68890, + [SMALL_STATE(4704)] = 68953, + [SMALL_STATE(4705)] = 69072, + [SMALL_STATE(4706)] = 69143, + [SMALL_STATE(4707)] = 69208, + [SMALL_STATE(4708)] = 69275, + [SMALL_STATE(4709)] = 69348, + [SMALL_STATE(4710)] = 69457, + [SMALL_STATE(4711)] = 69522, + [SMALL_STATE(4712)] = 69587, + [SMALL_STATE(4713)] = 69696, + [SMALL_STATE(4714)] = 69805, + [SMALL_STATE(4715)] = 69884, + [SMALL_STATE(4716)] = 69957, + [SMALL_STATE(4717)] = 70024, + [SMALL_STATE(4718)] = 70087, + [SMALL_STATE(4719)] = 70192, + [SMALL_STATE(4720)] = 70301, + [SMALL_STATE(4721)] = 70402, + [SMALL_STATE(4722)] = 70469, + [SMALL_STATE(4723)] = 70536, + [SMALL_STATE(4724)] = 70633, + [SMALL_STATE(4725)] = 70704, + [SMALL_STATE(4726)] = 70775, + [SMALL_STATE(4727)] = 70856, + [SMALL_STATE(4728)] = 70925, + [SMALL_STATE(4729)] = 71038, + [SMALL_STATE(4730)] = 71105, + [SMALL_STATE(4731)] = 71176, + [SMALL_STATE(4732)] = 71247, + [SMALL_STATE(4733)] = 71366, + [SMALL_STATE(4734)] = 71439, + [SMALL_STATE(4735)] = 71504, + [SMALL_STATE(4736)] = 71577, + [SMALL_STATE(4737)] = 71648, + [SMALL_STATE(4738)] = 71719, + [SMALL_STATE(4739)] = 71814, + [SMALL_STATE(4740)] = 71885, + [SMALL_STATE(4741)] = 71956, + [SMALL_STATE(4742)] = 72027, + [SMALL_STATE(4743)] = 72098, + [SMALL_STATE(4744)] = 72169, + [SMALL_STATE(4745)] = 72240, + [SMALL_STATE(4746)] = 72311, + [SMALL_STATE(4747)] = 72382, + [SMALL_STATE(4748)] = 72453, + [SMALL_STATE(4749)] = 72520, + [SMALL_STATE(4750)] = 72591, + [SMALL_STATE(4751)] = 72662, + [SMALL_STATE(4752)] = 72735, + [SMALL_STATE(4753)] = 72800, + [SMALL_STATE(4754)] = 72873, + [SMALL_STATE(4755)] = 72944, + [SMALL_STATE(4756)] = 73011, + [SMALL_STATE(4757)] = 73120, + [SMALL_STATE(4758)] = 73191, + [SMALL_STATE(4759)] = 73263, + [SMALL_STATE(4760)] = 73325, + [SMALL_STATE(4761)] = 73391, + [SMALL_STATE(4762)] = 73463, + [SMALL_STATE(4763)] = 73525, + [SMALL_STATE(4764)] = 73587, + [SMALL_STATE(4765)] = 73653, + [SMALL_STATE(4766)] = 73769, + [SMALL_STATE(4767)] = 73831, + [SMALL_STATE(4768)] = 73893, + [SMALL_STATE(4769)] = 74009, + [SMALL_STATE(4770)] = 74071, + [SMALL_STATE(4771)] = 74135, + [SMALL_STATE(4772)] = 74205, + [SMALL_STATE(4773)] = 74321, + [SMALL_STATE(4774)] = 74393, + [SMALL_STATE(4775)] = 74463, + [SMALL_STATE(4776)] = 74533, + [SMALL_STATE(4777)] = 74649, + [SMALL_STATE(4778)] = 74711, + [SMALL_STATE(4779)] = 74773, + [SMALL_STATE(4780)] = 74843, + [SMALL_STATE(4781)] = 74915, + [SMALL_STATE(4782)] = 75031, + [SMALL_STATE(4783)] = 75105, + [SMALL_STATE(4784)] = 75167, + [SMALL_STATE(4785)] = 75237, + [SMALL_STATE(4786)] = 75309, + [SMALL_STATE(4787)] = 75371, + [SMALL_STATE(4788)] = 75487, + [SMALL_STATE(4789)] = 75559, + [SMALL_STATE(4790)] = 75625, + [SMALL_STATE(4791)] = 75741, + [SMALL_STATE(4792)] = 75803, + [SMALL_STATE(4793)] = 75865, + [SMALL_STATE(4794)] = 75981, + [SMALL_STATE(4795)] = 76043, + [SMALL_STATE(4796)] = 76105, + [SMALL_STATE(4797)] = 76167, + [SMALL_STATE(4798)] = 76235, + [SMALL_STATE(4799)] = 76297, + [SMALL_STATE(4800)] = 76387, + [SMALL_STATE(4801)] = 76449, + [SMALL_STATE(4802)] = 76565, + [SMALL_STATE(4803)] = 76627, + [SMALL_STATE(4804)] = 76689, + [SMALL_STATE(4805)] = 76805, + [SMALL_STATE(4806)] = 76867, + [SMALL_STATE(4807)] = 76929, + [SMALL_STATE(4808)] = 76995, + [SMALL_STATE(4809)] = 77057, + [SMALL_STATE(4810)] = 77151, + [SMALL_STATE(4811)] = 77213, + [SMALL_STATE(4812)] = 77275, + [SMALL_STATE(4813)] = 77391, + [SMALL_STATE(4814)] = 77453, + [SMALL_STATE(4815)] = 77565, + [SMALL_STATE(4816)] = 77627, + [SMALL_STATE(4817)] = 77715, + [SMALL_STATE(4818)] = 77781, + [SMALL_STATE(4819)] = 77849, + [SMALL_STATE(4820)] = 77911, + [SMALL_STATE(4821)] = 77973, + [SMALL_STATE(4822)] = 78089, + [SMALL_STATE(4823)] = 78151, + [SMALL_STATE(4824)] = 78213, + [SMALL_STATE(4825)] = 78279, + [SMALL_STATE(4826)] = 78341, + [SMALL_STATE(4827)] = 78457, + [SMALL_STATE(4828)] = 78519, + [SMALL_STATE(4829)] = 78635, + [SMALL_STATE(4830)] = 78697, + [SMALL_STATE(4831)] = 78759, + [SMALL_STATE(4832)] = 78821, + [SMALL_STATE(4833)] = 78937, + [SMALL_STATE(4834)] = 78999, + [SMALL_STATE(4835)] = 79115, + [SMALL_STATE(4836)] = 79227, + [SMALL_STATE(4837)] = 79289, + [SMALL_STATE(4838)] = 79357, + [SMALL_STATE(4839)] = 79425, + [SMALL_STATE(4840)] = 79487, + [SMALL_STATE(4841)] = 79549, + [SMALL_STATE(4842)] = 79665, + [SMALL_STATE(4843)] = 79727, + [SMALL_STATE(4844)] = 79799, + [SMALL_STATE(4845)] = 79861, + [SMALL_STATE(4846)] = 79923, + [SMALL_STATE(4847)] = 80039, + [SMALL_STATE(4848)] = 80147, + [SMALL_STATE(4849)] = 80209, + [SMALL_STATE(4850)] = 80317, + [SMALL_STATE(4851)] = 80425, + [SMALL_STATE(4852)] = 80487, + [SMALL_STATE(4853)] = 80549, + [SMALL_STATE(4854)] = 80611, + [SMALL_STATE(4855)] = 80719, + [SMALL_STATE(4856)] = 80781, + [SMALL_STATE(4857)] = 80859, + [SMALL_STATE(4858)] = 80939, + [SMALL_STATE(4859)] = 81055, + [SMALL_STATE(4860)] = 81137, + [SMALL_STATE(4861)] = 81253, + [SMALL_STATE(4862)] = 81315, + [SMALL_STATE(4863)] = 81387, + [SMALL_STATE(4864)] = 81503, + [SMALL_STATE(4865)] = 81565, + [SMALL_STATE(4866)] = 81627, + [SMALL_STATE(4867)] = 81697, + [SMALL_STATE(4868)] = 81813, + [SMALL_STATE(4869)] = 81929, + [SMALL_STATE(4870)] = 81991, + [SMALL_STATE(4871)] = 82107, + [SMALL_STATE(4872)] = 82179, + [SMALL_STATE(4873)] = 82251, + [SMALL_STATE(4874)] = 82367, + [SMALL_STATE(4875)] = 82483, + [SMALL_STATE(4876)] = 82545, + [SMALL_STATE(4877)] = 82661, + [SMALL_STATE(4878)] = 82777, + [SMALL_STATE(4879)] = 82839, + [SMALL_STATE(4880)] = 82955, + [SMALL_STATE(4881)] = 83027, + [SMALL_STATE(4882)] = 83143, + [SMALL_STATE(4883)] = 83259, + [SMALL_STATE(4884)] = 83329, + [SMALL_STATE(4885)] = 83445, + [SMALL_STATE(4886)] = 83511, + [SMALL_STATE(4887)] = 83573, + [SMALL_STATE(4888)] = 83645, + [SMALL_STATE(4889)] = 83761, + [SMALL_STATE(4890)] = 83877, + [SMALL_STATE(4891)] = 83993, + [SMALL_STATE(4892)] = 84063, + [SMALL_STATE(4893)] = 84179, + [SMALL_STATE(4894)] = 84295, + [SMALL_STATE(4895)] = 84411, + [SMALL_STATE(4896)] = 84481, + [SMALL_STATE(4897)] = 84553, + [SMALL_STATE(4898)] = 84621, + [SMALL_STATE(4899)] = 84683, + [SMALL_STATE(4900)] = 84767, + [SMALL_STATE(4901)] = 84833, + [SMALL_STATE(4902)] = 84899, + [SMALL_STATE(4903)] = 85007, + [SMALL_STATE(4904)] = 85079, + [SMALL_STATE(4905)] = 85141, + [SMALL_STATE(4906)] = 85207, + [SMALL_STATE(4907)] = 85277, + [SMALL_STATE(4908)] = 85393, + [SMALL_STATE(4909)] = 85455, + [SMALL_STATE(4910)] = 85571, + [SMALL_STATE(4911)] = 85633, + [SMALL_STATE(4912)] = 85749, + [SMALL_STATE(4913)] = 85815, + [SMALL_STATE(4914)] = 85887, + [SMALL_STATE(4915)] = 86003, + [SMALL_STATE(4916)] = 86065, + [SMALL_STATE(4917)] = 86181, + [SMALL_STATE(4918)] = 86251, + [SMALL_STATE(4919)] = 86313, + [SMALL_STATE(4920)] = 86381, + [SMALL_STATE(4921)] = 86497, + [SMALL_STATE(4922)] = 86563, + [SMALL_STATE(4923)] = 86633, + [SMALL_STATE(4924)] = 86703, + [SMALL_STATE(4925)] = 86765, + [SMALL_STATE(4926)] = 86881, + [SMALL_STATE(4927)] = 86989, + [SMALL_STATE(4928)] = 87053, + [SMALL_STATE(4929)] = 87169, + [SMALL_STATE(4930)] = 87285, + [SMALL_STATE(4931)] = 87401, + [SMALL_STATE(4932)] = 87517, + [SMALL_STATE(4933)] = 87579, + [SMALL_STATE(4934)] = 87641, + [SMALL_STATE(4935)] = 87757, + [SMALL_STATE(4936)] = 87873, + [SMALL_STATE(4937)] = 87985, + [SMALL_STATE(4938)] = 88057, + [SMALL_STATE(4939)] = 88173, + [SMALL_STATE(4940)] = 88289, + [SMALL_STATE(4941)] = 88405, + [SMALL_STATE(4942)] = 88521, + [SMALL_STATE(4943)] = 88637, + [SMALL_STATE(4944)] = 88699, + [SMALL_STATE(4945)] = 88815, + [SMALL_STATE(4946)] = 88931, + [SMALL_STATE(4947)] = 89047, + [SMALL_STATE(4948)] = 89163, + [SMALL_STATE(4949)] = 89279, + [SMALL_STATE(4950)] = 89395, + [SMALL_STATE(4951)] = 89511, + [SMALL_STATE(4952)] = 89573, + [SMALL_STATE(4953)] = 89635, + [SMALL_STATE(4954)] = 89751, + [SMALL_STATE(4955)] = 89815, + [SMALL_STATE(4956)] = 89877, + [SMALL_STATE(4957)] = 89993, + [SMALL_STATE(4958)] = 90109, + [SMALL_STATE(4959)] = 90225, + [SMALL_STATE(4960)] = 90297, + [SMALL_STATE(4961)] = 90359, + [SMALL_STATE(4962)] = 90433, + [SMALL_STATE(4963)] = 90549, + [SMALL_STATE(4964)] = 90613, + [SMALL_STATE(4965)] = 90729, + [SMALL_STATE(4966)] = 90791, + [SMALL_STATE(4967)] = 90863, + [SMALL_STATE(4968)] = 90925, + [SMALL_STATE(4969)] = 91041, + [SMALL_STATE(4970)] = 91145, + [SMALL_STATE(4971)] = 91207, + [SMALL_STATE(4972)] = 91269, + [SMALL_STATE(4973)] = 91331, + [SMALL_STATE(4974)] = 91447, + [SMALL_STATE(4975)] = 91563, + [SMALL_STATE(4976)] = 91631, + [SMALL_STATE(4977)] = 91693, + [SMALL_STATE(4978)] = 91765, + [SMALL_STATE(4979)] = 91827, + [SMALL_STATE(4980)] = 91899, + [SMALL_STATE(4981)] = 91961, + [SMALL_STATE(4982)] = 92023, + [SMALL_STATE(4983)] = 92085, + [SMALL_STATE(4984)] = 92185, + [SMALL_STATE(4985)] = 92257, + [SMALL_STATE(4986)] = 92373, + [SMALL_STATE(4987)] = 92435, + [SMALL_STATE(4988)] = 92497, + [SMALL_STATE(4989)] = 92559, + [SMALL_STATE(4990)] = 92627, + [SMALL_STATE(4991)] = 92689, + [SMALL_STATE(4992)] = 92759, + [SMALL_STATE(4993)] = 92831, + [SMALL_STATE(4994)] = 92893, + [SMALL_STATE(4995)] = 92989, + [SMALL_STATE(4996)] = 93051, + [SMALL_STATE(4997)] = 93167, + [SMALL_STATE(4998)] = 93229, + [SMALL_STATE(4999)] = 93345, + [SMALL_STATE(5000)] = 93407, + [SMALL_STATE(5001)] = 93469, + [SMALL_STATE(5002)] = 93585, + [SMALL_STATE(5003)] = 93701, + [SMALL_STATE(5004)] = 93767, + [SMALL_STATE(5005)] = 93883, + [SMALL_STATE(5006)] = 93999, + [SMALL_STATE(5007)] = 94115, + [SMALL_STATE(5008)] = 94231, + [SMALL_STATE(5009)] = 94347, + [SMALL_STATE(5010)] = 94463, + [SMALL_STATE(5011)] = 94579, + [SMALL_STATE(5012)] = 94695, + [SMALL_STATE(5013)] = 94811, + [SMALL_STATE(5014)] = 94877, + [SMALL_STATE(5015)] = 94939, + [SMALL_STATE(5016)] = 95001, + [SMALL_STATE(5017)] = 95069, + [SMALL_STATE(5018)] = 95141, + [SMALL_STATE(5019)] = 95257, + [SMALL_STATE(5020)] = 95319, + [SMALL_STATE(5021)] = 95387, + [SMALL_STATE(5022)] = 95453, + [SMALL_STATE(5023)] = 95569, + [SMALL_STATE(5024)] = 95685, + [SMALL_STATE(5025)] = 95747, + [SMALL_STATE(5026)] = 95808, + [SMALL_STATE(5027)] = 95877, + [SMALL_STATE(5028)] = 95938, + [SMALL_STATE(5029)] = 95999, + [SMALL_STATE(5030)] = 96060, + [SMALL_STATE(5031)] = 96121, + [SMALL_STATE(5032)] = 96182, + [SMALL_STATE(5033)] = 96249, + [SMALL_STATE(5034)] = 96324, + [SMALL_STATE(5035)] = 96427, + [SMALL_STATE(5036)] = 96526, + [SMALL_STATE(5037)] = 96621, + [SMALL_STATE(5038)] = 96714, + [SMALL_STATE(5039)] = 96803, + [SMALL_STATE(5040)] = 96890, + [SMALL_STATE(5041)] = 96951, + [SMALL_STATE(5042)] = 97034, + [SMALL_STATE(5043)] = 97113, + [SMALL_STATE(5044)] = 97174, + [SMALL_STATE(5045)] = 97287, + [SMALL_STATE(5046)] = 97368, + [SMALL_STATE(5047)] = 97429, + [SMALL_STATE(5048)] = 97496, + [SMALL_STATE(5049)] = 97561, + [SMALL_STATE(5050)] = 97622, + [SMALL_STATE(5051)] = 97683, + [SMALL_STATE(5052)] = 97744, + [SMALL_STATE(5053)] = 97819, + [SMALL_STATE(5054)] = 97882, + [SMALL_STATE(5055)] = 97951, + [SMALL_STATE(5056)] = 98016, + [SMALL_STATE(5057)] = 98085, + [SMALL_STATE(5058)] = 98160, + [SMALL_STATE(5059)] = 98273, + [SMALL_STATE(5060)] = 98342, + [SMALL_STATE(5061)] = 98403, + [SMALL_STATE(5062)] = 98468, + [SMALL_STATE(5063)] = 98537, + [SMALL_STATE(5064)] = 98598, + [SMALL_STATE(5065)] = 98663, + [SMALL_STATE(5066)] = 98724, + [SMALL_STATE(5067)] = 98785, + [SMALL_STATE(5068)] = 98846, + [SMALL_STATE(5069)] = 98913, + [SMALL_STATE(5070)] = 98974, + [SMALL_STATE(5071)] = 99035, + [SMALL_STATE(5072)] = 99134, + [SMALL_STATE(5073)] = 99233, + [SMALL_STATE(5074)] = 99340, + [SMALL_STATE(5075)] = 99453, + [SMALL_STATE(5076)] = 99514, + [SMALL_STATE(5077)] = 99587, + [SMALL_STATE(5078)] = 99648, + [SMALL_STATE(5079)] = 99709, + [SMALL_STATE(5080)] = 99774, + [SMALL_STATE(5081)] = 99835, + [SMALL_STATE(5082)] = 99896, + [SMALL_STATE(5083)] = 99957, + [SMALL_STATE(5084)] = 100018, + [SMALL_STATE(5085)] = 100079, + [SMALL_STATE(5086)] = 100140, + [SMALL_STATE(5087)] = 100219, + [SMALL_STATE(5088)] = 100280, + [SMALL_STATE(5089)] = 100341, + [SMALL_STATE(5090)] = 100402, + [SMALL_STATE(5091)] = 100463, + [SMALL_STATE(5092)] = 100528, + [SMALL_STATE(5093)] = 100635, + [SMALL_STATE(5094)] = 100696, + [SMALL_STATE(5095)] = 100803, + [SMALL_STATE(5096)] = 100864, + [SMALL_STATE(5097)] = 100925, + [SMALL_STATE(5098)] = 100988, + [SMALL_STATE(5099)] = 101049, + [SMALL_STATE(5100)] = 101118, + [SMALL_STATE(5101)] = 101179, + [SMALL_STATE(5102)] = 101240, + [SMALL_STATE(5103)] = 101353, + [SMALL_STATE(5104)] = 101420, + [SMALL_STATE(5105)] = 101531, + [SMALL_STATE(5106)] = 101592, + [SMALL_STATE(5107)] = 101657, + [SMALL_STATE(5108)] = 101718, + [SMALL_STATE(5109)] = 101799, + [SMALL_STATE(5110)] = 101864, + [SMALL_STATE(5111)] = 101971, + [SMALL_STATE(5112)] = 102032, + [SMALL_STATE(5113)] = 102145, + [SMALL_STATE(5114)] = 102252, + [SMALL_STATE(5115)] = 102321, + [SMALL_STATE(5116)] = 102434, + [SMALL_STATE(5117)] = 102501, + [SMALL_STATE(5118)] = 102562, + [SMALL_STATE(5119)] = 102631, + [SMALL_STATE(5120)] = 102696, + [SMALL_STATE(5121)] = 102761, + [SMALL_STATE(5122)] = 102826, + [SMALL_STATE(5123)] = 102899, + [SMALL_STATE(5124)] = 103012, + [SMALL_STATE(5125)] = 103125, + [SMALL_STATE(5126)] = 103236, + [SMALL_STATE(5127)] = 103301, + [SMALL_STATE(5128)] = 103362, + [SMALL_STATE(5129)] = 103423, + [SMALL_STATE(5130)] = 103536, + [SMALL_STATE(5131)] = 103601, + [SMALL_STATE(5132)] = 103670, + [SMALL_STATE(5133)] = 103731, + [SMALL_STATE(5134)] = 103792, + [SMALL_STATE(5135)] = 103853, + [SMALL_STATE(5136)] = 103914, + [SMALL_STATE(5137)] = 104027, + [SMALL_STATE(5138)] = 104096, + [SMALL_STATE(5139)] = 104157, + [SMALL_STATE(5140)] = 104226, + [SMALL_STATE(5141)] = 104287, + [SMALL_STATE(5142)] = 104400, + [SMALL_STATE(5143)] = 104513, + [SMALL_STATE(5144)] = 104578, + [SMALL_STATE(5145)] = 104691, + [SMALL_STATE(5146)] = 104804, + [SMALL_STATE(5147)] = 104865, + [SMALL_STATE(5148)] = 104978, + [SMALL_STATE(5149)] = 105039, + [SMALL_STATE(5150)] = 105152, + [SMALL_STATE(5151)] = 105265, + [SMALL_STATE(5152)] = 105326, + [SMALL_STATE(5153)] = 105439, + [SMALL_STATE(5154)] = 105502, + [SMALL_STATE(5155)] = 105615, + [SMALL_STATE(5156)] = 105722, + [SMALL_STATE(5157)] = 105783, + [SMALL_STATE(5158)] = 105896, + [SMALL_STATE(5159)] = 106009, + [SMALL_STATE(5160)] = 106074, + [SMALL_STATE(5161)] = 106187, + [SMALL_STATE(5162)] = 106300, + [SMALL_STATE(5163)] = 106413, + [SMALL_STATE(5164)] = 106526, + [SMALL_STATE(5165)] = 106639, + [SMALL_STATE(5166)] = 106752, + [SMALL_STATE(5167)] = 106865, + [SMALL_STATE(5168)] = 106978, + [SMALL_STATE(5169)] = 107091, + [SMALL_STATE(5170)] = 107204, + [SMALL_STATE(5171)] = 107317, + [SMALL_STATE(5172)] = 107430, + [SMALL_STATE(5173)] = 107543, + [SMALL_STATE(5174)] = 107604, + [SMALL_STATE(5175)] = 107665, + [SMALL_STATE(5176)] = 107778, + [SMALL_STATE(5177)] = 107845, + [SMALL_STATE(5178)] = 107912, + [SMALL_STATE(5179)] = 107977, + [SMALL_STATE(5180)] = 108044, + [SMALL_STATE(5181)] = 108105, + [SMALL_STATE(5182)] = 108180, + [SMALL_STATE(5183)] = 108295, + [SMALL_STATE(5184)] = 108356, + [SMALL_STATE(5185)] = 108417, + [SMALL_STATE(5186)] = 108492, + [SMALL_STATE(5187)] = 108553, + [SMALL_STATE(5188)] = 108614, + [SMALL_STATE(5189)] = 108679, + [SMALL_STATE(5190)] = 108744, + [SMALL_STATE(5191)] = 108811, + [SMALL_STATE(5192)] = 108926, + [SMALL_STATE(5193)] = 108991, + [SMALL_STATE(5194)] = 109056, + [SMALL_STATE(5195)] = 109167, + [SMALL_STATE(5196)] = 109236, + [SMALL_STATE(5197)] = 109299, + [SMALL_STATE(5198)] = 109412, + [SMALL_STATE(5199)] = 109473, + [SMALL_STATE(5200)] = 109534, + [SMALL_STATE(5201)] = 109595, + [SMALL_STATE(5202)] = 109656, + [SMALL_STATE(5203)] = 109721, + [SMALL_STATE(5204)] = 109786, + [SMALL_STATE(5205)] = 109899, + [SMALL_STATE(5206)] = 109966, + [SMALL_STATE(5207)] = 110027, + [SMALL_STATE(5208)] = 110088, + [SMALL_STATE(5209)] = 110149, + [SMALL_STATE(5210)] = 110214, + [SMALL_STATE(5211)] = 110275, + [SMALL_STATE(5212)] = 110336, + [SMALL_STATE(5213)] = 110397, + [SMALL_STATE(5214)] = 110458, + [SMALL_STATE(5215)] = 110519, + [SMALL_STATE(5216)] = 110586, + [SMALL_STATE(5217)] = 110647, + [SMALL_STATE(5218)] = 110716, + [SMALL_STATE(5219)] = 110777, + [SMALL_STATE(5220)] = 110838, + [SMALL_STATE(5221)] = 110903, + [SMALL_STATE(5222)] = 110964, + [SMALL_STATE(5223)] = 111033, + [SMALL_STATE(5224)] = 111094, + [SMALL_STATE(5225)] = 111161, + [SMALL_STATE(5226)] = 111222, + [SMALL_STATE(5227)] = 111291, + [SMALL_STATE(5228)] = 111352, + [SMALL_STATE(5229)] = 111413, + [SMALL_STATE(5230)] = 111482, + [SMALL_STATE(5231)] = 111543, + [SMALL_STATE(5232)] = 111608, + [SMALL_STATE(5233)] = 111669, + [SMALL_STATE(5234)] = 111730, + [SMALL_STATE(5235)] = 111799, + [SMALL_STATE(5236)] = 111860, + [SMALL_STATE(5237)] = 111929, + [SMALL_STATE(5238)] = 111998, + [SMALL_STATE(5239)] = 112067, + [SMALL_STATE(5240)] = 112128, + [SMALL_STATE(5241)] = 112189, + [SMALL_STATE(5242)] = 112258, + [SMALL_STATE(5243)] = 112327, + [SMALL_STATE(5244)] = 112396, + [SMALL_STATE(5245)] = 112461, + [SMALL_STATE(5246)] = 112522, + [SMALL_STATE(5247)] = 112583, + [SMALL_STATE(5248)] = 112644, + [SMALL_STATE(5249)] = 112705, + [SMALL_STATE(5250)] = 112774, + [SMALL_STATE(5251)] = 112835, + [SMALL_STATE(5252)] = 112896, + [SMALL_STATE(5253)] = 112965, + [SMALL_STATE(5254)] = 113026, + [SMALL_STATE(5255)] = 113087, + [SMALL_STATE(5256)] = 113148, + [SMALL_STATE(5257)] = 113221, + [SMALL_STATE(5258)] = 113282, + [SMALL_STATE(5259)] = 113359, + [SMALL_STATE(5260)] = 113426, + [SMALL_STATE(5261)] = 113487, + [SMALL_STATE(5262)] = 113561, + [SMALL_STATE(5263)] = 113621, + [SMALL_STATE(5264)] = 113683, + [SMALL_STATE(5265)] = 113797, + [SMALL_STATE(5266)] = 113905, + [SMALL_STATE(5267)] = 113965, + [SMALL_STATE(5268)] = 114069, + [SMALL_STATE(5269)] = 114225, + [SMALL_STATE(5270)] = 114291, + [SMALL_STATE(5271)] = 114395, + [SMALL_STATE(5272)] = 114455, + [SMALL_STATE(5273)] = 114563, + [SMALL_STATE(5274)] = 114629, + [SMALL_STATE(5275)] = 114693, + [SMALL_STATE(5276)] = 114797, + [SMALL_STATE(5277)] = 114861, + [SMALL_STATE(5278)] = 114921, + [SMALL_STATE(5279)] = 114987, + [SMALL_STATE(5280)] = 115061, + [SMALL_STATE(5281)] = 115121, + [SMALL_STATE(5282)] = 115203, + [SMALL_STATE(5283)] = 115307, + [SMALL_STATE(5284)] = 115463, + [SMALL_STATE(5285)] = 115523, + [SMALL_STATE(5286)] = 115583, + [SMALL_STATE(5287)] = 115643, + [SMALL_STATE(5288)] = 115747, + [SMALL_STATE(5289)] = 115807, + [SMALL_STATE(5290)] = 115867, + [SMALL_STATE(5291)] = 115937, + [SMALL_STATE(5292)] = 116045, + [SMALL_STATE(5293)] = 116111, + [SMALL_STATE(5294)] = 116189, + [SMALL_STATE(5295)] = 116249, + [SMALL_STATE(5296)] = 116309, + [SMALL_STATE(5297)] = 116369, + [SMALL_STATE(5298)] = 116473, + [SMALL_STATE(5299)] = 116533, + [SMALL_STATE(5300)] = 116637, + [SMALL_STATE(5301)] = 116793, + [SMALL_STATE(5302)] = 116897, + [SMALL_STATE(5303)] = 116967, + [SMALL_STATE(5304)] = 117071, + [SMALL_STATE(5305)] = 117143, + [SMALL_STATE(5306)] = 117247, + [SMALL_STATE(5307)] = 117307, + [SMALL_STATE(5308)] = 117369, + [SMALL_STATE(5309)] = 117435, + [SMALL_STATE(5310)] = 117507, + [SMALL_STATE(5311)] = 117611, + [SMALL_STATE(5312)] = 117767, + [SMALL_STATE(5313)] = 117827, + [SMALL_STATE(5314)] = 117887, + [SMALL_STATE(5315)] = 117947, + [SMALL_STATE(5316)] = 118051, + [SMALL_STATE(5317)] = 118157, + [SMALL_STATE(5318)] = 118217, + [SMALL_STATE(5319)] = 118281, + [SMALL_STATE(5320)] = 118437, + [SMALL_STATE(5321)] = 118505, + [SMALL_STATE(5322)] = 118565, + [SMALL_STATE(5323)] = 118625, + [SMALL_STATE(5324)] = 118685, + [SMALL_STATE(5325)] = 118753, + [SMALL_STATE(5326)] = 118827, + [SMALL_STATE(5327)] = 118887, + [SMALL_STATE(5328)] = 118953, + [SMALL_STATE(5329)] = 119029, + [SMALL_STATE(5330)] = 119185, + [SMALL_STATE(5331)] = 119291, + [SMALL_STATE(5332)] = 119363, + [SMALL_STATE(5333)] = 119437, + [SMALL_STATE(5334)] = 119537, + [SMALL_STATE(5335)] = 119643, + [SMALL_STATE(5336)] = 119757, + [SMALL_STATE(5337)] = 119853, + [SMALL_STATE(5338)] = 120009, + [SMALL_STATE(5339)] = 120069, + [SMALL_STATE(5340)] = 120161, + [SMALL_STATE(5341)] = 120221, + [SMALL_STATE(5342)] = 120289, + [SMALL_STATE(5343)] = 120379, + [SMALL_STATE(5344)] = 120465, + [SMALL_STATE(5345)] = 120525, + [SMALL_STATE(5346)] = 120585, + [SMALL_STATE(5347)] = 120645, + [SMALL_STATE(5348)] = 120729, + [SMALL_STATE(5349)] = 120789, + [SMALL_STATE(5350)] = 120849, + [SMALL_STATE(5351)] = 120909, + [SMALL_STATE(5352)] = 120991, + [SMALL_STATE(5353)] = 121051, + [SMALL_STATE(5354)] = 121119, + [SMALL_STATE(5355)] = 121179, + [SMALL_STATE(5356)] = 121257, + [SMALL_STATE(5357)] = 121361, + [SMALL_STATE(5358)] = 121441, + [SMALL_STATE(5359)] = 121509, + [SMALL_STATE(5360)] = 121583, + [SMALL_STATE(5361)] = 121653, + [SMALL_STATE(5362)] = 121713, + [SMALL_STATE(5363)] = 121775, + [SMALL_STATE(5364)] = 121839, + [SMALL_STATE(5365)] = 121899, + [SMALL_STATE(5366)] = 121963, + [SMALL_STATE(5367)] = 122023, + [SMALL_STATE(5368)] = 122083, + [SMALL_STATE(5369)] = 122189, + [SMALL_STATE(5370)] = 122293, + [SMALL_STATE(5371)] = 122353, + [SMALL_STATE(5372)] = 122427, + [SMALL_STATE(5373)] = 122501, + [SMALL_STATE(5374)] = 122561, + [SMALL_STATE(5375)] = 122621, + [SMALL_STATE(5376)] = 122731, + [SMALL_STATE(5377)] = 122835, + [SMALL_STATE(5378)] = 122903, + [SMALL_STATE(5379)] = 122963, + [SMALL_STATE(5380)] = 123023, + [SMALL_STATE(5381)] = 123083, + [SMALL_STATE(5382)] = 123159, + [SMALL_STATE(5383)] = 123233, + [SMALL_STATE(5384)] = 123335, + [SMALL_STATE(5385)] = 123433, + [SMALL_STATE(5386)] = 123527, + [SMALL_STATE(5387)] = 123619, + [SMALL_STATE(5388)] = 123707, + [SMALL_STATE(5389)] = 123813, + [SMALL_STATE(5390)] = 123899, + [SMALL_STATE(5391)] = 124005, + [SMALL_STATE(5392)] = 124125, + [SMALL_STATE(5393)] = 124231, + [SMALL_STATE(5394)] = 124313, + [SMALL_STATE(5395)] = 124391, + [SMALL_STATE(5396)] = 124497, + [SMALL_STATE(5397)] = 124607, + [SMALL_STATE(5398)] = 124683, + [SMALL_STATE(5399)] = 124785, + [SMALL_STATE(5400)] = 124883, + [SMALL_STATE(5401)] = 124977, + [SMALL_STATE(5402)] = 125069, + [SMALL_STATE(5403)] = 125157, + [SMALL_STATE(5404)] = 125243, + [SMALL_STATE(5405)] = 125325, + [SMALL_STATE(5406)] = 125403, + [SMALL_STATE(5407)] = 125483, + [SMALL_STATE(5408)] = 125563, + [SMALL_STATE(5409)] = 125669, + [SMALL_STATE(5410)] = 125783, + [SMALL_STATE(5411)] = 125853, + [SMALL_STATE(5412)] = 125959, + [SMALL_STATE(5413)] = 126069, + [SMALL_STATE(5414)] = 126189, + [SMALL_STATE(5415)] = 126345, + [SMALL_STATE(5416)] = 126413, + [SMALL_STATE(5417)] = 126481, + [SMALL_STATE(5418)] = 126585, + [SMALL_STATE(5419)] = 126653, + [SMALL_STATE(5420)] = 126727, + [SMALL_STATE(5421)] = 126795, + [SMALL_STATE(5422)] = 126899, + [SMALL_STATE(5423)] = 126959, + [SMALL_STATE(5424)] = 127023, + [SMALL_STATE(5425)] = 127089, + [SMALL_STATE(5426)] = 127163, + [SMALL_STATE(5427)] = 127223, + [SMALL_STATE(5428)] = 127327, + [SMALL_STATE(5429)] = 127387, + [SMALL_STATE(5430)] = 127453, + [SMALL_STATE(5431)] = 127557, + [SMALL_STATE(5432)] = 127661, + [SMALL_STATE(5433)] = 127739, + [SMALL_STATE(5434)] = 127811, + [SMALL_STATE(5435)] = 127915, + [SMALL_STATE(5436)] = 127977, + [SMALL_STATE(5437)] = 128047, + [SMALL_STATE(5438)] = 128107, + [SMALL_STATE(5439)] = 128211, + [SMALL_STATE(5440)] = 128317, + [SMALL_STATE(5441)] = 128421, + [SMALL_STATE(5442)] = 128577, + [SMALL_STATE(5443)] = 128639, + [SMALL_STATE(5444)] = 128717, + [SMALL_STATE(5445)] = 128779, + [SMALL_STATE(5446)] = 128893, + [SMALL_STATE(5447)] = 128997, + [SMALL_STATE(5448)] = 129153, + [SMALL_STATE(5449)] = 129213, + [SMALL_STATE(5450)] = 129323, + [SMALL_STATE(5451)] = 129391, + [SMALL_STATE(5452)] = 129495, + [SMALL_STATE(5453)] = 129565, + [SMALL_STATE(5454)] = 129625, + [SMALL_STATE(5455)] = 129693, + [SMALL_STATE(5456)] = 129753, + [SMALL_STATE(5457)] = 129857, + [SMALL_STATE(5458)] = 129925, + [SMALL_STATE(5459)] = 130031, + [SMALL_STATE(5460)] = 130135, + [SMALL_STATE(5461)] = 130203, + [SMALL_STATE(5462)] = 130307, + [SMALL_STATE(5463)] = 130369, + [SMALL_STATE(5464)] = 130429, + [SMALL_STATE(5465)] = 130489, + [SMALL_STATE(5466)] = 130549, + [SMALL_STATE(5467)] = 130653, + [SMALL_STATE(5468)] = 130723, + [SMALL_STATE(5469)] = 130795, + [SMALL_STATE(5470)] = 130859, + [SMALL_STATE(5471)] = 130931, + [SMALL_STATE(5472)] = 131041, + [SMALL_STATE(5473)] = 131113, + [SMALL_STATE(5474)] = 131219, + [SMALL_STATE(5475)] = 131293, + [SMALL_STATE(5476)] = 131367, + [SMALL_STATE(5477)] = 131473, + [SMALL_STATE(5478)] = 131545, + [SMALL_STATE(5479)] = 131651, + [SMALL_STATE(5480)] = 131757, + [SMALL_STATE(5481)] = 131867, + [SMALL_STATE(5482)] = 131943, + [SMALL_STATE(5483)] = 132017, + [SMALL_STATE(5484)] = 132119, + [SMALL_STATE(5485)] = 132217, + [SMALL_STATE(5486)] = 132311, + [SMALL_STATE(5487)] = 132403, + [SMALL_STATE(5488)] = 132491, + [SMALL_STATE(5489)] = 132577, + [SMALL_STATE(5490)] = 132659, + [SMALL_STATE(5491)] = 132737, + [SMALL_STATE(5492)] = 132817, + [SMALL_STATE(5493)] = 132891, + [SMALL_STATE(5494)] = 132997, + [SMALL_STATE(5495)] = 133107, + [SMALL_STATE(5496)] = 133213, + [SMALL_STATE(5497)] = 133323, + [SMALL_STATE(5498)] = 133383, + [SMALL_STATE(5499)] = 133481, + [SMALL_STATE(5500)] = 133549, + [SMALL_STATE(5501)] = 133613, + [SMALL_STATE(5502)] = 133673, + [SMALL_STATE(5503)] = 133733, + [SMALL_STATE(5504)] = 133793, + [SMALL_STATE(5505)] = 133857, + [SMALL_STATE(5506)] = 133917, + [SMALL_STATE(5507)] = 133991, + [SMALL_STATE(5508)] = 134061, + [SMALL_STATE(5509)] = 134127, + [SMALL_STATE(5510)] = 134193, + [SMALL_STATE(5511)] = 134263, + [SMALL_STATE(5512)] = 134331, + [SMALL_STATE(5513)] = 134391, + [SMALL_STATE(5514)] = 134451, + [SMALL_STATE(5515)] = 134521, + [SMALL_STATE(5516)] = 134581, + [SMALL_STATE(5517)] = 134649, + [SMALL_STATE(5518)] = 134747, + [SMALL_STATE(5519)] = 134817, + [SMALL_STATE(5520)] = 134973, + [SMALL_STATE(5521)] = 135077, + [SMALL_STATE(5522)] = 135141, + [SMALL_STATE(5523)] = 135209, + [SMALL_STATE(5524)] = 135323, + [SMALL_STATE(5525)] = 135383, + [SMALL_STATE(5526)] = 135445, + [SMALL_STATE(5527)] = 135557, + [SMALL_STATE(5528)] = 135617, + [SMALL_STATE(5529)] = 135677, + [SMALL_STATE(5530)] = 135787, + [SMALL_STATE(5531)] = 135846, + [SMALL_STATE(5532)] = 135905, + [SMALL_STATE(5533)] = 135964, + [SMALL_STATE(5534)] = 136023, + [SMALL_STATE(5535)] = 136082, + [SMALL_STATE(5536)] = 136145, + [SMALL_STATE(5537)] = 136204, + [SMALL_STATE(5538)] = 136263, + [SMALL_STATE(5539)] = 136322, + [SMALL_STATE(5540)] = 136381, + [SMALL_STATE(5541)] = 136440, + [SMALL_STATE(5542)] = 136499, + [SMALL_STATE(5543)] = 136562, + [SMALL_STATE(5544)] = 136625, + [SMALL_STATE(5545)] = 136688, + [SMALL_STATE(5546)] = 136751, + [SMALL_STATE(5547)] = 136810, + [SMALL_STATE(5548)] = 136869, + [SMALL_STATE(5549)] = 136928, + [SMALL_STATE(5550)] = 136987, + [SMALL_STATE(5551)] = 137046, + [SMALL_STATE(5552)] = 137105, + [SMALL_STATE(5553)] = 137164, + [SMALL_STATE(5554)] = 137225, + [SMALL_STATE(5555)] = 137284, + [SMALL_STATE(5556)] = 137343, + [SMALL_STATE(5557)] = 137402, + [SMALL_STATE(5558)] = 137469, + [SMALL_STATE(5559)] = 137528, + [SMALL_STATE(5560)] = 137587, + [SMALL_STATE(5561)] = 137646, + [SMALL_STATE(5562)] = 137709, + [SMALL_STATE(5563)] = 137768, + [SMALL_STATE(5564)] = 137833, + [SMALL_STATE(5565)] = 137892, + [SMALL_STATE(5566)] = 137951, + [SMALL_STATE(5567)] = 138010, + [SMALL_STATE(5568)] = 138069, + [SMALL_STATE(5569)] = 138128, + [SMALL_STATE(5570)] = 138187, + [SMALL_STATE(5571)] = 138246, + [SMALL_STATE(5572)] = 138307, + [SMALL_STATE(5573)] = 138376, + [SMALL_STATE(5574)] = 138435, + [SMALL_STATE(5575)] = 138500, + [SMALL_STATE(5576)] = 138559, + [SMALL_STATE(5577)] = 138618, + [SMALL_STATE(5578)] = 138677, + [SMALL_STATE(5579)] = 138736, + [SMALL_STATE(5580)] = 138801, + [SMALL_STATE(5581)] = 138860, + [SMALL_STATE(5582)] = 138925, + [SMALL_STATE(5583)] = 138984, + [SMALL_STATE(5584)] = 139043, + [SMALL_STATE(5585)] = 139102, + [SMALL_STATE(5586)] = 139161, + [SMALL_STATE(5587)] = 139220, + [SMALL_STATE(5588)] = 139279, + [SMALL_STATE(5589)] = 139338, + [SMALL_STATE(5590)] = 139405, + [SMALL_STATE(5591)] = 139464, + [SMALL_STATE(5592)] = 139523, + [SMALL_STATE(5593)] = 139582, + [SMALL_STATE(5594)] = 139641, + [SMALL_STATE(5595)] = 139700, + [SMALL_STATE(5596)] = 139759, + [SMALL_STATE(5597)] = 139818, + [SMALL_STATE(5598)] = 139877, + [SMALL_STATE(5599)] = 139936, + [SMALL_STATE(5600)] = 139995, + [SMALL_STATE(5601)] = 140054, + [SMALL_STATE(5602)] = 140113, + [SMALL_STATE(5603)] = 140172, + [SMALL_STATE(5604)] = 140231, + [SMALL_STATE(5605)] = 140290, + [SMALL_STATE(5606)] = 140351, + [SMALL_STATE(5607)] = 140410, + [SMALL_STATE(5608)] = 140469, + [SMALL_STATE(5609)] = 140532, + [SMALL_STATE(5610)] = 140591, + [SMALL_STATE(5611)] = 140650, + [SMALL_STATE(5612)] = 140709, + [SMALL_STATE(5613)] = 140774, + [SMALL_STATE(5614)] = 140835, + [SMALL_STATE(5615)] = 140894, + [SMALL_STATE(5616)] = 140953, + [SMALL_STATE(5617)] = 141014, + [SMALL_STATE(5618)] = 141073, + [SMALL_STATE(5619)] = 141136, + [SMALL_STATE(5620)] = 141195, + [SMALL_STATE(5621)] = 141256, + [SMALL_STATE(5622)] = 141315, + [SMALL_STATE(5623)] = 141374, + [SMALL_STATE(5624)] = 141433, + [SMALL_STATE(5625)] = 141492, + [SMALL_STATE(5626)] = 141605, + [SMALL_STATE(5627)] = 141664, + [SMALL_STATE(5628)] = 141723, + [SMALL_STATE(5629)] = 141790, + [SMALL_STATE(5630)] = 141857, + [SMALL_STATE(5631)] = 141916, + [SMALL_STATE(5632)] = 141975, + [SMALL_STATE(5633)] = 142034, + [SMALL_STATE(5634)] = 142099, + [SMALL_STATE(5635)] = 142158, + [SMALL_STATE(5636)] = 142231, + [SMALL_STATE(5637)] = 142296, + [SMALL_STATE(5638)] = 142355, + [SMALL_STATE(5639)] = 142414, + [SMALL_STATE(5640)] = 142473, + [SMALL_STATE(5641)] = 142532, + [SMALL_STATE(5642)] = 142591, + [SMALL_STATE(5643)] = 142652, + [SMALL_STATE(5644)] = 142711, + [SMALL_STATE(5645)] = 142778, + [SMALL_STATE(5646)] = 142837, + [SMALL_STATE(5647)] = 142902, + [SMALL_STATE(5648)] = 142961, + [SMALL_STATE(5649)] = 143024, + [SMALL_STATE(5650)] = 143083, + [SMALL_STATE(5651)] = 143142, + [SMALL_STATE(5652)] = 143201, + [SMALL_STATE(5653)] = 143268, + [SMALL_STATE(5654)] = 143329, + [SMALL_STATE(5655)] = 143388, + [SMALL_STATE(5656)] = 143447, + [SMALL_STATE(5657)] = 143506, + [SMALL_STATE(5658)] = 143565, + [SMALL_STATE(5659)] = 143624, + [SMALL_STATE(5660)] = 143683, + [SMALL_STATE(5661)] = 143742, + [SMALL_STATE(5662)] = 143801, + [SMALL_STATE(5663)] = 143860, + [SMALL_STATE(5664)] = 143919, + [SMALL_STATE(5665)] = 143978, + [SMALL_STATE(5666)] = 144037, + [SMALL_STATE(5667)] = 144096, + [SMALL_STATE(5668)] = 144155, + [SMALL_STATE(5669)] = 144222, + [SMALL_STATE(5670)] = 144281, + [SMALL_STATE(5671)] = 144340, + [SMALL_STATE(5672)] = 144399, + [SMALL_STATE(5673)] = 144458, + [SMALL_STATE(5674)] = 144517, + [SMALL_STATE(5675)] = 144590, + [SMALL_STATE(5676)] = 144649, + [SMALL_STATE(5677)] = 144710, + [SMALL_STATE(5678)] = 144769, + [SMALL_STATE(5679)] = 144828, + [SMALL_STATE(5680)] = 144887, + [SMALL_STATE(5681)] = 144946, + [SMALL_STATE(5682)] = 145005, + [SMALL_STATE(5683)] = 145064, + [SMALL_STATE(5684)] = 145123, + [SMALL_STATE(5685)] = 145182, + [SMALL_STATE(5686)] = 145241, + [SMALL_STATE(5687)] = 145300, + [SMALL_STATE(5688)] = 145359, + [SMALL_STATE(5689)] = 145418, + [SMALL_STATE(5690)] = 145477, + [SMALL_STATE(5691)] = 145540, + [SMALL_STATE(5692)] = 145605, + [SMALL_STATE(5693)] = 145664, + [SMALL_STATE(5694)] = 145723, + [SMALL_STATE(5695)] = 145782, + [SMALL_STATE(5696)] = 145841, + [SMALL_STATE(5697)] = 145900, + [SMALL_STATE(5698)] = 145963, + [SMALL_STATE(5699)] = 146022, + [SMALL_STATE(5700)] = 146083, + [SMALL_STATE(5701)] = 146150, + [SMALL_STATE(5702)] = 146209, + [SMALL_STATE(5703)] = 146270, + [SMALL_STATE(5704)] = 146329, + [SMALL_STATE(5705)] = 146388, + [SMALL_STATE(5706)] = 146449, + [SMALL_STATE(5707)] = 146508, + [SMALL_STATE(5708)] = 146567, + [SMALL_STATE(5709)] = 146626, + [SMALL_STATE(5710)] = 146685, + [SMALL_STATE(5711)] = 146746, + [SMALL_STATE(5712)] = 146805, + [SMALL_STATE(5713)] = 146868, + [SMALL_STATE(5714)] = 146927, + [SMALL_STATE(5715)] = 146986, + [SMALL_STATE(5716)] = 147045, + [SMALL_STATE(5717)] = 147104, + [SMALL_STATE(5718)] = 147167, + [SMALL_STATE(5719)] = 147226, + [SMALL_STATE(5720)] = 147291, + [SMALL_STATE(5721)] = 147357, + [SMALL_STATE(5722)] = 147419, + [SMALL_STATE(5723)] = 147477, + [SMALL_STATE(5724)] = 147551, + [SMALL_STATE(5725)] = 147623, + [SMALL_STATE(5726)] = 147689, + [SMALL_STATE(5727)] = 147747, + [SMALL_STATE(5728)] = 147805, + [SMALL_STATE(5729)] = 147863, + [SMALL_STATE(5730)] = 147921, + [SMALL_STATE(5731)] = 147979, + [SMALL_STATE(5732)] = 148037, + [SMALL_STATE(5733)] = 148109, + [SMALL_STATE(5734)] = 148167, + [SMALL_STATE(5735)] = 148229, + [SMALL_STATE(5736)] = 148287, + [SMALL_STATE(5737)] = 148387, + [SMALL_STATE(5738)] = 148445, + [SMALL_STATE(5739)] = 148517, + [SMALL_STATE(5740)] = 148575, + [SMALL_STATE(5741)] = 148633, + [SMALL_STATE(5742)] = 148731, + [SMALL_STATE(5743)] = 148825, + [SMALL_STATE(5744)] = 148883, + [SMALL_STATE(5745)] = 148941, + [SMALL_STATE(5746)] = 148999, + [SMALL_STATE(5747)] = 149101, + [SMALL_STATE(5748)] = 149159, + [SMALL_STATE(5749)] = 149217, + [SMALL_STATE(5750)] = 149275, + [SMALL_STATE(5751)] = 149333, + [SMALL_STATE(5752)] = 149439, + [SMALL_STATE(5753)] = 149511, + [SMALL_STATE(5754)] = 149601, + [SMALL_STATE(5755)] = 149667, + [SMALL_STATE(5756)] = 149753, + [SMALL_STATE(5757)] = 149837, + [SMALL_STATE(5758)] = 149895, + [SMALL_STATE(5759)] = 149953, + [SMALL_STATE(5760)] = 150011, + [SMALL_STATE(5761)] = 150069, + [SMALL_STATE(5762)] = 150127, + [SMALL_STATE(5763)] = 150185, + [SMALL_STATE(5764)] = 150243, + [SMALL_STATE(5765)] = 150301, + [SMALL_STATE(5766)] = 150359, + [SMALL_STATE(5767)] = 150417, + [SMALL_STATE(5768)] = 150475, + [SMALL_STATE(5769)] = 150533, + [SMALL_STATE(5770)] = 150599, + [SMALL_STATE(5771)] = 150665, + [SMALL_STATE(5772)] = 150731, + [SMALL_STATE(5773)] = 150833, + [SMALL_STATE(5774)] = 150891, + [SMALL_STATE(5775)] = 150963, + [SMALL_STATE(5776)] = 151029, + [SMALL_STATE(5777)] = 151095, + [SMALL_STATE(5778)] = 151153, + [SMALL_STATE(5779)] = 151211, + [SMALL_STATE(5780)] = 151269, + [SMALL_STATE(5781)] = 151335, + [SMALL_STATE(5782)] = 151393, + [SMALL_STATE(5783)] = 151451, + [SMALL_STATE(5784)] = 151509, + [SMALL_STATE(5785)] = 151567, + [SMALL_STATE(5786)] = 151625, + [SMALL_STATE(5787)] = 151705, + [SMALL_STATE(5788)] = 151781, + [SMALL_STATE(5789)] = 151847, + [SMALL_STATE(5790)] = 151925, + [SMALL_STATE(5791)] = 151983, + [SMALL_STATE(5792)] = 152041, + [SMALL_STATE(5793)] = 152099, + [SMALL_STATE(5794)] = 152165, + [SMALL_STATE(5795)] = 152223, + [SMALL_STATE(5796)] = 152281, + [SMALL_STATE(5797)] = 152351, + [SMALL_STATE(5798)] = 152409, + [SMALL_STATE(5799)] = 152467, + [SMALL_STATE(5800)] = 152525, + [SMALL_STATE(5801)] = 152583, + [SMALL_STATE(5802)] = 152641, + [SMALL_STATE(5803)] = 152699, + [SMALL_STATE(5804)] = 152757, + [SMALL_STATE(5805)] = 152827, + [SMALL_STATE(5806)] = 152885, + [SMALL_STATE(5807)] = 152943, + [SMALL_STATE(5808)] = 153001, + [SMALL_STATE(5809)] = 153059, + [SMALL_STATE(5810)] = 153117, + [SMALL_STATE(5811)] = 153175, + [SMALL_STATE(5812)] = 153233, + [SMALL_STATE(5813)] = 153291, + [SMALL_STATE(5814)] = 153349, + [SMALL_STATE(5815)] = 153407, + [SMALL_STATE(5816)] = 153465, + [SMALL_STATE(5817)] = 153523, + [SMALL_STATE(5818)] = 153581, + [SMALL_STATE(5819)] = 153639, + [SMALL_STATE(5820)] = 153705, + [SMALL_STATE(5821)] = 153763, + [SMALL_STATE(5822)] = 153821, + [SMALL_STATE(5823)] = 153883, + [SMALL_STATE(5824)] = 153941, + [SMALL_STATE(5825)] = 154013, + [SMALL_STATE(5826)] = 154071, + [SMALL_STATE(5827)] = 154129, + [SMALL_STATE(5828)] = 154195, + [SMALL_STATE(5829)] = 154253, + [SMALL_STATE(5830)] = 154319, + [SMALL_STATE(5831)] = 154391, + [SMALL_STATE(5832)] = 154449, + [SMALL_STATE(5833)] = 154507, + [SMALL_STATE(5834)] = 154565, + [SMALL_STATE(5835)] = 154623, + [SMALL_STATE(5836)] = 154681, + [SMALL_STATE(5837)] = 154739, + [SMALL_STATE(5838)] = 154797, + [SMALL_STATE(5839)] = 154855, + [SMALL_STATE(5840)] = 154957, + [SMALL_STATE(5841)] = 155015, + [SMALL_STATE(5842)] = 155073, + [SMALL_STATE(5843)] = 155145, + [SMALL_STATE(5844)] = 155213, + [SMALL_STATE(5845)] = 155271, + [SMALL_STATE(5846)] = 155329, + [SMALL_STATE(5847)] = 155387, + [SMALL_STATE(5848)] = 155445, + [SMALL_STATE(5849)] = 155511, + [SMALL_STATE(5850)] = 155569, + [SMALL_STATE(5851)] = 155627, + [SMALL_STATE(5852)] = 155685, + [SMALL_STATE(5853)] = 155743, + [SMALL_STATE(5854)] = 155801, + [SMALL_STATE(5855)] = 155859, + [SMALL_STATE(5856)] = 155925, + [SMALL_STATE(5857)] = 155983, + [SMALL_STATE(5858)] = 156041, + [SMALL_STATE(5859)] = 156099, + [SMALL_STATE(5860)] = 156167, + [SMALL_STATE(5861)] = 156237, + [SMALL_STATE(5862)] = 156295, + [SMALL_STATE(5863)] = 156353, + [SMALL_STATE(5864)] = 156411, + [SMALL_STATE(5865)] = 156469, + [SMALL_STATE(5866)] = 156527, + [SMALL_STATE(5867)] = 156589, + [SMALL_STATE(5868)] = 156647, + [SMALL_STATE(5869)] = 156705, + [SMALL_STATE(5870)] = 156763, + [SMALL_STATE(5871)] = 156865, + [SMALL_STATE(5872)] = 156923, + [SMALL_STATE(5873)] = 156981, + [SMALL_STATE(5874)] = 157039, + [SMALL_STATE(5875)] = 157109, + [SMALL_STATE(5876)] = 157169, + [SMALL_STATE(5877)] = 157231, + [SMALL_STATE(5878)] = 157289, + [SMALL_STATE(5879)] = 157347, + [SMALL_STATE(5880)] = 157449, + [SMALL_STATE(5881)] = 157511, + [SMALL_STATE(5882)] = 157569, + [SMALL_STATE(5883)] = 157631, + [SMALL_STATE(5884)] = 157689, + [SMALL_STATE(5885)] = 157747, + [SMALL_STATE(5886)] = 157805, + [SMALL_STATE(5887)] = 157863, + [SMALL_STATE(5888)] = 157921, + [SMALL_STATE(5889)] = 157987, + [SMALL_STATE(5890)] = 158045, + [SMALL_STATE(5891)] = 158107, + [SMALL_STATE(5892)] = 158165, + [SMALL_STATE(5893)] = 158225, + [SMALL_STATE(5894)] = 158295, + [SMALL_STATE(5895)] = 158361, + [SMALL_STATE(5896)] = 158419, + [SMALL_STATE(5897)] = 158521, + [SMALL_STATE(5898)] = 158591, + [SMALL_STATE(5899)] = 158649, + [SMALL_STATE(5900)] = 158707, + [SMALL_STATE(5901)] = 158765, + [SMALL_STATE(5902)] = 158827, + [SMALL_STATE(5903)] = 158893, + [SMALL_STATE(5904)] = 158963, + [SMALL_STATE(5905)] = 159021, + [SMALL_STATE(5906)] = 159079, + [SMALL_STATE(5907)] = 159137, + [SMALL_STATE(5908)] = 159195, + [SMALL_STATE(5909)] = 159253, + [SMALL_STATE(5910)] = 159311, + [SMALL_STATE(5911)] = 159369, + [SMALL_STATE(5912)] = 159427, + [SMALL_STATE(5913)] = 159537, + [SMALL_STATE(5914)] = 159603, + [SMALL_STATE(5915)] = 159661, + [SMALL_STATE(5916)] = 159719, + [SMALL_STATE(5917)] = 159777, + [SMALL_STATE(5918)] = 159835, + [SMALL_STATE(5919)] = 159893, + [SMALL_STATE(5920)] = 159999, + [SMALL_STATE(5921)] = 160057, + [SMALL_STATE(5922)] = 160115, + [SMALL_STATE(5923)] = 160173, + [SMALL_STATE(5924)] = 160279, + [SMALL_STATE(5925)] = 160337, + [SMALL_STATE(5926)] = 160395, + [SMALL_STATE(5927)] = 160453, + [SMALL_STATE(5928)] = 160511, + [SMALL_STATE(5929)] = 160569, + [SMALL_STATE(5930)] = 160627, + [SMALL_STATE(5931)] = 160685, + [SMALL_STATE(5932)] = 160742, + [SMALL_STATE(5933)] = 160799, + [SMALL_STATE(5934)] = 160856, + [SMALL_STATE(5935)] = 160949, + [SMALL_STATE(5936)] = 161006, + [SMALL_STATE(5937)] = 161075, + [SMALL_STATE(5938)] = 161132, + [SMALL_STATE(5939)] = 161201, + [SMALL_STATE(5940)] = 161278, + [SMALL_STATE(5941)] = 161335, + [SMALL_STATE(5942)] = 161398, + [SMALL_STATE(5943)] = 161461, + [SMALL_STATE(5944)] = 161518, + [SMALL_STATE(5945)] = 161575, + [SMALL_STATE(5946)] = 161632, + [SMALL_STATE(5947)] = 161689, + [SMALL_STATE(5948)] = 161746, + [SMALL_STATE(5949)] = 161803, + [SMALL_STATE(5950)] = 161860, + [SMALL_STATE(5951)] = 161929, + [SMALL_STATE(5952)] = 161998, + [SMALL_STATE(5953)] = 162067, + [SMALL_STATE(5954)] = 162136, + [SMALL_STATE(5955)] = 162193, + [SMALL_STATE(5956)] = 162250, + [SMALL_STATE(5957)] = 162313, + [SMALL_STATE(5958)] = 162370, + [SMALL_STATE(5959)] = 162433, + [SMALL_STATE(5960)] = 162490, + [SMALL_STATE(5961)] = 162547, + [SMALL_STATE(5962)] = 162604, + [SMALL_STATE(5963)] = 162667, + [SMALL_STATE(5964)] = 162724, + [SMALL_STATE(5965)] = 162791, + [SMALL_STATE(5966)] = 162854, + [SMALL_STATE(5967)] = 162911, + [SMALL_STATE(5968)] = 162968, + [SMALL_STATE(5969)] = 163033, + [SMALL_STATE(5970)] = 163102, + [SMALL_STATE(5971)] = 163177, + [SMALL_STATE(5972)] = 163246, + [SMALL_STATE(5973)] = 163309, + [SMALL_STATE(5974)] = 163366, + [SMALL_STATE(5975)] = 163429, + [SMALL_STATE(5976)] = 163488, + [SMALL_STATE(5977)] = 163545, + [SMALL_STATE(5978)] = 163614, + [SMALL_STATE(5979)] = 163689, + [SMALL_STATE(5980)] = 163746, + [SMALL_STATE(5981)] = 163803, + [SMALL_STATE(5982)] = 163872, + [SMALL_STATE(5983)] = 163931, + [SMALL_STATE(5984)] = 164000, + [SMALL_STATE(5985)] = 164057, + [SMALL_STATE(5986)] = 164114, + [SMALL_STATE(5987)] = 164177, + [SMALL_STATE(5988)] = 164246, + [SMALL_STATE(5989)] = 164303, + [SMALL_STATE(5990)] = 164366, + [SMALL_STATE(5991)] = 164425, + [SMALL_STATE(5992)] = 164482, + [SMALL_STATE(5993)] = 164543, + [SMALL_STATE(5994)] = 164610, + [SMALL_STATE(5995)] = 164673, + [SMALL_STATE(5996)] = 164742, + [SMALL_STATE(5997)] = 164799, + [SMALL_STATE(5998)] = 164856, + [SMALL_STATE(5999)] = 164923, + [SMALL_STATE(6000)] = 164992, + [SMALL_STATE(6001)] = 165049, + [SMALL_STATE(6002)] = 165106, + [SMALL_STATE(6003)] = 165163, + [SMALL_STATE(6004)] = 165220, + [SMALL_STATE(6005)] = 165277, + [SMALL_STATE(6006)] = 165334, + [SMALL_STATE(6007)] = 165397, + [SMALL_STATE(6008)] = 165454, + [SMALL_STATE(6009)] = 165517, + [SMALL_STATE(6010)] = 165586, + [SMALL_STATE(6011)] = 165651, + [SMALL_STATE(6012)] = 165720, + [SMALL_STATE(6013)] = 165777, + [SMALL_STATE(6014)] = 165834, + [SMALL_STATE(6015)] = 165897, + [SMALL_STATE(6016)] = 165960, + [SMALL_STATE(6017)] = 166017, + [SMALL_STATE(6018)] = 166092, + [SMALL_STATE(6019)] = 166155, + [SMALL_STATE(6020)] = 166212, + [SMALL_STATE(6021)] = 166275, + [SMALL_STATE(6022)] = 166368, + [SMALL_STATE(6023)] = 166424, + [SMALL_STATE(6024)] = 166480, + [SMALL_STATE(6025)] = 166548, + [SMALL_STATE(6026)] = 166604, + [SMALL_STATE(6027)] = 166660, + [SMALL_STATE(6028)] = 166716, + [SMALL_STATE(6029)] = 166772, + [SMALL_STATE(6030)] = 166828, + [SMALL_STATE(6031)] = 166884, + [SMALL_STATE(6032)] = 166940, + [SMALL_STATE(6033)] = 166996, + [SMALL_STATE(6034)] = 167052, + [SMALL_STATE(6035)] = 167158, + [SMALL_STATE(6036)] = 167214, + [SMALL_STATE(6037)] = 167270, + [SMALL_STATE(6038)] = 167334, + [SMALL_STATE(6039)] = 167438, + [SMALL_STATE(6040)] = 167494, + [SMALL_STATE(6041)] = 167550, + [SMALL_STATE(6042)] = 167606, + [SMALL_STATE(6043)] = 167662, + [SMALL_STATE(6044)] = 167718, + [SMALL_STATE(6045)] = 167774, + [SMALL_STATE(6046)] = 167830, + [SMALL_STATE(6047)] = 167886, + [SMALL_STATE(6048)] = 167942, + [SMALL_STATE(6049)] = 167998, + [SMALL_STATE(6050)] = 168054, + [SMALL_STATE(6051)] = 168148, + [SMALL_STATE(6052)] = 168204, + [SMALL_STATE(6053)] = 168298, + [SMALL_STATE(6054)] = 168362, + [SMALL_STATE(6055)] = 168418, + [SMALL_STATE(6056)] = 168474, + [SMALL_STATE(6057)] = 168530, + [SMALL_STATE(6058)] = 168594, + [SMALL_STATE(6059)] = 168650, + [SMALL_STATE(6060)] = 168706, + [SMALL_STATE(6061)] = 168762, + [SMALL_STATE(6062)] = 168818, + [SMALL_STATE(6063)] = 168874, + [SMALL_STATE(6064)] = 168930, + [SMALL_STATE(6065)] = 168986, + [SMALL_STATE(6066)] = 169042, + [SMALL_STATE(6067)] = 169098, + [SMALL_STATE(6068)] = 169154, + [SMALL_STATE(6069)] = 169210, + [SMALL_STATE(6070)] = 169272, + [SMALL_STATE(6071)] = 169328, + [SMALL_STATE(6072)] = 169384, + [SMALL_STATE(6073)] = 169440, + [SMALL_STATE(6074)] = 169504, + [SMALL_STATE(6075)] = 169560, + [SMALL_STATE(6076)] = 169616, + [SMALL_STATE(6077)] = 169680, + [SMALL_STATE(6078)] = 169744, + [SMALL_STATE(6079)] = 169808, + [SMALL_STATE(6080)] = 169872, + [SMALL_STATE(6081)] = 169928, + [SMALL_STATE(6082)] = 169984, + [SMALL_STATE(6083)] = 170040, + [SMALL_STATE(6084)] = 170096, + [SMALL_STATE(6085)] = 170160, + [SMALL_STATE(6086)] = 170216, + [SMALL_STATE(6087)] = 170272, + [SMALL_STATE(6088)] = 170328, + [SMALL_STATE(6089)] = 170384, + [SMALL_STATE(6090)] = 170440, + [SMALL_STATE(6091)] = 170496, + [SMALL_STATE(6092)] = 170552, + [SMALL_STATE(6093)] = 170608, + [SMALL_STATE(6094)] = 170664, + [SMALL_STATE(6095)] = 170720, + [SMALL_STATE(6096)] = 170776, + [SMALL_STATE(6097)] = 170840, + [SMALL_STATE(6098)] = 170896, + [SMALL_STATE(6099)] = 170952, + [SMALL_STATE(6100)] = 171008, + [SMALL_STATE(6101)] = 171064, + [SMALL_STATE(6102)] = 171120, + [SMALL_STATE(6103)] = 171176, + [SMALL_STATE(6104)] = 171232, + [SMALL_STATE(6105)] = 171296, + [SMALL_STATE(6106)] = 171364, + [SMALL_STATE(6107)] = 171420, + [SMALL_STATE(6108)] = 171476, + [SMALL_STATE(6109)] = 171532, + [SMALL_STATE(6110)] = 171588, + [SMALL_STATE(6111)] = 171644, + [SMALL_STATE(6112)] = 171700, + [SMALL_STATE(6113)] = 171756, + [SMALL_STATE(6114)] = 171812, + [SMALL_STATE(6115)] = 171868, + [SMALL_STATE(6116)] = 171924, + [SMALL_STATE(6117)] = 171980, + [SMALL_STATE(6118)] = 172036, + [SMALL_STATE(6119)] = 172092, + [SMALL_STATE(6120)] = 172148, + [SMALL_STATE(6121)] = 172204, + [SMALL_STATE(6122)] = 172260, + [SMALL_STATE(6123)] = 172316, + [SMALL_STATE(6124)] = 172372, + [SMALL_STATE(6125)] = 172428, + [SMALL_STATE(6126)] = 172484, + [SMALL_STATE(6127)] = 172557, + [SMALL_STATE(6128)] = 172612, + [SMALL_STATE(6129)] = 172667, + [SMALL_STATE(6130)] = 172722, + [SMALL_STATE(6131)] = 172777, + [SMALL_STATE(6132)] = 172832, + [SMALL_STATE(6133)] = 172887, + [SMALL_STATE(6134)] = 172956, + [SMALL_STATE(6135)] = 173011, + [SMALL_STATE(6136)] = 173102, + [SMALL_STATE(6137)] = 173157, + [SMALL_STATE(6138)] = 173226, + [SMALL_STATE(6139)] = 173281, + [SMALL_STATE(6140)] = 173354, + [SMALL_STATE(6141)] = 173445, + [SMALL_STATE(6142)] = 173514, + [SMALL_STATE(6143)] = 173569, + [SMALL_STATE(6144)] = 173661, + [SMALL_STATE(6145)] = 173751, + [SMALL_STATE(6146)] = 173813, + [SMALL_STATE(6147)] = 173877, + [SMALL_STATE(6148)] = 173969, + [SMALL_STATE(6149)] = 174027, + [SMALL_STATE(6150)] = 174089, + [SMALL_STATE(6151)] = 174151, + [SMALL_STATE(6152)] = 174213, + [SMALL_STATE(6153)] = 174275, + [SMALL_STATE(6154)] = 174341, + [SMALL_STATE(6155)] = 174403, + [SMALL_STATE(6156)] = 174465, + [SMALL_STATE(6157)] = 174531, + [SMALL_STATE(6158)] = 174593, + [SMALL_STATE(6159)] = 174659, + [SMALL_STATE(6160)] = 174721, + [SMALL_STATE(6161)] = 174783, + [SMALL_STATE(6162)] = 174885, + [SMALL_STATE(6163)] = 174947, + [SMALL_STATE(6164)] = 175019, + [SMALL_STATE(6165)] = 175081, + [SMALL_STATE(6166)] = 175147, + [SMALL_STATE(6167)] = 175203, + [SMALL_STATE(6168)] = 175295, + [SMALL_STATE(6169)] = 175385, + [SMALL_STATE(6170)] = 175451, + [SMALL_STATE(6171)] = 175515, + [SMALL_STATE(6172)] = 175581, + [SMALL_STATE(6173)] = 175645, + [SMALL_STATE(6174)] = 175709, + [SMALL_STATE(6175)] = 175775, + [SMALL_STATE(6176)] = 175841, + [SMALL_STATE(6177)] = 175903, + [SMALL_STATE(6178)] = 175965, + [SMALL_STATE(6179)] = 176057, + [SMALL_STATE(6180)] = 176119, + [SMALL_STATE(6181)] = 176185, + [SMALL_STATE(6182)] = 176247, + [SMALL_STATE(6183)] = 176309, + [SMALL_STATE(6184)] = 176411, + [SMALL_STATE(6185)] = 176473, + [SMALL_STATE(6186)] = 176527, + [SMALL_STATE(6187)] = 176581, + [SMALL_STATE(6188)] = 176643, + [SMALL_STATE(6189)] = 176705, + [SMALL_STATE(6190)] = 176807, + [SMALL_STATE(6191)] = 176896, + [SMALL_STATE(6192)] = 176951, + [SMALL_STATE(6193)] = 177004, + [SMALL_STATE(6194)] = 177059, + [SMALL_STATE(6195)] = 177148, + [SMALL_STATE(6196)] = 177237, + [SMALL_STATE(6197)] = 177326, + [SMALL_STATE(6198)] = 177379, + [SMALL_STATE(6199)] = 177432, + [SMALL_STATE(6200)] = 177521, + [SMALL_STATE(6201)] = 177574, + [SMALL_STATE(6202)] = 177627, + [SMALL_STATE(6203)] = 177716, + [SMALL_STATE(6204)] = 177805, + [SMALL_STATE(6205)] = 177858, + [SMALL_STATE(6206)] = 177939, + [SMALL_STATE(6207)] = 177992, + [SMALL_STATE(6208)] = 178073, + [SMALL_STATE(6209)] = 178126, + [SMALL_STATE(6210)] = 178207, + [SMALL_STATE(6211)] = 178296, + [SMALL_STATE(6212)] = 178385, + [SMALL_STATE(6213)] = 178466, + [SMALL_STATE(6214)] = 178555, + [SMALL_STATE(6215)] = 178636, + [SMALL_STATE(6216)] = 178725, + [SMALL_STATE(6217)] = 178814, + [SMALL_STATE(6218)] = 178903, + [SMALL_STATE(6219)] = 178956, + [SMALL_STATE(6220)] = 179009, + [SMALL_STATE(6221)] = 179062, + [SMALL_STATE(6222)] = 179115, + [SMALL_STATE(6223)] = 179168, + [SMALL_STATE(6224)] = 179221, + [SMALL_STATE(6225)] = 179274, + [SMALL_STATE(6226)] = 179337, + [SMALL_STATE(6227)] = 179390, + [SMALL_STATE(6228)] = 179479, + [SMALL_STATE(6229)] = 179532, + [SMALL_STATE(6230)] = 179585, + [SMALL_STATE(6231)] = 179638, + [SMALL_STATE(6232)] = 179691, + [SMALL_STATE(6233)] = 179780, + [SMALL_STATE(6234)] = 179833, + [SMALL_STATE(6235)] = 179922, + [SMALL_STATE(6236)] = 180011, + [SMALL_STATE(6237)] = 180100, + [SMALL_STATE(6238)] = 180189, + [SMALL_STATE(6239)] = 180278, + [SMALL_STATE(6240)] = 180331, + [SMALL_STATE(6241)] = 180412, + [SMALL_STATE(6242)] = 180501, + [SMALL_STATE(6243)] = 180590, + [SMALL_STATE(6244)] = 180643, + [SMALL_STATE(6245)] = 180732, + [SMALL_STATE(6246)] = 180821, + [SMALL_STATE(6247)] = 180874, + [SMALL_STATE(6248)] = 180963, + [SMALL_STATE(6249)] = 181016, + [SMALL_STATE(6250)] = 181069, + [SMALL_STATE(6251)] = 181158, + [SMALL_STATE(6252)] = 181247, + [SMALL_STATE(6253)] = 181336, + [SMALL_STATE(6254)] = 181425, + [SMALL_STATE(6255)] = 181514, + [SMALL_STATE(6256)] = 181567, + [SMALL_STATE(6257)] = 181636, + [SMALL_STATE(6258)] = 181689, + [SMALL_STATE(6259)] = 181742, + [SMALL_STATE(6260)] = 181806, + [SMALL_STATE(6261)] = 181870, + [SMALL_STATE(6262)] = 181930, + [SMALL_STATE(6263)] = 181994, + [SMALL_STATE(6264)] = 182058, + [SMALL_STATE(6265)] = 182128, + [SMALL_STATE(6266)] = 182192, + [SMALL_STATE(6267)] = 182256, + [SMALL_STATE(6268)] = 182320, + [SMALL_STATE(6269)] = 182390, + [SMALL_STATE(6270)] = 182478, + [SMALL_STATE(6271)] = 182558, + [SMALL_STATE(6272)] = 182638, + [SMALL_STATE(6273)] = 182718, + [SMALL_STATE(6274)] = 182782, + [SMALL_STATE(6275)] = 182838, + [SMALL_STATE(6276)] = 182918, + [SMALL_STATE(6277)] = 182998, + [SMALL_STATE(6278)] = 183078, + [SMALL_STATE(6279)] = 183142, + [SMALL_STATE(6280)] = 183206, + [SMALL_STATE(6281)] = 183270, + [SMALL_STATE(6282)] = 183334, + [SMALL_STATE(6283)] = 183394, + [SMALL_STATE(6284)] = 183482, + [SMALL_STATE(6285)] = 183546, + [SMALL_STATE(6286)] = 183610, + [SMALL_STATE(6287)] = 183674, + [SMALL_STATE(6288)] = 183738, + [SMALL_STATE(6289)] = 183797, + [SMALL_STATE(6290)] = 183856, + [SMALL_STATE(6291)] = 183941, + [SMALL_STATE(6292)] = 184040, + [SMALL_STATE(6293)] = 184099, + [SMALL_STATE(6294)] = 184164, + [SMALL_STATE(6295)] = 184249, + [SMALL_STATE(6296)] = 184308, + [SMALL_STATE(6297)] = 184407, + [SMALL_STATE(6298)] = 184486, + [SMALL_STATE(6299)] = 184545, + [SMALL_STATE(6300)] = 184604, + [SMALL_STATE(6301)] = 184663, + [SMALL_STATE(6302)] = 184722, + [SMALL_STATE(6303)] = 184781, + [SMALL_STATE(6304)] = 184840, + [SMALL_STATE(6305)] = 184899, + [SMALL_STATE(6306)] = 184960, + [SMALL_STATE(6307)] = 185019, + [SMALL_STATE(6308)] = 185078, + [SMALL_STATE(6309)] = 185153, + [SMALL_STATE(6310)] = 185212, + [SMALL_STATE(6311)] = 185271, + [SMALL_STATE(6312)] = 185358, + [SMALL_STATE(6313)] = 185417, + [SMALL_STATE(6314)] = 185476, + [SMALL_STATE(6315)] = 185535, + [SMALL_STATE(6316)] = 185632, + [SMALL_STATE(6317)] = 185691, + [SMALL_STATE(6318)] = 185752, + [SMALL_STATE(6319)] = 185823, + [SMALL_STATE(6320)] = 185882, + [SMALL_STATE(6321)] = 185935, + [SMALL_STATE(6322)] = 186038, + [SMALL_STATE(6323)] = 186097, + [SMALL_STATE(6324)] = 186156, + [SMALL_STATE(6325)] = 186229, + [SMALL_STATE(6326)] = 186314, + [SMALL_STATE(6327)] = 186373, + [SMALL_STATE(6328)] = 186438, + [SMALL_STATE(6329)] = 186497, + [SMALL_STATE(6330)] = 186556, + [SMALL_STATE(6331)] = 186623, + [SMALL_STATE(6332)] = 186682, + [SMALL_STATE(6333)] = 186741, + [SMALL_STATE(6334)] = 186800, + [SMALL_STATE(6335)] = 186885, + [SMALL_STATE(6336)] = 186944, + [SMALL_STATE(6337)] = 187003, + [SMALL_STATE(6338)] = 187062, + [SMALL_STATE(6339)] = 187121, + [SMALL_STATE(6340)] = 187180, + [SMALL_STATE(6341)] = 187239, + [SMALL_STATE(6342)] = 187326, + [SMALL_STATE(6343)] = 187415, + [SMALL_STATE(6344)] = 187500, + [SMALL_STATE(6345)] = 187585, + [SMALL_STATE(6346)] = 187670, + [SMALL_STATE(6347)] = 187773, + [SMALL_STATE(6348)] = 187832, + [SMALL_STATE(6349)] = 187935, + [SMALL_STATE(6350)] = 188020, + [SMALL_STATE(6351)] = 188079, + [SMALL_STATE(6352)] = 188170, + [SMALL_STATE(6353)] = 188229, + [SMALL_STATE(6354)] = 188288, + [SMALL_STATE(6355)] = 188347, + [SMALL_STATE(6356)] = 188406, + [SMALL_STATE(6357)] = 188465, + [SMALL_STATE(6358)] = 188524, + [SMALL_STATE(6359)] = 188623, + [SMALL_STATE(6360)] = 188708, + [SMALL_STATE(6361)] = 188759, + [SMALL_STATE(6362)] = 188820, + [SMALL_STATE(6363)] = 188903, + [SMALL_STATE(6364)] = 188968, + [SMALL_STATE(6365)] = 189027, + [SMALL_STATE(6366)] = 189126, + [SMALL_STATE(6367)] = 189185, + [SMALL_STATE(6368)] = 189250, + [SMALL_STATE(6369)] = 189349, + [SMALL_STATE(6370)] = 189452, + [SMALL_STATE(6371)] = 189521, + [SMALL_STATE(6372)] = 189616, + [SMALL_STATE(6373)] = 189715, + [SMALL_STATE(6374)] = 189765, + [SMALL_STATE(6375)] = 189815, + [SMALL_STATE(6376)] = 189901, + [SMALL_STATE(6377)] = 189951, + [SMALL_STATE(6378)] = 190005, + [SMALL_STATE(6379)] = 190111, + [SMALL_STATE(6380)] = 190161, + [SMALL_STATE(6381)] = 190253, + [SMALL_STATE(6382)] = 190345, + [SMALL_STATE(6383)] = 190437, + [SMALL_STATE(6384)] = 190529, + [SMALL_STATE(6385)] = 190623, + [SMALL_STATE(6386)] = 190729, + [SMALL_STATE(6387)] = 190821, + [SMALL_STATE(6388)] = 190913, + [SMALL_STATE(6389)] = 191005, + [SMALL_STATE(6390)] = 191111, + [SMALL_STATE(6391)] = 191203, + [SMALL_STATE(6392)] = 191257, + [SMALL_STATE(6393)] = 191319, + [SMALL_STATE(6394)] = 191373, + [SMALL_STATE(6395)] = 191465, + [SMALL_STATE(6396)] = 191519, + [SMALL_STATE(6397)] = 191611, + [SMALL_STATE(6398)] = 191665, + [SMALL_STATE(6399)] = 191721, + [SMALL_STATE(6400)] = 191783, + [SMALL_STATE(6401)] = 191833, + [SMALL_STATE(6402)] = 191885, + [SMALL_STATE(6403)] = 191977, + [SMALL_STATE(6404)] = 192031, + [SMALL_STATE(6405)] = 192085, + [SMALL_STATE(6406)] = 192159, + [SMALL_STATE(6407)] = 192217, + [SMALL_STATE(6408)] = 192309, + [SMALL_STATE(6409)] = 192401, + [SMALL_STATE(6410)] = 192475, + [SMALL_STATE(6411)] = 192527, + [SMALL_STATE(6412)] = 192613, + [SMALL_STATE(6413)] = 192687, + [SMALL_STATE(6414)] = 192761, + [SMALL_STATE(6415)] = 192853, + [SMALL_STATE(6416)] = 192911, + [SMALL_STATE(6417)] = 192977, + [SMALL_STATE(6418)] = 193051, + [SMALL_STATE(6419)] = 193143, + [SMALL_STATE(6420)] = 193235, + [SMALL_STATE(6421)] = 193301, + [SMALL_STATE(6422)] = 193351, + [SMALL_STATE(6423)] = 193401, + [SMALL_STATE(6424)] = 193455, + [SMALL_STATE(6425)] = 193538, + [SMALL_STATE(6426)] = 193629, + [SMALL_STATE(6427)] = 193682, + [SMALL_STATE(6428)] = 193771, + [SMALL_STATE(6429)] = 193860, + [SMALL_STATE(6430)] = 193951, + [SMALL_STATE(6431)] = 194018, + [SMALL_STATE(6432)] = 194107, + [SMALL_STATE(6433)] = 194156, + [SMALL_STATE(6434)] = 194243, + [SMALL_STATE(6435)] = 194328, + [SMALL_STATE(6436)] = 194407, + [SMALL_STATE(6437)] = 194484, + [SMALL_STATE(6438)] = 194557, + [SMALL_STATE(6439)] = 194626, + [SMALL_STATE(6440)] = 194697, + [SMALL_STATE(6441)] = 194746, + [SMALL_STATE(6442)] = 194795, + [SMALL_STATE(6443)] = 194852, + [SMALL_STATE(6444)] = 194901, + [SMALL_STATE(6445)] = 194950, + [SMALL_STATE(6446)] = 195007, + [SMALL_STATE(6447)] = 195064, + [SMALL_STATE(6448)] = 195121, + [SMALL_STATE(6449)] = 195178, + [SMALL_STATE(6450)] = 195235, + [SMALL_STATE(6451)] = 195292, + [SMALL_STATE(6452)] = 195349, + [SMALL_STATE(6453)] = 195406, + [SMALL_STATE(6454)] = 195463, + [SMALL_STATE(6455)] = 195520, + [SMALL_STATE(6456)] = 195577, + [SMALL_STATE(6457)] = 195626, + [SMALL_STATE(6458)] = 195675, + [SMALL_STATE(6459)] = 195724, + [SMALL_STATE(6460)] = 195799, + [SMALL_STATE(6461)] = 195874, + [SMALL_STATE(6462)] = 195959, + [SMALL_STATE(6463)] = 196012, + [SMALL_STATE(6464)] = 196097, + [SMALL_STATE(6465)] = 196172, + [SMALL_STATE(6466)] = 196247, + [SMALL_STATE(6467)] = 196296, + [SMALL_STATE(6468)] = 196345, + [SMALL_STATE(6469)] = 196394, + [SMALL_STATE(6470)] = 196443, + [SMALL_STATE(6471)] = 196492, + [SMALL_STATE(6472)] = 196545, + [SMALL_STATE(6473)] = 196620, + [SMALL_STATE(6474)] = 196669, + [SMALL_STATE(6475)] = 196724, + [SMALL_STATE(6476)] = 196799, + [SMALL_STATE(6477)] = 196864, + [SMALL_STATE(6478)] = 196921, + [SMALL_STATE(6479)] = 196978, + [SMALL_STATE(6480)] = 197035, + [SMALL_STATE(6481)] = 197092, + [SMALL_STATE(6482)] = 197183, + [SMALL_STATE(6483)] = 197274, + [SMALL_STATE(6484)] = 197323, + [SMALL_STATE(6485)] = 197418, + [SMALL_STATE(6486)] = 197467, + [SMALL_STATE(6487)] = 197558, + [SMALL_STATE(6488)] = 197647, + [SMALL_STATE(6489)] = 197738, + [SMALL_STATE(6490)] = 197827, + [SMALL_STATE(6491)] = 197916, + [SMALL_STATE(6492)] = 198005, + [SMALL_STATE(6493)] = 198094, + [SMALL_STATE(6494)] = 198183, + [SMALL_STATE(6495)] = 198236, + [SMALL_STATE(6496)] = 198331, + [SMALL_STATE(6497)] = 198426, + [SMALL_STATE(6498)] = 198479, + [SMALL_STATE(6499)] = 198528, + [SMALL_STATE(6500)] = 198584, + [SMALL_STATE(6501)] = 198668, + [SMALL_STATE(6502)] = 198750, + [SMALL_STATE(6503)] = 198828, + [SMALL_STATE(6504)] = 198884, + [SMALL_STATE(6505)] = 198940, + [SMALL_STATE(6506)] = 198996, + [SMALL_STATE(6507)] = 199052, + [SMALL_STATE(6508)] = 199128, + [SMALL_STATE(6509)] = 199200, + [SMALL_STATE(6510)] = 199268, + [SMALL_STATE(6511)] = 199338, + [SMALL_STATE(6512)] = 199396, + [SMALL_STATE(6513)] = 199488, + [SMALL_STATE(6514)] = 199546, + [SMALL_STATE(6515)] = 199642, + [SMALL_STATE(6516)] = 199700, + [SMALL_STATE(6517)] = 199792, + [SMALL_STATE(6518)] = 199868, + [SMALL_STATE(6519)] = 199964, + [SMALL_STATE(6520)] = 200022, + [SMALL_STATE(6521)] = 200078, + [SMALL_STATE(6522)] = 200134, + [SMALL_STATE(6523)] = 200230, + [SMALL_STATE(6524)] = 200318, + [SMALL_STATE(6525)] = 200376, + [SMALL_STATE(6526)] = 200434, + [SMALL_STATE(6527)] = 200492, + [SMALL_STATE(6528)] = 200568, + [SMALL_STATE(6529)] = 200644, + [SMALL_STATE(6530)] = 200720, + [SMALL_STATE(6531)] = 200778, + [SMALL_STATE(6532)] = 200870, + [SMALL_STATE(6533)] = 200962, + [SMALL_STATE(6534)] = 201054, + [SMALL_STATE(6535)] = 201112, + [SMALL_STATE(6536)] = 201160, + [SMALL_STATE(6537)] = 201208, + [SMALL_STATE(6538)] = 201284, + [SMALL_STATE(6539)] = 201360, + [SMALL_STATE(6540)] = 201462, + [SMALL_STATE(6541)] = 201554, + [SMALL_STATE(6542)] = 201602, + [SMALL_STATE(6543)] = 201650, + [SMALL_STATE(6544)] = 201708, + [SMALL_STATE(6545)] = 201766, + [SMALL_STATE(6546)] = 201824, + [SMALL_STATE(6547)] = 201920, + [SMALL_STATE(6548)] = 202016, + [SMALL_STATE(6549)] = 202074, + [SMALL_STATE(6550)] = 202174, + [SMALL_STATE(6551)] = 202240, + [SMALL_STATE(6552)] = 202330, + [SMALL_STATE(6553)] = 202386, + [SMALL_STATE(6554)] = 202433, + [SMALL_STATE(6555)] = 202486, + [SMALL_STATE(6556)] = 202535, + [SMALL_STATE(6557)] = 202624, + [SMALL_STATE(6558)] = 202671, + [SMALL_STATE(6559)] = 202718, + [SMALL_STATE(6560)] = 202769, + [SMALL_STATE(6561)] = 202816, + [SMALL_STATE(6562)] = 202871, + [SMALL_STATE(6563)] = 202968, + [SMALL_STATE(6564)] = 203021, + [SMALL_STATE(6565)] = 203118, + [SMALL_STATE(6566)] = 203171, + [SMALL_STATE(6567)] = 203234, + [SMALL_STATE(6568)] = 203329, + [SMALL_STATE(6569)] = 203376, + [SMALL_STATE(6570)] = 203471, + [SMALL_STATE(6571)] = 203524, + [SMALL_STATE(6572)] = 203571, + [SMALL_STATE(6573)] = 203668, + [SMALL_STATE(6574)] = 203765, + [SMALL_STATE(6575)] = 203862, + [SMALL_STATE(6576)] = 203959, + [SMALL_STATE(6577)] = 204006, + [SMALL_STATE(6578)] = 204103, + [SMALL_STATE(6579)] = 204200, + [SMALL_STATE(6580)] = 204253, + [SMALL_STATE(6581)] = 204306, + [SMALL_STATE(6582)] = 204353, + [SMALL_STATE(6583)] = 204450, + [SMALL_STATE(6584)] = 204499, + [SMALL_STATE(6585)] = 204596, + [SMALL_STATE(6586)] = 204649, + [SMALL_STATE(6587)] = 204702, + [SMALL_STATE(6588)] = 204755, + [SMALL_STATE(6589)] = 204828, + [SMALL_STATE(6590)] = 204901, + [SMALL_STATE(6591)] = 204974, + [SMALL_STATE(6592)] = 205071, + [SMALL_STATE(6593)] = 205168, + [SMALL_STATE(6594)] = 205265, + [SMALL_STATE(6595)] = 205362, + [SMALL_STATE(6596)] = 205435, + [SMALL_STATE(6597)] = 205508, + [SMALL_STATE(6598)] = 205581, + [SMALL_STATE(6599)] = 205630, + [SMALL_STATE(6600)] = 205727, + [SMALL_STATE(6601)] = 205774, + [SMALL_STATE(6602)] = 205821, + [SMALL_STATE(6603)] = 205868, + [SMALL_STATE(6604)] = 205915, + [SMALL_STATE(6605)] = 205962, + [SMALL_STATE(6606)] = 206059, + [SMALL_STATE(6607)] = 206156, + [SMALL_STATE(6608)] = 206253, + [SMALL_STATE(6609)] = 206300, + [SMALL_STATE(6610)] = 206349, + [SMALL_STATE(6611)] = 206396, + [SMALL_STATE(6612)] = 206493, + [SMALL_STATE(6613)] = 206540, + [SMALL_STATE(6614)] = 206587, + [SMALL_STATE(6615)] = 206640, + [SMALL_STATE(6616)] = 206737, + [SMALL_STATE(6617)] = 206784, + [SMALL_STATE(6618)] = 206881, + [SMALL_STATE(6619)] = 206978, + [SMALL_STATE(6620)] = 207075, + [SMALL_STATE(6621)] = 207122, + [SMALL_STATE(6622)] = 207169, + [SMALL_STATE(6623)] = 207216, + [SMALL_STATE(6624)] = 207263, + [SMALL_STATE(6625)] = 207360, + [SMALL_STATE(6626)] = 207407, + [SMALL_STATE(6627)] = 207454, + [SMALL_STATE(6628)] = 207501, + [SMALL_STATE(6629)] = 207548, + [SMALL_STATE(6630)] = 207595, + [SMALL_STATE(6631)] = 207642, + [SMALL_STATE(6632)] = 207689, + [SMALL_STATE(6633)] = 207736, + [SMALL_STATE(6634)] = 207789, + [SMALL_STATE(6635)] = 207836, + [SMALL_STATE(6636)] = 207933, + [SMALL_STATE(6637)] = 208030, + [SMALL_STATE(6638)] = 208127, + [SMALL_STATE(6639)] = 208190, + [SMALL_STATE(6640)] = 208237, + [SMALL_STATE(6641)] = 208334, + [SMALL_STATE(6642)] = 208381, + [SMALL_STATE(6643)] = 208432, + [SMALL_STATE(6644)] = 208479, + [SMALL_STATE(6645)] = 208576, + [SMALL_STATE(6646)] = 208639, + [SMALL_STATE(6647)] = 208736, + [SMALL_STATE(6648)] = 208833, + [SMALL_STATE(6649)] = 208930, + [SMALL_STATE(6650)] = 208977, + [SMALL_STATE(6651)] = 209024, + [SMALL_STATE(6652)] = 209071, + [SMALL_STATE(6653)] = 209124, + [SMALL_STATE(6654)] = 209221, + [SMALL_STATE(6655)] = 209268, + [SMALL_STATE(6656)] = 209315, + [SMALL_STATE(6657)] = 209362, + [SMALL_STATE(6658)] = 209459, + [SMALL_STATE(6659)] = 209548, + [SMALL_STATE(6660)] = 209645, + [SMALL_STATE(6661)] = 209692, + [SMALL_STATE(6662)] = 209739, + [SMALL_STATE(6663)] = 209836, + [SMALL_STATE(6664)] = 209933, + [SMALL_STATE(6665)] = 209980, + [SMALL_STATE(6666)] = 210027, + [SMALL_STATE(6667)] = 210074, + [SMALL_STATE(6668)] = 210171, + [SMALL_STATE(6669)] = 210218, + [SMALL_STATE(6670)] = 210265, + [SMALL_STATE(6671)] = 210362, + [SMALL_STATE(6672)] = 210459, + [SMALL_STATE(6673)] = 210556, + [SMALL_STATE(6674)] = 210653, + [SMALL_STATE(6675)] = 210750, + [SMALL_STATE(6676)] = 210797, + [SMALL_STATE(6677)] = 210894, + [SMALL_STATE(6678)] = 210991, + [SMALL_STATE(6679)] = 211088, + [SMALL_STATE(6680)] = 211185, + [SMALL_STATE(6681)] = 211282, + [SMALL_STATE(6682)] = 211329, + [SMALL_STATE(6683)] = 211382, + [SMALL_STATE(6684)] = 211479, + [SMALL_STATE(6685)] = 211526, + [SMALL_STATE(6686)] = 211575, + [SMALL_STATE(6687)] = 211624, + [SMALL_STATE(6688)] = 211671, + [SMALL_STATE(6689)] = 211718, + [SMALL_STATE(6690)] = 211765, + [SMALL_STATE(6691)] = 211816, + [SMALL_STATE(6692)] = 211863, + [SMALL_STATE(6693)] = 211960, + [SMALL_STATE(6694)] = 212057, + [SMALL_STATE(6695)] = 212104, + [SMALL_STATE(6696)] = 212151, + [SMALL_STATE(6697)] = 212204, + [SMALL_STATE(6698)] = 212257, + [SMALL_STATE(6699)] = 212304, + [SMALL_STATE(6700)] = 212351, + [SMALL_STATE(6701)] = 212398, + [SMALL_STATE(6702)] = 212445, + [SMALL_STATE(6703)] = 212492, + [SMALL_STATE(6704)] = 212539, + [SMALL_STATE(6705)] = 212586, + [SMALL_STATE(6706)] = 212683, + [SMALL_STATE(6707)] = 212730, + [SMALL_STATE(6708)] = 212785, + [SMALL_STATE(6709)] = 212832, + [SMALL_STATE(6710)] = 212879, + [SMALL_STATE(6711)] = 212926, + [SMALL_STATE(6712)] = 212973, + [SMALL_STATE(6713)] = 213020, + [SMALL_STATE(6714)] = 213067, + [SMALL_STATE(6715)] = 213114, + [SMALL_STATE(6716)] = 213161, + [SMALL_STATE(6717)] = 213208, + [SMALL_STATE(6718)] = 213305, + [SMALL_STATE(6719)] = 213352, + [SMALL_STATE(6720)] = 213434, + [SMALL_STATE(6721)] = 213522, + [SMALL_STATE(6722)] = 213616, + [SMALL_STATE(6723)] = 213710, + [SMALL_STATE(6724)] = 213764, + [SMALL_STATE(6725)] = 213856, + [SMALL_STATE(6726)] = 213930, + [SMALL_STATE(6727)] = 214024, + [SMALL_STATE(6728)] = 214118, + [SMALL_STATE(6729)] = 214212, + [SMALL_STATE(6730)] = 214306, + [SMALL_STATE(6731)] = 214398, + [SMALL_STATE(6732)] = 214492, + [SMALL_STATE(6733)] = 214548, + [SMALL_STATE(6734)] = 214620, + [SMALL_STATE(6735)] = 214692, + [SMALL_STATE(6736)] = 214786, + [SMALL_STATE(6737)] = 214880, + [SMALL_STATE(6738)] = 214952, + [SMALL_STATE(6739)] = 215004, + [SMALL_STATE(6740)] = 215076, + [SMALL_STATE(6741)] = 215148, + [SMALL_STATE(6742)] = 215202, + [SMALL_STATE(6743)] = 215256, + [SMALL_STATE(6744)] = 215350, + [SMALL_STATE(6745)] = 215404, + [SMALL_STATE(6746)] = 215462, + [SMALL_STATE(6747)] = 215554, + [SMALL_STATE(6748)] = 215618, + [SMALL_STATE(6749)] = 215712, + [SMALL_STATE(6750)] = 215760, + [SMALL_STATE(6751)] = 215834, + [SMALL_STATE(6752)] = 215928, + [SMALL_STATE(6753)] = 215988, + [SMALL_STATE(6754)] = 216074, + [SMALL_STATE(6755)] = 216158, + [SMALL_STATE(6756)] = 216246, + [SMALL_STATE(6757)] = 216340, + [SMALL_STATE(6758)] = 216414, + [SMALL_STATE(6759)] = 216494, + [SMALL_STATE(6760)] = 216548, + [SMALL_STATE(6761)] = 216622, + [SMALL_STATE(6762)] = 216698, + [SMALL_STATE(6763)] = 216772, + [SMALL_STATE(6764)] = 216844, + [SMALL_STATE(6765)] = 216910, + [SMALL_STATE(6766)] = 216980, + [SMALL_STATE(6767)] = 217034, + [SMALL_STATE(6768)] = 217126, + [SMALL_STATE(6769)] = 217220, + [SMALL_STATE(6770)] = 217314, + [SMALL_STATE(6771)] = 217388, + [SMALL_STATE(6772)] = 217462, + [SMALL_STATE(6773)] = 217556, + [SMALL_STATE(6774)] = 217616, + [SMALL_STATE(6775)] = 217708, + [SMALL_STATE(6776)] = 217802, + [SMALL_STATE(6777)] = 217876, + [SMALL_STATE(6778)] = 217950, + [SMALL_STATE(6779)] = 218024, + [SMALL_STATE(6780)] = 218078, + [SMALL_STATE(6781)] = 218138, + [SMALL_STATE(6782)] = 218196, + [SMALL_STATE(6783)] = 218290, + [SMALL_STATE(6784)] = 218382, + [SMALL_STATE(6785)] = 218456, + [SMALL_STATE(6786)] = 218530, + [SMALL_STATE(6787)] = 218590, + [SMALL_STATE(6788)] = 218684, + [SMALL_STATE(6789)] = 218758, + [SMALL_STATE(6790)] = 218812, + [SMALL_STATE(6791)] = 218866, + [SMALL_STATE(6792)] = 218960, + [SMALL_STATE(6793)] = 219048, + [SMALL_STATE(6794)] = 219142, + [SMALL_STATE(6795)] = 219196, + [SMALL_STATE(6796)] = 219290, + [SMALL_STATE(6797)] = 219382, + [SMALL_STATE(6798)] = 219474, + [SMALL_STATE(6799)] = 219528, + [SMALL_STATE(6800)] = 219616, + [SMALL_STATE(6801)] = 219670, + [SMALL_STATE(6802)] = 219718, + [SMALL_STATE(6803)] = 219806, + [SMALL_STATE(6804)] = 219900, + [SMALL_STATE(6805)] = 219958, + [SMALL_STATE(6806)] = 220050, + [SMALL_STATE(6807)] = 220142, + [SMALL_STATE(6808)] = 220234, + [SMALL_STATE(6809)] = 220326, + [SMALL_STATE(6810)] = 220384, + [SMALL_STATE(6811)] = 220436, + [SMALL_STATE(6812)] = 220528, + [SMALL_STATE(6813)] = 220620, + [SMALL_STATE(6814)] = 220708, + [SMALL_STATE(6815)] = 220800, + [SMALL_STATE(6816)] = 220894, + [SMALL_STATE(6817)] = 220958, + [SMALL_STATE(6818)] = 221044, + [SMALL_STATE(6819)] = 221128, + [SMALL_STATE(6820)] = 221210, + [SMALL_STATE(6821)] = 221290, + [SMALL_STATE(6822)] = 221366, + [SMALL_STATE(6823)] = 221440, + [SMALL_STATE(6824)] = 221510, + [SMALL_STATE(6825)] = 221576, + [SMALL_STATE(6826)] = 221670, + [SMALL_STATE(6827)] = 221738, + [SMALL_STATE(6828)] = 221826, + [SMALL_STATE(6829)] = 221918, + [SMALL_STATE(6830)] = 222006, + [SMALL_STATE(6831)] = 222098, + [SMALL_STATE(6832)] = 222192, + [SMALL_STATE(6833)] = 222284, + [SMALL_STATE(6834)] = 222378, + [SMALL_STATE(6835)] = 222466, + [SMALL_STATE(6836)] = 222520, + [SMALL_STATE(6837)] = 222614, + [SMALL_STATE(6838)] = 222708, + [SMALL_STATE(6839)] = 222802, + [SMALL_STATE(6840)] = 222896, + [SMALL_STATE(6841)] = 222990, + [SMALL_STATE(6842)] = 223084, + [SMALL_STATE(6843)] = 223178, + [SMALL_STATE(6844)] = 223224, + [SMALL_STATE(6845)] = 223316, + [SMALL_STATE(6846)] = 223408, + [SMALL_STATE(6847)] = 223462, + [SMALL_STATE(6848)] = 223556, + [SMALL_STATE(6849)] = 223650, + [SMALL_STATE(6850)] = 223744, + [SMALL_STATE(6851)] = 223838, + [SMALL_STATE(6852)] = 223930, + [SMALL_STATE(6853)] = 224018, + [SMALL_STATE(6854)] = 224112, + [SMALL_STATE(6855)] = 224206, + [SMALL_STATE(6856)] = 224256, + [SMALL_STATE(6857)] = 224344, + [SMALL_STATE(6858)] = 224432, + [SMALL_STATE(6859)] = 224524, + [SMALL_STATE(6860)] = 224612, + [SMALL_STATE(6861)] = 224700, + [SMALL_STATE(6862)] = 224788, + [SMALL_STATE(6863)] = 224876, + [SMALL_STATE(6864)] = 224968, + [SMALL_STATE(6865)] = 225032, + [SMALL_STATE(6866)] = 225092, + [SMALL_STATE(6867)] = 225178, + [SMALL_STATE(6868)] = 225262, + [SMALL_STATE(6869)] = 225344, + [SMALL_STATE(6870)] = 225424, + [SMALL_STATE(6871)] = 225500, + [SMALL_STATE(6872)] = 225574, + [SMALL_STATE(6873)] = 225644, + [SMALL_STATE(6874)] = 225710, + [SMALL_STATE(6875)] = 225804, + [SMALL_STATE(6876)] = 225872, + [SMALL_STATE(6877)] = 225966, + [SMALL_STATE(6878)] = 226026, + [SMALL_STATE(6879)] = 226120, + [SMALL_STATE(6880)] = 226208, + [SMALL_STATE(6881)] = 226300, + [SMALL_STATE(6882)] = 226388, + [SMALL_STATE(6883)] = 226480, + [SMALL_STATE(6884)] = 226572, + [SMALL_STATE(6885)] = 226664, + [SMALL_STATE(6886)] = 226758, + [SMALL_STATE(6887)] = 226822, + [SMALL_STATE(6888)] = 226882, + [SMALL_STATE(6889)] = 226968, + [SMALL_STATE(6890)] = 227052, + [SMALL_STATE(6891)] = 227134, + [SMALL_STATE(6892)] = 227214, + [SMALL_STATE(6893)] = 227290, + [SMALL_STATE(6894)] = 227364, + [SMALL_STATE(6895)] = 227422, + [SMALL_STATE(6896)] = 227510, + [SMALL_STATE(6897)] = 227580, + [SMALL_STATE(6898)] = 227640, + [SMALL_STATE(6899)] = 227700, + [SMALL_STATE(6900)] = 227766, + [SMALL_STATE(6901)] = 227854, + [SMALL_STATE(6902)] = 227912, + [SMALL_STATE(6903)] = 227980, + [SMALL_STATE(6904)] = 228030, + [SMALL_STATE(6905)] = 228118, + [SMALL_STATE(6906)] = 228190, + [SMALL_STATE(6907)] = 228244, + [SMALL_STATE(6908)] = 228336, + [SMALL_STATE(6909)] = 228390, + [SMALL_STATE(6910)] = 228450, + [SMALL_STATE(6911)] = 228542, + [SMALL_STATE(6912)] = 228602, + [SMALL_STATE(6913)] = 228694, + [SMALL_STATE(6914)] = 228788, + [SMALL_STATE(6915)] = 228882, + [SMALL_STATE(6916)] = 228974, + [SMALL_STATE(6917)] = 229068, + [SMALL_STATE(6918)] = 229128, + [SMALL_STATE(6919)] = 229216, + [SMALL_STATE(6920)] = 229304, + [SMALL_STATE(6921)] = 229392, + [SMALL_STATE(6922)] = 229483, + [SMALL_STATE(6923)] = 229574, + [SMALL_STATE(6924)] = 229665, + [SMALL_STATE(6925)] = 229756, + [SMALL_STATE(6926)] = 229847, + [SMALL_STATE(6927)] = 229938, + [SMALL_STATE(6928)] = 230029, + [SMALL_STATE(6929)] = 230120, + [SMALL_STATE(6930)] = 230211, + [SMALL_STATE(6931)] = 230302, + [SMALL_STATE(6932)] = 230393, + [SMALL_STATE(6933)] = 230484, + [SMALL_STATE(6934)] = 230557, + [SMALL_STATE(6935)] = 230648, + [SMALL_STATE(6936)] = 230741, + [SMALL_STATE(6937)] = 230834, + [SMALL_STATE(6938)] = 230925, + [SMALL_STATE(6939)] = 231016, + [SMALL_STATE(6940)] = 231107, + [SMALL_STATE(6941)] = 231198, + [SMALL_STATE(6942)] = 231289, + [SMALL_STATE(6943)] = 231382, + [SMALL_STATE(6944)] = 231473, + [SMALL_STATE(6945)] = 231564, + [SMALL_STATE(6946)] = 231655, + [SMALL_STATE(6947)] = 231700, + [SMALL_STATE(6948)] = 231791, + [SMALL_STATE(6949)] = 231882, + [SMALL_STATE(6950)] = 231973, + [SMALL_STATE(6951)] = 232064, + [SMALL_STATE(6952)] = 232155, + [SMALL_STATE(6953)] = 232246, + [SMALL_STATE(6954)] = 232337, + [SMALL_STATE(6955)] = 232428, + [SMALL_STATE(6956)] = 232521, + [SMALL_STATE(6957)] = 232612, + [SMALL_STATE(6958)] = 232703, + [SMALL_STATE(6959)] = 232794, + [SMALL_STATE(6960)] = 232885, + [SMALL_STATE(6961)] = 232976, + [SMALL_STATE(6962)] = 233067, + [SMALL_STATE(6963)] = 233158, + [SMALL_STATE(6964)] = 233249, + [SMALL_STATE(6965)] = 233340, + [SMALL_STATE(6966)] = 233385, + [SMALL_STATE(6967)] = 233476, + [SMALL_STATE(6968)] = 233567, + [SMALL_STATE(6969)] = 233658, + [SMALL_STATE(6970)] = 233749, + [SMALL_STATE(6971)] = 233840, + [SMALL_STATE(6972)] = 233931, + [SMALL_STATE(6973)] = 234002, + [SMALL_STATE(6974)] = 234093, + [SMALL_STATE(6975)] = 234184, + [SMALL_STATE(6976)] = 234255, + [SMALL_STATE(6977)] = 234346, + [SMALL_STATE(6978)] = 234437, + [SMALL_STATE(6979)] = 234528, + [SMALL_STATE(6980)] = 234619, + [SMALL_STATE(6981)] = 234674, + [SMALL_STATE(6982)] = 234765, + [SMALL_STATE(6983)] = 234856, + [SMALL_STATE(6984)] = 234947, + [SMALL_STATE(6985)] = 235038, + [SMALL_STATE(6986)] = 235129, + [SMALL_STATE(6987)] = 235220, + [SMALL_STATE(6988)] = 235311, + [SMALL_STATE(6989)] = 235402, + [SMALL_STATE(6990)] = 235493, + [SMALL_STATE(6991)] = 235584, + [SMALL_STATE(6992)] = 235675, + [SMALL_STATE(6993)] = 235766, + [SMALL_STATE(6994)] = 235859, + [SMALL_STATE(6995)] = 235922, + [SMALL_STATE(6996)] = 235995, + [SMALL_STATE(6997)] = 236086, + [SMALL_STATE(6998)] = 236177, + [SMALL_STATE(6999)] = 236270, + [SMALL_STATE(7000)] = 236317, + [SMALL_STATE(7001)] = 236408, + [SMALL_STATE(7002)] = 236499, + [SMALL_STATE(7003)] = 236590, + [SMALL_STATE(7004)] = 236681, + [SMALL_STATE(7005)] = 236772, + [SMALL_STATE(7006)] = 236863, + [SMALL_STATE(7007)] = 236954, + [SMALL_STATE(7008)] = 237025, + [SMALL_STATE(7009)] = 237070, + [SMALL_STATE(7010)] = 237161, + [SMALL_STATE(7011)] = 237252, + [SMALL_STATE(7012)] = 237297, + [SMALL_STATE(7013)] = 237388, + [SMALL_STATE(7014)] = 237479, + [SMALL_STATE(7015)] = 237552, + [SMALL_STATE(7016)] = 237643, + [SMALL_STATE(7017)] = 237734, + [SMALL_STATE(7018)] = 237825, + [SMALL_STATE(7019)] = 237916, + [SMALL_STATE(7020)] = 238007, + [SMALL_STATE(7021)] = 238080, + [SMALL_STATE(7022)] = 238171, + [SMALL_STATE(7023)] = 238262, + [SMALL_STATE(7024)] = 238335, + [SMALL_STATE(7025)] = 238426, + [SMALL_STATE(7026)] = 238477, + [SMALL_STATE(7027)] = 238550, + [SMALL_STATE(7028)] = 238623, + [SMALL_STATE(7029)] = 238716, + [SMALL_STATE(7030)] = 238789, + [SMALL_STATE(7031)] = 238880, + [SMALL_STATE(7032)] = 238951, + [SMALL_STATE(7033)] = 239022, + [SMALL_STATE(7034)] = 239113, + [SMALL_STATE(7035)] = 239204, + [SMALL_STATE(7036)] = 239297, + [SMALL_STATE(7037)] = 239388, + [SMALL_STATE(7038)] = 239479, + [SMALL_STATE(7039)] = 239570, + [SMALL_STATE(7040)] = 239615, + [SMALL_STATE(7041)] = 239662, + [SMALL_STATE(7042)] = 239711, + [SMALL_STATE(7043)] = 239802, + [SMALL_STATE(7044)] = 239893, + [SMALL_STATE(7045)] = 239942, + [SMALL_STATE(7046)] = 239989, + [SMALL_STATE(7047)] = 240038, + [SMALL_STATE(7048)] = 240131, + [SMALL_STATE(7049)] = 240222, + [SMALL_STATE(7050)] = 240295, + [SMALL_STATE(7051)] = 240386, + [SMALL_STATE(7052)] = 240459, + [SMALL_STATE(7053)] = 240532, + [SMALL_STATE(7054)] = 240605, + [SMALL_STATE(7055)] = 240654, + [SMALL_STATE(7056)] = 240703, + [SMALL_STATE(7057)] = 240776, + [SMALL_STATE(7058)] = 240867, + [SMALL_STATE(7059)] = 240960, + [SMALL_STATE(7060)] = 241007, + [SMALL_STATE(7061)] = 241098, + [SMALL_STATE(7062)] = 241143, + [SMALL_STATE(7063)] = 241192, + [SMALL_STATE(7064)] = 241241, + [SMALL_STATE(7065)] = 241290, + [SMALL_STATE(7066)] = 241339, + [SMALL_STATE(7067)] = 241388, + [SMALL_STATE(7068)] = 241479, + [SMALL_STATE(7069)] = 241528, + [SMALL_STATE(7070)] = 241619, + [SMALL_STATE(7071)] = 241710, + [SMALL_STATE(7072)] = 241759, + [SMALL_STATE(7073)] = 241808, + [SMALL_STATE(7074)] = 241899, + [SMALL_STATE(7075)] = 241990, + [SMALL_STATE(7076)] = 242081, + [SMALL_STATE(7077)] = 242168, + [SMALL_STATE(7078)] = 242259, + [SMALL_STATE(7079)] = 242350, + [SMALL_STATE(7080)] = 242395, + [SMALL_STATE(7081)] = 242486, + [SMALL_STATE(7082)] = 242577, + [SMALL_STATE(7083)] = 242648, + [SMALL_STATE(7084)] = 242739, + [SMALL_STATE(7085)] = 242826, + [SMALL_STATE(7086)] = 242917, + [SMALL_STATE(7087)] = 243008, + [SMALL_STATE(7088)] = 243099, + [SMALL_STATE(7089)] = 243190, + [SMALL_STATE(7090)] = 243281, + [SMALL_STATE(7091)] = 243372, + [SMALL_STATE(7092)] = 243465, + [SMALL_STATE(7093)] = 243556, + [SMALL_STATE(7094)] = 243647, + [SMALL_STATE(7095)] = 243740, + [SMALL_STATE(7096)] = 243831, + [SMALL_STATE(7097)] = 243922, + [SMALL_STATE(7098)] = 244013, + [SMALL_STATE(7099)] = 244104, + [SMALL_STATE(7100)] = 244195, + [SMALL_STATE(7101)] = 244286, + [SMALL_STATE(7102)] = 244377, + [SMALL_STATE(7103)] = 244468, + [SMALL_STATE(7104)] = 244559, + [SMALL_STATE(7105)] = 244650, + [SMALL_STATE(7106)] = 244741, + [SMALL_STATE(7107)] = 244832, + [SMALL_STATE(7108)] = 244923, + [SMALL_STATE(7109)] = 245014, + [SMALL_STATE(7110)] = 245105, + [SMALL_STATE(7111)] = 245196, + [SMALL_STATE(7112)] = 245289, + [SMALL_STATE(7113)] = 245380, + [SMALL_STATE(7114)] = 245471, + [SMALL_STATE(7115)] = 245562, + [SMALL_STATE(7116)] = 245649, + [SMALL_STATE(7117)] = 245742, + [SMALL_STATE(7118)] = 245789, + [SMALL_STATE(7119)] = 245880, + [SMALL_STATE(7120)] = 245973, + [SMALL_STATE(7121)] = 246064, + [SMALL_STATE(7122)] = 246155, + [SMALL_STATE(7123)] = 246228, + [SMALL_STATE(7124)] = 246273, + [SMALL_STATE(7125)] = 246364, + [SMALL_STATE(7126)] = 246455, + [SMALL_STATE(7127)] = 246546, + [SMALL_STATE(7128)] = 246637, + [SMALL_STATE(7129)] = 246710, + [SMALL_STATE(7130)] = 246801, + [SMALL_STATE(7131)] = 246892, + [SMALL_STATE(7132)] = 246983, + [SMALL_STATE(7133)] = 247074, + [SMALL_STATE(7134)] = 247165, + [SMALL_STATE(7135)] = 247256, + [SMALL_STATE(7136)] = 247347, + [SMALL_STATE(7137)] = 247438, + [SMALL_STATE(7138)] = 247511, + [SMALL_STATE(7139)] = 247602, + [SMALL_STATE(7140)] = 247695, + [SMALL_STATE(7141)] = 247786, + [SMALL_STATE(7142)] = 247877, + [SMALL_STATE(7143)] = 247968, + [SMALL_STATE(7144)] = 248059, + [SMALL_STATE(7145)] = 248150, + [SMALL_STATE(7146)] = 248223, + [SMALL_STATE(7147)] = 248314, + [SMALL_STATE(7148)] = 248405, + [SMALL_STATE(7149)] = 248496, + [SMALL_STATE(7150)] = 248549, + [SMALL_STATE(7151)] = 248640, + [SMALL_STATE(7152)] = 248731, + [SMALL_STATE(7153)] = 248824, + [SMALL_STATE(7154)] = 248917, + [SMALL_STATE(7155)] = 249008, + [SMALL_STATE(7156)] = 249081, + [SMALL_STATE(7157)] = 249174, + [SMALL_STATE(7158)] = 249267, + [SMALL_STATE(7159)] = 249358, + [SMALL_STATE(7160)] = 249449, + [SMALL_STATE(7161)] = 249540, + [SMALL_STATE(7162)] = 249631, + [SMALL_STATE(7163)] = 249722, + [SMALL_STATE(7164)] = 249795, + [SMALL_STATE(7165)] = 249886, + [SMALL_STATE(7166)] = 249977, + [SMALL_STATE(7167)] = 250068, + [SMALL_STATE(7168)] = 250159, + [SMALL_STATE(7169)] = 250252, + [SMALL_STATE(7170)] = 250343, + [SMALL_STATE(7171)] = 250416, + [SMALL_STATE(7172)] = 250509, + [SMALL_STATE(7173)] = 250582, + [SMALL_STATE(7174)] = 250673, + [SMALL_STATE(7175)] = 250764, + [SMALL_STATE(7176)] = 250855, + [SMALL_STATE(7177)] = 250942, + [SMALL_STATE(7178)] = 250989, + [SMALL_STATE(7179)] = 251080, + [SMALL_STATE(7180)] = 251171, + [SMALL_STATE(7181)] = 251262, + [SMALL_STATE(7182)] = 251353, + [SMALL_STATE(7183)] = 251444, + [SMALL_STATE(7184)] = 251535, + [SMALL_STATE(7185)] = 251626, + [SMALL_STATE(7186)] = 251717, + [SMALL_STATE(7187)] = 251808, + [SMALL_STATE(7188)] = 251899, + [SMALL_STATE(7189)] = 251990, + [SMALL_STATE(7190)] = 252082, + [SMALL_STATE(7191)] = 252126, + [SMALL_STATE(7192)] = 252170, + [SMALL_STATE(7193)] = 252214, + [SMALL_STATE(7194)] = 252258, + [SMALL_STATE(7195)] = 252302, + [SMALL_STATE(7196)] = 252346, + [SMALL_STATE(7197)] = 252390, + [SMALL_STATE(7198)] = 252434, + [SMALL_STATE(7199)] = 252484, + [SMALL_STATE(7200)] = 252528, + [SMALL_STATE(7201)] = 252572, + [SMALL_STATE(7202)] = 252616, + [SMALL_STATE(7203)] = 252660, + [SMALL_STATE(7204)] = 252752, + [SMALL_STATE(7205)] = 252844, + [SMALL_STATE(7206)] = 252936, + [SMALL_STATE(7207)] = 253006, + [SMALL_STATE(7208)] = 253050, + [SMALL_STATE(7209)] = 253100, + [SMALL_STATE(7210)] = 253144, + [SMALL_STATE(7211)] = 253192, + [SMALL_STATE(7212)] = 253236, + [SMALL_STATE(7213)] = 253328, + [SMALL_STATE(7214)] = 253420, + [SMALL_STATE(7215)] = 253512, + [SMALL_STATE(7216)] = 253556, + [SMALL_STATE(7217)] = 253600, + [SMALL_STATE(7218)] = 253680, + [SMALL_STATE(7219)] = 253772, + [SMALL_STATE(7220)] = 253864, + [SMALL_STATE(7221)] = 253956, + [SMALL_STATE(7222)] = 254000, + [SMALL_STATE(7223)] = 254052, + [SMALL_STATE(7224)] = 254138, + [SMALL_STATE(7225)] = 254230, + [SMALL_STATE(7226)] = 254322, + [SMALL_STATE(7227)] = 254414, + [SMALL_STATE(7228)] = 254458, + [SMALL_STATE(7229)] = 254502, + [SMALL_STATE(7230)] = 254546, + [SMALL_STATE(7231)] = 254590, + [SMALL_STATE(7232)] = 254660, + [SMALL_STATE(7233)] = 254704, + [SMALL_STATE(7234)] = 254748, + [SMALL_STATE(7235)] = 254792, + [SMALL_STATE(7236)] = 254836, + [SMALL_STATE(7237)] = 254928, + [SMALL_STATE(7238)] = 255020, + [SMALL_STATE(7239)] = 255112, + [SMALL_STATE(7240)] = 255182, + [SMALL_STATE(7241)] = 255226, + [SMALL_STATE(7242)] = 255270, + [SMALL_STATE(7243)] = 255314, + [SMALL_STATE(7244)] = 255406, + [SMALL_STATE(7245)] = 255498, + [SMALL_STATE(7246)] = 255590, + [SMALL_STATE(7247)] = 255682, + [SMALL_STATE(7248)] = 255762, + [SMALL_STATE(7249)] = 255854, + [SMALL_STATE(7250)] = 255946, + [SMALL_STATE(7251)] = 256038, + [SMALL_STATE(7252)] = 256130, + [SMALL_STATE(7253)] = 256222, + [SMALL_STATE(7254)] = 256314, + [SMALL_STATE(7255)] = 256358, + [SMALL_STATE(7256)] = 256402, + [SMALL_STATE(7257)] = 256494, + [SMALL_STATE(7258)] = 256586, + [SMALL_STATE(7259)] = 256678, + [SMALL_STATE(7260)] = 256722, + [SMALL_STATE(7261)] = 256814, + [SMALL_STATE(7262)] = 256906, + [SMALL_STATE(7263)] = 256998, + [SMALL_STATE(7264)] = 257090, + [SMALL_STATE(7265)] = 257182, + [SMALL_STATE(7266)] = 257274, + [SMALL_STATE(7267)] = 257366, + [SMALL_STATE(7268)] = 257458, + [SMALL_STATE(7269)] = 257502, + [SMALL_STATE(7270)] = 257546, + [SMALL_STATE(7271)] = 257638, + [SMALL_STATE(7272)] = 257730, + [SMALL_STATE(7273)] = 257822, + [SMALL_STATE(7274)] = 257866, + [SMALL_STATE(7275)] = 257914, + [SMALL_STATE(7276)] = 257958, + [SMALL_STATE(7277)] = 258002, + [SMALL_STATE(7278)] = 258046, + [SMALL_STATE(7279)] = 258090, + [SMALL_STATE(7280)] = 258134, + [SMALL_STATE(7281)] = 258186, + [SMALL_STATE(7282)] = 258278, + [SMALL_STATE(7283)] = 258370, + [SMALL_STATE(7284)] = 258462, + [SMALL_STATE(7285)] = 258506, + [SMALL_STATE(7286)] = 258554, + [SMALL_STATE(7287)] = 258598, + [SMALL_STATE(7288)] = 258642, + [SMALL_STATE(7289)] = 258686, + [SMALL_STATE(7290)] = 258730, + [SMALL_STATE(7291)] = 258774, + [SMALL_STATE(7292)] = 258822, + [SMALL_STATE(7293)] = 258866, + [SMALL_STATE(7294)] = 258910, + [SMALL_STATE(7295)] = 259002, + [SMALL_STATE(7296)] = 259094, + [SMALL_STATE(7297)] = 259186, + [SMALL_STATE(7298)] = 259230, + [SMALL_STATE(7299)] = 259274, + [SMALL_STATE(7300)] = 259366, + [SMALL_STATE(7301)] = 259458, + [SMALL_STATE(7302)] = 259550, + [SMALL_STATE(7303)] = 259594, + [SMALL_STATE(7304)] = 259638, + [SMALL_STATE(7305)] = 259682, + [SMALL_STATE(7306)] = 259726, + [SMALL_STATE(7307)] = 259818, + [SMALL_STATE(7308)] = 259910, + [SMALL_STATE(7309)] = 260002, + [SMALL_STATE(7310)] = 260046, + [SMALL_STATE(7311)] = 260090, + [SMALL_STATE(7312)] = 260134, + [SMALL_STATE(7313)] = 260186, + [SMALL_STATE(7314)] = 260278, + [SMALL_STATE(7315)] = 260370, + [SMALL_STATE(7316)] = 260462, + [SMALL_STATE(7317)] = 260506, + [SMALL_STATE(7318)] = 260550, + [SMALL_STATE(7319)] = 260594, + [SMALL_STATE(7320)] = 260652, + [SMALL_STATE(7321)] = 260740, + [SMALL_STATE(7322)] = 260784, + [SMALL_STATE(7323)] = 260828, + [SMALL_STATE(7324)] = 260920, + [SMALL_STATE(7325)] = 261012, + [SMALL_STATE(7326)] = 261104, + [SMALL_STATE(7327)] = 261196, + [SMALL_STATE(7328)] = 261288, + [SMALL_STATE(7329)] = 261380, + [SMALL_STATE(7330)] = 261424, + [SMALL_STATE(7331)] = 261472, + [SMALL_STATE(7332)] = 261530, + [SMALL_STATE(7333)] = 261600, + [SMALL_STATE(7334)] = 261680, + [SMALL_STATE(7335)] = 261724, + [SMALL_STATE(7336)] = 261804, + [SMALL_STATE(7337)] = 261896, + [SMALL_STATE(7338)] = 261988, + [SMALL_STATE(7339)] = 262080, + [SMALL_STATE(7340)] = 262172, + [SMALL_STATE(7341)] = 262264, + [SMALL_STATE(7342)] = 262356, + [SMALL_STATE(7343)] = 262448, [SMALL_STATE(7344)] = 262540, - [SMALL_STATE(7345)] = 262584, - [SMALL_STATE(7346)] = 262628, - [SMALL_STATE(7347)] = 262672, - [SMALL_STATE(7348)] = 262716, - [SMALL_STATE(7349)] = 262776, - [SMALL_STATE(7350)] = 262824, - [SMALL_STATE(7351)] = 262910, - [SMALL_STATE(7352)] = 262954, - [SMALL_STATE(7353)] = 262998, - [SMALL_STATE(7354)] = 263090, - [SMALL_STATE(7355)] = 263182, - [SMALL_STATE(7356)] = 263274, - [SMALL_STATE(7357)] = 263318, - [SMALL_STATE(7358)] = 263404, - [SMALL_STATE(7359)] = 263484, - [SMALL_STATE(7360)] = 263576, - [SMALL_STATE(7361)] = 263620, - [SMALL_STATE(7362)] = 263664, - [SMALL_STATE(7363)] = 263756, - [SMALL_STATE(7364)] = 263848, - [SMALL_STATE(7365)] = 263940, - [SMALL_STATE(7366)] = 263984, - [SMALL_STATE(7367)] = 264076, - [SMALL_STATE(7368)] = 264120, - [SMALL_STATE(7369)] = 264164, - [SMALL_STATE(7370)] = 264208, - [SMALL_STATE(7371)] = 264300, - [SMALL_STATE(7372)] = 264392, - [SMALL_STATE(7373)] = 264436, - [SMALL_STATE(7374)] = 264480, - [SMALL_STATE(7375)] = 264572, - [SMALL_STATE(7376)] = 264664, - [SMALL_STATE(7377)] = 264744, - [SMALL_STATE(7378)] = 264836, - [SMALL_STATE(7379)] = 264928, - [SMALL_STATE(7380)] = 264972, - [SMALL_STATE(7381)] = 265016, - [SMALL_STATE(7382)] = 265108, - [SMALL_STATE(7383)] = 265200, - [SMALL_STATE(7384)] = 265292, - [SMALL_STATE(7385)] = 265384, - [SMALL_STATE(7386)] = 265476, - [SMALL_STATE(7387)] = 265568, - [SMALL_STATE(7388)] = 265612, - [SMALL_STATE(7389)] = 265682, - [SMALL_STATE(7390)] = 265726, - [SMALL_STATE(7391)] = 265770, - [SMALL_STATE(7392)] = 265814, - [SMALL_STATE(7393)] = 265906, - [SMALL_STATE(7394)] = 265998, - [SMALL_STATE(7395)] = 266090, - [SMALL_STATE(7396)] = 266134, - [SMALL_STATE(7397)] = 266178, - [SMALL_STATE(7398)] = 266222, - [SMALL_STATE(7399)] = 266314, - [SMALL_STATE(7400)] = 266403, - [SMALL_STATE(7401)] = 266490, - [SMALL_STATE(7402)] = 266577, - [SMALL_STATE(7403)] = 266664, - [SMALL_STATE(7404)] = 266751, - [SMALL_STATE(7405)] = 266838, - [SMALL_STATE(7406)] = 266925, - [SMALL_STATE(7407)] = 267014, - [SMALL_STATE(7408)] = 267101, - [SMALL_STATE(7409)] = 267188, - [SMALL_STATE(7410)] = 267277, - [SMALL_STATE(7411)] = 267366, - [SMALL_STATE(7412)] = 267453, - [SMALL_STATE(7413)] = 267542, - [SMALL_STATE(7414)] = 267629, - [SMALL_STATE(7415)] = 267718, - [SMALL_STATE(7416)] = 267805, - [SMALL_STATE(7417)] = 267854, - [SMALL_STATE(7418)] = 267941, - [SMALL_STATE(7419)] = 268030, - [SMALL_STATE(7420)] = 268075, - [SMALL_STATE(7421)] = 268164, - [SMALL_STATE(7422)] = 268251, - [SMALL_STATE(7423)] = 268338, - [SMALL_STATE(7424)] = 268427, - [SMALL_STATE(7425)] = 268516, - [SMALL_STATE(7426)] = 268603, - [SMALL_STATE(7427)] = 268690, - [SMALL_STATE(7428)] = 268779, - [SMALL_STATE(7429)] = 268848, - [SMALL_STATE(7430)] = 268917, - [SMALL_STATE(7431)] = 269004, - [SMALL_STATE(7432)] = 269091, - [SMALL_STATE(7433)] = 269178, - [SMALL_STATE(7434)] = 269247, - [SMALL_STATE(7435)] = 269316, - [SMALL_STATE(7436)] = 269405, - [SMALL_STATE(7437)] = 269492, - [SMALL_STATE(7438)] = 269579, - [SMALL_STATE(7439)] = 269666, - [SMALL_STATE(7440)] = 269753, - [SMALL_STATE(7441)] = 269802, - [SMALL_STATE(7442)] = 269847, - [SMALL_STATE(7443)] = 269892, - [SMALL_STATE(7444)] = 269979, - [SMALL_STATE(7445)] = 270066, - [SMALL_STATE(7446)] = 270155, - [SMALL_STATE(7447)] = 270242, - [SMALL_STATE(7448)] = 270329, - [SMALL_STATE(7449)] = 270418, - [SMALL_STATE(7450)] = 270507, - [SMALL_STATE(7451)] = 270596, - [SMALL_STATE(7452)] = 270683, - [SMALL_STATE(7453)] = 270768, - [SMALL_STATE(7454)] = 270837, - [SMALL_STATE(7455)] = 270926, - [SMALL_STATE(7456)] = 271015, - [SMALL_STATE(7457)] = 271102, - [SMALL_STATE(7458)] = 271189, - [SMALL_STATE(7459)] = 271278, - [SMALL_STATE(7460)] = 271347, - [SMALL_STATE(7461)] = 271396, - [SMALL_STATE(7462)] = 271485, - [SMALL_STATE(7463)] = 271574, - [SMALL_STATE(7464)] = 271663, - [SMALL_STATE(7465)] = 271750, - [SMALL_STATE(7466)] = 271837, - [SMALL_STATE(7467)] = 271926, - [SMALL_STATE(7468)] = 271995, - [SMALL_STATE(7469)] = 272082, - [SMALL_STATE(7470)] = 272167, - [SMALL_STATE(7471)] = 272254, - [SMALL_STATE(7472)] = 272339, - [SMALL_STATE(7473)] = 272428, - [SMALL_STATE(7474)] = 272515, - [SMALL_STATE(7475)] = 272602, - [SMALL_STATE(7476)] = 272691, - [SMALL_STATE(7477)] = 272778, - [SMALL_STATE(7478)] = 272865, - [SMALL_STATE(7479)] = 272954, - [SMALL_STATE(7480)] = 273041, - [SMALL_STATE(7481)] = 273130, - [SMALL_STATE(7482)] = 273179, - [SMALL_STATE(7483)] = 273268, - [SMALL_STATE(7484)] = 273355, - [SMALL_STATE(7485)] = 273442, - [SMALL_STATE(7486)] = 273531, - [SMALL_STATE(7487)] = 273618, - [SMALL_STATE(7488)] = 273705, - [SMALL_STATE(7489)] = 273792, - [SMALL_STATE(7490)] = 273879, - [SMALL_STATE(7491)] = 273966, - [SMALL_STATE(7492)] = 274055, - [SMALL_STATE(7493)] = 274144, - [SMALL_STATE(7494)] = 274233, - [SMALL_STATE(7495)] = 274322, - [SMALL_STATE(7496)] = 274409, - [SMALL_STATE(7497)] = 274496, - [SMALL_STATE(7498)] = 274565, - [SMALL_STATE(7499)] = 274652, - [SMALL_STATE(7500)] = 274739, - [SMALL_STATE(7501)] = 274826, - [SMALL_STATE(7502)] = 274913, - [SMALL_STATE(7503)] = 275000, - [SMALL_STATE(7504)] = 275089, - [SMALL_STATE(7505)] = 275178, - [SMALL_STATE(7506)] = 275263, - [SMALL_STATE(7507)] = 275341, - [SMALL_STATE(7508)] = 275419, - [SMALL_STATE(7509)] = 275487, - [SMALL_STATE(7510)] = 275565, - [SMALL_STATE(7511)] = 275643, - [SMALL_STATE(7512)] = 275685, - [SMALL_STATE(7513)] = 275763, - [SMALL_STATE(7514)] = 275805, - [SMALL_STATE(7515)] = 275883, - [SMALL_STATE(7516)] = 275961, - [SMALL_STATE(7517)] = 276039, - [SMALL_STATE(7518)] = 276107, - [SMALL_STATE(7519)] = 276175, - [SMALL_STATE(7520)] = 276253, - [SMALL_STATE(7521)] = 276331, - [SMALL_STATE(7522)] = 276409, - [SMALL_STATE(7523)] = 276487, - [SMALL_STATE(7524)] = 276565, - [SMALL_STATE(7525)] = 276643, - [SMALL_STATE(7526)] = 276721, - [SMALL_STATE(7527)] = 276799, - [SMALL_STATE(7528)] = 276877, - [SMALL_STATE(7529)] = 276955, - [SMALL_STATE(7530)] = 277033, - [SMALL_STATE(7531)] = 277111, - [SMALL_STATE(7532)] = 277189, - [SMALL_STATE(7533)] = 277241, - [SMALL_STATE(7534)] = 277325, - [SMALL_STATE(7535)] = 277377, - [SMALL_STATE(7536)] = 277419, - [SMALL_STATE(7537)] = 277503, - [SMALL_STATE(7538)] = 277571, - [SMALL_STATE(7539)] = 277639, - [SMALL_STATE(7540)] = 277717, - [SMALL_STATE(7541)] = 277759, - [SMALL_STATE(7542)] = 277837, - [SMALL_STATE(7543)] = 277915, - [SMALL_STATE(7544)] = 277993, - [SMALL_STATE(7545)] = 278071, - [SMALL_STATE(7546)] = 278149, - [SMALL_STATE(7547)] = 278227, - [SMALL_STATE(7548)] = 278305, - [SMALL_STATE(7549)] = 278383, - [SMALL_STATE(7550)] = 278461, - [SMALL_STATE(7551)] = 278539, - [SMALL_STATE(7552)] = 278617, - [SMALL_STATE(7553)] = 278695, - [SMALL_STATE(7554)] = 278773, - [SMALL_STATE(7555)] = 278851, - [SMALL_STATE(7556)] = 278929, - [SMALL_STATE(7557)] = 279007, - [SMALL_STATE(7558)] = 279085, - [SMALL_STATE(7559)] = 279153, - [SMALL_STATE(7560)] = 279231, - [SMALL_STATE(7561)] = 279309, - [SMALL_STATE(7562)] = 279387, - [SMALL_STATE(7563)] = 279465, - [SMALL_STATE(7564)] = 279543, - [SMALL_STATE(7565)] = 279621, - [SMALL_STATE(7566)] = 279699, - [SMALL_STATE(7567)] = 279777, - [SMALL_STATE(7568)] = 279855, - [SMALL_STATE(7569)] = 279922, - [SMALL_STATE(7570)] = 279999, - [SMALL_STATE(7571)] = 280046, - [SMALL_STATE(7572)] = 280093, - [SMALL_STATE(7573)] = 280140, - [SMALL_STATE(7574)] = 280223, - [SMALL_STATE(7575)] = 280270, - [SMALL_STATE(7576)] = 280317, - [SMALL_STATE(7577)] = 280364, - [SMALL_STATE(7578)] = 280405, - [SMALL_STATE(7579)] = 280482, - [SMALL_STATE(7580)] = 280549, - [SMALL_STATE(7581)] = 280596, - [SMALL_STATE(7582)] = 280643, - [SMALL_STATE(7583)] = 280698, - [SMALL_STATE(7584)] = 280775, - [SMALL_STATE(7585)] = 280822, - [SMALL_STATE(7586)] = 280889, - [SMALL_STATE(7587)] = 280944, - [SMALL_STATE(7588)] = 281027, - [SMALL_STATE(7589)] = 281110, - [SMALL_STATE(7590)] = 281157, - [SMALL_STATE(7591)] = 281210, - [SMALL_STATE(7592)] = 281265, - [SMALL_STATE(7593)] = 281308, - [SMALL_STATE(7594)] = 281375, - [SMALL_STATE(7595)] = 281422, - [SMALL_STATE(7596)] = 281469, - [SMALL_STATE(7597)] = 281552, - [SMALL_STATE(7598)] = 281609, - [SMALL_STATE(7599)] = 281676, - [SMALL_STATE(7600)] = 281723, - [SMALL_STATE(7601)] = 281790, - [SMALL_STATE(7602)] = 281845, - [SMALL_STATE(7603)] = 281902, - [SMALL_STATE(7604)] = 281951, - [SMALL_STATE(7605)] = 282028, - [SMALL_STATE(7606)] = 282081, - [SMALL_STATE(7607)] = 282138, - [SMALL_STATE(7608)] = 282178, - [SMALL_STATE(7609)] = 282218, - [SMALL_STATE(7610)] = 282258, - [SMALL_STATE(7611)] = 282298, - [SMALL_STATE(7612)] = 282338, - [SMALL_STATE(7613)] = 282378, - [SMALL_STATE(7614)] = 282418, - [SMALL_STATE(7615)] = 282458, - [SMALL_STATE(7616)] = 282534, - [SMALL_STATE(7617)] = 282610, - [SMALL_STATE(7618)] = 282650, - [SMALL_STATE(7619)] = 282690, - [SMALL_STATE(7620)] = 282730, - [SMALL_STATE(7621)] = 282770, - [SMALL_STATE(7622)] = 282810, - [SMALL_STATE(7623)] = 282850, - [SMALL_STATE(7624)] = 282890, - [SMALL_STATE(7625)] = 282930, - [SMALL_STATE(7626)] = 282970, - [SMALL_STATE(7627)] = 283010, - [SMALL_STATE(7628)] = 283050, - [SMALL_STATE(7629)] = 283090, - [SMALL_STATE(7630)] = 283130, - [SMALL_STATE(7631)] = 283170, - [SMALL_STATE(7632)] = 283210, - [SMALL_STATE(7633)] = 283250, - [SMALL_STATE(7634)] = 283290, - [SMALL_STATE(7635)] = 283330, - [SMALL_STATE(7636)] = 283370, - [SMALL_STATE(7637)] = 283410, - [SMALL_STATE(7638)] = 283450, - [SMALL_STATE(7639)] = 283490, - [SMALL_STATE(7640)] = 283530, - [SMALL_STATE(7641)] = 283570, - [SMALL_STATE(7642)] = 283610, - [SMALL_STATE(7643)] = 283686, - [SMALL_STATE(7644)] = 283762, - [SMALL_STATE(7645)] = 283838, - [SMALL_STATE(7646)] = 283878, - [SMALL_STATE(7647)] = 283918, - [SMALL_STATE(7648)] = 283958, - [SMALL_STATE(7649)] = 283998, - [SMALL_STATE(7650)] = 284080, - [SMALL_STATE(7651)] = 284120, - [SMALL_STATE(7652)] = 284160, - [SMALL_STATE(7653)] = 284236, - [SMALL_STATE(7654)] = 284312, - [SMALL_STATE(7655)] = 284388, - [SMALL_STATE(7656)] = 284428, - [SMALL_STATE(7657)] = 284497, - [SMALL_STATE(7658)] = 284566, - [SMALL_STATE(7659)] = 284641, - [SMALL_STATE(7660)] = 284688, - [SMALL_STATE(7661)] = 284735, - [SMALL_STATE(7662)] = 284804, - [SMALL_STATE(7663)] = 284879, - [SMALL_STATE(7664)] = 284954, - [SMALL_STATE(7665)] = 285023, - [SMALL_STATE(7666)] = 285092, - [SMALL_STATE(7667)] = 285167, - [SMALL_STATE(7668)] = 285236, - [SMALL_STATE(7669)] = 285278, - [SMALL_STATE(7670)] = 285332, - [SMALL_STATE(7671)] = 285404, - [SMALL_STATE(7672)] = 285446, - [SMALL_STATE(7673)] = 285520, - [SMALL_STATE(7674)] = 285594, - [SMALL_STATE(7675)] = 285666, - [SMALL_STATE(7676)] = 285740, - [SMALL_STATE(7677)] = 285782, - [SMALL_STATE(7678)] = 285856, - [SMALL_STATE(7679)] = 285928, - [SMALL_STATE(7680)] = 286000, - [SMALL_STATE(7681)] = 286074, - [SMALL_STATE(7682)] = 286148, - [SMALL_STATE(7683)] = 286190, - [SMALL_STATE(7684)] = 286262, - [SMALL_STATE(7685)] = 286334, - [SMALL_STATE(7686)] = 286406, - [SMALL_STATE(7687)] = 286448, - [SMALL_STATE(7688)] = 286490, - [SMALL_STATE(7689)] = 286564, - [SMALL_STATE(7690)] = 286606, - [SMALL_STATE(7691)] = 286648, - [SMALL_STATE(7692)] = 286690, - [SMALL_STATE(7693)] = 286730, - [SMALL_STATE(7694)] = 286776, - [SMALL_STATE(7695)] = 286818, - [SMALL_STATE(7696)] = 286890, - [SMALL_STATE(7697)] = 286962, - [SMALL_STATE(7698)] = 287004, - [SMALL_STATE(7699)] = 287078, - [SMALL_STATE(7700)] = 287120, - [SMALL_STATE(7701)] = 287174, - [SMALL_STATE(7702)] = 287247, - [SMALL_STATE(7703)] = 287314, - [SMALL_STATE(7704)] = 287381, - [SMALL_STATE(7705)] = 287448, - [SMALL_STATE(7706)] = 287515, - [SMALL_STATE(7707)] = 287582, - [SMALL_STATE(7708)] = 287627, - [SMALL_STATE(7709)] = 287668, - [SMALL_STATE(7710)] = 287709, - [SMALL_STATE(7711)] = 287750, - [SMALL_STATE(7712)] = 287791, - [SMALL_STATE(7713)] = 287832, - [SMALL_STATE(7714)] = 287873, - [SMALL_STATE(7715)] = 287914, - [SMALL_STATE(7716)] = 287959, - [SMALL_STATE(7717)] = 288002, - [SMALL_STATE(7718)] = 288043, - [SMALL_STATE(7719)] = 288084, - [SMALL_STATE(7720)] = 288125, - [SMALL_STATE(7721)] = 288166, - [SMALL_STATE(7722)] = 288239, - [SMALL_STATE(7723)] = 288284, - [SMALL_STATE(7724)] = 288351, - [SMALL_STATE(7725)] = 288418, - [SMALL_STATE(7726)] = 288463, - [SMALL_STATE(7727)] = 288530, - [SMALL_STATE(7728)] = 288597, - [SMALL_STATE(7729)] = 288664, - [SMALL_STATE(7730)] = 288731, - [SMALL_STATE(7731)] = 288780, - [SMALL_STATE(7732)] = 288847, - [SMALL_STATE(7733)] = 288888, - [SMALL_STATE(7734)] = 288954, - [SMALL_STATE(7735)] = 289020, - [SMALL_STATE(7736)] = 289086, - [SMALL_STATE(7737)] = 289152, - [SMALL_STATE(7738)] = 289218, - [SMALL_STATE(7739)] = 289284, - [SMALL_STATE(7740)] = 289337, - [SMALL_STATE(7741)] = 289400, - [SMALL_STATE(7742)] = 289463, - [SMALL_STATE(7743)] = 289526, - [SMALL_STATE(7744)] = 289591, - [SMALL_STATE(7745)] = 289630, - [SMALL_STATE(7746)] = 289693, - [SMALL_STATE(7747)] = 289756, - [SMALL_STATE(7748)] = 289819, - [SMALL_STATE(7749)] = 289882, - [SMALL_STATE(7750)] = 289945, - [SMALL_STATE(7751)] = 290008, - [SMALL_STATE(7752)] = 290071, - [SMALL_STATE(7753)] = 290134, - [SMALL_STATE(7754)] = 290197, - [SMALL_STATE(7755)] = 290262, - [SMALL_STATE(7756)] = 290325, - [SMALL_STATE(7757)] = 290388, - [SMALL_STATE(7758)] = 290451, - [SMALL_STATE(7759)] = 290516, - [SMALL_STATE(7760)] = 290581, - [SMALL_STATE(7761)] = 290644, - [SMALL_STATE(7762)] = 290707, - [SMALL_STATE(7763)] = 290770, - [SMALL_STATE(7764)] = 290833, - [SMALL_STATE(7765)] = 290896, - [SMALL_STATE(7766)] = 290961, - [SMALL_STATE(7767)] = 291024, - [SMALL_STATE(7768)] = 291089, - [SMALL_STATE(7769)] = 291152, - [SMALL_STATE(7770)] = 291215, - [SMALL_STATE(7771)] = 291280, - [SMALL_STATE(7772)] = 291343, - [SMALL_STATE(7773)] = 291406, - [SMALL_STATE(7774)] = 291469, - [SMALL_STATE(7775)] = 291532, - [SMALL_STATE(7776)] = 291595, - [SMALL_STATE(7777)] = 291660, - [SMALL_STATE(7778)] = 291741, - [SMALL_STATE(7779)] = 291804, - [SMALL_STATE(7780)] = 291885, - [SMALL_STATE(7781)] = 291948, - [SMALL_STATE(7782)] = 292011, - [SMALL_STATE(7783)] = 292074, - [SMALL_STATE(7784)] = 292137, - [SMALL_STATE(7785)] = 292218, - [SMALL_STATE(7786)] = 292281, - [SMALL_STATE(7787)] = 292344, - [SMALL_STATE(7788)] = 292407, - [SMALL_STATE(7789)] = 292470, - [SMALL_STATE(7790)] = 292511, - [SMALL_STATE(7791)] = 292574, - [SMALL_STATE(7792)] = 292637, - [SMALL_STATE(7793)] = 292700, - [SMALL_STATE(7794)] = 292765, - [SMALL_STATE(7795)] = 292830, - [SMALL_STATE(7796)] = 292893, - [SMALL_STATE(7797)] = 292956, - [SMALL_STATE(7798)] = 293019, - [SMALL_STATE(7799)] = 293082, - [SMALL_STATE(7800)] = 293147, - [SMALL_STATE(7801)] = 293212, - [SMALL_STATE(7802)] = 293275, - [SMALL_STATE(7803)] = 293338, - [SMALL_STATE(7804)] = 293401, - [SMALL_STATE(7805)] = 293464, - [SMALL_STATE(7806)] = 293534, - [SMALL_STATE(7807)] = 293604, - [SMALL_STATE(7808)] = 293674, - [SMALL_STATE(7809)] = 293744, - [SMALL_STATE(7810)] = 293814, - [SMALL_STATE(7811)] = 293884, - [SMALL_STATE(7812)] = 293954, - [SMALL_STATE(7813)] = 294024, - [SMALL_STATE(7814)] = 294094, - [SMALL_STATE(7815)] = 294164, - [SMALL_STATE(7816)] = 294234, - [SMALL_STATE(7817)] = 294304, - [SMALL_STATE(7818)] = 294374, - [SMALL_STATE(7819)] = 294444, - [SMALL_STATE(7820)] = 294514, - [SMALL_STATE(7821)] = 294584, - [SMALL_STATE(7822)] = 294642, - [SMALL_STATE(7823)] = 294712, - [SMALL_STATE(7824)] = 294782, - [SMALL_STATE(7825)] = 294852, - [SMALL_STATE(7826)] = 294922, - [SMALL_STATE(7827)] = 294992, - [SMALL_STATE(7828)] = 295062, - [SMALL_STATE(7829)] = 295132, - [SMALL_STATE(7830)] = 295202, - [SMALL_STATE(7831)] = 295272, - [SMALL_STATE(7832)] = 295342, - [SMALL_STATE(7833)] = 295394, - [SMALL_STATE(7834)] = 295458, - [SMALL_STATE(7835)] = 295528, - [SMALL_STATE(7836)] = 295598, - [SMALL_STATE(7837)] = 295668, - [SMALL_STATE(7838)] = 295738, - [SMALL_STATE(7839)] = 295808, - [SMALL_STATE(7840)] = 295878, - [SMALL_STATE(7841)] = 295942, - [SMALL_STATE(7842)] = 296012, - [SMALL_STATE(7843)] = 296076, - [SMALL_STATE(7844)] = 296146, - [SMALL_STATE(7845)] = 296216, - [SMALL_STATE(7846)] = 296286, - [SMALL_STATE(7847)] = 296356, - [SMALL_STATE(7848)] = 296420, - [SMALL_STATE(7849)] = 296484, - [SMALL_STATE(7850)] = 296548, - [SMALL_STATE(7851)] = 296618, - [SMALL_STATE(7852)] = 296688, - [SMALL_STATE(7853)] = 296758, - [SMALL_STATE(7854)] = 296828, - [SMALL_STATE(7855)] = 296898, - [SMALL_STATE(7856)] = 296968, - [SMALL_STATE(7857)] = 297038, - [SMALL_STATE(7858)] = 297108, - [SMALL_STATE(7859)] = 297166, - [SMALL_STATE(7860)] = 297236, - [SMALL_STATE(7861)] = 297306, - [SMALL_STATE(7862)] = 297376, - [SMALL_STATE(7863)] = 297446, - [SMALL_STATE(7864)] = 297504, - [SMALL_STATE(7865)] = 297562, - [SMALL_STATE(7866)] = 297632, - [SMALL_STATE(7867)] = 297690, - [SMALL_STATE(7868)] = 297760, - [SMALL_STATE(7869)] = 297830, - [SMALL_STATE(7870)] = 297900, - [SMALL_STATE(7871)] = 297970, - [SMALL_STATE(7872)] = 298040, - [SMALL_STATE(7873)] = 298110, - [SMALL_STATE(7874)] = 298180, - [SMALL_STATE(7875)] = 298250, - [SMALL_STATE(7876)] = 298320, - [SMALL_STATE(7877)] = 298390, - [SMALL_STATE(7878)] = 298460, - [SMALL_STATE(7879)] = 298530, - [SMALL_STATE(7880)] = 298600, - [SMALL_STATE(7881)] = 298670, - [SMALL_STATE(7882)] = 298740, - [SMALL_STATE(7883)] = 298810, - [SMALL_STATE(7884)] = 298880, - [SMALL_STATE(7885)] = 298950, - [SMALL_STATE(7886)] = 299020, - [SMALL_STATE(7887)] = 299090, - [SMALL_STATE(7888)] = 299160, - [SMALL_STATE(7889)] = 299230, - [SMALL_STATE(7890)] = 299300, - [SMALL_STATE(7891)] = 299370, - [SMALL_STATE(7892)] = 299440, - [SMALL_STATE(7893)] = 299510, - [SMALL_STATE(7894)] = 299580, - [SMALL_STATE(7895)] = 299650, - [SMALL_STATE(7896)] = 299720, - [SMALL_STATE(7897)] = 299790, - [SMALL_STATE(7898)] = 299860, - [SMALL_STATE(7899)] = 299930, - [SMALL_STATE(7900)] = 300000, - [SMALL_STATE(7901)] = 300070, - [SMALL_STATE(7902)] = 300144, - [SMALL_STATE(7903)] = 300214, - [SMALL_STATE(7904)] = 300284, - [SMALL_STATE(7905)] = 300354, - [SMALL_STATE(7906)] = 300424, - [SMALL_STATE(7907)] = 300494, - [SMALL_STATE(7908)] = 300564, - [SMALL_STATE(7909)] = 300627, - [SMALL_STATE(7910)] = 300702, - [SMALL_STATE(7911)] = 300765, - [SMALL_STATE(7912)] = 300828, - [SMALL_STATE(7913)] = 300903, - [SMALL_STATE(7914)] = 300966, - [SMALL_STATE(7915)] = 301029, - [SMALL_STATE(7916)] = 301092, - [SMALL_STATE(7917)] = 301155, - [SMALL_STATE(7918)] = 301218, - [SMALL_STATE(7919)] = 301293, - [SMALL_STATE(7920)] = 301368, - [SMALL_STATE(7921)] = 301443, - [SMALL_STATE(7922)] = 301518, - [SMALL_STATE(7923)] = 301581, - [SMALL_STATE(7924)] = 301624, - [SMALL_STATE(7925)] = 301699, - [SMALL_STATE(7926)] = 301774, - [SMALL_STATE(7927)] = 301849, - [SMALL_STATE(7928)] = 301912, - [SMALL_STATE(7929)] = 301987, - [SMALL_STATE(7930)] = 302050, - [SMALL_STATE(7931)] = 302125, - [SMALL_STATE(7932)] = 302200, - [SMALL_STATE(7933)] = 302263, - [SMALL_STATE(7934)] = 302326, - [SMALL_STATE(7935)] = 302401, - [SMALL_STATE(7936)] = 302444, - [SMALL_STATE(7937)] = 302507, - [SMALL_STATE(7938)] = 302582, - [SMALL_STATE(7939)] = 302645, - [SMALL_STATE(7940)] = 302688, - [SMALL_STATE(7941)] = 302751, - [SMALL_STATE(7942)] = 302814, - [SMALL_STATE(7943)] = 302889, - [SMALL_STATE(7944)] = 302964, - [SMALL_STATE(7945)] = 303027, - [SMALL_STATE(7946)] = 303090, - [SMALL_STATE(7947)] = 303153, - [SMALL_STATE(7948)] = 303228, - [SMALL_STATE(7949)] = 303291, - [SMALL_STATE(7950)] = 303366, - [SMALL_STATE(7951)] = 303409, - [SMALL_STATE(7952)] = 303472, - [SMALL_STATE(7953)] = 303535, - [SMALL_STATE(7954)] = 303598, - [SMALL_STATE(7955)] = 303673, - [SMALL_STATE(7956)] = 303710, - [SMALL_STATE(7957)] = 303785, - [SMALL_STATE(7958)] = 303848, - [SMALL_STATE(7959)] = 303911, - [SMALL_STATE(7960)] = 303974, - [SMALL_STATE(7961)] = 304037, - [SMALL_STATE(7962)] = 304100, - [SMALL_STATE(7963)] = 304163, - [SMALL_STATE(7964)] = 304238, - [SMALL_STATE(7965)] = 304301, - [SMALL_STATE(7966)] = 304376, - [SMALL_STATE(7967)] = 304451, - [SMALL_STATE(7968)] = 304514, - [SMALL_STATE(7969)] = 304577, - [SMALL_STATE(7970)] = 304640, - [SMALL_STATE(7971)] = 304703, - [SMALL_STATE(7972)] = 304778, - [SMALL_STATE(7973)] = 304853, - [SMALL_STATE(7974)] = 304916, - [SMALL_STATE(7975)] = 304979, - [SMALL_STATE(7976)] = 305054, - [SMALL_STATE(7977)] = 305129, - [SMALL_STATE(7978)] = 305192, - [SMALL_STATE(7979)] = 305255, - [SMALL_STATE(7980)] = 305318, - [SMALL_STATE(7981)] = 305381, - [SMALL_STATE(7982)] = 305444, - [SMALL_STATE(7983)] = 305507, - [SMALL_STATE(7984)] = 305570, - [SMALL_STATE(7985)] = 305633, - [SMALL_STATE(7986)] = 305696, - [SMALL_STATE(7987)] = 305764, - [SMALL_STATE(7988)] = 305800, - [SMALL_STATE(7989)] = 305874, - [SMALL_STATE(7990)] = 305936, - [SMALL_STATE(7991)] = 306004, - [SMALL_STATE(7992)] = 306066, - [SMALL_STATE(7993)] = 306120, - [SMALL_STATE(7994)] = 306188, - [SMALL_STATE(7995)] = 306250, - [SMALL_STATE(7996)] = 306324, - [SMALL_STATE(7997)] = 306392, - [SMALL_STATE(7998)] = 306466, - [SMALL_STATE(7999)] = 306534, - [SMALL_STATE(8000)] = 306573, - [SMALL_STATE(8001)] = 306604, - [SMALL_STATE(8002)] = 306663, - [SMALL_STATE(8003)] = 306722, - [SMALL_STATE(8004)] = 306753, - [SMALL_STATE(8005)] = 306800, - [SMALL_STATE(8006)] = 306835, - [SMALL_STATE(8007)] = 306866, - [SMALL_STATE(8008)] = 306925, - [SMALL_STATE(8009)] = 306984, - [SMALL_STATE(8010)] = 307043, - [SMALL_STATE(8011)] = 307102, - [SMALL_STATE(8012)] = 307161, - [SMALL_STATE(8013)] = 307220, - [SMALL_STATE(8014)] = 307259, - [SMALL_STATE(8015)] = 307318, - [SMALL_STATE(8016)] = 307349, - [SMALL_STATE(8017)] = 307380, - [SMALL_STATE(8018)] = 307411, - [SMALL_STATE(8019)] = 307442, - [SMALL_STATE(8020)] = 307501, - [SMALL_STATE(8021)] = 307536, - [SMALL_STATE(8022)] = 307595, - [SMALL_STATE(8023)] = 307626, - [SMALL_STATE(8024)] = 307657, - [SMALL_STATE(8025)] = 307716, - [SMALL_STATE(8026)] = 307747, - [SMALL_STATE(8027)] = 307778, - [SMALL_STATE(8028)] = 307837, - [SMALL_STATE(8029)] = 307896, - [SMALL_STATE(8030)] = 307955, - [SMALL_STATE(8031)] = 308014, - [SMALL_STATE(8032)] = 308045, - [SMALL_STATE(8033)] = 308084, - [SMALL_STATE(8034)] = 308115, - [SMALL_STATE(8035)] = 308148, - [SMALL_STATE(8036)] = 308187, - [SMALL_STATE(8037)] = 308218, - [SMALL_STATE(8038)] = 308249, - [SMALL_STATE(8039)] = 308288, - [SMALL_STATE(8040)] = 308347, - [SMALL_STATE(8041)] = 308378, - [SMALL_STATE(8042)] = 308437, - [SMALL_STATE(8043)] = 308496, - [SMALL_STATE(8044)] = 308531, - [SMALL_STATE(8045)] = 308590, - [SMALL_STATE(8046)] = 308649, - [SMALL_STATE(8047)] = 308688, - [SMALL_STATE(8048)] = 308747, - [SMALL_STATE(8049)] = 308806, - [SMALL_STATE(8050)] = 308837, - [SMALL_STATE(8051)] = 308876, - [SMALL_STATE(8052)] = 308915, - [SMALL_STATE(8053)] = 308974, - [SMALL_STATE(8054)] = 309033, - [SMALL_STATE(8055)] = 309072, - [SMALL_STATE(8056)] = 309131, - [SMALL_STATE(8057)] = 309166, - [SMALL_STATE(8058)] = 309205, - [SMALL_STATE(8059)] = 309236, - [SMALL_STATE(8060)] = 309267, - [SMALL_STATE(8061)] = 309326, - [SMALL_STATE(8062)] = 309357, - [SMALL_STATE(8063)] = 309416, - [SMALL_STATE(8064)] = 309458, - [SMALL_STATE(8065)] = 309512, - [SMALL_STATE(8066)] = 309566, - [SMALL_STATE(8067)] = 309608, - [SMALL_STATE(8068)] = 309650, - [SMALL_STATE(8069)] = 309692, - [SMALL_STATE(8070)] = 309734, - [SMALL_STATE(8071)] = 309776, - [SMALL_STATE(8072)] = 309824, - [SMALL_STATE(8073)] = 309854, - [SMALL_STATE(8074)] = 309896, - [SMALL_STATE(8075)] = 309930, - [SMALL_STATE(8076)] = 309972, - [SMALL_STATE(8077)] = 310023, - [SMALL_STATE(8078)] = 310076, - [SMALL_STATE(8079)] = 310131, - [SMALL_STATE(8080)] = 310184, - [SMALL_STATE(8081)] = 310225, - [SMALL_STATE(8082)] = 310266, - [SMALL_STATE(8083)] = 310327, - [SMALL_STATE(8084)] = 310378, - [SMALL_STATE(8085)] = 310429, - [SMALL_STATE(8086)] = 310480, - [SMALL_STATE(8087)] = 310531, - [SMALL_STATE(8088)] = 310572, - [SMALL_STATE(8089)] = 310623, - [SMALL_STATE(8090)] = 310674, - [SMALL_STATE(8091)] = 310727, - [SMALL_STATE(8092)] = 310780, - [SMALL_STATE(8093)] = 310833, - [SMALL_STATE(8094)] = 310886, - [SMALL_STATE(8095)] = 310937, - [SMALL_STATE(8096)] = 310988, - [SMALL_STATE(8097)] = 311049, - [SMALL_STATE(8098)] = 311078, - [SMALL_STATE(8099)] = 311129, - [SMALL_STATE(8100)] = 311182, - [SMALL_STATE(8101)] = 311243, - [SMALL_STATE(8102)] = 311296, - [SMALL_STATE(8103)] = 311325, - [SMALL_STATE(8104)] = 311376, - [SMALL_STATE(8105)] = 311409, - [SMALL_STATE(8106)] = 311460, - [SMALL_STATE(8107)] = 311511, - [SMALL_STATE(8108)] = 311554, - [SMALL_STATE(8109)] = 311615, - [SMALL_STATE(8110)] = 311666, - [SMALL_STATE(8111)] = 311717, - [SMALL_STATE(8112)] = 311768, - [SMALL_STATE(8113)] = 311797, - [SMALL_STATE(8114)] = 311848, - [SMALL_STATE(8115)] = 311881, - [SMALL_STATE(8116)] = 311934, - [SMALL_STATE(8117)] = 311963, - [SMALL_STATE(8118)] = 312016, - [SMALL_STATE(8119)] = 312059, - [SMALL_STATE(8120)] = 312110, - [SMALL_STATE(8121)] = 312161, - [SMALL_STATE(8122)] = 312222, - [SMALL_STATE(8123)] = 312277, - [SMALL_STATE(8124)] = 312328, - [SMALL_STATE(8125)] = 312369, - [SMALL_STATE(8126)] = 312410, - [SMALL_STATE(8127)] = 312451, - [SMALL_STATE(8128)] = 312492, - [SMALL_STATE(8129)] = 312553, - [SMALL_STATE(8130)] = 312606, - [SMALL_STATE(8131)] = 312657, - [SMALL_STATE(8132)] = 312712, - [SMALL_STATE(8133)] = 312753, - [SMALL_STATE(8134)] = 312784, - [SMALL_STATE(8135)] = 312837, - [SMALL_STATE(8136)] = 312888, - [SMALL_STATE(8137)] = 312921, - [SMALL_STATE(8138)] = 312964, - [SMALL_STATE(8139)] = 312993, - [SMALL_STATE(8140)] = 313044, - [SMALL_STATE(8141)] = 313097, - [SMALL_STATE(8142)] = 313148, - [SMALL_STATE(8143)] = 313199, - [SMALL_STATE(8144)] = 313250, - [SMALL_STATE(8145)] = 313301, - [SMALL_STATE(8146)] = 313356, - [SMALL_STATE(8147)] = 313417, - [SMALL_STATE(8148)] = 313470, - [SMALL_STATE(8149)] = 313523, - [SMALL_STATE(8150)] = 313568, - [SMALL_STATE(8151)] = 313619, - [SMALL_STATE(8152)] = 313659, - [SMALL_STATE(8153)] = 313699, - [SMALL_STATE(8154)] = 313739, - [SMALL_STATE(8155)] = 313789, - [SMALL_STATE(8156)] = 313817, - [SMALL_STATE(8157)] = 313857, - [SMALL_STATE(8158)] = 313907, - [SMALL_STATE(8159)] = 313947, - [SMALL_STATE(8160)] = 313983, - [SMALL_STATE(8161)] = 314023, - [SMALL_STATE(8162)] = 314063, - [SMALL_STATE(8163)] = 314113, - [SMALL_STATE(8164)] = 314153, - [SMALL_STATE(8165)] = 314193, - [SMALL_STATE(8166)] = 314243, - [SMALL_STATE(8167)] = 314293, - [SMALL_STATE(8168)] = 314333, - [SMALL_STATE(8169)] = 314373, - [SMALL_STATE(8170)] = 314423, - [SMALL_STATE(8171)] = 314463, - [SMALL_STATE(8172)] = 314513, - [SMALL_STATE(8173)] = 314553, - [SMALL_STATE(8174)] = 314593, - [SMALL_STATE(8175)] = 314639, - [SMALL_STATE(8176)] = 314689, - [SMALL_STATE(8177)] = 314729, - [SMALL_STATE(8178)] = 314769, - [SMALL_STATE(8179)] = 314809, - [SMALL_STATE(8180)] = 314853, - [SMALL_STATE(8181)] = 314893, - [SMALL_STATE(8182)] = 314945, - [SMALL_STATE(8183)] = 314985, - [SMALL_STATE(8184)] = 315025, - [SMALL_STATE(8185)] = 315069, - [SMALL_STATE(8186)] = 315117, - [SMALL_STATE(8187)] = 315157, - [SMALL_STATE(8188)] = 315197, - [SMALL_STATE(8189)] = 315247, - [SMALL_STATE(8190)] = 315297, - [SMALL_STATE(8191)] = 315337, - [SMALL_STATE(8192)] = 315377, - [SMALL_STATE(8193)] = 315417, - [SMALL_STATE(8194)] = 315463, - [SMALL_STATE(8195)] = 315513, - [SMALL_STATE(8196)] = 315559, - [SMALL_STATE(8197)] = 315609, - [SMALL_STATE(8198)] = 315659, - [SMALL_STATE(8199)] = 315687, - [SMALL_STATE(8200)] = 315727, - [SMALL_STATE(8201)] = 315767, - [SMALL_STATE(8202)] = 315795, - [SMALL_STATE(8203)] = 315823, - [SMALL_STATE(8204)] = 315863, - [SMALL_STATE(8205)] = 315903, - [SMALL_STATE(8206)] = 315943, - [SMALL_STATE(8207)] = 315975, - [SMALL_STATE(8208)] = 316003, - [SMALL_STATE(8209)] = 316053, - [SMALL_STATE(8210)] = 316093, - [SMALL_STATE(8211)] = 316127, - [SMALL_STATE(8212)] = 316155, - [SMALL_STATE(8213)] = 316183, - [SMALL_STATE(8214)] = 316233, - [SMALL_STATE(8215)] = 316283, - [SMALL_STATE(8216)] = 316323, - [SMALL_STATE(8217)] = 316363, - [SMALL_STATE(8218)] = 316403, - [SMALL_STATE(8219)] = 316449, - [SMALL_STATE(8220)] = 316489, - [SMALL_STATE(8221)] = 316529, - [SMALL_STATE(8222)] = 316557, - [SMALL_STATE(8223)] = 316589, - [SMALL_STATE(8224)] = 316641, - [SMALL_STATE(8225)] = 316681, - [SMALL_STATE(8226)] = 316731, - [SMALL_STATE(8227)] = 316771, - [SMALL_STATE(8228)] = 316811, - [SMALL_STATE(8229)] = 316851, - [SMALL_STATE(8230)] = 316903, - [SMALL_STATE(8231)] = 316931, - [SMALL_STATE(8232)] = 316959, - [SMALL_STATE(8233)] = 317001, - [SMALL_STATE(8234)] = 317051, - [SMALL_STATE(8235)] = 317091, - [SMALL_STATE(8236)] = 317131, - [SMALL_STATE(8237)] = 317183, - [SMALL_STATE(8238)] = 317223, - [SMALL_STATE(8239)] = 317275, - [SMALL_STATE(8240)] = 317325, - [SMALL_STATE(8241)] = 317365, - [SMALL_STATE(8242)] = 317398, - [SMALL_STATE(8243)] = 317425, - [SMALL_STATE(8244)] = 317452, - [SMALL_STATE(8245)] = 317499, - [SMALL_STATE(8246)] = 317546, - [SMALL_STATE(8247)] = 317591, - [SMALL_STATE(8248)] = 317640, - [SMALL_STATE(8249)] = 317691, - [SMALL_STATE(8250)] = 317738, - [SMALL_STATE(8251)] = 317765, - [SMALL_STATE(8252)] = 317802, - [SMALL_STATE(8253)] = 317849, - [SMALL_STATE(8254)] = 317876, - [SMALL_STATE(8255)] = 317903, - [SMALL_STATE(8256)] = 317952, - [SMALL_STATE(8257)] = 318003, - [SMALL_STATE(8258)] = 318050, - [SMALL_STATE(8259)] = 318077, - [SMALL_STATE(8260)] = 318128, - [SMALL_STATE(8261)] = 318155, - [SMALL_STATE(8262)] = 318182, - [SMALL_STATE(8263)] = 318209, - [SMALL_STATE(8264)] = 318256, - [SMALL_STATE(8265)] = 318283, - [SMALL_STATE(8266)] = 318334, - [SMALL_STATE(8267)] = 318371, - [SMALL_STATE(8268)] = 318418, - [SMALL_STATE(8269)] = 318451, - [SMALL_STATE(8270)] = 318498, - [SMALL_STATE(8271)] = 318529, - [SMALL_STATE(8272)] = 318576, - [SMALL_STATE(8273)] = 318621, - [SMALL_STATE(8274)] = 318666, - [SMALL_STATE(8275)] = 318715, - [SMALL_STATE(8276)] = 318766, - [SMALL_STATE(8277)] = 318799, - [SMALL_STATE(8278)] = 318826, - [SMALL_STATE(8279)] = 318869, - [SMALL_STATE(8280)] = 318920, - [SMALL_STATE(8281)] = 318971, - [SMALL_STATE(8282)] = 319022, - [SMALL_STATE(8283)] = 319073, - [SMALL_STATE(8284)] = 319124, - [SMALL_STATE(8285)] = 319175, - [SMALL_STATE(8286)] = 319226, - [SMALL_STATE(8287)] = 319271, - [SMALL_STATE(8288)] = 319316, - [SMALL_STATE(8289)] = 319361, - [SMALL_STATE(8290)] = 319408, - [SMALL_STATE(8291)] = 319459, - [SMALL_STATE(8292)] = 319504, - [SMALL_STATE(8293)] = 319551, - [SMALL_STATE(8294)] = 319596, - [SMALL_STATE(8295)] = 319651, - [SMALL_STATE(8296)] = 319682, - [SMALL_STATE(8297)] = 319709, - [SMALL_STATE(8298)] = 319736, - [SMALL_STATE(8299)] = 319763, - [SMALL_STATE(8300)] = 319814, - [SMALL_STATE(8301)] = 319865, - [SMALL_STATE(8302)] = 319892, - [SMALL_STATE(8303)] = 319937, - [SMALL_STATE(8304)] = 319982, - [SMALL_STATE(8305)] = 320033, - [SMALL_STATE(8306)] = 320078, - [SMALL_STATE(8307)] = 320105, - [SMALL_STATE(8308)] = 320156, - [SMALL_STATE(8309)] = 320205, - [SMALL_STATE(8310)] = 320256, - [SMALL_STATE(8311)] = 320305, - [SMALL_STATE(8312)] = 320352, - [SMALL_STATE(8313)] = 320379, - [SMALL_STATE(8314)] = 320406, - [SMALL_STATE(8315)] = 320433, - [SMALL_STATE(8316)] = 320462, - [SMALL_STATE(8317)] = 320489, - [SMALL_STATE(8318)] = 320540, - [SMALL_STATE(8319)] = 320567, - [SMALL_STATE(8320)] = 320612, - [SMALL_STATE(8321)] = 320663, - [SMALL_STATE(8322)] = 320706, - [SMALL_STATE(8323)] = 320747, - [SMALL_STATE(8324)] = 320786, - [SMALL_STATE(8325)] = 320823, - [SMALL_STATE(8326)] = 320874, - [SMALL_STATE(8327)] = 320909, - [SMALL_STATE(8328)] = 320942, - [SMALL_STATE(8329)] = 320993, - [SMALL_STATE(8330)] = 321038, - [SMALL_STATE(8331)] = 321069, - [SMALL_STATE(8332)] = 321114, - [SMALL_STATE(8333)] = 321165, - [SMALL_STATE(8334)] = 321192, - [SMALL_STATE(8335)] = 321247, - [SMALL_STATE(8336)] = 321298, - [SMALL_STATE(8337)] = 321331, - [SMALL_STATE(8338)] = 321378, - [SMALL_STATE(8339)] = 321429, - [SMALL_STATE(8340)] = 321466, - [SMALL_STATE(8341)] = 321513, - [SMALL_STATE(8342)] = 321542, - [SMALL_STATE(8343)] = 321591, - [SMALL_STATE(8344)] = 321628, - [SMALL_STATE(8345)] = 321675, - [SMALL_STATE(8346)] = 321726, - [SMALL_STATE(8347)] = 321777, - [SMALL_STATE(8348)] = 321822, - [SMALL_STATE(8349)] = 321867, - [SMALL_STATE(8350)] = 321894, - [SMALL_STATE(8351)] = 321921, - [SMALL_STATE(8352)] = 321948, - [SMALL_STATE(8353)] = 321999, - [SMALL_STATE(8354)] = 322026, - [SMALL_STATE(8355)] = 322053, - [SMALL_STATE(8356)] = 322098, - [SMALL_STATE(8357)] = 322143, - [SMALL_STATE(8358)] = 322188, - [SMALL_STATE(8359)] = 322215, - [SMALL_STATE(8360)] = 322262, - [SMALL_STATE(8361)] = 322313, - [SMALL_STATE(8362)] = 322340, - [SMALL_STATE(8363)] = 322367, - [SMALL_STATE(8364)] = 322394, - [SMALL_STATE(8365)] = 322431, - [SMALL_STATE(8366)] = 322478, - [SMALL_STATE(8367)] = 322525, - [SMALL_STATE(8368)] = 322555, - [SMALL_STATE(8369)] = 322581, - [SMALL_STATE(8370)] = 322607, - [SMALL_STATE(8371)] = 322633, - [SMALL_STATE(8372)] = 322683, - [SMALL_STATE(8373)] = 322721, - [SMALL_STATE(8374)] = 322759, - [SMALL_STATE(8375)] = 322793, - [SMALL_STATE(8376)] = 322843, - [SMALL_STATE(8377)] = 322877, - [SMALL_STATE(8378)] = 322927, - [SMALL_STATE(8379)] = 322953, - [SMALL_STATE(8380)] = 322987, - [SMALL_STATE(8381)] = 323021, - [SMALL_STATE(8382)] = 323051, - [SMALL_STATE(8383)] = 323085, - [SMALL_STATE(8384)] = 323139, - [SMALL_STATE(8385)] = 323173, - [SMALL_STATE(8386)] = 323207, - [SMALL_STATE(8387)] = 323241, - [SMALL_STATE(8388)] = 323275, - [SMALL_STATE(8389)] = 323325, - [SMALL_STATE(8390)] = 323377, - [SMALL_STATE(8391)] = 323431, - [SMALL_STATE(8392)] = 323481, - [SMALL_STATE(8393)] = 323533, - [SMALL_STATE(8394)] = 323581, - [SMALL_STATE(8395)] = 323633, - [SMALL_STATE(8396)] = 323659, - [SMALL_STATE(8397)] = 323693, - [SMALL_STATE(8398)] = 323719, - [SMALL_STATE(8399)] = 323753, - [SMALL_STATE(8400)] = 323779, - [SMALL_STATE(8401)] = 323827, - [SMALL_STATE(8402)] = 323861, - [SMALL_STATE(8403)] = 323895, - [SMALL_STATE(8404)] = 323929, - [SMALL_STATE(8405)] = 323965, - [SMALL_STATE(8406)] = 324003, - [SMALL_STATE(8407)] = 324039, - [SMALL_STATE(8408)] = 324075, - [SMALL_STATE(8409)] = 324109, - [SMALL_STATE(8410)] = 324163, - [SMALL_STATE(8411)] = 324201, - [SMALL_STATE(8412)] = 324239, - [SMALL_STATE(8413)] = 324271, - [SMALL_STATE(8414)] = 324297, - [SMALL_STATE(8415)] = 324323, - [SMALL_STATE(8416)] = 324349, - [SMALL_STATE(8417)] = 324399, - [SMALL_STATE(8418)] = 324429, - [SMALL_STATE(8419)] = 324455, - [SMALL_STATE(8420)] = 324509, - [SMALL_STATE(8421)] = 324535, - [SMALL_STATE(8422)] = 324561, - [SMALL_STATE(8423)] = 324587, - [SMALL_STATE(8424)] = 324613, - [SMALL_STATE(8425)] = 324639, - [SMALL_STATE(8426)] = 324667, - [SMALL_STATE(8427)] = 324693, - [SMALL_STATE(8428)] = 324719, - [SMALL_STATE(8429)] = 324753, - [SMALL_STATE(8430)] = 324791, - [SMALL_STATE(8431)] = 324827, - [SMALL_STATE(8432)] = 324857, - [SMALL_STATE(8433)] = 324909, - [SMALL_STATE(8434)] = 324951, - [SMALL_STATE(8435)] = 324989, - [SMALL_STATE(8436)] = 325027, - [SMALL_STATE(8437)] = 325057, - [SMALL_STATE(8438)] = 325109, - [SMALL_STATE(8439)] = 325163, - [SMALL_STATE(8440)] = 325217, - [SMALL_STATE(8441)] = 325251, - [SMALL_STATE(8442)] = 325285, - [SMALL_STATE(8443)] = 325339, - [SMALL_STATE(8444)] = 325393, - [SMALL_STATE(8445)] = 325423, - [SMALL_STATE(8446)] = 325469, - [SMALL_STATE(8447)] = 325505, - [SMALL_STATE(8448)] = 325531, - [SMALL_STATE(8449)] = 325572, - [SMALL_STATE(8450)] = 325599, - [SMALL_STATE(8451)] = 325636, - [SMALL_STATE(8452)] = 325683, - [SMALL_STATE(8453)] = 325730, - [SMALL_STATE(8454)] = 325777, - [SMALL_STATE(8455)] = 325824, - [SMALL_STATE(8456)] = 325861, - [SMALL_STATE(8457)] = 325908, - [SMALL_STATE(8458)] = 325951, - [SMALL_STATE(8459)] = 325992, - [SMALL_STATE(8460)] = 326039, - [SMALL_STATE(8461)] = 326070, - [SMALL_STATE(8462)] = 326117, - [SMALL_STATE(8463)] = 326158, - [SMALL_STATE(8464)] = 326205, - [SMALL_STATE(8465)] = 326252, - [SMALL_STATE(8466)] = 326299, - [SMALL_STATE(8467)] = 326346, - [SMALL_STATE(8468)] = 326379, - [SMALL_STATE(8469)] = 326422, - [SMALL_STATE(8470)] = 326469, - [SMALL_STATE(8471)] = 326506, - [SMALL_STATE(8472)] = 326543, - [SMALL_STATE(8473)] = 326580, - [SMALL_STATE(8474)] = 326609, - [SMALL_STATE(8475)] = 326652, - [SMALL_STATE(8476)] = 326699, - [SMALL_STATE(8477)] = 326730, - [SMALL_STATE(8478)] = 326763, - [SMALL_STATE(8479)] = 326810, - [SMALL_STATE(8480)] = 326857, - [SMALL_STATE(8481)] = 326894, - [SMALL_STATE(8482)] = 326941, - [SMALL_STATE(8483)] = 326974, - [SMALL_STATE(8484)] = 327021, - [SMALL_STATE(8485)] = 327068, - [SMALL_STATE(8486)] = 327101, - [SMALL_STATE(8487)] = 327148, - [SMALL_STATE(8488)] = 327181, - [SMALL_STATE(8489)] = 327228, - [SMALL_STATE(8490)] = 327275, - [SMALL_STATE(8491)] = 327318, - [SMALL_STATE(8492)] = 327355, - [SMALL_STATE(8493)] = 327402, - [SMALL_STATE(8494)] = 327449, - [SMALL_STATE(8495)] = 327482, - [SMALL_STATE(8496)] = 327515, - [SMALL_STATE(8497)] = 327548, - [SMALL_STATE(8498)] = 327585, - [SMALL_STATE(8499)] = 327632, - [SMALL_STATE(8500)] = 327665, - [SMALL_STATE(8501)] = 327712, - [SMALL_STATE(8502)] = 327743, - [SMALL_STATE(8503)] = 327768, - [SMALL_STATE(8504)] = 327815, - [SMALL_STATE(8505)] = 327862, - [SMALL_STATE(8506)] = 327909, - [SMALL_STATE(8507)] = 327956, - [SMALL_STATE(8508)] = 328003, - [SMALL_STATE(8509)] = 328047, - [SMALL_STATE(8510)] = 328071, - [SMALL_STATE(8511)] = 328105, - [SMALL_STATE(8512)] = 328137, - [SMALL_STATE(8513)] = 328171, - [SMALL_STATE(8514)] = 328203, - [SMALL_STATE(8515)] = 328227, - [SMALL_STATE(8516)] = 328261, - [SMALL_STATE(8517)] = 328305, - [SMALL_STATE(8518)] = 328337, - [SMALL_STATE(8519)] = 328371, - [SMALL_STATE(8520)] = 328403, - [SMALL_STATE(8521)] = 328427, - [SMALL_STATE(8522)] = 328451, - [SMALL_STATE(8523)] = 328475, - [SMALL_STATE(8524)] = 328511, - [SMALL_STATE(8525)] = 328535, - [SMALL_STATE(8526)] = 328579, - [SMALL_STATE(8527)] = 328611, - [SMALL_STATE(8528)] = 328635, - [SMALL_STATE(8529)] = 328671, - [SMALL_STATE(8530)] = 328695, - [SMALL_STATE(8531)] = 328731, - [SMALL_STATE(8532)] = 328755, - [SMALL_STATE(8533)] = 328799, - [SMALL_STATE(8534)] = 328843, - [SMALL_STATE(8535)] = 328887, - [SMALL_STATE(8536)] = 328931, - [SMALL_STATE(8537)] = 328975, - [SMALL_STATE(8538)] = 328999, - [SMALL_STATE(8539)] = 329043, - [SMALL_STATE(8540)] = 329087, - [SMALL_STATE(8541)] = 329111, - [SMALL_STATE(8542)] = 329147, - [SMALL_STATE(8543)] = 329187, - [SMALL_STATE(8544)] = 329231, - [SMALL_STATE(8545)] = 329255, - [SMALL_STATE(8546)] = 329299, - [SMALL_STATE(8547)] = 329323, - [SMALL_STATE(8548)] = 329347, - [SMALL_STATE(8549)] = 329383, - [SMALL_STATE(8550)] = 329407, - [SMALL_STATE(8551)] = 329431, - [SMALL_STATE(8552)] = 329463, - [SMALL_STATE(8553)] = 329487, - [SMALL_STATE(8554)] = 329511, - [SMALL_STATE(8555)] = 329535, - [SMALL_STATE(8556)] = 329559, - [SMALL_STATE(8557)] = 329583, - [SMALL_STATE(8558)] = 329607, - [SMALL_STATE(8559)] = 329631, - [SMALL_STATE(8560)] = 329665, - [SMALL_STATE(8561)] = 329689, - [SMALL_STATE(8562)] = 329713, - [SMALL_STATE(8563)] = 329757, - [SMALL_STATE(8564)] = 329789, - [SMALL_STATE(8565)] = 329813, - [SMALL_STATE(8566)] = 329845, - [SMALL_STATE(8567)] = 329889, + [SMALL_STATE(7345)] = 262632, + [SMALL_STATE(7346)] = 262724, + [SMALL_STATE(7347)] = 262816, + [SMALL_STATE(7348)] = 262908, + [SMALL_STATE(7349)] = 263000, + [SMALL_STATE(7350)] = 263092, + [SMALL_STATE(7351)] = 263184, + [SMALL_STATE(7352)] = 263276, + [SMALL_STATE(7353)] = 263368, + [SMALL_STATE(7354)] = 263418, + [SMALL_STATE(7355)] = 263510, + [SMALL_STATE(7356)] = 263602, + [SMALL_STATE(7357)] = 263694, + [SMALL_STATE(7358)] = 263786, + [SMALL_STATE(7359)] = 263878, + [SMALL_STATE(7360)] = 263970, + [SMALL_STATE(7361)] = 264062, + [SMALL_STATE(7362)] = 264154, + [SMALL_STATE(7363)] = 264246, + [SMALL_STATE(7364)] = 264338, + [SMALL_STATE(7365)] = 264408, + [SMALL_STATE(7366)] = 264456, + [SMALL_STATE(7367)] = 264500, + [SMALL_STATE(7368)] = 264544, + [SMALL_STATE(7369)] = 264588, + [SMALL_STATE(7370)] = 264674, + [SMALL_STATE(7371)] = 264726, + [SMALL_STATE(7372)] = 264786, + [SMALL_STATE(7373)] = 264834, + [SMALL_STATE(7374)] = 264926, + [SMALL_STATE(7375)] = 265018, + [SMALL_STATE(7376)] = 265110, + [SMALL_STATE(7377)] = 265154, + [SMALL_STATE(7378)] = 265246, + [SMALL_STATE(7379)] = 265290, + [SMALL_STATE(7380)] = 265382, + [SMALL_STATE(7381)] = 265426, + [SMALL_STATE(7382)] = 265470, + [SMALL_STATE(7383)] = 265514, + [SMALL_STATE(7384)] = 265606, + [SMALL_STATE(7385)] = 265650, + [SMALL_STATE(7386)] = 265694, + [SMALL_STATE(7387)] = 265738, + [SMALL_STATE(7388)] = 265782, + [SMALL_STATE(7389)] = 265826, + [SMALL_STATE(7390)] = 265896, + [SMALL_STATE(7391)] = 265940, + [SMALL_STATE(7392)] = 266032, + [SMALL_STATE(7393)] = 266124, + [SMALL_STATE(7394)] = 266211, + [SMALL_STATE(7395)] = 266298, + [SMALL_STATE(7396)] = 266387, + [SMALL_STATE(7397)] = 266474, + [SMALL_STATE(7398)] = 266561, + [SMALL_STATE(7399)] = 266610, + [SMALL_STATE(7400)] = 266697, + [SMALL_STATE(7401)] = 266746, + [SMALL_STATE(7402)] = 266833, + [SMALL_STATE(7403)] = 266920, + [SMALL_STATE(7404)] = 267009, + [SMALL_STATE(7405)] = 267078, + [SMALL_STATE(7406)] = 267165, + [SMALL_STATE(7407)] = 267252, + [SMALL_STATE(7408)] = 267341, + [SMALL_STATE(7409)] = 267430, + [SMALL_STATE(7410)] = 267517, + [SMALL_STATE(7411)] = 267604, + [SMALL_STATE(7412)] = 267691, + [SMALL_STATE(7413)] = 267778, + [SMALL_STATE(7414)] = 267865, + [SMALL_STATE(7415)] = 267954, + [SMALL_STATE(7416)] = 268043, + [SMALL_STATE(7417)] = 268130, + [SMALL_STATE(7418)] = 268219, + [SMALL_STATE(7419)] = 268308, + [SMALL_STATE(7420)] = 268395, + [SMALL_STATE(7421)] = 268482, + [SMALL_STATE(7422)] = 268569, + [SMALL_STATE(7423)] = 268656, + [SMALL_STATE(7424)] = 268725, + [SMALL_STATE(7425)] = 268812, + [SMALL_STATE(7426)] = 268901, + [SMALL_STATE(7427)] = 268988, + [SMALL_STATE(7428)] = 269075, + [SMALL_STATE(7429)] = 269162, + [SMALL_STATE(7430)] = 269211, + [SMALL_STATE(7431)] = 269298, + [SMALL_STATE(7432)] = 269385, + [SMALL_STATE(7433)] = 269472, + [SMALL_STATE(7434)] = 269541, + [SMALL_STATE(7435)] = 269628, + [SMALL_STATE(7436)] = 269717, + [SMALL_STATE(7437)] = 269804, + [SMALL_STATE(7438)] = 269893, + [SMALL_STATE(7439)] = 269980, + [SMALL_STATE(7440)] = 270067, + [SMALL_STATE(7441)] = 270154, + [SMALL_STATE(7442)] = 270243, + [SMALL_STATE(7443)] = 270332, + [SMALL_STATE(7444)] = 270401, + [SMALL_STATE(7445)] = 270450, + [SMALL_STATE(7446)] = 270537, + [SMALL_STATE(7447)] = 270626, + [SMALL_STATE(7448)] = 270713, + [SMALL_STATE(7449)] = 270782, + [SMALL_STATE(7450)] = 270869, + [SMALL_STATE(7451)] = 270958, + [SMALL_STATE(7452)] = 271047, + [SMALL_STATE(7453)] = 271134, + [SMALL_STATE(7454)] = 271223, + [SMALL_STATE(7455)] = 271312, + [SMALL_STATE(7456)] = 271357, + [SMALL_STATE(7457)] = 271444, + [SMALL_STATE(7458)] = 271533, + [SMALL_STATE(7459)] = 271620, + [SMALL_STATE(7460)] = 271709, + [SMALL_STATE(7461)] = 271794, + [SMALL_STATE(7462)] = 271881, + [SMALL_STATE(7463)] = 271970, + [SMALL_STATE(7464)] = 272057, + [SMALL_STATE(7465)] = 272144, + [SMALL_STATE(7466)] = 272229, + [SMALL_STATE(7467)] = 272316, + [SMALL_STATE(7468)] = 272385, + [SMALL_STATE(7469)] = 272470, + [SMALL_STATE(7470)] = 272539, + [SMALL_STATE(7471)] = 272628, + [SMALL_STATE(7472)] = 272717, + [SMALL_STATE(7473)] = 272804, + [SMALL_STATE(7474)] = 272891, + [SMALL_STATE(7475)] = 272978, + [SMALL_STATE(7476)] = 273063, + [SMALL_STATE(7477)] = 273150, + [SMALL_STATE(7478)] = 273239, + [SMALL_STATE(7479)] = 273328, + [SMALL_STATE(7480)] = 273415, + [SMALL_STATE(7481)] = 273460, + [SMALL_STATE(7482)] = 273549, + [SMALL_STATE(7483)] = 273636, + [SMALL_STATE(7484)] = 273681, + [SMALL_STATE(7485)] = 273768, + [SMALL_STATE(7486)] = 273857, + [SMALL_STATE(7487)] = 273944, + [SMALL_STATE(7488)] = 274033, + [SMALL_STATE(7489)] = 274120, + [SMALL_STATE(7490)] = 274209, + [SMALL_STATE(7491)] = 274296, + [SMALL_STATE(7492)] = 274385, + [SMALL_STATE(7493)] = 274472, + [SMALL_STATE(7494)] = 274561, + [SMALL_STATE(7495)] = 274650, + [SMALL_STATE(7496)] = 274739, + [SMALL_STATE(7497)] = 274826, + [SMALL_STATE(7498)] = 274915, + [SMALL_STATE(7499)] = 275004, + [SMALL_STATE(7500)] = 275073, + [SMALL_STATE(7501)] = 275141, + [SMALL_STATE(7502)] = 275219, + [SMALL_STATE(7503)] = 275297, + [SMALL_STATE(7504)] = 275365, + [SMALL_STATE(7505)] = 275443, + [SMALL_STATE(7506)] = 275495, + [SMALL_STATE(7507)] = 275573, + [SMALL_STATE(7508)] = 275651, + [SMALL_STATE(7509)] = 275729, + [SMALL_STATE(7510)] = 275807, + [SMALL_STATE(7511)] = 275885, + [SMALL_STATE(7512)] = 275963, + [SMALL_STATE(7513)] = 276041, + [SMALL_STATE(7514)] = 276093, + [SMALL_STATE(7515)] = 276177, + [SMALL_STATE(7516)] = 276255, + [SMALL_STATE(7517)] = 276339, + [SMALL_STATE(7518)] = 276407, + [SMALL_STATE(7519)] = 276485, + [SMALL_STATE(7520)] = 276563, + [SMALL_STATE(7521)] = 276641, + [SMALL_STATE(7522)] = 276719, + [SMALL_STATE(7523)] = 276797, + [SMALL_STATE(7524)] = 276875, + [SMALL_STATE(7525)] = 276917, + [SMALL_STATE(7526)] = 276995, + [SMALL_STATE(7527)] = 277073, + [SMALL_STATE(7528)] = 277141, + [SMALL_STATE(7529)] = 277219, + [SMALL_STATE(7530)] = 277297, + [SMALL_STATE(7531)] = 277375, + [SMALL_STATE(7532)] = 277453, + [SMALL_STATE(7533)] = 277531, + [SMALL_STATE(7534)] = 277609, + [SMALL_STATE(7535)] = 277687, + [SMALL_STATE(7536)] = 277765, + [SMALL_STATE(7537)] = 277843, + [SMALL_STATE(7538)] = 277921, + [SMALL_STATE(7539)] = 277999, + [SMALL_STATE(7540)] = 278077, + [SMALL_STATE(7541)] = 278155, + [SMALL_STATE(7542)] = 278233, + [SMALL_STATE(7543)] = 278311, + [SMALL_STATE(7544)] = 278389, + [SMALL_STATE(7545)] = 278467, + [SMALL_STATE(7546)] = 278545, + [SMALL_STATE(7547)] = 278623, + [SMALL_STATE(7548)] = 278701, + [SMALL_STATE(7549)] = 278779, + [SMALL_STATE(7550)] = 278857, + [SMALL_STATE(7551)] = 278925, + [SMALL_STATE(7552)] = 279003, + [SMALL_STATE(7553)] = 279071, + [SMALL_STATE(7554)] = 279149, + [SMALL_STATE(7555)] = 279191, + [SMALL_STATE(7556)] = 279269, + [SMALL_STATE(7557)] = 279311, + [SMALL_STATE(7558)] = 279353, + [SMALL_STATE(7559)] = 279431, + [SMALL_STATE(7560)] = 279509, + [SMALL_STATE(7561)] = 279587, + [SMALL_STATE(7562)] = 279665, + [SMALL_STATE(7563)] = 279732, + [SMALL_STATE(7564)] = 279773, + [SMALL_STATE(7565)] = 279820, + [SMALL_STATE(7566)] = 279873, + [SMALL_STATE(7567)] = 279920, + [SMALL_STATE(7568)] = 279967, + [SMALL_STATE(7569)] = 280014, + [SMALL_STATE(7570)] = 280081, + [SMALL_STATE(7571)] = 280128, + [SMALL_STATE(7572)] = 280185, + [SMALL_STATE(7573)] = 280252, + [SMALL_STATE(7574)] = 280309, + [SMALL_STATE(7575)] = 280356, + [SMALL_STATE(7576)] = 280403, + [SMALL_STATE(7577)] = 280486, + [SMALL_STATE(7578)] = 280563, + [SMALL_STATE(7579)] = 280610, + [SMALL_STATE(7580)] = 280667, + [SMALL_STATE(7581)] = 280722, + [SMALL_STATE(7582)] = 280777, + [SMALL_STATE(7583)] = 280832, + [SMALL_STATE(7584)] = 280879, + [SMALL_STATE(7585)] = 280926, + [SMALL_STATE(7586)] = 280973, + [SMALL_STATE(7587)] = 281056, + [SMALL_STATE(7588)] = 281139, + [SMALL_STATE(7589)] = 281194, + [SMALL_STATE(7590)] = 281271, + [SMALL_STATE(7591)] = 281348, + [SMALL_STATE(7592)] = 281415, + [SMALL_STATE(7593)] = 281498, + [SMALL_STATE(7594)] = 281565, + [SMALL_STATE(7595)] = 281642, + [SMALL_STATE(7596)] = 281689, + [SMALL_STATE(7597)] = 281756, + [SMALL_STATE(7598)] = 281799, + [SMALL_STATE(7599)] = 281846, + [SMALL_STATE(7600)] = 281895, + [SMALL_STATE(7601)] = 281948, + [SMALL_STATE(7602)] = 282024, + [SMALL_STATE(7603)] = 282064, + [SMALL_STATE(7604)] = 282104, + [SMALL_STATE(7605)] = 282144, + [SMALL_STATE(7606)] = 282184, + [SMALL_STATE(7607)] = 282224, + [SMALL_STATE(7608)] = 282264, + [SMALL_STATE(7609)] = 282304, + [SMALL_STATE(7610)] = 282344, + [SMALL_STATE(7611)] = 282384, + [SMALL_STATE(7612)] = 282424, + [SMALL_STATE(7613)] = 282464, + [SMALL_STATE(7614)] = 282504, + [SMALL_STATE(7615)] = 282544, + [SMALL_STATE(7616)] = 282584, + [SMALL_STATE(7617)] = 282624, + [SMALL_STATE(7618)] = 282664, + [SMALL_STATE(7619)] = 282704, + [SMALL_STATE(7620)] = 282780, + [SMALL_STATE(7621)] = 282856, + [SMALL_STATE(7622)] = 282896, + [SMALL_STATE(7623)] = 282936, + [SMALL_STATE(7624)] = 282976, + [SMALL_STATE(7625)] = 283016, + [SMALL_STATE(7626)] = 283056, + [SMALL_STATE(7627)] = 283138, + [SMALL_STATE(7628)] = 283178, + [SMALL_STATE(7629)] = 283218, + [SMALL_STATE(7630)] = 283294, + [SMALL_STATE(7631)] = 283370, + [SMALL_STATE(7632)] = 283446, + [SMALL_STATE(7633)] = 283486, + [SMALL_STATE(7634)] = 283526, + [SMALL_STATE(7635)] = 283566, + [SMALL_STATE(7636)] = 283606, + [SMALL_STATE(7637)] = 283682, + [SMALL_STATE(7638)] = 283758, + [SMALL_STATE(7639)] = 283798, + [SMALL_STATE(7640)] = 283838, + [SMALL_STATE(7641)] = 283878, + [SMALL_STATE(7642)] = 283918, + [SMALL_STATE(7643)] = 283958, + [SMALL_STATE(7644)] = 283998, + [SMALL_STATE(7645)] = 284038, + [SMALL_STATE(7646)] = 284078, + [SMALL_STATE(7647)] = 284118, + [SMALL_STATE(7648)] = 284158, + [SMALL_STATE(7649)] = 284198, + [SMALL_STATE(7650)] = 284238, + [SMALL_STATE(7651)] = 284285, + [SMALL_STATE(7652)] = 284332, + [SMALL_STATE(7653)] = 284401, + [SMALL_STATE(7654)] = 284470, + [SMALL_STATE(7655)] = 284539, + [SMALL_STATE(7656)] = 284614, + [SMALL_STATE(7657)] = 284683, + [SMALL_STATE(7658)] = 284752, + [SMALL_STATE(7659)] = 284827, + [SMALL_STATE(7660)] = 284902, + [SMALL_STATE(7661)] = 284977, + [SMALL_STATE(7662)] = 285046, + [SMALL_STATE(7663)] = 285086, + [SMALL_STATE(7664)] = 285132, + [SMALL_STATE(7665)] = 285204, + [SMALL_STATE(7666)] = 285246, + [SMALL_STATE(7667)] = 285288, + [SMALL_STATE(7668)] = 285360, + [SMALL_STATE(7669)] = 285402, + [SMALL_STATE(7670)] = 285476, + [SMALL_STATE(7671)] = 285550, + [SMALL_STATE(7672)] = 285622, + [SMALL_STATE(7673)] = 285664, + [SMALL_STATE(7674)] = 285738, + [SMALL_STATE(7675)] = 285780, + [SMALL_STATE(7676)] = 285822, + [SMALL_STATE(7677)] = 285864, + [SMALL_STATE(7678)] = 285906, + [SMALL_STATE(7679)] = 285948, + [SMALL_STATE(7680)] = 286002, + [SMALL_STATE(7681)] = 286044, + [SMALL_STATE(7682)] = 286086, + [SMALL_STATE(7683)] = 286140, + [SMALL_STATE(7684)] = 286214, + [SMALL_STATE(7685)] = 286288, + [SMALL_STATE(7686)] = 286360, + [SMALL_STATE(7687)] = 286402, + [SMALL_STATE(7688)] = 286474, + [SMALL_STATE(7689)] = 286546, + [SMALL_STATE(7690)] = 286620, + [SMALL_STATE(7691)] = 286692, + [SMALL_STATE(7692)] = 286764, + [SMALL_STATE(7693)] = 286838, + [SMALL_STATE(7694)] = 286910, + [SMALL_STATE(7695)] = 286984, + [SMALL_STATE(7696)] = 287029, + [SMALL_STATE(7697)] = 287070, + [SMALL_STATE(7698)] = 287111, + [SMALL_STATE(7699)] = 287152, + [SMALL_STATE(7700)] = 287219, + [SMALL_STATE(7701)] = 287260, + [SMALL_STATE(7702)] = 287301, + [SMALL_STATE(7703)] = 287342, + [SMALL_STATE(7704)] = 287409, + [SMALL_STATE(7705)] = 287476, + [SMALL_STATE(7706)] = 287517, + [SMALL_STATE(7707)] = 287584, + [SMALL_STATE(7708)] = 287625, + [SMALL_STATE(7709)] = 287692, + [SMALL_STATE(7710)] = 287733, + [SMALL_STATE(7711)] = 287806, + [SMALL_STATE(7712)] = 287851, + [SMALL_STATE(7713)] = 287896, + [SMALL_STATE(7714)] = 287963, + [SMALL_STATE(7715)] = 288036, + [SMALL_STATE(7716)] = 288103, + [SMALL_STATE(7717)] = 288170, + [SMALL_STATE(7718)] = 288211, + [SMALL_STATE(7719)] = 288260, + [SMALL_STATE(7720)] = 288327, + [SMALL_STATE(7721)] = 288368, + [SMALL_STATE(7722)] = 288435, + [SMALL_STATE(7723)] = 288478, + [SMALL_STATE(7724)] = 288523, + [SMALL_STATE(7725)] = 288590, + [SMALL_STATE(7726)] = 288657, + [SMALL_STATE(7727)] = 288698, + [SMALL_STATE(7728)] = 288764, + [SMALL_STATE(7729)] = 288830, + [SMALL_STATE(7730)] = 288896, + [SMALL_STATE(7731)] = 288962, + [SMALL_STATE(7732)] = 289028, + [SMALL_STATE(7733)] = 289094, + [SMALL_STATE(7734)] = 289157, + [SMALL_STATE(7735)] = 289220, + [SMALL_STATE(7736)] = 289283, + [SMALL_STATE(7737)] = 289346, + [SMALL_STATE(7738)] = 289409, + [SMALL_STATE(7739)] = 289472, + [SMALL_STATE(7740)] = 289553, + [SMALL_STATE(7741)] = 289616, + [SMALL_STATE(7742)] = 289679, + [SMALL_STATE(7743)] = 289742, + [SMALL_STATE(7744)] = 289805, + [SMALL_STATE(7745)] = 289868, + [SMALL_STATE(7746)] = 289931, + [SMALL_STATE(7747)] = 289994, + [SMALL_STATE(7748)] = 290057, + [SMALL_STATE(7749)] = 290120, + [SMALL_STATE(7750)] = 290185, + [SMALL_STATE(7751)] = 290250, + [SMALL_STATE(7752)] = 290313, + [SMALL_STATE(7753)] = 290376, + [SMALL_STATE(7754)] = 290439, + [SMALL_STATE(7755)] = 290504, + [SMALL_STATE(7756)] = 290567, + [SMALL_STATE(7757)] = 290630, + [SMALL_STATE(7758)] = 290693, + [SMALL_STATE(7759)] = 290756, + [SMALL_STATE(7760)] = 290819, + [SMALL_STATE(7761)] = 290884, + [SMALL_STATE(7762)] = 290949, + [SMALL_STATE(7763)] = 291012, + [SMALL_STATE(7764)] = 291077, + [SMALL_STATE(7765)] = 291140, + [SMALL_STATE(7766)] = 291203, + [SMALL_STATE(7767)] = 291266, + [SMALL_STATE(7768)] = 291329, + [SMALL_STATE(7769)] = 291392, + [SMALL_STATE(7770)] = 291455, + [SMALL_STATE(7771)] = 291518, + [SMALL_STATE(7772)] = 291581, + [SMALL_STATE(7773)] = 291662, + [SMALL_STATE(7774)] = 291725, + [SMALL_STATE(7775)] = 291806, + [SMALL_STATE(7776)] = 291871, + [SMALL_STATE(7777)] = 291934, + [SMALL_STATE(7778)] = 291997, + [SMALL_STATE(7779)] = 292060, + [SMALL_STATE(7780)] = 292123, + [SMALL_STATE(7781)] = 292162, + [SMALL_STATE(7782)] = 292203, + [SMALL_STATE(7783)] = 292266, + [SMALL_STATE(7784)] = 292331, + [SMALL_STATE(7785)] = 292396, + [SMALL_STATE(7786)] = 292459, + [SMALL_STATE(7787)] = 292522, + [SMALL_STATE(7788)] = 292585, + [SMALL_STATE(7789)] = 292648, + [SMALL_STATE(7790)] = 292711, + [SMALL_STATE(7791)] = 292776, + [SMALL_STATE(7792)] = 292841, + [SMALL_STATE(7793)] = 292904, + [SMALL_STATE(7794)] = 292967, + [SMALL_STATE(7795)] = 293032, + [SMALL_STATE(7796)] = 293095, + [SMALL_STATE(7797)] = 293158, + [SMALL_STATE(7798)] = 293211, + [SMALL_STATE(7799)] = 293274, + [SMALL_STATE(7800)] = 293344, + [SMALL_STATE(7801)] = 293414, + [SMALL_STATE(7802)] = 293484, + [SMALL_STATE(7803)] = 293554, + [SMALL_STATE(7804)] = 293624, + [SMALL_STATE(7805)] = 293694, + [SMALL_STATE(7806)] = 293764, + [SMALL_STATE(7807)] = 293834, + [SMALL_STATE(7808)] = 293892, + [SMALL_STATE(7809)] = 293956, + [SMALL_STATE(7810)] = 294026, + [SMALL_STATE(7811)] = 294096, + [SMALL_STATE(7812)] = 294160, + [SMALL_STATE(7813)] = 294230, + [SMALL_STATE(7814)] = 294294, + [SMALL_STATE(7815)] = 294364, + [SMALL_STATE(7816)] = 294434, + [SMALL_STATE(7817)] = 294504, + [SMALL_STATE(7818)] = 294574, + [SMALL_STATE(7819)] = 294644, + [SMALL_STATE(7820)] = 294714, + [SMALL_STATE(7821)] = 294784, + [SMALL_STATE(7822)] = 294854, + [SMALL_STATE(7823)] = 294924, + [SMALL_STATE(7824)] = 294994, + [SMALL_STATE(7825)] = 295064, + [SMALL_STATE(7826)] = 295134, + [SMALL_STATE(7827)] = 295192, + [SMALL_STATE(7828)] = 295262, + [SMALL_STATE(7829)] = 295332, + [SMALL_STATE(7830)] = 295402, + [SMALL_STATE(7831)] = 295472, + [SMALL_STATE(7832)] = 295542, + [SMALL_STATE(7833)] = 295612, + [SMALL_STATE(7834)] = 295670, + [SMALL_STATE(7835)] = 295728, + [SMALL_STATE(7836)] = 295792, + [SMALL_STATE(7837)] = 295862, + [SMALL_STATE(7838)] = 295932, + [SMALL_STATE(7839)] = 296002, + [SMALL_STATE(7840)] = 296072, + [SMALL_STATE(7841)] = 296142, + [SMALL_STATE(7842)] = 296212, + [SMALL_STATE(7843)] = 296282, + [SMALL_STATE(7844)] = 296352, + [SMALL_STATE(7845)] = 296422, + [SMALL_STATE(7846)] = 296492, + [SMALL_STATE(7847)] = 296562, + [SMALL_STATE(7848)] = 296632, + [SMALL_STATE(7849)] = 296702, + [SMALL_STATE(7850)] = 296772, + [SMALL_STATE(7851)] = 296842, + [SMALL_STATE(7852)] = 296912, + [SMALL_STATE(7853)] = 296982, + [SMALL_STATE(7854)] = 297052, + [SMALL_STATE(7855)] = 297122, + [SMALL_STATE(7856)] = 297192, + [SMALL_STATE(7857)] = 297250, + [SMALL_STATE(7858)] = 297320, + [SMALL_STATE(7859)] = 297390, + [SMALL_STATE(7860)] = 297460, + [SMALL_STATE(7861)] = 297530, + [SMALL_STATE(7862)] = 297600, + [SMALL_STATE(7863)] = 297670, + [SMALL_STATE(7864)] = 297740, + [SMALL_STATE(7865)] = 297810, + [SMALL_STATE(7866)] = 297880, + [SMALL_STATE(7867)] = 297950, + [SMALL_STATE(7868)] = 298020, + [SMALL_STATE(7869)] = 298090, + [SMALL_STATE(7870)] = 298160, + [SMALL_STATE(7871)] = 298230, + [SMALL_STATE(7872)] = 298300, + [SMALL_STATE(7873)] = 298364, + [SMALL_STATE(7874)] = 298434, + [SMALL_STATE(7875)] = 298504, + [SMALL_STATE(7876)] = 298568, + [SMALL_STATE(7877)] = 298638, + [SMALL_STATE(7878)] = 298708, + [SMALL_STATE(7879)] = 298782, + [SMALL_STATE(7880)] = 298852, + [SMALL_STATE(7881)] = 298922, + [SMALL_STATE(7882)] = 298992, + [SMALL_STATE(7883)] = 299062, + [SMALL_STATE(7884)] = 299114, + [SMALL_STATE(7885)] = 299184, + [SMALL_STATE(7886)] = 299254, + [SMALL_STATE(7887)] = 299324, + [SMALL_STATE(7888)] = 299394, + [SMALL_STATE(7889)] = 299464, + [SMALL_STATE(7890)] = 299534, + [SMALL_STATE(7891)] = 299604, + [SMALL_STATE(7892)] = 299674, + [SMALL_STATE(7893)] = 299744, + [SMALL_STATE(7894)] = 299814, + [SMALL_STATE(7895)] = 299884, + [SMALL_STATE(7896)] = 299954, + [SMALL_STATE(7897)] = 300024, + [SMALL_STATE(7898)] = 300094, + [SMALL_STATE(7899)] = 300164, + [SMALL_STATE(7900)] = 300234, + [SMALL_STATE(7901)] = 300304, + [SMALL_STATE(7902)] = 300374, + [SMALL_STATE(7903)] = 300449, + [SMALL_STATE(7904)] = 300524, + [SMALL_STATE(7905)] = 300599, + [SMALL_STATE(7906)] = 300662, + [SMALL_STATE(7907)] = 300725, + [SMALL_STATE(7908)] = 300788, + [SMALL_STATE(7909)] = 300851, + [SMALL_STATE(7910)] = 300926, + [SMALL_STATE(7911)] = 300989, + [SMALL_STATE(7912)] = 301052, + [SMALL_STATE(7913)] = 301115, + [SMALL_STATE(7914)] = 301178, + [SMALL_STATE(7915)] = 301253, + [SMALL_STATE(7916)] = 301328, + [SMALL_STATE(7917)] = 301391, + [SMALL_STATE(7918)] = 301454, + [SMALL_STATE(7919)] = 301517, + [SMALL_STATE(7920)] = 301592, + [SMALL_STATE(7921)] = 301655, + [SMALL_STATE(7922)] = 301718, + [SMALL_STATE(7923)] = 301793, + [SMALL_STATE(7924)] = 301836, + [SMALL_STATE(7925)] = 301899, + [SMALL_STATE(7926)] = 301962, + [SMALL_STATE(7927)] = 302025, + [SMALL_STATE(7928)] = 302088, + [SMALL_STATE(7929)] = 302151, + [SMALL_STATE(7930)] = 302194, + [SMALL_STATE(7931)] = 302269, + [SMALL_STATE(7932)] = 302312, + [SMALL_STATE(7933)] = 302355, + [SMALL_STATE(7934)] = 302418, + [SMALL_STATE(7935)] = 302493, + [SMALL_STATE(7936)] = 302556, + [SMALL_STATE(7937)] = 302631, + [SMALL_STATE(7938)] = 302694, + [SMALL_STATE(7939)] = 302769, + [SMALL_STATE(7940)] = 302844, + [SMALL_STATE(7941)] = 302919, + [SMALL_STATE(7942)] = 302994, + [SMALL_STATE(7943)] = 303069, + [SMALL_STATE(7944)] = 303144, + [SMALL_STATE(7945)] = 303207, + [SMALL_STATE(7946)] = 303282, + [SMALL_STATE(7947)] = 303345, + [SMALL_STATE(7948)] = 303408, + [SMALL_STATE(7949)] = 303483, + [SMALL_STATE(7950)] = 303546, + [SMALL_STATE(7951)] = 303621, + [SMALL_STATE(7952)] = 303684, + [SMALL_STATE(7953)] = 303747, + [SMALL_STATE(7954)] = 303810, + [SMALL_STATE(7955)] = 303873, + [SMALL_STATE(7956)] = 303936, + [SMALL_STATE(7957)] = 303999, + [SMALL_STATE(7958)] = 304062, + [SMALL_STATE(7959)] = 304125, + [SMALL_STATE(7960)] = 304188, + [SMALL_STATE(7961)] = 304263, + [SMALL_STATE(7962)] = 304338, + [SMALL_STATE(7963)] = 304413, + [SMALL_STATE(7964)] = 304476, + [SMALL_STATE(7965)] = 304551, + [SMALL_STATE(7966)] = 304626, + [SMALL_STATE(7967)] = 304689, + [SMALL_STATE(7968)] = 304752, + [SMALL_STATE(7969)] = 304815, + [SMALL_STATE(7970)] = 304878, + [SMALL_STATE(7971)] = 304915, + [SMALL_STATE(7972)] = 304978, + [SMALL_STATE(7973)] = 305041, + [SMALL_STATE(7974)] = 305104, + [SMALL_STATE(7975)] = 305179, + [SMALL_STATE(7976)] = 305242, + [SMALL_STATE(7977)] = 305305, + [SMALL_STATE(7978)] = 305368, + [SMALL_STATE(7979)] = 305431, + [SMALL_STATE(7980)] = 305506, + [SMALL_STATE(7981)] = 305580, + [SMALL_STATE(7982)] = 305616, + [SMALL_STATE(7983)] = 305670, + [SMALL_STATE(7984)] = 305744, + [SMALL_STATE(7985)] = 305812, + [SMALL_STATE(7986)] = 305880, + [SMALL_STATE(7987)] = 305948, + [SMALL_STATE(7988)] = 306016, + [SMALL_STATE(7989)] = 306084, + [SMALL_STATE(7990)] = 306158, + [SMALL_STATE(7991)] = 306220, + [SMALL_STATE(7992)] = 306282, + [SMALL_STATE(7993)] = 306344, + [SMALL_STATE(7994)] = 306383, + [SMALL_STATE(7995)] = 306442, + [SMALL_STATE(7996)] = 306477, + [SMALL_STATE(7997)] = 306516, + [SMALL_STATE(7998)] = 306551, + [SMALL_STATE(7999)] = 306610, + [SMALL_STATE(8000)] = 306641, + [SMALL_STATE(8001)] = 306700, + [SMALL_STATE(8002)] = 306731, + [SMALL_STATE(8003)] = 306790, + [SMALL_STATE(8004)] = 306825, + [SMALL_STATE(8005)] = 306864, + [SMALL_STATE(8006)] = 306923, + [SMALL_STATE(8007)] = 306982, + [SMALL_STATE(8008)] = 307041, + [SMALL_STATE(8009)] = 307100, + [SMALL_STATE(8010)] = 307147, + [SMALL_STATE(8011)] = 307206, + [SMALL_STATE(8012)] = 307245, + [SMALL_STATE(8013)] = 307304, + [SMALL_STATE(8014)] = 307343, + [SMALL_STATE(8015)] = 307402, + [SMALL_STATE(8016)] = 307461, + [SMALL_STATE(8017)] = 307520, + [SMALL_STATE(8018)] = 307579, + [SMALL_STATE(8019)] = 307638, + [SMALL_STATE(8020)] = 307677, + [SMALL_STATE(8021)] = 307736, + [SMALL_STATE(8022)] = 307767, + [SMALL_STATE(8023)] = 307806, + [SMALL_STATE(8024)] = 307845, + [SMALL_STATE(8025)] = 307904, + [SMALL_STATE(8026)] = 307943, + [SMALL_STATE(8027)] = 308002, + [SMALL_STATE(8028)] = 308033, + [SMALL_STATE(8029)] = 308064, + [SMALL_STATE(8030)] = 308123, + [SMALL_STATE(8031)] = 308182, + [SMALL_STATE(8032)] = 308213, + [SMALL_STATE(8033)] = 308244, + [SMALL_STATE(8034)] = 308275, + [SMALL_STATE(8035)] = 308334, + [SMALL_STATE(8036)] = 308393, + [SMALL_STATE(8037)] = 308452, + [SMALL_STATE(8038)] = 308483, + [SMALL_STATE(8039)] = 308542, + [SMALL_STATE(8040)] = 308573, + [SMALL_STATE(8041)] = 308604, + [SMALL_STATE(8042)] = 308635, + [SMALL_STATE(8043)] = 308666, + [SMALL_STATE(8044)] = 308697, + [SMALL_STATE(8045)] = 308728, + [SMALL_STATE(8046)] = 308787, + [SMALL_STATE(8047)] = 308846, + [SMALL_STATE(8048)] = 308905, + [SMALL_STATE(8049)] = 308940, + [SMALL_STATE(8050)] = 308971, + [SMALL_STATE(8051)] = 309010, + [SMALL_STATE(8052)] = 309041, + [SMALL_STATE(8053)] = 309072, + [SMALL_STATE(8054)] = 309131, + [SMALL_STATE(8055)] = 309162, + [SMALL_STATE(8056)] = 309195, + [SMALL_STATE(8057)] = 309226, + [SMALL_STATE(8058)] = 309280, + [SMALL_STATE(8059)] = 309310, + [SMALL_STATE(8060)] = 309352, + [SMALL_STATE(8061)] = 309394, + [SMALL_STATE(8062)] = 309436, + [SMALL_STATE(8063)] = 309478, + [SMALL_STATE(8064)] = 309520, + [SMALL_STATE(8065)] = 309562, + [SMALL_STATE(8066)] = 309604, + [SMALL_STATE(8067)] = 309646, + [SMALL_STATE(8068)] = 309680, + [SMALL_STATE(8069)] = 309734, + [SMALL_STATE(8070)] = 309782, + [SMALL_STATE(8071)] = 309833, + [SMALL_STATE(8072)] = 309886, + [SMALL_STATE(8073)] = 309937, + [SMALL_STATE(8074)] = 309968, + [SMALL_STATE(8075)] = 310029, + [SMALL_STATE(8076)] = 310080, + [SMALL_STATE(8077)] = 310131, + [SMALL_STATE(8078)] = 310182, + [SMALL_STATE(8079)] = 310233, + [SMALL_STATE(8080)] = 310266, + [SMALL_STATE(8081)] = 310317, + [SMALL_STATE(8082)] = 310362, + [SMALL_STATE(8083)] = 310423, + [SMALL_STATE(8084)] = 310474, + [SMALL_STATE(8085)] = 310525, + [SMALL_STATE(8086)] = 310576, + [SMALL_STATE(8087)] = 310629, + [SMALL_STATE(8088)] = 310682, + [SMALL_STATE(8089)] = 310711, + [SMALL_STATE(8090)] = 310752, + [SMALL_STATE(8091)] = 310793, + [SMALL_STATE(8092)] = 310836, + [SMALL_STATE(8093)] = 310897, + [SMALL_STATE(8094)] = 310938, + [SMALL_STATE(8095)] = 310979, + [SMALL_STATE(8096)] = 311008, + [SMALL_STATE(8097)] = 311059, + [SMALL_STATE(8098)] = 311102, + [SMALL_STATE(8099)] = 311155, + [SMALL_STATE(8100)] = 311196, + [SMALL_STATE(8101)] = 311237, + [SMALL_STATE(8102)] = 311278, + [SMALL_STATE(8103)] = 311319, + [SMALL_STATE(8104)] = 311372, + [SMALL_STATE(8105)] = 311423, + [SMALL_STATE(8106)] = 311476, + [SMALL_STATE(8107)] = 311527, + [SMALL_STATE(8108)] = 311588, + [SMALL_STATE(8109)] = 311649, + [SMALL_STATE(8110)] = 311682, + [SMALL_STATE(8111)] = 311733, + [SMALL_STATE(8112)] = 311786, + [SMALL_STATE(8113)] = 311829, + [SMALL_STATE(8114)] = 311884, + [SMALL_STATE(8115)] = 311935, + [SMALL_STATE(8116)] = 311986, + [SMALL_STATE(8117)] = 312047, + [SMALL_STATE(8118)] = 312100, + [SMALL_STATE(8119)] = 312161, + [SMALL_STATE(8120)] = 312214, + [SMALL_STATE(8121)] = 312269, + [SMALL_STATE(8122)] = 312298, + [SMALL_STATE(8123)] = 312349, + [SMALL_STATE(8124)] = 312402, + [SMALL_STATE(8125)] = 312455, + [SMALL_STATE(8126)] = 312510, + [SMALL_STATE(8127)] = 312563, + [SMALL_STATE(8128)] = 312614, + [SMALL_STATE(8129)] = 312665, + [SMALL_STATE(8130)] = 312698, + [SMALL_STATE(8131)] = 312753, + [SMALL_STATE(8132)] = 312806, + [SMALL_STATE(8133)] = 312859, + [SMALL_STATE(8134)] = 312910, + [SMALL_STATE(8135)] = 312961, + [SMALL_STATE(8136)] = 313014, + [SMALL_STATE(8137)] = 313065, + [SMALL_STATE(8138)] = 313094, + [SMALL_STATE(8139)] = 313123, + [SMALL_STATE(8140)] = 313174, + [SMALL_STATE(8141)] = 313225, + [SMALL_STATE(8142)] = 313276, + [SMALL_STATE(8143)] = 313327, + [SMALL_STATE(8144)] = 313378, + [SMALL_STATE(8145)] = 313429, + [SMALL_STATE(8146)] = 313475, + [SMALL_STATE(8147)] = 313521, + [SMALL_STATE(8148)] = 313573, + [SMALL_STATE(8149)] = 313617, + [SMALL_STATE(8150)] = 313645, + [SMALL_STATE(8151)] = 313687, + [SMALL_STATE(8152)] = 313727, + [SMALL_STATE(8153)] = 313763, + [SMALL_STATE(8154)] = 313797, + [SMALL_STATE(8155)] = 313825, + [SMALL_STATE(8156)] = 313871, + [SMALL_STATE(8157)] = 313911, + [SMALL_STATE(8158)] = 313943, + [SMALL_STATE(8159)] = 313993, + [SMALL_STATE(8160)] = 314021, + [SMALL_STATE(8161)] = 314049, + [SMALL_STATE(8162)] = 314089, + [SMALL_STATE(8163)] = 314117, + [SMALL_STATE(8164)] = 314157, + [SMALL_STATE(8165)] = 314207, + [SMALL_STATE(8166)] = 314247, + [SMALL_STATE(8167)] = 314287, + [SMALL_STATE(8168)] = 314327, + [SMALL_STATE(8169)] = 314367, + [SMALL_STATE(8170)] = 314407, + [SMALL_STATE(8171)] = 314457, + [SMALL_STATE(8172)] = 314497, + [SMALL_STATE(8173)] = 314549, + [SMALL_STATE(8174)] = 314589, + [SMALL_STATE(8175)] = 314629, + [SMALL_STATE(8176)] = 314669, + [SMALL_STATE(8177)] = 314709, + [SMALL_STATE(8178)] = 314749, + [SMALL_STATE(8179)] = 314789, + [SMALL_STATE(8180)] = 314841, + [SMALL_STATE(8181)] = 314885, + [SMALL_STATE(8182)] = 314937, + [SMALL_STATE(8183)] = 314977, + [SMALL_STATE(8184)] = 315017, + [SMALL_STATE(8185)] = 315057, + [SMALL_STATE(8186)] = 315097, + [SMALL_STATE(8187)] = 315137, + [SMALL_STATE(8188)] = 315187, + [SMALL_STATE(8189)] = 315237, + [SMALL_STATE(8190)] = 315265, + [SMALL_STATE(8191)] = 315293, + [SMALL_STATE(8192)] = 315343, + [SMALL_STATE(8193)] = 315383, + [SMALL_STATE(8194)] = 315411, + [SMALL_STATE(8195)] = 315461, + [SMALL_STATE(8196)] = 315511, + [SMALL_STATE(8197)] = 315561, + [SMALL_STATE(8198)] = 315593, + [SMALL_STATE(8199)] = 315643, + [SMALL_STATE(8200)] = 315693, + [SMALL_STATE(8201)] = 315721, + [SMALL_STATE(8202)] = 315771, + [SMALL_STATE(8203)] = 315821, + [SMALL_STATE(8204)] = 315861, + [SMALL_STATE(8205)] = 315911, + [SMALL_STATE(8206)] = 315961, + [SMALL_STATE(8207)] = 316011, + [SMALL_STATE(8208)] = 316061, + [SMALL_STATE(8209)] = 316101, + [SMALL_STATE(8210)] = 316149, + [SMALL_STATE(8211)] = 316189, + [SMALL_STATE(8212)] = 316229, + [SMALL_STATE(8213)] = 316269, + [SMALL_STATE(8214)] = 316321, + [SMALL_STATE(8215)] = 316361, + [SMALL_STATE(8216)] = 316401, + [SMALL_STATE(8217)] = 316441, + [SMALL_STATE(8218)] = 316487, + [SMALL_STATE(8219)] = 316527, + [SMALL_STATE(8220)] = 316567, + [SMALL_STATE(8221)] = 316607, + [SMALL_STATE(8222)] = 316647, + [SMALL_STATE(8223)] = 316697, + [SMALL_STATE(8224)] = 316737, + [SMALL_STATE(8225)] = 316777, + [SMALL_STATE(8226)] = 316817, + [SMALL_STATE(8227)] = 316857, + [SMALL_STATE(8228)] = 316897, + [SMALL_STATE(8229)] = 316937, + [SMALL_STATE(8230)] = 316977, + [SMALL_STATE(8231)] = 317005, + [SMALL_STATE(8232)] = 317045, + [SMALL_STATE(8233)] = 317085, + [SMALL_STATE(8234)] = 317125, + [SMALL_STATE(8235)] = 317175, + [SMALL_STATE(8236)] = 317220, + [SMALL_STATE(8237)] = 317269, + [SMALL_STATE(8238)] = 317306, + [SMALL_STATE(8239)] = 317353, + [SMALL_STATE(8240)] = 317400, + [SMALL_STATE(8241)] = 317447, + [SMALL_STATE(8242)] = 317494, + [SMALL_STATE(8243)] = 317521, + [SMALL_STATE(8244)] = 317548, + [SMALL_STATE(8245)] = 317593, + [SMALL_STATE(8246)] = 317638, + [SMALL_STATE(8247)] = 317667, + [SMALL_STATE(8248)] = 317714, + [SMALL_STATE(8249)] = 317747, + [SMALL_STATE(8250)] = 317790, + [SMALL_STATE(8251)] = 317841, + [SMALL_STATE(8252)] = 317874, + [SMALL_STATE(8253)] = 317925, + [SMALL_STATE(8254)] = 317976, + [SMALL_STATE(8255)] = 318027, + [SMALL_STATE(8256)] = 318078, + [SMALL_STATE(8257)] = 318129, + [SMALL_STATE(8258)] = 318180, + [SMALL_STATE(8259)] = 318227, + [SMALL_STATE(8260)] = 318272, + [SMALL_STATE(8261)] = 318309, + [SMALL_STATE(8262)] = 318354, + [SMALL_STATE(8263)] = 318385, + [SMALL_STATE(8264)] = 318430, + [SMALL_STATE(8265)] = 318481, + [SMALL_STATE(8266)] = 318528, + [SMALL_STATE(8267)] = 318573, + [SMALL_STATE(8268)] = 318600, + [SMALL_STATE(8269)] = 318647, + [SMALL_STATE(8270)] = 318694, + [SMALL_STATE(8271)] = 318739, + [SMALL_STATE(8272)] = 318790, + [SMALL_STATE(8273)] = 318817, + [SMALL_STATE(8274)] = 318864, + [SMALL_STATE(8275)] = 318891, + [SMALL_STATE(8276)] = 318918, + [SMALL_STATE(8277)] = 318969, + [SMALL_STATE(8278)] = 318996, + [SMALL_STATE(8279)] = 319041, + [SMALL_STATE(8280)] = 319072, + [SMALL_STATE(8281)] = 319123, + [SMALL_STATE(8282)] = 319170, + [SMALL_STATE(8283)] = 319221, + [SMALL_STATE(8284)] = 319248, + [SMALL_STATE(8285)] = 319275, + [SMALL_STATE(8286)] = 319326, + [SMALL_STATE(8287)] = 319371, + [SMALL_STATE(8288)] = 319418, + [SMALL_STATE(8289)] = 319467, + [SMALL_STATE(8290)] = 319518, + [SMALL_STATE(8291)] = 319545, + [SMALL_STATE(8292)] = 319572, + [SMALL_STATE(8293)] = 319599, + [SMALL_STATE(8294)] = 319626, + [SMALL_STATE(8295)] = 319677, + [SMALL_STATE(8296)] = 319728, + [SMALL_STATE(8297)] = 319755, + [SMALL_STATE(8298)] = 319802, + [SMALL_STATE(8299)] = 319829, + [SMALL_STATE(8300)] = 319876, + [SMALL_STATE(8301)] = 319903, + [SMALL_STATE(8302)] = 319954, + [SMALL_STATE(8303)] = 320005, + [SMALL_STATE(8304)] = 320056, + [SMALL_STATE(8305)] = 320105, + [SMALL_STATE(8306)] = 320132, + [SMALL_STATE(8307)] = 320183, + [SMALL_STATE(8308)] = 320234, + [SMALL_STATE(8309)] = 320281, + [SMALL_STATE(8310)] = 320332, + [SMALL_STATE(8311)] = 320377, + [SMALL_STATE(8312)] = 320428, + [SMALL_STATE(8313)] = 320473, + [SMALL_STATE(8314)] = 320500, + [SMALL_STATE(8315)] = 320545, + [SMALL_STATE(8316)] = 320574, + [SMALL_STATE(8317)] = 320601, + [SMALL_STATE(8318)] = 320628, + [SMALL_STATE(8319)] = 320673, + [SMALL_STATE(8320)] = 320700, + [SMALL_STATE(8321)] = 320755, + [SMALL_STATE(8322)] = 320802, + [SMALL_STATE(8323)] = 320835, + [SMALL_STATE(8324)] = 320886, + [SMALL_STATE(8325)] = 320929, + [SMALL_STATE(8326)] = 320980, + [SMALL_STATE(8327)] = 321021, + [SMALL_STATE(8328)] = 321068, + [SMALL_STATE(8329)] = 321113, + [SMALL_STATE(8330)] = 321140, + [SMALL_STATE(8331)] = 321179, + [SMALL_STATE(8332)] = 321216, + [SMALL_STATE(8333)] = 321249, + [SMALL_STATE(8334)] = 321296, + [SMALL_STATE(8335)] = 321333, + [SMALL_STATE(8336)] = 321384, + [SMALL_STATE(8337)] = 321435, + [SMALL_STATE(8338)] = 321486, + [SMALL_STATE(8339)] = 321513, + [SMALL_STATE(8340)] = 321550, + [SMALL_STATE(8341)] = 321577, + [SMALL_STATE(8342)] = 321604, + [SMALL_STATE(8343)] = 321631, + [SMALL_STATE(8344)] = 321658, + [SMALL_STATE(8345)] = 321693, + [SMALL_STATE(8346)] = 321742, + [SMALL_STATE(8347)] = 321787, + [SMALL_STATE(8348)] = 321820, + [SMALL_STATE(8349)] = 321847, + [SMALL_STATE(8350)] = 321884, + [SMALL_STATE(8351)] = 321929, + [SMALL_STATE(8352)] = 321980, + [SMALL_STATE(8353)] = 322011, + [SMALL_STATE(8354)] = 322038, + [SMALL_STATE(8355)] = 322065, + [SMALL_STATE(8356)] = 322092, + [SMALL_STATE(8357)] = 322137, + [SMALL_STATE(8358)] = 322192, + [SMALL_STATE(8359)] = 322241, + [SMALL_STATE(8360)] = 322286, + [SMALL_STATE(8361)] = 322335, + [SMALL_STATE(8362)] = 322389, + [SMALL_STATE(8363)] = 322415, + [SMALL_STATE(8364)] = 322441, + [SMALL_STATE(8365)] = 322491, + [SMALL_STATE(8366)] = 322541, + [SMALL_STATE(8367)] = 322567, + [SMALL_STATE(8368)] = 322601, + [SMALL_STATE(8369)] = 322649, + [SMALL_STATE(8370)] = 322703, + [SMALL_STATE(8371)] = 322757, + [SMALL_STATE(8372)] = 322809, + [SMALL_STATE(8373)] = 322847, + [SMALL_STATE(8374)] = 322881, + [SMALL_STATE(8375)] = 322935, + [SMALL_STATE(8376)] = 322983, + [SMALL_STATE(8377)] = 323033, + [SMALL_STATE(8378)] = 323071, + [SMALL_STATE(8379)] = 323109, + [SMALL_STATE(8380)] = 323151, + [SMALL_STATE(8381)] = 323177, + [SMALL_STATE(8382)] = 323215, + [SMALL_STATE(8383)] = 323245, + [SMALL_STATE(8384)] = 323271, + [SMALL_STATE(8385)] = 323325, + [SMALL_STATE(8386)] = 323377, + [SMALL_STATE(8387)] = 323415, + [SMALL_STATE(8388)] = 323441, + [SMALL_STATE(8389)] = 323467, + [SMALL_STATE(8390)] = 323505, + [SMALL_STATE(8391)] = 323531, + [SMALL_STATE(8392)] = 323565, + [SMALL_STATE(8393)] = 323601, + [SMALL_STATE(8394)] = 323631, + [SMALL_STATE(8395)] = 323657, + [SMALL_STATE(8396)] = 323683, + [SMALL_STATE(8397)] = 323737, + [SMALL_STATE(8398)] = 323787, + [SMALL_STATE(8399)] = 323813, + [SMALL_STATE(8400)] = 323845, + [SMALL_STATE(8401)] = 323873, + [SMALL_STATE(8402)] = 323909, + [SMALL_STATE(8403)] = 323961, + [SMALL_STATE(8404)] = 324007, + [SMALL_STATE(8405)] = 324061, + [SMALL_STATE(8406)] = 324115, + [SMALL_STATE(8407)] = 324141, + [SMALL_STATE(8408)] = 324167, + [SMALL_STATE(8409)] = 324203, + [SMALL_STATE(8410)] = 324255, + [SMALL_STATE(8411)] = 324291, + [SMALL_STATE(8412)] = 324321, + [SMALL_STATE(8413)] = 324355, + [SMALL_STATE(8414)] = 324389, + [SMALL_STATE(8415)] = 324423, + [SMALL_STATE(8416)] = 324457, + [SMALL_STATE(8417)] = 324491, + [SMALL_STATE(8418)] = 324517, + [SMALL_STATE(8419)] = 324555, + [SMALL_STATE(8420)] = 324581, + [SMALL_STATE(8421)] = 324607, + [SMALL_STATE(8422)] = 324643, + [SMALL_STATE(8423)] = 324669, + [SMALL_STATE(8424)] = 324695, + [SMALL_STATE(8425)] = 324729, + [SMALL_STATE(8426)] = 324779, + [SMALL_STATE(8427)] = 324805, + [SMALL_STATE(8428)] = 324835, + [SMALL_STATE(8429)] = 324869, + [SMALL_STATE(8430)] = 324903, + [SMALL_STATE(8431)] = 324937, + [SMALL_STATE(8432)] = 324971, + [SMALL_STATE(8433)] = 325005, + [SMALL_STATE(8434)] = 325035, + [SMALL_STATE(8435)] = 325069, + [SMALL_STATE(8436)] = 325103, + [SMALL_STATE(8437)] = 325137, + [SMALL_STATE(8438)] = 325167, + [SMALL_STATE(8439)] = 325201, + [SMALL_STATE(8440)] = 325253, + [SMALL_STATE(8441)] = 325291, + [SMALL_STATE(8442)] = 325341, + [SMALL_STATE(8443)] = 325374, + [SMALL_STATE(8444)] = 325421, + [SMALL_STATE(8445)] = 325468, + [SMALL_STATE(8446)] = 325515, + [SMALL_STATE(8447)] = 325562, + [SMALL_STATE(8448)] = 325609, + [SMALL_STATE(8449)] = 325656, + [SMALL_STATE(8450)] = 325689, + [SMALL_STATE(8451)] = 325736, + [SMALL_STATE(8452)] = 325779, + [SMALL_STATE(8453)] = 325810, + [SMALL_STATE(8454)] = 325843, + [SMALL_STATE(8455)] = 325890, + [SMALL_STATE(8456)] = 325937, + [SMALL_STATE(8457)] = 325984, + [SMALL_STATE(8458)] = 326031, + [SMALL_STATE(8459)] = 326064, + [SMALL_STATE(8460)] = 326111, + [SMALL_STATE(8461)] = 326144, + [SMALL_STATE(8462)] = 326187, + [SMALL_STATE(8463)] = 326220, + [SMALL_STATE(8464)] = 326261, + [SMALL_STATE(8465)] = 326304, + [SMALL_STATE(8466)] = 326347, + [SMALL_STATE(8467)] = 326394, + [SMALL_STATE(8468)] = 326441, + [SMALL_STATE(8469)] = 326488, + [SMALL_STATE(8470)] = 326535, + [SMALL_STATE(8471)] = 326582, + [SMALL_STATE(8472)] = 326629, + [SMALL_STATE(8473)] = 326676, + [SMALL_STATE(8474)] = 326723, + [SMALL_STATE(8475)] = 326764, + [SMALL_STATE(8476)] = 326793, + [SMALL_STATE(8477)] = 326820, + [SMALL_STATE(8478)] = 326867, + [SMALL_STATE(8479)] = 326904, + [SMALL_STATE(8480)] = 326941, + [SMALL_STATE(8481)] = 326978, + [SMALL_STATE(8482)] = 327015, + [SMALL_STATE(8483)] = 327052, + [SMALL_STATE(8484)] = 327089, + [SMALL_STATE(8485)] = 327126, + [SMALL_STATE(8486)] = 327163, + [SMALL_STATE(8487)] = 327210, + [SMALL_STATE(8488)] = 327251, + [SMALL_STATE(8489)] = 327276, + [SMALL_STATE(8490)] = 327307, + [SMALL_STATE(8491)] = 327354, + [SMALL_STATE(8492)] = 327387, + [SMALL_STATE(8493)] = 327434, + [SMALL_STATE(8494)] = 327481, + [SMALL_STATE(8495)] = 327528, + [SMALL_STATE(8496)] = 327575, + [SMALL_STATE(8497)] = 327608, + [SMALL_STATE(8498)] = 327655, + [SMALL_STATE(8499)] = 327702, + [SMALL_STATE(8500)] = 327735, + [SMALL_STATE(8501)] = 327766, + [SMALL_STATE(8502)] = 327813, + [SMALL_STATE(8503)] = 327845, + [SMALL_STATE(8504)] = 327871, + [SMALL_STATE(8505)] = 327895, + [SMALL_STATE(8506)] = 327919, + [SMALL_STATE(8507)] = 327943, + [SMALL_STATE(8508)] = 327983, + [SMALL_STATE(8509)] = 328007, + [SMALL_STATE(8510)] = 328043, + [SMALL_STATE(8511)] = 328077, + [SMALL_STATE(8512)] = 328109, + [SMALL_STATE(8513)] = 328133, + [SMALL_STATE(8514)] = 328157, + [SMALL_STATE(8515)] = 328181, + [SMALL_STATE(8516)] = 328205, + [SMALL_STATE(8517)] = 328229, + [SMALL_STATE(8518)] = 328265, + [SMALL_STATE(8519)] = 328299, + [SMALL_STATE(8520)] = 328331, + [SMALL_STATE(8521)] = 328375, + [SMALL_STATE(8522)] = 328409, + [SMALL_STATE(8523)] = 328441, + [SMALL_STATE(8524)] = 328473, + [SMALL_STATE(8525)] = 328507, + [SMALL_STATE(8526)] = 328539, + [SMALL_STATE(8527)] = 328583, + [SMALL_STATE(8528)] = 328607, + [SMALL_STATE(8529)] = 328651, + [SMALL_STATE(8530)] = 328675, + [SMALL_STATE(8531)] = 328699, + [SMALL_STATE(8532)] = 328723, + [SMALL_STATE(8533)] = 328747, + [SMALL_STATE(8534)] = 328771, + [SMALL_STATE(8535)] = 328807, + [SMALL_STATE(8536)] = 328831, + [SMALL_STATE(8537)] = 328867, + [SMALL_STATE(8538)] = 328891, + [SMALL_STATE(8539)] = 328923, + [SMALL_STATE(8540)] = 328967, + [SMALL_STATE(8541)] = 329011, + [SMALL_STATE(8542)] = 329035, + [SMALL_STATE(8543)] = 329059, + [SMALL_STATE(8544)] = 329083, + [SMALL_STATE(8545)] = 329107, + [SMALL_STATE(8546)] = 329135, + [SMALL_STATE(8547)] = 329159, + [SMALL_STATE(8548)] = 329203, + [SMALL_STATE(8549)] = 329227, + [SMALL_STATE(8550)] = 329271, + [SMALL_STATE(8551)] = 329303, + [SMALL_STATE(8552)] = 329347, + [SMALL_STATE(8553)] = 329371, + [SMALL_STATE(8554)] = 329415, + [SMALL_STATE(8555)] = 329461, + [SMALL_STATE(8556)] = 329505, + [SMALL_STATE(8557)] = 329541, + [SMALL_STATE(8558)] = 329585, + [SMALL_STATE(8559)] = 329609, + [SMALL_STATE(8560)] = 329633, + [SMALL_STATE(8561)] = 329657, + [SMALL_STATE(8562)] = 329701, + [SMALL_STATE(8563)] = 329733, + [SMALL_STATE(8564)] = 329777, + [SMALL_STATE(8565)] = 329801, + [SMALL_STATE(8566)] = 329825, + [SMALL_STATE(8567)] = 329869, [SMALL_STATE(8568)] = 329913, - [SMALL_STATE(8569)] = 329937, - [SMALL_STATE(8570)] = 329963, - [SMALL_STATE(8571)] = 329987, - [SMALL_STATE(8572)] = 330011, - [SMALL_STATE(8573)] = 330035, - [SMALL_STATE(8574)] = 330059, - [SMALL_STATE(8575)] = 330083, - [SMALL_STATE(8576)] = 330107, - [SMALL_STATE(8577)] = 330131, - [SMALL_STATE(8578)] = 330155, - [SMALL_STATE(8579)] = 330201, - [SMALL_STATE(8580)] = 330225, - [SMALL_STATE(8581)] = 330269, - [SMALL_STATE(8582)] = 330313, - [SMALL_STATE(8583)] = 330337, - [SMALL_STATE(8584)] = 330371, - [SMALL_STATE(8585)] = 330395, - [SMALL_STATE(8586)] = 330427, - [SMALL_STATE(8587)] = 330451, - [SMALL_STATE(8588)] = 330485, - [SMALL_STATE(8589)] = 330517, - [SMALL_STATE(8590)] = 330541, - [SMALL_STATE(8591)] = 330565, - [SMALL_STATE(8592)] = 330609, - [SMALL_STATE(8593)] = 330633, - [SMALL_STATE(8594)] = 330667, - [SMALL_STATE(8595)] = 330691, - [SMALL_STATE(8596)] = 330715, - [SMALL_STATE(8597)] = 330739, - [SMALL_STATE(8598)] = 330767, - [SMALL_STATE(8599)] = 330791, - [SMALL_STATE(8600)] = 330833, - [SMALL_STATE(8601)] = 330877, - [SMALL_STATE(8602)] = 330901, - [SMALL_STATE(8603)] = 330925, - [SMALL_STATE(8604)] = 330954, - [SMALL_STATE(8605)] = 330989, - [SMALL_STATE(8606)] = 331030, - [SMALL_STATE(8607)] = 331065, + [SMALL_STATE(8569)] = 329947, + [SMALL_STATE(8570)] = 329971, + [SMALL_STATE(8571)] = 329995, + [SMALL_STATE(8572)] = 330019, + [SMALL_STATE(8573)] = 330043, + [SMALL_STATE(8574)] = 330067, + [SMALL_STATE(8575)] = 330091, + [SMALL_STATE(8576)] = 330115, + [SMALL_STATE(8577)] = 330139, + [SMALL_STATE(8578)] = 330163, + [SMALL_STATE(8579)] = 330187, + [SMALL_STATE(8580)] = 330219, + [SMALL_STATE(8581)] = 330243, + [SMALL_STATE(8582)] = 330267, + [SMALL_STATE(8583)] = 330309, + [SMALL_STATE(8584)] = 330333, + [SMALL_STATE(8585)] = 330377, + [SMALL_STATE(8586)] = 330401, + [SMALL_STATE(8587)] = 330425, + [SMALL_STATE(8588)] = 330449, + [SMALL_STATE(8589)] = 330473, + [SMALL_STATE(8590)] = 330517, + [SMALL_STATE(8591)] = 330551, + [SMALL_STATE(8592)] = 330575, + [SMALL_STATE(8593)] = 330609, + [SMALL_STATE(8594)] = 330653, + [SMALL_STATE(8595)] = 330677, + [SMALL_STATE(8596)] = 330701, + [SMALL_STATE(8597)] = 330735, + [SMALL_STATE(8598)] = 330774, + [SMALL_STATE(8599)] = 330807, + [SMALL_STATE(8600)] = 330842, + [SMALL_STATE(8601)] = 330871, + [SMALL_STATE(8602)] = 330900, + [SMALL_STATE(8603)] = 330935, + [SMALL_STATE(8604)] = 330968, + [SMALL_STATE(8605)] = 331001, + [SMALL_STATE(8606)] = 331036, + [SMALL_STATE(8607)] = 331071, [SMALL_STATE(8608)] = 331100, [SMALL_STATE(8609)] = 331129, - [SMALL_STATE(8610)] = 331164, - [SMALL_STATE(8611)] = 331193, - [SMALL_STATE(8612)] = 331222, - [SMALL_STATE(8613)] = 331257, - [SMALL_STATE(8614)] = 331296, - [SMALL_STATE(8615)] = 331325, - [SMALL_STATE(8616)] = 331354, - [SMALL_STATE(8617)] = 331383, - [SMALL_STATE(8618)] = 331418, - [SMALL_STATE(8619)] = 331453, - [SMALL_STATE(8620)] = 331494, - [SMALL_STATE(8621)] = 331523, - [SMALL_STATE(8622)] = 331552, + [SMALL_STATE(8610)] = 331158, + [SMALL_STATE(8611)] = 331187, + [SMALL_STATE(8612)] = 331216, + [SMALL_STATE(8613)] = 331251, + [SMALL_STATE(8614)] = 331286, + [SMALL_STATE(8615)] = 331315, + [SMALL_STATE(8616)] = 331344, + [SMALL_STATE(8617)] = 331379, + [SMALL_STATE(8618)] = 331406, + [SMALL_STATE(8619)] = 331449, + [SMALL_STATE(8620)] = 331482, + [SMALL_STATE(8621)] = 331511, + [SMALL_STATE(8622)] = 331546, [SMALL_STATE(8623)] = 331581, - [SMALL_STATE(8624)] = 331610, - [SMALL_STATE(8625)] = 331639, - [SMALL_STATE(8626)] = 331674, - [SMALL_STATE(8627)] = 331707, - [SMALL_STATE(8628)] = 331740, - [SMALL_STATE(8629)] = 331779, - [SMALL_STATE(8630)] = 331812, - [SMALL_STATE(8631)] = 331845, - [SMALL_STATE(8632)] = 331878, - [SMALL_STATE(8633)] = 331911, - [SMALL_STATE(8634)] = 331940, - [SMALL_STATE(8635)] = 331969, - [SMALL_STATE(8636)] = 331998, - [SMALL_STATE(8637)] = 332033, - [SMALL_STATE(8638)] = 332072, - [SMALL_STATE(8639)] = 332107, - [SMALL_STATE(8640)] = 332136, - [SMALL_STATE(8641)] = 332171, - [SMALL_STATE(8642)] = 332206, - [SMALL_STATE(8643)] = 332241, - [SMALL_STATE(8644)] = 332276, - [SMALL_STATE(8645)] = 332305, - [SMALL_STATE(8646)] = 332334, - [SMALL_STATE(8647)] = 332377, - [SMALL_STATE(8648)] = 332406, - [SMALL_STATE(8649)] = 332435, - [SMALL_STATE(8650)] = 332476, - [SMALL_STATE(8651)] = 332505, - [SMALL_STATE(8652)] = 332534, - [SMALL_STATE(8653)] = 332563, - [SMALL_STATE(8654)] = 332592, - [SMALL_STATE(8655)] = 332621, - [SMALL_STATE(8656)] = 332650, - [SMALL_STATE(8657)] = 332677, - [SMALL_STATE(8658)] = 332706, - [SMALL_STATE(8659)] = 332745, - [SMALL_STATE(8660)] = 332778, - [SMALL_STATE(8661)] = 332819, - [SMALL_STATE(8662)] = 332852, - [SMALL_STATE(8663)] = 332887, - [SMALL_STATE(8664)] = 332916, - [SMALL_STATE(8665)] = 332955, - [SMALL_STATE(8666)] = 332990, - [SMALL_STATE(8667)] = 333025, - [SMALL_STATE(8668)] = 333060, - [SMALL_STATE(8669)] = 333095, - [SMALL_STATE(8670)] = 333130, - [SMALL_STATE(8671)] = 333165, - [SMALL_STATE(8672)] = 333205, - [SMALL_STATE(8673)] = 333227, - [SMALL_STATE(8674)] = 333265, - [SMALL_STATE(8675)] = 333303, - [SMALL_STATE(8676)] = 333345, + [SMALL_STATE(8624)] = 331616, + [SMALL_STATE(8625)] = 331655, + [SMALL_STATE(8626)] = 331688, + [SMALL_STATE(8627)] = 331723, + [SMALL_STATE(8628)] = 331752, + [SMALL_STATE(8629)] = 331781, + [SMALL_STATE(8630)] = 331814, + [SMALL_STATE(8631)] = 331849, + [SMALL_STATE(8632)] = 331890, + [SMALL_STATE(8633)] = 331925, + [SMALL_STATE(8634)] = 331954, + [SMALL_STATE(8635)] = 331983, + [SMALL_STATE(8636)] = 332018, + [SMALL_STATE(8637)] = 332053, + [SMALL_STATE(8638)] = 332082, + [SMALL_STATE(8639)] = 332111, + [SMALL_STATE(8640)] = 332140, + [SMALL_STATE(8641)] = 332169, + [SMALL_STATE(8642)] = 332198, + [SMALL_STATE(8643)] = 332233, + [SMALL_STATE(8644)] = 332272, + [SMALL_STATE(8645)] = 332301, + [SMALL_STATE(8646)] = 332340, + [SMALL_STATE(8647)] = 332375, + [SMALL_STATE(8648)] = 332416, + [SMALL_STATE(8649)] = 332445, + [SMALL_STATE(8650)] = 332480, + [SMALL_STATE(8651)] = 332509, + [SMALL_STATE(8652)] = 332542, + [SMALL_STATE(8653)] = 332577, + [SMALL_STATE(8654)] = 332618, + [SMALL_STATE(8655)] = 332653, + [SMALL_STATE(8656)] = 332682, + [SMALL_STATE(8657)] = 332721, + [SMALL_STATE(8658)] = 332750, + [SMALL_STATE(8659)] = 332791, + [SMALL_STATE(8660)] = 332820, + [SMALL_STATE(8661)] = 332855, + [SMALL_STATE(8662)] = 332884, + [SMALL_STATE(8663)] = 332917, + [SMALL_STATE(8664)] = 332946, + [SMALL_STATE(8665)] = 332975, + [SMALL_STATE(8666)] = 333017, + [SMALL_STATE(8667)] = 333039, + [SMALL_STATE(8668)] = 333081, + [SMALL_STATE(8669)] = 333109, + [SMALL_STATE(8670)] = 333149, + [SMALL_STATE(8671)] = 333187, + [SMALL_STATE(8672)] = 333225, + [SMALL_STATE(8673)] = 333257, + [SMALL_STATE(8674)] = 333287, + [SMALL_STATE(8675)] = 333325, + [SMALL_STATE(8676)] = 333357, [SMALL_STATE(8677)] = 333387, - [SMALL_STATE(8678)] = 333425, - [SMALL_STATE(8679)] = 333451, - [SMALL_STATE(8680)] = 333477, - [SMALL_STATE(8681)] = 333501, + [SMALL_STATE(8678)] = 333419, + [SMALL_STATE(8679)] = 333449, + [SMALL_STATE(8680)] = 333479, + [SMALL_STATE(8681)] = 333511, [SMALL_STATE(8682)] = 333541, - [SMALL_STATE(8683)] = 333583, - [SMALL_STATE(8684)] = 333615, - [SMALL_STATE(8685)] = 333655, - [SMALL_STATE(8686)] = 333697, - [SMALL_STATE(8687)] = 333739, - [SMALL_STATE(8688)] = 333781, - [SMALL_STATE(8689)] = 333811, - [SMALL_STATE(8690)] = 333849, - [SMALL_STATE(8691)] = 333889, - [SMALL_STATE(8692)] = 333931, - [SMALL_STATE(8693)] = 333971, - [SMALL_STATE(8694)] = 333993, - [SMALL_STATE(8695)] = 334035, - [SMALL_STATE(8696)] = 334077, - [SMALL_STATE(8697)] = 334115, - [SMALL_STATE(8698)] = 334137, - [SMALL_STATE(8699)] = 334175, - [SMALL_STATE(8700)] = 334197, - [SMALL_STATE(8701)] = 334239, - [SMALL_STATE(8702)] = 334281, - [SMALL_STATE(8703)] = 334323, - [SMALL_STATE(8704)] = 334363, - [SMALL_STATE(8705)] = 334391, - [SMALL_STATE(8706)] = 334433, - [SMALL_STATE(8707)] = 334473, - [SMALL_STATE(8708)] = 334515, - [SMALL_STATE(8709)] = 334553, - [SMALL_STATE(8710)] = 334581, - [SMALL_STATE(8711)] = 334623, - [SMALL_STATE(8712)] = 334665, - [SMALL_STATE(8713)] = 334697, - [SMALL_STATE(8714)] = 334727, - [SMALL_STATE(8715)] = 334759, - [SMALL_STATE(8716)] = 334789, - [SMALL_STATE(8717)] = 334831, - [SMALL_STATE(8718)] = 334863, - [SMALL_STATE(8719)] = 334893, - [SMALL_STATE(8720)] = 334917, - [SMALL_STATE(8721)] = 334955, - [SMALL_STATE(8722)] = 334995, - [SMALL_STATE(8723)] = 335023, - [SMALL_STATE(8724)] = 335051, - [SMALL_STATE(8725)] = 335083, - [SMALL_STATE(8726)] = 335113, - [SMALL_STATE(8727)] = 335145, - [SMALL_STATE(8728)] = 335185, - [SMALL_STATE(8729)] = 335225, - [SMALL_STATE(8730)] = 335263, - [SMALL_STATE(8731)] = 335293, - [SMALL_STATE(8732)] = 335333, - [SMALL_STATE(8733)] = 335361, - [SMALL_STATE(8734)] = 335399, + [SMALL_STATE(8683)] = 333579, + [SMALL_STATE(8684)] = 333607, + [SMALL_STATE(8685)] = 333639, + [SMALL_STATE(8686)] = 333669, + [SMALL_STATE(8687)] = 333701, + [SMALL_STATE(8688)] = 333731, + [SMALL_STATE(8689)] = 333763, + [SMALL_STATE(8690)] = 333793, + [SMALL_STATE(8691)] = 333823, + [SMALL_STATE(8692)] = 333855, + [SMALL_STATE(8693)] = 333885, + [SMALL_STATE(8694)] = 333923, + [SMALL_STATE(8695)] = 333961, + [SMALL_STATE(8696)] = 334003, + [SMALL_STATE(8697)] = 334029, + [SMALL_STATE(8698)] = 334071, + [SMALL_STATE(8699)] = 334109, + [SMALL_STATE(8700)] = 334151, + [SMALL_STATE(8701)] = 334189, + [SMALL_STATE(8702)] = 334227, + [SMALL_STATE(8703)] = 334249, + [SMALL_STATE(8704)] = 334277, + [SMALL_STATE(8705)] = 334315, + [SMALL_STATE(8706)] = 334357, + [SMALL_STATE(8707)] = 334397, + [SMALL_STATE(8708)] = 334439, + [SMALL_STATE(8709)] = 334481, + [SMALL_STATE(8710)] = 334521, + [SMALL_STATE(8711)] = 334563, + [SMALL_STATE(8712)] = 334605, + [SMALL_STATE(8713)] = 334633, + [SMALL_STATE(8714)] = 334673, + [SMALL_STATE(8715)] = 334699, + [SMALL_STATE(8716)] = 334727, + [SMALL_STATE(8717)] = 334769, + [SMALL_STATE(8718)] = 334809, + [SMALL_STATE(8719)] = 334849, + [SMALL_STATE(8720)] = 334871, + [SMALL_STATE(8721)] = 334911, + [SMALL_STATE(8722)] = 334949, + [SMALL_STATE(8723)] = 334991, + [SMALL_STATE(8724)] = 335031, + [SMALL_STATE(8725)] = 335073, + [SMALL_STATE(8726)] = 335101, + [SMALL_STATE(8727)] = 335143, + [SMALL_STATE(8728)] = 335183, + [SMALL_STATE(8729)] = 335223, + [SMALL_STATE(8730)] = 335265, + [SMALL_STATE(8731)] = 335305, + [SMALL_STATE(8732)] = 335343, + [SMALL_STATE(8733)] = 335385, + [SMALL_STATE(8734)] = 335409, [SMALL_STATE(8735)] = 335437, - [SMALL_STATE(8736)] = 335467, - [SMALL_STATE(8737)] = 335497, - [SMALL_STATE(8738)] = 335529, - [SMALL_STATE(8739)] = 335571, - [SMALL_STATE(8740)] = 335613, - [SMALL_STATE(8741)] = 335653, - [SMALL_STATE(8742)] = 335693, - [SMALL_STATE(8743)] = 335735, - [SMALL_STATE(8744)] = 335767, - [SMALL_STATE(8745)] = 335797, - [SMALL_STATE(8746)] = 335839, - [SMALL_STATE(8747)] = 335881, - [SMALL_STATE(8748)] = 335921, - [SMALL_STATE(8749)] = 335961, - [SMALL_STATE(8750)] = 335991, - [SMALL_STATE(8751)] = 336019, - [SMALL_STATE(8752)] = 336059, - [SMALL_STATE(8753)] = 336097, - [SMALL_STATE(8754)] = 336139, - [SMALL_STATE(8755)] = 336181, - [SMALL_STATE(8756)] = 336223, - [SMALL_STATE(8757)] = 336265, - [SMALL_STATE(8758)] = 336307, - [SMALL_STATE(8759)] = 336335, - [SMALL_STATE(8760)] = 336373, - [SMALL_STATE(8761)] = 336395, - [SMALL_STATE(8762)] = 336433, - [SMALL_STATE(8763)] = 336475, - [SMALL_STATE(8764)] = 336517, - [SMALL_STATE(8765)] = 336545, - [SMALL_STATE(8766)] = 336571, - [SMALL_STATE(8767)] = 336604, - [SMALL_STATE(8768)] = 336639, + [SMALL_STATE(8736)] = 335477, + [SMALL_STATE(8737)] = 335501, + [SMALL_STATE(8738)] = 335543, + [SMALL_STATE(8739)] = 335583, + [SMALL_STATE(8740)] = 335625, + [SMALL_STATE(8741)] = 335665, + [SMALL_STATE(8742)] = 335707, + [SMALL_STATE(8743)] = 335749, + [SMALL_STATE(8744)] = 335771, + [SMALL_STATE(8745)] = 335813, + [SMALL_STATE(8746)] = 335855, + [SMALL_STATE(8747)] = 335897, + [SMALL_STATE(8748)] = 335935, + [SMALL_STATE(8749)] = 335977, + [SMALL_STATE(8750)] = 336019, + [SMALL_STATE(8751)] = 336061, + [SMALL_STATE(8752)] = 336087, + [SMALL_STATE(8753)] = 336109, + [SMALL_STATE(8754)] = 336151, + [SMALL_STATE(8755)] = 336193, + [SMALL_STATE(8756)] = 336233, + [SMALL_STATE(8757)] = 336273, + [SMALL_STATE(8758)] = 336315, + [SMALL_STATE(8759)] = 336353, + [SMALL_STATE(8760)] = 336381, + [SMALL_STATE(8761)] = 336414, + [SMALL_STATE(8762)] = 336449, + [SMALL_STATE(8763)] = 336480, + [SMALL_STATE(8764)] = 336513, + [SMALL_STATE(8765)] = 336542, + [SMALL_STATE(8766)] = 336575, + [SMALL_STATE(8767)] = 336602, + [SMALL_STATE(8768)] = 336637, [SMALL_STATE(8769)] = 336670, - [SMALL_STATE(8770)] = 336703, - [SMALL_STATE(8771)] = 336728, - [SMALL_STATE(8772)] = 336763, - [SMALL_STATE(8773)] = 336798, - [SMALL_STATE(8774)] = 336831, - [SMALL_STATE(8775)] = 336866, - [SMALL_STATE(8776)] = 336901, - [SMALL_STATE(8777)] = 336936, - [SMALL_STATE(8778)] = 336965, - [SMALL_STATE(8779)] = 336998, - [SMALL_STATE(8780)] = 337031, - [SMALL_STATE(8781)] = 337064, - [SMALL_STATE(8782)] = 337099, - [SMALL_STATE(8783)] = 337132, - [SMALL_STATE(8784)] = 337167, - [SMALL_STATE(8785)] = 337202, - [SMALL_STATE(8786)] = 337233, - [SMALL_STATE(8787)] = 337266, - [SMALL_STATE(8788)] = 337295, - [SMALL_STATE(8789)] = 337328, - [SMALL_STATE(8790)] = 337361, - [SMALL_STATE(8791)] = 337396, - [SMALL_STATE(8792)] = 337425, - [SMALL_STATE(8793)] = 337462, - [SMALL_STATE(8794)] = 337495, - [SMALL_STATE(8795)] = 337526, - [SMALL_STATE(8796)] = 337559, - [SMALL_STATE(8797)] = 337592, - [SMALL_STATE(8798)] = 337627, - [SMALL_STATE(8799)] = 337662, - [SMALL_STATE(8800)] = 337695, - [SMALL_STATE(8801)] = 337724, - [SMALL_STATE(8802)] = 337759, - [SMALL_STATE(8803)] = 337796, - [SMALL_STATE(8804)] = 337825, - [SMALL_STATE(8805)] = 337856, - [SMALL_STATE(8806)] = 337889, - [SMALL_STATE(8807)] = 337916, - [SMALL_STATE(8808)] = 337941, - [SMALL_STATE(8809)] = 337974, - [SMALL_STATE(8810)] = 338009, - [SMALL_STATE(8811)] = 338044, - [SMALL_STATE(8812)] = 338079, - [SMALL_STATE(8813)] = 338112, - [SMALL_STATE(8814)] = 338145, - [SMALL_STATE(8815)] = 338174, - [SMALL_STATE(8816)] = 338207, - [SMALL_STATE(8817)] = 338240, - [SMALL_STATE(8818)] = 338273, - [SMALL_STATE(8819)] = 338306, - [SMALL_STATE(8820)] = 338339, - [SMALL_STATE(8821)] = 338368, - [SMALL_STATE(8822)] = 338389, - [SMALL_STATE(8823)] = 338424, - [SMALL_STATE(8824)] = 338457, - [SMALL_STATE(8825)] = 338490, - [SMALL_STATE(8826)] = 338525, - [SMALL_STATE(8827)] = 338556, - [SMALL_STATE(8828)] = 338591, - [SMALL_STATE(8829)] = 338620, - [SMALL_STATE(8830)] = 338653, - [SMALL_STATE(8831)] = 338688, - [SMALL_STATE(8832)] = 338719, - [SMALL_STATE(8833)] = 338746, - [SMALL_STATE(8834)] = 338779, - [SMALL_STATE(8835)] = 338801, - [SMALL_STATE(8836)] = 338827, - [SMALL_STATE(8837)] = 338847, - [SMALL_STATE(8838)] = 338867, - [SMALL_STATE(8839)] = 338893, - [SMALL_STATE(8840)] = 338913, - [SMALL_STATE(8841)] = 338933, - [SMALL_STATE(8842)] = 338959, - [SMALL_STATE(8843)] = 338979, - [SMALL_STATE(8844)] = 339009, - [SMALL_STATE(8845)] = 339029, - [SMALL_STATE(8846)] = 339059, - [SMALL_STATE(8847)] = 339085, - [SMALL_STATE(8848)] = 339105, - [SMALL_STATE(8849)] = 339141, - [SMALL_STATE(8850)] = 339167, - [SMALL_STATE(8851)] = 339189, - [SMALL_STATE(8852)] = 339219, - [SMALL_STATE(8853)] = 339245, - [SMALL_STATE(8854)] = 339275, - [SMALL_STATE(8855)] = 339295, - [SMALL_STATE(8856)] = 339315, - [SMALL_STATE(8857)] = 339335, - [SMALL_STATE(8858)] = 339361, - [SMALL_STATE(8859)] = 339387, - [SMALL_STATE(8860)] = 339411, - [SMALL_STATE(8861)] = 339434, - [SMALL_STATE(8862)] = 339457, - [SMALL_STATE(8863)] = 339476, - [SMALL_STATE(8864)] = 339495, - [SMALL_STATE(8865)] = 339514, - [SMALL_STATE(8866)] = 339533, - [SMALL_STATE(8867)] = 339550, - [SMALL_STATE(8868)] = 339575, - [SMALL_STATE(8869)] = 339610, - [SMALL_STATE(8870)] = 339633, - [SMALL_STATE(8871)] = 339664, - [SMALL_STATE(8872)] = 339693, - [SMALL_STATE(8873)] = 339712, - [SMALL_STATE(8874)] = 339747, - [SMALL_STATE(8875)] = 339766, - [SMALL_STATE(8876)] = 339785, - [SMALL_STATE(8877)] = 339808, - [SMALL_STATE(8878)] = 339843, - [SMALL_STATE(8879)] = 339866, - [SMALL_STATE(8880)] = 339901, - [SMALL_STATE(8881)] = 339936, - [SMALL_STATE(8882)] = 339959, - [SMALL_STATE(8883)] = 339988, - [SMALL_STATE(8884)] = 340005, - [SMALL_STATE(8885)] = 340030, - [SMALL_STATE(8886)] = 340055, - [SMALL_STATE(8887)] = 340080, - [SMALL_STATE(8888)] = 340105, - [SMALL_STATE(8889)] = 340136, - [SMALL_STATE(8890)] = 340171, - [SMALL_STATE(8891)] = 340202, - [SMALL_STATE(8892)] = 340227, - [SMALL_STATE(8893)] = 340256, - [SMALL_STATE(8894)] = 340285, - [SMALL_STATE(8895)] = 340316, - [SMALL_STATE(8896)] = 340341, - [SMALL_STATE(8897)] = 340370, - [SMALL_STATE(8898)] = 340401, - [SMALL_STATE(8899)] = 340430, - [SMALL_STATE(8900)] = 340457, - [SMALL_STATE(8901)] = 340488, - [SMALL_STATE(8902)] = 340517, - [SMALL_STATE(8903)] = 340540, - [SMALL_STATE(8904)] = 340575, - [SMALL_STATE(8905)] = 340598, - [SMALL_STATE(8906)] = 340625, - [SMALL_STATE(8907)] = 340652, - [SMALL_STATE(8908)] = 340679, - [SMALL_STATE(8909)] = 340696, - [SMALL_STATE(8910)] = 340721, - [SMALL_STATE(8911)] = 340744, - [SMALL_STATE(8912)] = 340767, - [SMALL_STATE(8913)] = 340790, - [SMALL_STATE(8914)] = 340819, - [SMALL_STATE(8915)] = 340846, - [SMALL_STATE(8916)] = 340873, - [SMALL_STATE(8917)] = 340904, - [SMALL_STATE(8918)] = 340939, - [SMALL_STATE(8919)] = 340962, - [SMALL_STATE(8920)] = 340985, - [SMALL_STATE(8921)] = 341012, - [SMALL_STATE(8922)] = 341047, - [SMALL_STATE(8923)] = 341074, - [SMALL_STATE(8924)] = 341105, - [SMALL_STATE(8925)] = 341134, - [SMALL_STATE(8926)] = 341151, - [SMALL_STATE(8927)] = 341178, - [SMALL_STATE(8928)] = 341205, + [SMALL_STATE(8770)] = 336701, + [SMALL_STATE(8771)] = 336730, + [SMALL_STATE(8772)] = 336759, + [SMALL_STATE(8773)] = 336788, + [SMALL_STATE(8774)] = 336819, + [SMALL_STATE(8775)] = 336854, + [SMALL_STATE(8776)] = 336887, + [SMALL_STATE(8777)] = 336922, + [SMALL_STATE(8778)] = 336955, + [SMALL_STATE(8779)] = 336990, + [SMALL_STATE(8780)] = 337011, + [SMALL_STATE(8781)] = 337040, + [SMALL_STATE(8782)] = 337069, + [SMALL_STATE(8783)] = 337098, + [SMALL_STATE(8784)] = 337127, + [SMALL_STATE(8785)] = 337160, + [SMALL_STATE(8786)] = 337193, + [SMALL_STATE(8787)] = 337226, + [SMALL_STATE(8788)] = 337259, + [SMALL_STATE(8789)] = 337294, + [SMALL_STATE(8790)] = 337327, + [SMALL_STATE(8791)] = 337360, + [SMALL_STATE(8792)] = 337393, + [SMALL_STATE(8793)] = 337418, + [SMALL_STATE(8794)] = 337453, + [SMALL_STATE(8795)] = 337488, + [SMALL_STATE(8796)] = 337523, + [SMALL_STATE(8797)] = 337556, + [SMALL_STATE(8798)] = 337591, + [SMALL_STATE(8799)] = 337628, + [SMALL_STATE(8800)] = 337663, + [SMALL_STATE(8801)] = 337694, + [SMALL_STATE(8802)] = 337729, + [SMALL_STATE(8803)] = 337766, + [SMALL_STATE(8804)] = 337801, + [SMALL_STATE(8805)] = 337828, + [SMALL_STATE(8806)] = 337863, + [SMALL_STATE(8807)] = 337896, + [SMALL_STATE(8808)] = 337929, + [SMALL_STATE(8809)] = 337964, + [SMALL_STATE(8810)] = 337997, + [SMALL_STATE(8811)] = 338030, + [SMALL_STATE(8812)] = 338065, + [SMALL_STATE(8813)] = 338098, + [SMALL_STATE(8814)] = 338131, + [SMALL_STATE(8815)] = 338166, + [SMALL_STATE(8816)] = 338199, + [SMALL_STATE(8817)] = 338234, + [SMALL_STATE(8818)] = 338267, + [SMALL_STATE(8819)] = 338300, + [SMALL_STATE(8820)] = 338333, + [SMALL_STATE(8821)] = 338366, + [SMALL_STATE(8822)] = 338401, + [SMALL_STATE(8823)] = 338426, + [SMALL_STATE(8824)] = 338459, + [SMALL_STATE(8825)] = 338492, + [SMALL_STATE(8826)] = 338523, + [SMALL_STATE(8827)] = 338554, + [SMALL_STATE(8828)] = 338589, + [SMALL_STATE(8829)] = 338609, + [SMALL_STATE(8830)] = 338635, + [SMALL_STATE(8831)] = 338661, + [SMALL_STATE(8832)] = 338697, + [SMALL_STATE(8833)] = 338719, + [SMALL_STATE(8834)] = 338749, + [SMALL_STATE(8835)] = 338775, + [SMALL_STATE(8836)] = 338801, + [SMALL_STATE(8837)] = 338821, + [SMALL_STATE(8838)] = 338841, + [SMALL_STATE(8839)] = 338871, + [SMALL_STATE(8840)] = 338897, + [SMALL_STATE(8841)] = 338923, + [SMALL_STATE(8842)] = 338949, + [SMALL_STATE(8843)] = 338969, + [SMALL_STATE(8844)] = 338991, + [SMALL_STATE(8845)] = 339021, + [SMALL_STATE(8846)] = 339041, + [SMALL_STATE(8847)] = 339061, + [SMALL_STATE(8848)] = 339087, + [SMALL_STATE(8849)] = 339107, + [SMALL_STATE(8850)] = 339131, + [SMALL_STATE(8851)] = 339151, + [SMALL_STATE(8852)] = 339181, + [SMALL_STATE(8853)] = 339201, + [SMALL_STATE(8854)] = 339221, + [SMALL_STATE(8855)] = 339256, + [SMALL_STATE(8856)] = 339291, + [SMALL_STATE(8857)] = 339314, + [SMALL_STATE(8858)] = 339349, + [SMALL_STATE(8859)] = 339368, + [SMALL_STATE(8860)] = 339387, + [SMALL_STATE(8861)] = 339422, + [SMALL_STATE(8862)] = 339441, + [SMALL_STATE(8863)] = 339464, + [SMALL_STATE(8864)] = 339489, + [SMALL_STATE(8865)] = 339524, + [SMALL_STATE(8866)] = 339553, + [SMALL_STATE(8867)] = 339580, + [SMALL_STATE(8868)] = 339607, + [SMALL_STATE(8869)] = 339642, + [SMALL_STATE(8870)] = 339661, + [SMALL_STATE(8871)] = 339696, + [SMALL_STATE(8872)] = 339723, + [SMALL_STATE(8873)] = 339752, + [SMALL_STATE(8874)] = 339775, + [SMALL_STATE(8875)] = 339800, + [SMALL_STATE(8876)] = 339823, + [SMALL_STATE(8877)] = 339850, + [SMALL_STATE(8878)] = 339879, + [SMALL_STATE(8879)] = 339908, + [SMALL_STATE(8880)] = 339933, + [SMALL_STATE(8881)] = 339960, + [SMALL_STATE(8882)] = 339987, + [SMALL_STATE(8883)] = 340012, + [SMALL_STATE(8884)] = 340039, + [SMALL_STATE(8885)] = 340074, + [SMALL_STATE(8886)] = 340091, + [SMALL_STATE(8887)] = 340122, + [SMALL_STATE(8888)] = 340145, + [SMALL_STATE(8889)] = 340180, + [SMALL_STATE(8890)] = 340203, + [SMALL_STATE(8891)] = 340238, + [SMALL_STATE(8892)] = 340263, + [SMALL_STATE(8893)] = 340292, + [SMALL_STATE(8894)] = 340327, + [SMALL_STATE(8895)] = 340350, + [SMALL_STATE(8896)] = 340381, + [SMALL_STATE(8897)] = 340408, + [SMALL_STATE(8898)] = 340435, + [SMALL_STATE(8899)] = 340458, + [SMALL_STATE(8900)] = 340485, + [SMALL_STATE(8901)] = 340510, + [SMALL_STATE(8902)] = 340533, + [SMALL_STATE(8903)] = 340552, + [SMALL_STATE(8904)] = 340579, + [SMALL_STATE(8905)] = 340602, + [SMALL_STATE(8906)] = 340637, + [SMALL_STATE(8907)] = 340656, + [SMALL_STATE(8908)] = 340685, + [SMALL_STATE(8909)] = 340716, + [SMALL_STATE(8910)] = 340751, + [SMALL_STATE(8911)] = 340774, + [SMALL_STATE(8912)] = 340793, + [SMALL_STATE(8913)] = 340822, + [SMALL_STATE(8914)] = 340849, + [SMALL_STATE(8915)] = 340872, + [SMALL_STATE(8916)] = 340907, + [SMALL_STATE(8917)] = 340924, + [SMALL_STATE(8918)] = 340955, + [SMALL_STATE(8919)] = 340984, + [SMALL_STATE(8920)] = 341001, + [SMALL_STATE(8921)] = 341018, + [SMALL_STATE(8922)] = 341043, + [SMALL_STATE(8923)] = 341060, + [SMALL_STATE(8924)] = 341085, + [SMALL_STATE(8925)] = 341112, + [SMALL_STATE(8926)] = 341139, + [SMALL_STATE(8927)] = 341170, + [SMALL_STATE(8928)] = 341199, [SMALL_STATE(8929)] = 341228, - [SMALL_STATE(8930)] = 341263, - [SMALL_STATE(8931)] = 341292, - [SMALL_STATE(8932)] = 341327, - [SMALL_STATE(8933)] = 341344, - [SMALL_STATE(8934)] = 341371, - [SMALL_STATE(8935)] = 341406, - [SMALL_STATE(8936)] = 341441, - [SMALL_STATE(8937)] = 341466, - [SMALL_STATE(8938)] = 341495, - [SMALL_STATE(8939)] = 341522, - [SMALL_STATE(8940)] = 341549, - [SMALL_STATE(8941)] = 341572, - [SMALL_STATE(8942)] = 341605, - [SMALL_STATE(8943)] = 341632, - [SMALL_STATE(8944)] = 341655, - [SMALL_STATE(8945)] = 341682, - [SMALL_STATE(8946)] = 341717, - [SMALL_STATE(8947)] = 341744, - [SMALL_STATE(8948)] = 341766, - [SMALL_STATE(8949)] = 341788, - [SMALL_STATE(8950)] = 341812, - [SMALL_STATE(8951)] = 341836, - [SMALL_STATE(8952)] = 341860, - [SMALL_STATE(8953)] = 341882, - [SMALL_STATE(8954)] = 341908, - [SMALL_STATE(8955)] = 341934, - [SMALL_STATE(8956)] = 341960, - [SMALL_STATE(8957)] = 341976, - [SMALL_STATE(8958)] = 342000, - [SMALL_STATE(8959)] = 342024, - [SMALL_STATE(8960)] = 342048, - [SMALL_STATE(8961)] = 342072, - [SMALL_STATE(8962)] = 342096, - [SMALL_STATE(8963)] = 342120, - [SMALL_STATE(8964)] = 342144, - [SMALL_STATE(8965)] = 342168, - [SMALL_STATE(8966)] = 342190, - [SMALL_STATE(8967)] = 342218, - [SMALL_STATE(8968)] = 342240, - [SMALL_STATE(8969)] = 342262, - [SMALL_STATE(8970)] = 342294, - [SMALL_STATE(8971)] = 342316, - [SMALL_STATE(8972)] = 342340, - [SMALL_STATE(8973)] = 342364, - [SMALL_STATE(8974)] = 342386, - [SMALL_STATE(8975)] = 342412, - [SMALL_STATE(8976)] = 342442, - [SMALL_STATE(8977)] = 342464, - [SMALL_STATE(8978)] = 342486, - [SMALL_STATE(8979)] = 342508, - [SMALL_STATE(8980)] = 342530, - [SMALL_STATE(8981)] = 342554, - [SMALL_STATE(8982)] = 342578, - [SMALL_STATE(8983)] = 342608, - [SMALL_STATE(8984)] = 342625, - [SMALL_STATE(8985)] = 342648, - [SMALL_STATE(8986)] = 342679, - [SMALL_STATE(8987)] = 342710, - [SMALL_STATE(8988)] = 342733, - [SMALL_STATE(8989)] = 342754, - [SMALL_STATE(8990)] = 342777, - [SMALL_STATE(8991)] = 342808, - [SMALL_STATE(8992)] = 342839, - [SMALL_STATE(8993)] = 342862, - [SMALL_STATE(8994)] = 342893, - [SMALL_STATE(8995)] = 342916, - [SMALL_STATE(8996)] = 342937, - [SMALL_STATE(8997)] = 342966, - [SMALL_STATE(8998)] = 342987, - [SMALL_STATE(8999)] = 343010, - [SMALL_STATE(9000)] = 343041, - [SMALL_STATE(9001)] = 343072, - [SMALL_STATE(9002)] = 343101, - [SMALL_STATE(9003)] = 343122, - [SMALL_STATE(9004)] = 343145, - [SMALL_STATE(9005)] = 343162, - [SMALL_STATE(9006)] = 343193, - [SMALL_STATE(9007)] = 343216, - [SMALL_STATE(9008)] = 343236, - [SMALL_STATE(9009)] = 343262, - [SMALL_STATE(9010)] = 343288, - [SMALL_STATE(9011)] = 343314, - [SMALL_STATE(9012)] = 343342, - [SMALL_STATE(9013)] = 343368, - [SMALL_STATE(9014)] = 343394, - [SMALL_STATE(9015)] = 343420, - [SMALL_STATE(9016)] = 343440, - [SMALL_STATE(9017)] = 343468, - [SMALL_STATE(9018)] = 343496, - [SMALL_STATE(9019)] = 343522, - [SMALL_STATE(9020)] = 343544, - [SMALL_STATE(9021)] = 343570, - [SMALL_STATE(9022)] = 343590, - [SMALL_STATE(9023)] = 343618, - [SMALL_STATE(9024)] = 343642, - [SMALL_STATE(9025)] = 343670, - [SMALL_STATE(9026)] = 343696, - [SMALL_STATE(9027)] = 343722, - [SMALL_STATE(9028)] = 343748, - [SMALL_STATE(9029)] = 343772, - [SMALL_STATE(9030)] = 343798, - [SMALL_STATE(9031)] = 343816, - [SMALL_STATE(9032)] = 343842, - [SMALL_STATE(9033)] = 343870, - [SMALL_STATE(9034)] = 343896, - [SMALL_STATE(9035)] = 343922, - [SMALL_STATE(9036)] = 343948, - [SMALL_STATE(9037)] = 343974, - [SMALL_STATE(9038)] = 343998, - [SMALL_STATE(9039)] = 344024, - [SMALL_STATE(9040)] = 344052, - [SMALL_STATE(9041)] = 344078, - [SMALL_STATE(9042)] = 344100, - [SMALL_STATE(9043)] = 344122, - [SMALL_STATE(9044)] = 344148, - [SMALL_STATE(9045)] = 344174, - [SMALL_STATE(9046)] = 344200, - [SMALL_STATE(9047)] = 344228, - [SMALL_STATE(9048)] = 344254, - [SMALL_STATE(9049)] = 344280, - [SMALL_STATE(9050)] = 344306, - [SMALL_STATE(9051)] = 344332, - [SMALL_STATE(9052)] = 344358, - [SMALL_STATE(9053)] = 344382, - [SMALL_STATE(9054)] = 344406, - [SMALL_STATE(9055)] = 344432, - [SMALL_STATE(9056)] = 344458, - [SMALL_STATE(9057)] = 344484, - [SMALL_STATE(9058)] = 344512, - [SMALL_STATE(9059)] = 344540, - [SMALL_STATE(9060)] = 344560, - [SMALL_STATE(9061)] = 344588, - [SMALL_STATE(9062)] = 344610, - [SMALL_STATE(9063)] = 344636, - [SMALL_STATE(9064)] = 344660, - [SMALL_STATE(9065)] = 344686, - [SMALL_STATE(9066)] = 344712, - [SMALL_STATE(9067)] = 344738, - [SMALL_STATE(9068)] = 344764, - [SMALL_STATE(9069)] = 344788, - [SMALL_STATE(9070)] = 344814, - [SMALL_STATE(9071)] = 344840, - [SMALL_STATE(9072)] = 344866, - [SMALL_STATE(9073)] = 344888, - [SMALL_STATE(9074)] = 344910, - [SMALL_STATE(9075)] = 344936, - [SMALL_STATE(9076)] = 344962, - [SMALL_STATE(9077)] = 344988, - [SMALL_STATE(9078)] = 345014, - [SMALL_STATE(9079)] = 345042, - [SMALL_STATE(9080)] = 345068, - [SMALL_STATE(9081)] = 345092, - [SMALL_STATE(9082)] = 345115, - [SMALL_STATE(9083)] = 345138, - [SMALL_STATE(9084)] = 345159, - [SMALL_STATE(9085)] = 345176, - [SMALL_STATE(9086)] = 345195, - [SMALL_STATE(9087)] = 345220, - [SMALL_STATE(9088)] = 345243, - [SMALL_STATE(9089)] = 345262, - [SMALL_STATE(9090)] = 345279, - [SMALL_STATE(9091)] = 345300, - [SMALL_STATE(9092)] = 345321, - [SMALL_STATE(9093)] = 345344, - [SMALL_STATE(9094)] = 345369, - [SMALL_STATE(9095)] = 345392, - [SMALL_STATE(9096)] = 345413, - [SMALL_STATE(9097)] = 345434, - [SMALL_STATE(9098)] = 345459, - [SMALL_STATE(9099)] = 345480, - [SMALL_STATE(9100)] = 345505, - [SMALL_STATE(9101)] = 345530, - [SMALL_STATE(9102)] = 345551, - [SMALL_STATE(9103)] = 345576, - [SMALL_STATE(9104)] = 345599, - [SMALL_STATE(9105)] = 345622, - [SMALL_STATE(9106)] = 345643, - [SMALL_STATE(9107)] = 345664, - [SMALL_STATE(9108)] = 345687, - [SMALL_STATE(9109)] = 345712, - [SMALL_STATE(9110)] = 345735, - [SMALL_STATE(9111)] = 345760, - [SMALL_STATE(9112)] = 345783, - [SMALL_STATE(9113)] = 345804, - [SMALL_STATE(9114)] = 345829, - [SMALL_STATE(9115)] = 345852, - [SMALL_STATE(9116)] = 345873, - [SMALL_STATE(9117)] = 345898, - [SMALL_STATE(9118)] = 345915, - [SMALL_STATE(9119)] = 345932, - [SMALL_STATE(9120)] = 345955, - [SMALL_STATE(9121)] = 345972, - [SMALL_STATE(9122)] = 345995, - [SMALL_STATE(9123)] = 346018, - [SMALL_STATE(9124)] = 346041, - [SMALL_STATE(9125)] = 346062, - [SMALL_STATE(9126)] = 346085, - [SMALL_STATE(9127)] = 346102, - [SMALL_STATE(9128)] = 346127, - [SMALL_STATE(9129)] = 346150, - [SMALL_STATE(9130)] = 346171, - [SMALL_STATE(9131)] = 346194, - [SMALL_STATE(9132)] = 346211, - [SMALL_STATE(9133)] = 346228, - [SMALL_STATE(9134)] = 346249, - [SMALL_STATE(9135)] = 346270, - [SMALL_STATE(9136)] = 346287, - [SMALL_STATE(9137)] = 346304, - [SMALL_STATE(9138)] = 346321, - [SMALL_STATE(9139)] = 346338, - [SMALL_STATE(9140)] = 346355, - [SMALL_STATE(9141)] = 346372, - [SMALL_STATE(9142)] = 346389, - [SMALL_STATE(9143)] = 346406, - [SMALL_STATE(9144)] = 346423, - [SMALL_STATE(9145)] = 346448, - [SMALL_STATE(9146)] = 346465, - [SMALL_STATE(9147)] = 346482, - [SMALL_STATE(9148)] = 346499, - [SMALL_STATE(9149)] = 346524, - [SMALL_STATE(9150)] = 346541, - [SMALL_STATE(9151)] = 346560, - [SMALL_STATE(9152)] = 346579, - [SMALL_STATE(9153)] = 346598, - [SMALL_STATE(9154)] = 346619, - [SMALL_STATE(9155)] = 346640, - [SMALL_STATE(9156)] = 346663, - [SMALL_STATE(9157)] = 346686, - [SMALL_STATE(9158)] = 346703, - [SMALL_STATE(9159)] = 346728, - [SMALL_STATE(9160)] = 346753, - [SMALL_STATE(9161)] = 346778, - [SMALL_STATE(9162)] = 346795, - [SMALL_STATE(9163)] = 346817, - [SMALL_STATE(9164)] = 346839, - [SMALL_STATE(9165)] = 346853, - [SMALL_STATE(9166)] = 346873, - [SMALL_STATE(9167)] = 346895, - [SMALL_STATE(9168)] = 346915, - [SMALL_STATE(9169)] = 346929, - [SMALL_STATE(9170)] = 346943, - [SMALL_STATE(9171)] = 346965, - [SMALL_STATE(9172)] = 346987, - [SMALL_STATE(9173)] = 347001, - [SMALL_STATE(9174)] = 347015, - [SMALL_STATE(9175)] = 347037, - [SMALL_STATE(9176)] = 347051, - [SMALL_STATE(9177)] = 347073, - [SMALL_STATE(9178)] = 347095, - [SMALL_STATE(9179)] = 347109, - [SMALL_STATE(9180)] = 347131, - [SMALL_STATE(9181)] = 347153, - [SMALL_STATE(9182)] = 347175, - [SMALL_STATE(9183)] = 347197, - [SMALL_STATE(9184)] = 347217, - [SMALL_STATE(9185)] = 347237, - [SMALL_STATE(9186)] = 347259, - [SMALL_STATE(9187)] = 347279, - [SMALL_STATE(9188)] = 347293, - [SMALL_STATE(9189)] = 347315, - [SMALL_STATE(9190)] = 347335, - [SMALL_STATE(9191)] = 347357, - [SMALL_STATE(9192)] = 347377, - [SMALL_STATE(9193)] = 347397, - [SMALL_STATE(9194)] = 347419, - [SMALL_STATE(9195)] = 347441, - [SMALL_STATE(9196)] = 347455, - [SMALL_STATE(9197)] = 347477, - [SMALL_STATE(9198)] = 347499, - [SMALL_STATE(9199)] = 347517, - [SMALL_STATE(9200)] = 347539, - [SMALL_STATE(9201)] = 347559, - [SMALL_STATE(9202)] = 347581, - [SMALL_STATE(9203)] = 347595, - [SMALL_STATE(9204)] = 347617, - [SMALL_STATE(9205)] = 347639, - [SMALL_STATE(9206)] = 347661, - [SMALL_STATE(9207)] = 347683, - [SMALL_STATE(9208)] = 347705, - [SMALL_STATE(9209)] = 347727, - [SMALL_STATE(9210)] = 347749, - [SMALL_STATE(9211)] = 347769, - [SMALL_STATE(9212)] = 347789, - [SMALL_STATE(9213)] = 347803, - [SMALL_STATE(9214)] = 347825, - [SMALL_STATE(9215)] = 347845, - [SMALL_STATE(9216)] = 347865, - [SMALL_STATE(9217)] = 347887, - [SMALL_STATE(9218)] = 347909, - [SMALL_STATE(9219)] = 347929, - [SMALL_STATE(9220)] = 347949, - [SMALL_STATE(9221)] = 347971, - [SMALL_STATE(9222)] = 347993, - [SMALL_STATE(9223)] = 348015, - [SMALL_STATE(9224)] = 348037, - [SMALL_STATE(9225)] = 348057, - [SMALL_STATE(9226)] = 348079, - [SMALL_STATE(9227)] = 348099, - [SMALL_STATE(9228)] = 348121, - [SMALL_STATE(9229)] = 348143, - [SMALL_STATE(9230)] = 348163, - [SMALL_STATE(9231)] = 348185, - [SMALL_STATE(9232)] = 348207, - [SMALL_STATE(9233)] = 348229, - [SMALL_STATE(9234)] = 348251, - [SMALL_STATE(9235)] = 348271, - [SMALL_STATE(9236)] = 348289, - [SMALL_STATE(9237)] = 348307, - [SMALL_STATE(9238)] = 348329, - [SMALL_STATE(9239)] = 348351, - [SMALL_STATE(9240)] = 348373, - [SMALL_STATE(9241)] = 348391, - [SMALL_STATE(9242)] = 348413, - [SMALL_STATE(9243)] = 348435, - [SMALL_STATE(9244)] = 348455, - [SMALL_STATE(9245)] = 348475, - [SMALL_STATE(9246)] = 348497, - [SMALL_STATE(9247)] = 348519, - [SMALL_STATE(9248)] = 348541, - [SMALL_STATE(9249)] = 348563, - [SMALL_STATE(9250)] = 348585, - [SMALL_STATE(9251)] = 348605, - [SMALL_STATE(9252)] = 348625, - [SMALL_STATE(9253)] = 348639, - [SMALL_STATE(9254)] = 348661, - [SMALL_STATE(9255)] = 348683, - [SMALL_STATE(9256)] = 348705, - [SMALL_STATE(9257)] = 348719, - [SMALL_STATE(9258)] = 348733, - [SMALL_STATE(9259)] = 348755, - [SMALL_STATE(9260)] = 348777, - [SMALL_STATE(9261)] = 348791, - [SMALL_STATE(9262)] = 348813, - [SMALL_STATE(9263)] = 348833, - [SMALL_STATE(9264)] = 348855, - [SMALL_STATE(9265)] = 348877, - [SMALL_STATE(9266)] = 348897, - [SMALL_STATE(9267)] = 348917, - [SMALL_STATE(9268)] = 348939, - [SMALL_STATE(9269)] = 348959, - [SMALL_STATE(9270)] = 348979, - [SMALL_STATE(9271)] = 349001, - [SMALL_STATE(9272)] = 349021, - [SMALL_STATE(9273)] = 349038, - [SMALL_STATE(9274)] = 349057, - [SMALL_STATE(9275)] = 349074, - [SMALL_STATE(9276)] = 349091, - [SMALL_STATE(9277)] = 349108, - [SMALL_STATE(9278)] = 349127, - [SMALL_STATE(9279)] = 349144, - [SMALL_STATE(9280)] = 349163, - [SMALL_STATE(9281)] = 349182, - [SMALL_STATE(9282)] = 349199, - [SMALL_STATE(9283)] = 349216, - [SMALL_STATE(9284)] = 349233, - [SMALL_STATE(9285)] = 349252, - [SMALL_STATE(9286)] = 349271, - [SMALL_STATE(9287)] = 349290, - [SMALL_STATE(9288)] = 349309, - [SMALL_STATE(9289)] = 349328, - [SMALL_STATE(9290)] = 349347, - [SMALL_STATE(9291)] = 349366, - [SMALL_STATE(9292)] = 349383, - [SMALL_STATE(9293)] = 349402, - [SMALL_STATE(9294)] = 349419, - [SMALL_STATE(9295)] = 349436, - [SMALL_STATE(9296)] = 349453, - [SMALL_STATE(9297)] = 349470, - [SMALL_STATE(9298)] = 349489, - [SMALL_STATE(9299)] = 349508, - [SMALL_STATE(9300)] = 349527, - [SMALL_STATE(9301)] = 349544, - [SMALL_STATE(9302)] = 349563, - [SMALL_STATE(9303)] = 349580, - [SMALL_STATE(9304)] = 349599, - [SMALL_STATE(9305)] = 349618, - [SMALL_STATE(9306)] = 349637, - [SMALL_STATE(9307)] = 349656, - [SMALL_STATE(9308)] = 349673, - [SMALL_STATE(9309)] = 349692, - [SMALL_STATE(9310)] = 349711, - [SMALL_STATE(9311)] = 349728, - [SMALL_STATE(9312)] = 349747, - [SMALL_STATE(9313)] = 349766, - [SMALL_STATE(9314)] = 349785, - [SMALL_STATE(9315)] = 349802, - [SMALL_STATE(9316)] = 349819, - [SMALL_STATE(9317)] = 349836, - [SMALL_STATE(9318)] = 349851, - [SMALL_STATE(9319)] = 349862, - [SMALL_STATE(9320)] = 349879, - [SMALL_STATE(9321)] = 349896, - [SMALL_STATE(9322)] = 349915, - [SMALL_STATE(9323)] = 349934, - [SMALL_STATE(9324)] = 349951, - [SMALL_STATE(9325)] = 349968, - [SMALL_STATE(9326)] = 349983, - [SMALL_STATE(9327)] = 350000, - [SMALL_STATE(9328)] = 350017, - [SMALL_STATE(9329)] = 350034, - [SMALL_STATE(9330)] = 350051, - [SMALL_STATE(9331)] = 350068, - [SMALL_STATE(9332)] = 350087, - [SMALL_STATE(9333)] = 350106, - [SMALL_STATE(9334)] = 350123, - [SMALL_STATE(9335)] = 350142, - [SMALL_STATE(9336)] = 350159, - [SMALL_STATE(9337)] = 350178, - [SMALL_STATE(9338)] = 350195, - [SMALL_STATE(9339)] = 350212, - [SMALL_STATE(9340)] = 350229, - [SMALL_STATE(9341)] = 350248, - [SMALL_STATE(9342)] = 350265, - [SMALL_STATE(9343)] = 350282, - [SMALL_STATE(9344)] = 350299, - [SMALL_STATE(9345)] = 350312, - [SMALL_STATE(9346)] = 350331, - [SMALL_STATE(9347)] = 350348, - [SMALL_STATE(9348)] = 350365, - [SMALL_STATE(9349)] = 350382, - [SMALL_STATE(9350)] = 350401, - [SMALL_STATE(9351)] = 350420, - [SMALL_STATE(9352)] = 350439, - [SMALL_STATE(9353)] = 350456, - [SMALL_STATE(9354)] = 350475, - [SMALL_STATE(9355)] = 350490, - [SMALL_STATE(9356)] = 350509, - [SMALL_STATE(9357)] = 350526, - [SMALL_STATE(9358)] = 350545, - [SMALL_STATE(9359)] = 350562, - [SMALL_STATE(9360)] = 350581, - [SMALL_STATE(9361)] = 350594, - [SMALL_STATE(9362)] = 350611, - [SMALL_STATE(9363)] = 350630, - [SMALL_STATE(9364)] = 350649, - [SMALL_STATE(9365)] = 350668, - [SMALL_STATE(9366)] = 350687, - [SMALL_STATE(9367)] = 350706, - [SMALL_STATE(9368)] = 350725, - [SMALL_STATE(9369)] = 350744, - [SMALL_STATE(9370)] = 350763, - [SMALL_STATE(9371)] = 350782, - [SMALL_STATE(9372)] = 350801, - [SMALL_STATE(9373)] = 350820, - [SMALL_STATE(9374)] = 350837, - [SMALL_STATE(9375)] = 350854, - [SMALL_STATE(9376)] = 350873, - [SMALL_STATE(9377)] = 350890, - [SMALL_STATE(9378)] = 350907, - [SMALL_STATE(9379)] = 350926, - [SMALL_STATE(9380)] = 350943, - [SMALL_STATE(9381)] = 350960, - [SMALL_STATE(9382)] = 350979, - [SMALL_STATE(9383)] = 350998, - [SMALL_STATE(9384)] = 351017, - [SMALL_STATE(9385)] = 351036, - [SMALL_STATE(9386)] = 351055, - [SMALL_STATE(9387)] = 351074, - [SMALL_STATE(9388)] = 351093, - [SMALL_STATE(9389)] = 351112, - [SMALL_STATE(9390)] = 351131, - [SMALL_STATE(9391)] = 351150, - [SMALL_STATE(9392)] = 351165, - [SMALL_STATE(9393)] = 351184, - [SMALL_STATE(9394)] = 351203, - [SMALL_STATE(9395)] = 351220, - [SMALL_STATE(9396)] = 351237, - [SMALL_STATE(9397)] = 351256, - [SMALL_STATE(9398)] = 351275, - [SMALL_STATE(9399)] = 351288, - [SMALL_STATE(9400)] = 351307, - [SMALL_STATE(9401)] = 351326, - [SMALL_STATE(9402)] = 351345, - [SMALL_STATE(9403)] = 351362, - [SMALL_STATE(9404)] = 351381, - [SMALL_STATE(9405)] = 351400, - [SMALL_STATE(9406)] = 351417, - [SMALL_STATE(9407)] = 351436, - [SMALL_STATE(9408)] = 351453, - [SMALL_STATE(9409)] = 351470, - [SMALL_STATE(9410)] = 351489, - [SMALL_STATE(9411)] = 351508, - [SMALL_STATE(9412)] = 351527, - [SMALL_STATE(9413)] = 351542, - [SMALL_STATE(9414)] = 351559, - [SMALL_STATE(9415)] = 351578, - [SMALL_STATE(9416)] = 351597, - [SMALL_STATE(9417)] = 351616, - [SMALL_STATE(9418)] = 351633, - [SMALL_STATE(9419)] = 351650, - [SMALL_STATE(9420)] = 351666, - [SMALL_STATE(9421)] = 351682, - [SMALL_STATE(9422)] = 351698, - [SMALL_STATE(9423)] = 351714, - [SMALL_STATE(9424)] = 351730, - [SMALL_STATE(9425)] = 351746, - [SMALL_STATE(9426)] = 351762, - [SMALL_STATE(9427)] = 351778, - [SMALL_STATE(9428)] = 351794, - [SMALL_STATE(9429)] = 351808, - [SMALL_STATE(9430)] = 351822, - [SMALL_STATE(9431)] = 351838, - [SMALL_STATE(9432)] = 351854, - [SMALL_STATE(9433)] = 351870, - [SMALL_STATE(9434)] = 351884, - [SMALL_STATE(9435)] = 351900, - [SMALL_STATE(9436)] = 351914, - [SMALL_STATE(9437)] = 351930, - [SMALL_STATE(9438)] = 351946, - [SMALL_STATE(9439)] = 351962, - [SMALL_STATE(9440)] = 351978, - [SMALL_STATE(9441)] = 351994, - [SMALL_STATE(9442)] = 352006, - [SMALL_STATE(9443)] = 352016, - [SMALL_STATE(9444)] = 352032, - [SMALL_STATE(9445)] = 352044, - [SMALL_STATE(9446)] = 352060, - [SMALL_STATE(9447)] = 352074, - [SMALL_STATE(9448)] = 352090, - [SMALL_STATE(9449)] = 352106, - [SMALL_STATE(9450)] = 352122, - [SMALL_STATE(9451)] = 352136, - [SMALL_STATE(9452)] = 352152, - [SMALL_STATE(9453)] = 352168, - [SMALL_STATE(9454)] = 352184, - [SMALL_STATE(9455)] = 352198, - [SMALL_STATE(9456)] = 352212, - [SMALL_STATE(9457)] = 352228, - [SMALL_STATE(9458)] = 352244, - [SMALL_STATE(9459)] = 352258, - [SMALL_STATE(9460)] = 352274, - [SMALL_STATE(9461)] = 352288, - [SMALL_STATE(9462)] = 352302, - [SMALL_STATE(9463)] = 352314, - [SMALL_STATE(9464)] = 352330, - [SMALL_STATE(9465)] = 352344, - [SMALL_STATE(9466)] = 352360, - [SMALL_STATE(9467)] = 352376, - [SMALL_STATE(9468)] = 352392, - [SMALL_STATE(9469)] = 352408, - [SMALL_STATE(9470)] = 352424, - [SMALL_STATE(9471)] = 352440, - [SMALL_STATE(9472)] = 352456, - [SMALL_STATE(9473)] = 352472, - [SMALL_STATE(9474)] = 352488, - [SMALL_STATE(9475)] = 352502, - [SMALL_STATE(9476)] = 352518, - [SMALL_STATE(9477)] = 352534, - [SMALL_STATE(9478)] = 352550, - [SMALL_STATE(9479)] = 352566, - [SMALL_STATE(9480)] = 352582, - [SMALL_STATE(9481)] = 352596, - [SMALL_STATE(9482)] = 352612, - [SMALL_STATE(9483)] = 352628, - [SMALL_STATE(9484)] = 352644, - [SMALL_STATE(9485)] = 352660, - [SMALL_STATE(9486)] = 352676, - [SMALL_STATE(9487)] = 352690, - [SMALL_STATE(9488)] = 352706, - [SMALL_STATE(9489)] = 352722, - [SMALL_STATE(9490)] = 352738, - [SMALL_STATE(9491)] = 352754, - [SMALL_STATE(9492)] = 352770, - [SMALL_STATE(9493)] = 352786, - [SMALL_STATE(9494)] = 352800, - [SMALL_STATE(9495)] = 352814, - [SMALL_STATE(9496)] = 352830, - [SMALL_STATE(9497)] = 352844, - [SMALL_STATE(9498)] = 352860, - [SMALL_STATE(9499)] = 352876, - [SMALL_STATE(9500)] = 352892, - [SMALL_STATE(9501)] = 352908, - [SMALL_STATE(9502)] = 352922, - [SMALL_STATE(9503)] = 352938, - [SMALL_STATE(9504)] = 352952, - [SMALL_STATE(9505)] = 352968, - [SMALL_STATE(9506)] = 352982, - [SMALL_STATE(9507)] = 352998, - [SMALL_STATE(9508)] = 353014, - [SMALL_STATE(9509)] = 353030, - [SMALL_STATE(9510)] = 353046, - [SMALL_STATE(9511)] = 353062, - [SMALL_STATE(9512)] = 353078, - [SMALL_STATE(9513)] = 353094, - [SMALL_STATE(9514)] = 353110, - [SMALL_STATE(9515)] = 353124, - [SMALL_STATE(9516)] = 353140, - [SMALL_STATE(9517)] = 353154, - [SMALL_STATE(9518)] = 353168, - [SMALL_STATE(9519)] = 353182, - [SMALL_STATE(9520)] = 353198, - [SMALL_STATE(9521)] = 353212, - [SMALL_STATE(9522)] = 353226, - [SMALL_STATE(9523)] = 353240, - [SMALL_STATE(9524)] = 353254, - [SMALL_STATE(9525)] = 353268, - [SMALL_STATE(9526)] = 353284, - [SMALL_STATE(9527)] = 353300, - [SMALL_STATE(9528)] = 353310, - [SMALL_STATE(9529)] = 353326, - [SMALL_STATE(9530)] = 353340, - [SMALL_STATE(9531)] = 353354, - [SMALL_STATE(9532)] = 353370, - [SMALL_STATE(9533)] = 353386, - [SMALL_STATE(9534)] = 353402, - [SMALL_STATE(9535)] = 353418, - [SMALL_STATE(9536)] = 353434, - [SMALL_STATE(9537)] = 353450, - [SMALL_STATE(9538)] = 353464, - [SMALL_STATE(9539)] = 353478, - [SMALL_STATE(9540)] = 353494, - [SMALL_STATE(9541)] = 353510, - [SMALL_STATE(9542)] = 353526, - [SMALL_STATE(9543)] = 353542, - [SMALL_STATE(9544)] = 353556, - [SMALL_STATE(9545)] = 353570, - [SMALL_STATE(9546)] = 353584, - [SMALL_STATE(9547)] = 353600, - [SMALL_STATE(9548)] = 353616, - [SMALL_STATE(9549)] = 353630, - [SMALL_STATE(9550)] = 353646, - [SMALL_STATE(9551)] = 353662, - [SMALL_STATE(9552)] = 353678, - [SMALL_STATE(9553)] = 353694, - [SMALL_STATE(9554)] = 353710, - [SMALL_STATE(9555)] = 353726, - [SMALL_STATE(9556)] = 353742, - [SMALL_STATE(9557)] = 353758, - [SMALL_STATE(9558)] = 353774, - [SMALL_STATE(9559)] = 353790, - [SMALL_STATE(9560)] = 353806, - [SMALL_STATE(9561)] = 353822, - [SMALL_STATE(9562)] = 353838, - [SMALL_STATE(9563)] = 353854, - [SMALL_STATE(9564)] = 353868, - [SMALL_STATE(9565)] = 353882, - [SMALL_STATE(9566)] = 353898, - [SMALL_STATE(9567)] = 353914, - [SMALL_STATE(9568)] = 353930, - [SMALL_STATE(9569)] = 353946, - [SMALL_STATE(9570)] = 353960, - [SMALL_STATE(9571)] = 353976, - [SMALL_STATE(9572)] = 353990, - [SMALL_STATE(9573)] = 354006, - [SMALL_STATE(9574)] = 354022, - [SMALL_STATE(9575)] = 354036, - [SMALL_STATE(9576)] = 354052, - [SMALL_STATE(9577)] = 354068, - [SMALL_STATE(9578)] = 354084, - [SMALL_STATE(9579)] = 354100, - [SMALL_STATE(9580)] = 354116, - [SMALL_STATE(9581)] = 354132, - [SMALL_STATE(9582)] = 354148, - [SMALL_STATE(9583)] = 354164, - [SMALL_STATE(9584)] = 354178, - [SMALL_STATE(9585)] = 354192, - [SMALL_STATE(9586)] = 354208, - [SMALL_STATE(9587)] = 354224, - [SMALL_STATE(9588)] = 354240, - [SMALL_STATE(9589)] = 354256, - [SMALL_STATE(9590)] = 354272, - [SMALL_STATE(9591)] = 354284, - [SMALL_STATE(9592)] = 354298, - [SMALL_STATE(9593)] = 354314, - [SMALL_STATE(9594)] = 354330, - [SMALL_STATE(9595)] = 354346, - [SMALL_STATE(9596)] = 354362, - [SMALL_STATE(9597)] = 354378, - [SMALL_STATE(9598)] = 354394, - [SMALL_STATE(9599)] = 354410, - [SMALL_STATE(9600)] = 354426, - [SMALL_STATE(9601)] = 354440, - [SMALL_STATE(9602)] = 354456, - [SMALL_STATE(9603)] = 354472, - [SMALL_STATE(9604)] = 354488, - [SMALL_STATE(9605)] = 354504, - [SMALL_STATE(9606)] = 354518, - [SMALL_STATE(9607)] = 354532, - [SMALL_STATE(9608)] = 354548, - [SMALL_STATE(9609)] = 354562, - [SMALL_STATE(9610)] = 354578, - [SMALL_STATE(9611)] = 354592, - [SMALL_STATE(9612)] = 354608, - [SMALL_STATE(9613)] = 354624, - [SMALL_STATE(9614)] = 354640, - [SMALL_STATE(9615)] = 354656, - [SMALL_STATE(9616)] = 354672, - [SMALL_STATE(9617)] = 354688, - [SMALL_STATE(9618)] = 354704, - [SMALL_STATE(9619)] = 354720, - [SMALL_STATE(9620)] = 354736, - [SMALL_STATE(9621)] = 354752, - [SMALL_STATE(9622)] = 354768, - [SMALL_STATE(9623)] = 354784, - [SMALL_STATE(9624)] = 354798, - [SMALL_STATE(9625)] = 354814, - [SMALL_STATE(9626)] = 354830, - [SMALL_STATE(9627)] = 354846, - [SMALL_STATE(9628)] = 354862, - [SMALL_STATE(9629)] = 354876, - [SMALL_STATE(9630)] = 354892, - [SMALL_STATE(9631)] = 354906, - [SMALL_STATE(9632)] = 354922, - [SMALL_STATE(9633)] = 354938, - [SMALL_STATE(9634)] = 354954, - [SMALL_STATE(9635)] = 354970, - [SMALL_STATE(9636)] = 354986, - [SMALL_STATE(9637)] = 355002, - [SMALL_STATE(9638)] = 355012, - [SMALL_STATE(9639)] = 355028, - [SMALL_STATE(9640)] = 355042, - [SMALL_STATE(9641)] = 355058, - [SMALL_STATE(9642)] = 355074, - [SMALL_STATE(9643)] = 355090, - [SMALL_STATE(9644)] = 355106, - [SMALL_STATE(9645)] = 355122, - [SMALL_STATE(9646)] = 355136, - [SMALL_STATE(9647)] = 355152, - [SMALL_STATE(9648)] = 355168, - [SMALL_STATE(9649)] = 355184, - [SMALL_STATE(9650)] = 355200, - [SMALL_STATE(9651)] = 355216, - [SMALL_STATE(9652)] = 355232, - [SMALL_STATE(9653)] = 355248, - [SMALL_STATE(9654)] = 355264, - [SMALL_STATE(9655)] = 355278, - [SMALL_STATE(9656)] = 355294, - [SMALL_STATE(9657)] = 355310, - [SMALL_STATE(9658)] = 355324, - [SMALL_STATE(9659)] = 355340, - [SMALL_STATE(9660)] = 355356, - [SMALL_STATE(9661)] = 355372, - [SMALL_STATE(9662)] = 355385, - [SMALL_STATE(9663)] = 355398, - [SMALL_STATE(9664)] = 355411, - [SMALL_STATE(9665)] = 355424, - [SMALL_STATE(9666)] = 355437, - [SMALL_STATE(9667)] = 355450, - [SMALL_STATE(9668)] = 355461, - [SMALL_STATE(9669)] = 355472, - [SMALL_STATE(9670)] = 355485, - [SMALL_STATE(9671)] = 355494, - [SMALL_STATE(9672)] = 355505, - [SMALL_STATE(9673)] = 355518, - [SMALL_STATE(9674)] = 355531, - [SMALL_STATE(9675)] = 355544, - [SMALL_STATE(9676)] = 355555, - [SMALL_STATE(9677)] = 355568, - [SMALL_STATE(9678)] = 355581, - [SMALL_STATE(9679)] = 355594, - [SMALL_STATE(9680)] = 355607, - [SMALL_STATE(9681)] = 355620, - [SMALL_STATE(9682)] = 355633, - [SMALL_STATE(9683)] = 355646, - [SMALL_STATE(9684)] = 355659, - [SMALL_STATE(9685)] = 355672, - [SMALL_STATE(9686)] = 355685, - [SMALL_STATE(9687)] = 355698, - [SMALL_STATE(9688)] = 355711, - [SMALL_STATE(9689)] = 355724, - [SMALL_STATE(9690)] = 355737, - [SMALL_STATE(9691)] = 355750, - [SMALL_STATE(9692)] = 355763, - [SMALL_STATE(9693)] = 355776, - [SMALL_STATE(9694)] = 355789, - [SMALL_STATE(9695)] = 355802, - [SMALL_STATE(9696)] = 355815, - [SMALL_STATE(9697)] = 355828, - [SMALL_STATE(9698)] = 355841, - [SMALL_STATE(9699)] = 355854, - [SMALL_STATE(9700)] = 355867, - [SMALL_STATE(9701)] = 355880, - [SMALL_STATE(9702)] = 355893, - [SMALL_STATE(9703)] = 355906, - [SMALL_STATE(9704)] = 355919, - [SMALL_STATE(9705)] = 355932, - [SMALL_STATE(9706)] = 355945, - [SMALL_STATE(9707)] = 355958, - [SMALL_STATE(9708)] = 355967, - [SMALL_STATE(9709)] = 355980, - [SMALL_STATE(9710)] = 355989, - [SMALL_STATE(9711)] = 356002, - [SMALL_STATE(9712)] = 356013, - [SMALL_STATE(9713)] = 356026, - [SMALL_STATE(9714)] = 356039, - [SMALL_STATE(9715)] = 356052, - [SMALL_STATE(9716)] = 356065, - [SMALL_STATE(9717)] = 356078, - [SMALL_STATE(9718)] = 356091, - [SMALL_STATE(9719)] = 356104, - [SMALL_STATE(9720)] = 356117, - [SMALL_STATE(9721)] = 356130, - [SMALL_STATE(9722)] = 356143, - [SMALL_STATE(9723)] = 356156, - [SMALL_STATE(9724)] = 356169, - [SMALL_STATE(9725)] = 356182, - [SMALL_STATE(9726)] = 356195, - [SMALL_STATE(9727)] = 356208, - [SMALL_STATE(9728)] = 356221, - [SMALL_STATE(9729)] = 356234, - [SMALL_STATE(9730)] = 356247, - [SMALL_STATE(9731)] = 356260, - [SMALL_STATE(9732)] = 356273, - [SMALL_STATE(9733)] = 356286, - [SMALL_STATE(9734)] = 356299, - [SMALL_STATE(9735)] = 356312, - [SMALL_STATE(9736)] = 356325, - [SMALL_STATE(9737)] = 356338, - [SMALL_STATE(9738)] = 356351, - [SMALL_STATE(9739)] = 356364, - [SMALL_STATE(9740)] = 356375, - [SMALL_STATE(9741)] = 356388, - [SMALL_STATE(9742)] = 356399, - [SMALL_STATE(9743)] = 356412, - [SMALL_STATE(9744)] = 356425, - [SMALL_STATE(9745)] = 356438, - [SMALL_STATE(9746)] = 356451, - [SMALL_STATE(9747)] = 356464, - [SMALL_STATE(9748)] = 356477, - [SMALL_STATE(9749)] = 356490, - [SMALL_STATE(9750)] = 356503, - [SMALL_STATE(9751)] = 356516, - [SMALL_STATE(9752)] = 356529, - [SMALL_STATE(9753)] = 356540, - [SMALL_STATE(9754)] = 356553, - [SMALL_STATE(9755)] = 356566, - [SMALL_STATE(9756)] = 356579, - [SMALL_STATE(9757)] = 356592, - [SMALL_STATE(9758)] = 356605, - [SMALL_STATE(9759)] = 356618, - [SMALL_STATE(9760)] = 356631, - [SMALL_STATE(9761)] = 356642, - [SMALL_STATE(9762)] = 356655, - [SMALL_STATE(9763)] = 356668, - [SMALL_STATE(9764)] = 356679, - [SMALL_STATE(9765)] = 356692, - [SMALL_STATE(9766)] = 356705, - [SMALL_STATE(9767)] = 356718, - [SMALL_STATE(9768)] = 356731, - [SMALL_STATE(9769)] = 356744, - [SMALL_STATE(9770)] = 356757, - [SMALL_STATE(9771)] = 356770, - [SMALL_STATE(9772)] = 356783, - [SMALL_STATE(9773)] = 356796, - [SMALL_STATE(9774)] = 356809, - [SMALL_STATE(9775)] = 356820, - [SMALL_STATE(9776)] = 356833, - [SMALL_STATE(9777)] = 356844, - [SMALL_STATE(9778)] = 356857, - [SMALL_STATE(9779)] = 356870, - [SMALL_STATE(9780)] = 356883, - [SMALL_STATE(9781)] = 356896, - [SMALL_STATE(9782)] = 356909, - [SMALL_STATE(9783)] = 356922, - [SMALL_STATE(9784)] = 356931, - [SMALL_STATE(9785)] = 356940, - [SMALL_STATE(9786)] = 356953, - [SMALL_STATE(9787)] = 356966, - [SMALL_STATE(9788)] = 356979, - [SMALL_STATE(9789)] = 356992, - [SMALL_STATE(9790)] = 357005, - [SMALL_STATE(9791)] = 357018, - [SMALL_STATE(9792)] = 357031, - [SMALL_STATE(9793)] = 357044, - [SMALL_STATE(9794)] = 357057, - [SMALL_STATE(9795)] = 357070, - [SMALL_STATE(9796)] = 357083, - [SMALL_STATE(9797)] = 357096, - [SMALL_STATE(9798)] = 357109, - [SMALL_STATE(9799)] = 357122, - [SMALL_STATE(9800)] = 357135, - [SMALL_STATE(9801)] = 357148, - [SMALL_STATE(9802)] = 357161, - [SMALL_STATE(9803)] = 357174, - [SMALL_STATE(9804)] = 357187, - [SMALL_STATE(9805)] = 357200, - [SMALL_STATE(9806)] = 357213, - [SMALL_STATE(9807)] = 357226, - [SMALL_STATE(9808)] = 357239, - [SMALL_STATE(9809)] = 357252, - [SMALL_STATE(9810)] = 357265, - [SMALL_STATE(9811)] = 357278, - [SMALL_STATE(9812)] = 357291, - [SMALL_STATE(9813)] = 357304, - [SMALL_STATE(9814)] = 357315, - [SMALL_STATE(9815)] = 357328, - [SMALL_STATE(9816)] = 357341, - [SMALL_STATE(9817)] = 357354, - [SMALL_STATE(9818)] = 357367, - [SMALL_STATE(9819)] = 357376, - [SMALL_STATE(9820)] = 357389, - [SMALL_STATE(9821)] = 357402, - [SMALL_STATE(9822)] = 357415, - [SMALL_STATE(9823)] = 357428, - [SMALL_STATE(9824)] = 357441, - [SMALL_STATE(9825)] = 357454, - [SMALL_STATE(9826)] = 357467, - [SMALL_STATE(9827)] = 357480, - [SMALL_STATE(9828)] = 357493, - [SMALL_STATE(9829)] = 357506, - [SMALL_STATE(9830)] = 357519, - [SMALL_STATE(9831)] = 357532, - [SMALL_STATE(9832)] = 357545, - [SMALL_STATE(9833)] = 357558, - [SMALL_STATE(9834)] = 357569, - [SMALL_STATE(9835)] = 357582, - [SMALL_STATE(9836)] = 357595, - [SMALL_STATE(9837)] = 357608, - [SMALL_STATE(9838)] = 357621, - [SMALL_STATE(9839)] = 357634, - [SMALL_STATE(9840)] = 357643, - [SMALL_STATE(9841)] = 357652, - [SMALL_STATE(9842)] = 357661, - [SMALL_STATE(9843)] = 357674, - [SMALL_STATE(9844)] = 357687, - [SMALL_STATE(9845)] = 357700, - [SMALL_STATE(9846)] = 357713, - [SMALL_STATE(9847)] = 357726, - [SMALL_STATE(9848)] = 357737, - [SMALL_STATE(9849)] = 357750, - [SMALL_STATE(9850)] = 357763, - [SMALL_STATE(9851)] = 357776, - [SMALL_STATE(9852)] = 357787, - [SMALL_STATE(9853)] = 357796, - [SMALL_STATE(9854)] = 357809, - [SMALL_STATE(9855)] = 357822, - [SMALL_STATE(9856)] = 357835, - [SMALL_STATE(9857)] = 357848, - [SMALL_STATE(9858)] = 357861, - [SMALL_STATE(9859)] = 357874, - [SMALL_STATE(9860)] = 357885, - [SMALL_STATE(9861)] = 357896, - [SMALL_STATE(9862)] = 357909, - [SMALL_STATE(9863)] = 357922, - [SMALL_STATE(9864)] = 357933, - [SMALL_STATE(9865)] = 357946, - [SMALL_STATE(9866)] = 357959, - [SMALL_STATE(9867)] = 357972, - [SMALL_STATE(9868)] = 357985, - [SMALL_STATE(9869)] = 357998, - [SMALL_STATE(9870)] = 358011, - [SMALL_STATE(9871)] = 358024, - [SMALL_STATE(9872)] = 358037, - [SMALL_STATE(9873)] = 358050, - [SMALL_STATE(9874)] = 358061, - [SMALL_STATE(9875)] = 358074, - [SMALL_STATE(9876)] = 358087, - [SMALL_STATE(9877)] = 358100, - [SMALL_STATE(9878)] = 358113, - [SMALL_STATE(9879)] = 358126, - [SMALL_STATE(9880)] = 358139, - [SMALL_STATE(9881)] = 358152, - [SMALL_STATE(9882)] = 358165, - [SMALL_STATE(9883)] = 358178, - [SMALL_STATE(9884)] = 358191, - [SMALL_STATE(9885)] = 358204, - [SMALL_STATE(9886)] = 358217, - [SMALL_STATE(9887)] = 358230, - [SMALL_STATE(9888)] = 358243, - [SMALL_STATE(9889)] = 358256, - [SMALL_STATE(9890)] = 358269, - [SMALL_STATE(9891)] = 358282, - [SMALL_STATE(9892)] = 358295, - [SMALL_STATE(9893)] = 358308, - [SMALL_STATE(9894)] = 358321, - [SMALL_STATE(9895)] = 358332, - [SMALL_STATE(9896)] = 358345, - [SMALL_STATE(9897)] = 358358, - [SMALL_STATE(9898)] = 358371, - [SMALL_STATE(9899)] = 358384, - [SMALL_STATE(9900)] = 358397, - [SMALL_STATE(9901)] = 358410, - [SMALL_STATE(9902)] = 358423, - [SMALL_STATE(9903)] = 358436, - [SMALL_STATE(9904)] = 358449, - [SMALL_STATE(9905)] = 358460, - [SMALL_STATE(9906)] = 358473, - [SMALL_STATE(9907)] = 358486, - [SMALL_STATE(9908)] = 358499, - [SMALL_STATE(9909)] = 358512, - [SMALL_STATE(9910)] = 358525, - [SMALL_STATE(9911)] = 358538, - [SMALL_STATE(9912)] = 358551, - [SMALL_STATE(9913)] = 358564, - [SMALL_STATE(9914)] = 358577, - [SMALL_STATE(9915)] = 358588, - [SMALL_STATE(9916)] = 358601, - [SMALL_STATE(9917)] = 358614, - [SMALL_STATE(9918)] = 358627, - [SMALL_STATE(9919)] = 358640, - [SMALL_STATE(9920)] = 358653, - [SMALL_STATE(9921)] = 358666, - [SMALL_STATE(9922)] = 358679, - [SMALL_STATE(9923)] = 358692, - [SMALL_STATE(9924)] = 358705, - [SMALL_STATE(9925)] = 358718, - [SMALL_STATE(9926)] = 358731, - [SMALL_STATE(9927)] = 358742, - [SMALL_STATE(9928)] = 358755, - [SMALL_STATE(9929)] = 358768, - [SMALL_STATE(9930)] = 358781, - [SMALL_STATE(9931)] = 358794, - [SMALL_STATE(9932)] = 358807, - [SMALL_STATE(9933)] = 358820, - [SMALL_STATE(9934)] = 358833, - [SMALL_STATE(9935)] = 358846, - [SMALL_STATE(9936)] = 358859, - [SMALL_STATE(9937)] = 358872, - [SMALL_STATE(9938)] = 358885, - [SMALL_STATE(9939)] = 358898, - [SMALL_STATE(9940)] = 358911, - [SMALL_STATE(9941)] = 358922, - [SMALL_STATE(9942)] = 358935, - [SMALL_STATE(9943)] = 358948, - [SMALL_STATE(9944)] = 358961, - [SMALL_STATE(9945)] = 358974, - [SMALL_STATE(9946)] = 358987, - [SMALL_STATE(9947)] = 358998, - [SMALL_STATE(9948)] = 359011, - [SMALL_STATE(9949)] = 359024, - [SMALL_STATE(9950)] = 359037, - [SMALL_STATE(9951)] = 359050, - [SMALL_STATE(9952)] = 359063, - [SMALL_STATE(9953)] = 359076, - [SMALL_STATE(9954)] = 359087, - [SMALL_STATE(9955)] = 359100, - [SMALL_STATE(9956)] = 359113, - [SMALL_STATE(9957)] = 359126, - [SMALL_STATE(9958)] = 359135, - [SMALL_STATE(9959)] = 359148, - [SMALL_STATE(9960)] = 359159, - [SMALL_STATE(9961)] = 359172, - [SMALL_STATE(9962)] = 359183, - [SMALL_STATE(9963)] = 359196, - [SMALL_STATE(9964)] = 359209, - [SMALL_STATE(9965)] = 359222, - [SMALL_STATE(9966)] = 359233, - [SMALL_STATE(9967)] = 359242, - [SMALL_STATE(9968)] = 359255, - [SMALL_STATE(9969)] = 359268, - [SMALL_STATE(9970)] = 359281, - [SMALL_STATE(9971)] = 359294, - [SMALL_STATE(9972)] = 359307, - [SMALL_STATE(9973)] = 359320, - [SMALL_STATE(9974)] = 359333, - [SMALL_STATE(9975)] = 359346, - [SMALL_STATE(9976)] = 359359, - [SMALL_STATE(9977)] = 359372, - [SMALL_STATE(9978)] = 359385, - [SMALL_STATE(9979)] = 359398, - [SMALL_STATE(9980)] = 359411, - [SMALL_STATE(9981)] = 359422, - [SMALL_STATE(9982)] = 359435, - [SMALL_STATE(9983)] = 359448, - [SMALL_STATE(9984)] = 359459, - [SMALL_STATE(9985)] = 359470, - [SMALL_STATE(9986)] = 359483, - [SMALL_STATE(9987)] = 359496, - [SMALL_STATE(9988)] = 359509, - [SMALL_STATE(9989)] = 359522, - [SMALL_STATE(9990)] = 359535, - [SMALL_STATE(9991)] = 359546, - [SMALL_STATE(9992)] = 359559, - [SMALL_STATE(9993)] = 359572, - [SMALL_STATE(9994)] = 359585, - [SMALL_STATE(9995)] = 359598, - [SMALL_STATE(9996)] = 359611, - [SMALL_STATE(9997)] = 359624, - [SMALL_STATE(9998)] = 359637, - [SMALL_STATE(9999)] = 359650, - [SMALL_STATE(10000)] = 359663, - [SMALL_STATE(10001)] = 359676, - [SMALL_STATE(10002)] = 359685, - [SMALL_STATE(10003)] = 359698, - [SMALL_STATE(10004)] = 359709, - [SMALL_STATE(10005)] = 359722, - [SMALL_STATE(10006)] = 359735, - [SMALL_STATE(10007)] = 359748, - [SMALL_STATE(10008)] = 359761, - [SMALL_STATE(10009)] = 359774, - [SMALL_STATE(10010)] = 359787, - [SMALL_STATE(10011)] = 359796, - [SMALL_STATE(10012)] = 359807, - [SMALL_STATE(10013)] = 359820, - [SMALL_STATE(10014)] = 359833, - [SMALL_STATE(10015)] = 359846, - [SMALL_STATE(10016)] = 359857, - [SMALL_STATE(10017)] = 359870, - [SMALL_STATE(10018)] = 359883, - [SMALL_STATE(10019)] = 359896, - [SMALL_STATE(10020)] = 359909, - [SMALL_STATE(10021)] = 359922, - [SMALL_STATE(10022)] = 359935, - [SMALL_STATE(10023)] = 359948, - [SMALL_STATE(10024)] = 359961, - [SMALL_STATE(10025)] = 359974, - [SMALL_STATE(10026)] = 359987, - [SMALL_STATE(10027)] = 360000, - [SMALL_STATE(10028)] = 360013, - [SMALL_STATE(10029)] = 360026, - [SMALL_STATE(10030)] = 360037, - [SMALL_STATE(10031)] = 360050, - [SMALL_STATE(10032)] = 360063, - [SMALL_STATE(10033)] = 360076, - [SMALL_STATE(10034)] = 360089, - [SMALL_STATE(10035)] = 360102, - [SMALL_STATE(10036)] = 360113, - [SMALL_STATE(10037)] = 360124, - [SMALL_STATE(10038)] = 360137, - [SMALL_STATE(10039)] = 360150, - [SMALL_STATE(10040)] = 360163, - [SMALL_STATE(10041)] = 360176, - [SMALL_STATE(10042)] = 360189, - [SMALL_STATE(10043)] = 360202, - [SMALL_STATE(10044)] = 360215, - [SMALL_STATE(10045)] = 360228, - [SMALL_STATE(10046)] = 360241, - [SMALL_STATE(10047)] = 360252, - [SMALL_STATE(10048)] = 360263, - [SMALL_STATE(10049)] = 360276, - [SMALL_STATE(10050)] = 360287, - [SMALL_STATE(10051)] = 360300, - [SMALL_STATE(10052)] = 360313, - [SMALL_STATE(10053)] = 360326, - [SMALL_STATE(10054)] = 360339, - [SMALL_STATE(10055)] = 360352, - [SMALL_STATE(10056)] = 360365, - [SMALL_STATE(10057)] = 360378, - [SMALL_STATE(10058)] = 360391, - [SMALL_STATE(10059)] = 360402, - [SMALL_STATE(10060)] = 360415, - [SMALL_STATE(10061)] = 360426, - [SMALL_STATE(10062)] = 360439, - [SMALL_STATE(10063)] = 360452, - [SMALL_STATE(10064)] = 360465, - [SMALL_STATE(10065)] = 360478, - [SMALL_STATE(10066)] = 360491, - [SMALL_STATE(10067)] = 360504, - [SMALL_STATE(10068)] = 360517, - [SMALL_STATE(10069)] = 360530, - [SMALL_STATE(10070)] = 360541, - [SMALL_STATE(10071)] = 360554, - [SMALL_STATE(10072)] = 360565, - [SMALL_STATE(10073)] = 360578, - [SMALL_STATE(10074)] = 360589, - [SMALL_STATE(10075)] = 360602, - [SMALL_STATE(10076)] = 360613, - [SMALL_STATE(10077)] = 360624, - [SMALL_STATE(10078)] = 360637, - [SMALL_STATE(10079)] = 360650, - [SMALL_STATE(10080)] = 360663, - [SMALL_STATE(10081)] = 360676, - [SMALL_STATE(10082)] = 360689, - [SMALL_STATE(10083)] = 360702, - [SMALL_STATE(10084)] = 360715, - [SMALL_STATE(10085)] = 360728, - [SMALL_STATE(10086)] = 360741, - [SMALL_STATE(10087)] = 360754, - [SMALL_STATE(10088)] = 360767, - [SMALL_STATE(10089)] = 360780, - [SMALL_STATE(10090)] = 360793, - [SMALL_STATE(10091)] = 360806, - [SMALL_STATE(10092)] = 360819, - [SMALL_STATE(10093)] = 360832, - [SMALL_STATE(10094)] = 360845, - [SMALL_STATE(10095)] = 360858, - [SMALL_STATE(10096)] = 360871, - [SMALL_STATE(10097)] = 360882, - [SMALL_STATE(10098)] = 360893, - [SMALL_STATE(10099)] = 360906, - [SMALL_STATE(10100)] = 360919, - [SMALL_STATE(10101)] = 360932, - [SMALL_STATE(10102)] = 360945, - [SMALL_STATE(10103)] = 360958, - [SMALL_STATE(10104)] = 360971, - [SMALL_STATE(10105)] = 360984, - [SMALL_STATE(10106)] = 360997, - [SMALL_STATE(10107)] = 361010, - [SMALL_STATE(10108)] = 361023, - [SMALL_STATE(10109)] = 361036, - [SMALL_STATE(10110)] = 361049, - [SMALL_STATE(10111)] = 361062, - [SMALL_STATE(10112)] = 361075, - [SMALL_STATE(10113)] = 361088, - [SMALL_STATE(10114)] = 361101, - [SMALL_STATE(10115)] = 361112, - [SMALL_STATE(10116)] = 361125, - [SMALL_STATE(10117)] = 361138, - [SMALL_STATE(10118)] = 361151, - [SMALL_STATE(10119)] = 361164, - [SMALL_STATE(10120)] = 361175, - [SMALL_STATE(10121)] = 361188, - [SMALL_STATE(10122)] = 361201, - [SMALL_STATE(10123)] = 361214, - [SMALL_STATE(10124)] = 361227, - [SMALL_STATE(10125)] = 361240, - [SMALL_STATE(10126)] = 361253, - [SMALL_STATE(10127)] = 361266, - [SMALL_STATE(10128)] = 361279, - [SMALL_STATE(10129)] = 361292, - [SMALL_STATE(10130)] = 361305, - [SMALL_STATE(10131)] = 361318, - [SMALL_STATE(10132)] = 361331, - [SMALL_STATE(10133)] = 361344, - [SMALL_STATE(10134)] = 361355, - [SMALL_STATE(10135)] = 361368, - [SMALL_STATE(10136)] = 361381, - [SMALL_STATE(10137)] = 361394, - [SMALL_STATE(10138)] = 361407, - [SMALL_STATE(10139)] = 361420, - [SMALL_STATE(10140)] = 361433, - [SMALL_STATE(10141)] = 361446, - [SMALL_STATE(10142)] = 361459, - [SMALL_STATE(10143)] = 361470, - [SMALL_STATE(10144)] = 361483, - [SMALL_STATE(10145)] = 361496, - [SMALL_STATE(10146)] = 361509, - [SMALL_STATE(10147)] = 361522, - [SMALL_STATE(10148)] = 361535, - [SMALL_STATE(10149)] = 361546, - [SMALL_STATE(10150)] = 361559, - [SMALL_STATE(10151)] = 361572, - [SMALL_STATE(10152)] = 361585, - [SMALL_STATE(10153)] = 361598, - [SMALL_STATE(10154)] = 361609, - [SMALL_STATE(10155)] = 361622, - [SMALL_STATE(10156)] = 361635, - [SMALL_STATE(10157)] = 361644, - [SMALL_STATE(10158)] = 361657, - [SMALL_STATE(10159)] = 361670, - [SMALL_STATE(10160)] = 361683, - [SMALL_STATE(10161)] = 361696, - [SMALL_STATE(10162)] = 361709, - [SMALL_STATE(10163)] = 361722, - [SMALL_STATE(10164)] = 361735, - [SMALL_STATE(10165)] = 361748, - [SMALL_STATE(10166)] = 361761, - [SMALL_STATE(10167)] = 361774, - [SMALL_STATE(10168)] = 361783, - [SMALL_STATE(10169)] = 361796, - [SMALL_STATE(10170)] = 361809, - [SMALL_STATE(10171)] = 361822, - [SMALL_STATE(10172)] = 361835, - [SMALL_STATE(10173)] = 361848, - [SMALL_STATE(10174)] = 361861, - [SMALL_STATE(10175)] = 361874, - [SMALL_STATE(10176)] = 361887, - [SMALL_STATE(10177)] = 361900, - [SMALL_STATE(10178)] = 361913, - [SMALL_STATE(10179)] = 361926, - [SMALL_STATE(10180)] = 361939, - [SMALL_STATE(10181)] = 361952, - [SMALL_STATE(10182)] = 361965, - [SMALL_STATE(10183)] = 361978, - [SMALL_STATE(10184)] = 361991, - [SMALL_STATE(10185)] = 362004, - [SMALL_STATE(10186)] = 362017, - [SMALL_STATE(10187)] = 362030, - [SMALL_STATE(10188)] = 362043, - [SMALL_STATE(10189)] = 362056, - [SMALL_STATE(10190)] = 362069, - [SMALL_STATE(10191)] = 362082, - [SMALL_STATE(10192)] = 362095, - [SMALL_STATE(10193)] = 362108, - [SMALL_STATE(10194)] = 362121, - [SMALL_STATE(10195)] = 362134, - [SMALL_STATE(10196)] = 362147, - [SMALL_STATE(10197)] = 362160, - [SMALL_STATE(10198)] = 362173, - [SMALL_STATE(10199)] = 362184, - [SMALL_STATE(10200)] = 362197, - [SMALL_STATE(10201)] = 362210, - [SMALL_STATE(10202)] = 362223, - [SMALL_STATE(10203)] = 362236, - [SMALL_STATE(10204)] = 362249, - [SMALL_STATE(10205)] = 362258, - [SMALL_STATE(10206)] = 362271, - [SMALL_STATE(10207)] = 362282, - [SMALL_STATE(10208)] = 362292, - [SMALL_STATE(10209)] = 362302, - [SMALL_STATE(10210)] = 362312, - [SMALL_STATE(10211)] = 362322, - [SMALL_STATE(10212)] = 362332, - [SMALL_STATE(10213)] = 362342, - [SMALL_STATE(10214)] = 362352, - [SMALL_STATE(10215)] = 362362, - [SMALL_STATE(10216)] = 362372, - [SMALL_STATE(10217)] = 362382, - [SMALL_STATE(10218)] = 362392, - [SMALL_STATE(10219)] = 362402, - [SMALL_STATE(10220)] = 362412, - [SMALL_STATE(10221)] = 362422, - [SMALL_STATE(10222)] = 362432, - [SMALL_STATE(10223)] = 362442, - [SMALL_STATE(10224)] = 362452, - [SMALL_STATE(10225)] = 362462, - [SMALL_STATE(10226)] = 362472, - [SMALL_STATE(10227)] = 362482, - [SMALL_STATE(10228)] = 362492, - [SMALL_STATE(10229)] = 362502, - [SMALL_STATE(10230)] = 362512, - [SMALL_STATE(10231)] = 362522, - [SMALL_STATE(10232)] = 362532, - [SMALL_STATE(10233)] = 362542, - [SMALL_STATE(10234)] = 362552, - [SMALL_STATE(10235)] = 362562, - [SMALL_STATE(10236)] = 362572, - [SMALL_STATE(10237)] = 362582, - [SMALL_STATE(10238)] = 362592, - [SMALL_STATE(10239)] = 362602, - [SMALL_STATE(10240)] = 362612, - [SMALL_STATE(10241)] = 362622, - [SMALL_STATE(10242)] = 362632, - [SMALL_STATE(10243)] = 362642, - [SMALL_STATE(10244)] = 362652, - [SMALL_STATE(10245)] = 362662, - [SMALL_STATE(10246)] = 362672, - [SMALL_STATE(10247)] = 362680, - [SMALL_STATE(10248)] = 362690, - [SMALL_STATE(10249)] = 362700, - [SMALL_STATE(10250)] = 362710, - [SMALL_STATE(10251)] = 362720, - [SMALL_STATE(10252)] = 362730, - [SMALL_STATE(10253)] = 362740, - [SMALL_STATE(10254)] = 362750, - [SMALL_STATE(10255)] = 362760, - [SMALL_STATE(10256)] = 362770, - [SMALL_STATE(10257)] = 362780, - [SMALL_STATE(10258)] = 362790, - [SMALL_STATE(10259)] = 362798, - [SMALL_STATE(10260)] = 362808, - [SMALL_STATE(10261)] = 362818, - [SMALL_STATE(10262)] = 362828, - [SMALL_STATE(10263)] = 362838, - [SMALL_STATE(10264)] = 362848, - [SMALL_STATE(10265)] = 362858, - [SMALL_STATE(10266)] = 362868, - [SMALL_STATE(10267)] = 362878, - [SMALL_STATE(10268)] = 362888, - [SMALL_STATE(10269)] = 362896, - [SMALL_STATE(10270)] = 362906, - [SMALL_STATE(10271)] = 362916, - [SMALL_STATE(10272)] = 362926, - [SMALL_STATE(10273)] = 362936, - [SMALL_STATE(10274)] = 362944, - [SMALL_STATE(10275)] = 362954, - [SMALL_STATE(10276)] = 362964, - [SMALL_STATE(10277)] = 362974, - [SMALL_STATE(10278)] = 362984, - [SMALL_STATE(10279)] = 362994, - [SMALL_STATE(10280)] = 363004, - [SMALL_STATE(10281)] = 363014, - [SMALL_STATE(10282)] = 363024, - [SMALL_STATE(10283)] = 363034, - [SMALL_STATE(10284)] = 363042, - [SMALL_STATE(10285)] = 363052, - [SMALL_STATE(10286)] = 363062, - [SMALL_STATE(10287)] = 363072, - [SMALL_STATE(10288)] = 363082, - [SMALL_STATE(10289)] = 363092, - [SMALL_STATE(10290)] = 363100, - [SMALL_STATE(10291)] = 363110, - [SMALL_STATE(10292)] = 363120, - [SMALL_STATE(10293)] = 363130, - [SMALL_STATE(10294)] = 363138, - [SMALL_STATE(10295)] = 363148, - [SMALL_STATE(10296)] = 363158, - [SMALL_STATE(10297)] = 363168, - [SMALL_STATE(10298)] = 363178, - [SMALL_STATE(10299)] = 363188, - [SMALL_STATE(10300)] = 363198, - [SMALL_STATE(10301)] = 363208, - [SMALL_STATE(10302)] = 363218, - [SMALL_STATE(10303)] = 363228, - [SMALL_STATE(10304)] = 363236, - [SMALL_STATE(10305)] = 363246, - [SMALL_STATE(10306)] = 363256, - [SMALL_STATE(10307)] = 363266, - [SMALL_STATE(10308)] = 363276, - [SMALL_STATE(10309)] = 363286, - [SMALL_STATE(10310)] = 363296, - [SMALL_STATE(10311)] = 363306, - [SMALL_STATE(10312)] = 363316, - [SMALL_STATE(10313)] = 363326, - [SMALL_STATE(10314)] = 363336, - [SMALL_STATE(10315)] = 363346, - [SMALL_STATE(10316)] = 363356, - [SMALL_STATE(10317)] = 363366, - [SMALL_STATE(10318)] = 363376, - [SMALL_STATE(10319)] = 363386, - [SMALL_STATE(10320)] = 363396, - [SMALL_STATE(10321)] = 363406, - [SMALL_STATE(10322)] = 363416, - [SMALL_STATE(10323)] = 363426, - [SMALL_STATE(10324)] = 363436, - [SMALL_STATE(10325)] = 363446, - [SMALL_STATE(10326)] = 363456, - [SMALL_STATE(10327)] = 363466, - [SMALL_STATE(10328)] = 363476, - [SMALL_STATE(10329)] = 363486, - [SMALL_STATE(10330)] = 363496, - [SMALL_STATE(10331)] = 363506, - [SMALL_STATE(10332)] = 363516, - [SMALL_STATE(10333)] = 363524, - [SMALL_STATE(10334)] = 363534, - [SMALL_STATE(10335)] = 363542, - [SMALL_STATE(10336)] = 363552, - [SMALL_STATE(10337)] = 363562, - [SMALL_STATE(10338)] = 363572, - [SMALL_STATE(10339)] = 363582, - [SMALL_STATE(10340)] = 363592, - [SMALL_STATE(10341)] = 363602, - [SMALL_STATE(10342)] = 363612, - [SMALL_STATE(10343)] = 363622, - [SMALL_STATE(10344)] = 363632, - [SMALL_STATE(10345)] = 363642, - [SMALL_STATE(10346)] = 363652, - [SMALL_STATE(10347)] = 363662, - [SMALL_STATE(10348)] = 363672, - [SMALL_STATE(10349)] = 363682, - [SMALL_STATE(10350)] = 363692, - [SMALL_STATE(10351)] = 363702, - [SMALL_STATE(10352)] = 363712, - [SMALL_STATE(10353)] = 363722, - [SMALL_STATE(10354)] = 363730, - [SMALL_STATE(10355)] = 363740, - [SMALL_STATE(10356)] = 363750, - [SMALL_STATE(10357)] = 363760, - [SMALL_STATE(10358)] = 363770, - [SMALL_STATE(10359)] = 363780, - [SMALL_STATE(10360)] = 363790, - [SMALL_STATE(10361)] = 363800, - [SMALL_STATE(10362)] = 363810, - [SMALL_STATE(10363)] = 363820, - [SMALL_STATE(10364)] = 363830, - [SMALL_STATE(10365)] = 363840, - [SMALL_STATE(10366)] = 363850, - [SMALL_STATE(10367)] = 363860, - [SMALL_STATE(10368)] = 363870, - [SMALL_STATE(10369)] = 363880, - [SMALL_STATE(10370)] = 363890, - [SMALL_STATE(10371)] = 363900, - [SMALL_STATE(10372)] = 363910, - [SMALL_STATE(10373)] = 363920, - [SMALL_STATE(10374)] = 363930, - [SMALL_STATE(10375)] = 363940, - [SMALL_STATE(10376)] = 363950, - [SMALL_STATE(10377)] = 363960, - [SMALL_STATE(10378)] = 363970, - [SMALL_STATE(10379)] = 363980, - [SMALL_STATE(10380)] = 363990, - [SMALL_STATE(10381)] = 364000, - [SMALL_STATE(10382)] = 364010, - [SMALL_STATE(10383)] = 364020, - [SMALL_STATE(10384)] = 364030, - [SMALL_STATE(10385)] = 364040, - [SMALL_STATE(10386)] = 364050, - [SMALL_STATE(10387)] = 364060, - [SMALL_STATE(10388)] = 364070, - [SMALL_STATE(10389)] = 364080, - [SMALL_STATE(10390)] = 364090, - [SMALL_STATE(10391)] = 364100, - [SMALL_STATE(10392)] = 364108, - [SMALL_STATE(10393)] = 364118, - [SMALL_STATE(10394)] = 364128, - [SMALL_STATE(10395)] = 364138, - [SMALL_STATE(10396)] = 364148, - [SMALL_STATE(10397)] = 364158, - [SMALL_STATE(10398)] = 364168, - [SMALL_STATE(10399)] = 364178, - [SMALL_STATE(10400)] = 364188, - [SMALL_STATE(10401)] = 364198, - [SMALL_STATE(10402)] = 364208, - [SMALL_STATE(10403)] = 364218, - [SMALL_STATE(10404)] = 364228, - [SMALL_STATE(10405)] = 364238, - [SMALL_STATE(10406)] = 364248, - [SMALL_STATE(10407)] = 364258, - [SMALL_STATE(10408)] = 364268, - [SMALL_STATE(10409)] = 364278, - [SMALL_STATE(10410)] = 364286, - [SMALL_STATE(10411)] = 364296, - [SMALL_STATE(10412)] = 364306, - [SMALL_STATE(10413)] = 364316, - [SMALL_STATE(10414)] = 364324, - [SMALL_STATE(10415)] = 364334, - [SMALL_STATE(10416)] = 364344, - [SMALL_STATE(10417)] = 364354, - [SMALL_STATE(10418)] = 364364, - [SMALL_STATE(10419)] = 364372, - [SMALL_STATE(10420)] = 364382, - [SMALL_STATE(10421)] = 364392, - [SMALL_STATE(10422)] = 364402, - [SMALL_STATE(10423)] = 364412, - [SMALL_STATE(10424)] = 364422, - [SMALL_STATE(10425)] = 364432, - [SMALL_STATE(10426)] = 364442, - [SMALL_STATE(10427)] = 364450, - [SMALL_STATE(10428)] = 364460, - [SMALL_STATE(10429)] = 364470, - [SMALL_STATE(10430)] = 364480, - [SMALL_STATE(10431)] = 364490, - [SMALL_STATE(10432)] = 364500, - [SMALL_STATE(10433)] = 364508, - [SMALL_STATE(10434)] = 364518, - [SMALL_STATE(10435)] = 364528, - [SMALL_STATE(10436)] = 364538, - [SMALL_STATE(10437)] = 364548, - [SMALL_STATE(10438)] = 364558, - [SMALL_STATE(10439)] = 364568, - [SMALL_STATE(10440)] = 364578, - [SMALL_STATE(10441)] = 364588, - [SMALL_STATE(10442)] = 364596, - [SMALL_STATE(10443)] = 364606, - [SMALL_STATE(10444)] = 364616, - [SMALL_STATE(10445)] = 364626, - [SMALL_STATE(10446)] = 364636, - [SMALL_STATE(10447)] = 364646, - [SMALL_STATE(10448)] = 364656, - [SMALL_STATE(10449)] = 364666, - [SMALL_STATE(10450)] = 364676, - [SMALL_STATE(10451)] = 364686, - [SMALL_STATE(10452)] = 364696, - [SMALL_STATE(10453)] = 364706, - [SMALL_STATE(10454)] = 364716, - [SMALL_STATE(10455)] = 364726, - [SMALL_STATE(10456)] = 364736, - [SMALL_STATE(10457)] = 364746, - [SMALL_STATE(10458)] = 364756, - [SMALL_STATE(10459)] = 364764, - [SMALL_STATE(10460)] = 364774, - [SMALL_STATE(10461)] = 364784, - [SMALL_STATE(10462)] = 364792, - [SMALL_STATE(10463)] = 364802, - [SMALL_STATE(10464)] = 364812, - [SMALL_STATE(10465)] = 364822, - [SMALL_STATE(10466)] = 364832, - [SMALL_STATE(10467)] = 364842, - [SMALL_STATE(10468)] = 364852, - [SMALL_STATE(10469)] = 364862, - [SMALL_STATE(10470)] = 364872, - [SMALL_STATE(10471)] = 364882, - [SMALL_STATE(10472)] = 364892, - [SMALL_STATE(10473)] = 364902, - [SMALL_STATE(10474)] = 364912, - [SMALL_STATE(10475)] = 364922, - [SMALL_STATE(10476)] = 364930, - [SMALL_STATE(10477)] = 364940, - [SMALL_STATE(10478)] = 364950, - [SMALL_STATE(10479)] = 364960, - [SMALL_STATE(10480)] = 364970, - [SMALL_STATE(10481)] = 364980, - [SMALL_STATE(10482)] = 364990, - [SMALL_STATE(10483)] = 364998, - [SMALL_STATE(10484)] = 365008, - [SMALL_STATE(10485)] = 365018, - [SMALL_STATE(10486)] = 365028, - [SMALL_STATE(10487)] = 365038, - [SMALL_STATE(10488)] = 365048, - [SMALL_STATE(10489)] = 365058, - [SMALL_STATE(10490)] = 365068, - [SMALL_STATE(10491)] = 365078, - [SMALL_STATE(10492)] = 365088, - [SMALL_STATE(10493)] = 365098, - [SMALL_STATE(10494)] = 365108, - [SMALL_STATE(10495)] = 365118, - [SMALL_STATE(10496)] = 365128, - [SMALL_STATE(10497)] = 365136, - [SMALL_STATE(10498)] = 365146, - [SMALL_STATE(10499)] = 365156, - [SMALL_STATE(10500)] = 365166, - [SMALL_STATE(10501)] = 365176, - [SMALL_STATE(10502)] = 365186, - [SMALL_STATE(10503)] = 365194, - [SMALL_STATE(10504)] = 365204, - [SMALL_STATE(10505)] = 365214, - [SMALL_STATE(10506)] = 365224, - [SMALL_STATE(10507)] = 365232, - [SMALL_STATE(10508)] = 365242, - [SMALL_STATE(10509)] = 365252, - [SMALL_STATE(10510)] = 365262, - [SMALL_STATE(10511)] = 365272, - [SMALL_STATE(10512)] = 365282, - [SMALL_STATE(10513)] = 365290, - [SMALL_STATE(10514)] = 365298, - [SMALL_STATE(10515)] = 365308, - [SMALL_STATE(10516)] = 365318, - [SMALL_STATE(10517)] = 365328, - [SMALL_STATE(10518)] = 365338, - [SMALL_STATE(10519)] = 365348, - [SMALL_STATE(10520)] = 365358, - [SMALL_STATE(10521)] = 365368, - [SMALL_STATE(10522)] = 365378, - [SMALL_STATE(10523)] = 365388, - [SMALL_STATE(10524)] = 365398, - [SMALL_STATE(10525)] = 365408, - [SMALL_STATE(10526)] = 365418, - [SMALL_STATE(10527)] = 365428, - [SMALL_STATE(10528)] = 365438, - [SMALL_STATE(10529)] = 365448, - [SMALL_STATE(10530)] = 365458, - [SMALL_STATE(10531)] = 365468, - [SMALL_STATE(10532)] = 365478, - [SMALL_STATE(10533)] = 365488, - [SMALL_STATE(10534)] = 365498, - [SMALL_STATE(10535)] = 365508, - [SMALL_STATE(10536)] = 365516, - [SMALL_STATE(10537)] = 365526, - [SMALL_STATE(10538)] = 365534, - [SMALL_STATE(10539)] = 365544, - [SMALL_STATE(10540)] = 365554, - [SMALL_STATE(10541)] = 365564, - [SMALL_STATE(10542)] = 365574, - [SMALL_STATE(10543)] = 365584, - [SMALL_STATE(10544)] = 365594, - [SMALL_STATE(10545)] = 365604, - [SMALL_STATE(10546)] = 365614, - [SMALL_STATE(10547)] = 365624, - [SMALL_STATE(10548)] = 365632, - [SMALL_STATE(10549)] = 365642, - [SMALL_STATE(10550)] = 365652, - [SMALL_STATE(10551)] = 365662, - [SMALL_STATE(10552)] = 365670, - [SMALL_STATE(10553)] = 365680, - [SMALL_STATE(10554)] = 365690, - [SMALL_STATE(10555)] = 365700, - [SMALL_STATE(10556)] = 365710, - [SMALL_STATE(10557)] = 365718, - [SMALL_STATE(10558)] = 365728, - [SMALL_STATE(10559)] = 365738, - [SMALL_STATE(10560)] = 365748, - [SMALL_STATE(10561)] = 365756, - [SMALL_STATE(10562)] = 365766, - [SMALL_STATE(10563)] = 365774, - [SMALL_STATE(10564)] = 365784, - [SMALL_STATE(10565)] = 365792, - [SMALL_STATE(10566)] = 365802, - [SMALL_STATE(10567)] = 365812, - [SMALL_STATE(10568)] = 365822, - [SMALL_STATE(10569)] = 365832, - [SMALL_STATE(10570)] = 365840, - [SMALL_STATE(10571)] = 365850, - [SMALL_STATE(10572)] = 365860, - [SMALL_STATE(10573)] = 365870, - [SMALL_STATE(10574)] = 365880, - [SMALL_STATE(10575)] = 365890, - [SMALL_STATE(10576)] = 365900, - [SMALL_STATE(10577)] = 365908, - [SMALL_STATE(10578)] = 365918, - [SMALL_STATE(10579)] = 365926, - [SMALL_STATE(10580)] = 365934, - [SMALL_STATE(10581)] = 365944, - [SMALL_STATE(10582)] = 365952, - [SMALL_STATE(10583)] = 365960, - [SMALL_STATE(10584)] = 365970, - [SMALL_STATE(10585)] = 365980, - [SMALL_STATE(10586)] = 365990, - [SMALL_STATE(10587)] = 365998, - [SMALL_STATE(10588)] = 366008, - [SMALL_STATE(10589)] = 366018, - [SMALL_STATE(10590)] = 366028, - [SMALL_STATE(10591)] = 366038, - [SMALL_STATE(10592)] = 366048, - [SMALL_STATE(10593)] = 366056, - [SMALL_STATE(10594)] = 366066, - [SMALL_STATE(10595)] = 366074, - [SMALL_STATE(10596)] = 366084, - [SMALL_STATE(10597)] = 366094, - [SMALL_STATE(10598)] = 366104, - [SMALL_STATE(10599)] = 366114, - [SMALL_STATE(10600)] = 366124, - [SMALL_STATE(10601)] = 366134, - [SMALL_STATE(10602)] = 366144, - [SMALL_STATE(10603)] = 366154, - [SMALL_STATE(10604)] = 366164, - [SMALL_STATE(10605)] = 366174, - [SMALL_STATE(10606)] = 366184, - [SMALL_STATE(10607)] = 366194, - [SMALL_STATE(10608)] = 366204, - [SMALL_STATE(10609)] = 366214, - [SMALL_STATE(10610)] = 366224, - [SMALL_STATE(10611)] = 366234, - [SMALL_STATE(10612)] = 366244, - [SMALL_STATE(10613)] = 366254, - [SMALL_STATE(10614)] = 366264, - [SMALL_STATE(10615)] = 366274, - [SMALL_STATE(10616)] = 366284, - [SMALL_STATE(10617)] = 366294, - [SMALL_STATE(10618)] = 366302, - [SMALL_STATE(10619)] = 366312, - [SMALL_STATE(10620)] = 366322, - [SMALL_STATE(10621)] = 366330, - [SMALL_STATE(10622)] = 366340, - [SMALL_STATE(10623)] = 366350, - [SMALL_STATE(10624)] = 366360, - [SMALL_STATE(10625)] = 366370, - [SMALL_STATE(10626)] = 366380, - [SMALL_STATE(10627)] = 366390, - [SMALL_STATE(10628)] = 366397, - [SMALL_STATE(10629)] = 366404, - [SMALL_STATE(10630)] = 366411, - [SMALL_STATE(10631)] = 366418, - [SMALL_STATE(10632)] = 366425, - [SMALL_STATE(10633)] = 366432, - [SMALL_STATE(10634)] = 366439, - [SMALL_STATE(10635)] = 366446, - [SMALL_STATE(10636)] = 366453, - [SMALL_STATE(10637)] = 366460, - [SMALL_STATE(10638)] = 366467, - [SMALL_STATE(10639)] = 366474, - [SMALL_STATE(10640)] = 366481, - [SMALL_STATE(10641)] = 366488, - [SMALL_STATE(10642)] = 366495, - [SMALL_STATE(10643)] = 366502, - [SMALL_STATE(10644)] = 366509, - [SMALL_STATE(10645)] = 366516, - [SMALL_STATE(10646)] = 366523, - [SMALL_STATE(10647)] = 366530, - [SMALL_STATE(10648)] = 366537, - [SMALL_STATE(10649)] = 366544, - [SMALL_STATE(10650)] = 366551, - [SMALL_STATE(10651)] = 366558, - [SMALL_STATE(10652)] = 366565, - [SMALL_STATE(10653)] = 366572, - [SMALL_STATE(10654)] = 366579, - [SMALL_STATE(10655)] = 366586, - [SMALL_STATE(10656)] = 366593, - [SMALL_STATE(10657)] = 366600, - [SMALL_STATE(10658)] = 366607, - [SMALL_STATE(10659)] = 366614, - [SMALL_STATE(10660)] = 366621, - [SMALL_STATE(10661)] = 366628, - [SMALL_STATE(10662)] = 366635, - [SMALL_STATE(10663)] = 366642, - [SMALL_STATE(10664)] = 366649, - [SMALL_STATE(10665)] = 366656, - [SMALL_STATE(10666)] = 366663, - [SMALL_STATE(10667)] = 366670, - [SMALL_STATE(10668)] = 366677, - [SMALL_STATE(10669)] = 366684, - [SMALL_STATE(10670)] = 366691, - [SMALL_STATE(10671)] = 366698, - [SMALL_STATE(10672)] = 366705, - [SMALL_STATE(10673)] = 366712, - [SMALL_STATE(10674)] = 366719, - [SMALL_STATE(10675)] = 366726, - [SMALL_STATE(10676)] = 366733, - [SMALL_STATE(10677)] = 366740, - [SMALL_STATE(10678)] = 366747, - [SMALL_STATE(10679)] = 366754, - [SMALL_STATE(10680)] = 366761, - [SMALL_STATE(10681)] = 366768, - [SMALL_STATE(10682)] = 366775, - [SMALL_STATE(10683)] = 366782, - [SMALL_STATE(10684)] = 366789, - [SMALL_STATE(10685)] = 366796, - [SMALL_STATE(10686)] = 366803, - [SMALL_STATE(10687)] = 366810, - [SMALL_STATE(10688)] = 366817, - [SMALL_STATE(10689)] = 366824, - [SMALL_STATE(10690)] = 366831, - [SMALL_STATE(10691)] = 366838, - [SMALL_STATE(10692)] = 366845, - [SMALL_STATE(10693)] = 366852, - [SMALL_STATE(10694)] = 366859, - [SMALL_STATE(10695)] = 366866, - [SMALL_STATE(10696)] = 366873, - [SMALL_STATE(10697)] = 366880, - [SMALL_STATE(10698)] = 366887, - [SMALL_STATE(10699)] = 366894, - [SMALL_STATE(10700)] = 366901, - [SMALL_STATE(10701)] = 366908, - [SMALL_STATE(10702)] = 366915, - [SMALL_STATE(10703)] = 366922, - [SMALL_STATE(10704)] = 366929, - [SMALL_STATE(10705)] = 366936, - [SMALL_STATE(10706)] = 366943, - [SMALL_STATE(10707)] = 366950, - [SMALL_STATE(10708)] = 366957, - [SMALL_STATE(10709)] = 366964, - [SMALL_STATE(10710)] = 366971, - [SMALL_STATE(10711)] = 366978, - [SMALL_STATE(10712)] = 366985, - [SMALL_STATE(10713)] = 366992, - [SMALL_STATE(10714)] = 366999, - [SMALL_STATE(10715)] = 367006, - [SMALL_STATE(10716)] = 367013, - [SMALL_STATE(10717)] = 367020, - [SMALL_STATE(10718)] = 367027, - [SMALL_STATE(10719)] = 367034, - [SMALL_STATE(10720)] = 367041, - [SMALL_STATE(10721)] = 367048, - [SMALL_STATE(10722)] = 367055, - [SMALL_STATE(10723)] = 367062, - [SMALL_STATE(10724)] = 367069, - [SMALL_STATE(10725)] = 367076, - [SMALL_STATE(10726)] = 367083, - [SMALL_STATE(10727)] = 367090, - [SMALL_STATE(10728)] = 367097, - [SMALL_STATE(10729)] = 367104, - [SMALL_STATE(10730)] = 367111, - [SMALL_STATE(10731)] = 367118, - [SMALL_STATE(10732)] = 367125, - [SMALL_STATE(10733)] = 367132, - [SMALL_STATE(10734)] = 367139, - [SMALL_STATE(10735)] = 367146, - [SMALL_STATE(10736)] = 367153, - [SMALL_STATE(10737)] = 367160, - [SMALL_STATE(10738)] = 367167, - [SMALL_STATE(10739)] = 367174, - [SMALL_STATE(10740)] = 367181, - [SMALL_STATE(10741)] = 367188, - [SMALL_STATE(10742)] = 367195, - [SMALL_STATE(10743)] = 367202, - [SMALL_STATE(10744)] = 367209, - [SMALL_STATE(10745)] = 367216, - [SMALL_STATE(10746)] = 367223, - [SMALL_STATE(10747)] = 367230, - [SMALL_STATE(10748)] = 367237, - [SMALL_STATE(10749)] = 367244, - [SMALL_STATE(10750)] = 367251, - [SMALL_STATE(10751)] = 367258, - [SMALL_STATE(10752)] = 367265, - [SMALL_STATE(10753)] = 367272, - [SMALL_STATE(10754)] = 367279, - [SMALL_STATE(10755)] = 367286, - [SMALL_STATE(10756)] = 367293, - [SMALL_STATE(10757)] = 367300, - [SMALL_STATE(10758)] = 367307, - [SMALL_STATE(10759)] = 367314, - [SMALL_STATE(10760)] = 367321, - [SMALL_STATE(10761)] = 367328, - [SMALL_STATE(10762)] = 367335, - [SMALL_STATE(10763)] = 367342, - [SMALL_STATE(10764)] = 367349, - [SMALL_STATE(10765)] = 367356, - [SMALL_STATE(10766)] = 367363, - [SMALL_STATE(10767)] = 367370, - [SMALL_STATE(10768)] = 367377, - [SMALL_STATE(10769)] = 367384, - [SMALL_STATE(10770)] = 367391, - [SMALL_STATE(10771)] = 367398, - [SMALL_STATE(10772)] = 367405, - [SMALL_STATE(10773)] = 367412, - [SMALL_STATE(10774)] = 367419, - [SMALL_STATE(10775)] = 367426, - [SMALL_STATE(10776)] = 367433, - [SMALL_STATE(10777)] = 367440, - [SMALL_STATE(10778)] = 367447, - [SMALL_STATE(10779)] = 367454, - [SMALL_STATE(10780)] = 367461, - [SMALL_STATE(10781)] = 367468, - [SMALL_STATE(10782)] = 367475, - [SMALL_STATE(10783)] = 367482, - [SMALL_STATE(10784)] = 367489, - [SMALL_STATE(10785)] = 367496, - [SMALL_STATE(10786)] = 367503, - [SMALL_STATE(10787)] = 367510, - [SMALL_STATE(10788)] = 367517, - [SMALL_STATE(10789)] = 367524, - [SMALL_STATE(10790)] = 367531, - [SMALL_STATE(10791)] = 367538, - [SMALL_STATE(10792)] = 367545, - [SMALL_STATE(10793)] = 367552, - [SMALL_STATE(10794)] = 367559, - [SMALL_STATE(10795)] = 367566, - [SMALL_STATE(10796)] = 367573, - [SMALL_STATE(10797)] = 367580, - [SMALL_STATE(10798)] = 367587, - [SMALL_STATE(10799)] = 367594, - [SMALL_STATE(10800)] = 367601, - [SMALL_STATE(10801)] = 367608, - [SMALL_STATE(10802)] = 367615, - [SMALL_STATE(10803)] = 367622, - [SMALL_STATE(10804)] = 367629, - [SMALL_STATE(10805)] = 367636, - [SMALL_STATE(10806)] = 367643, - [SMALL_STATE(10807)] = 367650, - [SMALL_STATE(10808)] = 367657, - [SMALL_STATE(10809)] = 367664, - [SMALL_STATE(10810)] = 367671, - [SMALL_STATE(10811)] = 367678, - [SMALL_STATE(10812)] = 367685, - [SMALL_STATE(10813)] = 367692, - [SMALL_STATE(10814)] = 367699, - [SMALL_STATE(10815)] = 367706, - [SMALL_STATE(10816)] = 367713, - [SMALL_STATE(10817)] = 367720, - [SMALL_STATE(10818)] = 367727, - [SMALL_STATE(10819)] = 367734, - [SMALL_STATE(10820)] = 367741, - [SMALL_STATE(10821)] = 367748, - [SMALL_STATE(10822)] = 367755, - [SMALL_STATE(10823)] = 367762, - [SMALL_STATE(10824)] = 367769, - [SMALL_STATE(10825)] = 367776, - [SMALL_STATE(10826)] = 367783, - [SMALL_STATE(10827)] = 367790, - [SMALL_STATE(10828)] = 367797, - [SMALL_STATE(10829)] = 367804, - [SMALL_STATE(10830)] = 367811, - [SMALL_STATE(10831)] = 367818, - [SMALL_STATE(10832)] = 367825, - [SMALL_STATE(10833)] = 367832, - [SMALL_STATE(10834)] = 367839, - [SMALL_STATE(10835)] = 367846, - [SMALL_STATE(10836)] = 367853, - [SMALL_STATE(10837)] = 367860, - [SMALL_STATE(10838)] = 367867, - [SMALL_STATE(10839)] = 367874, - [SMALL_STATE(10840)] = 367881, - [SMALL_STATE(10841)] = 367888, - [SMALL_STATE(10842)] = 367895, - [SMALL_STATE(10843)] = 367902, - [SMALL_STATE(10844)] = 367909, - [SMALL_STATE(10845)] = 367916, - [SMALL_STATE(10846)] = 367923, - [SMALL_STATE(10847)] = 367930, - [SMALL_STATE(10848)] = 367937, - [SMALL_STATE(10849)] = 367944, - [SMALL_STATE(10850)] = 367951, - [SMALL_STATE(10851)] = 367958, - [SMALL_STATE(10852)] = 367965, - [SMALL_STATE(10853)] = 367972, - [SMALL_STATE(10854)] = 367979, - [SMALL_STATE(10855)] = 367986, - [SMALL_STATE(10856)] = 367993, - [SMALL_STATE(10857)] = 368000, - [SMALL_STATE(10858)] = 368007, - [SMALL_STATE(10859)] = 368014, - [SMALL_STATE(10860)] = 368021, - [SMALL_STATE(10861)] = 368028, - [SMALL_STATE(10862)] = 368035, - [SMALL_STATE(10863)] = 368042, - [SMALL_STATE(10864)] = 368049, - [SMALL_STATE(10865)] = 368056, - [SMALL_STATE(10866)] = 368063, - [SMALL_STATE(10867)] = 368070, - [SMALL_STATE(10868)] = 368077, - [SMALL_STATE(10869)] = 368084, - [SMALL_STATE(10870)] = 368091, - [SMALL_STATE(10871)] = 368098, - [SMALL_STATE(10872)] = 368105, - [SMALL_STATE(10873)] = 368112, - [SMALL_STATE(10874)] = 368119, - [SMALL_STATE(10875)] = 368126, - [SMALL_STATE(10876)] = 368133, - [SMALL_STATE(10877)] = 368140, - [SMALL_STATE(10878)] = 368147, - [SMALL_STATE(10879)] = 368154, - [SMALL_STATE(10880)] = 368161, - [SMALL_STATE(10881)] = 368168, - [SMALL_STATE(10882)] = 368175, - [SMALL_STATE(10883)] = 368182, - [SMALL_STATE(10884)] = 368189, - [SMALL_STATE(10885)] = 368196, - [SMALL_STATE(10886)] = 368203, - [SMALL_STATE(10887)] = 368210, - [SMALL_STATE(10888)] = 368217, - [SMALL_STATE(10889)] = 368224, - [SMALL_STATE(10890)] = 368231, - [SMALL_STATE(10891)] = 368238, - [SMALL_STATE(10892)] = 368245, - [SMALL_STATE(10893)] = 368252, - [SMALL_STATE(10894)] = 368259, - [SMALL_STATE(10895)] = 368266, - [SMALL_STATE(10896)] = 368273, - [SMALL_STATE(10897)] = 368280, - [SMALL_STATE(10898)] = 368287, - [SMALL_STATE(10899)] = 368294, - [SMALL_STATE(10900)] = 368301, - [SMALL_STATE(10901)] = 368308, - [SMALL_STATE(10902)] = 368315, - [SMALL_STATE(10903)] = 368322, - [SMALL_STATE(10904)] = 368329, - [SMALL_STATE(10905)] = 368336, - [SMALL_STATE(10906)] = 368343, - [SMALL_STATE(10907)] = 368350, - [SMALL_STATE(10908)] = 368357, - [SMALL_STATE(10909)] = 368364, - [SMALL_STATE(10910)] = 368371, - [SMALL_STATE(10911)] = 368378, - [SMALL_STATE(10912)] = 368385, - [SMALL_STATE(10913)] = 368392, - [SMALL_STATE(10914)] = 368399, - [SMALL_STATE(10915)] = 368406, - [SMALL_STATE(10916)] = 368413, - [SMALL_STATE(10917)] = 368420, - [SMALL_STATE(10918)] = 368427, - [SMALL_STATE(10919)] = 368434, - [SMALL_STATE(10920)] = 368441, - [SMALL_STATE(10921)] = 368448, - [SMALL_STATE(10922)] = 368455, - [SMALL_STATE(10923)] = 368462, - [SMALL_STATE(10924)] = 368469, - [SMALL_STATE(10925)] = 368476, - [SMALL_STATE(10926)] = 368483, - [SMALL_STATE(10927)] = 368490, - [SMALL_STATE(10928)] = 368497, - [SMALL_STATE(10929)] = 368504, - [SMALL_STATE(10930)] = 368511, - [SMALL_STATE(10931)] = 368518, - [SMALL_STATE(10932)] = 368525, - [SMALL_STATE(10933)] = 368532, - [SMALL_STATE(10934)] = 368539, - [SMALL_STATE(10935)] = 368546, - [SMALL_STATE(10936)] = 368553, - [SMALL_STATE(10937)] = 368560, - [SMALL_STATE(10938)] = 368567, - [SMALL_STATE(10939)] = 368574, - [SMALL_STATE(10940)] = 368581, - [SMALL_STATE(10941)] = 368588, - [SMALL_STATE(10942)] = 368595, - [SMALL_STATE(10943)] = 368602, - [SMALL_STATE(10944)] = 368609, - [SMALL_STATE(10945)] = 368616, - [SMALL_STATE(10946)] = 368623, - [SMALL_STATE(10947)] = 368630, - [SMALL_STATE(10948)] = 368637, - [SMALL_STATE(10949)] = 368644, - [SMALL_STATE(10950)] = 368651, - [SMALL_STATE(10951)] = 368658, - [SMALL_STATE(10952)] = 368665, - [SMALL_STATE(10953)] = 368672, - [SMALL_STATE(10954)] = 368679, - [SMALL_STATE(10955)] = 368686, - [SMALL_STATE(10956)] = 368693, - [SMALL_STATE(10957)] = 368700, - [SMALL_STATE(10958)] = 368707, - [SMALL_STATE(10959)] = 368714, - [SMALL_STATE(10960)] = 368721, - [SMALL_STATE(10961)] = 368728, - [SMALL_STATE(10962)] = 368735, - [SMALL_STATE(10963)] = 368742, - [SMALL_STATE(10964)] = 368749, - [SMALL_STATE(10965)] = 368756, - [SMALL_STATE(10966)] = 368763, - [SMALL_STATE(10967)] = 368770, - [SMALL_STATE(10968)] = 368777, - [SMALL_STATE(10969)] = 368784, - [SMALL_STATE(10970)] = 368791, - [SMALL_STATE(10971)] = 368798, - [SMALL_STATE(10972)] = 368805, - [SMALL_STATE(10973)] = 368812, - [SMALL_STATE(10974)] = 368819, - [SMALL_STATE(10975)] = 368826, - [SMALL_STATE(10976)] = 368833, - [SMALL_STATE(10977)] = 368840, - [SMALL_STATE(10978)] = 368847, - [SMALL_STATE(10979)] = 368854, - [SMALL_STATE(10980)] = 368861, - [SMALL_STATE(10981)] = 368868, - [SMALL_STATE(10982)] = 368875, - [SMALL_STATE(10983)] = 368882, - [SMALL_STATE(10984)] = 368889, - [SMALL_STATE(10985)] = 368896, - [SMALL_STATE(10986)] = 368903, - [SMALL_STATE(10987)] = 368910, - [SMALL_STATE(10988)] = 368917, - [SMALL_STATE(10989)] = 368924, - [SMALL_STATE(10990)] = 368931, - [SMALL_STATE(10991)] = 368938, - [SMALL_STATE(10992)] = 368945, - [SMALL_STATE(10993)] = 368952, - [SMALL_STATE(10994)] = 368959, - [SMALL_STATE(10995)] = 368966, - [SMALL_STATE(10996)] = 368973, - [SMALL_STATE(10997)] = 368980, - [SMALL_STATE(10998)] = 368987, - [SMALL_STATE(10999)] = 368994, - [SMALL_STATE(11000)] = 369001, - [SMALL_STATE(11001)] = 369008, - [SMALL_STATE(11002)] = 369015, - [SMALL_STATE(11003)] = 369022, - [SMALL_STATE(11004)] = 369029, - [SMALL_STATE(11005)] = 369036, - [SMALL_STATE(11006)] = 369043, - [SMALL_STATE(11007)] = 369050, - [SMALL_STATE(11008)] = 369057, - [SMALL_STATE(11009)] = 369064, - [SMALL_STATE(11010)] = 369071, - [SMALL_STATE(11011)] = 369078, - [SMALL_STATE(11012)] = 369085, - [SMALL_STATE(11013)] = 369092, - [SMALL_STATE(11014)] = 369099, - [SMALL_STATE(11015)] = 369106, - [SMALL_STATE(11016)] = 369113, - [SMALL_STATE(11017)] = 369120, - [SMALL_STATE(11018)] = 369127, - [SMALL_STATE(11019)] = 369134, - [SMALL_STATE(11020)] = 369141, - [SMALL_STATE(11021)] = 369148, - [SMALL_STATE(11022)] = 369155, - [SMALL_STATE(11023)] = 369162, - [SMALL_STATE(11024)] = 369169, - [SMALL_STATE(11025)] = 369176, - [SMALL_STATE(11026)] = 369183, - [SMALL_STATE(11027)] = 369190, - [SMALL_STATE(11028)] = 369197, - [SMALL_STATE(11029)] = 369204, - [SMALL_STATE(11030)] = 369211, - [SMALL_STATE(11031)] = 369218, - [SMALL_STATE(11032)] = 369225, - [SMALL_STATE(11033)] = 369232, - [SMALL_STATE(11034)] = 369239, - [SMALL_STATE(11035)] = 369246, - [SMALL_STATE(11036)] = 369253, - [SMALL_STATE(11037)] = 369260, - [SMALL_STATE(11038)] = 369267, - [SMALL_STATE(11039)] = 369274, - [SMALL_STATE(11040)] = 369281, - [SMALL_STATE(11041)] = 369288, - [SMALL_STATE(11042)] = 369295, - [SMALL_STATE(11043)] = 369302, - [SMALL_STATE(11044)] = 369309, - [SMALL_STATE(11045)] = 369316, - [SMALL_STATE(11046)] = 369323, - [SMALL_STATE(11047)] = 369330, - [SMALL_STATE(11048)] = 369337, - [SMALL_STATE(11049)] = 369344, - [SMALL_STATE(11050)] = 369351, - [SMALL_STATE(11051)] = 369358, - [SMALL_STATE(11052)] = 369365, - [SMALL_STATE(11053)] = 369372, - [SMALL_STATE(11054)] = 369379, - [SMALL_STATE(11055)] = 369386, - [SMALL_STATE(11056)] = 369393, - [SMALL_STATE(11057)] = 369400, - [SMALL_STATE(11058)] = 369407, - [SMALL_STATE(11059)] = 369414, - [SMALL_STATE(11060)] = 369421, - [SMALL_STATE(11061)] = 369428, - [SMALL_STATE(11062)] = 369435, - [SMALL_STATE(11063)] = 369442, - [SMALL_STATE(11064)] = 369449, - [SMALL_STATE(11065)] = 369456, - [SMALL_STATE(11066)] = 369463, - [SMALL_STATE(11067)] = 369470, - [SMALL_STATE(11068)] = 369477, - [SMALL_STATE(11069)] = 369484, - [SMALL_STATE(11070)] = 369491, - [SMALL_STATE(11071)] = 369498, - [SMALL_STATE(11072)] = 369505, - [SMALL_STATE(11073)] = 369512, - [SMALL_STATE(11074)] = 369519, - [SMALL_STATE(11075)] = 369526, - [SMALL_STATE(11076)] = 369533, - [SMALL_STATE(11077)] = 369540, - [SMALL_STATE(11078)] = 369547, - [SMALL_STATE(11079)] = 369554, - [SMALL_STATE(11080)] = 369561, - [SMALL_STATE(11081)] = 369568, - [SMALL_STATE(11082)] = 369575, - [SMALL_STATE(11083)] = 369582, - [SMALL_STATE(11084)] = 369589, - [SMALL_STATE(11085)] = 369596, - [SMALL_STATE(11086)] = 369603, - [SMALL_STATE(11087)] = 369610, - [SMALL_STATE(11088)] = 369617, - [SMALL_STATE(11089)] = 369624, - [SMALL_STATE(11090)] = 369631, - [SMALL_STATE(11091)] = 369638, - [SMALL_STATE(11092)] = 369645, - [SMALL_STATE(11093)] = 369652, - [SMALL_STATE(11094)] = 369659, - [SMALL_STATE(11095)] = 369666, - [SMALL_STATE(11096)] = 369673, - [SMALL_STATE(11097)] = 369680, - [SMALL_STATE(11098)] = 369687, - [SMALL_STATE(11099)] = 369694, - [SMALL_STATE(11100)] = 369701, - [SMALL_STATE(11101)] = 369708, - [SMALL_STATE(11102)] = 369715, - [SMALL_STATE(11103)] = 369722, - [SMALL_STATE(11104)] = 369729, - [SMALL_STATE(11105)] = 369736, - [SMALL_STATE(11106)] = 369743, - [SMALL_STATE(11107)] = 369750, - [SMALL_STATE(11108)] = 369757, - [SMALL_STATE(11109)] = 369764, - [SMALL_STATE(11110)] = 369771, - [SMALL_STATE(11111)] = 369778, - [SMALL_STATE(11112)] = 369785, - [SMALL_STATE(11113)] = 369792, - [SMALL_STATE(11114)] = 369799, - [SMALL_STATE(11115)] = 369806, - [SMALL_STATE(11116)] = 369813, - [SMALL_STATE(11117)] = 369820, - [SMALL_STATE(11118)] = 369827, - [SMALL_STATE(11119)] = 369834, - [SMALL_STATE(11120)] = 369841, - [SMALL_STATE(11121)] = 369848, - [SMALL_STATE(11122)] = 369855, - [SMALL_STATE(11123)] = 369862, - [SMALL_STATE(11124)] = 369869, - [SMALL_STATE(11125)] = 369876, - [SMALL_STATE(11126)] = 369883, - [SMALL_STATE(11127)] = 369890, - [SMALL_STATE(11128)] = 369897, - [SMALL_STATE(11129)] = 369904, - [SMALL_STATE(11130)] = 369911, - [SMALL_STATE(11131)] = 369918, - [SMALL_STATE(11132)] = 369925, - [SMALL_STATE(11133)] = 369932, - [SMALL_STATE(11134)] = 369939, - [SMALL_STATE(11135)] = 369946, - [SMALL_STATE(11136)] = 369953, - [SMALL_STATE(11137)] = 369960, - [SMALL_STATE(11138)] = 369967, - [SMALL_STATE(11139)] = 369974, - [SMALL_STATE(11140)] = 369981, - [SMALL_STATE(11141)] = 369988, - [SMALL_STATE(11142)] = 369995, - [SMALL_STATE(11143)] = 370002, - [SMALL_STATE(11144)] = 370009, - [SMALL_STATE(11145)] = 370016, - [SMALL_STATE(11146)] = 370023, - [SMALL_STATE(11147)] = 370030, - [SMALL_STATE(11148)] = 370037, - [SMALL_STATE(11149)] = 370044, - [SMALL_STATE(11150)] = 370051, - [SMALL_STATE(11151)] = 370058, - [SMALL_STATE(11152)] = 370065, - [SMALL_STATE(11153)] = 370072, - [SMALL_STATE(11154)] = 370079, - [SMALL_STATE(11155)] = 370086, - [SMALL_STATE(11156)] = 370093, - [SMALL_STATE(11157)] = 370100, - [SMALL_STATE(11158)] = 370107, - [SMALL_STATE(11159)] = 370114, - [SMALL_STATE(11160)] = 370121, - [SMALL_STATE(11161)] = 370128, - [SMALL_STATE(11162)] = 370135, - [SMALL_STATE(11163)] = 370142, - [SMALL_STATE(11164)] = 370149, - [SMALL_STATE(11165)] = 370156, - [SMALL_STATE(11166)] = 370163, - [SMALL_STATE(11167)] = 370170, - [SMALL_STATE(11168)] = 370177, - [SMALL_STATE(11169)] = 370184, - [SMALL_STATE(11170)] = 370191, - [SMALL_STATE(11171)] = 370198, - [SMALL_STATE(11172)] = 370205, - [SMALL_STATE(11173)] = 370212, - [SMALL_STATE(11174)] = 370219, - [SMALL_STATE(11175)] = 370226, - [SMALL_STATE(11176)] = 370233, - [SMALL_STATE(11177)] = 370240, - [SMALL_STATE(11178)] = 370247, - [SMALL_STATE(11179)] = 370254, - [SMALL_STATE(11180)] = 370261, - [SMALL_STATE(11181)] = 370268, - [SMALL_STATE(11182)] = 370275, - [SMALL_STATE(11183)] = 370282, - [SMALL_STATE(11184)] = 370289, - [SMALL_STATE(11185)] = 370296, - [SMALL_STATE(11186)] = 370303, - [SMALL_STATE(11187)] = 370310, - [SMALL_STATE(11188)] = 370317, - [SMALL_STATE(11189)] = 370324, - [SMALL_STATE(11190)] = 370331, - [SMALL_STATE(11191)] = 370338, - [SMALL_STATE(11192)] = 370345, - [SMALL_STATE(11193)] = 370352, - [SMALL_STATE(11194)] = 370359, - [SMALL_STATE(11195)] = 370366, - [SMALL_STATE(11196)] = 370373, - [SMALL_STATE(11197)] = 370380, - [SMALL_STATE(11198)] = 370387, - [SMALL_STATE(11199)] = 370394, - [SMALL_STATE(11200)] = 370401, - [SMALL_STATE(11201)] = 370408, - [SMALL_STATE(11202)] = 370415, - [SMALL_STATE(11203)] = 370422, - [SMALL_STATE(11204)] = 370429, - [SMALL_STATE(11205)] = 370436, - [SMALL_STATE(11206)] = 370443, - [SMALL_STATE(11207)] = 370450, - [SMALL_STATE(11208)] = 370457, - [SMALL_STATE(11209)] = 370464, - [SMALL_STATE(11210)] = 370471, - [SMALL_STATE(11211)] = 370478, - [SMALL_STATE(11212)] = 370485, - [SMALL_STATE(11213)] = 370492, - [SMALL_STATE(11214)] = 370499, - [SMALL_STATE(11215)] = 370506, - [SMALL_STATE(11216)] = 370513, - [SMALL_STATE(11217)] = 370520, - [SMALL_STATE(11218)] = 370527, - [SMALL_STATE(11219)] = 370534, - [SMALL_STATE(11220)] = 370541, - [SMALL_STATE(11221)] = 370548, - [SMALL_STATE(11222)] = 370555, - [SMALL_STATE(11223)] = 370562, - [SMALL_STATE(11224)] = 370569, - [SMALL_STATE(11225)] = 370576, - [SMALL_STATE(11226)] = 370583, - [SMALL_STATE(11227)] = 370590, - [SMALL_STATE(11228)] = 370597, - [SMALL_STATE(11229)] = 370604, - [SMALL_STATE(11230)] = 370611, - [SMALL_STATE(11231)] = 370618, - [SMALL_STATE(11232)] = 370625, - [SMALL_STATE(11233)] = 370632, - [SMALL_STATE(11234)] = 370639, - [SMALL_STATE(11235)] = 370646, - [SMALL_STATE(11236)] = 370653, - [SMALL_STATE(11237)] = 370660, - [SMALL_STATE(11238)] = 370667, - [SMALL_STATE(11239)] = 370674, - [SMALL_STATE(11240)] = 370681, - [SMALL_STATE(11241)] = 370688, - [SMALL_STATE(11242)] = 370695, - [SMALL_STATE(11243)] = 370702, - [SMALL_STATE(11244)] = 370709, - [SMALL_STATE(11245)] = 370716, - [SMALL_STATE(11246)] = 370723, - [SMALL_STATE(11247)] = 370730, - [SMALL_STATE(11248)] = 370737, - [SMALL_STATE(11249)] = 370744, - [SMALL_STATE(11250)] = 370751, - [SMALL_STATE(11251)] = 370758, - [SMALL_STATE(11252)] = 370765, - [SMALL_STATE(11253)] = 370772, - [SMALL_STATE(11254)] = 370779, - [SMALL_STATE(11255)] = 370786, - [SMALL_STATE(11256)] = 370793, - [SMALL_STATE(11257)] = 370800, - [SMALL_STATE(11258)] = 370807, - [SMALL_STATE(11259)] = 370814, - [SMALL_STATE(11260)] = 370821, - [SMALL_STATE(11261)] = 370828, - [SMALL_STATE(11262)] = 370835, - [SMALL_STATE(11263)] = 370842, - [SMALL_STATE(11264)] = 370849, - [SMALL_STATE(11265)] = 370856, - [SMALL_STATE(11266)] = 370863, - [SMALL_STATE(11267)] = 370870, - [SMALL_STATE(11268)] = 370877, - [SMALL_STATE(11269)] = 370884, - [SMALL_STATE(11270)] = 370891, - [SMALL_STATE(11271)] = 370898, - [SMALL_STATE(11272)] = 370905, - [SMALL_STATE(11273)] = 370912, - [SMALL_STATE(11274)] = 370919, - [SMALL_STATE(11275)] = 370926, - [SMALL_STATE(11276)] = 370933, - [SMALL_STATE(11277)] = 370940, - [SMALL_STATE(11278)] = 370947, - [SMALL_STATE(11279)] = 370954, - [SMALL_STATE(11280)] = 370961, - [SMALL_STATE(11281)] = 370968, - [SMALL_STATE(11282)] = 370975, - [SMALL_STATE(11283)] = 370982, - [SMALL_STATE(11284)] = 370989, - [SMALL_STATE(11285)] = 370996, - [SMALL_STATE(11286)] = 371003, - [SMALL_STATE(11287)] = 371010, - [SMALL_STATE(11288)] = 371017, - [SMALL_STATE(11289)] = 371024, - [SMALL_STATE(11290)] = 371031, - [SMALL_STATE(11291)] = 371038, - [SMALL_STATE(11292)] = 371045, - [SMALL_STATE(11293)] = 371052, - [SMALL_STATE(11294)] = 371059, - [SMALL_STATE(11295)] = 371066, - [SMALL_STATE(11296)] = 371073, - [SMALL_STATE(11297)] = 371080, - [SMALL_STATE(11298)] = 371087, - [SMALL_STATE(11299)] = 371094, - [SMALL_STATE(11300)] = 371101, - [SMALL_STATE(11301)] = 371108, - [SMALL_STATE(11302)] = 371115, - [SMALL_STATE(11303)] = 371122, - [SMALL_STATE(11304)] = 371129, - [SMALL_STATE(11305)] = 371136, - [SMALL_STATE(11306)] = 371143, - [SMALL_STATE(11307)] = 371150, - [SMALL_STATE(11308)] = 371157, - [SMALL_STATE(11309)] = 371164, - [SMALL_STATE(11310)] = 371171, - [SMALL_STATE(11311)] = 371178, - [SMALL_STATE(11312)] = 371185, - [SMALL_STATE(11313)] = 371192, - [SMALL_STATE(11314)] = 371199, - [SMALL_STATE(11315)] = 371206, - [SMALL_STATE(11316)] = 371213, - [SMALL_STATE(11317)] = 371220, - [SMALL_STATE(11318)] = 371227, - [SMALL_STATE(11319)] = 371234, - [SMALL_STATE(11320)] = 371241, - [SMALL_STATE(11321)] = 371248, - [SMALL_STATE(11322)] = 371255, - [SMALL_STATE(11323)] = 371262, - [SMALL_STATE(11324)] = 371269, - [SMALL_STATE(11325)] = 371276, - [SMALL_STATE(11326)] = 371283, - [SMALL_STATE(11327)] = 371290, - [SMALL_STATE(11328)] = 371297, - [SMALL_STATE(11329)] = 371304, - [SMALL_STATE(11330)] = 371311, - [SMALL_STATE(11331)] = 371318, - [SMALL_STATE(11332)] = 371325, - [SMALL_STATE(11333)] = 371332, - [SMALL_STATE(11334)] = 371339, - [SMALL_STATE(11335)] = 371346, - [SMALL_STATE(11336)] = 371353, - [SMALL_STATE(11337)] = 371360, - [SMALL_STATE(11338)] = 371367, - [SMALL_STATE(11339)] = 371374, - [SMALL_STATE(11340)] = 371381, - [SMALL_STATE(11341)] = 371388, - [SMALL_STATE(11342)] = 371395, - [SMALL_STATE(11343)] = 371402, - [SMALL_STATE(11344)] = 371409, - [SMALL_STATE(11345)] = 371416, - [SMALL_STATE(11346)] = 371423, - [SMALL_STATE(11347)] = 371430, - [SMALL_STATE(11348)] = 371437, - [SMALL_STATE(11349)] = 371444, - [SMALL_STATE(11350)] = 371451, - [SMALL_STATE(11351)] = 371458, - [SMALL_STATE(11352)] = 371465, - [SMALL_STATE(11353)] = 371472, - [SMALL_STATE(11354)] = 371479, - [SMALL_STATE(11355)] = 371486, - [SMALL_STATE(11356)] = 371493, - [SMALL_STATE(11357)] = 371500, - [SMALL_STATE(11358)] = 371507, - [SMALL_STATE(11359)] = 371514, - [SMALL_STATE(11360)] = 371521, - [SMALL_STATE(11361)] = 371528, - [SMALL_STATE(11362)] = 371535, - [SMALL_STATE(11363)] = 371542, - [SMALL_STATE(11364)] = 371549, - [SMALL_STATE(11365)] = 371556, - [SMALL_STATE(11366)] = 371563, - [SMALL_STATE(11367)] = 371570, - [SMALL_STATE(11368)] = 371577, - [SMALL_STATE(11369)] = 371584, - [SMALL_STATE(11370)] = 371591, - [SMALL_STATE(11371)] = 371598, - [SMALL_STATE(11372)] = 371605, - [SMALL_STATE(11373)] = 371612, - [SMALL_STATE(11374)] = 371619, - [SMALL_STATE(11375)] = 371626, - [SMALL_STATE(11376)] = 371633, - [SMALL_STATE(11377)] = 371640, - [SMALL_STATE(11378)] = 371647, - [SMALL_STATE(11379)] = 371654, - [SMALL_STATE(11380)] = 371661, - [SMALL_STATE(11381)] = 371668, - [SMALL_STATE(11382)] = 371675, - [SMALL_STATE(11383)] = 371682, - [SMALL_STATE(11384)] = 371689, - [SMALL_STATE(11385)] = 371696, - [SMALL_STATE(11386)] = 371703, - [SMALL_STATE(11387)] = 371710, - [SMALL_STATE(11388)] = 371717, - [SMALL_STATE(11389)] = 371724, - [SMALL_STATE(11390)] = 371731, - [SMALL_STATE(11391)] = 371738, - [SMALL_STATE(11392)] = 371745, - [SMALL_STATE(11393)] = 371752, - [SMALL_STATE(11394)] = 371759, - [SMALL_STATE(11395)] = 371766, - [SMALL_STATE(11396)] = 371773, - [SMALL_STATE(11397)] = 371780, - [SMALL_STATE(11398)] = 371787, - [SMALL_STATE(11399)] = 371794, - [SMALL_STATE(11400)] = 371801, - [SMALL_STATE(11401)] = 371808, - [SMALL_STATE(11402)] = 371815, - [SMALL_STATE(11403)] = 371822, - [SMALL_STATE(11404)] = 371829, - [SMALL_STATE(11405)] = 371836, - [SMALL_STATE(11406)] = 371843, - [SMALL_STATE(11407)] = 371850, - [SMALL_STATE(11408)] = 371857, - [SMALL_STATE(11409)] = 371864, - [SMALL_STATE(11410)] = 371871, - [SMALL_STATE(11411)] = 371878, - [SMALL_STATE(11412)] = 371885, - [SMALL_STATE(11413)] = 371892, - [SMALL_STATE(11414)] = 371899, - [SMALL_STATE(11415)] = 371906, - [SMALL_STATE(11416)] = 371913, - [SMALL_STATE(11417)] = 371920, - [SMALL_STATE(11418)] = 371927, - [SMALL_STATE(11419)] = 371934, - [SMALL_STATE(11420)] = 371941, - [SMALL_STATE(11421)] = 371948, - [SMALL_STATE(11422)] = 371955, - [SMALL_STATE(11423)] = 371962, - [SMALL_STATE(11424)] = 371969, - [SMALL_STATE(11425)] = 371976, - [SMALL_STATE(11426)] = 371983, - [SMALL_STATE(11427)] = 371990, - [SMALL_STATE(11428)] = 371997, - [SMALL_STATE(11429)] = 372004, - [SMALL_STATE(11430)] = 372011, - [SMALL_STATE(11431)] = 372018, - [SMALL_STATE(11432)] = 372025, - [SMALL_STATE(11433)] = 372032, - [SMALL_STATE(11434)] = 372039, - [SMALL_STATE(11435)] = 372046, - [SMALL_STATE(11436)] = 372053, - [SMALL_STATE(11437)] = 372060, - [SMALL_STATE(11438)] = 372067, - [SMALL_STATE(11439)] = 372074, - [SMALL_STATE(11440)] = 372081, - [SMALL_STATE(11441)] = 372088, - [SMALL_STATE(11442)] = 372095, - [SMALL_STATE(11443)] = 372102, - [SMALL_STATE(11444)] = 372109, - [SMALL_STATE(11445)] = 372116, - [SMALL_STATE(11446)] = 372123, - [SMALL_STATE(11447)] = 372130, - [SMALL_STATE(11448)] = 372137, - [SMALL_STATE(11449)] = 372144, - [SMALL_STATE(11450)] = 372151, - [SMALL_STATE(11451)] = 372158, - [SMALL_STATE(11452)] = 372165, - [SMALL_STATE(11453)] = 372172, - [SMALL_STATE(11454)] = 372179, - [SMALL_STATE(11455)] = 372186, - [SMALL_STATE(11456)] = 372193, - [SMALL_STATE(11457)] = 372200, - [SMALL_STATE(11458)] = 372207, - [SMALL_STATE(11459)] = 372214, - [SMALL_STATE(11460)] = 372221, - [SMALL_STATE(11461)] = 372228, - [SMALL_STATE(11462)] = 372235, - [SMALL_STATE(11463)] = 372242, - [SMALL_STATE(11464)] = 372249, - [SMALL_STATE(11465)] = 372256, - [SMALL_STATE(11466)] = 372263, - [SMALL_STATE(11467)] = 372270, - [SMALL_STATE(11468)] = 372277, - [SMALL_STATE(11469)] = 372284, - [SMALL_STATE(11470)] = 372291, - [SMALL_STATE(11471)] = 372298, - [SMALL_STATE(11472)] = 372305, - [SMALL_STATE(11473)] = 372312, - [SMALL_STATE(11474)] = 372319, - [SMALL_STATE(11475)] = 372326, - [SMALL_STATE(11476)] = 372333, - [SMALL_STATE(11477)] = 372340, - [SMALL_STATE(11478)] = 372347, - [SMALL_STATE(11479)] = 372354, - [SMALL_STATE(11480)] = 372361, - [SMALL_STATE(11481)] = 372368, - [SMALL_STATE(11482)] = 372375, - [SMALL_STATE(11483)] = 372382, - [SMALL_STATE(11484)] = 372389, - [SMALL_STATE(11485)] = 372396, - [SMALL_STATE(11486)] = 372403, - [SMALL_STATE(11487)] = 372410, - [SMALL_STATE(11488)] = 372417, - [SMALL_STATE(11489)] = 372424, - [SMALL_STATE(11490)] = 372431, - [SMALL_STATE(11491)] = 372438, - [SMALL_STATE(11492)] = 372445, - [SMALL_STATE(11493)] = 372452, - [SMALL_STATE(11494)] = 372459, - [SMALL_STATE(11495)] = 372466, - [SMALL_STATE(11496)] = 372473, - [SMALL_STATE(11497)] = 372480, - [SMALL_STATE(11498)] = 372487, - [SMALL_STATE(11499)] = 372494, - [SMALL_STATE(11500)] = 372501, - [SMALL_STATE(11501)] = 372508, - [SMALL_STATE(11502)] = 372515, - [SMALL_STATE(11503)] = 372522, - [SMALL_STATE(11504)] = 372529, - [SMALL_STATE(11505)] = 372536, - [SMALL_STATE(11506)] = 372543, - [SMALL_STATE(11507)] = 372550, - [SMALL_STATE(11508)] = 372557, - [SMALL_STATE(11509)] = 372564, - [SMALL_STATE(11510)] = 372571, - [SMALL_STATE(11511)] = 372578, - [SMALL_STATE(11512)] = 372585, - [SMALL_STATE(11513)] = 372592, - [SMALL_STATE(11514)] = 372599, - [SMALL_STATE(11515)] = 372606, - [SMALL_STATE(11516)] = 372613, - [SMALL_STATE(11517)] = 372620, - [SMALL_STATE(11518)] = 372627, - [SMALL_STATE(11519)] = 372634, - [SMALL_STATE(11520)] = 372641, - [SMALL_STATE(11521)] = 372648, - [SMALL_STATE(11522)] = 372655, - [SMALL_STATE(11523)] = 372662, - [SMALL_STATE(11524)] = 372669, - [SMALL_STATE(11525)] = 372676, - [SMALL_STATE(11526)] = 372683, - [SMALL_STATE(11527)] = 372690, - [SMALL_STATE(11528)] = 372697, - [SMALL_STATE(11529)] = 372704, - [SMALL_STATE(11530)] = 372711, - [SMALL_STATE(11531)] = 372718, - [SMALL_STATE(11532)] = 372725, - [SMALL_STATE(11533)] = 372732, - [SMALL_STATE(11534)] = 372739, - [SMALL_STATE(11535)] = 372746, - [SMALL_STATE(11536)] = 372753, - [SMALL_STATE(11537)] = 372760, - [SMALL_STATE(11538)] = 372767, - [SMALL_STATE(11539)] = 372774, - [SMALL_STATE(11540)] = 372781, - [SMALL_STATE(11541)] = 372788, - [SMALL_STATE(11542)] = 372795, - [SMALL_STATE(11543)] = 372802, - [SMALL_STATE(11544)] = 372809, - [SMALL_STATE(11545)] = 372816, - [SMALL_STATE(11546)] = 372823, - [SMALL_STATE(11547)] = 372830, - [SMALL_STATE(11548)] = 372837, - [SMALL_STATE(11549)] = 372844, - [SMALL_STATE(11550)] = 372851, - [SMALL_STATE(11551)] = 372858, - [SMALL_STATE(11552)] = 372865, - [SMALL_STATE(11553)] = 372872, - [SMALL_STATE(11554)] = 372879, - [SMALL_STATE(11555)] = 372886, - [SMALL_STATE(11556)] = 372893, - [SMALL_STATE(11557)] = 372900, - [SMALL_STATE(11558)] = 372907, - [SMALL_STATE(11559)] = 372914, - [SMALL_STATE(11560)] = 372921, - [SMALL_STATE(11561)] = 372928, - [SMALL_STATE(11562)] = 372935, - [SMALL_STATE(11563)] = 372942, - [SMALL_STATE(11564)] = 372949, - [SMALL_STATE(11565)] = 372956, - [SMALL_STATE(11566)] = 372963, - [SMALL_STATE(11567)] = 372970, - [SMALL_STATE(11568)] = 372977, - [SMALL_STATE(11569)] = 372984, - [SMALL_STATE(11570)] = 372991, - [SMALL_STATE(11571)] = 372998, - [SMALL_STATE(11572)] = 373005, - [SMALL_STATE(11573)] = 373012, - [SMALL_STATE(11574)] = 373019, - [SMALL_STATE(11575)] = 373026, - [SMALL_STATE(11576)] = 373033, - [SMALL_STATE(11577)] = 373040, - [SMALL_STATE(11578)] = 373047, - [SMALL_STATE(11579)] = 373054, - [SMALL_STATE(11580)] = 373061, - [SMALL_STATE(11581)] = 373068, - [SMALL_STATE(11582)] = 373075, - [SMALL_STATE(11583)] = 373082, - [SMALL_STATE(11584)] = 373089, - [SMALL_STATE(11585)] = 373096, - [SMALL_STATE(11586)] = 373103, - [SMALL_STATE(11587)] = 373110, - [SMALL_STATE(11588)] = 373117, - [SMALL_STATE(11589)] = 373124, - [SMALL_STATE(11590)] = 373131, - [SMALL_STATE(11591)] = 373138, - [SMALL_STATE(11592)] = 373145, - [SMALL_STATE(11593)] = 373152, - [SMALL_STATE(11594)] = 373159, - [SMALL_STATE(11595)] = 373166, - [SMALL_STATE(11596)] = 373173, - [SMALL_STATE(11597)] = 373180, - [SMALL_STATE(11598)] = 373187, - [SMALL_STATE(11599)] = 373194, - [SMALL_STATE(11600)] = 373201, - [SMALL_STATE(11601)] = 373208, - [SMALL_STATE(11602)] = 373215, - [SMALL_STATE(11603)] = 373222, - [SMALL_STATE(11604)] = 373229, - [SMALL_STATE(11605)] = 373236, - [SMALL_STATE(11606)] = 373243, - [SMALL_STATE(11607)] = 373250, - [SMALL_STATE(11608)] = 373257, - [SMALL_STATE(11609)] = 373264, - [SMALL_STATE(11610)] = 373271, - [SMALL_STATE(11611)] = 373278, - [SMALL_STATE(11612)] = 373285, - [SMALL_STATE(11613)] = 373292, - [SMALL_STATE(11614)] = 373299, - [SMALL_STATE(11615)] = 373306, - [SMALL_STATE(11616)] = 373313, - [SMALL_STATE(11617)] = 373320, - [SMALL_STATE(11618)] = 373327, - [SMALL_STATE(11619)] = 373334, - [SMALL_STATE(11620)] = 373341, - [SMALL_STATE(11621)] = 373348, - [SMALL_STATE(11622)] = 373355, - [SMALL_STATE(11623)] = 373362, - [SMALL_STATE(11624)] = 373369, - [SMALL_STATE(11625)] = 373376, - [SMALL_STATE(11626)] = 373383, - [SMALL_STATE(11627)] = 373390, - [SMALL_STATE(11628)] = 373397, - [SMALL_STATE(11629)] = 373404, - [SMALL_STATE(11630)] = 373411, - [SMALL_STATE(11631)] = 373418, - [SMALL_STATE(11632)] = 373425, - [SMALL_STATE(11633)] = 373432, - [SMALL_STATE(11634)] = 373439, - [SMALL_STATE(11635)] = 373446, - [SMALL_STATE(11636)] = 373453, - [SMALL_STATE(11637)] = 373460, - [SMALL_STATE(11638)] = 373467, - [SMALL_STATE(11639)] = 373474, - [SMALL_STATE(11640)] = 373481, - [SMALL_STATE(11641)] = 373488, - [SMALL_STATE(11642)] = 373495, - [SMALL_STATE(11643)] = 373502, - [SMALL_STATE(11644)] = 373509, - [SMALL_STATE(11645)] = 373516, - [SMALL_STATE(11646)] = 373523, - [SMALL_STATE(11647)] = 373530, - [SMALL_STATE(11648)] = 373537, - [SMALL_STATE(11649)] = 373544, - [SMALL_STATE(11650)] = 373551, - [SMALL_STATE(11651)] = 373558, - [SMALL_STATE(11652)] = 373565, - [SMALL_STATE(11653)] = 373572, - [SMALL_STATE(11654)] = 373579, - [SMALL_STATE(11655)] = 373586, - [SMALL_STATE(11656)] = 373593, - [SMALL_STATE(11657)] = 373600, - [SMALL_STATE(11658)] = 373607, - [SMALL_STATE(11659)] = 373614, - [SMALL_STATE(11660)] = 373621, - [SMALL_STATE(11661)] = 373628, - [SMALL_STATE(11662)] = 373635, - [SMALL_STATE(11663)] = 373642, - [SMALL_STATE(11664)] = 373649, - [SMALL_STATE(11665)] = 373656, - [SMALL_STATE(11666)] = 373663, - [SMALL_STATE(11667)] = 373670, - [SMALL_STATE(11668)] = 373677, - [SMALL_STATE(11669)] = 373684, - [SMALL_STATE(11670)] = 373691, - [SMALL_STATE(11671)] = 373698, - [SMALL_STATE(11672)] = 373705, - [SMALL_STATE(11673)] = 373712, - [SMALL_STATE(11674)] = 373719, - [SMALL_STATE(11675)] = 373726, - [SMALL_STATE(11676)] = 373733, - [SMALL_STATE(11677)] = 373740, - [SMALL_STATE(11678)] = 373747, - [SMALL_STATE(11679)] = 373754, - [SMALL_STATE(11680)] = 373761, - [SMALL_STATE(11681)] = 373768, - [SMALL_STATE(11682)] = 373775, - [SMALL_STATE(11683)] = 373782, - [SMALL_STATE(11684)] = 373789, - [SMALL_STATE(11685)] = 373796, - [SMALL_STATE(11686)] = 373803, - [SMALL_STATE(11687)] = 373810, - [SMALL_STATE(11688)] = 373817, - [SMALL_STATE(11689)] = 373824, - [SMALL_STATE(11690)] = 373831, - [SMALL_STATE(11691)] = 373838, - [SMALL_STATE(11692)] = 373845, - [SMALL_STATE(11693)] = 373852, - [SMALL_STATE(11694)] = 373859, - [SMALL_STATE(11695)] = 373866, - [SMALL_STATE(11696)] = 373873, - [SMALL_STATE(11697)] = 373880, - [SMALL_STATE(11698)] = 373887, - [SMALL_STATE(11699)] = 373894, - [SMALL_STATE(11700)] = 373901, - [SMALL_STATE(11701)] = 373908, - [SMALL_STATE(11702)] = 373915, - [SMALL_STATE(11703)] = 373922, - [SMALL_STATE(11704)] = 373929, - [SMALL_STATE(11705)] = 373936, - [SMALL_STATE(11706)] = 373943, - [SMALL_STATE(11707)] = 373950, - [SMALL_STATE(11708)] = 373957, - [SMALL_STATE(11709)] = 373964, - [SMALL_STATE(11710)] = 373971, - [SMALL_STATE(11711)] = 373978, - [SMALL_STATE(11712)] = 373985, - [SMALL_STATE(11713)] = 373992, - [SMALL_STATE(11714)] = 373999, - [SMALL_STATE(11715)] = 374006, - [SMALL_STATE(11716)] = 374013, - [SMALL_STATE(11717)] = 374020, - [SMALL_STATE(11718)] = 374027, - [SMALL_STATE(11719)] = 374034, - [SMALL_STATE(11720)] = 374041, - [SMALL_STATE(11721)] = 374048, - [SMALL_STATE(11722)] = 374055, - [SMALL_STATE(11723)] = 374062, - [SMALL_STATE(11724)] = 374069, - [SMALL_STATE(11725)] = 374076, - [SMALL_STATE(11726)] = 374083, - [SMALL_STATE(11727)] = 374090, - [SMALL_STATE(11728)] = 374097, - [SMALL_STATE(11729)] = 374104, - [SMALL_STATE(11730)] = 374111, - [SMALL_STATE(11731)] = 374118, - [SMALL_STATE(11732)] = 374125, - [SMALL_STATE(11733)] = 374132, + [SMALL_STATE(8930)] = 341251, + [SMALL_STATE(8931)] = 341274, + [SMALL_STATE(8932)] = 341305, + [SMALL_STATE(8933)] = 341338, + [SMALL_STATE(8934)] = 341365, + [SMALL_STATE(8935)] = 341388, + [SMALL_STATE(8936)] = 341411, + [SMALL_STATE(8937)] = 341436, + [SMALL_STATE(8938)] = 341463, + [SMALL_STATE(8939)] = 341494, + [SMALL_STATE(8940)] = 341523, + [SMALL_STATE(8941)] = 341554, + [SMALL_STATE(8942)] = 341580, + [SMALL_STATE(8943)] = 341602, + [SMALL_STATE(8944)] = 341624, + [SMALL_STATE(8945)] = 341648, + [SMALL_STATE(8946)] = 341672, + [SMALL_STATE(8947)] = 341696, + [SMALL_STATE(8948)] = 341720, + [SMALL_STATE(8949)] = 341742, + [SMALL_STATE(8950)] = 341766, + [SMALL_STATE(8951)] = 341788, + [SMALL_STATE(8952)] = 341812, + [SMALL_STATE(8953)] = 341834, + [SMALL_STATE(8954)] = 341858, + [SMALL_STATE(8955)] = 341880, + [SMALL_STATE(8956)] = 341904, + [SMALL_STATE(8957)] = 341926, + [SMALL_STATE(8958)] = 341954, + [SMALL_STATE(8959)] = 341976, + [SMALL_STATE(8960)] = 342000, + [SMALL_STATE(8961)] = 342022, + [SMALL_STATE(8962)] = 342054, + [SMALL_STATE(8963)] = 342078, + [SMALL_STATE(8964)] = 342102, + [SMALL_STATE(8965)] = 342128, + [SMALL_STATE(8966)] = 342158, + [SMALL_STATE(8967)] = 342182, + [SMALL_STATE(8968)] = 342198, + [SMALL_STATE(8969)] = 342220, + [SMALL_STATE(8970)] = 342244, + [SMALL_STATE(8971)] = 342274, + [SMALL_STATE(8972)] = 342298, + [SMALL_STATE(8973)] = 342324, + [SMALL_STATE(8974)] = 342348, + [SMALL_STATE(8975)] = 342370, + [SMALL_STATE(8976)] = 342396, + [SMALL_STATE(8977)] = 342418, + [SMALL_STATE(8978)] = 342449, + [SMALL_STATE(8979)] = 342470, + [SMALL_STATE(8980)] = 342499, + [SMALL_STATE(8981)] = 342522, + [SMALL_STATE(8982)] = 342545, + [SMALL_STATE(8983)] = 342576, + [SMALL_STATE(8984)] = 342599, + [SMALL_STATE(8985)] = 342630, + [SMALL_STATE(8986)] = 342661, + [SMALL_STATE(8987)] = 342684, + [SMALL_STATE(8988)] = 342715, + [SMALL_STATE(8989)] = 342740, + [SMALL_STATE(8990)] = 342761, + [SMALL_STATE(8991)] = 342782, + [SMALL_STATE(8992)] = 342805, + [SMALL_STATE(8993)] = 342836, + [SMALL_STATE(8994)] = 342853, + [SMALL_STATE(8995)] = 342876, + [SMALL_STATE(8996)] = 342899, + [SMALL_STATE(8997)] = 342930, + [SMALL_STATE(8998)] = 342947, + [SMALL_STATE(8999)] = 342976, + [SMALL_STATE(9000)] = 343007, + [SMALL_STATE(9001)] = 343030, + [SMALL_STATE(9002)] = 343051, + [SMALL_STATE(9003)] = 343073, + [SMALL_STATE(9004)] = 343091, + [SMALL_STATE(9005)] = 343117, + [SMALL_STATE(9006)] = 343143, + [SMALL_STATE(9007)] = 343169, + [SMALL_STATE(9008)] = 343193, + [SMALL_STATE(9009)] = 343221, + [SMALL_STATE(9010)] = 343249, + [SMALL_STATE(9011)] = 343275, + [SMALL_STATE(9012)] = 343303, + [SMALL_STATE(9013)] = 343323, + [SMALL_STATE(9014)] = 343349, + [SMALL_STATE(9015)] = 343373, + [SMALL_STATE(9016)] = 343399, + [SMALL_STATE(9017)] = 343421, + [SMALL_STATE(9018)] = 343447, + [SMALL_STATE(9019)] = 343473, + [SMALL_STATE(9020)] = 343499, + [SMALL_STATE(9021)] = 343525, + [SMALL_STATE(9022)] = 343551, + [SMALL_STATE(9023)] = 343577, + [SMALL_STATE(9024)] = 343605, + [SMALL_STATE(9025)] = 343631, + [SMALL_STATE(9026)] = 343659, + [SMALL_STATE(9027)] = 343683, + [SMALL_STATE(9028)] = 343711, + [SMALL_STATE(9029)] = 343737, + [SMALL_STATE(9030)] = 343763, + [SMALL_STATE(9031)] = 343787, + [SMALL_STATE(9032)] = 343813, + [SMALL_STATE(9033)] = 343833, + [SMALL_STATE(9034)] = 343861, + [SMALL_STATE(9035)] = 343887, + [SMALL_STATE(9036)] = 343913, + [SMALL_STATE(9037)] = 343939, + [SMALL_STATE(9038)] = 343963, + [SMALL_STATE(9039)] = 343989, + [SMALL_STATE(9040)] = 344015, + [SMALL_STATE(9041)] = 344041, + [SMALL_STATE(9042)] = 344069, + [SMALL_STATE(9043)] = 344089, + [SMALL_STATE(9044)] = 344111, + [SMALL_STATE(9045)] = 344137, + [SMALL_STATE(9046)] = 344161, + [SMALL_STATE(9047)] = 344187, + [SMALL_STATE(9048)] = 344209, + [SMALL_STATE(9049)] = 344237, + [SMALL_STATE(9050)] = 344263, + [SMALL_STATE(9051)] = 344289, + [SMALL_STATE(9052)] = 344311, + [SMALL_STATE(9053)] = 344337, + [SMALL_STATE(9054)] = 344363, + [SMALL_STATE(9055)] = 344387, + [SMALL_STATE(9056)] = 344413, + [SMALL_STATE(9057)] = 344439, + [SMALL_STATE(9058)] = 344465, + [SMALL_STATE(9059)] = 344493, + [SMALL_STATE(9060)] = 344513, + [SMALL_STATE(9061)] = 344539, + [SMALL_STATE(9062)] = 344565, + [SMALL_STATE(9063)] = 344589, + [SMALL_STATE(9064)] = 344615, + [SMALL_STATE(9065)] = 344641, + [SMALL_STATE(9066)] = 344667, + [SMALL_STATE(9067)] = 344693, + [SMALL_STATE(9068)] = 344721, + [SMALL_STATE(9069)] = 344747, + [SMALL_STATE(9070)] = 344775, + [SMALL_STATE(9071)] = 344797, + [SMALL_STATE(9072)] = 344823, + [SMALL_STATE(9073)] = 344843, + [SMALL_STATE(9074)] = 344869, + [SMALL_STATE(9075)] = 344895, + [SMALL_STATE(9076)] = 344921, + [SMALL_STATE(9077)] = 344947, + [SMALL_STATE(9078)] = 344964, + [SMALL_STATE(9079)] = 344985, + [SMALL_STATE(9080)] = 345010, + [SMALL_STATE(9081)] = 345031, + [SMALL_STATE(9082)] = 345052, + [SMALL_STATE(9083)] = 345077, + [SMALL_STATE(9084)] = 345098, + [SMALL_STATE(9085)] = 345123, + [SMALL_STATE(9086)] = 345148, + [SMALL_STATE(9087)] = 345169, + [SMALL_STATE(9088)] = 345190, + [SMALL_STATE(9089)] = 345211, + [SMALL_STATE(9090)] = 345232, + [SMALL_STATE(9091)] = 345257, + [SMALL_STATE(9092)] = 345280, + [SMALL_STATE(9093)] = 345301, + [SMALL_STATE(9094)] = 345326, + [SMALL_STATE(9095)] = 345349, + [SMALL_STATE(9096)] = 345366, + [SMALL_STATE(9097)] = 345387, + [SMALL_STATE(9098)] = 345412, + [SMALL_STATE(9099)] = 345435, + [SMALL_STATE(9100)] = 345458, + [SMALL_STATE(9101)] = 345479, + [SMALL_STATE(9102)] = 345502, + [SMALL_STATE(9103)] = 345527, + [SMALL_STATE(9104)] = 345552, + [SMALL_STATE(9105)] = 345575, + [SMALL_STATE(9106)] = 345598, + [SMALL_STATE(9107)] = 345621, + [SMALL_STATE(9108)] = 345646, + [SMALL_STATE(9109)] = 345669, + [SMALL_STATE(9110)] = 345694, + [SMALL_STATE(9111)] = 345715, + [SMALL_STATE(9112)] = 345738, + [SMALL_STATE(9113)] = 345761, + [SMALL_STATE(9114)] = 345786, + [SMALL_STATE(9115)] = 345805, + [SMALL_STATE(9116)] = 345828, + [SMALL_STATE(9117)] = 345847, + [SMALL_STATE(9118)] = 345870, + [SMALL_STATE(9119)] = 345895, + [SMALL_STATE(9120)] = 345912, + [SMALL_STATE(9121)] = 345937, + [SMALL_STATE(9122)] = 345960, + [SMALL_STATE(9123)] = 345977, + [SMALL_STATE(9124)] = 345994, + [SMALL_STATE(9125)] = 346015, + [SMALL_STATE(9126)] = 346032, + [SMALL_STATE(9127)] = 346049, + [SMALL_STATE(9128)] = 346072, + [SMALL_STATE(9129)] = 346089, + [SMALL_STATE(9130)] = 346112, + [SMALL_STATE(9131)] = 346137, + [SMALL_STATE(9132)] = 346160, + [SMALL_STATE(9133)] = 346183, + [SMALL_STATE(9134)] = 346206, + [SMALL_STATE(9135)] = 346227, + [SMALL_STATE(9136)] = 346244, + [SMALL_STATE(9137)] = 346261, + [SMALL_STATE(9138)] = 346278, + [SMALL_STATE(9139)] = 346295, + [SMALL_STATE(9140)] = 346312, + [SMALL_STATE(9141)] = 346329, + [SMALL_STATE(9142)] = 346346, + [SMALL_STATE(9143)] = 346363, + [SMALL_STATE(9144)] = 346380, + [SMALL_STATE(9145)] = 346397, + [SMALL_STATE(9146)] = 346414, + [SMALL_STATE(9147)] = 346431, + [SMALL_STATE(9148)] = 346448, + [SMALL_STATE(9149)] = 346465, + [SMALL_STATE(9150)] = 346486, + [SMALL_STATE(9151)] = 346507, + [SMALL_STATE(9152)] = 346528, + [SMALL_STATE(9153)] = 346545, + [SMALL_STATE(9154)] = 346568, + [SMALL_STATE(9155)] = 346593, + [SMALL_STATE(9156)] = 346612, + [SMALL_STATE(9157)] = 346634, + [SMALL_STATE(9158)] = 346652, + [SMALL_STATE(9159)] = 346674, + [SMALL_STATE(9160)] = 346694, + [SMALL_STATE(9161)] = 346714, + [SMALL_STATE(9162)] = 346734, + [SMALL_STATE(9163)] = 346752, + [SMALL_STATE(9164)] = 346774, + [SMALL_STATE(9165)] = 346796, + [SMALL_STATE(9166)] = 346818, + [SMALL_STATE(9167)] = 346840, + [SMALL_STATE(9168)] = 346862, + [SMALL_STATE(9169)] = 346884, + [SMALL_STATE(9170)] = 346904, + [SMALL_STATE(9171)] = 346922, + [SMALL_STATE(9172)] = 346942, + [SMALL_STATE(9173)] = 346964, + [SMALL_STATE(9174)] = 346986, + [SMALL_STATE(9175)] = 347000, + [SMALL_STATE(9176)] = 347022, + [SMALL_STATE(9177)] = 347042, + [SMALL_STATE(9178)] = 347064, + [SMALL_STATE(9179)] = 347086, + [SMALL_STATE(9180)] = 347106, + [SMALL_STATE(9181)] = 347120, + [SMALL_STATE(9182)] = 347142, + [SMALL_STATE(9183)] = 347162, + [SMALL_STATE(9184)] = 347184, + [SMALL_STATE(9185)] = 347204, + [SMALL_STATE(9186)] = 347226, + [SMALL_STATE(9187)] = 347248, + [SMALL_STATE(9188)] = 347270, + [SMALL_STATE(9189)] = 347292, + [SMALL_STATE(9190)] = 347314, + [SMALL_STATE(9191)] = 347334, + [SMALL_STATE(9192)] = 347356, + [SMALL_STATE(9193)] = 347378, + [SMALL_STATE(9194)] = 347400, + [SMALL_STATE(9195)] = 347422, + [SMALL_STATE(9196)] = 347444, + [SMALL_STATE(9197)] = 347466, + [SMALL_STATE(9198)] = 347486, + [SMALL_STATE(9199)] = 347508, + [SMALL_STATE(9200)] = 347528, + [SMALL_STATE(9201)] = 347542, + [SMALL_STATE(9202)] = 347562, + [SMALL_STATE(9203)] = 347584, + [SMALL_STATE(9204)] = 347606, + [SMALL_STATE(9205)] = 347628, + [SMALL_STATE(9206)] = 347648, + [SMALL_STATE(9207)] = 347668, + [SMALL_STATE(9208)] = 347690, + [SMALL_STATE(9209)] = 347712, + [SMALL_STATE(9210)] = 347734, + [SMALL_STATE(9211)] = 347756, + [SMALL_STATE(9212)] = 347770, + [SMALL_STATE(9213)] = 347792, + [SMALL_STATE(9214)] = 347812, + [SMALL_STATE(9215)] = 347832, + [SMALL_STATE(9216)] = 347852, + [SMALL_STATE(9217)] = 347874, + [SMALL_STATE(9218)] = 347896, + [SMALL_STATE(9219)] = 347918, + [SMALL_STATE(9220)] = 347940, + [SMALL_STATE(9221)] = 347960, + [SMALL_STATE(9222)] = 347982, + [SMALL_STATE(9223)] = 348002, + [SMALL_STATE(9224)] = 348024, + [SMALL_STATE(9225)] = 348046, + [SMALL_STATE(9226)] = 348068, + [SMALL_STATE(9227)] = 348090, + [SMALL_STATE(9228)] = 348112, + [SMALL_STATE(9229)] = 348132, + [SMALL_STATE(9230)] = 348146, + [SMALL_STATE(9231)] = 348168, + [SMALL_STATE(9232)] = 348188, + [SMALL_STATE(9233)] = 348210, + [SMALL_STATE(9234)] = 348224, + [SMALL_STATE(9235)] = 348246, + [SMALL_STATE(9236)] = 348268, + [SMALL_STATE(9237)] = 348288, + [SMALL_STATE(9238)] = 348308, + [SMALL_STATE(9239)] = 348328, + [SMALL_STATE(9240)] = 348350, + [SMALL_STATE(9241)] = 348372, + [SMALL_STATE(9242)] = 348392, + [SMALL_STATE(9243)] = 348414, + [SMALL_STATE(9244)] = 348428, + [SMALL_STATE(9245)] = 348442, + [SMALL_STATE(9246)] = 348456, + [SMALL_STATE(9247)] = 348478, + [SMALL_STATE(9248)] = 348500, + [SMALL_STATE(9249)] = 348514, + [SMALL_STATE(9250)] = 348534, + [SMALL_STATE(9251)] = 348548, + [SMALL_STATE(9252)] = 348562, + [SMALL_STATE(9253)] = 348576, + [SMALL_STATE(9254)] = 348590, + [SMALL_STATE(9255)] = 348612, + [SMALL_STATE(9256)] = 348634, + [SMALL_STATE(9257)] = 348656, + [SMALL_STATE(9258)] = 348676, + [SMALL_STATE(9259)] = 348698, + [SMALL_STATE(9260)] = 348718, + [SMALL_STATE(9261)] = 348740, + [SMALL_STATE(9262)] = 348762, + [SMALL_STATE(9263)] = 348784, + [SMALL_STATE(9264)] = 348806, + [SMALL_STATE(9265)] = 348820, + [SMALL_STATE(9266)] = 348838, + [SMALL_STATE(9267)] = 348857, + [SMALL_STATE(9268)] = 348874, + [SMALL_STATE(9269)] = 348893, + [SMALL_STATE(9270)] = 348912, + [SMALL_STATE(9271)] = 348931, + [SMALL_STATE(9272)] = 348948, + [SMALL_STATE(9273)] = 348967, + [SMALL_STATE(9274)] = 348986, + [SMALL_STATE(9275)] = 349005, + [SMALL_STATE(9276)] = 349020, + [SMALL_STATE(9277)] = 349039, + [SMALL_STATE(9278)] = 349058, + [SMALL_STATE(9279)] = 349075, + [SMALL_STATE(9280)] = 349092, + [SMALL_STATE(9281)] = 349109, + [SMALL_STATE(9282)] = 349128, + [SMALL_STATE(9283)] = 349147, + [SMALL_STATE(9284)] = 349166, + [SMALL_STATE(9285)] = 349185, + [SMALL_STATE(9286)] = 349204, + [SMALL_STATE(9287)] = 349223, + [SMALL_STATE(9288)] = 349242, + [SMALL_STATE(9289)] = 349261, + [SMALL_STATE(9290)] = 349280, + [SMALL_STATE(9291)] = 349297, + [SMALL_STATE(9292)] = 349312, + [SMALL_STATE(9293)] = 349329, + [SMALL_STATE(9294)] = 349348, + [SMALL_STATE(9295)] = 349365, + [SMALL_STATE(9296)] = 349382, + [SMALL_STATE(9297)] = 349401, + [SMALL_STATE(9298)] = 349418, + [SMALL_STATE(9299)] = 349435, + [SMALL_STATE(9300)] = 349452, + [SMALL_STATE(9301)] = 349471, + [SMALL_STATE(9302)] = 349490, + [SMALL_STATE(9303)] = 349509, + [SMALL_STATE(9304)] = 349526, + [SMALL_STATE(9305)] = 349543, + [SMALL_STATE(9306)] = 349560, + [SMALL_STATE(9307)] = 349579, + [SMALL_STATE(9308)] = 349594, + [SMALL_STATE(9309)] = 349611, + [SMALL_STATE(9310)] = 349628, + [SMALL_STATE(9311)] = 349645, + [SMALL_STATE(9312)] = 349664, + [SMALL_STATE(9313)] = 349683, + [SMALL_STATE(9314)] = 349702, + [SMALL_STATE(9315)] = 349719, + [SMALL_STATE(9316)] = 349736, + [SMALL_STATE(9317)] = 349755, + [SMALL_STATE(9318)] = 349774, + [SMALL_STATE(9319)] = 349793, + [SMALL_STATE(9320)] = 349812, + [SMALL_STATE(9321)] = 349829, + [SMALL_STATE(9322)] = 349846, + [SMALL_STATE(9323)] = 349863, + [SMALL_STATE(9324)] = 349880, + [SMALL_STATE(9325)] = 349897, + [SMALL_STATE(9326)] = 349916, + [SMALL_STATE(9327)] = 349933, + [SMALL_STATE(9328)] = 349950, + [SMALL_STATE(9329)] = 349969, + [SMALL_STATE(9330)] = 349982, + [SMALL_STATE(9331)] = 350001, + [SMALL_STATE(9332)] = 350020, + [SMALL_STATE(9333)] = 350039, + [SMALL_STATE(9334)] = 350058, + [SMALL_STATE(9335)] = 350075, + [SMALL_STATE(9336)] = 350092, + [SMALL_STATE(9337)] = 350109, + [SMALL_STATE(9338)] = 350128, + [SMALL_STATE(9339)] = 350145, + [SMALL_STATE(9340)] = 350164, + [SMALL_STATE(9341)] = 350181, + [SMALL_STATE(9342)] = 350198, + [SMALL_STATE(9343)] = 350215, + [SMALL_STATE(9344)] = 350228, + [SMALL_STATE(9345)] = 350247, + [SMALL_STATE(9346)] = 350264, + [SMALL_STATE(9347)] = 350281, + [SMALL_STATE(9348)] = 350298, + [SMALL_STATE(9349)] = 350315, + [SMALL_STATE(9350)] = 350334, + [SMALL_STATE(9351)] = 350353, + [SMALL_STATE(9352)] = 350370, + [SMALL_STATE(9353)] = 350389, + [SMALL_STATE(9354)] = 350408, + [SMALL_STATE(9355)] = 350423, + [SMALL_STATE(9356)] = 350440, + [SMALL_STATE(9357)] = 350459, + [SMALL_STATE(9358)] = 350478, + [SMALL_STATE(9359)] = 350497, + [SMALL_STATE(9360)] = 350516, + [SMALL_STATE(9361)] = 350535, + [SMALL_STATE(9362)] = 350554, + [SMALL_STATE(9363)] = 350571, + [SMALL_STATE(9364)] = 350590, + [SMALL_STATE(9365)] = 350609, + [SMALL_STATE(9366)] = 350626, + [SMALL_STATE(9367)] = 350643, + [SMALL_STATE(9368)] = 350662, + [SMALL_STATE(9369)] = 350681, + [SMALL_STATE(9370)] = 350700, + [SMALL_STATE(9371)] = 350711, + [SMALL_STATE(9372)] = 350728, + [SMALL_STATE(9373)] = 350745, + [SMALL_STATE(9374)] = 350762, + [SMALL_STATE(9375)] = 350781, + [SMALL_STATE(9376)] = 350798, + [SMALL_STATE(9377)] = 350815, + [SMALL_STATE(9378)] = 350834, + [SMALL_STATE(9379)] = 350851, + [SMALL_STATE(9380)] = 350870, + [SMALL_STATE(9381)] = 350885, + [SMALL_STATE(9382)] = 350904, + [SMALL_STATE(9383)] = 350923, + [SMALL_STATE(9384)] = 350942, + [SMALL_STATE(9385)] = 350961, + [SMALL_STATE(9386)] = 350980, + [SMALL_STATE(9387)] = 350999, + [SMALL_STATE(9388)] = 351018, + [SMALL_STATE(9389)] = 351037, + [SMALL_STATE(9390)] = 351054, + [SMALL_STATE(9391)] = 351071, + [SMALL_STATE(9392)] = 351090, + [SMALL_STATE(9393)] = 351109, + [SMALL_STATE(9394)] = 351128, + [SMALL_STATE(9395)] = 351147, + [SMALL_STATE(9396)] = 351164, + [SMALL_STATE(9397)] = 351181, + [SMALL_STATE(9398)] = 351198, + [SMALL_STATE(9399)] = 351217, + [SMALL_STATE(9400)] = 351236, + [SMALL_STATE(9401)] = 351255, + [SMALL_STATE(9402)] = 351274, + [SMALL_STATE(9403)] = 351291, + [SMALL_STATE(9404)] = 351310, + [SMALL_STATE(9405)] = 351329, + [SMALL_STATE(9406)] = 351348, + [SMALL_STATE(9407)] = 351365, + [SMALL_STATE(9408)] = 351384, + [SMALL_STATE(9409)] = 351397, + [SMALL_STATE(9410)] = 351414, + [SMALL_STATE(9411)] = 351433, + [SMALL_STATE(9412)] = 351450, + [SMALL_STATE(9413)] = 351467, + [SMALL_STATE(9414)] = 351477, + [SMALL_STATE(9415)] = 351493, + [SMALL_STATE(9416)] = 351509, + [SMALL_STATE(9417)] = 351525, + [SMALL_STATE(9418)] = 351541, + [SMALL_STATE(9419)] = 351557, + [SMALL_STATE(9420)] = 351571, + [SMALL_STATE(9421)] = 351587, + [SMALL_STATE(9422)] = 351603, + [SMALL_STATE(9423)] = 351619, + [SMALL_STATE(9424)] = 351635, + [SMALL_STATE(9425)] = 351649, + [SMALL_STATE(9426)] = 351665, + [SMALL_STATE(9427)] = 351681, + [SMALL_STATE(9428)] = 351695, + [SMALL_STATE(9429)] = 351709, + [SMALL_STATE(9430)] = 351725, + [SMALL_STATE(9431)] = 351741, + [SMALL_STATE(9432)] = 351757, + [SMALL_STATE(9433)] = 351773, + [SMALL_STATE(9434)] = 351789, + [SMALL_STATE(9435)] = 351805, + [SMALL_STATE(9436)] = 351821, + [SMALL_STATE(9437)] = 351835, + [SMALL_STATE(9438)] = 351851, + [SMALL_STATE(9439)] = 351865, + [SMALL_STATE(9440)] = 351881, + [SMALL_STATE(9441)] = 351895, + [SMALL_STATE(9442)] = 351907, + [SMALL_STATE(9443)] = 351923, + [SMALL_STATE(9444)] = 351937, + [SMALL_STATE(9445)] = 351953, + [SMALL_STATE(9446)] = 351969, + [SMALL_STATE(9447)] = 351985, + [SMALL_STATE(9448)] = 352001, + [SMALL_STATE(9449)] = 352017, + [SMALL_STATE(9450)] = 352033, + [SMALL_STATE(9451)] = 352049, + [SMALL_STATE(9452)] = 352065, + [SMALL_STATE(9453)] = 352081, + [SMALL_STATE(9454)] = 352095, + [SMALL_STATE(9455)] = 352111, + [SMALL_STATE(9456)] = 352127, + [SMALL_STATE(9457)] = 352143, + [SMALL_STATE(9458)] = 352159, + [SMALL_STATE(9459)] = 352175, + [SMALL_STATE(9460)] = 352191, + [SMALL_STATE(9461)] = 352207, + [SMALL_STATE(9462)] = 352223, + [SMALL_STATE(9463)] = 352239, + [SMALL_STATE(9464)] = 352255, + [SMALL_STATE(9465)] = 352269, + [SMALL_STATE(9466)] = 352285, + [SMALL_STATE(9467)] = 352299, + [SMALL_STATE(9468)] = 352311, + [SMALL_STATE(9469)] = 352325, + [SMALL_STATE(9470)] = 352341, + [SMALL_STATE(9471)] = 352357, + [SMALL_STATE(9472)] = 352373, + [SMALL_STATE(9473)] = 352387, + [SMALL_STATE(9474)] = 352401, + [SMALL_STATE(9475)] = 352417, + [SMALL_STATE(9476)] = 352433, + [SMALL_STATE(9477)] = 352449, + [SMALL_STATE(9478)] = 352465, + [SMALL_STATE(9479)] = 352481, + [SMALL_STATE(9480)] = 352495, + [SMALL_STATE(9481)] = 352511, + [SMALL_STATE(9482)] = 352527, + [SMALL_STATE(9483)] = 352543, + [SMALL_STATE(9484)] = 352555, + [SMALL_STATE(9485)] = 352569, + [SMALL_STATE(9486)] = 352585, + [SMALL_STATE(9487)] = 352601, + [SMALL_STATE(9488)] = 352617, + [SMALL_STATE(9489)] = 352633, + [SMALL_STATE(9490)] = 352647, + [SMALL_STATE(9491)] = 352663, + [SMALL_STATE(9492)] = 352679, + [SMALL_STATE(9493)] = 352695, + [SMALL_STATE(9494)] = 352709, + [SMALL_STATE(9495)] = 352723, + [SMALL_STATE(9496)] = 352739, + [SMALL_STATE(9497)] = 352753, + [SMALL_STATE(9498)] = 352769, + [SMALL_STATE(9499)] = 352785, + [SMALL_STATE(9500)] = 352801, + [SMALL_STATE(9501)] = 352817, + [SMALL_STATE(9502)] = 352833, + [SMALL_STATE(9503)] = 352849, + [SMALL_STATE(9504)] = 352865, + [SMALL_STATE(9505)] = 352881, + [SMALL_STATE(9506)] = 352895, + [SMALL_STATE(9507)] = 352911, + [SMALL_STATE(9508)] = 352927, + [SMALL_STATE(9509)] = 352943, + [SMALL_STATE(9510)] = 352959, + [SMALL_STATE(9511)] = 352975, + [SMALL_STATE(9512)] = 352989, + [SMALL_STATE(9513)] = 353005, + [SMALL_STATE(9514)] = 353021, + [SMALL_STATE(9515)] = 353037, + [SMALL_STATE(9516)] = 353053, + [SMALL_STATE(9517)] = 353069, + [SMALL_STATE(9518)] = 353085, + [SMALL_STATE(9519)] = 353099, + [SMALL_STATE(9520)] = 353115, + [SMALL_STATE(9521)] = 353131, + [SMALL_STATE(9522)] = 353147, + [SMALL_STATE(9523)] = 353163, + [SMALL_STATE(9524)] = 353179, + [SMALL_STATE(9525)] = 353195, + [SMALL_STATE(9526)] = 353211, + [SMALL_STATE(9527)] = 353227, + [SMALL_STATE(9528)] = 353243, + [SMALL_STATE(9529)] = 353259, + [SMALL_STATE(9530)] = 353275, + [SMALL_STATE(9531)] = 353291, + [SMALL_STATE(9532)] = 353307, + [SMALL_STATE(9533)] = 353323, + [SMALL_STATE(9534)] = 353339, + [SMALL_STATE(9535)] = 353355, + [SMALL_STATE(9536)] = 353371, + [SMALL_STATE(9537)] = 353387, + [SMALL_STATE(9538)] = 353401, + [SMALL_STATE(9539)] = 353417, + [SMALL_STATE(9540)] = 353433, + [SMALL_STATE(9541)] = 353449, + [SMALL_STATE(9542)] = 353465, + [SMALL_STATE(9543)] = 353481, + [SMALL_STATE(9544)] = 353495, + [SMALL_STATE(9545)] = 353511, + [SMALL_STATE(9546)] = 353527, + [SMALL_STATE(9547)] = 353541, + [SMALL_STATE(9548)] = 353557, + [SMALL_STATE(9549)] = 353571, + [SMALL_STATE(9550)] = 353587, + [SMALL_STATE(9551)] = 353601, + [SMALL_STATE(9552)] = 353617, + [SMALL_STATE(9553)] = 353633, + [SMALL_STATE(9554)] = 353647, + [SMALL_STATE(9555)] = 353661, + [SMALL_STATE(9556)] = 353677, + [SMALL_STATE(9557)] = 353691, + [SMALL_STATE(9558)] = 353707, + [SMALL_STATE(9559)] = 353723, + [SMALL_STATE(9560)] = 353737, + [SMALL_STATE(9561)] = 353751, + [SMALL_STATE(9562)] = 353765, + [SMALL_STATE(9563)] = 353781, + [SMALL_STATE(9564)] = 353797, + [SMALL_STATE(9565)] = 353813, + [SMALL_STATE(9566)] = 353827, + [SMALL_STATE(9567)] = 353841, + [SMALL_STATE(9568)] = 353857, + [SMALL_STATE(9569)] = 353873, + [SMALL_STATE(9570)] = 353889, + [SMALL_STATE(9571)] = 353903, + [SMALL_STATE(9572)] = 353917, + [SMALL_STATE(9573)] = 353931, + [SMALL_STATE(9574)] = 353945, + [SMALL_STATE(9575)] = 353961, + [SMALL_STATE(9576)] = 353977, + [SMALL_STATE(9577)] = 353993, + [SMALL_STATE(9578)] = 354007, + [SMALL_STATE(9579)] = 354021, + [SMALL_STATE(9580)] = 354037, + [SMALL_STATE(9581)] = 354053, + [SMALL_STATE(9582)] = 354067, + [SMALL_STATE(9583)] = 354077, + [SMALL_STATE(9584)] = 354093, + [SMALL_STATE(9585)] = 354109, + [SMALL_STATE(9586)] = 354125, + [SMALL_STATE(9587)] = 354139, + [SMALL_STATE(9588)] = 354155, + [SMALL_STATE(9589)] = 354169, + [SMALL_STATE(9590)] = 354183, + [SMALL_STATE(9591)] = 354199, + [SMALL_STATE(9592)] = 354215, + [SMALL_STATE(9593)] = 354231, + [SMALL_STATE(9594)] = 354247, + [SMALL_STATE(9595)] = 354263, + [SMALL_STATE(9596)] = 354279, + [SMALL_STATE(9597)] = 354295, + [SMALL_STATE(9598)] = 354311, + [SMALL_STATE(9599)] = 354327, + [SMALL_STATE(9600)] = 354343, + [SMALL_STATE(9601)] = 354359, + [SMALL_STATE(9602)] = 354375, + [SMALL_STATE(9603)] = 354391, + [SMALL_STATE(9604)] = 354405, + [SMALL_STATE(9605)] = 354421, + [SMALL_STATE(9606)] = 354437, + [SMALL_STATE(9607)] = 354453, + [SMALL_STATE(9608)] = 354469, + [SMALL_STATE(9609)] = 354479, + [SMALL_STATE(9610)] = 354495, + [SMALL_STATE(9611)] = 354511, + [SMALL_STATE(9612)] = 354525, + [SMALL_STATE(9613)] = 354541, + [SMALL_STATE(9614)] = 354557, + [SMALL_STATE(9615)] = 354571, + [SMALL_STATE(9616)] = 354585, + [SMALL_STATE(9617)] = 354599, + [SMALL_STATE(9618)] = 354609, + [SMALL_STATE(9619)] = 354619, + [SMALL_STATE(9620)] = 354635, + [SMALL_STATE(9621)] = 354651, + [SMALL_STATE(9622)] = 354667, + [SMALL_STATE(9623)] = 354681, + [SMALL_STATE(9624)] = 354697, + [SMALL_STATE(9625)] = 354713, + [SMALL_STATE(9626)] = 354729, + [SMALL_STATE(9627)] = 354745, + [SMALL_STATE(9628)] = 354761, + [SMALL_STATE(9629)] = 354775, + [SMALL_STATE(9630)] = 354791, + [SMALL_STATE(9631)] = 354805, + [SMALL_STATE(9632)] = 354821, + [SMALL_STATE(9633)] = 354831, + [SMALL_STATE(9634)] = 354847, + [SMALL_STATE(9635)] = 354863, + [SMALL_STATE(9636)] = 354879, + [SMALL_STATE(9637)] = 354895, + [SMALL_STATE(9638)] = 354911, + [SMALL_STATE(9639)] = 354925, + [SMALL_STATE(9640)] = 354941, + [SMALL_STATE(9641)] = 354957, + [SMALL_STATE(9642)] = 354973, + [SMALL_STATE(9643)] = 354989, + [SMALL_STATE(9644)] = 355005, + [SMALL_STATE(9645)] = 355021, + [SMALL_STATE(9646)] = 355037, + [SMALL_STATE(9647)] = 355053, + [SMALL_STATE(9648)] = 355069, + [SMALL_STATE(9649)] = 355083, + [SMALL_STATE(9650)] = 355099, + [SMALL_STATE(9651)] = 355113, + [SMALL_STATE(9652)] = 355125, + [SMALL_STATE(9653)] = 355141, + [SMALL_STATE(9654)] = 355157, + [SMALL_STATE(9655)] = 355173, + [SMALL_STATE(9656)] = 355189, + [SMALL_STATE(9657)] = 355205, + [SMALL_STATE(9658)] = 355219, + [SMALL_STATE(9659)] = 355232, + [SMALL_STATE(9660)] = 355245, + [SMALL_STATE(9661)] = 355258, + [SMALL_STATE(9662)] = 355271, + [SMALL_STATE(9663)] = 355284, + [SMALL_STATE(9664)] = 355297, + [SMALL_STATE(9665)] = 355310, + [SMALL_STATE(9666)] = 355323, + [SMALL_STATE(9667)] = 355336, + [SMALL_STATE(9668)] = 355349, + [SMALL_STATE(9669)] = 355360, + [SMALL_STATE(9670)] = 355373, + [SMALL_STATE(9671)] = 355386, + [SMALL_STATE(9672)] = 355399, + [SMALL_STATE(9673)] = 355412, + [SMALL_STATE(9674)] = 355425, + [SMALL_STATE(9675)] = 355438, + [SMALL_STATE(9676)] = 355451, + [SMALL_STATE(9677)] = 355464, + [SMALL_STATE(9678)] = 355477, + [SMALL_STATE(9679)] = 355490, + [SMALL_STATE(9680)] = 355503, + [SMALL_STATE(9681)] = 355516, + [SMALL_STATE(9682)] = 355529, + [SMALL_STATE(9683)] = 355542, + [SMALL_STATE(9684)] = 355555, + [SMALL_STATE(9685)] = 355568, + [SMALL_STATE(9686)] = 355581, + [SMALL_STATE(9687)] = 355594, + [SMALL_STATE(9688)] = 355607, + [SMALL_STATE(9689)] = 355620, + [SMALL_STATE(9690)] = 355633, + [SMALL_STATE(9691)] = 355646, + [SMALL_STATE(9692)] = 355659, + [SMALL_STATE(9693)] = 355672, + [SMALL_STATE(9694)] = 355683, + [SMALL_STATE(9695)] = 355696, + [SMALL_STATE(9696)] = 355709, + [SMALL_STATE(9697)] = 355722, + [SMALL_STATE(9698)] = 355735, + [SMALL_STATE(9699)] = 355748, + [SMALL_STATE(9700)] = 355761, + [SMALL_STATE(9701)] = 355774, + [SMALL_STATE(9702)] = 355787, + [SMALL_STATE(9703)] = 355800, + [SMALL_STATE(9704)] = 355813, + [SMALL_STATE(9705)] = 355824, + [SMALL_STATE(9706)] = 355833, + [SMALL_STATE(9707)] = 355842, + [SMALL_STATE(9708)] = 355855, + [SMALL_STATE(9709)] = 355866, + [SMALL_STATE(9710)] = 355879, + [SMALL_STATE(9711)] = 355892, + [SMALL_STATE(9712)] = 355905, + [SMALL_STATE(9713)] = 355918, + [SMALL_STATE(9714)] = 355931, + [SMALL_STATE(9715)] = 355944, + [SMALL_STATE(9716)] = 355957, + [SMALL_STATE(9717)] = 355970, + [SMALL_STATE(9718)] = 355983, + [SMALL_STATE(9719)] = 355996, + [SMALL_STATE(9720)] = 356009, + [SMALL_STATE(9721)] = 356022, + [SMALL_STATE(9722)] = 356035, + [SMALL_STATE(9723)] = 356048, + [SMALL_STATE(9724)] = 356061, + [SMALL_STATE(9725)] = 356074, + [SMALL_STATE(9726)] = 356087, + [SMALL_STATE(9727)] = 356100, + [SMALL_STATE(9728)] = 356113, + [SMALL_STATE(9729)] = 356126, + [SMALL_STATE(9730)] = 356139, + [SMALL_STATE(9731)] = 356152, + [SMALL_STATE(9732)] = 356165, + [SMALL_STATE(9733)] = 356178, + [SMALL_STATE(9734)] = 356191, + [SMALL_STATE(9735)] = 356204, + [SMALL_STATE(9736)] = 356217, + [SMALL_STATE(9737)] = 356228, + [SMALL_STATE(9738)] = 356239, + [SMALL_STATE(9739)] = 356252, + [SMALL_STATE(9740)] = 356265, + [SMALL_STATE(9741)] = 356278, + [SMALL_STATE(9742)] = 356291, + [SMALL_STATE(9743)] = 356304, + [SMALL_STATE(9744)] = 356317, + [SMALL_STATE(9745)] = 356330, + [SMALL_STATE(9746)] = 356343, + [SMALL_STATE(9747)] = 356356, + [SMALL_STATE(9748)] = 356369, + [SMALL_STATE(9749)] = 356382, + [SMALL_STATE(9750)] = 356395, + [SMALL_STATE(9751)] = 356408, + [SMALL_STATE(9752)] = 356421, + [SMALL_STATE(9753)] = 356434, + [SMALL_STATE(9754)] = 356447, + [SMALL_STATE(9755)] = 356460, + [SMALL_STATE(9756)] = 356473, + [SMALL_STATE(9757)] = 356486, + [SMALL_STATE(9758)] = 356499, + [SMALL_STATE(9759)] = 356510, + [SMALL_STATE(9760)] = 356523, + [SMALL_STATE(9761)] = 356536, + [SMALL_STATE(9762)] = 356549, + [SMALL_STATE(9763)] = 356562, + [SMALL_STATE(9764)] = 356573, + [SMALL_STATE(9765)] = 356586, + [SMALL_STATE(9766)] = 356599, + [SMALL_STATE(9767)] = 356612, + [SMALL_STATE(9768)] = 356625, + [SMALL_STATE(9769)] = 356638, + [SMALL_STATE(9770)] = 356651, + [SMALL_STATE(9771)] = 356664, + [SMALL_STATE(9772)] = 356677, + [SMALL_STATE(9773)] = 356690, + [SMALL_STATE(9774)] = 356703, + [SMALL_STATE(9775)] = 356716, + [SMALL_STATE(9776)] = 356729, + [SMALL_STATE(9777)] = 356740, + [SMALL_STATE(9778)] = 356753, + [SMALL_STATE(9779)] = 356766, + [SMALL_STATE(9780)] = 356779, + [SMALL_STATE(9781)] = 356792, + [SMALL_STATE(9782)] = 356805, + [SMALL_STATE(9783)] = 356818, + [SMALL_STATE(9784)] = 356831, + [SMALL_STATE(9785)] = 356844, + [SMALL_STATE(9786)] = 356857, + [SMALL_STATE(9787)] = 356870, + [SMALL_STATE(9788)] = 356883, + [SMALL_STATE(9789)] = 356896, + [SMALL_STATE(9790)] = 356909, + [SMALL_STATE(9791)] = 356922, + [SMALL_STATE(9792)] = 356935, + [SMALL_STATE(9793)] = 356948, + [SMALL_STATE(9794)] = 356961, + [SMALL_STATE(9795)] = 356974, + [SMALL_STATE(9796)] = 356987, + [SMALL_STATE(9797)] = 357000, + [SMALL_STATE(9798)] = 357013, + [SMALL_STATE(9799)] = 357026, + [SMALL_STATE(9800)] = 357039, + [SMALL_STATE(9801)] = 357052, + [SMALL_STATE(9802)] = 357063, + [SMALL_STATE(9803)] = 357076, + [SMALL_STATE(9804)] = 357087, + [SMALL_STATE(9805)] = 357100, + [SMALL_STATE(9806)] = 357113, + [SMALL_STATE(9807)] = 357126, + [SMALL_STATE(9808)] = 357135, + [SMALL_STATE(9809)] = 357144, + [SMALL_STATE(9810)] = 357157, + [SMALL_STATE(9811)] = 357168, + [SMALL_STATE(9812)] = 357181, + [SMALL_STATE(9813)] = 357194, + [SMALL_STATE(9814)] = 357207, + [SMALL_STATE(9815)] = 357220, + [SMALL_STATE(9816)] = 357233, + [SMALL_STATE(9817)] = 357244, + [SMALL_STATE(9818)] = 357257, + [SMALL_STATE(9819)] = 357270, + [SMALL_STATE(9820)] = 357283, + [SMALL_STATE(9821)] = 357296, + [SMALL_STATE(9822)] = 357309, + [SMALL_STATE(9823)] = 357320, + [SMALL_STATE(9824)] = 357333, + [SMALL_STATE(9825)] = 357346, + [SMALL_STATE(9826)] = 357359, + [SMALL_STATE(9827)] = 357372, + [SMALL_STATE(9828)] = 357385, + [SMALL_STATE(9829)] = 357398, + [SMALL_STATE(9830)] = 357411, + [SMALL_STATE(9831)] = 357424, + [SMALL_STATE(9832)] = 357437, + [SMALL_STATE(9833)] = 357450, + [SMALL_STATE(9834)] = 357463, + [SMALL_STATE(9835)] = 357476, + [SMALL_STATE(9836)] = 357489, + [SMALL_STATE(9837)] = 357502, + [SMALL_STATE(9838)] = 357513, + [SMALL_STATE(9839)] = 357526, + [SMALL_STATE(9840)] = 357539, + [SMALL_STATE(9841)] = 357552, + [SMALL_STATE(9842)] = 357565, + [SMALL_STATE(9843)] = 357578, + [SMALL_STATE(9844)] = 357589, + [SMALL_STATE(9845)] = 357600, + [SMALL_STATE(9846)] = 357611, + [SMALL_STATE(9847)] = 357624, + [SMALL_STATE(9848)] = 357637, + [SMALL_STATE(9849)] = 357650, + [SMALL_STATE(9850)] = 357661, + [SMALL_STATE(9851)] = 357670, + [SMALL_STATE(9852)] = 357683, + [SMALL_STATE(9853)] = 357696, + [SMALL_STATE(9854)] = 357709, + [SMALL_STATE(9855)] = 357722, + [SMALL_STATE(9856)] = 357735, + [SMALL_STATE(9857)] = 357748, + [SMALL_STATE(9858)] = 357759, + [SMALL_STATE(9859)] = 357772, + [SMALL_STATE(9860)] = 357785, + [SMALL_STATE(9861)] = 357798, + [SMALL_STATE(9862)] = 357811, + [SMALL_STATE(9863)] = 357824, + [SMALL_STATE(9864)] = 357837, + [SMALL_STATE(9865)] = 357850, + [SMALL_STATE(9866)] = 357863, + [SMALL_STATE(9867)] = 357876, + [SMALL_STATE(9868)] = 357889, + [SMALL_STATE(9869)] = 357902, + [SMALL_STATE(9870)] = 357915, + [SMALL_STATE(9871)] = 357928, + [SMALL_STATE(9872)] = 357941, + [SMALL_STATE(9873)] = 357954, + [SMALL_STATE(9874)] = 357967, + [SMALL_STATE(9875)] = 357980, + [SMALL_STATE(9876)] = 357991, + [SMALL_STATE(9877)] = 358004, + [SMALL_STATE(9878)] = 358017, + [SMALL_STATE(9879)] = 358030, + [SMALL_STATE(9880)] = 358041, + [SMALL_STATE(9881)] = 358054, + [SMALL_STATE(9882)] = 358067, + [SMALL_STATE(9883)] = 358080, + [SMALL_STATE(9884)] = 358093, + [SMALL_STATE(9885)] = 358106, + [SMALL_STATE(9886)] = 358119, + [SMALL_STATE(9887)] = 358132, + [SMALL_STATE(9888)] = 358145, + [SMALL_STATE(9889)] = 358158, + [SMALL_STATE(9890)] = 358171, + [SMALL_STATE(9891)] = 358184, + [SMALL_STATE(9892)] = 358197, + [SMALL_STATE(9893)] = 358208, + [SMALL_STATE(9894)] = 358221, + [SMALL_STATE(9895)] = 358234, + [SMALL_STATE(9896)] = 358245, + [SMALL_STATE(9897)] = 358258, + [SMALL_STATE(9898)] = 358271, + [SMALL_STATE(9899)] = 358284, + [SMALL_STATE(9900)] = 358297, + [SMALL_STATE(9901)] = 358310, + [SMALL_STATE(9902)] = 358323, + [SMALL_STATE(9903)] = 358336, + [SMALL_STATE(9904)] = 358349, + [SMALL_STATE(9905)] = 358362, + [SMALL_STATE(9906)] = 358375, + [SMALL_STATE(9907)] = 358388, + [SMALL_STATE(9908)] = 358401, + [SMALL_STATE(9909)] = 358414, + [SMALL_STATE(9910)] = 358427, + [SMALL_STATE(9911)] = 358438, + [SMALL_STATE(9912)] = 358451, + [SMALL_STATE(9913)] = 358464, + [SMALL_STATE(9914)] = 358477, + [SMALL_STATE(9915)] = 358488, + [SMALL_STATE(9916)] = 358501, + [SMALL_STATE(9917)] = 358512, + [SMALL_STATE(9918)] = 358525, + [SMALL_STATE(9919)] = 358538, + [SMALL_STATE(9920)] = 358551, + [SMALL_STATE(9921)] = 358564, + [SMALL_STATE(9922)] = 358577, + [SMALL_STATE(9923)] = 358590, + [SMALL_STATE(9924)] = 358603, + [SMALL_STATE(9925)] = 358616, + [SMALL_STATE(9926)] = 358625, + [SMALL_STATE(9927)] = 358638, + [SMALL_STATE(9928)] = 358651, + [SMALL_STATE(9929)] = 358664, + [SMALL_STATE(9930)] = 358677, + [SMALL_STATE(9931)] = 358690, + [SMALL_STATE(9932)] = 358703, + [SMALL_STATE(9933)] = 358716, + [SMALL_STATE(9934)] = 358727, + [SMALL_STATE(9935)] = 358740, + [SMALL_STATE(9936)] = 358751, + [SMALL_STATE(9937)] = 358764, + [SMALL_STATE(9938)] = 358777, + [SMALL_STATE(9939)] = 358788, + [SMALL_STATE(9940)] = 358801, + [SMALL_STATE(9941)] = 358814, + [SMALL_STATE(9942)] = 358827, + [SMALL_STATE(9943)] = 358840, + [SMALL_STATE(9944)] = 358853, + [SMALL_STATE(9945)] = 358864, + [SMALL_STATE(9946)] = 358877, + [SMALL_STATE(9947)] = 358890, + [SMALL_STATE(9948)] = 358903, + [SMALL_STATE(9949)] = 358916, + [SMALL_STATE(9950)] = 358929, + [SMALL_STATE(9951)] = 358942, + [SMALL_STATE(9952)] = 358953, + [SMALL_STATE(9953)] = 358966, + [SMALL_STATE(9954)] = 358979, + [SMALL_STATE(9955)] = 358992, + [SMALL_STATE(9956)] = 359005, + [SMALL_STATE(9957)] = 359018, + [SMALL_STATE(9958)] = 359031, + [SMALL_STATE(9959)] = 359044, + [SMALL_STATE(9960)] = 359055, + [SMALL_STATE(9961)] = 359068, + [SMALL_STATE(9962)] = 359081, + [SMALL_STATE(9963)] = 359094, + [SMALL_STATE(9964)] = 359105, + [SMALL_STATE(9965)] = 359116, + [SMALL_STATE(9966)] = 359129, + [SMALL_STATE(9967)] = 359142, + [SMALL_STATE(9968)] = 359155, + [SMALL_STATE(9969)] = 359168, + [SMALL_STATE(9970)] = 359181, + [SMALL_STATE(9971)] = 359194, + [SMALL_STATE(9972)] = 359205, + [SMALL_STATE(9973)] = 359218, + [SMALL_STATE(9974)] = 359231, + [SMALL_STATE(9975)] = 359242, + [SMALL_STATE(9976)] = 359255, + [SMALL_STATE(9977)] = 359268, + [SMALL_STATE(9978)] = 359279, + [SMALL_STATE(9979)] = 359292, + [SMALL_STATE(9980)] = 359303, + [SMALL_STATE(9981)] = 359316, + [SMALL_STATE(9982)] = 359329, + [SMALL_STATE(9983)] = 359342, + [SMALL_STATE(9984)] = 359355, + [SMALL_STATE(9985)] = 359366, + [SMALL_STATE(9986)] = 359379, + [SMALL_STATE(9987)] = 359392, + [SMALL_STATE(9988)] = 359405, + [SMALL_STATE(9989)] = 359418, + [SMALL_STATE(9990)] = 359431, + [SMALL_STATE(9991)] = 359444, + [SMALL_STATE(9992)] = 359457, + [SMALL_STATE(9993)] = 359470, + [SMALL_STATE(9994)] = 359483, + [SMALL_STATE(9995)] = 359496, + [SMALL_STATE(9996)] = 359507, + [SMALL_STATE(9997)] = 359520, + [SMALL_STATE(9998)] = 359533, + [SMALL_STATE(9999)] = 359546, + [SMALL_STATE(10000)] = 359559, + [SMALL_STATE(10001)] = 359572, + [SMALL_STATE(10002)] = 359585, + [SMALL_STATE(10003)] = 359598, + [SMALL_STATE(10004)] = 359609, + [SMALL_STATE(10005)] = 359622, + [SMALL_STATE(10006)] = 359631, + [SMALL_STATE(10007)] = 359644, + [SMALL_STATE(10008)] = 359657, + [SMALL_STATE(10009)] = 359670, + [SMALL_STATE(10010)] = 359679, + [SMALL_STATE(10011)] = 359692, + [SMALL_STATE(10012)] = 359705, + [SMALL_STATE(10013)] = 359718, + [SMALL_STATE(10014)] = 359731, + [SMALL_STATE(10015)] = 359744, + [SMALL_STATE(10016)] = 359757, + [SMALL_STATE(10017)] = 359768, + [SMALL_STATE(10018)] = 359781, + [SMALL_STATE(10019)] = 359794, + [SMALL_STATE(10020)] = 359807, + [SMALL_STATE(10021)] = 359820, + [SMALL_STATE(10022)] = 359833, + [SMALL_STATE(10023)] = 359846, + [SMALL_STATE(10024)] = 359859, + [SMALL_STATE(10025)] = 359872, + [SMALL_STATE(10026)] = 359885, + [SMALL_STATE(10027)] = 359898, + [SMALL_STATE(10028)] = 359911, + [SMALL_STATE(10029)] = 359924, + [SMALL_STATE(10030)] = 359937, + [SMALL_STATE(10031)] = 359950, + [SMALL_STATE(10032)] = 359963, + [SMALL_STATE(10033)] = 359976, + [SMALL_STATE(10034)] = 359989, + [SMALL_STATE(10035)] = 360002, + [SMALL_STATE(10036)] = 360015, + [SMALL_STATE(10037)] = 360028, + [SMALL_STATE(10038)] = 360041, + [SMALL_STATE(10039)] = 360054, + [SMALL_STATE(10040)] = 360065, + [SMALL_STATE(10041)] = 360078, + [SMALL_STATE(10042)] = 360091, + [SMALL_STATE(10043)] = 360104, + [SMALL_STATE(10044)] = 360117, + [SMALL_STATE(10045)] = 360130, + [SMALL_STATE(10046)] = 360143, + [SMALL_STATE(10047)] = 360156, + [SMALL_STATE(10048)] = 360165, + [SMALL_STATE(10049)] = 360178, + [SMALL_STATE(10050)] = 360191, + [SMALL_STATE(10051)] = 360202, + [SMALL_STATE(10052)] = 360215, + [SMALL_STATE(10053)] = 360228, + [SMALL_STATE(10054)] = 360241, + [SMALL_STATE(10055)] = 360254, + [SMALL_STATE(10056)] = 360267, + [SMALL_STATE(10057)] = 360280, + [SMALL_STATE(10058)] = 360291, + [SMALL_STATE(10059)] = 360304, + [SMALL_STATE(10060)] = 360317, + [SMALL_STATE(10061)] = 360330, + [SMALL_STATE(10062)] = 360343, + [SMALL_STATE(10063)] = 360356, + [SMALL_STATE(10064)] = 360369, + [SMALL_STATE(10065)] = 360382, + [SMALL_STATE(10066)] = 360393, + [SMALL_STATE(10067)] = 360406, + [SMALL_STATE(10068)] = 360419, + [SMALL_STATE(10069)] = 360432, + [SMALL_STATE(10070)] = 360443, + [SMALL_STATE(10071)] = 360456, + [SMALL_STATE(10072)] = 360469, + [SMALL_STATE(10073)] = 360480, + [SMALL_STATE(10074)] = 360493, + [SMALL_STATE(10075)] = 360506, + [SMALL_STATE(10076)] = 360519, + [SMALL_STATE(10077)] = 360530, + [SMALL_STATE(10078)] = 360541, + [SMALL_STATE(10079)] = 360554, + [SMALL_STATE(10080)] = 360563, + [SMALL_STATE(10081)] = 360574, + [SMALL_STATE(10082)] = 360587, + [SMALL_STATE(10083)] = 360600, + [SMALL_STATE(10084)] = 360611, + [SMALL_STATE(10085)] = 360624, + [SMALL_STATE(10086)] = 360637, + [SMALL_STATE(10087)] = 360650, + [SMALL_STATE(10088)] = 360663, + [SMALL_STATE(10089)] = 360676, + [SMALL_STATE(10090)] = 360689, + [SMALL_STATE(10091)] = 360700, + [SMALL_STATE(10092)] = 360713, + [SMALL_STATE(10093)] = 360726, + [SMALL_STATE(10094)] = 360739, + [SMALL_STATE(10095)] = 360752, + [SMALL_STATE(10096)] = 360765, + [SMALL_STATE(10097)] = 360778, + [SMALL_STATE(10098)] = 360791, + [SMALL_STATE(10099)] = 360804, + [SMALL_STATE(10100)] = 360817, + [SMALL_STATE(10101)] = 360830, + [SMALL_STATE(10102)] = 360843, + [SMALL_STATE(10103)] = 360856, + [SMALL_STATE(10104)] = 360869, + [SMALL_STATE(10105)] = 360882, + [SMALL_STATE(10106)] = 360895, + [SMALL_STATE(10107)] = 360908, + [SMALL_STATE(10108)] = 360921, + [SMALL_STATE(10109)] = 360934, + [SMALL_STATE(10110)] = 360947, + [SMALL_STATE(10111)] = 360960, + [SMALL_STATE(10112)] = 360973, + [SMALL_STATE(10113)] = 360986, + [SMALL_STATE(10114)] = 360999, + [SMALL_STATE(10115)] = 361012, + [SMALL_STATE(10116)] = 361025, + [SMALL_STATE(10117)] = 361038, + [SMALL_STATE(10118)] = 361051, + [SMALL_STATE(10119)] = 361064, + [SMALL_STATE(10120)] = 361077, + [SMALL_STATE(10121)] = 361090, + [SMALL_STATE(10122)] = 361103, + [SMALL_STATE(10123)] = 361116, + [SMALL_STATE(10124)] = 361129, + [SMALL_STATE(10125)] = 361142, + [SMALL_STATE(10126)] = 361155, + [SMALL_STATE(10127)] = 361168, + [SMALL_STATE(10128)] = 361181, + [SMALL_STATE(10129)] = 361194, + [SMALL_STATE(10130)] = 361207, + [SMALL_STATE(10131)] = 361220, + [SMALL_STATE(10132)] = 361229, + [SMALL_STATE(10133)] = 361238, + [SMALL_STATE(10134)] = 361251, + [SMALL_STATE(10135)] = 361264, + [SMALL_STATE(10136)] = 361277, + [SMALL_STATE(10137)] = 361290, + [SMALL_STATE(10138)] = 361303, + [SMALL_STATE(10139)] = 361316, + [SMALL_STATE(10140)] = 361329, + [SMALL_STATE(10141)] = 361342, + [SMALL_STATE(10142)] = 361355, + [SMALL_STATE(10143)] = 361368, + [SMALL_STATE(10144)] = 361381, + [SMALL_STATE(10145)] = 361394, + [SMALL_STATE(10146)] = 361405, + [SMALL_STATE(10147)] = 361418, + [SMALL_STATE(10148)] = 361431, + [SMALL_STATE(10149)] = 361444, + [SMALL_STATE(10150)] = 361457, + [SMALL_STATE(10151)] = 361470, + [SMALL_STATE(10152)] = 361483, + [SMALL_STATE(10153)] = 361496, + [SMALL_STATE(10154)] = 361509, + [SMALL_STATE(10155)] = 361522, + [SMALL_STATE(10156)] = 361535, + [SMALL_STATE(10157)] = 361548, + [SMALL_STATE(10158)] = 361561, + [SMALL_STATE(10159)] = 361574, + [SMALL_STATE(10160)] = 361587, + [SMALL_STATE(10161)] = 361600, + [SMALL_STATE(10162)] = 361613, + [SMALL_STATE(10163)] = 361624, + [SMALL_STATE(10164)] = 361637, + [SMALL_STATE(10165)] = 361650, + [SMALL_STATE(10166)] = 361663, + [SMALL_STATE(10167)] = 361676, + [SMALL_STATE(10168)] = 361689, + [SMALL_STATE(10169)] = 361702, + [SMALL_STATE(10170)] = 361713, + [SMALL_STATE(10171)] = 361726, + [SMALL_STATE(10172)] = 361739, + [SMALL_STATE(10173)] = 361752, + [SMALL_STATE(10174)] = 361765, + [SMALL_STATE(10175)] = 361778, + [SMALL_STATE(10176)] = 361791, + [SMALL_STATE(10177)] = 361804, + [SMALL_STATE(10178)] = 361815, + [SMALL_STATE(10179)] = 361828, + [SMALL_STATE(10180)] = 361841, + [SMALL_STATE(10181)] = 361854, + [SMALL_STATE(10182)] = 361867, + [SMALL_STATE(10183)] = 361880, + [SMALL_STATE(10184)] = 361893, + [SMALL_STATE(10185)] = 361906, + [SMALL_STATE(10186)] = 361915, + [SMALL_STATE(10187)] = 361924, + [SMALL_STATE(10188)] = 361937, + [SMALL_STATE(10189)] = 361950, + [SMALL_STATE(10190)] = 361963, + [SMALL_STATE(10191)] = 361974, + [SMALL_STATE(10192)] = 361987, + [SMALL_STATE(10193)] = 362000, + [SMALL_STATE(10194)] = 362013, + [SMALL_STATE(10195)] = 362024, + [SMALL_STATE(10196)] = 362037, + [SMALL_STATE(10197)] = 362050, + [SMALL_STATE(10198)] = 362063, + [SMALL_STATE(10199)] = 362076, + [SMALL_STATE(10200)] = 362089, + [SMALL_STATE(10201)] = 362102, + [SMALL_STATE(10202)] = 362112, + [SMALL_STATE(10203)] = 362122, + [SMALL_STATE(10204)] = 362132, + [SMALL_STATE(10205)] = 362142, + [SMALL_STATE(10206)] = 362152, + [SMALL_STATE(10207)] = 362160, + [SMALL_STATE(10208)] = 362168, + [SMALL_STATE(10209)] = 362178, + [SMALL_STATE(10210)] = 362188, + [SMALL_STATE(10211)] = 362198, + [SMALL_STATE(10212)] = 362206, + [SMALL_STATE(10213)] = 362216, + [SMALL_STATE(10214)] = 362226, + [SMALL_STATE(10215)] = 362236, + [SMALL_STATE(10216)] = 362246, + [SMALL_STATE(10217)] = 362256, + [SMALL_STATE(10218)] = 362266, + [SMALL_STATE(10219)] = 362276, + [SMALL_STATE(10220)] = 362286, + [SMALL_STATE(10221)] = 362296, + [SMALL_STATE(10222)] = 362306, + [SMALL_STATE(10223)] = 362316, + [SMALL_STATE(10224)] = 362326, + [SMALL_STATE(10225)] = 362336, + [SMALL_STATE(10226)] = 362346, + [SMALL_STATE(10227)] = 362356, + [SMALL_STATE(10228)] = 362366, + [SMALL_STATE(10229)] = 362376, + [SMALL_STATE(10230)] = 362386, + [SMALL_STATE(10231)] = 362396, + [SMALL_STATE(10232)] = 362406, + [SMALL_STATE(10233)] = 362416, + [SMALL_STATE(10234)] = 362426, + [SMALL_STATE(10235)] = 362436, + [SMALL_STATE(10236)] = 362446, + [SMALL_STATE(10237)] = 362456, + [SMALL_STATE(10238)] = 362466, + [SMALL_STATE(10239)] = 362476, + [SMALL_STATE(10240)] = 362486, + [SMALL_STATE(10241)] = 362496, + [SMALL_STATE(10242)] = 362506, + [SMALL_STATE(10243)] = 362516, + [SMALL_STATE(10244)] = 362526, + [SMALL_STATE(10245)] = 362536, + [SMALL_STATE(10246)] = 362546, + [SMALL_STATE(10247)] = 362556, + [SMALL_STATE(10248)] = 362564, + [SMALL_STATE(10249)] = 362574, + [SMALL_STATE(10250)] = 362584, + [SMALL_STATE(10251)] = 362592, + [SMALL_STATE(10252)] = 362602, + [SMALL_STATE(10253)] = 362612, + [SMALL_STATE(10254)] = 362620, + [SMALL_STATE(10255)] = 362630, + [SMALL_STATE(10256)] = 362640, + [SMALL_STATE(10257)] = 362650, + [SMALL_STATE(10258)] = 362660, + [SMALL_STATE(10259)] = 362670, + [SMALL_STATE(10260)] = 362680, + [SMALL_STATE(10261)] = 362690, + [SMALL_STATE(10262)] = 362698, + [SMALL_STATE(10263)] = 362708, + [SMALL_STATE(10264)] = 362718, + [SMALL_STATE(10265)] = 362728, + [SMALL_STATE(10266)] = 362738, + [SMALL_STATE(10267)] = 362748, + [SMALL_STATE(10268)] = 362758, + [SMALL_STATE(10269)] = 362768, + [SMALL_STATE(10270)] = 362778, + [SMALL_STATE(10271)] = 362788, + [SMALL_STATE(10272)] = 362798, + [SMALL_STATE(10273)] = 362808, + [SMALL_STATE(10274)] = 362818, + [SMALL_STATE(10275)] = 362828, + [SMALL_STATE(10276)] = 362838, + [SMALL_STATE(10277)] = 362848, + [SMALL_STATE(10278)] = 362858, + [SMALL_STATE(10279)] = 362868, + [SMALL_STATE(10280)] = 362878, + [SMALL_STATE(10281)] = 362888, + [SMALL_STATE(10282)] = 362898, + [SMALL_STATE(10283)] = 362908, + [SMALL_STATE(10284)] = 362918, + [SMALL_STATE(10285)] = 362928, + [SMALL_STATE(10286)] = 362938, + [SMALL_STATE(10287)] = 362946, + [SMALL_STATE(10288)] = 362956, + [SMALL_STATE(10289)] = 362966, + [SMALL_STATE(10290)] = 362976, + [SMALL_STATE(10291)] = 362986, + [SMALL_STATE(10292)] = 362994, + [SMALL_STATE(10293)] = 363004, + [SMALL_STATE(10294)] = 363014, + [SMALL_STATE(10295)] = 363024, + [SMALL_STATE(10296)] = 363034, + [SMALL_STATE(10297)] = 363044, + [SMALL_STATE(10298)] = 363054, + [SMALL_STATE(10299)] = 363064, + [SMALL_STATE(10300)] = 363074, + [SMALL_STATE(10301)] = 363084, + [SMALL_STATE(10302)] = 363094, + [SMALL_STATE(10303)] = 363102, + [SMALL_STATE(10304)] = 363110, + [SMALL_STATE(10305)] = 363120, + [SMALL_STATE(10306)] = 363130, + [SMALL_STATE(10307)] = 363140, + [SMALL_STATE(10308)] = 363150, + [SMALL_STATE(10309)] = 363160, + [SMALL_STATE(10310)] = 363170, + [SMALL_STATE(10311)] = 363178, + [SMALL_STATE(10312)] = 363188, + [SMALL_STATE(10313)] = 363196, + [SMALL_STATE(10314)] = 363206, + [SMALL_STATE(10315)] = 363216, + [SMALL_STATE(10316)] = 363226, + [SMALL_STATE(10317)] = 363236, + [SMALL_STATE(10318)] = 363246, + [SMALL_STATE(10319)] = 363256, + [SMALL_STATE(10320)] = 363266, + [SMALL_STATE(10321)] = 363274, + [SMALL_STATE(10322)] = 363284, + [SMALL_STATE(10323)] = 363294, + [SMALL_STATE(10324)] = 363304, + [SMALL_STATE(10325)] = 363314, + [SMALL_STATE(10326)] = 363324, + [SMALL_STATE(10327)] = 363332, + [SMALL_STATE(10328)] = 363342, + [SMALL_STATE(10329)] = 363350, + [SMALL_STATE(10330)] = 363360, + [SMALL_STATE(10331)] = 363368, + [SMALL_STATE(10332)] = 363376, + [SMALL_STATE(10333)] = 363386, + [SMALL_STATE(10334)] = 363396, + [SMALL_STATE(10335)] = 363406, + [SMALL_STATE(10336)] = 363416, + [SMALL_STATE(10337)] = 363426, + [SMALL_STATE(10338)] = 363436, + [SMALL_STATE(10339)] = 363446, + [SMALL_STATE(10340)] = 363456, + [SMALL_STATE(10341)] = 363466, + [SMALL_STATE(10342)] = 363476, + [SMALL_STATE(10343)] = 363486, + [SMALL_STATE(10344)] = 363494, + [SMALL_STATE(10345)] = 363504, + [SMALL_STATE(10346)] = 363514, + [SMALL_STATE(10347)] = 363524, + [SMALL_STATE(10348)] = 363534, + [SMALL_STATE(10349)] = 363544, + [SMALL_STATE(10350)] = 363554, + [SMALL_STATE(10351)] = 363564, + [SMALL_STATE(10352)] = 363572, + [SMALL_STATE(10353)] = 363580, + [SMALL_STATE(10354)] = 363590, + [SMALL_STATE(10355)] = 363600, + [SMALL_STATE(10356)] = 363610, + [SMALL_STATE(10357)] = 363620, + [SMALL_STATE(10358)] = 363630, + [SMALL_STATE(10359)] = 363640, + [SMALL_STATE(10360)] = 363650, + [SMALL_STATE(10361)] = 363660, + [SMALL_STATE(10362)] = 363670, + [SMALL_STATE(10363)] = 363680, + [SMALL_STATE(10364)] = 363690, + [SMALL_STATE(10365)] = 363700, + [SMALL_STATE(10366)] = 363710, + [SMALL_STATE(10367)] = 363720, + [SMALL_STATE(10368)] = 363730, + [SMALL_STATE(10369)] = 363740, + [SMALL_STATE(10370)] = 363750, + [SMALL_STATE(10371)] = 363760, + [SMALL_STATE(10372)] = 363768, + [SMALL_STATE(10373)] = 363778, + [SMALL_STATE(10374)] = 363788, + [SMALL_STATE(10375)] = 363798, + [SMALL_STATE(10376)] = 363808, + [SMALL_STATE(10377)] = 363818, + [SMALL_STATE(10378)] = 363828, + [SMALL_STATE(10379)] = 363836, + [SMALL_STATE(10380)] = 363846, + [SMALL_STATE(10381)] = 363856, + [SMALL_STATE(10382)] = 363866, + [SMALL_STATE(10383)] = 363876, + [SMALL_STATE(10384)] = 363886, + [SMALL_STATE(10385)] = 363896, + [SMALL_STATE(10386)] = 363906, + [SMALL_STATE(10387)] = 363916, + [SMALL_STATE(10388)] = 363926, + [SMALL_STATE(10389)] = 363936, + [SMALL_STATE(10390)] = 363946, + [SMALL_STATE(10391)] = 363956, + [SMALL_STATE(10392)] = 363966, + [SMALL_STATE(10393)] = 363976, + [SMALL_STATE(10394)] = 363986, + [SMALL_STATE(10395)] = 363996, + [SMALL_STATE(10396)] = 364006, + [SMALL_STATE(10397)] = 364016, + [SMALL_STATE(10398)] = 364026, + [SMALL_STATE(10399)] = 364036, + [SMALL_STATE(10400)] = 364046, + [SMALL_STATE(10401)] = 364056, + [SMALL_STATE(10402)] = 364064, + [SMALL_STATE(10403)] = 364072, + [SMALL_STATE(10404)] = 364082, + [SMALL_STATE(10405)] = 364090, + [SMALL_STATE(10406)] = 364100, + [SMALL_STATE(10407)] = 364110, + [SMALL_STATE(10408)] = 364120, + [SMALL_STATE(10409)] = 364130, + [SMALL_STATE(10410)] = 364140, + [SMALL_STATE(10411)] = 364150, + [SMALL_STATE(10412)] = 364160, + [SMALL_STATE(10413)] = 364170, + [SMALL_STATE(10414)] = 364178, + [SMALL_STATE(10415)] = 364188, + [SMALL_STATE(10416)] = 364198, + [SMALL_STATE(10417)] = 364206, + [SMALL_STATE(10418)] = 364216, + [SMALL_STATE(10419)] = 364226, + [SMALL_STATE(10420)] = 364236, + [SMALL_STATE(10421)] = 364246, + [SMALL_STATE(10422)] = 364256, + [SMALL_STATE(10423)] = 364266, + [SMALL_STATE(10424)] = 364276, + [SMALL_STATE(10425)] = 364286, + [SMALL_STATE(10426)] = 364296, + [SMALL_STATE(10427)] = 364306, + [SMALL_STATE(10428)] = 364316, + [SMALL_STATE(10429)] = 364326, + [SMALL_STATE(10430)] = 364336, + [SMALL_STATE(10431)] = 364346, + [SMALL_STATE(10432)] = 364356, + [SMALL_STATE(10433)] = 364366, + [SMALL_STATE(10434)] = 364376, + [SMALL_STATE(10435)] = 364386, + [SMALL_STATE(10436)] = 364396, + [SMALL_STATE(10437)] = 364406, + [SMALL_STATE(10438)] = 364416, + [SMALL_STATE(10439)] = 364426, + [SMALL_STATE(10440)] = 364436, + [SMALL_STATE(10441)] = 364446, + [SMALL_STATE(10442)] = 364456, + [SMALL_STATE(10443)] = 364466, + [SMALL_STATE(10444)] = 364476, + [SMALL_STATE(10445)] = 364486, + [SMALL_STATE(10446)] = 364496, + [SMALL_STATE(10447)] = 364506, + [SMALL_STATE(10448)] = 364516, + [SMALL_STATE(10449)] = 364526, + [SMALL_STATE(10450)] = 364536, + [SMALL_STATE(10451)] = 364546, + [SMALL_STATE(10452)] = 364556, + [SMALL_STATE(10453)] = 364566, + [SMALL_STATE(10454)] = 364576, + [SMALL_STATE(10455)] = 364586, + [SMALL_STATE(10456)] = 364596, + [SMALL_STATE(10457)] = 364606, + [SMALL_STATE(10458)] = 364616, + [SMALL_STATE(10459)] = 364626, + [SMALL_STATE(10460)] = 364636, + [SMALL_STATE(10461)] = 364646, + [SMALL_STATE(10462)] = 364656, + [SMALL_STATE(10463)] = 364666, + [SMALL_STATE(10464)] = 364676, + [SMALL_STATE(10465)] = 364686, + [SMALL_STATE(10466)] = 364696, + [SMALL_STATE(10467)] = 364706, + [SMALL_STATE(10468)] = 364716, + [SMALL_STATE(10469)] = 364724, + [SMALL_STATE(10470)] = 364734, + [SMALL_STATE(10471)] = 364744, + [SMALL_STATE(10472)] = 364754, + [SMALL_STATE(10473)] = 364764, + [SMALL_STATE(10474)] = 364774, + [SMALL_STATE(10475)] = 364784, + [SMALL_STATE(10476)] = 364794, + [SMALL_STATE(10477)] = 364804, + [SMALL_STATE(10478)] = 364814, + [SMALL_STATE(10479)] = 364824, + [SMALL_STATE(10480)] = 364834, + [SMALL_STATE(10481)] = 364844, + [SMALL_STATE(10482)] = 364854, + [SMALL_STATE(10483)] = 364864, + [SMALL_STATE(10484)] = 364874, + [SMALL_STATE(10485)] = 364884, + [SMALL_STATE(10486)] = 364894, + [SMALL_STATE(10487)] = 364904, + [SMALL_STATE(10488)] = 364914, + [SMALL_STATE(10489)] = 364924, + [SMALL_STATE(10490)] = 364932, + [SMALL_STATE(10491)] = 364942, + [SMALL_STATE(10492)] = 364952, + [SMALL_STATE(10493)] = 364962, + [SMALL_STATE(10494)] = 364972, + [SMALL_STATE(10495)] = 364982, + [SMALL_STATE(10496)] = 364992, + [SMALL_STATE(10497)] = 365002, + [SMALL_STATE(10498)] = 365012, + [SMALL_STATE(10499)] = 365020, + [SMALL_STATE(10500)] = 365030, + [SMALL_STATE(10501)] = 365040, + [SMALL_STATE(10502)] = 365050, + [SMALL_STATE(10503)] = 365060, + [SMALL_STATE(10504)] = 365070, + [SMALL_STATE(10505)] = 365080, + [SMALL_STATE(10506)] = 365090, + [SMALL_STATE(10507)] = 365100, + [SMALL_STATE(10508)] = 365110, + [SMALL_STATE(10509)] = 365118, + [SMALL_STATE(10510)] = 365128, + [SMALL_STATE(10511)] = 365138, + [SMALL_STATE(10512)] = 365148, + [SMALL_STATE(10513)] = 365158, + [SMALL_STATE(10514)] = 365168, + [SMALL_STATE(10515)] = 365178, + [SMALL_STATE(10516)] = 365188, + [SMALL_STATE(10517)] = 365198, + [SMALL_STATE(10518)] = 365208, + [SMALL_STATE(10519)] = 365218, + [SMALL_STATE(10520)] = 365228, + [SMALL_STATE(10521)] = 365238, + [SMALL_STATE(10522)] = 365248, + [SMALL_STATE(10523)] = 365258, + [SMALL_STATE(10524)] = 365268, + [SMALL_STATE(10525)] = 365278, + [SMALL_STATE(10526)] = 365286, + [SMALL_STATE(10527)] = 365296, + [SMALL_STATE(10528)] = 365306, + [SMALL_STATE(10529)] = 365316, + [SMALL_STATE(10530)] = 365324, + [SMALL_STATE(10531)] = 365334, + [SMALL_STATE(10532)] = 365344, + [SMALL_STATE(10533)] = 365354, + [SMALL_STATE(10534)] = 365364, + [SMALL_STATE(10535)] = 365374, + [SMALL_STATE(10536)] = 365384, + [SMALL_STATE(10537)] = 365394, + [SMALL_STATE(10538)] = 365402, + [SMALL_STATE(10539)] = 365410, + [SMALL_STATE(10540)] = 365420, + [SMALL_STATE(10541)] = 365428, + [SMALL_STATE(10542)] = 365438, + [SMALL_STATE(10543)] = 365448, + [SMALL_STATE(10544)] = 365458, + [SMALL_STATE(10545)] = 365468, + [SMALL_STATE(10546)] = 365478, + [SMALL_STATE(10547)] = 365488, + [SMALL_STATE(10548)] = 365498, + [SMALL_STATE(10549)] = 365506, + [SMALL_STATE(10550)] = 365516, + [SMALL_STATE(10551)] = 365526, + [SMALL_STATE(10552)] = 365534, + [SMALL_STATE(10553)] = 365544, + [SMALL_STATE(10554)] = 365554, + [SMALL_STATE(10555)] = 365564, + [SMALL_STATE(10556)] = 365574, + [SMALL_STATE(10557)] = 365584, + [SMALL_STATE(10558)] = 365594, + [SMALL_STATE(10559)] = 365604, + [SMALL_STATE(10560)] = 365612, + [SMALL_STATE(10561)] = 365620, + [SMALL_STATE(10562)] = 365630, + [SMALL_STATE(10563)] = 365640, + [SMALL_STATE(10564)] = 365650, + [SMALL_STATE(10565)] = 365660, + [SMALL_STATE(10566)] = 365670, + [SMALL_STATE(10567)] = 365680, + [SMALL_STATE(10568)] = 365690, + [SMALL_STATE(10569)] = 365700, + [SMALL_STATE(10570)] = 365710, + [SMALL_STATE(10571)] = 365720, + [SMALL_STATE(10572)] = 365730, + [SMALL_STATE(10573)] = 365740, + [SMALL_STATE(10574)] = 365748, + [SMALL_STATE(10575)] = 365758, + [SMALL_STATE(10576)] = 365768, + [SMALL_STATE(10577)] = 365778, + [SMALL_STATE(10578)] = 365788, + [SMALL_STATE(10579)] = 365798, + [SMALL_STATE(10580)] = 365806, + [SMALL_STATE(10581)] = 365816, + [SMALL_STATE(10582)] = 365824, + [SMALL_STATE(10583)] = 365834, + [SMALL_STATE(10584)] = 365844, + [SMALL_STATE(10585)] = 365854, + [SMALL_STATE(10586)] = 365862, + [SMALL_STATE(10587)] = 365872, + [SMALL_STATE(10588)] = 365882, + [SMALL_STATE(10589)] = 365892, + [SMALL_STATE(10590)] = 365902, + [SMALL_STATE(10591)] = 365912, + [SMALL_STATE(10592)] = 365922, + [SMALL_STATE(10593)] = 365932, + [SMALL_STATE(10594)] = 365942, + [SMALL_STATE(10595)] = 365952, + [SMALL_STATE(10596)] = 365962, + [SMALL_STATE(10597)] = 365972, + [SMALL_STATE(10598)] = 365982, + [SMALL_STATE(10599)] = 365992, + [SMALL_STATE(10600)] = 366002, + [SMALL_STATE(10601)] = 366012, + [SMALL_STATE(10602)] = 366022, + [SMALL_STATE(10603)] = 366032, + [SMALL_STATE(10604)] = 366042, + [SMALL_STATE(10605)] = 366052, + [SMALL_STATE(10606)] = 366062, + [SMALL_STATE(10607)] = 366072, + [SMALL_STATE(10608)] = 366082, + [SMALL_STATE(10609)] = 366090, + [SMALL_STATE(10610)] = 366100, + [SMALL_STATE(10611)] = 366110, + [SMALL_STATE(10612)] = 366120, + [SMALL_STATE(10613)] = 366130, + [SMALL_STATE(10614)] = 366140, + [SMALL_STATE(10615)] = 366150, + [SMALL_STATE(10616)] = 366160, + [SMALL_STATE(10617)] = 366170, + [SMALL_STATE(10618)] = 366180, + [SMALL_STATE(10619)] = 366190, + [SMALL_STATE(10620)] = 366200, + [SMALL_STATE(10621)] = 366210, + [SMALL_STATE(10622)] = 366217, + [SMALL_STATE(10623)] = 366224, + [SMALL_STATE(10624)] = 366231, + [SMALL_STATE(10625)] = 366238, + [SMALL_STATE(10626)] = 366245, + [SMALL_STATE(10627)] = 366252, + [SMALL_STATE(10628)] = 366259, + [SMALL_STATE(10629)] = 366266, + [SMALL_STATE(10630)] = 366273, + [SMALL_STATE(10631)] = 366280, + [SMALL_STATE(10632)] = 366287, + [SMALL_STATE(10633)] = 366294, + [SMALL_STATE(10634)] = 366301, + [SMALL_STATE(10635)] = 366308, + [SMALL_STATE(10636)] = 366315, + [SMALL_STATE(10637)] = 366322, + [SMALL_STATE(10638)] = 366329, + [SMALL_STATE(10639)] = 366336, + [SMALL_STATE(10640)] = 366343, + [SMALL_STATE(10641)] = 366350, + [SMALL_STATE(10642)] = 366357, + [SMALL_STATE(10643)] = 366364, + [SMALL_STATE(10644)] = 366371, + [SMALL_STATE(10645)] = 366378, + [SMALL_STATE(10646)] = 366385, + [SMALL_STATE(10647)] = 366392, + [SMALL_STATE(10648)] = 366399, + [SMALL_STATE(10649)] = 366406, + [SMALL_STATE(10650)] = 366413, + [SMALL_STATE(10651)] = 366420, + [SMALL_STATE(10652)] = 366427, + [SMALL_STATE(10653)] = 366434, + [SMALL_STATE(10654)] = 366441, + [SMALL_STATE(10655)] = 366448, + [SMALL_STATE(10656)] = 366455, + [SMALL_STATE(10657)] = 366462, + [SMALL_STATE(10658)] = 366469, + [SMALL_STATE(10659)] = 366476, + [SMALL_STATE(10660)] = 366483, + [SMALL_STATE(10661)] = 366490, + [SMALL_STATE(10662)] = 366497, + [SMALL_STATE(10663)] = 366504, + [SMALL_STATE(10664)] = 366511, + [SMALL_STATE(10665)] = 366518, + [SMALL_STATE(10666)] = 366525, + [SMALL_STATE(10667)] = 366532, + [SMALL_STATE(10668)] = 366539, + [SMALL_STATE(10669)] = 366546, + [SMALL_STATE(10670)] = 366553, + [SMALL_STATE(10671)] = 366560, + [SMALL_STATE(10672)] = 366567, + [SMALL_STATE(10673)] = 366574, + [SMALL_STATE(10674)] = 366581, + [SMALL_STATE(10675)] = 366588, + [SMALL_STATE(10676)] = 366595, + [SMALL_STATE(10677)] = 366602, + [SMALL_STATE(10678)] = 366609, + [SMALL_STATE(10679)] = 366616, + [SMALL_STATE(10680)] = 366623, + [SMALL_STATE(10681)] = 366630, + [SMALL_STATE(10682)] = 366637, + [SMALL_STATE(10683)] = 366644, + [SMALL_STATE(10684)] = 366651, + [SMALL_STATE(10685)] = 366658, + [SMALL_STATE(10686)] = 366665, + [SMALL_STATE(10687)] = 366672, + [SMALL_STATE(10688)] = 366679, + [SMALL_STATE(10689)] = 366686, + [SMALL_STATE(10690)] = 366693, + [SMALL_STATE(10691)] = 366700, + [SMALL_STATE(10692)] = 366707, + [SMALL_STATE(10693)] = 366714, + [SMALL_STATE(10694)] = 366721, + [SMALL_STATE(10695)] = 366728, + [SMALL_STATE(10696)] = 366735, + [SMALL_STATE(10697)] = 366742, + [SMALL_STATE(10698)] = 366749, + [SMALL_STATE(10699)] = 366756, + [SMALL_STATE(10700)] = 366763, + [SMALL_STATE(10701)] = 366770, + [SMALL_STATE(10702)] = 366777, + [SMALL_STATE(10703)] = 366784, + [SMALL_STATE(10704)] = 366791, + [SMALL_STATE(10705)] = 366798, + [SMALL_STATE(10706)] = 366805, + [SMALL_STATE(10707)] = 366812, + [SMALL_STATE(10708)] = 366819, + [SMALL_STATE(10709)] = 366826, + [SMALL_STATE(10710)] = 366833, + [SMALL_STATE(10711)] = 366840, + [SMALL_STATE(10712)] = 366847, + [SMALL_STATE(10713)] = 366854, + [SMALL_STATE(10714)] = 366861, + [SMALL_STATE(10715)] = 366868, + [SMALL_STATE(10716)] = 366875, + [SMALL_STATE(10717)] = 366882, + [SMALL_STATE(10718)] = 366889, + [SMALL_STATE(10719)] = 366896, + [SMALL_STATE(10720)] = 366903, + [SMALL_STATE(10721)] = 366910, + [SMALL_STATE(10722)] = 366917, + [SMALL_STATE(10723)] = 366924, + [SMALL_STATE(10724)] = 366931, + [SMALL_STATE(10725)] = 366938, + [SMALL_STATE(10726)] = 366945, + [SMALL_STATE(10727)] = 366952, + [SMALL_STATE(10728)] = 366959, + [SMALL_STATE(10729)] = 366966, + [SMALL_STATE(10730)] = 366973, + [SMALL_STATE(10731)] = 366980, + [SMALL_STATE(10732)] = 366987, + [SMALL_STATE(10733)] = 366994, + [SMALL_STATE(10734)] = 367001, + [SMALL_STATE(10735)] = 367008, + [SMALL_STATE(10736)] = 367015, + [SMALL_STATE(10737)] = 367022, + [SMALL_STATE(10738)] = 367029, + [SMALL_STATE(10739)] = 367036, + [SMALL_STATE(10740)] = 367043, + [SMALL_STATE(10741)] = 367050, + [SMALL_STATE(10742)] = 367057, + [SMALL_STATE(10743)] = 367064, + [SMALL_STATE(10744)] = 367071, + [SMALL_STATE(10745)] = 367078, + [SMALL_STATE(10746)] = 367085, + [SMALL_STATE(10747)] = 367092, + [SMALL_STATE(10748)] = 367099, + [SMALL_STATE(10749)] = 367106, + [SMALL_STATE(10750)] = 367113, + [SMALL_STATE(10751)] = 367120, + [SMALL_STATE(10752)] = 367127, + [SMALL_STATE(10753)] = 367134, + [SMALL_STATE(10754)] = 367141, + [SMALL_STATE(10755)] = 367148, + [SMALL_STATE(10756)] = 367155, + [SMALL_STATE(10757)] = 367162, + [SMALL_STATE(10758)] = 367169, + [SMALL_STATE(10759)] = 367176, + [SMALL_STATE(10760)] = 367183, + [SMALL_STATE(10761)] = 367190, + [SMALL_STATE(10762)] = 367197, + [SMALL_STATE(10763)] = 367204, + [SMALL_STATE(10764)] = 367211, + [SMALL_STATE(10765)] = 367218, + [SMALL_STATE(10766)] = 367225, + [SMALL_STATE(10767)] = 367232, + [SMALL_STATE(10768)] = 367239, + [SMALL_STATE(10769)] = 367246, + [SMALL_STATE(10770)] = 367253, + [SMALL_STATE(10771)] = 367260, + [SMALL_STATE(10772)] = 367267, + [SMALL_STATE(10773)] = 367274, + [SMALL_STATE(10774)] = 367281, + [SMALL_STATE(10775)] = 367288, + [SMALL_STATE(10776)] = 367295, + [SMALL_STATE(10777)] = 367302, + [SMALL_STATE(10778)] = 367309, + [SMALL_STATE(10779)] = 367316, + [SMALL_STATE(10780)] = 367323, + [SMALL_STATE(10781)] = 367330, + [SMALL_STATE(10782)] = 367337, + [SMALL_STATE(10783)] = 367344, + [SMALL_STATE(10784)] = 367351, + [SMALL_STATE(10785)] = 367358, + [SMALL_STATE(10786)] = 367365, + [SMALL_STATE(10787)] = 367372, + [SMALL_STATE(10788)] = 367379, + [SMALL_STATE(10789)] = 367386, + [SMALL_STATE(10790)] = 367393, + [SMALL_STATE(10791)] = 367400, + [SMALL_STATE(10792)] = 367407, + [SMALL_STATE(10793)] = 367414, + [SMALL_STATE(10794)] = 367421, + [SMALL_STATE(10795)] = 367428, + [SMALL_STATE(10796)] = 367435, + [SMALL_STATE(10797)] = 367442, + [SMALL_STATE(10798)] = 367449, + [SMALL_STATE(10799)] = 367456, + [SMALL_STATE(10800)] = 367463, + [SMALL_STATE(10801)] = 367470, + [SMALL_STATE(10802)] = 367477, + [SMALL_STATE(10803)] = 367484, + [SMALL_STATE(10804)] = 367491, + [SMALL_STATE(10805)] = 367498, + [SMALL_STATE(10806)] = 367505, + [SMALL_STATE(10807)] = 367512, + [SMALL_STATE(10808)] = 367519, + [SMALL_STATE(10809)] = 367526, + [SMALL_STATE(10810)] = 367533, + [SMALL_STATE(10811)] = 367540, + [SMALL_STATE(10812)] = 367547, + [SMALL_STATE(10813)] = 367554, + [SMALL_STATE(10814)] = 367561, + [SMALL_STATE(10815)] = 367568, + [SMALL_STATE(10816)] = 367575, + [SMALL_STATE(10817)] = 367582, + [SMALL_STATE(10818)] = 367589, + [SMALL_STATE(10819)] = 367596, + [SMALL_STATE(10820)] = 367603, + [SMALL_STATE(10821)] = 367610, + [SMALL_STATE(10822)] = 367617, + [SMALL_STATE(10823)] = 367624, + [SMALL_STATE(10824)] = 367631, + [SMALL_STATE(10825)] = 367638, + [SMALL_STATE(10826)] = 367645, + [SMALL_STATE(10827)] = 367652, + [SMALL_STATE(10828)] = 367659, + [SMALL_STATE(10829)] = 367666, + [SMALL_STATE(10830)] = 367673, + [SMALL_STATE(10831)] = 367680, + [SMALL_STATE(10832)] = 367687, + [SMALL_STATE(10833)] = 367694, + [SMALL_STATE(10834)] = 367701, + [SMALL_STATE(10835)] = 367708, + [SMALL_STATE(10836)] = 367715, + [SMALL_STATE(10837)] = 367722, + [SMALL_STATE(10838)] = 367729, + [SMALL_STATE(10839)] = 367736, + [SMALL_STATE(10840)] = 367743, + [SMALL_STATE(10841)] = 367750, + [SMALL_STATE(10842)] = 367757, + [SMALL_STATE(10843)] = 367764, + [SMALL_STATE(10844)] = 367771, + [SMALL_STATE(10845)] = 367778, + [SMALL_STATE(10846)] = 367785, + [SMALL_STATE(10847)] = 367792, + [SMALL_STATE(10848)] = 367799, + [SMALL_STATE(10849)] = 367806, + [SMALL_STATE(10850)] = 367813, + [SMALL_STATE(10851)] = 367820, + [SMALL_STATE(10852)] = 367827, + [SMALL_STATE(10853)] = 367834, + [SMALL_STATE(10854)] = 367841, + [SMALL_STATE(10855)] = 367848, + [SMALL_STATE(10856)] = 367855, + [SMALL_STATE(10857)] = 367862, + [SMALL_STATE(10858)] = 367869, + [SMALL_STATE(10859)] = 367876, + [SMALL_STATE(10860)] = 367883, + [SMALL_STATE(10861)] = 367890, + [SMALL_STATE(10862)] = 367897, + [SMALL_STATE(10863)] = 367904, + [SMALL_STATE(10864)] = 367911, + [SMALL_STATE(10865)] = 367918, + [SMALL_STATE(10866)] = 367925, + [SMALL_STATE(10867)] = 367932, + [SMALL_STATE(10868)] = 367939, + [SMALL_STATE(10869)] = 367946, + [SMALL_STATE(10870)] = 367953, + [SMALL_STATE(10871)] = 367960, + [SMALL_STATE(10872)] = 367967, + [SMALL_STATE(10873)] = 367974, + [SMALL_STATE(10874)] = 367981, + [SMALL_STATE(10875)] = 367988, + [SMALL_STATE(10876)] = 367995, + [SMALL_STATE(10877)] = 368002, + [SMALL_STATE(10878)] = 368009, + [SMALL_STATE(10879)] = 368016, + [SMALL_STATE(10880)] = 368023, + [SMALL_STATE(10881)] = 368030, + [SMALL_STATE(10882)] = 368037, + [SMALL_STATE(10883)] = 368044, + [SMALL_STATE(10884)] = 368051, + [SMALL_STATE(10885)] = 368058, + [SMALL_STATE(10886)] = 368065, + [SMALL_STATE(10887)] = 368072, + [SMALL_STATE(10888)] = 368079, + [SMALL_STATE(10889)] = 368086, + [SMALL_STATE(10890)] = 368093, + [SMALL_STATE(10891)] = 368100, + [SMALL_STATE(10892)] = 368107, + [SMALL_STATE(10893)] = 368114, + [SMALL_STATE(10894)] = 368121, + [SMALL_STATE(10895)] = 368128, + [SMALL_STATE(10896)] = 368135, + [SMALL_STATE(10897)] = 368142, + [SMALL_STATE(10898)] = 368149, + [SMALL_STATE(10899)] = 368156, + [SMALL_STATE(10900)] = 368163, + [SMALL_STATE(10901)] = 368170, + [SMALL_STATE(10902)] = 368177, + [SMALL_STATE(10903)] = 368184, + [SMALL_STATE(10904)] = 368191, + [SMALL_STATE(10905)] = 368198, + [SMALL_STATE(10906)] = 368205, + [SMALL_STATE(10907)] = 368212, + [SMALL_STATE(10908)] = 368219, + [SMALL_STATE(10909)] = 368226, + [SMALL_STATE(10910)] = 368233, + [SMALL_STATE(10911)] = 368240, + [SMALL_STATE(10912)] = 368247, + [SMALL_STATE(10913)] = 368254, + [SMALL_STATE(10914)] = 368261, + [SMALL_STATE(10915)] = 368268, + [SMALL_STATE(10916)] = 368275, + [SMALL_STATE(10917)] = 368282, + [SMALL_STATE(10918)] = 368289, + [SMALL_STATE(10919)] = 368296, + [SMALL_STATE(10920)] = 368303, + [SMALL_STATE(10921)] = 368310, + [SMALL_STATE(10922)] = 368317, + [SMALL_STATE(10923)] = 368324, + [SMALL_STATE(10924)] = 368331, + [SMALL_STATE(10925)] = 368338, + [SMALL_STATE(10926)] = 368345, + [SMALL_STATE(10927)] = 368352, + [SMALL_STATE(10928)] = 368359, + [SMALL_STATE(10929)] = 368366, + [SMALL_STATE(10930)] = 368373, + [SMALL_STATE(10931)] = 368380, + [SMALL_STATE(10932)] = 368387, + [SMALL_STATE(10933)] = 368394, + [SMALL_STATE(10934)] = 368401, + [SMALL_STATE(10935)] = 368408, + [SMALL_STATE(10936)] = 368415, + [SMALL_STATE(10937)] = 368422, + [SMALL_STATE(10938)] = 368429, + [SMALL_STATE(10939)] = 368436, + [SMALL_STATE(10940)] = 368443, + [SMALL_STATE(10941)] = 368450, + [SMALL_STATE(10942)] = 368457, + [SMALL_STATE(10943)] = 368464, + [SMALL_STATE(10944)] = 368471, + [SMALL_STATE(10945)] = 368478, + [SMALL_STATE(10946)] = 368485, + [SMALL_STATE(10947)] = 368492, + [SMALL_STATE(10948)] = 368499, + [SMALL_STATE(10949)] = 368506, + [SMALL_STATE(10950)] = 368513, + [SMALL_STATE(10951)] = 368520, + [SMALL_STATE(10952)] = 368527, + [SMALL_STATE(10953)] = 368534, + [SMALL_STATE(10954)] = 368541, + [SMALL_STATE(10955)] = 368548, + [SMALL_STATE(10956)] = 368555, + [SMALL_STATE(10957)] = 368562, + [SMALL_STATE(10958)] = 368569, + [SMALL_STATE(10959)] = 368576, + [SMALL_STATE(10960)] = 368583, + [SMALL_STATE(10961)] = 368590, + [SMALL_STATE(10962)] = 368597, + [SMALL_STATE(10963)] = 368604, + [SMALL_STATE(10964)] = 368611, + [SMALL_STATE(10965)] = 368618, + [SMALL_STATE(10966)] = 368625, + [SMALL_STATE(10967)] = 368632, + [SMALL_STATE(10968)] = 368639, + [SMALL_STATE(10969)] = 368646, + [SMALL_STATE(10970)] = 368653, + [SMALL_STATE(10971)] = 368660, + [SMALL_STATE(10972)] = 368667, + [SMALL_STATE(10973)] = 368674, + [SMALL_STATE(10974)] = 368681, + [SMALL_STATE(10975)] = 368688, + [SMALL_STATE(10976)] = 368695, + [SMALL_STATE(10977)] = 368702, + [SMALL_STATE(10978)] = 368709, + [SMALL_STATE(10979)] = 368716, + [SMALL_STATE(10980)] = 368723, + [SMALL_STATE(10981)] = 368730, + [SMALL_STATE(10982)] = 368737, + [SMALL_STATE(10983)] = 368744, + [SMALL_STATE(10984)] = 368751, + [SMALL_STATE(10985)] = 368758, + [SMALL_STATE(10986)] = 368765, + [SMALL_STATE(10987)] = 368772, + [SMALL_STATE(10988)] = 368779, + [SMALL_STATE(10989)] = 368786, + [SMALL_STATE(10990)] = 368793, + [SMALL_STATE(10991)] = 368800, + [SMALL_STATE(10992)] = 368807, + [SMALL_STATE(10993)] = 368814, + [SMALL_STATE(10994)] = 368821, + [SMALL_STATE(10995)] = 368828, + [SMALL_STATE(10996)] = 368835, + [SMALL_STATE(10997)] = 368842, + [SMALL_STATE(10998)] = 368849, + [SMALL_STATE(10999)] = 368856, + [SMALL_STATE(11000)] = 368863, + [SMALL_STATE(11001)] = 368870, + [SMALL_STATE(11002)] = 368877, + [SMALL_STATE(11003)] = 368884, + [SMALL_STATE(11004)] = 368891, + [SMALL_STATE(11005)] = 368898, + [SMALL_STATE(11006)] = 368905, + [SMALL_STATE(11007)] = 368912, + [SMALL_STATE(11008)] = 368919, + [SMALL_STATE(11009)] = 368926, + [SMALL_STATE(11010)] = 368933, + [SMALL_STATE(11011)] = 368940, + [SMALL_STATE(11012)] = 368947, + [SMALL_STATE(11013)] = 368954, + [SMALL_STATE(11014)] = 368961, + [SMALL_STATE(11015)] = 368968, + [SMALL_STATE(11016)] = 368975, + [SMALL_STATE(11017)] = 368982, + [SMALL_STATE(11018)] = 368989, + [SMALL_STATE(11019)] = 368996, + [SMALL_STATE(11020)] = 369003, + [SMALL_STATE(11021)] = 369010, + [SMALL_STATE(11022)] = 369017, + [SMALL_STATE(11023)] = 369024, + [SMALL_STATE(11024)] = 369031, + [SMALL_STATE(11025)] = 369038, + [SMALL_STATE(11026)] = 369045, + [SMALL_STATE(11027)] = 369052, + [SMALL_STATE(11028)] = 369059, + [SMALL_STATE(11029)] = 369066, + [SMALL_STATE(11030)] = 369073, + [SMALL_STATE(11031)] = 369080, + [SMALL_STATE(11032)] = 369087, + [SMALL_STATE(11033)] = 369094, + [SMALL_STATE(11034)] = 369101, + [SMALL_STATE(11035)] = 369108, + [SMALL_STATE(11036)] = 369115, + [SMALL_STATE(11037)] = 369122, + [SMALL_STATE(11038)] = 369129, + [SMALL_STATE(11039)] = 369136, + [SMALL_STATE(11040)] = 369143, + [SMALL_STATE(11041)] = 369150, + [SMALL_STATE(11042)] = 369157, + [SMALL_STATE(11043)] = 369164, + [SMALL_STATE(11044)] = 369171, + [SMALL_STATE(11045)] = 369178, + [SMALL_STATE(11046)] = 369185, + [SMALL_STATE(11047)] = 369192, + [SMALL_STATE(11048)] = 369199, + [SMALL_STATE(11049)] = 369206, + [SMALL_STATE(11050)] = 369213, + [SMALL_STATE(11051)] = 369220, + [SMALL_STATE(11052)] = 369227, + [SMALL_STATE(11053)] = 369234, + [SMALL_STATE(11054)] = 369241, + [SMALL_STATE(11055)] = 369248, + [SMALL_STATE(11056)] = 369255, + [SMALL_STATE(11057)] = 369262, + [SMALL_STATE(11058)] = 369269, + [SMALL_STATE(11059)] = 369276, + [SMALL_STATE(11060)] = 369283, + [SMALL_STATE(11061)] = 369290, + [SMALL_STATE(11062)] = 369297, + [SMALL_STATE(11063)] = 369304, + [SMALL_STATE(11064)] = 369311, + [SMALL_STATE(11065)] = 369318, + [SMALL_STATE(11066)] = 369325, + [SMALL_STATE(11067)] = 369332, + [SMALL_STATE(11068)] = 369339, + [SMALL_STATE(11069)] = 369346, + [SMALL_STATE(11070)] = 369353, + [SMALL_STATE(11071)] = 369360, + [SMALL_STATE(11072)] = 369367, + [SMALL_STATE(11073)] = 369374, + [SMALL_STATE(11074)] = 369381, + [SMALL_STATE(11075)] = 369388, + [SMALL_STATE(11076)] = 369395, + [SMALL_STATE(11077)] = 369402, + [SMALL_STATE(11078)] = 369409, + [SMALL_STATE(11079)] = 369416, + [SMALL_STATE(11080)] = 369423, + [SMALL_STATE(11081)] = 369430, + [SMALL_STATE(11082)] = 369437, + [SMALL_STATE(11083)] = 369444, + [SMALL_STATE(11084)] = 369451, + [SMALL_STATE(11085)] = 369458, + [SMALL_STATE(11086)] = 369465, + [SMALL_STATE(11087)] = 369472, + [SMALL_STATE(11088)] = 369479, + [SMALL_STATE(11089)] = 369486, + [SMALL_STATE(11090)] = 369493, + [SMALL_STATE(11091)] = 369500, + [SMALL_STATE(11092)] = 369507, + [SMALL_STATE(11093)] = 369514, + [SMALL_STATE(11094)] = 369521, + [SMALL_STATE(11095)] = 369528, + [SMALL_STATE(11096)] = 369535, + [SMALL_STATE(11097)] = 369542, + [SMALL_STATE(11098)] = 369549, + [SMALL_STATE(11099)] = 369556, + [SMALL_STATE(11100)] = 369563, + [SMALL_STATE(11101)] = 369570, + [SMALL_STATE(11102)] = 369577, + [SMALL_STATE(11103)] = 369584, + [SMALL_STATE(11104)] = 369591, + [SMALL_STATE(11105)] = 369598, + [SMALL_STATE(11106)] = 369605, + [SMALL_STATE(11107)] = 369612, + [SMALL_STATE(11108)] = 369619, + [SMALL_STATE(11109)] = 369626, + [SMALL_STATE(11110)] = 369633, + [SMALL_STATE(11111)] = 369640, + [SMALL_STATE(11112)] = 369647, + [SMALL_STATE(11113)] = 369654, + [SMALL_STATE(11114)] = 369661, + [SMALL_STATE(11115)] = 369668, + [SMALL_STATE(11116)] = 369675, + [SMALL_STATE(11117)] = 369682, + [SMALL_STATE(11118)] = 369689, + [SMALL_STATE(11119)] = 369696, + [SMALL_STATE(11120)] = 369703, + [SMALL_STATE(11121)] = 369710, + [SMALL_STATE(11122)] = 369717, + [SMALL_STATE(11123)] = 369724, + [SMALL_STATE(11124)] = 369731, + [SMALL_STATE(11125)] = 369738, + [SMALL_STATE(11126)] = 369745, + [SMALL_STATE(11127)] = 369752, + [SMALL_STATE(11128)] = 369759, + [SMALL_STATE(11129)] = 369766, + [SMALL_STATE(11130)] = 369773, + [SMALL_STATE(11131)] = 369780, + [SMALL_STATE(11132)] = 369787, + [SMALL_STATE(11133)] = 369794, + [SMALL_STATE(11134)] = 369801, + [SMALL_STATE(11135)] = 369808, + [SMALL_STATE(11136)] = 369815, + [SMALL_STATE(11137)] = 369822, + [SMALL_STATE(11138)] = 369829, + [SMALL_STATE(11139)] = 369836, + [SMALL_STATE(11140)] = 369843, + [SMALL_STATE(11141)] = 369850, + [SMALL_STATE(11142)] = 369857, + [SMALL_STATE(11143)] = 369864, + [SMALL_STATE(11144)] = 369871, + [SMALL_STATE(11145)] = 369878, + [SMALL_STATE(11146)] = 369885, + [SMALL_STATE(11147)] = 369892, + [SMALL_STATE(11148)] = 369899, + [SMALL_STATE(11149)] = 369906, + [SMALL_STATE(11150)] = 369913, + [SMALL_STATE(11151)] = 369920, + [SMALL_STATE(11152)] = 369927, + [SMALL_STATE(11153)] = 369934, + [SMALL_STATE(11154)] = 369941, + [SMALL_STATE(11155)] = 369948, + [SMALL_STATE(11156)] = 369955, + [SMALL_STATE(11157)] = 369962, + [SMALL_STATE(11158)] = 369969, + [SMALL_STATE(11159)] = 369976, + [SMALL_STATE(11160)] = 369983, + [SMALL_STATE(11161)] = 369990, + [SMALL_STATE(11162)] = 369997, + [SMALL_STATE(11163)] = 370004, + [SMALL_STATE(11164)] = 370011, + [SMALL_STATE(11165)] = 370018, + [SMALL_STATE(11166)] = 370025, + [SMALL_STATE(11167)] = 370032, + [SMALL_STATE(11168)] = 370039, + [SMALL_STATE(11169)] = 370046, + [SMALL_STATE(11170)] = 370053, + [SMALL_STATE(11171)] = 370060, + [SMALL_STATE(11172)] = 370067, + [SMALL_STATE(11173)] = 370074, + [SMALL_STATE(11174)] = 370081, + [SMALL_STATE(11175)] = 370088, + [SMALL_STATE(11176)] = 370095, + [SMALL_STATE(11177)] = 370102, + [SMALL_STATE(11178)] = 370109, + [SMALL_STATE(11179)] = 370116, + [SMALL_STATE(11180)] = 370123, + [SMALL_STATE(11181)] = 370130, + [SMALL_STATE(11182)] = 370137, + [SMALL_STATE(11183)] = 370144, + [SMALL_STATE(11184)] = 370151, + [SMALL_STATE(11185)] = 370158, + [SMALL_STATE(11186)] = 370165, + [SMALL_STATE(11187)] = 370172, + [SMALL_STATE(11188)] = 370179, + [SMALL_STATE(11189)] = 370186, + [SMALL_STATE(11190)] = 370193, + [SMALL_STATE(11191)] = 370200, + [SMALL_STATE(11192)] = 370207, + [SMALL_STATE(11193)] = 370214, + [SMALL_STATE(11194)] = 370221, + [SMALL_STATE(11195)] = 370228, + [SMALL_STATE(11196)] = 370235, + [SMALL_STATE(11197)] = 370242, + [SMALL_STATE(11198)] = 370249, + [SMALL_STATE(11199)] = 370256, + [SMALL_STATE(11200)] = 370263, + [SMALL_STATE(11201)] = 370270, + [SMALL_STATE(11202)] = 370277, + [SMALL_STATE(11203)] = 370284, + [SMALL_STATE(11204)] = 370291, + [SMALL_STATE(11205)] = 370298, + [SMALL_STATE(11206)] = 370305, + [SMALL_STATE(11207)] = 370312, + [SMALL_STATE(11208)] = 370319, + [SMALL_STATE(11209)] = 370326, + [SMALL_STATE(11210)] = 370333, + [SMALL_STATE(11211)] = 370340, + [SMALL_STATE(11212)] = 370347, + [SMALL_STATE(11213)] = 370354, + [SMALL_STATE(11214)] = 370361, + [SMALL_STATE(11215)] = 370368, + [SMALL_STATE(11216)] = 370375, + [SMALL_STATE(11217)] = 370382, + [SMALL_STATE(11218)] = 370389, + [SMALL_STATE(11219)] = 370396, + [SMALL_STATE(11220)] = 370403, + [SMALL_STATE(11221)] = 370410, + [SMALL_STATE(11222)] = 370417, + [SMALL_STATE(11223)] = 370424, + [SMALL_STATE(11224)] = 370431, + [SMALL_STATE(11225)] = 370438, + [SMALL_STATE(11226)] = 370445, + [SMALL_STATE(11227)] = 370452, + [SMALL_STATE(11228)] = 370459, + [SMALL_STATE(11229)] = 370466, + [SMALL_STATE(11230)] = 370473, + [SMALL_STATE(11231)] = 370480, + [SMALL_STATE(11232)] = 370487, + [SMALL_STATE(11233)] = 370494, + [SMALL_STATE(11234)] = 370501, + [SMALL_STATE(11235)] = 370508, + [SMALL_STATE(11236)] = 370515, + [SMALL_STATE(11237)] = 370522, + [SMALL_STATE(11238)] = 370529, + [SMALL_STATE(11239)] = 370536, + [SMALL_STATE(11240)] = 370543, + [SMALL_STATE(11241)] = 370550, + [SMALL_STATE(11242)] = 370557, + [SMALL_STATE(11243)] = 370564, + [SMALL_STATE(11244)] = 370571, + [SMALL_STATE(11245)] = 370578, + [SMALL_STATE(11246)] = 370585, + [SMALL_STATE(11247)] = 370592, + [SMALL_STATE(11248)] = 370599, + [SMALL_STATE(11249)] = 370606, + [SMALL_STATE(11250)] = 370613, + [SMALL_STATE(11251)] = 370620, + [SMALL_STATE(11252)] = 370627, + [SMALL_STATE(11253)] = 370634, + [SMALL_STATE(11254)] = 370641, + [SMALL_STATE(11255)] = 370648, + [SMALL_STATE(11256)] = 370655, + [SMALL_STATE(11257)] = 370662, + [SMALL_STATE(11258)] = 370669, + [SMALL_STATE(11259)] = 370676, + [SMALL_STATE(11260)] = 370683, + [SMALL_STATE(11261)] = 370690, + [SMALL_STATE(11262)] = 370697, + [SMALL_STATE(11263)] = 370704, + [SMALL_STATE(11264)] = 370711, + [SMALL_STATE(11265)] = 370718, + [SMALL_STATE(11266)] = 370725, + [SMALL_STATE(11267)] = 370732, + [SMALL_STATE(11268)] = 370739, + [SMALL_STATE(11269)] = 370746, + [SMALL_STATE(11270)] = 370753, + [SMALL_STATE(11271)] = 370760, + [SMALL_STATE(11272)] = 370767, + [SMALL_STATE(11273)] = 370774, + [SMALL_STATE(11274)] = 370781, + [SMALL_STATE(11275)] = 370788, + [SMALL_STATE(11276)] = 370795, + [SMALL_STATE(11277)] = 370802, + [SMALL_STATE(11278)] = 370809, + [SMALL_STATE(11279)] = 370816, + [SMALL_STATE(11280)] = 370823, + [SMALL_STATE(11281)] = 370830, + [SMALL_STATE(11282)] = 370837, + [SMALL_STATE(11283)] = 370844, + [SMALL_STATE(11284)] = 370851, + [SMALL_STATE(11285)] = 370858, + [SMALL_STATE(11286)] = 370865, + [SMALL_STATE(11287)] = 370872, + [SMALL_STATE(11288)] = 370879, + [SMALL_STATE(11289)] = 370886, + [SMALL_STATE(11290)] = 370893, + [SMALL_STATE(11291)] = 370900, + [SMALL_STATE(11292)] = 370907, + [SMALL_STATE(11293)] = 370914, + [SMALL_STATE(11294)] = 370921, + [SMALL_STATE(11295)] = 370928, + [SMALL_STATE(11296)] = 370935, + [SMALL_STATE(11297)] = 370942, + [SMALL_STATE(11298)] = 370949, + [SMALL_STATE(11299)] = 370956, + [SMALL_STATE(11300)] = 370963, + [SMALL_STATE(11301)] = 370970, + [SMALL_STATE(11302)] = 370977, + [SMALL_STATE(11303)] = 370984, + [SMALL_STATE(11304)] = 370991, + [SMALL_STATE(11305)] = 370998, + [SMALL_STATE(11306)] = 371005, + [SMALL_STATE(11307)] = 371012, + [SMALL_STATE(11308)] = 371019, + [SMALL_STATE(11309)] = 371026, + [SMALL_STATE(11310)] = 371033, + [SMALL_STATE(11311)] = 371040, + [SMALL_STATE(11312)] = 371047, + [SMALL_STATE(11313)] = 371054, + [SMALL_STATE(11314)] = 371061, + [SMALL_STATE(11315)] = 371068, + [SMALL_STATE(11316)] = 371075, + [SMALL_STATE(11317)] = 371082, + [SMALL_STATE(11318)] = 371089, + [SMALL_STATE(11319)] = 371096, + [SMALL_STATE(11320)] = 371103, + [SMALL_STATE(11321)] = 371110, + [SMALL_STATE(11322)] = 371117, + [SMALL_STATE(11323)] = 371124, + [SMALL_STATE(11324)] = 371131, + [SMALL_STATE(11325)] = 371138, + [SMALL_STATE(11326)] = 371145, + [SMALL_STATE(11327)] = 371152, + [SMALL_STATE(11328)] = 371159, + [SMALL_STATE(11329)] = 371166, + [SMALL_STATE(11330)] = 371173, + [SMALL_STATE(11331)] = 371180, + [SMALL_STATE(11332)] = 371187, + [SMALL_STATE(11333)] = 371194, + [SMALL_STATE(11334)] = 371201, + [SMALL_STATE(11335)] = 371208, + [SMALL_STATE(11336)] = 371215, + [SMALL_STATE(11337)] = 371222, + [SMALL_STATE(11338)] = 371229, + [SMALL_STATE(11339)] = 371236, + [SMALL_STATE(11340)] = 371243, + [SMALL_STATE(11341)] = 371250, + [SMALL_STATE(11342)] = 371257, + [SMALL_STATE(11343)] = 371264, + [SMALL_STATE(11344)] = 371271, + [SMALL_STATE(11345)] = 371278, + [SMALL_STATE(11346)] = 371285, + [SMALL_STATE(11347)] = 371292, + [SMALL_STATE(11348)] = 371299, + [SMALL_STATE(11349)] = 371306, + [SMALL_STATE(11350)] = 371313, + [SMALL_STATE(11351)] = 371320, + [SMALL_STATE(11352)] = 371327, + [SMALL_STATE(11353)] = 371334, + [SMALL_STATE(11354)] = 371341, + [SMALL_STATE(11355)] = 371348, + [SMALL_STATE(11356)] = 371355, + [SMALL_STATE(11357)] = 371362, + [SMALL_STATE(11358)] = 371369, + [SMALL_STATE(11359)] = 371376, + [SMALL_STATE(11360)] = 371383, + [SMALL_STATE(11361)] = 371390, + [SMALL_STATE(11362)] = 371397, + [SMALL_STATE(11363)] = 371404, + [SMALL_STATE(11364)] = 371411, + [SMALL_STATE(11365)] = 371418, + [SMALL_STATE(11366)] = 371425, + [SMALL_STATE(11367)] = 371432, + [SMALL_STATE(11368)] = 371439, + [SMALL_STATE(11369)] = 371446, + [SMALL_STATE(11370)] = 371453, + [SMALL_STATE(11371)] = 371460, + [SMALL_STATE(11372)] = 371467, + [SMALL_STATE(11373)] = 371474, + [SMALL_STATE(11374)] = 371481, + [SMALL_STATE(11375)] = 371488, + [SMALL_STATE(11376)] = 371495, + [SMALL_STATE(11377)] = 371502, + [SMALL_STATE(11378)] = 371509, + [SMALL_STATE(11379)] = 371516, + [SMALL_STATE(11380)] = 371523, + [SMALL_STATE(11381)] = 371530, + [SMALL_STATE(11382)] = 371537, + [SMALL_STATE(11383)] = 371544, + [SMALL_STATE(11384)] = 371551, + [SMALL_STATE(11385)] = 371558, + [SMALL_STATE(11386)] = 371565, + [SMALL_STATE(11387)] = 371572, + [SMALL_STATE(11388)] = 371579, + [SMALL_STATE(11389)] = 371586, + [SMALL_STATE(11390)] = 371593, + [SMALL_STATE(11391)] = 371600, + [SMALL_STATE(11392)] = 371607, + [SMALL_STATE(11393)] = 371614, + [SMALL_STATE(11394)] = 371621, + [SMALL_STATE(11395)] = 371628, + [SMALL_STATE(11396)] = 371635, + [SMALL_STATE(11397)] = 371642, + [SMALL_STATE(11398)] = 371649, + [SMALL_STATE(11399)] = 371656, + [SMALL_STATE(11400)] = 371663, + [SMALL_STATE(11401)] = 371670, + [SMALL_STATE(11402)] = 371677, + [SMALL_STATE(11403)] = 371684, + [SMALL_STATE(11404)] = 371691, + [SMALL_STATE(11405)] = 371698, + [SMALL_STATE(11406)] = 371705, + [SMALL_STATE(11407)] = 371712, + [SMALL_STATE(11408)] = 371719, + [SMALL_STATE(11409)] = 371726, + [SMALL_STATE(11410)] = 371733, + [SMALL_STATE(11411)] = 371740, + [SMALL_STATE(11412)] = 371747, + [SMALL_STATE(11413)] = 371754, + [SMALL_STATE(11414)] = 371761, + [SMALL_STATE(11415)] = 371768, + [SMALL_STATE(11416)] = 371775, + [SMALL_STATE(11417)] = 371782, + [SMALL_STATE(11418)] = 371789, + [SMALL_STATE(11419)] = 371796, + [SMALL_STATE(11420)] = 371803, + [SMALL_STATE(11421)] = 371810, + [SMALL_STATE(11422)] = 371817, + [SMALL_STATE(11423)] = 371824, + [SMALL_STATE(11424)] = 371831, + [SMALL_STATE(11425)] = 371838, + [SMALL_STATE(11426)] = 371845, + [SMALL_STATE(11427)] = 371852, + [SMALL_STATE(11428)] = 371859, + [SMALL_STATE(11429)] = 371866, + [SMALL_STATE(11430)] = 371873, + [SMALL_STATE(11431)] = 371880, + [SMALL_STATE(11432)] = 371887, + [SMALL_STATE(11433)] = 371894, + [SMALL_STATE(11434)] = 371901, + [SMALL_STATE(11435)] = 371908, + [SMALL_STATE(11436)] = 371915, + [SMALL_STATE(11437)] = 371922, + [SMALL_STATE(11438)] = 371929, + [SMALL_STATE(11439)] = 371936, + [SMALL_STATE(11440)] = 371943, + [SMALL_STATE(11441)] = 371950, + [SMALL_STATE(11442)] = 371957, + [SMALL_STATE(11443)] = 371964, + [SMALL_STATE(11444)] = 371971, + [SMALL_STATE(11445)] = 371978, + [SMALL_STATE(11446)] = 371985, + [SMALL_STATE(11447)] = 371992, + [SMALL_STATE(11448)] = 371999, + [SMALL_STATE(11449)] = 372006, + [SMALL_STATE(11450)] = 372013, + [SMALL_STATE(11451)] = 372020, + [SMALL_STATE(11452)] = 372027, + [SMALL_STATE(11453)] = 372034, + [SMALL_STATE(11454)] = 372041, + [SMALL_STATE(11455)] = 372048, + [SMALL_STATE(11456)] = 372055, + [SMALL_STATE(11457)] = 372062, + [SMALL_STATE(11458)] = 372069, + [SMALL_STATE(11459)] = 372076, + [SMALL_STATE(11460)] = 372083, + [SMALL_STATE(11461)] = 372090, + [SMALL_STATE(11462)] = 372097, + [SMALL_STATE(11463)] = 372104, + [SMALL_STATE(11464)] = 372111, + [SMALL_STATE(11465)] = 372118, + [SMALL_STATE(11466)] = 372125, + [SMALL_STATE(11467)] = 372132, + [SMALL_STATE(11468)] = 372139, + [SMALL_STATE(11469)] = 372146, + [SMALL_STATE(11470)] = 372153, + [SMALL_STATE(11471)] = 372160, + [SMALL_STATE(11472)] = 372167, + [SMALL_STATE(11473)] = 372174, + [SMALL_STATE(11474)] = 372181, + [SMALL_STATE(11475)] = 372188, + [SMALL_STATE(11476)] = 372195, + [SMALL_STATE(11477)] = 372202, + [SMALL_STATE(11478)] = 372209, + [SMALL_STATE(11479)] = 372216, + [SMALL_STATE(11480)] = 372223, + [SMALL_STATE(11481)] = 372230, + [SMALL_STATE(11482)] = 372237, + [SMALL_STATE(11483)] = 372244, + [SMALL_STATE(11484)] = 372251, + [SMALL_STATE(11485)] = 372258, + [SMALL_STATE(11486)] = 372265, + [SMALL_STATE(11487)] = 372272, + [SMALL_STATE(11488)] = 372279, + [SMALL_STATE(11489)] = 372286, + [SMALL_STATE(11490)] = 372293, + [SMALL_STATE(11491)] = 372300, + [SMALL_STATE(11492)] = 372307, + [SMALL_STATE(11493)] = 372314, + [SMALL_STATE(11494)] = 372321, + [SMALL_STATE(11495)] = 372328, + [SMALL_STATE(11496)] = 372335, + [SMALL_STATE(11497)] = 372342, + [SMALL_STATE(11498)] = 372349, + [SMALL_STATE(11499)] = 372356, + [SMALL_STATE(11500)] = 372363, + [SMALL_STATE(11501)] = 372370, + [SMALL_STATE(11502)] = 372377, + [SMALL_STATE(11503)] = 372384, + [SMALL_STATE(11504)] = 372391, + [SMALL_STATE(11505)] = 372398, + [SMALL_STATE(11506)] = 372405, + [SMALL_STATE(11507)] = 372412, + [SMALL_STATE(11508)] = 372419, + [SMALL_STATE(11509)] = 372426, + [SMALL_STATE(11510)] = 372433, + [SMALL_STATE(11511)] = 372440, + [SMALL_STATE(11512)] = 372447, + [SMALL_STATE(11513)] = 372454, + [SMALL_STATE(11514)] = 372461, + [SMALL_STATE(11515)] = 372468, + [SMALL_STATE(11516)] = 372475, + [SMALL_STATE(11517)] = 372482, + [SMALL_STATE(11518)] = 372489, + [SMALL_STATE(11519)] = 372496, + [SMALL_STATE(11520)] = 372503, + [SMALL_STATE(11521)] = 372510, + [SMALL_STATE(11522)] = 372517, + [SMALL_STATE(11523)] = 372524, + [SMALL_STATE(11524)] = 372531, + [SMALL_STATE(11525)] = 372538, + [SMALL_STATE(11526)] = 372545, + [SMALL_STATE(11527)] = 372552, + [SMALL_STATE(11528)] = 372559, + [SMALL_STATE(11529)] = 372566, + [SMALL_STATE(11530)] = 372573, + [SMALL_STATE(11531)] = 372580, + [SMALL_STATE(11532)] = 372587, + [SMALL_STATE(11533)] = 372594, + [SMALL_STATE(11534)] = 372601, + [SMALL_STATE(11535)] = 372608, + [SMALL_STATE(11536)] = 372615, + [SMALL_STATE(11537)] = 372622, + [SMALL_STATE(11538)] = 372629, + [SMALL_STATE(11539)] = 372636, + [SMALL_STATE(11540)] = 372643, + [SMALL_STATE(11541)] = 372650, + [SMALL_STATE(11542)] = 372657, + [SMALL_STATE(11543)] = 372664, + [SMALL_STATE(11544)] = 372671, + [SMALL_STATE(11545)] = 372678, + [SMALL_STATE(11546)] = 372685, + [SMALL_STATE(11547)] = 372692, + [SMALL_STATE(11548)] = 372699, + [SMALL_STATE(11549)] = 372706, + [SMALL_STATE(11550)] = 372713, + [SMALL_STATE(11551)] = 372720, + [SMALL_STATE(11552)] = 372727, + [SMALL_STATE(11553)] = 372734, + [SMALL_STATE(11554)] = 372741, + [SMALL_STATE(11555)] = 372748, + [SMALL_STATE(11556)] = 372755, + [SMALL_STATE(11557)] = 372762, + [SMALL_STATE(11558)] = 372769, + [SMALL_STATE(11559)] = 372776, + [SMALL_STATE(11560)] = 372783, + [SMALL_STATE(11561)] = 372790, + [SMALL_STATE(11562)] = 372797, + [SMALL_STATE(11563)] = 372804, + [SMALL_STATE(11564)] = 372811, + [SMALL_STATE(11565)] = 372818, + [SMALL_STATE(11566)] = 372825, + [SMALL_STATE(11567)] = 372832, + [SMALL_STATE(11568)] = 372839, + [SMALL_STATE(11569)] = 372846, + [SMALL_STATE(11570)] = 372853, + [SMALL_STATE(11571)] = 372860, + [SMALL_STATE(11572)] = 372867, + [SMALL_STATE(11573)] = 372874, + [SMALL_STATE(11574)] = 372881, + [SMALL_STATE(11575)] = 372888, + [SMALL_STATE(11576)] = 372895, + [SMALL_STATE(11577)] = 372902, + [SMALL_STATE(11578)] = 372909, + [SMALL_STATE(11579)] = 372916, + [SMALL_STATE(11580)] = 372923, + [SMALL_STATE(11581)] = 372930, + [SMALL_STATE(11582)] = 372937, + [SMALL_STATE(11583)] = 372944, + [SMALL_STATE(11584)] = 372951, + [SMALL_STATE(11585)] = 372958, + [SMALL_STATE(11586)] = 372965, + [SMALL_STATE(11587)] = 372972, + [SMALL_STATE(11588)] = 372979, + [SMALL_STATE(11589)] = 372986, + [SMALL_STATE(11590)] = 372993, + [SMALL_STATE(11591)] = 373000, + [SMALL_STATE(11592)] = 373007, + [SMALL_STATE(11593)] = 373014, + [SMALL_STATE(11594)] = 373021, + [SMALL_STATE(11595)] = 373028, + [SMALL_STATE(11596)] = 373035, + [SMALL_STATE(11597)] = 373042, + [SMALL_STATE(11598)] = 373049, + [SMALL_STATE(11599)] = 373056, + [SMALL_STATE(11600)] = 373063, + [SMALL_STATE(11601)] = 373070, + [SMALL_STATE(11602)] = 373077, + [SMALL_STATE(11603)] = 373084, + [SMALL_STATE(11604)] = 373091, + [SMALL_STATE(11605)] = 373098, + [SMALL_STATE(11606)] = 373105, + [SMALL_STATE(11607)] = 373112, + [SMALL_STATE(11608)] = 373119, + [SMALL_STATE(11609)] = 373126, + [SMALL_STATE(11610)] = 373133, + [SMALL_STATE(11611)] = 373140, + [SMALL_STATE(11612)] = 373147, + [SMALL_STATE(11613)] = 373154, + [SMALL_STATE(11614)] = 373161, + [SMALL_STATE(11615)] = 373168, + [SMALL_STATE(11616)] = 373175, + [SMALL_STATE(11617)] = 373182, + [SMALL_STATE(11618)] = 373189, + [SMALL_STATE(11619)] = 373196, + [SMALL_STATE(11620)] = 373203, + [SMALL_STATE(11621)] = 373210, + [SMALL_STATE(11622)] = 373217, + [SMALL_STATE(11623)] = 373224, + [SMALL_STATE(11624)] = 373231, + [SMALL_STATE(11625)] = 373238, + [SMALL_STATE(11626)] = 373245, + [SMALL_STATE(11627)] = 373252, + [SMALL_STATE(11628)] = 373259, + [SMALL_STATE(11629)] = 373266, + [SMALL_STATE(11630)] = 373273, + [SMALL_STATE(11631)] = 373280, + [SMALL_STATE(11632)] = 373287, + [SMALL_STATE(11633)] = 373294, + [SMALL_STATE(11634)] = 373301, + [SMALL_STATE(11635)] = 373308, + [SMALL_STATE(11636)] = 373315, + [SMALL_STATE(11637)] = 373322, + [SMALL_STATE(11638)] = 373329, + [SMALL_STATE(11639)] = 373336, + [SMALL_STATE(11640)] = 373343, + [SMALL_STATE(11641)] = 373350, + [SMALL_STATE(11642)] = 373357, + [SMALL_STATE(11643)] = 373364, + [SMALL_STATE(11644)] = 373371, + [SMALL_STATE(11645)] = 373378, + [SMALL_STATE(11646)] = 373385, + [SMALL_STATE(11647)] = 373392, + [SMALL_STATE(11648)] = 373399, + [SMALL_STATE(11649)] = 373406, + [SMALL_STATE(11650)] = 373413, + [SMALL_STATE(11651)] = 373420, + [SMALL_STATE(11652)] = 373427, + [SMALL_STATE(11653)] = 373434, + [SMALL_STATE(11654)] = 373441, + [SMALL_STATE(11655)] = 373448, + [SMALL_STATE(11656)] = 373455, + [SMALL_STATE(11657)] = 373462, + [SMALL_STATE(11658)] = 373469, + [SMALL_STATE(11659)] = 373476, + [SMALL_STATE(11660)] = 373483, + [SMALL_STATE(11661)] = 373490, + [SMALL_STATE(11662)] = 373497, + [SMALL_STATE(11663)] = 373504, + [SMALL_STATE(11664)] = 373511, + [SMALL_STATE(11665)] = 373518, + [SMALL_STATE(11666)] = 373525, + [SMALL_STATE(11667)] = 373532, + [SMALL_STATE(11668)] = 373539, + [SMALL_STATE(11669)] = 373546, + [SMALL_STATE(11670)] = 373553, + [SMALL_STATE(11671)] = 373560, + [SMALL_STATE(11672)] = 373567, + [SMALL_STATE(11673)] = 373574, + [SMALL_STATE(11674)] = 373581, + [SMALL_STATE(11675)] = 373588, + [SMALL_STATE(11676)] = 373595, + [SMALL_STATE(11677)] = 373602, + [SMALL_STATE(11678)] = 373609, + [SMALL_STATE(11679)] = 373616, + [SMALL_STATE(11680)] = 373623, + [SMALL_STATE(11681)] = 373630, + [SMALL_STATE(11682)] = 373637, + [SMALL_STATE(11683)] = 373644, + [SMALL_STATE(11684)] = 373651, + [SMALL_STATE(11685)] = 373658, + [SMALL_STATE(11686)] = 373665, + [SMALL_STATE(11687)] = 373672, + [SMALL_STATE(11688)] = 373679, + [SMALL_STATE(11689)] = 373686, + [SMALL_STATE(11690)] = 373693, + [SMALL_STATE(11691)] = 373700, + [SMALL_STATE(11692)] = 373707, + [SMALL_STATE(11693)] = 373714, + [SMALL_STATE(11694)] = 373721, + [SMALL_STATE(11695)] = 373728, + [SMALL_STATE(11696)] = 373735, + [SMALL_STATE(11697)] = 373742, + [SMALL_STATE(11698)] = 373749, + [SMALL_STATE(11699)] = 373756, + [SMALL_STATE(11700)] = 373763, + [SMALL_STATE(11701)] = 373770, + [SMALL_STATE(11702)] = 373777, + [SMALL_STATE(11703)] = 373784, + [SMALL_STATE(11704)] = 373791, + [SMALL_STATE(11705)] = 373798, + [SMALL_STATE(11706)] = 373805, + [SMALL_STATE(11707)] = 373812, + [SMALL_STATE(11708)] = 373819, + [SMALL_STATE(11709)] = 373826, + [SMALL_STATE(11710)] = 373833, + [SMALL_STATE(11711)] = 373840, + [SMALL_STATE(11712)] = 373847, + [SMALL_STATE(11713)] = 373854, + [SMALL_STATE(11714)] = 373861, + [SMALL_STATE(11715)] = 373868, + [SMALL_STATE(11716)] = 373875, + [SMALL_STATE(11717)] = 373882, + [SMALL_STATE(11718)] = 373889, + [SMALL_STATE(11719)] = 373896, + [SMALL_STATE(11720)] = 373903, + [SMALL_STATE(11721)] = 373910, + [SMALL_STATE(11722)] = 373917, + [SMALL_STATE(11723)] = 373924, + [SMALL_STATE(11724)] = 373931, + [SMALL_STATE(11725)] = 373938, + [SMALL_STATE(11726)] = 373945, + [SMALL_STATE(11727)] = 373952, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -763458,8864 +762886,8859 @@ 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(1207), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9002), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11149), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11007), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10565), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11098), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8562), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8911), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10684), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10247), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7981), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11094), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8335), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10020), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10243), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10931), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10439), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11375), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11016), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11150), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11376), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10894), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10896), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10981), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9126), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9926), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11310), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8937), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8989), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11268), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8185), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10835), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10318), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11263), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8589), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11608), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10392), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7905), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11251), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7360), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9924), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10370), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11377), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10580), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11418), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11233), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10855), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11680), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10933), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11153), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11157), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7498), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9152), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9801), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11486), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9530), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8878), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10370), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8990), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11344), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11321), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10527), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8997), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11481), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11498), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10909), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10519), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8581), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10486), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8999), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11292), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11610), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10417), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7667), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8990), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11500), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10652), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8192), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11201), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10311), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8528), [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9893), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10397), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11110), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10372), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11129), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11238), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11268), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11538), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10369), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10905), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11600), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8913), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10417), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8999), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11483), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11484), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8995), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11563), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11653), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9804), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10357), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11344), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10368), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11123), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11668), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10641), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11572), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10484), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11412), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10735), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8912), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10374), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8985), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11477), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11478), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8978), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11552), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11647), [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8170), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11203), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10557), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4246), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8566), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9830), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10487), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11580), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10403), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11482), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8221), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11245), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10522), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8520), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9815), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10464), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11523), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10358), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11476), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10742), [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10745), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11593), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10508), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11076), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8882), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11579), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10493), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10709), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8877), [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10491), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8991), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11589), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11590), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10472), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8987), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11583), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11584), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), [361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_block, 2, 0, 10), [363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_block, 3, 0, 84), [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_block, 3, 0, 10), [367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_block, 4, 0, 84), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8215), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11485), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10809), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8211), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 10), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11501), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8232), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11587), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9526), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 84), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 2, 0, 10), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 84), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 10), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8995), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11563), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8182), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9646), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 4, 0, 84), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif, 3, 0, 84), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef, 3, 0, 10), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1153), + [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8978), + [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11552), + [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8224), [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11653), - [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10557), - [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), - [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), - [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4941), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4781), - [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), - [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8566), - [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8911), - [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9386), - [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10684), - [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10247), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5791), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(73), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), - [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7981), - [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), - [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), - [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4621), - [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7232), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7204), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7283), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9830), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10487), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11580), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10403), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(241), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11482), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11647), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10522), + [473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7519), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), + [494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(282), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4145), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11263), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8520), + [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8894), + [518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9311), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11608), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10392), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5800), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7905), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4910), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4692), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4603), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11251), + [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4053), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8295), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7360), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7377), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7379), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9815), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10464), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1839), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11523), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10358), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11476), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10742), [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10745), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11593), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10508), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11076), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10894), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10896), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10981), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9126), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6386), - [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9926), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9586), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6009), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11310), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8882), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11579), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10493), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10709), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10933), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11153), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11157), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7498), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9152), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6410), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9801), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9474), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5966), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5984), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4839), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11486), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6320), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8877), [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8991), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11589), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11590), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1382), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), - [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10527), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6969), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7683), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(394), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), - [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1204), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8995), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11563), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8215), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10472), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1437), + [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8987), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11583), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11584), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10417), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7157), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7667), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), + [707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8978), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11552), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8211), [719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11485), - [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10557), - [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1542), - [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), - [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1111), - [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(550), - [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4941), - [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4781), - [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4246), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), - [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8566), - [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8911), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9386), - [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10684), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10247), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5791), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(73), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7981), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4636), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4621), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7232), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7204), - [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7283), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9830), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10487), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11580), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10403), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(241), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11482), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), + [721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11501), + [724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10522), + [727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7519), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1112), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(531), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(282), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), + [757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4145), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11263), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8520), + [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8894), + [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9311), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11608), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10392), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5800), + [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7905), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4910), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4692), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4603), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11251), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4053), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8295), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7360), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7377), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7379), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9815), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10464), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1839), + [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11523), + [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10358), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11476), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10742), [850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10745), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11593), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10894), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10896), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10981), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9126), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7275), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9926), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9586), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7441), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11310), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11579), + [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10933), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11153), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11157), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7498), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9152), + [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7274), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9801), + [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9474), + [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7483), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(5984), + [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4839), + [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11486), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6320), [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9526), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8882), + [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9646), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8877), [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1961), [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8991), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11589), - [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11590), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1382), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10527), - [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(6969), - [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7683), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(394), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8988), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10825), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8186), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10757), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10421), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4252), - [994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8532), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4655), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9951), - [1009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10208), - [1012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [1015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11314), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10489), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11588), - [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), - [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11595), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11599), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10735), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10270), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11520), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(115), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8898), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10213), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), - [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9005), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11614), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11604), - [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10497), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8988), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10825), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), - [1097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_block, 1, 0, 0), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10757), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10421), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8532), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9951), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10208), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11314), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10489), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11588), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11595), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11599), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10735), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10270), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11520), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8898), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10213), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9005), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11614), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11604), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10511), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_block, 2, 0, 0), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1136), - [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8997), - [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11481), - [1200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8240), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10909), - [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10519), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(768), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4221), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8581), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4685), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4605), - [1235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9893), - [1238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10397), - [1241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), - [1244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11110), - [1247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10372), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(240), - [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11129), - [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), - [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11238), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11268), - [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11538), - [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10369), - [1271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10905), - [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(117), - [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8913), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1960), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10417), - [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1493), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8999), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11483), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11484), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10658), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10481), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10841), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10459), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8025), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8421), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1207), - [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9002), - [1406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11149), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8228), - [1412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11007), - [1415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10565), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), - [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(283), - [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4918), - [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4209), - [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8562), - [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4747), - [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4616), - [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10020), - [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10243), - [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), - [1451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10931), - [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10439), - [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11375), - [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), - [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11016), - [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11150), - [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11376), - [1475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7205), - [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7419), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(78), - [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9448), - [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8937), - [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1962), - [1493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10370), - [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8990), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11344), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11321), - [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11564), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7442), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9509), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), - [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1212), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8988), - [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10825), - [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8180), - [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11564), - [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10421), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), - [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4252), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8532), - [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [1574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4655), - [1577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4620), - [1580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9951), - [1583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10208), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1843), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11314), - [1592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10489), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11588), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11595), - [1607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11599), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10735), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7218), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7442), - [1619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9509), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8898), - [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [1631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10213), - [1634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), - [1637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9005), - [1640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11614), - [1643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11604), - [1646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [1649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [1654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 14), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [1660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 14), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7970), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9255), - [1674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 14), - [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 14), - [1678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), - [1680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), - [1682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), - [1684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [1686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1161), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [1705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), - [1708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [1711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(388), - [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4941), - [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), - [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), - [1726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8911), - [1729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9363), - [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10684), - [1735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(73), - [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), - [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7970), - [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), - [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), - [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8335), - [1756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7232), - [1759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7204), - [1762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7283), - [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9830), - [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10487), - [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10403), - [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(241), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11482), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1283), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10742), - [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10745), - [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11593), - [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10508), - [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11076), - [1798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), - [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), - [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10894), - [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10896), - [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10981), - [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7491), - [1816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9126), - [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6386), - [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9926), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9586), - [1828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6009), - [1831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), - [1834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), - [1837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11310), - [1840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9255), - [1843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10491), - [1846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), - [1849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [1852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1382), - [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1822), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10527), - [1861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [1864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6969), - [1867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7683), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(394), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), - [1876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1125), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(568), - [1882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(382), - [1885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4918), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10020), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10243), - [1897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10439), - [1900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [1903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11375), - [1906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), - [1909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11016), - [1912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11150), - [1915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11376), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10481), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10841), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9237), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10370), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1466), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1742), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9258), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9237), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), - [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(643), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4954), - [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9951), - [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10208), - [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10489), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11588), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11595), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11599), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10735), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10270), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11520), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9258), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10213), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1416), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1417), - [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9254), - [2020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1119), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(768), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(387), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4922), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9893), - [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10397), - [2041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10372), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(240), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11129), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1294), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11238), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11268), - [2059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11538), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10369), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10905), - [2068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9254), - [2071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10417), - [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1493), - [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [2080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1766), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9982), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10260), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10210), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11602), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11516), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11617), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10831), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10220), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10718), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9162), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10299), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [2127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), - [2130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1228), - [2133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(333), - [2136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4947), - [2139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [2142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9982), - [2145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10260), - [2148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10210), - [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [2154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11602), - [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1272), - [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11516), - [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11617), - [2166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10831), - [2169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10220), - [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10718), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9162), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10299), - [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), - [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), - [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1844), - [2190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [2192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9981), - [2194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [2196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10726), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10625), - [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11287), - [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10404), - [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9253), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11522), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), - [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9349), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), - [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8821), - [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7730), - [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8265), - [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), - [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), - [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11130), - [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11673), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11726), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7503), - [2268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9117), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9953), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9471), - [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11132), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9406), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10521), - [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11241), - [2304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9791), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [2310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8352), - [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7485), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10762), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11341), - [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11694), - [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11729), - [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), - [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9137), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10046), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9633), - [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), - [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9364), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10598), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7670), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [2384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 46), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 46), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9621), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11288), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11688), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11727), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9515), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9131), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10076), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9658), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11551), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9411), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10593), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), - [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3619), - [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(256), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1592), - [2449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1592), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1760), - [2455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(643), - [2458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1837), - [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8911), - [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9363), - [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(86), - [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7970), - [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9573), - [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9951), - [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10208), - [2484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1843), - [2487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11314), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10489), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(242), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11588), - [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1291), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11595), - [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11599), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10735), - [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10270), - [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11520), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1649), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1401), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10894), - [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10896), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10981), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9579), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9126), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6386), - [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9926), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9586), - [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6009), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5958), - [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11551), - [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9258), - [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10213), - [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1652), - [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1416), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1417), - [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1835), - [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10527), - [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1647), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6969), - [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7683), - [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(394), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1823), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8533), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9573), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9579), - [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8580), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9983), - [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10577), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6966), - [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8591), - [2640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3695), - [2643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(568), - [2646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(99), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10020), - [2652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10243), - [2655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1613), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10931), - [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10439), - [2664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(223), - [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11375), - [2670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1286), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11016), - [2676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11150), - [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11376), - [2682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10481), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10841), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9237), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10370), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1466), - [2697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1475), - [2700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1742), - [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3661), - [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(326), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(73), - [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9830), - [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10487), - [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1834), - [2721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11580), - [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10403), - [2727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(241), - [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11482), - [2733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1283), - [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10742), - [2739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10745), - [2742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11593), - [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10508), - [2748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11076), - [2751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9255), - [2754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10491), - [2757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1381), - [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1382), - [2763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1822), - [2766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3639), - [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(768), - [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(53), - [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9893), - [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10397), - [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1762), - [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11110), - [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10372), - [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(240), - [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11129), - [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1294), - [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11238), - [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11268), - [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11538), - [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10369), - [2811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10905), - [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9254), - [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10417), - [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1493), - [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1501), - [2826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1766), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8600), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3642), - [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1228), - [2843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(90), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9982), - [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10260), - [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1821), - [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10726), - [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10210), - [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(243), - [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11602), - [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1272), - [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11516), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11617), - [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10831), - [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10220), - [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10718), - [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9162), - [2888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10299), - [2891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1430), - [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1431), - [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1844), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8928), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10075), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9614), - [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10611), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [2926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3599), - [2929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9981), - [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10625), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11287), - [2938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10404), - [2941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9253), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9466), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9576), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8861), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9578), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11382), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11700), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11731), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9660), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9143), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10060), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9656), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9350), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6962), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8876), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9528), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11402), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11703), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11732), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9427), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9146), - [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10069), - [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9495), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10606), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9597), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9593), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [3106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3397), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(256), - [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1592), - [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1760), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [3120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1760), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1837), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), - [3130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8911), - [3133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7970), - [3136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9573), - [3139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9579), - [3142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11551), - [3145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9349), - [3148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1823), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 7), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 7), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10538), - [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), - [3175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10538), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8860), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), - [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8259), - [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7233), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7236), - [3210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11317), - [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11691), - [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11728), - [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9135), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10035), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), - [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), - [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11364), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9366), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), - [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), - [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11128), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(3397), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1837), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8911), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9573), - [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9579), - [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(11551), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9349), - [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1823), - [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(3397), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1837), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), - [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8911), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), - [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9573), - [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9579), - [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(11551), - [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9349), - [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1823), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 171), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 171), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 52), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 52), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [3376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3397), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1837), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8911), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [3391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9573), - [3394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9579), - [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(11551), - [3400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9349), - [3403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1823), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 109), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 109), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10892), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8235), - [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10779), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10936), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10561), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10865), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8535), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10898), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10872), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9093), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11623), - [3486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [3492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 10), - [3496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 84), - [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 10), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 84), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), - [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), - [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 53), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 53), - [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 53), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 53), - [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 54), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 54), - [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 57), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 57), - [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), - [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), - [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), - [3600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 71), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 71), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 91), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 91), - [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 7), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 7), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 110), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 110), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 118), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 118), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 121), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 121), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 138), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 138), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 91), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 91), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), - [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 156), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 156), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 157), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 157), - [3650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 161), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 161), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 162), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 162), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 177), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 177), - [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 178), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 178), - [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 138), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 138), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 190), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 190), - [3674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_statement, 6, 0, 207), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_statement, 6, 0, 207), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 208), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 208), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [3684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 49), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 49), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8345), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7353), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11319), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10071), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10610), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10540), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10235), - [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10540), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8280), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11343), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8284), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7196), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11434), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8285), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10073), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9604), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11404), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9365), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10584), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7013), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 3), - [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 3), - [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), - [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), - [3925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), - [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 2, 0, 0), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 2, 0, 0), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 7), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 7), - [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10235), - [3950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), - [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), - [3956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), - [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), - [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8307), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), - [3984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [3986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), - [3988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), - [3990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), - [3992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 37), - [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 37), - [4000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 10), - [4002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 10), - [4004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 38), - [4006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 38), - [4008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 45), - [4010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 45), - [4012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), - [4014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), - [4016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 47), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 47), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), - [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), - [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [4026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [4028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 59), - [4030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 59), - [4032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 10), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 10), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 60), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 60), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 5), - [4042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 5), - [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 62), - [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 62), - [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), - [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8281), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7332), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11384), - [4076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 65), - [4078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 65), - [4080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 72), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 72), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), - [4086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), - [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 81), - [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 81), - [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), - [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), - [4100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 81), - [4102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 81), - [4104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 82), - [4106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 82), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 83), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 83), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 3, 0, 10), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 3, 0, 10), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 98), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 98), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 99), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 99), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 100), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 100), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 59), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 59), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 10), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 10), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 60), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 60), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 63), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 63), - [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 62), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 62), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 119), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 119), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 123), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 123), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 128), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 128), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 131), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 131), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 132), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 132), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 5, 0, 139), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 5, 0, 139), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 140), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 140), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 4, 0, 84), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 4, 0, 84), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 85), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 85), - [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 10), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 10), - [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 146), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 146), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 147), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 147), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 173), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 173), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 174), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 174), - [4266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 10), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 10), - [4270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 181), - [4272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 181), - [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 0), - [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 0), - [4278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 185), - [4280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 185), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 188), - [4284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 188), - [4286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 5, 0, 133), - [4288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 5, 0, 133), - [4290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 5, 0, 84), - [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 5, 0, 84), - [4294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 5, 0, 134), - [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 5, 0, 134), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8282), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11362), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11697), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11730), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7423), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9139), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10058), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7206), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9355), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10601), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7695), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [4362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3701), - [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1646), - [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8910), - [4371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9597), - [4374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9593), - [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9364), - [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1877), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 6, 0, 186), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 6, 0, 186), - [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 221), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 221), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8346), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8283), - [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7463), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11419), - [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 42), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 42), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10622), - [4449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10622), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 48), - [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 48), - [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), - [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), - [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 10), - [4464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 10), - [4466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 113), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 113), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 133), - [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 133), - [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 84), - [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 84), - [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 134), - [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 134), - [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 48), - [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 48), - [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 167), - [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 167), - [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 113), - [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 113), - [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 186), - [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 186), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 6, 0, 167), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 6, 0, 167), - [4504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), - [4510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), - [4514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), - [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), - [4518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), - [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), - [4522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [4524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), - [4526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 10), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 10), - [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 84), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 84), - [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 85), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 85), - [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), - [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5962), - [4545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10892), - [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8235), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10779), - [4556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10561), - [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6478), - [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10865), - [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4153), - [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), - [4571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7516), - [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(555), - [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4728), - [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4957), - [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4781), - [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), - [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), - [4592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8535), - [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7784), - [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), - [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10684), - [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10247), - [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3824), - [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10898), - [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4667), - [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4561), - [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), - [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4308), - [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8360), - [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7370), - [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7371), - [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7378), - [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7465), - [4643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11310), - [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), - [4652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10872), - [4655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9093), - [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2152), - [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11623), - [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1852), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10725), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8161), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10964), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10474), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8516), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9108), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11603), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10725), - [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8161), - [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10964), - [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10474), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(884), - [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4688), - [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4944), - [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8516), - [4742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), - [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4694), - [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4573), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9108), - [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2168), - [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11603), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10949), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8183), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10638), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10207), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8543), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9100), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11631), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10949), - [4844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8183), - [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10638), - [4850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10207), - [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(960), - [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4751), - [4859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4959), - [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8543), - [4865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4681), - [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4557), - [4871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9100), - [4874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2159), - [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11631), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8878), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9555), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9488), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), - [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9565), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9596), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8918), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9599), - [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), - [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [4934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3749), - [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1770), - [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8918), - [4943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9511), - [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9599), - [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3726), - [4952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1627), - [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8860), - [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9565), - [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9596), - [4964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9366), - [4967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1866), - [4970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2447), - [4973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1794), - [4976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8876), - [4979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9621), - [4982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9515), - [4985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9411), - [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1836), - [4991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3487), - [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1698), - [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8928), - [5000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2988), - [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1587), - [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8881), - [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9365), - [5012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3713), - [5015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1654), - [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8861), - [5021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9578), - [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9660), - [5027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9350), - [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1874), - [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1910), - [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8940), - [5039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3758), - [5042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1551), - [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8878), - [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9555), - [5051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9488), - [5054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9355), - [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1873), - [5060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3586), - [5063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1764), - [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8912), - [5069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1540), - [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8919), - [5075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1715), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8904), - [5081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3761), - [5084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1893), - [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8943), - [5090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3643), - [5093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1814), - [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8869), - [5099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9466), - [5102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9576), - [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9406), - [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1768), - [5111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3745), - [5114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1685), - [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8902), - [5120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9528), - [5123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9427), - [5126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9288), - [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1879), - [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), - [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8397), - [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), - [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8338), - [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), - [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7240), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11290), - [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), - [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8341), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11229), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5438), - [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10755), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11361), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8264), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8840), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10472), + [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1437), + [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8987), + [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11583), + [931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11584), + [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10417), + [943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), + [946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7157), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7667), + [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10454), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9001), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10819), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8226), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_block, 1, 0, 0), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10751), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10438), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8551), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9936), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10611), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10728), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10466), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11582), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11687), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10682), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10729), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10257), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10971), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8918), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10202), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8992), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10621), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11598), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10497), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_block, 2, 0, 0), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1115), + [1077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8990), + [1080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11500), + [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8192), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11201), + [1089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10311), + [1092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [1095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(283), + [1098] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4914), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4164), + [1104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8528), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [1112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4665), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4594), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9804), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10357), + [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), + [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11344), + [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10368), + [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11123), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), + [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11668), + [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10641), + [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11572), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10484), + [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11412), + [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8912), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1963), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10374), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8985), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11477), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11478), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [1184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10663), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10436), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11083), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10419), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [1253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), + [1256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9001), + [1259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10819), + [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8226), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10751), + [1268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10438), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4944), + [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4229), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8551), + [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4699), + [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4580), + [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9936), + [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10611), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10728), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10466), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11582), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1281), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11687), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10682), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10729), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10257), + [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10971), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8918), + [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1956), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10202), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8992), + [1352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10621), + [1355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11598), + [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1840), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8223), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 1, 0, 0), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11555), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7455), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9536), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else, 2, 0, 0), + [1418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1218), + [1421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9001), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10819), + [1427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8223), + [1430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11555), + [1433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10438), + [1436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(870), + [1439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(284), + [1442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4944), + [1445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4229), + [1448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8551), + [1451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [1454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4699), + [1457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4580), + [1460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9936), + [1463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10611), + [1466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), + [1469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10728), + [1472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10466), + [1475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [1478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11582), + [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1281), + [1484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11687), + [1487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10682), + [1490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10729), + [1493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7365), + [1496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7455), + [1499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9536), + [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8918), + [1508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1956), + [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10202), + [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8992), + [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10621), + [1523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11598), + [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1840), + [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translation_unit, 1, 0, 0), + [1534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1188), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8989), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11268), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8185), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10835), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10318), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4841), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4213), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8589), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4662), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(4551), + [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9924), + [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10370), + [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1529), + [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11377), + [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10580), + [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11418), + [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1276), + [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11233), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10855), + [1608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11680), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7291), + [1614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(7480), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [1620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(9530), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8878), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1958), + [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(10486), + [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), + [1635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(8999), + [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11292), + [1641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(11610), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_translation_unit_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 14), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 14), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7966), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9256), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 2, 0, 0), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 2, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 3, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 14), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 14), + [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1168), + [1687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [1695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(341), + [1709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(387), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4930), + [1715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2819), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4910), + [1721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11263), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8894), + [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9349), + [1730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11608), + [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [1736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), + [1739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7966), + [1742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [1745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11251), + [1748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4053), + [1751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(8295), + [1754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7360), + [1757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7377), + [1760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7379), + [1763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9815), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10464), + [1769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10358), + [1772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [1775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11476), + [1778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1270), + [1781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10742), + [1784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10745), + [1787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11579), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10493), + [1793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10709), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [1799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10933), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11153), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11157), + [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7498), + [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9152), + [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6410), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9801), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9474), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5966), + [1829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5984), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4839), + [1835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11486), + [1838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9256), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10472), + [1844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [1847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1437), + [1850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [1853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10417), + [1859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), + [1862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7157), + [1865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7667), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [1871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1524), + [1874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(584), + [1880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(383), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4841), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(80), + [1889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9924), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10370), + [1895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10580), + [1898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(218), + [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11418), + [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1276), + [1907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11233), + [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10855), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11680), + [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10436), + [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11083), + [1922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9240), + [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10486), + [1928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1399), + [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [1934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1825), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9260), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1147), + [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(620), + [1949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [1952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4944), + [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9936), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10611), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10466), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11582), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1281), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11687), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10682), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10729), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10257), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10971), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9260), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10202), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1840), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9240), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9255), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1124), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(654), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(386), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4914), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(53), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9804), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10357), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10368), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11123), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1280), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11668), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10641), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11572), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10484), + [2063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11412), + [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9255), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10374), + [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1787), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9978), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10246), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10615), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11596), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10731), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10732), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10825), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10214), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11222), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9258), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10281), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9744), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10694), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10308), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11281), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10410), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), + [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1166), + [2144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1225), + [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4938), + [2153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9978), + [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10246), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10615), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(242), + [2168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11596), + [2171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1296), + [2174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10731), + [2177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10732), + [2180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10825), + [2183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10214), + [2186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(11222), + [2189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(9258), + [2192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10281), + [2195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), + [2198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1510), + [2201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1848), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11516), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9313), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9383), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8904), + [2240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8779), + [2242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7718), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), + [2250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11124), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11667), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11720), + [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9125), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9938), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11126), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9288), + [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10523), + [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7687), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [2300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11504), + [2302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9683), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [2308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8264), + [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), + [2316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [2338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8887), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11335), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11688), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11723), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9139), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5975), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10039), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9296), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10594), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7691), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 4, 0, 46), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 4, 0, 46), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9431), + [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11282), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11682), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11721), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9555), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9135), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10083), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9434), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11011), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9283), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10587), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7664), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8567), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9451), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9477), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [2450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3673), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(272), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1772), + [2459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1772), + [2462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1720), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(620), + [2468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1722), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [2473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(8894), + [2476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9349), + [2479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(85), + [2482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7966), + [2485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9451), + [2488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9936), + [2491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10611), + [2494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1847), + [2497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10728), + [2500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10466), + [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(241), + [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11582), + [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1281), + [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11687), + [2515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10682), + [2518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10729), + [2521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10257), + [2524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10971), + [2527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1570), + [2530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1431), + [2533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10933), + [2536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11153), + [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11157), + [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9477), + [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9152), + [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(6410), + [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9801), + [2554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9474), + [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5966), + [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(5984), + [2563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11011), + [2566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9260), + [2569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10202), + [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1781), + [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1489), + [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1491), + [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1840), + [2584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10417), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1828), + [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7157), + [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(7667), + [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(467), + [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1833), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8549), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3677), + [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(654), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(53), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9804), + [2618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10357), + [2621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1784), + [2624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11344), + [2627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10368), + [2630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(188), + [2633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11123), + [2636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1280), + [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11668), + [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10641), + [2645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11572), + [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10484), + [2651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11412), + [2654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9255), + [2657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10374), + [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1374), + [2663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1385), + [2666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1787), + [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3631), + [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(341), + [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(74), + [2678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9815), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10464), + [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1839), + [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11523), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10358), + [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(240), + [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11476), + [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1270), + [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10742), + [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10745), + [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11579), + [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10493), + [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10709), + [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9256), + [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10472), + [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1437), + [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1450), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1832), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8873), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9517), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10574), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3656), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(584), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(80), + [2769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9924), + [2772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10370), + [2775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1529), + [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11377), + [2781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10580), + [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(218), + [2787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11418), + [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1276), + [2793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11233), + [2796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10855), + [2799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11680), + [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10436), + [2805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11083), + [2808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9240), + [2811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10486), + [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1399), + [2817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1470), + [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1825), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8553), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8526), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), + [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10080), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10605), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3663), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9744), + [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1831), + [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10694), + [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10308), + [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11281), + [2879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10410), + [2882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9210), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(3689), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1225), + [2891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(89), + [2894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9978), + [2897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10246), + [2900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10615), + [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(242), + [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11596), + [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1296), + [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10731), + [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10732), + [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10825), + [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10214), + [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(11222), + [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(9258), + [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(10281), + [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1509), + [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1510), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT(1848), + [2942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9525), + [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9522), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), + [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8856), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9535), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11396), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11697), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11726), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9429), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9147), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10072), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9356), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10600), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7688), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9460), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11376), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11694), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11725), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9634), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9145), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10065), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9499), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9281), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10597), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7693), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8935), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [3098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9604), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9417), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3299), + [3107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(272), + [3110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1772), + [3113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1720), + [3116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [3118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1720), + [3121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1722), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [3128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8894), + [3131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7966), + [3134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9451), + [3137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9477), + [3140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11011), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9383), + [3146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1833), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), + [3163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10512), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 7), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 7), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10512), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 3, 0, 7), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_try_statement, 4, 0, 47), + [3184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(3299), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1722), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), + [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(8894), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), + [3199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9451), + [3202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9477), + [3205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(11011), + [3208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(9383), + [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_init_statement, 1, 0, 0), SHIFT(1833), + [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [3220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8862), + [3228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), + [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8271), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7213), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7214), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11311), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11685), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11722), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9137), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10016), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11358), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9333), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10591), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7690), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 52), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 52), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [3292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(3299), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1722), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(8894), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9451), + [3310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9477), + [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(11011), + [3316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(9383), + [3319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), SHIFT(1833), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 110), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 110), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 3, 0, 171), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 3, 0, 171), + [3330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(3299), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [3335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1722), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(8894), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [3345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9451), + [3348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9477), + [3351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(11011), + [3354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(9383), + [3357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), SHIFT(1833), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6700), + [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6706), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11122), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8869), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10886), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8214), + [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10772), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8186), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11183), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10282), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11143), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7519), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8555), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11684), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8337), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11230), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9107), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11617), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_finally_clause, 2, 0, 7), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 156), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 156), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 157), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 157), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 161), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 161), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_range_loop, 5, 0, 162), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_range_loop, 5, 0, 162), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 2, 0, 0), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 177), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 177), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 5, 0, 178), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 5, 0, 178), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 6, 0, 139), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 6, 0, 139), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_except_clause, 3, 0, 190), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_except_clause, 3, 0, 190), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion_statement, 6, 0, 207), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion_statement, 6, 0, 207), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 6, 0, 208), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 6, 0, 208), + [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 2, 0, 0), + [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_statement, 2, 0, 0), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 2, 0, 0), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_leave_statement, 2, 0, 0), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 53), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 53), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 2, 0, 10), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, 0, 84), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 10), + [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 84), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 91), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 91), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 53), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 53), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 3, 0, 54), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 3, 0, 54), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, 0, 57), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, 0, 57), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_return_statement, 3, 0, 0), + [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_yield_statement, 3, 0, 0), + [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 3, 0, 71), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 3, 0, 71), + [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4, 0, 91), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4, 0, 91), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_seh_try_statement, 3, 0, 7), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_seh_try_statement, 3, 0, 7), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 111), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 111), + [3660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 119), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 119), + [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 4, 0, 122), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 4, 0, 122), + [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5, 0, 139), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5, 0, 139), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 6, 0, 186), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 6, 0, 186), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 148), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 148), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 59), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 59), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 10), + [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 10), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3, 0, 60), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3, 0, 60), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 3, 0, 5), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 3, 0, 5), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 3, 0, 62), + [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 3, 0, 62), + [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 2, 0, 26), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 172), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_alias_definition, 5, 0, 173), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_alias_definition, 5, 0, 173), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 5, 0, 174), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 5, 0, 174), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concept_definition, 5, 0, 10), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concept_definition, 5, 0, 10), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 65), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 65), + [3738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 49), + [3740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 49), + [3742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 181), + [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 181), + [3746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 5, 0, 0), + [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 5, 0, 0), + [3750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 5, 0, 185), + [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 5, 0, 185), + [3754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_consteval_block_declaration, 2, 0, 7), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 6, 0, 188), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 6, 0, 188), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 5, 0, 134), + [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 5, 0, 134), + [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 5, 0, 84), + [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 5, 0, 84), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 5, 0, 135), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 5, 0, 135), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_include, 3, 0, 37), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_include, 3, 0, 37), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 3, 0, 10), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 3, 0, 10), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 72), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 72), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8335), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_assert_declaration, 7, 0, 221), + [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_assert_declaration, 7, 0, 221), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 3, 0, 38), + [3844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 3, 0, 38), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10228), + [3854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), + [3856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 74), + [3858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 2, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 2, 0, 27), + [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10228), + [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 3, 0, 0), + [3873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [3875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_declaration, 3, 0, 5), + [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 4, 0, 0), + [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_friend_declaration, 5, 0, 0), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8253), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7236), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11378), + [3909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 81), + [3911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 81), + [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), + [3915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 3, 0, 5), + [3917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 3, 0, 5), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_definition, 3, 0, 81), + [3923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_definition, 3, 0, 81), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8254), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11356), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11691), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11724), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7495), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9141), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10057), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11398), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9401), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10595), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [3995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3676), + [3998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1538), + [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8887), + [4004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9604), + [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9417), + [4010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9296), + [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1874), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8255), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7446), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11413), + [4044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_def, 4, 0, 82), + [4046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_def, 4, 0, 82), + [4048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 4, 0, 83), + [4050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 4, 0, 83), + [4052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_linkage_specification, 3, 0, 45), + [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_linkage_specification, 3, 0, 45), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10076), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9606), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [4088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 42), + [4090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 42), + [4092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 4, 0, 0), + [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 4, 0, 0), + [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 3, 0, 10), + [4098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 3, 0, 10), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10546), + [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_declaration, 3, 0, 0), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_declaration, 3, 0, 0), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 98), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 98), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 99), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 99), + [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 4, 0, 100), + [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 4, 0, 100), + [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_declaration, 2, 0, 0), + [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_declaration, 2, 0, 0), + [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 3, 0, 47), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 3, 0, 47), + [4126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call, 2, 0, 3), + [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call, 2, 0, 3), + [4130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10546), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8250), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11313), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [4163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8252), + [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), + [4171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7453), + [4179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11337), + [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8256), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), + [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7442), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11428), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [4219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 59), + [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 59), + [4227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 10), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 10), + [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 4, 0, 60), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 4, 0, 60), + [4235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 4, 0, 63), + [4237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 4, 0, 63), + [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_declaration, 4, 0, 62), + [4241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_declaration, 4, 0, 62), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8289), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 2, 0, 7), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 2, 0, 7), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 120), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 120), + [4275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__block_item, 1, 0, 0), REDUCE(sym_statement, 1, 0, 0), + [4281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 26), + [4285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 2, 0, 27), + [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 124), + [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 124), + [4293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [4295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_method_clause, 3, 0, 0), + [4297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_method_clause, 3, 0, 0), + [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pure_virtual_clause, 3, 0, 0), + [4305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 4, 0, 129), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 4, 0, 129), + [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 132), + [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_or_destructor_definition, 4, 0, 132), + [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_function_def, 5, 0, 133), + [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_function_def, 5, 0, 133), + [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty_declaration, 2, 0, 0), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast_declaration, 2, 0, 27), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_instantiation, 5, 0, 140), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_instantiation, 5, 0, 140), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [4353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_declaration, 5, 0, 141), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_declaration, 5, 0, 141), + [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_block, 4, 0, 84), + [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_block, 4, 0, 84), + [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 85), + [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 85), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 10), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_block, 4, 0, 10), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_namespace_definition, 5, 0, 147), + [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_definition, 5, 0, 147), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7271), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10077), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9449), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9339), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10578), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7685), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10536), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10536), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 48), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 48), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [4456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 6, 0, 186), + [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 6, 0, 186), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [4462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 1, 0, 0), + [4464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__top_level_item, 1, 0, 0), REDUCE(sym__top_level_statement, 1, 0, 0), + [4470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [4472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__top_level_expression_statement, 2, 0, 0), + [4474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), + [4476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_module_fragment_declaration, 2, 0, 0), + [4478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), + [4480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 3, 0, 10), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 3, 0, 10), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 3, 0, 10), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 4, 0, 84), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 4, 0, 84), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 85), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 85), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 4, 0, 10), + [4500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(5939), + [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10886), + [4506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8214), + [4509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10772), + [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10282), + [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6428), + [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11143), + [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4253), + [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7519), + [4529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7519), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(541), + [4535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4734), + [4538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4946), + [4541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), + [4544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4910), + [4547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11263), + [4550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8555), + [4553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7772), + [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9313), + [4559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11608), + [4562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10392), + [4565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3785), + [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11684), + [4571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [4574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4706), + [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4615), + [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11251), + [4583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4314), + [4586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8337), + [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7203), + [4592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7204), + [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7205), + [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(7482), + [4601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4839), + [4604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11486), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(6320), + [4610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11230), + [4613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9107), + [4616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), + [4619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2140), + [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11617), + [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1855), + [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 48), + [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 48), + [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_module_fragment_declaration, 4, 0, 0), + [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 10), + [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 10), + [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 4, 0, 114), + [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 4, 0, 114), + [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 134), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 134), + [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if, 5, 0, 84), + [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if, 5, 0, 84), + [4652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef, 5, 0, 135), + [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef, 5, 0, 135), + [4656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 167), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 167), + [4660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 5, 0, 114), + [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 5, 0, 114), + [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_declaration, 6, 0, 167), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_declaration, 6, 0, 167), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8910), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10719), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11067), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10499), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8539), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9079), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11597), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10943), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8225), + [4716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, 0, 0), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10632), + [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10504), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8561), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [4732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9120), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11625), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10943), + [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8225), + [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10632), + [4759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10504), + [4762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [4765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4752), + [4768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4948), + [4771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8561), + [4774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4711), + [4777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4549), + [4780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9120), + [4783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11625), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [4801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10719), + [4804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8184), + [4807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11067), + [4810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10499), + [4813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(955), + [4816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4650), + [4819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4934), + [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8539), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), + [4827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4653), + [4830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(4552), + [4833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9079), + [4836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2132), + [4839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11597), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, 0, 0), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9448), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9534), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9533), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9579), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8898), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9547), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9470), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8934), + [4926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [4928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pack_expansion, 2, 0, 28), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [4932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(2524), + [4935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1564), + [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8873), + [4941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9431), + [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9555), + [4947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9283), + [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1841), + [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3569), + [4956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1736), + [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8930), + [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3732), + [4965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1644), + [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8889), + [4971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9448), + [4974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9534), + [4977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9401), + [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1871), + [4983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3704), + [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1706), + [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8901), + [4992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9460), + [4995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9634), + [4998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9281), + [5001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1872), + [5004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3738), + [5007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1723), + [5010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8856), + [5013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9535), + [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9429), + [5019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9356), + [5022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1876), + [5025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3657), + [5028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1782), + [5031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8904), + [5034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9525), + [5037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9522), + [5040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9288), + [5043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1789), + [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1752), + [5049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8914), + [5052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1812), + [5055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8935), + [5058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3571), + [5061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1616), + [5064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8910), + [5067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3754), + [5070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1791), + [5073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8898), + [5076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9547), + [5079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9470), + [5082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3060), + [5085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1670), + [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8875), + [5091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9339), + [5094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3711), + [5097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1688), + [5100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8862), + [5103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9533), + [5106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9579), + [5109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9333), + [5112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1867), + [5115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1913), + [5118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8929), + [5121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(3748), + [5124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1898), + [5127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(8934), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8753), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7219), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11284), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9352), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10757), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8398), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8398), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8246), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11342), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11355), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8579), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8567), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11168), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7500), - [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9144), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7801), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11596), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9127), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11640), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11632), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11609), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9160), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11619), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11615), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11635), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11624), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11628), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9097), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [5508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(259), - [5511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1575), - [5514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(274), - [5517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1735), - [5520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1935), - [5523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1935), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(253), - [5529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1696), - [5532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1696), - [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1586), - [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1697), - [5541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1441), - [5544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11362), - [5547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11697), - [5550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11730), - [5553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9139), - [5556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7147), - [5559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10058), - [5562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9469), - [5565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7216), - [5568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7206), - [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1532), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10601), - [5577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1533), - [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6937), - [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7695), - [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(512), - [5589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [5591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), - [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), - [5597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [5605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), - [5607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10310), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10310), - [5636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), - [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), - [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), - [5645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), - [5647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [5650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(293), - [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8983), - [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4991), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10729), - [5669] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [5678] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), - [5684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10989), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10979), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11012), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11511), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10682), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11565), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11535), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8646), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8413), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3397), - [5805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [5808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [5811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [5814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1760), - [5817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4226), - [5820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), - [5823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8911), - [5826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1565), - [5829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), - [5831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7970), - [5834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9573), - [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), - [5840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), - [5843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10894), - [5846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10896), - [5849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10981), - [5852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8646), - [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9126), - [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6386), - [5861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9926), - [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9586), - [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6009), - [5870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5958), - [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11551), - [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9349), - [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1652), - [5882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10527), - [5885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), - [5888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6969), - [5891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7683), - [5894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(394), - [5897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10753), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8925), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10617), - [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), - [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8716), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10969), - [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11072), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11074), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10719), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10721), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11160), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11162), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(297), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9553), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10605), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11187), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11232), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11215), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11227), - [6019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11226), - [6022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11228), - [6025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11230), - [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11237), - [6031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11235), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [6036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11157), - [6039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11113), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11264), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 84), - [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 160), - [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 111), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 200), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), - [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 111), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [6089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11109), - [6092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10669), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), - [6099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11395), - [6102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10867), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11296), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10913), - [6118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11421), - [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10937), - [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11009), - [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11013), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), - [6132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11048), - [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11049), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), - [6140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11480), - [6143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11089), - [6146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11092), - [6149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11093), - [6152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11507), - [6155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11106), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10633), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7927), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11325), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11143), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5685), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11347), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10908), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11367), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11248), - [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11291), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [6254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11293), - [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11295), - [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11333), - [6263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11338), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11387), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8250), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11406), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8836), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10780), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8844), - [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11353), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10711), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11044), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10674), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11036), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10704), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11040), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11331), - [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11725), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10712), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7958), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), - [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7946), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7948), - [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), - [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7952), - [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7914), - [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7957), - [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7967), - [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7960), - [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7941), - [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7974), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7932), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7961), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7959), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7908), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7984), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), - [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7979), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7983), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9892), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8433), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8756), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9734), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), - [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), - [6483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(2803), - [6486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(2803), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11416), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9280), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11439), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9141), - [6499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4930), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10770), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7749), - [6510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3651), - [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7749), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10146), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9979), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10083), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10070), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11416), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11439), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9141), - [6540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4848), - [6543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3651), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10770), - [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7749), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9733), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9768), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), - [6565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), - [6569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), - [6572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), - [6574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), - [6576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), - [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(319), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11147), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11499), - [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10991), - [6594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), - [6596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 18), - [6598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), - [6601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), - [6603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 18), - [6605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), - [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), - [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 0), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 0), - [6616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), - [6618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), - [6620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), - [6622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), - [6624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), - [6626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), - [6628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 0), - [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), - [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), - [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11594), - [6638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3992), - [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3992), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11380), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11380), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9292), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11433), - [6656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4814), - [6659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4768), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10628), - [6666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7750), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4134), - [6676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4134), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11458), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11458), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9301), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11478), - [6691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4917), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11018), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), - [6702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11416), - [6705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11416), - [6708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4928), - [6711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4063), - [6714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4063), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11470), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11470), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9308), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11479), - [6729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4921), - [6732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5046), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11042), - [6739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7761), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [6746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5257), - [6749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7742), - [6752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), - [6754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), - [6756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4289), - [6759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4289), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11442), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11442), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9304), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11467), - [6774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4913), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10916), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [6785] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(311), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11349), - [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5677), - [6798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7756), - [6801] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(320), - [6805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11408), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11349), - [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11474), - [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11401), - [6859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), - [6863] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(318), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), - [6873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(303), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9475), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10613), - [6880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(298), - [6883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10589), - [6889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [6891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), - [6893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2047), - [6896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11401), - [6899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), - [6901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), - [6903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2059), - [6906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11439), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10612), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [6935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [6937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), - [6939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11416), - [6942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [6944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), - [6946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), - [6949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2070), - [6952] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(321), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11389), - [6964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(299), - [6967] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(299), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11327), - [6977] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(295), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9541), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11369), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10604), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [7003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2037), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11381), - [7028] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(307), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11422), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11408), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10607), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [7060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(295), - [7063] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(305), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9513), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11435), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10609), - [7077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), - [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), - [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), - [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), - [7087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), - [7090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), - [7092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 1, 0, 0), - [7094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), - [7097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 1, 0, 0), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [7101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(318), - [7104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), - [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), - [7108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), - [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11474), - [7132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), - [7134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [7142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11459), - [7158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [7160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), - [7162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [7168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4325), - [7171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4325), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11339), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11339), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9396), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11427), - [7186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4939), - [7189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5278), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10739), - [7196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7769), - [7199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [7207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), - [7209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2047), - [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [7214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11401), - [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [7223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), - [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9004), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [7231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_specifier, 3, 0, 0), - [7233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_specifier, 3, 0, 0), - [7235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 6), - [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 6), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11400), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8261), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [7251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), - [7253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2047), - [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [7258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11401), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [7263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(311), - [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11427), - [7270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4925), - [7273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5278), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10739), - [7280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7741), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), - [7287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), - [7291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), - [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [7301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), - [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11447), - [7327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2239), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [7334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2216), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [7341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 21), - [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8298), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8828), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11603), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7466), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9097), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11634), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11626), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11613), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11609), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11162), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9130), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11590), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9082), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11622), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9113), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11629), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11618), + [5506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(268), + [5509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1663), + [5512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(251), + [5515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1610), + [5518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1563), + [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1563), + [5524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(269), + [5527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1734), + [5530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1734), + [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1669), + [5536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1735), + [5539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1404), + [5542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11356), + [5545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11691), + [5548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(11724), + [5551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9141), + [5554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7059), + [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10057), + [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(9567), + [5563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7376), + [5566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7366), + [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1588), + [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(10595), + [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(1589), + [5578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(6942), + [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(7671), + [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), SHIFT(437), + [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 3, 0, 0), + [5591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_declaration, 4, 0, 0), + [5595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributed_declarator_repeat1, 1, 0, 0), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_modifiers, 1, 0, 0), + [5609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [5613] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), + [5619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(304), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8997), + [5634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 1), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [5641] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4918), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10708), + [5653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10301), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), + [5665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), + [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [5671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7452), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [5675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10301), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_capture_specifier, 2, 0, 0), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11081), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10624), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11092), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11389), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10782), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11539), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11228), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8618), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [5774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(3299), + [5777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [5780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [5783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [5786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), + [5789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(4235), + [5792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [5795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8894), + [5798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1575), + [5801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), + [5803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7966), + [5806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9451), + [5809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1570), + [5812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10933), + [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11153), + [5821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11157), + [5824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(8618), + [5827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9152), + [5830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(6410), + [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9801), + [5836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9474), + [5839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5966), + [5842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(5984), + [5845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(11011), + [5848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(9383), + [5851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1781), + [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(10417), + [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), + [5860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7157), + [5863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(7667), + [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(467), + [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requirement_seq_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10908), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8916), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10302), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8757), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10786), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10791), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(312), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10599), + [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11497), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_default_capture, 1, 0, 0), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11191), + [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11195), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11259), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11272), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10946), + [5998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10911), + [6001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10965), + [6004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10904), + [6007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10968), + [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10948), + [6013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10909), + [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11235), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10899), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [6028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10862), + [6031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10915), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [6038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 0), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [6042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 2, 1, 112), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [6050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10838), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 200), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 84), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 160), + [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 112), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10871), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11290), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11254), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11247), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11125), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11128), + [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11369), + [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11266), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [6126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10920), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), + [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10857), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), + [6138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10975), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10895), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11361), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), + [6170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10897), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10970), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7937), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11545), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11164), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10979), + [6224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10981), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11600), + [6229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11168), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), + [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11180), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10984), + [6244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(10987), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10797), + [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10698), + [6251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11022), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10689), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11138), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8848), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10811), + [6270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11161), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11219), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11713), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6627), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10840), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [6297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11007), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11381), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [6310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11061), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11319), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11137), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11229), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11341), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8292), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [6360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11082), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7917), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7928), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7958), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7955), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7956), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7959), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7976), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7912), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7927), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7946), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7957), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7978), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7951), + [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [6417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7947), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7972), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7916), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7954), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7924), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7925), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7963), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7911), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7944), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7910), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7969), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7952), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7968), + [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9957), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8379), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8379), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8667), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9408), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [6469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), + [6471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), + [6473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(2891), + [6476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(2891), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11410), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9403), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11433), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9143), + [6489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4973), + [6492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3637), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10764), + [6499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7741), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9757), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9891), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10002), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11410), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11433), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9143), + [6522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4812), + [6525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3637), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10764), + [6532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7741), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10122), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9890), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9922), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9987), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7741), + [6559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), + [6563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), + [6570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), + [6573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(307), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11588), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11074), + [6586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [6588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 2, 0, 0), + [6590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [6592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 2, 0), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11493), + [6596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 1, 0), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11141), + [6602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [6604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 1, 0), + [6606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [6608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 3, 0), + [6610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 3, 0), + [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 2, 0), + [6618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3984), + [6621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(3984), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11374), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11374), + [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9270), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11427), + [6636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4776), + [6639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4800), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10622), + [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7758), + [6649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), + [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 18), + [6653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), + [6656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 2, 0, 17), + [6658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_function, 2, 0, 18), + [6660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_type, 2, 0, 17), REDUCE(sym_template_function, 2, 0, 18), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4055), + [6670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4055), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11452), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11452), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9282), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11472), + [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4950), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11012), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [6696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4074), + [6699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4074), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11464), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11464), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9289), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11473), + [6714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4957), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11036), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), + [6725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11410), + [6728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11410), + [6731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4968), + [6734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5132), + [6737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7765), + [6740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5105), + [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7793), + [6746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [6748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 1, 0, 0), + [6750] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(309), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11343), + [6760] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(313), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11402), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11343), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4308), + [6783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4308), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11436), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11436), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9285), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11461), + [6798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4925), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10910), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [6809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5686), + [6812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7748), + [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [6819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 1, 1, 0), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11395), + [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 0), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11468), + [6857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(319), + [6860] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(303), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11140), + [6870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_start, 2, 0, 0), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10201), + [6878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), + [6882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2046), + [6885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11395), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9653), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10606), + [6896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(302), + [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9526), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10582), + [6905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), + [6908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11433), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [6917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), + [6921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2065), + [6924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2072), + [6927] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(308), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11321), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [6949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(308), + [6952] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(318), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11383), + [6964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), + [6968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11410), + [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11375), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11402), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10601), + [7011] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(316), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11416), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10602), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(310), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9575), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11363), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10598), + [7046] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(321), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11429), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10603), + [7060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2040), + [7067] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 1), REDUCE(sym_expression, 1, 0, 0), SHIFT(310), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11453), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11468), + [7113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [7115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignas_qualifier, 4, 0, 0), + [7117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), + [7119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), + [7122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), + [7124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 1, 0, 0), + [7126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 1, 0, 0), + [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 1, 0, 0), + [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__splice_specialization_specifier, 2, 0, 0), + [7137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(303), + [7140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2, 0, 0), + [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), + [7144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [7146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 4, 0, 0), + [7148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3, 0, 0), + [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3, 0, 0), + [7152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4, 0, 0), + [7154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4, 0, 0), + [7156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_pointer_modifier, 1, 0, 0), + [7160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4342), + [7163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4342), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11333), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9386), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11421), + [7174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4962), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10743), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7782), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [7187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_specifier, 3, 0, 0), + [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_specifier, 3, 0, 0), + [7191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [7195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), + [7197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2046), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [7202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11395), + [7205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [7209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [7211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), + [7213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2046), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [7218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11395), + [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11333), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11421), + [7229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5022), + [7232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5428), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10743), + [7239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7738), + [7242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_unaligned_ptr_modifier, 1, 0, 0), + [7246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), + [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8993), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [7254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 6), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11394), + [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8008), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8243), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [7276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(5428), + [7279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7782), + [7282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(309), + [7285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11441), + [7313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2233), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [7320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2205), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [7327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [7329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type_identifier, 2, 0, 34), + [7331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type_identifier, 2, 0, 0), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 21), + [7343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 21), [7345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), [7347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 0), - [7349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), - [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), - [7353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 21), - [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 21), - [7357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 104), - [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 104), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [7367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [7371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 102), - [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 102), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8778), + [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [7357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 105), + [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 105), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), + [7369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 2), + [7373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 21), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [7379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 1), + [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 103), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 103), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8820), [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 50), [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 50), - [7391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 1, 0, 2), - [7393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 1, 0, 2), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 51), - [7399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 51), - [7401] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(311), - [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), - [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), - [7413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), - [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), - [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), - [7423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 100), - [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 100), - [7427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), - [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), - [7431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 105), - [7433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 105), - [7435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 108), - [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 108), - [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [7453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 47), - [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 47), - [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), - [7459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), - [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), - [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), - [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), - [7473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), - [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11401), - [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), - [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), - [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 7), - [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 7), - [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), - [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 151), - [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 151), - [7525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [7528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), - [7531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 152), - [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 152), - [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), - [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), - [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7384), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), - [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), - [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), - [7551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 11), - [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 11), - [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), - [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [7561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 12), - [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 12), - [7565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), - [7567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), - [7569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [7571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [7575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2365), - [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [7580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11381), - [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [7585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 107), - [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 107), - [7599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 11), - [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 11), - [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 6), - [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 6), - [7607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 51), - [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 51), - [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [7613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2365), - [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), - [7618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11381), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [7623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 7), - [7625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 7), - [7627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), - [7631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), - [7635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 100), - [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 100), - [7639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 102), - [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 102), - [7643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), - [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), - [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), - [7651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), - [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), - [7655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 105), - [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 105), - [7659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), - [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), - [7663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 108), - [7665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 108), - [7667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 47), - [7669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 47), - [7671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 153), - [7673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 153), - [7675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), - [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), - [7679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [7681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), - [7683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), - [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [7687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1295), - [7690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), - [7693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), - [7697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), - [7699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), - [7701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), - [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [7707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), - [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [7713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [7715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), - [7717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 103), - [7719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 103), - [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), - [7727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), - [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), - [7731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), - [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), - [7735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), - [7739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 12), - [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 12), - [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 13), - [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 13), - [7747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [7751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 12), - [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 12), - [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 12), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 12), - [7759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), - [7761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), - [7763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), - [7765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), - [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 151), - [7769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 151), - [7771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 152), - [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 152), - [7775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 49), - [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 49), - [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), - [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), - [7783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), - [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), - [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [7789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), - [7791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), - [7793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(2803), - [7796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(2803), - [7799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4930), - [7802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3651), - [7805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7749), - [7808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6146), - [7811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6146), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11432), - [7818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11432), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), - [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11463), - [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4899), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10855), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), - [7837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6563), - [7841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9099), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4848), - [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [7854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2434), - [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11471), - [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [7862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2434), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [7867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11471), - [7870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3651), - [7873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7749), - [7876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6137), - [7879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6137), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11450), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11450), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9306), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11477), - [7894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4915), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10973), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), - [7910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11381), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [7917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11339), - [7920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11339), - [7923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4924), - [7926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6701), - [7929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7780), - [7932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6602), - [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7771), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [7942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2423), - [7945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [7947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11459), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [7954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2423), - [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [7959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11459), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), - [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), - [7970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4848), - [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3651), - [7976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7749), - [7979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2434), - [7982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11471), - [7985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), - [7988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11459), - [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4930), - [7994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3651), - [7997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7749), - [8000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [8006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), - [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), - [8010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2392), - [8013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2392), - [8016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11433), - [8019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2452), - [8022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2452), - [8025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11479), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11400), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [8034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), - [8037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2492), - [8040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11478), - [8043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11380), - [8046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11380), - [8049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), - [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [8054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2576), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [8059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11447), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11381), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [8070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2576), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [8075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11447), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10560), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), - [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11455), - [8102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2576), - [8105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11447), - [8108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2369), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11316), - [8127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2374), - [8130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11458), - [8133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11458), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11459), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11471), - [8146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11470), - [8149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11470), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11360), - [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11360), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), - [8162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3992), - [8165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3992), - [8168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4814), - [8171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(299), - [8174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4768), - [8177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7750), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [8182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2652), - [8185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11474), - [8188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 155), - [8190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 155), - [8192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 14), - [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 14), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [8202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), - [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), - [8208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11467), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [8217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), - [8220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2618), - [8223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8647), - [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [8232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11125), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7901), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9297), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11127), - [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11286), - [8246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2725), - [8249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2725), - [8252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2709), - [8255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(307), - [8258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(311), - [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11447), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11454), - [8267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11454), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4814), - [8274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11442), - [8277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11442), - [8280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), - [8284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2724), - [8287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2473), - [8290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(11361), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11466), - [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11466), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4768), - [8304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7750), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [8309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2499), - [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4134), - [8315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4134), - [8318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4917), - [8321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5257), - [8324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7742), - [8327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(305), - [8330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11416), - [8333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11416), - [8336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4928), - [8339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2683), - [8342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2683), - [8345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2686), - [8348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2726), - [8351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11316), - [8354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4063), - [8357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4063), - [8360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4921), - [8363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5046), - [8366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7761), - [8369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2727), - [8372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11427), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8088), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [8389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [8391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11416), - [8394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11416), - [8397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4928), - [8400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10338), - [8403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2538), - [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [8408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), - [8410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9658), - [8413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10593), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6002), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [8422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), - [8424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), - [8426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4848), - [8429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4917), - [8432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5257), - [8435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7742), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10338), - [8440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4921), - [8443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5046), - [8446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7761), - [8449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11339), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [8454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [8456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), - [8458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3651), - [8461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7749), - [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [8466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [8468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8773), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8805), - [8478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4930), - [8481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3651), - [8484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7749), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [8493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), - [8496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2786), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11438), - [8501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11438), - [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [8505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2607), - [8508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4289), - [8511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4289), - [8514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4913), - [8517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5677), - [8520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7756), - [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [8537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), - [8540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), - [8543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2932), - [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8268), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7990), - [8556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(321), - [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 2, 0, 0), - [8561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), - [8564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 2, 0, 0), - [8566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), - [8569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1297), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11455), - [8592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1273), - [8595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4913), - [8598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11443), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), - [8626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1276), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [8633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5677), - [8636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7756), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [8641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [8643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 206), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 206), - [8647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 71), - [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 71), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), - [8657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [8659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [8661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 213), - [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 213), - [8665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 222), - [8667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 222), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), - [8683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 192), - [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 192), - [8687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 213), - [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 213), - [8691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 214), - [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 214), - [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [8697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [8701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(298), - [8704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), - [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [8716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2726), - [8719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [8721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11316), - [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [8726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 223), - [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 223), - [8730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), - [8732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), - [8734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), - [8736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), - [8738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 214), - [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 214), - [8742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), - [8744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), - [8746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), - [8748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), - [8750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), - [8752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), - [8754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [8756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2726), - [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [8761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11316), - [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [8766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 71), - [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 71), - [8770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), - [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), - [8774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 61), - [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 61), - [8778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 193), - [8780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 193), - [8782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 71), - [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 71), - [8786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 72), - [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 72), - [8790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 134), - [8792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 134), - [8794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 71), - [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 71), - [8798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 186), - [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 186), - [8802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 192), - [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 192), - [8806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 206), - [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 206), - [8810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 193), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 193), - [8814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 61), - [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 61), - [8818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), - [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), - [8822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 223), - [8824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 223), - [8826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 133), - [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 133), - [8830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(299), - [8833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), - [8835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), - [8837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), - [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), - [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10284), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10356), - [8845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4814), - [8848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10356), - [8851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4768), - [8854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7750), - [8857] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(299), - [8861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3302), - [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [8868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10284), - [8871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [8873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3290), - [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [8880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4921), - [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [8885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), - [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), - [8889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), - [8891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), - [8893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 129), - [8895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 129), - [8897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), - [8899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), - [8901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 130), - [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 130), - [8905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), - [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), - [8909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 70), - [8911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 70), - [8913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), - [8915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), - [8917] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(305), - [8921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 77), - [8923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 77), - [8925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(320), - [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5046), - [8931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7761), - [8934] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(307), - [8938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), - [8940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), - [8942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 184), - [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 184), - [8946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 78), - [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 78), - [8950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 22), - [8952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 22), - [8954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 33), - [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 33), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [8968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [8970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11416), - [8973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11416), - [8976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4928), - [8979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), - [8981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), - [8983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4917), - [8986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5257), - [8989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7742), - [8992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 41), - [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 41), - [8996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), - [8998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), - [9000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), - [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), - [9004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(307), - [9007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), - [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), - [9011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), - [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), - [9015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3651), - [9018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7749), - [9021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(3651), - [9024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7749), - [9027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), - [9029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), - [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [9033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 27), - [9035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 27), - [9037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), - [9041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 27), - [9043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 27), - [9045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 182), - [9047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 182), - [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11316), - [9053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [9056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), - [9059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 92), - [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 92), - [9063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), - [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), - [9067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), - [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), - [9071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), - [9073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), - [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), - [9077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9280), - [9080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), - [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), - [9084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 44), - [9086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 44), - [9088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [9090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), - [9092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(311), - [9095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 124), - [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 124), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [9107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3295), - [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [9116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), - [9118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), - [9120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), - [9122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), - [9124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4913), - [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [9129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), - [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), - [9133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5677), - [9136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7756), - [9139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), - [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), - [9143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), - [9145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), - [9147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), - [9150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), - [9152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), - [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [9156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3877), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [9161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11451), - [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [9166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3877), - [9169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11451), - [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [9174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3945), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [9179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11443), - [9182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [9184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [9186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3945), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [9191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11443), - [9194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [9196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4325), - [9199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4325), - [9202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4925), - [9205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5278), - [9208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7741), - [9211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4939), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [9216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5278), - [9219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7769), - [9222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), - [9224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), - [9226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 21), - [9228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 21), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [9236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), - [9239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [9244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11315), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [9248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 46), - [9250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 46), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [9256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 68), - [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 68), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [9262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(320), - [9265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3576), - [9268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9475), - [9271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10613), - [9274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 96), - [9276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 96), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [9284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(301), - [9287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4939), - [9290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5278), - [9293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7769), - [9296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), - [9298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), - [9300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 180), - [9302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 180), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [9308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [9310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11315), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [9316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), - [9318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [9322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), - [9324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), - [9330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(318), - [9333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [9335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), - [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), - [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), - [9341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3629), - [9344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9506), - [9347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10589), - [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [9352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4925), - [9355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5278), - [9358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7741), - [9361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [9363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), - [9365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 135), - [9367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 135), - [9369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), - [9373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), - [9375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), - [9377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 117), - [9379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 117), - [9381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 143), - [9383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 143), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7791), - [9389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), - [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), - [9393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 23), - [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 23), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7790), - [9401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3877), - [9404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11451), - [9407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [9409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), - [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8824), - [9415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 187), - [9417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 187), - [9419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 124), - [9421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 124), - [9423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), - [9425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), - [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), - [9429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), - [9431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 95), - [9433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 95), - [9435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 182), - [9437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 182), - [9439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), - [9441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), - [9447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), - [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7773), - [9453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(10303), - [9456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(11075), - [9459] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8589), - [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [9465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3945), - [9468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11443), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11075), - [9473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(8589), - [9476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), - [9478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), - [9480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), - [9482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), - [9484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), - [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), - [9488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(321), - [9491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 67), - [9493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 67), - [9495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), - [9497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), - [9499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(311), - [9502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), - [9505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9513), - [9508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10609), - [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [9513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 125), - [9515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 125), - [9517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [9519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), - [9521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(307), - [9524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), - [9527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9420), - [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10608), - [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [9535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 175), - [9537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 175), - [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), - [9541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), - [9544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), - [9546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(305), - [9549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [9554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3991), - [9557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3991), - [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11463), - [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [9565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), - [9568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4026), - [9571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11477), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8085), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8795), - [9578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), - [9580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 75), - [9582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(311), - [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [9591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11451), - [9595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), - [9597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reflect_expression, 2, 0, 0), - [9599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reflect_expression, 2, 0, 0), - [9601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), - [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7033), - [9607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3823), - [9610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4265), - [9613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3497), - [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [9618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11094), - [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [9623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3766), - [9626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), - [9628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), - [9630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), - [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11443), - [9638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 4), - [9640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 4), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8223), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), - [9650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), - [9652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 1, 79), - [9654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(311), - [9657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), - [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), - [9661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11450), - [9664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11450), - [9667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11432), - [9670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11432), - [9673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 4), - [9675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 4), - [9677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 14), - [9679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 14), - [9681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 4), - [9683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 4), - [9685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [9687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [9689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), - [9691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), - [9693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 18), - [9695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 18), - [9697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), - [9699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [9703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 175), - [9705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 175), - [9707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 58), - [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 58), - [9711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), - [9713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 76), - [9715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 89), - [9717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 89), - [9719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4220), - [9722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3497), - [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [9727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11094), - [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [9732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), - [9734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), - [9736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), - [9738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), - [9740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), - [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6972), - [9748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 115), - [9750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 115), - [9752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 29), - [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 29), - [9756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 142), - [9758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 142), - [9760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), - [9762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 34), - [9764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 116), - [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 116), - [9768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 227), - [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 227), - [9772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 189), - [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 189), - [9776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [9778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 176), - [9780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 176), - [9782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4183), - [9785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11455), - [9788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 163), - [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 163), - [9792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 228), - [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 228), - [9796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), - [9798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), - [9800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 1, 8), - [9802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 1, 8), - [9804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), - [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), - [9808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), - [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), - [9812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), - [9814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), - [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [9818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 231), - [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 231), - [9822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), - [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), - [9826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 58), - [9828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 58), - [9830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 166), - [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 166), - [9834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 1, 55), - [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 1, 55), - [9838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4848), - [9841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3651), - [9844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7749), - [9847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3897), - [9850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9553), - [9853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10605), - [9856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 141), - [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 141), - [9860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), - [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), - [9864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 30), - [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 30), - [9868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 66), - [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 66), - [9872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 201), - [9874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 201), - [9876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), - [9878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), - [9880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 204), - [9882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 204), - [9884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [9886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [9888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), - [9890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), - [9892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 219), - [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 219), - [9896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 220), - [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 220), - [9900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), - [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), - [9904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4930), - [9907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), - [9909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), - [9911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), - [9913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), - [9915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), - [9917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), - [9919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), - [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), - [9923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), - [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), - [9927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(311), - [9930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 94), - [9932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 94), - [9934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), - [9936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), - [9938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), - [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), - [9942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 46), - [9944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 46), - [9946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 112), - [9948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 112), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [9952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4309), - [9955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4309), - [9958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4310), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11426), - [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11426), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [9967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [9969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4321), - [9972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4321), - [9975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4322), - [9978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(295), - [9981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6146), - [9984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6146), - [9987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4899), - [9990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), - [9992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), - [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [9996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11339), - [9999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11339), - [10002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4924), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8105), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [10011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6137), - [10014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6137), - [10017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4915), - [10020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6602), - [10023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7771), - [10026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), - [10028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), - [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [10034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), - [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), - [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [10044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), - [10048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), - [10051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4024), - [10054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4756), - [10057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11125), - [10060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9297), - [10063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11127), - [10066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11286), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [10071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), - [10073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11446), - [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11446), - [10079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6701), - [10082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7780), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [10091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4925), - [10094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), - [10097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9604), - [10100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10584), - [10103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8086), - [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), - [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [10109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8089), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8782), - [10116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4915), - [10119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4899), - [10122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11339), - [10125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11339), - [10128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4924), - [10131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4939), - [10134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6602), - [10137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7771), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [10142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4333), - [10145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11340), - [10148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5278), - [10151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7741), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), - [10158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6701), - [10161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7780), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [10166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5278), - [10169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7769), - [10172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 137), - [10174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 137), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7525), - [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), - [10184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 39), - [10186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 39), - [10188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 86), - [10190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 86), - [10192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 67), - [10194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 67), - [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), - [10198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), - [10200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), - [10202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), - [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), - [10206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), - [10208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), - [10210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), - [10212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), - [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), - [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8832), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), - [10226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), - [10228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), - [10230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), - [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7562), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), - [10270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [10272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), - [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [10278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 69), - [10280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 69), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [10290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4228), - [10293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), - [10295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), - [10297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4928), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6965), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [10314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [10316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [10318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11299), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [10330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4814), - [10333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4768), - [10336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7750), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [10343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4921), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8098), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [10350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8022), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [10354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11284), - [10357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11284), - [10360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9351), - [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11340), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), - [10369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8261), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10670), - [10376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7778), - [10379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4917), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [10384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), - [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), - [10391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(4768), - [10394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7750), - [10397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5257), - [10400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7742), - [10403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5046), - [10406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7761), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [10411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4333), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [10416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11340), - [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), - [10423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4333), - [10426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [10428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11340), - [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [10435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), - [10437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [10473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), - [10475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), - [10477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 127), - [10479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 127), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [10485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), - [10487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), - [10489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 183), - [10491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 183), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [10513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9292), - [10516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 136), - [10518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 136), - [10520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5257), - [10523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7742), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [10530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5046), - [10533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7761), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [10538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), - [10540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), - [10542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), - [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8818), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [10564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), - [10566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [10574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4915), - [10577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9308), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11284), - [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11284), - [10586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9141), - [10589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9141), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [10594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11339), - [10597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11339), - [10600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4924), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [10605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4899), - [10608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6701), - [10611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7780), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [10618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6602), - [10621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7771), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [10626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(4768), - [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8150), - [10631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4913), - [10634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5677), - [10637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7756), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [10642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9301), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8102), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8711), - [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8986), - [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8993), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8109), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [10715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [10739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [10741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [10747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [10751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [10795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8238), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11639), - [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [10811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5677), - [10814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7756), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9351), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [10821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8549), - [10824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7745), - [10827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [10831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5257), - [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8985), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [10852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(301), - [10855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 114), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8549), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [10865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4735), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [10876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5046), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9000), - [10883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [10887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9396), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11645), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [10904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9304), - [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10820), - [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [10923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [10926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), - [10928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), - [10930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [10933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), - [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), - [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10734), - [10979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7748), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8700), - [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), - [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8325), - [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), - [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), - [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7625), - [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11428), - [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8682), - [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7597), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8691), - [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7606), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7744), - [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8256), - [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), - [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), - [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), - [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7483), - [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8763), - [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7403), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6705), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), - [11054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5278), - [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8676), - [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10860), - [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), - [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), - [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8675), - [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), - [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), - [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), - [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), - [11099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), - [11103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8738), - [11107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), - [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8707), - [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), - [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), - [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [11125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11335), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), - [11133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7766), - [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7760), - [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), - [11151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [11154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5048), - [11157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4919), - [11160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), - [11163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9416), - [11166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(10684), - [11169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11094), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7739), - [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), - [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [11190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), - [11192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), - [11194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), - [11197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5072), - [11200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4756), - [11203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11125), - [11206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9297), - [11209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11127), - [11212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11286), - [11215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6356), - [11218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5677), - [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), - [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), - [11255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(305), - [11258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5108), - [11261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9650), - [11264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10612), - [11267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(299), - [11270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(319), - [11273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(298), - [11276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(299), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7751), - [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7752), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [11293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(301), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), - [11300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7781), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8236), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8236), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11102), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), - [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11153), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11163), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11166), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11171), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11200), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11209), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11249), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11254), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11733), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11256), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11270), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [11421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(305), - [11424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(305), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [11429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(303), - [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [11444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [11456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [11460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [11462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [11478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [11484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [11492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [11496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [11500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), - [11502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [11510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(299), - [11513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(299), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [11522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 126), SHIFT(307), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8040), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), - [11549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 61), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [11595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(307), - [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7832), - [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [11634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 145), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), - [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [11640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5562), - [11643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9541), - [11646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10604), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [11653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(307), - [11656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), - [11660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(302), - [11663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(305), - [11666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(307), - [11669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [11673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [11675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [11679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5688), - [11682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9492), - [11685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10607), - [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), - [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), - [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [11708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [11718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [11724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), - [11726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), - [11729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [11731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), - [11733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5278), - [11736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7769), - [11739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5278), - [11742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7769), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [11749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), - [11751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4925), - [11754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), - [11756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), - [11760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5278), - [11763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7741), - [11766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4939), - [11769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6178), - [11772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6187), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), - [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [11783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8071), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [11795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11417), - [11799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5278), - [11802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7741), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), - [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8149), - [11811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8076), - [11813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [11815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), - [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8184), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), - [11831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8174), - [11833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4924), - [11836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), - [11842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), - [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [11846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), - [11848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [11850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7104), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), - [11856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8575), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), - [11864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8340), - [11866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), - [11868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8573), - [11870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8574), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), - [11876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8278), - [11878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), - [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), - [11886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8267), - [11888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [11890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), - [11892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), - [11900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), - [11902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [11904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), - [11910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8289), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [11916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8365), - [11918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6387), - [11921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6387), - [11924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6388), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), - [11937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8269), - [11939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [11941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [11943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), - [11951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8257), - [11953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [11955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [11959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4915), - [11962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4899), - [11965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6701), - [11968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7780), - [11971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6602), - [11974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7771), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [11979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7763), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), - [11983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7762), - [11985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8770), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), - [11993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8490), - [11995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), - [12001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8474), - [12003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [12007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [12009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 150), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [12013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 150), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [12019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [12023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [12027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [12037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [12039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [12041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [12043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), - [12047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6602), - [12050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7771), - [12053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6701), - [12056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7780), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11429), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8448), - [12071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8448), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), - [12075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), - [12077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), - [12079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [12083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), - [12085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), - [12088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), - [12093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [12097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [12103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [12107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [12111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11285), - [12139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [12147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9306), - [12150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), - [12152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(6707), - [12155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7139), - [12157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11417), - [12160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), - [12166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8542), - [12168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4333), - [12171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6417), - [12174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7535), - [12177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), - [12180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11284), - [12183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9351), - [12186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11285), - [12189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7535), - [12192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4333), - [12195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11340), - [12198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6707), - [12201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11417), - [12204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9298), - [12207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), - [12209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6707), - [12212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), - [12214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11417), - [12217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), - [12219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6574), - [12222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6601), - [12225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [12229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [12235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [12239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [12243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), - [12265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8628), - [12267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6701), - [12270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6602), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [12287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [12289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [12297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 185), - [12299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 185), - [12301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9965), - [12305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [12317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6699), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [12324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [12328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [12334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [12338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [12342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [12346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [12360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [12366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [12370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [12376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [12380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [12384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [12404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 87), - [12406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11284), - [12409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11284), - [12412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9351), - [12415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8261), - [12418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7778), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7804), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [12443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 120), - [12445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 195), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [12481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8863), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [12525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 148), SHIFT(1496), - [12528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 148), - [12530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1496), - [12533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [12557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 199), - [12559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 215), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [12563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [12567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [12573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [12577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [12581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [12597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 196), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [12603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 170), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [12607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0), - [12609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [12613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [12619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [12623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [12627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [12655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 206), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8635), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11297), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [12665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 87), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [12671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11676), - [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [12681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 149), - [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), - [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10974), - [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), - [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11301), - [12691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 191), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11174), - [12699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8653), - [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11180), - [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8654), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10789), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [12711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 158), - [12713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 159), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [12717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), - [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [12727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 197), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [12735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), - [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [12753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 216), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [12757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [12759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), - [12761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [12785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [12787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8320), - [12789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [12793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [12795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), - [12797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), - [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [12801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [12803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), - [12805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [12837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [12839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8328), - [12841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), - [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [12855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9141), - [12858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9141), - [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [12873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), - [12875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8332), - [12877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), - [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9840), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9575), - [12885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 58), - [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [12895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [12897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8300), - [12899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7431), - [12901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), - [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9783), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [12918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [12928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [12930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [12932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [12934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [12936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [12938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [12940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [12942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [12952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 58), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8116), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [12964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 88), - [12966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7511), - [12969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11128), - [12972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [12974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11462), - [12976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11462), - [12978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [12980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9839), - [12982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [12984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9841), - [12986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [12988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8275), - [12990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [12994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [13004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [13006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [13008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [13022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [13024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [13026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [13028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [13030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [13032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [13034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [13036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8248), - [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [13044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9966), - [13046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [13050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8290), - [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [13062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [13064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [13066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [13068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [13070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [13072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [13074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 198), - [13076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [13078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [13080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [13082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [13084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [13086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [13088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [13090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), - [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [13094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [13096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [13098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), - [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [13108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11284), - [13111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11284), - [13114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9351), - [13117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), - [13119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [13123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), - [13125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [13127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), - [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), - [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), - [13133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [13135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [13137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [13139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), - [13141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), - [13144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [13146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8549), - [13149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7745), - [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [13154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), - [13156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [13158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8261), - [13161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7778), - [13164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8867), - [13166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), - [13168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [13170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8798), - [13172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), - [13174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7700), - [13176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9161), - [13178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8317), - [13180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), - [13182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), - [13184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), - [13186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), - [13188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7748), - [13191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9141), - [13194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9141), - [13197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7781), - [13200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), - [13202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8549), - [13205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7745), - [13208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), - [13210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [13212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), - [13214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [13216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11146), - [13218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7671), - [13221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7676), - [13224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7697), - [13227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7691), - [13230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7694), - [13233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7690), - [13236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7748), - [13239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7781), - [13242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11284), - [13245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11284), - [13248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9351), - [13251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8261), - [13254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7778), - [13257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), SHIFT(4065), - [13260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8967), - [13262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8970), - [13264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8965), - [13266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [13268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [13270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [13272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9478), - [13274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), SHIFT(7699), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [13281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [13283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9510), - [13285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(4065), - [13288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [13290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [13292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [13294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9419), - [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [13300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [13302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9425), - [13304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(4065), - [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [13311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), - [13313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9607), - [13315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [13321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [13323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9534), - [13325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), SHIFT(4065), - [13328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), SHIFT(4065), - [13331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), SHIFT(4065), - [13334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), SHIFT(7687), - [13337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), SHIFT(7689), - [13340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [13342] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(4065), - [13346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [13350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6650), - [13352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9482), - [13354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [13356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [13358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [13360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9640), - [13362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), SHIFT(7668), - [13365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), SHIFT(4065), - [13368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8977), - [13370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7789), - [13372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8976), - [13374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9141), - [13377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9141), - [13380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), - [13382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), - [13384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), - [13386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), - [13388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 21), - [13390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 21), - [13392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 21), - [13394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 21), - [13396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8549), - [13399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7745), - [13402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [13404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8424), - [13406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9560), - [13408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [13410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [13412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(7682), - [13415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), - [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8685), - [13419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8597), - [13421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8295), - [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), - [13427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8697), - [13429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), - [13431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9391), - [13433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8431), - [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [13441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [13443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [13445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [13449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8680), - [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [13453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), - [13455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), - [13457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [13459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), - [13461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), - [13463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), - [13465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9398), - [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [13469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [13471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8746), - [13475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [13481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), - [13483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9646), - [13485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7748), - [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), - [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9207), - [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8020), - [13494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [13496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11591), - [13498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [13500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9270), - [13502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8765), - [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9171), - [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8569), - [13514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8719), - [13516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4946), - [13518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [13520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [13522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), - [13524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [13528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8425), - [13530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8034), - [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [13534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6677), - [13536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7781), - [13539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8639), - [13541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9267), - [13543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9155), - [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10754), - [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), - [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), - [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [13553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9680), - [13555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11181), - [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [13561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9246), - [13563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [13569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10692), - [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7912), - [13575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9227), - [13577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [13585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [13587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9261), - [13589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11558), - [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), - [13595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9263), - [13597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [13599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [13603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9163), - [13605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10818), - [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7921), - [13611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9196), - [13613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [13615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [13619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9216), - [13621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7925), - [13625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9228), - [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), - [13629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9230), - [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [13633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), - [13637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9231), - [13639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [13643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9190), - [13645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7931), - [13649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9241), - [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [13653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10968), - [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), - [13659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9232), - [13661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [13663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), - [13667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9223), - [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [13673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), - [13677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), - [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [13687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7947), - [13691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9203), - [13693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [13697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7949), - [13701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9245), - [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [13709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7954), - [13713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9170), - [13715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9297), - [13718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7956), - [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9206), - [13724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [13728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [13730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [13734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7963), - [13738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9247), - [13740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), - [13742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), - [13744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9179), - [13746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), - [13748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9180), - [13750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [13752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), - [13756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9249), - [13758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7972), - [13760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [13762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [13764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7975), - [13766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [13768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [13770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9259), - [13772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [13774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [13776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [13778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [13780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9032), - [13782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [13784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [13786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [13788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8806), - [13790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9222), - [13792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9351), - [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [13803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10262), - [13809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8241), - [13811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9220), - [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10349), - [13821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9566), - [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [13825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9264), - [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10324), - [13835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9374), - [13837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9208), - [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), - [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [13845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8310), - [13847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9202), - [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), - [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [13857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), - [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [13861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8274), - [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [13867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8255), - [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [13879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8261), - [13882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7778), - [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [13887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8261), - [13890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7778), - [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8599), - [13895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10184), - [13897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10562), - [13899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), - [13903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), - [13905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [13907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), - [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), - [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), - [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [13917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8167), - [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), - [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), - [13923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8187), - [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), - [13927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8224), - [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), - [13931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8191), - [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), - [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), - [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [13945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), - [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10491), - [13953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [13955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [13957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), - [13959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [13961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [13963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [13965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [13967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [13969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [13971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [13977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [13979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [13981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8768), - [13983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8947), - [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10370), - [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10417), - [13997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(8261), - [14000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [14002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [14004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), - [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), - [14008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [14010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10311), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), - [14014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8190), - [14016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8078), - [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10015), - [14020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [14022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [14024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [14026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [14028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), - [14030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), - [14032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), - [14036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [14038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [14040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), - [14042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [14044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [14046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [14048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11342), - [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), - [14053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9058), - [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10901), - [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [14063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), - [14065] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11204), - [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [14071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6763), - [14073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7603), - [14075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7692), - [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8231), - [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10213), - [14085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8136), - [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), - [14089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10472), - [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), - [14093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8205), - [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), - [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), - [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), - [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), - [14103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), - [14105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), - [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), - [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8303), - [14111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), - [14113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), - [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), - [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), - [14121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), - [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), - [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), - [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8185), - [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), - [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), - [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), - [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), - [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), - [14139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), - [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), - [14143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9011), - [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), - [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), - [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), - [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), - [14153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), - [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), - [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), - [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), - [14161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [14163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), - [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), - [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), - [14169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [14171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), - [14173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [14175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), - [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), - [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), - [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), - [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [14185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [14187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), - [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), - [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8327), - [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8319), - [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), - [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), - [14199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), - [14201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), - [14203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), - [14207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9024), - [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8232), - [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), - [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8322), - [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), - [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8416), - [14219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9017), - [14221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [14223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), - [14225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [14227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), - [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), - [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), - [14233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), - [14237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9022), - [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8164), - [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), - [14243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 24), - [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), - [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [14251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8152), - [14253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8200), - [14255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8217), - [14257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8156), - [14259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), - [14261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8234), - [14263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8151), - [14265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), - [14267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8216), - [14269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8203), - [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), - [14273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8464), - [14275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [14277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 62), - [14279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8465), - [14281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8454), - [14283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 24), - [14285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8505), - [14287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 0), - [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8897), - [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [14293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8475), - [14295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8466), - [14297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8507), - [14299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8486), - [14301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8498), - [14303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8453), - [14305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8456), - [14307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8459), - [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [14315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8452), - [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [14325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8489), - [14327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8483), - [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8613), - [14333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8503), - [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [14337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8488), - [14339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8506), - [14341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8451), - [14343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8478), - [14345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8469), - [14347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8484), - [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [14353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8493), - [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), - [14357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), - [14359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8479), - [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), - [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), - [14365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8461), - [14367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8463), - [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8888), - [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8893), - [14373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8492), - [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), - [14381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 62), - [14383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8504), - [14385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [14387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), - [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), - [14391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9057), - [14393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [14395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9078), - [14397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [14399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9291), - [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), - [14403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9046), - [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [14407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [14409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9039), - [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [14413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), - [14415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9060), - [14417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9087), - [14419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8549), - [14422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7748), - [14425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8549), - [14428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7748), - [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [14433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), - [14435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11125), - [14438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), - [14440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11286), - [14443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9016), - [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), - [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), - [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [14459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(8549), - [14462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9156), - [14464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 0), - [14466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8460), - [14469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9457), - [14472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10602), - [14475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8460), - [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9457), - [14479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10602), - [14481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 5), - [14483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8850), - [14485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), - [14487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8476), - [14489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8605), - [14491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 124), - [14493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 124), - [14495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9049), - [14497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8728), - [14499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7745), - [14502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7745), - [14505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 42), - [14507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 42), - [14509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 27), - [14511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 27), - [14513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9641), - [14515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8684), - [14517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 5), - [14519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 5), - [14521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), - [14523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), - [14525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9056), - [14527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8727), - [14529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9431), - [14531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8751), - [14533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8619), - [14535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9040), - [14537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8740), - [14539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8660), - [14541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9609), - [14543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8681), - [14545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8649), - [14547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 90), - [14549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 90), - [14551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9069), - [14553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8706), - [14555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9561), - [14557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8731), - [14559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 180), - [14561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 180), - [14563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 27), - [14565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 27), - [14567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9036), - [14569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8741), - [14571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9025), - [14573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8721), - [14575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [14577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), - [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), - [14581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 25), - [14583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 25), - [14585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), - [14587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), - [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [14591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9549), - [14593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8747), - [14595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9051), - [14597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8748), - [14599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), - [14601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), - [14603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), - [14605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), - [14607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 182), - [14609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 182), - [14611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9595), - [14613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8671), - [14615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [14617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), - [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), - [14621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9648), - [14623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8692), - [14625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7781), - [14628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), - [14630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), - [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9030), - [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), - [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9387), - [14638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8204), - [14640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10738), - [14642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), - [14644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), - [14646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), - [14648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), - [14650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 180), - [14652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 180), - [14654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 84), - [14656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), - [14658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), - [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [14662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), - [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9212), - [14670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 10), - [14672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9434), - [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), - [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9854), - [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9634), - [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10039), - [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), - [14688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [14690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9336), - [14692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [14694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), - [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9989), - [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), - [14702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [14704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [14708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), - [14710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [14712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9290), - [14714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9562), - [14716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8336), - [14718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9372), - [14720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [14722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9287), - [14724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [14726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9382), - [14728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [14730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10052), - [14732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9436), - [14734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 71), - [14736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [14738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), - [14740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), - [14742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9592), - [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [14746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [14748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9359), - [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9962), - [14754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9602), - [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [14760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [14762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9404), - [14764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [14766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9415), - [14768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [14770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [14772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9273), - [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [14776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [14778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9381), - [14780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), - [14782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9303), - [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), - [14786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [14788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10024), - [14790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9519), - [14792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [14794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9853), - [14796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), - [14798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9551), - [14800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [14802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [14804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [14806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6261), - [14808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), - [14810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [14812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9385), - [14814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9531), - [14816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7781), - [14819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9625), - [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [14823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [14825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9311), - [14827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [14829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9279), - [14831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9299), - [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [14837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8270), - [14839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [14841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9286), - [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9961), - [14847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8158), - [14849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11661), - [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), - [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [14857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 106), - [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [14861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 106), - [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [14877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 179), - [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10729), - [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [14893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), - [14895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), - [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [14915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), - [14917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8956), - [14920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 124), - [14922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 124), - [14924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 27), - [14926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 27), - [14928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 27), - [14930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 27), - [14932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 182), - [14934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 182), - [14936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [14938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), - [14940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [14942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), - [14944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 25), - [14946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 25), - [14948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), - [14950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 84), - [14952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9643), - [14954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), - [14956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11693), - [14958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 84), - [14960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9474), - [14962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), - [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11345), - [14966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9412), - [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10558), - [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10122), - [14972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), - [14974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 10), - [14976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 10), - [14978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 84), - [14980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 10), - [14982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), - [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10004), - [14986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9257), - [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11680), - [14990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), - [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9856), - [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9187), - [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9175), - [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10736), - [15000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9961), - [15003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8199), - [15006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10791), - [15009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10565), - [15012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [15014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), - [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9992), - [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), - [15020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), - [15022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), - [15024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8968), - [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [15028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_specifier, 1, 0, 0), - [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8978), - [15032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), - [15034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), - [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), - [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [15040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), - [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11236), - [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), - [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), - [15048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), - [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11259), - [15052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 15), - [15054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 15), - [15056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10154), - [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), - [15060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11365), - [15062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9682), - [15064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9964), - [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10634), - [15070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9546), - [15072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9476), - [15074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10050), - [15076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10032), - [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10881), - [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), - [15082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10037), - [15084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10869), - [15086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9616), - [15088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9931), - [15090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9938), - [15092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11393), - [15094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 31), - [15096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 31), - [15098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9632), - [15100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(9030), - [15103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [15105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), - [15107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 62), - [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [15111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10500), - [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [15115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [15117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10348), - [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [15121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 63), - [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [15125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), - [15128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11098), - [15131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10314), - [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [15137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 62), - [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), - [15141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), - [15143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), - [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10303), - [15151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8589), - [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), - [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [15164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10447), - [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), - [15174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 24), - [15176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10488), - [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [15186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [15192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [15194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [15198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 24), - [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [15208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), - [15210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9961), - [15213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [15215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), - [15217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [15223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8571), - [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [15229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1731), - [15232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), - [15234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(11600), - [15237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10117), - [15239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 61), - [15241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [15243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), - [15245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), - [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10398), - [15249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10480), - [15251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9815), - [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [15261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10200), - [15263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10325), - [15265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9870), - [15267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), - [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), - [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9318), - [15273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), - [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [15281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10425), - [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), - [15285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10402), - [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), - [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), - [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), - [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8623), - [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8652), - [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), - [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), - [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), - [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), - [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8616), - [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), - [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8621), - [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8622), - [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), - [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8663), - [15319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 71), - [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [15325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11600), - [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [15329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), - [15331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9318), - [15334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10398), - [15336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11608), - [15338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [15340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [15342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [15344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [15346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [15348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [15350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 133), - [15352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 133), - [15354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), - [15356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [15358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9417), - [15360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), - [15362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), - [15364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 134), - [15366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 134), - [15368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [15370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), - [15372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), - [15374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [15376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [15378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 186), - [15380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 186), - [15382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [15384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9240), - [15386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [15388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [15390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [15392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [15394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [15396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), - [15398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), - [15400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [15402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [15404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 0), - [15406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [15408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [15410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), - [15412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), - [15414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [15416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [15418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [15420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [15422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), - [15424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), - [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [15428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [15432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9294), - [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), - [15438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [15440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [15446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), - [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), - [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [15466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8859), - [15468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [15470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [15472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [15474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [15476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [15480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), - [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [15486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [15502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [15504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [15516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11300), - [15518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), - [15520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), - [15522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [15524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9198), - [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [15528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9754), - [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8679), - [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [15548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 0), - [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10407), - [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [15556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), - [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10530), - [15566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9330), - [15568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10914), - [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [15574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), SHIFT_REPEAT(8468), - [15577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), - [15579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), - [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10256), - [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10616), - [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), - [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10479), - [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [15597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), SHIFT_REPEAT(8344), - [15600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), - [15602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 122), - [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10410), - [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [15608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 144), - [15610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11212), - [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10301), - [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), - [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10618), - [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [15630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 2, 0, 0), - [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10985), - [15634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), - [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), - [15640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), - [15642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), SHIFT_REPEAT(10985), - [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [15649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), - [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10703), - [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10588), - [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9376), - [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [15675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9386), - [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), - [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10438), - [15694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9852), - [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10368), - [15700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), - [15702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), - [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9851), - [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10373), - [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10548), - [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10462), - [15722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), - [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8577), - [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10267), - [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [15760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), - [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10327), - [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [15770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), - [15774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9439), - [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10432), - [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [15782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [15784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9564), - [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [15794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 229), SHIFT_REPEAT(8634), - [15797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 229), - [15799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9601), - [15803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9601), - [15805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), - [15809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9620), - [15811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), - [15813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), - [15815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 34), - [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [15819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 212), - [15821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 212), - [15823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), - [15825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), - [15827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), - [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9412), - [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11684), - [15835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 217), SHIFT_REPEAT(9059), - [15838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 217), - [15840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [15842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), - [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), - [15846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), - [15850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9473), - [15852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8672), - [15854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), - [15856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9500), - [15858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), - [15860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9497), - [15864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), - [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10242), - [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10222), - [15870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10156), - [15872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), - [15874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), - [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [15878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [15882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), - [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9547), - [15886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9547), - [15888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), - [15892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9467), - [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [15896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [15898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), - [15900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), - [15904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9559), - [15906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 20), - [15908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9125), - [15910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [15912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10036), - [15914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10639), - [15916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9015), - [15918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 164), - [15920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10021), - [15922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), - [15924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), - [15926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [15928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [15930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [15932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11079), - [15934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [15936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [15938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9539), - [15940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9539), - [15942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [15944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [15946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [15948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), - [15950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9557), - [15952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), - [15954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), - [15956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [15960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8693), - [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [15964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), - [15968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), - [15972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9582), - [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [15976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10899), - [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11675), - [15982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), - [15986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9540), - [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [15990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10241), - [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10446), - [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), - [15996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 218), - [15998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), - [16000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9059), - [16004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 164), - [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10694), - [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9762), - [16018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), - [16020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), - [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), - [16024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [16026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [16028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), - [16032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9485), - [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [16036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), - [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9111), - [16040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [16046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [16050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9638), - [16054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9638), - [16056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), - [16060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9568), - [16062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [16064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [16066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [16068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [16074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), - [16076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9564), - [16079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10552), - [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10323), - [16085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8207), - [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9943), - [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [16097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10678), - [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [16101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [16103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 217), SHIFT_REPEAT(9015), - [16106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 217), - [16108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [16110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9498), - [16114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9498), - [16116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [16120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10907), - [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10626), - [16124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10449), - [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [16132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10773), - [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9629), - [16136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9629), - [16138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 225), - [16140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [16142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9601), - [16145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9601), - [16148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), - [16150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), - [16152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), - [16156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9536), - [16158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 202), - [16160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8538), - [16162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [16164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [16166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [16168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9626), - [16170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9626), - [16172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), - [16174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [16176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [16178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11723), - [16180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [16182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [16184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10906), - [16186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [16188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [16190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [16192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [16194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8864), - [16196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10315), - [16198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10333), - [16200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11225), - [16202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 202), - [16204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9094), - [16208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [16210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9447), - [16212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9447), - [16214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [16216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 97), - [16218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9954), - [16222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), - [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10292), - [16226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10224), - [16228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [16230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [16234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [16236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [16238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9489), - [16240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9489), - [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [16244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [16246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8361), - [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [16250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [16252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9558), - [16254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9558), - [16256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 210), - [16258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9624), - [16262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9624), - [16264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(10258), - [16267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [16271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 122), SHIFT_REPEAT(6383), - [16274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 122), - [16276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [16280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [16282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [16284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), - [16286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [16288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [16290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8981), - [16292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [16294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9767), - [16296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [16298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10437), - [16300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [16302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [16304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8866), - [16306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [16308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [16310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [16312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [16316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [16322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [16324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [16326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [16328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [16330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [16332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [16334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [16340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [16344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 224), - [16346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [16348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 164), - [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), - [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [16358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [16360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [16364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), - [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8872), - [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), - [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8875), - [16372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10952), - [16376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 226), - [16378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [16384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [16388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [16392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [16396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [16398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [16400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), - [16402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10538), - [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10581), - [16406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 106), - [16408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [16410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [16412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [16414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), - [16420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [16424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10586), - [16426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), - [16428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [16432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [16436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10622), - [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10458), - [16444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), - [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [16452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [16458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [16460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [16462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [16464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10235), - [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10540), - [16468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [16470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10285), - [16472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4857), - [16475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), - [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [16485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 224), - [16487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 218), - [16489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 230), - [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), - [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), - [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), - [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [16553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 232), SHIFT_REPEAT(10952), - [16556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 232), - [16558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6047), - [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [16566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10493), - [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [16584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9654), - [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8112), - [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), - [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [16594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 233), - [16596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 211), - [16598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 233), - [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [16612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), - [16614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11487), - [16616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11633), - [16618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10640), - [16620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11080), - [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11136), - [16624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11138), - [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [16632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11068), - [16642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), - [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), - [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10310), - [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11027), - [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10258), - [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10223), - [16674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [16682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [16684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [16688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [16690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [16692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [16694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10554), - [16696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10338), - [16698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [16700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), - [16708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [16710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [16712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [16714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [16716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [16718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [16720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [16728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [16730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [16734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [16736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), - [16738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [16740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [16742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [16744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [16746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [16748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), - [16750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [16752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [16754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), - [16756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9429), - [16758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6014), - [16764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8226), - [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [16769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [16771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [16777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [16779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8137), - [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [16787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [16791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), - [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10576), - [16795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), - [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), - [16799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [16803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10509), - [16805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1299), - [16808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9458), - [16810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [16812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 164), - [16814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8908), - [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11263), - [16820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11266), - [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11269), - [16824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10502), - [16830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), - [16832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), - [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [16836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9859), - [16838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1236), - [16841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), - [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [16851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10356), - [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10433), - [16857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10221), - [16859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9610), - [16861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [16863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), - [16865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [16867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [16869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11160), - [16871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11161), - [16873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11162), - [16875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10206), - [16877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [16879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), - [16881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [16883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [16885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [16887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [16889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [16891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [16893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [16895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 71), - [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [16903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [16911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4966), - [16914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), - [16916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [16918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9571), - [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9984), - [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9990), - [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10380), - [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10097), - [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10153), - [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10815), - [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10823), - [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10824), - [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9671), - [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [16944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10578), - [16948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), - [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [16952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(9767), - [16955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), - [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [16959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(8002), - [16962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(10437), - [16965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), - [16967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9520), - [16969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10112), - [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10440), - [16973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11072), - [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11073), - [16981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11074), - [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [16985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), - [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [16989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9545), - [16991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [16993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), - [16995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [16997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10719), - [16999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10720), - [17001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10721), - [17003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [17005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [17007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9623), - [17009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9494), - [17011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [17013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [17015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [17021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [17023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [17025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [17027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9493), - [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [17031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9521), - [17033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9486), - [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [17037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9446), - [17039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9464), - [17041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [17043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11534), - [17045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [17047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [17049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 24), - [17051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), - [17053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [17055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [17057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [17059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [17061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [17063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [17065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [17067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [17073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [17077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [17079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), - [17081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), - [17083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [17085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [17087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [17089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [17091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [17093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [17095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [17097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [17099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [17101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10259), - [17103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [17105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 73), - [17107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 154), - [17109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), - [17111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [17113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [17115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [17117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [17119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [17121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [17123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [17125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [17127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [17129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [17131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [17133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [17135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [17137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), - [17139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(334), - [17142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), - [17144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [17168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 62), - [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), - [17172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), - [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [17182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [17188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [17194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), - [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [17198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2313), - [17201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), - [17203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [17205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [17207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [17209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [17211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2505), - [17214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), - [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [17226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(11075), - [17229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), - [17231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [17233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [17235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [17237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8883), - [17239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2363), - [17242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [17248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [17250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8065), - [17253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), - [17255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), - [17257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [17259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [17261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [17263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8393), - [17266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), - [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10289), - [17272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), - [17274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), - [17276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1330), - [17279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [17281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 64), - [17283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [17285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [17287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11533), - [17289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [17291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), - [17293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), - [17295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9169), - [17297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [17299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [17301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [17303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [17305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_partition, 2, 0, 0), - [17307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [17309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [17311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11105), - [17313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [17315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10426), - [17317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), - [17319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), - [17321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [17323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [17325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10760), - [17327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9725), - [17329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), - [17331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), - [17333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [17335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11195), - [17337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 28), - [17339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [17341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11245), - [17343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8201), - [17345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10751), - [17347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [17349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [17351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 144), - [17353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [17355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [17357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [17359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [17361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 226), - [17363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [17365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), - [17367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8064), - [17369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [17371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [17373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [17375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [17377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_object_parameter_declaration, 2, 0, 0), - [17379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [17381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10977), - [17383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [17385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 28), - [17387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), - [17389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), - [17391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 97), - [17393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [17395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), - [17397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11056), - [17399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [17401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10649), - [17403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 209), - [17405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [17407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10902), - [17409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [17411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), - [17413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 205), - [17415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 168), - [17417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 169), - [17419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 62), - [17421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 210), - [17423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [17425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [17427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11081), - [17429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11152), - [17431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11682), - [17433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11114), - [17435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11722), - [17437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [17439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10740), - [17441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [17443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10895), - [17445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [17447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10667), - [17449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [17451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10778), - [17453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [17455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10715), - [17457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11303), - [17459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11689), - [17461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 106), - [17463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11330), - [17465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11692), - [17467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), - [17469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11352), - [17471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11695), - [17473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11372), - [17475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11698), - [17477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11392), - [17479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11701), - [17481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11409), - [17483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11704), - [17485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11423), - [17487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11706), - [17489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11430), - [17491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11707), - [17493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11436), - [17495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11708), - [17497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11440), - [17499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11709), - [17501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11444), - [17503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11710), - [17505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11448), - [17507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11711), - [17509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11452), - [17511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11712), - [17513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11456), - [17515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11713), - [17517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11460), - [17519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11714), - [17521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11464), - [17523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11715), - [17525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11468), - [17527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11716), - [17529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11472), - [17531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11717), - [17533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11475), - [17535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11718), - [17537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [17539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [17541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11350), - [17543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [17545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [17547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11526), - [17549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [17551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [17553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [17555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [17557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [17559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [17561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [17563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [17565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11502), - [17567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [17569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [17571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10711), - [17573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [17575] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [17577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [17579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [17581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11683), - [17583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11213), - [17585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [17587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [17589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [17591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [17593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), - [17595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [17597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [17599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [17601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [17603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [17605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [17607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [17609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8198), - [17611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [17613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [17615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10787), - [17617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [17619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [17621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [17623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8395), - [17625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [17627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [17629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11223), - [17631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10934), - [17633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10935), - [17635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [17637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [17639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [17641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [17643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9260), - [17645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11159), - [17647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [17649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [17651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [17653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), - [17655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [17657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9639), - [17659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [17661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [17663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 133), - [17665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [17667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9178), - [17669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [17671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [17673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8447), - [17675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [17677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [17679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [17681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [17683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [17685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [17687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_block, 4, 0, 133), - [17689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), - [17691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [17693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10972), - [17695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [17697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [17699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [17701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [17703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10761), - [17705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 84), - [17707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), - [17709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [17711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [17713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9172), - [17715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [17717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [17719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11390), - [17721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [17723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [17725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [17727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11501), - [17729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [17731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [17733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10672), - [17735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [17737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10963), - [17739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10268), - [17741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [17743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [17745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [17747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [17749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [17751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), - [17753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [17755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [17757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [17759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [17761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [17763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [17765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [17767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [17769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [17771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [17773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [17775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [17777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [17779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [17781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [17783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [17785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), - [17787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [17789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11044), - [17791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [17793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [17795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [17797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [17799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11311), - [17801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8916), - [17803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [17805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [17807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 85), - [17809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [17811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [17813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [17815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [17817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11088), - [17819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [17821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11553), - [17823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [17825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [17827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [17829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10780), - [17831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [17833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11582), - [17835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11586), - [17837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [17839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [17841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [17843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [17845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9173), - [17847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [17849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11326), - [17851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [17853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [17855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [17857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [17859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9487), - [17861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9302), - [17863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [17865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [17867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10709), - [17869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [17871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8760), - [17873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [17875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [17877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [17879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [17881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [17883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [17885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10708), - [17887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [17889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [17891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [17893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [17895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [17897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9668), - [17899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [17901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [17903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), - [17905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [17907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [17909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11142), - [17911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), - [17913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10674), - [17915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11492), - [17917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11197), - [17919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [17921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [17923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [17925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [17927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [17929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [17931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [17933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9168), - [17935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [17937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [17939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11486), - [17941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10752), - [17943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [17945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [17947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [17949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11540), - [17951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11560), - [17953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [17955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9589), - [17957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [17959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [17961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [17963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [17965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [17967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10042), - [17969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [17971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [17973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [17975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [17977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [17979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [17981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [17983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [17985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [17987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [17989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [17991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11366), - [17993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [17995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [17997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [17999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [18001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [18003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [18005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [18007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [18009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11165), - [18011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [18013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11036), - [18015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [18017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10992), - [18019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [18021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11186), - [18023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [18025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [18027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10994), - [18029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [18031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [18033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [18035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [18037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [18039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [18041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11260), - [18043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [18045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [18047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [18049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [18051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11275), - [18053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11276), - [18055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), - [18057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [18059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [18061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10353), - [18063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [18065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [18067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [18069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [18071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [18073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [18075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [18077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [18079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [18081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [18083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [18085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [18087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11495), - [18089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [18091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 85), - [18093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10908), - [18095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [18097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [18099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [18101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [18103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10775), - [18105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10704), - [18107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [18109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [18111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [18113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10794), - [18115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), - [18117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [18119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11527), - [18121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [18123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [18125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [18127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [18129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10838), - [18131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [18133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [18135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [18137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10627), - [18139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10854), - [18141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [18143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [18145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [18147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [18149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [18151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [18153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [18155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [18157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [18159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [18161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [18163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11134), - [18165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [18167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11040), - [18169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [18171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11144), - [18173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 134), - [18175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [18177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11172), - [18179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [18181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11182), - [18183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [18185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [18187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [18189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [18191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [18193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 85), - [18195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [18197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [18199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [18201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [18203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [18205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [18207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11331), - [18209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11488), - [18211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [18213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11544), - [18215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [18217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [18219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [18221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [18223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11388), - [18225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11725), - [18227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11719), - [18229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [18231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [18233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10833), - [18235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 85), - [18237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [18239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_block, 4, 0, 134), - [18241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), - [18243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10712), - [18245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10904), - [18247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10911), - [18249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [18251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [18253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10535), - [18255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [18257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11655), - [18259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10636), - [18261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [18263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [18265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [18267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [18269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10962), - [18271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10966), - [18273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [18275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11207), - [18277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11208), - [18279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [18281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11521), - [18283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11524), - [18285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [18287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10411), - [18289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10653), - [18291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10659), - [18293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [18295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10797), - [18297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10807), - [18299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [18301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10875), - [18303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10878), - [18305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [18307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10983), - [18309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11002), - [18311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11672), - [18313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11121), - [18315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11123), - [18317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [18319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11190), - [18321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11193), - [18323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [18325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [18327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [18329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [18331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [18333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10471), - [18335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [18337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10655), - [18339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [18341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [18343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [18345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [18347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), - [18349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [18351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [18353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [18355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [18357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [18359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10597), - [18361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [18363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10801), - [18365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [18367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [18369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10808), - [18371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [18373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [18375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), - [18377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [18379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [18381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10819), - [18383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [18385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [18387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [18389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [18391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [18393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [18395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [18397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [18399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), - [18401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10885), - [18403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [18405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5820), - [18407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [18409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [18411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [18413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [18415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [18417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5563), - [18419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [18421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [18423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [18425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [18427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [18429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [18431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [18433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [18435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [18437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [18439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [18441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [18443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [18445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10932), - [18447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 133), - [18449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [18451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [18453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [18455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [18457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [18459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [18461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [18463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9657), - [18465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [18467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [18469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [18471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [18473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [18475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [18477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [18479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [18481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11265), - [18483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [18485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [18487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10693), - [18489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [18491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), - [18493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [18495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [18497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [18499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [18501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [18503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [18505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10663), - [18507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), - [18509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [18511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [18513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [18515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [18517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [18519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [18521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [18523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [18525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [18527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [18529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [18531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [18533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [18535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7341), - [18537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [18539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [18541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [18543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10501), - [18545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11651), - [18547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [18549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [18551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [18553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [18555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [18557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10532), - [18559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10645), - [18561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [18563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [18565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10648), - [18567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [18569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [18571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [18573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10654), - [18575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [18577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [18579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10675), - [18581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 24), - [18583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [18585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [18587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10686), - [18589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [18591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [18593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10218), - [18595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [18597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [18599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [18601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [18603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11539), - [18605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11257), - [18607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10233), - [18609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10783), - [18611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [18613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10785), - [18615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 7, 0, 62), - [18617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [18619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10790), - [18621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [18623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10804), - [18625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10811), - [18627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [18629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), - [18631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [18633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [18635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [18637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [18639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8896), - [18641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10282), - [18643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10864), - [18645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10866), - [18647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 58), - [18649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [18651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10870), - [18653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10884), - [18655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [18657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10890), - [18659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [18661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [18663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10304), - [18665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [18667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [18669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [18671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [18673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10204), - [18675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10826), - [18677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10923), - [18679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [18681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10925), - [18683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [18685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [18687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10929), - [18689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10526), - [18691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10941), - [18693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [18695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11552), - [18697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10947), - [18699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [18701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10988), - [18703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10328), - [18705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [18707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [18709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [18711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [18713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10978), - [18715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), - [18717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10980), - [18719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 85), - [18721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [18723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10984), - [18725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10995), - [18727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [18729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11001), - [18731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [18733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [18735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10352), - [18737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [18739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), - [18741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [18743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [18745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [18747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11021), - [18749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_block, 5, 0, 186), - [18751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11023), - [18753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11025), - [18755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [18757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11029), - [18759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [18761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11031), - [18763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [18765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10362), - [18767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [18769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [18771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11046), - [18773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11047), - [18775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [18777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11051), - [18779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10371), - [18781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [18783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [18785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11058), - [18787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11059), - [18789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11062), - [18791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10374), - [18793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [18795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [18797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11069), - [18799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11070), - [18801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11071), - [18803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10379), - [18805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [18807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11077), - [18809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11078), - [18811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10382), - [18813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [18815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11084), - [18817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), - [18819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10384), - [18821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [18823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11090), - [18825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11091), - [18827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10387), - [18829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [18831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11095), - [18833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11096), - [18835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), - [18837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [18839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11099), - [18841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11100), - [18843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10389), - [18845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [18847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11103), - [18849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11104), - [18851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10390), - [18853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [18855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11107), - [18857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11108), - [18859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10392), - [18861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [18863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11111), - [18865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11112), - [18867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10394), - [18869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [18871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11115), - [18873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11116), - [18875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [18877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11118), - [18879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11119), - [18881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [18883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [18885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [18887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [18889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), - [18891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [18893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [18895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11151), - [18897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [18899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [18901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [18903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [18905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [18907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 134), - [18909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [18911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 186), - [18913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 186), - [18915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [18917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [18919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 186), - [18921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [18923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 133), - [18925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 133), - [18927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [18929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [18931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [18933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [18935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [18937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [18939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [18941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [18943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10822), - [18945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [18947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [18949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9428), - [18951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [18953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [18955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11199), - [18957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11306), - [18959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11231), - [18961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [18963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [18965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11322), - [18967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [18969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), - [18971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), - [18973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [18975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11647), - [18977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [18979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [18981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [18983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [18985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [18987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [18989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [18991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [18993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [18995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [18997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [18999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [19001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), - [19003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [19005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [19007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 134), - [19009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [19011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 134), - [19013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [19015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [19017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9618), - [19019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [19021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [19023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), - [19025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [19027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [19029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [19031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [19033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [19035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [19037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [19039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [19041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [19043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [19045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [19047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 186), - [19049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [19051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [19053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [19055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11302), - [19057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [19059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [19061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11211), - [19063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [19065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [19067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), - [19069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11312), - [19071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [19073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9670), - [19075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [19077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [19079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [19081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11329), - [19083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [19085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_block, 3, 0, 85), - [19087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [19089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [19091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9516), - [19093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11336), - [19095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [19097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [19099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [19101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [19103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11351), - [19105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [19107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [19109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [19111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), - [19113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11357), - [19115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [19117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [19119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11371), - [19121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [19123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [19125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), - [19127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11377), - [19129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [19131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [19133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), - [19135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [19137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [19139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9538), - [19141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11397), - [19143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 133), - [19145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [19147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11348), - [19150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), - [19152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11413), - [19154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [19156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11425), - [19158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11431), - [19160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [19162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11437), - [19164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [19166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11441), - [19168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10863), - [19170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11445), - [19172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [19174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11449), - [19176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [19178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11453), - [19180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [19182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11457), - [19184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [19186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11461), - [19188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8658), - [19190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11465), - [19192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11469), - [19194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [19196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11473), - [19198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [19200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11476), - [19202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 134), - [19204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [19206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10993), - [19208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [19210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10731), - [19212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [19214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [19216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 0), - [19218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [19220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 10), - [19222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [19224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11525), - [19226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [19228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10944), - [19230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [19232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), - [19234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11597), - [19236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [19238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11610), - [19240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8894), - [19242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [19244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11620), - [19246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [19248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11629), - [19250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [19252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [19254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11636), - [19256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [19258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [19260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11641), - [19262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 186), - [19264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11644), - [19266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11646), - [19268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11648), - [19270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11650), - [19272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11652), - [19274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11654), - [19276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11656), - [19278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11658), - [19280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11660), - [19282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11662), - [19284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11664), - [19286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11666), - [19288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11668), - [19290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8699), - [19292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [19294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [19296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11379), - [19298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [19300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [19302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [19304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [19306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [19308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [19310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [19312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [19314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [19316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [7391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), + [7395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [7399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11395), + [7409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [7415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), + [7419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), + [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), + [7425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [7427] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(309), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7325), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7342), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7352), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [7479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_name, 1, 0, 0), + [7481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 152), + [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 152), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [7491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 7), + [7495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 1, 0, 11), + [7499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_name, 1, 0, 0), + [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 47), + [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 49), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [7511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 51), + [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 51), + [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 7), + [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 7), + [7519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 100), + [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 100), + [7523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 106), + [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 106), + [7527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 109), + [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 109), + [7531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 47), + [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 47), + [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype, 4, 0, 0), + [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype, 4, 0, 0), + [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 151), + [7541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 151), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7355), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [7549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 7), + [7551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 7), + [7553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1274), + [7556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 1, 0, 0), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), + [7574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2365), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [7579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11375), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [7584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_base_clause, 2, 0, 104), + [7586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_base_clause, 2, 0, 104), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [7590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_specifier, 2, 0, 12), + [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_specifier, 2, 0, 12), + [7594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 1, 0, 13), + [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 1, 0, 13), + [7598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_specifier, 2, 0, 12), + [7602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_specifier, 2, 0, 12), + [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_specifier, 2, 0, 12), + [7606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_type, 2, -1, 0), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_type, 2, -1, 0), + [7610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), + [7612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 16), + [7614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), + [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_placeholder_type_specifier, 2, 0, 32), + [7618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), + [7622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), + [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), + [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [7628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2365), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [7633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11375), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [7638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 6, 0, 151), + [7640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 6, 0, 151), + [7642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 2, 0, 0), + [7646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 5, 0, 152), + [7648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 5, 0, 152), + [7650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 7), + [7654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 10), + [7658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [7660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), + [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), + [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [7668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [7670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [7672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 2, 0, 12), + [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 2, 0, 12), + [7676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 11), + [7680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [7682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 2, 0, 6), + [7684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), + [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), + [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [7696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 3, 0, 0), + [7700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 47), + [7704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 48), + [7708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2211), + [7711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [7713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 49), + [7715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 4, 0, 50), + [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 3, 0, 108), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 3, 0, 108), + [7727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 3, 0, 51), + [7729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 3, 0, 51), + [7731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), + [7733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), + [7735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decltype_auto, 4, 0, 0), + [7739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), + [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator_list, 4, 0, 0), + [7747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 100), + [7749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 100), + [7751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 103), + [7753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 103), + [7755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), + [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), + [7759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 5, 0, 106), + [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 5, 0, 106), + [7765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 109), + [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 109), + [7769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), + [7773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [7775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration_item, 4, 0, 47), + [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration_item, 4, 0, 47), + [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_declaration, 4, 0, 153), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_declaration, 4, 0, 153), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [7787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6539), + [7789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6717), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9154), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6132), + [7800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6132), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11444), + [7807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11444), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9287), + [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11471), + [7815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4928), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10967), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [7830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2388), + [7833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [7835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11453), + [7838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [7842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2388), + [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [7847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11453), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [7852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [7854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2394), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [7859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11465), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [7866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2394), + [7869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11465), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), + [7876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), + [7878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(2891), + [7881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(2891), + [7884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4812), + [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3637), + [7890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7741), + [7893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), + [7896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11375), + [7899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11333), + [7902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11333), + [7905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4958), + [7908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6130), + [7911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6130), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11426), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11426), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9277), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11457), + [7926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(4911), + [7929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6689), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10849), + [7936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7745), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [7943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(6600), + [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7733), + [7949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4973), + [7952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3637), + [7955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7741), + [7958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), + [7961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11453), + [7964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2394), + [7967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11465), + [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), + [7972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), + [7974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4812), + [7977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3637), + [7980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7741), + [7983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2413), + [7986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2413), + [7989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11427), + [7992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4973), + [7995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(3637), + [7998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7741), + [8001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 2, 0, 10), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), + [8007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_specifier, 3, 0, 48), + [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10378), + [8015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2328), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11375), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11394), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8078), + [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2435), + [8031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2435), + [8034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11473), + [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11374), + [8040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11374), + [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [8045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2525), + [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [8050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11441), + [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [8055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [8057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2525), + [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [8062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11441), + [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [8067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2471), + [8070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2471), + [8073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11472), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11449), + [8096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), + [8099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2525), + [8102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11441), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11453), + [8107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11464), + [8110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11464), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11465), + [8119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11452), + [8122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11452), + [8125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2377), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11310), + [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [8146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [8149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2606), + [8152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11461), + [8155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2637), + [8158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11468), + [8161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3984), + [8164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(3984), + [8167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4776), + [8170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4800), + [8173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7758), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11354), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11354), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), + [8186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), + [8189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2625), + [8192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), + [8195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(308), + [8198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 3, 0, 14), + [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 3, 0, 14), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [8204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_condition_clause, 4, 0, 155), + [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_clause, 4, 0, 155), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [8220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4776), + [8223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4800), + [8226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7758), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11448), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11448), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [8235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11410), + [8238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11410), + [8241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4968), + [8244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4055), + [8247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4055), + [8250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4950), + [8253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5132), + [8256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7765), + [8259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4074), + [8262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4074), + [8265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4957), + [8268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5105), + [8271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7793), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8663), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11119), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7878), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11121), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11280), + [8292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2724), + [8295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11310), + [8298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11436), + [8301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11436), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11441), + [8308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2469), + [8311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(321), + [8314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2677), + [8317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11421), + [8320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), + [8323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2692), + [8326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2683), + [8329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(316), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8809), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11460), + [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11460), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [8348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), + [8351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2689), + [8354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), + [8357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), + [8361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2667), + [8364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2502), + [8367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(11355), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [8376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(309), + [8379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4950), + [8382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5132), + [8385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7765), + [8388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10332), + [8391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10332), + [8393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4957), + [8396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5105), + [8399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7793), + [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), + [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), + [8406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4812), + [8409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3637), + [8412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7741), + [8415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11410), + [8418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11410), + [8421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4968), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [8430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4973), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8072), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8817), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [8447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(3637), + [8450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7741), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), + [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [8459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11333), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [8464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [8466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 2, 0, 0), + [8468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2585), + [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [8473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), + [8475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9434), + [8478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10587), + [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [8483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [8485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenated_string, 3, 0, 0), + [8487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2868), + [8490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2872), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [8505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(2615), + [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splice_expression, 2, 0, 0), + [8510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), + [8513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splice_expression, 2, 0, 0), + [8515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_splice_type_specifier, 1, 0, 0), REDUCE(sym_splice_expression, 2, 0, 0), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11432), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11432), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [8526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2939), + [8529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2939), + [8532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [8535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4308), + [8538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4308), + [8541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4925), + [8544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5686), + [8547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7748), + [8550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(318), + [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8248), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), + [8559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7985), + [8563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1292), + [8566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 2, 0, 0), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11437), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [8592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1268), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11449), + [8617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4925), + [8620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5686), + [8623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7748), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8785), + [8630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(1267), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [8637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(2724), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [8642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11310), + [8645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [8647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 2, 0, 61), + [8649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, 0, 61), + [8651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [8653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declaration_list_item, 2, 0, 0), + [8655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), + [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [8665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [8667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(2724), + [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [8672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11310), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [8677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), + [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, 0, 84), + [8681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), + [8683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 85), + [8685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [8687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, 0, 10), + [8689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 71), + [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 71), + [8693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 192), + [8695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 192), + [8697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 4, 0, 193), + [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 193), + [8701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 134), + [8703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 134), + [8705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, 0, 84), + [8709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 135), + [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, 0, 135), + [8713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 206), + [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 206), + [8717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 71), + [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 71), + [8721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 213), + [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 213), + [8725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 192), + [8727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 192), + [8729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 214), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 214), + [8733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 5, 0, 193), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 5, 0, 193), + [8737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 186), + [8739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_field_declaration_list, 6, 0, 186), + [8741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 206), + [8743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 206), + [8745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 223), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 223), + [8749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 213), + [8751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 213), + [8753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 6, 0, 214), + [8755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 6, 0, 214), + [8757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 7, 0, 223), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 7, 0, 223), + [8761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 7, 0, 222), + [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 7, 0, 222), + [8765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(302), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6183), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), + [8776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [8786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [8790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [8792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 5, 0, 0), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), + [8798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [8800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, 0, 10), + [8804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 61), + [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 61), + [8808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration, 3, 0, 71), + [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 71), + [8812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 72), + [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 72), + [8816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_method_definition, 3, 0, 71), + [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_method_definition, 3, 0, 71), + [8820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_qualifier, 1, 0, 0), + [8824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4776), + [8827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4800), + [8830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7758), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10266), + [8837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10354), + [8840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3457), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [8847] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(308), + [8851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_constructor_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(10266), + [8854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 1, 0, 0), + [8858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3258), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10354), + [8867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(308), + [8870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [8872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 2, 0, 0), + [8874] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(321), + [8878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11410), + [8881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11410), + [8884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4968), + [8887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4950), + [8890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5132), + [8893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7765), + [8896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4957), + [8899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5105), + [8902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7793), + [8905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 2, 0, 22), + [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 2, 0, 22), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [8915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 2, 0, 33), + [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 2, 0, 33), + [8919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [8921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 5, 0, 0), + [8923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fold_expression, 3, 0, 41), + [8925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fold_expression, 3, 0, 41), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [8929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [8931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 2, 0, 0), + [8933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_expression, 3, 0, 70), + [8935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_expression, 3, 0, 70), + [8937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 77), + [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 77), + [8941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 3, 0, 78), + [8943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 3, 0, 78), + [8945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [8947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 4, 0, 0), + [8949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 4, 0, 0), + [8951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 4, 0, 0), + [8953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [8955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requirement_seq, 3, 0, 0), + [8957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 130), + [8959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 130), + [8961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 4, 0, 131), + [8963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 4, 0, 131), + [8965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lambda_expression, 5, 0, 184), + [8967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_expression, 5, 0, 184), + [8969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 1, 0, 0), + [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 1, 0, 0), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [8975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(316), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6268), + [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), + [8984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(313), + [8987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), + [8989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), + [8991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3637), + [8994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7741), + [8997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), + [8999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), + [9001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(3637), + [9004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7741), + [9007] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(316), + [9011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement_clause_constraint, 3, 0, 0), + [9015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), + [9017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_conjunction, 3, 0, 58), + [9019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_noexcept, 3, 0, 0), + [9021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_noexcept, 3, 0, 0), + [9023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [9025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_specifier, 3, 0, 0), + [9027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 43), + [9029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 43), + [9031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 0), + [9033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 0), + [9035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [9037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_attributes_end, 3, 0, 0), + [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), + [9041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9403), + [9044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(309), + [9047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 44), + [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 44), + [9051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 5, 0, 182), + [9053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 5, 0, 182), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11310), + [9059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 125), + [9061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 125), + [9063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 3, -10, 0), + [9067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_declarator, 1, 0, 1), + [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_declarator, 1, 0, 1), + [9071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [9074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11251), + [9077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type_declarator, 2, 0, 92), + [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type_declarator, 2, 0, 92), + [9081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type_declarator, 4, -10, 0), + [9085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 4, 0, 27), + [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 4, 0, 27), + [9089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type_declarator, 3, 0, 27), + [9091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type_declarator, 3, 0, 27), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [9097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [9103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [9105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 2, 0, 0), + [9107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__string, 1, 0, 0), + [9109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__string, 1, 0, 0), + [9111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [9113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 3, 0, 0), + [9115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3377), + [9118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4925), + [9121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_postfix, 1, 0, 0), + [9123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_postfix, 1, 0, 0), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [9129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [9131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), + [9133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(3637), + [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [9138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5686), + [9141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7748), + [9144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_parameter_list, 4, 0, 0), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [9150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_destructor_name, 2, 0, 0), + [9152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_destructor_name, 2, 0, 0), + [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [9157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(305), + [9160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_expression, 1, 0, 0), + [9163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4342), + [9166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4342), + [9169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4962), + [9172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5428), + [9175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7782), + [9178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 46), + [9180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 46), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [9188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3928), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [9193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11445), + [9196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [9198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3928), + [9201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11445), + [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [9206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(313), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11309), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [9215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 68), + [9217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 68), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [9221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5022), + [9224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(5428), + [9227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7738), + [9230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 96), + [9232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 96), + [9234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 21), + [9236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 21), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [9244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3830), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [9249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11437), + [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [9258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [9260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3830), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [9265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11437), + [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [9270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3589), + [9273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9420), + [9276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10201), + [9279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [9281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 1, 0, 0), + [9283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), + [9286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11445), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8784), + [9293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_requires_clause, 2, 0, 23), + [9295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_clause, 2, 0, 23), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7734), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7778), + [9305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 118), + [9307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 118), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11309), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [9313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(303), + [9316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 95), + [9318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 95), + [9320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4962), + [9323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5428), + [9326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7782), + [9329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), + [9331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint_disjunction, 3, 0, 58), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7798), + [9337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [9339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trailing_return_type, 2, 0, 0), + [9341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5022), + [9344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(5428), + [9347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7738), + [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [9352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [9354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 2, 0, 0), + [9356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), + [9358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 2, 0, 25), + [9360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3630), + [9363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9526), + [9366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10582), + [9369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_declarator, 1, 0, 0), + [9373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), + [9375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_function_declarator, 1, 0, 40), + [9377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [9379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_virtual_specifier, 1, 0, 0), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7764), + [9385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 5, 0, 182), + [9387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 5, 0, 182), + [9389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 2, 1, 5), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [9395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [9397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 5, 1, 180), + [9399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 5, 1, 180), + [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [9403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 67), + [9405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 67), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [9409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [9411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 3, 0, 0), + [9413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 136), + [9415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 136), + [9417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 0), + [9421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), + [9423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 3, 0, 27), + [9425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3830), + [9428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11437), + [9431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), + [9433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 4, 1, 90), + [9435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(318), + [9438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), + [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declarator_seq, 7, 0, 24), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11716), + [9444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(8573), + [9447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), + [9449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 27), + [9451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), + [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type_declarator, 3, 1, 42), + [9455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 144), + [9457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 144), + [9459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(10560), + [9462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(11716), + [9465] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8573), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [9471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [9473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type_declarator, 2, 1, 0), + [9475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [9477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_parenthesized_declarator, 4, 0, 0), + [9479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 187), + [9481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 187), + [9483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_array_declarator, 4, 0, 125), + [9485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_array_declarator, 4, 0, 125), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [9489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(316), + [9492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [9494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), SHIFT(321), + [9497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 2, 0, 0), + [9500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3712), + [9503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9563), + [9506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10603), + [9509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4021), + [9512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4021), + [9515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11457), + [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8140), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [9526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture_identifier, 1, 0, 0), + [9529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 127), + [9531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 2, 127), + [9533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 127), SHIFT(309), + [9536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), + [9538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 1, 75), + [9540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(309), + [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [9547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 3, 0, 175), + [9549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 3, 0, 175), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [9553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 126), + [9555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 126), + [9557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3750), + [9560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9527), + [9563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10602), + [9566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [9568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_type_declarator, 2, 0, 0), + [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [9572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4020), + [9575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4020), + [9578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11471), + [9581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), + [9583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_field_identifier, 2, 0, 34), + [9585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), + [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 41), + [9589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), + [9591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 76), + [9593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 2, 0, 0), + [9595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 2, 0, 0), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [9599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11426), + [9602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11426), + [9605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3791), + [9608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(3765), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11437), + [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11445), + [9621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 58), + [9623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 58), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8179), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), + [9633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), + [9635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 3, 1, 79), + [9637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(309), + [9640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4189), + [9643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(3492), + [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [9648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11251), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [9653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_declarator, 4, 0, 175), + [9655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_declarator, 4, 0, 175), + [9657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [9659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reflect_expression, 2, 0, 0), + [9661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reflect_expression, 2, 0, 0), + [9663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 1, 0, 0), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [9669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 89), + [9671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 89), + [9673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4236), + [9676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(3492), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [9681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11251), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), + [9686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [9688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_expression, 2, 0, 4), + [9690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [9692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [9694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 4), + [9696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 4), + [9698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 4), + [9700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 4), + [9702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [9704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 2, 0, 14), + [9706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11444), + [9709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11444), + [9712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_method, 2, 0, 18), + [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_method, 2, 0, 18), + [9716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_co_await_expression, 2, 0, 4), + [9720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [9722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_field_identifier, 2, 0, 0), + [9724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 9, 0, 0), + [9726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 9, 0, 0), + [9728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 1, 55), + [9730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 1, 55), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [9734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sizeof_expression, 5, 0, 163), + [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sizeof_expression, 5, 0, 163), + [9738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), + [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 165), + [9742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 5, 0, 166), + [9744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 5, 0, 166), + [9746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [9748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 4, 0, 0), + [9750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 176), + [9752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 176), + [9754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3834), + [9757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9423), + [9760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10599), + [9763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [9765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [9767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 6, 0, 189), + [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 6, 0, 189), + [9771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [9773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_defined_literal, 2, 0, 0), + [9775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 5, 0, 0), + [9777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 5, 0, 0), + [9779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [9781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependent_identifier, 2, 0, 0), + [9783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 1, 8), + [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 1, 8), + [9787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [9789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 2, 0, 30), + [9791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_name, 3, 0, 0), + [9793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_name, 3, 0, 0), + [9795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4812), + [9798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_offsetof_expression, 6, 0, 201), + [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_offsetof_expression, 6, 0, 201), + [9802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), + [9804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 203), + [9806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 6, 0, 204), + [9808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 6, 0, 204), + [9810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 219), + [9812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 219), + [9814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 7, 0, 220), + [9816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 7, 0, 220), + [9818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [9822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), + [9824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 4, 0, 89), + [9826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_expression, 8, 0, 0), + [9828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_expression, 8, 0, 0), + [9830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 227), + [9832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 227), + [9834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 8, 0, 228), + [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 8, 0, 228), + [9838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 142), + [9840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 142), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [9844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 9, 0, 231), + [9846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 9, 0, 231), + [9848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 94), + [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 94), + [9852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 66), + [9854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 66), + [9856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), + [9858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 3, 0, 56), + [9860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 5, 0, 143), + [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 5, 0, 143), + [9864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 3, 0, 0), + [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 3, 0, 0), + [9868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [9872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 116), + [9874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 116), + [9876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4156), + [9879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11449), + [9882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(309), + [9885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [9887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [9889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 58), + [9891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 58), + [9893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_initializer_list, 4, 0, 0), + [9895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_list, 4, 0, 0), + [9897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), + [9899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_literal_expression, 2, 0, 9), + [9901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alignof_expression, 4, 0, 46), + [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alignof_expression, 4, 0, 46), + [9905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4973), + [9908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gnu_asm_expression, 4, 0, 113), + [9910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_expression, 4, 0, 113), + [9912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 117), + [9914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 117), + [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [9920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 29), + [9922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 29), + [9924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [9926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 3, 0, 0), + [9928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 0, 34), + [9930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_identifier, 2, 0, 34), + [9932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [9934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_argument_list, 2, 0, 0), + [9936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(3637), + [9939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7741), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [9944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), + [9948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4659), + [9951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3953), + [9954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4681), + [9957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11119), + [9960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9328), + [9963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11121), + [9966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11280), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [9975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6132), + [9978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6132), + [9981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4928), + [9984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6600), + [9987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7733), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [9992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [9994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 2), + [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [9998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11333), + [10001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11333), + [10004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4958), + [10007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [10009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 1, 0, 2), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [10013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), + [10015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 3, 0, 21), + [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), + [10019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6130), + [10022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6130), + [10025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(4911), + [10028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(6689), + [10031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7745), + [10034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), + [10036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_specifiers, 2, 0, 21), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11420), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11420), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [10050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4311), + [10053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4311), + [10056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4312), + [10059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), + [10062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4294), + [10065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(4298), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [10070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_type_identifier, 2, 1, 35), SHIFT(310), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [10075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11440), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11440), + [10081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5022), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [10088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(4335), + [10091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11334), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [10096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4962), + [10099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5428), + [10102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7782), + [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [10107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8096), + [10109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4129), + [10112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(5428), + [10115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7738), + [10118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), + [10121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9449), + [10124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10578), + [10127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4911), + [10130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11333), + [10133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11333), + [10136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4958), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), + [10141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6689), + [10144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7745), + [10147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(4928), + [10150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(6600), + [10153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7733), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8812), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [10164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [10166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_storage_class_specifier, 1, 0, 0), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9656), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [10172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_requirement, 2, 0, 0), + [10174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_requirement, 2, 0, 0), + [10176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 67), + [10178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 67), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [10184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4154), + [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7119), + [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [10193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [10195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 6, 0, 0), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), + [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7506), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8766), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7988), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), + [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), + [10219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 4, 0, 138), + [10221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 4, 0, 138), + [10223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 2, 0, 39), + [10225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 2, 0, 39), + [10227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [10229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 2, 1, 5), + [10231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [10233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_reference_declarator, 2, 0, 0), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), + [10241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), + [10243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 3, 1, 42), + [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), + [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), + [10253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4968), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), + [10262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_pointer_declarator, 4, 1, 90), + [10264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_descriptor, 3, 0, 86), + [10266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_descriptor, 3, 0, 86), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), + [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [10286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [10288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 5, 0, 0), + [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), + [10292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [10294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_requirement, 4, 0, 0), + [10296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [10298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__requirement, 1, 0, 69), + [10300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__requirement, 1, 0, 69), + [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [10304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [10306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [10310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [10312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_declspec_modifier, 4, 0, 0), + [10314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4776), + [10317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4800), + [10320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7758), + [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11293), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [10335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4957), + [10338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5105), + [10341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7793), + [10344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4950), + [10347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5132), + [10350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7765), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), + [10357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), REDUCE(sym_type_specifier, 1, 0, 1), + [10360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(4800), + [10363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7758), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), + [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8049), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [10372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11278), + [10375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(11278), + [10378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9363), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11334), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [10387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8243), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11499), + [10394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7786), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [10401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(4335), + [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [10406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11334), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [10415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(4335), + [10418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [10420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11334), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [10437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 4, 0, 0), + [10439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 4, 0, 0), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [10459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 4, 0, 128), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [10463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 4, 0, 128), + [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [10467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 5, 0, 0), + [10469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 5, 0, 0), + [10471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 183), + [10473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 183), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [10479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binary_fold_operator, 3, 0, 137), + [10481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold_operator, 3, 0, 137), + [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [10485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension_expression, 2, 0, 0), + [10487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension_expression, 2, 0, 0), + [10489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 2, 0, 0), + [10491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 2, 0, 0), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8142), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8791), + [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [10507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5132), + [10510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7765), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [10517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5105), + [10520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7793), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [10535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9270), + [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), + [10542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [10552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete_expression, 3, 0, 0), + [10554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_expression, 3, 0, 0), + [10556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_char_literal, 3, 0, 0), + [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_char_literal, 3, 0, 0), + [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [10566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4911), + [10569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6689), + [10572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7745), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11278), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11278), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8083), + [10587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4928), + [10590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(6600), + [10593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7733), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [10598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(4800), + [10601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11333), + [10604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11333), + [10607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(4958), + [10610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9289), + [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [10615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4925), + [10618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5686), + [10621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7748), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [10628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9282), + [10631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9143), + [10634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(9143), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8754), + [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), + [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [10653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5686), + [10656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7748), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [10663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5132), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [10676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, 0, 115), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [10722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8172), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), + [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10859), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), + [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4935), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8996), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8977), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [10826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(305), + [10829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9363), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8537), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), + [10839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9386), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8095), + [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [10848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(8537), + [10851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7796), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8982), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8984), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [10870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [10872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(4716), + [10875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5105), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), + [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [10890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9285), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7573), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8705), + [10897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), + [10899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7780), + [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8303), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7361), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [10915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8744), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [10921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7795), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7787), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5889), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10942), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [10953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [10957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7740), + [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), + [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8710), + [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [11000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5428), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8722), + [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7463), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), + [11013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [11016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [11018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), + [11020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_specifiers, 1, 0, 0), REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [11023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 1, 0, 0), + [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), + [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), + [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), + [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7260), + [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), + [11041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7461), + [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7639), + [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11422), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), + [11049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5647), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11107), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8726), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8737), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8741), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8746), + [11083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [11085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), + [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8708), + [11091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), + [11093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8750), + [11097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7431), + [11099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [11105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10851), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [11113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11502), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11550), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8172), + [11129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [11131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [11137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [11147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [11149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [11155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(308), + [11158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(302), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [11167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7779), + [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [11177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7797), + [11179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [11189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [11193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), + [11196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(5086), + [11199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4910), + [11202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11263), + [11205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9313), + [11208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11608), + [11211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11251), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7743), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [11220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 2, 1, 34), SHIFT(321), + [11223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [11225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), + [11227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4659), + [11230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(5108), + [11233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(4681), + [11236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11119), + [11239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(9328), + [11242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11121), + [11245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11280), + [11248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_operator_cast_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(6320), + [11251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(5686), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [11256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(307), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7737), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [11271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(305), + [11274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 1, 0, 24), SHIFT(7788), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [11285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 127), SHIFT(308), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [11292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5249), + [11295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9653), + [11298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10606), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8181), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10761), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10877), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10960), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10993), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11086), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11350), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11525), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11575), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11605), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11659), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11717), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10626), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [11435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 127), SHIFT(321), + [11438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(308), + [11441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(316), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [11450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_field_identifier, 2, 2, 127), SHIFT(316), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [11491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 1, 75), SHIFT(321), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8422), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [11502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(308), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), + [11543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 1, 0, 61), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8084), + [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8213), + [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), + [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [11607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), + [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7883), + [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [11623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(319), + [11626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 4, 0, 146), + [11628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(316), + [11631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_qualified_identifier, 3, 1, 79), SHIFT(321), + [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [11636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(315), + [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [11641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [11645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [11647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), + [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8127), + [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8823), + [11653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5644), + [11656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9575), + [11659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10598), + [11662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 76), SHIFT(316), + [11665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), + [11671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5700), + [11674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9503), + [11677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10601), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [11696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [11712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7171), + [11716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5428), + [11719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7738), + [11722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5428), + [11725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7738), + [11728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [11730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_call_modifier, 1, 0, 0), + [11732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 2, 0, 0), + [11734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 2, 0, 0), + [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), + [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), + [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8009), + [11743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4962), + [11746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5428), + [11749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7782), + [11752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__declarator, 1, 0, 0), + [11754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6186), + [11757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6185), + [11760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(5022), + [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8085), + [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), + [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8069), + [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), + [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6186), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [11785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11411), + [11789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [11791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(5428), + [11794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7782), + [11797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8144), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), + [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8081), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8217), + [11809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8217), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), + [11815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8180), + [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8155), + [11825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8155), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [11831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [11833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6955), + [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7094), + [11839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4958), + [11842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [11846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), + [11848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8281), + [11856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8281), + [11858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6185), + [11860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [11862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [11868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), + [11872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8265), + [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), + [11878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), + [11880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5688), + [11882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8333), + [11888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8333), + [11890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), + [11892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [11894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8543), + [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), + [11902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), + [11904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8541), + [11906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8542), + [11908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8240), + [11916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8240), + [11918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [11920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [11922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [11928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), + [11930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8258), + [11932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [11934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [11936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6374), + [11939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6374), + [11942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6422), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8249), + [11949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8249), + [11951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4928), + [11954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6600), + [11957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7733), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [11962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [11964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(4911), + [11967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(6689), + [11970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7745), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [11975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), + [11977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6689), + [11980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7745), + [11983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8792), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8451), + [11991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8451), + [11993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [11997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [12003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [12007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [12011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [12019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [12021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [12023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [12025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), + [12029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(6600), + [12032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7733), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), + [12039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8463), + [12041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [12045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 1, 0, 0), + [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11423), + [12059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9162), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), + [12065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8461), + [12067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 3, 0, 150), + [12069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 3, 0, 150), + [12071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [12073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_function_specifier, 4, 0, 0), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), + [12081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8507), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8465), + [12085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [12089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [12095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [12099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [12103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11263), + [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), + [12127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9287), + [12130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9277), + [12133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11278), + [12136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11278), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11279), + [12145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7554), + [12147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6698), + [12150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11411), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [12155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4335), + [12158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(6413), + [12161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7554), + [12164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11278), + [12167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11278), + [12170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(9363), + [12173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11279), + [12176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(7554), + [12179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(4335), + [12182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(11334), + [12185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6700), + [12188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pointer_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(6706), + [12191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [12193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(6698), + [12196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), + [12198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(11411), + [12201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), + [12205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7065), + [12207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(6698), + [12210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [12212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(11411), + [12215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), + [12217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [12221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [12223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [12227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [12241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [12247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6689), + [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), + [12262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8624), + [12264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(6600), + [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [12279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [12281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitfield_clause, 2, 0, 0), + [12283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10169), + [12287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, 0, 0), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), + [12291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 185), + [12293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 4, 0, 185), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [12303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11278), + [12306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(11278), + [12309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9363), + [12312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8243), + [12315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7786), + [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [12326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [12330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [12336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [12340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [12344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [12368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comma_expression, 3, 0, 87), + [12370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 3, 0, 121), + [12372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 4, 0, 195), + [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), + [12378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [12386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [12390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [12396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [12400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [12404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [12408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), + [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [12432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), + [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), + [12440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [12442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), + [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), + [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [12450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [12452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [12454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [12456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), + [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [12478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [12484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8051), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [12494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [12496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [12498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [12500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [12502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [12504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [12506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8858), + [12508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [12510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [12512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [12514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [12516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [12518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [12520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [12522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [12524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [12526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [12528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [12530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(6690), + [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [12537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT(1444), + [12540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), + [12542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [12544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [12546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [12548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [12550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [12552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 4, 0, 206), + [12554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [12556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [12558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [12560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [12562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [12564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [12566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [12568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [12570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [12572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [12574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [12576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [12578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [12580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [12582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [12584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [12586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [12588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [12590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [12592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [12594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [12596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [12598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [12600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [12602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [12604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [12606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [12608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_annotation, 2, 0, 0), + [12610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [12612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [12614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [12616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [12618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [12620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [12622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [12624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [12626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [12628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [12630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [12632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [12634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [12636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [12638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [12640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [12642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [12644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [12646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter_declaration, 3, 0, 170), + [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [12656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 196), + [12658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 3, 0, 87), + [12660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [12662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 3, 0, 149), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8620), + [12666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10644), + [12668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [12670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [12672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [12674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 197), + [12676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 158), + [12678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 3, 1, 159), + [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8637), + [12684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10986), + [12686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [12688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 4, 1, 199), + [12690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 1, 0), + [12692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), + [12694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11273), + [12696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8615), + [12698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11556), + [12700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [12702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8639), + [12704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11031), + [12706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8640), + [12708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11196), + [12710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), + [12712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11329), + [12714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), + [12716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [12718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [12720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 4, 0, 0), + [12722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [12724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_initializer, 5, 0, 191), + [12726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_statement_body, 5, 1, 215), + [12728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [12730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [12732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [12738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [12740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [12742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [12744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [12746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [12748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [12750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [12752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [12754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8280), + [12756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), + [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [12764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [12766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [12768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8323), + [12770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), + [12772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [12774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [12776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [12778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [12782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [12784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [12786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [12788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [12790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [12792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [12794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [12796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [12798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [12800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [12802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [12804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [12806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [12808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [12810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [12812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [12814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [12816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [12818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [12820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [12822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [12824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [12826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [12828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [12832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [12834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [12836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8351), + [12838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), + [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11456), + [12842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11456), + [12844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [12846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [12848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [12850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [12852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_left_fold, 3, 0, 58), + [12854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [12856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [12858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [12860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [12862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [12864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9850), + [12866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [12868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9426), + [12870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [12872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8301), + [12874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), + [12876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [12878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [12880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [12882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [12884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8276), + [12886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), + [12888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_expression_lhs, 3, 0, 58), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [12898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 4, 0, 198), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [12902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameter_list, 2, 0, 0), REDUCE(sym_argument_list, 2, 0, 0), + [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9632), + [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), + [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10131), + [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), + [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9807), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [12947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [12949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8311), + [12951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7394), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), + [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [12977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9143), + [12980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(9143), + [12983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [12985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8302), + [12987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7492), + [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9808), + [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [13009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_fold, 3, 0, 88), + [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [13013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_range_loop_body, 5, 0, 216), + [13015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [13017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8309), + [13019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), + [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), + [13033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(7556), + [13036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_definition_type_repeat1, 2, 0, 0), SHIFT_REPEAT(11122), + [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), + [13041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [13043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8282), + [13045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7399), + [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9618), + [13055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [13057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8307), + [13059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), + [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), + [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [13087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8695), + [13091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lambda_capture, 1, 0, 0), + [13093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), REDUCE(sym__lambda_capture, 1, 0, 0), + [13096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7208), + [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [13106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11278), + [13109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(11278), + [13112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9363), + [13115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7564), + [13117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [13119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8936), + [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8748), + [13123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), + [13125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [13127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), + [13131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [13133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [13135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8141), + [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8777), + [13141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8243), + [13144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7786), + [13147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), + [13149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(8537), + [13152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7796), + [13155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [13157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8821), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8742), + [13161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), + [13163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9128), + [13165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8285), + [13167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [13169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [13171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7258), + [13173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [13175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7740), + [13178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 2, 0, 24), SHIFT(7788), + [13181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9143), + [13184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(9143), + [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8070), + [13189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7677), + [13192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7678), + [13195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), SHIFT(7676), + [13198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7686), + [13200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [13202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11140), + [13204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7680), + [13207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7672), + [13210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 1, 0, 0), SHIFT(7668), + [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), + [13217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(8537), + [13220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7796), + [13223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7740), + [13226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11278), + [13229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(11278), + [13232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9363), + [13235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8243), + [13238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7786), + [13241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 3, 0, 24), SHIFT(7788), + [13244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [13246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [13248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [13250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [13252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9418), + [13254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, -1, 80), SHIFT(4129), + [13257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 2), SHIFT(4129), + [13260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [13262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [13264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), + [13266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9521), + [13268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 21), SHIFT(7674), + [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [13275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), + [13277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9558), + [13279] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, 0, 0), REDUCE(aux_sym_sized_type_specifier_repeat1, 2, 0, 0), SHIFT(4129), + [13283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 21), SHIFT(4129), + [13286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 36), SHIFT(4129), + [13289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 46), SHIFT(7681), + [13292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, -1, 80), SHIFT(7665), + [13295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 3, 0, 0), SHIFT(4129), + [13298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8960), + [13300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7781), + [13302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8958), + [13304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 36), SHIFT(7675), + [13307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 4, 0, 46), SHIFT(4129), + [13310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8950), + [13312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8968), + [13314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8943), + [13316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), + [13318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_sized_type_specifier, 2, -1, 19), SHIFT(4129), + [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [13325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [13327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9490), + [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [13333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [13335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9459), + [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [13341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [13343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9437), + [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [13349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [13351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9542), + [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [13357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [13359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9507), + [13361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [13363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 2), + [13365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9143), + [13368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(9143), + [13371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [13373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 1, 0, 2), + [13375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 3, 0, 21), + [13377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 3, 0, 21), + [13379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_type, 2, 0, 21), + [13381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_type, 2, 0, 21), + [13383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(8537), + [13386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7796), + [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [13391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8724), + [13397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [13399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9641), + [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [13403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), + [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), + [13409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9343), + [13411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [13415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [13417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10847), + [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [13423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9168), + [13425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [13429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8382), + [13431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9545), + [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [13437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [13439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [13441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), + [13443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8400), + [13445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8426), + [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [13449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [13451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6555), + [13453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), + [13455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [13459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8055), + [13461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9498), + [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [13465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8733), + [13467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9354), + [13469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7740), + [13472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [13474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8736), + [13476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8322), + [13478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8739), + [13480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8503), + [13482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [13484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8001), + [13486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9235), + [13494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8719), + [13496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [13498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9166), + [13500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [13502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [13506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_specifier, 1, 0, 0), SHIFT(7666), + [13509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [13511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), + [13513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [13515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8714), + [13517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [13519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8545), + [13521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [13523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 4, 0, 24), SHIFT(7788), + [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8648), + [13528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9234), + [13530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [13532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11562), + [13534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), + [13536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9194), + [13538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5021), + [13540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [13542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), + [13544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9254), + [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [13548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), + [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9263), + [13552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9067), + [13554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11148), + [13556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), + [13558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), + [13560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10192), + [13562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9104), + [13564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [13566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), + [13568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [13570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [13572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [13574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [13576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), + [13578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9196), + [13580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [13582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10921), + [13584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7915), + [13586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9187), + [13588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), + [13590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [13592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [13594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [13596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7919), + [13598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9189), + [13600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [13602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10870), + [13604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), + [13606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9178), + [13608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [13610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [13612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [13614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [13616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [13618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [13620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), + [13622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9191), + [13624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [13626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), + [13628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9172), + [13630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [13632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), + [13634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9204), + [13636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [13638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [13640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), + [13642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9227), + [13644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [13646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), + [13648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9167), + [13650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [13652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10683), + [13654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7940), + [13656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9158), + [13658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), + [13660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [13662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), + [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9192), + [13666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [13668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7942), + [13670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9186), + [13672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), + [13674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [13676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), + [13678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7945), + [13680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9156), + [13682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [13684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [13686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [13688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11631), + [13690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), + [13692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9219), + [13694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [13696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [13698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9193), + [13700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [13702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [13704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [13706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [13708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [13710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [13712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [13714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [13716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [13718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [13720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), + [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9212), + [13724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [13726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7961), + [13728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9195), + [13730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [13732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), + [13734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9164), + [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [13738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [13740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), + [13742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9262), + [13744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [13746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [13748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), + [13750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9246), + [13752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [13754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [13756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9328), + [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7974), + [13765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9198), + [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), + [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [13783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10317), + [13789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9363), + [13792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [13794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [13796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [13798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10249), + [13800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8332), + [13802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9217), + [13804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9495), + [13806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), + [13808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9183), + [13810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9373), + [13812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9239), + [13814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8804), + [13816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9175), + [13818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [13820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [13822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [13824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10346), + [13826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8243), + [13829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7786), + [13832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [13834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8967), + [13836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [13838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [13840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [13842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [13844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [13846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [13848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [13850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [13852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8304), + [13854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9253), + [13856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [13858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [13860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [13862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [13864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8243), + [13867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7786), + [13870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [13872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8236), + [13874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), + [13876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8358), + [13878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [13880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), + [13882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10171), + [13884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [13886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), + [13888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__preproc_expression, 1, 0, 0), + [13890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10538), + [13892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), + [13894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7662), + [13896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [13898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [13900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [13902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [13904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [13906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [13910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9152), + [13916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10374), + [13918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [13920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [13922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [13924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [13926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(8243), + [13929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [13931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [13937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [13939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), + [13941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8067), + [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), + [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), + [13947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10418), + [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), + [13951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8173), + [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), + [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10003), + [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10472), + [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8230), + [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), + [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [13969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8762), + [13971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8974), + [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10202), + [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10486), + [13985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [13987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11277), + [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8113), + [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8216), + [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11576), + [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), + [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), + [14001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8165), + [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8166), + [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), + [14007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), + [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8169), + [14011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8171), + [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8174), + [14015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8176), + [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), + [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), + [14021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [14023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [14025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), + [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), + [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8313), + [14039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [14041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [14043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8091), + [14045] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [14047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [14049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11030), + [14052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8441), + [14054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9009), + [14056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [14058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [14060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [14062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), + [14064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [14066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [14068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [14070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), + [14072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), + [14074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_binary_expression, 3, 0, 58), + [14076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [14078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8397), + [14080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9048), + [14082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [14084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 4, 0, 0), + [14086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8129), + [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8175), + [14090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10360), + [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8182), + [14094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8182), + [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), + [14098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9816), + [14100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [14102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_defined, 2, 0, 0), + [14104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [14106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_unary_expression, 2, 0, 4), + [14108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8345), + [14110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [14112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 4, 0, 0), + [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), + [14116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), + [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), + [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), + [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), + [14124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8148), + [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), + [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), + [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), + [14132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8288), + [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), + [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), + [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8350), + [14140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), + [14144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9008), + [14146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [14148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8376), + [14150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9011), + [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), + [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), + [14156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), + [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), + [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), + [14162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [14164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_parenthesized_expression, 3, 0, 0), + [14166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), + [14168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_call_expression, 2, 0, 8), + [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8346), + [14172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [14174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 3, 0, 0), + [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), + [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), + [14180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8318), + [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), + [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), + [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8425), + [14188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9058), + [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), + [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), + [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8222), + [14196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), + [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), + [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8331), + [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), + [14204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), + [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8259), + [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), + [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8235), + [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8286), + [14214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), + [14216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), + [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), + [14220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [14222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_argument_list, 2, 0, 0), + [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), + [14226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), + [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8244), + [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [14232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8203), + [14234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8208), + [14236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8210), + [14238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8215), + [14240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), + [14242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8219), + [14244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), + [14246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8227), + [14248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8228), + [14250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8229), + [14252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [14254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 24), + [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [14258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [14260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 0), + [14262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 62), + [14264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8865), + [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [14268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8417), + [14270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8466), + [14272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8467), + [14274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8468), + [14276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8469), + [14278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8501), + [14280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8471), + [14282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8472), + [14284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [14288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [14290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8456), + [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [14294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [14296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8490), + [14298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 62), + [14300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8445), + [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [14304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8477), + [14306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8495), + [14308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8446), + [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), + [14314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8486), + [14316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8447), + [14318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8455), + [14320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8493), + [14322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8448), + [14324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8459), + [14326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8492), + [14328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8450), + [14330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8470), + [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [14334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8494), + [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), + [14338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8886), + [14340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [14342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [14344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 1, 0, 24), + [14346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8444), + [14348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8454), + [14350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [14352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8497), + [14354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8498), + [14356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8473), + [14358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), + [14360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [14362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), + [14364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8457), + [14366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8908), + [14368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [14370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [14372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [14374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9396), + [14376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8364), + [14378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9041), + [14380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [14382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9025), + [14384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9121), + [14386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [14388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [14390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [14392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [14394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9033), + [14396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [14398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [14400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [14402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [14404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [14406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9069), + [14408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [14410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11119), + [14413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), + [14415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(11280), + [14418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9133), + [14420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [14422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [14424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(8537), + [14427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7740), + [14430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(8537), + [14433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7740), + [14436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9027), + [14438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_postfix_repeat1, 2, 0, 0), SHIFT_REPEAT(8537), + [14441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [14443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [14445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_declarator, 2, 0, 0), + [14447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [14449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9023), + [14451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 5), + [14453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8500), + [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10596), + [14459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 2, 0, 0), + [14461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(8489), + [14464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(9422), + [14467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenated_string_repeat1, 2, 0, 0), SHIFT_REPEAT(10596), + [14470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8843), + [14472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 1, 0, 0), + [14474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8489), + [14476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [14478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 3, 1, 42), + [14480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 3, 1, 42), + [14482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 125), + [14484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 125), + [14486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 4, 1, 90), + [14488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 4, 1, 90), + [14490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9066), + [14492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8706), + [14494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7796), + [14497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7796), + [14500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9643), + [14502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8709), + [14504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [14506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 3, -10, 0), + [14508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9049), + [14510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8755), + [14512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [14514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 2, 1, 5), + [14516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_declarator, 5, 1, 180), + [14518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_declarator, 5, 1, 180), + [14520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9021), + [14522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8717), + [14524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9487), + [14526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8720), + [14528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 4, 0, 27), + [14530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 4, 0, 27), + [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [14534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8631), + [14536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9599), + [14538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8713), + [14540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9065), + [14542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8723), + [14544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9455), + [14546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8728), + [14548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [14550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 5), + [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [14554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9055), + [14556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8730), + [14558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [14560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_declarator, 2, 1, 0), + [14562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9625), + [14564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8735), + [14566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9004), + [14568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8738), + [14570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9463), + [14572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8740), + [14574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 5, 0, 182), + [14576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 5, 0, 182), + [14578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8653), + [14580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9568), + [14582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8669), + [14584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_declarator, 3, 0, 27), + [14586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_declarator, 3, 0, 27), + [14588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [14590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 3, -1, 0), + [14592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [14594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_binding_declarator, 4, -1, 0), + [14596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declarator, 2, 1, 25), + [14598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declarator, 2, 1, 25), + [14600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8658), + [14602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [14604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_declarator, 4, -10, 0), + [14606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9005), + [14608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8756), + [14610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8647), + [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9003), + [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9245), + [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9325), + [14618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8178), + [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10938), + [14622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [14624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 2, 1, 5), + [14626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), + [14628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 3, 1, 42), + [14630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [14632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_field_declarator, 2, 1, 0), + [14634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), + [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [14640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), + [14642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 4, 1, 90), + [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9229), + [14646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 3, 0, 84), + [14648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 5, 0, 24), SHIFT(7788), + [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [14653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 2, 0, 10), + [14655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_field_declarator, 5, 1, 180), + [14657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_field_declarator, 5, 1, 180), + [14659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [14661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9387), + [14663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [14665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9317), + [14667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9635), + [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), + [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10023), + [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9602), + [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9947), + [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), + [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10043), + [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), + [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9989), + [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), + [14695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_declarator_seq, 6, 0, 24), SHIFT(7788), + [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [14702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9833), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9613), + [14706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [14708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9360), + [14710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [14712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attributed_field_declarator, 2, 0, 0), + [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [14720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [14722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9746), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9597), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [14728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7025), + [14730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9392), + [14732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [14734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9381), + [14736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9462), + [14738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [14740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9400), + [14742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9612), + [14744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [14748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 71), + [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [14754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9482), + [14756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10007), + [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), + [14762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [14764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [14766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9286), + [14768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [14770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9318), + [14772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [14774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9512), + [14776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8262), + [14778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [14780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [14782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9353), + [14784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [14786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9491), + [14788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [14790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9369), + [14792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8251), + [14794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9379), + [14796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9598), + [14798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [14800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9394), + [14802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [14804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9367), + [14806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [14808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9319), + [14810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [14812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9404), + [14814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [14816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9268), + [14818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [14820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), + [14822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [14824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9274), + [14826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9293), + [14828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7429), + [14830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [14832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8952), + [14834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9810), + [14836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8156), + [14838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11387), + [14840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), + [14842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [14844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [14850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [14852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [14854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), + [14860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [14862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 107), + [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [14866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 107), + [14868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [14870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 3, 0, 179), + [14872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [14878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [14884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [14890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [14892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10708), + [14894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__field_declarator, 1, 0, 0), + [14896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__field_declarator, 1, 0, 0), + [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), + [14900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [14902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 27), + [14904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 27), + [14906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), + [14908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(8967), + [14911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [14913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 3, -10, 0), + [14915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [14917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_field_declarator, 4, -10, 0), + [14919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 4, 0, 125), + [14921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 4, 0, 125), + [14923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 3, 0, 27), + [14925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 3, 0, 27), + [14927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_field_declarator, 5, 0, 182), + [14929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_field_declarator, 5, 0, 182), + [14931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_field_declarator, 2, 1, 25), + [14933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_field_declarator, 2, 1, 25), + [14935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 3, 0, 84), + [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9628), + [14939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8233), + [14941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11592), + [14943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 10), + [14945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9307), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10431), + [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9846), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9828), + [14953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 3, 0, 0), + [14955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), + [14957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8231), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11563), + [14961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9810), + [14964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8183), + [14967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(11038), + [14970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(10318), + [14973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [14975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 10), + [14977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 2, 0, 10), + [14979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9233), + [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9685), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9252), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9889), + [14987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 5, 0, 0), + [14989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 4, 0, 0), + [14991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_capture_specifier, 6, 0, 0), + [14993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9211), + [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10813), + [14997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11570), + [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9243), + [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), + [15003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), + [15005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 1, 0, 27), + [15007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 84), + [15009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 84), + [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8954), + [15015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 1, 0, 0), + [15017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10789), + [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8976), + [15021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), + [15023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 5), + [15025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), + [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8942), + [15029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [15031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_specifier, 1, 0, 0), + [15033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 1, 0, 0), + [15035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10701), + [15037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8948), + [15039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10015), + [15041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), + [15043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10633), + [15045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9806), + [15047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), + [15049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11264), + [15051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), + [15053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9896), + [15055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9775), + [15057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9497), + [15059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9435), + [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [15063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10735), + [15067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9862), + [15069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10750), + [15071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9904), + [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11261), + [15075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9465), + [15077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [15079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 31), + [15081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9711), + [15083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [15085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__scope_resolution, 2, 0, 15), + [15087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9421), + [15089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9864), + [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10996), + [15093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enumerator, 1, 0, 6), + [15095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enumerator, 1, 0, 6), + [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [15099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [15109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10223), + [15111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10231), + [15113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8527), + [15115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10552), + [15117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), + [15119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(1687), + [15122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_pair_repeat1, 2, 0, 0), SHIFT_REPEAT(10735), + [15125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), + [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), + [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [15149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 62), + [15151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [15153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [15155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10390), + [15157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [15159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 24), + [15161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_cast, 3, 0, 63), + [15163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10407), + [15165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [15167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [15169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [15171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [15173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [15175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11263), + [15178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(11263), + [15181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [15183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 24), + [15185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 62), + [15187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [15191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10560), + [15197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lambda_capture_identifier, 1, 0, 0), SHIFT(8573), + [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8585), + [15204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), SHIFT_REPEAT(9810), + [15207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [15209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_repeat1, 2, 0, 0), + [15211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), SHIFT_REPEAT(9003), + [15214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [15216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 2, 0, 0), + [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10616), + [15228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10012), + [15230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10028), + [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), + [15234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10174), + [15236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [15240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10333), + [15242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [15244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [15246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10446), + [15248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10480), + [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), + [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [15254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, 0, 61), + [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), + [15258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, 0, 71), + [15260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10327), + [15262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10156), + [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), + [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), + [15268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9251), + [15272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_preproc_if_in_enumerator_list_no_comma_repeat1, 1, 0, 0), + [15274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), + [15276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(9370), + [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8614), + [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8628), + [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), + [15285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), + [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8659), + [15293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8655), + [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), + [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8634), + [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), + [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8650), + [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8657), + [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8633), + [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), + [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8608), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), + [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8610), + [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), + [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8664), + [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [15325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 3, 0, 0), + [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9340), + [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), + [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [15355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 134), + [15357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 134), + [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8849), + [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9942), + [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9157), + [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9265), + [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [15411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 186), + [15413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 6, 0, 186), + [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [15427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10616), + [15429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11294), + [15431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), + [15433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 5, 0, 84), + [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), + [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [15441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 4, 0, 0), + [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8411), + [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [15449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [15473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [15475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 3, 0, 10), + [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [15481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), + [15483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_if_in_enumerator_list, 4, 0, 84), + [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8751), + [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9376), + [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9650), + [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [15497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 135), + [15499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 5, 0, 135), + [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [15505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enumerator_list_repeat1, 2, 0, 0), + [15507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), + [15509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 85), + [15511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [15513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_ifdef_in_enumerator_list, 4, 0, 10), + [15515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_specifier, 1, 0, 0), + [15517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_specifier, 1, 0, 0), + [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [15525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11602), + [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10306), + [15543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9371), + [15545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11515), + [15547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10355), + [15557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), + [15559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_name_repeat1, 2, 0, 0), SHIFT_REPEAT(11492), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [15564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), SHIFT_REPEAT(8465), + [15567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), + [15569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 2, 0, 194), + [15571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), + [15573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_definition_declarators, 2, 0, 93), + [15575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10427), + [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [15583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributed_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(9311), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10373), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6206), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), + [15598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [15600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), + [15604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 1, 0, 0), + [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11492), + [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [15610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10047), + [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10258), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10577), + [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10620), + [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [15626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 1, 0, 0), + [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), + [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [15636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 123), SHIFT_REPEAT(8268), + [15639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 123), + [15641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_definition_declarators_repeat1, 2, 0, 123), + [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [15653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10388), + [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10272), + [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), + [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9708), + [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10500), + [15687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_qualifier, 1, 0, 0), + [15689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 6), + [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11160), + [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), + [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10339), + [15703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_name, 2, 0, 0), + [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10384), + [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10324), + [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), + [15717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 145), + [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11506), + [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10284), + [15725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10462), + [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10612), + [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10205), + [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [15755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_operator_cast_identifier, 2, 0, 34), + [15757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), + [15761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9439), + [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [15765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 229), SHIFT_REPEAT(8600), + [15768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 229), + [15770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), + [15774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9430), + [15776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 1, 0, 20), + [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9106), + [15780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8752), + [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), + [15784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9456), + [15786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9446), + [15790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9446), + [15792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), + [15794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9427), + [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [15798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9900), + [15800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), + [15802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_char_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9427), + [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9032), + [15807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 3, 0, 202), + [15809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9977), + [15815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11014), + [15817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [15819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), + [15823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9488), + [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9098), + [15827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [15829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand_list, 2, 0, 164), + [15831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [15833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9439), + [15836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(9439), + [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10233), + [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10262), + [15843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [15845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 5), + [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10573), + [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [15851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [15855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9515), + [15859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9515), + [15861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [15865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11367), + [15867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [15871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10890), + [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [15875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8666), + [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [15885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8348), + [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), + [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [15891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 212), + [15893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_field_declaration_repeat1, 3, 0, 212), + [15895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [15897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), + [15901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9485), + [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8600), + [15905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 3, 0, 225), + [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8557), + [15909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9642), + [15913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9642), + [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9042), + [15919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 3, 0, 202), + [15921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), + [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9629), + [15925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9629), + [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9874), + [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), + [15931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 3, 0, 0), + [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10005), + [15937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 1, 0, 0), + [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [15941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), + [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10193), + [15945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 4, 0, 0), + [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [15949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8540), + [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [15959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 217), SHIFT_REPEAT(9032), + [15962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 217), + [15964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand_list, 2, 0, 164), + [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), + [15968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [15970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [15972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), + [15974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9529), + [15976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [15978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), + [15982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9514), + [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [15986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10506), + [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10524), + [15990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [15994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [15998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [16000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [16002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11533), + [16004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9633), + [16008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9633), + [16010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [16012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9502), + [16016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), + [16018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [16020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), + [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), + [16024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9506), + [16026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [16028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9541), + [16030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9541), + [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [16034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9307), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [16040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11100), + [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [16046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11664), + [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10307), + [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10556), + [16052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), + [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [16058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10997), + [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [16062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 217), SHIFT_REPEAT(9042), + [16065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 217), + [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10592), + [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10503), + [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8859), + [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [16077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), + [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10528), + [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10269), + [16085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9585), + [16089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9585), + [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [16095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), + [16099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9433), + [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [16103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 97), + [16105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 6, 0, 210), + [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [16111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10724), + [16113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9631), + [16117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9631), + [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [16123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_designator, 2, 0, 101), + [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), + [16127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [16129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [16133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10934), + [16135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [16139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10734), + [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [16151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9619), + [16155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9619), + [16157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11220), + [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9516), + [16161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9516), + [16163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9450), + [16167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9450), + [16169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list, 2, 0, 0), + [16171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 2, 0, 0), + [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [16175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [16179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_clobber_list, 2, 0, 218), + [16181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_range_designator, 5, 0, 211), + [16183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10271), + [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10315), + [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [16191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9639), + [16195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9639), + [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [16199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_else_in_enumerator_list_no_comma, 1, 0, 0), + [16201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), + [16203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [16205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [16207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_designator, 3, 0, 0), + [16209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9877), + [16215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 2, 0, 0), + [16217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), + [16219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [16223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9825), + [16229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 5, 0, 0), + [16231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10695), + [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), + [16237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [16239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), + [16243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5807), + [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), + [16247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9415), + [16249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9649), + [16253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9649), + [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), + [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), + [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10347), + [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), + [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), + [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), + [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), + [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9901), + [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10492), + [16283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 3, 0, 0), + [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9312), + [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), + [16293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), + [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [16313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 6, 0, 0), + [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10301), + [16337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(5018), + [16340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_throw_specifier_repeat1, 2, 0, 0), + [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [16344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [16346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [16348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), + [16358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10536), + [16360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__namespace_specifier, 2, 0, 64), + [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), + [16364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8920), + [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [16372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8861), + [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), + [16376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8906), + [16378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8911), + [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [16384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [16388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), + [16392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [16396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [16398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [16400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [16402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8973), + [16406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [16408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [16410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [16412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [16414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [16420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10513), + [16424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [16426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10754), + [16428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10755), + [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10767), + [16432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [16436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11020), + [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [16444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [16452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10332), + [16458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [16460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [16462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [16464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [16468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [16470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [16472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [16474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [16476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [16478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [16480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 232), SHIFT_REPEAT(11528), + [16483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 232), + [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), + [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [16515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 62), + [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [16531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9556), + [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10541), + [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [16541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8112), + [16543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 7, 0, 233), + [16545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 7, 0, 233), + [16547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1304), + [16550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), + [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [16556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [16558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10445), + [16562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9464), + [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [16566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), + [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10320), + [16574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 4, 0, 0), + [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8375), + [16578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), + [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11553), + [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10992), + [16598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10998), + [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [16606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_namespace_specifier, 2, 0, 0), + [16608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1224), + [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10546), + [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10512), + [16629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_output_operand, 4, 0, 224), + [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10718), + [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [16639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 123), SHIFT_REPEAT(6386), + [16642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 2, 0, 123), + [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [16662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 24), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10190), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10266), + [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10608), + [16674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), + [16678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(8029), + [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), + [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10354), + [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10206), + [16705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 5, 0, 0), + [16707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_class_clause, 7, 0, 0), + [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), + [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9736), + [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9737), + [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [16731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [16733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [16735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [16737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [16739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), + [16741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), + [16743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [16745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [16747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10334), + [16749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_input_operand_list_repeat1, 2, 0, 164), + [16751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10145), + [16753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10162), + [16755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [16757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [16759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [16761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9763), + [16763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9845), + [16765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10228), + [16767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9964), + [16769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_init_declarator, 2, 0, 73), + [16771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_condition_declaration, 3, 0, 154), + [16773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10494), + [16775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), + [16777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9586), + [16779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [16781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [16783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [16785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10401), + [16787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 107), + [16789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [16791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10665), + [16793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10666), + [16795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10667), + [16797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), + [16799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [16801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10404), + [16803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 2, 0, 0), + [16805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [16807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [16809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [16811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [16813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [16815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [16817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11528), + [16819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 3, 0, 230), + [16821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), + [16823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [16825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [16827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [16829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [16831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [16833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [16835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10157), + [16837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10515), + [16839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10216), + [16841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9588), + [16843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [16845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [16847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), + [16849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [16851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 3, 0), + [16853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [16855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [16857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(377), + [16860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), + [16862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11259), + [16864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11260), + [16866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11272), + [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [16872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [16874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [16876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [16878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [16880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [16884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9638), + [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6000), + [16888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_declarator, 2, 0, 0), + [16890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4941), + [16893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_expression_repeat1, 2, 0, 0), + [16895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10778), + [16897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10788), + [16899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10794), + [16901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), + [16903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_reference_declarator, 2, 0, 0), + [16905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [16907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [16909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [16911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [16913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9511), + [16915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [16917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [16919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [16921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [16923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [16925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [16927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10786), + [16929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10787), + [16931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10791), + [16933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [16935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [16937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [16939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [16941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2290), + [16944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_parameter_list_repeat1, 2, 0, 0), + [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [16948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(9901), + [16951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat1, 2, 0, 0), + [16953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [16955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [16957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [16959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [16961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [16963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [16965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9648), + [16967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [16969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [16971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), + [16973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11191), + [16975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11192), + [16977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11195), + [16979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [16981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [16983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [16985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [16987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [16989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [16991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(10492), + [16994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_declaration_repeat2, 2, 0, 0), + [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [16998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), + [17000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [17002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [17004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9468), + [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), + [17012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2472), + [17015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_requires_parameter_list_repeat1, 2, 0, 0), + [17017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [17019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [17021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), + [17023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9436), + [17025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [17027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [17029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [17031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [17033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9614), + [17035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [17037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [17039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [17041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9424), + [17043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9453), + [17045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2322), + [17048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), + [17050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_output_operand_list_repeat1, 2, 0, 164), + [17052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9518), + [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [17056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9630), + [17058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [17060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [17062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [17064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8375), + [17067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [17069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [17071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [17073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [17075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), + [17077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), + [17080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [17082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [17084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [17086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7234), + [17088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [17090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [17098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [17100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5928), + [17102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [17104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [17106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), + [17108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [17110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [17112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), + [17116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), + [17118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [17120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [17122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [17124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [17126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [17128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), + [17130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [17132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(8216), + [17135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), SHIFT_REPEAT(10579), + [17138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_preproc_params_repeat1, 2, 0, 0), + [17140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [17142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_input_operand, 4, 0, 224), + [17144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_clobber_list_repeat1, 2, 0, 218), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), + [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [17172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), + [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [17182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [17188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10579), + [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10586), + [17194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [17198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), + [17202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [17204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [17206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [17208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [17210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [17212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), SHIFT_REPEAT(11716), + [17215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2, 0, 0), + [17217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10247), + [17219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 2, 0, 0), + [17221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [17223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8919), + [17225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [17227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), SHIFT_REPEAT(8068), + [17230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_lambda_capture_specifier_repeat1, 2, 0, 0), + [17232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [17236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [17238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [17240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [17242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8573), + [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11250), + [17248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter_declaration, 2, 0, 71), + [17250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 2, 0, 226), + [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8885), + [17256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10326), + [17258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 3, 0, 0), + [17260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [17262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10469), + [17264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [17266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [17272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11469), + [17274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11712), + [17276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_class_clause_repeat1, 6, 0, 0), + [17278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 2, 0), + [17280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [17282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [17284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [17286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11213), + [17288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [17290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11696), + [17292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [17294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [17296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11483), + [17298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [17300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), + [17302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [17304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_type_parameter_declaration, 3, 0, 168), + [17306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 3, 0, 169), + [17308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_template_parameter_declaration, 3, 0, 62), + [17310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [17312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11221), + [17314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [17316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [17318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10744), + [17320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [17322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), + [17324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [17326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11171), + [17328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 7, 0, 210), + [17330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [17332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [17334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10891), + [17336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [17338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11513), + [17340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [17342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11174), + [17344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [17346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [17348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_explicit_object_parameter_declaration, 2, 0, 0), + [17350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [17352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter_declaration, 4, 0, 205), + [17354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [17356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [17358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 6), + [17360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10187), + [17362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gnu_asm_goto_list, 1, 0, 0), + [17364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_repeat1, 4, 0, 209), + [17366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8290), + [17368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10795), + [17370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [17372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [17374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 107), + [17376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 0), + [17378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_gnu_asm_goto_list_repeat1, 2, 0, 226), + [17380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10961), + [17382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10959), + [17384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8159), + [17386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10748), + [17388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [17390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10833), + [17392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [17394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10790), + [17396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [17398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 4, 0, 0), + [17400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 4, 0, 0), + [17402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [17404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [17406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_initializer_pair, 2, 0, 102), + [17408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [17410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11028), + [17412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [17414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10810), + [17416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 2, 0, 0), + [17418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 2, 0, 0), + [17420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [17422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [17424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11316), + [17426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11146), + [17428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11676), + [17430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 5, 0, 145), + [17432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_partition, 2, 0, 0), + [17434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [17436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8057), + [17438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_parameter_pack_expansion, 2, 0, 28), + [17440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [17442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_pack_expansion, 2, 0, 28), + [17444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11297), + [17446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11683), + [17448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11324), + [17450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11686), + [17452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10468), + [17454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4, 0, 97), + [17456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11346), + [17458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11689), + [17460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_params, 3, 0, 0), + [17462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preproc_params, 3, 0, 0), + [17464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11366), + [17466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11692), + [17468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11386), + [17470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11695), + [17472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11403), + [17474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11698), + [17476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11417), + [17478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11700), + [17480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11424), + [17482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11701), + [17484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11430), + [17486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11702), + [17488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11434), + [17490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11703), + [17492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11438), + [17494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11704), + [17496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11442), + [17498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11705), + [17500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11446), + [17502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11706), + [17504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11450), + [17506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11707), + [17508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11454), + [17510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11708), + [17512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11458), + [17514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11709), + [17516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11462), + [17518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11710), + [17520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11466), + [17522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11711), + [17524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [17526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [17528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [17530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [17532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [17534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [17536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [17538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), + [17540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [17542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9705), + [17544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [17546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [17548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [17550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [17552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10932), + [17554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [17556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [17558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11600), + [17560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [17562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [17564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), + [17566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [17568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10988), + [17570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [17572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [17574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [17576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [17578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [17580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [17582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [17584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [17586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [17588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [17590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10720), + [17592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [17594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [17596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [17598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [17600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [17602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), + [17604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11209), + [17606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [17608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [17610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [17612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [17614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), + [17616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11338), + [17618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11339), + [17620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 4, 0, 134), + [17622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [17624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [17626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [17628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [17630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [17632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [17634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [17636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 5, 0, 135), + [17638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [17640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [17642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11607), + [17644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [17646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [17648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [17650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [17652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10818), + [17654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [17656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [17658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [17660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [17662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11243), + [17664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [17666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [17668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [17670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [17672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [17674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 4, 0, 134), + [17676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [17678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 3, 0, 0), + [17680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), + [17682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [17684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [17686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [17688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8149), + [17690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [17692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [17694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), + [17696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [17698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [17700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10931), + [17702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [17704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [17706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [17708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), + [17710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [17712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), + [17714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [17716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [17718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [17720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [17722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [17724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [17726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [17728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [17730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [17732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10723), + [17734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [17736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [17738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 2, 0, 0), + [17740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [17742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [17744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [17746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [17748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [17750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [17752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [17754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [17756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [17758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), + [17760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [17762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [17764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, 0, 134), + [17766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list, 5, 0, 186), + [17768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [17770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [17772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [17774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 4, 0, 135), + [17776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [17778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [17780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11169), + [17782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [17784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10797), + [17786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [17788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [17790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11360), + [17792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [17794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [17796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [17798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11186), + [17800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [17802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [17804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [17806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11511), + [17808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [17810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [17812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11054), + [17814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [17816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [17818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 5, 0, 0), + [17820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [17822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [17824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11585), + [17826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11612), + [17828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [17830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11010), + [17832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [17834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [17836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [17838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 84), + [17840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [17842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [17844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11545), + [17846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9264), + [17848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), + [17850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [17852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [17854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [17856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [17858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11058), + [17860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10649), + [17862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [17864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [17866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [17868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [17870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [17872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [17874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [17876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [17878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [17880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [17882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [17884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), + [17886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [17888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [17890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [17892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [17894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [17896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [17898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [17900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [17902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [17904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), + [17906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [17908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11008), + [17910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__fold_operator, 1, 0, 0), SHIFT(11039), + [17913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10698), + [17915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [17917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [17919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11042), + [17921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [17923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11049), + [17925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [17927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [17929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [17931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [17933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10872), + [17935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11044), + [17937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [17939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [17941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), + [17943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11238), + [17945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [17947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [17949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [17951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11283), + [17953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11285), + [17955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), + [17957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [17959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 4, 0, 135), + [17961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), + [17963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [17965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [17967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [17969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [17971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11172), + [17973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [17975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [17977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [17979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [17981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11051), + [17983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [17985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [17987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [17989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [17991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11156), + [17993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10689), + [17995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [17997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10215), + [17999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11218), + [18001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [18003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11577), + [18005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [18007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11482), + [18009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10722), + [18011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11198), + [18013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [18015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [18017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [18019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [18021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11529), + [18023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [18025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8387), + [18027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), + [18029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), + [18031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11624), + [18033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11627), + [18035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9544), + [18037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [18039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), + [18041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11558), + [18043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [18045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [18047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), + [18049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [18051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [18053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [18055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [18057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [18059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11257), + [18061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11129), + [18063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [18065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list_no_comma, 3, 0, 85), + [18067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [18069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [18071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [18073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [18075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11304), + [18077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [18079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11138), + [18081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [18083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11357), + [18085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [18087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), + [18089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10873), + [18091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [18093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [18095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [18097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11532), + [18099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [18101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11557), + [18103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11560), + [18105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [18107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [18109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [18111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 6, 0, 24), + [18113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [18115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [18117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [18119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [18121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11217), + [18123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [18125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [18127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [18129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [18131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [18133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [18135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [18137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [18139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10889), + [18141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 5, 0, 134), + [18143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10811), + [18145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10901), + [18147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_requires_parameter_list, 4, 0, 0), + [18149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10957), + [18151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [18153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10982), + [18155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [18157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [18159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [18161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [18163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [18165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [18167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [18169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [18171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), + [18173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), + [18175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11219), + [18177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11305), + [18179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [18181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), + [18183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11390), + [18185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [18187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unary_right_fold, 3, 0, 58), + [18189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11713), + [18191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10733), + [18193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [18195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11246), + [18197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [18199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [18201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [18203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [18205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10840), + [18207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11060), + [18209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11099), + [18211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [18213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [18215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [18217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10854), + [18219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [18221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10726), + [18223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10738), + [18225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [18227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [18229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [18231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), + [18233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11134), + [18235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11139), + [18237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [18239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11322), + [18241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11325), + [18243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_declarator, 7, 0, 62), + [18245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 3, 0, 85), + [18247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10645), + [18249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10646), + [18251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10727), + [18253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10730), + [18255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10842), + [18257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10846), + [18259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [18261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11318), + [18263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10956), + [18265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10958), + [18267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [18269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11070), + [18271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11073), + [18273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [18275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11142), + [18277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11144), + [18279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_enumerator_list_no_comma, 5, 0, 186), + [18281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11214), + [18283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11215), + [18285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [18287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [18289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [18291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [18293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10429), + [18295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [18297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10662), + [18299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [18301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [18303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [18305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [18307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10713), + [18309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [18311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [18313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11005), + [18315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [18317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10530), + [18319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10807), + [18321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [18323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [18325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10816), + [18327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [18329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [18331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), + [18333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [18335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [18337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10826), + [18339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [18341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10508), + [18343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [18345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [18347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [18349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [18351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [18353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), + [18355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [18357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), + [18359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10664), + [18361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9570), + [18363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), + [18365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10900), + [18367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [18369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [18371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [18373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ms_based_modifier, 2, 0, 0), + [18375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [18377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [18379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [18381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 5, 0, 186), + [18383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [18385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [18387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [18389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [18391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [18393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [18395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [18397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9180), + [18399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [18401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 3, 0, 85), + [18403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [18405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [18407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [18409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10929), + [18411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [18413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [18415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10699), + [18417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [18419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [18421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [18423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [18425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [18427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [18429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [18431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [18433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_field_declaration_list, 5, 0, 186), + [18435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [18437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [18439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [18441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [18443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [18445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [18447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [18449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [18451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [18453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [18455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [18457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [18459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [18461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [18463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [18465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [18467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [18469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11247), + [18471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [18473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [18475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8743), + [18477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [18479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [18481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [18483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [18485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif, 4, 0, 134), + [18487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11133), + [18489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef, 4, 0, 135), + [18491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [18493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10482), + [18495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [18497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [18499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9590), + [18501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), + [18503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [18505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [18507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [18509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [18511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [18513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [18515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [18517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10491), + [18519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11645), + [18521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [18523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [18525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [18527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [18529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [18531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [18533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [18535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [18537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10510), + [18539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10639), + [18541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [18543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10642), + [18545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [18547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [18549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10648), + [18551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [18553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [18555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [18557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10669), + [18559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [18561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [18563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [18565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10680), + [18567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [18569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10212), + [18571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [18573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [18575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [18577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [18579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [18581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [18583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [18585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10227), + [18587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [18589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10777), + [18591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10779), + [18593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [18595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [18597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10784), + [18599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [18601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10798), + [18603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [18605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_block, 5, 0, 186), + [18607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [18609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10805), + [18611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [18613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [18615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10255), + [18617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [18619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [18621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [18623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [18625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [18627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10265), + [18629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10858), + [18631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10860), + [18633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [18635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [18637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10864), + [18639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), + [18641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10878), + [18643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [18645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10884), + [18647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [18649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [18651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10287), + [18653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [18655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [18657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), + [18659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [18661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [18663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [18665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10917), + [18667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [18669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10919), + [18671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [18673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [18675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10923), + [18677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [18679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10935), + [18681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10941), + [18683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [18685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [18687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10322), + [18689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [18691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [18693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [18695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [18697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [18699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [18701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10972), + [18703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), + [18705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10974), + [18707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [18709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [18711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10978), + [18713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8643), + [18715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10989), + [18717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [18719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10995), + [18721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [18723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [18725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10349), + [18727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [18729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [18731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), + [18733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [18735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [18737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11015), + [18739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [18741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11017), + [18743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11019), + [18745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [18747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11023), + [18749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11025), + [18751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [18753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [18755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10363), + [18757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [18759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [18761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [18763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [18765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [18767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11040), + [18769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11041), + [18771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [18773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11045), + [18775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10372), + [18777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [18779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [18781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11052), + [18783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11053), + [18785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11056), + [18787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10377), + [18789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [18791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [18793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11063), + [18795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11064), + [18797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11065), + [18799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10380), + [18801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [18803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11071), + [18805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11072), + [18807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10385), + [18809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [18811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11078), + [18813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11079), + [18815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10389), + [18817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [18819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11084), + [18821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11085), + [18823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10391), + [18825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [18827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11089), + [18829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11090), + [18831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10393), + [18833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [18835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11093), + [18837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11094), + [18839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10394), + [18841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [18843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11097), + [18845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11098), + [18847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10396), + [18849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [18851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11101), + [18853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11102), + [18855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10398), + [18857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [18859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11105), + [18861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11106), + [18863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10399), + [18865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [18867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11109), + [18869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11110), + [18871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [18873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11112), + [18875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11113), + [18877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [18879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [18881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [18883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [18885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [18887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [18889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [18891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11145), + [18893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [18895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_field_declaration_list, 4, 0, 135), + [18897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [18899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [18901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [18903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [18905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [18907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [18909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [18911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [18913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), + [18915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [18917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [18919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [18921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11494), + [18923] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [18925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [18927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), + [18929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [18931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [18933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9484), + [18935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [18937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), + [18939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [18941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [18943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [18945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), + [18947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [18949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [18951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [18953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11069), + [18955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), + [18957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [18959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [18961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11193), + [18963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_block, 3, 0, 85), + [18965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [18967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [18969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [18971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [18973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10416), + [18975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), + [18977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [18979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [18981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [18983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), + [18985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8032), + [18987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), + [18989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [18991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), + [18993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9174), + [18995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11016), + [18997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elif_in_block, 4, 0, 134), + [18999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [19001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [19003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [19005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [19007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9432), + [19009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [19011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [19013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [19015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [19017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 85), + [19019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [19021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), + [19023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [19025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [19027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), + [19029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9244), + [19031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [19033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [19035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [19037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9963), + [19039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_ifdef_in_enumerator_list_no_comma, 4, 0, 10), + [19041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11693), + [19043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_if_in_enumerator_list_no_comma, 6, 0, 186), + [19045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [19047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10820), + [19049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10050), + [19051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_enumerator_list, 3, 0, 85), + [19053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [19055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [19057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11296), + [19059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [19061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [19063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [19065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [19067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9546), + [19069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11306), + [19071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8907), + [19073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10691), + [19075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [19077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [19079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [19081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [19083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11323), + [19085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [19087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), + [19089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [19091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [19093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), + [19095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11330), + [19097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [19099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [19101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11159), + [19103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11345), + [19105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10773), + [19107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [19109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9560), + [19111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11351), + [19113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [19115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [19117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11365), + [19119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [19121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9566), + [19123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11371), + [19125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [19127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [19129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11385), + [19131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [19133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9573), + [19135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11391), + [19137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [19139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [19141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [19143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9578), + [19145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11407), + [19147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [19149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11419), + [19151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11425), + [19153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11431), + [19155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), + [19157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11435), + [19159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11158), + [19161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11439), + [19163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [19165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11443), + [19167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), + [19169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11447), + [19171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11451), + [19173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11455), + [19175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [19177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11459), + [19179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11463), + [19181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11467), + [19183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [19185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11470), + [19187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [19189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11661), + [19191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [19193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [19195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [19197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [19199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [19201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [19203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [19205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [19207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [19209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11519), + [19211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [19213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [19215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [19217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11518), + [19219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), + [19221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11591), + [19223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10182), + [19225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), + [19227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11604), + [19229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [19231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5005), + [19233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11614), + [19235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preproc_elifdef_in_block, 4, 0, 135), + [19237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [19239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11623), + [19241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [19243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [19245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11630), + [19247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [19249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [19251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11635), + [19253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [19255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11638), + [19257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11640), + [19259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11642), + [19261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11644), + [19263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11646), + [19265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11648), + [19267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11650), + [19269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11652), + [19271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11654), + [19273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11656), + [19275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11658), + [19277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11660), + [19279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11662), + [19281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [19283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [19285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [19287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10529), + [19289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [19291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [19293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [19295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [19297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [19299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [19301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [19303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [19305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), }; enum ts_external_scanner_symbol_identifiers { diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index e99918e5..eba3da40 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -50,25 +50,37 @@ extern "C" { /// memory allocated for the array's contents. #define array_clear(self) ((self)->size = 0) +#ifdef __cplusplus +#define _array__cast(self, expr) (decltype((self)->contents))(expr) +#else +#define _array__cast(self, expr) (expr) +#endif + /// Reserve `new_capacity` elements of space in the array. If `new_capacity` is /// less than the array's current capacity, this function has no effect. -#define array_reserve(self, new_capacity) \ - ((self)->contents = _array__reserve( \ - (void *)(self)->contents, &(self)->capacity, \ - array_elem_size(self), new_capacity) \ +#define array_reserve(self, new_capacity) \ + ((self)->contents = _array__cast(self, _array__reserve( \ + (void *)(self)->contents, &(self)->capacity, \ + array_elem_size(self), new_capacity)) \ ) /// Free any memory allocated for this array. Note that this does not free any /// memory allocated for the array's contents. -#define array_delete(self) _array__delete((self), (void *)(self)->contents, sizeof(*self)) +#define array_delete(self) \ + do { \ + if ((self)->contents) ts_free((self)->contents); \ + (self)->contents = NULL; \ + (self)->size = 0; \ + (self)->capacity = 0; \ + } while (0) /// Push a new `element` onto the end of the array. #define array_push(self, element) \ do { \ - (self)->contents = _array__grow( \ + (self)->contents = _array__cast(self, _array__grow( \ (void *)(self)->contents, (self)->size, &(self)->capacity, \ 1, array_elem_size(self) \ - ); \ + )); \ (self)->contents[(self)->size++] = (element); \ } while(0) @@ -77,10 +89,10 @@ extern "C" { #define array_grow_by(self, count) \ do { \ if ((count) == 0) break; \ - (self)->contents = _array__grow( \ + (self)->contents = _array__cast(self, _array__grow( \ (self)->contents, (self)->size, &(self)->capacity, \ count, array_elem_size(self) \ - ); \ + )); \ memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ (self)->size += (count); \ } while (0) @@ -92,26 +104,26 @@ extern "C" { /// Append `count` elements to the end of the array, reading their values from the /// `contents` pointer. #define array_extend(self, count, other_contents) \ - (self)->contents = _array__splice( \ + ((self)->contents = _array__cast(self, _array__splice( \ (void*)(self)->contents, &(self)->size, &(self)->capacity, \ array_elem_size(self), (self)->size, 0, count, other_contents \ - ) + ))) /// Remove `old_count` elements from the array starting at the given `index`. At /// the same index, insert `new_count` new elements, reading their values from the /// `new_contents` pointer. #define array_splice(self, _index, old_count, new_count, new_contents) \ - (self)->contents = _array__splice( \ + ((self)->contents = _array__cast(self, _array__splice( \ (void *)(self)->contents, &(self)->size, &(self)->capacity, \ array_elem_size(self), _index, old_count, new_count, new_contents \ - ) + ))) /// Insert one `element` into the array at the given `index`. #define array_insert(self, _index, element) \ - (self)->contents = _array__splice( \ + ((self)->contents = _array__cast(self, _array__splice( \ (void *)(self)->contents, &(self)->size, &(self)->capacity, \ array_elem_size(self), _index, 0, 1, &(element) \ - ) + ))) /// Remove one element from the array at the given `index`. #define array_erase(self, _index) \ @@ -122,20 +134,19 @@ extern "C" { /// Assign the contents of one array to another, reallocating if necessary. #define array_assign(self, other) \ - (self)->contents = _array__assign( \ + ((self)->contents = _array__cast(self, _array__assign( \ (void *)(self)->contents, &(self)->size, &(self)->capacity, \ (const void *)(other)->contents, (other)->size, array_elem_size(self) \ - ) + ))) /// Swap one array with another #define array_swap(self, other) \ do { \ - struct Swap swapped_contents = _array__swap( \ - (void *)(self)->contents, &(self)->size, &(self)->capacity, \ - (void *)(other)->contents, &(other)->size, &(other)->capacity \ - ); \ - (self)->contents = swapped_contents.self_contents; \ - (other)->contents = swapped_contents.other_contents; \ + void *_array_swap_tmp = (void *)(self)->contents; \ + (self)->contents = (other)->contents; \ + (other)->contents = _array__cast(other, _array_swap_tmp); \ + _array__swap(&(self)->size, &(self)->capacity, \ + &(other)->size, &(other)->capacity); \ } while (0) /// Get the size of the array contents @@ -188,12 +199,6 @@ extern "C" { // The `Array` type itself was not altered as a solution in order to avoid breakage // with existing consumers (in particular, parsers with external scanners). -/// This is not what you're looking for, see `array_delete`. -static inline void _array__delete(void *self, void *contents, size_t self_size) { - if (contents) ts_free(contents); - if (self) memset(self, 0, self_size); -} - /// This is not what you're looking for, see `array_erase`. static inline void _array__erase(void* self_contents, uint32_t *size, size_t element_size, uint32_t index) { @@ -228,31 +233,15 @@ static inline void *_array__assign(void* self_contents, uint32_t *self_size, uin return new_contents; } -struct Swap { - void *self_contents; - void *other_contents; -}; - /// This is not what you're looking for, see `array_swap`. -// static inline void _array__swap(Array *self, Array *other) { -static inline struct Swap _array__swap(void *self_contents, uint32_t *self_size, uint32_t *self_capacity, - void *other_contents, uint32_t *other_size, uint32_t *other_capacity) { - void *new_self_contents = other_contents; - uint32_t new_self_size = *other_size; - uint32_t new_self_capacity = *other_capacity; - - void *new_other_contents = self_contents; - *other_size = *self_size; - *other_capacity = *self_capacity; - - *self_size = new_self_size; - *self_capacity = new_self_capacity; - - struct Swap out = { - .self_contents = new_self_contents, - .other_contents = new_other_contents, - }; - return out; +static inline void _array__swap(uint32_t *self_size, uint32_t *self_capacity, + uint32_t *other_size, uint32_t *other_capacity) { + uint32_t tmp_size = *self_size; + uint32_t tmp_capacity = *self_capacity; + *self_size = *other_size; + *self_capacity = *other_capacity; + *other_size = tmp_size; + *other_capacity = tmp_capacity; } /// This is not what you're looking for, see `array_push` or `array_grow_by`. diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index 96a6c26b..96438426 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -32,6 +32,12 @@ Compound literals without parentheses T x = T{0}; U y = U{0}; +W z = W { + .a = {0}, + .b = {}, + .c {1}, + .d {} +}; int x = int{1}; -------------------------------------------------------------------------------- @@ -61,6 +67,31 @@ int x = int{1}; (type_identifier)))) (initializer_list (number_literal))))) + (declaration + (type_identifier) + (init_declarator + (identifier) + (compound_literal_expression + (type_identifier) + (initializer_list + (initializer_pair + (field_designator + (field_identifier)) + (initializer_list + (number_literal))) + (initializer_pair + (field_designator + (field_identifier)) + (initializer_list)) + (initializer_pair + (field_designator + (field_identifier)) + (initializer_list + (number_literal))) + (initializer_pair + (field_designator + (field_identifier)) + (initializer_list)))))) (declaration (primitive_type) (init_declarator